diff --git a/.github/workflows/req_lint_test.yml b/.github/workflows/req_lint_test.yml index e1cff31..9680ce6 100644 --- a/.github/workflows/req_lint_test.yml +++ b/.github/workflows/req_lint_test.yml @@ -32,6 +32,6 @@ jobs: version: "~= 22.0" - name: Test with pytest + working-directory: tests/ run: | pytest - \ No newline at end of file diff --git a/README.md b/README.md index 9c9b3b9..438e2bc 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Access to the app : [Start](https://nextjsapp-iwghenktca-ew.a.run.app/login) - [Tech Stack](#tech-stack) - [Files Structure](#files-structure) - [Frontend](#frontend) + - [Resources](#resources) - [How to Use](#how-to-use) - [Testing](#testing) - [Deployment](#deployment) @@ -27,13 +28,13 @@ Access to the app : [Start](https://nextjsapp-iwghenktca-ew.a.run.app/login) - [Flow Steps](#flow-steps) - [Candidate User Flow](#candidate-user-flow) - [Flow Steps](#flow-steps-1) - - [UI/UX](#uiux) - - [Overview](#overview) - - [How to Use](#how-to-use-1) - - [Prototype Structure](#prototype-structure) - - [Key Features](#key-features) - - [Contact Information](#contact-information) - - [Licensing](#licensing) +- [UI/UX](#uiux) + - [Overview](#overview) + - [How to Use](#how-to-use-1) + - [Prototype Structure](#prototype-structure) + - [Key Features](#key-features) + - [Contact Information](#contact-information) + - [Licensing](#licensing) - [Backend API](#backend-api) - [Flowchart of the website](#flowchart-of-the-website) - [Tech stack](#tech-stack-1) @@ -47,9 +48,9 @@ Access to the app : [Start](https://nextjsapp-iwghenktca-ew.a.run.app/login) - [Features](#features) - [Data Science](#data-science) - [Data Processing Notebooks](#data-processing-notebooks) -- [Roadmap](#roadmap) - [Cooperation](#cooperation) -- [Resources](#resources) +- [Roadmap](#roadmap) +- [Resources](#resources-1) # Problem Statement @@ -284,21 +285,19 @@ This flow ensures that candidates can manage their profiles, explore job opportu # UI/UX - ### Overview This Figma Prototype is designed to showcase the flows that have been designed. You will see the high fidelity mockups, the primary functions of the flow, and future flows for implementation. - ### How to Use 1. **Access the Prototype**: - + You can interact with the prototype at the following link: [Figma](https://www.figma.com/proto/qzRo0T1FIRIp2FkBZtXKey/SHIFT-UI?page-id=0%3A1&type=design&node-id=65-514&viewport=817%2C-4082%2C0.16&t=vVdNABqel4mhStHB-1&scaling=min-zoom&starting-point-node-id=65%3A514&show-proto-sidebar=1&mode=design) - + 3. **Navigate Through the Prototype**: - -You have a left bar and a top bar. + +You have a left bar and a top bar. The left bar will help you to move through each designed flow. They are organized by: - A. Login @@ -313,8 +312,9 @@ The left bar will help you to move through each designed flow. They are organize 2.3 If you want to go back again and restart the whole flow, press “R”. 3. **Feedback and Comments**: -- You must be logged in to Figma to comment. -- By typing or pressing “C” you can comment on anything you want to highlight or give us feedback. + +- You must be logged in to Figma to comment. +- By typing or pressing “C” you can comment on anything you want to highlight or give us feedback. - The comments will remain in the file unless you click "Resolve" in the right bar that appears after you add a comment. 3. **Feedback and Comments**: @@ -492,6 +492,7 @@ The following logical steps are used to clean the datasets: - Reorganize the columns (rename, drop ones not to be uploaded to the database, reset the index) # Cooperation + At the outset of our project, we adopted JIRA as our task organization and project management tool. While initially, some team members might have been unfamiliar with how to utilize it to its full potential, we steadily improved our understanding and usage of JIRA with each sprint. It wasn't until the last two sprints that we truly realized its power in helping us coordinate the work of all team members. JIRA played a pivotal role in enhancing our collaboration, efficiency, and overall project organization # Roadmap @@ -510,8 +511,17 @@ Datasets used for populating the Database : [Kaggle Resume Dataset](https://www. Miro : [Team retrospective and brainstorming board](https://miro.com/app/board/uXjVMkJzhAg=/) + + JIRA: [Sprint reports](https://deployimpact2023-shift.atlassian.net/jira/software/projects/SHIFT/boards/1/reports/burnup) [Backlog](https://deployimpact2023-shift.atlassian.net/jira/software/projects/SHIFT/boards/1/backlog)
Shift Enter
- diff --git a/requirements_git_actions.txt b/requirements_git_actions.txt index 8d258ad..ea43d46 100644 --- a/requirements_git_actions.txt +++ b/requirements_git_actions.txt @@ -1,3 +1,3 @@ black==23.9.1 black[jupyter] -pytest==7.4.3 \ No newline at end of file +pytest==7.4.3 diff --git a/src/backend/api/matching_algorithm.py b/src/backend/api/matching_algorithm.py index 55ab2a5..8e02fa9 100644 --- a/src/backend/api/matching_algorithm.py +++ b/src/backend/api/matching_algorithm.py @@ -2,8 +2,6 @@ from typing import List import torch from sklearn.metrics.pairwise import cosine_similarity -from api.models import Jobs, Candidates - def get_free_text_match( job_embeddings: List[List], diff --git a/src/backend/api/serializer_services.py b/src/backend/api/serializer_services.py index 5b61c42..a4c20fb 100644 --- a/src/backend/api/serializer_services.py +++ b/src/backend/api/serializer_services.py @@ -97,7 +97,7 @@ def generate_match_output(match_percentages: dict, instance: Candidates | Jobs) if not is_job: curr_match["job_title"] = match.job_title curr_match["job_type"] = match.job_type - curr_match["work_model"] = match.job_title + curr_match["work_model"] = match.work_model.__str__() curr_match["start_date"] = match.start_date curr_match["job_description"] = match.job_description else: diff --git a/src/backend/api/serializers.py b/src/backend/api/serializers.py index d7e5c73..77b3d01 100644 --- a/src/backend/api/serializers.py +++ b/src/backend/api/serializers.py @@ -159,8 +159,6 @@ def get_matches(self, instance): - - class InvitationSerializer(serializers.HyperlinkedModelSerializer): association = AssociationsSerializer() diff --git a/src/backend/tests/test_authetication.py b/src/backend/tests/test_authetication.py deleted file mode 100644 index b031ed3..0000000 --- a/src/backend/tests/test_authetication.py +++ /dev/null @@ -1,100 +0,0 @@ -from rest_framework.test import APIRequestFactory -from api.models import Companies, Candidates, Associations -from api.authentication_services import get_user_type -from api.views import ( - CandidatesViewSet, - LoginView, - CompaniesViewSet, - SkillsViewSet, - SoftSkillsViewSet, -) -from django.test import TestCase -from time import sleep - - -class TestAuthentication(TestCase): - def setUp(self): - self.factory = APIRequestFactory() - - def test_login(self): - users = [ - { - "email": "company@company.com", - "password": "Company123.123", - "role": "company_user", - "id": 1, - }, - { - "email": "candidate@candidate.com", - "password": "Candidate123.123", - "role": "candidate", - "id": 1, - }, - { - "email": "association@association.com", - "password": "Association123.123", - "role": "association_user", - "id": 1, - }, - ] - - login_page = LoginView.as_view() - factory = APIRequestFactory() - - for user in users: - request = factory.post("/login/", {**user}) - response = login_page(request) - - assert response.data["role"] == user["role"] - assert "access_token" in response.data.keys() - assert "refresh_token" in response.data.keys() - - def test_create_hard_skill(self): - factory = APIRequestFactory() - request = factory.post( - "/skills/1/", - { - "skill_name": "first skill", - }, - ) - - view = SkillsViewSet.as_view({"post": "create"}) - response = view(request) - - assert response.status_code == 201 - - return response.data["skill_id"] - - def test_create_soft_skill(self): - factory = APIRequestFactory() - request = factory.post( - "/softskills/1/", - { - "soft_skill_name": "first soft skill", - }, - ) - - view = SoftSkillsViewSet.as_view({"post": "create"}) - response = view(request) - - assert response.status_code == 201 - - return response.data["soft_skill_id"] - - def test_candidates_view(self): - factory = APIRequestFactory() - request = factory.get("/api/candidates/") - - view = CandidatesViewSet.as_view({"get": "list"}) - response = view(request) - - assert response.status_code == 200 - - def test_comapnies_view(self): - factory = APIRequestFactory() - request = factory.get("/api/companies/") - - view = CompaniesViewSet.as_view({"get": "list"}) - response = view(request) - - assert response.status_code == 200 diff --git a/src/notebooks/README.md b/src/notebooks/README.md new file mode 100644 index 0000000..dadec42 --- /dev/null +++ b/src/notebooks/README.md @@ -0,0 +1,12 @@ +## deploy-impact-23-shift-3 notebooks + +This folder contains the code that was used for parsing the datasets with job descriptions and candidates' profiles. + +One can download the dataset for candidates from [here](https://www.kaggle.com/datasets/heet9022/linkedin-dataset) and the dataset with jobs from [here](https://www.kaggle.com/datasets/andresionek/data-jobs-listings-glassdoor) and add the path to the datasets to the respective .yml files. + +The following logical steps are used to clean the datasets: +* filter tech-related, Swiss-based, entry-level items +* for job descriptions: use only descriptions written in English using [langid](https://github.com/saffsd/langid.py) package +* extract soft and hard skills using [SkillNer](https://skillner.vercel.app/) +* extract languages using [language ISO list](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) +* reorganize the columns (rename, drop ones not to be uploaded to the database, reset the index) diff --git a/src/notebooks/cand_parsing.yaml b/src/notebooks/cand_parsing.yaml new file mode 100644 index 0000000..638bc75 --- /dev/null +++ b/src/notebooks/cand_parsing.yaml @@ -0,0 +1,34 @@ +TABLE_PATH: "" +LANGUAGE_PATH: "languages.csv" + +SWISS_LOCATION: + - 'CH' + - 'SWITZERLANDS' + +COLS: + 'Name': 'name' + 'Experience': 'experience' + 'description': 'about_me' + 'category': 'industry' + +TECH_KEYWORDS: + - 'computer' + - 'recognition' + - 'nlp' + - 'developer' + - 'data' + - 'information' + - 'software' + - 'database' + - 'programming' + - 'ai' + - 'ml' + - 'application' + - 'frontend' + - 'backend' + +SENIOR_KEYWORDS: + - 'senior' + - 'lead' + - 'head' + - 'partner' \ No newline at end of file diff --git a/src/notebooks/jobs_parsing.yaml b/src/notebooks/jobs_parsing.yaml new file mode 100644 index 0000000..502336f --- /dev/null +++ b/src/notebooks/jobs_parsing.yaml @@ -0,0 +1,38 @@ +TABLE_PATH: "" +LANGUAGE_PATH: "languages.csv" + +SWISS_LOCATION: + - 'CH' + - 'SWITZERLANDS' + +COLS: + 'header.jobTitle': 'job_title' + 'header.employerName': 'employer_name' + 'header.location': 'location_city' + 'job.description': 'job_description' + 'map.country': 'location_country' + 'overview.industry': 'industry' + 'overview.mission': 'values' + 'overview.website': 'website' + +TECH_KEYWORDS: + - 'computer' + - 'recognition' + - 'nlp' + - 'developer' + - 'data' + - 'information' + - 'software' + - 'database' + - 'programming' + - 'ai' + - 'ml' + - 'application' + - 'frontend' + - 'backend' + +SENIOR_KEYWORDS: + - 'senior' + - 'lead' + - 'head' + - 'partner' \ No newline at end of file diff --git a/src/notebooks/languages.csv b/src/notebooks/languages.csv new file mode 100644 index 0000000..e93b335 --- /dev/null +++ b/src/notebooks/languages.csv @@ -0,0 +1,204 @@ +Abkhazian +Afar +Afrikaans +Akan +Albanian +Amharic +Arabic +Aragonese +Armenian +Assamese +Avaric +Avestan +Aymara +Azerbaijani +Bambara +Bashkir +Basque +Belarusian +Bengali +Bislama +Bosnian +Breton +Bulgarian +Burmese +Catalan +Valencian +Chamorro +Chechen +Chichewa +Chewa +Nyanja +Chinese +Church Slavonic +Chuvash +Cornish +Corsican +Cree +Croatian +Czech +Danish +Divehi +Dhivehi +Maldivian +Dutch +Flemish +Dzongkha +English +Esperanto +Estonian +Ewe +Faroese +Fijian +Finnish +French +Western Frisian +Fulah +Gaelic +Scottish Gaelic +Galician +Ganda +Georgian +German +Greek +Kalaallisut +Greenlandic +Guarani +Gujarati +Haitian +Haitian Creole +Hausa +Hebrew +Herero +Hindi +Hiri Motu +Hungarian +Icelandic +Ido +Igbo +Indonesian +Interlingua +Inuktitut +Inupiaq +Irish +Italian +Japanese +Javanese +Kannada +Kanuri +Kashmiri +Kazakh +Central Khmer +Kikuyu +Gikuyu +Kinyarwand +Kirghiz +Kyrgyz +Komi +Kongo +Korean +Kuanyama +Kwanyama +Kurdish +Lao +Latin +Latvian +Limburgan +Limburger +Limburgish +Lingala +Lithuanian +Luba-Katanga +Luxembourgish +Letzeburgesch +Macedonian +Malagasy +Malay +Malayalam +Maltes +Manx +Maori +Marathi +Marshallese +Mongolian +Nauru +Navajo +Navaho +North Ndebele +South Ndebele +Ndonga +Nepali +Norwegian +Norwegian Bokmål +Norwegian Nynorsk +Sichuan Yi +Nuosu +Occitan +Ojibwa +Oriya +Oromo +Ossetian +Ossetic +Pali +Pashto +Pushto +Persian +Polish +Portuguese +Punjabi +Panjabi +Quechua +Romanian +Moldavian +Moldovan +Northern Sami +Samoan +Sango +Sanskrit +Sardinian +Serbian +Shona +Sindhi +Sinhala +Sinhalese +Slovak +Slovenian +Somali +Southern Sotho +Spanish +Castilian +Sundanese +Swahili +Swati +Swedish +Tagalog +Tahitian +Tajik +Tamil +Tatar +Telugu +Thai +Tibetan +Tigrinya +Tsonga +Tsonga +Tswana +Turkish +Turkmen +Twi +Uighur +Ukrainian +Urdu +Uzbek +Venda +Vietnamese +Volapük +Walloon +Welsh +Wolof +Xhosa +Yiddish +Yoruba +Zhuang +Chuang +Zulu diff --git a/src/notebooks/notebook_utils.py b/src/notebooks/notebook_utils.py new file mode 100644 index 0000000..fc4d164 --- /dev/null +++ b/src/notebooks/notebook_utils.py @@ -0,0 +1,73 @@ +import pandas as pd +from bs4 import BeautifulSoup +import re +import langid +import yaml +from typing import List + +import spacy +from spacy.matcher import PhraseMatcher +# load default skills data base +from skillNer.general_params import SKILL_DB +# import skill extractor +from skillNer.skill_extractor_class import SkillExtractor + +def clean_from_html(s: str) -> str: + ''' + This functions returns a string clean from html symbols. + ''' + bs_result = BeautifulSoup(s, 'lxml').text + result = re.sub('\n', ' ', bs_result) + return result + +def read_csv_to_list(file_name: str) -> List[str]: + ''' + This functions returns a string cleaned from html symbols. + ''' + my_file = open(file_name, "r") + data = my_file.read() + data_list = data.split('\n') + my_file.close() + return data_list + +def if_en(s: str) -> bool: + ''' + This functions returns boolean whether the main langugage of text is English or not + ''' + return langid.classify(str(s))[0] == 'en' + +def extract_languages(s: str, language_list: List[str]) -> List[str]: + ''' + This functions returns list of languages that were mentioned in text + in case of full resmblnce with one of the languages from a given list + (case insensitive). + ''' + lang_set = set(language.lower() for language in language_list) + languages = set() + for word in s.split(): + if word.lower() in lang_set: + languages.add(word.capitalize()) + return list(languages) + +def extract_skills (s: str, language_list: List) -> tuple: + ''' + This function analyses bulk of text and returns lists of hard skills, + soft skills and languages metntioned. Hard and soft skills (soft skills + excluding human languages) + ''' + nlp = spacy.load("en_core_web_lg") + # init skill extractor + skill_extractor = SkillExtractor(nlp, SKILL_DB, PhraseMatcher) + annotations = skill_extractor.annotate(s) + soft_skills = set() + hard_skills = set() + matches = annotations['results']['full_matches']+annotations['results']['ngram_scored'] + for di in matches: + skill_id = di['skill_id'] + skill_type = skill_extractor.skills_db[skill_id]['skill_type'] + skill_name = skill_extractor.skills_db[skill_id]['skill_name'] + if skill_type == 'Hard Skill': + hard_skills.add(skill_name) + if skill_type == 'Soft Skill' and not skill_name.count('Language'): + soft_skills.add(skill_name) + return (', '.join(list(soft_skills)), ', '.join(list(hard_skills)), ', '.join(extract_languages(s, language_list))) \ No newline at end of file diff --git a/src/notebooks/parsing_candidates.ipynb b/src/notebooks/parsing_candidates.ipynb new file mode 100644 index 0000000..3e2c708 --- /dev/null +++ b/src/notebooks/parsing_candidates.ipynb @@ -0,0 +1,86 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd \n", + "import yaml\n", + "import notebook_utils as nu" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "#load the files\n", + "with open('cand_parsing.yaml') as f:\n", + " conf_dict = yaml.safe_load(f)\n", + "language_list = nu.read_csv_to_list (conf_dict['LANGUAGE_PATH'])\n", + "df = pd.read_csv(conf_dict['TABLE_PATH'], usecols = conf_dict['COLS'].keys())" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "n_cols =df.shape[1]\n", + "df_IT = df[df['category']=='Information Technology']\n", + "df_IT = df_IT[df_IT['Experience'].notna()]\n", + "df_IT.insert(n_cols, 'entry_job', ~df_IT['Experience'].str.contains('|'.join(conf_dict['SENIOR_KEYWORDS'])))\n", + "df_IT_start = df_IT[df_IT['entry_job']==True]\n", + "df_IT_start['skills'] = df_IT_start[\"Experience\"].map(lambda x: extract_skills(str(x), language_list))\n", + "df_IT_start['soft_skills'] = df_IT_start['skills'].map(lambda x: x[0])\n", + "df_IT_start['hard_skills'] = df_IT_start['skills'].map(lambda x: x[1])\n", + "df_IT_start['languages'] = df_IT_start['skills'].map(lambda x: x[2])\n", + "#add column holders\n", + "df_IT_start.insert(n_cols, 'location_country', ['Switzeland']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'preffered_name', ['John Smith']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'location_city', ['Geneva']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'last_country', ['Switzerland']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'education', ['Switzeland']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'work_permission_CH', ['True']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'date_of_birth', ['20.07.1985']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'linkedin', ['www.linkedin.com']*len(df_IT_start))\n", + "df_IT_start.insert(n_cols, 'github', ['www.github.com']*len(df_IT_start))\n", + "df_IT_start[['first_name', 'last_name']] = df_IT_start['name'].str.split(n=1, expand = True)\n", + "#rename columns\n", + "df_IT_start.rename(mapper = conf_dict['COLS'], axis = 1, inplace = True)\n", + "#drop columns out of interest\n", + "df_IT_start.drop(columns = ['skills', 'entry_job', 'name'], inplace = True)\n", + "#drop index\n", + "df_IT_start.reset_index(drop = True, inplace = True)\n", + "#save to scv\n", + "df_IT_start.to_csv('IT_candidates.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/notebooks/parsing_jobs.ipynb b/src/notebooks/parsing_jobs.ipynb new file mode 100644 index 0000000..9c8791e --- /dev/null +++ b/src/notebooks/parsing_jobs.ipynb @@ -0,0 +1,93 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd \n", + "import yaml\n", + "import notebook_utils as nu" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "#load the files\n", + "with open('jobs_parsing.yaml') as f:\n", + " conf_dict = yaml.safe_load(f)\n", + "language_list = nu.read_csv_to_list (conf_dict['LANGUAGE_PATH'])\n", + "df = pd.read_csv(conf_dict['TABLE_PATH'], usecols = conf_dict['COLS'].keys())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "n_cols =df.shape[1]\n", + "df['header.jobTitle'] = df['header.jobTitle'].map(lambda x: x.lower())\n", + "df.insert(n_cols, 'IT_job', df['header.jobTitle'].str.contains('|'.join(conf_dict['TECH_KEYWORDS'])))\n", + "df.insert(n_cols, 'entry_job', ~df['header.jobTitle'].str.contains('|'.join(conf_dict['SENIOR_KEYWORDS'])))\n", + "df.insert(n_cols, 'Swiss_based', df[\"map.country\"].map(lambda x: x in conf_dict['SWISS_LOCATION']))\n", + "\n", + "df_Swiss_IT = df.loc[(df['Swiss_based'] ==True) & (df['IT_job'] == True) & (df['entry_job'] == True)]\n", + "df_Swiss_IT.insert(n_cols, 'job_description', df_Swiss_IT['job.description'].map(lambda x: clean_from_html(str(x))))\n", + "df_Swiss_IT.insert(n_cols, 'english', df_Swiss_IT[\"job_description\"].map(lambda x: nu.if_en(str(x))))\n", + "df_Swiss_IT_en = df_Swiss_IT.loc[df_Swiss_IT['english'] ==True]\n", + "df_Swiss_IT_en.drop(columns=['english', 'job.description', 'IT_job', 'Swiss_based', 'entry_job'], inplace = True)\n", + "df_Swiss_IT_en.reset_index(drop = True, inplace = True)\n", + "df_Swiss_IT_en['skills'] = df_Swiss_IT_en[\"job_description\"].map(lambda x: nu.extract_skills(str(x), language_list))\n", + "df_Swiss_IT_en['soft_skills'] = df_Swiss_IT_en['skills'].map(lambda x: x[0])\n", + "df_Swiss_IT_en['hard_skills'] = df_Swiss_IT_en['skills'].map(lambda x: x[1])\n", + "df_Swiss_IT_en['languages'] = df_Swiss_IT_en['skills'].map(lambda x: x[2])\n", + "\n", + "df_Swiss_IT_en.rename(mapper = conf_dict['COLS'], axis = 1, inplace = True)\n", + "df_Swiss_IT_en.drop(columns = ['skills'], inplace = True)\n", + "df_Swiss_IT_en.to_csv('IT_entry_swiss_jobs.csv')" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "import csv\n", + "fields = ['langugages']\n", + "with open('languages.csv', 'w') as f:\n", + " \n", + " # using csv.writer method from CSV package\n", + " write = csv.writer(f)\n", + " for item in data_into_list:\n", + " write.writerow([item])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.10" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/notebooks/tests.ipynb b/src/notebooks/tests.ipynb new file mode 100644 index 0000000..3f308ba --- /dev/null +++ b/src/notebooks/tests.ipynb @@ -0,0 +1,10417 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "languages = [\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/127/\",\n", + " \"language_name\": \"Abkhazian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/128/\",\n", + " \"language_name\": \"Afar\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/129/\",\n", + " \"language_name\": \"Afrikaans\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/130/\",\n", + " \"language_name\": \"Akan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/131/\",\n", + " \"language_name\": \"Albanian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/132/\",\n", + " \"language_name\": \"Amharic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/133/\",\n", + " \"language_name\": \"Arabic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/134/\",\n", + " \"language_name\": \"Aragonese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/135/\",\n", + " \"language_name\": \"Armenian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/136/\",\n", + " \"language_name\": \"Assamese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/137/\",\n", + " \"language_name\": \"Avaric\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/138/\",\n", + " \"language_name\": \"Avestan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/139/\",\n", + " \"language_name\": \"Aymara\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/140/\",\n", + " \"language_name\": \"Azerbaijani\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/141/\",\n", + " \"language_name\": \"Bambara\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/142/\",\n", + " \"language_name\": \"Bashkir\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/143/\",\n", + " \"language_name\": \"Basque\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/144/\",\n", + " \"language_name\": \"Belarusian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/145/\",\n", + " \"language_name\": \"Bengali\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/146/\",\n", + " \"language_name\": \"Bislama\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/147/\",\n", + " \"language_name\": \"Bosnian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/148/\",\n", + " \"language_name\": \"Breton\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/149/\",\n", + " \"language_name\": \"Bulgarian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/150/\",\n", + " \"language_name\": \"Burmese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/151/\",\n", + " \"language_name\": \"Catalan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/152/\",\n", + " \"language_name\": \"Valencian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/153/\",\n", + " \"language_name\": \"Chamorro\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/154/\",\n", + " \"language_name\": \"Chechen\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/155/\",\n", + " \"language_name\": \"Chichewa\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/156/\",\n", + " \"language_name\": \"Chewa\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/157/\",\n", + " \"language_name\": \"Nyanja\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/158/\",\n", + " \"language_name\": \"Chinese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/159/\",\n", + " \"language_name\": \"Church Slavonic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/160/\",\n", + " \"language_name\": \"Chuvash\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/161/\",\n", + " \"language_name\": \"Cornish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/162/\",\n", + " \"language_name\": \"Corsican\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/163/\",\n", + " \"language_name\": \"Cree\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/164/\",\n", + " \"language_name\": \"Croatian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/165/\",\n", + " \"language_name\": \"Czech\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/166/\",\n", + " \"language_name\": \"Danish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/167/\",\n", + " \"language_name\": \"Divehi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/168/\",\n", + " \"language_name\": \"Dhivehi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/169/\",\n", + " \"language_name\": \"Maldivian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/170/\",\n", + " \"language_name\": \"Dutch\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/171/\",\n", + " \"language_name\": \"Flemish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/172/\",\n", + " \"language_name\": \"Dzongkha\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/173/\",\n", + " \"language_name\": \"English\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/174/\",\n", + " \"language_name\": \"Esperanto\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/175/\",\n", + " \"language_name\": \"Estonian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/176/\",\n", + " \"language_name\": \"Ewe\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/177/\",\n", + " \"language_name\": \"Faroese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/178/\",\n", + " \"language_name\": \"Fijian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/179/\",\n", + " \"language_name\": \"Finnish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/180/\",\n", + " \"language_name\": \"French\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/181/\",\n", + " \"language_name\": \"Western Frisian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/182/\",\n", + " \"language_name\": \"Fulah\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/183/\",\n", + " \"language_name\": \"Gaelic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/184/\",\n", + " \"language_name\": \"Scottish Gaelic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/185/\",\n", + " \"language_name\": \"Galician\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/186/\",\n", + " \"language_name\": \"Ganda\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/187/\",\n", + " \"language_name\": \"Georgian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/188/\",\n", + " \"language_name\": \"German\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/189/\",\n", + " \"language_name\": \"Greek\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/190/\",\n", + " \"language_name\": \"Kalaallisut\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/191/\",\n", + " \"language_name\": \"Greenlandic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/192/\",\n", + " \"language_name\": \"Guarani\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/193/\",\n", + " \"language_name\": \"Gujarati\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/194/\",\n", + " \"language_name\": \"Haitian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/195/\",\n", + " \"language_name\": \"Haitian Creole\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/196/\",\n", + " \"language_name\": \"Hausa\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/197/\",\n", + " \"language_name\": \"Hebrew\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/198/\",\n", + " \"language_name\": \"Herero\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/199/\",\n", + " \"language_name\": \"Hindi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/200/\",\n", + " \"language_name\": \"Hiri Motu\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/201/\",\n", + " \"language_name\": \"Hungarian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/202/\",\n", + " \"language_name\": \"Icelandic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/203/\",\n", + " \"language_name\": \"Ido\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/204/\",\n", + " \"language_name\": \"Igbo\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/205/\",\n", + " \"language_name\": \"Indonesian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/206/\",\n", + " \"language_name\": \"Interlingua\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/207/\",\n", + " \"language_name\": \"Inuktitut\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/208/\",\n", + " \"language_name\": \"Inupiaq\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/209/\",\n", + " \"language_name\": \"Irish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/210/\",\n", + " \"language_name\": \"Italian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/211/\",\n", + " \"language_name\": \"Japanese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/212/\",\n", + " \"language_name\": \"Javanese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/213/\",\n", + " \"language_name\": \"Kannada\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/214/\",\n", + " \"language_name\": \"Kanuri\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/215/\",\n", + " \"language_name\": \"Kashmiri\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/216/\",\n", + " \"language_name\": \"Kazakh\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/217/\",\n", + " \"language_name\": \"Central Khmer\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/218/\",\n", + " \"language_name\": \"Kikuyu\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/219/\",\n", + " \"language_name\": \"Gikuyu\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/220/\",\n", + " \"language_name\": \"Kinyarwand\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/221/\",\n", + " \"language_name\": \"Kirghiz\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/222/\",\n", + " \"language_name\": \"Kyrgyz\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/223/\",\n", + " \"language_name\": \"Komi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/224/\",\n", + " \"language_name\": \"Kongo\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/225/\",\n", + " \"language_name\": \"Korean\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/226/\",\n", + " \"language_name\": \"Kuanyama\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/227/\",\n", + " \"language_name\": \"Kwanyama\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/228/\",\n", + " \"language_name\": \"Kurdish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/229/\",\n", + " \"language_name\": \"Lao\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/230/\",\n", + " \"language_name\": \"Latin\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/231/\",\n", + " \"language_name\": \"Latvian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/232/\",\n", + " \"language_name\": \"Limburgan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/233/\",\n", + " \"language_name\": \"Limburger\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/234/\",\n", + " \"language_name\": \"Limburgish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/235/\",\n", + " \"language_name\": \"Lingala\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/236/\",\n", + " \"language_name\": \"Lithuanian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/237/\",\n", + " \"language_name\": \"Luba-Katanga\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/238/\",\n", + " \"language_name\": \"Luxembourgish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/239/\",\n", + " \"language_name\": \"Letzeburgesch\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/240/\",\n", + " \"language_name\": \"Macedonian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/241/\",\n", + " \"language_name\": \"Malagasy\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/242/\",\n", + " \"language_name\": \"Malay\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/243/\",\n", + " \"language_name\": \"Malayalam\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/244/\",\n", + " \"language_name\": \"Maltes\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/245/\",\n", + " \"language_name\": \"Manx\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/246/\",\n", + " \"language_name\": \"Maori\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/247/\",\n", + " \"language_name\": \"Marathi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/248/\",\n", + " \"language_name\": \"Marshallese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/249/\",\n", + " \"language_name\": \"Mongolian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/250/\",\n", + " \"language_name\": \"Nauru\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/251/\",\n", + " \"language_name\": \"Navajo\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/252/\",\n", + " \"language_name\": \"Navaho\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/253/\",\n", + " \"language_name\": \"North Ndebele\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/254/\",\n", + " \"language_name\": \"South Ndebele\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/255/\",\n", + " \"language_name\": \"Ndonga\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/256/\",\n", + " \"language_name\": \"Nepali\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/257/\",\n", + " \"language_name\": \"Norwegian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/258/\",\n", + " \"language_name\": \"Norwegian Bokmål\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/259/\",\n", + " \"language_name\": \"Norwegian Nynorsk\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/260/\",\n", + " \"language_name\": \"Sichuan Yi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/261/\",\n", + " \"language_name\": \"Nuosu\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/262/\",\n", + " \"language_name\": \"Occitan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/263/\",\n", + " \"language_name\": \"Ojibwa\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/264/\",\n", + " \"language_name\": \"Oriya\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/265/\",\n", + " \"language_name\": \"Oromo\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/266/\",\n", + " \"language_name\": \"Ossetian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/267/\",\n", + " \"language_name\": \"Ossetic\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/268/\",\n", + " \"language_name\": \"Pali\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/269/\",\n", + " \"language_name\": \"Pashto\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/270/\",\n", + " \"language_name\": \"Pushto\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/271/\",\n", + " \"language_name\": \"Persian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/272/\",\n", + " \"language_name\": \"Polish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/273/\",\n", + " \"language_name\": \"Portuguese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/274/\",\n", + " \"language_name\": \"Punjabi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/275/\",\n", + " \"language_name\": \"Panjabi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/276/\",\n", + " \"language_name\": \"Quechua\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/277/\",\n", + " \"language_name\": \"Romanian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/278/\",\n", + " \"language_name\": \"Moldavian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/279/\",\n", + " \"language_name\": \"Moldovan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/280/\",\n", + " \"language_name\": \"Northern Sami\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/281/\",\n", + " \"language_name\": \"Samoan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/282/\",\n", + " \"language_name\": \"Sango\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/283/\",\n", + " \"language_name\": \"Sanskrit\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/284/\",\n", + " \"language_name\": \"Sardinian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/285/\",\n", + " \"language_name\": \"Serbian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/286/\",\n", + " \"language_name\": \"Shona\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/287/\",\n", + " \"language_name\": \"Sindhi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/288/\",\n", + " \"language_name\": \"Sinhala\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/289/\",\n", + " \"language_name\": \"Sinhalese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/290/\",\n", + " \"language_name\": \"Slovak\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/291/\",\n", + " \"language_name\": \"Slovenian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/292/\",\n", + " \"language_name\": \"Somali\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/293/\",\n", + " \"language_name\": \"Southern Sotho\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/294/\",\n", + " \"language_name\": \"Spanish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/295/\",\n", + " \"language_name\": \"Castilian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/296/\",\n", + " \"language_name\": \"Sundanese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/297/\",\n", + " \"language_name\": \"Swahili\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/298/\",\n", + " \"language_name\": \"Swati\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/299/\",\n", + " \"language_name\": \"Swedish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/300/\",\n", + " \"language_name\": \"Tagalog\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/301/\",\n", + " \"language_name\": \"Tahitian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/302/\",\n", + " \"language_name\": \"Tajik\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/303/\",\n", + " \"language_name\": \"Tamil\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/304/\",\n", + " \"language_name\": \"Tatar\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/305/\",\n", + " \"language_name\": \"Telugu\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/306/\",\n", + " \"language_name\": \"Thai\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/307/\",\n", + " \"language_name\": \"Tibetan\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/308/\",\n", + " \"language_name\": \"Tigrinya\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/309/\",\n", + " \"language_name\": \"Tsonga\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/310/\",\n", + " \"language_name\": \"Tsonga\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/311/\",\n", + " \"language_name\": \"Tswana\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/312/\",\n", + " \"language_name\": \"Turkish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/313/\",\n", + " \"language_name\": \"Turkmen\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/314/\",\n", + " \"language_name\": \"Twi\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/315/\",\n", + " \"language_name\": \"Uighur\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/316/\",\n", + " \"language_name\": \"Ukrainian\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/317/\",\n", + " \"language_name\": \"Urdu\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/318/\",\n", + " \"language_name\": \"Uzbek\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/319/\",\n", + " \"language_name\": \"Venda\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/320/\",\n", + " \"language_name\": \"Vietnamese\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/321/\",\n", + " \"language_name\": \"Volapük\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/322/\",\n", + " \"language_name\": \"Walloon\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/323/\",\n", + " \"language_name\": \"Welsh\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/324/\",\n", + " \"language_name\": \"Wolof\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/325/\",\n", + " \"language_name\": \"Xhosa\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/326/\",\n", + " \"language_name\": \"Yiddish\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/327/\",\n", + " \"language_name\": \"Yoruba\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/328/\",\n", + " \"language_name\": \"Zhuang\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/329/\",\n", + " \"language_name\": \"Chuang\"\n", + " },\n", + " {\n", + " \"url\": \"http://django-backend-shift-enter-u53fbnjraa-oe.a.run.app/api/languages/330/\",\n", + " \"language_name\": \"Zulu\"\n", + " }\n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "import random\n", + "\n", + "\n", + "def generate_random_languages():\n", + " num_options = random.randint(1, 5) # Between 1 and 5 languages\n", + " options = []\n", + " # English always included\n", + " options.append(\"English\")\n", + " \n", + " # Other languages with other lebels\n", + " for _ in range(num_options - 1):\n", + " language = random.choice(languages)\n", + " options.append(f'{language[\"language_name\"]}')\n", + " \n", + " return options\n", + "\n", + "for i in range(439):\n", + " print(generate_random_languages())" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "dob = [\"10.08.1981\",\n", + "\"09.07.1981\",\n", + "\"07.11.1974\",\n", + "\"28.01.1979\",\n", + "\"09.04.1982\",\n", + "\"02.06.1981\",\n", + "\"14.01.1985\",\n", + "\"11.04.1972\",\n", + "\"25.02.2000\",\n", + "\"07.03.1974\",\n", + "\"21.03.1973\",\n", + "\"03.08.1982\",\n", + "\"02.05.1982\",\n", + "\"06.08.1992\",\n", + "\"22.06.1984\",\n", + "\"27.04.1985\",\n", + "\"11.01.1998\",\n", + "\"17.06.1979\",\n", + "\"08.09.1998\",\n", + "\"27.09.1978\",\n", + "\"05.08.1972\",\n", + "\"21.10.1974\",\n", + "\"07.06.1976\",\n", + "\"15.04.1971\",\n", + "\"17.03.1972\",\n", + "\"12.04.1986\",\n", + "\"15.11.1986\",\n", + "\"03.12.1997\",\n", + "\"14.07.1987\",\n", + "\"19.08.1993\",\n", + "\"10.12.1977\",\n", + "\"10.03.1978\",\n", + "\"21.08.1977\",\n", + "\"02.07.1978\",\n", + "\"05.03.1992\",\n", + "\"18.12.1970\",\n", + "\"24.04.1977\",\n", + "\"22.04.2000\",\n", + "\"01.11.1973\",\n", + "\"27.12.1970\",\n", + "\"06.10.1998\",\n", + "\"16.06.1986\",\n", + "\"22.11.1980\",\n", + "\"01.08.1996\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "def correct_dob(dat):\n", + " y = dat[-4:]\n", + " m = dat[3:5]\n", + " d = dat[:2]\n", + " return f\"{y}-{m}-{d}\"\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for i in dob:\n", + " print(correct_dob(i))" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "companies = [\"ONE Agency\",\n", + "\"True Wealth\",\n", + "\"modum.io AG\",\n", + "\"ABB\",\n", + "\"ONE Agency\",\n", + "\"Starmind\",\n", + "\"myitjob\",\n", + "\"Ava AG\",\n", + "\"Antal International\",\n", + "\"ONE Agency\",\n", + "\"Smallpdf\",\n", + "\"Quotient Limited\",\n", + "\"Verity Studios AG\",\n", + "\"Adecco Human Resources AG\",\n", + "\"B3i - The Blockchain Insurance Industry Initiative\",\n", + "\"ONE Agency\",\n", + "\"ONE Agency\",\n", + "\"HILTI\",\n", + "\"Therefore Corporation\",\n", + "\"Swiss AviationSoftware\",\n", + "\"Open Systems AG\",\n", + "\"ExcelRedstone\",\n", + "\"Johnson Electric\",\n", + "\"modum.io AG\",\n", + "\"Fixposition AG\",\n", + "\"Helvetica Partners\",\n", + "\"Varian Medical Systems\",\n", + "\"ONE Agency\",\n", + "\"CHUV\",\n", + "\"Helvetica Partners\",\n", + "\"Therefore Corporation\",\n", + "\"Helvetica Partners\",\n", + "\"Helvetica Partners\",\n", + "\"myitjob\",\n", + "\"Sophia Genetics\",\n", + "\"Swiss Re\",\n", + "\"QSSOT Technology\",\n", + "\"Vizrt\",\n", + "\"Lykke Business AG\",\n", + "\"1Drop Diagnostics\",\n", + "\"Nexiot AG\",\n", + "\"ONE Agency\",\n", + "\"ONE Agency\",\n", + "\"ONE Agency\",\n", + "\"lm group\",\n", + "\"SpotMe\",\n", + "\"Helvetica Partners\",\n", + "\"Unit8\",\n", + "\"myitjob\",\n", + "\"Hexagon Manufacturing Intelligence\",\n", + "\"ONE Agency\",\n", + "\"Universität Basel\",\n", + "\"G-20 Group\",\n", + "\"B3i - The Blockchain Insurance Industry Initiative\",\n", + "\"local.ch\",\n", + "\"MaxWell Biosystems AG\",\n", + "\"myitjob\",\n", + "\"PDS Life Sciences\",\n", + "\"EF Education First\",\n", + "\"myitjob\",\n", + "\"Cloudbeds\",\n", + "\"myitjob\",\n", + "\"Cembra Money Bank\",\n", + "\"Varian Medical Systems\",\n", + "\"myitjob\",\n", + "\"VideoJobs\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Work & Work SA\",\n", + "\"myitjob\",\n", + "\"Genedata\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"D ONE Solutions\",\n", + "\"ONE Agency\",\n", + "\"Universität Basel\",\n", + "\"EPFL Extension School\",\n", + "\"myitjob\",\n", + "\"Frontiers\",\n", + "\"Plex\",\n", + "\"Helvetica Partners\",\n", + "\"myitjob\",\n", + "\"ABB\",\n", + "\"myitjob\",\n", + "\"Glocomms\",\n", + "\"Adfinis SyGroup\",\n", + "\"myitjob\",\n", + "\"Helvetica Partners\",\n", + "\"NEWcruitment\",\n", + "\"Genedata\",\n", + "\"PartnerRe\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Swiss Re\",\n", + "\"CasperLabs\",\n", + "\"investiere\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Vizrt\",\n", + "\"Universität Basel\",\n", + "\"Open Web Technology\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"ONE Agency\",\n", + "\"RepRisk\",\n", + "\"Octal\",\n", + "\"Verity Studios AG\",\n", + "\"myitjob\",\n", + "\"Work & Work SA\",\n", + "\"ONE Agency\",\n", + "\"TOFWERK AG\",\n", + "\"ELCA\",\n", + "\"Private Alpha Switzerland AG\",\n", + "\"myitjob\",\n", + "\"Swiss International Air Lines AG\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Adia\",\n", + "\"True Wealth AG\",\n", + "\"Coopers Group\",\n", + "\"Vitamin T\",\n", + "\"Adecco Human Resources AG\",\n", + "\"GKA, P.C.\",\n", + "\"Darwin Recruitment\",\n", + "\"Predictive Layer\",\n", + "\"Adfinis SyGroup\",\n", + "\"myitjob\",\n", + "\"Oviva AG\",\n", + "\"Helvetica Partners\",\n", + "\"Swiss International Air Lines AG\",\n", + "\"Swatch Group\",\n", + "\"Genedata\",\n", + "\"Teralytics\",\n", + "\"Endress+Hauser\",\n", + "\"ONE Agency\",\n", + "\"42matters\",\n", + "\"Ava AG\",\n", + "\"Swisscom (Schweiz) AG\",\n", + "\"Nanocorp AG\",\n", + "\"myitjob\",\n", + "\"local.ch\",\n", + "\"VideoJobs\",\n", + "\"ONE Agency\",\n", + "\"Cembra Money Bank\",\n", + "\"ProClinical\",\n", + "\"Helvetica Partners\",\n", + "\"EPFL\",\n", + "\"True Wealth AG\",\n", + "\"myitjob\",\n", + "\"Avaloq\",\n", + "\"Evooq\",\n", + "\"Verity Studios AG\",\n", + "\"lm group\",\n", + "\"EPAM Systems\",\n", + "\"Hunters Group\",\n", + "\"Helvetica Partners\",\n", + "\"Frontiers\",\n", + "\"astrivis\",\n", + "\"Adfinis SyGroup\",\n", + "\"Smallpdf\",\n", + "\"Hays\",\n", + "\"Starmind\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"EPFL\",\n", + "\"ONE Agency\",\n", + "\"Helvetica Partners\",\n", + "\"myitjob\",\n", + "\"Dentsply Sirona\",\n", + "\"ELCA\",\n", + "\"Nicoll Curtin Limited\",\n", + "\"Helvetica Partners\",\n", + "\"Teralytics\",\n", + "\"Swisscom (Schweiz) AG\",\n", + "\"ANYbotics\",\n", + "\"ExcelRedstone\",\n", + "\"myitjob\",\n", + "\"Predictive Layer\",\n", + "\"ONE Agency\",\n", + "\"Coopers Group\",\n", + "\"EF Education First\",\n", + "\"nemensis ag\",\n", + "\"Swisscom (Schweiz) AG\",\n", + "\"Cembra Money Bank\",\n", + "\"Schindler\",\n", + "\"MaxWell Biosystems AG\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Universität Basel\",\n", + "\"ONE Agency\",\n", + "\"Nicoll Curtin Limited\",\n", + "\"SpotMe\",\n", + "\"AdNovum Informatik\",\n", + "\"myitjob\",\n", + "\"FELFEL\",\n", + "\"EPAM Systems\",\n", + "\"Helvetica Partners\",\n", + "\"Verity Studios AG\",\n", + "\"myitjob\",\n", + "\"Albelissa S.r.l.\",\n", + "\"Genedata\",\n", + "\"Experis\",\n", + "\"Swiss Re\",\n", + "\"Adfinis SyGroup\",\n", + "\"Vicara Infotech Group AG\",\n", + "\"Open Systems AG\",\n", + "\"Spring Professional\",\n", + "\"Nexthink\",\n", + "\"EPSCom\",\n", + "\"ONE Agency\",\n", + "\"Swisscom (Schweiz) AG\",\n", + "\"Helvetica Partners\",\n", + "\"Swarovski\",\n", + "\"Ayaval AG\",\n", + "\"Axxiome\",\n", + "\"Swiss International Air Lines AG\",\n", + "\"Advertima AG\",\n", + "\"Ishi Systems\",\n", + "\"Fixposition AG\",\n", + "\"Helvetica Partners\",\n", + "\"Helvetica Partners\",\n", + "\"TOFWERK AG\",\n", + "\"myitjob\",\n", + "\"G-20 Group\",\n", + "\"Nicoll Curtin Limited\",\n", + "\"3 Plus TV Network AG\",\n", + "\"42matters\",\n", + "\"Swiss Re\",\n", + "\"Procter & Gamble\",\n", + "\"Adecco Human Resources AG\",\n", + "\"myitjob\",\n", + "\"Avaloq\",\n", + "\"Helvetica Partners\",\n", + "\"Open Web Technology\",\n", + "\"ELCA\",\n", + "\"myitjob\",\n", + "\"EF International Language Campuses\",\n", + "\"nemensis ag\",\n", + "\"ONE Agency\",\n", + "\"SwissBorg\",\n", + "\"Magnolia International Ltd.\",\n", + "\"myitjob\",\n", + "\"Paul Scherrer Institut\",\n", + "\"Robert Walters\",\n", + "\"ONE Agency\",\n", + "\"Unit8\",\n", + "\"lm group\",\n", + "\"GKA, P.C.\",\n", + "\"ONE Agency\",\n", + "\"ONE Agency\",\n", + "\"myitjob\",\n", + "\"Hexagon Manufacturing Intelligence\",\n", + "\"ONE Agency\",\n", + "\"Sophia Genetics\",\n", + "\"Magic Leap - Multiple Locations\",\n", + "\"Digital Partners SA\",\n", + "\"ONE Agency\",\n", + "\"BEHIND DIGITAL\",\n", + "\"myitjob\",\n", + "\"Experis\",\n", + "\"Sunflower Labs Inc.\",\n", + "\"ONE Agency\",\n", + "\"myitjob\",\n", + "\"Cloud Academy, Inc.\",\n", + "\"Careerplus AG\",\n", + "\"EPFL\",\n", + "\"Paul Scherrer Institut\",\n", + "\"Nanolive SA\",\n", + "\"PDS Life Sciences\",\n", + "\"Frontiers\",\n", + "\"myitjob\",\n", + "\"Helvetica Partners\",\n", + "\"myitjob\",\n", + "\"HILTI\",\n", + "\"ABB\",\n", + "\"myitjob\",\n", + "\"Flyability\",\n", + "\"Nanolive SA\",\n", + "\"Helvetica Partners\",\n", + "\"Axxiome\",\n", + "\"Swiss International Air Lines AG\",\n", + "\"Paradox Engineering\",\n", + "\"aiaibot\",\n", + "\"Endress+Hauser\",\n", + "\"Open Systems AG\",\n", + "\"Private Alpha Switzerland AG\",\n", + "\"Helvetica Partners\",\n", + "\"Swiss Re\",\n", + "\"lm group\",\n", + "\"Lykke Business AG\",\n", + "\"Varian Medical Systems\",\n", + "\"MSCI Inc.\",\n", + "\"One Step Beyond Group & Logol Offices\",\n", + "\"Smallpdf\",\n", + "\"Swiss International Air Lines AG\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Swisslinx AG\",\n", + "\"Avaloq\",\n", + "\"Swiss AviationSoftware\",\n", + "\"Avaloq\",\n", + "\"EPAM Systems\",\n", + "\"Swiss Re\",\n", + "\"Helvetica Partners\",\n", + "\"Starmind\",\n", + "\"eTeam UK\",\n", + "\"myitjob\",\n", + "\"Avaloq\",\n", + "\"MIACAR\",\n", + "\"EPFL\",\n", + "\"EPFL Extension School\",\n", + "\"EF International Language Campuses\",\n", + "\"myitjob\",\n", + "\"University of Basel\",\n", + "\"Adfinis SyGroup\",\n", + "\"Unit8\",\n", + "\"myitjob\",\n", + "\"lm group\",\n", + "\"Coopers Group\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"One Step Beyond Group & Logol Offices\",\n", + "\"Robert Walters\",\n", + "\"ELCA\",\n", + "\"1Drop Diagnostics\",\n", + "\"Helvetica Partners\",\n", + "\"myitjob\",\n", + "\"GKA, P.C.\",\n", + "\"myitjob\",\n", + "\"EPSCom\",\n", + "\"Avaloq\",\n", + "\"astrivis\",\n", + "\"myitjob\",\n", + "\"Quotient Limited\",\n", + "\"myitjob\",\n", + "\"RepRisk\",\n", + "\"Ishi Systems\",\n", + "\"Frontiers\",\n", + "\"Greenliff AG\",\n", + "\"myitjob\",\n", + "\"Agidens Schweiz\",\n", + "\"Fixposition AG\",\n", + "\"Darwin Recruitment\",\n", + "\"myitjob\",\n", + "\"addexpert GmbH\",\n", + "\"CHUV\",\n", + "\"myitjob\",\n", + "\"Swiss International Air Lines AG\",\n", + "\"Kudelski SA\",\n", + "\"HID Global\",\n", + "\"addexpert GmbH\",\n", + "\"AO Foundation\",\n", + "\"Homegate AG\",\n", + "\"Nanolive SA\",\n", + "\"ONE Agency\",\n", + "\"EPAM Systems\",\n", + "\"wega Informatik AG\",\n", + "\"TOFWERK AG\",\n", + "\"addexpert GmbH\",\n", + "\"Nicoll Curtin Limited\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"CHUV\",\n", + "\"Adecco Human Resources AG\",\n", + "\"Helvetica Partners\",\n", + "\"Predictive Layer\",\n", + "\"Axxiome\",\n", + "\"Smallpdf\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Swiss Startup Factory AG\",\n", + "\"myitjob\",\n", + "\"ExcelRedstone\",\n", + "\"EPSCom\",\n", + "\"Avaloq\",\n", + "\"Procter & Gamble\",\n", + "\"Starmind\",\n", + "\"myitjob\",\n", + "\"Genedata\",\n", + "\"myitjob\",\n", + "\"Nanocorp AG\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"myitjob\",\n", + "\"Badenoch + Clark\",\n", + "\"Darwin Recruitment\",\n", + "\"AdNovum Informatik\",\n", + "\"myitjob\",\n", + "\"ELCA\",\n", + "\"Helvetica Partners\",\n", + "\"investiere\",\n", + "\"libC Technologies SA\",\n", + "\"myitjob\",\n", + "\"ONE Agency\",\n", + "\"Ava AG\",\n", + "\"Fixposition AG\",\n", + "\"ABB\",\n", + "\"Fixposition AG\",\n", + "\"DAI Group GmbH\",\n", + "\"myitjob\",\n", + "\"Helvetica Partners\",\n", + "\"Institute for Biomechanics\",\n", + "\"Cimpress/Vistaprint\",\n", + "\"myitjob\",\n", + "\"Nicoll Curtin Limited\",\n", + "\"ONE Agency\",\n", + "\"Genius Sports\",\n", + "\"Paul Scherrer Institut\",\n", + "\"CK Group\",\n", + "\"Cembra Money Bank\",\n", + "\"Therefore Corporation\",\n", + "\"Vitamin T\",\n", + "\"Octal\",\n", + "\"Quotient Limited\",\n", + "\"Universität Basel\",\n", + "\"Hunters Group\",\n", + "\"Logitech\",\n", + "\"EF Education First\",\n", + "\"myitjob\",\n", + "\"Ringier AG\",\n", + "\"myitjob\",\n", + "\"SPOUD AG\",\n", + "\"myitjob\",\n", + "\"Beekeeper Careers\",\n", + "\"ONE Agency\",\n", + "\"Nexiot AG\",\n", + "\"myitjob\",\n", + "\"Avaloq\",\n", + "\"Fixposition AG\",\n", + "\"Universität Basel\",\n", + "\"SwissBorg\",\n", + "\"Neural Concept\",\n", + "\"local.ch\",\n", + "\"Procter & Gamble\",\n", + "\"ProClinical\",\n", + "\"myitjob\"]\n", + "\n", + "companies = list(set(companies))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "companies.sort()\n", + "for i in companies:\n", + " print(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
company_idjob_titlelocationindustrywebsitejobdescription_embeddedjob_descriptionsoft_skillshard_skillslanguages
084application engineer - javaZürichIT ServicesNaN[[-2.55808532e-01 3.37073445e-01 4.68456328e-0...About our client Our client is the world’s le...[\"Analytical Skills\", \"Team Oriented\", \"Teamwo...[\"Application Development\", \"Web Applications\"...['English', 'Basque']
1123software engineerZürichNaNNaN[[-2.12718710e-01 1.10670008e-01 4.75184590e-0...As a pioneer in Swiss online wealth management...[\"Typing\", \"Writing\"][\"Application Development\", \"Web Applications\"...['English', 'Tagalog', 'Assamese']
275software engineerZürichNaNNaN[[-1.51853904e-01 2.82749176e-01 4.16773558e-0...Although you will be exposed to all the differ...[\"Teamwork\", \"Decisiveness\", \"Collaboration\", ...[\"Bitbucket\", \"Automation\", \"Tooling\", \"Code R...['English']
34software engineer network management system m/fBernElectrical & Electronic Manufacturingwww.abb.com[[-1.00095063e-01 1.79666638e-01 4.91430968e-0...In order to improve our Network Management Sys...[\"Collaboration\", \"Communications\", \"Writing\",...[\"Front End (Software Engineering)\", \"Professi...['English', 'Chewa', 'Bosnian', 'Yiddish', 'Af...
484application engineer - javaZürichIT ServicesNaN[[-2.55808532e-01 3.37073445e-01 4.68456328e-0...About our client Our client is the world’s le...[\"Analytical Skills\", \"Team Oriented\", \"Teamwo...[\"Application Development\", \"Web Applications\"...['English', 'Spanish', 'Croatian']
.................................
42779software engineerLausanneNaNNaN[[-1.27125368e-01 2.69796431e-01 4.17574644e-0...Our company Neural Concept uses Deep Learning...[\"Research\", \"Collaboration\", \"Planning\", \"Rel...[\"MSC Software\", \"Kubernetes\", \"Tooling\", \"NoS...['English']
42868software engineer / kubernetesZürichPublishingNaN[[-9.86396894e-02 3.53228837e-01 5.67326486e-0...localsearch is the leading marketing and adver...[\"Collaboration\", \"Communications\", \"Infrastru...[\"Web Applications\", \"Web Servers\", \"Advertise...['English', 'Marathi', 'Castilian', 'Irish']
42997paid internship in information technology - da...GenevaNaNwww.pg.com[[-1.46625876e-01 2.97089696e-01 5.98815024e-0...Do you have passion to transform P&G's brand b...[\"Self-Motivation\", \"Leadership\", \"Collaborati...[\"Business Analytics\", \"Tableau (Business Inte...['English', 'Western Frisian', 'Gaelic', 'Kann...
43096study data managerBaselStaffing & Outsourcingwww.proclinical.com[[-3.31524819e-01 3.49949777e-01 3.49553525e-0...A leading international healthcare company is ...[\"Ingenuity\", \"Complex Problem Solving\", \"Nego...[\"Biometrics\", \"Automation\", \"Mitigation\", \"Ou...['English', 'Aymara', 'Avaric', 'Burmese']
43175software development engineer (c/c++) m/fZürichNaNNaN[[-1.79381236e-01 4.31842625e-01 4.21524853e-0...Job Informationen Required skills: - Universi...NaN[\"Application Development\", \"Software Modules\"...['English']
\n", + "

432 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " company_id job_title location \\\n", + "0 84 application engineer - java Zürich \n", + "1 123 software engineer Zürich \n", + "2 75 software engineer Zürich \n", + "3 4 software engineer network management system m/f Bern \n", + "4 84 application engineer - java Zürich \n", + ".. ... ... ... \n", + "427 79 software engineer Lausanne \n", + "428 68 software engineer / kubernetes Zürich \n", + "429 97 paid internship in information technology - da... Geneva \n", + "430 96 study data manager Basel \n", + "431 75 software development engineer (c/c++) m/f Zürich \n", + "\n", + " industry website \\\n", + "0 IT Services NaN \n", + "1 NaN NaN \n", + "2 NaN NaN \n", + "3 Electrical & Electronic Manufacturing www.abb.com \n", + "4 IT Services NaN \n", + ".. ... ... \n", + "427 NaN NaN \n", + "428 Publishing NaN \n", + "429 NaN www.pg.com \n", + "430 Staffing & Outsourcing www.proclinical.com \n", + "431 NaN NaN \n", + "\n", + " jobdescription_embedded \\\n", + "0 [[-2.55808532e-01 3.37073445e-01 4.68456328e-0... \n", + "1 [[-2.12718710e-01 1.10670008e-01 4.75184590e-0... \n", + "2 [[-1.51853904e-01 2.82749176e-01 4.16773558e-0... \n", + "3 [[-1.00095063e-01 1.79666638e-01 4.91430968e-0... \n", + "4 [[-2.55808532e-01 3.37073445e-01 4.68456328e-0... \n", + ".. ... \n", + "427 [[-1.27125368e-01 2.69796431e-01 4.17574644e-0... \n", + "428 [[-9.86396894e-02 3.53228837e-01 5.67326486e-0... \n", + "429 [[-1.46625876e-01 2.97089696e-01 5.98815024e-0... \n", + "430 [[-3.31524819e-01 3.49949777e-01 3.49553525e-0... \n", + "431 [[-1.79381236e-01 4.31842625e-01 4.21524853e-0... \n", + "\n", + " job_description \\\n", + "0 About our client Our client is the world’s le... \n", + "1 As a pioneer in Swiss online wealth management... \n", + "2 Although you will be exposed to all the differ... \n", + "3 In order to improve our Network Management Sys... \n", + "4 About our client Our client is the world’s le... \n", + ".. ... \n", + "427 Our company Neural Concept uses Deep Learning... \n", + "428 localsearch is the leading marketing and adver... \n", + "429 Do you have passion to transform P&G's brand b... \n", + "430 A leading international healthcare company is ... \n", + "431 Job Informationen Required skills: - Universi... \n", + "\n", + " soft_skills \\\n", + "0 [\"Analytical Skills\", \"Team Oriented\", \"Teamwo... \n", + "1 [\"Typing\", \"Writing\"] \n", + "2 [\"Teamwork\", \"Decisiveness\", \"Collaboration\", ... \n", + "3 [\"Collaboration\", \"Communications\", \"Writing\",... \n", + "4 [\"Analytical Skills\", \"Team Oriented\", \"Teamwo... \n", + ".. ... \n", + "427 [\"Research\", \"Collaboration\", \"Planning\", \"Rel... \n", + "428 [\"Collaboration\", \"Communications\", \"Infrastru... \n", + "429 [\"Self-Motivation\", \"Leadership\", \"Collaborati... \n", + "430 [\"Ingenuity\", \"Complex Problem Solving\", \"Nego... \n", + "431 NaN \n", + "\n", + " hard_skills \\\n", + "0 [\"Application Development\", \"Web Applications\"... \n", + "1 [\"Application Development\", \"Web Applications\"... \n", + "2 [\"Bitbucket\", \"Automation\", \"Tooling\", \"Code R... \n", + "3 [\"Front End (Software Engineering)\", \"Professi... \n", + "4 [\"Application Development\", \"Web Applications\"... \n", + ".. ... \n", + "427 [\"MSC Software\", \"Kubernetes\", \"Tooling\", \"NoS... \n", + "428 [\"Web Applications\", \"Web Servers\", \"Advertise... \n", + "429 [\"Business Analytics\", \"Tableau (Business Inte... \n", + "430 [\"Biometrics\", \"Automation\", \"Mitigation\", \"Ou... \n", + "431 [\"Application Development\", \"Software Modules\"... \n", + "\n", + " languages \n", + "0 ['English', 'Basque'] \n", + "1 ['English', 'Tagalog', 'Assamese'] \n", + "2 ['English'] \n", + "3 ['English', 'Chewa', 'Bosnian', 'Yiddish', 'Af... \n", + "4 ['English', 'Spanish', 'Croatian'] \n", + ".. ... \n", + "427 ['English'] \n", + "428 ['English', 'Marathi', 'Castilian', 'Irish'] \n", + "429 ['English', 'Western Frisian', 'Gaelic', 'Kann... \n", + "430 ['English', 'Aymara', 'Avaric', 'Burmese'] \n", + "431 ['English'] \n", + "\n", + "[432 rows x 10 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.read_csv(\"IT_entry_swiss_jobs_with_embeddings - IT_entry_swiss_jobs_with_embeddings.csv\")\n", + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import csv" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'company_id': '84',\n", + " 'job_title': 'application engineer - java',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.55808532e-01 3.37073445e-01 4.68456328e-01 5.96076213e-02\\n5.44890523e-01 -1.30339459e-01 -6.62898943e-02 3.29940349e-01\\n-1.33533999e-01 -4.37654316e-01 -9.55163836e-02 -9.86115709e-02\\n-2.44956892e-02 8.97528455e-02 1.91370547e-01 4.12870944e-01\\n3.98574650e-01 4.05492671e-02 -1.95302904e-01 3.74782205e-01\\n4.89123389e-02 -1.11160949e-01 5.33090308e-02 7.80794084e-01\\n4.13207948e-01 1.13232441e-01 -6.04151897e-02 6.60173744e-02\\n-2.10499361e-01 -3.23715150e-01 4.23470140e-01 -2.09919382e-02\\n-1.34444311e-01 -2.64349818e-01 9.52050239e-02 1.19265221e-01\\n-2.31448621e-01 -5.00229672e-02 -1.45653486e-01 1.76977158e-01\\n-4.10124719e-01 -1.29672006e-01 -3.39588299e-02 3.45962495e-02\\n-2.20398188e-01 -3.71905416e-01 6.46123067e-02 -7.94861168e-02\\n1.17574111e-01 3.11294086e-02 -4.69237506e-01 4.03305441e-01\\n-2.40431517e-01 -2.43310541e-01 3.38967860e-01 6.33943081e-01\\n2.96667460e-02 -5.11293590e-01 -4.87605125e-01 -3.44192207e-01\\n7.87505060e-02 -1.29626557e-01 9.30146426e-02 -2.42762446e-01\\n4.47398901e-01 1.04160108e-01 -8.24963972e-02 3.83848429e-01\\n-7.97209024e-01 -1.07523687e-01 -3.29579711e-01 3.70689780e-02\\n-3.70374799e-01 -8.13968852e-02 -3.12633991e-01 -1.14763446e-01\\n-8.15293640e-02 3.55602741e-01 -1.03652045e-01 1.35296375e-01\\n-6.63444549e-02 3.51141989e-01 -1.81835383e-01 2.70721883e-01\\n2.73774385e-01 2.31659353e-01 3.50735873e-01 3.75950336e-01\\n-3.80406201e-01 4.46385920e-01 1.94512874e-01 -2.76750147e-01\\n2.33661681e-01 1.19846925e-01 4.12772179e-01 6.91626519e-02\\n2.01970413e-01 1.45325661e-01 -1.91437185e-01 1.84454829e-01\\n1.30477324e-01 -2.56454110e-01 -6.58136792e-03 -9.07894596e-02\\n4.78952155e-02 -4.00098674e-02 -4.03733477e-02 1.06311999e-01\\n-3.49379867e-01 5.01761436e-01 6.22101501e-02 -3.02358806e-01\\n-8.92782956e-02 -5.99835992e-01 -8.50415826e-02 8.68865922e-02\\n-4.39783782e-02 1.91453785e-01 1.59146443e-01 2.95719832e-01\\n1.90271661e-01 -9.04824436e-02 1.08334050e-01 8.31530809e-01\\n-1.22043923e-01 4.49038930e-02 -2.67735660e-01 2.90029049e-01\\n1.27206907e-01 -2.70772278e-01 1.79501295e-01 2.63166666e-01\\n1.74689665e-03 6.09629638e-02 -3.04220974e-01 3.00966203e-01\\n-7.15184137e-02 -2.06152022e-01 -3.32405835e-01 2.25395441e-01\\n-1.69399813e-01 -5.35365522e-01 5.83341897e-01 -3.82870249e-02\\n2.75041968e-01 -1.18573099e-01 2.17579566e-02 -2.60559805e-02\\n-1.23969451e-01 3.01834524e-01 7.54818618e-02 2.21436217e-01\\n-3.15245390e-01 -1.66647941e-01 -1.93758175e-01 2.47777402e-01\\n-2.97981381e-01 1.46861881e-01 -1.49710953e-01 -1.04214452e-01\\n3.01210731e-01 2.52711959e-02 -4.04339701e-01 3.56099248e-01\\n-6.74385354e-02 -1.64164379e-01 -1.02923870e-01 3.31898332e-01\\n-1.37728736e-01 2.39060670e-01 -1.13384187e-01 -1.24124274e-01\\n6.32526994e-01 7.46572912e-02 2.40839735e-01 -1.07302647e-02\\n2.22918794e-01 -9.25877169e-02 2.69894093e-01 8.15138370e-02\\n-7.03108072e-01 2.74010420e-01 -6.40975982e-02 -2.34274596e-01\\n6.22633584e-02 -4.20332737e-02 3.22813958e-01 -4.21590626e-01\\n-5.65426871e-02 -1.72655284e-01 -2.85524338e-01 -3.58665943e-01\\n-2.36733884e-01 -2.36240551e-02 4.88393277e-01 -4.98519540e-01\\n-5.10029830e-02 1.99642405e-01 -6.13220513e-01 -6.79643303e-02\\n2.18699187e-01 1.64105758e-01 6.95907474e-02 1.90601468e-01\\n-7.42574036e-02 -5.63156486e-01 1.37512803e-01 -4.56095994e-01\\n-3.15934867e-01 1.56589180e-01 -3.28141838e-01 2.17608362e-01\\n8.49500522e-02 -1.23327123e-02 -1.04825869e-01 1.11761570e-01\\n-2.85331249e-01 4.45580557e-02 1.35202497e-01 3.80220972e-02\\n3.29133093e-01 4.05695960e-02 -4.49544370e-01 5.78053594e-01\\n-2.12196633e-01 4.15153384e-01 1.59640163e-01 -9.36754048e-01\\n5.18396258e-01 3.31254005e-01 3.14372852e-02 -3.10493439e-01\\n6.27963066e-01 -3.67640793e-01 -1.48033082e-01 2.36281469e-01\\n-4.27161992e-01 -2.44814724e-01 1.93949476e-01 -2.02260315e-01\\n-2.75662482e-01 6.55525923e-01 1.09605700e-01 1.94541007e-01\\n4.22844380e-01 -1.77056521e-01 -1.06027231e-01 -5.68426475e-02\\n-2.33480513e-01 -2.83239096e-01 -5.74048519e-01 3.81746776e-02\\n-8.32576007e-02 -6.05826735e-01 -2.30568081e-01 -4.92524147e-01\\n-1.92836434e-01 -3.80383462e-01 -1.81332529e-01 2.67955780e-01\\n1.41903698e-01 2.17924520e-01 -2.59663761e-02 -2.82805413e-05\\n-1.04236759e-01 -6.34298444e-01 6.45491295e-03 3.85725275e-02\\n3.33907098e-01 3.68606746e-01 6.91049248e-02 -1.53220534e-01\\n7.54841194e-02 5.43214202e-01 -3.79810214e-01 -3.71833265e-01\\n1.80991501e-01 1.37095332e-01 -8.96518975e-02 -1.18662618e-01\\n1.00606620e-01 3.50473344e-01 -3.23105812e-01 5.36582321e-02\\n-1.40380487e-01 9.02424827e-02 3.43137801e-01 -1.16156861e-01\\n-2.37240762e-01 -2.30305433e-01 -6.20119125e-02 2.76989222e-01\\n-5.26858091e-01 -2.83450663e-01 6.36926591e-01 1.41324237e-01\\n9.57625210e-02 2.04510853e-01 3.18703741e-01 -6.05596676e-02\\n-2.34628364e-01 -2.48275146e-01 2.10501537e-01 1.15231000e-01\\n2.48011678e-01 1.00390658e-01 -7.82887638e-02 -5.29437125e-01\\n-3.07844353e+00 -2.50917226e-01 1.20902330e-01 -2.61083633e-01\\n2.78342307e-01 -1.24349117e-01 1.32776409e-01 1.43680759e-02\\n-4.02289629e-01 5.13123870e-02 -1.07671551e-01 -1.73335433e-01\\n1.48070514e-01 2.33742535e-01 1.60335720e-01 1.71329409e-01\\n2.15245724e-01 -2.29246348e-01 4.06482965e-02 4.06005919e-01\\n-6.58445060e-02 -8.09059501e-01 1.01522341e-01 -3.60648707e-03\\n3.07430267e-01 2.79584885e-01 -4.22020316e-01 -6.92063645e-02\\n-3.40389699e-01 -2.67280400e-01 4.57585379e-02 -2.82098770e-01\\n-1.55224264e-01 4.03723001e-01 1.53713584e-01 -1.74165189e-01\\n1.02423690e-01 -3.70172977e-01 -9.85361114e-02 -4.75336730e-01\\n1.46209925e-01 -6.77501917e-01 -3.63746211e-02 -3.01472694e-02\\n6.60295725e-01 -3.21714073e-01 2.27353185e-01 8.08809549e-02\\n1.93406820e-01 1.98059082e-01 1.02558687e-01 -9.37359408e-03\\n-3.49216551e-01 -2.95364887e-01 -1.17402233e-01 -1.88076094e-01\\n6.45881295e-01 4.75026369e-01 -2.77792782e-01 2.24572215e-02\\n4.18757983e-02 -3.29170465e-01 -4.85821426e-01 -3.31049681e-01\\n-1.85520738e-01 -2.00931773e-01 -6.25781417e-01 -4.96386766e-01\\n-1.67225331e-01 -1.53440312e-01 -5.19684516e-02 7.37138569e-01\\n-2.70267487e-01 -2.81533390e-01 -8.99527594e-02 -5.24616003e-01\\n2.43159264e-01 -1.89375639e-01 -4.52903137e-02 -2.34442040e-01\\n-2.27502540e-01 -5.09904444e-01 1.63961247e-01 6.39593452e-02\\n-1.58689231e-01 -1.05306461e-01 1.59754351e-01 -2.05803767e-01\\n-3.69312346e-01 -5.18929958e-01 5.75707674e-01 6.63628876e-02\\n3.21575999e-01 1.86075434e-01 3.19788098e-01 1.09983027e-01\\n4.29221332e-01 -1.02604628e-01 1.37512162e-02 -5.35878062e-01\\n7.15918392e-02 3.97919342e-02 5.22148609e-01 -1.40084922e-01\\n1.24339759e-02 4.87452000e-03 -1.84229299e-01 -2.08469592e-02\\n4.39739347e-01 6.02326244e-02 1.33663625e-01 -2.71868944e-01\\n2.80583382e-01 -3.50069523e-01 -2.49759808e-01 1.41578719e-01\\n-4.02060151e-02 6.59861267e-01 3.47793438e-02 -2.96816379e-01\\n-1.62126109e-01 4.53513265e-01 -7.98134431e-02 -1.62108783e-02\\n-1.94086432e-01 1.07621238e-01 -2.27464229e-01 2.19464988e-01\\n1.83093138e-02 -9.78198126e-02 -1.91391110e-01 4.86656697e-03\\n-1.51257411e-01 1.95946336e-01 2.46717036e-01 2.09692076e-01\\n-5.34470789e-02 -3.02856624e-01 -7.21270591e-03 1.93470493e-01\\n2.53031969e-01 3.25770289e-01 1.66620940e-01 -2.34616667e-01\\n3.85101140e-02 3.16680670e-01 -1.49006814e-01 2.45270267e-01\\n-2.36596435e-01 8.04373771e-02 -6.37423277e-01 -2.30439693e-01\\n-2.30456978e-01 -3.34649503e-01 -6.83899829e-03 2.91253537e-01\\n4.45786752e-02 -5.21223731e-02 8.56707990e-02 -4.97735322e-01\\n2.78131902e-01 4.10677344e-02 2.26697251e-01 3.00913006e-02\\n-6.06206506e-02 5.89340568e-01 -7.83510059e-02 -2.26526827e-01\\n-1.43483758e-01 1.50425300e-01 -1.28624856e-01 -2.77871430e-01\\n2.21437011e-02 -5.10774732e-01 -1.24284521e-01 3.86217386e-01\\n1.49989963e-01 -2.12735116e-01 -2.60763764e-01 1.82894036e-01\\n-2.10438296e-03 -4.07131851e-01 -2.56571651e-01 -1.91104766e-02\\n3.39273393e-01 1.41859427e-01 2.06782162e-01 -5.00617266e-01\\n-9.58528928e-03 -5.77640384e-02 1.32779256e-02 3.28384459e-01\\n1.16819277e-01 1.23974651e-01 -8.56348872e-02 -2.47029841e-01\\n3.91880929e-01 -5.13763018e-02 -6.37968630e-02 -6.45359531e-02\\n1.15723625e-01 -2.61147946e-01 -4.43698198e-01 -5.20283356e-03\\n-6.28705919e-02 -2.16344774e-01 -2.21439749e-02 5.34471273e-02\\n6.54756948e-02 5.56902997e-02 -6.02025211e-01 -1.81921363e-01\\n-3.93161595e-01 -1.01522189e-02 -1.80128962e-03 -5.54661036e-01\\n2.57067755e-03 -5.91491163e-02 -6.17012143e-01 2.27462009e-01\\n-1.93288505e-01 -7.72827305e-03 1.46137372e-01 2.70685507e-03\\n-3.74308825e-01 -1.38795897e-01 1.30044013e-01 1.26882434e-01\\n-2.59685308e-01 -2.41290480e-01 -1.71773992e-02 -9.16896820e-01\\n2.41099849e-01 -4.47780043e-02 -1.46295428e-01 8.71659443e-03\\n5.96119016e-02 -7.86224246e-01 2.13490158e-01 -4.42587554e-01\\n-7.34034330e-02 -5.32511994e-02 -2.99654871e-01 -4.19603884e-01\\n3.32528539e-02 -4.87955436e-02 -2.67345995e-01 3.14116657e-01\\n-4.43440706e-01 4.77910995e-01 -5.23517281e-02 6.92546889e-02\\n3.75449434e-02 -3.45616579e-01 2.75129788e-02 -3.67159486e-01\\n-3.87125075e-01 -2.75124967e-01 -2.27405623e-01 -3.12143117e-01\\n-5.44109643e-02 -2.16156214e-01 -1.21164486e-01 9.74652767e-02\\n3.21979523e-01 1.05820104e-01 -2.83785611e-01 -2.47695193e-01\\n1.01856500e-01 -4.55958515e-01 9.02074426e-02 -1.49648845e-01\\n-3.45571898e-02 -1.57413781e-01 2.15351492e-01 6.77896887e-02\\n2.28583157e-01 -3.68386686e-01 4.44630802e-01 -2.92355150e-01\\n-3.59969676e-01 -8.22744370e-02 1.13130346e-01 4.51801717e-02\\n2.53296554e-01 -6.18026316e-01 -6.44735321e-02 3.72729301e-01\\n1.04283050e-01 6.92583397e-02 2.28760540e-01 -1.70242697e-01\\n-1.63246632e-01 2.34861016e-01 -4.79902893e-01 1.48090035e-01\\n7.77719855e-01 2.28743553e-01 5.85735962e-02 2.23965555e-01\\n1.58306122e-01 3.82422984e-01 4.55016315e-01 1.49419159e-02\\n-9.50162858e-02 3.85829329e-01 1.96012005e-01 -5.41675091e-01\\n-1.24380015e-01 -9.51157883e-03 -1.40057385e-01 -3.01467419e-01\\n6.94568574e-01 3.71726364e-01 -4.20915484e-01 -3.55089873e-01\\n-2.26755977e-01 -2.35909551e-01 2.98081458e-01 -6.97169602e-02\\n5.14107719e-02 -1.42977446e-01 5.49829006e-01 -1.31223723e-02\\n2.81506836e-01 6.61413014e-01 -1.87012076e-01 -2.85775006e-01\\n-7.63901770e-02 2.90733933e-01 9.05569568e-02 4.20053661e-01\\n-1.76569521e-01 2.53755927e-01 -3.02340109e-02 1.76752418e-01\\n-1.60879016e-01 6.01500645e-02 2.92551577e-01 6.61502779e-03\\n1.34982318e-01 1.12038657e-01 5.60967207e-01 4.95282680e-01\\n2.00496227e-01 5.04207850e-01 3.72471899e-01 -1.62782501e-02\\n4.71184939e-01 5.92214525e-01 3.25640649e-01 2.45483033e-02\\n-2.64912676e-02 1.69008434e-01 2.05812186e-01 5.43586574e-02\\n3.22243929e-01 4.08530116e-01 8.90217051e-02 9.97545362e-01\\n3.87153029e-01 3.19197863e-01 7.53401756e-01 -7.12076545e-01\\n-2.79803216e-01 -1.47552006e-02 4.94328380e-01 -4.31035519e-01\\n-1.32653294e-02 2.12294117e-01 -2.65596122e-01 3.15961719e-01\\n-4.04976249e-01 -7.22043738e-02 -2.86986753e-02 9.25575048e-02\\n1.18286289e-01 -1.01890124e-01 -1.91296682e-01 4.56276685e-02\\n-1.74387008e-01 -2.33241647e-01 -4.21412408e-01 -2.96364427e-01\\n-2.45122820e-01 -6.12163916e-02 -1.05807714e-01 -7.34834746e-02\\n-4.70886268e-02 -3.62323701e-01 -8.82291272e-02 -3.69754508e-02\\n3.59874010e-01 -1.34197772e-01 -7.44640976e-02 -1.35085329e-01\\n3.40849400e-01 2.69734621e-01 7.25262880e-01 -9.86575484e-02\\n6.82408363e-02 -1.93322390e-01 -2.12183774e-01 3.83212455e-02\\n1.16222426e-02 2.72300448e-02 6.09408990e-02 6.09072864e-01\\n-4.38957065e-01 -2.35902786e-01 3.38127762e-02 3.76781821e-01\\n-3.67565483e-01 -1.03730634e-01 -8.06691051e-02 1.36216834e-01\\n5.58694601e-02 1.21972516e-01 -2.23918110e-01 3.74377519e-02\\n-1.55979425e-01 -5.45422792e-01 3.82009685e-01 -1.06562130e-01\\n-1.06963478e-01 1.02384321e-01 2.55640328e-01 3.24659407e-01\\n-2.01840848e-01 -1.92697197e-02 -6.82788491e-02 3.50340195e-02\\n5.35736457e-02 4.43974257e-01 -1.17212661e-01 -2.35562384e-01\\n-3.46341729e-01 2.55334347e-01 -1.38096064e-01 4.98439968e-02\\n-2.76826546e-02 3.61386091e-01 1.17341019e-02 1.87336355e-01\\n1.89934328e-01 8.19223654e-03 -3.49441022e-01 -2.55365729e-01\\n-1.77964300e-01 -8.43334943e-02 -6.15842268e-03 -1.66509047e-01\\n2.88866103e-01 -2.58812249e-01 -1.03354618e-01 -2.33927459e-01\\n-1.81191191e-01 -2.71966875e-01 -6.74397647e-02 -7.69971758e-02]]',\n", + " 'job_description': 'About our client Our client is the world’s leading wholesale providers of reinsurance, insurance and other innovative forms of insurance-based risk transfer. Your responsibilities Our client is hiring an application engineer to work in a team with IT specialists and business analysts to design and develop solutions for global IT projects. The role is focused on maintaining and developing reporting applications for the Finance division. Maintaining, analyzing, designing, documenting, implementing, testing and deploying high-quality applications is within the responsibility of the team and you. You are interested to find out how you can apply your software engineering skills in the area of object-oriented design and analysis. Knowledge in surrounding technologies like J2EE, HTML5, JavaScript and WebSphere Liberty will help you by understanding the bigger picture. You are not afraid to learn other technologies like z/OS mainframe (i.e. JCL, JES, DB2) In addition, providing Level 3 support for ongoing operations is an integral part of the job. You enjoy solving challenging problems and you are equipped with good analytical skills and are highly motivated. You are willing to constantly develop your knowledge of IT methods and tools. You bring in an interest for reinsurance, financial topics, business requirements engineering and solution design. You will cooperate closely with the team lead, team members and internal clients, promoting teamwork within the project and the department across the globe. Your profile Graduates in computer science are preferred. Graduates in mathematics, technical studies, or natural sciences with software engineering experience are also considered. Persons with multiple years with professional experience in software engineering and projects are preferred. Knowledge in all of the following areas is required: Object Oriented Design & Analysis Java (programming language and libraries), J2EE Web services technologies (RESTful) and WebSphere liberty profile SQL and relational database design Creation and maintenance of technical documentation Strong command of German and English The ideal candidate also offers: Experience with data- and compute-intensive applications (batch processing, scheduling) Know-how in HTML5/JavaScript web-application development, Spring, Hibernate, IBM WebSphere Application Server Good analytical skills Cooperative, team-oriented work-style Experience with agile and test-driven and/or test-oriented software development (JUnit/bamboo/Jira) Above average quality awareness Passion to deliver innovative technical solutions which focus on business requirements and system stability Curiosity and open-mindedness; willingness to learn and develop skills on requirements engineering, test case engineering and solution definition and design Innovative, showing a high degree of own initiative Ability to work under pressure Ability to express him-/herself effectively in one-to-one conversations and small groups Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung HTML JavaScript Web JEE/J2EE Agile Hibernate (Framework) Spring (Framework) SQL Sprachen: Deutsch Englisch Job ID: 2085',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Team Oriented\", \"Teamwork\", \"Cooperation\", \"Willingness To Learn\", \"Integration\", \"Innovation\", \"Curiosity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Risk-Based Testing\", \"Test Case\", \"Tooling\", \"KM Programming Language\", \"Software Design Documents\", \"Agility\", \"Computer Science\", \"Junit\", \"Atlassian Bamboo\", \"Natural Sciences\", \"Hibernate (Java)\", \"SQL (Programming Language)\", \"Maintainability\", \"z/OS\", \"HTML5\", \"Application Servers\", \"E (Programming Language)\", \"Levelling\", \"Library\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"Reinsurance\", \"DB2 SQL\", \"Web Services\", \"Business Requirements\", \"Finance\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Job Control Language (JCL)\", \"Technical Documentation\", \"IBM Websphere Application Server\", \"Technical Solution Design\", \"Batch Processing\", \"Relational Databases\", \"Software Development\", \"Solution Design\", \"Additives\", \"JIRA Studio\", \"Java (Programming Language)\", \"Spring Framework\", \"Web Application Development\"]',\n", + " 'languages': \"['English', 'Basque']\"},\n", + " {'company_id': '123',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.12718710e-01 1.10670008e-01 4.75184590e-01 -3.31541561e-02\\n5.69552958e-01 -1.60082176e-01 -7.25976750e-02 4.56851900e-01\\n-9.39485431e-03 -3.46985042e-01 -8.97977054e-02 -1.99055016e-01\\n-8.65264684e-02 1.58009958e-02 1.02504492e-01 2.59520143e-01\\n3.06469977e-01 1.36347577e-01 -2.48786330e-01 3.25105458e-01\\n1.79310754e-01 -2.32021026e-02 1.37772277e-01 6.70434237e-01\\n4.32870984e-01 -9.26994905e-03 -5.02437763e-02 1.68501791e-02\\n-3.41383606e-01 -2.54121363e-01 3.67121607e-01 8.42692852e-02\\n-7.05615878e-02 -3.59335333e-01 1.45708352e-01 8.81755725e-03\\n-1.51054129e-01 -4.73292582e-02 -2.31389552e-02 1.41306147e-01\\n-4.23853874e-01 -8.47265050e-02 3.57912071e-02 1.68432042e-01\\n-1.48513973e-01 -3.20981532e-01 1.53395742e-01 7.15538859e-02\\n1.64333247e-02 -6.99292794e-02 -5.31052053e-01 2.89238751e-01\\n-2.30182275e-01 -1.60018951e-01 3.27089399e-01 5.50157547e-01\\n-8.36343616e-02 -4.28591281e-01 -3.96054715e-01 -3.07384968e-01\\n5.95142469e-02 -1.71042472e-01 1.51446328e-01 -2.11977735e-01\\n3.31668735e-01 -2.31110733e-02 -3.43213091e-03 2.97998548e-01\\n-7.79415309e-01 -5.81556968e-02 -1.41546845e-01 -1.76338837e-01\\n-3.18232208e-01 -2.24399015e-01 -1.93985447e-01 -4.46574651e-02\\n-1.71832874e-01 3.20438266e-01 -6.34812191e-03 5.26670851e-02\\n-6.86931312e-02 2.12634176e-01 -2.00736940e-01 3.13361734e-01\\n2.52206504e-01 2.17922837e-01 1.51003763e-01 3.45444053e-01\\n-2.80736625e-01 3.58816803e-01 1.37060717e-01 -2.95692831e-01\\n2.77554035e-01 4.61736321e-02 4.52695072e-01 -1.02109641e-01\\n1.33541137e-01 1.27233073e-01 -1.72725827e-01 2.61346072e-01\\n2.25934163e-01 -2.93657184e-01 3.51308547e-02 -1.02400355e-01\\n-1.25162467e-01 3.93865891e-02 1.34616476e-02 3.91661078e-01\\n-2.72497803e-01 3.95819575e-01 1.96953848e-01 -1.68162256e-01\\n-5.27839642e-03 -5.32436013e-01 -6.35794401e-02 -2.85449419e-02\\n2.27576680e-02 1.41635060e-01 2.99577534e-01 1.95003539e-01\\n3.15216422e-01 5.50945289e-02 1.77949935e-01 7.82162249e-01\\n-6.95528388e-02 -1.06485942e-02 -1.83141634e-01 3.71077567e-01\\n9.47134420e-02 -3.52449417e-01 2.07145333e-01 2.55971640e-01\\n8.44329000e-02 -4.29405048e-02 -2.09174842e-01 3.19562584e-01\\n-5.72665446e-02 -1.91153005e-01 -2.65503317e-01 8.97026062e-02\\n-1.28501087e-01 -3.72112185e-01 5.62508404e-01 1.56871960e-01\\n1.82912469e-01 -5.53048588e-02 -3.94426426e-03 -2.21927717e-01\\n-4.68951911e-02 2.87027925e-01 9.74720940e-02 1.88746959e-01\\n-1.85686409e-01 -1.10682644e-01 -2.17966035e-01 1.81002915e-01\\n-2.57769823e-01 7.08091408e-02 -7.26538822e-02 -5.00200726e-02\\n3.62583697e-01 -2.00315248e-02 -2.42031783e-01 2.19914317e-01\\n3.02398708e-02 4.06021476e-02 -1.06041133e-01 3.07472825e-01\\n-2.29071662e-01 2.34056324e-01 -1.36502251e-01 -7.84502849e-02\\n6.44152164e-01 1.61935315e-01 2.14210033e-01 -3.28235291e-02\\n2.50620186e-01 -7.06445798e-02 1.67265102e-01 7.12040365e-02\\n-8.15086186e-01 2.42198512e-01 1.28117274e-03 -1.65778592e-01\\n6.76135942e-02 -5.00779673e-02 1.37460813e-01 -3.51681769e-01\\n4.32248600e-02 -1.54658869e-01 -3.77197415e-01 -2.91289896e-01\\n-3.03335607e-01 -9.16837007e-02 3.07800502e-01 -4.15722877e-01\\n-1.02222636e-01 2.00834513e-01 -5.02035618e-01 3.72994356e-02\\n1.83305636e-01 1.77630514e-01 4.49362583e-02 1.15844019e-01\\n-5.32674938e-02 -5.16095459e-01 6.99020997e-02 -3.28726798e-01\\n-2.88491368e-01 1.62937149e-01 -2.47179538e-01 2.99806535e-01\\n8.17100406e-02 -3.60871688e-03 -5.27518056e-02 2.28180990e-01\\n-1.02618970e-01 -1.21068411e-01 1.88411877e-01 6.55864552e-02\\n2.54900992e-01 7.91452155e-02 -4.36164886e-01 4.37535971e-01\\n-2.04018384e-01 5.89163840e-01 1.02276370e-01 -7.77375340e-01\\n4.37204629e-01 3.24561894e-01 6.48089424e-02 -3.41800421e-01\\n6.36652648e-01 -1.69620857e-01 1.53298108e-02 7.70890489e-02\\n-4.41106647e-01 -3.21914732e-01 2.47038200e-01 -1.36424556e-01\\n-1.91462532e-01 4.89517599e-01 4.56175320e-02 5.19953435e-03\\n1.95847452e-01 -1.99075177e-01 -5.01468070e-02 3.65773179e-02\\n-1.21756531e-01 -2.94013977e-01 -4.61595267e-01 -4.91148829e-02\\n-1.14157505e-01 -4.44583118e-01 -1.26388982e-01 -3.75852644e-01\\n-2.06945211e-01 -3.22829634e-01 -2.07525894e-01 2.34229311e-01\\n2.03865364e-01 1.66954443e-01 -1.32062072e-02 2.37189997e-02\\n-2.29091525e-01 -5.97406268e-01 -2.53920234e-03 8.40099901e-02\\n3.77256215e-01 2.09424272e-01 1.02357976e-01 -1.86912585e-02\\n-1.24870762e-01 6.59388185e-01 -2.65086740e-01 -6.37472123e-02\\n1.81517839e-01 2.24729568e-01 6.41338155e-02 -1.10455289e-01\\n-1.14096198e-02 3.50315392e-01 -2.16362074e-01 1.63446777e-02\\n-1.03627004e-01 -7.60748684e-02 4.34545428e-01 2.02471707e-02\\n-2.71126121e-01 -2.40514025e-01 -4.98008206e-02 2.19685823e-01\\n-4.63799328e-01 -1.55582711e-01 6.35922015e-01 3.00473094e-01\\n2.06713691e-01 2.17857823e-01 1.91894814e-01 -1.05688877e-01\\n-1.28329784e-01 -2.90801406e-01 3.11618835e-01 1.38225809e-01\\n1.68557122e-01 1.23579711e-01 -1.66140854e-01 -5.96358597e-01\\n-3.53283405e+00 -1.64912969e-01 1.76509857e-01 -3.28984261e-01\\n1.09984174e-01 -1.17865667e-01 -1.39584824e-01 -1.46593168e-01\\n-2.26898283e-01 1.09511226e-01 -2.12813944e-01 -2.69764543e-01\\n2.24568531e-01 2.26212189e-01 1.37748510e-01 3.02404076e-01\\n2.31716678e-01 -1.49721682e-01 7.57346908e-03 1.73221111e-01\\n-3.42497349e-01 -5.52999556e-01 2.60361671e-01 -3.25897820e-02\\n3.42976838e-01 4.00614530e-01 -2.75678575e-01 -2.59755522e-01\\n-2.44935572e-01 -2.62971163e-01 2.63636727e-02 -3.30364555e-01\\n-5.86436205e-02 3.28728765e-01 1.46820843e-01 -1.61966845e-01\\n1.91452384e-01 -3.43591660e-01 -5.06713763e-02 -4.04672235e-01\\n8.26874822e-02 -4.13416058e-01 -3.02240681e-02 -5.08640260e-02\\n7.34365463e-01 -4.10922140e-01 1.48562327e-01 1.37132227e-01\\n2.51234561e-01 2.06326500e-01 -3.90384682e-02 -5.87912910e-02\\n-2.58642286e-01 -1.34982914e-01 -8.38747621e-02 -1.50602043e-01\\n4.60600466e-01 5.76390684e-01 -2.07731828e-01 6.07291460e-02\\n1.76067501e-02 -3.20771903e-01 -2.81750977e-01 -2.87910014e-01\\n-1.34599343e-01 -3.14505786e-01 -4.89336461e-01 -3.61866951e-01\\n-4.56856042e-02 -2.04332527e-02 -1.28606603e-01 5.82632720e-01\\n-1.87858805e-01 -4.79950458e-01 -1.34232873e-02 -5.14285147e-01\\n7.88142383e-02 -1.45390570e-01 -4.92166821e-03 -1.79838151e-01\\n-1.04273111e-01 -4.92918193e-01 4.75566126e-02 -2.23151576e-02\\n-1.09107792e-01 -3.50248814e-01 9.56417993e-02 -1.17105290e-01\\n-2.31957301e-01 -5.50469100e-01 3.18325698e-01 1.21233135e-01\\n2.62410462e-01 9.83931795e-02 1.64810479e-01 1.12242542e-01\\n2.45010570e-01 -3.01274002e-01 8.95757303e-02 -3.86696041e-01\\n2.06775680e-01 -3.99843697e-03 5.00576675e-01 -1.94019094e-01\\n6.88759238e-02 1.84414431e-01 -2.64946133e-01 -1.07918791e-01\\n3.15362632e-01 9.43630561e-02 9.17450413e-02 -1.87196746e-01\\n3.37431490e-01 -4.16387230e-01 -2.63860971e-01 6.32998720e-02\\n-3.74885648e-02 5.00317335e-01 -4.79320027e-02 -3.58302653e-01\\n-1.30018353e-01 4.61492151e-01 -9.25939232e-02 -2.08459377e-01\\n-1.70828104e-01 9.59294587e-02 -1.22736216e-01 1.70590743e-01\\n6.15473986e-02 -2.28921279e-01 -3.15639704e-01 -1.64479196e-01\\n-5.71926609e-02 2.15553910e-01 2.34726235e-01 3.35783288e-02\\n3.87717411e-03 -3.30380470e-01 5.35378419e-02 1.25451773e-01\\n1.44117251e-01 3.53448987e-01 2.47955415e-02 -1.14867717e-01\\n-5.18599898e-02 3.18735838e-01 -9.90720019e-02 2.05109492e-01\\n-2.30546817e-01 -1.61895305e-02 -4.45723206e-01 -2.24193379e-01\\n-2.20119506e-01 -3.16136777e-01 6.43201079e-03 1.50462195e-01\\n1.04363553e-01 1.52094662e-02 -4.16187197e-02 -4.36461240e-01\\n3.42555195e-01 -5.38821109e-02 2.80280024e-01 2.12995023e-01\\n-4.33207303e-02 4.08671558e-01 2.05697827e-02 -6.98305443e-02\\n-2.02849299e-01 1.56739622e-01 -1.68497950e-01 -1.07083447e-01\\n1.26849553e-02 -4.49319005e-01 -7.01745003e-02 3.53944868e-01\\n3.42339464e-02 -3.27452809e-01 -1.46854416e-01 1.84733301e-01\\n-3.22363935e-02 -2.91881710e-01 -1.51817352e-01 3.82919461e-02\\n3.42724174e-01 -5.87161630e-03 3.45243305e-01 -3.62602532e-01\\n-1.06267586e-01 2.17560166e-03 -1.12053879e-01 4.87787575e-01\\n4.24789786e-02 5.96854463e-02 -8.26710388e-02 -2.93139279e-01\\n2.55333096e-01 -6.91333115e-02 -9.90862846e-02 3.49178016e-02\\n1.09669901e-01 -1.88418955e-01 -5.21453142e-01 1.75913132e-03\\n2.82762386e-02 -8.56460184e-02 2.51963418e-02 9.83123928e-02\\n1.49539769e-01 9.49136764e-02 -5.79984605e-01 -3.42897534e-01\\n-3.39955539e-01 -9.51370969e-02 6.23938888e-02 -3.32857847e-01\\n-8.20384324e-02 -4.07100394e-02 -5.84246874e-01 2.33391866e-01\\n-1.75940439e-01 -8.40682983e-02 1.27914891e-01 6.68329187e-03\\n-3.36378634e-01 -2.69900472e-03 1.72126234e-01 2.11603746e-01\\n-3.03627610e-01 -2.57374197e-01 1.31622598e-01 -1.01720822e+00\\n2.00547591e-01 6.86768163e-03 -7.49853104e-02 -1.92255732e-02\\n-6.75750747e-02 -5.61195612e-01 5.74049652e-02 -4.01492804e-01\\n-5.64935729e-02 -1.00407088e-02 -1.97284684e-01 -4.66606468e-01\\n8.69494230e-02 -8.38179141e-02 -3.06868583e-01 4.34492677e-01\\n-3.23680937e-01 3.74145329e-01 -4.98623922e-02 7.96938688e-02\\n-3.26891877e-02 -3.11599135e-01 1.26220301e-01 -4.36862916e-01\\n-4.38858747e-01 -8.41317549e-02 -3.09086442e-01 -1.08355090e-01\\n1.16099209e-01 -2.39239082e-01 -9.41130891e-02 4.01942730e-02\\n3.65165949e-01 2.39352472e-02 -1.78526416e-01 -2.86411196e-01\\n5.09746075e-02 -4.74315137e-01 1.22491986e-01 -1.02762833e-01\\n-1.20330654e-01 -3.34377028e-02 7.17092603e-02 7.60539025e-02\\n3.73299271e-02 -4.19745982e-01 3.47955912e-01 -2.89118141e-01\\n-2.87288696e-01 -1.71999671e-02 1.09056465e-01 1.44922482e-02\\n1.73615053e-01 -5.45116782e-01 -1.68892015e-02 3.45015317e-01\\n3.63763534e-02 1.24727800e-01 2.33098254e-01 -1.23717906e-02\\n-5.54527156e-02 3.32082033e-01 -2.59306550e-01 3.03124581e-02\\n7.23120093e-01 3.08251008e-02 4.15100381e-02 2.57384181e-01\\n2.45725945e-01 3.40794504e-01 4.25681174e-01 3.80517505e-02\\n-1.00565404e-01 2.38715172e-01 -3.81433815e-02 -6.82809651e-01\\n8.19775239e-02 4.83994223e-02 -1.99874684e-01 -4.64724243e-01\\n6.90540373e-01 4.51806784e-01 -3.37007135e-01 -2.57907242e-01\\n-7.44212493e-02 -1.16033733e-01 5.76912872e-02 -1.37315720e-01\\n1.42517880e-01 -1.62721321e-01 5.01554251e-01 -3.76961268e-02\\n2.04613194e-01 5.21006644e-01 -2.01255247e-01 -4.09145981e-01\\n-5.56958765e-02 1.45002350e-01 1.00933045e-01 5.46358883e-01\\n-2.09273189e-01 3.04940075e-01 2.73396913e-03 1.46520227e-01\\n-1.44312242e-02 1.79971069e-01 3.59536335e-02 4.67083082e-02\\n1.31515726e-01 -4.02162969e-02 3.46305132e-01 3.83515894e-01\\n3.19380850e-01 4.55225527e-01 3.22439224e-01 3.29549164e-02\\n5.28798938e-01 5.44467866e-01 4.24797446e-01 1.92358255e-01\\n-1.03390820e-01 4.17311341e-02 6.57252669e-02 -1.51358889e-02\\n2.86080688e-01 2.95822740e-01 2.14015823e-02 8.77493799e-01\\n5.03477752e-01 2.13869169e-01 6.34135604e-01 -6.44551873e-01\\n-3.06712121e-01 -9.60781127e-02 3.37035000e-01 -2.63259917e-01\\n-6.30480647e-02 1.02037191e-01 -1.37230366e-01 2.73399770e-01\\n-3.77271861e-01 -1.56726763e-01 -3.40395272e-02 1.51002750e-01\\n7.52778128e-02 -4.60717231e-02 -3.45592111e-01 2.45063044e-02\\n-1.42694175e-01 -1.94053799e-01 -6.03991389e-01 -7.24309087e-02\\n-2.89841473e-01 -2.23297849e-01 -7.52496868e-02 -1.87227726e-01\\n-1.27276093e-01 -3.20762247e-01 -1.43152714e-01 -6.13771612e-03\\n2.46454671e-01 -1.38288751e-01 -3.07585243e-02 -2.84276694e-01\\n2.99108595e-01 1.83433607e-01 4.68343616e-01 -1.13699242e-01\\n1.53801590e-01 -2.25997627e-01 -2.95881897e-01 1.05147555e-01\\n1.57206491e-01 8.77672136e-02 3.04993987e-02 3.56749564e-01\\n-3.33115608e-01 -7.28528202e-02 2.21941471e-01 3.74152452e-01\\n-4.89055097e-01 1.68205034e-02 -2.58056726e-03 2.86537230e-01\\n9.98579636e-02 1.45134419e-01 -2.68062890e-01 3.77636738e-02\\n-2.18111828e-01 -4.93041754e-01 3.00931811e-01 -3.82694229e-02\\n-8.88267979e-02 1.86702445e-01 2.31924757e-01 2.04290092e-01\\n-2.40811303e-01 -5.96433766e-02 -6.66469112e-02 1.98056191e-01\\n1.53466508e-01 3.27050567e-01 -2.28249490e-01 -2.55908400e-01\\n-2.18592197e-01 1.50415406e-01 -3.20769757e-01 1.13673970e-01\\n-1.28965855e-01 2.35460579e-01 1.00536861e-01 8.53970349e-02\\n2.83914268e-01 3.75412740e-02 -1.57884791e-01 -1.76064670e-01\\n-2.19078660e-01 -2.44343072e-01 3.22884656e-02 -1.08290367e-01\\n2.06559792e-01 -3.71505409e-01 -6.91285059e-02 -3.66223454e-02\\n-2.40121603e-01 -3.35044056e-01 -1.07151186e-02 -4.27005515e-02]]',\n", + " 'job_description': 'As a pioneer in Swiss online wealth management we are changing the way people invest their money. Our product is transparent and easy to use, while also suited for the demanding investor, who is looking for individual solutions and full control. Investing with True Wealth saves your time and your money. To help us to further develop our digital wealth management solution and bring it to the next level, we are looking for a Software Engineer. Requirements Your profile: You have a strong foundation as a Software Engineer (engineering degree), with an inclination towards functional concepts, types and good software design You are a team player who writes clean and elegant code and shares our passion of building a great platform. You possess strong skills in at least one typed programming language. Experience with Java and TypeScript is an advantage but not necessarily required. You are interested and might be experienced in web application development, from browsers down to the database. You might have business domain knowledge from finance, trading, or portfolio management You are fluent in English and are based in or around Zurich (we offer help with relocation). German skills are an advantage but not required. You need to hold or be eligible for a work permit in Switzerland (e.g. via Swiss or EU/EFTA citizenship) Benefits We offer: Responsibility, ownership and influence on the further development of our best-in-class roboadvice solution. Flexibility, exposure and opportunities to work across the entire stack, depending on preferences and skills. Backend stack: Java 12, Java EE (CDI, JAX-RS, JMS), jOOQ, Wildfly, Lombok, Gradle, Docker, PostgreSQL. Front-end stack: TypeScript, React, Redux. Competitive salary package, solidly financed growth company. Continuous integration, single command deployments. Office in Zürich (near station Zürich Binz SZU, 2 stops from HB). In your application, please include your full CV as well as references and possibly public samples to previous work, e.g. on GitHub. We do not work with recruitment agencies.',\n", + " 'soft_skills': '[\"Typing\", \"Writing\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"KM Programming Language\", \"Investment Control\", \"Continuous Integration\", \"Wealth Management\", \"TypeScript\", \"Java EE Application\", \"PostgreSQL\", \"WildFly (JBoss AS)\", \"Gradle\", \"E (Programming Language)\", \"Levelling\", \"Lombok\", \"Software Engineering\", \"Java Message Service (JMS)\", \"Investments\", \"Portfolio Management\", \"Github\", \"Docker (Software)\", \"React Redux\", \"Finance\", \"Experimental Software Engineering\", \"Digitization\", \"Software Design\", \"Front End (Software Engineering)\", \"Software Requirements Specification\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Trade Finance\", \"Web Application Development\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Tagalog', 'Assamese']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.51853904e-01 2.82749176e-01 4.16773558e-01 2.93572042e-02\\n4.61985588e-01 -1.64056927e-01 -3.86512727e-02 3.04083169e-01\\n7.93065801e-02 -5.39510012e-01 3.76780592e-02 -2.52851725e-01\\n-6.72062784e-02 1.02888979e-01 1.32925250e-02 4.28548813e-01\\n3.36443126e-01 1.31367236e-01 -1.97596133e-01 4.02601957e-01\\n7.17061460e-02 -5.96080050e-02 1.26930624e-01 6.98441982e-01\\n3.49849343e-01 -1.09164491e-01 -1.87495220e-02 -3.01221311e-02\\n-1.32925004e-01 -2.71054983e-01 4.65912700e-01 8.99737477e-02\\n-1.22823849e-01 -4.68331605e-01 9.94839817e-02 4.85083908e-02\\n-1.95725054e-01 7.95359015e-02 -6.79348335e-02 1.13579780e-01\\n-6.03635311e-01 -2.64114439e-01 -2.75513697e-02 3.42427082e-02\\n-1.83309406e-01 -2.57113636e-01 1.18164904e-01 -9.80994999e-02\\n1.56996340e-01 2.33045314e-02 -4.71748829e-01 2.52788663e-01\\n-3.41844261e-01 -2.26983979e-01 3.41973901e-01 5.28108180e-01\\n-2.03851182e-02 -4.94283795e-01 -6.58994079e-01 -3.39779377e-01\\n3.00914571e-02 -1.72587752e-01 -2.90854573e-02 -3.07613969e-01\\n2.55332947e-01 -7.03514814e-02 1.19554270e-02 2.49553502e-01\\n-6.81886852e-01 1.81134902e-02 -2.47238889e-01 -1.09319299e-01\\n-3.65392059e-01 -2.38672912e-01 -2.33202964e-01 4.81628478e-02\\n-1.39655590e-01 4.10703480e-01 7.09529892e-02 3.14599462e-02\\n-1.58952117e-01 2.87235975e-01 -3.45203400e-01 3.96860719e-01\\n1.45613164e-01 1.34366691e-01 3.43703419e-01 3.05019617e-01\\n-4.57446992e-01 4.62661028e-01 2.08779007e-01 -4.03823584e-01\\n3.74662608e-01 1.53921038e-01 4.63089406e-01 1.90360881e-02\\n1.37246877e-01 1.47153229e-01 -2.55212933e-01 3.48711252e-01\\n2.79457510e-01 -2.66440183e-01 -3.56807820e-02 -2.13237703e-01\\n8.43477026e-02 -4.87976409e-02 1.49752349e-01 1.47534534e-01\\n-2.37148762e-01 4.15283293e-01 1.49318814e-01 -2.76279449e-01\\n-1.14670306e-01 -3.66054744e-01 -1.42359540e-01 6.95504621e-03\\n4.27637026e-02 1.81085706e-01 1.46180481e-01 1.21656843e-01\\n1.92323208e-01 1.50476381e-01 5.65629527e-02 7.86176801e-01\\n-1.19430579e-01 4.15503681e-02 -3.39550972e-01 2.68115640e-01\\n2.24812061e-01 -3.47362399e-01 2.23471761e-01 1.77440405e-01\\n-9.45480838e-02 -9.25485864e-02 -1.77205503e-01 3.76194477e-01\\n-6.40595425e-03 -1.59389690e-01 -2.66261041e-01 1.31095633e-01\\n6.03977703e-02 -3.25128168e-01 6.37466908e-01 1.78865463e-01\\n2.02598646e-01 3.76355946e-02 -1.92543566e-02 -2.10498214e-01\\n-1.18873179e-01 2.58673608e-01 -5.41237220e-02 1.31135568e-01\\n-2.30271280e-01 -1.43977970e-01 -1.87533647e-01 1.40528113e-01\\n-4.13394272e-01 1.40609473e-01 -2.17305258e-01 -1.29088402e-01\\n2.50678897e-01 1.08649395e-02 -2.74858832e-01 2.09452033e-01\\n-2.48852186e-03 2.19559297e-02 1.27206072e-02 3.51277232e-01\\n-1.60248041e-01 2.08561122e-01 7.06601068e-02 -5.37634864e-02\\n6.80675566e-01 1.12800136e-01 2.85742939e-01 5.92212602e-02\\n3.17470670e-01 -3.89739424e-02 9.55083072e-02 1.93305999e-01\\n-5.91625452e-01 3.98992181e-01 -8.85723680e-02 -1.47099257e-01\\n8.77693295e-02 -6.11826777e-03 2.62965977e-01 -2.56337464e-01\\n-2.87390910e-02 -1.23226069e-01 -3.32620353e-01 -3.06448996e-01\\n-2.28533715e-01 6.26224279e-02 4.07534271e-01 -4.95527178e-01\\n-9.39548165e-02 2.63277024e-01 -5.93906999e-01 -1.09094560e-01\\n1.52626276e-01 1.63263544e-01 1.39021665e-01 9.13143009e-02\\n-2.17890710e-01 -5.61075449e-01 1.02988407e-01 -4.43747342e-01\\n-3.40748221e-01 7.05156103e-02 -2.66900718e-01 2.72048056e-01\\n9.65817496e-02 -4.27995175e-02 -1.15397945e-01 1.44985765e-01\\n-2.77967155e-01 -9.48584974e-02 7.74344653e-02 1.53259793e-02\\n2.19162792e-01 7.28397295e-02 -3.82569253e-01 5.26934683e-01\\n-1.99122563e-01 6.58057332e-01 1.02083795e-01 -9.35929954e-01\\n4.71788108e-01 2.85227984e-01 1.46428235e-02 -3.50296199e-01\\n4.36701715e-01 -3.71808946e-01 -1.97303481e-02 8.42674375e-02\\n-3.22009802e-01 -2.84546852e-01 3.08001131e-01 -1.28479317e-01\\n-2.97352612e-01 5.45129240e-01 3.60197425e-02 -1.75679475e-02\\n2.27491602e-01 -2.35922039e-01 -1.20448001e-01 1.12001151e-02\\n-1.02237865e-01 -2.86956280e-01 -6.16333723e-01 -2.34142523e-02\\n-1.26600355e-01 -4.25326765e-01 -5.03216311e-02 -4.43184674e-01\\n-1.89085156e-01 -4.41163301e-01 -3.11557263e-01 1.62245423e-01\\n2.92577803e-01 2.07104266e-01 -1.46590129e-01 -1.31869689e-02\\n-8.68371949e-02 -8.00820231e-01 -5.97576872e-02 1.93396747e-01\\n4.50607121e-01 9.83140916e-02 1.69954926e-01 3.75439338e-02\\n4.73290756e-02 4.87658352e-01 -3.38964254e-01 -2.08802015e-01\\n1.67273805e-01 2.14505658e-01 3.11082006e-02 -1.59085870e-01\\n1.07689418e-01 4.36079979e-01 -2.90260524e-01 4.89904061e-02\\n7.88347349e-02 -6.43597245e-02 4.33847904e-01 -7.09353238e-02\\n-4.39166069e-01 -1.02428116e-01 -6.27335906e-02 7.00320154e-02\\n-6.32573187e-01 -2.41143867e-01 6.37951851e-01 2.38822937e-01\\n2.70893633e-01 2.08718419e-01 1.27282187e-01 -7.46941715e-02\\n-2.19982117e-01 -2.73872823e-01 3.48563731e-01 1.70646384e-01\\n8.57338384e-02 1.13342285e-01 -1.11812964e-01 -7.05805600e-01\\n-3.47820950e+00 -1.98804468e-01 1.86101571e-01 -1.11582398e-01\\n2.07219243e-01 -1.67883456e-01 1.54417932e-01 -9.51950923e-02\\n-2.63436764e-01 7.86402896e-02 -8.82522017e-02 -1.56386971e-01\\n1.29203692e-01 2.21233070e-01 7.22615197e-02 2.81732500e-01\\n1.92154139e-01 -1.15012646e-01 3.88471782e-03 3.01531971e-01\\n-1.63786590e-01 -6.07062161e-01 2.28397340e-01 -4.34342287e-02\\n2.36585960e-01 2.35726267e-01 -2.93797433e-01 2.18861904e-02\\n-2.35802248e-01 -1.65861815e-01 6.01463094e-02 -1.59181595e-01\\n-1.75091028e-01 1.15330614e-01 1.80915445e-01 -1.35884568e-01\\n6.47971332e-02 -4.60945129e-01 -2.55378455e-01 -3.84763241e-01\\n1.50852859e-01 -5.44501424e-01 3.62265036e-02 -2.03480899e-01\\n6.20627642e-01 -2.44352341e-01 1.73251599e-01 1.21275097e-01\\n1.85098350e-01 1.86248749e-01 1.08163804e-01 4.91858274e-03\\n-2.07442254e-01 -2.21972346e-01 -8.30474794e-02 -1.63111478e-01\\n6.49472713e-01 4.59177822e-01 -1.68107107e-01 -7.88643211e-02\\n-5.11258617e-02 -1.93040326e-01 -4.75074351e-01 -1.87300295e-01\\n-1.23400807e-01 -1.61706984e-01 -4.80531424e-01 -2.54409164e-01\\n-2.68609405e-01 -2.12280691e-01 -1.75548166e-01 7.46642470e-01\\n-3.15946281e-01 -3.43264818e-01 -2.64203623e-02 -4.69152868e-01\\n2.91048855e-01 -2.02012002e-01 -1.95010900e-02 -1.45873651e-01\\n-2.85877943e-01 -4.90522504e-01 3.31342369e-02 5.30523323e-02\\n-1.91990241e-01 -3.06639075e-01 4.34964634e-02 -1.07063971e-01\\n-3.32143009e-01 -3.71124208e-01 4.23328847e-01 1.06154263e-01\\n3.23020756e-01 5.12854680e-02 3.20737720e-01 -5.13671003e-02\\n3.40294063e-01 -1.39954939e-01 -5.14114238e-02 -3.59601706e-01\\n1.36046737e-01 1.06604636e-01 5.39340258e-01 -2.67644823e-01\\n2.10414175e-03 1.62866861e-01 -2.34360531e-01 4.12796736e-02\\n4.24708366e-01 6.10347791e-03 1.58068668e-02 -2.20694304e-01\\n2.79727042e-01 -2.80479670e-01 -2.35966176e-01 1.40757188e-02\\n1.64054513e-01 6.55801415e-01 5.17257042e-02 -4.33965981e-01\\n-1.55180499e-01 5.34448862e-01 -1.12564310e-01 -6.39998727e-03\\n-2.83796251e-01 1.23083383e-01 -2.85772353e-01 1.94969624e-01\\n4.18657437e-02 -4.00091037e-02 -2.14087680e-01 -1.30600810e-01\\n-1.80930585e-01 3.51618588e-01 2.08511949e-01 6.70916066e-02\\n-2.90839653e-02 -3.77563089e-01 -1.54000878e-01 1.35323510e-01\\n1.28875762e-01 3.88641298e-01 1.20460086e-01 -2.31440678e-01\\n-3.21971402e-02 3.17797720e-01 -1.69993967e-01 6.80173859e-02\\n-3.13875556e-01 1.01377822e-01 -5.08502126e-01 -2.37176642e-01\\n-3.34009707e-01 -4.23464894e-01 1.64158046e-01 3.31282526e-01\\n8.72296244e-02 -1.08099701e-02 9.64024812e-02 -4.45768178e-01\\n1.99508876e-01 2.55556464e-01 1.76125169e-01 1.21935293e-01\\n-2.82205939e-02 5.96325278e-01 -2.51528695e-02 -2.42678106e-01\\n-1.10375725e-01 9.41763818e-02 -1.71227440e-01 -1.69492632e-01\\n-3.54252979e-02 -6.48621738e-01 -6.88366890e-02 4.18788552e-01\\n1.51158184e-01 -2.29055062e-01 -2.99994528e-01 2.12338388e-01\\n-5.54261357e-02 -1.88762218e-01 -2.21785814e-01 -1.14051253e-01\\n2.90634662e-01 -8.83075595e-03 3.81739259e-01 -4.30408925e-01\\n-3.01491208e-02 -1.98911764e-02 -1.80951282e-02 5.29432833e-01\\n4.24237028e-02 1.50009066e-01 -1.63405329e-01 -1.04461499e-01\\n4.19922024e-01 -1.01674199e-01 -1.42313182e-01 -1.15013808e-01\\n1.16384551e-01 -1.79293454e-01 -4.57757533e-01 1.61236525e-01\\n-4.98219877e-02 -2.45055735e-01 3.93563136e-02 1.76847845e-01\\n2.85705961e-02 1.77210003e-01 -5.85977316e-01 -3.09019148e-01\\n-2.79632926e-01 -3.51214632e-02 7.65097812e-02 -5.79005301e-01\\n4.16257530e-02 -4.88283336e-02 -5.90527296e-01 1.86759427e-01\\n-2.41516873e-01 -1.70146629e-01 2.03042567e-01 3.89888361e-02\\n-3.29492033e-01 -2.05313504e-01 6.17665052e-02 3.06556255e-01\\n-2.32574672e-01 -2.53132552e-01 7.75419921e-02 -9.53371048e-01\\n1.90906137e-01 9.54288989e-02 -3.10334504e-01 1.78670138e-01\\n-1.54627293e-01 -7.24138200e-01 5.72766177e-02 -3.69606495e-01\\n-1.57847837e-01 1.24574397e-02 -3.04176122e-01 -2.91801900e-01\\n8.70109200e-02 -1.80510432e-02 -3.47374022e-01 4.76854503e-01\\n-3.81352574e-01 4.07257617e-01 -1.39100701e-01 1.22036703e-01\\n5.23300096e-02 -2.71408319e-01 1.53761342e-01 -4.14499789e-01\\n-4.62930620e-01 -1.76415086e-01 -3.55790794e-01 -3.06223154e-01\\n4.54216748e-02 -3.96089464e-01 -1.18459299e-01 7.09598362e-02\\n3.45514774e-01 5.11222295e-02 -9.18194279e-02 -3.07408273e-01\\n-2.15026755e-02 -5.41955769e-01 5.09090312e-02 -2.22967304e-02\\n-5.56794330e-02 -1.05716646e-01 1.37782574e-01 1.12985663e-01\\n2.24092156e-01 -4.28340226e-01 4.43639159e-01 -3.94559532e-01\\n-2.36073971e-01 -1.03887759e-01 -9.96064916e-02 9.55996439e-02\\n2.60862917e-01 -5.47879398e-01 4.66898456e-02 3.85847032e-01\\n1.14773825e-01 -1.03335576e-02 2.00606525e-01 -7.54589140e-02\\n-6.91991001e-02 2.85299271e-01 -2.43440971e-01 1.57291532e-01\\n7.01832533e-01 -8.62964988e-03 1.70788750e-01 9.19229239e-02\\n1.80470973e-01 3.37499559e-01 5.04740238e-01 3.37938741e-02\\n-9.16615278e-02 3.13391626e-01 8.15640315e-02 -5.18981457e-01\\n1.40697360e-02 2.34034657e-02 -1.41112447e-01 -3.74412686e-01\\n6.78396463e-01 4.63988185e-01 -4.67490405e-01 -1.87658161e-01\\n-9.43224505e-02 -1.59375042e-01 2.07372278e-01 -5.82366809e-02\\n-1.21044144e-02 -4.69182059e-02 4.59965110e-01 -6.78498223e-02\\n1.65564567e-01 5.44494271e-01 -1.98038101e-01 -3.94890189e-01\\n-7.32723475e-02 2.60408700e-01 4.62674089e-02 5.24833083e-01\\n-1.87571526e-01 2.18293309e-01 -3.65190767e-03 1.18815124e-01\\n-1.07714504e-01 2.22571850e-01 1.22649245e-01 1.28631055e-01\\n1.48808897e-01 -7.09441677e-02 5.00275671e-01 5.21736264e-01\\n3.58005792e-01 4.50061262e-01 3.55701447e-01 1.89312734e-03\\n5.11802077e-01 6.18422627e-01 3.30358744e-01 1.22138329e-01\\n-4.25996780e-02 1.35074049e-01 1.37377530e-01 -2.76041031e-02\\n4.08031106e-01 5.30717850e-01 1.04869425e-01 8.21499586e-01\\n2.98053443e-01 1.92062169e-01 5.83427191e-01 -6.63905323e-01\\n-3.54664743e-01 1.17606297e-01 4.45459783e-01 -1.90459266e-01\\n1.41929463e-02 2.91706026e-01 -2.39539593e-01 1.92499757e-01\\n-3.73172820e-01 -2.47488365e-01 -5.65836132e-02 2.05047339e-01\\n9.76944268e-02 -2.59885907e-01 -1.94552302e-01 9.29138660e-02\\n-3.61183807e-02 -1.44448793e-02 -4.27614927e-01 -1.32073089e-01\\n-3.66007745e-01 -2.13572476e-02 -1.14219055e-01 -1.36226982e-01\\n1.95898861e-02 -3.82142305e-01 -1.13940388e-01 -7.96011910e-02\\n2.92670757e-01 -1.72758386e-01 -1.28923818e-01 -1.11797474e-01\\n3.07410151e-01 2.39470631e-01 4.92071360e-01 -2.89756805e-03\\n5.05052954e-02 -1.70172215e-01 -2.19500169e-01 1.73954219e-01\\n1.12113662e-01 1.07143834e-01 8.71473271e-03 3.22462559e-01\\n-3.07428360e-01 -1.37744784e-01 2.02674583e-01 2.94773638e-01\\n-3.92947644e-01 -1.08347815e-02 -1.99325487e-01 1.55441180e-01\\n1.31805673e-01 2.28853881e-01 -2.43831605e-01 2.57339720e-02\\n-1.27353847e-01 -3.76329541e-01 3.27784985e-01 -1.11792967e-01\\n-7.83414543e-02 -3.46867517e-02 3.19838881e-01 2.63436258e-01\\n-2.88480997e-01 -5.63640660e-03 -1.20494254e-01 1.73016220e-01\\n2.41902042e-02 3.28594387e-01 -1.62945122e-01 -2.30758190e-01\\n-2.84206599e-01 1.57079533e-01 -7.97383934e-02 1.14925869e-01\\n4.31870557e-02 2.88607180e-01 1.11380100e-01 5.29839620e-02\\n3.60932678e-01 -4.99029458e-03 -1.86879590e-01 -1.58306420e-01\\n-3.00347924e-01 -1.00606903e-01 -1.57361060e-01 -1.21937484e-01\\n1.93071052e-01 -3.57706726e-01 -4.54201810e-02 -5.11227697e-02\\n-1.45837128e-01 -2.51471519e-01 5.99597022e-03 -5.31127527e-02]]',\n", + " 'job_description': 'Although you will be exposed to all the different components, your focus will be one of the applications. You will be working on new features, help define the architecture and make sure our solutions stay maintainable (refactor when necessary). You will mainly be responsible for one of the following components: Desktop Application with NFC (Electron) Mobile Application (React Native with Bluetooth Low Energy) Frontend Applications (VueJS) Backend (Go) Other technologies and tools we are currently using are Python, Solidity and Docker as well as Git with Bitbucket, CI/CD for automated testing and deployment, JIRA, Slack, Confluence and Postgres. As a team we work in sprints, prioritize and define how to implement features together, do code reviews and always try to assist each other. What you will be doing: Developing new features during development sprints, making sure your code is properly tested and documented Reviewing pull requests from your colleagues and discuss how issues can be solved better Helping to define the system architecture Refactoring code to ensure it is maintainable What you bring along: Experience in designing, working on and maintaining software systems The right mindset – you like to take on responsibility, you can work independently, you care about code quality Teamwork skills Very good English skills (German not required) Computer Science background is appreciated, but we value personality and a track record over education Eligibility to work in Switzerland What we can offer: Being part of an ambitious, talented team that delivers unique solutions using the latest IoT and blockchain technologies Interesting, challenging, and diverse roles with lots of autonomy Personal development opportunities which are based on your personal contribution having measurable impact on the organization and its products An open, transparent, and inclusive team culture A fun work environment About Modum Modum is an innovative startup, combining new technologies such as Blockchain, IoT and AI to provide new solutions for our customers. Our current solutions are targeted at customers in the pharmaceutical sector - helping them to improve their supply chain efficiency, gain better insights and automate their processes. We leverage trusted data from our next generation digital monitoring solution to solve real-world challenges. Modum not only collaborates with global technology partners such as SAP and AWS, but also joins up with business partners such as Swiss Post to ensure that their solutions are fit-for-purpose. We are looking for team players and passionate personalities who bring innovative ideas and enthusiasm to everything they do. If this sounds like you, we would love to meet you! Application Process You can apply for the job by sending a short cover letter, your CV, and ideally your Github Repo to careers@modum.io. After collecting the applications and reviewing them, we will decide whether your application meets our criteria. If that is the case, we will invite you for a first interview. This interview focuses on getting to know you, your experiences, strengths, and ambitions. The goal of the first interview is to choose a shortlist of three applicants to go forward with. These three applicants will be invited for a second interview. The second interview consists of two parts: (1) A technical interview and technical challenge. We have several options for the technical challenge and are happy to discuss which suits you best beforehand. (2) You will have a chat with a few members of the team. We value a team fit; we want to make sure that both you and the existing team are happy with the decision and can work productively together. After the assessment of the second interview and your positive feedback, we will make some reference calls. As soon as the decision is made and you have received the job offer, we conclude the process by signing the contract.',\n", + " 'soft_skills': '[\"Teamwork\", \"Decisiveness\", \"Collaboration\", \"Enthusiasm\", \"Innovation\", \"Prioritization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Bitbucket\", \"Automation\", \"Tooling\", \"Code Refactoring\", \"Blockchain\", \"Computer Science\", \"Collections\", \"Automated Testing Framework\", \"Supply Chain\", \"Mobile Application Software\", \"Business Partnering\", \"Software Systems\", \"Python (Programming Language)\", \"React Native\", \"Maintainability\", \"Track (Rail Transport)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Solidity (Programming Language)\", \"Systems Architecture\", \"Idealization\", \"Hostile Work Environment\", \"Slack (Software)\", \"Bluetooth Low Energy (Bluetooth)\", \"Github\", \"Docker (Software)\", \"TARGET 3001!\", \"Electronics\", \"Personalization\", \"Digitization\", \"Code Review\", \"Receivables\", \"Atlassian Confluence\", \"Pharmaceuticals\", \"Git Flow\", \"Personality Development\", \"JIRA Studio\", \"Custom Backend\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'software engineer network management system m/f',\n", + " 'location': 'Bern',\n", + " 'industry': 'Electrical & Electronic Manufacturing',\n", + " 'website': 'www.abb.com',\n", + " 'jobdescription_embedded': '[[-1.00095063e-01 1.79666638e-01 4.91430968e-01 -1.08539537e-01\\n3.54067892e-01 -1.54138044e-01 2.08294764e-01 3.63881201e-01\\n-2.24334616e-02 -5.98920405e-01 -3.08517441e-02 -2.12589890e-01\\n3.97444405e-02 2.08572865e-01 1.16825245e-01 3.15799713e-01\\n2.94631451e-01 2.55709916e-01 -1.32803068e-01 3.93163890e-01\\n2.19083354e-01 -1.01245672e-01 1.65381581e-01 6.97421789e-01\\n4.94351357e-01 2.59472034e-03 -1.75915007e-02 -4.93083633e-02\\n-1.05148293e-01 -3.12089354e-01 4.11958396e-01 -7.01484606e-02\\n1.16576523e-01 -3.49363834e-01 8.08832198e-02 -1.01122975e-01\\n-3.07809234e-01 -2.30637506e-01 2.12957207e-02 1.53942481e-01\\n-5.40289938e-01 -2.06222758e-01 -5.67897074e-02 5.88058122e-02\\n-7.26386011e-02 -3.73811543e-01 -2.98722368e-02 5.30256471e-03\\n2.34364852e-01 -8.65526125e-03 -4.76983160e-01 2.68028051e-01\\n-5.64923175e-02 -1.47783026e-01 2.63544112e-01 5.68426430e-01\\n-1.83793195e-02 -4.54532415e-01 -4.60280329e-01 -2.16526121e-01\\n1.11828566e-01 7.28813410e-02 1.18852183e-01 -3.46057028e-01\\n1.34565145e-01 1.14001580e-01 4.62206267e-02 4.40722823e-01\\n-8.23760390e-01 -9.83603969e-02 -2.83725202e-01 -7.21371919e-02\\n-2.19576731e-01 -1.21538170e-01 -2.39618167e-01 -1.16806790e-01\\n-1.73654079e-01 4.29154515e-01 3.31621654e-02 -2.03362182e-02\\n-1.22610830e-01 2.87141174e-01 -2.46824503e-01 3.78438294e-01\\n2.25178376e-01 2.53268749e-01 2.32346728e-01 2.16279596e-01\\n-2.40743026e-01 5.83495796e-01 4.40459810e-02 -3.21433574e-01\\n2.57094979e-01 1.21580072e-01 5.33776343e-01 -2.70912379e-01\\n1.79557979e-01 -6.87507093e-02 -3.18254709e-01 3.58020097e-01\\n2.52790421e-01 -2.23890319e-01 2.29548272e-02 -1.60823792e-01\\n-1.86269395e-02 7.23310784e-02 9.02303532e-02 7.81199038e-02\\n-3.14532906e-01 4.98641491e-01 9.67445299e-02 -1.56267419e-01\\n-2.02511653e-01 -3.88915539e-01 4.88735735e-04 -2.83546727e-02\\n1.62106693e-01 1.31067351e-01 1.23143069e-01 1.84296131e-01\\n2.06064448e-01 8.35895464e-02 1.99829325e-01 7.76443303e-01\\n-3.93271819e-02 3.38425972e-02 -3.48799050e-01 1.68766379e-01\\n3.00956648e-02 -2.84590542e-01 3.19204062e-01 1.23032354e-01\\n-1.60324797e-02 -2.31700465e-01 -2.61035323e-01 2.92648196e-01\\n1.96217541e-02 -2.28057817e-01 -2.42905095e-01 2.54847169e-01\\n-6.81726113e-02 -3.18252921e-01 5.76927722e-01 1.02021933e-01\\n1.29775852e-01 -4.77299467e-02 7.35108554e-02 -1.23854041e-01\\n-1.11279704e-01 1.41051054e-01 5.69898961e-03 -9.17344093e-02\\n-1.36969626e-01 -3.30361485e-01 -3.16347361e-01 6.49555475e-02\\n-2.97974050e-01 1.75984919e-01 -4.61028367e-02 -3.02207172e-02\\n3.06854725e-01 5.06684519e-02 -1.98396102e-01 2.76232630e-01\\n-4.85794917e-02 1.29979074e-01 -3.50366607e-02 2.64002800e-01\\n-1.74307927e-01 9.31669027e-02 -7.17786849e-02 -1.67451650e-01\\n5.76583564e-01 1.76687464e-01 1.19426608e-01 7.20948540e-03\\n1.56453416e-01 -8.03158358e-02 -3.98437455e-02 1.01484127e-01\\n-8.07130456e-01 2.43684530e-01 -3.01648974e-02 -2.17485845e-01\\n1.33745059e-01 -1.60400286e-01 4.58516106e-02 -2.11200774e-01\\n3.71939391e-02 -6.82642311e-03 -4.04971093e-01 -2.08714724e-01\\n-1.73749402e-01 -6.57782406e-02 4.57166940e-01 -4.44006652e-01\\n-2.07848027e-01 1.68724701e-01 -4.80594546e-01 4.65432145e-02\\n1.52285367e-01 1.05522946e-01 1.11942180e-01 2.19161123e-01\\n-2.16768518e-01 -3.44230413e-01 8.43804553e-02 -3.46355081e-01\\n-1.83713287e-01 -3.42827402e-02 -3.52281898e-01 2.61317760e-01\\n1.58395097e-01 8.47702287e-03 -1.29472539e-01 5.38563505e-02\\n-1.82976890e-02 -8.64627287e-02 -1.35216932e-03 5.20679988e-02\\n2.68686563e-01 1.31575055e-02 -4.32930768e-01 2.88911700e-01\\n-5.30029973e-03 5.48125744e-01 2.49523353e-02 -8.18821669e-01\\n3.98492306e-01 3.21886271e-01 -1.01332674e-02 -3.76359940e-01\\n5.73735774e-01 -1.07876085e-01 -5.89519739e-02 1.10272713e-01\\n-5.35988748e-01 -3.87820244e-01 2.65333682e-01 -2.55058050e-01\\n-1.86650798e-01 4.01427835e-01 1.75390214e-01 2.08175793e-01\\n1.65525928e-01 -6.64682090e-02 -2.67729983e-02 9.23458412e-02\\n-2.29952559e-02 -2.98666745e-01 -4.71234232e-01 -1.80751741e-01\\n-1.29359439e-01 -3.56661975e-01 -1.19988032e-01 -4.31827098e-01\\n-1.81882009e-01 -3.77794355e-01 -1.55781493e-01 1.52414665e-01\\n4.42920238e-01 1.27732307e-01 8.58085379e-02 8.41789246e-02\\n-2.06752166e-01 -5.78282177e-01 2.99731009e-02 1.46548837e-01\\n3.96723092e-01 2.16710553e-01 -4.72973427e-03 -8.01234469e-02\\n-1.25261635e-01 7.24277377e-01 -1.75282061e-01 6.50713407e-03\\n2.67269641e-01 1.61030069e-01 1.00771137e-01 -1.26990885e-01\\n-7.96664041e-03 2.71323115e-01 -2.29516357e-01 1.40027434e-03\\n-2.57335138e-02 -9.40800682e-02 3.89331371e-01 1.16826989e-01\\n-3.47413093e-01 -2.05523387e-01 -3.79295088e-02 1.57353163e-01\\n-4.11359221e-01 -1.15439557e-01 7.14216590e-01 2.21297115e-01\\n1.79943457e-01 1.59159079e-01 1.63957223e-01 4.90259193e-02\\n-1.22811325e-01 -2.69508600e-01 1.60366863e-01 4.22977060e-02\\n8.40385482e-02 3.03552985e-01 -3.95095497e-02 -5.20833731e-01\\n-3.18654704e+00 -1.18003869e-02 1.20082542e-01 -3.18920046e-01\\n1.51185751e-01 -1.22352429e-01 1.08153105e-01 -1.92238376e-01\\n-2.95567870e-01 5.94569668e-02 -2.06131399e-01 -2.05847517e-01\\n3.29335183e-01 1.52653411e-01 6.26559928e-02 3.84319186e-01\\n2.75238752e-01 -2.50941247e-01 -1.71456590e-01 2.50773907e-01\\n-2.71575719e-01 -4.79640275e-01 1.83113009e-01 -4.03965116e-02\\n4.04464692e-01 2.20638573e-01 -3.21703404e-01 -1.52276516e-01\\n-2.69164771e-01 -8.06854963e-02 1.90194622e-01 -3.45334232e-01\\n-3.65366489e-02 3.49531680e-01 2.53840923e-01 -1.43267274e-01\\n1.91450164e-01 -4.22160327e-01 -1.11380309e-01 -3.91237348e-01\\n1.89259782e-01 -5.15645087e-01 -2.92189717e-02 -5.97113334e-02\\n6.89837217e-01 -3.39483857e-01 7.38446042e-02 9.91142690e-02\\n1.45970896e-01 2.08572969e-01 1.42803624e-01 -3.01295109e-02\\n-1.97656631e-01 -2.29891524e-01 -2.32132003e-02 -1.06914550e-01\\n5.03844798e-01 5.35647333e-01 -2.07779109e-01 -1.43904299e-01\\n3.31589840e-02 -2.08822906e-01 -4.17375088e-01 -2.25788504e-01\\n-1.25321224e-01 -3.15384299e-01 -6.31411612e-01 -4.34680551e-01\\n-6.97103664e-02 -1.45960525e-01 -1.43904105e-01 5.75490594e-01\\n-2.76791483e-01 -3.35805804e-01 7.73177221e-02 -4.39163715e-01\\n2.40320981e-01 -1.49743021e-01 1.47103099e-02 -1.56655833e-01\\n-1.90356836e-01 -3.18486661e-01 4.98206727e-02 1.19286418e-01\\n-1.87270809e-02 -1.72225624e-01 3.11008126e-01 -9.49198753e-02\\n-3.09503943e-01 -4.26519901e-01 3.31520677e-01 1.65334970e-01\\n2.15824738e-01 1.11958317e-01 1.48817569e-01 -2.21208557e-02\\n1.95760205e-01 -1.81469187e-01 8.21112469e-03 -2.81050563e-01\\n2.16721058e-01 7.27102384e-02 3.72935653e-01 -2.30522886e-01\\n-2.62492914e-02 8.08354095e-02 -2.59889334e-01 -2.27606356e-01\\n3.14876080e-01 -8.91508982e-02 1.20571397e-01 -2.93321520e-01\\n2.61880577e-01 -2.87250817e-01 -1.17931820e-01 -6.99573085e-02\\n6.38444349e-02 5.19927919e-01 -4.33177389e-02 -2.58416265e-01\\n-1.27354041e-01 3.78421485e-01 -7.21855834e-02 7.51882792e-03\\n-1.96243718e-01 1.11493133e-01 -2.24092737e-01 1.67605028e-01\\n-6.42351583e-02 -1.53796256e-01 -1.02492929e-01 -3.11725765e-01\\n-2.54322588e-01 3.69143486e-01 2.68337548e-01 6.35164836e-03\\n-5.30534703e-03 -5.08838058e-01 -2.25421023e-02 1.62297770e-01\\n1.51050285e-01 4.81686860e-01 1.06442019e-01 -1.39896393e-01\\n5.35999499e-02 3.62150460e-01 -1.69597208e-01 1.63537979e-01\\n-3.36095393e-01 7.23135918e-02 -3.49581808e-01 -2.91908294e-01\\n-2.74220675e-01 -3.57455939e-01 1.88028991e-01 3.17958951e-01\\n6.28826767e-02 -6.79490566e-02 -3.32505070e-02 -3.37365746e-01\\n2.75943875e-01 1.33600505e-02 1.81060120e-01 2.04648256e-01\\n-1.15873059e-02 4.47461784e-01 2.68843602e-02 -1.52506784e-01\\n-6.12664670e-02 -1.34142146e-01 -1.38616711e-01 -1.11966796e-01\\n1.29146250e-02 -5.19998908e-01 -8.52834210e-02 4.31318581e-01\\n7.04398900e-02 -3.33677739e-01 -1.00640535e-01 2.37762928e-01\\n-1.31135285e-01 -3.27755898e-01 -2.10823432e-01 2.43827868e-02\\n3.79446149e-01 1.08691484e-01 3.45569223e-01 -4.79690641e-01\\n-2.86553204e-02 -1.48592973e-02 -1.86677590e-01 5.51336348e-01\\n5.17376047e-03 -3.24621908e-02 -3.09906363e-01 -3.32852095e-01\\n4.17822659e-01 -2.65064210e-01 -3.99495363e-02 2.20076412e-01\\n-3.76981609e-02 -2.01383069e-01 -5.84036231e-01 1.56957284e-02\\n-6.87344223e-02 -1.38259426e-01 8.70521963e-02 1.57899931e-01\\n1.80045310e-02 1.36854783e-01 -5.42508185e-01 -3.10806751e-01\\n-2.07965985e-01 7.36256316e-02 1.71980813e-01 -4.60976511e-01\\n-1.05436437e-01 -4.99978401e-02 -4.99325246e-01 2.96023816e-01\\n-9.88508910e-02 -9.37532485e-02 2.45018423e-01 -4.94489074e-02\\n-3.69416058e-01 5.65286987e-02 3.66917849e-02 2.76502430e-01\\n-2.34597534e-01 -1.79618508e-01 5.17121553e-02 -9.27114308e-01\\n2.38636926e-01 -1.61900390e-02 -1.51212394e-01 2.01737583e-02\\n-1.82893321e-01 -5.78924596e-01 8.13960806e-02 -2.89468855e-01\\n-1.54669821e-01 -1.55044034e-01 -2.01753393e-01 -5.36803782e-01\\n2.18888391e-02 -2.84215454e-02 -3.86091739e-01 3.19238573e-01\\n-2.15902075e-01 3.91823381e-01 -1.78844914e-01 -1.94501597e-02\\n-4.42785695e-02 -4.28599477e-01 8.80783722e-02 -4.35472667e-01\\n-3.72173488e-01 -6.06356859e-02 -3.49794716e-01 -2.00233072e-01\\n-7.20259100e-02 -2.47806922e-01 -3.66773941e-02 1.29860505e-01\\n1.46896943e-01 -1.26415249e-02 -1.36393324e-01 -2.62151450e-01\\n-5.82106113e-02 -6.14032507e-01 1.91348214e-02 1.23168141e-01\\n-5.67136444e-02 -1.68592930e-02 6.97464123e-02 6.65579960e-02\\n1.14480019e-01 -5.16492307e-01 1.51064456e-01 -4.81884480e-01\\n-2.80104429e-01 -1.20564215e-02 6.22751229e-02 6.26537055e-02\\n3.53334934e-01 -4.23084468e-01 4.15051775e-03 2.71493584e-01\\n1.36713356e-01 8.90528932e-02 2.71395773e-01 -1.39343739e-03\\n-1.79134011e-01 3.91119838e-01 -2.24143639e-01 1.89900443e-01\\n7.55783617e-01 9.47494060e-02 2.04482168e-01 1.94602102e-01\\n9.44096744e-02 2.58470953e-01 3.93754125e-01 1.28009841e-01\\n-1.93347231e-01 1.42473593e-01 8.64548311e-02 -5.71944416e-01\\n3.59499454e-03 7.93766826e-02 -1.77316755e-01 -3.08378488e-01\\n6.23158038e-01 5.03063917e-01 -3.92879128e-01 -1.54533520e-01\\n-2.00289473e-01 -1.69625461e-01 5.78061678e-02 -1.31321490e-01\\n8.40961635e-02 -9.94076729e-02 5.03156602e-01 -5.50261512e-02\\n1.54459938e-01 3.92557889e-01 -1.17089987e-01 -2.79575855e-01\\n-1.12883084e-01 2.51837820e-01 -6.99338913e-02 2.66279161e-01\\n-1.41335011e-01 4.15277362e-01 1.08308561e-01 6.61911219e-02\\n-4.04085331e-02 3.49543877e-02 -2.79999394e-02 8.31719339e-02\\n-1.77099817e-02 1.63172171e-01 3.97932261e-01 3.46356690e-01\\n4.58977699e-01 3.80818069e-01 3.20949256e-01 1.46492571e-01\\n4.48616326e-01 4.29968864e-01 3.46557945e-01 2.20917836e-01\\n-3.16568166e-02 -1.07177049e-01 7.66809285e-02 3.96562032e-02\\n3.09503376e-01 2.50525951e-01 -1.73205987e-01 8.67862165e-01\\n2.99784452e-01 1.81727037e-01 6.55168176e-01 -5.94400823e-01\\n-3.49224597e-01 -5.53132184e-02 3.78044248e-01 -3.31839621e-01\\n4.91674542e-02 6.66275099e-02 -3.27055603e-02 2.76056975e-01\\n-4.22994524e-01 -3.26343179e-01 -1.28739491e-01 2.93734372e-01\\n1.16489775e-01 -3.27171117e-01 -2.08506629e-01 7.45192841e-02\\n-1.44693047e-01 -2.24984169e-01 -6.16370976e-01 -1.00717552e-01\\n-1.21115014e-01 -2.33057886e-01 -9.89436880e-02 -1.41505137e-01\\n-4.61214818e-02 -3.40842366e-01 -9.20417625e-03 4.26345095e-02\\n3.20105106e-01 4.08588015e-02 -2.03979071e-02 -5.06026484e-02\\n4.39044356e-01 1.58084258e-01 5.30594349e-01 3.46609801e-02\\n9.17763039e-02 -1.47960246e-01 -2.11888745e-01 1.41956747e-01\\n2.65586823e-01 4.77689616e-02 5.21225110e-02 1.63086995e-01\\n-2.06172958e-01 -1.08489424e-01 1.51335463e-01 3.13969493e-01\\n-5.35222769e-01 7.15253055e-02 -5.11602871e-02 2.12805122e-01\\n1.60970524e-01 1.58125058e-01 -1.98025271e-01 -1.33554637e-02\\n-1.13307208e-01 -3.80618691e-01 1.60940588e-01 4.33570854e-02\\n-1.93675026e-01 8.42289403e-02 8.34454745e-02 1.55073002e-01\\n-1.73169702e-01 -4.38272394e-02 2.76978444e-02 8.20288435e-02\\n1.52201355e-01 3.46637428e-01 -2.74331838e-01 -2.81038105e-01\\n-2.53024578e-01 9.18874517e-02 -2.37215430e-01 1.24728397e-01\\n-3.07221394e-02 2.39610523e-01 1.57288939e-01 8.84884149e-02\\n3.67486775e-01 -1.28505751e-01 -1.33426562e-01 -1.45022377e-01\\n-2.57319987e-01 -3.70735466e-01 1.72417816e-02 -1.07652240e-01\\n1.27871588e-01 -3.20919782e-01 -3.70203257e-02 -1.68454930e-01\\n-2.25848764e-01 -3.53260487e-01 2.76855510e-02 -2.44216070e-01]]',\n", + " 'job_description': \"In order to improve our Network Management System User Interface software towards a modern technology stack and state-of-the-art graphical design, we are looking for a driven and passionate front-end developer (m/f) with strong focus on UI/UX aspects. Located in Bern, you will collaborate with team colleagues in Bern as well as work remotely with colleagues in Krakòw (Poland). Are you an open-minded person seeking challenges and willing to take responsibility for the UI development of our products? Let's write the future. Together.Your responsibilitiesYour backgroundMore about usABB is able to offer you an interesting role within a highly motivated team, together with open communication structures. On the basis of a personal, practice-oriented introduction program, you will be given the opportunity to acquire the confidence needed to work independently as well as be a constructive member of an inclusive team within your assigned area. ABB is also able to provide a wealth of opportunity for personal development once you have completed your introduction period, the aim being to assist you in attaining your career goals. Personalized development programs with targeted training measures will help you to enhance your skills on a continuous basis. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Tamara Hofmann Talent Partner Phone: +41 79 627 53 03 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer\",\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Writing\", \"Team Motivation\"]',\n", + " 'hard_skills': '[\"Front End (Software Engineering)\", \"Professional Development Programs\", \"Constructability\", \"Network Management System\", \"TARGET 3001!\", \"Tooling\", \"Library For WWW In Perl\", \"Network Management\", \"Component Object Model (COM)\", \"Management Systems\", \"M (Programming Language)\", \"Graphic Arts\", \"Personalization\", \"Personality Development\", \"User Interface\", \"Receivables\", \"Graphic Design\"]',\n", + " 'languages': \"['English', 'Chewa', 'Bosnian', 'Yiddish', 'Afrikaans']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'application engineer - java',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.55808532e-01 3.37073445e-01 4.68456328e-01 5.96076213e-02\\n5.44890523e-01 -1.30339459e-01 -6.62898943e-02 3.29940349e-01\\n-1.33533999e-01 -4.37654316e-01 -9.55163836e-02 -9.86115709e-02\\n-2.44956892e-02 8.97528455e-02 1.91370547e-01 4.12870944e-01\\n3.98574650e-01 4.05492671e-02 -1.95302904e-01 3.74782205e-01\\n4.89123389e-02 -1.11160949e-01 5.33090308e-02 7.80794084e-01\\n4.13207948e-01 1.13232441e-01 -6.04151897e-02 6.60173744e-02\\n-2.10499361e-01 -3.23715150e-01 4.23470140e-01 -2.09919382e-02\\n-1.34444311e-01 -2.64349818e-01 9.52050239e-02 1.19265221e-01\\n-2.31448621e-01 -5.00229672e-02 -1.45653486e-01 1.76977158e-01\\n-4.10124719e-01 -1.29672006e-01 -3.39588299e-02 3.45962495e-02\\n-2.20398188e-01 -3.71905416e-01 6.46123067e-02 -7.94861168e-02\\n1.17574111e-01 3.11294086e-02 -4.69237506e-01 4.03305441e-01\\n-2.40431517e-01 -2.43310541e-01 3.38967860e-01 6.33943081e-01\\n2.96667460e-02 -5.11293590e-01 -4.87605125e-01 -3.44192207e-01\\n7.87505060e-02 -1.29626557e-01 9.30146426e-02 -2.42762446e-01\\n4.47398901e-01 1.04160108e-01 -8.24963972e-02 3.83848429e-01\\n-7.97209024e-01 -1.07523687e-01 -3.29579711e-01 3.70689780e-02\\n-3.70374799e-01 -8.13968852e-02 -3.12633991e-01 -1.14763446e-01\\n-8.15293640e-02 3.55602741e-01 -1.03652045e-01 1.35296375e-01\\n-6.63444549e-02 3.51141989e-01 -1.81835383e-01 2.70721883e-01\\n2.73774385e-01 2.31659353e-01 3.50735873e-01 3.75950336e-01\\n-3.80406201e-01 4.46385920e-01 1.94512874e-01 -2.76750147e-01\\n2.33661681e-01 1.19846925e-01 4.12772179e-01 6.91626519e-02\\n2.01970413e-01 1.45325661e-01 -1.91437185e-01 1.84454829e-01\\n1.30477324e-01 -2.56454110e-01 -6.58136792e-03 -9.07894596e-02\\n4.78952155e-02 -4.00098674e-02 -4.03733477e-02 1.06311999e-01\\n-3.49379867e-01 5.01761436e-01 6.22101501e-02 -3.02358806e-01\\n-8.92782956e-02 -5.99835992e-01 -8.50415826e-02 8.68865922e-02\\n-4.39783782e-02 1.91453785e-01 1.59146443e-01 2.95719832e-01\\n1.90271661e-01 -9.04824436e-02 1.08334050e-01 8.31530809e-01\\n-1.22043923e-01 4.49038930e-02 -2.67735660e-01 2.90029049e-01\\n1.27206907e-01 -2.70772278e-01 1.79501295e-01 2.63166666e-01\\n1.74689665e-03 6.09629638e-02 -3.04220974e-01 3.00966203e-01\\n-7.15184137e-02 -2.06152022e-01 -3.32405835e-01 2.25395441e-01\\n-1.69399813e-01 -5.35365522e-01 5.83341897e-01 -3.82870249e-02\\n2.75041968e-01 -1.18573099e-01 2.17579566e-02 -2.60559805e-02\\n-1.23969451e-01 3.01834524e-01 7.54818618e-02 2.21436217e-01\\n-3.15245390e-01 -1.66647941e-01 -1.93758175e-01 2.47777402e-01\\n-2.97981381e-01 1.46861881e-01 -1.49710953e-01 -1.04214452e-01\\n3.01210731e-01 2.52711959e-02 -4.04339701e-01 3.56099248e-01\\n-6.74385354e-02 -1.64164379e-01 -1.02923870e-01 3.31898332e-01\\n-1.37728736e-01 2.39060670e-01 -1.13384187e-01 -1.24124274e-01\\n6.32526994e-01 7.46572912e-02 2.40839735e-01 -1.07302647e-02\\n2.22918794e-01 -9.25877169e-02 2.69894093e-01 8.15138370e-02\\n-7.03108072e-01 2.74010420e-01 -6.40975982e-02 -2.34274596e-01\\n6.22633584e-02 -4.20332737e-02 3.22813958e-01 -4.21590626e-01\\n-5.65426871e-02 -1.72655284e-01 -2.85524338e-01 -3.58665943e-01\\n-2.36733884e-01 -2.36240551e-02 4.88393277e-01 -4.98519540e-01\\n-5.10029830e-02 1.99642405e-01 -6.13220513e-01 -6.79643303e-02\\n2.18699187e-01 1.64105758e-01 6.95907474e-02 1.90601468e-01\\n-7.42574036e-02 -5.63156486e-01 1.37512803e-01 -4.56095994e-01\\n-3.15934867e-01 1.56589180e-01 -3.28141838e-01 2.17608362e-01\\n8.49500522e-02 -1.23327123e-02 -1.04825869e-01 1.11761570e-01\\n-2.85331249e-01 4.45580557e-02 1.35202497e-01 3.80220972e-02\\n3.29133093e-01 4.05695960e-02 -4.49544370e-01 5.78053594e-01\\n-2.12196633e-01 4.15153384e-01 1.59640163e-01 -9.36754048e-01\\n5.18396258e-01 3.31254005e-01 3.14372852e-02 -3.10493439e-01\\n6.27963066e-01 -3.67640793e-01 -1.48033082e-01 2.36281469e-01\\n-4.27161992e-01 -2.44814724e-01 1.93949476e-01 -2.02260315e-01\\n-2.75662482e-01 6.55525923e-01 1.09605700e-01 1.94541007e-01\\n4.22844380e-01 -1.77056521e-01 -1.06027231e-01 -5.68426475e-02\\n-2.33480513e-01 -2.83239096e-01 -5.74048519e-01 3.81746776e-02\\n-8.32576007e-02 -6.05826735e-01 -2.30568081e-01 -4.92524147e-01\\n-1.92836434e-01 -3.80383462e-01 -1.81332529e-01 2.67955780e-01\\n1.41903698e-01 2.17924520e-01 -2.59663761e-02 -2.82805413e-05\\n-1.04236759e-01 -6.34298444e-01 6.45491295e-03 3.85725275e-02\\n3.33907098e-01 3.68606746e-01 6.91049248e-02 -1.53220534e-01\\n7.54841194e-02 5.43214202e-01 -3.79810214e-01 -3.71833265e-01\\n1.80991501e-01 1.37095332e-01 -8.96518975e-02 -1.18662618e-01\\n1.00606620e-01 3.50473344e-01 -3.23105812e-01 5.36582321e-02\\n-1.40380487e-01 9.02424827e-02 3.43137801e-01 -1.16156861e-01\\n-2.37240762e-01 -2.30305433e-01 -6.20119125e-02 2.76989222e-01\\n-5.26858091e-01 -2.83450663e-01 6.36926591e-01 1.41324237e-01\\n9.57625210e-02 2.04510853e-01 3.18703741e-01 -6.05596676e-02\\n-2.34628364e-01 -2.48275146e-01 2.10501537e-01 1.15231000e-01\\n2.48011678e-01 1.00390658e-01 -7.82887638e-02 -5.29437125e-01\\n-3.07844353e+00 -2.50917226e-01 1.20902330e-01 -2.61083633e-01\\n2.78342307e-01 -1.24349117e-01 1.32776409e-01 1.43680759e-02\\n-4.02289629e-01 5.13123870e-02 -1.07671551e-01 -1.73335433e-01\\n1.48070514e-01 2.33742535e-01 1.60335720e-01 1.71329409e-01\\n2.15245724e-01 -2.29246348e-01 4.06482965e-02 4.06005919e-01\\n-6.58445060e-02 -8.09059501e-01 1.01522341e-01 -3.60648707e-03\\n3.07430267e-01 2.79584885e-01 -4.22020316e-01 -6.92063645e-02\\n-3.40389699e-01 -2.67280400e-01 4.57585379e-02 -2.82098770e-01\\n-1.55224264e-01 4.03723001e-01 1.53713584e-01 -1.74165189e-01\\n1.02423690e-01 -3.70172977e-01 -9.85361114e-02 -4.75336730e-01\\n1.46209925e-01 -6.77501917e-01 -3.63746211e-02 -3.01472694e-02\\n6.60295725e-01 -3.21714073e-01 2.27353185e-01 8.08809549e-02\\n1.93406820e-01 1.98059082e-01 1.02558687e-01 -9.37359408e-03\\n-3.49216551e-01 -2.95364887e-01 -1.17402233e-01 -1.88076094e-01\\n6.45881295e-01 4.75026369e-01 -2.77792782e-01 2.24572215e-02\\n4.18757983e-02 -3.29170465e-01 -4.85821426e-01 -3.31049681e-01\\n-1.85520738e-01 -2.00931773e-01 -6.25781417e-01 -4.96386766e-01\\n-1.67225331e-01 -1.53440312e-01 -5.19684516e-02 7.37138569e-01\\n-2.70267487e-01 -2.81533390e-01 -8.99527594e-02 -5.24616003e-01\\n2.43159264e-01 -1.89375639e-01 -4.52903137e-02 -2.34442040e-01\\n-2.27502540e-01 -5.09904444e-01 1.63961247e-01 6.39593452e-02\\n-1.58689231e-01 -1.05306461e-01 1.59754351e-01 -2.05803767e-01\\n-3.69312346e-01 -5.18929958e-01 5.75707674e-01 6.63628876e-02\\n3.21575999e-01 1.86075434e-01 3.19788098e-01 1.09983027e-01\\n4.29221332e-01 -1.02604628e-01 1.37512162e-02 -5.35878062e-01\\n7.15918392e-02 3.97919342e-02 5.22148609e-01 -1.40084922e-01\\n1.24339759e-02 4.87452000e-03 -1.84229299e-01 -2.08469592e-02\\n4.39739347e-01 6.02326244e-02 1.33663625e-01 -2.71868944e-01\\n2.80583382e-01 -3.50069523e-01 -2.49759808e-01 1.41578719e-01\\n-4.02060151e-02 6.59861267e-01 3.47793438e-02 -2.96816379e-01\\n-1.62126109e-01 4.53513265e-01 -7.98134431e-02 -1.62108783e-02\\n-1.94086432e-01 1.07621238e-01 -2.27464229e-01 2.19464988e-01\\n1.83093138e-02 -9.78198126e-02 -1.91391110e-01 4.86656697e-03\\n-1.51257411e-01 1.95946336e-01 2.46717036e-01 2.09692076e-01\\n-5.34470789e-02 -3.02856624e-01 -7.21270591e-03 1.93470493e-01\\n2.53031969e-01 3.25770289e-01 1.66620940e-01 -2.34616667e-01\\n3.85101140e-02 3.16680670e-01 -1.49006814e-01 2.45270267e-01\\n-2.36596435e-01 8.04373771e-02 -6.37423277e-01 -2.30439693e-01\\n-2.30456978e-01 -3.34649503e-01 -6.83899829e-03 2.91253537e-01\\n4.45786752e-02 -5.21223731e-02 8.56707990e-02 -4.97735322e-01\\n2.78131902e-01 4.10677344e-02 2.26697251e-01 3.00913006e-02\\n-6.06206506e-02 5.89340568e-01 -7.83510059e-02 -2.26526827e-01\\n-1.43483758e-01 1.50425300e-01 -1.28624856e-01 -2.77871430e-01\\n2.21437011e-02 -5.10774732e-01 -1.24284521e-01 3.86217386e-01\\n1.49989963e-01 -2.12735116e-01 -2.60763764e-01 1.82894036e-01\\n-2.10438296e-03 -4.07131851e-01 -2.56571651e-01 -1.91104766e-02\\n3.39273393e-01 1.41859427e-01 2.06782162e-01 -5.00617266e-01\\n-9.58528928e-03 -5.77640384e-02 1.32779256e-02 3.28384459e-01\\n1.16819277e-01 1.23974651e-01 -8.56348872e-02 -2.47029841e-01\\n3.91880929e-01 -5.13763018e-02 -6.37968630e-02 -6.45359531e-02\\n1.15723625e-01 -2.61147946e-01 -4.43698198e-01 -5.20283356e-03\\n-6.28705919e-02 -2.16344774e-01 -2.21439749e-02 5.34471273e-02\\n6.54756948e-02 5.56902997e-02 -6.02025211e-01 -1.81921363e-01\\n-3.93161595e-01 -1.01522189e-02 -1.80128962e-03 -5.54661036e-01\\n2.57067755e-03 -5.91491163e-02 -6.17012143e-01 2.27462009e-01\\n-1.93288505e-01 -7.72827305e-03 1.46137372e-01 2.70685507e-03\\n-3.74308825e-01 -1.38795897e-01 1.30044013e-01 1.26882434e-01\\n-2.59685308e-01 -2.41290480e-01 -1.71773992e-02 -9.16896820e-01\\n2.41099849e-01 -4.47780043e-02 -1.46295428e-01 8.71659443e-03\\n5.96119016e-02 -7.86224246e-01 2.13490158e-01 -4.42587554e-01\\n-7.34034330e-02 -5.32511994e-02 -2.99654871e-01 -4.19603884e-01\\n3.32528539e-02 -4.87955436e-02 -2.67345995e-01 3.14116657e-01\\n-4.43440706e-01 4.77910995e-01 -5.23517281e-02 6.92546889e-02\\n3.75449434e-02 -3.45616579e-01 2.75129788e-02 -3.67159486e-01\\n-3.87125075e-01 -2.75124967e-01 -2.27405623e-01 -3.12143117e-01\\n-5.44109643e-02 -2.16156214e-01 -1.21164486e-01 9.74652767e-02\\n3.21979523e-01 1.05820104e-01 -2.83785611e-01 -2.47695193e-01\\n1.01856500e-01 -4.55958515e-01 9.02074426e-02 -1.49648845e-01\\n-3.45571898e-02 -1.57413781e-01 2.15351492e-01 6.77896887e-02\\n2.28583157e-01 -3.68386686e-01 4.44630802e-01 -2.92355150e-01\\n-3.59969676e-01 -8.22744370e-02 1.13130346e-01 4.51801717e-02\\n2.53296554e-01 -6.18026316e-01 -6.44735321e-02 3.72729301e-01\\n1.04283050e-01 6.92583397e-02 2.28760540e-01 -1.70242697e-01\\n-1.63246632e-01 2.34861016e-01 -4.79902893e-01 1.48090035e-01\\n7.77719855e-01 2.28743553e-01 5.85735962e-02 2.23965555e-01\\n1.58306122e-01 3.82422984e-01 4.55016315e-01 1.49419159e-02\\n-9.50162858e-02 3.85829329e-01 1.96012005e-01 -5.41675091e-01\\n-1.24380015e-01 -9.51157883e-03 -1.40057385e-01 -3.01467419e-01\\n6.94568574e-01 3.71726364e-01 -4.20915484e-01 -3.55089873e-01\\n-2.26755977e-01 -2.35909551e-01 2.98081458e-01 -6.97169602e-02\\n5.14107719e-02 -1.42977446e-01 5.49829006e-01 -1.31223723e-02\\n2.81506836e-01 6.61413014e-01 -1.87012076e-01 -2.85775006e-01\\n-7.63901770e-02 2.90733933e-01 9.05569568e-02 4.20053661e-01\\n-1.76569521e-01 2.53755927e-01 -3.02340109e-02 1.76752418e-01\\n-1.60879016e-01 6.01500645e-02 2.92551577e-01 6.61502779e-03\\n1.34982318e-01 1.12038657e-01 5.60967207e-01 4.95282680e-01\\n2.00496227e-01 5.04207850e-01 3.72471899e-01 -1.62782501e-02\\n4.71184939e-01 5.92214525e-01 3.25640649e-01 2.45483033e-02\\n-2.64912676e-02 1.69008434e-01 2.05812186e-01 5.43586574e-02\\n3.22243929e-01 4.08530116e-01 8.90217051e-02 9.97545362e-01\\n3.87153029e-01 3.19197863e-01 7.53401756e-01 -7.12076545e-01\\n-2.79803216e-01 -1.47552006e-02 4.94328380e-01 -4.31035519e-01\\n-1.32653294e-02 2.12294117e-01 -2.65596122e-01 3.15961719e-01\\n-4.04976249e-01 -7.22043738e-02 -2.86986753e-02 9.25575048e-02\\n1.18286289e-01 -1.01890124e-01 -1.91296682e-01 4.56276685e-02\\n-1.74387008e-01 -2.33241647e-01 -4.21412408e-01 -2.96364427e-01\\n-2.45122820e-01 -6.12163916e-02 -1.05807714e-01 -7.34834746e-02\\n-4.70886268e-02 -3.62323701e-01 -8.82291272e-02 -3.69754508e-02\\n3.59874010e-01 -1.34197772e-01 -7.44640976e-02 -1.35085329e-01\\n3.40849400e-01 2.69734621e-01 7.25262880e-01 -9.86575484e-02\\n6.82408363e-02 -1.93322390e-01 -2.12183774e-01 3.83212455e-02\\n1.16222426e-02 2.72300448e-02 6.09408990e-02 6.09072864e-01\\n-4.38957065e-01 -2.35902786e-01 3.38127762e-02 3.76781821e-01\\n-3.67565483e-01 -1.03730634e-01 -8.06691051e-02 1.36216834e-01\\n5.58694601e-02 1.21972516e-01 -2.23918110e-01 3.74377519e-02\\n-1.55979425e-01 -5.45422792e-01 3.82009685e-01 -1.06562130e-01\\n-1.06963478e-01 1.02384321e-01 2.55640328e-01 3.24659407e-01\\n-2.01840848e-01 -1.92697197e-02 -6.82788491e-02 3.50340195e-02\\n5.35736457e-02 4.43974257e-01 -1.17212661e-01 -2.35562384e-01\\n-3.46341729e-01 2.55334347e-01 -1.38096064e-01 4.98439968e-02\\n-2.76826546e-02 3.61386091e-01 1.17341019e-02 1.87336355e-01\\n1.89934328e-01 8.19223654e-03 -3.49441022e-01 -2.55365729e-01\\n-1.77964300e-01 -8.43334943e-02 -6.15842268e-03 -1.66509047e-01\\n2.88866103e-01 -2.58812249e-01 -1.03354618e-01 -2.33927459e-01\\n-1.81191191e-01 -2.71966875e-01 -6.74397647e-02 -7.69971758e-02]]',\n", + " 'job_description': 'About our client Our client is the world’s leading wholesale providers of reinsurance, insurance and other innovative forms of insurance-based risk transfer. Your responsibilities Our client is hiring an application engineer to work in a team with IT specialists and business analysts to design and develop solutions for global IT projects. The role is focused on maintaining and developing reporting applications for the Finance division. Maintaining, analyzing, designing, documenting, implementing, testing and deploying high-quality applications is within the responsibility of the team and you. You are interested to find out how you can apply your software engineering skills in the area of object-oriented design and analysis. Knowledge in surrounding technologies like J2EE, HTML5, JavaScript and WebSphere Liberty will help you by understanding the bigger picture. You are not afraid to learn other technologies like z/OS mainframe (i.e. JCL, JES, DB2) In addition, providing Level 3 support for ongoing operations is an integral part of the job. You enjoy solving challenging problems and you are equipped with good analytical skills and are highly motivated. You are willing to constantly develop your knowledge of IT methods and tools. You bring in an interest for reinsurance, financial topics, business requirements engineering and solution design. You will cooperate closely with the team lead, team members and internal clients, promoting teamwork within the project and the department across the globe. Your profile Graduates in computer science are preferred. Graduates in mathematics, technical studies, or natural sciences with software engineering experience are also considered. Persons with multiple years with professional experience in software engineering and projects are preferred. Knowledge in all of the following areas is required: Object Oriented Design & Analysis Java (programming language and libraries), J2EE Web services technologies (RESTful) and WebSphere liberty profile SQL and relational database design Creation and maintenance of technical documentation Strong command of German and English The ideal candidate also offers: Experience with data- and compute-intensive applications (batch processing, scheduling) Know-how in HTML5/JavaScript web-application development, Spring, Hibernate, IBM WebSphere Application Server Good analytical skills Cooperative, team-oriented work-style Experience with agile and test-driven and/or test-oriented software development (JUnit/bamboo/Jira) Above average quality awareness Passion to deliver innovative technical solutions which focus on business requirements and system stability Curiosity and open-mindedness; willingness to learn and develop skills on requirements engineering, test case engineering and solution definition and design Innovative, showing a high degree of own initiative Ability to work under pressure Ability to express him-/herself effectively in one-to-one conversations and small groups Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung HTML JavaScript Web JEE/J2EE Agile Hibernate (Framework) Spring (Framework) SQL Sprachen: Deutsch Englisch Job ID: 2085',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Team Oriented\", \"Teamwork\", \"Cooperation\", \"Willingness To Learn\", \"Integration\", \"Innovation\", \"Curiosity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Risk-Based Testing\", \"Test Case\", \"Tooling\", \"KM Programming Language\", \"Software Design Documents\", \"Agility\", \"Computer Science\", \"Junit\", \"Atlassian Bamboo\", \"Natural Sciences\", \"Hibernate (Java)\", \"SQL (Programming Language)\", \"Maintainability\", \"z/OS\", \"HTML5\", \"Application Servers\", \"E (Programming Language)\", \"Levelling\", \"Library\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"Reinsurance\", \"DB2 SQL\", \"Web Services\", \"Business Requirements\", \"Finance\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Job Control Language (JCL)\", \"Technical Documentation\", \"IBM Websphere Application Server\", \"Technical Solution Design\", \"Batch Processing\", \"Relational Databases\", \"Software Development\", \"Solution Design\", \"Additives\", \"JIRA Studio\", \"Java (Programming Language)\", \"Spring Framework\", \"Web Application Development\"]',\n", + " 'languages': \"['English', 'Spanish', 'Croatian']\"},\n", + " {'company_id': '109',\n", + " 'job_title': 'data scientist (analytics)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.starmind.ai',\n", + " 'jobdescription_embedded': '[[-2.10179746e-01 1.94211572e-01 4.47810352e-01 7.11169317e-02\\n4.75101680e-01 -1.05349049e-01 1.71992742e-02 3.98088157e-01\\n-2.30169017e-02 -5.11718750e-01 7.56235421e-02 -2.83988595e-01\\n-1.85230911e-01 1.26160175e-01 2.60654427e-02 3.76901388e-01\\n2.39219233e-01 1.66433752e-01 -1.64665177e-01 4.03719902e-01\\n6.82031959e-02 -1.23662595e-02 4.69312072e-04 7.99202323e-01\\n4.52678859e-01 -5.14311492e-02 -5.81164770e-02 4.51204516e-02\\n-1.91704780e-01 -2.37781882e-01 4.67107028e-01 1.29429162e-01\\n-1.99123085e-01 -4.70910579e-01 -3.30480784e-02 5.50191179e-02\\n-2.50130266e-01 -8.57802406e-02 -5.99808469e-02 1.74275488e-01\\n-5.78484654e-01 -1.90715224e-01 -1.04086816e-01 8.43295828e-02\\n-2.80406743e-01 -3.33820581e-01 6.04574196e-02 2.06429362e-02\\n2.40011171e-01 7.22111315e-02 -5.37037671e-01 3.08836520e-01\\n-2.53518373e-01 -2.28790194e-01 2.30259091e-01 6.09373450e-01\\n6.41611144e-02 -3.96829188e-01 -5.92023313e-01 -2.99331665e-01\\n1.26928598e-01 -2.16440961e-01 5.64881526e-02 -4.84487444e-01\\n3.02383959e-01 4.54939082e-02 1.68502033e-01 2.86692649e-01\\n-7.07299292e-01 -1.54409632e-02 -2.36068189e-01 -8.47047567e-02\\n-4.60173845e-01 -4.59526964e-02 -3.45182002e-01 -2.48257481e-02\\n-1.54969990e-01 4.45691019e-01 7.67012537e-02 9.96287912e-03\\n-1.86111555e-01 3.12287122e-01 -3.07298243e-01 4.16275740e-01\\n1.97299033e-01 2.38001123e-01 1.79564059e-01 3.68592858e-01\\n-4.59829003e-01 4.30814475e-01 8.08612332e-02 -3.01364750e-01\\n3.06849778e-01 2.17004538e-01 4.63233650e-01 -2.33492181e-02\\n2.48216003e-01 6.17225543e-02 -3.62661004e-01 4.80409831e-01\\n3.23345959e-01 -4.47050422e-01 7.52894059e-02 -2.52340853e-01\\n1.33517101e-01 -4.06849869e-02 1.21368274e-01 1.29612103e-01\\n-2.82538176e-01 4.16292667e-01 2.06427872e-01 -1.66058794e-01\\n-1.18123874e-01 -3.88204098e-01 -2.27980241e-02 -9.65153519e-03\\n1.14265755e-01 9.73291248e-02 1.85215503e-01 7.00136125e-02\\n2.59798765e-01 1.67647064e-01 1.60188615e-01 8.25629354e-01\\n-9.63142812e-02 2.89463867e-02 -2.09348053e-01 2.80466080e-01\\n1.89862311e-01 -3.49973232e-01 3.00333560e-01 2.63654202e-01\\n5.76562509e-02 -1.60088286e-01 -2.74979770e-01 3.48088205e-01\\n-1.37138873e-01 -1.65909871e-01 -3.56268048e-01 2.07551032e-01\\n2.50931025e-01 -3.54777217e-01 7.02439666e-01 1.09080330e-01\\n2.14200258e-01 -1.49468314e-02 5.35254218e-02 -2.13143051e-01\\n-1.21867314e-01 1.56842902e-01 5.52795045e-02 1.73762649e-01\\n-2.93830097e-01 -1.87693939e-01 -1.30972311e-01 5.32020442e-02\\n-5.78639627e-01 1.16341837e-01 -1.43634155e-04 -1.13525558e-02\\n1.67789310e-01 -5.14701083e-02 -3.08998555e-01 7.22464696e-02\\n-1.95161492e-01 -1.12387687e-01 1.67239934e-01 4.42371845e-01\\n-1.58010542e-01 2.87146419e-01 2.40565613e-02 -8.20622593e-02\\n7.88658977e-01 2.06482381e-01 2.10094750e-01 4.71047871e-03\\n3.19060683e-01 9.82624292e-03 1.50462583e-01 2.64285922e-01\\n-7.66696811e-01 2.24359229e-01 -9.21086743e-02 -2.98248351e-01\\n1.69284493e-01 -5.46119586e-02 3.13757896e-01 -2.64960140e-01\\n1.08908117e-01 -1.23104624e-01 -3.11451107e-01 -2.40551606e-01\\n-3.41877222e-01 -1.28749665e-02 3.58161598e-01 -4.83628213e-01\\n-1.18165538e-01 1.74724907e-01 -4.99271095e-01 -1.72453731e-01\\n1.00684166e-01 7.62574077e-02 1.35376096e-01 1.17276490e-01\\n-1.45077333e-01 -6.31760240e-01 -2.76954491e-02 -3.99203956e-01\\n-4.77119029e-01 6.05513379e-02 -4.18557227e-01 3.05402398e-01\\n7.10128322e-02 -1.20502442e-01 -1.78107440e-01 2.30716959e-01\\n-2.54188061e-01 8.04420337e-02 1.49276182e-02 4.55989689e-02\\n1.75669566e-01 7.05859736e-02 -3.80026639e-01 3.31154436e-01\\n-8.17083046e-02 6.78580821e-01 8.06134045e-02 -7.87013173e-01\\n5.94534278e-01 3.05935383e-01 -7.68897533e-02 -4.81723517e-01\\n5.56069195e-01 -2.29369015e-01 -1.89763397e-01 2.91056968e-02\\n-3.97436827e-01 -4.08761621e-01 2.73921907e-01 -5.71240149e-02\\n-2.05789596e-01 4.73918676e-01 1.10384524e-01 1.47889242e-01\\n2.53278315e-01 -3.11583638e-01 -1.28919750e-01 1.26212656e-01\\n-6.04721084e-02 -2.50511438e-01 -5.87294340e-01 -7.72306025e-02\\n-1.99988768e-01 -3.08492422e-01 -6.03672080e-02 -3.58885109e-01\\n-1.89634860e-01 -3.80856961e-01 -2.33501524e-01 3.06740940e-01\\n2.92243481e-01 8.06134567e-02 -1.22002319e-01 6.37357235e-02\\n2.66681202e-02 -7.78093159e-01 -2.43456531e-02 8.75557885e-02\\n5.14803529e-01 1.88636243e-01 2.23282859e-01 -7.33380467e-02\\n1.30144402e-01 6.51920974e-01 -1.97757870e-01 -3.17990124e-01\\n1.66064978e-01 3.08942735e-01 -2.14497242e-02 -1.34855613e-01\\n7.25394785e-02 4.26286757e-01 -3.86969805e-01 8.80723000e-02\\n4.14319038e-02 -2.09634185e-01 4.36686635e-01 -4.37591597e-02\\n-3.27730954e-01 -1.15854472e-01 -1.94023311e-01 9.71607342e-02\\n-5.63966274e-01 -3.78041863e-01 5.32606244e-01 2.39405975e-01\\n2.10919052e-01 5.64445630e-02 3.23486105e-02 -2.33842209e-02\\n-2.35300094e-01 -3.13792646e-01 3.14882666e-01 1.14036284e-01\\n9.17684957e-02 1.97435349e-01 3.54253761e-02 -6.28795326e-01\\n-3.45707703e+00 -1.40250266e-01 2.66815454e-01 -1.74149483e-01\\n1.18733853e-01 -2.24343985e-02 4.15387098e-03 -1.41916215e-01\\n-3.16568702e-01 7.11792558e-02 -1.43641040e-01 -2.30840474e-01\\n5.55182472e-02 2.49967009e-01 1.21269159e-01 1.39162913e-01\\n2.33872563e-01 -1.97353989e-01 -9.31975469e-02 2.96579003e-01\\n-1.92320481e-01 -5.83225429e-01 1.63121238e-01 -1.32989911e-02\\n1.93724096e-01 2.93803692e-01 -1.54656455e-01 -2.48165220e-01\\n-2.07820937e-01 -2.17830285e-01 6.53106123e-02 -2.76642561e-01\\n-1.56589165e-01 3.15363616e-01 2.55629003e-01 4.53668274e-02\\n5.58210015e-02 -3.89792979e-01 -1.80715233e-01 -4.64159369e-01\\n3.54249813e-02 -5.17889500e-01 1.66600384e-02 -1.99917495e-01\\n8.24899256e-01 -2.76604742e-01 1.46714419e-01 9.83523726e-02\\n2.15099514e-01 4.38738987e-02 1.14830293e-01 6.81909323e-02\\n-1.61824286e-01 -2.23032728e-01 -1.95522845e-01 -1.36374190e-01\\n6.10514045e-01 3.66834551e-01 -3.70142311e-02 -1.12815261e-01\\n1.70202836e-01 -2.26860926e-01 -4.04349864e-01 -2.30926380e-01\\n-9.46606845e-02 -2.99577475e-01 -5.26724339e-01 -3.45891416e-01\\n-1.07495070e-01 -1.42220378e-01 -1.62838548e-01 5.81643462e-01\\n-4.00863796e-01 -3.24613065e-01 -1.02602258e-01 -4.29318726e-01\\n2.85477668e-01 -2.08131433e-01 -2.74303518e-02 -1.73406973e-01\\n-3.50050002e-01 -5.66657543e-01 -2.20690109e-02 -7.50655681e-02\\n-1.60913914e-01 -4.17465508e-01 1.39559964e-02 -7.89035857e-02\\n-2.75966078e-01 -5.95266819e-01 3.95969659e-01 8.97488445e-02\\n2.76108086e-01 2.31478781e-01 3.34949255e-01 2.43235826e-02\\n3.84296954e-01 -3.48085389e-02 -1.04335777e-01 -2.52733678e-01\\n7.90352970e-02 6.24209642e-05 4.70604599e-01 -3.00321668e-01\\n-3.01844254e-02 7.38041550e-02 -2.16567382e-01 6.17171451e-03\\n3.73950481e-01 -5.70871271e-02 3.21425423e-02 -9.31534469e-02\\n3.58094007e-01 -2.15443060e-01 -9.59355980e-02 1.39634430e-01\\n1.64284959e-01 5.48558414e-01 2.22381204e-04 -4.10339385e-01\\n-5.49609214e-02 5.39321661e-01 -1.71384424e-01 4.04147245e-02\\n-2.52790809e-01 6.71408698e-03 -1.73354775e-01 3.31684709e-01\\n2.29939688e-02 -2.67501891e-01 -1.50031552e-01 -1.64433479e-01\\n-1.29732117e-01 3.56378138e-01 2.89455205e-01 -9.87644494e-03\\n5.33621423e-02 -3.33533257e-01 -1.46737382e-01 2.02087820e-01\\n2.87780106e-01 4.85582888e-01 1.42497241e-01 -2.30159491e-01\\n-1.54986531e-01 3.27715755e-01 -3.05212103e-02 6.83273375e-02\\n-2.77411401e-01 9.84354913e-02 -5.60426474e-01 -2.45150685e-01\\n-3.40586960e-01 -4.57471818e-01 3.09908420e-01 2.96390802e-01\\n1.93297327e-01 -2.79567353e-02 1.68242715e-02 -4.84814733e-01\\n2.53559619e-01 2.29311198e-01 8.67401734e-02 9.65577886e-02\\n-1.83367599e-02 4.81751442e-01 -1.77990459e-02 -1.51028335e-01\\n-6.13336265e-02 4.96961474e-02 -1.62863940e-01 -1.28857881e-01\\n1.36013746e-01 -5.56048393e-01 -1.21822193e-01 4.01461422e-01\\n1.78361565e-01 -2.41204500e-01 -3.50371778e-01 2.38098100e-01\\n-7.46901482e-02 -1.38120472e-01 -3.01481009e-01 -7.78522938e-02\\n3.64065111e-01 6.05226010e-02 2.70697415e-01 -3.44998896e-01\\n-1.00081660e-01 3.53457332e-02 -1.76378191e-01 4.54855680e-01\\n-2.79353037e-02 -6.55786097e-02 -2.75551766e-01 -1.15903333e-01\\n3.84312302e-01 -1.62750870e-01 -7.71391690e-02 2.01012418e-02\\n1.44687697e-01 -2.52256334e-01 -4.08395171e-01 5.50485030e-02\\n-2.44182274e-02 -2.89785624e-01 -4.54139113e-02 2.05413848e-01\\n3.20607126e-02 1.79573059e-01 -6.64706588e-01 -2.79706538e-01\\n-3.47172827e-01 -1.57855153e-01 1.35471314e-01 -3.32170874e-01\\n1.11616030e-02 -1.51936859e-01 -5.85460424e-01 2.02037826e-01\\n-2.33857602e-01 -1.67000219e-01 1.52982950e-01 1.88255444e-01\\n-2.88002372e-01 -2.15857163e-01 7.07886815e-02 3.00652683e-01\\n-3.01800817e-01 -3.06582063e-01 3.27955782e-02 -9.49103117e-01\\n1.51237726e-01 1.06959537e-01 -2.73427993e-01 1.29867047e-01\\n-1.25954658e-01 -5.67539513e-01 -2.70187901e-03 -4.66065466e-01\\n-7.62172639e-02 4.26074117e-03 -2.75106043e-01 -2.68526882e-01\\n1.25605613e-01 -3.63534875e-02 -3.38201106e-01 5.90385437e-01\\n-2.39713579e-01 2.97159076e-01 -2.00981051e-01 6.32197931e-02\\n-4.05335166e-02 -2.06939816e-01 4.79787141e-02 -3.77410114e-01\\n-4.50367928e-01 -2.79206514e-01 -3.24430555e-01 -2.88720042e-01\\n7.29513168e-02 -4.49980557e-01 -9.38795656e-02 1.27719730e-01\\n3.08707356e-01 3.52661163e-02 -6.69995993e-02 -3.36333185e-01\\n1.20317079e-01 -6.10910594e-01 -1.00885108e-02 -3.98753732e-02\\n-1.88447028e-01 -6.01781756e-02 1.39500916e-01 6.99954331e-02\\n2.14711025e-01 -1.92881435e-01 2.83252746e-01 -5.04460454e-01\\n-1.41100675e-01 6.52415305e-03 6.14316985e-02 -1.26327246e-01\\n1.57054693e-01 -5.10943055e-01 3.32886241e-02 4.04096216e-01\\n1.84172601e-01 7.86176044e-03 1.84053227e-01 -9.64846089e-02\\n1.38454735e-02 3.60264897e-01 -2.45273083e-01 7.34435469e-02\\n7.05817223e-01 1.05272770e-01 1.81264430e-01 1.20723128e-01\\n1.86774805e-01 2.46158153e-01 5.45635581e-01 4.24904302e-02\\n-7.89920539e-02 2.18962252e-01 3.06327436e-02 -4.10098195e-01\\n-1.86287947e-02 4.25301977e-02 -2.49770403e-01 -4.11494434e-01\\n6.35590732e-01 4.15606707e-01 -5.70702791e-01 -1.08167760e-01\\n-1.22683778e-01 -8.49220827e-02 2.85244644e-01 -3.27986740e-02\\n-9.70615149e-02 -2.50389948e-02 4.42076862e-01 -1.58618227e-01\\n1.66108638e-01 4.65281546e-01 -1.79365739e-01 -2.17780143e-01\\n-8.96031857e-02 2.29684085e-01 2.10076999e-02 6.10326648e-01\\n-2.15045214e-01 3.84999216e-01 -4.10412960e-02 3.08759734e-02\\n-7.95201883e-02 2.24118471e-01 2.07123190e-01 1.27009720e-01\\n3.00675213e-01 -1.00370824e-01 4.99070823e-01 4.32720244e-01\\n1.68665707e-01 4.49966490e-01 3.20463508e-01 1.01850949e-01\\n3.92724097e-01 5.18780708e-01 3.37164134e-01 1.85537606e-01\\n-2.94519439e-02 1.85228959e-01 1.93825006e-01 -4.55904901e-02\\n4.29522157e-01 3.75671625e-01 5.81753589e-02 8.86701941e-01\\n3.31846833e-01 4.05257344e-01 7.13368833e-01 -6.92930818e-01\\n-4.08669174e-01 2.39533588e-01 5.05235851e-01 -3.08072239e-01\\n3.77252102e-02 1.59508780e-01 -1.69029504e-01 2.58641511e-01\\n-4.29258943e-01 -2.63436735e-01 -1.86553225e-02 2.78958142e-01\\n-5.74850589e-02 -2.66052961e-01 -2.77419329e-01 1.05503559e-01\\n-2.24513933e-02 4.01349887e-02 -4.79153514e-01 -1.60319269e-01\\n-2.52722114e-01 -1.18680969e-01 -1.19232081e-01 -9.07109380e-02\\n3.99960987e-02 -3.42873454e-01 1.81955472e-02 -3.69969048e-02\\n2.98058689e-01 -1.79092824e-01 -1.20981731e-01 -1.38574302e-01\\n2.70347595e-01 2.77954906e-01 4.83906150e-01 -1.87783390e-02\\n9.00344551e-02 -2.30700612e-01 -2.22805068e-01 1.74296543e-01\\n1.16220593e-01 2.99101267e-02 1.43809114e-02 1.35847509e-01\\n-1.87098280e-01 -2.41374403e-01 2.00182676e-01 3.00834507e-01\\n-4.77595150e-01 -4.74525802e-02 -1.81763530e-01 1.72846913e-01\\n1.10419430e-01 2.42714167e-01 -1.92542121e-01 1.40764371e-01\\n-2.17416227e-01 -3.97935569e-01 2.40891814e-01 -1.31820142e-01\\n-9.15689915e-02 1.11068368e-01 3.31274390e-01 1.43759787e-01\\n-2.63186932e-01 -4.85299528e-03 -1.56927884e-01 2.31594503e-01\\n-3.17130610e-02 2.27894485e-01 -1.29941285e-01 -4.01979715e-01\\n-1.83858126e-01 1.13327384e-01 -1.76448286e-01 1.18976891e-01\\n1.83977336e-02 3.92277896e-01 1.29125327e-01 2.79327072e-02\\n5.19391060e-01 1.68753807e-02 -2.69162893e-01 -2.31084645e-01\\n-1.80346817e-01 -1.44831434e-01 -1.77088588e-01 2.68146582e-02\\n1.62462294e-01 -3.55977535e-01 -8.23326260e-02 -1.59328684e-01\\n-1.95772126e-02 -3.44549417e-01 7.99285024e-02 -3.76709290e-02]]',\n", + " 'job_description': \"At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology's computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people's advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from AirBnB, Twitter, SalesForce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! What You Will Do You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Who You Are You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization (for example using matplotlib or Grafana). You are always curious to try out new tools and libraries for the analysis and visualization of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. The Bounty A dynamic, young company where input is welcomed and acted upon High level of personal responsibility and independence A challenging and exciting mission within an innovative and multi-cultural environment The opportunity to work with some of the smartest and most innovative people in the market If this sounds like you, let’s solve the riddle and apply (written in English or German) - We’re very excited to meet you.\",\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Proactivity\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MySQL\", \"NoSQL\", \"Matplotlib\", \"Accessioning\", \"Advising\", \"Corporate Communications\", \"Tooling\", \"Agility\", \"Acting\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Levelling\", \"Data Visualization\", \"Machine Learning Methods\", \"Personalization\", \"Machine Learning Algorithms\", \"Scalability\", \"Human Intelligence\", \"Electronic Data Processing\", \"Humanism\", \"Grafana\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Igbo', 'Haitian Creole', 'Ossetian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.67797947e-01 2.23471791e-01 4.00910944e-01 6.60025477e-02\\n4.51178789e-01 -1.60052434e-01 -4.33489904e-02 3.22025806e-01\\n-4.20162939e-02 -3.31416547e-01 -8.76895636e-02 -2.47032136e-01\\n-2.10814163e-01 -3.71526442e-02 1.36083215e-01 3.43277901e-01\\n2.37768203e-01 4.16596793e-02 -2.08039641e-01 4.03111547e-01\\n1.70221850e-01 -6.05691634e-02 -1.05087072e-01 6.33610129e-01\\n4.41274971e-01 -2.94557642e-02 -1.15809128e-01 1.13996059e-01\\n-2.87302226e-01 -2.54846573e-01 3.05405200e-01 8.84429738e-02\\n-1.69397458e-01 -3.05417150e-01 1.47818867e-02 4.07998487e-02\\n-2.44649887e-01 -1.04152469e-03 4.66951169e-03 6.13861196e-02\\n-3.48051578e-01 -2.23278031e-01 5.07878624e-02 4.31966893e-02\\n-2.82808661e-01 -9.71495435e-02 2.01909672e-02 -2.21097730e-02\\n-1.27192782e-02 -9.23128873e-02 -6.59017086e-01 3.31288338e-01\\n-1.40265882e-01 -1.83420226e-01 1.09576568e-01 5.83908558e-01\\n1.98290544e-03 -4.04767334e-01 -3.87102842e-01 -2.89809257e-01\\n1.35247007e-01 -2.16276467e-01 6.57130778e-02 -1.14801764e-01\\n3.52104306e-01 -9.03733894e-02 -5.35969585e-02 3.61968458e-01\\n-7.29113400e-01 -5.19596972e-02 -2.22733900e-01 -1.88204050e-02\\n-4.34211642e-01 -3.05513880e-04 -3.08144540e-01 -1.21608019e-01\\n2.03670319e-02 3.20350826e-01 -1.70711521e-02 4.30752486e-02\\n-2.22143382e-01 2.90817350e-01 -1.21098213e-01 1.38132423e-01\\n4.09360260e-01 7.93099329e-02 1.71572760e-01 2.89205283e-01\\n-3.67796600e-01 4.06137645e-01 1.76369354e-01 -2.26075575e-01\\n2.64288425e-01 5.71912490e-02 4.61939514e-01 1.89347193e-01\\n-7.30676437e-03 2.42747933e-01 -1.10216148e-01 8.54381695e-02\\n3.98344137e-02 -3.41422319e-01 -1.79002918e-02 -3.56222615e-02\\n-1.43234879e-01 2.21951399e-02 -5.18862456e-02 3.19259286e-01\\n-1.76601782e-01 3.18402827e-01 2.23282218e-01 -1.07775196e-01\\n-7.89660141e-02 -4.68496442e-01 -1.26487955e-01 -1.60033986e-01\\n-4.27119732e-02 2.23144561e-01 2.60704845e-01 1.66987866e-01\\n1.86610654e-01 9.71528515e-02 2.18462631e-01 8.00689101e-01\\n-4.48031165e-03 1.06541850e-01 -1.76476419e-01 3.06832701e-01\\n1.59232616e-01 -2.49827519e-01 1.89750388e-01 2.77458876e-01\\n9.35676396e-02 -1.22085288e-01 -2.16007560e-01 1.58703744e-01\\n-2.15921849e-01 -3.74143310e-02 -2.12726012e-01 2.21460499e-02\\n-2.16539219e-01 -3.57765257e-01 4.19000089e-01 1.11413062e-01\\n2.16552287e-01 -1.34026865e-02 -3.94888717e-04 -1.05093077e-01\\n-8.73542130e-02 3.71256143e-01 -1.46127529e-02 3.37312222e-01\\n-4.18039948e-01 -2.10448310e-01 -7.75991604e-02 2.95682341e-01\\n-1.58863351e-01 1.15588963e-01 -1.65058643e-01 -2.10225061e-01\\n2.78614730e-01 3.46534587e-02 -3.10401320e-01 1.83094785e-01\\n-4.65594083e-02 -4.16222543e-01 -1.58331588e-01 2.98271388e-01\\n-3.29631492e-02 1.27015144e-01 5.26152626e-02 -1.82372928e-01\\n6.29623175e-01 1.92471012e-01 1.07908539e-01 -6.61031678e-02\\n3.19745332e-01 -7.49123245e-02 3.55591238e-01 8.91814604e-02\\n-5.26224732e-01 4.12394524e-01 -1.60990935e-02 -1.69356316e-01\\n2.62306002e-03 2.07843482e-02 3.74766141e-01 -3.27357173e-01\\n9.34685320e-02 -1.73781916e-01 -4.70794380e-01 -2.59786397e-01\\n-2.78950334e-01 3.41511033e-02 3.85021538e-01 -2.75733888e-01\\n-6.48614094e-02 2.46651396e-01 -4.45668548e-01 -1.81318551e-01\\n1.89138517e-01 7.84897953e-02 9.69058350e-02 7.48905689e-02\\n-7.38354847e-02 -5.24585605e-01 -8.26326087e-02 -4.45159078e-01\\n-5.17321527e-01 -3.54410261e-02 -2.24817425e-01 2.42991790e-01\\n1.47308305e-01 9.67766996e-03 -1.88144803e-01 1.77613005e-01\\n-3.54377508e-01 -3.27556469e-02 2.57643461e-01 6.54469803e-02\\n1.75178885e-01 -7.47319357e-03 -3.08972120e-01 3.97107095e-01\\n-2.74316519e-01 6.21097982e-01 2.42447779e-01 -7.90080607e-01\\n5.89994371e-01 2.81308055e-01 9.10473764e-02 -3.89502436e-01\\n3.09972197e-01 -3.85160208e-01 -2.08904687e-03 8.89401585e-02\\n-1.79994002e-01 -1.69516534e-01 3.50803167e-01 -1.60228685e-01\\n-2.77780324e-01 6.41886353e-01 1.03732437e-01 2.53467523e-02\\n2.36841872e-01 -3.64335686e-01 -7.16308281e-02 -2.84800418e-02\\n-9.83648375e-02 -2.47787789e-01 -3.41533661e-01 1.31170645e-01\\n-9.32423621e-02 -4.44773287e-01 -1.49822280e-01 -3.11181307e-01\\n-2.30936065e-01 -4.87669766e-01 -2.25363195e-01 4.50076222e-01\\n1.49685964e-01 1.42613038e-01 -4.96385917e-02 -1.81966685e-02\\n1.36549529e-02 -5.99976838e-01 -7.34489337e-02 9.47304070e-03\\n4.76299405e-01 2.57889718e-01 1.39223829e-01 -1.35562852e-01\\n1.41419232e-01 4.68498826e-01 -3.53928566e-01 -4.09420639e-01\\n2.37768337e-01 1.15763500e-01 -3.72259542e-02 -1.95339158e-01\\n3.34629081e-02 4.10877854e-01 -2.02467889e-01 -1.79471858e-02\\n-1.26893923e-01 -1.49718165e-01 3.47931445e-01 -1.51102534e-02\\n-3.19577783e-01 -1.08347990e-01 -7.27307657e-03 2.72979230e-01\\n-4.49135751e-01 -2.46639520e-01 5.42416453e-01 3.98168892e-01\\n1.36538386e-01 1.27742499e-01 1.12311460e-01 -9.96753201e-02\\n-1.93266422e-01 -3.35938215e-01 8.64637867e-02 2.40367979e-01\\n8.43850821e-02 -3.87400463e-02 -1.90104753e-01 -5.56322873e-01\\n-3.69337487e+00 -1.63776234e-01 1.43786415e-01 -3.81054252e-01\\n2.06410229e-01 -9.68072489e-02 2.62022931e-02 1.11974012e-02\\n-2.63745606e-01 1.15979388e-01 -2.01782152e-01 -7.85088465e-02\\n2.94370651e-02 3.29896450e-01 2.34507173e-01 1.84024155e-01\\n5.95688745e-02 -2.61302769e-01 -5.73425554e-02 3.71333152e-01\\n-5.03593795e-02 -6.14534438e-01 1.24278381e-01 1.87210017e-03\\n1.00997366e-01 1.97617933e-01 -3.10930640e-01 -1.19962715e-01\\n-2.10120022e-01 -2.94915229e-01 -1.51621699e-02 -2.48954877e-01\\n-1.69448391e-01 3.72111082e-01 5.21857999e-02 -4.23500985e-02\\n4.01084833e-02 -3.18437845e-01 -2.54789889e-02 -5.08560956e-01\\n5.85316401e-03 -6.77423179e-01 1.14051089e-01 -9.27477255e-02\\n6.26634777e-01 -2.04441667e-01 2.37691104e-01 1.81015015e-01\\n1.85380176e-01 1.66850746e-01 -1.01600438e-01 4.48440127e-02\\n-2.74803817e-01 -2.88138479e-01 -1.48141071e-01 -1.82555124e-01\\n5.44281840e-01 4.60853070e-01 -1.63479239e-01 -9.73954331e-03\\n-3.04917921e-03 -4.07680035e-01 -2.63288647e-01 -4.65468168e-01\\n-8.13349187e-02 -8.30012262e-02 -6.51311815e-01 -4.02418256e-01\\n-1.22329570e-01 -4.42776456e-02 -2.22788736e-01 5.23384273e-01\\n-3.65139037e-01 -3.91743600e-01 4.20902483e-02 -5.80897868e-01\\n3.78203876e-02 -1.85655683e-01 1.49634540e-01 -1.41371742e-01\\n-3.77738804e-01 -5.68372190e-01 1.20845668e-01 -1.18554734e-01\\n-2.34674156e-01 -2.11344063e-01 -2.36584130e-03 -2.99374372e-01\\n-2.80318290e-01 -4.15226221e-01 3.84455293e-01 -4.92049530e-02\\n3.91524047e-01 1.26609579e-01 2.98707873e-01 2.12086186e-01\\n3.03440601e-01 -4.67665754e-02 1.16511777e-01 -3.29060584e-01\\n2.00413942e-01 -1.85932778e-02 5.43922842e-01 -2.49078721e-01\\n9.82037708e-02 9.41581950e-02 -2.64304966e-01 -2.75364183e-02\\n5.40788710e-01 -3.99653800e-03 1.93808861e-02 -1.64949987e-02\\n3.36027443e-01 -4.08705115e-01 -2.09126711e-01 2.09135607e-01\\n-4.97579798e-02 5.72948873e-01 1.29105657e-01 -5.01892924e-01\\n-2.06853330e-01 4.43669766e-01 -7.59076327e-02 -8.61080289e-02\\n-9.91872475e-02 8.09957460e-02 -7.33947307e-02 1.63370013e-01\\n6.00946061e-02 -2.33655080e-01 -2.95648515e-01 -1.35013804e-01\\n-6.15836978e-02 1.17240466e-01 2.38325015e-01 -5.51117137e-02\\n-1.99102554e-02 -2.01080456e-01 -2.01219350e-01 1.22054115e-01\\n1.74229860e-01 2.68598408e-01 1.90046325e-01 -2.74984509e-01\\n-5.24078496e-02 1.79890126e-01 -1.55673400e-01 1.60794437e-01\\n-2.00274527e-01 5.35562523e-02 -5.16639054e-01 -2.06482917e-01\\n-1.58929572e-01 -3.17928314e-01 1.32115662e-01 2.96791464e-01\\n6.02102131e-02 4.17283326e-02 2.82371119e-02 -5.39916754e-01\\n4.95594025e-01 6.53089806e-02 1.43148392e-01 1.60298675e-01\\n-2.68529961e-03 5.05960226e-01 1.14684761e-01 -6.14009760e-02\\n-1.87138498e-01 2.29834039e-02 -2.01711431e-01 -2.71626443e-01\\n3.46828140e-02 -3.17117035e-01 -1.00121409e-01 4.92019385e-01\\n1.59876660e-01 -1.32024378e-01 -2.25127891e-01 3.72372061e-01\\n1.18085317e-01 -2.40831897e-01 -1.76068798e-01 -2.89492942e-02\\n2.08372012e-01 1.20956302e-01 1.94963142e-01 -2.16614351e-01\\n-2.61022784e-02 -8.70102197e-02 -7.08626071e-03 3.36905390e-01\\n1.94389701e-01 7.35511035e-02 -7.64497519e-02 -1.53016269e-01\\n4.58581030e-01 5.59847839e-02 -6.08831681e-02 -1.65696517e-01\\n9.95559096e-02 -2.62825757e-01 -3.97872299e-01 -1.94238068e-03\\n-5.95389158e-02 -1.01133421e-01 1.60148770e-01 1.25008002e-01\\n3.96537706e-02 1.54154813e-02 -3.90044034e-01 -2.79293269e-01\\n-3.60540301e-01 -1.24080732e-01 8.27158615e-02 -3.56727749e-01\\n-4.55062389e-02 -6.05232306e-02 -4.64224815e-01 2.10935980e-01\\n-4.01233643e-01 4.15407643e-02 7.23638535e-02 1.53081492e-01\\n-2.57607490e-01 -4.27092351e-02 1.08795553e-01 6.51561320e-02\\n-3.54988337e-01 -3.29407960e-01 1.26773909e-01 -9.28427517e-01\\n1.67723745e-01 1.96561769e-01 -3.44602875e-02 -1.55226199e-03\\n1.09036975e-01 -6.36497498e-01 1.61105439e-01 -4.26888585e-01\\n1.05616413e-01 4.05931234e-04 -1.88681155e-01 -2.73973823e-01\\n1.62852600e-01 -1.00772627e-01 -3.52348536e-01 3.87083381e-01\\n-4.61221576e-01 3.51978183e-01 9.38664228e-02 6.84182718e-02\\n7.64034986e-02 -2.53411740e-01 1.75714374e-01 -3.40284735e-01\\n-4.29301560e-01 -2.24903360e-01 -3.30237448e-01 -1.54149592e-01\\n5.38503751e-02 -2.00843215e-01 -2.45545268e-01 7.89161026e-02\\n3.30360889e-01 1.71384543e-01 -1.29133791e-01 -2.18829438e-01\\n1.08130381e-01 -4.95836943e-01 1.16221733e-01 -3.26887399e-01\\n-1.16304263e-01 -5.76153398e-02 3.00758183e-01 -1.56565532e-01\\n5.31830899e-02 -2.81658053e-01 4.26793575e-01 -3.11241955e-01\\n-2.71720976e-01 -4.59338464e-02 1.01968668e-01 -7.16905892e-02\\n1.45672590e-01 -4.57317263e-01 3.12555470e-02 2.70734072e-01\\n1.32438913e-01 6.28941581e-02 2.46170357e-01 -4.05789586e-03\\n-9.49488506e-02 1.78450167e-01 -5.44815004e-01 5.24001531e-02\\n6.91090763e-01 1.69623137e-01 7.48366043e-02 8.68535340e-02\\n1.50660098e-01 2.83188760e-01 5.35532236e-01 2.37548221e-02\\n-3.09827365e-02 2.99476624e-01 9.03341025e-02 -4.79859799e-01\\n-1.52367786e-01 -1.66652322e-01 -8.78164992e-02 -1.97070032e-01\\n6.38488710e-01 3.80464464e-01 -3.72917473e-01 -2.29878083e-01\\n8.21522772e-02 -1.43523201e-01 2.50231743e-01 -3.44545096e-02\\n3.76161039e-02 -7.44454190e-02 5.78416288e-01 2.50652209e-02\\n2.16585264e-01 5.06911218e-01 -1.52659804e-01 -2.96991378e-01\\n-8.45757574e-02 1.06747963e-01 7.21454173e-02 4.76534367e-01\\n-1.40232623e-01 2.59127319e-01 -1.42270356e-01 -7.90941820e-04\\n-3.93212819e-03 2.01537639e-01 2.06707999e-01 1.61194891e-01\\n2.01165214e-01 7.32801035e-02 2.60496020e-01 4.71797585e-01\\n4.63180467e-02 5.54212332e-01 3.23379546e-01 1.28445821e-02\\n2.21289441e-01 5.24292350e-01 3.87407839e-01 1.22009382e-01\\n6.01734519e-02 6.76943213e-02 8.94347578e-02 -1.14824669e-02\\n4.68205124e-01 3.65374535e-01 2.90794611e-01 7.64046490e-01\\n3.87103081e-01 3.75415742e-01 7.26685822e-01 -6.68643713e-01\\n-4.36016977e-01 1.07743621e-01 5.78226507e-01 -1.24268800e-01\\n-9.03415605e-02 1.90058395e-01 -3.47007841e-01 1.80975363e-01\\n-5.37259579e-01 -1.76500216e-01 -3.97830941e-02 -2.05528475e-02\\n-2.32658442e-03 -1.03210472e-03 -1.76454470e-01 1.98495910e-01\\n-1.05690494e-01 -1.38507873e-01 -2.74312347e-01 -1.26081422e-01\\n-2.80884147e-01 -7.93290511e-02 -1.80702824e-02 -6.78007528e-02\\n-1.48820654e-01 -3.68472666e-01 -9.13524479e-02 -1.14657842e-02\\n2.50791430e-01 -4.96716239e-02 -1.89514220e-01 -1.81325763e-01\\n4.97623645e-02 3.23022097e-01 4.71461177e-01 -4.84294556e-02\\n6.59601614e-02 -4.97369952e-02 -2.96217740e-01 3.70041616e-02\\n9.85562876e-02 3.69052812e-02 8.67016017e-02 3.52564514e-01\\n-2.44759515e-01 -1.91772345e-03 1.43200666e-01 1.97785825e-01\\n-3.84503931e-01 -1.36229873e-01 -2.13089678e-02 2.03736588e-01\\n5.80881462e-02 2.01550514e-01 -3.02562445e-01 7.95227364e-02\\n-1.94044858e-01 -5.14495015e-01 4.06036586e-01 -1.99358016e-01\\n-1.55591458e-01 2.89814860e-01 2.14947715e-01 2.28401542e-01\\n-2.76465029e-01 -4.57266569e-02 2.67718732e-02 4.03959721e-01\\n-1.41844347e-01 3.37766737e-01 -9.47164148e-02 -1.59037367e-01\\n-2.48790622e-01 2.94329971e-01 -3.88579653e-03 2.14141756e-01\\n-1.37548029e-01 3.46162856e-01 -5.80042154e-02 2.30532996e-02\\n2.13627920e-01 -1.33272521e-02 -2.56644666e-01 -2.25053698e-01\\n-3.67999971e-01 -1.66745424e-01 8.17715675e-02 3.93622220e-02\\n1.78500384e-01 -3.11841756e-01 -6.43162429e-02 -1.23821184e-01\\n-1.48856580e-01 -2.35033602e-01 -1.34016871e-01 1.90982834e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: - Understand real estate market and urban related data - Extract, cleanup, structure and transform complex raw and processed datasets to extract insights from it - Retrieve a wide variety of datasets and integrate them into the data pipeline - Create and maintain an efficient data infrastructure - Continuously provide new ideas to improve our engines and products REQUIREMENTS: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with the ETL and data processing tools we’re using is a strong advantage: - Python, Pandas - Luigi and PySpark - PostgreSQL and PostGIS - Scikit-learn and Tensorflow - Working experience with cloud providers (Google cloud, AWS or Azure) - Advanced knowledge of relational databases - Experience with Docker and Kubernetes orchestration is a strong advantage - Understanding of core machine learning concepts is an advantage - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Comfortable working in English and German; you have a great read, good spoken command of it Benötigte Skills Englisch CLOUD PostgreSQL Python ETL',\n", + " 'soft_skills': '[\"Real Estate\", \"Integration\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"MSC Software\", \"Kubernetes\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Product Requirements\", \"Luigi (Python Package)\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Scikit-learn (Machine Learning Library)\", \"Pyspark\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"Data Extraction\", \"Maintainability\", \"Data Pipeline\", \"Urbanization\", \"Dataset\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Machine Learning Methods\", \"Docker (Software)\", \"TensorFlow\", \"Google Cloud\", \"Electronic Data Processing\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Infrastructure\", \"Data Structures\", \"Relational Databases\", \"Algorithms\", \"Pandas (Python Package)\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English', 'Bambara', 'Danish', 'Pushto', 'Bengali']\"},\n", + " {'company_id': '15',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.98998433e-02 1.97152644e-01 4.99470174e-01 -1.87371280e-02\\n5.57983756e-01 -4.58676927e-02 2.19857134e-02 2.63412774e-01\\n5.93734831e-02 -3.48637283e-01 9.23671760e-03 -2.26297766e-01\\n-4.41474877e-02 1.25425667e-01 1.01614155e-01 3.50094080e-01\\n2.28653610e-01 1.43700704e-01 -1.61327466e-01 2.42487073e-01\\n2.60273933e-01 -2.27474153e-01 1.46380231e-01 7.42537141e-01\\n3.51047695e-01 7.53103048e-02 -1.22040108e-01 -8.72733742e-02\\n-2.35802457e-01 -2.19702959e-01 4.60112602e-01 2.73665488e-02\\n-1.78154372e-02 -3.69986176e-01 1.52367219e-01 4.63702492e-02\\n-3.02975923e-01 -2.78775506e-02 -7.84548894e-02 2.49695569e-01\\n-6.48348093e-01 -2.75886148e-01 -2.66547129e-02 4.19582352e-02\\n-2.34154552e-01 -2.63983905e-01 -3.10796387e-02 -7.76615739e-02\\n8.40050429e-02 8.83230641e-02 -5.07604837e-01 2.41512030e-01\\n-1.24171391e-01 -2.28536963e-01 2.48472199e-01 6.91273987e-01\\n-4.50681038e-02 -4.41353738e-01 -5.37199080e-01 -3.11479896e-01\\n8.33623931e-02 -1.95348561e-01 6.43659532e-02 -2.55740345e-01\\n2.96868801e-01 2.51846164e-02 1.24646239e-01 3.39337111e-01\\n-6.92676008e-01 -9.81176551e-03 -2.06226423e-01 7.86596071e-03\\n-2.53300458e-01 -8.06198344e-02 -2.65956372e-01 -1.03259161e-01\\n-1.63169637e-01 5.04333436e-01 1.56563893e-01 -2.13129390e-02\\n-6.97189122e-02 2.04713434e-01 -2.66840726e-01 2.91900247e-01\\n1.95358247e-01 2.55060107e-01 1.41678452e-01 2.92000473e-01\\n-3.24760646e-01 4.51508760e-01 8.28409120e-02 -2.80482441e-01\\n2.31827781e-01 6.45272881e-02 4.46475387e-01 -7.59381279e-02\\n9.55346152e-02 8.09905306e-02 -2.48376578e-01 2.68496335e-01\\n2.35486105e-01 -2.48794243e-01 7.69232213e-02 -8.61431807e-02\\n-1.40916556e-01 -5.14186770e-02 -4.72015655e-03 2.14406341e-01\\n-1.84699848e-01 3.66772532e-01 2.04026341e-01 -5.82609437e-02\\n-1.51278481e-01 -5.49873054e-01 1.88134611e-02 5.32678403e-02\\n6.83155656e-02 2.22340986e-01 1.91423163e-01 7.53043741e-02\\n1.86959937e-01 5.27589358e-02 1.90087140e-01 8.44816625e-01\\n2.61658803e-02 1.23406202e-01 -2.85340935e-01 2.81537175e-01\\n1.05313189e-01 -1.68594822e-01 1.16564445e-01 1.91351876e-01\\n8.37723389e-02 -9.97206122e-02 -2.76905566e-01 3.22454602e-01\\n-7.89886340e-02 -2.12458119e-01 -1.41082928e-01 2.16886789e-01\\n-7.93813765e-02 -3.31747264e-01 5.10200918e-01 1.48076490e-01\\n1.31854162e-01 -5.91597967e-02 8.79621319e-03 -1.36009589e-01\\n-1.59676716e-01 1.80109471e-01 5.42135425e-02 1.47959471e-01\\n-3.39210600e-01 -2.66746342e-01 -2.66191065e-01 1.06226690e-01\\n-3.05226713e-01 9.95913744e-02 -5.22824898e-02 -8.04561824e-02\\n2.76378810e-01 1.74293458e-01 -2.94111192e-01 2.37864852e-01\\n-8.44585299e-02 -1.09393433e-01 1.25585094e-01 3.02391976e-01\\n-2.31247544e-01 1.81893796e-01 1.20371310e-02 -1.93199307e-01\\n5.66395700e-01 1.66991785e-01 2.37456560e-01 9.21028107e-02\\n2.88263500e-01 -6.08759522e-02 1.05367444e-01 2.27070495e-01\\n-5.73513687e-01 3.11017722e-01 -1.05044939e-01 -7.21694678e-02\\n1.82422280e-01 -6.32762685e-02 3.83740097e-01 -3.05233240e-01\\n1.57807574e-01 -1.17152251e-01 -3.57045382e-01 -2.67231077e-01\\n-1.65865228e-01 1.71132118e-01 3.61724347e-01 -4.38111156e-01\\n-2.45524123e-02 3.20603430e-01 -4.49311018e-01 -1.78323194e-01\\n1.68470204e-01 1.88515052e-01 1.43587887e-01 8.76417011e-02\\n-2.38418832e-01 -4.36608940e-01 -2.54167058e-03 -3.21836710e-01\\n-3.00735235e-01 5.79095706e-02 -2.60441244e-01 2.78234243e-01\\n5.49001098e-02 6.52710944e-02 -1.32333368e-01 1.48784906e-01\\n-1.94907054e-01 -5.45627922e-02 1.67649865e-01 2.76614223e-02\\n2.20458657e-01 7.26060793e-02 -3.43278468e-01 3.71006191e-01\\n-1.22606680e-01 5.54795384e-01 1.31609350e-01 -8.16452086e-01\\n4.77201194e-01 2.66264230e-01 -1.40279502e-01 -3.60791326e-01\\n5.56011319e-01 -2.08606049e-01 4.72614579e-02 1.61297396e-01\\n-3.17924023e-01 -3.60303968e-01 3.37640136e-01 -1.41066924e-01\\n-2.24926263e-01 4.85480428e-01 1.72831804e-01 1.30888209e-01\\n1.59585848e-01 -2.51462340e-01 -1.17638201e-01 3.39746214e-02\\n-1.53288677e-01 -2.30060682e-01 -5.00312567e-01 -2.85034962e-02\\n-1.40911520e-01 -3.92224193e-01 -7.19712824e-02 -3.09450299e-01\\n-2.25271046e-01 -3.30438226e-01 -1.03796020e-01 1.81441441e-01\\n3.11140209e-01 2.38120362e-01 1.24966754e-02 8.45534634e-03\\n-1.26339896e-02 -6.34600580e-01 -8.67870599e-02 8.32965896e-02\\n3.69247437e-01 1.30257577e-01 1.44248337e-01 4.63810451e-02\\n-4.26720902e-02 5.18113732e-01 -1.74384668e-01 -1.52194649e-01\\n1.39776304e-01 1.27821162e-01 8.16736668e-02 -6.81443959e-02\\n1.47215068e-01 3.12286437e-01 -2.22207084e-01 9.18604061e-02\\n-9.47456062e-02 -4.78177592e-02 3.32185388e-01 4.27488200e-02\\n-3.00677687e-01 -2.40568906e-01 -1.16933428e-01 1.17763579e-01\\n-4.97554302e-01 -2.18924999e-01 4.79001731e-01 1.79978967e-01\\n1.86108798e-01 1.39620975e-01 1.27440870e-01 -1.33280292e-01\\n-1.72111884e-01 -2.58254677e-01 3.32453758e-01 2.68188287e-02\\n1.86541125e-01 1.00505784e-01 -1.40593783e-03 -5.70831895e-01\\n-3.43930721e+00 -1.65340841e-01 1.24765515e-01 -2.75352001e-01\\n1.88078478e-01 -1.52135253e-01 7.20741153e-02 1.50343459e-02\\n-2.77613133e-01 5.70858717e-02 -5.00585400e-02 -9.10519809e-02\\n1.16038486e-01 1.80958629e-01 1.49729788e-01 2.29187727e-01\\n7.46175274e-02 -2.11780906e-01 -4.57385108e-02 3.57682198e-01\\n-3.16253662e-01 -6.25500679e-01 1.54034004e-01 -7.84544945e-02\\n1.74763709e-01 1.97557971e-01 -3.36236060e-01 -1.76586166e-01\\n-2.41786540e-01 -2.16673508e-01 7.88787380e-02 -2.43224978e-01\\n-1.20544150e-01 3.38597059e-01 1.77966803e-01 -2.47339476e-02\\n1.11569829e-01 -2.90177077e-01 5.41986723e-04 -4.14874434e-01\\n9.85726193e-02 -6.58646047e-01 -6.86026737e-02 -1.47949070e-01\\n6.62897587e-01 -3.05703431e-01 1.22703440e-01 6.12274371e-02\\n2.06132039e-01 1.19932771e-01 4.71950769e-02 -8.91026780e-02\\n-2.39108741e-01 -2.38231212e-01 -8.04287642e-02 -6.82279766e-02\\n3.29306543e-01 5.55606902e-01 -1.41079843e-01 -1.01776652e-01\\n-3.85066979e-02 -3.50557536e-01 -4.77627426e-01 -3.50319862e-01\\n-9.72887576e-02 -1.90136760e-01 -6.05422676e-01 -4.35974300e-01\\n-1.58704817e-01 -1.14522755e-01 -7.50512406e-02 5.06284535e-01\\n-2.83337206e-01 -3.42575222e-01 -1.72541335e-01 -5.07660031e-01\\n2.49455258e-01 -1.48055673e-01 -7.63515681e-02 -2.82965839e-01\\n-3.32825184e-01 -4.41049308e-01 1.95053592e-01 3.88801955e-02\\n-1.13154590e-01 -2.56487221e-01 6.71961308e-02 -2.27691740e-01\\n-3.09614331e-01 -4.63464409e-01 3.23200345e-01 5.41589968e-02\\n2.99706787e-01 1.30259842e-01 3.71802628e-01 -3.51815447e-02\\n3.12345922e-01 -9.61680785e-02 6.74147159e-02 -3.34052265e-01\\n7.97658637e-02 4.60403524e-02 4.11679924e-01 -3.23985666e-01\\n-3.62232290e-02 1.71932250e-01 -3.28969419e-01 -3.26989926e-02\\n2.89494783e-01 -9.97728482e-02 -1.23855107e-01 -1.44535854e-01\\n3.90606403e-01 -3.52675945e-01 -1.79764166e-01 6.33004233e-02\\n1.44868657e-01 4.92709488e-01 2.34151129e-02 -3.45968008e-01\\n-2.04053819e-01 3.97915274e-01 -7.78415129e-02 -1.48245245e-01\\n-8.86551812e-02 -2.49728188e-03 -2.12938026e-01 3.16476256e-01\\n-1.77277252e-02 -1.79964960e-01 -2.90927500e-01 -1.78654149e-01\\n-8.60887468e-02 3.54264438e-01 2.16819718e-01 4.51311760e-04\\n-1.32116392e-01 -3.00597429e-01 -2.19884798e-01 2.64676422e-01\\n1.64699480e-01 3.21614355e-01 1.40138313e-01 -1.95295036e-01\\n-2.37670150e-02 2.58300990e-01 -1.36433095e-01 1.72529817e-01\\n-2.48085856e-01 3.23181525e-02 -5.37817240e-01 -4.53125745e-01\\n-1.39257535e-01 -3.71102333e-01 1.85846046e-01 3.53551596e-01\\n2.64122963e-01 6.88541157e-04 -7.74141215e-03 -5.03653347e-01\\n2.46722594e-01 -1.52597893e-02 1.61403954e-01 6.18723258e-02\\n-4.11908515e-02 6.14995658e-01 1.61009490e-01 -1.54791683e-01\\n-8.38213041e-02 7.44742947e-03 -2.00097844e-01 -5.44463545e-02\\n1.46256775e-01 -3.91793877e-01 -1.51044086e-01 4.78571475e-01\\n1.16849549e-01 -3.17656100e-01 -1.38495415e-01 2.61488706e-01\\n-2.01293789e-02 -2.65987962e-01 -2.15953991e-01 5.71088158e-02\\n2.97512233e-01 1.60917565e-01 3.70271653e-01 -4.22141343e-01\\n1.48862042e-02 4.91659604e-02 -1.52740777e-01 4.59558755e-01\\n3.32085118e-02 -1.00646392e-02 -2.21461520e-01 -8.65842104e-02\\n3.60315889e-01 -8.66901129e-02 3.67928483e-02 1.07094266e-01\\n-1.62132233e-02 -1.87189251e-01 -5.38501203e-01 5.40643185e-02\\n-3.55087519e-02 -2.22213075e-01 -1.66446492e-02 2.31658742e-01\\n1.52707584e-02 3.75772780e-03 -5.79141438e-01 -2.82765359e-01\\n-1.65417030e-01 7.92880580e-02 1.15879089e-01 -4.19070035e-01\\n-1.13906212e-01 -3.97933498e-02 -5.43984115e-01 2.10181311e-01\\n-6.32139966e-02 -2.52097193e-02 1.64730832e-01 7.40281269e-02\\n-1.58122644e-01 -2.38359757e-02 1.15754612e-01 2.27616131e-01\\n-1.98546410e-01 -1.89981088e-01 3.97958932e-03 -9.69584465e-01\\n7.49571174e-02 -5.12979068e-02 -2.74407089e-01 3.77369151e-02\\n1.05678476e-02 -6.32331550e-01 6.70341551e-02 -4.01552588e-01\\n-7.78725445e-02 -5.10341302e-03 -2.73104459e-01 -2.77397186e-01\\n5.93604259e-02 9.77364853e-02 -3.69456828e-01 3.73389304e-01\\n-2.99965501e-01 3.83564740e-01 -6.55236393e-02 8.77982825e-02\\n8.50875601e-02 -3.14839125e-01 1.07931159e-01 -3.36971015e-01\\n-3.05370301e-01 -1.69857129e-01 -4.21980828e-01 -2.52053857e-01\\n-3.55787426e-02 -1.91765055e-01 -8.08241516e-02 5.34649231e-02\\n2.66178697e-01 4.46977764e-02 2.62324773e-02 -2.94415295e-01\\n-1.94731727e-03 -4.60829198e-01 1.39008075e-01 -1.31950289e-01\\n-9.15825367e-02 -1.54787511e-01 1.04006410e-01 5.43554313e-02\\n1.82314485e-01 -3.46424013e-01 4.80115563e-01 -3.19533885e-01\\n-2.44878531e-01 -9.55470800e-02 8.56073759e-03 9.55415890e-02\\n2.69538105e-01 -3.72755468e-01 2.56780535e-02 2.82279313e-01\\n1.89144269e-01 1.64526016e-01 3.31392378e-01 -4.78386953e-02\\n-7.00033307e-02 1.08433641e-01 -3.79010141e-01 6.60397038e-02\\n7.49648869e-01 1.58139348e-01 1.25816986e-01 1.14973873e-01\\n6.65250719e-02 1.15810171e-01 5.54963112e-01 1.29024267e-01\\n-1.49597526e-01 2.38715529e-01 1.48169762e-02 -5.24714589e-01\\n-1.65051237e-01 -8.94706845e-02 -1.98826209e-01 -3.94835591e-01\\n6.80251420e-01 3.73314798e-01 -4.93509024e-01 -1.49980471e-01\\n-1.29828855e-01 -9.19738412e-02 7.96814784e-02 -1.76913321e-01\\n-1.93392299e-02 -4.90420163e-02 4.50672626e-01 -8.11112002e-02\\n2.46962354e-01 3.41357142e-01 -7.36927837e-02 -2.48386577e-01\\n-5.01758754e-02 2.33399808e-01 9.60875675e-02 3.45379740e-01\\n-1.58916712e-01 3.44303370e-01 3.47258970e-02 1.89217180e-01\\n-9.04791132e-02 5.18768579e-02 3.88155989e-02 1.05042011e-01\\n5.69801107e-02 3.80215123e-02 3.77773523e-01 4.59079593e-01\\n2.90616691e-01 4.31438059e-01 3.01439136e-01 4.86432910e-02\\n4.27714586e-01 4.63314265e-01 3.30575436e-01 1.76705062e-01\\n-7.51924813e-02 9.05373991e-02 2.66333111e-02 2.87195314e-02\\n4.16210324e-01 3.12305629e-01 1.05562702e-01 7.69239187e-01\\n2.18980998e-01 1.88183337e-01 6.16315246e-01 -5.62968791e-01\\n-3.85516107e-01 -8.84358212e-02 5.47951818e-01 -3.74285072e-01\\n2.72122137e-02 1.02708444e-01 -1.94500014e-01 1.39071584e-01\\n-5.39252520e-01 -2.29361415e-01 -1.54878385e-02 1.25321329e-01\\n-6.19567707e-02 -1.31734788e-01 -2.02776849e-01 5.79915754e-02\\n-6.53996691e-02 -9.16827321e-02 -3.84773493e-01 -1.12982392e-01\\n-2.63507336e-01 -1.24508485e-01 -1.06767878e-01 -1.03236005e-01\\n-2.13398971e-02 -3.14800441e-01 -9.55086872e-02 1.65221598e-02\\n3.30449432e-01 -1.56356573e-01 -1.24725811e-01 -4.95006405e-02\\n3.12073350e-01 1.38101891e-01 5.02904177e-01 6.18027970e-02\\n7.78317377e-02 -3.44437838e-01 -2.45629191e-01 1.18237786e-01\\n2.95107663e-01 9.48463082e-02 3.10304239e-02 3.80618721e-01\\n-2.21369207e-01 -1.61770299e-01 1.02590494e-01 2.90005982e-01\\n-5.21793008e-01 3.65752019e-02 -5.89083470e-02 2.20316574e-01\\n1.47336632e-01 1.66876733e-01 -1.72704577e-01 2.20828410e-02\\n-2.61339217e-01 -4.60745931e-01 1.87247515e-01 -7.49568790e-02\\n-1.58283606e-01 1.56375453e-01 2.99991578e-01 7.89559186e-02\\n-1.93863139e-01 -1.25433318e-02 2.76581501e-03 2.26015866e-01\\n9.03900936e-02 2.26390019e-01 -2.52003312e-01 -3.00219715e-01\\n-2.56502569e-01 1.70084387e-01 -1.65290222e-01 1.68460369e-01\\n-1.93015039e-02 2.79036134e-01 2.67824288e-02 5.35682514e-02\\n3.64560634e-01 4.41920618e-03 -1.21809565e-01 -3.01301807e-01\\n-2.14202970e-01 -4.11552042e-01 -7.04973564e-02 7.54717737e-02\\n1.45527303e-01 -4.11020845e-01 -9.77766421e-03 -1.98590174e-01\\n-1.80508822e-01 -3.55517030e-01 7.10508823e-02 -8.82288218e-02]]',\n", + " 'job_description': 'Ava is a digital health company with offices in Zurich, San Francisco, Belgrade and Makati that aims to advance women’s reproductive health by bringing together artificial intelligence and clinical research. Our wearable device, smart app and proprietary predictive algorithms empower women by giving them unique clinically researched insights and personalized data about their menstrual cycle, fertile window, and pregnancy delivered in a way that’s convenient and non-invasive. Ava was voted Best of Baby Tech at CES 2017, named a Women’s Health “Editors’ Choice” product and has been honoured as the best Swiss startup in 2017 and 2018. Our current key markets include USA, Germany, Switzerland and UK. Would you like to join us on our challenging adventure? Responsibilities: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements About you: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Would you like to contribute to a highly motivated team, with a lot of space for your own initiatives? If yes, please apply online or send your complete application to recruiting(at)avawomen.com. We appreciate that you share our excitement for Ava. Please be aware that only complete applications (CV and motivation letter) can be considered. Ava – Revolutionizing women’s health Moritz Ritter, System Architect and Data Engineering Manager Should you not hear back from us within 3 weeks your application has unfortunately not been successful for the respective role.',\n", + " 'soft_skills': '[\"Research\", \"Team Motivation\"]',\n", + " 'hard_skills': '[\"Non-Invasive Monitoring\", \"Storage Area Network (SAN)\", \"Automation\", \"Data Quality\", \"MySQL\", \"Tooling\", \"Computer Science\", \"Prediction\", \"Fertilizers\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Reproductive Health Care\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Smart Device\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Data Science\", \"Virtual Computing\", \"Personalization\", \"Artificial Intelligence\", \"Clinical Research\", \"Digital Health Technologies\", \"Big Data\", \"Scalability\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Algorithms\", \"Scripting\", \"Git Flow\", \"Wearables\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " 'languages': \"['English', 'Kuanyama', 'Chechen', 'Sinhalese', 'Mongolian']\"},\n", + " {'company_id': '14',\n", + " 'job_title': 'embedded software/firmware engineer',\n", + " 'location': 'Switzerland',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.antal.com',\n", + " 'jobdescription_embedded': '[[-3.64791125e-01 2.35604301e-01 4.71969485e-01 1.80554297e-02\\n5.39171696e-01 -1.95542082e-01 -1.78875089e-01 2.10245162e-01\\n-1.87526606e-02 -3.44100654e-01 -1.69030115e-01 -2.17811584e-01\\n-7.94864744e-02 1.36119023e-01 1.77058026e-01 4.93197948e-01\\n3.49765152e-01 -2.59339921e-02 -2.01735198e-01 4.24154550e-01\\n1.24527872e-01 -7.76181445e-02 7.38352463e-02 7.81326652e-01\\n2.76699573e-01 -6.76936051e-03 1.69829819e-02 2.52978485e-02\\n-9.39062461e-02 -8.16924348e-02 3.74709517e-01 -2.59687360e-02\\n-2.79702991e-01 -2.96822965e-01 1.57859370e-01 1.48010135e-01\\n-3.26411039e-01 -1.31691089e-02 -2.83374116e-02 1.48213416e-01\\n-4.45471346e-01 -3.32943797e-01 9.67813134e-02 8.89158621e-02\\n-2.57128775e-01 -2.46690631e-01 2.34199077e-01 -6.46534562e-02\\n-2.39543542e-02 7.91413411e-02 -4.82465178e-01 2.92345315e-01\\n-2.96543807e-01 -9.89611298e-02 3.30378741e-01 5.23773730e-01\\n-2.27322578e-02 -5.62816918e-01 -2.04089403e-01 -2.65341461e-01\\n-2.97716167e-02 -1.46188423e-01 1.24639638e-01 -3.02302629e-01\\n4.85514790e-01 -2.74156388e-02 -3.13028395e-02 1.99635714e-01\\n-7.01019764e-01 -5.73716499e-02 -3.75533551e-01 1.17233291e-01\\n-3.04249436e-01 -4.05671224e-02 -2.21022367e-01 -3.49774897e-01\\n-4.11346480e-02 4.10214841e-01 4.16097194e-02 2.34134451e-01\\n-1.94619790e-01 3.38297784e-01 -2.08916053e-01 3.91594768e-01\\n3.64200711e-01 2.81927377e-01 2.50573874e-01 3.19408536e-01\\n-5.82788706e-01 4.59729731e-01 2.05597147e-01 -2.17200354e-01\\n2.24644527e-01 1.98142812e-01 3.15830946e-01 1.66756883e-01\\n4.13769111e-02 1.32586032e-01 -2.17561617e-01 1.89555228e-01\\n2.57746667e-01 -1.20111316e-01 -7.73330331e-02 -1.10954389e-01\\n-6.94281235e-02 -1.41527787e-01 -6.26145005e-02 3.03049386e-01\\n-4.30823833e-01 3.25854689e-01 1.72036618e-01 -2.60775834e-01\\n-2.20698491e-02 -5.71766734e-01 -1.73750371e-01 5.22077177e-03\\n-8.23629871e-02 1.16413958e-01 4.58252877e-01 9.59657207e-02\\n2.53067523e-01 1.23408638e-01 1.47227019e-01 1.17144191e+00\\n5.36188148e-02 -3.33091952e-02 -1.58763453e-01 4.49490339e-01\\n1.67096123e-01 -2.19588324e-01 1.13525592e-01 3.45066696e-01\\n4.14089859e-02 -1.77381247e-01 -1.94027454e-01 3.24191421e-01\\n-2.04244763e-01 -2.24161848e-01 -3.38162661e-01 1.76838011e-01\\n-2.93131292e-01 -6.51121557e-01 6.36142790e-01 -8.51559415e-02\\n1.53886288e-01 -4.16529179e-02 -1.06495947e-01 -3.87087502e-02\\n-1.10499009e-01 2.51830488e-01 -6.97547495e-02 8.46128315e-02\\n-2.92066216e-01 -1.15656413e-01 -2.23760560e-01 2.47007802e-01\\n-1.73662037e-01 3.38823706e-01 -1.54645890e-01 -2.14891836e-01\\n1.74105257e-01 -2.38659941e-02 -4.80715513e-01 2.80468732e-01\\n-4.75105345e-02 -2.11292580e-01 -4.34390455e-02 3.48746389e-01\\n-4.77052592e-02 2.12685153e-01 2.60436743e-01 -2.15491682e-01\\n3.81169289e-01 3.74803729e-02 1.33300751e-01 -1.37486354e-01\\n2.91646391e-01 -2.51659662e-01 9.17749256e-02 1.21794060e-01\\n-6.59509897e-01 4.40940410e-01 -2.82989778e-02 -1.07554980e-01\\n-2.60973368e-02 -1.43032735e-02 4.20168191e-01 -2.85492688e-01\\n-2.28034958e-01 -2.54231811e-01 -4.11637813e-01 -3.77540737e-01\\n-2.10496932e-01 8.53881389e-02 3.82713705e-01 -3.39705139e-01\\n-3.47815640e-02 1.08030789e-01 -5.94337344e-01 -8.31927359e-02\\n2.70938396e-01 2.18442917e-01 1.44420415e-01 5.16160652e-02\\n-1.06285192e-01 -5.35475194e-01 -1.40805012e-02 -4.62304980e-01\\n-4.17955041e-01 -6.15397887e-03 -1.70068830e-01 2.69155242e-02\\n1.80623353e-01 -2.42532603e-02 -4.26040255e-02 -8.92019048e-02\\n-4.02105749e-01 -4.63952422e-02 2.84386873e-01 1.57545991e-02\\n2.75238752e-01 -8.57670754e-02 -2.28241533e-01 7.07333148e-01\\n-2.95586854e-01 5.98573148e-01 2.79355217e-02 -8.71396542e-01\\n5.84364712e-01 3.04037482e-01 -1.80043895e-02 -4.33340430e-01\\n6.37233734e-01 -5.10810912e-01 -5.54693341e-02 2.01369867e-01\\n-2.41152242e-01 -9.65440571e-02 3.23653370e-01 -2.60332078e-01\\n-3.75449836e-01 8.57118547e-01 4.70661521e-02 9.50019658e-02\\n3.50469798e-01 -3.41083735e-01 -2.59167492e-01 -1.26558661e-01\\n-6.34051040e-02 -2.65085310e-01 -5.88242888e-01 1.50522202e-01\\n-6.87381774e-02 -4.26958680e-01 -1.99438125e-01 -5.35355985e-01\\n-9.78816971e-02 -4.08903152e-01 -2.22858325e-01 1.72086492e-01\\n6.13049604e-02 8.36960301e-02 -3.99574079e-02 -1.40567556e-01\\n-2.83527039e-02 -6.51600599e-01 -5.45189455e-02 7.85852596e-02\\n5.25270820e-01 1.74011379e-01 1.72430098e-01 2.93439291e-02\\n1.36748523e-01 4.80525970e-01 -3.70947689e-01 -2.50130534e-01\\n1.64340630e-01 1.36160016e-01 -1.25343725e-01 -1.15397930e-01\\n2.54835218e-01 3.36347669e-01 -2.71531314e-01 -8.37729499e-02\\n-1.91104949e-01 2.74278492e-01 3.75206381e-01 -2.04160780e-01\\n-2.46981725e-01 -2.73268789e-01 -6.22625044e-03 2.75074035e-01\\n-5.02475977e-01 -2.28935644e-01 5.32174706e-01 2.17201978e-01\\n4.91102003e-02 1.27877802e-01 3.58378798e-01 -1.67164266e-01\\n-2.79318333e-01 -1.31189883e-01 1.36779010e-01 2.89653212e-01\\n6.61323592e-02 5.78654408e-02 -4.34680246e-02 -5.15647292e-01\\n-3.34313536e+00 -5.46008795e-02 7.30754882e-02 -2.01251745e-01\\n2.90413469e-01 -1.77599207e-01 4.68406919e-03 7.46912509e-02\\n-2.67813921e-01 1.84897948e-02 -1.79881334e-01 3.49999929e-04\\n4.90640998e-02 9.76923928e-02 1.10631481e-01 8.83703381e-02\\n-3.25021595e-02 -3.80333334e-01 9.07407328e-02 2.02639967e-01\\n-6.06642254e-02 -9.02524471e-01 5.56019172e-02 -1.62730202e-01\\n1.98041171e-01 4.52244990e-02 -5.20203888e-01 -1.27515182e-01\\n-2.26453274e-01 -2.43177757e-01 4.83020283e-02 -2.16109037e-01\\n-1.32175878e-01 2.95788825e-01 1.62850961e-01 -8.90884250e-02\\n1.70704797e-01 -3.01534265e-01 -1.26053318e-01 -4.65877444e-01\\n1.22969054e-01 -6.24981284e-01 1.65784553e-01 4.09066565e-02\\n6.00946248e-01 -2.53662586e-01 2.70010531e-01 2.85671949e-01\\n1.52007133e-01 2.53397733e-01 -4.14942112e-03 1.12415869e-02\\n-2.34860659e-01 -2.93641299e-01 -7.46302912e-03 -2.67054766e-01\\n4.68548328e-01 3.86909992e-01 -1.40341431e-01 4.08606650e-03\\n3.60926241e-02 -2.11371869e-01 -5.50354898e-01 -5.06459236e-01\\n-2.02450991e-01 2.88642123e-02 -8.78647625e-01 -4.64969933e-01\\n-3.51625420e-02 -1.62609950e-01 -1.29603446e-01 6.80186093e-01\\n-2.01313734e-01 -4.05100554e-01 1.70283336e-02 -5.35018444e-01\\n2.78037488e-01 -2.02503428e-01 -1.00079224e-01 -1.61996409e-01\\n-2.38131851e-01 -4.50711489e-01 2.25677952e-01 -1.16374418e-02\\n-1.65084079e-01 -8.21192339e-02 1.07194729e-01 -3.79558057e-01\\n-1.83476329e-01 -4.14865226e-01 4.33671355e-01 1.02420591e-01\\n3.24726611e-01 1.28081227e-02 3.48313212e-01 -4.80173640e-02\\n2.94158936e-01 2.81195521e-01 2.21415833e-02 -5.42729557e-01\\n1.19832054e-01 6.68813065e-02 4.17509675e-01 -2.63057798e-01\\n-2.00049505e-02 1.85530022e-01 -1.52386546e-01 -1.58402428e-01\\n4.40607548e-01 -2.23500691e-02 5.51824085e-02 -1.79818749e-01\\n2.78823793e-01 -5.07209659e-01 -1.83919281e-01 4.42895107e-02\\n2.28322297e-01 8.40136409e-01 8.45169649e-02 -4.57175314e-01\\n-2.78004467e-01 5.26588440e-01 5.51684387e-02 -6.05853684e-02\\n-1.52528778e-01 2.09479734e-01 -3.58484238e-01 2.61499971e-01\\n-6.80858642e-02 -3.32794011e-01 -3.35048944e-01 1.02719832e-02\\n-1.10941857e-01 2.32828438e-01 2.20066667e-01 1.50008395e-01\\n-2.55275756e-01 -3.75610352e-01 -1.10558413e-01 1.83674082e-01\\n3.45636994e-01 2.62577981e-01 3.29427481e-01 -3.69617909e-01\\n1.38434857e-01 3.32432240e-01 -2.56357580e-01 3.64700049e-01\\n-2.37891063e-01 1.13808297e-01 -5.58180869e-01 -2.80966520e-01\\n-2.97422618e-01 -2.46953353e-01 -1.54747367e-02 4.95640785e-01\\n1.77563995e-01 -1.13821574e-01 8.58437493e-02 -6.06129885e-01\\n4.23206568e-01 5.97570427e-02 2.81295955e-01 8.56520385e-02\\n7.01912940e-02 6.65721357e-01 1.66187529e-02 -1.49368435e-01\\n-1.16318084e-01 5.91099449e-02 -2.21771628e-01 -3.53031844e-01\\n4.78891097e-02 -4.19352978e-01 -1.09088004e-01 3.77682149e-01\\n1.55587420e-01 -1.93801254e-01 -1.63861081e-01 2.98489332e-01\\n2.16386795e-01 -2.44277984e-01 -2.15445533e-01 5.12141958e-02\\n3.75137776e-01 -1.76006332e-02 1.27966985e-01 -4.97797996e-01\\n2.77306996e-02 -9.18098539e-02 1.55780256e-01 5.15166521e-01\\n2.50645280e-01 4.53402624e-02 -2.65412442e-02 -3.39529723e-01\\n4.26319838e-01 -1.42690286e-01 -1.42111734e-01 -2.15582728e-01\\n3.27062085e-02 -2.00629905e-01 -2.57929087e-01 6.50709569e-02\\n-5.65126985e-02 -1.11280672e-01 5.25511615e-02 1.78325810e-02\\n1.39967546e-01 -2.07116641e-02 -4.50793356e-01 -2.80332595e-01\\n-3.37491691e-01 9.51775014e-02 1.94402058e-02 -4.86491710e-01\\n3.86212990e-02 2.44013518e-02 -5.91827631e-01 2.47493148e-01\\n-1.22304887e-01 2.32703369e-02 2.36864522e-01 1.33344457e-01\\n-3.38937163e-01 -1.56011596e-01 4.76737395e-02 1.27272800e-01\\n-2.25653291e-01 -1.56236455e-01 -6.13449365e-02 -1.09205437e+00\\n2.28027746e-01 1.31659552e-01 -1.59410492e-01 5.66255562e-02\\n3.45505401e-02 -9.07428682e-01 9.55406427e-02 -1.56660125e-01\\n7.23138405e-03 -1.19403519e-01 -2.92131990e-01 -4.01407182e-01\\n2.27075513e-03 7.92753994e-02 -5.27228378e-02 4.69894409e-01\\n-5.17954051e-01 3.28359812e-01 -1.23549186e-01 3.52969617e-02\\n-1.00949869e-01 -1.73653051e-01 2.24451438e-01 -3.16369206e-01\\n-3.86286944e-01 -2.02732682e-01 -3.79412293e-01 -3.92115474e-01\\n-2.49532700e-01 -3.22627902e-01 -7.05890730e-02 8.74299332e-02\\n4.15712506e-01 8.49248618e-02 -1.28914982e-01 -2.14727625e-01\\n8.35352484e-03 -1.42755434e-01 5.66393733e-02 -3.80314767e-01\\n1.74663678e-01 -2.60119289e-01 1.57236338e-01 3.46950851e-02\\n2.06142306e-01 -3.31708431e-01 5.31299591e-01 -2.05803514e-01\\n-4.97041851e-01 -1.38908640e-01 1.71897665e-01 1.01429299e-01\\n2.12537482e-01 -4.37504202e-01 8.72181579e-02 1.49414599e-01\\n1.12858921e-01 -7.67312720e-02 3.58365387e-01 -2.37846494e-01\\n-1.08611383e-01 1.81403652e-01 -4.76249486e-01 -5.53963589e-04\\n7.58428752e-01 1.96628690e-01 1.85369700e-01 1.28715515e-01\\n1.21186852e-01 3.03177267e-01 4.32577640e-01 -1.19893290e-01\\n2.09683739e-02 2.73924232e-01 2.42411122e-01 -4.06206608e-01\\n-3.08002979e-01 -4.03732061e-01 -6.52345940e-02 -2.65617430e-01\\n6.23482227e-01 2.86615521e-01 -1.90809757e-01 -3.16277117e-01\\n-9.07452255e-02 -1.07521392e-01 2.83839643e-01 -1.48190066e-01\\n3.70372161e-02 -6.61671460e-02 4.67778981e-01 -1.61320325e-02\\n3.17492425e-01 7.47802496e-01 -2.67808139e-01 -4.54898447e-01\\n-1.72479257e-01 2.49651611e-01 1.90785646e-01 2.80154556e-01\\n-1.24018721e-01 3.44870448e-01 1.14936061e-01 1.82741597e-01\\n-2.53308594e-01 1.16038106e-01 5.57263605e-02 9.79948193e-02\\n1.50040448e-01 1.30425468e-01 2.80519634e-01 5.47770977e-01\\n1.67853937e-01 5.41124701e-01 3.05330724e-01 7.01658875e-02\\n4.19069558e-01 5.33296168e-01 4.63278562e-01 1.45932019e-01\\n1.45088509e-01 2.37471566e-01 3.90937692e-03 -8.01691487e-02\\n2.31609270e-01 3.28150958e-01 1.81107163e-01 9.41149235e-01\\n4.35359657e-01 4.70433891e-01 8.43372464e-01 -6.80016160e-01\\n-3.62162322e-01 3.21650431e-02 4.81427163e-01 -5.80983341e-01\\n-8.33320618e-03 1.29964262e-01 -9.74154845e-02 3.47607881e-01\\n-3.73378724e-01 -9.60199013e-02 -6.29413277e-02 -5.66087924e-02\\n-5.53391781e-03 -2.07098201e-01 -1.61113337e-01 3.62931676e-02\\n-2.87070781e-01 -1.62600532e-01 -2.44764224e-01 -3.04961473e-01\\n-3.28808129e-01 -1.51042156e-02 -1.02757074e-01 -1.22907618e-02\\n-6.42017648e-02 -2.89272368e-01 -1.34779438e-01 -6.94349334e-02\\n3.34950179e-01 -1.93417281e-01 -1.80985034e-01 -1.99990347e-01\\n3.12360048e-01 2.24716127e-01 6.55642629e-01 1.03447102e-01\\n2.24230558e-01 -2.07486674e-01 -1.59152329e-01 -7.06698969e-02\\n1.18833000e-03 1.16950691e-01 1.04760244e-01 5.11718571e-01\\n-3.77967775e-01 -1.66329905e-01 1.79808214e-01 3.64884645e-01\\n-1.48240611e-01 -1.93344921e-01 -9.90551487e-02 1.06167823e-01\\n-1.30384371e-01 8.49514157e-02 -2.34869733e-01 -5.64724095e-02\\n-1.10463530e-01 -7.99866796e-01 4.32592481e-01 -3.19351882e-01\\n-1.02637276e-01 7.32917339e-02 5.79045475e-01 4.04622257e-01\\n-1.15156144e-01 -3.27799134e-02 -5.44133671e-02 3.22486907e-01\\n1.10216752e-01 2.71607101e-01 -2.96800196e-01 -6.59111664e-02\\n-3.02919269e-01 1.93430617e-01 -2.42365509e-01 2.85773367e-01\\n1.36051074e-01 4.65251714e-01 9.48795527e-02 7.42295086e-02\\n2.18338072e-01 -1.89849198e-01 -2.88973838e-01 -2.71376193e-01\\n-2.51758605e-01 -1.18613914e-01 -5.95018119e-02 -9.49127972e-02\\n3.36745530e-01 -2.18701467e-01 -5.79470061e-02 -2.03072309e-01\\n8.33750702e-03 -3.00823629e-01 -1.42008454e-01 -3.06405649e-02]]',\n", + " 'job_description': 'Our client is a technology company with outstanding competences in data collection systems, radio design and wireless sensor networks. Acknowledged innovator and leading player in the Internet of Things domain, the Company offers a compelling portfolio of platforms delivering consolidated technological excellence for any kinds of Smart City and IoT projects. To support its growth path, is looking for a: EMBEDDED SOFTWARE/FIRMWARE ENGINEER The candidate will be part of the embedded software design team, defining the design specification, coding and testing embedded SW for complex low power, RF IoT devices. Main Responsibilities Develop low level drivers, protocol stacks and low power applications software for both, RTOS and embedded Linux based platforms, promote new technologies, proactively looking at innovative protocols and solution; Qualifications and experiences University degree in Computer Science or Electronics Engineering or equivalent discipline; Proven experience in architecture definition and software development in C/C++ for embedded applications; Knowledge of IoT technologies and application protocols for embedded systems - such as CoAP, MQTT, LWM2M and data model Good knowledge of microcontrollers, in particular Cortex-M microcontrollers and peripherals; Experience with embedded Linux platforms, such as RPI and BBB; Experience with radio networking protocols such as 802.15.4, 6LoWPAN, IPv6, TCP-IP, ZigBee, Bluetooth; Good knowledge of low power design techniques; Experience in debugging and validating complex embedded systems and protocol stack; Ability to read schematics and debug at PCB level using typical lab equipment if needed; Knowledge and experience on software engineering methodologies: lifecycle, quality assurance and testing techniques, continuous integration and continuous deployment technologies, Agile scrum methodology; Skills required Knowledge of RF and IoT platforms; Knowledge of embedded OS and embedded Linux platforms; Flexible, able to prioritise activities and managing time efficiently, meeting the deadlines; Problem solving approach and ability to manage pressure; Able to work cross-functionally in dynamic and international environments; Proficient understanding of code versioning tools, such as Git; Effective communication in English (both written & verbal - including technical documentation); We offer: The opportunity to work in a highly dynamic multinational environment, interacting with different cultures and nationalities; The unique experience of cooperating on very innovative technological projects, sharing knowledge and expertise with high talented professionals; Swiss Labour contract;',\n", + " 'soft_skills': '[\"Cooperation\", \"Professionalism\", \"Proactivity\", \"Management\", \"Problem Solving\", \"Communications\", \"Innovation\", \"Quality Assurance\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Enterprise Application Software\", \"Interactivity\", \"Computer Science\", \"Data Modeling\", \"Continuous Integration\", \"Survey Data Collection\", \"Scholastic READ 180\", \"Shared Whois Project\", \"Cortex M\", \"IPv6\", \"Electronic Engineering\", \"Linux\", \"Message Queuing Telemetry Transport (MQTT)\", \"Wireless Application Protocol (WAP)\", \"Design Specifications\", \"Levelling\", \"Agile Edge Technologies\", \"Scrum (Software Development)\", \"TCP/IP\", \"Wireless Sensor Networks\", \"Embedding\", \"Software Engineering\", \"Plant Design Systems\", \"Consolidation\", \"C (Programming Language)\", \"6LoWPAN\", \"Embedded Systems\", \"Pathing\", \"Firmware\", \"Technical Documentation\", \"Power Supply Design\", \"Software Design\", \"Trunked Radio Systems\", \"Software Development\", \"Radio Link Protocols\", \"Bluetooth\", \"Git Flow\", \"Internet Of Things (IoT)\", \"Embedded Software\", \"Zigbee\", \"Debugging\", \"Protocol Stack\"]',\n", + " 'languages': \"['English', 'South Ndebele', 'Tsonga', 'Ganda', 'Swedish']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer - .net developer w/m',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.01657408e-01 2.30316505e-01 5.26042521e-01 -8.72600079e-02\\n4.53993380e-01 -1.98693052e-01 -4.32159677e-02 4.65722531e-01\\n-1.48710459e-01 -3.88769388e-01 -1.91301897e-01 -3.22442859e-01\\n-7.62060061e-02 1.10869899e-01 2.56091684e-01 3.47763777e-01\\n3.33220124e-01 1.18078180e-01 -2.80989975e-01 2.60545522e-01\\n1.94182679e-01 2.88035795e-02 8.21112022e-02 7.07120717e-01\\n3.54223788e-01 4.11188267e-02 -8.30323398e-02 -8.85845050e-02\\n-2.78669566e-01 -2.18544230e-01 3.54387879e-01 -1.13285892e-01\\n9.43706837e-03 -3.22178423e-01 3.10933106e-02 2.85002198e-02\\n-1.44600525e-01 -4.73411791e-02 5.77373095e-02 7.23253414e-02\\n-5.18574059e-01 -2.85762548e-01 9.77040604e-02 1.04219258e-01\\n-1.26700684e-01 -2.94646025e-01 1.31777346e-01 5.10048755e-02\\n-7.62825226e-03 1.76417325e-02 -6.26534224e-01 3.51388305e-01\\n-1.37516931e-01 -1.61844820e-01 2.68187255e-01 5.19277930e-01\\n9.07676667e-02 -4.50406134e-01 -3.79254997e-01 -2.19055891e-01\\n1.39114901e-01 -6.55782670e-02 1.14454091e-01 -1.67829424e-01\\n4.26876605e-01 4.10379702e-03 -1.53040802e-02 3.15018803e-01\\n-6.47643447e-01 -6.51689023e-02 -1.40244767e-01 -9.32807848e-02\\n-3.80440384e-01 -6.90393150e-02 -1.61267996e-01 -1.86128616e-01\\n-1.57983258e-01 3.76804471e-01 2.10373942e-02 6.85177967e-02\\n-1.69157624e-01 2.39717484e-01 -1.01084098e-01 1.99774280e-01\\n2.34521732e-01 3.20394963e-01 1.94464326e-01 3.26440394e-01\\n-4.34007525e-01 4.29572970e-01 1.73872471e-01 -3.14605385e-01\\n2.68397987e-01 8.12376440e-02 4.69510794e-01 -6.63764775e-04\\n-2.89315172e-02 5.91853261e-02 -1.55917436e-01 1.95396334e-01\\n1.83167130e-01 -2.79840797e-01 5.58342924e-03 -4.80667055e-02\\n-1.07893668e-01 7.28609413e-02 -3.61531787e-02 2.64011979e-01\\n-3.36755455e-01 3.47040176e-01 1.94233999e-01 -1.80412635e-01\\n-1.41463339e-01 -6.26322746e-01 -6.01723269e-02 4.15914170e-02\\n8.80032256e-02 1.40708074e-01 3.84188771e-01 1.16005167e-01\\n2.81707048e-01 -7.74355186e-03 2.41218403e-01 9.65571523e-01\\n-4.74150740e-02 1.07582688e-01 -2.76836783e-01 4.63726968e-01\\n1.14230432e-01 -2.82994151e-01 1.59000471e-01 2.51056403e-01\\n8.21049288e-02 -5.54673411e-02 -1.60506502e-01 3.05519760e-01\\n-1.55198360e-02 -1.57149702e-01 -2.81945586e-01 7.26208910e-02\\n-2.24192902e-01 -4.12770182e-01 5.26985168e-01 1.16957948e-01\\n1.21497825e-01 -1.62992656e-01 -6.64501591e-03 -1.71597436e-01\\n-7.73010999e-02 2.91583210e-01 -5.16703166e-03 1.44726664e-01\\n-3.10260117e-01 -1.66110381e-01 -1.79787949e-01 2.85868943e-01\\n-8.10527653e-02 1.28754824e-01 -5.21859489e-02 -1.62502185e-01\\n3.78315240e-01 7.79769644e-02 -3.39269757e-01 2.55399853e-01\\n-1.87735632e-02 -1.86854005e-01 -8.24888498e-02 1.77755430e-01\\n-1.45436704e-01 1.77360132e-01 -2.99099693e-03 -1.59789100e-01\\n4.00778800e-01 1.08157024e-01 2.41037488e-01 -8.32973868e-02\\n3.35556924e-01 -2.23514304e-01 1.19611971e-01 1.30593076e-01\\n-6.25571430e-01 3.50767910e-01 -4.21801992e-02 -2.29649469e-01\\n9.87343118e-02 8.38403329e-02 4.01858002e-01 -2.06678331e-01\\n1.82592683e-02 -2.28926122e-01 -3.76924276e-01 -3.97141963e-01\\n-2.18826801e-01 -2.89369700e-03 3.97470921e-01 -4.26047057e-01\\n-8.48829001e-02 1.33379266e-01 -4.62853640e-01 -5.70487529e-02\\n1.54725134e-01 2.35626012e-01 -3.24324286e-03 7.60859177e-02\\n-1.41524315e-01 -5.09381235e-01 -3.49010644e-03 -4.50809926e-01\\n-4.86829937e-01 5.03723435e-02 -2.36261696e-01 2.75848210e-01\\n7.04765841e-02 -5.20541742e-02 -1.09029301e-01 1.82467371e-01\\n-2.19011903e-01 2.38632932e-02 1.98784277e-01 1.13973178e-01\\n3.25975686e-01 -4.55042906e-03 -4.06870842e-01 5.26638925e-01\\n-2.47084171e-01 4.39072043e-01 1.11540489e-01 -8.62606168e-01\\n5.28003752e-01 2.48369306e-01 3.06366738e-02 -4.21203971e-01\\n6.95800781e-01 -2.86491513e-01 4.32357490e-02 1.74495146e-01\\n-4.44431126e-01 -2.48281032e-01 2.98005164e-01 -1.40056849e-01\\n-2.04928413e-01 6.21417522e-01 1.27516091e-01 -4.95990328e-02\\n1.78120956e-01 -2.57954895e-01 -1.56515077e-01 1.92018244e-02\\n-8.06622505e-02 -3.19092661e-01 -4.05395478e-01 3.80146466e-02\\n-1.01809837e-01 -4.17731792e-01 -2.30812058e-01 -4.69049394e-01\\n-1.55004919e-01 -3.93153608e-01 -2.32734516e-01 4.07873452e-01\\n1.60260320e-01 8.18269253e-02 2.64743790e-02 -1.81194380e-04\\n-1.10518225e-01 -4.83779132e-01 -6.53129295e-02 3.62274945e-02\\n5.01109958e-01 2.79971659e-01 8.92833024e-02 2.73971411e-04\\n-1.14397459e-01 4.87327367e-01 -1.84871808e-01 -2.12629586e-01\\n1.37901425e-01 1.89772755e-01 9.74273309e-03 -8.47181585e-03\\n1.16365952e-02 3.24117631e-01 -1.43951297e-01 -3.57133821e-02\\n-1.18272565e-01 7.76449144e-02 3.41947585e-01 -2.78005321e-02\\n-2.86080629e-01 -1.93823889e-01 8.93855281e-03 3.27466756e-01\\n-5.47079623e-01 -1.95203200e-01 5.30026436e-01 2.14526981e-01\\n1.23824030e-01 2.05431223e-01 2.03975216e-01 -1.29122138e-01\\n-1.45172358e-01 -2.84640193e-01 1.59101963e-01 1.02967583e-01\\n1.81799874e-01 5.56185506e-02 -9.27492827e-02 -5.30307472e-01\\n-3.47864795e+00 -2.21044689e-01 7.52913281e-02 -3.34521145e-01\\n1.27890781e-01 -1.61596462e-01 1.15579637e-02 -7.93188959e-02\\n-2.88460523e-01 1.16560817e-01 -2.06608340e-01 -1.59368202e-01\\n1.86076507e-01 2.10269094e-01 1.30117182e-02 2.95698315e-01\\n2.01134309e-02 -1.17637962e-01 -1.05754500e-02 2.47143000e-01\\n-2.29296297e-01 -7.16016412e-01 2.09988266e-01 -1.09744065e-01\\n1.80342078e-01 3.02353233e-01 -4.32897776e-01 -1.82762668e-01\\n-1.96550995e-01 -2.67577052e-01 1.68055788e-01 -2.68152297e-01\\n-7.09383935e-02 3.81940663e-01 1.73063174e-01 -8.92019570e-02\\n1.43478513e-01 -3.20594817e-01 -3.08055058e-02 -4.85928386e-01\\n1.94170386e-01 -6.12210691e-01 -5.52832037e-02 -2.24623755e-02\\n6.88734412e-01 -3.89870226e-01 2.27409959e-01 1.69976309e-01\\n2.13257432e-01 2.59818673e-01 -3.58176641e-02 -9.12822559e-02\\n-2.17227474e-01 -3.35270166e-01 -3.78949642e-02 -2.29675874e-01\\n4.11398321e-01 6.01249933e-01 -1.26634508e-01 7.15008527e-02\\n1.40247047e-02 -1.86520129e-01 -3.93612623e-01 -3.71801317e-01\\n-2.04945609e-01 -1.79050490e-01 -6.16498411e-01 -3.83029193e-01\\n-1.35347635e-01 -1.33216962e-01 -1.25852257e-01 6.14490092e-01\\n-2.44769752e-01 -4.28459883e-01 5.69914617e-02 -5.85926533e-01\\n1.43331140e-01 -2.82705218e-01 -6.41627163e-02 -1.94557354e-01\\n-3.09480935e-01 -5.03614187e-01 9.93304178e-02 5.06230630e-02\\n-1.18170395e-01 -1.20080650e-01 9.96291414e-02 -3.15063119e-01\\n-2.71412045e-01 -4.22720760e-01 4.33024794e-01 1.73821226e-01\\n3.42947215e-01 1.56143218e-01 2.25925952e-01 2.15346172e-01\\n2.74255693e-01 -1.82794109e-01 1.23248592e-01 -4.69160557e-01\\n1.29776895e-01 6.87053800e-02 4.86953706e-01 -2.07567602e-01\\n-3.05376090e-02 1.39112726e-01 -1.63504586e-01 -1.01614945e-01\\n3.60747784e-01 2.60422993e-02 -3.13207367e-03 -9.00996253e-02\\n3.19215596e-01 -5.20843327e-01 -1.69356793e-01 8.80354941e-02\\n-7.25154653e-02 5.89414954e-01 -5.49721196e-02 -3.76794934e-01\\n-2.66839206e-01 4.94782120e-01 -5.85391708e-02 -1.56812772e-01\\n-1.05907381e-01 2.18588755e-01 -1.65321618e-01 1.30275801e-01\\n-2.15784367e-02 -2.94437289e-01 -3.67575526e-01 -4.00124863e-02\\n-5.17578758e-02 1.65222615e-01 2.54662424e-01 5.76269068e-02\\n-2.38845591e-02 -3.60036224e-01 -1.58335660e-02 9.85415876e-02\\n3.61271858e-01 4.21312064e-01 1.17894366e-01 -1.05998643e-01\\n5.57792410e-02 2.79089570e-01 -1.48224354e-01 2.46851549e-01\\n-1.94381893e-01 1.50626488e-02 -4.15307850e-01 -3.39877933e-01\\n-1.93253696e-01 -3.39001805e-01 2.73951888e-02 2.59762317e-01\\n2.18290761e-01 1.39832934e-02 -1.97436893e-03 -4.34294939e-01\\n3.72914881e-01 -1.42825218e-02 1.90003067e-01 1.57943472e-01\\n7.91264400e-02 5.56112766e-01 1.52871171e-02 1.07662287e-02\\n-1.51287407e-01 -5.66689298e-02 -1.49415433e-01 -1.85012564e-01\\n8.68122429e-02 -2.75461316e-01 -7.65203536e-02 4.16148633e-01\\n8.19613114e-02 -4.18476760e-01 -5.35611957e-02 3.66258353e-01\\n1.63969565e-02 -2.66350508e-01 -1.59743309e-01 1.54506087e-01\\n2.45470434e-01 1.17358617e-01 1.99685410e-01 -4.57636237e-01\\n-8.44222903e-02 8.59304816e-02 8.80188029e-03 4.32779789e-01\\n9.22154933e-02 1.69989437e-01 -7.78091177e-02 -3.54519725e-01\\n3.06295246e-01 -2.19712734e-01 -9.55667049e-02 -5.89797124e-02\\n1.66751444e-02 -1.22725308e-01 -4.78102893e-01 1.26251578e-02\\n-1.00458845e-01 -2.04753175e-01 -3.46274227e-02 7.36821517e-02\\n1.83986962e-01 6.98039215e-03 -4.16574866e-01 -2.69577563e-01\\n-3.43822837e-01 -4.97456305e-02 -1.73592614e-03 -3.06948841e-01\\n2.68069445e-03 -6.63644001e-02 -6.32181644e-01 2.35883236e-01\\n-2.22123325e-01 -2.98697669e-02 1.35699525e-01 3.24799083e-02\\n-4.05016124e-01 -4.21436615e-02 1.90183878e-01 1.27946869e-01\\n-2.61944354e-01 -2.62508035e-01 1.52523324e-01 -1.00188899e+00\\n9.55086276e-02 -2.13378090e-02 -8.59925449e-02 3.44850682e-03\\n-6.64010197e-02 -5.69378734e-01 1.08484477e-01 -3.78643245e-01\\n-7.40260854e-02 -2.36359835e-02 -1.77935869e-01 -3.82951349e-01\\n6.66894987e-02 -7.95539990e-02 -2.78036922e-01 4.15881753e-01\\n-3.99640292e-01 3.00654590e-01 -1.09746747e-01 5.15957139e-02\\n-3.69774527e-03 -2.46386111e-01 1.61697209e-01 -2.61516273e-01\\n-4.01421487e-01 -7.71443620e-02 -3.94240409e-01 -2.76821703e-01\\n3.57873850e-02 -1.53610215e-01 -1.86638400e-01 5.67276217e-02\\n3.73638779e-01 2.47095488e-02 -1.59127712e-01 -2.94166416e-01\\n9.39259678e-02 -4.03371543e-01 1.43163174e-01 -1.32697701e-01\\n-8.23514313e-02 -4.85573411e-02 1.66207984e-01 4.88710515e-02\\n2.04997882e-02 -3.80417973e-01 4.43856895e-01 -2.50555933e-01\\n-3.48599523e-01 9.30380728e-03 3.47732529e-02 1.22084141e-01\\n3.03717852e-01 -6.10043049e-01 8.09883233e-03 3.31897169e-01\\n1.84408203e-01 1.27481028e-01 2.00592205e-01 -6.08587563e-02\\n-2.08650157e-01 3.51026207e-01 -4.32103574e-01 5.26391529e-02\\n7.39688993e-01 1.03679873e-01 4.80277278e-02 2.23765269e-01\\n2.68755585e-01 2.79728711e-01 4.53116268e-01 -6.14792705e-02\\n-1.08761452e-01 2.46584654e-01 4.00902778e-02 -5.60584128e-01\\n-8.19079801e-02 -1.13639809e-01 -2.35606298e-01 -4.45130467e-01\\n5.28547227e-01 4.19264525e-01 -3.58696282e-01 -2.11495176e-01\\n-1.49978608e-01 -1.95933655e-02 2.14915201e-01 -1.91650569e-01\\n2.85303332e-02 -1.09086350e-01 5.22689521e-01 2.33817622e-02\\n3.44725966e-01 5.76641798e-01 -1.00705497e-01 -4.19857830e-01\\n-1.46472007e-01 7.99509585e-02 1.97171360e-01 3.88619274e-01\\n-5.48314080e-02 2.21585870e-01 -4.78931982e-03 1.48326591e-01\\n-4.92946617e-02 1.34689555e-01 1.30722765e-02 3.48390117e-02\\n1.78639799e-01 4.74532433e-02 3.11515361e-01 4.28870976e-01\\n2.12452784e-01 5.22460938e-01 2.77625203e-01 1.18570812e-01\\n4.00064975e-01 6.08640611e-01 3.78539920e-01 1.62183523e-01\\n-6.17025681e-02 1.15506850e-01 -3.20145972e-02 -1.32013381e-01\\n3.20725799e-01 2.34900519e-01 1.06777489e-01 8.96721423e-01\\n4.49434876e-01 3.10035318e-01 8.22513819e-01 -5.25242031e-01\\n-4.49845880e-01 8.07984248e-02 4.30306405e-01 -3.32671404e-01\\n-9.97834131e-02 1.33153394e-01 -2.08684355e-01 2.31077909e-01\\n-4.54648018e-01 -9.72831920e-02 -4.57446463e-02 -3.57262604e-02\\n7.16367364e-02 -1.18041195e-01 -3.09559584e-01 -3.28844264e-02\\n-1.96422726e-01 -1.37569100e-01 -4.35113788e-01 -1.13557264e-01\\n-3.07073414e-01 -1.60342231e-01 -1.84387580e-01 -1.41903803e-01\\n-4.31750268e-02 -3.27618837e-01 -1.70762718e-01 6.36838377e-02\\n3.12531412e-01 -5.77795990e-02 -5.97471707e-02 -2.34154075e-01\\n2.49766469e-01 2.59165406e-01 5.31386673e-01 -3.04018054e-02\\n1.72598854e-01 -1.49280891e-01 -2.80146003e-01 2.45943945e-02\\n1.28066838e-01 4.25493345e-02 1.01034142e-01 4.06463742e-01\\n-3.15971553e-01 -1.21132933e-01 1.78289935e-01 4.70815331e-01\\n-3.65720093e-01 -1.82724502e-02 -5.54929627e-03 2.99797535e-01\\n1.42836750e-01 6.46017864e-02 -2.51224697e-01 1.06767423e-01\\n-3.01643193e-01 -5.51688313e-01 3.36228400e-01 -1.55969128e-01\\n-5.94274607e-03 9.92349982e-02 3.02237481e-01 2.23221362e-01\\n-1.66063339e-01 -6.45069033e-03 -2.30027214e-02 3.03805888e-01\\n1.61926821e-01 3.61758471e-01 -2.70284951e-01 -1.81942612e-01\\n-2.39786342e-01 1.87577620e-01 -2.68125266e-01 1.32000387e-01\\n-1.61910027e-01 3.24789643e-01 4.35116850e-02 1.38164937e-01\\n1.37695134e-01 4.01956551e-02 -2.39966556e-01 -2.63764739e-01\\n-3.34358811e-01 -2.49595091e-01 1.14812411e-01 -1.49073293e-02\\n2.13729322e-01 -3.78666103e-01 -4.26807813e-02 -1.60440341e-01\\n-1.12145901e-01 -2.99565375e-01 6.32503927e-02 -1.10410452e-01]]',\n", + " 'job_description': 'Über unseren Kunden With already 25 000 consultants around the world and revenues of CHF. 2 Bn., our client is already the global leader in innovation and high-tech engineering consulting. In Switzerland, our client employs more than 200 consultants and aims towards large growth. We operate particularly in Life Sciences (Pharma, Biotech, and Medical Devices), Industry (Watches, MEMs), Aerospace, Automotive, Energy, Railways, Finance and Telecoms sectors. Our client deploys activities throughout Switzerland with premises in Zürich, Basel, Lausanne and Geneva. Ihr Aufgabenbereich Detailed requirements analysis, designing, and developing code. Architecture discussion. Coding, testing, debugging, and documenting programs. Revising and updating programs. Integration and deployment scripts. Participating in production support including investigation and fixing bugs. Ihr Profil Education level: Master or Engineering Degree in Software Engineering (EPFL, ETH, HES or equivalent). Requirements: Minimum 7 years of experience in .NET development. Minimum of 4 years of relevant experience with WPF. Proven experience in UI web technologies: HTML, CSS, Javascript. Professional use of programming languages: .NET / C#, ASP.NET, Web Services (WCF), MVC patterns and Web API. Experience with traditional RDBMS databases, such as SQL Server, Oracle SQL, NoSQL. Extensive experience with a common application server (JBoss, IBM Websphere or BEA Weblogic). Microsoft Prism/ MVVM and unity/ IOC grandly appreciated. Experience with Big Data (Hadoop, Teradata) is a plus. Any experience in mobile development (Android, iOS, Xamarin) is a plus. Ability to work with Agile Methodology (Scrum, XP, TFS etc…) Key qualities: You know how to take initiative You like to work in a multidisciplinary team You value knowledge-sharing You must have strong verbal and writing communication capabilities. Ihre Chance Our client offers an exciting tailored career path for your professional and personal development within an international company. You will be accompanied from the beginning with specific coaching and mentoring programs and intensive training on innovation and management in a fast-moving and results driven environment. Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 384',\n", + " 'soft_skills': '[\"Professionalism\", \"Investigation\", \"Management\", \"Operations\", \"Integration\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"NoSQL\", \"ASP.NET\", \"KM Programming Language\", \"Micro Electro-Mechanical Systems (MEMS)\", \"Cascading Style Sheets (CSS)\", \"Life Sciences\", \"Industrialization\", \"IBM WebSphere MQ\", \"Xamarin.ios\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"High Tech Manufacturing\", \"Scrum (Software Development)\", \"Application Servers\", \"Levelling\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Web Services\", \"Medical Devices\", \"Agile Methodology\", \"Finance\", \"Mobile Application Development\", \"Wcf 4\", \"C# (Programming Language)\", \"Pathing\", \"JavaScript (Programming Language)\", \"Production Support\", \"Revisions\", \"Big Data\", \"Android Software Development\", \"SQL Server Reporting Services\", \"Requirements Analysis\", \"Scripting\", \"Prism\", \"Personality Development\", \"Web UI\", \"Application Programming Interface (API)\", \"Debugging\"]',\n", + " 'languages': \"['English', 'Scottish Gaelic', 'English', 'Wolof', 'French']\"},\n", + " {'company_id': '105',\n", + " 'job_title': 'backend engineer (golang) (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.smallpdf.com',\n", + " 'jobdescription_embedded': '[[-6.82032555e-02 2.19999552e-01 5.21439850e-01 -8.65903124e-02\\n4.72986251e-01 -2.35543504e-01 7.40684429e-03 3.84785414e-01\\n-9.16572586e-02 -4.33151186e-01 -2.31015608e-02 -4.25794780e-01\\n-7.40003288e-02 1.29385337e-01 -1.59085337e-02 3.18082511e-01\\n3.01796824e-01 1.12471402e-01 -2.60325581e-01 3.60066533e-01\\n2.34320998e-01 -5.44881001e-02 1.32510543e-01 7.39464581e-01\\n3.99427980e-01 -5.11745885e-02 -3.47075947e-02 -4.86372150e-02\\n-2.00322583e-01 -2.03341410e-01 4.41235721e-01 -2.91730203e-02\\n1.89792421e-02 -3.88810039e-01 1.20231621e-01 2.30424255e-02\\n-2.14019522e-01 -2.01827943e-01 -1.86246149e-02 2.85180360e-01\\n-4.09456432e-01 -2.63451844e-01 5.00774086e-02 -1.30556887e-02\\n-2.36729369e-01 -3.60389054e-01 9.28594247e-02 -3.36944312e-02\\n2.04566091e-01 6.44522011e-02 -4.41068619e-01 3.33315253e-01\\n-1.89480767e-01 -9.32106376e-02 3.39069217e-01 6.02033019e-01\\n-6.27382323e-02 -4.49664921e-01 -5.92020512e-01 -2.52273738e-01\\n2.74442099e-02 -8.94681364e-02 -5.12706973e-02 -3.45091015e-01\\n2.10953236e-01 8.69945064e-02 4.17328030e-02 4.15648580e-01\\n-7.45295405e-01 -1.01955377e-01 -1.28648281e-01 -1.67734891e-01\\n-3.34729582e-01 -1.22126535e-01 -1.27409026e-01 -8.46048892e-02\\n-1.79331273e-01 4.84157443e-01 2.21155271e-01 -3.54076619e-03\\n-2.13394508e-01 3.47287118e-01 -2.61354327e-01 3.80707920e-01\\n2.94055611e-01 9.92921889e-02 1.20371237e-01 2.97873318e-01\\n-4.04980421e-01 4.17991221e-01 2.39948422e-01 -3.53601456e-01\\n3.12452763e-01 9.02904794e-02 5.69881439e-01 -3.87384519e-02\\n1.00608226e-02 1.20079368e-01 -2.64361441e-01 3.58135790e-01\\n3.53445411e-01 -1.80391937e-01 6.01425245e-02 -9.68503021e-03\\n3.11035546e-03 -5.72640337e-02 1.39548540e-01 2.93708563e-01\\n-2.26172045e-01 4.57688302e-01 1.82593569e-01 -2.22622722e-01\\n-2.13219091e-01 -5.02295911e-01 -6.35024682e-02 -1.09330252e-01\\n9.16810706e-02 8.88086259e-02 2.87648469e-01 9.46028605e-02\\n1.53541446e-01 -4.63129729e-02 1.93849877e-01 8.99928749e-01\\n-8.62501636e-02 -3.11325025e-02 -3.34946662e-01 3.14263940e-01\\n7.91077688e-02 -2.47264653e-01 2.66701043e-01 2.34146401e-01\\n1.44409994e-02 -1.66711435e-01 -2.16718450e-01 3.47822666e-01\\n-9.26150158e-02 -2.09399983e-01 -3.17319870e-01 1.64231107e-01\\n-1.11368522e-01 -2.01005191e-01 4.90044355e-01 2.20915899e-01\\n1.19359367e-01 1.88962016e-02 -7.03376532e-02 -2.10913554e-01\\n-1.66466802e-01 1.20420337e-01 2.90143839e-03 9.31987241e-02\\n-2.98627317e-01 -1.98113874e-01 -2.12766320e-01 1.93617955e-01\\n-2.85072297e-01 3.64289768e-02 -3.22600119e-02 -7.49293342e-02\\n3.24392736e-01 2.83166356e-02 -2.76673794e-01 2.57301539e-01\\n7.31909834e-03 7.90333897e-02 -4.77185696e-02 3.23268801e-01\\n-1.91725507e-01 1.67315349e-01 -2.61430740e-02 -8.92599821e-02\\n6.38113976e-01 1.75565317e-01 1.10356361e-01 5.89940101e-02\\n3.02765757e-01 -1.15985081e-01 1.37043327e-01 1.62356615e-01\\n-6.17488921e-01 3.23068351e-01 -4.16052900e-02 6.24674633e-02\\n9.42560732e-02 -5.43147996e-02 2.45221615e-01 -2.48047248e-01\\n1.19298100e-01 -1.18207417e-01 -3.84562373e-01 -3.20205480e-01\\n-1.05742231e-01 -7.73098832e-03 3.62723082e-01 -4.11645085e-01\\n-2.12827474e-01 2.01173097e-01 -4.61825788e-01 -6.27744421e-02\\n2.00477794e-01 1.92224294e-01 2.11903661e-01 1.43459037e-01\\n-2.62146413e-01 -4.76770997e-01 4.39092554e-02 -4.05939907e-01\\n-3.21332365e-01 3.51062305e-02 -3.25956047e-01 2.78232753e-01\\n9.74083543e-02 9.37658846e-02 -2.51090795e-01 1.73802257e-01\\n-1.70116574e-01 -8.64340886e-02 1.43545985e-01 9.98924002e-02\\n1.55501008e-01 5.96730150e-02 -4.79867011e-01 4.11087543e-01\\n-2.66302675e-01 5.32961071e-01 1.52257875e-01 -8.97100866e-01\\n4.59340006e-01 3.57138664e-01 -1.37560681e-01 -4.03719008e-01\\n5.09573817e-01 -3.50793332e-01 2.81120576e-02 9.32338387e-02\\n-2.98390508e-01 -3.30598831e-01 3.00451487e-01 -2.05480903e-01\\n-1.92368984e-01 4.58151966e-01 1.28391430e-01 1.33520454e-01\\n2.28824154e-01 -1.63856074e-01 -1.25675455e-01 2.50187237e-02\\n-6.58833981e-02 -2.12137535e-01 -4.46765631e-01 -5.42763658e-02\\n-9.71166790e-02 -4.75988746e-01 -2.82302424e-02 -5.36061049e-01\\n-2.39875346e-01 -3.58321071e-01 -1.87064454e-01 2.16319442e-01\\n3.26180160e-01 6.87868223e-02 -1.97866876e-02 4.20669951e-02\\n-2.29415476e-01 -5.39133072e-01 6.25130311e-02 1.92208380e-01\\n4.34868574e-01 2.15212211e-01 1.40968421e-02 2.32712533e-02\\n-8.86682421e-03 6.44919991e-01 -1.38846621e-01 -6.39252365e-02\\n5.59994541e-02 2.64627993e-01 1.09364986e-01 -1.73465714e-01\\n1.36381658e-02 3.66092741e-01 -1.57746226e-01 2.84510292e-02\\n-1.27393473e-02 -1.62359774e-01 3.91579837e-01 1.17934629e-01\\n-3.65199566e-01 -2.12041914e-01 -6.62797242e-02 1.03315771e-01\\n-4.84792948e-01 -1.58757120e-01 5.81823766e-01 1.62003487e-01\\n1.71120912e-01 9.83198062e-02 2.72095263e-01 -5.31134382e-02\\n-2.52521425e-01 -2.42397144e-01 1.96158901e-01 1.21800289e-01\\n1.08961776e-01 1.27080008e-01 -7.05470666e-02 -7.40553677e-01\\n-3.07847953e+00 -1.09116621e-01 9.88526419e-02 -2.56575227e-01\\n1.79191362e-02 -1.83744490e-01 5.03624491e-02 -1.16608426e-01\\n-3.31931204e-01 5.00684939e-02 -1.12848766e-01 -8.08660462e-02\\n2.43242070e-01 1.74921721e-01 9.79962349e-02 2.50185311e-01\\n1.61074340e-01 -1.28338590e-01 -1.03262559e-01 1.70068681e-01\\n-2.43117914e-01 -5.70012867e-01 2.77679235e-01 -6.34934828e-02\\n3.49923402e-01 2.10566640e-01 -2.61619568e-01 -2.04979137e-01\\n-2.66928703e-01 -1.40063554e-01 2.07070634e-02 -2.39513516e-01\\n-7.90130049e-02 1.89604640e-01 1.56907454e-01 -1.46349743e-01\\n2.13425949e-01 -5.10275185e-01 -2.21925884e-01 -4.60793465e-01\\n6.97765723e-02 -7.50240743e-01 2.84209680e-02 -1.69591561e-01\\n7.51741588e-01 -4.03304458e-01 1.01026423e-01 -6.75505539e-03\\n2.15165064e-01 1.46826237e-01 1.41149595e-01 -1.61519963e-02\\n-1.75067648e-01 -2.41486207e-01 -1.34317741e-01 -1.63520262e-01\\n5.82599819e-01 6.72258794e-01 -1.32189035e-01 -6.45605028e-02\\n5.71728731e-03 -2.31515363e-01 -4.86215293e-01 -3.02039891e-01\\n-1.78164691e-01 -3.20030123e-01 -5.86721599e-01 -4.60395306e-01\\n-1.91461205e-01 -9.71381366e-03 -1.85374171e-01 7.16153085e-01\\n-2.29291037e-01 -3.31873089e-01 -7.08615482e-02 -5.10424018e-01\\n1.88157201e-01 -1.60421506e-01 3.34258704e-03 -8.06323588e-02\\n-3.14345866e-01 -4.13969964e-01 -9.81163606e-03 -1.56712368e-01\\n-1.70607477e-01 -4.33450222e-01 4.63282950e-02 -1.17674150e-01\\n-1.88001826e-01 -3.87843668e-01 3.80222797e-01 1.37875184e-01\\n2.94017315e-01 1.01558290e-01 3.55299592e-01 8.37367177e-02\\n2.52137244e-01 -1.77723423e-01 8.57793018e-02 -3.47265303e-01\\n2.07226560e-01 8.39322656e-02 6.13395214e-01 -2.57877231e-01\\n1.18808098e-01 4.21733446e-02 -2.97924995e-01 -8.11859407e-03\\n3.38425636e-01 1.94550268e-02 -8.84827750e-04 -2.32841775e-01\\n3.21706682e-01 -3.61155778e-01 -2.35404342e-01 -5.31986617e-02\\n2.68400222e-01 5.66987872e-01 -6.57440424e-02 -4.91257787e-01\\n-2.09834471e-01 4.24164623e-01 -4.23381254e-02 -3.14639449e-01\\n-1.80289850e-01 1.84377864e-01 -2.35643446e-01 1.70463458e-01\\n8.94050896e-02 -1.01788253e-01 -3.50004077e-01 -1.20688811e-01\\n1.95211153e-02 3.50617796e-01 2.14891553e-01 1.53533742e-01\\n5.11903092e-02 -5.10393500e-01 -4.25917543e-02 2.33422175e-01\\n1.15577810e-01 2.61234850e-01 1.65176049e-01 -1.96823210e-01\\n6.84050545e-02 3.73435110e-01 -1.88080102e-01 1.49944514e-01\\n-2.66280890e-01 8.25849026e-02 -5.24332166e-01 -3.46135020e-01\\n-2.70655215e-01 -3.57893318e-01 1.43268421e-01 3.16217750e-01\\n7.76838064e-02 -4.20921072e-02 7.40121976e-02 -4.34999913e-01\\n3.07942837e-01 -8.06798190e-02 1.69359490e-01 1.68700665e-01\\n2.67784484e-02 5.21999002e-01 1.04577161e-01 -1.66247487e-01\\n-1.37557924e-01 -5.70035679e-03 -1.85115889e-01 -1.35672003e-01\\n-1.18726641e-01 -3.59902143e-01 -1.66541293e-01 5.02412260e-01\\n1.02719806e-01 -2.10290045e-01 -9.72216576e-02 3.30030441e-01\\n-9.15254056e-02 -1.64582148e-01 -1.46854043e-01 -6.29026890e-02\\n3.04071218e-01 7.43821822e-03 3.10952842e-01 -4.15836126e-01\\n2.65534036e-02 8.17134976e-02 -1.34243116e-01 6.08855069e-01\\n1.58943925e-02 -5.17104380e-03 -1.12391636e-01 -2.34387696e-01\\n5.52568734e-01 -6.03970438e-02 -2.01960038e-02 6.17537908e-02\\n2.81645358e-03 -1.80006295e-01 -5.40690184e-01 1.04682334e-01\\n2.20858399e-02 -1.71147481e-01 7.60659277e-02 1.70295969e-01\\n1.63231090e-01 9.96183604e-02 -5.91966391e-01 -2.68716484e-01\\n-3.20793360e-01 1.56783201e-02 -7.10053975e-03 -4.77407902e-01\\n2.35627592e-03 -1.37902170e-01 -5.27522445e-01 2.96274722e-01\\n-2.95964777e-01 -4.94314842e-02 1.44860238e-01 -5.40893897e-02\\n-2.53601521e-01 -7.32333586e-02 1.45605281e-01 2.47943044e-01\\n-2.38115847e-01 -3.21477175e-01 2.04330504e-01 -8.63952756e-01\\n2.08730221e-01 -1.47906775e-02 -1.46130264e-01 1.97695911e-01\\n-1.18184481e-02 -8.23263884e-01 1.32568851e-01 -2.93051422e-01\\n-4.22562622e-02 -6.23918278e-03 -2.18303502e-01 -4.85000789e-01\\n1.28850728e-01 -2.53590830e-02 -3.00814331e-01 2.90901273e-01\\n-3.51346523e-01 3.44051003e-01 -8.71331543e-02 1.14377305e-01\\n1.98345006e-01 -3.14744562e-01 6.77873269e-02 -5.32747030e-01\\n-5.12402475e-01 -1.82805896e-01 -2.85969526e-01 -2.92676061e-01\\n-3.90335172e-02 -1.84295490e-01 -9.36451331e-02 9.10610780e-02\\n4.02367949e-01 1.38348371e-01 -9.10672545e-02 -2.03523263e-01\\n2.87485439e-02 -5.36540627e-01 1.07771978e-01 -6.46100705e-03\\n-6.75484166e-02 -1.86345518e-01 1.58216864e-01 1.52590394e-01\\n1.92342065e-02 -3.89373332e-01 4.47525471e-01 -3.36055517e-01\\n-3.06542337e-01 -1.19537666e-01 1.78256687e-02 -3.46176960e-02\\n3.64082903e-01 -3.33361179e-01 7.68999616e-03 3.24659348e-01\\n1.82376295e-01 1.02678753e-01 2.28069574e-01 -6.53140545e-02\\n-1.05443913e-02 2.92872757e-01 -3.81840914e-01 1.12644963e-01\\n7.42448092e-01 -8.01041350e-03 1.10970475e-01 2.11962327e-01\\n6.76054284e-02 1.22932836e-01 4.86337006e-01 3.30054834e-02\\n-1.85769483e-01 2.69394815e-01 1.12656891e-01 -5.00322938e-01\\n-1.55087322e-01 -8.07639863e-03 -2.73795933e-01 -5.33170879e-01\\n5.66396475e-01 4.94188815e-01 -4.00233388e-01 -2.46146366e-01\\n-2.44201228e-01 -1.09952681e-01 4.06706855e-02 -5.01048602e-02\\n9.35924426e-02 -1.25580966e-01 4.47326034e-01 -4.73805405e-02\\n2.06277996e-01 4.93438303e-01 -1.65537417e-01 -3.52472901e-01\\n-1.32159770e-01 1.13935180e-01 2.62330435e-02 3.80014896e-01\\n-2.54371583e-01 3.77615213e-01 -2.81185210e-02 1.26704231e-01\\n-2.23418325e-01 1.35742560e-01 -2.69087404e-02 -6.52380213e-02\\n1.02817580e-01 6.96604177e-02 3.81392032e-01 4.79319036e-01\\n4.31528658e-01 4.12011534e-01 1.67002037e-01 -3.28439064e-02\\n6.10129833e-01 6.45244539e-01 3.88135046e-01 1.86308905e-01\\n-1.14976302e-01 4.23002690e-02 2.63863392e-02 -2.77687572e-02\\n3.70263577e-01 2.62478769e-01 1.44107118e-02 9.02565718e-01\\n4.00827587e-01 2.10702986e-01 4.35235232e-01 -5.40422022e-01\\n-2.79992908e-01 1.05556352e-02 4.99967575e-01 -4.24879134e-01\\n-1.14769138e-01 3.17645296e-02 -1.45947084e-01 1.13110274e-01\\n-3.70484859e-01 -2.17822924e-01 -3.51154208e-02 1.42038256e-01\\n-1.95038714e-03 -1.89433366e-01 -1.85011044e-01 3.93977724e-02\\n-2.08753720e-01 -1.40075684e-01 -4.71393257e-01 5.79361171e-02\\n-2.03131244e-01 -9.65416059e-02 -5.88907339e-02 -1.73853964e-01\\n-7.35427141e-02 -3.98241252e-01 -7.25910217e-02 -1.24516092e-01\\n2.12491721e-01 -2.14646846e-01 -7.43422583e-02 -2.59087414e-01\\n1.45040169e-01 1.89346939e-01 6.06501043e-01 1.30218625e-01\\n1.22446246e-01 -4.38830435e-01 -2.54959136e-01 1.37799591e-01\\n1.90084592e-01 1.58819690e-01 5.61140068e-02 2.59092838e-01\\n-2.48959899e-01 7.54178315e-02 1.40985519e-01 4.06763732e-01\\n-4.35636669e-01 1.10753790e-01 -1.89146280e-01 1.37781516e-01\\n2.08423316e-01 1.76207513e-01 -2.59276539e-01 1.01416551e-01\\n-2.16352284e-01 -4.27206516e-01 3.29995722e-01 -6.51073530e-02\\n-1.38386257e-03 1.95122156e-02 1.36364475e-01 8.45823362e-02\\n-2.37990469e-01 -3.51820476e-02 -1.37472332e-01 2.64489800e-01\\n1.65760919e-01 2.79269964e-01 -3.20247293e-01 -2.16819599e-01\\n-1.63795575e-01 2.19370767e-01 -9.74259451e-02 2.18969677e-02\\n3.88430431e-02 3.54745865e-01 -1.94028355e-02 3.52453962e-02\\n5.13705373e-01 3.70805264e-02 -1.98480785e-01 -1.58425108e-01\\n-2.10410401e-01 -3.66583377e-01 2.40572859e-02 -4.36119772e-02\\n1.82070062e-01 -4.18408841e-01 4.62703109e-02 -5.09650782e-02\\n-2.12733611e-01 -3.19931179e-01 -2.20053811e-02 -1.28458858e-01]]',\n", + " 'job_description': 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 25 million users worldwide work with documents. We love open-source and using the latest technologies to scale our distributed application to process millions of files every day. As a backend engineer at Smallpdf, you will not only contribute to our backend but also to our infrastructure and tooling. You will work in a cross-functional development team that includes experienced frontend engineers and designers. Our Backend Stack: Golang AWS Docker Ansible Terraform Full stack on Stackshare Responsibilities: Develop new features for Smallpdf Manage and automate our infrastructure that spans across more than 100 machines Analyze and monitor our application to spot problems Help designing our architecture Requirements Golang Experience Work independently and take responsibility and ownership of your work Ability to quickly learn new technologies 5+ years of experience with software development Good programming skills Good knowledge of linux Fluent in English (German is useful but not necessary) Full-time position Permanently based in Zurich (or willing to move) Swiss or EU passport holder (or other permit that allows you to work in Switzerland) Nice to Have: Experience with DevOps tools such as Docker Ansible Terraform Experience scaling (micro-) webservices to millions of users Experience with AWS Benefits The chance to personally impact a successful & rapidly growing startup Tricky challenges scaling a high-traffic web application Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich Do you like the job please apply here: https://apply.workable.com/smallpdf/j/A136D70A95/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Positivity\", \"Management\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Automation\", \"Tooling\", \"Nice (Unix Utility)\", \"Programming (Music)\", \"Scale (Map)\", \"Component Object Model (COM)\", \"Linux\", \"Machining\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Terraform\", \"Cross-Functional Coordination\", \"Personalization\", \"Web Traffic\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Software Development\", \"Ansible\", \"User Experience\", \"Custom Backend\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Oromo', 'Ganda', 'Galician']\"},\n", + " {'company_id': '99',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Eysins',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.quotientsciences.com',\n", + " 'jobdescription_embedded': '[[-1.67283162e-01 4.96382684e-01 4.73285615e-01 -3.95441093e-02\\n7.15354025e-01 -6.18053414e-02 5.90838194e-02 1.80678621e-01\\n-8.27328418e-04 -3.37114483e-01 -2.18784034e-01 -1.58189401e-01\\n1.52623206e-02 5.06034233e-02 2.28409559e-01 5.84479868e-01\\n2.51608580e-01 1.66614223e-02 -1.66437440e-02 4.06785816e-01\\n-6.73558787e-02 -1.67884827e-01 1.20005667e-01 6.37284100e-01\\n3.13242376e-01 -8.12849903e-04 -3.01359948e-02 -5.76268248e-02\\n-3.09288412e-01 -2.74816602e-01 4.40663099e-01 3.29021849e-02\\n-7.83144087e-02 -3.73824924e-01 1.08930394e-01 1.79451630e-01\\n-1.85445324e-01 1.28055304e-01 -1.78126425e-01 2.40898132e-01\\n-5.89650989e-01 -2.64039427e-01 7.97517747e-02 -1.03131890e-01\\n-3.34392726e-01 -3.88217837e-01 1.39606580e-01 -2.31899530e-01\\n1.11341067e-01 2.21235871e-01 -3.84487182e-01 3.55191052e-01\\n-4.07988071e-01 -2.70934194e-01 5.06339848e-01 5.72794139e-01\\n6.15819991e-02 -5.84330261e-01 -4.68150735e-01 -2.88958251e-01\\n1.22681923e-01 -6.50476888e-02 1.47600770e-01 -1.49397805e-01\\n3.15104038e-01 -9.98749509e-02 4.46192436e-02 2.78863698e-01\\n-6.97212040e-01 -1.29439145e-01 -3.69929761e-01 1.14065811e-01\\n-3.49062771e-01 -1.05505243e-01 -3.53100777e-01 -2.25138947e-01\\n-2.79875807e-02 4.16782022e-01 -1.44749507e-01 2.34315917e-02\\n-1.39191240e-01 4.35574681e-01 -2.01017037e-01 1.43315732e-01\\n3.08255732e-01 1.59997836e-01 3.94490868e-01 3.71993899e-01\\n-5.16115129e-01 3.85041445e-01 3.96353811e-01 -2.77292460e-01\\n2.07770273e-01 7.18651116e-02 3.30229253e-01 1.87326372e-01\\n-3.53857465e-02 2.16005147e-01 -2.13451192e-01 1.46659657e-01\\n1.86481237e-01 2.20601987e-02 -1.00690156e-01 6.19195076e-03\\n1.31012267e-03 -3.19163613e-02 -1.72947580e-03 2.76178092e-01\\n-4.15631890e-01 3.80885810e-01 1.95618063e-01 -2.89628297e-01\\n-1.42698929e-01 -5.80824733e-01 -2.10370094e-01 6.33820519e-02\\n-1.20050618e-02 1.27508745e-01 2.09431335e-01 2.51360834e-01\\n2.47809812e-01 -3.90639044e-02 1.85143441e-01 8.57120037e-01\\n2.29593422e-02 6.75428063e-02 -1.07030220e-01 3.60183030e-01\\n1.33770242e-01 -1.98120549e-01 4.20190096e-02 2.35998571e-01\\n-7.21413940e-02 -2.89273611e-03 -2.67424881e-01 3.36799145e-01\\n-1.72741249e-01 -2.47610480e-01 -2.52588511e-01 1.93755463e-01\\n-2.16580793e-01 -4.31534410e-01 4.68430281e-01 -1.90114602e-01\\n6.76211864e-02 -1.70918375e-01 -6.28996268e-02 4.93098721e-02\\n-2.82016397e-01 3.84538829e-01 2.14667886e-01 1.01979077e-01\\n-2.99329340e-01 -2.84333080e-01 -1.77723631e-01 2.62720913e-01\\n-1.51834592e-01 1.86395928e-01 -3.54028583e-01 -1.64308682e-01\\n3.25742811e-01 2.08727509e-01 -5.31035304e-01 3.02797854e-01\\n-1.36172830e-03 -1.84365958e-01 -2.54335344e-01 2.53711253e-01\\n-6.52396157e-02 1.13642119e-01 3.34032183e-03 -1.01220399e-01\\n5.95475554e-01 1.37235850e-01 2.92575777e-01 -1.20846368e-01\\n3.76828909e-01 -1.28077835e-01 2.47321457e-01 6.49513230e-02\\n-6.44647121e-01 4.44469839e-01 -1.82577640e-01 -1.04603253e-01\\n4.25479412e-02 2.02265009e-02 5.31656384e-01 -3.12031657e-01\\n-1.11082554e-01 -2.75638402e-01 -3.28261137e-01 -5.08254468e-01\\n-8.10283944e-02 -4.24229763e-02 3.78612876e-01 -3.64559412e-01\\n-5.32455631e-02 2.15527326e-01 -7.24871457e-01 -7.97624514e-02\\n3.85937512e-01 2.35226005e-01 1.63823038e-01 1.63700417e-01\\n-1.44805267e-01 -6.02992654e-01 1.59879178e-01 -5.34337342e-01\\n-2.90672660e-01 1.37909099e-01 -2.17367843e-01 6.82096481e-02\\n-1.17913559e-02 3.04325819e-02 -4.39064689e-02 4.63327318e-02\\n-2.95871615e-01 -1.32496711e-02 1.52611867e-01 -2.64245179e-02\\n1.01892352e-01 1.13051072e-01 -4.70750362e-01 5.16115248e-01\\n-2.02063397e-01 4.04750526e-01 7.94736594e-02 -9.69350219e-01\\n5.03957987e-01 2.29500964e-01 -1.11463163e-02 -3.07611734e-01\\n5.91374516e-01 -3.56890380e-01 -8.50174204e-02 1.68656290e-01\\n-2.67049938e-01 -1.69523910e-01 2.77892292e-01 -1.67215213e-01\\n-3.24622005e-01 5.91055214e-01 1.15860440e-01 3.96384932e-02\\n3.08249563e-01 -1.01169541e-01 -1.09347917e-01 -4.04855609e-03\\n-8.63071755e-02 -2.03987453e-02 -4.55997586e-01 1.56496204e-02\\n-4.17355932e-02 -5.50188541e-01 -2.11021900e-01 -4.30515110e-01\\n-1.81023523e-01 -4.42410886e-01 -2.66065687e-01 9.48991179e-02\\n4.56364453e-02 1.18560277e-01 4.24885983e-03 1.21486619e-01\\n-2.12956052e-02 -8.45426083e-01 -7.96089992e-02 1.65583566e-01\\n1.92681685e-01 4.71878022e-01 2.18870610e-01 -1.10170893e-01\\n-8.90544280e-02 3.70567292e-01 -3.46888751e-01 -2.09043488e-01\\n2.47652262e-01 4.48090397e-02 -7.02936798e-02 -1.68070421e-01\\n1.14390329e-01 3.30983073e-01 -2.21414745e-01 1.18749730e-01\\n4.06400003e-02 -1.79618075e-02 3.52299511e-01 -1.07650585e-01\\n-3.03789884e-01 -1.78014934e-01 -1.18170142e-01 2.61042535e-01\\n-6.36415780e-01 -1.78278878e-01 5.25998831e-01 6.65154159e-02\\n3.08961291e-02 3.27643275e-01 3.56017798e-01 -7.01261908e-02\\n-3.34032208e-01 -2.03804418e-01 2.29282916e-01 1.38755873e-01\\n1.61493286e-01 -3.57251838e-02 -2.43090749e-01 -6.85398400e-01\\n-3.36590719e+00 -2.27977782e-01 1.61804214e-01 -3.20039481e-01\\n3.04907292e-01 -3.26754376e-02 2.63678521e-01 6.74046725e-02\\n-4.25667435e-01 2.55601481e-02 -1.76507935e-01 -1.29918844e-01\\n6.98243529e-02 3.32497895e-01 9.73022506e-02 9.07275453e-02\\n7.39738420e-02 -3.95802706e-01 7.48599693e-02 4.51745003e-01\\n-1.51159942e-01 -8.91585350e-01 1.35872159e-02 2.97283512e-02\\n1.60224333e-01 1.03656694e-01 -5.86426854e-01 -3.37138437e-02\\n-2.74967313e-01 -1.87939823e-01 8.74861106e-02 -4.47235852e-02\\n-2.94496089e-01 2.28376254e-01 8.54830891e-02 -1.12324983e-01\\n-2.13490855e-02 -2.79905170e-01 -6.16475232e-02 -6.68594241e-01\\n1.27968386e-01 -7.22252607e-01 5.30232862e-03 -3.13416570e-02\\n4.86633956e-01 -9.97365266e-02 2.40852326e-01 1.50363609e-01\\n1.39815211e-01 2.13297471e-01 1.13651454e-01 -8.13508872e-03\\n-1.95934355e-01 -2.19100252e-01 -1.27989277e-01 -8.76261517e-02\\n6.99163318e-01 3.76516491e-01 -3.27294528e-01 -1.84754550e-03\\n6.28733784e-02 -3.56785595e-01 -4.52331334e-01 -2.76319563e-01\\n-2.30234861e-01 3.18514295e-02 -7.09605217e-01 -4.17568296e-01\\n-1.58655375e-01 -2.18184695e-01 -9.87968445e-02 7.75923133e-01\\n-3.75988603e-01 -3.34090531e-01 -9.81640667e-02 -6.01580977e-01\\n1.40054092e-01 -2.70387918e-01 4.93498845e-03 -2.79449672e-01\\n-3.61586243e-01 -3.52262735e-01 3.09144408e-01 8.34799930e-02\\n-2.16312572e-01 9.06404033e-02 1.16812818e-01 -1.15260594e-01\\n-3.89930755e-01 -5.81773877e-01 4.28370357e-01 7.18084946e-02\\n3.61614108e-01 -3.77777740e-02 3.13419729e-01 -3.83485220e-02\\n5.09930313e-01 -1.59920976e-02 8.59928802e-02 -5.62680304e-01\\n-8.70154873e-02 -2.05737203e-02 7.11441338e-01 -2.34437749e-01\\n-4.87223454e-02 1.74908474e-01 -2.07855225e-01 -2.89404392e-01\\n4.85346377e-01 -2.22759005e-02 1.86039239e-01 -3.06634158e-01\\n3.08273584e-01 -4.84438568e-01 -2.25648656e-01 9.60651413e-02\\n7.29645267e-02 7.78930962e-01 2.44732909e-02 -4.17339504e-01\\n-1.43703416e-01 3.12684953e-01 -1.91466644e-01 5.49326204e-02\\n-1.14602178e-01 2.99004167e-02 -1.62621632e-01 3.82111520e-01\\n7.57742673e-02 -1.53777748e-01 -2.65014112e-01 6.90416917e-02\\n-7.91388154e-02 1.61529616e-01 2.57426709e-01 1.59676507e-01\\n-7.79743344e-02 -2.99858272e-01 -1.12044632e-01 1.72875032e-01\\n1.53421715e-01 3.65172386e-01 1.51879251e-01 -3.79622549e-01\\n1.58237927e-02 2.26691976e-01 -2.57052600e-01 3.30407172e-01\\n-1.41537011e-01 1.48903772e-01 -5.12566447e-01 -9.72853824e-02\\n-2.82519251e-01 -2.72215515e-01 6.81637675e-02 3.29897344e-01\\n1.69731855e-01 -1.33052677e-01 1.19581856e-01 -5.29412985e-01\\n2.96477467e-01 1.48529842e-01 1.75442964e-01 1.10479176e-01\\n-5.50859310e-02 6.96975112e-01 -1.19051998e-02 -1.97875157e-01\\n-1.88725302e-03 8.35982114e-02 -2.07555592e-01 -1.98839322e-01\\n1.11030713e-01 -3.98029923e-01 -8.53429921e-03 4.88453090e-01\\n1.61343187e-01 -4.92162742e-02 -1.55689403e-01 3.33499938e-01\\n4.95009050e-02 -2.77789384e-01 -2.44411871e-01 -2.30552368e-02\\n4.43329699e-02 2.95744333e-02 2.91405320e-01 -4.89995062e-01\\n5.18030189e-02 -7.42126107e-02 6.93076029e-02 3.44546229e-01\\n2.35428400e-02 1.20333031e-01 -1.22529328e-01 -1.13325737e-01\\n4.36666250e-01 9.03463215e-02 -7.92455971e-02 -1.70062520e-02\\n1.87160149e-01 -2.65449584e-01 -5.07697880e-01 -3.45288999e-02\\n-1.14432283e-01 -1.71996027e-01 1.13041736e-01 1.51635790e-02\\n1.86537549e-01 2.14096736e-02 -4.26688641e-01 -1.13187924e-01\\n-2.85175920e-01 2.51499843e-02 -1.81716532e-01 -5.95246792e-01\\n-7.07061365e-02 4.16523144e-02 -5.74558139e-01 2.22292379e-01\\n-5.76059008e-03 -3.85601185e-02 1.76665425e-01 2.27065086e-01\\n-2.69160718e-01 -2.66150981e-01 1.50380164e-01 1.52548440e-02\\n-2.77740210e-01 -1.76942214e-01 -3.68021950e-02 -9.36817467e-01\\n2.31606722e-01 -6.28801808e-02 -1.94569543e-01 3.97571847e-02\\n-1.22179888e-01 -7.56654739e-01 2.09525630e-01 -3.79736274e-01\\n-2.27010787e-01 6.01732954e-02 -2.26237684e-01 -3.40690017e-01\\n7.33671710e-02 -1.24778397e-01 -2.90580541e-01 3.12682569e-01\\n-3.61994475e-01 5.77859223e-01 4.40651514e-02 8.52059051e-02\\n1.41486144e-02 -2.04577833e-01 1.49629980e-01 -2.91375935e-01\\n-4.61250693e-01 -7.70405680e-02 -2.75184125e-01 -3.02751869e-01\\n-7.05734566e-02 -1.75870180e-01 -2.23107040e-01 1.50369853e-01\\n4.01551872e-01 7.57903755e-02 -1.26894414e-01 -1.27012551e-01\\n-1.98444575e-02 -3.85478348e-01 1.54525787e-01 -2.57370502e-01\\n1.39345258e-01 -8.13426226e-02 3.94687921e-01 5.22590708e-04\\n2.64045089e-01 -2.67956823e-01 6.32379532e-01 -1.34969652e-01\\n-3.37119460e-01 -1.68911383e-01 1.19579807e-01 1.14029787e-01\\n4.38407272e-01 -4.84939933e-01 2.94002555e-02 2.85366863e-01\\n-1.13274679e-01 3.18405926e-02 2.24106148e-01 -1.83181569e-01\\n-1.61934376e-01 -9.30105988e-03 -6.15322053e-01 2.19566286e-01\\n6.99552119e-01 2.61645257e-01 1.61991939e-01 1.27732232e-01\\n1.01735376e-01 3.68169546e-01 6.19638860e-01 -1.00752927e-01\\n-1.65866062e-01 3.33156466e-01 7.69180432e-02 -5.56725144e-01\\n-2.86869675e-01 4.59007779e-03 -1.54584095e-01 -3.91991764e-01\\n6.35518789e-01 1.88641161e-01 -4.09015238e-01 -3.64251018e-01\\n-2.77176917e-01 -2.79904515e-01 2.76747167e-01 -5.32844290e-03\\n3.55964079e-02 -1.61833435e-01 6.24098659e-01 5.12679070e-02\\n3.42268229e-01 4.98422861e-01 -5.81675135e-02 -3.33056957e-01\\n5.39596900e-02 1.99790031e-01 4.30069258e-03 2.69510180e-01\\n5.29400678e-03 1.61001727e-01 1.95755623e-02 1.97789967e-01\\n-2.26976275e-01 -1.50916949e-01 1.14374436e-01 1.20383270e-01\\n7.07988888e-02 2.09514692e-01 6.24804974e-01 4.26409602e-01\\n2.15460166e-01 3.52721870e-01 2.75899053e-01 2.86861062e-02\\n5.20019054e-01 6.54697418e-01 2.92867571e-01 4.55033174e-03\\n1.26852065e-01 2.82500923e-01 1.35589138e-01 -5.10333804e-04\\n4.33821231e-01 4.51742291e-01 1.26192093e-01 8.27383220e-01\\n7.43306652e-02 3.70451123e-01 7.68658519e-01 -6.19583428e-01\\n-3.18684846e-01 7.70748928e-02 6.30156457e-01 -4.34582114e-01\\n6.87476946e-03 2.27544695e-01 -1.26900107e-01 2.92407632e-01\\n-5.30891657e-01 -1.48756430e-01 3.55412550e-02 -5.42347208e-02\\n2.24938225e-02 -1.57012284e-01 -1.12404890e-01 -2.40950156e-02\\n-1.66813850e-01 -1.49871975e-01 -2.09899873e-01 -3.25569928e-01\\n-2.51107574e-01 1.11149378e-01 -4.22187746e-02 -1.73717663e-01\\n-3.39396968e-02 -3.10252637e-01 -1.27170131e-01 -8.64047259e-02\\n2.56068021e-01 -1.57345891e-01 -1.95944652e-01 -3.99634242e-02\\n1.51886046e-01 1.73659250e-01 7.09538043e-01 -7.05268085e-02\\n1.20836891e-01 -1.66058779e-01 -1.73461422e-01 7.13922083e-02\\n1.63114458e-01 1.64563686e-01 6.52934685e-02 6.67771041e-01\\n-3.23297441e-01 -1.01821534e-01 8.80909488e-02 3.58815104e-01\\n-2.65383244e-01 -2.23928201e-03 -6.07998855e-02 8.19014534e-02\\n-8.21686909e-02 8.73030797e-02 -2.14701787e-01 -2.82162726e-02\\n-1.36687919e-01 -5.65336287e-01 4.02833879e-01 -1.28295660e-01\\n-3.13870877e-01 -6.42627757e-03 3.26349437e-01 3.45629752e-01\\n-1.57253563e-01 -3.78518030e-02 -1.02381997e-01 1.22643121e-01\\n8.03345293e-02 4.92935359e-01 -1.89984858e-01 -2.59463370e-01\\n-3.32633823e-01 2.66296923e-01 3.80577892e-02 1.66840926e-01\\n-8.88827369e-02 2.90821284e-01 7.16807917e-02 6.53435439e-02\\n3.55444521e-01 -1.56623036e-01 -2.89584488e-01 -3.11671942e-01\\n-1.53793246e-01 -1.34443194e-01 1.05127253e-01 -1.44648746e-01\\n2.45508015e-01 -3.53670835e-01 -4.27128226e-02 -2.88287520e-01\\n-1.39551595e-01 -3.97719026e-01 -2.17192456e-01 1.82976108e-02]]',\n", + " 'job_description': 'Quotient is recruiting for a Software Engineer to join the IT department team based in Eysins. The Software Engineer will define, develop, test, analyze and maintain manufacturing software applications in support of the achievement of business requirements. Participate actively in the implementation and support of Manufacturing information systems solutions Participate in the definition, development, and documentation of software’s business requirements, objectives, deliverables, and specifications in collaboration with internal users and departments and as per our project methodology Write, code, install and analyse software programs and applications throughout the full lifecycle of system implementation (from requirements/design through to deployment and support) Design, run and monitor software testing on new and existing programs for the purposes of correcting errors, isolating areas for improvement, and general debugging Develop interface of MES system to ERP, PLC and other 3rd party system Develop and execute software verification plans following quality assurance procedures Develop and maintain IT documentation, user manuals and guidelines as well as train key users to operate new or modified programs Provide support for Manufacturing Software applications (Incident management and problem resolution) and develop further the manufacturing systems support Knowledge base Ensure timely issue identification, resolution, and appropriate escalation Collaborate with suppliers, internal project and IT team, internal management, and customer project teams and management Research, advice and implement technologies for Digital Factory transformation (Industry 4.0) Qualifications Engineering Diploma (EPF/HES or equivalent) in Computer Science, Information Systems, Industrial Engineering or equivalent Minimum 2 years experience on a similar role Programming skills in NET; C# and SQL language and ability to quickly learn new software/applications Must be a team player and an effective communicator, to enable communication with a wide range of stakeholders and cultures Experience of Manufacturing Information systems (Manufacturing Execution Systems, labelling and Enterprise Resource planning) in the medical devices or pharma industry is a strong asset SLDC and validation experience of enterprise applications is considered an asset Ability to work under pressure, meet deadlines and respond flexibly Excellent spoken and written French. Good English required Videos To Watch',\n", + " 'soft_skills': '[\"Writing\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Quality Assurance\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Systems Implementations\", \"Enterprise Application Software\", \"Knowledge Base\", \"Industry 4.0\", \"Programming (Music)\", \"Computer Science\", \"Mobile Application Software\", \"System Support\", \"Industrialization\", \"Enterprise Resource Planning\", \"Activism\", \"Installation\", \"Maintainability\", \"Resource Planning\", \"Software Manufacturing\", \"Executable\", \"Software Engineering\", \"Simatic S5 PLC\", \"Business Requirements\", \"Medical Devices\", \"MFG/Pro (ERP)\", \"C# (Programming Language)\", \"Digitization\", \"Incident Management\", \"Systems Development\", \"Industrial Engineering\", \"Transformation (Genetics)\", \"Factorials\", \"Software Testing\", \"Manufacturing Execution System (MES)\", \"Debugging\", \"Information Systems\"]',\n", + " 'languages': \"['English', 'Valencian', 'Albanian']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'c++ software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Aerospace & Defence',\n", + " 'website': 'www.veritystudios.com',\n", + " 'jobdescription_embedded': '[[-1.59014553e-01 3.03873777e-01 4.20136034e-01 9.04157944e-03\\n5.37488341e-01 -1.61431819e-01 1.03864595e-02 2.45850876e-01\\n2.68839337e-02 -3.19560707e-01 -8.36889073e-02 -3.46619129e-01\\n-1.36771798e-01 7.22995996e-02 1.42730713e-01 5.38762569e-01\\n1.96443349e-01 7.95913488e-02 -2.58733332e-01 4.68955278e-01\\n5.77662326e-02 -8.69698301e-02 1.24980330e-01 7.25770831e-01\\n3.68847013e-01 5.06829806e-02 -1.38483390e-01 -3.95100601e-02\\n-1.80905819e-01 -1.23619042e-01 4.67145920e-01 -2.29087807e-02\\n-7.49987438e-02 -5.01810312e-01 9.14061144e-02 9.44920257e-02\\n-2.28975087e-01 -6.00676909e-02 -9.11961049e-02 1.24235593e-01\\n-5.25383294e-01 -3.42253864e-01 2.92138662e-02 -7.24991634e-02\\n-2.29615346e-01 -2.64409304e-01 1.45086557e-01 -7.90537596e-02\\n1.73731849e-01 6.35759383e-02 -4.84650135e-01 3.38169396e-01\\n-3.27064872e-01 -2.10456073e-01 3.89829814e-01 6.65574551e-01\\n3.35495174e-02 -5.37150502e-01 -5.28799355e-01 -3.57071459e-01\\n-8.67669731e-02 6.03123009e-03 3.49356011e-02 -3.81744117e-01\\n2.79709101e-01 8.28928128e-03 4.68634181e-02 3.28822970e-01\\n-7.16634631e-01 -1.98418051e-01 -2.00354993e-01 6.13365360e-02\\n-2.14291871e-01 -4.68525030e-02 -3.15927535e-01 -1.06184468e-01\\n-1.34810567e-01 3.62323940e-01 -3.42762619e-02 5.80133609e-02\\n-1.84461832e-01 3.50923657e-01 -1.18408948e-01 4.48253751e-01\\n2.51421183e-01 2.14727059e-01 2.41190642e-01 4.41014588e-01\\n-3.54598433e-01 3.54107380e-01 1.65247887e-01 -3.12762767e-01\\n2.24576250e-01 2.01780528e-01 4.96373355e-01 2.23664939e-02\\n5.35540991e-02 8.40156749e-02 -3.05854321e-01 2.64168054e-01\\n2.17264712e-01 -2.75230885e-01 1.33251399e-01 -1.45568773e-01\\n5.65315187e-02 3.31686884e-02 4.60284911e-02 1.98023245e-01\\n-3.21965575e-01 4.13138330e-01 2.85223663e-01 -2.91862905e-01\\n-2.26965249e-01 -6.07090056e-01 -9.40991119e-02 1.28305331e-01\\n3.55421640e-02 1.26272455e-01 1.85322911e-01 1.57520354e-01\\n2.92466223e-01 -1.91178292e-01 1.30604103e-01 8.81181896e-01\\n-1.03899822e-01 -1.44632906e-03 -7.26981759e-02 2.92382509e-01\\n1.17982060e-01 -2.59292543e-01 9.55405757e-02 2.33013541e-01\\n6.04443774e-02 -7.59885609e-02 -1.92010403e-01 3.11514080e-01\\n-2.12934345e-01 -2.09957004e-01 -3.68047476e-01 3.20789784e-01\\n-1.03731818e-01 -4.32018340e-01 6.74305201e-01 -9.10072327e-02\\n1.78771377e-01 -5.71099594e-02 2.64450666e-02 -7.91083351e-02\\n-1.52101889e-01 1.52517244e-01 1.85045660e-01 9.61411819e-02\\n-3.24539006e-01 -2.24507079e-01 -1.67629465e-01 9.47467014e-02\\n-2.65097469e-01 1.48413017e-01 -1.34500295e-01 -2.11859539e-01\\n1.33881509e-01 1.36580169e-01 -4.91587102e-01 2.01742172e-01\\n-1.72394976e-01 -7.45970011e-02 -1.29319236e-01 4.92416710e-01\\n-1.87292427e-01 2.23804355e-01 9.27935392e-02 -3.96982543e-02\\n6.84168577e-01 1.92760795e-01 1.53599992e-01 -1.15911916e-01\\n4.38116163e-01 -6.11143559e-02 2.30819792e-01 2.16873512e-01\\n-6.74739718e-01 3.02194655e-01 -9.25403461e-03 -8.35418552e-02\\n1.51447028e-01 -1.24217108e-01 3.89713198e-01 -4.13335204e-01\\n-2.64210030e-02 -2.43126541e-01 -2.96218693e-01 -2.70868897e-01\\n-2.71283567e-01 6.56682327e-02 2.94614375e-01 -2.49300241e-01\\n-8.02800134e-02 2.64368773e-01 -5.63948452e-01 -1.39512718e-01\\n1.93344966e-01 1.99096709e-01 9.70217735e-02 1.06578976e-01\\n-1.61237836e-01 -6.74248695e-01 1.87801905e-02 -3.39917958e-01\\n-3.72041225e-01 -4.63143587e-02 -2.88899720e-01 1.48816943e-01\\n2.09799092e-02 5.33569939e-02 -7.43546486e-02 2.23525874e-02\\n-4.26323891e-01 -3.26618180e-03 8.62371922e-02 1.77564286e-03\\n1.77718729e-01 1.39316812e-01 -4.30603266e-01 3.55524361e-01\\n-2.71083355e-01 6.27099574e-01 2.10812688e-03 -9.59008813e-01\\n4.96104717e-01 3.45502377e-01 -5.44648841e-02 -3.20952147e-01\\n4.52602804e-01 -4.79930639e-01 -1.20407067e-01 7.97528327e-02\\n-2.25554883e-01 -2.66895831e-01 3.43606114e-01 -2.58773595e-01\\n-3.36218178e-01 5.53181350e-01 5.46340905e-02 1.60634279e-01\\n2.88383752e-01 -3.32148790e-01 -6.38822690e-02 3.78879234e-02\\n6.25540316e-03 -1.03637472e-01 -5.46739936e-01 -2.87847854e-02\\n-7.75304064e-02 -3.34680676e-01 -1.01409048e-01 -3.80286932e-01\\n-1.50843948e-01 -3.84630293e-01 -2.33132124e-01 1.60581499e-01\\n2.47291043e-01 1.06540069e-01 8.49924982e-02 9.26393047e-02\\n-2.34476812e-02 -6.59592271e-01 2.00217441e-02 1.36902958e-01\\n4.58609551e-01 2.67695367e-01 1.46135777e-01 4.79000360e-02\\n9.30680484e-02 6.19428635e-01 -3.08816552e-01 -2.02744544e-01\\n1.43416166e-01 1.28160655e-01 -3.95089723e-02 -1.01093881e-01\\n1.56499535e-01 3.57874691e-01 -2.88431883e-01 -1.10130478e-02\\n-1.48187533e-01 -2.72360202e-02 4.28748995e-01 -6.21316507e-02\\n-2.79403508e-01 -2.53823698e-01 -9.79816690e-02 3.47997770e-02\\n-5.33209085e-01 -2.12914318e-01 3.57482612e-01 9.98760015e-02\\n2.32495174e-01 1.03246972e-01 1.17818296e-01 -8.21668059e-02\\n-4.26595688e-01 -3.09437841e-01 1.48750126e-01 1.49308890e-01\\n7.40788970e-03 9.59183574e-02 4.76604179e-02 -6.82590902e-01\\n-2.93036938e+00 2.67491527e-02 2.12425023e-01 -2.36928284e-01\\n2.88048536e-01 -2.30525713e-02 1.21396720e-01 -5.03726602e-02\\n-3.73897791e-01 9.78326276e-02 -7.98460543e-02 -1.76291138e-01\\n1.13592148e-02 2.69979656e-01 9.46226865e-02 8.17166418e-02\\n5.22515960e-02 -3.42830718e-01 -1.16946690e-01 3.40881497e-01\\n-4.51768301e-02 -7.65984893e-01 1.91871345e-01 -1.16469748e-01\\n2.42158473e-01 2.46699497e-01 -4.82806504e-01 -1.34013385e-01\\n-2.38753840e-01 -1.17367722e-01 -9.60818678e-03 -2.16299459e-01\\n-2.04528987e-01 1.83697611e-01 1.82129338e-01 -4.32385504e-02\\n7.30579793e-02 -3.99027169e-01 -8.47468749e-02 -4.27565187e-01\\n1.70376480e-01 -6.00896835e-01 1.67764165e-02 -1.94066793e-01\\n6.18235111e-01 -2.63515145e-01 1.14118814e-01 7.73437917e-02\\n1.56531006e-01 1.37543101e-02 1.78664684e-01 1.23023078e-01\\n-1.26235753e-01 -1.94392830e-01 -7.63775706e-02 -2.29212970e-01\\n6.38047397e-01 4.02421951e-01 -1.75277576e-01 -4.09799367e-02\\n3.77210081e-02 -3.15232098e-01 -4.69778329e-01 -2.23376870e-01\\n-8.19963589e-02 -1.93647176e-01 -6.29816771e-01 -3.65158588e-01\\n-2.00364232e-01 -1.16365314e-01 -1.02252692e-01 7.07525849e-01\\n-4.05874819e-01 -3.02315414e-01 8.50597396e-02 -6.06460690e-01\\n2.93879211e-01 -2.77355134e-01 3.20408531e-02 -3.20527375e-01\\n-2.92399555e-01 -5.48112988e-01 8.66106302e-02 -1.12327248e-01\\n-1.90963507e-01 -2.66541362e-01 1.56383403e-02 -1.19578272e-01\\n-2.10963145e-01 -5.68038404e-01 4.07083094e-01 1.63633704e-01\\n3.62480134e-01 2.79569626e-02 4.58326042e-01 -8.06553066e-02\\n3.36671889e-01 4.03785817e-02 9.14684311e-02 -3.16485524e-01\\n-2.45413706e-02 3.89763638e-02 5.91186345e-01 -2.79155374e-01\\n-2.58729840e-03 1.02753714e-01 -2.12692469e-01 -4.65524867e-02\\n3.86766493e-01 -5.07784970e-02 3.75814959e-02 -2.26744682e-01\\n3.59775275e-01 -4.60290194e-01 -1.33958399e-01 7.24326000e-02\\n1.77612588e-01 8.76236677e-01 3.56180966e-02 -3.89140010e-01\\n-1.73645958e-01 5.20150900e-01 -1.09330922e-01 1.01028636e-01\\n-8.55934694e-02 1.00248173e-01 -3.21990013e-01 2.82235980e-01\\n6.39477819e-02 -3.25786114e-01 -2.79859841e-01 -3.34360600e-02\\n-1.41410202e-01 3.41003835e-01 1.64620653e-01 7.85913169e-02\\n-1.16160475e-01 -4.14354146e-01 -1.45252883e-01 3.12588155e-01\\n1.26917362e-01 4.26329672e-01 2.01131448e-01 -3.91867727e-01\\n7.72245601e-02 4.54782844e-01 -1.01191334e-01 2.91804105e-01\\n-1.39071122e-01 1.79487452e-01 -5.39253950e-01 -2.34927356e-01\\n-3.58869553e-01 -4.22988892e-01 1.05905965e-01 4.84050870e-01\\n1.56405836e-01 -3.09247859e-02 1.19239107e-01 -5.33124566e-01\\n4.00083840e-01 2.03899145e-01 6.53666183e-02 8.28189030e-02\\n-5.46992198e-02 5.66829562e-01 3.47331539e-02 -1.75122231e-01\\n-1.60186857e-01 -4.45708409e-02 -1.13529399e-01 -2.57895559e-01\\n2.50851810e-01 -4.79016006e-01 -1.17261425e-01 3.79071057e-01\\n9.89333019e-02 -2.49600396e-01 -2.91133702e-01 2.95446217e-01\\n-1.53109208e-02 -3.17207754e-01 -2.84036577e-01 -1.40519366e-01\\n2.35202193e-01 -6.61763027e-02 2.99646974e-01 -5.16981840e-01\\n3.34050134e-02 -4.79252450e-02 3.35257947e-02 4.07958567e-01\\n-3.43933776e-02 -1.44969165e-01 -3.04799855e-01 -4.62685451e-02\\n4.58921164e-01 4.69461121e-02 -7.06684887e-02 -8.68129432e-02\\n1.70396268e-01 -2.91893750e-01 -4.57197547e-01 8.95398110e-02\\n-1.86751969e-02 -2.05350950e-01 3.19862813e-02 7.19214380e-02\\n1.31657243e-01 2.13803295e-02 -5.67325413e-01 -1.49728581e-01\\n-1.31232619e-01 -4.04464714e-02 5.43550104e-02 -4.08694685e-01\\n-1.15851834e-01 -1.89695396e-02 -6.04654789e-01 1.22516021e-01\\n-2.99931765e-01 -1.57429039e-01 1.87445208e-01 1.23400435e-01\\n-3.60481083e-01 -1.60962284e-01 -6.55811653e-02 2.58306563e-01\\n-2.55343616e-01 -2.83602476e-01 -4.34198976e-02 -9.95717049e-01\\n1.21335045e-01 -3.84837836e-02 -9.32515636e-02 1.60767585e-01\\n-1.32742196e-01 -9.02205884e-01 1.73468411e-01 -3.46720040e-01\\n-5.12810647e-02 1.05172973e-02 -2.52566934e-01 -1.32707089e-01\\n1.69134796e-01 -4.39770259e-02 -3.12299311e-01 4.05391157e-01\\n-2.57542491e-01 2.75019646e-01 -1.82253480e-01 3.66385989e-02\\n-4.98409942e-02 -1.47286296e-01 9.96578857e-02 -3.15191805e-01\\n-3.99465263e-01 -2.49624431e-01 -2.26343483e-01 -2.87872881e-01\\n-1.33660942e-01 -2.26775438e-01 -2.94813454e-01 1.36815220e-01\\n2.97445685e-01 -1.91993937e-02 -6.62438944e-02 -2.84053683e-01\\n8.15426931e-02 -4.37640131e-01 1.18853234e-01 -9.61793214e-02\\n1.01327196e-01 -1.80382311e-01 2.03760251e-01 9.42906439e-02\\n3.47847074e-01 -3.27921987e-01 5.07169247e-01 -3.21812809e-01\\n-3.60280007e-01 -1.30376831e-01 -1.11748930e-02 -1.42909452e-01\\n3.83633733e-01 -4.13318574e-01 3.60995680e-02 2.94052690e-01\\n-2.97330450e-02 6.79653510e-02 2.92792499e-01 -1.49148345e-01\\n2.43475996e-02 5.57293519e-02 -4.03811187e-01 5.55409119e-02\\n7.24176288e-01 2.43063211e-01 5.91266826e-02 1.48684502e-01\\n1.96284000e-02 2.93685049e-01 5.80576956e-01 -1.63717672e-01\\n-1.34419844e-01 1.65789366e-01 1.04760386e-01 -5.90338588e-01\\n-2.13629216e-01 -2.71766484e-02 -2.77890712e-01 -4.06131178e-01\\n6.36844873e-01 3.43655765e-01 -3.87023240e-01 -1.26804754e-01\\n-3.29161296e-03 -1.48861855e-01 3.27145100e-01 3.64118814e-02\\n3.33140306e-02 -4.68363129e-02 4.58690226e-01 -1.91325173e-02\\n3.20183873e-01 5.68645060e-01 -2.00675040e-01 -3.83791357e-01\\n-5.69666289e-02 2.04810590e-01 5.26794195e-02 3.42937291e-01\\n-1.79706439e-01 2.61406004e-01 -8.82699639e-02 -3.43631990e-02\\n-2.04685673e-01 1.54560700e-01 3.49678844e-02 8.30618143e-02\\n1.98008984e-01 8.93341452e-02 4.82273161e-01 5.49919605e-01\\n1.69384107e-01 3.97567868e-01 3.35723281e-01 6.70343041e-02\\n4.42886174e-01 6.05506599e-01 3.77898812e-01 1.28400385e-01\\n1.28477246e-01 2.71487385e-01 2.64310122e-01 -1.00035504e-01\\n5.22435308e-01 4.42583084e-01 1.59315288e-01 8.55651259e-01\\n2.22963974e-01 4.66826797e-01 8.25543284e-01 -6.84002817e-01\\n-3.51933658e-01 8.43482614e-02 4.99767572e-01 -4.07838345e-01\\n2.96916682e-02 1.13362536e-01 -7.18833134e-02 4.02163029e-01\\n-5.92907190e-01 -2.31373727e-01 -5.70935607e-02 1.31987050e-01\\n-8.25094581e-02 -1.40833482e-01 -1.86578184e-01 1.67586267e-01\\n-1.36299029e-01 -2.30184808e-01 -2.74504542e-01 -1.26835749e-01\\n-1.88545555e-01 8.29080716e-02 -1.09147154e-01 -1.17386132e-01\\n1.67900976e-02 -3.00773472e-01 -1.96813885e-02 -1.98854953e-02\\n3.04512203e-01 -1.44697279e-01 -1.38420582e-01 -1.60332501e-01\\n3.17265749e-01 1.38650090e-01 4.45066333e-01 1.19474027e-02\\n2.26769626e-01 -1.75296634e-01 -2.68394649e-01 1.45630047e-01\\n5.27939647e-02 5.10673895e-02 7.75049850e-02 3.34073424e-01\\n-2.46569067e-01 -7.13776350e-02 6.05016723e-02 3.10498178e-01\\n-3.15944254e-01 -9.46441218e-02 -1.79491848e-01 1.04074277e-01\\n1.16122216e-02 2.14196518e-01 -1.22656472e-01 -4.32310998e-02\\n-1.58769861e-01 -4.15511698e-01 3.12509894e-01 -8.01340342e-02\\n-2.59796798e-01 -2.82387510e-02 3.34538460e-01 1.56536564e-01\\n-2.94144511e-01 1.36588559e-01 -1.78364724e-01 2.28852600e-01\\n6.93287700e-04 3.27810675e-01 -6.39480948e-02 -2.64823586e-01\\n-2.22099304e-01 2.29548708e-01 -1.04371443e-01 6.85802847e-02\\n9.05385762e-02 5.22999823e-01 -8.21659416e-02 -7.19054565e-02\\n6.20769918e-01 -3.79451774e-02 -2.77809560e-01 -2.64831513e-01\\n-9.15747732e-02 -1.81097507e-01 -1.18475482e-01 -9.94069874e-02\\n1.95696130e-01 -4.13639069e-01 -5.43571785e-02 -2.41785377e-01\\n4.43092063e-02 -1.98828623e-01 -9.74043161e-02 2.03290060e-02]]',\n", + " 'job_description': \"To complement its growing team, Verity Studios is looking for an experienced and versatile C++ Software Engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software for drone systems requires addressing new and challenging problems such as: (a) designing flexible software systems that can adapt to the requirements of several kinds of scenarios (different type and number of drones, different operating procedures, etc.), (b) defining robust and reliable communication protocols for distributed systems (both on wired and wireless connections), (c) implementing sophisticated algorithms to execute tasks efficiently and reliably, and (d) defining smart interfaces to promptly interact with the drones and the other system components during operation. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deployment Interact with other engineering teams to define and review design documents Design the architecture of system components Define distributed communication protocols and complex state machines. Develop, and maintain general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Creative approach to problem solving Experience in mentoring junior engineers is a plus Good written and spoken English language skills Excellent knowledge of C++ and STL Familiar with GDB and other debugging and program analysis tools Familiarity with libraries such as Boost and Qt is a plus Experience in Python and modern C++ is a plus Experience in promoting new technologies, coding practices, and development guidelines is a plus Benefits. Work in an interdisciplinary, highly-skilled team Create ground-breaking systems, used by some of the world's most prominent stage productions Shape the culture and have a significant impact in a rapidly growing young company\",\n", + " 'soft_skills': '[\"Adaptability\", \"Professionalism\", \"Problem Solving\", \"Operations\", \"Reliability\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Tooling\", \"System Requirements\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Staging\", \"Standard Operating Procedure\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"State Machines\", \"Software Systems\", \"Python (Programming Language)\", \"Maintainability\", \"Track (Rail Transport)\", \"Library\", \"Program Analysis\", \"Executable\", \"Software Engineering\", \"Completely Randomized Design\", \"C (Programming Language)\", \"Robotics\", \"Standard Template Library (STL)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Data Structures\", \"Systems Design\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"Qt (Software)\", \"Debugging\", \"Documentation Based Coding\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Armenian']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'business analyst - application support analyst',\n", + " 'location': 'Neuchâtel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.66816726e-01 2.85162449e-01 4.95247245e-01 -7.54986182e-02\\n5.17806172e-01 -1.34886459e-01 7.60038346e-02 4.32544142e-01\\n-8.29061940e-02 -4.25131202e-01 -2.95873592e-03 -1.83584690e-01\\n9.61176306e-02 2.15909109e-01 1.05633009e-02 3.52613240e-01\\n2.66447812e-01 1.37014166e-01 -1.48201928e-01 2.16381490e-01\\n1.25430062e-01 -1.72634274e-01 3.35497499e-01 6.12776577e-01\\n4.23927665e-01 3.30772921e-02 -2.56940257e-02 -1.53158531e-01\\n-1.23470135e-01 -2.56299287e-01 3.67050439e-01 -9.53961536e-03\\n-2.50251982e-02 -2.93682307e-01 6.65732324e-02 -5.90753835e-03\\n-1.93510950e-01 -1.60548806e-01 -1.45955786e-01 3.65572944e-02\\n-5.26386201e-01 -3.39580148e-01 -2.28963360e-01 -6.91483840e-02\\n-2.80557990e-01 -3.24102759e-01 -9.15291905e-03 -1.48155108e-01\\n1.82212859e-01 7.26522505e-02 -4.75324601e-01 2.69055218e-01\\n-3.30000103e-01 -2.03725293e-01 2.42885351e-01 6.28940821e-01\\n-2.85409689e-02 -3.79264444e-01 -4.72581893e-01 -2.54332900e-01\\n1.76641077e-01 -2.23826885e-01 3.89919020e-02 -2.20772594e-01\\n2.78967142e-01 2.02960521e-01 1.42488971e-01 3.70038003e-01\\n-7.76884913e-01 -1.40156075e-01 -3.32717627e-01 -2.39798233e-01\\n-1.49233565e-01 -9.14947912e-02 -1.49845034e-01 -1.88158885e-01\\n-9.45164785e-02 4.63348299e-01 1.23411208e-01 8.18541348e-02\\n-4.00788076e-02 2.69109011e-01 -2.31787860e-01 3.21324795e-01\\n8.58864859e-02 2.63024807e-01 1.04690574e-01 1.11424729e-01\\n-2.43329868e-01 4.18507725e-01 2.25649655e-01 -2.40596652e-01\\n2.23352090e-01 1.01557516e-01 3.95808041e-01 -2.47453704e-01\\n2.17678934e-01 2.30605043e-02 -2.61458695e-01 3.84560764e-01\\n2.94863254e-01 -3.24450463e-01 1.01686813e-01 -1.92390114e-01\\n-7.05779865e-02 -3.26319039e-02 9.00029615e-02 9.10945833e-02\\n-2.42432758e-01 4.81475919e-01 6.77301213e-02 -1.03688523e-01\\n-3.28537524e-02 -3.50481927e-01 1.81190129e-02 1.48204993e-03\\n9.13675204e-02 1.26485348e-01 2.01980963e-01 1.82763562e-01\\n2.78376192e-01 -8.81460756e-02 6.53274804e-02 6.54171109e-01\\n-1.05632469e-01 4.24783602e-02 -2.75458485e-01 2.27828890e-01\\n-2.77840551e-02 -1.56604737e-01 1.21966206e-01 1.94903582e-01\\n-2.02449113e-02 -1.33911476e-01 -1.51002795e-01 1.31977484e-01\\n-9.53805074e-02 -2.70285606e-01 -2.16760933e-01 1.45205572e-01\\n-2.02276465e-02 -1.81995362e-01 4.59509641e-01 -9.95344669e-02\\n1.54643893e-01 -6.64847717e-02 4.90071699e-02 -8.27436745e-02\\n-1.04522534e-01 2.26501137e-01 3.14468183e-02 5.26629947e-02\\n-1.86016604e-01 -2.29177713e-01 -2.01230317e-01 -1.15925521e-01\\n-2.18725786e-01 1.46933421e-01 -3.53244133e-02 -1.40077416e-02\\n2.48875499e-01 -3.61084230e-02 -7.27863610e-02 3.78438652e-01\\n6.28798753e-02 5.30594662e-02 4.58895788e-03 2.32622206e-01\\n-1.41313732e-01 2.28673071e-01 -7.18937814e-02 -1.59278110e-01\\n5.01531720e-01 -8.31596851e-02 -3.37360352e-02 2.20002420e-02\\n3.80361110e-01 1.69208460e-02 1.06049635e-01 6.94921240e-02\\n-6.85974836e-01 3.24633330e-01 -6.15523160e-02 -7.24900514e-02\\n1.80995688e-01 -5.40063418e-02 1.82919949e-01 -1.76368594e-01\\n1.16254650e-01 1.08255669e-01 -3.00764263e-01 -3.24148387e-01\\n-4.82118055e-02 -2.70950079e-01 3.17378998e-01 -3.62578064e-01\\n-1.01960555e-01 2.19249845e-01 -4.43402588e-01 3.50450166e-02\\n2.21723080e-01 2.19678774e-01 1.60573512e-01 1.74959153e-01\\n-1.87104136e-01 -1.07577771e-01 2.11339355e-01 -2.92870849e-01\\n-4.04642597e-02 2.01489881e-01 -1.51171640e-01 2.52423763e-01\\n1.80193394e-01 8.58183578e-02 -1.33273408e-01 -3.71211246e-02\\n7.67256096e-02 -1.27010360e-01 2.91456729e-01 2.45403033e-02\\n2.02699035e-01 6.92233145e-02 -3.49474669e-01 3.17839295e-01\\n-1.64470896e-01 5.17099142e-01 1.79933235e-02 -9.06439424e-01\\n2.98671514e-01 2.40180403e-01 9.21225641e-03 -2.06164390e-01\\n6.60073578e-01 -2.37542599e-01 -1.86836775e-02 2.21317619e-01\\n-4.16005880e-01 -3.51475030e-01 2.17292264e-01 -1.60689533e-01\\n-2.04272598e-01 4.95882601e-01 6.34944066e-02 1.67960897e-01\\n2.99192779e-02 7.70038180e-03 -1.76692083e-01 1.43731236e-01\\n6.70351461e-02 -2.26195082e-01 -4.81849194e-01 -2.13338256e-01\\n-9.12654176e-02 -3.93154383e-01 -1.60786033e-01 -4.35936034e-01\\n-2.99532652e-01 -2.26393089e-01 -3.79842259e-02 9.68500972e-02\\n2.70522445e-01 1.19380295e-01 1.02652572e-01 2.36744285e-01\\n-2.17602983e-01 -4.10830438e-01 4.99545895e-02 1.80105016e-01\\n2.03366339e-01 1.63581371e-01 -1.74756907e-02 1.00715175e-01\\n-5.69107533e-02 7.79145777e-01 -1.69867963e-01 1.17225260e-01\\n2.50453949e-01 2.46209681e-01 2.09222510e-02 -1.38754234e-01\\n1.37883991e-01 3.16180587e-01 -3.32972646e-01 3.08759868e-01\\n1.20447921e-02 9.94644165e-02 1.83122978e-01 1.02680460e-01\\n-3.20344627e-01 -2.38243774e-01 -1.52315661e-01 9.39186066e-02\\n-4.23535496e-01 -9.78240296e-02 6.99331999e-01 -5.90619892e-02\\n6.72758743e-02 1.79002061e-01 2.24290609e-01 1.89715829e-02\\n-7.98832476e-02 -1.42766654e-01 1.67589679e-01 1.30283430e-01\\n7.71711171e-02 1.14916414e-01 -2.10767351e-02 -7.03401506e-01\\n-3.66119194e+00 -1.91520050e-01 7.63729215e-02 -2.67383516e-01\\n2.88053155e-01 -2.38004535e-01 6.30816072e-02 3.02737895e-02\\n-2.82982022e-01 2.84561813e-02 -1.82005599e-01 -1.69044077e-01\\n2.74280638e-01 1.47940725e-01 8.84595513e-02 3.70418876e-01\\n8.69562328e-02 -2.43361235e-01 -4.54022363e-02 4.39097166e-01\\n-2.59551674e-01 -5.01000047e-01 3.15047622e-01 3.06553431e-02\\n4.55406636e-01 3.17829907e-01 -2.86230743e-01 -1.84408929e-02\\n-2.13597432e-01 -1.67652160e-01 2.65707254e-01 -2.18014374e-01\\n-1.17986098e-01 3.12351078e-01 1.57812402e-01 -1.49565056e-01\\n1.99206904e-01 -5.47767043e-01 -1.39021069e-01 -4.40096915e-01\\n1.54843882e-01 -6.80866301e-01 -7.54826590e-02 9.22882408e-02\\n6.30724728e-01 -3.05221558e-01 -6.51504621e-02 2.05139779e-02\\n1.68092549e-01 2.16654554e-01 3.85348462e-02 8.41422305e-02\\n-1.09303966e-01 -2.92187899e-01 -8.05607587e-02 -2.65527274e-02\\n4.02626842e-01 4.19412136e-01 -1.93728492e-01 -2.92385668e-02\\n2.37763692e-02 -7.16327429e-02 -5.14202237e-01 -2.44632438e-01\\n-2.33901113e-01 -2.90591866e-01 -5.91090381e-01 -2.97825873e-01\\n-8.16299990e-02 -1.50004745e-01 -1.77371711e-01 3.61755818e-01\\n-2.59540766e-01 -3.28153163e-01 -9.77436230e-02 -3.13551068e-01\\n2.44248971e-01 8.71416405e-02 2.70596631e-02 -1.75347775e-01\\n-3.33077371e-01 -2.62013882e-01 5.40916584e-02 3.51502821e-02\\n7.43630230e-02 -2.43363753e-01 1.34339169e-01 -5.82472086e-02\\n-3.48647982e-01 -4.38914150e-01 3.72188121e-01 1.82587147e-01\\n2.95160979e-01 1.29808903e-01 1.70364648e-01 3.97798568e-02\\n2.68732101e-01 -1.93118274e-01 3.27250399e-02 -4.54264104e-01\\n1.21773429e-01 3.01426500e-02 4.19101030e-01 -2.39311561e-01\\n1.34406894e-01 -6.85461611e-02 -3.17651659e-01 -9.01133940e-02\\n1.73144713e-01 1.64044555e-02 3.10877353e-01 -2.86493987e-01\\n9.10846144e-02 -9.45265517e-02 -3.37682039e-01 -9.01720226e-02\\n3.98449898e-02 5.40296733e-01 1.88922714e-02 -2.44994655e-01\\n-1.95327938e-01 4.30162072e-01 -1.86767906e-01 -1.05130345e-01\\n-4.22023684e-01 1.42143909e-02 -2.52014607e-01 2.62868404e-01\\n-1.59118950e-01 1.02813933e-02 -1.38729379e-01 -2.49796048e-01\\n-3.30721319e-01 2.21400172e-01 1.93553895e-01 6.19933493e-02\\n1.81442440e-01 -4.46847945e-01 -2.18381714e-02 2.21937165e-01\\n2.35554442e-01 3.14708680e-01 8.33338797e-02 -8.71262327e-02\\n-3.45915444e-02 2.58472115e-01 -9.51578617e-02 3.27858049e-03\\n-3.19740862e-01 1.95240930e-01 -3.61432314e-01 -3.58379364e-01\\n-1.91436127e-01 -2.91244745e-01 5.32719046e-02 2.95230061e-01\\n1.79268554e-01 -1.24208011e-01 -5.72530739e-02 -4.92347062e-01\\n2.27682278e-01 -5.71119692e-03 2.34419107e-01 8.71739462e-02\\n1.38690248e-01 4.49256152e-01 7.72836208e-02 -1.18679494e-01\\n-9.27810892e-02 1.10134482e-01 -2.03555584e-01 -1.90139338e-02\\n-8.88487920e-02 -4.82167929e-01 -1.86358348e-01 4.85445172e-01\\n1.02756664e-01 -1.65900752e-01 -1.38045281e-01 2.81440318e-01\\n-2.19744761e-02 -2.87334770e-01 -2.87153959e-01 -9.03102197e-03\\n3.98945391e-01 1.02387711e-01 2.84408033e-01 -4.59530681e-01\\n-3.58351991e-02 -1.12431869e-01 -1.31006092e-01 3.69533986e-01\\n-9.26976837e-03 -1.71559677e-02 -5.80750890e-02 -2.80332834e-01\\n3.09269339e-01 -2.40515903e-01 -1.20958863e-02 1.83207259e-01\\n2.16813069e-02 -7.87165537e-02 -4.90577340e-01 8.22712928e-02\\n-4.84090522e-02 -2.34726727e-01 6.49087131e-02 9.93404239e-02\\n4.13053259e-02 8.31290260e-02 -4.33365464e-01 -1.60270169e-01\\n-2.73173273e-01 -1.48864184e-02 -1.01929843e-01 -4.78242606e-01\\n-1.35987833e-01 -1.06385751e-02 -4.61583883e-01 2.18421265e-01\\n-1.72643021e-01 -2.78825797e-02 1.16837531e-01 -3.33104916e-02\\n-3.43747765e-01 -4.07880358e-02 1.90739334e-01 1.22684263e-01\\n-1.04270823e-01 -1.92071080e-01 3.72905508e-02 -1.04549646e+00\\n1.30296722e-01 -5.25312796e-02 -6.33966699e-02 1.53619871e-01\\n-6.23431951e-02 -4.66623932e-01 1.21072285e-01 -2.26599574e-01\\n-2.59526759e-01 -1.82114974e-01 -1.79347202e-01 -5.78566909e-01\\n1.74562130e-02 1.73893452e-01 -2.43642583e-01 9.91964042e-02\\n-1.80627495e-01 4.67720926e-01 2.90250368e-02 1.34733438e-01\\n-5.92419803e-02 -3.22629094e-01 5.51503785e-02 -5.42692065e-01\\n-3.99296254e-01 -7.62159452e-02 -2.77674198e-01 -7.62889013e-02\\n-4.42121699e-02 -2.38437042e-01 -2.38500629e-02 1.04686610e-01\\n1.33098677e-01 1.38216212e-01 -6.88350797e-02 -3.02352849e-02\\n4.38568145e-02 -5.49843848e-01 7.60013284e-03 1.25216827e-01\\n-6.87079430e-02 -6.15439788e-02 3.10668319e-01 5.94193302e-02\\n1.51098415e-01 -3.42876405e-01 3.04079890e-01 -4.73696858e-01\\n-3.52422208e-01 -1.02299422e-01 1.15718827e-01 3.09767015e-02\\n4.40727264e-01 -3.89883310e-01 -1.77950673e-02 2.15530694e-01\\n-5.26006185e-02 4.49993052e-02 3.74439180e-01 -9.81108323e-02\\n-1.72202095e-01 1.94005996e-01 -3.28821987e-01 1.58162490e-01\\n6.44426525e-01 9.71629992e-02 1.63278416e-01 1.99211195e-01\\n8.51648599e-02 2.57614285e-01 4.42488700e-01 -2.15315223e-02\\n-2.30379656e-01 3.38848710e-01 1.34154290e-01 -7.84104347e-01\\n-7.12086558e-02 5.24897780e-03 -3.45720202e-01 -4.09364492e-01\\n6.32258475e-01 3.74652267e-01 -3.20911914e-01 -2.64206171e-01\\n-2.14571998e-01 -2.93611228e-01 -9.04613882e-02 -8.07626769e-02\\n1.04360253e-01 -5.89491874e-02 5.14246285e-01 -5.77799827e-02\\n2.98325330e-01 3.94017309e-01 -2.33465746e-01 -2.60939300e-01\\n-9.88230407e-02 7.20113888e-02 -3.50659736e-03 4.40833092e-01\\n-2.17162192e-01 3.58903855e-01 -8.39845389e-02 2.06221074e-01\\n2.67525464e-02 -8.42386633e-02 1.27595710e-02 4.33015125e-03\\n-2.67094956e-03 2.48375416e-01 5.03314912e-01 2.64433086e-01\\n4.17895287e-01 3.51910889e-01 2.83470899e-01 1.02277135e-03\\n5.92872977e-01 4.03473586e-01 1.70991674e-01 7.97142535e-02\\n2.95545254e-02 -8.40264745e-03 -1.32184243e-02 8.39368030e-02\\n1.93413943e-01 2.76795000e-01 -4.69836257e-02 8.57254922e-01\\n2.83694625e-01 1.85646594e-01 5.20147920e-01 -4.81117815e-01\\n-3.03524613e-01 -1.04773149e-01 3.16642702e-01 -4.28495944e-01\\n-4.38466556e-02 1.62076697e-01 -4.81925383e-02 1.38399273e-01\\n-2.65730709e-01 -2.46834874e-01 -1.22185603e-01 3.39174837e-01\\n6.21627606e-02 -2.77915150e-01 -3.24637145e-01 5.30817024e-02\\n-3.90307568e-02 -1.64872363e-01 -4.78122920e-01 -3.55879478e-02\\n-1.62898108e-01 -2.85573632e-01 -1.14847891e-01 -7.87149295e-02\\n-1.75909787e-01 -2.35179320e-01 -3.18051800e-02 2.51442962e-03\\n9.02554691e-02 -4.39501815e-02 3.29973735e-02 -1.78352058e-01\\n4.22430009e-01 1.93573773e-01 5.28786302e-01 8.96317437e-02\\n1.22774325e-01 -2.80449748e-01 -7.57336169e-02 9.47676525e-02\\n3.08251590e-01 -5.87870739e-02 4.26246412e-02 4.77853417e-01\\n-3.60689729e-01 -1.48818403e-01 1.36610836e-01 3.36928487e-01\\n-4.77062523e-01 -1.50291482e-02 -2.92839017e-02 1.94664672e-01\\n1.48600787e-01 9.61889699e-02 -2.06270605e-01 -3.70850451e-02\\n-2.19964057e-01 -3.76349926e-01 5.17789945e-02 9.52670947e-02\\n-1.77644908e-01 -2.95919012e-02 1.50312439e-01 2.24202201e-01\\n-1.13957815e-01 8.58803652e-03 -2.93815825e-02 3.66153903e-02\\n1.59092173e-01 2.14664996e-01 -2.48889595e-01 -3.92054886e-01\\n-2.03100368e-01 1.72215775e-01 -1.91089347e-01 7.64004812e-02\\n1.24061391e-01 2.84464210e-01 -2.04099212e-02 1.77199900e-01\\n3.70478779e-01 -1.84260115e-01 -1.40958399e-01 -2.90715069e-01\\n-3.34070265e-01 -2.93073833e-01 1.55471340e-02 -2.60204047e-01\\n2.29036763e-01 -2.44325683e-01 -7.27668405e-02 4.04270813e-02\\n-1.92970902e-01 -3.44104618e-01 9.01933610e-02 -2.75175422e-02]]',\n", + " 'job_description': \"For one of our clients in the Romandie the French speaking part of Switzerland, in Lausanne, we are looking for a Business Analyst - Application Support Analyst who is open-minded and client-oriented, is passionate about his work, who believes in success and has a strong team spirit. Are you looking for you next challenging position? This opportunity is for you!Your challengesYou manage new applications and new functionalities in a manufacturing environment. You are in charge of lifecycle and support in manufacturing and application Level 2.Your skillsExperience in a validated environmentAt least 3-4 years' experienceExperience in application development lifecycle (supply chain)ITSM mandatoryGxP systems and computer validation systemMedical deviceLabelling systems a plusFrench and English mandatoryYour horizonsDo you think you have what it takes to face this challenge ? Don't hesitate to contact me on +41 58 233 27 08 or apply directly on this advert.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactMadame Joanna Fumey, Recruitment Trainee, looks forward to answer your questions by phone +41 58 233 2706.You can apply directly online.JN -072019-296587\",\n", + " 'soft_skills': '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Validations\", \"Supply Chain\", \"Customer Support Analyst\", \"Application-Level Gateway\"]',\n", + " 'languages': \"['English', 'Inupiaq']\"},\n", + " {'company_id': '19',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.57442186e-02 1.89378172e-01 4.58602995e-01 -1.45687848e-01\\n3.45443606e-01 -2.16841891e-01 8.32162946e-02 3.52371961e-01\\n1.24339201e-02 -4.67337012e-01 -4.36932482e-02 -2.53092408e-01\\n8.15873034e-03 1.78620026e-01 9.19062123e-02 3.34598005e-01\\n1.35245293e-01 6.92561716e-02 -1.29040137e-01 2.71780521e-01\\n9.42296386e-02 -1.08291984e-01 1.08184852e-01 6.58065796e-01\\n4.39737737e-01 -3.50390095e-03 8.25651959e-02 2.36601103e-02\\n-1.88826829e-01 -2.74464101e-01 5.30852914e-01 4.08361554e-02\\n-7.19722211e-02 -3.93924177e-01 1.58049494e-01 2.32869945e-02\\n-2.86376804e-01 -4.16797511e-02 -2.13953450e-01 9.69535857e-02\\n-5.73742211e-01 -1.87130108e-01 7.54973069e-02 -3.84808220e-02\\n-1.87633306e-01 -3.86527628e-01 1.59954488e-01 -1.31412759e-01\\n2.04590514e-01 2.34967042e-02 -5.04115880e-01 1.17434680e-01\\n-2.37346560e-01 -1.75174907e-01 3.21135372e-01 6.29935443e-01\\n-1.07809961e-01 -5.00485003e-01 -6.41662359e-01 -2.75313377e-01\\n2.45443076e-01 -1.71210006e-01 -7.27842301e-02 -2.52907455e-01\\n2.45358676e-01 5.86717995e-03 2.42415704e-02 3.97441804e-01\\n-7.66188264e-01 -9.66802761e-02 -2.71132886e-01 -7.53038973e-02\\n-2.11624309e-01 -2.15147629e-01 -2.74551660e-01 -5.57647413e-03\\n-1.80703193e-01 3.87804180e-01 1.91151038e-01 -2.06853375e-02\\n-1.49018973e-01 3.29754204e-01 -3.67794573e-01 4.48862791e-01\\n1.91973403e-01 1.90802887e-01 1.28035456e-01 3.02774906e-01\\n-3.27059388e-01 5.10012865e-01 2.04714894e-01 -3.37980658e-01\\n1.56661585e-01 7.07613304e-03 4.14200902e-01 6.77157044e-02\\n2.19367087e-01 6.60389513e-02 -1.26968578e-01 3.35014522e-01\\n3.14370960e-01 -2.32037961e-01 6.44790381e-02 -1.41857684e-01\\n8.80630016e-02 5.77951036e-02 2.61894111e-02 1.06465712e-01\\n-1.05310194e-01 3.55973035e-01 1.43131435e-01 -2.12869376e-01\\n-1.89661950e-01 -5.25319874e-01 -1.89525381e-01 -1.21642835e-01\\n3.37628461e-03 1.63508311e-01 1.51153460e-01 1.88049674e-01\\n2.13702902e-01 1.00741565e-01 7.73040652e-02 8.03940892e-01\\n-4.78993095e-02 4.55966499e-03 -3.72107208e-01 4.01805699e-01\\n-5.92889590e-03 -2.37159848e-01 3.18887442e-01 2.98571169e-01\\n-2.32265908e-02 -2.42290705e-01 -1.71685100e-01 3.49982142e-01\\n-3.67573500e-02 -2.24747822e-01 -2.64400572e-01 1.07550569e-01\\n4.39774804e-03 -3.49793196e-01 5.52819133e-01 3.12125832e-01\\n1.17431127e-01 6.35276511e-02 -2.14530956e-02 -2.11070105e-01\\n-1.95397601e-01 1.62346095e-01 -7.65882358e-02 8.91475454e-02\\n-7.25879595e-02 -2.44807556e-01 -2.70162940e-01 2.02972338e-01\\n-2.17410073e-01 1.95208877e-01 -1.24944247e-01 -8.28449875e-02\\n3.81945342e-01 1.78594775e-02 -2.25519925e-01 3.72184724e-01\\n3.40959318e-02 1.39145106e-01 -4.29430306e-02 2.48543113e-01\\n-1.61985934e-01 1.01750031e-01 -7.04445541e-02 -1.29612893e-01\\n5.85227370e-01 5.40453121e-02 2.15280756e-01 -4.69587334e-02\\n2.70395756e-01 8.50804383e-04 1.02759056e-01 7.77248293e-02\\n-6.19488299e-01 3.39358628e-01 -5.55838794e-02 -1.43092033e-02\\n1.46093503e-01 -1.61656946e-01 1.38867214e-01 -2.29362056e-01\\n1.68008003e-02 -7.87989646e-02 -4.11463499e-01 -2.18771070e-01\\n-1.25140309e-01 -1.06575660e-01 3.63091737e-01 -5.42125642e-01\\n-1.41909510e-01 2.78147519e-01 -5.09710848e-01 -5.86142242e-02\\n1.31657004e-01 2.13778183e-01 1.07512318e-01 1.01412848e-01\\n-2.88605869e-01 -4.09494311e-01 1.36799783e-01 -3.72825116e-01\\n-2.24919423e-01 1.21425360e-01 -2.36481696e-01 3.20779920e-01\\n1.80483922e-01 -6.72204494e-02 -1.46790504e-01 1.70296818e-01\\n-1.41987830e-01 -7.51632378e-02 9.93040875e-02 5.33701794e-04\\n2.95052499e-01 5.38034290e-02 -3.59236717e-01 3.52307439e-01\\n-8.59657377e-02 6.35529459e-01 -1.41941216e-02 -9.00925040e-01\\n5.04979610e-01 3.19723397e-01 1.39187276e-02 -3.71123821e-01\\n5.30409276e-01 -2.86310464e-01 9.11581442e-02 1.22200146e-01\\n-4.28514093e-01 -3.71057987e-01 1.31020680e-01 -1.15974046e-01\\n-1.84137508e-01 3.88696700e-01 -2.34523769e-02 1.78008988e-01\\n1.61042050e-01 -1.11734971e-01 -1.68423966e-01 -1.73990037e-02\\n-5.46026193e-02 -1.45172730e-01 -4.74860728e-01 -2.09798235e-02\\n-1.17428936e-01 -4.04468924e-01 -2.93307379e-02 -4.42003250e-01\\n-2.30420664e-01 -4.77646470e-01 -1.02652945e-01 1.89736173e-01\\n2.81514168e-01 1.13948278e-01 -3.21220122e-02 9.14221630e-02\\n-1.57583326e-01 -7.04185903e-01 4.72786278e-02 2.19780728e-01\\n3.34958822e-01 1.87255397e-01 1.04577176e-01 -1.11959754e-02\\n-1.83503442e-02 6.01614475e-01 -2.15519384e-01 -1.07419126e-01\\n1.23987228e-01 1.67821482e-01 1.59569293e-01 -8.35024044e-02\\n-3.11752819e-02 2.22432867e-01 -3.12341928e-01 -6.25094492e-03\\n5.03772534e-02 -1.00405335e-01 3.88597518e-01 9.08679888e-02\\n-4.27372426e-01 -1.29270718e-01 -6.59503564e-02 1.97064579e-01\\n-6.08596206e-01 -2.01407060e-01 7.48643100e-01 1.04797050e-01\\n8.83072615e-02 2.24123687e-01 2.17801899e-01 -1.43636227e-01\\n-1.52145267e-01 -6.77895546e-02 3.23389053e-01 6.21610247e-02\\n1.53736278e-01 1.14279561e-01 -7.33488649e-02 -5.74980557e-01\\n-3.55068779e+00 -1.64703622e-01 1.84271932e-01 -1.85034066e-01\\n1.80901453e-01 -1.00180998e-01 1.17739208e-01 -1.50927275e-01\\n-2.62816548e-01 -5.28686494e-02 -1.35489658e-01 -6.53107762e-02\\n2.06079051e-01 2.48377323e-01 1.13764636e-01 4.30373818e-01\\n1.17208853e-01 -1.57071665e-01 2.68973317e-02 3.14729065e-01\\n-2.97535866e-01 -5.22082031e-01 2.13651210e-01 -1.32526653e-02\\n1.66789129e-01 2.55288512e-01 -3.46194297e-01 -9.10048410e-02\\n-1.27016604e-01 -1.97351754e-01 1.33490548e-01 -2.54421264e-01\\n-1.37043707e-02 2.51917362e-01 1.35722086e-01 -9.21426639e-02\\n1.44268051e-01 -4.84136403e-01 -1.68320924e-01 -4.27092761e-01\\n1.11622274e-01 -6.38089001e-01 -5.79575561e-02 -1.19757831e-01\\n6.98781610e-01 -3.45104188e-01 1.13973171e-01 1.07796200e-01\\n1.01013489e-01 2.08540320e-01 1.13630064e-01 4.95656915e-02\\n-2.87700295e-01 -3.53833109e-01 -9.52672064e-02 2.40692031e-02\\n4.42098856e-01 5.33463299e-01 -2.35440180e-01 -2.54142210e-02\\n-1.15769421e-06 -2.84247547e-01 -5.17201722e-01 -2.51405776e-01\\n-2.10174441e-01 -1.69752970e-01 -6.15881979e-01 -3.97114992e-01\\n-7.88984746e-02 -2.63941288e-01 -2.23394036e-01 6.25844002e-01\\n-2.06623614e-01 -2.57064670e-01 -3.64080369e-02 -4.90673393e-01\\n2.85427868e-01 -1.97943866e-01 1.30878374e-01 -1.43519461e-01\\n-2.74407268e-01 -4.54920530e-01 2.32744161e-02 -3.33823962e-03\\n-1.06337711e-01 -2.36083239e-01 1.63593039e-01 -1.44239888e-01\\n-2.62382567e-01 -6.02244914e-01 3.21909577e-01 9.43948328e-02\\n2.24654660e-01 8.74131992e-02 2.99375296e-01 -1.30910967e-02\\n2.52074867e-01 -1.87841848e-01 -1.35526121e-01 -2.91167527e-01\\n1.19264625e-01 1.72656234e-02 3.94230008e-01 -2.45610863e-01\\n-3.27338614e-02 1.17445350e-01 -2.34751686e-01 -8.47606435e-02\\n1.63389355e-01 -3.95684056e-02 1.69124857e-01 -2.08538428e-01\\n2.82168567e-01 -9.27300900e-02 -2.28529289e-01 5.23281954e-02\\n6.12593256e-02 5.20939171e-01 -1.06351301e-02 -4.41916615e-01\\n-1.17495758e-02 4.38328713e-01 -8.81546959e-02 -1.43787414e-01\\n-2.93178886e-01 8.83530378e-02 -1.90289125e-01 2.24267989e-01\\n-2.91240178e-02 -5.06260805e-02 -3.16101491e-01 -2.98078388e-01\\n-1.07219346e-01 3.41463357e-01 2.44841889e-01 7.98254088e-02\\n5.73271327e-02 -3.68674308e-01 -2.06909375e-03 1.30784526e-01\\n5.05497456e-02 4.16423053e-01 1.82781354e-01 -8.88916925e-02\\n4.20207419e-02 3.35776687e-01 -2.04663292e-01 6.93471283e-02\\n-2.74276704e-01 7.25523606e-02 -5.83320141e-01 -2.98657089e-01\\n-2.15485603e-01 -4.18362111e-01 1.44552931e-01 1.88294783e-01\\n4.96755652e-02 -1.90061331e-02 1.12054683e-01 -4.96090174e-01\\n1.75016552e-01 8.65428224e-02 1.95412472e-01 1.35037586e-01\\n1.70118734e-02 6.25534058e-01 1.06636574e-02 -1.58718303e-01\\n-9.90718529e-02 7.04266131e-02 -3.55482191e-01 -2.00560391e-01\\n-7.14957295e-03 -4.81580049e-01 -3.54342349e-02 4.26313251e-01\\n3.70509215e-02 -2.31378958e-01 -1.70018539e-01 3.04721743e-01\\n-1.37174744e-02 -1.47132412e-01 -1.11989759e-01 9.45148170e-02\\n3.97196591e-01 9.56301689e-02 2.37273112e-01 -4.05986547e-01\\n-1.19029516e-02 5.14404997e-02 -1.19741522e-01 5.58856964e-01\\n2.29226977e-01 3.53131071e-02 -7.31827393e-02 -1.75493017e-01\\n3.19736302e-01 -2.61813253e-01 -1.53956590e-02 -2.99814809e-02\\n2.79348642e-01 -1.27128094e-01 -4.08747017e-01 1.69442773e-01\\n-3.21790352e-02 -1.47803798e-01 3.46264690e-02 1.82499349e-01\\n-3.89207713e-02 9.93467495e-02 -6.64985895e-01 -3.19091648e-01\\n-3.22563142e-01 9.05268826e-03 5.65712946e-03 -4.80576068e-01\\n-1.92757323e-02 -6.36041909e-02 -4.58779812e-01 3.48046005e-01\\n-7.58412182e-02 -6.75795376e-02 1.85382277e-01 9.40430313e-02\\n-2.76519358e-01 -4.20381427e-02 1.14045098e-01 2.48870060e-01\\n-2.24173099e-01 -1.84890062e-01 -3.76539603e-02 -9.95263577e-01\\n1.62934363e-01 1.49770444e-02 -2.04363242e-01 2.07640976e-01\\n-4.41218615e-02 -5.92069209e-01 1.42739028e-01 -3.37589234e-01\\n-2.61765927e-01 4.65812199e-02 -2.29904130e-01 -5.93661010e-01\\n8.68923776e-03 4.75779511e-02 -2.61916935e-01 4.32812899e-01\\n-4.37921315e-01 4.10880923e-01 -1.61196992e-01 6.48207441e-02\\n4.26573530e-02 -3.12212408e-01 8.73913169e-02 -4.55629021e-01\\n-4.13134485e-01 -1.83209226e-01 -3.19873929e-01 -1.79199800e-01\\n1.08958088e-01 -3.76982719e-01 -1.40612975e-01 3.17906663e-02\\n3.50609571e-01 1.21649176e-01 -7.01128691e-02 -3.23399097e-01\\n1.58750117e-02 -5.32752216e-01 1.14305951e-01 -9.10520405e-02\\n-1.80941436e-03 -1.31279498e-01 2.39057496e-01 1.12804748e-01\\n1.22529611e-01 -4.85555768e-01 3.65202576e-01 -3.43379617e-01\\n-2.96050042e-01 -7.89743960e-02 -5.31284325e-02 5.60663976e-02\\n3.44601572e-01 -4.29282725e-01 -4.91534024e-02 3.71201366e-01\\n1.26918122e-01 -8.86475742e-02 2.98863947e-01 -1.57297309e-02\\n-8.59000757e-02 2.79796511e-01 -3.88879031e-01 1.15396433e-01\\n6.70512319e-01 -7.57927671e-02 2.17453286e-01 2.01821133e-01\\n2.34108672e-01 2.73227662e-01 4.88065779e-01 2.38331705e-02\\n-1.37448862e-01 3.61839533e-01 3.96960452e-02 -5.11571527e-01\\n2.63351612e-02 5.05421944e-02 -2.23253846e-01 -2.73406237e-01\\n6.59672201e-01 4.68181789e-01 -4.63041395e-01 -1.42755613e-01\\n-1.42072663e-01 -2.25494310e-01 1.46025568e-01 -1.30116567e-01\\n2.34307088e-02 -7.29178563e-02 4.67162848e-01 -4.82024923e-02\\n1.25718415e-01 3.85010153e-01 -2.90009052e-01 -2.76701629e-01\\n-3.56341489e-02 1.55911893e-01 1.50719639e-02 5.17825067e-01\\n-2.04792798e-01 4.44046021e-01 7.86947377e-04 1.95356041e-01\\n-1.40811846e-01 5.07457228e-03 9.64626968e-02 1.08444966e-01\\n1.23171754e-01 -1.21941734e-02 4.27501470e-01 4.72140640e-01\\n3.59620154e-01 5.14673352e-01 3.17754984e-01 6.47062212e-02\\n4.17997748e-01 5.81712186e-01 4.58585739e-01 2.54909128e-01\\n-4.20142077e-02 2.78132018e-02 7.19104707e-02 5.38849868e-02\\n2.57421196e-01 3.44139099e-01 2.78885867e-02 7.73714185e-01\\n3.99364293e-01 2.87696034e-01 5.40668905e-01 -5.74597895e-01\\n-3.45262378e-01 1.61527824e-02 3.47008169e-01 -4.32356685e-01\\n2.75519472e-02 2.16022134e-01 -1.17366299e-01 1.85706183e-01\\n-4.60349798e-01 -2.14406520e-01 -1.44643962e-01 2.19187915e-01\\n-2.63861194e-02 -1.88618898e-01 -1.99324846e-01 7.89820403e-02\\n-1.90444171e-01 -1.17522910e-01 -4.87956494e-01 -3.54552385e-03\\n-1.89638913e-01 -3.02673072e-01 -1.80147767e-01 -3.55094261e-02\\n-2.01062590e-01 -2.92690456e-01 -2.29442716e-01 6.42129630e-02\\n3.24731708e-01 -1.75561741e-01 -3.83354835e-02 -1.96214318e-01\\n2.83486485e-01 1.28776968e-01 4.99122351e-01 3.21448259e-02\\n5.42231798e-02 -2.67710298e-01 -2.02247620e-01 6.71580732e-02\\n2.80395955e-01 1.35796130e-01 3.23181003e-02 3.95114034e-01\\n-2.29575202e-01 -1.63464442e-01 1.26224726e-01 3.90273929e-01\\n-4.83845234e-01 9.70266908e-02 -1.29094064e-01 1.67544350e-01\\n1.48680508e-01 3.06030422e-01 -2.15587735e-01 8.80230591e-02\\n-1.67847246e-01 -3.67088497e-01 3.34074646e-01 -1.53859198e-01\\n-1.14275441e-01 -2.80836690e-02 1.77481219e-01 2.28390440e-01\\n-2.56042242e-01 2.47418042e-02 5.21527138e-03 1.42531469e-01\\n-7.09108412e-02 2.67526418e-01 -3.03575188e-01 -2.74744451e-01\\n-2.75416255e-01 1.63753912e-01 -1.65979922e-01 2.96007007e-01\\n1.11757308e-01 3.08608264e-01 2.21313253e-01 -1.95499156e-02\\n3.77684683e-01 7.04156328e-03 -6.18286505e-02 -1.84935808e-01\\n-3.29066694e-01 -9.96560231e-02 -6.74964860e-02 -6.32238463e-02\\n1.85466900e-01 -4.43852276e-01 -8.46024007e-02 -6.99994415e-02\\n-2.12609187e-01 -3.41137022e-01 -2.60685924e-02 -8.48833621e-02]]',\n", + " 'job_description': 'About Us B3i is a growing and dynamic business operating in the global insurance market. We are at the forefront of bringing real innovation into the industry through Blockchain / DLT solutions which we believe will transform insurance. Our vision is simply to make insurance more relevant, accessible and affordable. We have a flat management structure with a start-up mentality and are very ambitious; we want determined and enthusiastic people to share our vision and join us on this journey of innovation. What You Will Do You will be developing distributed insurance applications and services using R3 Corda You will work within a highly skilled and motivated engineering team You will bring your perspective on design and engineering helping to create innovative solutions Your code and applications will run on a global distributed network What you will bring on a professional level Strong knowledge of Java or Kotlin development, tooling and ecosystem Strong object-oriented development Some knowledge about Blockchain, distributed ledger and networks Agile software development experience including tools such as JIRA and CI Experience of working on multi-layered projects It would be great if you have R3 Corda development experience and on a personal level Share you knowledge, insight and learning openly Open to feedback and challenges from the team Curious to learn new skills What we offer B3i offers a competitive package including flexible working time and location & sabbatical programme You will work with a great bunch of people who are really making history in central Zurich Corda certification as part of your onboarding To apply for a job please send your CV in English only to jobs@b3i.tech. Please check your spam mailbox as our replies may be there. Disclaimer Notice for recruitment agencies B3i does not accept speculative CVs. We will only review CVs sent with an application for an advertised post. Any unsolicited CVs received will be treated as the property of B3i Services AG and Terms & Conditions associated with the use of such CVs will be considered null and void.',\n", + " 'soft_skills': '[\"Innovation\", \"Professionalism\", \"Management\", \"Business Operations\"]',\n", + " 'hard_skills': '[\"Advertisement\", \"Tooling\", \"Accessioning\", \"Object-Oriented Software Development\", \"CAN-SPAM Act\", \"Blockchain\", \"Industrialization\", \"Perspective (Graphical)\", \"Onboarding\", \"Layering\", \"Levelling\", \"Agile Software Development\", \"Corda\", \"Personalization\", \"Receivables\", \"Distributed Development\", \"Software Development\", \"JIRA Studio\", \"Distributed Network Protocol (DNP3)\", \"Java (Programming Language)\", \"Kotlin\"]',\n", + " 'languages': \"['English', 'Limburgan', 'Haitian Creole']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'trade execution analyst / software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.85091037e-01 2.04619199e-01 5.10620415e-01 -6.51040226e-02\\n4.66690749e-01 -5.00187613e-02 6.03383826e-03 3.35154712e-01\\n-5.36593348e-02 -2.98258096e-01 -1.98521569e-01 -1.66453809e-01\\n3.46847624e-02 -1.77067891e-02 1.59308732e-01 4.10886824e-01\\n3.51590037e-01 -8.82257894e-03 -2.13037148e-01 1.64273307e-01\\n7.06671551e-02 -8.84997025e-02 -2.57672882e-03 7.66402900e-01\\n5.10686100e-01 4.71873507e-02 -6.63095489e-02 7.92774558e-02\\n-2.55035430e-01 -2.95039028e-01 4.79567021e-01 5.99750280e-02\\n-6.44854531e-02 -1.86851650e-01 1.36062488e-01 1.36998907e-01\\n-2.28729755e-01 -4.00537923e-02 -6.81936443e-02 1.21841595e-01\\n-3.60534966e-01 -4.91494313e-02 -5.59614273e-03 4.93936874e-02\\n-3.42517227e-01 -4.23602045e-01 -4.48396392e-02 -6.60899058e-02\\n1.17131531e-01 3.09478678e-02 -5.36783695e-01 3.76502812e-01\\n-1.76588088e-01 -1.21841013e-01 2.61932105e-01 5.66472471e-01\\n-1.41027644e-01 -4.91555572e-01 -3.68778050e-01 -3.13987583e-01\\n2.78216690e-01 -1.50731757e-01 1.92742527e-01 -1.35541305e-01\\n3.25613350e-01 -2.82434672e-02 -3.22934352e-02 4.00623381e-01\\n-6.79492116e-01 -1.12575881e-01 -3.74150693e-01 -2.83135641e-02\\n-4.23235893e-01 1.08387806e-02 -4.06733513e-01 -2.57453412e-01\\n-7.36116916e-02 3.28316391e-01 -1.30050614e-01 1.72331616e-01\\n-1.74550623e-01 2.77772456e-01 -6.45328835e-02 1.78385764e-01\\n2.32626155e-01 1.96029186e-01 2.49829948e-01 2.22545534e-01\\n-3.57698500e-01 4.96676534e-01 1.14173062e-01 -3.24850172e-01\\n1.01089098e-01 3.86859253e-02 3.23788583e-01 1.85296461e-02\\n1.81649983e-01 9.13754851e-02 -5.00901863e-02 1.36059105e-01\\n1.36487111e-01 -2.12326050e-01 7.33284578e-02 -8.51624236e-02\\n-1.81328058e-01 7.99628198e-02 6.05327152e-02 8.56052265e-02\\n-4.07944322e-01 4.06187475e-01 1.91584468e-01 -3.11237395e-01\\n-6.04919642e-02 -5.85686326e-01 -1.30609214e-01 7.85060674e-02\\n-1.14688694e-01 1.47299394e-01 2.71155089e-01 2.11723134e-01\\n3.13329816e-01 -2.03918293e-02 3.02944422e-01 8.13995957e-01\\n2.94046421e-02 -7.70315304e-02 -2.63004214e-01 4.11314815e-01\\n5.61612949e-04 -3.37888360e-01 1.64511308e-01 2.41312400e-01\\n7.93804005e-02 -8.48746449e-02 -3.78427058e-01 1.46145672e-01\\n-1.44996509e-01 -2.88919002e-01 -2.42031157e-01 8.06707963e-02\\n-1.95702553e-01 -6.14759028e-01 4.74447578e-01 -7.63664916e-02\\n1.57055378e-01 -2.14279875e-01 8.33180100e-02 -1.37408171e-02\\n3.11715249e-02 3.19720536e-01 1.04770750e-01 -7.29554938e-03\\n-2.41072729e-01 -3.16978991e-01 -2.25428164e-01 2.73526251e-01\\n-1.52940214e-01 1.92718521e-01 -2.18763649e-01 -1.30265921e-01\\n2.63985932e-01 6.14580065e-02 -3.41005027e-01 1.75263375e-01\\n-1.99276675e-02 -3.48124683e-01 -1.87673718e-01 3.09255779e-01\\n-2.33990535e-01 1.59642130e-01 3.25187556e-02 -2.64039129e-01\\n6.08268142e-01 1.96163714e-01 2.57061064e-01 -4.30340208e-02\\n1.68533683e-01 -9.06642377e-02 3.37996453e-01 1.31459599e-02\\n-6.74413681e-01 4.31156278e-01 -7.01845214e-02 -7.69250840e-02\\n7.50271380e-02 8.82152840e-03 2.08242044e-01 -4.74060863e-01\\n8.45821723e-02 -1.01521321e-01 -3.30265135e-01 -3.42248112e-01\\n-1.61084905e-01 -3.51374410e-02 2.69895166e-01 -3.80850554e-01\\n-3.09459418e-02 1.37307763e-01 -5.53083897e-01 -7.68688023e-02\\n1.15812600e-01 1.42038539e-01 1.64584983e-02 1.74061865e-01\\n-1.78126544e-01 -3.95154089e-01 1.36913210e-01 -4.57094908e-01\\n-4.23616469e-01 1.22622997e-02 -3.09059113e-01 1.88693330e-01\\n8.10594670e-03 7.81895965e-02 -7.15234950e-02 1.80484787e-01\\n-2.41270572e-01 3.38823088e-02 1.57842025e-01 8.68855715e-02\\n4.07070071e-01 5.14432751e-02 -3.28591257e-01 5.21053493e-01\\n-1.24146447e-01 4.59934533e-01 1.32628560e-01 -8.03753912e-01\\n4.82357711e-01 2.65952080e-01 1.58730045e-01 -3.91914636e-01\\n5.96842706e-01 -3.58214885e-01 2.70470902e-02 1.29685715e-01\\n-4.18674409e-01 -1.64182395e-01 3.68202478e-01 -2.25729465e-01\\n-2.14274198e-01 5.28696835e-01 6.59118220e-02 1.67495251e-01\\n2.06189439e-01 -1.12585060e-01 -1.09313183e-01 1.40816458e-02\\n-2.34171227e-01 -1.47374019e-01 -4.21732605e-01 6.99210837e-02\\n-7.71759972e-02 -5.26516914e-01 -2.17225313e-01 -5.73644340e-01\\n-1.55633450e-01 -3.29605043e-01 -9.96511355e-02 1.61535934e-01\\n2.45953396e-01 1.57242641e-01 1.38403952e-01 -1.03534713e-01\\n-1.29525021e-01 -5.64915955e-01 -1.19086288e-01 1.14860572e-01\\n3.32521707e-01 1.98567420e-01 6.17011786e-02 1.05935872e-01\\n3.28439698e-02 5.74408352e-01 -3.52464676e-01 -2.53765792e-01\\n1.00516759e-01 2.00311184e-01 -4.89607081e-02 -9.95841399e-02\\n6.10621311e-02 2.96195805e-01 -3.28943640e-01 7.12859631e-02\\n-1.32148489e-01 9.11115259e-02 4.17214066e-01 3.33463177e-02\\n-1.84195608e-01 -1.89345151e-01 -3.77560817e-02 1.97201446e-01\\n-5.19430399e-01 -2.11683735e-01 6.54004693e-01 2.36777827e-01\\n5.77039868e-02 2.32521206e-01 3.01941127e-01 -4.07661498e-02\\n-1.51548117e-01 -2.09388509e-01 2.31950566e-01 5.81699330e-03\\n2.24482152e-03 -1.01773196e-03 -2.40546927e-01 -5.78600883e-01\\n-3.20362926e+00 -9.84428227e-02 1.49676753e-02 -2.90632337e-01\\n3.18107635e-01 -8.93173143e-02 1.98138952e-01 -7.40488991e-02\\n-4.12373543e-01 1.01753466e-01 -1.39111176e-01 -2.04957291e-01\\n1.27219498e-01 9.61417258e-02 1.30995825e-01 1.88647151e-01\\n2.35237584e-01 -3.75540048e-01 -4.57503460e-02 3.54313821e-01\\n-1.15984015e-01 -7.63727188e-01 2.34271213e-01 1.30747199e-01\\n2.71491647e-01 1.80436701e-01 -4.54936624e-01 -1.59032360e-01\\n-3.93359095e-01 -3.21211755e-01 6.02186210e-02 -3.07940274e-01\\n-1.32310331e-01 4.00583118e-01 3.09675694e-01 -1.90407515e-01\\n1.00369409e-01 -4.14575279e-01 -2.08923761e-02 -4.34703231e-01\\n2.00210467e-01 -5.25028944e-01 6.56152070e-02 -1.14343818e-02\\n8.06143284e-01 -2.24760830e-01 2.58111447e-01 1.71134844e-02\\n1.20885402e-01 2.47903317e-01 4.62493971e-02 -6.58731814e-03\\n-2.57738113e-01 -3.36681604e-01 -8.01588893e-02 -6.46628514e-02\\n4.32676703e-01 4.91073161e-01 -1.93123296e-01 3.21533568e-02\\n-1.69212148e-02 -2.98631698e-01 -3.82666826e-01 -2.13263571e-01\\n-3.64790022e-01 -1.11335754e-01 -6.65842831e-01 -4.77787882e-01\\n-3.48119647e-03 -1.34529367e-01 -3.98418605e-02 5.15336931e-01\\n-2.02868536e-01 -3.81557852e-01 -1.61777988e-01 -5.09182870e-01\\n1.75725177e-01 -1.63776159e-01 1.70602351e-01 -1.66642606e-01\\n-1.07740387e-01 -5.25667429e-01 2.77577370e-01 -8.89344364e-02\\n8.06397945e-02 -7.35676289e-02 8.30572769e-02 -1.89501584e-01\\n-3.87787253e-01 -4.56062198e-01 4.00481462e-01 1.30153686e-01\\n3.52179557e-01 1.43929407e-01 1.24443293e-01 1.26359090e-01\\n2.58528441e-01 -1.34195641e-01 2.12415576e-01 -2.86248744e-01\\n9.84282047e-02 4.67083566e-02 5.39514840e-01 -2.77305961e-01\\n1.41736716e-02 1.35723874e-01 -2.06103355e-01 -1.24304436e-01\\n4.47677642e-01 -1.37442062e-02 1.56850561e-01 -1.20916814e-01\\n4.26473200e-01 -5.12115717e-01 -1.69339091e-01 4.64994274e-03\\n-3.76344398e-02 5.50475001e-01 -2.01779921e-02 -3.40297073e-01\\n-1.70277178e-01 2.97896326e-01 -1.34599775e-01 -5.53768547e-03\\n-2.24489167e-01 1.29469067e-01 -2.18793079e-01 2.69609749e-01\\n-8.92545953e-02 -1.64279312e-01 -2.19603688e-01 -1.34439170e-01\\n-8.37295502e-02 2.07883820e-01 3.08331758e-01 1.81467637e-01\\n-1.04592681e-01 -2.46755630e-01 -1.46573991e-01 1.49869487e-01\\n4.13690239e-01 3.87445658e-01 9.49726552e-02 -2.54140049e-01\\n-5.27251028e-02 1.81791559e-01 -1.69128671e-01 2.19278321e-01\\n-8.15106928e-02 6.86012879e-02 -3.87345046e-01 -2.19032288e-01\\n-9.54091996e-02 -3.41391742e-01 1.62065893e-01 4.38725531e-01\\n1.03565261e-01 -4.95192185e-02 8.88967216e-02 -3.87062997e-01\\n5.19858599e-01 1.71518356e-01 1.49904221e-01 9.35500860e-02\\n-4.50994372e-02 6.54482007e-01 -3.06490604e-02 -6.45255893e-02\\n-1.44081146e-01 1.42568192e-02 -2.51248926e-01 -1.75198197e-01\\n1.41937569e-01 -2.67589986e-01 -3.09600011e-02 3.12765300e-01\\n1.22567520e-01 -2.05899507e-01 -4.40888964e-02 2.22731575e-01\\n4.29571886e-03 -3.41325611e-01 -2.23736852e-01 1.61640882e-01\\n2.59109020e-01 5.94939515e-02 2.50276506e-01 -4.82003570e-01\\n-1.38419539e-01 -7.07595348e-02 -3.83368805e-02 3.49112928e-01\\n2.06280947e-02 1.46639317e-01 -1.86279211e-02 -3.60827982e-01\\n3.28966826e-01 -1.78552940e-01 -1.96289316e-01 2.57781774e-01\\n6.48702309e-02 -2.22579136e-01 -4.50625688e-01 -1.73233539e-01\\n2.31833570e-02 -1.44662246e-01 5.53709976e-02 1.01424426e-01\\n4.41935137e-02 1.53817534e-02 -5.32477975e-01 -1.95775241e-01\\n-3.45980018e-01 1.64158475e-02 -1.73674319e-02 -4.88357216e-01\\n-5.32545894e-02 -2.78113842e-01 -5.70401549e-01 3.44835162e-01\\n-2.14842215e-01 -2.33876575e-02 1.55070350e-01 7.86947832e-02\\n-2.18077913e-01 -2.01747239e-01 2.02409267e-01 1.89781085e-01\\n-2.26237610e-01 -2.29827464e-02 -1.66506156e-01 -1.06684673e+00\\n2.61037052e-01 3.60801145e-02 -5.97181916e-02 5.51995188e-02\\n-1.03928018e-02 -6.19252026e-01 1.13831230e-01 -3.31744432e-01\\n-4.07424271e-02 -3.17541324e-02 -2.09674284e-01 -2.97346771e-01\\n4.13273424e-02 -2.77711563e-02 -1.26554653e-01 2.97708064e-01\\n-2.12381095e-01 3.83395791e-01 4.70407121e-02 1.57263819e-02\\n-6.56993762e-02 -2.78127700e-01 9.71797928e-02 -3.63594770e-01\\n-3.65515888e-01 -2.03439847e-01 -2.71228284e-01 -1.05978064e-01\\n-2.58119050e-02 -3.34119737e-01 -1.51612103e-01 6.84462339e-02\\n3.14232856e-01 2.06878960e-01 -1.31940588e-01 -1.40903473e-01\\n-2.83300336e-02 -4.50023293e-01 2.00561300e-01 -4.34217840e-01\\n-3.87459844e-02 -2.88183272e-01 2.49233231e-01 1.31213725e-01\\n6.85437918e-02 -3.43052596e-01 2.89156079e-01 -3.82265508e-01\\n-4.15320903e-01 -1.38648421e-01 2.03164473e-01 3.16549540e-02\\n3.58117580e-01 -5.73195100e-01 -1.84942499e-01 1.97153762e-01\\n-6.12171739e-02 1.06545374e-01 3.55285943e-01 -1.33793727e-01\\n-1.57963291e-01 3.86258066e-01 -4.75795537e-01 1.58828154e-01\\n7.05654800e-01 3.63427132e-01 1.62131209e-02 3.00183564e-01\\n2.14326888e-01 2.52564013e-01 4.74269599e-01 1.52259529e-01\\n-5.35526536e-02 4.30830806e-01 1.98730994e-02 -4.98609692e-01\\n-1.06556356e-01 -1.81897298e-01 -1.81831256e-01 -4.40114945e-01\\n5.97608209e-01 4.33947474e-01 -3.30132455e-01 -3.96458745e-01\\n-5.72309755e-02 -1.45110294e-01 1.60906300e-01 -8.64301994e-02\\n4.88631241e-02 -7.07374141e-02 6.01584315e-01 7.33482093e-02\\n1.90279722e-01 5.67118347e-01 -7.62463287e-02 -2.33186781e-01\\n-6.98002502e-02 2.07382947e-01 7.05677345e-02 5.33635318e-01\\n-7.25472122e-02 2.19578207e-01 3.74375246e-02 2.02917650e-01\\n-7.18566924e-02 -9.70784500e-02 9.69700515e-02 1.33194402e-01\\n1.84285976e-02 1.55825138e-01 2.73249805e-01 4.20784712e-01\\n1.61134005e-01 3.96417558e-01 3.33076298e-01 5.95062785e-02\\n3.16097379e-01 6.15047455e-01 4.03426200e-01 2.96997037e-02\\n5.64875901e-02 9.83387902e-02 7.62199163e-02 4.10121959e-03\\n1.86966836e-01 2.71801502e-01 1.65810920e-02 7.63152957e-01\\n3.20984542e-01 3.53233010e-01 5.90254307e-01 -6.36768401e-01\\n-5.25338888e-01 -1.34675786e-01 5.29405713e-01 -4.16896909e-01\\n-3.05004027e-02 9.68977809e-02 -2.19235510e-01 3.01009625e-01\\n-4.50840116e-01 -6.93343356e-02 6.86305165e-02 -1.84907407e-01\\n1.48467883e-01 -3.39141265e-02 -1.00549042e-01 2.02821091e-01\\n-2.24864602e-01 -2.24029511e-01 -3.63234401e-01 -1.97552636e-01\\n-3.59890372e-01 -6.97920322e-02 1.74952429e-02 -1.45494431e-01\\n-2.26558298e-01 -1.94042861e-01 -4.65176404e-02 6.50496781e-02\\n2.25304917e-01 -1.30500764e-01 -5.94087541e-02 -1.39460623e-01\\n1.88282520e-01 1.58178121e-01 5.80251694e-01 -6.92357942e-02\\n1.02918446e-01 -1.96538400e-02 -2.17148885e-01 2.76337867e-03\\n2.19074667e-01 -1.14220204e-02 2.14086585e-02 4.64861333e-01\\n-3.78046215e-01 -2.45859057e-01 1.50067061e-01 2.57806301e-01\\n-3.82415563e-01 1.65406957e-01 1.67409275e-02 1.60528407e-01\\n9.50772762e-02 7.22917765e-02 -2.31025726e-01 -7.70221949e-02\\n-2.06799638e-02 -5.02159357e-01 3.26048642e-01 -1.23909242e-01\\n-1.67474523e-01 2.80449629e-01 2.37517849e-01 3.16125691e-01\\n-2.58249044e-01 -1.06094673e-03 -1.96823120e-01 3.93233933e-02\\n8.80566910e-02 2.77737677e-01 -2.13389933e-01 -2.72332013e-01\\n-2.45281443e-01 1.80390790e-01 -1.45690382e-01 1.46920875e-01\\n2.67406851e-02 2.22745925e-01 1.49194241e-01 -6.34681666e-03\\n2.85464078e-01 -4.35576662e-02 -3.20757329e-01 -2.23056123e-01\\n-1.54515401e-01 -1.36139601e-01 1.82689652e-01 -1.03024721e-01\\n2.40817755e-01 -2.99376696e-01 -1.60846654e-02 -3.07360917e-01\\n-2.86348581e-01 -2.98439085e-01 -2.56370455e-02 2.50112452e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is a leading alternative investment specialist Ihr Aufgabenbereich Your mission is to be the front-line support to the trading desk and foster straight-through processing (STP) of all post-trade activities with the highest degree of accuracy, diligence and speed; Ensure smooth daily processing of trade execution and trade reconciliation. This includes the effective resolution of trade breaks and the potential troubleshooting in a fairly automated process; Act as deputy trader to manage trade execution across global markets; Contribute to the technical development of our portfolio management and execution platform; Contribute on projects to enhance the operational efficiency and reliability of the daily portfolio implementation process in collaboration with internal teams; Maintain and improve system interfaces to both internal and external counterparties (i.e., data and workflow automation) to reduce costs and operational risks; Assure highest data quality for signal generation, performance analysis and reporting. Ihr Profil Pleasant, open-minded and self-motivated team player with genuine interest in financial markets; Bachelor/Master degree in computer science, engineering (Software/Electrical/Electronic) or applied mathematics from a university or a technical college; Strong object oriented language programming skills, preferably C++/C#; Applied knowledge of data modelling, including relational databases (SQL); Solid Excel and VBA skills; 2-3 year of work experience in the financial industry a plus but not required – fresh graduates are welcome to apply; Fast learner, analytical and numerate with an ability to abstract, assess and solve problems; Excellent attention to detail and a proactive response to mistakes; Well-organized / priority-driven with a practical and methodological approach to your work; Fluent in English, other languages a plus. Ihre Chance Schicken Sie Ihre Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C SQL Sprachen: Deutsch Englisch Job ID: 5205',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Complex Problem Solving\", \"Collaboration\", \"Proactivity\", \"Management\", \"Team Motivation\", \"Reliability\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"Automation\", \"Objective Interface Systems\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Data Modeling\", \"Operational Risk\", \"Industrialization\", \"C++ (Programming Language)\", \"Operational Efficiency\", \"Activism\", \"Maintainability\", \"Signal Generators\", \"E (Programming Language)\", \"Executable\", \"Global Market Access\", \"Financial Market\", \"Portfolio Management\", \"Workflow Automation\", \"C (Programming Language)\", \"Electronics\", \"Experimental Software Engineering\", \"C# (Programming Language)\", \"Reconciliation\", \"Applied Mathematics\", \"Alternative Investments\", \"Relational Databases\", \"Performance Analysis\", \"Abstractions\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'junior software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.55262876e-01 1.89214036e-01 3.44549060e-01 -7.69195780e-02\\n4.18592602e-01 -2.08977953e-01 2.57224757e-02 2.55634874e-01\\n-4.52925600e-02 -3.53813797e-01 -8.81077722e-02 -2.79114902e-01\\n-1.43807575e-01 -2.44296137e-02 1.57099038e-01 5.11675537e-01\\n2.20145375e-01 1.67304929e-03 -2.26128057e-01 3.73971105e-01\\n1.14473306e-01 1.06592640e-01 -1.12827465e-01 7.17247963e-01\\n3.23252827e-01 6.90302700e-02 -3.03562116e-02 -1.16734184e-01\\n-4.23693806e-01 -1.98651627e-01 3.78225416e-01 4.01792563e-02\\n-7.02536153e-03 -1.70849487e-01 5.64118661e-02 1.81276873e-02\\n-2.70528197e-01 -9.54704285e-02 1.01371504e-01 3.00454348e-01\\n-5.13217568e-01 -3.52761358e-01 9.18276086e-02 5.60459122e-02\\n-1.43344626e-01 -3.09452742e-01 -1.05836824e-01 9.47567523e-02\\n4.81250212e-02 -2.71863025e-02 -6.22238457e-01 3.03894401e-01\\n-1.24436498e-01 -1.49405181e-01 2.29628652e-01 5.82089186e-01\\n1.66680589e-01 -6.48099959e-01 -1.92271590e-01 -2.44241491e-01\\n1.79535538e-01 -9.60311443e-02 1.23830363e-01 -8.11342373e-02\\n3.82824600e-01 -1.00362398e-01 -8.71370211e-02 4.72994685e-01\\n-6.62778378e-01 -2.92416275e-01 -2.33791247e-01 1.06339991e-01\\n-3.97578537e-01 -3.71150672e-03 -1.36110902e-01 -1.24107815e-01\\n9.51505359e-03 3.72225195e-01 1.93486046e-02 -3.92104350e-02\\n-1.61090970e-01 2.64987916e-01 -1.19351726e-02 2.24679381e-01\\n3.09042931e-01 1.93915457e-01 1.33999631e-01 2.82996416e-01\\n-5.50996006e-01 4.91969138e-01 -1.11137284e-02 -2.73546040e-01\\n1.39709294e-01 5.11431284e-02 5.58383763e-01 1.55014381e-01\\n-5.79407215e-02 1.70378178e-01 -1.26966745e-01 2.57887661e-01\\n2.14175180e-01 -3.07340682e-01 2.42362320e-01 -3.15097533e-02\\n-2.30397120e-01 1.21702090e-01 -1.01547740e-01 1.93747520e-01\\n-2.59691119e-01 3.35059702e-01 4.39263731e-01 -9.29437280e-02\\n-2.34944094e-02 -7.08233714e-01 -4.72670160e-02 1.27336169e-02\\n-4.79551107e-02 1.23475991e-01 4.07796055e-01 8.86259750e-02\\n2.47003734e-01 4.19759154e-02 1.96916983e-01 9.50223804e-01\\n-3.20947506e-02 6.53805137e-02 -2.99895912e-01 3.50802332e-01\\n2.03741953e-01 -1.45539761e-01 1.57887235e-01 3.59305412e-01\\n1.64077386e-01 -1.37252524e-01 -1.56003296e-01 2.74921715e-01\\n-7.81432763e-02 -2.65200824e-01 -3.80013019e-01 -1.18198283e-02\\n-3.41774791e-01 -4.11148727e-01 4.52955991e-01 2.33861595e-01\\n2.54451782e-01 -1.50650471e-01 3.71941887e-02 -1.50496438e-01\\n2.84135398e-02 4.13671672e-01 -1.61750019e-02 1.50086850e-01\\n-3.72006267e-01 -1.80617765e-01 -2.24925011e-01 2.86673129e-01\\n7.01473281e-02 1.45334736e-01 2.64065024e-02 -2.41191387e-02\\n2.69865513e-01 1.32612035e-01 -2.94186682e-01 1.59966901e-01\\n8.46522301e-02 -4.41027045e-01 -1.55250505e-01 1.50592506e-01\\n2.00762339e-02 1.67588726e-01 1.57676816e-01 -3.21570992e-01\\n5.24753213e-01 1.37997270e-01 2.43225038e-01 -1.72235653e-01\\n4.00319070e-01 -3.11752677e-01 2.41559952e-01 2.14640662e-01\\n-5.67323148e-01 2.63032734e-01 -6.30153418e-02 -1.26002535e-01\\n7.46561363e-02 1.43149510e-01 2.94215590e-01 -3.65732312e-01\\n1.82149541e-02 -1.03223875e-01 -4.21817958e-01 -4.92646068e-01\\n-2.88675308e-01 -8.63927305e-02 4.52058315e-01 -1.48026168e-01\\n-1.01548098e-01 1.03808098e-01 -5.28559327e-01 -1.32599398e-01\\n1.31953821e-01 5.91215231e-02 -1.02274781e-02 1.54111311e-01\\n-1.39417365e-01 -5.77332258e-01 -5.20285368e-02 -5.36674976e-01\\n-7.05175757e-01 -4.52426374e-02 -1.60557166e-01 2.92828351e-01\\n4.74887788e-02 1.76433980e-01 -1.75882772e-01 1.29228473e-01\\n-3.49294990e-01 8.37697983e-02 2.53166765e-01 2.51739681e-01\\n2.91794062e-01 -1.15974873e-01 -5.15609503e-01 4.15840119e-01\\n-7.69026875e-02 6.41953945e-01 2.59859413e-01 -9.16133404e-01\\n5.32103717e-01 2.65005827e-01 1.19243696e-01 -4.54216838e-01\\n4.02707905e-01 -4.34828222e-01 7.00695887e-02 1.81227118e-01\\n-3.90547603e-01 -2.01252446e-01 3.89426142e-01 -1.81867868e-01\\n-2.10445285e-01 6.23144984e-01 3.50130200e-01 -8.60281140e-02\\n2.66078025e-01 -3.56686950e-01 3.78664173e-02 -2.07216088e-02\\n-1.23166949e-01 -2.56855696e-01 -2.42443949e-01 2.72059083e-01\\n-4.36396152e-02 -6.27983034e-01 -1.77594632e-01 -3.16747069e-01\\n-2.27239758e-01 -2.92336434e-01 -2.06475377e-01 5.74999154e-01\\n2.70657867e-01 3.67558300e-02 2.67374068e-01 -7.70120770e-02\\n-4.02734093e-02 -5.82319021e-01 -1.44470260e-01 8.92643258e-02\\n5.53929031e-01 1.05416492e-01 -1.05575182e-01 6.19956525e-03\\n-1.38043985e-01 5.43794453e-01 -3.98018897e-01 -3.43102843e-01\\n4.85247150e-02 1.62358955e-01 -4.34738584e-02 -4.59813103e-02\\n-2.57971641e-02 4.51984644e-01 -1.96249634e-01 8.36041197e-02\\n-2.19880447e-01 4.45506647e-02 4.62670237e-01 6.48086742e-02\\n-1.29522398e-01 -1.25672728e-01 6.53652251e-02 3.13705295e-01\\n-5.64085305e-01 -1.70498788e-01 5.87311506e-01 2.99835354e-01\\n3.09463114e-01 1.48264736e-01 2.14484632e-01 -1.52483091e-01\\n-2.30178118e-01 -3.10160547e-01 9.62354094e-02 1.59710050e-01\\n1.57934390e-02 -5.25498167e-02 -2.31313467e-01 -4.33776498e-01\\n-3.02293682e+00 -1.27292663e-01 1.93493798e-01 -3.56031597e-01\\n4.86587062e-02 -1.54657690e-02 -9.95096862e-02 -1.27339195e-02\\n-3.56213719e-01 1.15763828e-01 -2.43691012e-01 -2.11647168e-01\\n-3.02289124e-03 3.14582169e-01 6.73972592e-02 1.79670870e-01\\n1.26041725e-01 -1.93837628e-01 -2.39290714e-01 2.77250707e-01\\n-1.05869900e-02 -6.70227647e-01 1.99964717e-01 7.11365640e-02\\n2.75192171e-01 1.18577480e-01 -4.91095781e-01 2.83905547e-02\\n-2.53229409e-01 -3.39005649e-01 1.90099001e-01 -3.29528123e-01\\n-8.30835402e-02 3.94065648e-01 2.44577065e-01 -5.52799292e-02\\n1.88961420e-02 -3.39961916e-01 -4.46978956e-02 -3.97331148e-01\\n1.30842328e-01 -6.00773573e-01 -1.04072310e-01 -1.17227703e-01\\n7.89687991e-01 -3.94131571e-01 8.66473317e-02 9.62099954e-02\\n2.04543173e-01 1.12117425e-01 -1.21356703e-01 2.23637070e-03\\n-2.94022202e-01 -3.99195075e-01 6.42507197e-03 -2.44429663e-01\\n1.37603387e-01 6.09883368e-01 -1.94939405e-01 2.47700084e-02\\n1.24100044e-01 -3.28777343e-01 -3.56915921e-01 -4.41940546e-01\\n-3.18652123e-01 -2.60682046e-01 -7.80760527e-01 -5.33544481e-01\\n-8.33222121e-02 -6.00983612e-02 -2.94024050e-01 7.11063325e-01\\n-4.23294425e-01 -4.46229219e-01 4.86045480e-02 -5.38899243e-01\\n8.17005802e-03 -4.49878871e-01 1.18144006e-01 -7.52676576e-02\\n-2.58812994e-01 -5.56745946e-01 2.08113283e-01 -7.18637928e-02\\n-1.94640726e-01 -2.78661344e-02 -1.14729114e-01 -4.43988949e-01\\n-3.31838906e-01 -2.68313855e-01 4.31092620e-01 8.35521892e-02\\n3.33655149e-01 1.94169655e-01 3.96393716e-01 1.75453335e-01\\n2.35967681e-01 -1.51804417e-01 6.62728921e-02 -2.84639448e-01\\n2.21528336e-01 3.09479702e-03 7.27840006e-01 -3.38344127e-01\\n2.62443006e-01 1.82921559e-01 -2.06043929e-01 -1.05532944e-01\\n4.48877335e-01 5.52706160e-02 -1.70072485e-02 1.04441829e-02\\n4.43852514e-01 -6.84629858e-01 -2.39306748e-01 2.07445666e-01\\n-1.40677407e-01 5.68284452e-01 2.66069882e-02 -4.48588967e-01\\n-2.93283641e-01 3.62828612e-01 -1.32450297e-01 -3.61394614e-01\\n-2.02159524e-01 3.27416331e-01 -1.19402118e-01 1.67911187e-01\\n7.94581283e-05 -2.78601170e-01 -3.61593306e-01 -6.30910248e-02\\n-5.73483407e-02 1.09460570e-01 2.91502208e-01 2.14493554e-02\\n-4.76400517e-02 -2.30521262e-01 -4.36654627e-01 6.64431825e-02\\n4.99225050e-01 2.71260411e-01 1.84091151e-01 -2.11277589e-01\\n-8.18520132e-03 2.77502000e-01 -9.78841633e-02 5.78155816e-02\\n-1.88524589e-01 1.12969130e-02 -3.59051824e-01 -2.85884708e-01\\n9.38739181e-02 -2.88262486e-01 4.97464128e-02 3.85215282e-01\\n1.89399004e-01 3.43825072e-02 2.03148127e-01 -4.13982481e-01\\n5.43204784e-01 1.47067562e-01 1.24497749e-01 1.95984110e-01\\n5.95364943e-02 5.58440983e-01 -8.59317258e-02 5.15338257e-02\\n-8.96778777e-02 -2.33733580e-01 -2.28117034e-01 -2.26983353e-01\\n6.78712055e-02 -3.03440064e-01 -2.47309320e-02 5.40414691e-01\\n-2.33991127e-02 -4.00297970e-01 -1.34343445e-01 2.84037441e-01\\n1.22059152e-01 -1.97120249e-01 -1.87629312e-01 1.79097891e-01\\n2.41178140e-01 1.07678443e-01 2.20959961e-01 -4.08896238e-01\\n-3.23516965e-01 6.38834760e-02 -1.51845902e-01 5.20099580e-01\\n2.92249143e-01 2.08062217e-01 -2.59620935e-01 -2.94732839e-01\\n4.90682542e-01 -3.55933607e-01 -1.83228567e-01 -3.62883024e-02\\n1.20664231e-01 -1.61942929e-01 -4.66935694e-01 -9.31041501e-03\\n8.60983059e-02 -2.55765826e-01 2.58495621e-02 -7.22634271e-02\\n9.23121795e-02 1.51958754e-02 -5.61918795e-01 -3.52804959e-01\\n-2.89325178e-01 -1.09872915e-01 2.23598033e-01 -3.20831239e-01\\n1.54265091e-02 -1.82339162e-01 -6.88853562e-01 2.80536562e-01\\n-3.04502130e-01 6.88554794e-02 2.71043517e-02 1.74994737e-01\\n-3.70781600e-01 -9.01938975e-02 6.83867112e-02 1.31818116e-01\\n-2.44441092e-01 -1.19865619e-01 -1.08106092e-01 -1.10531676e+00\\n8.23078901e-02 2.39458382e-02 1.09347478e-02 -1.39759451e-01\\n-2.93725706e-03 -4.68427330e-01 5.24524003e-02 -3.80815327e-01\\n1.27643496e-01 2.70145126e-02 -1.21811196e-01 -4.52335984e-01\\n9.92082506e-02 -2.90316865e-02 -1.91818789e-01 3.87920439e-01\\n-4.13952321e-01 2.54397273e-01 -7.80064762e-02 7.14172348e-02\\n-1.14023119e-01 -3.35655987e-01 2.35397279e-01 -2.75009513e-01\\n-3.53493512e-01 -1.38426885e-01 -4.26587582e-01 -3.08308095e-01\\n1.42384335e-01 -3.27341259e-01 -3.44874948e-01 1.08155392e-01\\n2.04512224e-01 2.13941514e-01 -8.01460370e-02 -3.34701806e-01\\n1.42275214e-01 -5.03445208e-01 1.81189567e-01 -3.09944749e-01\\n-8.97161961e-02 -1.31363079e-01 2.61654332e-02 -1.13708861e-01\\n-8.88040587e-02 -2.06399426e-01 3.81181508e-01 -2.86607504e-01\\n-3.74509960e-01 -2.46382337e-02 4.20276932e-02 4.01793332e-05\\n2.65546620e-01 -5.37869871e-01 7.42315650e-02 1.57572106e-01\\n1.92884095e-02 7.85265565e-02 3.56829107e-01 -7.84728304e-02\\n-1.49073809e-01 2.99147457e-01 -5.49820900e-01 1.73831075e-01\\n7.13210464e-01 2.59685844e-01 -2.27270927e-02 1.12552747e-01\\n3.87475163e-01 2.85754204e-01 5.24279177e-01 7.86959827e-02\\n1.35893584e-03 2.59366453e-01 -2.81022396e-02 -4.44375813e-01\\n-1.16880409e-01 -2.39416927e-01 -2.60874689e-01 -3.01074684e-01\\n4.75827247e-01 5.37877798e-01 -2.84587383e-01 -1.32948935e-01\\n2.95516606e-02 5.17039523e-02 3.31240922e-01 -3.53332646e-02\\n-1.04505725e-01 -1.00191362e-01 7.39393711e-01 6.84009045e-02\\n3.52742195e-01 5.21140993e-01 -1.93332255e-01 -4.33449179e-01\\n-2.42530197e-01 2.13535756e-01 1.69304028e-01 5.01731396e-01\\n1.97240598e-02 2.60160863e-01 -4.43302244e-02 1.88919544e-01\\n1.82041768e-02 -2.59713475e-02 4.87545393e-02 -4.60364632e-02\\n2.48960808e-01 9.73966122e-02 6.19720444e-02 4.39854354e-01\\n1.70564145e-01 4.37493235e-01 2.78624773e-01 1.23751380e-01\\n2.51451522e-01 7.25694954e-01 4.10275191e-01 2.84689546e-01\\n-2.12489311e-02 4.54331487e-02 -5.26681021e-02 -1.61367655e-01\\n3.63145024e-01 1.59305543e-01 2.43439406e-01 8.38385940e-01\\n3.40004832e-01 3.16002071e-01 7.39197433e-01 -6.32387161e-01\\n-4.85225618e-01 1.20619997e-01 4.14657891e-01 -2.98919559e-01\\n-2.08969027e-01 5.25764637e-02 -1.87877133e-01 2.85952836e-01\\n-4.49875146e-01 -9.17257369e-02 5.86711317e-02 -7.77625814e-02\\n1.66451022e-01 1.35615328e-03 -2.26543367e-01 1.52039945e-01\\n-3.04315954e-01 -2.67596722e-01 -2.48278752e-01 -7.22500607e-02\\n-3.28930855e-01 -1.65358201e-01 -1.37296215e-01 -1.00080520e-02\\n-1.01697959e-01 -4.11008328e-01 -1.53249875e-01 1.90371901e-01\\n4.55602258e-01 -1.33512497e-01 -3.32318656e-02 -8.57182592e-02\\n2.62250658e-02 4.60081786e-01 4.89907533e-01 -4.65452997e-03\\n1.92215517e-01 -9.80756432e-02 -3.24672759e-01 -4.02562972e-03\\n5.29017784e-02 -4.54351716e-02 1.61258295e-01 4.29716974e-01\\n-4.07430142e-01 3.23469564e-02 9.42635685e-02 3.74151856e-01\\n-4.06687230e-01 -1.20738067e-01 -8.81178379e-02 2.84325272e-01\\n1.94349036e-01 2.00328648e-01 -3.96377593e-01 2.27273956e-01\\n-2.89191365e-01 -5.79156995e-01 3.76571357e-01 -2.32051998e-01\\n-5.67360893e-02 3.04689229e-01 1.50747344e-01 8.67722780e-02\\n-3.30149204e-01 5.03678694e-02 3.95279974e-02 4.82507527e-01\\n-6.15486782e-03 4.85317916e-01 -3.38482559e-01 -7.59698823e-02\\n-2.05179915e-01 2.37141922e-01 -2.82573670e-01 2.02232614e-01\\n-1.89965263e-01 2.18833447e-01 1.73948064e-01 5.88513492e-03\\n1.70211777e-01 6.80018812e-02 -1.80203527e-01 -2.40395159e-01\\n-2.50497788e-01 -3.71585846e-01 1.84088916e-01 -3.40525024e-02\\n1.75234765e-01 -3.85972798e-01 -9.45245177e-02 -2.18765467e-01\\n-1.75983816e-01 -4.19313997e-01 -1.45772159e-01 3.76436971e-02]]',\n", + " 'job_description': 'Über unseren Kunden Unser Kunde ist ein Finanzdienstleister Ihr Aufgabenbereich Contribution to product development based on Agile and test-driven methodology Evaluation of new technologies including proof of concept implementations Performance analysis and optimization of our distributed, multithreaded calculation cluster Transition of various components to .NET Core/.NET Standard Support future development and client consultants with in-depth technological knowledge Ihr Profil University degree in computer science, mathematics, physics, or related subjec Dedication to sound software architecture and clean code principles Experience in object-oriented programming, ideally using C#/.NET Experience in Web technologies like JavaScript, REST, IIS, and databases Great interpersonal and communication skills Fluency in English (full professional proficiency) Interest in modern best practices and tools for software development Experience in SDLC automation Interest in finance and related Math Experience with Big Data and NoSQL technologies, e.g. MongoDB, Apache SPARK, Druid Ihre Chance Schicken Sie Ihre Bewerbung an jobs@oneagency.ch Ort: Zürich Spezialisierung: JavaScript C# / C++ / C .NET Entwicklung Agile SQL Sprachen: Englisch Job ID: 2765',\n", + " 'soft_skills': '[\"Communications\", \"Professionalism\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Apache Spark\", \"Automation\", \"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Good Agricultural Practices\", \"Calculations\", \"MongoDB\", \"E (Programming Language)\", \"Multithreading\", \"Idealization\", \"Object-Oriented Programming (OOP)\", \"Mathematical Physics\", \"C (Programming Language)\", \"Apache Druid\", \"Finance\", \"C# (Programming Language)\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Big Data\", \"Competency-Based Development\", \"Software Development\", \"Performance Analysis\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English', 'Inupiaq', 'Welsh']\"},\n", + " {'company_id': '62',\n", + " 'job_title': 'project manager for training, media and communication in global logistics',\n", + " 'location': 'Chuang-li',\n", + " 'industry': 'Industrial Manufacturing',\n", + " 'website': 'www.hilti.com',\n", + " 'jobdescription_embedded': '[[-8.40743482e-02 2.58469582e-01 4.16815966e-01 1.25929350e-02\\n5.25840521e-01 -4.37766649e-02 6.82556182e-02 3.49865973e-01\\n-3.04325055e-02 -5.84392428e-01 6.65341020e-02 -2.43442863e-01\\n6.04313426e-02 1.90676123e-01 9.68776345e-02 4.08527315e-01\\n2.18765289e-01 3.15529779e-02 -1.17172852e-01 2.58254617e-01\\n-9.10764784e-02 -1.76381901e-01 1.24905832e-01 8.89787197e-01\\n5.35619736e-01 2.36047674e-02 -8.25883169e-03 -5.04554808e-02\\n-4.91807461e-02 -2.50231594e-01 4.02163744e-01 -2.47387923e-02\\n-2.00507849e-01 -4.89541411e-01 2.22342759e-02 3.68701220e-02\\n-1.77508354e-01 6.31671958e-03 -1.87721014e-01 -2.37870365e-02\\n-5.00963748e-01 -1.42871737e-01 -1.82981253e-01 -9.55498517e-02\\n-3.27548385e-01 -2.47066766e-01 -5.44267222e-02 -1.70721129e-01\\n2.64375567e-01 8.61753225e-02 -3.87723863e-01 1.68585360e-01\\n-2.77408302e-01 -2.51319766e-01 2.35492259e-01 6.27697170e-01\\n7.52717853e-02 -2.72130907e-01 -5.95689476e-01 -2.91512430e-01\\n7.22421557e-02 -8.94315392e-02 1.04437888e-01 -2.63986290e-01\\n2.67910421e-01 -1.17426589e-02 1.33359894e-01 2.38874361e-01\\n-7.09236264e-01 -7.22351670e-02 -3.96133125e-01 -6.82128370e-02\\n-1.88037276e-01 -1.27517879e-01 -4.06178176e-01 -1.82262927e-01\\n-2.00772136e-01 3.20278764e-01 6.62821382e-02 7.70666301e-02\\n-2.02604800e-01 2.43933365e-01 -3.11103344e-01 3.83765846e-01\\n1.22821629e-01 3.08580846e-01 3.48467886e-01 3.74795198e-01\\n-2.84400076e-01 5.80680907e-01 1.45527065e-01 -3.97300065e-01\\n2.54285604e-01 2.56191075e-01 3.40148509e-01 -1.44673660e-01\\n3.74658763e-01 1.15751639e-01 -1.87879384e-01 3.88455272e-01\\n3.38469505e-01 -4.37917769e-01 9.33118612e-02 -2.69454837e-01\\n9.19012055e-02 -4.58682738e-02 2.30888546e-01 -5.29355891e-02\\n-3.71519268e-01 3.04514289e-01 -1.14691807e-02 -3.32168221e-01\\n-2.91482568e-01 -2.65040040e-01 1.50209479e-03 1.62847880e-02\\n1.85857154e-02 1.65778130e-01 1.42384112e-01 2.07206890e-01\\n2.15507865e-01 5.03542386e-02 6.61029965e-02 7.21781969e-01\\n-9.59540159e-02 -1.84900127e-02 -2.87707657e-01 2.67805934e-01\\n-5.99117056e-02 -4.39930201e-01 2.51819193e-01 1.57360122e-01\\n-1.54183269e-01 -2.43988141e-01 -3.31923962e-01 2.80689329e-01\\n1.93541616e-01 -1.67974412e-01 -2.09094420e-01 2.41716415e-01\\n1.62506849e-01 -4.10672843e-01 6.62356615e-01 1.84774771e-02\\n2.15192571e-01 -1.06828630e-01 2.73401849e-03 -2.51844466e-01\\n-4.85691503e-02 2.82341465e-02 2.29909584e-01 1.99484497e-01\\n-1.29276142e-01 -2.53016144e-01 -1.76325053e-01 1.07140020e-01\\n-5.49397469e-01 1.33622602e-01 -2.17098117e-01 -1.30049452e-01\\n2.50664830e-01 -1.57037064e-01 -2.30589613e-01 2.03706145e-01\\n-1.58311218e-01 5.42772040e-02 1.34539939e-02 3.83579254e-01\\n-2.44279265e-01 2.14494213e-01 -3.25616822e-02 5.47887832e-02\\n6.81307793e-01 1.94693595e-01 1.63947463e-01 -1.02098383e-01\\n2.31734470e-01 1.83363661e-01 2.75991224e-02 1.71739459e-01\\n-6.47551417e-01 2.79080927e-01 -1.19871460e-01 -2.90313691e-01\\n1.43057227e-01 -1.17326573e-01 2.32743233e-01 -2.03488186e-01\\n-5.06606102e-02 4.53841537e-02 -2.34795064e-01 -2.78241724e-01\\n-1.51226208e-01 -2.09548146e-01 3.23209405e-01 -5.77496409e-01\\n-7.30032772e-02 1.97642505e-01 -4.72325265e-01 -1.51119947e-01\\n9.62095112e-02 1.61083505e-01 1.42574251e-01 1.53789192e-01\\n-1.16691470e-01 -4.07331228e-01 2.22442560e-02 -3.25153828e-01\\n-2.25879967e-01 1.03323936e-01 -3.07513893e-01 5.74217401e-02\\n7.71653131e-02 -2.36525051e-02 1.31734051e-02 9.59394053e-02\\n-1.18316106e-01 3.75229195e-02 1.96893699e-03 -7.56179541e-02\\n4.56498235e-01 8.43281299e-02 -2.49041766e-01 3.31880331e-01\\n-2.04901218e-01 4.67329443e-01 1.05082523e-02 -8.05799842e-01\\n4.15321052e-01 2.78056383e-01 5.18802553e-02 -3.10032487e-01\\n4.04965281e-01 -2.08444640e-01 -5.92219569e-02 -4.08325344e-04\\n-3.76921296e-01 -2.62250185e-01 1.04717463e-01 -2.47086346e-01\\n-2.11388618e-01 3.61531019e-01 -1.24819539e-01 2.65242338e-01\\n1.76396802e-01 -1.52056098e-01 -5.67691363e-02 7.62480311e-03\\n-1.01702638e-01 -1.06743872e-01 -5.67107141e-01 -1.48717940e-01\\n-9.30724815e-02 -2.35699311e-01 -1.28617585e-01 -5.58523774e-01\\n-2.03244328e-01 -3.98762137e-01 -1.35912657e-01 1.33407190e-02\\n3.23684692e-01 5.33060841e-02 -1.17308073e-01 6.17803186e-02\\n-1.08587161e-01 -6.29146039e-01 5.15846163e-02 1.26124740e-01\\n3.77395570e-01 2.07045555e-01 2.20774740e-01 3.84604111e-02\\n9.90462825e-02 5.46254754e-01 -2.32597291e-01 -1.92428708e-01\\n2.06738725e-01 1.78939059e-01 1.58438459e-01 -1.97715014e-01\\n2.98980679e-02 2.06530586e-01 -3.94860208e-01 1.95623767e-02\\n1.55059248e-01 -1.99543126e-02 4.17134285e-01 -4.39672433e-02\\n-3.22034687e-01 -1.18730247e-01 -1.37025416e-02 7.95559287e-02\\n-5.45453846e-01 -2.97409385e-01 7.49153376e-01 1.33132815e-01\\n-3.45483720e-02 1.73544973e-01 -5.47120348e-03 1.17789224e-01\\n-2.64169455e-01 -1.67102486e-01 4.16701972e-01 9.25823152e-02\\n1.11929893e-01 1.23912819e-01 -2.91907527e-02 -5.62133372e-01\\n-3.94764233e+00 -2.21454591e-01 1.80969238e-01 -1.81031197e-01\\n2.53551215e-01 -1.42856836e-01 1.13700882e-01 -3.54639478e-02\\n-2.13742614e-01 7.69787505e-02 -1.80049315e-01 -9.10034925e-02\\n2.98240036e-02 2.01403201e-01 1.53158903e-01 3.01327735e-01\\n1.75809562e-01 -1.53357267e-01 7.94503372e-03 4.18291956e-01\\n-1.44939274e-01 -6.75106347e-01 2.44357184e-01 3.86985093e-02\\n2.07101688e-01 2.43951932e-01 -4.12645280e-01 -9.45634022e-02\\n-3.33640009e-01 -1.82919443e-01 7.93724656e-02 -2.75510192e-01\\n-1.87589139e-01 1.76081941e-01 2.25857407e-01 -1.78290501e-01\\n6.95392638e-02 -4.86219704e-01 -2.33247787e-01 -5.57718277e-01\\n1.28402740e-01 -5.32841563e-01 -1.63864374e-01 -2.34032068e-02\\n6.86088443e-01 -1.97434127e-01 2.12084472e-01 -2.54952833e-02\\n2.22779550e-02 1.29567474e-01 2.43963659e-01 1.63500637e-01\\n-1.31249905e-01 -3.08083117e-01 -1.07815385e-01 -1.04557678e-01\\n5.79446673e-01 3.23098987e-01 -4.66593094e-02 -7.38661885e-02\\n5.29460274e-02 -1.61190808e-01 -5.19420564e-01 -2.08581209e-01\\n-1.26669779e-01 -1.59519970e-01 -6.36324763e-01 -4.52374220e-01\\n-1.60976708e-01 -2.79710531e-01 -9.40341577e-02 5.71674764e-01\\n-3.10929418e-01 -2.44900167e-01 -1.69763267e-01 -4.39508677e-01\\n3.75844210e-01 -7.57706538e-02 3.02525554e-02 -2.03929782e-01\\n-2.18563676e-01 -3.87130737e-01 5.51697016e-02 1.14703119e-01\\n8.12435895e-03 -2.79399157e-01 1.87582463e-01 -5.83585724e-02\\n-2.33685344e-01 -5.00634670e-01 3.65390092e-01 1.67401075e-01\\n1.53983906e-01 1.68915793e-01 3.45447600e-01 -1.61245897e-01\\n2.19978124e-01 6.26730397e-02 -2.18038931e-01 -4.35719252e-01\\n-7.95871392e-03 -1.12998739e-01 2.88545251e-01 5.66942990e-03\\n-2.69833282e-02 -1.45034138e-02 -2.01553047e-01 -6.13385998e-02\\n3.99099529e-01 -9.10937488e-02 2.10542917e-01 6.01239428e-02\\n1.29313022e-01 -1.40563592e-01 -1.03979647e-01 -6.82359412e-02\\n-5.41637801e-02 5.46680391e-01 6.97013438e-02 -3.32642347e-01\\n-1.10638216e-02 5.62430859e-01 -4.88555729e-02 3.40930462e-01\\n-2.90427327e-01 4.43888977e-02 -2.28580385e-01 2.62806803e-01\\n-7.70779252e-02 -1.76226318e-01 -1.06690668e-01 -1.54645875e-01\\n-6.73477724e-02 2.71901786e-01 1.67708233e-01 1.47525668e-01\\n9.11052898e-03 -2.92391121e-01 -1.27843246e-01 1.95279688e-01\\n2.65807360e-01 5.91725051e-01 1.84523180e-01 -2.05751956e-01\\n-7.67403170e-02 2.82037854e-01 -2.63195753e-01 2.51173735e-01\\n-2.92140335e-01 2.47334033e-01 -4.97321904e-01 -2.43594617e-01\\n-4.20798004e-01 -4.55444515e-01 1.33028090e-01 3.27022016e-01\\n1.11824915e-01 -1.92242235e-01 1.73050493e-01 -4.78143394e-01\\n1.37256801e-01 2.05488786e-01 9.57686007e-02 1.73359513e-01\\n1.06840869e-02 5.20275474e-01 6.38638530e-03 -1.94139704e-01\\n-1.74674451e-01 1.43114805e-01 -6.24279603e-02 -1.31330520e-01\\n9.93070379e-03 -6.07772827e-01 -1.80330142e-01 4.01308715e-01\\n1.54932499e-01 -1.62273854e-01 -1.38392806e-01 4.12985086e-01\\n-2.34765001e-02 -2.85152435e-01 -2.99318463e-01 -8.95058513e-02\\n2.84278005e-01 7.00266212e-02 2.85052121e-01 -4.21257734e-01\\n-1.10147506e-01 -6.06728010e-02 -1.76553000e-02 4.35293674e-01\\n3.07011977e-03 9.49329585e-02 -1.16761863e-01 -1.28300652e-01\\n3.17327321e-01 1.20570939e-02 -5.44656403e-02 3.04063261e-02\\n1.75823092e-01 -2.05140948e-01 -3.69727254e-01 1.97816283e-01\\n2.79976912e-02 -3.33476126e-01 -3.11218482e-02 2.29069769e-01\\n4.03233208e-02 1.76239967e-01 -6.39955282e-01 -2.23328933e-01\\n-3.68789375e-01 8.23318399e-03 2.99215261e-02 -6.71709299e-01\\n-4.04630378e-02 -2.07612827e-01 -4.10776556e-01 3.43104839e-01\\n6.34002611e-02 -2.35280588e-01 2.28734717e-01 1.14739686e-01\\n-2.38524601e-01 -4.79914322e-02 -2.55090408e-02 1.89372674e-01\\n-2.51750112e-01 -2.28531092e-01 -2.58771069e-02 -1.04859900e+00\\n2.40671605e-01 1.63684651e-01 -1.40454948e-01 1.21072985e-01\\n-2.36333907e-01 -5.74760556e-01 1.61852688e-01 -2.78525472e-01\\n-2.44845301e-01 -7.42048845e-02 -2.55428582e-01 -3.58862489e-01\\n9.23467875e-02 8.73806924e-02 -2.32250512e-01 4.52167392e-01\\n-2.54099667e-01 3.05973887e-01 -2.51253486e-01 5.38473204e-02\\n-2.23680437e-02 -3.16661716e-01 1.51145816e-01 -3.03030133e-01\\n-4.84323025e-01 -1.80845141e-01 -3.14035684e-01 -1.72937632e-01\\n-1.64167099e-02 -4.22721803e-01 -1.31323412e-01 3.66606824e-02\\n4.01354581e-01 8.46928805e-02 -2.46287227e-01 -2.68915147e-01\\n-2.20570248e-04 -5.02850175e-01 9.30902064e-02 -6.18607551e-03\\n-9.14471895e-02 -2.32242167e-01 3.36830258e-01 1.05769739e-01\\n3.40727031e-01 -3.48002017e-01 3.25387418e-01 -4.50710773e-01\\n-2.30001152e-01 -6.25995323e-02 2.32579429e-02 -4.34126332e-02\\n2.73882389e-01 -5.20508349e-01 -1.20421767e-01 2.66817212e-01\\n1.73854098e-01 -8.51445049e-02 3.24640393e-01 -1.77047774e-01\\n-1.28683537e-01 5.24109721e-01 -3.35807651e-01 1.87891781e-01\\n7.71039724e-01 4.58810255e-02 2.22254276e-01 2.90707409e-01\\n2.35723257e-01 3.84947002e-01 3.53067577e-01 -1.05397254e-01\\n-1.06983423e-01 3.25383604e-01 1.71505153e-01 -5.50171137e-01\\n4.29351665e-02 7.34012127e-02 -1.00883245e-01 -3.77746075e-01\\n6.61653340e-01 3.28182697e-01 -4.88130629e-01 -1.97904333e-02\\n-2.12527037e-01 -2.63930142e-01 2.65029728e-01 -7.83672631e-02\\n-4.02277224e-02 -1.92227811e-02 3.97215724e-01 -3.30482349e-02\\n3.18275034e-01 5.40801764e-01 -2.46287823e-01 -3.21044952e-01\\n-1.06650002e-01 3.03066045e-01 -6.22306094e-02 6.77918434e-01\\n-2.86907792e-01 3.26790154e-01 -3.37926298e-03 1.22265533e-01\\n-1.48329409e-02 2.38707870e-01 2.32175916e-01 1.27275273e-01\\n1.68684274e-01 1.46489263e-01 6.15396261e-01 3.49223256e-01\\n3.92903328e-01 2.98387706e-01 3.06499422e-01 1.14283830e-01\\n3.29346895e-01 4.15820837e-01 3.07956100e-01 -3.50653417e-02\\n2.65976656e-02 -1.27079263e-02 2.82396376e-01 7.64356926e-03\\n3.31102073e-01 4.95255589e-01 -1.16407536e-02 8.13368917e-01\\n3.81755292e-01 3.30624819e-01 6.30647540e-01 -6.30690098e-01\\n-2.15685636e-01 1.46872848e-02 3.83711755e-01 -4.11241919e-01\\n1.76732212e-01 2.50810206e-01 -1.34737775e-01 1.66641891e-01\\n-3.53505015e-01 -3.70308578e-01 -2.35846695e-02 1.63096651e-01\\n-7.22845942e-02 -4.17674065e-01 -1.20729670e-01 1.65907383e-01\\n6.19453378e-02 -7.16656297e-02 -4.13753211e-01 -1.23452649e-01\\n-2.19013140e-01 4.36485335e-02 -1.54438496e-01 1.04949269e-02\\n-1.48485333e-01 -1.88259929e-01 3.02355010e-02 -5.32700345e-02\\n1.56755939e-01 -5.27805276e-03 1.26039423e-02 -7.82055855e-02\\n3.42981815e-01 1.35030523e-01 4.55368638e-01 1.24912597e-02\\n4.63825725e-02 -1.82033420e-01 -1.86582953e-01 2.30203599e-01\\n3.48383963e-01 1.30817536e-02 -4.37957495e-02 1.54901505e-01\\n-8.08587968e-02 -2.76071846e-01 2.65143335e-01 2.46993884e-01\\n-4.08186436e-01 1.74535476e-02 -1.52755722e-01 2.31162786e-01\\n2.76306085e-02 1.86376497e-01 -9.97461155e-02 2.46973168e-02\\n-1.50751829e-01 -4.15521204e-01 1.17535584e-01 -8.24429616e-02\\n-1.69555515e-01 1.32224895e-02 3.77371758e-01 3.35330486e-01\\n-2.99781621e-01 3.06778345e-02 -1.12416171e-01 1.21003404e-01\\n-1.14030302e-01 1.70745701e-01 -1.28754660e-01 -2.81391144e-01\\n-3.28848183e-01 1.49257451e-01 -4.51760553e-02 1.01898402e-01\\n4.68550436e-02 2.63695002e-01 1.40488725e-02 4.00250629e-02\\n3.89912277e-01 -9.32000726e-02 -1.88357100e-01 -1.33996591e-01\\n-2.88251102e-01 7.23837093e-02 -6.42600060e-02 -1.68910474e-01\\n2.40446597e-01 -3.39556009e-01 -1.02752298e-02 -1.25127956e-01\\n-5.28026633e-02 -3.32377017e-01 1.13458291e-01 -1.24936044e-01]]',\n", + " 'job_description': \"You will work in Global Logistics business development and derive and define from our strategy and future business potentials concrete project opportunities in the field of trainings, digital media and communication. You can drive, lead and implement global logistics projects with focus on competencies and trainings. You design and create digital media supported communication materials to strengthen our offering in transfer of knowledge and communication in an effective, target group-oriented approach. Who is Hilti? If you’re new to the industry, you might not have heard of us. We provide leading-edge tools, technologies, software and services for the global construction sector. We have a proud heritage, built over 75 years, and a worldwide reputation for pioneering products and exceptional service. With some 29,000 people in more than 120 countries, which we’re looking to expand, we’re a great place for you to show us your worth, step up to new challenges and grow your career. What does the role involve? You lead and drive project execution within global logistics where design tasks play a key role. You drive the learning experience of your stakeholders through training program and platform design. You ensure proper implementation including hand-over and trainings to the end users. You know which methods contribute to understanding a communicative problem in all its complexity. You formulate precise communication goals and define the working steps necessary to achieve a specific goal. Out of the box thinking and creativity helps to find innovative solutions. You design required film and picture material to serve your stakeholders requirements. After a sound analysis and fact base of the as-is situation you define the required steps to achieve the targeted solution. You manage the change with different stakeholder groups and communicate regularly to our management team. Our department drives overarching, cross-functional initiatives in a global set-up and it’s your opportunity to be part of this. What do we offer? Show us what you’re made of and we’ll offer you opportunities to move around the business – to work abroad, experience different job functions and tackle different markets. It’s a great way to find the right match for your ambitions and achieve the exciting career you’re after. We have a very thorough people review process, unlike any we know of in any other business. We screen everyone in the company in a yearly career performance matching process. It means we can pair talent with opportunities - developing our people in their current roles or challenging them to work in new ways or in new places. It’s how we find the right fit and further our teams personally and professionally. Additionally, we offer you a competitive salary and a wide range of benefits, these may include day care for your kids or a free in-house gym. Why should you apply? Within this role you have a unique chance to connect with many people in a wide variety of roles across our global organisation. Hilti's unique company culture stands for an ambitious but caring working environment. If you are looking to develop your career with a global player and international innovation driver and want to be part of a great, international team, we strongly appreciate your application. What you need is: A University degree ideally in Supply Chain or Media related Arts and Design Excellent networking and interpersonal communication skills Experience in project management, film production, photography and interactive design Ideally functional expertise in logistics and/or communications Fluent in English any other language a clear benefit\",\n", + " 'soft_skills': '[\"Professionalism\", \"Construction\", \"Interpersonal Communications\", \"Management\", \"Communications\", \"Distributed Team Management\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Stakeholder Requirements\", \"Global Logistics\", \"Supply Chain\", \"Industrialization\", \"European Training Programs\", \"Films\", \"Digital Media\", \"Idealization\", \"Executable\", \"Hostile Work Environment\", \"TARGET 3001!\", \"Cross-Functional Coordination\", \"Logistics\", \"Personalization\", \"Product Photography\", \"Project Management\", \"Interactive Design\", \"Additives\", \"Derivatives\", \"Media Relations\", \"Business Development\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '122',\n", + " 'job_title': 'software support engineer (fr, ch, be, lu)',\n", + " 'location': 'Bern',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.therefore.ca',\n", + " 'jobdescription_embedded': '[[-1.55777916e-01 2.44646162e-01 4.60761309e-01 1.32202441e-02\\n4.27852601e-01 -1.70495957e-01 1.49829969e-01 5.15513301e-01\\n1.98983215e-02 -4.21885222e-01 -5.19852787e-02 -1.41450763e-01\\n1.08371019e-01 1.40827313e-01 1.48692399e-01 3.20744693e-01\\n3.37379754e-01 2.18882591e-01 -2.77064741e-01 3.16944510e-01\\n3.65652815e-02 -2.18486264e-01 2.15076670e-01 7.29440093e-01\\n6.40528560e-01 7.72121176e-02 -5.76715507e-02 -3.02792974e-02\\n-1.67261645e-01 -3.08670282e-01 4.98694271e-01 -1.90470859e-01\\n-9.24927066e-04 -3.46925765e-01 1.92726374e-01 -2.18261052e-02\\n-1.82223916e-01 3.87611613e-02 -1.66576579e-01 -3.89696360e-02\\n-4.63668555e-01 4.78723273e-03 5.43792062e-02 1.40126795e-01\\n-2.63701022e-01 -3.98818225e-01 1.68714151e-01 -4.79045734e-02\\n2.40668774e-01 -7.78185055e-02 -4.32403386e-01 3.02379876e-01\\n-2.62874901e-01 -2.03442186e-01 3.62532794e-01 5.97161591e-01\\n-1.76009998e-01 -5.24223149e-01 -5.56016505e-01 -3.70052040e-01\\n4.12188135e-02 -8.10416564e-02 8.10493007e-02 -3.66510540e-01\\n3.36701870e-01 6.52503967e-03 7.20869824e-02 3.67358863e-01\\n-7.79127002e-01 -8.71852040e-02 -1.78243116e-01 -1.46569267e-01\\n-2.85961360e-01 -1.05965897e-01 -4.65223610e-01 -7.05951080e-02\\n-2.32167542e-01 3.36989522e-01 4.43681702e-02 4.25488763e-02\\n-2.23287359e-01 2.80868798e-01 -2.96769202e-01 4.03848410e-01\\n1.30317986e-01 3.12463105e-01 2.91959375e-01 2.84992367e-01\\n-2.61566848e-01 5.34558535e-01 1.81289077e-01 -2.77079493e-01\\n1.66980848e-01 1.19555704e-01 4.82461423e-01 -1.65927008e-01\\n3.44761342e-01 1.19609637e-02 -3.46580416e-01 2.62116760e-01\\n3.64019126e-01 -3.76346886e-01 -3.39216925e-02 -7.04857260e-02\\n-1.32716056e-02 7.15230405e-02 9.77599844e-02 2.36990616e-01\\n-3.20370823e-01 5.10214806e-01 1.58937022e-01 -2.10255235e-01\\n-1.02614038e-01 -4.79490072e-01 -1.45123899e-01 7.68300071e-02\\n7.35836104e-02 1.55027568e-01 1.18624493e-01 1.56649068e-01\\n2.95725495e-01 -8.91818255e-02 9.39065441e-02 7.83210695e-01\\n-1.21435538e-01 3.67878787e-02 -2.77181089e-01 2.90609628e-01\\n-5.53212650e-02 -4.45692509e-01 3.42103273e-01 8.21334049e-02\\n1.09309316e-01 -4.55162600e-02 -2.49884859e-01 3.15673292e-01\\n-1.30174115e-01 -2.27295280e-01 -3.23884636e-01 2.65941143e-01\\n-1.08012825e-01 -4.24779177e-01 5.74313223e-01 -8.70489515e-03\\n1.31414920e-01 -1.04726419e-01 6.94150403e-02 -1.41446337e-01\\n-7.21814409e-02 1.80480897e-01 1.58814654e-01 6.09865785e-02\\n-2.93721616e-01 -2.93014526e-01 -1.77519724e-01 4.01413217e-02\\n-3.79075408e-01 1.30171672e-01 -1.41121343e-01 -1.07364096e-01\\n3.29733223e-01 -4.92025241e-02 -2.35559657e-01 2.83330590e-01\\n-1.79927528e-01 1.65434480e-01 -7.16299191e-02 3.83954763e-01\\n-2.21877679e-01 3.96518528e-01 -4.04499136e-02 9.56663340e-02\\n6.76679969e-01 9.93323475e-02 7.84072801e-02 -8.71284753e-02\\n2.86113024e-01 5.39272353e-02 1.49278075e-01 4.50444929e-02\\n-7.23957002e-01 4.47063148e-01 -7.98003282e-03 -1.87707260e-01\\n1.24477893e-01 -1.92692965e-01 3.01498324e-01 -4.46159989e-01\\n-8.75811726e-02 -1.12040214e-01 -3.15513253e-01 -2.74277508e-01\\n-2.56920695e-01 -7.10819215e-02 4.11121547e-01 -4.47752416e-01\\n1.60519369e-02 1.90174103e-01 -4.91433293e-01 6.23355061e-02\\n1.83634341e-01 1.73873201e-01 1.19613163e-01 2.14902118e-01\\n-2.48103291e-01 -4.85935003e-01 1.87821820e-01 -3.13208580e-01\\n-1.64551258e-01 1.92917556e-01 -3.24072659e-01 1.91968501e-01\\n8.72255862e-02 -5.17328503e-03 -1.52181029e-01 1.59750775e-01\\n-1.28285363e-01 -3.60016674e-02 9.75285321e-02 6.58773333e-02\\n3.50631207e-01 1.59893259e-01 -4.56033826e-01 4.60074633e-01\\n-7.83750042e-02 4.95820582e-01 6.93663582e-02 -7.54754424e-01\\n3.71111035e-01 3.22362959e-01 5.26960082e-02 -2.76920617e-01\\n6.20774567e-01 -1.62459254e-01 -1.61150321e-01 8.09434056e-02\\n-4.92908686e-01 -3.82737219e-01 1.28633529e-01 -2.28127003e-01\\n-2.61436075e-01 4.18014884e-01 -6.89997971e-02 1.16534978e-01\\n9.93123576e-02 -1.32335052e-02 -5.01167476e-02 1.54149041e-01\\n1.28883839e-01 -1.08230852e-01 -5.53067982e-01 -1.90396294e-01\\n-5.46686091e-02 -3.42771769e-01 -1.40139028e-01 -4.82705384e-01\\n-2.11515889e-01 -2.57839590e-01 -1.76500842e-01 4.25553881e-02\\n2.25386217e-01 1.30591661e-01 7.48763010e-02 9.63162184e-02\\n-2.84399331e-01 -5.51806331e-01 1.71523262e-02 7.57191181e-02\\n2.82134533e-01 2.98980474e-01 9.19542238e-02 1.69313755e-02\\n-3.56942862e-02 7.07063138e-01 -2.29328528e-01 -5.53242490e-02\\n2.03005031e-01 1.49062023e-01 2.66597904e-02 -1.86680034e-01\\n1.18516393e-01 3.93120736e-01 -3.58069867e-01 -5.33777997e-02\\n-9.80035663e-02 -6.69718534e-02 3.41944665e-01 -1.09312292e-02\\n-3.38619858e-01 -2.53083736e-01 -1.36584237e-01 6.18402436e-02\\n-4.44429427e-01 -2.75446624e-01 6.13491178e-01 4.17287499e-02\\n2.40862787e-01 2.02856824e-01 3.04710090e-01 -8.37553367e-02\\n-1.77283898e-01 -2.67449945e-01 1.79336831e-01 1.16035186e-01\\n7.55361766e-02 1.15386561e-01 -8.34488273e-02 -7.06578851e-01\\n-3.31819034e+00 -6.64388435e-03 2.91053116e-01 -3.70115995e-01\\n3.91724676e-01 -1.13145083e-01 1.25320762e-01 -1.43452451e-01\\n-2.81581104e-01 4.65349779e-02 -2.23548323e-01 -1.46493226e-01\\n1.81097135e-01 1.53515056e-01 1.24589272e-01 2.07910448e-01\\n3.20061833e-01 -3.00651908e-01 2.08528601e-02 2.67527580e-01\\n-1.64164424e-01 -5.96459210e-01 2.74880916e-01 2.54488699e-02\\n3.91146839e-01 4.34081852e-01 -3.92175347e-01 -2.18711540e-01\\n-2.81554222e-01 -1.12926178e-01 1.14689030e-01 -2.67343819e-01\\n-1.31848052e-01 2.82149166e-01 1.95411175e-01 -1.98850214e-01\\n1.46193847e-01 -3.91227722e-01 -5.32448851e-02 -3.58703583e-01\\n4.53238338e-02 -5.53824663e-01 -5.09958304e-02 -4.89958078e-02\\n8.69408965e-01 -3.34439516e-01 1.59568086e-01 -1.84388142e-02\\n1.95699498e-01 1.67088166e-01 2.35443395e-02 3.06046177e-02\\n-2.15773329e-01 -1.02752969e-01 -3.46387923e-02 -1.98693335e-01\\n5.75735152e-01 5.06339610e-01 -2.65325695e-01 -1.45466030e-01\\n-8.04520212e-04 -3.09237987e-01 -4.00573015e-01 -1.62762254e-01\\n-2.57487655e-01 -2.56285340e-01 -5.18521130e-01 -4.43848372e-01\\n-1.59129262e-01 -4.00832780e-02 -1.99822243e-02 4.50307041e-01\\n-2.09728003e-01 -3.36250663e-01 -7.73774385e-02 -4.79032636e-01\\n2.31154710e-01 -5.00294520e-03 9.85561237e-02 -2.74619281e-01\\n-1.27426758e-01 -4.41160530e-01 -2.29107887e-02 -4.33109999e-02\\n-9.38500911e-02 -2.79728144e-01 1.26884878e-01 1.51579414e-04\\n-3.05372208e-01 -5.14321208e-01 2.46081099e-01 1.27358735e-01\\n2.56379098e-01 8.40839818e-02 1.76730305e-01 -1.35128302e-02\\n2.33873323e-01 -2.12859794e-01 1.71754435e-01 -4.98271942e-01\\n8.14767629e-02 4.70817871e-02 5.67152262e-01 -1.35044113e-01\\n6.92816675e-02 1.29755944e-01 -2.07630634e-01 -1.19482920e-01\\n3.08001459e-01 1.24092596e-02 3.69739011e-02 -3.37594122e-01\\n2.31122687e-01 -1.89400643e-01 -2.33733818e-01 -7.61996508e-02\\n-3.76102068e-02 5.62368810e-01 3.59796025e-02 -2.86713272e-01\\n-4.68286872e-02 5.41302800e-01 -1.53587937e-01 2.15905026e-01\\n-2.00532809e-01 9.34032425e-02 -2.57418185e-01 1.53681025e-01\\n1.56245120e-02 -1.88835934e-01 -1.49758384e-01 -1.50384843e-01\\n-7.31983781e-02 4.02921557e-01 2.54822731e-01 1.78068131e-01\\n-2.16893032e-02 -5.01081169e-01 -7.49811307e-02 3.08025658e-01\\n7.27852359e-02 4.48885173e-01 -4.23470214e-02 -2.97585338e-01\\n1.10528171e-02 3.36962700e-01 -2.39874691e-01 2.35921398e-01\\n-2.65145659e-01 9.48325843e-02 -5.37121594e-01 -2.13374361e-01\\n-2.14532122e-01 -4.38523293e-01 1.13080211e-01 3.19716394e-01\\n2.64240764e-02 1.57901719e-01 -8.22614655e-02 -3.63574862e-01\\n2.15572625e-01 -3.27014588e-02 1.50314197e-01 3.02456945e-01\\n-4.57534939e-02 4.17071640e-01 -5.65754138e-02 -1.14566550e-01\\n-2.57182539e-01 2.87781686e-01 -1.01788752e-01 -8.15691613e-03\\n1.08806804e-01 -4.32945341e-01 -1.36645526e-01 3.26870590e-01\\n1.92701399e-01 -1.35639012e-01 -1.28477708e-01 1.24875575e-01\\n-9.70412977e-03 -4.50688183e-01 -3.02522779e-01 1.02883670e-02\\n2.98259795e-01 1.17870353e-01 3.37139219e-01 -5.24307489e-01\\n4.03249413e-02 -8.33124667e-02 -1.41711771e-01 4.25192684e-01\\n-2.02756926e-01 2.70504020e-02 -2.26189762e-01 -2.41214797e-01\\n3.72215450e-01 -1.98244564e-02 5.24469502e-02 1.36542097e-01\\n1.26975745e-01 -2.62327373e-01 -4.93684709e-01 1.25261396e-02\\n-4.42339554e-02 -1.16371989e-01 1.23740032e-01 5.96065857e-02\\n-2.50907764e-02 1.08942844e-01 -6.14572883e-01 -1.61966547e-01\\n-2.83434957e-01 2.62255725e-02 -1.36890439e-02 -4.45676088e-01\\n-1.26759961e-01 -1.28122633e-02 -5.03574610e-01 1.92078292e-01\\n-3.51851374e-01 -9.50949863e-02 1.92498401e-01 -7.75506198e-02\\n-3.94652456e-01 -5.88098280e-02 1.32708848e-01 3.25075686e-01\\n-2.16178328e-01 -2.56074458e-01 -4.48262095e-02 -1.04825044e+00\\n2.23646924e-01 -4.47032489e-02 -1.12437055e-01 2.18818843e-01\\n-7.57814199e-02 -7.27118194e-01 1.66086838e-01 -3.01929563e-01\\n-1.63327247e-01 -8.22161883e-02 -1.47352353e-01 -3.61699909e-01\\n1.25090152e-01 2.70729717e-02 -3.36827517e-01 4.17273849e-01\\n-2.03751162e-01 3.06239635e-01 -7.81369954e-02 6.93842024e-02\\n-2.05008313e-01 -2.36555949e-01 1.15896314e-02 -5.73920071e-01\\n-3.03102940e-01 -1.06991373e-01 -2.37361118e-01 -5.74391149e-02\\n-4.24181037e-02 -3.32903117e-01 -8.05178806e-02 2.41500959e-01\\n4.12768304e-01 8.00553709e-03 -1.37136742e-01 -1.83592498e-01\\n2.04979572e-02 -5.49830973e-01 1.41527683e-01 6.76143095e-02\\n-1.28784686e-01 -1.08879484e-01 1.25018701e-01 1.90895230e-01\\n2.66824007e-01 -5.18946528e-01 3.33700031e-01 -3.24654847e-01\\n-4.04191017e-01 3.90954539e-02 2.19617561e-02 -1.05853610e-01\\n4.59242731e-01 -4.79619920e-01 -1.35602862e-01 4.42796022e-01\\n-2.06907652e-02 3.99441943e-02 2.27149636e-01 -1.42135382e-01\\n-1.28183886e-01 2.92446405e-01 -3.81958455e-01 1.46428850e-02\\n7.60540307e-01 1.55388281e-01 1.34212554e-01 1.55132055e-01\\n1.12253889e-01 3.49402755e-01 4.53990459e-01 -7.37201124e-02\\n-1.64760038e-01 3.39403957e-01 -5.71803190e-03 -6.35221541e-01\\n6.55890852e-02 -3.38497534e-02 -3.86990964e-01 -3.71794730e-01\\n6.82123899e-01 4.21101063e-01 -3.60324889e-01 -3.31207067e-01\\n-1.79230854e-01 -2.74212420e-01 1.46484263e-02 -1.17420331e-02\\n5.49856164e-02 -1.70786843e-01 4.64682698e-01 3.66226397e-02\\n1.17425151e-01 5.31530619e-01 -2.17245281e-01 -3.52364182e-01\\n8.84826295e-03 1.54161260e-01 -1.40242547e-01 5.53890407e-01\\n-2.64476389e-01 2.39670157e-01 3.24540841e-03 5.39631806e-02\\n-7.47219771e-02 1.94921255e-01 4.07316200e-02 1.50618702e-01\\n8.86686817e-02 1.67923704e-01 5.28612316e-01 5.21264851e-01\\n3.28501701e-01 4.34492826e-01 3.73809934e-01 -1.23514532e-04\\n5.52590311e-01 4.20426518e-01 4.59228516e-01 1.43709615e-01\\n3.12787555e-02 6.66666776e-02 1.78284287e-01 1.77383535e-02\\n3.86749476e-01 2.68428862e-01 -4.57613207e-02 8.96503031e-01\\n3.72031540e-01 2.09202200e-01 7.44310558e-01 -6.89597189e-01\\n-3.14958423e-01 -6.47929609e-02 4.33343500e-01 -4.82031107e-01\\n-7.06584007e-02 1.27265796e-01 -1.46234989e-01 2.52761006e-01\\n-4.41855252e-01 -4.05184239e-01 -8.39511901e-02 1.60894424e-01\\n-6.51107803e-02 -1.99470833e-01 -1.78317010e-01 -1.27511984e-02\\n-9.79640335e-02 -2.02443972e-01 -5.55700779e-01 -2.58728545e-02\\n-2.66039640e-01 -6.32944405e-02 -1.34583980e-01 -2.58409679e-01\\n-8.22316632e-02 -3.11412454e-01 1.36025976e-02 2.52741780e-02\\n9.96530280e-02 -3.64415608e-02 2.55640410e-02 -1.50882259e-01\\n4.68516022e-01 1.21745020e-01 5.10959148e-01 7.68714249e-02\\n4.14141640e-02 -1.89197019e-01 -1.78109229e-01 2.05753505e-01\\n2.35390767e-01 2.13140510e-02 1.84690788e-01 3.14052165e-01\\n-3.71250272e-01 -3.62805367e-01 5.86790480e-02 4.36567366e-01\\n-5.66225111e-01 -4.04161736e-02 1.71136066e-01 1.73994452e-01\\n1.04999550e-01 8.50558504e-02 -4.57604080e-02 -4.41071503e-02\\n-4.89096902e-02 -3.45571965e-01 2.17098668e-01 1.17173679e-01\\n-1.77350566e-01 5.97769842e-02 1.52673811e-01 2.05181032e-01\\n-1.87648162e-01 -3.07280328e-02 -1.53537810e-01 9.31175277e-02\\n9.87549946e-02 2.27448732e-01 -1.28859013e-01 -3.07745695e-01\\n-2.20803484e-01 8.82185027e-02 -3.15490365e-01 9.08235535e-02\\n-4.25345311e-03 1.89366877e-01 -6.74795285e-02 9.47511792e-02\\n4.62229013e-01 -5.05791269e-02 -1.77264571e-01 -2.50555009e-01\\n-8.83811340e-02 -2.04137564e-01 -3.02797519e-02 -1.70584708e-01\\n2.22457200e-01 -3.67062181e-01 -1.06782697e-01 -1.57961607e-01\\n-1.35396391e-01 -2.68211633e-01 1.30593717e-01 -6.25805035e-02]]',\n", + " 'job_description': \"The Profile: We're looking for a motivated person that loves challenges and the satisfaction that comes along with not only finding a solution, but helping out our customers along the way. The ideal candidate should bring a number of the following qualifications to the table: Bachelor's degree in computer science, engineering, math, or the physical sciences. Communicate effectively in person, on the phone, and electronically while maintaining professionalism. Think with a clear mind and develop clever and useful solutions. Excellent knowledge of Microsoft server and client software. Knowledge of database technology. Knowledge of scripting and SQL is a plus. Intelligence, motivation, and a team player attitude. Native French and fluent English speaking, German is a bonus. The Job:Main responsibilities include: Provide support via phone, web, and email to our resellers and customers. Consult and develop effective relationships with our reseller's technical support staff. Support and advise our reseller’s technical staff in designing the most efficient architecture for complex projects Test Therefore software Assist with creating resources such as Knowledge Base articles This is a home-based contractor position with up to 30% travelling required. As the main goal of this role is to provide support for the French speaking countries, the ideal candidate must be located in France, Belgium or Switzerland. The Rewards: A challenging and diversified job in an internationally oriented, rapidly growing company. A flexible work environment with the freedom to work from anywhere with an internet connection. Technical training and a competitive salary. An international, highly motivated and creative team to support you every step of the way. If these tasks sound like something you would enjoy, we want to hear from you! We look forward to receiving your application at career@therefore.net.\",\n", + " 'soft_skills': '[\"Professionalism\", \"Communications\", \"Creativity\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Projective Tests\", \"Internet Connection Sharing\", \"Knowledge Base\", \"Advising\", \"Resourcing\", \"Electronics\", \"Scripting\", \"Personalization\", \"Microsoft Servers\", \"Maintainability\", \"Computer Science\", \"Knowledge Management Software\", \"Therapeutic Support Staff\", \"SQL (Programming Language)\", \"Physical Science\", \"Technical Training\", \"Receivables\", \"Technical Support\"]',\n", + " 'languages': \"['English', 'Twi']\"},\n", + " {'company_id': '113',\n", + " 'job_title': 'full stack java software engineer for product development',\n", + " 'location': 'Allschwil',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-1.53163314e-01 3.45958501e-01 4.80312377e-01 4.96129654e-02\\n6.46373272e-01 -9.31278542e-02 7.61816055e-02 3.44816893e-01\\n1.95249282e-02 -4.04568464e-01 -1.02227561e-01 -3.02973330e-01\\n-4.56322432e-02 -1.19540840e-02 3.85900363e-02 4.57073420e-01\\n3.37809205e-01 1.04363449e-01 -2.35546127e-01 2.86029935e-01\\n1.15738235e-01 -1.27417222e-01 2.46822864e-01 7.47106314e-01\\n4.62862313e-01 -4.56334613e-02 -1.63731743e-02 3.91436256e-02\\n-1.98706076e-01 -2.27697745e-01 4.65176314e-01 -7.76805729e-03\\n-7.54578412e-02 -4.04471964e-01 1.66034758e-01 2.70674508e-02\\n-1.66153908e-01 -9.72762890e-03 -8.76198858e-02 1.22800283e-01\\n-4.23082888e-01 -1.59361169e-01 3.43715958e-02 -3.79969738e-02\\n-3.21237832e-01 -3.46769333e-01 1.73331387e-02 -7.47101232e-02\\n1.77837431e-01 -2.12040264e-03 -3.54321182e-01 3.29025447e-01\\n-3.07811081e-01 -2.14984357e-01 3.61850202e-01 7.32660949e-01\\n3.89041938e-02 -4.24984694e-01 -4.92512703e-01 -3.68156970e-01\\n2.00192556e-01 -2.88744848e-02 7.98489377e-02 -2.70854801e-01\\n2.74482489e-01 -4.84471992e-02 7.08866939e-02 2.90425003e-01\\n-6.52612448e-01 -6.39070719e-02 -2.65451163e-01 -1.03721060e-01\\n-3.66779894e-01 -8.06639344e-02 -4.08860236e-01 -1.90988392e-01\\n-6.69812709e-02 3.99656624e-01 6.99374527e-02 -3.55552696e-02\\n-1.36502668e-01 2.40765974e-01 -2.60569870e-01 4.06961948e-01\\n1.98061451e-01 2.21097186e-01 3.08582425e-01 3.56870353e-01\\n-4.11132187e-01 4.25639033e-01 2.91278541e-01 -2.82671958e-01\\n2.82269657e-01 -2.22008694e-02 4.05856639e-01 3.74224037e-02\\n-1.11184735e-02 8.13862905e-02 -2.12045267e-01 2.61964679e-01\\n1.75168380e-01 -2.40970939e-01 -1.06226020e-01 -5.00464998e-02\\n3.09629999e-02 -9.66731980e-02 1.52449638e-01 2.33151689e-01\\n-3.36198926e-01 4.59143519e-01 8.50484818e-02 -2.87678570e-01\\n-6.63793683e-02 -5.16841948e-01 -2.16450438e-01 -7.34679326e-02\\n-6.93383664e-02 1.91711426e-01 1.67964071e-01 2.74309427e-01\\n1.57169223e-01 -1.15172751e-01 9.31906030e-02 8.43087852e-01\\n-1.21463858e-01 8.86573717e-02 -2.79982358e-01 3.62692535e-01\\n1.02803856e-02 -3.58152241e-01 2.72924721e-01 1.84211895e-01\\n-1.09138645e-01 -3.57095450e-02 -1.48241654e-01 3.60044777e-01\\n3.82462074e-03 -2.84275860e-01 -2.44944945e-01 1.32981062e-01\\n-1.26018807e-01 -4.99635190e-01 5.05113125e-01 7.87182525e-02\\n9.38555524e-02 -9.33069438e-02 1.42142596e-03 -3.99601050e-02\\n-1.02378197e-01 1.41383111e-01 1.19847588e-01 3.76872234e-02\\n-2.92920589e-01 -1.98500022e-01 -2.78497040e-01 1.57072470e-01\\n-2.54566163e-01 2.22539119e-02 -1.43810943e-01 -1.63376465e-01\\n2.50473261e-01 4.72176112e-02 -4.70979095e-01 2.71342963e-01\\n-1.16472512e-01 -7.90628120e-02 -1.05237804e-01 4.17008907e-01\\n-2.13933066e-01 2.08580926e-01 -1.23878624e-02 -3.85922343e-02\\n6.40814960e-01 7.73103237e-02 8.90615135e-02 -9.38754156e-02\\n3.58234495e-01 -9.82306302e-02 1.73292756e-01 1.86526567e-01\\n-6.56099975e-01 3.30115438e-01 -1.32244676e-01 -7.07923342e-03\\n1.60361305e-01 -1.46619603e-01 2.85061955e-01 -2.84561068e-01\\n-2.26398632e-02 -2.02879101e-01 -2.85904080e-01 -3.66621524e-01\\n-2.27122173e-01 -6.06604815e-02 3.44562829e-01 -4.57737863e-01\\n-1.56622306e-01 2.52336234e-01 -5.05718768e-01 2.44752932e-02\\n1.61039621e-01 2.83454925e-01 1.49618298e-01 1.94221050e-01\\n-1.37074977e-01 -4.62930888e-01 9.22100618e-02 -4.25722718e-01\\n-3.63900423e-01 1.69494838e-01 -3.02208155e-01 2.60865211e-01\\n1.80144772e-01 2.08197329e-02 -1.85112819e-01 2.26980983e-03\\n-1.99076489e-01 2.95837913e-02 1.58086360e-01 4.52496894e-02\\n2.71338522e-01 9.55792665e-02 -4.14960206e-01 5.17027795e-01\\n-1.84274435e-01 4.76086110e-01 1.46885529e-01 -9.81259525e-01\\n4.76066142e-01 3.95771086e-01 -6.92039728e-02 -2.90738553e-01\\n5.98037124e-01 -2.54431486e-01 4.68310118e-02 9.95763242e-02\\n-2.50004679e-01 -2.06577659e-01 2.11851314e-01 -1.10962681e-01\\n-2.81031102e-01 4.73514646e-01 5.32560460e-02 1.21132247e-01\\n1.76125064e-01 -1.86588719e-01 -2.01758519e-01 1.24924101e-01\\n-1.91084102e-01 -1.45107061e-01 -4.86961246e-01 -5.49963526e-02\\n-1.14940017e-01 -4.88502711e-01 -2.03767985e-01 -5.37756860e-01\\n-1.95237920e-01 -3.50174546e-01 -1.65076599e-01 1.37908071e-01\\n1.76700071e-01 9.60097685e-02 -4.81983982e-02 1.23764947e-01\\n-1.61157325e-01 -6.72060966e-01 -6.99396729e-02 4.07251418e-02\\n3.81361037e-01 2.40420118e-01 1.82238951e-01 7.50546763e-03\\n5.12751890e-03 5.99553466e-01 -3.11003000e-01 -1.38647854e-01\\n1.70814365e-01 2.02813327e-01 7.26821572e-02 -6.41664118e-02\\n1.45022780e-01 3.72314990e-01 -2.06986889e-01 2.11264379e-02\\n-1.00064809e-02 4.04091887e-02 3.78820419e-01 -9.73210111e-03\\n-3.53191257e-01 -2.70962983e-01 1.64302643e-02 2.30280682e-01\\n-5.55343211e-01 -2.27163360e-01 6.43484116e-01 1.92255944e-01\\n1.20767586e-01 2.04065323e-01 3.03046912e-01 -8.50166753e-02\\n-7.94806480e-02 -1.93510428e-01 2.46350124e-01 6.63291812e-02\\n1.88375890e-01 5.02003077e-03 -1.46431550e-01 -6.78383946e-01\\n-3.46461129e+00 -1.04643583e-01 7.40344599e-02 -2.19374895e-01\\n2.33800068e-01 -1.02474444e-01 2.60966033e-01 -8.06682631e-02\\n-3.61276418e-01 8.17953050e-02 -2.26808697e-01 -1.20443277e-01\\n2.05136925e-01 3.24808508e-01 1.84639096e-01 2.77114809e-01\\n2.22943172e-01 -3.17724198e-01 -2.30986457e-02 3.35503817e-01\\n-1.08519673e-01 -6.76443338e-01 2.13204086e-01 6.44621402e-02\\n2.80003637e-01 2.23152146e-01 -3.54767531e-01 -1.33177266e-01\\n-3.14195424e-01 -1.81023911e-01 7.49112964e-02 -2.37771943e-01\\n-1.53723374e-01 2.30833292e-01 2.26552293e-01 -1.41257018e-01\\n9.14531499e-02 -4.33608323e-01 1.60009437e-03 -3.89007211e-01\\n3.09233498e-02 -6.71069145e-01 8.00308213e-02 -8.82456675e-02\\n5.50971091e-01 -2.62424529e-01 8.69421959e-02 5.83611913e-02\\n1.45256668e-01 1.23083472e-01 1.29711807e-01 6.61169738e-02\\n-1.41172230e-01 -1.51783526e-01 -1.19291648e-01 -1.57829106e-01\\n5.77169895e-01 4.02582407e-01 -1.40411511e-01 -4.90478463e-02\\n1.93289556e-02 -2.55401731e-01 -5.12993753e-01 -2.99634337e-01\\n-1.97088689e-01 -1.24736778e-01 -6.80038750e-01 -5.56845307e-01\\n-1.57727346e-01 -1.20029576e-01 -1.17023624e-01 5.13350487e-01\\n-2.55626976e-01 -3.39068651e-01 -6.68958947e-02 -5.23346663e-01\\n3.06307703e-01 -1.32403001e-01 4.02943082e-02 -1.58183739e-01\\n-2.12597921e-01 -3.94796163e-01 -3.06320633e-03 -1.19470451e-02\\n-1.39734969e-01 -2.85733551e-01 1.53049409e-01 -6.65186271e-02\\n-3.11717451e-01 -4.74174410e-01 5.34584999e-01 9.38378647e-02\\n3.15939516e-01 1.70431778e-01 3.39710832e-01 4.76939157e-02\\n2.24869311e-01 -1.51843682e-01 1.28620297e-01 -5.52167058e-01\\n1.99046209e-02 2.89934110e-02 6.39659524e-01 -2.07982332e-01\\n1.17631845e-01 6.02733269e-02 -1.41133010e-01 -1.36399254e-01\\n3.49859178e-01 6.61154911e-02 1.82897508e-01 -2.17768848e-01\\n3.32716435e-01 -3.15891385e-01 -2.28447586e-01 4.60135192e-03\\n2.00065538e-01 6.59612060e-01 -5.77897392e-02 -4.26497281e-01\\n-1.71406388e-01 4.65263337e-01 -9.81196538e-02 1.41334021e-02\\n-2.48584032e-01 2.16614231e-01 -2.70570427e-01 3.26445401e-01\\n7.48366788e-02 -1.13403559e-01 -3.32377464e-01 -1.26705363e-01\\n-1.34826731e-02 3.28725249e-01 2.11554468e-01 1.48665324e-01\\n-9.89829097e-03 -4.29671198e-01 -8.29577446e-02 1.89231947e-01\\n1.26175806e-01 3.15623343e-01 1.19706079e-01 -3.54800284e-01\\n6.00643754e-02 2.98783600e-01 -1.88878328e-01 1.90656379e-01\\n-1.36439711e-01 1.52517959e-01 -5.88105321e-01 -3.46916139e-01\\n-2.49038756e-01 -2.85110682e-01 6.01450689e-02 2.84494281e-01\\n1.21692352e-01 -3.83196995e-02 5.98567771e-03 -3.91707480e-01\\n4.07254457e-01 3.96994911e-02 1.86378583e-01 1.82890430e-01\\n7.89382830e-02 6.42179191e-01 -1.93503518e-02 -2.94281811e-01\\n-2.10854381e-01 8.37750882e-02 -1.43254668e-01 -2.05893889e-01\\n-1.88123703e-03 -4.44069237e-01 -8.86562169e-02 3.72074842e-01\\n1.18633099e-01 -1.93813682e-01 -1.65041760e-01 1.98328584e-01\\n-8.11696053e-02 -2.94681668e-01 -2.72892237e-01 9.96632949e-02\\n2.88808167e-01 2.17613839e-02 3.46698076e-01 -5.16330838e-01\\n1.10231005e-01 -1.28921255e-01 3.96737382e-02 5.23298800e-01\\n1.47512212e-01 1.10427573e-01 2.74716262e-02 -1.72269687e-01\\n4.28212196e-01 1.00768507e-01 -1.03530362e-01 5.50476722e-02\\n5.27741313e-02 -2.55008817e-01 -4.77522343e-01 7.86182471e-03\\n-7.91675039e-03 -1.31084129e-01 1.52061909e-01 1.57053202e-01\\n1.67830870e-01 7.24810436e-02 -7.58585334e-01 -2.06252679e-01\\n-2.59451210e-01 1.03100769e-01 -1.10934831e-01 -5.14525354e-01\\n-9.62283686e-02 -5.88459037e-02 -6.21695578e-01 2.61563897e-01\\n-1.60806611e-01 -1.16007537e-01 4.08232585e-02 2.12570820e-02\\n-3.74709219e-01 -1.69699714e-01 1.93506375e-01 1.32566169e-01\\n-2.81781316e-01 -2.65709817e-01 -9.28634033e-03 -9.96326208e-01\\n1.67078778e-01 -2.85730162e-03 -1.21157207e-01 1.63491383e-01\\n-1.45061556e-02 -7.92238474e-01 1.48730144e-01 -3.82917881e-01\\n-2.15503648e-01 -2.12746002e-02 -1.87243342e-01 -4.63596970e-01\\n5.32534122e-02 3.02580371e-02 -1.81367904e-01 3.41464877e-01\\n-2.99989462e-01 3.43296587e-01 -1.05528966e-01 1.01690561e-01\\n2.58196751e-03 -2.40912229e-01 5.73144965e-02 -4.33545887e-01\\n-4.47768301e-01 -7.52935335e-02 -2.67288327e-01 -2.58242458e-01\\n-8.10937211e-02 -3.13946456e-01 -2.24920318e-01 1.50489826e-02\\n4.16780651e-01 1.61924630e-01 -1.28999114e-01 -1.64790958e-01\\n5.01303235e-03 -4.05673712e-01 2.86412925e-01 -1.30919382e-01\\n2.38757730e-02 -2.14699894e-01 3.16223443e-01 7.59987310e-02\\n2.09139600e-01 -3.73329848e-01 5.09765327e-01 -1.95191696e-01\\n-3.61079514e-01 -1.10824130e-01 1.15455218e-01 -1.13155525e-02\\n2.66495019e-01 -4.66058344e-01 -1.35572031e-01 3.51494700e-01\\n3.09634004e-02 8.53708386e-02 3.92202586e-01 -2.02257276e-01\\n-1.58595696e-01 2.50017524e-01 -4.46899265e-01 8.49972144e-02\\n7.50533402e-01 9.97330695e-02 1.86978996e-01 8.50821733e-02\\n-3.27972369e-03 1.93027169e-01 5.02387047e-01 -4.11191359e-02\\n-1.91403046e-01 3.73791456e-01 6.57521039e-02 -5.76677859e-01\\n-1.49259761e-01 -6.83140978e-02 -9.10222754e-02 -5.04877388e-01\\n5.83330870e-01 3.92018914e-01 -2.85945922e-01 -2.97422737e-01\\n-2.94110149e-01 -1.92240342e-01 1.74850076e-01 2.81789876e-03\\n1.57985881e-01 -1.62254602e-01 4.79511052e-01 -4.24765758e-02\\n2.61991739e-01 4.53701347e-01 -2.78757632e-01 -3.17305714e-01\\n-3.84665169e-02 1.78883731e-01 1.80745423e-02 4.35777068e-01\\n-2.12767199e-01 2.76596069e-01 9.17470902e-02 1.11956604e-01\\n-2.60972589e-01 -4.95556593e-02 1.14374287e-01 8.77545401e-02\\n1.07649840e-01 5.83111234e-02 4.51937705e-01 3.70403916e-01\\n3.79596204e-01 4.40314084e-01 2.80207187e-01 1.61016323e-02\\n5.78643262e-01 5.84255099e-01 3.51202697e-01 1.62435606e-01\\n4.38210294e-02 1.20465010e-01 1.69021785e-01 1.10571980e-02\\n3.96923721e-01 4.03684109e-01 1.05629824e-01 8.98212135e-01\\n2.66578376e-01 2.81456709e-01 6.68624640e-01 -6.50146544e-01\\n-2.79805303e-01 2.54712366e-02 4.60879087e-01 -4.32745367e-01\\n-5.20296954e-02 1.73289284e-01 -2.14327008e-01 1.30578488e-01\\n-4.67944443e-01 -2.77090222e-01 -1.02314577e-01 2.63864826e-02\\n-2.74094641e-02 -1.38882309e-01 -1.12554029e-01 1.78912118e-01\\n-1.16680600e-01 -1.13064237e-01 -3.91412824e-01 -7.31634423e-02\\n-1.96001783e-01 -2.77444627e-02 -1.22542642e-01 -2.05754906e-01\\n-1.15874052e-01 -3.24952066e-01 -1.06884971e-01 1.56433042e-03\\n1.92338869e-01 -1.04804717e-01 -6.98346496e-02 -1.68876454e-01\\n2.68450469e-01 1.32679641e-01 6.36637986e-01 -2.72035170e-02\\n1.56983778e-01 -2.27794543e-01 -1.97969347e-01 4.83374074e-02\\n2.30626494e-01 -1.16594844e-02 -6.75922185e-02 3.18463862e-01\\n-2.26679161e-01 -1.49541184e-01 6.71858191e-02 3.91767502e-01\\n-3.63625705e-01 7.56750582e-03 -6.85633123e-02 1.68148264e-01\\n1.41449468e-02 1.14826232e-01 -1.04034066e-01 8.30607712e-02\\n-1.53913349e-01 -5.46937883e-01 2.69412309e-01 -2.43361786e-01\\n-1.30562007e-01 1.22145051e-02 1.50473371e-01 2.13307336e-01\\n-3.01706553e-01 1.31308943e-01 -1.63266271e-01 1.30513772e-01\\n1.32272616e-01 3.49072963e-01 -2.89044261e-01 -2.46413469e-01\\n-2.21717134e-01 1.86555490e-01 -8.18150416e-02 1.00055322e-01\\n-4.59750183e-03 3.34689707e-01 1.78314701e-01 1.21363208e-01\\n5.63126564e-01 -5.09514613e-03 -2.39189774e-01 -2.65341222e-01\\n-1.81436628e-01 -1.33335114e-01 8.30459446e-02 -4.74097691e-02\\n2.04371735e-01 -3.05493683e-01 -6.46080151e-02 -2.02174991e-01\\n-2.19153166e-01 -4.56935525e-01 -2.61295252e-02 -7.57990777e-02]]',\n", + " 'job_description': \"Swiss AviationSoftware is a 100% subsidiary of Swiss International Air Lines and successfully develops and distributes the software package AMOS which manages the maintenance, engineering and logistics requirements of modern airlines. In order to strengthen our leading market position we are looking for dedicated employees who would like to work in a fascinating international environment with more than 180 customers from all over the world. We are looking for skilled Software Engineers to be responsible for the further development of our Java-based application AMOS. Do you want to be part of a product development team and oversee the full life-cycle? Do you want to develop & maintain a software with more than 5M lines of code, used by airlines from all over the world to ensure the safety of their aircraft's? Then help us to continue the success story of AMOS and apply. Tasks Work closely with customers and their users to understand requirements Implement complex solutions within AMOS in full depth, from database backend until user frontend Go along with the full application life-cycle Work in agile development teams Perform code-reviews and write automated tests Requirements Successfully completed a degree/diploma in software engineering, computer science, or related discipline Strong foundation in Java and SQL Strong object oriented modelling and analysis skills Significant experience/interest in writing enterprise applications Knowledge of Agile Development principles Excellent organization, communication and interpersonal skills Strong customer orientation, ability to make pragmatic compromises to make progress Fluency in English, German language skills are an advantage Airline / MRO know-how desirable What we offer Working in an open and cooperative environment with a motivated and friendly team Good professional and personal development opportunities Active participation in the continuous improvement of processes International work environment with people from around the globe Excellent working conditions in pleasant surroundings: brand new office spaces and ergonomic office furniture, lounge zone, terrace, coffee & break room Ideal work-life balance and different sport possibilities (e.g. squash, soccer, ice skating – partially supported by company) Child allowance and the possibility of home office Fringe benefits: discount on flights, annual TNW abo, discount offers for hotels and hire cars, advantageous credit card conditions, and more\",\n", + " 'soft_skills': '[\"Writing\", \"Cooperation\", \"Professionalism\", \"Friendliness\", \"Management\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Computer Science\", \"Life Cycle Assessment\", \"Branding\", \"Maintenance Engineering\", \"Credit Card Applications\", \"M (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Test Automation\", \"Hostile Work Environment\", \"Software Engineering\", \"Java Application Server\", \"Ergonomics\", \"Logistics\", \"Continuous Improvement Process\", \"Object-Oriented Design\", \"Transferable Skills Analysis\", \"Agile Product Development\", \"Office Space Planning\", \"Code Review\", \"Community Organizing\", \"Personality Development\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Galician', 'Somali', 'Dzongkha']\"},\n", + " {'company_id': '86',\n", + " 'job_title': 'full stack web application engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Security Services',\n", + " 'website': 'www.open-systems.com',\n", + " 'jobdescription_embedded': '[[-3.17957133e-01 3.46389115e-01 3.89491558e-01 -3.21595445e-02\\n5.47099888e-01 -2.52057105e-01 1.19775601e-01 4.27356750e-01\\n-2.69577876e-02 -4.45008129e-01 -1.14103749e-01 -2.02499047e-01\\n-8.60764459e-02 6.90063164e-02 1.94518670e-01 3.55485588e-01\\n3.41190726e-01 1.12909868e-01 -1.41569227e-01 4.89856005e-01\\n4.27033752e-02 -1.30995095e-01 4.85031717e-02 7.52265155e-01\\n4.26227689e-01 -3.18181980e-03 -8.98265168e-02 2.08703224e-02\\n-2.44165137e-01 -2.73249954e-01 3.26298892e-01 -1.04821555e-01\\n-7.59880915e-02 -4.93569523e-01 7.06598237e-02 6.10551722e-02\\n-2.48633206e-01 -9.26238373e-02 -1.26214534e-01 2.20894963e-01\\n-5.46437979e-01 -2.03694150e-01 9.57597792e-02 -4.09916788e-02\\n-1.17594033e-01 -3.00222963e-01 1.58938259e-01 -7.88319390e-03\\n1.69749066e-01 8.69346112e-02 -5.74281931e-01 2.77996898e-01\\n-2.53192782e-01 -2.76665032e-01 4.04574513e-01 5.27458131e-01\\n-1.04940504e-01 -4.91359204e-01 -4.40244555e-01 -3.21139395e-01\\n4.49523218e-02 -3.41433920e-02 1.06954977e-01 -4.54942495e-01\\n2.10506827e-01 1.47364080e-01 9.09315422e-02 4.18028682e-01\\n-7.96747327e-01 -1.23051666e-01 -2.11931065e-01 4.83873719e-03\\n-3.40003461e-01 -1.12704732e-01 -2.32655272e-01 -7.71910250e-02\\n-1.51445717e-01 3.14400613e-01 -8.78645480e-02 8.16881210e-02\\n-2.42152691e-01 4.06859607e-01 -1.96380913e-01 3.39642167e-01\\n2.24399850e-01 1.33446842e-01 1.50234178e-01 3.55518043e-01\\n-3.76299322e-01 5.47876894e-01 2.43909862e-02 -1.90546989e-01\\n2.35892311e-01 2.05133080e-01 4.93840456e-01 -1.20741732e-01\\n2.72940546e-01 1.05226330e-01 -3.37884486e-01 3.16735029e-01\\n2.26761714e-01 -2.65390307e-01 2.74141170e-02 -1.15541853e-01\\n1.60161871e-02 1.23560103e-02 7.36827776e-02 1.89412162e-01\\n-2.96290547e-01 4.35608566e-01 2.17686459e-01 -2.42853463e-01\\n-1.70292541e-01 -4.95200157e-01 -6.64721355e-02 9.77687687e-02\\n1.03903778e-01 4.13565561e-02 1.20665722e-01 4.76577319e-02\\n2.13716090e-01 7.07028359e-02 1.28067777e-01 7.54609525e-01\\n-3.33775617e-02 -4.79815081e-02 -1.86167181e-01 2.25350335e-01\\n9.84847844e-02 -3.47499192e-01 1.01765737e-01 2.47770607e-01\\n1.35233268e-01 -1.61645174e-01 -2.70701975e-01 4.28736508e-01\\n-4.04644310e-02 -1.50215998e-01 -3.39992046e-01 3.33525509e-01\\n-2.42999941e-02 -3.92903835e-01 6.74369037e-01 1.46597683e-01\\n2.44624674e-01 4.66031842e-02 1.14331000e-01 -1.14503413e-01\\n-1.13514826e-01 2.12754190e-01 3.90690453e-02 1.81982353e-01\\n-3.00874203e-01 -2.41636962e-01 -2.58203894e-01 1.78066298e-01\\n-3.48155260e-01 2.64073014e-01 -4.20289263e-02 -1.06782876e-01\\n3.09588611e-01 5.90845523e-03 -3.68086725e-01 3.67620319e-01\\n-1.05782501e-01 1.15263246e-01 -5.34173846e-02 3.71192694e-01\\n-1.09338857e-01 3.00737083e-01 -2.18968000e-02 7.64149101e-03\\n5.54143012e-01 1.35591924e-01 1.07178427e-01 -9.01777484e-03\\n3.05944234e-01 1.64379794e-02 7.41080418e-02 2.71832701e-02\\n-7.85640955e-01 1.17021069e-01 -4.26308140e-02 -2.20000520e-01\\n9.34198424e-02 -2.02861633e-02 2.75185525e-01 -3.19841266e-01\\n-9.91580412e-02 -1.09273158e-01 -4.28054124e-01 -2.76276737e-01\\n-1.65073320e-01 -9.06704646e-03 3.69913608e-01 -4.40424442e-01\\n-1.96099818e-01 1.81671157e-01 -5.52416444e-01 -3.07945460e-02\\n2.31437281e-01 1.81865767e-01 1.43393546e-01 7.64940903e-02\\n-1.46329716e-01 -5.71325958e-01 -5.29930890e-02 -4.36371535e-01\\n-3.22329074e-01 1.02476284e-01 -3.54254812e-01 1.97251499e-01\\n7.99020454e-02 3.46084908e-02 -6.43852875e-02 7.43075758e-02\\n-1.01185657e-01 -4.43144664e-02 7.26245195e-02 1.54840918e-02\\n2.52201259e-01 4.69018854e-02 -3.78696471e-01 4.77530539e-01\\n-9.12952051e-02 5.21065533e-01 5.06401509e-02 -7.02111542e-01\\n6.05801105e-01 4.07491505e-01 -7.68442750e-02 -4.45064068e-01\\n5.72859585e-01 -2.93170631e-01 -6.84666485e-02 1.18993104e-01\\n-4.61221486e-01 -3.32666427e-01 2.01899692e-01 -2.62311399e-01\\n-2.69756168e-01 4.33777541e-01 4.47497107e-02 1.28752500e-01\\n3.09070170e-01 -2.55755067e-01 -1.89371314e-02 1.10282086e-01\\n2.56098453e-02 -1.69690162e-01 -4.68102574e-01 -3.34036872e-02\\n-1.05558939e-01 -5.02024770e-01 -2.28240520e-01 -3.52649599e-01\\n-2.10032925e-01 -2.88501769e-01 -2.20751137e-01 2.11570054e-01\\n3.58125597e-01 1.27706051e-01 -3.27368937e-02 1.53566003e-01\\n-1.69241130e-01 -7.30481029e-01 4.84158099e-02 1.21620789e-01\\n3.93260062e-01 1.35030329e-01 7.89637640e-02 -1.39907718e-01\\n4.03648354e-02 6.60474122e-01 -2.35167861e-01 -1.80679515e-01\\n1.87646702e-01 1.55477181e-01 -2.75418647e-02 -1.48216262e-01\\n1.15306802e-01 3.75697494e-01 -3.03794801e-01 3.99204195e-02\\n-6.01590239e-02 -9.78769436e-02 4.65614825e-01 -1.12096399e-01\\n-3.48604530e-01 -1.94803149e-01 -3.80763076e-02 1.13495745e-01\\n-5.19424558e-01 -1.92997321e-01 5.56229889e-01 1.84489548e-01\\n1.76611036e-01 1.79377154e-01 2.69371003e-01 -5.38812615e-02\\n-1.92319259e-01 -4.49233204e-01 1.52706459e-01 1.85660064e-01\\n3.87645885e-02 1.49512947e-01 -1.10662237e-01 -6.07183337e-01\\n-3.13286400e+00 -1.14501432e-01 1.86877415e-01 -2.77484596e-01\\n1.41552925e-01 3.03500071e-02 9.89959165e-02 -9.19869691e-02\\n-2.32641295e-01 -2.02264069e-04 -2.08785906e-01 -1.63579240e-01\\n2.25899354e-01 2.19554275e-01 6.82780892e-02 1.44386515e-01\\n2.50501931e-01 -3.54680568e-01 -7.91747048e-02 3.53798985e-01\\n-2.09628493e-01 -6.58907890e-01 1.65987730e-01 -1.23932049e-01\\n2.65876293e-01 3.29649925e-01 -3.39721620e-01 -1.53539389e-01\\n-1.12494364e-01 -1.77220985e-01 1.70867324e-01 -2.61521429e-01\\n-1.54491186e-01 2.21460700e-01 2.02100933e-01 -6.65310472e-02\\n1.61021203e-01 -3.54507089e-01 -2.28864610e-01 -4.85336155e-01\\n2.00379089e-01 -5.86918950e-01 -8.24745521e-02 -1.90911263e-01\\n6.94261730e-01 -1.94824278e-01 1.19847812e-01 6.07037507e-02\\n1.37646064e-01 2.34228656e-01 4.71794605e-02 9.07998309e-02\\n-1.04215816e-01 -3.03033203e-01 1.19026634e-03 -1.60643101e-01\\n5.68521082e-01 3.81689638e-01 -1.87572062e-01 -1.93162709e-01\\n1.54592827e-01 -3.23764056e-01 -3.34773690e-01 -1.68628871e-01\\n-4.69333120e-02 -2.53888488e-01 -7.32491434e-01 -3.33992243e-01\\n-1.54034451e-01 -1.60925210e-01 -1.10497199e-01 7.51931727e-01\\n-3.79072875e-01 -3.37486833e-01 -9.05068964e-03 -6.13309205e-01\\n2.02447772e-01 -2.41526768e-01 -1.35589652e-02 -2.76897520e-01\\n-2.04679877e-01 -4.70768780e-01 2.75579141e-03 7.46099651e-02\\n-7.73346275e-02 -2.33702704e-01 1.10456750e-01 -9.95911732e-02\\n-2.12389037e-01 -5.48683405e-01 4.08601940e-01 1.95013434e-01\\n2.26209521e-01 1.32945120e-01 2.82616109e-01 -9.96729136e-02\\n3.22639108e-01 -6.87282532e-02 -5.49646765e-02 -3.37978899e-01\\n1.62868485e-01 -1.87516194e-02 4.86517251e-01 -2.40476042e-01\\n-5.25436476e-02 2.78704077e-01 -2.48368323e-01 -1.22600950e-01\\n3.76673907e-01 -1.46528380e-02 -3.22154677e-03 -1.90073922e-01\\n3.27841878e-01 -4.24081594e-01 -1.61813736e-01 1.64856791e-01\\n9.25865248e-02 6.25278652e-01 1.81071293e-02 -4.38238144e-01\\n-1.64067969e-01 4.84205157e-01 8.74420181e-02 1.19034842e-01\\n-1.66575283e-01 1.06102586e-01 -1.69412151e-01 1.84004202e-01\\n1.41489848e-01 -1.84998080e-01 -2.53216773e-01 -7.63335004e-02\\n-1.14709005e-01 3.59787464e-01 2.77822167e-01 1.42149165e-01\\n-5.74641638e-02 -5.22582889e-01 -1.23194441e-01 1.99648932e-01\\n1.24138914e-01 4.82731998e-01 2.92330747e-03 -2.09343746e-01\\n-8.60012770e-02 4.03038114e-01 -1.07682832e-01 1.96464971e-01\\n-2.66828775e-01 1.09435424e-01 -5.08722842e-01 -2.24511251e-01\\n-3.19141299e-01 -3.28222126e-01 3.56741622e-02 3.48222464e-01\\n1.85456514e-01 -8.73688981e-03 2.66966093e-02 -3.44979525e-01\\n2.54003346e-01 1.94488287e-01 1.06250808e-01 1.61319092e-01\\n-5.43124117e-02 4.48600531e-01 3.42440605e-02 -2.58526772e-01\\n-1.44315124e-01 -2.37494670e-02 -2.26721421e-01 -1.31833866e-01\\n1.33627787e-01 -5.76189935e-01 -1.45383716e-01 3.22851747e-01\\n6.84645995e-02 -2.83004224e-01 -1.33953989e-01 2.10355148e-01\\n2.06986605e-03 -2.95229852e-01 -2.95636714e-01 2.90269870e-02\\n2.89142996e-01 2.67953780e-02 3.43758136e-01 -3.94800007e-01\\n-7.77711421e-02 3.00285202e-02 -5.75258024e-02 3.75425071e-01\\n-7.86335394e-02 3.03283446e-02 -2.51882166e-01 -1.72195703e-01\\n4.29914951e-01 -7.52227604e-02 -1.11945435e-01 7.81935230e-02\\n9.73584801e-02 -1.50054157e-01 -4.91888344e-01 1.19270407e-01\\n-1.38712302e-01 -7.83049166e-02 3.04556955e-02 6.15339205e-02\\n7.04397559e-02 1.09279469e-01 -5.24496675e-01 -2.09913269e-01\\n-2.54649192e-01 -3.27235572e-02 1.90025628e-01 -4.69346881e-01\\n-9.09959227e-02 -5.52273057e-02 -6.18522227e-01 2.38586769e-01\\n-3.16056460e-01 -6.06192090e-02 2.37740174e-01 8.90933052e-02\\n-3.04333270e-01 -1.04371428e-01 1.79925412e-02 2.74827629e-01\\n-3.92499000e-01 -3.11261356e-01 2.42314041e-02 -9.76937711e-01\\n2.94974208e-01 -1.00287952e-01 -1.79324657e-01 3.25834900e-02\\n-1.41378924e-01 -6.97744191e-01 2.50876881e-02 -2.79181689e-01\\n-1.15042403e-01 -3.51326726e-02 -2.04039142e-01 -3.63788098e-01\\n3.21779400e-02 -1.82736635e-01 -3.40582192e-01 3.87623101e-01\\n-3.33451599e-01 2.37268642e-01 -9.60848853e-02 7.21412599e-02\\n-1.30347461e-02 -3.10815781e-01 1.09990388e-01 -4.08573955e-01\\n-4.00553018e-01 -2.61758447e-01 -3.02531093e-01 -2.63614774e-01\\n-4.73727919e-02 -3.47075433e-01 -2.57021468e-02 1.62009239e-01\\n2.27930993e-01 -9.98363458e-03 -8.04812312e-02 -3.19451869e-01\\n8.27896819e-02 -4.75351155e-01 6.36880398e-02 -1.48393465e-02\\n-1.86869642e-03 -1.08936422e-01 8.40525925e-02 1.62282929e-01\\n2.52297789e-01 -3.55913818e-01 2.94258505e-01 -4.25280601e-01\\n-2.90224582e-01 -6.83074817e-02 -1.05769441e-01 -1.29082110e-02\\n3.00846905e-01 -4.91198272e-01 2.23449785e-02 3.73590678e-01\\n1.12625800e-01 8.67099017e-02 1.77705556e-01 -6.49443045e-02\\n-1.02254115e-01 2.86103904e-01 -3.14258784e-01 1.36403978e-01\\n7.75529206e-01 9.81408805e-02 6.92448067e-03 3.12625974e-01\\n1.22414492e-01 4.13226575e-01 4.88337934e-01 3.52014933e-04\\n-1.44282743e-01 1.94699198e-01 1.14453651e-01 -5.26063681e-01\\n-8.14016014e-02 6.43597320e-02 -2.09092230e-01 -3.36164057e-01\\n6.69802368e-01 4.14263695e-01 -4.57418740e-01 -2.41373301e-01\\n-1.38956279e-01 -1.81377560e-01 1.06757239e-01 -6.73089921e-02\\n-1.37804328e-02 -1.14203028e-01 5.01829922e-01 -5.63766435e-03\\n1.72867507e-01 5.98401845e-01 -9.26457644e-02 -4.24071789e-01\\n-1.02994695e-01 2.27244094e-01 1.31103089e-02 4.98054624e-01\\n-1.60583213e-01 2.41314918e-01 2.11817026e-02 1.59914345e-01\\n-1.04281180e-01 1.72808826e-01 5.19606620e-02 1.77664697e-01\\n7.32279867e-02 1.83608159e-01 5.06464124e-01 4.42793936e-01\\n3.00168693e-01 4.43760365e-01 2.35433146e-01 2.29846947e-02\\n5.31396151e-01 4.08648819e-01 4.97671515e-01 1.52437434e-01\\n6.08255565e-02 2.06853241e-01 2.17744365e-01 7.78767839e-02\\n3.70430946e-01 2.86156893e-01 8.90241712e-02 8.81004512e-01\\n3.42060626e-01 2.25520417e-01 7.98166037e-01 -6.52752697e-01\\n-3.75869304e-01 3.90703119e-02 4.31025714e-01 -4.74906176e-01\\n-5.58187664e-02 5.70952892e-02 -1.24275073e-01 3.14276159e-01\\n-5.57963073e-01 -2.32347578e-01 -5.93300611e-02 2.17000827e-01\\n1.49198808e-02 -2.02581167e-01 -2.23299891e-01 3.47343013e-02\\n-1.26407027e-01 -1.38148353e-01 -4.44794595e-01 -1.67534888e-01\\n-2.28633046e-01 -6.33168966e-02 -8.13389570e-02 -2.03161627e-01\\n5.84210306e-02 -3.88770878e-01 -4.07264195e-02 -9.29877236e-02\\n2.98769116e-01 -4.53008562e-02 -6.50997739e-03 -9.11024120e-03\\n3.44113141e-01 2.25517541e-01 6.37861669e-01 1.69867147e-02\\n7.08297417e-02 -2.75487095e-01 -2.02902600e-01 1.60759270e-01\\n5.29393815e-02 1.78294584e-01 6.96251616e-02 2.16959298e-01\\n-3.35007817e-01 -1.98974237e-01 1.43792942e-01 3.77561033e-01\\n-4.76269126e-01 -2.31554881e-02 -9.83069241e-02 2.37876683e-01\\n3.16139683e-02 1.14257373e-01 -1.43238261e-01 -2.60084327e-02\\n-1.63131550e-01 -5.09828031e-01 3.25618684e-01 -4.60752398e-02\\n-9.06016901e-02 6.81380779e-02 3.07196707e-01 2.04111695e-01\\n-2.25322306e-01 5.73124625e-02 7.86416158e-02 7.46644512e-02\\n1.10234201e-01 3.60729367e-01 -8.97766650e-02 -3.19468617e-01\\n-2.96407491e-01 1.87342674e-01 -1.46991193e-01 -4.61427383e-02\\n-3.37555222e-02 3.37481409e-01 -5.64520098e-02 9.76285711e-02\\n3.58092904e-01 -4.46299836e-02 -2.66143739e-01 -2.66801000e-01\\n-1.53056338e-01 -2.55317211e-01 -4.51381430e-02 -3.47080268e-02\\n1.95612729e-01 -4.55677122e-01 -1.10574611e-01 -9.88458768e-02\\n-2.49608960e-02 -2.35832348e-01 -2.35158112e-02 -1.15717314e-01]]',\n", + " 'job_description': 'Join our team of web application developers and face the challenge of making IT security visible, understandable, and beautiful. As a Web Application Engineer, you will extend and improve the Mission Control Portal and thus help our customers to better manage and understand their global network security setups. Together with service engineers, UI designers, and product owners you discuss, shape, specify, and implement solutions that emphasise the value of strong IT security services, ease the operation of thousands of devices deployed across the planet, and provide intelligent insights into security-relevant data and processes. As part of the Mission Control team, you share operational duties with your colleagues. We expect you to bring the following skills to the table: ETH, university, or FH degree in Computer Science Experience in web application development on the client side (JavaScript, CSS3, HTML5, React) and the server side (Java, Spring) Familiarity with SQL and relational databases Basic knowledge of build and deployment environments (Atlassian Bamboo, Maven, Tomcat) Fluent in English and preferably German Furthermore, we expect basic knowledge and a high motivation to participate a coached training program in these areas: Knowledge of Linux operating systems Understanding networking in general and the major internet protocols Knowledge of network security concepts and practices You will join one of our small development teams that works with agile methods. The team will rely on you to focus on its goals and efforts as a team player while being able to work independently. At Open Systems we are passionate about what we do. We work in an environment in which innovative solutions, rapid development times, creativity and open communication are practiced and continuously fostered. The pursuit of technical advancement is at the center of our attention. You will be based at our office in Zurich (CH) and will get the opportunity to work out of our office in Redwood City (US) for a few months. We look forward to receiving your complete online application (letter of motivation, CV, diplomas/reference letters/transcript of records. Compress your application into two attachments). For further questions and inquiries about applications, please feel free to contact Helena Grimm at +41 58 100 10 10.',\n", + " 'soft_skills': '[\"Management\", \"Communications\", \"Operations\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Agility\", \"Computer Science\", \"Compression\", \"Internet Protocols\", \"Atlassian Bamboo\", \"European Training Programs\", \"Rapid Application Development\", \"Linux\", \"HTML5\", \"Server-Side\", \"React.js\", \"Operating Systems\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Network Security\", \"Small Business Development\", \"Receivables\", \"Relational Databases\", \"Centering\", \"Network Security Services\", \"Java (Programming Language)\", \"Inquiry\", \"SQL (Programming Language)\", \"Web Application Development\", \"Apache Tomcat\", \"Controllability\", \"Open Systems SnapVault\"]',\n", + " 'languages': \"['English', 'Nauru', 'Portuguese', 'Persian']\"},\n", + " {'company_id': '46',\n", + " 'job_title': 'data centre engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.20992708e-01 3.24868619e-01 4.44623590e-01 -2.06698015e-01\\n5.61702907e-01 1.67399067e-02 2.03571469e-01 3.12604904e-01\\n1.14555821e-01 -2.30956271e-01 -2.95724452e-01 -1.45734802e-01\\n5.05553670e-02 4.16085795e-02 1.42657623e-01 4.23656821e-01\\n2.54625171e-01 1.47843584e-02 -6.55927509e-02 3.09122294e-01\\n1.01366960e-01 -1.19018257e-01 8.50919113e-02 6.65079415e-01\\n3.42924058e-01 -2.08120011e-02 9.75979790e-02 1.13722198e-02\\n-1.84017792e-01 -3.39858294e-01 4.39586669e-01 -6.86746761e-02\\n-1.32881835e-01 -3.33626121e-01 2.41054073e-01 8.20413232e-02\\n-2.09021419e-01 -1.68739520e-02 -1.91325113e-01 3.92315648e-02\\n-4.56807166e-01 -1.14604466e-01 4.69977669e-02 -1.44372091e-01\\n-3.71216565e-01 -2.73618490e-01 2.98053086e-01 -1.46605492e-01\\n1.93083301e-01 1.60194710e-01 -5.39988935e-01 3.01620752e-01\\n-3.19422901e-01 -2.94975251e-01 5.10386229e-01 6.02502227e-01\\n-3.05275898e-04 -7.01068997e-01 -3.71223271e-01 -1.88572586e-01\\n2.71705817e-02 -9.85296667e-02 9.80837792e-02 -8.92247334e-02\\n3.16859275e-01 -1.32081792e-01 2.01097038e-03 5.28337955e-01\\n-6.43169582e-01 -6.33321702e-02 -4.45892006e-01 -5.80698922e-02\\n-2.13415369e-01 1.14282221e-01 -4.74503547e-01 -2.62505710e-01\\n-6.29425496e-02 2.97526747e-01 -7.97732025e-02 1.71661079e-01\\n-1.18019126e-01 2.56952465e-01 -3.35049480e-01 2.62095660e-01\\n2.78805941e-01 1.02468014e-01 1.92153186e-01 1.66629449e-01\\n-4.03576285e-01 7.38112450e-01 4.63144541e-01 -1.77040055e-01\\n2.04118043e-01 8.59789848e-02 2.22872660e-01 1.59763366e-01\\n1.27131179e-01 1.92020372e-01 5.99381141e-03 2.29666912e-04\\n2.64624745e-01 1.79403722e-02 -9.34911892e-02 -1.64213777e-01\\n-7.91446865e-02 -2.81473016e-03 6.64469451e-02 2.00658217e-01\\n-3.72400999e-01 2.67220229e-01 1.39930248e-01 -3.18461388e-01\\n-1.59120008e-01 -3.24656099e-01 -1.11221485e-01 -1.13852412e-01\\n-1.11029960e-01 1.44244403e-01 1.79076102e-02 2.01138005e-01\\n2.60806829e-01 1.03999078e-01 5.79782352e-02 8.42487335e-01\\n-3.85027528e-02 -6.95801079e-02 -2.16275722e-01 3.70730489e-01\\n-5.77730127e-03 -2.21464545e-01 1.08441778e-01 2.45696455e-01\\n-1.86597273e-01 -2.59543478e-01 -3.63568813e-01 3.21496487e-01\\n-1.18903227e-01 -1.72197476e-01 -2.46539921e-01 2.43533224e-01\\n-1.48266852e-01 -4.79707330e-01 4.82727468e-01 -5.92029579e-02\\n8.48442614e-02 -1.10106930e-01 -3.79019693e-05 3.55553813e-02\\n-6.20178739e-03 3.51581961e-01 1.33339778e-01 -3.18575427e-02\\n-1.07156508e-01 -2.32200533e-01 -2.80870885e-01 1.46157727e-01\\n3.24593335e-02 1.44052923e-01 -4.17244673e-01 -1.08726621e-01\\n3.85440767e-01 4.97285165e-02 -3.66288632e-01 3.56455773e-01\\n1.84417531e-01 -4.29348387e-02 -1.81535304e-01 1.49954826e-01\\n-1.16695359e-04 2.36736104e-01 -4.01337855e-02 -1.40929922e-01\\n6.24371946e-01 1.46069244e-01 2.31020704e-01 -7.24323019e-02\\n1.91886440e-01 -5.51386252e-02 1.29945368e-01 -1.40682291e-02\\n-6.11488104e-01 4.65296596e-01 -3.25219370e-02 -7.29846731e-02\\n1.36024877e-01 -5.82411792e-03 2.14516282e-01 -3.57889801e-01\\n-2.76079122e-02 -5.04417941e-02 -3.44033509e-01 -4.76003021e-01\\n-2.26885807e-02 -1.34410188e-01 1.86202839e-01 -4.56571281e-01\\n2.06874358e-03 1.26872778e-01 -4.57212448e-01 -5.69727421e-02\\n3.54857564e-01 1.66321099e-01 1.37243718e-01 2.25789651e-01\\n-8.55193064e-02 -3.49118888e-01 1.90711051e-01 -4.64240402e-01\\n-1.32682085e-01 7.75582716e-02 -2.49923304e-01 1.98378433e-02\\n-1.89537536e-02 3.98312919e-02 -1.02702670e-01 4.85904552e-02\\n-2.53891677e-01 -1.55262008e-01 3.92053202e-02 -8.82065743e-02\\n2.24479303e-01 2.34798998e-01 -2.63095379e-01 5.07711053e-01\\n-1.83350369e-01 3.81080300e-01 6.01966586e-03 -7.20307767e-01\\n4.24280107e-01 1.86561704e-01 1.23244980e-02 -2.94792384e-01\\n4.53267604e-01 -2.96398431e-01 1.17267378e-01 1.88871510e-02\\n-3.34912449e-01 -2.02146210e-02 2.43802950e-01 -1.83349505e-01\\n-2.80408859e-01 5.88341713e-01 1.80868283e-02 1.09298013e-01\\n1.90496162e-01 -3.36814933e-02 -1.97486252e-01 4.95056920e-02\\n-8.80986899e-02 -2.21439116e-02 -4.73396003e-01 -6.57928139e-02\\n-8.16168711e-02 -4.97412443e-01 -8.66268203e-02 -6.85619056e-01\\n-2.47249797e-01 -3.03445399e-01 -2.51491725e-01 1.43816218e-01\\n-3.78490351e-02 1.19386360e-01 -3.09882145e-02 6.85982779e-02\\n-1.36105865e-01 -6.85061991e-01 -8.01299326e-03 6.79907128e-02\\n1.99871972e-01 1.97040305e-01 1.58675492e-01 -1.33471563e-01\\n1.07989442e-02 4.95000303e-01 -2.80969262e-01 -1.73517212e-01\\n2.71584749e-01 2.02667147e-01 1.13012411e-01 -1.47868484e-01\\n1.32153437e-01 2.64528215e-01 -3.26294065e-01 3.05351596e-02\\n4.96717282e-02 7.51984939e-02 3.15145642e-01 -1.27876252e-01\\n-4.00357902e-01 -1.46592468e-01 -8.45369026e-02 1.19746655e-01\\n-5.31511903e-01 -2.43515335e-02 4.39352810e-01 2.38416597e-01\\n-3.59681658e-02 3.28629941e-01 2.08434686e-01 -3.68503183e-02\\n-2.25980595e-01 -7.79229030e-02 1.20354466e-01 1.89528957e-01\\n-5.91190830e-02 8.82301256e-02 -3.06917548e-01 -7.19935954e-01\\n-3.67594314e+00 -1.12381116e-01 1.75884247e-01 -2.27007076e-01\\n4.04413551e-01 -9.98565108e-02 3.79922926e-01 7.81878158e-02\\n-3.22409332e-01 -3.08159627e-02 -2.04330444e-01 -1.40322268e-01\\n3.32918972e-01 1.88908741e-01 8.24078396e-02 2.49415144e-01\\n2.64598001e-02 -3.97464931e-01 2.27922410e-01 3.73837560e-01\\n-3.19178700e-01 -7.36998320e-01 1.67706132e-01 -7.14538023e-02\\n1.21241175e-01 9.32772234e-02 -5.23654699e-01 -3.66293937e-02\\n-2.04351619e-01 -2.44992539e-01 2.23208100e-01 -2.21065760e-01\\n-8.99085402e-02 1.40657857e-01 1.37605861e-01 -1.14235766e-01\\n-2.94447187e-02 -2.44475365e-01 -4.49468382e-02 -7.68135726e-01\\n5.89522645e-02 -5.65950096e-01 -9.49528441e-02 -4.10118699e-02\\n6.01877391e-01 -1.01314165e-01 1.37759060e-01 -1.07751355e-01\\n9.30629522e-02 2.41365522e-01 1.12298779e-01 1.45285383e-01\\n-2.63603657e-01 -3.25437903e-01 -7.21056610e-02 -8.31322223e-02\\n5.68651319e-01 3.79927188e-01 -4.65950549e-01 2.72869971e-03\\n-1.22071005e-01 -2.76108623e-01 -5.45160472e-01 -1.80649400e-01\\n-2.34067068e-01 1.62110150e-01 -7.07921565e-01 -2.82714754e-01\\n-9.99909639e-02 -2.50131696e-01 -4.89306152e-02 4.86768872e-01\\n-2.37586051e-01 -3.45522076e-01 -1.42306477e-01 -6.06279552e-01\\n4.44346130e-01 -6.18551373e-02 1.56405732e-01 -3.47408980e-01\\n-2.07678065e-01 -2.95815915e-01 1.38386652e-01 3.34735252e-02\\n-9.58454311e-02 -6.84963763e-02 8.63185823e-02 -1.38075471e-01\\n-3.59072596e-01 -5.86493552e-01 2.79859543e-01 7.74228424e-02\\n2.08769441e-01 1.41370863e-01 2.12922454e-01 1.12980502e-02\\n2.99592584e-01 -2.45005097e-02 9.83945280e-02 -3.55856538e-01\\n-6.89715743e-02 -2.60696840e-02 5.05209148e-01 -2.39443317e-01\\n9.72434208e-02 1.46529987e-01 -2.74268687e-01 -1.18378751e-01\\n2.93351650e-01 -2.23989919e-01 3.12173188e-01 -2.98116624e-01\\n2.45002553e-01 -3.65975231e-01 -3.34370494e-01 -2.41183396e-02\\n4.43742462e-02 5.83759367e-01 1.00142039e-01 -2.95338154e-01\\n-1.73483342e-01 2.94335037e-01 -3.46422642e-02 9.91996229e-02\\n-4.30163980e-01 -2.82405578e-02 -3.47431034e-01 2.63600320e-01\\n1.26142189e-01 -1.38548240e-01 -2.37378985e-01 -6.22682087e-02\\n-1.13407321e-01 2.97553122e-01 2.44797215e-01 7.06003979e-02\\n-6.73439279e-02 -2.24718019e-01 -9.53003168e-02 2.75603205e-01\\n1.09810531e-01 3.39868993e-01 1.16863534e-01 -2.59342134e-01\\n3.95490937e-02 1.41051844e-01 -3.06910217e-01 1.62998080e-01\\n-1.18638128e-01 1.47596076e-01 -5.45356512e-01 -1.84702083e-01\\n-2.16028884e-01 -3.72006148e-01 1.30186722e-01 4.52358186e-01\\n-2.24302597e-02 -2.03651801e-01 8.53662267e-02 -3.70809227e-01\\n2.26514742e-01 7.99310878e-02 1.08852006e-01 1.68566033e-01\\n4.81652543e-02 6.31120920e-01 -1.09053209e-01 -1.35200918e-01\\n-1.40370622e-01 -1.58051122e-03 -3.95264864e-01 -1.91366836e-01\\n-6.29185094e-03 -4.56136644e-01 4.50522732e-03 5.95702171e-01\\n1.59040406e-01 2.83155963e-02 1.36070162e-01 3.85688692e-01\\n-1.37359928e-02 -4.20102216e-02 -2.66277254e-01 1.16483152e-01\\n2.23654643e-01 2.09650751e-02 2.55407035e-01 -4.15736258e-01\\n1.46293670e-01 -5.34290411e-02 1.29845470e-01 3.60866219e-01\\n-3.01853996e-02 1.87387303e-01 -7.20390603e-02 -1.31535783e-01\\n4.51385915e-01 -6.54133782e-02 -9.06833410e-02 1.34642109e-01\\n2.11314842e-01 -1.32941514e-01 -3.39931607e-01 9.25652310e-02\\n-1.53027371e-01 -1.79714546e-01 8.66961256e-02 3.25545147e-02\\n3.54019180e-03 3.45192570e-03 -4.45268750e-01 -1.44551948e-01\\n-3.26949328e-01 2.60383725e-01 -2.02441350e-01 -6.96382046e-01\\n-1.40338577e-02 6.71015978e-02 -4.92353946e-01 2.64773130e-01\\n-7.66382292e-02 9.06192958e-02 1.66481182e-01 1.44609421e-01\\n-1.99086547e-01 -1.94678605e-01 2.52672762e-01 5.97272478e-02\\n-2.38344982e-01 -1.10085398e-01 -8.84047225e-02 -9.74414825e-01\\n1.87760174e-01 1.19790137e-02 -7.76776448e-02 1.13395445e-01\\n-8.81322324e-02 -7.38363206e-01 2.93696880e-01 -1.29906714e-01\\n-8.54780301e-02 1.35368869e-01 -1.21535540e-01 -3.92318517e-01\\n7.13851079e-02 2.84709353e-02 -1.45143434e-01 2.94810981e-01\\n-3.21252733e-01 3.73886317e-01 3.44846733e-02 4.07734737e-02\\n7.91742001e-03 -2.35158399e-01 7.68799782e-02 -4.66818631e-01\\n-3.90069902e-01 -1.75546423e-01 -1.66483521e-01 -2.53097773e-01\\n2.10644584e-02 -4.21779752e-01 -2.75838263e-02 9.88264009e-02\\n3.88392955e-01 3.93786915e-02 -5.44545762e-02 -8.17874521e-02\\n-1.09014504e-01 -3.92766893e-01 1.28825694e-01 -2.17944682e-01\\n1.51625395e-01 -1.85886785e-01 3.07374597e-01 -4.13127653e-02\\n3.25106204e-01 -2.95887083e-01 5.36980033e-01 -3.19379807e-01\\n-3.22525620e-01 -1.43264204e-01 1.33226901e-01 8.97722393e-02\\n3.82051915e-01 -4.85767931e-01 -1.67253297e-02 2.61806399e-01\\n-4.99421731e-02 -4.21272367e-02 3.75573844e-01 -3.38228345e-01\\n-2.53730595e-01 6.84244260e-02 -4.78008956e-01 2.60893375e-01\\n4.90229666e-01 1.69238955e-01 2.80877143e-01 1.80539608e-01\\n-6.63809255e-02 1.68181852e-01 3.38057458e-01 -1.28881663e-01\\n-1.59039959e-01 4.24895495e-01 3.80028002e-02 -6.40325665e-01\\n-1.43105865e-01 -2.63907880e-01 -1.21160537e-01 -2.52472550e-01\\n6.79355919e-01 2.05923975e-01 -3.15716326e-01 -3.91189665e-01\\n-1.93810731e-01 -2.80402511e-01 8.83146524e-02 3.37027349e-02\\n7.49644125e-03 -9.00202468e-02 5.41021109e-01 6.35374635e-02\\n3.18035275e-01 5.48332870e-01 -1.07328892e-01 -1.89855635e-01\\n1.58851850e-03 3.20116341e-01 -1.67953491e-01 3.51078421e-01\\n6.85634390e-02 2.92062312e-01 -4.61906455e-02 1.35271624e-01\\n-3.67310345e-02 -1.13375902e-01 1.00393958e-01 1.25861317e-01\\n-1.19673312e-01 2.56306708e-01 4.81333435e-01 4.64992344e-01\\n2.14798316e-01 3.36963028e-01 3.28334361e-01 7.83311427e-02\\n5.74850202e-01 6.67642534e-01 3.58128965e-01 5.36153167e-02\\n1.82366893e-01 1.31619200e-02 1.66190714e-02 1.53566594e-03\\n2.41993040e-01 4.50434387e-01 -1.27912806e-02 6.59261405e-01\\n1.94247454e-01 1.72496736e-01 5.75656235e-01 -5.13949454e-01\\n-4.03470457e-01 -2.03149110e-01 4.86505866e-01 -4.74104732e-01\\n1.93211913e-01 1.59332588e-01 -7.50615727e-03 3.39663118e-01\\n-5.07510424e-01 -2.07057089e-01 8.10246542e-02 -1.29740685e-01\\n1.40014097e-01 -1.88831493e-01 -3.58851328e-02 -7.21131917e-04\\n-1.56315446e-01 -1.56389311e-01 -2.94426352e-01 -2.51997322e-01\\n-3.41350526e-01 6.94555119e-02 -1.11559771e-01 -5.82171008e-02\\n-9.69594643e-02 -1.34011596e-01 -1.30870834e-01 7.83628523e-02\\n2.54105866e-01 -1.52538747e-01 -1.65034801e-01 -7.04521164e-02\\n2.46929064e-01 2.89245751e-02 6.04466021e-01 1.05081405e-02\\n6.89821839e-02 -4.67571244e-03 -1.24993986e-02 1.37999713e-01\\n3.58548254e-01 2.61919379e-01 4.46083099e-02 5.13837337e-01\\n-3.38287830e-01 -1.75180569e-01 1.31053075e-01 3.67902517e-01\\n-4.11561877e-01 -1.78137776e-02 5.27100787e-02 1.73103094e-01\\n-5.69220185e-02 -1.85620897e-02 -1.54638961e-01 -7.36809708e-03\\n-1.03106506e-01 -4.16724861e-01 4.85487074e-01 -1.93980247e-01\\n-3.74499291e-01 -2.29139552e-01 4.05710548e-01 4.65710521e-01\\n-7.01933727e-02 1.25290185e-01 -1.69794530e-01 8.58192295e-02\\n5.86466826e-02 9.83409062e-02 -2.16114819e-01 -9.97687280e-02\\n-3.41423601e-01 3.04073513e-01 -9.08160135e-02 2.61446118e-01\\n1.22249559e-01 2.20867783e-01 1.15949877e-01 4.79177199e-02\\n3.41100335e-01 -3.07290733e-01 -2.09567770e-01 -2.60127783e-01\\n-3.00317675e-01 -8.11325237e-02 1.12716630e-01 -1.97108611e-01\\n2.32551321e-01 -3.97126079e-01 -1.08622387e-01 -3.00310940e-01\\n-1.48808002e-01 -2.20378175e-01 -1.74243838e-01 -4.26888745e-03]]',\n", + " 'job_description': 'ExcelRedstone designs, installs, supports and enhances IT infrastructure, networks and connectivity for enterprise‐level clients across the UK and EMEA. Our services, processes and tools are built around a unique business vision which emphasizes the life cycle role of IT infrastructure – an understanding that far from being static installations, infrastructures should continually evolve to drive improved business performance. This role will be working as part of the Data Centre Operations team to deliver support activities and input to project related tasks within the Data Centre and ensure that all work carried out complies with agreed standards, providing an operational interface to physical security teams assisting in the proactive management of the site’s security. The DC Engineer will provide an interface to the customer, advising them of any operational issues with the infrastructure and acting as a point of contact to address the customer requirements including being first line of support for incident and recovery duties, contribution to BAU activity to rack, install and decommission devices. Candidates will be fluent in German and English and have worked in a similar role previously. Required Skills / Experience Ideally the candidate will have worked previously in a Data Centre support role.Network patching experience (copper and fibre) install and break/ fixKnowledge of copper termination and previous infrastructure installationsChange management processesUnderstanding of criticality of support in a financial sectorDemonstration of good listening, oral and written communication required.An ability to assimilate technical details required for project delivery in ashort time frame and in pressurised environmentAbility to manage prioritise workload effectivelyTroubleshooting, ability to diagnose potential issues impacting programme and offer resolutionFluent in German and English Job Types: Full-time, Permanent Language: English (Required)German (Required) ',\n", + " 'soft_skills': '[\"Proactivity\", \"Infrastructure\", \"Management\", \"Operations\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Business Performance Management\", \"Logistics Support Activity\", \"Tooling\", \"IT Infrastructure\", \"Installation\", \"Advising\", \"Activism\", \"Acting\", \"Idealization\", \"Physical Security\", \"Life Cycle Assessment\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '67',\n", + " 'job_title': 'embedded software engineer (f/m)',\n", + " 'location': 'Murten',\n", + " 'industry': 'Transportation Equipment Manufacturing',\n", + " 'website': 'www.johnsonelectric.com',\n", + " 'jobdescription_embedded': '[[-1.90961227e-01 3.02307189e-01 4.06296194e-01 -6.68723360e-02\\n4.88062948e-01 -1.29931673e-01 -4.14050967e-02 3.19163173e-01\\n5.06887361e-02 -5.01810074e-01 -5.40789478e-02 -2.32725516e-01\\n1.52008995e-01 9.47872847e-02 -1.44654801e-02 4.64887470e-01\\n3.06536227e-01 7.90329278e-02 -2.37781256e-01 3.75159115e-01\\n1.28430068e-01 -1.95426092e-01 2.60935843e-01 7.96691060e-01\\n4.09811765e-01 3.69257741e-02 -1.33819748e-02 6.25348166e-02\\n-1.96191207e-01 -2.81508774e-01 3.56964290e-01 1.05894692e-01\\n-1.54242992e-01 -2.78583974e-01 1.84651494e-01 2.07740683e-02\\n-2.71013290e-01 -5.09570874e-02 -2.01163471e-01 2.01297656e-01\\n-6.33528709e-01 -2.58226812e-01 2.06505116e-02 -3.19281407e-02\\n-2.73408294e-01 -3.00876021e-01 -1.69060230e-02 -2.01997429e-01\\n9.24721211e-02 7.68422708e-02 -3.13318193e-01 2.19183460e-01\\n-2.63194889e-01 -1.70613483e-01 2.94630200e-01 6.67803884e-01\\n-1.28769547e-01 -5.34841895e-01 -4.43442971e-01 -2.94140399e-01\\n1.63455829e-01 -3.71833257e-02 1.18426131e-02 -2.92370588e-01\\n4.52990294e-01 -3.66114266e-02 7.53341662e-03 2.19206810e-01\\n-8.21298599e-01 -7.63227195e-02 -3.67438138e-01 -8.96739587e-02\\n-2.99994916e-01 -8.34167525e-02 -3.10748190e-01 -1.61089182e-01\\n-4.88335416e-02 3.95247132e-01 4.08749580e-02 -1.18972361e-02\\n-8.16851035e-02 3.83712023e-01 -1.80956230e-01 3.45944285e-01\\n2.35296115e-01 3.42606008e-01 2.74330467e-01 3.03499579e-01\\n-2.87793934e-01 4.57659751e-01 2.60716438e-01 -3.08894247e-01\\n1.98636845e-01 7.88634345e-02 3.91215831e-01 -4.55623753e-02\\n1.26073867e-01 1.26045197e-01 -3.35921317e-01 3.53835404e-01\\n2.70837873e-01 -6.15093485e-02 -3.31014721e-03 -4.21051867e-02\\n1.37585536e-01 -8.48665163e-02 6.33127093e-02 3.56306612e-01\\n-3.31892699e-01 3.91179264e-01 2.63673931e-01 -2.85293102e-01\\n-8.55711251e-02 -6.02208793e-01 -2.15132996e-01 6.82008639e-02\\n2.67298315e-02 1.87833920e-01 2.28500769e-01 3.34765434e-01\\n3.00334454e-01 -4.41493914e-02 8.94269943e-02 1.00325501e+00\\n-1.19501531e-01 5.70470095e-02 -2.78094500e-01 4.02903706e-01\\n9.10818651e-02 -2.95024753e-01 1.74732834e-01 2.53634483e-01\\n1.39259668e-02 -1.08649328e-01 -1.08147129e-01 3.52419317e-01\\n-1.92297921e-02 -3.38435560e-01 -3.50372970e-01 2.14809105e-01\\n-1.58135861e-01 -3.91921818e-01 5.88610590e-01 -1.18997917e-02\\n2.69849133e-02 -1.01880446e-01 -2.24626809e-01 -5.42246096e-04\\n-2.04154015e-01 2.12246552e-01 1.43845409e-01 -2.62424089e-02\\n-4.15885061e-01 -1.79745212e-01 -2.31407091e-01 6.70922622e-02\\n-2.83756554e-01 1.28806412e-01 -2.46003240e-01 -1.72832966e-01\\n1.55988216e-01 3.80212218e-02 -3.55752885e-01 2.98487544e-01\\n-8.58948007e-02 -2.83149052e-02 1.28702377e-03 3.02462131e-01\\n-1.31129295e-01 3.01771551e-01 5.48027568e-02 -1.76191498e-02\\n6.41328990e-01 -1.15869399e-02 1.31903514e-01 -1.37810588e-01\\n3.45479190e-01 -5.87887950e-02 2.15551853e-01 1.33881286e-01\\n-6.20806158e-01 3.39302331e-01 -1.09885372e-01 1.85314156e-02\\n2.03718662e-01 -1.53167620e-01 3.84192824e-01 -3.64298165e-01\\n-1.98374420e-01 -2.12214187e-01 -2.24477455e-01 -4.42830324e-01\\n-2.53251910e-01 4.61305939e-02 3.43341410e-01 -3.54131043e-01\\n-6.73775421e-03 1.87810525e-01 -5.82899392e-01 -1.35150664e-02\\n2.35326573e-01 2.20955357e-01 1.16064236e-01 2.11745575e-01\\n-1.48247808e-01 -5.69111586e-01 1.67473361e-01 -2.89710581e-01\\n-2.21925914e-01 1.17000945e-01 -1.61162421e-01 2.72040129e-01\\n1.79881409e-01 8.19963366e-02 -1.47823676e-01 1.08851567e-01\\n-3.29741895e-01 -3.16118188e-02 2.76651978e-01 4.94638346e-02\\n2.92307973e-01 1.18307628e-01 -5.31688392e-01 4.19731110e-01\\n-1.67666778e-01 4.47059631e-01 5.73504418e-02 -9.90849435e-01\\n4.04648364e-01 2.83849239e-01 -2.16182438e-03 -4.22434747e-01\\n7.09060967e-01 -3.27431858e-01 -1.68985292e-01 1.06949665e-01\\n-4.05145288e-01 -2.54421651e-01 2.10873261e-01 -1.43575847e-01\\n-2.39792570e-01 5.69451869e-01 6.68326318e-02 1.64712772e-01\\n2.59188920e-01 -2.38842353e-01 -1.74573623e-02 7.02574477e-02\\n3.52103002e-02 -1.90982878e-01 -5.50388634e-01 -9.94304195e-02\\n-3.48700285e-02 -4.86443043e-01 -1.02534711e-01 -4.57274705e-01\\n-1.56547815e-01 -4.10417229e-01 -1.80362556e-02 1.54516622e-01\\n1.95782095e-01 1.73657909e-01 8.53160247e-02 4.81725037e-02\\n-1.99788556e-01 -6.86403453e-01 -8.92486945e-02 2.06969708e-01\\n2.05858499e-01 3.09894234e-01 1.60955414e-01 6.58785645e-03\\n-3.00352164e-02 5.17717361e-01 -2.97698617e-01 -1.52897105e-01\\n1.13592818e-01 1.12453759e-01 5.90052865e-02 -8.20500478e-02\\n1.58035621e-01 3.55347037e-01 -2.05423236e-01 5.67413457e-02\\n-1.56783119e-01 -4.24470007e-03 4.50307131e-01 1.04468479e-03\\n-3.87276053e-01 -3.07423621e-01 -7.09327906e-02 4.36846353e-02\\n-5.94122887e-01 -2.25793973e-01 5.12896717e-01 1.55379862e-01\\n1.20787606e-01 1.20838888e-01 3.79047185e-01 -1.41142786e-01\\n-3.04342419e-01 -1.30401745e-01 1.62844017e-01 8.35645348e-02\\n1.24977566e-01 -2.95533873e-02 -9.95531753e-02 -6.08309329e-01\\n-3.42164803e+00 -1.59348831e-01 2.37612650e-01 -2.09447786e-01\\n3.28545958e-01 -9.76503827e-03 6.65286556e-02 -6.28592595e-02\\n-3.86806071e-01 2.27885079e-02 -2.15409189e-01 -1.65612604e-02\\n1.68207899e-01 2.35099450e-01 2.10695177e-01 1.71636850e-01\\n1.51839748e-01 -2.63511240e-01 4.03143466e-03 3.78517419e-01\\n-2.57659610e-02 -7.59262204e-01 9.42614377e-02 -1.24125242e-01\\n3.42434913e-01 1.16450809e-01 -3.99002671e-01 2.62139887e-02\\n-2.83235401e-01 -1.86734691e-01 9.79823321e-02 -2.18627438e-01\\n-1.68703437e-01 2.86526263e-01 1.72217950e-01 -1.16626844e-01\\n1.00174248e-01 -3.73759627e-01 6.06209934e-02 -3.67037833e-01\\n1.27874777e-01 -6.81309760e-01 9.33917984e-02 -4.66748141e-02\\n6.24529004e-01 -3.26715976e-01 3.89778949e-02 3.69287133e-02\\n1.68674052e-01 2.48131499e-01 1.75386235e-01 1.59588233e-02\\n-1.49192542e-01 -2.19258815e-01 -4.26518880e-02 -1.24521285e-01\\n6.30764842e-01 5.45068860e-01 -1.84482157e-01 -9.75330546e-02\\n-6.74187317e-02 -3.88315856e-01 -6.22515798e-01 -1.56291902e-01\\n-1.69715911e-01 -7.63557404e-02 -6.72043502e-01 -3.70692372e-01\\n-1.66675881e-01 -1.11971706e-01 -1.35520682e-01 5.88076711e-01\\n-4.18146312e-01 -4.71162647e-01 -1.07628554e-01 -3.82494330e-01\\n1.91178694e-01 -3.41911793e-01 2.43808217e-02 -2.10020810e-01\\n-2.65313745e-01 -3.75480026e-01 1.43732712e-01 6.82497621e-02\\n-1.77731320e-01 -1.49461716e-01 1.19898699e-01 -1.94391668e-01\\n-3.07562917e-01 -5.42673767e-01 4.33353812e-01 1.07406914e-01\\n3.35447550e-01 4.32080636e-03 3.07040602e-01 -6.07128814e-02\\n3.49363923e-01 -8.49714428e-02 5.16585223e-02 -5.76069295e-01\\n-2.93318555e-02 -3.22695524e-02 6.48505330e-01 -2.43734702e-01\\n-1.34985112e-02 6.00437708e-02 -2.62069643e-01 -8.96679983e-02\\n4.04733807e-01 9.90126729e-02 1.87540725e-01 -3.58507097e-01\\n2.95328498e-01 -2.96999961e-01 -1.93946227e-01 5.94263598e-02\\n5.39513268e-02 5.98849654e-01 -8.78003314e-02 -4.68858868e-01\\n-1.49342954e-01 4.20889109e-01 -1.59162387e-01 -1.16223775e-01\\n-1.64921984e-01 1.44190490e-01 -2.87395805e-01 3.65324438e-01\\n-1.08885750e-01 -1.49022415e-01 -1.99717373e-01 -7.63671473e-04\\n-1.17215037e-01 3.77919734e-01 1.71796083e-01 9.51740295e-02\\n-4.58433572e-03 -3.42906475e-01 -1.14646606e-01 1.23526469e-01\\n1.73959553e-01 2.64234215e-01 2.15025336e-01 -4.32682246e-01\\n-8.72264244e-03 4.15207565e-01 -1.36777759e-01 1.54917151e-01\\n-2.23749399e-01 3.14459391e-02 -4.41772610e-01 -2.64232218e-01\\n-1.90720707e-01 -3.33520979e-01 7.98260346e-02 4.23902422e-01\\n9.11834687e-02 -3.27152088e-02 -9.04949941e-03 -5.41913033e-01\\n3.10642183e-01 1.42023608e-01 2.78775483e-01 1.45418167e-01\\n3.34162302e-02 6.45285845e-01 7.39174150e-03 -3.25092226e-01\\n-5.40213473e-02 1.55000493e-01 -1.01626165e-01 -2.12483421e-01\\n-2.55088042e-02 -5.59653401e-01 2.94854473e-02 4.46366310e-01\\n1.71795979e-01 -1.87258691e-01 -3.82122099e-01 1.27854094e-01\\n-3.04618981e-02 -2.04606995e-01 -1.74277395e-01 1.42395288e-01\\n2.15008423e-01 3.73210870e-02 2.69615322e-01 -4.53278601e-01\\n-4.18206342e-02 -1.44135460e-01 -4.56157178e-02 4.45241779e-01\\n1.92036495e-01 3.44651826e-02 -3.12050700e-01 -7.98562765e-02\\n2.99255908e-01 -1.06192911e-02 -1.13262229e-01 -1.12120643e-01\\n1.03895485e-01 -2.80288875e-01 -3.87056023e-01 6.21768124e-02\\n-2.91324407e-02 -1.17950439e-01 6.96579590e-02 9.34569538e-02\\n4.36056890e-02 9.54388380e-02 -5.51489651e-01 -2.59554267e-01\\n-2.78128892e-01 5.16062230e-02 -6.27600551e-02 -4.45799440e-01\\n-4.67644073e-02 8.99130851e-03 -5.13172925e-01 2.87693441e-01\\n-2.29372635e-01 -1.45666301e-02 1.87255681e-01 1.29888440e-02\\n-2.92936772e-01 -1.19329624e-01 6.14315607e-02 1.69655114e-01\\n-1.07955754e-01 -1.70851037e-01 -1.31654248e-01 -9.74999130e-01\\n1.56597078e-01 -1.90023661e-01 -1.23213537e-01 1.45622462e-01\\n-5.13601005e-02 -7.89138794e-01 1.91649765e-01 -3.66759926e-01\\n-1.82065085e-01 1.71815488e-03 -1.28186539e-01 -3.58267158e-01\\n3.09510808e-02 -7.64002204e-02 -2.30123848e-01 3.76886398e-01\\n-4.63092655e-01 5.42625785e-01 -1.90823600e-01 1.12717994e-01\\n-8.17193612e-02 -3.47868770e-01 1.70538291e-01 -3.04519117e-01\\n-4.25830215e-01 -1.21715717e-01 -3.04358810e-01 -1.90317124e-01\\n-1.06279731e-01 -3.51909220e-01 -3.34407479e-01 1.74891457e-01\\n2.95697331e-01 1.47530055e-02 -1.24394938e-01 -9.40550566e-02\\n5.29901348e-02 -3.72485608e-01 2.40198836e-01 -7.80478567e-02\\n3.48928161e-02 -1.52525470e-01 2.51150697e-01 2.68437583e-02\\n1.97039559e-01 -3.82035553e-01 5.61174572e-01 -1.63269252e-01\\n-3.80820274e-01 5.74959181e-02 1.95256993e-01 -2.02821232e-02\\n4.78485495e-01 -2.71912426e-01 -1.61266610e-01 2.90761799e-01\\n-2.99461354e-02 1.09233208e-01 2.96043605e-01 -2.53664434e-01\\n-1.21812135e-01 1.70203999e-01 -3.79089504e-01 5.82455508e-02\\n8.18088174e-01 1.49009988e-01 1.73639283e-01 1.38621166e-01\\n9.29844528e-02 2.86619782e-01 4.24452871e-01 -4.75698709e-02\\n-2.02167585e-01 3.10579121e-01 2.84658354e-02 -4.72701341e-01\\n-1.86543375e-01 -7.81176910e-02 -2.61987865e-01 -3.54118705e-01\\n5.82344770e-01 4.21401590e-01 -3.07702839e-01 -2.71254212e-01\\n-6.74889386e-02 -1.62138194e-01 1.60207674e-01 -3.79749872e-02\\n7.68913701e-02 -1.63890094e-01 3.70791316e-01 -5.70078641e-02\\n1.92452475e-01 5.76155305e-01 -2.82243818e-01 -3.75777543e-01\\n-4.34767269e-02 1.67873681e-01 9.23861936e-03 4.95763153e-01\\n-1.63225174e-01 2.86952823e-01 -4.99295741e-02 1.65538952e-01\\n-1.47288010e-01 -1.45947441e-01 1.26144692e-01 1.45024151e-01\\n5.50253652e-02 1.43822283e-01 5.22895098e-01 4.72827971e-01\\n3.90066117e-01 3.89683098e-01 3.33759993e-01 8.71365890e-02\\n5.08806169e-01 6.05666995e-01 2.45628655e-01 1.24336377e-01\\n9.05039459e-02 1.48086652e-01 1.04395993e-01 2.93233572e-03\\n4.74929154e-01 3.37684929e-01 2.31286228e-01 8.82641494e-01\\n2.14082241e-01 3.66024256e-01 8.41270983e-01 -6.49269402e-01\\n-3.39045256e-01 8.40719864e-02 4.70025718e-01 -4.41316783e-01\\n-1.10108405e-01 1.69689044e-01 -7.74159804e-02 1.18369266e-01\\n-4.63924885e-01 -3.00568640e-01 9.45036707e-04 2.15589598e-01\\n1.42992111e-02 -9.68270749e-02 -1.86442494e-01 7.35823140e-02\\n-6.24639466e-02 2.48518623e-02 -4.62100059e-01 -1.69027060e-01\\n-2.83651501e-01 7.52720088e-02 -1.30631015e-01 -1.94579050e-01\\n-3.99970561e-02 -3.18209797e-01 -1.55084416e-01 -2.36814432e-02\\n2.86080420e-01 -2.25669056e-01 -9.79495645e-02 -1.55903876e-01\\n3.09728861e-01 1.38523817e-01 5.54855347e-01 1.93544719e-02\\n6.78714439e-02 -1.98798731e-01 -2.00509354e-01 1.14902307e-03\\n1.25346690e-01 8.13408196e-02 7.02833608e-02 5.02133489e-01\\n-2.77203798e-01 -6.74877465e-02 1.01895735e-03 3.69287848e-01\\n-3.65283489e-01 -9.06420872e-02 -7.71393403e-02 3.95764597e-02\\n-2.04867925e-02 9.67245027e-02 -9.46887210e-02 4.64987569e-02\\n-1.40200675e-01 -4.64148402e-01 2.76971728e-01 -2.81985719e-02\\n-3.05969298e-01 4.82992604e-02 2.54118174e-01 1.42038688e-01\\n-2.62640387e-01 5.34208678e-02 -1.49399206e-01 3.24243546e-01\\n1.17101133e-01 3.89229476e-01 -1.66494593e-01 -2.32480124e-01\\n-2.46149063e-01 9.56749171e-02 -1.32022321e-01 1.38036415e-01\\n1.51663497e-01 3.55728894e-01 1.49867237e-02 1.31649878e-02\\n5.63907921e-01 -8.97426996e-03 -3.30935061e-01 -2.66526461e-01\\n-1.28716171e-01 -2.53580004e-01 -2.91833244e-02 -1.19114995e-01\\n2.46723816e-01 -3.37659180e-01 -8.13891888e-02 -2.52082705e-01\\n-8.35034326e-02 -3.64514858e-01 -7.18393698e-02 -5.51709644e-02]]',\n", + " 'job_description': 'Johnson Electric Group is the definite leader in micro motors, motion subsystems and actuators for automotive and industrial applications. Our motion solutions adjust car seats and headlamps, run vacuum cleaners and power drills as well as 300 other applications worldwide. We are the safe choice for our clients. Due to the expansion of our plant in Murten, Switzerland, and to support our Automotive Products Group team we are looking for an Embedded Software Developer (f/m). Your Responsibilities Analyzing the customer’s requirements and elaborating software specifications for embedded electronic of new actuators products Collaboration for SW FMEAs with different development teams Design and develop the embedded software functionalities Create functional requirement and software validation test plan Perform or monitor the software validation tests Reviewing and releasing the software validation test reports Requirements Engineering Degree in software, electronics, or mechatronics engineering At least a first experience in software engineering Strong knowledge of electronics and C programming for embedded systems Knowledge of Assembler coding is a plus Autonomous and systematic work, able to work under pressure High level in English and German is mandatory, French knowledge is an asset Motivated and team player Benefits An exciting and very dynamic work environment within a young, motivated team Great appreciation of entrepreneurial and out-of-the-box thinking A truly international and multicultural work context If you are interested in this challenging position we are looking forward to receiving your CV in English.',\n", + " 'soft_skills': '[\"Collaboration\", \"Team Motivation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Programming (Music)\", \"Software Validation\", \"Industrialization\", \"Mechatronics\", \"Functional Requirement\", \"M (Programming Language)\", \"Electricity\", \"Actuators\", \"Embedding\", \"Mill Test Report\", \"Hostile Work Environment\", \"Software Engineering\", \"Electronics\", \"Embedded Systems\", \"Requirements Engineering\", \"Drilling\", \"Sage SAFE X3\", \"High-Level Architecture\", \"Receivables\", \"Test Planning\", \"Software Requirements Specification\", \"Embedded Software\", \"Subsystems\"]',\n", + " 'languages': \"['English', 'Urdu', 'Aragonese', 'Zulu']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.51853904e-01 2.82749176e-01 4.16773558e-01 2.93572042e-02\\n4.61985588e-01 -1.64056927e-01 -3.86512727e-02 3.04083169e-01\\n7.93065801e-02 -5.39510012e-01 3.76780592e-02 -2.52851725e-01\\n-6.72062784e-02 1.02888979e-01 1.32925250e-02 4.28548813e-01\\n3.36443126e-01 1.31367236e-01 -1.97596133e-01 4.02601957e-01\\n7.17061460e-02 -5.96080050e-02 1.26930624e-01 6.98441982e-01\\n3.49849343e-01 -1.09164491e-01 -1.87495220e-02 -3.01221311e-02\\n-1.32925004e-01 -2.71054983e-01 4.65912700e-01 8.99737477e-02\\n-1.22823849e-01 -4.68331605e-01 9.94839817e-02 4.85083908e-02\\n-1.95725054e-01 7.95359015e-02 -6.79348335e-02 1.13579780e-01\\n-6.03635311e-01 -2.64114439e-01 -2.75513697e-02 3.42427082e-02\\n-1.83309406e-01 -2.57113636e-01 1.18164904e-01 -9.80994999e-02\\n1.56996340e-01 2.33045314e-02 -4.71748829e-01 2.52788663e-01\\n-3.41844261e-01 -2.26983979e-01 3.41973901e-01 5.28108180e-01\\n-2.03851182e-02 -4.94283795e-01 -6.58994079e-01 -3.39779377e-01\\n3.00914571e-02 -1.72587752e-01 -2.90854573e-02 -3.07613969e-01\\n2.55332947e-01 -7.03514814e-02 1.19554270e-02 2.49553502e-01\\n-6.81886852e-01 1.81134902e-02 -2.47238889e-01 -1.09319299e-01\\n-3.65392059e-01 -2.38672912e-01 -2.33202964e-01 4.81628478e-02\\n-1.39655590e-01 4.10703480e-01 7.09529892e-02 3.14599462e-02\\n-1.58952117e-01 2.87235975e-01 -3.45203400e-01 3.96860719e-01\\n1.45613164e-01 1.34366691e-01 3.43703419e-01 3.05019617e-01\\n-4.57446992e-01 4.62661028e-01 2.08779007e-01 -4.03823584e-01\\n3.74662608e-01 1.53921038e-01 4.63089406e-01 1.90360881e-02\\n1.37246877e-01 1.47153229e-01 -2.55212933e-01 3.48711252e-01\\n2.79457510e-01 -2.66440183e-01 -3.56807820e-02 -2.13237703e-01\\n8.43477026e-02 -4.87976409e-02 1.49752349e-01 1.47534534e-01\\n-2.37148762e-01 4.15283293e-01 1.49318814e-01 -2.76279449e-01\\n-1.14670306e-01 -3.66054744e-01 -1.42359540e-01 6.95504621e-03\\n4.27637026e-02 1.81085706e-01 1.46180481e-01 1.21656843e-01\\n1.92323208e-01 1.50476381e-01 5.65629527e-02 7.86176801e-01\\n-1.19430579e-01 4.15503681e-02 -3.39550972e-01 2.68115640e-01\\n2.24812061e-01 -3.47362399e-01 2.23471761e-01 1.77440405e-01\\n-9.45480838e-02 -9.25485864e-02 -1.77205503e-01 3.76194477e-01\\n-6.40595425e-03 -1.59389690e-01 -2.66261041e-01 1.31095633e-01\\n6.03977703e-02 -3.25128168e-01 6.37466908e-01 1.78865463e-01\\n2.02598646e-01 3.76355946e-02 -1.92543566e-02 -2.10498214e-01\\n-1.18873179e-01 2.58673608e-01 -5.41237220e-02 1.31135568e-01\\n-2.30271280e-01 -1.43977970e-01 -1.87533647e-01 1.40528113e-01\\n-4.13394272e-01 1.40609473e-01 -2.17305258e-01 -1.29088402e-01\\n2.50678897e-01 1.08649395e-02 -2.74858832e-01 2.09452033e-01\\n-2.48852186e-03 2.19559297e-02 1.27206072e-02 3.51277232e-01\\n-1.60248041e-01 2.08561122e-01 7.06601068e-02 -5.37634864e-02\\n6.80675566e-01 1.12800136e-01 2.85742939e-01 5.92212602e-02\\n3.17470670e-01 -3.89739424e-02 9.55083072e-02 1.93305999e-01\\n-5.91625452e-01 3.98992181e-01 -8.85723680e-02 -1.47099257e-01\\n8.77693295e-02 -6.11826777e-03 2.62965977e-01 -2.56337464e-01\\n-2.87390910e-02 -1.23226069e-01 -3.32620353e-01 -3.06448996e-01\\n-2.28533715e-01 6.26224279e-02 4.07534271e-01 -4.95527178e-01\\n-9.39548165e-02 2.63277024e-01 -5.93906999e-01 -1.09094560e-01\\n1.52626276e-01 1.63263544e-01 1.39021665e-01 9.13143009e-02\\n-2.17890710e-01 -5.61075449e-01 1.02988407e-01 -4.43747342e-01\\n-3.40748221e-01 7.05156103e-02 -2.66900718e-01 2.72048056e-01\\n9.65817496e-02 -4.27995175e-02 -1.15397945e-01 1.44985765e-01\\n-2.77967155e-01 -9.48584974e-02 7.74344653e-02 1.53259793e-02\\n2.19162792e-01 7.28397295e-02 -3.82569253e-01 5.26934683e-01\\n-1.99122563e-01 6.58057332e-01 1.02083795e-01 -9.35929954e-01\\n4.71788108e-01 2.85227984e-01 1.46428235e-02 -3.50296199e-01\\n4.36701715e-01 -3.71808946e-01 -1.97303481e-02 8.42674375e-02\\n-3.22009802e-01 -2.84546852e-01 3.08001131e-01 -1.28479317e-01\\n-2.97352612e-01 5.45129240e-01 3.60197425e-02 -1.75679475e-02\\n2.27491602e-01 -2.35922039e-01 -1.20448001e-01 1.12001151e-02\\n-1.02237865e-01 -2.86956280e-01 -6.16333723e-01 -2.34142523e-02\\n-1.26600355e-01 -4.25326765e-01 -5.03216311e-02 -4.43184674e-01\\n-1.89085156e-01 -4.41163301e-01 -3.11557263e-01 1.62245423e-01\\n2.92577803e-01 2.07104266e-01 -1.46590129e-01 -1.31869689e-02\\n-8.68371949e-02 -8.00820231e-01 -5.97576872e-02 1.93396747e-01\\n4.50607121e-01 9.83140916e-02 1.69954926e-01 3.75439338e-02\\n4.73290756e-02 4.87658352e-01 -3.38964254e-01 -2.08802015e-01\\n1.67273805e-01 2.14505658e-01 3.11082006e-02 -1.59085870e-01\\n1.07689418e-01 4.36079979e-01 -2.90260524e-01 4.89904061e-02\\n7.88347349e-02 -6.43597245e-02 4.33847904e-01 -7.09353238e-02\\n-4.39166069e-01 -1.02428116e-01 -6.27335906e-02 7.00320154e-02\\n-6.32573187e-01 -2.41143867e-01 6.37951851e-01 2.38822937e-01\\n2.70893633e-01 2.08718419e-01 1.27282187e-01 -7.46941715e-02\\n-2.19982117e-01 -2.73872823e-01 3.48563731e-01 1.70646384e-01\\n8.57338384e-02 1.13342285e-01 -1.11812964e-01 -7.05805600e-01\\n-3.47820950e+00 -1.98804468e-01 1.86101571e-01 -1.11582398e-01\\n2.07219243e-01 -1.67883456e-01 1.54417932e-01 -9.51950923e-02\\n-2.63436764e-01 7.86402896e-02 -8.82522017e-02 -1.56386971e-01\\n1.29203692e-01 2.21233070e-01 7.22615197e-02 2.81732500e-01\\n1.92154139e-01 -1.15012646e-01 3.88471782e-03 3.01531971e-01\\n-1.63786590e-01 -6.07062161e-01 2.28397340e-01 -4.34342287e-02\\n2.36585960e-01 2.35726267e-01 -2.93797433e-01 2.18861904e-02\\n-2.35802248e-01 -1.65861815e-01 6.01463094e-02 -1.59181595e-01\\n-1.75091028e-01 1.15330614e-01 1.80915445e-01 -1.35884568e-01\\n6.47971332e-02 -4.60945129e-01 -2.55378455e-01 -3.84763241e-01\\n1.50852859e-01 -5.44501424e-01 3.62265036e-02 -2.03480899e-01\\n6.20627642e-01 -2.44352341e-01 1.73251599e-01 1.21275097e-01\\n1.85098350e-01 1.86248749e-01 1.08163804e-01 4.91858274e-03\\n-2.07442254e-01 -2.21972346e-01 -8.30474794e-02 -1.63111478e-01\\n6.49472713e-01 4.59177822e-01 -1.68107107e-01 -7.88643211e-02\\n-5.11258617e-02 -1.93040326e-01 -4.75074351e-01 -1.87300295e-01\\n-1.23400807e-01 -1.61706984e-01 -4.80531424e-01 -2.54409164e-01\\n-2.68609405e-01 -2.12280691e-01 -1.75548166e-01 7.46642470e-01\\n-3.15946281e-01 -3.43264818e-01 -2.64203623e-02 -4.69152868e-01\\n2.91048855e-01 -2.02012002e-01 -1.95010900e-02 -1.45873651e-01\\n-2.85877943e-01 -4.90522504e-01 3.31342369e-02 5.30523323e-02\\n-1.91990241e-01 -3.06639075e-01 4.34964634e-02 -1.07063971e-01\\n-3.32143009e-01 -3.71124208e-01 4.23328847e-01 1.06154263e-01\\n3.23020756e-01 5.12854680e-02 3.20737720e-01 -5.13671003e-02\\n3.40294063e-01 -1.39954939e-01 -5.14114238e-02 -3.59601706e-01\\n1.36046737e-01 1.06604636e-01 5.39340258e-01 -2.67644823e-01\\n2.10414175e-03 1.62866861e-01 -2.34360531e-01 4.12796736e-02\\n4.24708366e-01 6.10347791e-03 1.58068668e-02 -2.20694304e-01\\n2.79727042e-01 -2.80479670e-01 -2.35966176e-01 1.40757188e-02\\n1.64054513e-01 6.55801415e-01 5.17257042e-02 -4.33965981e-01\\n-1.55180499e-01 5.34448862e-01 -1.12564310e-01 -6.39998727e-03\\n-2.83796251e-01 1.23083383e-01 -2.85772353e-01 1.94969624e-01\\n4.18657437e-02 -4.00091037e-02 -2.14087680e-01 -1.30600810e-01\\n-1.80930585e-01 3.51618588e-01 2.08511949e-01 6.70916066e-02\\n-2.90839653e-02 -3.77563089e-01 -1.54000878e-01 1.35323510e-01\\n1.28875762e-01 3.88641298e-01 1.20460086e-01 -2.31440678e-01\\n-3.21971402e-02 3.17797720e-01 -1.69993967e-01 6.80173859e-02\\n-3.13875556e-01 1.01377822e-01 -5.08502126e-01 -2.37176642e-01\\n-3.34009707e-01 -4.23464894e-01 1.64158046e-01 3.31282526e-01\\n8.72296244e-02 -1.08099701e-02 9.64024812e-02 -4.45768178e-01\\n1.99508876e-01 2.55556464e-01 1.76125169e-01 1.21935293e-01\\n-2.82205939e-02 5.96325278e-01 -2.51528695e-02 -2.42678106e-01\\n-1.10375725e-01 9.41763818e-02 -1.71227440e-01 -1.69492632e-01\\n-3.54252979e-02 -6.48621738e-01 -6.88366890e-02 4.18788552e-01\\n1.51158184e-01 -2.29055062e-01 -2.99994528e-01 2.12338388e-01\\n-5.54261357e-02 -1.88762218e-01 -2.21785814e-01 -1.14051253e-01\\n2.90634662e-01 -8.83075595e-03 3.81739259e-01 -4.30408925e-01\\n-3.01491208e-02 -1.98911764e-02 -1.80951282e-02 5.29432833e-01\\n4.24237028e-02 1.50009066e-01 -1.63405329e-01 -1.04461499e-01\\n4.19922024e-01 -1.01674199e-01 -1.42313182e-01 -1.15013808e-01\\n1.16384551e-01 -1.79293454e-01 -4.57757533e-01 1.61236525e-01\\n-4.98219877e-02 -2.45055735e-01 3.93563136e-02 1.76847845e-01\\n2.85705961e-02 1.77210003e-01 -5.85977316e-01 -3.09019148e-01\\n-2.79632926e-01 -3.51214632e-02 7.65097812e-02 -5.79005301e-01\\n4.16257530e-02 -4.88283336e-02 -5.90527296e-01 1.86759427e-01\\n-2.41516873e-01 -1.70146629e-01 2.03042567e-01 3.89888361e-02\\n-3.29492033e-01 -2.05313504e-01 6.17665052e-02 3.06556255e-01\\n-2.32574672e-01 -2.53132552e-01 7.75419921e-02 -9.53371048e-01\\n1.90906137e-01 9.54288989e-02 -3.10334504e-01 1.78670138e-01\\n-1.54627293e-01 -7.24138200e-01 5.72766177e-02 -3.69606495e-01\\n-1.57847837e-01 1.24574397e-02 -3.04176122e-01 -2.91801900e-01\\n8.70109200e-02 -1.80510432e-02 -3.47374022e-01 4.76854503e-01\\n-3.81352574e-01 4.07257617e-01 -1.39100701e-01 1.22036703e-01\\n5.23300096e-02 -2.71408319e-01 1.53761342e-01 -4.14499789e-01\\n-4.62930620e-01 -1.76415086e-01 -3.55790794e-01 -3.06223154e-01\\n4.54216748e-02 -3.96089464e-01 -1.18459299e-01 7.09598362e-02\\n3.45514774e-01 5.11222295e-02 -9.18194279e-02 -3.07408273e-01\\n-2.15026755e-02 -5.41955769e-01 5.09090312e-02 -2.22967304e-02\\n-5.56794330e-02 -1.05716646e-01 1.37782574e-01 1.12985663e-01\\n2.24092156e-01 -4.28340226e-01 4.43639159e-01 -3.94559532e-01\\n-2.36073971e-01 -1.03887759e-01 -9.96064916e-02 9.55996439e-02\\n2.60862917e-01 -5.47879398e-01 4.66898456e-02 3.85847032e-01\\n1.14773825e-01 -1.03335576e-02 2.00606525e-01 -7.54589140e-02\\n-6.91991001e-02 2.85299271e-01 -2.43440971e-01 1.57291532e-01\\n7.01832533e-01 -8.62964988e-03 1.70788750e-01 9.19229239e-02\\n1.80470973e-01 3.37499559e-01 5.04740238e-01 3.37938741e-02\\n-9.16615278e-02 3.13391626e-01 8.15640315e-02 -5.18981457e-01\\n1.40697360e-02 2.34034657e-02 -1.41112447e-01 -3.74412686e-01\\n6.78396463e-01 4.63988185e-01 -4.67490405e-01 -1.87658161e-01\\n-9.43224505e-02 -1.59375042e-01 2.07372278e-01 -5.82366809e-02\\n-1.21044144e-02 -4.69182059e-02 4.59965110e-01 -6.78498223e-02\\n1.65564567e-01 5.44494271e-01 -1.98038101e-01 -3.94890189e-01\\n-7.32723475e-02 2.60408700e-01 4.62674089e-02 5.24833083e-01\\n-1.87571526e-01 2.18293309e-01 -3.65190767e-03 1.18815124e-01\\n-1.07714504e-01 2.22571850e-01 1.22649245e-01 1.28631055e-01\\n1.48808897e-01 -7.09441677e-02 5.00275671e-01 5.21736264e-01\\n3.58005792e-01 4.50061262e-01 3.55701447e-01 1.89312734e-03\\n5.11802077e-01 6.18422627e-01 3.30358744e-01 1.22138329e-01\\n-4.25996780e-02 1.35074049e-01 1.37377530e-01 -2.76041031e-02\\n4.08031106e-01 5.30717850e-01 1.04869425e-01 8.21499586e-01\\n2.98053443e-01 1.92062169e-01 5.83427191e-01 -6.63905323e-01\\n-3.54664743e-01 1.17606297e-01 4.45459783e-01 -1.90459266e-01\\n1.41929463e-02 2.91706026e-01 -2.39539593e-01 1.92499757e-01\\n-3.73172820e-01 -2.47488365e-01 -5.65836132e-02 2.05047339e-01\\n9.76944268e-02 -2.59885907e-01 -1.94552302e-01 9.29138660e-02\\n-3.61183807e-02 -1.44448793e-02 -4.27614927e-01 -1.32073089e-01\\n-3.66007745e-01 -2.13572476e-02 -1.14219055e-01 -1.36226982e-01\\n1.95898861e-02 -3.82142305e-01 -1.13940388e-01 -7.96011910e-02\\n2.92670757e-01 -1.72758386e-01 -1.28923818e-01 -1.11797474e-01\\n3.07410151e-01 2.39470631e-01 4.92071360e-01 -2.89756805e-03\\n5.05052954e-02 -1.70172215e-01 -2.19500169e-01 1.73954219e-01\\n1.12113662e-01 1.07143834e-01 8.71473271e-03 3.22462559e-01\\n-3.07428360e-01 -1.37744784e-01 2.02674583e-01 2.94773638e-01\\n-3.92947644e-01 -1.08347815e-02 -1.99325487e-01 1.55441180e-01\\n1.31805673e-01 2.28853881e-01 -2.43831605e-01 2.57339720e-02\\n-1.27353847e-01 -3.76329541e-01 3.27784985e-01 -1.11792967e-01\\n-7.83414543e-02 -3.46867517e-02 3.19838881e-01 2.63436258e-01\\n-2.88480997e-01 -5.63640660e-03 -1.20494254e-01 1.73016220e-01\\n2.41902042e-02 3.28594387e-01 -1.62945122e-01 -2.30758190e-01\\n-2.84206599e-01 1.57079533e-01 -7.97383934e-02 1.14925869e-01\\n4.31870557e-02 2.88607180e-01 1.11380100e-01 5.29839620e-02\\n3.60932678e-01 -4.99029458e-03 -1.86879590e-01 -1.58306420e-01\\n-3.00347924e-01 -1.00606903e-01 -1.57361060e-01 -1.21937484e-01\\n1.93071052e-01 -3.57706726e-01 -4.54201810e-02 -5.11227697e-02\\n-1.45837128e-01 -2.51471519e-01 5.99597022e-03 -5.31127527e-02]]',\n", + " 'job_description': 'Although you will be exposed to all the different components, your focus will be one of the applications. You will be working on new features, help define the architecture and make sure our solutions stay maintainable (refactor when necessary). You will mainly be responsible for one of the following components: Desktop Application with NFC (Electron) Mobile Application (React Native with Bluetooth Low Energy) Frontend Applications (VueJS) Backend (Go) Other technologies and tools we are currently using are Python, Solidity and Docker as well as Git with Bitbucket, CI/CD for automated testing and deployment, JIRA, Slack, Confluence and Postgres. As a team we work in sprints, prioritize and define how to implement features together, do code reviews and always try to assist each other. What you will be doing: Developing new features during development sprints, making sure your code is properly tested and documented Reviewing pull requests from your colleagues and discuss how issues can be solved better Helping to define the system architecture Refactoring code to ensure it is maintainable What you bring along: Experience in designing, working on and maintaining software systems The right mindset – you like to take on responsibility, you can work independently, you care about code quality Teamwork skills Very good English skills (German not required) Computer Science background is appreciated, but we value personality and a track record over education Eligibility to work in Switzerland What we can offer: Being part of an ambitious, talented team that delivers unique solutions using the latest IoT and blockchain technologies Interesting, challenging, and diverse roles with lots of autonomy Personal development opportunities which are based on your personal contribution having measurable impact on the organization and its products An open, transparent, and inclusive team culture A fun work environment About Modum Modum is an innovative startup, combining new technologies such as Blockchain, IoT and AI to provide new solutions for our customers. Our current solutions are targeted at customers in the pharmaceutical sector - helping them to improve their supply chain efficiency, gain better insights and automate their processes. We leverage trusted data from our next generation digital monitoring solution to solve real-world challenges. Modum not only collaborates with global technology partners such as SAP and AWS, but also joins up with business partners such as Swiss Post to ensure that their solutions are fit-for-purpose. We are looking for team players and passionate personalities who bring innovative ideas and enthusiasm to everything they do. If this sounds like you, we would love to meet you! Application Process You can apply for the job by sending a short cover letter, your CV, and ideally your Github Repo to careers@modum.io. After collecting the applications and reviewing them, we will decide whether your application meets our criteria. If that is the case, we will invite you for a first interview. This interview focuses on getting to know you, your experiences, strengths, and ambitions. The goal of the first interview is to choose a shortlist of three applicants to go forward with. These three applicants will be invited for a second interview. The second interview consists of two parts: (1) A technical interview and technical challenge. We have several options for the technical challenge and are happy to discuss which suits you best beforehand. (2) You will have a chat with a few members of the team. We value a team fit; we want to make sure that both you and the existing team are happy with the decision and can work productively together. After the assessment of the second interview and your positive feedback, we will make some reference calls. As soon as the decision is made and you have received the job offer, we conclude the process by signing the contract.',\n", + " 'soft_skills': '[\"Teamwork\", \"Decisiveness\", \"Collaboration\", \"Enthusiasm\", \"Innovation\", \"Prioritization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Bitbucket\", \"Automation\", \"Tooling\", \"Code Refactoring\", \"Blockchain\", \"Computer Science\", \"Collections\", \"Automated Testing Framework\", \"Supply Chain\", \"Mobile Application Software\", \"Business Partnering\", \"Software Systems\", \"Python (Programming Language)\", \"React Native\", \"Maintainability\", \"Track (Rail Transport)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Solidity (Programming Language)\", \"Systems Architecture\", \"Idealization\", \"Hostile Work Environment\", \"Slack (Software)\", \"Bluetooth Low Energy (Bluetooth)\", \"Github\", \"Docker (Software)\", \"TARGET 3001!\", \"Electronics\", \"Personalization\", \"Digitization\", \"Code Review\", \"Receivables\", \"Atlassian Confluence\", \"Pharmaceuticals\", \"Git Flow\", \"Personality Development\", \"JIRA Studio\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Esperanto', 'Ido', 'Chinese', 'Amharic']\"},\n", + " {'company_id': '49',\n", + " 'job_title': 'software engineer (full time\\xa0and internship)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'job_description': 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " 'soft_skills': '[\"Writing\", \"Planning\"]',\n", + " 'hard_skills': '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " 'languages': \"['English', 'Kashmiri']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'c++ software engineer',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-7.09732175e-02 3.38157743e-01 5.69412589e-01 -1.66195735e-01\\n5.03363073e-01 -3.01427662e-01 1.75213546e-01 3.70859325e-01\\n-7.83256441e-02 -2.46664673e-01 -1.57646611e-01 -3.03183287e-01\\n5.62876789e-03 6.62099272e-02 -1.26478886e-02 2.39175588e-01\\n2.50667125e-01 9.02712196e-02 -3.55700850e-02 3.15962911e-01\\n1.22244105e-01 -1.80169284e-01 1.82521701e-01 6.08436346e-01\\n3.84395033e-01 6.48807585e-02 -4.17304300e-02 1.77186325e-01\\n-3.71910334e-01 -2.49414697e-01 3.38445097e-01 2.71361154e-02\\n-8.20943937e-02 -1.06550813e-01 1.03579707e-01 6.96264580e-02\\n-1.18168078e-01 5.61679527e-03 -1.20069152e-02 1.18433446e-01\\n-3.17988724e-01 -3.88510115e-02 5.55690117e-02 -9.49423462e-02\\n-1.89457342e-01 -4.34882104e-01 1.72983810e-01 -1.38408793e-02\\n1.68975905e-01 6.74046203e-03 -4.02051002e-01 3.97270113e-01\\n-2.45884851e-01 -2.40084037e-01 3.55823487e-01 5.55253744e-01\\n-1.60953432e-01 -5.12569249e-01 -3.80875677e-01 -2.17948869e-01\\n1.98999316e-01 -9.93535966e-02 9.84688699e-02 -2.70786226e-01\\n5.47612369e-01 5.13842106e-02 2.04742793e-02 2.96460122e-01\\n-8.32457960e-01 -6.41157180e-02 -2.64387578e-01 4.21878649e-03\\n-2.92655379e-01 -5.93298115e-02 -2.26857066e-01 -1.03503957e-01\\n-1.53323099e-01 3.48409712e-01 9.06687155e-02 1.47340611e-01\\n-1.17587805e-01 2.76582122e-01 -2.03875452e-01 1.52000129e-01\\n2.29381874e-01 2.89730817e-01 1.74379289e-01 2.97200233e-01\\n-3.86489332e-01 3.74304682e-01 2.04054132e-01 -2.86650628e-01\\n8.01755190e-02 1.59272060e-01 3.63705546e-01 3.62684764e-02\\n1.35509774e-01 1.62389085e-01 -1.91654444e-01 2.69931436e-01\\n2.91916728e-01 -1.95666388e-01 -2.79131491e-04 1.15946010e-01\\n-6.21787496e-02 4.24235053e-02 -2.81650256e-02 3.63688976e-01\\n-3.50429386e-01 6.15135491e-01 -8.23408086e-03 -2.69078583e-01\\n-1.10000521e-02 -6.10791564e-01 -2.57652164e-01 1.81237012e-01\\n1.68635137e-02 8.24483931e-02 2.41279125e-01 3.59629720e-01\\n1.31993130e-01 3.76155339e-02 2.16329694e-01 8.49668324e-01\\n-4.24351916e-02 1.02236137e-01 -2.08468974e-01 4.51132923e-01\\n-6.54511270e-04 -2.06175283e-01 2.21451551e-01 3.37433994e-01\\n2.84688443e-01 -1.47826029e-02 -1.95302218e-01 1.19077034e-01\\n-1.22642443e-02 -2.92544752e-01 -2.10873067e-01 1.03170395e-01\\n-1.50674015e-01 -4.92700398e-01 5.54714978e-01 -9.41199884e-02\\n-1.85997840e-02 -9.93294567e-02 -3.23144048e-02 -3.67662609e-02\\n-7.06116036e-02 2.08919823e-01 1.88044980e-01 1.35086685e-01\\n-2.38285482e-01 -1.98921636e-01 -3.70591074e-01 1.89104423e-01\\n-2.05857292e-01 4.07275781e-02 -1.79840714e-01 -7.07738549e-02\\n3.57758939e-01 -3.48363095e-03 -4.11192566e-01 3.67366552e-01\\n-2.44364031e-02 1.39620313e-02 -1.48562700e-01 3.50601792e-01\\n-1.29940212e-01 1.25663340e-01 -2.14649156e-01 -1.86845005e-01\\n4.12022114e-01 8.69969428e-02 5.65652438e-02 -6.44673035e-02\\n3.80801290e-01 -4.09280919e-02 1.80816814e-01 -1.24844490e-02\\n-7.45515108e-01 4.91572618e-01 -1.15802675e-01 -7.06677660e-02\\n1.08605832e-01 -1.65224038e-02 2.51469672e-01 -3.91017497e-01\\n9.02142376e-02 -1.65424317e-01 -3.62334460e-01 -2.98761606e-01\\n-2.03108400e-01 -4.95236889e-02 4.47920799e-01 -4.45831507e-01\\n-2.30550587e-01 2.09227860e-01 -6.53831244e-01 7.55610913e-02\\n2.74835080e-01 2.23071665e-01 2.28680134e-01 1.34381756e-01\\n-7.68228248e-02 -5.47663271e-01 2.06542522e-01 -3.24063897e-01\\n-1.38182104e-01 3.85766596e-01 -3.39159906e-01 2.95603424e-01\\n8.84369984e-02 -1.77301839e-03 -8.09287429e-02 6.14159815e-02\\n-3.95154990e-02 -1.03483334e-01 2.27816775e-01 1.10397317e-01\\n3.47076684e-01 9.98462737e-02 -4.96411592e-01 5.59874773e-01\\n-2.92814523e-01 3.10681790e-01 6.37387484e-02 -7.51089990e-01\\n3.77447665e-01 3.30954015e-01 1.48659632e-01 -2.68160224e-01\\n7.73407102e-01 -3.19565326e-01 -5.28329983e-02 1.62895218e-01\\n-4.35260147e-01 -3.16700190e-01 1.40023641e-02 -1.69399902e-01\\n-2.32417539e-01 3.85704309e-01 8.64230171e-02 7.80881196e-02\\n3.25217932e-01 -6.22150935e-02 -1.10546313e-01 6.94768131e-02\\n-7.31311291e-02 -2.37902910e-01 -3.68451387e-01 -4.65906002e-02\\n-1.04452353e-02 -5.61057985e-01 -8.47964436e-02 -4.78921413e-01\\n-2.91347444e-01 -3.36811662e-01 -1.63233683e-01 2.08118275e-01\\n1.94671497e-01 1.60794109e-01 4.09917049e-02 -1.99716892e-02\\n-2.99335033e-01 -5.02462029e-01 5.36090061e-02 1.47498637e-01\\n2.51281708e-01 2.03980505e-01 4.22054157e-02 -6.95541874e-02\\n-6.60434067e-02 6.70274615e-01 -2.01055214e-01 -1.46940142e-01\\n-3.76460585e-03 1.62617207e-01 -4.55939323e-02 -7.42059276e-02\\n8.02355334e-02 2.47612044e-01 -1.86861351e-01 1.07859202e-01\\n-1.51607305e-01 2.22057011e-02 2.65803277e-01 -1.85140014e-01\\n-1.95391744e-01 -3.99082899e-01 -1.21437453e-01 8.59106779e-02\\n-6.43157065e-01 -2.97966361e-01 6.43164992e-01 9.01006982e-02\\n1.11956343e-01 2.03367203e-01 3.05121541e-01 -3.84375378e-02\\n-2.15665936e-01 -1.40986040e-01 5.65686598e-02 7.34791979e-02\\n1.06320716e-03 1.12211332e-01 -1.91073298e-01 -5.65127194e-01\\n-3.71490908e+00 -8.42284262e-02 3.70650887e-02 -3.41618747e-01\\n1.89383447e-01 -1.36765510e-01 1.53231695e-01 -1.85825318e-01\\n-2.17697725e-01 7.02979863e-02 -1.67726010e-01 -1.65855244e-01\\n1.74625814e-01 2.86527663e-01 1.79781869e-01 1.85875028e-01\\n2.22490519e-01 -2.46982947e-01 -4.66495939e-02 3.31590384e-01\\n-1.15748435e-01 -4.95856494e-01 2.88909614e-01 -7.28984922e-02\\n4.24282700e-01 4.18521553e-01 -3.12752664e-01 -5.99385239e-02\\n-2.49968469e-01 -2.81520873e-01 6.94794059e-02 -2.31135741e-01\\n1.19230803e-02 3.52023125e-01 1.39246732e-01 -4.35293391e-02\\n1.85426310e-01 -3.30008149e-01 8.10573399e-02 -3.59109998e-01\\n8.89052749e-02 -5.66833138e-01 -1.10328689e-01 -8.17902759e-02\\n6.76092446e-01 -4.41449136e-01 9.53580216e-02 8.16766545e-02\\n1.28804808e-02 3.82314146e-01 1.38155669e-01 -1.44956544e-01\\n-1.81648791e-01 -1.90827489e-01 -3.94645296e-02 -9.17511433e-02\\n5.16309738e-01 6.05411947e-01 -2.64468849e-01 -5.75742535e-02\\n-6.35006800e-02 -3.82591248e-01 -5.13542354e-01 -3.85958135e-01\\n-2.01755837e-01 -1.05279930e-01 -6.57614768e-01 -6.02290034e-01\\n-7.30608180e-02 -3.60642150e-02 -1.81667730e-02 4.59784389e-01\\n-2.84387082e-01 -4.14291739e-01 -1.17366768e-01 -3.45769942e-01\\n-8.66269879e-03 -4.25401740e-02 -7.11327000e-03 -1.30978882e-01\\n-1.10964261e-01 -4.23698992e-01 -1.32555626e-02 -2.22957544e-02\\n-2.16932334e-02 -8.34294483e-02 2.82292873e-01 -9.88085717e-02\\n-3.63528252e-01 -5.51898062e-01 5.16849279e-01 2.43814923e-02\\n3.27961206e-01 7.38934502e-02 5.52722402e-02 8.97952691e-02\\n3.44458044e-01 -3.06690454e-01 8.63191113e-02 -4.41379368e-01\\n9.22682658e-02 1.23509362e-01 5.38387597e-01 -2.19003737e-01\\n1.44410893e-01 -1.31086307e-02 -2.57420123e-01 -1.88688517e-01\\n2.28189155e-01 4.51567098e-02 1.86264053e-01 -3.82516861e-01\\n3.97721410e-01 -3.40743482e-01 -3.19274157e-01 1.51237592e-01\\n8.30971003e-02 5.65653384e-01 -3.65719683e-02 -3.27480555e-01\\n-1.33727506e-01 4.18871701e-01 -2.91787297e-01 -1.89820930e-01\\n-1.54060274e-01 -1.67308711e-02 -2.89922059e-01 3.41024309e-01\\n-1.20500699e-02 -8.93324707e-03 -3.39832634e-01 -9.88469124e-02\\n6.77746236e-02 2.18071595e-01 2.98717409e-01 2.13551402e-01\\n-2.23585665e-02 -4.36499923e-01 9.98084843e-02 1.80773795e-01\\n1.92730665e-01 2.30230361e-01 7.05830976e-02 -1.44523337e-01\\n-4.30233106e-02 3.16218615e-01 -1.17838033e-01 2.04056710e-01\\n-1.72807783e-01 1.41375944e-01 -4.87084597e-01 -3.64977390e-01\\n-2.29792058e-01 -1.37779534e-01 -1.31740883e-01 2.84139544e-01\\n1.40844509e-01 -5.29127382e-02 3.74440588e-02 -4.78909284e-01\\n2.11673126e-01 -6.79193735e-02 3.23600322e-01 2.21084431e-01\\n-8.38968977e-02 5.27400732e-01 4.51515839e-02 -1.15839139e-01\\n-1.96130008e-01 1.81869894e-01 -2.19637066e-01 -1.18917756e-01\\n7.40906075e-02 -3.22605789e-01 -2.56365426e-02 4.08869773e-01\\n1.03238657e-01 -2.81337887e-01 -9.18627307e-02 2.92944759e-01\\n-7.87511393e-02 -5.23124874e-01 -1.78239658e-01 -4.16323282e-02\\n3.46514553e-01 1.01569079e-01 2.71194100e-01 -4.98889446e-01\\n3.29435657e-04 4.00821343e-02 -6.01410232e-02 4.23935533e-01\\n1.52143193e-02 -8.19570720e-02 4.36017588e-02 -2.85225391e-01\\n3.95784289e-01 -7.84137473e-02 2.33857762e-02 2.72822864e-02\\n1.33893818e-01 -1.34013355e-01 -2.81955779e-01 4.54632705e-03\\n-1.36969006e-03 -6.69524223e-02 1.40469614e-02 -1.55775184e-02\\n-1.54695045e-02 9.59223509e-02 -4.72673148e-01 -1.70854628e-01\\n-3.29380959e-01 -2.37619206e-01 -2.06086099e-01 -4.70689088e-01\\n1.32880814e-03 -5.07101975e-02 -4.81077284e-01 3.09559613e-01\\n-1.04970127e-01 8.56461823e-02 1.52704924e-01 -5.55119254e-02\\n-4.64345187e-01 -1.58011109e-01 2.20341131e-01 1.61148056e-01\\n-3.33467990e-01 -1.80342451e-01 -7.53946155e-02 -9.73104000e-01\\n2.55647570e-01 -1.76802590e-01 1.43152243e-02 1.01100408e-01\\n-1.07987173e-01 -4.87050533e-01 2.94101387e-01 -4.53905493e-01\\n-1.76830173e-01 -4.62156944e-02 -2.43273064e-01 -3.61822665e-01\\n2.55707316e-02 2.81040929e-02 -2.31793165e-01 3.33654135e-01\\n-3.31133038e-01 4.19694275e-01 -7.02680945e-02 1.01192951e-01\\n-9.34967697e-02 -1.91763535e-01 6.47913069e-02 -4.65523809e-01\\n-4.65492547e-01 -1.79427601e-02 -1.04338728e-01 3.64179648e-02\\n-9.73015055e-02 -1.43000424e-01 -2.23199911e-02 9.03019980e-02\\n3.29453260e-01 2.16860220e-01 -1.52818426e-01 4.73499931e-02\\n6.92804828e-02 -3.86087060e-01 -1.01768628e-01 -2.50294715e-01\\n9.01508797e-03 -2.09345028e-01 1.06488302e-01 7.17158616e-02\\n2.57702414e-02 -4.66236770e-01 3.72988701e-01 -2.41428897e-01\\n-3.00150990e-01 6.76343814e-02 8.15012455e-02 6.88380823e-02\\n3.70218098e-01 -3.64151716e-01 -1.71970084e-01 3.50667655e-01\\n5.27498312e-02 2.08043214e-02 2.73895055e-01 3.49866673e-02\\n-2.25619689e-01 2.82614082e-01 -4.14498985e-01 7.77151734e-02\\n7.99381614e-01 3.12690258e-01 1.79461390e-01 2.67340004e-01\\n8.50582197e-02 3.29132617e-01 4.06211823e-01 4.98595983e-02\\n-6.35239705e-02 4.33402687e-01 1.27888069e-01 -6.13511682e-01\\n6.95755184e-02 2.79817760e-01 -3.59201193e-01 -2.77816981e-01\\n5.89124799e-01 3.99615794e-01 -2.04645693e-01 -3.04400325e-01\\n-2.52480447e-01 -2.65843332e-01 1.06313065e-01 -1.46142602e-01\\n2.62532324e-01 -2.14799628e-01 5.59733987e-01 -3.08635482e-03\\n8.70050490e-02 4.81774390e-01 -2.22878933e-01 -2.72486746e-01\\n-4.03114930e-02 3.86128649e-02 1.53961763e-01 3.61401439e-01\\n-1.40472785e-01 1.61651582e-01 -8.83950591e-02 1.60398126e-01\\n-1.74581990e-01 9.80342552e-03 1.63590133e-01 5.96705563e-02\\n9.16998014e-02 1.76575184e-01 3.07024986e-01 4.31010813e-01\\n4.12927806e-01 4.01224524e-01 1.34665340e-01 -8.18257313e-03\\n6.43377066e-01 5.76688707e-01 2.90159345e-01 1.59929588e-01\\n-5.65333664e-02 1.82124169e-03 4.37087119e-02 3.07936175e-03\\n2.46759862e-01 3.45551163e-01 4.00373936e-02 8.87750149e-01\\n3.62184703e-01 2.75219530e-01 5.99269688e-01 -4.55938309e-01\\n-2.73753881e-01 -1.62916202e-02 3.13863486e-01 -4.16886896e-01\\n-1.18451662e-01 -4.44373228e-02 -2.54985332e-01 8.45305622e-02\\n-4.69929993e-01 -2.57368475e-01 -7.17122108e-02 -4.40081917e-02\\n1.86646119e-01 -9.26435553e-03 -2.85091251e-01 -1.98288456e-01\\n-1.71021074e-01 -1.04361407e-01 -5.03087103e-01 -3.33930813e-02\\n-1.99138790e-01 -2.23607376e-01 -1.81014612e-01 -2.80942142e-01\\n4.30873968e-02 -3.05964738e-01 -1.35344893e-01 -1.29025811e-02\\n2.20392257e-01 -2.44382381e-01 -1.16202690e-01 -1.34131104e-01\\n1.82139680e-01 1.85270220e-01 5.85613966e-01 -1.01375766e-01\\n6.22815564e-02 -2.20510125e-01 -5.30600622e-02 7.48241171e-02\\n1.99884832e-01 1.36991709e-01 -3.47617157e-02 5.08367836e-01\\n-3.82509112e-01 -1.82324246e-01 -1.05239168e-01 4.39349294e-01\\n-4.45212454e-01 1.28333688e-01 5.73447980e-02 2.10971966e-01\\n-4.51611355e-02 5.26041575e-02 -1.75756499e-01 -1.05525376e-02\\n-3.11809838e-01 -4.81039822e-01 2.77944475e-01 5.49635515e-02\\n-6.68413118e-02 -6.26209080e-02 1.16561964e-01 5.73057607e-02\\n-1.72701880e-01 -1.45538062e-01 7.78361410e-03 4.00392376e-02\\n2.37792924e-01 2.98556209e-01 -2.58527100e-01 -2.92492211e-01\\n-2.36929774e-01 2.45345399e-01 -2.63088137e-01 1.24651805e-01\\n-6.09099716e-02 2.82654375e-01 1.24566913e-01 1.78362355e-01\\n3.99074614e-01 -3.19994427e-02 -7.01547414e-02 -2.10644767e-01\\n-3.58360857e-01 -1.98544115e-01 1.57987013e-01 -1.64607111e-02\\n1.69630855e-01 -3.72725457e-01 -1.23696782e-01 -6.89900890e-02\\n-1.80261239e-01 -4.30131406e-01 -3.85016948e-02 -1.96914226e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a C++ Software Engineer. This role is permanent position based in Bern Canton. Your role: Concept & develop customized software modules for the control of large process plants in cooperation with a sales organization & development department. Analyze & implement requirements (parameterization / configuration) to the plant software. Parameterize & configure customer specific requirements. Implement within a Microsoft environment with C++. Carry out documentation & customer training. Further develop existing products. Conduct software testing activities. Closely cooperation with other departments Your Skills & Experience: 2 to 4 years of professional C ++ Software Development experience. Ideally skilled & experienced in SQL programming. Enthusiastic to get involved in parametrization, configuration & complex software development tasks. Your Profile: University Degree in Computer Science. Conceptual, structured, reliable, analytical & team-oriented. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Team Oriented\", \"Professionalism\", \"Cooperation\", \"Reliability\", \"Positivity\", \"Sales\"]',\n", + " 'hard_skills': '[\"Programming (Music)\", \"Computer Science\", \"Analytics\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Activism\", \"Custom Software\", \"Customer Development\", \"Idealization\", \"Software Engineering\", \"Conceptualization\", \"Customer Service Training\", \"C (Programming Language)\", \"Receivables\", \"Software Modules\", \"Software Development\", \"Software Testing\", \"SQL (Programming Language)\", \"Controllability\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'Navaho', 'Ojibwa', 'Igbo', 'Chichewa']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software development engineer',\n", + " 'location': 'Argovia',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.varian.com',\n", + " 'jobdescription_embedded': '[[-2.17313737e-01 1.76907182e-01 5.03869832e-01 -8.10613185e-02\\n5.77698350e-01 -1.37498632e-01 -5.03855646e-02 3.14932138e-01\\n1.57491583e-02 -3.73382628e-01 -9.06400830e-02 -2.17473552e-01\\n-6.22269697e-02 1.19820759e-01 2.60695964e-01 4.44606870e-01\\n2.85690844e-01 8.38702992e-02 -2.63696969e-01 3.37221265e-01\\n1.06212504e-01 -2.10309938e-01 6.30382523e-02 7.69200921e-01\\n2.37798497e-01 -1.32709108e-02 -1.62328511e-01 -4.45279479e-03\\n-2.79389650e-01 -1.45846263e-01 4.01631206e-01 1.32948831e-02\\n-1.71310395e-01 -4.03694779e-01 1.36894569e-01 1.37233078e-01\\n-2.80121893e-01 4.44021523e-02 -2.16047205e-02 1.69215247e-01\\n-5.64091980e-01 -2.53515005e-01 1.47172809e-02 5.85868442e-03\\n-2.54998028e-01 -2.13531673e-01 7.42013526e-06 -8.31044689e-02\\n7.30631351e-02 4.97071072e-02 -4.97737885e-01 2.04094574e-01\\n-2.56502420e-01 -2.84467489e-01 3.59334320e-01 6.20203555e-01\\n1.40190139e-01 -4.08278197e-01 -4.09758121e-01 -3.30776602e-01\\n5.91702275e-02 -1.14511959e-01 5.18550090e-02 -2.49817550e-01\\n2.97745347e-01 6.23380728e-02 4.73235473e-02 3.17425191e-01\\n-7.77367592e-01 -1.35443330e-01 -1.13761008e-01 -1.70413591e-03\\n-3.02579671e-01 -6.47172779e-02 -2.29686633e-01 -1.29727587e-01\\n-1.18826970e-01 3.88286412e-01 7.43223429e-02 5.49813174e-02\\n-1.57929331e-01 2.78977692e-01 -1.58823848e-01 3.62425357e-01\\n1.79855019e-01 2.64666557e-01 2.71944344e-01 3.69623065e-01\\n-3.10545772e-01 4.20636177e-01 1.29694074e-01 -2.63769686e-01\\n2.47702777e-01 1.13708846e-01 4.30575132e-01 4.21998352e-02\\n8.83518308e-02 5.43828048e-02 -2.94100106e-01 2.39633650e-01\\n1.72983095e-01 -1.77242950e-01 5.36393002e-02 -1.39473200e-01\\n-4.19323705e-02 3.42356563e-02 1.10027031e-04 2.49653175e-01\\n-3.85365099e-01 3.96694154e-01 1.73779592e-01 -1.84084415e-01\\n-1.12463780e-01 -5.25366247e-01 -9.50335339e-02 -1.28843961e-02\\n5.59897125e-02 1.76346928e-01 2.99809933e-01 1.20440476e-01\\n2.53902018e-01 5.76693453e-02 1.85562029e-01 9.93456721e-01\\n-1.29742101e-01 6.74831495e-02 -2.26817250e-01 3.08725834e-01\\n2.28077233e-01 -1.95277959e-01 8.00613388e-02 2.92559117e-01\\n2.16001533e-02 -2.53398195e-02 -2.22479180e-01 3.08615893e-01\\n-6.00639582e-02 -2.63694733e-01 -2.79840738e-01 1.46975890e-01\\n-9.60141271e-02 -4.79561865e-01 5.25030077e-01 -3.20742764e-02\\n1.33302063e-01 -8.26098472e-02 8.02594889e-03 2.98408568e-02\\n-1.13955401e-01 2.87154287e-01 1.38600647e-01 1.39561787e-01\\n-1.85694709e-01 -2.55041301e-01 -1.78397790e-01 1.60134792e-01\\n-2.54636317e-01 1.39403909e-01 -1.62687689e-01 -1.42998964e-01\\n2.93735236e-01 1.18912823e-01 -3.30319554e-01 2.49064445e-01\\n-1.11074820e-01 -1.13554820e-01 -7.68875107e-02 2.28103265e-01\\n-1.61063641e-01 2.07253814e-01 -2.06801575e-02 -1.52834252e-01\\n4.93240803e-01 1.21915601e-01 1.82416826e-01 -3.80384810e-02\\n4.16060865e-01 -9.31345820e-02 1.87665492e-01 1.15815125e-01\\n-7.23303914e-01 3.25315654e-01 -1.38013944e-01 -2.08898708e-01\\n1.89445928e-01 -5.70673905e-02 4.62817967e-01 -2.37105533e-01\\n5.84441461e-02 -1.50742501e-01 -3.38448614e-01 -3.19898248e-01\\n-2.25186795e-01 -9.83322412e-03 3.36904317e-01 -3.41964066e-01\\n-5.52988201e-02 2.12116554e-01 -4.68688637e-01 -9.34413150e-02\\n2.03273460e-01 2.39666283e-01 5.99059425e-02 6.31728619e-02\\n-2.02515557e-01 -5.48749149e-01 9.70005698e-04 -4.32528943e-01\\n-3.98369044e-01 1.11880578e-01 -2.27589324e-01 2.38192841e-01\\n-6.37177229e-02 3.38893421e-02 -1.86643507e-02 7.57196471e-02\\n-2.27125600e-01 -9.38344002e-02 1.77398056e-01 -2.06726268e-02\\n1.87438637e-01 -1.19498363e-02 -2.89837956e-01 4.19179291e-01\\n-2.39744112e-01 5.93459070e-01 6.01706840e-02 -9.44323361e-01\\n5.65797925e-01 2.81042755e-01 -2.36954652e-02 -3.98086220e-01\\n6.09340429e-01 -3.51427466e-01 -5.05903475e-02 1.62988022e-01\\n-3.26529592e-01 -2.11912677e-01 2.89101005e-01 -1.54574171e-01\\n-3.00115108e-01 5.06726503e-01 1.54698104e-01 -3.22428197e-02\\n2.27207839e-01 -2.50971258e-01 -9.23196748e-02 4.60527800e-02\\n-9.14112404e-02 -2.23499358e-01 -4.26061213e-01 7.89566431e-03\\n-1.53420225e-01 -4.43330407e-01 -1.43840685e-01 -3.51169288e-01\\n-1.80623367e-01 -3.89792353e-01 -2.30905846e-01 3.02567363e-01\\n1.40254527e-01 1.95810735e-01 2.27663629e-02 -2.06357818e-02\\n-5.15679233e-02 -6.42896771e-01 -8.15120898e-03 1.05036512e-01\\n4.28078562e-01 2.57289469e-01 9.94868502e-02 4.50285189e-02\\n-3.14213373e-02 4.78180230e-01 -3.21533859e-01 -2.67546117e-01\\n1.56125680e-01 1.88157663e-01 -5.60352753e-04 -6.42665103e-02\\n1.31715998e-01 3.78511727e-01 -1.70407638e-01 1.22577772e-01\\n-2.32199326e-01 9.20766369e-02 3.28321278e-01 -1.19383723e-01\\n-2.92810380e-01 -2.06647754e-01 -1.21922754e-01 2.43330777e-01\\n-5.63909531e-01 -1.59867123e-01 4.03115630e-01 9.35657993e-02\\n1.51655912e-01 1.28105506e-01 1.84450358e-01 -6.33089170e-02\\n-2.31716767e-01 -3.33377689e-01 2.15377107e-01 1.06064491e-01\\n9.79290083e-02 9.94395912e-02 -4.73493226e-02 -5.92056155e-01\\n-3.51726079e+00 -1.83722809e-01 1.89865619e-01 -2.73029745e-01\\n3.07144970e-01 -1.70468509e-01 1.01131082e-01 -4.50659022e-02\\n-3.07788372e-01 3.79072614e-02 -1.60818085e-01 -4.47197407e-02\\n1.50851697e-01 2.08812684e-01 1.64847717e-01 1.09774619e-01\\n3.41433845e-02 -2.49404252e-01 5.29325195e-03 3.07635963e-01\\n-9.18527693e-02 -7.31783271e-01 2.04372391e-01 -1.35867983e-01\\n9.89519581e-02 2.25260258e-01 -4.08851117e-01 -2.43813451e-02\\n-2.83608258e-01 -2.35075548e-01 8.47603679e-02 -1.50232404e-01\\n-1.33682564e-01 3.65258813e-01 1.61891907e-01 -6.86532706e-02\\n6.43232390e-02 -3.09727579e-01 -7.70629048e-02 -5.72300971e-01\\n2.29413778e-01 -7.11276352e-01 -6.79903701e-02 -1.80029705e-01\\n5.32364130e-01 -2.14995459e-01 2.01532781e-01 1.40863582e-01\\n2.69964010e-01 1.72393814e-01 5.34006581e-02 -7.27822259e-02\\n-2.39399642e-01 -1.22901551e-01 -5.61033301e-02 -1.83122188e-01\\n5.11776984e-01 5.09114861e-01 -3.16419393e-01 -3.47501785e-02\\n1.24831997e-01 -2.14404792e-01 -5.82043052e-01 -3.25944901e-01\\n-2.13481858e-01 -1.19867213e-01 -6.92897439e-01 -4.83226150e-01\\n-1.01035744e-01 -8.28954950e-02 -7.54516125e-02 5.32920063e-01\\n-3.29719186e-01 -4.48044747e-01 1.03687998e-02 -5.67145824e-01\\n2.59396315e-01 -2.76581615e-01 -3.91514264e-02 -2.13188991e-01\\n-1.98072761e-01 -4.81506944e-01 1.83101520e-01 1.20039172e-02\\n-1.27305716e-01 -2.31955349e-01 1.03260413e-01 -2.42519990e-01\\n-3.81397426e-01 -4.70796317e-01 3.92915905e-01 8.92516300e-02\\n2.30185747e-01 6.40575662e-02 2.69072801e-01 6.85505047e-02\\n2.99780160e-01 3.33036785e-03 1.47349417e-01 -4.29262012e-01\\n6.95079267e-02 2.29067542e-03 5.53019226e-01 -3.16659361e-01\\n-5.72536215e-02 2.19493434e-01 -2.96143353e-01 -1.70961887e-01\\n4.31997538e-01 -4.04365696e-02 5.12563772e-02 -8.70343298e-02\\n4.33265388e-01 -3.90181273e-01 -2.07626328e-01 1.41665325e-01\\n1.15026012e-01 6.77130163e-01 9.55512598e-02 -4.55203533e-01\\n-1.60850048e-01 4.51185226e-01 -1.06835030e-01 3.28286588e-02\\n-1.33166024e-02 1.45598710e-01 -1.07723966e-01 3.23487669e-01\\n-9.64863598e-03 -1.49548963e-01 -3.09544921e-01 -1.49343535e-01\\n-4.18958887e-02 2.41757944e-01 2.17023268e-01 4.36909534e-02\\n-1.04221538e-01 -2.22045526e-01 -1.05540454e-01 2.25057691e-01\\n2.47998819e-01 3.45714390e-01 1.41642898e-01 -1.86697066e-01\\n-7.33363256e-02 3.11617613e-01 -2.05107674e-01 2.84243286e-01\\n-1.53644204e-01 1.24529079e-01 -4.30491358e-01 -1.70690820e-01\\n-2.40899369e-01 -3.47321063e-01 1.30447179e-01 3.31755459e-01\\n1.42939895e-01 -8.03929940e-02 3.53023782e-02 -5.10392487e-01\\n2.51813203e-01 1.83252588e-01 1.80423602e-01 5.48266107e-03\\n1.15505373e-02 5.47658145e-01 8.49169493e-03 -1.85424075e-01\\n-5.77140749e-02 -6.93185627e-02 -1.88445315e-01 -1.63309455e-01\\n1.36671513e-01 -4.57507610e-01 -2.37812530e-02 3.49471301e-01\\n1.76994592e-01 -3.10285836e-01 -2.05775023e-01 3.98923159e-01\\n1.54202223e-01 -2.75240630e-01 -1.91519082e-01 3.86077911e-02\\n3.37514430e-01 6.21982813e-02 2.01192215e-01 -5.83104610e-01\\n-1.26372010e-01 8.73248205e-02 -4.09814194e-02 4.16398257e-01\\n-5.29818274e-02 -6.05701916e-02 -1.95918828e-01 -1.12661988e-01\\n3.29952538e-01 2.84626186e-02 -1.95584763e-02 -8.32598284e-02\\n8.73170644e-02 -2.60381401e-01 -4.58788425e-01 3.21435137e-03\\n-3.14138085e-02 -2.97965169e-01 1.21010495e-02 1.60338327e-01\\n1.49464428e-01 2.39912737e-02 -4.21982259e-01 -1.34273216e-01\\n-3.36156964e-01 -4.86609377e-02 8.14407691e-02 -3.85280073e-01\\n-4.24133688e-02 -3.80176976e-02 -5.18090487e-01 2.16802716e-01\\n-4.44893315e-02 -8.12026113e-02 1.70157030e-01 1.02119610e-01\\n-3.74581099e-01 -5.56949042e-02 1.21862918e-01 3.92251387e-02\\n-2.21790105e-01 -1.65393293e-01 -4.83543519e-03 -1.03437209e+00\\n7.61639699e-02 -1.89202223e-02 -6.81039840e-02 8.97976011e-02\\n-1.18684053e-01 -5.86940110e-01 1.17277250e-01 -4.92256701e-01\\n-8.89276564e-02 2.23300662e-02 -3.13708186e-01 -2.72262752e-01\\n2.62791128e-03 -3.31834145e-02 -2.76791900e-01 3.43910664e-01\\n-3.62252206e-01 3.97560894e-01 -9.74780470e-02 6.33904189e-02\\n6.38139844e-02 -3.01352829e-01 1.75547868e-01 -3.57806981e-01\\n-3.78887832e-01 -1.76863968e-01 -3.43399525e-01 -2.16505378e-01\\n-2.51829233e-02 -2.18517408e-01 -1.45358890e-01 1.01740479e-01\\n3.48185182e-01 9.58480090e-02 -7.87366331e-02 -2.11190686e-01\\n8.44359696e-02 -4.84454691e-01 4.91712913e-02 -7.17548057e-02\\n-4.15105298e-02 -9.82139930e-02 2.03657672e-01 2.89543476e-02\\n2.59399831e-01 -3.83616924e-01 4.90404367e-01 -3.54710490e-01\\n-3.31556588e-01 -1.84153765e-01 9.64015052e-02 1.32586047e-01\\n2.96451300e-01 -5.45422554e-01 3.44906300e-02 2.40005404e-01\\n1.44625530e-01 5.88523299e-02 3.16902339e-01 -1.58534333e-01\\n-1.12780467e-01 1.51394784e-01 -4.34928030e-01 1.00776002e-01\\n7.28797972e-01 2.05479890e-01 8.48902762e-02 8.75835568e-02\\n2.11041972e-01 3.67764592e-01 4.91718203e-01 1.40784448e-02\\n-8.84468928e-02 2.77728945e-01 1.66902900e-01 -4.56329286e-01\\n-1.80617824e-01 2.67155729e-02 -8.65252763e-02 -3.56221378e-01\\n7.01136887e-01 3.79623294e-01 -3.51660013e-01 -1.80986181e-01\\n-1.66871637e-01 -9.86010060e-02 2.31297851e-01 -1.90609559e-01\\n-3.93375196e-02 -2.60150023e-02 4.72673297e-01 -4.52859811e-02\\n1.67288989e-01 5.38806498e-01 -2.18995512e-01 -3.85882407e-01\\n1.74710099e-02 2.29368001e-01 8.78087506e-02 4.09576416e-01\\n-1.12592436e-01 1.55045450e-01 1.71897355e-02 1.72535807e-01\\n-1.70519620e-01 1.22543417e-01 7.37937689e-02 3.62332501e-02\\n1.28952697e-01 5.84994480e-02 4.41488266e-01 4.46979284e-01\\n3.21823478e-01 4.30686682e-01 2.70931512e-01 1.28403246e-01\\n4.84092832e-01 4.98317003e-01 2.79709548e-01 4.19247150e-02\\n1.76928821e-03 1.43196806e-01 1.53780356e-01 -9.92340744e-02\\n4.66209650e-01 2.84751087e-01 1.01990469e-01 8.07316899e-01\\n2.40983188e-01 2.94509113e-01 6.65521502e-01 -5.74864447e-01\\n-3.60958844e-01 -4.83339070e-04 5.34974217e-01 -3.97976875e-01\\n-2.05805805e-02 1.40303001e-01 -1.41986683e-01 2.72189915e-01\\n-4.61815327e-01 -1.21599391e-01 1.54235894e-02 2.93548591e-02\\n2.70341840e-02 -1.45951390e-01 -2.35409334e-01 5.42763583e-02\\n-1.13242835e-01 -1.67179450e-01 -4.17675138e-01 -2.11148381e-01\\n-2.06815869e-01 -5.23817837e-02 -1.07921094e-01 -1.22231521e-01\\n-7.59652182e-02 -2.60544658e-01 -1.09334901e-01 8.91754180e-02\\n2.57570833e-01 -1.80208236e-01 -4.41039614e-02 -1.47495672e-01\\n2.66777664e-01 8.37598816e-02 5.11130512e-01 1.23101973e-03\\n1.78890496e-01 -1.92024872e-01 -2.08894610e-01 1.27531543e-01\\n1.30964160e-01 1.03505395e-01 5.60477190e-02 4.09035593e-01\\n-3.61768901e-01 -1.14338480e-01 1.63526267e-01 3.91802967e-01\\n-3.83758694e-01 -9.31421742e-02 -8.09889659e-02 9.56953093e-02\\n-6.85387664e-03 1.68123350e-01 -2.54746228e-01 -1.45249264e-02\\n-2.59496689e-01 -5.41479170e-01 3.47519934e-01 -1.84467822e-01\\n-1.52066812e-01 1.02832988e-01 3.70525062e-01 2.78960764e-01\\n-1.72261223e-01 1.55281276e-02 -1.65000756e-03 2.45835587e-01\\n2.47907899e-02 2.92682171e-01 -1.46102294e-01 -2.51911700e-01\\n-2.70871222e-01 2.96151280e-01 -1.73311472e-01 1.92272216e-01\\n-6.72292337e-02 3.67305011e-01 3.00948098e-02 1.59859881e-01\\n3.67637843e-01 -1.37133300e-01 -1.97348207e-01 -2.97452062e-01\\n-2.11695358e-01 -2.67159760e-01 -1.37844523e-02 1.95521265e-02\\n1.91571206e-01 -3.67143691e-01 -6.48997119e-03 -1.81730226e-01\\n-1.87215611e-01 -2.52270371e-01 -7.08255842e-02 -4.05882783e-02]]',\n", + " 'job_description': \"We're driving toward the ultimate victory: a world without the fear of cancer. You will be part of the software development team 'QA Solutions'. We develop software products for automated quality assurance procedures of medical Linacs and patient treatments which are seamlessly integrated into the clinical workflow to fulfill customer needs.Our department is responsible for design and implementation of innovative and reliable quality assurance procedures for the newest treatment methods to support our businesses for treatment planning and delivery systems including photon, proton and brachy therapy. Varian offers a friendly, open and international working environment, continuous education, flexible work time management, competitive salaries and excellent fringe benefits. In this position as software development engineer, you interact with product managers, engineering colleagues as well as directly with our customers. Specific ResponsibilitiesDesign, develop and verify new products for patient specific quality assurance of radiotherapy treatments including algorithms for image processing and analysis.Provide all necessary documentation related to this area of responsibility.Interest in gathering domain knowledge in the areas of radiotherapy quality assurance and medical image processing. Desired QualificationsSW development engineer (B.Sc. level or equivalent)Experience with Python (3+ years), *NIX environments (3+ years) and NoSQL database (e.g. CouchDB)Full stack web application development experience (Apache server administration, Cloud / virtualization)Proficiency with Git, Jenkins, Makefiles and automated software testing Following Qualifications are an assetModern and legacy web front end development with willingness to be flexible (Jquery to React, Angular, Flask, or Vue.js)C coding experience including CUDA/GPU programmingNumerical or scientific programming and visualization (Numpy and/or MATLAB)Performance analysis/optimizationComfort with heterogeneous environments (Windows, Linux)Fluency in English language, written and verbalAbility to travel up to 20% We're unleashing the power of technology and human ingenuity to achieve new victories in the fight against cancer. Join us and have a global impact.\",\n", + " 'soft_skills': '[\"Ingenuity\", \"Friendliness\", \"Reliability\", \"Integration\", \"Innovation\", \"Quality Assurance\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Server Administration\", \"Automation\", \"Production Management\", \"NoSQL\", \"Graphics Processing Unit (GPU)\", \"Jenkins\", \"Programming (Music)\", \"Interactivity\", \"Vue.js\", \"MATLAB\", \"Virtualization\", \"Nvidia CUDA\", \"Treatment Planning\", \"NumPy\", \"Python (Programming Language)\", \"Linux\", \"Photonics\", \"E (Programming Language)\", \"Levelling\", \"SARS Software Products\", \"Medic\", \"CouchDB\", \"Flask (Web Framework)\", \"React.js\", \"Image Processing\", \"Engineering Management\", \"C (Programming Language)\", \"JQuery\", \"Humanism\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Software Development\", \"Software Testing\", \"Patient Treatment\", \"Algorithms\", \"Medical Imaging\", \"Cancer\", \"Git Flow\", \"Performance Analysis\", \"Workflows\", \"New Product Development\", \"B (Programming Language)\", \"Web Application Development\", \"Integrated Delivery Systems\"]',\n", + " 'languages': \"['English', 'Inupiaq', 'Croatian']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer .net / c#',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.92792398e-02 3.02440435e-01 2.93507308e-01 -1.08191818e-01\\n5.06818295e-01 -1.45451322e-01 -2.83627659e-02 4.52165246e-01\\n-9.99013036e-02 -4.81435567e-01 -4.60295333e-03 -2.95293808e-01\\n5.45937829e-02 9.21726972e-02 -1.24952262e-02 4.09118265e-01\\n3.21383029e-01 9.80194211e-02 -1.50388926e-01 3.37944984e-01\\n1.17071971e-01 -9.27732289e-02 1.34574592e-01 7.16347098e-01\\n3.26944977e-01 7.60269240e-02 1.65419318e-02 9.98060033e-02\\n-3.03879976e-01 -3.05884153e-01 3.57515484e-01 -1.09661967e-02\\n-1.15472168e-01 -2.60320991e-01 3.78614217e-02 -1.11793699e-02\\n-1.91863075e-01 -2.04496175e-01 -6.50389760e-04 2.56601006e-01\\n-4.90801007e-01 -2.30398163e-01 -1.87893352e-03 -7.07228631e-02\\n-2.02902079e-01 -3.97066236e-01 4.56921570e-03 7.87469093e-03\\n1.65744722e-01 9.18754488e-02 -4.24535960e-01 3.10820043e-01\\n-2.39468738e-01 -2.47470289e-01 3.26427042e-01 5.25489151e-01\\n-1.09401233e-01 -3.77189338e-01 -4.29033875e-01 -2.22576618e-01\\n1.36895180e-01 -1.35448277e-01 1.13560222e-01 -2.40768999e-01\\n4.79747623e-01 9.76771414e-02 1.03647560e-01 3.52380991e-01\\n-7.00875401e-01 -1.08083203e-01 -2.92143226e-01 -6.64569587e-02\\n-3.50218803e-01 -1.49245381e-01 -1.84639826e-01 -1.73950553e-01\\n-1.39173895e-01 2.93264151e-01 7.07579171e-03 -5.94026223e-02\\n-1.29984543e-01 3.34661514e-01 -2.60381907e-01 2.80472845e-01\\n1.49493128e-01 2.96959370e-01 1.79483756e-01 3.48495215e-01\\n-4.34529215e-01 4.06856805e-01 1.58552185e-01 -3.26237142e-01\\n2.16163054e-01 2.55920570e-02 5.62994182e-01 -7.84547813e-03\\n1.98813051e-01 6.81903288e-02 -2.65678346e-01 3.92195851e-01\\n2.11085662e-01 -1.43480211e-01 1.22612035e-02 -3.46103571e-02\\n-9.55586433e-02 -1.52626717e-02 8.71113539e-02 3.00650179e-01\\n-2.19212756e-01 5.38213134e-01 3.54385450e-02 -2.43112355e-01\\n-1.26074404e-01 -6.76766455e-01 -1.25667483e-01 2.58911345e-02\\n4.56421413e-02 1.01657823e-01 1.79050252e-01 2.69130796e-01\\n6.26400039e-02 1.34774083e-02 1.99629098e-01 8.70843291e-01\\n-2.94865724e-02 6.75146058e-02 -3.11158597e-01 3.19198728e-01\\n1.20472573e-01 -3.30863595e-01 1.83239564e-01 2.58024693e-01\\n1.24483474e-01 -1.90264165e-01 -1.01461858e-01 2.71425277e-01\\n-1.27561642e-02 -3.44702780e-01 -5.13710499e-01 2.18953714e-01\\n-1.92485258e-01 -3.48596573e-01 5.47225833e-01 6.55348226e-02\\n1.00360848e-01 -5.64756617e-02 -1.01444319e-01 -8.24920833e-02\\n-1.53602406e-01 2.41212532e-01 -3.88431037e-03 4.09206897e-02\\n-2.39489049e-01 -2.46235579e-01 -1.54919729e-01 2.26415977e-01\\n-1.18932694e-01 1.77388310e-01 -9.28899571e-02 -5.35358451e-02\\n3.87122244e-01 -1.80182997e-02 -2.02726379e-01 3.70975286e-01\\n-7.49003962e-02 -3.26031409e-02 -9.98760387e-02 3.02706450e-01\\n-1.39056265e-01 1.29874259e-01 -5.76992370e-02 -2.06186056e-01\\n5.35425961e-01 -8.31792802e-02 1.24702938e-01 -1.24682009e-01\\n2.62772083e-01 -1.70889065e-01 1.44849807e-01 9.93491411e-02\\n-6.30240798e-01 3.54824156e-01 -1.67906195e-01 -9.50298756e-02\\n1.28556922e-01 2.79553831e-02 2.95487612e-01 -1.96520224e-01\\n4.27392982e-02 -6.99248239e-02 -2.97956407e-01 -4.28120106e-01\\n-2.37346858e-01 -7.37571940e-02 4.21883821e-01 -3.87281597e-01\\n-2.61026233e-01 1.82606593e-01 -6.21342778e-01 5.04610464e-02\\n1.05690822e-01 1.82406157e-01 1.45458639e-01 1.95994675e-01\\n-2.02969611e-01 -6.13152981e-01 1.13049187e-01 -4.26712573e-01\\n-3.28846216e-01 1.94554567e-01 -1.70200720e-01 2.41298631e-01\\n1.67999804e-01 7.27064610e-02 -1.15538068e-01 1.73204377e-01\\n-2.26201564e-01 2.39415392e-02 1.66045770e-01 1.11981332e-01\\n2.52777606e-01 1.43940095e-02 -5.00443816e-01 3.82524014e-01\\n-4.21463214e-02 4.19871658e-01 1.20110735e-01 -8.87905777e-01\\n4.60566849e-01 2.74368703e-01 2.39541698e-02 -3.11836004e-01\\n7.19428003e-01 -2.10369974e-01 6.78024888e-02 2.18095943e-01\\n-4.70186621e-01 -2.31062368e-01 2.02345118e-01 -2.08549216e-01\\n-2.50685811e-01 5.87981701e-01 1.81499973e-01 3.69478874e-02\\n3.76958907e-01 -2.49582380e-01 -2.07873538e-01 8.90970603e-02\\n-1.16772138e-01 -2.36619517e-01 -4.46220279e-01 -7.88937807e-02\\n1.41607216e-02 -4.26716864e-01 -1.55776262e-01 -4.25697088e-01\\n-1.92750573e-01 -2.93899953e-01 -2.00445279e-01 3.29781145e-01\\n1.65980607e-01 2.22535700e-01 2.63799094e-02 -2.49449606e-03\\n-1.60850257e-01 -5.82212269e-01 -8.41839835e-02 1.55452952e-01\\n3.94902557e-01 2.10016876e-01 -1.49612082e-03 2.80005299e-02\\n-6.17667735e-02 5.82838655e-01 -2.26760551e-01 -2.07745537e-01\\n9.56567302e-02 1.71212405e-01 2.20645908e-02 -1.43818697e-02\\n-6.43486204e-03 3.02629173e-01 -1.44753233e-01 3.94731797e-02\\n-3.54542807e-02 9.45726223e-03 4.04148132e-01 1.64171606e-01\\n-3.21201384e-01 -3.14562291e-01 -3.13741602e-02 1.58195630e-01\\n-5.70610106e-01 -2.66773403e-01 5.81016719e-01 1.77503645e-01\\n2.37202987e-01 1.63134843e-01 2.37349659e-01 -5.65502085e-02\\n-1.87081784e-01 -2.20145702e-01 1.65878087e-01 1.51274338e-01\\n1.96459517e-02 6.76173121e-02 -1.80120304e-01 -4.51435775e-01\\n-3.56853056e+00 -1.27779037e-01 1.58544391e-01 -2.83877701e-01\\n2.08782911e-01 7.28474976e-03 5.12679107e-02 -8.80943835e-02\\n-3.47053707e-01 -7.09132403e-02 -2.56954461e-01 -1.38627321e-01\\n1.88189134e-01 2.64205158e-01 1.16793528e-01 3.68056327e-01\\n1.61195382e-01 -2.15088561e-01 -1.38881728e-01 3.99353594e-01\\n-9.87268984e-02 -6.25644743e-01 1.67025968e-01 -1.19551547e-01\\n3.10436159e-01 3.22106242e-01 -3.39578331e-01 -4.54219729e-02\\n-2.98300564e-01 -2.06109866e-01 1.91983953e-01 -2.49553800e-01\\n-1.18635274e-01 2.99056619e-01 2.22387642e-01 -1.28972441e-01\\n1.44720554e-01 -3.52144480e-01 -4.55714791e-04 -4.45358604e-01\\n9.44341645e-02 -5.90447545e-01 -8.65280703e-02 -7.78041184e-02\\n7.08136976e-01 -3.95755678e-01 4.67173532e-02 8.33043829e-02\\n1.53695926e-01 2.74274170e-01 5.82570247e-02 -1.27358750e-01\\n-1.31815344e-01 -3.02455157e-01 -6.33862913e-02 -2.48671949e-01\\n4.71121788e-01 4.79167372e-01 -2.05014274e-01 -7.97019154e-02\\n5.65407574e-02 -2.06232816e-01 -4.89301831e-01 -3.92650872e-01\\n-1.88386813e-01 -1.61853567e-01 -6.51055217e-01 -5.30617595e-01\\n-1.30264536e-01 -1.38559282e-01 -1.45420507e-01 5.96325815e-01\\n-4.35823709e-01 -4.70391631e-01 -5.37393540e-02 -4.06250864e-01\\n3.93221825e-02 -3.35363984e-01 -2.91724154e-03 -1.29005641e-01\\n-3.08080226e-01 -4.60069865e-01 8.41798261e-02 5.65423332e-02\\n-6.26297519e-02 -1.25808492e-01 1.02316529e-01 -3.61366987e-01\\n-2.84633279e-01 -4.03639644e-01 4.21877027e-01 1.33073747e-01\\n2.16754198e-01 2.37420410e-01 1.35448441e-01 1.67176515e-01\\n2.50321656e-01 -2.45293304e-01 -5.82627393e-02 -4.06594634e-01\\n2.40251049e-01 5.55065693e-03 5.50934851e-01 -2.48899326e-01\\n3.92021909e-02 7.45715424e-02 -1.60137311e-01 -1.65741727e-01\\n3.47865194e-01 6.38878420e-02 1.35614336e-01 -3.31353128e-01\\n3.04891557e-01 -4.71684754e-01 -2.33419642e-01 7.56686702e-02\\n6.90506473e-02 5.18831968e-01 4.38452996e-02 -4.34698582e-01\\n-9.49599519e-02 3.70570302e-01 -1.23373151e-01 -1.28642961e-01\\n-1.15767725e-01 1.40559748e-01 -2.65383601e-01 2.32562482e-01\\n-2.45755054e-02 -4.08948064e-02 -2.71634638e-01 -1.42405063e-01\\n-7.71233737e-02 4.59765166e-01 2.89701462e-01 1.43590063e-01\\n3.10109043e-03 -3.66315424e-01 -1.00613467e-01 1.57489210e-01\\n2.84583092e-01 3.38530034e-01 1.63200349e-01 -3.13827097e-01\\n6.73453361e-02 3.49921614e-01 -1.86435238e-01 1.37680098e-01\\n-2.57868499e-01 1.07162772e-02 -4.19338256e-01 -3.14184070e-01\\n-1.82605386e-01 -2.46515930e-01 4.79922369e-02 2.19704166e-01\\n1.38344795e-01 -2.69144922e-02 -2.61929128e-02 -3.17524105e-01\\n2.60890216e-01 8.02530274e-02 3.31840813e-01 3.07863086e-01\\n-3.49721126e-02 6.12751067e-01 3.90235558e-02 -1.87835768e-01\\n-1.19121827e-01 -6.77262619e-02 -1.66545346e-01 -6.92091435e-02\\n-6.01633415e-02 -3.77031773e-01 -1.18513033e-01 3.76708865e-01\\n4.28020656e-02 -2.40220338e-01 -1.44857883e-01 3.45459342e-01\\n-8.11017454e-02 -2.92915702e-01 -4.49677333e-02 1.11919574e-01\\n3.31355542e-01 1.65282398e-01 1.81507960e-01 -5.26488960e-01\\n-1.61728516e-01 -7.56532373e-03 -1.36027753e-01 5.28204203e-01\\n1.18960217e-01 1.70437470e-01 -1.48995996e-01 -3.04370701e-01\\n3.93230319e-01 -2.30085135e-01 -9.02308747e-02 -9.18778707e-04\\n5.45024686e-03 -1.16150968e-01 -3.98486882e-01 5.03868461e-02\\n-1.05488151e-01 -1.80154696e-01 1.75633118e-01 7.33099282e-02\\n9.89163294e-02 1.26921609e-01 -6.10801578e-01 -2.85899580e-01\\n-2.97490686e-01 -1.14222996e-01 -2.14459840e-02 -4.42214519e-01\\n2.64978483e-02 -1.13545135e-01 -5.23676991e-01 2.95858860e-01\\n-1.15508206e-01 2.50771232e-02 6.46409467e-02 2.52197571e-02\\n-4.25169230e-01 -1.62784547e-01 1.43602014e-01 2.01348186e-01\\n-1.49935588e-01 -1.47018164e-01 1.55035174e-02 -9.51423466e-01\\n2.23741189e-01 -1.70554370e-01 -1.36457428e-01 3.76077630e-02\\n7.02474266e-02 -5.38722694e-01 1.18600197e-01 -3.86079490e-01\\n-9.77541059e-02 -2.00070683e-02 -1.97883010e-01 -5.06156862e-01\\n1.19607255e-01 6.45912811e-02 -1.98032394e-01 4.02081639e-01\\n-3.92433435e-01 3.06132406e-01 -1.04729615e-01 1.34002462e-01\\n5.17867431e-02 -4.34011221e-01 1.97102442e-01 -4.05072153e-01\\n-4.64874238e-01 -1.70090064e-01 -1.96508735e-01 -1.69086531e-01\\n3.38316374e-02 -3.04924965e-01 -2.44207412e-01 2.17002049e-01\\n2.26238728e-01 9.04318988e-02 -1.64959446e-01 -1.21952474e-01\\n5.14602587e-02 -3.99567097e-01 1.48644865e-01 -2.75584795e-02\\n-1.28691196e-01 -1.58707008e-01 1.59985393e-01 9.33140889e-02\\n4.28211465e-02 -4.28672552e-01 4.59918708e-01 -2.77401596e-01\\n-2.97024995e-01 -1.28291976e-02 1.03405431e-01 -2.71611884e-02\\n4.07766074e-01 -5.17943203e-01 -9.86272469e-02 3.53770882e-01\\n1.18719220e-01 2.00392962e-01 2.09638551e-01 -2.13602200e-01\\n-1.88507244e-01 2.56735802e-01 -2.88646162e-01 1.37570798e-01\\n7.49004900e-01 9.78349298e-02 2.63147533e-01 8.77802595e-02\\n1.55886799e-01 3.03018153e-01 4.03878987e-01 1.16627455e-01\\n-2.13950396e-01 3.02131563e-01 1.62011325e-01 -5.74915051e-01\\n3.59673724e-02 1.25765786e-01 -1.82403222e-01 -4.13991272e-01\\n5.80151856e-01 4.01018888e-01 -2.86447555e-01 -1.92622393e-01\\n-9.64180008e-02 -1.16830967e-01 5.90558276e-02 -8.15991461e-02\\n4.45071943e-02 -2.52080917e-01 5.46560884e-01 -4.22888845e-02\\n1.25141814e-01 5.11046112e-01 -1.77351177e-01 -4.20543462e-01\\n-8.38613212e-02 1.77586854e-01 8.72699693e-02 4.43351328e-01\\n-1.24151155e-01 2.42405221e-01 -4.18838486e-02 1.73418000e-01\\n-1.07705466e-01 7.71391392e-02 7.70581141e-02 5.57051264e-02\\n-7.84710608e-03 2.30685383e-01 4.00819927e-01 5.53932309e-01\\n4.86630470e-01 5.49709082e-01 3.05746704e-01 6.91661611e-02\\n5.94136298e-01 4.73845720e-01 4.19430077e-01 1.81364343e-01\\n3.13642994e-02 -2.82146111e-02 5.97044639e-02 1.31985366e-01\\n3.75363261e-01 3.56043786e-01 4.59392332e-02 9.70516682e-01\\n3.85935575e-01 1.02138527e-01 6.52064621e-01 -6.19134724e-01\\n-1.99751556e-01 8.58900174e-02 3.50889772e-01 -4.00779754e-01\\n-1.62220538e-01 6.79228306e-02 -3.14699590e-01 1.10510521e-01\\n-4.59171951e-01 -2.26158082e-01 -2.13220969e-01 1.78837463e-01\\n1.57201380e-01 -1.37907937e-01 -2.35267684e-01 -6.31628335e-02\\n1.99365690e-02 -1.26534924e-01 -4.97254670e-01 -9.77690443e-02\\n-2.95279622e-01 -1.76902622e-01 3.95228826e-02 -1.87544450e-01\\n8.66327658e-02 -3.41447651e-01 -1.42552018e-01 2.93195173e-02\\n4.01285380e-01 -5.63664101e-02 2.55399086e-02 -7.43465424e-02\\n1.64280191e-01 3.92874300e-01 5.51721394e-01 -1.09978966e-01\\n-8.74401443e-03 -1.34294927e-01 -1.45575836e-01 3.82828042e-02\\n7.80042782e-02 1.16064574e-03 3.66127156e-02 3.67331922e-01\\n-3.24460834e-01 -3.87571156e-02 -3.92331220e-02 4.67310846e-01\\n-5.11676729e-01 5.03148660e-02 -4.40377332e-02 3.40674073e-01\\n2.01118290e-02 9.96843800e-02 -3.60680401e-01 1.11627854e-01\\n-2.21932948e-01 -4.01663095e-01 2.27361828e-01 -5.17902449e-02\\n-8.45997408e-02 7.03747282e-05 1.21491097e-01 1.33008480e-01\\n-3.48672867e-01 -7.62473345e-02 -4.53545228e-02 3.01453054e-01\\n1.36481494e-01 3.79236400e-01 -3.80460799e-01 -1.88666850e-01\\n-2.60343015e-01 1.93253621e-01 -5.41642532e-02 8.80732909e-02\\n-6.69403002e-02 2.07151935e-01 1.34626925e-01 1.82960257e-01\\n3.09478402e-01 -5.70749417e-02 -1.61056936e-01 -2.82105595e-01\\n-1.41373724e-01 -3.23833525e-01 1.11215591e-01 -5.97021058e-02\\n3.11277926e-01 -3.75216901e-01 -1.24083072e-01 -1.36315241e-01\\n-2.10162565e-01 -4.01246727e-01 3.36394436e-03 -1.00600451e-01]]',\n", + " 'job_description': 'About our client Our client is a Swiss medtech company with technologies and ideas that look at functional movement therapy from a completely different angle. Because they enable independent exercise and create maximum motivation, because they challenge people to take courage and support their hopes with personal achievements. Your responsibilities You take a significant part in the creation of the software architecture of our client Work in multidisciplinary projects with the internal departments Mechanical and Electrical Engineering, Technical Projects, Product Management as well as the Service and Manufacturing departments focuses the development of our therapy devices in particular on clinical application and usability aspects Your profile You got a bachelor in Computer Science good knowledge of the .NET platform, including C#, WPF and WCF understanding of relational and non-relational databases some years of experience with Software Architecture, Service Oriented Design and Software development processes experience in Version Control Systems and Application Lifecycle Management very good English skills, German skills are a plus Your chance Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 486',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"Usability\", \"Relational Databases\", \"Software Development\", \"Version Control\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Product Management\", \"Software Architecture\", \"Computer Science\", \"Application Lifecycle Management\", \"Personalization\", \"Wcf 4\", \"Service-Oriented Modeling\", \"Lifecycle Management\", \"Mechanicals\"]',\n", + " 'languages': \"['English', 'Belarusian', 'Haitian']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'junior software engineer medco for the department of information systems',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Healthcare Services & Hospitals',\n", + " 'website': 'www.chuv.ch',\n", + " 'jobdescription_embedded': '[[-3.00035059e-01 3.61983538e-01 4.44360465e-01 -7.17792660e-03\\n5.62070787e-01 -1.37449756e-01 -1.13336578e-01 2.42946625e-01\\n-2.19843201e-02 -4.84850526e-01 -9.91603658e-02 -3.07892561e-01\\n-4.89714779e-02 1.88965708e-01 1.14169598e-01 4.41247940e-01\\n3.86448681e-01 4.34750766e-02 -1.06877811e-01 3.36503685e-01\\n-6.46074489e-02 -1.51778728e-01 4.21410054e-03 8.17152441e-01\\n4.15205777e-01 -4.45732102e-02 -5.73506542e-02 1.49609014e-01\\n-2.30003044e-01 -1.49984866e-01 5.07363498e-01 2.94902641e-02\\n-1.60990119e-01 -3.72379541e-01 1.14553399e-01 2.48411328e-01\\n-3.23082864e-01 -1.17690079e-01 -1.25032410e-01 1.77222803e-01\\n-5.57683289e-01 -3.01134944e-01 -1.02623522e-01 -1.21669605e-01\\n-2.74369895e-01 -3.70370686e-01 9.48063284e-02 -3.09872590e-02\\n8.33352506e-02 1.49189293e-01 -5.47025383e-01 2.15621099e-01\\n-3.89576554e-01 -1.66778952e-01 3.37086499e-01 6.09280050e-01\\n-4.00838852e-02 -4.14307028e-01 -4.87745881e-01 -4.02561933e-01\\n-5.65326326e-02 -2.60696188e-02 4.56933528e-02 -3.86211216e-01\\n4.11144555e-01 9.00602639e-02 -5.72004914e-03 3.85362148e-01\\n-8.06089640e-01 -1.23140171e-01 -3.25153291e-01 1.08123042e-01\\n-4.29066181e-01 -3.10019776e-02 -3.13482702e-01 -2.40982965e-01\\n-6.66429177e-02 3.94444346e-01 -3.24342586e-02 1.19015887e-01\\n-2.39308327e-01 3.82285446e-01 -2.01432556e-01 3.83839250e-01\\n2.69659698e-01 2.43688136e-01 3.10070992e-01 3.65030706e-01\\n-4.57485974e-01 3.77795219e-01 1.28924534e-01 -3.27150077e-01\\n2.27454871e-01 1.09013036e-01 4.74937022e-01 9.19226110e-02\\n1.41731560e-01 1.32084504e-01 -2.91906685e-01 2.95387268e-01\\n2.13811845e-01 -1.99559718e-01 4.51282822e-02 -8.05766135e-02\\n-7.04778358e-03 -4.79073673e-02 -1.68002769e-03 1.65476188e-01\\n-4.13177133e-01 3.36495101e-01 8.56148005e-02 -2.72724450e-01\\n-1.56365946e-01 -5.79533279e-01 1.13614369e-02 1.04003072e-01\\n6.48366064e-02 1.11551940e-01 1.59038499e-01 1.22376904e-01\\n1.81610435e-01 -4.70363833e-02 1.62519693e-01 8.83770227e-01\\n-1.25856802e-01 -3.42019200e-02 -1.34144962e-01 3.06266665e-01\\n8.90472084e-02 -1.88330188e-01 1.54109716e-01 2.90424526e-01\\n-6.58720359e-03 -1.22392751e-01 -2.37822413e-01 4.40019906e-01\\n-1.29727036e-01 -1.90964669e-01 -4.41658556e-01 3.40125471e-01\\n-1.90957069e-01 -4.34564710e-01 5.87118506e-01 -8.26356187e-02\\n1.44019127e-01 -1.57126263e-01 -1.17994323e-02 -8.22910443e-02\\n-1.31153569e-01 2.13340163e-01 2.53410265e-03 2.23886713e-01\\n-3.21313739e-01 -2.24193215e-01 -9.18591917e-02 2.49286920e-01\\n-3.38537425e-01 2.97612160e-01 -7.92742223e-02 -9.15120170e-02\\n2.67795205e-01 1.66635007e-01 -3.66973519e-01 1.85097575e-01\\n-1.18098199e-01 -1.10540226e-01 -6.61244169e-02 4.58446741e-01\\n-1.32654071e-01 2.13160932e-01 -1.42370611e-02 -3.50442648e-01\\n4.66153681e-01 1.19258486e-01 3.25152159e-01 -1.06508927e-02\\n3.21369588e-01 -1.51209190e-01 2.79434800e-01 1.03953734e-01\\n-7.00411677e-01 3.89611870e-01 -7.01834559e-02 -2.13751033e-01\\n3.74336354e-03 -1.02307774e-01 4.65106070e-01 -2.54125476e-01\\n-7.04707354e-02 -1.76333070e-01 -3.54473174e-01 -4.63893920e-01\\n-1.96422324e-01 1.27239637e-02 4.41343784e-01 -4.54905361e-01\\n-7.38131478e-02 3.95377994e-01 -6.31911635e-01 -2.00359508e-01\\n1.88462973e-01 2.50258654e-01 1.38608143e-01 1.72260046e-01\\n-1.21526673e-01 -6.64688766e-01 4.85400110e-02 -5.14919817e-01\\n-3.84826243e-01 1.28575832e-01 -2.86289275e-01 1.26380429e-01\\n8.47453400e-02 2.35035457e-02 -2.82117780e-02 4.67723086e-02\\n-3.38407069e-01 7.21806437e-02 8.54065791e-02 -5.71014024e-02\\n3.07594359e-01 1.76642686e-02 -3.67082477e-01 4.78533149e-01\\n-1.86889499e-01 4.62018341e-01 1.17807738e-01 -8.33056927e-01\\n6.30820274e-01 3.69473755e-01 -3.51999328e-02 -3.68397951e-01\\n5.50363183e-01 -3.31260920e-01 -1.74863935e-01 1.57397926e-01\\n-3.67648214e-01 -1.54682174e-01 2.22167194e-01 -3.21027189e-01\\n-2.22786993e-01 5.83073795e-01 5.71780577e-02 9.26069319e-02\\n4.92103398e-01 -3.75210047e-01 -2.09360927e-01 1.03194222e-01\\n-2.05078959e-01 -3.08929324e-01 -5.16978860e-01 -8.15665424e-02\\n-1.30044356e-01 -4.63237584e-01 -2.11823523e-01 -3.89117658e-01\\n-1.49591237e-01 -2.84421951e-01 -1.72048569e-01 2.19392136e-01\\n2.09453434e-01 1.76951244e-01 -4.40159142e-02 4.42950465e-02\\n-3.55879515e-02 -5.65842628e-01 -4.79751751e-02 -4.41436023e-02\\n3.68573934e-01 2.91733623e-01 1.59429044e-01 5.70160337e-03\\n8.23950544e-02 5.36124110e-01 -4.61518884e-01 -3.59381318e-01\\n1.01671629e-01 5.53791076e-02 -1.06429607e-01 -3.71658839e-02\\n1.75495595e-01 3.03211212e-01 -2.68508077e-01 3.82938161e-02\\n-6.62147161e-03 -2.49507464e-02 3.97147000e-01 -2.67019942e-02\\n-1.86298266e-01 -1.25940621e-01 -1.64433196e-01 2.01995805e-01\\n-5.89219570e-01 -2.65446037e-01 4.29929733e-01 1.01364225e-01\\n1.29170820e-01 1.23921372e-01 1.90388918e-01 3.15314010e-02\\n-4.40045029e-01 -2.82660961e-01 3.08069229e-01 1.00680292e-01\\n8.97761434e-02 1.51667729e-01 -4.76597324e-02 -5.22465229e-01\\n-3.05674839e+00 -1.33334085e-01 8.87885839e-02 -2.47226775e-01\\n2.62427300e-01 -1.38471335e-01 1.00698337e-01 -1.00647137e-01\\n-2.82645464e-01 9.99853387e-03 -2.49801263e-01 -1.97526515e-01\\n9.51256603e-02 2.38607824e-01 7.14064091e-02 3.42387408e-02\\n-4.28449251e-02 -2.37445861e-01 8.61925930e-02 2.84338295e-01\\n-1.19588878e-02 -7.73476720e-01 -7.99035374e-03 -6.77736923e-02\\n1.66918471e-01 1.07998513e-01 -5.96637309e-01 -1.11885183e-02\\n-3.73665035e-01 -2.57558316e-01 1.81780428e-01 -3.07062060e-01\\n-1.16029792e-01 3.24119478e-01 1.99644938e-01 -7.13339224e-02\\n1.07592568e-02 -3.00836176e-01 -2.50040740e-01 -6.59163654e-01\\n1.81183949e-01 -6.06666565e-01 4.16864082e-02 -1.66898653e-01\\n6.59254968e-01 -3.01620901e-01 2.27224231e-01 2.80833453e-01\\n1.59079611e-01 1.81084901e-01 8.84357393e-02 5.14040850e-02\\n-3.00230145e-01 -2.70910293e-01 -1.12118125e-01 -2.42464393e-01\\n6.28367364e-01 3.86322409e-01 -2.13607371e-01 -9.11915749e-02\\n5.81795648e-02 -3.62291068e-01 -5.40301979e-01 -3.53309691e-01\\n-9.79812294e-02 -1.72546476e-01 -6.80168509e-01 -3.93984497e-01\\n-1.15329631e-01 -1.33489698e-01 -4.22258452e-02 6.83342159e-01\\n-4.62741017e-01 -3.29211831e-01 -3.48696522e-02 -6.77632928e-01\\n3.13090861e-01 -3.01966429e-01 6.40542060e-02 -2.69656241e-01\\n-3.30017686e-01 -5.30000091e-01 1.11605957e-01 -1.60983671e-02\\n-1.18153721e-01 -1.72929168e-01 1.19316027e-01 -2.46215776e-01\\n-2.98391908e-01 -5.19364178e-01 4.21613276e-01 1.17969662e-01\\n4.08891916e-01 2.10435301e-01 1.98674455e-01 -6.50608689e-02\\n2.81263173e-01 1.27188697e-01 -1.21781386e-01 -3.06379318e-01\\n1.20233506e-01 2.49918550e-04 4.48907226e-01 -1.80612147e-01\\n-3.68651822e-02 9.57769454e-02 -2.35675395e-01 -5.94640747e-02\\n4.58130121e-01 -1.95846893e-03 4.15652096e-02 -1.36039346e-01\\n3.73819113e-01 -4.26120758e-01 -6.86664283e-02 1.94678307e-01\\n5.42345159e-02 6.63331985e-01 3.32273766e-02 -3.68782341e-01\\n-4.07801978e-02 4.93418753e-01 9.39974189e-03 -1.46046169e-02\\n1.17506348e-02 1.78894326e-01 -1.55298769e-01 1.86173141e-01\\n5.48610091e-02 -1.42134592e-01 -2.42442012e-01 -1.02301627e-01\\n-1.18837364e-01 3.85284543e-01 2.72803813e-01 1.60218194e-01\\n-8.72684121e-02 -3.54359627e-01 -4.65783924e-02 2.44814098e-01\\n2.68395603e-01 4.27361727e-01 3.40087980e-01 -2.69384325e-01\\n2.55174357e-02 3.44860256e-01 -1.09492019e-01 3.39766651e-01\\n-3.40910017e-01 1.18652001e-01 -5.63863516e-01 -1.85167968e-01\\n-3.00910264e-01 -2.88967222e-01 2.42015138e-01 3.21130961e-01\\n1.77178070e-01 -1.05794132e-01 1.37466967e-01 -3.56750786e-01\\n2.11783513e-01 2.57244200e-01 2.29308069e-01 7.26502016e-02\\n-1.41104639e-01 6.73385501e-01 3.93916816e-02 -1.36842236e-01\\n-5.62194027e-02 1.00371763e-02 -1.34719372e-01 -3.12145174e-01\\n6.70060888e-03 -4.76588488e-01 -1.82723984e-01 3.38606715e-01\\n7.09000751e-02 -6.28865585e-02 -2.25250885e-01 3.73426080e-01\\n1.44180655e-03 -2.14185894e-01 -1.87222481e-01 -4.87079173e-02\\n2.22224206e-01 2.33383909e-01 3.10672790e-01 -5.64478755e-01\\n-8.03505778e-02 9.58180428e-02 -2.34673843e-02 5.19917071e-01\\n1.28718913e-01 3.32122222e-02 -3.04744840e-01 -2.07423866e-01\\n3.40077430e-01 -1.72427341e-01 -3.16100828e-02 -1.53439380e-02\\n9.24445689e-02 -1.38993829e-01 -3.89402598e-01 9.97232050e-02\\n-3.07223741e-02 -2.37960964e-01 3.91229019e-02 9.22504142e-02\\n7.53197074e-02 6.09467626e-02 -5.98304629e-01 -1.75097436e-01\\n-1.67163819e-01 7.52256513e-02 -5.99374995e-03 -5.07458866e-01\\n-4.16807830e-02 -1.24140367e-01 -5.65852642e-01 2.58499682e-01\\n-1.31889537e-01 -3.39706466e-02 1.61520645e-01 5.13504781e-02\\n-3.56561035e-01 -2.06277341e-01 1.08612724e-01 1.76079184e-01\\n-3.16559643e-01 -2.75190592e-01 1.10821910e-02 -9.92156863e-01\\n1.66068658e-01 5.48323393e-02 -1.65277869e-01 6.82473630e-02\\n1.22189693e-01 -7.23813951e-01 1.26398414e-01 -3.32096636e-01\\n1.99250299e-02 1.15322858e-01 -2.66815245e-01 -4.15241659e-01\\n1.59988105e-01 -7.03539252e-02 -1.61208257e-01 3.25673491e-01\\n-4.61650848e-01 4.90845561e-01 -1.47288248e-01 -9.86439437e-02\\n4.06275019e-02 -3.34151328e-01 1.58574477e-01 -1.65461212e-01\\n-3.56565952e-01 -2.64601171e-01 -3.01129103e-01 -3.86778891e-01\\n2.22498029e-02 -3.52318168e-01 -4.03638147e-02 7.04466999e-02\\n3.66939306e-01 2.79639494e-02 -1.97493881e-01 -1.52148098e-01\\n7.10444227e-02 -4.28212702e-01 5.56281880e-02 -9.75441039e-02\\n-1.43659674e-02 -1.44667745e-01 2.08054960e-01 3.37411910e-02\\n2.62298256e-01 -2.76447833e-01 5.08225024e-01 -3.22870106e-01\\n-4.10671234e-01 -1.37253508e-01 2.30009109e-02 3.31696197e-02\\n3.99647772e-01 -3.95186067e-01 9.22752470e-02 3.43813777e-01\\n2.53291965e-01 4.65510897e-02 2.42221087e-01 -2.77115941e-01\\n-5.34895808e-02 1.91484585e-01 -3.66234124e-01 2.05553085e-01\\n8.42537761e-01 2.68569946e-01 3.25346708e-01 1.45069271e-01\\n8.08566511e-02 3.27130377e-01 5.21162271e-01 -6.31700009e-02\\n-7.80357793e-02 2.59482086e-01 1.84369728e-01 -3.23108256e-01\\n-1.99285075e-01 -1.75386593e-02 -1.12789690e-01 -3.28607678e-01\\n5.88476658e-01 3.37012053e-01 -3.77013326e-01 -1.77071810e-01\\n-2.16785386e-01 -2.08481610e-01 3.46474409e-01 -3.22753340e-02\\n-9.71568525e-02 -1.09193139e-01 3.21281463e-01 -1.06178910e-01\\n2.38572761e-01 5.76311350e-01 -1.51160553e-01 -4.14378524e-01\\n-4.13754433e-02 3.55348170e-01 6.19533248e-02 4.16227520e-01\\n-1.20524712e-01 3.27054203e-01 1.66101586e-02 1.70951158e-01\\n-1.78174481e-01 -2.53256559e-02 2.83410162e-01 6.12890944e-02\\n2.69634485e-01 2.14625135e-01 3.88987243e-01 4.55691040e-01\\n2.83973783e-01 4.88232315e-01 2.93742806e-01 6.66268123e-03\\n4.98562753e-01 6.02943599e-01 4.30620968e-01 4.51423153e-02\\n1.47982957e-02 2.04432040e-01 8.37302506e-02 4.38843258e-02\\n3.13088387e-01 3.35341692e-01 6.35313690e-02 9.94269311e-01\\n2.51577020e-01 3.27685982e-01 7.13907599e-01 -6.27548814e-01\\n-2.99214512e-01 8.59089792e-02 5.50635397e-01 -4.47144896e-01\\n5.40072210e-02 4.19687778e-02 -2.27692217e-01 3.44874948e-01\\n-5.19270360e-01 -1.09892771e-01 -5.30936718e-02 1.81326270e-01\\n2.41788030e-02 -8.75484869e-02 -1.01246491e-01 2.48785876e-02\\n-1.87385947e-01 -2.25737348e-01 -3.05894077e-01 -1.32087961e-01\\n-3.41794491e-01 -1.53032750e-01 -5.80528937e-03 -1.02582403e-01\\n-1.33049004e-02 -2.74541378e-01 -7.21229166e-02 -3.97043750e-02\\n5.75172544e-01 -2.86352843e-01 -2.08839148e-01 -1.11376718e-01\\n3.12505126e-01 2.99222797e-01 6.61733687e-01 1.14860013e-03\\n-3.48253995e-02 -2.55359024e-01 -2.34566182e-01 6.96792454e-02\\n-8.21093395e-02 9.60538015e-02 4.69930135e-02 2.71116763e-01\\n-1.92358404e-01 -1.12043768e-01 1.16288483e-01 3.07152033e-01\\n-4.12232161e-01 -1.33328766e-01 -2.03985885e-01 1.19059302e-01\\n-3.91247123e-03 2.62317836e-01 -1.94980145e-01 5.64955845e-02\\n-1.57533824e-01 -5.43533564e-01 3.65039676e-01 -1.85788065e-01\\n-1.83677763e-01 -5.59363365e-02 2.66006261e-01 2.66440868e-01\\n-1.77906334e-01 -2.16637440e-02 -3.15545723e-02 2.85058022e-01\\n-9.34405252e-03 3.11616302e-01 -2.23829150e-01 -2.48703182e-01\\n-3.55325818e-01 2.39375353e-01 -4.14124914e-02 1.02587633e-01\\n2.35460699e-04 5.12061715e-01 3.74462493e-02 1.58546656e-01\\n3.61870110e-01 -7.27597475e-02 -2.90184677e-01 -3.13117445e-01\\n-1.83845267e-01 -2.68800318e-01 -5.72934300e-02 -4.00517508e-02\\n3.03331316e-01 -3.99256349e-01 -1.82873636e-01 -3.26407313e-01\\n-5.16338795e-02 -3.46780002e-01 -5.22978529e-02 -3.55726704e-02]]',\n", + " 'job_description': 'The Lausanne University Hospital (CHUV) is one of five Swiss university hospitals. Through its collaboration with the Faculty of Biology and Medicine of the University of Lausanne and the EPFL, CHUV plays a leading role in the areas of medical care, medical research and training. The mission of the Data Science group, wich part of CHUV Department of Information Systems, is to foster the adoption and use of data science and innovative tools in medical informatics within the hospital to significantly improve biomedical research and hospital key processes. To achieve this ambitious goal, one of the core tasks of the group is to develop the necessary IT infrastructure for providing physicians and scientists with the means to smoothly access and use, for their clinical research projects, the massive volume of clinical data that every day is generated within the hospital. Our current and future challenges lie at the intersection of big data, medical informatics, data protection and artifical intelligence. To address these challenges and push the bar furhter, a part of the Data Science Group is specifically focused on projects in Medical Informatics that will explore innovative Tools and technologies for implementing new prototype applications that could potentially be deployed in operational settings. As a Junior Software Engineer within our Data Science team, you will be responsible for : Defining technical and functional specification for new medical informatics applications based on end-users (scientists, physicians and IT experts) requirements and latest technological advances from the research academic community Developing and documenting robust and mature proofs of concept and prototypes of these applications and help in the transition to production environments within the team. In your past experiences, you have shown a proven track record of crafting innovative and elegant software solutions and the capacity to fully document the solutions you have developed. Your are passionate about technology and excited about working in the medical field. Requirements This position requires a university degree in Computer Science or Medical Informatics or equivalent discipline with : Proficiency in at least one object-oriented design development and data-driven development language (JAVA is highly preferable, Go is a plus) Excellent understanding of data structures and algorithms Ability to implement robust prototypes almost ready for deployment in production settings Experience with RESTful JSON APIs and design of micro-services and Web services Experience with relational database management systems and SQL Experience with front-end Framework such as VueJS, WebSockets ans HTML/CSS Experience with DevOps Tools for software deployment and automation using containerization frameworks such as Docker (Kubernetes and Docker Swarm are a plus) Experience with Agile software development as a team and version control (OAuth, OpenID connect, etc.) Oral and written proficiency in French is required to help you interact with end-users and peers on a daily basis. Benefits If you become an employee at the Centre Hospitalier Universitaire Vaudois, we will offer you the following : High social benefits Three days of training per year 25 working days of vacation per year Very good restaurants with preferential rates. ',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Hospitality\", \"Operations\", \"Innovation\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Automation\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Model-Driven Development\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Informatics\", \"Relational Database Management Systems\", \"MASSIVE (Software)\", \"Prototype (Manufacturing)\", \"OAuth\", \"IT Infrastructure\", \"Version Control\", \"DevOps\", \"Prototyping\", \"Docker Swarm\", \"Track (Rail Transport)\", \"Medic\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Functional Specification\", \"Software Engineering\", \"Agile Software Development\", \"Data Science\", \"Web Services\", \"Docker (Software)\", \"Biology\", \"Management Systems\", \"Clinical Research\", \"Object-Oriented Design\", \"Big Data\", \"Community Development\", \"Clinical Data Warehouse\", \"Data Structures\", \"Front End (Software Engineering)\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Medical Research\", \"OpenID\", \"JSON\", \"Database Management Systems\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"SQL (Programming Language)\", \"Software Deployment\", \"Adoptions\", \"Information Systems\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English', 'Samoan']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'java software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.29084960e-01 2.62140512e-01 5.79300046e-01 -1.71656758e-01\\n4.07597214e-01 -3.26852977e-01 1.65194467e-01 4.05312955e-01\\n-9.65342149e-02 -3.00251544e-01 -9.88191515e-02 -1.96574986e-01\\n-4.77293655e-02 1.41474620e-01 1.45884052e-01 2.29993805e-01\\n2.33096421e-01 1.49870053e-01 -1.31318286e-01 3.56698543e-01\\n2.72295237e-01 -1.14527576e-01 1.08554579e-01 5.86050332e-01\\n3.26876760e-01 8.07606876e-02 -1.11285605e-01 6.88832849e-02\\n-2.53506452e-01 -2.56446928e-01 2.78125018e-01 4.42170985e-02\\n-6.90350980e-02 -2.52867937e-01 9.26538631e-02 -2.53114514e-02\\n-2.09541827e-01 3.75378057e-02 4.48275022e-02 1.45989060e-01\\n-3.65990937e-01 -1.83742613e-01 2.03072742e-01 4.91157286e-02\\n-8.05805400e-02 -2.85860300e-01 5.99373952e-02 1.49497628e-01\\n6.75671622e-02 -4.39872183e-02 -5.61264634e-01 3.57233346e-01\\n-1.47572070e-01 -3.64316583e-01 2.91024536e-01 4.36253458e-01\\n-1.04230635e-01 -6.16168141e-01 -2.45343670e-01 -2.30915487e-01\\n4.34910096e-02 -1.37920409e-01 3.22204530e-02 -2.31258184e-01\\n3.45863283e-01 6.27038255e-03 -1.29938256e-02 3.77811968e-01\\n-7.09629238e-01 7.64465630e-02 -6.42108619e-02 -2.59581134e-02\\n-3.49609882e-01 -1.00747481e-01 -2.52771199e-01 -1.16413638e-01\\n-1.26173005e-01 3.78311276e-01 1.22334495e-01 1.87281609e-01\\n6.26367098e-03 2.58674830e-01 -1.61378756e-01 3.42225730e-01\\n2.58066267e-01 3.83898437e-01 2.17728078e-01 2.45320946e-01\\n-4.68446106e-01 3.63288790e-01 1.32109791e-01 -1.98365763e-01\\n2.26976633e-01 1.57001227e-01 4.33870465e-01 -2.62243710e-02\\n1.13484755e-01 5.34501933e-02 -1.61770463e-01 1.94297627e-01\\n2.32667506e-01 -2.44259194e-01 3.45729962e-02 3.00136302e-02\\n-1.13678522e-01 1.29885405e-01 -7.65851289e-02 3.66182178e-01\\n-2.67872930e-01 5.09282529e-01 1.24080583e-01 -1.89764172e-01\\n-5.92319779e-02 -5.59180260e-01 -1.87660724e-01 1.68634996e-01\\n-6.38767285e-03 8.91646147e-02 2.28649959e-01 2.67462701e-01\\n1.91463426e-01 1.57182887e-01 1.87111631e-01 9.07550514e-01\\n-8.93431902e-02 1.11689486e-01 -2.82156587e-01 4.13830489e-01\\n9.07552540e-02 -2.29949415e-01 1.62688047e-01 4.00202543e-01\\n2.42713511e-01 -7.82374963e-02 -2.01069251e-01 2.47408330e-01\\n-8.01034570e-02 -2.35209495e-01 -2.79558241e-01 8.26477259e-02\\n-1.92923948e-01 -4.46372360e-01 4.86904114e-01 1.02292307e-01\\n6.59147874e-02 7.53987134e-02 1.29386317e-03 -6.84737265e-02\\n-1.33449957e-01 2.65035719e-01 3.94960046e-02 1.50348410e-01\\n-2.95256197e-01 -2.25032777e-01 -3.76140863e-01 1.96317852e-01\\n-2.00848565e-01 1.08574346e-01 -1.43870115e-01 -1.23403348e-01\\n3.17099333e-01 -2.83494219e-02 -2.23216519e-01 3.97152126e-01\\n-4.04421948e-02 -1.01409974e-02 -1.02068029e-01 2.74176091e-01\\n-9.70218107e-02 2.45286912e-01 -9.12695602e-02 -1.77253246e-01\\n2.75721759e-01 1.29552037e-01 1.64233044e-01 1.01088174e-02\\n3.48058820e-01 -6.91108853e-02 6.41950518e-02 3.46440002e-02\\n-7.19029009e-01 3.06574225e-01 -6.37431489e-03 -8.19206089e-02\\n6.95343912e-02 8.85688327e-03 2.57347614e-01 -2.50735521e-01\\n6.79243952e-02 -1.64475128e-01 -4.16419864e-01 -3.00520629e-01\\n-1.58242866e-01 -9.34003573e-03 4.97058600e-01 -3.96503985e-01\\n-1.76454052e-01 1.13739207e-01 -4.60353374e-01 1.79139063e-01\\n3.72380346e-01 1.89577013e-01 -8.08419939e-03 4.63545062e-02\\n-1.80044219e-01 -4.72012371e-01 8.80408362e-02 -3.20214093e-01\\n-2.77306348e-01 2.21537769e-01 -3.52423519e-01 2.61282235e-01\\n6.25214353e-02 -1.31536305e-01 -1.48418462e-02 1.51662096e-01\\n-2.70396955e-02 -1.22175932e-01 2.33684763e-01 2.97234161e-04\\n4.14447635e-01 -9.06214118e-02 -4.28777814e-01 5.54850280e-01\\n-2.49403298e-01 5.05248725e-01 1.59539193e-01 -7.90125966e-01\\n4.47485358e-01 3.25576156e-01 1.00078098e-01 -3.11831146e-01\\n6.06809378e-01 -2.73261160e-01 5.95158599e-02 1.79553747e-01\\n-4.05985773e-01 -2.92614847e-01 1.86335132e-01 -1.78859279e-01\\n-1.37001216e-01 4.88239497e-01 7.96446726e-02 -4.87198606e-02\\n3.21331441e-01 -1.96211830e-01 -1.30077094e-01 4.95946370e-02\\n-1.53266087e-01 -2.80117601e-01 -2.49249980e-01 4.46733758e-02\\n2.81265695e-02 -5.47999382e-01 -6.05022311e-02 -4.06223208e-01\\n-2.39581779e-01 -2.35515207e-01 -2.75036573e-01 3.46829683e-01\\n2.07036123e-01 1.34964004e-01 5.98317906e-02 4.53713201e-02\\n-2.09509611e-01 -4.72107351e-01 1.34726390e-02 1.33512512e-01\\n3.86907429e-01 1.32881254e-01 8.86981785e-02 -1.10890217e-01\\n-1.59253135e-01 6.61159754e-01 -1.73006788e-01 -1.58518538e-01\\n2.96477098e-02 1.70770451e-01 -2.65163034e-02 -1.26020715e-01\\n9.18398127e-02 3.47344339e-01 -2.34830916e-01 7.84806982e-02\\n-1.80302486e-01 7.55594969e-02 3.61310065e-01 1.56322047e-02\\n-3.72833282e-01 -3.62376541e-01 -7.74660856e-02 1.96626455e-01\\n-5.16945243e-01 -1.45041287e-01 6.29496634e-01 1.81325376e-01\\n1.56735465e-01 1.73290581e-01 2.10562900e-01 -9.95065942e-02\\n-7.37534314e-02 -1.54107392e-01 1.84999436e-01 1.74400266e-02\\n1.06580839e-01 1.38123840e-01 -1.95422694e-01 -5.48624098e-01\\n-3.79720473e+00 -1.74370959e-01 6.81486204e-02 -3.45668733e-01\\n1.34696156e-01 -1.64355859e-01 5.19638956e-02 -1.62676111e-01\\n-1.42829657e-01 1.39625639e-01 -8.52936953e-02 -1.63554490e-01\\n2.48920843e-01 1.85274079e-01 3.79571654e-02 3.69863927e-01\\n2.47098684e-01 -1.78033426e-01 2.21272446e-02 3.04462790e-01\\n-1.46770552e-01 -5.73262691e-01 2.17467830e-01 -7.27875531e-02\\n3.37402135e-01 3.03049624e-01 -3.29685807e-01 -1.03959359e-01\\n-1.27226517e-01 -2.22954273e-01 6.49068952e-02 -2.20950544e-01\\n2.67458912e-02 3.53062034e-01 7.64386505e-02 -1.51834384e-01\\n1.77651390e-01 -3.14187825e-01 -2.06290130e-02 -4.19452369e-01\\n1.79779768e-01 -5.14288127e-01 -5.69003671e-02 -5.99027425e-02\\n6.56234920e-01 -4.93626416e-01 1.22995161e-01 1.79741323e-01\\n1.09203584e-01 3.48694772e-01 -1.54815719e-01 -2.33588666e-01\\n-2.03866675e-01 -2.77675748e-01 -4.01021242e-02 -2.53552407e-01\\n3.85173947e-01 6.48843944e-01 -2.37715155e-01 1.19471125e-01\\n-1.52950129e-03 -3.73087406e-01 -4.17490810e-01 -4.26818311e-01\\n-2.13820055e-01 -1.89948380e-01 -5.97916543e-01 -4.37155843e-01\\n-1.18316889e-01 -1.75993204e-01 -8.78522322e-02 4.08976853e-01\\n-3.13289076e-01 -4.92111415e-01 -2.55464166e-02 -4.47890133e-01\\n6.36267141e-02 -5.97159192e-02 -7.19825998e-02 -1.32814154e-01\\n-1.65673330e-01 -5.68688273e-01 -5.24402075e-02 3.78852263e-02\\n-1.46684170e-01 -1.07872866e-01 1.86718449e-01 -2.32145667e-01\\n-2.41659299e-01 -4.54704136e-01 4.56226766e-01 -5.03252670e-02\\n2.07454607e-01 1.22138366e-01 1.65329739e-01 1.02800213e-01\\n2.28984371e-01 -2.93347061e-01 1.66865543e-01 -4.04790938e-01\\n2.44832024e-01 1.75089151e-01 4.91878152e-01 -2.09653333e-01\\n6.01241924e-02 2.15408698e-01 -2.16286570e-01 -2.15403020e-01\\n3.56882632e-01 9.99459699e-02 1.30656824e-01 -2.71334291e-01\\n3.48226964e-01 -3.96887064e-01 -3.12238514e-01 1.28349409e-01\\n4.62036282e-02 4.97670978e-01 -4.17504162e-02 -3.49803269e-01\\n-2.95065939e-01 4.91938323e-01 -2.26600438e-01 -1.48372471e-01\\n-1.83266461e-01 1.14559695e-01 -1.92599624e-01 2.56521940e-01\\n-4.15016152e-02 -1.45989761e-01 -2.47003973e-01 -1.54537484e-01\\n-6.90116640e-03 2.35708073e-01 2.93744326e-01 6.31619021e-02\\n-7.60057196e-02 -5.22172272e-01 2.57216319e-02 4.34192829e-02\\n1.35942265e-01 2.84234732e-01 -2.58271936e-02 -7.25887641e-02\\n6.00554124e-02 2.67107219e-01 -1.27476558e-01 8.63471404e-02\\n-3.19040895e-01 1.44932438e-02 -3.45863372e-01 -3.38622212e-01\\n-2.26710796e-01 -2.10367590e-01 -1.75012663e-01 2.12140858e-01\\n9.53195095e-02 4.18410078e-02 -4.44164723e-02 -3.45209509e-01\\n2.99342722e-01 -5.13440855e-02 3.12278688e-01 2.07204461e-01\\n-5.63636841e-03 3.58169883e-01 2.68341284e-02 -8.88421834e-02\\n-2.69131571e-01 5.78232866e-04 -2.51413703e-01 -5.27364686e-02\\n-1.45653682e-02 -4.48338777e-01 -3.78288589e-02 3.15649956e-01\\n7.58910850e-02 -3.30348134e-01 -1.39867619e-01 1.29993200e-01\\n8.43751337e-03 -3.30788314e-01 -1.84637114e-01 1.02153234e-01\\n3.00187200e-01 3.23777236e-02 3.02469134e-01 -4.24009770e-01\\n-2.80864835e-02 8.25613663e-02 -1.22988045e-01 5.57096958e-01\\n-1.32440878e-02 -5.05492184e-03 -1.40434906e-01 -4.28213209e-01\\n2.64858335e-01 -1.91134498e-01 -1.03755360e-02 -3.95248458e-02\\n1.41391560e-01 4.15488239e-03 -3.08830142e-01 6.17188402e-02\\n-7.08237058e-03 -1.19427368e-01 -9.66810528e-03 -8.80531520e-02\\n6.48007095e-02 -3.65651306e-03 -5.14961600e-01 -3.30828130e-01\\n-2.58884877e-01 -1.94509491e-01 3.24086263e-03 -3.01865190e-01\\n-8.76956359e-02 2.35095154e-02 -5.54473937e-01 2.84144729e-01\\n-2.24388793e-01 5.56556247e-02 1.71301425e-01 -2.50074044e-02\\n-4.62158471e-01 -8.73459280e-02 2.81198502e-01 2.90880412e-01\\n-2.88447082e-01 -1.84368506e-01 -6.47123437e-03 -9.60020721e-01\\n2.98601687e-01 -2.76184957e-02 -1.81323573e-01 -1.89398546e-02\\n-1.15069367e-01 -4.39909965e-01 1.78857833e-01 -3.41170669e-01\\n-1.28895342e-01 -8.72199796e-03 -1.85656905e-01 -4.36690122e-01\\n-7.66918659e-02 -1.16913272e-02 -2.15566769e-01 4.61736590e-01\\n-4.41099912e-01 2.95564801e-01 -6.44047186e-02 7.79837593e-02\\n-1.72699213e-01 -2.39468977e-01 1.22657023e-01 -4.42643821e-01\\n-4.02533948e-01 -5.62420301e-02 -2.36788079e-01 -1.79275900e-01\\n5.50360195e-02 -1.54304117e-01 -9.01202038e-02 1.05518691e-01\\n2.08000854e-01 6.54802620e-02 -1.49603225e-02 -2.94320911e-01\\n6.38013780e-02 -4.44533527e-01 -3.41661684e-02 -1.93370670e-01\\n-2.72248648e-02 -7.48529509e-02 1.28084973e-01 7.29332641e-02\\n-8.34841654e-02 -4.07469720e-01 3.36332232e-01 -1.69539034e-01\\n-2.47921854e-01 -3.87980938e-02 -4.27790023e-02 1.67673945e-01\\n1.75111219e-01 -4.30553854e-01 1.64892450e-02 1.87088519e-01\\n1.22670099e-01 1.06567591e-01 1.92715436e-01 1.87237356e-02\\n-1.32882625e-01 3.44261646e-01 -2.71941960e-01 5.71830831e-02\\n7.29898572e-01 1.60022154e-01 5.00025898e-02 2.50351340e-01\\n2.24849731e-01 3.54331404e-01 5.01193941e-01 3.47868279e-02\\n-5.36318570e-02 2.76669621e-01 3.00203171e-02 -5.63144565e-01\\n7.23579377e-02 1.03664212e-01 -3.01357418e-01 -2.10207999e-01\\n7.26305962e-01 4.49892849e-01 -3.87940764e-01 -2.70315826e-01\\n-7.84376785e-02 -1.78805694e-01 6.79090321e-02 -2.25535497e-01\\n1.01930976e-01 -2.99393296e-01 5.11175454e-01 -5.89572862e-02\\n1.33490101e-01 5.90807557e-01 -2.30453894e-01 -4.05031055e-01\\n-8.45221151e-03 1.93494290e-01 1.33255109e-01 3.07476014e-01\\n-2.23773599e-01 2.09919855e-01 -2.85993721e-02 1.78545326e-01\\n6.45296946e-02 2.26957142e-01 1.31066576e-01 8.83392841e-02\\n1.75895467e-01 4.47175987e-02 3.06151539e-01 3.61837357e-01\\n3.71646076e-01 4.92488712e-01 1.86429247e-01 1.04656316e-01\\n5.11437595e-01 4.63136673e-01 3.25913817e-01 1.39486611e-01\\n1.25734974e-03 4.48078178e-02 8.67418274e-02 -8.34776759e-02\\n2.75208473e-01 2.87221074e-01 5.13051711e-02 9.40322101e-01\\n4.01445568e-01 1.61561146e-01 7.63075471e-01 -6.19205892e-01\\n-4.82153893e-01 -1.07107341e-01 3.89787585e-01 -2.85050333e-01\\n-1.59934416e-01 5.27569577e-02 -2.12324843e-01 2.24476963e-01\\n-4.27165270e-01 -1.29779354e-01 2.96830796e-02 -2.51617320e-02\\n1.20508529e-01 -2.50530560e-02 -2.84693182e-01 -1.50112122e-01\\n-1.95078954e-01 -6.76711947e-02 -4.20511723e-01 -4.30753976e-02\\n-2.06791654e-01 -1.80271849e-01 -1.53617263e-01 -1.80420682e-01\\n-4.40341197e-02 -4.91700143e-01 -2.10986003e-01 6.74237683e-02\\n2.67116189e-01 -1.01142794e-01 8.60791828e-04 -2.22757891e-01\\n2.37010539e-01 2.62929112e-01 5.13498068e-01 -5.41779101e-02\\n7.43862474e-03 -1.22914925e-01 -2.15431511e-01 8.32456574e-02\\n1.60949126e-01 1.35326192e-01 -4.92119230e-03 3.96250576e-01\\n-3.88670534e-01 -8.25216025e-02 3.71140987e-02 4.66852933e-01\\n-4.52326715e-01 -2.45625116e-02 5.93731776e-02 3.32390189e-01\\n7.14467764e-02 3.21494900e-02 -2.27269188e-01 3.20281908e-02\\n-2.79562116e-01 -4.70314234e-01 2.94201612e-01 -3.86737734e-02\\n-7.19742998e-02 1.82324216e-01 1.70109197e-01 1.70506924e-01\\n-1.81220010e-01 -8.86387751e-02 5.20936586e-02 1.44922122e-01\\n3.04070532e-01 2.92848170e-01 -2.61507481e-01 -2.44107917e-01\\n-2.50973791e-01 1.40726462e-01 -3.33147496e-01 1.73834905e-01\\n-1.15660913e-01 2.59455591e-01 1.67472363e-01 1.77322060e-01\\n2.58830339e-01 1.91054419e-02 -1.25682026e-01 -1.32026717e-01\\n-2.99569994e-01 -3.01465154e-01 1.45465672e-01 1.47434482e-02\\n1.35304227e-01 -4.56657380e-01 2.19002180e-03 -4.16494580e-03\\n-1.81738153e-01 -2.89314747e-01 -8.25659484e-02 -2.33927086e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Java Software Engineer. This role is permanent position based in Zürich Canton. Your Role: Hold joint responsibility for conception, implementation, testing & quality assurance within customer projects. Utilize the following Technology Stack: Java 8/11, SpringBoot, Spring Framework, Swagger, REST, SOAP, Angular 8+, Maven, GitLab CI, Docker, Kubernetes, HL7 FHIR & IHE. Your Skills: At least 4 years of professional Java Software Engineering experience. Sound experience with different webservice technologies such as REST & SOAP & modern Software Architectures like Spring Boot, Spring Data & Swagger. A knowledge of Continuous Integration & Continuous Deployment. Ideally experienced in Agile Software Development. Your Profile: Computer Science University Degree. Creative, responsible, dynamic, self-driven & both team & quality-oriented. Fluent English (spoken & written), German is considered very advantageous. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Quality Assurance\", \"Creativity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Spring Boot\", \"Computer Science\", \"Continuous Integration\", \"Spring Data\", \"Idealization\", \"Java 8\", \"Software Engineering\", \"Agile Software Development\", \"Docker (Software)\", \"Apache Maven\", \"Software Architecture\", \"Receivables\", \"Angular (Web Framework)\", \"Software Development\", \"Software Modernization\", \"Simple Object Access Protocol (SOAP)\", \"Swagger UI\", \"Java (Programming Language)\", \"Gitlab\", \"Spring Framework\"]',\n", + " 'languages': \"['English', 'Norwegian Nynorsk', 'Hungarian', 'Macedonian', 'Kinyarwand']\"},\n", + " {'company_id': '122',\n", + " 'job_title': 'software support engineer (fr, ch, be, lu)',\n", + " 'location': 'Bern',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.therefore.ca',\n", + " 'jobdescription_embedded': '[[-1.55777916e-01 2.44646162e-01 4.60761309e-01 1.32202441e-02\\n4.27852601e-01 -1.70495957e-01 1.49829969e-01 5.15513301e-01\\n1.98983215e-02 -4.21885222e-01 -5.19852787e-02 -1.41450763e-01\\n1.08371019e-01 1.40827313e-01 1.48692399e-01 3.20744693e-01\\n3.37379754e-01 2.18882591e-01 -2.77064741e-01 3.16944510e-01\\n3.65652815e-02 -2.18486264e-01 2.15076670e-01 7.29440093e-01\\n6.40528560e-01 7.72121176e-02 -5.76715507e-02 -3.02792974e-02\\n-1.67261645e-01 -3.08670282e-01 4.98694271e-01 -1.90470859e-01\\n-9.24927066e-04 -3.46925765e-01 1.92726374e-01 -2.18261052e-02\\n-1.82223916e-01 3.87611613e-02 -1.66576579e-01 -3.89696360e-02\\n-4.63668555e-01 4.78723273e-03 5.43792062e-02 1.40126795e-01\\n-2.63701022e-01 -3.98818225e-01 1.68714151e-01 -4.79045734e-02\\n2.40668774e-01 -7.78185055e-02 -4.32403386e-01 3.02379876e-01\\n-2.62874901e-01 -2.03442186e-01 3.62532794e-01 5.97161591e-01\\n-1.76009998e-01 -5.24223149e-01 -5.56016505e-01 -3.70052040e-01\\n4.12188135e-02 -8.10416564e-02 8.10493007e-02 -3.66510540e-01\\n3.36701870e-01 6.52503967e-03 7.20869824e-02 3.67358863e-01\\n-7.79127002e-01 -8.71852040e-02 -1.78243116e-01 -1.46569267e-01\\n-2.85961360e-01 -1.05965897e-01 -4.65223610e-01 -7.05951080e-02\\n-2.32167542e-01 3.36989522e-01 4.43681702e-02 4.25488763e-02\\n-2.23287359e-01 2.80868798e-01 -2.96769202e-01 4.03848410e-01\\n1.30317986e-01 3.12463105e-01 2.91959375e-01 2.84992367e-01\\n-2.61566848e-01 5.34558535e-01 1.81289077e-01 -2.77079493e-01\\n1.66980848e-01 1.19555704e-01 4.82461423e-01 -1.65927008e-01\\n3.44761342e-01 1.19609637e-02 -3.46580416e-01 2.62116760e-01\\n3.64019126e-01 -3.76346886e-01 -3.39216925e-02 -7.04857260e-02\\n-1.32716056e-02 7.15230405e-02 9.77599844e-02 2.36990616e-01\\n-3.20370823e-01 5.10214806e-01 1.58937022e-01 -2.10255235e-01\\n-1.02614038e-01 -4.79490072e-01 -1.45123899e-01 7.68300071e-02\\n7.35836104e-02 1.55027568e-01 1.18624493e-01 1.56649068e-01\\n2.95725495e-01 -8.91818255e-02 9.39065441e-02 7.83210695e-01\\n-1.21435538e-01 3.67878787e-02 -2.77181089e-01 2.90609628e-01\\n-5.53212650e-02 -4.45692509e-01 3.42103273e-01 8.21334049e-02\\n1.09309316e-01 -4.55162600e-02 -2.49884859e-01 3.15673292e-01\\n-1.30174115e-01 -2.27295280e-01 -3.23884636e-01 2.65941143e-01\\n-1.08012825e-01 -4.24779177e-01 5.74313223e-01 -8.70489515e-03\\n1.31414920e-01 -1.04726419e-01 6.94150403e-02 -1.41446337e-01\\n-7.21814409e-02 1.80480897e-01 1.58814654e-01 6.09865785e-02\\n-2.93721616e-01 -2.93014526e-01 -1.77519724e-01 4.01413217e-02\\n-3.79075408e-01 1.30171672e-01 -1.41121343e-01 -1.07364096e-01\\n3.29733223e-01 -4.92025241e-02 -2.35559657e-01 2.83330590e-01\\n-1.79927528e-01 1.65434480e-01 -7.16299191e-02 3.83954763e-01\\n-2.21877679e-01 3.96518528e-01 -4.04499136e-02 9.56663340e-02\\n6.76679969e-01 9.93323475e-02 7.84072801e-02 -8.71284753e-02\\n2.86113024e-01 5.39272353e-02 1.49278075e-01 4.50444929e-02\\n-7.23957002e-01 4.47063148e-01 -7.98003282e-03 -1.87707260e-01\\n1.24477893e-01 -1.92692965e-01 3.01498324e-01 -4.46159989e-01\\n-8.75811726e-02 -1.12040214e-01 -3.15513253e-01 -2.74277508e-01\\n-2.56920695e-01 -7.10819215e-02 4.11121547e-01 -4.47752416e-01\\n1.60519369e-02 1.90174103e-01 -4.91433293e-01 6.23355061e-02\\n1.83634341e-01 1.73873201e-01 1.19613163e-01 2.14902118e-01\\n-2.48103291e-01 -4.85935003e-01 1.87821820e-01 -3.13208580e-01\\n-1.64551258e-01 1.92917556e-01 -3.24072659e-01 1.91968501e-01\\n8.72255862e-02 -5.17328503e-03 -1.52181029e-01 1.59750775e-01\\n-1.28285363e-01 -3.60016674e-02 9.75285321e-02 6.58773333e-02\\n3.50631207e-01 1.59893259e-01 -4.56033826e-01 4.60074633e-01\\n-7.83750042e-02 4.95820582e-01 6.93663582e-02 -7.54754424e-01\\n3.71111035e-01 3.22362959e-01 5.26960082e-02 -2.76920617e-01\\n6.20774567e-01 -1.62459254e-01 -1.61150321e-01 8.09434056e-02\\n-4.92908686e-01 -3.82737219e-01 1.28633529e-01 -2.28127003e-01\\n-2.61436075e-01 4.18014884e-01 -6.89997971e-02 1.16534978e-01\\n9.93123576e-02 -1.32335052e-02 -5.01167476e-02 1.54149041e-01\\n1.28883839e-01 -1.08230852e-01 -5.53067982e-01 -1.90396294e-01\\n-5.46686091e-02 -3.42771769e-01 -1.40139028e-01 -4.82705384e-01\\n-2.11515889e-01 -2.57839590e-01 -1.76500842e-01 4.25553881e-02\\n2.25386217e-01 1.30591661e-01 7.48763010e-02 9.63162184e-02\\n-2.84399331e-01 -5.51806331e-01 1.71523262e-02 7.57191181e-02\\n2.82134533e-01 2.98980474e-01 9.19542238e-02 1.69313755e-02\\n-3.56942862e-02 7.07063138e-01 -2.29328528e-01 -5.53242490e-02\\n2.03005031e-01 1.49062023e-01 2.66597904e-02 -1.86680034e-01\\n1.18516393e-01 3.93120736e-01 -3.58069867e-01 -5.33777997e-02\\n-9.80035663e-02 -6.69718534e-02 3.41944665e-01 -1.09312292e-02\\n-3.38619858e-01 -2.53083736e-01 -1.36584237e-01 6.18402436e-02\\n-4.44429427e-01 -2.75446624e-01 6.13491178e-01 4.17287499e-02\\n2.40862787e-01 2.02856824e-01 3.04710090e-01 -8.37553367e-02\\n-1.77283898e-01 -2.67449945e-01 1.79336831e-01 1.16035186e-01\\n7.55361766e-02 1.15386561e-01 -8.34488273e-02 -7.06578851e-01\\n-3.31819034e+00 -6.64388435e-03 2.91053116e-01 -3.70115995e-01\\n3.91724676e-01 -1.13145083e-01 1.25320762e-01 -1.43452451e-01\\n-2.81581104e-01 4.65349779e-02 -2.23548323e-01 -1.46493226e-01\\n1.81097135e-01 1.53515056e-01 1.24589272e-01 2.07910448e-01\\n3.20061833e-01 -3.00651908e-01 2.08528601e-02 2.67527580e-01\\n-1.64164424e-01 -5.96459210e-01 2.74880916e-01 2.54488699e-02\\n3.91146839e-01 4.34081852e-01 -3.92175347e-01 -2.18711540e-01\\n-2.81554222e-01 -1.12926178e-01 1.14689030e-01 -2.67343819e-01\\n-1.31848052e-01 2.82149166e-01 1.95411175e-01 -1.98850214e-01\\n1.46193847e-01 -3.91227722e-01 -5.32448851e-02 -3.58703583e-01\\n4.53238338e-02 -5.53824663e-01 -5.09958304e-02 -4.89958078e-02\\n8.69408965e-01 -3.34439516e-01 1.59568086e-01 -1.84388142e-02\\n1.95699498e-01 1.67088166e-01 2.35443395e-02 3.06046177e-02\\n-2.15773329e-01 -1.02752969e-01 -3.46387923e-02 -1.98693335e-01\\n5.75735152e-01 5.06339610e-01 -2.65325695e-01 -1.45466030e-01\\n-8.04520212e-04 -3.09237987e-01 -4.00573015e-01 -1.62762254e-01\\n-2.57487655e-01 -2.56285340e-01 -5.18521130e-01 -4.43848372e-01\\n-1.59129262e-01 -4.00832780e-02 -1.99822243e-02 4.50307041e-01\\n-2.09728003e-01 -3.36250663e-01 -7.73774385e-02 -4.79032636e-01\\n2.31154710e-01 -5.00294520e-03 9.85561237e-02 -2.74619281e-01\\n-1.27426758e-01 -4.41160530e-01 -2.29107887e-02 -4.33109999e-02\\n-9.38500911e-02 -2.79728144e-01 1.26884878e-01 1.51579414e-04\\n-3.05372208e-01 -5.14321208e-01 2.46081099e-01 1.27358735e-01\\n2.56379098e-01 8.40839818e-02 1.76730305e-01 -1.35128302e-02\\n2.33873323e-01 -2.12859794e-01 1.71754435e-01 -4.98271942e-01\\n8.14767629e-02 4.70817871e-02 5.67152262e-01 -1.35044113e-01\\n6.92816675e-02 1.29755944e-01 -2.07630634e-01 -1.19482920e-01\\n3.08001459e-01 1.24092596e-02 3.69739011e-02 -3.37594122e-01\\n2.31122687e-01 -1.89400643e-01 -2.33733818e-01 -7.61996508e-02\\n-3.76102068e-02 5.62368810e-01 3.59796025e-02 -2.86713272e-01\\n-4.68286872e-02 5.41302800e-01 -1.53587937e-01 2.15905026e-01\\n-2.00532809e-01 9.34032425e-02 -2.57418185e-01 1.53681025e-01\\n1.56245120e-02 -1.88835934e-01 -1.49758384e-01 -1.50384843e-01\\n-7.31983781e-02 4.02921557e-01 2.54822731e-01 1.78068131e-01\\n-2.16893032e-02 -5.01081169e-01 -7.49811307e-02 3.08025658e-01\\n7.27852359e-02 4.48885173e-01 -4.23470214e-02 -2.97585338e-01\\n1.10528171e-02 3.36962700e-01 -2.39874691e-01 2.35921398e-01\\n-2.65145659e-01 9.48325843e-02 -5.37121594e-01 -2.13374361e-01\\n-2.14532122e-01 -4.38523293e-01 1.13080211e-01 3.19716394e-01\\n2.64240764e-02 1.57901719e-01 -8.22614655e-02 -3.63574862e-01\\n2.15572625e-01 -3.27014588e-02 1.50314197e-01 3.02456945e-01\\n-4.57534939e-02 4.17071640e-01 -5.65754138e-02 -1.14566550e-01\\n-2.57182539e-01 2.87781686e-01 -1.01788752e-01 -8.15691613e-03\\n1.08806804e-01 -4.32945341e-01 -1.36645526e-01 3.26870590e-01\\n1.92701399e-01 -1.35639012e-01 -1.28477708e-01 1.24875575e-01\\n-9.70412977e-03 -4.50688183e-01 -3.02522779e-01 1.02883670e-02\\n2.98259795e-01 1.17870353e-01 3.37139219e-01 -5.24307489e-01\\n4.03249413e-02 -8.33124667e-02 -1.41711771e-01 4.25192684e-01\\n-2.02756926e-01 2.70504020e-02 -2.26189762e-01 -2.41214797e-01\\n3.72215450e-01 -1.98244564e-02 5.24469502e-02 1.36542097e-01\\n1.26975745e-01 -2.62327373e-01 -4.93684709e-01 1.25261396e-02\\n-4.42339554e-02 -1.16371989e-01 1.23740032e-01 5.96065857e-02\\n-2.50907764e-02 1.08942844e-01 -6.14572883e-01 -1.61966547e-01\\n-2.83434957e-01 2.62255725e-02 -1.36890439e-02 -4.45676088e-01\\n-1.26759961e-01 -1.28122633e-02 -5.03574610e-01 1.92078292e-01\\n-3.51851374e-01 -9.50949863e-02 1.92498401e-01 -7.75506198e-02\\n-3.94652456e-01 -5.88098280e-02 1.32708848e-01 3.25075686e-01\\n-2.16178328e-01 -2.56074458e-01 -4.48262095e-02 -1.04825044e+00\\n2.23646924e-01 -4.47032489e-02 -1.12437055e-01 2.18818843e-01\\n-7.57814199e-02 -7.27118194e-01 1.66086838e-01 -3.01929563e-01\\n-1.63327247e-01 -8.22161883e-02 -1.47352353e-01 -3.61699909e-01\\n1.25090152e-01 2.70729717e-02 -3.36827517e-01 4.17273849e-01\\n-2.03751162e-01 3.06239635e-01 -7.81369954e-02 6.93842024e-02\\n-2.05008313e-01 -2.36555949e-01 1.15896314e-02 -5.73920071e-01\\n-3.03102940e-01 -1.06991373e-01 -2.37361118e-01 -5.74391149e-02\\n-4.24181037e-02 -3.32903117e-01 -8.05178806e-02 2.41500959e-01\\n4.12768304e-01 8.00553709e-03 -1.37136742e-01 -1.83592498e-01\\n2.04979572e-02 -5.49830973e-01 1.41527683e-01 6.76143095e-02\\n-1.28784686e-01 -1.08879484e-01 1.25018701e-01 1.90895230e-01\\n2.66824007e-01 -5.18946528e-01 3.33700031e-01 -3.24654847e-01\\n-4.04191017e-01 3.90954539e-02 2.19617561e-02 -1.05853610e-01\\n4.59242731e-01 -4.79619920e-01 -1.35602862e-01 4.42796022e-01\\n-2.06907652e-02 3.99441943e-02 2.27149636e-01 -1.42135382e-01\\n-1.28183886e-01 2.92446405e-01 -3.81958455e-01 1.46428850e-02\\n7.60540307e-01 1.55388281e-01 1.34212554e-01 1.55132055e-01\\n1.12253889e-01 3.49402755e-01 4.53990459e-01 -7.37201124e-02\\n-1.64760038e-01 3.39403957e-01 -5.71803190e-03 -6.35221541e-01\\n6.55890852e-02 -3.38497534e-02 -3.86990964e-01 -3.71794730e-01\\n6.82123899e-01 4.21101063e-01 -3.60324889e-01 -3.31207067e-01\\n-1.79230854e-01 -2.74212420e-01 1.46484263e-02 -1.17420331e-02\\n5.49856164e-02 -1.70786843e-01 4.64682698e-01 3.66226397e-02\\n1.17425151e-01 5.31530619e-01 -2.17245281e-01 -3.52364182e-01\\n8.84826295e-03 1.54161260e-01 -1.40242547e-01 5.53890407e-01\\n-2.64476389e-01 2.39670157e-01 3.24540841e-03 5.39631806e-02\\n-7.47219771e-02 1.94921255e-01 4.07316200e-02 1.50618702e-01\\n8.86686817e-02 1.67923704e-01 5.28612316e-01 5.21264851e-01\\n3.28501701e-01 4.34492826e-01 3.73809934e-01 -1.23514532e-04\\n5.52590311e-01 4.20426518e-01 4.59228516e-01 1.43709615e-01\\n3.12787555e-02 6.66666776e-02 1.78284287e-01 1.77383535e-02\\n3.86749476e-01 2.68428862e-01 -4.57613207e-02 8.96503031e-01\\n3.72031540e-01 2.09202200e-01 7.44310558e-01 -6.89597189e-01\\n-3.14958423e-01 -6.47929609e-02 4.33343500e-01 -4.82031107e-01\\n-7.06584007e-02 1.27265796e-01 -1.46234989e-01 2.52761006e-01\\n-4.41855252e-01 -4.05184239e-01 -8.39511901e-02 1.60894424e-01\\n-6.51107803e-02 -1.99470833e-01 -1.78317010e-01 -1.27511984e-02\\n-9.79640335e-02 -2.02443972e-01 -5.55700779e-01 -2.58728545e-02\\n-2.66039640e-01 -6.32944405e-02 -1.34583980e-01 -2.58409679e-01\\n-8.22316632e-02 -3.11412454e-01 1.36025976e-02 2.52741780e-02\\n9.96530280e-02 -3.64415608e-02 2.55640410e-02 -1.50882259e-01\\n4.68516022e-01 1.21745020e-01 5.10959148e-01 7.68714249e-02\\n4.14141640e-02 -1.89197019e-01 -1.78109229e-01 2.05753505e-01\\n2.35390767e-01 2.13140510e-02 1.84690788e-01 3.14052165e-01\\n-3.71250272e-01 -3.62805367e-01 5.86790480e-02 4.36567366e-01\\n-5.66225111e-01 -4.04161736e-02 1.71136066e-01 1.73994452e-01\\n1.04999550e-01 8.50558504e-02 -4.57604080e-02 -4.41071503e-02\\n-4.89096902e-02 -3.45571965e-01 2.17098668e-01 1.17173679e-01\\n-1.77350566e-01 5.97769842e-02 1.52673811e-01 2.05181032e-01\\n-1.87648162e-01 -3.07280328e-02 -1.53537810e-01 9.31175277e-02\\n9.87549946e-02 2.27448732e-01 -1.28859013e-01 -3.07745695e-01\\n-2.20803484e-01 8.82185027e-02 -3.15490365e-01 9.08235535e-02\\n-4.25345311e-03 1.89366877e-01 -6.74795285e-02 9.47511792e-02\\n4.62229013e-01 -5.05791269e-02 -1.77264571e-01 -2.50555009e-01\\n-8.83811340e-02 -2.04137564e-01 -3.02797519e-02 -1.70584708e-01\\n2.22457200e-01 -3.67062181e-01 -1.06782697e-01 -1.57961607e-01\\n-1.35396391e-01 -2.68211633e-01 1.30593717e-01 -6.25805035e-02]]',\n", + " 'job_description': \"The Profile: We're looking for a motivated person that loves challenges and the satisfaction that comes along with not only finding a solution, but helping out our customers along the way. The ideal candidate should bring a number of the following qualifications to the table: Bachelor's degree in computer science, engineering, math, or the physical sciences. Communicate effectively in person, on the phone, and electronically while maintaining professionalism. Think with a clear mind and develop clever and useful solutions. Excellent knowledge of Microsoft server and client software. Knowledge of database technology. Knowledge of scripting and SQL is a plus. Intelligence, motivation, and a team player attitude. Native French and fluent English speaking, German is a bonus. The Job:Main responsibilities include: Provide support via phone, web, and email to our resellers and customers. Consult and develop effective relationships with our reseller's technical support staff. Support and advise our reseller’s technical staff in designing the most efficient architecture for complex projects Test Therefore software Assist with creating resources such as Knowledge Base articles This is a home-based contractor position with up to 30% travelling required. As the main goal of this role is to provide support for the French speaking countries, the ideal candidate must be located in France, Belgium or Switzerland. The Rewards: A challenging and diversified job in an internationally oriented, rapidly growing company. A flexible work environment with the freedom to work from anywhere with an internet connection. Technical training and a competitive salary. An international, highly motivated and creative team to support you every step of the way. If these tasks sound like something you would enjoy, we want to hear from you! We look forward to receiving your application at career@therefore.net.\",\n", + " 'soft_skills': '[\"Professionalism\", \"Communications\", \"Creativity\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Projective Tests\", \"Internet Connection Sharing\", \"Knowledge Base\", \"Advising\", \"Resourcing\", \"Electronics\", \"Scripting\", \"Personalization\", \"Microsoft Servers\", \"Maintainability\", \"Computer Science\", \"Knowledge Management Software\", \"Therapeutic Support Staff\", \"SQL (Programming Language)\", \"Physical Science\", \"Technical Training\", \"Receivables\", \"Technical Support\"]',\n", + " 'languages': \"['English', 'Greenlandic', 'Haitian Creole', 'Ossetic', 'Kirghiz']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'software engineer .net / c# – 100%',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.36485139e-01 3.94954354e-01 3.41715157e-01 -1.32264718e-01\\n3.74576837e-01 -2.54453957e-01 2.09059119e-02 3.41425091e-01\\n-1.75991692e-02 -4.42179978e-01 -7.92926028e-02 -2.43561134e-01\\n7.10741132e-02 9.04551297e-02 -9.63264424e-03 3.50516498e-01\\n2.74466723e-01 7.14818062e-03 -3.08538917e-02 2.52134174e-01\\n3.03227138e-02 -1.29845172e-01 1.19766101e-01 7.36797571e-01\\n3.16248566e-01 2.17099991e-02 1.32607311e-01 1.85543358e-01\\n-1.79492980e-01 -3.34556580e-01 3.65690768e-01 -1.61332004e-02\\n-5.49911940e-03 -3.59695554e-01 8.21324810e-02 6.36048317e-02\\n-6.59294873e-02 7.82380924e-02 -6.99861869e-02 2.14569241e-01\\n-4.39809978e-01 -2.67401487e-01 9.92009938e-02 -4.94685210e-02\\n-1.28686696e-01 -4.03075278e-01 8.25145170e-02 -1.22965835e-01\\n2.00440690e-01 3.95298861e-02 -4.29515630e-01 3.65492344e-01\\n-2.67873466e-01 -2.24930495e-01 4.12095219e-01 6.19897246e-01\\n-5.89494817e-02 -6.15805745e-01 -4.83195812e-01 -1.68435156e-01\\n2.39223883e-01 -2.32865140e-02 2.72755735e-02 -2.67609447e-01\\n4.72929269e-01 6.20526075e-02 6.00723848e-02 3.62588853e-01\\n-9.03697848e-01 -2.35060025e-02 -3.60300481e-01 7.21358880e-02\\n-3.69268149e-01 -1.08621888e-01 -2.98044682e-01 -1.43332496e-01\\n-2.51289904e-02 3.90140533e-01 1.33863790e-03 -1.08914822e-01\\n-9.85813364e-02 3.35853487e-01 -2.98422068e-01 2.19803050e-01\\n2.56180704e-01 1.81577921e-01 3.44661355e-01 2.46916115e-01\\n-4.89581585e-01 5.00588894e-01 3.27083200e-01 -2.01793477e-01\\n1.78733632e-01 4.03531864e-02 4.25046742e-01 1.14650531e-02\\n1.21262982e-01 2.23240152e-01 -2.13071108e-01 3.39441806e-01\\n2.65943825e-01 -1.51190102e-01 -9.85910743e-02 2.25233324e-02\\n6.32974654e-02 -2.46682651e-02 6.79992884e-02 3.25123340e-01\\n-3.85843813e-01 5.31564474e-01 9.42794904e-02 -2.20251039e-01\\n-9.32294652e-02 -5.54951310e-01 -2.29636863e-01 1.80726513e-01\\n-4.55443412e-02 9.97670516e-02 6.13826290e-02 2.96297282e-01\\n4.14158516e-02 3.44178937e-02 5.79324178e-02 8.71967971e-01\\n-9.83784720e-02 1.96378872e-01 -1.78804621e-01 4.14466649e-01\\n1.22616284e-01 -4.17080253e-01 2.45881215e-01 2.59527236e-01\\n1.12097614e-01 -1.28335759e-01 -1.20227166e-01 2.76320666e-01\\n-2.21474972e-02 -3.10264081e-01 -4.67084318e-01 2.19665349e-01\\n-2.03669950e-01 -4.01662409e-01 5.82797766e-01 -1.79883409e-02\\n1.47994384e-01 6.72786459e-02 -1.00305900e-01 -9.68524218e-02\\n-1.69183731e-01 3.46817583e-01 -6.42323792e-02 2.13435501e-01\\n-3.66622716e-01 -2.22823247e-01 -3.13481212e-01 2.30154186e-01\\n-1.55536011e-01 1.30251691e-01 -2.55749196e-01 -1.01911336e-01\\n4.77887422e-01 -1.17601559e-03 -3.08606714e-01 3.12453479e-01\\n-1.97987575e-02 8.15325603e-02 -1.92058012e-01 2.10213557e-01\\n-4.75911424e-02 2.09640652e-01 -9.92233530e-02 -6.46374077e-02\\n4.02092606e-01 5.51445335e-02 1.15047559e-01 -1.94033280e-01\\n3.52754265e-01 -1.88722745e-01 7.49055073e-02 4.55752760e-02\\n-6.03218853e-01 3.94284219e-01 -1.01720415e-01 -3.26695815e-02\\n1.63442660e-02 -5.46897985e-02 2.34095350e-01 -2.68656045e-01\\n-1.27077252e-01 -1.08827710e-01 -3.67108881e-01 -4.15942639e-01\\n-2.09083691e-01 -3.10132448e-02 5.01979470e-01 -4.09136206e-01\\n-1.41503856e-01 1.94628775e-01 -5.91149509e-01 2.97529269e-02\\n3.25729579e-01 2.23858058e-01 1.65871799e-01 1.27957672e-01\\n-1.97559431e-01 -5.31241775e-01 1.17950134e-01 -4.97809291e-01\\n-2.45711237e-01 1.55909225e-01 -2.32092306e-01 3.58646005e-01\\n1.83655977e-01 -1.97926406e-02 -1.30619392e-01 1.17505915e-01\\n-1.50501221e-01 6.40198812e-02 2.23950297e-01 1.09920159e-01\\n2.67031670e-01 5.08188866e-02 -5.19610941e-01 4.47073430e-01\\n-1.50130615e-01 4.48666394e-01 1.99590512e-02 -8.54753137e-01\\n4.24679458e-01 2.97988951e-01 -9.94809996e-03 -4.35043871e-01\\n7.31079340e-01 -2.42495358e-01 -8.17864761e-02 1.79590121e-01\\n-5.48640072e-01 -2.69853592e-01 1.48851663e-01 -1.30901173e-01\\n-2.03461304e-01 6.04293287e-01 1.21535324e-01 -3.53104323e-02\\n3.57264519e-01 -1.91261008e-01 -9.82204825e-02 1.23021409e-01\\n-7.85991251e-02 -1.91643864e-01 -3.97014648e-01 -1.38140827e-01\\n-4.73861489e-03 -6.74048305e-01 -2.30036438e-01 -4.24524754e-01\\n-2.64085740e-01 -3.62076670e-01 -2.36944780e-01 3.70486885e-01\\n1.74358800e-01 1.99686527e-01 -5.54576004e-03 1.30971223e-01\\n-1.42661601e-01 -6.57925189e-01 -2.98706978e-03 1.01999253e-01\\n2.61730194e-01 2.94061720e-01 4.32828069e-02 -8.21034610e-02\\n-1.04557253e-01 4.69511926e-01 -3.64202321e-01 -2.76589483e-01\\n1.24117054e-01 1.13512568e-01 -4.11655344e-02 3.43958731e-03\\n1.84736058e-01 3.65341932e-01 -2.58055389e-01 8.20056126e-02\\n-5.30272089e-02 -5.51296072e-03 2.87989080e-01 8.21340382e-02\\n-4.15510714e-01 -3.48588079e-01 -4.60934043e-02 2.74031460e-01\\n-5.97515166e-01 -1.91482231e-01 5.22213519e-01 2.02208281e-01\\n1.05801813e-01 1.78160325e-01 3.08783263e-01 -1.75152645e-01\\n-1.43731564e-01 -2.02614814e-01 1.80594429e-01 1.73164308e-01\\n2.01359138e-01 1.17409937e-01 -2.68430412e-01 -6.05692685e-01\\n-3.72289038e+00 -1.56825259e-01 6.84104711e-02 -2.39947632e-01\\n2.81362683e-01 -7.05311149e-02 1.55990288e-01 -1.68352634e-01\\n-2.27487892e-01 -4.77950349e-02 -2.17455789e-01 -1.10055700e-01\\n2.59283930e-01 3.13990057e-01 9.46324766e-02 3.46074730e-01\\n9.70154107e-02 -2.52630889e-01 -1.01538040e-02 3.98356527e-01\\n-1.04524754e-01 -6.42257333e-01 1.16202898e-01 -9.42850038e-02\\n3.40577275e-01 2.59909362e-01 -5.29494345e-01 6.40412569e-02\\n-2.31928647e-01 -1.61939815e-01 2.23183542e-01 -2.45969519e-01\\n-9.55958366e-02 2.57815808e-01 1.43034086e-01 -1.50283948e-01\\n1.51780590e-01 -2.54096001e-01 6.06673863e-03 -4.64962840e-01\\n-1.13956677e-02 -6.17562175e-01 -4.82703373e-02 -1.22332640e-01\\n6.62680984e-01 -3.50024849e-01 8.87440238e-03 2.71895318e-03\\n6.08504154e-02 3.14898819e-01 -3.58041860e-02 -9.96428430e-02\\n-1.75217673e-01 -2.12488994e-01 -1.51673138e-01 -2.27629483e-01\\n5.83305895e-01 5.71267486e-01 -2.91771948e-01 -4.40548509e-02\\n-8.39029700e-02 -4.91786778e-01 -5.88143945e-01 -3.32517117e-01\\n-2.11489692e-01 -1.79593056e-01 -5.79839349e-01 -4.51275080e-01\\n-1.66964263e-01 -1.20966405e-01 1.66373551e-02 5.56707740e-01\\n-4.22808379e-01 -4.76644248e-01 7.29360953e-02 -4.88015950e-01\\n7.72304162e-02 -1.22839145e-01 1.26682028e-01 -7.19851404e-02\\n-2.27020264e-01 -5.16934276e-01 5.92147484e-02 -1.47269526e-02\\n-1.83662191e-01 6.51609199e-03 1.43612549e-01 -2.47279838e-01\\n-3.73183191e-01 -5.60799420e-01 5.18360555e-01 1.04001798e-01\\n2.31070742e-01 1.37495995e-01 2.11091101e-01 4.77739833e-02\\n3.27825844e-01 -2.14730084e-01 -2.24940758e-02 -4.90378171e-01\\n1.05227418e-01 1.84847717e-03 5.87059140e-01 -2.57741094e-01\\n-2.55780350e-02 1.50100172e-01 -1.94470689e-01 -9.27382484e-02\\n4.20742691e-01 1.73135996e-01 2.10714832e-01 -3.45752150e-01\\n3.55315357e-01 -3.48521769e-01 -2.93809861e-01 2.36986309e-01\\n9.90311150e-03 4.59079593e-01 1.22427857e-02 -4.21665817e-01\\n-2.40999892e-01 3.32676977e-01 -8.12635645e-02 -1.12562247e-01\\n-2.53897548e-01 9.10028070e-02 -3.20404261e-01 2.54071116e-01\\n7.54083544e-02 -3.01619396e-02 -1.98006660e-01 1.71537269e-02\\n-1.06072530e-01 2.95527875e-01 2.49385655e-01 1.07479081e-01\\n-1.17268167e-01 -3.13230366e-01 -7.88311139e-02 2.01637652e-02\\n1.70684859e-01 3.69287640e-01 7.15048984e-02 -3.96200269e-01\\n-4.52620275e-02 3.71994048e-01 -2.38824055e-01 5.96182942e-02\\n-2.51072943e-01 -2.70025921e-04 -4.77304667e-01 -2.28196636e-01\\n-2.24470824e-01 -2.20426977e-01 -8.56324807e-02 2.53180921e-01\\n1.67832151e-01 -1.07529774e-01 3.90559845e-02 -3.56185734e-01\\n2.73054242e-01 7.03704655e-02 2.80985028e-01 2.50937134e-01\\n9.64337885e-02 5.50059080e-01 -5.44912256e-02 -2.49118268e-01\\n-9.61968452e-02 1.50654819e-02 -3.03131789e-01 -1.67187929e-01\\n-2.61976086e-02 -5.13939559e-01 -3.39868292e-02 4.55457658e-01\\n1.22654624e-01 -1.44240603e-01 -1.96612597e-01 2.60379314e-01\\n-2.42381636e-02 -3.37778091e-01 -1.77343518e-01 1.00362830e-01\\n1.78423017e-01 1.55838713e-01 3.10148686e-01 -3.73953193e-01\\n-5.74688911e-02 5.76397590e-02 -1.21398829e-01 4.81519341e-01\\n9.58162174e-02 1.72538072e-01 -2.08771124e-01 -2.47848511e-01\\n3.64267826e-01 -4.88149002e-02 -6.33333027e-02 -1.57083109e-01\\n4.43557948e-02 -1.12354331e-01 -3.46901119e-01 2.72884481e-02\\n-6.82911351e-02 -1.58755332e-01 5.76706342e-02 -7.71955624e-02\\n1.10946633e-01 3.11154220e-03 -5.39438248e-01 -2.26396218e-01\\n-4.00117010e-01 -6.21544123e-02 -4.90234457e-02 -5.27627289e-01\\n6.02536164e-02 7.19811209e-03 -5.62946975e-01 4.12592411e-01\\n-1.49516314e-01 7.92879090e-02 1.21997513e-01 6.24908470e-02\\n-4.89178777e-01 -6.34780601e-02 1.59851328e-01 1.56519726e-01\\n-3.65365952e-01 -1.93382934e-01 -2.61370149e-02 -8.39069068e-01\\n2.77751356e-01 -1.96483910e-01 -1.83789834e-01 4.28413739e-03\\n-1.33506879e-01 -7.16825426e-01 2.23220050e-01 -3.37479174e-01\\n-9.39954817e-02 1.20445631e-01 -5.24209626e-02 -4.60231334e-01\\n4.69324812e-02 -1.85457870e-01 -2.42060050e-01 3.75517845e-01\\n-4.64478165e-01 4.83770162e-01 -1.05999812e-01 9.66895446e-02\\n3.64765637e-02 -3.55996817e-01 1.64747551e-01 -3.48945290e-01\\n-5.89789450e-01 -1.39084086e-01 -2.46752679e-01 -1.82666525e-01\\n6.57636300e-02 -3.82593215e-01 -2.52234578e-01 2.53670245e-01\\n2.17523098e-01 -1.46802077e-02 -1.37400115e-02 -9.63681936e-02\\n-7.00551942e-02 -3.55588824e-01 6.56580413e-03 -8.61966088e-02\\n7.09881932e-02 -6.89579025e-02 2.00589165e-01 6.29197061e-02\\n1.19616993e-01 -3.89601678e-01 5.54538906e-01 -1.68682188e-01\\n-3.06809783e-01 1.24792557e-03 7.33780563e-02 9.43949223e-02\\n3.21197242e-01 -3.50989521e-01 -4.39044051e-02 3.54584783e-01\\n1.09840475e-01 6.11055419e-02 1.46080747e-01 -1.26244545e-01\\n-1.69259116e-01 2.32137442e-01 -2.85401881e-01 2.05974907e-01\\n8.45853806e-01 1.67088106e-01 2.38585666e-01 1.34391159e-01\\n8.39565918e-02 4.57656056e-01 5.46529055e-01 -2.25517293e-03\\n-1.29752845e-01 3.12447160e-01 1.50669098e-01 -4.35711354e-01\\n6.93493634e-02 1.28947208e-02 -1.97968110e-01 -3.09555054e-01\\n5.90330958e-01 4.90019858e-01 -2.82425463e-01 -3.49679857e-01\\n-1.97711602e-01 -3.00520062e-01 1.45810097e-01 -1.61144227e-01\\n1.19397633e-01 -3.38596731e-01 5.44109046e-01 6.80506527e-02\\n1.28108531e-01 4.64357346e-01 -2.16430023e-01 -4.55005527e-01\\n-2.11410411e-02 1.91004723e-01 1.30232006e-01 2.91098982e-01\\n-9.94612500e-02 1.90864697e-01 -1.46015450e-01 1.68080077e-01\\n-1.12421088e-01 2.40977108e-02 1.79319322e-01 1.09081849e-01\\n3.93335447e-02 1.71972349e-01 4.91478622e-01 6.26627326e-01\\n4.13790524e-01 4.55568582e-01 2.59645104e-01 3.52348574e-02\\n5.60993373e-01 6.28021657e-01 4.06144470e-01 1.61185414e-01\\n1.93016534e-03 8.47265050e-02 1.19683392e-01 1.52241677e-01\\n3.89066637e-01 4.64778453e-01 1.64422452e-01 9.02072787e-01\\n3.37981194e-01 1.72050804e-01 7.30697513e-01 -5.53133965e-01\\n-3.27283233e-01 1.10821009e-01 4.16615278e-01 -3.65326375e-01\\n-1.29687712e-01 8.27245414e-02 -2.72085130e-01 1.63544104e-01\\n-4.78632867e-01 -1.54168323e-01 -7.88499564e-02 5.55769599e-04\\n1.15494542e-01 -1.12524725e-01 -1.02788232e-01 -7.23219812e-02\\n-1.29928365e-01 -1.93648413e-01 -3.86935353e-01 -8.50768089e-02\\n-3.35847855e-01 -7.75186047e-02 -2.47775507e-03 -1.59179077e-01\\n3.33594158e-02 -4.63462949e-01 -2.29433984e-01 -4.21361439e-02\\n3.65184993e-01 -1.48989260e-01 -8.34236220e-02 -6.14818707e-02\\n2.46268123e-01 3.19571108e-01 7.43293822e-01 3.76991779e-02\\n-7.48221725e-02 -1.73228398e-01 -1.45899042e-01 1.21090747e-01\\n1.84390068e-01 1.10604547e-01 -8.13226122e-03 4.78129506e-01\\n-4.45620716e-01 -9.86585468e-02 7.89838657e-02 5.06577194e-01\\n-3.99512500e-01 -4.22123075e-03 6.94549307e-02 2.73577988e-01\\n3.97349074e-02 1.31597996e-01 -1.83545277e-01 7.75311366e-02\\n-1.94439605e-01 -5.32995641e-01 3.47131670e-01 -1.01758905e-01\\n-9.28516090e-02 -3.06702033e-02 1.27778128e-01 1.36228457e-01\\n-1.92961827e-01 -2.71859895e-02 8.32091570e-02 2.73389935e-01\\n2.22592622e-01 5.62471390e-01 -2.39650309e-01 -3.03794712e-01\\n-3.17320675e-01 1.57732233e-01 -1.09182470e-01 9.25991386e-02\\n-8.90677124e-02 2.49079645e-01 1.25031799e-01 2.33983815e-01\\n2.75048584e-01 -1.40879592e-02 -1.73582301e-01 -2.87539601e-01\\n-2.54355282e-01 -2.92013526e-01 1.60708398e-01 -2.10121833e-02\\n2.35382825e-01 -4.30248767e-01 -1.49065167e-01 9.67105199e-03\\n-1.40721664e-01 -4.32542443e-01 -7.09630400e-02 -9.29209739e-02]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Software Engineer .NET – C# in Zürich Area. This role is a permanent job full time. Your main responsibilities: As an experienced and proactive SW developer, you will design and develop core components for a PC-based client-server application In a \"High Performance Software Environment\" you develop and implement concepts independently Feature development client and/or server: Analysis, conception and design, implementation and unit testing Perform design and code reviews with team members Training and support of the team members in the development work in their own area of competence You work closely together with your cooperation partners, who are composed of product managers, requirements engineers and development teams for the software instrument Your profile: 3 to 5 years of relevant work experience in the software engineering environment Practical experience with the .NET Framework and C# know-how of phase models and agile methods Ideally experience with WPF, WCF, NHibernate and Autofac High Degree in Computer Science Fluent oral and written English – German skills will be a great plus to communicate with the team If you wish to apply, please send us your resume in Word format with some references.',\n", + " 'soft_skills': '[\"Proactivity\", \"Communications\", \"Written English\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Production Management\", \"Phase (Waves)\", \"Concept Analysis\", \"Agility\", \"Wcf 4\", \"Requirements Engineering\", \"C# (Programming Language)\", \"Unit Testing\", \"Computer Science\", \"Instrumentation\", \"Idealization\", \"High Performance Computing\", \"Requirements Management\", \"Code Review\", \"Software Performance Testing\", \"Reporting Application Server\", \"Software Engineering\", \".NET Framework\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'agile java software engineer',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.78160131e-01 2.67130196e-01 5.70411026e-01 -1.30842522e-01\\n4.27903295e-01 -3.28722775e-01 1.97537974e-01 3.46200615e-01\\n-8.44845697e-02 -4.25652683e-01 -1.19350448e-01 -3.08613330e-01\\n-8.41952953e-03 1.19773164e-01 1.29989594e-01 2.47611746e-01\\n4.04780746e-01 1.38171464e-01 -9.55041274e-02 3.19136262e-01\\n1.78276554e-01 -1.57051891e-01 1.03102967e-01 6.74135029e-01\\n4.17927980e-01 7.01802000e-02 -6.03511296e-02 7.57620037e-02\\n-2.42297024e-01 -3.10805351e-01 4.87008274e-01 -3.54262851e-02\\n7.49409050e-02 -2.28499800e-01 1.24900505e-01 6.85209334e-02\\n-2.17767879e-01 8.75495002e-02 -5.37083223e-02 1.19578607e-01\\n-3.13948721e-01 -1.25577465e-01 7.07789510e-02 -1.04314327e-01\\n-2.19303936e-01 -3.89014184e-01 -7.39848893e-03 7.25653917e-02\\n1.89819425e-01 3.32725979e-02 -4.35602427e-01 3.50642622e-01\\n-2.00176999e-01 -2.84803778e-01 2.47689307e-01 5.43670714e-01\\n-1.55405909e-01 -5.20748377e-01 -3.24871689e-01 -2.50717580e-01\\n1.45558402e-01 -1.16749249e-01 8.02816227e-02 -2.44934991e-01\\n3.59537423e-01 6.29842058e-02 3.92465014e-03 3.93199325e-01\\n-7.70260811e-01 5.42437145e-03 -1.73387066e-01 -1.35564879e-01\\n-2.72316456e-01 -1.12519555e-01 -3.51108611e-01 -1.55232236e-01\\n-1.79539174e-01 4.36947197e-01 1.55413970e-01 1.08503610e-01\\n-1.17385410e-01 2.05146357e-01 -3.34686607e-01 2.76330650e-01\\n2.21717283e-01 3.08971316e-01 2.75659949e-01 2.52460808e-01\\n-4.36765432e-01 3.93524349e-01 2.42625788e-01 -3.19777071e-01\\n2.29935780e-01 1.46451071e-01 4.03820187e-01 -5.89570142e-02\\n1.41463429e-01 2.94590313e-02 -1.96779013e-01 1.65309638e-01\\n3.69472533e-01 -1.98846549e-01 -6.00538440e-02 2.01986847e-03\\n-7.43267685e-02 1.33583412e-01 4.98932041e-03 2.80165792e-01\\n-3.84351045e-01 5.49634755e-01 2.24019885e-02 -2.30682507e-01\\n-1.51326209e-01 -5.68269491e-01 -1.44323185e-01 1.39655024e-01\\n2.58465707e-02 1.59917668e-01 2.38786295e-01 2.27584794e-01\\n8.67428556e-02 9.90934074e-02 1.19210139e-01 9.16315436e-01\\n-1.28111094e-01 9.91545767e-02 -2.89951205e-01 3.57165664e-01\\n3.66935655e-02 -2.06005841e-01 2.23964259e-01 2.74577141e-01\\n1.07662916e-01 -1.02316022e-01 -1.50708601e-01 2.97133237e-01\\n4.31279764e-02 -3.11728954e-01 -2.41691485e-01 1.25943303e-01\\n-1.38290644e-01 -5.21051705e-01 6.39917731e-01 -3.27519234e-03\\n8.41241106e-02 6.24339879e-02 9.60209817e-02 -4.58950028e-02\\n-1.48156270e-01 1.59889594e-01 6.85542300e-02 1.09935053e-01\\n-2.69257754e-01 -2.52413243e-01 -3.06875736e-01 2.57043064e-01\\n-2.62502342e-01 1.46533608e-01 -1.23867430e-01 -4.90918569e-02\\n3.82819980e-01 6.09668866e-02 -2.25502297e-01 2.75058091e-01\\n-7.06931204e-02 2.13811733e-03 -1.17167935e-01 3.02860171e-01\\n-1.40975207e-01 1.25141680e-01 -2.06211321e-02 -1.34711638e-01\\n5.17798424e-01 2.26317540e-01 7.69846588e-02 -8.40425566e-02\\n3.47309917e-01 -3.58686633e-02 9.04811770e-02 -4.29619988e-03\\n-7.37084091e-01 4.08807814e-01 -4.82204109e-02 -1.06649905e-01\\n5.75965829e-02 -9.21495818e-03 1.65001914e-01 -2.82155931e-01\\n4.18692678e-02 -1.07451789e-01 -3.57686788e-01 -1.90091759e-01\\n-1.58616319e-01 -7.49249607e-02 4.68324453e-01 -3.91312480e-01\\n-1.26531288e-01 1.85602993e-01 -5.73490024e-01 1.19393408e-01\\n3.14777106e-01 1.93342060e-01 1.45430520e-01 1.44570008e-01\\n-1.11640222e-01 -5.11924684e-01 2.11566716e-01 -3.65166396e-01\\n-2.78891236e-01 2.79641569e-01 -3.12346190e-01 1.68257028e-01\\n2.17111349e-01 8.96758772e-03 -1.37938276e-01 1.41807094e-01\\n-4.42761257e-02 -9.20079127e-02 2.23289952e-01 9.25437510e-02\\n3.52800697e-01 -1.32203652e-02 -3.70376706e-01 5.63992143e-01\\n-2.03071401e-01 3.88557166e-01 1.52892739e-01 -8.03860903e-01\\n4.08387452e-01 3.94792020e-01 3.52213718e-02 -2.81041741e-01\\n6.98131740e-01 -2.74152398e-01 -4.28784601e-02 8.25850591e-02\\n-4.21643019e-01 -2.94504732e-01 1.57066926e-01 -1.86448097e-01\\n-2.19658628e-01 4.22987640e-01 5.47348894e-02 1.29318222e-01\\n2.49792367e-01 -1.30920902e-01 -1.07071862e-01 1.05863988e-01\\n-1.06433161e-01 -2.63647377e-01 -3.72839838e-01 2.37776581e-02\\n2.50276998e-02 -4.76436049e-01 -5.49099036e-02 -5.58836579e-01\\n-2.46918142e-01 -3.86386603e-01 -2.47049555e-01 2.15007216e-01\\n1.35691121e-01 1.16965301e-01 5.47121540e-02 -4.89609390e-02\\n-2.06927404e-01 -5.19196987e-01 1.23222694e-01 4.43304814e-02\\n3.43467891e-01 1.21826857e-01 -3.18867862e-02 -2.22710818e-02\\n3.42824534e-02 7.05453515e-01 -2.11628839e-01 6.15694211e-04\\n6.91623762e-02 8.28913972e-02 1.60337873e-02 -1.08357929e-01\\n-1.22740283e-04 3.91189247e-01 -3.09162945e-01 -1.56578310e-02\\n-1.42235488e-01 3.83666381e-02 3.65968645e-01 -6.36216179e-02\\n-3.55871111e-01 -3.20522130e-01 -1.06393434e-01 1.74282387e-01\\n-5.89847922e-01 -1.48637310e-01 6.87067688e-01 1.49589032e-01\\n6.67906851e-02 2.06769422e-01 1.42071083e-01 -4.09134775e-02\\n-2.27354795e-01 -1.03935920e-01 1.52507871e-01 1.56669114e-02\\n1.29046485e-01 1.95706829e-01 -1.56659871e-01 -5.51076889e-01\\n-3.72830391e+00 -1.71324745e-01 8.98214504e-02 -3.29631805e-01\\n1.52027756e-01 -1.86399892e-01 8.68831202e-02 -1.50878102e-01\\n-1.73397198e-01 4.08666395e-02 -1.14552237e-01 -1.56286731e-01\\n2.08279207e-01 1.94536641e-01 1.71355367e-01 2.57227272e-01\\n2.25260362e-01 -1.87849090e-01 4.88970848e-03 2.89439023e-01\\n-2.24580601e-01 -6.16548777e-01 2.29973063e-01 -6.47037476e-02\\n3.83559078e-01 3.53073716e-01 -4.00153965e-01 -1.12623185e-01\\n-2.75743514e-01 -1.97374463e-01 1.24730840e-01 -2.79241592e-01\\n3.31601012e-03 2.94604331e-01 1.66081578e-01 -8.70042741e-02\\n2.96152383e-01 -3.31744552e-01 6.27479628e-02 -3.89241219e-01\\n1.74452081e-01 -5.59645474e-01 -7.03067780e-02 5.43996431e-02\\n6.39945209e-01 -3.76391053e-01 1.90891057e-01 1.02454059e-01\\n7.95902759e-02 2.17858970e-01 -2.01346632e-02 -1.50116846e-01\\n-2.19345093e-01 -2.33722508e-01 -1.00256942e-01 -1.90459728e-01\\n5.33929169e-01 5.87556541e-01 -2.27276981e-01 8.02583061e-03\\n-6.55508935e-02 -3.36639315e-01 -4.93834257e-01 -3.57855290e-01\\n-2.26524517e-01 -1.04346208e-01 -5.96624136e-01 -5.67752659e-01\\n-1.71218097e-01 -9.10449252e-02 -4.40216959e-02 4.14147913e-01\\n-1.93744436e-01 -4.15538788e-01 -4.90681380e-02 -3.85631979e-01\\n7.86114857e-02 -4.94357534e-02 -5.37771452e-03 -1.25202924e-01\\n-2.06014395e-01 -5.09218276e-01 -7.52145275e-02 2.49828398e-02\\n-6.47674650e-02 -1.37344629e-01 3.04839045e-01 -9.76829082e-02\\n-3.16554099e-01 -4.87523109e-01 3.91679525e-01 1.28040938e-02\\n2.58817673e-01 2.10235849e-01 2.48568192e-01 1.72663972e-01\\n2.56440341e-01 -2.26009741e-01 1.26792520e-01 -4.11793888e-01\\n1.35020390e-01 7.07585961e-02 4.82337266e-01 -1.07088022e-01\\n1.18930280e-01 1.67146772e-01 -2.64577121e-01 -2.94025570e-01\\n3.76370728e-01 -3.30166705e-02 1.61806285e-01 -3.10271561e-01\\n3.22231591e-01 -1.36683941e-01 -2.80664504e-01 7.92777613e-02\\n3.83476205e-02 4.71915632e-01 -8.74610171e-02 -3.69709104e-01\\n-9.62346494e-02 5.35097003e-01 -1.88177824e-01 -1.67427104e-04\\n-2.11830974e-01 3.20973620e-02 -2.94778228e-01 3.28286707e-01\\n-4.83244881e-02 -1.06635749e-01 -3.32567900e-01 -1.86464563e-01\\n-6.96215853e-02 2.08774537e-01 2.94489890e-01 1.00182079e-01\\n-2.47118231e-02 -3.94922018e-01 -4.75246124e-02 8.75485912e-02\\n2.56851375e-01 2.84403503e-01 1.18227273e-01 -7.67369345e-02\\n8.29652101e-02 3.35600406e-01 -1.71246380e-01 1.55224189e-01\\n-3.13721806e-01 6.39763102e-02 -4.25272524e-01 -4.02639478e-01\\n-2.31986403e-01 -3.06628525e-01 -6.01680838e-02 2.21927524e-01\\n2.32626144e-02 -2.39521964e-03 2.18735505e-02 -3.03672373e-01\\n2.68668950e-01 6.27487525e-02 2.26384953e-01 2.74107873e-01\\n1.87287282e-03 4.94118541e-01 -7.84384727e-04 -3.94915901e-02\\n-3.00324678e-01 1.10802494e-01 -2.20425442e-01 -8.29102173e-02\\n3.37837753e-03 -4.44272190e-01 -1.32209752e-02 3.26972336e-01\\n5.79900220e-02 -2.86454082e-01 -5.97493835e-02 2.35195473e-01\\n-7.68666938e-02 -4.48539853e-01 -2.15840921e-01 1.13560982e-01\\n3.29568952e-01 5.07164150e-02 2.91123986e-01 -5.11142612e-01\\n8.33519250e-02 9.73212793e-02 -1.15607589e-01 5.45073807e-01\\n3.05423364e-02 3.50739323e-02 -5.52040674e-02 -3.14175189e-01\\n3.19339901e-01 -2.50681460e-01 3.33448537e-02 -8.31925198e-02\\n1.62728414e-01 -1.33304015e-01 -3.06916803e-01 -2.94076256e-03\\n3.52517673e-04 -1.00440748e-01 2.15996522e-02 -4.09355573e-02\\n-4.43158373e-02 2.01369636e-02 -5.02475560e-01 -3.23775202e-01\\n-2.57070422e-01 -9.67437550e-02 2.19932687e-03 -4.00352716e-01\\n-3.64234149e-02 -4.19948027e-02 -4.77411181e-01 3.94175589e-01\\n-1.46072611e-01 -4.90791455e-04 1.55977502e-01 -8.61729905e-02\\n-3.73163462e-01 -3.83569337e-02 2.16491953e-01 2.10918382e-01\\n-2.16345936e-01 -2.59070873e-01 -6.24600127e-02 -1.10474896e+00\\n2.63509244e-01 -2.46847384e-02 -7.20799789e-02 5.93402609e-02\\n-9.16685835e-02 -5.03946543e-01 1.96820080e-01 -4.12676513e-01\\n-5.27056418e-02 1.51656559e-02 -1.65168583e-01 -4.74302292e-01\\n-4.89118919e-02 5.62123209e-02 -2.26855174e-01 3.94708395e-01\\n-3.31402868e-01 3.31574947e-01 -1.03666954e-01 5.84355146e-02\\n-1.45087034e-01 -2.23123193e-01 1.06916204e-01 -4.24630284e-01\\n-3.09288025e-01 -2.31434837e-01 -2.15537310e-01 -1.70070767e-01\\n-8.82015750e-02 -2.00532913e-01 -3.83642726e-02 1.08000532e-01\\n2.51496464e-01 1.73931494e-01 -5.82006983e-02 -2.49837428e-01\\n1.08384199e-01 -5.00939012e-01 -4.36579511e-02 -2.82342821e-01\\n-6.20780326e-02 -1.26743168e-01 1.16164163e-01 1.11161567e-01\\n6.64132312e-02 -4.67193484e-01 3.77616435e-01 -1.61529690e-01\\n-2.80291766e-01 6.84437156e-02 2.38526743e-02 7.24026784e-02\\n3.74615192e-01 -4.14081722e-01 -9.04863402e-02 2.89408296e-01\\n1.19639106e-01 5.71670868e-02 2.04903811e-01 -4.17599566e-02\\n-1.32050589e-01 3.47151548e-01 -3.50301951e-01 9.01031047e-02\\n5.61449945e-01 8.06979015e-02 1.73084512e-01 2.13066146e-01\\n2.37463295e-01 3.62316310e-01 4.74107653e-01 -5.36775813e-02\\n-5.19113988e-02 4.11155611e-01 7.61439726e-02 -6.19301081e-01\\n1.48386478e-01 4.43577990e-02 -3.26468527e-01 -2.10809857e-01\\n6.45228148e-01 4.67015415e-01 -2.88062423e-01 -2.36867055e-01\\n-2.73070455e-01 -2.52777070e-01 8.47028643e-02 -7.24041313e-02\\n2.25451529e-01 -2.22852856e-01 4.90953773e-01 -1.77075304e-02\\n1.87141493e-01 4.55277324e-01 -2.10530549e-01 -3.59930068e-01\\n3.67894806e-02 2.05321908e-01 8.33088607e-02 2.98135519e-01\\n-2.14313731e-01 2.41460413e-01 -1.35950856e-02 2.01801136e-01\\n-7.62269348e-02 1.24031857e-01 6.46254346e-02 8.95379260e-02\\n2.02929661e-01 -1.92856491e-02 2.75060028e-01 4.51842755e-01\\n3.41969728e-01 4.15778846e-01 2.44980484e-01 9.40669477e-02\\n4.63562518e-01 4.92498696e-01 4.45984185e-01 2.47861713e-01\\n-1.06808068e-02 4.38526273e-02 1.32200215e-02 -1.39781699e-01\\n2.45464474e-01 3.39424640e-01 -6.48410097e-02 8.55444133e-01\\n4.43055153e-01 2.56891429e-01 7.40794480e-01 -5.58294594e-01\\n-3.70125920e-01 -1.38275921e-01 3.91056746e-01 -3.96575600e-01\\n-1.15958788e-01 9.43519846e-02 -2.07092538e-01 1.77408889e-01\\n-4.14318413e-01 -2.09130749e-01 -7.58591145e-02 3.29313502e-02\\n1.40814796e-01 -6.35308400e-02 -2.50638902e-01 -1.40360564e-01\\n-2.42124721e-01 -1.93662345e-01 -5.09034753e-01 6.81995153e-02\\n-1.54312879e-01 -2.45305330e-01 -1.49871469e-01 -1.85353816e-01\\n-4.32178490e-02 -4.06291187e-01 -1.60035998e-01 1.19264856e-01\\n1.79342508e-01 -1.68786258e-01 -1.27332389e-01 -1.46234676e-01\\n2.40853474e-01 2.32593626e-01 5.55238843e-01 2.75885966e-02\\n8.89078528e-02 -2.35266656e-01 -1.19881399e-01 1.21910468e-01\\n1.81221217e-01 1.08767092e-01 3.05743776e-02 3.64834219e-01\\n-3.27006608e-01 -2.13956803e-01 -3.76910903e-02 4.96911436e-01\\n-4.61899966e-01 6.40120506e-02 2.65698172e-02 2.82695562e-01\\n3.71912271e-02 1.06316939e-01 -1.28976256e-01 6.62880391e-02\\n-1.35359108e-01 -4.73220557e-01 2.51688987e-01 -4.41740490e-02\\n-2.14302480e-01 2.74957735e-02 6.89772815e-02 1.31073162e-01\\n-2.23782688e-01 -1.64586231e-01 1.17825065e-02 1.20771073e-01\\n2.76376367e-01 2.89230853e-01 -1.85092300e-01 -3.79303008e-01\\n-3.58382463e-01 1.56327546e-01 -3.67394924e-01 1.85198903e-01\\n-6.29785135e-02 2.41257101e-01 1.21135108e-01 4.42162305e-02\\n2.33979389e-01 -5.77633129e-03 -9.62941125e-02 -1.94045275e-01\\n-2.80786693e-01 -2.05623299e-01 8.68445262e-02 4.49230149e-02\\n1.50801226e-01 -3.96348894e-01 -1.31439054e-02 -1.31574750e-01\\n-1.96709916e-01 -3.87406707e-01 -4.14424241e-02 -1.99492127e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for an Agile Java Software Engineer. This role is permanent position based in Basel Canton. Your Role: < >nsure high-quality functionality of applications. Independently develop solution variants in coordination with customers. Further develop applications within a Scrum team. Undertake programming with Java8. Implement backend service development with Java EE. Utilize Angular in a digitalized environment Integrate different systems in a high-performance & flexible manner. Your Skills: Several years of software development experience. Skills & experience in Java8, Java EE & Angular. A convincing performance record in successfully completed software projects. Experienced in agile methodologies. Scrum Master experience is considered a plus Ideally experienced in testing. Very interested in software architecture. Your Profile: University degree in computer science. Committed, ambitious & enthusiastic personality. Convincing, strong communication skills & a team-player. Innovative, analytical & both solution & service orientated. Entrepreneurial thinking, goal-driven & a strong willingness to learn. A high affinity for agility & fun in the development of high-quality software. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Coordinating\", \"Service-Orientation\", \"Willingness To Learn\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Agility\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Integrated Language Environments\", \"High Performance Computing\", \"Service Development Studio\", \"Software Quality Management\", \"Java EE Application\", \"Component Object Model (COM)\", \"Scrum (Software Development)\", \"Idealization\", \"Software Engineering\", \"Agile Methodology\", \"Digitization\", \"Personalization\", \"Software Architecture\", \"Receivables\", \"Angular (Web Framework)\", \"Software Development\", \"Software Project Management\", \"Java (Programming Language)\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Portuguese', 'Estonian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'ml engineer (m/w) 100%',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.70086816e-01 3.80971551e-01 4.20473903e-01 -3.19519788e-02\\n4.96490806e-01 -1.21971823e-01 8.27693865e-02 3.54645789e-01\\n-1.40803471e-01 -3.20467621e-01 -7.79657662e-02 -2.68107086e-01\\n-1.44926891e-01 -4.87525016e-02 1.75634220e-01 4.62267637e-01\\n2.75467515e-01 5.40910177e-02 -1.19416997e-01 4.48270649e-01\\n1.00455798e-01 -5.58483228e-02 -3.22290584e-02 6.42925858e-01\\n3.57693881e-01 -3.20474338e-03 -5.53328618e-02 6.48745298e-02\\n-2.89077044e-01 -2.72470236e-01 3.92766088e-01 6.94912747e-02\\n-1.05534546e-01 -3.18338811e-01 1.83309421e-01 2.32345507e-01\\n-1.71927586e-01 -3.47492355e-03 -1.51967639e-02 3.89504582e-01\\n-3.65352273e-01 -3.67182612e-01 7.33734965e-02 -6.00571223e-02\\n-3.02102089e-01 -3.67828608e-01 -2.44213194e-02 -5.97167313e-02\\n1.67759910e-01 1.14295363e-01 -5.10656655e-01 3.19817752e-01\\n-2.06172809e-01 -1.67000324e-01 4.13135141e-01 6.75123632e-01\\n1.04644515e-01 -5.71001530e-01 -2.61829853e-01 -3.49349052e-01\\n-5.59399463e-02 -1.04149327e-01 7.66347647e-02 -2.09289640e-01\\n3.76745075e-01 1.18026948e-02 -3.27682383e-02 4.32741761e-01\\n-8.67682815e-01 -1.98955193e-01 -3.20842803e-01 -1.83004871e-04\\n-4.91612136e-01 8.06856342e-03 -3.43222499e-01 -1.83346912e-01\\n-4.00991626e-02 3.49809945e-01 -1.56845972e-02 -4.15987074e-02\\n-1.32109880e-01 2.96177208e-01 -6.96085393e-02 1.85838997e-01\\n3.47714037e-01 1.97782204e-01 2.45165050e-01 3.65878969e-01\\n-3.57439369e-01 3.13613325e-01 1.43637627e-01 -2.51134247e-01\\n1.74418420e-01 1.78553492e-01 5.74271321e-01 1.33966953e-01\\n-4.40234989e-02 2.25927219e-01 -2.39592627e-01 2.66195416e-01\\n2.48611316e-01 -3.05007368e-01 4.45741378e-02 -1.27578443e-02\\n-1.04707763e-01 -1.42836422e-02 -1.40691055e-02 3.09269428e-01\\n-2.29396403e-01 4.97942179e-01 2.22906455e-01 -2.07561016e-01\\n-2.70024762e-02 -7.02769101e-01 -2.43445545e-01 8.94993618e-02\\n-5.86841032e-02 3.05449575e-01 2.03223646e-01 2.27380827e-01\\n1.41084746e-01 3.12806107e-02 1.94966346e-01 9.14736509e-01\\n-2.35278010e-02 9.58619565e-02 -2.44279295e-01 3.29928786e-01\\n2.59672850e-01 -2.51914829e-01 1.73515931e-01 3.03535581e-01\\n1.33575678e-01 -1.30867079e-01 -2.31166825e-01 2.87327647e-01\\n-1.35551661e-01 -1.98030129e-01 -4.16552216e-01 1.15430631e-01\\n-3.79517794e-01 -4.66771960e-01 6.01349950e-01 3.54146026e-03\\n2.50818312e-01 -5.98558858e-02 -1.31791517e-01 4.08140011e-02\\n-7.31083080e-02 3.42770964e-01 4.63288091e-02 2.14687705e-01\\n-4.09591585e-01 -2.15737179e-01 -2.86147833e-01 4.24628407e-01\\n-1.75306648e-01 1.69809148e-01 -1.97459057e-01 -7.45181963e-02\\n3.03102314e-01 1.27285644e-02 -3.68779212e-01 1.60358354e-01\\n-1.06624082e-01 -2.46111989e-01 -1.35133848e-01 3.19934070e-01\\n-1.18711896e-01 2.11492240e-01 -7.03458041e-02 -3.58275384e-01\\n6.19329274e-01 1.98759973e-01 4.18405868e-02 -1.17964454e-01\\n3.83150250e-01 -1.76877186e-01 2.86014795e-01 1.14152811e-01\\n-6.04768753e-01 3.45751345e-01 -4.88148928e-02 9.30373743e-02\\n3.94109972e-02 -1.47593617e-02 4.42537427e-01 -3.48495990e-01\\n-1.37111738e-01 -1.73836604e-01 -3.49382252e-01 -2.84886152e-01\\n-2.83463925e-01 -4.28603105e-02 5.42217374e-01 -2.91805893e-01\\n-1.70837864e-01 2.38095641e-01 -5.91656148e-01 -5.62228784e-02\\n2.27086827e-01 1.96221620e-01 9.31138396e-02 1.22312836e-01\\n-1.71122268e-01 -5.73524714e-01 7.58262491e-03 -4.99593824e-01\\n-4.36966270e-01 -2.84141935e-02 -1.69813380e-01 1.66465253e-01\\n1.68299843e-02 1.17226139e-01 -1.42943636e-01 1.34931907e-01\\n-3.32197428e-01 3.54486667e-02 2.27841929e-01 1.40371844e-01\\n2.65406609e-01 -4.18666825e-02 -4.79741126e-01 4.63826060e-01\\n-1.59772232e-01 5.60464144e-01 2.56064534e-01 -8.55920613e-01\\n4.82812762e-01 3.29257220e-01 4.25753444e-02 -2.77834743e-01\\n4.99335736e-01 -3.77027392e-01 -4.88801040e-02 2.29044572e-01\\n-1.82948753e-01 -2.44369075e-01 2.48131260e-01 -2.61990309e-01\\n-3.50075543e-01 5.70087016e-01 1.64720967e-01 4.27931659e-02\\n3.14119965e-01 -3.20830584e-01 -9.77067798e-02 2.67082658e-02\\n-1.24545783e-01 -2.02700675e-01 -2.64421493e-01 5.74229918e-02\\n-3.63687798e-02 -5.23608685e-01 -1.55849203e-01 -3.44840080e-01\\n-1.66499302e-01 -3.32115293e-01 -1.93825483e-01 3.83826464e-01\\n1.95887238e-01 1.85614973e-01 2.37496756e-02 -3.38730253e-02\\n-1.45324796e-01 -7.18686998e-01 -1.71705887e-01 8.46978128e-02\\n2.94971108e-01 2.65564471e-01 1.16057262e-01 -1.62802905e-01\\n1.00284806e-02 4.82544869e-01 -3.35546106e-01 -2.98395246e-01\\n6.43214118e-03 1.14974916e-01 -7.95153454e-02 -1.12058103e-01\\n1.78512651e-02 4.35807317e-01 -1.44692793e-01 1.17431536e-01\\n-2.19720945e-01 7.25042447e-02 3.32706422e-01 -4.57516871e-02\\n-2.81064063e-01 -2.06688017e-01 2.92199682e-02 2.39058852e-01\\n-6.22030556e-01 -2.19870046e-01 6.00659370e-01 1.65724695e-01\\n1.84423923e-01 1.74246252e-01 3.72684509e-01 -8.90726000e-02\\n-1.85466439e-01 -2.01309785e-01 1.28056049e-01 1.40393957e-01\\n5.15067428e-02 5.19518964e-02 -1.50649518e-01 -6.66754246e-01\\n-3.17780757e+00 -2.08118245e-01 1.47109613e-01 -2.93338031e-01\\n1.98284999e-01 -9.11581442e-02 4.37735245e-02 -3.16270366e-02\\n-3.44658732e-01 6.89786812e-03 -1.21471636e-01 -1.44543573e-01\\n-1.80374403e-02 3.43013704e-01 1.22923799e-01 1.54132828e-01\\n5.94719723e-02 -2.86098242e-01 -2.23526191e-02 4.58852023e-01\\n5.00363223e-02 -7.66598344e-01 1.03047639e-01 9.79297832e-02\\n1.97651833e-01 2.22219720e-01 -4.05469596e-01 -1.13835745e-01\\n-2.48507738e-01 -2.23659351e-01 1.06786966e-01 -2.96101034e-01\\n-1.70097396e-01 2.43107855e-01 4.88257222e-03 -4.27858457e-02\\n8.29575062e-02 -1.77940384e-01 1.12630576e-01 -3.38775367e-01\\n8.24554183e-04 -6.64513469e-01 -5.86700365e-02 -1.40795961e-01\\n7.20884740e-01 -2.63226211e-01 7.99585730e-02 1.90574229e-01\\n8.83229971e-02 2.16548339e-01 -7.65146222e-03 -3.54011916e-02\\n-3.47729355e-01 -3.32003415e-01 -5.34894578e-02 -2.12930962e-01\\n5.01614213e-01 6.09144092e-01 -1.59890190e-01 6.13931939e-02\\n8.07933360e-02 -3.67689937e-01 -4.00821090e-01 -4.54503357e-01\\n-2.57901251e-01 -1.63509652e-01 -8.44923913e-01 -5.71388543e-01\\n-6.05140552e-02 -4.27980907e-02 -1.10656552e-01 5.91831863e-01\\n-3.48186791e-01 -4.01039600e-01 -1.04650736e-01 -4.99854952e-01\\n7.54038766e-02 -2.04576701e-01 1.55871406e-01 -6.77136779e-02\\n-3.21570784e-01 -5.12976766e-01 5.63575812e-02 1.65610127e-02\\n-1.45990938e-01 -1.12339549e-01 -7.16003925e-02 -3.00049037e-01\\n-3.59791070e-01 -4.32382286e-01 4.95138437e-01 2.40664501e-02\\n3.02692801e-01 1.41528517e-01 3.53379220e-01 1.22026652e-01\\n3.73378217e-01 -1.32627130e-01 5.72004020e-02 -4.35928702e-01\\n4.09078598e-02 -1.12649336e-01 6.34115696e-01 -3.37113231e-01\\n1.48419470e-01 1.63386270e-01 -2.78670907e-01 -1.15452349e-01\\n5.02982199e-01 9.07609835e-02 -2.15995722e-02 -1.63485870e-01\\n3.37366551e-01 -4.57940280e-01 -2.37951368e-01 1.62142664e-01\\n-6.42016232e-02 6.71898961e-01 -2.43268739e-02 -4.46440130e-01\\n-3.90914202e-01 4.44445550e-01 -9.87946913e-02 -2.03304857e-01\\n-5.03679179e-02 1.46078184e-01 -9.81300771e-02 2.74610639e-01\\n4.88964133e-02 -2.07996354e-01 -3.12043071e-01 -4.82249819e-02\\n-1.03185065e-01 2.11407155e-01 2.62599587e-01 1.14068471e-01\\n-1.66054562e-01 -2.06963867e-01 -1.60257161e-01 1.30786970e-01\\n3.40514004e-01 2.02168614e-01 1.29951552e-01 -2.51544148e-01\\n-2.82596163e-02 2.53355563e-01 -2.83629835e-01 1.85662478e-01\\n-2.68037885e-01 8.07290524e-02 -5.10908782e-01 -2.25130469e-01\\n-1.29202947e-01 -3.30015749e-01 1.59133494e-01 3.67569000e-01\\n1.31788269e-01 -5.67589467e-03 1.12466194e-01 -5.02796412e-01\\n4.32009250e-01 1.14571221e-01 1.96971774e-01 1.97237313e-01\\n-3.23210545e-02 5.50676823e-01 3.50391604e-02 -1.46520674e-01\\n-1.25229686e-01 -7.46460855e-02 -2.44647890e-01 -3.09192896e-01\\n2.35029850e-02 -4.40770894e-01 -1.29453227e-01 4.26164985e-01\\n1.14396177e-01 -2.92615533e-01 -3.11118156e-01 1.44922301e-01\\n6.29315823e-02 -3.70312631e-01 -2.45376319e-01 2.50884015e-02\\n2.86033809e-01 5.03042825e-02 4.12465632e-01 -5.12910843e-01\\n-7.17492821e-03 -7.85176307e-02 -1.62483186e-01 4.93036717e-01\\n1.72859520e-01 3.60001177e-02 -2.57801086e-01 -1.21975370e-01\\n4.59340215e-01 7.43503794e-02 -2.75155474e-02 -3.17367539e-02\\n7.06683397e-02 -3.11927378e-01 -3.77176642e-01 -9.43722278e-02\\n1.59881786e-02 -1.67786881e-01 7.56854787e-02 1.81688834e-02\\n9.54895392e-02 2.70237457e-02 -6.06280684e-01 -3.82379919e-01\\n-2.73669243e-01 -7.09901303e-02 1.04973605e-02 -4.02967423e-01\\n-1.29361331e-01 5.25565855e-02 -6.03052258e-01 2.30757833e-01\\n-2.09122866e-01 -3.30351144e-02 1.37613282e-01 2.91433521e-02\\n-3.18615645e-01 -2.37179950e-01 4.32098508e-02 1.19254783e-01\\n-2.68173575e-01 -2.25296944e-01 -4.74914424e-02 -8.47725928e-01\\n1.34768784e-01 3.66707193e-03 -4.79419976e-02 7.16634020e-02\\n4.37627407e-03 -6.41135991e-01 1.23642839e-01 -4.26440150e-01\\n3.84621248e-02 6.15465753e-02 -1.57190844e-01 -3.95706862e-01\\n1.56553477e-01 -5.56020737e-02 -2.47616708e-01 3.83070320e-01\\n-4.71092165e-01 3.48306865e-01 1.31987194e-02 1.65715784e-01\\n2.23480687e-02 -3.83183151e-01 1.45570233e-01 -2.65538394e-01\\n-3.66449594e-01 -1.09009907e-01 -3.03128332e-01 -1.47740066e-01\\n-1.69112775e-02 -1.87749416e-01 -2.37731710e-01 6.92178681e-02\\n2.96515197e-01 1.20546348e-01 -4.54048142e-02 -2.20440567e-01\\n1.36543274e-01 -3.04501712e-01 1.27690047e-01 -3.23867947e-01\\n2.81314719e-02 -1.21010959e-01 1.48146734e-01 -7.84917325e-02\\n7.03247860e-02 -1.67408258e-01 5.39519489e-01 -1.94493815e-01\\n-3.92556667e-01 -1.24493867e-01 1.49878666e-01 -6.67787194e-02\\n3.10907573e-01 -4.45336372e-01 4.47199419e-02 2.23785147e-01\\n3.29212733e-02 2.86584292e-02 2.73108393e-01 -9.90170091e-02\\n-1.02034204e-01 1.20762847e-01 -4.72609073e-01 7.93663859e-02\\n6.99465930e-01 1.91495568e-01 9.95411873e-02 1.27759904e-01\\n9.66333374e-02 3.99248868e-01 5.48193097e-01 7.22123717e-04\\n-7.33302757e-02 3.61180067e-01 7.71671236e-02 -4.28004354e-01\\n-1.48752362e-01 -1.96678787e-02 -2.27286220e-01 -3.05529535e-01\\n6.49639666e-01 4.02409732e-01 -3.37697238e-01 -2.84022242e-01\\n-9.03467089e-02 -2.27738112e-01 2.29096070e-01 -1.97814293e-02\\n1.75782852e-02 -1.32459566e-01 6.84181869e-01 -2.64978707e-02\\n2.40939558e-01 6.09094739e-01 -2.06968009e-01 -4.36731964e-01\\n-3.90274003e-02 2.53270000e-01 7.64437467e-02 3.85360509e-01\\n-1.71747908e-01 2.84050733e-01 -3.46524604e-02 9.07286927e-02\\n-5.74894212e-02 8.91892686e-02 1.77369297e-01 6.64197505e-02\\n2.36310244e-01 1.36450619e-01 3.17821443e-01 5.76227129e-01\\n2.46338889e-01 4.52660263e-01 2.40938365e-01 8.78643766e-02\\n3.92644674e-01 5.99848926e-01 4.33827937e-01 1.72039062e-01\\n-5.91651872e-02 1.42034441e-01 1.46883816e-01 -6.55285642e-02\\n4.15433437e-01 3.26483160e-01 2.36779124e-01 9.04341161e-01\\n3.33564013e-01 2.99606621e-01 7.60248005e-01 -7.54629910e-01\\n-3.55033398e-01 6.95426390e-03 6.14870965e-01 -2.34401256e-01\\n-1.77287549e-01 9.64696929e-02 -2.55692452e-01 1.89290762e-01\\n-5.09353280e-01 -1.23376638e-01 -2.03100890e-02 -2.23057549e-02\\n1.04556940e-01 -2.04312541e-02 -1.73898458e-01 -6.40488341e-02\\n-2.41232261e-01 -1.58376664e-01 -4.06936139e-01 -2.07790017e-01\\n-3.69006574e-01 -9.29264948e-02 -9.10209566e-02 -1.20330751e-01\\n-1.62815526e-01 -3.18663746e-01 -9.06132534e-02 1.45808430e-02\\n3.92246604e-01 -1.85854256e-01 -1.18999466e-01 -1.57420203e-01\\n1.12480395e-01 2.70107508e-01 5.67641020e-01 -7.00156167e-02\\n2.31339276e-01 -1.48571253e-01 -1.45071864e-01 1.87175367e-02\\n8.14054012e-02 4.39925632e-03 1.13332294e-01 5.52565217e-01\\n-3.88022453e-01 -5.60092628e-02 -5.11673046e-03 3.14553350e-01\\n-3.51074129e-01 -1.16156533e-01 5.45472726e-02 3.16170007e-01\\n-3.64396982e-02 1.51962906e-01 -3.05470765e-01 1.26629665e-01\\n-1.21590830e-01 -5.81356168e-01 4.96135890e-01 -2.57543981e-01\\n-6.33914694e-02 2.33347595e-01 2.35786304e-01 1.57750547e-01\\n-2.35165000e-01 -1.14835128e-01 -8.77784044e-02 2.72812665e-01\\n8.47944841e-02 3.64898413e-01 -2.43103832e-01 -3.05341899e-01\\n-2.44102135e-01 3.02914500e-01 -1.27009928e-01 6.82922751e-02\\n-1.41470879e-01 3.72280270e-01 1.86334714e-01 1.40020147e-01\\n3.08964372e-01 3.21111977e-02 -2.21415401e-01 -2.39720806e-01\\n-1.26673579e-01 -3.70165348e-01 5.99129647e-02 5.63846976e-02\\n1.72840729e-01 -2.71302760e-01 -7.79972747e-02 -1.87957153e-01\\n-2.20052153e-01 -4.12251204e-01 -2.48407051e-01 4.53460813e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: Leading in development and improvement of our machine learning features Research, evaluate and implement algorithms to solve the challenges of our customers Design and implement code with a focus on robustness, scalability, reliability and performance Work together in small, highly motivated, interdisciplinary teams and bring Machine Learning, Natural Language Processing and Chatbots to the cloud Ensure high quality of our software products with Unit-, Integration- and End-to-End-Tests Your profile: BS/MS degree in Computer Science, Mathematics or a similar technical field of study or equivalent practical experience Substantial experience with machine learning models Experience with one or more general purpose programming languages including but not limited to: Python, JavaScript, Java 8+ (Spring, Hibernate/JPA), Ruby or Go Good knowledge of micro-service and REST API architectures Technical competency in Machine Learning/Artificial Intelligence (Statistical/Predictive Modeling/Natural Language Processing) Ability to efficiently get familiar with code bases, and to design and implement new features Very good communication (written and spoken) in German and English Valid work permission for Switzerland or Swiss/EU citizenship Benötigte Skills Machine Learning Python Python JavaScript JAVA Spring Hibernate Ruby Go Englisch Mathematik',\n", + " 'soft_skills': '[\"Research\", \"Written Communication\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"KM Programming Language\", \"Natural Language Processing\", \"Computer Science\", \"Statistics\", \"Machine Learning\", \"Hibernate (Java)\", \"Ruby (Programming Language)\", \"Feature Learning\", \"Python (Programming Language)\", \"SARS Software Products\", \"Limiter\", \"Java 8\", \"Machine Learning Methods\", \"JavaScript (Programming Language)\", \"Artificial Intelligence\", \"Scalability\", \"Predictive Modeling\", \"Chatbot\", \"Algorithms\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Pushto', 'Kwanyama', 'Limburgish', 'Tagalog']\"},\n", + " {'company_id': '106',\n", + " 'job_title': 'clinical application product manager (oncology/hematology)',\n", + " 'location': 'Saint-Sulpice',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.sophiagenetics.com',\n", + " 'jobdescription_embedded': '[[-1.71980947e-01 2.12172270e-01 4.93262827e-01 -8.35595876e-02\\n6.85821593e-01 -7.34638795e-02 -4.00553010e-02 2.88224131e-01\\n9.20472816e-02 -3.07548851e-01 -1.04915000e-01 -3.54323745e-01\\n1.02588527e-01 1.96789667e-01 1.08552806e-01 4.38927948e-01\\n2.55895317e-01 4.43635844e-02 -6.34952635e-02 2.59390622e-01\\n1.46991193e-01 -1.77771538e-01 1.41151577e-01 7.18588173e-01\\n4.29732352e-01 -4.58444618e-02 -1.22463748e-01 4.03373577e-02\\n-4.50121239e-02 -2.41308764e-01 4.46066082e-01 2.01232582e-02\\n-1.36722803e-01 -1.99841335e-01 1.94732353e-01 1.33195743e-01\\n-2.08103329e-01 4.70130779e-02 -1.96682140e-01 1.74197033e-01\\n-6.27780795e-01 -2.49040529e-01 -6.25937656e-02 7.23983422e-02\\n-2.86451459e-01 -3.80931377e-01 5.38889170e-02 -1.43169820e-01\\n5.30496202e-02 1.75624385e-01 -3.12718183e-01 2.05964133e-01\\n-2.12569505e-01 -2.25898772e-01 2.16114908e-01 8.39808524e-01\\n-1.18332349e-01 -4.86543685e-01 -6.29179358e-01 -2.74121493e-01\\n1.14099093e-01 -1.05865993e-01 1.52062997e-01 -1.88236013e-01\\n5.13882577e-01 -6.41957670e-02 4.71549034e-02 2.91827202e-01\\n-8.46905112e-01 -2.06729352e-01 -3.71838480e-01 1.94184169e-01\\n-2.81217963e-01 -8.54068622e-03 -3.41167212e-01 -1.53783768e-01\\n-1.95428357e-01 4.23157126e-01 8.74963328e-02 -5.90778291e-02\\n-1.49609998e-01 1.40989929e-01 -4.62255269e-01 4.09987032e-01\\n1.76672861e-01 3.24402541e-01 2.69152224e-01 2.43258044e-01\\n-3.99601340e-01 6.41810000e-01 3.43884826e-01 -3.73517424e-01\\n2.27312148e-01 8.68981779e-02 3.14440280e-01 9.56280604e-02\\n2.17780992e-01 1.87618494e-01 -2.50429630e-01 1.45896524e-01\\n2.42589116e-01 -1.81572393e-01 1.11375609e-02 -3.58251408e-02\\n-1.29386494e-02 -8.76519457e-02 9.12534595e-02 1.38762891e-01\\n-4.70960438e-01 3.79654348e-01 6.03503287e-02 -3.11335772e-01\\n-7.54841566e-02 -4.84360397e-01 -1.19986989e-01 2.79897358e-02\\n-2.59541553e-02 1.68218106e-01 1.86259061e-01 2.48268634e-01\\n1.45244285e-01 -3.69417295e-02 6.70659542e-02 9.73516226e-01\\n-9.77312624e-02 1.34560943e-01 -2.36750722e-01 3.82729381e-01\\n1.06827810e-01 -1.91767454e-01 2.19132066e-01 1.62339911e-01\\n-8.79954100e-02 -2.03779712e-01 -1.43763810e-01 3.29503030e-01\\n-6.56632185e-02 -2.77508825e-01 -1.65285543e-01 2.06075996e-01\\n-8.10696036e-02 -4.55732614e-01 5.99294186e-01 -6.17821477e-02\\n2.02416092e-01 -1.35149315e-01 -1.02212839e-01 -1.33552626e-01\\n-8.65381956e-02 1.59646198e-01 1.63907066e-01 1.04933582e-01\\n-1.84595719e-01 -1.85591146e-01 -1.86711624e-01 2.50627756e-01\\n-2.64177382e-01 1.33733705e-01 -2.58650362e-01 -1.29087061e-01\\n3.09557825e-01 1.33627523e-02 -2.75421262e-01 2.59638071e-01\\n-8.16710219e-02 -2.36491095e-02 -1.96023751e-02 3.26818109e-01\\n-2.94425875e-01 1.54827312e-01 -9.04739425e-02 -6.49375692e-02\\n6.74034953e-01 8.08523893e-02 2.82468557e-01 -6.22015856e-02\\n2.10861772e-01 -8.74466896e-02 1.82642207e-01 1.46693155e-01\\n-6.01318717e-01 5.19625366e-01 -1.27037778e-01 -1.96985692e-01\\n1.58630267e-01 -8.73734504e-02 4.40011978e-01 -2.34468490e-01\\n-4.52969335e-02 -9.29770470e-02 -2.66590744e-01 -2.82847613e-01\\n-2.40657508e-01 -2.78500076e-02 3.21959883e-01 -4.74952638e-01\\n1.37570247e-01 2.10259899e-01 -5.79291344e-01 -2.35133573e-01\\n1.35681435e-01 3.10291260e-01 2.14995787e-01 1.59676358e-01\\n-1.32708684e-01 -5.95268965e-01 1.57250091e-01 -4.99297857e-01\\n-7.76418969e-02 1.99946284e-01 -2.34957114e-01 1.99933201e-01\\n1.39320120e-01 9.35294330e-02 -5.33532575e-02 -2.86885630e-02\\n-1.82314411e-01 6.13695979e-02 1.15789600e-01 6.62878603e-02\\n2.61943549e-01 1.16909705e-01 -4.39185768e-01 5.30658484e-01\\n-2.04105332e-01 4.39930826e-01 4.00945209e-02 -9.36684430e-01\\n4.05629545e-01 4.61945623e-01 6.34247437e-02 -2.14010417e-01\\n7.34246373e-01 -2.57718444e-01 -1.23668283e-01 1.73397496e-01\\n-4.23701435e-01 -9.96369570e-02 6.19322248e-02 -3.61130029e-01\\n-2.12307021e-01 5.60846567e-01 1.22151159e-01 6.40350506e-02\\n2.88727105e-01 -1.33670360e-01 -6.98288530e-02 -8.89994353e-02\\n-2.46612728e-01 -2.05996245e-01 -5.66157043e-01 -1.07064247e-01\\n-4.74357046e-02 -4.69809473e-01 -1.18047222e-01 -4.60858166e-01\\n-1.36352643e-01 -4.13601309e-01 -8.63706097e-02 5.99071290e-03\\n2.22434923e-01 1.48895830e-01 -1.17264839e-03 -2.49422397e-02\\n-2.15688378e-01 -6.75914824e-01 -5.66236190e-02 1.61593989e-01\\n2.38925084e-01 1.41072676e-01 2.47584000e-01 1.71703715e-02\\n4.85323556e-02 4.27843243e-01 -3.83266836e-01 -3.70734423e-01\\n2.04669848e-01 1.90381572e-01 8.54319930e-02 -7.89583996e-02\\n1.94577679e-01 2.89022177e-01 -1.84119135e-01 6.81276247e-02\\n-9.90616530e-02 2.67844535e-02 3.05603415e-01 4.37292568e-02\\n-1.80588290e-01 -2.11527020e-01 -1.53052464e-01 2.25704208e-01\\n-5.71669698e-01 -3.38605255e-01 3.79385144e-01 5.92494430e-03\\n3.26289497e-02 2.66033143e-01 2.50540584e-01 -5.69551922e-02\\n-2.33986452e-01 -2.10615531e-01 3.27935666e-01 1.26252607e-01\\n1.37969077e-01 -8.95437598e-03 -3.11894231e-02 -5.89778244e-01\\n-3.21271348e+00 -1.83625996e-01 6.25159442e-02 -2.74819970e-01\\n4.57740247e-01 -1.87927812e-01 9.01776701e-02 -7.17453435e-02\\n-3.28528821e-01 7.04272985e-02 -2.08505988e-01 -2.06495389e-01\\n1.04401372e-01 1.12551652e-01 2.08964542e-01 2.09662095e-01\\n-6.99103698e-02 -2.63183504e-01 1.62334323e-01 3.66920203e-01\\n-2.01400906e-01 -7.92902231e-01 1.34443074e-01 7.51595572e-02\\n2.04234868e-01 2.58165598e-01 -6.28767073e-01 -9.07093734e-02\\n-3.50148499e-01 -3.34361613e-01 2.59090990e-01 -2.59488821e-01\\n-1.57129407e-01 2.50270993e-01 2.16486752e-01 -1.17721185e-01\\n-6.44913092e-02 -3.69376779e-01 -6.21603504e-02 -4.37931538e-01\\n1.04153953e-01 -6.32179797e-01 -8.98697600e-02 -4.44758357e-03\\n6.71386719e-01 -2.95064151e-01 2.63094932e-01 1.42237529e-01\\n4.78402190e-02 1.32837862e-01 1.40439361e-01 -2.76770703e-02\\n-1.97503090e-01 -2.54401833e-01 -6.95518181e-02 -9.93211567e-02\\n4.70979899e-01 5.00046909e-01 -2.02681065e-01 -9.40720439e-02\\n7.17383670e-03 -3.58606875e-01 -5.32271743e-01 -2.89758861e-01\\n-2.37999633e-01 -8.47720057e-02 -5.66571712e-01 -4.41279948e-01\\n-1.19598761e-01 -1.97385177e-01 -2.36301422e-02 5.65056264e-01\\n-3.51053774e-01 -2.65392959e-01 -1.97257787e-01 -4.29483354e-01\\n3.50226283e-01 -1.77087158e-01 7.53754517e-03 -1.82955682e-01\\n-1.88137680e-01 -3.74301523e-01 9.16827321e-02 -2.02828553e-02\\n-1.68231174e-01 -2.44272962e-01 9.05037150e-02 -1.96498930e-01\\n-4.60819721e-01 -6.18186057e-01 3.04807752e-01 7.49440417e-02\\n3.27047497e-01 1.06980689e-02 2.52088815e-01 -7.08909929e-02\\n3.38431329e-01 -8.18969756e-02 2.31154654e-02 -5.41103005e-01\\n-1.85075179e-02 -2.29785834e-02 5.61215580e-01 -2.42464900e-01\\n1.04566433e-01 -2.02386156e-02 -2.51314938e-01 -1.90906692e-02\\n3.19915742e-01 -1.51967838e-01 1.24427408e-01 -1.97858259e-01\\n3.44194651e-01 -2.83314884e-01 -1.68002948e-01 -2.27779411e-02\\n8.13418776e-02 7.36457944e-01 -4.93819593e-03 -3.40344936e-01\\n-1.33789837e-01 3.98293018e-01 -2.60991663e-01 -3.60791571e-02\\n-6.40951768e-02 3.81682105e-02 -2.57050276e-01 2.55532503e-01\\n-5.24839051e-02 -6.89602196e-02 -2.41341010e-01 -7.40445927e-02\\n-5.71881123e-02 2.49102235e-01 3.44809055e-01 1.27406552e-01\\n-1.79106325e-01 -3.22097152e-01 -1.02299325e-01 3.16626430e-01\\n1.47305742e-01 3.00089240e-01 2.05566004e-01 -2.30371654e-01\\n3.07397041e-02 2.40551904e-01 -2.48643115e-01 3.10846388e-01\\n-1.87472731e-01 1.55065849e-01 -7.38722563e-01 -2.47319996e-01\\n-2.68153369e-01 -3.91834199e-01 2.52489001e-01 2.75765389e-01\\n1.80359498e-01 -1.29550576e-01 1.19748920e-01 -4.72981215e-01\\n7.95781314e-02 -5.73628843e-02 2.92164594e-01 1.68544456e-01\\n-1.62597641e-01 6.71239376e-01 7.13159982e-03 -8.62292722e-02\\n-1.15358084e-01 9.24725085e-02 -2.57821113e-01 -3.11829925e-01\\n2.01367773e-02 -4.33519423e-01 -1.73085123e-01 4.65072721e-01\\n1.24448538e-01 -1.82570755e-01 -2.06604674e-01 2.88300335e-01\\n-3.54152955e-02 -4.30482924e-01 -2.41871282e-01 4.19024527e-02\\n2.41130486e-01 2.19557256e-01 2.26608470e-01 -5.85650086e-01\\n5.13991043e-02 -2.94437055e-02 -3.25951050e-03 4.31910485e-01\\n-1.01653598e-01 1.28650188e-01 -1.02458403e-01 -1.88741654e-01\\n4.18192893e-01 -1.02772135e-02 -1.20703187e-02 -5.44961169e-02\\n1.34517282e-01 -3.00732821e-01 -3.32687855e-01 4.37251478e-02\\n1.28115967e-01 -2.80908376e-01 -9.41656437e-03 2.77079821e-01\\n9.66656804e-02 -3.51543427e-02 -5.83897114e-01 -1.69198811e-01\\n-2.80750185e-01 1.25108033e-01 2.65906435e-02 -5.32098949e-01\\n-1.05664916e-01 -1.42814636e-01 -4.52712983e-01 3.06237906e-01\\n9.05517638e-02 -1.11128464e-01 2.30804339e-01 1.38096055e-02\\n-2.52547920e-01 -1.96140006e-01 2.19059542e-01 1.53323859e-01\\n-2.19167233e-01 -2.35165000e-01 -3.31625976e-02 -1.05809200e+00\\n8.34892690e-02 4.53115739e-02 4.11184179e-03 1.38155580e-01\\n3.77706364e-02 -8.23836565e-01 2.65771657e-01 -3.96279663e-01\\n-2.24033073e-01 -8.89766887e-02 -2.28469193e-01 -4.37571883e-01\\n1.15641490e-01 3.54094245e-02 -1.11969523e-01 3.59083742e-01\\n-2.40211993e-01 5.08548975e-01 -1.42279133e-01 -6.44871518e-02\\n1.47856534e-01 -2.29498088e-01 1.53538898e-01 -2.90603727e-01\\n-4.86892730e-01 -5.46435863e-02 -3.10152709e-01 -1.41009510e-01\\n-1.90855309e-01 -1.39236793e-01 -8.75488222e-02 3.24361697e-02\\n5.04008830e-01 1.27947673e-01 -1.41858026e-01 -1.23681761e-01\\n-4.62801270e-02 -4.08864707e-01 1.86685205e-01 -2.76627630e-01\\n-9.90935694e-03 -1.63969874e-01 1.99135125e-01 1.56939477e-01\\n2.22518116e-01 -4.85780746e-01 4.60496694e-01 -2.20519409e-01\\n-4.46557522e-01 -1.26671955e-01 1.89266175e-01 6.25954419e-02\\n4.23591912e-01 -4.87600356e-01 -1.37305990e-01 3.84371668e-01\\n1.03709474e-01 7.22221583e-02 4.34096426e-01 -1.78015515e-01\\n-1.63016483e-01 1.58988178e-01 -4.88441139e-01 2.03500107e-01\\n7.77517736e-01 1.81574285e-01 1.64723203e-01 5.08402847e-02\\n1.72085062e-01 2.87723839e-01 4.75707561e-01 -9.47329253e-02\\n-4.87829335e-02 4.61632669e-01 9.69737619e-02 -4.50307220e-01\\n-3.12527195e-02 -6.56192228e-02 -5.34324721e-02 -4.21373457e-01\\n6.15548670e-01 3.22726756e-01 -3.55252266e-01 -1.83008760e-01\\n-4.04081553e-01 -2.50222147e-01 1.75638393e-01 -7.46791810e-02\\n5.13104349e-02 -5.62431030e-02 4.40797508e-01 -6.17316142e-02\\n2.44167820e-01 5.19187629e-01 -1.59122348e-01 -2.71328777e-01\\n-1.12722116e-02 3.61089826e-01 9.22060460e-02 5.30415177e-01\\n-1.76399708e-01 3.01064342e-01 -6.04971349e-02 1.30942345e-01\\n-2.87908763e-01 6.30816296e-02 3.29964846e-01 5.84664196e-03\\n1.23492248e-01 1.57948375e-01 4.73253727e-01 4.09562320e-01\\n3.94409239e-01 3.31403345e-01 4.21010286e-01 -7.89522007e-02\\n5.58400393e-01 6.02428794e-01 3.14410925e-01 8.87455270e-02\\n5.94491884e-03 1.51287913e-01 9.79691148e-02 8.05021748e-02\\n2.88077980e-01 4.23572212e-01 5.18984124e-02 8.19875836e-01\\n3.19807142e-01 3.15587133e-01 6.10623181e-01 -5.25405705e-01\\n-3.23774457e-01 -2.89806304e-03 5.67985952e-01 -4.42392141e-01\\n3.10883541e-02 2.23378450e-01 -1.67007804e-01 1.51203915e-01\\n-4.44321185e-01 -2.67849296e-01 -5.34219183e-02 6.66069835e-02\\n6.50895685e-02 -1.71113998e-01 -1.69209421e-01 1.57300189e-01\\n-1.90608054e-01 -2.56927222e-01 -4.50696945e-01 -8.40108991e-02\\n-3.89678687e-01 -4.18260656e-02 -1.22229144e-01 -4.43127528e-02\\n-1.19131930e-01 -2.00282559e-01 -8.34078640e-02 2.93187685e-02\\n3.99768680e-01 -2.61624724e-01 -1.89346999e-01 -8.27064142e-02\\n5.01245558e-01 4.48639952e-02 5.17758012e-01 -3.23917344e-03\\n2.51160171e-02 -2.68952698e-01 -2.68820286e-01 1.58012182e-01\\n2.92942733e-01 5.03400788e-02 -2.18152869e-02 5.13956666e-01\\n-2.59927988e-01 -1.87232181e-01 8.58758241e-02 3.07992071e-01\\n-4.03459847e-01 -1.18100066e-02 2.80795656e-02 2.69917883e-02\\n7.06697106e-02 1.86978117e-01 -2.10982531e-01 2.19744397e-03\\n-4.22337465e-02 -5.29829860e-01 2.38330603e-01 -1.32157505e-01\\n-3.61831397e-01 -4.22776910e-03 4.31549013e-01 3.69908124e-01\\n-8.34632665e-02 -2.46300292e-03 -1.89757451e-01 2.34149665e-01\\n3.13111916e-02 2.21531615e-01 -2.37169325e-01 -2.69384086e-01\\n-3.64751011e-01 2.81839401e-01 -1.88841373e-01 1.96656585e-01\\n4.84316945e-02 3.22886527e-01 -4.00063097e-02 1.29920438e-01\\n3.89324099e-01 -1.44093126e-01 -2.10321620e-01 -3.65671664e-01\\n-1.73423752e-01 -2.20537424e-01 -6.42086864e-02 -6.94193840e-02\\n2.66691059e-01 -2.70320773e-01 -1.31884217e-01 -1.72227576e-01\\n-2.70096242e-01 -4.20202613e-01 3.96028161e-03 -1.15839235e-01]]',\n", + " 'job_description': 'SOPHiA GENETICS Genomics group are looking for a Clinical Product Application manager for Oncology – Hematology to join our team. The Clinical Product Application manager will be responsible for hematological cancer applications mainly for Next Generation Sequencing. The position will be either home or office based at our office in St-Sulpice, Switzerland. Main Job Responsibilities Take the lead on product development life cycle by delivering and presenting new product business cases, collect product requirements, develop go-to-market strategies, launch products and engage in post-marketing surveillance Monitor the clinical diagnostics ecosystem and competitive landscape to help develop strategic goals for Next Generation Sequencing applications. Work closely together with customers and key opinion leaders on projects to develop new applications Define pricing strategy, product messaging and positioning for product portfolio Work together with the marketing team to develop product collaterals such as fact sheets, white papers and presentations Engage closely with the sales team by visiting key accounts, presenting at congresses and workshops, and deliver training to Subject Matters Experts. Partner and lead project with BioIT, Data Scientists, Production, R&D and Business Development to achieve business goals. Coordinate the development of all components of a product and analytical platform features across the different departments of the company Measuring and reporting sales performance of products We Are Looking for a Candidate Who Has Bachelors, Masters or higher degree in biology, molecular biology, molecular genetics, or a related discipline. PhD would be an advantage. 5+ years of relevant experience, with practical experience in the life science, clinical research or diagnostics field. Experience in hematological malignancies is a strong advantage. Proven track record of product launches and go-to-market strategies in NGS applications Excellent knowledge of NGS workflow technologies and understanding of bioinformatics analysis Proven ability to work in a team and collaboratively across departments to develop new market strategies that meet revenue and growth forecasts Ability to think strategically, analyze situations quickly and make informed decisions Excellent organizational skills to define timelines, set priorities and deliver on time Excellent written and verbal communication skills including communicating complex scientific topics in simple terms to internal and external partners. Must have flexibility in working hours and be available for 25% domestic & international business travel. English (business language) is mandatory. French or other languages would be desirable. Starting date: ASAP Location: Home office based in Europe with easy access to an international airport, and/or St-Sulpice - Switzerland Apply',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Strategic Thinking\", \"Coordinating\", \"Collaboration\", \"Decisiveness\", \"Management\", \"Communications\", \"Timelines\", \"Organizational Skills\", \"Presentations\", \"Positivity\", \"Sales\"]',\n", + " 'hard_skills': '[\"White Paper\", \"Accessioning\", \"Product Requirements\", \"Genomics\", \"Life Sciences\", \"Collections\", \"Analytics\", \"Genetics\", \"Life Cycle Assessment\", \"Pricing Strategies\", \"Key Opinion Leader Development\", \"Molecular Genetics\", \"Landscaping\", \"Track (Rail Transport)\", \"Oncology\", \"Market Access Strategy\", \"Sales Performance Management\", \"Patentable Subject Matter\", \"Workflow Technology\", \"Accounting\", \"Clinical Research\", \"Agile Product Development\", \"Hematology\", \"Forecasting\", \"Bioinformatics\", \"Cancer\", \"Molecular Biology\", \"Fact Sheets\", \"Go-to-Market Strategy\", \"New Product Development\", \"Business Development\", \"International Business\", \"Business Case\"]',\n", + " 'languages': \"['English', 'Malagasy']\"},\n", + " {'company_id': '115',\n", + " 'job_title': 'data quality analytics consultant',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Agencies & Brokerages',\n", + " 'website': 'www.swissre.com',\n", + " 'jobdescription_embedded': '[[-1.75298631e-01 1.34277016e-01 4.93102580e-01 1.04394108e-02\\n4.35366124e-01 -8.75177607e-02 -1.43540166e-02 4.56902802e-01\\n-5.83789572e-02 -4.84218180e-01 -3.69837135e-02 -2.76895404e-01\\n-1.19374052e-01 1.46532059e-01 8.90235901e-02 4.30540830e-01\\n4.31288421e-01 1.60808772e-01 -1.88231498e-01 2.23380938e-01\\n8.68097097e-02 -3.87049578e-02 1.35737032e-01 7.60980546e-01\\n4.53682780e-01 5.40129095e-03 -2.38795206e-03 -4.62727174e-02\\n-1.66459322e-01 -2.27245569e-01 5.05446553e-01 4.20605019e-02\\n-2.07854971e-01 -2.81463146e-01 9.88021046e-02 1.19270295e-01\\n-2.13359416e-01 -2.81801559e-02 -1.16184443e-01 5.14849760e-02\\n-3.48149031e-01 -1.72385618e-01 -1.16345689e-01 2.69205868e-02\\n-2.52296150e-01 -3.50649834e-01 2.48274859e-02 5.72353229e-02\\n2.39995420e-01 1.18925460e-01 -4.61434543e-01 3.07985336e-01\\n-2.79013574e-01 -2.01437727e-01 2.64169186e-01 6.07179284e-01\\n-1.08869277e-01 -3.85864854e-01 -5.26535213e-01 -3.65413368e-01\\n9.83239040e-02 -1.83259696e-01 5.38394228e-02 -4.18760002e-01\\n3.27237397e-01 1.61099225e-01 5.98929487e-02 2.44102478e-01\\n-7.39308953e-01 -5.48679754e-02 -3.04198295e-01 -1.28770918e-01\\n-3.79715145e-01 -4.40247245e-02 -3.81543994e-01 -1.59461856e-01\\n-1.73924848e-01 3.23407531e-01 1.36678535e-02 1.25347629e-01\\n-8.99820328e-02 3.13712806e-01 -2.78749138e-01 3.84974122e-01\\n1.40671045e-01 2.20436871e-01 2.60958016e-01 3.12965333e-01\\n-4.26841438e-01 4.20550823e-01 1.30020320e-01 -3.42520028e-01\\n1.98450059e-01 1.05905265e-01 3.54733229e-01 -1.02625221e-01\\n3.26607734e-01 5.96513227e-02 -3.05419028e-01 3.27802330e-01\\n2.25299507e-01 -3.11191559e-01 6.61647990e-02 -2.03310877e-01\\n6.98283315e-02 -4.74824896e-03 1.01862870e-01 4.21122089e-02\\n-3.31436276e-01 4.38915491e-01 1.05292022e-01 -2.82581866e-01\\n-1.03630967e-01 -4.91951823e-01 -3.85693982e-02 1.07461534e-01\\n1.22404143e-01 8.94070491e-02 1.34691566e-01 1.99625462e-01\\n2.16160223e-01 -2.77196504e-02 1.42025441e-01 6.47678196e-01\\n-1.25236049e-01 -9.35275946e-03 -2.58115768e-01 2.56384850e-01\\n3.13654318e-02 -3.32967162e-01 1.48976162e-01 1.96642235e-01\\n-1.34410918e-01 -1.20834649e-01 -2.72379637e-01 3.21035266e-01\\n3.51338238e-02 -2.91597903e-01 -2.79670686e-01 2.72527814e-01\\n1.45489216e-01 -4.10831571e-01 6.30721450e-01 1.73081197e-02\\n1.27176434e-01 -1.72028765e-02 1.72889940e-02 -1.73844695e-01\\n-2.07568035e-02 7.80287832e-02 7.15284869e-02 9.05987546e-02\\n-2.53377736e-01 -1.89206064e-01 -1.60865441e-01 1.14002526e-01\\n-4.56590295e-01 1.18272297e-01 -1.20447025e-01 -1.03848591e-01\\n1.67450756e-01 -8.31378251e-02 -2.94614583e-01 1.43603489e-01\\n-1.21554479e-01 -5.38420938e-02 5.90729676e-02 4.71917868e-01\\n-2.25644678e-01 2.55931318e-01 -6.19382337e-02 -7.99588710e-02\\n6.90009773e-01 3.68435606e-02 2.19911009e-01 1.00756530e-02\\n2.39857823e-01 9.28827301e-02 1.03438288e-01 5.88641688e-02\\n-7.53430724e-01 2.99316168e-01 -8.43687579e-02 -2.59972930e-01\\n2.07064867e-01 1.20959003e-02 2.28515103e-01 -2.30403066e-01\\n5.54572120e-02 -1.29631404e-02 -2.52491683e-01 -2.45567486e-01\\n-1.75622016e-01 -8.20682719e-02 2.79740334e-01 -5.06709099e-01\\n-1.03068627e-01 2.02496082e-01 -5.20807326e-01 -1.88034475e-01\\n6.98336139e-02 2.10552201e-01 7.62732700e-02 1.74490452e-01\\n-1.52689040e-01 -4.73905444e-01 1.15900606e-01 -4.23444450e-01\\n-2.41258562e-01 1.12362579e-01 -3.45449746e-01 1.42129734e-01\\n6.36606067e-02 1.34239905e-03 -1.24067158e-01 1.29166588e-01\\n-1.65123284e-01 -2.53089983e-02 5.98452017e-02 -4.55799289e-02\\n3.23581040e-01 8.62116553e-03 -2.90718645e-01 5.45057297e-01\\n-1.24474041e-01 4.65480000e-01 8.43199939e-02 -8.11176300e-01\\n5.35154164e-01 2.72684216e-01 3.77698056e-02 -3.68166447e-01\\n6.11026585e-01 -2.23871171e-01 -1.31031230e-01 7.01214373e-02\\n-4.41221893e-01 -3.05743396e-01 2.11129725e-01 -2.79032767e-01\\n-2.09277332e-01 4.50729907e-01 -8.38361587e-03 1.38307169e-01\\n2.57729411e-01 -2.30241403e-01 -2.09604442e-01 1.44385323e-01\\n-1.88687891e-01 -1.67671621e-01 -5.62095821e-01 -1.26530305e-01\\n-1.02125898e-01 -3.63986671e-01 -2.05466837e-01 -4.05007303e-01\\n-1.37589395e-01 -3.60494912e-01 -2.59284042e-02 2.01202810e-01\\n1.72735572e-01 8.58001411e-03 -9.12901163e-02 7.17043206e-02\\n-1.24826133e-01 -6.61557555e-01 -3.41851674e-02 8.25183392e-02\\n3.96689355e-01 1.46894649e-01 1.54246032e-01 6.96740821e-02\\n7.41008967e-02 7.04930782e-01 -1.82788640e-01 -2.70003289e-01\\n1.71959221e-01 2.94503093e-01 4.75707799e-02 -7.53508657e-02\\n1.30110011e-01 2.92714119e-01 -3.30779910e-01 3.13102081e-03\\n-8.87173936e-02 -7.00581595e-02 4.40352917e-01 -7.65800476e-02\\n-2.42176443e-01 -9.87585783e-02 -8.28243569e-02 3.84676754e-02\\n-4.80644971e-01 -2.77432680e-01 6.31536603e-01 2.60519773e-01\\n7.65201077e-02 1.30192712e-01 1.02444828e-01 3.54478359e-02\\n-1.16350219e-01 -2.32537121e-01 2.80591309e-01 3.40195298e-02\\n1.32794112e-01 1.82575017e-01 -9.53525603e-02 -5.24118543e-01\\n-3.44333720e+00 -1.10711977e-01 7.07994699e-02 -6.67898655e-02\\n2.49506086e-01 -8.74367133e-02 1.84458196e-01 -1.30610779e-01\\n-3.24717999e-01 4.77803648e-02 -5.82258329e-02 -1.79126441e-01\\n1.60055146e-01 2.55272090e-01 1.13051131e-01 2.12829918e-01\\n2.15275988e-01 -1.80156171e-01 2.44697034e-02 4.05822039e-01\\n-1.33878142e-01 -6.66621327e-01 1.73150256e-01 -5.14563126e-03\\n2.70609856e-01 3.17100704e-01 -3.06000799e-01 -1.46438912e-01\\n-1.86064720e-01 -2.38188416e-01 1.06982626e-02 -3.90666038e-01\\n-8.93695801e-02 2.09860966e-01 2.70308822e-01 -1.54417127e-01\\n5.19850254e-02 -3.89154404e-01 -2.00795978e-01 -4.92670953e-01\\n1.19704612e-01 -5.10843277e-01 6.85606450e-02 -1.28461987e-01\\n6.97063684e-01 -2.69805610e-01 1.36377737e-01 5.04177483e-03\\n7.25133196e-02 1.94688424e-01 1.71133995e-01 3.26592065e-02\\n-1.83062673e-01 -3.56214046e-01 -9.81233642e-02 -1.93211302e-01\\n6.88604832e-01 3.48379582e-01 -1.29160613e-01 -3.14717218e-02\\n1.08439803e-01 -2.09802449e-01 -4.18941081e-01 -2.21359730e-01\\n-6.37887418e-02 -1.14707708e-01 -5.59468985e-01 -4.60979342e-01\\n-1.89547881e-01 -2.24553689e-01 -8.81905183e-02 6.01690650e-01\\n-2.67101228e-01 -2.66929030e-01 -1.44067287e-01 -5.73971391e-01\\n3.77285242e-01 -1.47709996e-01 -1.95088163e-02 -2.28903726e-01\\n-2.65758008e-01 -4.85379070e-01 -4.01499961e-03 3.52849066e-02\\n5.93845993e-02 -2.59988159e-01 1.14597619e-01 -6.30246475e-02\\n-3.18304241e-01 -5.08039773e-01 3.86938751e-01 4.91528623e-02\\n3.51862788e-01 2.72609174e-01 2.89664775e-01 -5.59085943e-02\\n2.31981963e-01 9.13899019e-03 -9.28237662e-02 -3.51993650e-01\\n9.23367292e-02 4.16023023e-02 4.34241354e-01 -9.21094343e-02\\n2.01576166e-02 5.95871210e-02 -1.79777429e-01 -2.72930879e-02\\n3.88099670e-01 -3.87608744e-02 2.28629619e-01 -1.47598073e-01\\n2.81066269e-01 -3.06832612e-01 -1.09889358e-01 2.35371329e-02\\n8.95592719e-02 5.14193594e-01 2.76233926e-02 -3.94302428e-01\\n-4.42755632e-02 6.00390136e-01 -8.63861442e-02 9.27776396e-02\\n-3.62267494e-01 5.64017780e-02 -2.90021360e-01 1.80358544e-01\\n2.55464297e-02 -1.42818153e-01 -1.56581596e-01 -1.22117326e-01\\n-4.60764915e-02 3.24127465e-01 2.97652185e-01 1.78373814e-01\\n-1.36161000e-02 -4.29027736e-01 -5.02190292e-02 2.02923000e-01\\n2.53692687e-01 5.25263488e-01 1.12073474e-01 -1.59378991e-01\\n-5.64981103e-02 3.09906065e-01 -1.45162076e-01 1.74545646e-01\\n-2.69506454e-01 8.57796147e-02 -4.40192252e-01 -2.39323974e-01\\n-3.04655671e-01 -3.45591068e-01 1.41094714e-01 3.33804250e-01\\n1.39417693e-01 -3.01307105e-02 9.21460316e-02 -4.04009819e-01\\n2.30548099e-01 2.19879568e-01 1.69677526e-01 1.03756174e-01\\n3.92823592e-02 5.65420389e-01 6.35788403e-03 -1.65899873e-01\\n-1.45662263e-01 1.72539085e-01 -1.74081847e-01 1.50127765e-02\\n2.60014683e-02 -4.76078540e-01 -2.03042805e-01 3.38784754e-01\\n1.20019183e-01 -1.03132010e-01 -2.09409207e-01 2.55583584e-01\\n-5.45869321e-02 -2.45736539e-01 -2.20863491e-01 5.11444174e-03\\n3.40028673e-01 1.37328163e-01 3.37887645e-01 -4.60663587e-01\\n-8.20665136e-02 4.09280881e-03 1.28750522e-02 4.26437974e-01\\n-2.82635950e-02 1.26103491e-01 -1.11800261e-01 -1.73241943e-01\\n3.62488747e-01 -1.78815097e-01 -1.13371015e-01 1.30045742e-01\\n1.31049007e-01 -1.51995942e-01 -3.08168143e-01 7.41579570e-04\\n-1.35931224e-01 -1.89696878e-01 -4.87604551e-02 1.71610594e-01\\n7.46620968e-02 1.57322496e-01 -7.07539916e-01 -2.16977090e-01\\n-2.65714645e-01 -2.19440404e-02 -2.96918862e-02 -5.58709979e-01\\n3.35950442e-02 -1.99385315e-01 -5.29798865e-01 2.19400883e-01\\n-1.60313711e-01 -1.72461003e-01 3.09825122e-01 -3.45334373e-02\\n-2.86131501e-01 -1.77929953e-01 1.19376555e-01 2.63997644e-01\\n-2.69611299e-01 -1.84357494e-01 -1.38968304e-02 -9.67157960e-01\\n2.41940647e-01 -7.62559986e-03 -1.69732749e-01 1.03725731e-01\\n-1.32306725e-01 -6.31977856e-01 5.92905506e-02 -3.65056574e-01\\n-1.45612344e-01 -4.24879491e-02 -2.14319408e-01 -3.48135084e-01\\n1.29160047e-01 -7.71134347e-03 -2.03182548e-01 4.00679976e-01\\n-2.47661352e-01 3.14380378e-01 -2.04451576e-01 1.06516302e-01\\n-8.38639401e-03 -2.45874554e-01 7.27418810e-02 -3.17172706e-01\\n-4.05997992e-01 -3.04221481e-01 -2.58344889e-01 -2.53265232e-01\\n4.21592705e-02 -5.04103661e-01 -8.93435627e-02 4.21895497e-02\\n3.16945970e-01 -2.00148672e-02 -1.64430425e-01 -1.26074478e-01\\n2.14926749e-02 -5.79603851e-01 8.93039778e-02 -8.84219483e-02\\n-8.46045837e-02 -1.73765600e-01 2.94401050e-01 1.53816253e-01\\n2.31095701e-01 -3.98088157e-01 3.57882500e-01 -3.81554306e-01\\n-2.90800512e-01 -2.47647967e-02 5.60005344e-02 -5.98216280e-02\\n2.39034563e-01 -5.46855807e-01 -1.42191753e-01 3.82301390e-01\\n1.47491977e-01 6.25551492e-02 1.70166522e-01 -1.48256704e-01\\n-1.41405746e-01 3.65316510e-01 -2.86104858e-01 6.26293868e-02\\n6.03157043e-01 2.00295657e-01 1.31601721e-01 2.75177181e-01\\n1.54424191e-01 2.45782197e-01 4.50501770e-01 3.09567992e-02\\n-1.05489492e-01 3.07327986e-01 7.87966326e-02 -5.24318755e-01\\n2.20638402e-02 6.87085614e-02 -8.88090581e-02 -4.52128589e-01\\n6.99187756e-01 3.87496471e-01 -4.61074471e-01 -2.17134029e-01\\n-1.67855948e-01 -2.30061293e-01 2.44314879e-01 9.92031768e-03\\n1.04475290e-01 -5.51722758e-02 2.92660654e-01 -5.42754419e-02\\n2.05277309e-01 6.58901453e-01 -2.22056925e-01 -1.90235436e-01\\n-1.46588370e-01 2.22227573e-01 -2.59318687e-02 5.56972980e-01\\n-2.85089016e-01 3.16980481e-01 -2.14406550e-02 1.05851844e-01\\n-9.80894417e-02 8.16078335e-02 1.08860523e-01 4.56280969e-02\\n2.44541258e-01 7.27291629e-02 4.70291615e-01 3.51250201e-01\\n2.05570161e-01 3.30216914e-01 2.85626113e-01 -2.34744139e-03\\n4.06389415e-01 5.03268480e-01 4.74140316e-01 8.93826485e-02\\n-9.64943320e-04 4.73850891e-02 1.42657056e-01 3.88978645e-02\\n2.52589762e-01 3.41079950e-01 4.33368701e-03 8.41284871e-01\\n3.15612197e-01 3.06316376e-01 5.52903533e-01 -6.73441887e-01\\n-2.75945187e-01 5.28126620e-02 4.29544240e-01 -4.40914094e-01\\n1.29558489e-01 1.98414683e-01 -1.77429721e-01 1.55073091e-01\\n-4.48107511e-01 -2.21147627e-01 -5.21622449e-02 7.22081661e-02\\n2.65378542e-02 -1.81437731e-01 -1.64325759e-01 5.04603051e-02\\n-8.01826864e-02 -9.30223241e-02 -4.76361722e-01 -2.29257792e-01\\n-1.93322062e-01 -9.96892527e-02 -3.66657078e-02 -2.13172391e-01\\n-1.15606591e-01 -2.50249207e-01 -3.88603695e-02 -7.37618357e-02\\n1.86160699e-01 -1.24273404e-01 2.70787105e-02 -1.84127659e-01\\n2.89759696e-01 2.55553305e-01 5.22452533e-01 -1.91702433e-02\\n2.98296027e-02 -1.88959345e-01 -1.46641910e-01 1.95965409e-01\\n1.47883788e-01 2.53158174e-02 6.52964041e-02 2.13393629e-01\\n-1.55144721e-01 -2.90262580e-01 2.02120632e-01 2.74402469e-01\\n-4.04944658e-01 -1.86211560e-02 -1.41897812e-01 2.44155586e-01\\n2.83624604e-03 1.46271735e-01 -8.55101943e-02 2.25974377e-02\\n-9.53000486e-02 -4.19230253e-01 2.35634387e-01 -1.08123742e-01\\n-1.61179453e-01 -5.85469455e-02 3.52312058e-01 2.30623871e-01\\n-3.38538527e-01 2.48023272e-02 -1.69345826e-01 4.47742045e-02\\n1.78636760e-02 2.40925416e-01 -2.57501543e-01 -3.37426662e-01\\n-2.46208906e-01 6.10475242e-02 -1.93284526e-01 1.03318311e-01\\n4.63652536e-02 3.89516920e-01 8.29912499e-02 8.80924836e-02\\n4.73956585e-01 4.11537066e-02 -2.71012694e-01 -1.34093553e-01\\n-2.15710238e-01 -1.62851997e-02 -2.51577310e-02 -8.71650577e-02\\n1.61712945e-01 -3.60712081e-01 -9.56605226e-02 -1.93929940e-01\\n-3.20487283e-03 -3.70250404e-01 9.05882716e-02 -6.55316338e-02]]',\n", + " 'job_description': 'About Swiss Re

The Swiss Re Group is one of the world’s leading providers of reinsurance, insurance and other forms of insurance-based risk transfer, working to make the world more resilient. It anticipates and manages risk – from natural catastrophes to climate change, from ageing populations to cybercrime. The aim of the Swiss Re Group is to enable society to thrive and progress, creating new opportunities and solutions for its clients. Headquartered in Zurich, Switzerland, where it was founded in 1863, the Swiss Re Group operates through a network of around 80 offices globally. It is organised into three Business Units, each with a distinct strategy and set of objectives contributing to the Group’s overall mission. About the Role Do you have a real passion for data and technology? Join our highly skilled global team. You will work with colleagues from various countries who have studied at universities around the world and have world-class experience, which will be an exciting learning opportunity. You will work closely with many business units and on projects which will enable you to actively demonstrate your technical and qualitative skills. Are you ready for new opportunities and interested to take on these challenges? We are looking for a Data Quality Analytics Consultant to join our team: We autonomously develop effective methods, techniques and/or programs to solve the tasks. We handle, develop and implement appropriate quality assurance frameworks for our customers and contribute to further improve existing ones. We define guidelines and build clarity on maturity of current data quality activities and provide support to constantly learn quickly. About the Team We are a small agile team with great team spirit, part of the information management unit, which is a global team responsible for managing all data related matters for Swiss Re worldwide. While customers are spread all over the world, we are in Bratislava and Zurich. About You You have very good SQL knowledge and programming skills (e.g. Oracle SQL, MS SQL). Your good programming skills in Java or another common programming language are completing our team’s skill set. You are like us: very good in analytical and logical thinking and working. You love to find errors, weak points, vulnerabilities and inconsistencies in program code and data content. Your creative thinking style is oriented to find customer-centric and sustainable solutions. User experience is not an alien concept to you. You are an expert in crafting crisp reports with appealing and clear graphs. In addition, as a great teammate you: are independent and take on responsibility - dedicated and ready to help where needed. have a get it done attitude: Efficient and accurate even under pressure and a high degree of flexibility. can handle ambiguity and conflicting information. have working experience in data quality assurance or information management. are motivated to learn and develop yourself and the team. have excellent verbal and written communication skills in English. You impress us even more, if you: possess experience in (re-)insurance or financial sector. know how to work with Excel-VBA. are experienced in working in an agile environment. If the above statements resonate with you we would be happy to receive your CV and motivation letter. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, including gender identity or expression, sexual orientation, age, marital status, veteran status, or disability status.
Swiss Re',\n", + " 'soft_skills': '[\"Management\", \"Resilience\", \"Operations\", \"Creative Thinking\", \"Quality Assurance\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Oracle SQL Developer\", \"Disabilities\", \"Risk-Based Testing\", \"Data Quality\", \"Agility\", \"Programming (Music)\", \"Cybercrime\", \"Sustainability\", \"Analytics\", \"Strategic Business Unit\", \"Activism\", \"Naturalization\", \"Climate Change Mitigation\", \"E (Programming Language)\", \"Reinsurance\", \"Risk Management\", \"Equalization\", \"Information Management\", \"Receivables\", \"Appeals\", \"Vulnerability\", \"Additives\", \"Graphing\", \"Coloring\", \"User Experience\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Fijian']\"},\n", + " {'company_id': '98',\n", + " 'job_title': 'database administrator',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.30906957e-01 3.54469180e-01 3.44402075e-01 -7.10024759e-02\\n4.51134086e-01 -1.81533664e-01 -9.96057875e-03 3.21813226e-01\\n-7.62883648e-02 -1.37411669e-01 -1.77102566e-01 -2.73099273e-01\\n-4.85375822e-02 8.48280564e-02 1.89477906e-01 2.64527470e-01\\n3.69192004e-01 1.71395481e-01 -9.34899449e-02 2.23489180e-01\\n4.10519280e-02 -4.91446108e-02 2.25852266e-01 5.30729115e-01\\n2.43622318e-01 6.92873895e-02 -6.10210076e-02 9.61860940e-02\\n-2.11367488e-01 -2.96378046e-01 8.61856267e-02 -1.22662289e-02\\n-4.02939282e-02 -1.90138057e-01 1.79840788e-01 1.22588508e-01\\n-1.77949816e-01 1.52839437e-01 -8.75722393e-02 2.89590329e-01\\n-5.13629973e-01 -4.03602332e-01 2.47899950e-01 9.50435475e-02\\n-1.21564627e-01 -3.50576103e-01 6.19427003e-02 1.99805610e-02\\n-9.42031760e-03 6.65294996e-04 -6.11811280e-01 2.54115582e-01\\n-2.17130795e-01 -2.07817286e-01 3.29884529e-01 5.79615116e-01\\n9.24041495e-02 -7.09966421e-01 -2.67959714e-01 -4.14178036e-02\\n-7.02608982e-03 -1.07840367e-01 -7.00452104e-02 -2.43026212e-01\\n5.45111001e-01 -2.33628526e-02 -6.33216575e-02 5.29979110e-01\\n-6.51732147e-01 5.76135702e-02 -3.55423659e-01 1.15093300e-02\\n-3.81243289e-01 6.47721142e-02 -1.62278950e-01 -1.60678759e-01\\n4.23994623e-02 2.13672742e-01 2.24776343e-02 6.90060854e-02\\n-8.67995769e-02 3.53215903e-01 7.97568262e-02 1.26837626e-01\\n3.87325585e-01 2.05117837e-01 1.16219744e-01 3.24816227e-01\\n-4.16056335e-01 4.38774019e-01 2.91344851e-01 -1.87695324e-01\\n1.31470054e-01 6.10408522e-02 4.00713623e-01 2.53697718e-03\\n-4.47688401e-02 2.59268343e-01 -7.67097548e-02 7.18283057e-02\\n1.38944864e-01 -1.41562581e-01 -9.38321576e-02 9.83458087e-02\\n-1.61121577e-01 -6.78135380e-02 -2.36575250e-02 3.00630808e-01\\n-3.39107513e-01 4.87542480e-01 8.96328837e-02 -1.23686403e-01\\n4.97271121e-02 -7.26064682e-01 -3.23783726e-01 7.46058375e-02\\n-1.01056375e-01 1.80216700e-01 2.89977431e-01 2.17715397e-01\\n2.59529293e-01 2.68820047e-01 7.91135654e-02 9.53608394e-01\\n-1.56907991e-01 1.23943396e-01 -1.05421506e-01 3.64220858e-01\\n3.00229758e-01 -1.55782506e-01 1.48180649e-01 2.11052626e-01\\n1.77979752e-01 -6.92452639e-02 -9.59355980e-02 1.20572329e-01\\n-5.10739833e-02 -3.48235369e-02 -8.82135183e-02 9.25943404e-02\\n-4.73477960e-01 -6.56399190e-01 5.35270751e-01 1.77989662e-01\\n3.83370340e-01 1.04032256e-01 -3.87128480e-02 7.16958940e-02\\n-7.78736472e-02 3.40179771e-01 -9.88644809e-02 3.00332516e-01\\n-3.40490371e-01 -1.33452356e-01 -3.32675278e-01 3.22244227e-01\\n7.19599053e-02 6.61080256e-02 -1.01566650e-01 -5.39154522e-02\\n4.97419983e-01 -4.31711599e-02 -4.65004086e-01 4.32080567e-01\\n-4.06168838e-05 -8.46459940e-02 -1.22197807e-01 2.93268174e-01\\n1.16900645e-01 1.31060839e-01 -1.56186879e-01 -2.96697497e-01\\n2.90379763e-01 6.76408261e-02 8.29593763e-02 3.20740268e-02\\n2.85702258e-01 -3.96543145e-02 2.54023135e-01 1.01657182e-01\\n-6.19283438e-01 3.77386272e-01 -7.83326626e-02 1.37002626e-02\\n9.40821543e-02 3.67256477e-02 4.26662713e-01 -2.79683828e-01\\n-1.89792484e-01 -1.03970230e-01 -5.48266292e-01 -4.72411156e-01\\n-3.28615606e-01 2.31773723e-02 4.66254294e-01 -5.17788172e-01\\n-2.74447381e-01 -1.24052111e-02 -3.84873480e-01 -5.85717633e-02\\n4.18969363e-01 2.21183389e-01 -2.28081495e-02 -6.34855628e-02\\n-3.98548245e-01 -6.13884449e-01 -5.55333234e-02 -6.03266060e-01\\n-2.32838422e-01 2.26203986e-02 -3.95055026e-01 1.42474130e-01\\n5.58699705e-02 -1.48807243e-02 1.21317403e-02 1.03960231e-01\\n-2.79037088e-01 1.33125439e-01 2.91661263e-01 2.48659283e-01\\n4.46256280e-01 -2.01102197e-01 -4.55192357e-01 5.68486392e-01\\n-2.49233678e-01 4.89370018e-01 4.61419404e-01 -8.31208885e-01\\n4.26559538e-01 2.20638797e-01 1.38872921e-01 -2.50695646e-01\\n4.24020141e-01 -5.66297531e-01 -8.09001029e-02 2.40302682e-01\\n-1.90683603e-01 -2.04320222e-01 9.13887918e-02 -2.96262383e-01\\n-2.29669750e-01 5.91397226e-01 8.03731605e-02 -1.47748366e-01\\n3.80327463e-01 -3.07796776e-01 -8.35342705e-02 -6.50186688e-02\\n-1.89316690e-01 -2.14648530e-01 -4.44546163e-01 3.65016945e-02\\n4.72818594e-03 -5.88563263e-01 -2.84174681e-01 -3.21806490e-01\\n-1.88654959e-01 -1.71405777e-01 -3.71049136e-01 4.32090372e-01\\n-8.40749741e-02 1.91366330e-01 9.78905559e-02 1.33937657e-01\\n-2.51392692e-01 -5.43062985e-01 -5.19019626e-02 4.68571745e-02\\n5.54571927e-01 2.09951982e-01 1.80889726e-01 -2.10974917e-01\\n-2.28111804e-01 3.87899965e-01 -2.56847739e-01 -3.08444709e-01\\n6.39787614e-02 1.78289264e-01 4.36076447e-02 5.66998273e-02\\n1.53317466e-01 3.69190335e-01 -1.85335904e-01 6.62268847e-02\\n-6.88312426e-02 5.70089482e-02 3.01160961e-01 -5.14067300e-02\\n-4.20087308e-01 -2.83179909e-01 -1.30554006e-01 2.52835214e-01\\n-5.06233633e-01 -2.39409064e-03 6.31270707e-01 1.92024320e-01\\n1.55920550e-01 3.14027458e-01 5.61970890e-01 -2.21445769e-01\\n-1.71636969e-01 -1.72459334e-01 -2.46561244e-02 1.94886759e-01\\n-1.78477988e-01 5.74443303e-03 -3.18497419e-01 -4.70142663e-01\\n-3.89658833e+00 -2.71466494e-01 1.91201847e-02 -1.65533081e-01\\n2.69524693e-01 -2.26106629e-01 1.63730949e-01 -7.28641301e-02\\n-1.84269309e-01 1.00266017e-01 -1.74635991e-01 2.91153640e-02\\n2.56487697e-01 1.44032046e-01 6.05083369e-02 3.53782088e-01\\n2.75931269e-01 -2.00658441e-01 1.25686601e-02 1.45002037e-01\\n-1.09054863e-01 -5.69799423e-01 8.96241665e-02 -9.67345536e-02\\n1.88316599e-01 2.13995218e-01 -3.42427403e-01 1.79624766e-01\\n-1.77453220e-01 -2.32265025e-01 2.97727045e-02 -4.45814937e-01\\n-1.31761730e-01 1.90518200e-01 -5.41988909e-02 -2.34331757e-01\\n1.10442698e-01 -1.21618591e-01 3.43548320e-02 -4.01151508e-01\\n5.74898496e-02 -6.00289702e-01 2.42432989e-02 8.89561996e-02\\n6.89717174e-01 -4.60989058e-01 4.62793708e-02 -9.54837725e-02\\n1.17535979e-01 3.28684956e-01 -4.67752758e-03 -1.64743409e-01\\n-2.34210715e-01 -4.47676927e-01 9.72032472e-02 -3.41484338e-01\\n4.21803027e-01 6.14841938e-01 -3.09200555e-01 2.26444840e-01\\n9.11490917e-02 -3.03462178e-01 -3.26330841e-01 -5.88009238e-01\\n-2.25841433e-01 -1.23553328e-01 -8.86787236e-01 -5.53671479e-01\\n-9.16309282e-02 -5.27816527e-02 -1.97937936e-01 3.90547454e-01\\n-3.21303517e-01 -7.41494358e-01 3.17972386e-03 -6.65903747e-01\\n2.41082162e-01 -3.06901317e-02 1.21010803e-01 -1.78947687e-01\\n-1.45917654e-01 -3.69280100e-01 1.03701964e-01 -6.23385198e-02\\n-2.83284545e-01 4.12118025e-02 7.80203566e-02 -2.13302329e-01\\n-3.56762707e-01 -7.72820786e-02 5.57861745e-01 9.52147692e-02\\n5.41215897e-01 1.86043516e-01 1.91033587e-01 1.68923691e-01\\n3.30296576e-01 -2.55504459e-01 1.94598258e-01 -4.81339902e-01\\n1.80508927e-01 -4.47497256e-02 6.08491004e-01 -3.69463235e-01\\n1.34966612e-01 2.66603619e-01 -3.70972097e-01 -3.10363680e-01\\n4.92646039e-01 9.54585671e-02 -4.54682820e-02 -1.90255255e-01\\n1.89344123e-01 -5.68042994e-01 -4.46496218e-01 1.19389527e-01\\n-1.20726980e-01 7.45659411e-01 2.71120295e-02 -3.15346181e-01\\n-3.27937156e-01 4.94258016e-01 1.02252834e-01 -2.95692950e-01\\n-1.07923314e-01 1.93343192e-01 -9.28536654e-02 1.31866083e-01\\n1.71677187e-01 -1.56802982e-01 -2.63284326e-01 8.24897885e-02\\n2.27802340e-02 4.02874649e-02 3.83410007e-01 1.73610806e-01\\n-4.51954603e-02 -2.77144969e-01 5.44786304e-02 4.94973883e-02\\n2.62379646e-01 2.32656687e-01 1.29595414e-01 -5.77813340e-03\\n1.74274385e-01 2.31232285e-01 -3.44024271e-01 1.39814094e-01\\n4.66874838e-02 9.11137462e-03 -4.38080817e-01 -2.16322675e-01\\n-3.58818136e-02 6.08031191e-02 -2.62648880e-01 1.21466264e-01\\n2.83727139e-01 -1.00893542e-01 -1.29488915e-01 -3.31690460e-01\\n3.49898607e-01 -2.24985704e-01 2.11519390e-01 4.28704500e-01\\n8.21274295e-02 4.24129367e-01 1.77948087e-01 -6.43748417e-02\\n-2.10442469e-01 1.07284054e-01 -2.51536816e-01 -2.19861388e-01\\n2.04499550e-02 -2.79826224e-01 -1.62333161e-01 3.19962859e-01\\n2.46529654e-01 -1.30109251e-01 -1.53067216e-01 2.36891910e-01\\n2.16386672e-02 -2.07675919e-01 -1.71114638e-01 2.55896419e-01\\n2.70094633e-01 2.07029253e-01 1.49202779e-01 -4.06806350e-01\\n-3.90828848e-02 -8.41231868e-02 -9.05008018e-02 4.07836646e-01\\n1.52112439e-01 2.01393485e-01 2.03600768e-02 -4.14964795e-01\\n4.76753592e-01 2.16903105e-01 4.15846594e-02 -7.28234351e-02\\n8.50751027e-02 8.14366248e-03 -2.40403339e-01 2.27113273e-02\\n-1.98693462e-02 -5.49510606e-02 1.45802200e-01 -2.41497919e-01\\n1.00420505e-01 -1.38219848e-01 -3.80500019e-01 -2.75887817e-01\\n-3.81832331e-01 -1.40890986e-01 -2.52496265e-03 -3.89981866e-01\\n5.54970391e-02 6.04089573e-02 -6.68318987e-01 2.86639869e-01\\n-3.63587290e-01 1.56249389e-01 1.19071156e-01 1.61085904e-01\\n-3.92769217e-01 1.69317231e-01 2.09626615e-01 1.05782941e-01\\n-4.81471896e-01 -3.09273452e-01 -1.31696433e-01 -8.13084662e-01\\n2.52962202e-01 -1.89657405e-01 3.48148011e-02 2.08722893e-02\\n-9.59798321e-02 -6.04943931e-01 2.39291757e-01 -8.84538516e-02\\n-2.25747630e-01 -6.80498034e-02 -1.72302455e-01 -4.82479483e-01\\n-4.50537167e-02 -1.36917740e-01 -2.00978220e-01 1.65193126e-01\\n-5.03558636e-01 2.89843470e-01 -3.55991162e-02 5.06649986e-02\\n8.14493280e-03 -2.43349507e-01 3.18292230e-01 -3.10668498e-01\\n-4.13975179e-01 -1.95887312e-01 -2.94962347e-01 -1.90938070e-01\\n-1.41077980e-01 -1.17171451e-01 -2.00812131e-01 1.81896985e-01\\n3.54121506e-01 1.30861104e-01 -1.68175530e-02 3.26921865e-02\\n1.41487792e-01 -1.61850914e-01 -4.65074107e-02 -2.44718060e-01\\n-6.26618490e-02 -6.39336705e-02 5.75679988e-02 -1.11566111e-01\\n-7.30644017e-02 -4.07560468e-01 6.87828600e-01 1.21179149e-01\\n-4.79206115e-01 -1.33613655e-02 1.99106693e-01 2.09150955e-01\\n4.06152278e-01 -4.84225869e-01 -6.93304911e-02 2.23510846e-01\\n2.63828374e-02 4.73140329e-02 2.65998214e-01 -1.13354661e-01\\n-1.48343608e-01 1.78893298e-01 -5.91777146e-01 1.05182968e-01\\n6.22700393e-01 2.00631604e-01 -6.58110678e-02 3.08557153e-01\\n-8.97377878e-02 5.58404207e-01 5.17252445e-01 1.67452823e-02\\n-7.53398240e-02 3.83529246e-01 1.72268171e-02 -6.03300154e-01\\n-1.43054336e-01 -2.19353244e-01 -1.83354318e-01 -3.60729903e-01\\n5.04765391e-01 3.96489918e-01 -4.21103060e-01 -2.15015277e-01\\n-1.94985911e-01 -2.20019430e-01 -1.59884781e-01 -1.35815442e-01\\n1.43511361e-02 -2.59410501e-01 5.47218919e-01 1.05530985e-01\\n2.75084794e-01 7.14028299e-01 -3.10415447e-01 -3.93612802e-01\\n-3.36150855e-01 1.67555928e-01 3.41161311e-01 1.82545453e-01\\n-1.00661471e-01 2.42457375e-01 -1.43321246e-01 1.35710791e-01\\n-2.73820698e-01 2.33240113e-01 2.48397272e-02 1.32691786e-01\\n2.19975501e-01 3.34733963e-01 1.19533271e-01 3.72838616e-01\\n3.23670685e-01 5.64780533e-01 2.18470395e-01 1.19084522e-01\\n4.67782944e-01 4.26479429e-01 3.15203428e-01 1.15103938e-01\\n4.66850912e-03 1.07517339e-01 -1.65863082e-01 1.07304282e-01\\n2.32216865e-01 3.22145849e-01 2.75832266e-01 8.40886235e-01\\n3.58153433e-01 5.46346903e-02 7.29045808e-01 -6.53291941e-01\\n-2.41502762e-01 -5.55691011e-02 8.74549896e-02 -4.87112373e-01\\n-1.82437658e-01 3.89483348e-02 -4.03061002e-01 1.08470693e-01\\n-5.15620530e-01 -4.39346507e-02 8.92796218e-02 -2.14283571e-01\\n1.02677934e-01 -9.59531888e-02 -1.22062981e-01 -3.36331993e-01\\n-1.78827614e-01 -2.92809367e-01 -2.73458362e-01 -1.80014253e-01\\n-3.71597886e-01 -7.50038698e-02 -4.40386347e-02 -1.39283046e-01\\n3.10371947e-02 -5.06845653e-01 -2.81092077e-01 9.64444503e-02\\n4.03362930e-01 -8.86769369e-02 1.20341919e-01 -2.47518152e-01\\n1.44970760e-01 2.80793220e-01 8.26500118e-01 6.51479438e-02\\n9.19306502e-02 -1.64960876e-01 -1.22731850e-01 1.35389656e-01\\n6.57837689e-02 6.79863915e-02 1.99540406e-01 5.95229566e-01\\n-4.86979753e-01 1.77804306e-02 1.55978024e-01 3.20585877e-01\\n-4.50610757e-01 1.18592173e-01 2.95742214e-01 4.47662920e-01\\n2.92139370e-02 1.55404225e-01 -1.79437578e-01 8.24090987e-02\\n-3.42896551e-01 -5.03649592e-01 4.66413617e-01 -8.23304653e-02\\n-6.71522617e-02 2.22958215e-02 3.52928668e-01 1.54441074e-01\\n4.54804935e-02 -8.06272626e-02 -1.31323606e-01 3.78863871e-01\\n1.24294408e-01 3.98026466e-01 -2.71633506e-01 5.08692414e-02\\n-2.93034434e-01 2.12390274e-01 -4.95093912e-02 -7.65819754e-03\\n-1.41323939e-01 2.57717103e-01 3.34321745e-02 3.11077327e-01\\n1.56650953e-02 -3.45432848e-01 -2.57361263e-01 -3.50164235e-01\\n-3.34913731e-01 -2.68865496e-01 2.94785947e-01 -1.04922295e-01\\n2.99656779e-01 -4.62145299e-01 -6.01701401e-02 7.38805234e-02\\n-1.54420197e-01 -4.58113551e-01 -2.02607751e-01 5.47333900e-03]]',\n", + " 'job_description': 'Role Description : SA836: Database Administrator (M / F) Location - Switzerland Utilization - full time Project language - French, English, Italian, Romansh Project start - ASAP Your area of responsibility: Design, Sizing of Middleware / Application Server Environments High availability solutions for application servers and middleware solutions Your requirements: Experience in administration of Oracle middleware systems Knowledge of J2EE, Java, network and web architectures ',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Oracle Fusion Middleware\", \"Database Administration\", \"High Availability Clusters\", \"M (Programming Language)\", \"Application Servers\", \"Java (Programming Language)\", \"Middleware\"]',\n", + " 'languages': \"['English', 'Komi']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software engineer c++',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.vizrt.com',\n", + " 'jobdescription_embedded': '[[-1.77046180e-01 2.56629318e-01 5.47789216e-01 -8.72845799e-02\\n4.58264351e-01 -2.27148786e-01 -1.52273700e-02 5.48293829e-01\\n-3.73170003e-02 -4.45374846e-01 -1.15332536e-01 -3.01676482e-01\\n-1.57965366e-02 2.03475595e-01 1.91747665e-01 4.31744605e-01\\n2.58077502e-01 1.52363688e-01 -2.36010253e-01 2.54429728e-01\\n1.31916910e-01 -1.83828831e-01 1.88189387e-01 8.45517635e-01\\n4.67096806e-01 6.94048032e-03 -1.09823048e-01 5.81530668e-02\\n-2.49117091e-01 -2.42752522e-01 3.74561489e-01 -6.22206405e-02\\n-1.29853949e-01 -3.94354820e-01 2.59468667e-02 1.18106231e-01\\n-1.60450161e-01 -1.31783709e-02 -1.13779105e-01 1.82403326e-01\\n-5.24675965e-01 -2.28636056e-01 -8.50881189e-02 -1.14142271e-02\\n-1.70233503e-01 -3.60536098e-01 5.94463870e-02 -9.05609131e-03\\n2.26681739e-01 2.64729299e-02 -4.40008730e-01 3.69302839e-01\\n-2.09974661e-01 -2.15674937e-01 2.49322340e-01 6.96374059e-01\\n-1.02219142e-01 -3.99488777e-01 -5.91673493e-01 -3.31744850e-01\\n1.15496323e-01 -6.04107827e-02 -3.78138535e-02 -3.44483733e-01\\n2.84924984e-01 6.57527223e-02 -2.24144179e-02 2.32287645e-01\\n-7.85692036e-01 -1.38006657e-01 -2.30577648e-01 -6.17521256e-02\\n-2.98465699e-01 -1.26506671e-01 -3.18970948e-01 -1.23289905e-01\\n-8.10942128e-02 3.84754539e-01 2.91590672e-02 2.34240899e-04\\n-4.16664630e-02 3.21706593e-01 -2.17254192e-01 4.56492394e-01\\n5.81679344e-02 3.48595887e-01 2.09566861e-01 2.89278805e-01\\n-2.85338819e-01 4.02124882e-01 1.07924327e-01 -4.42762673e-01\\n2.12377995e-01 1.57186806e-01 4.76472825e-01 -1.28068358e-01\\n1.95794418e-01 1.26100004e-01 -3.35816324e-01 3.35960716e-01\\n3.23185265e-01 -2.58979440e-01 1.13196701e-01 -1.28594533e-01\\n3.80196795e-02 7.60952337e-03 7.24857002e-02 2.14933380e-01\\n-3.44083726e-01 5.26543379e-01 5.92262186e-02 -2.51241088e-01\\n-6.71639889e-02 -5.83147705e-01 -1.72453374e-01 3.71607840e-02\\n-1.59314144e-02 2.06628084e-01 1.10697925e-01 2.25967705e-01\\n2.21368283e-01 -1.28978789e-01 1.80654988e-01 9.16546583e-01\\n-1.67754069e-01 1.07809659e-02 -2.71616310e-01 3.84983778e-01\\n5.61602339e-02 -3.12832773e-01 2.51790136e-01 1.70036837e-01\\n3.25886458e-02 5.23857959e-03 -2.32835650e-01 3.56133640e-01\\n-1.44900009e-02 -3.81758213e-01 -3.80399823e-01 2.76504576e-01\\n-1.68243386e-02 -4.69684482e-01 5.76696873e-01 6.13354668e-02\\n8.42552930e-02 -1.67710036e-01 -1.03885412e-01 -4.56302240e-02\\n-7.81441852e-03 1.00583486e-01 1.02067843e-01 1.03062149e-02\\n-3.35084528e-01 -2.77626872e-01 -2.62408018e-01 2.03954488e-01\\n-4.10650134e-01 1.63495004e-01 -1.10919878e-01 -1.20083325e-01\\n2.41403490e-01 -1.38464998e-02 -3.31671089e-01 3.23547781e-01\\n-1.68942481e-01 5.28685115e-02 -2.24709697e-02 4.02060032e-01\\n-3.88736844e-01 2.57957637e-01 -8.72027725e-02 -3.69510427e-02\\n5.78941643e-01 2.15429366e-02 1.15012199e-01 -5.44378161e-02\\n3.27076495e-01 -4.52025086e-02 1.42302126e-01 8.08842704e-02\\n-6.74037218e-01 2.17647582e-01 -8.76648054e-02 -1.66929796e-01\\n2.10992247e-01 -2.34052837e-01 2.93857485e-01 -2.68756211e-01\\n-1.43920109e-02 -1.30767584e-01 -2.87037104e-01 -2.91035414e-01\\n-2.75551558e-01 -1.42262906e-01 4.05154943e-01 -3.93167049e-01\\n-9.94281545e-02 3.30177605e-01 -4.71868187e-01 1.68837793e-02\\n2.13203251e-01 3.13118696e-01 1.39120951e-01 1.59476340e-01\\n-1.97395086e-01 -4.99492645e-01 1.28882065e-01 -2.97129810e-01\\n-2.66290724e-01 1.72522768e-01 -3.02472830e-01 3.62098277e-01\\n1.27843127e-01 -1.88607648e-02 -1.65458038e-01 1.69863150e-01\\n-2.14063153e-01 5.32847196e-02 7.53662661e-02 -6.52361214e-02\\n2.14508653e-01 8.74546617e-02 -3.30292225e-01 4.38094378e-01\\n-1.40505254e-01 6.02314830e-01 6.96143731e-02 -9.32134628e-01\\n4.58917916e-01 2.90116131e-01 -6.25308454e-02 -2.59224534e-01\\n6.63182139e-01 -3.05426598e-01 -2.07321733e-01 1.01229087e-01\\n-4.29677665e-01 -3.41619730e-01 1.34409532e-01 -1.89363539e-01\\n-1.71838224e-01 4.84658062e-01 1.81578040e-01 1.28144443e-01\\n3.08547437e-01 -1.35448188e-01 -1.06104434e-01 8.09366927e-02\\n-1.78817958e-01 -3.36376280e-01 -4.52938497e-01 -1.34847566e-01\\n-8.35239887e-02 -4.27322686e-01 -1.61685497e-01 -3.27366531e-01\\n-2.73520052e-01 -4.40966070e-01 -7.42473230e-02 6.31120503e-02\\n5.29323578e-01 1.82593137e-01 -2.25607492e-02 7.26778433e-02\\n-9.47892964e-02 -5.88080287e-01 -3.37037668e-02 8.22199881e-02\\n2.75496960e-01 3.38718951e-01 2.81987973e-02 1.17040582e-01\\n4.44842130e-02 7.26986647e-01 -1.56654805e-01 -1.37062058e-01\\n2.42328942e-01 1.05221167e-01 7.23317191e-02 -2.24393606e-01\\n1.12925127e-01 2.84797609e-01 -3.80705178e-01 2.16326967e-01\\n-1.23477742e-01 -6.66873306e-02 4.42710280e-01 1.98694225e-02\\n-2.97763765e-01 -1.94848582e-01 -1.11668698e-01 5.56276515e-02\\n-5.97747445e-01 -2.80714124e-01 7.03813791e-01 7.15757087e-02\\n1.14310548e-01 8.65345448e-02 7.49695152e-02 -6.81588799e-02\\n-2.15446979e-01 -4.99996692e-02 2.05205262e-01 -3.15017439e-02\\n1.34827286e-01 1.67425752e-01 -2.54694838e-03 -6.44005001e-01\\n-3.14929295e+00 -8.17546546e-02 9.31493714e-02 -2.02253237e-01\\n1.52211756e-01 -1.86740726e-01 -8.76563564e-02 -8.05426091e-02\\n-3.43034834e-01 5.76839894e-02 -1.74478710e-01 -2.40619153e-01\\n2.22384721e-01 1.71616241e-01 1.69753820e-01 2.44344532e-01\\n2.46716321e-01 -8.22361410e-02 -5.14799245e-02 4.16415453e-01\\n-1.19632587e-01 -6.36925578e-01 3.11752617e-01 -5.39120063e-02\\n4.05984253e-01 3.41760427e-01 -4.25855041e-01 -1.87807769e-01\\n-2.55707711e-01 -2.56909579e-01 6.88974261e-02 -2.67798007e-01\\n-1.24046110e-01 5.06807566e-01 1.74057901e-01 -1.44169778e-01\\n1.40203744e-01 -4.46136832e-01 -7.62810558e-02 -4.61429179e-01\\n1.64929390e-01 -6.23130560e-01 1.78097747e-03 -2.97189113e-02\\n7.01413989e-01 -3.66243958e-01 1.03605710e-01 1.21019155e-01\\n1.68941915e-01 2.06711859e-01 1.02994964e-01 -9.96861979e-03\\n-2.44660646e-01 -1.73305288e-01 -1.01265468e-01 -1.42713115e-01\\n5.72849035e-01 4.53557312e-01 -1.17999464e-01 1.64781157e-02\\n8.95838439e-03 -3.66470307e-01 -5.22058725e-01 -2.14798570e-01\\n-9.98131111e-02 -2.18966320e-01 -6.71041012e-01 -4.69433904e-01\\n-1.05260186e-01 -1.98981404e-01 -1.58466622e-02 4.52420443e-01\\n-1.80115536e-01 -3.10126334e-01 -1.52375966e-01 -4.09972489e-01\\n2.88049668e-01 -4.15626727e-02 -2.79788077e-02 -2.89235353e-01\\n-1.80577070e-01 -5.33810496e-01 9.29278061e-02 6.48258850e-02\\n-1.03003204e-01 -2.60149717e-01 1.49994135e-01 -1.90178141e-01\\n-1.65564105e-01 -5.11513531e-01 4.98433530e-01 1.08519546e-03\\n2.94330776e-01 1.55728996e-01 2.23719239e-01 3.84150334e-02\\n2.25060612e-01 -1.25169098e-01 7.21530393e-02 -4.27450567e-01\\n-1.21291168e-02 3.76475863e-02 5.32884598e-01 -1.60170779e-01\\n-5.16717955e-02 1.14732005e-01 -2.07463846e-01 -8.49666521e-02\\n2.16149747e-01 7.58984983e-02 1.75401121e-01 -1.81778744e-01\\n1.61779150e-01 -2.06549525e-01 -9.10591781e-02 1.43960575e-02\\n1.51126802e-01 5.80509722e-01 -1.31564215e-01 -3.98501515e-01\\n-5.65526523e-02 4.72444147e-01 -5.00711314e-02 2.54415423e-02\\n-1.82968423e-01 1.36276469e-01 -3.19193661e-01 2.14246944e-01\\n-7.45273679e-02 -1.58939913e-01 -2.92337656e-01 -1.36671692e-01\\n-3.76931094e-02 4.07748908e-01 2.78983623e-01 1.44077390e-01\\n-8.36420506e-02 -5.25711596e-01 -2.23095343e-02 1.87403023e-01\\n1.81500822e-01 4.83870357e-01 1.38824195e-01 -2.67379403e-01\\n3.10346391e-02 3.69480461e-01 -1.21721283e-01 2.79140562e-01\\n-3.05510670e-01 1.04455501e-01 -6.61286592e-01 -2.32293785e-01\\n-2.77071357e-01 -3.16626608e-01 7.72752687e-02 4.10246789e-01\\n9.79624838e-02 -1.17385000e-01 1.04726620e-01 -4.58217144e-01\\n3.74075085e-01 2.14205999e-02 1.19314514e-01 1.42173186e-01\\n9.91608761e-03 5.91725588e-01 5.25593013e-02 -1.82521850e-01\\n-1.34943843e-01 1.89930469e-01 -1.97583556e-01 -4.72806208e-02\\n-3.50926518e-02 -4.98448730e-01 -1.06936380e-01 3.01037520e-01\\n2.94150189e-02 -1.66277111e-01 -1.30909562e-01 2.66016632e-01\\n-2.22116336e-03 -2.73526132e-01 -2.68286526e-01 5.75336441e-02\\n4.14756298e-01 1.91234142e-01 2.96636045e-01 -5.25936961e-01\\n1.96620394e-02 -7.48792514e-02 -1.35381483e-02 6.25985861e-01\\n6.61890358e-02 4.29921225e-03 -2.12375730e-01 -1.86815560e-01\\n4.11891013e-01 -1.84130013e-01 -7.48777986e-02 1.00673459e-01\\n8.33585635e-02 -2.31009096e-01 -3.58689070e-01 1.60594344e-01\\n-3.37051004e-02 -1.76141173e-01 -6.13207929e-02 1.73765182e-01\\n1.48413360e-01 1.41172081e-01 -5.64824581e-01 -2.08435595e-01\\n-2.45114207e-01 1.04488311e-02 3.40926833e-02 -4.97675776e-01\\n-1.72357857e-02 -1.41496271e-01 -4.99220550e-01 2.32869849e-01\\n-2.25828290e-01 -1.09538980e-01 1.83097780e-01 2.29210034e-03\\n-3.67555618e-01 -2.37092346e-01 1.79153740e-01 2.85908550e-01\\n-2.49347061e-01 -2.44596720e-01 -2.38113292e-03 -8.92378807e-01\\n2.90414393e-01 2.45186239e-02 -1.73310444e-01 1.57677621e-01\\n-5.55469133e-02 -7.07333088e-01 1.56028166e-01 -4.12621975e-01\\n-1.41886055e-01 -6.31263703e-02 -1.99268788e-01 -4.23546731e-01\\n3.67035419e-02 8.83450173e-03 -2.42549568e-01 4.57460821e-01\\n-3.56322080e-01 3.52765024e-01 -2.62547135e-01 1.31413773e-01\\n-7.89589956e-02 -3.23431075e-01 1.18889757e-01 -5.48351884e-01\\n-3.44765484e-01 -1.38689518e-01 -3.31980407e-01 -1.74490869e-01\\n1.90829299e-02 -2.45149463e-01 -1.96253955e-01 8.05857480e-02\\n2.13078678e-01 -6.76377937e-02 -2.07978532e-01 -2.80966461e-01\\n1.70643385e-02 -4.66847241e-01 5.08031622e-02 -4.59204353e-02\\n-1.04757965e-01 -7.05693737e-02 2.46883541e-01 1.57358333e-01\\n2.64922798e-01 -4.58063811e-01 3.80105078e-01 -4.11942095e-01\\n-3.00559402e-01 -1.09593339e-01 1.48376031e-03 1.82287712e-02\\n3.62692773e-01 -4.77761596e-01 -1.01287141e-02 3.75146091e-01\\n2.19972923e-01 5.86541034e-02 2.01122612e-01 -6.59990832e-02\\n-1.14597201e-01 3.02348912e-01 -3.10396254e-01 3.44828516e-02\\n8.53453755e-01 3.82500961e-02 2.41570860e-01 1.16111957e-01\\n1.78004503e-01 2.54506916e-01 3.16239566e-01 -2.90300865e-02\\n-1.38223201e-01 3.49256694e-01 1.15436524e-01 -4.88376379e-01\\n-1.38280317e-01 4.60150167e-02 -2.99348950e-01 -4.25727963e-01\\n6.41443729e-01 4.03710902e-01 -2.98482239e-01 -1.06796749e-01\\n-1.23506293e-01 -1.01538002e-01 1.48052394e-01 -1.38370693e-01\\n1.38968766e-01 -1.64310038e-01 3.83343130e-01 -8.19118246e-02\\n1.57438919e-01 5.72071671e-01 -1.87432259e-01 -3.38175088e-01\\n4.76191379e-03 1.83620274e-01 -1.31619051e-02 4.06564415e-01\\n-2.95923710e-01 3.67138296e-01 -4.81122136e-02 1.40856445e-01\\n-1.34187981e-01 2.05805779e-01 1.57242224e-01 2.80693360e-03\\n1.59253269e-01 7.88425356e-02 5.93236387e-01 4.12072301e-01\\n4.55301881e-01 3.24033141e-01 2.74644703e-01 -2.07591970e-02\\n5.31782389e-01 4.67112422e-01 3.58952433e-01 1.74257711e-01\\n5.59177361e-02 4.44199964e-02 1.73239782e-01 1.06581867e-01\\n3.04539025e-01 2.19690382e-01 5.76414764e-02 9.97816563e-01\\n4.11790669e-01 2.66025871e-01 7.32808352e-01 -6.78185165e-01\\n-2.79311180e-01 -3.46836559e-02 4.73846823e-01 -4.01882291e-01\\n-2.37719920e-02 9.90024805e-02 -2.13972166e-01 1.59011781e-01\\n-4.14214969e-01 -3.16164732e-01 -1.18679479e-01 9.19205099e-02\\n-4.94345371e-03 -1.96245492e-01 -1.98717564e-01 1.33768782e-01\\n-8.88219029e-02 -1.27493829e-01 -6.06339991e-01 -3.77791077e-02\\n-2.51960188e-01 -2.29738176e-01 -2.21184582e-01 -1.92418545e-01\\n-1.68771058e-01 -2.77095884e-01 -9.28361416e-02 -6.36054724e-02\\n1.79586500e-01 -1.92318290e-01 -7.11112320e-02 -2.04497993e-01\\n3.65317553e-01 1.70582205e-01 5.40863335e-01 5.14017865e-02\\n1.48754507e-01 -3.42131197e-01 -2.28654206e-01 1.61648080e-01\\n2.19933227e-01 3.77353430e-02 6.61360621e-02 2.98703074e-01\\n-3.48388940e-01 -2.41821438e-01 6.32560626e-03 3.68635416e-01\\n-4.53299344e-01 1.72404870e-02 -7.05558658e-02 2.44711280e-01\\n1.07839063e-01 6.21089414e-02 -1.08920686e-01 -4.61726170e-03\\n-9.65857282e-02 -5.49805522e-01 2.18791604e-01 7.12216944e-02\\n-1.76052228e-01 1.14705861e-01 2.54397035e-01 1.45167157e-01\\n-2.97064334e-01 -6.45915344e-02 -1.08516708e-01 1.14809357e-01\\n1.56517908e-01 4.05665666e-01 -2.97802120e-01 -3.14509869e-01\\n-3.15246314e-01 1.05698876e-01 -2.18795508e-01 -5.70882298e-02\\n6.24846555e-02 3.43230367e-01 1.49295583e-01 2.56716274e-02\\n4.92708802e-01 -5.77100031e-02 -2.07298160e-01 -1.88778400e-01\\n-9.82521027e-02 -1.66690469e-01 -1.93059385e-01 -1.86665580e-02\\n2.86251307e-01 -2.34294251e-01 -9.97916237e-02 -2.02726364e-01\\n-1.21421479e-01 -3.57192099e-01 1.30815029e-01 -1.93166345e-01]]',\n", + " 'job_description': 'Vizrt provides real-time 3D graphics, studio automation, sports analysis and asset management tools for the broadcast industry. This includes interactive and virtual solutions, animations, maps, weather, video editing and compositing tools. Vizrt has customers in more than 100 countries worldwide including such as CNN, CBS, Fox, the BBC, BSkyB, Al Jazeera, ZDF, CCTV, and the list keeps growing. This is possible due to 600 engaged and very competent employees in 40 offices around the world. In our R&D team in Zürich/Switzerland we create award-winning, unique and high-tech software dedicated to sports media productions. We strive to develop first-class media enhancement technology and we need your excellent C++ programming skills to develop the best products for Vizrt around sports media creation. To strengthen our software engineering team, we have an immediate opening for a proactive, pragmatic, and team-oriented SOFTWARE ENGINEER (C++) You complement the engineering team with your expertise and experience in application development and you will help us to advance the innovative and technologically advanced product lines related to sports. In close collaboration with your colleagues, you will be working on our challenging, exciting, and interesting software engineering tasks. What are we looking for? You are a pragmatic, team-oriented, flexible, independent and motivated software engineer You have excellent C++ programming skills and ideally already some experience You have at least a MSc in Computer Science, and some knowledge in Software Design or Architecture Good English capabilities is a must. German is not a requirement but helpful in private life. Background knowledge in Computer Graphics, Computer Vision and/or Machine Learning is a plus. Experience with Visual Studio or Qt SDK is a plus. We expect efficiency and pragmatic problem-solving skills. Your interest and enthusiasm for sports helps us to deliver the next generation of sports media technology. What do we offer? At Vizrt, you will find a challenging and diversified software engineering position in our dynamic, innovative, and fast-growing high-tech environment. Interesting tasks are waiting for your excellent solutions and your main focus will be on high quality application development where you will be integrated in the full development cycle. Sporadic field services at international sports media productions and infrequent second level support are part of the profile. If you find this interesting and want to be a part of our team submit your CV and application by clicking the \"Apply now\" button or at vizrt.com. Click here to read about our online privacy and personal data policies. jVL8HHgSoa',\n", + " 'soft_skills': '[\"Team Oriented\", \"Collaboration\", \"Proactivity\", \"Problem Solving\", \"Enthusiasm\", \"Integration\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Real Time Data\", \"Video Editing\", \"Frameforge 3D Studio\", \"MSC Software\", \"Tooling\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Field Service Management\", \"Virtualization\", \"Industrialization\", \"Scholastic READ 180\", \"Compositing\", \"C++ (Programming Language)\", \"Media Production\", \"Computer Vision\", \"Component Object Model (COM)\", \"High Tech Manufacturing\", \"Levelling\", \"Idealization\", \"Product Lining\", \"Software Engineering\", \"Microsoft Visual Studio\", \"Machine Learning Methods\", \"Automation Studio\", \"Animations\", \"Personalization\", \"Weather Maps\", \"Qt (Software)\", \"Software Design\", \"Real-Time Computer Graphics\", \"Computer Graphics\", \"Asset Management\", \"Closed-Circuit Television Systems (CCTV)\", \"Broadcasting\"]',\n", + " 'languages': \"['English', 'Dutch', 'North Ndebele']\"},\n", + " {'company_id': '70',\n", + " 'job_title': 'blockchain engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.68468460e-01 1.95393801e-01 4.78372335e-01 6.75854832e-02\\n4.87819761e-01 -2.82376140e-01 -2.54423451e-02 3.55114311e-01\\n-4.72318605e-02 -4.13300365e-01 1.08802542e-02 -2.17324018e-01\\n-8.63056108e-02 1.96554944e-01 1.50316522e-01 2.86524832e-01\\n2.80053586e-01 1.19370423e-01 -2.13149682e-01 3.43104661e-01\\n1.08419441e-01 -1.43764347e-01 8.43892172e-02 7.31656373e-01\\n5.02883852e-01 1.18845157e-01 -8.51071849e-02 -6.51941374e-02\\n-2.00312302e-01 -1.17461666e-01 4.12943602e-01 -5.08855991e-02\\n1.39200501e-02 -4.22871172e-01 8.63478854e-02 8.00476968e-02\\n-2.75455445e-01 -3.40935774e-02 -1.72808006e-01 6.71390668e-02\\n-5.16399801e-01 -2.47503713e-01 6.95148483e-02 1.02146737e-01\\n-2.13476911e-01 -3.08765799e-01 -1.20800585e-02 -1.02312997e-01\\n2.01180547e-01 -1.14113867e-01 -5.64438999e-01 2.59424984e-01\\n-3.22751343e-01 -2.16957435e-01 3.38575631e-01 5.00837743e-01\\n4.50727064e-03 -5.11066973e-01 -5.08156300e-01 -3.34673554e-01\\n3.30006294e-02 -1.46670029e-01 7.78580038e-03 -4.02091473e-01\\n1.60111576e-01 6.53976947e-02 2.23203283e-02 3.62454116e-01\\n-8.19269180e-01 -2.16271039e-02 -1.65190935e-01 -8.58361796e-02\\n-2.21615225e-01 -1.38777211e-01 -4.41558629e-01 -7.51838610e-02\\n-1.93957537e-01 3.55459452e-01 2.50686556e-02 9.97776389e-02\\n-1.84704602e-01 2.92569965e-01 -2.09179953e-01 5.54519832e-01\\n1.63094535e-01 1.71547756e-01 2.99889207e-01 3.01817238e-01\\n-4.17024523e-01 5.24201453e-01 1.23840585e-01 -2.44275928e-01\\n2.06258327e-01 1.25662357e-01 4.22664255e-01 -8.36619176e-03\\n2.46818751e-01 5.20144776e-02 -2.67222583e-01 2.46677428e-01\\n2.78042644e-01 -2.61716634e-01 -8.61731172e-03 -2.30660141e-01\\n3.63985822e-02 1.24001391e-02 3.13709229e-02 1.80315226e-01\\n-1.92323804e-01 3.92479241e-01 2.65232980e-01 -1.30896226e-01\\n-1.37121320e-01 -3.56515795e-01 -8.72644968e-03 1.14346676e-01\\n-6.79602940e-03 1.68162644e-01 1.66851059e-01 1.06791712e-01\\n1.98243946e-01 1.72827840e-02 1.67909209e-02 7.68485010e-01\\n-1.80048585e-01 1.87098558e-04 -3.54871064e-01 2.75915623e-01\\n1.04191199e-01 -2.87925333e-01 1.62882894e-01 2.11060390e-01\\n-8.03618599e-03 -1.44614473e-01 -2.52845973e-01 3.23427349e-01\\n-5.77862859e-02 -1.90861061e-01 -3.16779524e-01 1.63235545e-01\\n-4.22011986e-02 -4.35643405e-01 6.77681088e-01 1.72786817e-01\\n1.70842141e-01 4.74997424e-02 9.18760970e-02 -1.04974009e-01\\n-1.21745706e-01 2.43502468e-01 1.68498661e-02 1.42088905e-01\\n-2.97266066e-01 -2.48426914e-01 -2.20340118e-01 5.31079359e-02\\n-3.53875995e-01 1.63790390e-01 -4.93040793e-02 -5.10825180e-02\\n2.07125947e-01 2.91259754e-02 -2.09692597e-01 2.98948228e-01\\n-4.38979305e-02 7.54645932e-03 5.21159805e-02 3.19464803e-01\\n-1.56767979e-01 2.43637636e-01 -3.64555307e-02 -4.13924642e-02\\n6.12645805e-01 1.75754026e-01 2.14743182e-01 -6.57452270e-02\\n2.77105480e-01 -3.88757735e-02 1.49376586e-01 3.11876778e-02\\n-6.45414054e-01 2.59329230e-01 5.70899993e-02 -1.21646412e-01\\n1.19097285e-01 -2.98014693e-02 1.75929904e-01 -3.05881202e-01\\n-2.00935407e-04 -1.84454009e-01 -2.73383349e-01 -2.74596423e-01\\n-2.00708032e-01 -1.27511369e-02 3.98670256e-01 -3.94281983e-01\\n-2.26214174e-02 2.51627117e-01 -4.86678213e-01 -8.65713507e-02\\n2.12565795e-01 1.01392210e-01 6.82993084e-02 1.20017014e-01\\n-1.50982037e-01 -4.38944727e-01 1.46156415e-01 -3.56577694e-01\\n-3.26340854e-01 -3.60354297e-02 -3.87990326e-01 2.26337209e-01\\n8.21759552e-02 -1.03959262e-01 -6.09193295e-02 1.40267029e-01\\n-1.43070221e-01 -6.58371001e-02 8.95720348e-02 -2.09132116e-02\\n4.23394650e-01 9.02603641e-02 -3.58470291e-01 4.84389424e-01\\n-2.22347751e-01 6.42471850e-01 1.22036740e-01 -8.54788780e-01\\n4.86847222e-01 4.51029271e-01 -2.22205501e-02 -4.25716311e-01\\n4.57362264e-01 -3.08423281e-01 -8.47894475e-02 9.03135762e-02\\n-4.43624824e-01 -4.21901405e-01 1.91134706e-01 -2.32254505e-01\\n-2.03272209e-01 4.67373133e-01 -2.38604899e-02 8.68854448e-02\\n2.02216119e-01 -2.87575275e-01 -8.46838579e-02 1.26395568e-01\\n-3.71113792e-03 -2.67661542e-01 -4.99800414e-01 -1.36312723e-01\\n-1.33690327e-01 -4.62134868e-01 -6.19769655e-02 -4.29999679e-01\\n-2.10538030e-01 -3.86619866e-01 -3.01822841e-01 9.19876099e-02\\n3.20785791e-01 1.02381416e-01 -3.63909230e-02 8.68297368e-02\\n-9.50479656e-02 -5.93751550e-01 4.63519432e-02 1.04387574e-01\\n5.26489019e-01 2.06089199e-01 1.50072441e-01 5.47099113e-02\\n5.22938147e-02 6.47151351e-01 -2.19208062e-01 -1.75553992e-01\\n1.53151587e-01 1.64307430e-01 7.20725507e-02 -2.12647468e-01\\n1.11584969e-01 4.12869960e-01 -4.19233263e-01 2.04858575e-02\\n-5.99975586e-02 1.84085835e-02 4.28330779e-01 1.48830870e-02\\n-3.37903947e-01 -2.15078473e-01 -9.55346897e-02 1.69807807e-01\\n-5.44620335e-01 -2.22011834e-01 5.47935486e-01 2.34720781e-01\\n1.78123236e-01 1.63674012e-01 1.93995818e-01 4.80238460e-02\\n-2.29804918e-01 -1.87871486e-01 1.75484166e-01 4.52531390e-02\\n9.24961567e-02 1.30912811e-01 -2.06056125e-02 -5.81556797e-01\\n-3.30706358e+00 -1.41556427e-01 2.85968393e-01 -2.57712066e-01\\n2.61773556e-01 -1.12077564e-01 2.05858843e-03 -4.84175496e-02\\n-1.88750342e-01 5.94708286e-02 -1.70638084e-01 -1.68995157e-01\\n1.42115250e-01 1.41707420e-01 1.11504219e-01 1.97914764e-01\\n2.55341053e-01 -1.98245332e-01 -4.48364811e-03 3.02295744e-01\\n-2.51424015e-01 -6.43631041e-01 1.70472294e-01 -5.69942258e-02\\n3.16867918e-01 2.33767211e-01 -3.82321060e-01 -1.67208433e-01\\n-2.35652789e-01 -1.97018191e-01 3.73924002e-02 -2.90840000e-01\\n-5.28034940e-02 2.56689250e-01 1.42779082e-01 -1.19503327e-01\\n7.36161023e-02 -4.03617293e-01 -2.17268869e-01 -5.09667456e-01\\n1.83405012e-01 -5.96939921e-01 -4.73246463e-02 -4.95985746e-02\\n6.87128425e-01 -4.26640600e-01 1.34064451e-01 3.02347168e-02\\n2.26175830e-01 1.46187767e-01 -1.42032728e-02 9.99262277e-03\\n-2.39632025e-01 -2.68486410e-01 -2.79213060e-02 -1.63060337e-01\\n5.58497250e-01 3.98272485e-01 -2.43545681e-01 2.37644929e-02\\n1.01063572e-01 -3.05014789e-01 -3.93647701e-01 -1.66734576e-01\\n-1.12146735e-01 -3.05227906e-01 -5.07612646e-01 -3.61538738e-01\\n-2.28629515e-01 -1.67111933e-01 -1.12317868e-01 5.80709994e-01\\n-3.56066585e-01 -3.25975925e-01 1.08223118e-01 -5.23435771e-01\\n3.02419871e-01 -1.03284545e-01 2.00624764e-02 -2.58486599e-01\\n-2.29125813e-01 -4.98199642e-01 4.29933593e-02 2.20644604e-02\\n-5.02996892e-02 -2.52692878e-01 1.22303784e-01 1.23431534e-03\\n-2.47908100e-01 -5.17464042e-01 3.56322497e-01 1.28059655e-01\\n2.67838597e-01 1.49527460e-01 3.65741640e-01 -9.96899158e-02\\n2.44188562e-01 -5.37273139e-02 -3.33115645e-03 -3.20107847e-01\\n1.05933622e-01 9.40497667e-02 4.21075284e-01 -1.29508510e-01\\n-1.43303787e-02 1.95101112e-01 -2.33309075e-01 -5.84666282e-02\\n3.40079635e-01 5.71669266e-02 9.72953290e-02 -1.47836089e-01\\n2.82720089e-01 -2.05758214e-01 -1.22505061e-01 -5.17642545e-03\\n1.01435564e-01 5.96137822e-01 4.20606546e-02 -3.03145856e-01\\n-7.29568452e-02 6.55649185e-01 -6.28896654e-02 1.03956975e-01\\n-2.74326473e-01 9.81071889e-02 -1.38935447e-01 2.50987560e-01\\n3.80088371e-04 -2.72463024e-01 -1.98690802e-01 -1.62705302e-01\\n-2.13397786e-01 2.28916928e-01 1.92228884e-01 8.48888680e-02\\n-1.81680508e-02 -5.15264213e-01 -1.28227204e-01 1.66177288e-01\\n1.22475505e-01 5.21942496e-01 7.60065690e-02 -2.09310502e-01\\n-8.67229607e-03 3.51030737e-01 -9.00594667e-02 1.10057876e-01\\n-2.94403017e-01 1.10745274e-01 -4.67044026e-01 -1.88935280e-01\\n-2.47998461e-01 -4.90912855e-01 7.85784200e-02 3.07555497e-01\\n1.60013929e-01 2.38027684e-02 9.16237310e-02 -4.92324710e-01\\n2.67835557e-01 1.36283562e-01 1.60886288e-01 6.61901459e-02\\n2.35196743e-02 4.99020576e-01 -1.12882657e-02 -1.02792159e-01\\n-2.74634600e-01 1.29077211e-01 -2.12125927e-01 -1.42922103e-01\\n4.41108271e-02 -5.47638774e-01 -9.05696824e-02 3.47084314e-01\\n1.17797136e-01 -2.01226801e-01 -1.87169597e-01 1.99218735e-01\\n-5.37028862e-03 -2.27552533e-01 -3.25852424e-01 7.24395514e-02\\n3.08488071e-01 4.19133976e-02 3.38949263e-01 -4.31137204e-01\\n-1.87176652e-03 -5.40392590e-04 -8.25907513e-02 4.36573118e-01\\n1.12554058e-01 9.97819975e-02 -2.30789095e-01 -1.69748172e-01\\n3.39253455e-01 -2.28998616e-01 -3.45900469e-02 -8.98252279e-02\\n1.53048232e-01 -1.73386857e-01 -4.55334187e-01 7.99139217e-02\\n4.48237434e-02 -1.51555300e-01 2.40246635e-02 1.12471528e-01\\n1.18461609e-01 9.49100703e-02 -5.37375331e-01 -2.11600646e-01\\n-2.50731826e-01 -2.68278439e-02 1.41972110e-01 -4.82788414e-01\\n-4.90715867e-03 -5.16138412e-02 -5.70338726e-01 2.55860388e-01\\n-3.17929924e-01 -5.40298931e-02 2.64292926e-01 7.54520819e-02\\n-4.19753909e-01 -2.34023947e-02 -5.72428154e-03 3.57419938e-01\\n-2.14723289e-01 -3.12200963e-01 -2.44567301e-02 -1.00946927e+00\\n2.07625613e-01 9.04109329e-03 -2.04298750e-01 6.27626851e-02\\n-9.48740095e-02 -6.10953152e-01 1.06858745e-01 -3.29203516e-01\\n-1.13993071e-01 -6.23001084e-02 -1.51381016e-01 -4.09142077e-01\\n-6.19939677e-02 -3.57124433e-02 -3.21311414e-01 5.05554140e-01\\n-3.08322251e-01 3.16997349e-01 -1.63451836e-01 1.11554004e-01\\n-6.61440790e-02 -2.62815684e-01 1.82336122e-01 -2.66103297e-01\\n-2.35126540e-01 -2.72533685e-01 -3.71606112e-01 -3.66248041e-01\\n-6.66420069e-03 -2.91379094e-01 -5.25111295e-02 1.03590369e-01\\n3.46656442e-01 5.27842119e-02 -1.97942063e-01 -3.68014067e-01\\n1.18761137e-01 -6.21708274e-01 7.21290559e-02 6.34662714e-03\\n-1.21091539e-03 -8.30972791e-02 1.98669359e-01 7.04494193e-02\\n2.07859546e-01 -4.96362567e-01 1.61100447e-01 -3.94922853e-01\\n-3.40922922e-01 -6.16677999e-02 -9.32552293e-02 -2.56164838e-02\\n2.67969668e-01 -5.62462449e-01 -7.58905262e-02 3.19182247e-01\\n2.20162898e-01 -2.55330396e-03 1.84652716e-01 -6.89972490e-02\\n-1.40212104e-02 3.05106342e-01 -2.63114899e-01 7.62887970e-02\\n7.01447606e-01 6.83224620e-03 5.79826236e-02 2.85430223e-01\\n1.50823981e-01 3.89735818e-01 5.13810933e-01 -6.74651861e-02\\n-1.32071644e-01 2.64412433e-01 6.90038949e-02 -5.98099828e-01\\n-8.99822190e-02 6.96351938e-03 -2.12367147e-01 -3.43214810e-01\\n6.98986769e-01 4.31712210e-01 -5.08289754e-01 -2.73067564e-01\\n-9.54403803e-02 -2.23634765e-01 1.31500199e-01 -1.93551425e-02\\n1.61141809e-02 -1.71140298e-01 4.59723830e-01 -7.64352409e-03\\n2.71493435e-01 5.71604908e-01 -2.14388937e-01 -3.39131743e-01\\n-5.01285067e-05 2.77896076e-01 -4.43701968e-02 3.85925025e-01\\n-2.60398299e-01 2.93353736e-01 -4.84673157e-02 1.37485534e-01\\n-2.27613561e-02 1.40965745e-01 8.91220942e-02 1.28761277e-01\\n1.64892420e-01 9.17982757e-02 5.01211405e-01 3.91287029e-01\\n3.25791478e-01 4.08050358e-01 2.84480572e-01 1.24355145e-01\\n4.12808031e-01 5.25912404e-01 3.72525066e-01 2.01204605e-02\\n3.02687120e-02 1.57103255e-01 1.43210307e-01 -1.31073408e-02\\n2.85085768e-01 3.88511449e-01 1.32097295e-02 8.46806228e-01\\n3.23682427e-01 2.35111833e-01 6.71892405e-01 -6.81996763e-01\\n-3.17397386e-01 -9.82349217e-02 4.67956901e-01 -3.36551517e-01\\n-3.84304672e-02 1.28085241e-01 -1.75123677e-01 2.61269599e-01\\n-3.29592764e-01 -1.59790650e-01 4.37929109e-02 2.17978209e-01\\n-2.80238483e-02 -1.49725288e-01 -2.66877204e-01 2.40686350e-02\\n-1.12662025e-01 -1.36445180e-01 -4.49849218e-01 -1.06007829e-01\\n-2.12841228e-01 -7.74007961e-02 -8.63549635e-02 -1.27512977e-01\\n-6.45768270e-02 -4.17522699e-01 -7.05076456e-02 4.98949513e-02\\n2.43879855e-01 -2.94604972e-02 1.60356518e-02 -1.55310646e-01\\n2.67724156e-01 2.14495361e-01 5.61511457e-01 6.49298355e-02\\n3.14930477e-03 -1.66564777e-01 -2.47696981e-01 2.10431531e-01\\n7.07891881e-02 4.42199335e-02 6.24577049e-03 2.12231398e-01\\n-1.98495671e-01 -1.33692339e-01 1.89599201e-01 4.17255402e-01\\n-4.65088487e-01 -1.13009494e-02 -1.05703510e-01 2.32315972e-01\\n1.23387814e-01 1.84252188e-01 -9.26252529e-02 5.24913147e-02\\n-1.81660488e-01 -3.36255163e-01 2.27604270e-01 -4.30321917e-02\\n-2.56600022e-01 8.80173147e-02 2.47832268e-01 2.50911057e-01\\n-3.06455374e-01 6.20137081e-02 -8.59209225e-02 1.35680974e-01\\n1.24824561e-01 3.32288206e-01 -1.81135491e-01 -3.49710584e-01\\n-2.54808426e-01 7.73721039e-02 -2.11469531e-01 6.10313155e-02\\n4.06336188e-02 4.13315892e-01 5.84489554e-02 -3.64887193e-02\\n3.90878409e-01 2.72648949e-02 -2.27666810e-01 -1.72454670e-01\\n-1.09700538e-01 -1.30315378e-01 -7.73871168e-02 -5.33822440e-02\\n1.35982931e-01 -3.59940261e-01 -8.73657912e-02 -4.92828228e-02\\n-9.82103050e-02 -2.88429379e-01 -7.06435740e-03 -6.98495060e-02]]',\n", + " 'job_description': \"The Company Lykke Business is part of the Lykke Ecosystem. It is an innovative, fair and trusted partner committed to reshaping entire business models with cutting edge blockchain technology. Our teams are busy building the future of identity, financial markets, commerce, security infrastructure and more. Our Leadership team has led some of the most innovative production blockchain implementations in the world. The Role We’re looking for a talented Blockchain Engineer with a strong C# background to join our international distributed team. The successful employee will have at least 2-3 years technical experience, and will be responsible for developing, enhancing and maintaining applications and smart contracts together with other team members. Your tasks: Develop quality applications, components and modules using C# (we're using .NET Core) Develop smart contracts Test applications and smart contracts to ensure that they meet the requirements specified Work under an agile scrum methodology Skills & Requirements: Self-motivation and an ability to work autonomously are a must. To be successful in the role, you should ideally possess the following attributes: Strong understanding of blockchain technologies including Ethereum Strong programming skills, including C#, Solidity and JavaScript Experience with the following frameworks and technologies will be a plus: Truffle OpenZeppelin Node.js SQL Databases (MS SQL, Azure SQL) NO SQL Databases (Azure Storage, MongoDB, CosmosDB) Docker and Kubernetes What awaits you: This is an exciting opportunity for a self-motivated individual who is keen to join the growing blockchain ecosystem. The successful candidate will become part of a highly motivated team and enjoy a friendly environment where remote work and flexible working hours are embraced, and a can-do and enterprising spirit is cultivated. We have big plans, and want you to be a key part of those! If you are someone who thrives in a fast-paced environment where being self-directed, determined, and resilient are requirements, we’re looking forward to receiving your application.\",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Friendliness\", \"Resilience\", \"Team Motivation\", \"Distributed Team Management\", \"Team Leadership\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Agility\", \"Programming (Music)\", \"Hyper SQL Database (HSQLDB)\", \"Blockchain\", \"Infrastructure Security\", \"Application Testing\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"Scrum (Software Development)\", \"Product Innovation\", \"Financial Market\", \"Docker (Software)\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Azure Blob Storage\", \"Self-Directed Learning\", \"Ethereum\", \"Receivables\", \"Modulation\", \"SQL Azure\", \"Business Model\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Cultivator\"]',\n", + " 'languages': \"['English', 'Kinyarwand']\"},\n", + " {'company_id': '1',\n", + " 'job_title': 'full stack software engineer',\n", + " 'location': 'Neuchâtel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.57387906e-01 2.24195898e-01 4.99606431e-01 7.67015666e-03\\n4.39205438e-01 -1.57651961e-01 1.62919555e-02 2.65592307e-01\\n7.57750422e-02 -5.09545028e-01 -1.28488429e-03 -2.34035105e-01\\n-1.36220977e-01 9.99910831e-02 9.62357596e-02 3.91497105e-01\\n4.33110178e-01 9.11655128e-02 -1.86837465e-01 3.61069202e-01\\n9.07389969e-02 -2.13403106e-01 -2.18327977e-02 7.80924439e-01\\n4.35213625e-01 2.85370983e-02 -1.80516448e-02 -6.72442168e-02\\n-1.89708650e-01 -2.32839704e-01 4.24221277e-01 -2.34960504e-02\\n-6.04972318e-02 -4.63003486e-01 6.75984658e-04 8.46491158e-02\\n-1.33285031e-01 1.73889995e-01 -3.61849405e-02 1.55229151e-01\\n-5.41841626e-01 -3.32599163e-01 2.60884240e-02 3.07021011e-03\\n-1.41364798e-01 -2.91115910e-01 6.25893474e-02 3.99509296e-02\\n1.43256754e-01 4.80507836e-02 -4.74243581e-01 2.86845058e-01\\n-2.92383611e-01 -2.12280035e-01 2.52686083e-01 4.88089323e-01\\n7.45727196e-02 -5.12309074e-01 -5.83395600e-01 -3.71003330e-01\\n-9.40715671e-02 -1.00202873e-01 9.56310332e-02 -2.97852039e-01\\n2.98183799e-01 1.14422236e-02 1.03572812e-02 3.35094213e-01\\n-8.43954563e-01 8.42064619e-03 -2.03350395e-01 -6.37425110e-02\\n-2.80253857e-01 -1.89941585e-01 -2.98184484e-01 -3.52415778e-02\\n-1.45451844e-01 3.86997133e-01 1.25142768e-01 1.36410326e-01\\n-2.01436341e-01 2.76433319e-01 -1.79879740e-01 4.77862537e-01\\n2.18596831e-01 9.53932032e-02 3.49596262e-01 3.13006997e-01\\n-3.50769341e-01 4.72714603e-01 8.32425803e-02 -2.67810434e-01\\n2.54730910e-01 1.15154423e-01 4.81665850e-01 2.85611581e-03\\n1.23618796e-01 1.57140419e-01 -2.56619781e-01 2.50683784e-01\\n2.49171734e-01 -2.85317004e-01 6.73409365e-03 -1.31749257e-01\\n-3.23067680e-02 1.95298083e-02 6.55323416e-02 1.42661870e-01\\n-4.27030414e-01 4.57454562e-01 2.19374508e-01 -2.28910401e-01\\n-1.59789339e-01 -3.83001745e-01 -1.17790073e-01 9.39503908e-02\\n-1.60202701e-02 6.38229847e-02 2.23725945e-01 6.88795745e-02\\n1.96974635e-01 2.60264110e-02 -5.22742048e-04 8.85874748e-01\\n-1.40524998e-01 9.57306996e-02 -2.51644611e-01 2.53697485e-01\\n1.50980324e-01 -2.89986312e-01 2.80801773e-01 2.16312230e-01\\n1.39132887e-02 -1.18245423e-01 -1.95549756e-01 3.32219392e-01\\n-7.19487816e-02 -1.09254085e-01 -2.73653954e-01 2.20479891e-01\\n-1.51173472e-02 -4.65274721e-01 6.94707155e-01 1.68074474e-01\\n2.55161643e-01 4.93885428e-02 1.21857539e-01 -8.68645608e-02\\n-1.27081886e-01 2.56290913e-01 7.76379332e-02 2.72442311e-01\\n-2.18108118e-01 -3.20613831e-01 -2.21017212e-01 2.23724842e-01\\n-3.53618503e-01 1.75051764e-01 -1.28394797e-01 -1.41465947e-01\\n3.30577046e-01 1.05536059e-02 -2.87803292e-01 2.10825711e-01\\n-1.01773039e-01 3.64506356e-02 -7.72139207e-02 2.71981359e-01\\n-1.02155492e-01 2.14078188e-01 9.22173262e-04 -6.45145699e-02\\n5.64561486e-01 2.84836173e-01 2.79161423e-01 -1.23067670e-01\\n3.45087260e-01 -5.11676781e-02 1.63405091e-01 8.21002498e-02\\n-6.31040514e-01 3.10869873e-01 -3.68727036e-02 -1.76589251e-01\\n1.34969518e-01 -6.52770475e-02 3.25856805e-01 -2.57157922e-01\\n-5.15967123e-02 -1.62426069e-01 -3.76122057e-01 -3.22656900e-01\\n-2.83604413e-01 2.77144164e-02 4.97196406e-01 -4.26776201e-01\\n-8.15059394e-02 2.91484952e-01 -5.68268538e-01 -1.38173819e-01\\n2.32215762e-01 1.47685558e-01 1.01201661e-01 7.15292692e-02\\n-1.90153286e-01 -6.05410337e-01 8.48772302e-02 -4.52759802e-01\\n-4.09371853e-01 3.98010090e-02 -3.53863716e-01 1.78142220e-01\\n7.17044398e-02 1.07615422e-02 -8.54406655e-02 1.63991392e-01\\n-1.66344672e-01 -1.10204682e-01 8.21704417e-02 6.00692928e-02\\n1.95020586e-01 2.53835693e-02 -3.49418581e-01 4.34643269e-01\\n-2.08886564e-01 6.72649145e-01 8.37124288e-02 -8.90098214e-01\\n5.02213538e-01 3.19890678e-01 -6.48893192e-02 -3.48706692e-01\\n4.43045735e-01 -2.83987701e-01 -8.49256199e-03 1.15177333e-01\\n-3.37654531e-01 -2.92428941e-01 2.31472522e-01 -1.71367258e-01\\n-2.20631361e-01 4.41119671e-01 1.76952966e-02 9.16481018e-03\\n1.95702165e-01 -2.80308783e-01 -4.14756462e-02 1.09346136e-01\\n-4.77231741e-02 -1.89879775e-01 -4.89079297e-01 1.88513100e-03\\n-8.47586989e-02 -4.07218874e-01 -1.30039483e-01 -3.47180545e-01\\n-2.41055876e-01 -3.97242963e-01 -3.49088669e-01 2.96143562e-01\\n2.25147307e-01 2.32551634e-01 -4.04355973e-02 7.44869709e-02\\n-1.01113021e-01 -7.65807092e-01 -5.17901964e-02 9.09530818e-02\\n4.55614984e-01 2.97814310e-01 1.09813064e-01 -7.03129247e-02\\n4.47022766e-02 5.63230157e-01 -3.85134876e-01 -2.58236289e-01\\n9.64315012e-02 1.24445297e-01 8.34759995e-02 -1.69341728e-01\\n9.87809896e-02 3.20158005e-01 -2.26465285e-01 2.07710825e-03\\n-3.88338137e-03 -5.48758395e-02 4.54785943e-01 -7.30495080e-02\\n-4.50373381e-01 -2.26587906e-01 -8.99599567e-02 1.95765853e-01\\n-5.35101414e-01 -1.89487040e-01 5.62533021e-01 2.48954564e-01\\n2.91302830e-01 1.00056246e-01 1.67688861e-01 -6.92145973e-02\\n-1.73061445e-01 -3.14185739e-01 3.40069145e-01 1.11251567e-02\\n1.78322166e-01 1.65916294e-01 -3.08023635e-02 -6.76074743e-01\\n-3.35571814e+00 -1.75105125e-01 1.85038835e-01 -2.31760085e-01\\n2.18316182e-01 -1.25741452e-01 1.93209387e-02 -1.32110715e-01\\n-2.53572494e-01 5.47187626e-02 -1.86318964e-01 -8.39887932e-02\\n9.73737389e-02 1.58159584e-01 1.00809872e-01 2.19976634e-01\\n2.05799997e-01 -1.63726091e-01 1.10146916e-02 2.65741378e-01\\n-1.71532810e-01 -6.55061483e-01 9.83048826e-02 -8.91530812e-02\\n3.22667509e-01 1.62748769e-01 -3.84980142e-01 -6.11835346e-02\\n-2.69997835e-01 -1.82673231e-01 8.05810913e-02 -2.59896189e-01\\n-1.40804008e-01 2.03420699e-01 1.01352841e-01 -9.51327831e-02\\n8.59824568e-02 -3.63885522e-01 -1.81158930e-01 -5.00918269e-01\\n1.52946234e-01 -5.53841233e-01 -4.17119972e-02 -1.15888700e-01\\n5.94747305e-01 -3.25078219e-01 1.89875484e-01 1.09403998e-01\\n2.83114880e-01 1.29362851e-01 1.23972818e-02 2.62861364e-02\\n-2.21838564e-01 -1.69493467e-01 -5.30149117e-02 -1.88615918e-01\\n5.25774539e-01 4.56460774e-01 -2.93390125e-01 -4.37667966e-02\\n3.56705412e-02 -3.41640472e-01 -4.32385027e-01 -2.23129198e-01\\n-7.13311061e-02 -2.52163529e-01 -5.77911139e-01 -4.77157831e-01\\n-3.09571266e-01 -1.10365443e-01 -1.26469702e-01 6.62187338e-01\\n-3.23219568e-01 -3.27766478e-01 6.65277019e-02 -5.28533757e-01\\n2.30842918e-01 -1.96435735e-01 4.32930477e-02 -2.52803147e-01\\n-2.27631286e-01 -5.73321760e-01 6.24423847e-02 -1.82968341e-02\\n-1.73961565e-01 -1.79617852e-01 6.78169578e-02 -6.17943071e-02\\n-2.32531011e-01 -4.19756383e-01 3.89647216e-01 1.04346447e-01\\n2.93228269e-01 5.08284681e-02 2.81928509e-01 -4.79459763e-02\\n3.37367564e-01 -8.83976743e-02 -1.13041550e-02 -3.93449515e-01\\n1.54537633e-01 2.55006105e-02 5.09475887e-01 -1.81696236e-01\\n-1.32874712e-01 1.52365863e-01 -2.80296147e-01 -9.98495892e-02\\n4.27709907e-01 5.98356500e-02 2.41100192e-02 -1.26159042e-01\\n3.05627704e-01 -2.97293186e-01 -2.31893986e-01 1.07932895e-01\\n8.20666179e-02 6.54827118e-01 -2.06933096e-02 -3.98156404e-01\\n-9.41035450e-02 4.97114569e-01 -7.45334774e-02 6.69855997e-02\\n-1.63031146e-01 1.21430025e-01 -1.41673610e-01 2.03504503e-01\\n5.81516325e-02 -1.41184911e-01 -2.12617084e-01 -7.58793280e-02\\n-1.01767808e-01 2.25126356e-01 1.97094828e-01 6.11173064e-02\\n-9.18186009e-02 -2.76917189e-01 -1.15591481e-01 2.20494658e-01\\n1.40025735e-01 4.62708712e-01 1.79113910e-01 -2.61307478e-01\\n6.93134218e-02 3.74970138e-01 -1.66973844e-01 1.88028678e-01\\n-3.06800246e-01 3.88154015e-02 -5.07762194e-01 -1.43216029e-01\\n-2.85385489e-01 -3.75269949e-01 1.11975931e-01 2.98156142e-01\\n5.36708087e-02 -3.08389924e-02 2.81339567e-02 -4.94714230e-01\\n1.57665610e-01 1.08285412e-01 1.70852378e-01 1.00113593e-01\\n3.32198851e-02 4.90703076e-01 -1.01132318e-03 -1.47146970e-01\\n-1.85693353e-01 3.55091654e-02 -6.82287887e-02 -1.82798803e-01\\n6.06072955e-02 -4.86986220e-01 -5.72313331e-02 3.16250741e-01\\n1.40899912e-01 -2.36131623e-01 -2.40024000e-01 3.50003898e-01\\n4.15401310e-02 -2.47017115e-01 -2.62290299e-01 -2.24967618e-02\\n2.62715280e-01 6.07578978e-02 2.16465384e-01 -3.89911056e-01\\n-8.42264965e-02 4.31800932e-02 -1.22739203e-01 3.84100348e-01\\n2.32975967e-02 1.01430684e-01 -2.31943935e-01 -1.55882329e-01\\n3.36307049e-01 -5.94463050e-02 -4.67284583e-02 -1.03555344e-01\\n5.76151237e-02 -1.34188741e-01 -5.22286177e-01 7.44893253e-02\\n1.70206986e-02 -1.74265087e-01 5.33537157e-02 1.05105408e-01\\n4.18187976e-02 1.32741690e-01 -4.79712486e-01 -2.69251585e-01\\n-2.44657099e-01 -1.28393084e-01 1.26296237e-01 -4.95894432e-01\\n-1.22612000e-01 -1.00875467e-01 -4.81908411e-01 1.76894516e-01\\n-2.77513266e-01 -1.07725382e-01 8.95582885e-02 6.33658022e-02\\n-2.83998668e-01 -2.77838148e-02 -2.29592547e-02 2.75934875e-01\\n-2.86846757e-01 -3.39762658e-01 5.56057990e-02 -9.45985317e-01\\n2.27170900e-01 6.89734519e-02 -2.22424865e-01 -3.26718669e-03\\n-1.74108610e-01 -6.05216146e-01 1.30950481e-01 -4.37011421e-01\\n-1.50994360e-01 -2.34844610e-02 -2.72105157e-01 -2.97714859e-01\\n5.47038652e-02 -1.74721032e-01 -3.68130445e-01 3.76134336e-01\\n-4.05940771e-01 4.43874866e-01 -1.76401973e-01 -4.87243757e-04\\n-2.13410147e-02 -2.63319880e-01 2.02112824e-01 -2.84823000e-01\\n-4.09996748e-01 -2.83034474e-01 -3.78045678e-01 -3.00968587e-01\\n1.11076590e-02 -2.72479594e-01 -1.63361132e-01 2.23125428e-01\\n4.18927550e-01 9.21448693e-02 -8.02528784e-02 -3.98536235e-01\\n-5.82518913e-02 -5.93117774e-01 1.74098760e-02 -5.26624545e-02\\n-7.54604787e-02 -9.09532756e-02 1.88905656e-01 1.10775791e-01\\n1.42395273e-01 -3.75263512e-01 3.93059671e-01 -3.88286471e-01\\n-2.79299974e-01 -7.92382509e-02 -2.73861047e-02 9.36259404e-02\\n2.00426802e-01 -5.31054139e-01 9.77144539e-02 3.01199764e-01\\n1.98462456e-01 2.97670960e-02 1.91203266e-01 -4.87900116e-02\\n-6.87882900e-02 2.27988616e-01 -2.98012584e-01 1.73090607e-01\\n6.54144347e-01 1.17388286e-01 6.31652772e-02 2.00194702e-01\\n1.16988398e-01 5.49446702e-01 5.94745517e-01 -2.47914586e-02\\n-9.24794599e-02 2.57767141e-01 8.51211250e-02 -4.79619801e-01\\n-3.72260362e-02 2.76423022e-02 -1.47639990e-01 -3.80314529e-01\\n7.14551330e-01 3.98576140e-01 -5.47404170e-01 -2.21336380e-01\\n-1.39679372e-01 -1.44555777e-01 2.00027853e-01 -7.04430044e-02\\n-3.39897536e-03 -6.29096925e-02 4.53113943e-01 -4.72913310e-02\\n2.08166152e-01 5.66115141e-01 -2.64952809e-01 -3.55567753e-01\\n-6.86679780e-02 3.62269878e-01 1.28274396e-01 4.08249676e-01\\n-1.98487312e-01 2.37037778e-01 -9.02682822e-03 6.05885573e-02\\n-1.00118443e-01 2.36629352e-01 8.07779133e-02 5.46400510e-02\\n2.47341186e-01 -1.67429149e-02 5.54966450e-01 4.74361002e-01\\n2.85025418e-01 4.20415431e-01 2.60521919e-01 4.21388745e-02\\n4.95278329e-01 6.49276495e-01 3.93783748e-01 7.72576332e-02\\n-1.11409156e-02 2.25496292e-01 1.70007914e-01 -3.44147757e-02\\n4.10633206e-01 4.40927386e-01 1.74155027e-01 8.08846772e-01\\n3.07304114e-01 3.02230656e-01 6.50846004e-01 -6.49663210e-01\\n-3.64356220e-01 -1.44418124e-02 5.23085117e-01 -2.48269573e-01\\n-4.11868766e-02 1.91694826e-01 -1.47834703e-01 3.07997227e-01\\n-3.73023361e-01 -1.27811998e-01 5.36306575e-02 9.21958461e-02\\n3.12214810e-02 -1.92565531e-01 -2.81669199e-01 5.60958087e-02\\n-1.00570589e-01 -1.80167913e-01 -3.31927955e-01 -9.69945937e-02\\n-2.72232592e-01 -2.60736402e-02 -7.23853558e-02 -1.15812071e-01\\n-1.85444765e-02 -3.97107005e-01 -1.34550244e-01 4.04467285e-02\\n3.69552046e-01 -1.67248875e-01 -9.58922058e-02 -1.34342164e-01\\n3.30228537e-01 1.68335885e-01 6.05117857e-01 7.68281966e-02\\n2.46731695e-02 -1.63395479e-01 -2.68286645e-01 1.74666971e-01\\n6.18755706e-02 1.51143685e-01 3.52012813e-02 2.19240040e-01\\n-2.01913804e-01 -1.46688879e-01 2.26790637e-01 3.25612247e-01\\n-3.89241725e-01 -7.37448260e-02 -1.58750713e-01 2.35728651e-01\\n8.98588151e-02 1.61781490e-01 -1.91177696e-01 4.34755534e-03\\n-1.86707377e-01 -4.07727838e-01 3.17683667e-01 -8.36183280e-02\\n-1.94343850e-01 9.68216807e-02 2.67825663e-01 2.44757056e-01\\n-1.58445179e-01 -5.56182899e-02 -5.41100129e-02 1.26169488e-01\\n6.32203966e-02 3.55454206e-01 -1.05133086e-01 -2.34796911e-01\\n-2.68025041e-01 1.81693420e-01 -1.99103922e-01 3.76326554e-02\\n-1.00589730e-01 2.89726645e-01 3.90762649e-02 6.35280684e-02\\n3.77216518e-01 5.01380265e-02 -2.76796132e-01 -2.48932004e-01\\n-2.78387010e-01 -1.10995561e-01 -7.88599625e-03 8.55033547e-02\\n1.08557038e-01 -3.86286855e-01 -5.02902046e-02 -1.17031999e-01\\n-1.29941404e-01 -2.66808242e-01 -3.83708254e-02 -3.63659114e-02]]',\n", + " 'job_description': 'We are seeking a Full Stack Software Engineer to develop software for our portable medical diagnostics system. The candidate will join a multi-disciplinary team dedicated to developing high-quality products. The ideal candidate is a team player, likes overcoming difficult challenges, enjoys learning new skills, and has a “hands-on” problem solving approach. This is an outstanding opportunity for a self-motivated individual to make a key contribution and increase their responsibilities in a high-growth start-up environment. You will build software used by medical professionals and patients. We have build our platform on a modern stack, including Node.js, React, Redux, GraphQL. As a team, we embrace collaboration and independent responsibility: you’ll be supported in your work, and you’ll have the freedom to make your own decisions. This role is for someone who wants to apply their computer science knowledge to have a meaningful impact on personalised medicine and life sciences. We are looking for someone to grow with the organization as a core member of the team. Job responsibilities: As part of the 1Drop Diagnostics team, the candidate will develop software for a distributed portable medical diagnostics system: Provide architecture and design for the overall application according to the requirements Inspire our users with a beautiful and intuitive UI/UX design Develop new features and functionality in collaboration with team members Maintain best practices relating to design, implementation, documentation, testing, and deployment. Ensure an easy-to-read and robust code base and good test coverage. Monitor and optimize code performance Provide integration with external services Provide technical leadership Assess current development processes and recommend changes as needed Our ideal candidate: Minimum 2 years’ experience working in a team with a modern web stack (Node.js, Django, Rails, React, etc.) building high-performance web applications Proficient in modern JavaScript (especially promises), Python, Ruby/Ruby on Rails Passion for front-end engineering and design Desire to push our stack forward. Currently, we use Angular, Redux, and React, GraphQL on the front end, Node.js, Postgres and Rabbitmq on the back end Deep knowledge of the building blocks of the web: HTTP, headers, cookies, caching Knowledge and experience using dev ops (continuous integration: Maven, Jenkins, Git) Open, objective, opinionated. Having technology preferences but happy to use frameworks and tools that get the job done efficiently and with scale in mind Nice to have skills and experience: Interest in personalised medicine, biology, laboratory science Experience with machine learning and image processing Passion for making in your spare time: electronics, robots, art, bikes, cars, anything! Experience with Android or iOS development Experience working with a quality system in a regulated industry ',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Leadership\", \"Decisiveness\", \"Collaboration\", \"Professionalism\", \"Problem Solving\", \"Integration\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"Jenkins\", \"Nice (Unix Utility)\", \"Clinical Laboratory Science\", \"Computer Science\", \"Life Sciences\", \"High Performance Computing\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Scholastic READ 180\", \"Scale (Map)\", \"Ruby (Programming Language)\", \"Android (Operating System)\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"GraphQL\", \"IOS Development\", \"Quality Management Systems\", \"Software Engineering\", \"React.js\", \"Django (Web Framework)\", \"Threading Building Blocks\", \"Machine Learning Methods\", \"Front-End Engineering\", \"Image Processing\", \"RabbitMQ\", \"Product Quality (QA/QC)\", \"React Redux\", \"Apache Maven\", \"Electronics\", \"Biology\", \"JavaScript (Programming Language)\", \"Robotics\", \"Ruby On Rails\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Http Headers\", \"Software Development\", \"Service Provider\", \"Diagnostic Medical Sonography\", \"Git Flow\", \"Documentation Based Coding\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Amharic']\"},\n", + " {'company_id': '80',\n", + " 'job_title': 'software engineer / software developer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.25367069e-01 2.32250974e-01 5.06567001e-01 -3.08572352e-02\\n5.38056970e-01 -1.08408272e-01 -2.40812823e-02 1.60881981e-01\\n4.34205234e-02 -2.91904867e-01 -2.14868248e-01 -2.16581345e-01\\n-1.15298659e-01 5.15648387e-02 2.66742986e-02 3.83278847e-01\\n3.06102395e-01 2.71346886e-02 -6.74058422e-02 3.92125249e-01\\n2.81417258e-02 -9.31503773e-02 -5.77119514e-02 5.83967149e-01\\n2.64430732e-01 9.47352946e-02 -5.33663295e-02 -4.10202071e-02\\n-3.11393440e-01 -1.79390132e-01 3.07072222e-01 1.23419017e-01\\n-1.27168745e-01 -3.90187591e-01 1.36987880e-01 1.06949173e-01\\n-2.15480745e-01 1.32493526e-02 -9.48492959e-02 9.79602560e-02\\n-5.29760838e-01 -3.24110836e-01 1.52288482e-01 2.27997378e-02\\n-1.94146991e-01 -2.01853797e-01 1.83830202e-01 -1.11657187e-01\\n2.45372951e-02 2.38093957e-02 -5.33806860e-01 3.54550540e-01\\n-4.20291483e-01 -2.47024447e-01 3.81521523e-01 5.96935749e-01\\n1.69312924e-01 -6.64397001e-01 -4.12428617e-01 -2.82069921e-01\\n5.34798726e-02 -6.41626418e-02 9.88345891e-02 -1.96285963e-01\\n3.43531489e-01 1.34739205e-02 -2.21036226e-02 4.34350729e-01\\n-8.26372087e-01 -7.20439404e-02 -2.62500703e-01 1.33338645e-01\\n-3.52257192e-01 -6.25488013e-02 -2.36151934e-01 -2.17267051e-02\\n-2.60160733e-02 3.94523978e-01 8.44941754e-03 1.12511650e-01\\n-1.26457617e-01 3.30614686e-01 -1.41389266e-01 2.90522575e-01\\n3.11808646e-01 3.45171019e-02 3.02065790e-01 2.80326009e-01\\n-4.95883435e-01 4.50023830e-01 1.81527719e-01 -2.11015806e-01\\n2.67653227e-01 1.58400148e-01 4.31469202e-01 1.78276002e-01\\n3.01656872e-02 1.81041181e-01 -1.35731250e-01 4.81240451e-02\\n1.01029329e-01 -7.63979331e-02 -1.94998413e-01 -6.14719130e-02\\n-3.69126052e-02 -1.09417550e-01 -2.68448591e-02 1.85031161e-01\\n-4.15751815e-01 4.12972987e-01 2.20459431e-01 -2.19872743e-01\\n-1.96752381e-02 -4.31497753e-01 -2.18178660e-01 4.53583896e-02\\n-1.14089355e-01 3.48000340e-02 1.87637717e-01 1.06855065e-01\\n2.69330353e-01 7.03730136e-02 8.25046599e-02 7.83579886e-01\\n-1.72811537e-03 6.37024045e-02 -9.77263004e-02 3.78203273e-01\\n2.06835926e-01 -1.85746089e-01 1.33802921e-01 1.87158450e-01\\n-7.54398704e-02 -1.99264847e-02 -2.52931893e-01 3.46191227e-01\\n-1.03875570e-01 -1.28544092e-01 -2.18259960e-01 1.40593365e-01\\n-1.73572809e-01 -4.48526561e-01 4.59843755e-01 -5.11627942e-02\\n1.50587812e-01 -2.82702427e-02 9.14290249e-02 -6.30012676e-02\\n-2.76991069e-01 3.58803034e-01 5.73794395e-02 3.81285369e-01\\n-3.20071816e-01 -2.03894228e-01 -1.51104420e-01 2.85816401e-01\\n-5.67993410e-02 3.12752128e-02 -3.11789513e-01 -1.94346130e-01\\n3.82191598e-01 1.98204935e-01 -4.09960330e-01 2.23371714e-01\\n-4.69688699e-03 -1.26406088e-01 -1.46324620e-01 2.33621150e-01\\n-3.00254114e-02 4.97157536e-02 -4.65934239e-02 -1.97821960e-01\\n5.21380901e-01 2.19704241e-01 2.86892235e-01 -5.03344350e-02\\n4.63541001e-01 -2.00360835e-01 2.53830343e-01 8.34876969e-02\\n-6.59926414e-01 3.12164098e-01 -3.62023823e-02 2.49249861e-02\\n9.88058597e-02 2.55212002e-02 4.41434443e-01 -4.59113181e-01\\n-2.31090225e-02 -2.44792342e-01 -5.09799957e-01 -4.36985701e-01\\n-2.72760272e-01 5.69667667e-03 3.66374701e-01 -3.63009006e-01\\n-7.15652481e-02 7.69126564e-02 -5.78313112e-01 -1.99701443e-01\\n2.76786000e-01 2.33507782e-01 4.84719127e-02 5.50956689e-02\\n-1.26087397e-01 -5.80397725e-01 4.65628244e-02 -5.05747437e-01\\n-4.18906152e-01 8.55193287e-02 -3.53772521e-01 1.46848410e-01\\n-7.76025727e-02 -9.57984477e-03 -4.07023206e-02 8.26761499e-02\\n-3.18360209e-01 -7.91950151e-02 1.88098043e-01 -1.25749223e-02\\n1.75996646e-01 1.04710072e-01 -3.59764487e-01 5.16279340e-01\\n-4.10223782e-01 4.44771528e-01 2.84537114e-02 -9.00931180e-01\\n5.93306780e-01 3.19059312e-01 -1.80207975e-02 -3.05124223e-01\\n2.81832367e-01 -4.46709454e-01 2.84423437e-02 1.40046984e-01\\n-3.46426904e-01 -2.06795186e-01 2.60284930e-01 -1.47883773e-01\\n-3.07594031e-01 6.51092768e-01 1.74471512e-01 -8.70934501e-02\\n3.95143330e-01 -2.32051373e-01 -1.26204520e-01 -1.46357147e-02\\n-1.45927727e-01 -2.24779695e-01 -3.86895150e-01 1.51634291e-01\\n-5.24877794e-02 -5.73804259e-01 -1.66523844e-01 -3.64520848e-01\\n-2.17325807e-01 -4.87938285e-01 -3.82030904e-01 2.64078349e-01\\n1.43892720e-01 1.31490212e-02 -1.02596179e-01 2.85451449e-02\\n-3.85866687e-02 -7.23191559e-01 2.96020545e-02 1.60019368e-01\\n2.99174309e-01 3.47680151e-01 6.09877966e-02 -1.36918709e-01\\n-1.26184955e-01 4.06187952e-01 -4.86289144e-01 -2.75910258e-01\\n2.43408799e-01 1.38998345e-01 -7.85953775e-02 -1.71315610e-01\\n9.97510776e-02 3.87225658e-01 -2.40799725e-01 1.40739679e-01\\n8.61217454e-03 -6.94794133e-02 4.41190898e-01 -1.20681852e-01\\n-2.98859775e-01 -1.84374288e-01 -8.85727629e-02 3.51997852e-01\\n-6.10278606e-01 -1.05335496e-01 4.99201894e-01 2.71051645e-01\\n3.35367620e-02 2.68380404e-01 1.69864804e-01 -7.87977502e-02\\n-3.00894827e-01 -3.42844963e-01 2.15264201e-01 2.46559560e-01\\n1.53311417e-01 5.47563285e-02 -2.60966510e-01 -6.16514444e-01\\n-3.19635248e+00 -2.54849076e-01 9.39714760e-02 -2.75129974e-01\\n2.92342395e-01 -7.83625096e-02 1.90165013e-01 -9.11874101e-02\\n-2.70731717e-01 1.37706280e-01 -1.39492363e-01 -1.54836312e-01\\n1.26148686e-01 3.48634750e-01 1.32829741e-01 1.34852111e-01\\n7.62232319e-02 -1.83864534e-01 1.09308824e-01 3.83179903e-01\\n-1.91640943e-01 -8.20138574e-01 1.41961187e-01 -1.61218792e-01\\n1.14418946e-01 2.60207415e-01 -4.47522104e-01 4.37934548e-02\\n-1.16608992e-01 -1.97983831e-01 7.83405602e-02 -1.90912336e-01\\n-1.06153317e-01 3.67295146e-01 6.71319813e-02 -1.48616403e-01\\n-4.83556762e-02 -3.09311152e-01 -3.14105302e-02 -4.79216218e-01\\n1.60831571e-01 -5.89869380e-01 3.43549848e-02 -1.81524187e-01\\n5.49920917e-01 -1.97550043e-01 2.43693471e-01 1.24246225e-01\\n2.00403571e-01 3.04961890e-01 1.49926156e-01 2.51783114e-02\\n-2.95255601e-01 -2.33592108e-01 -9.32520851e-02 -2.07782090e-01\\n5.10057330e-01 3.42801034e-01 -2.82899499e-01 6.15846589e-02\\n1.05509199e-01 -4.32465076e-01 -3.49967599e-01 -4.00114238e-01\\n-2.04810917e-01 -1.09554261e-01 -6.41308069e-01 -3.42314661e-01\\n-1.92419097e-01 -1.39751062e-01 -1.39713854e-01 7.81497836e-01\\n-4.99107718e-01 -4.06478226e-01 1.19719766e-02 -6.49039507e-01\\n1.34311736e-01 -2.00723842e-01 3.92416567e-02 -2.20356852e-01\\n-2.74089634e-01 -4.32681322e-01 2.38266587e-01 -5.10744527e-02\\n-2.03350902e-01 -1.30662858e-01 1.37163877e-01 -1.10474922e-01\\n-3.25004011e-01 -5.03559589e-01 3.83183658e-01 6.53676614e-02\\n3.79443288e-01 -4.60685343e-02 3.74002546e-01 -3.08435224e-03\\n4.18341905e-01 5.35769947e-03 8.37836415e-04 -4.40748930e-01\\n1.08460613e-01 -7.80043192e-04 6.85197830e-01 -1.45213291e-01\\n-7.33251572e-02 1.66422918e-01 -2.27138698e-01 -1.26563698e-01\\n5.21943092e-01 8.02427679e-02 4.87574078e-02 -2.32082248e-01\\n3.78631949e-01 -4.66825008e-01 -2.49808490e-01 2.43298143e-01\\n3.07569616e-02 7.66757846e-01 5.87910078e-02 -3.79317909e-01\\n-2.39322230e-01 4.22484040e-01 -1.44284099e-01 -2.22330078e-01\\n-6.84434772e-02 8.89778137e-02 -1.66569531e-01 2.62317598e-01\\n1.92808867e-01 -6.19542561e-02 -2.95174927e-01 5.76430261e-02\\n-1.12551764e-01 1.59394085e-01 2.32682347e-01 -1.93992667e-02\\n-2.97703370e-02 -1.88973278e-01 -4.92926911e-02 1.02308780e-01\\n6.34383857e-02 3.42660129e-01 9.22834277e-02 -2.89837658e-01\\n-5.03159240e-02 3.36479247e-01 -1.63570911e-01 2.48487189e-01\\n-1.09791301e-01 1.53684124e-01 -4.97681260e-01 -1.97761148e-01\\n-2.06646606e-01 -2.61339605e-01 -9.56039503e-03 2.80957818e-01\\n2.38016069e-01 -1.30991951e-01 1.41505241e-01 -4.57986057e-01\\n2.10998967e-01 1.33540303e-01 1.96845964e-01 8.18284005e-02\\n-2.32818499e-02 6.10417724e-01 1.68296229e-02 -2.36854240e-01\\n-1.07502878e-01 -1.49121778e-02 -2.66296327e-01 -3.18803549e-01\\n2.08599657e-01 -3.55375320e-01 -1.29596010e-01 4.23504084e-01\\n1.28286421e-01 -2.49834776e-01 -2.20341563e-01 3.37689757e-01\\n7.20431358e-02 -2.66054809e-01 -2.85301507e-01 -7.57950023e-02\\n1.88901111e-01 2.84074582e-02 2.78044939e-01 -5.10914326e-01\\n-2.59949975e-02 -1.36250257e-03 1.28233470e-02 4.67919648e-01\\n5.92767969e-02 1.16734385e-01 -1.09362632e-01 -1.44946769e-01\\n4.66756493e-01 5.64487651e-02 -1.29541904e-01 -2.36113578e-01\\n1.29600883e-01 -2.14544892e-01 -5.09657741e-01 3.54524627e-02\\n-9.93179232e-02 -1.93390831e-01 6.20992705e-02 8.26178119e-02\\n2.19255149e-01 -1.23647209e-02 -3.70475054e-01 -2.29432106e-01\\n-2.92717785e-01 4.74487431e-02 7.45133311e-03 -5.20490587e-01\\n9.94280726e-02 1.09957717e-02 -5.96520185e-01 1.47538424e-01\\n-1.87937438e-01 2.04397347e-02 1.86351404e-01 2.19789654e-01\\n-4.11421955e-01 -1.44278526e-01 1.05830394e-01 -2.53418684e-02\\n-3.67548823e-01 -2.97393560e-01 1.19073883e-01 -9.04114485e-01\\n1.80069685e-01 -2.32574344e-02 -1.43598486e-02 4.94432002e-02\\n-1.74283594e-01 -8.51010084e-01 2.30149403e-01 -4.42614794e-01\\n-1.22168086e-01 1.22216277e-01 -2.64694393e-01 -3.17753255e-01\\n5.61104119e-02 -2.55494803e-01 -2.28791058e-01 3.48264933e-01\\n-3.76855820e-01 4.41550732e-01 4.76682819e-02 4.79381979e-02\\n9.16538537e-02 -1.97563708e-01 1.11187659e-01 -3.14849675e-01\\n-5.80909252e-01 -2.42765695e-01 -3.28522950e-01 -2.76856661e-01\\n3.57050821e-02 -1.69898570e-01 -1.37201637e-01 -2.03566328e-02\\n3.40103388e-01 1.51355609e-01 -1.07614011e-01 -1.19418435e-01\\n9.00743902e-03 -3.87887895e-01 1.13505080e-01 -1.81922019e-01\\n1.32845908e-01 -6.44208789e-02 2.73060441e-01 -4.02797200e-02\\n2.22751677e-01 -3.81638467e-01 5.11491597e-01 -2.05188006e-01\\n-3.99204880e-01 -1.54728606e-01 1.99268796e-02 1.55507624e-01\\n2.95039535e-01 -5.28380215e-01 1.32281214e-01 3.00676048e-01\\n1.33325726e-01 -2.85863616e-02 2.27290079e-01 -7.97762275e-02\\n-9.42666009e-02 8.34190696e-02 -4.76695001e-01 8.37441832e-02\\n7.65801072e-01 1.47023559e-01 6.67895675e-02 2.43416205e-01\\n9.45425183e-02 3.04710776e-01 6.08462870e-01 -2.20967010e-02\\n-4.79199179e-02 3.68747354e-01 1.40219897e-01 -5.51003039e-01\\n-1.57513052e-01 1.40283704e-02 -5.22824004e-02 -3.07890236e-01\\n5.56715369e-01 3.40262890e-01 -4.69048560e-01 -2.96766222e-01\\n-1.63784832e-01 -2.37598673e-01 3.17476928e-01 -8.94988477e-02\\n-3.22447047e-02 -7.29530901e-02 5.63611329e-01 1.02175288e-02\\n3.47252667e-01 4.86710966e-01 -1.28394976e-01 -2.22338080e-01\\n-5.61321862e-02 1.51355475e-01 1.65609211e-01 2.80173838e-01\\n-6.65946305e-03 8.07211623e-02 -7.70445466e-02 6.34441674e-02\\n-1.03609487e-01 9.85604450e-02 8.30701888e-02 6.29035458e-02\\n1.81894064e-01 7.57821649e-02 4.50928271e-01 4.92250979e-01\\n2.58738071e-01 4.01571214e-01 3.03755224e-01 -3.51147726e-02\\n5.26169419e-01 7.39565492e-01 2.28024513e-01 -1.81265268e-02\\n-3.11236437e-02 1.54750019e-01 1.70679808e-01 -3.48967612e-02\\n4.75910842e-01 4.78863269e-01 2.61846662e-01 8.37461352e-01\\n3.58098060e-01 2.95397758e-01 6.88285828e-01 -5.99149883e-01\\n-3.22031736e-01 4.02529985e-02 5.18418431e-01 -2.52522111e-01\\n7.27750435e-02 1.33267000e-01 -1.87212527e-01 2.87318945e-01\\n-4.75213856e-01 -9.70668644e-02 7.00661168e-02 -2.83663347e-03\\n2.02282414e-01 -2.12395936e-03 -9.01820809e-02 9.87307355e-02\\n-1.24142163e-01 -2.20045730e-01 -3.05499405e-01 -2.41163403e-01\\n-3.20979655e-01 2.24437751e-02 3.06546800e-02 -5.41475117e-02\\n5.98864816e-02 -4.07735169e-01 -1.41460359e-01 -5.26651628e-02\\n3.17068607e-01 -1.27478197e-01 -1.20138638e-01 -1.33549035e-01\\n1.58961445e-01 2.76630282e-01 5.96399665e-01 -7.57311732e-02\\n1.43839732e-01 -1.23605192e-01 -2.52382845e-01 1.24179125e-01\\n1.16064355e-01 1.48065016e-01 1.10181764e-01 5.05786598e-01\\n-3.49783927e-01 -3.08969431e-03 1.17976651e-01 3.48172426e-01\\n-2.92092204e-01 -1.11443736e-01 -8.51169676e-02 7.61211365e-02\\n6.36570901e-02 1.03409037e-01 -2.34104171e-01 -1.23966374e-02\\n-2.55150914e-01 -6.30271435e-01 4.23001468e-01 -2.28032708e-01\\n-2.39740252e-01 2.77216733e-02 3.34902197e-01 3.17249089e-01\\n-1.82808474e-01 1.08668581e-03 2.65558250e-02 1.94411993e-01\\n9.44532305e-02 4.17929769e-01 -1.96961850e-01 -2.43791923e-01\\n-2.61333048e-01 2.97854185e-01 -2.83821970e-02 4.48129186e-03\\n-1.24264970e-01 3.66526961e-01 -1.34759983e-02 8.22211877e-02\\n2.26189882e-01 -9.42047685e-02 -2.72495687e-01 -2.70741105e-01\\n-3.08053017e-01 -8.52136984e-02 1.37666106e-01 4.55312245e-02\\n1.49159938e-01 -3.19297612e-01 -6.71045855e-02 -2.13812858e-01\\n-1.91874057e-01 -3.12175632e-01 -1.88196659e-01 7.33174235e-02]]',\n", + " 'job_description': 'Job Description You will be part of our IoT Core feature team, which is responsible for the development and operations of the core software services of our IoT Cloud Platform. We use agile DevOps and SRE practices to provide outstanding service quality and availability to our customers. You will join a team of always curious and enthusiastic Engineers, which are working closely together with the Product Owner to deliver valuable features that enable the digitalisation of the logistics industry. This is a (specialized or full-stack) software engineering position with focus on development and operation of software services. He / She designs, implements, tests and operates high quality software services according to SLAs and OLAs in place and takes co-ownership for team owned software components. The focus of the role will be: Conduct technical requirements analysis based on input from business analysis respectively business requirements engineering, including functional and non-functional requirements (e.g. security, availability, scalability, cost-optimization, …) Create software designs based on result of requirements analysis according to the architectural-, security-, product- and team guidelines Implement software designs using continuous integration and deployment Maintain existing software systems; including fixing bugs, adding new features, refactoring and conducting version upgrades Participate in code reviews as part of the agile software development process and collaborate with other software engineers to integrate code changes (e.g. pull/merge requests) Conduct quality testing on software (unit testing) and software systems (integration and end-to-end testing) Write and maintain technical documentation of software and software systems Operate software systems and collaborate with customer support team and system team to resolve incidents (2nd level support) Participate in agile software development activities (e.g. stand-ups, planning meetings, retrospectives, …) and collaborate with product owner and product management team to coordinate timeline for new features Qualifications Good conceptual skills in developing solution designs, documenting and implementing them Experience in writing JVM based software, primarily in Kotlin and Java. Python and Unix shell know-how is a great plus Experience with at least two of the following tools: Git / DataDog / Prometheus & Grafana / Ansible Experience with at least one of the following approaches to API development: Protobuf & gRPC Rest API (ideally using OpenAPI or Swagger) Experience with at least four of the following systems: Apache Kafka PostgreSQL or other relational database systems DynamoDB Docker Kubernetes AWS ECS / Fargate Elastic Search Linux / Unix Experience with Stream processing (e.g. Kafka Streams, Flink, Spark etc.) is very helpful Fluent in English spoken and written. German is a plus, but not mandatory Additional Information You can choose between either a MacBook Pro or a Microsoft Windows Notebook at a top location right next to the railway station Zurich Hardbrücke. Nexxiot is an equal opportunity employer. Welcoming diversity gives us a competitive advantage in the global marketplace and is an important driver of our success and culture. Our recruitment team is looking forward to receive your CV via our career portal.',\n", + " 'soft_skills': '[\"Writing\", \"Collaboration\", \"Coordinating\", \"Planning\", \"Microsoft Windows\", \"Timelines\", \"Operations\", \"Integration\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Apache Flink\", \"Kubernetes\", \"Tooling\", \"Customer Support\", \"Agility\", \"Product Management\", \"Unit Testing\", \"Unix Shell\", \"Continuous Integration\", \"Industrialization\", \"Activism\", \"Functional Requirement\", \"Software Systems\", \"Python (Programming Language)\", \"PostgreSQL\", \"Maintainability\", \"Linux\", \"E (Programming Language)\", \"Levelling\", \"Idealization\", \"Systems Integration\", \"Apache Kafka\", \"Cloud Platform System\", \"Software Engineering\", \"Amazon DynamoDB\", \"Stream Processing\", \"Agile Software Development\", \"Conceptualization\", \"Full Stack Software Engineering\", \"Docker (Software)\", \"Business Requirements\", \"AD Model Builder (ADMB)\", \"Amazon Marketplace\", \"Logistics\", \"Equalization\", \"Scalability\", \"Business Analysis\", \"Technical Documentation\", \"Code Review\", \"Receivables\", \"Software Design\", \"Service Quality\", \"Database Systems\", \"Stand-Up Comedy\", \"Datadog\", \"Grafana\", \"Java Virtual Machine (JVM)\", \"Software Development\", \"Requirements Analysis\", \"Solution Design\", \"Relational Databases\", \"Ansible\", \"Additives\", \"Git Flow\", \"OpenAPI\", \"Swagger UI\", \"Java (Programming Language)\", \"Job Descriptions\", \"Application Programming Interface (API)\", \"Prometheus (Software)\", \"Unix\", \"Software Plus Services\", \"Kotlin\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'big data software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.95475721e-01 2.26254344e-01 4.53860939e-01 -4.24860679e-02\\n5.80959022e-01 -1.46520942e-01 -5.59190586e-02 3.88909787e-01\\n-3.99867631e-02 -4.36967701e-01 -5.46029657e-02 -3.73550385e-01\\n-1.09801807e-01 1.76147111e-02 8.21338594e-02 3.62795323e-01\\n2.20697746e-01 9.19781700e-02 -1.83741719e-01 3.53953689e-01\\n1.32045880e-01 1.92891974e-02 -8.30744952e-02 6.66243434e-01\\n4.02684182e-01 -8.62751380e-02 -5.96061647e-02 4.92416322e-02\\n-2.92672575e-01 -2.51170903e-01 3.65557104e-01 6.22386225e-02\\n8.73638876e-03 -3.58958840e-01 7.53590763e-02 1.50425658e-01\\n-2.40649000e-01 -1.04149029e-01 -7.46167963e-03 1.45488515e-01\\n-4.55489099e-01 -4.19286817e-01 6.77667260e-02 7.08879158e-02\\n-2.18038335e-01 -3.20453733e-01 -9.06265005e-02 6.70380890e-03\\n7.43025616e-02 1.01407871e-01 -5.68774521e-01 3.28221112e-01\\n-1.20602623e-01 -2.01708719e-01 1.71271145e-01 6.94798172e-01\\n6.00795597e-02 -5.28285265e-01 -3.60261679e-01 -2.69926488e-01\\n9.54260007e-02 -1.25167996e-01 1.82684083e-02 -2.86625236e-01\\n3.44851434e-01 -8.75207558e-02 -2.01210030e-03 5.15401244e-01\\n-7.59545147e-01 -1.74647838e-01 -1.54337123e-01 -1.77511722e-02\\n-4.18610036e-01 6.88999519e-02 -2.67455488e-01 -2.45709702e-01\\n-4.49220538e-02 4.26948577e-01 6.60805181e-02 5.29523939e-02\\n-1.72771439e-01 2.02274024e-01 -1.52984381e-01 2.16449112e-01\\n3.17985535e-01 1.54633224e-01 8.78115892e-02 1.81203350e-01\\n-4.96432662e-01 3.61129612e-01 1.48912251e-01 -3.49737465e-01\\n2.09199846e-01 4.83496599e-02 4.96965617e-01 1.91142052e-01\\n4.90249172e-02 1.69249579e-01 -1.64535820e-01 2.95909435e-01\\n2.10195214e-01 -3.21920991e-01 1.45695701e-01 -1.86513141e-02\\n-1.04198262e-01 -4.37810458e-02 3.06518679e-03 1.80985302e-01\\n-2.49574915e-01 3.25798184e-01 2.44166896e-01 -1.84594452e-01\\n-4.40762937e-02 -5.86275280e-01 -1.05681345e-01 -5.11038676e-02\\n1.35617517e-02 2.42489070e-01 3.04114163e-01 2.24202983e-02\\n2.05946773e-01 8.20706487e-02 2.19092429e-01 1.03454149e+00\\n-5.96474186e-02 8.01406130e-02 -3.42648774e-01 3.96730900e-01\\n2.00959265e-01 -2.52870291e-01 2.27093920e-01 3.06919515e-01\\n7.69393817e-02 -1.93087101e-01 -1.44221604e-01 3.23399663e-01\\n-1.21299662e-01 -2.20447227e-01 -4.05095011e-01 5.71728386e-02\\n-2.11618215e-01 -3.14670533e-01 5.19362807e-01 2.62630433e-01\\n1.53878421e-01 -6.98986053e-02 -3.04486118e-02 -1.20067149e-01\\n-5.96076548e-02 3.37844163e-01 -6.47017732e-02 1.19129136e-01\\n-3.49243313e-01 -1.37863755e-01 -2.62030661e-01 3.65168422e-01\\n-1.87753305e-01 5.99996448e-02 -2.38119997e-03 -6.01500645e-02\\n2.30953723e-01 4.01028655e-02 -2.93289989e-01 9.85902399e-02\\n-1.01752684e-01 -3.70279402e-01 -7.03604296e-02 2.18921289e-01\\n-1.42967999e-01 1.65009469e-01 3.10352594e-02 -2.46162698e-01\\n5.74836731e-01 2.37767175e-01 3.17416757e-01 -1.45694017e-01\\n2.60939062e-01 -1.96329832e-01 1.39079258e-01 1.10690206e-01\\n-6.02635026e-01 4.38852549e-01 -2.15958096e-02 -1.36269480e-01\\n2.76113097e-02 9.02809948e-02 2.80742258e-01 -2.96117485e-01\\n3.13166827e-02 -1.08102210e-01 -4.64693904e-01 -3.60354662e-01\\n-2.95744032e-01 2.18362417e-02 4.57201451e-01 -4.04749244e-01\\n-1.46620944e-01 2.24218309e-01 -4.62048352e-01 -6.31416962e-02\\n2.15744376e-01 1.52088493e-01 9.36395898e-02 1.69552471e-02\\n-2.35127509e-01 -5.71953416e-01 -6.41718656e-02 -4.69564050e-01\\n-4.82833803e-01 -1.70049556e-02 -1.75351053e-01 2.32749358e-01\\n3.00036594e-02 1.17357276e-01 -1.96229473e-01 1.96063250e-01\\n-3.41962874e-01 5.40161692e-02 2.64841080e-01 1.71654239e-01\\n3.70597512e-01 -5.23382649e-02 -4.25205231e-01 4.65465695e-01\\n-1.23209588e-01 6.61335588e-01 2.02898487e-01 -8.49892735e-01\\n5.80643892e-01 2.20113486e-01 1.07140422e-01 -3.50698709e-01\\n5.06110311e-01 -4.42881376e-01 1.60943456e-02 1.47306606e-01\\n-3.87720615e-01 -2.73828030e-01 3.62310857e-01 -1.29508197e-01\\n-2.30647773e-01 6.08829498e-01 1.99007675e-01 1.93108644e-04\\n2.85501659e-01 -3.52590412e-01 -1.43718898e-01 -8.02329779e-02\\n-6.74726218e-02 -3.05934489e-01 -4.37115639e-01 2.22733840e-01\\n-3.05698458e-02 -6.45238340e-01 -1.13165066e-01 -4.06660229e-01\\n-2.16569886e-01 -3.51674914e-01 -2.34184876e-01 4.19165462e-01\\n2.76025742e-01 8.39332193e-02 1.54705450e-01 -4.47392352e-02\\n-9.37539153e-03 -6.15308404e-01 -1.40415624e-01 2.14486033e-01\\n4.48616087e-01 1.42360687e-01 3.09395734e-02 9.63410586e-02\\n4.47689816e-02 5.86526394e-01 -2.58371651e-01 -3.34691465e-01\\n3.50268930e-02 2.28804752e-01 4.66413796e-02 -1.29326507e-01\\n1.26996502e-01 3.64164323e-01 -2.35319719e-01 1.25682419e-02\\n-7.74245635e-02 1.72486566e-02 3.18377018e-01 1.17641807e-01\\n-2.98866600e-01 -1.28881097e-01 -4.86573093e-02 2.11960137e-01\\n-5.56597650e-01 -1.46496922e-01 5.49597919e-01 2.57537186e-01\\n1.56539068e-01 1.85051665e-01 2.33268961e-01 -1.19648881e-01\\n-2.60140896e-01 -1.78957850e-01 1.27641842e-01 1.86114728e-01\\n-5.17619848e-02 -7.25581963e-03 -1.66807011e-01 -5.54720223e-01\\n-3.27384424e+00 -2.99352974e-01 1.25636399e-01 -3.34826708e-01\\n1.35293424e-01 -1.91441938e-01 -5.06058224e-02 -4.19297926e-02\\n-3.58097583e-01 9.08822790e-02 -3.74140143e-02 -2.03052729e-01\\n1.40001193e-01 1.75485700e-01 7.85093978e-02 2.75139421e-01\\n6.75930232e-02 -1.04201205e-01 -1.75874755e-01 3.20242614e-01\\n-1.80499345e-01 -6.55113816e-01 1.88280210e-01 3.45729180e-02\\n1.92087322e-01 1.03464335e-01 -3.67073476e-01 -9.13939476e-02\\n-2.60288626e-01 -3.15773755e-01 1.50461346e-01 -2.92347848e-01\\n-1.27680227e-01 4.07256246e-01 2.06076637e-01 -5.69466464e-02\\n1.04431331e-01 -3.15710187e-01 -1.64455786e-01 -4.24376100e-01\\n5.02487719e-02 -6.14461482e-01 -4.13530972e-03 -1.52367115e-01\\n7.23793507e-01 -4.16154653e-01 1.60419077e-01 2.09563658e-01\\n1.65270373e-01 2.15606675e-01 -6.22715205e-02 -2.51014847e-02\\n-1.58902198e-01 -4.31894481e-01 -3.61498743e-02 -1.74072698e-01\\n3.66990685e-01 6.79837286e-01 -5.81002608e-02 5.80697767e-02\\n2.83709224e-02 -2.37823009e-01 -3.40500116e-01 -4.35889930e-01\\n-2.56529748e-01 -2.01638266e-01 -6.39951944e-01 -3.77360404e-01\\n-4.79043275e-02 -6.39219284e-02 -1.60647914e-01 5.89628279e-01\\n-2.55052179e-01 -4.55416977e-01 3.13365459e-02 -4.99687046e-01\\n1.90832689e-01 -3.24378014e-01 2.12393124e-02 -2.54639350e-02\\n-2.83375174e-01 -5.61321497e-01 5.82969934e-02 -6.76132515e-02\\n-9.46271271e-02 -1.63567424e-01 -5.85322231e-02 -3.22122186e-01\\n-2.75480002e-01 -4.30737913e-01 4.63177025e-01 3.80742326e-02\\n3.63200217e-01 2.18286917e-01 3.83527458e-01 1.68774560e-01\\n2.92564541e-01 -2.24895909e-01 3.35482322e-02 -2.67039686e-01\\n1.32625371e-01 2.52870675e-02 5.74510455e-01 -3.28678519e-01\\n1.87079027e-01 1.65346906e-01 -1.72589436e-01 -4.19711359e-02\\n3.82238358e-01 1.07176125e-01 2.47276928e-02 -2.21477687e-01\\n3.22325230e-01 -4.73418862e-01 -2.94984847e-01 7.49611408e-02\\n2.56017912e-02 5.84212542e-01 2.26561967e-02 -4.32384461e-01\\n-3.07419747e-01 4.82267022e-01 -1.37267321e-01 -2.32606292e-01\\n-2.20473588e-01 2.22867355e-01 -2.23136291e-01 2.67648876e-01\\n-6.65471703e-02 -2.74088055e-01 -3.29390824e-01 -1.24797903e-01\\n3.80638689e-02 3.19269150e-01 2.52215534e-01 5.11887968e-02\\n-9.58219767e-02 -2.24039465e-01 -2.36812577e-01 8.30175281e-02\\n3.06641161e-01 3.50338787e-01 1.67791516e-01 -2.56307840e-01\\n-3.67232524e-02 2.96854287e-01 -2.47724161e-01 1.37385592e-01\\n-2.37223819e-01 -3.34507693e-03 -4.96104240e-01 -3.52341712e-01\\n-7.54139870e-02 -3.38786930e-01 1.71203136e-01 3.60969782e-01\\n1.28469169e-01 3.71311791e-02 6.97689727e-02 -3.67727041e-01\\n4.52716887e-01 1.69058323e-01 2.35524848e-01 2.16950893e-01\\n1.09465197e-01 5.56912363e-01 6.39542341e-02 1.59667078e-02\\n-1.42778486e-01 -5.47087640e-02 -2.51594692e-01 -2.45271802e-01\\n1.56751052e-02 -2.94680744e-01 -8.09413120e-02 4.02674198e-01\\n1.28824353e-01 -2.93660402e-01 -2.18146637e-01 2.78625727e-01\\n5.52773476e-02 -2.23346204e-01 -2.08730370e-01 1.93362474e-01\\n3.04248154e-01 9.46478546e-02 2.81250775e-01 -3.82710069e-01\\n-7.38215744e-02 -8.45693890e-03 -1.77632898e-01 5.56947589e-01\\n1.35574698e-01 1.91329286e-01 -1.47024229e-01 -3.18406701e-01\\n4.71808642e-01 -3.17078114e-01 -1.11251689e-01 -4.95895334e-02\\n6.71581030e-02 -1.51965797e-01 -4.38187629e-01 8.32440890e-03\\n6.22140244e-02 -2.49412596e-01 -7.76134152e-03 -7.77934045e-02\\n1.92667738e-01 -6.50997460e-02 -4.96636838e-01 -3.38285476e-01\\n-3.07087183e-01 -7.72012919e-02 1.01271346e-01 -3.33471388e-01\\n1.22377902e-01 -1.39897943e-01 -6.57892168e-01 3.55121881e-01\\n-3.81078839e-01 4.40483652e-02 1.71394244e-01 2.30508551e-01\\n-3.17160189e-01 -1.72561422e-01 1.40755370e-01 2.88247287e-01\\n-2.44927764e-01 -2.15423509e-01 2.13999376e-02 -9.42028344e-01\\n9.42409560e-02 1.12232469e-01 4.93034720e-02 1.13276236e-01\\n1.76892001e-02 -6.78622544e-01 9.10845678e-03 -3.45193356e-01\\n7.16942828e-03 6.26908988e-02 -1.19431667e-01 -4.31187004e-01\\n1.31507680e-01 -2.20978949e-02 -2.27522150e-01 5.46937704e-01\\n-4.37410682e-01 2.49749586e-01 8.13524872e-02 6.33123666e-02\\n-2.54239962e-02 -3.12331378e-01 2.55327940e-01 -3.27183366e-01\\n-3.80097985e-01 -1.98244587e-01 -4.14886475e-01 -2.46360943e-01\\n7.37966523e-02 -3.50707769e-01 -1.55214086e-01 3.05523127e-02\\n3.41487914e-01 1.33365273e-01 -4.59644496e-02 -3.54491025e-01\\n6.64303452e-02 -5.13485193e-01 2.12670580e-01 -1.79662958e-01\\n-5.49814366e-02 -8.18276182e-02 1.04853325e-01 -1.53965428e-02\\n-4.22927327e-02 -2.46929765e-01 4.28736448e-01 -2.61655420e-01\\n-3.16984773e-01 -7.76130408e-02 2.35438775e-02 -2.89229900e-02\\n3.74388337e-01 -4.41389441e-01 5.61160780e-02 2.15472475e-01\\n1.01974204e-01 9.74785388e-02 1.77072063e-01 -5.50971963e-02\\n-1.71229411e-02 3.66843849e-01 -4.03665066e-01 1.71222448e-01\\n7.72879958e-01 1.10052019e-01 1.75228253e-01 1.33410051e-01\\n2.96199054e-01 2.62107670e-01 4.83521521e-01 7.08788186e-02\\n-1.00040026e-02 3.32884133e-01 -2.08763089e-02 -4.07036364e-01\\n-7.40661025e-02 -2.14393348e-01 -2.39744127e-01 -4.52552140e-01\\n5.58019459e-01 4.70275819e-01 -3.46059859e-01 -2.16618299e-01\\n-3.47116813e-02 -6.50407299e-02 2.23237917e-01 -1.35597959e-01\\n-5.98178022e-02 -1.53355300e-01 5.06355405e-01 1.00932270e-01\\n3.05029511e-01 5.33264339e-01 -1.71253711e-01 -3.97520751e-01\\n-9.18749422e-02 1.59174070e-01 1.13648698e-01 3.88655096e-01\\n-8.14059004e-02 2.91913539e-01 -7.31543005e-02 1.69629723e-01\\n-3.56875956e-02 1.72448888e-01 1.38775945e-01 3.55037302e-02\\n2.05852270e-01 8.90005454e-02 1.91254079e-01 4.69349653e-01\\n2.03432903e-01 5.33900201e-01 3.01824301e-01 1.07106768e-01\\n3.03169817e-01 6.24656439e-01 3.83771598e-01 2.38275841e-01\\n-6.55042082e-02 9.51227099e-02 -5.64756207e-02 -1.47325441e-01\\n2.61510521e-01 3.44324619e-01 2.85252452e-01 9.00778592e-01\\n4.15358901e-01 2.40412816e-01 6.47011340e-01 -6.87209189e-01\\n-5.45796454e-01 -3.10212299e-02 4.12527412e-01 -3.32838863e-01\\n-1.98096886e-01 7.54174218e-02 -3.22513700e-01 2.27216333e-01\\n-4.72523570e-01 -1.39684722e-01 3.25777307e-02 -1.91801731e-02\\n8.55811164e-02 -1.48772513e-02 -1.30849838e-01 9.36722085e-02\\n-2.58172303e-01 -1.96207657e-01 -3.33872497e-01 2.51356289e-02\\n-2.98594952e-01 -1.47525907e-01 -9.91603583e-02 -1.30799070e-01\\n-1.48786873e-01 -4.45343912e-01 -1.40166789e-01 5.13993986e-02\\n3.65583539e-01 -1.67331591e-01 -4.03164811e-02 -1.87791273e-01\\n6.05205409e-02 3.06825429e-01 5.33544123e-01 2.85932776e-02\\n1.61482319e-01 -1.56927541e-01 -2.98925489e-01 -2.60578152e-02\\n1.05298422e-01 -2.02528425e-02 4.29035947e-02 4.04046923e-01\\n-3.57976645e-01 4.83534038e-02 1.49896696e-01 3.09991986e-01\\n-4.17110503e-01 -7.67792389e-02 -6.01658486e-02 2.98036575e-01\\n1.95033014e-01 1.95551425e-01 -2.43445098e-01 1.79031640e-01\\n-1.64461389e-01 -5.10943413e-01 4.05780405e-01 -3.20384175e-01\\n-8.28288272e-02 1.94541678e-01 2.44015619e-01 1.43040106e-01\\n-3.06002349e-01 3.64518389e-02 3.75650562e-02 3.18242967e-01\\n8.25231671e-02 3.89071971e-01 -3.78574401e-01 -1.65361837e-01\\n-2.86702842e-01 1.76596239e-01 -2.02760860e-01 1.93664253e-01\\n-1.27851710e-01 2.62336522e-01 1.10623665e-01 8.00899342e-02\\n2.42279559e-01 5.33821434e-03 -2.02188060e-01 -1.83732197e-01\\n-3.14817011e-01 -2.74801016e-01 7.21751079e-02 -4.74980585e-02\\n1.92906916e-01 -3.43351245e-01 -1.51936695e-01 -2.95777172e-02\\n-2.24784166e-01 -4.30074722e-01 -6.94972426e-02 -1.45534292e-01]]',\n", + " 'job_description': 'Über unseren Kunden Our client combines academic and practical knowhow to a unique Big Data service offering for their customers. Ihr Aufgabenbereich Build, scale and maintain solutions based on Hadoop and/or other NoSQL systems Write and tune complex near-real-time and batch data pipelines with Spark or Java MapReduce Explore available technologies to provide business support to the clients Work closely with customers and other stakeholders in an agile environment Ihr Profil Bachelor or Master in Computer Science / Information Management or related field Proficient in OOP (Java) and FP (Scala, Clojure), willing to learn new programing languages Experience in Big Data technologies (Hadoop, Spark, Kafka, HBase) Knowledge of real-time processing systems like Storm, Spark Streaming or others Knowledge and experience in agile software development Superb problem-solving skills You are a proactive team player with the ability to work independently and accurately in interdisciplinary projects Knowledge of data structures and algorithms for Big Data, Machine Learning is a plus Very good skills in German and English, French would be an asset Ihre Chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung Sprachen: Deutsch Englisch Französisch Job ID: 2052',\n", + " 'soft_skills': '[\"Proactivity\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Business Support Systems\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Spark Streaming\", \"Scale (Map)\", \"Scala (Programming Language)\", \"MapReduce\", \"Maintainability\", \"Real Time Systems\", \"Transaction Processing Systems\", \"Machine Learning Methods\", \"Agile Software Development\", \"Real Time Payments\", \"Clojure\", \"Project-Based Solutions\", \"Information Management\", \"Big Data\", \"Data Structures\", \"Software Development\", \"Algorithms\", \"Apache HBase\", \"Amazon Data Pipeline\", \"Writing Systems\", \"Java (Programming Language)\", \"Extended Data Services\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.91686648e-01 2.04061642e-01 4.32900786e-01 5.80541231e-03\\n5.18044472e-01 -4.35516611e-02 6.88831061e-02 3.14570218e-01\\n-2.31416989e-02 -1.06871881e-01 -2.13608995e-01 -3.15169513e-01\\n-2.04013705e-01 4.33192477e-02 2.12641582e-01 4.68771964e-01\\n2.06029788e-01 4.64090845e-03 -2.33336136e-01 3.54226083e-01\\n8.34875479e-02 1.16545513e-01 -8.03779885e-02 6.66175187e-01\\n4.59694654e-01 7.73728266e-02 -9.30137709e-02 -6.06686398e-02\\n-4.31178957e-01 -1.22906849e-01 3.92261207e-01 3.61385271e-02\\n-9.46454480e-02 -3.26138735e-01 2.11242456e-02 1.10569127e-01\\n-2.47097641e-01 -1.50502831e-01 1.68206654e-02 2.04309180e-01\\n-3.79395932e-01 -3.12247723e-01 6.52576089e-02 1.26953319e-01\\n-2.43624642e-01 -2.30153948e-01 -9.27058533e-02 2.55104769e-02\\n-1.03222162e-01 1.84942279e-02 -6.65568054e-01 4.08408523e-01\\n-1.04728453e-02 -2.32192174e-01 2.04855323e-01 5.86999357e-01\\n-3.99021171e-02 -6.51836574e-01 -1.44396707e-01 -3.63383561e-01\\n9.07827243e-02 -1.54940471e-01 1.95662662e-01 -1.43888503e-01\\n2.62164503e-01 -2.54363287e-02 -9.81821939e-02 4.06078011e-01\\n-6.90876722e-01 -2.91096240e-01 -2.70085990e-01 2.83177420e-02\\n-4.25305545e-01 2.47034803e-01 -2.70958364e-01 -1.99569121e-01\\n-7.19892373e-03 3.57395053e-01 -7.33129233e-02 1.79655209e-01\\n-1.30498648e-01 2.68183112e-01 5.49143404e-02 1.56695530e-01\\n3.29132676e-01 1.70341834e-01 6.99401200e-02 3.04478884e-01\\n-4.62187618e-01 3.90775949e-01 2.11236048e-02 -2.53589392e-01\\n7.53163546e-02 7.59304240e-02 5.08834243e-01 1.42248869e-01\\n-3.88880493e-03 1.46473348e-01 -1.14827834e-01 2.20470622e-01\\n1.56753615e-01 -3.96738827e-01 1.68205366e-01 -1.48392871e-01\\n-3.07249308e-01 9.56062824e-02 -5.15857749e-02 1.48669571e-01\\n-3.95480365e-01 3.60392392e-01 3.44294488e-01 -1.48743823e-01\\n4.47677597e-02 -7.07802296e-01 -6.16617687e-03 -1.08273730e-01\\n-3.29244770e-02 2.66690195e-01 3.53786469e-01 1.39948636e-01\\n3.35522771e-01 -2.40337998e-02 3.09950709e-01 9.22345698e-01\\n1.06312841e-01 -6.31182119e-02 -2.80792922e-01 3.81584108e-01\\n1.77828118e-01 -1.56814650e-01 1.29394233e-01 3.10392052e-01\\n1.79872289e-01 -1.06019974e-02 -3.41209352e-01 1.85541242e-01\\n-2.57802755e-01 -2.52250612e-01 -2.50154316e-01 6.68606237e-02\\n-3.00160915e-01 -5.20796239e-01 4.69825923e-01 2.89042899e-03\\n1.94604620e-01 -2.91163594e-01 4.07283343e-02 -2.49617416e-02\\n9.56173986e-02 3.98653984e-01 2.79094782e-02 2.17068866e-01\\n-3.32155615e-01 -2.23185718e-01 -9.21046361e-02 4.37520176e-01\\n-1.27507046e-01 8.61564875e-02 -4.25243825e-02 -1.88912332e-01\\n2.21561462e-01 1.54933020e-01 -4.68802392e-01 8.78279582e-02\\n-7.37207234e-02 -5.42537093e-01 -1.70441732e-01 2.29685605e-01\\n-1.14009015e-01 1.72813907e-01 6.27578199e-02 -4.33599025e-01\\n4.43504423e-01 2.13964894e-01 3.21540713e-01 -1.51990175e-01\\n3.53876829e-01 -2.53861398e-01 3.90937448e-01 9.04271677e-02\\n-5.72262168e-01 2.86348790e-01 -4.35030013e-02 -2.74785340e-01\\n5.26457578e-02 9.81169194e-02 4.16561067e-01 -3.90926689e-01\\n7.44875073e-02 -1.22140825e-01 -5.08401811e-01 -4.69216824e-01\\n-2.30852485e-01 -1.41185215e-02 3.27836186e-01 -2.72792906e-01\\n-1.21926583e-01 1.26300439e-01 -4.60910052e-01 -1.87993661e-01\\n1.98193178e-01 1.49658859e-01 -5.78675941e-02 1.21580981e-01\\n-1.14804476e-01 -5.86582541e-01 -7.11060837e-02 -4.94487405e-01\\n-5.88183165e-01 6.78510685e-03 -1.46117225e-01 1.84540823e-01\\n-4.49923463e-02 6.83041364e-02 -1.15771160e-01 9.27980244e-02\\n-3.67254108e-01 8.01892281e-02 8.07137415e-02 1.34678900e-01\\n2.40965366e-01 -3.53384875e-02 -3.95915896e-01 5.52297473e-01\\n-1.36895254e-01 7.23371267e-01 1.95815772e-01 -7.41342068e-01\\n6.38919592e-01 2.20288649e-01 1.21694058e-01 -3.34901065e-01\\n4.34764653e-01 -4.39412773e-01 1.34969741e-01 1.38143837e-01\\n-1.92996383e-01 -1.85268894e-01 3.54556441e-01 -2.34328449e-01\\n-2.26210520e-01 6.41136110e-01 2.31571779e-01 -4.68387939e-02\\n2.65198618e-01 -3.25872600e-01 -7.42147639e-02 2.10727658e-02\\n-1.24358773e-01 -2.64939845e-01 -3.25193048e-01 2.36042559e-01\\n2.05413494e-02 -4.78125781e-01 -1.34334296e-01 -3.00024182e-01\\n-2.20172137e-01 -3.30865502e-01 -1.60069898e-01 4.58098292e-01\\n2.76281744e-01 6.51849508e-02 1.63065001e-01 -1.41635284e-01\\n3.59781235e-02 -5.04790545e-01 -7.63145015e-02 6.02018833e-02\\n4.72447187e-01 2.22790226e-01 1.42201856e-01 -3.78096811e-02\\n-1.62803754e-01 5.66866040e-01 -2.81950563e-01 -3.03432107e-01\\n7.97862262e-02 1.26851588e-01 -1.34955049e-01 -8.98523182e-02\\n2.16015540e-02 3.30069751e-01 -1.12245493e-01 1.98037133e-01\\n-1.73597977e-01 5.31428717e-02 3.97042304e-01 5.46354742e-04\\n-6.91757128e-02 -9.93821844e-02 2.34444849e-02 4.30463403e-01\\n-4.51289505e-01 -2.72068530e-01 5.25003254e-01 2.51450390e-01\\n1.47409484e-01 1.89006016e-01 2.93197662e-01 -1.90295175e-01\\n-1.99855283e-01 -3.15547258e-01 1.98901683e-01 1.13358460e-01\\n-7.48423561e-02 6.57600686e-02 -1.22415893e-01 -5.27231753e-01\\n-3.09559941e+00 -1.15185134e-01 8.34255666e-02 -2.94988632e-01\\n1.26817331e-01 -5.58995754e-02 -9.95766968e-02 1.78745668e-02\\n-3.18785220e-01 1.68545768e-01 -1.95996329e-01 -1.77107424e-01\\n-3.22351940e-02 2.67682254e-01 2.70675067e-02 6.31248206e-02\\n6.36800081e-02 -1.29271969e-01 -6.45667613e-02 3.60034555e-01\\n-1.04455441e-01 -7.07329273e-01 1.27839133e-01 9.89936143e-02\\n1.60704896e-01 1.39445588e-01 -3.79342139e-01 -2.20478594e-01\\n-2.47751176e-01 -2.63370812e-01 1.02236338e-01 -3.67218524e-01\\n-2.26745471e-01 5.52684784e-01 1.89995721e-01 1.23770475e-01\\n-2.57424414e-02 -3.64202052e-01 5.16005047e-02 -3.72083664e-01\\n4.92196679e-02 -6.75677419e-01 -2.24536229e-02 -6.73445463e-02\\n7.37730682e-01 -3.14650893e-01 2.38339290e-01 1.16855979e-01\\n1.99528173e-01 1.91732794e-01 -9.02530476e-02 -3.59763354e-02\\n-3.00475210e-01 -3.57758582e-01 -3.88732441e-02 -1.25933304e-01\\n1.98664621e-01 5.35580575e-01 -1.26230106e-01 9.72895473e-02\\n1.66875422e-01 -3.12311232e-01 -3.78897369e-01 -4.96209085e-01\\n-3.85520071e-01 -3.04649651e-01 -7.95602918e-01 -4.55968976e-01\\n6.41787574e-02 -2.38715727e-02 -2.03945309e-01 6.33700073e-01\\n-2.67338723e-01 -3.09815854e-01 3.13259922e-02 -5.72830915e-01\\n8.76204297e-02 -3.82605910e-01 7.02480972e-02 -5.17662093e-02\\n-2.30191305e-01 -4.76210207e-01 2.21614793e-01 -4.52983044e-02\\n-8.74392986e-02 -5.20487204e-02 -1.32195219e-01 -3.47441792e-01\\n-3.51087242e-01 -4.01318222e-01 4.83230531e-01 1.67956620e-01\\n3.45731348e-01 1.77679092e-01 3.14586937e-01 1.78574964e-01\\n2.28793174e-01 -1.79718718e-01 1.02619573e-01 -2.74181455e-01\\n1.50165260e-01 7.03793615e-02 6.06749535e-01 -2.58435279e-01\\n2.18768328e-01 7.18174875e-02 -2.40116552e-01 2.39831414e-02\\n3.87367308e-01 1.04221758e-02 -1.10561617e-01 1.06923759e-01\\n3.44872296e-01 -7.11534023e-01 -2.85245121e-01 1.62486106e-01\\n1.03101274e-02 6.29650652e-01 1.19856186e-01 -3.50648224e-01\\n-3.50287288e-01 3.50472361e-01 -1.14624739e-01 -2.77999461e-01\\n-2.41299435e-01 2.00297326e-01 -3.36781219e-02 2.01471657e-01\\n-8.62081870e-02 -2.59894907e-01 -3.28894407e-01 -1.00058675e-01\\n-1.76600572e-02 1.67612225e-01 2.25826800e-01 -2.74837622e-03\\n-1.15479641e-01 -2.98116982e-01 -2.16345146e-01 1.26768455e-01\\n4.86808360e-01 2.68854707e-01 1.05064958e-01 -2.23249957e-01\\n-6.88995793e-02 2.34800488e-01 -9.46756452e-02 2.06882849e-01\\n-1.13547988e-01 2.16431692e-02 -4.87001568e-01 -2.74139404e-01\\n-7.26620257e-02 -2.69470245e-01 1.67877689e-01 4.22688961e-01\\n2.02724263e-01 1.23987952e-02 1.65575430e-01 -4.72110569e-01\\n5.43054283e-01 3.25886011e-02 2.37037271e-01 9.31065083e-02\\n-1.38055921e-01 5.86927772e-01 -2.53712311e-02 7.49213919e-02\\n-3.06381006e-02 -2.15650886e-01 -3.27455670e-01 -2.30519980e-01\\n7.34299496e-02 -1.59435898e-01 -6.76190332e-02 4.90209043e-01\\n8.61545354e-02 -3.16816658e-01 -1.40562698e-01 2.92161793e-01\\n7.88714513e-02 -3.43418807e-01 -2.03560680e-01 2.06449088e-02\\n3.21168929e-01 1.94228709e-01 2.89532244e-01 -3.93969625e-01\\n-1.63746029e-01 1.33334100e-02 -1.36937410e-01 4.68767136e-01\\n1.50372535e-01 4.56012189e-02 -1.45879835e-01 -2.96538979e-01\\n4.93033051e-01 -3.20778310e-01 -1.61193863e-01 1.33040011e-01\\n9.44858417e-02 -1.56003058e-01 -5.19017041e-01 -1.38598129e-01\\n3.73046286e-03 -3.13572586e-01 7.54157901e-02 -3.96254249e-02\\n7.04898387e-02 -1.04615487e-01 -4.65436101e-01 -1.98056504e-01\\n-2.42939785e-01 -1.61022365e-01 2.72263400e-02 -3.25940460e-01\\n-6.75823689e-02 -1.42018273e-01 -5.76319933e-01 2.35365167e-01\\n-2.95892686e-01 3.27474661e-02 1.46657616e-01 1.56496599e-01\\n-3.91837656e-01 -2.18247637e-01 4.59922403e-02 1.58302888e-01\\n-2.15325177e-01 -9.29694772e-02 4.32322398e-02 -1.05566096e+00\\n6.74600303e-02 9.57051888e-02 4.38620970e-02 -1.37444250e-02\\n5.82143925e-02 -4.75047231e-01 9.01588053e-02 -4.09445524e-01\\n1.78429082e-01 1.43065438e-01 -1.89526349e-01 -3.32361102e-01\\n2.36770779e-01 -9.77622718e-03 -1.90614969e-01 4.00422871e-01\\n-4.33595836e-01 2.24015430e-01 1.00988053e-01 2.49428526e-02\\n-1.31894322e-02 -2.22912118e-01 1.54108465e-01 -2.20984921e-01\\n-3.87277067e-01 -7.69300833e-02 -3.49794298e-01 -1.46556661e-01\\n5.36721461e-02 -1.79340631e-01 -1.82234108e-01 -2.12534494e-03\\n2.67346382e-01 1.74136102e-01 -8.22721422e-02 -2.09856361e-01\\n1.65601522e-01 -4.61291492e-01 1.79181471e-01 -2.80783921e-01\\n-7.81702548e-02 -8.81757289e-02 1.14850618e-01 -2.13391781e-02\\n-4.90123481e-02 -1.90039948e-01 4.20607239e-01 -4.21165496e-01\\n-4.26618218e-01 -1.46922663e-01 6.75674528e-02 -6.57596514e-02\\n1.99816599e-01 -5.05904078e-01 9.24960896e-02 1.79652214e-01\\n-1.23600625e-02 5.12330867e-02 3.10125351e-01 1.73377208e-02\\n-7.69033805e-02 2.12042525e-01 -4.49290246e-01 1.49462000e-01\\n7.97258973e-01 2.44524360e-01 1.03667662e-01 1.47585422e-01\\n3.19616884e-01 1.93922266e-01 4.80840445e-01 2.74203829e-02\\n-6.48033759e-03 3.03565234e-01 2.05989815e-02 -5.44946373e-01\\n-1.35170072e-01 -2.17022493e-01 -2.81841010e-01 -3.52884531e-01\\n5.24826765e-01 3.64471138e-01 -2.89452016e-01 -2.52792299e-01\\n4.29466888e-02 -3.98050807e-03 3.09857309e-01 -9.07611772e-02\\n-1.62053388e-02 4.23711911e-03 6.46601498e-01 -4.12539020e-02\\n2.83709884e-01 5.23165226e-01 -1.53776795e-01 -3.81389380e-01\\n-2.21663475e-01 2.19195157e-01 2.47132704e-01 4.67390478e-01\\n-1.41480789e-01 2.21952155e-01 6.55875681e-03 8.12674686e-02\\n1.22969672e-02 5.68068214e-02 1.13815844e-01 1.14773445e-01\\n1.92382187e-01 8.23568106e-02 9.49330479e-02 4.14008975e-01\\n5.60235269e-02 5.41974485e-01 2.57521600e-01 1.12128057e-01\\n2.22433060e-01 6.99137092e-01 2.99825996e-01 2.41511628e-01\\n-2.20777504e-02 1.94488913e-01 -6.79388791e-02 -5.71528152e-02\\n3.13189805e-01 1.79291338e-01 2.53783673e-01 8.21816862e-01\\n4.30064529e-01 4.26190197e-01 6.28211617e-01 -7.05857992e-01\\n-5.40140808e-01 -2.42070891e-02 4.85594153e-01 -4.06843603e-01\\n-8.49680305e-02 7.87440091e-02 -1.83871135e-01 4.23936516e-01\\n-5.04320562e-01 -1.52203068e-01 8.90779197e-02 -1.97354853e-01\\n9.27238986e-02 1.12863235e-01 -2.46302843e-01 1.06928006e-01\\n-3.24640989e-01 -2.52708167e-01 -1.78537622e-01 -1.82979271e-01\\n-2.94684291e-01 7.05610821e-03 -2.19192028e-01 -6.02630153e-02\\n-1.73061714e-01 -2.81221062e-01 -5.15223891e-02 9.77224186e-02\\n3.45926851e-01 -1.70974880e-01 -5.85893318e-02 -8.38431567e-02\\n3.22858468e-02 3.04626942e-01 5.61742485e-01 -2.06052825e-01\\n1.91823915e-01 -2.77284253e-02 -3.05221140e-01 -4.42805402e-02\\n8.79964232e-02 -2.45617349e-02 6.70327097e-02 5.06610870e-01\\n-3.83912235e-01 -9.10310447e-02 1.72058523e-01 2.16033608e-01\\n-3.52536142e-01 -1.22531824e-01 -7.99581185e-02 2.29155853e-01\\n5.28882556e-02 1.27549261e-01 -4.40746605e-01 6.87479153e-02\\n-2.03659371e-01 -5.89218378e-01 3.70585591e-01 -3.16344202e-01\\n-6.58534691e-02 3.46906602e-01 3.73105437e-01 7.74152949e-02\\n-3.17093253e-01 1.34946406e-01 -4.19319198e-02 3.90964121e-01\\n2.11893208e-02 3.65439743e-01 -2.65085846e-01 -2.08954737e-01\\n-1.74587041e-01 2.98991859e-01 -1.84180886e-01 3.04837316e-01\\n-1.71879321e-01 2.79030085e-01 1.64251611e-01 -2.80765109e-02\\n1.37629569e-01 3.68232317e-02 -2.77507752e-01 -2.47004271e-01\\n-2.96162635e-01 -3.46491158e-01 1.46319360e-01 4.40414101e-02\\n1.67378008e-01 -3.22934538e-01 -1.03864007e-01 -2.76259840e-01\\n-1.69470996e-01 -3.75530303e-01 -1.91596404e-01 1.57630280e-01]]',\n", + " 'job_description': 'Über unseren Kunden Unser Kunde ist einer der führenden Bankunternehmen der Schweiz Ihr Aufgabenbereich Sourcing and transformation of both structured and unstructured distributed client data coming from relational database systems using SQL or streaming data feeds using APIs; Application of advanced statistical methods, data mining, machine learning, deep learning or reinforcement learning, where applicable, to build and deploy models aiming at an improved client communication and truly personalized client experience / advice; Turning data analysis results into business insights & actions by using effective communication to various business stakeholders. Ihr Profil a degree in a technical field (Computer Science, Statistics, Mathematics, Physics, Engineering or similar) or equivalent practical experience; experience in Machine Learning / Artificial Intelligence, Data Mining, Natural Language Understanding or Algorithmic Foundations of Optimization; experience in processing data from relational databases using SQL; experience in visualizing data analysis results in an effective, applicable manner; programming experience and proficiency in one or more of the following: Python, R, Julia, Scala, Java, C/C++ (preferable, not required: understanding of object oriented design, programming and analysis); (preferable, not required) experience with learning frameworks/tools (TensorFlow, PyTorch, Caffe, MXNet, H2O, Deeplearning4j, Microsoft Cognitive Toolkit, MLlib, CUDA) and/or ‘Big Data’ analyses involving Apache Spark, Hadoop, Mesos or Kubernetes, and/or distributions such as Hortonworks; ability to explain complex models to both technical and non-technical stakeholders; basic knowledge about core banking products (functional, usage, target groups). Ihre Chance Schicken Sie Ihre Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: JAVA Entwicklung C# / C++ / C SQL Sprachen: Job ID: 7055',\n", + " 'soft_skills': '[\"Communications\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Apache Spark\", \"Julia (Programming Language)\", \"Tooling\", \"Programming (Music)\", \"Apache MXNet\", \"Statistical Methods\", \"Computer Science\", \"Data Streaming\", \"Machine Learning\", \"Nvidia CUDA\", \"Mathematical Statistics\", \"Production Function\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Data Feed\", \"Data Visualization\", \"Natural Language Understanding\", \"Mathematical Physics\", \"TARGET 3001!\", \"C (Programming Language)\", \"C# (Programming Language)\", \"Personalization\", \"R (Programming Language)\", \"Caffe\", \"Artificial Intelligence\", \"Object-Oriented Design\", \"Electronic Data Processing\", \"Deep Learning\", \"Survey Data Analysis\", \"Java Data Mining\", \"TensorFlow\", \"Big Data\", \"Database Systems\", \"Transformation (Genetics)\", \"Microsoft Cognitive Toolkit (CNTK)\", \"Banking\", \"Relational Databases\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Java (Programming Language)\", \"Reinforcement Learning\", \"SQL (Programming Language)\", \"Data Analysis\", \"Apache Mesos\"]',\n", + " 'languages': \"['English', 'Limburger', 'Shona', 'Southern Sotho', 'Xhosa']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer – full stack java developer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.38020450e-01 2.89252847e-01 5.50936282e-01 -1.30269632e-01\\n6.12978935e-01 -8.19544271e-02 5.71732745e-02 3.72604609e-01\\n-1.01555577e-02 -2.83596218e-01 -1.40971750e-01 -3.23409617e-01\\n-3.14746574e-02 7.91962594e-02 1.81828246e-01 3.82863671e-01\\n1.36100456e-01 1.24225371e-01 -2.51341254e-01 2.05138013e-01\\n2.22766399e-01 3.69416066e-02 6.50205761e-02 6.44660056e-01\\n4.77383882e-01 4.81395796e-02 -8.17026719e-02 -5.71360067e-02\\n-3.49323899e-01 -2.90569216e-01 3.19683284e-01 -7.50034377e-02\\n-7.97010437e-02 -3.43942076e-01 -6.57866258e-05 6.16875663e-02\\n-2.29268506e-01 -1.57014519e-01 1.21674597e-01 2.21074298e-01\\n-4.57505256e-01 -3.14544857e-01 1.12679780e-01 1.93631779e-02\\n-1.70714349e-01 -2.40523934e-01 -8.86114612e-02 5.60749099e-02\\n7.20198750e-02 1.52499955e-02 -5.93267560e-01 3.58435810e-01\\n-1.65146336e-01 -1.77558690e-01 2.21322000e-01 6.25901818e-01\\n2.21056938e-02 -5.38928628e-01 -3.00852805e-01 -1.58400357e-01\\n1.26864061e-01 -5.99948466e-02 1.11612581e-01 -9.25844088e-02\\n3.34102780e-01 -1.37619432e-02 -1.06739715e-01 5.10814607e-01\\n-6.92016065e-01 -1.40844852e-01 -1.97262257e-01 -4.78972308e-02\\n-3.65765244e-01 4.41076234e-02 -1.77011207e-01 -1.83325410e-01\\n-1.10413872e-01 3.79701436e-01 8.56751204e-02 8.75183269e-02\\n-1.45346746e-01 2.47045785e-01 -5.86439371e-02 1.37468889e-01\\n3.10909122e-01 1.98889345e-01 1.72130585e-01 2.82537401e-01\\n-4.18444604e-01 3.42172325e-01 1.52799442e-01 -2.70126998e-01\\n1.99976727e-01 4.22309972e-02 4.70033348e-01 1.59599587e-01\\n-1.28056884e-01 1.97013989e-01 -1.58288538e-01 1.88701764e-01\\n2.81195015e-01 -2.75208771e-01 7.48789161e-02 5.58504313e-02\\n-2.01686770e-01 8.37526657e-03 -1.09921299e-01 3.29367876e-01\\n-2.90000677e-01 3.18743885e-01 3.01654547e-01 -1.13300286e-01\\n-8.77433270e-02 -6.64337516e-01 -9.70620513e-02 -1.85516838e-04\\n-2.09898055e-02 2.75159985e-01 3.50670427e-01 1.68694675e-01\\n1.86507478e-01 7.00895265e-02 2.44398564e-01 9.76149261e-01\\n1.92380685e-03 9.88360569e-02 -3.35690439e-01 3.56263638e-01\\n1.67176902e-01 -1.47717237e-01 1.53779745e-01 2.82772154e-01\\n5.43613359e-02 -6.97367936e-02 -9.91211683e-02 2.81315118e-01\\n-1.10305935e-01 -2.03170463e-01 -2.97168553e-01 1.00079319e-02\\n-3.55954051e-01 -2.92480677e-01 4.04611081e-01 1.52087316e-01\\n1.52592465e-01 -1.32529885e-01 -3.47781964e-02 -9.05324072e-02\\n-3.80969383e-02 4.63801235e-01 -5.51058911e-02 9.66308117e-02\\n-3.24663430e-01 -1.34776920e-01 -2.63138443e-01 3.39556366e-01\\n2.93166302e-02 2.77217720e-02 -2.56409366e-02 -9.49944779e-02\\n2.62268662e-01 1.05040252e-01 -3.00486475e-01 2.65005440e-01\\n2.03071535e-02 -3.78961802e-01 -2.18933553e-01 8.99778381e-02\\n-4.39079851e-02 6.25727326e-02 -8.24522134e-03 -4.00816560e-01\\n5.02790451e-01 1.50370613e-01 2.65438437e-01 -5.51680215e-02\\n2.77819335e-01 -3.14357042e-01 1.85936734e-01 1.34428054e-01\\n-5.75830758e-01 4.72359717e-01 -7.66385794e-02 -4.62857261e-02\\n-8.07601213e-03 9.18425620e-02 2.85387009e-01 -3.00662011e-01\\n4.30009589e-02 -1.23459332e-01 -3.70249748e-01 -4.44266140e-01\\n-2.42830873e-01 -4.30059172e-02 3.79342973e-01 -3.16577703e-01\\n-2.45095313e-01 1.59768596e-01 -4.31715161e-01 -2.09588334e-02\\n2.31050819e-01 8.41777772e-02 4.63253111e-02 6.70099854e-02\\n-1.96656346e-01 -4.68193501e-01 6.35992810e-02 -4.62202936e-01\\n-4.72822964e-01 2.01036185e-02 -1.33874133e-01 2.27562383e-01\\n4.64889174e-03 2.14723032e-02 -1.35936961e-01 1.53460860e-01\\n-2.88668931e-01 -1.71842519e-03 1.67433813e-01 1.95620060e-01\\n3.51910174e-01 -5.94950803e-02 -4.60408956e-01 4.08402652e-01\\n-2.20206290e-01 6.26231492e-01 2.14929655e-01 -8.86515319e-01\\n5.28552055e-01 2.28554472e-01 1.93027526e-01 -3.16511899e-01\\n5.78254580e-01 -3.11755955e-01 9.27779451e-02 1.54366255e-01\\n-2.71233976e-01 -1.94316059e-01 2.91994870e-01 -1.51084125e-01\\n-1.91353559e-01 6.21547043e-01 2.17407599e-01 -9.14107189e-02\\n2.34955773e-01 -2.88192898e-01 -8.78031775e-02 -2.75330115e-02\\n-9.50687677e-02 -2.10383937e-01 -2.65386373e-01 3.16576138e-02\\n-1.00774676e-01 -5.51855624e-01 -1.62710950e-01 -3.50965858e-01\\n-1.95501700e-01 -3.39059561e-01 -2.14682370e-01 4.42352951e-01\\n1.54243261e-01 4.29301374e-02 2.02507690e-01 1.44880516e-02\\n-8.83691460e-02 -4.96162862e-01 -1.59177035e-01 1.58905014e-01\\n4.77563828e-01 1.98162287e-01 1.08159751e-01 7.55139887e-02\\n-1.17749952e-01 4.81403738e-01 -1.87761173e-01 -2.59304792e-01\\n2.79184096e-02 1.78507432e-01 5.60347699e-02 -6.34062337e-04\\n-3.22487727e-02 3.08857769e-01 -1.69641554e-01 5.66251725e-02\\n-1.20917149e-01 8.68206024e-02 3.67467374e-01 8.29522163e-02\\n-2.21779063e-01 -1.41900405e-01 -2.14982461e-02 3.56089562e-01\\n-5.38258731e-01 -8.23074207e-02 5.42882860e-01 1.99035496e-01\\n1.48049146e-01 2.04901442e-01 2.06315845e-01 -7.74357393e-02\\n-2.19568953e-01 -2.29717135e-01 2.11249348e-02 1.82433113e-01\\n2.65084319e-02 -7.97534361e-02 -1.60047248e-01 -5.27031302e-01\\n-3.54178619e+00 -2.84901559e-01 1.38511434e-01 -3.77141625e-01\\n2.66091734e-01 -1.61941662e-01 3.50508019e-02 -4.56209332e-02\\n-2.60498703e-01 1.98321253e-01 -1.26741782e-01 -2.09564790e-01\\n1.85918793e-01 2.23036841e-01 -4.96789329e-02 3.86239737e-01\\n3.48385796e-02 -8.70032161e-02 -1.12861343e-01 2.36653149e-01\\n-1.76234245e-01 -6.99593663e-01 2.28095502e-01 -3.25627178e-02\\n2.24040374e-01 1.21776663e-01 -3.63060385e-01 -9.99307930e-02\\n-2.11064100e-01 -3.14668924e-01 8.01843628e-02 -3.25702131e-01\\n-1.03933245e-01 3.18474323e-01 9.80125517e-02 -8.81212205e-02\\n9.12363082e-02 -3.30125570e-01 -3.94337662e-02 -4.35465187e-01\\n1.10590704e-01 -6.15617812e-01 3.24216969e-02 -6.75836802e-02\\n7.63267577e-01 -4.59775120e-01 1.15445584e-01 1.85604662e-01\\n8.89748037e-02 2.28061393e-01 -8.58870000e-02 -7.81288221e-02\\n-2.05075026e-01 -3.31004113e-01 -2.39581540e-02 -2.22654447e-01\\n2.38349766e-01 5.83191991e-01 -1.46879256e-01 1.30760506e-01\\n7.04084113e-02 -2.82894731e-01 -3.51952612e-01 -4.48720038e-01\\n-1.92900524e-01 -2.12042451e-01 -7.14372218e-01 -3.52817953e-01\\n-2.63507478e-02 -1.27763420e-01 -2.23986119e-01 5.15876412e-01\\n-3.50340068e-01 -5.05989730e-01 3.27456780e-02 -4.80723232e-01\\n1.70539618e-01 -2.93665677e-01 1.12654055e-02 -1.21890225e-01\\n-3.82389784e-01 -3.94218206e-01 1.03041127e-01 -2.18628291e-02\\n-1.62893429e-01 -1.06765799e-01 -1.15785249e-01 -2.82497346e-01\\n-3.22430015e-01 -4.04749900e-01 4.86515909e-01 9.43618268e-02\\n3.42906654e-01 1.44595236e-01 2.50178367e-01 2.26239398e-01\\n2.27700219e-01 -2.86327422e-01 1.55903652e-01 -2.98213512e-01\\n8.98097605e-02 -6.50783554e-02 6.23444557e-01 -3.24934363e-01\\n2.44784385e-01 2.94484477e-02 -1.65272832e-01 -9.58171636e-02\\n4.27217513e-01 5.06709516e-02 -5.92720844e-02 -8.48875418e-02\\n3.08340430e-01 -5.63556671e-01 -2.87194073e-01 1.56728685e-01\\n-2.70848870e-02 5.61526060e-01 4.32400741e-02 -4.30436790e-01\\n-3.19916219e-01 4.05228764e-01 -1.55668736e-01 -3.17943841e-01\\n-2.48376131e-01 1.74195513e-01 -2.18273640e-01 2.07645729e-01\\n5.37468754e-02 -2.62315184e-01 -3.93784463e-01 -1.54407188e-01\\n3.67662124e-02 1.06552243e-01 2.84065425e-01 -1.28338067e-03\\n-1.05517050e-02 -2.82616377e-01 -1.75470859e-01 7.17858896e-02\\n3.25393707e-01 2.58180290e-01 2.06340641e-01 -1.98932976e-01\\n-2.50130780e-02 1.80420548e-01 -2.10632473e-01 1.36321381e-01\\n-2.50451237e-01 -4.11855653e-02 -4.22207087e-01 -4.31581616e-01\\n-1.77385402e-03 -2.87051439e-01 3.83492373e-02 3.00618708e-01\\n1.53480962e-01 1.05704344e-03 -4.22209734e-03 -4.89090115e-01\\n4.39332157e-01 -4.76558283e-02 2.43036523e-01 2.46567830e-01\\n6.78351000e-02 5.62839985e-01 3.25265005e-02 3.70239541e-02\\n-1.05156459e-01 -1.16570167e-01 -1.82399914e-01 -1.22748815e-01\\n-2.68969014e-02 -2.83407688e-01 -8.79672840e-02 4.69463587e-01\\n6.02037348e-02 -3.82131457e-01 -7.22853616e-02 2.86176860e-01\\n-5.75769786e-03 -1.82065234e-01 -1.39762893e-01 2.13512272e-01\\n2.61039108e-01 1.24260634e-01 3.30021769e-01 -4.70841229e-01\\n-1.41792908e-01 -1.62844155e-02 -1.22230940e-01 5.02285421e-01\\n1.52945101e-01 1.30606890e-01 -1.47797197e-01 -3.21403086e-01\\n4.32655990e-01 -1.13359578e-01 -1.38657540e-01 -2.77049895e-02\\n7.33215511e-02 -1.61464572e-01 -4.92186159e-01 -2.12933961e-03\\n2.45043039e-02 -2.11841419e-01 9.96652339e-03 -4.53871600e-02\\n1.83296740e-01 -4.92533743e-02 -4.47698474e-01 -3.66287172e-01\\n-2.59250969e-01 -3.34795490e-02 -5.90482056e-02 -3.13203156e-01\\n6.36998788e-02 -7.66855478e-02 -6.70806527e-01 3.07972938e-01\\n-3.21460545e-01 5.20851053e-02 5.89342564e-02 1.66582629e-01\\n-4.00910139e-01 -7.34523758e-02 2.07888693e-01 1.82939306e-01\\n-2.44174361e-01 -2.24472553e-01 1.03586391e-01 -8.82101655e-01\\n2.14485973e-02 -5.84667511e-02 4.45943736e-02 1.65245421e-02\\n1.21019013e-01 -4.58705485e-01 9.07473713e-02 -3.45605016e-01\\n1.72777269e-02 3.49135287e-02 -9.11911502e-02 -5.35429478e-01\\n1.54478639e-01 -1.87612772e-02 -1.72969714e-01 4.00750130e-01\\n-3.74087632e-01 2.72814661e-01 8.21048468e-02 5.22678643e-02\\n1.23135149e-02 -2.79991329e-01 2.20273837e-01 -2.73592830e-01\\n-4.19310778e-01 -2.50178427e-02 -4.32076931e-01 -1.83773890e-01\\n6.79792091e-02 -1.91945523e-01 -2.25047380e-01 4.83310893e-02\\n2.70755380e-01 1.79264903e-01 -9.16757509e-02 -1.81922391e-01\\n9.65546817e-02 -4.13502544e-01 1.43198624e-01 -2.28944674e-01\\n-6.36033807e-03 -1.20038107e-01 1.04245476e-01 -8.27134028e-02\\n-2.93544345e-02 -2.03951523e-01 5.26307523e-01 -1.93659887e-01\\n-3.62300992e-01 -5.81620485e-02 1.27072006e-01 6.64793253e-02\\n3.67500991e-01 -5.38610458e-01 9.27537307e-02 2.74419069e-01\\n6.41250163e-02 9.31206569e-02 2.74266213e-01 -8.19841772e-02\\n-1.69328630e-01 3.52548093e-01 -5.40599644e-01 2.51047313e-01\\n6.83496535e-01 1.49086371e-01 1.01109095e-01 1.65924579e-01\\n2.66905367e-01 2.78452963e-01 4.96260941e-01 8.16215277e-02\\n-6.46899343e-02 3.37262213e-01 -1.23044718e-02 -5.31052887e-01\\n-1.49271246e-02 -2.24097297e-01 -2.46348739e-01 -4.71074551e-01\\n5.32783747e-01 4.38686162e-01 -3.27105165e-01 -1.50508970e-01\\n-1.20658344e-02 -1.11432552e-01 1.29622698e-01 -1.81924134e-01\\n-1.33055234e-02 -1.01621732e-01 5.76984644e-01 -2.97110118e-02\\n4.50150192e-01 5.82568228e-01 -7.74706155e-02 -3.65792900e-01\\n-1.68011814e-01 7.37372637e-02 1.56098664e-01 3.56772333e-01\\n-4.81507145e-02 2.48289526e-01 -1.22198619e-01 1.91505447e-01\\n8.85055065e-02 2.59307865e-02 6.49932995e-02 6.00459240e-02\\n1.29552454e-01 1.85686871e-01 7.72312954e-02 3.46096784e-01\\n1.99982315e-01 5.07180095e-01 2.75846809e-01 1.46655455e-01\\n4.28752482e-01 6.38981879e-01 3.71005505e-01 1.67296156e-01\\n-2.58338898e-02 2.03597266e-02 -1.72940627e-01 -1.32870436e-01\\n2.78154433e-01 3.13985378e-01 1.53902113e-01 8.14617097e-01\\n3.22214395e-01 2.36675248e-01 7.02649891e-01 -6.05626881e-01\\n-5.17295718e-01 -2.69987248e-02 4.72564101e-01 -2.55426794e-01\\n-1.98075294e-01 1.39499515e-01 -2.86522985e-01 1.69820786e-01\\n-4.87000793e-01 -8.44143927e-02 5.74471010e-03 -1.51706025e-01\\n1.31652847e-01 -5.90725541e-02 -2.53984660e-01 7.47379139e-02\\n-2.45405197e-01 -1.96631834e-01 -3.31543505e-01 -5.18850051e-02\\n-3.39998990e-01 -1.35444805e-01 -1.28733888e-01 -1.67223334e-01\\n-6.72441870e-02 -3.11282307e-01 -1.49802029e-01 1.53711230e-01\\n4.65594500e-01 -9.91084501e-02 -9.04410556e-02 -1.21041991e-01\\n-7.87149090e-03 2.61934012e-01 4.05741125e-01 -1.12175874e-01\\n1.49162993e-01 -3.32798734e-02 -3.56227726e-01 -6.55620247e-02\\n1.90045550e-01 3.65935415e-02 -4.65964302e-02 5.00743687e-01\\n-3.40142608e-01 5.77112995e-02 1.09722473e-01 2.58588284e-01\\n-3.58537614e-01 -1.56976376e-02 9.94263031e-03 3.79866898e-01\\n1.91385031e-01 2.11970180e-01 -2.86552012e-01 2.17511371e-01\\n-2.61249274e-01 -4.33736473e-01 4.01196331e-01 -1.72018886e-01\\n-3.56429331e-02 1.68645233e-01 1.96501881e-01 1.17264748e-01\\n-3.21697086e-01 1.94661692e-02 -1.54590569e-02 4.08345699e-01\\n1.38100579e-01 3.41536433e-01 -3.65895391e-01 -1.07981980e-01\\n-2.32519433e-01 2.34447092e-01 -1.72387525e-01 1.93839952e-01\\n-1.84268057e-01 3.26715201e-01 8.13060328e-02 1.33784905e-01\\n1.99187040e-01 -6.98598698e-02 -2.10739136e-01 -2.28092819e-01\\n-2.95322090e-01 -3.31125885e-01 1.71492130e-01 -4.79243211e-02\\n2.16375485e-01 -3.68897915e-01 -1.23232454e-01 -1.45375162e-01\\n-2.50475407e-01 -4.45141196e-01 -3.81494686e-02 -5.45614399e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is a globally integrated technology and consulting company with operations in more than 170 countries. Ihr Aufgabenbereich Understand and prioritize product requirements and end-user needs and drivers Elicit and analyze all requirements, including business rules Design, develop and support application solutions to meet client requirements Ihr Profil A degree in Computer Science (IT apprenticeship graduates, higher education in IT, bachelor) Demonstrated work experience and knowledge of Web Development using Java, JavaScript, Python Experience in one or more of the following (AngularJS, NodeJS, Django / Flask, Bootstrap, Knockout, AureliaJS or similar. Build Chain: SVN Git, Ant, Maven) Knowledge of databases (SQL) Experience on agile development methodologies Excited to explore new technologies and able to quickly learn An ability to pro-actively take ownership of and analytical problem solving skills Good knowledge of the German & English languages (written & spoken) Swiss nationality or valid Swiss work permit / EU passport Ihre Chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript Web SQL Sprachen: Deutsch Englisch Job ID: 2064',\n", + " 'soft_skills': '[\"Prioritization\", \"Consulting\", \"Operations\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Knockout.js\", \"Hyper SQL Database (HSQLDB)\", \"Product Requirements\", \"Computer Science\", \"Analytics\", \"Web SQL Databases\", \"Higher Education\", \"Technology Integration\", \"Activism\", \"Python (Programming Language)\", \"Web Development\", \"Flask (Web Framework)\", \"Business Card Design\", \"Django (Web Framework)\", \"Apache Ant\", \"Bootstrap (Front-End Framework)\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Git Flow\", \"Java (Programming Language)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English', 'Belarusian']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Chiasso',\n", + " 'industry': 'Film Production & Distribution',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.10012941e-01 2.50470519e-01 4.47021544e-01 7.62318075e-03\\n4.62903321e-01 -1.23481639e-01 1.25570491e-01 2.44325876e-01\\n3.67624722e-02 -4.38723087e-01 -1.22936435e-01 -2.46223420e-01\\n-9.11628082e-03 -9.29438695e-03 5.71359470e-02 3.63453090e-01\\n2.53457546e-01 -3.03699821e-02 -2.00233787e-01 4.40562785e-01\\n1.52866721e-01 -6.13864996e-02 6.80958107e-02 6.93907142e-01\\n4.41830158e-01 -4.54013608e-03 -2.18034536e-02 -7.38844723e-02\\n-2.11520836e-01 -3.17640036e-01 3.76719534e-01 -3.89324762e-02\\n2.38037594e-02 -3.50452602e-01 4.59056944e-02 1.72284432e-02\\n-1.31245151e-01 3.04484181e-03 1.87065490e-02 1.28031567e-01\\n-3.92087758e-01 -1.23583615e-01 8.59400630e-03 2.02191919e-02\\n-2.11099193e-01 -3.12084407e-01 1.07930720e-01 -1.05607897e-01\\n1.37010172e-01 -1.06115431e-01 -4.44776684e-01 3.70078236e-01\\n-1.88915402e-01 -2.33930528e-01 3.48369181e-01 6.47744775e-01\\n4.44919392e-02 -5.04125237e-01 -5.12717426e-01 -2.86719531e-01\\n2.40827035e-02 -4.05313857e-02 1.82288419e-02 -8.89614522e-02\\n2.47844741e-01 1.33271776e-02 4.70391214e-02 2.86254257e-01\\n-6.57482862e-01 -4.78459150e-02 -2.32855380e-01 2.18541101e-02\\n-3.31831217e-01 -1.59573227e-01 -3.10385317e-01 -9.38830227e-02\\n2.28110701e-03 5.07326484e-01 1.03619002e-01 -1.55620920e-02\\n-2.12682113e-01 1.42840058e-01 -3.02678108e-01 2.16910616e-01\\n2.14599013e-01 1.06917620e-01 3.28376353e-01 3.62879217e-01\\n-4.29095685e-01 4.19654220e-01 1.63889796e-01 -3.97462189e-01\\n2.85219610e-01 7.79108405e-02 5.06142735e-01 1.44823343e-01\\n1.04369193e-01 2.29737878e-01 -1.33120790e-01 2.49118775e-01\\n2.01877475e-01 -1.39971942e-01 -1.34994239e-01 -7.79017806e-02\\n1.54902413e-03 -1.09885558e-01 -1.25419423e-02 1.33354589e-01\\n-3.39495599e-01 5.18693030e-01 1.54752046e-01 -2.36832231e-01\\n-5.49510121e-02 -4.15887833e-01 -1.02557279e-01 -1.75335348e-01\\n-2.74720285e-02 1.83461428e-01 1.22072347e-01 1.80916414e-01\\n1.14876524e-01 3.59974988e-02 1.27981812e-01 8.67739558e-01\\n-6.35130405e-02 9.16547477e-02 -2.57079810e-01 2.48824105e-01\\n9.98084694e-02 -3.10137630e-01 2.39390135e-01 1.40937150e-01\\n-1.06097065e-01 -8.28493237e-02 -2.39718884e-01 2.44963765e-01\\n-1.51680335e-01 -2.31603056e-01 -2.40500540e-01 1.64550528e-01\\n-1.08818166e-01 -3.25645804e-01 5.18735170e-01 7.27473125e-02\\n3.66622433e-02 -4.17074934e-02 -1.15242466e-01 -1.17945679e-01\\n-1.40849769e-01 1.97806969e-01 7.46065453e-02 1.45685196e-01\\n-2.95734733e-01 -2.95975894e-01 -2.32712477e-01 2.36166328e-01\\n-3.67443323e-01 4.33284156e-02 -2.53742278e-01 -1.26388326e-01\\n3.40133667e-01 1.00808889e-01 -4.23965037e-01 3.15503776e-01\\n5.73892519e-02 2.17308700e-02 -1.33384109e-01 2.85237551e-01\\n-1.41019940e-01 2.38344729e-01 -2.95608807e-02 -1.35206189e-02\\n6.92211628e-01 2.09686011e-01 1.11002862e-01 -3.18190008e-02\\n3.71634990e-01 -7.82537311e-02 1.72736987e-01 1.14630967e-01\\n-5.93129814e-01 2.24569887e-01 -1.18505806e-01 -9.42846090e-02\\n2.02682167e-01 -1.19505987e-01 1.60792902e-01 -3.26074064e-01\\n5.23647219e-02 -1.01331547e-02 -3.60718668e-01 -3.64175647e-01\\n-1.95972383e-01 -1.50333550e-02 3.98813546e-01 -3.07920992e-01\\n-3.43605727e-02 2.31086165e-01 -5.43899894e-01 -8.85231569e-02\\n3.18682313e-01 2.07243979e-01 2.02752739e-01 2.08226055e-01\\n-7.87236691e-02 -4.28158104e-01 8.77275765e-02 -4.39233780e-01\\n-3.03926557e-01 1.84423953e-01 -2.90903538e-01 2.32999921e-01\\n7.16643184e-02 -1.77714974e-05 -1.92187011e-01 8.58783573e-02\\n-1.13346770e-01 -1.35578021e-01 1.41854897e-01 1.08108968e-02\\n2.08949238e-01 1.68700024e-01 -3.94689441e-01 4.46140021e-01\\n-2.10058153e-01 4.28580642e-01 6.09100796e-02 -9.37987447e-01\\n5.27969003e-01 1.96625203e-01 -9.08250809e-02 -3.48471373e-01\\n4.60195720e-01 -2.70923495e-01 1.78242415e-01 1.25302896e-01\\n-2.97267973e-01 -2.76605546e-01 2.57663995e-01 -1.89104229e-01\\n-2.61997879e-01 5.23096919e-01 1.05462879e-01 1.14958160e-01\\n1.95214182e-01 -6.62928373e-02 -1.90549254e-01 1.30824298e-01\\n-7.01125786e-02 -1.71031818e-01 -5.09049892e-01 9.39098448e-02\\n-1.20466843e-01 -4.30068314e-01 -1.43864408e-01 -5.29655814e-01\\n-2.89729059e-01 -4.62442875e-01 -2.12303102e-01 2.20529452e-01\\n2.05937028e-01 2.11702973e-01 -1.40874177e-01 2.23908909e-02\\n-4.60025221e-02 -6.28447890e-01 3.22187692e-03 1.30759418e-01\\n3.92721951e-01 1.89028352e-01 6.16211966e-02 -4.76873741e-02\\n-5.26029132e-02 5.38343430e-01 -4.85375404e-01 -1.02256849e-01\\n2.07169130e-01 1.30829886e-01 4.88320440e-02 -2.56732821e-01\\n4.77302819e-05 1.95507467e-01 -2.53248215e-01 1.70020670e-01\\n3.37195694e-02 -5.72493635e-02 2.94688165e-01 -3.88828143e-02\\n-3.89996946e-01 -2.29939967e-01 -1.79155078e-02 2.80436128e-01\\n-5.88391066e-01 -2.05896407e-01 7.22771227e-01 9.18255672e-02\\n6.50228709e-02 1.25886798e-01 3.01764339e-01 -6.77710250e-02\\n-2.13477463e-01 -1.87686026e-01 3.08631450e-01 1.79099128e-01\\n1.90205395e-01 6.14645258e-02 -1.62507772e-01 -7.37720311e-01\\n-3.44775796e+00 -1.91172779e-01 1.76672369e-01 -2.24034429e-01\\n1.84050381e-01 -1.20466061e-01 9.53514427e-02 -1.09181389e-01\\n-2.83488125e-01 5.99379018e-02 -3.43893468e-01 -3.17648426e-02\\n1.45940855e-01 3.44773591e-01 1.46317691e-01 2.20983759e-01\\n1.50097072e-01 -1.77730531e-01 7.39100575e-03 2.95644373e-01\\n-2.61173785e-01 -5.95391393e-01 2.54958451e-01 4.96640354e-02\\n2.76129901e-01 2.40309894e-01 -4.16081727e-01 -9.39517245e-02\\n-1.87265128e-01 -1.88248605e-01 6.85101599e-02 -1.65217102e-01\\n-1.21384442e-01 3.62184346e-01 2.48463124e-01 -1.76614001e-02\\n8.69665295e-02 -4.95112658e-01 -5.13296798e-02 -3.55179727e-01\\n7.31112882e-02 -7.18506813e-01 1.79983713e-02 -1.26108527e-01\\n5.50911784e-01 -1.72152013e-01 1.72777236e-01 7.36195296e-02\\n2.33043879e-01 1.37694985e-01 -2.97690555e-03 8.18728432e-02\\n-2.08410203e-01 -1.64473727e-01 -9.43721533e-02 -5.95708974e-02\\n5.65099955e-01 4.93477792e-01 -2.35337570e-01 -1.61434025e-01\\n-9.77121294e-02 -2.89260358e-01 -4.93865967e-01 -2.83251077e-01\\n-2.01496512e-01 -2.13037342e-01 -7.29650795e-01 -3.96988511e-01\\n-2.21128583e-01 -8.86087269e-02 -2.25295991e-01 7.05511212e-01\\n-2.62344748e-01 -3.25369298e-01 -2.24544778e-02 -3.19504797e-01\\n5.94823509e-02 -1.12579823e-01 7.60319829e-02 -7.04938099e-02\\n-2.35558450e-01 -3.85741532e-01 1.73618004e-01 2.10461896e-02\\n-2.41451666e-01 -2.65895873e-01 1.46236315e-01 -6.88198581e-02\\n-2.62146860e-01 -4.36277568e-01 4.11964834e-01 1.00677773e-01\\n2.13773400e-01 -8.84544849e-03 4.00483191e-01 2.55469549e-02\\n2.98367441e-01 -1.84673995e-01 5.19332252e-02 -4.18981552e-01\\n1.27792761e-01 2.41414905e-02 6.68128669e-01 -2.00941101e-01\\n1.22046746e-01 8.20060670e-02 -3.10632676e-01 -2.17405520e-02\\n3.95080686e-01 -6.14599846e-02 3.98053080e-02 -2.19420254e-01\\n2.52758324e-01 -3.18713725e-01 -2.80584276e-01 5.47411852e-03\\n1.15285553e-01 7.10785270e-01 -1.69613324e-02 -4.53787863e-01\\n-2.59640664e-01 3.60180259e-01 -8.74342620e-02 -1.95133209e-01\\n-2.17105061e-01 1.32989019e-01 -2.80065060e-01 8.25791135e-02\\n9.76574719e-02 8.70897807e-03 -2.90812433e-01 -1.18685216e-01\\n-1.32323727e-01 2.59659529e-01 2.65245289e-01 1.84636116e-02\\n-1.98791884e-02 -4.13618624e-01 -4.06362638e-02 2.10191756e-01\\n1.06387123e-01 2.69592583e-01 1.47949070e-01 -3.09367061e-01\\n-3.87316979e-02 2.70249963e-01 -1.61175370e-01 1.22753806e-01\\n-2.54008949e-01 1.34274036e-01 -5.28644502e-01 -3.26742232e-01\\n-2.99596965e-01 -3.67729068e-01 1.40982997e-02 4.03252006e-01\\n5.83771132e-02 -5.59020191e-02 3.25823314e-02 -4.28824067e-01\\n2.75585234e-01 -3.23800258e-02 2.45673612e-01 9.68115777e-02\\n1.17397442e-01 5.80042124e-01 1.19286850e-02 -2.32902691e-01\\n-9.16453823e-02 -5.84164076e-03 -3.08908492e-01 -1.20897010e-01\\n2.11256575e-02 -4.19384241e-01 -5.78539446e-02 4.17571425e-01\\n1.93481386e-01 -2.00555071e-01 -1.21428184e-01 2.53280342e-01\\n-7.32681528e-02 -3.08266789e-01 -1.98888183e-01 -1.42246336e-01\\n3.98349404e-01 -4.24597152e-02 2.99416929e-01 -4.40168142e-01\\n3.85698769e-03 -1.20824561e-01 -8.17181244e-02 4.82242882e-01\\n9.03292447e-02 9.30096731e-02 -6.00879043e-02 4.23767604e-03\\n5.61940134e-01 -2.26192474e-02 -7.89087862e-02 4.15842608e-02\\n1.31305724e-01 -2.16246307e-01 -5.49400568e-01 7.76759461e-02\\n2.11669784e-02 -1.59281999e-01 3.95505540e-02 1.52924970e-01\\n9.10619944e-02 1.88257359e-02 -5.72728336e-01 -2.69188702e-01\\n-3.86804700e-01 -6.63298294e-02 9.15820077e-02 -6.65654063e-01\\n-1.15531310e-01 1.94864161e-02 -5.37414730e-01 2.85714805e-01\\n-1.34082735e-01 -8.65770578e-02 8.66236016e-02 2.66879164e-02\\n-2.71023601e-01 -1.83643997e-01 1.38369665e-01 7.02836439e-02\\n-2.98597574e-01 -1.48576126e-01 1.79574877e-01 -9.39351082e-01\\n1.98692918e-01 3.17853093e-02 -1.48597896e-01 4.58805785e-02\\n-6.66105375e-02 -6.60189509e-01 2.14171246e-01 -4.10021335e-01\\n-8.38513523e-02 -3.78951035e-03 -2.16160208e-01 -4.28993344e-01\\n6.69576079e-02 -7.70870000e-02 -3.60684782e-01 3.49363804e-01\\n-3.14594358e-01 3.67190003e-01 5.86253330e-02 1.05138928e-01\\n1.09997109e-01 -3.06649148e-01 -3.99776287e-02 -4.06819642e-01\\n-5.40746808e-01 -8.80865157e-02 -2.89883316e-01 -1.19079255e-01\\n6.20841756e-02 -3.32511544e-01 -1.45653754e-01 5.27217984e-02\\n2.95580089e-01 1.62493378e-01 -6.35830015e-02 -2.88838208e-01\\n-5.77366650e-02 -5.09525597e-01 4.12790850e-02 7.86661357e-03\\n-1.22106746e-02 -1.00146905e-01 3.86836737e-01 5.51682189e-02\\n1.74759194e-01 -3.57936442e-01 5.59384763e-01 -3.30532551e-01\\n-2.88161874e-01 -8.81625041e-02 -4.28027548e-02 1.49170950e-01\\n3.39139372e-01 -4.26507115e-01 -2.70741675e-02 3.27434003e-01\\n1.53594956e-01 9.05248299e-02 3.36502850e-01 -1.47999644e-01\\n-1.27233207e-01 1.97953060e-01 -3.61297190e-01 2.09337264e-01\\n7.11478710e-01 -4.82371859e-02 5.61578982e-02 1.18219934e-01\\n8.48385766e-02 2.30178833e-01 6.17283463e-01 -1.18414551e-01\\n-1.69422269e-01 4.13275808e-01 7.91588649e-02 -6.13373756e-01\\n-1.20063111e-01 -7.75925815e-03 -8.71705711e-02 -2.88340867e-01\\n5.99007308e-01 3.78376871e-01 -3.44215155e-01 -2.44394675e-01\\n-1.40219122e-01 -1.60340875e-01 7.03253672e-02 2.84910873e-02\\n1.30121291e-01 2.98768729e-02 5.67786098e-01 -8.22214931e-02\\n1.71368569e-01 4.61361170e-01 -1.17683873e-01 -3.79283994e-01\\n-1.03428736e-01 1.79372966e-01 9.40807238e-02 3.99562150e-01\\n-1.46710813e-01 2.08850533e-01 1.02987394e-01 7.45752305e-02\\n-7.22869933e-02 -4.52621579e-02 1.06191769e-01 7.38420561e-02\\n1.16560459e-01 1.07244954e-01 5.04447401e-01 4.31542933e-01\\n4.00300741e-01 4.53484833e-01 3.04671258e-01 1.19413100e-02\\n5.91943562e-01 7.32437491e-01 3.23637128e-01 1.51883885e-01\\n-8.27608183e-02 5.83784245e-02 1.13580018e-01 9.21359286e-04\\n4.00977731e-01 4.25269485e-01 8.27398300e-02 7.59780526e-01\\n4.40533578e-01 2.89181948e-01 5.50154865e-01 -6.40766740e-01\\n-3.46369147e-01 1.08832687e-01 5.07788539e-01 -2.19588935e-01\\n6.81672990e-02 1.80244774e-01 -5.94211593e-02 7.11943954e-02\\n-4.75390851e-01 -3.69595319e-01 -3.29450630e-02 2.20857561e-03\\n1.25821665e-01 -1.57366082e-01 -2.72083104e-01 1.53144300e-01\\n-5.56357093e-02 -1.35593921e-01 -4.62019503e-01 -6.21635914e-02\\n-2.14661196e-01 -3.49476039e-02 -1.13270804e-01 -9.83854383e-02\\n-6.86635226e-02 -3.02266419e-01 -2.24063158e-01 4.84197540e-03\\n1.90172717e-01 -1.76232904e-01 -1.63900495e-01 -1.51675224e-01\\n2.25549817e-01 1.98618487e-01 5.85257173e-01 -1.18914410e-01\\n9.39056277e-02 -3.71392995e-01 -2.28455395e-01 1.35586649e-01\\n2.29180649e-01 4.77072932e-02 2.39419267e-02 4.63004887e-01\\n-3.55399609e-01 -1.12099037e-01 1.29001975e-01 3.28360319e-01\\n-3.93815547e-01 -7.02106208e-03 -1.50103256e-01 1.46630272e-01\\n1.33815676e-01 1.71488792e-01 -1.37916759e-01 -9.00065601e-02\\n-1.40100434e-01 -5.20996690e-01 3.12228352e-01 -3.54125425e-02\\n-1.16210610e-01 2.34234333e-03 1.85509741e-01 1.99718326e-01\\n-2.79738724e-01 -2.30321120e-02 -1.68226153e-01 1.43030733e-01\\n4.91208732e-02 2.88100481e-01 -3.06857765e-01 -2.05781162e-01\\n-1.92017049e-01 2.26385653e-01 -6.21558353e-02 1.45950302e-01\\n-1.30987801e-02 3.68991464e-01 1.69430822e-01 1.70710325e-01\\n4.22643721e-01 8.54823887e-02 -1.24446549e-01 -1.45083398e-01\\n-3.09533983e-01 -2.41282701e-01 -2.54385658e-02 -8.20061751e-03\\n1.59541160e-01 -3.19271326e-01 -3.46607044e-02 -1.34387702e-01\\n-2.85385549e-01 -2.86997914e-01 -1.14202261e-01 8.40340462e-03]]',\n", + " 'job_description': 'Job DescriptionWe are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you dont feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios Youll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! -Blog: https://technology.lastminute.com/ -Twitter: https://twitter.com/lastminute_tech/Qualifications null Additional Information null',\n", + " 'soft_skills': '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Vert.x\", \"Extreme Programming\"]',\n", + " 'languages': \"['English', 'Abkhazian', 'Javanese']\"},\n", + " {'company_id': '107',\n", + " 'job_title': 'software engineer, full-stack',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.spotme.com',\n", + " 'jobdescription_embedded': '[[-2.40400463e-01 1.97630540e-01 5.63323975e-01 3.51318382e-02\\n5.01096666e-01 -1.70995638e-01 1.30098253e-01 3.23587179e-01\\n5.76776499e-03 -4.04238015e-01 -2.61640493e-02 -3.40038747e-01\\n-2.14768038e-03 2.19531074e-01 1.51836947e-01 4.26689506e-01\\n1.15004860e-01 1.13718919e-01 -1.38945699e-01 2.45707050e-01\\n5.85400686e-02 -2.23842412e-01 3.17868888e-02 7.21959472e-01\\n4.38476354e-01 -1.36701493e-02 -9.36722308e-02 -8.37761015e-02\\n-2.61980355e-01 -1.31882980e-01 4.96534377e-01 4.42499928e-02\\n-1.43099621e-01 -3.95369768e-01 1.17438890e-01 9.74113569e-02\\n-2.47757256e-01 -1.06715642e-01 1.81171149e-02 2.25266770e-01\\n-6.19741678e-01 -3.02673876e-01 8.98771957e-02 3.95925492e-02\\n-2.01780722e-01 -1.54720053e-01 -1.49527356e-01 -9.32055414e-02\\n1.37238517e-01 6.89389706e-02 -5.80855489e-01 2.89805204e-01\\n-1.24821439e-01 -2.60120928e-01 1.52547538e-01 5.81285417e-01\\n1.19390659e-01 -4.93634701e-01 -3.81300509e-01 -3.08212280e-01\\n3.37897874e-02 -8.07853490e-02 3.25256065e-02 -3.23344827e-01\\n1.85178548e-01 -2.40102768e-01 -1.30819798e-01 3.72485608e-01\\n-7.33904541e-01 1.32199168e-01 -1.81066379e-01 1.80613846e-02\\n-2.75795043e-01 4.19326760e-02 -3.56090963e-01 -6.84670731e-03\\n-1.23984255e-01 4.11063135e-01 9.92610902e-02 4.34811302e-02\\n-2.15636075e-01 1.80195943e-01 -9.93093476e-02 3.65351588e-01\\n2.72442222e-01 2.28126019e-01 2.88385779e-01 2.81622082e-01\\n-3.06123674e-01 4.95402157e-01 9.07175168e-02 -2.06902191e-01\\n3.20295393e-01 9.28660333e-02 3.82545590e-01 1.06864892e-01\\n5.80978133e-02 4.74007279e-02 -2.83134878e-01 2.41040051e-01\\n2.68704444e-01 -3.42991710e-01 7.12204948e-02 -1.25418184e-02\\n2.85970792e-03 3.95689867e-02 2.36287992e-02 4.98494580e-02\\n-2.10560367e-01 3.11114401e-01 1.71718091e-01 -1.95118234e-01\\n-1.64982736e-01 -4.40360963e-01 -5.28094731e-02 1.09355785e-01\\n-6.95057726e-03 2.44240910e-01 1.27988279e-01 -2.44312789e-02\\n2.74561971e-01 1.59978181e-01 4.91214693e-02 8.51621449e-01\\n-1.02241769e-01 1.10107340e-01 -2.23378107e-01 3.96864593e-01\\n1.48746207e-01 -1.92108780e-01 1.50460780e-01 1.75290361e-01\\n-3.76281794e-03 -2.11077020e-01 -1.74743220e-01 2.57089257e-01\\n9.83193964e-02 -1.96954861e-01 -2.19653800e-01 7.74057508e-02\\n2.91319508e-02 -3.83033007e-01 5.74635208e-01 7.32359141e-02\\n1.98952630e-01 3.49525623e-02 2.07471788e-01 -9.73836482e-02\\n-1.53020486e-01 2.15654999e-01 1.02469295e-01 1.90818146e-01\\n-3.57469320e-01 -2.27697641e-01 -1.40938312e-01 1.56861141e-01\\n-3.47734481e-01 6.63239509e-02 -1.20990023e-01 -2.92543471e-02\\n9.19779539e-02 1.27250358e-01 -2.42252797e-01 1.86331928e-01\\n-1.68862864e-01 -3.52367945e-02 9.25690234e-02 2.58517951e-01\\n-1.24217302e-01 4.40193750e-02 1.54193521e-01 -1.37341663e-01\\n4.83789444e-01 1.63370654e-01 2.82406002e-01 -5.40166628e-03\\n2.72691607e-01 -9.06459242e-02 3.32005955e-02 2.83354640e-01\\n-5.95211327e-01 2.60163009e-01 4.86185886e-02 -1.52183875e-01\\n2.20841601e-01 -4.89621498e-02 3.33764344e-01 -2.44724527e-01\\n2.61320379e-02 -2.20419809e-01 -3.11882973e-01 -2.12899357e-01\\n-2.55517989e-01 1.90029945e-02 3.29124451e-01 -3.43474627e-01\\n-9.94950980e-02 1.39676213e-01 -3.58133048e-01 -1.51155218e-01\\n1.50586545e-01 2.29285702e-01 -3.03761177e-02 5.29668778e-02\\n-2.36380532e-01 -5.55879474e-01 -5.89318760e-02 -3.61062557e-01\\n-4.21809763e-01 -1.47245407e-01 -3.73610705e-01 2.24480957e-01\\n9.62531865e-02 7.77265504e-02 -7.62180164e-02 -1.71432626e-02\\n-2.18350619e-01 -8.58573169e-02 -1.03445470e-01 1.41953513e-01\\n2.14144662e-01 1.14593627e-02 -3.42618734e-01 4.67578143e-01\\n-3.13855320e-01 5.82264483e-01 9.68542695e-02 -8.92894149e-01\\n4.12237108e-01 3.77169281e-01 -8.22556391e-02 -3.35643679e-01\\n4.07640457e-01 -3.16129506e-01 3.12804338e-03 5.68594038e-02\\n-2.50917792e-01 -2.00854242e-01 3.10433626e-01 -1.79649144e-01\\n-1.70935139e-01 3.82668793e-01 1.54696882e-01 6.39696941e-02\\n2.31497645e-01 -2.84989446e-01 -6.99492916e-02 6.34367540e-02\\n-1.37858063e-01 -2.95477837e-01 -4.79834139e-01 -8.27073157e-02\\n-1.78520665e-01 -3.65665585e-01 -3.85746285e-02 -4.41298306e-01\\n-3.88754196e-02 -4.11427677e-01 -2.73065954e-01 2.30137557e-01\\n2.25607872e-01 7.53567442e-02 -7.97303021e-02 2.22392678e-02\\n-8.69884938e-02 -7.11877584e-01 -7.27395713e-02 1.99392304e-01\\n4.49619472e-01 1.92375094e-01 2.04983681e-01 -1.68405119e-02\\n1.58491224e-01 5.30636847e-01 -2.31263474e-01 -3.14097911e-01\\n1.68046057e-01 1.60174206e-01 6.06726594e-02 -1.16466008e-01\\n6.95126504e-02 1.71664342e-01 -1.25021547e-01 -1.11185797e-01\\n-8.75117406e-02 3.37184183e-02 3.21332246e-01 1.37699870e-02\\n-3.83301795e-01 -1.18764602e-01 1.81452371e-02 8.19623694e-02\\n-4.72699285e-01 -5.35693914e-02 4.39307272e-01 2.09295675e-01\\n1.74808860e-01 3.05434950e-02 -6.21095262e-02 -7.89260343e-02\\n-1.67857304e-01 -2.88180739e-01 4.49139923e-01 -3.40612698e-03\\n1.07076745e-02 -6.04003668e-03 -9.97231007e-02 -5.62836945e-01\\n-3.85604334e+00 -3.06096256e-01 -2.17095427e-02 -1.52174667e-01\\n1.81380302e-01 -9.87992808e-02 5.11485487e-02 2.75125541e-02\\n-1.86300442e-01 1.84034601e-01 -1.01250380e-01 -4.98850867e-02\\n5.03376834e-02 1.35255694e-01 -9.79454815e-02 3.08787674e-01\\n2.53067732e-01 -1.18250117e-01 -3.93342413e-02 3.37812692e-01\\n-2.70375490e-01 -6.28200591e-01 2.04252541e-01 8.02262314e-03\\n2.01692507e-01 8.28427076e-02 -3.18369120e-01 1.73995793e-02\\n-1.46909699e-01 -2.28586525e-01 4.65484373e-02 -2.11322740e-01\\n-2.00234175e-01 1.45331606e-01 1.60587937e-01 -3.60628739e-02\\n-1.03552967e-01 -4.02897358e-01 -1.78891435e-01 -4.11203653e-01\\n1.74476996e-01 -5.54367483e-01 4.62452024e-02 -7.14308098e-02\\n7.17277169e-01 -2.75852293e-01 1.01454988e-01 4.51595709e-02\\n9.03848335e-02 -7.46952519e-02 1.66990489e-01 -9.55210999e-02\\n-2.45651945e-01 -3.15913409e-01 5.39972410e-02 -3.16813231e-01\\n5.11650681e-01 3.72740358e-01 -1.89699292e-01 4.99364883e-02\\n2.29884490e-01 -2.32672051e-01 -4.17112857e-01 -2.49968946e-01\\n-1.64882451e-01 -1.46982625e-01 -7.23980308e-01 -2.68446833e-01\\n-3.37805092e-01 -1.84834450e-01 -1.40902787e-01 6.67070746e-01\\n-2.43701920e-01 -4.37611312e-01 -2.15024408e-02 -5.18822670e-01\\n4.24354702e-01 -7.06763938e-02 -1.25403345e-01 -2.13564053e-01\\n-4.25147444e-01 -4.48690772e-01 4.47396673e-02 -3.22221667e-02\\n-2.69515842e-01 -2.23609880e-01 2.86455359e-02 -1.20944344e-01\\n-2.66924053e-01 -4.59144086e-01 3.98916066e-01 5.32186404e-02\\n2.79953420e-01 8.20406973e-02 4.02146697e-01 -4.86590760e-03\\n2.50995070e-01 4.59606051e-02 1.90061722e-02 -2.79628307e-01\\n5.70133142e-02 5.75441420e-02 5.20314276e-01 -2.65294492e-01\\n-9.76848975e-02 1.34546280e-01 -1.52699664e-01 -1.41446531e-01\\n3.74082446e-01 -8.56827796e-02 -6.84424862e-02 -1.64177939e-02\\n2.27126315e-01 -3.68513793e-01 -1.21798851e-01 1.94658190e-01\\n1.60996690e-01 6.11565530e-01 -3.13959643e-02 -3.92673045e-01\\n-1.66057959e-01 5.16290188e-01 -1.17700689e-01 1.62404940e-01\\n-1.77671224e-01 1.56527475e-01 -3.30200613e-01 3.76040846e-01\\n3.51698846e-02 -3.15770686e-01 -1.89164832e-01 -1.77387014e-01\\n3.12955454e-02 3.30063850e-01 2.76066095e-01 -9.61499438e-02\\n5.76080084e-02 -3.06134343e-01 -2.53567338e-01 1.03917137e-01\\n1.85485005e-01 4.96149451e-01 2.26737782e-01 -2.46465400e-01\\n8.96139815e-02 2.96713352e-01 -1.50801674e-01 1.90327451e-01\\n-2.79412210e-01 1.70360342e-01 -5.34062684e-01 -3.74208331e-01\\n-1.95670053e-01 -5.39525032e-01 1.01839729e-01 3.99693936e-01\\n2.29516774e-01 -2.54050922e-02 -8.41786712e-03 -5.85178256e-01\\n1.79648578e-01 1.74315333e-01 2.08718777e-01 1.37811378e-01\\n3.43236662e-02 5.60864985e-01 -6.34282306e-02 -1.11126661e-01\\n-1.53333917e-01 -7.51884133e-02 -1.52754799e-01 -2.00737521e-01\\n1.46958545e-01 -5.13727725e-01 4.81228046e-02 3.81421566e-01\\n3.13540608e-01 -3.45883340e-01 -1.36690885e-01 3.71160507e-01\\n5.16890511e-02 -2.06954211e-01 -2.72507161e-01 1.01223938e-01\\n3.48876745e-01 1.40752152e-01 2.88368076e-01 -3.08144778e-01\\n-1.13375448e-02 2.68610287e-02 -2.94122864e-02 3.67565364e-01\\n-1.07029259e-01 1.46502331e-01 -2.24190041e-01 -1.49244398e-01\\n4.55777228e-01 -2.11892114e-03 -1.60293877e-01 -2.13626385e-01\\n6.69422001e-02 -1.72527656e-01 -4.21129644e-01 1.30561054e-01\\n6.72175065e-02 -3.84037852e-01 4.06961553e-02 2.66011268e-01\\n7.27313990e-03 5.31712435e-02 -4.64924991e-01 -2.75938570e-01\\n-1.38838232e-01 -1.32132366e-01 2.36682311e-01 -3.22118938e-01\\n3.44947018e-02 -1.30300894e-01 -5.58969975e-01 1.38452813e-01\\n-1.14771716e-01 -1.97601676e-01 2.23057032e-01 1.81729779e-01\\n-2.39020601e-01 -1.36484087e-01 1.06901906e-01 4.19840723e-01\\n-2.96230674e-01 -3.65360707e-01 2.50597317e-02 -8.91939461e-01\\n1.23446621e-01 1.68549821e-01 -1.83998756e-02 1.66467950e-01\\n-1.96006536e-01 -5.17029345e-01 1.62770927e-01 -2.92382628e-01\\n-2.42331594e-01 -5.86269759e-02 -2.44610310e-01 -2.37711310e-01\\n1.51871960e-03 -4.39848192e-02 -2.89438814e-01 4.55137223e-01\\n-3.32576960e-01 3.08391154e-01 -9.84539241e-02 -4.37901309e-03\\n-3.77516299e-02 -1.09420314e-01 1.79311886e-01 -3.24526399e-01\\n-3.88705760e-01 -2.83786774e-01 -5.84797442e-01 -3.96170646e-01\\n1.04313493e-02 -2.04382032e-01 -1.93081290e-01 1.47021294e-01\\n3.70075703e-01 1.83904618e-01 6.72855647e-03 -2.88460284e-01\\n1.42788552e-02 -3.97846609e-01 5.68935759e-02 -1.28721520e-01\\n-1.56347856e-01 -1.48226574e-01 1.39715388e-01 4.06385101e-02\\n1.14916235e-01 -3.09361577e-01 3.59990150e-01 -2.22535878e-01\\n-1.67667061e-01 -1.65897831e-01 1.56193659e-01 5.94566800e-02\\n4.13833588e-01 -4.97422665e-01 -5.72539028e-03 2.95953006e-01\\n3.04187119e-01 8.42670649e-02 2.48572409e-01 -1.59057796e-01\\n-2.40869317e-02 2.70083547e-01 -4.24831033e-01 1.22771971e-01\\n7.88593769e-01 1.08405456e-01 9.50905308e-02 3.09542745e-01\\n1.07267030e-01 3.49410117e-01 4.68152851e-01 -7.82711357e-02\\n-7.01195672e-02 1.58612415e-01 1.68700982e-02 -4.97931391e-01\\n-7.70498961e-02 -2.13841856e-01 -9.85378213e-03 -3.85547101e-01\\n6.80855036e-01 4.10206407e-01 -5.41015565e-01 -9.76659134e-02\\n-1.95511982e-01 5.97619712e-02 1.74981326e-01 -1.72058031e-01\\n-1.79874837e-01 7.67515376e-02 4.01973784e-01 -5.26772700e-02\\n3.93320858e-01 4.97244209e-01 -2.15347454e-01 -2.55875707e-01\\n8.49097595e-02 2.26783648e-01 8.81636515e-02 3.65109891e-01\\n-8.19970667e-02 3.01959604e-01 1.64512433e-02 5.86670116e-02\\n3.10088452e-02 1.95851356e-01 3.10313087e-02 1.03131369e-01\\n2.91167021e-01 3.23149352e-03 3.44047517e-01 4.85890359e-01\\n1.48825914e-01 3.66759241e-01 2.74307668e-01 1.16941094e-01\\n3.89395326e-01 5.45209467e-01 3.51046056e-01 1.25307485e-01\\n7.41359778e-03 2.78202921e-01 1.83109358e-01 -2.21778765e-01\\n3.36743444e-01 4.36189294e-01 2.21177951e-01 7.27999091e-01\\n1.78551748e-01 2.80192137e-01 6.82907164e-01 -6.31415546e-01\\n-3.61072242e-01 -2.07454357e-02 5.18087566e-01 -1.79085419e-01\\n2.72523798e-02 1.84116080e-01 -1.64862677e-01 3.18325609e-01\\n-4.81542468e-01 -2.53237188e-01 2.93147415e-02 -9.60127115e-02\\n-7.17113912e-02 -2.21688762e-01 -1.07721120e-01 2.52417803e-01\\n-2.95714755e-02 -5.12633100e-02 -3.57824862e-01 -8.76091495e-02\\n-2.95486867e-01 -1.54236436e-03 -1.63140401e-01 -2.39619128e-02\\n-8.29311460e-02 -4.78738964e-01 -1.51337445e-01 5.83953448e-02\\n2.81994373e-01 -1.08892716e-01 -1.15706667e-01 -1.29689023e-01\\n2.04286471e-01 1.41418874e-01 4.44979668e-01 7.00490177e-02\\n1.11582890e-01 -1.57231435e-01 -2.71010131e-01 1.76119238e-01\\n3.09009850e-01 1.73285574e-01 -5.29381558e-02 6.33167326e-02\\n-2.59368807e-01 -2.28079744e-02 1.47774071e-01 2.09792033e-01\\n-3.47668588e-01 2.75182482e-02 -2.21802399e-01 1.87954590e-01\\n1.04003519e-01 2.36185834e-01 -1.22217782e-01 -1.09230898e-01\\n-2.59534597e-01 -3.02032083e-01 2.36030072e-01 -2.52569526e-01\\n-2.11328000e-01 2.26224685e-04 1.88181028e-01 1.44600198e-01\\n-2.27011964e-02 8.94951671e-02 -8.74709412e-02 1.76339775e-01\\n8.19404349e-02 2.61252373e-01 -1.42132759e-01 -2.53835708e-01\\n-3.13864112e-01 1.99815556e-01 -8.79455283e-02 1.60409808e-01\\n-4.21903431e-02 4.07238275e-01 -8.63590860e-04 -3.10702845e-02\\n4.69367892e-01 -2.25390941e-02 -2.94991642e-01 -2.93238759e-01\\n-2.69924879e-01 -1.81846306e-01 -1.17371390e-02 7.37380311e-02\\n8.04606900e-02 -4.19147760e-01 9.30623934e-02 -1.25831604e-01\\n-8.83002859e-03 -2.89686382e-01 -2.08228920e-02 -1.52727827e-01]]',\n", + " 'job_description': 'Since 2011, SpotMe has been the mobile engagement platform for visionary leaders who believe that events can drive transformative change. SpotMe has been recognized by G2 Crowd as the leading pure play mobile event app, a growing space that represents more than $1 billion in potential annual revenue. Our ambition is to double down on this opportunity, use events as a springboard and extend our positioning into Digital Experience Platforms (DXP) for employees and customers. Today, SpotMe serves over 220 global brands, including 80 Fortune 500 companies. Some of the world’s largest companies – including Novartis, L’Oréal and Daimler – use SpotMe to connect every event to their greater story. Responsibilities: Develop new features of the SpotMe Backstage, our CMS Optimise user experience, streamline workflows, improve feedback and reporting Perform complete UI/UX re-design with ease of use, contextual aid in mind Work in cross-team projects on new & improving existing features Participate in brainstorming, specification and design sessions Maintain documentation, samples & best practices up to the highest standards Requirements & Skills: Native JavaScript and CSS speaker, proficient in Angular & Node.js Experience with SQL & No-SQL databases is a plus Demonstrated success in designing and building complex web applications Strong analytical, communication and collaboration skills Proactive, independent, completes tasks down to resolution ',\n", + " 'soft_skills': '[\"Visionary\", \"Collaboration\", \"Proactivity\", \"Brainstorming\", \"Communications\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Angular (Web Framework)\", \"Streamlines\", \"Springboard\", \"Hyper SQL Database (HSQLDB)\", \"Node.js\", \"Cascading Style Sheets (CSS)\", \"Digitization\", \"User Experience\", \"Maintainability\", \"Workflows\", \"Performance Reporting\", \"JavaScript (Programming Language)\", \"Analytics\", \"SQL (Programming Language)\", \"Branding\", \"Zope (CMS)\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Korean', 'South Ndebele']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'java ee software engineer',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.42486432e-01 2.86398619e-01 5.64832747e-01 -1.69629052e-01\\n4.46930528e-01 -3.66724253e-01 1.39893904e-01 3.95505875e-01\\n-1.18415885e-01 -4.21115041e-01 -1.05354689e-01 -2.83324987e-01\\n-3.17195244e-02 3.28076184e-02 1.60395324e-01 2.96050400e-01\\n3.68439317e-01 1.51860267e-01 -1.38898760e-01 3.48789304e-01\\n1.25136867e-01 -1.09941088e-01 1.07391819e-01 7.16118634e-01\\n5.38061380e-01 3.21505852e-02 -1.16309099e-01 1.17894888e-01\\n-2.31934324e-01 -3.73609781e-01 4.21523899e-01 -3.64575349e-02\\n-7.57823884e-02 -2.65015095e-01 1.42198414e-01 1.23901337e-01\\n-1.12965576e-01 -1.64193045e-02 -2.08529038e-03 6.56652749e-02\\n-3.84443820e-01 -4.35991548e-02 8.26746747e-02 1.02073187e-02\\n-1.95408285e-01 -3.78072381e-01 9.55660343e-02 5.42518236e-02\\n1.45611957e-01 -9.50781163e-03 -4.78444964e-01 3.51815283e-01\\n-1.99841365e-01 -2.74148911e-01 2.83995003e-01 5.27442992e-01\\n-1.00004219e-01 -5.08747578e-01 -3.47997725e-01 -2.92093039e-01\\n1.32862300e-01 -1.01518534e-01 1.09300375e-01 -3.16966087e-01\\n3.80815774e-01 2.45680604e-02 -5.13209291e-02 3.95598233e-01\\n-7.57107973e-01 1.10018156e-01 -2.26527631e-01 -5.54916710e-02\\n-3.56694996e-01 -1.18966781e-01 -3.81916642e-01 -1.52927861e-01\\n-1.15957811e-01 4.85234648e-01 3.90438661e-02 1.49363101e-01\\n-1.38910949e-01 2.32606962e-01 -2.18922406e-01 2.36061156e-01\\n2.61705488e-01 3.57168496e-01 2.34392866e-01 3.27961266e-01\\n-4.39954400e-01 4.60409641e-01 1.77033842e-01 -2.91360199e-01\\n2.51026213e-01 1.29011780e-01 4.64035749e-01 -1.95063723e-04\\n2.58751988e-01 7.41240978e-02 -1.67150334e-01 3.00149858e-01\\n3.63261759e-01 -3.04429412e-01 -8.17635506e-02 -4.37905528e-02\\n-2.62967944e-02 6.33740798e-02 2.43416280e-02 2.82839000e-01\\n-3.69371146e-01 5.64755678e-01 4.12913039e-02 -2.16050297e-01\\n-7.03003109e-02 -5.61269045e-01 -1.58059046e-01 5.52628115e-02\\n5.86663522e-02 1.91005021e-01 1.58151239e-01 2.76896387e-01\\n1.99095443e-01 1.41158000e-01 1.64491341e-01 8.88643622e-01\\n-1.12306833e-01 1.07519291e-01 -2.77585983e-01 3.98480207e-01\\n7.12656751e-02 -2.71445155e-01 3.18176478e-01 2.69757599e-01\\n1.27743512e-01 -7.80088082e-02 -1.94577172e-01 3.69938254e-01\\n-3.56695405e-03 -2.46831715e-01 -2.70287812e-01 1.07466422e-01\\n-1.79808483e-01 -5.07897496e-01 5.97202480e-01 3.78853269e-02\\n1.02728985e-01 7.12514371e-02 4.63178940e-02 -4.87797074e-02\\n-1.00178100e-01 2.54839629e-01 7.94181004e-02 1.06400676e-01\\n-3.05490315e-01 -1.97287947e-01 -3.57116491e-01 1.63734421e-01\\n-3.83132100e-01 6.29739240e-02 -1.37140214e-01 -4.94763330e-02\\n3.13870728e-01 -3.82139347e-02 -2.60252714e-01 3.18535656e-01\\n-6.48217723e-02 1.11971255e-02 -7.76045024e-02 2.25065470e-01\\n-6.92223758e-02 2.03723922e-01 -3.70750315e-02 -1.09509714e-01\\n4.68951613e-01 1.75217658e-01 8.15397948e-02 -1.05048463e-01\\n3.02571177e-01 1.17969252e-02 8.33642334e-02 4.20042798e-02\\n-7.60800779e-01 4.22183305e-01 -2.83813998e-02 -1.97526947e-01\\n9.85075440e-03 -2.82765832e-02 1.63384870e-01 -3.32795203e-01\\n6.88440055e-02 -1.00068286e-01 -4.00719613e-01 -2.05618382e-01\\n-1.88188657e-01 -4.31239940e-02 4.47916597e-01 -4.84864056e-01\\n-1.19341396e-01 1.90518066e-01 -6.34858906e-01 1.08179234e-01\\n2.94031233e-01 1.39395759e-01 1.34521201e-01 1.99623019e-01\\n-1.12542853e-01 -5.19778490e-01 1.25095144e-01 -3.71696413e-01\\n-3.06214809e-01 1.83337271e-01 -3.66200089e-01 2.66327560e-01\\n1.48215726e-01 -5.77133410e-02 -1.57402948e-01 1.46636963e-01\\n-1.65427234e-02 -3.01044919e-02 1.01064026e-01 7.74409622e-02\\n4.26904619e-01 5.80761805e-02 -4.52165574e-01 5.32096982e-01\\n-1.95588917e-01 3.54278892e-01 3.89878117e-02 -8.79543722e-01\\n4.32399064e-01 3.53923410e-01 3.83089408e-02 -3.76880109e-01\\n7.76837051e-01 -1.98723748e-01 -1.18857153e-01 1.14735521e-01\\n-4.79096234e-01 -3.33570719e-01 1.08308502e-01 -1.44823045e-01\\n-2.82477856e-01 4.05793905e-01 4.84595709e-02 1.50383681e-01\\n2.67274618e-01 -1.53739691e-01 -1.67113766e-01 1.47142708e-01\\n-1.89583048e-01 -2.78788954e-01 -4.53351885e-01 4.38426286e-02\\n-3.98521014e-02 -4.88074034e-01 -1.11136101e-01 -5.40604651e-01\\n-2.76821822e-01 -4.04770106e-01 -2.51498580e-01 2.57497400e-01\\n2.09334657e-01 1.56312197e-01 -2.01413538e-02 1.17403334e-02\\n-2.60825425e-01 -4.92977202e-01 8.02138001e-02 7.77294934e-02\\n4.11290765e-01 1.59337506e-01 4.81409915e-02 -7.37040117e-02\\n4.85497341e-02 6.70946896e-01 -2.65666932e-01 -1.43238723e-01\\n1.17524795e-01 1.88019156e-01 -2.55265017e-03 -3.25153135e-02\\n4.17797677e-02 3.83590221e-01 -2.96601325e-01 -1.99420322e-02\\n-1.32291824e-01 1.87211633e-02 3.76513928e-01 -1.41120866e-01\\n-4.14940208e-01 -3.25104386e-01 -5.84780462e-02 1.72233045e-01\\n-5.31877637e-01 -1.97057173e-01 6.44714892e-01 1.56773105e-01\\n1.27338946e-01 1.62987053e-01 2.09564820e-01 -9.74141881e-02\\n-1.75607741e-01 -2.88934618e-01 2.33257964e-01 1.31982952e-01\\n1.57656983e-01 1.65023014e-01 -1.13274448e-01 -5.84828556e-01\\n-3.59780097e+00 -1.39761686e-01 1.55827716e-01 -2.78443903e-01\\n1.60237342e-01 -1.34709254e-01 1.21726811e-01 -1.68586165e-01\\n-2.00158194e-01 1.30551219e-01 -9.82681364e-02 -1.70187995e-01\\n2.62265474e-01 2.10697755e-01 7.80967996e-02 2.35852554e-01\\n2.94930339e-01 -2.54701644e-01 -2.19905749e-02 2.42879093e-01\\n-2.03364164e-01 -6.07597053e-01 2.56827533e-01 -4.61706594e-02\\n3.74928236e-01 3.42783689e-01 -3.24480116e-01 -1.61758721e-01\\n-2.60682732e-01 -2.55370528e-01 1.44178510e-01 -2.23308250e-01\\n2.40983162e-02 2.96683162e-01 2.25272536e-01 4.82000550e-03\\n2.41960600e-01 -2.99223691e-01 -1.87363271e-02 -4.01587635e-01\\n1.36084646e-01 -5.50460339e-01 -3.70712765e-02 -7.60946274e-02\\n7.61820257e-01 -3.91476244e-01 2.24451616e-01 1.27569556e-01\\n1.42374933e-01 1.63623407e-01 -1.39681147e-02 -1.90400317e-01\\n-2.61368871e-01 -1.81390524e-01 3.08890287e-02 -1.98049247e-01\\n5.65115571e-01 5.97573936e-01 -2.57275134e-01 -6.48671016e-02\\n7.20970565e-03 -3.00972372e-01 -5.43476701e-01 -3.85199547e-01\\n-1.70982555e-01 -2.01102346e-01 -5.86704731e-01 -5.06467104e-01\\n-9.40164402e-02 -8.04229900e-02 -6.88123181e-02 4.88994122e-01\\n-1.96467161e-01 -4.65801090e-01 -8.86119306e-02 -4.58980471e-01\\n8.11616853e-02 -6.36741221e-02 -4.20841686e-02 -1.49325535e-01\\n-1.74441069e-01 -5.51873326e-01 -5.64523712e-02 -1.82424132e-02\\n-9.50441957e-02 -2.01266527e-01 3.00826758e-01 -1.65981770e-01\\n-3.45810562e-01 -4.94979203e-01 4.87515658e-01 1.97727419e-02\\n2.36421034e-01 1.91681057e-01 1.41349688e-01 1.43390402e-01\\n3.05311501e-01 -2.80572772e-01 7.81750605e-02 -3.72012794e-01\\n1.97336912e-01 1.38856038e-01 5.56444943e-01 -1.49171770e-01\\n1.70542359e-01 1.42980561e-01 -1.93012014e-01 -2.10063890e-01\\n3.55897754e-01 1.27024064e-02 1.47982672e-01 -3.22476715e-01\\n3.14415693e-01 -2.83288807e-01 -3.06806356e-01 1.39108807e-01\\n2.01873649e-02 5.42771280e-01 -6.56985119e-02 -3.83415818e-01\\n-1.59652710e-01 5.58971107e-01 -1.47857144e-01 -1.07439356e-02\\n-1.84545740e-01 1.17671072e-01 -2.87542880e-01 3.53016019e-01\\n4.58723120e-02 -6.70608878e-02 -2.15713277e-01 -1.46039188e-01\\n-3.40254372e-03 3.36140543e-01 2.89384812e-01 1.08611196e-01\\n2.78600883e-02 -4.13425416e-01 -5.25867268e-02 1.18545219e-01\\n1.82045147e-01 2.85539955e-01 -1.75436214e-02 -1.21183880e-01\\n-2.16172095e-02 2.89342403e-01 -2.25383356e-01 1.35228798e-01\\n-2.45081753e-01 6.43860921e-02 -4.44789976e-01 -3.01703811e-01\\n-2.55760550e-01 -2.87277490e-01 2.68217884e-02 2.26909056e-01\\n4.90988716e-02 1.99383944e-02 -2.55691726e-02 -3.98442447e-01\\n2.36265376e-01 1.43221142e-02 2.78837442e-01 2.63224155e-01\\n-1.48202330e-02 4.55107450e-01 -4.08468209e-02 -5.39660417e-02\\n-2.06825182e-01 7.42099509e-02 -1.84086621e-01 -7.08879307e-02\\n-5.71954250e-02 -4.87286925e-01 -9.65311658e-03 3.78426284e-01\\n7.32993707e-02 -2.99546838e-01 -1.30578130e-01 1.17710836e-01\\n-4.86178696e-02 -4.64560628e-01 -1.58392966e-01 -3.50528583e-02\\n3.50948125e-01 6.70464262e-02 3.41290236e-01 -4.85690176e-01\\n6.11778684e-02 3.69931795e-02 -3.09560299e-02 4.55064684e-01\\n1.58916190e-02 2.34586578e-02 -4.09601582e-03 -2.93633342e-01\\n3.20438415e-01 -2.13662818e-01 3.22109424e-02 1.63322706e-02\\n1.22235417e-01 -1.50637478e-01 -3.54327410e-01 -2.38604401e-03\\n-2.26649363e-02 -1.39997274e-01 -2.89628166e-03 2.27821176e-03\\n-4.12342288e-02 2.62885746e-02 -5.66979051e-01 -2.99766541e-01\\n-3.37742448e-01 -1.19459935e-01 4.81545134e-03 -4.46472794e-01\\n-2.41964813e-02 5.97711764e-02 -6.12404466e-01 3.02604705e-01\\n-1.74375042e-01 -4.02709395e-02 1.77286148e-01 -2.85047274e-02\\n-4.37414408e-01 -1.24654911e-01 2.24482685e-01 2.37155542e-01\\n-2.88533986e-01 -2.66916573e-01 -5.75139336e-02 -9.85038996e-01\\n2.98033506e-01 2.33976040e-02 -1.08740211e-01 1.09911375e-01\\n-6.16996996e-02 -5.52797854e-01 1.51321396e-01 -3.84974390e-01\\n-6.37562349e-02 4.76921152e-04 -2.10403025e-01 -4.26480442e-01\\n3.94980386e-02 2.95551009e-02 -2.58771092e-01 4.08430606e-01\\n-3.97885382e-01 3.24148476e-01 -9.08255354e-02 7.45641738e-02\\n-7.58153498e-02 -2.67134547e-01 -2.56494675e-02 -4.93970603e-01\\n-4.32650119e-01 -1.52532473e-01 -2.00012982e-01 -2.04008877e-01\\n2.10309457e-02 -3.08600962e-01 -7.24264458e-02 1.47106647e-01\\n2.59590477e-01 8.68007243e-02 -1.07105210e-01 -1.91831902e-01\\n4.91620265e-02 -4.71410662e-01 -1.26576692e-01 -2.00195491e-01\\n-8.39821771e-02 -1.80250913e-01 1.19059622e-01 1.07386485e-01\\n7.70464481e-04 -4.64069635e-01 2.92946845e-01 -2.63601422e-01\\n-2.23104566e-01 9.09518301e-02 1.81577988e-02 1.95384007e-02\\n2.97860861e-01 -5.12374282e-01 -6.65624067e-02 4.37715203e-01\\n1.20737113e-01 1.06845081e-01 2.34411523e-01 -4.10828441e-02\\n-1.09392852e-01 4.27329630e-01 -3.29870462e-01 1.35058522e-01\\n6.76027536e-01 1.89359888e-01 1.11512996e-01 1.91951752e-01\\n2.07381859e-01 4.03681338e-01 4.62799221e-01 -3.34090181e-02\\n-8.63005146e-02 3.48503530e-01 5.88297844e-02 -6.43482566e-01\\n2.72585209e-02 1.04537994e-01 -2.75922537e-01 -2.22178817e-01\\n6.69796467e-01 4.86236185e-01 -2.55502343e-01 -2.76538044e-01\\n-2.59591520e-01 -2.07378760e-01 9.64595377e-02 -1.34178996e-01\\n1.85295671e-01 -1.66166723e-01 4.70256001e-01 3.55593264e-02\\n1.51127532e-01 4.85005021e-01 -1.50166586e-01 -3.93364727e-01\\n-8.21174681e-02 2.17905179e-01 1.12581979e-02 5.05844414e-01\\n-2.15021700e-01 1.81318387e-01 9.38267633e-02 2.20690161e-01\\n-5.81944287e-02 1.73292175e-01 1.49300247e-01 9.54306573e-02\\n1.29095957e-01 5.82315102e-02 2.93063998e-01 4.44087029e-01\\n3.26457947e-01 5.11949122e-01 2.52498597e-01 1.16242230e-01\\n5.06214321e-01 4.98819441e-01 4.54311460e-01 2.02429861e-01\\n-4.01226617e-02 3.52553092e-02 1.10401049e-01 -1.82059892e-02\\n2.68554091e-01 3.07478696e-01 -3.94442156e-02 9.70121861e-01\\n4.51184720e-01 2.35406920e-01 6.70576036e-01 -6.42909527e-01\\n-4.20072079e-01 -2.88079735e-02 3.65276814e-01 -3.75227302e-01\\n-7.18239695e-02 -1.84722990e-02 -1.67664379e-01 1.81579575e-01\\n-5.15998542e-01 -1.80117786e-01 -2.56031994e-02 3.49209048e-02\\n1.27602488e-01 -8.92208442e-02 -3.06593746e-01 -1.44372255e-01\\n-2.29557022e-01 -1.05528302e-01 -5.49962819e-01 -4.59534265e-02\\n-2.43303970e-01 -1.61309987e-01 -1.65831462e-01 -2.09024742e-01\\n-1.70255136e-02 -4.15150225e-01 -2.04197317e-01 1.06932826e-01\\n2.59029686e-01 -9.18660164e-02 -9.04981345e-02 -1.02201939e-01\\n3.08228076e-01 2.90223539e-01 5.26522517e-01 -2.38624867e-02\\n2.79961564e-02 -9.86317992e-02 -1.21668749e-01 8.94169360e-02\\n2.04485178e-01 6.61930591e-02 1.98390894e-02 3.40470731e-01\\n-3.76421094e-01 -2.31461734e-01 3.88667993e-02 4.55766350e-01\\n-5.11447251e-01 3.12740915e-02 7.87156299e-02 2.44696215e-01\\n4.16958705e-02 1.28759086e-01 -2.13864520e-01 2.58284062e-02\\n-2.02607900e-01 -4.58325326e-01 2.81159014e-01 -1.06373012e-01\\n-8.78902003e-02 5.91069981e-02 1.45853326e-01 2.07444623e-01\\n-1.81461364e-01 -1.40042141e-01 2.91134398e-02 1.58458352e-01\\n1.87577128e-01 2.39971086e-01 -2.40739435e-01 -2.81250656e-01\\n-3.15442502e-01 1.24212421e-01 -3.03479195e-01 1.22224122e-01\\n-7.00302795e-02 2.71779329e-01 1.73545256e-01 1.51635513e-01\\n2.73168087e-01 -1.18006775e-02 -1.52924865e-01 -1.86609581e-01\\n-3.16132456e-01 -3.26470912e-01 8.34177732e-02 1.59065071e-02\\n2.29317874e-01 -4.51173544e-01 -6.88762292e-02 -8.65972489e-02\\n-2.33497694e-01 -2.79987156e-01 -5.84758259e-02 -2.28971973e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Java EE Software Engineer. The role is a permanent position based in Bern Canton. Your Role: Implement demanding projects within the public sector based on the latest Java technologies. Work closely with clients to help actively support them in the realization of solutions. Maintain good communication with the team & customers. Aim to make a difference with your ideas & visions. Perform duties within an agile environment. Your Skills: Sound technical & methodological knowledge of object-oriented software development. Several years of practical experience with Java / Java EE in the context of web technologies (HTML5 is an advantage) & service-oriented system architectures. Experienced in using Spring, Hibernate & automated build & deployment mechanisms within a SCRUM team. Profound database know-how (Oracle, MySQL and / or SQL Server). Your Profile: In-depth IT training (university, FH or HF). Further relevant certification are considered a plus. Communicative, confident, a team player & resilient. Able to take enjoyment from demanding & complex tasks. Fluent German & English (spoken & written), French is also an advantage. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Confident Communicator\", \"Service-Orientation\", \"Resilience\", \"Communications\", \"Positivity\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Object-Oriented Software Development\", \"Agility\", \"Java Secure Socket Extension\", \"Building Automation\", \"Mechanicals\", \"Hibernate (Java)\", \"Activism\", \"Java EE Application\", \"Maintainability\", \"HTML5\", \"Scrum (Software Development)\", \"Systems Architecture\", \"Software Engineering\", \"Service-Oriented Modeling\", \"Receivables\", \"Software Development\", \"Java (Programming Language)\", \"Microsoft SQL Servers\"]',\n", + " 'languages': \"['English', 'Chamorro', 'Pushto', 'Inuktitut', 'Corsican']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'big data/spark engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.08247542e-01 2.31795996e-01 5.07690728e-01 2.15499327e-01\\n6.39641523e-01 -1.80837587e-01 -2.42910534e-01 2.05270618e-01\\n6.81032613e-02 -4.56488371e-01 -5.55087626e-02 -2.32204020e-01\\n-1.20247580e-01 6.25318512e-02 -6.54416382e-02 3.83164227e-01\\n3.54464412e-01 1.28045883e-02 -6.50804639e-02 3.72120678e-01\\n3.64708528e-02 -6.95785508e-02 5.09506613e-02 8.33609819e-01\\n2.60781795e-01 -5.56108989e-02 -2.40294524e-02 1.22337840e-01\\n-2.59663582e-01 -1.85927868e-01 3.39075804e-01 1.20859765e-01\\n-2.21114069e-01 -4.45232630e-01 6.20348006e-02 1.99150205e-01\\n-2.44912326e-01 2.15405375e-02 -7.17084408e-02 1.55942947e-01\\n-4.20176148e-01 -1.84351593e-01 -1.27598912e-01 3.70255001e-02\\n-3.22722137e-01 -3.58836293e-01 -2.12725252e-02 -1.29031867e-01\\n7.81545714e-02 2.39076838e-02 -4.76100028e-01 2.71858841e-01\\n-2.19930261e-01 -2.26962656e-01 2.40505785e-01 6.76981926e-01\\n3.15245613e-02 -4.26282018e-01 -5.00358462e-01 -3.36714119e-01\\n7.11330026e-02 -8.99462774e-02 1.01468429e-01 -3.49203229e-01\\n2.86823690e-01 5.11036813e-03 -3.29463743e-02 2.20849037e-01\\n-8.27230453e-01 -4.34976295e-02 -2.67707199e-01 1.61274448e-02\\n-5.21562338e-01 -9.45441127e-02 -2.56457448e-01 -1.18740499e-01\\n-9.07180607e-02 5.16877532e-01 9.28491652e-02 1.61562085e-01\\n-2.50543594e-01 2.67287999e-01 -2.63746709e-01 3.06004971e-01\\n2.68332720e-01 2.12616652e-01 3.10116589e-01 3.45089376e-01\\n-4.86461341e-01 4.67585921e-01 1.73763216e-01 -3.26676279e-01\\n2.86604017e-01 9.29690376e-02 3.42475533e-01 2.82518640e-02\\n2.00618356e-01 2.09291637e-01 -1.67347252e-01 3.52929175e-01\\n2.15926558e-01 -3.59394193e-01 2.40589213e-02 -1.39136046e-01\\n-8.94624740e-03 -8.02108049e-02 2.68610194e-03 1.16329640e-01\\n-3.86477530e-01 3.51273298e-01 1.12071887e-01 -2.35143930e-01\\n-1.11597247e-01 -4.56508964e-01 -8.82475153e-02 -7.13257864e-03\\n7.22553954e-03 1.70091420e-01 2.63477266e-01 1.57337874e-01\\n1.93398982e-01 1.84208490e-02 1.67795181e-01 8.52066278e-01\\n-7.12043941e-02 9.80755687e-02 -1.96436554e-01 4.20176178e-01\\n2.18004972e-01 -3.30089569e-01 2.71699727e-01 1.91834748e-01\\n-3.90764922e-02 -1.49430513e-01 -2.48072535e-01 2.96457291e-01\\n-2.70407964e-02 -1.33645415e-01 -2.52736926e-01 1.90905735e-01\\n2.73119640e-02 -3.35931003e-01 6.63635075e-01 7.38568678e-02\\n1.50661618e-01 -9.29107517e-02 7.01680407e-03 -1.71091527e-01\\n-1.09687790e-01 2.61298299e-01 5.63690402e-02 2.86445141e-01\\n-3.10963452e-01 -2.33559132e-01 -1.18632220e-01 2.47523487e-01\\n-3.84164572e-01 9.65968072e-02 -1.85459137e-01 -6.83654472e-02\\n1.68779731e-01 4.74224575e-02 -3.62813234e-01 8.47976506e-02\\n-1.10326432e-01 -1.93157047e-01 4.94038463e-02 2.83295870e-01\\n-2.21056104e-01 1.97139919e-01 -6.36348967e-04 -3.73530276e-02\\n6.13529980e-01 2.79359728e-01 2.92255282e-01 -2.46288702e-02\\n2.87658304e-01 -1.13076717e-01 1.26443684e-01 1.78609192e-01\\n-6.73825681e-01 3.84390712e-01 -4.76324596e-02 -1.87373936e-01\\n7.13876486e-02 -1.08887777e-02 3.16349804e-01 -2.61249602e-01\\n3.80762760e-03 -1.58052832e-01 -3.62426072e-01 -2.40824223e-01\\n-2.10803747e-01 -4.16489318e-02 3.91981602e-01 -5.35388112e-01\\n-5.43197468e-02 3.18961173e-01 -5.31809092e-01 -1.89905226e-01\\n1.56166509e-01 2.22047120e-01 1.52261883e-01 -1.55416057e-02\\n-9.38130617e-02 -5.70211112e-01 5.52827902e-02 -4.17227030e-01\\n-3.02402854e-01 2.57823113e-02 -2.61736900e-01 1.22255102e-01\\n4.69229883e-03 3.12589668e-03 -1.50731832e-01 1.44857287e-01\\n-3.02397251e-01 -1.35404151e-02 1.96527883e-01 8.20491910e-02\\n3.93124580e-01 6.33319318e-02 -3.84598017e-01 4.44820821e-01\\n-3.26753199e-01 5.01536369e-01 2.10532233e-01 -9.37517285e-01\\n5.99034309e-01 3.00365567e-01 -6.07616305e-02 -3.85130256e-01\\n4.78431821e-01 -4.76025194e-01 -4.54422436e-04 1.40490100e-01\\n-3.14652026e-01 -2.13530809e-01 2.88239837e-01 -1.05826735e-01\\n-2.49496639e-01 6.47490978e-01 -2.94865551e-03 1.03766032e-01\\n2.51507998e-01 -2.94830978e-01 -1.39646128e-01 -1.65035501e-02\\n-1.64638251e-01 -2.78221220e-01 -6.84535146e-01 4.89793718e-03\\n-1.21157438e-01 -4.90176737e-01 -1.67851076e-01 -4.06260729e-01\\n-2.32010588e-01 -2.90079236e-01 -2.38044009e-01 2.04944164e-01\\n2.57651508e-01 1.32148013e-01 -1.57518879e-01 4.91404906e-02\\n-6.41166419e-02 -6.21647358e-01 -3.49879749e-02 1.27177209e-01\\n4.32576746e-01 2.83053100e-01 1.54670790e-01 -7.17661828e-02\\n1.62650466e-01 6.25156999e-01 -3.22139174e-01 -3.96485031e-01\\n6.50667548e-02 1.96854800e-01 -8.17412436e-02 -1.56226560e-01\\n1.42870292e-01 3.13650787e-01 -2.37995625e-01 8.12020153e-03\\n7.19960034e-03 1.27064735e-02 3.52273554e-01 7.44335353e-03\\n-1.96977645e-01 -2.01293483e-01 -1.00268573e-01 2.13205367e-01\\n-6.13397896e-01 -1.86979070e-01 5.65048814e-01 1.99828178e-01\\n3.32873575e-02 1.32529378e-01 2.04330534e-01 1.70596018e-02\\n-2.83830673e-01 -1.72008872e-01 3.88564467e-01 9.60233808e-02\\n1.48682773e-01 1.01653591e-01 8.36778525e-03 -6.38726473e-01\\n-3.40883303e+00 -2.30462015e-01 1.84052646e-01 -2.47338727e-01\\n2.39281848e-01 -2.14260519e-01 6.28921166e-02 -4.88664620e-02\\n-2.50998348e-01 3.40968892e-02 -1.72814429e-01 -1.73174322e-01\\n2.20826194e-02 1.49629354e-01 1.82101011e-01 2.37171710e-01\\n1.88028246e-01 -1.56021446e-01 2.13607568e-02 3.91514540e-01\\n-2.00857073e-01 -6.71127081e-01 1.52192131e-01 4.35928106e-02\\n1.94052905e-01 9.66057703e-02 -3.76970947e-01 -4.61179279e-02\\n-3.19799662e-01 -2.32141256e-01 1.25606693e-02 -3.38132262e-01\\n-1.87689662e-01 3.17041159e-01 2.41352722e-01 -1.76207393e-01\\n1.05921969e-01 -2.89399385e-01 -1.63604558e-01 -4.16996300e-01\\n6.34419918e-02 -5.93445301e-01 7.74564892e-02 -1.81356862e-01\\n6.52160227e-01 -3.05068463e-01 1.55527562e-01 7.44187012e-02\\n2.40790248e-01 2.14253932e-01 1.56252593e-01 2.59192847e-02\\n-1.88618124e-01 -2.93381065e-01 -1.14334136e-01 -1.74804360e-01\\n5.98532677e-01 5.03645062e-01 -1.44101962e-01 1.92568935e-02\\n-1.18800271e-02 -1.98447704e-01 -4.21580702e-01 -3.33689809e-01\\n-1.49552509e-01 -1.68571800e-01 -6.41294360e-01 -4.03473020e-01\\n-1.93158671e-01 -7.17165470e-02 -1.02564342e-01 7.06679583e-01\\n-2.60323644e-01 -3.44354242e-01 -5.81443906e-02 -4.37046498e-01\\n2.54761070e-01 -2.23346427e-01 4.53234240e-02 -6.72288612e-02\\n-2.28335977e-01 -5.45118570e-01 1.18654244e-01 -8.90654922e-02\\n-1.29130721e-01 -1.91976547e-01 4.35904302e-02 -1.30162477e-01\\n-3.13044608e-01 -5.64507604e-01 4.34636861e-01 3.27280760e-02\\n3.68811429e-01 7.97757208e-02 4.23314095e-01 -1.31813101e-02\\n3.58244538e-01 -2.07008831e-02 -1.42248303e-01 -4.10258651e-01\\n7.46989623e-02 -4.04140055e-02 4.83184099e-01 -2.29483664e-01\\n1.53589509e-02 4.71685380e-02 -2.02130735e-01 2.41549257e-02\\n3.12455058e-01 -8.80870968e-03 1.01002783e-01 -1.03169873e-01\\n3.06556165e-01 -3.95881921e-01 -1.58473164e-01 1.95368439e-01\\n1.25041083e-01 6.30329788e-01 -4.44194600e-02 -3.73514652e-01\\n-1.46184251e-01 3.57682467e-01 -4.06747162e-02 -1.06483370e-01\\n-2.20282629e-01 1.07288979e-01 -2.77346194e-01 2.60700732e-01\\n-1.05116796e-03 -1.46603674e-01 -3.13481987e-01 -1.05250806e-01\\n-8.19871277e-02 2.57958502e-01 2.72276282e-01 7.40796477e-02\\n-5.79699464e-02 -2.79590666e-01 -8.36595986e-03 1.29918814e-01\\n3.14173222e-01 4.64640170e-01 2.27505267e-01 -2.08548665e-01\\n-2.32695863e-02 3.49206805e-01 -2.71768689e-01 2.09220588e-01\\n-2.37268269e-01 1.23735614e-01 -6.00836456e-01 -2.02454776e-01\\n-2.57654965e-01 -4.19843495e-01 1.61877856e-01 3.73372495e-01\\n1.47686422e-01 -7.84001648e-02 2.51766928e-02 -4.45630103e-01\\n2.62499958e-01 1.74096867e-01 1.44732207e-01 3.52637023e-02\\n8.28053802e-03 6.93126500e-01 6.27800226e-02 -1.89244717e-01\\n-1.40930235e-01 2.63986681e-02 -1.18499637e-01 -3.10618460e-01\\n1.01215035e-01 -5.47829568e-01 -1.92491114e-01 4.03863847e-01\\n2.08225057e-01 -2.50975668e-01 -2.79967129e-01 3.37112248e-01\\n-2.73203887e-02 -2.58915812e-01 -2.57701218e-01 -7.27014709e-03\\n3.25961351e-01 1.10789746e-01 2.66634971e-01 -5.23473382e-01\\n-1.57746822e-01 7.51889646e-02 4.70008366e-02 4.34031337e-01\\n1.26972437e-01 1.50932103e-01 4.49455380e-02 -1.37006268e-01\\n5.22908270e-01 8.27380568e-02 -1.57272160e-01 -4.54451777e-02\\n8.01657885e-02 -1.76417619e-01 -4.59239244e-01 1.13194317e-01\\n7.02392012e-02 -2.99876750e-01 1.39320996e-02 1.05446279e-01\\n1.68887526e-01 1.60032026e-02 -6.18985772e-01 -2.84545004e-01\\n-3.91011119e-01 -1.10534370e-01 7.91987628e-02 -5.80472112e-01\\n3.66193615e-03 -1.08854502e-01 -5.77886045e-01 2.70096213e-01\\n-1.18214250e-01 -8.08485970e-02 7.01831430e-02 7.14182854e-02\\n-1.63745910e-01 -1.54541060e-01 8.73373747e-02 2.95210600e-01\\n-3.60262126e-01 -2.64701009e-01 5.05418852e-02 -1.01634669e+00\\n1.65685445e-01 8.94840062e-02 -1.86727986e-01 1.20674014e-01\\n-1.61471069e-02 -6.81688607e-01 9.64287594e-02 -4.21150506e-01\\n-1.69627607e-01 -1.22993952e-02 -2.87024677e-01 -3.04457426e-01\\n1.36308819e-01 -4.26788777e-02 -3.04632604e-01 4.38294202e-01\\n-3.58185768e-01 3.17368209e-01 -6.32788911e-02 6.49528354e-02\\n8.12146217e-02 -1.67480290e-01 1.69395477e-01 -2.62316048e-01\\n-4.40227717e-01 -3.40559959e-01 -2.70070314e-01 -3.02517295e-01\\n-2.26188637e-02 -3.35748136e-01 -9.12295952e-02 -2.92932168e-02\\n4.22660530e-01 1.73581809e-01 -1.81824028e-01 -3.55043352e-01\\n8.87860209e-02 -4.96617258e-01 7.79114738e-02 -1.24089554e-01\\n-6.62564859e-02 -1.08450115e-01 1.38393477e-01 6.18134141e-02\\n1.42531097e-01 -3.21131945e-01 4.38298017e-01 -3.29791814e-01\\n-2.69131243e-01 -1.64394200e-01 6.86998740e-02 8.81655738e-02\\n2.38311306e-01 -3.85418922e-01 3.63033004e-02 3.03153992e-01\\n2.45654374e-01 6.42747134e-02 2.28441432e-01 -1.31591290e-01\\n-2.38574892e-02 2.96150863e-01 -3.68910462e-01 1.41023010e-01\\n8.46527934e-01 9.48617011e-02 1.38801381e-01 2.37876385e-01\\n2.41052955e-01 2.72992074e-01 4.89751935e-01 -3.61392908e-02\\n-6.80491403e-02 3.30488145e-01 6.22310676e-02 -3.47451061e-01\\n-5.90303466e-02 -1.19871147e-01 -1.50533020e-01 -4.29576218e-01\\n6.02295578e-01 3.78315151e-01 -4.88971174e-01 -2.67461360e-01\\n-1.89870849e-01 -1.06084853e-01 2.92157590e-01 -7.85756484e-02\\n-4.74730581e-02 -1.06530204e-01 4.39867526e-01 -1.10935733e-01\\n2.83126771e-01 5.72443724e-01 -2.03138709e-01 -3.19971889e-01\\n-2.17168313e-02 1.56396240e-01 2.47604162e-01 4.53571707e-01\\n-2.89345145e-01 2.36071065e-01 -2.18012519e-02 1.60131022e-01\\n-1.46323591e-01 1.61584631e-01 2.49932110e-01 1.10463522e-01\\n2.26018339e-01 -3.17756832e-02 4.92574185e-01 4.95783627e-01\\n2.40881205e-01 4.22222733e-01 4.23355401e-01 -2.91714929e-02\\n4.50779796e-01 6.24181032e-01 3.39135319e-01 8.69047195e-02\\n-2.99975798e-02 1.37670726e-01 1.48635849e-01 -9.99520719e-02\\n2.79643744e-01 4.86781001e-01 1.13222256e-01 8.68086696e-01\\n3.92106950e-01 4.04552341e-01 6.62222564e-01 -6.17080808e-01\\n-3.77365589e-01 3.98384109e-02 4.73802269e-01 -3.90451163e-01\\n-3.75041105e-02 8.43430758e-02 -2.81165451e-01 1.56228215e-01\\n-5.06851017e-01 -1.84138820e-01 -4.34812456e-02 5.43425195e-02\\n7.20871836e-02 -9.52041447e-02 -2.14099675e-01 1.25054121e-01\\n-3.10577769e-02 -1.01137742e-01 -3.96161079e-01 -8.47912580e-02\\n-2.83776402e-01 -4.96029779e-02 1.22009665e-02 -4.17151637e-02\\n-4.38448712e-02 -3.62115920e-01 -2.25929543e-02 -6.75187707e-02\\n2.08292559e-01 -1.34927928e-01 -1.33137569e-01 -1.28726855e-01\\n2.89957732e-01 1.93753809e-01 5.19462049e-01 6.83760494e-02\\n5.50446399e-02 -2.84820199e-01 -2.54280925e-01 1.36913940e-01\\n1.29251897e-01 4.51861992e-02 -1.93468109e-02 3.51282120e-01\\n-2.71862447e-01 -1.60170257e-01 2.04873756e-01 2.48101294e-01\\n-3.30449104e-01 4.29738909e-02 -1.65898025e-01 1.13079593e-01\\n5.22401296e-02 1.53852731e-01 -2.12032989e-01 -3.13155726e-02\\n-2.46620074e-01 -6.13209367e-01 3.97020102e-01 -1.75713718e-01\\n-9.39587429e-02 1.02836251e-01 2.56085634e-01 2.26512343e-01\\n-3.32940012e-01 -5.96431680e-02 2.94785947e-04 1.58428833e-01\\n1.20609440e-02 2.99338281e-01 -1.22441150e-01 -2.82858133e-01\\n-3.26080024e-01 2.29760721e-01 -6.99198544e-02 1.74302936e-01\\n-9.48989391e-03 3.76675904e-01 -4.39033583e-02 1.23578668e-01\\n3.59761894e-01 4.43524159e-02 -2.57656753e-01 -2.76704818e-01\\n-2.25956440e-01 -6.30828291e-02 -3.47759835e-02 -2.65054926e-02\\n1.74919456e-01 -3.04374039e-01 -1.42208651e-01 -1.03374600e-01\\n-1.42178416e-01 -3.70490432e-01 2.73623429e-02 -1.37706369e-01]]',\n", + " 'job_description': 'Unit8 is looking for Big Data/Spark Engineer to join our team. You will use Spark (pyspark) and a full set of other Big Data tools to understand the data and drive the development of ETL pipelines in the financial sector in Zurich. Our perfect candidate has already a background in working with financial data and data modelling or is willing to pick up financial domain knowledge. He/she is capable of translating complex technical and business requirements into readable, maintainable and efficient Spark pipelines that fit in the bigger picture of complete data platform. RequirementsWhat You’ll Do Design, build, maintain, and troubleshoot data pipelines that are relied on for both production and analytics applications using modern tools like Spark/Cloudera. Use your skills in Big Data and basic Data Science to harness the heterogenous financial data and enable other teams to use it Use software best practices in continuous integration and delivery, supervise code and data evolution (code reviews, versioning) Drive optimization, testing and tooling to improve data quality. Closely collaborate with other software engineers, data scientists and business owners, learning from them but also driving the discussions to analyze the nature of current problems in order to propose, implement and test proper solutions Work in multi-functional agile teams to continuously experiment, iterate and deliver on new product objectives. Who You Are You know how to work with high volume heterogeneous data, preferably with distributed systems such as Hadoop You know how to write distributed services in Python/jvm based languages You are happy to work with more junior developers - code reviewing, mentoring You are happy to work with business stakeholders - requirement gathering, prioritization You are knowledgeable about data modeling, data access, and data storage techniques. You appreciate agile software processes, data-driven development, reliability, and responsible experimentation You understand the value of teamwork. BenefitsWhat We Offer Competitive salary Sharing our profit - we offer equity Yearly bonus depending on performance of the company Work with state-of-the-art technology on projects with impact Challenging work close to a customer inside an experienced 10x engineering team Tailor-made mentorship program Dedicated budget for training 10% of the time for self-development Who We AreUnit8 is a Swiss-based startup focused on solving problems of big industries like chemical, pharma, automotive and finance. Our team comprised of world-class experts in ML and Software Engineering who previously worked for Sillicon Valley companies like Google, Amazon, Palantir or Microsoft. We work with some of the biggest companies in the world to solve the problems that directly affect their business. Apart from that, Unit8 dedicates a part of resources and time on things that deeply matter to us - that includes collaboration on pro-bono and engineering for good cases.',\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Mentorship\", \"Supervision\", \"Reliability\", \"Prioritization\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Data Quality\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Stakeholder Requirements\", \"Data Modeling\", \"Analytic Applications\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Pyspark\", \"Naturalization\", \"Python (Programming Language)\", \"Maintainability\", \"Data Pipeline\", \"Translations\", \"Experimentation\", \"Iterators\", \"Pipelining\", \"Software Engineering\", \"Extract Transform Load (ETL)\", \"Building Design\", \"NetApp Data Storage\", \"Data Science\", \"Budgeting\", \"Business Requirements\", \"Financial Data\", \"Finance\", \"Logical Data Models\", \"Readability\", \"Close Work Orders\", \"Big Data\", \"Code Review\", \"Equities\", \"Java Virtual Machine (JVM)\", \"Data Management Platforms\", \"Resourcing\", \"Agile Model Driven Development\", \"New Product Development\", \"Process Driven Development\", \"Agile Unified Process\"]',\n", + " 'languages': \"['English', 'Haitian', 'Slovenian', 'Korean', 'Estonian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.63895744e-01 3.05287838e-01 4.17255253e-01 -3.76568027e-02\\n5.28621137e-01 -7.65151009e-02 -3.94121483e-02 2.19641954e-01\\n-2.95179654e-02 -2.23883778e-01 -1.51649013e-01 -1.48797706e-01\\n-8.57051313e-02 -6.46759244e-03 1.12375326e-01 3.74679089e-01\\n3.46432894e-01 5.21362051e-02 -1.31393820e-01 3.36848080e-01\\n1.16127342e-01 -8.61443952e-03 -2.28062682e-02 6.55917227e-01\\n3.78813326e-01 -4.45187241e-02 -1.12813048e-01 4.31255959e-02\\n-2.92736202e-01 -2.29881883e-01 3.32956433e-01 2.05876455e-02\\n-1.17689386e-01 -3.10847253e-01 9.01493877e-02 1.32867202e-01\\n-2.04548344e-01 -6.58926591e-02 -7.64697194e-02 5.48099019e-02\\n-3.25427055e-01 -2.13639870e-01 -4.98721041e-02 6.59257472e-02\\n-2.92773217e-01 -2.38441482e-01 6.97647557e-02 -2.29309313e-02\\n-4.44065854e-02 4.49392311e-02 -6.94523096e-01 3.94211501e-01\\n-2.11201966e-01 -1.72699600e-01 3.07041913e-01 5.79800665e-01\\n3.80182080e-02 -4.99353051e-01 -3.79826933e-01 -3.42782229e-01\\n6.12392463e-02 -2.84051243e-02 7.00938106e-02 -2.23967344e-01\\n3.45741212e-01 -8.35837945e-02 -6.28677458e-02 3.76448661e-01\\n-7.67838299e-01 -1.42360136e-01 -2.94134647e-01 5.10785021e-02\\n-5.15491605e-01 -4.72733192e-03 -3.41535121e-01 -1.10516600e-01\\n-1.47394072e-02 4.33841139e-01 -6.99907765e-02 6.40637875e-02\\n-1.91618785e-01 1.73135161e-01 -1.34739578e-01 2.13118866e-01\\n3.28246981e-01 1.43635184e-01 2.47165665e-01 2.99496025e-01\\n-3.23613465e-01 3.74847889e-01 2.30412439e-01 -2.43019536e-01\\n1.61144406e-01 2.86704022e-02 4.04961139e-01 1.72741249e-01\\n5.85130937e-02 2.04558581e-01 -6.81432560e-02 1.46372616e-01\\n1.71874493e-01 -2.77756691e-01 3.65511514e-02 -7.64985457e-02\\n-7.61290044e-02 6.90753013e-03 1.29842144e-02 2.21398845e-01\\n-3.78570020e-01 3.08791131e-01 1.05466813e-01 -2.63043523e-01\\n-4.14887927e-02 -5.37692606e-01 -9.07029435e-02 -1.23393901e-01\\n3.54427136e-02 2.41944373e-01 2.27564380e-01 2.22049668e-01\\n3.16384107e-01 -3.68466564e-02 1.74881011e-01 8.72597635e-01\\n-7.93836787e-02 -3.44255157e-02 -2.03934908e-01 3.73567700e-01\\n2.07029521e-01 -2.44214207e-01 1.86884895e-01 2.63759255e-01\\n5.77620454e-02 -3.95833924e-02 -2.93054491e-01 2.45021075e-01\\n-1.63934618e-01 -1.80457577e-01 -2.48366073e-01 1.77047864e-01\\n-1.92283034e-01 -4.98789072e-01 5.86059570e-01 7.36988708e-02\\n1.90691978e-01 -1.58323839e-01 8.22820142e-03 -1.20286971e-01\\n-2.95315143e-02 3.31389844e-01 3.46170962e-02 2.40710542e-01\\n-2.48225883e-01 -2.64948934e-01 -1.24504738e-01 3.62367243e-01\\n-1.34901151e-01 8.11424330e-02 -1.73935503e-01 -1.34432763e-01\\n2.81587362e-01 1.28346056e-01 -4.09630984e-01 1.96921125e-01\\n6.16104400e-04 -3.14211786e-01 -7.80354589e-02 3.03575128e-01\\n-1.03982456e-01 2.04521537e-01 -3.40906456e-02 -2.07247987e-01\\n4.78192300e-01 2.12049484e-01 2.13175580e-01 5.33061549e-02\\n1.77898586e-01 -1.81223139e-01 3.04820031e-01 8.95333216e-02\\n-7.15633154e-01 4.30286974e-01 1.37520032e-02 -3.16588908e-01\\n1.28661111e-01 3.92076299e-02 3.23912770e-01 -4.09381837e-01\\n2.42886897e-02 -1.78808570e-01 -4.27401483e-01 -3.63072664e-01\\n-1.78385392e-01 -4.92088795e-02 3.90573561e-01 -3.67095411e-01\\n-4.34985012e-02 2.13553622e-01 -5.68534076e-01 -2.43125588e-01\\n9.54628065e-02 1.21142007e-01 9.30622816e-02 8.86082277e-02\\n-8.35864469e-02 -5.66973627e-01 8.73835236e-02 -4.62185532e-01\\n-4.08946723e-01 8.35794508e-02 -2.68532187e-01 1.41610295e-01\\n-1.18781114e-02 1.31553197e-02 -1.04655676e-01 1.54358745e-01\\n-3.98262084e-01 -9.62809194e-03 1.98483139e-01 8.36385041e-02\\n2.71697819e-01 1.44144706e-02 -3.17770332e-01 5.37018120e-01\\n-1.99240163e-01 4.90726560e-01 2.31304854e-01 -8.60578835e-01\\n5.21407068e-01 3.43164414e-01 2.22460739e-02 -2.33426064e-01\\n5.13758183e-01 -4.97482747e-01 -6.06347360e-02 7.87461847e-02\\n-2.08925754e-01 -2.40486860e-01 2.25190818e-01 -2.07355395e-01\\n-2.13167191e-01 6.52321041e-01 9.79803875e-02 7.58459866e-02\\n2.71201223e-01 -2.84002364e-01 -1.53032288e-01 2.37227022e-03\\n-1.02579683e-01 -3.13373119e-01 -4.47354853e-01 1.47278711e-01\\n-8.71924534e-02 -4.49230105e-01 -7.66515210e-02 -3.57810706e-01\\n-2.21492305e-01 -3.44946384e-01 -2.27335617e-01 3.60882729e-01\\n1.85643122e-01 1.77990466e-01 -6.16993643e-02 -5.14491051e-02\\n-1.02851771e-01 -5.54654419e-01 -8.66867602e-02 3.32162948e-03\\n4.31876391e-01 3.62463474e-01 9.45574194e-02 -8.42925608e-02\\n8.26074183e-03 4.65907842e-01 -3.91740888e-01 -3.86247605e-01\\n1.07361972e-01 1.00068875e-01 -4.90035005e-02 -9.85731781e-02\\n3.26036960e-02 3.74385118e-01 -2.08796039e-01 1.12648373e-02\\n-4.57389727e-02 -3.89988311e-02 3.71879041e-01 -7.86995143e-02\\n-7.84889907e-02 -1.51575401e-01 -8.80367085e-02 3.00601274e-01\\n-4.99792159e-01 -2.49258369e-01 5.60377479e-01 2.93808132e-01\\n1.43041015e-01 2.06354499e-01 3.31196755e-01 -3.49770598e-02\\n-2.06297949e-01 -2.90130764e-01 2.12465703e-01 1.66993886e-01\\n7.31567144e-02 6.01084828e-02 -1.06181867e-01 -5.50977409e-01\\n-3.15280676e+00 -2.17105091e-01 1.45241916e-01 -3.43216449e-01\\n2.67708004e-01 -1.54985771e-01 1.30030751e-01 6.69704098e-03\\n-3.34034979e-01 4.52787690e-02 -2.20231265e-01 -1.74990818e-01\\n1.28831165e-02 2.72709757e-01 1.94780767e-01 1.52164742e-01\\n8.37561414e-02 -2.68050253e-01 3.87446918e-02 3.70353371e-01\\n-1.19925745e-01 -7.14178562e-01 1.80286601e-01 9.42177139e-03\\n7.70942420e-02 2.23137647e-01 -4.02056843e-01 -1.43472865e-01\\n-2.57242143e-01 -2.31587946e-01 1.06009997e-01 -2.90270150e-01\\n-1.58509761e-01 3.49024445e-01 1.61613375e-01 -7.89339170e-02\\n2.04098672e-02 -3.20250034e-01 -3.94122005e-02 -5.13191283e-01\\n4.91619073e-02 -6.12865329e-01 2.81341821e-02 1.23053333e-02\\n6.60218775e-01 -2.08736971e-01 1.86504304e-01 1.62982315e-01\\n2.01037467e-01 1.79964364e-01 8.16345587e-02 3.88069041e-02\\n-3.61902803e-01 -3.67877930e-01 -4.46006544e-02 -1.96659148e-01\\n4.78486240e-01 4.24187601e-01 -1.86090052e-01 9.37778577e-02\\n4.69847657e-02 -2.82542944e-01 -3.41365665e-01 -4.71666187e-01\\n-2.57800221e-01 -9.94523838e-02 -6.63240254e-01 -4.74724710e-01\\n-3.34360376e-02 -8.48285183e-02 -6.95694089e-02 6.08738005e-01\\n-2.38730520e-01 -2.89296806e-01 3.93362306e-02 -6.06229424e-01\\n2.48990953e-01 -2.68990010e-01 8.68642852e-02 -1.86798245e-01\\n-2.09795952e-01 -5.24125874e-01 1.87672168e-01 -1.01832181e-01\\n-8.64565447e-02 -6.10309914e-02 -7.68753439e-02 -2.43118674e-01\\n-3.94441873e-01 -5.15174568e-01 4.78138685e-01 2.48377845e-02\\n4.03370976e-01 7.15769082e-02 3.49179000e-01 1.69358730e-01\\n3.80450875e-01 -1.19852625e-01 4.74263206e-02 -3.51269901e-01\\n6.56347424e-02 8.93278494e-02 5.52273154e-01 -2.60145485e-01\\n9.12769884e-02 9.63393226e-02 -2.64770716e-01 1.72053911e-02\\n3.87868732e-01 -9.01071820e-03 1.18194424e-01 -1.22112446e-01\\n3.10929030e-01 -5.40421784e-01 -2.32235715e-01 2.19883710e-01\\n-3.16703762e-03 6.62214875e-01 1.26162380e-01 -3.72878611e-01\\n-1.55667946e-01 3.66002083e-01 -2.37014517e-02 -1.95553929e-01\\n-1.00393102e-01 1.47064060e-01 -2.01775491e-01 1.86912656e-01\\n8.10760446e-03 -1.57243863e-01 -3.81503582e-01 -1.32620871e-01\\n-5.38106374e-02 2.58042812e-01 2.85235167e-01 7.45571554e-02\\n-6.33479655e-02 -2.10422188e-01 -6.14981055e-02 1.82702795e-01\\n3.25473219e-01 2.87844449e-01 1.48778602e-01 -3.18571717e-01\\n-8.81954376e-03 2.23850548e-01 -2.77969778e-01 3.02691549e-01\\n-1.20585993e-01 8.25181231e-02 -5.20129144e-01 -1.51294768e-01\\n-1.95990533e-01 -3.02435964e-01 1.57995820e-01 2.82610416e-01\\n1.32528737e-01 -2.70623099e-02 4.25996259e-02 -4.81244117e-01\\n3.66474658e-01 4.54892451e-03 8.74662772e-02 7.62791708e-02\\n-1.59706883e-02 5.45949697e-01 -4.72820550e-02 -4.68002595e-02\\n-1.23226650e-01 5.15441597e-02 -2.26655662e-01 -3.88403416e-01\\n1.64561361e-01 -4.01982278e-01 -1.35499001e-01 3.82584751e-01\\n1.69454738e-01 -1.51394516e-01 -1.97674498e-01 2.79219210e-01\\n1.02385329e-02 -2.75527865e-01 -2.17845753e-01 4.61275689e-03\\n2.75441915e-01 1.64858520e-01 1.96608081e-01 -4.41324174e-01\\n-9.04914960e-02 -2.05356684e-02 -1.79956127e-02 3.82876396e-01\\n1.85763419e-01 8.98169875e-02 -3.96185070e-02 -2.08418339e-01\\n5.07777631e-01 3.87730310e-03 -9.00021419e-02 5.49369343e-02\\n1.35245204e-01 -2.84267187e-01 -3.96683514e-01 -1.30731270e-01\\n-4.15769406e-02 -2.53024131e-01 3.79143991e-02 8.29394162e-02\\n8.60111713e-02 -2.99817584e-02 -5.62206268e-01 -1.81235284e-01\\n-2.79934794e-01 4.84399013e-02 1.88704412e-02 -5.26448071e-01\\n5.70087396e-02 -7.21805990e-02 -5.93094409e-01 2.50572085e-01\\n-1.60552874e-01 3.88097689e-02 1.72773395e-02 8.77578333e-02\\n-2.80294478e-01 -8.38516355e-02 1.23002864e-01 1.24726802e-01\\n-2.64754653e-01 -1.88302979e-01 2.68531349e-02 -1.05079353e+00\\n1.14569291e-01 7.96799213e-02 -7.40502551e-02 9.06327143e-02\\n7.71728531e-02 -6.09483957e-01 9.97033566e-02 -4.07570213e-01\\n9.42799151e-02 1.04335845e-01 -2.28163049e-01 -3.07803124e-01\\n1.88984752e-01 -6.58035930e-03 -2.47501269e-01 3.78270686e-01\\n-4.39065218e-01 3.23343188e-01 5.11868857e-02 1.36629149e-01\\n7.64637962e-02 -2.43811727e-01 1.11777239e-01 -2.46417195e-01\\n-4.40238535e-01 -2.16521025e-01 -2.93592989e-01 -2.55810440e-01\\n6.14849143e-02 -2.84920871e-01 -7.29003400e-02 4.45559155e-03\\n3.93786371e-01 1.23794019e-01 -1.82809621e-01 -1.93216920e-01\\n1.20383285e-01 -4.08869743e-01 7.23522678e-02 -2.76056677e-01\\n-1.82382911e-02 -9.72226039e-02 1.69590786e-01 -1.48465466e-02\\n2.05771565e-01 -2.79238164e-01 3.87805730e-01 -3.44626725e-01\\n-3.58865231e-01 -1.08502872e-01 6.18053079e-02 -2.63589714e-02\\n2.88811564e-01 -4.86190289e-01 5.43416552e-02 2.88795173e-01\\n1.25032544e-01 1.14335269e-01 3.04251671e-01 -1.50564626e-01\\n-1.38876140e-01 2.15690255e-01 -5.84826350e-01 8.77067372e-02\\n8.05995286e-01 2.05583364e-01 4.27641235e-02 1.55382454e-01\\n1.99689463e-01 2.07493111e-01 4.03847069e-01 -9.91983637e-02\\n-6.53214753e-03 2.96378285e-01 1.14673808e-01 -6.04148269e-01\\n-1.89301372e-01 -1.91636860e-01 -2.12933108e-01 -2.97016889e-01\\n5.72949111e-01 2.82916009e-01 -3.46922129e-01 -3.68151218e-01\\n-1.04234405e-01 -1.08931549e-01 2.91695416e-01 -3.54174227e-02\\n-2.19749212e-02 -1.35175511e-01 5.01668572e-01 -5.00252508e-02\\n2.29391143e-01 5.36705434e-01 1.11739384e-02 -2.83394635e-01\\n-1.24921121e-01 1.23811081e-01 1.20361738e-01 4.75744247e-01\\n-1.42359674e-01 2.27318332e-01 -3.57865021e-02 1.83223739e-01\\n-1.25249460e-01 1.84688773e-02 2.06565827e-01 5.77595010e-02\\n1.73738971e-01 2.74043605e-02 3.49183321e-01 4.80053306e-01\\n2.03826666e-01 4.58892345e-01 3.17585677e-01 3.10171284e-02\\n3.54271144e-01 6.10677183e-01 3.63353640e-01 1.26161933e-01\\n1.11672506e-02 1.26187563e-01 2.19631679e-02 -1.56424358e-01\\n3.04473013e-01 3.58155161e-01 1.09054707e-01 8.40945244e-01\\n3.44411939e-01 4.08260345e-01 7.58903742e-01 -6.54143989e-01\\n-3.65426391e-01 6.55385330e-02 5.59831083e-01 -3.92442971e-01\\n-3.61497737e-02 6.17549419e-02 -2.42685810e-01 3.74237269e-01\\n-5.45959651e-01 -9.56491306e-02 1.86301284e-02 -1.25929415e-01\\n4.40866649e-02 2.24842243e-02 -1.27773032e-01 6.39845207e-02\\n-2.52536893e-01 -2.80733317e-01 -3.51040840e-01 -1.90720007e-01\\n-3.05693060e-01 -7.37408251e-02 -4.61046100e-02 -1.13667138e-01\\n-1.62264794e-01 -2.59654522e-01 -3.60225439e-02 -3.50322537e-02\\n3.55278462e-01 -1.55716419e-01 -1.34486809e-01 -1.30861849e-01\\n2.32293069e-01 2.49595761e-01 6.29372776e-01 -9.78497341e-02\\n1.67412251e-01 -1.14967301e-01 -2.62375385e-01 3.94959114e-02\\n6.51534125e-02 9.26111788e-02 8.80367979e-02 4.91617799e-01\\n-3.58278543e-01 -1.79087222e-01 2.01314375e-01 2.06708550e-01\\n-3.68043691e-01 -4.47719395e-02 -2.31344923e-02 9.80158821e-02\\n6.27909601e-02 1.88289165e-01 -2.35388532e-01 3.75367962e-02\\n-1.87578842e-01 -5.59995651e-01 4.87147331e-01 -2.19631001e-01\\n-1.67803437e-01 1.48798242e-01 3.74096841e-01 2.60262907e-01\\n-2.44368047e-01 -3.98179553e-02 -9.58795771e-02 2.92218238e-01\\n6.83486983e-02 3.16484958e-01 -2.13872001e-01 -1.94104120e-01\\n-2.46031314e-01 2.63403237e-01 -1.31202891e-01 1.53585240e-01\\n-8.08748603e-02 3.18634480e-01 8.68555009e-02 1.12147957e-01\\n2.56462187e-01 5.19505069e-02 -3.17834318e-01 -3.21364641e-01\\n-2.23731980e-01 -1.84150010e-01 8.01416188e-02 -5.90254404e-02\\n1.77383751e-01 -2.34694585e-01 -1.66571334e-01 -2.87593514e-01\\n-1.76571652e-01 -3.63194585e-01 -1.20753400e-01 1.12032993e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: You will be expected to lead projects in development and deployment of production-ready applications using machine learning algorithms, such as banking product recommender systems, payment fraud detection, and quantitative decision-support tools and services. Typical projects include the full data science lifecycle, including data extraction from transactional sources and transformation for analytical purpose. You will provide hands-on leadership to projects working with large datasets and extensive timeseries such as financial market data, transactions data and client interaction profiles, employing various statistical and numerical methods to analyse both structured and unstructured data to develop predictive models. As our technology is generally delivered as packaged software or as a service in the cloud, it is important that you are experienced in and can lead others hands-on to perform the software development life-cycle professionally and efficiently. Taking a leading role in consulting to clients is also a part of the job description. You are therefore expected to possess strong communication skills in addition to excellent technical capabilities. Requirements: - University degree in computer science, engineering or comparable numerical fields - Passion for applying technology to solve business problems - Experienced in the financial services industry in either a quantitative or technology role - Experience in project leadership & coordination, client communication (including senior management levels), and successful project delivery - Experience in developing production-ready machine learning applications and setting up data science pipelines - Solid experience with Linux and software collaboration tools: continuous integration (i.e. Jenkins or CircleCI), source control (git, svn), issue management (Jira, Confluence) - Knowledge of multiple programming languages is beneficial (Python, R, Java, Scala) - Substantial experience in applying modern big data tools for scalability and distributed computing (Apache Spark, PySpark, Dask) and data stores (SQL or NoSQL), such as MongoDB and Neo4j - Strong communication skills in English and the ability to make coherent technical arguments; working proficiency in German is a must - Eligible to live and work in Switzerland Benötigte Skills Banken / Finanzgesellschaften Projektleitung Jira Linux Python Python R JAVA Scala Apache SQL NoSQL Englisch',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Leadership\", \"Professionalism\", \"Coordinating\", \"Management\", \"Communications\", \"Sourcing\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Apache Spark\", \"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"KM Programming Language\", \"Circleci\", \"Software Development Life Cycle\", \"Interactivity\", \"Collaborative Software\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Collaboration Tools\", \"Decision Support Systems\", \"Continuous Integration\", \"Recommender Systems\", \"Financial Services\", \"Applied Business Technologies\", \"Distributed Computing\", \"Scala (Programming Language)\", \"Pyspark\", \"Service Level Management\", \"Python (Programming Language)\", \"Linux\", \"Data Extraction\", \"MongoDB\", \"Transaction Data\", \"E (Programming Language)\", \"Source (Game Engine)\", \"Dataset\", \"Pipelining\", \"Financial Market\", \"Machine Learning Methods\", \"Unstructured Data\", \"Data Science\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Data Store\", \"Transformation (Genetics)\", \"Atlassian Confluence\", \"Banking\", \"Software Development\", \"Algorithms\", \"Additives\", \"Service Industries\", \"Git Flow\", \"Neo4j\", \"Amazon Data Pipeline\", \"Market Data\", \"JIRA Studio\", \"Java (Programming Language)\", \"Job Descriptions\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Chuvash']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'c++ software development engineer',\n", + " 'location': 'Unterentfelden',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.hexagon.com',\n", + " 'jobdescription_embedded': '[[-1.54618099e-01 3.89143944e-01 5.09049058e-01 -9.65741798e-02\\n5.67536414e-01 -1.22960091e-01 3.81881520e-02 2.98756510e-01\\n1.69447549e-02 -3.23508859e-01 -2.24941477e-01 -2.90438056e-01\\n-3.86461541e-02 -5.35851857e-03 8.62632096e-02 5.29451251e-01\\n2.92639971e-01 1.63329821e-02 -1.65439174e-01 4.00280774e-01\\n6.70399740e-02 -1.30536363e-01 2.01959938e-01 6.72956049e-01\\n3.42955559e-01 -1.08423401e-02 2.89842095e-02 -3.85596324e-03\\n-2.37996221e-01 -1.99050456e-01 3.79731923e-01 5.61525002e-02\\n-2.26014644e-01 -4.15623635e-01 6.20941594e-02 1.91115588e-01\\n-1.41476810e-01 -3.33002470e-02 -2.62992252e-02 1.44758776e-01\\n-5.25140822e-01 -3.53081107e-01 4.92205285e-02 -2.67142914e-02\\n-2.35074744e-01 -3.20273072e-01 1.25041455e-01 -4.27913480e-02\\n-2.77809538e-02 9.13154632e-02 -4.32981879e-01 3.22847962e-01\\n-2.56377965e-01 -1.72818854e-01 3.14492792e-01 6.58517838e-01\\n-5.39667271e-02 -4.93250698e-01 -3.99023503e-01 -2.53276348e-01\\n7.95491114e-02 -1.47057194e-02 -6.60235574e-03 -2.35741213e-01\\n4.19521838e-01 -9.13119540e-02 -1.21985853e-01 2.98219681e-01\\n-7.44005322e-01 -1.05459958e-01 -2.86731422e-01 -2.61336342e-02\\n-3.62767637e-01 -8.04213062e-02 -2.21055940e-01 -2.20309466e-01\\n-7.58841410e-02 3.58574450e-01 1.36963390e-02 7.88454153e-03\\n-1.61824793e-01 3.40631902e-01 -1.10626824e-01 2.45939761e-01\\n3.21417809e-01 2.30065927e-01 2.46290490e-01 3.01855117e-01\\n-4.49905902e-01 3.92784715e-01 1.65125445e-01 -2.68059313e-01\\n1.99164286e-01 8.76920745e-02 3.97254705e-01 1.31248310e-01\\n-3.52488048e-02 1.35279298e-01 -2.35336572e-01 2.64528424e-01\\n2.65920848e-01 -1.61506638e-01 -1.27661116e-02 -3.64867002e-02\\n-4.28374968e-02 -5.77242374e-02 4.80339862e-02 2.54126906e-01\\n-3.65552574e-01 3.78500879e-01 1.62364274e-01 -2.46197507e-01\\n-8.83050077e-03 -5.86377323e-01 -2.22073004e-01 -2.59210430e-02\\n6.17630333e-02 2.02233925e-01 2.84768641e-01 2.73241550e-01\\n3.09558481e-01 -5.99102452e-02 1.26509041e-01 9.52667296e-01\\n-6.49159849e-02 1.71797320e-01 -2.49836832e-01 5.14901161e-01\\n1.46904901e-01 -3.76003593e-01 1.68846786e-01 3.30233425e-01\\n5.89482440e-03 -8.89862105e-02 -2.00748339e-01 2.89657682e-01\\n-1.02835499e-01 -2.56204426e-01 -3.28726679e-01 1.99098542e-01\\n-1.57101363e-01 -4.88311738e-01 5.59774458e-01 -5.31339273e-03\\n4.41078916e-02 -7.15244189e-02 -1.60193771e-01 3.52091156e-02\\n-5.01323007e-02 3.35492104e-01 5.45355007e-02 4.19197232e-02\\n-3.57471675e-01 -2.40365535e-01 -2.64163077e-01 2.29739904e-01\\n-1.66869283e-01 1.75985515e-01 -2.40751207e-01 -2.41244689e-01\\n2.86476672e-01 2.20193267e-02 -4.67349827e-01 3.57372195e-01\\n-4.93327528e-02 -1.25278726e-01 -4.00690846e-02 3.29458535e-01\\n-1.75488248e-01 2.12900296e-01 5.71311451e-02 -1.99481413e-01\\n5.21703124e-01 6.31898195e-02 1.50833979e-01 -1.08988911e-01\\n3.82068306e-01 -1.06803991e-01 1.95333704e-01 1.77968040e-01\\n-6.06419981e-01 4.08256501e-01 -8.65222365e-02 1.61584560e-02\\n9.99960229e-02 -2.51125265e-02 4.64302182e-01 -2.73517698e-01\\n-1.21717393e-01 -2.42528856e-01 -3.16910386e-01 -3.59680772e-01\\n-2.47763604e-01 -3.01649794e-02 3.50776553e-01 -3.80049020e-01\\n-7.13144317e-02 2.52459884e-01 -5.92665613e-01 -3.44788842e-02\\n2.44498491e-01 2.35957220e-01 2.60260582e-01 1.52683243e-01\\n-1.90540418e-01 -5.53931236e-01 1.78228449e-02 -3.70877773e-01\\n-3.31059068e-01 1.42616451e-01 -1.59629449e-01 2.55565315e-01\\n9.54848006e-02 5.09208925e-02 -1.32721588e-01 2.83760559e-02\\n-3.29497635e-01 -1.45419668e-02 2.01949939e-01 1.10824652e-01\\n1.27135441e-01 -6.70668250e-03 -4.01907593e-01 4.87152219e-01\\n-1.50453374e-01 5.46891749e-01 9.91660282e-02 -9.85745192e-01\\n5.01998425e-01 2.71160603e-01 2.70486027e-02 -4.34481680e-01\\n6.56641424e-01 -3.80730182e-01 -9.90642980e-02 1.49804756e-01\\n-3.47977817e-01 -2.19491869e-01 2.10256264e-01 -1.93183899e-01\\n-2.38661394e-01 5.88405192e-01 7.46780485e-02 3.26739401e-02\\n2.78656602e-01 -2.15997443e-01 -1.54089645e-01 4.80760299e-02\\n-1.04387522e-01 -2.03592911e-01 -4.48495477e-01 6.27460331e-02\\n-8.64931494e-02 -4.97938931e-01 -2.37147391e-01 -5.29505908e-01\\n-1.32020146e-01 -3.72561216e-01 -1.65834263e-01 2.56583840e-01\\n1.87403455e-01 7.21768439e-02 5.18181361e-02 4.05724421e-02\\n-1.98745161e-01 -7.35531271e-01 -8.36018249e-02 4.70702536e-02\\n2.87959218e-01 2.49204084e-01 1.54015720e-01 4.37249728e-02\\n5.36141032e-03 5.35523713e-01 -3.07178229e-01 -2.22894415e-01\\n1.28105760e-01 1.66731790e-01 -2.49532182e-02 -4.97771055e-02\\n1.76257998e-01 4.02080834e-01 -2.35741422e-01 7.36688077e-02\\n-1.21377960e-01 8.22339803e-02 3.63423914e-01 -7.93753043e-02\\n-2.06546098e-01 -2.36631289e-01 -6.38097897e-02 2.39078268e-01\\n-6.17504120e-01 -2.92727828e-01 5.40913045e-01 1.39390618e-01\\n7.89543018e-02 9.67703983e-02 3.77769232e-01 -2.06822544e-01\\n-1.84880599e-01 -8.94260630e-02 1.43946320e-01 1.54490948e-01\\n5.26454076e-02 1.35100922e-02 -9.28519964e-02 -5.59488237e-01\\n-3.15681767e+00 -5.34394942e-02 9.84933823e-02 -2.42253110e-01\\n1.35125652e-01 -1.21987276e-01 7.66179115e-02 -3.80421393e-02\\n-3.40037465e-01 1.08533345e-01 -1.79354280e-01 -9.04224962e-02\\n1.36228815e-01 2.71269530e-01 1.35766849e-01 1.48275822e-01\\n8.66556838e-02 -3.32028836e-01 -5.33029623e-03 4.03992951e-01\\n-8.77189934e-02 -7.13490546e-01 1.83653161e-01 -7.43045956e-02\\n3.00741404e-01 5.16787060e-02 -4.52029556e-01 -1.43654272e-01\\n-2.52759218e-01 -2.78138578e-01 1.49115935e-01 -1.74116760e-01\\n-1.21141948e-01 3.53979588e-01 2.08349809e-01 -1.13166399e-01\\n1.40428826e-01 -3.03774476e-01 -4.23392542e-02 -4.20055956e-01\\n3.86209786e-02 -5.99688649e-01 2.72603780e-02 -5.20411618e-02\\n5.83321452e-01 -2.11528897e-01 1.95961818e-01 1.84097171e-01\\n1.20724119e-01 2.78540641e-01 3.58227342e-02 -2.43673250e-02\\n-2.24705845e-01 -2.85149634e-01 -8.39482918e-02 -1.20878614e-01\\n5.52769601e-01 5.23924172e-01 -2.22827509e-01 -2.98601203e-02\\n-2.84989569e-02 -2.74463177e-01 -5.69567621e-01 -3.52037907e-01\\n-1.79550514e-01 -9.86900404e-02 -8.01472247e-01 -4.09514010e-01\\n-1.31633580e-01 -1.47927210e-01 -1.36325583e-01 6.01689935e-01\\n-3.48467201e-01 -3.26819628e-01 1.20757688e-02 -4.60074574e-01\\n1.86222658e-01 -2.30171859e-01 4.63781739e-03 -1.90983057e-01\\n-2.02970862e-01 -4.23297822e-01 1.45552441e-01 1.12203717e-01\\n-1.29378811e-01 -1.30980834e-01 2.05250382e-02 -3.02450716e-01\\n-2.34245285e-01 -4.51907545e-01 4.98113096e-01 9.35951620e-02\\n3.76581460e-01 -2.46702619e-02 2.19077557e-01 8.70767224e-04\\n4.49835509e-01 -8.15717429e-02 8.94814804e-02 -5.20929217e-01\\n-5.98815121e-02 4.44927625e-02 6.23434901e-01 -2.84598112e-01\\n-6.73542991e-02 1.20774508e-01 -1.66066527e-01 -3.14577296e-02\\n4.10794973e-01 6.30336627e-02 6.72706440e-02 -2.73384869e-01\\n2.53057390e-01 -4.63822275e-01 -1.91310689e-01 8.41301605e-02\\n4.41267230e-02 6.45666003e-01 -7.21386895e-02 -4.60637689e-01\\n-2.05543861e-01 3.93736243e-01 -6.58919439e-02 -1.87078550e-01\\n-1.61248982e-01 1.62874460e-01 -3.57508391e-01 2.48478547e-01\\n1.56116299e-02 -1.42154545e-01 -3.87192786e-01 -5.57514466e-02\\n-2.15552896e-02 2.26344749e-01 2.88914800e-01 1.47699311e-01\\n-9.48880315e-02 -3.94125104e-01 -6.11509271e-02 1.26902714e-01\\n2.44433612e-01 2.08002940e-01 7.47048557e-02 -3.43898803e-01\\n7.62036964e-02 3.16252023e-01 -1.96142450e-01 2.10682303e-01\\n-1.61187977e-01 1.02039158e-01 -4.93739396e-01 -2.25151464e-01\\n-2.17559651e-01 -2.12366790e-01 9.61583257e-02 3.38968277e-01\\n1.81513876e-01 -9.73146502e-03 1.17653251e-01 -5.90803027e-01\\n3.63143325e-01 1.22776702e-01 1.91177860e-01 1.50318995e-01\\n1.18326999e-01 6.55165911e-01 1.51795167e-02 -1.88765362e-01\\n-1.80702955e-01 3.14146020e-02 -1.24567062e-01 -2.52788216e-01\\n5.77417389e-03 -4.29123878e-01 -1.20776571e-01 4.04752254e-01\\n9.66578946e-02 -2.58190721e-01 -2.21192017e-01 2.18194321e-01\\n1.09097309e-01 -2.81112015e-01 -2.06215680e-01 7.34604895e-02\\n1.89475611e-01 8.28502178e-02 2.65355200e-01 -4.25878108e-01\\n7.85965621e-02 -1.06037922e-01 1.85314212e-02 3.82015914e-01\\n1.61986902e-01 8.66450071e-02 -2.14960858e-01 -2.33081266e-01\\n3.65050465e-01 -3.06593049e-02 -9.85030085e-02 -1.00614466e-01\\n8.86598006e-02 -2.11213365e-01 -3.47770154e-01 4.16011848e-02\\n3.07001527e-02 -1.70261025e-01 -1.72148217e-02 4.02693078e-02\\n1.29924491e-01 3.55638415e-02 -5.64481854e-01 -2.84480691e-01\\n-2.45546892e-01 -1.99344214e-02 -6.91005737e-02 -4.56210077e-01\\n9.63350199e-03 2.17225007e-03 -6.37623072e-01 2.32062608e-01\\n-1.74986616e-01 -1.19105093e-02 1.50779977e-01 8.22377279e-02\\n-3.78822297e-01 -2.72701830e-01 1.18326984e-01 1.56765163e-01\\n-2.19174176e-01 -1.89722896e-01 -3.91815566e-02 -9.95388150e-01\\n2.10241348e-01 -2.96791047e-02 6.11168938e-03 1.64729521e-01\\n-1.38270035e-01 -8.34559977e-01 7.99586847e-02 -4.59912628e-01\\n-5.03978617e-02 2.40749903e-02 -1.55293316e-01 -4.21584427e-01\\n3.18494043e-03 -1.28338132e-02 -1.93308219e-01 3.53885561e-01\\n-4.86355841e-01 4.53691512e-01 -9.24880803e-02 1.28068745e-01\\n-4.22302708e-02 -2.96799242e-01 1.24242246e-01 -4.30849582e-01\\n-4.45544690e-01 -1.01224877e-01 -3.42922360e-01 -2.43550718e-01\\n-8.01290423e-02 -2.14901939e-01 -1.86146945e-01 7.90995583e-02\\n3.49012494e-01 1.16718866e-01 -9.44228992e-02 -1.45397976e-01\\n-1.29492208e-02 -3.70724142e-01 1.52573809e-01 -2.36557230e-01\\n2.96522360e-02 -1.05543584e-01 2.60140777e-01 9.28126741e-03\\n1.39393806e-01 -3.34815681e-01 4.48461026e-01 -3.06142509e-01\\n-3.73616040e-01 -4.76591988e-03 8.22496414e-02 4.78394739e-02\\n4.15680468e-01 -4.46204513e-01 7.08519369e-02 3.15320730e-01\\n-1.03978328e-02 7.72280395e-02 3.03771585e-01 -1.84963062e-01\\n-1.51519775e-01 1.76267520e-01 -5.08940935e-01 7.60158673e-02\\n6.44866407e-01 2.23713979e-01 1.94563866e-01 1.21470325e-01\\n8.55949819e-02 2.62387365e-01 5.29690027e-01 -9.65695828e-02\\n-8.17004591e-02 3.01401079e-01 1.18478060e-01 -4.89300370e-01\\n-1.68362871e-01 3.42328362e-02 -2.10482910e-01 -3.36371869e-01\\n5.87874711e-01 4.00158763e-01 -3.26516360e-01 -2.25504622e-01\\n-1.75248578e-01 -2.00424492e-01 2.48733640e-01 -9.29925963e-02\\n3.47641222e-02 -1.46142602e-01 5.25421202e-01 -1.31914811e-02\\n2.87766814e-01 6.70130134e-01 -1.39748409e-01 -3.74768436e-01\\n-6.27821237e-02 1.86250106e-01 4.95405607e-02 4.38594848e-01\\n-2.92769261e-02 2.68550515e-01 2.84384135e-02 1.50260583e-01\\n-2.28690878e-01 7.69244134e-02 1.99819177e-01 1.25651926e-01\\n1.72179699e-01 1.81311443e-01 4.19532597e-01 4.85740602e-01\\n3.44022393e-01 5.25828540e-01 2.24859208e-01 2.90669631e-02\\n5.23472309e-01 5.46586692e-01 3.70946079e-01 1.85443550e-01\\n9.28168278e-03 1.96565613e-01 3.36900800e-02 5.63553646e-02\\n4.02377874e-01 3.33543152e-01 2.30170459e-01 9.00894821e-01\\n3.10412109e-01 4.19768780e-01 8.59087229e-01 -5.77185392e-01\\n-3.81871909e-01 3.82917933e-02 4.85036314e-01 -3.99065405e-01\\n-1.15501128e-01 9.95718315e-02 -1.37473613e-01 1.99428588e-01\\n-4.26239312e-01 -2.26816311e-01 -6.75036311e-02 6.18164130e-02\\n7.81300515e-02 -6.11863472e-02 -1.94224134e-01 5.13911061e-02\\n-3.04338753e-01 -1.30060166e-01 -4.28534299e-01 -1.48547679e-01\\n-3.31156373e-01 -6.62256405e-02 -1.21509805e-01 -1.64979786e-01\\n-1.01810642e-01 -2.82223254e-01 -1.42185792e-01 -4.73085679e-02\\n2.92213887e-01 -2.70095736e-01 -2.03561604e-01 -2.46930420e-01\\n2.22086355e-01 2.54910082e-01 4.95715588e-01 -2.20354497e-02\\n1.68087900e-01 -1.77644938e-01 -2.64950603e-01 1.13510517e-02\\n1.67651191e-01 1.40842751e-01 6.50413036e-02 5.22554576e-01\\n-2.45464087e-01 -1.02193050e-01 7.51220658e-02 4.58513826e-01\\n-2.71154523e-01 -5.72787113e-02 -1.57778591e-01 7.29441792e-02\\n-2.14735549e-02 1.49690762e-01 -2.94493526e-01 1.99490208e-02\\n-1.67247891e-01 -6.37611985e-01 3.59891146e-01 -2.50506103e-01\\n-1.03410117e-01 8.73118788e-02 2.96337545e-01 2.74575025e-01\\n-1.06553182e-01 1.31165946e-03 -1.54510468e-01 2.71891892e-01\\n1.16456620e-01 3.82360667e-01 -3.56671482e-01 -1.77260950e-01\\n-1.68665811e-01 1.46800652e-01 -2.26669163e-01 7.94112086e-02\\n-9.15244296e-02 4.05253470e-01 5.24261482e-02 1.19566478e-01\\n4.05661762e-01 1.78980362e-02 -2.99085587e-01 -2.62189686e-01\\n-1.98534638e-01 -2.97964066e-01 8.36004876e-03 3.85739356e-02\\n2.90382475e-01 -2.68002659e-01 -7.38082975e-02 -2.05758408e-01\\n-2.26247638e-01 -4.50070679e-01 -3.18310373e-02 4.15710136e-02]]',\n", + " 'job_description': 'Hexagon Manufacturing Intelligence offers a comprehensive range of products and services for all industrial metrology applications in sectors such as automotive, aerospace, energy and medical. By empowering our customers to fully control their manufacturing processes, we enhance the quality of products and increase efficiency in manufacturing plants around the world. To strengthen our R&D Team in Unterentfelden (Switzerland) we are looking for a C++ Software Development Engineer Develop innovative Windows software in a team for our Portable industrial measurement instruments, contribute to entirely new interdisciplinary technology developments for industry automation and production intelligence! Main responsibilities Design and develop software for highest precision Portable Arms, Scanners and Laser Trackers in a team Analyse customer needs in cooperation with requirements engineering team and form functional software specifications Develop prototypes of the technical solution for validation of requirements Define, plan and implement technical as well as functional testing of the software in cooperation with test team Analyse the technical and functional quality, propose fixes and put in technical compliance Edit technical documents and media for developers, users, IT services and further relevant stakeholders Required skills Programming language C ++, Visual Studio 2012 or greater Windows System Programming Mandatory (Multi-threading environment and good knowledge of communication protocols based on USB, TCP/IP) University degree (ETH, EPFL, FH, Haute école) in Electrical Engineering, Computer Science or other relevant education At least 5 years experiences in a similar working environment Application Architecture experience SQL language skills appreciated C# and C++/CLI experience appreciated Knowledge of DevExpress recommended Knowledge of algorithms and maths Reliable analysis and synthesis skills Very good English and German skills are mandatory, French is an advantage Willingness to travel (10-20%) between Unterentfelden (CH) and Montoire (F) If you are ready to work within a culture of high-performance and feel at home in a high-tech environment and you are ready to take the challenge at Hexagon Manufacturing Intelligence, join our team. E-mail',\n", + " 'soft_skills': '[\"Editing\", \"Innovation\", \"Planning\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Common Technical Document\", \"KM Programming Language\", \"Stakeholder Requirements\", \"Computer Science\", \"High Performance Computing\", \"System Programming\", \"Industrialization\", \"C++ (Programming Language)\", \"Windows System Administration\", \"Prototyping\", \"Industrial Automation\", \"Instrumentation\", \"E (Programming Language)\", \"TCP/IP\", \"Medic\", \"C++/CLI\", \"Microsoft Visual Studio\", \"Applications Architecture\", \"ARM Architecture\", \"Functional Testing\", \"USB\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Windows Software\", \"Requirements Engineering\", \"Laser Tracker\", \"Application Environments\", \"Validations\", \"DevExpress\", \"Software Requirements Specification\", \"Technical Solution Design\", \"Software Development\", \"Language Experience Approach\", \"Algorithms\", \"Communications Protocols\", \"SQL (Programming Language)\", \"Controllability\", \"Threading (Manufacturing)\", \"Manufacturing Processes\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '84',\n", + " 'job_title': '.net consultant / software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.61061400e-01 2.82405615e-01 4.39843953e-01 -1.06197216e-01\\n4.96441543e-01 -2.55543470e-01 -1.15714118e-01 3.84546578e-01\\n-1.00942172e-01 -4.29098755e-01 -2.52556149e-02 -3.17635238e-01\\n-6.96545914e-02 2.52955910e-02 1.92746475e-01 4.94967282e-01\\n2.63134420e-01 8.39160010e-02 -2.18112051e-01 3.45846862e-01\\n1.22279868e-01 -8.40979908e-03 4.93846759e-02 7.05662966e-01\\n4.00918156e-01 3.21412012e-02 -9.74281803e-02 -4.59116995e-02\\n-3.10366064e-01 -2.24626094e-01 4.49564248e-01 3.62390056e-02\\n-1.24232292e-01 -3.17485422e-01 9.18334946e-02 7.17850849e-02\\n-1.80965066e-01 -8.28596354e-02 -5.51367439e-02 2.85666823e-01\\n-4.35210824e-01 -1.99896142e-01 8.98752287e-02 7.58509710e-02\\n-1.29840925e-01 -3.99345368e-01 6.93388283e-02 -9.92942005e-02\\n8.34268406e-02 3.81236561e-02 -5.19869387e-01 2.04275459e-01\\n-2.16927439e-01 -1.56002060e-01 3.18006873e-01 5.80775738e-01\\n2.44086739e-02 -4.98956293e-01 -4.65747952e-01 -3.39738786e-01\\n1.40105024e-01 -8.36121908e-05 2.46197395e-02 -3.41030449e-01\\n3.73587847e-01 7.15952069e-02 5.05458517e-03 3.23967606e-01\\n-8.48127425e-01 -1.43008575e-01 -2.12373853e-01 1.90450437e-02\\n-4.12282288e-01 -2.78401989e-02 -2.38644406e-01 -1.41654789e-01\\n-1.06879830e-01 4.43170369e-01 -1.93899423e-02 -1.70567427e-02\\n-1.40919730e-01 3.19316477e-01 -1.43043086e-01 2.88516313e-01\\n2.34780833e-01 2.94918388e-01 2.10442826e-01 3.75243038e-01\\n-4.31245834e-01 3.55803728e-01 1.84469894e-01 -3.79628241e-01\\n2.21618503e-01 2.10281517e-02 4.76391912e-01 3.15011013e-03\\n1.38864532e-01 1.14987269e-01 -2.77029723e-01 3.41122001e-01\\n1.86061472e-01 -1.68644488e-01 4.34421264e-02 -6.81454688e-02\\n-3.84778902e-02 5.65203242e-02 3.68006118e-02 2.23805130e-01\\n-2.58395851e-01 4.46176380e-01 1.18645146e-01 -1.51735380e-01\\n-3.33415419e-02 -6.22109115e-01 -1.51888743e-01 -1.21548190e-03\\n2.25975271e-02 1.43732384e-01 1.95251018e-01 1.83794543e-01\\n2.08858818e-01 -9.62470993e-02 1.94579110e-01 9.65843856e-01\\n-4.66822274e-02 2.38388553e-02 -2.86113352e-01 3.70040089e-01\\n1.72202840e-01 -2.50677079e-01 1.96682021e-01 1.97969154e-01\\n8.39239061e-02 -5.43384179e-02 -1.82683915e-01 3.15192640e-01\\n-1.28099501e-01 -3.00945669e-01 -3.71956706e-01 7.89373964e-02\\n-1.59114286e-01 -4.56348926e-01 6.03847146e-01 1.07984297e-01\\n1.67446434e-01 -1.56945422e-01 -4.35541803e-03 -1.54890746e-01\\n-9.89364646e-03 1.82144046e-01 -1.73465051e-02 1.98373925e-02\\n-3.93176079e-01 -2.22950116e-01 -1.73748061e-01 2.18064487e-01\\n-1.49262607e-01 6.47005364e-02 -9.92368683e-02 -1.08271062e-01\\n2.37163559e-01 1.29458890e-03 -2.90941119e-01 2.40611359e-01\\n2.13453714e-02 -1.76653355e-01 -6.03716075e-02 2.63112158e-01\\n-1.47585168e-01 1.89769506e-01 -7.04779625e-02 -2.11540177e-01\\n5.45767546e-01 4.10812534e-02 2.02351227e-01 4.08065366e-03\\n2.84436166e-01 -2.25074619e-01 1.93208128e-01 1.12986304e-01\\n-6.34288013e-01 3.34666550e-01 -6.33460954e-02 -1.02804773e-01\\n1.66738793e-01 5.86899221e-02 3.49167794e-01 -2.19903380e-01\\n7.31283873e-02 -1.63252726e-01 -2.80016392e-01 -4.13257271e-01\\n-3.15646976e-01 -4.60813977e-02 3.36676151e-01 -3.53214890e-01\\n-1.72820374e-01 2.44597197e-01 -5.43659866e-01 -1.30678803e-01\\n1.18069492e-01 1.81975648e-01 3.32590416e-02 2.07384631e-01\\n-2.52361774e-01 -5.69460690e-01 8.64793584e-02 -5.13334334e-01\\n-3.85820150e-01 1.28958747e-01 -2.49752745e-01 2.49418542e-01\\n2.07245089e-02 1.77062266e-02 -1.80193633e-01 1.30770490e-01\\n-3.05217117e-01 4.12850790e-02 1.23431556e-01 2.15713680e-01\\n3.30951124e-01 5.51810674e-02 -4.40088689e-01 5.43328047e-01\\n-1.27796948e-01 4.92609322e-01 1.60326600e-01 -9.73326802e-01\\n4.51699823e-01 3.52508068e-01 9.75953862e-02 -3.81554037e-01\\n6.76976204e-01 -3.32376361e-01 -6.34292141e-02 1.37686193e-01\\n-4.60948914e-01 -3.52548182e-01 2.48909488e-01 -1.90905079e-01\\n-2.20866904e-01 5.69935441e-01 8.78207535e-02 1.33400820e-02\\n3.52307618e-01 -2.83530086e-01 -2.35882461e-01 -2.50920169e-02\\n-1.10039435e-01 -2.52096117e-01 -4.88583863e-01 5.34434468e-02\\n2.07100287e-02 -5.58353841e-01 -1.04677498e-01 -3.23822826e-01\\n-2.31217682e-01 -3.37153435e-01 -1.87967539e-01 3.07265759e-01\\n2.10479677e-01 9.01447982e-02 3.26610692e-02 4.12330701e-04\\n-9.44381729e-02 -5.49226820e-01 -2.54393667e-02 1.26453042e-01\\n4.28147286e-01 1.71481848e-01 1.33025944e-01 8.33098888e-02\\n-7.47130439e-02 6.30581260e-01 -1.94379896e-01 -2.84884542e-01\\n4.64021564e-02 1.74978033e-01 7.10744187e-02 -4.52108905e-02\\n1.55839786e-01 3.88529271e-01 -2.32466757e-01 6.21679276e-02\\n-1.92457691e-01 -9.83112585e-03 3.26006532e-01 -1.43725267e-02\\n-1.65859058e-01 -1.86779484e-01 4.81200926e-02 1.77215740e-01\\n-5.83463013e-01 -2.16852948e-01 5.17063022e-01 2.26086602e-01\\n2.07482010e-01 1.57962576e-01 2.94357538e-01 -1.15060575e-01\\n-2.32433751e-01 -2.64887840e-01 1.87108070e-01 1.23880945e-01\\n1.23403162e-01 8.35000426e-02 -5.64389639e-02 -5.83317637e-01\\n-2.91366673e+00 -1.84168890e-01 1.30148560e-01 -2.49361515e-01\\n2.01651335e-01 -1.24938056e-01 8.57203379e-02 -9.90010649e-02\\n-3.49942714e-01 2.12433636e-02 -1.86857596e-01 -1.93448663e-01\\n1.74762264e-01 1.99333534e-01 1.86368059e-02 2.54788965e-01\\n1.50162444e-01 -1.21618822e-01 -1.18164957e-01 3.06661755e-01\\n-8.38257372e-02 -6.72026038e-01 2.46227354e-01 -2.89916843e-02\\n2.66872913e-01 2.66664326e-01 -4.51344132e-01 -1.73367262e-02\\n-2.80026585e-01 -2.50998974e-01 8.89280215e-02 -3.56341481e-01\\n-5.94833270e-02 2.97525436e-01 1.24153361e-01 -9.61018577e-02\\n9.65004861e-02 -3.26996267e-01 1.43701239e-02 -4.41497594e-01\\n8.57499391e-02 -5.87770879e-01 1.11087067e-02 -1.67933479e-01\\n7.76146054e-01 -4.05393720e-01 3.07848398e-02 1.30273372e-01\\n1.00030296e-01 2.50005275e-01 4.75976914e-02 -2.75536440e-02\\n-2.63364404e-01 -3.63615125e-01 -4.76867668e-02 -2.40496412e-01\\n5.13928890e-01 4.85458016e-01 -2.06249937e-01 6.19305037e-02\\n1.72705695e-01 -3.29640627e-01 -5.07084548e-01 -2.68978685e-01\\n-2.32588470e-01 -2.16017082e-01 -6.37931287e-01 -4.84856725e-01\\n-1.31795168e-01 -9.87995788e-02 -1.63614437e-01 6.49480581e-01\\n-2.68594474e-01 -3.20474416e-01 -4.77039777e-02 -5.23691773e-01\\n1.64337054e-01 -2.48191327e-01 1.27129167e-01 -1.91941082e-01\\n-2.64397830e-01 -4.88260150e-01 2.23465860e-02 -2.36735702e-03\\n-1.11003906e-01 -1.45433888e-01 4.82440135e-03 -2.79917747e-01\\n-3.69830012e-01 -5.28301001e-01 3.94007176e-01 1.53065205e-01\\n3.74419272e-01 1.69714421e-01 2.34437823e-01 1.02108106e-01\\n2.52446979e-01 -1.65792555e-01 3.10008768e-02 -3.82771164e-01\\n1.42912179e-01 1.09709008e-03 6.10804498e-01 -2.29342028e-01\\n1.50328115e-01 1.45601466e-01 -1.68598771e-01 -2.07371954e-02\\n3.42909783e-01 6.26643598e-02 8.41468722e-02 -1.82631075e-01\\n3.20092678e-01 -4.23888743e-01 -1.54926941e-01 1.58292919e-01\\n-4.73851152e-03 5.73954642e-01 -4.60129092e-03 -3.93465519e-01\\n-2.09658086e-01 4.13632423e-01 -2.46579535e-02 -1.67109922e-01\\n-1.99939683e-01 1.60442561e-01 -2.62140095e-01 1.86097726e-01\\n-4.25574519e-02 -1.94411874e-01 -3.34699184e-01 -1.41411692e-01\\n-9.03424323e-02 2.73254693e-01 2.99515814e-01 1.53691620e-01\\n-4.48876098e-02 -3.81153733e-01 -1.52592167e-01 7.96307102e-02\\n3.03573072e-01 3.83774519e-01 8.97634923e-02 -2.53035575e-01\\n-3.86298336e-02 2.58262277e-01 -1.69947296e-01 1.72767118e-01\\n-2.09663615e-01 1.81314908e-02 -5.26860476e-01 -2.88891226e-01\\n-1.26227543e-01 -3.33087802e-01 1.24050312e-01 3.58696729e-01\\n1.40719503e-01 1.88418925e-02 7.50028268e-02 -4.36043829e-01\\n3.87669742e-01 9.33569819e-02 2.14441881e-01 2.08596408e-01\\n-6.02947827e-03 5.44767737e-01 -5.13728820e-02 -5.89922443e-02\\n-1.58588693e-01 -2.42266562e-02 -2.30279207e-01 -1.47303686e-01\\n-1.54793113e-02 -4.47216570e-01 -1.50253311e-01 4.47553694e-01\\n7.76415542e-02 -3.25555980e-01 -2.08210409e-01 2.25479960e-01\\n2.58214884e-02 -2.12774947e-01 -2.40443587e-01 1.96861088e-01\\n2.23486498e-01 1.35469928e-01 3.04366291e-01 -4.62919235e-01\\n-8.35931078e-02 3.00603639e-02 -1.96293905e-01 5.45302272e-01\\n1.34474903e-01 1.69315279e-01 -1.61481097e-01 -2.26466194e-01\\n4.37355399e-01 -2.03286231e-01 -6.57850131e-02 2.33856831e-02\\n1.06682569e-01 -1.11521319e-01 -3.49828750e-01 5.52670844e-02\\n-5.65088578e-02 -2.70249337e-01 6.94669709e-02 4.74213157e-03\\n1.05160117e-01 4.85265255e-02 -5.60092211e-01 -2.81867564e-01\\n-2.95326650e-01 -1.25853807e-01 8.79566669e-02 -4.27554995e-01\\n8.79403353e-02 -9.02630463e-02 -6.39229536e-01 3.32679212e-01\\n-2.11237013e-01 -1.18213251e-01 1.75968915e-01 3.87088023e-02\\n-4.12068099e-01 -1.64926305e-01 1.42290413e-01 3.00444782e-01\\n-2.47365698e-01 -1.97585940e-01 -4.48082350e-02 -9.85156655e-01\\n1.39615819e-01 -4.13161851e-02 -7.39687085e-02 2.45203048e-01\\n-7.69408345e-02 -7.33268499e-01 1.25889406e-01 -3.64666820e-01\\n-6.76216930e-02 -6.41948031e-03 -1.50699005e-01 -5.01313984e-01\\n1.13210909e-01 -1.70278847e-02 -2.16318071e-01 4.94197339e-01\\n-3.73672336e-01 2.97962636e-01 -8.10647085e-02 8.12380537e-02\\n6.98016509e-02 -3.23110044e-01 1.87229127e-01 -3.42388660e-01\\n-4.26362872e-01 -1.54664084e-01 -2.97529280e-01 -2.75209755e-01\\n-1.16788363e-02 -3.35932612e-01 -2.44856432e-01 1.28172338e-01\\n4.14402068e-01 8.37660059e-02 -1.10845692e-01 -1.61402941e-01\\n1.37393013e-01 -4.63932842e-01 1.89728569e-02 -1.95594743e-01\\n-7.16201738e-02 -1.77967533e-01 1.21252045e-01 5.96221201e-02\\n7.49127641e-02 -3.83069605e-01 4.60307598e-01 -3.08368385e-01\\n-4.09402162e-01 -5.54539263e-02 8.25899094e-02 -7.30063170e-02\\n3.73752505e-01 -5.27427912e-01 -9.53287259e-02 2.53553867e-01\\n8.95565450e-02 4.90040965e-02 1.45704359e-01 -1.09710388e-01\\n-1.32416531e-01 3.32815111e-01 -4.25824970e-01 1.89764500e-01\\n8.64145935e-01 1.31961837e-01 1.53689817e-01 1.81878939e-01\\n2.13383749e-01 2.90007263e-01 4.89651352e-01 3.65276486e-02\\n-1.13949902e-01 3.58917564e-01 5.82671277e-02 -4.99208272e-01\\n-6.46283180e-02 -7.04978481e-02 -2.65846848e-01 -4.21163619e-01\\n5.73399127e-01 4.99142677e-01 -2.68035978e-01 -2.08846241e-01\\n-1.38075918e-01 -8.09096247e-02 2.34304592e-01 -8.25008899e-02\\n6.79305987e-03 -1.17978409e-01 5.43559849e-01 -1.11066857e-02\\n2.57869542e-01 5.90674579e-01 -2.20843449e-01 -3.89542550e-01\\n-1.36682928e-01 1.22545168e-01 4.86585572e-02 5.18713832e-01\\n-1.89380556e-01 2.76773602e-01 -2.64079999e-02 1.20500043e-01\\n-1.42428353e-01 1.01841144e-01 2.35280812e-01 3.36247310e-02\\n1.92598119e-01 7.48084560e-02 2.56457388e-01 4.77919519e-01\\n3.16520274e-01 4.78911072e-01 3.53773743e-01 1.71004906e-02\\n3.77350420e-01 6.31164432e-01 3.59651387e-01 2.35680759e-01\\n-1.11265063e-01 5.35906218e-02 3.26568447e-02 -8.02013129e-02\\n3.66984695e-01 3.24954271e-01 1.58921152e-01 9.29159880e-01\\n4.10655946e-01 2.79419482e-01 7.83787429e-01 -6.16033554e-01\\n-4.08982426e-01 1.28367066e-01 4.73427802e-01 -3.94076914e-01\\n-1.53975725e-01 9.97934118e-02 -2.67411977e-01 1.06774047e-01\\n-5.25260270e-01 -1.96036577e-01 -5.87552227e-02 4.93013710e-02\\n5.79093210e-02 -2.38608196e-02 -2.39395544e-01 5.57023771e-02\\n-1.70425415e-01 -1.44715697e-01 -4.81284797e-01 -6.27614334e-02\\n-1.92634031e-01 -1.01945490e-01 -9.18012187e-02 -1.92142069e-01\\n-1.12601012e-01 -3.46467227e-01 -1.49029762e-01 -1.72512997e-02\\n3.50676805e-01 -2.07750034e-02 6.39625778e-03 -1.84406146e-01\\n2.12827221e-01 3.57400656e-01 5.73160112e-01 -4.71568927e-02\\n6.14709333e-02 -2.17457592e-01 -2.00597003e-01 8.66437182e-02\\n1.16189495e-01 2.56672446e-02 5.00885732e-02 4.15923715e-01\\n-2.90545017e-01 -3.98523286e-02 8.89121965e-02 3.66499841e-01\\n-4.37477410e-01 -5.54743409e-02 -1.43565804e-01 2.50385910e-01\\n1.18160158e-01 2.05749154e-01 -2.73230851e-01 2.23534301e-01\\n-1.76171213e-01 -4.98140484e-01 3.76931012e-01 -1.86177120e-01\\n-5.55484071e-02 1.13522485e-01 1.48661166e-01 1.06151067e-01\\n-2.98583746e-01 -1.50560280e-02 -7.38669261e-02 2.43403733e-01\\n1.17248699e-01 3.90392631e-01 -2.88708091e-01 -2.08459586e-01\\n-1.98375627e-01 1.91929340e-01 -1.61302656e-01 9.50233117e-02\\n-4.86731194e-02 4.19884473e-01 5.19586727e-02 7.03756213e-02\\n3.32891434e-01 3.86182740e-02 -2.57498175e-01 -2.73904592e-01\\n-1.58494756e-01 -2.86519676e-01 4.40173931e-02 2.00525895e-02\\n2.43188187e-01 -4.20273751e-01 -1.18139595e-01 -2.74821341e-01\\n-1.39369920e-01 -3.49531591e-01 -3.17811519e-02 -6.11166731e-02]]',\n", + " 'job_description': 'About our client Our Client is a growing Swiss consulting and technology firm with more than 20 employees. He primarily serves banks, insurers, investment firms and e-commerce companies. Both global and local players belong to his clients. Our Client offers products and services in quantitative finance, predictive analytics, machine learning, software engineering and business consulting. Your responsibilities In this role, you will primarily be working with his clients but also with his internal development team and contribute to the design and implementation of the next generation of financial industry applications. You will work in a challenging and varying environment with both national as well as international clients. Your profile Master or Bachelor in computer science or electrical engineering Multiple years of experience in C#/.Net development including Asp.Net and Entity Framework Solid knowledge in JavaScript including state of the art frameworks like AngularJS Experience in SQL, C/C++, Python and Java is a plus Broad knowledge of software development processes, principles and practices (like Scrum, Kanban, extreme programming, SOLID, TDD, continuous integration etc.) Interested in new technologies and methods and able to incorporate them into projects and products Team player with a reliable and customer-oriented working attitude with the ability to understand and approach complex problems Fluent in English, German is an advantage Your chance Challenging and interesting projects in the fintech domain Work with new technologies Work within an interdisciplinary team of experts Modern and flexible collaboration methods and a flat hierarchy Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung: JAVA Entwicklung Scrum (Methode) JavaScript C# / C++ / C .NET Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1140',\n", + " 'soft_skills': '[\"Collaboration\", \"Complex Problem Solving\", \"Reliability\", \"Consulting\"]',\n", + " 'hard_skills': '[\"ASP.NET\", \"Test-Driven Development (TDD)\", \"Computer Science\", \"Machine Learning\", \"Continuous Integration\", \"Industrialization\", \"Python (Programming Language)\", \"Scrum (Software Development)\", \"Entity Framework\", \"Software Engineering\", \"Investments\", \"C (Programming Language)\", \"Finance\", \"E-Commerce\", \"Electrical Engineering\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Predictive Analytics\", \"Banking\", \"Software Development\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Extreme Programming\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Italian', 'Italian', 'Ukrainian']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'digital humanities analyst in the data analytics center 80 - 100%',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.97839725e-01 2.03282148e-01 4.57758784e-01 2.31721736e-02\\n4.41922903e-01 -9.44348425e-02 -1.66357920e-01 4.15524244e-01\\n-9.94899422e-02 -3.47704291e-01 -1.57185301e-01 -3.31334502e-01\\n-3.76208350e-02 1.60476625e-01 1.13304973e-01 4.86900628e-01\\n3.78952086e-01 -6.94307834e-02 -1.48550749e-01 1.87048733e-01\\n1.51681542e-01 3.16349603e-03 -1.36451721e-02 7.51234889e-01\\n4.72653866e-01 3.20746601e-02 -4.69502099e-02 1.69557393e-01\\n-1.78675085e-01 -1.91202790e-01 5.62506318e-01 8.57219845e-02\\n-1.42072380e-01 -3.00412118e-01 9.24827978e-02 3.44371021e-01\\n-2.00636104e-01 -2.70967126e-01 2.29864903e-02 7.97267854e-02\\n-4.41040158e-01 -1.91069126e-01 -2.37965494e-01 2.27542371e-02\\n-3.50309908e-01 -4.29361343e-01 1.42631605e-01 9.71182361e-02\\n1.61603779e-01 5.10827824e-02 -5.88668346e-01 2.70580173e-01\\n-1.65856197e-01 -2.12274373e-01 2.53023714e-01 6.43492818e-01\\n-2.38953047e-02 -3.95057529e-01 -4.59260553e-01 -3.30381960e-01\\n-1.72343329e-02 -1.51158180e-02 1.06530204e-01 -4.06652510e-01\\n5.30109048e-01 1.37771696e-01 -8.48935172e-02 3.60666335e-01\\n-8.70414495e-01 -2.31998622e-01 -2.49640450e-01 1.06247917e-01\\n-4.01315272e-01 1.38170635e-02 -3.49981844e-01 -3.15011561e-01\\n-9.77272540e-02 3.48676234e-01 -4.56297323e-02 8.48935470e-02\\n-1.50769114e-01 3.83265853e-01 -1.34776369e-01 2.97508121e-01\\n1.75920248e-01 3.20248246e-01 2.26851523e-01 2.07420662e-01\\n-4.63456452e-01 3.17057639e-01 3.31210680e-02 -2.94900149e-01\\n2.09270269e-01 2.40344614e-01 5.13346672e-01 4.71914336e-02\\n2.72691995e-01 3.33840549e-02 -2.88106024e-01 3.16454500e-01\\n2.04042375e-01 -3.42801392e-01 9.63281319e-02 -3.58792134e-02\\n-7.06714764e-02 7.60663599e-02 -1.05673838e-02 4.53561991e-02\\n-6.09169602e-01 3.75595182e-01 2.67908350e-03 -1.58787653e-01\\n-8.79743099e-02 -5.78828990e-01 -1.18864961e-02 2.12201148e-01\\n1.33984298e-01 1.17273308e-01 -1.67802535e-02 2.41522282e-01\\n1.79568887e-01 -1.06115803e-01 1.65516302e-01 8.07570398e-01\\n-1.93574458e-01 6.93967938e-02 -8.77811909e-02 3.69679689e-01\\n2.85553392e-02 -4.23375010e-01 3.72173250e-01 1.66696280e-01\\n1.47536486e-01 -1.60192505e-01 -2.21737653e-01 2.10768580e-01\\n-1.02621108e-01 -2.44725764e-01 -4.07228589e-01 3.52735728e-01\\n-6.39251545e-02 -5.11123359e-01 5.85763335e-01 -1.58788607e-01\\n1.61477983e-01 -1.53014019e-01 -2.32108757e-02 -4.14367877e-02\\n3.04523744e-02 2.02035785e-01 1.03373587e-01 6.25162572e-02\\n-3.70641440e-01 -1.96546465e-01 -1.76214248e-01 1.44554630e-01\\n-3.94253433e-01 3.46107125e-01 -2.77639516e-02 -1.91245992e-02\\n2.88132370e-01 -1.27225414e-01 -4.13404524e-01 1.45572305e-01\\n-1.35641754e-01 -1.58740088e-01 -3.58848982e-02 3.75430703e-01\\n-2.79190332e-01 3.02087963e-01 -6.62438720e-02 -3.63020629e-01\\n5.06644845e-01 -2.99692247e-02 1.74868926e-01 -6.30716011e-02\\n2.63867646e-01 -5.88055234e-03 2.18989938e-01 9.86774415e-02\\n-8.50338936e-01 3.49346042e-01 -1.07766554e-01 -2.80362099e-01\\n5.06685451e-02 -1.97396465e-02 3.30034435e-01 -3.21426153e-01\\n5.89419007e-02 -6.42187297e-02 -2.27274507e-01 -2.69480586e-01\\n-3.77991408e-01 -1.29038040e-02 4.27148968e-01 -3.37305993e-01\\n-7.86660388e-02 1.96485281e-01 -6.25683784e-01 -8.53458270e-02\\n1.53348893e-02 4.42641079e-02 2.45085448e-01 1.49424195e-01\\n-3.47394794e-02 -6.01169229e-01 -7.69234523e-02 -4.36854452e-01\\n-2.34692797e-01 1.56718343e-01 -3.78010511e-01 2.32460007e-01\\n8.45240131e-02 3.04279216e-02 -5.60140125e-02 9.41180214e-02\\n-2.59714723e-01 1.28728122e-01 2.52971351e-01 -1.75122824e-02\\n4.61306810e-01 1.41035855e-01 -2.95259178e-01 5.48637867e-01\\n-4.71854582e-02 6.19645715e-01 1.29855767e-01 -6.28013551e-01\\n6.59658074e-01 5.05762875e-01 4.68987972e-02 -3.25339139e-01\\n7.68128514e-01 -2.83223391e-01 -2.92918384e-01 1.65608674e-01\\n-5.14964402e-01 -2.23803148e-01 3.06720376e-01 -3.42530459e-01\\n-1.45377010e-01 6.38197184e-01 7.88412839e-02 1.94863975e-01\\n2.85508573e-01 -3.30855370e-01 -1.64832637e-01 2.42636949e-01\\n-2.09254950e-01 -4.35726702e-01 -5.16793966e-01 -7.59917498e-03\\n-2.55701900e-01 -4.85330224e-01 -2.78886646e-01 -2.91416705e-01\\n-6.89049289e-02 -2.69286692e-01 -6.35428168e-03 2.38189474e-01\\n2.82440722e-01 1.34248823e-01 -5.63910529e-02 4.12518159e-03\\n-1.03016064e-01 -4.85689759e-01 -1.79713871e-02 -9.52350348e-02\\n2.86369920e-01 1.26579016e-01 3.43163982e-02 -7.90149942e-02\\n1.37211233e-01 5.73075652e-01 -5.84195018e-01 -3.34056079e-01\\n1.84173137e-01 8.63061473e-02 -1.74994320e-01 -1.79357827e-01\\n1.65925980e-01 2.14681625e-01 -4.89294350e-01 2.36191656e-02\\n-2.18533874e-01 8.47693458e-02 2.58045703e-01 -1.18727222e-01\\n2.47671790e-02 -2.97602504e-01 -1.08112559e-01 2.34762341e-01\\n-3.55729580e-01 -3.31424534e-01 4.28193152e-01 8.79608840e-02\\n1.65552586e-01 4.14605364e-02 1.05902284e-01 6.98109344e-03\\n-4.64558959e-01 -3.65258187e-01 1.76834911e-01 1.87703073e-01\\n8.93373862e-02 2.25004360e-01 -3.85753438e-02 -4.29801345e-01\\n-2.97006321e+00 -1.20514147e-02 1.08839050e-02 9.29999352e-03\\n1.95052743e-01 -1.15004204e-01 4.16815430e-02 -1.23449035e-01\\n-3.80567968e-01 -5.01050539e-02 -2.71044731e-01 -3.92933011e-01\\n4.97401133e-02 3.35161388e-01 1.87319934e-01 1.47584677e-01\\n3.30383740e-02 -4.03107345e-01 3.47363278e-02 4.30083454e-01\\n-2.11297572e-01 -7.50987291e-01 9.93367136e-02 -3.35091241e-02\\n2.69419491e-01 3.66537452e-01 -4.76413131e-01 -9.96919796e-02\\n-3.81115437e-01 -3.29553992e-01 3.04191947e-01 -3.54013771e-01\\n-4.56665680e-02 4.89190996e-01 3.19775879e-01 7.09388778e-02\\n1.10126115e-01 -2.98029125e-01 -2.25445583e-01 -4.65501130e-01\\n1.21632442e-01 -4.97096360e-01 2.35772766e-02 -1.15157112e-01\\n7.51887083e-01 -2.76041567e-01 1.92009658e-01 1.00343421e-01\\n1.14336535e-01 1.37572050e-01 -4.24213707e-04 8.32470208e-02\\n-2.44320378e-01 -2.55055130e-01 -1.12340942e-01 -2.63278484e-01\\n5.07935882e-01 4.91459727e-01 -2.08212122e-01 -7.92953223e-02\\n2.09508955e-01 -2.62773871e-01 -4.63757157e-01 -3.95969480e-01\\n-2.78754771e-01 -1.33341134e-01 -6.45274639e-01 -4.01768029e-01\\n4.63470593e-02 -1.02489501e-01 6.15675114e-02 6.19157553e-01\\n-3.90587091e-01 -2.04787642e-01 -8.94299969e-02 -6.33294821e-01\\n3.31500888e-01 -2.90391326e-01 3.46274376e-02 -2.00247139e-01\\n-1.11889683e-01 -6.12142563e-01 4.56473976e-02 4.32971083e-02\\n1.30561506e-03 -3.03783089e-01 1.63931012e-01 -2.85740286e-01\\n-3.44258308e-01 -5.61016023e-01 3.38302851e-01 1.03064612e-01\\n2.96363562e-01 2.52782196e-01 7.81585127e-02 -1.79427210e-03\\n3.46496791e-01 4.57926840e-02 -1.67936683e-02 -3.46176982e-01\\n2.94862002e-01 -1.90979615e-02 3.09889853e-01 -2.16374382e-01\\n-1.02507882e-01 9.74719971e-03 -2.48431191e-01 -4.01569009e-02\\n2.88809747e-01 5.31984903e-02 6.08766824e-02 -2.22539574e-01\\n3.19650590e-01 -4.34009731e-01 6.08789064e-02 1.92614824e-01\\n-1.72492117e-03 6.05186820e-01 -5.86025305e-02 -2.38766223e-01\\n-8.57798755e-02 4.80718851e-01 -1.72797963e-03 4.21107635e-02\\n2.18078196e-02 1.07435077e-01 -2.88552433e-01 1.06772713e-01\\n-4.23813909e-02 -2.04617038e-01 -3.17730963e-01 -1.22531995e-01\\n-1.82051063e-01 3.97886217e-01 3.53840470e-01 1.88222259e-01\\n-2.31014550e-01 -4.34725106e-01 3.91736105e-02 2.57847488e-01\\n4.10631508e-01 3.77911627e-01 1.38896987e-01 -2.27474421e-01\\n1.69252828e-01 3.08361143e-01 -9.06293243e-02 2.65904546e-01\\n-3.24394882e-01 1.24399081e-01 -4.95665908e-01 -2.86723018e-01\\n-2.84621626e-01 -1.46148488e-01 3.25219899e-01 2.96007633e-01\\n1.51401579e-01 -7.36839846e-02 1.50143117e-01 -2.72507995e-01\\n2.48669773e-01 1.56053245e-01 2.26447463e-01 5.85983917e-02\\n-7.12468475e-02 5.67989707e-01 -1.46982223e-01 -1.07785322e-01\\n-1.09254107e-01 2.85234638e-02 -2.09108412e-01 -2.65359759e-01\\n6.61356226e-02 -4.97383118e-01 -2.00035959e-01 2.67794907e-01\\n7.90464580e-02 -1.37982711e-01 -1.29964396e-01 2.09096849e-01\\n5.47843799e-02 -3.50601554e-01 -2.40064442e-01 8.10104087e-02\\n4.01892036e-01 2.74959773e-01 2.22558677e-01 -5.03484249e-01\\n-2.37021614e-02 9.08606946e-02 6.02189600e-02 3.52470994e-01\\n5.49344048e-02 7.51139000e-02 -3.55250895e-01 -3.55526865e-01\\n3.26167643e-01 -3.39047074e-01 -8.37545022e-02 1.24669380e-01\\n8.31517801e-02 -2.45652385e-02 -2.89011329e-01 6.34702668e-02\\n-9.12078246e-02 -2.74305522e-01 -1.79037042e-02 4.21383530e-02\\n1.22272059e-01 2.33907122e-02 -6.98000610e-01 -1.94172323e-01\\n-2.31136940e-02 1.00494072e-01 6.33256957e-02 -4.53127801e-01\\n4.15804982e-02 -2.88301051e-01 -5.83226681e-01 2.67912447e-01\\n-1.47577584e-01 -1.06480390e-01 2.92169333e-01 -7.06374571e-02\\n-2.66304642e-01 -1.00740433e-01 1.69492215e-01 2.52557456e-01\\n-3.12819511e-01 -2.52103835e-01 5.99954724e-02 -9.74468291e-01\\n1.88507199e-01 -6.37885034e-02 -1.42693073e-01 -2.11588070e-02\\n1.73460022e-02 -6.16057158e-01 -9.71931592e-03 -3.99431735e-01\\n-3.52068767e-02 -5.50746992e-02 -2.31360286e-01 -3.54470968e-01\\n1.15608722e-01 -2.17495188e-02 -1.70105204e-01 5.36921144e-01\\n-3.46183568e-01 2.38170534e-01 -1.35824218e-01 -6.71739876e-03\\n-3.61174420e-02 -3.22353214e-01 1.18808806e-01 -1.62800670e-01\\n-2.05654413e-01 -3.28690439e-01 -1.38044626e-01 -2.80113757e-01\\n2.28425823e-02 -4.32275832e-01 -8.15214291e-02 1.26637042e-01\\n1.91753894e-01 -1.13568947e-01 -1.50392279e-01 -1.97103977e-01\\n1.89986184e-01 -4.42584872e-01 3.86951678e-02 -1.25428721e-01\\n-1.10668197e-01 -1.76650211e-01 9.93330479e-02 8.28452632e-02\\n2.27986842e-01 -2.27211371e-01 4.87475753e-01 -4.71976250e-01\\n-4.36416417e-01 -7.29777291e-02 -9.58951190e-03 -6.45556599e-02\\n2.53315181e-01 -4.84042078e-01 -7.40155280e-02 4.82327461e-01\\n1.52576402e-01 -5.50091416e-02 2.55581558e-01 -2.45580062e-01\\n-6.58557564e-02 3.12620461e-01 -4.03221488e-01 3.67199257e-02\\n8.40993285e-01 2.49334246e-01 1.28654242e-01 2.11116701e-01\\n8.55128765e-02 2.45977521e-01 4.63480324e-01 -2.19783466e-02\\n1.00108795e-03 3.43899161e-01 2.94983804e-01 -3.82973969e-01\\n-1.46712571e-01 1.27218254e-02 2.64183134e-02 -2.89457232e-01\\n5.83864927e-01 3.41880977e-01 -4.08931345e-01 -2.33558834e-01\\n-1.10325903e-01 -4.61398996e-02 3.32327068e-01 -5.91730066e-02\\n-7.68257752e-02 -1.02152348e-01 3.74737024e-01 -1.73514709e-04\\n2.32624710e-01 5.60415983e-01 -1.49872899e-01 -1.67286992e-01\\n-1.12972878e-01 2.66451836e-01 1.33506246e-02 4.62470889e-01\\n-1.12591684e-01 4.56022799e-01 -9.65078026e-02 1.01750985e-01\\n-9.47275013e-02 1.08993556e-02 2.30811819e-01 2.88120527e-02\\n1.10992648e-01 2.54665822e-01 3.20932955e-01 4.77082431e-01\\n3.58495772e-01 3.85886133e-01 1.64076984e-01 -2.12940816e-02\\n5.00574470e-01 4.67228562e-01 4.85258818e-01 8.27486441e-02\\n2.20619645e-02 1.05808213e-01 1.84864968e-01 9.45418403e-02\\n2.90726751e-01 2.49961495e-01 5.75216813e-03 9.09219027e-01\\n3.20189476e-01 4.20216590e-01 7.15586066e-01 -5.92704356e-01\\n-3.65265489e-01 7.41613097e-03 5.75024009e-01 -4.33654487e-01\\n1.70254037e-02 1.16624199e-02 -1.25711083e-01 2.31449693e-01\\n-5.04573405e-01 -6.57651797e-02 4.19789404e-02 1.98177427e-01\\n7.18580335e-02 -1.25397533e-01 -2.05348402e-01 5.27934283e-02\\n-2.03777254e-01 -2.48889148e-01 -4.12840247e-01 -2.35743403e-01\\n-2.29828849e-01 -2.11751565e-01 -8.59645158e-02 9.57268570e-03\\n-3.86135951e-02 -2.32322127e-01 8.79256800e-03 -5.04584908e-02\\n5.10381937e-01 -1.78735495e-01 -1.85036361e-01 -3.51595916e-02\\n3.96167040e-01 3.03518444e-01 6.08836889e-01 -6.91532344e-02\\n4.28764187e-02 -2.10007817e-01 -2.05825523e-01 1.06701300e-01\\n4.66006137e-02 5.93298562e-02 6.52587339e-02 2.81524330e-01\\n-2.45961964e-01 -1.97541326e-01 1.19807705e-01 2.81259537e-01\\n-4.56618249e-01 4.15864494e-03 -8.30285996e-02 1.06568843e-01\\n1.21095665e-02 2.48734713e-01 -2.77378380e-01 1.58298045e-01\\n-1.31113082e-01 -5.88781178e-01 2.27823243e-01 -3.49737071e-02\\n-1.69621676e-01 -1.77738070e-02 3.01293552e-01 2.77971834e-01\\n-1.80337235e-01 -3.86687033e-02 -2.56299973e-04 8.00667554e-02\\n9.61814225e-02 3.62784535e-01 -2.19374090e-01 -3.29033434e-01\\n-3.78675222e-01 1.25232294e-01 -2.45594621e-01 -2.79767159e-02\\n-1.23073086e-01 4.38219607e-01 -5.11055067e-03 1.38456360e-01\\n3.60675097e-01 1.78231765e-02 -1.96221635e-01 -2.64424503e-01\\n-1.14319265e-01 -2.40162373e-01 -9.71437246e-02 -3.97335179e-02\\n2.05281019e-01 -3.24257672e-01 -2.83863068e-01 -3.70698571e-01\\n4.30823537e-04 -2.67759681e-01 9.73825529e-02 -1.76419690e-02]]',\n", + " 'job_description': \"80 - 100% The University of Basel is the oldest university in Switzerland, and ranked among the best universities in the world due to its research achievements. It counts over 12'000 students and 4'300 researchers in 7 faculties active in domains from humanities and social sciences to natural sciences. The University of Basel is promoting the growing area of Data Science by establishing a university-wide Data Analytics Center (DAC). The goal of the DAC is the advancement of research and the development of transdisciplinary synergies at the University of Basel and its partners. The service and support activities of the DAC will be provided by the Center for Scientific Computing (sciCORE) and the Digital Humanities Lab (DHLab) in collaboration with the Department of Mathematics and Computer Science (DMI). We invite applications for a data analysis support specialist (80-100%) to support quantitative research in humanities and social sciences. Your position The successful candidate will provide consulting and execute data analysis in research projects in various domains of humanities and social sciences. The primary mandate is to support research groups in need of data analysis by applying appropriate statistical, computational, and visualization methods, helping with semantic mappings, and making fundamental methodological advances. The position will involve hands-on data analysis and contributions to teaching (postgraduate courses). This position will be hosted at the DHLab. Your profile Our ideal candidate has a strong and diversified experience (postdoctoral level) in data analysis, in particular with applications involving analysis of large and complex data sets, using machine learning, deep learning, and other advanced statistics. Experience with various database concepts (eg SQL, NoSQL, SPARQL, GraphDB), semantic technologies, and knowledge of R and Python are required. Previous work with text, music, visual, survey, and other data, and familiarity with image analysis tools (eg ImageJ, Fiji) and at least one state of the art deep learning framework will be an asset. Given the important service aspect of the position, we expect our candidate to be flexible, proactive, capable of following several projects in parallel and to have a curiosity for humanities and social sciences in general. We offer you At the DHLab, you will be part of a highly efficient and motivated team of diverse data analysts, data infrastructure managers, and scholarly IT specialists. As a member of the DAC you will also join forces with support scientists at sciCORE and DMI. External collaborations and co-authorship in publications can be expected. We support our team members in their own training, networking and career development. You will have the opportunity to contribute in shaping the organization and development of this data analysis platform. The initial contract is for 2 years, with the possibility of renewal into a permanent contract. The University of Basel is an equal opportunity and family friendly employer committed to excellence through diversity. Application / Contact We look forward to receiving your complete application via the university's online application portal (see button below). Applications should include a curriculum vitae, list of publications indicating the five most significant papers, a link to your code repository or portfolio of data analysis projects, and names of three potential referees. Applications by email cannot be considered. For further information, please contact Prof. Gerhard Lauer gerhard.lauer@unibas.ch. The position will remain open until filled.\",\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Proactivity\", \"Friendliness\", \"Team Motivation\", \"Teaching\", \"Curiosity\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"NoSQL\", \"Tooling\", \"Surveys\", \"GraphDB\", \"Social Sciences\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"Natural Sciences\", \"Activism\", \"Python (Programming Language)\", \"SPARQL Protocol And RDF Query Language (SPARQL)\", \"Levelling\", \"Image Analysis\", \"Computational Statistics\", \"Executable\", \"Hosting\", \"Quantitative Research\", \"Data Science\", \"Spatial Data Infrastructures\", \"Scientific Computing\", \"Equalization\", \"R (Programming Language)\", \"Deep Learning\", \"Survey Data Analysis\", \"Semantic Technology\", \"Receivables\", \"Humanism\", \"Data Infrastructure\", \"Digital Humanities\", \"Semantics\", \"Logistics Support Activity\", \"Career Development\", \"Centering\", \"Mapping\", \"ImageJ\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '52',\n", + " 'job_title': 'junior software developer internship',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.45473623e-01 2.19922841e-01 3.95095408e-01 -8.58976841e-02\\n5.51735580e-01 -2.02397883e-01 -7.35367462e-03 5.00029922e-01\\n-1.52281597e-01 -1.19535170e-01 -1.25269637e-01 -2.06219703e-01\\n-3.24371420e-02 -2.62237042e-02 1.49601355e-01 3.16426218e-01\\n4.82166260e-01 5.57406731e-02 -2.89484859e-01 2.85835177e-01\\n9.59658772e-02 -1.58541277e-01 1.09840846e-02 6.16762042e-01\\n3.71483356e-01 3.89521345e-02 -5.42104766e-02 -7.87682310e-02\\n-2.99870104e-01 -1.31022558e-01 5.30076027e-01 3.96904498e-02\\n-1.54182715e-02 -2.32307419e-01 2.21703202e-01 6.51573688e-02\\n-4.44421172e-02 -3.38877067e-02 -1.95203587e-01 1.99599862e-01\\n-4.15456951e-01 -1.94820508e-01 9.43321958e-02 1.80630758e-01\\n-2.37349615e-01 -4.10376310e-01 2.75215745e-01 -1.24317423e-01\\n1.27079174e-01 1.30634263e-01 -4.77396876e-01 2.48626798e-01\\n-7.80712068e-02 -2.59655833e-01 3.82703841e-01 6.09389007e-01\\n-6.21135309e-02 -6.32945001e-01 -4.94459152e-01 -5.03488004e-01\\n1.41859800e-01 -5.00296317e-02 6.92079887e-02 -3.10608923e-01\\n2.81814247e-01 1.06972054e-01 6.34988472e-02 4.08018589e-01\\n-8.53355050e-01 -1.41253442e-01 -1.99521750e-01 1.27827227e-01\\n-2.35327348e-01 -1.28637239e-01 -2.89901704e-01 -1.46020539e-02\\n-4.02461849e-02 3.85970861e-01 -7.86702484e-02 1.10203102e-01\\n-1.18088454e-01 4.06786680e-01 -1.19136840e-01 4.12524074e-01\\n2.32734367e-01 2.22471863e-01 1.13852687e-01 2.04134822e-01\\n-2.62728989e-01 5.30867875e-01 1.18389353e-01 -3.25752825e-01\\n8.66854116e-02 1.89736113e-01 3.32002491e-01 7.25791082e-02\\n2.59054393e-01 1.63287669e-01 -3.93455297e-01 9.31832939e-02\\n1.52656317e-01 -3.05316985e-01 1.56553492e-01 1.01894297e-01\\n-7.74925202e-02 1.58645004e-01 -2.57805847e-02 1.22793607e-01\\n-3.99372756e-01 4.78572071e-01 2.29489118e-01 -2.61536270e-01\\n-6.53430074e-02 -6.29386663e-01 -9.89215374e-02 -3.66564021e-02\\n-1.07020393e-01 9.30459425e-02 1.22054107e-01 2.31111541e-01\\n2.79944867e-01 -2.46658698e-01 1.62418559e-01 7.94231951e-01\\n-8.29315260e-02 7.32356235e-02 -1.21068135e-01 3.64816099e-01\\n-2.01784577e-02 -2.27983460e-01 1.07244946e-01 2.09850580e-01\\n1.83243096e-01 -3.70334089e-02 -3.29061538e-01 3.32001060e-01\\n-2.13583335e-01 -3.62991035e-01 -2.46123090e-01 2.57668674e-01\\n-8.47623125e-03 -6.20967448e-01 5.99171996e-01 -5.08470796e-02\\n1.71031147e-01 -1.22229189e-01 -3.71582294e-03 -2.85885227e-03\\n-6.02269247e-02 2.71905333e-01 1.54449850e-01 5.59690259e-02\\n-2.21181631e-01 -2.00638339e-01 -2.49279261e-01 9.30614993e-02\\n-3.13635081e-01 4.16235253e-02 -1.51886299e-01 -1.30846292e-01\\n3.12026650e-01 5.16252145e-02 -2.85045058e-01 3.01462114e-01\\n2.68437937e-02 1.37891591e-01 -1.29512757e-01 3.69422823e-01\\n-3.86612773e-01 3.78587157e-01 -1.09693602e-01 -4.92961481e-02\\n6.62681937e-01 -5.58964070e-03 3.45770293e-03 -1.36714743e-03\\n8.77903700e-02 -3.74430716e-02 4.15127844e-01 1.42090647e-02\\n-6.65074527e-01 2.18379006e-01 5.93557321e-02 2.60124449e-02\\n2.85582215e-01 -1.43258989e-01 2.20245868e-01 -4.66184407e-01\\n2.68916897e-02 -1.84423387e-01 -3.68056208e-01 -2.35640734e-01\\n-2.82810897e-01 -6.77277595e-02 2.33487561e-01 -3.84310931e-01\\n5.17817847e-02 1.52055189e-01 -5.22442460e-01 -1.37363091e-01\\n1.94653317e-01 1.43800065e-01 8.01353976e-02 1.96248382e-01\\n-5.50853051e-02 -6.92686617e-01 1.88014284e-01 -4.37903315e-01\\n-1.72082201e-01 1.60971716e-01 -2.34674081e-01 2.28002980e-01\\n-1.62200615e-01 2.13294610e-01 3.05494084e-03 1.35160014e-01\\n-1.70606539e-01 -6.18163645e-02 1.21334381e-01 1.63340583e-01\\n2.27279961e-01 6.45199744e-03 -4.75051045e-01 5.05639911e-01\\n-2.41032824e-01 5.92652738e-01 3.97885917e-03 -7.68352866e-01\\n3.66328567e-01 4.27883416e-01 3.70802619e-02 -2.53934503e-01\\n7.48160958e-01 -4.13161248e-01 -1.56835496e-01 1.40595153e-01\\n-5.70764601e-01 -3.49678636e-01 1.58749789e-01 -3.99365425e-01\\n-3.17865402e-01 5.79256415e-01 1.11226074e-01 1.05091304e-01\\n2.74932951e-01 -1.35770738e-01 1.67993754e-02 7.77744427e-02\\n-2.37597600e-01 -1.84271887e-01 -5.27741194e-01 -1.13836981e-01\\n3.20441201e-02 -4.99126554e-01 -1.66044325e-01 -3.18567008e-01\\n-1.66296780e-01 -2.96055734e-01 -7.16652945e-02 5.04269190e-02\\n3.49717081e-01 1.67163357e-01 1.36661291e-01 9.67797637e-02\\n-2.39999846e-01 -5.70889950e-01 2.10115343e-01 1.03598259e-01\\n1.56007677e-01 2.52406627e-01 5.03194295e-02 -7.17848837e-02\\n-6.94592223e-02 6.78895473e-01 -3.37098598e-01 -2.99918324e-01\\n1.59823507e-01 7.49776289e-02 4.04712446e-02 -2.48348653e-01\\n1.06766306e-01 3.89184177e-01 -3.87663752e-01 1.38602734e-01\\n-2.48314053e-01 -1.64672490e-02 3.31007600e-01 7.64871538e-02\\n-1.22879997e-01 -2.32466772e-01 -1.28548086e-01 1.41489357e-01\\n-4.15204942e-01 -2.39170030e-01 5.57497323e-01 1.00887470e-01\\n1.57292590e-01 3.10246229e-01 3.94553602e-01 -1.07318595e-01\\n-1.92710996e-01 -3.69626492e-01 1.35761783e-01 8.85161757e-02\\n1.43931657e-01 6.97454810e-02 -9.40581188e-02 -5.88764906e-01\\n-2.61776710e+00 -3.70270498e-02 1.54413387e-01 -3.08222562e-01\\n2.22388059e-01 -8.61221626e-02 -1.68882310e-01 -7.46942833e-02\\n-5.02890408e-01 7.83290640e-02 -9.78340954e-02 -2.75557995e-01\\n1.76349327e-01 3.71665418e-01 1.93544462e-01 9.65916663e-02\\n1.15380600e-01 -2.84991413e-01 -1.43430429e-02 3.59965742e-01\\n-1.51247576e-01 -6.32064342e-01 1.47848114e-01 4.74647656e-02\\n4.74401683e-01 4.91123945e-01 -5.39658964e-01 -2.43761733e-01\\n-1.52173072e-01 -2.56942779e-01 1.61740094e-01 -2.92044282e-01\\n-4.96272147e-02 4.84879673e-01 1.21359810e-01 4.54459414e-02\\n3.41642387e-02 -3.72570783e-01 7.99332559e-03 -2.69092530e-01\\n2.22852696e-02 -7.21908152e-01 -1.36210471e-01 -8.45591500e-02\\n8.16650748e-01 -2.96223730e-01 1.57203883e-01 -9.54588503e-02\\n1.26440257e-01 1.74636230e-01 8.94863717e-03 1.92048252e-02\\n-4.01789278e-01 -1.95247695e-01 -5.05155604e-03 3.23557369e-02\\n4.60078239e-01 4.78760779e-01 -3.04901659e-01 -3.00131459e-02\\n8.12928677e-02 -4.24017549e-01 -4.02201265e-01 -2.28107348e-01\\n-2.17574567e-01 -3.73260498e-01 -6.86394215e-01 -4.28051353e-01\\n-8.42068053e-04 -1.90977529e-02 2.80474909e-02 5.86344838e-01\\n-2.83237129e-01 -2.33287498e-01 -8.16170499e-02 -6.24902487e-01\\n2.21570775e-01 -1.46495730e-01 4.69842777e-02 -2.03845352e-01\\n-1.18891701e-01 -5.26580393e-01 2.96362191e-02 -1.84443727e-01\\n3.16750854e-02 -1.08838528e-01 -7.95118883e-03 -6.29516914e-02\\n-4.15167511e-01 -6.67237759e-01 3.67964208e-01 1.17280856e-01\\n2.67264128e-01 6.96267784e-02 1.84422359e-01 7.76985753e-03\\n3.16727191e-01 -1.06417999e-01 1.56561643e-01 -4.11961645e-01\\n-4.54064319e-03 3.50753367e-02 5.33268094e-01 -1.34442493e-01\\n2.53753085e-02 1.58909738e-01 -2.84534991e-01 -6.49948865e-02\\n1.83838159e-01 3.11604869e-02 1.20041080e-01 -3.32923681e-01\\n3.78964812e-01 -2.08193779e-01 -1.34031609e-01 -3.84025723e-02\\n7.95439854e-02 6.67521775e-01 -9.07117948e-02 -2.24580631e-01\\n-2.13326246e-01 4.56168592e-01 -1.12361178e-01 -1.46115884e-01\\n-2.14275673e-01 -2.15088353e-02 -1.04602940e-01 1.15005344e-01\\n3.29497643e-03 -1.11089461e-01 -1.78989664e-01 -1.31157324e-01\\n-1.16287135e-01 3.25007915e-01 1.54645443e-01 1.50567740e-01\\n-1.01972483e-01 -4.60030079e-01 -4.56119771e-04 2.91093320e-01\\n1.84487551e-01 3.56197119e-01 -2.82094330e-02 -3.12071234e-01\\n-2.80383360e-02 2.40914762e-01 6.59707654e-03 3.67216259e-01\\n-1.90381423e-01 1.51898801e-01 -6.77344382e-01 -2.78151125e-01\\n-1.73992589e-01 -3.61348301e-01 8.12298954e-02 3.76010925e-01\\n1.52181134e-01 -5.52453399e-02 1.63824514e-01 -5.86592138e-01\\n4.21698332e-01 3.86788137e-02 2.89200068e-01 -4.65883091e-02\\n-1.28184959e-01 4.76823449e-01 -3.10150534e-02 -4.38425131e-02\\n-2.43651316e-01 1.95553139e-01 -1.46640718e-01 -3.30681711e-01\\n1.89789012e-01 -4.15319085e-01 -2.33142838e-01 3.87686461e-01\\n8.60225409e-02 -2.28306726e-01 -1.93042859e-01 7.39180297e-02\\n3.75953177e-03 -4.54503089e-01 -2.52650738e-01 -7.54570439e-02\\n3.61787736e-01 1.26784205e-01 2.71633297e-01 -3.22847873e-01\\n8.42160285e-02 -8.58866274e-02 -8.21855739e-02 4.04488921e-01\\n3.69907655e-02 -6.22059144e-02 -3.12176198e-01 -1.59623578e-01\\n4.58450079e-01 -1.77133292e-01 -2.37016864e-02 1.18872933e-01\\n9.29111540e-02 -2.95646757e-01 -4.90285933e-01 -6.99271709e-02\\n8.66693556e-02 -5.21860123e-02 -3.77704613e-02 6.90912455e-02\\n7.78119341e-02 6.17326982e-02 -4.36556190e-01 -1.64108545e-01\\n-3.48309845e-01 -7.25517198e-02 7.01059550e-02 -4.57707703e-01\\n-1.65634096e-01 -6.01060577e-02 -4.67383236e-01 2.44101763e-01\\n-2.37860709e-01 2.27316972e-02 2.92285055e-01 -1.65588990e-01\\n-3.80428076e-01 -1.89400643e-01 9.47308093e-02 2.87066013e-01\\n-2.46226490e-01 -2.07789451e-01 -9.66834798e-02 -1.00555551e+00\\n2.02925876e-01 -1.30872637e-01 -4.98056374e-02 3.58184017e-02\\n-3.64202596e-02 -7.89154887e-01 2.68895179e-01 -4.10526931e-01\\n-1.03596546e-01 -2.84045357e-02 -1.72376692e-01 -3.78441185e-01\\n2.35497072e-01 -2.96965484e-02 -2.47622490e-01 2.40348652e-01\\n-3.28644991e-01 4.43502098e-01 1.64369512e-02 3.72146703e-02\\n-1.23621419e-01 -2.95922965e-01 2.03749095e-03 -4.54361647e-01\\n-2.46674791e-01 -1.00867443e-01 -3.12553525e-01 4.19228598e-02\\n-9.00717229e-02 -1.30740345e-01 -1.94600612e-01 7.42791146e-02\\n4.15088296e-01 1.21921368e-01 -7.93483406e-02 -1.43306211e-01\\n1.72423363e-01 -5.09902239e-01 1.69317350e-01 -3.27898473e-01\\n1.00524195e-01 -1.32626623e-01 2.60226458e-01 2.19739541e-01\\n1.35404274e-01 -4.91473883e-01 3.29101801e-01 -4.48009372e-01\\n-5.26750445e-01 1.43201500e-02 6.79285973e-02 -1.54193386e-01\\n4.65061665e-01 -5.41942716e-01 -1.84909865e-01 3.91988754e-01\\n-3.80467884e-02 -3.87774631e-02 2.29927927e-01 -8.31914991e-02\\n-1.54848412e-01 1.93777397e-01 -3.63993645e-01 2.78356988e-02\\n7.29109347e-01 2.97423631e-01 1.50550744e-02 2.45707139e-01\\n2.04123780e-01 3.12750310e-01 4.08034384e-01 1.01338901e-01\\n-5.38795581e-03 3.50028157e-01 -5.73848337e-02 -6.59256220e-01\\n5.85917477e-03 -5.09761833e-03 -3.33802193e-01 -3.10916871e-01\\n6.43007040e-01 3.93528640e-01 -4.00413543e-01 -3.07851851e-01\\n-2.00726002e-01 -2.13978842e-01 2.55529165e-01 3.70820202e-02\\n2.39879712e-01 4.26364318e-03 6.05877399e-01 1.43179610e-01\\n2.80882865e-01 6.50168717e-01 -1.66484520e-01 -3.05924505e-01\\n3.54904085e-02 3.28848094e-01 -3.73973995e-02 4.60030496e-01\\n-1.35907263e-01 2.84458667e-01 -9.23225358e-02 -3.37796248e-02\\n-9.76275653e-02 1.43223435e-01 1.78526103e-01 -3.26318368e-02\\n1.16038181e-01 7.29452744e-02 4.23307061e-01 4.27861929e-01\\n2.92726010e-01 3.76757383e-01 2.97999948e-01 3.12964395e-02\\n4.99812603e-01 4.65014637e-01 3.86114776e-01 1.27076000e-01\\n4.80362698e-02 1.34755716e-01 1.05135947e-01 7.07183555e-02\\n2.49690160e-01 3.30388665e-01 8.25779736e-02 9.25211728e-01\\n3.68591398e-01 2.69573301e-01 7.10277975e-01 -5.85745335e-01\\n-3.28817725e-01 -2.13221475e-01 5.07364154e-01 -3.62576783e-01\\n-5.21593206e-02 8.35919529e-02 -9.39361230e-02 3.43980849e-01\\n-3.31892371e-01 -2.30632693e-01 4.35365252e-02 2.30933771e-01\\n5.45152687e-02 2.59559005e-02 -1.37752265e-01 1.47144021e-02\\n-2.34334201e-01 -2.95307875e-01 -5.97996235e-01 -1.71406239e-01\\n-1.91932321e-01 -8.37542489e-02 -1.69033170e-01 -9.45577174e-02\\n-2.39471942e-01 -3.43974501e-01 -9.28418264e-02 -9.75252464e-02\\n3.05595368e-01 -2.03515068e-01 -4.90560047e-02 -1.77224323e-01\\n4.21410710e-01 1.90544441e-01 5.85261703e-01 -3.29012275e-02\\n6.19723536e-02 -4.69307840e-01 -2.07040191e-01 1.13210708e-01\\n7.64514282e-02 2.52238158e-02 4.38707955e-02 4.78126526e-01\\n-2.79441535e-01 -2.42833152e-01 4.90680570e-03 3.51825029e-01\\n-4.21927482e-01 -8.22668001e-02 3.52508128e-02 1.42494947e-01\\n5.55643328e-02 2.74579115e-02 -1.36973664e-01 -4.16733511e-02\\n-9.12409797e-02 -4.46850061e-01 2.21877247e-01 1.64352339e-02\\n-2.63824046e-01 2.75128007e-01 2.32905328e-01 1.85319960e-01\\n-1.28736332e-01 -9.35236067e-02 -1.17537715e-01 8.76640752e-02\\n-7.66385347e-03 3.47190261e-01 -1.64434120e-01 -4.21817601e-01\\n-2.38005117e-01 2.00991228e-01 -3.99697393e-01 9.29051936e-02\\n2.57381517e-02 2.95806766e-01 4.98581231e-02 -5.15647605e-02\\n4.65222955e-01 3.06350384e-02 -1.82640076e-01 -2.53989995e-01\\n-7.15851411e-02 -3.08803678e-01 -4.61579598e-02 -1.35998756e-01\\n1.36391968e-01 -2.77447462e-01 -1.13779701e-01 -3.12114954e-01\\n-1.25723988e-01 -2.47070983e-01 -1.69569999e-01 -1.25062257e-01]]',\n", + " 'job_description': 'We are an investment and trading firm with offices based in Zug, Zürich and Ziegelbrücke, Switzerland. We are looking for a Junior Software Developer Internship (f / m, 100%) who is motivated to learn in a small but growing team. This position is being offered either as a 6 to 12-month internship or as an entry level role for recent graduates. The successful candidate will work on projects involving futures and cryptocurrencies and gain exposure to financial markets trading. Your Responsibilities: • Developing an automated trading system with the Senior Portfolio Managers. • Building front end framework and GUI. • Managing short-term quantitative strategies and market risk issues. • Directing system testing and validation procedures. Your Profile: • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Effective communicator, fluency in English is a must. • Excellent at multi-tasking and working under pressure. • Highly motivated and interested to learn from experienced professionals. • An interest in finance and cryptocurrencies will be beneficial. Did we raise your interest? Please send your CV and cover letter. Requirements • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Fluency in English. • Excellent at multi-tasking and working under pressure.',\n", + " 'soft_skills': '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Market Risk\", \"Automation\", \"KM Programming Language\", \"Vue.js\", \"Notching\", \"Python (Programming Language)\", \"M (Programming Language)\", \"Levelling\", \"Financial Market\", \"Investments\", \"Business Economics\", \"Cryptocurrency\", \"Portfolio Management\", \"Finance\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Physics\", \"Computer Programming\", \"Validations\", \"Front End (Software Engineering)\", \"Software Development\", \"Political Sciences\", \"System Testing\"]',\n", + " 'languages': \"['English', 'Kikuyu', 'Panjabi', 'Pali']\"},\n", + " {'company_id': '19',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.57442186e-02 1.89378172e-01 4.58602995e-01 -1.45687848e-01\\n3.45443606e-01 -2.16841891e-01 8.32162946e-02 3.52371961e-01\\n1.24339201e-02 -4.67337012e-01 -4.36932482e-02 -2.53092408e-01\\n8.15873034e-03 1.78620026e-01 9.19062123e-02 3.34598005e-01\\n1.35245293e-01 6.92561716e-02 -1.29040137e-01 2.71780521e-01\\n9.42296386e-02 -1.08291984e-01 1.08184852e-01 6.58065796e-01\\n4.39737737e-01 -3.50390095e-03 8.25651959e-02 2.36601103e-02\\n-1.88826829e-01 -2.74464101e-01 5.30852914e-01 4.08361554e-02\\n-7.19722211e-02 -3.93924177e-01 1.58049494e-01 2.32869945e-02\\n-2.86376804e-01 -4.16797511e-02 -2.13953450e-01 9.69535857e-02\\n-5.73742211e-01 -1.87130108e-01 7.54973069e-02 -3.84808220e-02\\n-1.87633306e-01 -3.86527628e-01 1.59954488e-01 -1.31412759e-01\\n2.04590514e-01 2.34967042e-02 -5.04115880e-01 1.17434680e-01\\n-2.37346560e-01 -1.75174907e-01 3.21135372e-01 6.29935443e-01\\n-1.07809961e-01 -5.00485003e-01 -6.41662359e-01 -2.75313377e-01\\n2.45443076e-01 -1.71210006e-01 -7.27842301e-02 -2.52907455e-01\\n2.45358676e-01 5.86717995e-03 2.42415704e-02 3.97441804e-01\\n-7.66188264e-01 -9.66802761e-02 -2.71132886e-01 -7.53038973e-02\\n-2.11624309e-01 -2.15147629e-01 -2.74551660e-01 -5.57647413e-03\\n-1.80703193e-01 3.87804180e-01 1.91151038e-01 -2.06853375e-02\\n-1.49018973e-01 3.29754204e-01 -3.67794573e-01 4.48862791e-01\\n1.91973403e-01 1.90802887e-01 1.28035456e-01 3.02774906e-01\\n-3.27059388e-01 5.10012865e-01 2.04714894e-01 -3.37980658e-01\\n1.56661585e-01 7.07613304e-03 4.14200902e-01 6.77157044e-02\\n2.19367087e-01 6.60389513e-02 -1.26968578e-01 3.35014522e-01\\n3.14370960e-01 -2.32037961e-01 6.44790381e-02 -1.41857684e-01\\n8.80630016e-02 5.77951036e-02 2.61894111e-02 1.06465712e-01\\n-1.05310194e-01 3.55973035e-01 1.43131435e-01 -2.12869376e-01\\n-1.89661950e-01 -5.25319874e-01 -1.89525381e-01 -1.21642835e-01\\n3.37628461e-03 1.63508311e-01 1.51153460e-01 1.88049674e-01\\n2.13702902e-01 1.00741565e-01 7.73040652e-02 8.03940892e-01\\n-4.78993095e-02 4.55966499e-03 -3.72107208e-01 4.01805699e-01\\n-5.92889590e-03 -2.37159848e-01 3.18887442e-01 2.98571169e-01\\n-2.32265908e-02 -2.42290705e-01 -1.71685100e-01 3.49982142e-01\\n-3.67573500e-02 -2.24747822e-01 -2.64400572e-01 1.07550569e-01\\n4.39774804e-03 -3.49793196e-01 5.52819133e-01 3.12125832e-01\\n1.17431127e-01 6.35276511e-02 -2.14530956e-02 -2.11070105e-01\\n-1.95397601e-01 1.62346095e-01 -7.65882358e-02 8.91475454e-02\\n-7.25879595e-02 -2.44807556e-01 -2.70162940e-01 2.02972338e-01\\n-2.17410073e-01 1.95208877e-01 -1.24944247e-01 -8.28449875e-02\\n3.81945342e-01 1.78594775e-02 -2.25519925e-01 3.72184724e-01\\n3.40959318e-02 1.39145106e-01 -4.29430306e-02 2.48543113e-01\\n-1.61985934e-01 1.01750031e-01 -7.04445541e-02 -1.29612893e-01\\n5.85227370e-01 5.40453121e-02 2.15280756e-01 -4.69587334e-02\\n2.70395756e-01 8.50804383e-04 1.02759056e-01 7.77248293e-02\\n-6.19488299e-01 3.39358628e-01 -5.55838794e-02 -1.43092033e-02\\n1.46093503e-01 -1.61656946e-01 1.38867214e-01 -2.29362056e-01\\n1.68008003e-02 -7.87989646e-02 -4.11463499e-01 -2.18771070e-01\\n-1.25140309e-01 -1.06575660e-01 3.63091737e-01 -5.42125642e-01\\n-1.41909510e-01 2.78147519e-01 -5.09710848e-01 -5.86142242e-02\\n1.31657004e-01 2.13778183e-01 1.07512318e-01 1.01412848e-01\\n-2.88605869e-01 -4.09494311e-01 1.36799783e-01 -3.72825116e-01\\n-2.24919423e-01 1.21425360e-01 -2.36481696e-01 3.20779920e-01\\n1.80483922e-01 -6.72204494e-02 -1.46790504e-01 1.70296818e-01\\n-1.41987830e-01 -7.51632378e-02 9.93040875e-02 5.33701794e-04\\n2.95052499e-01 5.38034290e-02 -3.59236717e-01 3.52307439e-01\\n-8.59657377e-02 6.35529459e-01 -1.41941216e-02 -9.00925040e-01\\n5.04979610e-01 3.19723397e-01 1.39187276e-02 -3.71123821e-01\\n5.30409276e-01 -2.86310464e-01 9.11581442e-02 1.22200146e-01\\n-4.28514093e-01 -3.71057987e-01 1.31020680e-01 -1.15974046e-01\\n-1.84137508e-01 3.88696700e-01 -2.34523769e-02 1.78008988e-01\\n1.61042050e-01 -1.11734971e-01 -1.68423966e-01 -1.73990037e-02\\n-5.46026193e-02 -1.45172730e-01 -4.74860728e-01 -2.09798235e-02\\n-1.17428936e-01 -4.04468924e-01 -2.93307379e-02 -4.42003250e-01\\n-2.30420664e-01 -4.77646470e-01 -1.02652945e-01 1.89736173e-01\\n2.81514168e-01 1.13948278e-01 -3.21220122e-02 9.14221630e-02\\n-1.57583326e-01 -7.04185903e-01 4.72786278e-02 2.19780728e-01\\n3.34958822e-01 1.87255397e-01 1.04577176e-01 -1.11959754e-02\\n-1.83503442e-02 6.01614475e-01 -2.15519384e-01 -1.07419126e-01\\n1.23987228e-01 1.67821482e-01 1.59569293e-01 -8.35024044e-02\\n-3.11752819e-02 2.22432867e-01 -3.12341928e-01 -6.25094492e-03\\n5.03772534e-02 -1.00405335e-01 3.88597518e-01 9.08679888e-02\\n-4.27372426e-01 -1.29270718e-01 -6.59503564e-02 1.97064579e-01\\n-6.08596206e-01 -2.01407060e-01 7.48643100e-01 1.04797050e-01\\n8.83072615e-02 2.24123687e-01 2.17801899e-01 -1.43636227e-01\\n-1.52145267e-01 -6.77895546e-02 3.23389053e-01 6.21610247e-02\\n1.53736278e-01 1.14279561e-01 -7.33488649e-02 -5.74980557e-01\\n-3.55068779e+00 -1.64703622e-01 1.84271932e-01 -1.85034066e-01\\n1.80901453e-01 -1.00180998e-01 1.17739208e-01 -1.50927275e-01\\n-2.62816548e-01 -5.28686494e-02 -1.35489658e-01 -6.53107762e-02\\n2.06079051e-01 2.48377323e-01 1.13764636e-01 4.30373818e-01\\n1.17208853e-01 -1.57071665e-01 2.68973317e-02 3.14729065e-01\\n-2.97535866e-01 -5.22082031e-01 2.13651210e-01 -1.32526653e-02\\n1.66789129e-01 2.55288512e-01 -3.46194297e-01 -9.10048410e-02\\n-1.27016604e-01 -1.97351754e-01 1.33490548e-01 -2.54421264e-01\\n-1.37043707e-02 2.51917362e-01 1.35722086e-01 -9.21426639e-02\\n1.44268051e-01 -4.84136403e-01 -1.68320924e-01 -4.27092761e-01\\n1.11622274e-01 -6.38089001e-01 -5.79575561e-02 -1.19757831e-01\\n6.98781610e-01 -3.45104188e-01 1.13973171e-01 1.07796200e-01\\n1.01013489e-01 2.08540320e-01 1.13630064e-01 4.95656915e-02\\n-2.87700295e-01 -3.53833109e-01 -9.52672064e-02 2.40692031e-02\\n4.42098856e-01 5.33463299e-01 -2.35440180e-01 -2.54142210e-02\\n-1.15769421e-06 -2.84247547e-01 -5.17201722e-01 -2.51405776e-01\\n-2.10174441e-01 -1.69752970e-01 -6.15881979e-01 -3.97114992e-01\\n-7.88984746e-02 -2.63941288e-01 -2.23394036e-01 6.25844002e-01\\n-2.06623614e-01 -2.57064670e-01 -3.64080369e-02 -4.90673393e-01\\n2.85427868e-01 -1.97943866e-01 1.30878374e-01 -1.43519461e-01\\n-2.74407268e-01 -4.54920530e-01 2.32744161e-02 -3.33823962e-03\\n-1.06337711e-01 -2.36083239e-01 1.63593039e-01 -1.44239888e-01\\n-2.62382567e-01 -6.02244914e-01 3.21909577e-01 9.43948328e-02\\n2.24654660e-01 8.74131992e-02 2.99375296e-01 -1.30910967e-02\\n2.52074867e-01 -1.87841848e-01 -1.35526121e-01 -2.91167527e-01\\n1.19264625e-01 1.72656234e-02 3.94230008e-01 -2.45610863e-01\\n-3.27338614e-02 1.17445350e-01 -2.34751686e-01 -8.47606435e-02\\n1.63389355e-01 -3.95684056e-02 1.69124857e-01 -2.08538428e-01\\n2.82168567e-01 -9.27300900e-02 -2.28529289e-01 5.23281954e-02\\n6.12593256e-02 5.20939171e-01 -1.06351301e-02 -4.41916615e-01\\n-1.17495758e-02 4.38328713e-01 -8.81546959e-02 -1.43787414e-01\\n-2.93178886e-01 8.83530378e-02 -1.90289125e-01 2.24267989e-01\\n-2.91240178e-02 -5.06260805e-02 -3.16101491e-01 -2.98078388e-01\\n-1.07219346e-01 3.41463357e-01 2.44841889e-01 7.98254088e-02\\n5.73271327e-02 -3.68674308e-01 -2.06909375e-03 1.30784526e-01\\n5.05497456e-02 4.16423053e-01 1.82781354e-01 -8.88916925e-02\\n4.20207419e-02 3.35776687e-01 -2.04663292e-01 6.93471283e-02\\n-2.74276704e-01 7.25523606e-02 -5.83320141e-01 -2.98657089e-01\\n-2.15485603e-01 -4.18362111e-01 1.44552931e-01 1.88294783e-01\\n4.96755652e-02 -1.90061331e-02 1.12054683e-01 -4.96090174e-01\\n1.75016552e-01 8.65428224e-02 1.95412472e-01 1.35037586e-01\\n1.70118734e-02 6.25534058e-01 1.06636574e-02 -1.58718303e-01\\n-9.90718529e-02 7.04266131e-02 -3.55482191e-01 -2.00560391e-01\\n-7.14957295e-03 -4.81580049e-01 -3.54342349e-02 4.26313251e-01\\n3.70509215e-02 -2.31378958e-01 -1.70018539e-01 3.04721743e-01\\n-1.37174744e-02 -1.47132412e-01 -1.11989759e-01 9.45148170e-02\\n3.97196591e-01 9.56301689e-02 2.37273112e-01 -4.05986547e-01\\n-1.19029516e-02 5.14404997e-02 -1.19741522e-01 5.58856964e-01\\n2.29226977e-01 3.53131071e-02 -7.31827393e-02 -1.75493017e-01\\n3.19736302e-01 -2.61813253e-01 -1.53956590e-02 -2.99814809e-02\\n2.79348642e-01 -1.27128094e-01 -4.08747017e-01 1.69442773e-01\\n-3.21790352e-02 -1.47803798e-01 3.46264690e-02 1.82499349e-01\\n-3.89207713e-02 9.93467495e-02 -6.64985895e-01 -3.19091648e-01\\n-3.22563142e-01 9.05268826e-03 5.65712946e-03 -4.80576068e-01\\n-1.92757323e-02 -6.36041909e-02 -4.58779812e-01 3.48046005e-01\\n-7.58412182e-02 -6.75795376e-02 1.85382277e-01 9.40430313e-02\\n-2.76519358e-01 -4.20381427e-02 1.14045098e-01 2.48870060e-01\\n-2.24173099e-01 -1.84890062e-01 -3.76539603e-02 -9.95263577e-01\\n1.62934363e-01 1.49770444e-02 -2.04363242e-01 2.07640976e-01\\n-4.41218615e-02 -5.92069209e-01 1.42739028e-01 -3.37589234e-01\\n-2.61765927e-01 4.65812199e-02 -2.29904130e-01 -5.93661010e-01\\n8.68923776e-03 4.75779511e-02 -2.61916935e-01 4.32812899e-01\\n-4.37921315e-01 4.10880923e-01 -1.61196992e-01 6.48207441e-02\\n4.26573530e-02 -3.12212408e-01 8.73913169e-02 -4.55629021e-01\\n-4.13134485e-01 -1.83209226e-01 -3.19873929e-01 -1.79199800e-01\\n1.08958088e-01 -3.76982719e-01 -1.40612975e-01 3.17906663e-02\\n3.50609571e-01 1.21649176e-01 -7.01128691e-02 -3.23399097e-01\\n1.58750117e-02 -5.32752216e-01 1.14305951e-01 -9.10520405e-02\\n-1.80941436e-03 -1.31279498e-01 2.39057496e-01 1.12804748e-01\\n1.22529611e-01 -4.85555768e-01 3.65202576e-01 -3.43379617e-01\\n-2.96050042e-01 -7.89743960e-02 -5.31284325e-02 5.60663976e-02\\n3.44601572e-01 -4.29282725e-01 -4.91534024e-02 3.71201366e-01\\n1.26918122e-01 -8.86475742e-02 2.98863947e-01 -1.57297309e-02\\n-8.59000757e-02 2.79796511e-01 -3.88879031e-01 1.15396433e-01\\n6.70512319e-01 -7.57927671e-02 2.17453286e-01 2.01821133e-01\\n2.34108672e-01 2.73227662e-01 4.88065779e-01 2.38331705e-02\\n-1.37448862e-01 3.61839533e-01 3.96960452e-02 -5.11571527e-01\\n2.63351612e-02 5.05421944e-02 -2.23253846e-01 -2.73406237e-01\\n6.59672201e-01 4.68181789e-01 -4.63041395e-01 -1.42755613e-01\\n-1.42072663e-01 -2.25494310e-01 1.46025568e-01 -1.30116567e-01\\n2.34307088e-02 -7.29178563e-02 4.67162848e-01 -4.82024923e-02\\n1.25718415e-01 3.85010153e-01 -2.90009052e-01 -2.76701629e-01\\n-3.56341489e-02 1.55911893e-01 1.50719639e-02 5.17825067e-01\\n-2.04792798e-01 4.44046021e-01 7.86947377e-04 1.95356041e-01\\n-1.40811846e-01 5.07457228e-03 9.64626968e-02 1.08444966e-01\\n1.23171754e-01 -1.21941734e-02 4.27501470e-01 4.72140640e-01\\n3.59620154e-01 5.14673352e-01 3.17754984e-01 6.47062212e-02\\n4.17997748e-01 5.81712186e-01 4.58585739e-01 2.54909128e-01\\n-4.20142077e-02 2.78132018e-02 7.19104707e-02 5.38849868e-02\\n2.57421196e-01 3.44139099e-01 2.78885867e-02 7.73714185e-01\\n3.99364293e-01 2.87696034e-01 5.40668905e-01 -5.74597895e-01\\n-3.45262378e-01 1.61527824e-02 3.47008169e-01 -4.32356685e-01\\n2.75519472e-02 2.16022134e-01 -1.17366299e-01 1.85706183e-01\\n-4.60349798e-01 -2.14406520e-01 -1.44643962e-01 2.19187915e-01\\n-2.63861194e-02 -1.88618898e-01 -1.99324846e-01 7.89820403e-02\\n-1.90444171e-01 -1.17522910e-01 -4.87956494e-01 -3.54552385e-03\\n-1.89638913e-01 -3.02673072e-01 -1.80147767e-01 -3.55094261e-02\\n-2.01062590e-01 -2.92690456e-01 -2.29442716e-01 6.42129630e-02\\n3.24731708e-01 -1.75561741e-01 -3.83354835e-02 -1.96214318e-01\\n2.83486485e-01 1.28776968e-01 4.99122351e-01 3.21448259e-02\\n5.42231798e-02 -2.67710298e-01 -2.02247620e-01 6.71580732e-02\\n2.80395955e-01 1.35796130e-01 3.23181003e-02 3.95114034e-01\\n-2.29575202e-01 -1.63464442e-01 1.26224726e-01 3.90273929e-01\\n-4.83845234e-01 9.70266908e-02 -1.29094064e-01 1.67544350e-01\\n1.48680508e-01 3.06030422e-01 -2.15587735e-01 8.80230591e-02\\n-1.67847246e-01 -3.67088497e-01 3.34074646e-01 -1.53859198e-01\\n-1.14275441e-01 -2.80836690e-02 1.77481219e-01 2.28390440e-01\\n-2.56042242e-01 2.47418042e-02 5.21527138e-03 1.42531469e-01\\n-7.09108412e-02 2.67526418e-01 -3.03575188e-01 -2.74744451e-01\\n-2.75416255e-01 1.63753912e-01 -1.65979922e-01 2.96007007e-01\\n1.11757308e-01 3.08608264e-01 2.21313253e-01 -1.95499156e-02\\n3.77684683e-01 7.04156328e-03 -6.18286505e-02 -1.84935808e-01\\n-3.29066694e-01 -9.96560231e-02 -6.74964860e-02 -6.32238463e-02\\n1.85466900e-01 -4.43852276e-01 -8.46024007e-02 -6.99994415e-02\\n-2.12609187e-01 -3.41137022e-01 -2.60685924e-02 -8.48833621e-02]]',\n", + " 'job_description': 'About Us B3i is a growing and dynamic business operating in the global insurance market. We are at the forefront of bringing real innovation into the industry through Blockchain / DLT solutions which we believe will transform insurance. Our vision is simply to make insurance more relevant, accessible and affordable. We have a flat management structure with a start-up mentality and are very ambitious; we want determined and enthusiastic people to share our vision and join us on this journey of innovation. What You Will Do You will be developing distributed insurance applications and services using R3 Corda You will work within a highly skilled and motivated engineering team You will bring your perspective on design and engineering helping to create innovative solutions Your code and applications will run on a global distributed network What you will bring on a professional level Strong knowledge of Java or Kotlin development, tooling and ecosystem Strong object-oriented development Some knowledge about Blockchain, distributed ledger and networks Agile software development experience including tools such as JIRA and CI Experience of working on multi-layered projects It would be great if you have R3 Corda development experience and on a personal level Share you knowledge, insight and learning openly Open to feedback and challenges from the team Curious to learn new skills What we offer B3i offers a competitive package including flexible working time and location & sabbatical programme You will work with a great bunch of people who are really making history in central Zurich Corda certification as part of your onboarding To apply for a job please send your CV in English only to jobs@b3i.tech. Please check your spam mailbox as our replies may be there. Disclaimer Notice for recruitment agencies B3i does not accept speculative CVs. We will only review CVs sent with an application for an advertised post. Any unsolicited CVs received will be treated as the property of B3i Services AG and Terms & Conditions associated with the use of such CVs will be considered null and void.',\n", + " 'soft_skills': '[\"Innovation\", \"Professionalism\", \"Management\", \"Business Operations\"]',\n", + " 'hard_skills': '[\"Advertisement\", \"Tooling\", \"Accessioning\", \"Object-Oriented Software Development\", \"CAN-SPAM Act\", \"Blockchain\", \"Industrialization\", \"Perspective (Graphical)\", \"Onboarding\", \"Layering\", \"Levelling\", \"Agile Software Development\", \"Corda\", \"Personalization\", \"Receivables\", \"Distributed Development\", \"Software Development\", \"JIRA Studio\", \"Distributed Network Protocol (DNP3)\", \"Java (Programming Language)\", \"Kotlin\"]',\n", + " 'languages': \"['English', 'Kazakh', 'Greek', 'Dhivehi', 'Ossetic']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer / kubernetes',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Publishing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.86396894e-02 3.53228837e-01 5.67326486e-01 3.63957249e-02\\n4.11444038e-01 -1.54789671e-01 -1.02825258e-02 3.75273436e-01\\n-1.09489605e-01 -3.61436069e-01 -1.27484068e-01 -2.00840175e-01\\n-2.10987758e-02 9.52819064e-02 9.87729430e-02 3.63007396e-01\\n1.37525052e-01 1.10589705e-01 -1.76684603e-01 2.60704219e-01\\n1.58464849e-01 -8.05613026e-02 1.65607065e-01 6.42816842e-01\\n3.86824906e-01 2.66366173e-02 -4.28315764e-03 3.82334217e-02\\n-2.43231893e-01 -2.74984568e-01 5.35701811e-01 1.72870532e-01\\n-2.02128589e-01 -3.24811488e-01 9.71850902e-02 -1.22270696e-02\\n-1.51039958e-01 -1.66761622e-01 6.61277249e-02 2.59619087e-01\\n-3.99658412e-01 -2.26555467e-01 8.92851651e-02 -2.46167164e-02\\n-2.31960461e-01 -3.20629090e-01 2.11927425e-02 -7.26859942e-02\\n1.23782150e-01 -9.61930528e-02 -5.79135120e-01 3.66553992e-01\\n-2.13437229e-01 -1.46317482e-01 3.15854549e-01 5.32991588e-01\\n-8.24891999e-02 -4.79702652e-01 -3.03395003e-01 -1.51844054e-01\\n6.08861223e-02 -2.08625227e-01 6.65153936e-02 -2.31660664e-01\\n2.91905969e-01 2.14463491e-02 -2.67569907e-02 3.28941286e-01\\n-6.91635668e-01 -1.72613878e-02 -2.27979168e-01 -1.59735546e-01\\n-2.58818299e-01 -1.25708237e-01 -2.01496348e-01 -1.32322893e-01\\n-1.46813557e-01 3.84239137e-01 9.33659896e-02 4.49809916e-02\\n-2.13775635e-01 2.79151410e-01 -1.96597308e-01 3.56353700e-01\\n2.63455778e-01 2.20443532e-01 1.60394460e-01 3.43518764e-01\\n-3.72574925e-01 3.65624726e-01 2.37283453e-01 -2.83255041e-01\\n3.18914801e-01 -7.92915374e-03 4.37403560e-01 1.10671923e-01\\n1.17043637e-01 4.85769100e-02 -1.37978867e-01 1.56821102e-01\\n2.50299215e-01 -1.47155181e-01 1.31804541e-01 -1.30578563e-01\\n-5.54054789e-02 -9.16475281e-02 -6.68351576e-02 3.09340835e-01\\n-2.00602442e-01 4.17501897e-01 2.48793095e-01 -1.57543525e-01\\n-1.23951837e-01 -4.73002315e-01 -1.05028406e-01 5.82843460e-02\\n-3.19957472e-02 1.51362702e-01 2.86295682e-01 2.13342682e-01\\n3.63012284e-01 1.10410206e-01 1.42234713e-01 8.16576838e-01\\n-2.34701131e-02 -8.18513334e-02 -2.53655016e-01 3.18368405e-01\\n9.24840942e-02 -2.44545594e-01 2.32423604e-01 2.95756489e-01\\n5.20852953e-02 -1.06155507e-01 -1.16933405e-01 2.98990518e-01\\n-3.46655138e-02 -2.58636832e-01 -3.16073775e-01 1.20410465e-01\\n-2.43355468e-01 -3.74621838e-01 5.19879162e-01 7.43166730e-02\\n1.84957951e-01 1.51498113e-02 -1.04693070e-01 -1.65667117e-01\\n-3.16648781e-02 1.75257295e-01 -8.08483660e-02 1.76391557e-01\\n-2.46911645e-01 -1.86413556e-01 -2.88301826e-01 1.57823950e-01\\n-7.57721812e-02 9.13605094e-02 -7.45673617e-03 -8.65919814e-02\\n3.65876615e-01 -8.12272355e-03 -2.32298151e-01 3.24595660e-01\\n-1.55297685e-02 -1.49815962e-01 -1.45775735e-01 3.34570229e-01\\n-1.49785161e-01 1.97962001e-01 -3.05489283e-02 -2.20910087e-01\\n4.47093397e-01 -2.68346611e-02 2.07813293e-01 -1.02096079e-02\\n2.94017404e-01 -8.27189609e-02 1.77478179e-01 1.32296905e-01\\n-5.97901762e-01 3.19129705e-01 -1.91639274e-01 2.61017047e-02\\n1.14954583e-01 2.59220749e-02 2.18464747e-01 -2.66264051e-01\\n2.67351028e-02 -7.70545527e-02 -4.03702557e-01 -4.70857352e-01\\n-1.21590711e-01 -7.42204301e-03 3.52233082e-01 -3.32233787e-01\\n-1.27752855e-01 2.14209899e-01 -4.47474450e-01 -6.46150559e-02\\n2.51695156e-01 2.36691028e-01 7.15972260e-02 5.04741967e-02\\n-1.73025236e-01 -3.23829234e-01 1.71359796e-02 -4.16661739e-01\\n-3.24671000e-01 2.22271290e-02 -3.33122373e-01 2.14627117e-01\\n1.39333799e-01 4.43055592e-02 -5.78242131e-02 1.64755136e-01\\n-2.28202790e-01 -1.35058090e-01 1.62339419e-01 1.26342416e-01\\n3.60177249e-01 -8.31727460e-02 -3.43623817e-01 4.77640778e-01\\n-1.58829302e-01 5.72451770e-01 2.00217709e-01 -8.05105031e-01\\n5.52977085e-01 3.03927064e-01 9.23681539e-03 -3.16989899e-01\\n5.90869367e-01 -3.15465957e-01 6.21235296e-02 1.31655172e-01\\n-2.81153172e-01 -3.37243319e-01 2.16755599e-01 -1.75419182e-01\\n-2.91525453e-01 5.46115637e-01 7.20381737e-02 5.03583029e-02\\n9.29163620e-02 -2.61773378e-01 -1.03731371e-01 -8.75549465e-02\\n-7.23192990e-02 -1.76573649e-01 -4.69672233e-01 2.83928346e-02\\n-1.52788594e-01 -4.98112053e-01 -2.16351487e-02 -3.61615479e-01\\n-1.74553543e-01 -3.99190009e-01 -1.37264594e-01 3.72618973e-01\\n2.15542004e-01 1.08110808e-01 7.24827358e-03 -5.01966402e-02\\n-1.70615315e-01 -6.47843242e-01 -1.28515959e-01 1.60230994e-01\\n4.11659837e-01 1.68365851e-01 8.09346884e-02 5.18935621e-02\\n-1.97065831e-03 6.04531646e-01 -1.38802931e-01 -9.09259543e-02\\n1.79975078e-01 1.98866859e-01 -1.18141174e-02 -5.82729839e-02\\n7.97336400e-02 2.74976432e-01 -2.34403461e-01 -4.00242284e-02\\n-1.81422710e-01 3.57470848e-03 4.18841898e-01 9.48151667e-03\\n-3.26967120e-01 -3.05485457e-01 5.26369698e-02 2.41083652e-01\\n-4.54461366e-01 -6.97428957e-02 6.03892624e-01 2.91152775e-01\\n2.18290444e-02 2.36755401e-01 3.11013073e-01 -8.69348049e-02\\n-1.80006817e-01 -1.09573744e-01 9.09840241e-02 9.13751647e-02\\n1.51696369e-01 -5.98091120e-03 -2.18380064e-01 -4.93604749e-01\\n-3.86651587e+00 -1.79341570e-01 1.96873397e-01 -2.62040436e-01\\n1.90999582e-01 -4.90829460e-02 8.46772194e-02 -1.63355526e-02\\n-2.01715946e-01 5.80407046e-02 -1.12979256e-01 -1.12677477e-01\\n1.11043625e-01 1.78158745e-01 1.46073988e-02 2.37694532e-01\\n8.23406056e-02 -2.87258714e-01 -3.24229039e-02 2.40174547e-01\\n-3.00104469e-01 -6.77762747e-01 3.59239101e-01 -1.28383905e-01\\n1.38692573e-01 1.62161693e-01 -2.25758493e-01 -9.42895785e-02\\n-1.14096597e-01 -2.19792783e-01 8.73420835e-02 -1.25576392e-01\\n-1.80443496e-01 3.73502403e-01 1.34097382e-01 -1.18699417e-01\\n2.01839134e-01 -3.84118289e-01 -1.25689730e-01 -4.75600511e-01\\n1.32493392e-01 -5.16155839e-01 1.25955176e-02 -6.98613673e-02\\n7.48347998e-01 -3.70802611e-01 1.74251143e-02 1.54234201e-01\\n1.66155338e-01 3.09762985e-01 2.75816340e-02 -6.56370819e-02\\n-2.20833272e-01 -2.71969855e-01 1.47756403e-02 -2.00067982e-01\\n4.07934874e-01 5.32673240e-01 -2.50871986e-01 -1.21539831e-02\\n2.32154392e-02 -1.82392716e-01 -3.68688613e-01 -3.70543063e-01\\n-5.53291477e-02 -1.24375232e-01 -7.47914195e-01 -3.72815043e-01\\n-7.06396848e-02 -2.29033306e-01 -2.87312776e-01 6.46420538e-01\\n-2.03403503e-01 -4.23287958e-01 -5.42914830e-02 -4.30124909e-01\\n2.05894098e-01 -2.12960109e-01 -2.96743419e-02 -1.40996605e-01\\n-2.05325410e-01 -3.61008078e-01 3.96445245e-02 -3.37753929e-02\\n-1.81393668e-01 -1.50582254e-01 1.48122106e-02 -2.45135501e-01\\n-2.07390621e-01 -5.34297228e-01 3.44224155e-01 1.49384812e-01\\n3.54635149e-01 1.08168744e-01 2.91438520e-01 2.38403276e-01\\n3.10482174e-01 -1.43529698e-01 5.19399904e-02 -3.52669686e-01\\n1.47616312e-01 -3.97958234e-02 4.99625385e-01 -3.03666621e-01\\n2.60145850e-02 2.21558109e-01 -1.82700396e-01 -1.26914948e-01\\n3.01947147e-01 2.81799771e-02 -1.37295090e-02 -2.76748747e-01\\n1.01296894e-01 -3.51991236e-01 -2.81909347e-01 3.14142369e-02\\n1.25688184e-02 5.65383375e-01 -1.74573027e-02 -4.37440842e-01\\n-2.22908393e-01 4.53334332e-01 -8.18141457e-03 -1.00599438e-01\\n-3.21921796e-01 1.25206500e-01 -1.76940545e-01 2.56424189e-01\\n1.02477387e-01 -1.76139981e-01 -1.92849398e-01 -1.35695696e-01\\n-7.08939284e-02 1.59004316e-01 3.02977592e-01 1.69395566e-01\\n-1.11120297e-02 -3.06526214e-01 -9.34800133e-02 1.21854812e-01\\n2.07979739e-01 2.63404042e-01 1.12347476e-01 -6.61246553e-02\\n-5.83111458e-02 3.39883626e-01 -2.42418572e-01 9.73672494e-02\\n-1.68855280e-01 4.45390008e-02 -5.46581745e-01 -3.08295012e-01\\n-1.32315859e-01 -2.99340367e-01 8.98948535e-02 2.51019359e-01\\n2.27855965e-01 -6.55286536e-02 -3.08736358e-02 -4.01280642e-01\\n4.32699710e-01 -6.50226697e-02 2.32101783e-01 2.19520569e-01\\n-1.57424565e-02 5.68058193e-01 5.64253367e-02 -9.45260525e-02\\n-1.57026261e-01 -1.53292995e-02 -2.95301735e-01 4.15496435e-03\\n-4.37271036e-02 -2.51033068e-01 -8.52349773e-02 4.57998425e-01\\n1.87186465e-01 -2.33891904e-01 -1.90754890e-01 2.70599931e-01\\n-3.60190831e-02 -2.10468397e-01 -1.50382176e-01 5.44195250e-02\\n3.34445059e-01 1.43303171e-01 2.68921524e-01 -3.84067535e-01\\n-8.10124446e-03 -9.14625451e-03 -2.20850073e-02 4.29813117e-01\\n2.43724167e-01 3.63999642e-02 6.48201630e-03 -2.69303113e-01\\n3.85994583e-01 -2.20154852e-01 -1.98586956e-01 -8.88039023e-02\\n2.21271776e-02 -1.08325772e-01 -3.97155464e-01 1.12120487e-01\\n-1.78362101e-01 -1.97919130e-01 3.90429087e-02 1.02648075e-04\\n8.82162303e-02 -3.92693281e-02 -4.66547489e-01 -2.58321464e-01\\n-3.53705794e-01 7.90080875e-02 -1.15440011e-01 -4.25542533e-01\\n9.73891318e-02 6.13474064e-02 -5.82636297e-01 2.79635042e-01\\n-2.56400108e-01 -4.65064272e-02 8.05442631e-02 8.18636566e-02\\n-3.36314619e-01 3.08165252e-02 1.78941399e-01 1.88131973e-01\\n-1.99829563e-01 -2.92583674e-01 2.32387111e-02 -1.03392053e+00\\n1.92708880e-01 -6.09105378e-02 -1.82005376e-01 3.64910625e-02\\n-1.28273359e-02 -6.52777791e-01 9.90936607e-02 -2.57608116e-01\\n-1.16646208e-01 5.15502170e-02 -2.37577230e-01 -5.06722331e-01\\n4.24770750e-02 -2.28927415e-02 -2.23666817e-01 3.52656960e-01\\n-3.96853060e-01 1.99562147e-01 -1.21000195e-02 1.34260118e-01\\n5.96545748e-02 -3.34889233e-01 1.46886110e-01 -3.28380436e-01\\n-4.10223722e-01 -1.01043165e-01 -2.94904262e-01 -2.10966185e-01\\n-1.00863352e-01 -3.13403100e-01 -2.65923403e-02 3.67886238e-02\\n3.06757301e-01 8.25990587e-02 -5.05405478e-02 -1.15442790e-01\\n-3.31759378e-02 -3.28601807e-01 1.37318999e-01 3.49960197e-03\\n-4.18374315e-02 -1.02986366e-01 2.08148196e-01 1.75102744e-02\\n1.32077962e-01 -3.43547195e-01 4.02048230e-01 -2.77153075e-01\\n-2.53161788e-01 -1.08336560e-01 5.64804710e-02 4.93663885e-02\\n2.95530796e-01 -5.68853796e-01 7.82246515e-03 4.19337541e-01\\n9.68805552e-02 1.53102741e-01 2.93222010e-01 -7.70132840e-02\\n-1.47469819e-01 2.90416569e-01 -2.96383768e-01 6.81734085e-02\\n6.68422580e-01 9.82751325e-02 1.01533450e-01 2.38755316e-01\\n8.42127353e-02 1.78761452e-01 3.39968354e-01 -3.04497126e-02\\n7.95682240e-03 2.60779887e-01 4.26736102e-03 -5.87939262e-01\\n-4.07676175e-02 -6.26401380e-02 -2.39319101e-01 -3.43370616e-01\\n6.55586720e-01 3.45989883e-01 -3.36533666e-01 -2.86600292e-01\\n-1.52257038e-02 -2.70355910e-01 1.88502416e-01 -9.84065980e-02\\n5.43959588e-02 -6.22875541e-02 4.88136858e-01 8.69847741e-03\\n1.75272822e-01 5.31277418e-01 -1.16050735e-01 -2.81378359e-01\\n-7.58035183e-02 1.01043098e-01 7.33466148e-02 4.78757232e-01\\n-1.00773476e-01 1.98942676e-01 1.10007832e-02 2.04501629e-01\\n-9.61248800e-02 9.33214426e-02 -4.52964604e-02 1.92339271e-01\\n-4.37920094e-02 1.68450192e-01 2.63604522e-01 4.08222944e-01\\n1.56363189e-01 5.42348742e-01 4.16393250e-01 1.56677648e-01\\n4.98144299e-01 3.10483813e-01 4.08534884e-01 2.02082470e-01\\n-2.96968874e-02 7.50399008e-02 -1.98692940e-02 -2.65627243e-02\\n1.71882227e-01 2.81599194e-01 2.12341230e-02 8.37382197e-01\\n3.54153395e-01 1.36229858e-01 5.64457119e-01 -5.40149212e-01\\n-3.59733850e-01 -5.24991862e-02 4.49542642e-01 -4.37585235e-01\\n1.50364721e-02 -1.21384375e-02 -2.65996277e-01 1.44403532e-01\\n-4.72278595e-01 -3.67757194e-02 -1.47116780e-01 -6.82415394e-03\\n1.01224817e-01 -5.94040938e-02 -2.14884415e-01 -2.47477498e-02\\n-1.42620608e-01 -1.85730848e-02 -3.47300500e-01 -1.11910738e-01\\n-2.41236418e-01 -7.17705041e-02 -7.46985003e-02 -1.85892373e-01\\n1.59625895e-02 -3.01559508e-01 -1.28483370e-01 3.00171301e-02\\n2.78268278e-01 -1.04735762e-01 -1.11930825e-01 -9.69903916e-02\\n2.85251409e-01 2.41066620e-01 4.90248948e-01 1.39178401e-02\\n1.52966663e-01 -1.50880069e-01 -1.82258964e-01 -4.34091575e-02\\n1.67298794e-01 1.56000182e-02 4.90716733e-02 4.26151901e-01\\n-3.72452915e-01 -7.92823732e-02 5.32288961e-02 3.45622510e-01\\n-4.28862542e-01 1.31345708e-02 -1.69181935e-02 1.71148688e-01\\n9.63133350e-02 1.60424173e-01 -2.71407425e-01 3.37740071e-02\\n-2.22881481e-01 -4.71496880e-01 3.30331683e-01 -2.32179135e-01\\n1.83764547e-02 5.96662983e-02 1.82329640e-01 9.52501968e-02\\n-2.32505053e-01 1.39892837e-02 6.30552694e-02 2.01587290e-01\\n1.84415430e-02 2.35088319e-01 -3.04267108e-01 -2.25467026e-01\\n-2.89972275e-01 2.08660096e-01 -8.36983249e-02 1.29145160e-01\\n-7.37960916e-03 2.35196725e-01 1.43932834e-01 5.78541607e-02\\n2.99762428e-01 -9.82260555e-02 -2.10702911e-01 -2.30772689e-01\\n-3.73177648e-01 -2.90136158e-01 -8.68161172e-02 -1.79977819e-01\\n1.95918977e-01 -3.98411334e-01 -7.55714029e-02 -2.89538922e-03\\n-1.27865911e-01 -3.52548569e-01 2.43788008e-02 -4.19341400e-02]]',\n", + " 'job_description': 'localsearch is the leading marketing and advertising partner for Swiss SME. We make our customers successful in the digital world. Within our department Products & Platforms we are looking for new colleagues: Software Engineer / Kubernetes We are Virtualizers, Software Engineers, Orchestrators, Coders and offer a highly skilled devops and software engineering team responsibility to provide and enhance services and APIs which are used by many teams and applications or external consumers two completely own managed Kubernetes clusters (on GKE/GCP) a close collaboration with software engineering teams to support them building new features and applications You are a tech enthusiast, cloud surfer, automator, networker and you impress us with a good understanding of mixed architecture of public and private clouds professional experience with Kubernetes, infrastructure as a code and cloud services networking, scripting (Bash), log and systems performance analysis skills a good understanding of web application architectures (web servers, relational/non-relational databases, caching tiers, fault-tolerant design) solid communications – even remotely -, team working and interpersonal skills fluent in English, German is a plus Important: We are only able to consider applicants with a valid permit to reside and work in Switzerland or citizens of EU-27. Direct applications are given priority. We will be happy to answer your questions via our WhatsApp chat +41 79 358 35 76. We, Sylvia Ramona Bertele and Colin Griehl, look forward to receiving your online application!',\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Infrastructure\", \"Management\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Web Servers\", \"Advertisement\", \"Kubernetes\", \"Enhanced Messaging Service\", \"Platform Product Management\", \"Fault Tolerant Ethernet\", \"Consumables\", \"Google Kubernetes Engine (GKE)\", \"Private Cloud\", \"Software Engineering\", \"Cloud Services\", \"Applications Architecture\", \"Whatsapp\", \"Digitization\", \"Bash (Scripting Language)\", \"Receivables\", \"Google Cloud Platform (GCP)\", \"Relational Databases\", \"Customer Success\", \"Scripting\", \"Performance Analysis\", \"Network Automation\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Igbo', 'Northern Sami']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer c++',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-6.15360327e-02 1.70069948e-01 3.69094670e-01 -4.79845591e-02\\n4.70457852e-01 -2.11933196e-01 -7.08187371e-02 2.78565824e-01\\n2.95023248e-02 -3.25105608e-01 4.88465913e-02 -2.35919148e-01\\n-1.46300763e-01 1.73026562e-01 9.29632112e-02 4.72389370e-01\\n3.19536090e-01 1.15963891e-01 -1.04019299e-01 3.63617152e-01\\n1.43307418e-01 -1.01917334e-01 1.59268215e-01 8.21938634e-01\\n3.83604348e-01 -5.87992370e-02 -6.00261986e-02 -1.12783508e-02\\n-2.19714239e-01 -1.16500683e-01 4.06501740e-01 1.43361226e-01\\n-7.79786855e-02 -4.00314540e-01 1.12267867e-01 9.94002298e-02\\n-3.23229134e-01 -1.82109043e-01 -7.37718642e-02 2.78239369e-01\\n-6.93649173e-01 -3.34074050e-01 -1.09158486e-01 4.11223480e-03\\n-2.48544917e-01 -3.11541736e-01 9.05178413e-02 -1.98799707e-02\\n1.34833902e-01 1.27673984e-01 -5.62962174e-01 2.21756414e-01\\n-2.10308075e-01 -2.62162238e-01 3.25115085e-01 6.20196640e-01\\n-2.27006990e-02 -4.35605645e-01 -5.04936755e-01 -3.91674995e-01\\n1.13927722e-01 -3.29396389e-02 -2.19221115e-02 -4.49590206e-01\\n2.82134950e-01 1.72711641e-01 -1.41567702e-03 3.11003178e-01\\n-8.41401517e-01 -1.87418044e-01 -2.62502939e-01 -4.23106924e-02\\n-3.74724805e-01 -6.10184185e-02 -1.53444380e-01 -1.05216317e-01\\n-3.86757702e-02 4.45064425e-01 4.06113677e-02 2.74664257e-02\\n-1.18220136e-01 3.87540281e-01 -2.12884188e-01 4.82440561e-01\\n2.04456359e-01 2.64162630e-01 9.84276012e-02 3.67818415e-01\\n-2.89154917e-01 3.47585022e-01 8.66943151e-02 -2.95485616e-01\\n1.91895068e-01 1.64032191e-01 5.06912708e-01 -4.85357083e-02\\n1.75279051e-01 7.67979398e-02 -4.09418195e-01 4.15128171e-01\\n2.56524861e-01 -2.89466470e-01 1.52836516e-01 -8.29043686e-02\\n2.56755557e-02 7.06810690e-03 5.92649616e-02 9.95903388e-02\\n-3.35495234e-01 3.97334129e-01 1.79926112e-01 -1.67149797e-01\\n-9.08892229e-02 -5.27441084e-01 -9.68079120e-02 7.15265423e-02\\n3.22680026e-02 6.92483634e-02 2.05185950e-01 1.00141227e-01\\n2.00903103e-01 5.54731786e-02 1.24387629e-01 9.73621309e-01\\n-9.67924595e-02 1.05454505e-03 -2.20986232e-01 3.07325393e-01\\n9.67770815e-02 -2.29671940e-01 2.70837277e-01 2.67831624e-01\\n1.17196687e-01 -2.18854681e-01 -2.33814448e-01 3.32441896e-01\\n6.03992306e-02 -1.98460042e-01 -2.73256570e-01 3.27207297e-01\\n-1.73127912e-02 -4.35801446e-01 6.63786471e-01 8.04563169e-04\\n1.08474314e-01 -6.42981231e-02 -4.31750156e-02 -1.32302165e-01\\n-4.51721065e-02 9.94271636e-02 1.71530137e-05 1.28383666e-01\\n-3.33145291e-01 -2.77937800e-01 -1.77992642e-01 3.96329463e-02\\n-3.68313164e-01 2.45561734e-01 -6.94993064e-02 -8.68954509e-02\\n1.61983281e-01 -5.77542335e-02 -2.28144571e-01 1.90994188e-01\\n-9.29187015e-02 1.43895280e-02 1.28230169e-01 3.89805436e-01\\n-2.57628709e-01 1.84226617e-01 -9.49219689e-02 -1.92838654e-01\\n5.26776254e-01 1.61258817e-01 5.37235290e-02 -1.29591525e-02\\n3.48932832e-01 -7.67435208e-02 2.30441481e-01 1.94344297e-01\\n-7.39030600e-01 2.87194252e-01 -1.10939883e-01 -2.32322782e-01\\n5.48879281e-02 -9.29856747e-02 3.56184244e-01 -2.82974631e-01\\n6.24019280e-03 -1.33209199e-01 -4.22763020e-01 -2.21646339e-01\\n-2.18117923e-01 -1.09508045e-01 4.99452442e-01 -4.08331901e-01\\n-1.73319593e-01 2.35321969e-01 -5.33958673e-01 -1.73191801e-01\\n2.77047064e-02 1.54111966e-01 2.19252974e-01 5.59129268e-02\\n-2.15247378e-01 -6.58071518e-01 2.61800531e-02 -4.71388608e-01\\n-2.88910538e-01 1.06464036e-01 -2.71896720e-01 2.80620754e-01\\n1.57240890e-02 -1.16062984e-02 -1.38100922e-01 1.26544744e-01\\n-2.41793022e-01 -1.44608505e-02 4.18391004e-02 3.19084874e-03\\n1.49102375e-01 8.21789205e-02 -3.18843246e-01 4.15687382e-01\\n-1.20143242e-01 7.38887548e-01 3.69345732e-02 -8.46216321e-01\\n5.17916620e-01 4.16019678e-01 -2.47838199e-02 -2.54223287e-01\\n5.48627019e-01 -3.83861870e-01 -1.78377882e-01 8.34225565e-02\\n-3.85464251e-01 -3.09331357e-01 2.20392063e-01 -2.58056343e-01\\n-2.86358505e-01 5.10280252e-01 9.39785838e-02 1.65612295e-01\\n3.19207907e-01 -2.90657401e-01 -2.78760176e-02 3.75616029e-02\\n-6.73609450e-02 -3.21334898e-01 -5.35726249e-01 -1.92885008e-02\\n-8.12788680e-02 -5.42707980e-01 -1.92736667e-02 -2.92269826e-01\\n-2.14521497e-01 -3.33490461e-01 -1.58306435e-01 2.17022285e-01\\n3.65034133e-01 1.07456565e-01 5.07156439e-02 5.49834557e-02\\n-1.00595355e-01 -5.40471494e-01 -4.16955128e-02 9.11187828e-02\\n3.76946747e-01 2.35252365e-01 9.54194516e-02 2.92639006e-02\\n-6.87321424e-02 6.42781734e-01 -2.67857581e-01 -2.19242021e-01\\n6.90786615e-02 2.02000931e-01 7.91040063e-03 -1.28834143e-01\\n1.65220633e-01 4.50034738e-01 -2.96262890e-01 1.26958698e-01\\n-1.34764001e-01 -5.05113006e-02 2.92828709e-01 1.26045197e-01\\n-1.94791853e-01 -1.95052609e-01 -1.40913844e-01 1.03951588e-01\\n-6.05008483e-01 -1.83572680e-01 4.42369729e-01 1.09146349e-01\\n2.54844993e-01 4.24901210e-02 2.81471282e-01 -1.26183674e-01\\n-2.41876170e-01 -2.70716846e-01 2.89479256e-01 1.83888420e-01\\n8.02820921e-02 1.79018348e-01 5.91687895e-02 -6.09297395e-01\\n-3.08833504e+00 -1.05858885e-01 1.48121655e-01 -2.28792489e-01\\n1.83724329e-01 1.54572483e-02 -1.58700813e-03 -7.97645003e-02\\n-3.01324129e-01 -7.38255903e-02 -1.98433593e-01 -1.89353421e-01\\n7.25826174e-02 1.54209048e-01 1.30315199e-01 7.80134127e-02\\n1.58667877e-01 -2.15334713e-01 -5.90466484e-02 3.51647347e-01\\n-7.55011812e-02 -5.56001663e-01 2.29559690e-01 2.89353542e-03\\n2.90803820e-01 1.15721308e-01 -4.58708256e-01 -1.40416771e-01\\n-1.97826967e-01 -1.74721807e-01 1.22433864e-01 -3.34654421e-01\\n-2.62786727e-02 2.80139416e-01 2.13215187e-01 -8.45521223e-03\\n9.90886539e-02 -4.09547955e-01 -1.57552987e-01 -3.98427546e-01\\n8.93677548e-02 -5.92201233e-01 1.49425101e-02 -2.24194452e-01\\n6.44605637e-01 -3.58653814e-01 5.59022129e-02 1.42211378e-01\\n1.29999787e-01 1.80157095e-01 6.98166490e-02 -9.50836670e-03\\n-1.79287121e-01 -2.34690279e-01 -1.07470900e-01 -1.67225555e-01\\n4.14665759e-01 5.71505427e-01 -6.46524057e-02 -1.03732109e-01\\n1.03607267e-01 -3.12021434e-01 -5.84030449e-01 -2.59165794e-01\\n-1.46081179e-01 -2.82951742e-01 -6.61847055e-01 -5.12746096e-01\\n-1.02164105e-01 -6.58482462e-02 -1.72628209e-01 6.29353225e-01\\n-3.62532377e-01 -2.96469182e-01 6.82153851e-02 -4.01356131e-01\\n2.07945466e-01 -3.01011622e-01 8.25977698e-02 -1.82450116e-01\\n-2.43590087e-01 -5.25997043e-01 5.61017692e-02 -1.22373914e-02\\n-8.28509033e-02 -3.87998402e-01 -3.69610526e-02 -2.26924196e-01\\n-2.69980758e-01 -4.20370936e-01 4.44941819e-01 1.89435720e-01\\n3.84555459e-01 7.72801861e-02 2.40476906e-01 -7.58712664e-02\\n2.93458164e-01 -2.79153474e-02 -8.12219381e-02 -3.12662840e-01\\n9.56308767e-02 4.49968651e-02 4.18010473e-01 -2.31686622e-01\\n-1.23370908e-01 6.86325273e-03 -3.47004056e-01 -2.70640012e-02\\n2.42457211e-01 6.42290339e-03 -2.80408263e-02 -1.83198184e-01\\n4.20002937e-01 -2.60792702e-01 -5.39209023e-02 1.71582073e-01\\n1.03063829e-01 5.64295292e-01 7.88486097e-03 -4.70834166e-01\\n-1.76993132e-01 3.81603271e-01 -9.43878070e-02 -8.10479224e-02\\n-2.05782261e-02 8.10663924e-02 -1.77646801e-01 2.37053588e-01\\n2.87216473e-02 -1.13345399e-01 -2.40583047e-01 -1.42416790e-01\\n-1.97484285e-01 4.30378973e-01 1.60710394e-01 6.20446391e-02\\n-9.95636359e-02 -3.69042218e-01 -1.04530133e-01 3.02616805e-01\\n2.10095316e-01 2.97285259e-01 2.55060077e-01 -2.53092885e-01\\n-3.25052515e-02 4.38893020e-01 -1.64433017e-01 1.94279432e-01\\n-2.45469734e-01 1.46761820e-01 -5.46583712e-01 -1.81154430e-01\\n-3.56602460e-01 -3.56532365e-01 2.15946585e-01 3.15783054e-01\\n2.37833053e-01 -5.06811887e-02 2.43615285e-01 -4.46075439e-01\\n3.10165942e-01 2.31263995e-01 2.07819521e-01 9.53669101e-02\\n-4.35707122e-02 6.34144068e-01 6.52131140e-02 -1.62557006e-01\\n-3.82012092e-02 -9.35275257e-02 -2.57405698e-01 -2.77863681e-01\\n7.12738335e-02 -4.90726084e-01 -1.72003627e-01 4.14939225e-01\\n1.19929798e-02 -3.07115704e-01 -2.88133264e-01 2.94350863e-01\\n4.53745499e-02 -2.82645762e-01 -2.94721484e-01 -5.60613954e-03\\n3.82236689e-01 -4.77441307e-03 2.89465189e-01 -5.32921195e-01\\n-7.05306306e-02 3.91185209e-02 -1.81442440e-01 6.03978574e-01\\n3.97017039e-02 -1.00307420e-01 -2.24660754e-01 -2.48657122e-01\\n3.46579373e-01 2.32381560e-03 -6.21865317e-02 -1.62810743e-01\\n1.29670411e-01 -1.65993020e-01 -2.93401748e-01 1.06150880e-01\\n2.69722436e-02 -1.20677598e-01 -5.41348942e-02 1.69817641e-01\\n1.54999360e-01 1.12913847e-01 -5.28884590e-01 -2.29777098e-01\\n-1.02099009e-01 1.38140861e-02 1.18286014e-01 -3.90523583e-01\\n-6.65493011e-02 -1.18845843e-01 -5.28726816e-01 2.59356290e-01\\n-1.79995090e-01 -6.33876771e-02 1.45757407e-01 4.41674665e-02\\n-3.90196830e-01 -1.64533883e-01 4.47562188e-02 2.68592030e-01\\n-3.36038888e-01 -3.03508312e-01 6.61023259e-02 -9.65365887e-01\\n4.73210663e-02 1.49925891e-02 -1.90606847e-01 1.99255109e-01\\n-3.77111137e-02 -5.96411288e-01 7.57368356e-02 -3.77188802e-01\\n-8.60775039e-02 -2.25442369e-03 -3.39427918e-01 -2.95279413e-01\\n9.80416313e-02 4.45397496e-02 -2.35997617e-01 3.71618241e-01\\n-3.83907884e-01 3.09884787e-01 -1.32649317e-01 2.36986764e-02\\n1.58124976e-02 -3.93595904e-01 1.76851645e-01 -4.58706349e-01\\n-4.17498320e-01 -1.73629120e-01 -3.23113531e-01 -2.72197038e-01\\n-2.72364486e-02 -1.95713922e-01 -1.68837935e-01 7.13770688e-02\\n2.79908746e-01 -9.94471982e-02 -8.80589262e-02 -2.27695882e-01\\n1.68260515e-01 -4.83649850e-01 1.19827949e-02 -4.67570685e-02\\n-8.20605643e-03 -1.69822350e-02 -2.08840072e-02 2.41146222e-01\\n1.97596639e-01 -3.65467548e-01 3.72829825e-01 -5.38573682e-01\\n-3.30811411e-01 -1.32995948e-01 1.48362368e-01 -3.14110778e-02\\n3.71939570e-01 -3.56714100e-01 -5.29241301e-02 2.47981116e-01\\n2.43250102e-01 3.42292972e-02 2.91329414e-01 -1.13652714e-01\\n7.07688332e-02 1.68619052e-01 -2.65314132e-01 1.41771108e-01\\n7.72444069e-01 1.22193418e-01 2.15246305e-01 1.34034827e-01\\n1.28308043e-01 1.52254969e-01 5.55234313e-01 6.95531145e-02\\n-1.14367470e-01 2.72008508e-01 2.12265760e-01 -3.27417433e-01\\n-1.41368076e-01 8.19723308e-03 -2.52981126e-01 -3.25297564e-01\\n6.97446167e-01 3.99260610e-01 -4.64953572e-01 -1.37237877e-01\\n-3.37966206e-03 -1.63995266e-01 1.53066546e-01 -1.16496146e-01\\n-5.37558272e-02 8.47891904e-03 4.39934969e-01 -1.53064996e-01\\n2.09769323e-01 4.32819247e-01 -1.90943584e-01 -4.02021229e-01\\n-8.35089013e-02 2.52721548e-01 2.67330874e-02 3.89168471e-01\\n-2.06106126e-01 3.97763252e-01 -2.31360290e-02 1.82387516e-01\\n-1.34223104e-01 1.28499418e-01 1.48220837e-01 1.01867869e-01\\n1.40002280e-01 2.21560262e-02 3.17652166e-01 4.30151075e-01\\n4.15707290e-01 4.00314301e-01 3.39364469e-01 -4.15941991e-04\\n4.22308087e-01 4.82627124e-01 3.39602828e-01 1.72086298e-01\\n-1.02666616e-01 1.35161459e-01 1.16447151e-01 -9.29013267e-03\\n4.46575284e-01 3.10713321e-01 1.69557795e-01 8.66306782e-01\\n2.88405806e-01 4.02954042e-01 7.08498836e-01 -5.74246526e-01\\n-3.02493989e-01 1.04537144e-01 4.32984531e-01 -4.73917127e-01\\n-3.20942923e-02 2.91799400e-02 -7.84139708e-02 2.18662664e-01\\n-3.52175862e-01 -2.40139216e-01 -6.56247139e-02 2.98952550e-01\\n3.18449363e-02 -1.09455273e-01 -2.52477109e-01 -4.17815186e-02\\n-2.21452832e-01 -1.38408095e-01 -4.76561010e-01 -4.83902432e-02\\n-2.63522714e-01 -1.87849909e-01 -5.20092212e-02 -7.35315457e-02\\n-1.07168294e-01 -4.00403649e-01 -2.41890792e-02 -3.53890248e-02\\n3.72063041e-01 -2.52057493e-01 -1.26549691e-01 -1.32459551e-01\\n3.33964020e-01 1.72105044e-01 6.11153305e-01 1.45205811e-01\\n7.46073276e-02 -2.52712697e-01 -1.76032111e-01 1.78253978e-01\\n5.91773912e-02 2.05314562e-01 1.16952769e-02 2.88733304e-01\\n-2.32696250e-01 -8.67840126e-02 1.55609652e-01 2.49566868e-01\\n-4.32942241e-01 -3.41088213e-02 -2.21731827e-01 5.89229763e-02\\n7.92885646e-02 1.10918105e-01 -2.37465367e-01 8.01573619e-02\\n-1.48676142e-01 -4.22992140e-01 2.37759501e-01 -1.23083465e-01\\n-1.79243162e-01 1.24646559e-01 3.69961411e-01 1.29486054e-01\\n-1.83342010e-01 -5.48164956e-02 5.47658280e-02 2.03589797e-01\\n4.67065908e-02 3.29977661e-01 -1.21937901e-01 -4.15521920e-01\\n-2.71547139e-01 2.37298384e-01 -2.21335277e-01 1.05093651e-01\\n2.18326636e-02 5.59969187e-01 1.23413667e-01 -2.92986855e-02\\n5.44673085e-01 -1.60206351e-02 -2.12896615e-01 -3.33475024e-01\\n-1.86459005e-01 -3.62796038e-01 -1.18960917e-01 7.16214404e-02\\n8.03726092e-02 -2.91677982e-01 -6.38136789e-02 -2.12681860e-01\\n-2.19799299e-02 -3.06136400e-01 -2.12664269e-02 -1.28117993e-01]]',\n", + " 'job_description': '(Internship 4-12 months) MaxWell Biosystems is an electronics-focused biotech company based in Basel, Switzerland, developing and selling advanced cell imaging platforms helping our customers in the pharmaceutical industry and in academia to make their drug discovery and research more efficient. We are an ETH Spin-off company, seeking highly motivated and talented individuals who want to contribute in shaping the future of drug discovery. Our core technology consists of a bio-sensor made out of an application specific integrated circuit (ASIC) chip. Together with an FPGA-based data acquisition platform and with our software suite MaxLab Live, this technology is used for drug discovery and to investigate brain cells at unprecedented detail and resolution. We are now enhancing our software MaxLab Live to perform automated experiment routines by means of a Python API (boost.python). Additionally, we are implementing various data analysis and visualization routines to enhance the user experience of our customers and to help them improve their research and drug discovery applications. For both of these activitieswe are seeking a highly motivated software engineer to help us either on the backend to improve the Python API and/or on the frontend with the user interface for data analysis and visualization. Your Profile Studies in computer science, electrical engineering, biology or related field Experience with C++ (C++11/14) and Linux Enjoy pushing technology to its limits You Get Working with cutting-edge technology Working on a modern C++11 code base Freedom to come up with and work on your own ideas Be part of a fast-paced technology startup at the intersection between biology, engineering and data science Are you motivated, innovative and committed to delivering first-rate performance? Have you ever wanted to work with cutting-edge technology involving both engineering and biology? Do you enjoy working in an international, multidisciplinary, and interactive team? Then we might have a position for you. Join MaxWellBiosystems in innovating the future of electrophysiology for drug discovery and basic research. Jan Müller looks forward to receiving your application documents (cover letter, short CV) by email at jan.mueller@mxwbio.com.',\n", + " 'soft_skills': '[\"Research\", \"Positivity\", \"Innovation\", \"Investigation\"]',\n", + " 'hard_skills': '[\"Automation\", \"Live Cell Imaging\", \"Basic Research\", \"Interactivity\", \"Field-Programmable Gate Array (FPGA)\", \"Computer Science\", \"Boost (C++ Libraries)\", \"Documentation Based Coding\", \"Industrialization\", \"Visualization\", \"Software Suite\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Push Technology\", \"Component Object Model (COM)\", \"Linux\", \"Agile Edge Technologies\", \"Limiter\", \"Application Specific Integrated Circuits\", \"Software Engineering\", \"Data Science\", \"Electronics\", \"Biology\", \"Electrical Engineering\", \"Electrophysiology\", \"Data Acquisition\", \"Biological Engineering\", \"Receivables\", \"Pharmaceuticals\", \"Drug Discovery\", \"Additives\", \"User Experience\", \"Custom Backend\", \"ASIC Programming Language\", \"Application Programming Interface (API)\", \"Integrated Circuits\", \"User Interface\", \"Data Analysis\", \"Advanced Imaging Technology\"]',\n", + " 'languages': \"['English', 'Finnish', 'Venda']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.87018558e-01 2.62790650e-01 4.84370828e-01 5.65015674e-02\\n4.95228618e-01 -7.14628771e-02 -4.45722900e-02 2.29910731e-01\\n3.16278683e-03 -4.67078447e-01 2.34412067e-02 -1.45032898e-01\\n-7.85728022e-02 2.29453482e-02 1.49031103e-01 4.50796783e-01\\n4.03130531e-01 5.81657663e-02 -2.45680995e-02 3.79181862e-01\\n9.08872485e-02 -7.18505532e-02 -1.73262674e-02 7.14751184e-01\\n5.00305176e-01 -8.50291401e-02 -1.74031422e-01 8.46053958e-02\\n-2.11665243e-01 -2.65711218e-01 4.89607513e-01 5.26698455e-02\\n-1.78832307e-01 -3.12509269e-01 1.42940804e-01 1.09932616e-01\\n-3.53809625e-01 1.09138444e-01 -1.12645671e-01 1.79193407e-01\\n-4.79448378e-01 -1.52716696e-01 -5.24639077e-02 -1.78945847e-02\\n-4.63240176e-01 -3.82047862e-01 -3.17757018e-02 -1.14930704e-01\\n1.80845514e-01 1.00812934e-01 -4.92571265e-01 2.83448339e-01\\n-2.94942647e-01 -2.42738008e-01 2.11405560e-01 6.73529446e-01\\n7.39359334e-02 -4.43832368e-01 -5.00347495e-01 -4.35070395e-01\\n1.50842711e-01 -1.59714922e-01 8.56454149e-02 -3.02620977e-01\\n3.20919126e-01 -8.75428170e-02 5.05382009e-02 2.71595359e-01\\n-6.95656538e-01 5.79138584e-02 -2.89474815e-01 8.40731412e-02\\n-4.41827804e-01 8.10688734e-02 -4.96987015e-01 -5.41949384e-02\\n-8.14164430e-02 4.47041243e-01 4.32299152e-02 1.13513574e-01\\n-1.51918620e-01 2.91128427e-01 -3.97967994e-01 3.60817164e-01\\n2.52997488e-01 1.13967836e-01 3.32117021e-01 3.32032621e-01\\n-4.80027497e-01 5.41969657e-01 3.18811417e-01 -3.79932433e-01\\n2.04327270e-01 1.08398467e-01 3.97260666e-01 1.98462680e-01\\n2.10382745e-01 1.28192201e-01 -2.43399873e-01 2.48623163e-01\\n2.53265142e-01 -1.97024718e-01 -4.22308184e-02 -1.92427576e-01\\n1.20634563e-01 -3.96730080e-02 1.03949241e-01 1.59911886e-01\\n-2.54418939e-01 3.32704186e-01 1.28121421e-01 -1.08612649e-01\\n-1.34354249e-01 -4.21632916e-01 -4.88093160e-02 1.05022844e-02\\n3.50227915e-02 2.35844791e-01 1.83234736e-01 2.13628918e-01\\n1.60608873e-01 1.30243212e-01 1.81658626e-01 8.20287168e-01\\n-7.53031671e-02 4.55096923e-02 -1.82220578e-01 2.43975878e-01\\n1.76228583e-01 -3.51454288e-01 2.32578918e-01 2.33466357e-01\\n-1.06941111e-01 -2.63206065e-01 -3.42116535e-01 3.98094147e-01\\n-4.25924882e-02 -1.26708031e-01 -2.77030081e-01 2.47825772e-01\\n-6.57393783e-02 -4.78697568e-01 6.36573911e-01 7.31100664e-02\\n1.94283128e-01 3.34346369e-02 5.49321063e-03 -8.48056078e-02\\n-1.19356498e-01 3.13592046e-01 8.44040662e-02 9.78462249e-02\\n-3.21126372e-01 -2.71897942e-01 -2.50280768e-01 1.04133047e-01\\n-3.42602462e-01 1.75242484e-01 -1.68729961e-01 -3.87697406e-02\\n1.64649621e-01 2.11816840e-02 -3.19322646e-01 2.01137438e-01\\n-1.43027961e-01 -2.11283341e-01 2.30815895e-02 4.09038991e-01\\n-1.20129175e-01 2.12754697e-01 4.75316755e-02 -6.03567399e-02\\n6.55906975e-01 2.72461146e-01 3.08596075e-01 -6.33337721e-02\\n1.94544151e-01 -4.97832485e-02 1.16500773e-01 1.30674303e-01\\n-6.53613448e-01 3.15068811e-01 -1.11108005e-01 -2.17268571e-01\\n8.15218017e-02 -4.51544486e-02 3.02738637e-01 -2.61901617e-01\\n5.55997901e-02 -1.59935296e-01 -3.47842276e-01 -2.64477134e-01\\n-2.10771158e-01 -6.71768785e-02 4.35598433e-01 -5.88019192e-01\\n8.60315338e-02 1.56214520e-01 -4.85228300e-01 -1.90070316e-01\\n1.47227883e-01 5.74153215e-02 1.52253255e-01 1.82843611e-01\\n-1.68452680e-01 -5.92767537e-01 2.32608154e-01 -4.30430055e-01\\n-3.81963044e-01 8.52880031e-02 -3.27997595e-01 1.94562733e-01\\n3.14283222e-02 -1.09618381e-01 -1.61703393e-01 5.49438782e-02\\n-2.42870778e-01 -3.65384892e-02 7.03099668e-02 1.41151816e-01\\n2.84305274e-01 5.14078550e-02 -3.18377256e-01 5.59235215e-01\\n-1.33370072e-01 4.82009470e-01 2.05154508e-01 -9.44568932e-01\\n4.92913783e-01 1.20449468e-01 -1.64191008e-01 -3.73962522e-01\\n4.76290941e-01 -3.40915561e-01 -1.65231675e-01 7.06228837e-02\\n-2.47006744e-01 -2.43057907e-01 2.71649122e-01 -2.10424393e-01\\n-2.70646662e-01 5.04853129e-01 1.07559793e-01 1.56167999e-01\\n2.51115024e-01 -1.75179183e-01 -1.84980154e-01 1.32504441e-02\\n-1.70787171e-01 -1.86189771e-01 -5.18563390e-01 9.53221843e-02\\n-8.99697766e-02 -5.34628570e-01 -7.29088485e-02 -4.88227755e-01\\n-1.50759876e-01 -3.81311446e-01 -1.35275409e-01 1.66550368e-01\\n1.85105771e-01 1.46135911e-01 -3.55250686e-02 -2.53697094e-02\\n-4.96067107e-02 -6.71058238e-01 -1.27098307e-01 8.58006179e-02\\n4.11959261e-01 1.97341293e-01 1.55876011e-01 -1.13760024e-01\\n2.85732865e-01 5.69348812e-01 -2.70705938e-01 -4.02996153e-01\\n1.74361736e-01 7.49193579e-02 -1.12530040e-02 -2.12153301e-01\\n1.18688390e-01 3.55177581e-01 -2.70727664e-01 4.30949405e-02\\n1.45200063e-02 -7.90123418e-02 3.88696879e-01 8.32263529e-02\\n-2.17001349e-01 -2.13093281e-01 -1.83314964e-01 1.19714729e-01\\n-5.95067918e-01 -2.66887397e-01 6.12141609e-01 2.19292223e-01\\n1.11547582e-01 1.50773183e-01 1.64598539e-01 7.29226274e-03\\n-2.41420925e-01 -3.99667025e-02 3.30092430e-01 1.02053784e-01\\n1.04864277e-01 6.34805709e-02 -1.10372894e-01 -5.27250111e-01\\n-3.49918509e+00 -1.86699510e-01 1.45538315e-01 -3.11240256e-01\\n2.77192622e-01 -1.15822218e-01 1.95405945e-01 -1.14276454e-01\\n-3.59651387e-01 -9.88936871e-02 -2.41814882e-01 -1.24922425e-01\\n1.45729825e-01 1.34170428e-01 1.92309275e-01 1.99971795e-01\\n2.13537246e-01 -2.03018561e-01 -3.49065326e-02 3.74420822e-01\\n-7.31047466e-02 -6.40844464e-01 9.65114981e-02 7.78760612e-02\\n1.70935810e-01 5.47246635e-02 -4.00103420e-01 -1.52063623e-01\\n-2.27440238e-01 -2.38294199e-01 4.46301959e-02 -2.05593497e-01\\n-1.54299304e-01 1.17693290e-01 2.15146452e-01 -1.37234449e-01\\n6.55892789e-02 -2.76214153e-01 -7.39595294e-02 -3.95650297e-01\\n6.40425831e-02 -5.78782260e-01 3.30595747e-02 -5.38194776e-02\\n6.91279948e-01 -1.67431369e-01 2.05288678e-01 -1.44046703e-02\\n7.88142607e-02 1.33377105e-01 8.23362693e-02 -3.79568106e-03\\n-3.10304910e-01 -4.07715589e-01 -1.68326110e-01 -1.68722302e-01\\n6.64076328e-01 4.18242097e-01 -2.25637659e-01 -1.00537047e-01\\n4.65914756e-02 -3.33988160e-01 -4.71619815e-01 -2.22566843e-01\\n-2.17880964e-01 -1.10055983e-01 -6.15973234e-01 -4.20766950e-01\\n-1.19438954e-01 -1.76342279e-01 -1.40307724e-01 5.99196434e-01\\n-2.58876681e-01 -3.77593547e-01 -4.53560203e-02 -3.31817418e-01\\n3.28757346e-01 -1.58357576e-01 1.07058279e-01 -2.21695647e-01\\n-4.24703032e-01 -4.56008255e-01 5.64830378e-02 -2.88960785e-02\\n-1.61012724e-01 -1.69487908e-01 4.29077186e-02 -1.84264019e-01\\n-4.54087049e-01 -5.08217096e-01 3.76435310e-01 -1.47216797e-01\\n3.04129750e-01 1.55662537e-01 3.79576474e-01 6.28399923e-02\\n2.90161133e-01 1.13861123e-02 -1.65219847e-02 -3.34918827e-01\\n1.47305652e-01 8.05802941e-02 6.50428236e-01 -2.14297011e-01\\n3.26011069e-02 3.49388644e-02 -1.85436830e-01 -2.03209147e-02\\n4.14038330e-01 -2.02263325e-01 2.18434170e-01 -1.32506639e-01\\n3.17521781e-01 -2.96642721e-01 -1.82554543e-01 1.16321154e-01\\n5.04915453e-02 5.83705902e-01 -3.07918712e-02 -4.06120807e-01\\n-1.52551129e-01 3.32152754e-01 -2.35682577e-01 1.69914253e-02\\n-3.77646089e-01 6.80886954e-02 -2.34908789e-01 3.62705141e-01\\n4.82622860e-03 -9.05239955e-02 -2.27338985e-01 -2.80054301e-01\\n-2.52985153e-02 3.82852465e-01 2.27443367e-01 -2.63440851e-02\\n-4.80799899e-02 -2.26811141e-01 -1.12443395e-01 1.44623801e-01\\n2.79392093e-01 4.66914892e-01 1.39012188e-01 -2.66904116e-01\\n-7.53899291e-02 3.14006239e-01 -3.39513659e-01 2.80908167e-01\\n-3.43595386e-01 1.20423682e-01 -5.34195125e-01 -2.07130432e-01\\n-2.69177020e-01 -4.97220099e-01 2.83666730e-01 3.89316201e-01\\n3.97446416e-02 -9.96811464e-02 9.20929387e-02 -3.62926841e-01\\n2.39512980e-01 1.91693813e-01 1.42325029e-01 1.18561551e-01\\n2.09425520e-02 6.37884676e-01 -6.12768941e-02 -2.10173815e-01\\n-1.37676999e-01 1.18817672e-01 -2.87767947e-01 -2.43686229e-01\\n-8.07721093e-02 -5.63978493e-01 -8.51650462e-02 4.09803689e-01\\n1.82244301e-01 -1.21554203e-01 -1.96113542e-01 2.61902571e-01\\n-6.56381026e-02 -2.15349644e-01 -2.48035267e-01 7.11072758e-02\\n2.00243354e-01 7.62431920e-02 3.30393553e-01 -4.35705066e-01\\n-4.42033587e-03 1.28926292e-01 -9.61426422e-02 4.80944663e-01\\n3.28532560e-03 1.12552725e-01 -7.46102333e-02 -1.27134547e-01\\n4.81844962e-01 4.66144420e-02 -1.48863763e-01 2.90249232e-02\\n1.26544431e-01 -2.14879408e-01 -3.54991406e-01 3.89944529e-04\\n1.66686699e-02 -1.93925232e-01 5.75323366e-02 2.07905665e-01\\n6.23656660e-02 5.59509173e-02 -5.85761011e-01 -2.27803841e-01\\n-3.31945747e-01 -6.41709268e-02 1.95956379e-01 -5.30103743e-01\\n-1.50092989e-01 -1.43133318e-02 -5.16337693e-01 1.87122330e-01\\n-4.78649512e-02 2.23373827e-02 1.54751137e-01 9.37879011e-02\\n-9.88371968e-02 -2.28561625e-01 2.28904441e-01 2.26014629e-01\\n-2.76064515e-01 -1.61339119e-01 -3.49665210e-02 -9.93677080e-01\\n2.60059118e-01 1.89886972e-01 -2.93134749e-01 1.64345115e-01\\n2.10690815e-02 -6.34835601e-01 1.67405024e-01 -3.82757187e-01\\n-1.50545701e-01 -7.51426304e-03 -2.22365737e-01 -4.31700408e-01\\n5.24930656e-02 6.66765347e-02 -1.83398277e-01 4.24416363e-01\\n-3.25276226e-01 3.10214162e-01 8.85223597e-02 5.60957827e-02\\n3.15741263e-02 -2.05776736e-01 8.91626105e-02 -3.22096944e-01\\n-3.87834221e-01 -3.58436614e-01 -3.57961208e-01 -3.93983334e-01\\n7.62001262e-04 -4.11852807e-01 -1.95396274e-01 2.59278882e-02\\n4.25747901e-01 1.24760047e-01 -1.40744999e-01 -3.58818769e-01\\n7.54674897e-02 -5.38769007e-01 1.28063649e-01 -3.07711989e-01\\n-9.86071303e-02 -1.90828472e-01 2.91152388e-01 1.00441083e-01\\n1.54188946e-01 -2.35401541e-01 4.46903795e-01 -3.43252838e-01\\n-2.25485310e-01 -1.14401534e-01 2.49985293e-01 3.09888665e-02\\n2.65857011e-01 -4.26427931e-01 -7.72912279e-02 3.10622215e-01\\n1.22864217e-01 8.62107947e-02 1.94351137e-01 -2.24707663e-01\\n-1.19246818e-01 2.28468359e-01 -3.54896009e-01 2.04259858e-01\\n7.75683045e-01 1.07028909e-01 1.80673555e-01 1.76774830e-01\\n8.93589631e-02 2.23281771e-01 5.36424398e-01 1.14867855e-02\\n-9.73608792e-02 2.75751054e-01 1.17799425e-02 -3.55318725e-01\\n-1.25693968e-02 -1.30831748e-01 -9.80305523e-02 -2.96048164e-01\\n6.27217710e-01 4.29112524e-01 -3.30575347e-01 -3.83231401e-01\\n-1.56274542e-01 -1.37291998e-01 2.44909540e-01 1.08147614e-01\\n1.35780545e-03 -1.01999208e-01 4.80567306e-01 -8.95733312e-02\\n1.75356314e-01 4.97408569e-01 -1.98922396e-01 -2.56918669e-01\\n6.26240447e-02 2.91105807e-01 -5.63238189e-02 5.53678334e-01\\n-2.83362687e-01 3.21722835e-01 7.95120001e-02 9.96009037e-02\\n-1.65802211e-01 -1.46606080e-02 3.42603952e-01 1.23080969e-01\\n2.20478073e-01 3.29124033e-02 4.64192420e-01 4.73648608e-01\\n1.86136812e-01 4.73429650e-01 3.09388459e-01 -8.06790963e-03\\n2.08425477e-01 6.33738756e-01 3.75471741e-01 1.41821966e-01\\n4.12914790e-02 5.60642444e-02 1.05031826e-01 2.14857571e-02\\n2.75964350e-01 3.60108614e-01 1.14466950e-01 8.44450474e-01\\n2.82715768e-01 3.25512826e-01 7.04381227e-01 -7.04646289e-01\\n-4.04966742e-01 1.47195105e-02 6.07197881e-01 -4.31804925e-01\\n-2.95219887e-02 2.10179463e-01 -2.67541677e-01 2.44841784e-01\\n-5.03162682e-01 -3.10021043e-01 -6.04984611e-02 3.19326238e-04\\n5.48759662e-02 -2.39338785e-01 -1.32619321e-01 1.52881145e-01\\n-4.40830290e-02 -4.68892753e-02 -3.81141365e-01 -1.08870707e-01\\n-2.74463117e-01 -8.59094188e-02 3.15647162e-02 -7.73016363e-02\\n-1.95661157e-01 -4.16083753e-01 -1.38009265e-01 -1.06742112e-02\\n2.15738207e-01 -1.44944757e-01 -1.77337587e-01 -6.62202165e-02\\n2.35435575e-01 2.04775795e-01 6.88123405e-01 1.09979182e-01\\n7.64895082e-02 -1.30030096e-01 -2.08528832e-01 1.65005669e-01\\n1.00251123e-01 3.05445921e-02 -8.43950454e-03 3.02694559e-01\\n-2.89447814e-01 -1.84940591e-01 3.13915648e-02 2.55964309e-01\\n-5.13837814e-01 5.80943972e-02 -7.85986409e-02 2.22446382e-01\\n1.26922093e-02 3.32587421e-01 -1.25920326e-01 1.30321994e-01\\n-8.05323645e-02 -4.30001497e-01 3.66479933e-01 -1.47306427e-01\\n-2.30360523e-01 5.42453937e-02 2.01186970e-01 2.71063387e-01\\n-2.73645073e-01 -8.94198045e-02 -1.53999373e-01 2.05149844e-01\\n2.24770177e-02 2.18519092e-01 -1.32797137e-01 -2.55409986e-01\\n-3.17207783e-01 1.44487962e-01 -7.70623088e-02 2.32485548e-01\\n5.19480333e-02 3.86689544e-01 1.78385541e-01 6.63684607e-02\\n3.98666203e-01 -3.17284688e-02 -2.98818529e-01 -2.30783150e-01\\n-2.05363408e-01 -7.44481683e-02 -7.32258782e-02 1.32661304e-02\\n1.47603258e-01 -3.15225720e-01 -2.29926761e-02 -2.36715123e-01\\n-1.73129871e-01 -3.59223396e-01 -6.28776103e-02 -1.47057503e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Contribute to methodology and technology decisions and ensure that the team is continuously on top of latest trends to help evolve the platform Liaise with other functions involved in data generation, ingestion, storage and processing Get hands-on with working with the data to really understand what it means Continuously enhance our growing suite of tools and platforms that our data scientists are depending upon Be a key resource with how we will extend our technical infrastructure to incorporate cloud technologies Work very closely with the data science team, business users and fellow technology colleagues on a daily basis. Ideal candidates will be involved in designing and building the infra for a new analytics platform which is then to be used to monitor and optimize the consumption of balance sheet capacity, capital, liquidity and funding and manage the risk exposure of the consolidated balance sheet Your profile: Degree in Computer Science or Financial Engineering Strong knowledge of Python with an additional working knowledge of Java being a distinct advantage Practical knowledge of how to implement CI/CD pipelines with TeamCity, Jenkins, Bamboo etc Good analytical skills and mathematical fluency (e.g. a growing interested in R, Scala, NoSQL, Spark etc.) Good understanding of data storage, cloud computing, interfaces, visualization and streaming data Entrepreneur at heart who is continuously looking for ways to improve and enhance the systems around you Highly numerate with logical analytical thought process and attention to details Reliable when working independently, with sound judgment for when to escalate issues Critical thinker who communicates clearly and enjoys the challenges of a fast-paced environment Committed team player with good interpersonal skills, enthusiasm and output vision Someone who actively keeps up-to-date with technology Keen to work with both structured and unstructured data - we have lots of it Benötigte Skills Python Python JAVA R Scala NoSQL',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Decisiveness\", \"Infrastructure\", \"Management\", \"Communications\", \"Enthusiasm\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"Capitalization\", \"Balance Sheet\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Atlassian Bamboo\", \"Visualization\", \"Scala (Programming Language)\", \"Activism\", \"Optical Data Storage\", \"Python (Programming Language)\", \"Financial Engineering\", \"E (Programming Language)\", \"Cloud Storage\", \"Pipelining\", \"Unstructured Data\", \"Data Science\", \"Consolidation\", \"Storages\", \"R (Programming Language)\", \"Teamcity\", \"Resourcing\", \"Liquidation\", \"Additives\", \"Java (Programming Language)\", \"Cloud Computing\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Bislama', 'Hausa']\"},\n", + " {'company_id': '92',\n", + " 'job_title': 'product specialist - preclinical software',\n", + " 'location': 'Pratteln',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.41236180e-01 2.90319145e-01 4.68818903e-01 -9.23457518e-02\\n5.66722870e-01 -4.17652465e-02 -3.56336087e-02 3.46196562e-01\\n3.00159715e-02 -3.08371961e-01 -3.29736546e-02 -3.26030612e-01\\n1.48460746e-01 2.54644424e-01 -4.24939804e-02 4.34395999e-01\\n3.37981522e-01 1.26956776e-01 -1.75786436e-01 2.45356038e-01\\n1.81513168e-02 -1.67816430e-01 2.34795898e-01 7.89804459e-01\\n3.97713900e-01 -2.32347809e-02 -1.05665080e-01 -6.33461997e-02\\n-1.60741121e-01 -1.71358630e-01 5.27925313e-01 -1.99466757e-02\\n-1.54859722e-01 -3.14400315e-01 7.80410245e-02 1.13540187e-01\\n-2.80140907e-01 -6.28394634e-02 -1.53352886e-01 1.40269026e-01\\n-6.47592664e-01 -2.66026974e-01 -9.40905064e-02 8.47475231e-02\\n-3.34530920e-01 -3.29408914e-01 5.53082451e-02 -7.76224285e-02\\n1.67329133e-01 1.71046063e-01 -4.49607134e-01 1.66265577e-01\\n-3.25467885e-01 -2.84837902e-01 2.95220584e-01 6.41033173e-01\\n5.08179255e-02 -3.86479795e-01 -5.68061709e-01 -3.14716160e-01\\n1.74129382e-01 -4.79413718e-02 -3.23455818e-02 -3.15818429e-01\\n3.74750853e-01 1.35440528e-01 5.28140143e-02 3.19644034e-01\\n-8.42938304e-01 -1.09258085e-01 -1.88590288e-01 -6.64544106e-02\\n-2.67158985e-01 9.89961624e-03 -2.77759373e-01 -2.08844185e-01\\n-1.38790771e-01 4.15404975e-01 5.56623116e-02 -1.50841763e-02\\n-1.65076584e-01 2.79891521e-01 -3.14373672e-01 3.39975476e-01\\n1.75061300e-01 2.81090587e-01 2.64529854e-01 2.20599443e-01\\n-2.87707150e-01 4.69859570e-01 2.49250501e-01 -3.26760292e-01\\n2.66165137e-01 -1.60747021e-02 3.26063842e-01 -1.10008880e-01\\n1.84474319e-01 3.96711901e-02 -3.22044462e-01 3.55394065e-01\\n2.18067840e-01 -2.12915629e-01 3.70260552e-02 -4.53471430e-02\\n1.65863335e-02 -6.41060174e-02 1.65947020e-01 1.94752991e-01\\n-4.16675478e-01 4.18574452e-01 1.44840509e-01 -2.24833727e-01\\n-8.82302150e-02 -4.61693347e-01 -1.60161436e-01 1.52758211e-01\\n1.95015734e-03 1.63820744e-01 1.07539549e-01 7.15142936e-02\\n2.36166805e-01 -1.06738776e-01 5.16195111e-02 8.20751667e-01\\n-1.39197648e-01 6.94318563e-02 -2.30538666e-01 3.61465096e-01\\n1.60673708e-01 -1.96954340e-01 2.19268352e-01 1.60646111e-01\\n-9.38709080e-02 -8.41007829e-02 -1.73420042e-01 3.82595897e-01\\n4.05185558e-02 -2.65480280e-01 -2.89069951e-01 1.88551471e-01\\n-6.08726814e-02 -2.97211200e-01 5.47578216e-01 -1.34295329e-01\\n6.16129600e-02 -1.78153425e-01 -2.31506862e-03 -2.20270455e-02\\n-1.34399533e-01 1.75396591e-01 1.65797025e-01 6.03906363e-02\\n-2.85318613e-01 -2.52690494e-01 -9.86328870e-02 7.81935453e-03\\n-2.96563983e-01 1.36996150e-01 -1.80051327e-01 -1.38085485e-01\\n2.83705920e-01 7.10104108e-02 -2.61219949e-01 2.21112803e-01\\n-1.29115090e-01 -4.96139228e-02 -7.42911994e-02 2.80305326e-01\\n-2.75938630e-01 2.36028209e-01 -6.36880025e-02 -1.94869161e-01\\n5.58151722e-01 -3.05296965e-02 2.15724230e-01 3.32269296e-02\\n3.27327669e-01 -6.85470849e-02 2.49059379e-01 1.81374013e-01\\n-6.19416952e-01 3.66627216e-01 -1.52457982e-01 -1.06910378e-01\\n1.90078408e-01 -1.44409597e-01 3.54053676e-01 -2.57481694e-01\\n9.33321789e-02 -1.21398635e-01 -2.80310214e-01 -3.45704138e-01\\n-1.78863674e-01 -3.40287685e-02 3.07799697e-01 -3.73375386e-01\\n-9.49840173e-02 2.42244601e-01 -4.94794905e-01 -2.72151947e-01\\n1.81298330e-01 2.77989566e-01 1.07822105e-01 2.12005049e-01\\n-2.67193109e-01 -4.33954716e-01 1.90990478e-01 -4.75398183e-01\\n-1.27627894e-01 9.74676609e-02 -1.63165629e-01 2.17331663e-01\\n-3.00837439e-02 6.02189675e-02 -1.34491056e-01 1.13878042e-01\\n-2.24483415e-01 -2.96750274e-02 1.38052091e-01 -5.24428934e-02\\n1.69936776e-01 1.46973401e-01 -3.14377785e-01 4.33021069e-01\\n-2.36965179e-01 5.27099967e-01 4.71851081e-02 -1.09638453e+00\\n4.55236375e-01 3.79381835e-01 8.58560950e-02 -3.83684218e-01\\n7.20253706e-01 -3.48269701e-01 -1.48789242e-01 5.56652769e-02\\n-4.50578064e-01 -2.59066522e-01 2.37096444e-01 -2.13534772e-01\\n-2.42498323e-01 5.72614312e-01 5.66710308e-02 1.98284373e-01\\n2.63031125e-01 -2.06195593e-01 -9.12628323e-02 1.36586085e-01\\n-1.66414395e-01 -3.14506173e-01 -5.98668218e-01 -1.28232792e-01\\n-6.26697466e-02 -3.74196649e-01 -1.92491770e-01 -4.52266276e-01\\n-1.84717983e-01 -3.07367295e-01 -3.62683386e-02 1.25330046e-01\\n2.41897121e-01 1.36977166e-01 -4.77643497e-02 1.28264099e-01\\n-1.52111486e-01 -5.72612762e-01 3.63987312e-02 1.13705680e-01\\n3.11079651e-01 2.68742919e-01 1.15773961e-01 1.22746974e-01\\n7.63054937e-03 5.74436784e-01 -3.21661830e-01 -2.32951015e-01\\n1.61837205e-01 1.84737727e-01 6.71269372e-02 -6.42310381e-02\\n2.06276909e-01 2.92135149e-01 -1.89365357e-01 7.48000666e-02\\n-1.53152734e-01 -2.54523214e-02 3.12078714e-01 1.21913083e-01\\n-2.51913160e-01 -1.58904463e-01 -1.60549045e-01 1.11034438e-01\\n-5.08551478e-01 -1.89358413e-01 4.03058946e-01 -4.48963158e-02\\n5.95425926e-02 1.54752895e-01 1.74113512e-01 -1.03809685e-03\\n-3.13960373e-01 -2.60382056e-01 2.46689737e-01 1.04118034e-01\\n2.88166776e-02 9.54283178e-02 4.65270355e-02 -5.76100171e-01\\n-3.05432415e+00 -2.47175038e-01 5.52850701e-02 -2.27834955e-01\\n3.77492189e-01 -2.53612757e-01 1.17268167e-01 2.82918308e-02\\n-4.61560547e-01 1.34097055e-01 -4.38342467e-02 -8.94619226e-02\\n2.06331909e-01 1.52879611e-01 1.25963196e-01 1.45902306e-01\\n2.03863084e-02 -2.35907033e-01 2.40214355e-02 3.73251021e-01\\n-1.31283209e-01 -6.99433446e-01 2.30796337e-01 1.09518990e-02\\n2.59216726e-01 2.37477928e-01 -5.91582656e-01 -4.81126606e-02\\n-2.64471263e-01 -2.47499496e-01 1.01105012e-01 -2.92708308e-01\\n-1.52469844e-01 2.34721750e-01 2.34890997e-01 -9.73203182e-02\\n4.88628894e-02 -4.27352488e-01 -1.34496212e-01 -4.66077954e-01\\n1.79880589e-01 -7.87260652e-01 1.50660295e-02 -5.96798584e-02\\n6.47072315e-01 -2.11035937e-01 7.33514801e-02 1.08368084e-01\\n1.49367884e-01 1.55379802e-01 1.87394187e-01 4.70388532e-02\\n-2.93936372e-01 -2.71456659e-01 -4.94870022e-02 -1.80771366e-01\\n4.53548431e-01 4.45369363e-01 -2.40923464e-01 -1.34767517e-02\\n3.70594189e-02 -2.00335830e-01 -6.43863559e-01 -2.02807933e-01\\n-1.23539269e-01 -6.67786300e-02 -6.79483533e-01 -3.58735472e-01\\n-2.19045505e-01 -1.45952150e-01 -1.46569815e-02 6.15537465e-01\\n-3.48911196e-01 -3.35577130e-01 -5.46068773e-02 -6.07149839e-01\\n3.29453588e-01 -1.24562748e-01 -8.70473683e-03 -2.61351585e-01\\n-2.21393973e-01 -2.73619324e-01 1.35207146e-01 1.30115692e-02\\n-7.73050077e-03 -2.94414103e-01 2.72318460e-02 -2.01653138e-01\\n-3.44254613e-01 -5.95703423e-01 4.04787391e-01 1.75976694e-01\\n4.80892420e-01 1.30705416e-01 2.73006618e-01 -4.89520542e-02\\n2.76696801e-01 1.03536181e-01 2.32754163e-02 -4.81830835e-01\\n1.57766137e-02 5.88140637e-02 5.99879384e-01 -2.52358407e-01\\n-4.29520160e-02 -5.48180267e-02 -3.77218783e-01 -8.75121653e-02\\n3.14200521e-01 -1.67970031e-01 1.49244294e-01 -1.78529218e-01\\n2.16544390e-01 -2.99259752e-01 -1.41383275e-01 6.15706965e-02\\n7.34815001e-02 7.03947127e-01 -4.29884121e-02 -3.96385312e-01\\n-1.24017030e-01 5.36005080e-01 -3.76713611e-02 -1.89417601e-02\\n-1.81841284e-01 6.42269477e-02 -3.07847381e-01 3.53685558e-01\\n3.57882828e-02 -9.97645706e-02 -2.46962011e-01 -1.04008161e-01\\n-2.00272858e-01 3.01968783e-01 2.38865972e-01 2.00720623e-01\\n-1.81205310e-02 -3.58551085e-01 -1.51374504e-01 2.64122427e-01\\n1.83315873e-01 4.08937752e-01 2.23230869e-01 -2.08229631e-01\\n9.00992565e-03 2.98316270e-01 -9.84220654e-02 2.84117669e-01\\n-1.24116063e-01 2.50775576e-01 -5.77524364e-01 -2.26405069e-01\\n-2.79812992e-01 -2.81492829e-01 2.09600627e-01 3.59326929e-01\\n2.57427990e-01 -1.04996741e-01 -3.41524445e-02 -5.40265203e-01\\n2.01001272e-01 8.43514800e-02 1.67679042e-01 6.96230531e-02\\n6.64825886e-02 6.20321631e-01 -4.25532088e-03 -1.54301718e-01\\n-2.98099741e-02 5.46312034e-02 -1.25024289e-01 -8.52171183e-02\\n1.97442826e-02 -5.10105968e-01 -1.82496816e-01 4.24987525e-01\\n1.36418283e-01 -1.68541238e-01 -1.99241474e-01 3.47902566e-01\\n1.55603532e-02 -2.35988528e-01 -3.30263436e-01 8.61595385e-03\\n4.40368831e-01 1.14850968e-01 3.01565289e-01 -6.38768554e-01\\n-1.81759242e-02 -4.07677740e-02 1.09443665e-01 3.95688474e-01\\n6.63183406e-02 -7.02548772e-04 -2.40801483e-01 -1.70762584e-01\\n3.43879640e-01 -9.45673212e-02 -3.16042379e-02 5.47040254e-02\\n1.10958137e-01 -1.97015524e-01 -3.66111547e-01 6.79327697e-02\\n1.44685451e-02 -2.40357772e-01 -1.30340569e-02 2.10021287e-01\\n1.03559315e-01 1.30700931e-01 -5.57247877e-01 -1.24307737e-01\\n-1.46306559e-01 2.24174321e-01 -6.62564114e-02 -5.34228146e-01\\n2.08634567e-02 -8.16479474e-02 -6.27481580e-01 2.53940344e-01\\n-6.26832247e-02 -1.54147536e-01 1.66639626e-01 -7.34204501e-02\\n-3.47485095e-01 -1.07499398e-01 1.27088025e-01 1.64875433e-01\\n-2.24140018e-01 -2.92828679e-01 -8.52679312e-02 -9.98834252e-01\\n1.61549687e-01 -6.22524507e-02 -1.03856340e-01 2.35304683e-01\\n7.15738237e-02 -6.71869397e-01 2.24896505e-01 -3.41781080e-01\\n-1.85046613e-01 -4.84870449e-02 -2.47522876e-01 -3.52721840e-01\\n8.70035142e-02 1.01530962e-02 -1.67791694e-01 2.78187692e-01\\n-2.55334944e-01 4.73080397e-01 -1.16868265e-01 5.80164902e-02\\n5.94448075e-02 -2.94115335e-01 1.95320338e-01 -2.80452460e-01\\n-5.00358820e-01 -1.41624987e-01 -4.02969241e-01 -2.75825560e-01\\n-1.25201538e-01 -2.63486445e-01 -1.18998230e-01 9.71369967e-02\\n3.90923709e-01 -8.01141001e-03 -2.27863804e-01 -1.18037961e-01\\n1.22868650e-01 -4.72276628e-01 6.44065142e-02 -5.86490259e-02\\n6.40667975e-02 -1.07901827e-01 3.12192082e-01 1.06208593e-01\\n1.87864840e-01 -3.72850478e-01 4.30174798e-01 -3.68719012e-01\\n-3.95097286e-01 -1.34036019e-01 5.21657765e-02 -1.27120689e-02\\n4.62632090e-01 -4.89726245e-01 -1.92438483e-01 2.91215986e-01\\n4.97106649e-02 5.16386963e-02 2.45956913e-01 -3.00750196e-01\\n-1.33681566e-01 2.08136052e-01 -4.81870770e-01 1.46243244e-01\\n7.36215353e-01 1.17799714e-01 1.85424075e-01 1.53745860e-01\\n1.05588660e-01 1.81233451e-01 5.41279912e-01 -1.00047126e-01\\n-1.53822467e-01 3.76902461e-01 1.02789871e-01 -5.83520770e-01\\n-2.19591543e-01 -8.88781622e-02 -2.07525596e-01 -5.31996012e-01\\n6.70110047e-01 3.42069000e-01 -3.68149310e-01 -1.37957528e-01\\n-2.85643458e-01 -1.78617150e-01 1.69482529e-01 -7.79995769e-02\\n6.32206947e-02 1.73296724e-02 4.28825736e-01 -9.10877436e-02\\n3.78224224e-01 5.39284587e-01 -1.18567228e-01 -3.45023006e-01\\n-8.49296898e-03 2.36933216e-01 4.98025231e-02 3.67129803e-01\\n-9.56572071e-02 3.15325588e-01 -7.26283118e-02 1.76652014e-01\\n-2.04078645e-01 -2.29342114e-02 1.27721339e-01 4.82517369e-02\\n1.11746714e-01 1.26809284e-01 5.67301214e-01 3.77317607e-01\\n3.69036525e-01 3.64863962e-01 3.62920642e-01 2.13109478e-02\\n6.41618848e-01 5.60789168e-01 3.06158721e-01 5.74386567e-02\\n5.98285720e-03 1.43182710e-01 9.94853526e-02 7.05905259e-02\\n3.88389528e-01 3.75024140e-01 7.89907351e-02 8.80754530e-01\\n2.03281358e-01 3.54392767e-01 7.64046788e-01 -5.08702040e-01\\n-2.37442940e-01 5.78153059e-02 4.53920066e-01 -4.18236315e-01\\n1.46451816e-02 1.54308513e-01 -1.66453674e-01 1.74687192e-01\\n-4.32583988e-01 -2.73530126e-01 -4.54448722e-02 1.63447604e-01\\n1.10739008e-01 -1.68307006e-01 -8.80681574e-02 1.73683375e-01\\n-2.05804944e-01 -2.21955836e-01 -4.44325268e-01 -1.61756992e-01\\n-1.70715705e-01 -1.01643704e-01 -9.78280455e-02 -1.24371216e-01\\n-2.97053576e-01 -2.91949153e-01 -4.74195257e-02 -4.72845361e-02\\n3.47535044e-01 -1.54852197e-01 -5.99856228e-02 -1.38944760e-01\\n4.86571610e-01 1.52548760e-01 4.97602046e-01 -6.16845712e-02\\n1.50039569e-01 -3.05339038e-01 -1.92212015e-01 1.41560704e-01\\n1.98608413e-01 5.95956109e-03 -2.04618126e-02 3.66302967e-01\\n-2.24097788e-01 -1.07699960e-01 3.79665568e-02 3.40706855e-01\\n-3.43427092e-01 -6.89847469e-02 -1.09495625e-01 5.90764023e-02\\n-1.95106119e-03 1.25781789e-01 -2.18631774e-01 2.25808974e-02\\n-1.31311983e-01 -3.88595939e-01 2.35820234e-01 -1.12303726e-01\\n-2.89228737e-01 -2.37815902e-02 3.13339174e-01 3.05543602e-01\\n-1.81422740e-01 8.48787278e-03 -2.04124957e-01 1.62539214e-01\\n1.13118701e-01 2.36490965e-01 -1.83568254e-01 -3.13529670e-01\\n-2.87322700e-01 1.42046392e-01 -1.52944729e-01 9.69607458e-02\\n8.79425853e-02 4.77454960e-01 5.50093278e-02 7.58895352e-02\\n5.18808842e-01 -2.17739552e-01 -2.67346710e-01 -4.30566519e-01\\n-1.45898923e-01 -2.89213628e-01 -1.66083410e-01 -1.13029540e-01\\n2.25474715e-01 -2.85954416e-01 -5.95154688e-02 -3.37856412e-01\\n-1.27866745e-01 -3.71786416e-01 -6.93245605e-03 -6.75079301e-02]]',\n", + " 'job_description': \"PDS Life sciences is a leading global provider of software solutions and services dedicated to life science and pharmaceutical preclinical research. Our unique products and outsourced services accelerate the development and regulatory submission of biopharma products. For more than 30 years, we have developed software by scientists, for scientists - a hallmark that is unrivaled in our field. For that reason, eight of the world’s top 10 pharma companies have relied on PDS software, as do industry-leading CROs, chemical companies, universities and regulatory agencies. Over the past several years, PDS has undergone many changes and is now competing in new fast-growth segments of our markets. We are still nimble with a rewarding start-up culture that allows you to make an immediate impact on the business. With business offices in New Jersey, Switzerland and Tokyo, we think globally, but act locally and now we have an exciting opportunity for a Product Specialist located in our Pratteln Basel office. PDS Life Sciences is searching for a motivated person to join a global leader in Preclinical LIMS Software Solutions as a Preclinical Product Specialist. Are you looking for an exciting new opportunity to become a key subject matter expert in the development of preclinical software? Join our team of scientists and software development experts in this unique opportunity. PDS prides itself on its reputation to create solutions For Scientists By Scientists. Job Description: Responsible for a full range of activities which ensure operational effectiveness and excellence in product implementation and optimization with customers.Responsible for creating/maintaining training materialsResponsible for providing first level support to existing customers as requiredResponsible for providing consulting services to customers as requiredAssists the Validation team during the customer’s OQ ProcessAssists with internal acceptance testing (OQ) Assisting with writing Test Scripts Assists with functional specifications development Assists with writing user stories and test specifications Assisting with updates to user manuals and release notes Provides suggestions for product improvement Some domestic travel and infrequent international travel needed Duties as directed by manager(s) Requirements: Degree in life sciences, Biology, Toxicology, Pathology, Animal Science or other related field 1-3 years’ laboratory experience in a preclinical research facility (CRO, pharmaceutical industry)Knowledge of Laboratory Information Management System(s) (LIMS) a plusGxP knowledge a plusHigh level of communication, organization and intercultural skillsGood knowledge of IT technology and IT methodologyMust be fluent in EnglishExcellent writing skillsStrong attention to detailAbility to work in a team and independentlyCustomer service orientation skills a plusAble to travel (approximately 10%... domestic and international) Job Type: Full-time Salary: CHF70,000.00 to CHF80,000.00 /year Experience: Biological Lab: 1 year (Preferred) Education: Bachelor's (Preferred) \",\n", + " 'soft_skills': '[\"Research\", \"Writing\", \"Service-Orientation\", \"Management\", \"Operations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"User Story\", \"Life Sciences\", \"PD 5500 Standard\", \"Outsourcing\", \"Animal Science\", \"Industrialization\", \"Activism\", \"Maintainability\", \"Levelling\", \"Business Office Procedures\", \"Toxicology\", \"Productivity Improvement\", \"Localization\", \"Functional Specification\", \"Patentable Subject Matter\", \"Release Notes\", \"Biology\", \"Management Systems\", \"Personalization\", \"Information Management\", \"Laboratory Information Management Systems\", \"Validations\", \"Pharmaceuticals\", \"Pathology\", \"Software Development\", \"Community Organizing\", \"Test Script\", \"Job Descriptions\", \"Acceptance and Commitment Therapy (ACT)\", \"Acceptance Testing\"]',\n", + " 'languages': \"['English', 'Ossetic']\"},\n", + " {'company_id': '37',\n", + " 'job_title': 'data engineer ef education first - associate level',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Education Training Services',\n", + " 'website': 'www.ef.com',\n", + " 'jobdescription_embedded': '[[-7.13831335e-02 2.68712938e-01 5.48830986e-01 -4.31743711e-02\\n5.21940768e-01 -1.67066246e-01 4.45478074e-02 5.89715421e-01\\n-5.27753942e-02 -4.89541143e-01 -9.27176699e-02 -3.03665847e-01\\n-1.92509759e-02 1.33665353e-01 1.40386775e-01 3.85331780e-01\\n2.08407477e-01 1.43563733e-01 -2.08950177e-01 2.60225773e-01\\n1.23485737e-01 -1.18826583e-01 1.69246092e-01 7.96625495e-01\\n4.88331318e-01 -2.07768544e-03 -1.98247842e-02 -9.05586109e-02\\n-2.09431201e-01 -3.23135942e-01 4.59163219e-01 -5.85045330e-02\\n-1.80026218e-01 -3.68967324e-01 5.66360988e-02 -5.88107714e-03\\n-2.51680404e-01 -9.98953283e-02 -6.86669946e-02 1.97209686e-01\\n-4.87213641e-01 -2.98452914e-01 -1.55093381e-02 -4.09873612e-02\\n-3.11148912e-01 -3.80632073e-01 9.77071673e-02 3.67947854e-02\\n1.84638500e-01 1.02800563e-01 -4.32717264e-01 2.44622692e-01\\n-2.51461744e-01 -1.58534482e-01 2.56993383e-01 7.07744896e-01\\n-1.68754887e-02 -4.19182718e-01 -5.87125063e-01 -3.31701249e-01\\n1.58648759e-01 -9.95023400e-02 -1.40892677e-02 -2.77910113e-01\\n3.49790931e-01 2.48045269e-02 1.47327662e-01 2.40685910e-01\\n-6.85154259e-01 -6.83094636e-02 -2.23256782e-01 -2.86017153e-02\\n-2.40029916e-01 -1.45453392e-02 -3.41388822e-01 -9.27574709e-02\\n-1.55565903e-01 4.14132088e-01 4.27225754e-02 -1.30996769e-02\\n-1.47944003e-01 3.20776701e-01 -1.99172065e-01 4.37319696e-01\\n1.98036090e-01 2.80869067e-01 9.07239243e-02 2.61881948e-01\\n-3.86323720e-01 4.56956893e-01 1.30886525e-01 -3.28037798e-01\\n1.64370582e-01 6.92902282e-02 5.18994212e-01 -1.09715328e-01\\n1.11935712e-01 3.95040065e-02 -3.07159930e-01 3.28623056e-01\\n2.26784378e-01 -3.02808225e-01 1.18445635e-01 -9.15177464e-02\\n2.75544617e-02 -7.83294290e-02 1.22149296e-01 1.21135697e-01\\n-2.17962772e-01 3.96692365e-01 -5.71839046e-03 -2.28258803e-01\\n-9.52792987e-02 -5.46339333e-01 -7.99353141e-03 -1.18300999e-02\\n2.09644027e-02 7.82603323e-02 1.58882409e-01 1.96947828e-01\\n2.20907047e-01 -5.27852289e-02 1.53433830e-01 8.20567429e-01\\n-1.15729064e-01 2.87624858e-02 -3.65544707e-01 2.48024285e-01\\n5.38649522e-02 -3.51763725e-01 2.77504981e-01 1.74894050e-01\\n-4.04908918e-02 -1.52767166e-01 -1.86067089e-01 3.18166584e-01\\n-2.15057414e-02 -2.33161837e-01 -2.62625843e-01 2.13937521e-01\\n-5.19695990e-02 -3.47727090e-01 5.54340601e-01 8.26471671e-02\\n1.51873425e-01 -1.00771308e-01 -3.40677500e-02 -1.40321150e-01\\n-8.19023922e-02 3.80302742e-02 1.07732274e-01 -2.86382250e-02\\n-2.45429799e-01 -3.03641230e-01 -2.05550775e-01 6.61794320e-02\\n-2.77993590e-01 1.72421023e-01 -4.15852219e-02 -1.41670808e-01\\n2.59412378e-01 8.86371173e-03 -2.85456747e-01 2.97867745e-01\\n-1.53674692e-01 9.79248341e-03 -6.38451986e-03 3.80456299e-01\\n-2.63276577e-01 2.31363058e-01 -4.08444963e-02 -8.53994563e-02\\n5.64438283e-01 1.03420779e-01 1.14589408e-01 -1.02162883e-01\\n2.54717022e-01 4.62259129e-02 1.11438185e-01 1.44903317e-01\\n-7.10092902e-01 3.07486624e-01 -2.21159942e-02 -5.99461719e-02\\n1.79916009e-01 -1.00868776e-01 3.21888000e-01 -2.41313711e-01\\n6.19043072e-04 -9.98877361e-02 -2.78433561e-01 -2.65704662e-01\\n-1.21995308e-01 -8.79946649e-02 3.59849155e-01 -4.31571662e-01\\n-1.37589857e-01 2.01866716e-01 -4.76746887e-01 7.00860023e-02\\n9.44742784e-02 2.12313682e-01 1.78495303e-01 1.87152803e-01\\n-2.44722024e-01 -3.98013532e-01 1.10801257e-01 -3.03785920e-01\\n-2.17823133e-01 9.22078341e-02 -3.22812676e-01 1.95749447e-01\\n1.14573129e-01 1.41997576e-01 -1.64266780e-01 3.15525122e-02\\n-2.70967871e-01 -8.69031698e-02 1.52310625e-01 -9.12559219e-03\\n2.91625023e-01 6.99107125e-02 -3.57145488e-01 3.76401752e-01\\n-1.16416179e-01 5.27362704e-01 1.80935428e-01 -7.55879104e-01\\n4.55930114e-01 3.08919579e-01 -6.27308413e-02 -4.45452124e-01\\n5.85036278e-01 -2.09046766e-01 -4.08806838e-02 1.03890002e-01\\n-2.90055960e-01 -3.54207128e-01 2.21493304e-01 -1.06751956e-01\\n-2.14926898e-01 4.60274845e-01 4.31803800e-03 7.88214132e-02\\n1.87831357e-01 -1.56073689e-01 -9.34108868e-02 -9.47151519e-03\\n-2.05107816e-02 -1.56666800e-01 -4.77372229e-01 1.83835011e-02\\n-9.34585929e-02 -3.68961811e-01 -2.17227861e-01 -4.25705403e-01\\n-1.97244704e-01 -2.84532070e-01 -4.77311648e-02 1.88150033e-01\\n2.63245136e-01 -4.09824625e-02 9.84308198e-02 1.53723387e-02\\n-1.95845023e-01 -5.91944933e-01 -9.34703127e-02 7.79384524e-02\\n4.63563561e-01 2.23107547e-01 2.14337096e-01 -1.28215423e-03\\n1.50879368e-01 6.77174270e-01 -1.56564161e-01 -2.34799057e-01\\n1.40170127e-01 1.75392359e-01 9.98444855e-02 -1.30685970e-01\\n1.65973976e-01 2.75251418e-01 -2.91769654e-01 5.26739806e-02\\n-4.72565144e-02 -6.11450784e-02 3.45654070e-01 2.33171228e-02\\n-3.07081580e-01 -2.62908190e-01 5.55850156e-02 1.56849995e-02\\n-5.11130691e-01 -1.82921022e-01 5.78301668e-01 1.52453646e-01\\n1.23635463e-01 2.81612352e-02 8.34764242e-02 -1.02098500e-02\\n-5.94204180e-02 -1.54227093e-01 1.86254531e-01 5.52650541e-02\\n6.28160164e-02 1.71710938e-01 -5.18863536e-02 -6.17394626e-01\\n-3.13916326e+00 -1.27605498e-01 8.70268866e-02 -2.23092660e-01\\n2.21001789e-01 -1.28477111e-01 1.82656631e-01 -1.75802112e-02\\n-2.80088276e-01 2.08897870e-02 -1.42730489e-01 -9.79821905e-02\\n1.80087700e-01 1.76493883e-01 1.38014361e-01 3.01599711e-01\\n1.61845759e-01 -3.31117779e-01 -7.37131760e-02 4.71889198e-01\\n-1.47669032e-01 -6.29151940e-01 2.49845803e-01 4.69561033e-02\\n3.49155635e-01 1.54819503e-01 -4.21009243e-01 -1.89997628e-01\\n-2.28841797e-01 -1.95354596e-01 5.11328615e-02 -3.05028796e-01\\n-1.82475403e-01 2.09260032e-01 2.46516287e-01 -2.50196785e-01\\n2.25126401e-01 -4.45908338e-01 -7.02921376e-02 -5.01263738e-01\\n1.05987601e-01 -7.02100515e-01 3.90252061e-02 -9.39371586e-02\\n6.86094284e-01 -2.95523703e-01 9.63675976e-02 7.06995800e-02\\n9.67510790e-02 1.19490810e-01 9.00948569e-02 9.35866684e-02\\n-2.14881793e-01 -3.20908785e-01 -1.07006580e-01 -2.07213044e-01\\n5.64140558e-01 5.15030384e-01 -1.38298288e-01 -9.24741998e-02\\n1.29300535e-01 -2.90203065e-01 -4.80586827e-01 -3.05213213e-01\\n-1.26189753e-01 -9.50096622e-02 -7.49234438e-01 -4.99551147e-01\\n-1.14083238e-01 -1.59414485e-01 -8.46208036e-02 4.93285179e-01\\n-2.55941391e-01 -3.19047481e-01 -9.36704427e-02 -5.97325861e-01\\n3.25245112e-01 -1.13075592e-01 3.44722234e-02 -2.65649736e-01\\n-1.76887959e-01 -4.79935408e-01 1.09366938e-01 5.54132573e-02\\n-1.69700179e-02 -3.43682349e-01 8.82017165e-02 -1.47823736e-01\\n-2.26915210e-01 -6.03165329e-01 4.53798473e-01 1.25047445e-01\\n3.33470970e-01 2.02171013e-01 2.92658865e-01 -3.75372134e-02\\n3.05391252e-01 -2.64529828e-02 6.26453757e-02 -4.04180646e-01\\n9.04138684e-02 1.32592171e-02 4.54954416e-01 -1.53502911e-01\\n-1.97766829e-04 7.95999691e-02 -1.52082741e-01 -1.28754675e-01\\n3.31119746e-01 -9.92281269e-03 7.64469057e-02 -1.14746928e-01\\n2.44977131e-01 -3.09446484e-01 -2.09425151e-01 -6.05222536e-03\\n1.37601197e-01 5.31468451e-01 -3.53007801e-02 -4.13755596e-01\\n-1.79686502e-01 4.08746779e-01 -4.63801250e-02 1.18333444e-01\\n-2.23730862e-01 1.13763496e-01 -2.52912372e-01 2.69637018e-01\\n-2.78718509e-02 -2.26117522e-01 -3.15797627e-01 -1.83173761e-01\\n4.28928882e-02 3.45161378e-01 2.05633178e-01 2.18997508e-01\\n3.32254916e-02 -3.93077731e-01 -6.87589571e-02 2.38591313e-01\\n1.96190283e-01 5.15604436e-01 7.86670074e-02 -1.64035812e-01\\n1.31621305e-02 3.70633841e-01 -2.18468681e-01 2.90395141e-01\\n-2.37421796e-01 1.10710837e-01 -5.13327539e-01 -2.85359085e-01\\n-3.10449094e-01 -3.18995565e-01 1.70534283e-01 3.50027710e-01\\n1.12887070e-01 -6.62314966e-02 1.07193813e-02 -4.18144643e-01\\n2.86941379e-01 5.77094639e-03 1.50794238e-01 2.21258223e-01\\n9.35514048e-02 6.36898577e-01 1.54077202e-01 -2.36396238e-01\\n-1.74863771e-01 1.07087895e-01 -1.36547104e-01 -1.22860111e-02\\n4.81486917e-02 -4.78642851e-01 -1.21583499e-01 4.45488632e-01\\n1.36594296e-01 -1.82137117e-01 -9.58000943e-02 2.59965807e-01\\n-1.27143105e-02 -2.29163289e-01 -1.79696277e-01 6.18980527e-02\\n2.41429090e-01 1.33856624e-01 2.80803919e-01 -4.75254416e-01\\n6.59961207e-03 -7.48020336e-02 -4.07617204e-02 4.58080322e-01\\n2.26680059e-02 1.42067913e-02 -1.06166795e-01 -1.05436996e-01\\n3.73385161e-01 -1.11556262e-01 -8.60560238e-02 5.09797595e-02\\n1.02307603e-01 -2.50768691e-01 -4.23362404e-01 1.13883607e-01\\n-7.35991597e-02 -1.86456949e-01 -6.44132271e-02 1.71926588e-01\\n9.11646113e-02 1.05796441e-01 -5.75231612e-01 -2.11849734e-01\\n-2.14949906e-01 2.62124408e-02 -1.00850143e-01 -4.60794330e-01\\n-3.16246599e-02 -6.07812107e-02 -4.97432351e-01 1.97956875e-01\\n-2.18977720e-01 -4.28529158e-02 2.62351066e-01 2.73256488e-02\\n-3.28045189e-01 -5.87259717e-02 9.93866622e-02 2.53748715e-01\\n-2.47936323e-01 -2.53832012e-01 -7.88784549e-02 -9.66813445e-01\\n8.95514935e-02 4.75212336e-02 -1.68126404e-01 1.61822438e-01\\n-1.59288064e-01 -6.35768652e-01 1.31555945e-01 -3.65607709e-01\\n-2.67166346e-01 -8.22343901e-02 -1.74507141e-01 -4.73198175e-01\\n8.38323683e-02 4.99980301e-02 -2.54873902e-01 3.38549376e-01\\n-2.65259117e-01 2.65541703e-01 -1.41262308e-01 5.54067679e-02\\n2.20962912e-02 -2.62250602e-01 1.55997574e-01 -4.51870441e-01\\n-3.10551822e-01 -1.39656037e-01 -3.19957227e-01 -2.54593998e-01\\n-2.19257604e-02 -2.59118289e-01 -2.23030761e-01 9.88457352e-02\\n2.91177660e-01 8.41098651e-02 -1.15374498e-01 -1.59809843e-01\\n7.46977702e-02 -5.33654332e-01 9.09858048e-02 -1.14166833e-01\\n-5.65610602e-02 -1.65707082e-01 3.12940776e-01 1.77297257e-02\\n1.32765800e-01 -3.61309022e-01 4.66877818e-01 -3.46883267e-01\\n-3.54196429e-01 -6.42637461e-02 6.16060235e-02 -3.88318039e-02\\n3.34254920e-01 -4.38408792e-01 2.62832157e-02 3.56866837e-01\\n1.40200034e-01 1.70936808e-01 2.07970858e-01 -1.75544649e-01\\n-1.86026648e-01 3.39122087e-01 -4.99673784e-01 -1.20304562e-02\\n7.47456789e-01 7.01971054e-02 1.82522744e-01 2.13648006e-01\\n1.30306005e-01 1.94348395e-01 3.93598169e-01 6.85305074e-02\\n-2.08614364e-01 2.77723223e-01 3.75845358e-02 -5.12498677e-01\\n-2.73742285e-02 1.55909555e-02 -2.28356943e-01 -4.58390236e-01\\n6.10684872e-01 4.33689624e-01 -4.65060145e-01 -2.18137279e-01\\n-1.83053926e-01 -2.01842666e-01 1.09394066e-01 -7.99208134e-02\\n9.16358083e-02 -8.99005979e-02 3.86361003e-01 -6.32352754e-02\\n2.21016839e-01 5.28857827e-01 -1.28057778e-01 -2.32101157e-01\\n-5.34384921e-02 1.00591600e-01 -1.40818572e-02 4.34716314e-01\\n-2.29571342e-01 3.48156273e-01 5.59089631e-02 1.51447460e-01\\n-1.54795915e-01 7.38499910e-02 8.48646760e-02 6.97239907e-03\\n8.16447437e-02 1.73018903e-01 4.22664136e-01 3.75741690e-01\\n3.35442483e-01 3.80889952e-01 2.90468633e-01 4.76717688e-02\\n4.38380539e-01 4.09026742e-01 4.32644635e-01 1.39618129e-01\\n3.43482234e-02 9.28358361e-03 1.60197884e-01 6.86306506e-02\\n3.12051982e-01 2.57358909e-01 6.90622255e-02 9.46969986e-01\\n2.44098276e-01 2.37869844e-01 7.52016842e-01 -5.97580492e-01\\n-3.42552543e-01 -1.16324173e-02 4.27714765e-01 -6.05044127e-01\\n-5.65975942e-02 1.65098578e-01 -2.56243080e-01 1.50134608e-01\\n-4.60014254e-01 -3.49378169e-01 -6.31586090e-02 1.92720383e-01\\n-7.96000957e-02 -1.39946938e-01 -2.41793036e-01 1.49368078e-01\\n-6.48017228e-02 -9.06797424e-02 -5.36240458e-01 -1.89643174e-01\\n-9.18619037e-02 -1.68333188e-01 -1.63700432e-01 -1.73725769e-01\\n-2.14935139e-01 -2.39658326e-01 -9.19167418e-03 -3.50553468e-02\\n2.57400453e-01 -1.26432702e-01 7.88807347e-02 -2.17238739e-01\\n3.28027993e-01 2.07587048e-01 5.00584126e-01 -7.60600623e-03\\n1.81865185e-01 -2.44340435e-01 -2.25482523e-01 7.38184080e-02\\n2.28666022e-01 6.88113412e-03 8.66552591e-02 2.78624058e-01\\n-2.00570881e-01 -1.67664587e-01 1.27727315e-01 3.53889376e-01\\n-3.94326687e-01 4.02186811e-02 -2.54571959e-02 2.19157308e-01\\n6.57689795e-02 1.21368185e-01 -1.87020943e-01 1.50549933e-01\\n-2.47281700e-01 -3.92455041e-01 1.66152492e-01 -7.51631558e-02\\n-1.01014964e-01 5.29704690e-02 2.45454937e-01 1.69752434e-01\\n-3.15871954e-01 1.14148818e-01 -6.88738227e-02 1.78047195e-01\\n2.15988066e-02 2.87830561e-01 -2.20087335e-01 -1.90772191e-01\\n-2.95863628e-01 2.28187561e-01 -1.68326214e-01 6.93639368e-02\\n6.39170222e-03 4.02594477e-01 2.28410633e-03 -2.81913187e-02\\n5.03594518e-01 -1.87721044e-01 -2.00153977e-01 -2.87870377e-01\\n-2.18039900e-01 -1.29720658e-01 -7.76425600e-02 -1.31955951e-01\\n2.09464073e-01 -4.49019969e-01 -6.10463805e-02 -1.79197833e-01\\n-1.27301276e-01 -4.15583700e-01 8.53738487e-02 -1.39782622e-01]]',\n", + " 'job_description': 'EF Travel, the flights division of EF Tours, is currently looking for a Data Engineer to join our BI team in Zurich, Switzerland. We are an autonomous and dynamic BI team working on a multitude of technical solutions for EF’s flights department. We provide vital functions in the areas of technical development, business intelligence and innovation and everything we do has a direct impact on our business. We enjoy a fantastic work environment right on the doorstep to the Swiss Alps. As a Data Engineer your main focus will be to provide all the back-end development and architecture for supporting our operational and executive deliveries. We expect you to be forward thinker, innovative and ready for a position where you will get to make an impact from day one. The role Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Requirements Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English About EF Since 1965, we have helped millions of people transform their lives by opening the world through education. Today we are the world’s largest private education company - offering every imaginable way to learn a language, travel abroad, experience another culture, or earn an academic degree. We offer competitive salaries and a multicultural working environment. The position is situated in Zurich, Switzerland and you will be working with people from all over the world. What’s it like to work here? https://vimeo.com/111638911 and https://www.youtube.com/watch?v=fGlnMgNtivw',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Imagination\", \"Problem Solving\", \"Operations\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Computer Science\", \"Analytics\", \"Data Engineering\", \"Data Warehousing\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"AWS Directory Service\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Business Intelligence\", \"Cloud Services\", \"Dimensional Modeling\", \"Library For WWW In Perl\", \"SQL Server Integration Services (SSIS)\", \"Big Data\", \"End Systems\", \"Adapter Scripting Language\", \"Front End (Software Engineering)\", \"Technical Solution Design\", \"Back End (Software Engineering)\", \"Vimeo\", \"Business Development\"]',\n", + " 'languages': \"['English', 'Scottish Gaelic', 'Venda']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data analyst (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.11146176e-01 2.39136994e-01 2.90398657e-01 6.72261640e-02\\n4.67736870e-01 -9.18641686e-02 3.97096761e-02 3.05283010e-01\\n-3.36161889e-02 -3.97795141e-01 1.86883882e-02 -2.00990930e-01\\n-2.05021411e-01 -2.35511735e-02 -6.09298535e-02 3.74364942e-01\\n3.14212054e-01 1.27775088e-01 -6.98458254e-02 3.12407762e-01\\n1.45176515e-01 4.35345173e-02 -1.98234499e-01 6.25866890e-01\\n4.50871587e-01 -1.47546995e-02 -1.56236291e-02 1.13502875e-01\\n-2.38367617e-01 -2.32878581e-01 3.74210626e-01 2.20305279e-01\\n-1.62239343e-01 -3.08662742e-01 -9.92584676e-02 1.70678794e-01\\n-5.39318696e-02 8.47874209e-02 -2.23041736e-02 1.64997160e-01\\n-4.43314523e-01 -1.50232136e-01 -4.09958661e-02 1.29467383e-01\\n-2.19754845e-01 -2.51332641e-01 1.42236307e-01 -1.28595188e-01\\n2.61874795e-01 5.05346768e-02 -5.89948416e-01 4.53012794e-01\\n-2.18548268e-01 -1.04258947e-01 1.92739040e-01 5.31125367e-01\\n6.16231486e-02 -4.91898745e-01 -4.69496667e-01 -2.60333568e-01\\n1.46780655e-01 -1.56618625e-01 2.47780476e-02 -3.58066887e-01\\n4.70109582e-01 9.63611081e-02 1.18217655e-01 2.74166346e-01\\n-7.71098852e-01 2.31758263e-02 -3.16714168e-01 1.75135082e-03\\n-4.54640388e-01 -7.57691935e-02 -3.10515761e-01 1.04245499e-01\\n-1.58402070e-01 3.70413184e-01 1.12624932e-02 2.32621282e-02\\n-1.45271048e-01 2.29412317e-01 -2.66939670e-01 2.36535490e-01\\n2.75408685e-01 7.42758662e-02 1.51272535e-01 2.91059673e-01\\n-4.29618418e-01 4.08743739e-01 2.19384152e-02 -2.38176927e-01\\n2.33093336e-01 2.21849307e-01 3.86615813e-01 1.24891602e-01\\n1.73213035e-01 1.52267575e-01 -2.33110532e-01 3.92894864e-01\\n2.57550716e-01 -4.08816308e-01 6.20822236e-02 -1.45078123e-01\\n9.10583436e-02 -8.66806731e-02 3.43637615e-02 1.48119822e-01\\n-2.32768223e-01 4.60640490e-01 1.36696815e-01 -1.41709283e-01\\n-6.29564077e-02 -4.81269240e-01 -1.62305698e-01 -3.27140689e-02\\n7.92074353e-02 4.39742059e-02 1.67982981e-01 2.54728466e-01\\n2.62138724e-01 6.84838220e-02 1.69045091e-01 7.56495953e-01\\n-1.26601845e-01 1.12024628e-01 -1.41819611e-01 3.01273346e-01\\n2.21235931e-01 -2.70826876e-01 2.78461546e-01 4.53133732e-01\\n1.90669015e-01 -1.73137933e-01 -2.82631457e-01 2.21721619e-01\\n-1.44065320e-01 -9.34531391e-02 -3.91228259e-01 1.36929303e-01\\n2.69087613e-01 -3.57735693e-01 6.72580719e-01 1.49582848e-01\\n2.45194852e-01 7.80583099e-02 -1.55788623e-02 -1.30698770e-01\\n-4.36149128e-02 2.64012069e-01 1.34398162e-01 3.10557485e-01\\n-2.63451964e-01 -1.91503137e-01 -1.76833093e-01 8.09168667e-02\\n-4.48427796e-01 7.21118152e-02 -9.89824533e-02 -2.68950202e-02\\n2.14500323e-01 -2.85551287e-02 -3.70262802e-01 1.00155491e-02\\n-8.70728195e-02 -1.81526154e-01 1.52622461e-01 4.11153823e-01\\n-9.36509855e-03 2.46026963e-01 -1.35904059e-01 -5.58928922e-02\\n7.83346057e-01 1.72828659e-01 1.17035866e-01 -2.60019824e-02\\n3.52899522e-01 -3.27306613e-02 2.50832081e-01 1.74996436e-01\\n-7.91738033e-01 3.01586330e-01 -5.47335446e-02 -3.43929827e-01\\n2.41265878e-01 8.60665664e-02 4.28674698e-01 -4.01118368e-01\\n1.48426099e-02 -2.10689008e-01 -3.43077928e-01 -2.08893120e-01\\n-4.12101448e-01 -7.70077705e-02 3.63120854e-01 -3.92112583e-01\\n-1.26116022e-01 1.61451533e-01 -5.51733792e-01 -1.62621871e-01\\n8.11881199e-02 4.88931276e-02 1.87472507e-01 1.75200582e-01\\n-4.73893993e-02 -6.77190542e-01 -1.61201674e-02 -4.77974623e-01\\n-5.38287342e-01 1.16164260e-01 -4.74248141e-01 3.79593611e-01\\n1.23104841e-01 -2.29068901e-02 -2.15525210e-01 2.24809483e-01\\n-2.39478484e-01 -2.39135846e-02 9.75539014e-02 5.92561439e-02\\n1.82818696e-01 5.38635775e-02 -4.57788795e-01 3.51053119e-01\\n-1.28339663e-01 5.41842461e-01 1.60109580e-01 -6.45862103e-01\\n5.85337758e-01 2.81759024e-01 -5.23681045e-02 -3.67121845e-01\\n5.14721453e-01 -2.45323122e-01 -1.36794776e-01 3.26134078e-02\\n-3.29582632e-01 -3.10149074e-01 1.65862188e-01 5.08003943e-02\\n-2.42900312e-01 5.14442205e-01 1.48581460e-01 7.98721611e-03\\n2.41281405e-01 -2.76104212e-01 -2.72475537e-02 2.36466959e-01\\n-1.76059365e-01 -2.04537705e-01 -3.59438539e-01 -8.69369209e-02\\n-6.31464422e-02 -4.35637712e-01 -7.06826448e-02 -3.22943330e-01\\n-2.48178348e-01 -3.95703912e-01 -3.32487941e-01 4.96108174e-01\\n2.13452309e-01 1.44497991e-01 2.19330117e-02 3.61012085e-03\\n-1.15730695e-01 -7.52296329e-01 2.15175860e-02 1.27884224e-01\\n4.23383772e-01 2.19577149e-01 1.08746946e-01 -2.23259747e-01\\n1.15951747e-01 6.33750677e-01 -4.12900329e-01 -4.04958874e-01\\n8.42166096e-02 2.42692947e-01 -1.09316796e-01 -1.01274751e-01\\n3.74676869e-03 5.04493177e-01 -2.80864596e-01 6.11973070e-02\\n-7.58251175e-02 -2.68021524e-01 3.58317584e-01 -1.20434061e-01\\n-2.82962710e-01 -2.45179549e-01 -2.45533884e-01 1.78346798e-01\\n-5.27869880e-01 -4.23619866e-01 3.87473166e-01 2.88734734e-01\\n1.86963141e-01 3.50037329e-02 1.02335550e-01 -4.64270711e-02\\n-1.57854274e-01 -4.39671606e-01 2.50005364e-01 1.52343020e-01\\n6.13475889e-02 2.33513087e-01 -1.95682943e-01 -5.73676109e-01\\n-3.49422789e+00 -6.75360784e-02 2.13890582e-01 -2.54013956e-01\\n2.12645367e-01 4.69190069e-02 7.90548399e-02 -1.11705221e-01\\n-3.43133509e-01 1.22256674e-01 -2.37963364e-01 -2.34372005e-01\\n-3.24390344e-02 4.20925260e-01 1.61963359e-01 6.78747147e-02\\n2.07169950e-01 -2.55124152e-01 -1.45022094e-01 3.11259210e-01\\n-1.39891416e-01 -4.61999357e-01 6.88784420e-02 -4.90603000e-02\\n1.85138121e-01 3.43550116e-01 -1.98736668e-01 -1.55047953e-01\\n-2.49702513e-01 -2.97027469e-01 1.72101911e-02 -2.60298371e-01\\n-1.39920339e-01 2.30585366e-01 1.44387588e-01 1.01313949e-01\\n-6.12024665e-02 -3.14160198e-01 -6.77473843e-02 -5.13232589e-01\\n-4.88445498e-02 -3.88827294e-01 -3.11686601e-02 -1.89167485e-01\\n7.96588957e-01 -1.73933059e-01 1.31757602e-01 5.66122532e-02\\n1.86294615e-01 1.30174458e-01 7.95167387e-02 5.70563860e-02\\n-1.87310830e-01 -1.92057058e-01 -2.69195378e-01 -2.04498693e-01\\n6.55414701e-01 2.99004734e-01 -1.74768910e-01 -1.14557110e-01\\n2.02871352e-01 -4.24003184e-01 -3.15629900e-01 -2.77638942e-01\\n-9.69398096e-02 -2.74193108e-01 -4.93626118e-01 -3.56409341e-01\\n-1.75905108e-01 -3.78155485e-02 -1.10586822e-01 5.74131727e-01\\n-3.95922482e-01 -3.69004101e-01 -2.52287053e-02 -4.76713926e-01\\n1.79998487e-01 -2.77745962e-01 2.28470340e-02 -4.69184443e-02\\n-3.60951602e-01 -6.40597463e-01 -1.33063942e-01 -6.86763898e-02\\n-1.69955894e-01 -3.69998127e-01 -4.64197919e-02 -1.25331938e-01\\n-4.13509786e-01 -7.01379120e-01 3.71452808e-01 3.18277925e-02\\n2.77836591e-01 2.33947918e-01 2.59112298e-01 7.26864636e-02\\n4.94323790e-01 -1.10832341e-01 3.34795713e-02 -3.13854486e-01\\n6.31374940e-02 -1.89838409e-01 6.00906670e-01 -2.14308321e-01\\n-1.43257463e-02 5.43035530e-02 -2.88209081e-01 -1.76593103e-02\\n3.35261792e-01 -4.51940298e-02 6.09509535e-02 -1.37918174e-01\\n4.07751232e-01 -2.84172863e-01 -2.38206550e-01 2.26504251e-01\\n8.88334662e-02 5.83834469e-01 8.97526965e-02 -3.04954678e-01\\n-9.16488841e-02 4.44887698e-01 -2.00251624e-01 -4.79343049e-02\\n-1.48604453e-01 1.67129170e-02 -1.38177127e-01 2.52459079e-01\\n7.11158812e-02 -1.89010307e-01 -7.25988001e-02 -2.97308490e-02\\n-4.05714177e-02 2.88314700e-01 2.54718333e-01 -1.05478473e-01\\n-1.06964335e-02 -1.98784798e-01 -9.49203745e-02 1.21635526e-01\\n2.06361264e-01 3.38137209e-01 6.96667433e-02 -2.31046945e-01\\n-1.68194458e-01 3.03568035e-01 4.44073826e-02 2.44361777e-02\\n-1.92213088e-01 8.31995904e-02 -4.74086881e-01 -2.16079816e-01\\n-3.15263063e-01 -3.54919076e-01 2.37229243e-01 2.40904644e-01\\n1.36307985e-01 -2.25260202e-02 1.29438326e-01 -5.55113852e-01\\n2.18901113e-01 2.41248056e-01 2.08037421e-01 5.78624681e-02\\n-1.57106131e-01 3.58365804e-01 -6.48141950e-02 -1.53316185e-01\\n-1.52344659e-01 1.53613091e-01 -1.76706254e-01 -1.65021494e-01\\n2.33898431e-01 -4.29733545e-01 -1.07338585e-01 4.52064395e-01\\n2.15695009e-01 -1.56864017e-01 -3.44151855e-01 2.93253422e-01\\n-1.32898182e-01 -2.37496436e-01 -2.68674761e-01 -1.11861162e-01\\n1.70387059e-01 1.13470405e-01 1.85515732e-01 -2.20539033e-01\\n-8.65486041e-02 4.12845165e-02 -1.63014472e-01 3.14923882e-01\\n3.07883285e-02 -6.74817115e-02 -3.19910228e-01 -6.12908341e-02\\n4.40704405e-01 7.67102838e-03 -5.92696741e-02 -8.13967586e-02\\n1.94043547e-01 -2.70835936e-01 -4.43066657e-01 -3.19895800e-03\\n-3.60884927e-02 -2.51245588e-01 -4.75164205e-02 2.03575760e-01\\n-1.11812867e-01 1.17998362e-01 -5.84350884e-01 -2.75305152e-01\\n-4.60165620e-01 -3.09753537e-01 2.93318257e-02 -2.59893268e-01\\n7.34278336e-02 -1.64992779e-01 -4.57648486e-01 1.76786691e-01\\n-2.39894867e-01 -5.06835207e-02 1.40728399e-01 1.23337083e-01\\n-3.51873070e-01 -2.61124432e-01 2.81367507e-02 1.68059170e-01\\n-3.21979046e-01 -1.81134939e-01 8.52563977e-02 -8.83151948e-01\\n1.40701473e-01 3.83930728e-02 -1.60850376e-01 -3.55063006e-03\\n-1.63479403e-01 -5.42055547e-01 1.95036083e-03 -5.38012087e-01\\n-8.35062563e-02 1.22421332e-01 -2.37064302e-01 -2.10910305e-01\\n1.84065998e-01 -1.50267959e-01 -4.04174268e-01 4.15074587e-01\\n-2.71812558e-01 4.20973003e-01 -1.73982680e-01 1.04589418e-01\\n-6.80067912e-02 -1.81918353e-01 4.02636938e-02 -2.39861324e-01\\n-4.48657870e-01 -2.48203337e-01 -1.94506347e-01 -1.20701671e-01\\n1.56704098e-01 -4.47014183e-01 -6.41594082e-02 1.65948048e-01\\n3.35748494e-01 6.74316064e-02 -6.04099967e-02 -8.26721340e-02\\n1.63759202e-01 -6.51322722e-01 -5.36895804e-02 -2.14780778e-01\\n-8.72551128e-02 -6.94406480e-02 2.19604433e-01 6.30603731e-03\\n2.03320086e-01 -2.10058764e-01 3.88966173e-01 -4.42216754e-01\\n-1.75246209e-01 1.17239505e-01 7.84682333e-02 -1.87138811e-01\\n1.87136471e-01 -5.00908196e-01 1.68356467e-02 4.43145037e-01\\n1.45313323e-01 2.06638202e-02 1.32052138e-01 5.64344712e-02\\n-1.09408908e-01 2.68779397e-01 -2.59354949e-01 9.61166695e-02\\n6.03839278e-01 2.77027667e-01 1.16187841e-01 1.03234105e-01\\n1.24363542e-01 2.59936631e-01 4.98579562e-01 1.73416823e-01\\n1.98958255e-02 1.88118875e-01 1.11507840e-01 -4.11275744e-01\\n1.81703977e-02 1.41565993e-01 -2.49772146e-01 -2.42393494e-01\\n5.63166380e-01 4.73994672e-01 -6.61361516e-01 -2.61521369e-01\\n-5.62981702e-02 -1.01802915e-01 4.04787481e-01 4.12870385e-02\\n-1.20411702e-02 -1.45893574e-01 4.82355952e-01 -5.69226071e-02\\n-5.45800570e-03 4.72445220e-01 -7.99961537e-02 -9.88873094e-02\\n-3.49095240e-02 2.28066310e-01 6.70130253e-02 6.20501220e-01\\n-1.72415584e-01 2.73590624e-01 -1.94834247e-01 -1.59259641e-03\\n-7.86950514e-02 1.40784889e-01 2.50235498e-01 1.97083335e-02\\n2.09688634e-01 3.72091979e-02 3.98986816e-01 5.09649038e-01\\n4.81452644e-02 4.27708000e-01 2.37353697e-01 -1.38520095e-02\\n3.19628447e-01 5.18140674e-01 2.48830721e-01 1.79288089e-01\\n-5.46329245e-02 2.34286606e-01 1.31370991e-01 -5.62561564e-02\\n4.93212581e-01 3.49074483e-01 6.64937645e-02 8.27935815e-01\\n2.76108474e-01 4.11038131e-01 5.29971719e-01 -5.89560151e-01\\n-2.87481576e-01 2.62181938e-01 5.14390290e-01 -2.24307090e-01\\n-1.83915887e-02 8.86418819e-02 -2.49171734e-01 3.58812451e-01\\n-4.94286478e-01 -1.42611936e-01 5.19214571e-03 1.49646103e-01\\n3.65920514e-02 -1.87115803e-01 -3.37863564e-01 -5.69242164e-02\\n-8.12890530e-02 1.14821516e-01 -4.45865571e-01 -2.48538092e-01\\n-2.85956979e-01 -7.40103945e-02 -5.68135306e-02 -1.03276350e-01\\n1.20315842e-01 -3.10691357e-01 -4.02096696e-02 -2.27799919e-02\\n3.91716212e-01 -2.66793311e-01 -1.35580033e-01 -9.92377102e-02\\n2.05038175e-01 3.00713867e-01 5.45770109e-01 -1.16883837e-01\\n6.89519048e-02 -1.42826974e-01 -1.73881114e-01 8.33186507e-02\\n1.43051641e-02 1.29887804e-01 1.29729494e-01 2.14920774e-01\\n-2.70766467e-01 -2.13403910e-01 1.92004085e-01 3.33850175e-01\\n-4.80226636e-01 -6.80399314e-02 -1.25760242e-01 2.23670140e-01\\n-2.79381480e-02 1.29504248e-01 -2.66258895e-01 1.70314372e-01\\n-2.64819741e-01 -3.20332706e-01 3.34748477e-01 -3.92053574e-02\\n-4.73633558e-02 1.37564570e-01 3.22856426e-01 1.63980454e-01\\n-1.50034964e-01 -6.38918132e-02 -8.22629109e-02 2.60850549e-01\\n-1.00972950e-01 3.52459103e-01 -1.36665376e-02 -3.84961545e-01\\n-2.29706496e-01 2.25182116e-01 -8.39608833e-02 1.11901775e-01\\n-1.02839261e-01 3.37843090e-01 -2.22788919e-02 5.00880219e-02\\n4.07228440e-01 1.11921400e-01 -3.06955397e-01 -2.50825197e-01\\n-2.12032944e-01 -6.51813298e-02 3.31513770e-02 5.26088141e-02\\n2.28047259e-02 -3.78458411e-01 -1.68757498e-01 -1.24368958e-01\\n-7.51227140e-02 -2.64934540e-01 -5.47827929e-02 8.86953324e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Our Requirements: You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization. You are always curious to try out new tools and libraries for the analysis and visualisation of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills SQL MySQL NoSQL Python Python',\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Proactivity\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Python Server Pages\", \"NoSQL\", \"Tooling\", \"Accessioning\", \"Advising\", \"Agility\", \"Statistics\", \"Machine Learning\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Dataset\", \"Data Visualization\", \"Machine Learning Methods\", \"Machine Learning Algorithms\", \"Scalability\", \"Electronic Data Processing\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Tajik', 'Bengali', 'Akan', 'Marshallese']\"},\n", + " {'company_id': '30',\n", + " 'job_title': 'backend engineer (remote)',\n", + " 'location': 'Geneva',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.cloudbeds.com',\n", + " 'jobdescription_embedded': '[[-2.37438202e-01 1.64453715e-01 5.52219331e-01 8.29338878e-02\\n6.30516887e-01 -2.26358578e-01 1.35326274e-02 2.61185855e-01\\n3.88141833e-02 -4.46816951e-01 -4.22953106e-02 -2.85479575e-01\\n-8.52398202e-02 9.34937894e-02 1.13459654e-01 3.39835525e-01\\n3.37827176e-01 8.79367441e-02 -1.78707942e-01 3.88477296e-01\\n1.06403098e-01 -1.07792616e-01 4.26965542e-02 7.30996668e-01\\n2.18814611e-01 1.52532104e-02 -1.47497386e-01 -1.63545217e-02\\n-3.17581654e-01 -1.86645672e-01 4.21396345e-01 -9.50774737e-03\\n-1.25468343e-01 -4.70949829e-01 1.03913955e-02 -6.21539280e-02\\n-2.21250236e-01 3.30785736e-02 -7.84138292e-02 1.46070093e-01\\n-5.20705938e-01 -2.02100694e-01 1.29855901e-01 4.34007868e-02\\n-1.38753861e-01 -2.38454670e-01 1.05369061e-01 6.98132068e-03\\n1.21870711e-01 -7.02866688e-02 -4.31882828e-01 2.78917909e-01\\n-3.08348775e-01 -2.10491851e-01 3.19355071e-01 5.29909611e-01\\n4.25455570e-02 -5.37483931e-01 -4.62164879e-01 -3.08997571e-01\\n-3.41256037e-02 -1.59296036e-01 4.99243401e-02 -4.15329337e-01\\n2.63552010e-01 5.93888313e-02 8.10822546e-02 2.88367391e-01\\n-6.94393635e-01 -3.62553895e-02 -5.60833029e-02 -1.34634301e-02\\n-2.36052975e-01 -1.14656173e-01 -2.22439259e-01 -4.31874059e-02\\n-2.23881692e-01 3.77728462e-01 1.24896593e-01 8.75107497e-02\\n-3.19830835e-01 2.82326698e-01 -1.27553850e-01 3.41051877e-01\\n2.54326880e-01 1.90340787e-01 2.83953905e-01 3.89230043e-01\\n-3.82585764e-01 5.06851137e-01 2.70952843e-02 -2.58418351e-01\\n3.89862776e-01 2.68746406e-01 4.07992572e-01 -1.01406246e-01\\n1.31731123e-01 1.66093051e-01 -2.82474905e-01 2.61753142e-01\\n2.21072465e-01 -3.52738440e-01 7.96526000e-02 -1.75431054e-02\\n3.28565389e-03 8.19252618e-03 3.89602184e-02 1.54243231e-01\\n-3.18525285e-01 4.26026672e-01 1.48478359e-01 -1.87146530e-01\\n-1.21417932e-01 -4.64020610e-01 -6.53359964e-02 3.80939059e-02\\n-3.42295803e-02 4.63561006e-02 3.06231350e-01 5.85944280e-02\\n2.39401862e-01 -1.47048347e-02 1.44916669e-01 7.73820758e-01\\n-7.53295869e-02 1.34592175e-01 -2.25522369e-01 2.73689687e-01\\n1.89331055e-01 -2.01917186e-01 2.45423228e-01 2.18332946e-01\\n1.19469270e-01 -4.99224998e-02 -1.87623560e-01 3.28936875e-01\\n-4.28804494e-02 -1.44963503e-01 -1.43067300e-01 1.35575145e-01\\n1.75385438e-02 -4.14872587e-01 5.69670022e-01 1.50039598e-01\\n2.17004180e-01 -5.69246002e-02 1.48810923e-01 -2.04011291e-01\\n-9.02143568e-02 1.68986440e-01 6.09499440e-02 2.74314582e-01\\n-2.63013750e-01 -3.09828669e-01 -5.79806790e-02 1.75494298e-01\\n-4.00856555e-01 7.41052553e-02 -1.23617485e-01 -1.63131118e-01\\n2.43196115e-01 1.03194356e-01 -3.90342057e-01 1.22169018e-01\\n-1.40607387e-01 -6.51963353e-02 -6.91460148e-02 4.11965609e-01\\n-1.06008552e-01 3.02128792e-01 -1.83187798e-02 3.09701636e-02\\n5.96958280e-01 2.28886664e-01 2.19419390e-01 -7.95033872e-02\\n3.37720335e-01 -9.39052776e-02 1.67107493e-01 1.76196814e-01\\n-7.46954799e-01 3.06014895e-01 -5.50729334e-02 -2.48311341e-01\\n1.11535683e-01 -5.51914312e-02 3.07155192e-01 -3.77573669e-01\\n-8.98119248e-03 -2.41166368e-01 -4.41553652e-01 -3.42777610e-01\\n-2.04692334e-01 1.53668197e-02 2.65197605e-01 -4.29992259e-01\\n-4.05082479e-02 2.56130695e-01 -4.91451800e-01 -8.55291933e-02\\n2.00294703e-01 2.05953687e-01 1.43629879e-01 1.32454082e-01\\n-1.23325810e-01 -5.92500925e-01 -6.53530210e-02 -4.06494021e-01\\n-3.85135084e-01 4.83919829e-02 -3.63627017e-01 1.22131519e-01\\n4.67552543e-02 1.10054374e-01 -1.31034240e-01 8.31194893e-02\\n-1.68551028e-01 -9.52577367e-02 1.40878633e-01 6.30907565e-02\\n2.72914201e-01 4.00885679e-02 -3.68507981e-01 4.10271198e-01\\n-3.95987451e-01 6.16416752e-01 1.16838187e-01 -8.65761876e-01\\n5.51961839e-01 2.92342007e-01 -7.93437213e-02 -3.87044609e-01\\n3.60540271e-01 -3.98455203e-01 5.78172319e-02 9.95343700e-02\\n-2.57599086e-01 -2.10118681e-01 2.31396630e-01 -1.46483541e-01\\n-3.20444167e-01 4.38293010e-01 1.73231572e-01 3.95178376e-03\\n1.97444841e-01 -2.32798398e-01 -1.65833849e-02 -2.05078647e-02\\n-4.73893732e-02 -1.89121485e-01 -4.46398199e-01 -1.87334418e-02\\n-1.14967689e-01 -4.09922034e-01 -1.24662243e-01 -3.40234101e-01\\n-2.06589907e-01 -3.11927080e-01 -2.85422683e-01 1.80489540e-01\\n2.39722013e-01 1.26263618e-01 1.44628882e-02 4.17299047e-02\\n-9.38667879e-02 -7.52984107e-01 2.03405153e-02 1.38758987e-01\\n4.11944449e-01 2.29983911e-01 4.42021415e-02 -5.08233346e-03\\n1.06271207e-01 6.28485560e-01 -3.78581733e-01 -2.02066422e-01\\n1.78559735e-01 1.55246586e-01 -5.51441275e-02 -1.49414092e-01\\n5.97745851e-02 3.69063258e-01 -1.97475553e-01 -6.67145252e-02\\n-4.50249277e-02 -1.83295161e-01 4.76859689e-01 -9.19517428e-02\\n-3.65907073e-01 -1.35477707e-01 5.79113439e-02 1.18424676e-01\\n-4.82371628e-01 -1.49720699e-01 4.88511533e-01 1.66384250e-01\\n1.68203250e-01 1.67311668e-01 1.45785827e-02 4.05773753e-04\\n-1.94300413e-01 -4.11562413e-01 2.23406091e-01 1.56195670e-01\\n1.00123562e-01 1.25903875e-01 -5.16594611e-02 -7.27670431e-01\\n-3.52693510e+00 -1.27021596e-01 1.64582804e-01 -2.07525834e-01\\n1.42239839e-01 -1.02824688e-01 1.58445295e-02 -8.89638215e-02\\n-3.02290708e-01 2.06457436e-01 -9.78088081e-02 -1.78694963e-01\\n4.70993891e-02 1.44029468e-01 1.18931815e-01 1.42483830e-01\\n1.25071719e-01 -2.30170280e-01 -8.94343555e-02 2.17715010e-01\\n-1.48576796e-01 -6.70561612e-01 2.10720554e-01 -9.23234969e-03\\n2.81119108e-01 2.90713549e-01 -3.87507349e-01 -7.63954595e-02\\n-2.53450751e-01 -1.29269972e-01 -2.37444304e-02 -2.15745732e-01\\n-1.71838373e-01 2.52476364e-01 1.38779297e-01 -8.65153670e-02\\n1.52016103e-01 -3.95836651e-01 -1.32008314e-01 -4.44458544e-01\\n1.38736010e-01 -4.91270542e-01 -2.37363316e-02 -1.47325009e-01\\n7.06476450e-01 -2.87259370e-01 1.86603099e-01 1.00004368e-01\\n2.24885881e-01 9.79902297e-02 1.63546219e-01 -2.63978355e-03\\n-1.60454705e-01 -6.00785129e-02 -4.37575839e-02 -2.51522303e-01\\n5.07676601e-01 3.97802591e-01 -1.78873882e-01 6.83942437e-03\\n1.00536369e-01 -2.28736520e-01 -3.25883269e-01 -2.30970427e-01\\n-1.09432526e-01 -1.54290497e-01 -6.72488689e-01 -4.32955086e-01\\n-3.04333985e-01 -8.53676349e-02 -1.71274573e-01 6.80752277e-01\\n-3.08563352e-01 -4.15827900e-01 8.05783868e-02 -5.53429246e-01\\n1.81404501e-01 -2.19514936e-01 2.61825277e-03 -2.16149017e-01\\n-1.40854180e-01 -4.88463879e-01 6.34322092e-02 -3.98670882e-02\\n-1.83961973e-01 -3.08264732e-01 1.65530480e-02 -6.04933575e-02\\n-2.23654240e-01 -4.97442126e-01 3.54874998e-01 1.63324207e-01\\n2.91445643e-01 -1.00801177e-02 3.51461649e-01 -1.35373902e-02\\n3.62198770e-01 1.09816575e-02 8.41984451e-02 -3.19987297e-01\\n7.75796846e-02 -7.83733279e-02 4.57390308e-01 -1.71565846e-01\\n-2.20009722e-02 1.75653785e-01 -2.85711050e-01 -8.78908932e-02\\n4.05409276e-01 -1.03000358e-01 -3.81609201e-02 -5.50796576e-02\\n2.73658931e-01 -3.03317934e-01 -1.93920180e-01 1.36616290e-01\\n1.14983633e-01 6.93860173e-01 -3.72614972e-02 -3.50331873e-01\\n-1.39186412e-01 4.90609437e-01 -4.75504249e-02 1.15174301e-01\\n-2.45720837e-02 1.13082737e-01 -1.33453101e-01 2.39675730e-01\\n1.31942287e-01 -2.43114352e-01 -1.98355675e-01 -1.12177350e-01\\n-1.02080107e-02 1.41228497e-01 1.81654349e-01 5.88618331e-02\\n-7.01272637e-02 -3.53334010e-01 -1.14859596e-01 1.04746580e-01\\n1.96543723e-01 4.06517148e-01 2.14700460e-01 -1.48899615e-01\\n7.63615593e-02 3.94972801e-01 -4.36655954e-02 1.72780439e-01\\n-2.54681945e-01 1.56393379e-01 -5.72375178e-01 -2.27884918e-01\\n-2.37568706e-01 -3.76312256e-01 4.07628119e-02 3.04899395e-01\\n1.22150972e-01 3.75859737e-02 3.99571843e-02 -4.83773828e-01\\n2.62341738e-01 6.69215471e-02 2.09206626e-01 1.23929560e-01\\n-1.41153440e-01 4.56141829e-01 4.04746085e-02 -1.74152210e-01\\n-2.18861580e-01 2.91201100e-02 -7.49180168e-02 -1.83312505e-01\\n1.30652994e-01 -4.27096844e-01 -1.02101080e-01 3.47151637e-01\\n1.13082677e-01 -3.25393975e-01 -1.45797357e-01 3.80977869e-01\\n-3.99843603e-03 -2.07485661e-01 -2.78495729e-01 -6.96085617e-02\\n2.48044461e-01 2.08934471e-02 2.72294462e-01 -4.16340441e-01\\n-7.96136856e-02 1.54046202e-02 5.27065247e-02 3.85391831e-01\\n-7.89215416e-02 5.30745871e-02 -2.14234903e-01 -1.94252998e-01\\n4.75374073e-01 -3.16304490e-02 -1.82310343e-01 -7.04111829e-02\\n1.09608993e-01 -2.28167579e-01 -5.78554034e-01 7.87403136e-02\\n1.00318566e-01 -2.32283264e-01 1.20484486e-01 1.16129607e-01\\n1.26641318e-01 1.06162190e-01 -4.93191421e-01 -1.94129646e-01\\n-3.92683089e-01 -8.97955149e-02 1.36117876e-01 -3.40320230e-01\\n-2.31034923e-02 -1.32603779e-01 -4.91690069e-01 1.94778755e-01\\n-2.70589769e-01 -1.81372583e-01 1.08699352e-01 6.23190813e-02\\n-3.74486417e-01 -2.83851549e-02 -3.83534729e-02 2.02338248e-01\\n-4.17369485e-01 -3.35129082e-01 6.92480654e-02 -1.03442061e+00\\n2.61496753e-01 4.06804755e-02 -5.68372831e-02 5.94776049e-02\\n-1.98456019e-01 -6.23942196e-01 1.53442726e-01 -4.11813140e-01\\n-1.57596946e-01 -6.80301636e-02 -1.88719064e-01 -2.20829487e-01\\n8.96365196e-02 -1.09553248e-01 -4.13841158e-01 3.34128857e-01\\n-2.82549024e-01 3.36501300e-01 -2.42287546e-01 -9.09974352e-02\\n2.20536292e-02 -2.02952713e-01 9.83475745e-02 -4.36113536e-01\\n-4.06237900e-01 -2.00283825e-01 -3.36773485e-01 -2.46086419e-01\\n-1.44270897e-01 -2.85018235e-01 -1.07258357e-01 9.79108065e-02\\n3.48638833e-01 1.73311859e-01 -9.56234634e-02 -3.19048911e-01\\n1.34409331e-02 -5.17864645e-01 5.27262911e-02 -1.05529435e-01\\n-2.85752434e-02 -1.60638869e-01 2.08344579e-01 4.55828495e-02\\n1.73591390e-01 -4.86050278e-01 3.96036237e-01 -3.23240221e-01\\n-3.32494736e-01 -1.59460440e-01 -2.42485963e-02 1.19953886e-01\\n3.03876162e-01 -5.05872190e-01 4.00927290e-02 2.51342714e-01\\n1.04941532e-01 1.11025311e-01 1.71807066e-01 -5.77476732e-02\\n-2.17710845e-02 3.46770644e-01 -3.07772934e-01 8.50217566e-02\\n7.44972944e-01 1.87502250e-01 2.24861987e-02 2.06231952e-01\\n2.70456910e-01 3.77709806e-01 4.37778115e-01 -6.03101477e-02\\n-2.78448407e-03 2.12607458e-01 9.84358415e-02 -5.64558566e-01\\n2.50606835e-02 4.93392833e-02 -9.21206251e-02 -3.39382827e-01\\n6.81782186e-01 4.58209515e-01 -4.34878409e-01 -1.46970481e-01\\n-2.22289592e-01 -1.37030959e-01 2.84087420e-01 -3.06903403e-02\\n5.79833388e-02 -6.87631667e-02 4.91507828e-01 -6.12416789e-02\\n2.77997077e-01 6.16022050e-01 -2.62871593e-01 -3.41442049e-01\\n-3.94786857e-02 2.57422835e-01 1.10186487e-01 4.69867527e-01\\n-1.82898551e-01 1.98270917e-01 -4.53520566e-02 -1.59312654e-02\\n-1.94616243e-01 3.34175348e-01 9.31210592e-02 6.22001439e-02\\n2.75395036e-01 -1.88611876e-02 4.38033640e-01 4.24670160e-01\\n1.76002532e-01 4.02260900e-01 3.39033127e-01 2.77310759e-02\\n4.77531463e-01 5.43957949e-01 2.87744999e-01 8.35512206e-02\\n3.67180854e-02 1.82089433e-01 1.93613261e-01 -1.18982367e-01\\n3.63840222e-01 4.37273026e-01 1.28301784e-01 8.38559926e-01\\n3.71325552e-01 2.65362680e-01 7.69841671e-01 -6.17786646e-01\\n-3.15413296e-01 1.78180076e-02 4.65851963e-01 -3.10252249e-01\\n7.55467489e-02 1.77081496e-01 -1.11093439e-01 4.19397891e-01\\n-4.45769072e-01 -1.73145741e-01 -1.25115551e-03 1.80815816e-01\\n5.09589724e-02 -1.70110002e-01 -2.68046856e-01 1.00304879e-01\\n-9.82537121e-02 -1.24660335e-01 -2.90080726e-01 -6.12355396e-02\\n-1.82874799e-01 -2.25971155e-02 -9.93579552e-02 -4.15624194e-02\\n-1.32883685e-02 -3.57172281e-01 -1.01319082e-01 -8.66630450e-02\\n1.99608073e-01 -1.52761877e-01 -5.49258292e-02 -1.71554938e-01\\n3.52865458e-01 1.50636345e-01 4.35364544e-01 -4.35180664e-02\\n1.79277465e-01 -2.20296085e-01 -2.34695613e-01 1.63756698e-01\\n6.00746609e-02 1.21321246e-01 7.79438093e-02 2.30130360e-01\\n-2.26379946e-01 -4.54919226e-02 1.28356263e-01 4.02705699e-01\\n-3.54547501e-01 -8.97025615e-02 -1.37103230e-01 1.50689691e-01\\n7.51556605e-02 1.26405120e-01 -2.29528308e-01 -2.24244352e-02\\n-2.24290848e-01 -4.94149685e-01 2.62175202e-01 -1.55046344e-01\\n-7.67708570e-02 7.69322813e-02 2.66492128e-01 1.12663329e-01\\n-2.77934968e-01 4.68809232e-02 4.20019031e-03 4.00658287e-02\\n-2.92207822e-02 3.67003322e-01 -4.46951762e-02 -1.93358362e-01\\n-2.68662423e-01 2.73491651e-01 -1.10907935e-01 1.29315391e-01\\n2.20322609e-03 3.02577019e-01 -1.41780719e-01 1.25649780e-01\\n3.17628980e-01 1.48806646e-02 -2.69339532e-01 -2.78182507e-01\\n-2.71294355e-01 -9.84257460e-02 4.71259318e-02 -7.58180022e-02\\n1.16662093e-01 -4.46192563e-01 -1.96538996e-02 -7.43442029e-02\\n-5.70277423e-02 -2.49757096e-01 -3.08980867e-02 -8.08531493e-02]]',\n", + " 'job_description': \"Cloudbeds is a travel industry startup that works to make the world a more welcome place. We make advanced cloud-based hospitality software for hotels, hostels, vacation rentals, and groups that manages reservations and guests, distributes room availability, sells inventory, and collects payments. Our hundreds of team members are distributed across 31 countries and, altogether, we speak 17 languages. How do we do it? On a #remotefirst platform that allows every member of our team to work from wherever they are around the globe. We're looking for people who want to disrupt the travel industry and love to travel as much as we do. As a Senior Backend Engineer, you will implement new architectures, features, and best practices to scale the Cloudbeds platform. You will contribute to new efforts in serverless and service-oriented architectures, leveraging the latest, cutting edge technologies. As a Senior Backend Engineer, your goal is to deliver an exceptional experience to our customers all around the world with quality, performance, and scalability top of mind. Location: Remote What You Will Do Design architectures for new services and customer-facing features.Implement new application features and improvements.Define internal standards for new design practices.Update our existing architecture to scale with our fast-growing customer base.Refactor legacy code using the latest design patterns and practices.Discuss and design complex technical concepts and requirements with both technical and non-technical stakeholders.Work in and understand a large code repository.Write clean, well-documented, and beautiful code. You'll Succeed With 7+ years of web application software engineering experience.5+ years of PHP back-end web application software engineering experience.Strong knowledge of OOP design patterns, best practices, and technologies.Strong knowledge of LAMP stack technologies.Strong knowledge of NoSQL technologies (Redis, Memcached).Strong knowledge of automated testing methodologies (TDD, BDD).Strong teamwork, leadership, and time management skills.Experience with agile software development (Scrum, Kanban).Experience with API integrations via REST or GraphQL.Excellent problem solving and debugging skills.Passion for excellent technical documentation.Proficiency in English verbal and written skills. Nice to Have Experience with Domain-driven Design (DDD).Experience with MQ systems (rabbitmq/zeromq/kafka).Experience with BPMN 2.0 and engines (Camunda, Zeebe, etc).Experience with Codeigniter and Symfony PHP frameworks.Experience developing web application front-ends (HTML, CSS, Javascript, vue.js).Experience with Node.js or Python.Experience with the Serverless Framework.Experience with code and database optimization and profiling.Experience implementing Sagas for long-running transactions.Experience developing in AWS (API Gateway, Lambda, DynamoDB, RDS).Experience with Atlassian products [JIRA/Confluence/BitBucket].Passion for SOLID, DRY, and KISS principles. Our company culture supports flexible working schedules with an unlimited PTO policy and the opportunity to travel and work remotely with great people. To make it easy for our team to travel we offer 2 corporate apartment accommodations near our San Diego and Sao Paulo offices. At Cloudbeds we dedicated to your personal and professional development. You will have access to over 10,000 courses within LinkedIn Learning when you join our team for your unique individual growth! If you think you have the skills and passion, we'll give you the support and opportunity to thrive in your career. If you would like to be considered for the role, we would love to hear from you! Company Awards to Check Out! Inc. Best Places to Work (2017 & 2018)Inc. 500 Fastest Growing Companies (2018)Connect MIP Award (Technology)Best Places to Work | Inc Magazine (2017 & 2018)Best Places to Work | HotelTechReport (2018 & 2019)Start-Ups to Watch in 2018 | Forbes\",\n", + " 'soft_skills': '[\"Reservations\", \"Writing\", \"Leadership\", \"Teamwork\", \"Management\", \"Hospitality\", \"Problem Solving\", \"Scheduling\", \"Integration\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Bitbucket\", \"Web Applications\", \"Storage Area Network (SAN)\", \"Camunda\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Accessioning\", \"Cascading Style Sheets (CSS)\", \"Vue.js\", \"Collections\", \"Service-Oriented Architecture\", \"Automated Testing Framework\", \"LAMP (Software Bundle)\", \"Good Agricultural Practices\", \"Memcached\", \"Distributed Design Patterns\", \"Industrialization\", \"Scale (Map)\", \"ZeroMQ (Concurrent Programming Libraries)\", \"Debugging\", \"Node.js\", \"Agile Edge Technologies\", \"Architectural Design\", \"PHP Frameworks\", \"Test Automation\", \"Scrum (Software Development)\", \"GraphQL\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"PHP (Scripting Language)\", \"Amazon DynamoDB\", \"Agile Software Development\", \"Ddd Service\", \"RabbitMQ\", \"Domain Driven Design\", \"Serverless Computing\", \"International Standards\", \"Personalization\", \"CodeIgniter\", \"JavaScript (Programming Language)\", \"Scalability\", \"Symfony\", \"Technical Documentation\", \"Redis\", \"API Gateway\", \"Atlassian Confluence\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Software Development\", \"JIRA Studio\", \"Custom Backend\", \"Application Programming Interface (API)\", \"Profiling (Computer Programming)\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English', 'Fijian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'business application analyst',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.95008665e-01 3.99013340e-01 4.29643035e-01 6.23621792e-02\\n6.08087063e-01 6.52238876e-02 1.04930684e-01 1.14952393e-01\\n7.00906217e-02 -2.68205762e-01 -1.38870880e-01 -1.20139062e-01\\n-5.62866032e-02 -7.93280452e-02 1.21173106e-01 4.18069065e-01\\n3.15848827e-01 -5.43995164e-02 -3.28657031e-03 2.79873222e-01\\n-5.72428331e-02 8.00456665e-03 2.15325020e-02 5.92675447e-01\\n4.05653894e-01 1.20013863e-01 -3.50275636e-02 1.12025894e-01\\n-2.48493224e-01 -3.62214535e-01 3.75085354e-01 3.69461626e-02\\n-2.33532578e-01 -3.03215653e-01 6.88816160e-02 1.64522588e-01\\n-1.85275301e-01 1.21623948e-02 -1.24451324e-01 3.28230113e-03\\n-4.66755688e-01 -2.48992056e-01 -4.48130071e-02 -1.80105090e-01\\n-3.70480001e-01 -2.55145013e-01 2.06496492e-01 -2.15973467e-01\\n3.28031704e-02 2.48962641e-02 -5.00505447e-01 3.85336757e-01\\n-2.19557941e-01 -1.46872059e-01 3.15424025e-01 6.28724456e-01\\n1.65173799e-01 -5.98815799e-01 -4.74887490e-01 -3.30780447e-01\\n1.29434094e-01 -1.59070551e-01 1.68393940e-01 -2.64650136e-02\\n4.71206695e-01 -2.15121865e-01 -2.69760732e-02 2.99594939e-01\\n-6.15362763e-01 -1.15436874e-02 -5.40289640e-01 1.83903314e-02\\n-3.03136885e-01 5.53766713e-02 -4.26471055e-01 -2.40658224e-01\\n-6.99507166e-03 4.13340658e-01 1.20811388e-02 7.35970587e-02\\n-1.71227008e-01 3.18997502e-01 -1.79942995e-01 1.24712914e-01\\n2.69173622e-01 2.31143702e-02 4.02183950e-01 2.32091874e-01\\n-4.57810193e-01 5.29850721e-01 3.74625385e-01 -3.48989129e-01\\n2.59545594e-01 1.34253064e-02 2.31121942e-01 2.04598159e-01\\n1.49972821e-02 2.93230921e-01 -1.39868483e-02 9.22784302e-03\\n7.95998573e-02 -6.44016117e-02 -2.07560703e-01 -9.70576480e-02\\n-5.49077168e-02 -2.28717700e-01 6.58551455e-02 1.34303480e-01\\n-4.52967733e-01 4.46573734e-01 8.08416307e-02 -2.33199641e-01\\n-5.34538068e-02 -3.31894696e-01 -1.15534864e-01 -1.13618165e-01\\n-1.22120567e-01 9.63859782e-02 2.09814861e-01 3.08730274e-01\\n2.74116784e-01 6.90218508e-02 1.88973278e-01 7.02065170e-01\\n6.16038144e-02 1.22587457e-01 -8.43458250e-03 2.99832821e-01\\n5.18384874e-02 -2.89068192e-01 1.17042631e-01 2.91722059e-01\\n-2.23484665e-01 -6.48168400e-02 -3.67855966e-01 1.77600279e-01\\n-1.94459617e-01 -1.14878140e-01 -2.18792319e-01 2.13929236e-01\\n-2.00481564e-01 -6.06310368e-01 3.66872668e-01 -5.05070537e-02\\n9.99847203e-02 -1.49258733e-01 3.67650762e-03 -2.67140083e-02\\n-2.41359979e-01 3.47323537e-01 1.75061330e-01 3.08430970e-01\\n-2.97674477e-01 -2.55726039e-01 -9.77141187e-02 3.67457777e-01\\n-1.13222837e-01 8.72353166e-02 -5.40520310e-01 -2.04681039e-01\\n3.79402757e-01 2.12867528e-01 -5.21773994e-01 2.86651731e-01\\n-5.87734487e-03 -9.59016234e-02 -1.91565380e-01 4.30359900e-01\\n3.59341130e-02 -4.29353565e-02 -4.49364595e-02 -1.73897684e-01\\n5.46396017e-01 1.60005078e-01 1.95677131e-01 -7.37396628e-02\\n3.58966947e-01 -1.32059127e-01 2.50623226e-01 -6.79093227e-03\\n-5.72852254e-01 4.15170729e-01 -1.74482450e-01 3.14541906e-03\\n-6.03997782e-02 -3.82388160e-02 5.31919897e-01 -3.52441043e-01\\n2.11916752e-02 -2.08766580e-01 -4.14281428e-01 -4.38057303e-01\\n-1.38663471e-01 -3.98902483e-02 4.54661429e-01 -4.58312869e-01\\n5.53567521e-03 1.29119918e-01 -5.71516037e-01 -1.85264051e-01\\n4.02185559e-01 1.87568933e-01 2.13938653e-01 1.50399074e-01\\n-9.81053412e-02 -4.81393695e-01 1.11682698e-01 -5.46461701e-01\\n-3.75030160e-01 2.44040415e-01 -2.47653693e-01 6.63139895e-02\\n1.80318117e-01 -6.35833014e-03 -3.96272466e-02 1.30210929e-02\\n-3.61765027e-01 -5.96959107e-02 2.44559735e-01 -5.10137081e-02\\n1.82738453e-01 1.76333308e-01 -2.88261354e-01 6.08550787e-01\\n-2.95774102e-01 3.35119009e-01 1.87874585e-01 -9.53545034e-01\\n4.56823647e-01 1.94832981e-01 -3.92278694e-02 -3.21594030e-01\\n2.93811142e-01 -3.59783113e-01 5.99214900e-03 1.76124096e-01\\n-1.87629536e-01 -1.09368242e-01 2.09992945e-01 -1.58685684e-01\\n-3.12051386e-01 6.60686314e-01 1.05416395e-01 1.07662939e-02\\n2.86886156e-01 -1.42430902e-01 -3.27407420e-01 -4.90555428e-02\\n-3.45832944e-01 -1.50670335e-01 -5.37451744e-01 1.14824072e-01\\n-2.77052037e-02 -5.12728751e-01 -1.22580498e-01 -5.49357653e-01\\n-2.18824804e-01 -4.69523907e-01 -2.82027304e-01 2.13616759e-01\\n6.35256767e-02 1.39032960e-01 -1.55497581e-01 2.79446207e-02\\n-4.28187400e-02 -6.23596072e-01 -2.66356803e-02 1.49163604e-01\\n2.00827986e-01 4.23853099e-01 1.98534369e-01 -2.79200673e-01\\n3.93205695e-02 5.08246005e-01 -4.05801445e-01 -3.40488493e-01\\n3.75211567e-01 1.54240757e-01 -6.00795001e-02 -1.78934500e-01\\n2.73097940e-02 2.95856416e-01 -1.80580080e-01 5.62755466e-02\\n1.25635564e-01 -9.06742215e-02 2.75325835e-01 -2.66111314e-01\\n-2.56982237e-01 -1.17668010e-01 -1.43375665e-01 3.09205562e-01\\n-5.11835814e-01 -3.01409364e-01 6.02433622e-01 1.83108971e-01\\n-4.19602580e-02 3.06000352e-01 1.99281752e-01 7.44044175e-03\\n-3.36609691e-01 -1.70412421e-01 2.61179686e-01 1.76363379e-01\\n1.30626291e-01 -4.54344749e-02 -3.01077724e-01 -5.49743652e-01\\n-3.55569029e+00 -2.82751650e-01 5.50696328e-02 -2.48541459e-01\\n1.85145915e-01 -4.22971770e-02 2.74901390e-01 -2.18013488e-02\\n-2.70694554e-01 7.35134333e-02 -2.01510012e-01 -8.64264816e-02\\n-3.46118249e-02 3.53509903e-01 1.68244332e-01 1.43488690e-01\\n1.93885267e-02 -2.96424508e-01 1.26230046e-01 4.56099212e-01\\n-1.37910172e-01 -8.56148124e-01 7.47311115e-02 -7.26257861e-02\\n1.17508277e-01 1.38784558e-01 -4.04958606e-01 -1.12103790e-01\\n-3.46385002e-01 -1.60494342e-01 6.99183345e-02 -1.60134003e-01\\n-2.52299368e-01 2.49085829e-01 1.06362417e-01 -8.64721388e-02\\n-3.53455804e-02 -3.59373569e-01 -2.24601962e-02 -6.53341055e-01\\n3.26970555e-02 -6.95949554e-01 1.48876294e-01 3.61051299e-02\\n4.64770705e-01 -1.56582966e-02 2.45510906e-01 1.63776100e-01\\n1.69339389e-01 2.33648822e-01 1.70241073e-01 -8.08064919e-03\\n-3.03983480e-01 -2.80499369e-01 -1.99072599e-01 -2.36861020e-01\\n6.57795072e-01 1.94023579e-01 -1.99919999e-01 3.74202840e-02\\n-4.98504452e-02 -3.43164265e-01 -4.75379229e-01 -4.13300067e-01\\n-1.74542099e-01 1.01825230e-01 -6.86987460e-01 -4.31307584e-01\\n-2.44460553e-01 -1.73468426e-01 -1.26737446e-01 6.47513747e-01\\n-4.35722947e-01 -2.20222995e-01 -2.16420054e-01 -5.94370723e-01\\n2.52624780e-01 -8.20131153e-02 8.62736106e-02 -1.86010838e-01\\n-3.27403426e-01 -3.50784421e-01 1.98355496e-01 -2.75172293e-03\\n-2.44776979e-01 1.02648735e-02 1.77890003e-01 -1.08397275e-01\\n-3.86105478e-01 -3.74359012e-01 4.77235377e-01 4.26571816e-03\\n4.57176685e-01 6.10954463e-02 3.10741782e-01 1.59194395e-02\\n5.06574988e-01 -8.55695084e-02 9.16682854e-02 -5.37249565e-01\\n2.93198694e-02 6.69127926e-02 6.19441628e-01 -1.38995737e-01\\n-1.60193462e-02 4.74740826e-02 -2.56839752e-01 -2.49762386e-02\\n5.38749158e-01 -1.63856179e-01 1.38494700e-01 -3.35919678e-01\\n2.67729521e-01 -4.32539463e-01 -3.34229290e-01 6.38738275e-02\\n7.81847909e-02 7.43538260e-01 1.29113436e-01 -3.38600814e-01\\n-2.58372545e-01 3.27801645e-01 -1.52215630e-01 -7.24039972e-02\\n-2.09616601e-01 1.41601801e-01 -2.36046284e-01 2.61437654e-01\\n1.76726252e-01 3.02040782e-02 -2.80137837e-01 3.49889025e-02\\n-1.48878694e-01 1.18181966e-01 2.62158394e-01 1.75832957e-01\\n3.65262851e-03 -2.22498298e-01 -6.84153587e-02 1.14416696e-01\\n2.34426767e-01 3.24253023e-01 2.33186617e-01 -3.89072716e-01\\n2.86060870e-02 1.03369638e-01 -2.36514941e-01 2.98341453e-01\\n-1.03237309e-01 2.26938367e-01 -5.21813989e-01 -2.76915312e-01\\n-2.54761577e-01 -2.65493602e-01 2.29397453e-02 4.41016793e-01\\n1.09912843e-01 -2.51434445e-01 1.10836118e-01 -5.09543180e-01\\n3.66670161e-01 -5.71772903e-02 2.26971194e-01 4.31929063e-03\\n-1.36781614e-02 7.32295930e-01 7.96074718e-02 -2.41586313e-01\\n-5.31088933e-02 1.55605733e-01 -2.05185592e-01 -3.17513853e-01\\n3.06285396e-02 -3.52946162e-01 -1.32428646e-01 4.91699934e-01\\n7.55733997e-02 3.69209722e-02 -1.30102739e-01 4.33190167e-01\\n-6.32488281e-02 -2.58107305e-01 -2.31630683e-01 -1.81962162e-01\\n2.35331021e-02 7.26722330e-02 2.61114061e-01 -5.45908093e-01\\n3.81588191e-02 -1.29535586e-01 1.75660253e-01 4.11845297e-01\\n1.14919640e-01 1.88628212e-02 1.49087429e-01 -1.69886172e-01\\n5.05914688e-01 2.76735544e-01 -1.43848300e-01 -8.47352445e-02\\n1.94630563e-01 -2.57028848e-01 -3.90511125e-01 -3.60201709e-02\\n-9.97323319e-02 -1.41303703e-01 1.43579289e-01 2.12300956e-01\\n1.71816796e-01 3.36324200e-02 -4.70748782e-01 -1.37881815e-01\\n-4.19336766e-01 8.37518796e-02 -2.39282846e-01 -8.23341370e-01\\n6.73615187e-02 -3.51095833e-02 -6.13993406e-01 2.21830845e-01\\n-6.80322275e-02 1.18058249e-01 1.02512687e-01 1.82622120e-01\\n-1.90888226e-01 -3.03844094e-01 2.23368987e-01 -1.36131853e-01\\n-3.05934250e-01 -3.46114695e-01 2.39739753e-02 -9.21545088e-01\\n2.76762545e-01 7.67990723e-02 -1.86048716e-01 3.07146758e-02\\n1.19301431e-01 -7.44753361e-01 3.17702353e-01 -2.37914801e-01\\n-1.33371681e-01 1.43889353e-01 -3.11614990e-01 -3.48008454e-01\\n1.53147981e-01 1.45591050e-03 -1.91140026e-01 2.88545072e-01\\n-3.08448493e-01 6.43162549e-01 2.17807382e-01 1.92919865e-01\\n2.00574994e-01 -2.33969927e-01 -1.39634572e-02 -3.33765209e-01\\n-4.21945453e-01 -2.28561282e-01 -1.99784607e-01 -2.11759627e-01\\n-5.40009476e-02 -1.53570965e-01 -1.05935186e-01 -1.13392070e-01\\n4.73212868e-01 3.49675536e-01 -2.36959338e-01 4.88043763e-02\\n-3.90611514e-02 -2.73881495e-01 2.26684019e-01 -2.59959221e-01\\n-6.96395934e-02 -2.72628725e-01 4.93727446e-01 -1.14674158e-01\\n2.04172567e-01 -1.64891273e-01 6.67558193e-01 -1.67972893e-01\\n-3.62935126e-01 -1.09879233e-01 1.50007069e-01 4.50675115e-02\\n2.88204223e-01 -6.10142827e-01 5.38021401e-02 3.56592685e-01\\n9.64097083e-02 5.85207455e-02 3.72008562e-01 -1.59248084e-01\\n-2.30890840e-01 2.10392445e-01 -6.78520679e-01 1.51378185e-01\\n7.01343715e-01 2.80828059e-01 1.27947688e-01 1.64826989e-01\\n5.65739870e-02 1.68446481e-01 5.30752659e-01 7.68702477e-02\\n-2.02321798e-01 5.14730573e-01 1.92759395e-01 -7.11550891e-01\\n-3.36884797e-01 -1.59894601e-01 -3.37813422e-03 -2.42597044e-01\\n6.20835900e-01 1.33443847e-01 -4.70507681e-01 -3.80021691e-01\\n-3.76374185e-01 -2.80495912e-01 3.32177192e-01 5.52777313e-02\\n1.24651492e-01 -1.00803256e-01 5.91643929e-01 -3.90242860e-02\\n3.01796436e-01 4.75176245e-01 -1.80343539e-02 -1.34569585e-01\\n-5.11511564e-02 2.42801830e-01 1.28010020e-01 3.61895084e-01\\n-5.64892739e-02 1.49931237e-01 3.91129851e-02 1.27426535e-01\\n-3.17187309e-01 -5.31696826e-02 2.20459417e-01 -1.27257854e-02\\n1.10019527e-01 2.12586641e-01 5.36637545e-01 3.36952329e-01\\n2.47376382e-01 4.84607428e-01 3.80346388e-01 -2.83900667e-02\\n4.39093977e-01 6.83360755e-01 1.82947829e-01 -1.08023643e-01\\n1.34323090e-02 1.19458131e-01 1.03729367e-01 -3.07833347e-02\\n4.12101150e-01 5.54117441e-01 9.07534659e-02 7.66765833e-01\\n3.47824782e-01 3.59968692e-01 5.83235145e-01 -5.53700447e-01\\n-1.98314428e-01 5.60754687e-02 5.19675672e-01 -2.61983693e-01\\n1.31907567e-01 1.67795941e-01 -2.51441777e-01 2.32583821e-01\\n-4.59881693e-01 -2.24262774e-01 -5.18954396e-02 -1.45882815e-01\\n2.27639586e-01 -1.86824724e-02 4.49294001e-02 1.42247528e-01\\n-3.87051068e-02 -2.37777084e-01 -2.11852521e-01 -3.39132100e-01\\n-3.74523491e-01 5.73425647e-03 8.44365954e-02 -6.97888136e-02\\n-6.77605197e-02 -2.72388935e-01 -7.20749199e-02 -1.55324727e-01\\n2.70112395e-01 -1.10158734e-01 -3.34998935e-01 -1.07086696e-01\\n1.45143438e-02 3.06369156e-01 9.21783447e-01 -1.77824765e-01\\n1.66461051e-01 -1.78993165e-01 -1.86832607e-01 -2.54484080e-02\\n1.61697477e-01 1.01951584e-01 -2.91782729e-02 6.06689692e-01\\n-2.57903636e-01 -4.82439697e-02 1.52224541e-01 2.31140733e-01\\n-2.43201107e-01 1.32235307e-02 -5.22389561e-02 5.44080250e-02\\n4.37594205e-03 1.22165650e-01 -1.84865832e-01 3.06754448e-02\\n-2.30701506e-01 -6.49197519e-01 2.72451490e-01 -1.19080722e-01\\n-2.70071149e-01 -9.45970863e-02 2.54023075e-01 4.36552346e-01\\n-8.99736732e-02 -1.55729830e-01 -8.55943188e-02 1.97303742e-01\\n1.10036470e-01 3.79391223e-01 -2.18155861e-01 -1.33596122e-01\\n-2.61167705e-01 4.08169508e-01 7.51660541e-02 1.51080757e-01\\n-7.55340159e-02 3.85382116e-01 2.61615179e-02 2.32520312e-01\\n1.59027353e-01 -2.20937565e-01 -3.69323730e-01 -3.04829597e-01\\n-4.35190201e-01 -1.16633028e-02 1.11955486e-01 -8.50889459e-02\\n2.64335275e-01 -2.27494001e-01 -6.81183934e-02 -2.76735246e-01\\n-2.44057477e-01 -4.49558347e-01 -1.16036996e-01 1.09312750e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Manages the maintenance of key Applications - Ensure a proper functional and technical support to the business departments on IS applications - Supervise end users in order to ensure a proper understanding of internal Business Processes (Trading, Shipping, Finance, Legal, Cross-functions) - Provide support to Trading and Operations team in their usage and ramp-up on the Application (training, coaching, change management) - Supervise end users application’s usage in order to guarantee the efficient use of the software - Coach and Train new comers in the understanding of our processes and a proper usage of the applications related to the function of the employee. - Perform review on application usage and data quality and trigger necessary training or process improvements - Define and Implement Projects for new requirements and/or evolution of the applications - Manage the continuous improvement of our Business processes: - Help in ensuring the defined IS applications matches the business requirements of internal departments - Review Processes supported by IS systems and work in coordination with the functional departments to propose processes/Systems changes. - Specify and implement necessary system changes - Manage the testing phases and ensuring quality performance with the external developers involved in various IS improvement projects - Lead Change Management with the users whilst implementing change - Get user-feedback and trigger necessary tasks or subprojects to reach a balance between Processes, Controls, user satisfaction and capability/cost efficiency of the IS Solution - Follow-up on processes implemented, new and existing, and ensure continuous improvement - Identify user needs for reporting and implement them once specified and approved - With the support and in relation with the Business Process Owners, review the processes defined by each BPO and ensure our Operating Model is updated - Manage specific and ad-hoc IS/IT Projects - Gather Requirements and Objectives of the Project - Manage the different Project Phases from Requirements till post-support implementation - Ensure a proper handover and transition of Project deliverables to the employees (Training, support of employees on requests) Profile required: Educational Background / Qualifications: - Degree in Computer science with experience in project management - Secondary Education in cross functional areas Technical Skills: - CRM Systems (SalesForce, Oracle) - Good knowledge of Reporting systems and Business Intelligence tools (IBM Cognos, Quickview,..) - General understanding of main ERP functionalities (SAP) - Scripting language (SQL, JavaScript, any other scripting languages) - First experience on Mobility and Mobile Apps development Experience required: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in the current Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs - Proven capabilities in coaching, training and development Competency profile: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Good experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs Interpersonal competencies / communication - Service-oriented - Communication capability with specialists and non-specialists (oral and written) - Listening skills - Ability to manage diversity and complexity of processes - Negotiation/conflict resolution skills - Reactivity - Time management skills - English professional. Good German. Any other language is a plus Benötigte Skills Englisch Projektleitung Qualitätssicherung CRM ERP Oracle Cognos SAP SQL JavaScript Requirements Engineering Schulung Strategie',\n", + " 'soft_skills': '[\"Negotiation\", \"Professionalism\", \"Supervision\", \"Management\", \"Listening Skills\", \"Operations\", \"Training And Development\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Data Quality\", \"QuickView\", \"Business Intelligence Tools\", \"Ad Hoc Testing\", \"Computer Science\", \"Customer Relationship Management (CRM) Software\", \"Asynchronous Serial Communication\", \"Process Automation Systems\", \"Reactivity\", \"Process Improvements\", \"Performance Review\", \"Mobile App\", \"SAP Sybase SQL\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Secondary Education\", \"Dashboard\", \"Business Intelligence\", \"Mobility\", \"Process Control\", \"Business Requirements\", \"MFG/Pro (ERP)\", \"Cross-Functional Coordination\", \"Finance\", \"Business Process\", \"SAP Functional\", \"Specific Performance\", \"Requirements Engineering\", \"JavaScript (Programming Language)\", \"Continuous Improvement Process\", \"Implement Projects\", \"Adapter Scripting Language\", \"User Feedback\", \"Project Management\", \"Scripting\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Diversity Management\", \"SQL (Programming Language)\", \"Technical Support\", \"International Business\", \"Conflict Resolution\", \"Change Management\"]',\n", + " 'languages': \"['English', 'Polish', 'Luba-Katanga']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Banks & Building Societies',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.03804046e-01 3.90768409e-01 4.67769086e-01 -8.77881497e-02\\n4.87570196e-01 -7.82477483e-02 4.64432091e-02 2.35845342e-01\\n-3.25662307e-02 -4.09615815e-01 -2.12051362e-01 -1.85173452e-01\\n-3.37314159e-02 2.85892887e-03 8.85701180e-02 3.81983519e-01\\n4.20859516e-01 5.20653501e-02 -1.77889988e-01 2.62596428e-01\\n-2.63112150e-02 -4.84103486e-02 8.93685222e-02 7.05695868e-01\\n3.66484374e-01 -4.07317001e-03 -3.99812683e-02 1.14762597e-02\\n-1.80528551e-01 -2.61936098e-01 4.66465175e-01 -1.29114725e-02\\n-1.05974756e-01 -2.18961939e-01 1.30097687e-01 1.13381878e-01\\n-2.33863339e-01 6.26446605e-02 -1.02193907e-01 8.27504918e-02\\n-4.65156496e-01 -2.15260744e-01 4.61863503e-02 1.69673450e-02\\n-2.73656785e-01 -3.25701177e-01 1.41076788e-01 -9.91059318e-02\\n8.86920840e-02 3.25927138e-02 -3.59828532e-01 3.10147762e-01\\n-3.49230528e-01 -2.51716435e-01 3.94583434e-01 6.66098475e-01\\n6.72818422e-02 -4.92215574e-01 -5.22410512e-01 -2.89230585e-01\\n1.19727992e-01 -1.04853883e-01 7.54880682e-02 -2.38034174e-01\\n3.79000843e-01 -3.68774086e-02 -4.54715006e-02 3.40090334e-01\\n-8.06410789e-01 -5.71128950e-02 -3.42003316e-01 -3.79882194e-03\\n-3.69161308e-01 -9.07453969e-02 -3.28373104e-01 -2.37304121e-01\\n-3.78980525e-02 3.99585336e-01 -3.97136770e-02 7.42971301e-02\\n-2.37833411e-01 3.79690588e-01 -3.01380932e-01 2.51185834e-01\\n2.31715769e-01 2.17698529e-01 3.94593537e-01 2.69670486e-01\\n-4.36338782e-01 4.71198261e-01 3.81378710e-01 -4.01021689e-01\\n2.99861073e-01 7.16661960e-02 2.94071645e-01 1.21090993e-01\\n4.55599129e-02 2.07176715e-01 -4.13994640e-02 1.90927461e-01\\n1.63995117e-01 -6.48481101e-02 -2.65146792e-01 -8.46652389e-02\\n-6.79937154e-02 -6.19099960e-02 5.88375144e-02 2.03558311e-01\\n-3.80781233e-01 3.19268405e-01 1.02467567e-01 -3.65109324e-01\\n-1.19307436e-01 -4.81050342e-01 -1.25744179e-01 2.14220621e-02\\n-1.81125551e-01 8.63118023e-02 1.42853677e-01 2.58707881e-01\\n2.07280636e-01 5.52942790e-03 1.49121359e-01 8.42240810e-01\\n-7.94274062e-02 -1.53379310e-02 -2.76485652e-01 3.84893417e-01\\n1.92834020e-01 -2.95513868e-01 1.66953534e-01 2.49384388e-01\\n-1.41898528e-01 -5.93110956e-02 -2.90096939e-01 4.11847413e-01\\n-1.56909823e-02 -1.91932783e-01 -3.28270495e-01 1.57402813e-01\\n-1.80526137e-01 -4.60175455e-01 5.44894278e-01 -3.37428227e-02\\n1.36734962e-01 -3.38697694e-02 5.79121411e-02 -4.10552025e-02\\n-2.21429914e-01 2.58652300e-01 7.20810443e-02 1.28949702e-01\\n-3.42869103e-01 -1.81787699e-01 -1.25452325e-01 3.38497758e-01\\n-1.09896198e-01 2.09553558e-02 -3.38218451e-01 -1.56369090e-01\\n3.00506532e-01 1.03319228e-01 -3.89633536e-01 2.20915735e-01\\n7.37515092e-03 -1.26083091e-01 -1.28226817e-01 3.30436647e-01\\n-9.45730135e-02 1.55070588e-01 -1.45876808e-02 -9.98046845e-02\\n5.83147407e-01 1.13250047e-01 2.33511329e-01 -1.48835555e-01\\n2.55569845e-01 -1.52248889e-01 1.66610152e-01 6.39637411e-02\\n-5.83862901e-01 3.85710686e-01 -1.21061869e-01 2.62319148e-02\\n4.04232070e-02 -1.21016111e-02 2.68036485e-01 -3.26909959e-01\\n-3.89732793e-02 -2.43426889e-01 -3.64712715e-01 -4.16114688e-01\\n-2.31771350e-01 5.16521670e-02 3.14480543e-01 -4.93528724e-01\\n-3.38866264e-02 2.29032874e-01 -6.23656154e-01 -1.13938093e-01\\n2.31761351e-01 2.02805042e-01 5.63333184e-02 1.31169736e-01\\n-1.32118374e-01 -5.36988318e-01 1.87922508e-01 -4.68224108e-01\\n-3.71509492e-01 1.66688889e-01 -2.32319504e-01 1.73263445e-01\\n1.28264099e-01 -3.09862308e-02 -8.89402330e-02 8.46490860e-02\\n-3.74169827e-01 -4.25389297e-02 1.57298416e-01 3.41132544e-02\\n2.00495511e-01 9.53207090e-02 -3.70331585e-01 5.56046605e-01\\n-1.88224792e-01 2.79402107e-01 1.86127856e-01 -1.11399782e+00\\n4.68504429e-01 3.13605785e-01 5.44302762e-02 -3.44051838e-01\\n5.39809585e-01 -3.31697047e-01 -6.30915090e-02 1.32269770e-01\\n-3.40196490e-01 -2.20591009e-01 2.78031409e-01 -1.85036287e-01\\n-2.89583206e-01 5.84917307e-01 4.77691926e-02 6.45212829e-02\\n3.20092380e-01 -2.39338607e-01 -1.98462546e-01 1.41741522e-02\\n-2.01178432e-01 -1.00232869e-01 -5.33763230e-01 -5.23728207e-02\\n-5.50117418e-02 -5.54126143e-01 -2.14222640e-01 -6.14199102e-01\\n-2.14566529e-01 -3.56247604e-01 -2.63777196e-01 2.28898674e-01\\n1.29156232e-01 1.51986346e-01 -1.00486219e-01 2.60264780e-02\\n-1.07011676e-01 -6.38307750e-01 -7.32773319e-02 1.18817471e-01\\n3.27738136e-01 3.04416984e-01 3.80399115e-02 -6.35404363e-02\\n-7.20551834e-02 4.86990243e-01 -2.95677304e-01 -2.85945177e-01\\n2.74363995e-01 1.24624133e-01 -5.15035093e-02 -1.30820215e-01\\n7.80715942e-02 3.36906612e-01 -2.40326658e-01 -3.75703238e-02\\n5.10542020e-02 -9.25578270e-03 3.81516725e-01 8.74746591e-03\\n-3.02216709e-01 -1.89894408e-01 -5.15234210e-02 2.64405489e-01\\n-5.87001085e-01 -2.12707072e-01 6.60117388e-01 2.66089380e-01\\n6.90679625e-03 2.57129878e-01 2.88240254e-01 -6.67196661e-02\\n-2.29125023e-01 -1.44214928e-01 2.58206844e-01 1.17328785e-01\\n1.82096273e-01 4.88546379e-02 -1.67807341e-01 -5.59000731e-01\\n-3.50456190e+00 -2.27051646e-01 2.08202973e-01 -3.04246664e-01\\n2.53372312e-01 -1.08278304e-01 1.91876993e-01 -4.90713157e-02\\n-2.64295340e-01 -2.56928876e-02 -1.29935309e-01 -1.25814736e-01\\n1.74039871e-01 2.99989998e-01 1.39695248e-02 2.43258417e-01\\n1.36782706e-01 -1.53154761e-01 2.03970186e-02 3.56555462e-01\\n-4.52529266e-02 -7.84795880e-01 1.62590116e-01 -3.57159898e-02\\n1.62149251e-01 1.74659938e-02 -4.31057900e-01 -6.35004044e-02\\n-2.95321792e-01 -2.20802099e-01 1.23770088e-01 -1.49104103e-01\\n-1.79627061e-01 2.00907424e-01 1.39965430e-01 -1.98137999e-01\\n4.84757535e-02 -2.97858715e-01 -6.63966835e-02 -5.24165630e-01\\n2.49262959e-01 -6.58757210e-01 9.06176046e-02 -4.34906930e-02\\n6.34322166e-01 -2.73911119e-01 1.93695098e-01 1.28422379e-01\\n1.93415821e-01 1.77321672e-01 1.49514958e-01 -3.03439610e-03\\n-3.35032463e-01 -3.42313588e-01 -1.05996579e-02 -1.00922011e-01\\n6.47520006e-01 2.78520614e-01 -2.39458829e-01 5.25724776e-02\\n-2.13818606e-02 -2.53913909e-01 -4.61148381e-01 -2.76440054e-01\\n-1.60496026e-01 -4.53968756e-02 -6.99442148e-01 -4.07145858e-01\\n-1.35753185e-01 -1.81316569e-01 -8.11915696e-02 7.43607044e-01\\n-2.19896764e-01 -3.91651213e-01 -1.13684237e-01 -5.66930830e-01\\n1.81098491e-01 -1.69850588e-01 2.75039431e-02 -2.53439754e-01\\n-2.56627977e-01 -3.89817357e-01 1.37756169e-01 9.64485481e-03\\n-1.76757276e-01 -5.65620176e-02 7.32280761e-02 -1.33123338e-01\\n-3.41263175e-01 -4.70330536e-01 4.47685182e-01 7.75322318e-02\\n3.83713365e-01 7.77238309e-02 3.09280843e-01 -3.14922258e-02\\n2.94075549e-01 -6.97753802e-02 -1.73235089e-02 -4.73299772e-01\\n1.25298530e-01 6.32203296e-02 5.97068727e-01 -2.41783768e-01\\n5.08673787e-02 1.72237828e-01 -1.30143434e-01 -1.05525434e-01\\n4.89634752e-01 3.22905257e-02 7.00303391e-02 -2.34990343e-01\\n2.50719965e-01 -5.09002507e-01 -2.58920729e-01 9.37308669e-02\\n4.22939211e-02 6.29909635e-01 -5.00193983e-02 -4.46703672e-01\\n-1.96332157e-01 4.14849043e-01 -5.90387657e-02 -1.45725369e-01\\n-2.64161825e-01 1.03701666e-01 -3.24410617e-01 2.13341534e-01\\n2.78311111e-02 -1.16578788e-01 -2.89350361e-01 -5.92018887e-02\\n-6.37676120e-02 2.14282051e-01 2.73974359e-01 1.53323740e-01\\n1.56883597e-02 -2.90722519e-01 -1.04385540e-02 8.78996402e-02\\n1.78481176e-01 4.22182024e-01 2.35109508e-01 -3.15822065e-01\\n-2.09998339e-02 2.70354152e-01 -2.64137089e-01 2.48385996e-01\\n-1.10622399e-01 6.13665693e-02 -4.60509717e-01 -2.24325269e-01\\n-1.94375932e-01 -3.43253702e-01 8.35158154e-02 3.38662028e-01\\n9.61739048e-02 -1.31071836e-01 -4.18518633e-02 -4.87964720e-01\\n3.29023242e-01 5.29233217e-02 2.60018945e-01 1.50793836e-01\\n5.82220033e-04 6.98550224e-01 3.17230541e-03 -2.35252410e-01\\n-4.26415615e-02 7.78964832e-02 -1.29145354e-01 -2.12308973e-01\\n2.01781467e-03 -5.06595016e-01 -6.14632294e-02 4.72236097e-01\\n1.43387616e-02 -2.06427887e-01 -1.83539301e-01 2.93051451e-01\\n-9.07769054e-03 -2.36076578e-01 -1.40851036e-01 3.21042836e-02\\n1.79151565e-01 1.20031558e-01 3.02308261e-01 -4.28472728e-01\\n-7.28138238e-02 1.57823786e-03 2.21211221e-02 4.42300737e-01\\n1.62282705e-01 1.87535763e-01 4.70180344e-03 -1.40022159e-01\\n4.52322900e-01 8.20135102e-02 -1.98109269e-01 -4.35945429e-02\\n9.77521837e-02 -2.22388268e-01 -4.59461898e-01 2.02564411e-02\\n-1.06711335e-01 -1.54663831e-01 7.07870796e-02 5.52929752e-03\\n1.57346129e-01 8.51361528e-02 -5.52490473e-01 -2.43216082e-01\\n-3.75035822e-01 3.76921259e-02 -8.24845433e-02 -6.22166872e-01\\n6.61400482e-02 -3.46626900e-03 -6.24173701e-01 2.93617368e-01\\n-9.53998864e-02 4.07506339e-03 1.08901881e-01 1.39287218e-01\\n-2.57879496e-01 -1.73907652e-01 1.76795453e-01 1.44949555e-01\\n-2.68176168e-01 -2.57146358e-01 5.49259484e-02 -9.39684093e-01\\n2.83430904e-01 1.42679606e-02 -1.52050465e-01 9.51161385e-02\\n2.79563963e-02 -7.10500598e-01 2.55846113e-01 -4.01708126e-01\\n-1.25617549e-01 8.61931518e-02 -2.53956288e-01 -4.20040190e-01\\n4.53875512e-02 -5.81300855e-02 -3.03170592e-01 3.82353485e-01\\n-4.74330693e-01 4.81081545e-01 5.73964864e-02 1.20966241e-01\\n1.90057248e-01 -1.97504357e-01 2.67975479e-02 -3.06911439e-01\\n-4.97036368e-01 -2.75405288e-01 -2.02862799e-01 -3.59575391e-01\\n-2.62710303e-02 -2.78152287e-01 -2.02199370e-01 1.38330394e-02\\n3.32245708e-01 1.58109933e-01 -1.46111727e-01 -2.12831154e-01\\n-3.04572470e-03 -3.13678443e-01 1.74370408e-01 -2.02957094e-01\\n4.02330384e-02 -1.44340038e-01 3.06579709e-01 5.06446101e-02\\n1.30468190e-01 -3.69112730e-01 4.75309312e-01 -1.63741708e-01\\n-3.38913560e-01 -1.41455650e-01 8.39800090e-02 7.56729767e-02\\n3.14627945e-01 -5.91121078e-01 6.94257468e-02 3.47659469e-01\\n2.90944055e-02 8.04835185e-02 2.68158376e-01 -1.39273971e-01\\n-1.10903807e-01 1.40584588e-01 -5.01240313e-01 2.18151540e-01\\n6.66464090e-01 7.49852508e-02 1.95262119e-01 1.86863691e-01\\n2.01701790e-01 3.20096374e-01 5.13015330e-01 6.13382570e-02\\n-1.42312437e-01 3.26856196e-01 7.44533837e-02 -5.75528502e-01\\n-1.50138080e-01 -9.12020504e-02 -1.70393273e-01 -3.46687496e-01\\n6.51755333e-01 3.66033256e-01 -3.54396939e-01 -3.06159616e-01\\n-2.12369904e-01 -2.11850137e-01 3.04177284e-01 -6.47637695e-02\\n9.48208123e-02 -1.31843403e-01 5.69609165e-01 -4.61567119e-02\\n3.49865377e-01 5.45184851e-01 -2.07545966e-01 -3.22709620e-01\\n-3.56575176e-02 1.85333088e-01 3.63333151e-02 3.61937046e-01\\n-5.57535924e-02 2.15400964e-01 4.50925007e-02 1.95634782e-01\\n-1.57729372e-01 -1.79023705e-02 1.77537173e-01 5.44928163e-02\\n1.21926248e-01 4.00297269e-02 5.35466194e-01 4.90870714e-01\\n2.53744483e-01 4.85611647e-01 2.95513093e-01 7.86431059e-02\\n4.61681604e-01 7.16442108e-01 3.73337686e-01 4.58531976e-02\\n4.86913733e-02 1.07038990e-01 1.14339441e-01 -2.03900598e-03\\n2.95529544e-01 4.59290028e-01 1.14118382e-01 8.28918219e-01\\n3.50034237e-01 2.63442695e-01 7.43815720e-01 -6.84027612e-01\\n-3.18231404e-01 3.24992016e-02 4.80759114e-01 -3.47550154e-01\\n5.37812598e-02 1.76892847e-01 -3.14115793e-01 2.13397101e-01\\n-4.35995698e-01 -9.89361480e-02 -4.85197008e-02 -7.37838596e-02\\n9.04889777e-02 -1.53131485e-01 -1.23386778e-01 4.04317081e-02\\n-9.11652222e-02 -2.25712687e-01 -3.18940163e-01 -1.54745772e-01\\n-3.53496075e-01 -3.01715732e-03 -7.69090094e-03 -1.21485524e-01\\n-7.78919086e-02 -3.67699444e-01 -1.52253151e-01 -3.00908461e-04\\n2.89667517e-01 -9.51254964e-02 -1.77729085e-01 -1.30902007e-01\\n1.68675929e-01 2.60561228e-01 7.08278000e-01 4.87506390e-02\\n7.11908042e-02 -4.17976305e-02 -2.15041518e-01 7.63209462e-02\\n1.35584325e-01 9.81297344e-02 2.62277992e-03 5.09274065e-01\\n-2.51530170e-01 -8.81310180e-02 9.35409218e-02 3.21951330e-01\\n-3.35471511e-01 5.32840490e-02 -8.02944526e-02 1.86750114e-01\\n5.06229475e-02 1.79993495e-01 -2.25691020e-01 9.54378843e-02\\n-5.42874001e-02 -5.05900621e-01 4.70868051e-01 -1.25084698e-01\\n-1.71430796e-01 4.48656976e-02 1.56392992e-01 3.96338940e-01\\n-2.43341744e-01 -7.82990232e-02 -1.14482857e-01 1.52971774e-01\\n9.15328860e-02 4.52844322e-01 -2.54536510e-01 -1.00404203e-01\\n-2.80676812e-01 1.80780619e-01 -2.11960450e-02 1.34971946e-01\\n-7.15983436e-02 3.56249154e-01 1.07109055e-01 1.15570664e-01\\n2.51057893e-01 -2.60895379e-02 -2.25229293e-01 -2.30285615e-01\\n-2.43377358e-01 -1.18941270e-01 2.58340891e-02 -6.87678605e-02\\n3.26687604e-01 -2.70393074e-01 -1.15278289e-02 -1.90212190e-01\\n-2.16400623e-01 -4.26365733e-01 -1.54515609e-01 -4.96382965e-03]]',\n", + " 'job_description': 'As a Software Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, software design and development activities for the Bank’s existing and new applications. You will be responsible for providing the design, development, configuration and maintenance for changes on existing systems and also for introducing new applications and interfaces with other systems. You will be developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Work with experienced engineers to design and develop new modules and/or applications Undertake the technical ownership of Cembra Money Bank’s Applications Integrate with the existing applications portfolio as well as third parties’ software Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 5+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Knowledge of messaging systems, Java applications servers (WAS, JBoss, Tomcat) and relational databases and also working experience with common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Executable\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"Operating Systems\", \"Java Application Server\", \"Application Portfolio Management\", \"Finance\", \"Personalization\", \"Production Support\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Modulation\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Custom Backend\", \"Apache Tomcat\"]',\n", + " 'languages': \"['English', 'Welsh']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Argovia',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.varian.com',\n", + " 'jobdescription_embedded': '[[-5.59465587e-02 2.22522646e-01 3.77960205e-01 -1.31588187e-02\\n4.35023904e-01 -1.82821512e-01 1.64762944e-01 4.61604297e-01\\n2.43590586e-02 -5.74613571e-01 -5.09466864e-02 -2.11634308e-01\\n-7.98937678e-02 9.53242034e-02 1.27703607e-01 4.41984028e-01\\n2.46139690e-01 1.13047056e-01 -2.12825373e-01 3.88564855e-01\\n7.04006776e-02 -1.52849972e-01 4.24173437e-02 8.15226197e-01\\n4.18802798e-01 -1.69347995e-03 -1.51279673e-01 -7.47924894e-02\\n-2.02707753e-01 -3.74429524e-01 3.90716970e-01 -3.87588255e-02\\n-2.07812041e-02 -3.11200291e-01 1.45104960e-01 2.01582164e-02\\n-2.07757324e-01 3.92325921e-03 -1.22652479e-01 2.35796288e-01\\n-4.96088237e-01 -1.81494370e-01 -3.93305235e-02 -4.98846397e-02\\n-1.93134129e-01 -3.45624626e-01 -4.44289967e-02 -1.37552265e-02\\n1.61932856e-01 1.25946507e-01 -4.51917201e-01 3.00880224e-01\\n-2.10175276e-01 -3.06805432e-01 3.18793386e-01 6.16686523e-01\\n-6.45300895e-02 -4.18104410e-01 -5.44973016e-01 -3.10576349e-01\\n2.74056941e-02 -8.43834728e-02 8.13651457e-02 -3.64591867e-01\\n2.19668493e-01 1.12543665e-01 8.08680207e-02 3.39702666e-01\\n-7.78957605e-01 -1.72439426e-01 -2.74241775e-01 -1.12870432e-01\\n-1.98691994e-01 -1.85452357e-01 -3.00083429e-01 -1.25671759e-01\\n-2.12621972e-01 3.78899097e-01 3.57250534e-02 3.59929316e-02\\n-1.94950536e-01 2.56447256e-01 -2.36882746e-01 3.24202776e-01\\n2.70293772e-01 2.53692508e-01 2.14246526e-01 3.56376320e-01\\n-3.18909824e-01 4.18582201e-01 9.77080464e-02 -2.83766329e-01\\n2.14183882e-01 2.13878468e-01 5.05721688e-01 -1.10145330e-01\\n2.25676715e-01 7.44982511e-02 -3.79339308e-01 2.81999618e-01\\n2.57895887e-01 -2.37181380e-01 1.36658192e-01 -1.46145463e-01\\n5.62221669e-02 9.05009955e-02 8.62817541e-02 5.05404137e-02\\n-2.41306484e-01 4.18403447e-01 1.34699196e-01 -2.60152072e-01\\n-1.37010232e-01 -4.39434201e-01 -6.91183880e-02 1.02801412e-01\\n8.53987932e-02 1.55523106e-01 2.14545012e-01 8.82205665e-02\\n1.75948843e-01 -5.74966110e-02 5.14143184e-02 7.69657314e-01\\n-1.34254694e-01 7.26330131e-02 -3.39195639e-01 1.67671561e-01\\n7.31138065e-02 -3.54523301e-01 2.20248744e-01 2.11309403e-01\\n-4.06624191e-02 -1.14909276e-01 -2.37614796e-01 4.11337435e-01\\n8.19724724e-02 -1.96216956e-01 -2.36912668e-01 1.73156679e-01\\n-5.66945598e-03 -5.07524908e-01 6.90357685e-01 2.99694296e-02\\n2.46962532e-01 -3.55334431e-02 7.07676858e-02 -3.67596447e-02\\n8.40816461e-03 1.09889276e-01 1.96241513e-01 -1.20415986e-02\\n-2.55767852e-01 -3.16296428e-01 -2.09358439e-01 1.16188720e-01\\n-3.41742247e-01 1.50366738e-01 -4.76986505e-02 -3.80410487e-03\\n2.92992949e-01 1.10399574e-02 -2.58629113e-01 2.46104300e-01\\n-1.48755968e-01 8.79948661e-02 -5.18501066e-02 3.04243356e-01\\n-1.88573197e-01 2.74873823e-01 -6.74518719e-02 -2.83360407e-02\\n7.01306164e-01 1.48431107e-01 7.09568486e-02 -4.29603308e-02\\n3.27022046e-01 3.93966250e-02 1.73181295e-01 1.26343742e-01\\n-6.81874871e-01 2.39945292e-01 -1.46820813e-01 -2.52470434e-01\\n1.73602536e-01 -7.94242993e-02 2.19371513e-01 -3.20834935e-01\\n-1.06935568e-01 -2.24980786e-02 -2.77091235e-01 -3.57130021e-01\\n-2.07502261e-01 -5.74298874e-02 3.68204266e-01 -3.63728553e-01\\n-1.16028249e-01 1.97553247e-01 -4.76923287e-01 -1.23685524e-02\\n1.01023100e-01 2.25999728e-01 1.14984609e-01 1.78856999e-01\\n-1.66525871e-01 -4.56020027e-01 8.57853889e-02 -4.26310033e-01\\n-2.69755781e-01 9.24658924e-02 -3.41550261e-01 2.02982947e-01\\n6.90372437e-02 8.88060406e-02 -1.41823247e-01 9.61494148e-02\\n-1.65010527e-01 -1.00265637e-01 -2.68587731e-02 -2.06246413e-02\\n1.29209593e-01 5.69789438e-03 -3.68584007e-01 4.32643414e-01\\n-7.90962279e-02 4.87251759e-01 7.57548809e-02 -7.54213750e-01\\n4.64436650e-01 3.79992396e-01 -1.23523241e-02 -4.37938124e-01\\n5.09518206e-01 -2.39536986e-01 -1.21710077e-01 1.06442839e-01\\n-3.81182641e-01 -3.97196889e-01 2.54339814e-01 -2.32648328e-01\\n-2.82609195e-01 3.10586512e-01 4.93126176e-02 1.48152843e-01\\n1.35979876e-01 -1.03471436e-01 -4.47377004e-03 3.87961827e-02\\n9.58459303e-02 -1.23077728e-01 -4.99040037e-01 -9.20456573e-02\\n-7.21309856e-02 -3.66112202e-01 -8.25954378e-02 -4.41795617e-01\\n-2.00691536e-01 -4.09274787e-01 -2.69878536e-01 1.88164502e-01\\n2.69362867e-01 1.08574882e-01 5.34818582e-02 1.28555298e-02\\n-9.60217714e-02 -7.02200115e-01 4.05774228e-02 1.32352561e-01\\n4.82114017e-01 1.51626021e-01 -6.59831474e-03 -2.95407251e-02\\n7.48743340e-02 6.62382782e-01 -3.02332014e-01 -1.43506691e-01\\n1.50666878e-01 2.03759030e-01 8.24589655e-02 -1.55423015e-01\\n1.26000702e-01 3.32148641e-01 -2.83523470e-01 8.73369575e-02\\n-6.27286136e-02 -2.03319583e-02 3.61814618e-01 -4.28288355e-02\\n-4.17605013e-01 -2.53768384e-01 -1.40670925e-01 -2.01559607e-02\\n-5.60181081e-01 -1.24062963e-01 5.81168830e-01 1.48751304e-01\\n2.05187008e-01 1.39181256e-01 2.29530424e-01 -1.73459481e-02\\n-1.53056592e-01 -2.62933642e-01 2.08819419e-01 3.83631624e-02\\n1.86039835e-01 1.27918959e-01 -5.29234782e-02 -6.44248068e-01\\n-3.42603397e+00 -1.38446137e-01 1.53922155e-01 -2.47427866e-01\\n2.32161701e-01 -6.45015314e-02 2.54170001e-01 -2.95349173e-02\\n-3.40516299e-01 -1.62952077e-02 -8.92898440e-02 -7.22275972e-02\\n2.03892127e-01 2.31309682e-01 1.27944618e-01 1.43021584e-01\\n3.12168598e-01 -2.83897460e-01 -1.46452859e-01 3.65507096e-01\\n-1.50660962e-01 -5.87095857e-01 1.39393985e-01 6.74569681e-02\\n3.05249244e-01 3.03068340e-01 -3.56912702e-01 -1.58358160e-02\\n-2.26394877e-01 -1.48677692e-01 5.02476580e-02 -2.30647758e-01\\n-1.82909146e-01 1.65970117e-01 1.78262785e-01 -1.49120629e-01\\n1.03354573e-01 -3.75651151e-01 -9.63260606e-02 -4.17138666e-01\\n1.77691698e-01 -6.68821454e-01 -1.12850033e-01 -1.03671901e-01\\n7.70350397e-01 -2.26023674e-01 2.24025652e-01 -4.53635439e-05\\n1.93238720e-01 1.22095257e-01 7.33334571e-02 4.24982831e-02\\n-1.71274856e-01 -2.15863287e-01 4.24992852e-02 -1.46723002e-01\\n5.89020789e-01 4.22026336e-01 -2.63760030e-01 -1.25652492e-01\\n8.01540241e-02 -1.93140984e-01 -4.09779012e-01 -1.19770102e-01\\n-1.81820735e-01 -1.63570076e-01 -6.28258049e-01 -4.60968345e-01\\n-2.25671574e-01 -1.44486606e-01 -1.21125832e-01 7.96985507e-01\\n-3.20766300e-01 -3.72638613e-01 1.21765342e-02 -4.20385748e-01\\n2.37972066e-01 -2.26572722e-01 1.16835169e-01 -2.12641984e-01\\n-2.03353107e-01 -4.10195619e-01 9.75741968e-02 1.02253094e-01\\n-4.01661545e-02 -2.16927141e-01 1.95991322e-01 -6.76488206e-02\\n-2.99145877e-01 -4.25211281e-01 3.41309935e-01 1.50648922e-01\\n2.07089439e-01 1.81530744e-01 3.76794428e-01 6.01803511e-02\\n2.86579818e-01 1.76446103e-02 3.70210297e-02 -4.06183958e-01\\n5.42166308e-02 -7.50968885e-03 5.47544599e-01 -2.60951847e-01\\n-3.77086587e-02 1.00947678e-01 -3.96512687e-01 -1.50571361e-01\\n3.92301917e-01 -7.23510012e-02 7.46209323e-02 -1.32283285e-01\\n2.94398427e-01 -2.27377743e-01 -1.36329442e-01 -1.01583088e-02\\n1.39731154e-01 5.88529229e-01 -1.00786328e-01 -4.25144732e-01\\n-6.69706389e-02 4.23029453e-01 -3.06278430e-02 2.59689569e-01\\n-7.67409429e-02 3.49755213e-02 -1.39314964e-01 2.28285670e-01\\n1.29738767e-02 -1.64302051e-01 -1.74096078e-01 -1.53033406e-01\\n-1.10267267e-01 3.62559527e-01 1.68084294e-01 7.08533451e-02\\n-6.38721734e-02 -3.53207260e-01 -2.28931457e-01 2.72820175e-01\\n1.88086376e-01 4.05742079e-01 8.45707729e-02 -2.29067057e-01\\n-1.70227457e-02 4.29804981e-01 -2.42931381e-01 1.97943330e-01\\n-2.26597235e-01 1.67418823e-01 -3.93310785e-01 -1.79790661e-01\\n-3.28578413e-01 -4.60941523e-01 1.10809639e-01 3.57061982e-01\\n4.82770614e-02 3.64306159e-02 1.50324116e-02 -4.33563530e-01\\n1.51467815e-01 2.05198705e-01 1.77520379e-01 9.51967761e-02\\n-4.75922786e-02 4.14058954e-01 -2.23491769e-02 -1.86155394e-01\\n-2.59631902e-01 5.75375631e-02 -1.35299012e-01 -2.02067066e-02\\n1.60665482e-01 -5.52561104e-01 -6.93018287e-02 3.73906136e-01\\n7.72486851e-02 -3.03049624e-01 -9.53949615e-02 2.74509043e-01\\n5.58745191e-02 -3.70242894e-01 -2.75487900e-01 -8.69646110e-03\\n3.49274188e-01 2.87115742e-02 2.91976511e-01 -5.01734912e-01\\n-3.99350375e-02 -2.75582746e-02 -1.74837455e-01 3.35992008e-01\\n-6.32987842e-02 -3.25414585e-03 -2.14766681e-01 -9.34413448e-02\\n4.42758590e-01 -6.73247725e-02 -8.85165930e-02 5.29886968e-02\\n8.17074999e-02 -2.71455914e-01 -4.90735114e-01 -1.77766720e-03\\n1.59612056e-02 -2.46005163e-01 2.54005194e-02 1.75096318e-01\\n1.09108184e-02 1.66546196e-01 -6.01647437e-01 -1.93497851e-01\\n-2.45439798e-01 -5.14427200e-02 1.65211886e-01 -4.79896188e-01\\n-5.86423837e-02 -4.83016297e-02 -5.21354675e-01 2.63642728e-01\\n-1.89934030e-01 -1.27482772e-01 2.17388436e-01 -7.40383416e-02\\n-2.83681124e-01 -2.59016398e-02 2.85107885e-02 2.91038871e-01\\n-1.52716875e-01 -3.13995391e-01 -1.13714904e-01 -9.81306016e-01\\n2.04280242e-01 1.58649602e-03 -5.74256331e-02 8.32580850e-02\\n-1.68383941e-01 -6.53467774e-01 1.29987434e-01 -3.75940979e-01\\n-8.19654465e-02 -1.79626897e-01 -1.91202328e-01 -4.31845456e-01\\n4.07391489e-02 -7.15117604e-02 -4.09938693e-01 3.23735267e-01\\n-2.58753955e-01 3.11268717e-01 -1.89808324e-01 1.14385672e-01\\n-7.26921409e-02 -3.59771967e-01 1.18133977e-01 -5.12955248e-01\\n-4.15392816e-01 -1.94565922e-01 -2.55267113e-01 -2.95652211e-01\\n-1.16578922e-01 -3.25190812e-01 -1.00316383e-01 2.38420650e-01\\n2.77174681e-01 4.76717390e-02 -8.95779729e-02 -2.94096470e-01\\n4.30763364e-02 -5.89374840e-01 3.98443677e-02 6.99392846e-03\\n-8.74807313e-02 -1.58566117e-01 1.17142066e-01 1.80316076e-01\\n2.58234322e-01 -4.24599499e-01 3.05162102e-01 -4.14920509e-01\\n-2.56744176e-01 -9.94556490e-03 3.22610922e-02 5.65209314e-02\\n3.93968612e-01 -5.19639611e-01 -9.28300321e-02 3.07979882e-01\\n9.35024321e-02 1.25145927e-01 2.21625924e-01 -9.09544528e-02\\n-1.19190998e-01 3.81128401e-01 -2.56933630e-01 1.30590305e-01\\n6.39982522e-01 1.07790366e-01 1.12984352e-01 2.34726533e-01\\n1.54752523e-01 4.23741847e-01 4.28476691e-01 -6.41156361e-02\\n-1.07013710e-01 2.85382658e-01 7.97960609e-02 -4.30051565e-01\\n-7.89805055e-02 1.31870970e-01 -1.64730653e-01 -3.27213615e-01\\n5.99206090e-01 4.99198347e-01 -4.35287714e-01 -2.39561781e-01\\n-1.64533958e-01 -1.84539691e-01 1.48792803e-01 -2.64072735e-02\\n-6.62545711e-02 -1.11880973e-01 4.79649425e-01 -1.25698922e-02\\n1.92699447e-01 5.24582148e-01 -1.66223899e-01 -2.83448339e-01\\n-4.13058773e-02 2.96587497e-01 -8.62940326e-02 5.16037345e-01\\n-1.42129064e-01 1.99517041e-01 1.48621388e-02 1.02195121e-01\\n-2.83480939e-02 1.20050803e-01 7.91925788e-02 1.55186787e-01\\n1.02459550e-01 2.09411532e-01 5.41194022e-01 4.83193219e-01\\n3.51409674e-01 3.63371044e-01 1.87281504e-01 1.36282280e-01\\n4.84268159e-01 4.40782130e-01 4.56186175e-01 1.51176989e-01\\n1.21441595e-02 4.98479642e-02 1.60098821e-01 -9.40447748e-02\\n3.21558565e-01 2.98574924e-01 2.64698733e-02 7.95489430e-01\\n3.02353829e-01 2.17966318e-01 6.43507183e-01 -5.88774562e-01\\n-2.92997628e-01 -4.27153409e-02 5.34308136e-01 -4.25374568e-01\\n4.13585193e-02 1.21296503e-01 -1.16675504e-01 2.74409741e-01\\n-4.46004033e-01 -2.47477040e-01 3.13342698e-02 9.03711617e-02\\n-2.62691285e-02 -2.61299163e-01 -1.85352817e-01 8.30185860e-02\\n-1.31738842e-01 -9.18279365e-02 -5.44731021e-01 -9.92582962e-02\\n-1.57088190e-01 -4.61930744e-02 -1.05933756e-01 -1.58603057e-01\\n-2.88556553e-02 -3.13805014e-01 3.23558375e-02 3.53572518e-02\\n1.27994910e-01 -1.44332051e-01 4.02632952e-02 -6.13395572e-02\\n3.36390883e-01 1.70683414e-01 5.47955215e-01 -1.56336837e-02\\n1.24294326e-01 -2.77150750e-01 -1.66234612e-01 2.14149058e-01\\n1.51939124e-01 8.01192373e-02 9.38872993e-02 2.34258831e-01\\n-2.78464645e-01 -2.05048233e-01 2.74617597e-02 3.92092109e-01\\n-4.35887426e-01 6.55320287e-02 -1.01096824e-01 2.05594674e-01\\n1.23456031e-01 1.26954302e-01 -1.62727654e-01 -1.23096354e-01\\n-1.32056221e-01 -3.78149509e-01 2.01673806e-01 -1.48143871e-02\\n-1.83666050e-01 8.56887922e-02 1.99199408e-01 3.64007771e-01\\n-1.52233943e-01 -3.39362845e-02 -1.02494068e-01 1.70598254e-01\\n1.78393275e-02 2.66701072e-01 -3.34956795e-02 -4.02614653e-01\\n-3.14062953e-01 1.59044236e-01 -2.14719906e-01 4.83305287e-03\\n2.09158566e-02 1.99680522e-01 -2.61836424e-02 9.97220632e-04\\n3.67731392e-01 -5.51610328e-02 -2.28176564e-01 -2.72020638e-01\\n-1.74552232e-01 -1.51095241e-01 1.29595250e-02 -6.25919625e-02\\n1.07363015e-01 -3.19773257e-01 4.80766816e-04 -1.60639092e-01\\n-1.74787730e-01 -2.21881494e-01 -4.61162478e-02 -9.62579399e-02]]',\n", + " 'job_description': \"We're driving toward the ultimate victory: a world without the fear of cancer. As a Software Engineer you will be collaborating with a talented, experienced team, providing best-in-class solutions for complex problems. This position involves all software engineering activities from analysis and design through coding and testing of data integration components, as well as maintenance and support during the product life cycle. Specific Responsibilities Analyze, design develop, and maintain connectivity services and the DICOM Import/Export application Investigate escalated customer issues Desired Qualifications Master’s degree in Computer Science / Electrical Engineering or related field 5 years professional work experience in object-oriented programming and test-driven design Cybersecurity skills as a programmer Service API skills (e.g. RESTful) Self-motivated and able to work well in a team environment. Strong problem analysis and solving capability. C# skills welcome DICOM skills welcome SQL skills welcome Excellent communication and teamwork skills, fluency in English You are analytical, communicative and focused. You work structured and have an eye for details. In addition, you can express your ideas and research in written form. You are used to working independently, open to discussing ideas and solutions with your colleagues. You thrive in an international work environment and in cultivating your contacts with partners in Europe and overseas. You’re just one click away from the most impactful work you’ll ever do. Apply now and join our mission to help save lives. Someone, somewhere, will be glad you did. We look forward to receiving your application and CV. Job Code www.varian.com/ch/daettwil #LI-OSS1 We're unleashing the power of technology and human ingenuity to achieve new victories in the fight against cancer. Join us and have a global impact.\",\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Self-Motivation\", \"Research\", \"Professionalism\", \"Collaboration\", \"Investigation\", \"Communications\"]',\n", + " 'hard_skills': '[\"Test-Driven Development (TDD)\", \"Computer Science\", \"Analytics\", \"Pentaho Data Integration\", \"Life Cycle Assessment\", \"Activism\", \"Import/Export Logistics\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Hostile Work Environment\", \"Software Engineering\", \"Library For WWW In Perl\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Structural Work\", \"Receivables\", \"Humanism\", \"Cybersecurity Compliance\", \"Additives\", \"Cancer\", \"Eyes\", \"Application Programming Interface (API)\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"Cultivator\", \"Dicom\"]',\n", + " 'languages': \"['English', 'Moldavian', 'Venda']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'etl/data management engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.82886654e-01 2.94222355e-01 4.60425436e-01 8.91190618e-02\\n5.80254436e-01 -1.22408994e-01 -2.27416074e-03 1.42229363e-01\\n-2.09328532e-02 -2.62084484e-01 -6.67846799e-02 -2.47497514e-01\\n-6.66818619e-02 4.66556065e-02 4.12734263e-02 3.53907466e-01\\n2.94407368e-01 5.16126938e-02 -1.44064829e-01 3.51744860e-01\\n9.09873620e-02 -8.55234731e-03 1.14045799e-01 5.33777714e-01\\n2.49999702e-01 1.71568617e-03 -9.87909436e-02 2.73114629e-02\\n-2.96015710e-01 -2.46629566e-01 3.76834929e-01 4.18761224e-02\\n-2.57091761e-01 -2.75942773e-01 3.74203846e-02 1.93852298e-02\\n-2.93152720e-01 -7.63805211e-02 2.01705527e-02 5.89236505e-02\\n-3.12672794e-01 -2.41865084e-01 -6.52537867e-02 2.25883648e-02\\n-3.68917108e-01 -2.23576099e-01 -4.76847701e-02 -7.10331425e-02\\n-1.40885770e-01 3.33609097e-02 -4.65750605e-01 2.50394464e-01\\n-1.95079952e-01 -1.32257700e-01 2.80050993e-01 5.91243148e-01\\n2.86980607e-02 -5.35603881e-01 -3.67752373e-01 -2.68577248e-01\\n1.77125722e-01 -1.50052577e-01 7.23767132e-02 -1.20473541e-01\\n4.67886031e-01 -1.35394543e-01 4.65267058e-03 3.54981840e-01\\n-6.73109412e-01 -4.34691198e-02 -2.85936803e-01 4.29135561e-02\\n-3.97870421e-01 -4.33701649e-02 -2.28451222e-01 -2.52931476e-01\\n2.95568054e-04 3.21657240e-01 4.34875451e-02 6.16574362e-02\\n-2.04258069e-01 2.19841748e-01 -1.23642094e-01 1.01892725e-01\\n3.50744724e-01 9.24138427e-02 2.16570035e-01 2.00282171e-01\\n-4.54654604e-01 4.02896315e-01 3.36163551e-01 -2.81646758e-01\\n2.14242175e-01 3.86249088e-02 3.13697785e-01 1.35442257e-01\\n-4.63122763e-02 2.19277918e-01 1.45090474e-02 1.16766728e-01\\n2.72232722e-02 -1.29525393e-01 -3.86340320e-02 -1.44338179e-02\\n-3.60555686e-02 -8.55849832e-02 -3.98940556e-02 2.73893893e-01\\n-2.86561012e-01 2.69940287e-01 1.31063282e-01 -1.39675409e-01\\n-2.62371227e-02 -4.67194438e-01 -1.15251288e-01 -2.39910603e-01\\n-8.88643228e-03 1.78231850e-01 3.25242490e-01 1.93245411e-01\\n2.74064690e-01 9.05287638e-02 2.45486677e-01 8.26432228e-01\\n2.94108540e-02 6.87492788e-02 -2.70480067e-01 4.06487256e-01\\n1.72809020e-01 -2.63654172e-01 1.76037923e-01 2.03488350e-01\\n2.39853486e-02 -1.32417148e-02 -2.44581312e-01 2.20447555e-01\\n-1.43666029e-01 -2.14284346e-01 -1.59997627e-01 7.37251192e-02\\n-2.58328646e-01 -4.74983722e-01 3.14343631e-01 5.62342964e-02\\n1.19324580e-01 -1.44343629e-01 -4.29588072e-02 -2.25478150e-02\\n-1.59657970e-01 3.54074597e-01 -1.13120303e-02 2.46760041e-01\\n-2.84581542e-01 -1.79397702e-01 -7.82394037e-02 3.10006946e-01\\n-4.61644530e-02 3.14127617e-02 -1.66080162e-01 -1.73593089e-01\\n2.27763280e-01 9.58850160e-02 -4.53318089e-01 1.81062132e-01\\n5.36305718e-02 -4.01964515e-01 -1.75364450e-01 3.84028554e-01\\n-1.51382029e-01 5.80714457e-02 -1.67077742e-04 -2.36360237e-01\\n5.01266837e-01 2.39639848e-01 2.03717276e-01 -8.40321034e-02\\n2.30118409e-01 -1.93768784e-01 3.55393946e-01 1.79439306e-01\\n-5.87054551e-01 3.75960916e-01 -1.39848158e-01 -1.35463938e-01\\n6.40802905e-02 7.82345086e-02 4.03140455e-01 -2.78279334e-01\\n6.67369440e-02 -1.81013122e-01 -3.47027153e-01 -4.54138964e-01\\n-1.65052503e-01 1.09524541e-01 3.12953949e-01 -3.91538322e-01\\n-1.24066651e-01 1.76465154e-01 -4.77721781e-01 -1.98592976e-01\\n2.15340719e-01 1.66240051e-01 4.74068522e-02 1.42266840e-01\\n-7.64120892e-02 -4.76231813e-01 7.69889206e-02 -4.85842049e-01\\n-3.71001452e-01 1.20211607e-02 -1.72866330e-01 1.05673566e-01\\n6.38870001e-02 2.51073018e-02 -4.18449081e-02 1.45813867e-01\\n-4.44911331e-01 -2.43950300e-02 2.84102589e-01 1.44285604e-01\\n2.07106754e-01 -4.22451124e-02 -3.19223374e-01 5.23643911e-01\\n-2.43879750e-01 4.08331603e-01 2.01205909e-01 -8.84252667e-01\\n4.95560527e-01 1.03606172e-01 7.17204716e-03 -3.16100448e-01\\n4.64358717e-01 -4.61003691e-01 5.49336746e-02 1.46086082e-01\\n-1.60880595e-01 -6.44245073e-02 3.24695170e-01 -1.70436770e-01\\n-2.77647436e-01 6.71607137e-01 1.63556665e-01 8.88292026e-03\\n2.66937107e-01 -2.20775336e-01 -2.19743058e-01 -1.56572342e-01\\n-1.94035515e-01 -2.05364391e-01 -3.83536667e-01 1.85088202e-01\\n-5.28821982e-02 -5.22306919e-01 -9.53096896e-02 -4.44287777e-01\\n-1.30557582e-01 -3.79058182e-01 -2.02975199e-01 3.21203202e-01\\n4.33853567e-02 1.45933598e-01 -1.13316610e-01 1.56420767e-02\\n-4.90301922e-02 -6.03468299e-01 -6.17831163e-02 1.26911968e-01\\n4.28523600e-01 3.39355379e-01 1.71158284e-01 -1.05147332e-01\\n2.26129107e-02 4.53190804e-01 -3.04319441e-01 -3.14085782e-01\\n1.35958984e-01 1.51304841e-01 2.51673963e-02 -1.96706355e-01\\n7.63176605e-02 3.70329022e-01 2.95457225e-02 4.08023037e-03\\n-7.79841514e-03 -2.07945909e-02 3.63795847e-01 -1.65872887e-01\\n-2.23852739e-01 -1.79152474e-01 3.01720779e-02 3.27635616e-01\\n-3.84498209e-01 -1.78792909e-01 5.65774858e-01 3.00352216e-01\\n-8.37727915e-03 2.11740956e-01 2.61337936e-01 -8.84048790e-02\\n-3.09285760e-01 -2.05925569e-01 1.74438387e-01 1.41874224e-01\\n1.49312511e-01 -6.18624911e-02 -2.67253608e-01 -4.92757648e-01\\n-3.70545888e+00 -1.75145358e-01 4.51356098e-02 -3.33191454e-01\\n2.75775284e-01 -1.89907745e-01 1.70324430e-01 8.68595019e-02\\n-2.99405396e-01 1.08432457e-01 -1.85475811e-01 -5.89571893e-02\\n1.10887125e-01 2.99181312e-01 2.22464874e-01 1.51464894e-01\\n7.18299206e-03 -2.05344945e-01 -5.11051528e-02 3.41718644e-01\\n-9.52382907e-02 -7.28348255e-01 1.19625255e-01 3.85021307e-02\\n1.20457783e-01 6.61793053e-02 -3.74222130e-01 -7.52567276e-02\\n-2.05438823e-01 -2.91201949e-01 5.75736463e-02 -1.76061481e-01\\n-2.19873965e-01 3.44346374e-01 1.30152524e-01 -1.49123847e-01\\n-1.55652668e-02 -2.74759382e-01 1.43121742e-02 -6.11347198e-01\\n5.34177944e-03 -6.12069249e-01 1.94613963e-01 -6.75398856e-02\\n4.96885896e-01 -2.90976763e-01 2.30536848e-01 2.08034888e-01\\n1.07845582e-01 2.14897633e-01 7.88817927e-02 -5.97029142e-02\\n-3.48980784e-01 -3.71086627e-01 -1.61017030e-01 -2.47436672e-01\\n5.12117028e-01 4.10130382e-01 -1.92550018e-01 5.92327341e-02\\n4.44644466e-02 -2.66785353e-01 -3.98478329e-01 -5.46132565e-01\\n-2.53807187e-01 9.03500244e-03 -7.82704294e-01 -4.69426453e-01\\n-4.53139469e-02 -8.54138583e-02 -1.46429867e-01 5.46790183e-01\\n-3.36801559e-01 -3.96242797e-01 3.57567631e-02 -5.05939066e-01\\n1.43684864e-01 -2.28202417e-01 1.28508732e-01 -1.51747614e-01\\n-3.67936999e-01 -3.48679811e-01 2.53284067e-01 -4.07562405e-02\\n-2.16849506e-01 -9.13586188e-03 8.00555646e-02 -1.82286590e-01\\n-3.72587740e-01 -4.15227801e-01 4.66153175e-01 1.94671117e-02\\n4.69715357e-01 3.81937958e-02 2.66449809e-01 1.65849507e-01\\n3.17319304e-01 -6.73990399e-02 1.62383169e-01 -3.85414511e-01\\n1.79283649e-01 1.07240282e-01 6.18297577e-01 -2.07874268e-01\\n1.09081268e-01 6.63672686e-02 -1.88842729e-01 -7.81591535e-02\\n5.35061419e-01 -1.32347364e-02 8.49006623e-02 -8.75882730e-02\\n3.38033080e-01 -6.07275724e-01 -2.65150607e-01 1.17672846e-01\\n9.44200233e-02 6.13503218e-01 1.19173340e-01 -4.02489305e-01\\n-2.19130918e-01 3.56717497e-01 -1.26071721e-02 -2.33864412e-01\\n-3.53765823e-02 1.35697871e-01 -2.34675512e-01 2.59641260e-01\\n4.14398238e-02 -1.02745414e-01 -3.59763771e-01 -1.06252946e-01\\n-4.67447843e-03 1.19895190e-01 2.77552038e-01 6.61204383e-02\\n-6.60742894e-02 -2.33615443e-01 -1.90102652e-01 4.89880852e-02\\n2.98529118e-01 1.81235000e-01 2.24934995e-01 -2.62540191e-01\\n-2.13816855e-02 1.65657818e-01 -2.74155170e-01 3.02139819e-01\\n-1.35436013e-01 1.42720565e-01 -5.82320452e-01 -1.70144081e-01\\n-1.51287749e-01 -1.94778919e-01 8.35760906e-02 3.25489670e-01\\n1.81200728e-01 -1.40136987e-01 1.54467430e-02 -5.23435891e-01\\n4.35875148e-01 -2.82716844e-02 1.70422569e-01 9.22565684e-02\\n2.94304453e-02 7.03125238e-01 2.95264088e-03 -1.09940767e-01\\n-1.09581277e-01 -2.67154798e-02 -2.31087551e-01 -3.07278395e-01\\n5.39803095e-02 -2.59378791e-01 -8.58666599e-02 5.35481930e-01\\n1.20779574e-01 -8.31534117e-02 -1.36404946e-01 3.87143344e-01\\n1.09270610e-01 -1.96883649e-01 -2.42362648e-01 5.10866418e-02\\n2.09193319e-01 9.68971178e-02 2.04913914e-01 -4.28164333e-01\\n-1.00052536e-01 9.71419830e-03 9.22156200e-02 4.18972433e-01\\n9.07589570e-02 1.13051079e-01 8.00696462e-02 -1.78453311e-01\\n5.67054152e-01 9.60334912e-02 -1.61276042e-01 -4.16291095e-02\\n8.18549991e-02 -2.63172269e-01 -3.66695851e-01 -1.09995067e-01\\n-9.64917988e-02 -2.23073721e-01 2.55745560e-01 5.22744097e-02\\n1.95555717e-01 -9.80728865e-02 -4.56767470e-01 -1.71233147e-01\\n-3.33397716e-01 1.05997268e-02 4.54052240e-02 -5.49170792e-01\\n7.20491707e-02 -4.02183048e-02 -5.27858436e-01 3.13907892e-01\\n-6.82210624e-02 2.87611466e-02 4.38999087e-02 1.24755196e-01\\n-2.77270526e-01 -4.56051975e-02 1.84207201e-01 4.15170975e-02\\n-3.24693471e-01 -1.89134091e-01 1.03409514e-01 -1.02677321e+00\\n1.26676291e-01 1.24714851e-01 -1.02524810e-01 9.12181381e-03\\n8.75782669e-02 -6.86721325e-01 2.37778530e-01 -4.06053632e-01\\n-7.56057398e-03 -4.57257964e-03 -2.36406073e-01 -4.07695919e-01\\n1.46696419e-01 -2.19663139e-02 -2.56065100e-01 3.84693533e-01\\n-3.89456242e-01 4.32754338e-01 1.27826676e-01 5.91984876e-02\\n1.53819114e-01 -2.34336719e-01 1.32655367e-01 -3.81609589e-01\\n-4.15430486e-01 -1.81145430e-01 -2.93640137e-01 -2.54610360e-01\\n-8.88466015e-02 -2.28400633e-01 -1.50495395e-01 -2.77552884e-02\\n3.91699553e-01 2.24117577e-01 -1.40014201e-01 -7.14004189e-02\\n6.24056756e-02 -4.05117482e-01 1.56435832e-01 -2.42518619e-01\\n-5.91115654e-02 -1.99989334e-01 2.68097073e-01 -1.71795413e-01\\n9.27866921e-02 -2.71515489e-01 5.77060580e-01 -1.37729213e-01\\n-3.95731568e-01 -1.86347678e-01 5.90676442e-02 8.92457217e-02\\n2.38279104e-01 -3.88063729e-01 -2.41003968e-02 1.94012061e-01\\n8.53145570e-02 4.54582050e-02 3.37285161e-01 -1.97537899e-01\\n-2.25930333e-01 1.92313790e-01 -7.05771923e-01 6.10249862e-02\\n6.82253838e-01 2.02412605e-01 1.93549827e-01 1.69807494e-01\\n1.01577930e-01 2.09796920e-01 4.54385430e-01 2.13664747e-03\\n-8.87271240e-02 3.08477372e-01 8.38583484e-02 -4.62562799e-01\\n-2.56530195e-01 -1.18178479e-01 -9.12429169e-02 -3.12077522e-01\\n6.00719333e-01 2.44438425e-01 -2.86056340e-01 -2.81719714e-01\\n-1.27973139e-01 -1.61838055e-01 2.74550498e-01 -8.84317979e-02\\n1.99341495e-02 -1.38268024e-01 5.38621426e-01 -2.00403202e-02\\n3.59399766e-01 4.73276496e-01 -4.53353636e-02 -2.79446363e-01\\n-6.81195483e-02 9.69032496e-02 2.03922927e-01 3.63635331e-01\\n-3.88119631e-02 1.69245183e-01 -2.68129483e-02 1.92381427e-01\\n-2.49094963e-01 6.99633658e-02 1.82192370e-01 1.35943398e-01\\n1.18421189e-01 1.13834448e-01 3.02066714e-01 3.77151072e-01\\n1.61942095e-01 4.88721550e-01 2.90234864e-01 1.17897335e-02\\n2.86609024e-01 5.61670899e-01 3.62650424e-01 2.09031664e-02\\n-1.72452368e-02 -1.34397438e-03 -6.00425759e-03 -9.80878398e-02\\n2.66844004e-01 4.00953531e-01 1.78661600e-01 7.92297542e-01\\n3.81030142e-01 4.69571769e-01 6.65763676e-01 -5.81439257e-01\\n-3.38499695e-01 7.01029450e-02 5.27422071e-01 -4.24675196e-01\\n-1.15226600e-02 2.22959548e-01 -2.94509798e-01 1.74073622e-01\\n-4.76969540e-01 -1.11876033e-01 1.64432377e-02 -2.09081516e-01\\n1.81886092e-01 -5.40319495e-02 -1.03571445e-01 1.75274074e-01\\n-1.46334127e-01 -3.06722492e-01 -2.45710105e-01 -3.27428162e-01\\n-2.81335264e-01 -3.18170637e-02 1.37376375e-02 5.17725796e-02\\n-1.01050004e-01 -3.36548805e-01 -4.33592014e-02 -7.56449997e-02\\n2.87910938e-01 -1.12311140e-01 -2.56788254e-01 -2.42934436e-01\\n6.04452938e-02 2.52319574e-01 6.51116431e-01 -5.15322722e-02\\n1.56707704e-01 -1.43173799e-01 -1.64815903e-01 -1.97396148e-02\\n1.18266575e-01 8.40550810e-02 1.19694784e-01 5.36740124e-01\\n-3.47601354e-01 -1.06118089e-02 1.81385696e-01 2.85657704e-01\\n-2.80745924e-01 7.72655103e-03 -4.40036133e-02 1.13661341e-01\\n8.68786722e-02 1.48535371e-01 -2.95798182e-01 1.02083266e-01\\n-2.39531070e-01 -6.30290270e-01 4.37041938e-01 -2.70404428e-01\\n-2.07981914e-01 1.77585948e-02 2.69734651e-01 2.63415247e-01\\n-1.60903558e-01 -3.98087054e-02 -2.11894643e-02 2.90844679e-01\\n-1.82208642e-02 4.13718879e-01 -2.04718992e-01 -1.17175870e-01\\n-3.15127075e-01 3.56620342e-01 7.70842209e-02 2.77343035e-01\\n-6.69359639e-02 4.67369735e-01 -4.68422361e-02 2.11542517e-01\\n1.95739999e-01 -1.32849231e-01 -3.22134405e-01 -2.83049375e-01\\n-2.95024723e-01 -1.34278312e-01 1.27348751e-01 -8.67331624e-02\\n2.76996523e-01 -2.31331080e-01 -8.70255977e-02 -2.02845186e-01\\n-1.96796685e-01 -4.12543774e-01 -8.97406414e-02 9.64909419e-02]]',\n", + " 'job_description': \"Job Informationen Key responsibilities: - Technical ownership of our's ETL processes, Master Data Management and Infomatica PowerCenter application - Design and development of backend data integration - Act as SME with third parties providing design, development and support services - Integrate with the existing middleware, data sources and the bank’s DWH solution - Build and improve data integration architecture and drive simplification - Provide change and project support for initiatives related to backend data integration - Liaise with business stakeholders and data owners of respective systems - Liaise with production support and operations teams for the all ETL flows Your profile: - Experience with ETL tools such as Infomatica PowerCenter, or similar - Advanced knowledge of PL/SQL, and different database technologies is a plus - Experience with Application Lifecycle Management - Deep knowledge of data types, data architecture disciplines and MDM concepts - Knowledge of Data infrastructure and migration principles in theory and practice - Solid experience with data modeling and database design for operational as well as analytical systems - Experience with different integration patterns, batch, online, asynchronous, etc. - Basic knowledge of both Windows and Linux operating systems and shell scripting - Working proficiency in development toolsets, e.g. Eclipse or similar - Proficiency in one or more general purpose programming languages understanding of software skills such as -business analysis, development, maintenance and software improvement - Experience in Data Warehousing environment, experience in handling large volume of data is a plus - Ability to work and technically coordinate with 3rd party vendors (both onsite and offshore) - Work experience in financial or banking industry is a plus - Team player with good communication skills and an open style to provide transparency to management - ITIL 3.0 foundation certification - English and german spoken and written Benötigte Skills Englisch ITIL Banken / Finanzgesellschaften Datawarehouse Eclipse W2008 W2012 Linux Shell-Scripts PL/SQL ETL\",\n", + " 'soft_skills': '[\"Coordinating\", \"Verbal Communication Skills\", \"Operations\", \"Integration\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Tooling\", \"KM Programming Language\", \"Shell Script\", \"Joint Application Design (JAD)\", \"Application Lifecycle Management\", \"Data Modeling\", \"Pentaho Data Integration\", \"Analytics\", \"Middleware\", \"Operating System Development\", \"Data Integration\", \"Industrialization\", \"Data Warehousing\", \"Offshoring\", \"ITIL Security Management\", \"Apex Data Loader\", \"Linux\", \"E (Programming Language)\", \"Eclipse (Software)\", \"Extract Transform Load (ETL)\", \"Database Design\", \"Academic Support Services\", \"Lifecycle Management\", \"Natural Language Understanding\", \"Production Support\", \"Business Analysis\", \"Clinical Data Management\", \"Data Infrastructure\", \"Transparency (Human-Computer Interaction)\", \"Process Safety Management\", \"Banking\", \"Custom Backend\", \"Acceptance and Commitment Therapy (ACT)\", \"Source Data\"]',\n", + " 'languages': \"['English', 'Kalaallisut']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 4.90229800e-02 2.97917128e-01 4.39905524e-01 7.03050867e-02\\n5.21131754e-01 -2.16982588e-01 -3.99645828e-02 4.95162368e-01\\n-4.02844995e-02 -5.36455035e-01 9.40928385e-02 -1.14590101e-01\\n-1.49782866e-01 1.09880485e-01 4.10227664e-02 4.17319089e-01\\n2.88221031e-01 1.62648827e-01 -1.93620488e-01 3.20761919e-01\\n1.27973095e-01 -8.01675543e-02 1.66979223e-01 7.15268552e-01\\n4.30098027e-01 -8.08927938e-02 -1.00524791e-01 -2.22665351e-02\\n-2.60259390e-01 -2.64580011e-01 2.83885896e-01 3.00317854e-02\\n-9.15894844e-03 -3.50295514e-01 1.13630824e-01 -7.57706687e-02\\n-2.79735386e-01 -1.43612120e-02 -1.06526609e-03 2.13685796e-01\\n-5.42728007e-01 -2.58182436e-01 -2.00369293e-04 -3.26127298e-02\\n-2.40542024e-01 -2.40969792e-01 -1.37284445e-03 -1.06943876e-01\\n1.98715106e-01 7.02873617e-02 -5.09317517e-01 2.31335938e-01\\n-1.80450886e-01 -2.15089709e-01 3.09043199e-01 5.71866632e-01\\n1.43685967e-01 -4.15235132e-01 -5.44164896e-01 -3.07650894e-01\\n1.54684186e-01 -1.26219854e-01 -1.23524956e-01 -2.73860574e-01\\n2.78269470e-01 -6.38677552e-03 4.23559658e-02 2.43443742e-01\\n-7.64444172e-01 1.69372093e-03 -1.06222861e-01 -7.98086971e-02\\n-4.12060112e-01 -7.79623091e-02 -2.04859614e-01 -5.67695946e-02\\n1.58206448e-02 4.21798050e-01 1.84037447e-01 4.15711738e-02\\n-1.74852207e-01 3.21402937e-01 -2.01201767e-01 3.69817376e-01\\n1.71229944e-01 2.05713451e-01 1.23940267e-01 3.58641565e-01\\n-3.64917427e-01 4.28739816e-01 2.52892047e-01 -2.61655450e-01\\n2.54364282e-01 5.74528389e-02 5.17502487e-01 -9.90852043e-02\\n7.18632564e-02 6.49723858e-02 -2.51405239e-01 4.56787169e-01\\n1.83500156e-01 -2.68869430e-01 8.94334316e-02 -1.10007077e-01\\n7.14004319e-03 1.07774343e-02 6.44368827e-02 2.03074798e-01\\n-8.56987461e-02 4.62229759e-01 1.70712546e-01 -1.80773661e-01\\n-1.75357416e-01 -3.61860633e-01 4.96655889e-02 -5.22858053e-02\\n7.01624528e-02 2.40798667e-01 2.86226392e-01 1.06877409e-01\\n1.31891638e-01 1.05866447e-01 1.81113243e-01 9.39289510e-01\\n-1.26703814e-01 5.76909184e-02 -3.44789743e-01 1.21241055e-01\\n1.49034292e-01 -3.63606036e-01 2.50193179e-01 3.35075498e-01\\n-1.84964593e-02 -1.48586616e-01 -1.44163862e-01 2.59524494e-01\\n1.45316347e-01 -1.63228199e-01 -2.74204075e-01 8.20346624e-02\\n-1.31944761e-01 -3.01126182e-01 5.97357094e-01 1.84695750e-01\\n1.26479939e-01 -5.28316088e-02 -6.60626218e-02 -1.51135638e-01\\n-1.39598727e-01 2.64438450e-01 -7.25273192e-02 1.57592744e-01\\n-3.64943355e-01 -2.42020994e-01 -2.20878467e-01 1.08098248e-02\\n-2.63684630e-01 8.44867714e-03 3.02194972e-02 -1.32325694e-01\\n2.21328184e-01 4.78991941e-02 -2.31505305e-01 2.59641618e-01\\n-7.82069489e-02 1.45271346e-02 9.61283073e-02 3.04035127e-01\\n-1.18358001e-01 2.67371118e-01 -1.67370252e-02 1.42752416e-02\\n5.66132247e-01 9.33041722e-02 7.60053247e-02 -5.61900400e-02\\n3.97335827e-01 -1.38681307e-01 9.38635841e-02 1.88586682e-01\\n-5.47605872e-01 2.37958938e-01 -1.33755699e-01 -9.03653577e-02\\n1.04015723e-01 -1.54397534e-02 2.73853391e-01 -2.45076358e-01\\n-5.24954917e-03 -1.26831234e-01 -3.56160939e-01 -3.11813205e-01\\n-1.58239558e-01 1.67962350e-02 4.70927179e-01 -4.62002218e-01\\n-1.79054558e-01 3.42160493e-01 -4.06109035e-01 -5.07237352e-02\\n2.00700894e-01 1.98570341e-01 1.35579780e-01 5.45782000e-02\\n-3.11292857e-01 -4.37252373e-01 5.60363345e-02 -3.59499454e-01\\n-3.59844267e-01 4.84139509e-02 -2.54474133e-01 2.97530681e-01\\n1.29817173e-01 5.56956232e-02 -1.75994784e-01 1.19772732e-01\\n-1.82454899e-01 -1.63502708e-01 1.66017056e-01 9.12023559e-02\\n2.33028099e-01 -2.07305537e-04 -3.27303827e-01 3.47200155e-01\\n-2.16579825e-01 5.40561795e-01 1.28396228e-01 -9.23711836e-01\\n4.39514369e-01 2.39880487e-01 -8.72563049e-02 -3.95572186e-01\\n5.28012633e-01 -2.36039132e-01 6.11040322e-03 1.49542898e-01\\n-3.11635137e-01 -3.51612061e-01 2.95361549e-01 -9.72519815e-02\\n-3.02343488e-01 4.42996919e-01 6.24808334e-02 5.79570569e-02\\n1.32670969e-01 -1.85301438e-01 -1.39385387e-01 3.32112759e-02\\n2.88467091e-02 -2.50473887e-01 -4.25768584e-01 5.15406206e-02\\n-1.11733839e-01 -4.64803636e-01 -3.68338004e-02 -3.38356733e-01\\n-2.76383817e-01 -3.71631950e-01 -1.60122886e-01 4.16003644e-01\\n2.71352887e-01 1.64722472e-01 -1.19958082e-02 8.62305332e-03\\n-1.26696408e-01 -5.61281621e-01 1.05358684e-03 1.58699274e-01\\n4.98374522e-01 1.85555845e-01 1.37598604e-01 4.00808603e-02\\n8.80823359e-02 6.30084395e-01 -8.41415673e-02 -1.70300141e-01\\n1.68344639e-02 1.60772681e-01 3.74805667e-02 -1.80662543e-01\\n9.05907899e-02 3.68793428e-01 -1.82320610e-01 7.03947544e-02\\n-3.65675911e-02 -5.43992668e-02 3.05132896e-01 6.49728477e-02\\n-3.68243754e-01 -2.58017033e-01 -1.24566980e-01 7.92000070e-02\\n-5.91980815e-01 -1.38440982e-01 6.71019852e-01 9.19051319e-02\\n1.09320365e-01 4.77070473e-02 1.57038569e-01 -9.88913029e-02\\n-8.97527710e-02 -1.39424846e-01 2.49182880e-01 1.48275048e-01\\n6.21557832e-02 1.30021811e-01 -6.66223094e-02 -6.58248842e-01\\n-3.67480326e+00 -2.29925990e-01 1.48332387e-01 -3.07796061e-01\\n1.49848357e-01 -1.55036569e-01 1.09026376e-02 -9.40375701e-02\\n-1.93540439e-01 -1.36013729e-02 -1.58369407e-01 -1.33279152e-02\\n1.69032544e-01 1.64100274e-01 7.87530765e-02 2.78886646e-01\\n1.95263594e-01 -8.62191916e-02 -1.91642135e-01 3.37890923e-01\\n-1.97389334e-01 -4.34735656e-01 3.38154197e-01 -5.47892880e-04\\n3.08338851e-01 1.18616156e-01 -2.40605205e-01 -3.42522562e-02\\n-1.34146795e-01 -1.78933680e-01 3.90813611e-02 -1.03651412e-01\\n-1.09375186e-01 2.75964707e-01 2.41375700e-01 -1.20446779e-01\\n2.53881067e-01 -4.28811640e-01 -9.00486261e-02 -3.90702218e-01\\n1.08340807e-01 -6.85738385e-01 -8.23402107e-02 -2.55763650e-01\\n6.68185115e-01 -2.90078878e-01 9.19390656e-03 1.43376747e-02\\n2.29970768e-01 1.78290725e-01 -1.57695822e-02 -2.45004147e-02\\n-1.66011795e-01 -2.95519501e-01 -8.72104988e-02 -1.95148528e-01\\n5.03344059e-01 6.17993414e-01 -2.30630606e-01 -1.67314500e-01\\n4.95820493e-02 -2.17338920e-01 -5.18517375e-01 -3.22742075e-01\\n-1.63678885e-01 -2.29304641e-01 -6.06425166e-01 -3.15599173e-01\\n-1.38748556e-01 -1.04703188e-01 -1.88564092e-01 5.85413098e-01\\n-2.41186112e-01 -3.89125556e-01 5.27560152e-02 -3.28469068e-01\\n1.97466105e-01 -9.14533660e-02 7.00900843e-03 -1.46995991e-01\\n-2.92783588e-01 -3.89106423e-01 1.29827829e-02 -1.70806572e-02\\n-1.79119691e-01 -3.99387568e-01 -1.05220536e-02 -2.73325980e-01\\n-2.57143617e-01 -3.91739696e-01 4.70210642e-01 9.39262956e-02\\n3.25395674e-01 8.23065192e-02 4.80847508e-01 4.50396203e-02\\n2.98660010e-01 -1.77257329e-01 -7.04686251e-03 -4.97215420e-01\\n1.87265590e-01 -2.57863533e-02 5.11380792e-01 -2.63171762e-01\\n5.67363687e-02 1.22685075e-01 -2.55335897e-01 -4.13114391e-02\\n3.17553639e-01 2.52914894e-02 -1.53527400e-02 -1.22701488e-01\\n3.02402765e-01 -2.04782948e-01 -3.00792664e-01 6.33167624e-02\\n1.83470786e-01 4.42046970e-01 -3.44368480e-02 -4.88886029e-01\\n-2.26990566e-01 4.50808197e-01 -1.02485582e-01 -1.01845235e-01\\n-2.55794168e-01 1.79100290e-01 -1.86688736e-01 1.72387838e-01\\n-1.54618705e-02 -8.44695196e-02 -2.99323857e-01 -2.42612109e-01\\n-1.02214143e-01 2.27265224e-01 1.14673987e-01 1.11041209e-02\\n1.65615082e-02 -3.84036839e-01 -1.07313462e-01 1.98038563e-01\\n2.40716875e-01 3.09013933e-01 1.41834840e-01 -1.25459120e-01\\n-1.72623277e-01 4.77681458e-01 -2.96323925e-01 4.95484993e-02\\n-2.49966741e-01 8.00705105e-02 -4.89998788e-01 -3.02763820e-01\\n-2.52651334e-01 -3.22511077e-01 1.19988434e-01 1.48235321e-01\\n1.22521393e-01 -5.52958660e-02 2.80120783e-03 -4.96964097e-01\\n2.61990607e-01 3.57899070e-02 9.99776125e-02 1.21592194e-01\\n1.25403032e-01 4.58060145e-01 -2.42090970e-02 -1.63799182e-01\\n-1.56555012e-01 3.51100750e-02 -1.36328474e-01 -5.96082173e-02\\n-2.92110676e-03 -4.60033536e-01 -7.96466097e-02 4.47527617e-01\\n1.96670100e-01 -3.13334018e-01 -1.95950016e-01 2.48417735e-01\\n4.38527726e-02 -2.45991260e-01 -8.49739239e-02 -1.98643040e-02\\n3.21872294e-01 6.22354522e-02 3.93752158e-01 -4.38779294e-01\\n-2.90494561e-02 3.23878191e-02 -2.10317880e-01 5.09623110e-01\\n1.02035470e-01 -4.49573547e-02 -7.26781785e-02 -4.13856581e-02\\n4.06417221e-01 3.84614766e-02 -8.89194608e-02 -1.17779650e-01\\n1.46644920e-01 -1.80050105e-01 -5.72130322e-01 1.09475195e-01\\n-5.03441878e-02 -1.59073472e-01 5.63799357e-03 1.26731731e-02\\n1.30923003e-01 1.31024033e-01 -4.96383607e-01 -1.85334429e-01\\n-3.71792674e-01 -1.69018418e-01 6.25220537e-02 -4.35256511e-01\\n-4.08742996e-03 6.44582286e-02 -4.65459764e-01 2.07544744e-01\\n-2.92049229e-01 2.06500408e-03 1.54819628e-02 9.77155566e-02\\n-3.23667169e-01 -3.83040942e-02 7.15091974e-02 2.07367122e-01\\n-1.71860948e-01 -2.81139731e-01 1.17594592e-01 -1.04733026e+00\\n1.43595576e-01 7.35743195e-02 -2.35966176e-01 9.56095904e-02\\n-3.63203548e-02 -5.64536393e-01 1.44158825e-01 -4.01565969e-01\\n-9.66879949e-02 -4.58510891e-02 -1.74676687e-01 -4.60682869e-01\\n1.10469975e-01 -9.85078141e-03 -4.54157263e-01 2.89801389e-01\\n-3.76395017e-01 3.04196566e-01 3.39493644e-03 1.34901360e-01\\n1.04267895e-01 -3.27947676e-01 -2.28601657e-02 -5.45770943e-01\\n-5.66141427e-01 -1.06665514e-01 -3.73360246e-01 -3.14507902e-01\\n-3.01770307e-02 -4.02879477e-01 -1.78008631e-01 1.24009684e-01\\n2.70601392e-01 1.30757272e-01 -3.57931517e-02 -3.56963456e-01\\n5.80498762e-02 -5.44255614e-01 -2.08090488e-02 3.85423787e-02\\n-7.53510445e-02 -1.18216053e-01 3.78738582e-01 1.00925686e-02\\n1.26456633e-01 -3.71195346e-01 4.65350181e-01 -3.51531327e-01\\n-1.29802987e-01 -8.65236297e-02 1.05208512e-02 3.73173766e-02\\n2.73024619e-01 -4.92679209e-01 6.35693744e-02 2.66594321e-01\\n1.39498234e-01 1.15148783e-01 2.53251880e-01 -4.40950543e-02\\n-1.08120166e-01 1.65892795e-01 -2.95463413e-01 8.96564052e-02\\n7.90868640e-01 -8.33253637e-02 2.04687297e-01 1.40607312e-01\\n7.50428066e-02 1.82200834e-01 5.23168862e-01 -3.07234786e-02\\n-1.83045864e-01 1.91279069e-01 5.46168089e-02 -3.98158908e-01\\n-3.20634730e-02 -3.54945101e-02 -3.36782455e-01 -3.32100272e-01\\n6.57620490e-01 4.60989863e-01 -3.84891927e-01 -2.38872096e-01\\n-1.65248394e-01 -1.45280868e-01 1.63825035e-01 -1.28773123e-01\\n-2.25439910e-02 -1.30001456e-01 4.39656615e-01 -3.36288624e-02\\n2.60023266e-01 4.40848976e-01 -1.83954418e-01 -4.37244833e-01\\n1.25938281e-03 1.51654854e-01 6.66578263e-02 4.28770423e-01\\n-2.65140593e-01 1.96871310e-01 3.48326080e-02 2.07846329e-01\\n-1.57927632e-01 1.23226017e-01 2.02100482e-02 1.68790236e-01\\n1.71384498e-01 6.45633787e-02 5.08594394e-01 4.54661310e-01\\n3.46415043e-01 4.41684544e-01 3.40123832e-01 3.80693451e-02\\n4.54511315e-01 4.60954458e-01 3.58160764e-01 1.61977410e-01\\n-5.47797419e-02 6.34168461e-02 1.00292727e-01 -1.00612789e-01\\n4.17820632e-01 3.09857547e-01 1.58717155e-01 8.05959582e-01\\n2.91433096e-01 3.02615970e-01 5.96797407e-01 -5.58560312e-01\\n-3.27021092e-01 4.34430651e-02 4.73246276e-01 -3.39711905e-01\\n-1.45276070e-01 6.28827959e-02 -1.93137437e-01 1.84252515e-01\\n-4.25452471e-01 -2.51263678e-01 -1.25781044e-01 2.42539048e-01\\n-7.14948550e-02 -1.21070378e-01 -2.86172926e-01 6.34597242e-02\\n-2.99935732e-02 5.52443862e-02 -4.06489462e-01 -2.06967909e-02\\n-1.58962607e-01 -9.27588865e-02 -1.23826332e-01 -1.63735658e-01\\n-8.75240415e-02 -4.91472453e-01 -9.39831436e-02 1.92536612e-03\\n1.52665004e-01 -1.22879528e-01 -2.00113617e-02 -9.03527215e-02\\n2.61674345e-01 2.38915756e-01 5.27828395e-01 2.15206698e-01\\n6.81920946e-02 -3.24095726e-01 -2.37543955e-01 1.62505552e-01\\n9.98783782e-02 1.04766212e-01 5.57429381e-02 2.73743749e-01\\n-3.04069191e-01 -8.33827704e-02 9.51043740e-02 3.46847326e-01\\n-3.91505688e-01 -7.37886727e-02 -7.90476799e-02 2.53250539e-01\\n1.26460254e-01 1.29253283e-01 -2.72975028e-01 3.08794305e-02\\n-2.56497532e-01 -3.58349681e-01 2.75747746e-01 -1.55192122e-01\\n1.39598660e-02 3.67554724e-02 1.18441224e-01 1.48936793e-01\\n-2.30613381e-01 -4.28503565e-03 -5.72739840e-02 2.51130074e-01\\n1.20921925e-01 2.41342485e-01 -1.25145823e-01 -2.94571847e-01\\n-2.95653969e-01 2.37815455e-01 -1.36709930e-02 1.33002535e-01\\n-1.16710896e-02 3.60873789e-01 -4.83247526e-02 8.16527009e-02\\n4.85785723e-01 -3.00786458e-02 -8.01000893e-02 -1.46404862e-01\\n-3.41889620e-01 -3.29969913e-01 -3.58666219e-02 -9.21188518e-02\\n1.63640395e-01 -3.08218509e-01 3.42501812e-02 -4.25913446e-02\\n-1.09584853e-01 -2.91119158e-01 9.99695882e-02 -2.12022245e-01]]',\n", + " 'job_description': 'Beekeeper is a fast growing SaaS company disrupting the way 2 billion people working “out in the field” communicate within their companies. Are you eager to shape the future of traditional industries like hospitality, retail, manufacturing or transportation using latest mobile technology? We are looking for the most talented and passionate individuals that love to work in demanding and international environments. We are a lean development team that moves fast. We push to production multiple times a day and continuously iterate on our products. This is an exciting time to join if you truly want to be involved in developing the core product at a tech driven company. As a Software Engineer you have the opportunity to work on all of our software stack and learn about state-of-the art web and mobile development. Technologies that you will work on are ElasticSearch, Realm.io, RabbitMQ, Backbone.js, Docker, Saltstack, Amazon Web Services, MySQL and interfacing them with different programming languages like Python, Java, Objective-C and Javascript. Your responsibilities Translate requirements, designs and wireframes into inspiring user experiencesBuild and maintain high-performance, reusable and reliable codeWork closely with other passionate software engineers to develop and ship new features What we look for BSc or MSc degree in Computer Science or related technical field or equivalent practical experienceExperience using RESTful APIs and handling JSON dataYou care about code quality and continuous refactoringProficiency in English as we speak mainly English at work Bonus Points You can show us programming projects that you work on in your free timeWe love an entrepreneurial mindsetWhat we offer youCompetitive salaryDynamic work environmentWeekly Bee-BreakfastFree Coffee, Fresh Fruits and a lot of Snacks Interested? We are looking for passionate, self-driven individuals. Thus we are interested in links/information to any projects you have done inside/outside your day job. Applications over videojobs.ch Job Type: Full-time',\n", + " 'soft_skills': '[\"Reliability\", \"Communications\", \"Hospitality\"]',\n", + " 'hard_skills': '[\"MySQL\", \"KM Programming Language\", \"Programming (Music)\", \"Computer Science\", \"High Performance Computing\", \"Backbone.js\", \"Beekeeping\", \"Industrialization\", \"Objective-C (Programming Language)\", \"Python (Programming Language)\", \"Maintainability\", \"Translations\", \"Iterators\", \"Lean Product Development\", \"Software Engineering\", \"Mobility\", \"RabbitMQ\", \"Docker (Software)\", \"Web Services\", \"Wireframing\", \"Mobile Application Development\", \"JavaScript (Programming Language)\", \"Core Product\", \"Amazon Web Services\", \"RESTful API\", \"Java (Programming Language)\", \"JSON\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Corsican', 'Bashkir']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'full-stack software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " 'job_description': \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " 'soft_skills': '[\"Innovation\", \"Operations\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'North Ndebele', 'Yiddish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.51825631e-01 2.60474980e-01 4.06874985e-01 3.90913012e-03\\n4.12762940e-01 -1.23509467e-01 4.15141247e-02 1.99809834e-01\\n-5.73633872e-02 -3.32715869e-01 -8.14895481e-02 -2.22888529e-01\\n-1.08683847e-01 -8.90786946e-02 6.65177479e-02 4.58354712e-01\\n2.12481126e-01 1.29846826e-01 -1.25317678e-01 2.87066758e-01\\n1.07233323e-01 -2.88710091e-02 -3.41112688e-02 6.10245287e-01\\n4.81369436e-01 -2.63749976e-02 -1.07174106e-01 -1.31487604e-02\\n-2.51145959e-01 -2.75283664e-01 4.13886905e-01 6.83189109e-02\\n-1.65120408e-01 -2.11267978e-01 1.40884995e-01 1.06072046e-01\\n-2.27530733e-01 1.44333303e-01 -6.86841607e-02 2.22526193e-01\\n-3.98599684e-01 -2.54618526e-01 5.05172424e-02 -5.64737916e-02\\n-3.44995409e-01 -2.60444105e-01 -1.10870227e-02 6.98255468e-03\\n1.07521668e-01 3.31220776e-02 -4.24388617e-01 3.93952191e-01\\n-1.72791839e-01 -1.72602102e-01 2.19175339e-01 6.53271139e-01\\n6.78159148e-02 -5.71692646e-01 -3.86664540e-01 -3.44647557e-01\\n4.50987592e-02 -9.91723314e-02 1.18895866e-01 -1.65271431e-01\\n5.11818767e-01 -1.23031735e-01 -1.26418531e-01 3.62204283e-01\\n-7.39447236e-01 -2.74331332e-03 -3.33312154e-01 -5.51505797e-02\\n-3.76908571e-01 1.02122463e-02 -4.44090396e-01 -5.12092002e-02\\n-1.20048098e-01 4.02851760e-01 1.38234887e-02 1.47980705e-01\\n-1.34200513e-01 2.04484105e-01 -2.23475248e-01 2.54216611e-01\\n3.05090219e-01 1.64455652e-01 3.44829649e-01 2.42483169e-01\\n-4.02494699e-01 3.94097179e-01 2.37292767e-01 -3.18601221e-01\\n2.69708216e-01 6.48515150e-02 3.89104009e-01 1.75005004e-01\\n3.66164111e-02 1.09661408e-01 -1.35631844e-01 2.48268828e-01\\n1.88856825e-01 -2.47985587e-01 4.59713377e-02 -1.31332695e-01\\n-8.80389065e-02 3.35684046e-02 3.75377722e-02 2.09851697e-01\\n-1.90073296e-01 4.02840495e-01 1.58524260e-01 -2.16959044e-01\\n-1.32938072e-01 -5.41697264e-01 -2.07490698e-01 -6.17225468e-02\\n7.55854100e-02 2.19490096e-01 2.24812925e-01 1.64613068e-01\\n1.12234317e-01 3.60421627e-03 1.60512492e-01 7.86299706e-01\\n9.62958671e-03 -5.54945506e-03 -2.67482549e-01 3.42391551e-01\\n1.83584869e-01 -2.69618630e-01 2.08376229e-01 1.88845098e-01\\n6.77909032e-02 -1.02915347e-01 -3.08481932e-01 2.69387037e-01\\n-1.52751639e-01 -2.27202863e-01 -2.46799976e-01 9.60297585e-02\\n-1.13200359e-01 -5.01638114e-01 5.74499190e-01 3.83302309e-02\\n2.43318319e-01 -1.86638422e-02 3.16164158e-02 -1.32968292e-01\\n-1.04667917e-01 3.02572399e-01 5.87792173e-02 1.64582431e-01\\n-1.81787014e-01 -2.48159960e-01 -1.69674158e-01 3.35976124e-01\\n-2.33164728e-01 1.25408575e-01 -1.30628213e-01 -1.41185045e-01\\n2.35079348e-01 1.84523135e-01 -3.36098671e-01 1.39131725e-01\\n-4.33384813e-02 -2.79624462e-01 -9.41888094e-02 3.25221926e-01\\n-1.79208934e-01 2.02472001e-01 8.78532082e-02 -1.27766788e-01\\n6.38435960e-01 2.56646931e-01 2.92353541e-01 2.13959310e-02\\n1.52816474e-01 -1.13505729e-01 2.73565948e-01 1.16688170e-01\\n-6.16993725e-01 4.35447454e-01 -7.00093508e-02 -2.90477931e-01\\n9.86669511e-02 9.27900076e-02 3.29949647e-01 -3.07409734e-01\\n-1.34536298e-02 -1.50021210e-01 -3.96039814e-01 -3.82384896e-01\\n-2.97211349e-01 2.81291287e-02 3.56320262e-01 -4.55654114e-01\\n-4.96302024e-02 2.05018222e-01 -5.30018330e-01 -1.18802428e-01\\n1.44493997e-01 9.29223821e-02 8.33150670e-02 1.02669440e-01\\n-1.24997087e-01 -6.28048241e-01 1.10602073e-01 -4.84517217e-01\\n-5.12431026e-01 2.80219689e-02 -3.27802420e-01 1.89743251e-01\\n1.26870364e-01 5.79458438e-02 -1.10783301e-01 1.41091600e-01\\n-2.75790840e-01 -4.83251251e-02 1.58106983e-01 1.96318284e-01\\n2.21045732e-01 -2.85191424e-02 -4.48545605e-01 5.79974473e-01\\n-1.11586012e-01 4.94819164e-01 2.65643537e-01 -9.00029421e-01\\n5.06973147e-01 1.69948176e-01 7.97947776e-03 -3.21403414e-01\\n4.01795536e-01 -3.76653045e-01 3.63695109e-03 1.09997049e-01\\n-1.96758896e-01 -1.43344507e-01 2.97089636e-01 -2.28747949e-01\\n-1.85660958e-01 5.00354826e-01 1.56889275e-01 -2.66454206e-03\\n2.98233360e-01 -2.06315815e-01 -1.24548070e-01 -1.02669075e-02\\n-1.44548327e-01 -1.95586964e-01 -3.82662416e-01 1.58996433e-01\\n-7.86734223e-02 -4.84353006e-01 -8.73262659e-02 -4.72779334e-01\\n-1.16279885e-01 -4.15782481e-01 -1.42055020e-01 2.38905191e-01\\n8.57087448e-02 2.13840440e-01 1.10041238e-02 -5.72525058e-03\\n-5.48504144e-02 -6.91962421e-01 -1.62524998e-01 9.88482684e-03\\n5.10468781e-01 2.04337016e-01 9.47710201e-02 -7.04658628e-02\\n5.84301539e-02 5.51369786e-01 -3.94084901e-01 -3.39456797e-01\\n1.02381475e-01 1.21447504e-01 4.20704260e-02 -8.44804421e-02\\n2.01594774e-02 3.26476187e-01 -1.15393169e-01 6.01187162e-02\\n-1.07294798e-01 9.18031484e-03 3.79638135e-01 -2.72027794e-02\\n-3.50476861e-01 -2.48713583e-01 -8.75295140e-03 2.79276311e-01\\n-4.78896528e-01 -2.76080102e-01 6.66689992e-01 3.53838354e-01\\n1.72114864e-01 2.69477487e-01 1.88976288e-01 -1.05627529e-01\\n-3.06986183e-01 -1.38842985e-01 2.64395922e-01 5.07715084e-02\\n1.79934829e-01 6.87500313e-02 -9.37601998e-02 -5.51650047e-01\\n-3.45617294e+00 -1.59167334e-01 6.00946583e-02 -2.69181520e-01\\n2.22532228e-01 -1.19356267e-01 2.26290971e-01 -1.07640155e-01\\n-3.52591455e-01 1.63185075e-02 -2.38639116e-01 -1.54561669e-01\\n-2.47431025e-02 2.80270457e-01 1.48224413e-01 1.76661178e-01\\n8.34619701e-02 -2.41139367e-01 -6.48709983e-02 3.45764905e-01\\n-5.38675450e-02 -6.52972996e-01 1.25706375e-01 1.62342906e-01\\n2.28207782e-01 9.39554051e-02 -3.68526787e-01 2.16445373e-03\\n-3.19679767e-01 -2.95057744e-01 9.68569592e-02 -2.52098739e-01\\n-1.75540447e-01 1.82250366e-01 1.21507123e-01 -1.99820533e-01\\n-3.66200693e-03 -2.52440810e-01 1.59284158e-03 -4.46149945e-01\\n-9.71083995e-03 -5.48551023e-01 1.31949224e-02 -4.83073853e-02\\n6.27601206e-01 -2.24560305e-01 2.26770341e-01 5.16676456e-02\\n1.40765026e-01 1.36780426e-01 6.56074584e-02 1.35411620e-02\\n-3.66673350e-01 -4.08929765e-01 -2.62509007e-02 -9.66215059e-02\\n6.38189673e-01 4.30419713e-01 -1.71735585e-01 4.97675277e-02\\n1.77173004e-01 -3.06105733e-01 -4.05683547e-01 -4.12492245e-01\\n-1.63999006e-01 -1.37768731e-01 -6.63295805e-01 -4.54915971e-01\\n-1.86964288e-01 -1.10862769e-01 -1.82278544e-01 5.10123312e-01\\n-2.72231877e-01 -4.30654615e-01 5.24025485e-02 -5.82034886e-01\\n2.29737967e-01 -1.78951398e-01 6.68383241e-02 -8.81958529e-02\\n-3.17720562e-01 -4.36096460e-01 1.10377043e-01 1.37527386e-04\\n-1.57818541e-01 -5.13851345e-02 3.10337692e-02 -2.56302059e-01\\n-3.82413656e-01 -4.09794241e-01 3.85798901e-01 -4.93684560e-02\\n3.07307214e-01 1.62749335e-01 3.46961230e-01 -1.23518417e-02\\n3.30809325e-01 -9.38806459e-02 1.22044422e-01 -4.36575681e-01\\n5.88232428e-02 5.99186197e-02 5.30385435e-01 -1.94078073e-01\\n1.38182849e-01 1.99168697e-01 -2.35549599e-01 -1.52561143e-02\\n4.38397706e-01 2.93889996e-02 1.51043683e-01 -8.27541947e-02\\n3.21023911e-01 -4.90401089e-01 -2.41959542e-01 9.52189416e-02\\n3.98007743e-02 6.27971530e-01 1.22550717e-02 -3.19577575e-01\\n-2.19403937e-01 4.94724840e-01 -1.41357496e-01 2.92669167e-03\\n-2.26926267e-01 7.22688213e-02 -1.24678515e-01 3.19668949e-01\\n-2.93432847e-02 -1.32108867e-01 -2.33987346e-01 -1.50121361e-01\\n-1.90603379e-02 1.68865800e-01 3.31338465e-01 4.37973477e-02\\n-4.29568486e-03 -2.61072934e-01 -1.45804599e-01 1.30059779e-01\\n2.15383098e-01 3.09285879e-01 2.19826281e-01 -2.33421117e-01\\n8.64105579e-03 1.80046409e-01 -2.62194335e-01 3.33031684e-01\\n-2.35327572e-01 1.49751469e-01 -4.21157002e-01 -1.95989326e-01\\n-1.43557996e-01 -4.04698461e-01 2.13273093e-01 2.74257511e-01\\n4.02743034e-02 -3.12148705e-02 2.34329477e-02 -4.95411426e-01\\n3.43155980e-01 1.47206247e-01 9.97711048e-02 1.83086798e-01\\n-3.53230610e-02 5.60517550e-01 -6.76355734e-02 -5.54673225e-02\\n-7.39993826e-02 -9.27753672e-02 -2.23753348e-01 -2.72373199e-01\\n-7.40292249e-03 -3.91076952e-01 -1.23958036e-01 5.02334833e-01\\n1.34085983e-01 -4.93663624e-02 -2.04096958e-01 2.16150358e-01\\n4.30973731e-02 -2.40580007e-01 -1.54961780e-01 2.27288101e-02\\n1.69617802e-01 1.44615844e-01 2.80243039e-01 -1.89721644e-01\\n-4.20743078e-02 2.86255460e-02 -6.38674572e-02 3.52844536e-01\\n1.01636231e-01 3.22218478e-01 -9.34881717e-02 -2.06299379e-01\\n6.11861289e-01 -5.66385947e-02 -5.39067276e-02 2.34690774e-02\\n6.22447804e-02 -3.97749394e-01 -3.83638471e-01 -2.45415941e-02\\n-3.19145247e-02 -1.99975058e-01 1.67137936e-01 1.04846403e-01\\n-4.85431850e-02 9.38702282e-03 -5.34934759e-01 -3.33273679e-01\\n-3.90988827e-01 -1.03051923e-01 1.07925296e-01 -4.55331475e-01\\n-1.08745925e-01 -5.02521768e-02 -6.04119301e-01 2.27425337e-01\\n-1.45630702e-01 -8.17643572e-03 6.49053752e-02 1.02700450e-01\\n-2.54541695e-01 -1.35008797e-01 7.72136450e-02 1.52527645e-01\\n-2.81220585e-01 -1.59214705e-01 -7.41408616e-02 -9.39887762e-01\\n1.47070691e-01 1.54017136e-01 -6.54764026e-02 1.71024829e-01\\n-6.76990971e-02 -5.90289056e-01 1.89387321e-01 -4.63828146e-01\\n3.67790752e-04 -1.42353857e-02 -1.91268787e-01 -4.46040869e-01\\n1.01977892e-01 1.03938334e-01 -2.80991137e-01 4.55224127e-01\\n-3.94144893e-01 3.41177791e-01 -9.19238850e-03 4.80700098e-02\\n-9.44248342e-04 -1.75338417e-01 1.51999325e-01 -1.99774384e-01\\n-4.05616432e-01 -2.71523982e-01 -4.00357276e-01 -1.99043810e-01\\n7.20948130e-02 -2.80739278e-01 -2.77766258e-01 1.38193101e-01\\n3.83717149e-01 2.13652223e-01 -1.71549916e-01 -2.23110259e-01\\n-2.52121016e-02 -4.94314730e-01 2.09761068e-01 -3.30540717e-01\\n-1.26056790e-01 -1.46898553e-01 2.22121134e-01 -7.53607601e-02\\n4.37708832e-02 -3.27965051e-01 4.96296585e-01 -1.99786767e-01\\n-3.84689242e-01 -1.52160496e-01 1.13038793e-01 -6.71877386e-03\\n2.90878177e-01 -4.57247913e-01 -8.59604925e-02 2.40713045e-01\\n3.13264430e-02 3.02072684e-03 2.21206695e-01 -5.71260564e-02\\n-1.72777936e-01 2.29112029e-01 -5.92693686e-01 4.41704430e-02\\n6.93508029e-01 2.16440737e-01 9.44155976e-02 1.93545997e-01\\n1.89588726e-01 3.29721212e-01 5.19270420e-01 -3.85815129e-02\\n-2.60146689e-02 3.30117077e-01 -7.49609992e-02 -5.14422357e-01\\n-1.64178293e-02 -6.90113381e-02 -1.46261796e-01 -3.30333859e-01\\n5.92500806e-01 3.05447727e-01 -3.70984644e-01 -3.96625876e-01\\n-5.24157435e-02 -7.65533820e-02 3.15376908e-01 5.88367991e-02\\n9.59437564e-02 -1.77370578e-01 6.23382568e-01 4.11120337e-03\\n2.58878380e-01 4.99415427e-01 -2.23764181e-01 -3.27023894e-01\\n-3.81400771e-02 2.28636205e-01 9.58997533e-02 5.82797706e-01\\n-1.99544638e-01 2.48014122e-01 -2.51014950e-03 1.51223525e-01\\n-1.37478128e-01 1.39519379e-01 3.23196352e-01 7.43699893e-02\\n2.74971843e-01 4.86505069e-02 3.13049614e-01 4.54655409e-01\\n1.14561625e-01 4.06999350e-01 2.44747743e-01 -5.01292385e-03\\n2.92616934e-01 6.24267757e-01 3.98849845e-01 2.05520838e-01\\n9.15469304e-02 1.31170824e-01 -8.34355224e-03 -9.42473114e-02\\n2.98534840e-01 3.63581330e-01 1.83475420e-01 7.57415354e-01\\n2.66097486e-01 3.45554709e-01 6.67964816e-01 -7.07788646e-01\\n-3.71760726e-01 4.05201204e-02 5.45309544e-01 -3.66362095e-01\\n-6.98391050e-02 2.18890563e-01 -3.62161100e-01 2.31792539e-01\\n-5.56723416e-01 -2.26506144e-01 -2.06937846e-02 -2.61557549e-01\\n6.94031343e-02 -1.30092293e-01 -1.64267972e-01 9.55166444e-02\\n-1.88375145e-01 -1.78112999e-01 -2.52038866e-01 -1.61634296e-01\\n-2.69474834e-01 -4.02885936e-02 8.35449202e-04 -1.53247252e-01\\n-2.40387172e-01 -3.31419140e-01 -1.43797219e-01 7.97109082e-02\\n4.36672419e-01 -1.66872621e-01 -2.01521680e-01 -2.22005159e-01\\n1.24346927e-01 2.99951226e-01 6.31840527e-01 -6.47152215e-02\\n6.95404634e-02 -3.65861580e-02 -2.26565167e-01 7.69360876e-03\\n1.27081364e-01 -4.97558825e-02 3.76648381e-02 4.27637070e-01\\n-2.92656422e-01 -1.74525827e-01 1.70096651e-01 2.28486598e-01\\n-4.26923245e-01 -2.30515897e-02 6.63986895e-03 3.15136075e-01\\n5.69084622e-02 2.79291004e-01 -2.14494243e-01 1.42237037e-01\\n-8.87006223e-02 -5.13788521e-01 4.24557716e-01 -9.82723460e-02\\n-1.92426711e-01 1.37909681e-01 2.61321843e-01 2.21965134e-01\\n-2.44948596e-01 -1.62650615e-01 -1.03462324e-01 2.05686703e-01\\n-4.68646847e-02 3.96594554e-01 -1.62942603e-01 -1.18335366e-01\\n-2.76485860e-01 2.85828888e-01 -4.31293733e-02 2.23143354e-01\\n-2.43220050e-02 3.19200069e-01 5.32066412e-02 4.72373590e-02\\n1.79505885e-01 8.35023224e-02 -1.89960346e-01 -2.98485667e-01\\n-2.84553051e-01 -2.47325543e-02 7.51628205e-02 -9.05780494e-02\\n1.64595917e-01 -3.51225585e-01 -7.36308098e-02 -2.48227671e-01\\n-2.13619977e-01 -4.37639117e-01 -1.83824167e-01 -1.47303781e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Define and build data management infrastructure of our development platform with special focus on efficient data pipelines for usage in production environments Study, evaluate and select appropriate infrastructure and tooling Define data management processes and best practices for the full data lifecycle Work with clients to model data landscapes, define data pipelines and curate data for usage in data-driven use cases and services Mentor and educate team members and customers Your profile: Minimum qualifications Master’s degree in Computer Science or equivalent subject Very strong analytical skills with a mindset to make things “as simple as possible, but not simpler” Profound experience with relational databases and very good command of SQL Experience with data pipelines and ETL Experience with BigData platforms (e.g. Spark, Hadoop) Experience with data preparation and data scraping for machine learning models and their deployment to production Programming experience (e.g. Python, R, Java, PL/SQL, etc.) Strong interest in banking and financial services industry Open, curious, team-oriented personality with persistency and tenacity High sense of ownership and quality Excellent communication skills, both towards customers and peers Ability to think ahead, work independently and set priorities Very strong command of English, good command of German (verbal and written) Willingness to travel (mostly within Switzerland, occasionally EU/UK) Benötigte Skills SQL ETL Python Python R JAVA PL/SQL PLSQL Englisch Reisetaetigkeit',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Team Oriented\", \"Infrastructure\", \"Persistence\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Python Server Pages\", \"Tooling\", \"Programming (Music)\", \"Data Scraping\", \"Computer Science\", \"Data Management\", \"Data Modeling\", \"Good Agricultural Practices\", \"Financial Services\", \"Landscaping\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Pipeline\", \"Management Process\", \"Extract Transform Load (ETL)\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Personalization\", \"R (Programming Language)\", \"Data Curation\", \"Banking\", \"Relational Databases\", \"Service Industries\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Afar', 'Kannada', 'Uzbek', 'South Ndebele']\"},\n", + " {'company_id': '146',\n", + " 'job_title': 'data entry analyst thai mother tongue',\n", + " 'location': 'Lugano',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.72615752e-01 3.48393470e-01 5.63793361e-01 1.26038035e-02\\n6.82117403e-01 -7.52009079e-02 1.68952420e-01 2.92088926e-01\\n-6.50330335e-02 -4.27406356e-02 -1.66092783e-01 -2.15499252e-02\\n2.30985105e-01 1.18437968e-02 3.01652014e-01 2.60451704e-01\\n3.34278673e-01 8.86579677e-02 2.93720197e-02 9.42949951e-02\\n6.83787465e-02 -1.14063911e-01 3.01056832e-01 3.78035933e-01\\n4.85031426e-01 3.57200801e-02 -8.50020573e-02 2.04789396e-02\\n-4.91925508e-01 -3.30322951e-01 3.57411206e-01 -3.28030884e-02\\n-7.64593482e-02 -1.01637781e-01 9.26108137e-02 -3.92549001e-02\\n-2.55425364e-01 -7.02379644e-02 -9.82118100e-02 1.17916644e-01\\n-1.19894445e-01 -1.48821473e-01 6.04664721e-02 5.21111637e-02\\n-3.55998307e-01 -4.05241579e-01 -2.43389353e-01 9.61503983e-02\\n-1.09730661e-01 -8.54571536e-03 -4.20035273e-01 4.24724966e-01\\n-2.18217328e-01 -3.12994570e-01 1.40267625e-01 7.55397797e-01\\n-4.82739024e-02 -4.80082273e-01 -1.38320878e-01 -2.12304413e-01\\n1.15023158e-01 -1.84141442e-01 9.80998389e-03 -9.20992568e-02\\n4.02930021e-01 -1.05917938e-01 -9.74294394e-02 4.45086330e-01\\n-6.62300825e-01 5.68407737e-02 -1.95798531e-01 -1.03798993e-01\\n-3.54713291e-01 1.02782391e-01 -4.69925106e-01 -1.42662004e-01\\n-1.04699954e-01 2.92437583e-01 -4.79717441e-02 5.20615764e-02\\n8.44430327e-02 2.19081610e-01 4.32054102e-02 6.76734094e-03\\n1.19321309e-01 2.75517046e-01 2.14847565e-01 2.26781845e-01\\n-3.21204424e-01 4.32290643e-01 2.09257886e-01 -2.32637629e-01\\n1.21815749e-01 3.92837413e-02 2.42757723e-01 5.09096533e-02\\n-1.34208694e-01 9.74625424e-02 -1.03797138e-01 8.56828913e-02\\n1.92824289e-01 -1.97148517e-01 1.71843350e-01 8.01838413e-02\\n-2.18975633e-01 -2.16293032e-03 -7.55272880e-02 3.62124294e-01\\n-3.72780532e-01 4.47948575e-01 -1.31973490e-01 -1.98631644e-01\\n9.40682888e-02 -6.46858513e-01 -2.38814339e-01 1.74403712e-02\\n2.22550914e-01 3.84547830e-01 4.86791842e-02 3.17912221e-01\\n2.27672935e-01 9.61547811e-03 3.39578629e-01 7.71125555e-01\\n-1.19339181e-02 1.33703440e-01 -1.73774198e-01 3.10077995e-01\\n1.74874768e-01 -2.48353779e-01 1.07557148e-01 1.24583036e-01\\n8.04590508e-02 6.05077185e-02 -1.58764228e-01 1.41559377e-01\\n-1.31053239e-01 -2.63280004e-01 -7.12881088e-02 1.91247221e-02\\n-3.95988852e-01 -5.02327919e-01 3.68662059e-01 4.35222536e-02\\n8.02991614e-02 -1.35297969e-01 -1.44485757e-01 1.99020341e-01\\n4.41335188e-03 3.49604517e-01 1.68394074e-01 6.28652647e-02\\n-2.30331913e-01 -1.77903667e-01 -2.39807740e-01 3.83965671e-01\\n-2.50655860e-01 -1.01997346e-01 -2.31059566e-01 -4.18500416e-03\\n3.56983453e-01 1.30238622e-01 -3.81015003e-01 2.17226848e-01\\n-1.21007569e-01 -1.96204528e-01 -1.00382902e-01 2.45168984e-01\\n-2.90959716e-01 2.31154844e-01 -1.11573316e-01 -2.04283804e-01\\n3.28744531e-01 3.82339656e-02 7.01181516e-02 3.04834079e-02\\n1.71901882e-01 -2.79844720e-02 2.52734691e-01 9.83232111e-02\\n-7.33292222e-01 4.46858495e-01 -1.27329022e-01 -2.19354227e-01\\n2.18003079e-01 6.92177415e-02 3.99190873e-01 -1.69163853e-01\\n3.90465148e-02 -2.62570798e-01 -1.98890895e-01 -4.10609633e-01\\n-1.66751906e-01 7.08845537e-03 2.12664589e-01 -4.64718789e-01\\n-9.36693400e-02 1.70769155e-01 -3.30790013e-01 1.33179370e-02\\n2.64806926e-01 1.29918098e-01 1.78997189e-01 1.39563680e-01\\n-1.77164957e-01 -4.72220242e-01 2.93358207e-01 -2.19074771e-01\\n-1.45071819e-01 1.35924742e-01 -2.45997891e-01 7.63131231e-02\\n1.06739387e-01 1.60163045e-01 1.68979704e-01 1.00942738e-01\\n-2.54966557e-01 -1.45432949e-01 5.27297966e-02 2.30169848e-01\\n3.89307708e-01 -1.35443255e-01 -3.70476425e-01 5.42885840e-01\\n-2.09981382e-01 4.65261996e-01 3.71818155e-01 -7.78644383e-01\\n3.80745769e-01 2.42184684e-01 1.27820726e-02 -2.09226727e-01\\n5.97492397e-01 -3.69609177e-01 1.48865916e-02 6.46520108e-02\\n-1.62899837e-01 -1.19010516e-01 2.02881336e-01 -7.97568858e-02\\n-2.27903500e-01 3.73498619e-01 4.62560691e-02 -2.23262496e-02\\n3.29656839e-01 -1.65973470e-01 -1.61817566e-01 -5.84670864e-02\\n-1.42744824e-01 -2.02731073e-01 -3.53496641e-01 -4.61547151e-02\\n1.96592789e-02 -4.00773168e-01 -1.33323625e-01 -3.82936239e-01\\n-1.38363102e-02 -8.95022079e-02 -1.84901003e-02 8.79763886e-02\\n2.31567681e-01 2.45087162e-01 1.49881586e-01 -6.35100752e-02\\n-1.98649481e-01 -5.22383869e-01 -1.44973427e-01 -6.58213301e-03\\n4.12519813e-01 2.34219417e-01 1.92707106e-01 -1.39421254e-01\\n2.63981230e-04 4.83777016e-01 -2.07964242e-01 -3.06858629e-01\\n2.40179762e-01 1.69312477e-01 -1.42077089e-03 -2.49914765e-01\\n-2.92053986e-02 2.22582951e-01 -2.92764064e-02 -9.94232297e-03\\n-4.77439314e-02 6.12665154e-03 2.06113204e-01 -7.83813745e-02\\n-6.07259646e-02 -3.36857766e-01 -2.36163184e-01 2.33034685e-01\\n-3.91117007e-01 -9.58644301e-02 6.61609590e-01 1.02452442e-01\\n1.02069795e-01 2.50236422e-01 4.95394200e-01 -1.18338659e-01\\n1.09054156e-01 6.40797392e-02 7.48879686e-02 2.57586166e-02\\n-1.41876265e-01 -3.54757085e-02 -2.44292796e-01 -5.09175658e-01\\n-4.33919811e+00 -1.44711763e-01 -1.16132997e-01 -3.37674737e-01\\n1.86795145e-01 -3.08173448e-01 1.91307202e-01 1.23874538e-01\\n-2.16510177e-01 -2.65113357e-02 -1.84887975e-01 -1.01241052e-01\\n2.99701005e-01 1.96061388e-01 -3.29383253e-03 3.63638282e-01\\n1.89916432e-01 -1.89523175e-01 2.78099328e-02 5.03657818e-01\\n3.82684842e-02 -6.33607507e-01 9.53083709e-02 1.59213498e-01\\n2.89591193e-01 4.85507995e-02 -4.34307486e-01 4.72674072e-02\\n-3.54480177e-01 -2.16263950e-01 1.96870562e-04 -1.73243240e-01\\n-2.10540652e-01 3.66339654e-01 -4.42177663e-03 -2.87626207e-01\\n2.78165013e-01 -1.05741426e-01 1.02866761e-01 -2.82246768e-01\\n9.09618884e-02 -5.70283830e-01 9.54692438e-02 3.70959081e-02\\n5.37763238e-01 -3.91523212e-01 1.29102528e-01 -2.59972494e-02\\n1.65061429e-01 2.09262565e-01 -2.58586913e-01 -3.47598456e-02\\n-1.68233916e-01 -2.07587451e-01 -6.49010912e-02 -1.91470951e-01\\n3.69484365e-01 5.32173395e-01 -2.30618775e-01 2.09058493e-01\\n1.81825459e-01 -2.30919033e-01 -2.87258744e-01 -4.60416108e-01\\n-3.01531374e-01 -1.24822445e-02 -5.87967932e-01 -5.93335092e-01\\n-7.31057376e-02 1.53813079e-01 -8.95834342e-02 2.19247803e-01\\n-5.84772825e-02 -5.82429171e-01 -8.69600102e-02 -4.49584574e-01\\n2.61551023e-01 6.75528273e-02 2.28914861e-02 -2.89734811e-01\\n-9.87913609e-02 -3.41734082e-01 2.51326919e-01 1.48389861e-01\\n-1.45662025e-01 -8.21803231e-03 2.97323409e-02 -1.09188750e-01\\n-3.97346884e-01 -2.42875978e-01 5.33387601e-01 -9.73939896e-02\\n2.84841120e-01 9.14498419e-02 1.31599218e-01 1.18091725e-01\\n4.90723222e-01 -2.86372304e-01 3.17707241e-01 -4.69395489e-01\\n1.47425532e-01 5.66378534e-02 5.58779716e-01 -3.23890686e-01\\n1.41342804e-01 3.02695148e-02 -3.06996405e-01 -2.89231986e-02\\n3.82497072e-01 5.11787310e-02 7.89504312e-03 -7.81800449e-02\\n1.80008531e-01 -3.14112991e-01 -3.03637296e-01 1.20152563e-01\\n5.61521798e-02 4.93879735e-01 -7.18261022e-03 -1.85902879e-01\\n-1.35801852e-01 2.79940486e-01 -1.04755469e-01 -1.11562163e-01\\n-3.94354790e-01 -2.84594316e-02 -2.96999961e-01 3.95066977e-01\\n-1.36930374e-02 -1.85875773e-01 -3.32891762e-01 -2.00500757e-01\\n5.33177219e-02 7.16920793e-02 4.53121632e-01 1.76655412e-01\\n-1.15296252e-01 -3.28973860e-01 2.21132755e-01 9.25404429e-02\\n2.76959032e-01 1.14073947e-01 5.29596843e-02 -1.82241350e-01\\n2.68695354e-01 1.21109616e-02 -2.95394272e-01 2.67254561e-01\\n-4.52070385e-02 9.07452404e-02 -4.24399108e-01 -2.53919959e-01\\n6.47746101e-02 -4.69557680e-02 -1.16956748e-01 1.98290810e-01\\n1.82052538e-01 -4.96815741e-02 -1.70160815e-01 -3.90714943e-01\\n4.10252929e-01 -2.41614401e-01 1.24671586e-01 1.52542517e-01\\n4.85915467e-02 4.37472761e-01 9.53638460e-03 -9.85681415e-02\\n-9.48504061e-02 2.21213192e-01 -8.36912692e-02 -7.55016208e-02\\n-5.19907847e-02 -3.51078331e-01 -1.59696877e-01 2.52445728e-01\\n1.97597846e-01 -9.90304723e-02 -6.24909364e-02 2.93501973e-01\\n5.14945686e-02 -4.11986798e-01 -1.13725811e-01 3.31387430e-01\\n2.42410660e-01 3.01989973e-01 1.30771041e-01 -4.23942864e-01\\n1.26298154e-02 -1.43254220e-01 -5.39009226e-03 2.31717095e-01\\n-3.68971564e-02 4.57723290e-02 1.25689223e-01 -2.57336408e-01\\n4.52274889e-01 1.62080005e-01 -1.98596027e-02 3.25958759e-01\\n1.07646763e-01 -1.81736678e-01 -2.65263617e-01 -1.26108766e-01\\n1.29563719e-01 -8.59659761e-02 1.26676798e-01 -5.12050949e-02\\n-2.86221653e-02 -1.65466323e-01 -4.63575333e-01 -1.93282470e-01\\n-3.20666701e-01 -4.50407621e-03 -6.21666573e-02 -4.55853701e-01\\n-1.77150801e-01 1.99470203e-02 -6.89192116e-01 2.77930200e-01\\n-9.14626345e-02 8.97736922e-02 -8.71999934e-02 -6.63384274e-02\\n-1.87910557e-01 7.21793398e-02 3.88081580e-01 1.80732846e-01\\n-3.47465336e-01 -1.41033947e-01 -5.78678288e-02 -6.64154887e-01\\n2.06478447e-01 -3.44670378e-02 6.79180175e-02 5.53228818e-02\\n2.25611236e-02 -4.20085609e-01 3.73302758e-01 -3.24751854e-01\\n-3.22960436e-01 -1.03289679e-01 -1.08919099e-01 -5.30871034e-01\\n1.64659694e-02 1.16028741e-01 -9.31579620e-02 1.59642488e-01\\n-3.32295567e-01 3.94695252e-01 -1.38975051e-03 6.86056539e-02\\n1.36072263e-01 -2.22020194e-01 2.05938697e-01 -2.33098686e-01\\n-1.38229430e-01 -4.15495746e-02 -3.20657879e-01 -2.84823626e-02\\n-7.99953118e-02 -1.01778887e-01 -1.93806097e-01 1.35457218e-01\\n3.22297245e-01 1.88431814e-01 -9.19214562e-02 5.57608623e-03\\n2.25081593e-02 -3.72227073e-01 1.25377521e-01 -4.07151192e-01\\n-1.72704950e-01 3.58859971e-02 2.36671537e-01 -2.05010131e-01\\n-1.48044094e-01 -3.59700590e-01 4.92881596e-01 -4.22979742e-02\\n-3.92193109e-01 -5.45446724e-02 1.49708897e-01 1.23999983e-01\\n2.61621684e-01 -2.40022406e-01 -2.16542229e-01 3.12422276e-01\\n-1.18981332e-01 1.82044864e-01 3.03314000e-01 -9.11085978e-02\\n-2.13367075e-01 1.92423746e-01 -6.44163430e-01 2.90285181e-02\\n6.99569106e-01 2.62822986e-01 5.81081063e-02 1.45128965e-01\\n7.47388527e-02 4.58776087e-01 3.43519032e-01 -2.52274424e-02\\n-9.21222866e-02 3.74245912e-01 -1.11912107e-02 -6.03797555e-01\\n-1.46021873e-01 -1.82001770e-01 -1.61639199e-01 -3.41911048e-01\\n5.57207286e-01 3.48060757e-01 -2.56245166e-01 -4.98939067e-01\\n-1.00817271e-01 -7.59499520e-02 -1.67222425e-01 1.70671230e-03\\n1.71413332e-01 -3.33040118e-01 4.91388202e-01 4.60462272e-02\\n1.35594070e-01 5.33669949e-01 -1.70858249e-01 -2.89476007e-01\\n2.83797663e-02 1.64547533e-01 1.16223030e-01 3.91901582e-01\\n-2.46086299e-01 1.64762482e-01 -3.27545181e-02 8.80799070e-02\\n-2.14792430e-01 -9.60263908e-02 2.49895379e-01 1.56575829e-01\\n2.29200408e-01 3.65797877e-01 1.56393826e-01 3.18059415e-01\\n1.22303784e-01 2.54506588e-01 1.40717342e-01 -1.62942093e-02\\n5.68991959e-01 3.39769393e-01 2.53574848e-01 1.83203906e-01\\n1.22952737e-01 9.76628140e-02 -1.28536904e-02 1.83097154e-01\\n8.24523866e-02 2.28209063e-01 1.65872499e-01 5.77548504e-01\\n1.21880203e-01 1.41516790e-01 5.11563897e-01 -5.94159663e-01\\n-3.33841354e-01 -2.10691661e-01 3.28329086e-01 -4.28931892e-01\\n-1.21898174e-01 1.04617804e-01 -3.99246305e-01 9.78853777e-02\\n-5.62309265e-01 -2.37747461e-01 6.66938722e-02 -2.03536764e-01\\n3.76617461e-02 1.09229544e-02 -1.37574241e-01 1.14577748e-01\\n-1.15759403e-01 -1.69190675e-01 -4.09970731e-01 -2.31068268e-01\\n-2.77284175e-01 -1.36203438e-01 8.65431502e-02 -8.43373686e-02\\n-2.19265223e-02 -1.89931035e-01 -1.11088030e-01 -3.33598852e-02\\n2.52785832e-01 -1.81206971e-01 -1.53304962e-02 -2.29927421e-01\\n-2.36062575e-02 1.18228875e-01 4.40328687e-01 -5.18645048e-02\\n3.62255350e-02 -1.64233506e-01 -2.01399893e-01 -2.40471736e-02\\n1.81746572e-01 -3.59669398e-03 3.62190828e-02 4.82310414e-01\\n-4.57485735e-01 -2.20250592e-01 8.16089511e-02 2.83106834e-01\\n-4.94884223e-01 1.20508224e-01 2.30367795e-01 2.21163675e-01\\n6.11096621e-02 1.45477593e-01 -2.18364537e-01 -3.11554614e-02\\n-2.50443846e-01 -5.55905402e-01 2.64889210e-01 2.71739624e-02\\n-1.20469883e-01 1.65882528e-01 1.47628069e-01 2.35055387e-01\\n-9.85384881e-02 -1.18623331e-01 -2.23214686e-01 1.44522727e-01\\n2.39947096e-01 2.64431566e-01 -2.36707970e-01 -1.57237314e-02\\n-2.64385998e-01 1.65884972e-01 3.90606886e-03 1.35514274e-01\\n-2.22537056e-01 1.75671399e-01 5.55299148e-02 3.58648837e-01\\n6.43107742e-02 -8.86753276e-02 -1.59216389e-01 -2.74973691e-01\\n-1.90057144e-01 -2.96763688e-01 1.46930754e-01 -1.74069405e-01\\n2.24984914e-01 -2.14431986e-01 2.15160474e-02 -1.75610006e-01\\n-2.91487604e-01 -5.24405718e-01 -6.07830808e-02 -1.37858689e-01]]',\n", + " 'job_description': \"For banking consulting company of Lugano we're looking for a DATA ENTRY ANALYST Tasks: data entry use of Excel to manage tables, data and filters back office activities, database management, customer master data update Requirements: Commercial/ IT/ Legal/ Economic Degree Languages: English (level C1 / C2), and Thai (excellent / mother tongue) Excellent computer skills: Office package, excellent knowledge of Excel Motivation, spirit of initiative, responsibility 100% immediate availability English Thai Excel Data analyst Master data\",\n", + " 'soft_skills': '[\"Data Entry\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Customer Acquisition Management\", \"Economics\", \"Banking\", \"Activism\", \"Configuration Management Databases\", \"Data.table\", \"Master Data Management\", \"Levelling\", \"Thai Language\", \"Commercialization\", \"Clinical Data Management\"]',\n", + " 'languages': \"['English', 'Ganda', 'Panjabi']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data scientist (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.41230571e-01 3.20579290e-01 3.75774533e-01 -5.87651171e-02\\n4.43441123e-01 -1.29961938e-01 -1.92020759e-02 4.41386491e-01\\n-1.59575537e-01 -4.24713194e-01 -1.46686330e-01 -3.25343221e-01\\n1.14388704e-01 2.04729050e-01 -1.23882887e-03 4.20161128e-01\\n3.73519152e-01 -1.16898101e-02 -2.07619742e-01 1.32103652e-01\\n8.86699557e-02 -3.35102119e-02 4.04846482e-02 7.49066710e-01\\n4.03577298e-01 3.07110511e-02 9.69275273e-03 2.29009271e-01\\n-2.27694642e-02 -3.00659746e-01 4.20081764e-01 6.77612126e-02\\n-9.78656411e-02 -1.45831376e-01 1.00099869e-01 1.93986848e-01\\n-1.76201001e-01 -4.38924991e-02 -4.48319092e-02 1.02736801e-01\\n-4.25482512e-01 -7.39343241e-02 -1.93309754e-01 -9.40649137e-02\\n-2.36881807e-01 -3.55241865e-01 1.84402809e-01 -7.85545632e-02\\n1.81506589e-01 1.02683842e-01 -5.44188201e-01 3.21053684e-01\\n-2.46664912e-01 -2.24747032e-01 2.26115018e-01 6.36301339e-01\\n-4.64538336e-02 -4.17762935e-01 -4.72036988e-01 -2.27010503e-01\\n3.72807076e-03 -2.47032586e-02 1.63690284e-01 -2.71987379e-01\\n5.68070114e-01 2.97356918e-02 8.11387785e-03 3.70946676e-01\\n-7.85762906e-01 -7.95092732e-02 -5.25898218e-01 5.51936179e-02\\n-4.09012586e-01 -1.16724238e-01 -3.26011032e-01 -1.84702218e-01\\n-9.00333896e-02 2.66361088e-01 5.27836494e-02 5.73817641e-02\\n-5.46626411e-02 1.83182925e-01 -3.73869807e-01 2.18665108e-01\\n1.80035621e-01 3.55550379e-01 2.71658927e-01 1.24420635e-01\\n-5.61292708e-01 4.55916524e-01 1.60459146e-01 -3.16164434e-01\\n2.51621008e-01 1.12377949e-01 4.22266543e-01 1.91384722e-02\\n3.23856115e-01 7.96804950e-02 -1.73500240e-01 2.88461983e-01\\n3.24480802e-01 -2.72537529e-01 -4.57357392e-02 -2.22847443e-02\\n-7.05420151e-02 -2.36930493e-02 1.81777403e-02 8.52361992e-02\\n-4.42855358e-01 4.49962378e-01 2.38556601e-02 -3.29873711e-01\\n-8.54108781e-02 -4.92196053e-01 -1.26708031e-01 1.13501027e-01\\n4.74727973e-02 1.55081972e-01 5.56165911e-02 3.36634696e-01\\n9.23086330e-02 7.44584203e-02 1.71667546e-01 8.73141706e-01\\n-1.59719318e-01 9.80157852e-02 -1.35535583e-01 3.73292476e-01\\n5.89516051e-02 -4.22692955e-01 3.69895428e-01 1.48211956e-01\\n-5.48070716e-03 -2.23484635e-01 -2.28235051e-01 3.02637547e-01\\n-8.38862732e-02 -1.75278768e-01 -4.07274961e-01 2.79555261e-01\\n-4.80480082e-02 -4.97038513e-01 5.77611804e-01 -6.62990361e-02\\n2.56282687e-01 5.75698167e-03 -1.20063998e-01 -6.44469708e-02\\n-5.58342263e-02 2.05851644e-01 1.05513319e-01 1.50529891e-01\\n-2.80206472e-01 -1.23960570e-01 -2.12028727e-01 2.41515830e-01\\n-3.25081259e-01 1.42981023e-01 -1.64810762e-01 2.47103572e-02\\n2.97217578e-01 -1.06815249e-01 -3.58129829e-01 2.71518111e-01\\n-1.08762622e-01 -9.28396657e-02 -1.04522936e-01 3.48139197e-01\\n-1.49847686e-01 2.89581656e-01 -7.47042149e-03 -1.49303108e-01\\n4.85912025e-01 -3.17747407e-02 1.42754778e-01 -1.14044540e-01\\n1.87778026e-01 -1.54224485e-01 1.40239537e-01 1.00261755e-01\\n-7.44436622e-01 3.75441790e-01 -1.33631974e-01 -2.50234485e-01\\n1.03924565e-01 -2.11706422e-02 1.20492116e-01 -3.17121565e-01\\n-2.60668900e-02 4.86982241e-02 -2.25412384e-01 -2.37696111e-01\\n-2.98636377e-01 3.06145400e-02 4.75394011e-01 -5.51669955e-01\\n6.42826129e-03 8.85091349e-02 -5.41709900e-01 -4.73886430e-02\\n2.20377043e-01 1.63471773e-01 1.72797069e-01 1.99010149e-01\\n-9.34576318e-02 -4.07977581e-01 1.05349876e-01 -5.64375281e-01\\n-2.33918458e-01 1.47594362e-01 -4.07128572e-01 2.71355361e-01\\n2.08260804e-01 -8.85742530e-02 -6.84777424e-02 1.75756514e-01\\n-1.47204876e-01 8.39553475e-02 1.92527175e-01 5.17481156e-02\\n4.29474980e-01 -1.31909158e-02 -4.88036036e-01 4.87025589e-01\\n-1.17629059e-01 3.22765619e-01 1.28966480e-01 -6.33928299e-01\\n5.18156767e-01 3.87201309e-01 1.34119019e-01 -3.40296209e-01\\n7.73359656e-01 -2.09232211e-01 -1.53796226e-01 1.28882870e-01\\n-5.41336775e-01 -2.04530403e-01 2.09910870e-01 -2.85638869e-01\\n-2.04468206e-01 6.05933845e-01 1.46033973e-01 1.70462862e-01\\n4.07893091e-01 -1.25825554e-01 -2.04333976e-01 1.82618171e-01\\n-1.61599264e-01 -2.83577591e-01 -4.41130549e-01 -1.46593213e-01\\n-1.38645932e-01 -5.25331318e-01 -2.12554470e-01 -5.44122219e-01\\n-1.19418189e-01 -3.49090397e-01 -1.90421775e-01 2.98726946e-01\\n2.70572782e-01 1.56919345e-01 -1.27486894e-02 -3.89354005e-02\\n-2.16649249e-01 -6.33001685e-01 1.12677880e-01 2.43788790e-02\\n2.78449357e-01 5.46571165e-02 -1.01318525e-03 -8.76794234e-02\\n9.30171683e-02 4.80634838e-01 -4.45369393e-01 -4.65957880e-01\\n1.67595834e-01 2.88126379e-01 -6.29331991e-02 -1.63987651e-01\\n7.48787075e-02 2.02743486e-01 -3.77554804e-01 4.87946309e-02\\n-3.19412686e-02 7.09454566e-02 3.11002165e-01 4.75667939e-02\\n-2.25134403e-01 -2.73619622e-01 -1.19784929e-01 2.03147247e-01\\n-4.44426179e-01 -3.51640642e-01 5.16058743e-01 2.27594838e-01\\n-8.20012465e-02 2.19246358e-01 1.83445424e-01 2.56463606e-02\\n-3.11640471e-01 -1.73988789e-01 1.85515121e-01 1.07422307e-01\\n7.74253830e-02 1.50473043e-01 -2.39359498e-01 -5.16104043e-01\\n-3.70907736e+00 -5.90654090e-02 2.16919612e-02 -3.38318013e-02\\n2.63239056e-01 -9.49420929e-02 2.72949815e-01 -1.70295238e-01\\n-3.73317093e-01 2.23193280e-02 -3.49745035e-01 -2.36381829e-01\\n2.36413643e-01 3.80795240e-01 1.85329095e-01 3.37170660e-01\\n8.95158853e-03 -3.26061338e-01 1.55033227e-02 3.53047460e-01\\n-1.01034768e-01 -5.98247468e-01 9.17824358e-02 -2.74122953e-02\\n3.05051386e-01 3.23851973e-01 -4.45890903e-01 4.46502045e-02\\n-2.90478021e-01 -3.03679377e-01 2.81372607e-01 -3.05325180e-01\\n-1.04047373e-01 3.29313606e-01 3.19882810e-01 -1.35911644e-01\\n8.91114213e-03 -3.04096609e-01 -2.21896827e-01 -4.22515392e-01\\n1.57804459e-01 -4.90906239e-01 -1.28313333e-01 -3.78867239e-02\\n7.59345353e-01 -2.76979506e-01 2.90725946e-01 -1.25216572e-02\\n-3.79199944e-02 2.58015037e-01 4.34338264e-02 -3.02164797e-02\\n-1.59291670e-01 -4.10524219e-01 -2.00489357e-01 -1.38318598e-01\\n7.19663858e-01 4.77971762e-01 -3.27104688e-01 -6.32395521e-02\\n3.40273418e-02 -2.62451947e-01 -4.98666763e-01 -3.22024316e-01\\n-2.16446906e-01 -9.33134332e-02 -5.49440205e-01 -5.07502139e-01\\n-6.88180998e-02 -2.11285770e-01 6.72993669e-03 5.60048044e-01\\n-3.87955904e-01 -4.22377199e-01 -1.19003303e-01 -5.84407449e-01\\n2.33222038e-01 -1.50476933e-01 1.93103589e-02 -6.49409369e-02\\n-2.87916183e-01 -4.92121696e-01 -3.83201055e-02 1.25485957e-01\\n-1.22601926e-01 -1.80888444e-01 1.67992145e-01 -2.10358664e-01\\n-4.12067920e-01 -5.70630968e-01 3.19926620e-01 7.52659366e-02\\n2.06089333e-01 3.11958551e-01 7.43244067e-02 9.38261375e-02\\n2.09748298e-01 -1.18292257e-01 -2.77300477e-02 -3.33694518e-01\\n6.80211857e-02 2.71623526e-02 4.78780895e-01 -2.68519908e-01\\n5.22808619e-02 3.14865038e-02 -1.65933669e-01 -1.00066185e-01\\n3.60404819e-01 2.91085709e-03 2.48318762e-01 -2.93007404e-01\\n2.49018162e-01 -4.09965307e-01 -1.22578003e-01 1.50597855e-01\\n8.01002532e-02 5.93329430e-01 -1.38859358e-02 -2.87190259e-01\\n-1.81143865e-01 4.63179588e-01 -7.93593749e-02 -1.28168138e-02\\n-1.41236469e-01 1.22826479e-01 -3.01261604e-01 4.57582884e-02\\n8.31399858e-02 -9.90217179e-02 -2.10034654e-01 -7.69866481e-02\\n-6.24854602e-02 3.36862296e-01 3.39921534e-01 2.14407220e-01\\n-1.19193226e-01 -3.77245843e-01 -3.04245334e-02 2.41239384e-01\\n2.78555810e-01 3.43841553e-01 1.13287218e-01 -3.09911937e-01\\n-3.05522885e-02 2.28456452e-01 -2.43753612e-01 2.83019274e-01\\n-2.08737180e-01 1.85385078e-01 -4.71682221e-01 -1.98949471e-01\\n-3.35636973e-01 -3.02228987e-01 1.68202549e-01 2.78751761e-01\\n4.78324443e-02 -1.47481069e-01 7.40066096e-02 -2.79685259e-01\\n1.28714785e-01 1.26459092e-01 1.72895581e-01 9.00546685e-02\\n4.25361320e-02 5.08100033e-01 -1.34723365e-01 -8.66496190e-02\\n-3.79136987e-02 1.55094236e-01 -2.98904300e-01 -1.67882740e-01\\n3.26476581e-02 -4.96705264e-01 -1.38876662e-01 3.30863655e-01\\n1.33994266e-01 -2.44507063e-02 -1.56706899e-01 2.71681696e-01\\n-6.29353225e-02 -4.21984881e-01 -1.89854845e-01 -3.77752148e-02\\n3.91769797e-01 1.97067633e-01 1.99220017e-01 -4.72003251e-01\\n3.39651704e-02 -1.60421096e-02 -6.23232126e-02 4.92524296e-01\\n-1.64510719e-02 1.27280802e-01 -3.88157777e-02 -2.85643280e-01\\n4.07037139e-01 -1.82942048e-01 -8.02245066e-02 1.08663850e-01\\n6.57938644e-02 -2.33758911e-01 -2.71264285e-01 4.50135991e-02\\n-1.33240342e-01 -2.20708475e-01 5.43981744e-03 2.07883753e-02\\n6.81371242e-02 1.14125408e-01 -6.96763396e-01 -1.31494328e-01\\n-3.38128626e-01 -2.66433377e-02 -2.57064160e-02 -5.89495063e-01\\n9.37665924e-02 -1.76048622e-01 -4.83618677e-01 3.92892152e-01\\n-2.18248978e-01 1.59633476e-02 2.26147965e-01 -2.03592633e-03\\n-2.53043085e-01 -1.80282846e-01 3.03423852e-01 2.25411966e-01\\n-3.14275414e-01 -1.91533878e-01 -2.80531328e-02 -9.39720631e-01\\n2.66930401e-01 -5.04413843e-02 -2.22142965e-01 2.92951893e-02\\n4.60405312e-02 -5.75743496e-01 1.47720560e-01 -2.36621723e-01\\n-1.12835318e-01 -5.46076670e-02 -2.26170704e-01 -3.88530970e-01\\n9.35971644e-03 -7.93675333e-02 -2.26015106e-01 4.02906537e-01\\n-3.38889658e-01 1.84469283e-01 -2.24166885e-02 2.16775984e-02\\n-2.04286929e-02 -3.47074330e-01 3.10599487e-02 -2.67032415e-01\\n-3.94339442e-01 -1.74878016e-01 -8.28907788e-02 -2.08658576e-01\\n-1.93180924e-04 -4.40714270e-01 -1.09175496e-01 6.83374777e-02\\n2.36038581e-01 -6.47720993e-02 -2.07359180e-01 -6.37338012e-02\\n-4.02890518e-02 -4.36068565e-01 8.02344978e-02 -1.47829279e-01\\n-9.34714600e-02 -1.64646432e-01 1.75696179e-01 7.70144016e-02\\n1.71934247e-01 -3.83518070e-01 4.33824152e-01 -3.38958740e-01\\n-2.44281590e-01 -4.73154634e-02 1.36464551e-01 8.58591031e-03\\n3.32300365e-01 -5.70898592e-01 -1.79186478e-01 4.85027581e-01\\n1.21535219e-01 9.76505410e-03 2.74466872e-01 -2.22782210e-01\\n-2.85697460e-01 4.10868973e-01 -2.47874334e-01 2.06477046e-01\\n7.59367347e-01 2.34027103e-01 2.15660274e-01 1.85695961e-01\\n5.54197058e-02 3.72010559e-01 3.88585508e-01 7.35035837e-02\\n1.14770360e-01 4.62758750e-01 1.29114717e-01 -4.50532645e-01\\n6.51421919e-02 7.48575628e-02 -1.76990125e-02 -3.38613302e-01\\n5.71200788e-01 4.18865412e-01 -4.79401261e-01 -3.71115088e-01\\n-1.93321466e-01 -2.30509773e-01 2.57935256e-01 -3.96324694e-02\\n8.67455155e-02 -2.13403881e-01 4.65888798e-01 4.22241725e-02\\n1.19340211e-01 5.51934600e-01 -1.13279380e-01 -1.61001548e-01\\n-1.25377461e-01 1.63823247e-01 4.23096791e-02 5.02787948e-01\\n-1.01218373e-01 3.05310696e-01 -5.16975336e-02 1.80466488e-01\\n-1.23121917e-01 6.84957281e-02 3.06439400e-01 6.38772696e-02\\n-6.71916008e-02 3.13701838e-01 4.36375111e-01 4.52330589e-01\\n3.90467167e-01 4.19316918e-01 1.97180539e-01 4.10353169e-02\\n4.91685063e-01 4.94395077e-01 5.09132862e-01 9.87051949e-02\\n5.70210889e-02 -5.83960749e-02 6.65263906e-02 1.34733200e-01\\n2.76557297e-01 3.56498957e-01 -8.12474638e-02 8.53647649e-01\\n4.01272386e-01 2.59191155e-01 5.45863628e-01 -5.74813366e-01\\n-2.21465662e-01 9.34437066e-02 4.16498542e-01 -4.43234384e-01\\n-1.01665333e-01 9.72616524e-02 -2.36519665e-01 1.63716167e-01\\n-5.61485291e-01 -1.28513530e-01 -9.49923843e-02 4.80301902e-02\\n1.37602508e-01 -2.54826486e-01 -1.08912319e-01 2.56002657e-02\\n-3.76788527e-02 -2.07991019e-01 -5.21685421e-01 -2.01340169e-01\\n-2.61706352e-01 -1.59582540e-01 -1.58688724e-02 -4.76816446e-02\\n5.23601212e-02 -2.41665795e-01 -8.35303143e-02 1.02412224e-01\\n3.16163391e-01 -1.00517683e-01 -1.23253323e-01 -5.70156612e-02\\n4.24657643e-01 2.49227658e-01 6.50379419e-01 -8.71798173e-02\\n-4.85449545e-02 -1.09967537e-01 -1.61423773e-01 1.47626474e-01\\n2.10443869e-01 3.41736265e-02 5.91592267e-02 3.84093881e-01\\n-3.55219305e-01 -1.77509859e-01 1.67385608e-01 3.86279911e-01\\n-4.82749164e-01 1.87266737e-01 1.45087525e-01 3.19950968e-01\\n9.58703905e-02 1.88496649e-01 -1.79843903e-01 -3.18964124e-02\\n-3.08908075e-02 -5.10407269e-01 3.40934604e-01 2.78361328e-03\\n-1.12154096e-01 -6.76452518e-02 3.03985864e-01 3.73336256e-01\\n-1.07625850e-01 -1.99855298e-01 -8.22607577e-02 1.28288463e-01\\n4.12612483e-02 2.98357785e-01 -3.38464051e-01 -2.86627203e-01\\n-4.40334797e-01 1.09875180e-01 -5.98270334e-02 8.50374252e-02\\n-7.56504759e-03 2.46335596e-01 1.15903437e-01 2.67920941e-01\\n3.53387326e-01 -1.08669966e-01 -1.63407981e-01 -1.41656354e-01\\n-2.09220603e-01 -8.75437409e-02 1.10776484e-01 -7.38353282e-02\\n2.71980941e-01 -4.22552913e-01 -2.09828228e-01 -2.45986238e-01\\n-1.38953432e-01 -3.73937756e-01 4.29354645e-02 -8.54095817e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: You are the key contact person for the consolidation and analysis of needs of our scientists and will compile the information needed for strategic decisions of the board of directors. As a coordinator you will identify, propose and support solutions for relevant topics such as: - high performance data management documentation, exchange and curation systems - e-lab journals, repository systems, data management plans - identification, architecture and design of new technologies As contact person for data management you will lead a user group consisting of experts out of our research departments and you will organize and partly lead trainings and workshops or working groups and coordinate various activities with external partner. Your profile: You have a university degree (MSc degree) in computational science, or a related scientific discipline. You have already demonstrated experience in research and project management. You are interested to work closely together with our researchers on data science questions. You are a team player and your strengths include taking personal responsibility, high motivation for excellence, flair for elaborating out-of-the-box solutions. Strong interpersonal and communication skills are essential alongside the ability to collaborate with peers and scientific partners. Excellent communication skills in English and German are mandatory. The position is first limited to 2 years. Benötigte Skills Englisch Datawarehouse',\n", + " 'soft_skills': '[\"Coordinating\", \"Research\", \"Verbal Communication Skills\", \"Collaboration\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Compilers\", \"Computer Science\", \"Data Management\", \"Strategic Decision-Making\", \"Instructor-Led Training\", \"Journals\", \"Activism\", \"E (Programming Language)\", \"Data System\", \"Limiter\", \"Data Science\", \"Consolidation\", \"Data Management Plan\", \"Personalization\", \"High Performance Fortran (Concurrent Programming Language)\", \"Clinical Data Management\", \"Group Work\", \"Project Management\", \"Curation\", \"Document Management\"]',\n", + " 'languages': \"['English', 'Ossetian', 'Galician', 'Macedonian']\"},\n", + " {'company_id': '54',\n", + " 'job_title': 'scientific consultant/field application scientist',\n", + " 'location': 'Basel',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.genedata.com',\n", + " 'jobdescription_embedded': '[[-2.32442379e-01 3.07738304e-01 3.99056196e-01 -2.70836577e-02\\n6.56583786e-01 -5.14619537e-02 -3.88629101e-02 2.16710836e-01\\n5.41671105e-02 -3.65262270e-01 -5.75208887e-02 -2.65726984e-01\\n-1.72851030e-02 2.60878086e-01 1.39552383e-02 5.63386559e-01\\n3.62089574e-01 3.96771282e-02 -9.41991806e-02 3.56274962e-01\\n-5.69989122e-02 -2.42773950e-01 5.02247214e-02 8.23738694e-01\\n3.24123740e-01 6.94254786e-03 -1.77322656e-01 1.00362211e-01\\n-2.35687435e-01 -1.63654178e-01 5.07943273e-01 1.21569917e-01\\n-2.38539785e-01 -4.81321871e-01 6.84724674e-02 1.58220410e-01\\n-2.25910336e-01 6.19722949e-03 -2.18426913e-01 1.20587371e-01\\n-5.92146397e-01 -2.01387703e-01 -7.36053139e-02 7.53944665e-02\\n-2.64677465e-01 -3.64674091e-01 -6.15307316e-03 -4.80009206e-02\\n2.44331494e-01 6.69034198e-02 -3.81608367e-01 2.56636143e-01\\n-4.03986573e-01 -1.84787408e-01 3.12528133e-01 6.92409873e-01\\n-7.89592341e-02 -4.88350838e-01 -6.04032993e-01 -3.58812571e-01\\n5.93140908e-02 -5.86972982e-02 1.92329317e-01 -4.75805640e-01\\n3.39513659e-01 9.15621072e-02 1.34341354e-02 2.89688170e-01\\n-8.39130759e-01 -2.49590978e-01 -3.35327774e-01 9.25211310e-02\\n-2.72830367e-01 -2.10000388e-02 -2.61939406e-01 1.69139169e-02\\n-1.35113761e-01 3.53417754e-01 -2.40524467e-02 9.96802300e-02\\n-1.81974962e-01 3.26806903e-01 -2.62390912e-01 3.48742127e-01\\n7.76790082e-02 2.17974648e-01 2.93708682e-01 3.27362180e-01\\n-2.66070187e-01 4.73173320e-01 1.68133423e-01 -3.44853580e-01\\n2.13494539e-01 9.46282074e-02 3.67666721e-01 -3.16059068e-02\\n2.43596822e-01 1.16984189e-01 -4.54034269e-01 2.83447415e-01\\n2.36201704e-01 -3.56486201e-01 1.41795546e-01 -1.51516601e-01\\n5.02755046e-02 -5.24020419e-02 1.38191536e-01 7.64484257e-02\\n-4.96059299e-01 6.24560237e-01 -4.82736155e-02 -2.51710296e-01\\n-1.39408618e-01 -5.07217169e-01 -1.52183965e-01 1.97517961e-01\\n-4.27782685e-02 1.29341125e-01 9.18544680e-02 2.09814966e-01\\n2.55204499e-01 -2.76704989e-02 1.36783272e-01 7.58589029e-01\\n-8.91354978e-02 -1.24567505e-02 -1.26805782e-01 1.99975014e-01\\n1.80370420e-01 -2.64291406e-01 2.90985793e-01 1.30984694e-01\\n2.58466601e-03 -1.01340584e-01 -2.23201007e-01 2.24601954e-01\\n2.01595873e-02 -3.03292215e-01 -2.25105658e-01 3.17411721e-01\\n9.46880877e-02 -5.20789862e-01 6.35551333e-01 -1.60975326e-02\\n1.67411372e-01 -4.36340943e-02 5.87628447e-02 -1.14940353e-01\\n4.18886021e-02 1.96062341e-01 2.48873174e-01 2.14157447e-01\\n-2.18030497e-01 -2.67030060e-01 -6.99123368e-02 8.33025649e-02\\n-4.75801766e-01 1.33130029e-01 -7.00868368e-02 -1.15509093e-01\\n3.74666929e-01 2.42697634e-03 -3.81397992e-01 2.08057284e-01\\n-1.92758903e-01 -1.72918383e-02 1.20048728e-02 4.74323511e-01\\n-2.10934550e-01 2.53578424e-01 -1.84125900e-01 -1.37920976e-01\\n6.67226791e-01 1.28614143e-01 3.73597503e-01 9.46645141e-02\\n3.30942065e-01 -1.19044006e-01 1.98491126e-01 3.77705619e-02\\n-7.23338962e-01 4.29489166e-01 -7.97711387e-02 -3.09408069e-01\\n1.69961601e-01 -1.99996993e-01 5.01872122e-01 -2.91776419e-01\\n2.49987599e-02 -1.69333428e-01 -2.95621842e-01 -3.56718183e-01\\n-2.09738225e-01 -7.61451665e-03 3.33374918e-01 -3.18108767e-01\\n-3.90474424e-02 2.30349109e-01 -6.09039366e-01 -2.01040953e-01\\n1.81049198e-01 1.91210836e-01 2.08117276e-01 7.44753703e-02\\n-1.70233592e-01 -7.19654799e-01 7.18926787e-02 -4.95360225e-01\\n-1.82624698e-01 6.06344305e-02 -3.59937906e-01 2.40485370e-01\\n-8.15402567e-02 1.96651965e-02 -9.33565497e-02 1.38061076e-01\\n-1.88314527e-01 5.71838096e-02 1.23764602e-02 -2.60408986e-02\\n1.69260055e-01 9.64049548e-02 -4.70478952e-01 4.64293301e-01\\n-2.30761796e-01 5.80371141e-01 -1.45201404e-02 -7.80861139e-01\\n4.89111036e-01 4.86604184e-01 2.98841633e-02 -2.76401877e-01\\n5.85330963e-01 -4.36097443e-01 -1.34886831e-01 2.81325486e-02\\n-4.29145932e-01 -2.12550968e-01 7.04684779e-02 -2.51096755e-01\\n-2.97495723e-01 5.27800679e-01 6.29262775e-02 1.88219219e-01\\n3.65226179e-01 -1.81559578e-01 -1.35169342e-01 1.40606478e-01\\n-9.61726755e-02 -2.16735393e-01 -6.32967353e-01 -2.06193298e-01\\n-4.26792018e-02 -3.81757081e-01 -5.50195836e-02 -3.71231496e-01\\n-6.74760863e-02 -2.32709303e-01 -2.11190253e-01 7.12805614e-03\\n3.07608187e-01 2.08460793e-01 -1.87103581e-02 5.56767322e-02\\n-1.29283085e-01 -7.74057686e-01 4.97019887e-02 1.35979354e-01\\n3.15975845e-01 3.53715718e-01 1.14296950e-01 -2.31418386e-02\\n2.22290214e-03 5.10602891e-01 -3.86080205e-01 -3.91206533e-01\\n3.52677554e-02 2.08746955e-01 4.89863902e-02 -1.17181569e-01\\n1.99449673e-01 3.50901425e-01 -2.11591825e-01 8.63744617e-02\\n-8.83418545e-02 -7.25206509e-02 4.18237448e-01 -4.51538377e-02\\n-2.92016447e-01 -5.91106340e-02 -2.68920064e-01 6.07148260e-02\\n-5.14914632e-01 -2.72147536e-01 3.59722465e-01 -4.37740088e-02\\n1.76675603e-01 1.89731538e-01 1.41168416e-01 3.82324979e-02\\n-2.13246018e-01 -3.90323728e-01 4.25515473e-01 6.11937009e-02\\n5.83200902e-02 1.13105133e-01 -6.59661368e-03 -6.34525895e-01\\n-3.03469348e+00 -6.13375977e-02 9.52121802e-03 -2.41200656e-01\\n4.11783099e-01 -7.55954236e-02 1.65503681e-01 -6.50815517e-02\\n-2.76874661e-01 6.35305196e-02 -1.41984761e-01 -3.11619550e-01\\n1.40695348e-01 1.51296586e-01 1.28531292e-01 5.42428643e-02\\n5.74936010e-02 -2.79139340e-01 7.29653835e-02 4.37327504e-01\\n-2.84770168e-02 -7.17190981e-01 1.30334347e-01 7.68823475e-02\\n2.47291654e-01 3.56453240e-01 -6.16812289e-01 -1.25489697e-01\\n-3.46225768e-01 -2.33285636e-01 1.81676090e-01 -2.66291916e-01\\n-1.63844749e-01 2.77898967e-01 1.89369515e-01 -1.45473361e-01\\n-1.05180470e-02 -3.33743274e-01 -9.89596546e-02 -5.35880327e-01\\n1.35906219e-01 -5.87640226e-01 -9.33447257e-02 -2.44360194e-01\\n6.26185000e-01 -2.02125475e-01 1.91916883e-01 1.21745184e-01\\n1.56054184e-01 1.74986109e-01 2.12640196e-01 6.92513287e-02\\n-1.18076600e-01 -1.11742005e-01 -6.85724765e-02 -2.02516153e-01\\n5.75369716e-01 3.16606164e-01 -2.83073962e-01 -1.28682740e-02\\n1.68891281e-01 -3.02579522e-01 -5.72280705e-01 -1.66499570e-01\\n-1.49839446e-01 -1.61743075e-01 -5.59600413e-01 -4.29784268e-01\\n-1.28293797e-01 -9.80977193e-02 -2.34381109e-03 6.44748032e-01\\n-3.15855145e-01 -2.14313835e-01 1.65215414e-02 -5.08993328e-01\\n2.86774337e-01 -9.86029208e-02 1.18833482e-02 -2.17344284e-01\\n-2.73361981e-01 -5.32851100e-01 1.64437652e-01 -6.03721663e-02\\n-2.73424499e-02 -2.49530703e-01 -1.47405341e-01 -3.32870707e-02\\n-3.70957136e-01 -5.24775386e-01 4.05381322e-01 9.72573757e-02\\n4.25845146e-01 8.51523280e-02 1.59927458e-01 -2.17530325e-01\\n2.94481456e-01 2.47242544e-02 5.91279343e-02 -3.10467958e-01\\n1.35945166e-02 2.92563625e-02 4.89490867e-01 -1.15475401e-01\\n-1.04606792e-01 -5.05292043e-02 -3.02600414e-01 -9.26430821e-02\\n3.40641886e-01 -8.70705098e-02 2.66492441e-02 -7.03636706e-02\\n3.19053829e-01 -2.73771942e-01 -5.13524413e-02 1.03461698e-01\\n1.32545024e-01 7.65318036e-01 6.28628433e-02 -4.00142252e-01\\n-8.10757130e-02 3.57248753e-01 -2.06922024e-01 1.33682862e-01\\n-2.70684715e-02 7.60252699e-02 -2.65021086e-01 3.30453515e-01\\n5.44475317e-02 -8.18144754e-02 -1.57014057e-01 -1.61569178e-01\\n-1.89940423e-01 3.02544534e-01 2.83511639e-01 2.02994585e-01\\n-7.92443529e-02 -2.94725865e-01 -1.50302261e-01 3.31764102e-01\\n2.14060768e-01 4.03191328e-01 1.91767722e-01 -2.37404287e-01\\n-1.17510587e-01 3.08192104e-01 -1.08263865e-01 3.18853796e-01\\n-1.39326900e-01 1.65630504e-01 -5.89734912e-01 -4.29030359e-02\\n-4.10736501e-01 -3.31209838e-01 2.24690050e-01 4.06404763e-01\\n2.27813810e-01 -1.29744560e-01 9.46846977e-02 -4.30739284e-01\\n1.96246237e-01 1.60955489e-01 4.73779850e-02 -2.54090559e-02\\n-2.09319949e-01 5.57296753e-01 -7.63453096e-02 -2.54182160e-01\\n-8.70946869e-02 5.38765229e-02 -2.61154503e-01 -1.71153188e-01\\n2.15041012e-01 -4.73926425e-01 -1.67470634e-01 2.80276358e-01\\n1.38712376e-01 -1.68808460e-01 -3.00579071e-01 3.77027124e-01\\n6.16286369e-03 -4.61226881e-01 -3.65501642e-01 -4.46242765e-02\\n3.21592331e-01 8.78513902e-02 2.28920728e-01 -5.86782336e-01\\n-5.19755259e-02 -5.28373793e-02 -4.81466427e-02 3.88798833e-01\\n-1.68965489e-01 -1.56518333e-02 -1.70848072e-01 -1.25513181e-01\\n3.95823896e-01 -7.49285892e-03 -4.95692901e-02 8.19482580e-02\\n7.74428546e-02 -2.36917481e-01 -3.51838470e-01 2.34114919e-02\\n-3.88629138e-02 -2.03384325e-01 -1.38144076e-01 2.29392320e-01\\n1.09325657e-02 1.26697153e-01 -6.16341829e-01 -1.54170260e-01\\n-1.82784826e-01 6.08055815e-02 -4.74814512e-02 -5.57095110e-01\\n-3.55729237e-02 -1.99092269e-01 -5.11761665e-01 2.62366831e-01\\n-9.36825424e-02 -1.31517902e-01 2.20228449e-01 -2.05761287e-02\\n-2.81221479e-01 -1.79363862e-01 8.89880303e-03 2.57389337e-01\\n-3.45206201e-01 -2.54300147e-01 -7.87793100e-02 -9.11462665e-01\\n8.02039877e-02 7.98257291e-02 -1.28931329e-01 1.46059453e-01\\n-1.05976507e-01 -5.90200424e-01 1.57370567e-01 -3.58438671e-01\\n-1.10712744e-01 -2.97286585e-02 -3.15314293e-01 -5.18359281e-02\\n1.24939263e-01 7.24566169e-03 -2.41730705e-01 2.75774807e-01\\n-2.30751440e-01 3.09834301e-01 -2.00493902e-01 2.43222751e-02\\n2.08485574e-02 -1.48160905e-01 2.95591176e-01 -2.32712105e-01\\n-4.58940089e-01 -1.36098534e-01 -2.34504044e-01 -1.23537526e-01\\n-1.28428802e-01 -2.28376091e-01 2.01412775e-02 6.47189096e-02\\n4.76199746e-01 -5.59079982e-02 -1.50721937e-01 -1.56556576e-01\\n1.07670739e-01 -5.33652008e-01 8.61099139e-02 -4.05896008e-02\\n-9.05444846e-04 -5.35680205e-02 4.33252826e-02 1.54006422e-01\\n3.41710687e-01 -4.61550593e-01 4.04270351e-01 -5.42552590e-01\\n-3.62047374e-01 -1.28544137e-01 2.70606652e-02 2.02727336e-02\\n2.86612302e-01 -5.11082530e-01 -2.53720824e-02 3.18889081e-01\\n5.93949631e-02 4.76487726e-03 2.44288251e-01 -1.50833070e-01\\n-1.79235965e-01 2.14298427e-01 -2.99159825e-01 1.20361798e-01\\n9.02350187e-01 3.02395076e-01 1.92661919e-02 2.30523065e-01\\n1.34616315e-01 3.47339958e-01 4.97985303e-01 -3.15038767e-03\\n-1.27127012e-02 3.40488553e-01 1.68656141e-01 -4.23993647e-01\\n-1.61434010e-01 6.70711249e-02 -1.46439567e-01 -4.88276631e-01\\n6.79491639e-01 2.96415299e-01 -4.29011464e-01 -2.58326173e-01\\n-2.59714305e-01 -9.67805758e-02 1.90644547e-01 -1.05458230e-01\\n3.43606733e-02 -8.65786746e-02 4.88759816e-01 -6.79901540e-02\\n9.30004939e-02 5.64005494e-01 -5.58255576e-02 -2.06642300e-01\\n-9.01564881e-02 2.11891010e-01 1.60535485e-01 5.16209960e-01\\n-1.24296106e-01 2.39304364e-01 -1.37977287e-01 2.12765634e-02\\n-1.88231409e-01 1.72804058e-01 2.68478453e-01 6.47890493e-02\\n5.85948266e-02 1.28820315e-01 5.82628906e-01 5.88080049e-01\\n3.92452300e-01 2.66587734e-01 3.32661688e-01 3.79032120e-02\\n5.07516026e-01 4.10881281e-01 2.30346859e-01 3.18531096e-02\\n-9.70747322e-04 2.30345070e-01 1.73367172e-01 4.46295813e-02\\n4.15993273e-01 2.71433294e-01 4.40230556e-02 8.23480308e-01\\n1.90676600e-01 2.88234293e-01 6.15596294e-01 -6.13289237e-01\\n-2.93532610e-01 6.14848621e-02 4.95927036e-01 -4.12347674e-01\\n1.25404656e-01 1.61690205e-01 -1.07983485e-01 2.72096515e-01\\n-5.64436376e-01 -2.17067778e-01 2.91454047e-03 1.60865024e-01\\n1.11436784e-01 -2.03232080e-01 -5.40719926e-02 6.66900352e-02\\n-1.02776587e-01 -2.18793243e-01 -4.61653501e-01 -2.26520419e-01\\n-3.07220221e-01 -1.43419281e-02 -4.74092476e-02 -2.42149085e-01\\n1.51533820e-02 -1.75533205e-01 1.49528101e-01 -1.03782229e-01\\n3.65668774e-01 -1.92489579e-01 -5.45778349e-02 -3.31634879e-02\\n5.39122939e-01 2.64480822e-02 5.59886694e-01 -9.67102647e-02\\n9.81148332e-03 -1.18649408e-01 -1.51837826e-01 1.77474052e-01\\n8.03755820e-02 1.03485435e-01 1.00138530e-01 1.81097329e-01\\n-2.61407852e-01 -2.90009916e-01 1.69499546e-01 3.01765293e-01\\n-3.84069681e-01 1.34308748e-02 -4.47389223e-02 2.69308947e-02\\n-1.73465107e-02 8.76316801e-02 -1.70689479e-01 -5.24713658e-02\\n-3.19772437e-02 -4.15383041e-01 2.45901540e-01 -4.31711897e-02\\n-3.98227662e-01 -1.75727308e-02 4.88632023e-01 2.34511882e-01\\n-1.93984091e-01 -2.49437522e-02 -1.59829989e-01 1.36674941e-01\\n1.83949955e-02 1.51006550e-01 -6.48707151e-02 -4.74141479e-01\\n-3.72587979e-01 2.15488255e-01 -1.52674481e-01 5.81661128e-02\\n5.40572181e-02 3.89264226e-01 -1.01188987e-01 5.58998734e-02\\n5.54651618e-01 -9.09994915e-02 -2.47718334e-01 -3.59937906e-01\\n-7.79160559e-02 -1.13661915e-01 -1.37385368e-01 -6.98653907e-02\\n1.95851669e-01 -3.37328911e-01 -2.07518935e-01 -3.16191971e-01\\n-3.12869251e-02 -3.33085537e-01 6.97566569e-02 -5.68944365e-02]]',\n", + " 'job_description': 'The Position Genedata is seeking a Scientific Consultant / Field Application Scientist to fill an opening in our growing Genedata Profiler (Precision Medicine) team. Precision medicine requires scientists to characterize the genomic profile of patients to better understand patients’ response to new therapies, to efficiently stratify patients for clinical trials or to identify novel biomarkers for patient monitoring. Genedata Profiler, a highly innovative tool in the era of precision medicine, provides a comprehensive, enterprise solution for the processing, management, integration, and analysis of massive amounts of clinical, phenotype, and multi-omic data. The Scientific Consultant is a scientific and technical consultant for our customers. It is a highly dynamic job: you will wear many different hats, interact with many different people such as clinicians, bioinformaticians, and software developers, and use your scientific and technical knowledge to solve real-world scientific problems in precision medicine. This position is especially well-suited for you if you have a scientific/technical background, enjoy variety in your daily work, and want to expand your skill set (scientific, technical, and soft skills). This full-time position is based in Basel, Switzerland and requires regular travel within Europe. Key Responsibilities First and foremost, you will act as an expert in scientific and IT matters related to translational and clinical data analysis in general and the use of our Genedata Profiler software in particular. You will combine this expertise with excellent communication skills and project management know-how to (a) be a vital part of the sales team, (b) propose, plan, execute and manage projects, and (c) support our customers in getting the most out of Genedata Profiler. (a) You will work in tandem with our Business Development Managers in establishing and communicating the value of Genedata Profiler to prospects and customers. Tasks include qualifying customer needs, giving presentations and demos, and managing software evaluation projects. (b) In addition, you will act as scientific consultant for data science projects. For example, you will help our customers with exploratory clinical trial design, identify biomarkers for response or adverse events, conduct mechanistic interpretation of results from mode-of-action studies, and devise stratification strategies based on the results obtained. You will ensure results delivery at the level of excellence that our customers know us for. This involves proper project set up and planning to achieve the customer’s goals; specifying and coordinating and executing the implementation work; guaranteeing adherence to scope, budget and timelines; managing change in the project; controlling the quality of all deliverables; providing customer feedback to product management; and supporting the Profiler team to keep improving our processes. (c) You will establish relationships based on trust with our customers by being their first point of contact and a sparring partner on scientific and technical matters, including user trainings and product support. We want our customers to have excellent translational and clinical data analysis processes, and you will be responsible to help enable this. Further, you will channel the insights gathered through your customer interactions back to our Development and Product Management team, help them to define end-to-end user stories and workflows matching their requirements, thereby assuring that Profiler is developed to maximize value for our customers. In addition to the core responsibilities listed above, we want you to help all of us in the Profiler team to improve, and we count on your knowledge, creativity, and technical skills to further advance our science, marketing, development, and product management. Your Profile Essential Skills and Experience: Excellent communication skills: you will be exposed to a range of different people, so you should feel comfortable interacting with customers at all levels (managers, scientists, and IT experts) and be prepared to constantly communicate internally. Solid scientific background (PhD level preferred) in statistical genetics, bioinformatics, biostatistics, computational biology, machine learning, data science or related field. 3+ years of working experience in translational / clinical research would be a definitive advantage, in particular experience with exploratory clinical trial data, biomarker research, patient stratification & companion diagnostics approaches, ideally at a contract research organization, in a clinic or a pharmaceutical company. If you do not have experience in any of these companies, we look forward to receiving your application if you possess the skills listed below, are a fast learner and wish to quickly delve into the scientific and technical challenges of cutting-edge technologies in the context of Pharmaceutical R&D. Additional Preferred Skills and Experience: Scientific experience and technical skills: Expertise in human genetics or molecular epidemiology, with a strong grasp of genomic approaches, technologies, and analytics to inform clinical trial design and enrichment, e.g. GWAS/RVAS/PheWAS. Profound understanding of biostatistics is essential; experience with methods of causal interference would be desirable. Solid background in oncology and/or immunology would be a plus. Expert knowledge of statistical programming in R is required, as well as working experience with SAS and scripting languages (Python or similar). Project management experience: delivering on time; planning resources and milestones; coordinating teams within and across organizations. Excellent presentation skills. Industry knowledge: You will work with a range of omics technologies and application areas (please see our website for currently supported technologies), so deeper knowledge within a few or broader knowledge across several of them would be desirable. Our customers are mainly pharmaceutical research organizations, thus your experience with pharmaceutical research and the drug discovery process would be valuable to us. The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Profiler Developed in collaboration with leading pharmaceutical companies, Genedata Profiler provides a comprehensive, scalable and interoperable computational platform that addresses the major challenges associated with omics-based precision medicine. The innovative software platform combines high-performance raw omics data processing pipelines, sophisticated data analyses and unparalleled data visualizations with an advanced distributed data management infrastructure. Genedata Profiler accelerates the genomic profiling of patients, at scale and according to the highest data privacy and regulatory standards. Are you interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Genedata is an Equal Opportunity Employer.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Coordinating\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Timelines\", \"Operations\", \"Presentations\", \"Innovation\", \"Creativity\", \"Positivity\", \"Sales\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Milestones (Project Management)\", \"Genomics\", \"Collections\", \"SAS (Software)\", \"High Performance Computing\", \"Genetics\", \"Python (Programming Language)\", \"Computational Biology\", \"Know Your Customer\", \"Pipelining\", \"Data Visualization\", \"Evaluation Projects\", \"Budgeting\", \"Patient Monitoring\", \"Clinical Research\", \"Project Management\", \"International Communications\", \"Amazon Data Pipeline\", \"Business Development\", \"Technical Consulting\", \"Epidemiology\", \"Product Management\", \"Interactivity\", \"Statistics\", \"Machine Learning\", \"Plan Execution\", \"Industrialization\", \"Levelling\", \"Open Management Infrastructure\", \"Customer Interaction Management\", \"Biostatistics\", \"Electronic Data Processing\", \"Survey Data Analysis\", \"Humanism\", \"Pharmaceuticals\", \"Product Support\", \"B (Programming Language)\", \"Profiling (Computer Programming)\", \"Controllability\", \"Programming (Music)\", \"Analytics\", \"Market Development\", \"Integrity Management\", \"Clinical Trials\", \"Clinical Research Informatics\", \"E (Programming Language)\", \"Resource Planning\", \"Translations\", \"Management Process\", \"Executable\", \"Microsoft Delve\", \"C (Programming Language)\", \"Equalization\", \"R (Programming Language)\", \"Clinical Data Management\", \"Adverse Event Monitoring\", \"Software Development\", \"Phenotyping\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Analysis\", \"User Story\", \"Life Sciences\", \"Immunology\", \"Informatics\", \"MASSIVE (Software)\", \"Scale (Map)\", \"Contract Research Organization\", \"Agile Edge Technologies\", \"Idealization\", \"Computing Platforms\", \"Data Science\", \"Scalability\", \"Receivables\", \"Adapter Scripting Language\", \"Stratifying\", \"Drug Discovery\", \"Bioinformatics\", \"Interoperability\", \"Workflows\", \"Change Management\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data scientist (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.41230571e-01 3.20579290e-01 3.75774533e-01 -5.87651171e-02\\n4.43441123e-01 -1.29961938e-01 -1.92020759e-02 4.41386491e-01\\n-1.59575537e-01 -4.24713194e-01 -1.46686330e-01 -3.25343221e-01\\n1.14388704e-01 2.04729050e-01 -1.23882887e-03 4.20161128e-01\\n3.73519152e-01 -1.16898101e-02 -2.07619742e-01 1.32103652e-01\\n8.86699557e-02 -3.35102119e-02 4.04846482e-02 7.49066710e-01\\n4.03577298e-01 3.07110511e-02 9.69275273e-03 2.29009271e-01\\n-2.27694642e-02 -3.00659746e-01 4.20081764e-01 6.77612126e-02\\n-9.78656411e-02 -1.45831376e-01 1.00099869e-01 1.93986848e-01\\n-1.76201001e-01 -4.38924991e-02 -4.48319092e-02 1.02736801e-01\\n-4.25482512e-01 -7.39343241e-02 -1.93309754e-01 -9.40649137e-02\\n-2.36881807e-01 -3.55241865e-01 1.84402809e-01 -7.85545632e-02\\n1.81506589e-01 1.02683842e-01 -5.44188201e-01 3.21053684e-01\\n-2.46664912e-01 -2.24747032e-01 2.26115018e-01 6.36301339e-01\\n-4.64538336e-02 -4.17762935e-01 -4.72036988e-01 -2.27010503e-01\\n3.72807076e-03 -2.47032586e-02 1.63690284e-01 -2.71987379e-01\\n5.68070114e-01 2.97356918e-02 8.11387785e-03 3.70946676e-01\\n-7.85762906e-01 -7.95092732e-02 -5.25898218e-01 5.51936179e-02\\n-4.09012586e-01 -1.16724238e-01 -3.26011032e-01 -1.84702218e-01\\n-9.00333896e-02 2.66361088e-01 5.27836494e-02 5.73817641e-02\\n-5.46626411e-02 1.83182925e-01 -3.73869807e-01 2.18665108e-01\\n1.80035621e-01 3.55550379e-01 2.71658927e-01 1.24420635e-01\\n-5.61292708e-01 4.55916524e-01 1.60459146e-01 -3.16164434e-01\\n2.51621008e-01 1.12377949e-01 4.22266543e-01 1.91384722e-02\\n3.23856115e-01 7.96804950e-02 -1.73500240e-01 2.88461983e-01\\n3.24480802e-01 -2.72537529e-01 -4.57357392e-02 -2.22847443e-02\\n-7.05420151e-02 -2.36930493e-02 1.81777403e-02 8.52361992e-02\\n-4.42855358e-01 4.49962378e-01 2.38556601e-02 -3.29873711e-01\\n-8.54108781e-02 -4.92196053e-01 -1.26708031e-01 1.13501027e-01\\n4.74727973e-02 1.55081972e-01 5.56165911e-02 3.36634696e-01\\n9.23086330e-02 7.44584203e-02 1.71667546e-01 8.73141706e-01\\n-1.59719318e-01 9.80157852e-02 -1.35535583e-01 3.73292476e-01\\n5.89516051e-02 -4.22692955e-01 3.69895428e-01 1.48211956e-01\\n-5.48070716e-03 -2.23484635e-01 -2.28235051e-01 3.02637547e-01\\n-8.38862732e-02 -1.75278768e-01 -4.07274961e-01 2.79555261e-01\\n-4.80480082e-02 -4.97038513e-01 5.77611804e-01 -6.62990361e-02\\n2.56282687e-01 5.75698167e-03 -1.20063998e-01 -6.44469708e-02\\n-5.58342263e-02 2.05851644e-01 1.05513319e-01 1.50529891e-01\\n-2.80206472e-01 -1.23960570e-01 -2.12028727e-01 2.41515830e-01\\n-3.25081259e-01 1.42981023e-01 -1.64810762e-01 2.47103572e-02\\n2.97217578e-01 -1.06815249e-01 -3.58129829e-01 2.71518111e-01\\n-1.08762622e-01 -9.28396657e-02 -1.04522936e-01 3.48139197e-01\\n-1.49847686e-01 2.89581656e-01 -7.47042149e-03 -1.49303108e-01\\n4.85912025e-01 -3.17747407e-02 1.42754778e-01 -1.14044540e-01\\n1.87778026e-01 -1.54224485e-01 1.40239537e-01 1.00261755e-01\\n-7.44436622e-01 3.75441790e-01 -1.33631974e-01 -2.50234485e-01\\n1.03924565e-01 -2.11706422e-02 1.20492116e-01 -3.17121565e-01\\n-2.60668900e-02 4.86982241e-02 -2.25412384e-01 -2.37696111e-01\\n-2.98636377e-01 3.06145400e-02 4.75394011e-01 -5.51669955e-01\\n6.42826129e-03 8.85091349e-02 -5.41709900e-01 -4.73886430e-02\\n2.20377043e-01 1.63471773e-01 1.72797069e-01 1.99010149e-01\\n-9.34576318e-02 -4.07977581e-01 1.05349876e-01 -5.64375281e-01\\n-2.33918458e-01 1.47594362e-01 -4.07128572e-01 2.71355361e-01\\n2.08260804e-01 -8.85742530e-02 -6.84777424e-02 1.75756514e-01\\n-1.47204876e-01 8.39553475e-02 1.92527175e-01 5.17481156e-02\\n4.29474980e-01 -1.31909158e-02 -4.88036036e-01 4.87025589e-01\\n-1.17629059e-01 3.22765619e-01 1.28966480e-01 -6.33928299e-01\\n5.18156767e-01 3.87201309e-01 1.34119019e-01 -3.40296209e-01\\n7.73359656e-01 -2.09232211e-01 -1.53796226e-01 1.28882870e-01\\n-5.41336775e-01 -2.04530403e-01 2.09910870e-01 -2.85638869e-01\\n-2.04468206e-01 6.05933845e-01 1.46033973e-01 1.70462862e-01\\n4.07893091e-01 -1.25825554e-01 -2.04333976e-01 1.82618171e-01\\n-1.61599264e-01 -2.83577591e-01 -4.41130549e-01 -1.46593213e-01\\n-1.38645932e-01 -5.25331318e-01 -2.12554470e-01 -5.44122219e-01\\n-1.19418189e-01 -3.49090397e-01 -1.90421775e-01 2.98726946e-01\\n2.70572782e-01 1.56919345e-01 -1.27486894e-02 -3.89354005e-02\\n-2.16649249e-01 -6.33001685e-01 1.12677880e-01 2.43788790e-02\\n2.78449357e-01 5.46571165e-02 -1.01318525e-03 -8.76794234e-02\\n9.30171683e-02 4.80634838e-01 -4.45369393e-01 -4.65957880e-01\\n1.67595834e-01 2.88126379e-01 -6.29331991e-02 -1.63987651e-01\\n7.48787075e-02 2.02743486e-01 -3.77554804e-01 4.87946309e-02\\n-3.19412686e-02 7.09454566e-02 3.11002165e-01 4.75667939e-02\\n-2.25134403e-01 -2.73619622e-01 -1.19784929e-01 2.03147247e-01\\n-4.44426179e-01 -3.51640642e-01 5.16058743e-01 2.27594838e-01\\n-8.20012465e-02 2.19246358e-01 1.83445424e-01 2.56463606e-02\\n-3.11640471e-01 -1.73988789e-01 1.85515121e-01 1.07422307e-01\\n7.74253830e-02 1.50473043e-01 -2.39359498e-01 -5.16104043e-01\\n-3.70907736e+00 -5.90654090e-02 2.16919612e-02 -3.38318013e-02\\n2.63239056e-01 -9.49420929e-02 2.72949815e-01 -1.70295238e-01\\n-3.73317093e-01 2.23193280e-02 -3.49745035e-01 -2.36381829e-01\\n2.36413643e-01 3.80795240e-01 1.85329095e-01 3.37170660e-01\\n8.95158853e-03 -3.26061338e-01 1.55033227e-02 3.53047460e-01\\n-1.01034768e-01 -5.98247468e-01 9.17824358e-02 -2.74122953e-02\\n3.05051386e-01 3.23851973e-01 -4.45890903e-01 4.46502045e-02\\n-2.90478021e-01 -3.03679377e-01 2.81372607e-01 -3.05325180e-01\\n-1.04047373e-01 3.29313606e-01 3.19882810e-01 -1.35911644e-01\\n8.91114213e-03 -3.04096609e-01 -2.21896827e-01 -4.22515392e-01\\n1.57804459e-01 -4.90906239e-01 -1.28313333e-01 -3.78867239e-02\\n7.59345353e-01 -2.76979506e-01 2.90725946e-01 -1.25216572e-02\\n-3.79199944e-02 2.58015037e-01 4.34338264e-02 -3.02164797e-02\\n-1.59291670e-01 -4.10524219e-01 -2.00489357e-01 -1.38318598e-01\\n7.19663858e-01 4.77971762e-01 -3.27104688e-01 -6.32395521e-02\\n3.40273418e-02 -2.62451947e-01 -4.98666763e-01 -3.22024316e-01\\n-2.16446906e-01 -9.33134332e-02 -5.49440205e-01 -5.07502139e-01\\n-6.88180998e-02 -2.11285770e-01 6.72993669e-03 5.60048044e-01\\n-3.87955904e-01 -4.22377199e-01 -1.19003303e-01 -5.84407449e-01\\n2.33222038e-01 -1.50476933e-01 1.93103589e-02 -6.49409369e-02\\n-2.87916183e-01 -4.92121696e-01 -3.83201055e-02 1.25485957e-01\\n-1.22601926e-01 -1.80888444e-01 1.67992145e-01 -2.10358664e-01\\n-4.12067920e-01 -5.70630968e-01 3.19926620e-01 7.52659366e-02\\n2.06089333e-01 3.11958551e-01 7.43244067e-02 9.38261375e-02\\n2.09748298e-01 -1.18292257e-01 -2.77300477e-02 -3.33694518e-01\\n6.80211857e-02 2.71623526e-02 4.78780895e-01 -2.68519908e-01\\n5.22808619e-02 3.14865038e-02 -1.65933669e-01 -1.00066185e-01\\n3.60404819e-01 2.91085709e-03 2.48318762e-01 -2.93007404e-01\\n2.49018162e-01 -4.09965307e-01 -1.22578003e-01 1.50597855e-01\\n8.01002532e-02 5.93329430e-01 -1.38859358e-02 -2.87190259e-01\\n-1.81143865e-01 4.63179588e-01 -7.93593749e-02 -1.28168138e-02\\n-1.41236469e-01 1.22826479e-01 -3.01261604e-01 4.57582884e-02\\n8.31399858e-02 -9.90217179e-02 -2.10034654e-01 -7.69866481e-02\\n-6.24854602e-02 3.36862296e-01 3.39921534e-01 2.14407220e-01\\n-1.19193226e-01 -3.77245843e-01 -3.04245334e-02 2.41239384e-01\\n2.78555810e-01 3.43841553e-01 1.13287218e-01 -3.09911937e-01\\n-3.05522885e-02 2.28456452e-01 -2.43753612e-01 2.83019274e-01\\n-2.08737180e-01 1.85385078e-01 -4.71682221e-01 -1.98949471e-01\\n-3.35636973e-01 -3.02228987e-01 1.68202549e-01 2.78751761e-01\\n4.78324443e-02 -1.47481069e-01 7.40066096e-02 -2.79685259e-01\\n1.28714785e-01 1.26459092e-01 1.72895581e-01 9.00546685e-02\\n4.25361320e-02 5.08100033e-01 -1.34723365e-01 -8.66496190e-02\\n-3.79136987e-02 1.55094236e-01 -2.98904300e-01 -1.67882740e-01\\n3.26476581e-02 -4.96705264e-01 -1.38876662e-01 3.30863655e-01\\n1.33994266e-01 -2.44507063e-02 -1.56706899e-01 2.71681696e-01\\n-6.29353225e-02 -4.21984881e-01 -1.89854845e-01 -3.77752148e-02\\n3.91769797e-01 1.97067633e-01 1.99220017e-01 -4.72003251e-01\\n3.39651704e-02 -1.60421096e-02 -6.23232126e-02 4.92524296e-01\\n-1.64510719e-02 1.27280802e-01 -3.88157777e-02 -2.85643280e-01\\n4.07037139e-01 -1.82942048e-01 -8.02245066e-02 1.08663850e-01\\n6.57938644e-02 -2.33758911e-01 -2.71264285e-01 4.50135991e-02\\n-1.33240342e-01 -2.20708475e-01 5.43981744e-03 2.07883753e-02\\n6.81371242e-02 1.14125408e-01 -6.96763396e-01 -1.31494328e-01\\n-3.38128626e-01 -2.66433377e-02 -2.57064160e-02 -5.89495063e-01\\n9.37665924e-02 -1.76048622e-01 -4.83618677e-01 3.92892152e-01\\n-2.18248978e-01 1.59633476e-02 2.26147965e-01 -2.03592633e-03\\n-2.53043085e-01 -1.80282846e-01 3.03423852e-01 2.25411966e-01\\n-3.14275414e-01 -1.91533878e-01 -2.80531328e-02 -9.39720631e-01\\n2.66930401e-01 -5.04413843e-02 -2.22142965e-01 2.92951893e-02\\n4.60405312e-02 -5.75743496e-01 1.47720560e-01 -2.36621723e-01\\n-1.12835318e-01 -5.46076670e-02 -2.26170704e-01 -3.88530970e-01\\n9.35971644e-03 -7.93675333e-02 -2.26015106e-01 4.02906537e-01\\n-3.38889658e-01 1.84469283e-01 -2.24166885e-02 2.16775984e-02\\n-2.04286929e-02 -3.47074330e-01 3.10599487e-02 -2.67032415e-01\\n-3.94339442e-01 -1.74878016e-01 -8.28907788e-02 -2.08658576e-01\\n-1.93180924e-04 -4.40714270e-01 -1.09175496e-01 6.83374777e-02\\n2.36038581e-01 -6.47720993e-02 -2.07359180e-01 -6.37338012e-02\\n-4.02890518e-02 -4.36068565e-01 8.02344978e-02 -1.47829279e-01\\n-9.34714600e-02 -1.64646432e-01 1.75696179e-01 7.70144016e-02\\n1.71934247e-01 -3.83518070e-01 4.33824152e-01 -3.38958740e-01\\n-2.44281590e-01 -4.73154634e-02 1.36464551e-01 8.58591031e-03\\n3.32300365e-01 -5.70898592e-01 -1.79186478e-01 4.85027581e-01\\n1.21535219e-01 9.76505410e-03 2.74466872e-01 -2.22782210e-01\\n-2.85697460e-01 4.10868973e-01 -2.47874334e-01 2.06477046e-01\\n7.59367347e-01 2.34027103e-01 2.15660274e-01 1.85695961e-01\\n5.54197058e-02 3.72010559e-01 3.88585508e-01 7.35035837e-02\\n1.14770360e-01 4.62758750e-01 1.29114717e-01 -4.50532645e-01\\n6.51421919e-02 7.48575628e-02 -1.76990125e-02 -3.38613302e-01\\n5.71200788e-01 4.18865412e-01 -4.79401261e-01 -3.71115088e-01\\n-1.93321466e-01 -2.30509773e-01 2.57935256e-01 -3.96324694e-02\\n8.67455155e-02 -2.13403881e-01 4.65888798e-01 4.22241725e-02\\n1.19340211e-01 5.51934600e-01 -1.13279380e-01 -1.61001548e-01\\n-1.25377461e-01 1.63823247e-01 4.23096791e-02 5.02787948e-01\\n-1.01218373e-01 3.05310696e-01 -5.16975336e-02 1.80466488e-01\\n-1.23121917e-01 6.84957281e-02 3.06439400e-01 6.38772696e-02\\n-6.71916008e-02 3.13701838e-01 4.36375111e-01 4.52330589e-01\\n3.90467167e-01 4.19316918e-01 1.97180539e-01 4.10353169e-02\\n4.91685063e-01 4.94395077e-01 5.09132862e-01 9.87051949e-02\\n5.70210889e-02 -5.83960749e-02 6.65263906e-02 1.34733200e-01\\n2.76557297e-01 3.56498957e-01 -8.12474638e-02 8.53647649e-01\\n4.01272386e-01 2.59191155e-01 5.45863628e-01 -5.74813366e-01\\n-2.21465662e-01 9.34437066e-02 4.16498542e-01 -4.43234384e-01\\n-1.01665333e-01 9.72616524e-02 -2.36519665e-01 1.63716167e-01\\n-5.61485291e-01 -1.28513530e-01 -9.49923843e-02 4.80301902e-02\\n1.37602508e-01 -2.54826486e-01 -1.08912319e-01 2.56002657e-02\\n-3.76788527e-02 -2.07991019e-01 -5.21685421e-01 -2.01340169e-01\\n-2.61706352e-01 -1.59582540e-01 -1.58688724e-02 -4.76816446e-02\\n5.23601212e-02 -2.41665795e-01 -8.35303143e-02 1.02412224e-01\\n3.16163391e-01 -1.00517683e-01 -1.23253323e-01 -5.70156612e-02\\n4.24657643e-01 2.49227658e-01 6.50379419e-01 -8.71798173e-02\\n-4.85449545e-02 -1.09967537e-01 -1.61423773e-01 1.47626474e-01\\n2.10443869e-01 3.41736265e-02 5.91592267e-02 3.84093881e-01\\n-3.55219305e-01 -1.77509859e-01 1.67385608e-01 3.86279911e-01\\n-4.82749164e-01 1.87266737e-01 1.45087525e-01 3.19950968e-01\\n9.58703905e-02 1.88496649e-01 -1.79843903e-01 -3.18964124e-02\\n-3.08908075e-02 -5.10407269e-01 3.40934604e-01 2.78361328e-03\\n-1.12154096e-01 -6.76452518e-02 3.03985864e-01 3.73336256e-01\\n-1.07625850e-01 -1.99855298e-01 -8.22607577e-02 1.28288463e-01\\n4.12612483e-02 2.98357785e-01 -3.38464051e-01 -2.86627203e-01\\n-4.40334797e-01 1.09875180e-01 -5.98270334e-02 8.50374252e-02\\n-7.56504759e-03 2.46335596e-01 1.15903437e-01 2.67920941e-01\\n3.53387326e-01 -1.08669966e-01 -1.63407981e-01 -1.41656354e-01\\n-2.09220603e-01 -8.75437409e-02 1.10776484e-01 -7.38353282e-02\\n2.71980941e-01 -4.22552913e-01 -2.09828228e-01 -2.45986238e-01\\n-1.38953432e-01 -3.73937756e-01 4.29354645e-02 -8.54095817e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: You are the key contact person for the consolidation and analysis of needs of our scientists and will compile the information needed for strategic decisions of the board of directors. As a coordinator you will identify, propose and support solutions for relevant topics such as: - high performance data management documentation, exchange and curation systems - e-lab journals, repository systems, data management plans - identification, architecture and design of new technologies As contact person for data management you will lead a user group consisting of experts out of our research departments and you will organize and partly lead trainings and workshops or working groups and coordinate various activities with external partner. Your profile: You have a university degree (MSc degree) in computational science, or a related scientific discipline. You have already demonstrated experience in research and project management. You are interested to work closely together with our researchers on data science questions. You are a team player and your strengths include taking personal responsibility, high motivation for excellence, flair for elaborating out-of-the-box solutions. Strong interpersonal and communication skills are essential alongside the ability to collaborate with peers and scientific partners. Excellent communication skills in English and German are mandatory. The position is first limited to 2 years. Benötigte Skills Englisch Datawarehouse',\n", + " 'soft_skills': '[\"Coordinating\", \"Research\", \"Verbal Communication Skills\", \"Collaboration\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Compilers\", \"Computer Science\", \"Data Management\", \"Strategic Decision-Making\", \"Instructor-Led Training\", \"Journals\", \"Activism\", \"E (Programming Language)\", \"Data System\", \"Limiter\", \"Data Science\", \"Consolidation\", \"Data Management Plan\", \"Personalization\", \"High Performance Fortran (Concurrent Programming Language)\", \"Clinical Data Management\", \"Group Work\", \"Project Management\", \"Curation\", \"Document Management\"]',\n", + " 'languages': \"['English', 'Turkmen']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data analyst/-scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.41309604e-01 2.42345914e-01 4.95187610e-01 1.05289342e-02\\n5.81725121e-01 -1.90028071e-01 6.13713488e-02 2.04275876e-01\\n-6.64053932e-02 -2.53704458e-01 -5.51296724e-03 -1.78655699e-01\\n-1.79121241e-01 9.13927183e-02 1.15096360e-01 4.34087008e-01\\n2.37357035e-01 3.82301770e-02 -1.78476006e-01 2.21163154e-01\\n2.54345447e-01 -1.74213469e-01 -7.67908022e-02 6.96332157e-01\\n3.74726802e-01 9.39255133e-02 -1.86563537e-01 -1.19988369e-02\\n-4.12281901e-01 -2.54240632e-01 3.46634239e-01 4.67030667e-02\\n-1.23894925e-03 -2.59558737e-01 1.64461985e-01 1.51192486e-01\\n-2.50057787e-01 6.57310411e-02 -7.76414871e-02 2.41371587e-01\\n-4.12696272e-01 -2.81534791e-01 4.46071923e-02 6.01071380e-02\\n-2.57466912e-01 -2.72550493e-01 2.69322637e-02 -1.00781664e-01\\n1.08765781e-01 3.32103819e-02 -6.22842014e-01 2.88397759e-01\\n-3.21263909e-01 -1.24721438e-01 2.19639808e-01 6.52157962e-01\\n-1.23220943e-02 -5.50713539e-01 -4.05414462e-01 -3.51219714e-01\\n-1.17067872e-02 -1.75884426e-01 1.24225710e-02 -9.81647074e-02\\n3.70770693e-01 -1.00242764e-01 8.86145532e-02 3.58269781e-01\\n-7.25724280e-01 7.67762735e-02 -1.55544087e-01 1.18060827e-01\\n-3.45506847e-01 -2.42374092e-02 -2.56183177e-01 -6.17600977e-02\\n-9.72439721e-02 3.87738913e-01 2.59696152e-02 7.03790039e-02\\n-3.27120833e-02 1.87979832e-01 -3.00213993e-01 1.58992425e-01\\n3.61241490e-01 1.28758490e-01 1.84616655e-01 3.31613481e-01\\n-3.31270933e-01 3.86986822e-01 1.07036754e-01 -2.02435330e-01\\n1.41632691e-01 7.32120126e-02 5.84101915e-01 1.23450525e-01\\n-2.01484263e-02 1.76034570e-01 -1.30418375e-01 1.80863008e-01\\n1.95500255e-01 -2.29160488e-01 7.55668804e-02 -1.29111325e-02\\n-1.79440171e-01 -1.23655930e-01 -9.24576223e-02 3.30452412e-01\\n-1.78514943e-01 3.04507792e-01 2.53048927e-01 -1.24001779e-01\\n-7.11512715e-02 -6.24710381e-01 -3.06372009e-02 -2.49003731e-02\\n5.96241318e-02 2.24088088e-01 2.99894750e-01 1.48166329e-01\\n1.28248453e-01 2.31195405e-01 2.65513003e-01 9.55472708e-01\\n-5.13984337e-02 1.40060887e-01 -2.89088368e-01 3.07387441e-01\\n2.40971148e-01 -9.83006582e-02 1.58783063e-01 2.96943873e-01\\n1.85353801e-01 -1.60447255e-01 -2.55039692e-01 2.54841566e-01\\n-5.38007095e-02 -1.17342927e-01 -1.64585233e-01 6.04577288e-02\\n-2.05828637e-01 -4.76935446e-01 4.32802439e-01 2.62411863e-01\\n9.79005620e-02 -9.01689604e-02 -2.60904320e-02 -6.42795861e-03\\n-6.29682839e-02 3.93617451e-01 2.00052019e-02 3.73863488e-01\\n-3.71199727e-01 -3.15283090e-01 -2.34121442e-01 2.52929896e-01\\n-1.03307664e-01 1.75443053e-01 -9.66233462e-02 -1.73820376e-01\\n3.59863460e-01 1.59245759e-01 -3.14045668e-01 1.19239122e-01\\n3.31541225e-02 -2.88603991e-01 -5.57604879e-02 2.91670948e-01\\n-1.51056647e-01 1.62221476e-01 -4.33824323e-02 -2.84954816e-01\\n5.22656858e-01 1.93062201e-01 2.14652315e-01 -5.99146113e-02\\n3.52101713e-01 -1.16483465e-01 3.27088416e-01 1.84622869e-01\\n-5.06664753e-01 3.97843212e-01 -3.82274166e-02 -1.58920676e-01\\n1.56497806e-01 1.17287248e-01 5.14294207e-01 -3.76570165e-01\\n1.09231144e-01 -1.33719608e-01 -4.63076383e-01 -2.66661733e-01\\n-1.82852760e-01 -1.59908254e-02 4.15256411e-01 -4.19202775e-01\\n4.07606848e-02 3.28877360e-01 -5.27872503e-01 -1.72444627e-01\\n1.92290872e-01 1.97783694e-01 1.93492338e-01 -6.11561276e-02\\n-2.38899276e-01 -4.26434755e-01 2.80728359e-02 -4.72782522e-01\\n-3.58956218e-01 -1.96728706e-02 -3.01076472e-01 2.90156841e-01\\n3.28732468e-02 1.55236825e-01 -2.35494226e-01 1.72675163e-01\\n-2.66240865e-01 -1.72437325e-01 3.03732336e-01 1.03987768e-01\\n3.45798552e-01 -9.51112136e-02 -4.27678466e-01 3.77625674e-01\\n-2.57331967e-01 5.22657812e-01 2.36784786e-01 -8.03411484e-01\\n6.28084302e-01 2.01549500e-01 -1.59887701e-01 -4.43921506e-01\\n4.07242239e-01 -3.58837903e-01 3.48102581e-03 3.10886919e-01\\n-1.65228814e-01 -2.27737427e-01 2.99896687e-01 -2.71383300e-02\\n-2.58482754e-01 5.95592916e-01 2.21955135e-01 6.84247585e-03\\n3.37926298e-01 -2.61266202e-01 -9.44666415e-02 -2.42064930e-02\\n-1.47270873e-01 -2.20717520e-01 -3.13650608e-01 4.22418155e-02\\n-1.58533350e-01 -5.36055386e-01 -8.27074349e-02 -3.07028651e-01\\n-1.83166623e-01 -3.75513852e-01 -2.38681540e-01 3.50479692e-01\\n1.05316296e-01 2.15624511e-01 2.39250548e-02 -4.61859517e-02\\n-1.07280351e-02 -7.70258129e-01 -1.29912227e-01 5.86921833e-02\\n4.81336564e-01 1.65374339e-01 1.11661866e-01 -7.01904669e-02\\n2.21104715e-02 4.48579371e-01 -3.26464564e-01 -2.56990314e-01\\n6.02691211e-02 1.18256867e-01 5.31548494e-03 -7.83608556e-02\\n4.48914245e-03 3.05520415e-01 -1.61033154e-01 1.13511011e-01\\n-9.36435685e-02 -5.37121966e-02 2.66910464e-01 -1.52393699e-01\\n-2.80878484e-01 -3.51745486e-01 -2.76931748e-02 2.64620423e-01\\n-5.39514244e-01 -2.51038730e-01 4.60974306e-01 1.80587038e-01\\n8.86089355e-02 2.04350710e-01 2.39415005e-01 -7.93791935e-02\\n-2.34303966e-01 -2.66540945e-01 1.67272076e-01 1.31963924e-01\\n9.66816917e-02 9.73745957e-02 -2.37288848e-01 -6.58024669e-01\\n-3.55326629e+00 -1.16721012e-01 2.38415655e-02 -2.28661284e-01\\n1.70438066e-01 -1.55524373e-01 1.07482392e-02 6.55617341e-02\\n-3.20717722e-01 -3.37169878e-02 -1.03608474e-01 -1.05171643e-01\\n3.70990150e-02 2.87524402e-01 1.23650715e-01 2.94273525e-01\\n5.16137183e-02 -2.66436428e-01 -5.43563738e-02 4.34315383e-01\\n-2.15379193e-01 -6.93347752e-01 1.22196026e-01 -9.54927355e-02\\n1.42795220e-01 2.29194015e-01 -4.73653227e-01 -8.66139829e-02\\n-3.21060210e-01 -2.55334824e-01 3.67913134e-02 -2.12255731e-01\\n-1.15403995e-01 2.18030229e-01 1.01880156e-01 -3.69861051e-02\\n4.36322354e-02 -2.37846255e-01 5.53515702e-02 -4.85644072e-01\\n5.62111884e-02 -7.15092599e-01 3.85102071e-02 -1.79421574e-01\\n5.91517150e-01 -3.77573073e-01 2.42797896e-01 1.34615511e-01\\n2.37286776e-01 2.18169257e-01 -3.99137996e-02 2.43577268e-02\\n-2.70448178e-01 -3.70845944e-01 -1.90875769e-01 -2.01608613e-01\\n4.03116047e-01 7.24322915e-01 -1.25797182e-01 1.02143297e-02\\n4.56551053e-02 -4.22996402e-01 -4.66671169e-01 -4.93965447e-01\\n-1.52908489e-01 -9.41027626e-02 -7.15032697e-01 -4.92935658e-01\\n-2.01911926e-01 1.36598432e-02 -1.34685606e-01 5.69943011e-01\\n-4.16445076e-01 -4.28983182e-01 -3.65291536e-02 -5.94303727e-01\\n1.51316911e-01 -1.92612514e-01 7.63198882e-02 -2.05273151e-01\\n-3.52591664e-01 -4.72140998e-01 2.69705504e-01 -8.67446139e-02\\n-2.37495199e-01 -1.03596739e-01 1.27611747e-02 -2.58096188e-01\\n-3.54307711e-01 -4.52371687e-01 4.11495090e-01 2.59579886e-02\\n3.43775094e-01 1.27907246e-01 4.03747082e-01 4.77662776e-03\\n4.73737091e-01 -8.80195200e-02 1.55256495e-01 -3.81164610e-01\\n8.17187876e-02 2.83734761e-02 5.46576679e-01 -2.85340667e-01\\n7.94946998e-02 1.46577075e-01 -3.52357537e-01 1.81033164e-02\\n3.86818022e-01 6.32219994e-03 -1.77951157e-01 -2.27525681e-02\\n4.51621026e-01 -3.89102131e-01 -3.22578937e-01 2.04966664e-01\\n1.01404093e-01 5.40069699e-01 1.41419936e-02 -3.91729683e-01\\n-3.00474286e-01 4.80876386e-01 -1.49937347e-01 -2.44879588e-01\\n9.63295158e-03 1.14314497e-01 -5.56169301e-02 4.00172651e-01\\n1.44649167e-02 -2.84162313e-01 -4.38005984e-01 -1.34998485e-01\\n7.72362873e-02 1.74708575e-01 1.81455106e-01 1.10887205e-02\\n-1.76466480e-01 -2.99342461e-02 -1.33923501e-01 1.61759555e-01\\n1.50598586e-01 2.21451521e-01 1.92093611e-01 -1.28597066e-01\\n-1.58519056e-02 1.76396415e-01 -2.43826404e-01 1.66385993e-01\\n-2.44249225e-01 -2.04034355e-02 -3.43986660e-01 -3.83897454e-01\\n-1.25304386e-01 -3.10044944e-01 1.98234782e-01 3.29578310e-01\\n2.06822902e-01 -5.80574907e-02 1.43459931e-01 -5.61024904e-01\\n3.39569360e-01 -1.05406931e-02 1.36097550e-01 1.02507778e-01\\n1.95527263e-02 5.61319292e-01 1.67205438e-01 -1.59783646e-01\\n-1.35963872e-01 -3.77260000e-02 -3.37077051e-01 -2.10846767e-01\\n1.41084313e-01 -3.62861335e-01 -1.92995667e-01 4.85600263e-01\\n1.61782697e-01 -3.13034952e-01 -8.53312165e-02 3.52205068e-01\\n1.22287445e-01 -2.73336470e-01 -1.68753266e-01 4.17708270e-02\\n1.86231717e-01 1.68249801e-01 3.55196923e-01 -3.68365467e-01\\n8.16067457e-02 3.65665853e-02 2.19429582e-02 5.11114120e-01\\n2.41229888e-02 1.43759519e-01 -1.93158433e-01 -1.51198223e-01\\n4.20423180e-01 -2.79331654e-02 4.03627716e-02 2.70540118e-02\\n1.29848216e-02 -2.27307767e-01 -4.77286309e-01 -1.20499069e-02\\n4.82060090e-02 -1.53756648e-01 -1.12884812e-01 2.10063279e-01\\n4.15571174e-03 -9.74253565e-02 -4.51272935e-01 -3.19119692e-01\\n-3.61985832e-01 4.72452939e-02 2.73428317e-02 -3.53757769e-01\\n-3.97210233e-02 5.23503833e-02 -5.30670404e-01 2.24649653e-01\\n-1.06764361e-01 8.47542658e-02 1.69562444e-01 1.03137486e-01\\n-1.31812423e-01 -1.31850960e-02 7.62035400e-02 1.12451226e-01\\n-3.69189262e-01 -2.32089832e-01 6.01567142e-03 -8.73040378e-01\\n5.13009019e-02 -5.75467683e-02 -1.50787950e-01 5.88278845e-02\\n6.61048219e-02 -5.71408570e-01 1.93926930e-01 -5.20255983e-01\\n-3.85395288e-02 5.61361387e-02 -2.10825652e-01 -3.23694468e-01\\n1.24232464e-01 -5.72292767e-02 -3.53815287e-01 2.58285642e-01\\n-3.82600099e-01 3.05319041e-01 4.51804046e-03 2.08872482e-02\\n2.56689012e-01 -3.59165877e-01 2.19000369e-01 -2.28487492e-01\\n-2.76170969e-01 -1.87412962e-01 -4.09041792e-01 -2.21926868e-01\\n9.11185071e-02 -2.13864014e-01 -1.16523832e-01 6.78097233e-02\\n3.06115597e-01 1.86384290e-01 -9.91202146e-03 -1.87103033e-01\\n3.70159671e-02 -4.97170031e-01 8.64468291e-02 -3.16538453e-01\\n-6.39452785e-02 -1.36008576e-01 2.12101236e-01 -1.35455534e-01\\n7.54953623e-02 -3.14322054e-01 6.56183839e-01 -1.87933490e-01\\n-2.87419707e-01 -1.06150769e-01 1.92510579e-02 -1.41704232e-02\\n1.31835237e-01 -3.31633002e-01 7.50561617e-03 2.67958045e-01\\n1.92695618e-01 9.38102528e-02 2.45631039e-01 -1.00399874e-01\\n-1.17276236e-01 2.96685454e-02 -5.47791660e-01 5.88313863e-02\\n7.60778069e-01 2.19236597e-01 4.93063591e-02 1.78157419e-01\\n1.27772614e-01 2.22749010e-01 5.00365555e-01 2.20818892e-02\\n-3.16789262e-02 2.77496517e-01 1.19852059e-01 -4.61885095e-01\\n-1.75466001e-01 -1.16186075e-01 -1.63947389e-01 -3.12177956e-01\\n6.16309941e-01 3.98458630e-01 -4.00034487e-01 -3.44561875e-01\\n-1.52685627e-01 -1.37759879e-01 1.71947405e-01 -6.85755685e-02\\n-6.52290583e-02 -1.22053117e-01 4.79434818e-01 6.98408112e-03\\n1.95310235e-01 4.69329387e-01 -8.74790251e-02 -3.02573383e-01\\n-5.52049205e-02 1.49460450e-01 2.02721164e-01 3.80473137e-01\\n-1.48210123e-01 2.14094371e-01 -8.77735987e-02 1.98888496e-01\\n-5.11602834e-02 1.06716119e-01 1.24414593e-01 -5.76919178e-03\\n1.05100930e-01 4.18132395e-02 2.72627741e-01 4.11500484e-01\\n1.78184807e-01 4.58744764e-01 2.02496380e-01 -8.37726798e-03\\n2.94630289e-01 6.43563032e-01 3.55520934e-01 1.03669487e-01\\n-8.90064836e-02 5.29621504e-02 -2.23074518e-02 -7.39959180e-02\\n4.34763253e-01 2.26070568e-01 1.77446187e-01 7.50275373e-01\\n2.55090863e-01 2.48890191e-01 6.50442302e-01 -6.09853983e-01\\n-4.01869744e-01 -1.01121500e-01 6.40795887e-01 -2.68645704e-01\\n-8.54948536e-02 1.23422883e-01 -2.93706775e-01 1.35742262e-01\\n-6.24728680e-01 -2.50672717e-02 1.30272985e-01 5.41855581e-02\\n-3.51395346e-02 -3.73576744e-03 -9.91823375e-02 6.07349314e-02\\n-1.43953234e-01 -1.63878262e-01 -3.44019324e-01 -2.56816864e-01\\n-3.32980543e-01 -6.87018856e-02 -3.97430137e-02 -8.28104466e-03\\n-7.70619661e-02 -3.75301749e-01 -1.92177117e-01 8.83833542e-02\\n4.10975069e-01 -2.40074560e-01 -1.49379551e-01 -1.35970145e-01\\n4.74332459e-02 2.35275298e-01 5.69668233e-01 -3.23955305e-02\\n1.18854299e-01 -2.54512817e-01 -2.13261619e-01 1.25390859e-02\\n2.69805342e-01 3.75774205e-02 1.38977438e-01 5.28261602e-01\\n-3.08562458e-01 -8.26487616e-02 1.65057629e-01 2.58873224e-01\\n-4.56463158e-01 -9.79380906e-02 3.62323783e-02 2.68457085e-01\\n9.89528447e-02 1.78756312e-01 -2.51592427e-01 1.24230728e-01\\n-3.60098720e-01 -4.72705007e-01 3.91173333e-01 -1.62932053e-01\\n-1.35491356e-01 1.66049674e-01 3.56720418e-01 1.26869947e-01\\n-1.44634545e-01 2.52998574e-03 1.07691428e-02 3.21577609e-01\\n1.26225897e-03 2.99942732e-01 -2.81779736e-01 -2.98861146e-01\\n-2.83672988e-01 2.78143555e-01 -9.20500979e-02 1.96898341e-01\\n-1.29035162e-02 3.34455699e-01 1.50864413e-02 1.48398772e-01\\n2.37061217e-01 2.64530256e-02 -1.67650953e-01 -2.04256326e-01\\n-2.32290462e-01 -2.65042752e-01 1.50806561e-01 3.28221284e-02\\n1.16261475e-01 -3.62598211e-01 -9.01129395e-02 -2.11822748e-01\\n-2.40717739e-01 -3.39362264e-01 -2.65211402e-03 2.04435457e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements Your profile: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Benötigte Skills Python Python MySQL Englisch Scala ETL',\n", + " 'soft_skills': '[\"Research\"]',\n", + " 'hard_skills': '[\"Automation\", \"MySQL\", \"Data Quality\", \"Python Server Pages\", \"Tooling\", \"Computer Science\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Scala (Programming Language)\", \"Pyspark\", \"Python (Programming Language)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Data Science\", \"Virtual Computing\", \"Machine Learning Algorithms\", \"Scalability\", \"Big Data\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Scripting\", \"Algorithms\", \"Git Flow\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " 'languages': \"['English', 'Dhivehi']\"},\n", + " {'company_id': '32',\n", + " 'job_title': 'data analytics consultant',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.89278537e-01 1.65819764e-01 4.24691349e-01 -5.29332235e-02\\n3.75030786e-01 -9.19754878e-02 -3.71104851e-02 4.14441019e-01\\n9.32690338e-04 -4.99805421e-01 -4.68457378e-02 -2.56482452e-01\\n-5.94532192e-02 5.95912822e-02 -2.91287694e-02 4.32043016e-01\\n3.47095162e-01 1.77651465e-01 -2.36157998e-01 2.26133212e-01\\n1.53578147e-01 -7.96462297e-02 4.61951643e-02 7.57712185e-01\\n4.13486153e-01 -1.17374100e-02 -8.86808261e-02 1.66973114e-01\\n-1.94778979e-01 -2.41087630e-01 3.82936597e-01 1.73872299e-02\\n-1.53026670e-01 -2.46861115e-01 7.02838674e-02 6.57373443e-02\\n-1.44008353e-01 4.84846383e-02 -1.17604010e-01 1.09120002e-02\\n-4.17039365e-01 -1.96378663e-01 -2.88858693e-02 -6.75839037e-02\\n-2.81513780e-01 -3.59474152e-01 1.85740571e-02 -5.87548912e-02\\n5.65662198e-02 3.59946210e-03 -6.02794051e-01 4.21349615e-01\\n-2.78940290e-01 -1.39247268e-01 1.61520541e-01 6.26566827e-01\\n-7.73884654e-02 -4.06791270e-01 -4.82372910e-01 -2.64505684e-01\\n2.37249210e-01 -2.60206848e-01 1.43798068e-01 -2.65253663e-01\\n4.16650683e-01 4.37681489e-02 -7.62402872e-03 3.50277632e-01\\n-6.42199457e-01 -5.28196618e-02 -4.58097339e-01 -1.52877524e-01\\n-3.49141419e-01 -9.00792144e-03 -4.47684139e-01 -1.43460244e-01\\n-1.65018633e-01 3.45971256e-01 1.97635833e-02 8.80823210e-02\\n-2.05259115e-01 1.14988834e-01 -2.10410073e-01 2.45822474e-01\\n1.32299989e-01 3.56799155e-01 2.42739841e-01 2.27376223e-01\\n-4.09273952e-01 4.20973539e-01 1.32329971e-01 -3.84318829e-01\\n1.69657871e-01 1.64575040e-01 3.60664606e-01 -1.11526288e-01\\n1.25827059e-01 5.33736646e-02 -2.15807199e-01 3.16628367e-01\\n2.97861099e-01 -4.19375896e-01 3.30130756e-02 -1.82360932e-01\\n-3.65978256e-02 2.36012954e-02 9.96241570e-02 1.47247121e-01\\n-3.24783742e-01 4.55450743e-01 6.43786713e-02 -2.43983790e-01\\n-5.36719244e-03 -4.84207600e-01 -1.33967802e-01 7.89005309e-02\\n8.05912390e-02 3.35926451e-02 1.94820225e-01 2.15754658e-01\\n2.83774912e-01 -3.13561000e-02 1.72663942e-01 7.34126151e-01\\n2.02202760e-02 9.12136734e-02 -2.16340318e-01 4.17123973e-01\\n8.77283141e-02 -3.01394165e-01 2.63441175e-01 2.36439452e-01\\n6.75913468e-02 -1.11400127e-01 -2.08296567e-01 3.05444062e-01\\n1.14453677e-02 -1.57450095e-01 -2.94051826e-01 8.45068768e-02\\n-1.78603400e-02 -4.38740909e-01 6.65474415e-01 1.55925518e-02\\n2.56550848e-01 -5.61988447e-03 5.66444509e-02 -1.41291440e-01\\n-1.84023147e-03 1.98301330e-01 5.72228841e-02 8.72521922e-02\\n-2.73829550e-01 -2.65384465e-01 -1.29848883e-01 1.89023316e-01\\n-3.11131567e-01 1.98273227e-01 -1.37262151e-01 -8.49168077e-02\\n3.04281324e-01 -5.01781739e-02 -3.37651163e-01 1.79451942e-01\\n-2.22544130e-02 -1.82415128e-01 -6.71432316e-02 3.54633957e-01\\n-1.12618707e-01 1.94626465e-01 -8.78626108e-02 -2.21390247e-01\\n4.73379582e-01 2.42205128e-01 9.32067335e-02 -4.80190888e-02\\n3.24119329e-01 -1.28768414e-01 7.88881034e-02 4.80159000e-02\\n-6.42589569e-01 5.27368486e-01 -3.68334092e-02 -2.39975631e-01\\n1.24532752e-01 -3.83894220e-02 3.70939791e-01 -2.54251659e-01\\n-4.83802333e-02 -1.79472063e-02 -2.65331596e-01 -2.93323100e-01\\n-3.99223529e-02 -1.54572576e-01 3.99023414e-01 -3.95082355e-01\\n-3.21061052e-02 1.48121759e-01 -6.39471650e-01 -3.81809995e-02\\n1.80207923e-01 2.10323617e-01 1.42015517e-01 1.23901695e-01\\n-5.68739548e-02 -4.16574985e-01 5.27085811e-02 -4.73766893e-01\\n-3.71522129e-01 1.68681800e-01 -3.39974850e-01 2.67334402e-01\\n1.62085518e-01 -4.22293544e-02 -1.26068965e-01 1.62485942e-01\\n-1.02071576e-01 -1.38086546e-02 1.04659073e-01 3.58076245e-02\\n3.53349596e-01 1.19742818e-01 -4.32161659e-01 4.96114075e-01\\n-1.28588930e-01 5.36070704e-01 9.10723582e-02 -7.35056043e-01\\n4.81451929e-01 3.34875196e-01 8.35393146e-02 -3.01237553e-01\\n5.88206172e-01 -2.63532013e-01 -7.40985721e-02 1.88967995e-02\\n-3.89510751e-01 -2.22679436e-01 1.80822030e-01 -1.74568862e-01\\n-2.17266887e-01 4.83381152e-01 1.95077546e-02 1.46033451e-01\\n1.22814365e-01 -1.97617248e-01 -1.14423156e-01 5.46050556e-02\\n-1.39992207e-01 -2.01869130e-01 -4.67154592e-01 -1.86526868e-02\\n-1.37503520e-01 -4.44969982e-01 -1.51504576e-01 -4.33155894e-01\\n-2.12103024e-01 -3.65394652e-01 -2.16023862e-01 2.43283629e-01\\n1.32603675e-01 9.19411033e-02 9.18990001e-02 -2.07596589e-02\\n-1.45976827e-01 -4.80092287e-01 4.64264378e-02 1.34170651e-02\\n3.87672067e-01 2.28670508e-01 5.65271899e-02 4.22685035e-03\\n3.63092981e-02 5.89971900e-01 -3.56187254e-01 -2.57472068e-01\\n1.13064595e-01 2.54427433e-01 1.97737291e-02 -1.15199499e-01\\n1.54961109e-01 3.98447245e-01 -2.05161184e-01 -1.84747502e-02\\n8.48463038e-04 1.30725531e-02 4.43889052e-01 4.27895039e-03\\n-3.06963533e-01 -1.67835221e-01 -1.48197636e-01 1.68636695e-01\\n-5.28807521e-01 -2.89574414e-01 5.79935730e-01 2.24311784e-01\\n2.02735826e-01 1.14504457e-01 1.27705961e-01 1.60038676e-02\\n-1.24381818e-01 -2.17966646e-01 2.03012779e-01 7.85360634e-02\\n-8.73875804e-03 1.01628713e-01 -8.38179439e-02 -5.70724010e-01\\n-3.78299141e+00 -2.05413789e-01 1.62524223e-01 -2.67611474e-01\\n2.92937577e-01 -1.45262912e-01 1.12024091e-01 -8.38462487e-02\\n-4.04105306e-01 8.55377764e-02 -2.27435276e-01 -2.25407124e-01\\n1.41399056e-01 1.85297057e-01 1.71556190e-01 1.71768919e-01\\n1.96015596e-01 -3.08202893e-01 -2.81631108e-02 3.58277231e-01\\n-8.45748037e-02 -6.66406929e-01 2.16851220e-01 -3.21940817e-02\\n2.69170284e-01 4.03082341e-01 -3.23780864e-01 -3.59794870e-02\\n-3.53415251e-01 -2.45629773e-01 1.51763186e-01 -3.27189416e-01\\n-1.02398820e-01 3.32295209e-01 2.31244370e-01 -1.89961344e-01\\n1.56141847e-01 -3.83249611e-01 -4.32644077e-02 -3.93341660e-01\\n1.64613023e-01 -4.58610475e-01 -3.76622267e-02 3.45347449e-02\\n8.02492142e-01 -2.56899774e-01 1.62282497e-01 3.25393192e-02\\n1.67641312e-01 2.26336524e-01 8.77269432e-02 5.74733205e-02\\n-1.71498999e-01 -2.91284680e-01 -4.54140604e-02 -4.53751311e-02\\n5.08171558e-01 4.35516149e-01 -1.31619424e-01 4.50974591e-02\\n5.74094243e-02 -3.03248793e-01 -4.01313812e-01 -2.63187468e-01\\n-2.53815621e-01 -1.25976220e-01 -5.31077802e-01 -4.85110998e-01\\n-1.09135494e-01 -1.51337191e-01 -1.13375507e-01 5.25751829e-01\\n-1.31340057e-01 -3.96715134e-01 -1.13917455e-01 -5.88829517e-01\\n2.31709361e-01 -1.48085847e-01 1.07151181e-01 -1.24053337e-01\\n-2.53479987e-01 -6.82873249e-01 -1.04118906e-01 5.59904892e-03\\n-2.68404819e-02 -1.98721752e-01 1.31356135e-01 -1.33584917e-01\\n-2.61449426e-01 -4.38988835e-01 4.03080881e-01 8.26001316e-02\\n3.28862131e-01 2.53736615e-01 2.17943311e-01 8.24141949e-02\\n3.30958366e-01 -2.03416675e-01 7.13393092e-02 -3.76973510e-01\\n7.70398080e-02 2.99176443e-02 4.15632427e-01 -2.10384399e-01\\n8.46751314e-03 5.30660078e-02 -2.55673319e-01 -1.35633782e-01\\n3.32347929e-01 -8.28782618e-02 2.70992965e-01 -1.63714826e-01\\n3.09480995e-01 -2.75099248e-01 -2.11920485e-01 8.45624879e-02\\n-8.07435140e-02 5.31822741e-01 -5.78420646e-02 -3.26728523e-01\\n-1.19973212e-01 4.85659063e-01 -1.94136098e-01 7.53409415e-02\\n-1.84656188e-01 1.19954139e-01 -2.83136100e-01 2.08400682e-01\\n-8.62804502e-02 -2.22571135e-01 -2.06572369e-01 -1.51368394e-01\\n-3.55521701e-02 2.52028972e-01 3.63638788e-01 8.27135742e-02\\n-6.68608546e-02 -3.40818286e-01 -1.24611251e-01 1.22682557e-01\\n3.51553291e-01 4.45125669e-01 1.03048645e-01 -1.27441108e-01\\n6.67838976e-02 2.38299310e-01 -1.46716952e-01 5.33829629e-02\\n-1.55077368e-01 1.45213038e-01 -3.19287568e-01 -2.62711972e-01\\n-2.39935309e-01 -3.63748699e-01 8.85156617e-02 3.10257614e-01\\n1.19192228e-01 -4.40309159e-02 2.62999088e-02 -2.57839113e-01\\n3.70018870e-01 1.30780563e-01 1.23513408e-01 1.79509521e-01\\n3.26418243e-02 5.13428986e-01 -4.08241116e-02 1.18675670e-02\\n-2.26338714e-01 1.08575784e-01 -1.96292937e-01 -1.54820889e-01\\n5.93637899e-02 -3.56685013e-01 -1.71090215e-01 3.87626350e-01\\n9.19514075e-02 -2.05182061e-01 -8.99148807e-02 3.57179612e-01\\n-5.57397678e-02 -2.78260112e-01 -2.01166496e-01 1.00774169e-01\\n3.32860827e-01 4.43358570e-02 2.25029036e-01 -4.06200320e-01\\n-4.50377986e-02 -5.16333692e-02 -1.89623415e-01 3.39184374e-01\\n3.65303047e-02 1.78915873e-01 -1.20371886e-01 -3.14012825e-01\\n3.71581227e-01 -1.54690430e-01 -6.32148609e-02 1.87064335e-01\\n4.92909774e-02 -1.41704366e-01 -3.54002953e-01 -5.26341796e-02\\n-6.77675083e-02 -2.72011817e-01 2.24790182e-02 5.44886068e-02\\n2.30423007e-02 9.18038487e-02 -6.41231537e-01 -2.59519279e-01\\n-3.70577097e-01 -1.36464879e-01 6.05459474e-02 -4.06165242e-01\\n-7.19771814e-03 -2.43115455e-01 -5.08729041e-01 3.12501460e-01\\n-1.52167618e-01 -6.12368062e-02 1.29368410e-01 -1.86031926e-02\\n-3.38812530e-01 -1.43787354e-01 1.72038361e-01 2.12686807e-01\\n-1.90134749e-01 -2.45225310e-01 -6.90236315e-03 -9.48936105e-01\\n2.63559222e-01 6.96840957e-02 -5.90149388e-02 6.70466796e-02\\n-8.20579305e-02 -5.02433956e-01 4.20484990e-02 -2.45780870e-01\\n-4.88119647e-02 -6.54559508e-02 -1.70542791e-01 -3.09080750e-01\\n1.63309529e-01 4.86135744e-02 -1.76059514e-01 3.76858473e-01\\n-2.54886627e-01 3.37606966e-01 -1.74028859e-01 1.24853589e-01\\n-4.68346067e-02 -2.64775485e-01 1.21227831e-01 -3.95226657e-01\\n-3.04573298e-01 -2.68926442e-01 -2.87620753e-01 -8.67350623e-02\\n-6.72607794e-02 -3.75910968e-01 -8.34767520e-02 5.13966903e-02\\n3.13785464e-01 6.10060282e-02 -1.98247522e-01 -1.33502781e-01\\n5.25810085e-02 -4.64486420e-01 9.12550539e-02 -1.92676485e-01\\n-1.73895940e-01 -2.49000192e-01 7.88600743e-02 8.82867947e-02\\n9.44015235e-02 -4.52759236e-01 3.18505019e-01 -4.72650528e-01\\n-3.44332010e-01 3.19315791e-02 1.08638421e-01 -2.77879211e-04\\n2.26243556e-01 -6.36145651e-01 -5.29601984e-02 3.44418228e-01\\n3.73442955e-02 1.43426269e-01 1.79681614e-01 6.59289584e-02\\n-1.56176254e-01 5.03025413e-01 -3.77994627e-01 1.57835856e-01\\n6.76617265e-01 1.94615185e-01 9.04326439e-02 2.02199653e-01\\n2.41869867e-01 2.28584290e-01 4.34639335e-01 2.75169723e-02\\n-1.40130043e-01 3.57404202e-01 8.63722339e-02 -5.21435082e-01\\n9.08175558e-02 -5.83806820e-02 -2.21434265e-01 -3.74654621e-01\\n5.82979560e-01 4.81091022e-01 -3.73153001e-01 -2.67565161e-01\\n-1.54125467e-01 -1.63160309e-01 9.49131176e-02 -4.87394966e-02\\n1.22190110e-01 -1.01871140e-01 4.77060080e-01 -7.94293266e-03\\n1.63796276e-01 5.06234646e-01 -1.96373418e-01 -2.95528829e-01\\n-7.23967031e-02 2.18754247e-01 5.17512523e-02 5.22099614e-01\\n-2.22554386e-01 2.80208409e-01 -1.29283980e-01 7.60024413e-02\\n-2.95411679e-03 1.02971815e-01 1.43006876e-01 4.96926792e-02\\n2.08075568e-01 1.48340210e-01 3.60450745e-01 4.11220938e-01\\n2.46804267e-01 4.52805132e-01 2.90908277e-01 1.95370689e-01\\n4.36399400e-01 5.30742228e-01 3.54871094e-01 2.17710450e-01\\n5.94713818e-03 1.90790165e-02 3.82518135e-02 4.77323942e-02\\n1.22484751e-01 3.67271483e-01 -8.02629516e-02 8.28208685e-01\\n3.24884623e-01 2.72329867e-01 7.00516045e-01 -6.25356734e-01\\n-3.43920738e-01 9.88996699e-02 3.82427454e-01 -3.12486112e-01\\n-5.35572879e-02 -1.00730192e-02 -2.91328222e-01 2.47359931e-01\\n-4.77453232e-01 -1.91047952e-01 -1.02697305e-01 7.03876168e-02\\n1.35260731e-01 -1.33510992e-01 -1.59943417e-01 1.31121697e-02\\n-1.32905036e-01 -1.76041886e-01 -4.78650063e-01 -4.91851196e-02\\n-3.11595023e-01 -1.68124542e-01 -1.05133489e-01 -1.66497186e-01\\n3.25378738e-02 -3.15359682e-01 -8.25505480e-02 1.63022764e-02\\n2.44506553e-01 1.00539392e-02 -2.46262960e-02 -1.22546427e-01\\n3.11628491e-01 2.08940044e-01 4.26822841e-01 5.91963977e-02\\n6.23763017e-02 -6.38823807e-02 -1.00719534e-01 2.76032630e-02\\n2.01331258e-01 6.56931603e-04 6.25892058e-02 3.43713731e-01\\n-3.67006779e-01 -2.41843566e-01 1.46109834e-01 3.03246707e-01\\n-4.72136945e-01 5.44743575e-02 -2.64433138e-02 2.48385042e-01\\n7.14161023e-02 1.35532573e-01 -1.43465176e-01 7.89320469e-02\\n-1.63069949e-01 -4.16778326e-01 2.55888999e-01 8.72666668e-03\\n-8.73213336e-02 1.41284257e-01 3.25685501e-01 2.35620111e-01\\n-2.56643116e-01 -8.01307708e-02 2.60741767e-02 1.93498850e-01\\n1.03545673e-01 2.20185369e-01 -1.38164043e-01 -2.05041096e-01\\n-3.33934516e-01 7.60411471e-02 -2.14568183e-01 1.04026228e-01\\n-4.91582863e-02 2.00165018e-01 8.51589441e-02 9.58588198e-02\\n2.37540409e-01 -2.62203161e-02 -1.54669806e-01 -2.68375009e-01\\n-2.62612641e-01 -2.86973100e-02 1.23977803e-01 -1.27375126e-02\\n2.49295339e-01 -4.17605788e-01 -7.42888302e-02 -1.24017663e-01\\n-1.24933548e-01 -3.02232504e-01 1.03322759e-01 -4.79193442e-02]]',\n", + " 'job_description': \"In this role you will advise our clients during the conception, planning and implementation of data analytics projects. You will work with the project team to provide our clients the high quality and reliability we are known for. Your tasks will include: Requirements' analytics and solution design. Data modelling; architecture design; data extraction and transformation. Data visualization and reporting. Implementation of machine learning models. Presenting your results to middle and top management What you bring: Domain knowledge in at least one industry Down-to-earth and pragmatic results-oriented attitude while advising your clients. Experience in working with large data sets and databases. Knowledge in relevant technologies and programming languages (e.g. SQL, Python, Hadoop, Spark, Tableau, Microsoft BI). Excellent communication skills in German and English. To be successful in this role you will need to: Strive to understand your clients' needs. Deliver outstanding results with high business value in a comprehensible form. Have the intellectual agility required to get the job done in an easy-to-do-business-with way. Value clever and creative team play. Are you interested to join a great team with proven track record and to work in projects that will constantly challenge you? We are happy to receive your application: Direct Phone: +41 44 435 10 10 e-Mail: hanspeter.graenicher@d-one.ai D ONE Solutions AG Hans Peter Gränicher Sihlfeldstrasse 58 8003 Zürich\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Planning\", \"Reliability\", \"Presentations\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Tableau (Business Intelligence Software)\", \"Advising\", \"KM Programming Language\", \"Agility\", \"Analytics\", \"Data Modeling\", \"Industrialization\", \"Python (Programming Language)\", \"Data Extraction\", \"Track (Rail Transport)\", \"Architectural Design\", \"E (Programming Language)\", \"Data Transformation\", \"Data Visualization\", \"Machine Learning Methods\", \"Minimum Data Set\", \"Receivables\", \"Solution Design\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer - .net developer w/m',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.01657408e-01 2.30316505e-01 5.26042521e-01 -8.72600079e-02\\n4.53993380e-01 -1.98693052e-01 -4.32159677e-02 4.65722531e-01\\n-1.48710459e-01 -3.88769388e-01 -1.91301897e-01 -3.22442859e-01\\n-7.62060061e-02 1.10869899e-01 2.56091684e-01 3.47763777e-01\\n3.33220124e-01 1.18078180e-01 -2.80989975e-01 2.60545522e-01\\n1.94182679e-01 2.88035795e-02 8.21112022e-02 7.07120717e-01\\n3.54223788e-01 4.11188267e-02 -8.30323398e-02 -8.85845050e-02\\n-2.78669566e-01 -2.18544230e-01 3.54387879e-01 -1.13285892e-01\\n9.43706837e-03 -3.22178423e-01 3.10933106e-02 2.85002198e-02\\n-1.44600525e-01 -4.73411791e-02 5.77373095e-02 7.23253414e-02\\n-5.18574059e-01 -2.85762548e-01 9.77040604e-02 1.04219258e-01\\n-1.26700684e-01 -2.94646025e-01 1.31777346e-01 5.10048755e-02\\n-7.62825226e-03 1.76417325e-02 -6.26534224e-01 3.51388305e-01\\n-1.37516931e-01 -1.61844820e-01 2.68187255e-01 5.19277930e-01\\n9.07676667e-02 -4.50406134e-01 -3.79254997e-01 -2.19055891e-01\\n1.39114901e-01 -6.55782670e-02 1.14454091e-01 -1.67829424e-01\\n4.26876605e-01 4.10379702e-03 -1.53040802e-02 3.15018803e-01\\n-6.47643447e-01 -6.51689023e-02 -1.40244767e-01 -9.32807848e-02\\n-3.80440384e-01 -6.90393150e-02 -1.61267996e-01 -1.86128616e-01\\n-1.57983258e-01 3.76804471e-01 2.10373942e-02 6.85177967e-02\\n-1.69157624e-01 2.39717484e-01 -1.01084098e-01 1.99774280e-01\\n2.34521732e-01 3.20394963e-01 1.94464326e-01 3.26440394e-01\\n-4.34007525e-01 4.29572970e-01 1.73872471e-01 -3.14605385e-01\\n2.68397987e-01 8.12376440e-02 4.69510794e-01 -6.63764775e-04\\n-2.89315172e-02 5.91853261e-02 -1.55917436e-01 1.95396334e-01\\n1.83167130e-01 -2.79840797e-01 5.58342924e-03 -4.80667055e-02\\n-1.07893668e-01 7.28609413e-02 -3.61531787e-02 2.64011979e-01\\n-3.36755455e-01 3.47040176e-01 1.94233999e-01 -1.80412635e-01\\n-1.41463339e-01 -6.26322746e-01 -6.01723269e-02 4.15914170e-02\\n8.80032256e-02 1.40708074e-01 3.84188771e-01 1.16005167e-01\\n2.81707048e-01 -7.74355186e-03 2.41218403e-01 9.65571523e-01\\n-4.74150740e-02 1.07582688e-01 -2.76836783e-01 4.63726968e-01\\n1.14230432e-01 -2.82994151e-01 1.59000471e-01 2.51056403e-01\\n8.21049288e-02 -5.54673411e-02 -1.60506502e-01 3.05519760e-01\\n-1.55198360e-02 -1.57149702e-01 -2.81945586e-01 7.26208910e-02\\n-2.24192902e-01 -4.12770182e-01 5.26985168e-01 1.16957948e-01\\n1.21497825e-01 -1.62992656e-01 -6.64501591e-03 -1.71597436e-01\\n-7.73010999e-02 2.91583210e-01 -5.16703166e-03 1.44726664e-01\\n-3.10260117e-01 -1.66110381e-01 -1.79787949e-01 2.85868943e-01\\n-8.10527653e-02 1.28754824e-01 -5.21859489e-02 -1.62502185e-01\\n3.78315240e-01 7.79769644e-02 -3.39269757e-01 2.55399853e-01\\n-1.87735632e-02 -1.86854005e-01 -8.24888498e-02 1.77755430e-01\\n-1.45436704e-01 1.77360132e-01 -2.99099693e-03 -1.59789100e-01\\n4.00778800e-01 1.08157024e-01 2.41037488e-01 -8.32973868e-02\\n3.35556924e-01 -2.23514304e-01 1.19611971e-01 1.30593076e-01\\n-6.25571430e-01 3.50767910e-01 -4.21801992e-02 -2.29649469e-01\\n9.87343118e-02 8.38403329e-02 4.01858002e-01 -2.06678331e-01\\n1.82592683e-02 -2.28926122e-01 -3.76924276e-01 -3.97141963e-01\\n-2.18826801e-01 -2.89369700e-03 3.97470921e-01 -4.26047057e-01\\n-8.48829001e-02 1.33379266e-01 -4.62853640e-01 -5.70487529e-02\\n1.54725134e-01 2.35626012e-01 -3.24324286e-03 7.60859177e-02\\n-1.41524315e-01 -5.09381235e-01 -3.49010644e-03 -4.50809926e-01\\n-4.86829937e-01 5.03723435e-02 -2.36261696e-01 2.75848210e-01\\n7.04765841e-02 -5.20541742e-02 -1.09029301e-01 1.82467371e-01\\n-2.19011903e-01 2.38632932e-02 1.98784277e-01 1.13973178e-01\\n3.25975686e-01 -4.55042906e-03 -4.06870842e-01 5.26638925e-01\\n-2.47084171e-01 4.39072043e-01 1.11540489e-01 -8.62606168e-01\\n5.28003752e-01 2.48369306e-01 3.06366738e-02 -4.21203971e-01\\n6.95800781e-01 -2.86491513e-01 4.32357490e-02 1.74495146e-01\\n-4.44431126e-01 -2.48281032e-01 2.98005164e-01 -1.40056849e-01\\n-2.04928413e-01 6.21417522e-01 1.27516091e-01 -4.95990328e-02\\n1.78120956e-01 -2.57954895e-01 -1.56515077e-01 1.92018244e-02\\n-8.06622505e-02 -3.19092661e-01 -4.05395478e-01 3.80146466e-02\\n-1.01809837e-01 -4.17731792e-01 -2.30812058e-01 -4.69049394e-01\\n-1.55004919e-01 -3.93153608e-01 -2.32734516e-01 4.07873452e-01\\n1.60260320e-01 8.18269253e-02 2.64743790e-02 -1.81194380e-04\\n-1.10518225e-01 -4.83779132e-01 -6.53129295e-02 3.62274945e-02\\n5.01109958e-01 2.79971659e-01 8.92833024e-02 2.73971411e-04\\n-1.14397459e-01 4.87327367e-01 -1.84871808e-01 -2.12629586e-01\\n1.37901425e-01 1.89772755e-01 9.74273309e-03 -8.47181585e-03\\n1.16365952e-02 3.24117631e-01 -1.43951297e-01 -3.57133821e-02\\n-1.18272565e-01 7.76449144e-02 3.41947585e-01 -2.78005321e-02\\n-2.86080629e-01 -1.93823889e-01 8.93855281e-03 3.27466756e-01\\n-5.47079623e-01 -1.95203200e-01 5.30026436e-01 2.14526981e-01\\n1.23824030e-01 2.05431223e-01 2.03975216e-01 -1.29122138e-01\\n-1.45172358e-01 -2.84640193e-01 1.59101963e-01 1.02967583e-01\\n1.81799874e-01 5.56185506e-02 -9.27492827e-02 -5.30307472e-01\\n-3.47864795e+00 -2.21044689e-01 7.52913281e-02 -3.34521145e-01\\n1.27890781e-01 -1.61596462e-01 1.15579637e-02 -7.93188959e-02\\n-2.88460523e-01 1.16560817e-01 -2.06608340e-01 -1.59368202e-01\\n1.86076507e-01 2.10269094e-01 1.30117182e-02 2.95698315e-01\\n2.01134309e-02 -1.17637962e-01 -1.05754500e-02 2.47143000e-01\\n-2.29296297e-01 -7.16016412e-01 2.09988266e-01 -1.09744065e-01\\n1.80342078e-01 3.02353233e-01 -4.32897776e-01 -1.82762668e-01\\n-1.96550995e-01 -2.67577052e-01 1.68055788e-01 -2.68152297e-01\\n-7.09383935e-02 3.81940663e-01 1.73063174e-01 -8.92019570e-02\\n1.43478513e-01 -3.20594817e-01 -3.08055058e-02 -4.85928386e-01\\n1.94170386e-01 -6.12210691e-01 -5.52832037e-02 -2.24623755e-02\\n6.88734412e-01 -3.89870226e-01 2.27409959e-01 1.69976309e-01\\n2.13257432e-01 2.59818673e-01 -3.58176641e-02 -9.12822559e-02\\n-2.17227474e-01 -3.35270166e-01 -3.78949642e-02 -2.29675874e-01\\n4.11398321e-01 6.01249933e-01 -1.26634508e-01 7.15008527e-02\\n1.40247047e-02 -1.86520129e-01 -3.93612623e-01 -3.71801317e-01\\n-2.04945609e-01 -1.79050490e-01 -6.16498411e-01 -3.83029193e-01\\n-1.35347635e-01 -1.33216962e-01 -1.25852257e-01 6.14490092e-01\\n-2.44769752e-01 -4.28459883e-01 5.69914617e-02 -5.85926533e-01\\n1.43331140e-01 -2.82705218e-01 -6.41627163e-02 -1.94557354e-01\\n-3.09480935e-01 -5.03614187e-01 9.93304178e-02 5.06230630e-02\\n-1.18170395e-01 -1.20080650e-01 9.96291414e-02 -3.15063119e-01\\n-2.71412045e-01 -4.22720760e-01 4.33024794e-01 1.73821226e-01\\n3.42947215e-01 1.56143218e-01 2.25925952e-01 2.15346172e-01\\n2.74255693e-01 -1.82794109e-01 1.23248592e-01 -4.69160557e-01\\n1.29776895e-01 6.87053800e-02 4.86953706e-01 -2.07567602e-01\\n-3.05376090e-02 1.39112726e-01 -1.63504586e-01 -1.01614945e-01\\n3.60747784e-01 2.60422993e-02 -3.13207367e-03 -9.00996253e-02\\n3.19215596e-01 -5.20843327e-01 -1.69356793e-01 8.80354941e-02\\n-7.25154653e-02 5.89414954e-01 -5.49721196e-02 -3.76794934e-01\\n-2.66839206e-01 4.94782120e-01 -5.85391708e-02 -1.56812772e-01\\n-1.05907381e-01 2.18588755e-01 -1.65321618e-01 1.30275801e-01\\n-2.15784367e-02 -2.94437289e-01 -3.67575526e-01 -4.00124863e-02\\n-5.17578758e-02 1.65222615e-01 2.54662424e-01 5.76269068e-02\\n-2.38845591e-02 -3.60036224e-01 -1.58335660e-02 9.85415876e-02\\n3.61271858e-01 4.21312064e-01 1.17894366e-01 -1.05998643e-01\\n5.57792410e-02 2.79089570e-01 -1.48224354e-01 2.46851549e-01\\n-1.94381893e-01 1.50626488e-02 -4.15307850e-01 -3.39877933e-01\\n-1.93253696e-01 -3.39001805e-01 2.73951888e-02 2.59762317e-01\\n2.18290761e-01 1.39832934e-02 -1.97436893e-03 -4.34294939e-01\\n3.72914881e-01 -1.42825218e-02 1.90003067e-01 1.57943472e-01\\n7.91264400e-02 5.56112766e-01 1.52871171e-02 1.07662287e-02\\n-1.51287407e-01 -5.66689298e-02 -1.49415433e-01 -1.85012564e-01\\n8.68122429e-02 -2.75461316e-01 -7.65203536e-02 4.16148633e-01\\n8.19613114e-02 -4.18476760e-01 -5.35611957e-02 3.66258353e-01\\n1.63969565e-02 -2.66350508e-01 -1.59743309e-01 1.54506087e-01\\n2.45470434e-01 1.17358617e-01 1.99685410e-01 -4.57636237e-01\\n-8.44222903e-02 8.59304816e-02 8.80188029e-03 4.32779789e-01\\n9.22154933e-02 1.69989437e-01 -7.78091177e-02 -3.54519725e-01\\n3.06295246e-01 -2.19712734e-01 -9.55667049e-02 -5.89797124e-02\\n1.66751444e-02 -1.22725308e-01 -4.78102893e-01 1.26251578e-02\\n-1.00458845e-01 -2.04753175e-01 -3.46274227e-02 7.36821517e-02\\n1.83986962e-01 6.98039215e-03 -4.16574866e-01 -2.69577563e-01\\n-3.43822837e-01 -4.97456305e-02 -1.73592614e-03 -3.06948841e-01\\n2.68069445e-03 -6.63644001e-02 -6.32181644e-01 2.35883236e-01\\n-2.22123325e-01 -2.98697669e-02 1.35699525e-01 3.24799083e-02\\n-4.05016124e-01 -4.21436615e-02 1.90183878e-01 1.27946869e-01\\n-2.61944354e-01 -2.62508035e-01 1.52523324e-01 -1.00188899e+00\\n9.55086276e-02 -2.13378090e-02 -8.59925449e-02 3.44850682e-03\\n-6.64010197e-02 -5.69378734e-01 1.08484477e-01 -3.78643245e-01\\n-7.40260854e-02 -2.36359835e-02 -1.77935869e-01 -3.82951349e-01\\n6.66894987e-02 -7.95539990e-02 -2.78036922e-01 4.15881753e-01\\n-3.99640292e-01 3.00654590e-01 -1.09746747e-01 5.15957139e-02\\n-3.69774527e-03 -2.46386111e-01 1.61697209e-01 -2.61516273e-01\\n-4.01421487e-01 -7.71443620e-02 -3.94240409e-01 -2.76821703e-01\\n3.57873850e-02 -1.53610215e-01 -1.86638400e-01 5.67276217e-02\\n3.73638779e-01 2.47095488e-02 -1.59127712e-01 -2.94166416e-01\\n9.39259678e-02 -4.03371543e-01 1.43163174e-01 -1.32697701e-01\\n-8.23514313e-02 -4.85573411e-02 1.66207984e-01 4.88710515e-02\\n2.04997882e-02 -3.80417973e-01 4.43856895e-01 -2.50555933e-01\\n-3.48599523e-01 9.30380728e-03 3.47732529e-02 1.22084141e-01\\n3.03717852e-01 -6.10043049e-01 8.09883233e-03 3.31897169e-01\\n1.84408203e-01 1.27481028e-01 2.00592205e-01 -6.08587563e-02\\n-2.08650157e-01 3.51026207e-01 -4.32103574e-01 5.26391529e-02\\n7.39688993e-01 1.03679873e-01 4.80277278e-02 2.23765269e-01\\n2.68755585e-01 2.79728711e-01 4.53116268e-01 -6.14792705e-02\\n-1.08761452e-01 2.46584654e-01 4.00902778e-02 -5.60584128e-01\\n-8.19079801e-02 -1.13639809e-01 -2.35606298e-01 -4.45130467e-01\\n5.28547227e-01 4.19264525e-01 -3.58696282e-01 -2.11495176e-01\\n-1.49978608e-01 -1.95933655e-02 2.14915201e-01 -1.91650569e-01\\n2.85303332e-02 -1.09086350e-01 5.22689521e-01 2.33817622e-02\\n3.44725966e-01 5.76641798e-01 -1.00705497e-01 -4.19857830e-01\\n-1.46472007e-01 7.99509585e-02 1.97171360e-01 3.88619274e-01\\n-5.48314080e-02 2.21585870e-01 -4.78931982e-03 1.48326591e-01\\n-4.92946617e-02 1.34689555e-01 1.30722765e-02 3.48390117e-02\\n1.78639799e-01 4.74532433e-02 3.11515361e-01 4.28870976e-01\\n2.12452784e-01 5.22460938e-01 2.77625203e-01 1.18570812e-01\\n4.00064975e-01 6.08640611e-01 3.78539920e-01 1.62183523e-01\\n-6.17025681e-02 1.15506850e-01 -3.20145972e-02 -1.32013381e-01\\n3.20725799e-01 2.34900519e-01 1.06777489e-01 8.96721423e-01\\n4.49434876e-01 3.10035318e-01 8.22513819e-01 -5.25242031e-01\\n-4.49845880e-01 8.07984248e-02 4.30306405e-01 -3.32671404e-01\\n-9.97834131e-02 1.33153394e-01 -2.08684355e-01 2.31077909e-01\\n-4.54648018e-01 -9.72831920e-02 -4.57446463e-02 -3.57262604e-02\\n7.16367364e-02 -1.18041195e-01 -3.09559584e-01 -3.28844264e-02\\n-1.96422726e-01 -1.37569100e-01 -4.35113788e-01 -1.13557264e-01\\n-3.07073414e-01 -1.60342231e-01 -1.84387580e-01 -1.41903803e-01\\n-4.31750268e-02 -3.27618837e-01 -1.70762718e-01 6.36838377e-02\\n3.12531412e-01 -5.77795990e-02 -5.97471707e-02 -2.34154075e-01\\n2.49766469e-01 2.59165406e-01 5.31386673e-01 -3.04018054e-02\\n1.72598854e-01 -1.49280891e-01 -2.80146003e-01 2.45943945e-02\\n1.28066838e-01 4.25493345e-02 1.01034142e-01 4.06463742e-01\\n-3.15971553e-01 -1.21132933e-01 1.78289935e-01 4.70815331e-01\\n-3.65720093e-01 -1.82724502e-02 -5.54929627e-03 2.99797535e-01\\n1.42836750e-01 6.46017864e-02 -2.51224697e-01 1.06767423e-01\\n-3.01643193e-01 -5.51688313e-01 3.36228400e-01 -1.55969128e-01\\n-5.94274607e-03 9.92349982e-02 3.02237481e-01 2.23221362e-01\\n-1.66063339e-01 -6.45069033e-03 -2.30027214e-02 3.03805888e-01\\n1.61926821e-01 3.61758471e-01 -2.70284951e-01 -1.81942612e-01\\n-2.39786342e-01 1.87577620e-01 -2.68125266e-01 1.32000387e-01\\n-1.61910027e-01 3.24789643e-01 4.35116850e-02 1.38164937e-01\\n1.37695134e-01 4.01956551e-02 -2.39966556e-01 -2.63764739e-01\\n-3.34358811e-01 -2.49595091e-01 1.14812411e-01 -1.49073293e-02\\n2.13729322e-01 -3.78666103e-01 -4.26807813e-02 -1.60440341e-01\\n-1.12145901e-01 -2.99565375e-01 6.32503927e-02 -1.10410452e-01]]',\n", + " 'job_description': 'Über unseren Kunden With already 25 000 consultants around the world and revenues of CHF. 2 Bn., our client is already the global leader in innovation and high-tech engineering consulting. In Switzerland, our client employs more than 200 consultants and aims towards large growth. We operate particularly in Life Sciences (Pharma, Biotech, and Medical Devices), Industry (Watches, MEMs), Aerospace, Automotive, Energy, Railways, Finance and Telecoms sectors. Our client deploys activities throughout Switzerland with premises in Zürich, Basel, Lausanne and Geneva. Ihr Aufgabenbereich Detailed requirements analysis, designing, and developing code. Architecture discussion. Coding, testing, debugging, and documenting programs. Revising and updating programs. Integration and deployment scripts. Participating in production support including investigation and fixing bugs. Ihr Profil Education level: Master or Engineering Degree in Software Engineering (EPFL, ETH, HES or equivalent). Requirements: Minimum 7 years of experience in .NET development. Minimum of 4 years of relevant experience with WPF. Proven experience in UI web technologies: HTML, CSS, Javascript. Professional use of programming languages: .NET / C#, ASP.NET, Web Services (WCF), MVC patterns and Web API. Experience with traditional RDBMS databases, such as SQL Server, Oracle SQL, NoSQL. Extensive experience with a common application server (JBoss, IBM Websphere or BEA Weblogic). Microsoft Prism/ MVVM and unity/ IOC grandly appreciated. Experience with Big Data (Hadoop, Teradata) is a plus. Any experience in mobile development (Android, iOS, Xamarin) is a plus. Ability to work with Agile Methodology (Scrum, XP, TFS etc…) Key qualities: You know how to take initiative You like to work in a multidisciplinary team You value knowledge-sharing You must have strong verbal and writing communication capabilities. Ihre Chance Our client offers an exciting tailored career path for your professional and personal development within an international company. You will be accompanied from the beginning with specific coaching and mentoring programs and intensive training on innovation and management in a fast-moving and results driven environment. Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 384',\n", + " 'soft_skills': '[\"Professionalism\", \"Investigation\", \"Management\", \"Operations\", \"Integration\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"NoSQL\", \"ASP.NET\", \"KM Programming Language\", \"Micro Electro-Mechanical Systems (MEMS)\", \"Cascading Style Sheets (CSS)\", \"Life Sciences\", \"Industrialization\", \"IBM WebSphere MQ\", \"Xamarin.ios\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"High Tech Manufacturing\", \"Scrum (Software Development)\", \"Application Servers\", \"Levelling\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Web Services\", \"Medical Devices\", \"Agile Methodology\", \"Finance\", \"Mobile Application Development\", \"Wcf 4\", \"C# (Programming Language)\", \"Pathing\", \"JavaScript (Programming Language)\", \"Production Support\", \"Revisions\", \"Big Data\", \"Android Software Development\", \"SQL Server Reporting Services\", \"Requirements Analysis\", \"Scripting\", \"Prism\", \"Personality Development\", \"Web UI\", \"Application Programming Interface (API)\", \"Debugging\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'digital humanities analyst in the data analytics center 80 - 100%',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.97839725e-01 2.03282148e-01 4.57758784e-01 2.31721736e-02\\n4.41922903e-01 -9.44348425e-02 -1.66357920e-01 4.15524244e-01\\n-9.94899422e-02 -3.47704291e-01 -1.57185301e-01 -3.31334502e-01\\n-3.76208350e-02 1.60476625e-01 1.13304973e-01 4.86900628e-01\\n3.78952086e-01 -6.94307834e-02 -1.48550749e-01 1.87048733e-01\\n1.51681542e-01 3.16349603e-03 -1.36451721e-02 7.51234889e-01\\n4.72653866e-01 3.20746601e-02 -4.69502099e-02 1.69557393e-01\\n-1.78675085e-01 -1.91202790e-01 5.62506318e-01 8.57219845e-02\\n-1.42072380e-01 -3.00412118e-01 9.24827978e-02 3.44371021e-01\\n-2.00636104e-01 -2.70967126e-01 2.29864903e-02 7.97267854e-02\\n-4.41040158e-01 -1.91069126e-01 -2.37965494e-01 2.27542371e-02\\n-3.50309908e-01 -4.29361343e-01 1.42631605e-01 9.71182361e-02\\n1.61603779e-01 5.10827824e-02 -5.88668346e-01 2.70580173e-01\\n-1.65856197e-01 -2.12274373e-01 2.53023714e-01 6.43492818e-01\\n-2.38953047e-02 -3.95057529e-01 -4.59260553e-01 -3.30381960e-01\\n-1.72343329e-02 -1.51158180e-02 1.06530204e-01 -4.06652510e-01\\n5.30109048e-01 1.37771696e-01 -8.48935172e-02 3.60666335e-01\\n-8.70414495e-01 -2.31998622e-01 -2.49640450e-01 1.06247917e-01\\n-4.01315272e-01 1.38170635e-02 -3.49981844e-01 -3.15011561e-01\\n-9.77272540e-02 3.48676234e-01 -4.56297323e-02 8.48935470e-02\\n-1.50769114e-01 3.83265853e-01 -1.34776369e-01 2.97508121e-01\\n1.75920248e-01 3.20248246e-01 2.26851523e-01 2.07420662e-01\\n-4.63456452e-01 3.17057639e-01 3.31210680e-02 -2.94900149e-01\\n2.09270269e-01 2.40344614e-01 5.13346672e-01 4.71914336e-02\\n2.72691995e-01 3.33840549e-02 -2.88106024e-01 3.16454500e-01\\n2.04042375e-01 -3.42801392e-01 9.63281319e-02 -3.58792134e-02\\n-7.06714764e-02 7.60663599e-02 -1.05673838e-02 4.53561991e-02\\n-6.09169602e-01 3.75595182e-01 2.67908350e-03 -1.58787653e-01\\n-8.79743099e-02 -5.78828990e-01 -1.18864961e-02 2.12201148e-01\\n1.33984298e-01 1.17273308e-01 -1.67802535e-02 2.41522282e-01\\n1.79568887e-01 -1.06115803e-01 1.65516302e-01 8.07570398e-01\\n-1.93574458e-01 6.93967938e-02 -8.77811909e-02 3.69679689e-01\\n2.85553392e-02 -4.23375010e-01 3.72173250e-01 1.66696280e-01\\n1.47536486e-01 -1.60192505e-01 -2.21737653e-01 2.10768580e-01\\n-1.02621108e-01 -2.44725764e-01 -4.07228589e-01 3.52735728e-01\\n-6.39251545e-02 -5.11123359e-01 5.85763335e-01 -1.58788607e-01\\n1.61477983e-01 -1.53014019e-01 -2.32108757e-02 -4.14367877e-02\\n3.04523744e-02 2.02035785e-01 1.03373587e-01 6.25162572e-02\\n-3.70641440e-01 -1.96546465e-01 -1.76214248e-01 1.44554630e-01\\n-3.94253433e-01 3.46107125e-01 -2.77639516e-02 -1.91245992e-02\\n2.88132370e-01 -1.27225414e-01 -4.13404524e-01 1.45572305e-01\\n-1.35641754e-01 -1.58740088e-01 -3.58848982e-02 3.75430703e-01\\n-2.79190332e-01 3.02087963e-01 -6.62438720e-02 -3.63020629e-01\\n5.06644845e-01 -2.99692247e-02 1.74868926e-01 -6.30716011e-02\\n2.63867646e-01 -5.88055234e-03 2.18989938e-01 9.86774415e-02\\n-8.50338936e-01 3.49346042e-01 -1.07766554e-01 -2.80362099e-01\\n5.06685451e-02 -1.97396465e-02 3.30034435e-01 -3.21426153e-01\\n5.89419007e-02 -6.42187297e-02 -2.27274507e-01 -2.69480586e-01\\n-3.77991408e-01 -1.29038040e-02 4.27148968e-01 -3.37305993e-01\\n-7.86660388e-02 1.96485281e-01 -6.25683784e-01 -8.53458270e-02\\n1.53348893e-02 4.42641079e-02 2.45085448e-01 1.49424195e-01\\n-3.47394794e-02 -6.01169229e-01 -7.69234523e-02 -4.36854452e-01\\n-2.34692797e-01 1.56718343e-01 -3.78010511e-01 2.32460007e-01\\n8.45240131e-02 3.04279216e-02 -5.60140125e-02 9.41180214e-02\\n-2.59714723e-01 1.28728122e-01 2.52971351e-01 -1.75122824e-02\\n4.61306810e-01 1.41035855e-01 -2.95259178e-01 5.48637867e-01\\n-4.71854582e-02 6.19645715e-01 1.29855767e-01 -6.28013551e-01\\n6.59658074e-01 5.05762875e-01 4.68987972e-02 -3.25339139e-01\\n7.68128514e-01 -2.83223391e-01 -2.92918384e-01 1.65608674e-01\\n-5.14964402e-01 -2.23803148e-01 3.06720376e-01 -3.42530459e-01\\n-1.45377010e-01 6.38197184e-01 7.88412839e-02 1.94863975e-01\\n2.85508573e-01 -3.30855370e-01 -1.64832637e-01 2.42636949e-01\\n-2.09254950e-01 -4.35726702e-01 -5.16793966e-01 -7.59917498e-03\\n-2.55701900e-01 -4.85330224e-01 -2.78886646e-01 -2.91416705e-01\\n-6.89049289e-02 -2.69286692e-01 -6.35428168e-03 2.38189474e-01\\n2.82440722e-01 1.34248823e-01 -5.63910529e-02 4.12518159e-03\\n-1.03016064e-01 -4.85689759e-01 -1.79713871e-02 -9.52350348e-02\\n2.86369920e-01 1.26579016e-01 3.43163982e-02 -7.90149942e-02\\n1.37211233e-01 5.73075652e-01 -5.84195018e-01 -3.34056079e-01\\n1.84173137e-01 8.63061473e-02 -1.74994320e-01 -1.79357827e-01\\n1.65925980e-01 2.14681625e-01 -4.89294350e-01 2.36191656e-02\\n-2.18533874e-01 8.47693458e-02 2.58045703e-01 -1.18727222e-01\\n2.47671790e-02 -2.97602504e-01 -1.08112559e-01 2.34762341e-01\\n-3.55729580e-01 -3.31424534e-01 4.28193152e-01 8.79608840e-02\\n1.65552586e-01 4.14605364e-02 1.05902284e-01 6.98109344e-03\\n-4.64558959e-01 -3.65258187e-01 1.76834911e-01 1.87703073e-01\\n8.93373862e-02 2.25004360e-01 -3.85753438e-02 -4.29801345e-01\\n-2.97006321e+00 -1.20514147e-02 1.08839050e-02 9.29999352e-03\\n1.95052743e-01 -1.15004204e-01 4.16815430e-02 -1.23449035e-01\\n-3.80567968e-01 -5.01050539e-02 -2.71044731e-01 -3.92933011e-01\\n4.97401133e-02 3.35161388e-01 1.87319934e-01 1.47584677e-01\\n3.30383740e-02 -4.03107345e-01 3.47363278e-02 4.30083454e-01\\n-2.11297572e-01 -7.50987291e-01 9.93367136e-02 -3.35091241e-02\\n2.69419491e-01 3.66537452e-01 -4.76413131e-01 -9.96919796e-02\\n-3.81115437e-01 -3.29553992e-01 3.04191947e-01 -3.54013771e-01\\n-4.56665680e-02 4.89190996e-01 3.19775879e-01 7.09388778e-02\\n1.10126115e-01 -2.98029125e-01 -2.25445583e-01 -4.65501130e-01\\n1.21632442e-01 -4.97096360e-01 2.35772766e-02 -1.15157112e-01\\n7.51887083e-01 -2.76041567e-01 1.92009658e-01 1.00343421e-01\\n1.14336535e-01 1.37572050e-01 -4.24213707e-04 8.32470208e-02\\n-2.44320378e-01 -2.55055130e-01 -1.12340942e-01 -2.63278484e-01\\n5.07935882e-01 4.91459727e-01 -2.08212122e-01 -7.92953223e-02\\n2.09508955e-01 -2.62773871e-01 -4.63757157e-01 -3.95969480e-01\\n-2.78754771e-01 -1.33341134e-01 -6.45274639e-01 -4.01768029e-01\\n4.63470593e-02 -1.02489501e-01 6.15675114e-02 6.19157553e-01\\n-3.90587091e-01 -2.04787642e-01 -8.94299969e-02 -6.33294821e-01\\n3.31500888e-01 -2.90391326e-01 3.46274376e-02 -2.00247139e-01\\n-1.11889683e-01 -6.12142563e-01 4.56473976e-02 4.32971083e-02\\n1.30561506e-03 -3.03783089e-01 1.63931012e-01 -2.85740286e-01\\n-3.44258308e-01 -5.61016023e-01 3.38302851e-01 1.03064612e-01\\n2.96363562e-01 2.52782196e-01 7.81585127e-02 -1.79427210e-03\\n3.46496791e-01 4.57926840e-02 -1.67936683e-02 -3.46176982e-01\\n2.94862002e-01 -1.90979615e-02 3.09889853e-01 -2.16374382e-01\\n-1.02507882e-01 9.74719971e-03 -2.48431191e-01 -4.01569009e-02\\n2.88809747e-01 5.31984903e-02 6.08766824e-02 -2.22539574e-01\\n3.19650590e-01 -4.34009731e-01 6.08789064e-02 1.92614824e-01\\n-1.72492117e-03 6.05186820e-01 -5.86025305e-02 -2.38766223e-01\\n-8.57798755e-02 4.80718851e-01 -1.72797963e-03 4.21107635e-02\\n2.18078196e-02 1.07435077e-01 -2.88552433e-01 1.06772713e-01\\n-4.23813909e-02 -2.04617038e-01 -3.17730963e-01 -1.22531995e-01\\n-1.82051063e-01 3.97886217e-01 3.53840470e-01 1.88222259e-01\\n-2.31014550e-01 -4.34725106e-01 3.91736105e-02 2.57847488e-01\\n4.10631508e-01 3.77911627e-01 1.38896987e-01 -2.27474421e-01\\n1.69252828e-01 3.08361143e-01 -9.06293243e-02 2.65904546e-01\\n-3.24394882e-01 1.24399081e-01 -4.95665908e-01 -2.86723018e-01\\n-2.84621626e-01 -1.46148488e-01 3.25219899e-01 2.96007633e-01\\n1.51401579e-01 -7.36839846e-02 1.50143117e-01 -2.72507995e-01\\n2.48669773e-01 1.56053245e-01 2.26447463e-01 5.85983917e-02\\n-7.12468475e-02 5.67989707e-01 -1.46982223e-01 -1.07785322e-01\\n-1.09254107e-01 2.85234638e-02 -2.09108412e-01 -2.65359759e-01\\n6.61356226e-02 -4.97383118e-01 -2.00035959e-01 2.67794907e-01\\n7.90464580e-02 -1.37982711e-01 -1.29964396e-01 2.09096849e-01\\n5.47843799e-02 -3.50601554e-01 -2.40064442e-01 8.10104087e-02\\n4.01892036e-01 2.74959773e-01 2.22558677e-01 -5.03484249e-01\\n-2.37021614e-02 9.08606946e-02 6.02189600e-02 3.52470994e-01\\n5.49344048e-02 7.51139000e-02 -3.55250895e-01 -3.55526865e-01\\n3.26167643e-01 -3.39047074e-01 -8.37545022e-02 1.24669380e-01\\n8.31517801e-02 -2.45652385e-02 -2.89011329e-01 6.34702668e-02\\n-9.12078246e-02 -2.74305522e-01 -1.79037042e-02 4.21383530e-02\\n1.22272059e-01 2.33907122e-02 -6.98000610e-01 -1.94172323e-01\\n-2.31136940e-02 1.00494072e-01 6.33256957e-02 -4.53127801e-01\\n4.15804982e-02 -2.88301051e-01 -5.83226681e-01 2.67912447e-01\\n-1.47577584e-01 -1.06480390e-01 2.92169333e-01 -7.06374571e-02\\n-2.66304642e-01 -1.00740433e-01 1.69492215e-01 2.52557456e-01\\n-3.12819511e-01 -2.52103835e-01 5.99954724e-02 -9.74468291e-01\\n1.88507199e-01 -6.37885034e-02 -1.42693073e-01 -2.11588070e-02\\n1.73460022e-02 -6.16057158e-01 -9.71931592e-03 -3.99431735e-01\\n-3.52068767e-02 -5.50746992e-02 -2.31360286e-01 -3.54470968e-01\\n1.15608722e-01 -2.17495188e-02 -1.70105204e-01 5.36921144e-01\\n-3.46183568e-01 2.38170534e-01 -1.35824218e-01 -6.71739876e-03\\n-3.61174420e-02 -3.22353214e-01 1.18808806e-01 -1.62800670e-01\\n-2.05654413e-01 -3.28690439e-01 -1.38044626e-01 -2.80113757e-01\\n2.28425823e-02 -4.32275832e-01 -8.15214291e-02 1.26637042e-01\\n1.91753894e-01 -1.13568947e-01 -1.50392279e-01 -1.97103977e-01\\n1.89986184e-01 -4.42584872e-01 3.86951678e-02 -1.25428721e-01\\n-1.10668197e-01 -1.76650211e-01 9.93330479e-02 8.28452632e-02\\n2.27986842e-01 -2.27211371e-01 4.87475753e-01 -4.71976250e-01\\n-4.36416417e-01 -7.29777291e-02 -9.58951190e-03 -6.45556599e-02\\n2.53315181e-01 -4.84042078e-01 -7.40155280e-02 4.82327461e-01\\n1.52576402e-01 -5.50091416e-02 2.55581558e-01 -2.45580062e-01\\n-6.58557564e-02 3.12620461e-01 -4.03221488e-01 3.67199257e-02\\n8.40993285e-01 2.49334246e-01 1.28654242e-01 2.11116701e-01\\n8.55128765e-02 2.45977521e-01 4.63480324e-01 -2.19783466e-02\\n1.00108795e-03 3.43899161e-01 2.94983804e-01 -3.82973969e-01\\n-1.46712571e-01 1.27218254e-02 2.64183134e-02 -2.89457232e-01\\n5.83864927e-01 3.41880977e-01 -4.08931345e-01 -2.33558834e-01\\n-1.10325903e-01 -4.61398996e-02 3.32327068e-01 -5.91730066e-02\\n-7.68257752e-02 -1.02152348e-01 3.74737024e-01 -1.73514709e-04\\n2.32624710e-01 5.60415983e-01 -1.49872899e-01 -1.67286992e-01\\n-1.12972878e-01 2.66451836e-01 1.33506246e-02 4.62470889e-01\\n-1.12591684e-01 4.56022799e-01 -9.65078026e-02 1.01750985e-01\\n-9.47275013e-02 1.08993556e-02 2.30811819e-01 2.88120527e-02\\n1.10992648e-01 2.54665822e-01 3.20932955e-01 4.77082431e-01\\n3.58495772e-01 3.85886133e-01 1.64076984e-01 -2.12940816e-02\\n5.00574470e-01 4.67228562e-01 4.85258818e-01 8.27486441e-02\\n2.20619645e-02 1.05808213e-01 1.84864968e-01 9.45418403e-02\\n2.90726751e-01 2.49961495e-01 5.75216813e-03 9.09219027e-01\\n3.20189476e-01 4.20216590e-01 7.15586066e-01 -5.92704356e-01\\n-3.65265489e-01 7.41613097e-03 5.75024009e-01 -4.33654487e-01\\n1.70254037e-02 1.16624199e-02 -1.25711083e-01 2.31449693e-01\\n-5.04573405e-01 -6.57651797e-02 4.19789404e-02 1.98177427e-01\\n7.18580335e-02 -1.25397533e-01 -2.05348402e-01 5.27934283e-02\\n-2.03777254e-01 -2.48889148e-01 -4.12840247e-01 -2.35743403e-01\\n-2.29828849e-01 -2.11751565e-01 -8.59645158e-02 9.57268570e-03\\n-3.86135951e-02 -2.32322127e-01 8.79256800e-03 -5.04584908e-02\\n5.10381937e-01 -1.78735495e-01 -1.85036361e-01 -3.51595916e-02\\n3.96167040e-01 3.03518444e-01 6.08836889e-01 -6.91532344e-02\\n4.28764187e-02 -2.10007817e-01 -2.05825523e-01 1.06701300e-01\\n4.66006137e-02 5.93298562e-02 6.52587339e-02 2.81524330e-01\\n-2.45961964e-01 -1.97541326e-01 1.19807705e-01 2.81259537e-01\\n-4.56618249e-01 4.15864494e-03 -8.30285996e-02 1.06568843e-01\\n1.21095665e-02 2.48734713e-01 -2.77378380e-01 1.58298045e-01\\n-1.31113082e-01 -5.88781178e-01 2.27823243e-01 -3.49737071e-02\\n-1.69621676e-01 -1.77738070e-02 3.01293552e-01 2.77971834e-01\\n-1.80337235e-01 -3.86687033e-02 -2.56299973e-04 8.00667554e-02\\n9.61814225e-02 3.62784535e-01 -2.19374090e-01 -3.29033434e-01\\n-3.78675222e-01 1.25232294e-01 -2.45594621e-01 -2.79767159e-02\\n-1.23073086e-01 4.38219607e-01 -5.11055067e-03 1.38456360e-01\\n3.60675097e-01 1.78231765e-02 -1.96221635e-01 -2.64424503e-01\\n-1.14319265e-01 -2.40162373e-01 -9.71437246e-02 -3.97335179e-02\\n2.05281019e-01 -3.24257672e-01 -2.83863068e-01 -3.70698571e-01\\n4.30823537e-04 -2.67759681e-01 9.73825529e-02 -1.76419690e-02]]',\n", + " 'job_description': \"80 - 100% The University of Basel is the oldest university in Switzerland, and ranked among the best universities in the world due to its research achievements. It counts over 12'000 students and 4'300 researchers in 7 faculties active in domains from humanities and social sciences to natural sciences. The University of Basel is promoting the growing area of Data Science by establishing a university-wide Data Analytics Center (DAC). The goal of the DAC is the advancement of research and the development of transdisciplinary synergies at the University of Basel and its partners. The service and support activities of the DAC will be provided by the Center for Scientific Computing (sciCORE) and the Digital Humanities Lab (DHLab) in collaboration with the Department of Mathematics and Computer Science (DMI). We invite applications for a data analysis support specialist (80-100%) to support quantitative research in humanities and social sciences. Your position The successful candidate will provide consulting and execute data analysis in research projects in various domains of humanities and social sciences. The primary mandate is to support research groups in need of data analysis by applying appropriate statistical, computational, and visualization methods, helping with semantic mappings, and making fundamental methodological advances. The position will involve hands-on data analysis and contributions to teaching (postgraduate courses). This position will be hosted at the DHLab. Your profile Our ideal candidate has a strong and diversified experience (postdoctoral level) in data analysis, in particular with applications involving analysis of large and complex data sets, using machine learning, deep learning, and other advanced statistics. Experience with various database concepts (eg SQL, NoSQL, SPARQL, GraphDB), semantic technologies, and knowledge of R and Python are required. Previous work with text, music, visual, survey, and other data, and familiarity with image analysis tools (eg ImageJ, Fiji) and at least one state of the art deep learning framework will be an asset. Given the important service aspect of the position, we expect our candidate to be flexible, proactive, capable of following several projects in parallel and to have a curiosity for humanities and social sciences in general. We offer you At the DHLab, you will be part of a highly efficient and motivated team of diverse data analysts, data infrastructure managers, and scholarly IT specialists. As a member of the DAC you will also join forces with support scientists at sciCORE and DMI. External collaborations and co-authorship in publications can be expected. We support our team members in their own training, networking and career development. You will have the opportunity to contribute in shaping the organization and development of this data analysis platform. The initial contract is for 2 years, with the possibility of renewal into a permanent contract. The University of Basel is an equal opportunity and family friendly employer committed to excellence through diversity. Application / Contact We look forward to receiving your complete application via the university's online application portal (see button below). Applications should include a curriculum vitae, list of publications indicating the five most significant papers, a link to your code repository or portfolio of data analysis projects, and names of three potential referees. Applications by email cannot be considered. For further information, please contact Prof. Gerhard Lauer gerhard.lauer@unibas.ch. The position will remain open until filled.\",\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Proactivity\", \"Friendliness\", \"Team Motivation\", \"Teaching\", \"Curiosity\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"NoSQL\", \"Tooling\", \"Surveys\", \"GraphDB\", \"Social Sciences\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"Natural Sciences\", \"Activism\", \"Python (Programming Language)\", \"SPARQL Protocol And RDF Query Language (SPARQL)\", \"Levelling\", \"Image Analysis\", \"Computational Statistics\", \"Executable\", \"Hosting\", \"Quantitative Research\", \"Data Science\", \"Spatial Data Infrastructures\", \"Scientific Computing\", \"Equalization\", \"R (Programming Language)\", \"Deep Learning\", \"Survey Data Analysis\", \"Semantic Technology\", \"Receivables\", \"Humanism\", \"Data Infrastructure\", \"Digital Humanities\", \"Semantics\", \"Logistics Support Activity\", \"Career Development\", \"Centering\", \"Mapping\", \"ImageJ\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Corsican']\"},\n", + " {'company_id': '42',\n", + " 'job_title': 'data science course developer and instructor',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.31003404e-01 2.87446916e-01 4.94195759e-01 6.79244250e-02\\n5.64721525e-01 -1.02165639e-01 4.63781841e-02 4.17711139e-01\\n-7.86895026e-03 -1.81509703e-01 -1.69008210e-01 -1.56376541e-01\\n3.87024619e-02 9.05360281e-02 1.98915392e-01 4.50523078e-01\\n2.97633052e-01 -7.17932507e-02 -1.61911964e-01 3.28495532e-01\\n-1.14688650e-03 -7.13254437e-02 -6.84413910e-02 6.87404990e-01\\n4.78520870e-01 2.86109541e-02 -3.75124589e-02 1.10322885e-01\\n-1.47137582e-01 -2.81869173e-01 3.99212688e-01 3.04904729e-02\\n-1.61513850e-01 -2.38729075e-01 9.89310518e-02 2.52619147e-01\\n-2.68172622e-01 -4.40887362e-02 -6.21260703e-02 1.07455179e-01\\n-4.28696990e-01 -9.98428613e-02 -8.82593393e-02 -2.95048654e-02\\n-3.36095423e-01 -4.59531635e-01 1.23026274e-01 -1.03290364e-01\\n6.20834529e-04 3.56055982e-02 -5.44778466e-01 4.39761668e-01\\n-1.35730311e-01 -3.23014051e-01 3.48975986e-01 5.84638894e-01\\n7.79360309e-02 -5.13422489e-01 -3.21158171e-01 -3.31188142e-01\\n6.59009721e-03 5.93345836e-02 1.15059242e-01 -3.75322759e-01\\n4.96265441e-01 8.32695663e-02 -4.39235568e-02 3.97756755e-01\\n-7.78272510e-01 -2.35683382e-01 -3.41741920e-01 1.29232705e-01\\n-3.44521642e-01 2.37830169e-03 -3.91830802e-01 -2.45640427e-01\\n1.63414627e-02 3.84141773e-01 -6.83548227e-02 4.40262854e-02\\n-1.23958021e-01 2.64283866e-01 -1.14724994e-01 2.09460616e-01\\n3.27660590e-01 3.17478418e-01 2.95925975e-01 2.99240679e-01\\n-3.36664617e-01 3.62148643e-01 1.13312185e-01 -2.17115283e-01\\n1.24307819e-01 2.11683840e-01 4.31248993e-01 1.87687218e-01\\n1.50911048e-01 1.53862894e-01 -2.32318550e-01 1.65267810e-01\\n1.69952616e-01 -2.85433382e-01 1.50708668e-02 -2.91850828e-02\\n-6.49369285e-02 2.32493188e-02 4.04293649e-02 1.53170526e-01\\n-5.29954433e-01 4.79164362e-01 3.15189660e-02 -1.90203995e-01\\n-8.29056203e-02 -5.52888751e-01 -8.88060406e-02 1.47114713e-02\\n4.15727496e-02 2.62016594e-01 7.30043054e-02 3.13638538e-01\\n1.30986143e-02 -1.51458740e-01 2.40085617e-01 7.60027170e-01\\n-1.57077052e-02 1.18302830e-01 -1.73196539e-01 4.49522197e-01\\n4.53876257e-02 -3.54664773e-01 2.35938966e-01 1.83367893e-01\\n1.85337484e-01 -1.62932038e-01 -3.32049310e-01 2.12812752e-01\\n-1.30193219e-01 -3.13953817e-01 -3.05071682e-01 3.67583811e-01\\n-9.63264704e-02 -5.59503555e-01 5.49102426e-01 -1.52608782e-01\\n1.64712220e-01 -1.32861838e-01 -2.31593736e-02 3.95092741e-02\\n-1.56337053e-01 3.02273095e-01 1.50976658e-01 1.20659783e-01\\n-2.98055291e-01 -3.08659792e-01 -1.96123838e-01 2.65830427e-01\\n-3.97287637e-01 2.62330770e-01 -1.97699696e-01 -1.30176604e-01\\n2.88997024e-01 -6.02837205e-02 -4.32466149e-01 2.54582226e-01\\n-7.92892277e-02 -1.96949750e-01 -1.07964709e-01 3.17084491e-01\\n-1.42670602e-01 3.16312104e-01 -2.24624202e-03 -1.57518834e-01\\n4.68530953e-01 5.68536371e-02 1.38920397e-01 -1.02147304e-01\\n2.06417650e-01 -5.25677670e-03 2.32270628e-01 3.01019233e-02\\n-6.43658340e-01 4.09293622e-01 -1.09456345e-01 -2.97767371e-01\\n-4.08874303e-02 -1.50237292e-01 3.31880569e-01 -3.79536033e-01\\n4.65717167e-04 -1.45743906e-01 -3.56840432e-01 -3.50888908e-01\\n-2.01974750e-01 -1.14973783e-01 4.52212751e-01 -4.27399337e-01\\n9.45922360e-02 2.22599894e-01 -5.37195325e-01 -1.23387374e-01\\n2.97544003e-01 8.47045630e-02 6.77325875e-02 2.33672291e-01\\n-7.03923553e-02 -5.14224112e-01 -4.27636094e-02 -4.16508973e-01\\n-2.77256638e-01 7.71398544e-02 -3.21874738e-01 1.69385105e-01\\n1.93832219e-02 -1.50709487e-02 -9.84589159e-02 6.42232150e-02\\n-1.65622771e-01 4.97380123e-02 9.71125215e-02 -5.45912758e-02\\n2.30918497e-01 1.93136297e-02 -1.97713226e-01 4.39587384e-01\\n-2.11931899e-01 5.41410089e-01 1.45848036e-01 -8.10549021e-01\\n5.28569579e-01 2.77768672e-01 -4.51245718e-02 -2.41261035e-01\\n7.39533186e-01 -3.20774376e-01 -1.63611829e-01 1.56835362e-01\\n-4.16375458e-01 -3.16235721e-01 1.60609156e-01 -3.13360482e-01\\n-2.06963629e-01 6.12386465e-01 1.25713557e-01 2.32652530e-01\\n4.03849721e-01 -1.11201078e-01 -1.04214594e-01 2.36096784e-01\\n-2.40118563e-01 -2.02499196e-01 -4.21709120e-01 -7.41359293e-02\\n-7.04286620e-02 -4.49054301e-01 -3.17267209e-01 -4.42634791e-01\\n-2.91957378e-01 -3.96939814e-01 -6.42217696e-02 2.50998020e-01\\n2.07913980e-01 2.01460689e-01 1.54263079e-02 6.43064827e-02\\n-1.18345097e-01 -6.37192667e-01 -5.80030754e-02 -9.48312357e-02\\n2.17214629e-01 2.88922399e-01 1.09871648e-01 -2.80857608e-02\\n7.18850642e-02 5.33952177e-01 -4.43083733e-01 -3.52276981e-01\\n1.43731043e-01 -3.41168158e-02 -1.34080365e-01 -2.08319008e-01\\n1.28986448e-01 2.80030161e-01 -3.40612769e-01 9.30138007e-02\\n-1.54915869e-01 1.20617636e-01 3.02432775e-01 7.27178603e-02\\n-1.25599757e-01 -2.00926438e-01 -8.47024284e-03 3.65366161e-01\\n-4.12218034e-01 -3.61807942e-01 5.99732041e-01 7.80156255e-02\\n1.18444875e-01 4.18116376e-02 2.26424098e-01 -2.46811528e-02\\n-3.18066865e-01 -1.72062218e-01 1.90257668e-01 1.89887315e-01\\n1.10512070e-01 2.02621102e-01 -6.62798136e-02 -6.14492416e-01\\n-3.18385983e+00 -8.61737430e-02 -1.67051069e-02 -1.92723364e-01\\n2.39218771e-01 -1.29859582e-01 8.22698027e-02 -1.07965037e-01\\n-4.14822221e-01 -2.70293895e-02 -2.17805147e-01 -2.28288263e-01\\n8.19297358e-02 3.85564774e-01 2.39353925e-01 1.86116964e-01\\n8.12619403e-02 -3.68545115e-01 8.30439329e-02 4.98793602e-01\\n-9.36334580e-02 -7.01775908e-01 6.26224130e-02 6.69893250e-02\\n2.83887416e-01 3.23210418e-01 -5.26340306e-01 -2.38852426e-01\\n-3.12092900e-01 -2.80221283e-01 2.10756958e-01 -3.86381745e-01\\n-1.72962710e-01 4.48824584e-01 9.95500535e-02 4.05636504e-02\\n5.87340295e-02 -2.62101620e-01 -6.64476901e-02 -4.69732016e-01\\n-3.31405997e-02 -6.56451523e-01 -5.14652692e-02 -3.78488936e-02\\n6.86620593e-01 -2.11389363e-01 3.25228274e-01 5.51153086e-02\\n7.28892758e-02 1.39639884e-01 -2.61269584e-02 9.90545750e-02\\n-2.92601109e-01 -2.81413078e-01 -7.97173157e-02 -1.76129609e-01\\n5.94293475e-01 4.62888837e-01 -1.74475625e-01 -9.64998156e-02\\n2.02523828e-01 -2.70842910e-01 -5.52999735e-01 -4.25574601e-01\\n-2.45930806e-01 -1.98182940e-01 -7.88998723e-01 -5.10514379e-01\\n-5.61938658e-02 -1.18425049e-01 4.63105626e-02 4.43936169e-01\\n-3.89748812e-01 -1.80228293e-01 8.12264532e-03 -5.86206794e-01\\n2.84453034e-01 -1.44447714e-01 5.68003207e-02 -1.34094924e-01\\n-2.32928395e-01 -5.02791464e-01 7.84028023e-02 1.07144251e-01\\n-1.11958057e-01 -6.18842505e-02 1.16104342e-01 -2.17904970e-01\\n-3.98076981e-01 -6.96210086e-01 4.54196572e-01 1.61440179e-01\\n1.34510443e-01 1.35202885e-01 2.07859769e-01 7.85832107e-02\\n3.90064806e-01 2.54892502e-02 1.38828993e-01 -4.29984510e-01\\n2.47982219e-02 -3.06629743e-02 4.02588964e-01 -1.94618955e-01\\n-2.06989963e-02 6.78396598e-03 -2.51226455e-01 6.94036065e-03\\n4.17739093e-01 -9.44852158e-02 1.74487412e-01 -1.45302534e-01\\n1.39832675e-01 -2.54261374e-01 -1.97133183e-01 1.78750902e-01\\n-2.44119726e-02 6.37957454e-01 4.84285727e-02 -2.96111226e-01\\n-1.83989078e-01 4.06624973e-01 -1.03491440e-01 1.06324360e-01\\n-1.14361838e-01 1.07965115e-02 -1.13639295e-01 2.26097092e-01\\n6.32814690e-03 -2.29853064e-01 -1.67530030e-01 -1.03326030e-01\\n-1.67624801e-01 3.45799804e-01 3.06102186e-01 7.44168386e-02\\n-1.31888464e-01 -4.19050545e-01 6.11352101e-02 2.02490836e-01\\n2.27408141e-01 3.46232533e-01 2.17084378e-01 -2.62052476e-01\\n1.57809108e-01 2.41022632e-01 -2.24834099e-01 3.58709395e-01\\n-3.27698976e-01 1.40017599e-01 -4.59648341e-01 -3.53705525e-01\\n-1.59235373e-01 -3.21067572e-01 2.04159558e-01 3.19351524e-01\\n9.36602131e-02 -1.24226846e-01 1.36843532e-01 -5.41144371e-01\\n3.42686653e-01 2.55275778e-02 2.30696529e-01 7.25103468e-02\\n-1.55540816e-02 5.59400797e-01 -1.03322394e-01 -3.79271992e-02\\n-1.06634706e-01 4.86414880e-02 -2.10675210e-01 -3.90113890e-01\\n5.61406016e-02 -4.34974164e-01 -7.01125711e-02 3.43674898e-01\\n1.24531008e-01 -1.02742791e-01 -2.14574218e-01 1.47091269e-01\\n1.29260905e-02 -4.60658789e-01 -2.65020430e-01 1.03339208e-02\\n3.30072194e-01 2.72616327e-01 1.80884808e-01 -4.21812057e-01\\n-3.45458612e-02 1.31012034e-02 -3.48735079e-02 3.44659895e-01\\n8.04558992e-02 7.84783624e-03 -2.75114387e-01 -2.66711593e-01\\n4.26875234e-01 -7.12953135e-02 1.60423405e-02 1.33486569e-01\\n1.16424210e-01 -3.65866244e-01 -3.21741432e-01 1.17537603e-02\\n3.60114798e-02 -2.38814622e-01 3.28370482e-02 -2.55134702e-03\\n-4.12586592e-02 -1.92796066e-03 -5.01938939e-01 -1.73700452e-01\\n-2.62251377e-01 2.47539151e-02 -4.25445922e-02 -4.84438837e-01\\n-1.03477359e-01 -8.45399201e-02 -4.78408545e-01 3.24578911e-01\\n-7.54589364e-02 -4.08388488e-03 2.66001642e-01 6.85392320e-03\\n-2.75628924e-01 -1.97211534e-01 1.45273089e-01 1.68522149e-01\\n-3.61477971e-01 -1.93662807e-01 -1.88592784e-02 -9.13697183e-01\\n2.30780602e-01 7.34619796e-04 -1.30102113e-01 1.14888728e-01\\n9.00049880e-03 -6.27413511e-01 2.22236872e-01 -4.12425697e-01\\n-4.07999456e-02 -2.87149735e-02 -2.23103702e-01 -2.82468796e-01\\n6.39857650e-02 6.13548942e-02 -1.07640043e-01 4.35628623e-01\\n-4.00332510e-01 3.74657094e-01 8.19728971e-02 1.06386468e-02\\n-1.59918904e-01 -2.67904371e-01 5.36289960e-02 -2.39711642e-01\\n-3.67745280e-01 -1.97629690e-01 -1.61681235e-01 -1.51367560e-01\\n-1.62558127e-02 -3.10942918e-01 -1.54078826e-01 1.17232010e-01\\n2.54405946e-01 6.74248785e-02 -1.74289107e-01 -1.56861693e-01\\n9.81979668e-02 -3.45012128e-01 -5.12079746e-02 -2.54509568e-01\\n-1.13212653e-02 -2.04012573e-01 2.25431740e-01 5.33511117e-03\\n1.44774482e-01 -3.43914270e-01 4.25892055e-01 -3.54899168e-01\\n-3.81795228e-01 -3.53643000e-02 1.31507635e-01 -8.38504732e-02\\n2.15190947e-01 -4.23771977e-01 -5.41227385e-02 3.39055508e-01\\n-2.85973027e-02 -8.61832686e-03 2.21703887e-01 -2.31929719e-01\\n-2.18692869e-01 1.73777089e-01 -3.89788270e-01 1.94179967e-01\\n8.58984709e-01 2.69429833e-01 1.48479342e-01 1.45986468e-01\\n1.14385545e-01 3.34845066e-01 4.85574484e-01 -7.07897451e-03\\n-1.16384089e-01 3.96379948e-01 2.58972526e-01 -4.79876667e-01\\n-1.34310648e-01 6.23641536e-04 -1.68905511e-01 -2.82857746e-01\\n6.90891862e-01 2.92142093e-01 -2.81745821e-01 -4.34327185e-01\\n-1.75447688e-01 -2.91182548e-01 2.97718614e-01 3.33137065e-03\\n1.02814306e-02 -7.26098344e-02 4.79893923e-01 3.35310400e-03\\n1.25662729e-01 5.35032868e-01 -1.41155511e-01 -3.38911176e-01\\n8.04195926e-03 2.44172409e-01 4.27544042e-02 4.43400502e-01\\n-2.36339092e-01 4.19066727e-01 -7.80524313e-02 2.27583759e-03\\n1.07888654e-02 8.14306587e-02 3.95104021e-01 7.91760236e-02\\n2.06190109e-01 2.54388928e-01 4.74944651e-01 4.31850851e-01\\n1.58284724e-01 4.55922425e-01 2.55144954e-01 3.37174833e-02\\n3.56650561e-01 4.56913739e-01 3.33302408e-01 -3.67294401e-02\\n5.12746796e-02 3.48897129e-02 1.58293694e-01 1.08111128e-01\\n2.48586968e-01 2.12416649e-01 7.25527704e-02 9.13609803e-01\\n3.57241154e-01 3.72504264e-01 7.28808343e-01 -7.61793256e-01\\n-3.27026904e-01 5.32085150e-02 5.70715249e-01 -4.33401942e-01\\n1.28699243e-01 1.84380561e-01 -1.05722584e-01 2.93921590e-01\\n-5.10548830e-01 -2.21536309e-01 1.84942968e-04 2.96176821e-02\\n-1.20779239e-02 -9.69720483e-02 -1.42002270e-01 6.79766014e-02\\n-1.47011489e-01 -2.78763354e-01 -3.97299111e-01 -2.41472989e-01\\n-1.20626703e-01 -1.28143042e-01 -5.78667969e-02 7.42304139e-04\\n-2.61438608e-01 -1.76344335e-01 -1.73801705e-01 -1.02797128e-01\\n3.96288931e-01 -1.09615475e-01 -1.73398629e-01 -7.74025172e-02\\n4.07509685e-01 1.36152208e-01 6.84605718e-01 -6.96344748e-02\\n5.31440899e-02 -8.30524415e-02 -2.20333874e-01 5.32005429e-02\\n7.67487437e-02 1.05184637e-01 8.83577615e-02 3.42193663e-01\\n-2.16098249e-01 -2.27679521e-01 1.33761302e-01 2.99429834e-01\\n-3.77693832e-01 -9.13020372e-02 -2.64691301e-02 1.78979427e-01\\n-4.85778861e-02 1.48235008e-01 -2.30030924e-01 1.14248127e-01\\n-9.73087400e-02 -6.75089240e-01 2.55484819e-01 -4.51960899e-02\\n-1.62146091e-01 2.38817662e-01 2.58304209e-01 3.01353931e-01\\n-9.96685475e-02 -5.06766327e-02 -1.98560376e-02 1.02724440e-01\\n8.07037354e-02 3.17278266e-01 -1.60176188e-01 -3.63899529e-01\\n-2.77845025e-01 1.61062956e-01 -1.36460155e-01 1.73935249e-01\\n-1.15606241e-01 3.75124216e-01 8.20528418e-02 2.34001011e-01\\n3.11237812e-01 2.16130167e-03 -2.31036037e-01 -2.60388970e-01\\n-2.55011141e-01 -2.74485201e-01 -9.32161957e-02 2.63668932e-02\\n1.97524130e-01 -2.90817380e-01 -2.17477620e-01 -4.10406113e-01\\n-8.84455368e-02 -3.03146005e-01 -1.63367447e-02 2.11844333e-02]]',\n", + " 'job_description': 'The EPFL Extension School is looking for a Data Science Course Developer and Instructor to join our team. Here’s what you’ll get to do in this role: Develop data science and advanced analytics activities, including applications of mathematical modeling, statistical analysis and machine learning techniques (through exercises, public posts, capstone project guidance); Guide learners in acquiring hands-on data science experience using Python (NumPy, Pandas, Scipy, Scikit-Learn, Matplotlib, Seaborn); Apply technical expertise and leadership skills to design, develop, manage and grade learner projects using real-world large datasets and relational databases; Design and lead workshops and hackathons, and participate in conferences to promote the EPFL Extension School, data science and digital skills to a wide audience; Collaborate with partners from academia and the private sector to identify opportunities for development of new courses and workshops as well as learner course projects and capstone projects; Manage additional course development and other activities to support the growth of the EPFL Extension School The audience for the EPFL Extension School courses extends to a large, general public and the knowledge level of the learners will range from novice (no prior experience with Python and/or in data science) to intermediate (strong familiarity, possibly but not necessarily university or post-graduate level knowledge) to advanced (practitioners in the field, seeking to learn specific skills). The course developer should be able to adapt his/her approach and output accordingly. We expect a solid, demonstrable and practical background in all domains of data science relevant to beginner- and intermediate-level learners. In particular, we expect you to be have extensive hands-on experience with the most common tools, methods, and applications of all stages of the data science pipeline (i.e. data mining, data cleaning, data analysis, data visualisation), using Python. You will have advanced knowledge of Python and all relevant data science libraries. You will also have a proven ability to explain basic and difficult concepts in data/data science clearly and effectively to a wide audience. The ideal candidate also has experience with a variety of methods / models / tools relevant to data analytics, statistics and/or machine learning. Additional required qualifications: Background in computer science, data science, statistics, the physical sciences or other quantitative field (academic or equivalent professional experience); Previous experience with data science projects; Previous teaching/TA experience; Excellent communications and relationship management / « people » skills; Excellent written verbal presentation skills and the ability to communicate both to business and technical audiences, with a wide variety of skills / skill levels; Strong organisational skills; Good team player; Self-starter, capable of autonomous time management and work; Ability to rapidly and independently acquire new skills Fluent English, both written and spoken; Comfortable with developer tools: git, the command line, code editors, etc.; Previous experience in time series analysis, natural language processing, or advanced statistics a plus; Start-up experience a plus.',\n", + " 'soft_skills': '[\"Leadership\", \"Adaptability\", \"Professionalism\", \"Collaboration\", \"Self Starter\", \"Management\", \"Communications\", \"Presentations\", \"Teaching\", \"Time Management\", \"Relationship Management\"]',\n", + " 'hard_skills': '[\"Matplotlib\", \"Tooling\", \"Qualitative Data Analysis\", \"Natural Language Processing\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Physical Science\", \"Scikit-learn (Machine Learning Library)\", \"Staging\", \"Activism\", \"NumPy\", \"Apex Data Loader\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Levelling\", \"Course Development\", \"Library\", \"Apple Developer Tools\", \"Dataset\", \"Line Coding (Telecommunication)\", \"Pipelining\", \"Alexa Skills Kit\", \"Code Editor\", \"Data Science\", \"Time Series\", \"Cleaned Data\", \"Management Development\", \"Relational Databases\", \"Mathematical Modeling\", \"Additives\", \"Command-Line Interface\", \"Git Flow\", \"SciPy\", \"Digital Skills\", \"Pandas (Python Package)\", \"Seaborn\"]',\n", + " 'languages': \"['English', 'Sinhala']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software application engineer .net / c#',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.53553978e-01 3.90445173e-01 3.90613288e-01 -6.49642274e-02\\n5.53104520e-01 -2.09021449e-01 2.15495348e-01 2.15363488e-01\\n-1.99421316e-01 -3.65535349e-01 -4.39568646e-02 -2.48759329e-01\\n9.06753540e-02 1.29868194e-01 1.03467099e-01 4.41503346e-01\\n3.63091230e-01 9.72218961e-02 -2.10440114e-01 2.97523022e-01\\n7.40847886e-02 -8.11275467e-02 2.07283851e-02 6.83373570e-01\\n4.38039601e-01 1.28034413e-01 8.25111493e-02 3.51412371e-02\\n-1.93219468e-01 -2.55194992e-01 4.63934153e-01 -8.74674355e-04\\n-1.70563370e-01 -2.87624925e-01 7.11264089e-02 7.86211062e-03\\n-1.54815048e-01 -1.27763942e-01 4.96145897e-02 1.20220073e-01\\n-3.31331611e-01 -1.61639407e-01 -5.45307435e-03 1.68143865e-02\\n-2.28574082e-01 -3.83061022e-01 -2.60542985e-02 -3.37093361e-02\\n1.07569449e-01 4.41658013e-02 -4.55335885e-01 3.13770920e-01\\n-1.78462431e-01 -2.78706849e-01 1.36942595e-01 3.99644047e-01\\n-1.20442063e-01 -4.24682349e-01 -2.84226209e-01 -3.25756162e-01\\n7.39554390e-02 -1.86544016e-01 1.21467270e-01 -2.49816000e-01\\n3.93100023e-01 1.41588032e-01 3.19296569e-02 4.69857454e-01\\n-7.03983307e-01 -8.54936838e-02 -1.85963362e-01 -7.65719488e-02\\n-2.89621174e-01 -1.05932631e-01 -3.54157031e-01 -2.18415558e-01\\n-1.42138362e-01 2.50514746e-01 1.12565011e-02 1.86440237e-02\\n-1.52524918e-01 3.25138390e-01 -1.57426581e-01 2.54003882e-01\\n2.06518531e-01 3.39489698e-01 2.23312184e-01 3.52060676e-01\\n-4.48270917e-01 3.05918068e-01 1.20439857e-01 -2.83740222e-01\\n2.69722581e-01 1.88435521e-02 5.91445029e-01 -2.03822665e-02\\n2.15307221e-01 9.80166048e-02 -2.23314822e-01 3.06501329e-01\\n1.07935525e-01 -2.77511567e-01 -3.08873653e-02 -1.26469135e-01\\n-8.91891718e-02 4.23141792e-02 1.34597927e-01 2.67811775e-01\\n-3.78625304e-01 5.11529267e-01 1.30837753e-01 -3.24509114e-01\\n-1.28174976e-01 -5.02595425e-01 -7.33001754e-02 -6.17924444e-02\\n-3.89990732e-02 1.62796795e-01 1.66891932e-01 2.02716336e-01\\n1.66332901e-01 9.99237373e-02 1.80139989e-01 9.49373007e-01\\n-3.86471041e-02 -1.13293184e-02 -3.14557314e-01 2.46110186e-01\\n1.60030097e-01 -3.66964549e-01 2.40701482e-01 2.26993963e-01\\n1.53124973e-01 -1.42853275e-01 -1.65530890e-01 2.42334008e-01\\n-7.17697442e-02 -1.35590032e-01 -3.67451280e-01 1.06573224e-01\\n-1.86630204e-01 -3.69279116e-01 5.34559906e-01 5.35667129e-03\\n1.09615371e-01 -1.83981329e-01 -2.76042167e-02 8.47757235e-02\\n-1.83180124e-01 1.35771379e-01 -9.07441229e-03 1.46386966e-01\\n-3.40269983e-01 -2.40399510e-01 -1.87309176e-01 3.39651048e-01\\n-2.89403856e-01 1.99522540e-01 -2.61484087e-02 -6.72335029e-02\\n3.45085025e-01 -8.82712156e-02 -1.80922762e-01 3.57273698e-01\\n-6.92982525e-02 -1.70331091e-01 -1.46371335e-01 3.86943072e-01\\n-6.16992600e-02 2.94650406e-01 7.23315850e-02 -2.19021112e-01\\n5.50205886e-01 -1.45014431e-02 8.09850618e-02 -1.42292112e-01\\n2.06616402e-01 -1.96250051e-01 1.01546235e-01 1.12815596e-01\\n-6.46559179e-01 1.49658889e-01 -2.64226198e-01 -2.08982870e-01\\n2.78665274e-01 7.06989169e-02 1.56045288e-01 -2.48070091e-01\\n-9.60363355e-03 -7.09180757e-02 -2.67133594e-01 -4.03992742e-01\\n-1.41754299e-01 4.92209233e-02 4.93731350e-01 -3.28192353e-01\\n-2.44424522e-01 1.07402228e-01 -4.72397655e-01 -3.88859585e-02\\n2.93170482e-01 2.02477917e-01 -9.70876869e-03 2.56309897e-01\\n-1.67871624e-01 -5.00311792e-01 1.12704746e-01 -4.14410770e-01\\n-4.52869862e-01 1.24749867e-02 -1.86720461e-01 1.32896334e-01\\n1.89605415e-01 -1.16931893e-01 -1.05711639e-01 1.28776222e-01\\n-1.84016272e-01 -2.81453468e-02 7.48490691e-02 1.37394816e-01\\n2.98799843e-01 -1.53343022e-01 -4.05980200e-01 3.20070028e-01\\n-9.11417156e-02 4.59242702e-01 1.30052850e-01 -7.66007066e-01\\n4.43137467e-01 1.59129784e-01 4.50827591e-02 -3.31960797e-01\\n5.87839842e-01 -2.90288836e-01 -3.42663340e-02 -7.55031267e-03\\n-3.61705333e-01 -1.88449264e-01 1.98101431e-01 -1.41419291e-01\\n-2.04096332e-01 5.12813330e-01 1.48286015e-01 1.62055865e-01\\n3.45324039e-01 -2.76120484e-01 -1.29864022e-01 -1.03968317e-02\\n-2.01198816e-01 -2.09822267e-01 -5.66197395e-01 -1.08629480e-01\\n-1.98341124e-02 -3.76597255e-01 -1.48414925e-01 -3.54718000e-01\\n-3.70843001e-02 -2.84213901e-01 -1.68722704e-01 2.43491754e-01\\n2.94634730e-01 9.64107439e-02 5.04443944e-02 4.47966009e-02\\n-8.01933110e-02 -6.07583880e-01 -3.29458038e-03 3.08638755e-02\\n4.30501044e-01 1.80790856e-01 -3.72448098e-03 -3.84910479e-02\\n7.86379650e-02 5.54636240e-01 -2.85934746e-01 -3.11936170e-01\\n1.62673622e-01 1.56341359e-01 -8.23797584e-02 -1.33169293e-01\\n-6.34709224e-02 3.41196120e-01 -1.78434461e-01 6.40151799e-02\\n-1.47369221e-01 3.20630446e-02 3.80474895e-01 -5.86268939e-02\\n-3.49103302e-01 -1.58819839e-01 9.99684483e-02 1.92845315e-01\\n-4.61981118e-01 -3.93857390e-01 6.51484966e-01 1.86682895e-01\\n1.02635853e-01 1.42534360e-01 2.61459649e-01 -5.39548956e-02\\n-2.67878652e-01 -2.34662503e-01 6.14664555e-02 7.65158311e-02\\n1.34313509e-01 4.96668145e-02 -1.60424784e-01 -4.10543442e-01\\n-3.78027940e+00 -1.55960307e-01 7.88523033e-02 -2.61027932e-01\\n2.57778406e-01 5.14291460e-03 1.24679413e-02 -4.54271659e-02\\n-4.10346985e-01 6.65893406e-02 -1.98258683e-01 -3.86440046e-02\\n1.96540296e-01 3.08555394e-01 4.26341258e-02 1.91294149e-01\\n1.22414544e-01 -2.30099633e-01 -1.46988183e-01 2.90741831e-01\\n-5.50412759e-02 -5.80290973e-01 2.12266222e-01 -6.47957902e-03\\n3.90219599e-01 2.83627063e-01 -3.70401680e-01 -6.60737157e-02\\n-3.48993748e-01 -3.54344696e-01 5.17024845e-02 -2.13013753e-01\\n-1.47505894e-01 4.29354727e-01 1.78175777e-01 -2.13021740e-01\\n1.24879137e-01 -4.56804872e-01 -3.70496362e-02 -4.07358706e-01\\n1.71409652e-01 -4.47407514e-01 2.81646214e-02 -4.69198339e-02\\n6.27274811e-01 -3.45811009e-01 1.25162363e-01 1.04969241e-01\\n1.83792159e-01 2.93980390e-01 2.17035953e-02 1.21522916e-03\\n-1.31159008e-01 -3.17771316e-01 -9.91558880e-02 -2.05674395e-01\\n5.06366670e-01 3.97588104e-01 -1.85172737e-01 -1.49185747e-01\\n4.49833833e-02 -2.00571254e-01 -3.68749738e-01 -2.52447188e-01\\n-1.80444077e-01 -1.18550368e-01 -6.94089830e-01 -5.17115057e-01\\n-1.36782467e-01 -1.23799339e-01 -1.52189761e-01 5.44175088e-01\\n-2.89450347e-01 -5.00016153e-01 2.72822846e-02 -4.07454878e-01\\n4.02817391e-02 -2.85626531e-01 2.49672849e-02 -5.53542115e-02\\n-2.61747509e-01 -4.62732613e-01 2.09503561e-01 -2.66847201e-02\\n-1.48437724e-01 -7.70433024e-02 1.06215566e-01 -1.99144721e-01\\n-2.53152311e-01 -2.87685722e-01 4.09827322e-01 1.64890870e-01\\n2.40164265e-01 3.57348293e-01 2.15817437e-01 2.76240498e-01\\n1.35987818e-01 -4.92164381e-02 6.21747412e-02 -4.15780187e-01\\n1.09630488e-01 -5.16664647e-02 4.50113744e-01 -1.01492338e-01\\n3.72679681e-02 4.47789244e-02 -1.09062321e-01 -1.79277122e-01\\n4.06253189e-01 8.13164786e-02 1.95978388e-01 -2.03816712e-01\\n3.07629287e-01 -5.04343390e-01 -9.99839827e-02 -4.14882638e-02\\n8.85776579e-02 5.81783831e-01 -8.04193169e-02 -4.60987180e-01\\n-2.06632733e-01 4.64850843e-01 -1.36185568e-02 -2.75183935e-02\\n-3.18742037e-01 1.38714641e-01 -2.54364312e-01 2.10059851e-01\\n1.33365602e-03 -2.19458774e-01 -2.06940800e-01 -2.20148027e-01\\n-3.68551053e-02 1.52936757e-01 2.81965435e-01 1.70206711e-01\\n-1.13374256e-01 -3.76120061e-01 -1.71333164e-01 1.73941165e-01\\n4.27125216e-01 3.79767269e-01 3.25920768e-02 -3.39068770e-01\\n-7.69982561e-02 2.11909994e-01 -1.39228165e-01 2.22622246e-01\\n-2.16892630e-01 1.21815592e-01 -4.35740530e-01 -1.98997229e-01\\n-1.21501222e-01 -2.55632490e-01 6.00928590e-02 2.50080407e-01\\n1.28403500e-01 -8.34657773e-02 7.93875009e-02 -2.77346551e-01\\n3.19964379e-01 5.43099791e-02 1.39066041e-01 1.91892311e-01\\n1.05221771e-01 4.86467004e-01 6.23418717e-04 -1.86573461e-01\\n-1.56211868e-01 7.55005479e-02 -1.57763451e-01 -7.80070871e-02\\n-8.86215940e-02 -3.47978622e-01 -9.86145362e-02 2.37683862e-01\\n1.35521501e-01 -5.83462976e-02 -8.51543024e-02 2.22330555e-01\\n8.09942558e-02 -3.10062289e-01 -2.16948003e-01 1.85025394e-01\\n2.27286607e-01 7.26317838e-02 7.99549893e-02 -4.66393828e-01\\n-3.16218808e-02 -3.06260288e-02 -4.22703326e-02 3.44313830e-01\\n2.11951166e-01 9.36844200e-02 -9.58870426e-02 -2.13956252e-01\\n4.41184640e-01 -3.85789305e-01 -1.07103661e-01 1.10296108e-01\\n1.33244591e-02 -2.05625564e-01 -3.83343250e-01 3.72611023e-02\\n-5.38650639e-02 -3.09700280e-01 2.62688756e-01 4.51193564e-02\\n-1.89355537e-02 1.00750521e-01 -5.24988770e-01 -1.40795201e-01\\n-2.44073778e-01 -5.22057042e-02 -7.37307873e-03 -4.77592677e-01\\n6.42220005e-02 5.65168401e-03 -5.65557957e-01 3.60388964e-01\\n-3.05231303e-01 -5.85691370e-02 1.18023761e-01 -3.55653688e-02\\n-3.59271228e-01 -9.73222703e-02 8.96369815e-02 2.66783237e-01\\n-2.02526093e-01 -9.86875296e-02 -4.08090055e-02 -8.54428113e-01\\n2.19137162e-01 1.25112394e-02 -2.22181827e-01 2.84813577e-03\\n2.88078561e-02 -5.69409609e-01 1.90065414e-01 -3.77096832e-01\\n-5.73831284e-03 -6.53356314e-02 -2.09627822e-01 -3.99410039e-01\\n1.55555964e-01 -5.48055656e-02 -1.85831562e-01 3.55677545e-01\\n-4.00783271e-01 2.46330008e-01 -3.29066217e-02 9.16087851e-02\\n-6.90391809e-02 -4.12089229e-01 2.56986737e-01 -2.49182001e-01\\n-4.23956186e-01 -1.86825261e-01 -3.58079821e-01 -1.71121776e-01\\n-1.07744902e-01 -2.71116346e-01 -1.57000229e-01 9.00405198e-02\\n1.66967988e-01 1.17699422e-01 -2.62935251e-01 -2.59600401e-01\\n8.68176147e-02 -4.83786792e-01 5.94555363e-02 -7.70635679e-02\\n-7.61094317e-02 -1.68797180e-01 2.36790627e-01 2.08102837e-02\\n5.82346618e-02 -3.71962368e-01 4.31409299e-01 -3.13783586e-01\\n-2.30465069e-01 -2.81557254e-02 -4.08590399e-03 6.76072463e-02\\n2.29618609e-01 -5.62914789e-01 -1.67925477e-01 2.95361996e-01\\n8.50862116e-02 1.69765115e-01 1.85721084e-01 -7.68069997e-02\\n-1.66762874e-01 2.67848432e-01 -2.94314742e-01 1.51756570e-01\\n6.56400621e-01 2.66324654e-02 1.93853751e-01 1.60925820e-01\\n1.76467612e-01 2.96401709e-01 4.62040186e-01 6.88160360e-02\\n1.01421140e-02 4.01162624e-01 6.21634945e-02 -4.75255489e-01\\n1.33167198e-02 1.36951637e-02 -9.68993977e-02 -3.03680658e-01\\n5.08943498e-01 4.22874153e-01 -3.46680135e-01 -1.73676133e-01\\n-4.37353253e-02 -2.09104285e-01 2.62539357e-01 -1.39699001e-02\\n1.69516504e-01 -1.62001342e-01 5.60643375e-01 -2.58484725e-02\\n1.26681313e-01 6.92776978e-01 -1.11252524e-01 -2.83990860e-01\\n-1.95092827e-01 2.02787995e-01 1.36391088e-01 4.17681545e-01\\n2.29299124e-02 1.97397351e-01 -4.75659259e-02 1.69357017e-01\\n-1.34421811e-01 1.23203956e-01 8.46082121e-02 1.17157124e-01\\n2.07507033e-02 9.04635191e-02 3.86993021e-01 3.74910474e-01\\n2.96536237e-01 3.79802078e-01 2.19330400e-01 9.95259210e-02\\n3.71130347e-01 5.21031082e-01 5.06739438e-01 1.67193234e-01\\n6.04473501e-02 1.09241776e-01 8.09906945e-02 1.20949075e-01\\n3.44796926e-01 3.28286886e-01 8.99077114e-03 9.28618193e-01\\n3.72975409e-01 1.86447129e-01 6.47921562e-01 -5.42080581e-01\\n-3.22336674e-01 1.56559292e-02 4.68191177e-01 -3.33797544e-01\\n-8.03431794e-02 1.17046565e-01 -2.17119068e-01 1.57824874e-01\\n-5.51444650e-01 -1.80594146e-01 -1.19151466e-01 7.78483003e-02\\n1.48463473e-01 -2.14286909e-01 -1.56235516e-01 1.45762190e-01\\n-3.13973688e-02 -1.26242802e-01 -4.61965859e-01 -4.15775850e-02\\n-1.11707017e-01 -1.05687134e-01 -6.49921298e-02 -1.45715967e-01\\n-6.37752563e-03 -2.74770677e-01 -8.85816589e-02 3.43174487e-02\\n4.09632206e-01 -9.46629345e-02 -1.79774370e-02 -3.19668353e-02\\n1.26265600e-01 4.52870399e-01 5.27862430e-01 -2.20271066e-01\\n8.16953927e-02 -1.61928713e-01 -2.20700160e-01 6.53495044e-02\\n4.36523221e-02 -8.57009292e-02 7.24367276e-02 2.65315801e-01\\n-2.99885243e-01 -1.55273110e-01 3.67512368e-02 3.77583891e-01\\n-4.35029536e-01 7.85692707e-02 -1.52435619e-02 4.56222594e-01\\n-8.44625849e-03 1.33941457e-01 -1.83508247e-01 2.39313785e-02\\n-9.94324684e-02 -4.62268114e-01 3.63568604e-01 -1.42757192e-01\\n-1.78535849e-01 1.59099013e-01 1.65061682e-01 2.96735108e-01\\n-3.84906650e-01 -1.05779290e-01 -2.64325365e-02 2.58280396e-01\\n9.34208408e-02 3.62722337e-01 -4.23544973e-01 -3.26803803e-01\\n-3.28056544e-01 1.54270619e-01 -9.36808065e-02 1.93909872e-02\\n-1.93271607e-01 2.08792463e-01 2.14508921e-01 6.37225956e-02\\n2.90741712e-01 1.25184599e-02 -2.22503662e-01 -1.97941914e-01\\n-1.56290472e-01 -3.34133148e-01 2.41994467e-02 -2.96717533e-03\\n2.39193365e-01 -2.96937227e-01 -8.57633054e-02 -2.44384751e-01\\n-8.71975496e-02 -3.72844577e-01 4.64761890e-02 -5.82217015e-02]]',\n", + " 'job_description': 'Job Informationen Would you like to be part of a team which… • takes a significant part in the creation of our company’s software architecture? • works in multidisciplinary projects with our internal departments Mechanical and Electrical Engineering, Technical Projects, Product Management as well as the Service and Manufacturing departments? • focuses the development of our therapy devices in particular on clinical application and usability aspects? We match with people who… • are open to new ideas and feel comfortable in our dynamic environment, • have great analytic skills and think solution-oriented, • can work independently, • are equipped with good social skills, and integrate well into a multicultural and professional team. Your bag of tricks contains… • good capability of understanding complex legacy systems, • good knowledge of the .NET platform, including C#, WPF and WCF, • understanding of relational databases, • experience in Version Control Systems and Application Lifecycle Management, • very good English skills, German skills are a must. Benötigte Skills Englisch .NET C# Konzeptionell / Analytisch Usability Softwarearchitektur',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Professionalism\", \"Social Skills\", \"Integration\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"Usability\", \"Relational Databases\", \"Version Control\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Product Management\", \"Software Architecture\", \"Wcf 4\", \"Application Lifecycle Management\", \"Lifecycle Management\", \"Mechanicals\"]',\n", + " 'languages': \"['English', 'Slovak', 'Navaho', 'Navaho']\"},\n", + " {'company_id': '51',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Publishing',\n", + " 'website': 'www.frontiersin.org',\n", + " 'jobdescription_embedded': '[[-3.23620260e-01 1.65432483e-01 5.47806978e-01 -9.65909287e-03\\n5.04691005e-01 -1.45443231e-01 -1.68182068e-02 3.73564124e-01\\n-1.41375095e-01 -2.55717307e-01 -1.63371891e-01 -3.02160978e-01\\n-3.07451673e-02 1.00709498e-01 7.07954466e-02 3.89789879e-01\\n2.98010319e-01 7.77123943e-02 -1.99934587e-01 3.57004225e-01\\n2.15718716e-01 1.70266069e-02 4.30273786e-02 7.14776516e-01\\n4.52711970e-01 -2.04108581e-02 -9.44484323e-02 -1.08742341e-03\\n-2.32649595e-01 -2.60220081e-01 3.91138554e-01 6.62056878e-02\\n-4.85408343e-02 -2.89379120e-01 1.45596102e-01 3.25471908e-02\\n-2.81610548e-01 -9.93527398e-02 -5.85513674e-02 1.15260646e-01\\n-3.89131010e-01 -1.89934582e-01 -1.30890161e-01 5.77544682e-02\\n-2.29421124e-01 -3.14038038e-01 -1.00636892e-02 3.17899249e-02\\n7.32482225e-02 2.48574093e-02 -5.81554472e-01 3.34173322e-01\\n-1.95960939e-01 -3.63358319e-01 2.90703595e-01 6.10002398e-01\\n-9.26823169e-03 -4.20875132e-01 -3.95973414e-01 -3.41955006e-01\\n5.40865362e-02 -4.61537801e-02 9.87069756e-02 -2.61458337e-01\\n3.47255349e-01 -1.58766359e-02 -4.24101837e-02 3.69343579e-01\\n-7.52086937e-01 -1.23136498e-01 -1.59443542e-01 -4.50584218e-02\\n-3.62983227e-01 -4.35134433e-02 -2.62905478e-01 -1.15757331e-01\\n-4.09901068e-02 3.70094001e-01 7.49101490e-02 7.64602348e-02\\n-1.53311819e-01 2.60333002e-01 -1.41948298e-01 3.52964729e-01\\n2.48547167e-01 2.87942410e-01 1.60191029e-01 3.21800560e-01\\n-2.95165956e-01 3.67222488e-01 1.03354774e-01 -3.09045851e-01\\n3.03145021e-01 2.54780166e-02 4.78841871e-01 -4.43191603e-02\\n5.89889586e-02 9.58938301e-02 -2.81749189e-01 2.38329083e-01\\n1.68482825e-01 -2.65582353e-01 -8.22274238e-02 -1.49876224e-02\\n-1.50991455e-01 4.43655327e-02 -2.63195671e-03 1.12853512e-01\\n-2.91430414e-01 3.52151752e-01 1.50968745e-01 -1.96673810e-01\\n-7.41392672e-02 -5.65136611e-01 -1.05935276e-01 3.96694914e-02\\n1.20681226e-01 3.01773220e-01 1.32640362e-01 2.21806511e-01\\n1.37880832e-01 -3.48036662e-02 2.37931564e-01 8.56292009e-01\\n2.93570571e-02 6.53645396e-02 -2.25084320e-01 3.63558412e-01\\n1.09175593e-01 -3.85137737e-01 2.54658312e-01 1.23366833e-01\\n2.32598558e-03 -1.46580011e-01 -1.52304113e-01 3.13179225e-01\\n-1.18868135e-01 -2.82121181e-01 -3.27698112e-01 1.47605032e-01\\n-6.81117103e-02 -3.70158851e-01 5.29176652e-01 1.82845294e-02\\n1.76340371e-01 -1.22635946e-01 -6.16876036e-03 -1.58654988e-01\\n-1.32940367e-01 1.99952528e-01 4.54030260e-02 1.69180214e-01\\n-3.41237843e-01 -2.72817850e-01 -1.95173651e-01 2.93573141e-01\\n-3.71046275e-01 1.62922591e-01 -4.96223383e-02 -1.58326417e-01\\n2.79333711e-01 -2.03351248e-02 -3.47462416e-01 2.22208947e-01\\n-1.36852175e-01 -9.27618369e-02 -6.38279319e-02 3.59472275e-01\\n-1.99447125e-01 1.77148879e-01 4.24892968e-03 -1.05568759e-01\\n5.87178290e-01 1.40826046e-01 1.81951404e-01 1.85155850e-02\\n2.76644528e-01 -2.43610218e-02 1.97085261e-01 2.08757252e-01\\n-7.59136677e-01 2.15457231e-01 -1.08531356e-01 -1.84313685e-01\\n5.95834292e-02 -5.55676669e-02 2.91484594e-01 -3.21903884e-01\\n3.24487872e-02 -1.08091742e-01 -3.61806333e-01 -2.40661040e-01\\n-2.61542976e-01 1.81745868e-02 4.38810766e-01 -3.92342150e-01\\n-3.19991335e-02 1.84231162e-01 -4.70170736e-01 -9.95009392e-02\\n5.63114621e-02 1.59401149e-01 1.12422839e-01 2.14885727e-01\\n-1.94653541e-01 -5.30927122e-01 -2.43488438e-02 -3.52199763e-01\\n-4.33190435e-01 7.52772093e-02 -3.96642089e-01 2.91794896e-01\\n2.23210171e-01 6.18438236e-02 -6.18833564e-02 8.95115808e-02\\n-2.41694093e-01 -4.79392968e-02 1.16851941e-01 7.35366717e-03\\n2.67348021e-01 5.27810752e-02 -3.49978626e-01 4.41888094e-01\\n-1.77379161e-01 5.59392571e-01 2.06028372e-01 -8.24701130e-01\\n5.40869832e-01 3.12987328e-01 -3.39220762e-02 -4.07472193e-01\\n6.51117027e-01 -3.14576924e-01 -4.27126288e-02 1.10485256e-01\\n-3.41662019e-01 -3.52510303e-01 3.13591927e-01 -2.83939779e-01\\n-1.98362321e-01 5.65555930e-01 2.03474224e-01 8.24658275e-02\\n3.12163711e-01 -1.33935273e-01 -1.00574270e-01 1.66883096e-01\\n-1.03483379e-01 -3.25571597e-01 -3.55585843e-01 2.20346414e-02\\n-1.27732545e-01 -3.97267580e-01 -1.60839900e-01 -4.21703756e-01\\n-1.15043268e-01 -4.06756043e-01 -7.73856789e-02 3.30611467e-01\\n2.19520569e-01 6.77385852e-02 2.23435462e-04 -9.29842703e-03\\n-8.30927193e-02 -5.18940091e-01 -8.29912797e-02 -4.73280512e-02\\n4.13527489e-01 1.73696131e-01 8.66399705e-02 -2.73247808e-02\\n-9.62332636e-03 6.14185333e-01 -3.32279563e-01 -2.53139704e-01\\n1.73606724e-01 1.17107414e-01 -4.06417623e-03 -1.54564604e-01\\n1.08964033e-02 2.80226052e-01 -2.24829555e-01 7.51984715e-02\\n-1.71627164e-01 1.03015732e-02 2.86375374e-01 8.56194049e-02\\n-2.02701032e-01 -1.79032832e-01 6.79061487e-02 3.15019429e-01\\n-4.58204627e-01 -1.99522644e-01 5.48496723e-01 2.24034607e-01\\n1.19595662e-01 1.05544880e-01 1.62443548e-01 -6.61340579e-02\\n-1.50072068e-01 -2.09361345e-01 2.30658501e-01 9.92927402e-02\\n2.02541411e-01 8.80833492e-02 -5.60785718e-02 -6.23536825e-01\\n-3.16979003e+00 -1.86775967e-01 3.27786654e-02 -1.95791587e-01\\n1.59112796e-01 -1.34312049e-01 5.60030565e-02 -7.23799467e-02\\n-3.76877785e-01 1.02252819e-01 -2.48728991e-01 -1.07845411e-01\\n1.03419885e-01 2.99970329e-01 2.71668851e-01 2.44458169e-01\\n8.91170353e-02 -2.24427491e-01 1.34254806e-02 3.42730939e-01\\n-2.08115786e-01 -5.85654438e-01 1.49542376e-01 1.23668276e-02\\n2.77389765e-01 1.73639148e-01 -2.91748732e-01 -1.50888592e-01\\n-3.11033368e-01 -2.17754006e-01 7.77131924e-03 -2.67796427e-01\\n-1.24385461e-01 2.85731196e-01 2.01798335e-01 -2.31783129e-02\\n6.69709593e-02 -4.03130054e-01 -7.37714395e-02 -3.62459302e-01\\n1.26456887e-01 -5.74353218e-01 -1.72074400e-02 -1.02758668e-01\\n6.97864830e-01 -2.90143967e-01 2.23118752e-01 1.38400659e-01\\n1.14546739e-01 1.45780265e-01 2.23210156e-02 1.90953426e-02\\n-2.73965061e-01 -2.05903128e-01 -1.47767723e-01 -2.31625095e-01\\n5.44678986e-01 4.05652583e-01 -1.63281500e-01 -3.38711776e-03\\n7.64856040e-02 -2.34418094e-01 -3.78105998e-01 -4.55883026e-01\\n-2.23505586e-01 -1.69414908e-01 -7.09790826e-01 -4.93211120e-01\\n-1.01940088e-01 -1.16907962e-01 -9.27609354e-02 4.96109903e-01\\n-2.61199892e-01 -3.33940059e-01 -7.98101351e-02 -4.91935790e-01\\n2.50751138e-01 -1.07392155e-01 4.39548269e-02 -1.50725722e-01\\n-2.48350620e-01 -5.00371099e-01 7.17161447e-02 3.97429839e-02\\n-1.67816907e-01 -3.53487462e-01 2.36469228e-02 -2.57019192e-01\\n-3.42294991e-01 -5.64785004e-01 4.17617738e-01 8.16207826e-02\\n3.14737797e-01 1.33658588e-01 2.77174681e-01 5.47087267e-02\\n2.22186863e-01 -3.56181674e-02 1.21544421e-01 -4.62775767e-01\\n4.07396629e-02 3.81776206e-02 4.66597527e-01 -2.73326010e-01\\n8.92255753e-02 1.10370018e-01 -2.70808786e-01 -1.05110034e-01\\n3.77222836e-01 -1.94731969e-02 2.39385627e-02 -1.38955191e-01\\n3.29614878e-01 -3.33715379e-01 -1.48851782e-01 1.59556806e-01\\n1.64208878e-02 6.29700541e-01 -5.61287999e-02 -3.50058258e-01\\n-2.68224478e-01 4.50883329e-01 -1.00336425e-01 -4.40170243e-02\\n-8.05671811e-02 1.38604850e-01 -2.00660139e-01 9.08940509e-02\\n1.01137301e-02 -2.33601272e-01 -3.21560681e-01 -1.43357188e-01\\n-1.45922512e-01 2.38126561e-01 2.48324037e-01 7.92580843e-02\\n-1.15023106e-01 -4.05751795e-01 -7.42079020e-02 2.24842682e-01\\n2.28087932e-01 3.55925918e-01 2.09924355e-01 -1.98415399e-01\\n-1.05614364e-02 3.22105259e-01 -4.94190343e-02 2.99835086e-01\\n-2.48321414e-01 1.32740393e-01 -5.27489841e-01 -2.69231886e-01\\n-1.85111701e-01 -3.44432294e-01 2.31833458e-01 2.63935804e-01\\n1.10579006e-01 4.91882376e-02 6.23443387e-02 -4.81034815e-01\\n3.15678120e-01 2.88462695e-02 2.64380097e-01 6.44250065e-02\\n2.05427799e-02 5.65230787e-01 -7.78614506e-02 -3.14238369e-02\\n-1.72415018e-01 -4.03944999e-02 -1.51559934e-01 -1.63338393e-01\\n2.08600089e-02 -4.38177109e-01 -1.51188016e-01 3.59754860e-01\\n1.01780027e-01 -2.78949738e-01 -2.53652662e-01 2.68811464e-01\\n3.65119725e-02 -3.48602325e-01 -1.62747353e-01 8.90160352e-02\\n3.56554210e-01 1.62038684e-01 3.01494122e-01 -4.84773219e-01\\n6.85238242e-02 -6.25320151e-03 -7.91508257e-02 5.12995362e-01\\n6.39363676e-02 -4.30298299e-02 -1.91633880e-01 -2.03577459e-01\\n3.82396996e-01 -6.47144243e-02 -6.45050704e-02 -1.96774676e-02\\n7.36241043e-02 -2.87759721e-01 -4.20034260e-01 3.51770334e-02\\n1.99882556e-02 -2.94351697e-01 8.98229033e-02 4.82170619e-02\\n-1.59686320e-02 1.40773281e-01 -5.86805582e-01 -2.72610754e-01\\n-2.28592545e-01 -5.70670441e-02 4.86582816e-02 -4.17476356e-01\\n-4.54618596e-02 -9.49505195e-02 -5.97147703e-01 2.08436444e-01\\n-1.69567138e-01 -5.27002029e-02 1.33236900e-01 -4.33763936e-02\\n-3.48582953e-01 -4.62219752e-02 2.54445285e-01 2.16704980e-01\\n-2.44743451e-01 -2.42058292e-01 1.46664798e-01 -1.01773190e+00\\n9.09140110e-02 4.72458079e-03 -8.56475532e-02 1.47448480e-01\\n-5.55325150e-02 -6.62070334e-01 9.24239159e-02 -4.22755748e-01\\n-4.88925353e-02 -4.46581542e-02 -2.82679111e-01 -3.84262949e-01\\n1.18092313e-01 1.21551203e-02 -2.58042753e-01 4.26241398e-01\\n-3.45735073e-01 2.46939600e-01 -1.81680307e-01 6.53380826e-02\\n8.45739245e-03 -2.34786540e-01 8.29503685e-02 -2.74647266e-01\\n-3.75164598e-01 -1.10909812e-01 -2.79862106e-01 -1.91920131e-01\\n-9.69739817e-03 -1.66262656e-01 -1.92562908e-01 6.84735999e-02\\n3.46227348e-01 8.26583058e-02 -6.86542392e-02 -2.63727039e-01\\n4.00895029e-02 -3.58503640e-01 7.16762617e-02 -1.71385556e-01\\n-5.71516566e-02 -5.93046844e-02 1.63507596e-01 1.14501871e-01\\n1.63626790e-01 -3.44101429e-01 3.69428158e-01 -3.32228243e-01\\n-3.41807604e-01 -4.70149145e-02 1.24053106e-01 1.73103996e-02\\n3.66282463e-01 -4.41138268e-01 1.14867128e-02 4.13039237e-01\\n1.16150424e-01 1.06417485e-01 3.77014160e-01 -1.29735276e-01\\n-1.78737327e-01 2.60883749e-01 -4.02148306e-01 -4.70731333e-02\\n7.59097099e-01 1.21579580e-01 1.41547620e-02 1.78122506e-01\\n9.43285972e-02 2.64794469e-01 5.11714339e-01 -8.38906690e-02\\n-9.95272025e-02 2.88725525e-01 1.03639916e-01 -5.53333580e-01\\n-1.25835225e-01 -5.79989105e-02 -1.42845571e-01 -3.06955844e-01\\n6.47354007e-01 3.50905269e-01 -3.84233594e-01 -2.29736000e-01\\n-6.76969066e-02 -1.39093533e-01 2.47056156e-01 -6.59322143e-02\\n4.31413651e-02 -8.25019926e-03 4.83063161e-01 -1.31079063e-01\\n1.61263391e-01 4.95075524e-01 -1.47687972e-01 -2.07649529e-01\\n-6.84743375e-02 1.10798985e-01 4.16051187e-02 4.27471995e-01\\n-1.97387636e-01 3.78600478e-01 3.55290212e-02 2.99282577e-02\\n-2.44724900e-02 9.79919434e-02 1.48927033e-01 6.68599308e-02\\n2.78640658e-01 1.18765578e-01 3.35627645e-01 4.37491685e-01\\n2.62404740e-01 4.69391942e-01 2.79026598e-01 7.93944374e-02\\n4.31390285e-01 5.15699089e-01 4.75666046e-01 1.37933478e-01\\n1.56198721e-03 -8.99512507e-03 1.03070743e-01 -1.07463121e-01\\n3.79752696e-01 2.34324723e-01 1.32710025e-01 8.24950755e-01\\n3.74107659e-01 3.85940552e-01 6.63528323e-01 -6.60792887e-01\\n-3.61078799e-01 9.60889459e-02 5.44209838e-01 -3.67819369e-01\\n-2.31635757e-03 2.98896432e-01 -1.92460984e-01 2.55515188e-01\\n-4.86708462e-01 -2.34412253e-01 -8.72043669e-02 -4.91743758e-02\\n-7.85126090e-02 -1.37448713e-01 -2.38438129e-01 1.44272596e-01\\n-8.27772766e-02 -1.57265827e-01 -5.26360512e-01 -1.30208641e-01\\n-1.85009658e-01 -1.06008559e-01 -1.01573907e-01 -1.02737948e-01\\n-2.55844206e-01 -2.90049255e-01 -1.27558947e-01 -2.42334288e-02\\n2.19865948e-01 -2.26348996e-01 -6.82573169e-02 -2.01967090e-01\\n3.08085918e-01 1.86506599e-01 5.08746564e-01 -1.78434774e-02\\n1.28120676e-01 -2.96473026e-01 -2.03225017e-01 7.84814656e-02\\n2.32179135e-01 8.51059109e-02 4.56133112e-02 3.44617993e-01\\n-1.99825615e-01 -1.26985595e-01 1.62222400e-01 3.74641240e-01\\n-4.23205227e-01 1.84925385e-02 -7.16514513e-03 1.56717062e-01\\n2.43495256e-02 2.22087264e-01 -2.51316786e-01 3.46892476e-02\\n-1.84435457e-01 -5.49358368e-01 2.81348139e-01 -9.92960781e-02\\n-1.12073302e-01 1.65197462e-01 2.24849612e-01 1.85496926e-01\\n-2.19552204e-01 -7.77656883e-02 -8.10285583e-02 2.21970424e-01\\n4.88741249e-02 2.54761010e-01 -1.95738494e-01 -2.89558232e-01\\n-2.18244046e-01 2.14415789e-01 -2.03575104e-01 2.08239257e-01\\n-5.54334521e-02 3.71965170e-01 5.47456518e-02 1.24660820e-01\\n3.69822264e-01 7.83464909e-02 -1.84343308e-01 -1.90978542e-01\\n-2.50606656e-01 -3.30570877e-01 1.16118919e-02 3.65510583e-02\\n1.78353846e-01 -3.13494980e-01 1.52242184e-02 -2.52051294e-01\\n-1.78945258e-01 -3.51709485e-01 3.80060077e-03 7.93921202e-03]]',\n", + " 'job_description': \"Frontiers is a fast-growing open-access academic publisher with headquarters in Lausanne Switzerland, employing over 500 people. In the last 3 years, Frontiers has massively invested in data acquisition and modeling, leading to the deployment of sophisticated data products to further accelerate its business. We are looking for a Data Scientist to join our data science team in Lausanne. Your main focus will be developing state-of-the-art machine learning algorithms for a variety of applications (e.g. computer vision, NLP, recommendations systems) to improve our editorial workflow. You will contribute to the “full-stack” of data science, from experimentation to deployment in production. You will work together with product owners, machine-learning engineers and data engineers in order to build machine learning products that can advance Frontiers’ business. We are a diverse team of people from over 30 different countries with offices in Lausanne, Madrid, London, Seattle and Beijing. We are smart, hungry, and fast moving; operating in small teams, with freedom for independent work and fast decision making. Responsibilities Development, optimization and evaluation of machine learning models and pipelines Technological review of data science solutions and communication to management Proactive identification of opportunities for potential products within Frontiers Requirements Degree in Computer Science, Statistics or similar Demonstrable experience in data modeling and machine learning prototype development Proficiency in Python, including its scientific/statistical/NLP/Computer vision packages (e.g. NumPy, SciPy, scikit-learn, spaCy, OpenCV) Experience with SQL Experience with deep learning frameworks (e.g. PyTorch, Keras, Tensorflow) Willingness to share and adopt best work practices on a common codebase Fluency in English and strong communication skills Familiarity with big data platforms (e.g. Spark, Azure Databricks) is a plus Familiarity with deployment tools (e.g. Docker, Flask) is a plus Expertise in the field of scientometrics is a plus Benefits: 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Proactivity\", \"Management\", \"Communications\", \"Operations\", \"Decision Making\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Codebase\", \"Computer Science\", \"Data Modeling\", \"Statistics\", \"OpenCV\", \"Machine Learning\", \"Open Access\", \"Scikit-learn (Machine Learning Library)\", \"Recommender Systems\", \"Data Engineering\", \"Prototype (Manufacturing)\", \"NumPy\", \"Scheme (Programming Language)\", \"Activism\", \"Computer Vision\", \"Python (Programming Language)\", \"Yoga\", \"E (Programming Language)\", \"Experimentation\", \"Flask (Web Framework)\", \"Keras (Neural Network Library)\", \"Pipelining\", \"Investments\", \"Machine Learning Methods\", \"Professional Development Programs\", \"Data Science\", \"SpaCy (NLP Software)\", \"Docker (Software)\", \"Machine Learning Algorithms\", \"TensorFlow\", \"Deep Learning\", \"Big Data\", \"Data Acquisition\", \"Azure Databricks\", \"E-Tools\", \"Data Management Platforms\", \"SciPy\", \"PyTorch (Machine Learning Library)\", \"Workflows\", \"SQL (Programming Language)\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Turkish']\"},\n", + " {'company_id': '93',\n", + " 'job_title': 'software engineer, server',\n", + " 'location': 'Stans',\n", + " 'industry': 'Sports & Recreation',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 4.19657119e-03 1.90651610e-01 3.78497064e-01 5.13158813e-02\\n4.57627356e-01 -2.19482675e-01 -3.98585089e-02 4.77968633e-01\\n-2.99623199e-02 -4.52263176e-01 8.47569704e-02 -2.59213239e-01\\n-1.15135968e-01 1.52834788e-01 -5.14461249e-02 3.22667956e-01\\n3.90877604e-01 1.49154276e-01 -2.07938105e-01 3.72331500e-01\\n-3.29465419e-02 -9.28253382e-02 5.74480444e-02 7.30684876e-01\\n3.47323149e-01 -1.34473488e-01 -7.27730542e-02 -8.53895694e-02\\n-1.24431491e-01 -2.20459715e-01 4.13540304e-01 1.05182678e-01\\n-1.76627100e-01 -4.72423166e-01 1.83959417e-02 5.09582460e-05\\n-8.21183473e-02 7.09558427e-02 -5.75212613e-02 5.24192080e-02\\n-5.09241581e-01 -2.82422096e-01 -8.52263570e-02 1.59817301e-02\\n-1.84080020e-01 -1.89115226e-01 1.43895835e-01 1.95239671e-02\\n2.09486082e-01 1.32909954e-01 -3.81277621e-01 1.45098090e-01\\n-2.97890216e-01 -2.38520965e-01 3.30358207e-01 4.71724808e-01\\n-4.70039174e-02 -3.40613931e-01 -6.10278130e-01 -2.93913215e-01\\n1.02475390e-01 -1.31842375e-01 6.94746226e-02 -4.06099200e-01\\n1.99730292e-01 1.36377923e-02 1.20372891e-01 2.96749830e-01\\n-6.19722009e-01 -4.23997007e-02 -3.29678029e-01 -2.30762273e-01\\n-2.36307532e-01 -2.69817740e-01 -2.90836900e-01 1.40718162e-01\\n-1.74000353e-01 2.67141938e-01 8.83082226e-02 3.21468264e-02\\n-2.43863672e-01 4.01021063e-01 -1.53138340e-01 5.06595075e-01\\n1.36072516e-01 1.46041989e-01 2.58405209e-01 3.02664340e-01\\n-3.54991049e-01 5.41337371e-01 3.06002833e-02 -3.94565284e-01\\n4.17516112e-01 8.19382891e-02 3.00508082e-01 -2.77488437e-02\\n2.89421260e-01 1.79128021e-01 -4.11026835e-01 5.02155304e-01\\n2.75404602e-01 -3.92059445e-01 1.24481112e-01 -2.62174368e-01\\n1.71581194e-01 3.56097817e-02 2.60737658e-01 6.64942265e-02\\n-2.69534826e-01 4.69560862e-01 1.81810647e-01 -2.27501661e-01\\n-3.26015711e-01 -3.37862551e-01 -8.90337974e-02 5.46146408e-02\\n1.03427976e-01 6.30549937e-02 1.80886596e-01 1.48122050e-02\\n3.20704162e-01 -1.50895230e-02 8.63060355e-02 6.92293048e-01\\n-1.21946998e-01 -3.84449549e-02 -2.68097758e-01 1.41203970e-01\\n1.17760643e-01 -4.80434358e-01 2.96947062e-01 2.78907180e-01\\n3.59276198e-02 -2.45543793e-01 -1.95855558e-01 3.92837942e-01\\n6.87235147e-02 -2.46404305e-01 -2.86368221e-01 1.37503266e-01\\n2.25323394e-01 -3.94692540e-01 6.29006386e-01 1.40780523e-01\\n2.30203509e-01 1.04204126e-01 7.36335739e-02 -2.15152413e-01\\n-1.89587146e-01 9.95958745e-02 1.26358420e-01 1.52480841e-01\\n-1.86856508e-01 -2.63932705e-01 -1.74687430e-01 -2.07939073e-02\\n-6.44025326e-01 1.35741487e-01 -7.21919984e-02 -1.19725406e-01\\n1.91199034e-01 -1.48440585e-01 -1.97448075e-01 9.73207429e-02\\n-1.82405978e-01 1.55881912e-01 1.30088389e-01 4.69996482e-01\\n-2.20180362e-01 3.04101467e-01 3.52934040e-02 1.57749563e-01\\n7.50556052e-01 2.04181492e-01 1.39974028e-01 -3.24459709e-02\\n3.11067790e-01 1.29440427e-01 1.26785904e-01 1.05969787e-01\\n-7.28647470e-01 2.07952231e-01 -5.09898588e-02 -2.02715993e-01\\n4.18172702e-02 -1.65703177e-01 1.64024115e-01 -2.54244387e-01\\n-6.29270375e-02 -1.42211661e-01 -3.21773410e-01 -1.93019390e-01\\n-3.15469623e-01 -1.78773515e-03 3.46425474e-01 -4.80665267e-01\\n-2.04028159e-01 2.45974049e-01 -4.19764817e-01 -1.67716861e-01\\n6.94317967e-02 7.83367902e-02 6.07563406e-02 3.08100600e-02\\n-2.15070188e-01 -6.34331822e-01 6.70756549e-02 -2.73862064e-01\\n-3.26485634e-01 1.84304528e-02 -2.72190690e-01 2.35907957e-01\\n1.04121767e-01 4.27378342e-02 -7.48009086e-02 2.51431733e-01\\n-1.41054600e-01 -1.33908227e-01 -2.12357678e-02 -6.51193932e-02\\n2.18028367e-01 1.03659570e-01 -2.59807348e-01 3.58793825e-01\\n-1.50127724e-01 6.28986716e-01 1.28117800e-01 -7.42506802e-01\\n3.72142255e-01 3.36656243e-01 2.20916010e-02 -3.10965806e-01\\n3.57547522e-01 -3.17433894e-01 -1.22343540e-01 -2.77977772e-02\\n-3.41489017e-01 -4.32014972e-01 1.33089051e-01 -2.07174718e-01\\n-2.48076081e-01 3.07481557e-01 -3.86180058e-02 1.57921866e-01\\n1.51027650e-01 -2.04765379e-01 6.54245764e-02 1.43233359e-01\\n2.62275375e-02 -1.22844964e-01 -5.82823038e-01 -1.87333316e-01\\n-7.67569095e-02 -2.99640656e-01 -6.82666004e-02 -4.21613008e-01\\n-1.40833676e-01 -3.41603547e-01 -2.77151942e-01 1.82955205e-01\\n3.68089408e-01 1.34872273e-01 -1.01327062e-01 4.50451896e-02\\n-2.53885508e-01 -8.06552231e-01 5.93913719e-02 1.77417099e-01\\n4.00834173e-01 1.90045819e-01 1.99555129e-01 1.91650800e-02\\n1.14832595e-01 6.72721148e-01 -2.15215266e-01 -1.42408565e-01\\n5.98156527e-02 1.96309179e-01 1.71849728e-01 -2.01993376e-01\\n1.39544874e-01 3.82048488e-01 -2.46209547e-01 8.84397049e-03\\n4.28125151e-02 -8.13334882e-02 5.05001009e-01 4.36566994e-02\\n-4.71971303e-01 -1.18041173e-01 -8.74910206e-02 -9.50585753e-02\\n-5.11459827e-01 -1.53237477e-01 7.02692032e-01 2.19720915e-01\\n2.32090801e-01 4.59217764e-02 1.43361866e-01 2.02530883e-02\\n-1.53267965e-01 -3.85977566e-01 4.10775274e-01 6.14447594e-02\\n6.12107925e-02 1.99060947e-01 2.14805603e-02 -5.95602453e-01\\n-3.73151922e+00 -1.51952565e-01 2.66933322e-01 -2.70903081e-01\\n1.01634920e-01 -1.31938502e-01 3.84980440e-02 -1.72400415e-01\\n-2.87590116e-01 2.03224808e-01 -8.37011915e-03 -1.22558549e-01\\n6.53054714e-02 2.55596101e-01 1.45093665e-01 2.29817688e-01\\n3.60041380e-01 -4.94289473e-02 -1.97533533e-01 2.15837106e-01\\n-2.25773335e-01 -6.56052470e-01 2.81183571e-01 -5.17175160e-03\\n3.70335460e-01 4.14487898e-01 -1.69462174e-01 -1.72790349e-01\\n-1.22569188e-01 -1.28791779e-01 -4.32869047e-02 -2.84319818e-01\\n-3.32405627e-01 1.89199910e-01 2.46157438e-01 -1.46335527e-01\\n1.53527290e-01 -5.00552595e-01 -3.65377456e-01 -4.64288741e-01\\n1.93612605e-01 -5.01750529e-01 -9.41107273e-02 -1.14692979e-01\\n6.28690720e-01 -2.41122454e-01 4.96989340e-02 -3.07037681e-03\\n1.85003161e-01 1.50731578e-01 2.01195002e-01 6.22644387e-02\\n-1.00877419e-01 -2.75766313e-01 1.13412291e-02 -2.21987873e-01\\n6.49620354e-01 3.38202626e-01 -1.18544422e-01 -7.13292882e-02\\n5.66346236e-02 -1.47372767e-01 -2.85220802e-01 -5.75056206e-03\\n-5.67050651e-03 -3.55069697e-01 -5.40334582e-01 -2.65111536e-01\\n-1.20759547e-01 -8.16478282e-02 -2.23616123e-01 7.09046960e-01\\n-2.86836207e-01 -2.92599678e-01 5.52451313e-02 -3.90795887e-01\\n2.75208175e-01 -8.51667151e-02 -6.50405362e-02 -1.21858045e-01\\n-1.94903076e-01 -4.77549613e-01 -1.69846177e-01 -3.63262333e-02\\n-1.58668369e-01 -4.70907211e-01 -4.48594838e-02 9.38383564e-02\\n-1.61953539e-01 -4.73259181e-01 4.43647861e-01 1.97164863e-01\\n2.25046009e-01 1.08969189e-01 2.88460463e-01 -1.49077743e-01\\n3.23229939e-01 7.17447549e-02 -1.18298210e-01 -3.56581032e-01\\n9.56156552e-02 -6.36006519e-02 4.04615104e-01 -1.68934584e-01\\n-1.17236204e-01 4.53091487e-02 -3.17346424e-01 -7.29527399e-02\\n3.44261348e-01 3.69763933e-02 4.52666767e-02 -2.81644519e-02\\n1.39368117e-01 -2.61497110e-01 -1.78470299e-01 -7.94175938e-02\\n1.15071148e-01 7.31402695e-01 -7.91044608e-02 -3.30004871e-01\\n-8.30434412e-02 5.92166662e-01 -1.10393725e-01 2.26685911e-01\\n-2.43708909e-01 1.51005566e-01 -1.89477593e-01 1.68831378e-01\\n3.21233422e-02 -1.23443201e-01 -9.08180624e-02 -1.91762775e-01\\n2.95888148e-02 3.38213265e-01 1.27893791e-01 6.74969479e-02\\n3.39128152e-02 -5.07577300e-01 -1.80897117e-01 1.52181268e-01\\n1.17892727e-01 5.24081469e-01 9.86526757e-02 -2.35377789e-01\\n-1.15666404e-01 4.04702902e-01 -1.11483261e-01 1.59437507e-01\\n-2.76436627e-01 1.30997226e-01 -5.01542330e-01 -2.25399658e-01\\n-3.81524295e-01 -4.49749619e-01 2.01004490e-01 3.06453943e-01\\n-7.17631876e-02 -2.23715827e-02 3.47432196e-02 -5.65105081e-01\\n1.22307107e-01 2.39892289e-01 1.95415139e-01 1.73424929e-01\\n-7.29080737e-02 3.90130699e-01 -7.73432627e-02 -1.50721908e-01\\n-2.83568680e-01 1.04744129e-01 2.79224534e-02 3.52959037e-02\\n6.63103014e-02 -6.30852103e-01 -1.27481252e-01 2.91693091e-01\\n2.15636998e-01 -1.93305179e-01 -1.82215601e-01 2.34513462e-01\\n-1.11896507e-02 -2.30219632e-01 -2.50831366e-01 -1.58606067e-01\\n3.06866407e-01 1.40521973e-02 3.48017991e-01 -2.64235258e-01\\n-9.09428895e-02 2.66525708e-03 -1.67819411e-01 4.33979034e-01\\n-2.04976611e-02 -1.34160649e-02 -2.40815222e-01 -1.87910631e-01\\n4.28932130e-01 -1.01187520e-01 -1.85849607e-01 -4.58960459e-02\\n1.32789403e-01 -1.34453639e-01 -5.56613028e-01 1.23462498e-01\\n1.11827314e-01 -1.62443385e-01 1.62164122e-01 2.68446505e-01\\n9.94890779e-02 2.54187465e-01 -6.48431182e-01 -1.82929233e-01\\n-2.91707635e-01 -1.09320626e-01 1.77690938e-01 -4.68878806e-01\\n-1.03390366e-02 -1.60723597e-01 -4.38322306e-01 1.59504175e-01\\n-2.37065643e-01 -2.19439864e-01 2.14751899e-01 4.66818102e-02\\n-3.81264508e-01 -1.30465984e-01 -1.38090461e-01 3.76766264e-01\\n-2.67199486e-01 -3.86241019e-01 1.07620269e-01 -9.98930216e-01\\n2.08986700e-01 1.49806708e-01 -2.06695676e-01 4.77055013e-02\\n-2.74291903e-01 -5.53868294e-01 1.63388010e-02 -3.66127729e-01\\n-1.61034524e-01 -2.26904433e-02 -2.62960792e-01 -1.95703983e-01\\n8.76858756e-02 -7.72311762e-02 -3.70017886e-01 3.90343249e-01\\n-2.63263762e-01 3.17548692e-01 -2.23154813e-01 1.51970536e-01\\n-1.46466970e-01 -1.80204943e-01 1.11943424e-01 -4.83588308e-01\\n-5.64050794e-01 -1.73690602e-01 -2.89208800e-01 -1.86942250e-01\\n3.26469392e-02 -3.91948521e-01 -8.98888186e-02 1.56584293e-01\\n3.77639294e-01 7.56210536e-02 -7.54180700e-02 -3.05499911e-01\\n-1.11330850e-02 -5.43521881e-01 -2.32928619e-03 1.97221786e-02\\n-1.03591368e-01 -1.47273943e-01 2.38484234e-01 2.56696284e-01\\n2.07982734e-01 -4.75270361e-01 2.43515998e-01 -5.18651664e-01\\n-2.12221175e-01 -4.12498564e-02 3.41846347e-02 -9.09946412e-02\\n3.43469888e-01 -6.62940741e-01 -2.97781378e-02 3.88743460e-01\\n1.06851019e-01 -4.78678532e-02 2.41117865e-01 -3.67032737e-02\\n8.60153064e-02 2.98433274e-01 -1.15659259e-01 1.41639039e-02\\n8.01465571e-01 2.05710120e-02 1.07352316e-01 2.79824555e-01\\n1.22504219e-01 3.22781920e-01 4.72642422e-01 -1.97250117e-02\\n-3.56625170e-02 1.84353784e-01 4.29020897e-02 -5.16256332e-01\\n-4.59073856e-02 1.75657719e-01 -1.69885024e-01 -4.73099321e-01\\n6.53086782e-01 4.64429677e-01 -5.42691886e-01 -1.38668865e-01\\n4.23935391e-02 -2.37883419e-01 1.91306114e-01 -8.76693130e-02\\n-1.26358587e-02 -7.80072957e-02 2.47184560e-01 -4.72817272e-02\\n2.36878157e-01 5.20830452e-01 -1.74931929e-01 -3.74126643e-01\\n-9.56023633e-02 3.14618021e-01 2.32934467e-02 6.76085234e-01\\n-3.13611090e-01 2.94694632e-01 -7.17972144e-02 -3.69204283e-02\\n-4.39805090e-02 3.57672751e-01 4.92023602e-02 1.74940497e-01\\n1.53625458e-01 2.83448175e-02 6.57693326e-01 4.95913744e-01\\n2.29950145e-01 3.76834244e-01 2.87171096e-01 7.80405179e-02\\n3.79076242e-01 4.07682389e-01 4.46261585e-01 9.75887850e-03\\n8.69158804e-02 2.50168413e-01 2.15897173e-01 -1.78677291e-01\\n4.29259300e-01 4.14564729e-01 1.04121834e-01 7.35650778e-01\\n3.07513177e-01 2.58028567e-01 5.23412883e-01 -6.79533064e-01\\n-2.04126149e-01 3.85161266e-02 4.63061035e-01 -3.58024180e-01\\n5.31930700e-02 2.15788722e-01 -9.91261676e-02 4.14719045e-01\\n-2.42693037e-01 -3.17850739e-01 6.62613362e-02 1.72684640e-01\\n-7.82706141e-02 -3.56501102e-01 -2.91602969e-01 -4.20685224e-02\\n3.80712561e-04 9.23630130e-03 -3.84840935e-01 -1.41518516e-02\\n-1.34261370e-01 4.22651246e-02 -1.21474139e-01 -2.05782607e-01\\n1.32307746e-02 -4.23506021e-01 9.19374265e-03 -1.60231590e-01\\n1.01596862e-01 -1.77249879e-01 1.50811076e-02 -3.37992013e-02\\n3.26267958e-01 2.07561895e-01 5.01468062e-01 3.17767560e-02\\n-2.32816301e-03 -2.82887399e-01 -2.16541767e-01 2.95368224e-01\\n1.21828973e-01 6.82059526e-02 1.63066722e-02 -3.95845696e-02\\n-1.58562884e-01 -1.32766142e-01 1.79024503e-01 3.05973887e-01\\n-3.57012391e-01 1.01286501e-01 -2.74445117e-01 1.45240784e-01\\n1.40225396e-01 2.26693809e-01 -1.02816515e-01 -5.03080934e-02\\n-4.89732847e-02 -2.55098283e-01 1.21652082e-01 -2.20676437e-02\\n-7.63746649e-02 8.66300911e-02 2.09861547e-01 2.50987709e-01\\n-3.04663837e-01 -6.35462850e-02 -2.11136624e-01 9.47741866e-02\\n4.18485031e-02 2.01671302e-01 2.84669995e-02 -3.72853816e-01\\n-2.53867328e-01 9.49759632e-02 -1.02678016e-01 -2.20935941e-02\\n4.03796881e-02 3.23136479e-01 3.71691212e-03 -4.26064655e-02\\n5.52915454e-01 -4.04681340e-02 -2.66607583e-01 -7.83895180e-02\\n-2.89654911e-01 -1.30810529e-01 -1.58177599e-01 -1.42467916e-01\\n1.79074958e-01 -3.30845833e-01 -2.14295182e-02 -2.07073670e-02\\n1.23008221e-01 -1.37944296e-01 6.03223555e-02 -3.46815884e-02]]',\n", + " 'job_description': 'About PLEX: Plex is a media streaming company that gives people instant access to their media collections - home videos, photos, music, TV shows, and movies - so they can quickly find and stream them to any device. We have a simple yet ambitious mission: to help people easily discover, enjoy, and share all of their media across all of their devices. We’ve made great progress towards this mission, and we have millions of happy customers, but we still have a long way to go! What sets us apart: We support every major platform, including desktops, mobile devices, smart TVs, streaming devices, and gaming consoles, providing you the opportunity to build and contribute to the technologies you’re most interested in, as well as move across projects to learn new skills. We are a distributed organization, with people making great things happen in more than 15 countries and 11 time zones. While we are passionate about our work and all work hard, we provide flexibility around a schedule that works for you. We love what we’re building and our user community is an integral part of our development process. We actively engage with customers through forums to understand what is working, what they want more of, and how we can be better. We ship cool stuff! Sound interesting? We’re looking for software engineers who are ready to push their limits and have a material impact in Plex’s growth and success. Who You Are: You’re kind, helpful, smart, get stuff done, have great energy, and thrive in a startup environment. You’re self motivated and able to work well in a distributed office. You’re a software engineer with experience working in groups, but with the ability to work independently. You believe in asking for help and helping others when they ask, never throwing a problem over the wall. You thrive in a fast paced environment, with an ability to be nimble and shift priorities as called for in a dynamic space. You are hungry to have an impact, continuously working to improve our product, process and push the team to be it’s best. You are an experienced C/C++ programmer and thrive inside of large codebases. You can both understand and improve complex systems, but know when making targeted fixes is the right approach. You have documented experience of shipping products and features into the hands of many demanding users. You have been the primary developer responsible for taking features from inception through to delivery, and do not shy away from the responsibility of heading up a feature team. You understand the complexities involved in shipping cross-platform applications, and have solid experience in working with platform-specific APIs. Ideally, you would have a working knowledge of Win32 APIs. You have some experience with client/server architectures. You might know a thing or two about networking, or databases, or security, or media formats. You write simple clean code. The debugger is one of your favorite tools. Plex is committed to building an inclusive and diverse workforce. Plex is an equal opportunity employer. We do not discriminate based on race, ethnicity, color, ancestry, national origin, religion, sex, sexual orientation, gender identity, age, disability, veteran, genetic information, marital status or any other legally protected status.',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Mobile Devices\"]',\n", + " 'hard_skills': '[\"Nvidia Quadro Plex\", \"Console Games\", \"Video Home System (VHS)\", \"Process Development\", \"C (Programming Language)\", \"Heading (Metalworking)\", \"Client Server Models\", \"Production Process\", \"Collections\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"Remote Application Platform\", \"Smart Tv\", \"Smart Device\", \"Software Engineering\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Zhuang', 'Ewe', 'Kinyarwand']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.74159169e-01 3.37610811e-01 6.32986605e-01 -1.04096882e-01\\n5.10776281e-01 -1.76928371e-01 1.23440638e-01 3.22047621e-01\\n-2.33702168e-01 -3.37552518e-01 -1.90123260e-01 -2.75692314e-01\\n7.80085241e-03 7.53872395e-02 1.09145135e-01 3.93530756e-01\\n3.25709432e-01 6.66375384e-02 -1.34673268e-01 2.74409086e-01\\n1.91011846e-01 -4.79138009e-02 1.01544745e-01 6.11031294e-01\\n5.03775716e-01 -2.43258756e-02 -1.26253977e-01 1.90617010e-01\\n-2.13395208e-01 -2.97951698e-01 4.78870898e-01 7.68620595e-02\\n-1.54280111e-01 -8.58569890e-02 1.20153680e-01 1.32139876e-01\\n-1.98134676e-01 -1.18758297e-02 -1.84955318e-02 8.06215107e-02\\n-3.25358719e-01 -6.90306362e-04 -5.68117760e-02 -4.85117733e-02\\n-3.09198499e-01 -4.18812394e-01 -9.12849512e-03 7.69227967e-02\\n1.34908944e-01 4.71007489e-02 -4.08304185e-01 4.18267071e-01\\n-1.96686268e-01 -3.48830640e-01 1.54758364e-01 6.97228849e-01\\n-1.30681545e-01 -4.81871367e-01 -3.51434112e-01 -2.41023108e-01\\n1.58826023e-01 -1.42202780e-01 9.51188058e-02 -3.16717595e-01\\n6.11325502e-01 -3.72919887e-02 -7.09644705e-02 3.16210002e-01\\n-7.93446243e-01 -1.25272404e-02 -2.60333747e-01 -5.62610999e-02\\n-3.81852329e-01 3.03002503e-02 -3.53429973e-01 -1.82362080e-01\\n-7.90536255e-02 4.73523527e-01 4.97084558e-02 1.70599446e-01\\n-6.70160353e-02 2.16389358e-01 -3.22141975e-01 2.18345866e-01\\n1.92865342e-01 4.67429608e-01 1.74280331e-01 2.93980598e-01\\n-4.25263464e-01 3.78605843e-01 1.35690093e-01 -2.79087335e-01\\n1.88520551e-01 1.75940886e-01 4.24600840e-01 6.07181676e-02\\n1.93554625e-01 5.80913648e-02 -2.74738461e-01 2.51863897e-01\\n2.85106689e-01 -3.78318608e-01 6.08693212e-02 6.29624492e-03\\n-1.15190089e-01 1.12603977e-01 2.96976157e-02 2.66180962e-01\\n-3.74638081e-01 5.85921526e-01 -3.53540778e-02 -1.68602869e-01\\n-3.10806669e-02 -6.26818895e-01 -2.42606565e-01 1.63050294e-01\\n1.76286101e-01 2.74258226e-01 1.73404694e-01 4.34776276e-01\\n1.55279592e-01 6.03402182e-02 2.51504123e-01 9.16888773e-01\\n-7.53450319e-02 1.51415005e-01 -2.12091118e-01 4.77181941e-01\\n1.02437474e-01 -2.65336782e-01 2.58151263e-01 3.27646822e-01\\n1.49589211e-01 -1.00332119e-01 -2.57143557e-01 3.00071329e-01\\n-2.83816997e-02 -3.42744738e-01 -3.26590002e-01 1.53501138e-01\\n-1.20047443e-01 -6.43521845e-01 6.01870775e-01 -1.41520258e-02\\n8.65502134e-02 -6.21086843e-02 -3.15526091e-02 -6.91452920e-02\\n-3.84814292e-02 2.12042525e-01 1.22506566e-01 7.51162395e-02\\n-2.87874371e-01 -1.88766375e-01 -3.12698990e-01 2.30228215e-01\\n-4.70165908e-01 7.82576278e-02 -1.03938386e-01 -3.21434364e-02\\n2.73469776e-01 -9.23965797e-02 -3.50062072e-01 3.06634456e-01\\n-1.85352996e-01 -2.12948650e-01 -5.90674169e-02 3.77094477e-01\\n-2.21138328e-01 2.02790678e-01 -6.15214892e-02 -2.66010076e-01\\n4.94493216e-01 1.13771051e-01 1.51890993e-01 3.03541608e-02\\n3.27505678e-01 2.59406422e-03 1.61155343e-01 1.24708213e-01\\n-8.91785026e-01 4.54784781e-01 -8.39888752e-02 -2.64141798e-01\\n5.33160791e-02 3.78018804e-02 3.57734919e-01 -3.40982914e-01\\n1.64094016e-01 -1.48132905e-01 -2.67909676e-01 -2.25646198e-01\\n-2.81551391e-01 1.42808603e-02 4.81201559e-01 -4.54883993e-01\\n-1.28290832e-01 1.18064046e-01 -6.25424445e-01 9.40724686e-02\\n1.89791322e-01 1.58928111e-01 1.57106251e-01 1.86391696e-01\\n-1.04942575e-01 -5.48361540e-01 1.57844722e-01 -3.81006211e-01\\n-2.72294879e-01 2.51898885e-01 -3.62704009e-01 2.42142648e-01\\n1.84072226e-01 -4.22423594e-02 -7.22486302e-02 1.05826102e-01\\n-1.09347440e-01 -7.03085884e-02 1.98767096e-01 4.30995300e-02\\n4.77663964e-01 -2.46721320e-02 -4.03442204e-01 5.76572180e-01\\n-1.34788185e-01 3.98016423e-01 2.19209433e-01 -8.84030879e-01\\n4.94953811e-01 2.88229972e-01 1.45768628e-01 -3.08245629e-01\\n8.53734434e-01 -1.42586574e-01 -1.76400557e-01 1.20398231e-01\\n-3.90305042e-01 -2.70595014e-01 1.19539447e-01 -1.88488930e-01\\n-2.80934364e-01 4.93767858e-01 1.43255383e-01 1.38819575e-01\\n3.03464800e-01 -1.40080228e-01 -2.03393102e-01 1.66626304e-01\\n-1.98669434e-01 -3.08718443e-01 -4.08456147e-01 6.64917007e-02\\n7.11182645e-03 -4.77914691e-01 -1.55877903e-01 -5.15757501e-01\\n-1.95145741e-01 -3.99363995e-01 -8.38577896e-02 3.38394940e-01\\n8.70238394e-02 1.62593469e-01 3.34079415e-02 -1.75831303e-01\\n-3.02891076e-01 -5.37948549e-01 -1.00566909e-01 5.72912507e-02\\n3.89182061e-01 5.86620048e-02 8.34489763e-02 -8.49191099e-03\\n5.35918064e-02 6.51558101e-01 -2.04254881e-01 -3.06933492e-01\\n1.34450763e-01 1.86007053e-01 -7.45788813e-02 -7.07061961e-02\\n7.64248893e-02 3.43336195e-01 -2.72923529e-01 3.51957530e-02\\n-1.80335760e-01 1.04238272e-01 2.40936533e-01 -5.18822409e-02\\n-1.46691486e-01 -3.63116264e-01 -1.19817019e-01 2.13153124e-01\\n-5.62546313e-01 -3.18529159e-01 6.55937493e-01 1.69471055e-01\\n8.93241465e-02 5.82798906e-02 1.91726893e-01 -4.78999391e-02\\n-1.93732589e-01 -1.79378957e-01 1.76786900e-01 3.99150960e-02\\n8.46013352e-02 2.00013831e-01 -9.15069133e-02 -4.43638533e-01\\n-3.65405273e+00 -1.80417344e-01 5.57221957e-02 -2.16846511e-01\\n1.96865469e-01 -1.54008791e-01 1.13001958e-01 -1.26782551e-01\\n-2.77021796e-01 5.87999411e-02 -1.87859878e-01 -2.12990791e-01\\n1.36187643e-01 3.23811203e-01 2.21168250e-01 2.28244528e-01\\n1.26086324e-01 -3.07552189e-01 -1.10397546e-03 4.13926870e-01\\n-1.31254688e-01 -5.19708812e-01 2.01134101e-01 -1.73543058e-02\\n2.95369476e-01 3.02609861e-01 -2.93488979e-01 -5.15297875e-02\\n-2.84671158e-01 -3.21647346e-01 1.61086455e-01 -2.64134288e-01\\n-8.95985961e-02 3.90048444e-01 2.06880972e-01 -5.77176958e-02\\n1.64156452e-01 -2.89775580e-01 -6.22943006e-02 -3.23340029e-01\\n1.39087975e-01 -5.36502004e-01 -9.58459303e-02 -5.49979731e-02\\n7.41481781e-01 -4.08422053e-01 1.48745805e-01 5.43498583e-02\\n3.83405536e-02 1.68305933e-01 1.13388680e-01 -1.37711480e-01\\n-1.60727710e-01 -2.55754650e-01 -9.91198514e-03 -2.29229152e-01\\n5.91568172e-01 5.70663154e-01 -2.11375773e-01 -3.89424413e-02\\n1.32358760e-01 -2.59089291e-01 -5.44301391e-01 -5.43766141e-01\\n-1.90121710e-01 -1.08825684e-01 -6.17098927e-01 -6.46651328e-01\\n-4.82969135e-02 -1.77191257e-01 -3.60663049e-02 4.10772413e-01\\n-1.59459904e-01 -3.39491725e-01 -2.11655825e-01 -3.72076541e-01\\n2.38791540e-01 -9.86162797e-02 -5.07791862e-02 -1.40017658e-01\\n-1.92202359e-01 -5.30235171e-01 -8.94910395e-02 1.18634114e-02\\n-3.75514589e-02 -1.73680425e-01 2.29940057e-01 -2.28304684e-01\\n-4.32053179e-01 -5.18529356e-01 4.99954104e-01 -7.67195877e-03\\n3.18934977e-01 2.12811425e-01 1.49624303e-01 1.29515380e-01\\n3.09919089e-01 -3.20411235e-01 1.13498129e-01 -4.08704728e-01\\n9.09916162e-02 1.69389054e-01 4.96629179e-01 -2.34345302e-01\\n1.25310868e-01 2.34390646e-02 -2.03795344e-01 -1.73669636e-01\\n3.52008194e-01 -5.70731908e-02 1.70348614e-01 -3.07011366e-01\\n3.11449587e-01 -2.83378541e-01 -2.27256149e-01 1.52462289e-01\\n1.73500478e-02 5.52225530e-01 -6.99145254e-03 -3.12685609e-01\\n-1.47209316e-01 4.92266357e-01 -2.52374232e-01 -2.91149691e-02\\n-2.34611601e-01 3.48516144e-02 -2.61596382e-01 4.06386822e-01\\n-2.39280164e-02 -1.01019949e-01 -2.50219136e-01 -9.87142473e-02\\n5.67541905e-02 2.96956778e-01 4.05433059e-01 1.56943098e-01\\n4.71533574e-02 -3.97662193e-01 1.09559581e-01 1.06699608e-01\\n3.92384082e-01 2.73458868e-01 1.37981817e-01 -9.81113464e-02\\n-2.39373278e-02 2.68778980e-01 -2.07633033e-01 2.64224529e-01\\n-2.17288226e-01 7.86127374e-02 -4.73005831e-01 -3.88711005e-01\\n-2.35718265e-01 -2.67476469e-01 9.55964401e-02 2.06315786e-01\\n1.39542207e-01 -4.15066369e-02 3.40873003e-02 -4.32593286e-01\\n2.78660059e-01 7.75712505e-02 3.13747793e-01 1.62353545e-01\\n-1.47387087e-01 5.31094313e-01 -9.23211426e-02 -1.93027630e-02\\n-1.00148626e-01 1.34893343e-01 -2.40341946e-01 -1.42186627e-01\\n-5.76126687e-02 -5.16118944e-01 -7.39175379e-02 3.58045697e-01\\n1.33834869e-01 -3.27100962e-01 -2.05918342e-01 1.99233532e-01\\n-2.94661783e-02 -5.32969058e-01 -1.46249935e-01 4.08891514e-02\\n3.89277220e-01 1.20783843e-01 2.22787216e-01 -5.01138210e-01\\n6.90986076e-03 4.00661752e-02 -7.14216828e-02 4.03163612e-01\\n-6.88392371e-02 7.22995540e-03 2.91326130e-03 -2.84324795e-01\\n3.34298730e-01 -2.41863951e-01 -2.12238356e-02 4.35231403e-02\\n1.82643220e-01 -1.84244752e-01 -2.67392218e-01 -3.28050628e-02\\n-1.01621144e-01 -1.94732815e-01 -2.11356115e-02 9.28728208e-02\\n-5.55513203e-02 1.28251106e-01 -6.03217006e-01 -2.66701251e-01\\n-2.56851703e-01 -1.70726895e-01 -2.73046847e-02 -3.88177931e-01\\n-5.63815609e-03 -8.98531079e-02 -5.11775911e-01 2.94380754e-01\\n-8.52831081e-02 2.20850557e-02 2.17043966e-01 -8.43321308e-02\\n-3.31014484e-01 -1.76363513e-01 2.91098952e-01 2.31171250e-01\\n-3.23097408e-01 -1.76223069e-01 -1.07879072e-01 -9.66995060e-01\\n1.99077353e-01 1.06915655e-02 -6.90839067e-02 1.18711203e-01\\n-2.86572352e-02 -3.70634198e-01 1.82055548e-01 -5.09319782e-01\\n-9.18113440e-02 -3.87641340e-02 -3.02337617e-01 -3.81228417e-01\\n1.13231614e-01 1.85672238e-01 -2.77727932e-01 4.40083146e-01\\n-3.88970673e-01 3.21915329e-01 -2.35065687e-02 8.29701573e-02\\n-1.47689611e-01 -1.45058513e-01 5.09721562e-02 -3.35019141e-01\\n-3.69671762e-01 -9.01376382e-02 -1.43321022e-01 -1.21432342e-01\\n-4.56349030e-02 -2.64179885e-01 -1.05055653e-01 -2.61708396e-03\\n2.68238187e-01 1.43156394e-01 -1.52140945e-01 -7.02191889e-02\\n1.20972924e-01 -3.92282397e-01 -3.18160504e-02 -2.48903632e-01\\n-1.26688406e-01 -1.08237855e-01 1.46992385e-01 1.04872912e-01\\n3.54236327e-02 -3.75292987e-01 2.62142450e-01 -3.00062656e-01\\n-2.87245572e-01 9.10059437e-02 1.80830836e-01 5.76909110e-02\\n3.01194131e-01 -4.65094179e-01 -8.72469991e-02 4.44143713e-01\\n9.57387537e-02 1.40904382e-01 3.07736427e-01 -1.10900603e-01\\n-2.69042850e-01 4.30029869e-01 -3.69489223e-01 -5.09288646e-02\\n7.83908725e-01 3.38351876e-01 1.94277927e-01 2.04525501e-01\\n1.37326777e-01 3.10297310e-01 4.44158882e-01 1.19708017e-01\\n2.10691541e-02 4.54800189e-01 8.74161124e-02 -6.25064850e-01\\n6.27248585e-02 1.11879274e-01 -2.81737536e-01 -2.33830795e-01\\n6.12611711e-01 3.86091083e-01 -3.12427223e-01 -3.53459537e-01\\n-1.69712156e-01 -1.30875319e-01 2.38891542e-01 -1.44318774e-01\\n1.04649961e-01 -1.29990354e-01 4.90545720e-01 -1.06933720e-01\\n5.33149876e-02 4.58107203e-01 -2.55324900e-01 -2.50051677e-01\\n-6.25605732e-02 1.83780521e-01 1.07071139e-01 5.42647541e-01\\n-2.58609056e-01 3.29797059e-01 1.81031018e-03 2.23683327e-01\\n-1.17190361e-01 6.49629980e-02 3.58218431e-01 5.34724556e-02\\n1.39362976e-01 1.00770570e-01 2.26585850e-01 4.42650199e-01\\n2.80875623e-01 4.57783580e-01 2.31022030e-01 -2.32531372e-02\\n4.20621693e-01 4.24853265e-01 3.07903945e-01 2.23433584e-01\\n-2.98549552e-02 -7.71939233e-02 5.42614721e-02 -5.79893216e-03\\n1.99025795e-01 3.22845250e-01 4.48922664e-02 9.02114034e-01\\n3.66207510e-01 3.05928946e-01 6.80964649e-01 -6.25916004e-01\\n-4.06780779e-01 4.88804504e-02 4.54970151e-01 -4.67326999e-01\\n-1.15761392e-01 2.47231834e-02 -3.23830873e-01 1.46203905e-01\\n-5.53568959e-01 -2.17055753e-01 -1.41743705e-01 -3.95824201e-02\\n6.01592399e-02 -9.71162394e-02 -3.03052634e-01 -1.11460380e-01\\n-1.21884130e-01 -5.95332310e-02 -5.35667181e-01 -1.99593082e-01\\n-2.40810275e-01 -2.36846045e-01 -1.80764094e-01 -1.65303960e-01\\n-6.06713295e-02 -2.65615165e-01 -1.42208546e-01 2.98326034e-02\\n2.57583439e-01 -1.29467160e-01 -9.14196447e-02 -8.67619216e-02\\n1.91464648e-01 2.21810520e-01 5.27695298e-01 -1.22102991e-01\\n1.13259822e-01 -8.16389024e-02 -1.65111929e-01 5.92556484e-02\\n1.42112523e-01 6.17391169e-02 -2.76884641e-02 4.42933500e-01\\n-3.05534720e-01 -2.91576058e-01 -6.22137114e-02 3.31866473e-01\\n-5.64794004e-01 6.98598847e-02 6.28677979e-02 2.60065317e-01\\n6.28395844e-03 9.75773409e-02 -2.74697989e-01 4.44726720e-02\\n-2.29628667e-01 -4.98106003e-01 2.32364729e-01 -5.01548946e-02\\n-1.58210844e-01 8.27104971e-02 2.23257557e-01 1.51190028e-01\\n-1.45603970e-01 -2.35383749e-01 2.30863527e-03 1.16091892e-01\\n7.44408891e-02 2.37303838e-01 -2.10784853e-01 -2.89057612e-01\\n-3.27812672e-01 1.97639823e-01 -3.14291835e-01 2.05503881e-01\\n-5.88432923e-02 2.87641495e-01 1.26970172e-01 2.35756472e-01\\n2.58210897e-01 1.25476317e-02 -9.92365330e-02 -2.08201453e-01\\n-2.19911724e-01 -2.02710077e-01 1.33314148e-01 -2.05924429e-04\\n2.15275779e-01 -3.84161532e-01 -1.18480779e-01 -2.07286224e-01\\n-2.25694269e-01 -4.85371411e-01 -2.79661678e-02 -1.75728783e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Data Scientist. This role is permanent position based in Basel Canton. Your Role: Design & implement Predictive Analytics & Data Science applications. Look for solutions for the analysis & visualization of data for different problems. Act as a business enabler & advise departments on technology, methodology & operationalization. Partake in the development of new ideas & areas of application. Your Skills: Several years of professional experience as a Data Analyst or Data Scientist. Experience in the application & communication of machine learning algorithms or deep learning (e.g. GLMs, Random Forests, Support Vector Machines, Neural Networks). Sound experience in dealing with complex data structures. Good knowledge of relevant tools (R or R Studio, SQL, Python) & common BI tools (SAS VA, SAS EG, DataRobot). Your Profile: Completed University Degree with quantitative orientation (mathematics, statistics, business informatics). Very good understanding of overall corporate relationships. Strong analytical & conceptual skills & highly team & customer-oriented. Open, creative & innovative with a high level of self-initiative. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers',\n", + " 'soft_skills': '[\"Communications\", \"Creativity\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"E-Learning Development\", \"Tooling\", \"Advising\", \"Analytics\", \"SAS (Software)\", \"Business Statistics\", \"Mathematical Statistics\", \"Visualization\", \"Python (Programming Language)\", \"Random Forest Algorithm\", \"Business Informatics\", \"Machine Learning Methods\", \"Data Science\", \"Operationalization\", \"Conceptualization\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Deep Learning\", \"Receivables\", \"Data Structures\", \"Predictive Analytics\", \"Algorithms\", \"Support Vector Machine\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " 'languages': \"['English', 'Urdu', 'Tamil', 'Ganda', 'Catalan']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.94451922e-01 2.88712293e-01 4.79655236e-01 -3.42757665e-02\\n3.94566208e-01 -1.11883506e-01 -3.18306983e-02 2.08265081e-01\\n-1.29073679e-01 -3.08327973e-01 -1.38809383e-01 -2.45947987e-01\\n-3.04558307e-01 2.12930962e-02 1.05452396e-01 3.95390332e-01\\n1.64450854e-01 7.23929852e-02 -2.84079999e-01 3.83422703e-01\\n1.03670388e-01 9.05080959e-02 -1.82524785e-01 6.36543810e-01\\n4.63715613e-01 -4.15222794e-02 -1.37389570e-01 1.21770084e-01\\n-2.58633465e-01 -3.10323417e-01 3.39382261e-01 1.16952978e-01\\n-9.63014513e-02 -1.76837996e-01 1.52718931e-01 1.60977527e-01\\n-2.22446233e-01 3.44941253e-03 -9.63980481e-02 2.30476469e-01\\n-5.72414219e-01 -4.05430108e-01 1.14465104e-02 1.21279676e-02\\n-3.51623356e-01 -1.97628260e-01 1.13612659e-01 1.25464853e-02\\n-6.48280159e-02 2.24587917e-02 -6.76585972e-01 2.87804514e-01\\n-2.37161726e-01 -2.01760456e-01 2.85778284e-01 5.04246533e-01\\n9.09196213e-02 -6.45081043e-01 -2.90141433e-01 -3.29048395e-01\\n3.87550965e-02 -5.28387353e-02 -3.74020711e-02 -2.75560379e-01\\n5.00267506e-01 -8.36459398e-02 -7.19986260e-02 3.51167381e-01\\n-8.81420970e-01 -1.63720608e-01 -2.56699204e-01 4.37843287e-03\\n-4.20008481e-01 4.67912704e-02 -2.85988867e-01 -3.46167907e-02\\n-2.57863831e-02 3.23837310e-01 -4.58000302e-02 1.35441795e-01\\n-2.80385107e-01 3.54673028e-01 -8.97599682e-02 2.56789833e-01\\n4.10343826e-01 1.16488278e-01 1.03198029e-01 3.95931512e-01\\n-4.08828914e-01 3.24235171e-01 1.33849546e-01 -3.14239830e-01\\n1.64336592e-01 2.06909537e-01 5.69321692e-01 2.72098213e-01\\n-1.28106907e-01 2.08425581e-01 -1.50531054e-01 2.47220472e-01\\n1.56453595e-01 -2.82171577e-01 9.99054313e-02 -3.90973128e-02\\n-2.13386729e-01 -3.33606191e-02 -3.39850143e-04 2.97115237e-01\\n-1.65337935e-01 3.04801702e-01 1.80861831e-01 -1.64360270e-01\\n-5.47631681e-02 -5.97316384e-01 -1.18603870e-01 -3.59033979e-02\\n9.75032747e-02 2.10459977e-01 3.05603832e-01 1.16070732e-01\\n1.82708308e-01 9.51646045e-02 1.91930830e-01 9.51175213e-01\\n-3.80824693e-02 -1.92200916e-03 -1.35267884e-01 3.17445934e-01\\n3.04273427e-01 -2.11888149e-01 1.81864515e-01 3.71508211e-01\\n1.73939422e-01 -1.09176725e-01 -3.60840440e-01 5.21579802e-01\\n-2.08924249e-01 -2.58422736e-02 -4.36502695e-01 8.36091936e-02\\n-2.54930317e-01 -4.99556124e-01 6.22847140e-01 1.38894498e-01\\n3.46470267e-01 6.94538583e-04 6.10827701e-03 -1.31122053e-01\\n-1.22452088e-01 3.10157478e-01 -3.63909714e-02 2.84927309e-01\\n-3.26196820e-01 -2.38905832e-01 -1.51871920e-01 3.39236289e-01\\n-9.53172520e-02 1.91311598e-01 -1.23283342e-02 -1.98974162e-01\\n2.82019526e-01 1.46738902e-01 -4.02581304e-01 1.47536069e-01\\n-1.28262475e-01 -3.07639152e-01 -7.97809288e-02 3.16156477e-01\\n-7.77336508e-02 2.09422037e-01 3.22482213e-02 -2.43627682e-01\\n5.90117335e-01 2.12173223e-01 1.23138964e-01 -4.55988050e-02\\n2.81528145e-01 -1.54105708e-01 3.16745400e-01 1.23499252e-01\\n-8.11372221e-01 2.87390828e-01 2.43022684e-02 -8.31407160e-02\\n5.51492311e-02 1.41617820e-01 4.11935240e-01 -4.49855983e-01\\n-1.50264204e-01 -2.51525044e-01 -5.56012809e-01 -3.81326050e-01\\n-4.27273571e-01 3.05585861e-02 4.57227260e-01 -3.24186146e-01\\n-6.29257560e-02 1.38955623e-01 -6.21518612e-01 -1.78946093e-01\\n1.39425904e-01 1.25439584e-01 1.35065034e-01 -5.01265600e-02\\n-4.48589586e-02 -7.39397645e-01 -4.88783345e-02 -5.02204716e-01\\n-6.53059781e-01 -7.08361939e-02 -3.73954058e-01 1.90239295e-01\\n4.69043516e-02 1.19213201e-01 -7.29179010e-02 9.67196822e-02\\n-4.57982510e-01 -3.44630033e-02 2.65330464e-01 1.53048247e-01\\n2.96455473e-01 -1.32059485e-01 -4.32817280e-01 4.60135937e-01\\n-2.08420262e-01 7.38423765e-01 2.72785366e-01 -8.85912895e-01\\n7.96770215e-01 2.60405153e-01 7.33994693e-02 -4.84383225e-01\\n4.43412364e-01 -3.77090782e-01 -2.45502219e-01 2.31780350e-01\\n-2.01599002e-01 -2.10446283e-01 3.07180673e-01 -2.17752069e-01\\n-3.65946293e-01 5.87624431e-01 2.56463140e-01 -4.08534557e-02\\n3.95624995e-01 -4.05463547e-01 -1.22679062e-01 -3.66899162e-03\\n-1.31733507e-01 -2.04089597e-01 -2.35976890e-01 2.44546801e-01\\n-8.06572288e-02 -5.49001634e-01 -1.42320722e-01 -3.35849106e-01\\n-1.21120311e-01 -4.39557821e-01 -2.78865635e-01 5.36614060e-01\\n6.77339286e-02 1.25205204e-01 7.72644058e-02 -7.00883195e-02\\n-1.78527720e-02 -6.56660497e-01 -2.22963706e-01 -1.90416612e-02\\n5.20841122e-01 1.91203967e-01 3.12111732e-02 -1.74477398e-01\\n-2.87167504e-02 5.80697298e-01 -4.67668772e-01 -5.00538766e-01\\n7.26829693e-02 5.11139259e-02 -6.85254335e-02 -1.13346785e-01\\n5.85114732e-02 5.09533107e-01 -2.23222956e-01 3.96335637e-03\\n-1.51398182e-01 -4.18620370e-03 2.16405272e-01 -1.36178639e-02\\n-1.43086076e-01 -2.98319340e-01 -5.57357781e-02 3.00148487e-01\\n-5.47363818e-01 -1.41328484e-01 5.46629012e-01 3.96016061e-01\\n2.53075719e-01 1.52093977e-01 4.37141746e-01 -1.70914561e-01\\n-3.19694579e-01 -3.33840102e-01 -7.46769505e-03 2.92954803e-01\\n5.37281930e-02 2.27364991e-02 -4.46245559e-02 -4.47685122e-01\\n-2.64417005e+00 -2.20171332e-01 3.39664698e-01 -2.79724270e-01\\n1.71791062e-01 -9.73650068e-02 3.49282585e-02 -3.96619961e-02\\n-3.04762125e-01 -4.49918807e-02 -2.30467573e-01 -8.82003307e-02\\n-5.55954240e-02 3.50446045e-01 1.74214244e-01 6.24148473e-02\\n2.12062132e-02 -2.72872537e-01 -1.67676374e-01 3.28157485e-01\\n-2.12868247e-02 -6.56988382e-01 1.81175455e-01 -6.16404489e-02\\n1.27567247e-01 9.20591652e-02 -3.30397964e-01 -2.55830726e-03\\n-1.78009942e-01 -2.97839761e-01 -7.05694454e-03 -2.86754519e-01\\n-1.60239667e-01 2.72332072e-01 1.23715550e-01 -3.47245410e-02\\n2.04550172e-03 -2.10132182e-01 -7.99290314e-02 -5.21965384e-01\\n6.28079996e-02 -5.72821319e-01 1.03689972e-02 -1.48849487e-01\\n6.45066142e-01 -2.85108477e-01 2.08503693e-01 9.32704434e-02\\n1.98064700e-01 1.45452008e-01 1.46923689e-02 6.87651709e-02\\n-4.41084385e-01 -3.72400105e-01 6.85887337e-02 -2.31668875e-01\\n5.66516519e-01 5.58244944e-01 -2.16827184e-01 -2.78893150e-02\\n2.18477264e-01 -3.88503730e-01 -2.93528378e-01 -6.14344537e-01\\n-1.35776356e-01 -1.84180364e-01 -8.50409925e-01 -4.69372958e-01\\n-9.20941979e-02 -1.20046854e-01 -2.34788015e-01 6.63853884e-01\\n-4.44731742e-01 -4.36461955e-01 -1.79541539e-02 -6.59527302e-01\\n1.66962564e-01 -2.32705817e-01 1.33175746e-01 -2.20617995e-01\\n-3.56607467e-01 -4.78635043e-01 1.72063828e-01 -1.73930287e-01\\n-2.34367147e-01 -1.73171848e-01 -5.98391034e-02 -3.67533207e-01\\n-2.63334870e-01 -3.56467009e-01 4.08146352e-01 1.36142522e-01\\n3.70150328e-01 1.05749793e-01 4.46379513e-01 2.48953160e-02\\n4.08709764e-01 -4.55726404e-03 7.35204965e-02 -4.01699752e-01\\n8.94271061e-02 -1.55719779e-02 5.34370422e-01 -2.85878837e-01\\n2.00207993e-01 2.67658055e-01 -2.42420167e-01 -1.25805780e-01\\n4.38407898e-01 9.53997597e-02 -1.71490274e-02 -1.77488118e-01\\n4.60936546e-01 -5.63630939e-01 -2.56460607e-01 2.57032603e-01\\n-4.43182001e-03 7.86784887e-01 1.43650725e-01 -4.37986404e-01\\n-3.11465651e-01 5.77587485e-01 -1.86038107e-01 -1.61490440e-01\\n-3.85091715e-02 1.81653276e-01 -7.83060789e-02 1.73257068e-01\\n5.44332638e-02 -2.49107495e-01 -3.02379429e-01 -8.16930756e-02\\n4.08012383e-02 1.23818658e-01 2.32871264e-01 -1.47342477e-02\\n4.78255562e-02 4.26692190e-03 -2.29151607e-01 6.68174550e-02\\n2.38976747e-01 2.73711354e-01 1.40279889e-01 -2.76432604e-01\\n-1.15706027e-01 3.74457359e-01 -2.18550250e-01 3.18009198e-01\\n-1.33570418e-01 6.35033771e-02 -4.85777318e-01 -2.14799598e-01\\n-1.46649003e-01 -3.34001541e-01 1.96599096e-01 2.65504271e-01\\n1.08771622e-01 -5.36692403e-02 1.31764725e-01 -6.10931754e-01\\n3.85548353e-01 2.32390866e-01 9.74788964e-02 1.36992875e-02\\n1.79423974e-03 5.21565914e-01 1.78289786e-02 -5.21691144e-02\\n-4.05085795e-02 -5.68163097e-02 -2.70531237e-01 -3.98385257e-01\\n1.29216030e-01 -4.65481788e-01 -1.44471183e-01 5.97691238e-01\\n1.08587168e-01 -3.11341226e-01 -3.74130070e-01 2.24345312e-01\\n2.23323554e-01 -2.31927767e-01 -1.75030783e-01 1.34659233e-02\\n1.61347121e-01 8.74023587e-02 2.10210785e-01 -3.02027702e-01\\n-1.07034348e-01 -2.37622038e-02 -1.68131337e-01 4.66236442e-01\\n3.18863392e-01 -3.95301022e-02 -2.07874313e-01 -1.70427769e-01\\n4.47603405e-01 2.11396068e-02 -6.15353100e-02 -9.43835750e-02\\n1.31282315e-01 -2.85846651e-01 -4.10807163e-01 2.24308260e-02\\n-7.08927661e-02 -1.34803385e-01 2.50950027e-02 -8.79950002e-02\\n6.83161542e-02 5.48832603e-02 -3.98496270e-01 -2.92649955e-01\\n-4.74168360e-01 -1.25644013e-01 1.60691187e-01 -3.02253127e-01\\n4.41723093e-02 -1.86971445e-02 -5.64883649e-01 2.44648069e-01\\n-3.00406545e-01 9.72415432e-02 1.32585257e-01 2.00392932e-01\\n-3.27953428e-01 -9.64241028e-02 2.82093068e-03 1.02522038e-01\\n-4.00131375e-01 -1.88460931e-01 -4.08567078e-02 -9.62030709e-01\\n9.28848982e-02 7.41461664e-02 5.67973172e-03 2.80601121e-02\\n-5.26953824e-02 -7.38703668e-01 8.04946646e-02 -3.75326484e-01\\n9.38704833e-02 9.19223651e-02 -2.21614718e-01 -3.20063442e-01\\n2.25402802e-01 -2.81244908e-02 -3.14861119e-01 4.20359999e-01\\n-5.97287118e-01 1.99475527e-01 1.33476540e-01 1.10531770e-01\\n2.73519531e-02 -1.97806925e-01 2.15876669e-01 -1.69721678e-01\\n-3.61009717e-01 -3.81908596e-01 -3.38776469e-01 -1.78632885e-01\\n7.03844279e-02 -2.96655148e-01 -2.18959838e-01 8.37817565e-02\\n4.04608071e-01 1.53595120e-01 -8.02776590e-02 -1.67518005e-01\\n1.11924246e-01 -3.73409152e-01 6.68731853e-02 -3.73279452e-01\\n-1.17954090e-02 -9.16166231e-03 1.89061910e-01 -1.68983251e-01\\n1.40729591e-01 -3.26090932e-01 5.30845582e-01 -2.36775160e-01\\n-4.24316466e-01 -3.77250314e-02 5.06704561e-02 -1.60248729e-03\\n2.29607016e-01 -4.53545332e-01 1.59035563e-01 2.92837143e-01\\n-1.54973892e-02 2.70581082e-03 3.29156697e-01 -4.65531312e-02\\n-6.94853440e-02 1.80897340e-01 -5.46628833e-01 -6.93782568e-02\\n7.71242201e-01 2.30498791e-01 3.53271025e-03 2.58054882e-01\\n1.07105821e-01 4.54410851e-01 5.49854636e-01 -1.45800456e-01\\n2.91179642e-02 1.70138896e-01 7.20451474e-02 -4.99157012e-01\\n-1.67325199e-01 -2.00526893e-01 -2.61443436e-01 -1.92220703e-01\\n5.58028698e-01 3.62255812e-01 -3.51134807e-01 -2.83111781e-01\\n4.76202630e-02 -9.89143997e-02 3.79354805e-01 -6.20207563e-02\\n-1.10904410e-01 2.62609292e-02 5.51997483e-01 3.55934650e-02\\n3.90787899e-01 5.67669630e-01 -2.48128340e-01 -4.47337985e-01\\n-1.63442388e-01 1.34954393e-01 3.16528566e-02 5.20113409e-01\\n-6.83552846e-02 3.15064013e-01 8.26360136e-02 4.53245267e-02\\n-6.40723705e-02 2.58654058e-01 2.49762625e-01 -8.95783585e-03\\n3.15026700e-01 1.12426162e-01 1.52486950e-01 6.34689271e-01\\n4.23303321e-02 4.79032218e-01 3.43819022e-01 1.16139963e-01\\n2.66479403e-01 6.64068162e-01 4.17775035e-01 2.22300068e-01\\n3.14682461e-02 9.27320421e-02 -8.48014932e-03 4.17517535e-02\\n4.39160168e-01 3.21849972e-01 3.06847513e-01 9.26698685e-01\\n2.95355082e-01 3.36329669e-01 8.13102126e-01 -8.00214350e-01\\n-4.07691002e-01 1.81957647e-01 4.78469133e-01 -3.18975359e-01\\n-1.28250793e-01 9.29368064e-02 -2.27630720e-01 3.52482229e-01\\n-4.93876427e-01 -7.05936104e-02 -9.15077794e-03 3.60119119e-02\\n-4.70120534e-02 -4.32914011e-02 -2.62629360e-01 -2.63684131e-02\\n-2.73251355e-01 -1.09856024e-01 -1.55240133e-01 -2.39006758e-01\\n-4.48880225e-01 -8.59628394e-02 -4.06479090e-02 -3.34375426e-02\\n-2.02690795e-01 -4.91483390e-01 -1.87768713e-01 1.05006039e-01\\n4.37146872e-01 -2.43087545e-01 -9.08244848e-02 -2.37111002e-01\\n-5.10944612e-02 3.68373543e-01 6.27204955e-01 -8.62507075e-02\\n1.12266839e-01 -1.14382125e-01 -2.94280767e-01 3.88912717e-03\\n5.71132489e-02 5.93680590e-02 1.90981656e-01 5.07438004e-01\\n-2.96670169e-01 -8.21104571e-02 1.78822696e-01 2.21033871e-01\\n-4.61400658e-01 -1.92521766e-01 -8.72386247e-02 3.23366404e-01\\n4.92102988e-02 2.80926496e-01 -2.94260710e-01 7.82772154e-02\\n-2.98183411e-01 -4.84718919e-01 6.19120181e-01 -1.68109179e-01\\n-8.90398175e-02 2.58658528e-01 3.19241762e-01 2.14343160e-01\\n-2.43808001e-01 -1.15404204e-01 3.30715999e-02 4.36267644e-01\\n-1.48036882e-01 5.27615011e-01 -1.95877090e-01 -2.61826906e-02\\n-2.52834052e-01 2.58946627e-01 -1.67042553e-01 2.18692049e-01\\n-6.48731738e-02 3.39756668e-01 5.18625267e-02 -4.01512310e-02\\n2.41217628e-01 8.69773924e-02 -2.01392874e-01 -2.42401674e-01\\n-2.22477540e-01 -3.69373590e-01 1.76988050e-01 -1.74670406e-02\\n1.57323092e-01 -3.86331558e-01 -6.09693117e-02 -8.81638974e-02\\n-1.56940773e-01 -3.89345735e-01 -3.24429125e-01 1.36613205e-01]]',\n", + " 'job_description': 'Job Informationen Your tasks: Design and build complex data processing pipelines and data-centric systems Build tools and components for data ingestion and data transformation Develop machine learning modules for various forms of data and modalities Systematically work towards strict metrics (performance, resource usage, reliability) Work within a talented and fast-paced team of engineers Your profile: 1-3 years of experience in building large scale distributed systems In-depth understanding of concepts such as algorithms, networking and internet technology Deep knowledge in Scala, Java, or C++ and Python, Bash, or Perl Knowledge of databases and messaging systems (e.g. Couchbase, Kafka) Knowledge of modern architectural patterns e.g. REST, microservices, stream processing Knowledge of a batch processing framework e.g. Spark, Hadoop Experience with version control systems (e.g. Git) and cloud technologies (e.g. AWS) Interest in large scale data mining and machine learning is desirable Knowledge of client-side technologies (e.g. JavaScript, Angular, React) is a plus Bachelor/MSci/PhD degree in Computer Science or equivalent Ability to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala JAVA C++ Python Python Bash Perl Python JavaScript Angular Englisch',\n", + " 'soft_skills': '[\"Communications\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"Distributed File Systems\", \"Python Server Pages\", \"Knowledge Process Outsourcing\", \"Computer Science\", \"Perl (Programming Language)\", \"Message Handling Systems\", \"Build Tools\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Version Control\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Transformation\", \"Microservices\", \"Pipelining\", \"React.js\", \"Machine Learning Methods\", \"Stream Processing\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Bash (Scripting Language)\", \"Architectural Patterns\", \"Electronic Data Processing\", \"Data Mining\", \"Java Data Mining\", \"Angular (Web Framework)\", \"Modulation\", \"Batch Processing\", \"Resourcing\", \"Algorithms\", \"Git Flow\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"Data Ingestion\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Turkmen', 'Bengali', 'Irish', 'Pali']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'control software engineer - traction applications',\n", + " 'location': 'Turgi',\n", + " 'industry': 'Electrical & Electronic Manufacturing',\n", + " 'website': 'www.abb.com',\n", + " 'jobdescription_embedded': '[[ 1.27941638e-01 1.04208589e-01 5.02936244e-01 -7.02222586e-02\\n3.28796089e-01 -1.84860945e-01 1.36446714e-01 3.66486758e-01\\n-1.07214510e-01 -5.52111864e-01 1.49877602e-02 -3.19612175e-01\\n-3.58978249e-02 2.98363537e-01 3.48750576e-02 3.85390818e-01\\n1.74057066e-01 1.69013023e-01 -1.05473533e-01 3.46250325e-01\\n2.53397971e-01 -4.80924640e-03 3.63806576e-01 7.60651529e-01\\n5.10873914e-01 -3.37455049e-02 -2.41154823e-02 6.14154385e-04\\n-1.36045724e-01 -1.73095897e-01 4.13118452e-01 -6.07481785e-02\\n4.08810079e-02 -3.12392443e-01 9.62288082e-02 -1.56803399e-01\\n-2.51072407e-01 -3.37139070e-01 1.14097431e-01 2.95588285e-01\\n-5.58076560e-01 -3.84142518e-01 -7.34925121e-02 1.16630597e-02\\n-1.88550055e-01 -2.49576658e-01 3.42000425e-02 5.54808453e-02\\n3.07706833e-01 4.34531318e-03 -4.15546149e-01 2.83207536e-01\\n-3.09020579e-02 -1.13187686e-01 1.49148718e-01 5.06209671e-01\\n-9.75675732e-02 -3.22972476e-01 -4.12501037e-01 -2.54543006e-01\\n1.08154573e-01 5.87871857e-02 8.41377750e-02 -2.84544855e-01\\n2.33281031e-01 2.00475827e-01 6.48125559e-02 4.21049654e-01\\n-7.74961770e-01 -1.59693375e-01 -1.83447227e-01 -1.99853957e-01\\n-8.68592933e-02 -1.00915782e-01 -1.30245551e-01 -1.63973019e-01\\n-2.36774132e-01 4.79152143e-01 1.08106971e-01 -6.06128089e-02\\n-8.33210349e-02 3.86654109e-01 -1.89083412e-01 3.90937030e-01\\n1.68607488e-01 3.40837985e-01 6.38074353e-02 1.60879463e-01\\n-2.68321455e-01 5.55066109e-01 -4.10661064e-02 -2.96081543e-01\\n2.16929704e-01 1.56272918e-01 4.63058323e-01 -3.58474165e-01\\n2.04941273e-01 -2.18299091e-01 -3.82326484e-01 3.85489196e-01\\n1.55657545e-01 -2.22336382e-01 2.01173574e-01 -7.40383789e-02\\n-8.47497582e-02 9.07416120e-02 8.31178427e-02 1.40176162e-01\\n-2.19287440e-01 4.17576015e-01 1.53219119e-01 -1.26878470e-01\\n-1.87408060e-01 -4.54358697e-01 -6.89500617e-03 -8.81515536e-03\\n2.41456777e-01 8.63354579e-02 1.33685812e-01 8.95515084e-02\\n2.54803717e-01 -1.28679961e-01 1.68719783e-01 7.09481835e-01\\n-3.21145132e-02 4.14338447e-02 -2.25505054e-01 2.03644395e-01\\n-9.14929528e-03 -2.94906199e-01 3.67103875e-01 2.91851908e-01\\n-6.41124174e-02 -2.42998183e-01 -2.26995289e-01 3.15706223e-01\\n4.25682776e-02 -2.23649397e-01 -1.72195554e-01 2.19157130e-01\\n-2.89882068e-02 -3.67987990e-01 6.64139390e-01 9.25463438e-02\\n1.40526146e-01 -1.10294543e-01 -5.20143732e-02 -1.30121842e-01\\n-1.10380895e-01 1.14472784e-01 4.97846529e-02 -1.34830102e-01\\n-2.13072613e-01 -2.13014692e-01 -2.23283187e-01 -9.99848470e-02\\n-2.06248790e-01 1.42980516e-01 -4.37393822e-02 6.14479259e-02\\n1.79708406e-01 -1.82131883e-02 -1.49025768e-01 3.87838274e-01\\n-1.37900934e-01 4.47326824e-02 1.09474301e-01 1.64628237e-01\\n-2.96373725e-01 1.22762464e-01 -1.48643807e-01 -2.49756098e-01\\n5.04154801e-01 6.54271394e-02 8.69186446e-02 1.06178522e-01\\n3.17419112e-01 -3.61420624e-02 -2.96618007e-02 1.33820996e-01\\n-7.61161447e-01 2.75321305e-01 -3.78625393e-02 -1.05766281e-01\\n2.34149367e-01 -9.72538367e-02 2.19240502e-01 -5.73268197e-02\\n7.01940805e-02 -1.09355077e-01 -3.27697009e-01 -2.75818676e-01\\n-5.44577837e-02 -4.41970453e-02 3.92697364e-01 -3.16745043e-01\\n-1.66462615e-01 2.91078407e-02 -3.63382906e-01 -1.95814185e-02\\n6.71065375e-02 1.71613604e-01 2.38372475e-01 1.12460241e-01\\n-2.46660024e-01 -1.53318286e-01 1.13374986e-01 -2.86465228e-01\\n-8.93836319e-02 -1.25122622e-01 -2.87901670e-01 2.22790048e-01\\n5.72308265e-02 -3.48185911e-03 -1.48837581e-01 -8.79647285e-02\\n3.13894674e-02 -1.11982010e-01 3.18125896e-02 -1.93875059e-02\\n1.78710341e-01 9.84959584e-03 -4.38370407e-01 2.03010589e-01\\n1.13077788e-03 5.32300711e-01 7.46816443e-03 -6.66972399e-01\\n3.05053473e-01 3.35856736e-01 4.62568402e-02 -3.61843616e-01\\n5.47922850e-01 -1.26336038e-01 -9.03926045e-02 1.05855197e-01\\n-4.49575633e-01 -3.65863025e-01 2.30997711e-01 -2.29096994e-01\\n-1.58150390e-01 3.88977557e-01 1.59848735e-01 2.71965861e-01\\n5.13967201e-02 -4.21923064e-02 3.03896014e-02 9.42641199e-02\\n4.90152556e-03 -2.53129154e-01 -4.43360806e-01 -1.92371294e-01\\n8.91374482e-04 -3.03328604e-01 -1.30850673e-01 -3.89661938e-01\\n-1.52098894e-01 -3.09668869e-01 -7.43452311e-02 1.22019276e-01\\n3.42910349e-01 -7.08753392e-02 7.86502436e-02 4.88435267e-04\\n-2.27955028e-01 -4.91899490e-01 -6.20700866e-02 1.49062678e-01\\n4.94136453e-01 1.84042424e-01 4.78958562e-02 1.14385001e-01\\n3.41329090e-02 6.67155623e-01 -6.71893135e-02 -7.41044618e-03\\n3.17222118e-01 2.56792545e-01 1.23322479e-01 -8.82646441e-02\\n3.24193202e-02 3.07498157e-01 -2.42829561e-01 4.74207401e-02\\n-2.30444949e-02 7.27557093e-02 4.03348029e-01 2.03796998e-01\\n-2.52563328e-01 -1.91250488e-01 -1.03249565e-01 1.68217486e-03\\n-3.44477922e-01 -9.84110013e-02 5.44767618e-01 1.72253430e-01\\n1.57438770e-01 1.76779404e-01 1.91060990e-01 8.22802633e-02\\n-1.49049878e-01 -1.72565460e-01 7.35452026e-02 1.19380288e-01\\n1.48007125e-01 2.25408241e-01 -1.51359281e-02 -4.77109551e-01\\n-3.29352450e+00 -1.15252450e-01 9.74723622e-02 -2.37235934e-01\\n2.37883285e-01 -2.52117254e-02 6.63468465e-02 -6.65298030e-02\\n-3.12656999e-01 4.27756235e-02 -2.26148546e-01 -1.22639790e-01\\n3.34459811e-01 6.26738667e-02 7.34553337e-02 2.42100641e-01\\n1.70706868e-01 -2.67434955e-01 -1.27445042e-01 3.88151646e-01\\n-1.43990934e-01 -4.99152571e-01 1.72619015e-01 -5.28722368e-02\\n4.02721703e-01 1.90359607e-01 -3.13590944e-01 -9.71098989e-02\\n-1.42797381e-01 -1.25452831e-01 1.69232085e-01 -3.34048152e-01\\n-1.54027730e-01 2.55576760e-01 2.16375649e-01 -2.19714969e-01\\n2.07419395e-01 -4.31166261e-01 -1.94617569e-01 -2.61441886e-01\\n7.65423179e-02 -5.80603242e-01 -1.19056888e-01 -6.13782369e-02\\n6.90045059e-01 -2.77852267e-01 6.21462166e-02 3.99920382e-02\\n1.15454480e-01 2.78057873e-01 1.39917284e-01 5.09874225e-02\\n-2.03945264e-02 -3.91398847e-01 3.40020508e-02 -5.53668253e-02\\n3.71071905e-01 5.03852129e-01 -1.42286152e-01 -2.13713199e-01\\n9.35208127e-02 -5.38961440e-02 -3.98481905e-01 -1.13849439e-01\\n-1.69111162e-01 -3.11486989e-01 -6.14868462e-01 -4.42550898e-01\\n-7.10176677e-02 -1.66579768e-01 -2.01425493e-01 5.80610454e-01\\n-3.29478770e-01 -3.65234047e-01 1.06477446e-03 -3.44173551e-01\\n3.02796632e-01 -1.11219332e-01 2.11984329e-02 -1.34365633e-01\\n-2.53923625e-01 -3.21629345e-01 -6.46225885e-02 1.05557837e-01\\n2.54017510e-03 -2.35101879e-01 2.68679410e-01 -1.77175224e-01\\n-2.68009633e-01 -4.03794944e-01 3.29046726e-01 1.80561215e-01\\n1.28400981e-01 1.54093534e-01 2.63248265e-01 -5.79202324e-02\\n1.34102702e-01 -5.43665104e-02 2.45370679e-02 -3.23811084e-01\\n2.31778592e-01 5.42934202e-02 4.37971234e-01 -2.84160912e-01\\n-6.58356175e-02 -4.09579203e-02 -3.20900947e-01 -1.16975084e-01\\n1.93390325e-01 -6.97465837e-02 1.83564112e-01 -1.78345069e-01\\n1.51658952e-01 -2.94683814e-01 -2.53237914e-02 -8.48148912e-02\\n1.16027452e-01 5.11505961e-01 -1.12022355e-01 -3.02086204e-01\\n-1.36085510e-01 3.86389256e-01 -1.92726642e-01 -4.05950621e-02\\n-1.27205148e-01 1.23424895e-01 -2.19243869e-01 2.26247847e-01\\n-2.01157983e-02 -1.74714148e-01 -1.27479494e-01 -1.61235973e-01\\n-2.80247182e-01 3.04358959e-01 2.36515522e-01 5.37997596e-02\\n6.01178408e-02 -5.47598541e-01 -1.01652823e-01 2.21282125e-01\\n2.28435829e-01 4.61527705e-01 -2.78287549e-02 -1.80615559e-01\\n1.09480813e-01 4.46080178e-01 -1.77985460e-01 1.83807909e-01\\n-2.23948628e-01 3.70942093e-02 -3.03936064e-01 -2.58550882e-01\\n-3.32082510e-01 -3.72500032e-01 1.51883289e-01 3.17551166e-01\\n2.31204674e-01 -9.15679783e-02 2.06595957e-02 -4.29503769e-01\\n1.22757278e-01 -2.49126391e-03 1.67261183e-01 1.50806502e-01\\n-3.09255905e-02 4.64222789e-01 7.63714164e-02 -3.47498745e-01\\n-7.18814833e-03 -1.83428153e-01 -2.21719325e-01 5.80273336e-03\\n1.51722636e-02 -4.52019602e-01 -1.98103294e-01 4.81495678e-01\\n-1.81460008e-03 -4.42495108e-01 1.65523831e-02 2.88651258e-01\\n-1.12399869e-01 -1.56076059e-01 -2.26258099e-01 7.50443488e-02\\n2.69099832e-01 5.61237149e-02 3.31588000e-01 -4.64657933e-01\\n-4.73159291e-02 3.63019332e-02 -1.69987872e-01 4.35136348e-01\\n-5.86446375e-03 -7.01433569e-02 -3.74563009e-01 -2.92578787e-01\\n3.11832696e-01 -3.38440299e-01 -4.20743525e-02 1.67710647e-01\\n-4.66685407e-02 -1.03437297e-01 -6.18318915e-01 1.27690220e-02\\n-3.33449729e-02 -1.39523029e-01 3.40044312e-02 2.38431156e-01\\n1.28316388e-01 8.92876014e-02 -4.80585992e-01 -2.56557316e-01\\n-1.22974321e-01 3.41378041e-02 1.34486154e-01 -4.65917230e-01\\n-1.43022239e-01 -1.65571824e-01 -4.61083442e-01 1.69172391e-01\\n-1.75642237e-01 -1.34486005e-01 2.38955498e-01 -8.71101767e-02\\n-2.59848207e-01 6.53533340e-02 -6.81285784e-02 2.26555109e-01\\n-2.16677889e-01 -2.39699990e-01 -2.21365932e-02 -9.47338045e-01\\n2.07318425e-01 -5.70622683e-02 -1.06588408e-01 8.15362260e-02\\n-1.65985629e-01 -5.02763331e-01 -5.24537712e-02 -2.81802893e-01\\n-8.25889632e-02 -1.99180126e-01 -1.43265486e-01 -5.16529977e-01\\n1.00836098e-01 9.41019058e-02 -2.34200999e-01 3.66281986e-01\\n-1.34780601e-01 2.60599852e-01 -2.03730449e-01 4.50681262e-02\\n-1.81380555e-01 -3.92781645e-01 1.71714991e-01 -4.04635608e-01\\n-3.72197598e-01 -6.28055856e-02 -2.15686724e-01 -1.90642387e-01\\n-1.97513774e-01 -7.87488818e-02 -8.71785581e-02 1.57174453e-01\\n9.71390679e-02 -4.20378931e-02 -1.94389254e-01 -2.52539963e-01\\n9.72546041e-02 -5.30010939e-01 1.60587251e-01 1.98818371e-01\\n-1.52106568e-01 -6.40492216e-02 1.20054103e-01 1.22694179e-01\\n6.28878316e-03 -4.30599511e-01 1.56562403e-01 -5.21525025e-01\\n-3.25845659e-01 1.34372458e-01 -9.94451344e-04 -1.71263441e-02\\n3.55822980e-01 -3.16954821e-01 1.53173367e-02 2.70236522e-01\\n1.96636841e-02 1.40090734e-01 2.35059366e-01 -6.40647337e-02\\n-1.98783904e-01 2.63256371e-01 -1.58248961e-01 8.44380930e-02\\n7.29998767e-01 3.02921496e-02 1.12384558e-01 2.44730487e-01\\n8.22447762e-02 2.02869087e-01 2.82553285e-01 4.24147621e-02\\n-1.59584403e-01 1.47236258e-01 6.66650310e-02 -4.56389725e-01\\n-1.63728148e-02 6.92824572e-02 -2.23593995e-01 -4.10660088e-01\\n4.95097339e-01 5.72717905e-01 -4.53462034e-01 -1.38126865e-01\\n-1.62413448e-01 -1.27456620e-01 -5.52869998e-02 -4.01944593e-02\\n4.81797978e-02 4.25202250e-02 4.37882513e-01 -8.92557725e-02\\n1.12893417e-01 3.67509186e-01 -2.12363243e-01 -2.90394574e-01\\n-1.24666795e-01 2.02881902e-01 -1.43748552e-01 4.36694801e-01\\n-2.59533107e-01 4.40635622e-01 4.31438871e-02 2.84493584e-02\\n5.42890579e-02 6.07826263e-02 1.65582653e-02 8.17053765e-02\\n-6.97494522e-02 2.04621613e-01 3.78866553e-01 2.65078098e-01\\n4.12533790e-01 2.33281374e-01 2.39463031e-01 1.91259384e-01\\n4.52321410e-01 3.55183721e-01 2.23284915e-01 1.84441701e-01\\n-4.47473116e-02 -7.56550059e-02 1.23457819e-01 -4.60812496e-03\\n3.20152789e-01 1.72502041e-01 -5.92112076e-03 7.86928713e-01\\n2.07019210e-01 2.76441813e-01 6.29145443e-01 -5.30521274e-01\\n-3.14077348e-01 -1.36776746e-03 2.44431913e-01 -4.44484085e-01\\n-8.81904066e-02 1.84538271e-02 1.33058578e-01 1.50482357e-01\\n-3.44941199e-01 -1.95382938e-01 -1.04180366e-01 3.82777870e-01\\n1.05667189e-01 -3.39206338e-01 -2.38872692e-01 3.76401804e-02\\n-8.25453103e-02 -5.22907227e-02 -6.53713524e-01 -1.44205213e-01\\n-1.04137316e-01 -3.35317165e-01 -1.69073030e-01 -2.31888101e-01\\n-1.43805936e-01 -3.06127548e-01 6.00005724e-02 5.41137792e-02\\n1.35200784e-01 1.30848978e-02 1.49247125e-02 -1.70322448e-01\\n4.09270197e-01 1.33807018e-01 4.29144114e-01 -4.43502516e-02\\n1.31734744e-01 -1.83899045e-01 -2.25355014e-01 4.39996831e-02\\n3.65627408e-01 3.34873721e-02 1.88230705e-02 1.41860411e-01\\n-1.75433487e-01 -3.25554493e-03 2.56280955e-02 2.89823115e-01\\n-5.14896870e-01 1.50955364e-01 -9.75443721e-02 1.80171922e-01\\n1.68763593e-01 6.88201562e-02 -2.20944643e-01 7.07930513e-03\\n-2.00032353e-01 -3.14458966e-01 1.09761730e-01 1.09630384e-01\\n-2.29861215e-01 8.28039646e-02 3.66775542e-02 2.30058178e-01\\n-2.47346103e-01 -1.78360678e-02 -3.77556011e-02 7.48175606e-02\\n9.72928852e-02 2.33856514e-01 -1.66697457e-01 -3.21782231e-01\\n-2.03872770e-01 1.26747563e-02 -2.91535795e-01 9.03829634e-02\\n5.30078597e-02 2.75159329e-01 1.03877537e-01 4.46226932e-02\\n4.20177907e-01 -1.89449355e-01 -1.26977488e-01 -5.81302457e-02\\n-1.87608868e-01 -2.33863786e-01 -7.69748017e-02 -3.20217721e-02\\n6.49575889e-02 -2.94131428e-01 7.67793357e-02 -1.70512632e-01\\n-9.78299975e-02 -2.29860932e-01 1.32863969e-01 -2.30105340e-01]]',\n", + " 'job_description': 'Within our competence center for traction, we have a leading position in the development of control SW for traction and auxiliary converters for locomotives, high-speed trains, trams, subways and buses. We are looking for a passionate Control Engineer (m/f/d) eager to execute a SW project from the requirements to the first ride of a vehicle, to strengthen our motivated multidisciplinary Engineering team in Turgi. If you show great interest in control systems, power electronics and transportation systems, and look forward to make a train move, this is you opportunity to make a remarkable impact.Your responsibilitiesYour backgroundMore about usBring your very own sense of pride and purpose as you help us drive forward the Fourth Industrial Revolution – creating a sustainable future for our planet, and your career. Join ABB and harness the power of our diverse global network, as you collaborate with and learn from our world-class teams. Above all, challenge yourself every day. Let’s write the future, together. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Katharina Brettschneider Talent Partner Phone +41 79 627 94 59 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer',\n", + " 'soft_skills': '[\"Collaboration\", \"Writing\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"Tooling\", \"Locomotive\", \"Control Engineering\", \"Library For WWW In Perl\", \"Electronics\", \"Component Object Model (COM)\", \"Centering\", \"M (Programming Language)\", \"Transportation Management Systems\", \"Sustainability\", \"Executable\", \"Receivables\", \"Controllability\", \"Industrialization\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software development engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'job_description': 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " 'languages': \"['English', 'Burmese', 'Maldivian', 'English']\"},\n", + " {'company_id': '56',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zug',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.phaidoninternational.com/glocomms.aspx',\n", + " 'jobdescription_embedded': '[[-2.43850529e-01 2.72382528e-01 3.62147003e-01 1.05475143e-01\\n5.64463675e-01 -1.36005789e-01 -7.97749981e-02 3.20982099e-01\\n7.00121298e-02 -2.56747305e-01 -3.33801773e-03 -1.81914911e-01\\n-3.01793357e-03 5.88430241e-02 1.67581603e-01 4.78291273e-01\\n2.50651270e-01 6.83366656e-02 -6.38039038e-02 2.98699737e-01\\n1.69551070e-03 -2.10584506e-01 1.16742834e-01 6.95309639e-01\\n3.73485208e-01 -9.93378460e-02 -2.86191031e-02 -2.26225648e-02\\n-2.09341496e-01 -1.70963928e-01 4.46187168e-01 1.22594208e-01\\n-1.60163030e-01 -3.64637703e-01 6.59125745e-02 2.72816569e-01\\n-1.73772693e-01 4.33069328e-03 -1.70025185e-01 1.87668264e-01\\n-6.37780666e-01 -2.24600852e-01 3.15788239e-02 3.25679742e-02\\n-2.64658421e-01 -3.31989199e-01 1.73136458e-01 -3.12138021e-01\\n1.62450895e-01 1.35466412e-01 -5.39620101e-01 2.93552250e-01\\n-1.52373180e-01 -2.07093105e-01 3.82038295e-01 8.26367855e-01\\n1.05613142e-01 -5.60269713e-01 -5.11658370e-01 -3.11751783e-01\\n5.57976216e-02 -5.40161878e-02 6.28475845e-02 -3.39826584e-01\\n3.87359649e-01 -3.85149717e-02 7.83635080e-02 2.98169792e-01\\n-9.26566720e-01 -6.96198046e-02 -3.49127173e-01 1.34709433e-01\\n-3.81575137e-01 1.08675584e-01 -4.08447564e-01 -1.27913892e-01\\n-4.11687717e-02 3.97567540e-01 -5.39579466e-02 -7.77283683e-03\\n-2.06363127e-01 3.65156025e-01 -2.19555318e-01 2.70897746e-01\\n1.86108217e-01 2.32588112e-01 3.69884878e-01 2.78127044e-01\\n-3.73297274e-01 4.29723799e-01 2.22982034e-01 -2.66123265e-01\\n1.35260642e-01 8.37609097e-02 3.62701952e-01 1.94892883e-01\\n1.45441338e-01 2.17828915e-01 -2.88162589e-01 2.57139117e-01\\n2.82066554e-01 -2.59716183e-01 6.29792735e-02 -3.00702415e-02\\n6.37997389e-02 -3.43253836e-02 3.28811407e-02 8.16944242e-02\\n-3.81973833e-01 4.96595234e-01 8.12670141e-02 -2.19080940e-01\\n-1.15777887e-01 -5.79535007e-01 -1.71813115e-01 -5.45661636e-02\\n-5.79157621e-02 2.28720114e-01 1.20699584e-01 1.88114822e-01\\n2.61237115e-01 -9.20869559e-02 1.45063654e-01 8.13448310e-01\\n-9.41360965e-02 1.21746443e-01 -2.12254316e-01 3.10446769e-01\\n1.26127884e-01 -1.72471181e-01 2.14116320e-01 1.49413705e-01\\n3.79176438e-02 -1.58837706e-01 -3.32935214e-01 2.83023149e-01\\n-9.75927785e-02 -3.00291330e-01 -1.77671596e-01 3.49228263e-01\\n-5.35644144e-02 -5.85494161e-01 5.81192553e-01 -1.32777676e-01\\n1.99040964e-01 -1.00312486e-01 3.55289318e-02 -9.30498913e-02\\n-1.19858712e-01 3.02397430e-01 2.09428623e-01 1.63650811e-01\\n-1.98487759e-01 -1.85870439e-01 -8.51463079e-02 1.16189808e-01\\n-3.53211015e-01 8.90952647e-02 -2.14338258e-01 -1.21770397e-01\\n2.62857169e-01 1.43834144e-01 -3.57174248e-01 2.18979314e-01\\n-4.20053042e-02 -8.41410384e-02 -9.89966094e-02 3.20923448e-01\\n-2.49654874e-01 1.73336953e-01 -6.64294884e-02 -9.89985541e-02\\n6.56273544e-01 1.34154439e-01 3.20822060e-01 -1.09228324e-02\\n2.03662559e-01 -1.51451319e-01 3.31298858e-01 9.67081711e-02\\n-5.35336852e-01 4.78398025e-01 -7.16215523e-04 -3.02792102e-01\\n1.69815183e-01 -1.83978125e-01 4.79793698e-01 -3.77524436e-01\\n-2.68557481e-02 -2.77238429e-01 -3.21093231e-01 -3.63560349e-01\\n-2.63020784e-01 4.16784622e-02 3.27338278e-01 -4.36502606e-01\\n1.64414290e-02 3.43017548e-01 -6.18737221e-01 -2.86641061e-01\\n2.96165138e-01 1.52597904e-01 1.35270089e-01 1.23531483e-01\\n-1.39679998e-01 -6.66829288e-01 1.56150430e-01 -5.00757039e-01\\n-1.76749721e-01 1.21509545e-01 -2.60893375e-01 1.33992389e-01\\n-6.02664240e-02 5.14141023e-02 -9.33573768e-02 6.55213669e-02\\n-3.23407680e-01 1.08655684e-01 8.73041004e-02 7.32605383e-02\\n1.78943813e-01 1.13789342e-01 -5.53216755e-01 5.04407823e-01\\n-2.55804956e-01 4.83793527e-01 1.46183327e-01 -9.63343799e-01\\n5.13147175e-01 3.79610121e-01 2.92164944e-02 -1.97259262e-01\\n5.40556788e-01 -4.44336414e-01 -1.22041523e-01 4.86278646e-02\\n-3.54164958e-01 -1.94933206e-01 1.01445422e-01 -3.01939666e-01\\n-2.66051650e-01 6.12073958e-01 1.60637438e-01 1.27407983e-01\\n3.39424223e-01 -2.31475636e-01 -9.62576568e-02 1.60680249e-01\\n-2.26525903e-01 -1.65506706e-01 -6.35044277e-01 -1.74697433e-02\\n-7.15988353e-02 -5.10976434e-01 -1.24433510e-01 -3.23743105e-01\\n-2.58413464e-01 -4.07691896e-01 -2.11143151e-01 2.00545043e-01\\n2.70961016e-01 2.60867357e-01 -9.81855392e-02 9.75872800e-02\\n-1.23960227e-01 -7.80403256e-01 3.50281992e-03 8.61764252e-02\\n3.53683203e-01 3.99075419e-01 2.29886040e-01 -5.29030189e-02\\n4.52257954e-02 5.61226726e-01 -3.81750643e-01 -3.78307164e-01\\n1.13503739e-01 7.88936391e-02 -6.85070604e-02 -5.15254103e-02\\n2.85132438e-01 3.36881906e-01 -1.94728971e-01 1.01161651e-01\\n-1.19850866e-01 -9.67890397e-02 2.97172636e-01 1.12477466e-01\\n-1.68030471e-01 -1.22799180e-01 -1.63861305e-01 2.35652477e-01\\n-5.63314915e-01 -2.98052669e-01 4.32404011e-01 1.00311108e-01\\n2.42228523e-01 1.93332449e-01 2.35067561e-01 -9.51571986e-02\\n-2.79952109e-01 -3.41685534e-01 2.94771582e-01 1.26878619e-01\\n3.06313951e-02 1.88196585e-01 -7.79700130e-02 -7.69452333e-01\\n-3.26738048e+00 -1.17610060e-01 1.44666389e-01 -3.37748826e-01\\n3.36311072e-01 -8.24564099e-02 1.90780729e-01 -1.19002141e-01\\n-4.81176555e-01 8.37949887e-02 -1.50720865e-01 -2.69731909e-01\\n7.91124105e-02 2.38895401e-01 6.84149340e-02 2.86286697e-02\\n1.24511123e-01 -2.60523289e-01 1.46958038e-01 4.46605325e-01\\n6.64213449e-02 -7.23788619e-01 2.58407257e-02 1.44612268e-01\\n2.28841648e-01 2.24391386e-01 -5.36884665e-01 -7.39601925e-02\\n-3.09318006e-01 -2.81050891e-01 2.26245493e-01 -2.75615603e-01\\n-2.44657949e-01 3.25839996e-01 1.42976224e-01 -3.07582528e-03\\n-1.43230423e-01 -3.24347079e-01 1.18891140e-02 -5.28429925e-01\\n-2.66389977e-02 -7.59601057e-01 -7.53687844e-02 -5.63643053e-02\\n6.56921983e-01 -1.40513420e-01 1.69696614e-01 9.14302096e-02\\n1.08431607e-01 1.15630507e-01 1.77412510e-01 -6.54945895e-02\\n-3.32731128e-01 -2.43374318e-01 -1.38110653e-01 -1.37589321e-01\\n6.96955740e-01 4.76287931e-01 -2.92357504e-01 6.21324293e-02\\n9.66615826e-02 -3.59287024e-01 -6.19372904e-01 -3.07691276e-01\\n-1.94353431e-01 -1.99992642e-01 -6.01565003e-01 -4.03093070e-01\\n-1.36661977e-01 -7.44081512e-02 -1.38471738e-01 6.21421278e-01\\n-2.71957934e-01 -3.61536771e-01 7.95432106e-02 -6.37106121e-01\\n2.53667623e-01 -2.60403126e-01 1.02174982e-01 -2.30818659e-01\\n-2.14336798e-01 -4.37831253e-01 1.36056080e-01 -1.17772147e-01\\n-6.21851459e-02 -5.46280518e-02 -3.29739861e-02 -6.28234670e-02\\n-4.86583054e-01 -6.86969876e-01 3.90172333e-01 1.70640107e-02\\n4.06295419e-01 2.34438423e-02 3.58805656e-01 5.16257808e-02\\n4.64477569e-01 -5.81429303e-02 5.89636341e-02 -4.36757833e-01\\n-1.25927716e-01 3.28663811e-02 6.51546180e-01 -2.34495461e-01\\n4.62362245e-02 1.13913596e-01 -2.86443949e-01 -7.48510361e-02\\n3.76095623e-01 9.84011497e-03 1.30212009e-01 -2.20719367e-01\\n3.46312493e-01 -3.22938055e-01 -2.88815022e-01 8.52636173e-02\\n1.64637700e-01 7.89097190e-01 1.55971237e-02 -2.76066899e-01\\n-1.30564108e-01 3.28703344e-01 -1.40276924e-01 -9.85523909e-02\\n-1.22373186e-01 1.57776382e-02 -2.13591591e-01 2.79544741e-01\\n-3.15763541e-02 -9.88143533e-02 -1.00128807e-01 -1.27904713e-01\\n-8.38536173e-02 3.79791796e-01 1.90437883e-01 -4.98168394e-02\\n-9.52559263e-02 -3.47650200e-01 -4.52565104e-02 2.85066128e-01\\n1.35905996e-01 3.63063216e-01 1.82572782e-01 -4.06804979e-01\\n-1.27159655e-01 2.61775821e-01 -2.24580228e-01 2.61292517e-01\\n-1.68971270e-01 1.07020378e-01 -6.89511240e-01 -7.33009949e-02\\n-3.28658134e-01 -4.87498581e-01 1.87993959e-01 3.39663953e-01\\n2.38291472e-01 -7.77997151e-02 1.58676237e-01 -6.41616404e-01\\n2.39525512e-01 8.86092633e-02 1.26880914e-01 2.80024484e-02\\n-1.45570114e-01 6.31494462e-01 -8.91211778e-02 -1.12110853e-01\\n-8.60677753e-03 3.67985517e-02 -2.56583184e-01 -4.09336001e-01\\n9.20334309e-02 -4.92167860e-01 -1.83216080e-01 5.52001417e-01\\n2.78142869e-01 -4.95845340e-02 -2.71187097e-01 2.03503102e-01\\n-7.86889121e-02 -4.58583087e-01 -2.55320847e-01 -2.19630569e-01\\n2.89400429e-01 1.89087823e-01 2.84948021e-01 -3.79012227e-01\\n-6.48970064e-03 -1.98406372e-02 -3.82564589e-02 3.83191496e-01\\n2.35920064e-02 8.24545845e-02 -1.57476142e-01 -4.00657319e-02\\n5.63553452e-01 5.82613498e-02 2.62945127e-02 3.58967222e-02\\n1.24737144e-01 -3.30783635e-01 -3.98074895e-01 1.73217058e-02\\n-5.09219710e-03 -2.54495949e-01 -1.75954960e-02 1.42933398e-01\\n3.57584679e-03 -7.09487274e-02 -5.81179976e-01 -1.44679323e-01\\n-2.37297967e-01 -6.64288849e-02 1.42469823e-01 -5.17425656e-01\\n-8.05905908e-02 -4.51423600e-02 -5.50664544e-01 2.94775337e-01\\n-1.27707079e-01 -5.92567585e-02 4.27636877e-02 7.07370266e-02\\n-3.01363945e-01 -1.84705570e-01 8.41935724e-02 1.33786306e-01\\n-3.64597738e-01 -2.29836017e-01 5.21702226e-03 -9.83231485e-01\\n1.30010098e-01 1.07384816e-01 -9.34844837e-02 1.32240057e-01\\n-2.35490669e-02 -7.04413414e-01 3.43345881e-01 -3.70124221e-01\\n-8.95699710e-02 3.44088785e-02 -2.45357156e-01 -2.81458855e-01\\n1.60842955e-01 1.08148623e-02 -2.72625268e-01 2.90958762e-01\\n-2.75490165e-01 5.34239769e-01 2.31230948e-02 -8.70381147e-02\\n-2.47413497e-02 -2.19527408e-01 1.50975421e-01 -1.99327260e-01\\n-4.69471067e-01 -1.26186892e-01 -3.06969643e-01 -1.52974337e-01\\n-4.91032079e-02 -1.20163411e-01 -1.04156777e-01 1.32371783e-01\\n4.60424006e-01 1.14098400e-01 -1.61379129e-01 -1.68164879e-01\\n1.34689927e-01 -5.36443532e-01 4.11718488e-02 -2.42687255e-01\\n1.55279913e-03 -8.26271847e-02 2.49509767e-01 8.21169466e-02\\n1.77714244e-01 -3.54871213e-01 5.28437793e-01 -3.76152575e-01\\n-3.95065784e-01 -1.05909713e-01 1.16670430e-01 -7.41651952e-02\\n4.49650198e-01 -4.78168875e-01 -1.79690704e-01 2.66667277e-01\\n4.73038927e-02 -5.31745777e-02 3.49899739e-01 -2.43931964e-01\\n-1.56907514e-01 1.82978854e-01 -4.68488902e-01 2.69773781e-01\\n8.64841104e-01 2.83298761e-01 1.70160219e-01 1.37099117e-01\\n1.20011590e-01 3.51707965e-01 4.14276123e-01 1.00341663e-01\\n-6.06284849e-02 3.73542726e-01 -3.09220590e-02 -5.44586420e-01\\n-8.18728879e-02 -2.84187887e-02 -1.91839054e-01 -4.86629248e-01\\n6.73684776e-01 3.24598998e-01 -3.89059305e-01 -2.80970335e-01\\n-3.44419748e-01 -1.57274306e-01 3.82181138e-01 5.30116968e-02\\n6.21341690e-02 -2.15804130e-02 5.38790524e-01 -4.10299040e-02\\n2.61592418e-01 5.04007995e-01 -4.82340828e-02 -3.49392503e-01\\n8.06904435e-02 2.84131408e-01 6.34351224e-02 4.74033803e-01\\n-2.12526262e-01 2.51638532e-01 -1.24809168e-01 9.44969431e-02\\n-1.54505819e-01 2.95845289e-02 2.81794369e-01 -4.44946531e-03\\n1.99800804e-01 1.17173076e-01 6.19601190e-01 5.19259989e-01\\n2.23079041e-01 3.87244105e-01 3.10245544e-01 7.41813108e-02\\n4.58115101e-01 5.11346757e-01 2.12921008e-01 2.46880986e-02\\n3.65288481e-02 1.42932400e-01 1.59451634e-01 -4.51689400e-02\\n3.73179466e-01 4.35114324e-01 2.12164283e-01 8.52676451e-01\\n2.18147904e-01 3.13012987e-01 6.80653870e-01 -7.07582295e-01\\n-2.81259984e-01 3.56478570e-03 5.05044699e-01 -3.57679784e-01\\n-1.12333000e-02 1.26366898e-01 -2.25147456e-01 3.34725440e-01\\n-5.32672167e-01 -2.97829837e-01 -2.47133449e-02 4.92898449e-02\\n2.72260848e-02 -7.32364506e-02 -1.29494250e-01 1.29173711e-01\\n-1.78661197e-01 -2.44477138e-01 -3.83316219e-01 -1.10247545e-02\\n-2.27557391e-01 -4.04955447e-02 -1.74849499e-02 -6.79386035e-02\\n-5.63910566e-02 -2.76659340e-01 -9.58103910e-02 -6.96961954e-02\\n3.79272729e-01 -1.70513660e-01 -1.59902811e-01 -1.17451489e-01\\n3.97008657e-01 1.69587195e-01 5.75244963e-01 7.21857836e-03\\n4.68085706e-02 -1.31214038e-01 -2.59058774e-01 1.87326506e-01\\n9.97496471e-02 2.81018075e-02 3.10326703e-02 4.74975616e-01\\n-2.79891133e-01 -1.85805708e-01 1.37231171e-01 3.32222402e-01\\n-4.73304778e-01 -2.53858380e-02 -8.04310292e-02 9.92196351e-02\\n4.67603542e-02 2.90114433e-01 -2.19517261e-01 1.69146415e-02\\n-6.05386980e-02 -5.12026548e-01 3.89450610e-01 -1.30157650e-01\\n-2.63186276e-01 7.28273168e-02 3.13656896e-01 1.89554289e-01\\n-3.98359895e-02 -8.74415413e-02 -1.79769367e-01 1.74774274e-01\\n-6.22223765e-02 4.11067039e-01 -1.60193235e-01 -3.67872030e-01\\n-2.71403342e-01 3.00838143e-01 -6.40997961e-02 1.67366594e-01\\n8.07423294e-02 3.59408259e-01 5.02825119e-02 1.45789295e-01\\n5.21102607e-01 -3.75086479e-02 -3.37118089e-01 -3.76866877e-01\\n-1.46263495e-01 -1.60475165e-01 -1.01970583e-01 -1.65466160e-01\\n1.05785958e-01 -3.98748755e-01 -1.28938347e-01 -3.03227752e-01\\n-1.99752375e-01 -3.72457743e-01 -1.47864476e-01 -9.57569331e-02]]',\n", + " 'job_description': \"We currently have an exciting opportunity for a Data Scientist to join a Biotechnology Institution in Zug, Switzerland on their upcoming project. This position runs until October 2020. Responsibilities: Develop and refine forecast platform for Biogen's CVC program Develop agent based/optimization algorithms to simulate market dynamics and product usage - with guidance from senior members of the CVC program Program applications using Visual Basic, Java, SQL, MS Excel that will enable refinement and calibration of short- and long-term forecast models Continually assess and improve upon the accuracy of modeling and forecasting platforms and other tools that the individual will build. Build simulators, dashboards, user interfaces and other tools that can provide simple modeling and forecasting reports that can be processed by senior management. Develop simple versions of the forecast platforms and other tools that can be leveraged by a non-technical audience to run their own scenario analytics. Provide toolkits, tutorials and generally function as a technical expert resource for other members of the CVC forecasting team and internal clients. Key Skills: Experience working within or consulting for Pharma/Biotech/Healthcare or financial services industries in a forecasting/business analytics capacity is a must Must have built analytical tools and platforms that have been used for business/ forecast planning, including previous use of patient based and agent-based forecast models Experience in Supply Management activities is preferable Familiar with using program applications such as Visual Basic, Java, SQL, MS Excel High motivation, good work ethic, maturity and personal initiative Ability to develop creative and innovative solutions Strong oral and written communication skills with both technical and non-technical audiences Strong attention to detail, with a quality-focused mindset Self-discipline for planning and organizing tasks\",\n", + " 'soft_skills': '[\"Creativity\", \"Planning\", \"Innovation\", \"Self-Discipline\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Business Analytics\", \"Tooling\", \"Analytics\", \"Visual Basic (Programming Language)\", \"Refining\", \"Programmed Data Processor\", \"Financial Services\", \"Biotechnology\", \"Agent-Based Model\", \"Activism\", \"Program Development\", \"Refinement\", \"Dashboard\", \"Building Management Systems\", \"Supply Management\", \"Personalization\", \"Tutorials\", \"Management Development\", \"Simulations\", \"Toolkits\", \"Forecasting\", \"SQL And Java (SQLJ)\", \"Algorithms\", \"Resourcing\", \"Service Industries\", \"Generic Function\", \"Long-Term Potentiation\", \"Calibration\", \"User Interface\", \"Ruby Version Management\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '9',\n", + " 'job_title': 'software engineer frontend (m/w)',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.29411924e-01 3.69570881e-01 4.05117869e-01 -9.23201814e-02\\n4.00253803e-01 -1.96479231e-01 -3.31471823e-02 4.53161091e-01\\n-8.15106258e-02 -3.87246817e-01 -8.96338522e-02 -2.40364134e-01\\n-1.78286508e-01 5.12044504e-02 1.76763207e-01 3.77947927e-01\\n3.02914709e-01 1.31900102e-01 -2.00987652e-01 3.42699260e-01\\n7.53284618e-02 -8.97139087e-02 -2.94442456e-02 7.02488601e-01\\n3.25351417e-01 1.07417889e-02 -3.31698805e-02 -8.29202756e-02\\n-2.61225253e-01 -2.32835680e-01 3.87040228e-01 1.65966637e-02\\n-9.27388221e-02 -3.60517710e-01 8.05779919e-02 7.85665810e-02\\n-1.49701387e-01 1.11210449e-02 -2.71107778e-02 1.73086390e-01\\n-4.95559961e-01 -2.36285791e-01 1.87594235e-01 -2.54552811e-03\\n-1.19406827e-01 -3.99426579e-01 2.31142834e-01 -4.11266237e-02\\n1.42262325e-01 -1.39738563e-02 -6.67806029e-01 1.82873860e-01\\n-3.02327514e-01 -1.91834658e-01 4.21090394e-01 4.75494474e-01\\n5.96510693e-02 -5.02350688e-01 -4.68741387e-01 -3.23751360e-01\\n5.00352047e-02 -6.45478070e-02 1.25537902e-01 -3.54868680e-01\\n3.50229591e-01 7.04007223e-02 2.94305775e-02 3.95864725e-01\\n-8.07034492e-01 -5.06236218e-02 -2.34445035e-01 -1.19389305e-02\\n-4.53674287e-01 -1.83947399e-01 -2.66975850e-01 -5.07865623e-02\\n-1.25643134e-01 3.16604376e-01 -8.07620361e-02 6.20083399e-02\\n-1.92136452e-01 3.58563244e-01 -1.96704954e-01 4.84612137e-01\\n2.37676635e-01 1.84111580e-01 2.35324442e-01 3.53205860e-01\\n-4.17643011e-01 4.26375836e-01 2.31587321e-01 -2.68785179e-01\\n3.11311007e-01 3.05274967e-02 4.46601897e-01 5.85986041e-02\\n2.14686230e-01 8.38731676e-02 -2.45889008e-01 2.03965932e-01\\n2.06985757e-01 -2.63606668e-01 -1.32197678e-01 -1.34364218e-01\\n-2.37532513e-04 1.42218713e-02 7.10352184e-03 2.31911212e-01\\n-1.58053622e-01 5.14584839e-01 2.49390170e-01 -1.23238206e-01\\n-1.31678358e-01 -5.28611302e-01 -9.17088389e-02 4.26199846e-02\\n-8.95039141e-02 4.86033857e-02 1.97904795e-01 8.70702490e-02\\n2.45701268e-01 4.46167290e-02 6.42111450e-02 8.11113477e-01\\n-8.71537924e-02 7.23166764e-02 -1.57811627e-01 3.86564374e-01\\n9.73562226e-02 -3.39138538e-01 1.33837491e-01 3.47027004e-01\\n1.12876065e-01 -1.56601027e-01 -2.10042566e-01 3.36655289e-01\\n-6.77346066e-02 -1.78810269e-01 -3.28392357e-01 1.03942566e-01\\n-1.30089775e-01 -5.43019891e-01 5.14666319e-01 1.15517050e-01\\n2.11252630e-01 8.44955891e-02 1.09585926e-01 -1.08988255e-01\\n-1.67187542e-01 2.02998176e-01 3.29276882e-02 2.19192848e-01\\n-2.62528121e-01 -2.95220882e-01 -2.30744511e-01 1.29503042e-01\\n-1.86414227e-01 1.22461922e-01 -7.28980824e-02 -1.25563279e-01\\n3.91089648e-01 9.01127309e-02 -3.89580131e-01 3.25837731e-01\\n-2.96039265e-02 7.32740760e-02 -1.73700258e-01 3.51689696e-01\\n1.13036372e-02 2.26558372e-01 9.32053030e-02 -5.85043877e-02\\n5.41109443e-01 3.37963142e-02 2.49247745e-01 -4.23603207e-02\\n3.73318166e-01 -9.71680284e-02 1.92851096e-01 3.28308158e-02\\n-6.21452749e-01 1.97901428e-01 -5.31012230e-02 -3.59770395e-02\\n1.07706808e-01 -3.11045144e-02 2.90326744e-01 -3.05278003e-01\\n4.10244241e-02 -1.62066251e-01 -4.43341225e-01 -3.42027724e-01\\n-2.92095184e-01 -3.00347056e-05 4.76545930e-01 -3.98269385e-01\\n-1.25014722e-01 1.77671731e-01 -5.25608063e-01 -8.17053095e-02\\n2.53624022e-01 2.23039031e-01 1.06225893e-01 1.11317560e-01\\n-2.20318407e-01 -5.56012452e-01 4.24042828e-02 -5.06793082e-01\\n-4.24928844e-01 1.39224917e-01 -3.33594203e-01 2.07066193e-01\\n1.06761746e-01 -7.13509321e-02 -1.42024100e-01 5.63105606e-02\\n-2.45518357e-01 -9.25257802e-02 1.67488351e-01 1.06218018e-01\\n2.82514632e-01 -1.60132367e-02 -3.91320944e-01 5.45516670e-01\\n-2.07576782e-01 4.84423816e-01 8.30163807e-02 -8.63820076e-01\\n5.29234767e-01 4.03689086e-01 1.70482323e-02 -4.29077387e-01\\n5.68604767e-01 -3.38719010e-01 -4.87028770e-02 1.79560736e-01\\n-4.23586935e-01 -4.16793406e-01 2.49534130e-01 -1.28347069e-01\\n-2.44486988e-01 5.52456677e-01 7.65677765e-02 5.66585287e-02\\n2.63584852e-01 -2.79061884e-01 -1.83097646e-01 6.19198382e-02\\n-1.02029957e-01 -1.81545436e-01 -5.69159269e-01 4.90567461e-02\\n-5.71765266e-02 -5.12661278e-01 -1.59197271e-01 -3.78707260e-01\\n-2.35236287e-01 -4.07423347e-01 -3.33275080e-01 3.46463472e-01\\n1.90752208e-01 1.18661016e-01 -4.99214903e-02 1.18422091e-01\\n-1.45164147e-01 -6.48951769e-01 5.65320365e-02 1.40068904e-01\\n3.99149865e-01 1.57687411e-01 1.33428708e-01 -7.52682388e-02\\n-7.49949962e-02 5.97881436e-01 -2.96335161e-01 -2.47993588e-01\\n1.51850387e-01 2.04703584e-01 4.02054604e-04 -1.41496122e-01\\n1.18283741e-01 3.04508865e-01 -3.38581204e-01 -2.00866219e-02\\n-1.14004619e-01 2.07603048e-03 3.97050172e-01 -1.79522738e-01\\n-4.23588037e-01 -2.48989001e-01 -1.15061529e-01 1.76054463e-01\\n-5.33380151e-01 -2.13539794e-01 6.13665521e-01 3.21149409e-01\\n1.31031826e-01 2.04565778e-01 2.74301261e-01 -9.03357044e-02\\n-2.50618696e-01 -3.84346724e-01 2.98153579e-01 1.62363291e-01\\n1.54614463e-01 1.11201599e-01 -2.00536415e-01 -6.05881572e-01\\n-3.10678220e+00 -1.11332886e-01 2.43699685e-01 -2.34393403e-01\\n2.21965104e-01 -7.14346394e-02 1.11621946e-01 -6.25328720e-02\\n-2.62996674e-01 2.69727828e-03 -2.08455190e-01 -1.43144622e-01\\n1.09476000e-01 3.54203433e-01 1.04733236e-01 1.75140977e-01\\n2.29415357e-01 -2.34874815e-01 2.01575309e-02 2.80038327e-01\\n-2.20643982e-01 -6.92691386e-01 1.59317523e-01 -7.19114169e-02\\n2.05907077e-01 3.57553571e-01 -2.76850402e-01 -9.86656472e-02\\n-1.60291374e-01 -2.22065330e-01 9.19965357e-02 -2.89611846e-01\\n-9.40682888e-02 1.85911208e-01 1.41933128e-01 -6.64288253e-02\\n3.28832343e-02 -3.96721900e-01 -1.79942846e-01 -5.49185932e-01\\n1.70321688e-01 -5.97442806e-01 1.05505064e-01 -1.74614400e-01\\n7.38923609e-01 -3.13181967e-01 2.88300775e-02 6.46378621e-02\\n1.66261196e-01 1.77568853e-01 2.27926262e-02 1.51935574e-02\\n-3.33069384e-01 -3.41732055e-01 -4.03173938e-02 -2.76493996e-01\\n5.61342776e-01 4.01285380e-01 -2.73374557e-01 5.12259779e-03\\n1.56088069e-01 -2.21656680e-01 -4.30077165e-01 -3.17961127e-01\\n-1.44211724e-01 -1.24780893e-01 -6.84318304e-01 -4.54844266e-01\\n-1.27156168e-01 -1.68069690e-01 -6.41700402e-02 7.41744041e-01\\n-3.28977764e-01 -3.47371250e-01 -9.86098964e-03 -6.81394637e-01\\n1.94150820e-01 -2.31482938e-01 2.41207760e-02 -2.03758359e-01\\n-2.32270256e-01 -4.61979359e-01 5.73927388e-02 4.15991955e-02\\n-1.80058643e-01 -7.67726153e-02 7.98474401e-02 -1.05169445e-01\\n-2.69929051e-01 -5.51191330e-01 4.67386663e-01 1.44844174e-01\\n3.31390470e-01 1.49854526e-01 2.65491754e-01 -9.00676325e-02\\n4.04459149e-01 -2.45536566e-02 -1.83354337e-02 -4.13371325e-01\\n2.29118884e-01 7.02057332e-02 5.63765764e-01 -2.08509088e-01\\n-4.39126929e-03 3.24514747e-01 -1.66267022e-01 -1.66295394e-01\\n4.44916666e-01 -2.81692692e-03 9.39762294e-02 -2.35529691e-01\\n3.72845113e-01 -4.99007255e-01 -2.79690892e-01 1.62263930e-01\\n6.50707260e-02 6.79179490e-01 -4.62868176e-02 -4.07837003e-01\\n-1.45643756e-01 5.92358530e-01 -2.68287994e-02 -3.81400101e-02\\n-1.59143195e-01 1.90688744e-01 -1.69566676e-01 2.11906001e-01\\n7.83518404e-02 -1.83542281e-01 -2.62169242e-01 -4.94430438e-02\\n-9.38159972e-02 2.56094605e-01 1.93756148e-01 1.54458731e-01\\n1.85032953e-02 -4.16298151e-01 -1.09462939e-01 1.71553329e-01\\n2.32540503e-01 4.73408222e-01 2.56309900e-02 -2.50505865e-01\\n-7.08528906e-02 3.12660068e-01 -1.67381495e-01 1.95748866e-01\\n-2.51374364e-01 1.77247152e-01 -4.89304394e-01 -2.81294286e-01\\n-3.07072520e-01 -3.44712198e-01 2.19907779e-02 2.45001048e-01\\n2.15368003e-01 1.71730258e-02 9.67314020e-02 -4.89545405e-01\\n2.33887285e-01 4.17286009e-02 2.09033161e-01 1.75459236e-01\\n6.57896549e-02 5.22310913e-01 -5.55800423e-02 -1.59081459e-01\\n-2.12825298e-01 2.26340666e-02 -2.12228030e-01 -1.30399451e-01\\n1.28516719e-01 -4.60697681e-01 -1.47388235e-01 3.98855448e-01\\n1.28584683e-01 -1.85337469e-01 -2.24879280e-01 2.00295970e-01\\n2.95178732e-03 -2.28929460e-01 -2.45843783e-01 -2.93837171e-02\\n2.75664061e-01 6.57641962e-02 2.95062721e-01 -4.09785092e-01\\n-4.07891683e-02 1.04561551e-02 -1.35437781e-02 4.34687287e-01\\n1.31916359e-01 -8.60692002e-03 -1.58321127e-01 -2.11187065e-01\\n4.18992668e-01 -1.60342500e-01 -1.04373552e-01 -4.44057547e-02\\n1.48072585e-01 -1.85886979e-01 -4.69280154e-01 8.08674544e-02\\n-2.00714096e-01 -1.47033080e-01 1.56165868e-01 4.47960123e-02\\n3.98036651e-02 1.20192535e-01 -5.49052715e-01 -2.34389722e-01\\n-3.28624845e-01 -4.41376343e-02 1.15211010e-01 -5.70016205e-01\\n1.55493505e-02 8.15795269e-03 -6.38714314e-01 1.96569309e-01\\n-2.46831536e-01 -4.55087684e-02 1.55861527e-01 1.41786739e-01\\n-4.19364989e-01 -6.18827343e-02 1.00808263e-01 2.71678746e-01\\n-3.90558630e-01 -3.26926380e-01 -6.28312826e-02 -1.05453587e+00\\n2.29835749e-01 -1.07707851e-01 -2.80444503e-01 2.65343562e-02\\n-2.40594968e-02 -7.19151497e-01 5.64527102e-02 -3.33742708e-01\\n-8.38625282e-02 9.29665193e-02 -2.90800959e-01 -3.91880780e-01\\n1.24277040e-01 -9.24262404e-02 -3.13667327e-01 4.52166200e-01\\n-4.91245717e-01 2.90124625e-01 -3.98732871e-02 9.69134346e-02\\n-7.86277950e-02 -3.67054850e-01 1.37411773e-01 -4.33616459e-01\\n-4.65432167e-01 -2.12991685e-01 -3.69023800e-01 -2.83506781e-01\\n6.37267232e-02 -3.57645780e-01 -7.93143287e-02 1.49083808e-01\\n2.66231418e-01 6.93375915e-02 -5.67990355e-02 -1.98315829e-01\\n5.03223762e-02 -4.86519575e-01 4.27958369e-02 -9.35251340e-02\\n-1.91907454e-02 -1.22224070e-01 2.18753368e-01 5.62345572e-02\\n1.48162648e-01 -3.73725444e-01 4.54626232e-01 -3.08522969e-01\\n-3.94377708e-01 -9.17724520e-02 4.11946364e-02 1.07083796e-02\\n2.10496694e-01 -6.59699619e-01 -2.93771774e-02 3.78252089e-01\\n1.77783608e-01 7.48921884e-03 1.41644970e-01 -6.53472096e-02\\n-3.11940163e-02 3.19561124e-01 -4.28473741e-01 7.72890523e-02\\n8.03155065e-01 1.04914188e-01 -9.26881097e-03 2.30272353e-01\\n1.10204071e-01 3.35492373e-01 5.15445471e-01 -1.35111455e-02\\n-8.65495503e-02 2.99768776e-01 5.77457845e-02 -6.36009276e-01\\n-1.93279043e-01 -1.25310393e-02 -1.19154349e-01 -3.08667332e-01\\n6.95102811e-01 3.49992901e-01 -4.15083408e-01 -2.33824492e-01\\n-9.59376693e-02 -1.38059989e-01 2.60134935e-01 -8.02251995e-02\\n2.13269778e-02 -1.74361482e-01 5.24038792e-01 1.20265998e-01\\n3.40502143e-01 5.41308582e-01 -1.41582504e-01 -3.37894022e-01\\n-1.25669673e-01 1.28656000e-01 6.10002922e-03 3.55155498e-01\\n-1.55080050e-01 2.16957033e-01 -2.66384110e-02 2.15285808e-01\\n-1.86379910e-01 8.16482529e-02 -1.73866432e-02 1.58651382e-01\\n1.77946299e-01 9.09013227e-02 4.73535925e-01 3.48686725e-01\\n3.07873636e-01 5.59899449e-01 2.56952941e-01 1.46173865e-01\\n4.97570693e-01 4.95077401e-01 4.91139591e-01 5.72649315e-02\\n2.02857777e-02 1.38471335e-01 1.60988525e-01 -2.30022985e-02\\n4.55447614e-01 3.73011321e-01 9.69769433e-02 9.09893811e-01\\n2.63892829e-01 2.91585386e-01 7.37418652e-01 -7.00027406e-01\\n-3.41046154e-01 1.42620400e-01 4.08385426e-01 -4.52853829e-01\\n-1.21834837e-02 1.15986437e-01 -2.04505742e-01 2.87938744e-01\\n-4.94186431e-01 -1.59595266e-01 -2.45441124e-02 1.03444837e-01\\n6.10486679e-02 -7.21836314e-02 -2.32636109e-01 -1.86584871e-02\\n-1.33059517e-01 -1.21303864e-01 -3.42725992e-01 -1.06091879e-01\\n-1.54547065e-01 -9.56852883e-02 -6.15939163e-02 -1.54421628e-01\\n-1.86023526e-02 -4.55810010e-01 -1.64407387e-01 2.58800052e-02\\n3.81081372e-01 7.22546177e-03 5.10656349e-02 -1.49288088e-01\\n2.68291146e-01 3.61838728e-01 6.41104460e-01 -7.41466507e-02\\n1.28239766e-01 -3.31496716e-01 -1.62876248e-01 1.26637995e-01\\n1.22773126e-01 7.49756917e-02 7.29571506e-02 3.56549025e-01\\n-3.29781264e-01 -9.12872702e-02 1.50337309e-01 4.64791358e-01\\n-4.04272437e-01 -5.86483777e-02 -7.41252825e-02 2.06489816e-01\\n1.07363746e-01 1.22886963e-01 -2.73597389e-01 1.29549608e-01\\n-2.65247673e-01 -5.01372039e-01 4.16632324e-01 -1.39432535e-01\\n-2.59529743e-02 5.72796352e-02 3.19551617e-01 2.14657202e-01\\n-1.99605718e-01 -4.39755581e-02 2.79396344e-02 1.99439138e-01\\n6.27974868e-02 3.43864381e-01 -2.23075032e-01 -1.38274357e-01\\n-2.89120644e-01 1.91538960e-01 -1.01570398e-01 5.28164692e-02\\n-7.71433935e-02 3.91924173e-01 8.37674290e-02 7.61969537e-02\\n3.88105720e-01 7.08745494e-02 -2.46042758e-01 -2.11832866e-01\\n-2.45644569e-01 -2.33632281e-01 -1.56008741e-02 -6.01415820e-02\\n1.88023865e-01 -3.92546386e-01 -1.06564753e-01 -1.59330621e-01\\n-8.31586793e-02 -3.26125592e-01 -9.23803002e-02 4.95209694e-02]]',\n", + " 'job_description': 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customer-specific solutions based on EmberJS, HTML, CSS Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of all web technologies (Javascript, HTML, CSS, REST, etc.) Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Know-how in User Interaction and User Experience Design Willingness to take on responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Hosting\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"User Experience Design (UX)\", \"Functional Programming\", \"Experience Design\", \"Additives\", \"Rust (Programming Language)\", \"User Experience\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English', 'Kanuri', 'Northern Sami', 'Amharic', 'Ganda']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.96860814e-01 3.44887048e-01 4.18311268e-01 6.42987788e-02\\n5.49855947e-01 -1.60632238e-01 -7.60548115e-02 2.33741805e-01\\n3.85293690e-03 -3.85250986e-01 -1.00991771e-01 -2.73914307e-01\\n-8.60051885e-02 5.60852103e-02 1.23740666e-01 4.40712243e-01\\n2.10842565e-01 6.70473510e-03 -7.52684474e-02 3.78748119e-01\\n4.04198393e-02 -1.20572872e-01 -2.10955739e-02 6.54336214e-01\\n3.27865958e-01 -4.52837832e-02 -1.05593726e-01 3.76893021e-02\\n-2.93820888e-01 -1.94786966e-01 3.50330234e-01 3.60151418e-02\\n-1.35590002e-01 -3.07242274e-01 1.52788103e-01 1.99274436e-01\\n-2.34797448e-01 3.43347415e-02 -1.69399083e-01 1.40004277e-01\\n-4.76627588e-01 -1.83501318e-01 8.29791743e-03 5.43206558e-02\\n-4.30294186e-01 -3.49034727e-01 9.95754451e-02 -1.81845233e-01\\n3.66332196e-02 6.48680553e-02 -5.33586919e-01 3.09596747e-01\\n-2.28925571e-01 -2.48519540e-01 3.49494070e-01 6.64280176e-01\\n1.17803238e-01 -4.88737762e-01 -3.91648233e-01 -3.63320202e-01\\n-4.55902666e-02 -1.13983192e-01 3.27034444e-02 -2.60845512e-01\\n4.11702573e-01 -1.43740445e-01 2.91686114e-02 2.89151549e-01\\n-8.67187321e-01 -1.14951365e-01 -4.15841609e-01 7.68027594e-03\\n-4.90776718e-01 1.97851080e-02 -3.89639020e-01 -1.84735030e-01\\n-2.03368515e-02 4.76683944e-01 -2.18808297e-02 1.53994739e-01\\n-1.93965256e-01 2.92768687e-01 -3.28353584e-01 2.08600566e-01\\n3.39791447e-01 1.58946797e-01 1.72966585e-01 2.85977483e-01\\n-4.48067993e-01 3.26938391e-01 3.01893115e-01 -2.35333920e-01\\n2.83533931e-01 1.43122420e-01 2.94796169e-01 1.95423141e-01\\n1.10316023e-01 2.62607336e-01 -1.41405299e-01 1.97389156e-01\\n1.77302569e-01 -2.11973563e-01 -5.77723011e-02 -1.51757509e-01\\n4.66307215e-02 -1.21968903e-01 2.33216006e-02 2.01474980e-01\\n-3.48602384e-01 2.91850716e-01 1.18034214e-01 -1.54592186e-01\\n-9.68825817e-02 -4.61926162e-01 -6.63943663e-02 -4.83498536e-02\\n3.31327245e-02 2.76550680e-01 2.49577552e-01 1.99359983e-01\\n2.08295792e-01 1.71896014e-02 1.77252889e-01 9.28946495e-01\\n-6.68200031e-02 2.05227554e-01 -2.60475755e-01 3.75699133e-01\\n2.15705931e-01 -2.50339955e-01 1.58410624e-01 2.42954895e-01\\n8.20262358e-03 -1.29366100e-01 -2.53765494e-01 3.23635042e-01\\n-1.97265580e-01 -1.58971861e-01 -2.35874146e-01 1.43298998e-01\\n-1.32214040e-01 -5.58442056e-01 5.85828841e-01 3.11824419e-02\\n7.42080212e-02 -7.46050179e-02 -8.57746378e-02 -4.10121605e-02\\n-1.85835615e-01 3.00886959e-01 4.28445674e-02 2.43591174e-01\\n-2.85249054e-01 -2.76624262e-01 -9.27137882e-02 2.80250311e-01\\n-2.50699013e-01 2.23866235e-02 -2.20246643e-01 -1.09423146e-01\\n3.43225181e-01 1.69671595e-01 -4.59755123e-01 1.78900361e-01\\n-4.18040380e-02 -3.04155052e-01 -2.19227076e-02 3.29643071e-01\\n-1.41281307e-01 2.50280350e-01 -5.20857498e-02 -6.49947897e-02\\n5.89169621e-01 2.31374398e-01 2.89622128e-01 -2.26045446e-03\\n2.75445729e-01 -1.53110206e-01 2.59232163e-01 1.00722864e-01\\n-5.21611035e-01 4.42454338e-01 -1.14062294e-01 -1.69909835e-01\\n1.13117598e-01 3.67181115e-02 4.13286358e-01 -2.63497382e-01\\n-7.07108453e-02 -1.98499203e-01 -3.56016397e-01 -3.78715783e-01\\n-2.90088266e-01 -3.64230312e-02 3.65426838e-01 -4.69793051e-01\\n-8.84761009e-03 2.49416679e-01 -6.12476766e-01 -1.58732265e-01\\n1.95361480e-01 2.30769902e-01 8.49370733e-02 1.05911754e-02\\n-1.00727543e-01 -6.15024865e-01 7.96834826e-02 -4.60210770e-01\\n-3.49452645e-01 8.61413553e-02 -2.44263411e-01 5.97687773e-02\\n-1.60614122e-03 6.56268820e-02 -1.20289892e-01 1.67419553e-01\\n-4.15087909e-01 4.28542979e-02 1.74081236e-01 1.29645616e-01\\n3.52620065e-01 5.09687811e-02 -4.16413695e-01 5.42360187e-01\\n-1.77880958e-01 4.42510903e-01 2.65277028e-01 -8.83127034e-01\\n5.55521905e-01 2.30198085e-01 -9.16575715e-02 -2.63767302e-01\\n4.45501894e-01 -4.54591215e-01 -5.40335961e-02 7.24373534e-02\\n-2.35520020e-01 -2.41464645e-01 3.15704733e-01 -1.13929532e-01\\n-2.59803593e-01 6.78429484e-01 1.02698766e-01 1.46381631e-01\\n3.78542066e-01 -2.83877075e-01 -1.76055610e-01 -5.64239174e-02\\n-1.50965393e-01 -1.40857562e-01 -5.81143856e-01 1.23960361e-01\\n-1.10634290e-01 -5.12252092e-01 -7.80403093e-02 -5.08696556e-01\\n-2.25422829e-01 -2.84876466e-01 -2.59731680e-01 2.96742439e-01\\n1.92434937e-01 1.74000308e-01 -1.05507866e-01 -4.82587367e-02\\n1.97027866e-02 -6.91412091e-01 -5.02098352e-02 7.15362057e-02\\n4.32042360e-01 2.59835809e-01 2.61846900e-01 -8.58775452e-02\\n1.63848355e-01 4.10003364e-01 -3.58777672e-01 -4.43524987e-01\\n1.27500042e-01 9.73021537e-02 -4.79912274e-02 -1.67048678e-01\\n1.34975895e-01 4.04518425e-01 -2.28389919e-01 1.31865010e-01\\n3.94292101e-02 -3.70270871e-02 3.49040776e-01 -2.57066917e-02\\n-2.43934885e-01 -2.26500019e-01 -8.27875957e-02 2.37687081e-01\\n-5.93317926e-01 -3.17269415e-01 4.88442451e-01 2.47317463e-01\\n8.97993967e-02 2.22598076e-01 2.77755946e-01 -1.23002328e-01\\n-2.06953898e-01 -9.76430625e-02 2.68041551e-01 1.71976075e-01\\n1.31365255e-01 1.24579370e-01 -1.80519164e-01 -5.35281420e-01\\n-3.50417495e+00 -1.75089076e-01 1.43602312e-01 -2.29981154e-01\\n2.04089463e-01 -1.85537279e-01 2.12182850e-01 2.53077671e-02\\n-3.28020453e-01 -8.48561078e-02 -1.88551605e-01 -1.03937112e-01\\n4.07386757e-03 2.98340470e-01 1.08108923e-01 1.88793227e-01\\n1.36490390e-01 -1.91399798e-01 3.84088070e-03 4.26874876e-01\\n-9.22174305e-02 -6.96362674e-01 -2.55561713e-02 3.61620747e-02\\n1.48184657e-01 6.73779026e-02 -4.15742129e-01 -3.92589383e-02\\n-3.21821988e-01 -3.23158115e-01 1.86734870e-01 -2.35624462e-01\\n-2.44609118e-01 2.20956743e-01 1.81667164e-01 -1.17119715e-01\\n-1.62027944e-02 -2.33508959e-01 2.42001936e-02 -5.44063151e-01\\n8.13470855e-02 -5.98324299e-01 8.88843164e-02 -5.79190031e-02\\n6.72810674e-01 -2.52187073e-01 2.44479910e-01 9.77295414e-02\\n1.59578815e-01 2.52789617e-01 1.10288128e-01 5.62349260e-02\\n-3.28595877e-01 -3.20659429e-01 -1.31877035e-01 -2.53720462e-01\\n5.78959882e-01 4.40056324e-01 -1.70335010e-01 6.36792406e-02\\n9.78659373e-03 -3.37250173e-01 -5.06300986e-01 -3.50638479e-01\\n-2.08132833e-01 -8.52709711e-02 -6.69044137e-01 -3.54889631e-01\\n-8.23016539e-02 -1.18027486e-01 -5.46901338e-02 6.62365854e-01\\n-3.13018799e-01 -3.51793170e-01 3.96526530e-02 -5.07278740e-01\\n3.19762141e-01 -2.42803395e-01 6.55853376e-02 -2.58750886e-01\\n-3.28336746e-01 -4.62177157e-01 1.94543123e-01 -3.54599766e-02\\n-2.66761065e-01 -1.32800430e-01 5.46680465e-02 -1.52359337e-01\\n-3.96212727e-01 -6.26075149e-01 4.42959160e-01 3.95017713e-02\\n3.61081600e-01 6.05906993e-02 3.98483485e-01 -6.88349605e-02\\n3.56861442e-01 -9.98112038e-02 -1.31054252e-01 -4.97816831e-01\\n-1.97644290e-02 5.73071130e-02 5.34489989e-01 -2.34072521e-01\\n1.79413199e-01 9.32373255e-02 -1.95057124e-01 3.07738613e-02\\n4.13011312e-01 1.68356635e-02 8.14857408e-02 -6.31378358e-03\\n2.66395926e-01 -5.47979355e-01 -2.69027323e-01 1.55107424e-01\\n1.08892009e-01 7.03123152e-01 8.41865316e-03 -4.54086185e-01\\n-2.29289770e-01 4.41076189e-01 -6.45007417e-02 -1.18308276e-01\\n-2.19390437e-01 6.81811348e-02 -2.17581362e-01 2.63548553e-01\\n6.64121285e-02 -1.17072552e-01 -2.45330110e-01 -1.29564121e-01\\n-5.84770665e-02 3.63042742e-01 2.81433463e-01 1.61634088e-02\\n-7.70878568e-02 -2.21706539e-01 -3.57245468e-02 2.05241695e-01\\n2.32138753e-01 3.97327662e-01 1.66679710e-01 -3.01004171e-01\\n2.78272890e-02 3.06736737e-01 -3.17709178e-01 3.02906156e-01\\n-1.89054146e-01 1.42882586e-01 -6.38502955e-01 -1.44051403e-01\\n-2.66994298e-01 -4.27788824e-01 3.30012947e-01 3.58485937e-01\\n1.79589659e-01 -7.01749548e-02 6.38324022e-02 -5.05131185e-01\\n3.73124063e-01 1.12982221e-01 1.53083429e-01 7.08051994e-02\\n2.80801230e-03 6.69723630e-01 -1.77098811e-02 -1.62208453e-01\\n-6.04958236e-02 -1.97706092e-02 -2.60907173e-01 -3.42045695e-01\\n2.55826283e-02 -4.81955439e-01 -2.02252090e-01 4.90829349e-01\\n2.33723909e-01 -4.75820377e-02 -3.21290106e-01 1.33100957e-01\\n4.35751788e-02 -1.92549407e-01 -2.90783107e-01 -2.42837332e-02\\n2.01531097e-01 2.00762242e-01 2.64001667e-01 -4.20604885e-01\\n-3.78113724e-02 5.16359285e-02 -2.20098253e-02 4.36224848e-01\\n4.84443493e-02 2.14425087e-01 -6.25033826e-02 -1.04120679e-01\\n6.13250196e-01 -1.28150564e-02 -1.69442758e-01 -1.19935304e-01\\n7.93749243e-02 -1.61210597e-01 -4.15824413e-01 5.83286397e-02\\n-2.43440513e-02 -3.14145714e-01 8.84527341e-02 1.02038935e-01\\n1.09011732e-01 -5.32904565e-02 -5.95097363e-01 -1.72616392e-01\\n-3.80835503e-01 -6.19084686e-02 4.15815078e-02 -5.36376238e-01\\n3.89634334e-02 1.94169749e-02 -5.49118102e-01 2.83013165e-01\\n-1.59557611e-01 2.34637130e-02 3.27658169e-02 1.00415193e-01\\n-2.10372925e-01 -1.04411289e-01 1.39792547e-01 1.90717608e-01\\n-2.65638351e-01 -1.59193531e-01 4.23223004e-02 -9.18339968e-01\\n1.52262151e-01 7.36924708e-02 -1.32943735e-01 1.04808800e-01\\n3.55764218e-02 -7.74015486e-01 1.29943520e-01 -3.92476737e-01\\n-6.33490160e-02 1.50974005e-01 -2.50673473e-01 -3.95439118e-01\\n2.08995610e-01 3.50915939e-02 -4.07000482e-01 4.15662140e-01\\n-5.61714411e-01 3.19586158e-01 8.56264532e-02 7.89562017e-02\\n8.55175704e-02 -2.07664788e-01 1.59763098e-01 -2.32482165e-01\\n-3.70378107e-01 -2.01556742e-01 -2.06207275e-01 -3.23712707e-01\\n-8.40868428e-03 -3.26630116e-01 -1.08477421e-01 2.01712493e-02\\n4.21023816e-01 1.32078126e-01 -9.07460302e-02 -2.76236713e-01\\n6.86943457e-02 -4.73630935e-01 1.35386229e-01 -2.70865858e-01\\n-1.13083154e-03 -1.17591299e-01 2.10089207e-01 2.35687066e-02\\n2.07215667e-01 -3.16815883e-01 6.22050405e-01 -2.76310802e-01\\n-3.45916152e-01 -1.43903702e-01 6.32182583e-02 7.51021132e-02\\n2.37726122e-01 -3.78808647e-01 5.21192588e-02 2.72124439e-01\\n9.57002863e-02 7.74144009e-03 2.59716749e-01 -1.75252408e-01\\n-1.14230126e-01 1.79250881e-01 -5.00780165e-01 1.60120592e-01\\n8.63532364e-01 8.99323672e-02 2.56249458e-01 1.37095362e-01\\n1.20234236e-01 2.59131551e-01 4.77859616e-01 1.57975741e-02\\n-8.44413191e-02 2.87263215e-01 5.32845482e-02 -4.52349544e-01\\n-1.33555338e-01 -1.50623873e-01 -1.66257456e-01 -2.96008676e-01\\n6.02666676e-01 2.33034328e-01 -3.36251676e-01 -4.54831868e-01\\n-7.99099877e-02 -1.00721851e-01 4.06935215e-01 1.51048526e-02\\n-1.40468761e-01 -1.76450998e-01 4.19293970e-01 -6.43341243e-02\\n3.23634148e-01 5.25896311e-01 -1.65244415e-01 -2.80985773e-01\\n-1.03312410e-01 2.46023715e-01 1.93510264e-01 4.52180237e-01\\n-1.55434579e-01 1.74752906e-01 -1.07079193e-01 1.43060103e-01\\n-1.89065054e-01 -8.78895074e-03 3.01000088e-01 6.83068782e-02\\n2.19076112e-01 6.77633360e-02 4.65387374e-01 5.59907198e-01\\n1.90063655e-01 5.31919301e-01 3.54384571e-01 -1.32503854e-02\\n3.20093125e-01 6.66606545e-01 3.78609300e-01 1.04473203e-01\\n-3.07683758e-02 1.38937786e-01 6.82053268e-02 -7.74407685e-02\\n2.82814741e-01 3.94464582e-01 2.25611493e-01 8.85194421e-01\\n3.46412063e-01 3.44777614e-01 7.24910855e-01 -6.45051658e-01\\n-4.96049970e-01 9.21939537e-02 6.03345633e-01 -4.64121521e-01\\n5.40326983e-02 1.62939936e-01 -2.49493226e-01 2.17103228e-01\\n-5.56812644e-01 -2.11038455e-01 4.21759440e-03 1.22597618e-02\\n1.01786721e-02 -9.87417027e-02 -9.09411311e-02 1.19228959e-01\\n-1.19134754e-01 -1.98214710e-01 -2.97854602e-01 -1.21630073e-01\\n-2.32164294e-01 -5.52714802e-02 -1.02314711e-01 -2.53677312e-02\\n-2.29588710e-02 -3.22520316e-01 -6.94573820e-02 6.73100026e-03\\n3.18767995e-01 -2.02134550e-01 -2.14769408e-01 -7.11566284e-02\\n1.59569532e-01 2.47494087e-01 5.84787607e-01 5.20478673e-02\\n1.97300874e-02 -1.49446592e-01 -1.87031940e-01 3.72363031e-02\\n6.18296191e-02 1.31450161e-01 7.60812964e-03 3.67187589e-01\\n-2.83870757e-01 -2.00773999e-01 1.73787057e-01 2.05903783e-01\\n-3.76042515e-01 -1.09815635e-01 -4.55926470e-02 2.24547386e-01\\n1.80376992e-02 1.47408113e-01 -2.86194414e-01 1.76045194e-01\\n-2.14229807e-01 -5.73754609e-01 4.62805003e-01 -2.06788361e-01\\n-1.24913402e-01 7.54182637e-02 3.20095986e-01 2.22538635e-01\\n-2.22011238e-01 -3.66530903e-02 -1.39946029e-01 2.69055218e-01\\n-8.69691595e-02 3.73143971e-01 -2.42382780e-01 -2.33777374e-01\\n-2.87254810e-01 3.02292496e-01 2.91829240e-02 1.88529760e-01\\n-2.78444849e-02 4.86935914e-01 -3.09117362e-02 1.36623368e-01\\n3.12452167e-01 3.34689692e-02 -2.60901988e-01 -3.44393373e-01\\n-2.40466744e-01 -8.69643986e-02 6.19944409e-02 -2.59186383e-02\\n1.95385382e-01 -3.49411130e-01 -1.29450992e-01 -2.11682081e-01\\n-1.64196745e-01 -4.55375612e-01 -9.15977806e-02 2.57502776e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Responsible for delivering projects in the Big Data (Engineer and Analytics) field A key position as Big Data Ingenieur, where you are designing and building an analytics platform using state of the art Big Data technologies and provide services to enable Data Scientists to build advanced analytics models You are taking an active part of our transformation into a more data and analytical insights driven bank Within the highly motivated team, you collaborate closely with business teams to understand data and functional requirements You design and build data pipelines to ingest, integrate, standardize, clean and publish data You are responsible for defining and crafting integration patterns with downstream applications You provide input into overall IT architecture of the solution, including technical environment configuration, data modelling, data integration, data presentation, information security and other IT architecture related topics You support Data Scientist in their day-to-day work on a variety of topics, including tools and data analysis methods You operationalize analytical models developed by the Data Scientists to embed them into the bank’s business processes Your profile: A university degree or equivalent education in IT or another technical specialization, ideally with focus on Data Management You have proven work experience of at least two years as a Data Engineer using Big Data technologies Experience with Hadoop based analytical solutions, ideally on Cloudera distribution, as well as practical skills in creating data processing pipelines using Spark, Scala, Python or similar tools Good knowledge of SQL, Hive and Impala databases Ideally experience with Jupyter Notebook, Hue, other end user tools If you already had experience with Tableau, Splunk or an agile work environment you have an advantage You are able to work in a dynamic environment, be comfortable with changing priorities and tight deadlines, manage you own workload with minimum supervision You build strong collaborative relationships with colleagues in IT and business groups Excellent verbal and written communication skills in English and German Benötigte Skills Scala Python Python Englisch Security Datawarehouse',\n", + " 'soft_skills': '[\"Collaboration\", \"Management\", \"Supervision\", \"Team Motivation\", \"Integration\", \"Positivity\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Information Presentation Facility\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Agility\", \"Analytics\", \"Data Management\", \"Data Modeling\", \"Data Engineering\", \"Scala (Programming Language)\", \"Activism\", \"Apex Data Loader\", \"Functional Requirement\", \"Information Security Management\", \"Jupyter Notebook\", \"Data Pipeline\", \"Idealization\", \"Splunk\", \"Hostile Work Environment\", \"Pipelining\", \"Operationalization\", \"Business Process\", \"Apache Hive\", \"Electronic Data Processing\", \"Big Data\", \"Survey Data Analysis\", \"Transformation (Genetics)\", \"Service Provider\", \"Banking\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Icelandic']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'full-stack java software engineer',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.52348623e-01 3.12777966e-01 5.86622953e-01 -1.81150749e-01\\n5.14662743e-01 -3.29282582e-01 1.75580204e-01 4.35884237e-01\\n-1.57401010e-01 -3.01419079e-01 -1.57983914e-01 -2.85847872e-01\\n3.18956678e-03 4.27692942e-02 1.19754411e-01 2.60663837e-01\\n2.69114614e-01 1.75715387e-01 -2.05467701e-01 3.25988322e-01\\n1.18401386e-01 -1.57127395e-01 1.26595050e-01 6.84018493e-01\\n5.01709938e-01 7.06727952e-02 -1.34881496e-01 1.39535114e-01\\n-2.95769334e-01 -3.78998399e-01 4.23073560e-01 -2.40414552e-02\\n1.75495923e-03 -1.23174183e-01 1.18926615e-01 6.86245933e-02\\n-1.49853870e-01 3.35805342e-02 7.10680336e-03 1.69376299e-01\\n-3.40796947e-01 3.49282399e-02 1.62588328e-01 -3.35835144e-02\\n-2.28550881e-01 -4.38031107e-01 6.78425953e-02 4.78295051e-02\\n2.37122893e-01 4.55753691e-02 -4.10049111e-01 4.21395421e-01\\n-1.78098738e-01 -3.29199642e-01 3.01333070e-01 5.76310396e-01\\n-1.51954338e-01 -4.84003007e-01 -4.01330024e-01 -2.49368578e-01\\n1.35254964e-01 -1.68688327e-01 7.01819509e-02 -3.22233677e-01\\n4.63556260e-01 3.06211039e-02 -1.74089372e-02 4.16481137e-01\\n-7.94518828e-01 8.45635310e-02 -1.43370390e-01 -3.30023281e-02\\n-4.31816697e-01 -5.38255535e-02 -2.97469258e-01 -1.22158095e-01\\n-1.45301387e-01 4.28585082e-01 7.99791887e-02 1.31086737e-01\\n-6.81233332e-02 2.53325552e-01 -2.68208444e-01 2.75521696e-01\\n2.51695395e-01 4.17090237e-01 1.83086559e-01 3.59972715e-01\\n-3.83211255e-01 3.31268698e-01 2.13961333e-01 -3.03245097e-01\\n1.56347796e-01 1.25904813e-01 4.54328775e-01 -2.03916952e-02\\n2.00990856e-01 8.79990160e-02 -1.47109777e-01 2.42543310e-01\\n3.63377482e-01 -3.59320223e-01 -5.21228127e-02 5.36654517e-02\\n-7.39344135e-02 1.36800483e-01 6.72554038e-03 3.97711009e-01\\n-3.06973547e-01 6.47379458e-01 -1.51877161e-02 -2.33313337e-01\\n-4.98550870e-02 -6.01146877e-01 -2.57038414e-01 1.83260381e-01\\n2.18845233e-02 1.42738789e-01 1.65008917e-01 3.07965308e-01\\n1.57785311e-01 7.70954117e-02 2.25330859e-01 9.53719318e-01\\n-7.97168463e-02 9.16220471e-02 -2.47052222e-01 4.31369662e-01\\n7.27906972e-02 -2.29254350e-01 2.85650909e-01 3.18802536e-01\\n1.89112127e-01 -4.37798314e-02 -2.09563732e-01 2.31716186e-01\\n-2.16987468e-02 -3.22461814e-01 -2.94791311e-01 1.00056745e-01\\n-2.15334743e-01 -4.80946779e-01 5.42564929e-01 1.44608095e-02\\n2.30956785e-02 -1.28155192e-02 -4.42914590e-02 4.57397290e-03\\n-1.55052349e-01 1.85161129e-01 1.26379684e-01 1.27572596e-01\\n-3.56418192e-01 -2.31924504e-01 -3.67463708e-01 3.06284428e-01\\n-3.33936989e-01 -2.02934667e-02 -1.37044922e-01 -4.83026989e-02\\n4.06637073e-01 -1.38099073e-02 -3.14859152e-01 3.42514217e-01\\n-1.21916719e-01 -6.45756647e-02 -1.72402427e-01 2.98640907e-01\\n-1.15490377e-01 1.54386699e-01 -8.31885040e-02 -1.47165135e-01\\n4.27983373e-01 1.18184812e-01 4.50461768e-02 -5.48709221e-02\\n3.61388654e-01 -9.31731053e-03 1.81342542e-01 1.09905340e-02\\n-7.29913652e-01 4.04561013e-01 -4.98051830e-02 -1.52992696e-01\\n9.36877802e-02 -1.34543013e-02 2.52077162e-01 -3.21205199e-01\\n1.78716391e-01 -1.66763276e-01 -4.12537128e-01 -2.84113646e-01\\n-2.13180855e-01 -6.40830472e-02 4.96926367e-01 -4.78328675e-01\\n-1.02593556e-01 1.76014259e-01 -5.53843081e-01 1.46536201e-01\\n3.05304170e-01 2.55766958e-01 1.31281987e-01 1.60008579e-01\\n-1.60486668e-01 -5.40886104e-01 1.48950398e-01 -3.47763747e-01\\n-1.99738517e-01 3.04470092e-01 -3.68302405e-01 2.22506344e-01\\n1.89015850e-01 3.07520721e-02 -1.55555785e-01 1.39744282e-01\\n-9.83253941e-02 -1.29256815e-01 1.43041149e-01 5.52339368e-02\\n3.78115356e-01 2.95372196e-02 -4.76619512e-01 5.31041026e-01\\n-2.24445045e-01 3.34347188e-01 1.36020184e-01 -9.39956367e-01\\n4.46892262e-01 3.05463731e-01 1.07950710e-01 -2.97509700e-01\\n7.65742838e-01 -1.95990264e-01 -1.39622778e-01 1.57563508e-01\\n-4.66928035e-01 -3.04231286e-01 9.49719772e-02 -7.46379495e-02\\n-2.11274102e-01 3.74954522e-01 5.94479963e-02 9.60968137e-02\\n3.04883540e-01 -9.98013690e-02 -1.95613787e-01 1.18959807e-01\\n-9.72556472e-02 -2.69075841e-01 -3.50681424e-01 3.94659229e-02\\n8.36530002e-04 -5.44061720e-01 -6.04868606e-02 -4.19347078e-01\\n-3.37068081e-01 -3.56870413e-01 -1.48391262e-01 2.59097397e-01\\n1.40928477e-01 1.03673905e-01 -5.52406674e-03 -8.40443000e-02\\n-3.18443060e-01 -5.21532893e-01 8.01278725e-02 1.27004117e-01\\n3.07165653e-01 2.39830270e-01 4.67862561e-02 -4.78726812e-02\\n1.08242994e-02 6.68546259e-01 -2.04081714e-01 -1.39072910e-01\\n1.00347944e-01 1.84065133e-01 -4.94437702e-02 -1.10746436e-01\\n5.83343245e-02 3.04767817e-01 -1.88860103e-01 6.89155655e-03\\n-2.19386905e-01 -1.44311879e-02 3.42735201e-01 -1.45488784e-01\\n-3.48737538e-01 -4.07367855e-01 -1.51592821e-01 1.73504904e-01\\n-5.64159989e-01 -2.51780808e-01 7.24394858e-01 1.14112198e-01\\n8.81093889e-02 1.47131994e-01 1.71447009e-01 -4.85307127e-02\\n-1.44651204e-01 -2.04622477e-01 1.88606262e-01 2.24560481e-02\\n1.25049636e-01 1.82453036e-01 -1.32531539e-01 -5.70303738e-01\\n-3.68280149e+00 -1.37593567e-01 6.38316944e-02 -3.52033436e-01\\n1.95834190e-01 -2.03607425e-01 1.23728409e-01 -1.65224820e-01\\n-1.76456138e-01 7.97297359e-02 -9.78242382e-02 -1.18979290e-01\\n2.12749153e-01 2.15495244e-01 1.18466802e-01 2.87408531e-01\\n2.63397515e-01 -2.76983768e-01 1.63261760e-02 3.46988887e-01\\n-1.50522768e-01 -4.80660111e-01 3.07063222e-01 -3.98100652e-02\\n3.95956784e-01 4.82744336e-01 -3.31730515e-01 -7.65492916e-02\\n-2.41776332e-01 -3.18023533e-01 1.36863902e-01 -2.89547205e-01\\n1.46752466e-02 3.38024855e-01 1.83048129e-01 -8.46451223e-02\\n2.25138694e-01 -2.75321692e-01 8.26363042e-02 -3.64143550e-01\\n1.92684725e-01 -5.89373112e-01 -1.00335971e-01 -4.46457230e-02\\n8.21726561e-01 -4.92054969e-01 1.70401022e-01 8.44793841e-02\\n1.05904326e-01 2.19868317e-01 3.37428525e-02 -2.01215759e-01\\n-2.15338260e-01 -1.58315882e-01 7.05938786e-03 -2.28039891e-01\\n4.87488031e-01 6.61855459e-01 -2.19347611e-01 -6.30247965e-02\\n-5.26456609e-02 -3.50032270e-01 -5.58364630e-01 -4.45592344e-01\\n-2.68399388e-01 -1.35800511e-01 -5.85095525e-01 -5.66539526e-01\\n-1.08244471e-01 -9.32676941e-02 -6.81870803e-03 4.28097367e-01\\n-1.50686160e-01 -4.83904272e-01 -1.14989646e-01 -4.15947706e-01\\n2.27360707e-02 -4.92130369e-02 -1.11903474e-01 -2.16282815e-01\\n-1.86762363e-01 -5.00051081e-01 -3.90059277e-02 1.36127928e-02\\n-5.28955683e-02 -1.96430475e-01 2.29290009e-01 -1.99010238e-01\\n-3.29259098e-01 -5.48078597e-01 4.89018321e-01 -2.79402137e-02\\n2.53945291e-01 1.90333620e-01 1.59944892e-01 2.07528010e-01\\n2.86194772e-01 -3.49974006e-01 1.44702464e-01 -3.99543107e-01\\n2.06527516e-01 9.96987745e-02 5.91514885e-01 -1.98873103e-01\\n2.19080344e-01 6.93314523e-02 -2.03553587e-01 -2.92308301e-01\\n3.36837709e-01 -5.78180049e-03 1.31984368e-01 -3.36725593e-01\\n3.13762158e-01 -2.81081229e-01 -3.65591347e-01 1.01407669e-01\\n4.60270457e-02 4.66940701e-01 -1.10179998e-01 -3.70759815e-01\\n-1.23243846e-01 5.11837840e-01 -2.46323869e-01 -3.49385515e-02\\n-2.05974832e-01 6.36456534e-02 -2.70891935e-01 3.24981004e-01\\n-7.66094541e-03 -4.37018685e-02 -2.44955033e-01 -1.36966482e-01\\n1.76106449e-02 3.36794376e-01 3.41201603e-01 1.48395792e-01\\n1.59920231e-02 -4.75256264e-01 6.21278621e-02 1.56087592e-01\\n1.56474024e-01 2.22430944e-01 7.74851814e-02 -1.30061388e-01\\n-8.44225660e-03 2.84652472e-01 -1.45294279e-01 1.89528227e-01\\n-1.80046141e-01 1.01506181e-01 -4.92564589e-01 -3.58855993e-01\\n-2.09566161e-01 -2.00662091e-01 -9.01010167e-03 2.29140982e-01\\n8.04000422e-02 2.23469045e-02 -2.23900080e-02 -3.97925854e-01\\n2.55073816e-01 -4.23385687e-02 3.16053420e-01 2.83185959e-01\\n-7.64413327e-02 5.54505944e-01 1.53921591e-02 -2.89062653e-02\\n-1.51309267e-01 1.85446292e-01 -2.24187270e-01 -5.84200136e-02\\n1.47736436e-02 -4.12767559e-01 1.02732447e-03 3.14067632e-01\\n7.87110701e-02 -3.07916999e-01 -1.13886051e-01 1.60979450e-01\\n-7.46283531e-02 -5.67429066e-01 -1.63901493e-01 4.24567014e-02\\n3.78168434e-01 1.38274431e-01 2.83322155e-01 -5.22491395e-01\\n4.52991296e-03 6.42336458e-02 -6.26313686e-02 4.21566278e-01\\n-5.90868182e-02 -3.16721722e-02 3.55639644e-02 -3.36971372e-01\\n3.43423098e-01 -2.34619349e-01 9.70408395e-02 4.52381596e-02\\n1.04210071e-01 -1.37332320e-01 -3.78594518e-01 2.35488713e-02\\n-1.17967620e-01 -9.54593122e-02 -1.22582875e-02 -2.44746190e-02\\n-7.03425631e-02 3.82699445e-02 -4.80180591e-01 -2.10277826e-01\\n-2.51636982e-01 -1.71338916e-01 -1.47469461e-01 -4.04725224e-01\\n-1.03114331e-02 2.57051643e-02 -5.25992215e-01 3.11185807e-01\\n-2.31051281e-01 2.84275599e-02 1.91949308e-01 -7.39476755e-02\\n-4.34099525e-01 -1.59316778e-01 3.34305763e-01 2.82531619e-01\\n-2.94821560e-01 -2.86530107e-01 -5.27864434e-02 -9.87396836e-01\\n2.51854837e-01 -5.49037233e-02 -1.32075861e-01 1.50083631e-01\\n-1.20767262e-02 -5.24159908e-01 2.37421513e-01 -4.16587293e-01\\n-6.22147471e-02 -5.29956892e-02 -2.34015137e-01 -3.72200936e-01\\n2.71727778e-02 4.51723970e-02 -2.69870043e-01 3.56314659e-01\\n-4.03634518e-01 3.58975261e-01 -5.57620563e-02 5.98030165e-02\\n-1.12495236e-01 -2.26095483e-01 1.17799491e-02 -5.20498931e-01\\n-4.39296663e-01 -1.00154780e-01 -1.79337889e-01 -1.12963341e-01\\n2.22410425e-03 -2.32969120e-01 -6.41409010e-02 1.32413328e-01\\n2.47191429e-01 1.76835135e-01 -8.80046710e-02 -9.27972868e-02\\n8.91120136e-02 -4.25641090e-01 -1.10774219e-01 -1.37514517e-01\\n-2.40637157e-02 -1.82481840e-01 1.49245441e-01 1.38758361e-01\\n-4.24188450e-02 -4.53247249e-01 3.66322339e-01 -1.97753906e-01\\n-2.29975164e-01 3.70309688e-02 6.47864565e-02 5.85301332e-02\\n3.89317870e-01 -4.17916179e-01 -6.27590418e-02 4.24100697e-01\\n1.33068427e-01 9.51957032e-02 2.01168790e-01 -2.39782948e-02\\n-1.84909716e-01 3.25457275e-01 -3.57955694e-01 5.25382087e-02\\n7.24623621e-01 2.09526330e-01 1.51871324e-01 1.70760036e-01\\n2.08596677e-01 3.53761464e-01 4.39930469e-01 3.19839455e-02\\n-5.39324880e-02 4.53329444e-01 4.76834923e-02 -6.83057487e-01\\n1.15793675e-01 1.72072485e-01 -3.65122318e-01 -2.51984000e-01\\n6.34747446e-01 4.88714069e-01 -2.57751048e-01 -2.90998310e-01\\n-2.68452317e-01 -1.90947950e-01 1.29199877e-01 -1.83907375e-01\\n2.05782697e-01 -2.23131686e-01 5.16969860e-01 -9.07537714e-03\\n9.72479582e-02 4.58439320e-01 -1.98333189e-01 -3.06593776e-01\\n-2.28513796e-02 9.74383205e-02 -7.14830169e-03 4.56144810e-01\\n-1.95409119e-01 1.90448627e-01 1.75253358e-02 2.25209072e-01\\n-1.32627234e-01 1.34454042e-01 1.73563972e-01 4.96530868e-02\\n1.12159260e-01 1.12515189e-01 2.90159196e-01 4.11597908e-01\\n3.90187532e-01 5.01069069e-01 1.96007580e-01 2.06424426e-02\\n5.12788177e-01 4.56059813e-01 3.69313747e-01 2.01449707e-01\\n-7.03294352e-02 -9.29684490e-02 4.68275584e-02 -1.02850767e-02\\n2.95849949e-01 2.14971185e-01 2.41975319e-02 9.31453824e-01\\n4.69283640e-01 2.33042538e-01 7.39988506e-01 -5.48869729e-01\\n-3.62073839e-01 -9.28331167e-02 4.74578679e-01 -3.84040713e-01\\n-6.44315407e-02 -2.62221266e-02 -2.70430803e-01 1.15331747e-01\\n-5.07271290e-01 -2.09858894e-01 -6.33187667e-02 3.30033749e-02\\n9.35626253e-02 -4.66390550e-02 -2.38250613e-01 -1.75947428e-01\\n-1.93385333e-01 -1.02736726e-01 -5.50521672e-01 2.18545292e-02\\n-1.71140760e-01 -2.89344877e-01 -1.34555623e-01 -2.80635417e-01\\n1.73020158e-02 -3.64426762e-01 -1.86481550e-01 5.58647811e-02\\n2.26668745e-01 -1.41100362e-01 -9.26727280e-02 -1.74787849e-01\\n2.52689928e-01 2.80681372e-01 4.18067276e-01 3.69231626e-02\\n4.75505553e-02 -1.96277454e-01 -1.23627000e-01 1.08301155e-01\\n2.17101082e-01 1.78264022e-01 -1.37645509e-02 4.07945573e-01\\n-3.80648315e-01 -2.36384973e-01 -3.04590575e-02 4.74814773e-01\\n-5.19779146e-01 4.66234935e-03 1.60524741e-01 2.75635839e-01\\n2.42030323e-02 3.08335125e-02 -2.24676445e-01 3.66166942e-02\\n-2.69231200e-01 -4.17550087e-01 3.02157164e-01 -2.64477916e-02\\n-1.75432816e-01 5.30268997e-02 8.08938444e-02 1.16766088e-01\\n-2.29973868e-01 -1.78334653e-01 -1.40094506e-02 1.16368614e-01\\n2.70970404e-01 2.35928327e-01 -2.40115345e-01 -2.86209136e-01\\n-3.74409020e-01 1.27561614e-01 -2.61240631e-01 6.71515986e-02\\n-1.04527317e-01 2.55681783e-01 1.60360932e-01 1.34178311e-01\\n3.12719405e-01 5.60156885e-04 -1.22661293e-01 -1.72438115e-01\\n-2.95293003e-01 -3.15940797e-01 8.99973512e-02 3.27010304e-02\\n1.51964173e-01 -3.79569679e-01 -9.84428078e-02 -7.79747739e-02\\n-2.49047846e-01 -3.57141614e-01 3.70115740e-03 -2.45151564e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Full-Stack Java Software Engineer. This role is permanent position based in Bern Canton. Your Role: Develop & expand innovative web-based business applications for the business & for customers. Assist in driving the digitization of business processes. Partake in designing, implementing & documenting helpful software solutions & functions. Assist in the testing & release of our applications & provide support with associated questions or problems. Support Application Servers (Linux). Your Skills: 2 to 5 years of professional experience in a similar role. Strong Java programming skills. Sound expertise with web technologies including HTML, CSS & JavaScript. Good experience with Databases (preferably MySQL). Ideally experienced with Spring. Your Profile: Completed Computer Science University Degree. Self-driven, reliable, pragmatic, methodical & both solution & customer-oriented. Further education in Project Management a plus. Fluent German & English (spoken & written), French is also very advantageous. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Innovation\", \"Positivity\", \"Reliability\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Web Application Security\", \"Project Management\", \"Programming (Music)\", \"Business Process\", \"Linux\", \"Receivables\", \"Cascading Style Sheets (CSS)\", \"Digitization\", \"JavaScript (Programming Language)\", \"Application Servers\", \"Computer Science\", \"Java (Programming Language)\", \"Idealization\", \"HyperText Markup Language (HTML)\", \"Software Engineering\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '79',\n", + " 'job_title': 'back-end software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.new-cruit.com',\n", + " 'jobdescription_embedded': '[[-2.52629459e-01 3.44173402e-01 4.45862025e-01 6.23906590e-02\\n5.12043893e-01 -1.91010758e-01 6.94477707e-02 1.96339041e-01\\n8.32922384e-02 -5.35314679e-01 5.28245345e-02 -2.13162586e-01\\n-2.13881880e-01 -8.43519252e-03 1.44815117e-01 5.63795924e-01\\n3.21282774e-01 4.93694879e-02 -1.88681111e-01 4.52573508e-01\\n-2.34295651e-02 -1.59971237e-01 -2.45057028e-02 6.96723044e-01\\n4.02635366e-01 -4.54032794e-02 -6.83457851e-02 3.39340791e-02\\n-2.57432908e-01 -2.25557581e-01 5.18550038e-01 6.49552643e-02\\n-1.65702075e-01 -4.91090924e-01 1.71116903e-01 1.38989791e-01\\n-1.35769084e-01 1.26220882e-01 -1.17015645e-01 2.10567713e-01\\n-5.78663945e-01 -2.40624160e-01 1.82870761e-01 -1.09484576e-01\\n-2.28238583e-01 -4.35106844e-01 3.63817289e-02 -2.48748615e-01\\n1.83808327e-01 4.93896566e-02 -3.77140790e-01 2.46834680e-01\\n-3.49804372e-01 -1.86519399e-01 3.27568114e-01 6.67690575e-01\\n1.35845676e-01 -5.96476316e-01 -5.31105757e-01 -4.40885067e-01\\n5.18056341e-02 -1.17855549e-01 7.33027458e-02 -3.30406040e-01\\n2.35667527e-01 -1.00713260e-02 3.42811905e-02 2.53360361e-01\\n-7.84041524e-01 -6.75998535e-03 -3.93786192e-01 1.85126960e-02\\n-3.99605781e-01 -5.15440144e-02 -4.51289266e-01 -2.33670995e-02\\n-1.15439400e-01 4.28910315e-01 4.87415940e-02 1.08806649e-02\\n-2.63902903e-01 2.50999987e-01 -3.01393598e-01 3.58586460e-01\\n2.95333564e-01 1.37247711e-01 4.02073264e-01 5.06426275e-01\\n-4.92559642e-01 5.22469997e-01 2.71241188e-01 -3.56106848e-01\\n2.85269409e-01 1.83862776e-01 3.78057420e-01 1.07572690e-01\\n1.68036401e-01 1.61322355e-01 -1.45484194e-01 3.43868494e-01\\n2.69989878e-01 -2.91497558e-01 -3.20349522e-02 -2.82433331e-01\\n2.24222373e-02 1.04608135e-02 1.00730613e-01 2.22989291e-01\\n-3.02136898e-01 5.03085256e-01 6.25512823e-02 -2.64079124e-01\\n-2.09150702e-01 -4.29202139e-01 -1.46537393e-01 8.33792388e-02\\n-8.86618160e-03 1.76348701e-01 2.72630483e-01 9.89783704e-02\\n1.57776088e-01 9.35270339e-02 6.76951781e-02 8.74208152e-01\\n-3.85554768e-02 2.71028206e-02 -2.72867680e-01 2.68353462e-01\\n2.04823047e-01 -3.27082783e-01 1.03580169e-01 2.13063210e-01\\n-1.63754091e-01 -1.44316450e-01 -3.76063406e-01 4.12009478e-01\\n-6.15235083e-02 -1.56853229e-01 -3.21053326e-01 1.65689692e-01\\n-3.27442726e-03 -5.20593226e-01 7.37536490e-01 -2.09342521e-02\\n2.41540954e-01 5.97160496e-02 1.30263343e-01 -5.91147430e-02\\n-8.74198973e-02 1.97835371e-01 1.23046868e-01 2.37435400e-01\\n-3.08478683e-01 -2.57519424e-01 -2.03671455e-01 2.44564429e-01\\n-3.66788179e-01 1.95948049e-01 -3.10803354e-01 -9.53772813e-02\\n2.72348374e-01 2.46886805e-01 -4.18192625e-01 9.23676491e-02\\n-1.09482422e-01 -8.05328637e-02 -2.65676267e-02 4.40333694e-01\\n-1.74382806e-01 1.87116832e-01 9.78515893e-02 -3.75479981e-02\\n6.53807044e-01 2.48010278e-01 2.07100779e-01 -2.99526900e-02\\n4.51596528e-01 -1.07376315e-01 8.63954648e-02 6.61983863e-02\\n-5.41783810e-01 3.07289779e-01 -1.17348343e-01 -1.45045342e-02\\n4.11962830e-02 -1.19630501e-01 3.00747424e-01 -2.28658795e-01\\n-1.01059988e-01 -2.03454986e-01 -3.73826683e-01 -1.72878951e-01\\n-1.96190178e-01 -7.70121887e-02 3.76635402e-01 -5.34974277e-01\\n-5.64226843e-02 3.18215162e-01 -6.72423005e-01 -1.65108517e-01\\n2.80361086e-01 2.36525655e-01 1.00475222e-01 1.07407719e-01\\n-1.27873689e-01 -6.15840614e-01 4.16055955e-02 -5.56906998e-01\\n-5.08829713e-01 1.00571863e-01 -3.42484742e-01 2.00262800e-01\\n2.89539378e-02 6.95717782e-02 -1.96545660e-01 8.30118358e-02\\n-2.43504927e-01 -1.40314549e-02 1.19549334e-01 7.96985924e-02\\n2.11558372e-01 1.11827038e-01 -3.66513610e-01 5.18300116e-01\\n-2.60955155e-01 4.61858720e-01 9.18685421e-02 -1.00591838e+00\\n5.88422239e-01 3.41479003e-01 -1.09247766e-01 -4.05876726e-01\\n3.92090768e-01 -4.02173430e-01 -3.62899527e-02 1.30129308e-01\\n-2.49703199e-01 -2.56904572e-01 2.71944880e-01 -1.79742903e-01\\n-3.61398369e-01 5.45851290e-01 -3.13703455e-02 1.13330573e-01\\n2.81052560e-01 -2.64893591e-01 -2.12522760e-01 6.44372180e-02\\n-1.36220127e-01 -1.73466042e-01 -6.08488858e-01 9.64594632e-02\\n-2.67771375e-03 -5.03803909e-01 -1.03234068e-01 -5.09714127e-01\\n-2.48162031e-01 -4.38020319e-01 -3.00733119e-01 1.58568859e-01\\n2.53807604e-01 1.59623131e-01 -9.57479477e-02 -5.13354056e-02\\n-3.47690284e-02 -7.84690142e-01 -6.29080907e-02 1.78161204e-01\\n3.88362318e-01 2.41264790e-01 -8.92814994e-03 -5.36340810e-02\\n7.98486546e-02 5.79920828e-01 -3.13425124e-01 -2.63456076e-01\\n1.64162815e-01 1.79011613e-01 -4.02446575e-02 -1.45627454e-01\\n6.67357817e-02 3.92974347e-01 -3.03610772e-01 2.41098590e-02\\n6.85065836e-02 -1.00797296e-01 4.62044805e-01 3.90694104e-03\\n-3.91950250e-01 -1.44121960e-01 -1.12470761e-01 1.48750767e-01\\n-6.95654035e-01 -2.66852260e-01 6.69169724e-01 1.84118837e-01\\n2.40896985e-01 1.69470549e-01 1.35775760e-01 -7.85466209e-02\\n-2.91618586e-01 -2.81389475e-01 4.71693516e-01 1.42373145e-01\\n1.08405948e-01 1.17338583e-01 -8.60901028e-02 -6.53682888e-01\\n-3.02160668e+00 -1.23367876e-01 1.77457675e-01 -1.49558336e-01\\n1.54940173e-01 -1.28091410e-01 1.82346553e-01 -1.70394599e-01\\n-3.48404348e-01 -4.51581366e-02 -1.12588331e-01 -6.12833239e-02\\n3.03010382e-02 2.15196297e-01 1.48208961e-01 1.05574965e-01\\n2.40968719e-01 -1.78380415e-01 -6.77975565e-02 3.31111699e-01\\n-6.40313625e-02 -7.46929586e-01 1.30374059e-01 -1.57523863e-02\\n1.92631468e-01 1.20495848e-01 -3.93498361e-01 -1.12514615e-01\\n-3.64770532e-01 -1.86699301e-01 5.54049760e-02 -2.29429796e-01\\n-2.08803728e-01 3.52460071e-02 1.50268912e-01 -1.02102630e-01\\n8.49925354e-02 -3.81473750e-01 -1.21511616e-01 -4.46377367e-01\\n9.49458256e-02 -7.31945813e-01 -1.61614195e-02 -1.90039679e-01\\n6.17086351e-01 -1.36192054e-01 2.50862926e-01 1.39882550e-01\\n1.40470117e-01 4.69379760e-02 7.86319524e-02 2.58658808e-02\\n-2.00941518e-01 -3.25023532e-01 -7.53650591e-02 -1.03733584e-01\\n7.54778504e-01 3.23911667e-01 -1.03402816e-01 -5.74167185e-02\\n1.19169220e-01 -3.00897568e-01 -5.40466368e-01 -1.83131456e-01\\n-1.75716802e-01 -1.53456196e-01 -6.68267310e-01 -4.39526021e-01\\n-3.76052439e-01 -9.81768966e-02 -1.56072021e-01 7.60220170e-01\\n-2.28229284e-01 -2.70134389e-01 3.40442918e-02 -5.37388980e-01\\n1.61362097e-01 -1.75772458e-01 1.15837485e-01 -2.97041923e-01\\n-2.96282828e-01 -5.29393435e-01 5.29293679e-02 1.27877090e-02\\n-8.89407024e-02 -1.97517097e-01 3.15782777e-03 -8.41364190e-02\\n-3.51390123e-01 -4.90815461e-01 4.16986555e-01 1.21488214e-01\\n3.34602982e-01 1.57761991e-01 4.57187682e-01 -7.15053305e-02\\n3.99711639e-01 1.89930182e-02 -8.14265385e-02 -3.57591599e-01\\n1.65344104e-01 4.49354276e-02 6.04136050e-01 -1.92642063e-01\\n-1.26157120e-01 2.59796679e-01 -2.77426690e-01 -8.99136662e-02\\n4.80458617e-01 -3.46991941e-02 7.20962044e-03 -5.33468090e-02\\n2.67772466e-01 -3.24091613e-01 -2.54160166e-01 8.38770643e-02\\n7.99987465e-02 7.82913983e-01 -2.75510103e-02 -5.05861819e-01\\n-1.10338494e-01 4.74218667e-01 -1.15453660e-01 1.41885042e-01\\n-2.72034556e-01 1.04855150e-01 -1.37051895e-01 3.82102221e-01\\n3.44623215e-02 -2.03908786e-01 -2.31932834e-01 -1.25019625e-01\\n-1.39573649e-01 3.14118713e-01 1.81366101e-01 6.92413971e-02\\n-3.81642468e-02 -3.09711277e-01 -1.79336578e-01 1.60266861e-01\\n2.33946756e-01 4.25576299e-01 1.05251171e-01 -3.36875141e-01\\n-7.99209550e-02 3.02994937e-01 -2.55585968e-01 1.99892893e-01\\n-2.57109225e-01 2.14733049e-01 -5.36481977e-01 -2.39596695e-01\\n-2.57408977e-01 -4.84862089e-01 1.82840198e-01 4.75107133e-01\\n1.20610699e-01 -1.61464047e-02 1.10419750e-01 -4.97041762e-01\\n3.00734967e-01 3.26716214e-01 9.50066671e-02 1.05327189e-01\\n-1.03310689e-01 6.82955086e-01 -1.74146891e-02 -2.18716040e-01\\n-1.60640329e-01 5.40904514e-02 -2.67390549e-01 -2.44346172e-01\\n1.02685139e-01 -5.67696273e-01 -7.53526688e-02 5.04691780e-01\\n1.32942110e-01 -2.52341062e-01 -3.16964120e-01 2.39024699e-01\\n5.59407547e-02 -2.60295600e-01 -2.54956424e-01 -9.28423330e-02\\n2.42276073e-01 -1.83577806e-01 3.31969529e-01 -4.38617766e-01\\n2.90286299e-02 -1.34775890e-02 -3.50867659e-02 5.52272320e-01\\n1.30793080e-01 1.85309976e-01 -1.72013924e-01 -8.85182023e-02\\n5.49534082e-01 3.09601892e-02 -1.52427673e-01 -6.66072294e-02\\n1.06962606e-01 -2.56585747e-01 -4.70933437e-01 2.02568974e-02\\n-8.38004798e-02 -1.28317654e-01 2.44886689e-02 1.61630780e-01\\n3.30508053e-02 1.31029636e-01 -5.94644785e-01 -3.56358320e-01\\n-3.53924155e-01 -6.17556944e-02 5.43229356e-02 -5.97023249e-01\\n-9.73308906e-02 -9.58170742e-02 -6.23279452e-01 2.57559031e-01\\n-7.00980797e-02 -1.88201115e-01 2.79428244e-01 1.76112652e-01\\n-1.95934832e-01 -2.77131915e-01 1.94132701e-02 2.45323718e-01\\n-2.47798428e-01 -3.83297741e-01 -8.40785950e-02 -1.02265096e+00\\n2.54599273e-01 8.81804377e-02 -3.00135106e-01 1.74438417e-01\\n-1.34246781e-01 -7.62310028e-01 8.14684108e-02 -4.14375752e-01\\n-9.17230770e-02 5.77824377e-02 -2.52718121e-01 -3.53901178e-01\\n7.02924728e-02 -1.02988906e-01 -3.21350634e-01 4.77922142e-01\\n-3.76991510e-01 4.23817277e-01 -1.00547791e-01 1.00790113e-01\\n5.70624024e-02 -2.24005610e-01 1.03113815e-01 -2.94039458e-01\\n-4.90265816e-01 -3.64668339e-01 -3.31977993e-01 -3.53167295e-01\\n1.26190307e-02 -3.75614583e-01 -1.61943957e-01 8.25321004e-02\\n3.95506889e-01 2.10240617e-01 -9.00697038e-02 -2.90160745e-01\\n5.50329573e-02 -4.76190537e-01 7.77752250e-02 -2.36528635e-01\\n7.62994261e-03 -2.69861221e-01 2.81271040e-01 6.64549172e-02\\n2.02346310e-01 -3.46492290e-01 4.51571912e-01 -2.32075065e-01\\n-3.53937656e-01 -2.55619824e-01 4.91918959e-02 3.43124010e-02\\n3.07493329e-01 -4.96089995e-01 3.72170843e-02 1.93662480e-01\\n1.46189526e-01 1.50524974e-02 1.96991101e-01 -9.22488347e-02\\n1.95482131e-02 1.89220265e-01 -3.57419997e-01 2.09988877e-01\\n7.21627474e-01 1.09285221e-01 1.47000521e-01 1.68627158e-01\\n2.24640325e-01 3.69526118e-01 6.50764883e-01 -5.87636009e-02\\n-1.67114325e-02 3.10909539e-01 9.01329517e-02 -4.48221862e-01\\n-1.03411794e-01 -8.16141888e-02 -1.34522855e-01 -3.51212502e-01\\n7.18336761e-01 4.55469042e-01 -3.63587677e-01 -2.75334150e-01\\n-2.87463993e-01 -2.38600537e-01 3.59923124e-01 5.73926009e-02\\n-6.26214817e-02 1.36710145e-02 5.33423126e-01 3.71365948e-03\\n2.51672477e-01 5.83454669e-01 -2.70507127e-01 -4.26637411e-01\\n-1.39353141e-01 2.79175043e-01 2.35196166e-02 4.65398252e-01\\n-2.58105755e-01 1.25038877e-01 4.49249372e-02 9.12460685e-02\\n-2.43405014e-01 1.52760044e-01 1.68232217e-01 1.14866622e-01\\n3.08111578e-01 -9.59058106e-02 5.70454240e-01 4.90720481e-01\\n2.38117233e-01 4.34093356e-01 3.78032953e-01 5.41085340e-02\\n3.27759087e-01 6.44500673e-01 4.57246780e-01 1.33670047e-01\\n9.92618129e-02 1.71937436e-01 2.15590551e-01 5.83836176e-02\\n3.98519665e-01 4.84717309e-01 1.76751077e-01 8.40822816e-01\\n3.39753866e-01 4.02478456e-01 7.11822867e-01 -7.28730381e-01\\n-4.14266288e-01 5.33480532e-02 6.43004298e-01 -2.83435374e-01\\n4.47969399e-02 3.13256145e-01 -2.01476201e-01 2.64459401e-01\\n-5.15355766e-01 -3.35969687e-01 9.23977792e-03 5.80548272e-02\\n3.32334228e-02 -1.97650522e-01 -9.98132303e-02 1.60991117e-01\\n-1.54560313e-01 -1.64471209e-01 -3.33602726e-01 -9.27473530e-02\\n-3.15338254e-01 1.13450803e-01 3.59370140e-03 -1.98736861e-01\\n-8.51261690e-02 -3.92834067e-01 -6.33164793e-02 -5.63281178e-02\\n3.60687643e-01 -5.60680144e-02 -1.50373772e-01 -1.13078840e-02\\n1.74154118e-01 2.72796392e-01 6.25109732e-01 4.91266176e-02\\n9.50456932e-02 -1.52040496e-01 -2.00154930e-01 2.18478218e-01\\n8.63993466e-02 6.07591793e-02 6.27570366e-03 3.65369409e-01\\n-2.35750481e-01 -1.74737453e-01 1.20177262e-01 3.42562467e-01\\n-3.40080887e-01 -4.36298028e-02 -2.30271712e-01 1.38296559e-01\\n6.71824217e-02 1.43733352e-01 -2.21462220e-01 -4.19094376e-02\\n-1.06835902e-01 -6.02924347e-01 4.16045040e-01 -2.46724159e-01\\n-1.66427344e-01 -7.47293755e-02 2.58477628e-01 2.80340642e-01\\n-3.20516944e-01 -1.42760994e-02 -7.15295523e-02 1.46856397e-01\\n2.32023988e-02 3.76236796e-01 -8.77024010e-02 -2.37568676e-01\\n-2.80144900e-01 2.42821842e-01 2.92303227e-02 1.34233996e-01\\n1.37099475e-02 4.56862837e-01 7.24967048e-02 -2.92163604e-04\\n4.18716997e-01 2.10595466e-02 -3.39456022e-01 -1.79073080e-01\\n-2.34739423e-01 -2.23755669e-02 -7.11934119e-02 -7.09626898e-02\\n1.53066576e-01 -3.82433593e-01 6.68995315e-04 -2.03752980e-01\\n-9.70880240e-02 -4.17935044e-01 -1.34624690e-01 -4.14729826e-02]]',\n", + " 'job_description': 'As a Backend Software Engineer you will have an unusual and great opportunity to join us: a diverse and motivated team, committed to delivering value and creative services together with our clients and partners in the primary industry space. Responsibilities You will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a high-traffic distributed infrastructure by designing, implementing and testing simple, scalable and reliable solutions. This will include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability End-to-end responsibility on the applications implemented, including monitoring, identifying issues or bottlenecks and delivering improvements of the platform Optimise applications and components to maximize speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications About you Proven software development capabilities (5+ years hands-on experience) in any modern language (Java/Kotlin/Scala/C++/C#/Go/Python…) Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality overtime You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience designing data-models for relational and NoSQL data stores Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long term vision the adoption of new technologies Master’s or PhD degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently ',\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Leadership\", \"Collaboration\", \"Infrastructure\", \"Team Motivation\", \"Reliability\", \"Creativity\", \"Written English\"]',\n", + " 'hard_skills': '[\"Performance Improvement\", \"NoSQL\", \"Computer Science\", \"Collections\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Industrialization\", \"Scholastic READ 180\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Streamlines\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Prototyping\", \"Maintainability\", \"Library\", \"Iterators\", \"Software Engineering\", \"Micro Channel Architecture\", \"Message Passing\", \"Concurrent Versions System (Software)\", \"Business Process\", \"C# (Programming Language)\", \"Performance Metric\", \"Scalability\", \"Experience Design\", \"Software Development\", \"Algorithms\", \"Operational Data Store\", \"Custom Backend\", \"Quality Improvement\", \"Long-Term Potentiation\", \"Kotlin\", \"Adoptions\", \"RESTful API\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English', 'Sundanese', 'North Ndebele']\"},\n", + " {'company_id': '54',\n", + " 'job_title': 'devops engineer, genedata biologics',\n", + " 'location': 'Basel',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.genedata.com',\n", + " 'jobdescription_embedded': '[[-1.69523150e-01 3.19825441e-01 4.08377171e-01 -1.59712415e-02\\n5.68628192e-01 -9.49690565e-02 -7.24607557e-02 3.66208315e-01\\n-4.60393503e-02 -4.28351879e-01 -3.31419744e-02 -2.50325799e-01\\n-7.22204745e-02 1.58022121e-01 1.21643066e-01 4.33333069e-01\\n3.59716475e-01 1.38958231e-01 -1.41149908e-01 3.54331344e-01\\n1.16978735e-02 -1.60774738e-01 5.42537011e-02 8.68497312e-01\\n2.75335133e-01 1.45401573e-02 -1.62993923e-01 -7.04530030e-02\\n-2.31061846e-01 -1.64121673e-01 4.84606564e-01 9.13866237e-03\\n-1.27304882e-01 -3.87431860e-01 1.09087497e-01 7.55339116e-02\\n-2.90875196e-01 -2.20784545e-02 -1.77963927e-01 1.17137887e-01\\n-5.03516197e-01 -2.82112539e-01 3.95090133e-02 -2.49374267e-02\\n-2.76795298e-01 -2.60850579e-01 1.13234401e-01 -4.90063578e-02\\n2.46764243e-01 1.06271856e-01 -6.41632140e-01 9.54470411e-02\\n-3.92902613e-01 -2.03401476e-01 3.48890334e-01 6.76024795e-01\\n4.53432351e-02 -4.12259459e-01 -5.74603975e-01 -3.81613165e-01\\n-2.14871932e-02 -1.28638238e-01 -1.21168774e-02 -3.35526526e-01\\n2.85394818e-01 5.93488924e-02 9.51724499e-02 2.60312736e-01\\n-8.69517267e-01 -7.31318593e-02 -2.48408496e-01 -1.49784712e-02\\n-3.99319410e-01 1.59207620e-02 -3.48359823e-01 -1.14956886e-01\\n-2.00684562e-01 4.74097431e-01 4.55482230e-02 1.49114236e-01\\n-2.45470256e-01 3.21167827e-01 -2.38628417e-01 4.13461566e-01\\n2.34357372e-01 1.85906395e-01 2.36392260e-01 4.26935554e-01\\n-4.62065816e-01 4.72172439e-01 2.21478701e-01 -2.21754551e-01\\n2.32138008e-01 7.60732293e-02 3.30681264e-01 6.98821023e-02\\n1.65382236e-01 1.01575285e-01 -2.56095648e-01 2.76887953e-01\\n2.30976701e-01 -2.64768928e-01 5.61213121e-03 -1.44538015e-01\\n5.45544215e-02 -1.10821761e-02 2.10196767e-02 2.20088348e-01\\n-3.16050082e-01 3.71842891e-01 1.59433722e-01 -2.42536128e-01\\n-1.86201334e-01 -5.27682900e-01 -8.50154459e-02 1.02491066e-01\\n-1.05620902e-02 8.97506252e-05 2.21573114e-01 1.11803263e-02\\n3.18246007e-01 9.34616178e-02 6.69263303e-02 8.76152396e-01\\n-1.71973258e-01 -1.71828438e-02 -2.84300238e-01 2.41001695e-01\\n1.28416359e-01 -2.50951648e-01 1.52597442e-01 1.32525474e-01\\n-1.71166211e-02 1.18869869e-02 -2.56879926e-01 3.75991374e-01\\n1.03284232e-02 -1.94217950e-01 -2.47745812e-01 3.03407133e-01\\n-8.46239477e-02 -4.44703221e-01 5.85891724e-01 1.35878790e-02\\n1.47686258e-01 -1.38425946e-01 8.04063305e-02 -2.54765227e-02\\n-5.11916205e-02 1.79073185e-01 6.37496486e-02 1.63923562e-01\\n-3.39504004e-01 -3.48111272e-01 -1.78644717e-01 1.23850949e-01\\n-2.72248209e-01 1.78822011e-01 -3.27588432e-02 -1.18826777e-01\\n2.56015062e-01 1.27487481e-01 -3.06014478e-01 1.57511771e-01\\n-1.56176478e-01 -2.81034745e-02 -7.35240337e-03 3.73016775e-01\\n-2.00857997e-01 1.60982519e-01 -4.83869947e-02 -1.05689779e-01\\n5.22619963e-01 1.68064788e-01 2.05680311e-01 -6.08065166e-03\\n3.26771230e-01 -8.01899731e-02 2.63964891e-01 6.32661358e-02\\n-6.86229527e-01 3.83514404e-01 2.94585060e-03 -1.77081466e-01\\n1.46837503e-01 -9.34691131e-02 3.69692981e-01 -3.09130073e-01\\n9.42510664e-02 -1.38732284e-01 -4.37074184e-01 -4.01054084e-01\\n-1.81613237e-01 -3.19040716e-02 3.44761431e-01 -4.89618987e-01\\n-1.55983686e-01 1.90277025e-01 -5.17658710e-01 -1.88104272e-01\\n1.76180184e-01 2.99023360e-01 1.38880163e-01 3.95734422e-02\\n-2.26868361e-01 -6.40342236e-01 5.20347580e-02 -5.40531456e-01\\n-2.17988387e-01 5.90698645e-02 -4.13146973e-01 1.92284137e-01\\n-2.23988779e-02 7.04785287e-02 -8.37423801e-02 7.38143474e-02\\n-3.72117341e-01 -1.39347106e-01 7.83644468e-02 3.05564664e-02\\n3.03632915e-01 6.64602220e-02 -3.07497501e-01 4.77437377e-01\\n-1.93293378e-01 5.23281038e-01 2.01012239e-01 -8.90274763e-01\\n5.66449642e-01 4.49444413e-01 -4.81768185e-03 -4.37739789e-01\\n5.28448462e-01 -4.74673837e-01 -1.03414550e-01 8.89598355e-02\\n-3.82881224e-01 -2.53200322e-01 1.85828611e-01 -1.85699940e-01\\n-2.41217613e-01 5.36592484e-01 -5.31897619e-02 1.22261703e-01\\n3.63249660e-01 -3.70205611e-01 -1.10581309e-01 1.94475800e-03\\n-2.10986547e-02 -2.90621281e-01 -5.64029157e-01 -4.57195640e-02\\n-7.24885762e-02 -4.23884928e-01 -1.44336700e-01 -4.21934664e-01\\n-1.26473099e-01 -2.77486354e-01 -2.64028639e-01 1.71844274e-01\\n2.14582264e-01 3.01922504e-02 -1.10108688e-01 1.08907156e-01\\n1.01692555e-02 -7.27389514e-01 9.57744867e-02 1.35612622e-01\\n4.09266233e-01 2.26215854e-01 1.89594090e-01 -1.01695418e-01\\n1.44564763e-01 6.04518414e-01 -2.81608939e-01 -3.42316628e-01\\n1.03332669e-01 1.82519436e-01 1.06046526e-02 -9.40589979e-02\\n1.84142053e-01 2.90192544e-01 -3.21844876e-01 3.32640037e-02\\n-4.79082018e-02 -8.91682953e-02 3.91070455e-01 -1.10669136e-01\\n-3.82619083e-01 -1.83560997e-01 -1.18094712e-01 5.58090247e-02\\n-6.13374770e-01 -2.07464233e-01 4.34046239e-01 1.14938281e-01\\n1.53022677e-01 2.36911938e-01 1.66698262e-01 2.57026441e-02\\n-3.07152778e-01 -3.37706268e-01 3.22429717e-01 1.36915356e-01\\n1.10930718e-01 2.86263637e-02 -5.16535752e-02 -6.58324599e-01\\n-2.94787788e+00 -1.13596104e-01 1.55140787e-01 -2.68149793e-01\\n4.23849642e-01 -1.01496845e-01 1.56961530e-01 3.38395797e-02\\n-2.26592660e-01 2.16750465e-02 -6.64617643e-02 -1.17585056e-01\\n8.07621777e-02 2.02082783e-01 3.52854803e-02 1.51310563e-01\\n1.45469487e-01 -2.87697434e-01 5.91152571e-02 3.17447037e-01\\n-1.35505766e-01 -7.96962500e-01 1.88196644e-01 -5.28429709e-02\\n1.84746236e-01 2.01750100e-01 -5.27199149e-01 -8.77359882e-02\\n-1.97188050e-01 -1.70902252e-01 1.84279121e-02 -3.15267026e-01\\n-1.75675586e-01 1.82019949e-01 2.47381270e-01 -1.45268992e-01\\n-3.07186581e-02 -3.58940303e-01 -1.28393680e-01 -6.49040103e-01\\n2.59566069e-01 -7.25894213e-01 2.77758017e-02 -1.91367775e-01\\n6.65437818e-01 -2.75763273e-01 2.77564730e-02 9.88833010e-02\\n2.61541367e-01 1.76414967e-01 1.13582619e-01 2.15509683e-02\\n-2.31556833e-01 -3.33618730e-01 -1.23900972e-01 -3.02786499e-01\\n5.92054844e-01 5.12880743e-01 -2.06457883e-01 8.91586617e-02\\n7.66231120e-02 -3.57572079e-01 -4.83876497e-01 -2.51234233e-01\\n-1.15615904e-01 -1.29324615e-01 -6.97894454e-01 -4.43426609e-01\\n-2.24776328e-01 -1.03771590e-01 -1.23413235e-01 7.26536989e-01\\n-3.59957755e-01 -3.65983427e-01 -5.80110252e-02 -6.78676486e-01\\n3.52647483e-01 -2.47136682e-01 5.68761304e-02 -3.23621809e-01\\n-2.39675656e-01 -3.83464158e-01 1.98912114e-01 -6.74836263e-02\\n-8.32306668e-02 -2.07519516e-01 -4.63842601e-02 -1.47503972e-01\\n-2.30184972e-01 -5.09384632e-01 5.01326859e-01 1.71006441e-01\\n4.67567086e-01 1.60499007e-01 3.92027318e-01 -1.00192137e-01\\n2.98035622e-01 8.46222192e-02 -9.56611037e-02 -3.56285751e-01\\n1.73924029e-01 1.13965817e-01 4.96148139e-01 -1.86498225e-01\\n2.65002064e-03 1.29890129e-01 -2.96549976e-01 -1.68262899e-01\\n3.06311429e-01 7.31500089e-02 -1.15258366e-01 -8.87201279e-02\\n3.74505043e-01 -4.39236015e-01 -1.52918696e-01 1.48669571e-01\\n1.28851488e-01 6.88226461e-01 -2.10308153e-02 -4.55970675e-01\\n-9.83574465e-02 5.23547292e-01 3.82679291e-02 4.81955670e-02\\n-1.07181355e-01 8.68616998e-02 -1.44232571e-01 3.35872412e-01\\n4.05211858e-02 -2.31066555e-01 -3.20666611e-01 -1.04577422e-01\\n-7.07095563e-02 3.99901092e-01 6.57235086e-02 1.71039283e-01\\n1.94352940e-02 -3.90448689e-01 -1.85824871e-01 2.68064499e-01\\n1.37210995e-01 5.10089874e-01 1.44069463e-01 -2.07786769e-01\\n1.27427187e-02 4.02851552e-01 -2.08572417e-01 3.29023868e-01\\n-1.65273160e-01 1.23706207e-01 -5.59564531e-01 -2.06682444e-01\\n-3.34111184e-01 -3.55124176e-01 1.57965004e-01 3.57743979e-01\\n1.94206730e-01 -2.51299646e-02 4.80717160e-02 -3.92621815e-01\\n2.09711015e-01 2.00897247e-01 9.55500379e-02 3.12888958e-02\\n-5.29631451e-02 6.57721221e-01 3.23811807e-02 -1.92982942e-01\\n-1.16225630e-01 5.25392368e-02 -1.84131548e-01 -1.14621937e-01\\n2.23191649e-01 -5.27357459e-01 -1.49204820e-01 4.74297851e-01\\n9.38007459e-02 -1.14794165e-01 -1.49673715e-01 3.27015877e-01\\n6.37401342e-02 -1.77546769e-01 -3.96411419e-01 2.68395469e-02\\n3.33310187e-01 9.21128988e-02 3.22574437e-01 -5.36340415e-01\\n-2.91029643e-02 4.87420112e-02 7.38196075e-02 4.60687846e-01\\n2.19637901e-02 -2.15530805e-02 -1.32633284e-01 -1.55590519e-01\\n4.62777555e-01 -3.72105464e-03 -1.00493520e-01 -4.53177616e-02\\n7.67569989e-02 -1.24546908e-01 -4.76082414e-01 5.17511554e-02\\n-4.20186371e-02 -1.91390350e-01 -5.41892536e-02 1.72158703e-01\\n1.55116335e-01 8.76512975e-02 -5.55608451e-01 -1.64522350e-01\\n-1.74549773e-01 1.38918832e-01 2.39093155e-02 -4.96697724e-01\\n7.27561209e-03 -2.43933462e-02 -6.17063820e-01 2.54291773e-01\\n-2.33470827e-01 -5.64701557e-02 2.41642654e-01 4.68929261e-02\\n-2.94498593e-01 -9.77524146e-02 1.47781312e-01 3.06969166e-01\\n-2.67386794e-01 -3.80507767e-01 -5.44847921e-02 -9.69862342e-01\\n1.22737214e-01 -7.90049955e-02 -1.99114531e-01 1.92134291e-01\\n6.50363117e-02 -7.41300941e-01 1.89023435e-01 -3.76494527e-01\\n-1.97161078e-01 2.91096698e-02 -3.17306697e-01 -3.17908257e-01\\n1.66587859e-01 -1.33196592e-01 -2.88195312e-01 3.48298669e-01\\n-3.39055449e-01 3.33755374e-01 -1.27165705e-01 4.14873064e-02\\n1.73163205e-01 -2.78643727e-01 1.99293107e-01 -3.32616031e-01\\n-4.33565497e-01 -2.82114834e-01 -3.86240929e-01 -4.26141918e-01\\n-6.16344586e-02 -3.24924529e-01 -7.15945959e-02 -1.05166808e-02\\n3.72518063e-01 1.52537031e-02 -1.75773308e-01 -2.52748489e-01\\n1.44567475e-01 -5.36238730e-01 1.26344442e-01 -6.13016635e-02\\n-4.55752611e-02 -8.04835558e-02 3.27935874e-01 9.76392329e-02\\n2.84355104e-01 -3.07380259e-01 4.32286590e-01 -2.37394571e-01\\n-3.94829959e-01 -2.45231315e-01 1.72596481e-02 3.73986922e-02\\n3.19693595e-01 -5.05958796e-01 -6.56296983e-02 3.21973532e-01\\n2.77238131e-01 2.13909764e-02 1.15014136e-01 -2.02715784e-01\\n4.80063893e-02 1.85811490e-01 -5.17018437e-01 1.25343591e-01\\n8.29329133e-01 1.13384418e-01 9.07536075e-02 2.62059003e-01\\n9.46845561e-02 3.20416510e-01 5.42597294e-01 -5.31152114e-02\\n-1.66910067e-01 3.73732090e-01 1.42731696e-01 -4.30932164e-01\\n-2.80078888e-01 3.38966586e-02 -2.20240861e-01 -5.17871976e-01\\n6.49480700e-01 3.91274929e-01 -5.03449917e-01 -2.61304379e-01\\n-1.82487726e-01 -1.08475082e-01 2.88784266e-01 -1.67719841e-01\\n-4.73861173e-02 -1.14523217e-01 3.66246521e-01 -2.38902103e-02\\n2.72657275e-01 6.03528917e-01 -5.82956448e-02 -3.80357176e-01\\n-1.36785328e-01 1.49857789e-01 4.37492058e-02 3.66552532e-01\\n-1.14739865e-01 1.75508738e-01 4.97278199e-02 2.25173786e-01\\n-2.79858649e-01 1.22312024e-01 5.75552583e-02 6.91215694e-02\\n1.65868253e-01 1.04539692e-01 5.77757418e-01 4.72931981e-01\\n2.81918913e-01 4.73100662e-01 2.80699372e-01 5.18417880e-02\\n4.94774133e-01 5.43698668e-01 4.09346581e-01 1.77940018e-02\\n-1.52973197e-02 1.87120229e-01 1.25025660e-01 -2.97119953e-02\\n3.76255244e-01 4.01301026e-01 1.44196153e-01 9.29425299e-01\\n2.27006346e-01 3.47128659e-01 7.18745470e-01 -5.71046770e-01\\n-3.85482609e-01 3.09947133e-02 6.50817633e-01 -5.86200237e-01\\n6.00607879e-02 7.66484439e-02 -2.67559409e-01 1.98509902e-01\\n-5.09359181e-01 -2.18710139e-01 6.67666271e-02 1.15288764e-01\\n-2.33700965e-02 -8.68032649e-02 -1.47720233e-01 1.34418473e-01\\n-1.29581600e-01 -2.12148011e-01 -4.32810158e-01 -1.93697363e-01\\n-2.10570648e-01 6.46115690e-02 -6.80867583e-02 -2.24780500e-01\\n3.40802670e-02 -3.48901033e-01 9.93169993e-02 1.37158064e-02\\n4.18153763e-01 -8.58591422e-02 -3.14194709e-03 -3.03081013e-02\\n3.09955537e-01 2.11959928e-01 6.69453025e-01 3.56251970e-02\\n1.81093216e-01 -2.59902269e-01 -2.53749311e-01 2.10558414e-01\\n1.00429058e-01 7.98162669e-02 4.53711972e-02 2.86670268e-01\\n-2.27514058e-01 -1.34462893e-01 8.05089548e-02 2.75910228e-01\\n-3.54013383e-01 -6.96183890e-02 -1.14449874e-01 7.83801526e-02\\n8.61885250e-02 1.94722205e-01 -2.19921917e-01 7.18716383e-02\\n-1.76585138e-01 -4.37105119e-01 4.08015549e-01 -2.16989905e-01\\n-1.57977670e-01 -3.21622491e-02 4.04590786e-01 2.10182548e-01\\n-3.23165059e-01 5.33735007e-02 -9.20294821e-02 2.10100710e-01\\n4.23870832e-02 2.55110741e-01 -2.21111506e-01 -3.59550834e-01\\n-3.04808259e-01 2.57264793e-01 -3.44090760e-02 5.70381880e-02\\n-3.38903069e-02 4.98192042e-01 4.76068631e-02 -3.05652507e-02\\n5.36664009e-01 -1.87651306e-01 -3.24882090e-01 -3.15354407e-01\\n-1.81762889e-01 -1.97047099e-01 -1.28536746e-01 -4.99667674e-02\\n2.14765519e-01 -3.67096156e-01 -1.18522085e-01 -1.96574420e-01\\n4.29852679e-03 -3.50048751e-01 -3.63499187e-02 -9.89696681e-02]]',\n", + " 'job_description': 'The Position We are looking for a qualified DevOps Engineer who is managing the deployment and customization of our successful Genedata Biopharma platform. Thousands of scientists across the globe work with our highly innovative platform in order to develop new, groundbreaking treatments for the most severe diseases. As part of a professional and dedicated engineering team, you will enable these scientists to fulfill their mission. Genedata’s Biopharma platform represents the very backbone of the data capturing and analysis workflows of the most important biopharma and biotech companies. It is installed either on premises or hosted in the cloud and constantly interoperates with numerous instruments and customer IT systems. As DevOps Engineer, you ensure the smooth and continuous running of this central piece of infrastructure and you configure the system to adapt it to customer specific needs. The focus of your responsibilities will be on our enterprise platforms Genedata Biologics® and Genedata Bioprocess®. This full-time position is based at our head offices in Basel, Switzerland. A part time employment (80-100%) is also an option. Key Responsibilities Manage the deployment of products, upgrades and customizations Develop customer specific configurations in SQL Use web services and scripts to integrate with customer IT systems Monitor, analyze, and tune the performance of installations Implement schedules for system backups and archive operations Develop automatic packaging and deployment procedures Administer Biopharma Platform installations in the cloud Consult and support customers with the migration of legacy data Document and communicate your work within the team and to other stakeholders Your Profile BSc or MSc in computer science, or related fields, or comparable on-the-job experience Good understanding of Linux systems Fluency in shell scripting and / or other scripting languages Experience with SQL and relational database systems Oracle DBA experience is an advantage Knowledge of cloud environments such as AWS or Azure is a plus Experience with web application servers, like Apache and Tomcat, is desirable Strong interpersonal skills and the motivation to learn continuously Good written and verbal communication and presentation skills in English The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Biopharma Platform As the market leader in biopharma R&D digitalization, our platform enables biopharma companies to develop the next generation of innovative medicines. It is uniquely designed to digitalize and streamline biopharma discovery, development and manufacturing processes and dramatically improve overall productivity, with the goal of identifying and developing novel therapeutics to address unmet medical needs. The award-winning Genedata Biopharma platform is used across the globe to achieve operational excellence by boosting the efficiency, throughput, and quality of biopharma R&D. It supports the entire end-to-end R&D workflow, from screening, protein engineering and optimization, expression, purification, characterization, analytics and QC, and developability assessment to upstream and downstream process development and drug formulation. The Genedata platform serves as an enterprise IT system that is at the core of complex biopharma discovery and development processes. Our customer base includes large biopharma and biotech companies, technology providers and contract research and manufacturing organizations. Genedata Biologics is a web application with an HTML/JavaScript-based presentation layer, a Java business-logic layer and an Oracle RDBMS-backed persistence layer. It is widely configurable, scalable, and extendable by third-party plug-ins. Are You Interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Legal authorization to work in the United States on a full-time basis for any employer is required. Genedata is an Equal Opportunity Employer.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Adaptability\", \"Professionalism\", \"Management\", \"Scheduling\", \"Communications\", \"Operations\", \"Integration\", \"Presentations\", \"Innovation\", \"Positivity\", \"Persistence\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Document Enterprise Platform\", \"MSC Software\", \"Shell Script\", \"Computer Science\", \"Life Sciences\", \"Business Workflow Analysis\", \"Collections\", \"Analytics\", \"Data Capture (SQL)\", \"Downstream Processing\", \"Informatics\", \"Customer Support Analyst\", \"Authorization (Computing)\", \"Streamlines\", \"Clinical Research Informatics\", \"Installation\", \"Bioprocess\", \"Customer Development\", \"Linux\", \"Layering\", \"Contract Research Organization\", \"Instrumentation\", \"Application Servers\", \"Medic\", \"HyperText Markup Language (HTML)\", \"System Monitoring\", \"System Monitor\", \"Web Services\", \"Presentation Layer\", \"Apache Tomcat\", \"Biology\", \"Boosting\", \"Digitization\", \"Equalization\", \"JavaScript (Programming Language)\", \"Scalability\", \"Operational Excellence\", \"Adapter Scripting Language\", \"Archives\", \"Database Systems\", \"Pharmaceuticals\", \"Throughput\", \"Protein Engineering\", \"Process Development\", \"Relational Databases\", \"Language Experience Approach\", \"Scripting\", \"Workflows\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"DevOps\", \"Process Driven Development\", \"Business Logic\", \"Manufacturing Processes\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '91',\n", + " 'job_title': 'data analyst',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Operators',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.70962358e-01 2.00909019e-01 5.57613373e-01 7.48285139e-03\\n5.31332195e-01 -1.03324644e-01 -1.42225819e-02 3.25893670e-01\\n1.15823578e-02 -3.63821983e-01 -7.25401789e-02 -1.32816106e-01\\n2.32939925e-02 6.13005608e-02 9.29291621e-02 4.56245929e-01\\n3.05883497e-01 3.22818235e-02 -1.82890952e-01 1.68466985e-01\\n6.99565783e-02 -1.33508474e-01 1.32929459e-01 6.34374976e-01\\n4.68142897e-01 9.10494626e-02 -2.47672722e-02 1.13211693e-02\\n-2.58401841e-01 -2.86539257e-01 5.37273347e-01 8.74685869e-02\\n-1.97160259e-01 -2.49143183e-01 1.18123434e-01 1.50698736e-01\\n-1.24423727e-01 2.57516024e-03 -6.10900633e-02 1.03679061e-01\\n-4.15764660e-01 -1.38788456e-02 -8.61369520e-02 5.54222502e-02\\n-3.18567842e-01 -4.38419312e-01 7.05530271e-02 -1.35578051e-01\\n1.16347656e-01 1.03399143e-01 -4.63057607e-01 3.67140174e-01\\n-3.18437427e-01 -1.95856884e-01 2.72453517e-01 6.84072316e-01\\n-4.42838669e-02 -4.13043201e-01 -4.88538951e-01 -2.72088975e-01\\n1.23921074e-01 -2.09418505e-01 1.16417624e-01 -2.30660096e-01\\n3.05499852e-01 4.66218032e-02 7.69084133e-03 2.00119406e-01\\n-6.57711208e-01 -4.63730097e-02 -3.57580900e-01 -4.95158806e-02\\n-4.41242307e-01 -8.83302465e-02 -3.49286318e-01 -9.50719267e-02\\n-1.25831559e-01 3.96033883e-01 -3.13073210e-02 1.20363526e-01\\n-1.40145764e-01 2.47234210e-01 -2.96931177e-01 2.65165538e-01\\n2.11940005e-01 1.70635179e-01 2.87849337e-01 3.53311598e-01\\n-4.44493175e-01 4.87813771e-01 3.57815504e-01 -3.41892272e-01\\n2.80457824e-01 -1.02810282e-02 3.83295178e-01 -8.66746064e-03\\n2.16340348e-01 1.54881135e-01 -1.31478518e-01 2.33108044e-01\\n2.06749380e-01 -1.63483918e-01 -3.25406529e-02 -2.18382657e-01\\n-6.62881061e-02 1.42657394e-02 2.63214447e-02 2.49180615e-01\\n-3.84046733e-01 4.07294124e-01 7.92260244e-02 -3.26379538e-01\\n-1.54020935e-01 -4.91917759e-01 -4.46010679e-02 2.76586652e-04\\n1.35822266e-01 1.97601110e-01 9.96346027e-02 2.36395508e-01\\n1.45615697e-01 -4.54763323e-02 1.72564805e-01 7.21430779e-01\\n2.34727096e-03 4.99664210e-02 -1.34051502e-01 2.58383125e-01\\n8.27990621e-02 -3.86444837e-01 1.65371612e-01 1.01340242e-01\\n-6.70982450e-02 -8.51885006e-02 -2.48841718e-01 1.65377796e-01\\n-7.39069134e-02 -2.29566693e-01 -2.39047259e-01 1.57509252e-01\\n-1.86669417e-02 -3.52540344e-01 5.57380021e-01 -1.23625800e-01\\n9.54969972e-02 -9.09869969e-02 -9.78846252e-02 -1.44858345e-01\\n-6.41870871e-02 2.30529919e-01 1.75320223e-01 1.28773928e-01\\n-2.06380695e-01 -1.94622621e-01 -1.78257331e-01 1.65742069e-01\\n-2.41669580e-01 7.47826621e-02 -2.97642231e-01 -1.01730607e-01\\n3.21198374e-01 9.89226922e-02 -3.22803199e-01 1.88397601e-01\\n-3.19598764e-02 -1.52520105e-01 -1.71381220e-01 4.15040404e-01\\n-1.93608105e-01 1.96616203e-01 -6.87498134e-03 -1.08908817e-01\\n7.03085005e-01 6.19349144e-02 2.99672365e-01 2.15520635e-02\\n2.87453026e-01 -3.39068621e-02 1.59804389e-01 -8.72654654e-03\\n-6.49005175e-01 4.63803411e-01 -1.25149697e-01 -2.00622588e-01\\n2.18360826e-01 8.31776485e-02 2.55142868e-01 -1.99240193e-01\\n5.84209040e-02 -1.15735374e-01 -2.07069069e-01 -3.33150804e-01\\n-1.63518772e-01 -5.44495136e-02 2.50199080e-01 -4.82742101e-01\\n-2.09051576e-02 3.20604354e-01 -6.24423087e-01 -1.59069821e-01\\n2.58403212e-01 2.32720271e-01 1.51802495e-01 2.70310700e-01\\n-1.27503321e-01 -4.58144128e-01 1.76685482e-01 -3.95042896e-01\\n-2.70003051e-01 1.92273125e-01 -2.44324774e-01 2.20595434e-01\\n6.21902831e-02 -6.04680330e-02 -7.87216276e-02 1.21372171e-01\\n-2.09407598e-01 -7.49578327e-03 1.74489334e-01 8.34263936e-02\\n3.51644665e-01 8.56916606e-02 -4.28915322e-01 5.89755714e-01\\n-2.42400691e-01 3.60838562e-01 1.77725837e-01 -8.09367478e-01\\n4.18843061e-01 2.43884638e-01 -7.13706948e-03 -3.26963454e-01\\n6.57511473e-01 -3.42335284e-01 -6.63599074e-02 1.15784682e-01\\n-4.01534736e-01 -2.06870452e-01 3.40698481e-01 -1.43002987e-01\\n-2.40657702e-01 6.43988252e-01 1.13281839e-01 1.78047210e-01\\n1.99619830e-01 -1.24421135e-01 -1.72334760e-01 2.81865411e-02\\n-1.66151762e-01 -1.08898468e-01 -6.80525661e-01 -8.57686549e-02\\n-1.40141815e-01 -4.46864605e-01 -1.32669315e-01 -5.58074951e-01\\n-1.87896088e-01 -3.26716095e-01 -1.57794282e-01 1.54640809e-01\\n1.72490954e-01 1.19500540e-01 -9.65915918e-02 -1.79560799e-02\\n-9.59730893e-02 -6.33632362e-01 -8.42302367e-02 6.50188923e-02\\n3.08034331e-01 2.74448395e-01 1.81720838e-01 1.17123593e-02\\n1.76721454e-01 5.68762898e-01 -2.77815759e-01 -2.26631209e-01\\n2.01941565e-01 2.69349068e-01 5.93062118e-02 -1.78028524e-01\\n8.96008387e-02 2.80827820e-01 -2.06493154e-01 6.01210184e-02\\n-2.96487696e-02 -8.50323141e-02 4.04783309e-01 -5.43387374e-03\\n-1.77562281e-01 -1.83015138e-01 -1.01918660e-01 1.71150923e-01\\n-4.77817297e-01 -3.20461929e-01 5.67630649e-01 2.01976433e-01\\n7.85294473e-02 2.66373277e-01 1.63847223e-01 4.83523449e-03\\n-2.28184476e-01 -2.10961103e-01 3.00261855e-01 5.47535121e-02\\n1.45505488e-01 7.44113550e-02 -8.99365991e-02 -6.65349483e-01\\n-3.54111981e+00 -1.88604504e-01 1.51112840e-01 -2.06671998e-01\\n2.53354818e-01 -2.03436151e-01 2.94245631e-01 -2.69392058e-02\\n-3.12041938e-01 1.92402001e-03 -1.31419674e-01 -1.93453774e-01\\n1.96545482e-01 3.14150572e-01 1.92340210e-01 1.45477012e-01\\n8.91301706e-02 -3.44374955e-01 2.49183699e-02 4.31746185e-01\\n-1.24974169e-01 -7.04538465e-01 1.61619589e-01 8.14663991e-02\\n1.42997861e-01 2.41524473e-01 -3.55193883e-01 -1.36671901e-01\\n-3.65072697e-01 -2.75965184e-01 7.39749745e-02 -2.57831305e-01\\n-1.06741592e-01 2.50318468e-01 2.77510941e-01 -1.92693532e-01\\n8.41867365e-03 -2.87577331e-01 1.32604782e-02 -5.64285278e-01\\n1.29984975e-01 -6.30554199e-01 6.62086830e-02 -1.26797780e-01\\n6.51155055e-01 -2.23561108e-01 1.82661548e-01 2.02872772e-02\\n2.26262495e-01 1.06954440e-01 6.12714812e-02 5.53661538e-03\\n-2.57429838e-01 -2.56798089e-01 -2.06430271e-01 -7.10472465e-02\\n6.84180319e-01 4.16531622e-01 -2.92158544e-01 -5.25735170e-02\\n2.90282127e-02 -2.86830574e-01 -4.73971814e-01 -2.25823835e-01\\n-2.32559666e-01 3.00695673e-02 -4.84139770e-01 -3.53492469e-01\\n-1.66343451e-01 -1.04484200e-01 -1.17561318e-01 6.11773610e-01\\n-2.74164289e-01 -3.46836746e-01 -1.27265111e-01 -5.13215184e-01\\n2.35587031e-01 -1.83393955e-01 1.52738079e-01 -2.62292325e-01\\n-2.36083180e-01 -4.69033509e-01 2.08885610e-01 2.15834225e-04\\n-1.05745137e-01 -1.85593545e-01 1.85063481e-01 -1.08603537e-01\\n-3.77735585e-01 -6.38243675e-01 2.93360651e-01 2.25852318e-02\\n3.27832758e-01 1.40838042e-01 1.88834816e-01 1.00423604e-01\\n3.18670481e-01 -7.14855567e-02 9.02167056e-03 -4.35276002e-01\\n1.59069765e-02 1.79013528e-03 5.34360468e-01 -2.46712491e-01\\n5.60384952e-02 3.92798856e-02 -2.51916081e-01 -8.38487670e-02\\n4.38887000e-01 -1.18154205e-01 1.72362164e-01 -2.36276299e-01\\n2.59126186e-01 -4.34976935e-01 -1.62130818e-01 8.35702866e-02\\n6.73675165e-02 6.12422347e-01 7.99748953e-03 -3.11636031e-01\\n-2.29351483e-02 3.97782981e-01 -5.54171354e-02 8.66515748e-03\\n-3.20617586e-01 2.75470857e-02 -2.37751082e-01 2.73928404e-01\\n-3.01794279e-02 -8.08156580e-02 -2.54156083e-01 -1.78874448e-01\\n-1.21980429e-01 3.00583214e-01 3.80789250e-01 1.62011892e-01\\n8.76003038e-03 -2.42136046e-01 1.96821708e-02 2.23632306e-01\\n2.47597203e-01 3.95106822e-01 2.35358421e-02 -2.00694099e-01\\n-4.68742438e-02 2.43161783e-01 -2.15502113e-01 2.71940619e-01\\n-2.07170308e-01 1.65494069e-01 -4.35258836e-01 -1.83360711e-01\\n-2.48385265e-01 -2.94714034e-01 1.88162401e-01 2.99205363e-01\\n1.11298449e-01 -1.60233349e-01 -4.33822051e-02 -4.97038841e-01\\n2.39385724e-01 1.34671465e-01 8.26982558e-02 1.42961219e-01\\n4.06238846e-02 5.97425044e-01 -7.88032413e-02 -2.13601276e-01\\n-5.69734611e-02 1.05145566e-01 -2.89231598e-01 -1.34879142e-01\\n1.59304500e-01 -4.09315199e-01 -1.68313727e-01 4.71293062e-01\\n1.73059881e-01 -1.20790722e-02 -8.85027349e-02 2.43843913e-01\\n-9.23619568e-02 -3.20077956e-01 -1.99608520e-01 1.82927474e-02\\n2.37281188e-01 1.15635537e-01 3.11450660e-01 -5.01664102e-01\\n-5.05807772e-02 -3.23852082e-03 8.65405425e-03 3.42083335e-01\\n1.05639221e-02 1.54208153e-01 -7.26576196e-03 -6.13245405e-02\\n4.01427358e-01 -1.00920439e-01 -1.13404937e-01 2.02363804e-01\\n1.05420031e-01 -1.39765799e-01 -4.55974489e-01 2.73046810e-02\\n-1.65267557e-01 -3.06602210e-01 -4.56707217e-02 2.05960095e-01\\n4.51787338e-02 -1.14195766e-02 -5.80556333e-01 -1.26619473e-01\\n-3.28055829e-01 4.36960310e-02 -5.71762286e-02 -6.67368412e-01\\n-7.43130036e-03 -1.12678908e-01 -5.21055520e-01 3.17144215e-01\\n2.47056084e-03 -1.08839475e-01 1.99929789e-01 -2.96894219e-02\\n-2.46950775e-01 -1.44731864e-01 2.27871791e-01 1.50593549e-01\\n-1.50870025e-01 -9.91592780e-02 -7.23822489e-02 -9.86566365e-01\\n1.53566569e-01 2.35709716e-02 -2.28680074e-01 -1.29266884e-02\\n-2.30576769e-02 -7.33487070e-01 1.48212969e-01 -3.78857911e-01\\n-1.76341578e-01 -4.43125851e-02 -2.25322604e-01 -3.79973680e-01\\n1.23432659e-01 5.81827350e-02 -2.63892710e-01 3.04534346e-01\\n-3.01796436e-01 4.19783562e-01 -6.99755549e-02 6.62513226e-02\\n1.11337557e-01 -2.69833863e-01 1.26914293e-01 -2.01412991e-01\\n-3.93649727e-01 -2.02534735e-01 -2.90933222e-01 -2.56971657e-01\\n-1.03547173e-02 -3.99123400e-01 -1.49158180e-01 6.63390979e-02\\n4.33058709e-01 9.10057798e-02 -1.27083927e-01 -6.91677183e-02\\n-4.71002422e-03 -5.19110143e-01 4.67580035e-02 -1.63178429e-01\\n-4.09920253e-02 -1.23342909e-01 2.56698579e-01 8.03731233e-02\\n1.72687054e-01 -3.00843358e-01 4.73971218e-01 -3.26590538e-01\\n-2.90265977e-01 -7.93342590e-02 7.59655610e-02 9.47195441e-02\\n2.52119422e-01 -4.58470881e-01 -2.20258936e-01 3.52649331e-01\\n-3.94090731e-03 1.24649376e-01 3.08006138e-01 -1.99767843e-01\\n-2.42721125e-01 3.18018943e-01 -3.59870762e-01 9.92445797e-02\\n7.55220115e-01 2.26723596e-01 1.27073705e-01 1.55821502e-01\\n1.72682062e-01 1.73796758e-01 4.18807775e-01 -6.28018007e-02\\n-1.60075262e-01 3.48653883e-01 4.38280739e-02 -5.47669888e-01\\n-7.26664066e-02 4.24837172e-02 -1.00477435e-01 -4.54845130e-01\\n6.98008716e-01 2.87511170e-01 -3.20031822e-01 -3.52163672e-01\\n-2.11566418e-01 -1.92763552e-01 1.97766080e-01 5.41968420e-02\\n5.91029897e-02 -1.45264551e-01 4.46233898e-01 1.88798606e-02\\n1.57843396e-01 5.17339766e-01 -1.25969276e-01 -1.62693962e-01\\n-8.33937079e-02 2.14336261e-01 5.19959107e-02 4.98896033e-01\\n-1.70494929e-01 2.54375488e-01 -6.98723421e-02 1.27784044e-01\\n-1.72831506e-01 -1.04651846e-01 1.48415044e-01 9.36871022e-02\\n5.46638444e-02 2.05803096e-01 5.00748336e-01 4.48226243e-01\\n2.91987509e-01 4.55339134e-01 3.20335597e-01 -3.25664319e-02\\n5.19386888e-01 5.60483932e-01 3.96449327e-01 5.47575392e-02\\n1.12933919e-01 3.62331681e-02 5.65888584e-02 7.01804683e-02\\n2.46774524e-01 3.28444868e-01 -7.09835812e-02 7.08815157e-01\\n2.56105870e-01 2.55212873e-01 6.27837062e-01 -5.83369792e-01\\n-3.48750830e-01 2.48893388e-02 5.62068462e-01 -4.11446214e-01\\n6.84123635e-02 1.51613280e-01 -2.71180570e-01 1.28107414e-01\\n-6.12363696e-01 -2.19518319e-01 4.43730084e-03 -3.67972665e-02\\n1.03294268e-01 -1.17777124e-01 -1.56810224e-01 1.64175794e-01\\n-8.12879652e-02 -1.87930182e-01 -3.87470841e-01 -2.38447145e-01\\n-1.91401646e-01 -3.55674699e-02 -4.95259324e-03 -1.81769684e-01\\n-7.82437176e-02 -1.80089220e-01 -4.94061857e-02 -4.80458289e-02\\n2.23711431e-01 -4.22235876e-02 -1.03252739e-01 -4.72932160e-02\\n2.90618986e-01 1.95205986e-01 6.15130723e-01 -6.48358762e-02\\n2.35948265e-02 -1.92961365e-01 -1.49074793e-01 8.02400336e-02\\n2.37201318e-01 -2.94396356e-02 2.28791572e-02 3.33001882e-01\\n-3.44754636e-01 -3.22068781e-01 2.04070359e-01 2.65566796e-01\\n-4.48048651e-01 4.40620147e-02 -6.30278587e-02 1.48875609e-01\\n-2.74441298e-02 1.54006287e-01 -2.27995262e-01 -1.58552993e-02\\n-1.72203809e-01 -5.03125548e-01 3.70090663e-01 -1.15305543e-01\\n-1.24160118e-01 -5.79262413e-02 2.64609545e-01 2.80740231e-01\\n-2.18628198e-01 -5.37902080e-02 -2.07435951e-01 1.86425909e-01\\n4.42833379e-02 2.76170820e-01 -8.03261474e-02 -2.77168095e-01\\n-2.80052215e-01 1.49484545e-01 4.77858968e-02 1.41870320e-01\\n1.61169954e-02 3.21119249e-01 2.30186209e-02 6.80048093e-02\\n3.52671742e-01 -7.39710033e-02 -2.13422760e-01 -3.24095756e-01\\n-2.33837545e-01 -1.37188450e-01 -3.16389948e-02 -1.73858643e-01\\n1.96305498e-01 -3.71344984e-01 -2.08032489e-01 -2.97721922e-01\\n-1.62833586e-01 -3.08818758e-01 -4.89459150e-02 -4.63550128e-02]]',\n", + " 'job_description': \"For our Zurich office we are seeking a Data Analyst to join our Life Operations Department. One of the department's missions is to guarantee the quality of the data we receive from our clients, which is then used downstream by other teams for various studies. In this role you will be entirely assigned to data management (mainly long-term business), be part of the Technical Accounting team and interact regularly with Actuaries from other departments (Reserving and Pricing). In more detail your responsibilities will be to: Ensure data quality - the client data received needs to be complete, accurate, consistent, and provided within contractual deadlines Coordinate with clients errors or delays Extract and load data into our system, incl. data and plan mapping for all clients, investigating and resolving client issues Develop tools to automate data management and quality controls Perform detailed analysis of client data and reconcile premiums with treaty conditions and accounts received Centralize data storage and make data available to other departments Actively monitor client accounts and produce summary reports highlighting trends and issues Implement consistent data handling standards across various products and markets Participate in projects About you To be the ideal candidate, you will be a subject matter expert in data quality and analysis, as well as tools, and become well versed in Life & Health reinsurance data. The role is ideal for someone who has / is: A bachelor degree, e.g. in Wirtschaftsinformatik, Finance, IT Min. 3 years’ experience in data analysis, in our industry is a plus Is fluent in English (French a nice-to-have) Possesses strong Access and Excel skills, is able to prepare data with R and ideally has SQL\\\\VBA programming skills Working very detail-oriented, and has excellent organizational and analytical skills Socially competent and enjoys interacting and communicating across all levels Demonstrated analytical, problem-identification and resolution skills What can we offer you An international environment, where you will be challenged, can learn about the reinsurance products from Senior Specialists and are exposed to multiple sections of our business. Our structure fosters collaboration with various stakeholders. One of PartnerRe’s core strengths is its technical know-how, built over many years of investment in the right people working on challenges. Be that person and join us!\",\n", + " 'soft_skills': '[\"Reservations\", \"Analytical Skills\", \"Coordinating\", \"Collaboration\", \"Planning\", \"Investigation\", \"Communications\", \"Operations\", \"Detail Oriented\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Data Quality\", \"Tooling\", \"Nice (Unix Utility)\", \"Accessioning\", \"Programming (Music)\", \"Interactivity\", \"Analytics\", \"Data Management\", \"Data Consistency\", \"Industrialization\", \"E (Programming Language)\", \"Levelling\", \"Activity Monitor\", \"Idealization\", \"Reinsurance\", \"Quality Control\", \"NetApp Data Storage\", \"Patentable Subject Matter\", \"Technical Accounting\", \"Finance\", \"Personalization\", \"Accounting\", \"R (Programming Language)\", \"Accounts Receivable\", \"Receivables\", \"Clinical Data Management\", \"Mapping\", \"Long-Term Potentiation\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Turkish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'frontend software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.61207670e-01 2.27400094e-01 2.93735385e-01 8.80682915e-02\\n3.57351601e-01 -2.75095999e-01 7.27393851e-02 2.45356426e-01\\n5.18091172e-02 -4.74810630e-01 2.18326394e-02 -7.57266358e-02\\n-6.19199090e-02 3.49819511e-02 -2.76021194e-02 2.72219270e-01\\n3.25909436e-01 1.71293467e-01 -2.41000339e-01 2.96272755e-01\\n5.79778440e-02 -1.66097894e-01 -1.31209537e-01 6.32339180e-01\\n4.16440308e-01 -1.01414509e-02 -5.84636293e-02 1.11649267e-01\\n-1.77774087e-01 -2.88846374e-01 2.99159139e-01 1.43294092e-02\\n-6.27546236e-02 -4.04751927e-01 1.85091626e-02 8.59164596e-02\\n-9.06956643e-02 6.37577251e-02 2.92896051e-02 -2.59863771e-03\\n-4.69864607e-01 -1.34364128e-01 8.94732401e-03 6.16541468e-02\\n-2.87476797e-02 -2.69996822e-01 2.64831215e-01 -5.42072318e-02\\n1.69891834e-01 3.07046883e-02 -5.94686568e-01 3.33288014e-01\\n-2.36488655e-01 -1.67782292e-01 2.31803656e-01 4.75537866e-01\\n1.70294400e-02 -4.96313334e-01 -4.83620942e-01 -2.32404351e-01\\n3.07240058e-03 -7.04768673e-02 3.40722278e-02 -2.82324612e-01\\n3.10343772e-01 -3.15152644e-03 -2.31021233e-02 3.25928181e-01\\n-8.37559938e-01 9.65305343e-02 -2.78011084e-01 2.42325384e-02\\n-3.96521688e-01 -1.73393443e-01 -3.41260314e-01 3.71928774e-02\\n-1.90593556e-01 2.76078939e-01 4.60040616e-03 9.20498371e-02\\n-2.12520823e-01 2.48611510e-01 -1.42126605e-01 2.97645092e-01\\n3.20869535e-01 4.08700071e-02 3.83671224e-01 3.77837300e-01\\n-3.68730515e-01 4.89496619e-01 1.06070213e-01 -2.26795331e-01\\n2.77898699e-01 9.76264551e-02 3.60831052e-01 1.24099113e-01\\n2.04097956e-01 2.81249613e-01 -1.83771655e-01 3.12790453e-01\\n1.95609435e-01 -3.64404947e-01 -1.16727345e-01 -1.32164866e-01\\n4.08071056e-02 2.72970982e-02 1.27846137e-01 1.95306361e-01\\n-3.12785566e-01 4.72844094e-01 1.24187469e-01 -2.12870747e-01\\n-1.83239773e-01 -2.73208618e-01 -1.21158473e-01 -5.62018529e-02\\n-4.26388681e-02 4.71207686e-02 1.27833486e-01 9.35660750e-02\\n1.54305264e-01 2.04733342e-01 5.24653718e-02 8.51325393e-01\\n-1.25614747e-01 7.63944909e-02 -2.98367321e-01 1.97511896e-01\\n2.24234998e-01 -3.03754717e-01 2.52870709e-01 2.47010559e-01\\n1.29645988e-01 -1.19341217e-01 -2.85734355e-01 3.56468171e-01\\n-6.54239282e-02 1.11767855e-02 -2.82811493e-01 4.87850681e-02\\n-1.74009562e-01 -3.14395368e-01 6.10545218e-01 1.41709030e-01\\n3.06690902e-01 1.73123732e-01 1.92991436e-01 -1.06005155e-01\\n-1.44144356e-01 3.47072423e-01 -2.85243876e-02 3.29185992e-01\\n-3.39237779e-01 -2.35272080e-01 -2.31935084e-01 1.55701295e-01\\n-2.16314986e-01 6.97395951e-02 -1.65627643e-01 -1.31254806e-03\\n3.23904485e-01 1.05977625e-01 -2.73903728e-01 2.07308441e-01\\n-2.92724408e-02 1.18301287e-01 -1.36984527e-01 3.36759686e-01\\n8.78721103e-02 2.39251196e-01 -2.21978575e-02 -9.31478478e-03\\n5.31670630e-01 1.82023361e-01 4.31132205e-02 -9.86429080e-02\\n2.79769033e-01 -9.03060287e-02 1.57039464e-01 3.88232581e-02\\n-7.34604478e-01 3.45128834e-01 1.47594362e-01 -2.51253247e-01\\n1.04713654e-02 -1.54568637e-02 1.20993480e-01 -4.83152062e-01\\n-1.54996365e-01 -1.65412992e-01 -4.34774160e-01 -2.55228907e-01\\n-3.35527182e-01 1.70206334e-02 5.59824109e-01 -4.48997170e-01\\n-2.20736057e-01 3.31414849e-01 -5.44336677e-01 -6.50699213e-02\\n3.52889031e-01 2.85551101e-02 8.74818936e-02 7.63901100e-02\\n-8.87033641e-02 -5.80226362e-01 5.23422919e-02 -4.38393176e-01\\n-4.25175071e-01 1.77995432e-02 -4.44292575e-01 3.98662001e-01\\n1.00234777e-01 -4.94937524e-02 -1.04313210e-01 1.92220256e-01\\n-1.29400223e-01 -8.81692991e-02 1.05822027e-01 4.28008884e-02\\n3.58077466e-01 1.25267338e-02 -4.20836836e-01 3.43515933e-01\\n-2.68602937e-01 4.20132339e-01 1.23610564e-01 -7.05947876e-01\\n4.74446207e-01 2.30081797e-01 -5.59888110e-02 -2.99652964e-01\\n4.59952414e-01 -2.56217360e-01 -1.76095665e-01 7.19056800e-02\\n-3.22540104e-01 -2.72595227e-01 1.43704683e-01 -2.05741420e-01\\n-2.85696447e-01 5.29217124e-01 3.85129116e-02 9.99877080e-02\\n2.87085652e-01 -2.84997225e-01 1.46556813e-02 2.47500151e-01\\n-1.03613734e-01 -2.17113107e-01 -4.25309449e-01 -1.35912731e-01\\n-1.12288017e-02 -4.74248201e-01 -2.21047848e-02 -3.43913913e-01\\n-2.47578904e-01 -3.54971349e-01 -5.02181292e-01 3.19161683e-01\\n2.97489583e-01 2.83032000e-01 -2.47983336e-02 1.12266056e-01\\n-2.27490470e-01 -6.94484711e-01 7.68966600e-02 1.02898590e-01\\n4.30320442e-01 1.97915375e-01 8.57800320e-02 -2.12202400e-01\\n8.66043288e-03 4.69738513e-01 -4.33396488e-01 -2.66964942e-01\\n1.00639477e-01 8.78574550e-02 -8.63860082e-03 -2.69920290e-01\\n1.17931955e-01 4.18089181e-01 -2.21379951e-01 5.02993874e-02\\n3.22564878e-02 -2.26313695e-01 3.62761527e-01 -2.02713788e-01\\n-4.60025609e-01 -3.09057206e-01 -5.13308570e-02 2.13660926e-01\\n-5.04930556e-01 -2.18028292e-01 5.51247835e-01 2.58350253e-01\\n2.77331144e-01 1.86922595e-01 7.77030736e-02 -2.90457308e-02\\n-2.18664914e-01 -4.36574310e-01 1.42934054e-01 9.81583670e-02\\n9.41427797e-02 1.80975258e-01 -2.30412006e-01 -7.19174683e-01\\n-3.69830036e+00 -1.66377306e-01 1.77407458e-01 -2.11335614e-01\\n2.23432988e-01 -1.55690223e-01 1.36002421e-01 -1.30234450e-01\\n-1.91728204e-01 1.42534941e-01 -1.64714545e-01 -1.51843861e-01\\n1.45939752e-01 3.17216605e-01 1.78936720e-02 3.55535954e-01\\n3.44747066e-01 -2.63482124e-01 -7.78627321e-02 1.77912399e-01\\n-2.65049756e-01 -4.79897261e-01 8.83096606e-02 -9.73288640e-02\\n3.77168089e-01 2.96316683e-01 -3.38883787e-01 -4.28567789e-02\\n-3.31984341e-01 -2.29554415e-01 6.00134917e-02 -2.31375128e-01\\n-7.85861388e-02 1.72733188e-01 1.85440332e-01 -1.12647504e-01\\n1.10461019e-01 -3.41275811e-01 -8.16933364e-02 -5.43002427e-01\\n8.49063694e-02 -4.68444884e-01 2.69353520e-02 -1.05538197e-01\\n6.65510178e-01 -3.34890753e-01 6.10063113e-02 3.39892842e-02\\n2.93943316e-01 1.52779907e-01 2.19575688e-02 3.64573188e-02\\n-2.61713088e-01 -2.54844725e-01 -1.09796949e-01 -2.13218406e-01\\n6.45547390e-01 3.86537731e-01 -2.85558075e-01 -3.62147763e-02\\n7.31086060e-02 -4.79720414e-01 -3.25527430e-01 -2.93850809e-01\\n-1.56485923e-02 -2.82933623e-01 -4.46898431e-01 -3.11720878e-01\\n-3.28718096e-01 -6.85147345e-02 -1.19453326e-01 6.08633101e-01\\n-3.19102913e-01 -5.29340684e-01 1.97059229e-01 -5.57611763e-01\\n1.36170369e-02 -1.02657363e-01 1.50946289e-01 -9.35870409e-02\\n-2.64814705e-01 -5.77121377e-01 -6.50860667e-02 -4.79810085e-04\\n-1.43597618e-01 -9.58203822e-02 1.99551225e-01 4.43116315e-02\\n-3.06639344e-01 -3.09368610e-01 4.63042140e-01 4.44927290e-02\\n2.10033953e-01 1.61670119e-01 2.25497127e-01 2.17299070e-02\\n3.91795218e-01 -1.67462036e-01 1.40132487e-03 -3.00985634e-01\\n9.20241177e-02 -1.22801708e-02 4.17706847e-01 -1.10238232e-01\\n9.67181288e-03 1.99177667e-01 -1.93947613e-01 -1.38083532e-01\\n4.70625132e-01 1.71913818e-01 1.46912048e-02 -2.12831199e-01\\n1.98158503e-01 -2.98716635e-01 -2.47873038e-01 2.04799473e-01\\n6.31509945e-02 6.78172648e-01 2.56459042e-02 -3.44028115e-01\\n-1.95637703e-01 4.74199355e-01 -7.28266016e-02 -9.77098290e-03\\n-1.15242407e-01 1.89307451e-01 -1.26822710e-01 1.49959713e-01\\n1.08842224e-01 -1.93271041e-01 -1.97638437e-01 -1.39822334e-01\\n-6.41514212e-02 2.56706685e-01 1.63104266e-01 -7.14288875e-02\\n-3.73933613e-02 -3.06929737e-01 -3.24159637e-02 2.93201618e-02\\n-1.27915181e-02 4.97366279e-01 7.75414258e-02 -2.62881309e-01\\n-1.23925403e-01 3.19477141e-01 -1.37712404e-01 8.15160647e-02\\n-2.62061030e-01 6.85572997e-02 -4.66239542e-01 -2.29072437e-01\\n-2.71233231e-01 -2.84998745e-01 2.08976120e-02 2.54563808e-01\\n3.84300239e-02 3.05821430e-02 7.73066357e-02 -4.07039881e-01\\n2.27353990e-01 1.67979866e-01 1.17476940e-01 1.39138415e-01\\n-2.85494588e-02 2.25577876e-01 3.14223617e-02 -1.45977989e-01\\n-3.11928064e-01 1.62110463e-01 -1.12751216e-01 -1.34712875e-01\\n1.38636783e-01 -5.34382761e-01 -5.53625114e-02 3.86141688e-01\\n2.26865187e-01 -6.63543642e-02 -1.47785708e-01 2.12879732e-01\\n-6.58158818e-03 -3.22688192e-01 -2.06908286e-01 -1.01310112e-01\\n2.40984634e-01 5.17539338e-05 2.34018072e-01 -2.84212530e-01\\n-7.00392723e-02 -4.11952250e-02 -1.13389947e-01 3.36074382e-01\\n-2.25667302e-02 6.08205982e-02 -1.93512484e-01 -1.34432182e-01\\n4.66160476e-01 3.35135385e-02 -3.73752415e-02 -1.03220679e-01\\n1.06286332e-01 -1.75489753e-01 -5.45671105e-01 3.85836586e-02\\n6.61906451e-02 -1.21843770e-01 1.25402883e-01 2.73090918e-02\\n-8.38999823e-03 1.18044734e-01 -4.92892861e-01 -2.40846947e-01\\n-3.65192473e-01 -2.11689562e-01 9.12820697e-02 -4.56646264e-01\\n1.57212522e-02 -7.71244764e-02 -4.40208197e-01 2.18460470e-01\\n-3.03159714e-01 1.22290412e-02 1.80618852e-01 9.84792262e-02\\n-3.49046171e-01 -9.60542634e-02 1.35575965e-01 3.31532151e-01\\n-2.44885072e-01 -2.73203731e-01 8.81121233e-02 -9.02054369e-01\\n2.38115847e-01 1.36360988e-01 -2.11533070e-01 -1.48939312e-01\\n-9.42001566e-02 -5.50347030e-01 1.65552914e-01 -4.57141548e-01\\n-1.07137173e-01 6.26094043e-02 -2.06201568e-01 -2.32461393e-01\\n5.55643775e-02 -2.40914002e-01 -5.45680940e-01 4.06508505e-01\\n-4.06071484e-01 3.68722230e-01 5.54592395e-03 7.80104077e-04\\n-5.57652023e-03 -3.03718388e-01 2.85356380e-02 -3.49178046e-01\\n-5.15615165e-01 -2.60872841e-01 -3.21310431e-01 -1.35932758e-01\\n1.79550692e-01 -3.69228035e-01 -1.07403606e-01 1.85814232e-01\\n2.56438553e-01 9.69440341e-02 -5.04544340e-02 -2.88360924e-01\\n-1.55097265e-02 -5.91361284e-01 -8.95543620e-02 -8.71042907e-02\\n-1.41786002e-02 -9.73886847e-02 1.24274164e-01 1.31134121e-02\\n1.64049268e-01 -3.94858271e-01 5.08345187e-01 -3.82790178e-01\\n-1.67537928e-01 -7.66280442e-02 6.91504329e-02 6.66844398e-02\\n2.11079434e-01 -5.76164305e-01 6.61883205e-02 2.39936560e-01\\n2.62355834e-01 7.76304156e-02 1.83219358e-01 1.10516027e-02\\n-2.85992641e-02 3.21599633e-01 -2.87606716e-01 1.38367116e-01\\n7.63802052e-01 5.32541759e-02 -2.49254815e-02 2.52468139e-01\\n1.17576405e-01 5.04843056e-01 5.84978282e-01 8.54490176e-02\\n-4.37020175e-02 2.70889163e-01 8.58981311e-02 -5.04486561e-01\\n-1.54961580e-02 4.51657772e-02 -1.90360770e-01 -2.74545610e-01\\n6.83391631e-01 4.57756847e-01 -5.03456771e-01 -2.85906047e-01\\n-2.57707108e-02 -2.67721504e-01 2.00024337e-01 -8.61011744e-02\\n4.35646996e-02 -2.58375704e-01 4.32207376e-01 4.24119458e-03\\n1.33129165e-01 6.36442661e-01 -1.04557730e-01 -3.18601727e-01\\n-1.51419863e-01 2.11617932e-01 7.22289830e-02 4.24461246e-01\\n-1.78590611e-01 9.23173800e-02 -6.16900437e-02 7.38085508e-02\\n4.97044995e-03 2.48465449e-01 1.20481014e-01 7.99701959e-02\\n2.04766035e-01 6.77757934e-02 5.44392407e-01 3.77137810e-01\\n1.84045181e-01 4.66323763e-01 2.64147580e-01 2.87232902e-02\\n3.99410367e-01 6.81914389e-01 4.70850140e-01 8.00549760e-02\\n-1.75158903e-02 1.94238722e-01 1.65375620e-01 -4.01267149e-02\\n3.78879309e-01 4.43223685e-01 -4.35628369e-02 8.85247171e-01\\n3.20445687e-01 1.69970751e-01 5.91700375e-01 -6.60398543e-01\\n-2.61430770e-01 1.98231470e-02 5.05379558e-01 -1.64383560e-01\\n-9.37224776e-02 1.98782325e-01 -3.05483073e-01 3.65517765e-01\\n-5.23578107e-01 -1.21719331e-01 -2.89638224e-03 1.31389275e-01\\n1.58535182e-01 -1.58088565e-01 -2.20862210e-01 -7.61020035e-02\\n-1.28814563e-01 -1.77746743e-01 -4.08906013e-01 -1.32046521e-01\\n-2.65614092e-01 1.42291021e-02 -3.60413603e-02 -5.01554795e-02\\n3.02333981e-02 -4.83623981e-01 -2.14611515e-01 2.34887730e-02\\n4.39426482e-01 -1.61691487e-01 -5.20233028e-02 2.93475222e-02\\n1.58249140e-01 3.68094712e-01 5.43171942e-01 6.18394762e-02\\n-8.87181424e-03 -9.66477990e-02 -2.00890005e-01 2.56822795e-01\\n1.79030314e-01 1.73707232e-01 9.20705125e-02 1.77538007e-01\\n-3.29953820e-01 -1.19249001e-01 2.18681544e-01 3.61778677e-01\\n-4.43038762e-01 -3.99472453e-02 -2.50932910e-02 2.32829556e-01\\n6.48771375e-02 2.12508559e-01 -1.00648120e-01 8.38963222e-03\\n-1.44933671e-01 -2.93020993e-01 3.89756739e-01 -3.77117880e-02\\n-1.40314609e-01 1.19822569e-01 1.36289671e-01 2.98101068e-01\\n-1.85333043e-01 -6.40660524e-02 1.85278263e-02 1.60532862e-01\\n1.07531056e-01 4.12912071e-01 -1.89406291e-01 -2.98325479e-01\\n-3.08965355e-01 1.40897214e-01 1.34513807e-02 -5.84772974e-03\\n-8.37869495e-02 2.80928433e-01 2.36360822e-02 1.76792979e-01\\n3.20396721e-01 -5.27461350e-04 -3.50951612e-01 -1.63175926e-01\\n-2.89246082e-01 -1.00883819e-01 9.41670612e-02 -7.54218251e-02\\n2.33665213e-01 -3.92257839e-01 -1.19760774e-01 9.04852431e-03\\n-5.95953204e-02 -2.74297774e-01 -8.34982321e-02 -7.35854208e-02]]',\n", + " 'job_description': 'Job Informationen YOUR RESPONSIBILITIES: You are responsible for the development and integration of our mostly AngularJS based frontends. In order to ensure the optimal experience for the client, you come forward with you own ideas and work product-driven. Furthermore, you support the backend team at the frontend integration by using RESTful API’s. Requirements: This job requires that you be a self-starter with the ability to take ownership, work under pressure, and handle multiple tasks simultaneously. You should have good documentation skills and be able to interact with other team members to collaborate and deliver quality code. You will need to possess strong communication skills, have the ability to grasp a variety of unfamiliar technologies quickly, and work in a fast paced, team-driven environment. You may be asked to contribute ideas and provide feedback on many projects within the team’s portfolio. - You have worked before with AngularJS or similar frameworks. You are used to working with modern technologies like Docker and GIT - NodeJS or Python knowledge is advantageous - Strong HTML and CSS skills are a must Benötigte Skills CSS3 HTML5 Python Node.js Angular',\n", + " 'soft_skills': '[\"Collaboration\", \"Self Starter\", \"Communications\", \"Integration\"]',\n", + " 'hard_skills': '[\"Angular (Web Framework)\", \"Docker (Software)\", \"Python (Programming Language)\", \"Node.js\", \"Cascading Style Sheets (CSS)\", \"Good Documentation Practices\", \"Interactivity\", \"Git (Version Control System)\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Custom Backend\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Galician', 'Azerbaijani', 'Breton']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'full-stack software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " 'job_description': \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " 'soft_skills': '[\"Innovation\", \"Operations\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '115',\n", + " 'job_title': 'category manager - software',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Agencies & Brokerages',\n", + " 'website': 'www.swissre.com',\n", + " 'jobdescription_embedded': '[[-1.75392717e-01 1.91173732e-01 4.80963051e-01 -7.12103993e-02\\n4.87037987e-01 -6.54670969e-02 2.10967548e-02 2.52680123e-01\\n6.50866628e-02 -4.31204200e-01 -1.59794465e-01 -2.70640850e-01\\n3.96634489e-02 1.13767095e-01 1.03611529e-01 3.62646908e-01\\n3.23806673e-01 5.23841307e-02 -1.55019090e-02 2.74443775e-01\\n-2.41388679e-02 -1.44937783e-01 1.87602341e-01 6.80231988e-01\\n4.04947698e-01 7.26113915e-02 2.19302550e-02 -3.72557305e-02\\n-1.07614055e-01 -2.69822001e-01 6.00318670e-01 3.31557393e-02\\n-1.70734659e-01 -4.13134992e-01 9.80483517e-02 1.42163962e-01\\n-2.82749861e-01 -1.35211527e-01 -1.78704053e-01 6.74275160e-02\\n-4.63842809e-01 -1.77836746e-01 -2.70586610e-02 -5.89220151e-02\\n-2.77878255e-01 -3.97454500e-01 -8.41587968e-03 -1.12458780e-01\\n2.33229935e-01 1.51554391e-01 -4.52431321e-01 1.55971050e-01\\n-4.04359967e-01 -2.44947627e-01 3.87787163e-01 6.01265490e-01\\n7.32047185e-02 -4.89260733e-01 -5.79311967e-01 -2.84162790e-01\\n8.42785910e-02 -9.66857225e-02 1.29247665e-01 -2.56677061e-01\\n2.03934252e-01 1.11380123e-01 5.90397231e-02 2.99749553e-01\\n-8.12681794e-01 -1.10662758e-01 -2.65685916e-01 2.77502984e-02\\n-3.46459389e-01 3.52061465e-02 -3.43368232e-01 -1.87123075e-01\\n-2.20031217e-01 4.54624504e-01 5.06261662e-02 9.46829021e-02\\n-1.57339260e-01 4.22877073e-01 -2.87696779e-01 4.20623064e-01\\n1.30946457e-01 1.90544188e-01 3.56711328e-01 3.28632295e-01\\n-3.64323199e-01 5.88239431e-01 2.92794019e-01 -3.74938667e-01\\n1.75368890e-01 4.30128351e-03 2.94569522e-01 -1.22473150e-01\\n4.01278824e-01 5.07734641e-02 -2.31951684e-01 2.15515852e-01\\n2.65586972e-01 -7.67718703e-02 -3.76171172e-02 -2.57874995e-01\\n8.03459883e-02 -3.47943082e-02 8.42050165e-02 -8.42539594e-03\\n-4.12026316e-01 3.54559422e-01 1.34557739e-01 -3.15827280e-01\\n-1.93767130e-01 -3.92873019e-01 1.46175781e-02 3.31052430e-02\\n-8.35825875e-03 4.31448333e-02 -4.37179580e-03 1.22689247e-01\\n2.78478414e-01 -9.23387334e-03 9.03702676e-02 5.56779861e-01\\n-6.75691850e-03 -6.02615364e-02 -2.42571726e-01 2.59696066e-01\\n-4.93322872e-02 -2.39904493e-01 1.49567366e-01 5.69030270e-02\\n-2.54366606e-01 -7.79254884e-02 -3.87585640e-01 3.40413511e-01\\n4.34512310e-02 -2.52365738e-01 -1.85914427e-01 2.34106287e-01\\n2.02718824e-02 -4.99055922e-01 5.35464346e-01 -7.29470327e-02\\n1.76284224e-01 -9.23883170e-02 6.95682466e-02 -1.62501603e-01\\n-1.44419134e-01 6.82132840e-02 9.73870903e-02 1.27286226e-01\\n-2.28271678e-01 -2.47961283e-01 -1.25620291e-01 1.93823166e-02\\n-1.97636783e-01 1.70026183e-01 -2.90354103e-01 -1.59640253e-01\\n3.00143361e-01 3.88530120e-02 -3.35680544e-01 2.07767487e-01\\n-3.71846072e-02 6.54123276e-02 -4.90844287e-02 3.84507179e-01\\n-2.35250250e-01 1.12804279e-01 -3.68182734e-02 -1.36961907e-01\\n6.34300709e-01 -2.29170173e-03 4.25923109e-01 1.06082074e-01\\n2.72135943e-01 6.24821186e-02 1.33965522e-01 1.81596056e-02\\n-6.76323891e-01 3.26540649e-01 -1.94768049e-03 -7.81006217e-02\\n2.23843530e-01 -1.20686151e-01 2.73366272e-01 -2.17869490e-01\\n3.19016650e-02 -5.50366938e-02 -3.82237285e-01 -4.07454193e-01\\n-1.08631123e-02 -1.06036745e-01 1.75330400e-01 -5.81009090e-01\\n-1.88432902e-01 1.42634422e-01 -4.47236180e-01 -2.60049075e-01\\n8.55431184e-02 2.63482153e-01 1.89353973e-02 1.99082196e-01\\n-2.94995755e-01 -4.13241327e-01 8.88729542e-02 -4.53785419e-01\\n-1.00926809e-01 1.52241826e-01 -3.58739138e-01 9.92038101e-02\\n-8.40032399e-02 2.39813533e-02 -9.51625705e-02 -1.26704471e-02\\n-3.15653801e-01 -1.19363097e-03 1.73914097e-02 -1.42955622e-02\\n3.30172837e-01 1.19584367e-01 -3.33361119e-01 5.50499678e-01\\n-2.94619441e-01 3.80279332e-01 3.51184867e-02 -8.80754113e-01\\n5.11948347e-01 2.88132012e-01 -1.77712701e-02 -3.98599803e-01\\n4.76189971e-01 -3.69630396e-01 2.28587538e-02 1.36506751e-01\\n-4.81816471e-01 -1.88590109e-01 2.16745898e-01 -3.39353234e-01\\n-1.22013167e-01 5.28352499e-01 -1.22799091e-01 1.18226312e-01\\n2.36923307e-01 -1.51030838e-01 -1.85253680e-01 -3.03529650e-02\\n-2.43559197e-01 -7.14797378e-02 -6.74738109e-01 -1.20550588e-01\\n-1.01313435e-01 -4.40470010e-01 -1.66907325e-01 -4.54221249e-01\\n-1.65829584e-01 -2.99078226e-01 -1.59745052e-01 4.40034270e-02\\n2.29018703e-01 4.02710587e-02 -1.17175519e-01 1.12457603e-01\\n-5.15371561e-03 -6.26637459e-01 8.18236768e-02 1.63527787e-01\\n2.14517981e-01 2.29427204e-01 1.90173447e-01 -1.63780563e-02\\n6.72732741e-02 6.23535633e-01 -2.48633057e-01 -2.82125592e-01\\n3.42950583e-01 1.82073325e-01 5.35923094e-02 -1.55034110e-01\\n1.51557744e-01 2.42028266e-01 -2.82200754e-01 4.56824563e-02\\n1.87337399e-04 4.78452556e-02 5.42594194e-01 -1.42468467e-01\\n-2.19679341e-01 -1.90141946e-02 -6.46298155e-02 5.41214272e-02\\n-4.83308017e-01 -2.09045947e-01 5.41793704e-01 9.56858918e-02\\n-1.56609975e-02 3.20374578e-01 9.94716659e-02 1.17658220e-01\\n-2.42788136e-01 -2.43191153e-01 3.21399808e-01 1.28164813e-01\\n2.06691995e-01 1.47488028e-01 -6.65574223e-02 -5.35418987e-01\\n-3.18991327e+00 -1.71263486e-01 4.55804057e-02 -9.88049656e-02\\n3.27563435e-01 -1.74132183e-01 2.71635026e-01 -8.90070647e-02\\n-3.00922513e-01 2.71613970e-02 6.12839963e-03 -1.50737375e-01\\n1.81515962e-01 1.54848441e-01 6.58526644e-02 2.16171354e-01\\n9.21826139e-02 -2.48474658e-01 7.35199600e-02 3.57366771e-01\\n-1.77824259e-01 -7.99693882e-01 1.84409410e-01 -7.32982904e-02\\n1.63386717e-01 1.45969093e-01 -4.18723941e-01 -1.03084475e-01\\n-1.85670733e-01 -2.37415701e-01 1.29374474e-01 -3.04039568e-01\\n-7.46134445e-02 2.95258522e-01 2.14517757e-01 -1.62125021e-01\\n-1.55365784e-02 -3.60251427e-01 -1.74278259e-01 -6.37670279e-01\\n1.93827450e-01 -5.93006194e-01 4.84826043e-02 -2.03437254e-01\\n6.61310792e-01 -2.27842838e-01 1.24701545e-01 1.28821507e-01\\n5.58090322e-02 2.47575194e-01 2.88376391e-01 7.85723627e-02\\n-2.41814882e-01 -3.54774535e-01 -7.20326453e-02 -1.45128310e-01\\n6.26796126e-01 2.35724181e-01 -2.39043802e-01 9.28843468e-02\\n1.03465810e-01 -2.91445971e-01 -4.41504508e-01 -7.58066699e-02\\n-6.74636811e-02 -3.33291292e-02 -6.27791524e-01 -3.86210680e-01\\n-2.45397598e-01 -2.28021473e-01 1.92062333e-02 6.28184319e-01\\n-3.05816293e-01 -2.52423465e-01 -2.16081068e-01 -6.40182614e-01\\n5.07012248e-01 -1.89481705e-01 8.82148445e-02 -3.26630533e-01\\n-2.02113658e-01 -3.61521184e-01 2.37058356e-01 1.98142976e-02\\n-7.23819658e-02 -1.99734449e-01 1.52873099e-01 -3.43631357e-02\\n-3.51928681e-01 -5.56311607e-01 2.03103051e-01 5.68880737e-02\\n3.20012510e-01 1.31410688e-01 2.06604511e-01 -2.71250039e-01\\n2.52817482e-01 6.39189035e-02 -2.19234064e-01 -3.31385314e-01\\n5.45620918e-04 5.35780750e-03 4.01766151e-01 -1.28326625e-01\\n-4.67944071e-02 -2.00772546e-02 -1.98838532e-01 -7.01925606e-02\\n4.24947441e-01 -1.13331929e-01 1.82108432e-01 -9.95714664e-02\\n2.25038975e-01 -3.27728271e-01 -8.79024789e-02 9.01640952e-03\\n-5.39738014e-02 6.20335937e-01 5.13042212e-02 -3.72108698e-01\\n-6.15336671e-02 4.96558458e-01 6.43862933e-02 7.26597533e-02\\n-2.97580242e-01 1.76120233e-02 -2.25803554e-01 2.79968023e-01\\n5.72426692e-02 -6.40333891e-02 -1.49770260e-01 -9.25846398e-02\\n-1.11391798e-01 2.60044515e-01 2.42766932e-01 2.14883208e-01\\n-4.86995652e-03 -3.05137962e-01 -1.43569022e-01 2.31907368e-01\\n1.50509834e-01 6.25467122e-01 1.24654517e-01 -2.10222840e-01\\n-6.83097541e-02 2.87421823e-01 -2.39767611e-01 2.42607489e-01\\n-2.37434104e-01 1.95600748e-01 -5.73195934e-01 -1.70742437e-01\\n-2.61391252e-01 -3.67803961e-01 1.29769430e-01 4.57233876e-01\\n1.74865797e-01 -1.26462221e-01 1.39242709e-01 -4.23424602e-01\\n1.36808380e-01 1.72878444e-01 1.50800928e-01 5.74251488e-02\\n3.05016600e-02 7.53148913e-01 -5.55630215e-03 -2.82151341e-01\\n-8.77803415e-02 -1.29111204e-02 -2.00564533e-01 -9.33059603e-02\\n1.52969003e-01 -4.54732507e-01 -2.48387039e-01 4.49829370e-01\\n1.46624416e-01 -1.19844392e-01 -1.09885767e-01 3.70677859e-01\\n-6.93259239e-02 -1.81364179e-01 -3.60015333e-01 4.73018326e-02\\n2.51544058e-01 1.20374829e-01 3.25303555e-01 -5.53070188e-01\\n3.71674150e-02 -3.39962542e-04 1.44059300e-01 4.94814634e-01\\n1.49514601e-02 1.63296416e-01 -1.60967290e-01 -1.41970471e-01\\n3.89295608e-01 -4.58127856e-02 -1.86153010e-01 1.11827776e-01\\n1.00295536e-01 -1.41922504e-01 -3.09573591e-01 1.27008446e-02\\n-1.49759322e-01 -2.79302239e-01 -1.67938694e-02 2.91316628e-01\\n6.92215040e-02 8.31747353e-02 -5.90067685e-01 -1.89917386e-01\\n-2.37841085e-01 1.75939262e-01 -1.04251564e-01 -7.55984426e-01\\n3.62723954e-02 -1.58794746e-01 -4.43426490e-01 1.79916307e-01\\n8.35431367e-02 -1.46029532e-01 3.04354787e-01 6.36262894e-02\\n-2.40024209e-01 -7.70634189e-02 1.19891368e-01 2.80789793e-01\\n-2.47835219e-01 -2.08136648e-01 -8.15369114e-02 -9.18082595e-01\\n2.76980340e-01 -1.20699313e-02 -1.45309001e-01 1.46676019e-01\\n-1.17542684e-01 -7.34719396e-01 1.08312070e-01 -2.99756706e-01\\n-2.15212747e-01 -5.88724017e-02 -1.79161534e-01 -3.39227974e-01\\n1.31188214e-01 -3.03604938e-02 -1.41063720e-01 3.63867283e-01\\n-2.80857265e-01 3.81837428e-01 -1.95368499e-01 6.31855577e-02\\n1.84719175e-01 -2.19824463e-01 1.67475671e-01 -2.38766566e-01\\n-3.88642639e-01 -3.19310725e-01 -3.04624200e-01 -2.55587757e-01\\n-6.56606033e-02 -3.76146644e-01 3.34746502e-02 6.87047886e-03\\n5.05300283e-01 4.53501828e-02 -1.80413097e-01 -1.79536462e-01\\n4.47734073e-02 -4.91614401e-01 1.38322026e-01 -1.36069536e-01\\n-4.57799323e-02 -1.60010040e-01 3.14618319e-01 5.74848056e-02\\n2.85725057e-01 -4.90019500e-01 4.30752188e-01 -3.62608761e-01\\n-4.49326754e-01 -1.94962218e-01 8.56426954e-02 2.71397717e-02\\n3.49980712e-01 -5.18871486e-01 -1.27356485e-01 3.33609223e-01\\n1.28113270e-01 -7.46795163e-02 1.53683916e-01 -2.37776130e-01\\n-1.06222928e-01 3.04023802e-01 -4.33137894e-01 1.95051014e-01\\n7.27963746e-01 7.72688016e-02 1.21881045e-01 3.73372853e-01\\n2.08577871e-01 1.57689184e-01 4.39130127e-01 -3.85580547e-02\\n-1.80982620e-01 3.61669719e-01 9.01051015e-02 -5.01266062e-01\\n-3.98379304e-02 -7.90385306e-02 2.00808644e-02 -4.27434385e-01\\n6.24535680e-01 3.08363110e-01 -4.64880168e-01 -1.76366121e-01\\n-2.49673173e-01 -2.42979139e-01 2.88995683e-01 1.61893666e-03\\n-6.09323457e-02 1.07253842e-01 4.13148046e-01 2.71376539e-02\\n3.29714537e-01 5.15575111e-01 -1.59690231e-01 -1.68574095e-01\\n-6.78630695e-02 2.54613578e-01 -5.79759553e-02 4.62735176e-01\\n-1.75301626e-01 3.01032007e-01 5.50031103e-03 8.51506516e-02\\n-1.43284202e-01 -4.51363400e-02 9.84590203e-02 1.22496054e-01\\n8.07251781e-02 1.95134699e-01 5.15408456e-01 3.60571146e-01\\n2.97795773e-01 1.87495068e-01 3.79049182e-01 -5.24779409e-02\\n4.71629441e-01 6.26318514e-01 4.18208688e-01 -3.43496688e-02\\n1.27213985e-01 8.80967528e-02 1.45670354e-01 1.23308346e-01\\n2.70186126e-01 4.73738611e-01 -5.89395761e-02 7.76552916e-01\\n2.35991791e-01 2.35933363e-01 6.46410227e-01 -5.58430672e-01\\n-2.67704725e-01 -1.15513906e-01 4.07198906e-01 -4.79163498e-01\\n2.11102277e-01 2.16248244e-01 -7.96283484e-02 2.40948319e-01\\n-4.99260664e-01 -1.83036387e-01 5.00010736e-02 9.55052003e-02\\n8.43001679e-02 -1.52293354e-01 2.15421170e-02 1.34813145e-01\\n-7.36437142e-02 -2.50909507e-01 -3.86121750e-01 -2.90347099e-01\\n-1.76373065e-01 1.23183075e-02 -1.28167467e-02 -1.21194869e-01\\n-2.58666351e-02 -2.31482834e-01 -1.13255056e-02 -1.73447713e-01\\n2.62358665e-01 -7.47513995e-02 -3.64762135e-02 -5.30868284e-02\\n3.38649988e-01 1.41072527e-01 5.86987853e-01 -9.50608552e-02\\n-1.35283452e-02 -1.87910676e-01 -1.24670804e-01 1.25191361e-01\\n3.43777865e-01 1.56098023e-01 3.31759937e-02 2.71529466e-01\\n-2.64149100e-01 -2.30231971e-01 1.86707303e-01 2.26786092e-01\\n-3.80958885e-01 6.22821487e-02 -6.65275604e-02 8.81434083e-02\\n-8.18598121e-02 2.03695923e-01 -7.17323050e-02 -1.70519501e-02\\n-5.01275957e-02 -3.86642873e-01 2.85426259e-01 -1.91032648e-01\\n-1.90727353e-01 -1.37601852e-01 3.39436561e-01 2.82753974e-01\\n-3.33432734e-01 1.25756353e-01 -2.15584189e-01 -3.72811630e-02\\n1.90231092e-02 2.77684987e-01 -1.99671075e-01 -2.17864603e-01\\n-2.84616113e-01 1.04355410e-01 -5.53160608e-02 7.26355761e-02\\n5.94835207e-02 5.05928159e-01 -1.01011992e-02 7.45894313e-02\\n3.76512170e-01 -1.55503988e-01 -2.40611225e-01 -1.34928897e-01\\n-3.31959993e-01 2.32735034e-02 -3.26069482e-02 -1.13421500e-01\\n1.79844290e-01 -3.79481643e-01 -7.44758174e-02 -3.11749697e-01\\n-4.06613573e-02 -3.42282444e-01 -9.38513689e-03 -2.10126415e-02]]',\n", + " 'job_description': 'About Swiss Re

The Swiss Re Group is one of the world’s leading providers of reinsurance, insurance and other forms of insurance-based risk transfer, working to make the world more resilient. It anticipates and manages risk – from natural catastrophes to climate change, from ageing populations to cybercrime. The aim of the Swiss Re Group is to enable society to thrive and progress, creating new opportunities and solutions for its clients. Headquartered in Zurich, Switzerland, where it was founded in 1863, the Swiss Re Group operates through a network of around 80 offices globally. It is organised into three Business Units, each with a distinct strategy and set of objectives contributing to the Group’s overall mission. About the role Are you seeking a fantastic development opportunity to take your career to the next level within a forward-thinking global IT Sourcing Team? We are looking for an ambitious, experienced Category Manager for Software and SaaS. Reporting to the Head of Software and Licensing your position is fully accountable for leading sourcing service for all IT third party Software Applications, SaaS and respective services across Swiss Re. You will be responsible for the high quality and cost effective services from the Vendors. When leading sourcing projects, you will specify and collate demand as well as execute on vendor management activities. Developing service levels and quality processes will ensure efficient service delivery that meets or exceeds partner expectations. Adopting a risk-based focus you will ensure compliance with our Sourcing practices and procedures. You will jointly develop category plans with your internal partners. By bringing insightful market intelligence market trends / analysis, you will implement the agreed strategy for your sub-category. Taking the ownership for this IT Category, you will be recognized as the advisory lead for our partners across Swiss Re. In this role, we will expect you to: Negotiate and execute major commercial and contractual terms and conditions with global vendors Build and execute Software Service Strategies and Plans, using resources from our global network of sourcing professionals as required Be accountable for the delivery of annual Software financial savings goals Project lead or support Divisional IT Sourcing Programs as required Actively collate and interpret data from multiple sources to provide valuable insights and advice to your partners Seek and deliver continual improvement in the areas of demand management, contract negotiation, project sourcing and the category strategy About the team We are the IT&Data Sourcing Team, a unit within Global Sourcing which is itself part of Global Business Solutions. We are spread across four locations having touch with the global Sourcing Network. We handle all IT Sourcing Services including Software, SaaS, Hardware, Connectivity, Cloud and Application Services and Data. About You You have a bachelor’s degree in a science, technology or business administration. We have a strong preference for CIPS or similar professional qualification You have excellent command over English language, German is an advantage Ideally, you have five to ten (5-10) years of Sourcing experience in insurance, re-insurance or financial services. With a minimum of three to five (3-5) years Category Management experience in Software Services working across multiple jurisdictions on high value contracts. You are a highly experienced in category, demand and vendor management. You possess well-developed communication skills (written and verbal) with an ability to quickly establish trusted partner status. You possess very strong data analysis skills (collation, interpretation and insightful use of data) You have highly experienced and refined skills in defining and executing Category Strategies and associated Plans With your strong focus on customer and excellent advisory skills, you are able to effectively cooperate with internal customers and external suppliers You demonstrate behaviors consistent with Swiss Re imperatives facilitating consistent performance and continuous improvement We are an equal opportunity organization and welcome applicants from all backgrounds.
Swiss Re',\n", + " 'soft_skills': '[\"Negotiation\", \"Positivity\", \"Professionalism\", \"Cooperation\", \"Establishing Trust\", \"Planning\", \"Resilience\", \"Accountability\", \"Business Administration\", \"Operations\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Risk-Based Testing\", \"Enterprise Application Software\", \"Advisories\", \"Market Trend\", \"Cybercrime\", \"Demand Management\", \"Management Contract\", \"Service Delivery\", \"Licensing\", \"Refining\", \"Financial Services\", \"Commercialization\", \"Financial Software\", \"Trend Analysis\", \"Strategic Business Unit\", \"Category Strategy\", \"Activism\", \"Naturalization\", \"Climate Change Mitigation\", \"Levelling\", \"Executable\", \"Reinsurance\", \"Category Development\", \"Category Management\", \"Vendor Management\", \"Risk Management\", \"Equalization\", \"Continuous Improvement Process\", \"Market Intelligence\", \"Category Planning\", \"Service Level\", \"Service Strategy\", \"Financial Business Solution\", \"CIP System (Stereochemistry)\", \"Global Sourcing\", \"Quality Process Analysis\", \"Resourcing\", \"Contract Negotiation\", \"Application Services\", \"Software Plus Services\", \"Data Analysis\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Luba-Katanga', 'Flemish']\"},\n", + " {'company_id': '22',\n", + " 'job_title': 'project manager: blockchain developer and builder engagement',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.14114337e-01 3.66173685e-01 5.18920839e-01 1.96600682e-03\\n4.78293836e-01 -2.36980751e-01 -1.05949314e-02 1.97110936e-01\\n-3.65718789e-02 -3.96998167e-01 -8.66349787e-02 -2.94445634e-01\\n6.37336671e-02 2.05114990e-01 2.68351100e-02 2.49769449e-01\\n2.86789745e-01 1.52238561e-02 -9.81925949e-02 3.39843959e-01\\n4.84328866e-02 -2.14253992e-01 1.48351803e-01 6.19421840e-01\\n2.86122233e-01 -1.20739408e-01 -6.16095215e-02 9.67784151e-02\\n-2.41212249e-01 -1.39820933e-01 2.99406528e-01 1.09002411e-01\\n-1.81049213e-01 -4.15165156e-01 2.69558607e-03 -5.55803115e-03\\n-2.44044676e-01 4.67440784e-02 -8.35435838e-02 1.66776106e-01\\n-4.27426904e-01 -2.33389035e-01 2.09802408e-02 -2.83673778e-03\\n-2.80914277e-01 -2.80932218e-01 1.71636119e-01 -6.40482157e-02\\n1.06068932e-01 -3.16390395e-02 -3.19227964e-01 3.42118561e-01\\n-1.29420295e-01 -2.40336016e-01 3.53142411e-01 6.67725086e-01\\n3.08934823e-02 -6.04606330e-01 -4.96806711e-01 -2.97155589e-01\\n1.73869133e-01 -1.03674293e-01 1.02412298e-01 -3.11165571e-01\\n3.44381988e-01 1.03483035e-03 3.02234590e-02 4.15787101e-01\\n-6.91342413e-01 -1.46868676e-01 -3.20478380e-01 1.00073628e-01\\n-2.57406533e-01 -1.28615528e-01 -2.75833100e-01 -7.82175213e-02\\n-8.98500457e-02 4.00899649e-01 2.16207147e-01 -6.18968159e-02\\n-2.48949826e-01 2.82151639e-01 -2.94731230e-01 3.57558489e-01\\n1.74951345e-01 1.67800829e-01 2.54079282e-01 1.60266072e-01\\n-4.24892157e-01 5.15924394e-01 3.05913985e-01 -3.38015109e-01\\n3.45618099e-01 1.26318470e-01 4.00395304e-01 1.98892474e-01\\n2.32593790e-01 9.79492217e-02 -2.17356920e-01 2.32825801e-01\\n2.57832199e-01 -1.06137469e-01 -2.32374482e-02 -1.66014936e-02\\n1.67455882e-01 -1.38243586e-02 3.75869311e-02 1.11514188e-01\\n-3.95849943e-01 4.50693548e-01 9.66080353e-02 -1.92519322e-01\\n-1.02099128e-01 -3.43987763e-01 -1.06837042e-01 -9.43689942e-02\\n-1.18588343e-01 1.27345845e-01 1.15215555e-01 1.60553008e-01\\n4.06902768e-02 7.96759278e-02 1.73941016e-01 9.07721877e-01\\n-4.17743102e-02 1.18092723e-01 -2.07038388e-01 4.12287772e-01\\n5.08737862e-02 -1.93042800e-01 1.90568164e-01 1.70412883e-01\\n-1.15537085e-02 -2.17842802e-01 -1.55100837e-01 3.20548385e-01\\n7.31968656e-02 -3.55577201e-01 -2.31476232e-01 2.29050428e-01\\n-2.50121579e-02 -4.40684736e-01 5.21171331e-01 1.13337338e-01\\n9.24110189e-02 2.72643566e-02 -1.16159029e-01 -2.32919872e-01\\n-1.77426070e-01 1.70408487e-01 5.26866466e-02 1.39061213e-01\\n-2.33479887e-01 -3.14463586e-01 -1.84634715e-01 2.46044591e-01\\n-3.23984891e-01 5.14378920e-02 -1.52195543e-01 -4.35621738e-02\\n2.26933435e-01 5.78851253e-02 -4.53708380e-01 3.67274702e-01\\n-1.32135347e-01 6.78663999e-02 -7.55698010e-02 4.04776424e-01\\n-2.06337631e-01 1.59465760e-01 5.59169799e-03 6.47938624e-02\\n3.99802297e-01 1.13376461e-01 2.43985489e-01 -1.25281349e-01\\n3.36993396e-01 -4.53890823e-02 5.75929657e-02 1.43331200e-01\\n-5.35907924e-01 2.07556084e-01 -1.49998844e-01 -1.52683213e-01\\n1.81781262e-01 -1.96823195e-01 3.12285453e-01 -2.91966051e-01\\n-1.47483036e-01 -1.64649695e-01 -3.89111668e-01 -3.18894982e-01\\n-1.74485579e-01 -9.18097794e-02 4.77153182e-01 -3.70435297e-01\\n5.21936789e-02 1.66082337e-01 -4.85655874e-01 -1.45921335e-01\\n2.64865696e-01 1.82451651e-01 1.85604930e-01 1.27649635e-01\\n-1.58304930e-01 -5.51214039e-01 1.38333708e-01 -3.51694763e-01\\n-3.15113604e-01 1.59235045e-01 -3.75794470e-01 2.17157558e-01\\n1.45935073e-01 1.19720008e-02 -1.27070054e-01 3.55217978e-02\\n-1.85141161e-01 3.11849192e-02 -6.89461268e-03 2.23333780e-02\\n1.29030958e-01 1.05050094e-01 -3.56399387e-01 5.63885152e-01\\n-3.59626651e-01 4.60701376e-01 8.94755051e-02 -9.71409857e-01\\n4.22031671e-01 2.63584405e-01 -1.02848127e-01 -1.26795337e-01\\n4.71205294e-01 -4.43753392e-01 4.78260815e-02 4.41813841e-02\\n-2.57250607e-01 -3.07176352e-01 5.75374588e-02 -2.71455854e-01\\n-3.36258739e-01 5.19671679e-01 1.29784763e-01 4.16212864e-02\\n2.67129093e-01 -7.24109411e-02 -7.14177787e-02 1.26761314e-03\\n-1.58306003e-01 -2.74928063e-01 -5.30700684e-01 5.47005869e-02\\n-5.10486290e-02 -5.00439942e-01 -6.30378947e-02 -4.28231835e-01\\n-2.84703046e-01 -5.66694081e-01 -1.97764635e-01 2.19216749e-01\\n3.84520769e-01 1.22961782e-01 -4.25301529e-02 1.02820165e-01\\n-1.61518782e-01 -6.54224157e-01 8.07235911e-02 2.08535388e-01\\n2.55278736e-01 1.80683687e-01 1.31891578e-01 -4.99014854e-02\\n6.74963817e-02 5.48454225e-01 -2.85875171e-01 -1.52645439e-01\\n1.30869210e-01 4.70873937e-02 3.35348397e-02 -2.26052225e-01\\n1.13714688e-01 3.79775286e-01 -2.72397906e-01 6.17896281e-02\\n3.87193635e-02 -2.93929186e-02 2.79417902e-01 -1.58915501e-02\\n-3.58518094e-01 -1.80215523e-01 2.23382022e-02 2.30242044e-01\\n-4.79898959e-01 -1.45616263e-01 6.14074767e-01 5.33597954e-02\\n5.08374274e-02 2.06001714e-01 1.90679789e-01 -3.13385949e-02\\n-2.26695433e-01 -1.02612279e-01 1.62236392e-01 1.50061622e-02\\n2.05235362e-01 9.67135653e-02 -8.49686936e-02 -6.71822608e-01\\n-3.55596852e+00 -2.40655303e-01 1.55284524e-01 -2.75906891e-01\\n1.68613791e-01 -1.08919814e-01 4.84218001e-02 -1.09523050e-01\\n-3.24899644e-01 7.26152062e-02 -2.22016275e-01 -1.25120699e-01\\n1.17723539e-01 1.54224858e-01 1.33157879e-01 1.84320629e-01\\n9.59208161e-02 -1.28665432e-01 7.88349584e-02 3.30895573e-01\\n-2.23200977e-01 -6.54573083e-01 1.69320539e-01 6.13324121e-02\\n3.30040991e-01 1.46893486e-01 -4.45537865e-01 -1.05466880e-01\\n-1.62606388e-01 -1.20252356e-01 1.25662088e-01 -1.21601708e-01\\n-1.02120712e-01 3.42434853e-01 1.49132356e-01 5.31829819e-02\\n1.04606852e-01 -3.47546875e-01 -7.04226568e-02 -5.01532376e-01\\n4.91460040e-02 -5.71905196e-01 -6.51794747e-02 -8.99054930e-02\\n5.88427126e-01 -2.80828983e-01 1.94617718e-01 7.62112066e-02\\n-2.06799507e-02 1.85572520e-01 1.44446924e-01 -8.37876871e-02\\n-2.55836159e-01 -2.10645676e-01 -1.62164003e-01 -2.23671332e-01\\n5.90205193e-01 2.94643164e-01 -3.13232511e-01 -8.68681818e-02\\n-4.95217107e-02 -2.95137256e-01 -4.83465850e-01 -2.79011905e-01\\n-1.37104899e-01 -1.88478783e-01 -6.56266749e-01 -4.25697178e-01\\n-2.25796267e-01 -1.80703342e-01 -1.66139051e-01 7.01439917e-01\\n-2.64012605e-01 -2.62453705e-01 1.00921631e-01 -3.46553385e-01\\n2.36952186e-01 -9.66002047e-02 -3.42242569e-02 -7.06556067e-02\\n-2.84181625e-01 -4.44613010e-01 2.52509583e-02 3.46773565e-02\\n-2.66742229e-01 -1.68371782e-01 1.19542278e-01 -1.06661342e-01\\n-2.87713021e-01 -5.66252708e-01 3.86521310e-01 7.60023221e-02\\n1.83489665e-01 -1.65171158e-02 4.44281816e-01 -4.35731076e-02\\n4.08518225e-01 1.36947706e-02 2.69098617e-02 -3.51265073e-01\\n9.10397340e-03 -2.76642665e-02 4.72553849e-01 -1.29741937e-01\\n-9.83157828e-02 -6.47749240e-03 -2.21354753e-01 -4.07004990e-02\\n3.06377232e-01 -1.11976698e-01 7.99128264e-02 -1.88812658e-01\\n1.26800165e-01 -2.06962973e-01 -1.93028390e-01 -9.84182209e-03\\n2.39147887e-01 7.81929970e-01 -7.20244423e-02 -3.01665902e-01\\n-2.10879266e-01 3.84307951e-01 -7.40293413e-02 3.28381099e-02\\n2.07846258e-02 1.00851923e-01 -2.95618147e-01 2.35412329e-01\\n1.37765840e-01 -1.36355711e-02 -2.22225517e-01 -1.47651941e-01\\n-5.80089279e-02 1.66905209e-01 3.36287975e-01 5.07367663e-02\\n-3.02889664e-02 -5.25917530e-01 -1.29851177e-01 1.33927256e-01\\n1.28232211e-01 3.93928289e-01 2.39438891e-01 -1.84936419e-01\\n2.22731292e-01 2.32599810e-01 -2.50242740e-01 2.39527568e-01\\n-2.83800423e-01 2.35451996e-01 -7.64704585e-01 -3.03185910e-01\\n-2.81680763e-01 -3.94618988e-01 1.16193831e-01 2.52213627e-01\\n1.87093347e-01 -5.04459403e-02 1.07148074e-01 -4.95514274e-01\\n2.35754460e-01 2.26022303e-02 3.35982263e-01 1.29349008e-01\\n-6.46788478e-02 6.23621047e-01 -2.12318115e-02 -1.69986337e-01\\n-2.44507968e-01 2.67336033e-02 -1.45196453e-01 -1.33245438e-01\\n-8.30217674e-02 -4.87464607e-01 -2.08144367e-01 3.26940775e-01\\n1.37608171e-01 -1.01620384e-01 -5.63129634e-02 3.72164637e-01\\n-1.27995372e-01 -2.09884062e-01 -1.83306292e-01 -1.33133292e-01\\n2.81402797e-01 2.17932522e-01 2.09348887e-01 -4.02280688e-01\\n9.36380178e-02 2.15110779e-01 -3.09819635e-02 4.84630972e-01\\n8.35286826e-03 4.02724408e-02 -7.67687755e-03 -2.25152537e-01\\n5.52247107e-01 3.87647897e-02 -1.20443031e-01 -1.38466567e-01\\n9.49028358e-02 -2.30418012e-01 -3.84659052e-01 1.25977919e-01\\n6.38883337e-02 -1.87456980e-01 1.14209644e-01 2.15579525e-01\\n1.52309850e-01 -7.30568022e-02 -4.40153718e-01 -1.39011279e-01\\n-4.87896085e-01 -3.62862535e-02 4.67279106e-02 -6.42781854e-01\\n-2.70322878e-02 -2.83410326e-02 -4.10962462e-01 2.39723563e-01\\n-1.07274562e-01 -1.00738727e-01 4.24173698e-02 3.57225798e-02\\n-3.39092255e-01 -2.02465370e-01 1.49731338e-01 2.79068232e-01\\n-3.52344126e-01 -3.33711416e-01 1.78214327e-01 -8.54675889e-01\\n2.47098103e-01 1.21136367e-01 -8.37479234e-02 1.78197846e-01\\n-1.71670914e-01 -6.47996247e-01 3.20427060e-01 -3.30467850e-01\\n-1.79076195e-01 -8.98823738e-02 -2.48933434e-01 -4.04764771e-01\\n6.59977943e-02 6.58696890e-03 -2.82538086e-01 4.48034406e-01\\n-3.01077366e-01 3.93791229e-01 -8.48759562e-02 3.58852893e-02\\n-3.98221016e-02 -1.61013559e-01 9.78271477e-03 -4.43825394e-01\\n-5.72007418e-01 -1.69654280e-01 -2.98258394e-01 -2.35934362e-01\\n-9.88285914e-02 -1.18832611e-01 -8.12308714e-02 3.52456607e-02\\n3.54865879e-01 1.14554249e-01 -1.36785358e-01 -2.52002120e-01\\n-5.57368156e-03 -4.30130780e-01 -2.71191522e-02 -1.26527965e-01\\n1.06544420e-01 -1.53415501e-01 1.08936511e-01 8.67359564e-02\\n1.55309409e-01 -3.79739374e-01 4.46728379e-01 -2.59597093e-01\\n-2.59363890e-01 -1.41129419e-01 -4.35267948e-02 4.96094562e-02\\n3.98187667e-01 -4.59367126e-01 -1.07762240e-01 3.92845273e-01\\n1.93437263e-01 -3.45005020e-02 2.40517125e-01 -4.67248335e-02\\n-1.40279442e-01 3.39832515e-01 -3.51590633e-01 1.38086602e-01\\n7.89118230e-01 5.09127788e-02 2.53097117e-01 1.38164848e-01\\n9.57180634e-02 2.78728694e-01 3.98119569e-01 -1.52839348e-01\\n1.58536492e-03 3.67063254e-01 1.65117055e-01 -4.49695587e-01\\n-5.78594878e-02 8.70994851e-03 -2.30639786e-01 -3.60636890e-01\\n6.60404742e-01 2.89339334e-01 -4.18956488e-01 -2.15832219e-01\\n-1.34726197e-01 -2.69058943e-01 2.91062832e-01 4.01742421e-02\\n4.99096364e-02 -1.34873927e-01 4.44533676e-01 -6.62775561e-02\\n2.82062262e-01 4.30130154e-01 -1.58522457e-01 -3.04299831e-01\\n8.06152970e-02 2.67300189e-01 4.39011157e-02 4.75732297e-01\\n-2.45493591e-01 2.18553111e-01 2.88020354e-02 -1.01469513e-02\\n-2.27669016e-01 2.33838737e-01 1.84801057e-01 2.95844059e-02\\n1.07878618e-01 8.64339545e-02 4.31850910e-01 4.71262366e-01\\n3.05678815e-01 4.31435227e-01 2.98277050e-01 -1.45030143e-02\\n4.48379636e-01 5.70726156e-01 3.76794904e-01 9.83860269e-02\\n5.13080098e-02 1.43768489e-01 5.18906862e-02 -7.60190338e-02\\n2.82849103e-01 4.16783631e-01 4.77079451e-02 8.52276564e-01\\n4.27912921e-01 2.30356649e-01 6.20717645e-01 -5.23009658e-01\\n-2.99823344e-01 1.81314021e-01 5.06686389e-01 -3.16361129e-01\\n4.19216044e-02 1.17047474e-01 -8.71207491e-02 2.93500602e-01\\n-4.64749306e-01 -2.35303223e-01 -5.92809655e-02 -3.21552306e-02\\n1.27653927e-01 -1.75178230e-01 -1.54573902e-01 9.40735117e-02\\n-1.38408035e-01 -7.15309978e-02 -3.64198565e-01 2.75212377e-02\\n-1.64753959e-01 -1.31039605e-01 -1.19457394e-01 -1.50808189e-02\\n-1.62185878e-02 -3.97988379e-01 -1.21359900e-01 -1.10515408e-01\\n2.01168522e-01 -1.73420921e-01 -2.41910741e-01 -1.49781123e-01\\n3.32884729e-01 1.39458716e-01 5.97308397e-01 1.75098151e-01\\n3.75264138e-02 -3.41061950e-01 -1.71172351e-01 1.12551048e-01\\n1.72651336e-01 1.46947056e-01 -2.02078838e-02 2.89516687e-01\\n-2.04414576e-01 -5.12583889e-02 4.92966408e-03 3.40786844e-01\\n-3.71831149e-01 6.67385459e-02 -1.65685520e-01 1.12376697e-01\\n2.51964349e-02 2.15620115e-01 -1.07497036e-01 3.21759023e-02\\n-7.58459643e-02 -4.50076193e-01 2.71587908e-01 -1.32524058e-01\\n-1.07328348e-01 -1.59549024e-02 1.93120822e-01 1.77724034e-01\\n-1.29216149e-01 -7.15259314e-02 -1.16562486e-01 8.24521407e-02\\n4.55437005e-02 3.56522501e-01 -1.77289248e-01 -1.50034070e-01\\n-2.65280694e-01 2.77813762e-01 -5.94692864e-02 7.37490356e-02\\n6.77719563e-02 3.23635995e-01 4.51249182e-02 1.32341564e-01\\n3.95771831e-01 2.62103900e-02 -1.93035319e-01 -2.11952791e-01\\n-3.26962799e-01 -1.42629772e-01 -1.01569504e-01 -7.62116089e-02\\n1.40196756e-01 -3.45731854e-01 -2.38425992e-02 -1.38485506e-01\\n-1.37039483e-01 -3.44416171e-01 2.10568272e-02 -2.36099795e-01]]',\n", + " 'job_description': 'Job Description Project Manager: Blockchain Developer and Builder Engagement CasperLabs is building the next big thing in blockchain technology - a blockchain platform for the builders that is purpose built to scale opportunity for everyone, forever. We are looking for an experienced, technical Project Manager, who is passionate about engaging App Developers and Builders to experiment with our platform and grow active communities around it. You are at your best managing cross-functional projects, working closely with Engineering and Marketing to share knowledge and user feedback. You are excited about working with App Developers, Builders and are at ease discussing technical aspects with them as well as managing technical demos and leading hackathons in blockchain conferences. Your responsibilities will include: Understand developers’ and builders’ objectives and requirements. Coordinate across Engineering, Marketing and other teams (Tech writer, App Developer etc) to generate collaterals (technical documentation, videos, reference implementations, illustrations, use-cases etc) to showcase the technology in these events and to grow technical developer communities for CasperLabs platform. Project managing CasperLabs participation in conferences, meet-ups and other events and organization of demos and hackathons etc. for engaging App Developers and Builders. Work with Product teams to understand features roadmap and also share knowledge, feedback from these engagements to the product and marketing teams. Create feature requests for new functionalities based on this feedback. Requirements Qualifications 5 years in software development with experience in modern application development methodologies. Experience with JavaScript, RUST, and blockchain technology. Ability to project manage technical events. Experience of presenting, demoing at technical conferences. Excellent communication skills to engage with tech savvy customers and experience with growing technical communities. Technical acumen, ability to share customer feedback to product and marketing. Experience of managing high visibility cross functional projects and working with diverse teams like engineering and marketing. Excited about domestic and international travel (about 3-5 days per month) ',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Coordinating\", \"Management\", \"Communications\", \"Technical Acumen\", \"Presentations\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Blockchain\", \"Scale (Map)\", \"Activism\", \"Use Case Diagram\", \"Technical Management\", \"Technical Communication\", \"Cross-Functional Coordination\", \"JavaScript (Programming Language)\", \"Community Development\", \"Illustration\", \"Technical Documentation\", \"Reference Implementation\", \"User Feedback\", \"Software Development\", \"Project Management\", \"Rust (Programming Language)\", \"Job Descriptions\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Serbian']\"},\n", + " {'company_id': '65',\n", + " 'job_title': 'internship in software engineering',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Venture Capital & Private Equity',\n", + " 'website': 'www.investiere.ch',\n", + " 'jobdescription_embedded': '[[-1.34337008e-01 1.63646415e-01 5.36213756e-01 -8.01078528e-02\\n5.42521477e-01 -1.00907318e-01 -9.42225754e-03 4.80246872e-01\\n-7.36143216e-02 -4.75178659e-01 9.17065609e-03 -2.05954865e-01\\n7.83101320e-02 1.36848420e-01 1.07726656e-01 2.70896733e-01\\n2.88107067e-01 1.29904479e-01 -1.59375340e-01 1.76806614e-01\\n1.99277341e-01 -1.48189917e-01 1.86817139e-01 7.22412407e-01\\n5.48068941e-01 -5.50843626e-02 -4.24359478e-02 -4.42284718e-02\\n-1.93588898e-01 -3.04115504e-01 4.47946876e-01 -7.01969862e-02\\n-8.25247914e-02 -3.96388829e-01 9.71253067e-02 -4.03905325e-02\\n-1.91450372e-01 -9.99890268e-02 -1.76792905e-01 1.99802920e-01\\n-6.17486417e-01 -2.04826638e-01 2.84638442e-02 9.48825926e-02\\n-2.84893036e-01 -3.41554403e-01 1.11690335e-01 -7.62473121e-02\\n2.65813798e-01 2.58713812e-02 -4.52398270e-01 2.56151646e-01\\n-1.63122237e-01 -2.06633508e-01 3.55508685e-01 6.24765813e-01\\n-3.37766297e-02 -4.36281174e-01 -5.57289064e-01 -2.85065502e-01\\n7.34069943e-02 -1.67526931e-01 5.05903289e-02 -3.39640141e-01\\n3.12954605e-01 5.91142699e-02 1.02274247e-01 3.26941907e-01\\n-8.92845809e-01 -3.66910622e-02 -1.94773734e-01 -4.84204292e-02\\n-2.63017803e-01 -1.19995676e-01 -2.60107160e-01 -8.28199089e-03\\n-8.90427381e-02 5.21384537e-01 7.25836679e-02 3.73426452e-02\\n-1.51157573e-01 2.88798392e-01 -3.23880792e-01 4.41498101e-01\\n8.45139697e-02 2.59786844e-01 1.40834361e-01 2.41163090e-01\\n-3.10629010e-01 3.97966504e-01 1.50540158e-01 -3.07049900e-01\\n2.75296479e-01 6.13732338e-02 4.41681057e-01 9.26104933e-02\\n1.04586169e-01 3.35003473e-02 -2.75862992e-01 3.41921002e-01\\n2.99706340e-01 -2.36870155e-01 7.86397755e-02 -1.69480726e-01\\n-3.43083180e-02 1.83355846e-02 7.81609677e-03 1.50317430e-01\\n-3.01395625e-01 4.52977240e-01 1.86836869e-01 -9.37541872e-02\\n-1.76229194e-01 -5.49221873e-01 -9.83577874e-03 -2.09357515e-02\\n1.19718025e-02 1.55485585e-01 2.15038836e-01 1.40489504e-01\\n1.31163657e-01 6.92061558e-02 1.48857981e-01 8.44469488e-01\\n-1.14525452e-01 4.58277203e-02 -2.46382222e-01 3.07828069e-01\\n2.03332454e-02 -2.98745811e-01 1.98079988e-01 2.95082152e-01\\n2.58437321e-02 -7.74823874e-02 -1.56687558e-01 4.13819522e-01\\n-2.92064678e-02 -2.24598393e-01 -3.03157091e-01 1.34789035e-01\\n-1.29112639e-02 -3.60426575e-01 6.17812991e-01 1.36699080e-01\\n1.89158157e-01 1.04470160e-02 8.19882452e-02 -2.23682478e-01\\n-1.28406942e-01 2.24445134e-01 -4.15785536e-02 6.90870211e-02\\n-2.66860336e-01 -1.76316708e-01 -2.79011160e-01 1.47194639e-01\\n-3.00567687e-01 2.14299373e-02 -1.95612665e-02 -5.84186651e-02\\n3.13555241e-01 1.50806233e-01 -2.03662470e-01 3.87626112e-01\\n-3.62312272e-02 1.29218176e-01 2.95628197e-02 2.11626485e-01\\n-2.48146668e-01 3.21363211e-01 -1.40236020e-01 -1.84681881e-02\\n5.72188973e-01 1.29853804e-02 2.10156381e-01 8.96748453e-02\\n2.74574071e-01 -1.06913365e-01 8.07373002e-02 1.08396962e-01\\n-6.12612605e-01 2.81096786e-01 1.86051689e-02 -1.24053828e-01\\n9.94442850e-02 -8.51314813e-02 2.27947250e-01 -2.56508350e-01\\n7.50555098e-02 -1.19216450e-01 -3.35309774e-01 -3.03479314e-01\\n-2.33170182e-01 -1.82270017e-02 4.71142024e-01 -4.94881332e-01\\n-1.36893615e-01 3.29573303e-01 -4.80622560e-01 -1.02106199e-01\\n2.95023113e-01 2.11810127e-01 1.64180592e-01 8.50532874e-02\\n-2.09493905e-01 -4.96632636e-01 1.05139606e-01 -3.52494866e-01\\n-2.42749199e-01 1.09366380e-01 -2.96872765e-01 3.63404244e-01\\n4.34414521e-02 -7.24572502e-03 -3.19042355e-02 1.99488297e-01\\n-1.35283336e-01 -7.88929984e-02 9.14442763e-02 1.18360162e-01\\n3.10803503e-01 5.53547665e-02 -5.02469897e-01 4.89664137e-01\\n-1.75774321e-01 5.92771232e-01 9.53852460e-02 -8.88040245e-01\\n4.17485714e-01 3.15697700e-01 -6.61279336e-02 -3.38652402e-01\\n5.83724618e-01 -1.56624094e-01 2.47379392e-02 6.26120269e-02\\n-5.49846768e-01 -4.14981276e-01 2.05314547e-01 -2.14727327e-01\\n-2.08273262e-01 4.58074391e-01 8.10602307e-02 5.62296323e-02\\n2.48760134e-01 -2.03495979e-01 -1.72855452e-01 4.70590219e-02\\n-8.22422132e-02 -2.35783070e-01 -5.54661453e-01 -1.03056423e-01\\n-1.45573720e-01 -5.38740754e-01 -6.52554184e-02 -4.14454699e-01\\n-2.34221742e-01 -3.37592781e-01 -8.40818658e-02 1.76153556e-01\\n3.37151378e-01 1.50845692e-01 4.62369435e-02 1.54242501e-01\\n-9.46516544e-02 -5.29070199e-01 -8.69205371e-02 1.47679478e-01\\n3.28064263e-01 1.77751467e-01 6.29430190e-02 4.40707654e-02\\n-1.19085908e-02 6.83524489e-01 -1.52305201e-01 -8.43667090e-02\\n1.57351404e-01 2.05439836e-01 1.37507930e-01 -1.55841514e-01\\n1.38513878e-01 2.98108131e-01 -3.48469079e-01 1.17704444e-01\\n-1.18397802e-01 8.86833481e-03 2.82785475e-01 1.28608063e-01\\n-3.26086938e-01 -2.70682812e-01 -1.67983398e-01 6.02825768e-02\\n-5.09099543e-01 -2.26683125e-01 6.74059868e-01 2.19456688e-01\\n2.14915588e-01 2.05150455e-01 1.49083301e-01 -1.05556354e-01\\n-3.34455892e-02 -2.05017060e-01 1.63019806e-01 4.36320938e-02\\n1.85219616e-01 1.12400040e-01 -6.57394752e-02 -5.94675720e-01\\n-3.14523864e+00 -1.43387973e-01 1.96698308e-01 -3.32020462e-01\\n8.72940943e-02 -1.91424355e-01 -9.66249779e-03 -1.26701280e-01\\n-2.70908654e-01 -7.53519610e-02 -2.60375977e-01 -1.76407441e-01\\n1.58801392e-01 1.22986138e-01 1.01718768e-01 2.42066026e-01\\n7.89324045e-02 -1.25840247e-01 5.14420457e-02 3.03308457e-01\\n-3.31856400e-01 -5.31662762e-01 2.61339903e-01 -5.34521267e-02\\n3.03692728e-01 3.14413279e-01 -3.88557583e-01 -1.69544399e-01\\n-2.30757475e-01 -2.53103584e-01 2.36717761e-01 -2.33345538e-01\\n-7.30268732e-02 2.89472669e-01 2.27129698e-01 -8.91174302e-02\\n2.14254722e-01 -4.57100064e-01 -7.73837939e-02 -4.50518996e-01\\n1.87759161e-01 -6.81079388e-01 -1.26299918e-01 -1.21217497e-01\\n7.36948609e-01 -4.18577075e-01 6.69073611e-02 1.17754966e-01\\n1.71761319e-01 1.38715103e-01 1.29446445e-03 1.28638409e-02\\n-2.84309834e-01 -2.83133566e-01 -4.33252528e-02 2.00033374e-02\\n3.67738038e-01 5.75577438e-01 -1.98566332e-01 1.21205440e-02\\n6.87287152e-02 -3.32145393e-01 -3.67791295e-01 -3.10723722e-01\\n-1.20364316e-01 -3.97466272e-01 -6.12538457e-01 -3.25920820e-01\\n-6.97302669e-02 -1.77819103e-01 -1.24055736e-01 5.45546293e-01\\n-1.76778600e-01 -3.20795417e-01 -4.13102619e-02 -5.75784445e-01\\n2.87172556e-01 -1.27772182e-01 -9.56566408e-02 -2.21723154e-01\\n-3.24751407e-01 -3.98359776e-01 2.70145983e-02 -3.98050882e-02\\n-1.21716686e-01 -2.83581167e-01 7.19328299e-02 -1.70839414e-01\\n-3.10252786e-01 -6.31471217e-01 4.40282434e-01 7.02010542e-02\\n2.80810028e-01 9.55578312e-02 2.60536611e-01 -6.87211305e-02\\n2.42604718e-01 -2.68958479e-01 -6.52277265e-07 -3.32351893e-01\\n1.82696238e-01 5.81100807e-02 4.50256348e-01 -2.72843838e-01\\n2.85012405e-02 7.54184797e-02 -2.46181697e-01 -1.05317116e-01\\n2.15433270e-01 6.00500777e-02 1.15887806e-01 -2.51849830e-01\\n2.70699978e-01 -1.96424022e-01 -1.93127617e-01 -4.00374318e-03\\n5.47083989e-02 5.44419348e-01 1.10143051e-02 -3.64890695e-01\\n-1.06160134e-01 5.00124753e-01 -6.40140846e-02 -8.48398060e-02\\n-2.39083543e-01 9.56038907e-02 -2.95583069e-01 2.04401523e-01\\n-5.91227226e-03 -2.21146524e-01 -2.38888547e-01 -2.72728890e-01\\n-1.11058436e-01 3.20618957e-01 2.71947205e-01 7.02581033e-02\\n5.20772152e-02 -4.27505642e-01 4.30637971e-02 2.73428380e-01\\n7.89303854e-02 4.13618475e-01 6.57725856e-02 -1.79144055e-01\\n-2.37990506e-02 3.81010681e-01 -1.75012067e-01 1.99344561e-01\\n-3.21334183e-01 8.81612077e-02 -5.92005968e-01 -2.86629707e-01\\n-2.37683490e-01 -4.54205722e-01 6.13500066e-02 1.91203609e-01\\n2.38448307e-01 1.60973016e-02 3.13769318e-02 -4.61979538e-01\\n3.33905935e-01 -1.18792057e-02 2.92176276e-01 1.51993543e-01\\n4.02166918e-02 5.08290291e-01 -3.24870832e-02 -8.53091180e-02\\n-1.44991085e-01 5.89203462e-02 -3.08907390e-01 -1.15894563e-01\\n1.33956419e-02 -5.02786875e-01 -1.20861754e-01 4.49983835e-01\\n7.93771744e-02 -2.36958295e-01 -1.07669875e-01 2.22693935e-01\\n-4.38144729e-02 -2.34239161e-01 -1.49595827e-01 7.38606825e-02\\n4.10497874e-01 1.36834145e-01 3.14824939e-01 -4.39443350e-01\\n1.06498436e-03 2.84343809e-02 -1.56899214e-01 5.09854436e-01\\n5.75984418e-02 1.21802893e-02 -1.32647365e-01 -2.61771411e-01\\n3.48148316e-01 -1.82851076e-01 -4.36378866e-02 8.46027024e-03\\n6.55370802e-02 -1.41125754e-01 -5.26596010e-01 8.47164243e-02\\n-1.13346977e-02 -5.39075173e-02 3.01400274e-02 7.26367608e-02\\n1.64747268e-01 6.92630187e-02 -5.38010001e-01 -2.67275244e-01\\n-3.52776587e-01 1.01353042e-02 6.34088144e-02 -4.35367286e-01\\n-3.99925560e-02 -3.15161012e-02 -6.45430803e-01 2.46040687e-01\\n-2.63495594e-01 -1.06394216e-01 1.58297211e-01 -1.00343162e-02\\n-3.32590818e-01 -3.58649017e-03 1.48737177e-01 2.89066315e-01\\n-3.57840002e-01 -2.20583826e-01 5.87247573e-02 -1.02470171e+00\\n2.00929537e-01 -6.18829802e-02 -2.01624155e-01 1.71437025e-01\\n-9.55330655e-02 -7.66089439e-01 1.35085911e-01 -3.58011931e-01\\n-8.60535800e-02 -1.68887079e-02 -1.95505828e-01 -5.76224804e-01\\n6.09557424e-03 8.03248137e-02 -2.68829286e-01 4.37949985e-01\\n-2.61651725e-01 4.15718496e-01 -1.36057679e-02 7.08136931e-02\\n3.38980965e-02 -3.28646690e-01 2.10948102e-02 -4.07981217e-01\\n-3.86089385e-01 -1.44698501e-01 -3.96761060e-01 -1.55249178e-01\\n3.76804732e-02 -3.53774995e-01 -1.02801286e-01 5.79404011e-02\\n3.25441480e-01 3.48982727e-03 -8.20470676e-02 -2.88783193e-01\\n9.44731012e-02 -6.42296314e-01 3.12745832e-02 -7.62304291e-03\\n-4.56989035e-02 -8.25515985e-02 2.25617751e-01 8.93498287e-02\\n1.28522798e-01 -5.04110754e-01 3.39483589e-01 -3.32809806e-01\\n-4.07107323e-01 -3.06565426e-02 7.29789883e-02 4.38170582e-02\\n3.48695606e-01 -4.07504886e-01 -4.87037972e-02 4.40224320e-01\\n1.71396583e-01 1.37261376e-01 2.32798263e-01 -7.57163716e-03\\n-8.79372805e-02 2.96312243e-01 -3.55780154e-01 1.55977279e-01\\n8.41415763e-01 6.46742061e-03 1.51879057e-01 2.41049856e-01\\n1.54904887e-01 3.32360327e-01 5.17850041e-01 1.95554532e-02\\n-1.72292084e-01 2.87881196e-01 4.60712314e-02 -6.26506150e-01\\n-8.61246325e-03 -1.17018253e-01 -2.70727515e-01 -4.20624137e-01\\n6.58684433e-01 4.38828439e-01 -4.68059182e-01 -2.26072028e-01\\n-1.59305856e-01 -2.33720064e-01 -3.99751496e-03 -1.49832666e-01\\n1.09964140e-01 -7.81664029e-02 3.92222792e-01 -6.14410453e-02\\n3.38254601e-01 4.71006423e-01 -1.90288618e-01 -2.86478251e-01\\n-4.73232493e-02 9.09509659e-02 -2.37055458e-02 4.31943655e-01\\n-2.34474108e-01 3.77940714e-01 4.02450711e-02 1.41926274e-01\\n-7.27563724e-02 1.47303164e-01 9.62411761e-02 8.22771639e-02\\n1.09053999e-01 5.01225144e-02 3.75123292e-01 4.37098891e-01\\n3.62140298e-01 5.10423779e-01 3.86602223e-01 1.59495492e-02\\n5.38423955e-01 5.48714399e-01 3.41917664e-01 2.23887354e-01\\n-8.09940472e-02 1.24369994e-01 -5.33232689e-02 -4.23859106e-03\\n3.10577095e-01 3.57037246e-01 6.26696274e-02 9.31097627e-01\\n4.33853209e-01 2.12539271e-01 6.76587105e-01 -6.63434446e-01\\n-3.80192310e-01 1.44151514e-02 4.48774368e-01 -3.88812721e-01\\n-6.17304742e-02 6.15526028e-02 -1.33545130e-01 2.76637316e-01\\n-4.52169538e-01 -3.20276678e-01 -1.27807751e-01 1.70570552e-01\\n-6.55955635e-03 -1.55866891e-01 -3.17582577e-01 1.06215030e-01\\n-1.49328306e-01 -8.40213373e-02 -5.84760249e-01 3.19982097e-02\\n-2.40489498e-01 -2.45308101e-01 -6.52740970e-02 -1.35858208e-01\\n-7.38448724e-02 -4.07880783e-01 -1.86275229e-01 -6.45738840e-02\\n3.96742105e-01 -6.03547916e-02 -3.25962752e-02 -2.03806683e-01\\n2.81600535e-01 2.74856031e-01 5.57233870e-01 4.64226045e-02\\n6.83269352e-02 -2.95181006e-01 -1.99035034e-01 1.87840447e-01\\n2.18090951e-01 6.57629818e-02 -3.39774899e-02 3.17122161e-01\\n-3.13661903e-01 -1.38562053e-01 1.39029622e-01 4.26600844e-01\\n-5.33683360e-01 -1.84046440e-02 -1.31847396e-01 2.21183315e-01\\n2.27309942e-01 2.20703796e-01 -1.94886655e-01 5.31799123e-02\\n-1.13080122e-01 -4.14816380e-01 1.96838170e-01 -5.39342873e-02\\n-7.94884786e-02 -4.22132798e-02 2.11815596e-01 1.38256833e-01\\n-2.05662549e-01 1.78105421e-02 -4.19876352e-02 1.18581720e-01\\n1.43464744e-01 3.51034313e-01 -3.01953584e-01 -2.62854010e-01\\n-1.74047977e-01 1.55249164e-01 -2.71763206e-01 1.27591789e-01\\n-1.13803893e-02 3.09970796e-01 1.22065231e-01 6.65671676e-02\\n3.88472497e-01 -9.30234641e-02 -1.26690954e-01 -2.01170176e-01\\n-2.57375419e-01 -2.97722250e-01 2.83939969e-02 -1.79986775e-01\\n3.11180413e-01 -4.61371869e-01 -6.99892491e-02 -3.73740681e-02\\n-1.80731103e-01 -3.39927375e-01 7.06555024e-02 -1.86157867e-01]]',\n", + " 'job_description': 'If you are looking for a very motivating startup work environment and team, if you would like to contribute to the growth of a disruptive VC platform and if you are hands-on, then this could be the perfect internship opportunity and work environment for you. We already are one of the most innovative startup investment platforms in Europe. We are now looking to grow the next level digital infrastructure for startup investments, building a service platform and network for a large community of entrepreneurs, private and institutional investors. investiere.ch is an online investment platform that offers private and institutional investors direct and professional access to startup investments. Having successfully closed more than 70 financing rounds, investiere.ch is one of the most active venture capital investors in Switzerland. As a intern in our tech team you will: Develop secure and reliable Scala web-services for our platform (scala/PlayFramework, MongoDB, MySQL, Redis and ElasticSearch, graphQL) Develop frontend applications (Angular 1.x & 5, Ionic) Support in administration of servers / cloud services Write tests for services and frontend features that you build (e.g. Postman, unit tests, etc) Find out more about our IT team. Requirements You are the right candidate for this position if most of the following skills match your profile: University Bachelor or Master degree with excellent credentials in computer science Java or Scala development Frontend experience or interest: Javascript / HTML / CSS Eager to learn and experience new technologies Ability to work independently with high attention to detail Strong command of English, our work language Entrepreneurially minded and very strong team player Benefits Dynamic and challenging startup environment Flexibility with work locations and hours Frequent team events and more Has your interest been piqued? Meet our experienced investiere team at our offices in Zurich and Geneva. The work location for this position is Zurich. If you have any further questions, just give us a call (+41 41 545 94 94). Please send your CV and cover letter using the application form below. Applications will be processed within two working days.',\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Infrastructure\", \"Communications\", \"Reliability\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Playframework\", \"MySQL\", \"Cascading Style Sheets (CSS)\", \"Postman\", \"Unit Testing\", \"Computer Science\", \"Scala (Programming Language)\", \"Activism\", \"Venture Capital\", \"MongoDB\", \"E (Programming Language)\", \"Levelling\", \"GraphQL\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Investments\", \"Cloud Services\", \"Web Services\", \"Finance\", \"Digitization\", \"JavaScript (Programming Language)\", \"Redis\", \"Angular (Web Framework)\", \"Investing Online\", \"Java (Programming Language)\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Thai', 'Avestan']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.48218799e-01 3.98553580e-01 4.48650986e-01 4.92771119e-02\\n5.86561203e-01 -9.24114138e-02 -1.81912389e-02 2.13432878e-01\\n-3.11015211e-02 -2.82730550e-01 -8.71167332e-02 -2.41187185e-01\\n-1.60075068e-01 2.63471454e-02 8.42027515e-02 5.44797182e-01\\n3.58908772e-01 -4.41736393e-02 -1.85106501e-01 3.56566519e-01\\n2.01369464e-01 1.06348529e-01 -1.47212103e-01 5.85177541e-01\\n3.70589167e-01 -9.21432208e-03 -9.54809040e-02 7.73213729e-02\\n-2.78175861e-01 -2.10277677e-01 4.44818437e-01 1.66574001e-01\\n-2.30424628e-01 -3.42857540e-01 -5.42009436e-02 2.47766063e-01\\n-1.37713790e-01 9.12014991e-02 -3.63584757e-02 2.38984585e-01\\n-4.48171556e-01 -2.06665128e-01 -1.51563566e-02 4.79427585e-03\\n-3.62065941e-01 -2.85158157e-01 -4.18749601e-02 -1.83785513e-01\\n-6.97284192e-02 1.98318213e-02 -4.95001614e-01 2.30875939e-01\\n-2.44028360e-01 -7.81003088e-02 1.72700807e-01 7.11565256e-01\\n1.20346546e-01 -4.75960970e-01 -2.77219176e-01 -3.31929535e-01\\n-9.73411929e-03 -7.70658553e-02 9.59913880e-02 -3.51645738e-01\\n4.43587214e-01 5.81269823e-02 8.64050817e-03 3.14471930e-01\\n-6.24152184e-01 -1.23545900e-01 -3.26808691e-01 7.62146860e-02\\n-5.18489480e-01 1.37981802e-01 -2.31656983e-01 -1.11995570e-01\\n5.82458004e-02 3.27182204e-01 -7.81238079e-02 9.46493540e-03\\n-1.71902090e-01 2.79123157e-01 -1.78799495e-01 1.53056100e-01\\n3.46613854e-01 8.10454339e-02 3.39069694e-01 4.19547588e-01\\n-4.29440647e-01 2.89209902e-01 1.55703187e-01 -1.55438304e-01\\n2.95470566e-01 1.72337323e-01 4.02113765e-01 8.96203890e-02\\n1.02434950e-02 2.02118903e-01 -2.32505575e-01 2.20376879e-01\\n1.24818213e-01 -2.97413260e-01 4.42245826e-02 -5.03518917e-02\\n-1.51268661e-01 -3.21815200e-02 1.58528853e-02 3.42232168e-01\\n-3.80864948e-01 4.69911128e-01 1.36027470e-01 -3.90998647e-02\\n8.15539807e-03 -6.60897374e-01 -1.56784669e-01 -9.19608474e-02\\n9.84376371e-02 2.91764408e-01 1.60102248e-01 1.81160212e-01\\n2.20054179e-01 4.64020483e-02 2.53164917e-01 8.04073334e-01\\n1.00027300e-01 8.80309418e-02 -6.47939891e-02 3.60806972e-01\\n1.37620926e-01 -2.03445137e-01 1.62703991e-01 1.34787992e-01\\n9.12328362e-02 -4.57040146e-02 -3.18734229e-01 2.83341885e-01\\n-3.45635355e-01 -1.95809200e-01 -3.69653285e-01 1.71189681e-01\\n-9.09340233e-02 -4.89659160e-01 4.95815367e-01 3.46038975e-02\\n2.55452782e-01 -1.14884555e-01 5.43094650e-02 -5.92030510e-02\\n-3.21182758e-02 4.19969320e-01 1.90752909e-01 2.62173802e-01\\n-3.94834369e-01 -2.07365006e-01 -1.51785448e-01 3.42864811e-01\\n-3.89101803e-01 1.06257834e-01 -1.62768617e-01 -4.83989157e-02\\n2.40730494e-01 -2.79334243e-02 -4.42757189e-01 1.32584004e-02\\n-1.23388596e-01 -4.92695391e-01 -1.00335635e-01 5.17035306e-01\\n-6.50016144e-02 2.89653510e-01 8.19846243e-02 -2.09943742e-01\\n6.21065497e-01 1.44846827e-01 1.73110217e-01 -2.57308483e-02\\n3.92085224e-01 -1.49697646e-01 3.79890889e-01 2.08728060e-01\\n-7.64512002e-01 4.12786245e-01 -4.84670922e-02 -2.16653824e-01\\n4.00315449e-02 2.16092151e-02 5.67780256e-01 -3.03323656e-01\\n1.91847295e-01 -2.69399613e-01 -2.99743652e-01 -2.85988778e-01\\n-4.77335513e-01 -3.97953689e-02 4.35685426e-01 -1.60055354e-01\\n-3.57707478e-02 1.77616984e-01 -5.76235294e-01 -2.26459458e-01\\n1.89867377e-01 5.93552925e-02 1.18174009e-01 1.76195592e-01\\n-1.14668973e-01 -6.69884205e-01 -3.55615653e-02 -4.65125233e-01\\n-4.69790220e-01 1.59639582e-01 -2.18663603e-01 2.65951008e-01\\n6.10612929e-02 -5.01557365e-02 -1.12219915e-01 2.00595498e-01\\n-3.86140317e-01 3.75286154e-02 3.05101812e-01 8.56878608e-02\\n2.64729649e-01 4.21847310e-03 -3.63778949e-01 4.56878036e-01\\n-1.23133183e-01 5.85348725e-01 3.54784340e-01 -8.20730567e-01\\n6.49418235e-01 2.29462966e-01 2.00786982e-02 -2.97310024e-01\\n5.68724275e-01 -3.76115888e-01 -1.34289294e-01 2.23710686e-02\\n-9.78121534e-02 -1.87982932e-01 3.73589873e-01 -2.44125187e-01\\n-2.52155364e-01 6.43405616e-01 2.22735196e-01 3.53244245e-02\\n2.76568949e-01 -2.57539332e-01 -2.48000592e-01 1.34900197e-01\\n-1.94031492e-01 -2.10890263e-01 -3.71427685e-01 8.93683955e-02\\n-2.63613630e-02 -4.24292058e-01 -1.11222446e-01 -2.65511364e-01\\n-1.84541255e-01 -4.23637390e-01 -9.70244259e-02 3.59126002e-01\\n4.31381911e-02 1.12691946e-01 -3.17985900e-02 -9.39878523e-02\\n-7.75989816e-02 -7.25632191e-01 -1.08629286e-01 -1.07610747e-02\\n2.68381596e-01 3.95362318e-01 1.89266205e-01 -1.19327910e-01\\n1.95062300e-03 4.76269543e-01 -4.65829223e-01 -4.87097830e-01\\n1.95854455e-01 1.24861851e-01 -2.54717290e-01 -1.00619189e-01\\n1.03853524e-01 3.33487928e-01 -1.78627059e-01 9.11173448e-02\\n-2.01208889e-01 -1.53157115e-01 3.03597122e-01 -1.78645581e-01\\n-1.34444550e-01 -9.94038209e-02 -1.43050939e-01 3.35055262e-01\\n-4.28715169e-01 -3.30259442e-01 4.19801176e-01 2.21524328e-01\\n1.62961781e-01 4.35169041e-02 2.25334257e-01 -8.87836292e-02\\n-4.70867842e-01 -3.94105643e-01 1.14511169e-01 2.23363474e-01\\n-6.05367646e-02 1.27507985e-01 -1.49736658e-01 -4.45516825e-01\\n-3.05533051e+00 -1.38409644e-01 2.13237360e-01 -2.34929293e-01\\n1.91944644e-01 -1.44353509e-01 1.60334840e-01 9.75864287e-03\\n-3.91272217e-01 3.45889740e-02 -1.97562575e-01 -2.46304244e-01\\n-1.01654783e-01 4.74873215e-01 2.27129027e-01 -3.14893723e-02\\n-5.10089472e-02 -3.20224911e-01 -5.74638173e-02 4.21410114e-01\\n5.12989461e-02 -7.35222936e-01 -5.72037976e-03 1.13206819e-01\\n-4.44425410e-03 2.48304814e-01 -3.35387409e-01 -7.42366090e-02\\n-2.61703610e-01 -2.53125429e-01 1.66711882e-01 -3.36085111e-01\\n-3.28946888e-01 2.89633304e-01 9.20007005e-02 1.64609566e-01\\n-4.61470075e-02 -1.40568569e-01 -2.21125968e-02 -4.44778174e-01\\n-7.27210194e-02 -6.15527391e-01 5.91016710e-02 -7.36158267e-02\\n6.65827930e-01 -1.07900776e-01 3.32167923e-01 1.32316560e-01\\n1.43739387e-01 5.65683618e-02 8.32529739e-02 4.18113321e-02\\n-2.96979755e-01 -2.54226625e-01 -2.12194487e-01 -1.24556892e-01\\n7.47275054e-01 3.74952137e-01 -1.20264664e-01 -1.68249011e-01\\n2.97062129e-01 -4.07017022e-01 -3.78751248e-01 -3.59144479e-01\\n-2.91794926e-01 -9.07441676e-02 -7.36272514e-01 -5.34812927e-01\\n-2.48999540e-02 -1.26236320e-01 -8.84499773e-02 4.86014307e-01\\n-3.17597836e-01 -2.55623013e-01 -4.09253426e-02 -5.99551499e-01\\n1.05472721e-01 -3.30869615e-01 7.85809755e-02 -1.35623187e-01\\n-3.46546233e-01 -5.52685082e-01 8.35596249e-02 -4.34530079e-02\\n-1.32524058e-01 -1.31616563e-01 -7.98086524e-02 -1.46627337e-01\\n-4.66916353e-01 -6.31423354e-01 3.24593633e-01 -2.19103554e-03\\n3.26784670e-01 1.33535475e-01 3.62624228e-01 1.21088311e-01\\n4.77630377e-01 3.79908830e-02 2.29386881e-01 -3.80961180e-01\\n1.17002010e-01 -3.78509872e-02 6.88001275e-01 -3.42809826e-01\\n5.57689033e-02 6.89790100e-02 -3.78554314e-01 -2.63729207e-02\\n5.06029129e-01 -1.30356029e-01 1.62098408e-02 -1.51157066e-01\\n3.69674355e-01 -4.33142930e-01 -1.45231888e-01 1.44433111e-01\\n7.84119442e-02 8.01163912e-01 8.30799267e-02 -4.21418190e-01\\n-1.59835547e-01 3.78880650e-01 -1.38274133e-01 -1.97049826e-02\\n-4.39930484e-02 6.59006760e-02 -1.18484110e-01 2.80179143e-01\\n-5.76473661e-02 -2.18090177e-01 -2.27682427e-01 -8.45910460e-02\\n-7.49523491e-02 2.75369972e-01 2.63354719e-01 3.31060588e-02\\n-6.78357705e-02 -1.74363062e-01 -8.00834447e-02 1.50713563e-01\\n4.36759442e-01 3.11395049e-01 1.07934177e-01 -4.10279185e-01\\n-1.70939397e-02 2.84063250e-01 -2.47128576e-01 2.52267182e-01\\n-2.62465149e-01 1.51741162e-01 -5.68561137e-01 -1.54357836e-01\\n-9.89752412e-02 -3.96553814e-01 2.52336264e-01 3.65750074e-01\\n1.16656847e-01 -5.62201217e-02 1.40467271e-01 -5.63526452e-01\\n3.84663343e-01 1.90139815e-01 2.27051556e-01 3.62435877e-02\\n-1.68220103e-01 4.01176959e-01 -1.64319396e-01 -3.06378864e-02\\n-6.41250089e-02 6.33643344e-02 -3.25003207e-01 -3.54246676e-01\\n1.96240306e-01 -4.30380017e-01 -1.07096307e-01 5.49983144e-01\\n2.03108534e-01 -1.86462119e-01 -3.56125325e-01 2.23891899e-01\\n8.19689631e-02 -4.33018327e-01 -3.02912861e-01 -2.44257953e-02\\n2.52193272e-01 1.33753181e-01 1.71461210e-01 -4.28854853e-01\\n-1.08332053e-01 -4.49925847e-02 -1.32513896e-01 3.07879448e-01\\n-2.94038514e-03 6.12552352e-02 -2.78922856e-01 -1.88650079e-02\\n4.57771301e-01 -8.95797387e-02 -4.66253571e-02 -2.82406434e-02\\n8.97702128e-02 -3.00138980e-01 -3.29248935e-01 -1.53157592e-01\\n-1.29391477e-01 -2.68031210e-01 6.37774318e-02 1.11470066e-01\\n5.04972599e-03 -3.27505209e-02 -5.60543001e-01 -1.74920797e-01\\n-2.41056994e-01 -1.24145746e-01 9.75929201e-02 -3.24830115e-01\\n-2.55760271e-02 -1.50501281e-01 -4.56583440e-01 2.16030255e-01\\n-1.45748928e-01 -1.20815016e-01 2.05998600e-01 1.40034705e-01\\n-2.36771420e-01 -2.20943242e-01 4.41952199e-02 1.29982337e-01\\n-2.59085864e-01 -3.27841848e-01 -3.23614776e-02 -1.08260620e+00\\n9.13107581e-03 2.77321059e-02 -1.24464788e-01 1.24775872e-01\\n-3.15969321e-03 -5.71114302e-01 9.34630912e-03 -4.89095926e-01\\n-5.16364276e-02 8.43395889e-02 -2.57762492e-01 -2.05970734e-01\\n2.54809260e-01 1.19345682e-02 -1.90052554e-01 4.28229332e-01\\n-3.23110253e-01 3.22651535e-01 1.69477202e-02 3.99444774e-02\\n-8.49352106e-02 -9.15133953e-02 4.17148396e-02 -1.56883776e-01\\n-3.96474242e-01 -2.88039535e-01 -2.55944729e-01 -2.50747651e-01\\n-6.47488013e-02 -2.73693413e-01 -1.48484394e-01 5.09815440e-02\\n3.75856310e-01 1.78660959e-01 -4.05751429e-02 -4.11744528e-02\\n1.52921498e-01 -3.85432184e-01 5.24527729e-02 -3.76853019e-01\\n-6.18514791e-02 -9.20767486e-02 2.38051116e-01 4.77138013e-02\\n1.32714242e-01 -1.31111786e-01 5.07502496e-01 -3.11679304e-01\\n-3.97695452e-01 -5.93728386e-03 1.45246208e-01 -1.75360873e-01\\n2.39011943e-01 -3.81171763e-01 1.00920163e-01 3.12511891e-01\\n-5.32836989e-02 -2.55534193e-03 2.51616150e-01 -1.67949617e-01\\n-1.73039481e-01 1.47126168e-01 -5.49127221e-01 1.09646775e-01\\n8.29823911e-01 3.63678634e-01 2.05521330e-01 -3.15131024e-02\\n1.24087632e-01 2.40105942e-01 4.56366897e-01 2.10224576e-02\\n4.20221984e-02 3.55079472e-01 1.44637078e-01 -5.49678683e-01\\n-1.77808508e-01 -1.46694183e-01 -1.06778122e-01 -3.05673063e-01\\n5.80331326e-01 4.10476595e-01 -3.09903294e-01 -3.83349091e-01\\n-1.58590972e-01 -1.57016098e-01 4.65296745e-01 1.44532174e-01\\n-6.04020245e-02 -5.74699305e-02 5.58839619e-01 -1.06076919e-01\\n1.29581690e-01 4.40884501e-01 -2.09942475e-01 -3.00135374e-01\\n-1.31324410e-01 2.63447821e-01 1.06570549e-01 4.96744245e-01\\n-1.88577473e-01 2.12407470e-01 -1.25046611e-01 -1.40971728e-02\\n-1.11003034e-02 1.34810675e-02 3.59494269e-01 -6.52129669e-03\\n2.55853683e-01 8.00772086e-02 3.41687351e-01 5.48299015e-01\\n1.33964658e-01 4.86519963e-01 2.53216684e-01 -4.89857607e-02\\n2.12153047e-01 6.12145722e-01 2.42480785e-01 1.14228070e-01\\n4.25172113e-02 7.16748014e-02 1.73346266e-01 -7.89106935e-02\\n5.16411722e-01 2.28508353e-01 1.48324519e-01 9.01277006e-01\\n2.98245817e-01 4.73935395e-01 7.33346760e-01 -6.93733871e-01\\n-2.71179616e-01 1.12468973e-01 5.91485083e-01 -3.18216056e-01\\n-1.07747689e-01 1.27809122e-01 -2.81526208e-01 1.16854824e-01\\n-5.81521630e-01 -1.85659274e-01 7.10590929e-02 -1.15082378e-03\\n-4.12404835e-02 -5.12208305e-02 -1.80502504e-01 1.44900635e-01\\n-2.21793532e-01 -2.67930388e-01 -2.69331306e-01 -2.38338247e-01\\n-2.84200698e-01 -7.07034245e-02 -7.44157284e-02 4.65691611e-02\\n-2.22702324e-01 -2.88235992e-01 2.86888164e-02 -5.27813099e-02\\n2.73094416e-01 -1.46487460e-01 -1.33303642e-01 -2.96027660e-02\\n2.74461895e-01 2.42211998e-01 5.92976689e-01 -1.63244456e-01\\n1.95598692e-01 -9.32432488e-02 -2.94047624e-01 6.09675758e-02\\n-1.46289011e-02 3.18749738e-03 1.63780943e-01 5.71180463e-01\\n-1.97651550e-01 -1.15714185e-01 3.30145173e-02 2.24794835e-01\\n-4.33596015e-01 -1.29608408e-01 -1.64169043e-01 1.35247618e-01\\n-7.06122518e-02 1.41145542e-01 -1.86564386e-01 1.23923823e-01\\n-1.47562116e-01 -6.18580937e-01 2.90569574e-01 -1.85182884e-01\\n-2.35523343e-01 2.16148734e-01 3.80151331e-01 2.14591846e-01\\n-1.53715521e-01 -9.31960195e-02 -6.97437450e-02 3.13765854e-01\\n-9.06951074e-03 4.08695042e-01 2.25734487e-02 -3.44608247e-01\\n-3.71220827e-01 2.99377680e-01 -1.99492201e-01 1.23632684e-01\\n-1.25177056e-01 2.78650731e-01 -1.37687877e-01 1.80399463e-01\\n3.09673280e-01 9.43414643e-02 -3.25282633e-01 -2.24250883e-01\\n-1.71490163e-01 -1.06045946e-01 6.25646263e-02 5.91043532e-02\\n8.26536044e-02 -3.04452181e-01 -1.15763575e-01 -3.41127813e-01\\n9.68450028e-03 -3.30032051e-01 -1.50619954e-01 9.94025096e-02]]',\n", + " 'job_description': 'Job Informationen Essential Duties and Responsibilities: - Identifies data sources, integrates multiple sources or types of data, and applies expertise within a data source to develop methods to compensate for limitations and extend the applicability of the data - Applying (and creating when necessary) the appropriate methods, algorithms, and tools, and statistically validating the results against biases and errors - Uses broad knowledge of innovative methods, algorithms, and tools from the scientific literature and applies his or her own analysis of scalability and applicability to the formulated problem - Ability to interpret data and communicate in a clear and lucid way to a wide variety of audience - Validates, monitors, and drives continuous improvement to methods, and proposes enhancements to data sources that improve usability and results Required Skills: - B.S. and/or M.S. (Ph.D. Preferred) in Computer Science, Statistics, Operations Research or similar quantitative field - 3 years plus experience of applying statistical modeling, ML and data mining algorithms to real world problems - Expert in one or more statistical software like R, SAS, Statistica etc. - Expert in one or more scripting languages like Perl, Python, or SQL - Solid foundation of statistical modeling and machine learning algorithms and experimental design - Good knowledge and experience in using ensemble methods - Experience in pattern and/or image recognition a plus - Deep understanding of big data systems including map reduce technologies like Hadoop and Spark - Knowledge of Google cloud and tools - Knowledge of data visualization tools like Tableau, etc. Fluent in English and German Benötigte Skills Englisch CLOUD Google Analytics Perl Python SQL Machine Learning SAS',\n", + " 'soft_skills': '[\"Communications\", \"Innovation\", \"Sourcing\", \"Integration\"]',\n", + " 'hard_skills': '[\"Tableau (Business Intelligence Software)\", \"Tooling\", \"SAS Learning Edition\", \"Google Cloud Messaging\", \"Google Analytics\", \"pH Meters\", \"Computer Science\", \"Biasing\", \"Statistics\", \"Perl (Programming Language)\", \"SAS (Software)\", \"Usability\", \"Scientific Literature\", \"Statistical Software\", \"Python (Programming Language)\", \"M (Programming Language)\", \"Operations Research\", \"Limiter\", \"Statistical Modeling\", \"Data Visualization\", \"Machine Learning Methods\", \"Ensemble Methods\", \"R (Programming Language)\", \"Machine Learning Algorithms\", \"Scalability\", \"Continuous Improvement Process\", \"Google Cloud\", \"Big Data\", \"Applied Statistics\", \"Java Data Mining\", \"Adapter Scripting Language\", \"Imaging\", \"Validations\", \"Algorithms\", \"Mapping\", \"STATISTICA\", \"Experimental Design\", \"SQL (Programming Language)\", \"B (Programming Language)\", \"Source Data\"]',\n", + " 'languages': \"['English', 'Hausa', 'Kalaallisut', 'Panjabi', 'Bislama']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.63895744e-01 3.05287838e-01 4.17255253e-01 -3.76568027e-02\\n5.28621137e-01 -7.65151009e-02 -3.94121483e-02 2.19641954e-01\\n-2.95179654e-02 -2.23883778e-01 -1.51649013e-01 -1.48797706e-01\\n-8.57051313e-02 -6.46759244e-03 1.12375326e-01 3.74679089e-01\\n3.46432894e-01 5.21362051e-02 -1.31393820e-01 3.36848080e-01\\n1.16127342e-01 -8.61443952e-03 -2.28062682e-02 6.55917227e-01\\n3.78813326e-01 -4.45187241e-02 -1.12813048e-01 4.31255959e-02\\n-2.92736202e-01 -2.29881883e-01 3.32956433e-01 2.05876455e-02\\n-1.17689386e-01 -3.10847253e-01 9.01493877e-02 1.32867202e-01\\n-2.04548344e-01 -6.58926591e-02 -7.64697194e-02 5.48099019e-02\\n-3.25427055e-01 -2.13639870e-01 -4.98721041e-02 6.59257472e-02\\n-2.92773217e-01 -2.38441482e-01 6.97647557e-02 -2.29309313e-02\\n-4.44065854e-02 4.49392311e-02 -6.94523096e-01 3.94211501e-01\\n-2.11201966e-01 -1.72699600e-01 3.07041913e-01 5.79800665e-01\\n3.80182080e-02 -4.99353051e-01 -3.79826933e-01 -3.42782229e-01\\n6.12392463e-02 -2.84051243e-02 7.00938106e-02 -2.23967344e-01\\n3.45741212e-01 -8.35837945e-02 -6.28677458e-02 3.76448661e-01\\n-7.67838299e-01 -1.42360136e-01 -2.94134647e-01 5.10785021e-02\\n-5.15491605e-01 -4.72733192e-03 -3.41535121e-01 -1.10516600e-01\\n-1.47394072e-02 4.33841139e-01 -6.99907765e-02 6.40637875e-02\\n-1.91618785e-01 1.73135161e-01 -1.34739578e-01 2.13118866e-01\\n3.28246981e-01 1.43635184e-01 2.47165665e-01 2.99496025e-01\\n-3.23613465e-01 3.74847889e-01 2.30412439e-01 -2.43019536e-01\\n1.61144406e-01 2.86704022e-02 4.04961139e-01 1.72741249e-01\\n5.85130937e-02 2.04558581e-01 -6.81432560e-02 1.46372616e-01\\n1.71874493e-01 -2.77756691e-01 3.65511514e-02 -7.64985457e-02\\n-7.61290044e-02 6.90753013e-03 1.29842144e-02 2.21398845e-01\\n-3.78570020e-01 3.08791131e-01 1.05466813e-01 -2.63043523e-01\\n-4.14887927e-02 -5.37692606e-01 -9.07029435e-02 -1.23393901e-01\\n3.54427136e-02 2.41944373e-01 2.27564380e-01 2.22049668e-01\\n3.16384107e-01 -3.68466564e-02 1.74881011e-01 8.72597635e-01\\n-7.93836787e-02 -3.44255157e-02 -2.03934908e-01 3.73567700e-01\\n2.07029521e-01 -2.44214207e-01 1.86884895e-01 2.63759255e-01\\n5.77620454e-02 -3.95833924e-02 -2.93054491e-01 2.45021075e-01\\n-1.63934618e-01 -1.80457577e-01 -2.48366073e-01 1.77047864e-01\\n-1.92283034e-01 -4.98789072e-01 5.86059570e-01 7.36988708e-02\\n1.90691978e-01 -1.58323839e-01 8.22820142e-03 -1.20286971e-01\\n-2.95315143e-02 3.31389844e-01 3.46170962e-02 2.40710542e-01\\n-2.48225883e-01 -2.64948934e-01 -1.24504738e-01 3.62367243e-01\\n-1.34901151e-01 8.11424330e-02 -1.73935503e-01 -1.34432763e-01\\n2.81587362e-01 1.28346056e-01 -4.09630984e-01 1.96921125e-01\\n6.16104400e-04 -3.14211786e-01 -7.80354589e-02 3.03575128e-01\\n-1.03982456e-01 2.04521537e-01 -3.40906456e-02 -2.07247987e-01\\n4.78192300e-01 2.12049484e-01 2.13175580e-01 5.33061549e-02\\n1.77898586e-01 -1.81223139e-01 3.04820031e-01 8.95333216e-02\\n-7.15633154e-01 4.30286974e-01 1.37520032e-02 -3.16588908e-01\\n1.28661111e-01 3.92076299e-02 3.23912770e-01 -4.09381837e-01\\n2.42886897e-02 -1.78808570e-01 -4.27401483e-01 -3.63072664e-01\\n-1.78385392e-01 -4.92088795e-02 3.90573561e-01 -3.67095411e-01\\n-4.34985012e-02 2.13553622e-01 -5.68534076e-01 -2.43125588e-01\\n9.54628065e-02 1.21142007e-01 9.30622816e-02 8.86082277e-02\\n-8.35864469e-02 -5.66973627e-01 8.73835236e-02 -4.62185532e-01\\n-4.08946723e-01 8.35794508e-02 -2.68532187e-01 1.41610295e-01\\n-1.18781114e-02 1.31553197e-02 -1.04655676e-01 1.54358745e-01\\n-3.98262084e-01 -9.62809194e-03 1.98483139e-01 8.36385041e-02\\n2.71697819e-01 1.44144706e-02 -3.17770332e-01 5.37018120e-01\\n-1.99240163e-01 4.90726560e-01 2.31304854e-01 -8.60578835e-01\\n5.21407068e-01 3.43164414e-01 2.22460739e-02 -2.33426064e-01\\n5.13758183e-01 -4.97482747e-01 -6.06347360e-02 7.87461847e-02\\n-2.08925754e-01 -2.40486860e-01 2.25190818e-01 -2.07355395e-01\\n-2.13167191e-01 6.52321041e-01 9.79803875e-02 7.58459866e-02\\n2.71201223e-01 -2.84002364e-01 -1.53032288e-01 2.37227022e-03\\n-1.02579683e-01 -3.13373119e-01 -4.47354853e-01 1.47278711e-01\\n-8.71924534e-02 -4.49230105e-01 -7.66515210e-02 -3.57810706e-01\\n-2.21492305e-01 -3.44946384e-01 -2.27335617e-01 3.60882729e-01\\n1.85643122e-01 1.77990466e-01 -6.16993643e-02 -5.14491051e-02\\n-1.02851771e-01 -5.54654419e-01 -8.66867602e-02 3.32162948e-03\\n4.31876391e-01 3.62463474e-01 9.45574194e-02 -8.42925608e-02\\n8.26074183e-03 4.65907842e-01 -3.91740888e-01 -3.86247605e-01\\n1.07361972e-01 1.00068875e-01 -4.90035005e-02 -9.85731781e-02\\n3.26036960e-02 3.74385118e-01 -2.08796039e-01 1.12648373e-02\\n-4.57389727e-02 -3.89988311e-02 3.71879041e-01 -7.86995143e-02\\n-7.84889907e-02 -1.51575401e-01 -8.80367085e-02 3.00601274e-01\\n-4.99792159e-01 -2.49258369e-01 5.60377479e-01 2.93808132e-01\\n1.43041015e-01 2.06354499e-01 3.31196755e-01 -3.49770598e-02\\n-2.06297949e-01 -2.90130764e-01 2.12465703e-01 1.66993886e-01\\n7.31567144e-02 6.01084828e-02 -1.06181867e-01 -5.50977409e-01\\n-3.15280676e+00 -2.17105091e-01 1.45241916e-01 -3.43216449e-01\\n2.67708004e-01 -1.54985771e-01 1.30030751e-01 6.69704098e-03\\n-3.34034979e-01 4.52787690e-02 -2.20231265e-01 -1.74990818e-01\\n1.28831165e-02 2.72709757e-01 1.94780767e-01 1.52164742e-01\\n8.37561414e-02 -2.68050253e-01 3.87446918e-02 3.70353371e-01\\n-1.19925745e-01 -7.14178562e-01 1.80286601e-01 9.42177139e-03\\n7.70942420e-02 2.23137647e-01 -4.02056843e-01 -1.43472865e-01\\n-2.57242143e-01 -2.31587946e-01 1.06009997e-01 -2.90270150e-01\\n-1.58509761e-01 3.49024445e-01 1.61613375e-01 -7.89339170e-02\\n2.04098672e-02 -3.20250034e-01 -3.94122005e-02 -5.13191283e-01\\n4.91619073e-02 -6.12865329e-01 2.81341821e-02 1.23053333e-02\\n6.60218775e-01 -2.08736971e-01 1.86504304e-01 1.62982315e-01\\n2.01037467e-01 1.79964364e-01 8.16345587e-02 3.88069041e-02\\n-3.61902803e-01 -3.67877930e-01 -4.46006544e-02 -1.96659148e-01\\n4.78486240e-01 4.24187601e-01 -1.86090052e-01 9.37778577e-02\\n4.69847657e-02 -2.82542944e-01 -3.41365665e-01 -4.71666187e-01\\n-2.57800221e-01 -9.94523838e-02 -6.63240254e-01 -4.74724710e-01\\n-3.34360376e-02 -8.48285183e-02 -6.95694089e-02 6.08738005e-01\\n-2.38730520e-01 -2.89296806e-01 3.93362306e-02 -6.06229424e-01\\n2.48990953e-01 -2.68990010e-01 8.68642852e-02 -1.86798245e-01\\n-2.09795952e-01 -5.24125874e-01 1.87672168e-01 -1.01832181e-01\\n-8.64565447e-02 -6.10309914e-02 -7.68753439e-02 -2.43118674e-01\\n-3.94441873e-01 -5.15174568e-01 4.78138685e-01 2.48377845e-02\\n4.03370976e-01 7.15769082e-02 3.49179000e-01 1.69358730e-01\\n3.80450875e-01 -1.19852625e-01 4.74263206e-02 -3.51269901e-01\\n6.56347424e-02 8.93278494e-02 5.52273154e-01 -2.60145485e-01\\n9.12769884e-02 9.63393226e-02 -2.64770716e-01 1.72053911e-02\\n3.87868732e-01 -9.01071820e-03 1.18194424e-01 -1.22112446e-01\\n3.10929030e-01 -5.40421784e-01 -2.32235715e-01 2.19883710e-01\\n-3.16703762e-03 6.62214875e-01 1.26162380e-01 -3.72878611e-01\\n-1.55667946e-01 3.66002083e-01 -2.37014517e-02 -1.95553929e-01\\n-1.00393102e-01 1.47064060e-01 -2.01775491e-01 1.86912656e-01\\n8.10760446e-03 -1.57243863e-01 -3.81503582e-01 -1.32620871e-01\\n-5.38106374e-02 2.58042812e-01 2.85235167e-01 7.45571554e-02\\n-6.33479655e-02 -2.10422188e-01 -6.14981055e-02 1.82702795e-01\\n3.25473219e-01 2.87844449e-01 1.48778602e-01 -3.18571717e-01\\n-8.81954376e-03 2.23850548e-01 -2.77969778e-01 3.02691549e-01\\n-1.20585993e-01 8.25181231e-02 -5.20129144e-01 -1.51294768e-01\\n-1.95990533e-01 -3.02435964e-01 1.57995820e-01 2.82610416e-01\\n1.32528737e-01 -2.70623099e-02 4.25996259e-02 -4.81244117e-01\\n3.66474658e-01 4.54892451e-03 8.74662772e-02 7.62791708e-02\\n-1.59706883e-02 5.45949697e-01 -4.72820550e-02 -4.68002595e-02\\n-1.23226650e-01 5.15441597e-02 -2.26655662e-01 -3.88403416e-01\\n1.64561361e-01 -4.01982278e-01 -1.35499001e-01 3.82584751e-01\\n1.69454738e-01 -1.51394516e-01 -1.97674498e-01 2.79219210e-01\\n1.02385329e-02 -2.75527865e-01 -2.17845753e-01 4.61275689e-03\\n2.75441915e-01 1.64858520e-01 1.96608081e-01 -4.41324174e-01\\n-9.04914960e-02 -2.05356684e-02 -1.79956127e-02 3.82876396e-01\\n1.85763419e-01 8.98169875e-02 -3.96185070e-02 -2.08418339e-01\\n5.07777631e-01 3.87730310e-03 -9.00021419e-02 5.49369343e-02\\n1.35245204e-01 -2.84267187e-01 -3.96683514e-01 -1.30731270e-01\\n-4.15769406e-02 -2.53024131e-01 3.79143991e-02 8.29394162e-02\\n8.60111713e-02 -2.99817584e-02 -5.62206268e-01 -1.81235284e-01\\n-2.79934794e-01 4.84399013e-02 1.88704412e-02 -5.26448071e-01\\n5.70087396e-02 -7.21805990e-02 -5.93094409e-01 2.50572085e-01\\n-1.60552874e-01 3.88097689e-02 1.72773395e-02 8.77578333e-02\\n-2.80294478e-01 -8.38516355e-02 1.23002864e-01 1.24726802e-01\\n-2.64754653e-01 -1.88302979e-01 2.68531349e-02 -1.05079353e+00\\n1.14569291e-01 7.96799213e-02 -7.40502551e-02 9.06327143e-02\\n7.71728531e-02 -6.09483957e-01 9.97033566e-02 -4.07570213e-01\\n9.42799151e-02 1.04335845e-01 -2.28163049e-01 -3.07803124e-01\\n1.88984752e-01 -6.58035930e-03 -2.47501269e-01 3.78270686e-01\\n-4.39065218e-01 3.23343188e-01 5.11868857e-02 1.36629149e-01\\n7.64637962e-02 -2.43811727e-01 1.11777239e-01 -2.46417195e-01\\n-4.40238535e-01 -2.16521025e-01 -2.93592989e-01 -2.55810440e-01\\n6.14849143e-02 -2.84920871e-01 -7.29003400e-02 4.45559155e-03\\n3.93786371e-01 1.23794019e-01 -1.82809621e-01 -1.93216920e-01\\n1.20383285e-01 -4.08869743e-01 7.23522678e-02 -2.76056677e-01\\n-1.82382911e-02 -9.72226039e-02 1.69590786e-01 -1.48465466e-02\\n2.05771565e-01 -2.79238164e-01 3.87805730e-01 -3.44626725e-01\\n-3.58865231e-01 -1.08502872e-01 6.18053079e-02 -2.63589714e-02\\n2.88811564e-01 -4.86190289e-01 5.43416552e-02 2.88795173e-01\\n1.25032544e-01 1.14335269e-01 3.04251671e-01 -1.50564626e-01\\n-1.38876140e-01 2.15690255e-01 -5.84826350e-01 8.77067372e-02\\n8.05995286e-01 2.05583364e-01 4.27641235e-02 1.55382454e-01\\n1.99689463e-01 2.07493111e-01 4.03847069e-01 -9.91983637e-02\\n-6.53214753e-03 2.96378285e-01 1.14673808e-01 -6.04148269e-01\\n-1.89301372e-01 -1.91636860e-01 -2.12933108e-01 -2.97016889e-01\\n5.72949111e-01 2.82916009e-01 -3.46922129e-01 -3.68151218e-01\\n-1.04234405e-01 -1.08931549e-01 2.91695416e-01 -3.54174227e-02\\n-2.19749212e-02 -1.35175511e-01 5.01668572e-01 -5.00252508e-02\\n2.29391143e-01 5.36705434e-01 1.11739384e-02 -2.83394635e-01\\n-1.24921121e-01 1.23811081e-01 1.20361738e-01 4.75744247e-01\\n-1.42359674e-01 2.27318332e-01 -3.57865021e-02 1.83223739e-01\\n-1.25249460e-01 1.84688773e-02 2.06565827e-01 5.77595010e-02\\n1.73738971e-01 2.74043605e-02 3.49183321e-01 4.80053306e-01\\n2.03826666e-01 4.58892345e-01 3.17585677e-01 3.10171284e-02\\n3.54271144e-01 6.10677183e-01 3.63353640e-01 1.26161933e-01\\n1.11672506e-02 1.26187563e-01 2.19631679e-02 -1.56424358e-01\\n3.04473013e-01 3.58155161e-01 1.09054707e-01 8.40945244e-01\\n3.44411939e-01 4.08260345e-01 7.58903742e-01 -6.54143989e-01\\n-3.65426391e-01 6.55385330e-02 5.59831083e-01 -3.92442971e-01\\n-3.61497737e-02 6.17549419e-02 -2.42685810e-01 3.74237269e-01\\n-5.45959651e-01 -9.56491306e-02 1.86301284e-02 -1.25929415e-01\\n4.40866649e-02 2.24842243e-02 -1.27773032e-01 6.39845207e-02\\n-2.52536893e-01 -2.80733317e-01 -3.51040840e-01 -1.90720007e-01\\n-3.05693060e-01 -7.37408251e-02 -4.61046100e-02 -1.13667138e-01\\n-1.62264794e-01 -2.59654522e-01 -3.60225439e-02 -3.50322537e-02\\n3.55278462e-01 -1.55716419e-01 -1.34486809e-01 -1.30861849e-01\\n2.32293069e-01 2.49595761e-01 6.29372776e-01 -9.78497341e-02\\n1.67412251e-01 -1.14967301e-01 -2.62375385e-01 3.94959114e-02\\n6.51534125e-02 9.26111788e-02 8.80367979e-02 4.91617799e-01\\n-3.58278543e-01 -1.79087222e-01 2.01314375e-01 2.06708550e-01\\n-3.68043691e-01 -4.47719395e-02 -2.31344923e-02 9.80158821e-02\\n6.27909601e-02 1.88289165e-01 -2.35388532e-01 3.75367962e-02\\n-1.87578842e-01 -5.59995651e-01 4.87147331e-01 -2.19631001e-01\\n-1.67803437e-01 1.48798242e-01 3.74096841e-01 2.60262907e-01\\n-2.44368047e-01 -3.98179553e-02 -9.58795771e-02 2.92218238e-01\\n6.83486983e-02 3.16484958e-01 -2.13872001e-01 -1.94104120e-01\\n-2.46031314e-01 2.63403237e-01 -1.31202891e-01 1.53585240e-01\\n-8.08748603e-02 3.18634480e-01 8.68555009e-02 1.12147957e-01\\n2.56462187e-01 5.19505069e-02 -3.17834318e-01 -3.21364641e-01\\n-2.23731980e-01 -1.84150010e-01 8.01416188e-02 -5.90254404e-02\\n1.77383751e-01 -2.34694585e-01 -1.66571334e-01 -2.87593514e-01\\n-1.76571652e-01 -3.63194585e-01 -1.20753400e-01 1.12032993e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: You will be expected to lead projects in development and deployment of production-ready applications using machine learning algorithms, such as banking product recommender systems, payment fraud detection, and quantitative decision-support tools and services. Typical projects include the full data science lifecycle, including data extraction from transactional sources and transformation for analytical purpose. You will provide hands-on leadership to projects working with large datasets and extensive timeseries such as financial market data, transactions data and client interaction profiles, employing various statistical and numerical methods to analyse both structured and unstructured data to develop predictive models. As our technology is generally delivered as packaged software or as a service in the cloud, it is important that you are experienced in and can lead others hands-on to perform the software development life-cycle professionally and efficiently. Taking a leading role in consulting to clients is also a part of the job description. You are therefore expected to possess strong communication skills in addition to excellent technical capabilities. Requirements: - University degree in computer science, engineering or comparable numerical fields - Passion for applying technology to solve business problems - Experienced in the financial services industry in either a quantitative or technology role - Experience in project leadership & coordination, client communication (including senior management levels), and successful project delivery - Experience in developing production-ready machine learning applications and setting up data science pipelines - Solid experience with Linux and software collaboration tools: continuous integration (i.e. Jenkins or CircleCI), source control (git, svn), issue management (Jira, Confluence) - Knowledge of multiple programming languages is beneficial (Python, R, Java, Scala) - Substantial experience in applying modern big data tools for scalability and distributed computing (Apache Spark, PySpark, Dask) and data stores (SQL or NoSQL), such as MongoDB and Neo4j - Strong communication skills in English and the ability to make coherent technical arguments; working proficiency in German is a must - Eligible to live and work in Switzerland Benötigte Skills Banken / Finanzgesellschaften Projektleitung Jira Linux Python Python R JAVA Scala Apache SQL NoSQL Englisch',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Leadership\", \"Professionalism\", \"Coordinating\", \"Management\", \"Communications\", \"Sourcing\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Apache Spark\", \"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"KM Programming Language\", \"Circleci\", \"Software Development Life Cycle\", \"Interactivity\", \"Collaborative Software\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Collaboration Tools\", \"Decision Support Systems\", \"Continuous Integration\", \"Recommender Systems\", \"Financial Services\", \"Applied Business Technologies\", \"Distributed Computing\", \"Scala (Programming Language)\", \"Pyspark\", \"Service Level Management\", \"Python (Programming Language)\", \"Linux\", \"Data Extraction\", \"MongoDB\", \"Transaction Data\", \"E (Programming Language)\", \"Source (Game Engine)\", \"Dataset\", \"Pipelining\", \"Financial Market\", \"Machine Learning Methods\", \"Unstructured Data\", \"Data Science\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Data Store\", \"Transformation (Genetics)\", \"Atlassian Confluence\", \"Banking\", \"Software Development\", \"Algorithms\", \"Additives\", \"Service Industries\", \"Git Flow\", \"Neo4j\", \"Amazon Data Pipeline\", \"Market Data\", \"JIRA Studio\", \"Java (Programming Language)\", \"Job Descriptions\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Nyanja']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software engineer c++',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.vizrt.com',\n", + " 'jobdescription_embedded': '[[-1.77046180e-01 2.56629318e-01 5.47789216e-01 -8.72845799e-02\\n4.58264351e-01 -2.27148786e-01 -1.52273700e-02 5.48293829e-01\\n-3.73170003e-02 -4.45374846e-01 -1.15332536e-01 -3.01676482e-01\\n-1.57965366e-02 2.03475595e-01 1.91747665e-01 4.31744605e-01\\n2.58077502e-01 1.52363688e-01 -2.36010253e-01 2.54429728e-01\\n1.31916910e-01 -1.83828831e-01 1.88189387e-01 8.45517635e-01\\n4.67096806e-01 6.94048032e-03 -1.09823048e-01 5.81530668e-02\\n-2.49117091e-01 -2.42752522e-01 3.74561489e-01 -6.22206405e-02\\n-1.29853949e-01 -3.94354820e-01 2.59468667e-02 1.18106231e-01\\n-1.60450161e-01 -1.31783709e-02 -1.13779105e-01 1.82403326e-01\\n-5.24675965e-01 -2.28636056e-01 -8.50881189e-02 -1.14142271e-02\\n-1.70233503e-01 -3.60536098e-01 5.94463870e-02 -9.05609131e-03\\n2.26681739e-01 2.64729299e-02 -4.40008730e-01 3.69302839e-01\\n-2.09974661e-01 -2.15674937e-01 2.49322340e-01 6.96374059e-01\\n-1.02219142e-01 -3.99488777e-01 -5.91673493e-01 -3.31744850e-01\\n1.15496323e-01 -6.04107827e-02 -3.78138535e-02 -3.44483733e-01\\n2.84924984e-01 6.57527223e-02 -2.24144179e-02 2.32287645e-01\\n-7.85692036e-01 -1.38006657e-01 -2.30577648e-01 -6.17521256e-02\\n-2.98465699e-01 -1.26506671e-01 -3.18970948e-01 -1.23289905e-01\\n-8.10942128e-02 3.84754539e-01 2.91590672e-02 2.34240899e-04\\n-4.16664630e-02 3.21706593e-01 -2.17254192e-01 4.56492394e-01\\n5.81679344e-02 3.48595887e-01 2.09566861e-01 2.89278805e-01\\n-2.85338819e-01 4.02124882e-01 1.07924327e-01 -4.42762673e-01\\n2.12377995e-01 1.57186806e-01 4.76472825e-01 -1.28068358e-01\\n1.95794418e-01 1.26100004e-01 -3.35816324e-01 3.35960716e-01\\n3.23185265e-01 -2.58979440e-01 1.13196701e-01 -1.28594533e-01\\n3.80196795e-02 7.60952337e-03 7.24857002e-02 2.14933380e-01\\n-3.44083726e-01 5.26543379e-01 5.92262186e-02 -2.51241088e-01\\n-6.71639889e-02 -5.83147705e-01 -1.72453374e-01 3.71607840e-02\\n-1.59314144e-02 2.06628084e-01 1.10697925e-01 2.25967705e-01\\n2.21368283e-01 -1.28978789e-01 1.80654988e-01 9.16546583e-01\\n-1.67754069e-01 1.07809659e-02 -2.71616310e-01 3.84983778e-01\\n5.61602339e-02 -3.12832773e-01 2.51790136e-01 1.70036837e-01\\n3.25886458e-02 5.23857959e-03 -2.32835650e-01 3.56133640e-01\\n-1.44900009e-02 -3.81758213e-01 -3.80399823e-01 2.76504576e-01\\n-1.68243386e-02 -4.69684482e-01 5.76696873e-01 6.13354668e-02\\n8.42552930e-02 -1.67710036e-01 -1.03885412e-01 -4.56302240e-02\\n-7.81441852e-03 1.00583486e-01 1.02067843e-01 1.03062149e-02\\n-3.35084528e-01 -2.77626872e-01 -2.62408018e-01 2.03954488e-01\\n-4.10650134e-01 1.63495004e-01 -1.10919878e-01 -1.20083325e-01\\n2.41403490e-01 -1.38464998e-02 -3.31671089e-01 3.23547781e-01\\n-1.68942481e-01 5.28685115e-02 -2.24709697e-02 4.02060032e-01\\n-3.88736844e-01 2.57957637e-01 -8.72027725e-02 -3.69510427e-02\\n5.78941643e-01 2.15429366e-02 1.15012199e-01 -5.44378161e-02\\n3.27076495e-01 -4.52025086e-02 1.42302126e-01 8.08842704e-02\\n-6.74037218e-01 2.17647582e-01 -8.76648054e-02 -1.66929796e-01\\n2.10992247e-01 -2.34052837e-01 2.93857485e-01 -2.68756211e-01\\n-1.43920109e-02 -1.30767584e-01 -2.87037104e-01 -2.91035414e-01\\n-2.75551558e-01 -1.42262906e-01 4.05154943e-01 -3.93167049e-01\\n-9.94281545e-02 3.30177605e-01 -4.71868187e-01 1.68837793e-02\\n2.13203251e-01 3.13118696e-01 1.39120951e-01 1.59476340e-01\\n-1.97395086e-01 -4.99492645e-01 1.28882065e-01 -2.97129810e-01\\n-2.66290724e-01 1.72522768e-01 -3.02472830e-01 3.62098277e-01\\n1.27843127e-01 -1.88607648e-02 -1.65458038e-01 1.69863150e-01\\n-2.14063153e-01 5.32847196e-02 7.53662661e-02 -6.52361214e-02\\n2.14508653e-01 8.74546617e-02 -3.30292225e-01 4.38094378e-01\\n-1.40505254e-01 6.02314830e-01 6.96143731e-02 -9.32134628e-01\\n4.58917916e-01 2.90116131e-01 -6.25308454e-02 -2.59224534e-01\\n6.63182139e-01 -3.05426598e-01 -2.07321733e-01 1.01229087e-01\\n-4.29677665e-01 -3.41619730e-01 1.34409532e-01 -1.89363539e-01\\n-1.71838224e-01 4.84658062e-01 1.81578040e-01 1.28144443e-01\\n3.08547437e-01 -1.35448188e-01 -1.06104434e-01 8.09366927e-02\\n-1.78817958e-01 -3.36376280e-01 -4.52938497e-01 -1.34847566e-01\\n-8.35239887e-02 -4.27322686e-01 -1.61685497e-01 -3.27366531e-01\\n-2.73520052e-01 -4.40966070e-01 -7.42473230e-02 6.31120503e-02\\n5.29323578e-01 1.82593137e-01 -2.25607492e-02 7.26778433e-02\\n-9.47892964e-02 -5.88080287e-01 -3.37037668e-02 8.22199881e-02\\n2.75496960e-01 3.38718951e-01 2.81987973e-02 1.17040582e-01\\n4.44842130e-02 7.26986647e-01 -1.56654805e-01 -1.37062058e-01\\n2.42328942e-01 1.05221167e-01 7.23317191e-02 -2.24393606e-01\\n1.12925127e-01 2.84797609e-01 -3.80705178e-01 2.16326967e-01\\n-1.23477742e-01 -6.66873306e-02 4.42710280e-01 1.98694225e-02\\n-2.97763765e-01 -1.94848582e-01 -1.11668698e-01 5.56276515e-02\\n-5.97747445e-01 -2.80714124e-01 7.03813791e-01 7.15757087e-02\\n1.14310548e-01 8.65345448e-02 7.49695152e-02 -6.81588799e-02\\n-2.15446979e-01 -4.99996692e-02 2.05205262e-01 -3.15017439e-02\\n1.34827286e-01 1.67425752e-01 -2.54694838e-03 -6.44005001e-01\\n-3.14929295e+00 -8.17546546e-02 9.31493714e-02 -2.02253237e-01\\n1.52211756e-01 -1.86740726e-01 -8.76563564e-02 -8.05426091e-02\\n-3.43034834e-01 5.76839894e-02 -1.74478710e-01 -2.40619153e-01\\n2.22384721e-01 1.71616241e-01 1.69753820e-01 2.44344532e-01\\n2.46716321e-01 -8.22361410e-02 -5.14799245e-02 4.16415453e-01\\n-1.19632587e-01 -6.36925578e-01 3.11752617e-01 -5.39120063e-02\\n4.05984253e-01 3.41760427e-01 -4.25855041e-01 -1.87807769e-01\\n-2.55707711e-01 -2.56909579e-01 6.88974261e-02 -2.67798007e-01\\n-1.24046110e-01 5.06807566e-01 1.74057901e-01 -1.44169778e-01\\n1.40203744e-01 -4.46136832e-01 -7.62810558e-02 -4.61429179e-01\\n1.64929390e-01 -6.23130560e-01 1.78097747e-03 -2.97189113e-02\\n7.01413989e-01 -3.66243958e-01 1.03605710e-01 1.21019155e-01\\n1.68941915e-01 2.06711859e-01 1.02994964e-01 -9.96861979e-03\\n-2.44660646e-01 -1.73305288e-01 -1.01265468e-01 -1.42713115e-01\\n5.72849035e-01 4.53557312e-01 -1.17999464e-01 1.64781157e-02\\n8.95838439e-03 -3.66470307e-01 -5.22058725e-01 -2.14798570e-01\\n-9.98131111e-02 -2.18966320e-01 -6.71041012e-01 -4.69433904e-01\\n-1.05260186e-01 -1.98981404e-01 -1.58466622e-02 4.52420443e-01\\n-1.80115536e-01 -3.10126334e-01 -1.52375966e-01 -4.09972489e-01\\n2.88049668e-01 -4.15626727e-02 -2.79788077e-02 -2.89235353e-01\\n-1.80577070e-01 -5.33810496e-01 9.29278061e-02 6.48258850e-02\\n-1.03003204e-01 -2.60149717e-01 1.49994135e-01 -1.90178141e-01\\n-1.65564105e-01 -5.11513531e-01 4.98433530e-01 1.08519546e-03\\n2.94330776e-01 1.55728996e-01 2.23719239e-01 3.84150334e-02\\n2.25060612e-01 -1.25169098e-01 7.21530393e-02 -4.27450567e-01\\n-1.21291168e-02 3.76475863e-02 5.32884598e-01 -1.60170779e-01\\n-5.16717955e-02 1.14732005e-01 -2.07463846e-01 -8.49666521e-02\\n2.16149747e-01 7.58984983e-02 1.75401121e-01 -1.81778744e-01\\n1.61779150e-01 -2.06549525e-01 -9.10591781e-02 1.43960575e-02\\n1.51126802e-01 5.80509722e-01 -1.31564215e-01 -3.98501515e-01\\n-5.65526523e-02 4.72444147e-01 -5.00711314e-02 2.54415423e-02\\n-1.82968423e-01 1.36276469e-01 -3.19193661e-01 2.14246944e-01\\n-7.45273679e-02 -1.58939913e-01 -2.92337656e-01 -1.36671692e-01\\n-3.76931094e-02 4.07748908e-01 2.78983623e-01 1.44077390e-01\\n-8.36420506e-02 -5.25711596e-01 -2.23095343e-02 1.87403023e-01\\n1.81500822e-01 4.83870357e-01 1.38824195e-01 -2.67379403e-01\\n3.10346391e-02 3.69480461e-01 -1.21721283e-01 2.79140562e-01\\n-3.05510670e-01 1.04455501e-01 -6.61286592e-01 -2.32293785e-01\\n-2.77071357e-01 -3.16626608e-01 7.72752687e-02 4.10246789e-01\\n9.79624838e-02 -1.17385000e-01 1.04726620e-01 -4.58217144e-01\\n3.74075085e-01 2.14205999e-02 1.19314514e-01 1.42173186e-01\\n9.91608761e-03 5.91725588e-01 5.25593013e-02 -1.82521850e-01\\n-1.34943843e-01 1.89930469e-01 -1.97583556e-01 -4.72806208e-02\\n-3.50926518e-02 -4.98448730e-01 -1.06936380e-01 3.01037520e-01\\n2.94150189e-02 -1.66277111e-01 -1.30909562e-01 2.66016632e-01\\n-2.22116336e-03 -2.73526132e-01 -2.68286526e-01 5.75336441e-02\\n4.14756298e-01 1.91234142e-01 2.96636045e-01 -5.25936961e-01\\n1.96620394e-02 -7.48792514e-02 -1.35381483e-02 6.25985861e-01\\n6.61890358e-02 4.29921225e-03 -2.12375730e-01 -1.86815560e-01\\n4.11891013e-01 -1.84130013e-01 -7.48777986e-02 1.00673459e-01\\n8.33585635e-02 -2.31009096e-01 -3.58689070e-01 1.60594344e-01\\n-3.37051004e-02 -1.76141173e-01 -6.13207929e-02 1.73765182e-01\\n1.48413360e-01 1.41172081e-01 -5.64824581e-01 -2.08435595e-01\\n-2.45114207e-01 1.04488311e-02 3.40926833e-02 -4.97675776e-01\\n-1.72357857e-02 -1.41496271e-01 -4.99220550e-01 2.32869849e-01\\n-2.25828290e-01 -1.09538980e-01 1.83097780e-01 2.29210034e-03\\n-3.67555618e-01 -2.37092346e-01 1.79153740e-01 2.85908550e-01\\n-2.49347061e-01 -2.44596720e-01 -2.38113292e-03 -8.92378807e-01\\n2.90414393e-01 2.45186239e-02 -1.73310444e-01 1.57677621e-01\\n-5.55469133e-02 -7.07333088e-01 1.56028166e-01 -4.12621975e-01\\n-1.41886055e-01 -6.31263703e-02 -1.99268788e-01 -4.23546731e-01\\n3.67035419e-02 8.83450173e-03 -2.42549568e-01 4.57460821e-01\\n-3.56322080e-01 3.52765024e-01 -2.62547135e-01 1.31413773e-01\\n-7.89589956e-02 -3.23431075e-01 1.18889757e-01 -5.48351884e-01\\n-3.44765484e-01 -1.38689518e-01 -3.31980407e-01 -1.74490869e-01\\n1.90829299e-02 -2.45149463e-01 -1.96253955e-01 8.05857480e-02\\n2.13078678e-01 -6.76377937e-02 -2.07978532e-01 -2.80966461e-01\\n1.70643385e-02 -4.66847241e-01 5.08031622e-02 -4.59204353e-02\\n-1.04757965e-01 -7.05693737e-02 2.46883541e-01 1.57358333e-01\\n2.64922798e-01 -4.58063811e-01 3.80105078e-01 -4.11942095e-01\\n-3.00559402e-01 -1.09593339e-01 1.48376031e-03 1.82287712e-02\\n3.62692773e-01 -4.77761596e-01 -1.01287141e-02 3.75146091e-01\\n2.19972923e-01 5.86541034e-02 2.01122612e-01 -6.59990832e-02\\n-1.14597201e-01 3.02348912e-01 -3.10396254e-01 3.44828516e-02\\n8.53453755e-01 3.82500961e-02 2.41570860e-01 1.16111957e-01\\n1.78004503e-01 2.54506916e-01 3.16239566e-01 -2.90300865e-02\\n-1.38223201e-01 3.49256694e-01 1.15436524e-01 -4.88376379e-01\\n-1.38280317e-01 4.60150167e-02 -2.99348950e-01 -4.25727963e-01\\n6.41443729e-01 4.03710902e-01 -2.98482239e-01 -1.06796749e-01\\n-1.23506293e-01 -1.01538002e-01 1.48052394e-01 -1.38370693e-01\\n1.38968766e-01 -1.64310038e-01 3.83343130e-01 -8.19118246e-02\\n1.57438919e-01 5.72071671e-01 -1.87432259e-01 -3.38175088e-01\\n4.76191379e-03 1.83620274e-01 -1.31619051e-02 4.06564415e-01\\n-2.95923710e-01 3.67138296e-01 -4.81122136e-02 1.40856445e-01\\n-1.34187981e-01 2.05805779e-01 1.57242224e-01 2.80693360e-03\\n1.59253269e-01 7.88425356e-02 5.93236387e-01 4.12072301e-01\\n4.55301881e-01 3.24033141e-01 2.74644703e-01 -2.07591970e-02\\n5.31782389e-01 4.67112422e-01 3.58952433e-01 1.74257711e-01\\n5.59177361e-02 4.44199964e-02 1.73239782e-01 1.06581867e-01\\n3.04539025e-01 2.19690382e-01 5.76414764e-02 9.97816563e-01\\n4.11790669e-01 2.66025871e-01 7.32808352e-01 -6.78185165e-01\\n-2.79311180e-01 -3.46836559e-02 4.73846823e-01 -4.01882291e-01\\n-2.37719920e-02 9.90024805e-02 -2.13972166e-01 1.59011781e-01\\n-4.14214969e-01 -3.16164732e-01 -1.18679479e-01 9.19205099e-02\\n-4.94345371e-03 -1.96245492e-01 -1.98717564e-01 1.33768782e-01\\n-8.88219029e-02 -1.27493829e-01 -6.06339991e-01 -3.77791077e-02\\n-2.51960188e-01 -2.29738176e-01 -2.21184582e-01 -1.92418545e-01\\n-1.68771058e-01 -2.77095884e-01 -9.28361416e-02 -6.36054724e-02\\n1.79586500e-01 -1.92318290e-01 -7.11112320e-02 -2.04497993e-01\\n3.65317553e-01 1.70582205e-01 5.40863335e-01 5.14017865e-02\\n1.48754507e-01 -3.42131197e-01 -2.28654206e-01 1.61648080e-01\\n2.19933227e-01 3.77353430e-02 6.61360621e-02 2.98703074e-01\\n-3.48388940e-01 -2.41821438e-01 6.32560626e-03 3.68635416e-01\\n-4.53299344e-01 1.72404870e-02 -7.05558658e-02 2.44711280e-01\\n1.07839063e-01 6.21089414e-02 -1.08920686e-01 -4.61726170e-03\\n-9.65857282e-02 -5.49805522e-01 2.18791604e-01 7.12216944e-02\\n-1.76052228e-01 1.14705861e-01 2.54397035e-01 1.45167157e-01\\n-2.97064334e-01 -6.45915344e-02 -1.08516708e-01 1.14809357e-01\\n1.56517908e-01 4.05665666e-01 -2.97802120e-01 -3.14509869e-01\\n-3.15246314e-01 1.05698876e-01 -2.18795508e-01 -5.70882298e-02\\n6.24846555e-02 3.43230367e-01 1.49295583e-01 2.56716274e-02\\n4.92708802e-01 -5.77100031e-02 -2.07298160e-01 -1.88778400e-01\\n-9.82521027e-02 -1.66690469e-01 -1.93059385e-01 -1.86665580e-02\\n2.86251307e-01 -2.34294251e-01 -9.97916237e-02 -2.02726364e-01\\n-1.21421479e-01 -3.57192099e-01 1.30815029e-01 -1.93166345e-01]]',\n", + " 'job_description': 'Vizrt provides real-time 3D graphics, studio automation, sports analysis and asset management tools for the broadcast industry. This includes interactive and virtual solutions, animations, maps, weather, video editing and compositing tools. Vizrt has customers in more than 100 countries worldwide including such as CNN, CBS, Fox, the BBC, BSkyB, Al Jazeera, ZDF, CCTV, and the list keeps growing. This is possible due to 600 engaged and very competent employees in 40 offices around the world. In our R&D team in Zürich/Switzerland we create award-winning, unique and high-tech software dedicated to sports media productions. We strive to develop first-class media enhancement technology and we need your excellent C++ programming skills to develop the best products for Vizrt around sports media creation. To strengthen our software engineering team, we have an immediate opening for a proactive, pragmatic, and team-oriented SOFTWARE ENGINEER (C++) You complement the engineering team with your expertise and experience in application development and you will help us to advance the innovative and technologically advanced product lines related to sports. In close collaboration with your colleagues, you will be working on our challenging, exciting, and interesting software engineering tasks. What are we looking for? You are a pragmatic, team-oriented, flexible, independent and motivated software engineer You have excellent C++ programming skills and ideally already some experience You have at least a MSc in Computer Science, and some knowledge in Software Design or Architecture Good English capabilities is a must. German is not a requirement but helpful in private life. Background knowledge in Computer Graphics, Computer Vision and/or Machine Learning is a plus. Experience with Visual Studio or Qt SDK is a plus. We expect efficiency and pragmatic problem-solving skills. Your interest and enthusiasm for sports helps us to deliver the next generation of sports media technology. What do we offer? At Vizrt, you will find a challenging and diversified software engineering position in our dynamic, innovative, and fast-growing high-tech environment. Interesting tasks are waiting for your excellent solutions and your main focus will be on high quality application development where you will be integrated in the full development cycle. Sporadic field services at international sports media productions and infrequent second level support are part of the profile. If you find this interesting and want to be a part of our team submit your CV and application by clicking the \"Apply now\" button or at vizrt.com. Click here to read about our online privacy and personal data policies. jVL8HHgSoa',\n", + " 'soft_skills': '[\"Team Oriented\", \"Collaboration\", \"Proactivity\", \"Problem Solving\", \"Enthusiasm\", \"Integration\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Real Time Data\", \"Video Editing\", \"Frameforge 3D Studio\", \"MSC Software\", \"Tooling\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Field Service Management\", \"Virtualization\", \"Industrialization\", \"Scholastic READ 180\", \"Compositing\", \"C++ (Programming Language)\", \"Media Production\", \"Computer Vision\", \"Component Object Model (COM)\", \"High Tech Manufacturing\", \"Levelling\", \"Idealization\", \"Product Lining\", \"Software Engineering\", \"Microsoft Visual Studio\", \"Machine Learning Methods\", \"Automation Studio\", \"Animations\", \"Personalization\", \"Weather Maps\", \"Qt (Software)\", \"Software Design\", \"Real-Time Computer Graphics\", \"Computer Graphics\", \"Asset Management\", \"Closed-Circuit Television Systems (CCTV)\", \"Broadcasting\"]',\n", + " 'languages': \"['English', 'Sango', 'North Ndebele']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'software developer/devops engineer 60-100% starting immediately or as per agreement',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.87318110e-01 2.91789472e-01 4.31188583e-01 -8.56497586e-02\\n5.50554872e-01 -1.77667126e-01 -1.81153476e-01 4.18591142e-01\\n-1.41118765e-01 -3.14023614e-01 -1.08434513e-01 -2.64241785e-01\\n-1.60108298e-01 1.53163016e-01 6.70829564e-02 4.40282047e-01\\n3.40453863e-01 5.67928515e-02 -1.71614468e-01 3.23336720e-01\\n1.02806613e-01 -9.64196473e-02 -4.06006500e-02 7.56575286e-01\\n3.62100184e-01 1.48202516e-02 -5.53796291e-02 2.72017196e-02\\n-1.69028550e-01 -1.95795953e-01 4.24424082e-01 1.71294175e-02\\n-1.09756403e-01 -3.16664100e-01 1.61537319e-01 1.11791953e-01\\n-2.37060279e-01 -1.03546232e-02 -3.76902670e-02 1.60510525e-01\\n-5.12383103e-01 -1.93267167e-01 1.45915411e-02 1.42959803e-02\\n-2.79489934e-01 -2.70250201e-01 2.29901269e-01 2.37958580e-02\\n2.33175308e-02 5.69798499e-02 -6.05443358e-01 2.64797658e-01\\n-2.71879137e-01 -2.63937533e-01 4.01578635e-01 4.84519213e-01\\n5.35161905e-02 -4.76649761e-01 -4.92879808e-01 -3.85217905e-01\\n-3.52666825e-02 -7.18578100e-02 3.89909297e-02 -2.73499966e-01\\n5.02170920e-01 1.37555972e-01 5.60406670e-02 3.60494316e-01\\n-8.01566899e-01 -1.07479371e-01 -2.12247014e-01 5.86293414e-02\\n-4.19530869e-01 -1.04820862e-01 -2.29446977e-01 -2.23073408e-01\\n-5.96053377e-02 2.96231508e-01 -3.69271412e-02 9.81291234e-02\\n-1.38414115e-01 3.09551448e-01 -1.51179239e-01 3.57642770e-01\\n2.48925060e-01 1.73266470e-01 2.58680612e-01 3.36884737e-01\\n-4.56089437e-01 3.54018390e-01 1.28624976e-01 -3.47741365e-01\\n2.72112489e-01 6.20779619e-02 4.51661527e-01 9.88357067e-02\\n1.76459432e-01 1.43177837e-01 -2.75089353e-01 2.16527492e-01\\n1.98034912e-01 -2.34888554e-01 -7.76223838e-04 -1.14471316e-01\\n-2.95662023e-02 5.42322136e-02 1.54809458e-02 1.92612082e-01\\n-3.79081279e-01 3.74513745e-01 1.75825447e-01 -2.73818403e-01\\n-1.01332933e-01 -5.78993320e-01 -1.22831173e-01 1.46739170e-01\\n2.04649158e-02 -5.30406088e-03 1.45222217e-01 1.15870684e-01\\n2.24334180e-01 4.39854153e-03 1.36397451e-01 8.49736691e-01\\n-1.23089060e-01 -6.50517419e-02 -1.49911433e-01 2.67448455e-01\\n1.03887878e-01 -3.06839287e-01 2.14043438e-01 3.00301254e-01\\n1.05285630e-01 -9.65064913e-02 -2.45603755e-01 3.91231865e-01\\n-9.10522416e-04 -2.49747306e-01 -3.50262821e-01 2.72334695e-01\\n-1.16192371e-01 -4.62924838e-01 5.35417378e-01 5.94500173e-03\\n2.22213119e-01 -6.12952113e-02 9.75393504e-03 -8.14917535e-02\\n-4.99278158e-02 1.65591896e-01 6.23758510e-02 2.49845311e-01\\n-3.73047531e-01 -2.50737190e-01 -1.74523860e-01 1.78210318e-01\\n-2.58136809e-01 1.52739286e-01 -9.52636153e-02 -1.36618212e-01\\n3.80859077e-01 2.93134227e-02 -3.21646303e-01 2.13435248e-01\\n-3.00743692e-02 1.56142935e-03 -1.25223532e-01 3.85336041e-01\\n-1.58782840e-01 2.32533216e-01 -8.19541365e-02 -1.55077174e-01\\n5.68798423e-01 5.88336065e-02 1.35826081e-01 -3.41330208e-02\\n3.76788825e-01 -1.47953451e-01 2.99568772e-01 3.50088179e-02\\n-6.97408974e-01 2.18423441e-01 -1.39078293e-02 -1.70854092e-01\\n3.10208797e-02 3.42263356e-02 4.09392267e-01 -3.31602275e-01\\n-9.21376050e-05 -1.94397196e-01 -3.72853070e-01 -3.37666452e-01\\n-2.58329719e-01 7.73894712e-02 4.21880007e-01 -3.80115300e-01\\n-1.16501763e-01 1.65301889e-01 -5.59084177e-01 -2.04996750e-01\\n2.11235449e-01 2.25003034e-01 1.26817137e-01 9.17577371e-02\\n-1.38674349e-01 -7.17165709e-01 3.40212882e-02 -5.29017806e-01\\n-2.54450202e-01 1.32091165e-01 -3.92119646e-01 2.19579250e-01\\n1.09882336e-02 -4.72904593e-02 -1.20516382e-01 1.37907594e-01\\n-3.48661184e-01 -6.25367165e-02 1.48148507e-01 3.47936824e-02\\n2.84271419e-01 1.07930340e-01 -2.71239161e-01 5.35039544e-01\\n-1.54739842e-01 4.94785607e-01 1.31897479e-01 -8.04526329e-01\\n5.07906973e-01 4.43602204e-01 8.89478400e-02 -3.37336123e-01\\n5.69540799e-01 -3.01147461e-01 -6.24946766e-02 1.32318974e-01\\n-4.60249662e-01 -2.59566069e-01 2.44656637e-01 -2.77914077e-01\\n-2.35727161e-01 5.57668924e-01 7.49789700e-02 2.86465883e-02\\n3.54128361e-01 -3.61817777e-01 -1.78567231e-01 1.29208982e-01\\n-1.16411954e-01 -3.23868215e-01 -5.43175697e-01 1.83105245e-02\\n-7.25895017e-02 -5.22873938e-01 -2.09462374e-01 -3.61580282e-01\\n-1.21171907e-01 -2.79470801e-01 -2.15028331e-01 3.72170210e-01\\n1.37792170e-01 9.57143679e-02 -1.16027400e-01 -3.25749069e-02\\n-1.03597805e-01 -6.00327849e-01 6.46317750e-02 -7.62615204e-02\\n4.29507524e-01 1.72550350e-01 1.62954018e-01 -6.85341507e-02\\n4.24821973e-02 6.11936092e-01 -3.55240583e-01 -3.18563938e-01\\n7.56022260e-02 1.08517960e-01 -8.05538613e-03 -3.48435640e-02\\n1.53358683e-01 2.83679783e-01 -2.80136943e-01 2.93359160e-04\\n-2.65068829e-01 3.77300568e-02 3.81170571e-01 -1.25991032e-01\\n-2.00369880e-01 -2.47937664e-01 -1.34533331e-01 2.09450424e-01\\n-5.06720483e-01 -2.30727017e-01 4.16215062e-01 2.08025396e-01\\n1.61086842e-01 1.46631077e-01 2.57583529e-01 -3.05785723e-02\\n-2.73961484e-01 -3.76286834e-01 2.59703845e-01 1.94673315e-01\\n1.18294075e-01 1.25228167e-01 -1.08436294e-01 -5.59951186e-01\\n-2.93729639e+00 -1.77619115e-01 2.11666360e-01 -2.89920747e-01\\n2.80518532e-01 -9.52224582e-02 6.85328841e-02 -7.66997561e-02\\n-3.61034989e-01 -3.13492529e-02 -1.61867917e-01 -2.46088997e-01\\n6.44157454e-02 2.88689852e-01 1.49642691e-01 7.89279044e-02\\n7.27260336e-02 -2.17213064e-01 7.11056143e-02 2.76450306e-01\\n-1.47085473e-01 -7.16445208e-01 1.96123138e-01 -1.18124358e-01\\n2.33736783e-01 3.11203688e-01 -4.14957613e-01 -1.66257665e-01\\n-2.57039428e-01 -2.18894243e-01 1.32843792e-01 -3.22713614e-01\\n-1.09991074e-01 3.05664599e-01 2.08565980e-01 -7.47518390e-02\\n5.99676967e-02 -3.68930161e-01 -9.76570398e-02 -5.65621912e-01\\n2.24634141e-01 -5.76452494e-01 -3.91370151e-03 -1.71015441e-01\\n6.65006042e-01 -2.91297406e-01 1.82726577e-01 1.35385662e-01\\n2.31303096e-01 2.02988476e-01 6.48515224e-02 7.25327134e-02\\n-2.54797429e-01 -3.19191754e-01 -2.41924226e-02 -2.85765201e-01\\n5.49647093e-01 4.76489246e-01 -2.08977669e-01 -5.56413084e-02\\n1.48424178e-01 -3.50824773e-01 -4.54944044e-01 -3.19716066e-01\\n-1.86787039e-01 -1.59528390e-01 -6.02613747e-01 -3.77588332e-01\\n-1.11144185e-01 -8.96145999e-02 -9.21295136e-02 7.16021776e-01\\n-3.33794415e-01 -3.24110806e-01 5.17537817e-03 -6.55639291e-01\\n7.62278512e-02 -2.63824970e-01 6.99969530e-02 -2.36851692e-01\\n-2.31593966e-01 -4.92470652e-01 1.22997947e-01 -7.06257299e-02\\n-1.79481894e-01 -3.36754829e-01 3.22761573e-02 -2.54902959e-01\\n-1.84644908e-01 -5.51626325e-01 3.85588646e-01 1.51344895e-01\\n3.84903014e-01 1.87793210e-01 2.89781362e-01 -2.03124825e-02\\n2.71261364e-01 3.76273878e-02 -2.62049958e-03 -3.97569388e-01\\n2.10584551e-01 2.14498322e-02 5.50341487e-01 -1.82782650e-01\\n1.78368874e-02 9.05191600e-02 -2.20640779e-01 -1.51129171e-01\\n3.18200797e-01 9.64162573e-02 1.94250457e-02 -1.74557716e-01\\n4.10951138e-01 -4.19547498e-01 -1.13547973e-01 1.97528839e-01\\n5.34651726e-02 6.41566753e-01 -1.67857111e-02 -3.89339983e-01\\n-2.05366701e-01 5.42307019e-01 -1.11077242e-02 -3.98148559e-02\\n-5.10816649e-03 1.66688740e-01 -1.56590879e-01 1.82058275e-01\\n4.89002243e-02 -1.72223762e-01 -2.58895695e-01 -6.41639531e-02\\n-1.45417899e-01 2.82754540e-01 2.92502046e-01 2.50201762e-01\\n-1.03088312e-01 -3.89020383e-01 -4.35447842e-02 2.98897743e-01\\n2.62479544e-01 3.97856116e-01 1.80709511e-01 -1.73602343e-01\\n2.35672742e-02 4.60401475e-01 -1.22553632e-01 2.26123989e-01\\n-1.48112223e-01 7.70156905e-02 -5.44449151e-01 -1.76110327e-01\\n-3.27874482e-01 -2.81568766e-01 1.20939940e-01 3.09839934e-01\\n1.75294995e-01 -7.26273656e-02 5.76428548e-02 -3.56755018e-01\\n2.43489802e-01 8.83635134e-02 2.07738400e-01 1.25812173e-01\\n-9.34434831e-02 6.11874640e-01 -1.92633569e-02 -7.33592883e-02\\n-1.86909348e-01 -1.23604946e-02 -2.65375733e-01 -1.86913460e-01\\n1.68819994e-01 -3.95074666e-01 -2.10466236e-01 4.37441260e-01\\n1.05115086e-01 -1.55914098e-01 -1.79656982e-01 2.94642508e-01\\n6.36705533e-02 -2.88086116e-01 -2.58867919e-01 2.27771960e-02\\n2.96990991e-01 4.84071895e-02 2.52825230e-01 -5.04959822e-01\\n-3.87022458e-02 9.62376222e-02 1.11653693e-02 4.82677609e-01\\n1.01177104e-01 4.75580106e-03 -1.94290102e-01 -2.97577620e-01\\n3.24753970e-01 -1.71053261e-01 -1.12228245e-01 -1.06714204e-01\\n3.71257886e-02 -1.56514287e-01 -4.09128308e-01 3.04189771e-02\\n-8.75774473e-02 -1.98559880e-01 -2.12248638e-02 3.96063961e-02\\n1.56495839e-01 7.49918595e-02 -5.38079858e-01 -1.80572510e-01\\n-2.11260617e-01 4.53960299e-02 4.73914668e-04 -4.55058873e-01\\n5.21916039e-02 -2.65320726e-02 -5.96360683e-01 2.49133706e-01\\n-2.16501728e-01 -1.72815025e-02 1.95525765e-01 -2.01024115e-02\\n-4.61807728e-01 -1.38845056e-01 1.76314950e-01 1.75923079e-01\\n-3.57330948e-01 -3.15296113e-01 5.33151999e-02 -1.02236998e+00\\n1.91780090e-01 -9.61777866e-02 -1.16622925e-01 1.15673631e-01\\n7.14104846e-02 -6.96519852e-01 8.08185562e-02 -3.65290046e-01\\n-5.79128787e-03 6.44948259e-02 -1.99457601e-01 -3.20395589e-01\\n7.62744322e-02 -1.16553485e-01 -2.10152030e-01 4.63202327e-01\\n-4.96144295e-01 2.81551600e-01 -9.17651951e-02 5.04254699e-02\\n5.49955294e-02 -3.18094879e-01 1.46768942e-01 -3.12892437e-01\\n-4.53601778e-01 -2.32586071e-01 -2.63967574e-01 -3.86464596e-01\\n2.09685136e-02 -2.85497308e-01 -1.30863413e-01 9.20823216e-02\\n2.98231930e-01 -1.91106908e-02 -1.86114684e-01 -2.28986442e-01\\n9.53403413e-02 -4.53365326e-01 7.88550898e-02 -5.20132445e-02\\n-8.07747394e-02 -1.38689891e-01 1.98494166e-01 1.04011580e-01\\n1.51971757e-01 -3.57496649e-01 5.10936260e-01 -3.76024514e-01\\n-3.70997846e-01 -7.93536454e-02 8.58781338e-02 9.27861407e-03\\n2.19826415e-01 -6.54448628e-01 -3.50430086e-02 4.03188586e-01\\n2.05288291e-01 4.40065116e-02 2.04517663e-01 -1.41157478e-01\\n3.06737162e-02 2.29866520e-01 -3.89220595e-01 1.45663664e-01\\n8.67883027e-01 1.54450938e-01 1.05609357e-01 2.38801956e-01\\n1.47309422e-01 2.88691550e-01 4.74720836e-01 -1.02697149e-01\\n-7.43917674e-02 2.56745696e-01 1.39196903e-01 -4.64492112e-01\\n-1.52405024e-01 -3.56659181e-02 -2.19154991e-02 -2.70281553e-01\\n6.73882127e-01 3.77228737e-01 -4.49291468e-01 -3.12332600e-01\\n-9.88477319e-02 -7.93113112e-02 2.72883654e-01 -1.01410180e-01\\n1.26195177e-02 -1.69254273e-01 3.98905456e-01 -2.46471763e-02\\n2.85397083e-01 5.73866546e-01 -1.91057056e-01 -3.46286058e-01\\n-1.87313184e-01 2.07979783e-01 2.93491296e-02 4.31390464e-01\\n-1.44919842e-01 2.01590300e-01 -5.63432872e-02 1.80502191e-01\\n-1.46607757e-01 1.90563813e-01 1.00478768e-01 5.71591109e-02\\n2.05162674e-01 1.31151050e-01 3.90405834e-01 4.27460074e-01\\n3.74838233e-01 5.24707198e-01 2.74959713e-01 4.67869565e-02\\n4.93670940e-01 5.46043575e-01 4.72681075e-01 -1.02610551e-02\\n-8.42719972e-02 1.17959708e-01 1.00726373e-01 -7.90356100e-02\\n4.05645490e-01 3.19476247e-01 1.54250965e-01 9.33255613e-01\\n3.24126899e-01 3.79435778e-01 6.98691249e-01 -5.63847959e-01\\n-2.86700159e-01 5.67018837e-02 4.60928977e-01 -4.21892703e-01\\n4.04282734e-02 7.92097896e-02 -1.67069674e-01 2.26446718e-01\\n-4.92805004e-01 -8.33834186e-02 -3.79050709e-03 2.18010470e-02\\n1.09355494e-01 -4.77372482e-02 -2.17290044e-01 -3.26051340e-02\\n-2.41340756e-01 -2.43086696e-01 -4.19553876e-01 -2.16480732e-01\\n-2.07325071e-01 -7.10473359e-02 -6.01869412e-02 -2.17074305e-01\\n-7.99204633e-02 -3.56071323e-01 2.90904343e-02 3.05220857e-03\\n3.63231272e-01 -1.19046845e-01 -1.43253192e-01 -1.59353733e-01\\n3.66383731e-01 3.20502818e-01 6.39274836e-01 -1.33762375e-01\\n9.07671079e-03 -1.49128616e-01 -2.40885392e-01 1.49054140e-01\\n2.62479801e-02 1.16542861e-01 1.40212059e-01 2.67452806e-01\\n-2.76915550e-01 -8.46120864e-02 1.02654383e-01 3.54872227e-01\\n-3.72790039e-01 -7.65801072e-02 -9.86637399e-02 1.46286160e-01\\n-7.52954371e-03 1.39302641e-01 -2.87257373e-01 1.13631755e-01\\n-1.94109589e-01 -5.63626826e-01 4.52676833e-01 -1.88164040e-01\\n-1.44184843e-01 3.81145217e-02 3.99288416e-01 2.23205343e-01\\n-2.31812239e-01 2.88282707e-03 2.34621409e-02 2.06964642e-01\\n6.44229949e-02 3.45169842e-01 -1.61057010e-01 -2.84343541e-01\\n-3.56081724e-01 1.98329404e-01 -1.88631520e-01 1.26163512e-02\\n-1.43413007e-01 4.23739254e-01 -4.40278165e-02 3.40358168e-02\\n4.14370358e-01 -8.75738040e-02 -1.60119101e-01 -3.00972998e-01\\n-2.28682548e-01 -2.21214429e-01 7.98541121e-03 -1.97812542e-03\\n2.33695775e-01 -3.69636327e-01 -1.46578059e-01 -2.98409998e-01\\n2.15439349e-02 -2.49564201e-01 1.55617930e-02 4.02572230e-02]]',\n", + " 'job_description': \"60-100% Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum's scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master's degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer you The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '87',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.54534191e-01 3.09695065e-01 5.41048110e-01 1.05600737e-01\\n6.31053805e-01 -9.09011811e-02 -5.11705875e-03 2.89422482e-01\\n1.02763269e-02 -4.79990304e-01 -8.96662623e-02 -3.00933421e-01\\n-7.81719983e-02 1.19460605e-01 2.12078169e-02 5.05458117e-01\\n3.04452479e-01 7.98590854e-02 -1.94830507e-01 2.96692193e-01\\n7.58904219e-02 -9.21158418e-02 4.65119034e-02 7.89840698e-01\\n4.76172388e-01 -1.53833088e-02 -5.28285764e-02 1.15928486e-01\\n-2.59276032e-01 -2.59622663e-01 4.83713984e-01 -2.77760401e-02\\n-1.79266304e-01 -3.79980981e-01 1.01828605e-01 1.70682997e-01\\n-1.97517365e-01 -1.40019134e-01 -1.45585895e-01 1.84878081e-01\\n-5.11989594e-01 -7.10798725e-02 -6.27267510e-02 8.33144188e-02\\n-3.13558996e-01 -3.94508839e-01 2.28154697e-02 -1.43950433e-01\\n1.41547069e-01 1.20793439e-01 -4.92461830e-01 2.11964265e-01\\n-2.79535294e-01 -1.81032658e-01 2.33254284e-01 6.66930676e-01\\n2.77436711e-03 -4.04768825e-01 -4.99981761e-01 -3.59419346e-01\\n9.68115777e-02 -1.48925439e-01 1.21161327e-01 -3.67856860e-01\\n4.03639972e-01 4.80557643e-02 -3.69378962e-02 2.75526285e-01\\n-8.27646613e-01 -2.47257221e-02 -3.54253590e-01 -2.57035401e-02\\n-4.90433246e-01 -5.47579415e-02 -4.06440079e-01 -1.24308258e-01\\n-6.86934590e-02 4.69321549e-01 -1.70315914e-02 9.57431495e-02\\n-2.48861268e-01 3.25115860e-01 -3.00278187e-01 3.07386309e-01\\n2.15749711e-01 2.61406064e-01 1.93330482e-01 3.68700802e-01\\n-4.57694858e-01 3.73787701e-01 1.32383466e-01 -3.43104362e-01\\n2.92455405e-01 1.82307214e-01 3.70235562e-01 -1.10424738e-02\\n8.06659162e-02 1.34445518e-01 -2.79323101e-01 3.45487744e-01\\n2.59245187e-01 -3.27889562e-01 1.10353399e-02 -1.87611774e-01\\n8.17013681e-02 -9.40711237e-03 5.04938364e-02 1.39908224e-01\\n-4.49890703e-01 3.87442917e-01 5.49337864e-02 -1.92807555e-01\\n-9.53988656e-02 -5.34336150e-01 -8.33911002e-02 1.89849269e-02\\n3.51127945e-02 2.70699620e-01 1.76753968e-01 2.38492310e-01\\n2.58935899e-01 2.54102759e-02 1.27062529e-01 8.77883673e-01\\n-6.62598908e-02 5.86951636e-02 -1.97182059e-01 3.65920603e-01\\n1.06803581e-01 -3.85626912e-01 3.72683227e-01 2.00958073e-01\\n-3.59984934e-02 -9.21664238e-02 -3.10712874e-01 3.65854234e-01\\n-1.01171963e-01 -1.67768851e-01 -2.60361195e-01 1.56669304e-01\\n2.19459347e-02 -4.53210682e-01 6.79913700e-01 3.21155488e-02\\n1.47005469e-01 -1.87337518e-01 3.38415876e-02 -1.51978210e-01\\n-4.35735472e-02 2.50239283e-01 9.53002498e-02 1.49292782e-01\\n-3.67314935e-01 -2.33879015e-01 -1.64553642e-01 1.84871584e-01\\n-3.61653030e-01 3.92330773e-02 -1.68314189e-01 -1.07598148e-01\\n2.33125210e-01 6.55429363e-02 -3.66338462e-01 1.40790865e-01\\n-1.73094034e-01 -1.65184051e-01 1.59676913e-02 4.28505123e-01\\n-2.17824876e-01 2.13916302e-01 -9.24050957e-02 -1.35505155e-01\\n6.48049474e-01 1.19532228e-01 1.89114213e-01 7.69629702e-02\\n2.62891442e-01 -1.09530821e-01 1.79584652e-01 1.57501057e-01\\n-6.97478414e-01 4.48892385e-01 -8.65544826e-02 -1.92632779e-01\\n-6.36369362e-03 -4.42250445e-02 3.96426201e-01 -3.41499180e-01\\n1.02286845e-01 -1.34396851e-01 -3.37036043e-01 -2.59659946e-01\\n-2.62445211e-01 -5.81044927e-02 3.89494658e-01 -4.51210767e-01\\n-1.15815163e-01 2.87452042e-01 -6.92722917e-01 -1.69644058e-01\\n2.26446003e-01 2.20412001e-01 1.45970792e-01 1.07090682e-01\\n-1.26016557e-01 -6.39778674e-01 8.36042464e-02 -4.22887206e-01\\n-3.11819881e-01 1.18987814e-01 -4.09144253e-01 2.25980073e-01\\n8.90407488e-02 1.80889312e-02 -9.37937647e-02 2.12068319e-01\\n-3.15282345e-01 6.21624440e-02 1.41963571e-01 1.18827984e-01\\n3.36047530e-01 1.29768297e-01 -4.81415302e-01 4.61491942e-01\\n-1.73143893e-01 5.58403611e-01 1.32520795e-01 -8.20285499e-01\\n5.70390165e-01 2.36053288e-01 -4.50868905e-03 -3.40402782e-01\\n5.61367750e-01 -2.96332091e-01 -9.31432694e-02 7.04149008e-02\\n-4.04941022e-01 -3.40194404e-01 2.59028822e-01 -2.26300314e-01\\n-2.30652839e-01 5.13455868e-01 5.80587760e-02 1.79540873e-01\\n3.36032391e-01 -2.60693908e-01 -2.11215138e-01 8.64282101e-02\\n-1.55161470e-01 -2.47515142e-01 -6.63027883e-01 -7.14992881e-02\\n-1.63980782e-01 -4.32883382e-01 -1.68118924e-01 -4.58774507e-01\\n-2.32560322e-01 -3.54921758e-01 -1.69473752e-01 1.69435874e-01\\n2.21650973e-01 9.95511040e-02 -5.44343852e-02 -1.31271221e-02\\n-2.92835534e-02 -6.68349683e-01 -1.10428892e-01 7.37931281e-02\\n4.16947842e-01 2.46222064e-01 1.83095425e-01 -6.05295524e-02\\n1.34663463e-01 6.33368134e-01 -3.01293612e-01 -3.21902275e-01\\n1.73316166e-01 1.86831951e-01 -5.83358109e-02 -1.05940141e-01\\n1.61213651e-02 3.04186285e-01 -2.98740238e-01 4.72703315e-02\\n-6.99833333e-02 -1.20322891e-01 3.83708596e-01 -7.36376876e-03\\n-2.35398427e-01 -1.04449846e-01 -1.25922531e-01 1.80065542e-01\\n-6.05286300e-01 -2.41280288e-01 5.62656045e-01 2.17393667e-01\\n1.16419651e-01 4.55096588e-02 1.77515298e-01 -4.95076925e-03\\n-3.16848218e-01 -3.17542940e-01 2.59601921e-01 1.28559172e-01\\n2.55477913e-02 7.05151632e-02 2.05459110e-02 -6.06863201e-01\\n-3.17042542e+00 -1.71816170e-01 1.95558161e-01 -1.25669599e-01\\n2.23211408e-01 -1.87676817e-01 9.35532302e-02 -3.89346704e-02\\n-3.53282034e-01 1.02537759e-02 -1.35862887e-01 -2.08681554e-01\\n1.20736636e-01 2.77561337e-01 2.01906353e-01 1.51850343e-01\\n1.55040890e-01 -1.71310276e-01 1.36198048e-02 3.30917507e-01\\n-1.86956227e-01 -6.74892843e-01 9.08773020e-02 5.11279441e-02\\n1.62534446e-01 1.78245962e-01 -3.77101690e-01 -1.25750661e-01\\n-4.21788514e-01 -2.19363406e-01 1.27470359e-01 -3.72200608e-01\\n-1.54250264e-01 3.37863654e-01 2.76769072e-01 -4.47883755e-02\\n4.25362885e-02 -3.85989755e-01 -1.07889414e-01 -4.46283102e-01\\n1.52378500e-01 -5.30155182e-01 3.36548351e-02 -1.85210258e-01\\n7.65889049e-01 -2.70409435e-01 1.39224797e-01 9.42744613e-02\\n2.06456751e-01 1.77274719e-01 1.76865578e-01 -2.17764117e-02\\n-2.05419689e-01 -2.21895754e-01 -7.74296522e-02 -1.26566738e-01\\n6.46931410e-01 4.23995256e-01 -8.14221948e-02 4.70101759e-02\\n1.33588463e-01 -3.17640305e-01 -4.70529914e-01 -3.50491107e-01\\n-1.07618392e-01 -1.88258186e-01 -6.26634836e-01 -4.99508590e-01\\n-1.24623597e-01 -1.11780867e-01 -9.94564593e-02 6.24259710e-01\\n-2.21339256e-01 -2.61729419e-01 -1.64557844e-01 -5.22715449e-01\\n3.01356018e-01 -1.60124570e-01 6.88046515e-02 -2.13278323e-01\\n-2.05454916e-01 -4.99227941e-01 6.38052449e-02 -1.12385646e-01\\n-6.20305277e-02 -2.64090151e-01 1.17936805e-01 -2.55552024e-01\\n-3.55915248e-01 -5.83395243e-01 4.64060217e-01 1.45012543e-01\\n3.58146489e-01 1.33548230e-01 2.78110355e-01 7.63768852e-02\\n3.09909403e-01 -1.02834024e-01 -4.09739763e-02 -3.99790168e-01\\n1.39236942e-01 -4.89000604e-03 5.33990204e-01 -2.31745780e-01\\n1.02379605e-01 6.24420978e-02 -1.84112728e-01 -1.11639239e-02\\n4.19463336e-01 -6.67833164e-02 9.27922279e-02 -6.97553456e-02\\n2.91475564e-01 -2.94944584e-01 -1.24336332e-01 7.08579570e-02\\n1.67970248e-02 6.65000200e-01 -9.88284592e-03 -3.97574842e-01\\n-9.81964171e-02 4.52187449e-01 4.58508171e-03 -2.10374352e-02\\n-1.95891067e-01 4.60714102e-02 -2.30713278e-01 3.03700626e-01\\n6.23473153e-02 -1.86030939e-01 -2.28398532e-01 -1.20353967e-01\\n-8.09023455e-02 3.78268778e-01 2.71911979e-01 1.00167744e-01\\n3.95088382e-02 -2.62784719e-01 -6.90597221e-02 1.94889724e-01\\n2.90038288e-01 4.58224326e-01 1.60984874e-01 -2.88782060e-01\\n3.31976637e-02 3.24012816e-01 -2.31396511e-01 2.33003944e-01\\n-2.36630201e-01 1.73960388e-01 -6.21045768e-01 -2.49912918e-01\\n-2.82402396e-01 -3.34596097e-01 2.86302716e-01 3.10437262e-01\\n1.49060085e-01 -1.15147308e-01 1.27573073e-01 -4.71931040e-01\\n1.85508221e-01 1.15847223e-01 8.03064033e-02 1.39438778e-01\\n-7.25350156e-02 6.27053142e-01 -3.57923135e-02 -1.46198362e-01\\n-5.60637787e-02 4.11032811e-02 -1.45359188e-01 -2.41298676e-01\\n-1.37516409e-02 -5.66573381e-01 -1.56452388e-01 5.17399073e-01\\n1.48371547e-01 -1.61099210e-01 -2.48683408e-01 2.53085613e-01\\n-3.98470797e-02 -2.48480991e-01 -3.11333358e-01 -2.77180150e-02\\n3.73762906e-01 9.27604064e-02 2.61399299e-01 -5.55208683e-01\\n-2.97165327e-02 -2.83406433e-02 2.88380980e-02 4.40667808e-01\\n7.31741786e-02 9.48639065e-02 -8.35242197e-02 -1.57984689e-01\\n4.80759859e-01 -2.40286551e-02 -1.07412964e-01 8.36232752e-02\\n1.21302366e-01 -1.90426037e-01 -4.04377341e-01 4.94870320e-02\\n-5.01678586e-02 -2.73130417e-01 -9.13571008e-03 1.29075646e-01\\n3.53383757e-02 6.70410618e-02 -7.15526104e-01 -2.64852166e-01\\n-2.70837992e-01 -2.78315805e-02 -3.21403742e-02 -5.96870303e-01\\n1.38364136e-02 -7.07854852e-02 -5.91111898e-01 2.08256066e-01\\n-4.96222526e-02 -1.24800913e-01 2.65532732e-01 9.42408219e-02\\n-1.71291158e-01 -1.70750767e-01 1.03329733e-01 2.34502554e-01\\n-3.17176312e-01 -3.11684728e-01 2.61890255e-02 -1.03183508e+00\\n1.48777425e-01 4.44738120e-02 -1.47236466e-01 1.76333964e-01\\n-4.62749563e-02 -7.22790599e-01 5.37610240e-03 -5.02388179e-01\\n-9.25508738e-02 -3.32884975e-02 -3.33404541e-01 -3.14110041e-01\\n2.42295563e-01 2.33885255e-02 -3.05130929e-01 4.06105757e-01\\n-2.96534687e-01 3.28739583e-01 -1.34739965e-01 8.23685974e-02\\n1.54404324e-02 -2.34843850e-01 1.08245730e-01 -2.32621789e-01\\n-4.39092249e-01 -2.27123201e-01 -2.88402349e-01 -1.90351129e-01\\n-2.09435467e-02 -3.65051687e-01 -8.04658383e-02 -6.57568872e-03\\n4.34081703e-01 6.78686425e-02 -1.42766088e-01 -1.80300325e-01\\n2.81287655e-02 -4.94259804e-01 9.70014930e-02 -1.78185835e-01\\n-1.44698769e-01 -1.33003578e-01 2.25294739e-01 1.35862529e-01\\n2.02471405e-01 -3.82345617e-01 3.48454863e-01 -4.11388278e-01\\n-3.17384094e-01 -1.12836733e-01 1.49927810e-01 9.59857088e-03\\n2.79226780e-01 -5.57919145e-01 -4.44051623e-02 3.49255741e-01\\n1.66242495e-01 1.02328584e-01 1.91392615e-01 -1.25604287e-01\\n-3.93672809e-02 3.22296441e-01 -3.87233585e-01 1.92017466e-01\\n7.80897856e-01 1.55065000e-01 2.57971555e-01 2.00700432e-01\\n1.51758462e-01 1.93048909e-01 5.24990559e-01 -4.31491472e-02\\n-8.39248002e-02 3.44993711e-01 1.18735909e-01 -4.83583659e-01\\n-9.74129438e-02 -1.42248154e-01 -1.02183692e-01 -4.20216054e-01\\n6.01920545e-01 3.80075037e-01 -3.90081167e-01 -1.99097887e-01\\n-2.17539638e-01 -1.40008569e-01 2.18971461e-01 -4.92943153e-02\\n-6.05405867e-03 2.90381536e-03 4.98297065e-01 -1.39822081e-01\\n2.70174325e-01 6.23915672e-01 -2.02366471e-01 -1.99730247e-01\\n-1.64499015e-01 1.43388420e-01 9.03801322e-02 4.79511499e-01\\n-2.50315666e-01 3.36863935e-01 3.49162593e-02 1.30211264e-01\\n-1.82461396e-01 1.31332381e-02 1.79213136e-01 5.52507900e-02\\n2.86000460e-01 1.06661104e-01 4.40178961e-01 4.90092665e-01\\n2.98714072e-01 4.60475624e-01 3.36455941e-01 3.96975353e-02\\n4.84205306e-01 6.31522357e-01 3.25586706e-01 1.35912031e-01\\n-1.04838625e-01 5.89993484e-02 1.30482584e-01 5.39055020e-02\\n3.56828660e-01 4.38765883e-01 9.68327001e-02 8.80908430e-01\\n3.45427513e-01 4.18943286e-01 7.38073945e-01 -6.90734863e-01\\n-4.19316471e-01 1.03424981e-01 5.05783081e-01 -3.77308369e-01\\n3.81999239e-02 1.03753306e-01 -2.03916401e-01 1.96226269e-01\\n-5.29232264e-01 -2.69887775e-01 -7.15664402e-03 1.52644858e-01\\n5.13674244e-02 -1.82126999e-01 -2.47766644e-01 6.59377575e-02\\n-3.25102620e-02 -1.55242562e-01 -4.22062099e-01 -1.43701151e-01\\n-2.95331478e-01 3.37583013e-04 -8.18701684e-02 -8.29759464e-02\\n-5.44227585e-02 -2.02680558e-01 -7.49576464e-02 -7.23154023e-02\\n3.92525971e-01 -1.28378868e-01 -1.30298704e-01 -5.99414073e-02\\n2.44457573e-01 2.23465502e-01 5.78759432e-01 -3.00619192e-02\\n1.32586747e-01 -1.94757164e-01 -1.56179011e-01 1.59529015e-01\\n1.09332234e-01 4.06366065e-02 -1.61737129e-02 3.21369410e-01\\n-2.16229632e-01 -2.23356187e-01 1.34887159e-01 2.02912450e-01\\n-4.61161226e-01 -5.30123431e-03 -1.18303217e-01 4.38667946e-02\\n1.15935765e-02 1.05248868e-01 -2.43553177e-01 5.77133894e-03\\n-1.44268319e-01 -4.44765329e-01 3.45368415e-01 -1.87141851e-01\\n-1.22981317e-01 3.11319903e-02 3.22898597e-01 1.84897602e-01\\n-2.71895289e-01 -3.08813006e-02 -9.60706696e-02 2.23605886e-01\\n6.72718287e-02 3.03200901e-01 -1.96236119e-01 -3.89028728e-01\\n-3.22408646e-01 1.84618771e-01 -9.64381695e-02 6.35292679e-02\\n-3.23561132e-02 3.94295216e-01 9.42248255e-02 5.77734932e-02\\n4.00770128e-01 -7.06802076e-03 -2.54904628e-01 -2.18271732e-01\\n-2.29595661e-01 -1.73319787e-01 -7.83997402e-03 -5.32035045e-02\\n2.31440753e-01 -3.12721938e-01 -1.29660457e-01 -1.92686409e-01\\n-9.14446861e-02 -4.48908001e-01 -3.38442847e-02 -9.24443454e-02]]',\n", + " 'job_description': \"Open Web Technology is a technology and strategy consulting firm. We help our clients leverage new technologies to reshape their business, invent new products or transform their organization. With a large growth every year and now over 150 employees, we're a fast growing and highly connected team. Beginning of 2016, we created together with Swisscom Entreprise the joint venture Swisscom Digital Technology SA. Operating under the Open Web Technology brand, it is our goal to become a leading provider of digital transformation consulting services for large companies in Switzerland in the Telecommunications, Banks, Insurances, Media, Healthcare and Consumer Goods industries. Learn more about us at https://www.openwt.com/ Open Web Technology has an opening for a Data Scientist that will join our Team in Zurich. You bring value out of data. You enthusiastically fetch information from various sources and analyze it for better understanding about how the business performs and build AI tools that automate certain processes within the company. You help discover the information hidden in vast amounts of data, and help making smarter decisions. The main focus will be in applying machine learning and data mining techniques, doing statistical analysis, and building high quality prediction systems integrated with our clients products or processes. What responsibilities we can offer you Select features and data to build and optimize classifiers using i) machine learning techniques ii) data mining methods Extend the project’s data with third party sources of information when needed Enhance data collection procedures to include information that is relevant for building analytic systems; Automate and integrate work-/data-flow from diverse systems. Process, cleanse, and verify the integrity of data used for analysis Apply state-of-the-art neural network/deep learning algorithms if suitable in a project context Contribute to the creation of an AI value proposition at Open Web Technology and to the acquisition of new clients thanks to a clear value proposition definition Requirements What you bring At least three years experience working as a Data Scientist in a similar environment Master degree (or ongoing Master/PhD) in one of Europe’s leading universities in one of the following fields: Statistics, Mathematics, Data Mining, Computer Science, Computational Linguistics or related Ability to learn fast, take initiative, lead oneself and work independently with minimal management direction. Able and willing to acquire new skills Above-average communication and analytical skills. Independent resolution of complex tasks Dynamic, dedicated and a demanding team player Solid understanding of the main machine learning methods (supervised and unsupervised learning), and optimization techniques. Experience with data visualisation tools, such as ggplot, tableau, etc... Proficiency in using SQL databases such as MySQL, Microsoft SQL, MariaDB, etc… Experience with NoSQL databases such as MongoDB, Cassandra, etc… Experience in text analytics and Natural Language Processing (text classification, NER, topics mining, sentiment analysis) Understanding of state-of-the-art deep learning techniques. Experience working with one or more frameworks such as TensorFlow, Torch, Caffe, Theano, Keras etc. Fluency in English and preferably also in German, French or Italian Benefits Why work at Open Web Technology? Why join Open Web Technology? From your first day, you will actively contribute to the digitalization of Switzerland by serving local and global companies. From digital strategy to complex software engineering, you will help our clients reshape their business, invent new products and transform their organization using the latest technologies. You will take part in every step of our clients' digital journey and work for industries including finance, healthcare, telecommunication, media and many others. More than the diverse projects you will be part of, becoming an Openwebber will make you feel valued, stimulated and encouraged in a passionate, focused and creative team. Can we spark your interest? We look forward to receiving your application!\",\n", + " 'soft_skills': '[\"Analytical Skills\", \"Decisiveness\", \"Management\", \"Supervision\", \"Communications\", \"Operations\", \"Integration\", \"Creativity\", \"Sourcing\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Automation\", \"MySQL\", \"Sentiment Analysis\", \"Tooling\", \"Tableau (Business Intelligence Software)\", \"NoSQL\", \"Apache Cassandra\", \"Hyper SQL Database (HSQLDB)\", \"Natural Language Processing\", \"Theano (Software)\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Branding\", \"Process Automation Systems\", \"Industrialization\", \"Mathematical Statistics\", \"Value Propositions\", \"Activism\", \"Open Web\", \"Component Object Model (COM)\", \"Digital Transformation\", \"Systems Integration\", \"MariaDB\", \"Keras (Neural Network Library)\", \"Quality Management Systems\", \"Software Engineering\", \"Data-Flow Analysis\", \"Machine Learning Methods\", \"Computational Linguistics\", \"Digital Technology\", \"Library For WWW In Perl\", \"Finance\", \"Digitization\", \"Bank Insurance Model (BIM)\", \"TensorFlow\", \"Deep Learning\", \"Data Mining\", \"Java Data Mining\", \"Receivables\", \"Consumer Packaged Goods\", \"Recurrent Neural Network (RNN)\", \"Text Classification\", \"Algorithms\", \"Data Collection\", \"Microsoft SQL Servers\", \"New Product Development\", \"Telecommunications\", \"Unsupervised Learning\", \"Feature Selection\", \"Joint Ventures\", \"Text Processing\", \"Integrated Delivery Systems\"]',\n", + " 'languages': \"['English', 'Afar', 'Dhivehi', 'German']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software development engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'job_description': 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " 'languages': \"['English', 'Bosnian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.45461687e-01 3.43262911e-01 6.15293682e-01 1.68723255e-01\\n6.31978452e-01 -1.33710042e-01 2.70851236e-03 1.65711224e-01\\n5.61349802e-02 -2.83527702e-01 -1.20747387e-01 -3.08465779e-01\\n-1.85216337e-01 7.49655217e-02 1.32902443e-01 5.25913894e-01\\n3.02933633e-01 6.58070892e-02 -9.25452486e-02 4.09856409e-01\\n4.85333763e-02 -1.19624019e-01 1.99627765e-02 6.05996966e-01\\n4.38717455e-01 4.85589216e-03 -1.23940460e-01 5.85745126e-02\\n-3.67640138e-01 -1.59509405e-01 4.59741175e-01 3.00218780e-02\\n-1.36390314e-01 -3.03753465e-01 9.30625647e-02 1.88443899e-01\\n-2.45780051e-01 6.35524541e-02 -5.60881980e-02 1.08714581e-01\\n-4.48023856e-01 -2.67196566e-01 1.26575513e-04 2.63435990e-02\\n-4.84006315e-01 -1.95133254e-01 -1.02997631e-01 -1.83512613e-01\\n1.07505894e-03 3.17517109e-02 -5.11763811e-01 3.47864002e-01\\n-3.76591623e-01 -1.56540558e-01 2.15364948e-01 6.73680186e-01\\n1.13920592e-01 -5.30170918e-01 -4.18593317e-01 -2.70189613e-01\\n1.79460824e-01 -1.24290563e-01 5.65267839e-02 -2.44859219e-01\\n4.24637109e-01 -1.30107582e-01 -6.76652342e-02 3.27563554e-01\\n-7.02786267e-01 -7.38327131e-02 -3.90516281e-01 1.04633711e-01\\n-5.12302935e-01 8.34956765e-02 -4.27399904e-01 -7.27827176e-02\\n-7.65353367e-02 3.87596607e-01 1.49418889e-02 1.30541623e-01\\n-2.69149661e-01 2.35853985e-01 -2.24627420e-01 1.56795755e-01\\n2.85130918e-01 1.16631001e-01 3.17553103e-01 3.37406427e-01\\n-3.60048175e-01 3.87680739e-01 2.35565066e-01 -2.22644508e-01\\n2.72627503e-01 2.23905236e-01 2.49216124e-01 1.50175735e-01\\n-2.81461924e-02 1.46427676e-01 -7.48957247e-02 1.57573238e-01\\n1.38335317e-01 -1.89290822e-01 1.29681360e-03 -9.63151827e-02\\n-1.11622445e-01 -3.51142101e-02 -9.00565460e-02 2.56981760e-01\\n-2.69462079e-01 3.63736510e-01 1.57616854e-01 -1.21742092e-01\\n-2.13952675e-01 -4.91530985e-01 -7.94029459e-02 5.71277598e-03\\n5.89722656e-02 2.42815599e-01 2.54953265e-01 1.28894761e-01\\n2.54345715e-01 3.44272442e-02 1.65834144e-01 7.48420060e-01\\n6.46380633e-02 7.90719837e-02 -4.64388318e-02 2.56719172e-01\\n2.16428712e-01 -2.04817966e-01 9.98190418e-02 1.34344354e-01\\n-5.21298721e-02 -1.37013510e-01 -3.19277823e-01 1.54908150e-01\\n-1.97738364e-01 -1.57522395e-01 -3.26031633e-02 1.03603795e-01\\n-5.85924573e-02 -5.52407622e-01 5.56940854e-01 -1.39321312e-01\\n1.47492290e-01 -1.40823096e-01 8.18004534e-02 1.89745799e-02\\n-1.20453596e-01 2.86872387e-01 1.97944432e-01 3.14146340e-01\\n-3.16876173e-01 -3.32945168e-01 -8.14850405e-02 2.97580421e-01\\n-2.99203038e-01 6.11444302e-02 -1.77800164e-01 -2.24524125e-01\\n2.08313793e-01 2.80210823e-01 -4.40422952e-01 3.92688960e-02\\n-1.64897546e-01 -3.61508131e-01 -7.53517523e-02 4.07033026e-01\\n-2.29690492e-01 3.47381271e-02 4.25354354e-02 -2.04159096e-01\\n5.91664732e-01 3.34666997e-01 3.48034620e-01 7.13559240e-02\\n2.93484509e-01 -8.28671604e-02 1.95962578e-01 1.19819835e-01\\n-5.48224390e-01 4.53206241e-01 -7.21022710e-02 -1.20093137e-01\\n1.55160189e-01 -4.29005222e-03 5.33911288e-01 -2.55125731e-01\\n7.08123520e-02 -2.73425549e-01 -3.98488969e-01 -3.28018367e-01\\n-2.01745167e-01 -4.71614162e-03 2.41513908e-01 -4.28132892e-01\\n-2.72477549e-02 2.84833610e-01 -5.54901481e-01 -3.44703883e-01\\n2.48491779e-01 2.64501572e-01 1.24275722e-01 1.11069463e-01\\n-7.49188885e-02 -5.81132710e-01 3.52200493e-02 -4.68015492e-01\\n-4.04421896e-01 -2.49529462e-02 -2.35090986e-01 7.26369992e-02\\n2.09378707e-03 5.72107546e-02 -6.81692809e-02 1.47310808e-01\\n-4.60180581e-01 -5.69276186e-03 1.68984950e-01 7.65245333e-02\\n2.34405279e-01 5.07103950e-02 -3.28127623e-01 4.73230064e-01\\n-2.97188491e-01 4.06588852e-01 2.56001800e-01 -8.61419439e-01\\n5.68426192e-01 2.49251202e-01 -9.23789386e-03 -3.70304197e-01\\n3.55671316e-01 -5.21526814e-01 -9.33561474e-02 6.13200702e-02\\n-1.41961440e-01 -1.18798777e-01 3.58180255e-01 -2.11132541e-01\\n-3.36047292e-01 6.20433509e-01 2.35908362e-03 2.14491393e-02\\n2.82808483e-01 -2.64506191e-01 -1.93436399e-01 -8.65863860e-02\\n-2.13617504e-01 -1.74542964e-01 -4.14833516e-01 1.05244197e-01\\n-1.17108673e-01 -3.61885488e-01 -1.20978840e-02 -4.01279509e-01\\n-1.71324447e-01 -3.74649614e-01 -2.43649229e-01 1.37523890e-01\\n1.03392281e-01 1.02420680e-01 -1.07934214e-01 -1.12184927e-01\\n4.49085459e-02 -7.18636513e-01 -1.08725198e-01 3.38901728e-02\\n4.67912167e-01 3.53729159e-01 2.49563023e-01 -3.06874942e-02\\n1.34701774e-01 5.50828516e-01 -3.78461152e-01 -3.41959029e-01\\n1.94010869e-01 7.87123740e-02 -7.61139914e-02 -1.88431054e-01\\n9.72933695e-02 2.94423610e-01 -1.13456510e-01 -2.27196217e-02\\n-2.34625340e-02 -8.72244164e-02 3.38978827e-01 -1.86698392e-01\\n-7.74503350e-02 -1.19251415e-01 -1.19027205e-01 2.15748593e-01\\n-4.69213605e-01 -3.27243894e-01 4.54755723e-01 2.73361355e-01\\n6.90143108e-02 1.59466878e-01 1.22338146e-01 3.06858253e-02\\n-3.56309325e-01 -3.44995469e-01 2.81258106e-01 5.26752323e-02\\n2.10426226e-02 2.32512020e-02 -9.39681455e-02 -4.66961682e-01\\n-3.41530514e+00 -4.89200465e-02 1.88928209e-02 -2.33290076e-01\\n2.06701115e-01 -1.16324559e-01 7.14488551e-02 8.33488926e-02\\n-2.54712850e-01 2.46551782e-02 -1.70670226e-01 -5.18839620e-02\\n-4.48602065e-02 3.16103458e-01 9.33014527e-02 3.84817459e-02\\n1.50618181e-01 -2.40652099e-01 -6.99588358e-02 4.64907378e-01\\n-5.03926426e-02 -7.21057892e-01 1.19978031e-02 -6.88524991e-02\\n1.16542250e-01 3.62804383e-02 -3.44559759e-01 -3.02171819e-02\\n-3.21783900e-01 -2.56358087e-01 1.22749627e-01 -2.08536252e-01\\n-2.81398982e-01 2.91674465e-01 9.45580378e-02 -1.22985423e-01\\n-1.07198246e-01 -2.07788631e-01 4.29763123e-02 -5.06992817e-01\\n1.38960734e-01 -7.14000523e-01 -3.75835085e-03 -1.36628980e-02\\n5.84856808e-01 -1.64641231e-01 2.87528217e-01 2.15728775e-01\\n1.43553928e-01 -2.11164355e-02 1.85156792e-01 -2.40447223e-02\\n-3.00616443e-01 -3.65209341e-01 -1.73802361e-01 -1.65254921e-01\\n7.18893945e-01 3.11277181e-01 -1.00720927e-01 4.06202003e-02\\n1.48488835e-01 -3.96242350e-01 -4.87545133e-01 -3.24758112e-01\\n-2.00086564e-01 -2.91414410e-02 -7.20060468e-01 -4.81994331e-01\\n-1.55218065e-01 -6.59109652e-02 -6.73054308e-02 6.08512819e-01\\n-2.30624467e-01 -2.35324755e-01 -9.80691239e-02 -5.47575474e-01\\n3.01923841e-01 -2.56308615e-01 7.10346103e-02 -2.84368575e-01\\n-3.69654059e-01 -4.39549536e-01 1.94489911e-01 -7.30335712e-02\\n-1.74198464e-01 -4.19544689e-02 4.42416826e-03 -2.55530346e-02\\n-3.16013843e-01 -4.68978614e-01 3.87457669e-01 -7.38938227e-02\\n5.66275418e-01 -1.93598811e-02 3.69431734e-01 -3.46119925e-02\\n4.53283936e-01 4.04478759e-02 6.70731217e-02 -3.57496947e-01\\n3.89862061e-02 9.76228192e-02 5.74111104e-01 -3.17048788e-01\\n1.51545368e-02 5.27623780e-02 -3.08390975e-01 -2.96667311e-02\\n4.49939996e-01 -8.85708705e-02 2.20472310e-02 1.29609928e-01\\n2.93131948e-01 -5.13617575e-01 -1.67040884e-01 9.37559307e-02\\n2.07114331e-02 6.25210166e-01 8.27597529e-02 -4.07331586e-01\\n-1.11273929e-01 4.29297835e-01 -4.31382656e-02 9.85256210e-02\\n1.40072210e-02 3.53567190e-02 -1.91602737e-01 4.36737925e-01\\n6.76571205e-02 -2.30549023e-01 -2.99353838e-01 -5.79375066e-02\\n-1.22554377e-01 1.47152618e-01 2.32998729e-01 5.80248684e-02\\n2.30642874e-02 -1.88655838e-01 -1.41187340e-01 2.42510632e-01\\n3.64463717e-01 3.65966976e-01 1.69769868e-01 -2.06511483e-01\\n-3.01502086e-02 1.83349729e-01 -2.99083263e-01 3.48169565e-01\\n-1.27524719e-01 2.09569365e-01 -6.27479970e-01 -1.67405650e-01\\n-1.59385994e-01 -3.01116407e-01 1.80501446e-01 4.40081328e-01\\n1.78961992e-01 -5.30513488e-02 7.60693401e-02 -6.42368913e-01\\n3.03089231e-01 1.92367941e-01 6.74932748e-02 5.81117831e-02\\n-6.86723888e-02 7.66072035e-01 7.73418928e-03 -1.43100947e-01\\n-7.07146376e-02 6.74823150e-02 -2.32413217e-01 -2.76889890e-01\\n1.95446298e-01 -4.39832419e-01 -1.54774651e-01 4.27938849e-01\\n2.34089985e-01 -1.09297372e-01 -2.49130368e-01 3.81763130e-01\\n3.89791578e-02 -2.84468800e-01 -3.06159139e-01 1.25431806e-01\\n1.79428443e-01 1.53226063e-01 2.64915735e-01 -4.06858534e-01\\n2.95755677e-02 -6.43591061e-02 3.33670489e-02 2.90400386e-01\\n1.25907227e-01 1.60914645e-01 -1.03613377e-01 -8.00869390e-02\\n5.92269003e-01 2.13902250e-01 -1.93431601e-01 4.88454401e-02\\n1.31396770e-01 -3.11934203e-01 -3.23265314e-01 4.99575362e-02\\n-7.23004490e-02 -2.55732179e-01 4.89906594e-02 1.26175076e-01\\n-1.98582839e-02 -1.09883539e-01 -4.22232568e-01 -1.49054885e-01\\n-2.76382953e-01 -4.19594254e-03 7.95240551e-02 -6.09321535e-01\\n-1.25130400e-01 -4.41221595e-02 -5.01111627e-01 1.83672741e-01\\n-5.27021736e-02 5.33580787e-05 2.71256030e-01 1.98814914e-01\\n-8.46277624e-02 -1.26714602e-01 1.36952549e-01 2.10997999e-01\\n-3.23518217e-01 -3.27558994e-01 -5.72009571e-02 -1.03193188e+00\\n3.04551963e-02 1.11054741e-01 -1.45765826e-01 1.08695358e-01\\n8.33023041e-02 -6.83981776e-01 1.24660581e-01 -4.37347561e-01\\n-3.09376530e-02 3.66117503e-03 -2.97971278e-01 -2.48662859e-01\\n6.27181306e-02 -1.51279658e-01 -3.54465693e-01 3.55348527e-01\\n-3.01621735e-01 4.08321589e-01 -6.51673600e-02 3.44344079e-02\\n9.32064950e-02 -1.22898012e-01 2.10284740e-01 -1.23457193e-01\\n-2.18952820e-01 -3.70516568e-01 -3.75666648e-01 -2.92722791e-01\\n-9.49626490e-02 -1.50642008e-01 -1.35448113e-01 2.66333390e-02\\n4.37410444e-01 1.52030051e-01 -1.20548859e-01 -8.96442533e-02\\n1.49293214e-01 -4.98202682e-01 6.33919239e-02 -3.37238431e-01\\n-8.34103450e-02 -1.63629994e-01 2.81054586e-01 -5.95019460e-02\\n2.14466199e-01 -3.42060924e-01 5.20700216e-01 -2.16495201e-01\\n-3.86916339e-01 -1.46672249e-01 6.11792058e-02 9.55975130e-02\\n2.80735105e-01 -4.01661009e-01 1.17136076e-01 2.50661612e-01\\n4.03542332e-02 4.11687829e-02 2.98279077e-01 -8.22580531e-02\\n-8.96562859e-02 5.44565618e-02 -6.74461126e-01 8.79601464e-02\\n7.13376462e-01 2.83797890e-01 1.62912562e-01 1.20529234e-01\\n9.61805880e-02 2.42521882e-01 5.25316656e-01 -1.42605335e-01\\n-2.51624677e-02 3.05517584e-01 9.43161175e-02 -4.76335078e-01\\n-2.37158775e-01 -2.13028684e-01 -7.52407387e-02 -3.07486802e-01\\n5.85317731e-01 2.71951765e-01 -2.87705988e-01 -3.35809946e-01\\n-1.35284960e-01 -8.27378929e-02 3.52562517e-01 6.41786382e-02\\n-1.44241184e-01 9.70631838e-03 5.05854189e-01 4.50406820e-02\\n2.83908457e-01 4.26924080e-01 -8.60817507e-02 -2.25579292e-01\\n-5.51485121e-02 1.86164543e-01 1.40627697e-01 3.20042342e-01\\n-2.00698733e-01 1.30719393e-01 -6.14636280e-02 1.25273883e-01\\n-2.33439341e-01 2.49223653e-02 1.41840041e-01 1.40141606e-01\\n2.45270178e-01 1.36888862e-01 2.90388674e-01 4.51820850e-01\\n1.10721752e-01 3.42675507e-01 2.38971010e-01 -6.04136921e-02\\n2.38155350e-01 5.43040693e-01 3.36177975e-01 4.02082428e-02\\n1.23461410e-02 1.06996074e-01 9.68925878e-02 -8.85592997e-02\\n2.74497867e-01 3.96090031e-01 2.17187256e-01 5.96714854e-01\\n9.02913138e-02 5.20967484e-01 7.97358632e-01 -5.96352816e-01\\n-4.60837215e-01 -9.24533885e-03 6.38803780e-01 -3.52302045e-01\\n6.79744855e-02 2.06874356e-01 -3.47421080e-01 1.87796980e-01\\n-6.09354734e-01 -2.64300585e-01 1.06963396e-01 -2.99479105e-02\\n-1.62936337e-02 -6.85544014e-02 -4.72488925e-02 1.89514682e-01\\n-9.89639312e-02 -3.02131325e-01 -2.00534016e-01 -2.26358682e-01\\n-3.00919712e-01 8.85518491e-02 5.77768730e-03 -4.85662520e-02\\n1.62085034e-02 -2.14576438e-01 4.06952240e-02 -3.30120400e-02\\n3.73546124e-01 -2.89822929e-02 -3.75518709e-01 -7.51640573e-02\\n1.52700230e-01 1.35392874e-01 5.91454446e-01 2.72085406e-02\\n1.07000269e-01 -6.70243725e-02 -2.10967943e-01 1.16635866e-01\\n1.52001619e-01 1.23591632e-01 8.38922039e-02 3.24338466e-01\\n-2.67904311e-01 -2.10667297e-01 8.81456137e-02 7.74200186e-02\\n-3.67181480e-01 -1.21740289e-02 -1.04218759e-01 1.36623308e-01\\n-6.57823309e-02 1.45621344e-01 -1.62430406e-01 -1.39385657e-02\\n-1.51032135e-01 -5.64263701e-01 3.84673148e-01 -1.91514179e-01\\n-3.23953211e-01 -8.12249780e-02 3.47107202e-01 2.53185868e-01\\n-1.75987378e-01 -1.03107383e-02 -2.50483096e-01 2.04263359e-01\\n-6.43269941e-02 2.97567606e-01 -5.51350862e-02 -1.82020769e-01\\n-3.62191111e-01 3.23454887e-01 4.65417206e-02 2.03021705e-01\\n-9.38285887e-02 5.71872115e-01 -1.53819174e-01 -1.14159696e-02\\n3.35298866e-01 -1.23696094e-02 -2.71286696e-01 -3.07480246e-01\\n-2.84505427e-01 2.40708459e-02 1.10141233e-01 5.15100099e-02\\n2.30976224e-01 -2.89912581e-01 -1.59454532e-02 -3.80179524e-01\\n-6.33889884e-02 -4.22186315e-01 -1.10984311e-01 4.88775149e-02]]',\n", + " 'job_description': 'Job Informationen Essential Duties and Responsibilities: - Responsible for developing, maintaining, and testing infrastructures for data generation, expanding and optimizing the companies data and data pipeline architecture, as well as optimizing data flow and collection for cross functional teams - Support software developers, database architects, data analysts and data scientists on data initiatives and will ensure optimal data delivery architecture is consistent throughout ongoing projects - Assemble large, complex data sets that meet functional / non-functional business requirements - Identify, design, and implement internal process improvements: automating manual processes, optimizing data delivery, re-designing infrastructure for greater scalability, etc. - Setup the infrastructure required for optimal extraction, transformation, and loading of data from a wide variety of data sources using SQL and no-SQL ‘big data’ technologies - Create data tools for analytics and data scientist team members that assist them in building and optimizing our product into an innovative industry leader - Work with data and analytics experts to strive for greater functionality in our data systems - Working closely with Engineering Teams to ensure tracking quality and data accuracy and integrity - Set data standards and clearly define the range of acceptable values and attributes for data - Develop and maintain a data inventory and contribute to the centrally maintained data inventory - Implement data retention requirements consistent with legal or company policies Required Skills: - B.S. or Master in IT (Specialisation in Data/Big Data Systems preferred), Mathematics, Statistics or similar quantitative field - 3 years plus experience in Big Data processing with good awareness of latest cloud based solutions - 3 years plus experience with major ETL tools, data integration and manipulation - Functional Java development (Scala is a plus) - Experience with Google Analytics and Google Big Query - SQL and Database Development (MS SQL Server is a plus) - Open minded for new technologies - Creative and innovative team player - Fluent in English and German Benötigte Skills Englisch SQL SQL Server ETL Google Analytics NoSQL Test',\n", + " 'soft_skills': '[\"Innovation\", \"Infrastructure\", \"Creativity\", \"Integration\"]',\n", + " 'hard_skills': '[\"Automation\", \"Tooling\", \"Data Encryption Standard\", \"NoSQL\", \"Google Analytics\", \"Java Development Tools\", \"Collections\", \"Data Retention\", \"Analytics\", \"Pentaho Data Integration\", \"Database Development\", \"Data Integration\", \"Industrialization\", \"Process Improvements\", \"Scala (Programming Language)\", \"SQL (Programming Language)\", \"Maintainability\", \"Tracking (Commercial Airline Flight)\", \"Data System\", \"Extract Transform Load (ETL)\", \"Process Optimization\", \"Minimum Data Set\", \"Business Requirements\", \"Project-Based Solutions\", \"Scalability\", \"Big Data\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"SQL Server Reporting Services\", \"Software Development\", \"Amazon Data Pipeline\", \"Microsoft SQL Servers\", \"Data-Flow Analysis\", \"B (Programming Language)\", \"Source Data\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'etl/data management engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.82886654e-01 2.94222355e-01 4.60425436e-01 8.91190618e-02\\n5.80254436e-01 -1.22408994e-01 -2.27416074e-03 1.42229363e-01\\n-2.09328532e-02 -2.62084484e-01 -6.67846799e-02 -2.47497514e-01\\n-6.66818619e-02 4.66556065e-02 4.12734263e-02 3.53907466e-01\\n2.94407368e-01 5.16126938e-02 -1.44064829e-01 3.51744860e-01\\n9.09873620e-02 -8.55234731e-03 1.14045799e-01 5.33777714e-01\\n2.49999702e-01 1.71568617e-03 -9.87909436e-02 2.73114629e-02\\n-2.96015710e-01 -2.46629566e-01 3.76834929e-01 4.18761224e-02\\n-2.57091761e-01 -2.75942773e-01 3.74203846e-02 1.93852298e-02\\n-2.93152720e-01 -7.63805211e-02 2.01705527e-02 5.89236505e-02\\n-3.12672794e-01 -2.41865084e-01 -6.52537867e-02 2.25883648e-02\\n-3.68917108e-01 -2.23576099e-01 -4.76847701e-02 -7.10331425e-02\\n-1.40885770e-01 3.33609097e-02 -4.65750605e-01 2.50394464e-01\\n-1.95079952e-01 -1.32257700e-01 2.80050993e-01 5.91243148e-01\\n2.86980607e-02 -5.35603881e-01 -3.67752373e-01 -2.68577248e-01\\n1.77125722e-01 -1.50052577e-01 7.23767132e-02 -1.20473541e-01\\n4.67886031e-01 -1.35394543e-01 4.65267058e-03 3.54981840e-01\\n-6.73109412e-01 -4.34691198e-02 -2.85936803e-01 4.29135561e-02\\n-3.97870421e-01 -4.33701649e-02 -2.28451222e-01 -2.52931476e-01\\n2.95568054e-04 3.21657240e-01 4.34875451e-02 6.16574362e-02\\n-2.04258069e-01 2.19841748e-01 -1.23642094e-01 1.01892725e-01\\n3.50744724e-01 9.24138427e-02 2.16570035e-01 2.00282171e-01\\n-4.54654604e-01 4.02896315e-01 3.36163551e-01 -2.81646758e-01\\n2.14242175e-01 3.86249088e-02 3.13697785e-01 1.35442257e-01\\n-4.63122763e-02 2.19277918e-01 1.45090474e-02 1.16766728e-01\\n2.72232722e-02 -1.29525393e-01 -3.86340320e-02 -1.44338179e-02\\n-3.60555686e-02 -8.55849832e-02 -3.98940556e-02 2.73893893e-01\\n-2.86561012e-01 2.69940287e-01 1.31063282e-01 -1.39675409e-01\\n-2.62371227e-02 -4.67194438e-01 -1.15251288e-01 -2.39910603e-01\\n-8.88643228e-03 1.78231850e-01 3.25242490e-01 1.93245411e-01\\n2.74064690e-01 9.05287638e-02 2.45486677e-01 8.26432228e-01\\n2.94108540e-02 6.87492788e-02 -2.70480067e-01 4.06487256e-01\\n1.72809020e-01 -2.63654172e-01 1.76037923e-01 2.03488350e-01\\n2.39853486e-02 -1.32417148e-02 -2.44581312e-01 2.20447555e-01\\n-1.43666029e-01 -2.14284346e-01 -1.59997627e-01 7.37251192e-02\\n-2.58328646e-01 -4.74983722e-01 3.14343631e-01 5.62342964e-02\\n1.19324580e-01 -1.44343629e-01 -4.29588072e-02 -2.25478150e-02\\n-1.59657970e-01 3.54074597e-01 -1.13120303e-02 2.46760041e-01\\n-2.84581542e-01 -1.79397702e-01 -7.82394037e-02 3.10006946e-01\\n-4.61644530e-02 3.14127617e-02 -1.66080162e-01 -1.73593089e-01\\n2.27763280e-01 9.58850160e-02 -4.53318089e-01 1.81062132e-01\\n5.36305718e-02 -4.01964515e-01 -1.75364450e-01 3.84028554e-01\\n-1.51382029e-01 5.80714457e-02 -1.67077742e-04 -2.36360237e-01\\n5.01266837e-01 2.39639848e-01 2.03717276e-01 -8.40321034e-02\\n2.30118409e-01 -1.93768784e-01 3.55393946e-01 1.79439306e-01\\n-5.87054551e-01 3.75960916e-01 -1.39848158e-01 -1.35463938e-01\\n6.40802905e-02 7.82345086e-02 4.03140455e-01 -2.78279334e-01\\n6.67369440e-02 -1.81013122e-01 -3.47027153e-01 -4.54138964e-01\\n-1.65052503e-01 1.09524541e-01 3.12953949e-01 -3.91538322e-01\\n-1.24066651e-01 1.76465154e-01 -4.77721781e-01 -1.98592976e-01\\n2.15340719e-01 1.66240051e-01 4.74068522e-02 1.42266840e-01\\n-7.64120892e-02 -4.76231813e-01 7.69889206e-02 -4.85842049e-01\\n-3.71001452e-01 1.20211607e-02 -1.72866330e-01 1.05673566e-01\\n6.38870001e-02 2.51073018e-02 -4.18449081e-02 1.45813867e-01\\n-4.44911331e-01 -2.43950300e-02 2.84102589e-01 1.44285604e-01\\n2.07106754e-01 -4.22451124e-02 -3.19223374e-01 5.23643911e-01\\n-2.43879750e-01 4.08331603e-01 2.01205909e-01 -8.84252667e-01\\n4.95560527e-01 1.03606172e-01 7.17204716e-03 -3.16100448e-01\\n4.64358717e-01 -4.61003691e-01 5.49336746e-02 1.46086082e-01\\n-1.60880595e-01 -6.44245073e-02 3.24695170e-01 -1.70436770e-01\\n-2.77647436e-01 6.71607137e-01 1.63556665e-01 8.88292026e-03\\n2.66937107e-01 -2.20775336e-01 -2.19743058e-01 -1.56572342e-01\\n-1.94035515e-01 -2.05364391e-01 -3.83536667e-01 1.85088202e-01\\n-5.28821982e-02 -5.22306919e-01 -9.53096896e-02 -4.44287777e-01\\n-1.30557582e-01 -3.79058182e-01 -2.02975199e-01 3.21203202e-01\\n4.33853567e-02 1.45933598e-01 -1.13316610e-01 1.56420767e-02\\n-4.90301922e-02 -6.03468299e-01 -6.17831163e-02 1.26911968e-01\\n4.28523600e-01 3.39355379e-01 1.71158284e-01 -1.05147332e-01\\n2.26129107e-02 4.53190804e-01 -3.04319441e-01 -3.14085782e-01\\n1.35958984e-01 1.51304841e-01 2.51673963e-02 -1.96706355e-01\\n7.63176605e-02 3.70329022e-01 2.95457225e-02 4.08023037e-03\\n-7.79841514e-03 -2.07945909e-02 3.63795847e-01 -1.65872887e-01\\n-2.23852739e-01 -1.79152474e-01 3.01720779e-02 3.27635616e-01\\n-3.84498209e-01 -1.78792909e-01 5.65774858e-01 3.00352216e-01\\n-8.37727915e-03 2.11740956e-01 2.61337936e-01 -8.84048790e-02\\n-3.09285760e-01 -2.05925569e-01 1.74438387e-01 1.41874224e-01\\n1.49312511e-01 -6.18624911e-02 -2.67253608e-01 -4.92757648e-01\\n-3.70545888e+00 -1.75145358e-01 4.51356098e-02 -3.33191454e-01\\n2.75775284e-01 -1.89907745e-01 1.70324430e-01 8.68595019e-02\\n-2.99405396e-01 1.08432457e-01 -1.85475811e-01 -5.89571893e-02\\n1.10887125e-01 2.99181312e-01 2.22464874e-01 1.51464894e-01\\n7.18299206e-03 -2.05344945e-01 -5.11051528e-02 3.41718644e-01\\n-9.52382907e-02 -7.28348255e-01 1.19625255e-01 3.85021307e-02\\n1.20457783e-01 6.61793053e-02 -3.74222130e-01 -7.52567276e-02\\n-2.05438823e-01 -2.91201949e-01 5.75736463e-02 -1.76061481e-01\\n-2.19873965e-01 3.44346374e-01 1.30152524e-01 -1.49123847e-01\\n-1.55652668e-02 -2.74759382e-01 1.43121742e-02 -6.11347198e-01\\n5.34177944e-03 -6.12069249e-01 1.94613963e-01 -6.75398856e-02\\n4.96885896e-01 -2.90976763e-01 2.30536848e-01 2.08034888e-01\\n1.07845582e-01 2.14897633e-01 7.88817927e-02 -5.97029142e-02\\n-3.48980784e-01 -3.71086627e-01 -1.61017030e-01 -2.47436672e-01\\n5.12117028e-01 4.10130382e-01 -1.92550018e-01 5.92327341e-02\\n4.44644466e-02 -2.66785353e-01 -3.98478329e-01 -5.46132565e-01\\n-2.53807187e-01 9.03500244e-03 -7.82704294e-01 -4.69426453e-01\\n-4.53139469e-02 -8.54138583e-02 -1.46429867e-01 5.46790183e-01\\n-3.36801559e-01 -3.96242797e-01 3.57567631e-02 -5.05939066e-01\\n1.43684864e-01 -2.28202417e-01 1.28508732e-01 -1.51747614e-01\\n-3.67936999e-01 -3.48679811e-01 2.53284067e-01 -4.07562405e-02\\n-2.16849506e-01 -9.13586188e-03 8.00555646e-02 -1.82286590e-01\\n-3.72587740e-01 -4.15227801e-01 4.66153175e-01 1.94671117e-02\\n4.69715357e-01 3.81937958e-02 2.66449809e-01 1.65849507e-01\\n3.17319304e-01 -6.73990399e-02 1.62383169e-01 -3.85414511e-01\\n1.79283649e-01 1.07240282e-01 6.18297577e-01 -2.07874268e-01\\n1.09081268e-01 6.63672686e-02 -1.88842729e-01 -7.81591535e-02\\n5.35061419e-01 -1.32347364e-02 8.49006623e-02 -8.75882730e-02\\n3.38033080e-01 -6.07275724e-01 -2.65150607e-01 1.17672846e-01\\n9.44200233e-02 6.13503218e-01 1.19173340e-01 -4.02489305e-01\\n-2.19130918e-01 3.56717497e-01 -1.26071721e-02 -2.33864412e-01\\n-3.53765823e-02 1.35697871e-01 -2.34675512e-01 2.59641260e-01\\n4.14398238e-02 -1.02745414e-01 -3.59763771e-01 -1.06252946e-01\\n-4.67447843e-03 1.19895190e-01 2.77552038e-01 6.61204383e-02\\n-6.60742894e-02 -2.33615443e-01 -1.90102652e-01 4.89880852e-02\\n2.98529118e-01 1.81235000e-01 2.24934995e-01 -2.62540191e-01\\n-2.13816855e-02 1.65657818e-01 -2.74155170e-01 3.02139819e-01\\n-1.35436013e-01 1.42720565e-01 -5.82320452e-01 -1.70144081e-01\\n-1.51287749e-01 -1.94778919e-01 8.35760906e-02 3.25489670e-01\\n1.81200728e-01 -1.40136987e-01 1.54467430e-02 -5.23435891e-01\\n4.35875148e-01 -2.82716844e-02 1.70422569e-01 9.22565684e-02\\n2.94304453e-02 7.03125238e-01 2.95264088e-03 -1.09940767e-01\\n-1.09581277e-01 -2.67154798e-02 -2.31087551e-01 -3.07278395e-01\\n5.39803095e-02 -2.59378791e-01 -8.58666599e-02 5.35481930e-01\\n1.20779574e-01 -8.31534117e-02 -1.36404946e-01 3.87143344e-01\\n1.09270610e-01 -1.96883649e-01 -2.42362648e-01 5.10866418e-02\\n2.09193319e-01 9.68971178e-02 2.04913914e-01 -4.28164333e-01\\n-1.00052536e-01 9.71419830e-03 9.22156200e-02 4.18972433e-01\\n9.07589570e-02 1.13051079e-01 8.00696462e-02 -1.78453311e-01\\n5.67054152e-01 9.60334912e-02 -1.61276042e-01 -4.16291095e-02\\n8.18549991e-02 -2.63172269e-01 -3.66695851e-01 -1.09995067e-01\\n-9.64917988e-02 -2.23073721e-01 2.55745560e-01 5.22744097e-02\\n1.95555717e-01 -9.80728865e-02 -4.56767470e-01 -1.71233147e-01\\n-3.33397716e-01 1.05997268e-02 4.54052240e-02 -5.49170792e-01\\n7.20491707e-02 -4.02183048e-02 -5.27858436e-01 3.13907892e-01\\n-6.82210624e-02 2.87611466e-02 4.38999087e-02 1.24755196e-01\\n-2.77270526e-01 -4.56051975e-02 1.84207201e-01 4.15170975e-02\\n-3.24693471e-01 -1.89134091e-01 1.03409514e-01 -1.02677321e+00\\n1.26676291e-01 1.24714851e-01 -1.02524810e-01 9.12181381e-03\\n8.75782669e-02 -6.86721325e-01 2.37778530e-01 -4.06053632e-01\\n-7.56057398e-03 -4.57257964e-03 -2.36406073e-01 -4.07695919e-01\\n1.46696419e-01 -2.19663139e-02 -2.56065100e-01 3.84693533e-01\\n-3.89456242e-01 4.32754338e-01 1.27826676e-01 5.91984876e-02\\n1.53819114e-01 -2.34336719e-01 1.32655367e-01 -3.81609589e-01\\n-4.15430486e-01 -1.81145430e-01 -2.93640137e-01 -2.54610360e-01\\n-8.88466015e-02 -2.28400633e-01 -1.50495395e-01 -2.77552884e-02\\n3.91699553e-01 2.24117577e-01 -1.40014201e-01 -7.14004189e-02\\n6.24056756e-02 -4.05117482e-01 1.56435832e-01 -2.42518619e-01\\n-5.91115654e-02 -1.99989334e-01 2.68097073e-01 -1.71795413e-01\\n9.27866921e-02 -2.71515489e-01 5.77060580e-01 -1.37729213e-01\\n-3.95731568e-01 -1.86347678e-01 5.90676442e-02 8.92457217e-02\\n2.38279104e-01 -3.88063729e-01 -2.41003968e-02 1.94012061e-01\\n8.53145570e-02 4.54582050e-02 3.37285161e-01 -1.97537899e-01\\n-2.25930333e-01 1.92313790e-01 -7.05771923e-01 6.10249862e-02\\n6.82253838e-01 2.02412605e-01 1.93549827e-01 1.69807494e-01\\n1.01577930e-01 2.09796920e-01 4.54385430e-01 2.13664747e-03\\n-8.87271240e-02 3.08477372e-01 8.38583484e-02 -4.62562799e-01\\n-2.56530195e-01 -1.18178479e-01 -9.12429169e-02 -3.12077522e-01\\n6.00719333e-01 2.44438425e-01 -2.86056340e-01 -2.81719714e-01\\n-1.27973139e-01 -1.61838055e-01 2.74550498e-01 -8.84317979e-02\\n1.99341495e-02 -1.38268024e-01 5.38621426e-01 -2.00403202e-02\\n3.59399766e-01 4.73276496e-01 -4.53353636e-02 -2.79446363e-01\\n-6.81195483e-02 9.69032496e-02 2.03922927e-01 3.63635331e-01\\n-3.88119631e-02 1.69245183e-01 -2.68129483e-02 1.92381427e-01\\n-2.49094963e-01 6.99633658e-02 1.82192370e-01 1.35943398e-01\\n1.18421189e-01 1.13834448e-01 3.02066714e-01 3.77151072e-01\\n1.61942095e-01 4.88721550e-01 2.90234864e-01 1.17897335e-02\\n2.86609024e-01 5.61670899e-01 3.62650424e-01 2.09031664e-02\\n-1.72452368e-02 -1.34397438e-03 -6.00425759e-03 -9.80878398e-02\\n2.66844004e-01 4.00953531e-01 1.78661600e-01 7.92297542e-01\\n3.81030142e-01 4.69571769e-01 6.65763676e-01 -5.81439257e-01\\n-3.38499695e-01 7.01029450e-02 5.27422071e-01 -4.24675196e-01\\n-1.15226600e-02 2.22959548e-01 -2.94509798e-01 1.74073622e-01\\n-4.76969540e-01 -1.11876033e-01 1.64432377e-02 -2.09081516e-01\\n1.81886092e-01 -5.40319495e-02 -1.03571445e-01 1.75274074e-01\\n-1.46334127e-01 -3.06722492e-01 -2.45710105e-01 -3.27428162e-01\\n-2.81335264e-01 -3.18170637e-02 1.37376375e-02 5.17725796e-02\\n-1.01050004e-01 -3.36548805e-01 -4.33592014e-02 -7.56449997e-02\\n2.87910938e-01 -1.12311140e-01 -2.56788254e-01 -2.42934436e-01\\n6.04452938e-02 2.52319574e-01 6.51116431e-01 -5.15322722e-02\\n1.56707704e-01 -1.43173799e-01 -1.64815903e-01 -1.97396148e-02\\n1.18266575e-01 8.40550810e-02 1.19694784e-01 5.36740124e-01\\n-3.47601354e-01 -1.06118089e-02 1.81385696e-01 2.85657704e-01\\n-2.80745924e-01 7.72655103e-03 -4.40036133e-02 1.13661341e-01\\n8.68786722e-02 1.48535371e-01 -2.95798182e-01 1.02083266e-01\\n-2.39531070e-01 -6.30290270e-01 4.37041938e-01 -2.70404428e-01\\n-2.07981914e-01 1.77585948e-02 2.69734651e-01 2.63415247e-01\\n-1.60903558e-01 -3.98087054e-02 -2.11894643e-02 2.90844679e-01\\n-1.82208642e-02 4.13718879e-01 -2.04718992e-01 -1.17175870e-01\\n-3.15127075e-01 3.56620342e-01 7.70842209e-02 2.77343035e-01\\n-6.69359639e-02 4.67369735e-01 -4.68422361e-02 2.11542517e-01\\n1.95739999e-01 -1.32849231e-01 -3.22134405e-01 -2.83049375e-01\\n-2.95024723e-01 -1.34278312e-01 1.27348751e-01 -8.67331624e-02\\n2.76996523e-01 -2.31331080e-01 -8.70255977e-02 -2.02845186e-01\\n-1.96796685e-01 -4.12543774e-01 -8.97406414e-02 9.64909419e-02]]',\n", + " 'job_description': \"Job Informationen Key responsibilities: - Technical ownership of our's ETL processes, Master Data Management and Infomatica PowerCenter application - Design and development of backend data integration - Act as SME with third parties providing design, development and support services - Integrate with the existing middleware, data sources and the bank’s DWH solution - Build and improve data integration architecture and drive simplification - Provide change and project support for initiatives related to backend data integration - Liaise with business stakeholders and data owners of respective systems - Liaise with production support and operations teams for the all ETL flows Your profile: - Experience with ETL tools such as Infomatica PowerCenter, or similar - Advanced knowledge of PL/SQL, and different database technologies is a plus - Experience with Application Lifecycle Management - Deep knowledge of data types, data architecture disciplines and MDM concepts - Knowledge of Data infrastructure and migration principles in theory and practice - Solid experience with data modeling and database design for operational as well as analytical systems - Experience with different integration patterns, batch, online, asynchronous, etc. - Basic knowledge of both Windows and Linux operating systems and shell scripting - Working proficiency in development toolsets, e.g. Eclipse or similar - Proficiency in one or more general purpose programming languages understanding of software skills such as -business analysis, development, maintenance and software improvement - Experience in Data Warehousing environment, experience in handling large volume of data is a plus - Ability to work and technically coordinate with 3rd party vendors (both onsite and offshore) - Work experience in financial or banking industry is a plus - Team player with good communication skills and an open style to provide transparency to management - ITIL 3.0 foundation certification - English and german spoken and written Benötigte Skills Englisch ITIL Banken / Finanzgesellschaften Datawarehouse Eclipse W2008 W2012 Linux Shell-Scripts PL/SQL ETL\",\n", + " 'soft_skills': '[\"Coordinating\", \"Verbal Communication Skills\", \"Operations\", \"Integration\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Tooling\", \"KM Programming Language\", \"Shell Script\", \"Joint Application Design (JAD)\", \"Application Lifecycle Management\", \"Data Modeling\", \"Pentaho Data Integration\", \"Analytics\", \"Middleware\", \"Operating System Development\", \"Data Integration\", \"Industrialization\", \"Data Warehousing\", \"Offshoring\", \"ITIL Security Management\", \"Apex Data Loader\", \"Linux\", \"E (Programming Language)\", \"Eclipse (Software)\", \"Extract Transform Load (ETL)\", \"Database Design\", \"Academic Support Services\", \"Lifecycle Management\", \"Natural Language Understanding\", \"Production Support\", \"Business Analysis\", \"Clinical Data Management\", \"Data Infrastructure\", \"Transparency (Human-Computer Interaction)\", \"Process Safety Management\", \"Banking\", \"Custom Backend\", \"Acceptance and Commitment Therapy (ACT)\", \"Source Data\"]',\n", + " 'languages': \"['English', 'Albanian']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer .net / c#',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.92792398e-02 3.02440435e-01 2.93507308e-01 -1.08191818e-01\\n5.06818295e-01 -1.45451322e-01 -2.83627659e-02 4.52165246e-01\\n-9.99013036e-02 -4.81435567e-01 -4.60295333e-03 -2.95293808e-01\\n5.45937829e-02 9.21726972e-02 -1.24952262e-02 4.09118265e-01\\n3.21383029e-01 9.80194211e-02 -1.50388926e-01 3.37944984e-01\\n1.17071971e-01 -9.27732289e-02 1.34574592e-01 7.16347098e-01\\n3.26944977e-01 7.60269240e-02 1.65419318e-02 9.98060033e-02\\n-3.03879976e-01 -3.05884153e-01 3.57515484e-01 -1.09661967e-02\\n-1.15472168e-01 -2.60320991e-01 3.78614217e-02 -1.11793699e-02\\n-1.91863075e-01 -2.04496175e-01 -6.50389760e-04 2.56601006e-01\\n-4.90801007e-01 -2.30398163e-01 -1.87893352e-03 -7.07228631e-02\\n-2.02902079e-01 -3.97066236e-01 4.56921570e-03 7.87469093e-03\\n1.65744722e-01 9.18754488e-02 -4.24535960e-01 3.10820043e-01\\n-2.39468738e-01 -2.47470289e-01 3.26427042e-01 5.25489151e-01\\n-1.09401233e-01 -3.77189338e-01 -4.29033875e-01 -2.22576618e-01\\n1.36895180e-01 -1.35448277e-01 1.13560222e-01 -2.40768999e-01\\n4.79747623e-01 9.76771414e-02 1.03647560e-01 3.52380991e-01\\n-7.00875401e-01 -1.08083203e-01 -2.92143226e-01 -6.64569587e-02\\n-3.50218803e-01 -1.49245381e-01 -1.84639826e-01 -1.73950553e-01\\n-1.39173895e-01 2.93264151e-01 7.07579171e-03 -5.94026223e-02\\n-1.29984543e-01 3.34661514e-01 -2.60381907e-01 2.80472845e-01\\n1.49493128e-01 2.96959370e-01 1.79483756e-01 3.48495215e-01\\n-4.34529215e-01 4.06856805e-01 1.58552185e-01 -3.26237142e-01\\n2.16163054e-01 2.55920570e-02 5.62994182e-01 -7.84547813e-03\\n1.98813051e-01 6.81903288e-02 -2.65678346e-01 3.92195851e-01\\n2.11085662e-01 -1.43480211e-01 1.22612035e-02 -3.46103571e-02\\n-9.55586433e-02 -1.52626717e-02 8.71113539e-02 3.00650179e-01\\n-2.19212756e-01 5.38213134e-01 3.54385450e-02 -2.43112355e-01\\n-1.26074404e-01 -6.76766455e-01 -1.25667483e-01 2.58911345e-02\\n4.56421413e-02 1.01657823e-01 1.79050252e-01 2.69130796e-01\\n6.26400039e-02 1.34774083e-02 1.99629098e-01 8.70843291e-01\\n-2.94865724e-02 6.75146058e-02 -3.11158597e-01 3.19198728e-01\\n1.20472573e-01 -3.30863595e-01 1.83239564e-01 2.58024693e-01\\n1.24483474e-01 -1.90264165e-01 -1.01461858e-01 2.71425277e-01\\n-1.27561642e-02 -3.44702780e-01 -5.13710499e-01 2.18953714e-01\\n-1.92485258e-01 -3.48596573e-01 5.47225833e-01 6.55348226e-02\\n1.00360848e-01 -5.64756617e-02 -1.01444319e-01 -8.24920833e-02\\n-1.53602406e-01 2.41212532e-01 -3.88431037e-03 4.09206897e-02\\n-2.39489049e-01 -2.46235579e-01 -1.54919729e-01 2.26415977e-01\\n-1.18932694e-01 1.77388310e-01 -9.28899571e-02 -5.35358451e-02\\n3.87122244e-01 -1.80182997e-02 -2.02726379e-01 3.70975286e-01\\n-7.49003962e-02 -3.26031409e-02 -9.98760387e-02 3.02706450e-01\\n-1.39056265e-01 1.29874259e-01 -5.76992370e-02 -2.06186056e-01\\n5.35425961e-01 -8.31792802e-02 1.24702938e-01 -1.24682009e-01\\n2.62772083e-01 -1.70889065e-01 1.44849807e-01 9.93491411e-02\\n-6.30240798e-01 3.54824156e-01 -1.67906195e-01 -9.50298756e-02\\n1.28556922e-01 2.79553831e-02 2.95487612e-01 -1.96520224e-01\\n4.27392982e-02 -6.99248239e-02 -2.97956407e-01 -4.28120106e-01\\n-2.37346858e-01 -7.37571940e-02 4.21883821e-01 -3.87281597e-01\\n-2.61026233e-01 1.82606593e-01 -6.21342778e-01 5.04610464e-02\\n1.05690822e-01 1.82406157e-01 1.45458639e-01 1.95994675e-01\\n-2.02969611e-01 -6.13152981e-01 1.13049187e-01 -4.26712573e-01\\n-3.28846216e-01 1.94554567e-01 -1.70200720e-01 2.41298631e-01\\n1.67999804e-01 7.27064610e-02 -1.15538068e-01 1.73204377e-01\\n-2.26201564e-01 2.39415392e-02 1.66045770e-01 1.11981332e-01\\n2.52777606e-01 1.43940095e-02 -5.00443816e-01 3.82524014e-01\\n-4.21463214e-02 4.19871658e-01 1.20110735e-01 -8.87905777e-01\\n4.60566849e-01 2.74368703e-01 2.39541698e-02 -3.11836004e-01\\n7.19428003e-01 -2.10369974e-01 6.78024888e-02 2.18095943e-01\\n-4.70186621e-01 -2.31062368e-01 2.02345118e-01 -2.08549216e-01\\n-2.50685811e-01 5.87981701e-01 1.81499973e-01 3.69478874e-02\\n3.76958907e-01 -2.49582380e-01 -2.07873538e-01 8.90970603e-02\\n-1.16772138e-01 -2.36619517e-01 -4.46220279e-01 -7.88937807e-02\\n1.41607216e-02 -4.26716864e-01 -1.55776262e-01 -4.25697088e-01\\n-1.92750573e-01 -2.93899953e-01 -2.00445279e-01 3.29781145e-01\\n1.65980607e-01 2.22535700e-01 2.63799094e-02 -2.49449606e-03\\n-1.60850257e-01 -5.82212269e-01 -8.41839835e-02 1.55452952e-01\\n3.94902557e-01 2.10016876e-01 -1.49612082e-03 2.80005299e-02\\n-6.17667735e-02 5.82838655e-01 -2.26760551e-01 -2.07745537e-01\\n9.56567302e-02 1.71212405e-01 2.20645908e-02 -1.43818697e-02\\n-6.43486204e-03 3.02629173e-01 -1.44753233e-01 3.94731797e-02\\n-3.54542807e-02 9.45726223e-03 4.04148132e-01 1.64171606e-01\\n-3.21201384e-01 -3.14562291e-01 -3.13741602e-02 1.58195630e-01\\n-5.70610106e-01 -2.66773403e-01 5.81016719e-01 1.77503645e-01\\n2.37202987e-01 1.63134843e-01 2.37349659e-01 -5.65502085e-02\\n-1.87081784e-01 -2.20145702e-01 1.65878087e-01 1.51274338e-01\\n1.96459517e-02 6.76173121e-02 -1.80120304e-01 -4.51435775e-01\\n-3.56853056e+00 -1.27779037e-01 1.58544391e-01 -2.83877701e-01\\n2.08782911e-01 7.28474976e-03 5.12679107e-02 -8.80943835e-02\\n-3.47053707e-01 -7.09132403e-02 -2.56954461e-01 -1.38627321e-01\\n1.88189134e-01 2.64205158e-01 1.16793528e-01 3.68056327e-01\\n1.61195382e-01 -2.15088561e-01 -1.38881728e-01 3.99353594e-01\\n-9.87268984e-02 -6.25644743e-01 1.67025968e-01 -1.19551547e-01\\n3.10436159e-01 3.22106242e-01 -3.39578331e-01 -4.54219729e-02\\n-2.98300564e-01 -2.06109866e-01 1.91983953e-01 -2.49553800e-01\\n-1.18635274e-01 2.99056619e-01 2.22387642e-01 -1.28972441e-01\\n1.44720554e-01 -3.52144480e-01 -4.55714791e-04 -4.45358604e-01\\n9.44341645e-02 -5.90447545e-01 -8.65280703e-02 -7.78041184e-02\\n7.08136976e-01 -3.95755678e-01 4.67173532e-02 8.33043829e-02\\n1.53695926e-01 2.74274170e-01 5.82570247e-02 -1.27358750e-01\\n-1.31815344e-01 -3.02455157e-01 -6.33862913e-02 -2.48671949e-01\\n4.71121788e-01 4.79167372e-01 -2.05014274e-01 -7.97019154e-02\\n5.65407574e-02 -2.06232816e-01 -4.89301831e-01 -3.92650872e-01\\n-1.88386813e-01 -1.61853567e-01 -6.51055217e-01 -5.30617595e-01\\n-1.30264536e-01 -1.38559282e-01 -1.45420507e-01 5.96325815e-01\\n-4.35823709e-01 -4.70391631e-01 -5.37393540e-02 -4.06250864e-01\\n3.93221825e-02 -3.35363984e-01 -2.91724154e-03 -1.29005641e-01\\n-3.08080226e-01 -4.60069865e-01 8.41798261e-02 5.65423332e-02\\n-6.26297519e-02 -1.25808492e-01 1.02316529e-01 -3.61366987e-01\\n-2.84633279e-01 -4.03639644e-01 4.21877027e-01 1.33073747e-01\\n2.16754198e-01 2.37420410e-01 1.35448441e-01 1.67176515e-01\\n2.50321656e-01 -2.45293304e-01 -5.82627393e-02 -4.06594634e-01\\n2.40251049e-01 5.55065693e-03 5.50934851e-01 -2.48899326e-01\\n3.92021909e-02 7.45715424e-02 -1.60137311e-01 -1.65741727e-01\\n3.47865194e-01 6.38878420e-02 1.35614336e-01 -3.31353128e-01\\n3.04891557e-01 -4.71684754e-01 -2.33419642e-01 7.56686702e-02\\n6.90506473e-02 5.18831968e-01 4.38452996e-02 -4.34698582e-01\\n-9.49599519e-02 3.70570302e-01 -1.23373151e-01 -1.28642961e-01\\n-1.15767725e-01 1.40559748e-01 -2.65383601e-01 2.32562482e-01\\n-2.45755054e-02 -4.08948064e-02 -2.71634638e-01 -1.42405063e-01\\n-7.71233737e-02 4.59765166e-01 2.89701462e-01 1.43590063e-01\\n3.10109043e-03 -3.66315424e-01 -1.00613467e-01 1.57489210e-01\\n2.84583092e-01 3.38530034e-01 1.63200349e-01 -3.13827097e-01\\n6.73453361e-02 3.49921614e-01 -1.86435238e-01 1.37680098e-01\\n-2.57868499e-01 1.07162772e-02 -4.19338256e-01 -3.14184070e-01\\n-1.82605386e-01 -2.46515930e-01 4.79922369e-02 2.19704166e-01\\n1.38344795e-01 -2.69144922e-02 -2.61929128e-02 -3.17524105e-01\\n2.60890216e-01 8.02530274e-02 3.31840813e-01 3.07863086e-01\\n-3.49721126e-02 6.12751067e-01 3.90235558e-02 -1.87835768e-01\\n-1.19121827e-01 -6.77262619e-02 -1.66545346e-01 -6.92091435e-02\\n-6.01633415e-02 -3.77031773e-01 -1.18513033e-01 3.76708865e-01\\n4.28020656e-02 -2.40220338e-01 -1.44857883e-01 3.45459342e-01\\n-8.11017454e-02 -2.92915702e-01 -4.49677333e-02 1.11919574e-01\\n3.31355542e-01 1.65282398e-01 1.81507960e-01 -5.26488960e-01\\n-1.61728516e-01 -7.56532373e-03 -1.36027753e-01 5.28204203e-01\\n1.18960217e-01 1.70437470e-01 -1.48995996e-01 -3.04370701e-01\\n3.93230319e-01 -2.30085135e-01 -9.02308747e-02 -9.18778707e-04\\n5.45024686e-03 -1.16150968e-01 -3.98486882e-01 5.03868461e-02\\n-1.05488151e-01 -1.80154696e-01 1.75633118e-01 7.33099282e-02\\n9.89163294e-02 1.26921609e-01 -6.10801578e-01 -2.85899580e-01\\n-2.97490686e-01 -1.14222996e-01 -2.14459840e-02 -4.42214519e-01\\n2.64978483e-02 -1.13545135e-01 -5.23676991e-01 2.95858860e-01\\n-1.15508206e-01 2.50771232e-02 6.46409467e-02 2.52197571e-02\\n-4.25169230e-01 -1.62784547e-01 1.43602014e-01 2.01348186e-01\\n-1.49935588e-01 -1.47018164e-01 1.55035174e-02 -9.51423466e-01\\n2.23741189e-01 -1.70554370e-01 -1.36457428e-01 3.76077630e-02\\n7.02474266e-02 -5.38722694e-01 1.18600197e-01 -3.86079490e-01\\n-9.77541059e-02 -2.00070683e-02 -1.97883010e-01 -5.06156862e-01\\n1.19607255e-01 6.45912811e-02 -1.98032394e-01 4.02081639e-01\\n-3.92433435e-01 3.06132406e-01 -1.04729615e-01 1.34002462e-01\\n5.17867431e-02 -4.34011221e-01 1.97102442e-01 -4.05072153e-01\\n-4.64874238e-01 -1.70090064e-01 -1.96508735e-01 -1.69086531e-01\\n3.38316374e-02 -3.04924965e-01 -2.44207412e-01 2.17002049e-01\\n2.26238728e-01 9.04318988e-02 -1.64959446e-01 -1.21952474e-01\\n5.14602587e-02 -3.99567097e-01 1.48644865e-01 -2.75584795e-02\\n-1.28691196e-01 -1.58707008e-01 1.59985393e-01 9.33140889e-02\\n4.28211465e-02 -4.28672552e-01 4.59918708e-01 -2.77401596e-01\\n-2.97024995e-01 -1.28291976e-02 1.03405431e-01 -2.71611884e-02\\n4.07766074e-01 -5.17943203e-01 -9.86272469e-02 3.53770882e-01\\n1.18719220e-01 2.00392962e-01 2.09638551e-01 -2.13602200e-01\\n-1.88507244e-01 2.56735802e-01 -2.88646162e-01 1.37570798e-01\\n7.49004900e-01 9.78349298e-02 2.63147533e-01 8.77802595e-02\\n1.55886799e-01 3.03018153e-01 4.03878987e-01 1.16627455e-01\\n-2.13950396e-01 3.02131563e-01 1.62011325e-01 -5.74915051e-01\\n3.59673724e-02 1.25765786e-01 -1.82403222e-01 -4.13991272e-01\\n5.80151856e-01 4.01018888e-01 -2.86447555e-01 -1.92622393e-01\\n-9.64180008e-02 -1.16830967e-01 5.90558276e-02 -8.15991461e-02\\n4.45071943e-02 -2.52080917e-01 5.46560884e-01 -4.22888845e-02\\n1.25141814e-01 5.11046112e-01 -1.77351177e-01 -4.20543462e-01\\n-8.38613212e-02 1.77586854e-01 8.72699693e-02 4.43351328e-01\\n-1.24151155e-01 2.42405221e-01 -4.18838486e-02 1.73418000e-01\\n-1.07705466e-01 7.71391392e-02 7.70581141e-02 5.57051264e-02\\n-7.84710608e-03 2.30685383e-01 4.00819927e-01 5.53932309e-01\\n4.86630470e-01 5.49709082e-01 3.05746704e-01 6.91661611e-02\\n5.94136298e-01 4.73845720e-01 4.19430077e-01 1.81364343e-01\\n3.13642994e-02 -2.82146111e-02 5.97044639e-02 1.31985366e-01\\n3.75363261e-01 3.56043786e-01 4.59392332e-02 9.70516682e-01\\n3.85935575e-01 1.02138527e-01 6.52064621e-01 -6.19134724e-01\\n-1.99751556e-01 8.58900174e-02 3.50889772e-01 -4.00779754e-01\\n-1.62220538e-01 6.79228306e-02 -3.14699590e-01 1.10510521e-01\\n-4.59171951e-01 -2.26158082e-01 -2.13220969e-01 1.78837463e-01\\n1.57201380e-01 -1.37907937e-01 -2.35267684e-01 -6.31628335e-02\\n1.99365690e-02 -1.26534924e-01 -4.97254670e-01 -9.77690443e-02\\n-2.95279622e-01 -1.76902622e-01 3.95228826e-02 -1.87544450e-01\\n8.66327658e-02 -3.41447651e-01 -1.42552018e-01 2.93195173e-02\\n4.01285380e-01 -5.63664101e-02 2.55399086e-02 -7.43465424e-02\\n1.64280191e-01 3.92874300e-01 5.51721394e-01 -1.09978966e-01\\n-8.74401443e-03 -1.34294927e-01 -1.45575836e-01 3.82828042e-02\\n7.80042782e-02 1.16064574e-03 3.66127156e-02 3.67331922e-01\\n-3.24460834e-01 -3.87571156e-02 -3.92331220e-02 4.67310846e-01\\n-5.11676729e-01 5.03148660e-02 -4.40377332e-02 3.40674073e-01\\n2.01118290e-02 9.96843800e-02 -3.60680401e-01 1.11627854e-01\\n-2.21932948e-01 -4.01663095e-01 2.27361828e-01 -5.17902449e-02\\n-8.45997408e-02 7.03747282e-05 1.21491097e-01 1.33008480e-01\\n-3.48672867e-01 -7.62473345e-02 -4.53545228e-02 3.01453054e-01\\n1.36481494e-01 3.79236400e-01 -3.80460799e-01 -1.88666850e-01\\n-2.60343015e-01 1.93253621e-01 -5.41642532e-02 8.80732909e-02\\n-6.69403002e-02 2.07151935e-01 1.34626925e-01 1.82960257e-01\\n3.09478402e-01 -5.70749417e-02 -1.61056936e-01 -2.82105595e-01\\n-1.41373724e-01 -3.23833525e-01 1.11215591e-01 -5.97021058e-02\\n3.11277926e-01 -3.75216901e-01 -1.24083072e-01 -1.36315241e-01\\n-2.10162565e-01 -4.01246727e-01 3.36394436e-03 -1.00600451e-01]]',\n", + " 'job_description': 'About our client Our client is a Swiss medtech company with technologies and ideas that look at functional movement therapy from a completely different angle. Because they enable independent exercise and create maximum motivation, because they challenge people to take courage and support their hopes with personal achievements. Your responsibilities You take a significant part in the creation of the software architecture of our client Work in multidisciplinary projects with the internal departments Mechanical and Electrical Engineering, Technical Projects, Product Management as well as the Service and Manufacturing departments focuses the development of our therapy devices in particular on clinical application and usability aspects Your profile You got a bachelor in Computer Science good knowledge of the .NET platform, including C#, WPF and WCF understanding of relational and non-relational databases some years of experience with Software Architecture, Service Oriented Design and Software development processes experience in Version Control Systems and Application Lifecycle Management very good English skills, German skills are a plus Your chance Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 486',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"Usability\", \"Relational Databases\", \"Software Development\", \"Version Control\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Product Management\", \"Software Architecture\", \"Computer Science\", \"Application Lifecycle Management\", \"Personalization\", \"Wcf 4\", \"Service-Oriented Modeling\", \"Lifecycle Management\", \"Mechanicals\"]',\n", + " 'languages': \"['English', 'Japanese', 'Bislama', 'Guarani']\"},\n", + " {'company_id': '100',\n", + " 'job_title': 'machine learning software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Research & Development',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.22625816e-01 3.33112717e-01 4.52924252e-01 3.52539010e-02\\n5.47838271e-01 -2.28002280e-01 -4.55991998e-02 3.76447380e-01\\n-8.65315795e-02 -3.89616251e-01 -1.97276026e-01 -2.42429733e-01\\n-6.10692427e-02 6.09999672e-02 1.51485503e-01 4.84913617e-01\\n2.86018014e-01 5.01429364e-02 -1.70546263e-01 4.25948262e-01\\n1.52440473e-01 -1.16547421e-01 -4.21427041e-02 7.02703238e-01\\n3.97897035e-01 2.84451880e-02 -9.25158933e-02 -8.14431608e-02\\n-3.22459817e-01 -2.54069686e-01 4.96454418e-01 -2.93471888e-02\\n-7.62540922e-02 -3.94513547e-01 1.69230118e-01 1.29330114e-01\\n-2.46572852e-01 -5.82617000e-02 -9.77169126e-02 2.90166229e-01\\n-4.27152514e-01 -1.96198508e-01 -2.82067284e-02 -2.92064212e-02\\n-2.65888572e-01 -3.69894207e-01 8.80088434e-02 -6.96070641e-02\\n1.70499042e-01 8.48460495e-02 -5.95553875e-01 2.93091565e-01\\n-3.02707642e-01 -2.86939681e-01 3.41132373e-01 6.21420264e-01\\n9.08176154e-02 -5.71678102e-01 -4.96494740e-01 -3.24884951e-01\\n7.03406483e-02 9.75353550e-03 8.61043483e-02 -2.72167832e-01\\n3.07714283e-01 6.11423664e-02 6.87452182e-02 4.06307071e-01\\n-7.75700331e-01 -2.15553865e-01 -1.80246487e-01 1.52545571e-01\\n-3.49744111e-01 -9.42434371e-03 -2.53751338e-01 -1.56496242e-01\\n-1.12890601e-01 4.82029557e-01 -4.96412739e-02 1.22485615e-01\\n-1.47245184e-01 3.42353135e-01 -1.57667965e-01 2.43411422e-01\\n2.42252216e-01 1.89640567e-01 3.09183240e-01 3.39900255e-01\\n-3.73832405e-01 3.77201796e-01 2.10184962e-01 -2.64790326e-01\\n2.48795301e-01 1.47673965e-01 3.98199379e-01 7.19643682e-02\\n1.48380280e-01 1.42484277e-01 -3.09018791e-01 1.70877129e-01\\n1.43355414e-01 -1.86620682e-01 8.37099329e-02 -7.72920549e-02\\n-4.52560745e-03 6.16421103e-02 5.07850498e-02 2.76695848e-01\\n-4.03555274e-01 4.33569670e-01 6.79393709e-02 -2.33502015e-01\\n-1.00413144e-01 -6.80732846e-01 -3.22376713e-02 6.12462200e-02\\n5.32555953e-02 8.80275890e-02 2.36167192e-01 1.87875181e-01\\n2.73943275e-01 -8.78051519e-02 2.61031806e-01 8.17635596e-01\\n-4.72094193e-02 -2.46806070e-02 -2.18415201e-01 3.30004036e-01\\n7.83068985e-02 -2.46936068e-01 2.15660959e-01 1.87187701e-01\\n-2.24956647e-02 -6.70873970e-02 -2.21952885e-01 3.63291711e-01\\n-1.47620559e-01 -2.31677026e-01 -2.61106193e-01 2.65189320e-01\\n-5.98174408e-02 -4.15055931e-01 5.56283593e-01 -4.33514379e-02\\n2.03015715e-01 -1.35415614e-01 2.55813971e-02 -1.40815333e-01\\n-8.98338407e-02 2.52024114e-01 9.21302661e-02 1.23844974e-01\\n-2.89417446e-01 -3.49989027e-01 -2.00177819e-01 1.58439115e-01\\n-2.45057851e-01 1.26774803e-01 -6.29183054e-02 -7.21169040e-02\\n2.74072617e-01 6.64618015e-02 -4.47570652e-01 2.10469663e-01\\n-7.21503794e-02 -8.29077959e-02 -8.59995261e-02 2.75797486e-01\\n-2.93421507e-01 2.53080964e-01 -1.57044441e-01 -1.31311998e-01\\n6.18529856e-01 6.30268902e-02 2.67122507e-01 8.32424909e-02\\n3.32832456e-01 -1.82992935e-01 2.35399798e-01 7.28355795e-02\\n-6.47379160e-01 3.39924604e-01 -6.96159676e-02 -1.76996276e-01\\n1.50788009e-01 -6.52457848e-02 4.02419806e-01 -3.99301708e-01\\n4.23512980e-02 -1.76762283e-01 -3.77013922e-01 -3.90612781e-01\\n-1.38292208e-01 -4.55253012e-03 3.48626733e-01 -3.35274756e-01\\n-1.02410972e-01 1.31237820e-01 -5.66043854e-01 -1.37590781e-01\\n2.25182906e-01 1.69641361e-01 1.34779394e-01 1.64307356e-01\\n-1.70788884e-01 -5.86933851e-01 3.75177041e-02 -5.14832139e-01\\n-3.32851887e-01 1.17516086e-01 -2.80529946e-01 2.38662899e-01\\n-9.71932895e-03 -5.29624112e-02 -7.08406717e-02 1.13725357e-01\\n-3.20554852e-01 -5.60691878e-02 2.03177035e-01 9.17061977e-03\\n2.70829022e-01 1.08943351e-01 -3.45430225e-01 4.56163943e-01\\n-1.87294394e-01 5.38919091e-01 1.47070587e-01 -8.31342936e-01\\n5.59469223e-01 3.13948721e-01 -5.58733344e-02 -3.43235254e-01\\n4.79274243e-01 -4.00877506e-01 -5.58704808e-02 1.51772663e-01\\n-3.87377858e-01 -2.80476034e-01 2.53800601e-01 -2.78361291e-01\\n-2.81463563e-01 5.75637341e-01 9.14451554e-02 1.07370883e-01\\n3.37154686e-01 -1.80153221e-01 -1.20615274e-01 8.44265372e-02\\n-7.07583949e-02 -1.86067492e-01 -5.26866555e-01 2.87042018e-02\\n-4.82162461e-02 -5.52793741e-01 -2.08381623e-01 -3.32626224e-01\\n-1.99947551e-01 -2.82925427e-01 -2.52881765e-01 2.00756013e-01\\n2.04420000e-01 9.10955071e-02 1.83544904e-02 2.61773653e-02\\n-1.15250438e-01 -5.92531860e-01 1.62904970e-02 8.11954439e-02\\n3.75394076e-01 3.38145077e-01 8.01910013e-02 -5.57595566e-02\\n3.50869820e-02 5.96170545e-01 -3.52658510e-01 -2.73097456e-01\\n1.67413682e-01 1.10639408e-01 1.00669228e-02 -1.16643965e-01\\n9.56830382e-02 2.59241343e-01 -2.37467945e-01 9.81889442e-02\\n-6.57907873e-02 -7.92741776e-04 3.36579531e-01 -1.05198823e-01\\n-1.93985954e-01 -1.51368320e-01 -1.36361450e-01 1.82038486e-01\\n-5.21708310e-01 -1.60981879e-01 5.31008303e-01 1.46147728e-01\\n2.23285288e-01 1.87725797e-01 2.13452756e-01 1.77565049e-02\\n-3.58698726e-01 -2.85638541e-01 1.79310322e-01 1.36921391e-01\\n9.31749642e-02 9.06088427e-02 -2.25700848e-02 -6.66758299e-01\\n-2.77519655e+00 -1.10337332e-01 1.66860580e-01 -3.29161227e-01\\n2.17140377e-01 -9.32429284e-02 1.44879431e-01 2.86290012e-02\\n-3.74704540e-01 -4.20185365e-02 -1.38717085e-01 -2.31251165e-01\\n1.41163275e-01 3.19540918e-01 1.53108388e-01 1.79332823e-01\\n1.77289650e-01 -3.01470816e-01 -4.21848670e-02 3.64568651e-01\\n-1.51831150e-01 -7.21845388e-01 1.70545086e-01 -1.09993899e-02\\n2.53006727e-01 3.03034425e-01 -5.17640531e-01 -2.71943510e-02\\n-2.79538572e-01 -2.09871501e-01 8.48889276e-02 -2.38223538e-01\\n-2.32455939e-01 3.75519812e-01 1.09415308e-01 -7.56478831e-02\\n2.76149791e-02 -3.55870277e-01 -1.13731958e-01 -5.31487942e-01\\n1.60500422e-01 -6.68777049e-01 2.65172422e-02 -1.69474214e-01\\n6.86714292e-01 -2.70088643e-01 2.14812130e-01 1.82247490e-01\\n2.10063368e-01 1.25926048e-01 3.93582284e-02 6.15160465e-02\\n-2.85141230e-01 -2.71826684e-01 -1.28897922e-02 -2.36822098e-01\\n5.38971186e-01 4.65720236e-01 -1.80322409e-01 4.98766750e-02\\n2.25087598e-01 -3.34879756e-01 -4.40528959e-01 -2.62675107e-01\\n-1.88246936e-01 -1.56823218e-01 -6.92398310e-01 -4.13495183e-01\\n-1.30033582e-01 -1.74239069e-01 -1.02006376e-01 6.72174275e-01\\n-2.98293412e-01 -2.59953916e-01 -4.24452405e-03 -5.75410008e-01\\n1.99369133e-01 -1.94201767e-01 1.08116962e-01 -2.30487645e-01\\n-2.14138508e-01 -4.74923044e-01 1.33092105e-01 1.00157000e-02\\n-1.93718731e-01 -1.62506729e-01 -1.77620798e-02 -1.71441704e-01\\n-3.43611836e-01 -5.86036921e-01 3.44925344e-01 1.20492041e-01\\n3.96972626e-01 4.69363779e-02 3.34340870e-01 -1.11382455e-02\\n3.60106289e-01 -3.13037038e-02 6.22436777e-03 -3.70883584e-01\\n1.79541141e-01 8.82214960e-03 5.56302130e-01 -2.44292930e-01\\n1.27780493e-02 7.05853626e-02 -2.82580554e-01 -1.36823833e-01\\n3.88727278e-01 -2.23391242e-02 6.19570166e-02 -1.66202426e-01\\n2.05229357e-01 -4.58747149e-01 -1.30375311e-01 1.65230200e-01\\n4.43131179e-02 6.77523375e-01 -4.16008942e-02 -4.21186328e-01\\n-1.83238894e-01 3.16430569e-01 -6.59267008e-02 -8.21967870e-02\\n-7.46318474e-02 9.77431089e-02 -2.15143725e-01 1.91480279e-01\\n3.06648500e-02 -1.66869521e-01 -2.76122332e-01 -7.78544247e-02\\n-1.46408796e-01 3.23852718e-01 2.02291578e-01 1.14144728e-01\\n-5.57592325e-02 -3.83589447e-01 -9.61961821e-02 2.08677620e-01\\n2.09923089e-01 4.64028478e-01 1.69972360e-01 -1.89862594e-01\\n4.54692133e-02 3.93027455e-01 -1.45257831e-01 2.45924011e-01\\n-3.09919655e-01 1.75551698e-01 -5.66761136e-01 -2.70698786e-01\\n-2.71877080e-01 -3.03254485e-01 1.16155580e-01 3.76809895e-01\\n1.51557207e-01 -1.68129764e-02 9.53474641e-02 -3.95244837e-01\\n2.83897728e-01 5.20509332e-02 1.40660033e-01 8.00021589e-02\\n-3.94861028e-02 5.74023128e-01 5.09581864e-02 -2.03370988e-01\\n-7.99093693e-02 -4.69647944e-02 -1.80905282e-01 -3.05113494e-01\\n9.87422466e-02 -4.90737885e-01 -1.66682899e-01 4.42647755e-01\\n1.23492286e-01 -1.92200273e-01 -1.95188433e-01 2.18507081e-01\\n4.89884876e-02 -2.89364845e-01 -3.24387193e-01 4.84060012e-02\\n2.61976510e-01 4.68968824e-02 2.73760647e-01 -5.56879044e-01\\n-1.26709258e-02 -2.56102979e-02 1.69508532e-02 4.04951125e-01\\n2.11294182e-02 6.09982572e-02 -2.00466603e-01 -1.17686883e-01\\n5.97051084e-01 -6.98316693e-02 -5.69114387e-02 6.60267025e-02\\n1.42910182e-01 -1.70416787e-01 -4.80897933e-01 5.22442907e-02\\n-9.41925347e-02 -1.21526226e-01 2.41203755e-02 8.53441432e-02\\n1.65352017e-01 7.04902634e-02 -4.88290489e-01 -1.86702341e-01\\n-2.39456803e-01 -4.94838655e-02 -1.20175853e-02 -4.62429106e-01\\n-4.89787236e-02 -8.33494663e-02 -6.09166503e-01 2.25659162e-01\\n-1.58647880e-01 -3.67948674e-02 2.66746104e-01 3.21435146e-02\\n-2.80413896e-01 -1.56015754e-01 3.99671681e-02 2.17584133e-01\\n-3.43022466e-01 -3.79607767e-01 4.60075289e-02 -9.84329522e-01\\n2.25995094e-01 -6.46049902e-03 -1.35461912e-01 8.05633217e-02\\n-1.11532092e-01 -7.15237141e-01 1.51123598e-01 -4.37641591e-01\\n-8.37169439e-02 8.60385597e-04 -2.95032054e-01 -3.49341452e-01\\n9.68855023e-02 -1.02252796e-01 -3.19345236e-01 3.00913244e-01\\n-3.52333456e-01 3.30781519e-01 -1.37406647e-01 5.24273142e-02\\n2.41376664e-02 -2.55426466e-01 1.65821537e-01 -3.01188260e-01\\n-3.95204961e-01 -1.82450891e-01 -2.64464259e-01 -3.27495158e-01\\n-3.50806713e-02 -2.43990958e-01 -5.17659411e-02 4.33811322e-02\\n3.10863435e-01 1.02716655e-01 -1.78452179e-01 -2.85352111e-01\\n1.33632943e-01 -5.70511639e-01 -2.22930796e-02 -1.45399988e-01\\n-4.52062041e-02 -8.98910612e-02 2.48574048e-01 1.16397277e-01\\n1.99484110e-01 -3.37451100e-01 4.31722999e-01 -3.17148328e-01\\n-4.53984588e-01 -9.11324397e-02 1.61628556e-02 -7.21414685e-02\\n4.94503856e-01 -5.14025092e-01 1.12358173e-02 3.09840083e-01\\n9.26969051e-02 7.03378469e-02 1.99127853e-01 -1.70961887e-01\\n-6.12348840e-02 1.92195103e-01 -5.18261135e-01 9.51326787e-02\\n7.81677723e-01 2.55417377e-01 7.68995956e-02 2.77607024e-01\\n1.71848923e-01 2.76825726e-01 5.24686217e-01 -4.26241495e-02\\n-1.72658205e-01 3.06076884e-01 7.64827803e-02 -5.40473819e-01\\n-1.25483766e-01 -7.31042027e-02 -2.27179766e-01 -3.72928888e-01\\n6.22219682e-01 4.14932251e-01 -3.99217665e-01 -3.26644540e-01\\n-1.48093089e-01 -1.59417361e-01 3.18318754e-01 -5.12758223e-03\\n-8.26226622e-02 -1.35454178e-01 5.07455885e-01 -5.38714230e-02\\n2.61386603e-01 5.18763125e-01 -1.26101211e-01 -2.20936507e-01\\n1.11522172e-02 1.48350596e-01 3.67786735e-02 4.36480582e-01\\n-1.10091247e-01 2.57297754e-01 -5.18040098e-02 1.52721748e-01\\n-7.16182292e-02 1.59994289e-02 1.61852777e-01 3.99362445e-02\\n2.03661323e-01 1.57298073e-01 4.45208907e-01 4.71800357e-01\\n2.51458406e-01 3.51913571e-01 3.50550234e-01 -4.76007760e-02\\n4.34016287e-01 5.76673865e-01 3.27949792e-01 4.88114990e-02\\n-2.60265246e-02 7.43572563e-02 1.71774849e-01 -6.98684603e-02\\n3.24344397e-01 3.14850032e-01 8.33281428e-02 8.50742459e-01\\n3.26270103e-01 2.96025455e-01 7.23702192e-01 -6.68882012e-01\\n-3.68921161e-01 -6.21692613e-02 5.69745362e-01 -4.75773305e-01\\n1.68197826e-02 1.95360571e-01 -2.47300714e-01 3.05866718e-01\\n-5.56423783e-01 -2.41036192e-01 5.85246310e-02 5.73525466e-02\\n6.30852506e-02 -9.89965945e-02 -1.86393410e-01 2.74570175e-02\\n-1.89841211e-01 -2.20061868e-01 -4.27120984e-01 -2.44485974e-01\\n-1.84991062e-01 -1.10259783e-02 -2.54261494e-02 -1.25100255e-01\\n-9.00371149e-02 -3.44134927e-01 3.53669226e-02 -3.55437817e-03\\n4.31756228e-01 -1.11046948e-01 -3.57174650e-02 -1.01246506e-01\\n2.47886434e-01 2.23003209e-01 7.08459020e-01 5.25083579e-03\\n1.87055558e-01 -1.93847880e-01 -2.23856255e-01 1.78687692e-01\\n4.81785052e-02 8.13700259e-04 6.22576363e-02 3.42204988e-01\\n-2.46085942e-01 -1.69233173e-01 -6.31877035e-03 2.71324813e-01\\n-3.84408534e-01 -8.15595090e-02 -1.18171863e-01 1.70702845e-01\\n2.44063996e-02 7.55726248e-02 -2.56600827e-01 9.18196142e-02\\n-1.91799358e-01 -5.53236604e-01 2.88154751e-01 -1.93021111e-02\\n-1.83167726e-01 8.11275020e-02 2.98031867e-01 1.87106013e-01\\n-2.79088080e-01 -4.22731042e-04 -1.05171204e-01 1.05988942e-01\\n2.71354821e-02 4.22138184e-01 -1.19378939e-01 -3.53337407e-01\\n-2.84294158e-01 3.27000320e-01 -9.72331613e-02 1.20505184e-01\\n-5.05857691e-02 4.55280274e-01 -3.35106440e-02 8.38366151e-02\\n3.68311822e-01 1.45928329e-02 -2.13267386e-01 -3.22517574e-01\\n-6.24984279e-02 -1.42991677e-01 -6.39420673e-02 -8.64267126e-02\\n2.01358914e-01 -3.69508922e-01 -5.21335714e-02 -2.95316964e-01\\n-4.65065874e-02 -3.33761066e-01 -6.11328445e-02 -5.82180917e-04]]',\n", + " 'job_description': 'Zurich | HeadquartersStampfenbachstrasse 42 + 41 43 300 54 40 contact@reprisk.com 8006 Zurich, Switzerland www.reprisk.com Machine Learning Software Engineer (Python) Full time position in Zürich, Switzerland Starting date: by agreement About RepRisk Founded in 1998 and headquartered in Switzerland, RepRisk is a pioneer in ESG data science that leverages AI technology and human intelligence to systematically analyze public information and largest and most comprehensive due diligence database on ESG and business conduct risks, with expertise in 20 languages and coverage of 130,000+ public and private companies and 30,000+ corporations have trusted RepRisk for due diligence and risk management across their operations, business relationships, and investments. Learn more at www.reprisk.com and follow on Twitter: www.twitter.com/reprisk. Job Description As a Machine Learning Software Engineer you will be involved in all aspects of the machine learning application development process within RepRisk, including design, implementation and operation. The role will primarily involve development and maintenance of data processing and language analysis solutions, mainly written in Python. There will be frequent opportunities to work on a broad range of technologies from data processing and integration, machine learning and NLP, databases (SQL) to deployment and operation on a Unix environment. You will benefit from working with an experienced team that will offer support and the scope to greatly enhance your technical skills and knowledge and you will profit from an agile development ecosystem using state-of-the-art open-source technologies. We want someone who is keen to contribute ideas, thrives in a rapid development environment, and who can consistently bring innovative solutions to problems. The position reports to the Vice President of Operations Technology. Responsibilities Design, implement, deploy and maintain machine learning algorithms and infrastructure, from training to prediction Public RepRisk AG, October 2019 Create and maintain technical documentation Software testing and quality assurance Evaluate and identify new technologies Candidate Profile mathematics, statistics, or another relevant discipline with a strong foundation in quantiative methods, modeling, and machine learning/AI (or equivalent experience) Extracurricular projects and experiences that demonstrate your interest in data analysis/machine learning and/or software design and implementation Ability to manage large datasets and advanced experience in the corresponding software packages and programming languages (strong skills in Python and SQL are a requirement) Experience working with Docker, web servers and RESTful applications, as well as having familiarity with continuous integration and deployment (CI/CD). Knowledge of Django REST Framework is an advantage. Strong interest in real-world problems and analytical skills to come up with workable solutions A team player who loves to work in a highly diverse team and across functions and geographies You are reliable, curious, open-minded and goal oriented, while striving to deliver operational excellence and superior quality. What We Offer technology with respect to ESG risks in investments An entrepreneurial, international and young work environment A shared mission to drive accountability and responsible behavior of companies, thus creating positive change Long-term employment opportunity at a growing global company Please note that we consider only candidates with valid working permits or passport holders. Public RepRisk AG, October 2019',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Business Operations\", \"Goal Oriented\", \"Infrastructure\", \"Accountability\", \"Operations\", \"Reliability\", \"Integration\", \"Innovation\", \"Quality Assurance\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Servers\", \"Managing Large Accounts\", \"KM Programming Language\", \"Hyper SQL Database (HSQLDB)\", \"Development Environment\", \"Prediction\", \"Machine Learning\", \"Continuous Integration\", \"Mathematical Statistics\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Business Relationship Management\", \"Maintainability\", \"Dataset\", \"Hostile Work Environment\", \"Software Engineering\", \"Investments\", \"Django (Web Framework)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Data Science\", \"Risk Management\", \"Docker (Software)\", \"Library For WWW In Perl\", \"Machine Learning Algorithms\", \"Due Diligence\", \"Human Intelligence\", \"Electronic Data Processing\", \"Operational Excellence\", \"Technical Documentation\", \"Agile Product Development\", \"Information Technology Operations\", \"Software Design\", \"Software Testing\", \"Algorithms\", \"Unix\", \"Job Descriptions\", \"Long-Term Potentiation\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Chuang', 'Interlingua', 'Galician']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data analyst',\n", + " 'location': 'Saint-Saphorin',\n", + " 'industry': 'Industrial Manufacturing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.78203219e-01 4.10573363e-01 4.10321146e-01 1.62926480e-01\\n6.37564957e-01 -1.82331160e-01 -1.96976494e-02 6.03502728e-02\\n-5.61458431e-02 -2.84735233e-01 -1.58002272e-01 -3.46834332e-01\\n-1.93006232e-01 1.97205082e-01 1.73208825e-02 5.19698143e-01\\n1.69379979e-01 5.34561425e-02 5.66546768e-02 3.60202432e-01\\n4.63851467e-02 -2.11752445e-01 -2.43558854e-01 5.47986507e-01\\n4.20476973e-01 -8.22397023e-02 -1.00505307e-01 1.23134471e-01\\n-3.57691407e-01 -2.44689330e-01 4.74438757e-01 1.50713861e-01\\n-2.43558213e-01 -3.37382227e-01 -2.00163331e-02 2.05043972e-01\\n-2.12776780e-01 -7.56097306e-03 -1.41988114e-01 2.56536394e-01\\n-5.75274527e-01 -1.97023094e-01 -1.34034595e-02 8.61775205e-02\\n-2.63921738e-01 -3.27835262e-01 -1.81994829e-02 -1.64181873e-01\\n2.25925576e-02 2.14003071e-01 -5.63011467e-01 4.74238396e-01\\n-4.07871842e-01 -1.52787536e-01 1.95786282e-01 6.87538743e-01\\n7.71459639e-02 -6.77321553e-01 -4.04784501e-01 -3.10032189e-01\\n2.28308082e-01 -1.81340039e-01 1.71057239e-01 -3.42280984e-01\\n3.93641680e-01 -7.63628855e-02 3.60421650e-02 3.25494289e-01\\n-6.32964492e-01 5.49113937e-02 -4.68719661e-01 9.20014232e-02\\n-5.58770955e-01 9.32862144e-03 -4.32462513e-01 1.34992197e-01\\n-1.17186040e-01 4.50527638e-01 -6.24952428e-02 -1.97244957e-02\\n-2.71735966e-01 2.17634365e-01 -3.46844107e-01 2.24471956e-01\\n3.31344306e-01 -7.51687661e-02 2.48580620e-01 3.63493204e-01\\n-4.54158217e-01 5.51061273e-01 2.69724131e-01 -3.07963490e-01\\n3.16107422e-01 2.17642814e-01 3.57355475e-01 2.36440331e-01\\n1.68288812e-01 1.66231468e-01 -1.36510924e-01 2.67159671e-01\\n1.83453336e-01 -2.39962593e-01 9.44776461e-02 -1.14948452e-01\\n-1.22098744e-01 -6.46585748e-02 7.88774863e-02 2.34587699e-01\\n-3.58615696e-01 3.35993648e-01 1.85066536e-01 -1.23495556e-01\\n-1.89986452e-01 -4.48902726e-01 -1.23173811e-01 1.08883120e-01\\n1.37335211e-01 1.96838900e-01 1.92264631e-01 1.35038748e-01\\n2.69769847e-01 9.97871757e-02 1.11074418e-01 6.56782448e-01\\n1.42826974e-01 2.10240245e-01 4.67675403e-02 3.72879326e-01\\n1.67677164e-01 -1.26973718e-01 2.04099581e-01 2.42396802e-01\\n-3.05164531e-02 -3.28474790e-01 -3.58967036e-01 3.87320220e-01\\n-2.47519583e-01 -1.40017614e-01 -1.90824240e-01 8.70967731e-02\\n6.61941767e-02 -4.29776400e-01 5.30249357e-01 -8.21511894e-02\\n1.13677800e-01 -1.94721092e-02 -1.00896813e-01 -8.77341926e-02\\n-1.03468210e-01 3.53111535e-01 2.26660088e-01 2.83388615e-01\\n-2.56079078e-01 -3.06471288e-01 -1.30239129e-01 2.27351978e-01\\n-3.89325798e-01 1.37983590e-01 -4.09389019e-01 1.11208139e-02\\n3.64194751e-01 2.11239830e-01 -4.79915559e-01 6.16755672e-02\\n-4.85145524e-02 -2.02862233e-01 -2.28459574e-02 4.73535508e-01\\n-8.76591504e-02 1.35484725e-01 -1.42202070e-02 -5.42387851e-02\\n6.38433337e-01 1.20021500e-01 5.07492065e-01 6.76559135e-02\\n2.95100123e-01 -1.88517049e-01 2.04421923e-01 1.10671766e-01\\n-6.16654336e-01 3.13731015e-01 -5.77844940e-02 -1.24128170e-01\\n1.26775950e-01 -1.18863005e-02 5.79209387e-01 -3.26870978e-01\\n-4.00899835e-02 -2.74150670e-01 -4.64226693e-01 -4.78615373e-01\\n-2.53395557e-01 -1.36448190e-01 2.69304901e-01 -5.69624186e-01\\n3.69645096e-02 1.72019988e-01 -6.09456897e-01 -3.30354393e-01\\n2.68875211e-01 2.56881207e-01 2.41241783e-01 6.98186830e-02\\n-1.22625440e-01 -7.36889541e-01 5.64862415e-02 -5.12725890e-01\\n-4.10693556e-01 1.91600043e-02 -2.96050578e-01 1.49434030e-01\\n-1.36104524e-02 5.25000505e-03 -1.11435261e-02 5.95060736e-02\\n-2.58021712e-01 1.12452945e-02 1.10562164e-02 1.94137141e-01\\n2.85038054e-01 8.34066123e-02 -3.85711849e-01 4.85957474e-01\\n-2.34990075e-01 5.57344794e-01 1.48045391e-01 -7.17530906e-01\\n7.04043567e-01 1.12054780e-01 -1.25414580e-01 -2.19661012e-01\\n3.68352264e-01 -4.38399285e-01 -3.56678292e-02 1.42015055e-01\\n-2.19665900e-01 -1.96670994e-01 3.26519459e-01 -5.28543778e-02\\n-3.53586316e-01 6.36979580e-01 1.58896461e-01 -1.02135904e-01\\n2.98758030e-01 -2.53623694e-01 -2.14119986e-01 4.38170619e-02\\n-2.13201702e-01 -4.02080342e-02 -4.69666928e-01 2.36458033e-02\\n-6.28001094e-02 -4.13021147e-01 -4.05590087e-02 -3.32188606e-01\\n-3.14298779e-01 -3.62323016e-01 -3.46308470e-01 1.22490197e-01\\n1.71392635e-01 1.61919966e-01 -1.15643770e-01 -4.06106673e-02\\n2.49790102e-02 -8.26156557e-01 -1.50702268e-01 2.29666010e-01\\n3.55063140e-01 3.37481171e-01 2.04207793e-01 -2.01382518e-01\\n1.53739989e-01 5.01209915e-01 -4.55762267e-01 -3.40685874e-01\\n2.68305510e-01 4.11215099e-03 -1.17774811e-02 -1.46560043e-01\\n7.38636404e-02 1.47221461e-01 -1.41782269e-01 -1.85014436e-03\\n6.57341182e-02 -1.84047312e-01 4.35505420e-01 3.78337549e-03\\n-2.79231280e-01 6.36365963e-03 -2.33094066e-01 1.85873553e-01\\n-4.79121119e-01 -2.76727140e-01 5.56199491e-01 2.34464288e-01\\n1.33747295e-01 1.48087770e-01 1.93314314e-01 4.57661599e-03\\n-3.28296065e-01 -2.89553821e-01 3.08225483e-01 1.95329934e-01\\n-6.30908385e-02 1.25973523e-01 -2.47795597e-01 -6.71810091e-01\\n-3.44965625e+00 -1.97014585e-01 1.08177230e-01 -3.57825041e-01\\n9.97498930e-02 -1.84145123e-01 1.82647690e-01 -2.64808480e-02\\n-2.60647953e-01 -2.80515142e-02 -2.02775657e-01 -1.20961137e-01\\n-1.12706395e-02 2.60662019e-01 1.87821507e-01 2.48891503e-01\\n2.57108569e-01 -2.56343067e-01 -5.74343801e-02 3.60089183e-01\\n-1.24787048e-01 -6.90944850e-01 -6.98172897e-02 5.39559452e-03\\n-4.23781052e-02 2.08017603e-01 -3.14005584e-01 6.28600046e-02\\n-3.40356350e-01 -2.50767261e-01 2.50666171e-01 -2.43069157e-01\\n-2.89983660e-01 6.16076477e-02 1.51375070e-01 -2.67294925e-02\\n-2.75391906e-01 -1.40052631e-01 -1.23443998e-01 -4.59867984e-01\\n3.94487083e-02 -5.02228022e-01 2.22740285e-02 -1.67124718e-01\\n7.04449654e-01 -1.16324641e-01 1.39149562e-01 1.06610745e-01\\n9.52525213e-02 1.40916795e-01 1.09533183e-01 3.15100811e-02\\n-1.80635363e-01 -2.93939710e-01 -1.57464623e-01 -8.47274438e-02\\n7.96404243e-01 3.13447654e-01 -2.20652163e-01 4.00175049e-04\\n2.38038763e-01 -3.97256613e-01 -3.18802655e-01 -3.86632890e-01\\n-3.11677158e-01 -1.28204152e-01 -7.62656689e-01 -3.72923553e-01\\n-2.17939675e-01 -6.26850501e-02 -9.98909548e-02 7.39739895e-01\\n-4.07045841e-01 -3.22163463e-01 -1.76266193e-01 -5.97790062e-01\\n3.03065121e-01 -1.49274632e-01 1.13077953e-01 -3.21628392e-01\\n-4.23236281e-01 -4.64888394e-01 1.11229666e-01 -3.80046628e-02\\n-3.35149378e-01 -2.42637489e-02 3.87786329e-02 -1.31975457e-01\\n-4.71248746e-01 -6.08718216e-01 2.87946850e-01 5.78931272e-02\\n2.37044349e-01 1.01568297e-01 3.34758282e-01 -4.24607433e-02\\n5.03307581e-01 7.31299818e-02 -3.16760354e-02 -2.04381123e-01\\n1.92932025e-01 -1.10563725e-01 6.60276830e-01 -3.55483443e-01\\n-1.42388463e-01 8.42945576e-02 -3.69244307e-01 2.65635867e-02\\n4.80979174e-01 -1.82908833e-01 1.08402818e-01 -9.16458145e-02\\n3.02507043e-01 -5.68179309e-01 -2.26603821e-01 2.28060901e-01\\n8.51342753e-02 7.53758669e-01 5.42594790e-02 -3.15881908e-01\\n9.13509503e-02 3.99221748e-01 -1.05413824e-01 -2.57701762e-02\\n-2.43337139e-01 1.53400714e-03 -1.84777141e-01 4.28462684e-01\\n6.61668181e-02 -1.47141963e-01 -1.76361680e-01 -5.39191589e-02\\n-1.05168656e-01 3.48619670e-01 3.04232568e-01 -5.14623970e-02\\n-4.86709215e-02 -1.31847322e-01 -2.31689095e-01 8.47583860e-02\\n2.01201871e-01 4.48767364e-01 1.92675382e-01 -2.53564835e-01\\n3.62922577e-03 2.28138939e-01 -2.35730082e-01 2.97554910e-01\\n-2.32318044e-01 2.17065454e-01 -6.56366706e-01 -2.69299954e-01\\n-1.69771045e-01 -3.60367060e-01 1.13336436e-01 3.77556354e-01\\n2.73789376e-01 -1.05048776e-01 3.39196324e-02 -5.65310240e-01\\n6.00955039e-02 2.71329850e-01 8.66683125e-02 1.70742214e-01\\n-1.82966128e-01 7.12836981e-01 -2.24203262e-02 -1.88323811e-01\\n-1.05815306e-01 9.32412222e-03 -3.16928059e-01 -3.32231432e-01\\n3.47391397e-01 -4.24125165e-01 -7.09783286e-02 4.57364827e-01\\n3.21713239e-01 -6.42394125e-02 -1.90440997e-01 3.88964385e-01\\n1.48593020e-02 -1.76615417e-01 -5.14062405e-01 5.34015661e-03\\n1.15142964e-01 2.12159500e-01 2.33951449e-01 -3.77940565e-01\\n5.11166640e-02 -2.81086657e-04 4.12022509e-02 3.89008850e-01\\n1.83638427e-02 2.68201560e-01 -1.74983844e-01 -8.35822895e-02\\n6.08786166e-01 5.97252212e-02 -1.01584651e-01 1.45578561e-02\\n2.91622460e-01 -2.31043056e-01 -4.21260267e-01 9.71177034e-03\\n-8.79081041e-02 -4.25100863e-01 1.24208540e-01 2.31116876e-01\\n-7.64257163e-02 -1.57998651e-02 -6.05796337e-01 -2.37568662e-01\\n-4.26165074e-01 -1.52822569e-01 2.40826309e-01 -6.11361980e-01\\n-1.46074370e-01 -1.10043459e-01 -4.05385315e-01 2.30815649e-01\\n7.43319094e-02 3.08281742e-03 3.89139652e-01 3.33025455e-01\\n-7.13793710e-02 -2.45224372e-01 5.59466109e-02 1.84621841e-01\\n-4.28636044e-01 -3.00698429e-01 -1.42660707e-01 -1.09593475e+00\\n4.96388972e-02 -1.89939458e-02 -2.85960585e-01 2.29348764e-02\\n-5.62067479e-02 -6.03702068e-01 1.74502283e-01 -3.08619708e-01\\n-2.11756796e-01 1.28123656e-01 -2.18959570e-01 -3.15656573e-01\\n1.37316853e-01 -1.12772852e-01 -3.07603180e-01 4.28081542e-01\\n-4.02170539e-01 4.58123207e-01 -1.03768878e-01 7.08063319e-02\\n-3.60942609e-03 -6.29797624e-03 1.94573984e-01 -1.05643936e-01\\n-4.44040120e-01 -3.96914095e-01 -4.51228261e-01 -2.30713367e-01\\n1.50147334e-01 -3.27523947e-01 -4.45509553e-02 1.49233863e-01\\n4.94120747e-01 1.93886995e-01 -5.13300784e-02 -9.48479772e-02\\n4.82284538e-02 -5.56291401e-01 1.22909963e-01 -2.37213701e-01\\n4.83620819e-03 -1.37837827e-01 1.27428576e-01 -1.08057661e-02\\n1.09095320e-01 -2.55334109e-01 6.50670111e-01 -2.25946337e-01\\n-3.02127004e-01 -2.41879225e-01 1.75487801e-01 1.28522530e-01\\n3.13030928e-01 -3.30892712e-01 6.06500655e-02 3.81650180e-01\\n1.12422168e-01 -1.26115143e-01 1.13548934e-01 -1.05203159e-01\\n-1.42687231e-01 2.07834914e-01 -2.99093604e-01 1.68144077e-01\\n8.47317338e-01 1.99661046e-01 2.18307972e-01 1.88655540e-01\\n7.19089806e-02 3.08897495e-01 6.74124956e-01 -2.11867303e-01\\n6.32449761e-02 2.80160785e-01 4.07692567e-02 -3.91052902e-01\\n-2.43703499e-02 -2.51043826e-01 4.28106040e-02 -3.59798402e-01\\n6.31435692e-01 3.59109849e-01 -5.22304893e-01 -3.27326715e-01\\n-1.57093167e-01 -1.96054820e-02 4.34597760e-01 1.29612491e-01\\n-2.44181886e-01 1.74330827e-02 5.56493878e-01 -5.66358007e-02\\n2.58049041e-01 3.88998389e-01 -2.06807345e-01 -1.96688890e-01\\n2.42620450e-03 2.95236021e-01 -1.27440039e-02 3.79167825e-01\\n-1.50270358e-01 1.88658163e-01 -1.78693578e-01 -1.62939504e-02\\n-2.64207691e-01 1.80396019e-03 1.28752023e-01 1.63474783e-01\\n2.78536469e-01 1.01140209e-01 4.98468190e-01 4.77330238e-01\\n1.20293692e-01 3.64976138e-01 2.35902816e-01 -1.40036047e-01\\n4.48495328e-01 5.80835104e-01 2.84027010e-01 1.55293614e-01\\n1.76129669e-01 2.55804896e-01 9.45241973e-02 1.14185385e-01\\n3.57888669e-01 4.93856072e-01 2.33668506e-01 6.18678451e-01\\n2.10600227e-01 3.29692423e-01 5.30382335e-01 -7.14465380e-01\\n-4.07869369e-01 2.17380412e-02 5.97936273e-01 -3.00069869e-01\\n1.80181295e-01 1.92688972e-01 -2.37584040e-01 3.11048925e-01\\n-5.90662181e-01 -2.80680716e-01 1.22073486e-01 2.74724793e-02\\n2.05120519e-01 -2.29163915e-01 -1.31266624e-01 1.35789782e-01\\n4.29771021e-02 -1.22002743e-01 -1.29737854e-01 -2.72700012e-01\\n-3.94280761e-01 -3.73433605e-02 1.20850332e-01 8.39081183e-02\\n7.92560726e-02 -3.89070868e-01 -1.43185914e-01 -5.47607839e-02\\n3.58238995e-01 -1.32878482e-01 -2.72181630e-01 -3.06935795e-02\\n2.61498094e-01 1.75768346e-01 6.45962656e-01 -9.45445895e-02\\n4.29560654e-02 -2.54758418e-01 -1.76961526e-01 1.29766837e-01\\n1.89689919e-01 1.10620186e-01 1.39188632e-01 3.90597463e-01\\n-3.94687772e-01 -1.81374937e-01 1.68548405e-01 2.00672492e-01\\n-4.23362434e-01 -9.75956023e-02 -1.12987205e-01 5.43494672e-02\\n-3.19334418e-02 2.36790866e-01 -2.70086378e-01 -1.23325780e-01\\n-2.70656496e-01 -5.96459091e-01 3.54987055e-01 -2.37167880e-01\\n-2.34259933e-01 -1.03615366e-01 3.06745678e-01 3.05704981e-01\\n-5.68228178e-02 4.48519737e-02 -7.75962695e-02 1.38559014e-01\\n5.78743853e-02 3.14962506e-01 5.06294332e-02 -2.53667057e-01\\n-3.53271097e-01 2.83000737e-01 1.40433729e-01 2.25339323e-01\\n-6.81080967e-02 3.19201976e-01 -1.09247245e-01 3.28256786e-02\\n3.54084700e-01 1.14770271e-01 -1.70863450e-01 -2.61343688e-01\\n-2.38305047e-01 -1.80440806e-02 7.18061179e-02 9.47721768e-04\\n5.01910374e-02 -4.28046435e-01 -1.98736235e-01 -3.38709414e-01\\n-6.48183972e-02 -4.42678481e-01 -2.24577725e-01 4.06330898e-02]]',\n", + " 'job_description': 'Supporting the customer on his site you will : Influence the design of data quality standards and governance processes Implement and enforce Data Quality Management practices across Research including metadata, lineage, data access rights and business definitions Perform root cause analysis on critical data quality issues, work with technology and SMEs on defining a solution and help implement the solution Design and report on data quality and usage metrics Complete large scale data analysis, document findings and reconcile across data stores Support the data analysis required to place data into a shared platform for consumption by others, requiring detailed reviews with the business owners and identify the use of data and understand calculations and derivations Partner with technology to understand where data already exists in the shared platform and ensure that data is not duplicated Explore and evaluate new concepts, technologies and industry trends related to data analytics We are looking for someone with the following experience Experience in data quality management Experience with using data profiling tools to query the data, identify anomalies, gaps and issues Experience manipulating and analyzing large-scale data sets, performing root cause analysis, driving data and business requirements Experience in scripting (Python, Perl, JavaScript, Shell) Experience working BI reporting tools is a plus General awareness of data management practices, emerging trends, and issues',\n", + " 'soft_skills': '[\"Research\", \"Governance\"]',\n", + " 'hard_skills': '[\"Quality Management\", \"Data Quality\", \"Tooling\", \"Accessioning\", \"Perl (Programming Language)\", \"Metadata\", \"Analytics\", \"Data Profiling\", \"Law Practice Management\", \"Industrialization\", \"Scale (Map)\", \"Calculations\", \"Python (Programming Language)\", \"Root Cause Analysis\", \"Business Requirements\", \"Enforcement\", \"JavaScript (Programming Language)\", \"Survey Data Analysis\", \"Requirements Analysis\", \"Solution Design\", \"Scripting\", \"Operational Data Store\", \"Derivatives\", \"Data Analysis\", \"Reporting Tools\"]',\n", + " 'languages': \"['English', 'Bosnian', 'Indonesian', 'Sinhalese']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'c++ back end software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Aerospace & Defence',\n", + " 'website': 'www.veritystudios.com',\n", + " 'jobdescription_embedded': '[[-2.05985904e-01 3.63334298e-01 3.98180604e-01 7.37345889e-02\\n6.12776875e-01 -1.37464389e-01 -5.66377267e-02 2.55230784e-01\\n7.42716938e-02 -3.34895611e-01 -7.98960216e-03 -3.96854490e-01\\n-8.38371068e-02 1.38850421e-01 8.63480121e-02 5.18396437e-01\\n1.43955186e-01 7.12292120e-02 -2.42769927e-01 4.73550498e-01\\n4.60687205e-02 -1.24515496e-01 1.94112062e-01 7.60677397e-01\\n3.29556614e-01 2.42234170e-02 -1.37974501e-01 -7.10776448e-02\\n-2.13933125e-01 -5.19141406e-02 4.58962619e-01 6.75563216e-02\\n-1.07235275e-01 -5.70448339e-01 1.12456426e-01 1.05927154e-01\\n-2.50869185e-01 -1.11949027e-01 -1.29622042e-01 1.66764438e-01\\n-6.19513690e-01 -3.82298768e-01 -1.60045493e-02 -8.34970325e-02\\n-2.54685223e-01 -2.79926658e-01 2.11237147e-01 -2.39865445e-02\\n1.70779213e-01 1.45328030e-01 -4.76414502e-01 2.34440804e-01\\n-2.34336197e-01 -1.93579555e-01 3.83755922e-01 6.64856672e-01\\n2.58830860e-02 -5.88672101e-01 -5.01487315e-01 -3.41661394e-01\\n-8.89664590e-02 -9.22143366e-03 1.02668162e-02 -4.75725114e-01\\n2.40385279e-01 2.11712383e-02 6.66927546e-02 3.38225812e-01\\n-7.42188096e-01 -1.98617861e-01 -2.21957371e-01 6.28391132e-02\\n-2.27078557e-01 2.23747548e-03 -3.39267105e-01 -1.28093749e-01\\n-1.72613531e-01 4.28349525e-01 -1.82365552e-02 5.71071655e-02\\n-2.71872938e-01 3.69172007e-01 -1.57922849e-01 5.11346817e-01\\n2.41458386e-01 2.26627022e-01 1.56122446e-01 4.16605175e-01\\n-4.52266932e-01 3.00074458e-01 2.52851784e-01 -3.06461662e-01\\n2.18064755e-01 2.47903913e-01 4.03815567e-01 -7.38221407e-03\\n1.15824014e-01 1.26008645e-01 -3.36245447e-01 3.49652469e-01\\n2.69072413e-01 -2.39013523e-01 1.78278387e-01 -1.25444710e-01\\n8.66488218e-02 2.85100713e-02 -2.23362576e-02 1.84874579e-01\\n-2.84118414e-01 4.43160534e-01 2.94514388e-01 -2.56686330e-01\\n-2.64549255e-01 -5.97270846e-01 -6.77708983e-02 1.30404428e-01\\n7.87365288e-02 1.36354595e-01 1.92636877e-01 1.14882261e-01\\n2.76067168e-01 -2.29275644e-01 1.36476874e-01 9.40843701e-01\\n-1.33099928e-01 -1.03538103e-01 -6.32294640e-02 3.19909990e-01\\n6.59054667e-02 -1.73681334e-01 7.24943355e-02 2.32951432e-01\\n-1.45552503e-02 -1.17562473e-01 -2.69029617e-01 3.36433053e-01\\n-1.97948620e-01 -2.49143064e-01 -3.78955394e-01 3.51919234e-01\\n-1.15315601e-01 -4.07644629e-01 6.82614565e-01 -1.04512244e-01\\n1.52674019e-01 -4.64980677e-02 1.61041487e-02 -7.72189051e-02\\n-1.58067122e-01 1.02436595e-01 1.65273577e-01 7.28868470e-02\\n-3.18537533e-01 -2.87096769e-01 -1.78769052e-01 -4.54214178e-02\\n-3.19787741e-01 2.05240905e-01 -9.91580486e-02 -2.36709565e-01\\n7.16910213e-02 1.83305278e-01 -4.80815113e-01 2.18793720e-01\\n-2.40914747e-01 -6.99398741e-02 -7.83811882e-02 5.64806938e-01\\n-2.77467638e-01 1.73256397e-01 1.18529722e-01 -2.27510296e-02\\n6.31084800e-01 2.06389159e-01 2.35145420e-01 1.29319001e-02\\n3.82446945e-01 -7.83267096e-02 1.56693220e-01 3.07950974e-01\\n-6.89495087e-01 2.99862176e-01 -3.20297405e-02 -5.80733046e-02\\n2.04313934e-01 -1.30033612e-01 3.56816083e-01 -3.66585791e-01\\n-1.29208818e-01 -2.42006898e-01 -3.71527553e-01 -2.40603611e-01\\n-2.28652120e-01 3.93386371e-02 2.79398203e-01 -3.10971290e-01\\n-9.18062925e-02 1.97226346e-01 -5.74024558e-01 -1.66245937e-01\\n1.42289877e-01 2.43803695e-01 1.23344466e-01 6.97688311e-02\\n-1.67240083e-01 -6.82010055e-01 3.09797674e-02 -3.36659491e-01\\n-3.53111207e-01 -1.99150890e-02 -3.32719207e-01 6.41027540e-02\\n-3.05872615e-02 1.12619169e-01 -7.96262622e-02 -2.88432091e-02\\n-4.58801597e-01 3.66032273e-02 3.19360271e-02 -3.15219257e-03\\n1.81903243e-01 1.28900915e-01 -4.40722167e-01 4.27287459e-01\\n-3.60187411e-01 6.59742475e-01 -2.54579633e-02 -9.26798463e-01\\n5.15718222e-01 3.95129174e-01 -1.20112583e-01 -2.78218091e-01\\n4.32752430e-01 -5.82723558e-01 -1.87039986e-01 7.82845914e-02\\n-2.26778746e-01 -2.97221065e-01 3.39034796e-01 -2.90983677e-01\\n-3.32921147e-01 5.92325926e-01 1.02244355e-01 1.43974900e-01\\n3.22126627e-01 -3.28167975e-01 -4.69457135e-02 2.15251232e-03\\n3.08986418e-02 -1.11619577e-01 -5.82536340e-01 -1.53299784e-02\\n-7.27580339e-02 -3.33276272e-01 -3.45025063e-02 -4.34960335e-01\\n-1.45363450e-01 -3.40342939e-01 -2.55671144e-01 5.37418574e-02\\n3.47044915e-01 5.65831661e-02 1.07031733e-01 6.65723756e-02\\n-5.10901250e-02 -6.68282092e-01 7.48240799e-02 1.27382770e-01\\n4.18702900e-01 2.33208656e-01 2.18327329e-01 5.94726130e-02\\n1.24663159e-01 7.71426260e-01 -3.42102289e-01 -1.72709197e-01\\n6.91612884e-02 6.19139336e-02 -2.05395408e-02 -1.48755342e-01\\n2.65958071e-01 3.88664514e-01 -3.76277506e-01 3.82000022e-02\\n-9.30259228e-02 2.03964692e-02 4.02058005e-01 -4.58512679e-02\\n-2.63992935e-01 -2.96835959e-01 -8.26911181e-02 1.12520903e-02\\n-5.15154958e-01 -1.50129423e-01 2.82796025e-01 8.38344842e-02\\n1.94413751e-01 5.02666198e-02 1.70590863e-01 -9.82355103e-02\\n-4.41521227e-01 -3.11400533e-01 1.22995183e-01 1.48827359e-01\\n-2.76790094e-02 1.12194128e-01 7.44633451e-02 -7.07996726e-01\\n-2.72454309e+00 5.34029864e-02 1.75257504e-01 -1.98654652e-01\\n3.36907804e-01 -6.53685927e-02 1.09978214e-01 -3.16157192e-02\\n-3.55830789e-01 4.42458987e-02 -2.89239287e-02 -1.59436435e-01\\n7.56649151e-02 1.86911806e-01 1.44056782e-01 4.63028215e-02\\n6.98418692e-02 -3.27719748e-01 -9.36945155e-02 3.31667989e-01\\n-1.18849806e-01 -8.04062247e-01 2.00819045e-01 -1.26729324e-01\\n2.54911333e-01 1.95139214e-01 -4.79090929e-01 -1.46115467e-01\\n-2.61862636e-01 -1.09654486e-01 4.85282019e-03 -2.79336989e-01\\n-2.41603047e-01 1.88137472e-01 1.87168032e-01 -1.35401972e-02\\n8.62481222e-02 -4.34705317e-01 -1.60589010e-01 -4.28641707e-01\\n1.77408278e-01 -6.09819472e-01 -6.96853548e-03 -2.30592757e-01\\n6.40858293e-01 -2.70242929e-01 1.35734931e-01 1.25911921e-01\\n1.49351195e-01 2.69990042e-02 2.36425519e-01 6.78248629e-02\\n-9.65867788e-02 -2.25626662e-01 -1.29000962e-01 -2.47471124e-01\\n6.36729777e-01 3.39879185e-01 -2.07142353e-01 -1.66808292e-02\\n7.58172870e-02 -2.93556452e-01 -5.43299913e-01 -1.82129353e-01\\n-5.64413927e-02 -1.79539651e-01 -5.83404779e-01 -3.56540203e-01\\n-1.86783940e-01 -1.21287085e-01 -6.88438863e-02 7.59267151e-01\\n-4.20275092e-01 -2.10742876e-01 1.22092612e-01 -5.78946352e-01\\n4.35128927e-01 -2.75633633e-01 -1.44124031e-03 -3.35657805e-01\\n-2.88897008e-01 -5.05288661e-01 7.09490553e-02 -2.00807944e-01\\n-2.24279895e-01 -2.85540402e-01 -3.29982080e-02 -1.64206147e-01\\n-2.05053717e-01 -5.54817021e-01 3.81877899e-01 1.87059671e-01\\n3.86264861e-01 5.08880094e-02 4.64519948e-01 -1.04326755e-01\\n3.50761890e-01 1.23105720e-01 5.25633097e-02 -2.67343819e-01\\n-1.06798224e-02 4.93982062e-02 5.52316666e-01 -2.65558004e-01\\n-4.99412566e-02 1.00008756e-01 -2.66877711e-01 -4.02108654e-02\\n3.44774008e-01 -1.90543327e-02 2.04607621e-02 -2.38944471e-01\\n3.50827903e-01 -3.92211854e-01 -1.28689528e-01 5.48722632e-02\\n2.60435879e-01 9.16035593e-01 2.89942957e-02 -4.06902254e-01\\n-1.69348806e-01 5.25479972e-01 -8.75239521e-02 1.28346324e-01\\n-5.64013906e-02 1.12256117e-01 -3.05525213e-01 3.53314340e-01\\n6.43014312e-02 -3.14700872e-01 -2.42124379e-01 -5.53655252e-02\\n-1.95170686e-01 4.67520624e-01 2.03857601e-01 8.48484188e-02\\n-9.66811031e-02 -5.17074049e-01 -1.59701943e-01 3.82808626e-01\\n1.31089941e-01 4.08550084e-01 1.88265741e-01 -3.49108070e-01\\n8.19405168e-02 4.89717305e-01 -1.45293534e-01 3.22562099e-01\\n-1.64050549e-01 2.67119467e-01 -6.20453417e-01 -3.37721467e-01\\n-4.14802641e-01 -4.14349735e-01 1.97383106e-01 4.82603669e-01\\n1.53204799e-01 -1.28630683e-01 1.68317378e-01 -4.87397552e-01\\n3.02149683e-01 2.83015072e-01 1.00283109e-01 8.34846199e-02\\n-1.17759869e-01 6.17286623e-01 1.05127871e-01 -2.48130873e-01\\n-1.06966838e-01 -7.93929249e-02 -1.23948075e-01 -2.39282727e-01\\n2.99848348e-01 -4.96423870e-01 -1.50800049e-01 3.85559142e-01\\n1.18245080e-01 -1.42266810e-01 -2.99973667e-01 2.87136734e-01\\n-3.25641818e-02 -2.36124963e-01 -2.87606478e-01 -1.41123101e-01\\n3.06777865e-01 -4.94928379e-03 3.12205136e-01 -5.73935747e-01\\n5.68464957e-02 -5.13903648e-02 1.31196082e-02 4.51087654e-01\\n-8.40906203e-02 -1.74472809e-01 -2.99184442e-01 -6.03371374e-02\\n5.48217297e-01 4.91175577e-02 -8.05393159e-02 5.94910234e-04\\n1.80061147e-01 -2.82668650e-01 -3.93472195e-01 1.59531921e-01\\n-8.40653926e-02 -2.41839379e-01 -1.71505958e-02 1.28349856e-01\\n1.37416095e-01 -2.75823791e-02 -5.25561213e-01 -1.38248727e-01\\n-1.43182695e-01 1.04452908e-01 5.48416004e-02 -4.70787257e-01\\n-3.49911489e-02 -5.91794029e-02 -6.06221080e-01 1.95649415e-01\\n-3.05625618e-01 -1.34530529e-01 2.20184281e-01 1.31248429e-01\\n-3.43111396e-01 -1.53189898e-01 -7.22303912e-02 3.39819670e-01\\n-2.04909027e-01 -2.51479685e-01 -1.24517620e-01 -8.94033074e-01\\n1.15059406e-01 -5.33648431e-02 -9.59374905e-02 2.31852964e-01\\n-8.95830169e-02 -1.01438189e+00 1.02808803e-01 -2.87014186e-01\\n-1.23003460e-01 -5.44079356e-02 -2.80505329e-01 -1.33313134e-01\\n2.15161532e-01 6.24261834e-02 -3.43123406e-01 4.18560803e-01\\n-2.62078226e-01 2.57272989e-01 -1.70919940e-01 5.71095273e-02\\n-6.81268051e-02 -1.48463920e-01 1.25125855e-01 -2.81140804e-01\\n-4.28685009e-01 -2.55029738e-01 -2.69996196e-01 -3.43083620e-01\\n-2.50073552e-01 -2.36282885e-01 -1.43171966e-01 1.72680765e-01\\n3.02348286e-01 -4.01428789e-02 -6.29873946e-02 -2.45580941e-01\\n1.51368916e-01 -4.35436219e-01 1.25311121e-01 -8.24228451e-02\\n1.22122213e-01 -2.17733800e-01 7.84816667e-02 1.65779665e-01\\n4.18182284e-01 -3.24608028e-01 4.68778223e-01 -3.72710466e-01\\n-4.76856112e-01 -2.95310944e-01 -2.42418349e-02 -1.01358160e-01\\n4.10329849e-01 -3.06138098e-01 1.89497545e-02 2.51212239e-01\\n1.62074566e-02 1.07716024e-03 2.97208190e-01 -2.26072460e-01\\n4.42043170e-02 7.91206360e-02 -3.68174314e-01 8.35003853e-02\\n7.66569734e-01 2.27703333e-01 1.60436019e-01 1.76611155e-01\\n-7.87680298e-02 1.74581856e-01 5.79604685e-01 -1.76826477e-01\\n-9.89760906e-02 1.53370082e-01 1.53601617e-01 -5.15923858e-01\\n-2.18991399e-01 -1.02344826e-01 -2.77597874e-01 -4.17335123e-01\\n6.47350669e-01 3.24208558e-01 -4.09324229e-01 -1.20936535e-01\\n-1.68782286e-02 -1.33876160e-01 3.25822204e-01 4.75306213e-02\\n-2.17234455e-02 9.15554166e-03 4.19051945e-01 -7.64211640e-02\\n3.60948175e-01 5.86866438e-01 -1.53685242e-01 -3.32891405e-01\\n-8.57250020e-02 2.37980485e-01 7.72385746e-02 2.74617195e-01\\n-2.83346415e-01 2.80306965e-01 -4.96304967e-02 4.38111350e-02\\n-2.53939241e-01 1.49510801e-01 2.59434320e-02 9.54945385e-02\\n1.71745360e-01 1.32071450e-01 4.66509789e-01 5.44153452e-01\\n1.13663808e-01 3.87066305e-01 3.59454751e-01 5.65822423e-02\\n4.70831662e-01 5.89590549e-01 3.96798193e-01 1.14028126e-01\\n1.74154237e-01 3.23015094e-01 2.44358093e-01 -1.23436943e-01\\n5.12997031e-01 4.81955409e-01 1.20019168e-01 9.29232836e-01\\n1.45038828e-01 4.72661376e-01 7.75368929e-01 -6.93370223e-01\\n-4.00529057e-01 8.01825225e-02 5.42603910e-01 -5.40490150e-01\\n8.92204568e-02 5.83554581e-02 1.72359906e-02 4.68550384e-01\\n-5.91422915e-01 -2.77828455e-01 -3.52308303e-02 2.01531619e-01\\n-8.18846747e-02 -1.34756729e-01 -2.12909371e-01 1.02107242e-01\\n-1.20052040e-01 -1.85670480e-01 -3.02780002e-01 -1.07798368e-01\\n-1.95805132e-01 6.21429086e-02 -1.33213237e-01 -1.29382968e-01\\n1.23620525e-01 -2.99780279e-01 9.81813483e-03 -1.08691722e-01\\n3.71459663e-01 -1.66730940e-01 -1.63171202e-01 -1.16961792e-01\\n3.51053357e-01 1.34677947e-01 5.22296786e-01 4.18758616e-02\\n2.24322766e-01 -2.27149367e-01 -2.32325897e-01 1.49474919e-01\\n1.20496228e-02 1.18949890e-01 7.47720972e-02 3.29894722e-01\\n-2.65817940e-01 -1.28175229e-01 8.05771351e-03 2.63151199e-01\\n-3.55885863e-01 -1.08938903e-01 -2.18016773e-01 -1.75021682e-03\\n-2.98438929e-02 1.93126902e-01 -1.03299230e-01 -7.21593797e-02\\n-1.71474069e-01 -4.37116802e-01 2.80486882e-01 -9.49724615e-02\\n-2.70961106e-01 -1.32967487e-01 4.12571549e-01 1.24051787e-01\\n-2.78940409e-01 1.41099960e-01 -2.07458019e-01 2.60855407e-01\\n3.23246270e-02 2.92219132e-01 1.05701797e-02 -2.19366729e-01\\n-2.48113886e-01 2.14953542e-01 -6.39967173e-02 1.99305657e-02\\n2.04844683e-01 6.07056201e-01 -1.01149984e-01 -1.29280359e-01\\n6.67372286e-01 -4.63127270e-02 -3.13079894e-01 -3.09482813e-01\\n-9.77961048e-02 -1.94017991e-01 -1.44472271e-01 -1.38574749e-01\\n1.43630370e-01 -3.68721157e-01 -1.21986322e-01 -3.03417236e-01\\n1.05592251e-01 -2.40879670e-01 -1.33349448e-01 -2.46001985e-02]]',\n", + " 'job_description': \"To complement its growing team, Verity Studios is looking for an experienced and versatile back end software engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software back ends for drone systems requires addressing new and challenging problems such as: (a) defining robust and reliable communication protocols to interact with embedded devices (both on wired and wireless connections), (b) implementing components to retrieve, store, and process significant amount of data in an efficient and responsive fashion, and (c) designing algorithms to easily and safely coordinate the operation of hundreds of drones and other system components. Our software team works on a multitude of challenging and interesting tasks, such as implementing drivers for proprietary embedded platform, defining robust and efficient communication protocols, designing algorithms to retrieve, process, and analyze significant amount of data, and implementing graphical user interfaces for control stations. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deploymentInteract with other engineering teams to define and review design documentsCooperate with control engineers to design protocols to interact with robotic systems in order to send commands and collect feedback dataCooperate with embedded engineers to understand the constraints of embedded platforms and design smart and reliable embedded applicationsInteract with front end engineers to define the interfaces between back ends and front endsDesign general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Experience with database design and handling large amount of data is a plus Experience with distributed systems is a plusGood written and spoken English language skillsExcellent knowledge of C++ and STLFamiliar with GDB and other debugging and program analysis toolsKnowledge of libraries such as Boost and Qt and is a plusExperience in Python, C and modern C++ is a plusExperience with PCB schematics and digital communication interfaces (e.g. SPI, CAN, I2C) is a plusTeam player and self-drivenCreative approach to problem solving Benefits. Work in an interdisciplinary, highly-skilled teamCreate ground-breaking systems, used by some of the world's most prominent stage productionsShape the culture and have a significant impact in a rapidly growing young company \",\n", + " 'soft_skills': '[\"Professionalism\", \"Coordinating\", \"Problem Solving\", \"Operations\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Control Engineering\", \"System Requirements\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Collections\", \"Digital Communications\", \"Repository Protocol Design\", \"Staging\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"Python (Programming Language)\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Library\", \"Embedding\", \"Program Analysis\", \"Process Driven Development\", \"Database Design\", \"Software Engineering\", \"C (Programming Language)\", \"Robotics\", \"Qt (Software)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Graphical User Interface\", \"Data Structures\", \"Systems Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Algorithm Design\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"User Interface\", \"Debugging\", \"Documentation Based Coding\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Central Khmer', 'Bambara']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.18385294e-01 2.41720304e-01 4.27476227e-01 4.64398712e-02\\n5.47994494e-01 -1.58546939e-01 -9.34150666e-02 3.12510848e-01\\n-8.11205059e-03 -3.97926003e-01 4.04934911e-03 -2.48615384e-01\\n-1.95413619e-01 -2.90917847e-02 1.50212198e-01 2.65932232e-01\\n3.02032858e-01 1.08343944e-01 -1.30830914e-01 3.85242850e-01\\n8.88484642e-02 1.43046454e-02 -5.57380319e-02 6.30390584e-01\\n4.04154301e-01 -1.88813321e-02 -1.24087185e-01 1.93015829e-01\\n-2.77798295e-01 -2.91954935e-01 3.00827622e-01 9.17816684e-02\\n-8.17140043e-02 -3.18304211e-01 1.06116369e-01 2.50762045e-01\\n-2.06791312e-01 -5.82365971e-03 -1.07563332e-01 1.07770495e-01\\n-3.67045462e-01 -3.67927372e-01 -2.96022315e-02 8.70568901e-02\\n-3.38595450e-01 -2.04959631e-01 -1.69872437e-02 -5.90269901e-02\\n7.95503631e-02 -1.36311986e-02 -6.20867014e-01 3.62723887e-01\\n-1.33262768e-01 -2.69479692e-01 2.14491516e-01 6.40694201e-01\\n3.47513682e-03 -4.84974235e-01 -2.93424577e-01 -3.48227203e-01\\n-4.61025257e-03 -1.23056367e-01 4.11828458e-02 -1.87683120e-01\\n4.37148601e-01 -4.72451076e-02 4.45949798e-03 4.81891811e-01\\n-8.20332110e-01 -1.39553947e-02 -2.68433988e-01 -2.17327755e-02\\n-4.69381720e-01 5.03607690e-02 -3.15660983e-01 -2.37897962e-01\\n5.62908426e-02 3.88951242e-01 5.20636849e-02 1.03158213e-01\\n-1.15584821e-01 2.45215923e-01 -1.03218965e-01 1.05746165e-01\\n3.76562834e-01 1.95033789e-01 2.45937914e-01 2.34620333e-01\\n-4.03643370e-01 3.76610756e-01 1.10743843e-01 -3.31405133e-01\\n2.93078780e-01 1.50698110e-01 4.68504727e-01 1.74631029e-01\\n-1.56029714e-02 2.51626998e-01 -1.99598223e-01 2.12395296e-01\\n1.19339190e-01 -3.79344612e-01 -3.57100600e-03 -3.08948457e-02\\n-6.69572875e-02 -1.03470840e-01 1.28493365e-02 1.49813160e-01\\n-2.90799469e-01 3.61809999e-01 1.15960084e-01 -1.83507264e-01\\n1.52545441e-02 -4.73510802e-01 -8.89622048e-02 -3.46979909e-02\\n-3.22391726e-02 3.20319206e-01 2.86420912e-01 1.03586249e-01\\n1.86044544e-01 1.21801183e-01 2.37297535e-01 9.50427771e-01\\n-5.54420464e-02 1.31258190e-01 -2.08604544e-01 2.97988683e-01\\n2.33642697e-01 -3.30325305e-01 1.84752181e-01 2.62443185e-01\\n4.86236028e-02 -1.31018400e-01 -1.87519029e-01 2.35432044e-01\\n-1.53553262e-01 -8.01144689e-02 -3.22447240e-01 4.98206653e-02\\n-2.07965270e-01 -4.20132309e-01 5.40373504e-01 1.31357834e-01\\n2.80778348e-01 4.08879332e-02 3.20546739e-02 -4.78921011e-02\\n-2.11110383e-01 3.74496222e-01 -6.62006661e-02 2.96677172e-01\\n-3.50882351e-01 -8.51272643e-02 -1.75669998e-01 3.67360413e-01\\n-2.15998873e-01 7.95202330e-02 -2.02307671e-01 -1.73227817e-01\\n2.64794588e-01 -2.99330726e-02 -2.88601816e-01 1.46336690e-01\\n-1.69258371e-01 -3.72412890e-01 -5.34136295e-02 2.86150038e-01\\n-7.18535930e-02 2.40660787e-01 -7.91440904e-03 -2.43195161e-01\\n6.16859376e-01 2.32804537e-01 1.75864786e-01 -8.77660960e-02\\n2.33936548e-01 -1.34195700e-01 2.07541451e-01 1.04980908e-01\\n-6.16721690e-01 3.67995650e-01 5.93945682e-02 -2.19605178e-01\\n-6.50748461e-02 3.87051553e-02 3.59056234e-01 -3.41879725e-01\\n-1.45024946e-02 -1.88266128e-01 -4.42677915e-01 -2.63667941e-01\\n-3.89260769e-01 6.29443973e-02 4.58746165e-01 -4.40543085e-01\\n-1.12148382e-01 2.77727991e-01 -4.05008107e-01 -1.12296559e-01\\n2.15412498e-01 9.84625295e-02 6.84249699e-02 9.08980984e-03\\n-2.21950993e-01 -5.63495874e-01 -7.51058534e-02 -4.34386998e-01\\n-4.92696047e-01 -4.73192818e-02 -1.45388290e-01 1.39131650e-01\\n9.06418934e-02 1.39880367e-02 -2.04092413e-01 1.65466547e-01\\n-3.22942495e-01 2.59347558e-02 2.83406019e-01 1.23026878e-01\\n3.04282933e-01 -6.30941913e-02 -3.59879136e-01 4.47466701e-01\\n-1.64517462e-01 5.59055567e-01 2.73798078e-01 -8.66732240e-01\\n5.23216546e-01 2.45192647e-01 5.32536693e-02 -3.67859036e-01\\n4.53416854e-01 -4.40466046e-01 -7.33164698e-02 1.47743076e-01\\n-2.90464044e-01 -2.46145323e-01 4.07043546e-01 -1.68604657e-01\\n-3.05155039e-01 6.04871511e-01 1.18511193e-01 9.48405489e-02\\n3.68648946e-01 -3.71465057e-01 -9.56733972e-02 -4.35774960e-02\\n-1.60924137e-01 -2.80791670e-01 -4.62958634e-01 7.80435205e-02\\n-3.76063362e-02 -5.57379663e-01 -1.14087000e-01 -4.08542424e-01\\n-2.07444564e-01 -4.24181134e-01 -2.33415201e-01 3.89977008e-01\\n1.97218031e-01 1.97779298e-01 1.43657895e-02 -4.51482832e-02\\n2.65643764e-02 -6.34194791e-01 -1.53209150e-01 8.87560546e-02\\n4.65962321e-01 3.27740252e-01 8.63982216e-02 -9.29679722e-02\\n1.93327636e-01 4.23713714e-01 -2.67291337e-01 -4.91059750e-01\\n6.89228922e-02 1.82103813e-01 -8.11644420e-02 -2.45632216e-01\\n1.31995276e-01 4.50853109e-01 -2.36140698e-01 -2.71785464e-02\\n-1.15942933e-01 8.25744569e-02 2.74269819e-01 9.15244571e-04\\n-3.43991727e-01 -1.91174507e-01 -3.67682949e-02 2.21812919e-01\\n-5.12260556e-01 -1.53449893e-01 6.17452383e-01 2.46609971e-01\\n1.39589131e-01 1.13028042e-01 2.01999083e-01 -8.87542367e-02\\n-1.47878543e-01 -1.35743052e-01 1.18295714e-01 1.77506268e-01\\n9.96099636e-02 -2.18492355e-02 -1.04191110e-01 -5.38566411e-01\\n-3.63223028e+00 -2.48318434e-01 1.23011172e-01 -2.97636628e-01\\n1.73337847e-01 -2.01220647e-01 9.90804099e-03 -1.04213348e-02\\n-2.93179363e-01 5.38801923e-02 -5.41438647e-02 -1.91186607e-01\\n1.61860008e-02 2.59003848e-01 1.71015203e-01 1.96340799e-01\\n1.02441713e-01 -2.22837582e-01 -1.25764221e-01 3.91373068e-01\\n-8.62333179e-02 -6.23590589e-01 7.30433762e-02 2.18037646e-02\\n1.67354256e-01 1.22122698e-01 -3.25674981e-01 -7.32889101e-02\\n-2.77734250e-01 -3.02478254e-01 4.52316590e-02 -2.19229281e-01\\n-2.10302934e-01 4.27380711e-01 7.83522874e-02 -5.85792623e-02\\n1.49114221e-01 -2.66069293e-01 -1.24605194e-01 -3.92007917e-01\\n-5.85862510e-02 -5.88688672e-01 8.49066824e-02 -1.08346269e-01\\n6.04631603e-01 -3.02593023e-01 2.64130652e-01 1.94325209e-01\\n2.09366560e-01 1.22391090e-01 -3.12830992e-02 -7.86277000e-03\\n-3.28859806e-01 -3.84466529e-01 -8.38222578e-02 -2.64570713e-01\\n5.84750473e-01 4.90022510e-01 -1.49299517e-01 1.13283889e-02\\n3.21341902e-02 -2.96095818e-01 -2.85100847e-01 -5.17183483e-01\\n-1.37115568e-01 -1.25382081e-01 -7.54838407e-01 -4.61840749e-01\\n-7.07066283e-02 -7.53233656e-02 -6.73847497e-02 5.89991331e-01\\n-2.77730733e-01 -5.03674746e-01 -4.36047502e-02 -4.74973142e-01\\n1.97831661e-01 -1.75786585e-01 2.53115501e-02 -1.50665998e-01\\n-2.91678071e-01 -5.68544865e-01 4.44304235e-02 -8.26329663e-02\\n-1.97512090e-01 -2.26414055e-01 -6.39177952e-03 -2.34245256e-01\\n-2.93168575e-01 -3.71051311e-01 5.48805773e-01 -2.08755620e-02\\n4.42485869e-01 1.81311980e-01 3.54244053e-01 1.61220104e-01\\n3.48707914e-01 -9.91856977e-02 9.45963636e-02 -4.31168675e-01\\n9.57706273e-02 3.04020196e-02 5.36363661e-01 -3.13812315e-01\\n1.08224452e-01 1.35071158e-01 -2.50039935e-01 -6.03334270e-02\\n5.34806371e-01 1.28235249e-02 4.65260893e-02 -1.67315483e-01\\n2.49079183e-01 -3.71447951e-01 -2.49211237e-01 1.51295096e-01\\n3.21745649e-02 6.94508255e-01 1.36206210e-01 -4.17854905e-01\\n-3.07413757e-01 5.00047207e-01 -1.53399214e-01 -1.24105386e-01\\n-3.53554264e-02 1.84260011e-01 -1.30301863e-01 2.33473346e-01\\n7.62472525e-02 -2.20590860e-01 -2.43001595e-01 -1.26569688e-01\\n-3.43440357e-03 1.99069157e-01 2.97547430e-01 3.23313698e-02\\n-1.70508951e-01 -1.22233480e-01 -1.44851699e-01 9.20918509e-02\\n2.38438562e-01 2.35201165e-01 2.75661588e-01 -2.17595160e-01\\n2.31459569e-02 2.30425447e-01 -2.05061272e-01 2.52180129e-01\\n-1.62024006e-01 8.46617892e-02 -5.05828857e-01 -2.05234140e-01\\n-1.18215449e-01 -3.85447651e-01 1.18266381e-01 3.32586259e-01\\n8.92271921e-02 2.24183401e-04 2.76926681e-02 -5.03607392e-01\\n4.92749035e-01 1.47798717e-01 2.49933630e-01 1.68704271e-01\\n1.77671298e-01 4.95605230e-01 1.16541550e-01 -4.82734665e-02\\n-2.48070523e-01 9.12688822e-02 -1.52055979e-01 -3.75382960e-01\\n3.01338558e-04 -4.14072514e-01 -1.57678753e-01 3.44575495e-01\\n1.70010835e-01 -1.90072179e-01 -2.84261644e-01 2.56736100e-01\\n1.30369648e-01 -3.84678215e-01 -1.74450547e-01 7.38125592e-02\\n2.70602793e-01 5.08744940e-02 2.19526991e-01 -3.58422816e-01\\n-6.10174760e-02 -2.81086098e-02 -9.75142717e-02 5.30029655e-01\\n1.36423498e-01 4.97580208e-02 -2.36727763e-02 -1.66133180e-01\\n4.44046766e-01 -2.66087893e-02 -7.27486536e-02 -2.02006266e-01\\n6.11392632e-02 -2.51376927e-01 -3.50322753e-01 1.66946184e-02\\n5.90871722e-02 -2.00599506e-01 6.76972717e-02 -2.28887852e-02\\n1.13892131e-01 -1.26790069e-02 -4.79600459e-01 -3.52696151e-01\\n-4.04846847e-01 -1.85438231e-01 4.49339002e-02 -3.70767206e-01\\n1.00248843e-01 -3.13807316e-02 -5.92224061e-01 2.83705026e-01\\n-2.93832839e-01 -5.96121559e-03 1.01463810e-01 1.47316128e-01\\n-2.98236549e-01 -7.38506094e-02 4.48064171e-02 2.71119803e-01\\n-2.70901382e-01 -3.19487840e-01 -3.44422199e-02 -8.67413938e-01\\n1.51744828e-01 1.73017830e-01 2.11656149e-02 2.16542725e-02\\n1.04018748e-01 -6.43671274e-01 9.19854566e-02 -3.52474988e-01\\n9.72521231e-02 2.44176462e-02 -2.21351787e-01 -3.25673521e-01\\n1.12020433e-01 -5.71591184e-02 -3.34862530e-01 4.23238724e-01\\n-5.12493134e-01 3.00204307e-01 9.50743929e-02 1.19433634e-01\\n3.65326554e-02 -2.80564070e-01 2.22188964e-01 -2.86903679e-01\\n-3.71369958e-01 -3.25800389e-01 -3.90634000e-01 -1.91801488e-01\\n3.53064872e-02 -2.49800295e-01 -1.25989333e-01 -7.65667344e-03\\n3.64324480e-01 1.44005790e-01 -1.32653609e-01 -3.22219461e-01\\n6.63034618e-02 -4.54473108e-01 5.47266416e-02 -3.35769951e-01\\n-5.23601100e-02 -6.25429302e-02 2.02311233e-01 -8.47495869e-02\\n7.50792325e-02 -3.10819268e-01 4.70861197e-01 -2.20382854e-01\\n-2.35789955e-01 -3.02785402e-03 1.67593673e-01 -8.32037330e-02\\n2.49866933e-01 -4.98547941e-01 -5.34206023e-03 2.59169996e-01\\n1.20385252e-01 8.09073895e-02 2.39269882e-01 -2.82244273e-02\\n-4.65858430e-02 2.86496103e-01 -4.69025970e-01 8.27265158e-02\\n7.30356455e-01 1.06970862e-01 1.02717876e-01 1.12309754e-01\\n1.86276808e-01 3.89778793e-01 5.31576395e-01 2.55094972e-02\\n1.63058241e-04 3.19669425e-01 8.92798677e-02 -5.40350258e-01\\n-1.18361942e-01 -2.10010946e-01 -1.93972141e-01 -2.95819998e-01\\n6.29354835e-01 3.82503211e-01 -3.22737843e-01 -2.65038162e-01\\n-6.59483373e-02 -1.99453056e-01 2.13707060e-01 -2.46348213e-02\\n-1.45103596e-02 -1.70559406e-01 4.82283980e-01 8.70746747e-02\\n2.78742999e-01 5.73608279e-01 -1.34901717e-01 -3.07055265e-01\\n-6.20860830e-02 1.65451825e-01 9.75896791e-02 4.62338954e-01\\n-1.49793476e-01 2.91735053e-01 -4.60608490e-02 1.01031996e-01\\n-5.00336699e-02 3.15064609e-01 2.91298658e-01 3.17916274e-02\\n2.18237370e-01 3.09096952e-03 3.25919360e-01 5.11963665e-01\\n1.22334339e-01 5.66922963e-01 3.24524105e-01 8.39240402e-02\\n2.22689942e-01 5.97432077e-01 4.15673792e-01 1.00130141e-01\\n-6.96472637e-03 1.18396632e-01 4.73090447e-02 -1.63954467e-01\\n3.52043450e-01 3.71894509e-01 4.02830958e-01 8.73272836e-01\\n4.07070547e-01 2.56046772e-01 7.72083342e-01 -7.23887324e-01\\n-3.69417638e-01 7.30154710e-03 4.58618850e-01 -2.04419434e-01\\n-1.94462210e-01 1.49393976e-01 -3.73320520e-01 1.45938262e-01\\n-5.30088246e-01 -1.01959743e-01 -2.98791490e-02 8.41007847e-03\\n7.08038658e-02 -5.03020249e-02 -7.51961097e-02 1.19263813e-01\\n-1.73719645e-01 -2.23335788e-01 -3.83662969e-01 -7.15821534e-02\\n-3.65560561e-01 -1.71088472e-01 -4.74364460e-02 -4.79151495e-02\\n-1.93517163e-01 -4.50670511e-01 -1.15983836e-01 -2.06306949e-02\\n2.67740726e-01 -1.26711100e-01 -1.64526924e-01 -2.33695567e-01\\n4.80525978e-02 3.48794460e-01 5.46011925e-01 1.76872555e-02\\n1.33583203e-01 -1.35316074e-01 -2.04951659e-01 2.31648739e-02\\n8.49630311e-02 2.12436654e-02 6.22112453e-02 4.65767115e-01\\n-3.20804715e-01 3.50330956e-02 1.32102042e-01 2.56604135e-01\\n-4.08121884e-01 -8.25815648e-02 5.80006605e-03 3.01260024e-01\\n1.14891129e-02 2.16569066e-01 -1.01792328e-01 3.38255614e-02\\n-9.78625417e-02 -5.31390786e-01 4.62456644e-01 -3.06708485e-01\\n-1.63760021e-01 2.28597075e-01 2.52152473e-01 2.44377643e-01\\n-2.11112455e-01 -1.11578085e-01 3.50518599e-02 2.76156127e-01\\n3.97960842e-03 3.99432927e-01 -2.37451538e-01 -2.59536713e-01\\n-3.04405153e-01 2.89033234e-01 -1.76271901e-01 1.37317300e-01\\n-1.98353559e-01 3.02739948e-01 6.85798228e-02 1.59886301e-01\\n1.22045316e-01 -4.28921916e-03 -2.36808151e-01 -1.48258537e-01\\n-3.43816906e-01 -2.28613287e-01 8.62671211e-02 2.46076584e-02\\n2.34084219e-01 -2.79697269e-01 -8.67514387e-02 -5.88822886e-02\\n-2.00481609e-01 -3.32225114e-01 -9.87628251e-02 -4.22144942e-02]]',\n", + " 'job_description': 'Job Informationen Your Tasks: - Build, scale and maintain solutions based on Hadoop and/or other NoSQL systems - Write and tune complex near-real-time and batch data pipelines with Spark or Java MapReduce - Explore available technologies to provide business support to our clients - Work closely with customers and other stakeholders in an agile environment Your Profile: - Bachelor or Master in Computer Science / Information Management or related field - Proficient in OOP (Java) and FP (Scala, Clojure), willing to learn new programing languages - Experience in Big Data technologies (Hadoop, Spark, Kafka, HBase) - Knowledge of real-time processing systems like Storm, Spark Streaming or others - Knowledge and experience in agile software development - Superb problem-solving skills - You are a proactive team player with the ability to work independently and accurately in interdisciplinary projects - Knowledge of data structures and algorithms for Big Data, Machine Learning is a plus - Very good skills in German and English, French would be an asset Benötigte Skills OO-Design / Analyse JAVA Scala',\n", + " 'soft_skills': '[\"Proactivity\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Business Support Systems\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Spark Streaming\", \"Scale (Map)\", \"Scala (Programming Language)\", \"MapReduce\", \"Maintainability\", \"Real Time Systems\", \"Transaction Processing Systems\", \"Machine Learning Methods\", \"Agile Software Development\", \"Clojure\", \"Project-Based Solutions\", \"Information Management\", \"Big Data\", \"Data Structures\", \"Software Development\", \"Algorithms\", \"Apache HBase\", \"Amazon Data Pipeline\", \"Writing Systems\", \"Java (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English', 'Macedonian', 'Kalaallisut', 'Tswana', 'Macedonian']\"},\n", + " {'company_id': '146',\n", + " 'job_title': 'data entry analyst persian mother tongue',\n", + " 'location': 'Lugano',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.33808860e-01 3.09297234e-01 5.43240368e-01 3.36553939e-02\\n6.23574734e-01 -3.16841230e-02 1.21177398e-01 3.30645770e-01\\n-4.58654873e-02 -1.20653957e-01 -1.30789042e-01 -4.67110099e-03\\n1.66565701e-01 1.70944557e-02 2.89377809e-01 2.37423137e-01\\n3.65137219e-01 1.19189806e-01 -6.43271813e-03 1.12552240e-01\\n8.84640142e-02 -6.37717098e-02 3.40526134e-01 3.77358675e-01\\n5.12227535e-01 2.99215782e-02 -1.09532043e-01 9.22342241e-02\\n-4.38653320e-01 -2.63905227e-01 3.50567013e-01 6.30657328e-03\\n-9.21074226e-02 -1.06360234e-01 8.82983878e-02 -7.06975088e-02\\n-2.32329622e-01 -1.47536382e-01 -1.95641965e-02 -1.06167328e-02\\n-8.80594477e-02 -1.45947278e-01 -4.04466642e-03 -1.28193181e-02\\n-3.85445684e-01 -3.06215912e-01 -2.00284824e-01 1.23403557e-01\\n-1.04378022e-01 -1.04404181e-01 -4.34259921e-01 3.68120849e-01\\n-1.13452651e-01 -2.61326909e-01 1.02561601e-01 6.82463646e-01\\n-4.89488468e-02 -3.94375652e-01 -1.27662361e-01 -1.31194666e-01\\n9.29144621e-02 -1.25856608e-01 1.53275877e-01 -5.00015095e-02\\n4.12004352e-01 -1.29340187e-01 -6.54253960e-02 4.77167308e-01\\n-5.94574392e-01 8.67803022e-02 -2.15081528e-01 -1.03547335e-01\\n-4.08942670e-01 5.81261851e-02 -3.67433012e-01 -2.07869515e-01\\n-4.03857529e-02 2.66654789e-01 5.72253056e-02 1.00670800e-01\\n8.97154957e-02 1.58414572e-01 5.42169251e-02 8.64914712e-03\\n1.59756973e-01 3.47066909e-01 2.01019108e-01 2.17871845e-01\\n-2.75760293e-01 3.74901026e-01 2.23656341e-01 -2.19682559e-01\\n1.52127132e-01 2.03934573e-02 2.78651536e-01 -4.73554954e-02\\n-1.09268703e-01 4.17950414e-02 -9.41683352e-02 -1.10756215e-02\\n7.51458108e-02 -1.74211964e-01 5.19423746e-02 1.01549149e-01\\n-2.10697144e-01 2.94871274e-02 -8.10528994e-02 3.21722209e-01\\n-3.89995337e-01 4.50834751e-01 -7.81309828e-02 -1.51887745e-01\\n1.15958303e-01 -5.86245298e-01 -2.33906120e-01 3.95503230e-02\\n1.08723484e-01 4.43533093e-01 1.55618310e-01 3.68271708e-01\\n2.10805908e-01 9.79845971e-02 2.77927995e-01 7.84835994e-01\\n3.88532062e-03 9.54128951e-02 -1.29597649e-01 2.86732376e-01\\n2.23584190e-01 -2.04867035e-01 1.15944035e-01 5.98165058e-02\\n6.37730658e-02 6.93881437e-02 -1.08216226e-01 -4.21203561e-02\\n-1.78721786e-01 -2.14272887e-01 -3.34381051e-02 4.86620776e-02\\n-3.90671253e-01 -4.54125583e-01 3.38166565e-01 -4.14403295e-03\\n1.52207181e-01 -1.08922891e-01 -8.90191495e-02 2.25098282e-01\\n1.21401856e-02 3.68987411e-01 7.06873834e-02 1.37168884e-01\\n-2.91465253e-01 -1.50768980e-01 -2.18957901e-01 3.03733468e-01\\n-1.16495907e-01 -8.60223845e-02 -2.53346652e-01 -6.58316761e-02\\n3.57666492e-01 7.22824782e-02 -2.84062952e-01 2.43034244e-01\\n-1.31714433e-01 -2.84241766e-01 -1.30841285e-01 2.23324791e-01\\n-2.09345758e-01 1.54233739e-01 -4.65910286e-02 -3.27247649e-01\\n2.26309314e-01 3.35241593e-02 5.29413782e-02 6.94742706e-03\\n2.16540739e-01 -1.20081559e-01 2.55294830e-01 1.18141025e-01\\n-7.34030724e-01 3.69124383e-01 -6.32819682e-02 -2.02157855e-01\\n7.30583519e-02 4.72062267e-02 2.75613397e-01 -1.04698695e-01\\n1.07737787e-01 -2.18604103e-01 -1.53831944e-01 -2.54583091e-01\\n-1.68759063e-01 7.70743703e-03 2.78747648e-01 -4.57173228e-01\\n-9.77649018e-02 1.50359914e-01 -2.32525408e-01 1.95299070e-02\\n2.17273682e-01 1.16197206e-01 1.37703598e-01 1.64431959e-01\\n-1.76519766e-01 -3.49614322e-01 1.32711262e-01 -2.90237606e-01\\n-1.47235155e-01 4.16317023e-02 -1.38245940e-01 1.55262336e-01\\n2.18748286e-01 8.48300382e-02 1.00115433e-01 1.28885567e-01\\n-2.01272190e-01 -7.84163401e-02 1.85827717e-01 2.07579359e-01\\n3.92107993e-01 -1.48599327e-01 -1.97065055e-01 4.23552573e-01\\n-2.21959531e-01 3.67547214e-01 3.73147368e-01 -7.68823385e-01\\n3.22789341e-01 2.18722701e-01 2.96536367e-02 -2.14897469e-01\\n5.36003649e-01 -3.43585789e-01 6.79924861e-02 4.19254974e-02\\n-1.59187764e-01 -1.37149483e-01 2.89736062e-01 -9.79861990e-02\\n-2.02412859e-01 4.61794227e-01 7.93674216e-02 2.56792339e-03\\n2.62228727e-01 -2.13372618e-01 -1.03444830e-01 4.40446436e-02\\n-7.25691691e-02 -2.62166828e-01 -4.21965897e-01 -1.24958143e-01\\n-1.04443394e-01 -3.85889560e-01 -1.77229360e-01 -4.19012576e-01\\n2.46882997e-02 -1.30186155e-01 -5.88599369e-02 2.01992691e-01\\n2.22256735e-01 3.24749291e-01 1.04327001e-01 -1.07674971e-01\\n-1.36781663e-01 -4.11558330e-01 -1.10685170e-01 -9.76468027e-02\\n4.70612943e-01 2.53333569e-01 2.23494381e-01 -9.52003598e-02\\n1.07784033e-01 4.66470182e-01 -1.44502148e-01 -3.14272702e-01\\n2.65675992e-01 2.31562555e-01 -3.29469517e-02 -2.34306917e-01\\n-4.80747409e-02 2.35844448e-01 -5.93714528e-02 -1.96420457e-02\\n-7.08553493e-02 3.12330062e-03 2.72002429e-01 -1.83038339e-01\\n-4.76510003e-02 -3.10505837e-01 -1.53738916e-01 2.74114192e-01\\n-3.36123377e-01 -1.09044284e-01 6.65431142e-01 1.14347786e-01\\n1.21611327e-01 2.65562326e-01 2.78779626e-01 -3.16981748e-02\\n4.38396968e-02 7.57417902e-02 8.03291127e-02 9.74092558e-02\\n-1.12735815e-01 -7.08976239e-02 -2.35137507e-01 -5.59416473e-01\\n-4.66306496e+00 -1.08979076e-01 -1.30031005e-01 -2.94217199e-01\\n1.47935614e-01 -3.21586579e-01 2.12511986e-01 4.81008478e-02\\n-2.01069295e-01 8.46371129e-02 -2.60742098e-01 -5.09404577e-02\\n2.79044867e-01 1.40279010e-01 7.33757913e-02 3.62728119e-01\\n1.04446314e-01 -2.09114760e-01 4.25243042e-02 4.32343215e-01\\n-2.52301749e-02 -5.74563503e-01 1.36016667e-01 1.04650326e-01\\n2.84418821e-01 4.33061197e-02 -3.12401325e-01 -8.16985499e-03\\n-3.12173873e-01 -2.07176358e-01 5.87459840e-02 -2.62094617e-01\\n-1.81915641e-01 4.20457989e-01 1.21917650e-02 -3.12243313e-01\\n2.74204195e-01 -2.06577376e-01 5.11861742e-02 -2.72217542e-01\\n6.92866668e-02 -5.18332660e-01 1.47011057e-01 5.48529364e-02\\n4.72166538e-01 -3.27273190e-01 1.23145677e-01 3.19681615e-02\\n1.96088567e-01 1.57970563e-01 -2.48318806e-01 -6.17052279e-02\\n-1.26310706e-01 -1.78924069e-01 -1.04687169e-01 -2.15628311e-01\\n4.05318499e-01 4.56904918e-01 -2.00101808e-01 2.32311964e-01\\n7.16914386e-02 -1.65409207e-01 -3.18525404e-01 -5.51193178e-01\\n-2.15755984e-01 4.93572429e-02 -6.20403588e-01 -6.39935076e-01\\n-3.38405631e-02 1.41883239e-01 -1.04950078e-01 1.03693053e-01\\n-2.48829592e-02 -5.61613739e-01 -5.45332693e-02 -3.98257464e-01\\n2.20349386e-01 1.26738653e-01 6.57426491e-02 -2.41079301e-01\\n-1.57918364e-01 -3.15698028e-01 2.55657643e-01 4.18057404e-02\\n-9.36630666e-02 -5.42739220e-02 1.03616416e-01 -1.96646839e-01\\n-3.66206199e-01 -2.33131647e-01 5.59222460e-01 -1.04544394e-01\\n3.50093752e-01 8.24182034e-02 1.29797719e-02 2.53655076e-01\\n3.30364376e-01 -2.91021824e-01 3.10911477e-01 -3.91887486e-01\\n1.88820571e-01 6.80517033e-02 5.32150924e-01 -3.49181384e-01\\n1.01906814e-01 1.06767854e-02 -3.26699734e-01 -1.09287634e-01\\n4.96038824e-01 1.44503005e-02 -1.76213239e-03 -8.32991526e-02\\n1.16983309e-01 -3.40726435e-01 -2.23119527e-01 1.73958391e-01\\n-1.42131438e-02 4.40690488e-01 8.56911838e-02 -2.14673251e-01\\n-1.35719880e-01 2.12820873e-01 -4.95874844e-02 -8.26197043e-02\\n-2.77504414e-01 1.90921631e-02 -2.53553301e-01 2.95423895e-01\\n1.77791773e-03 -2.04633638e-01 -3.60736132e-01 -2.65948594e-01\\n-9.92810503e-02 5.33737591e-04 4.60856408e-01 2.26309821e-01\\n-1.29152372e-01 -2.46892110e-01 2.27758482e-01 8.59395191e-02\\n3.13515335e-01 4.71085198e-02 4.57771048e-02 -1.52176678e-01\\n1.95387319e-01 3.13223596e-03 -2.58302957e-01 2.66808361e-01\\n-4.26377654e-02 9.06146094e-02 -3.54954243e-01 -2.27521047e-01\\n5.97808398e-02 2.40894593e-03 -1.28886014e-01 2.81829536e-01\\n2.49338821e-01 -1.02415808e-01 -3.20983976e-01 -3.56254995e-01\\n4.58460122e-01 -2.91767180e-01 9.30215120e-02 1.73249841e-01\\n1.50426552e-01 4.16760385e-01 2.01962050e-02 -6.03147969e-02\\n-1.28951564e-01 1.77367404e-01 -5.78675531e-02 -1.67640865e-01\\n-1.09442314e-02 -3.66040975e-01 -1.30462736e-01 1.89480841e-01\\n1.67633802e-01 -1.31400540e-01 9.22771823e-03 3.50130409e-01\\n8.73811394e-02 -4.61268932e-01 -9.71636269e-03 3.64185572e-01\\n3.33365530e-01 1.93395689e-01 9.15321037e-02 -4.35944736e-01\\n-2.10540425e-02 -1.24327131e-01 2.31908765e-02 2.14439392e-01\\n1.83412880e-02 -9.73902494e-02 1.96327567e-01 -3.46817881e-01\\n3.85796487e-01 6.21099509e-02 -9.61049795e-02 2.85170674e-01\\n2.07616836e-02 -1.93891719e-01 -2.29700729e-01 -1.34604648e-01\\n-3.62979830e-03 -1.09176978e-01 2.23440662e-01 -4.29107435e-02\\n-1.36408573e-02 -1.32611707e-01 -3.77421588e-01 -2.25395888e-01\\n-2.76397735e-01 -6.25097798e-03 -1.06393531e-01 -4.16078448e-01\\n-1.83859184e-01 2.84173787e-02 -6.80961967e-01 3.02745521e-01\\n-1.49204358e-01 2.44271941e-02 -6.26711547e-02 -7.41073787e-02\\n-2.13181555e-01 2.31477484e-01 3.91949534e-01 1.18261896e-01\\n-2.84639746e-01 -1.70106396e-01 -2.26399750e-02 -7.04559922e-01\\n2.18232647e-01 7.13617429e-02 5.77714257e-02 6.37285132e-03\\n1.02959707e-01 -3.70802581e-01 2.64183968e-01 -2.56517649e-01\\n-1.82418168e-01 -2.18497068e-01 -8.23013559e-02 -4.59789544e-01\\n-3.98904234e-02 1.31254092e-01 -1.01887211e-01 1.83157817e-01\\n-2.92151213e-01 3.25488657e-01 4.04254012e-02 9.86875743e-02\\n6.85024336e-02 -2.66387850e-01 1.79321259e-01 -2.30635285e-01\\n-1.30357549e-01 -8.12784061e-02 -3.19419265e-01 -5.11546386e-03\\n-1.27284288e-01 -9.52472910e-02 -2.53642738e-01 1.28301889e-01\\n2.16379538e-01 1.46379918e-01 -1.35378793e-01 4.15037870e-02\\n2.66328249e-02 -3.04881692e-01 1.76143944e-02 -3.23559999e-01\\n-1.08497247e-01 1.35648176e-01 2.28200659e-01 -2.50480235e-01\\n-1.55603960e-01 -2.98788697e-01 4.07461911e-01 -4.35049124e-02\\n-3.80467802e-01 -5.77371195e-02 2.30893746e-01 1.62737221e-01\\n2.24840477e-01 -2.71672696e-01 -2.13277742e-01 2.85927922e-01\\n-5.29277436e-02 1.94996580e-01 3.67770493e-01 -1.36694774e-01\\n-2.25496843e-01 2.47037873e-01 -6.64073169e-01 2.40664911e-02\\n6.51193619e-01 1.93626374e-01 1.46150216e-01 1.20486684e-01\\n9.57716033e-02 4.40106601e-01 3.21001232e-01 5.09106517e-02\\n-7.89440572e-02 3.76369655e-01 8.61123949e-03 -6.36708379e-01\\n-1.32524505e-01 -2.85108149e-01 -1.29155263e-01 -3.09000611e-01\\n5.69607675e-01 3.03367615e-01 -1.78281128e-01 -3.40414435e-01\\n-1.19051538e-01 -1.52978301e-01 -2.10100308e-01 -9.76054445e-02\\n2.05252022e-01 -2.54782289e-01 5.14592469e-01 7.28868097e-02\\n7.27265775e-02 5.19460738e-01 -1.05505846e-01 -2.77513087e-01\\n-4.23959084e-02 9.33934599e-02 1.84310794e-01 3.87458205e-01\\n-2.18586400e-01 1.33840933e-01 -4.46976535e-02 7.46507496e-02\\n-2.44730636e-01 -4.42620367e-02 2.12499216e-01 2.49134421e-01\\n1.26214564e-01 3.30748826e-01 9.80568305e-02 3.05219352e-01\\n1.14210479e-01 3.07447374e-01 1.69876754e-01 6.45583170e-03\\n4.18930739e-01 2.31370598e-01 2.65832067e-01 1.28966838e-01\\n1.27394974e-01 -4.94270138e-02 -4.60993983e-02 1.48577377e-01\\n1.25702396e-01 2.43364647e-01 1.50332302e-01 5.34438968e-01\\n1.80927634e-01 1.87779099e-01 5.60525179e-01 -5.51042557e-01\\n-2.88314641e-01 -1.71487659e-01 2.91972876e-01 -3.42066109e-01\\n-1.58509061e-01 4.37907875e-02 -3.97763699e-01 1.81295555e-02\\n-5.46271980e-01 -2.20078394e-01 -3.13274115e-02 -1.45382300e-01\\n7.89665952e-02 -1.87182259e-02 -1.06198385e-01 1.72949210e-01\\n-2.92920507e-02 -2.91448414e-01 -4.50780749e-01 -1.85919598e-01\\n-2.52641171e-01 -1.80955559e-01 1.45836309e-01 -5.40036075e-02\\n-5.55246584e-02 -1.74950883e-01 -6.85604885e-02 -4.47730571e-02\\n2.67204762e-01 -5.25078103e-02 -7.79172555e-02 -1.63347259e-01\\n7.59902522e-02 1.64267153e-01 4.40565765e-01 -9.65118930e-02\\n4.11778726e-02 -1.27003655e-01 -2.18794286e-01 -1.66200604e-02\\n1.89993680e-01 -5.23148477e-02 2.17821146e-03 4.75230247e-01\\n-4.63703394e-01 -2.01971322e-01 5.91380931e-02 2.01938331e-01\\n-4.41181868e-01 2.19353616e-01 2.83650577e-01 2.37983942e-01\\n3.82093489e-02 1.48922503e-01 -2.79797494e-01 -8.42603222e-02\\n-2.18456134e-01 -5.86540401e-01 1.91370279e-01 1.10814802e-03\\n-1.05104148e-01 1.72620311e-01 6.06690049e-02 2.28177369e-01\\n-1.38154387e-01 -1.30657688e-01 -1.11243941e-01 1.59763962e-01\\n2.57772595e-01 2.20099986e-01 -1.85099408e-01 -8.06880519e-02\\n-3.02436560e-01 2.36763895e-01 8.56062323e-02 1.52100638e-01\\n-2.82403409e-01 1.64937153e-01 7.42821321e-02 3.79125923e-01\\n-1.27955051e-02 -2.15920076e-01 -1.72276691e-01 -2.56177127e-01\\n-2.07654431e-01 -2.60421157e-01 1.51830241e-01 -1.43889934e-01\\n2.56129414e-01 -1.57497659e-01 -3.70720103e-02 -1.73953906e-01\\n-2.97358423e-01 -5.18601060e-01 1.68270245e-02 -7.05176964e-02]]',\n", + " 'job_description': \"For banking consulting company of Lugano we're looking for a DATA ENTRY ANALYST Tasks: - data entry - use of Excel to manage tables, data and filters - back office activities, database management, customer master data update Requirements: - Commercial/ IT/ Legal/ Economic Degree - Languages: English (level C1 / C2), and Persian (excellent / mother tongue) - Excellent computer skills: Office package, excellent knowledge of Excel - Motivation, spirit of initiative, responsibility - 100% immediate availability EnglishPersianExcelData analystMaster data \",\n", + " 'soft_skills': '[\"Data Entry\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Customer Acquisition Management\", \"Economics\", \"Banking\", \"Activism\", \"Configuration Management Databases\", \"Data.table\", \"Levelling\", \"Commercialization\", \"Clinical Data Management\"]',\n", + " 'languages': \"['English', 'Quechua', 'Ewe', 'Latin', 'Haitian Creole']\"},\n", + " {'company_id': '84',\n", + " 'job_title': '80-100 % big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.81682283e-01 1.87439248e-01 3.78687590e-01 -9.20532122e-02\\n4.65552360e-01 -1.86292648e-01 -1.03126965e-01 4.09185469e-01\\n-9.91664678e-02 -3.44218522e-01 -9.42712277e-02 -3.13977182e-01\\n-8.13111141e-02 -2.09418163e-02 7.14641884e-02 3.62932414e-01\\n2.88181782e-01 1.17923304e-01 -2.05840036e-01 3.03905725e-01\\n1.28349602e-01 1.06518343e-02 1.84759889e-02 7.04880357e-01\\n3.96651596e-01 -3.75896245e-02 -6.79190233e-02 2.37256270e-02\\n-1.52573973e-01 -2.66867161e-01 3.65560502e-01 5.41643500e-02\\n-1.01666622e-01 -2.88677394e-01 4.81687151e-02 9.30703580e-02\\n-1.49658442e-01 3.65504473e-02 3.13525163e-02 2.55309969e-01\\n-5.08893847e-01 -3.29447091e-01 2.25316342e-02 7.29183257e-02\\n-2.19757706e-01 -3.71561944e-01 3.20956819e-02 1.30445078e-01\\n6.98887035e-02 9.01966467e-02 -5.67618132e-01 3.31610709e-01\\n-2.67561972e-01 -2.26368055e-01 1.80796921e-01 5.39060473e-01\\n3.76961306e-02 -3.72882247e-01 -4.12207127e-01 -2.46067509e-01\\n1.06765896e-01 -1.20766044e-01 2.99297459e-02 -2.38689005e-01\\n3.78937066e-01 -6.49741068e-02 -1.02940902e-01 4.59121317e-01\\n-7.38302171e-01 -8.90221596e-02 -1.21141143e-01 2.40087584e-02\\n-3.80735219e-01 -6.47153184e-02 -2.30198354e-01 -2.69460171e-01\\n-6.53617457e-02 3.97915542e-01 8.39829743e-02 9.82755572e-02\\n-1.99056327e-01 3.11835259e-01 -1.20288521e-01 2.47768849e-01\\n2.14087307e-01 2.05352619e-01 1.60445243e-01 3.05022538e-01\\n-3.05854291e-01 4.58371311e-01 1.60755336e-01 -3.47015738e-01\\n2.80510992e-01 -7.56255118e-03 5.19158781e-01 1.10481985e-01\\n4.10591736e-02 1.71833307e-01 -2.23974124e-01 2.18977392e-01\\n1.57224223e-01 -3.87489855e-01 8.65556970e-02 -8.33296776e-02\\n-1.64042473e-01 4.14208844e-02 9.02520642e-02 2.84580916e-01\\n-3.39608371e-01 4.39265937e-01 1.29513949e-01 -1.51143163e-01\\n-1.26930065e-02 -5.44422209e-01 -1.90857962e-01 6.43250393e-03\\n-3.23670879e-02 8.35273042e-02 2.72829771e-01 1.87919125e-01\\n2.38900766e-01 9.56967101e-02 1.47793144e-01 8.86133730e-01\\n-1.14433043e-01 4.31088805e-02 -2.62481630e-01 4.34997737e-01\\n2.51022458e-01 -3.09823811e-01 2.90539324e-01 2.31960475e-01\\n1.19503036e-01 -5.44317327e-02 -1.60798833e-01 3.19623142e-01\\n-5.66789545e-02 -1.41533360e-01 -3.97436708e-01 6.99721202e-02\\n-1.78498641e-01 -4.34312552e-01 5.08250833e-01 2.17256799e-01\\n2.05564141e-01 -1.41602587e-02 -1.28717333e-01 -1.69660240e-01\\n-1.49079366e-02 2.54221410e-01 -6.53697997e-02 1.62178114e-01\\n-4.28333789e-01 -1.59982666e-01 -2.46281758e-01 3.14624995e-01\\n-1.70222208e-01 7.33694583e-02 -5.17296493e-02 -4.29650098e-02\\n3.51431906e-01 -6.85328618e-02 -2.26694062e-01 1.20248534e-01\\n-7.89054781e-02 -2.05864400e-01 -2.59980746e-02 2.09028810e-01\\n-1.69362307e-01 2.09980562e-01 1.33059975e-02 -2.18072042e-01\\n4.94887114e-01 1.82122529e-01 2.59861737e-01 -1.42043263e-01\\n2.42614150e-01 -1.20078541e-01 1.82521001e-01 1.57891080e-01\\n-7.17908204e-01 2.61305302e-01 -4.53082584e-02 -9.26863849e-02\\n7.00953156e-02 6.66160807e-02 3.00857097e-01 -2.73948014e-01\\n1.28727481e-02 -9.85597372e-02 -3.99046302e-01 -3.29872727e-01\\n-2.79651791e-01 3.39298844e-02 4.55814242e-01 -4.40481305e-01\\n-1.18771404e-01 1.00911535e-01 -4.58244294e-01 -8.32259306e-04\\n1.58540413e-01 1.14616744e-01 1.14106834e-02 1.04304785e-02\\n-1.88365057e-01 -5.57683170e-01 -1.62497442e-02 -3.74170601e-01\\n-4.39014345e-01 3.88793796e-02 -2.58027673e-01 2.85359174e-01\\n6.09448599e-03 3.41191329e-02 -1.48458496e-01 1.63488805e-01\\n-2.84468472e-01 -5.49664497e-02 2.03651160e-01 1.62950233e-01\\n3.82934213e-01 -7.22968429e-02 -2.99684167e-01 4.54713196e-01\\n-1.31517753e-01 5.61476052e-01 3.01445395e-01 -8.29640687e-01\\n5.34583926e-01 2.92785764e-01 5.23939840e-02 -4.57767040e-01\\n6.55192673e-01 -3.57430845e-01 -4.01242822e-02 1.16010033e-01\\n-4.15295869e-01 -2.48563915e-01 3.08653146e-01 -1.14852540e-01\\n-2.03349039e-01 6.49143338e-01 1.82170078e-01 1.66246202e-02\\n2.51806527e-01 -3.68780583e-01 -1.39038146e-01 -4.43818122e-02\\n-9.73315313e-02 -3.27394366e-01 -3.91553491e-01 1.57248020e-01\\n-3.70549969e-02 -5.20157874e-01 -1.42571807e-01 -2.68171310e-01\\n-1.31856367e-01 -3.14191967e-01 -2.49039829e-01 3.29810739e-01\\n2.57146686e-01 8.29710811e-02 7.98954368e-02 -1.31496906e-01\\n-1.24418929e-01 -4.90043670e-01 -2.14134872e-01 1.03108715e-02\\n4.37444091e-01 1.76421762e-01 1.68174326e-01 2.40344089e-02\\n4.30144705e-02 5.00279129e-01 -2.40268573e-01 -3.10540915e-01\\n1.06540583e-01 2.29071781e-01 8.34115148e-02 -8.20387527e-02\\n7.64636248e-02 3.52174014e-01 -2.71961361e-01 5.37464097e-02\\n-9.30243433e-02 7.69924968e-02 3.30284983e-01 1.13681413e-01\\n-2.72806823e-01 -2.85369754e-01 4.38208953e-02 2.02752635e-01\\n-5.22453725e-01 -1.84741035e-01 5.91263771e-01 2.28405595e-01\\n2.27325603e-01 1.57906175e-01 2.36606956e-01 -1.38043642e-01\\n-1.83473587e-01 -1.86496660e-01 1.59459963e-01 9.41218883e-02\\n9.03658867e-02 -5.06203882e-02 -9.35831740e-02 -4.63430852e-01\\n-3.51222777e+00 -3.39940667e-01 1.41368419e-01 -2.01553836e-01\\n1.79616809e-01 -1.59183890e-01 -4.75250222e-02 -5.72079234e-02\\n-2.58935273e-01 5.57813458e-02 -1.11103632e-01 -1.76130205e-01\\n9.88007262e-02 1.86769739e-01 5.69279194e-02 3.30149025e-01\\n7.22625330e-02 -1.25331014e-01 -6.90699741e-02 3.00844401e-01\\n-1.57895550e-01 -5.67462921e-01 2.89531499e-01 1.50842862e-02\\n2.38738105e-01 2.09774509e-01 -2.41199821e-01 -1.21639065e-01\\n-1.74192265e-01 -2.69392967e-01 -1.69770699e-02 -2.59119660e-01\\n-7.48209730e-02 3.74560148e-01 1.99699238e-01 -1.46766067e-01\\n1.51672840e-01 -1.99217364e-01 -9.08219367e-02 -3.24112803e-01\\n1.03076294e-01 -5.82843482e-01 4.10234295e-02 -1.10499337e-01\\n7.35707581e-01 -3.72934222e-01 9.85198170e-02 1.13814123e-01\\n1.70093358e-01 1.54166698e-01 -4.37744670e-02 -5.79858795e-02\\n-2.32860044e-01 -3.09749514e-01 2.41682678e-02 -2.44319841e-01\\n3.98189783e-01 6.48414373e-01 -1.55443147e-01 2.73626093e-02\\n1.36509091e-01 -2.32730895e-01 -3.34012479e-01 -4.21371698e-01\\n-2.09066048e-01 -2.22388372e-01 -6.53625429e-01 -4.18155164e-01\\n-7.02583715e-02 -8.34598914e-02 -1.47140250e-01 5.04647255e-01\\n-2.81953305e-01 -4.98255044e-01 -3.84789556e-02 -5.14872432e-01\\n1.81560144e-01 -2.11801946e-01 -1.18386326e-02 -1.03273921e-01\\n-2.04302654e-01 -5.05156219e-01 1.15951508e-01 -1.85347516e-02\\n-1.65169775e-01 -1.97355598e-01 1.36787565e-02 -2.94152409e-01\\n-2.69036382e-01 -3.56543005e-01 4.13319468e-01 8.73599127e-02\\n3.34432125e-01 1.89929098e-01 2.30493382e-01 1.15978606e-01\\n3.26198608e-01 -2.42779553e-01 9.66179296e-02 -3.48026633e-01\\n1.22885793e-01 -6.63173944e-02 4.91252631e-01 -3.56657535e-01\\n3.09072733e-02 1.39490083e-01 -1.10084392e-01 -5.32138050e-02\\n3.75823230e-01 4.26450260e-02 3.07371151e-02 -2.48145089e-01\\n2.45513976e-01 -4.79674399e-01 -1.90572053e-01 1.41397581e-01\\n-1.43337389e-02 5.81430793e-01 -6.35461211e-02 -4.18386042e-01\\n-3.26144159e-01 4.31512624e-01 -1.15515575e-01 -2.26462215e-01\\n-1.69223905e-01 1.58595815e-01 -2.43895203e-01 2.48625770e-01\\n2.16574445e-02 -1.44487783e-01 -3.37845683e-01 -1.43787146e-01\\n1.58879049e-02 2.38049299e-01 2.92574406e-01 8.81149620e-02\\n-1.16599044e-02 -2.34309331e-01 -4.29652445e-02 1.05158407e-02\\n3.14128369e-01 3.72499615e-01 1.57420799e-01 -1.44633055e-01\\n7.85493292e-03 2.70905346e-01 -1.95501029e-01 1.88757151e-01\\n-2.66153365e-01 -9.01772305e-02 -4.01636153e-01 -2.72401780e-01\\n-1.88193783e-01 -2.49208495e-01 7.34248236e-02 3.17148924e-01\\n1.66256353e-01 7.33621593e-04 -9.29704905e-02 -4.20981050e-01\\n4.11930948e-01 -2.92266998e-02 4.97211628e-02 1.76947817e-01\\n8.70722309e-02 5.59732854e-01 2.37652306e-02 4.94923480e-02\\n-6.12579957e-02 -2.05380786e-02 -1.97995961e-01 -1.74014151e-01\\n2.63751391e-03 -3.72215480e-01 -1.05852343e-01 4.10467148e-01\\n7.62668028e-02 -3.28825474e-01 -2.02972203e-01 2.67775565e-01\\n9.44284350e-03 -2.26405457e-01 -1.88684821e-01 1.36651397e-01\\n2.63447940e-01 1.05610885e-01 2.51618505e-01 -3.83182526e-01\\n-1.43158495e-01 6.80491477e-02 -1.43654123e-01 4.91694003e-01\\n1.26632750e-01 1.29412934e-01 -1.68087885e-01 -2.91408539e-01\\n3.64251643e-01 -2.85495669e-01 -8.35412666e-02 -7.20552057e-02\\n1.13631841e-02 -1.11289315e-01 -4.00889218e-01 8.02551676e-03\\n-1.04714399e-02 -2.22693965e-01 1.19676866e-01 3.14981043e-02\\n1.17467605e-01 1.89744942e-02 -5.11763334e-01 -4.07842547e-01\\n-3.15082014e-01 -1.13633662e-01 2.85114013e-02 -3.16405892e-01\\n7.86746442e-02 -9.18532610e-02 -6.21863842e-01 2.41906807e-01\\n-4.02308345e-01 3.30269290e-03 6.47828281e-02 4.32109982e-02\\n-3.25767666e-01 -6.62075728e-02 2.00399503e-01 2.76892632e-01\\n-2.67506242e-01 -2.31497988e-01 6.50933385e-02 -8.30649853e-01\\n1.14963427e-01 5.48938662e-02 -5.88104166e-02 7.91099668e-02\\n1.88044906e-02 -4.74236161e-01 1.08255006e-01 -3.20648283e-01\\n-4.79696924e-03 -3.12460796e-03 -1.64286539e-01 -3.72082293e-01\\n1.36209413e-01 1.64436717e-02 -2.81079352e-01 5.17635047e-01\\n-4.34610128e-01 2.39547580e-01 -5.04855579e-03 1.90886959e-01\\n1.12567827e-01 -2.24946067e-01 1.88082799e-01 -2.98851460e-01\\n-4.49494392e-01 -2.04969004e-01 -3.46500665e-01 -2.61933208e-01\\n1.31463008e-02 -2.29911402e-01 -1.80052385e-01 5.96170053e-02\\n3.02282751e-01 8.32196027e-02 -4.16758209e-02 -2.50092417e-01\\n8.26637968e-02 -3.63348603e-01 1.58640474e-01 -2.08799839e-01\\n-1.36584982e-01 -4.39401679e-02 7.83236250e-02 -2.32604742e-02\\n-7.35894963e-02 -2.88976789e-01 4.73935336e-01 -2.83161908e-01\\n-3.19745779e-01 -5.67997918e-02 7.33129457e-02 -2.45973486e-02\\n2.82018840e-01 -5.67704797e-01 1.08858511e-01 3.03045779e-01\\n1.37220435e-02 1.96467251e-01 1.79652557e-01 -4.40460108e-02\\n-6.94237649e-02 3.69891077e-01 -3.90244603e-01 5.86609170e-03\\n8.02094579e-01 5.46152256e-02 8.49995464e-02 2.47874409e-01\\n1.70607224e-01 2.67486274e-01 4.51526225e-01 1.08738169e-01\\n-1.24682643e-01 2.96537489e-01 -5.31062782e-02 -5.48210204e-01\\n3.61800630e-04 -1.47251800e-01 -2.86359549e-01 -3.83622527e-01\\n5.96291363e-01 4.05626059e-01 -3.22634935e-01 -2.33379662e-01\\n8.13953578e-02 -6.60110265e-02 1.84612885e-01 -2.02021644e-01\\n-1.10165663e-02 -1.30618498e-01 5.07276058e-01 7.64006004e-02\\n2.22455189e-01 5.29187739e-01 -1.78059280e-01 -3.59813988e-01\\n-2.59784646e-02 1.77617088e-01 1.31144509e-01 4.56232935e-01\\n-1.42486736e-01 2.83151388e-01 -7.07604662e-02 1.26259044e-01\\n-2.48981807e-02 2.56730437e-01 1.74402356e-01 6.12107031e-02\\n1.38565123e-01 1.09222770e-01 2.41632119e-01 4.19732094e-01\\n1.91550836e-01 4.70496535e-01 2.85442591e-01 -1.98981948e-02\\n4.03745025e-01 5.71518481e-01 4.77396637e-01 2.36340627e-01\\n-1.10665463e-01 1.25795871e-01 -5.96388131e-02 2.51457226e-02\\n2.28351727e-01 2.71547973e-01 1.72635347e-01 8.57397497e-01\\n4.08165842e-01 1.04865953e-01 7.36067891e-01 -6.63702548e-01\\n-3.88285041e-01 5.44272410e-03 3.17753166e-01 -2.54995018e-01\\n-1.80549815e-01 3.46172713e-02 -3.57195824e-01 1.37795553e-01\\n-4.11722213e-01 -1.20956205e-01 -8.67878348e-02 8.13850611e-02\\n5.58433719e-02 -2.60824617e-02 -2.35767290e-01 5.00595793e-02\\n-1.12795122e-01 -5.18736653e-02 -4.02234316e-01 -7.84496367e-02\\n-2.88421184e-01 -1.93942294e-01 -1.18790202e-01 -2.23139137e-01\\n-1.49630979e-01 -4.22138125e-01 -1.62863314e-01 -2.65843980e-02\\n2.55182385e-01 -5.46712764e-02 -1.11228472e-03 -2.20954075e-01\\n1.17328472e-01 2.92783588e-01 5.43230772e-01 -8.60061496e-02\\n1.61043942e-01 -2.26383060e-01 -2.03628555e-01 4.59833145e-02\\n1.99530795e-01 5.67138493e-02 -2.18384322e-02 4.25489962e-01\\n-2.84949660e-01 -1.49793306e-03 5.13495281e-02 3.02700967e-01\\n-5.12080729e-01 -4.04775850e-02 -4.26456565e-03 3.98623526e-01\\n9.80578661e-02 1.62199199e-01 -2.55752116e-01 2.03446269e-01\\n-2.65491843e-01 -5.61938465e-01 3.34353805e-01 -8.75630975e-02\\n-3.13622355e-02 2.49688104e-01 2.42099866e-01 1.22884728e-01\\n-2.85947680e-01 -6.45812377e-02 1.71160679e-02 3.25504303e-01\\n1.23383604e-01 3.10238183e-01 -3.22718471e-01 -1.65807270e-02\\n-2.29419261e-01 1.58522353e-01 -2.39618659e-01 1.62612632e-01\\n-3.64774205e-02 2.94256657e-01 8.53570849e-02 1.12555146e-01\\n2.63281018e-01 2.37469934e-02 -1.21048003e-01 -2.91411251e-01\\n-1.68876380e-01 -2.98096895e-01 -3.58168222e-02 -5.55445105e-02\\n2.26531804e-01 -3.56464118e-01 -9.11193639e-02 5.90963427e-05\\n-1.64801225e-01 -3.93262863e-01 5.01599871e-02 -1.04471922e-01]]',\n", + " 'job_description': 'About our client Our client is one of the leading communication companys in switzerland. Your responsibilities Your tasks will vary from data science (10–20%) through Big Data engineering (50%) to DevOps (30–40%). You work in an international team with huge cultural diversity and a strong focus on monetizing telco data, primarily for making Switzerland run better. You interact with data scientists, Big Data engineers, DevOps as well as product owners and business developers. Your profile MSc or PhD in Computer Science or related field Highly experienced with Kafka, HDP, Spark (streaming including), Elasticsearch, Cassandra, Play Very good knowledge of FP (Scala) and good knowledge of OOP (Java); know-how of JavaScript & AngularJS is highly welcome Solid understanding of data structures and algorithms, experience in agile/lean development of scalable solutions Knowledge and hands-on experience of CI/CD, specifically Jenkins, Ansible, Oozie, etc. Ideally, experience in creating self-healing systems Fluent in English, German/French is an asset Your chance Are you interested? Then apply now! Ort: Zürich Spezialisierung: System Engineering/Administration Sprachen: Deutsch Englisch Französisch Job ID: 1341',\n", + " 'soft_skills': '[\"Communications\"]',\n", + " 'hard_skills': '[\"Jenkins\", \"Agility\", \"Systems Engineering\", \"Interactivity\", \"Computer Science\", \"Spark Streaming\", \"Data Engineering\", \"Scala (Programming Language)\", \"Apache Oozie\", \"Idealization\", \"Healing\", \"Lean Product Development\", \"Data Science\", \"JavaScript (Programming Language)\", \"Scalability\", \"Big Data\", \"Cultural Diversity\", \"Data Structures\", \"Ansible\", \"Algorithms\", \"Business Development\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Latvian', 'Swedish', 'Vietnamese', 'Malayalam']\"},\n", + " {'company_id': '122',\n", + " 'job_title': 'application scientist, chemical ionization mass spectrometry',\n", + " 'location': 'Thun',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.22071165e-01 3.35994661e-01 4.83776540e-01 -6.40972853e-02\\n6.11253023e-01 -7.13514015e-02 -1.14054918e-01 1.98036522e-01\\n1.12699583e-01 -2.06944034e-01 -1.58244222e-01 -3.54309440e-01\\n2.49078125e-02 2.25402951e-01 7.10181594e-02 6.34336233e-01\\n3.25270057e-01 5.24713621e-02 4.69298139e-02 4.38917756e-01\\n9.60446000e-02 -1.46910578e-01 1.38095424e-01 7.59765983e-01\\n3.24976802e-01 -2.94832662e-02 -4.38018888e-02 1.22776538e-01\\n-1.77218154e-01 -2.16217875e-01 5.02378941e-01 9.38742235e-02\\n-2.22176850e-01 -4.03737217e-01 9.49825048e-02 2.32561350e-01\\n-2.25547686e-01 -2.98123956e-02 -1.24865249e-01 1.93640873e-01\\n-6.83146060e-01 -3.22210491e-01 4.83767800e-02 -6.82667047e-02\\n-2.93613076e-01 -3.39217901e-01 1.45096183e-01 -1.12511292e-01\\n2.76587382e-02 1.45025745e-01 -4.27522898e-01 2.11642951e-01\\n-1.87756449e-01 -2.60515660e-01 3.73523861e-01 8.18408966e-01\\n-2.92102545e-02 -5.68019032e-01 -4.50492203e-01 -2.96409249e-01\\n1.07475119e-02 -1.24969650e-02 8.14223215e-02 -3.71924520e-01\\n4.69474673e-01 4.97827865e-02 -3.50979343e-03 2.19129920e-01\\n-7.30725646e-01 -2.13264644e-01 -3.03966403e-01 1.61905855e-01\\n-4.08347398e-01 4.16619927e-02 -1.48494124e-01 -1.34820372e-01\\n-8.88818949e-02 3.99366617e-01 -8.53884891e-02 8.67198110e-02\\n-3.45002525e-02 3.27037930e-01 -2.68398166e-01 3.53007913e-01\\n2.10795075e-01 1.39860064e-01 2.86855876e-01 2.88504630e-01\\n-2.99485713e-01 4.43927169e-01 1.62827209e-01 -2.95417964e-01\\n2.14850798e-01 4.97248173e-02 3.65435719e-01 -5.71940653e-02\\n1.89987376e-01 1.07137293e-01 -3.54181767e-01 2.38421440e-01\\n2.66428292e-01 -2.44015634e-01 3.65765579e-02 -9.35238600e-02\\n6.67725131e-02 2.26250626e-02 -2.73920931e-02 1.54613601e-02\\n-5.24358511e-01 4.52765703e-01 1.46474883e-01 -2.14989126e-01\\n-5.19621857e-02 -5.93617141e-01 -1.56798974e-01 -1.37796532e-02\\n-6.69724271e-02 8.90561342e-02 4.62685786e-02 1.77838862e-01\\n3.26121300e-01 1.20813958e-02 9.50876772e-02 8.72025311e-01\\n2.41289437e-02 8.79597515e-02 -5.67165613e-02 4.61607456e-01\\n5.15877455e-02 -2.40077183e-01 2.97346979e-01 9.03361440e-02\\n-3.11097074e-02 -1.03263885e-01 -2.22860560e-01 2.63914824e-01\\n-1.02852240e-01 -3.23492259e-01 -2.59753287e-01 3.29096258e-01\\n-1.74353197e-02 -4.56009716e-01 5.22334278e-01 -1.96926221e-01\\n7.77562410e-02 -1.05281353e-01 -5.14109358e-02 -3.26890908e-02\\n-1.44234210e-01 2.15448797e-01 1.81884229e-01 1.24584571e-01\\n-2.91880339e-01 -2.07166284e-01 -1.68662578e-01 7.95932636e-02\\n-2.74402499e-01 2.47937605e-01 -2.39675030e-01 -1.61837593e-01\\n2.73200095e-01 1.93460882e-02 -4.42898840e-01 2.58858263e-01\\n-1.01767957e-01 -1.36146277e-01 -8.04063827e-02 4.65727776e-01\\n-2.59148479e-01 2.08761364e-01 2.87646018e-02 -2.04146594e-01\\n6.17075503e-01 4.15205546e-02 2.51093328e-01 -6.53549582e-02\\n2.86037147e-01 -1.47970736e-01 2.42254108e-01 2.09540769e-01\\n-6.48887277e-01 4.47108328e-01 -8.04359540e-02 -1.30039364e-01\\n3.79298851e-02 -1.66308314e-01 5.29851019e-01 -3.41786265e-01\\n-7.15541467e-02 -1.97946444e-01 -3.24780196e-01 -3.81483734e-01\\n-3.14209044e-01 -8.85766521e-02 3.07037562e-01 -3.65383625e-01\\n5.35375997e-02 1.01774052e-01 -5.69337010e-01 -2.89981008e-01\\n2.08624199e-01 2.59375304e-01 2.13857174e-01 1.68030396e-01\\n-2.40718067e-01 -6.50057316e-01 7.35826194e-02 -5.34984350e-01\\n-7.20526129e-02 8.34865049e-02 -2.83299446e-01 2.65487105e-01\\n7.77441487e-02 -4.36626263e-02 -1.96749061e-01 5.85632250e-02\\n-3.24441493e-01 1.49356484e-01 6.86924532e-02 5.87357320e-02\\n2.13346779e-01 1.27405956e-01 -3.84200364e-01 4.62790132e-01\\n-2.50309169e-01 5.30068517e-01 5.39943501e-02 -9.67972815e-01\\n5.16683519e-01 5.74802756e-01 5.30515127e-02 -4.01740909e-01\\n6.12028360e-01 -4.48840499e-01 -2.18429625e-01 1.43864572e-01\\n-3.92809629e-01 -7.81859681e-02 3.13722670e-01 -3.24343204e-01\\n-2.43544191e-01 6.64350629e-01 1.92120746e-01 2.01540589e-01\\n3.75425965e-01 -1.15122199e-01 -1.61432792e-02 1.35955065e-01\\n-1.45501152e-01 -1.76568642e-01 -5.07044435e-01 -7.47955143e-02\\n-1.20463520e-01 -4.73117054e-01 -8.90543759e-02 -4.81914520e-01\\n-1.58354104e-01 -2.90354818e-01 -7.60099813e-02 7.71325678e-02\\n1.90583169e-01 5.43439649e-02 1.46061212e-01 1.96301639e-02\\n-1.07335329e-01 -7.67278850e-01 1.18593358e-01 -1.57433599e-02\\n2.44572103e-01 2.84206092e-01 1.87653422e-01 8.72246325e-02\\n-1.23348963e-02 5.44273973e-01 -5.19644678e-01 -3.17016423e-01\\n8.69193673e-02 6.35529906e-02 -1.75551996e-01 -1.36884004e-01\\n2.58261323e-01 2.67141849e-01 -2.94593900e-01 1.47626251e-01\\n-1.76367611e-01 3.75982672e-02 3.81409824e-01 -2.53120251e-02\\n-2.25336194e-01 -1.46812513e-01 -1.55685738e-01 6.15317933e-02\\n-4.97732550e-01 -2.56312937e-01 2.71816611e-01 1.56659577e-02\\n1.72362819e-01 2.60542303e-01 2.10443199e-01 -5.83785623e-02\\n-3.64409864e-01 -3.83100927e-01 2.14357316e-01 1.83322728e-01\\n-1.80672258e-02 6.76504672e-02 -1.29908741e-01 -6.54375613e-01\\n-2.79908323e+00 -1.23159684e-01 3.50847542e-02 -1.53656602e-01\\n4.65550214e-01 -1.09387070e-01 1.96244806e-01 -8.46396685e-02\\n-4.14233088e-01 1.64728284e-01 -2.14522690e-01 -2.35280752e-01\\n9.66513455e-02 5.62695563e-02 1.90110996e-01 4.68250588e-02\\n-1.06818303e-02 -4.07430887e-01 1.57529533e-01 4.34014946e-01\\n-5.00358976e-02 -7.59915829e-01 1.07479513e-01 4.87836078e-02\\n2.62701094e-01 2.17019558e-01 -5.97976029e-01 -7.68634379e-02\\n-3.27123761e-01 -2.30037183e-01 1.35682285e-01 -3.72972488e-01\\n-1.75831258e-01 2.31695116e-01 2.41476491e-01 -8.81463103e-03\\n-5.15482426e-02 -3.78988206e-01 -8.20081234e-02 -4.45041806e-01\\n7.43470490e-02 -6.34494662e-01 -3.65943983e-02 -7.86084384e-02\\n6.89913750e-01 -1.32354721e-01 2.04089046e-01 1.17671430e-01\\n1.10012017e-01 2.63050109e-01 2.31961489e-01 7.93322474e-02\\n-1.25771239e-01 -2.11531669e-01 -5.65928556e-02 -1.08543336e-01\\n4.80061769e-01 4.26655352e-01 -1.76116854e-01 -1.07978091e-01\\n1.82572436e-02 -3.59977007e-01 -7.17721581e-01 -4.23244908e-02\\n-3.46820623e-01 -5.78375757e-02 -7.69396186e-01 -3.59955430e-01\\n-6.20905459e-02 -2.11180151e-01 -5.68541884e-02 7.70458937e-01\\n-3.83617759e-01 -2.70362854e-01 -2.83906981e-02 -6.00602150e-01\\n3.28278601e-01 -2.22286701e-01 3.72322947e-02 -7.73643926e-02\\n-3.45586002e-01 -4.55108136e-01 1.48932084e-01 -6.09154254e-03\\n-1.60074204e-01 -2.51260817e-01 1.95340980e-02 -1.94570482e-01\\n-4.47593063e-01 -6.62861228e-01 4.03402686e-01 1.07800528e-01\\n3.88790488e-01 -1.27314180e-02 2.01849699e-01 -9.46250558e-02\\n3.28960717e-01 9.95439813e-02 1.17847554e-01 -4.43078339e-01\\n-3.04384679e-02 -1.22414287e-02 5.69319844e-01 -2.56601453e-01\\n-1.59537066e-02 -6.56263530e-02 -3.97187054e-01 -1.36839375e-01\\n2.84766197e-01 -7.85306543e-02 5.17561734e-02 -1.75073758e-01\\n2.64304042e-01 -2.89100647e-01 5.40050771e-03 1.57532096e-01\\n7.65489414e-02 7.85804272e-01 6.28712997e-02 -3.18475664e-01\\n-8.42032731e-02 3.53727639e-01 -1.08276501e-01 9.22434498e-03\\n4.87649217e-02 -7.09222117e-03 -3.20107073e-01 3.88561428e-01\\n-5.38056307e-02 -9.08005387e-02 -2.26392925e-01 -2.58532651e-02\\n-2.41315290e-01 4.11914945e-01 3.72470349e-01 3.22843254e-01\\n-2.25378826e-01 -3.69885445e-01 -1.32335916e-01 3.15627038e-01\\n1.45535111e-01 3.18097115e-01 2.13341445e-01 -2.45503902e-01\\n1.10960584e-02 3.68367732e-01 -1.77435786e-01 2.88998038e-01\\n-1.31619781e-01 8.66411775e-02 -5.51874220e-01 -1.51292235e-01\\n-3.13471854e-01 -3.47445786e-01 1.79899424e-01 4.33494151e-01\\n1.77767158e-01 -1.51875600e-01 1.64088011e-01 -5.00433564e-01\\n2.39484161e-01 1.53381437e-01 1.93355709e-01 -1.35048945e-02\\n-1.69267833e-01 5.87525427e-01 -1.05123676e-01 -9.58819315e-02\\n5.59639037e-02 -3.30140628e-02 -2.89241403e-01 -3.77500772e-01\\n1.63769469e-01 -5.40195405e-01 -1.60197005e-01 3.98302853e-01\\n1.51308447e-01 -1.69362992e-01 -2.08383128e-01 3.18847239e-01\\n-3.85672152e-02 -2.93277323e-01 -3.83144975e-01 5.28388098e-02\\n3.46008599e-01 1.76176548e-01 2.76199818e-01 -5.93356729e-01\\n1.36092573e-01 -3.31758671e-02 -5.41806966e-02 4.04620796e-01\\n-8.13515484e-02 7.18372390e-02 -4.35290575e-01 -3.05844545e-01\\n3.99080575e-01 -3.93500552e-02 -5.99032752e-02 -1.40683949e-02\\n5.55592403e-02 -2.32374951e-01 -2.94043571e-01 4.44828197e-02\\n-2.51961462e-02 -2.44572848e-01 -2.79224068e-02 1.34612918e-01\\n7.48762265e-02 -3.06981094e-02 -5.54868817e-01 -1.32118642e-01\\n-7.72951692e-02 1.74364805e-01 -2.53934823e-02 -4.29614663e-01\\n-7.62047842e-02 -1.45285934e-01 -4.00995523e-01 2.15944916e-01\\n-6.63143098e-02 -1.86884701e-01 2.11304754e-01 -1.59485079e-02\\n-2.73282498e-01 -2.20773190e-01 1.90122157e-01 1.66708380e-01\\n-3.21528465e-01 -2.35284761e-01 -1.25715539e-01 -8.77228022e-01\\n1.23679921e-01 -8.38333368e-02 -1.15303196e-01 2.43682876e-01\\n1.94252953e-02 -8.22788477e-01 2.11156607e-01 -2.09233195e-01\\n-2.74240002e-02 -8.52119252e-02 -2.64390945e-01 -2.24004343e-01\\n7.98411220e-02 1.93789322e-02 8.32750201e-02 2.76013434e-01\\n-2.44845241e-01 4.74416971e-01 -1.55817166e-01 -9.30967629e-02\\n-9.56344083e-02 -2.40649492e-01 2.41330832e-01 -3.32357526e-01\\n-3.92562091e-01 -1.56487405e-01 -2.26712108e-01 -2.20085114e-01\\n-2.16433525e-01 -1.89405039e-01 -1.64508730e-01 3.49242017e-02\\n4.08531964e-01 5.83917871e-02 -2.20097825e-01 -1.49208412e-01\\n8.54256302e-02 -3.25875998e-01 1.03538074e-01 -1.10601783e-01\\n1.26354754e-01 -5.08532189e-02 1.33721307e-01 2.46858120e-01\\n1.36273786e-01 -3.07841659e-01 3.82927120e-01 -4.35529888e-01\\n-4.98367727e-01 -1.56510159e-01 1.69563949e-01 -1.53531507e-03\\n3.58934402e-01 -3.51289213e-01 -2.13212013e-01 3.15565348e-01\\n-5.50941154e-02 -8.40158984e-02 3.95422101e-01 -2.20634609e-01\\n-2.09009275e-01 1.79741129e-01 -4.30357277e-01 2.04788595e-01\\n8.30743194e-01 3.25510085e-01 1.74998604e-02 1.40910268e-01\\n6.87763542e-02 3.28109562e-01 5.60177028e-01 -5.66273369e-02\\n6.07278338e-03 3.23202938e-01 2.27420866e-01 -4.17084992e-01\\n-1.96479812e-01 -1.53758824e-01 -1.02760829e-03 -4.64945912e-01\\n4.90882397e-01 3.19201469e-01 -2.79180944e-01 -2.14740127e-01\\n-2.88104683e-01 -2.05734491e-01 2.90126204e-01 -3.75250317e-02\\n6.63378611e-02 -5.83293512e-02 5.44876158e-01 -6.81349337e-02\\n1.47334024e-01 5.05152822e-01 -2.01801166e-01 -2.61362076e-01\\n-1.75539464e-01 2.03189760e-01 1.61162660e-01 4.23275590e-01\\n-1.12217359e-01 3.14255595e-01 -1.33299038e-01 1.83682948e-01\\n-1.95814580e-01 8.43852535e-02 1.50031224e-01 -2.68648528e-02\\n-8.52944255e-02 2.45723158e-01 4.08645660e-01 4.48904812e-01\\n4.09840196e-01 3.92711341e-01 2.93104261e-01 2.12088395e-02\\n5.03329754e-01 5.60217023e-01 2.39641666e-01 4.66271304e-02\\n5.99698536e-03 1.61154702e-01 9.89949405e-02 3.42507884e-02\\n4.10280645e-01 2.69631863e-01 1.11378603e-01 9.16861653e-01\\n2.13574246e-01 4.45441425e-01 7.33426094e-01 -6.49558902e-01\\n-3.66797984e-01 5.95637560e-02 4.31729555e-01 -5.58744371e-01\\n3.28731090e-02 1.96207166e-01 1.88608933e-02 2.29131699e-01\\n-5.27038932e-01 -1.88437074e-01 2.89539713e-02 1.14500336e-01\\n1.81479037e-01 -9.59135368e-02 -1.35038614e-01 2.36179009e-01\\n-2.82172322e-01 -2.62147784e-01 -4.30314124e-01 -2.33607978e-01\\n-2.64321178e-01 8.98233149e-03 -3.46091688e-02 -1.02093562e-01\\n-5.33997826e-02 -2.47440755e-01 8.31302404e-02 -6.23095147e-02\\n3.76782954e-01 -1.79653257e-01 -1.76410705e-01 -8.13263729e-02\\n7.08274484e-01 1.16025582e-01 5.89377761e-01 -9.00212824e-02\\n9.20626372e-02 -2.85596848e-01 -2.28821635e-01 1.02161586e-01\\n1.76186681e-01 1.87908232e-01 5.90837048e-03 4.18738365e-01\\n-2.38294661e-01 -6.98183253e-02 4.01096791e-02 3.08326930e-01\\n-2.65782952e-01 -1.15349948e-01 -1.95698112e-01 -6.09375015e-02\\n-3.13130207e-02 1.85329616e-01 -1.64328247e-01 1.20316356e-01\\n3.74259166e-02 -5.07009983e-01 3.77264142e-01 -4.61399332e-02\\n-3.29699874e-01 1.29200742e-02 4.16063130e-01 2.55316556e-01\\n-8.87309909e-02 -3.49061452e-02 -1.18126377e-01 1.64474785e-01\\n2.93811113e-02 3.67938459e-01 -1.11943677e-01 -4.43264812e-01\\n-4.05919790e-01 1.78947031e-01 -2.66234577e-01 1.12964772e-03\\n6.46589026e-02 4.32083786e-01 -2.48052292e-02 8.70360062e-02\\n4.95590389e-01 -1.95871115e-01 -2.87681282e-01 -4.21056271e-01\\n-1.87379614e-01 -2.11080045e-01 -1.12561956e-01 -5.73445633e-02\\n1.99748904e-01 -3.09953570e-01 -2.45363235e-01 -4.99587715e-01\\n8.14421773e-02 -2.94173717e-01 -3.18146124e-03 -3.42493095e-02]]',\n", + " 'job_description': 'Headquartered in Thun, Switzerland, TOFWERK aims to bring the advantages of our time-of-flight technology to new markets and applications. With team members in Switzerland, Germany, China and the United States, we offer a family of end-user research products and custom instrument designs for OEM partners and research laboratories. TOFWERK is seeking an analytical scientist to develop and demonstrate new applications of our chemical ionization (CI) time-of-flight mass spectrometers (TOFMS), with emphasis on the Vocus PTR-TOF. The scientist will work within our Applications Department in support of our Vocus PTR-TOF and API-TOF product teams. He/she will be independently tasked with increasing the breadth and quality of analyses based on these instruments. The scientist will be active in relevant scientific communities in order to stay updated on trends and advances and to engage potential customers and collaborators. As the company’s expert on CI-TOFMS applications, he/she will communicate the capabilities of TOFWERK technology to prospective customers; lead product demonstrations; represent TOFWERK at international scientific meetings; support the Marketing Department in the production of technical promotional material; and formally present data in conference presentations, research reports, application notes, and peer-reviewed publications. He/she will work with other members of the Applications Department to ensure that all analyses at TOFWERK utilize the best available methods and technology. Based on his/her knowledge of the field and use of TOFWERK technology, the application scientist will provide suggestions and feedback to the Software and R&D Departments regarding potential short- and long-term product improvements and developments. Requirements PhD in Analytical Chemistry or related field 4+ years of experience using mass spectrometry for applied research or sample analysis, including method development Ability to work independently in the laboratory, including: experiment design, sample preparation, operation of scientific equipment, and data interpretation Strong background in data analysis, including statistics and spectral interpretation Interest in interacting with customers and prospective customers Confident and effective communicator Willingness to travel up to 30% per year for scientific conferences and customer site visits at European and international locations Fluency in English Desirable Experience and Expertise Use of any of the following: PTR-MS, chemical ionization MS, TOFMS, real-time trace gas analyzers Expertise in any of the following fields: biogenic VOCs, forensics, fragrances, flavors, breath analysis, atmospheric science Experience running and characterizing prototype scientific equipment Familiarity with any of the following: high vacuum systems, ion optics, ion-molecule reaction chemistry Competence in laboratory electronics and use of diagnostic equipment We Offer Exciting projects in state-of-the-art mass spectrometry An open culture that encourages new ideas A creative international team Flexible work times A bright, spacious workplace on the river in beautiful Thun We look forward to receiving your application at jobs@tofwerk.com. Please send all attachments in pdf format.',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Communications\", \"Operations\", \"Presentations\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Product Demonstration\", \"Chemical Ionization\", \"Research Reports\", \"Sample Preparation\", \"Data Presentation\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Vienna Development Methods\", \"Prototype (Manufacturing)\", \"Spectrometer\", \"Activism\", \"Mass Spectrometry\", \"Analytical Chemistry\", \"Instrumentation\", \"Vacuum Systems\", \"Productivity Improvement\", \"IText (Free PDF Software)\", \"Atmospheric Sciences\", \"Electronics\", \"Optics\", \"Survey Data Analysis\", \"Applied Research\", \"Receivables\", \"Chemistry\", \"Sample Analysis\", \"Experience Design\", \"Sampling Design\", \"Residual Gas Analyzer\", \"Peer Review\", \"Application Notes\", \"Long-Term Potentiation\", \"User Research\", \"Application Programming Interface (API)\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'software engineer (.net)',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.56080568e-01 1.93148911e-01 3.77408177e-01 -8.65293667e-02\\n4.31363791e-01 -1.94448575e-01 -1.35949090e-01 4.80250478e-01\\n-3.45974974e-02 -4.28468257e-01 -9.70795155e-02 -2.07912594e-01\\n2.34848745e-02 1.22925222e-01 2.32433602e-01 3.10243011e-01\\n2.81564325e-01 1.33661211e-01 -1.13380089e-01 1.84315562e-01\\n5.61748743e-02 -7.47088343e-02 -6.18350506e-02 6.84396029e-01\\n2.39262298e-01 5.85483201e-02 -3.16057261e-03 -9.37680621e-03\\n-1.32458270e-01 -2.45531991e-01 2.95273215e-01 2.14479044e-02\\n-1.52680144e-01 -2.81649560e-01 1.40669569e-01 7.41659030e-02\\n-1.84494108e-01 1.59350157e-01 -1.13644488e-01 8.25644508e-02\\n-4.75046158e-01 -1.63162991e-01 1.45551771e-01 5.88020682e-02\\n-1.90932542e-01 -2.93273717e-01 7.74823725e-02 -8.84056184e-03\\n1.45265773e-01 1.09058304e-03 -5.37427425e-01 2.79565901e-01\\n-3.48685563e-01 -1.79893479e-01 3.19035590e-01 6.09827399e-01\\n1.54568739e-02 -4.35706884e-01 -3.75521481e-01 -1.48569569e-01\\n-1.04316976e-02 -7.98244178e-02 6.60208911e-02 -2.96609253e-01\\n3.55327457e-01 2.26663649e-02 -8.75806250e-03 2.47175351e-01\\n-8.95252228e-01 -4.04918082e-02 -2.51025259e-01 6.62418408e-03\\n-3.27290982e-01 -4.01312746e-02 -3.69874477e-01 -7.29230270e-02\\n-1.40932426e-01 3.91911745e-01 3.11416425e-02 6.53691590e-02\\n-1.60573110e-01 2.25562140e-01 -3.39686543e-01 3.34952176e-01\\n2.18767628e-01 2.77683556e-01 3.34870428e-01 3.14984709e-01\\n-3.56550992e-01 4.75446314e-01 2.10322782e-01 -2.80701518e-01\\n2.35135615e-01 7.22400844e-02 3.82477254e-01 1.20367281e-01\\n1.51280656e-01 2.35943615e-01 -8.67609084e-02 3.07316750e-01\\n2.42526576e-01 -2.76389688e-01 -4.98453267e-02 -9.53486562e-02\\n-1.20723367e-01 -3.18633355e-02 5.70446737e-02 2.23246723e-01\\n-2.72652388e-01 3.16690147e-01 1.24584757e-01 -2.34752402e-01\\n-4.89700995e-02 -5.65280378e-01 -1.37178525e-01 1.20791398e-01\\n-5.40278740e-02 1.09249465e-01 4.00324672e-01 1.59479707e-01\\n1.53194368e-01 8.25470909e-02 9.69787538e-02 9.22473073e-01\\n-1.03277147e-01 1.23663180e-01 -3.01684380e-01 4.60253477e-01\\n1.94230303e-01 -2.08721787e-01 1.96943581e-01 2.12754160e-01\\n1.30095258e-02 -1.99308157e-01 -8.39868113e-02 2.98042297e-01\\n5.56528158e-02 -1.44124180e-01 -3.59682232e-01 1.07088692e-01\\n-1.88294828e-01 -4.33902174e-01 5.40855289e-01 7.76793361e-02\\n1.88919008e-01 6.69356510e-02 1.52250677e-02 -1.19873971e-01\\n-1.68333620e-01 2.13958248e-01 -1.11143604e-01 2.80343622e-01\\n-2.70427763e-01 -1.75374597e-01 -2.52617747e-01 3.18715096e-01\\n-1.41762808e-01 1.22812875e-01 -2.64254093e-01 -1.42447084e-01\\n3.70284647e-01 -4.49388884e-02 -2.44977444e-01 1.95152834e-01\\n-6.07798947e-03 -8.08904469e-02 -3.79925296e-02 2.11029455e-01\\n-7.92776346e-02 2.59263873e-01 -1.88488867e-02 -1.79319337e-01\\n4.52043474e-01 8.24245661e-02 1.06702700e-01 -2.06927761e-01\\n3.16024363e-01 -1.85554430e-01 1.43897206e-01 1.27013132e-01\\n-6.56764746e-01 3.84132922e-01 -5.59206195e-02 -9.65637192e-02\\n1.00542225e-01 1.03304543e-01 2.78735042e-01 -2.95071036e-01\\n-6.96300194e-02 -1.13193423e-01 -2.87134200e-01 -2.23700523e-01\\n-3.35188329e-01 -4.54844274e-02 4.03871119e-01 -5.19874930e-01\\n-8.78926069e-02 1.53504655e-01 -4.59783733e-01 2.75309850e-02\\n2.00541526e-01 2.33458072e-01 -3.85739096e-02 6.54197857e-02\\n-1.38456553e-01 -4.80164379e-01 1.51281551e-01 -5.22860408e-01\\n-3.69016498e-01 1.72323361e-01 -2.09392294e-01 2.68585593e-01\\n1.74638540e-01 -2.70043164e-02 -7.31242597e-02 4.43889536e-02\\n-1.89224958e-01 -3.24979201e-02 1.83593318e-01 -2.28490145e-03\\n4.17078972e-01 -7.07066059e-02 -3.26625645e-01 4.71890450e-01\\n-1.73823267e-01 4.03181314e-01 2.06356168e-01 -8.70787024e-01\\n5.66860318e-01 2.68075705e-01 5.58564663e-02 -3.66678029e-01\\n5.81503749e-01 -3.24544758e-01 2.06829020e-04 1.54253602e-01\\n-4.77820009e-01 -3.12150866e-01 2.17616975e-01 -1.04825243e-01\\n-2.93253064e-01 5.56197047e-01 8.04241598e-02 -4.78553679e-03\\n3.05832773e-01 -3.37242275e-01 -1.54500797e-01 1.13847002e-01\\n-1.21154688e-01 -2.21390963e-01 -4.40318257e-01 -7.00418949e-02\\n-1.19820066e-01 -5.10915339e-01 -2.36982241e-01 -4.60604906e-01\\n-1.98249832e-01 -3.18210810e-01 -2.86535442e-01 3.82603019e-01\\n1.09737694e-01 7.94486851e-02 -8.48853663e-02 -4.60592424e-03\\n-8.43398049e-02 -5.99449813e-01 -8.20869803e-02 7.76287019e-02\\n3.91833067e-01 1.83018953e-01 8.08174759e-02 -5.24813235e-02\\n1.83985960e-02 5.19500911e-01 -3.35410655e-01 -2.63019860e-01\\n1.74004078e-01 1.88753292e-01 -2.80356482e-02 -3.06134149e-02\\n1.57368436e-01 2.07776457e-01 -2.93065161e-01 -7.97389373e-02\\n-6.70121908e-02 -1.07502460e-01 3.66157353e-01 -6.21042624e-02\\n-4.03022051e-01 -2.74755478e-01 5.94517216e-02 2.92046905e-01\\n-5.57985604e-01 -2.36680448e-01 5.52455544e-01 2.48211995e-01\\n4.12381925e-02 1.69326499e-01 1.30104989e-01 -1.31125659e-01\\n-2.01765373e-01 -1.66949898e-01 1.15501471e-01 1.29974857e-01\\n2.57726669e-01 1.23631008e-01 -2.03046933e-01 -5.69413722e-01\\n-3.76805496e+00 -2.25868270e-01 1.65885493e-01 -1.51287138e-01\\n2.26377681e-01 -1.81755096e-01 1.68021709e-01 -7.00821579e-02\\n-2.10395500e-01 -8.49758610e-02 -1.77517906e-01 -7.32701644e-02\\n7.37257823e-02 2.92409897e-01 1.34751312e-02 3.38219613e-01\\n7.82353058e-02 -2.24177182e-01 6.19387962e-02 2.63360649e-01\\n-1.65819660e-01 -6.58178329e-01 1.54218465e-01 -1.47018358e-01\\n2.63613075e-01 2.97084332e-01 -4.45293725e-01 2.55128630e-02\\n-1.66284680e-01 -2.15138644e-01 4.50572222e-02 -2.14635819e-01\\n-5.57271875e-02 2.25526392e-01 1.35809511e-01 -2.02386215e-01\\n1.01849727e-01 -1.85980752e-01 -4.13249284e-02 -4.45478082e-01\\n1.31249249e-01 -5.72972894e-01 -1.38950534e-02 2.98377802e-03\\n7.29705751e-01 -3.61602694e-01 2.03133449e-01 1.17647626e-01\\n8.37631524e-02 1.59143940e-01 -7.53194317e-02 -1.91613995e-02\\n-2.04912752e-01 -3.78989190e-01 -2.99151205e-02 -1.92000732e-01\\n5.49896061e-01 4.59305793e-01 -1.87583357e-01 1.03912428e-01\\n3.57650258e-02 -3.03644836e-01 -4.39314574e-01 -3.38832289e-01\\n-1.58930764e-01 -1.26746684e-01 -6.41954899e-01 -4.15935576e-01\\n-2.49307707e-01 -1.93608969e-01 -1.37884587e-01 5.55526257e-01\\n-2.84188956e-01 -5.10280430e-01 -2.59039421e-02 -6.37746274e-01\\n2.52843559e-01 -2.26316139e-01 2.97462903e-02 -1.10442042e-01\\n-2.11682498e-01 -4.78418082e-01 5.60118183e-02 1.20670818e-01\\n-1.91853136e-01 -1.36877701e-01 1.79403394e-01 -1.94910347e-01\\n-2.57204413e-01 -5.72091460e-01 3.04498374e-01 8.09416622e-02\\n3.14933985e-01 1.89429238e-01 3.19826037e-01 6.18387163e-02\\n2.37774521e-01 -9.04789120e-02 -3.14555690e-02 -5.32287836e-01\\n1.15562230e-01 2.88579948e-02 5.12407184e-01 -1.42023653e-01\\n-1.82092641e-04 2.23018795e-01 -9.32478532e-02 -1.34975195e-01\\n3.15486610e-01 6.10491596e-02 1.61342010e-01 -2.64102966e-01\\n3.00925255e-01 -3.80683750e-01 -1.84567988e-01 1.39580637e-01\\n3.61941103e-03 6.47961617e-01 -1.17418412e-02 -3.77736717e-01\\n-2.77897239e-01 5.97393274e-01 -1.28988232e-02 -8.65849108e-02\\n-2.15379477e-01 1.18851602e-01 -2.23257542e-01 1.46887779e-01\\n4.76620421e-02 -2.25292176e-01 -2.90942371e-01 -2.28284355e-02\\n1.22728506e-02 2.51277000e-01 3.14860314e-01 9.31898355e-02\\n-3.45924459e-02 -3.04911792e-01 2.40479130e-02 1.13652408e-01\\n2.99094886e-01 5.12591362e-01 1.02369010e-01 -3.12467247e-01\\n3.35496590e-02 2.12983921e-01 -2.57468045e-01 1.52975157e-01\\n-1.92598671e-01 6.57905340e-02 -4.05984133e-01 -2.56783277e-01\\n-2.38749310e-01 -3.78756404e-01 4.71915901e-02 2.14380071e-01\\n1.31660193e-01 8.87448248e-03 -5.17465249e-02 -4.61679727e-01\\n2.36221835e-01 9.93564427e-02 1.87740520e-01 1.30254686e-01\\n8.30886215e-02 4.85724777e-01 1.01850890e-02 -9.13250670e-02\\n-1.38306975e-01 4.75338511e-02 -2.18216822e-01 -1.71908438e-01\\n7.72910565e-02 -4.45516258e-01 -1.30362421e-01 3.77613395e-01\\n4.15331535e-02 -3.13067198e-01 -1.39433041e-01 2.01428890e-01\\n4.10561822e-02 -3.05346221e-01 -1.71384200e-01 4.38531041e-02\\n2.57916361e-01 1.38682559e-01 2.64674604e-01 -4.13822651e-01\\n3.11111193e-02 8.76074508e-02 -8.05520341e-02 4.39803690e-01\\n9.92582217e-02 2.19187632e-01 -9.59154665e-02 -2.66465575e-01\\n3.39916199e-01 -1.99911267e-01 -1.95614062e-02 -2.42210642e-01\\n1.32604048e-01 -2.18685344e-02 -3.33047420e-01 1.36582926e-01\\n-6.47914708e-02 -2.57143438e-01 1.52688473e-02 4.49702106e-02\\n1.32045716e-01 9.44920331e-02 -5.45710087e-01 -3.35303932e-01\\n-3.60576928e-01 -5.13102859e-02 2.90220920e-02 -3.87472123e-01\\n1.47359520e-01 1.35270217e-02 -5.97967029e-01 2.78581202e-01\\n-1.76468402e-01 -2.02690251e-02 2.45954558e-01 9.94930044e-02\\n-4.32751894e-01 -3.35348099e-02 2.71509320e-01 1.49051577e-01\\n-2.50479162e-01 -2.81872183e-01 -7.22615570e-02 -8.91823947e-01\\n1.40992284e-01 -4.45289388e-02 -1.26678467e-01 9.16090831e-02\\n-1.01079322e-01 -6.85088396e-01 1.17785856e-01 -2.90763259e-01\\n-1.53966233e-01 6.48120567e-02 -1.02642186e-01 -4.96740401e-01\\n-3.18696834e-02 -1.39206961e-01 -2.25110710e-01 4.07514393e-01\\n-3.80681187e-01 2.72910565e-01 -1.05970047e-01 -4.00226302e-02\\n4.89778034e-02 -2.86113054e-01 1.06398419e-01 -2.86720723e-01\\n-3.90495032e-01 -8.81903619e-02 -3.26335698e-01 -2.84578949e-01\\n2.88308300e-02 -4.02680010e-01 -1.81177631e-01 4.43391316e-02\\n2.88417220e-01 6.53915405e-02 -1.21453777e-01 -1.99708238e-01\\n5.06974123e-02 -3.16313148e-01 7.59341866e-02 -1.66165411e-01\\n1.88631788e-02 -1.38993621e-01 2.63718307e-01 -5.70409074e-02\\n1.00752734e-01 -3.60319912e-01 4.48579043e-01 -1.55351505e-01\\n-2.97490209e-01 2.13303603e-03 6.20750263e-02 -3.85469273e-02\\n2.21531525e-01 -4.81472611e-01 1.29665220e-02 3.46269101e-01\\n2.06163242e-01 2.22878512e-02 2.59840190e-01 -6.56863526e-02\\n-1.09584875e-01 2.19374150e-01 -3.84504527e-01 9.06379223e-02\\n7.89885759e-01 1.15856864e-01 1.48495048e-01 1.77180529e-01\\n2.02043012e-01 4.87491459e-01 4.40176398e-01 -1.74724422e-02\\n1.97667889e-02 3.34163278e-01 7.03069121e-02 -5.48197687e-01\\n1.04504615e-01 -9.54187140e-02 -1.92263275e-01 -1.94941893e-01\\n7.67711639e-01 4.36880112e-01 -3.50368679e-01 -1.87310115e-01\\n-1.72036558e-01 -2.16024756e-01 2.44043797e-01 -1.22457393e-01\\n9.94440615e-02 -2.15783283e-01 4.36647147e-01 8.26508850e-02\\n2.48861074e-01 5.05186975e-01 -2.15826243e-01 -3.68670285e-01\\n-5.16876355e-02 1.59347966e-01 1.53209805e-01 4.67807055e-01\\n-1.51276603e-01 2.41852805e-01 9.64428857e-03 1.41520485e-01\\n-1.32109791e-01 1.32314533e-01 2.16801643e-01 1.00343436e-01\\n1.89376712e-01 1.12129770e-01 3.81084561e-01 4.42660242e-01\\n2.48022839e-01 5.29416144e-01 2.83803165e-01 8.91948417e-02\\n3.64243358e-01 5.70781767e-01 5.49594581e-01 1.15411028e-01\\n-2.65131309e-03 1.04059335e-02 5.72127029e-02 -1.06986374e-01\\n3.13165188e-01 3.73614848e-01 6.61072508e-02 8.52439344e-01\\n4.27101940e-01 2.06252947e-01 7.23077059e-01 -5.89551151e-01\\n-3.65577281e-01 7.54299611e-02 4.18884099e-01 -2.69659758e-01\\n-9.61338729e-02 1.20866619e-01 -3.65411729e-01 1.64171845e-01\\n-4.50262874e-01 -8.45630318e-02 -1.35806978e-01 -7.46107623e-02\\n5.34902103e-02 -1.36261895e-01 -2.27826819e-01 4.70013022e-02\\n-1.41610280e-01 -1.45620942e-01 -3.96981984e-01 -1.76469475e-01\\n-2.42330417e-01 -1.68468326e-01 -6.54866099e-02 1.87619757e-02\\n-8.99046957e-02 -3.38035613e-01 -1.77686781e-01 1.05645984e-01\\n3.48413736e-01 -2.85804514e-02 -9.26296785e-02 -2.06029356e-01\\n1.72895625e-01 2.96328753e-01 5.14332116e-01 1.40505163e-02\\n1.01222366e-01 -9.78353024e-02 -2.00560972e-01 1.38179094e-01\\n1.10972762e-01 8.94219652e-02 -2.06258222e-02 3.18742126e-01\\n-2.82852530e-01 -1.26588285e-01 1.89622045e-01 4.03309882e-01\\n-3.68627012e-01 -3.77563946e-02 -5.31406850e-02 3.23474467e-01\\n3.38791609e-02 2.78379440e-01 -1.99437261e-01 1.44223943e-01\\n-1.95960075e-01 -6.10788345e-01 3.72426271e-01 -1.75516337e-01\\n-5.26430085e-02 9.49736610e-02 2.22196400e-01 3.15471798e-01\\n-1.50957510e-01 -9.58691537e-02 -3.38231027e-02 3.02343220e-01\\n-1.90932974e-02 3.62638712e-01 -3.10895920e-01 -1.22929879e-01\\n-2.06452087e-01 1.77650332e-01 -1.04128920e-01 1.20369874e-01\\n-6.83541819e-02 3.21786702e-01 6.62914589e-02 1.19413242e-01\\n2.31071621e-01 -1.18878499e-01 -1.92042693e-01 -3.10740501e-01\\n-2.71370590e-01 -1.13782980e-01 6.29800707e-02 8.92709289e-03\\n2.28870124e-01 -4.01317477e-01 -1.88404649e-01 -4.29977551e-02\\n-7.98203498e-02 -4.33421463e-01 2.66793044e-03 -3.12348884e-02]]',\n", + " 'job_description': 'In this role You’ll work on challenging projects using state of the art technologies and tools. You’ll work with business analysts, partners and customers to design reliable, secure and highly efficient systems You’ll work on technical components and participate to code review You’ll be actively involved in the complete project lifecycle, from requirements analysis to final delivery and will cover activities from the tender phase up to support of our solutions. What we offer A challenging and professional working environment in a dynamic team with extensive expertise Exciting projects with latest technologies An organization with flat hierarchies and collaborations across business departments Close contact with customers from various industries Promoting environment with an attractive prospect for your professional and personal development About your profile You hold a MSc or BSc from a leading university or institute of technology. You have minimum 2 years of experience in Microsoft technologies (.NET, WPF, ASP.NET MVC, WCF and RESTful API) Excellent knowledge of relational databases (SQL Server or Oracle) and on object-relational mapping tools (Entity Framework, NHibernate) Good knowledge of web frameworks (Angular JS, Knockout JS or Kendo UI) Experience in automated testing frameworks and continuous integration tools You are fluent in French and English. A level of B2 in German is necessary for this role.',\n", + " 'soft_skills': '[\"Collaboration\", \"Reliability\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Knockout.js\", \"Tooling\", \"ASP.NET\", \"NHibernate\", \"Kendo UI (User Interface Framework)\", \"Web Frameworks\", \"Automated Testing Framework\", \"Continuous Integration\", \"Industrialization\", \"Tenderizing\", \"Activism\", \"Levelling\", \"Object-Relational Mapping\", \"Entity Framework\", \"Wcf 4\", \"Phase (Waves)\", \"Code Review\", \"Finalization\", \"Angular (Web Framework)\", \"Relational Databases\", \"Requirements Analysis\", \"Personality Development\", \"Microsoft SQL Servers\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Tajik', 'Southern Sotho']\"},\n", + " {'company_id': '95',\n", + " 'job_title': 'software engineer python',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Investment Banking & Asset Management',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.66524321e-01 2.36480415e-01 4.88435745e-01 5.09883910e-02\\n4.25920516e-01 -6.75612763e-02 -4.10967097e-02 4.44127142e-01\\n4.95000556e-02 -4.54217851e-01 2.97759436e-02 -1.67527705e-01\\n-1.87981855e-02 -1.10482806e-02 -2.85293870e-02 3.19970071e-01\\n3.13170373e-01 7.39108771e-02 -1.67363048e-01 3.72895718e-01\\n1.52327478e-01 5.72269037e-03 1.53119594e-01 7.13517368e-01\\n4.55829859e-01 -5.61857522e-02 -3.51604596e-02 7.21043795e-02\\n-7.37817362e-02 -2.15559617e-01 5.10402381e-01 -2.40190253e-02\\n-1.25872523e-01 -3.50732684e-01 6.93624541e-02 -8.81827697e-02\\n-1.86496809e-01 -5.46120293e-02 -8.39772262e-03 3.77979875e-02\\n-4.07773614e-01 -4.05121371e-02 -5.20944819e-02 2.57673915e-02\\n-2.96334445e-01 -3.38255286e-01 2.45367046e-02 -2.11097468e-02\\n1.26130924e-01 4.80977856e-02 -3.70255768e-01 2.85416245e-01\\n-1.42219201e-01 -1.06501222e-01 2.12706506e-01 5.53136230e-01\\n-5.66586889e-02 -2.93749690e-01 -6.57931268e-01 -3.78655732e-01\\n1.76998347e-01 -9.53267962e-02 7.73403645e-02 -1.87133044e-01\\n2.87533313e-01 -2.21116357e-02 1.95820071e-02 1.95578665e-01\\n-6.52497172e-01 5.28518856e-03 -2.35582560e-01 -1.87617868e-01\\n-3.30770016e-01 -2.26804137e-01 -2.70517975e-01 -1.10039450e-01\\n-9.24303681e-02 3.00017357e-01 1.72820732e-01 1.04541808e-01\\n-1.58879310e-01 1.57025963e-01 -1.68214768e-01 3.21748734e-01\\n2.06259310e-01 1.76667511e-01 2.51468420e-01 2.90166616e-01\\n-3.14084411e-01 4.79007661e-01 1.19219922e-01 -3.93711090e-01\\n2.92196870e-01 5.67649901e-02 4.01883811e-01 -1.28766581e-01\\n2.02912688e-01 7.65633136e-02 -3.17119420e-01 3.06331873e-01\\n1.57889545e-01 -4.26098347e-01 4.27730009e-03 -1.50043041e-01\\n5.08419015e-02 -1.43463816e-03 1.82068467e-01 9.93697792e-02\\n-3.16408575e-01 4.18032348e-01 7.23801479e-02 -2.32697845e-01\\n-1.50211692e-01 -3.41120899e-01 -7.42211416e-02 -5.85581437e-02\\n2.23242976e-02 1.84804708e-01 1.85397461e-01 2.29694277e-01\\n1.38999358e-01 -2.78477627e-03 9.20521095e-02 6.62667274e-01\\n-3.15797403e-02 1.99884977e-02 -3.02146435e-01 2.61989117e-01\\n7.74926990e-02 -4.56153750e-01 3.03276300e-01 1.72436088e-01\\n-9.00331661e-02 -1.17050514e-01 -1.50599509e-01 2.58681059e-01\\n9.10268426e-02 -1.27656639e-01 -1.60832390e-01 1.32838607e-01\\n-2.06696242e-03 -3.69673431e-01 6.19563580e-01 1.72626019e-01\\n1.38548419e-01 -1.00680679e-01 -5.84435686e-02 -1.85810685e-01\\n-3.61086428e-02 1.30312085e-01 1.28693487e-02 1.35236666e-01\\n-1.77529201e-01 -1.80174172e-01 -1.91014796e-01 1.28278166e-01\\n-3.53432804e-01 4.10672799e-02 -1.45788431e-01 -1.19998947e-01\\n2.40744635e-01 -1.90002084e-01 -2.34248623e-01 2.76450932e-01\\n-1.78823136e-02 -5.05503640e-02 6.39600828e-02 3.36982787e-01\\n-1.76703572e-01 2.28857175e-01 -1.30377024e-01 -9.42343771e-02\\n6.62523150e-01 1.32100716e-01 1.90637380e-01 2.09693843e-03\\n1.88691616e-01 -1.51264686e-02 1.26116410e-01 1.35834575e-01\\n-6.93646431e-01 3.20394754e-01 -9.92077142e-02 -1.97006986e-01\\n5.59916720e-04 -1.83330357e-01 2.01296091e-01 -2.56752551e-01\\n4.89158221e-02 1.29177691e-02 -2.81314701e-01 -1.45572960e-01\\n-1.17893264e-01 5.49475849e-03 3.55781168e-01 -4.78741884e-01\\n-8.80204886e-02 1.87150061e-01 -4.25298929e-01 -7.39632174e-02\\n1.71834290e-01 1.11586578e-01 8.69168639e-02 1.87063202e-01\\n-1.21958286e-01 -3.84866804e-01 5.81893548e-02 -3.15982670e-01\\n-2.93863773e-01 9.22991335e-02 -3.06171238e-01 2.13916674e-01\\n1.89885944e-01 -9.57719535e-02 -1.25006005e-01 2.01981023e-01\\n-7.95995444e-02 -7.37470239e-02 1.47779971e-01 1.61737204e-02\\n2.47402832e-01 1.09708287e-01 -3.41233552e-01 3.77945274e-01\\n-1.28295317e-01 4.95419621e-01 7.88466185e-02 -7.96863675e-01\\n3.62104297e-01 2.86986470e-01 -5.21058403e-03 -3.46735507e-01\\n5.33676386e-01 -2.72672832e-01 3.19559984e-02 -2.95088440e-02\\n-3.69093329e-01 -2.91846007e-01 2.17782438e-01 -2.14898199e-01\\n-2.21480519e-01 3.79446030e-01 -1.13313772e-01 1.12736471e-01\\n5.66802919e-02 -2.41934285e-01 -5.09686954e-02 -5.68926334e-05\\n-1.35635540e-01 -2.15326235e-01 -5.57866335e-01 -1.84251875e-01\\n-8.53716861e-03 -3.55286658e-01 -9.05093998e-02 -4.52167869e-01\\n-1.91774771e-01 -3.73968393e-01 -1.40338123e-01 1.59719348e-01\\n2.09952563e-01 1.46329641e-01 -8.02908540e-02 3.58250551e-03\\n-2.35633641e-01 -4.25835401e-01 -4.95496541e-02 9.65694189e-02\\n3.90583515e-01 1.65351450e-01 1.26881629e-01 6.14367574e-02\\n1.09257571e-01 5.13871074e-01 -2.16265559e-01 -1.75646573e-01\\n1.35462299e-01 2.71413863e-01 1.00605458e-01 -8.92553627e-02\\n2.08151117e-02 4.09880877e-01 -1.76051959e-01 -1.14491805e-02\\n-8.82147700e-02 -7.78484419e-02 4.50092107e-01 8.81233066e-03\\n-3.08207870e-01 -1.53613046e-01 -2.30726432e-02 9.53463987e-02\\n-5.18439949e-01 -1.86328858e-01 6.55912519e-01 2.43758455e-01\\n1.95056334e-01 1.37259960e-01 6.19039088e-02 2.01890897e-02\\n-5.90553917e-02 -1.81395620e-01 3.16654652e-01 5.18563539e-02\\n1.84908658e-01 -9.37069952e-02 -1.39329890e-02 -4.95430648e-01\\n-3.96297097e+00 -2.01698452e-01 9.65561271e-02 -1.60854876e-01\\n2.01696008e-01 -1.07142441e-01 3.06199305e-02 -8.17290321e-02\\n-2.98057050e-01 7.43874758e-02 -1.39107421e-01 -1.77205458e-01\\n1.17584355e-01 1.85476437e-01 2.88762510e-01 2.81220675e-01\\n1.58846736e-01 -2.05097213e-01 -4.78320532e-02 2.77138710e-01\\n-2.62195289e-01 -4.20578301e-01 2.54301965e-01 2.61987746e-02\\n3.00091296e-01 3.92993778e-01 -2.28702173e-01 -2.18405992e-01\\n-3.32386076e-01 -1.15053356e-01 -1.64243095e-02 -2.41100878e-01\\n-1.97872445e-01 1.87287495e-01 2.39498436e-01 -1.63626373e-01\\n1.79896325e-01 -5.10852695e-01 -1.79848820e-01 -2.74103165e-01\\n-4.61832471e-02 -4.97804761e-01 2.63463445e-02 -1.05492719e-01\\n6.95494890e-01 -2.69977748e-01 1.38487309e-01 1.30820386e-02\\n1.41751647e-01 1.42479837e-01 1.09177291e-01 1.18867189e-01\\n-1.31268710e-01 -2.19973087e-01 -5.81679866e-03 -1.51850179e-01\\n4.95833129e-01 5.01726866e-01 -5.50014153e-02 -6.29506484e-02\\n-7.63391703e-02 -2.06968293e-01 -3.96796376e-01 -2.78061926e-01\\n5.43978363e-02 -1.73286274e-01 -4.42974448e-01 -3.68398070e-01\\n-1.38676062e-01 -1.22788310e-01 -1.15603566e-01 3.46086144e-01\\n-1.90185964e-01 -3.19064438e-01 -1.18321769e-01 -3.02026749e-01\\n1.49741739e-01 -5.85458837e-02 1.46711886e-01 -1.07005358e-01\\n-1.12792425e-01 -4.94814038e-01 -7.87488520e-02 -1.26430020e-02\\n-6.25668615e-02 -5.17611265e-01 7.18413740e-02 -1.26572937e-01\\n-3.51406336e-01 -3.42792064e-01 4.27952528e-01 1.58343211e-01\\n2.92053550e-01 7.35495538e-02 1.92187250e-01 9.29680467e-02\\n2.42085248e-01 -2.09956437e-01 -6.52197748e-02 -4.28102195e-01\\n1.13753691e-01 1.29677877e-02 3.56757641e-01 -1.39725700e-01\\n5.95265180e-02 -4.74153273e-02 -1.96044385e-01 1.08044177e-01\\n3.51226360e-01 -7.46629536e-02 1.26048654e-01 -9.89988893e-02\\n2.28379756e-01 -1.74221754e-01 -8.06893706e-02 -8.21441934e-02\\n-1.20985508e-02 4.78411973e-01 1.85648389e-02 -4.04103279e-01\\n-1.63658038e-01 4.16564524e-01 -3.50516737e-02 7.55141228e-02\\n-2.73788035e-01 9.54674631e-02 -1.58852607e-01 1.05109513e-01\\n5.19702956e-02 -1.16043687e-01 -2.46563852e-01 -1.48928374e-01\\n-8.38022213e-03 2.41752774e-01 2.39010498e-01 1.70416176e-01\\n-4.66609299e-02 -4.84040946e-01 -3.39100510e-02 1.03743151e-01\\n2.23296911e-01 3.54030848e-01 9.99640450e-02 -1.43432915e-01\\n-5.38823530e-02 2.99958050e-01 -1.42372385e-01 2.04950690e-01\\n-1.67644218e-01 4.60833423e-02 -4.80412751e-01 -3.05830777e-01\\n-1.91224143e-01 -3.04509580e-01 1.25635996e-01 1.78347692e-01\\n1.01358786e-01 -4.71056625e-02 3.66861969e-02 -3.68680596e-01\\n3.60507727e-01 -2.23484002e-02 1.68992192e-01 2.87386417e-01\\n8.05964023e-02 4.78129297e-01 -2.06412114e-02 -2.41654545e-01\\n-2.58198738e-01 6.82896674e-02 -7.50630498e-02 -9.59449485e-02\\n-1.13021538e-01 -4.63119566e-01 -9.00463760e-02 2.91628897e-01\\n8.54387432e-02 -1.79054305e-01 -1.80885807e-01 2.93220252e-01\\n-3.52848060e-02 -2.82161146e-01 -1.89196676e-01 9.93866473e-02\\n3.19101930e-01 4.50062975e-02 3.40891242e-01 -4.57236171e-01\\n-8.12024437e-03 3.75672989e-03 4.27433364e-02 3.87720585e-01\\n1.43703163e-01 3.08227204e-02 2.50835866e-02 -1.03445567e-01\\n4.27705050e-01 4.25322168e-03 -1.47609338e-01 -2.18114220e-02\\n-1.22298999e-02 -2.64833808e-01 -4.12210643e-01 4.53993864e-02\\n1.54387634e-02 -1.87523454e-01 2.00271189e-01 2.26405501e-01\\n1.36943072e-01 1.86846346e-01 -6.23575687e-01 -3.11281234e-01\\n-2.72688270e-01 -7.46220127e-02 -1.61298007e-01 -5.98822951e-01\\n-5.26227653e-02 -1.60619378e-01 -5.12833834e-01 2.23620832e-01\\n-1.99773207e-01 -2.26917550e-01 2.89636683e-02 -2.64805946e-02\\n-2.26892859e-01 -1.72381550e-02 9.05376524e-02 1.92729682e-01\\n-1.90054402e-01 -3.08356494e-01 7.98863545e-02 -9.16494668e-01\\n2.44754165e-01 1.26115948e-01 -1.62654698e-01 1.56000525e-01\\n-5.11898920e-02 -5.43724835e-01 1.10677451e-01 -3.30279768e-01\\n-9.59731117e-02 -1.11055508e-01 -2.14255750e-01 -3.05696964e-01\\n1.29173636e-01 9.90917236e-02 -2.72180349e-01 3.67248654e-01\\n-2.41569310e-01 3.36164087e-01 -1.18225470e-01 1.89681709e-01\\n-2.55045556e-02 -2.50614882e-01 4.90682162e-02 -4.63509172e-01\\n-4.42663938e-01 -4.78289686e-02 -2.93956161e-01 -1.82729542e-01\\n-9.15682167e-02 -3.26429129e-01 -1.58199131e-01 7.88173266e-03\\n3.55013162e-01 1.11321256e-01 -2.15878040e-01 -1.99778080e-01\\n-1.01027749e-02 -4.35269386e-01 7.28160366e-02 -1.24450058e-01\\n-1.72532007e-01 -1.55117095e-01 1.75995022e-01 6.04557730e-02\\n9.23057869e-02 -4.38449442e-01 2.12705374e-01 -4.12990004e-01\\n-1.77700371e-01 3.52775455e-02 1.51766941e-01 -4.27182987e-02\\n3.10191214e-01 -5.31695306e-01 -1.33148372e-01 3.60731542e-01\\n1.92156658e-01 1.22936994e-01 2.48510137e-01 -1.05112694e-01\\n-3.10276225e-02 3.32370639e-01 -3.26704979e-01 2.87546311e-02\\n6.60951138e-01 1.40558146e-02 1.14590161e-01 1.53540939e-01\\n1.36091426e-01 2.02475622e-01 3.73074532e-01 3.98870967e-02\\n-8.17203596e-02 2.78016865e-01 1.23049542e-01 -5.34187078e-01\\n8.56103152e-02 1.60398185e-02 -1.50920987e-01 -3.59249055e-01\\n5.27325094e-01 4.54573154e-01 -3.76812160e-01 -1.04736984e-01\\n-1.46930024e-01 -2.46222705e-01 7.52527863e-02 -8.53082389e-02\\n9.06618014e-02 -6.35242537e-02 3.80300224e-01 -5.05376495e-02\\n1.65290058e-01 5.25279045e-01 -2.02532679e-01 -1.49422392e-01\\n-7.49496296e-02 2.19272479e-01 1.31069452e-01 5.99074841e-01\\n-3.24672759e-01 3.49253654e-01 -2.16777883e-02 6.12939894e-02\\n-3.00563476e-03 1.96641952e-01 1.00822523e-01 1.38888687e-01\\n8.75716805e-02 2.34785248e-02 3.80474001e-01 3.27680051e-01\\n2.96373785e-01 3.49088460e-01 3.61197770e-01 1.22052357e-02\\n3.88095617e-01 5.43448329e-01 3.94161463e-01 7.96898007e-02\\n-1.15765408e-01 -2.32097395e-02 1.70684323e-01 5.45985699e-02\\n2.82389969e-01 4.28620130e-01 8.55596513e-02 7.31409192e-01\\n4.40824747e-01 3.43957067e-01 5.53978682e-01 -5.11166513e-01\\n-2.70876199e-01 9.49715823e-02 3.81921858e-01 -3.81199539e-01\\n-3.34283784e-02 2.62156010e-01 -2.39329025e-01 1.35472953e-01\\n-3.01012158e-01 -2.94908226e-01 -1.06197625e-01 1.01720273e-01\\n1.75570138e-02 -1.36717066e-01 -1.36007130e-01 2.07784176e-01\\n2.53596287e-02 -8.24529231e-02 -5.03892303e-01 -8.20760205e-02\\n-2.29820579e-01 -9.45581198e-02 -8.84789973e-02 -1.06933825e-01\\n-1.95553243e-01 -2.04667881e-01 -7.68022984e-02 -1.68210238e-01\\n1.08764410e-01 -2.25887850e-01 -1.02291167e-01 -1.50993258e-01\\n2.05251634e-01 1.72239333e-01 5.04531920e-01 5.80869466e-02\\n7.53936470e-02 -1.64148331e-01 -1.98206425e-01 2.27361530e-01\\n2.38725513e-01 7.71717280e-02 -3.20064127e-02 1.33442372e-01\\n-1.87769115e-01 -1.63739294e-01 1.48616225e-01 2.12877229e-01\\n-4.14592385e-01 1.82784513e-01 -4.59128544e-02 2.10533783e-01\\n4.82537746e-02 1.78980842e-01 -1.49310291e-01 7.29679316e-02\\n-9.19225067e-02 -3.82822752e-01 1.59175247e-01 4.10398394e-02\\n-5.37545420e-02 6.67795166e-02 2.44416818e-01 1.56278715e-01\\n-3.75526816e-01 -1.17589928e-01 -3.56263891e-02 7.25727156e-02\\n7.34297633e-02 2.33798921e-01 -1.78920031e-01 -2.84998477e-01\\n-1.60907775e-01 1.63124755e-01 -1.81693763e-01 9.81738716e-02\\n4.39910591e-02 3.35243493e-01 4.85722870e-02 1.18394889e-01\\n2.44057685e-01 2.95635611e-02 -2.14248627e-01 -1.78363383e-01\\n-3.35088402e-01 -1.35779217e-01 -6.89581875e-03 -1.33991510e-01\\n2.15163946e-01 -2.76667833e-01 -3.22432965e-02 -2.22511459e-02\\n-9.53167826e-02 -2.80633450e-01 1.29376590e-01 -8.89542606e-03]]',\n", + " 'job_description': \"Start: As soon as possible Location: Zürich, Switzerland, 100% YOUR ROLE: Develop the back-end for our core technology, which allows us to build investment strategies and forecast models on different asset classes and sell products to our customers. Develop tools for our internal teams (sales, support, operations, finance) to more efficiently run the business, and work closely with our mobile and UI-focused team members to integrate their front-ends with our backend services. Continuously improve and maintain systems to ensure we have high performance, up-time, and strong security in place. WHAT WE OFFER: AI leader: we offer a position at the top of the food chain when it comes to artificial intelligence, especially deep and machine learning in financial services. Modern way of working: we use the latest technologies and offer lots time flexibility to individual team members (it matters ‘what’ you do not ‘when’ in the day). Beautiful office in Zürich, Switzerland: a large open space with a great view on river Limmat to work, interact and socialize with other team members - very close to the train station. International start-up atmosphere: the company languages German and English – our team and Investors are very diversified and work internationally from Switzerland to Germany, from Singapore to Boston. Work with direct impact: Exciting backend challenges to solve that will have very direct impact on our product. Very little red tape. If you like to get things done using the latest in tech rather than talking about it, you'll feel right at home. You work directly with the CTO and other decision makers in the team (very little hierarchy). Great place to work: we are a business with strong values & beliefs - a great, warm-hearted team is waiting for you. Great team: we are very selective – and only hire the best chess players, cyclists or e-sports champions! ;-) WHO YOU ARE: Python is your language: Backend software developer with broad back-end programming skills in Python (Python is really a MUST!) You will also shape the whole architecture of services and data stores that you will eventually own and you have deep and machine learning skills. The ideal degree: Computer Science or related field Innovation: You thrive in a collaborative environment for Innovation involving different stakeholders and subject matter experts. Some financial knowledge would be great. Curiosity is key: We like to learn new, fail fast and explore new territories - so do you? The answer is ‘yes’. Entrepreneurial and Team player: you want to tackle something and write your own story and you have an entrepreneurial team driven mindset - then you'll find a team of like-minded people. HOW YOU APPLY: Interested? Then please send your CV to careers@privatealpha.ch including a short motivation letter /E-mail why you are the person who should take on this role. THE PRIVATE ALPHA TECHNOLOGY TEAM & YOUR IMPACT Private Alpha is a start-up based in Meggen and Zurich, Switzerland. The company revolutionizes how asset management decisions are made. The company is a leader in AI for investments in Switzerland and Germany. As a team member of the technology team, you will work very directly with our CTO and our other teams (product, growth, sales, support, etc.) to improve the experience for our end-customers as well as for our internal users of our technology. WHO WE ARE, THE PRIVATE ALPHA COMPANY: Private Alpha is building the next generation of decision making in asset management based on our AI platform “Caesar”. The technology is a multi-staged combination of financial market indicators for ideal asset allocation while formulating new investment insights through the use of AI. Private Alpha is a founder-owned company with strong investors that has recently won the prestigious award of most innovative FinTech at the Finanzsymposium Alpbach. The company was founded in 2017 and has two mutual funds run under its name. Friendship, respect and ‘radical transparency’ are key elements of the company culture. More insights on our company and our team can be found on LinkedIn and of course on our website.\",\n", + " 'soft_skills': '[\"Decisiveness\", \"Collaboration\", \"Operations\", \"Integration\", \"Decision Making\", \"Innovation\", \"Socialization\", \"Curiosity\", \"Sales\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Tooling\", \"Operations Support Systems\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Machine Learning\", \"High Performance Computing\", \"Staging\", \"Mutual Fund\", \"Financial Services\", \"Open Space Technology\", \"Customer Development\", \"Python (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Investment Strategy\", \"Financial Market\", \"Investments\", \"Mobility\", \"Asset Classes\", \"Personalization\", \"Artificial Intelligence\", \"Transparency (Human-Computer Interaction)\", \"Asset Management\", \"Front End (Software Engineering)\", \"Indicators (Measuring Device)\", \"Back End (Software Engineering)\", \"Software Development\", \"Forecasting\", \"Operational Data Store\", \"Asset Allocation\", \"Custom Backend\", \"Food Chain\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Kurdish', 'Hindi', 'Pushto']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data analytics consultant (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.24657977e-01 2.66480863e-01 4.03708637e-01 5.52951731e-02\\n4.74771887e-01 -1.88399032e-01 -5.48370555e-02 2.70024627e-01\\n-1.03801742e-01 -2.47027114e-01 -6.18684962e-02 -2.31567279e-01\\n-2.09308133e-01 -4.63474020e-02 1.93037182e-01 4.56488281e-01\\n1.97904155e-01 5.74505627e-02 -2.20258549e-01 3.89666051e-01\\n1.63357392e-01 1.68488510e-02 -5.21437824e-02 6.25772059e-01\\n3.44795674e-01 7.12243170e-02 -5.07170185e-02 1.14482321e-01\\n-3.25625151e-01 -2.13749915e-01 3.71888340e-01 1.21615261e-01\\n-1.33393362e-01 -3.26863378e-01 5.64361028e-02 1.36270598e-01\\n-1.32316202e-01 2.17972212e-02 1.11082233e-01 1.48086190e-01\\n-4.13106233e-01 -3.52661520e-01 -2.38295645e-02 4.10655774e-02\\n-2.46083573e-01 -2.19602853e-01 8.51807073e-02 -2.13733166e-01\\n1.32484317e-01 -1.27748907e-01 -7.90116251e-01 3.89926761e-01\\n-8.52794871e-02 -2.30224311e-01 2.80786991e-01 5.43365300e-01\\n1.86808974e-01 -4.82637227e-01 -3.03831816e-01 -3.11922431e-01\\n-1.15718395e-01 -1.55567974e-01 -2.11600773e-02 -8.23215023e-02\\n3.23412627e-01 -6.71108812e-02 3.64408642e-02 4.35833871e-01\\n-6.98343813e-01 -1.50606349e-01 -3.16619515e-01 -3.00216582e-02\\n-3.55540067e-01 6.46120012e-02 -2.14444488e-01 -1.37788743e-01\\n-1.48012256e-02 3.30956072e-01 6.90950379e-02 3.67540829e-02\\n-1.81379065e-01 3.09748471e-01 -7.75800347e-02 1.22237265e-01\\n4.30342048e-01 1.94445644e-02 7.48123676e-02 3.52303624e-01\\n-4.62808579e-01 3.33887339e-01 1.53335541e-01 -2.11710230e-01\\n2.03079537e-01 1.42713949e-01 4.58510756e-01 1.43581778e-01\\n-1.50686800e-02 1.88764468e-01 -6.81302845e-02 9.75959226e-02\\n9.87182334e-02 -2.88198709e-01 -1.22820996e-02 -9.86896306e-02\\n-8.05200562e-02 -1.10864028e-01 -1.04244873e-01 2.25199148e-01\\n-2.51758993e-01 4.45553511e-01 1.97088525e-01 -9.71271843e-02\\n-9.38720331e-02 -5.47962129e-01 -2.04556026e-02 -1.35943323e-01\\n-1.44117447e-02 1.78458765e-01 2.28875130e-01 9.69114304e-02\\n2.11405694e-01 6.05333149e-02 2.32737660e-01 8.63802791e-01\\n-6.67311698e-02 2.47384697e-01 -8.11904967e-02 3.47638994e-01\\n2.14432195e-01 -2.41179988e-01 1.88662812e-01 2.77329832e-01\\n1.43474355e-01 -7.40473941e-02 -2.07542092e-01 1.10111997e-01\\n-2.92777389e-01 -5.58331385e-02 -2.46758729e-01 1.21852063e-01\\n-8.34833756e-02 -4.62628633e-01 5.17256677e-01 1.01963870e-01\\n2.34594867e-01 -8.92134979e-02 -7.63500556e-02 -6.70153499e-02\\n-1.25044286e-01 3.44033271e-01 7.76981413e-02 3.65115821e-01\\n-2.85364807e-01 -2.27430657e-01 -1.68392539e-01 2.59311646e-01\\n-8.93594399e-02 1.50160834e-01 -2.12526381e-01 -2.41358802e-01\\n2.56768703e-01 7.45351017e-02 -4.18954402e-01 2.32971057e-01\\n-9.20282528e-02 -3.01516235e-01 -8.54056776e-02 3.36219639e-01\\n-1.25438124e-01 8.16780105e-02 -1.27540961e-01 -2.10439190e-01\\n5.98792195e-01 1.12959936e-01 1.31542116e-01 -1.06392866e-02\\n3.54528815e-01 -1.48461834e-01 3.67590606e-01 1.16971314e-01\\n-4.75283265e-01 3.85634720e-01 -6.12980053e-02 -1.53823882e-01\\n1.14497095e-01 -7.87231475e-02 3.67246538e-01 -2.63791889e-01\\n7.69605190e-02 -2.29905203e-01 -2.89583474e-01 -3.69110137e-01\\n-3.05458188e-01 -2.28647999e-02 3.73175144e-01 -2.58599192e-01\\n-1.33389667e-01 1.84824601e-01 -4.97243762e-01 -2.12856382e-01\\n2.39376411e-01 1.54149234e-01 1.22257195e-01 8.42629373e-02\\n-1.48538440e-01 -5.13383806e-01 7.67424412e-04 -4.56170738e-01\\n-4.49278057e-01 1.07531317e-01 -2.43529588e-01 1.38666883e-01\\n-8.45465157e-03 1.04444429e-01 -1.45213395e-01 1.39669552e-01\\n-3.42880726e-01 -1.21268956e-02 3.17491710e-01 9.17394534e-02\\n2.27917522e-01 -2.81389691e-02 -4.64619279e-01 3.63580823e-01\\n-2.97530562e-01 6.29668653e-01 2.93676436e-01 -8.58507395e-01\\n6.00406170e-01 2.47421920e-01 -4.38355729e-02 -3.21073115e-01\\n3.82413089e-01 -4.54510212e-01 1.03202961e-01 2.18986854e-01\\n-1.93023339e-01 -2.24297047e-01 2.77094245e-01 -1.42519474e-01\\n-2.75209337e-01 7.15729058e-01 1.09935798e-01 -8.38741660e-03\\n2.78249890e-01 -3.47871870e-01 -1.49277955e-01 -7.54205137e-02\\n-1.26123473e-01 -1.58880651e-01 -3.62710267e-01 4.18873169e-02\\n-5.21921292e-02 -4.43924874e-01 -1.22550637e-01 -3.51599455e-01\\n-2.17439190e-01 -3.58710617e-01 -1.66120365e-01 5.53501368e-01\\n1.72732040e-01 1.48655728e-01 -5.10472991e-02 6.27181157e-02\\n2.13016793e-02 -6.77679121e-01 2.63570119e-02 1.56139031e-01\\n4.29497540e-01 4.26235378e-01 1.20211363e-01 -1.07222706e-01\\n7.20579773e-02 4.58310872e-01 -3.24849933e-01 -4.69362676e-01\\n1.20948359e-01 2.46170700e-01 -8.75075161e-02 -1.43778250e-01\\n3.06717213e-02 4.14513260e-01 -1.52548745e-01 7.98515230e-02\\n-5.09621985e-02 -3.37596647e-02 2.88310885e-01 -8.51243883e-02\\n-2.59129792e-01 -2.48084888e-01 -1.07206732e-01 4.17353839e-01\\n-4.55096900e-01 -2.95699924e-01 4.93359119e-01 2.67585516e-01\\n1.04166932e-01 9.87610891e-02 1.59669712e-01 -9.46748778e-02\\n-2.41889521e-01 -2.06641480e-01 7.19374493e-02 1.14903308e-01\\n1.54794693e-01 1.68604553e-01 -1.65888637e-01 -5.79622149e-01\\n-3.57280254e+00 -1.66369483e-01 9.40934345e-02 -2.50164032e-01\\n1.32519946e-01 -1.60074592e-01 1.77748222e-02 1.24993268e-04\\n-3.09931993e-01 3.48519422e-02 -2.51087934e-01 -9.68015194e-02\\n-5.01769446e-02 3.70906234e-01 1.95662305e-01 1.30219638e-01\\n6.29047602e-02 -2.94956833e-01 -5.97659871e-02 4.51221347e-01\\n-5.71054071e-02 -5.97080767e-01 6.10559136e-02 -2.70614754e-02\\n9.41013396e-02 1.93160430e-01 -2.95033067e-01 -5.33003360e-02\\n-1.59602582e-01 -2.92092144e-01 5.40809594e-02 -1.85575441e-01\\n-2.31511936e-01 3.23763251e-01 1.83153190e-02 2.51424741e-02\\n1.71084553e-02 -3.45862359e-01 4.83627245e-03 -4.63196993e-01\\n1.83083434e-02 -6.50673568e-01 1.10113822e-01 -1.29478052e-01\\n6.19499981e-01 -1.71883479e-01 1.64680645e-01 8.25170428e-02\\n1.52414739e-01 1.44183725e-01 -7.42539540e-02 9.23693925e-02\\n-4.04316783e-01 -3.39711070e-01 -1.52906194e-01 -2.12636232e-01\\n4.92860794e-01 4.52050358e-01 -1.94139645e-01 3.94274406e-02\\n6.12214394e-02 -3.68301123e-01 -3.59432876e-01 -4.59352970e-01\\n-1.79410696e-01 -1.05310522e-01 -7.82973528e-01 -3.89842480e-01\\n-1.07847266e-01 -7.40328655e-02 -1.48246467e-01 5.17379999e-01\\n-4.25732076e-01 -3.02365601e-01 -3.11661046e-02 -5.76998055e-01\\n1.75453022e-01 -2.50924259e-01 1.18869089e-01 -1.08758770e-01\\n-4.28882420e-01 -5.45945108e-01 1.35436788e-01 -6.39963374e-02\\n-2.73836553e-01 -1.25771627e-01 -5.42873964e-02 -1.50473699e-01\\n-3.71174812e-01 -4.78934616e-01 4.55827057e-01 5.81516586e-02\\n4.04190063e-01 5.25167659e-02 3.52820516e-01 5.40281273e-02\\n3.69563937e-01 -1.42850906e-01 1.54164925e-01 -4.40472364e-01\\n-1.50377881e-02 -7.27538094e-02 6.17186785e-01 -3.37619066e-01\\n-7.98815920e-04 1.43601045e-01 -3.87742221e-01 4.51690145e-02\\n4.33017135e-01 6.97335377e-02 -2.84609534e-02 3.85080650e-02\\n3.04149210e-01 -4.39139873e-01 -2.51772523e-01 2.29168221e-01\\n6.25483692e-02 7.46959448e-01 1.53785080e-01 -3.98818523e-01\\n-2.73576587e-01 4.42720085e-01 -1.05279423e-01 -2.92515010e-01\\n-3.94287659e-03 9.64050665e-02 -1.08432928e-02 1.80245802e-01\\n1.91943049e-01 -1.39023125e-01 -3.10651004e-01 -1.01574868e-01\\n-1.01671368e-01 1.81781232e-01 2.54396319e-01 1.73916332e-02\\n-1.77484378e-01 -1.45373225e-01 -8.15279111e-02 1.51666939e-01\\n3.41565043e-01 2.77526647e-01 2.30214342e-01 -2.56547749e-01\\n-1.24195844e-01 2.80876309e-01 -1.46120146e-01 2.03659862e-01\\n-2.31511772e-01 -1.23045258e-02 -6.38915658e-01 -1.40853032e-01\\n-1.16785087e-01 -4.06442106e-01 9.80072320e-02 4.51995403e-01\\n1.47926375e-01 -1.41804880e-02 1.21987112e-01 -6.75949872e-01\\n4.65204954e-01 9.30783618e-03 2.94393063e-01 -4.22049537e-02\\n-7.24454271e-03 6.48691297e-01 8.38677883e-02 -1.06787130e-01\\n-1.78073332e-01 2.57070380e-04 -2.71783113e-01 -3.21119547e-01\\n1.33974046e-01 -3.62626970e-01 -1.67959645e-01 4.62886989e-01\\n2.16455862e-01 -1.96468338e-01 -2.68126875e-01 3.86032373e-01\\n7.36291260e-02 -1.16419293e-01 -1.72267541e-01 -1.54097095e-01\\n9.05091688e-02 8.18365887e-02 2.11391598e-01 -3.84197831e-01\\n-9.24029648e-02 7.25724502e-03 -1.02481991e-01 4.45573270e-01\\n2.33765647e-01 2.17196345e-03 -1.19219415e-01 -1.12279281e-01\\n4.77678895e-01 7.39159212e-02 -1.02440808e-02 -1.83209047e-01\\n5.34331761e-02 -1.61599129e-01 -5.43467045e-01 1.27441689e-01\\n2.26400066e-02 -2.07771003e-01 3.99081334e-02 1.26956865e-01\\n9.48517025e-02 -9.55117643e-02 -5.11640429e-01 -1.34313524e-01\\n-2.96207964e-01 -1.97169781e-01 8.34421720e-03 -4.40010995e-01\\n-6.08646013e-02 -4.08985317e-02 -4.74269569e-01 1.62010312e-01\\n-2.57994533e-01 3.95236127e-02 5.61214499e-02 1.12782247e-01\\n-3.13135445e-01 -5.62288091e-02 1.23703495e-01 6.55236319e-02\\n-3.24727982e-01 -2.33877331e-01 1.73838958e-01 -8.67197335e-01\\n3.66364270e-02 3.81748080e-02 -1.72619909e-01 -9.84981060e-02\\n5.09737171e-02 -6.12470865e-01 1.71933293e-01 -3.79230201e-01\\n9.28858295e-02 1.66427702e-01 -1.86153516e-01 -2.71243542e-01\\n2.15185702e-01 -1.49369046e-01 -3.39394897e-01 2.85160750e-01\\n-4.36540067e-01 3.83276671e-01 3.44243012e-02 6.58520982e-02\\n1.13638245e-01 -2.98370063e-01 1.09630808e-01 -2.60959774e-01\\n-2.95403719e-01 -1.32792309e-01 -2.43005142e-01 -2.14576960e-01\\n-3.28693986e-02 -1.14346907e-01 -1.46675602e-01 -2.34769657e-02\\n3.62576395e-01 1.58618227e-01 -1.49778306e-01 -2.91960686e-01\\n1.44143686e-01 -5.20475268e-01 6.45340383e-02 -2.89951175e-01\\n-1.07838638e-01 -7.67017528e-02 2.47558981e-01 -1.26879007e-01\\n1.26984835e-01 -2.13296577e-01 5.36207199e-01 -2.71530777e-01\\n-3.28695238e-01 -6.12852275e-02 3.49014215e-02 -3.84226814e-02\\n1.45297498e-01 -4.34249490e-01 1.83019135e-02 2.99251199e-01\\n1.45913318e-01 9.08420235e-02 1.94602937e-01 -5.16849495e-02\\n-1.87211692e-01 1.62376866e-01 -5.14262378e-01 2.72320230e-02\\n8.45109284e-01 1.74166545e-01 -1.88028179e-02 7.97598660e-02\\n1.03486285e-01 3.03225011e-01 4.88733262e-01 9.46431905e-02\\n-9.45596248e-02 2.97458827e-01 6.29310310e-02 -5.90335131e-01\\n-1.95201412e-01 -6.40738904e-02 -2.71086156e-01 -1.44361332e-01\\n6.54626906e-01 2.24897325e-01 -4.58670229e-01 -3.24929148e-01\\n1.16491746e-02 -1.60545275e-01 2.98054814e-01 8.12950823e-03\\n2.10847072e-02 -3.35726552e-02 6.36160612e-01 -2.31563225e-02\\n2.61216104e-01 5.44154286e-01 -1.10226095e-01 -2.91567653e-01\\n-1.62452802e-01 9.10881311e-02 1.26755029e-01 4.64957565e-01\\n-7.12975785e-02 2.72732407e-01 -2.02512503e-01 7.26963133e-02\\n-1.18712701e-01 7.99069926e-02 2.48465434e-01 5.95515445e-02\\n1.82864115e-01 7.30946735e-02 3.22981149e-01 4.45086271e-01\\n1.89001605e-01 5.21294594e-01 3.20597351e-01 -2.69004740e-02\\n2.99621433e-01 5.52624345e-01 3.13479841e-01 6.10632785e-02\\n-3.02685029e-03 3.77092673e-03 9.80772898e-02 -1.11338317e-01\\n3.85266244e-01 3.71054232e-01 2.88722426e-01 8.35137248e-01\\n3.64108801e-01 3.88806522e-01 7.95281351e-01 -5.88144183e-01\\n-3.81724179e-01 1.15902364e-01 5.69804192e-01 -2.04880893e-01\\n-6.41120672e-02 2.11715668e-01 -2.93586552e-01 2.35258982e-01\\n-5.24780571e-01 -7.65886232e-02 1.76971741e-02 6.62062541e-02\\n-4.10882719e-02 -6.88370615e-02 -1.65670261e-01 1.30968988e-01\\n-4.51544002e-02 -1.46040648e-01 -2.52888113e-01 -2.47479752e-01\\n-2.92161196e-01 -2.50979420e-02 -1.05498269e-01 -7.72482157e-02\\n-1.63930118e-01 -3.22964728e-01 -6.78818896e-02 -3.20950150e-02\\n3.67162138e-01 -1.40736431e-01 -8.80448148e-02 -1.65193886e-01\\n8.57414156e-02 2.88050681e-01 5.27825534e-01 -1.40973955e-01\\n8.29792172e-02 -1.48120806e-01 -2.58663028e-01 -2.51262728e-03\\n1.08489074e-01 -2.15140264e-02 -2.49596089e-02 4.46018040e-01\\n-3.16060275e-01 4.38817777e-03 1.35541677e-01 3.45733911e-01\\n-2.97989905e-01 -1.62548140e-01 -3.05953622e-02 3.23237240e-01\\n1.05832316e-01 1.03430137e-01 -3.05554956e-01 1.42218113e-01\\n-3.03837776e-01 -4.88143593e-01 4.49125469e-01 -1.28925666e-02\\n-1.08090669e-01 1.81858748e-01 2.93287784e-01 1.43092990e-01\\n-2.14891031e-01 -4.72267233e-02 8.67531914e-03 2.99586505e-01\\n-1.38621971e-01 4.08703804e-01 -1.55412972e-01 -2.81231105e-01\\n-1.68482393e-01 4.46332932e-01 -3.94569971e-02 2.08324715e-01\\n-1.63493440e-01 4.95885223e-01 -5.15786409e-02 2.33150601e-01\\n1.93566099e-01 1.43851181e-02 -2.34564513e-01 -2.67272592e-01\\n-2.88735032e-01 -1.77177429e-01 -2.57319380e-02 -6.86217891e-03\\n7.91436583e-02 -3.60711247e-01 -7.28069469e-02 -1.54376984e-01\\n-2.17273921e-01 -3.21390837e-01 -7.60798082e-02 9.48940292e-02]]',\n", + " 'job_description': 'Job Informationen Your role: - You are taking part in advising our clients on leveraging their big data analytics clusters - You will implement and execute data analytics programs - You will create and maintain predictive statistical models - You will prepare and give trainings for external and internal staff on how to best use the cluster and on how to implement business applications leveraging the cluster resources Your skills: - Minimum of 2 years of Big Data experience and minimum of 3 years of programming experience - Must have a University Degree in Computer Science or Statistics / Mathematical Engineering - Experienced in collecting, tracking and documenting business requirements - Experienced in problem parallelization is a plus - Experienced in data analytics, modelling, mining - Experienced concurrent algorithm design - Experienced in applying supervised and unsupervised machine learning methods - Familiarity with Storage and Network Design for Big Data Analytics Clusters a plus - Background and familiarity with IT infrastructure methodologies, processes, and practices including ITSM and ITIL is a plus Your tools: - Know-how of Python, R, Java, C++ and shell scripting - Know-how of any of the tools matplotlib, pandas, numpy, MongoDB, Hive, ElasticSearch, Cassandra, RapidMiner, OpenMPI, Tableau, Qlik is a plus Benötigte Skills ITIL Python Machine Learning JAVA C++ Shell-Scripts',\n", + " 'soft_skills': '[\"Supervision\"]',\n", + " 'hard_skills': '[\"Tableau (Business Intelligence Software)\", \"Tooling\", \"Matplotlib\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Shell Script\", \"RapidMiner\", \"Computer Science\", \"Analytics\", \"Collections\", \"Prediction\", \"Machine Learning\", \"Mathematical Statistics\", \"Network Security Design\", \"IT Infrastructure\", \"NumPy\", \"Python (Programming Language)\", \"Maintainability\", \"MongoDB\", \"Tracking (Commercial Airline Flight)\", \"Executable\", \"Statistical Modeling\", \"Machine Learning Methods\", \"Business Requirements\", \"Storages\", \"Apache Hive\", \"R (Programming Language)\", \"Big Data\", \"Resourcing\", \"Algorithm Design\", \"Java (Programming Language)\", \"Pandas (Python Package)\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Bosnian', 'Kannada', 'Xhosa']\"},\n", + " {'company_id': '114',\n", + " 'job_title': 'internship aircraft data analytics (all genders)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'job_description': 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " 'languages': \"['English', 'Indonesian', 'Avestan']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'backend sw engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.68256277e-01 2.80966550e-01 3.44677925e-01 5.30506372e-02\\n5.80511034e-01 -2.47638822e-01 7.77832866e-02 2.96363652e-01\\n-1.86372668e-01 -3.81059796e-01 -8.01259801e-02 -1.91526100e-01\\n-1.20249137e-01 4.19630893e-02 6.58501759e-02 2.97487617e-01\\n2.96830416e-01 1.03520900e-01 -2.24871874e-01 3.48558217e-01\\n2.44660843e-02 -2.33520754e-02 -7.16324151e-02 7.10306168e-01\\n3.73393893e-01 7.64411092e-02 -7.30364174e-02 3.10215969e-02\\n-2.69114822e-01 -2.33520836e-01 3.59915376e-01 8.74466226e-02\\n-2.01426968e-02 -2.21706823e-01 8.55944529e-02 1.63908675e-02\\n-2.02809051e-01 3.03395186e-02 -7.03047067e-02 1.84850901e-01\\n-3.49794418e-01 -3.19804043e-01 3.57922874e-02 1.16022877e-01\\n-2.03592315e-01 -3.27240318e-01 -7.38833472e-02 -8.32037814e-03\\n1.08916402e-01 -5.48914671e-02 -5.44368207e-01 4.32967663e-01\\n-2.85363168e-01 -2.13028684e-01 3.27406317e-01 4.80463058e-01\\n7.07191764e-04 -5.72555006e-01 -2.74876982e-01 -3.11568081e-01\\n-7.87170604e-04 -2.16793537e-01 9.30675864e-02 -2.66013175e-01\\n2.65337527e-01 -1.99370328e-02 6.45290688e-02 3.96281332e-01\\n-7.15952098e-01 -7.56770745e-02 -2.58975267e-01 4.84445971e-03\\n-3.44652683e-01 -1.32466108e-01 -3.00590098e-01 -7.25278556e-02\\n-6.71878159e-02 3.16180170e-01 -2.17432920e-02 6.17913567e-02\\n-1.51244149e-01 3.00630808e-01 -9.61166099e-02 1.84126168e-01\\n2.33807787e-01 1.18075542e-01 1.84917077e-01 3.30178261e-01\\n-4.02723163e-01 4.94906694e-01 2.78163515e-02 -1.89738944e-01\\n2.46067822e-01 2.03865394e-01 4.66537535e-01 7.31082112e-02\\n-3.48280333e-02 1.81059256e-01 -2.56648839e-01 1.59588724e-01\\n2.00172037e-01 -3.17932218e-01 2.00379938e-02 -1.10025086e-01\\n-8.66630152e-02 1.95057467e-02 4.45732585e-04 2.31951535e-01\\n-2.83212394e-01 4.38437521e-01 2.28525981e-01 -1.96417868e-01\\n-7.44504780e-02 -4.96552169e-01 -1.17808118e-01 -2.58486811e-02\\n-1.42118305e-01 1.98162153e-01 2.90167809e-01 1.20146722e-01\\n1.79669514e-01 5.00745960e-02 1.73523605e-01 9.51189220e-01\\n-2.46720817e-02 1.25142261e-01 -1.97533846e-01 2.33240172e-01\\n2.42920592e-01 -1.90623596e-01 1.76015064e-01 3.12252760e-01\\n1.64266855e-01 1.83322039e-02 -1.87562793e-01 3.77678484e-01\\n-2.49157727e-01 -6.96034804e-02 -3.38936239e-01 1.09828226e-01\\n-1.85315907e-01 -5.79838157e-01 6.25603855e-01 1.71961352e-01\\n2.00974256e-01 1.01519758e-02 5.39434999e-02 -7.08785728e-02\\n-7.03627914e-02 2.46599570e-01 7.77274892e-02 1.78365037e-01\\n-3.97517234e-01 -2.17392102e-01 -1.14692204e-01 2.54033774e-01\\n-2.28492916e-01 7.52320215e-02 -4.59703095e-02 -4.00270000e-02\\n2.37886637e-01 5.03434539e-02 -3.75742763e-01 1.42910615e-01\\n-1.12772316e-01 -2.28844285e-01 -1.34519503e-01 3.83624822e-01\\n-7.34532773e-02 2.68917799e-01 5.40079512e-02 -7.69566670e-02\\n5.54528654e-01 1.61391243e-01 1.55689299e-01 -1.64353289e-02\\n2.59011865e-01 -1.06625922e-01 3.07998925e-01 1.54668242e-01\\n-6.65170670e-01 1.90961540e-01 -2.93293837e-02 -1.18123017e-01\\n7.81614110e-02 1.31149411e-01 2.44318053e-01 -3.87164861e-01\\n-1.18726470e-01 -1.59455091e-01 -3.86809468e-01 -3.32343668e-01\\n-2.47529522e-01 9.23015028e-02 3.47663224e-01 -2.65317112e-01\\n-4.82774228e-02 5.91426976e-02 -3.72780293e-01 -1.42033011e-01\\n1.64764598e-01 1.58674031e-01 3.43571417e-02 8.71408135e-02\\n-4.59054932e-02 -6.15433395e-01 -1.43101104e-02 -5.04064023e-01\\n-6.24376178e-01 6.46936819e-02 -3.60657811e-01 2.46049732e-01\\n-2.42124051e-02 1.28714904e-01 -9.33485851e-02 2.03563452e-01\\n-3.41948122e-01 6.93769604e-02 1.14815541e-01 1.63760811e-01\\n1.60189509e-01 -6.42544180e-02 -4.50130522e-01 4.45112824e-01\\n-2.10934803e-01 5.23637235e-01 2.21961200e-01 -7.07449436e-01\\n6.36946261e-01 1.72863886e-01 -3.61249298e-02 -4.06198651e-01\\n3.93998146e-01 -3.90469640e-01 -1.74895655e-02 8.44453499e-02\\n-2.60609835e-01 -2.46748820e-01 3.50345880e-01 -2.54884869e-01\\n-3.57528716e-01 5.20105898e-01 1.54569283e-01 1.10955499e-01\\n2.70659983e-01 -2.81114399e-01 -4.63892668e-02 1.07461095e-01\\n-9.90929604e-02 -2.05803499e-01 -3.38931829e-01 5.04897423e-02\\n-9.08693597e-02 -4.78580534e-01 -1.01777166e-01 -4.82099354e-01\\n-1.62538871e-01 -3.30503732e-01 -2.43613437e-01 3.15286875e-01\\n2.02044815e-01 1.45659372e-01 7.61852860e-02 -1.54940626e-02\\n-6.57685176e-02 -7.43359923e-01 -9.27251130e-02 -1.06826294e-02\\n5.37342727e-01 1.67797074e-01 2.22710315e-02 -9.00486112e-02\\n3.53892031e-03 4.98980403e-01 -3.74690175e-01 -3.90252203e-01\\n5.71420491e-02 1.52028054e-01 -3.06195877e-02 -2.02539220e-01\\n5.28162764e-03 4.07761842e-01 -2.38233924e-01 1.35247439e-01\\n-5.10711111e-02 -8.85524303e-02 4.05885488e-01 -1.31611060e-02\\n-3.47480059e-01 -1.97392955e-01 -9.28023532e-02 1.45437539e-01\\n-5.24388373e-01 -1.30381510e-01 5.59510589e-01 2.86901951e-01\\n1.90427989e-01 2.36356452e-01 2.60759771e-01 -9.23052505e-02\\n-1.39417976e-01 -2.85702348e-01 1.08309023e-01 1.53566405e-01\\n-3.82178137e-03 1.11081935e-01 -1.30673394e-01 -5.21439373e-01\\n-3.56062269e+00 -5.72392419e-02 2.28134543e-01 -2.83745587e-01\\n1.84516937e-01 -1.33128716e-02 -6.78385142e-03 3.67290564e-02\\n-3.99421692e-01 6.83811009e-02 -2.16967925e-01 -1.92042127e-01\\n4.35629264e-02 3.56590509e-01 7.23295435e-02 1.37255475e-01\\n1.43693984e-01 -2.57922351e-01 -1.95843816e-01 3.23520690e-01\\n-1.59120247e-01 -6.54160619e-01 1.07833773e-01 5.10134958e-02\\n1.85165629e-01 1.51602179e-01 -3.37271720e-01 -2.79328637e-02\\n-7.37449527e-02 -2.80705243e-01 -9.30318311e-02 -1.46301761e-01\\n-2.10048124e-01 3.16557288e-01 1.60904914e-01 -1.03805587e-01\\n-7.55465627e-02 -3.03779960e-01 -5.29515669e-02 -4.60794389e-01\\n1.47117585e-01 -5.53129137e-01 3.23036462e-02 -1.01737969e-01\\n7.63723314e-01 -2.43185744e-01 1.68201491e-01 -1.92443337e-02\\n1.34243369e-01 1.03382960e-01 -2.04743315e-02 3.98349464e-02\\n-2.16008723e-01 -3.03375393e-01 -3.02219372e-02 -2.41419956e-01\\n4.70418245e-01 4.26415265e-01 -2.55726814e-01 -4.89498526e-02\\n9.98428166e-02 -3.56135607e-01 -2.20863923e-01 -2.58219093e-01\\n-1.28375947e-01 -1.67964280e-01 -7.53873765e-01 -4.53482836e-01\\n-1.39948219e-01 -1.30637571e-01 -1.79183066e-01 6.85823739e-01\\n-3.26341331e-01 -4.67525035e-01 4.03417125e-02 -5.45589864e-01\\n9.74138454e-02 -2.54920065e-01 7.36849010e-02 -1.48353577e-01\\n-2.53879339e-01 -4.79702592e-01 9.93387476e-02 -2.29159947e-02\\n-1.47317365e-01 -1.29291221e-01 -1.78953316e-02 -1.56996712e-01\\n-3.52823853e-01 -2.84348994e-01 3.98072630e-01 1.54219553e-01\\n3.36670429e-01 1.61767811e-01 3.46327454e-01 9.29220691e-02\\n2.54116535e-01 4.29166704e-02 1.13745682e-01 -2.56963491e-01\\n1.17407493e-01 -1.33167744e-01 6.75389588e-01 -2.10271806e-01\\n-3.06424163e-02 2.17618912e-01 -1.58588171e-01 -1.52335107e-01\\n4.65653092e-01 -3.48148644e-02 -4.37473841e-02 -9.63325799e-02\\n3.44315141e-01 -4.37570572e-01 -1.39008015e-01 1.31856829e-01\\n1.22326307e-01 7.11004436e-01 6.48837164e-02 -3.90598357e-01\\n-3.15256923e-01 5.10156810e-01 -1.70436800e-02 -4.39828150e-02\\n-1.38245210e-01 9.51706916e-02 -1.49762645e-01 1.48976564e-01\\n1.69290587e-01 -2.52623677e-01 -1.34392485e-01 -2.07254682e-02\\n-1.28508016e-01 1.82498679e-01 2.94994891e-01 1.21286921e-01\\n-7.36759230e-02 -3.18882346e-01 -2.82738686e-01 2.13413090e-01\\n1.78033501e-01 3.21200728e-01 2.33400777e-01 -2.96987057e-01\\n-8.88423845e-02 2.74162829e-01 -6.39112070e-02 2.36131728e-01\\n-1.91125125e-01 1.17985599e-01 -5.77232420e-01 -1.51990280e-01\\n-1.82451352e-01 -3.55341643e-01 -9.63377487e-03 3.92011106e-01\\n1.12721696e-01 -2.80157998e-02 1.37635335e-01 -4.28060919e-01\\n3.83078098e-01 1.65574297e-01 2.16329724e-01 3.94830592e-02\\n2.24087574e-02 5.06155550e-01 -2.36281455e-02 -1.44592866e-01\\n-1.81049764e-01 -3.10048577e-03 -2.26907879e-01 -1.86938718e-01\\n9.39327627e-02 -4.24537361e-01 -1.03394493e-01 3.78989726e-01\\n1.09884910e-01 -2.03449875e-01 -2.22843081e-01 1.92236215e-01\\n1.26634508e-01 -2.22964704e-01 -2.68124551e-01 -8.59432817e-02\\n2.69510955e-01 4.22532149e-02 2.69445181e-01 -3.63558859e-01\\n-1.24990664e-01 -4.05609459e-02 -1.04681544e-01 3.71735752e-01\\n4.38280068e-02 1.25749245e-01 -2.25489825e-01 -8.71866271e-02\\n4.16496962e-01 -1.99916437e-01 -1.01017416e-01 -5.68775786e-03\\n2.14488301e-02 -2.21383125e-01 -5.36945581e-01 3.34589146e-02\\n-2.31792871e-02 -9.16041583e-02 1.03917226e-01 4.95176688e-02\\n1.12624101e-01 2.97736600e-02 -4.76847261e-01 -2.42387205e-01\\n-3.20910484e-01 -1.01022720e-01 2.21627682e-01 -3.39469522e-01\\n2.06570011e-02 -7.44875893e-02 -6.46117508e-01 2.20176965e-01\\n-2.93631554e-01 6.44078925e-02 2.09118575e-01 6.84900731e-02\\n-2.89846301e-01 -7.18417093e-02 5.40907830e-02 2.68675357e-01\\n-2.00353399e-01 -9.69718024e-02 -1.32815599e-01 -9.32604074e-01\\n2.26728067e-01 -6.84717745e-02 -6.46681637e-02 -4.70831804e-02\\n4.15480183e-03 -6.18592799e-01 1.54709801e-01 -3.55068088e-01\\n2.02562585e-02 9.17806178e-02 -2.54402548e-01 -2.93878287e-01\\n8.91731530e-02 -1.47753209e-01 -2.84847856e-01 3.83184791e-01\\n-4.57132012e-01 1.83667257e-01 1.60041936e-02 1.10351361e-01\\n-2.38874350e-02 -2.93784559e-01 2.02276498e-01 -4.16057378e-01\\n-3.50548148e-01 -1.97443083e-01 -2.71469623e-01 -3.08780611e-01\\n5.73224500e-02 -3.66917074e-01 -1.48068368e-01 6.08434752e-02\\n2.30457067e-01 4.75714169e-02 -1.31713197e-01 -2.82507241e-01\\n-3.21307369e-02 -5.15598178e-01 2.60962754e-01 -1.64898157e-01\\n4.75019254e-02 -2.06220839e-02 2.24028453e-01 9.45636630e-02\\n1.84180185e-01 -3.89262885e-01 3.92789364e-01 -3.63392323e-01\\n-3.01650137e-01 -4.81558852e-02 -5.16412966e-02 6.42930493e-02\\n2.61086762e-01 -5.41121542e-01 1.01180077e-02 1.86398819e-01\\n7.75865912e-02 7.26497918e-02 2.30011582e-01 -1.09838851e-01\\n-1.73561439e-01 1.53525159e-01 -2.96756804e-01 8.38316903e-02\\n7.66189814e-01 1.42351881e-01 1.14174858e-01 1.68061465e-01\\n9.82450545e-02 3.79284948e-01 4.92646873e-01 1.93414406e-03\\n3.30070704e-02 2.17681155e-01 3.02026719e-02 -4.71996814e-01\\n-1.98831648e-01 -5.58554381e-02 -2.32645109e-01 -3.01343143e-01\\n4.88483787e-01 3.37962657e-01 -4.36467230e-01 -3.03671569e-01\\n8.37995932e-02 -9.90793705e-02 3.49347502e-01 7.99787715e-02\\n-4.62359339e-02 -2.34577790e-01 5.53103149e-01 3.91831249e-02\\n3.02090526e-01 5.90380311e-01 -6.04438595e-02 -4.08283502e-01\\n-1.40415251e-01 2.38491431e-01 4.59875353e-02 4.55891699e-01\\n-8.67438391e-02 2.29221463e-01 -2.01717131e-02 5.56300431e-02\\n3.30250449e-02 6.81054220e-02 1.29672989e-01 1.54104605e-01\\n1.95514098e-01 1.66474506e-01 3.70199621e-01 5.40943503e-01\\n7.32200742e-02 4.85517889e-01 2.70979524e-01 5.00193834e-02\\n2.99673736e-01 6.42767489e-01 4.52486783e-01 2.01659963e-01\\n6.43692091e-02 1.64361969e-01 1.21771529e-01 -1.07977420e-01\\n3.70519519e-01 2.84178942e-01 1.81891605e-01 8.49902451e-01\\n3.34213793e-01 1.84644729e-01 7.72197366e-01 -6.86626375e-01\\n-3.28088492e-01 3.39398682e-02 4.50774461e-01 -2.42100075e-01\\n-4.00201790e-02 1.57529965e-01 -2.51336247e-01 3.51791948e-01\\n-4.80008394e-01 -1.14155754e-01 3.30991074e-02 -6.21156096e-02\\n7.45923668e-02 -9.39129516e-02 -9.83097106e-02 -1.97362620e-02\\n-1.56326681e-01 -1.46081910e-01 -2.79602110e-01 -1.78151205e-01\\n-3.31089139e-01 5.21156229e-02 -1.19059257e-01 -1.49056032e-01\\n-1.86889935e-02 -4.32440907e-01 -5.47806136e-02 1.09304845e-01\\n3.38639438e-01 -6.29020408e-02 -6.29020631e-02 -8.41925852e-03\\n1.99822500e-01 3.48794281e-01 5.95449805e-01 -7.12604076e-02\\n9.79602411e-02 -2.22206548e-01 -2.13774800e-01 7.25805014e-02\\n2.28640297e-03 -6.96777776e-02 1.04644112e-01 3.42532545e-01\\n-3.15297872e-01 -7.83983991e-02 -1.87895447e-02 2.60366470e-01\\n-4.01568830e-01 -9.28893909e-02 -1.57994911e-01 2.52415776e-01\\n-2.83473004e-02 1.41502365e-01 -2.46584997e-01 -8.50632787e-03\\n-1.97978795e-01 -3.97043020e-01 4.11216497e-01 -1.76645890e-01\\n-1.31972298e-01 2.76845545e-01 2.00490072e-01 1.43336028e-01\\n-2.52448678e-01 2.04628538e-02 -8.30664188e-02 1.74150482e-01\\n-3.00979521e-02 4.37407762e-01 -2.07550764e-01 -1.64763391e-01\\n-2.82055020e-01 3.11717063e-01 -1.00641996e-01 1.29502967e-01\\n-6.62696660e-02 2.52333671e-01 1.82071149e-01 -6.27015159e-02\\n3.45473260e-01 9.84240919e-02 -2.71901995e-01 -1.56051815e-01\\n-8.02501589e-02 -1.78788513e-01 -4.45113108e-02 -5.37209585e-02\\n1.52462572e-01 -3.73692155e-01 -6.55194223e-02 -9.74771529e-02\\n-4.11849990e-02 -3.18096995e-01 -1.56579182e-01 -1.07962815e-02]]',\n", + " 'job_description': \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting our BI environment. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: Bachelor's or higher degree in computer science or equivalent work experience A minimum of three years of software engineering experience Excellent knowledge with Scala or Java Expert knowledge in an enterprise class RDBMS Demonstrated ability in data modeling, ETL development, and data warehousing Experience with big data technologies, such as Kafka, Spark, and Cassandra Excellent troubleshooting and creative problem-solving abilities and analytical skills Excellent written and oral communication and interpersonal skills Advantage: experience with systems for automating deployment, scaling, and management of containerised applications, such as Kubernetes and Mesos experience with machine learning experience with encryption and cryptography standards Benötigte Skills Scala JAVA ETL Datawarehouse Business Intelligence Kryptografie / Verschlüsselung\",\n", + " 'soft_skills': '[\"Analytical Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " 'hard_skills': '[\"Machine Learning Methods\", \"Data Warehousing\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Mesos\", \"Apache Cassandra\", \"Encryption\", \"Cryptography\", \"Maintainability\", \"Computer Science\", \"Java (Programming Language)\", \"Data Modeling\", \"Big Data\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Business Intelligence\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'junior data analyst',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.69903481e-01 3.30211699e-01 3.92661035e-01 4.90615964e-02\\n5.56073964e-01 -4.56960872e-02 1.97432823e-02 2.03761920e-01\\n-1.14606410e-01 -2.59626091e-01 -6.09852895e-02 -2.39072815e-01\\n-1.46226600e-01 2.28210520e-02 1.02569878e-01 4.44392890e-01\\n2.21634388e-01 1.38972506e-01 -1.40524939e-01 3.04671645e-01\\n1.15937673e-01 -1.00240514e-01 -9.84825194e-02 6.73958302e-01\\n5.08503199e-01 1.85407437e-02 -2.31237620e-01 5.71484007e-02\\n-3.82248580e-01 -3.01472396e-01 3.43140543e-01 9.73194018e-02\\n-1.39029562e-01 -3.78364325e-01 1.07878134e-01 1.27601147e-01\\n-2.35481039e-01 4.53270879e-03 -8.93662572e-02 2.39326522e-01\\n-4.66389835e-01 -2.46199742e-01 4.14232537e-02 7.08748251e-02\\n-2.36647680e-01 -2.56346852e-01 -1.17730774e-01 -3.74902412e-02\\n-2.94771735e-02 7.94671327e-02 -5.94967782e-01 4.93730962e-01\\n-2.30061308e-01 -2.44092524e-01 1.82035565e-01 7.39780784e-01\\n1.21820599e-01 -5.53129792e-01 -3.08142394e-01 -3.74406427e-01\\n-2.36968882e-02 -1.12940542e-01 1.33159161e-01 -2.37707719e-01\\n3.32335234e-01 4.84203827e-03 -5.79093210e-02 4.24355984e-01\\n-8.62976730e-01 -9.71233025e-02 -2.24476844e-01 -2.22595390e-02\\n-5.32340348e-01 5.94385602e-02 -3.59243333e-01 -6.88645244e-02\\n-1.18864454e-01 3.67610186e-01 -4.74069417e-02 8.26179534e-02\\n-1.70148581e-01 2.23239958e-01 -1.21832490e-02 1.70375019e-01\\n3.08648199e-01 1.81487590e-01 3.40257764e-01 3.66689950e-01\\n-3.18727314e-01 3.68465990e-01 1.17254652e-01 -2.63595492e-01\\n2.16223836e-01 1.54409528e-01 5.19486368e-01 5.11390567e-02\\n-6.45652488e-02 1.29642174e-01 -2.53183067e-01 2.99986809e-01\\n1.61745206e-01 -4.39516872e-01 1.31676912e-01 8.29570089e-03\\n-1.73895523e-01 6.91733137e-02 9.78381485e-02 2.59390116e-01\\n-3.07596564e-01 4.34935749e-01 1.39447704e-01 -2.06035927e-01\\n-3.61505784e-02 -6.10142708e-01 -1.00276120e-01 -4.69638361e-03\\n1.17541723e-01 3.94250423e-01 2.72953212e-01 1.00699633e-01\\n2.63319761e-01 1.22485673e-02 2.11649716e-01 8.42800319e-01\\n4.15918492e-02 8.90497267e-02 -1.77863166e-01 3.18379700e-01\\n3.25477928e-01 -1.96858913e-01 1.95026726e-01 2.44496241e-01\\n8.95442665e-02 -6.68318942e-02 -3.25990647e-01 3.09875816e-01\\n-1.65617988e-01 -1.64334849e-01 -3.22462916e-01 6.12857789e-02\\n-2.42983088e-01 -4.15133566e-01 5.81723511e-01 8.22580010e-02\\n2.96112478e-01 -1.04103237e-01 1.71245597e-02 -3.75425480e-02\\n-6.51072264e-02 4.05751258e-01 5.91281131e-02 2.82216817e-01\\n-2.91610003e-01 -1.68535903e-01 -1.07815035e-01 3.78378898e-01\\n-2.85254389e-01 4.49367128e-02 -1.08398706e-01 -4.45846356e-02\\n2.82868624e-01 1.54228896e-01 -3.20729077e-01 1.19504400e-01\\n-1.14336200e-01 -3.91188443e-01 -7.64971375e-02 3.50683928e-01\\n-1.00491866e-01 2.39754349e-01 3.03259362e-02 -3.01487833e-01\\n6.62374616e-01 3.26763153e-01 1.95564002e-01 4.22401540e-02\\n3.41230124e-01 -1.85006544e-01 3.11518729e-01 1.63052961e-01\\n-6.62602842e-01 3.45543474e-01 6.48731813e-02 -2.75541097e-01\\n1.00821942e-01 7.34974220e-02 4.50670421e-01 -3.99756700e-01\\n3.56923379e-02 -2.31615767e-01 -3.79971802e-01 -4.11220878e-01\\n-2.66762912e-01 3.15081254e-02 4.09278840e-01 -3.34985644e-01\\n-1.33521825e-01 2.62247235e-01 -4.52034235e-01 -2.23917171e-01\\n1.26374215e-01 1.53301477e-01 5.30270971e-02 -2.57687792e-02\\n-8.62678885e-02 -6.35706961e-01 4.50634882e-02 -4.63739485e-01\\n-5.35800934e-01 3.69748590e-03 -3.49186510e-01 1.30858615e-01\\n-3.59033458e-02 6.13594353e-02 -9.43311527e-02 1.34197414e-01\\n-3.54555607e-01 -1.64842084e-02 3.56554314e-02 1.87073305e-01\\n2.50404596e-01 -4.16482799e-02 -5.16741753e-01 3.75585020e-01\\n-2.20642731e-01 5.30993879e-01 2.65517473e-01 -9.04959261e-01\\n6.30442917e-01 2.15591192e-01 9.25984383e-02 -2.50578582e-01\\n3.78691554e-01 -4.48909819e-01 -9.15755406e-02 1.65064305e-01\\n-2.16029018e-01 -2.37218425e-01 3.51897150e-01 -1.77554384e-01\\n-3.55367988e-01 4.60479677e-01 2.18342736e-01 -8.94561782e-03\\n2.88449913e-01 -3.12268019e-01 -5.50551079e-02 1.02989577e-01\\n-4.47699204e-02 -1.61732897e-01 -4.82570559e-01 3.75194140e-02\\n-6.72925413e-02 -4.71965730e-01 -8.25488418e-02 -3.33299011e-01\\n-1.39920011e-01 -3.51502776e-01 -3.77326757e-01 3.11004162e-01\\n1.52781412e-01 1.58988565e-01 4.05513011e-02 1.89531930e-02\\n7.43351802e-02 -7.34974742e-01 -2.18533337e-01 5.60102053e-02\\n4.93476361e-01 2.60669619e-01 2.46646572e-02 -1.74784794e-01\\n-1.12977496e-03 5.15721321e-01 -3.41495842e-01 -4.67799664e-01\\n1.95672363e-02 9.23142359e-02 -9.55522582e-02 -1.36673942e-01\\n8.85168016e-02 3.19082975e-01 -1.07110932e-01 7.99562410e-02\\n-8.89738426e-02 -4.78304587e-02 4.19248402e-01 8.59825499e-03\\n-2.74071276e-01 -1.06046446e-01 -1.37584895e-01 2.48347938e-01\\n-5.89287400e-01 -2.13321909e-01 5.59960544e-01 1.62665859e-01\\n1.92150578e-01 1.22509658e-01 1.89478770e-01 -1.00261785e-01\\n-2.56064795e-02 -2.74536699e-01 2.34207943e-01 1.49035946e-01\\n4.43218984e-02 8.54118317e-02 -7.88715556e-02 -7.66854465e-01\\n-3.27940965e+00 -3.14133286e-01 1.41042575e-01 -3.91017616e-01\\n1.82209447e-01 -1.15987666e-01 5.03617823e-02 -3.44741940e-02\\n-3.00532490e-01 5.49929254e-02 -2.86814153e-01 -1.72902986e-01\\n4.06640675e-03 2.38242477e-01 3.91243175e-02 1.80157244e-01\\n1.53169468e-01 -1.97287470e-01 -1.49520129e-01 3.35524678e-01\\n5.03745803e-04 -7.03826666e-01 5.96859083e-02 9.91246551e-02\\n2.37975270e-01 2.07187563e-01 -4.33561444e-01 1.28541784e-02\\n-2.35836565e-01 -2.62833148e-01 5.33691011e-02 -2.86824256e-01\\n-3.13884258e-01 2.71430731e-01 1.09556332e-01 -1.05196491e-01\\n-1.42289875e-02 -3.14451575e-01 -2.76335906e-02 -3.73896092e-01\\n7.24806041e-02 -5.91529787e-01 -5.61806485e-02 -6.87715709e-02\\n7.53360629e-01 -3.11479509e-01 2.59482831e-01 9.38942004e-03\\n1.71413392e-01 8.25963542e-02 2.62180008e-02 5.61644994e-02\\n-2.59518206e-01 -2.80994236e-01 1.46166412e-02 -1.69610560e-01\\n5.25863886e-01 5.11499107e-01 -1.65557310e-01 6.70194626e-02\\n2.22234637e-01 -3.11955512e-01 -3.11834574e-01 -3.88804317e-01\\n-2.40330726e-01 -2.34804913e-01 -7.05123782e-01 -4.79961872e-01\\n-1.78665057e-01 -9.45891719e-03 -2.03674048e-01 6.05339706e-01\\n-3.27680856e-01 -5.04034042e-01 2.23229658e-02 -5.27502716e-01\\n1.80814773e-01 -2.59595037e-01 7.15190694e-02 -1.66806027e-01\\n-3.63574892e-01 -5.42186856e-01 1.35831445e-01 -8.89754370e-02\\n-2.47457966e-01 -1.14685707e-01 -1.29641011e-01 -1.80894926e-01\\n-3.27081829e-01 -3.57394665e-01 5.02651691e-01 5.52136675e-02\\n3.59626859e-01 1.47503734e-01 3.71624470e-01 1.12909146e-01\\n3.14907074e-01 -1.09508485e-01 1.06382534e-01 -3.85194182e-01\\n3.58129735e-03 -6.70126826e-02 7.12407172e-01 -2.92129695e-01\\n7.88502395e-02 3.35630290e-02 -2.85090357e-01 -1.44628927e-01\\n4.88318801e-01 3.24213207e-02 9.44490582e-02 -5.70058711e-02\\n3.51760805e-01 -3.92466605e-01 -1.90895021e-01 2.43023679e-01\\n3.64841856e-02 7.20716894e-01 5.84823266e-02 -4.04302835e-01\\n-2.32394651e-01 4.47871596e-01 -7.59328008e-02 -4.97647654e-03\\n-1.05114341e-01 1.18639819e-01 -8.31916779e-02 2.59987295e-01\\n1.26624748e-01 -2.72606432e-01 -2.23663345e-01 -1.68161094e-01\\n2.98183933e-02 1.99713036e-01 2.93037713e-01 -3.97289991e-02\\n-5.07048741e-02 -2.18218073e-01 -2.11851820e-01 1.74137101e-01\\n2.92431593e-01 3.85163456e-01 1.44175962e-01 -2.27869362e-01\\n-1.02706037e-01 2.51480222e-01 -2.14656040e-01 2.65399247e-01\\n-1.58830509e-01 1.55674249e-01 -5.60586274e-01 -9.05579254e-02\\n-1.20868422e-01 -3.91883761e-01 1.90963641e-01 3.58746231e-01\\n2.14726791e-01 1.51378429e-02 -4.11909074e-02 -4.85457003e-01\\n3.66061270e-01 1.75971150e-01 1.43844336e-01 1.02357678e-01\\n-5.87090999e-02 4.24725682e-01 -1.18267927e-02 -5.04770502e-02\\n-1.70471132e-01 -3.68972234e-02 -2.19831809e-01 -3.15829873e-01\\n2.23768741e-01 -4.78620768e-01 -1.36539534e-01 4.10748720e-01\\n1.76589787e-01 -3.42217773e-01 -2.45084122e-01 2.89245814e-01\\n7.63109550e-02 -4.16781366e-01 -1.76472515e-01 -8.15693382e-03\\n2.31761992e-01 1.39034420e-01 2.85722256e-01 -3.96381140e-01\\n-9.23257694e-02 -6.33148849e-02 -1.51948392e-01 2.55487949e-01\\n1.05200857e-01 1.33293360e-01 -1.55749455e-01 -1.51574627e-01\\n5.12240827e-01 1.89651884e-02 -6.05685450e-02 5.80746271e-02\\n5.63989691e-02 -2.50223964e-01 -4.39500749e-01 -1.27526775e-01\\n-1.48952249e-02 -3.23749006e-01 3.96459438e-02 7.22012073e-02\\n6.24779835e-02 -1.63984578e-02 -4.80627567e-01 -3.24877799e-01\\n-3.21176618e-01 -1.90499455e-01 1.78123623e-01 -3.55892122e-01\\n-8.25810134e-02 -6.06468096e-02 -6.09544992e-01 1.75386190e-01\\n-2.59284049e-01 -3.60954404e-02 1.21220216e-01 1.26917914e-01\\n-1.86400548e-01 -8.87692869e-02 9.61606503e-02 1.81614995e-01\\n-2.85488784e-01 -1.58323973e-01 3.38639840e-02 -9.73684549e-01\\n1.08692758e-01 1.33115768e-01 -4.66713170e-03 4.13510464e-02\\n-5.12922145e-02 -5.41548729e-01 1.77234396e-01 -4.31651056e-01\\n-9.09246579e-02 7.44284177e-03 -1.86018631e-01 -2.53871232e-01\\n2.71518528e-01 -1.65154591e-01 -3.13458860e-01 3.71603012e-01\\n-4.41296160e-01 3.28340769e-01 7.62637481e-02 7.21891820e-02\\n-2.36079600e-02 -2.22803444e-01 1.07833743e-01 -2.65182316e-01\\n-4.45908189e-01 -1.36173964e-01 -3.94252926e-01 -1.42236337e-01\\n-2.70827673e-02 -2.58871943e-01 -1.58280507e-01 1.19419239e-01\\n3.47398967e-01 1.77878559e-01 -3.12975533e-02 -2.74050891e-01\\n6.41223416e-02 -5.58637738e-01 1.13728061e-01 -2.08668083e-01\\n-1.85295548e-02 5.22920396e-03 9.88802463e-02 -9.62967575e-02\\n8.77240896e-02 -2.91087627e-01 4.55982983e-01 -2.53869355e-01\\n-2.84520805e-01 -4.34890501e-02 6.40102625e-02 1.00279108e-01\\n3.80771756e-01 -4.47192520e-01 2.78782677e-02 2.48965412e-01\\n5.77623248e-02 1.19500525e-01 2.47714058e-01 -6.48874417e-02\\n-1.20549664e-01 1.78344697e-01 -5.32059669e-01 1.44256935e-01\\n8.96549881e-01 2.66778320e-01 4.69323136e-02 2.19581753e-01\\n2.57015437e-01 3.18985790e-01 5.33832371e-01 -8.06291327e-02\\n-9.58016291e-02 2.30021268e-01 -4.45018522e-02 -5.51859319e-01\\n-1.35526597e-01 -2.04562604e-01 -1.90782607e-01 -3.78986955e-01\\n6.04588270e-01 3.85152906e-01 -4.11267459e-01 -1.91748694e-01\\n-8.32971334e-02 -1.10327385e-01 2.43367568e-01 -5.42359985e-02\\n-9.09660161e-02 -1.49531305e-01 5.51828802e-01 -8.73960555e-03\\n3.66063893e-01 5.35598457e-01 -1.22023605e-01 -4.02548641e-01\\n-1.00493968e-01 2.76395261e-01 1.00876123e-01 5.10195315e-01\\n-1.59426585e-01 7.58925229e-02 -1.11529179e-01 7.02911541e-02\\n-1.66896489e-02 1.25271454e-01 2.28683323e-01 7.92856216e-02\\n2.92419672e-01 2.75281090e-02 3.08388889e-01 5.03178954e-01\\n7.84934908e-02 4.36758965e-01 3.81499827e-01 4.64925058e-02\\n1.86104923e-01 6.72974944e-01 2.91059941e-01 2.02554837e-01\\n-3.10175586e-03 2.01042145e-01 1.63644359e-01 -7.55597502e-02\\n3.72875303e-01 3.74817967e-01 3.15849006e-01 8.40524912e-01\\n2.73545325e-01 2.69655168e-01 7.63611376e-01 -7.31192827e-01\\n-4.02983159e-01 6.19159974e-02 6.12192333e-01 -1.57615051e-01\\n-1.26609221e-01 1.06311664e-01 -2.16974184e-01 3.51189196e-01\\n-6.01985335e-01 -9.25850198e-02 -4.02787402e-02 -1.20380364e-01\\n1.11637853e-01 -8.24511331e-03 -1.74308404e-01 6.63954467e-02\\n-1.94561049e-01 -8.28483924e-02 -3.47291708e-01 -1.15570366e-01\\n-3.89279306e-01 2.14222986e-02 -3.76100950e-02 -6.40734434e-02\\n-1.10988177e-01 -3.77812386e-01 -7.10287094e-02 5.20848855e-02\\n3.01097393e-01 -1.56266347e-01 -2.65326258e-02 -5.22031449e-02\\n1.04964025e-01 3.19031268e-01 4.77201283e-01 -9.14380103e-02\\n7.86635354e-02 -1.26054525e-01 -2.25667253e-01 -2.55079195e-02\\n1.59232274e-01 4.92963241e-03 1.94637284e-01 4.34655935e-01\\n-2.91074514e-01 -1.51027635e-01 5.28844893e-02 2.80973911e-01\\n-4.88572836e-01 -8.78828019e-02 -4.04011533e-02 2.29001075e-01\\n5.89627028e-02 2.81933814e-01 -3.20299417e-01 3.36592644e-02\\n-1.56576276e-01 -5.49048543e-01 4.01915342e-01 -1.75448596e-01\\n-1.01908915e-01 2.64829725e-01 2.05560997e-01 1.70984343e-01\\n-2.37505257e-01 -3.67347561e-02 -1.46159410e-01 2.52834141e-01\\n7.72492494e-03 4.63570625e-01 -1.27386123e-01 -2.77112961e-01\\n-2.64451444e-01 2.49437809e-01 -4.75737490e-02 1.64807796e-01\\n-1.27312437e-01 2.51511663e-01 -7.85685424e-03 1.40856072e-01\\n3.24630558e-01 5.67830615e-02 -3.62524450e-01 -2.20763236e-01\\n-1.49674267e-01 -2.44783461e-01 1.70121312e-01 -3.56495641e-02\\n1.41897425e-01 -3.42355549e-01 -7.14769140e-02 -2.73064435e-01\\n-1.82965696e-01 -3.93911481e-01 -1.39297768e-01 1.27686625e-02]]',\n", + " 'job_description': \"Job Informationen your tasks: Manage the end-to-end development of technical solutions, from partnering with multiple stakeholders to gathering detailed business requirements, through technical design, development, testing, and implementation Work on concurrent initiatives automating our business processes Develop RPA bots to increase operational efficiency and quality Translate analytic insights into concrete, actionable recommendations for business or product improvement Your profile: Bachelor's degree in Computer Science, Engineering, Mathematics, MTEC or other quantitative field combined with a passion for solving business problems Proven analytical and quantitative skills and an ability to use hard data and metrics to back up assumptions, develop business cases, and complete root cause analyses Proficient in at least one programming language (e.g., Python, Java, JavaScript, R) Experience extracting and transforming data sets with SQL Fluency in English, good German skills Nice-to-Have: Experience using Data Warehouse solutions and BI Tools in a business environment with large-scale, complex datasets (e.g. Teradata, AWS RDS, Looker, Tableau, Kibana, MS Excel) Benötigte Skills Englisch MS-Office Python Python R E-commerce Einzel-/Detailhandel JAVA JavaScript Junior Mathematik Datawarehouse Business Intelligence\",\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Data Warehouse Systems\", \"Automation\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Kibana\", \"Computer Science\", \"Analytics\", \"Task Management\", \"Scale (Map)\", \"Operational Efficiency\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Translations\", \"Data Transformation\", \"Dataset\", \"Productivity Improvement\", \"Root Cause Analysis\", \"Business Intelligence\", \"Business Requirements\", \"Business Process\", \"E-Commerce\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Technical Solution Design\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Business Development\", \"Business Case\"]',\n", + " 'languages': \"['English', 'Malay', 'Irish', 'Panjabi']\"},\n", + " {'company_id': '10',\n", + " 'job_title': 'generalist software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.adia.com',\n", + " 'jobdescription_embedded': '[[-2.34357730e-01 1.77211717e-01 4.50642854e-01 6.24194928e-02\\n3.61446202e-01 -2.09411621e-01 -9.69556421e-02 4.26262468e-01\\n-1.75725855e-03 -5.28404415e-01 1.08158603e-01 -2.12111697e-01\\n-1.85971305e-01 4.15814593e-02 4.25019674e-03 3.25101495e-01\\n3.39432240e-01 1.35085016e-01 -2.09346324e-01 3.96495998e-01\\n4.85816114e-02 1.44165866e-02 4.01813798e-02 8.56108785e-01\\n2.92638361e-01 -9.84536707e-02 -5.00775091e-02 -1.97072849e-02\\n-1.42255187e-01 -2.87461281e-01 4.12779152e-01 -1.43019930e-02\\n-1.99003190e-01 -4.89317626e-01 1.06496632e-01 3.22331265e-02\\n-2.28973746e-01 -1.06016032e-01 -7.04628006e-02 6.61505610e-02\\n-5.92180431e-01 -1.05817899e-01 -2.67215073e-04 1.15558170e-02\\n-2.56093174e-01 -2.02435791e-01 2.64682531e-01 -1.02313191e-01\\n2.17359647e-01 4.41650711e-02 -5.33535600e-01 1.52487054e-01\\n-3.00773323e-01 -2.22172379e-01 3.24805200e-01 5.44023335e-01\\n8.68446827e-02 -3.70820522e-01 -6.40060306e-01 -3.37188751e-01\\n1.57391772e-01 -8.15164074e-02 -8.24991800e-03 -4.16488826e-01\\n1.69932663e-01 -2.53667682e-03 9.38911885e-02 2.97309518e-01\\n-7.75656104e-01 1.40022021e-04 -3.01735044e-01 -1.77524269e-01\\n-4.15125489e-01 -7.15525150e-02 -3.39484632e-01 -5.30512482e-02\\n-1.11584656e-01 3.63481969e-01 2.23013107e-02 5.43295331e-02\\n-2.38050610e-01 2.65910804e-01 -2.76697636e-01 3.63957107e-01\\n2.30403215e-01 1.79554105e-01 2.62853056e-01 3.89544427e-01\\n-4.32031691e-01 5.69146633e-01 2.21281797e-01 -4.24826562e-01\\n3.37669581e-01 1.14484698e-01 2.77481496e-01 4.74773720e-03\\n3.46326649e-01 2.29528546e-01 -2.44188324e-01 4.25320566e-01\\n3.03311855e-01 -3.64998519e-01 -5.14349341e-02 -2.34835371e-01\\n2.23037243e-01 -4.63447496e-02 1.95425391e-01 2.49686569e-01\\n-2.96803892e-01 3.29127610e-01 1.10541940e-01 -1.78398252e-01\\n-1.74966231e-01 -3.11714351e-01 1.32792294e-02 -6.94722980e-02\\n-1.12026110e-02 2.97306441e-02 2.80691028e-01 7.17958212e-02\\n2.92215049e-01 1.16339743e-01 7.37299025e-02 7.70783782e-01\\n-1.49151742e-01 -9.39861536e-02 -3.55707288e-01 2.15480685e-01\\n5.02598695e-02 -3.34488928e-01 2.83406556e-01 2.56998301e-01\\n4.21187356e-02 -2.28770614e-01 -2.67387331e-01 4.15128440e-01\\n6.51071966e-02 -7.81474635e-02 -2.71845877e-01 1.67861626e-01\\n4.07790616e-02 -3.47931057e-01 5.62877297e-01 1.42847851e-01\\n1.66625917e-01 8.20492506e-02 1.27221689e-01 -2.22774893e-01\\n-9.64030176e-02 1.13527104e-01 1.33591341e-02 2.61685699e-01\\n-2.71613479e-01 -2.07276732e-01 -2.11255461e-01 -5.29613532e-03\\n-4.67020750e-01 1.57926068e-01 -1.66700870e-01 -6.61679581e-02\\n2.48776600e-01 -6.89025149e-02 -1.45834520e-01 2.11400300e-01\\n-4.60385531e-03 8.80601779e-02 8.89584422e-02 3.32163572e-01\\n-8.34471956e-02 2.72368312e-01 -1.02067336e-01 -2.95348465e-04\\n7.31147885e-01 1.61515862e-01 1.29582942e-01 -1.01394653e-02\\n3.17157447e-01 -3.09839994e-02 1.77752033e-01 4.43416499e-02\\n-7.18647003e-01 3.11193377e-01 8.59753862e-02 -1.76871508e-01\\n3.85815054e-02 -8.01868662e-02 8.94968063e-02 -3.28503311e-01\\n-2.07668357e-03 -9.78643298e-02 -3.77963066e-01 -2.06185490e-01\\n-2.66643941e-01 -1.33655339e-01 3.28749448e-01 -5.73813081e-01\\n-1.64794266e-01 1.61695123e-01 -5.56612194e-01 -1.26163065e-01\\n1.81818843e-01 1.18485138e-01 3.48838829e-02 1.20732844e-01\\n-6.57649189e-02 -5.65822363e-01 7.47790188e-03 -3.23902696e-01\\n-2.99928725e-01 1.20972060e-01 -3.03581774e-01 2.36848965e-01\\n2.46446580e-02 -1.11157104e-01 -2.05512986e-01 1.55343354e-01\\n-2.81163096e-01 -6.07608333e-02 1.87259167e-02 -3.77400778e-02\\n2.46045411e-01 1.41405657e-01 -2.71757185e-01 4.36252773e-01\\n-1.92805290e-01 4.20228511e-01 3.98759805e-02 -8.48063946e-01\\n5.16651154e-01 3.37284952e-01 2.60602105e-02 -3.03608268e-01\\n4.82039750e-01 -3.19957048e-01 -4.72753793e-02 1.18708089e-02\\n-4.22319710e-01 -3.65023971e-01 1.18632041e-01 -1.20055683e-01\\n-2.29076147e-01 4.41334039e-01 1.68685578e-02 1.22095168e-01\\n2.66683996e-01 -2.95143664e-01 -1.70218021e-01 4.26461883e-02\\n-4.36174273e-02 -2.64941096e-01 -5.70072055e-01 -1.73296690e-01\\n-9.59402397e-02 -3.73135626e-01 -9.01092291e-02 -3.81963044e-01\\n-3.03484648e-01 -3.67887437e-01 -3.25443506e-01 1.72465086e-01\\n3.65027070e-01 1.15351006e-01 -1.76671609e-01 4.41055670e-02\\n-1.96262658e-01 -6.38638377e-01 -1.53445080e-02 9.00341570e-02\\n4.03036892e-01 2.14484930e-01 1.40960038e-01 -8.77763554e-02\\n8.56677890e-02 6.11184120e-01 -2.20123962e-01 -1.70760632e-01\\n1.44332975e-01 3.07946026e-01 3.98268998e-02 -1.72208861e-01\\n9.62053984e-02 3.65538210e-01 -2.66983598e-01 1.19120497e-02\\n6.00797608e-02 -1.14781007e-01 4.72176999e-01 -1.81287527e-02\\n-3.40620875e-01 -1.59127548e-01 -5.89444041e-02 7.86331743e-02\\n-5.60151815e-01 -2.07640141e-01 6.62522674e-01 1.34817734e-01\\n2.07729548e-01 1.35019571e-01 7.66624361e-02 -3.41901816e-02\\n-1.93129569e-01 -3.63212347e-01 3.65595520e-01 1.96470052e-01\\n5.63759357e-03 1.36874586e-01 -1.14385877e-02 -6.33948326e-01\\n-3.51720190e+00 -1.70903325e-01 2.31311023e-01 -2.33939826e-01\\n1.21051446e-01 -1.44097939e-01 1.04870707e-01 -1.51443958e-01\\n-2.59710342e-01 8.86521041e-02 -2.55226605e-02 -2.07740664e-01\\n1.72383606e-01 2.73695916e-01 1.42783254e-01 2.77567893e-01\\n2.90401459e-01 -1.09480977e-01 -1.03619203e-01 2.62350112e-01\\n-2.10322946e-01 -5.81685781e-01 2.18300730e-01 -1.22229025e-01\\n2.49179080e-01 3.43325794e-01 -2.61353403e-01 -2.15659082e-01\\n-2.33196288e-01 -1.44786984e-01 3.09041981e-03 -3.14398855e-01\\n-6.11099638e-02 7.79256821e-02 2.75532812e-01 -1.15195557e-01\\n9.28388312e-02 -3.77427459e-01 -2.15686366e-01 -4.98399168e-01\\n1.05892524e-01 -6.19739413e-01 4.74562645e-02 -1.07554451e-01\\n7.10010290e-01 -2.90163457e-01 9.88777503e-02 6.59488142e-02\\n2.02684700e-01 1.14987180e-01 1.53052598e-01 8.16277191e-02\\n-3.00244033e-01 -2.54828155e-01 -7.28145540e-02 -2.12789118e-01\\n6.09691501e-01 4.78747159e-01 -1.57557338e-01 -1.03387423e-01\\n8.34250078e-03 -3.03745985e-01 -4.75387752e-01 -1.71308473e-01\\n-5.75450733e-02 -2.36969173e-01 -4.78171110e-01 -1.98988646e-01\\n-1.38914868e-01 -1.13346778e-01 -1.23617195e-01 6.20270848e-01\\n-3.18964660e-01 -3.76670450e-01 7.91530013e-02 -4.40555573e-01\\n1.38095558e-01 -1.39180198e-01 7.80254677e-02 -2.42672697e-01\\n-1.45381108e-01 -4.15969789e-01 -3.73857282e-02 -4.78070602e-03\\n-1.67186558e-01 -4.20640886e-01 2.57500261e-02 -1.81305204e-02\\n-1.96739763e-01 -4.96377587e-01 4.48118448e-01 2.28275687e-01\\n3.00749063e-01 1.71086699e-01 3.88873905e-01 -1.10816494e-01\\n3.03268909e-01 -2.64634620e-02 -1.74137250e-01 -3.59178513e-01\\n2.14001358e-01 -5.45948148e-02 4.81265485e-01 -6.12466298e-02\\n8.74459669e-02 6.50107190e-02 -2.82970786e-01 -6.96368590e-02\\n3.90922368e-01 -5.27326167e-02 1.25027061e-01 -2.15654433e-01\\n3.06375265e-01 -3.04765403e-01 -2.19536662e-01 7.90679902e-02\\n1.20619357e-01 5.66225827e-01 -7.72845894e-02 -4.15341496e-01\\n-1.56156182e-01 5.14019608e-01 -2.29617991e-02 -1.67254657e-02\\n-3.65658939e-01 1.25757203e-01 -2.21883431e-01 2.23529935e-01\\n-3.37287225e-03 -8.23811293e-02 -2.73672521e-01 -1.72666520e-01\\n-9.20573547e-02 3.66034955e-01 9.43951607e-02 -5.66104241e-03\\n6.89797848e-02 -4.13586974e-01 -4.93394956e-03 1.24249384e-01\\n1.53357968e-01 5.04592657e-01 1.90762609e-01 -2.73277342e-01\\n-7.42612109e-02 4.07566845e-01 -5.26861697e-02 1.10268041e-01\\n-2.47509032e-01 1.45772621e-01 -4.96110886e-01 -2.03484818e-01\\n-3.84946585e-01 -3.88599992e-01 1.25257313e-01 2.86179602e-01\\n7.15422258e-02 -5.80643751e-02 -6.49900734e-03 -4.15708601e-01\\n2.34878302e-01 1.61224455e-01 1.13555588e-01 1.88083470e-01\\n2.91553698e-02 5.30551493e-01 -5.41128218e-04 -1.78410500e-01\\n-1.39748693e-01 9.00049657e-02 -8.70039240e-02 -2.27519393e-01\\n-1.66335348e-02 -6.54897332e-01 -8.56187120e-02 4.28667009e-01\\n1.15003340e-01 -2.43396759e-01 -2.19685853e-01 2.10523084e-01\\n5.10265678e-03 -1.83847547e-01 -3.20636988e-01 -1.70173824e-01\\n3.95530671e-01 1.02739856e-02 2.96419740e-01 -4.21421170e-01\\n-9.11489725e-02 -9.43519175e-04 1.18288863e-02 5.91502011e-01\\n-1.40371472e-02 3.11337970e-02 -9.36905295e-02 -1.27197668e-01\\n4.84377682e-01 -1.78487301e-01 -1.80336773e-01 -8.83898363e-02\\n2.37341970e-01 -2.03339398e-01 -5.10426939e-01 1.73052341e-01\\n-3.25407535e-02 -1.79154545e-01 1.29384011e-01 2.04165116e-01\\n3.47992256e-02 2.61823475e-01 -6.13007426e-01 -3.73492718e-01\\n-2.33723834e-01 5.78529350e-02 4.48574200e-02 -4.66655254e-01\\n7.11063072e-02 -8.92436504e-02 -5.25633395e-01 1.89346179e-01\\n-2.83952892e-01 -1.23598963e-01 1.71458304e-01 1.14896789e-01\\n-3.78218412e-01 -8.40683132e-02 5.45838624e-02 2.69998819e-01\\n-3.32596362e-01 -3.63918334e-01 4.08357196e-02 -9.65149760e-01\\n2.66203672e-01 1.09192953e-01 -2.53495902e-01 1.70312434e-01\\n-4.20476124e-02 -5.79026461e-01 3.58960032e-03 -2.84073949e-01\\n-2.16565877e-01 1.01437256e-01 -2.74276912e-01 -2.75845826e-01\\n1.17512479e-01 -1.03250906e-01 -3.72098535e-01 4.88247365e-01\\n-3.73931408e-01 4.16572332e-01 -1.06238648e-01 7.00273067e-02\\n8.98462534e-03 -2.51033366e-01 1.70217920e-02 -4.28717434e-01\\n-6.13978565e-01 -2.44019985e-01 -3.22769344e-01 -3.21743965e-01\\n6.60208240e-02 -4.54834044e-01 2.92447172e-02 -1.34856617e-02\\n3.71973604e-01 2.20063590e-02 -1.58485383e-01 -3.48872602e-01\\n6.46146685e-02 -5.66623092e-01 4.21255603e-02 -7.31301233e-02\\n-9.87710804e-03 -2.61232436e-01 3.73447955e-01 6.92701936e-02\\n2.11473614e-01 -4.64735836e-01 4.15046155e-01 -3.89259100e-01\\n-2.60881186e-01 -2.04080358e-01 6.07120693e-02 -1.51858088e-02\\n3.55237901e-01 -5.59743524e-01 8.94119292e-02 3.71051610e-01\\n2.25976527e-01 -6.32903501e-02 2.63508320e-01 -1.11721091e-01\\n8.02549794e-02 3.65785390e-01 -2.36899942e-01 2.20946968e-01\\n7.83722758e-01 -6.69128969e-02 2.25016147e-01 2.38315105e-01\\n1.66066021e-01 3.58103931e-01 4.82764006e-01 8.78819972e-02\\n-1.44699439e-01 2.54221767e-01 1.49210021e-01 -4.43210065e-01\\n6.46300763e-02 -2.42471546e-02 -1.31590158e-01 -3.49939346e-01\\n6.81308270e-01 4.56732154e-01 -3.70353729e-01 -1.77473739e-01\\n-8.52675065e-02 -1.13331154e-01 1.82681605e-01 -8.34054723e-02\\n-1.19885318e-02 -4.16316018e-02 3.86751771e-01 -1.43666565e-01\\n2.96373516e-01 5.02742589e-01 -1.85514271e-01 -3.53344411e-01\\n-1.00831836e-01 2.49017566e-01 5.52257672e-02 4.92687762e-01\\n-2.64676660e-01 2.37898737e-01 -5.37919253e-03 7.01152682e-02\\n-3.85264643e-02 1.98311269e-01 1.25846118e-01 4.42852378e-02\\n2.52896488e-01 -1.18701858e-02 6.06387377e-01 4.29776013e-01\\n3.30192387e-01 3.97101879e-01 4.08395708e-01 9.29553509e-02\\n4.95822787e-01 6.09616101e-01 4.11554873e-01 1.58041760e-01\\n-4.66639847e-02 2.59441361e-02 1.17435880e-01 5.23162372e-02\\n4.15555716e-01 4.30041820e-01 -4.56615910e-03 8.87700558e-01\\n3.90797228e-01 2.19780564e-01 6.10485494e-01 -6.80051923e-01\\n-2.81139165e-01 1.22357726e-01 4.42773908e-01 -3.24398488e-01\\n4.33683358e-02 1.90235198e-01 -1.02084458e-01 2.92286396e-01\\n-2.34378919e-01 -2.97200888e-01 4.02737930e-02 2.49989390e-01\\n-3.96211073e-03 -1.89491332e-01 -2.16711283e-01 3.55269648e-02\\n-5.20716235e-02 -9.31701586e-02 -4.03327465e-01 -4.92498986e-02\\n-2.77475148e-01 -6.37310073e-02 -1.07274607e-01 -1.53645545e-01\\n-7.75230527e-02 -4.31756258e-01 -4.87473346e-02 -4.88679372e-02\\n2.04535246e-01 -2.17914611e-01 -8.61552209e-02 -1.36939555e-01\\n3.05225372e-01 2.43932933e-01 5.92991352e-01 2.40222029e-02\\n5.80441207e-02 -1.61146075e-01 -2.67916769e-01 3.51892024e-01\\n1.20649263e-01 2.13450208e-01 1.60295852e-02 2.23295122e-01\\n-1.70472637e-01 -7.73162916e-02 2.30140865e-01 3.43708336e-01\\n-4.37528968e-01 2.89878957e-02 -1.58301950e-01 1.54029042e-01\\n7.88599327e-02 1.61403582e-01 -1.66944504e-01 1.30764931e-01\\n-2.26956189e-01 -4.26822960e-01 3.17641646e-01 -2.28523403e-01\\n-3.64293754e-02 -4.39546444e-02 1.95142537e-01 2.97778517e-01\\n-3.15638304e-01 2.09680498e-02 -9.55581367e-02 2.01084048e-01\\n8.35966095e-02 2.17634797e-01 -1.92732871e-01 -3.00760031e-01\\n-3.31351936e-01 5.17377071e-02 -1.31877571e-01 9.54504758e-02\\n2.58201733e-02 4.11046177e-01 -5.72855175e-02 3.36875468e-02\\n4.74288911e-01 -1.03365079e-01 -2.75695741e-01 -2.34067231e-01\\n-2.44685993e-01 -1.36474863e-01 -1.16823733e-01 -1.03973314e-01\\n1.86803281e-01 -2.80593574e-01 -5.38187549e-02 -3.27735804e-02\\n3.69149260e-02 -2.91557729e-01 5.03120795e-02 3.84197384e-03]]',\n", + " 'job_description': \"Adia is a quickly growing fast-paced start-up in the space of on demand staffing. Having been founded in 2016 we have a pretty short company history, but we were already able to build significant market presence in Switzerland and the US. We built what we think is the smartest collection of apps to bring jobseekers and businesses together. From giving people access to more flexible work, to helping companies grow and stabilise their day-to-day operations, we're creating a better way of working in today's on demand economy. In order to strengthen our in-house technology footprint, we are looking for generalist software engineers who will be able to use their broad and diverse experiences to make contributions to various parts of the complete technology stack. The Role You will be responsible for writing code that powers Adia’s platform. As the platform is being continuously improved and features are evolving all the time, you will see and feel your impact almost instantly. Your responsibilities include everything from implementing new applications or services and handling data, to debugging and communicating with internal stakeholders. Being in a small team, you will have a lot of freedom to make your own choices which most of the time comes with a lot of responsibility which you should feel comfortable with In this role you will need to collaborate closely with remote team members provided by our near shoring partner to deliver improvements and new features captured by the ever-growing product backlog. About You You understand rationale behind µservice architecture. You tried it at least once (and potentiallyfailed miserably). You understand the benefits of that architecture as well as the costs it incurs. You don’t necessarily need to be a UX expert, but you can work with one and you don’t shy away from writing code for customer facing applications (regardless of the fact whether it is for the web or for the mobile) You can develop in a cloud-first environment, including all the responsibilities that come with it such as deploying and operating those services in the cloud (in our case its Azure) You have an agile mindset. You are willing to innovate and explore solutions by acting on continuous iterative feedback. You’ll have persistence to stabilise, improve and monitor existing services. You have strong experience in one or more programming languages and remain open to learn new ones (majority of code is in .NET, and JavaScript but nothing is set in stone in the long run) Preferably, you have experience in a web framework like React, Vue or Angular (we primarily use Angular now) You feel comfortable writing and speaking in English at work (at least B2 level) and enjoy working in a multi-cultural environment. You have the right to work in Switzerland or you hold a passport of an EU member state. Our Culture We are open, honest, and motivated. Every day we put all our efforts and brain power to build a great product instead of overgrown egos. We’re an early player in the HR tech space, which brings excitement and purpose to our work. If you’re looking for a place that will help you unleash your superpowers by solving real life problems that are thrown at you, you may be the right fit for the team. Every day we push ourselves to be better than we were the day before. We have an incredible future ahead of us, and we’d love for you to be a part of our journey towards it.\",\n", + " 'soft_skills': '[\"Writing\", \"Collaboration\", \"Communications\", \"Operations\", \"Innovation\", \"Persistence\"]',\n", + " 'hard_skills': '[\"Angular (Web Framework)\", \"KM Programming Language\", \"Economy\", \"Intelligence Data Handling\", \"Backlogs\", \"Acting\", \"Collections\", \"JavaScript (Programming Language)\", \"Vue.js\", \"Web Frameworks\", \"React.js\", \"Footprinting\", \"Iterators\", \"Levelling\", \"Debugging\", \"Software Engineering\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Inupiaq']\"},\n", + " {'company_id': '124',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.12718710e-01 1.10670008e-01 4.75184590e-01 -3.31541561e-02\\n5.69552958e-01 -1.60082176e-01 -7.25976750e-02 4.56851900e-01\\n-9.39485431e-03 -3.46985042e-01 -8.97977054e-02 -1.99055016e-01\\n-8.65264684e-02 1.58009958e-02 1.02504492e-01 2.59520143e-01\\n3.06469977e-01 1.36347577e-01 -2.48786330e-01 3.25105458e-01\\n1.79310754e-01 -2.32021026e-02 1.37772277e-01 6.70434237e-01\\n4.32870984e-01 -9.26994905e-03 -5.02437763e-02 1.68501791e-02\\n-3.41383606e-01 -2.54121363e-01 3.67121607e-01 8.42692852e-02\\n-7.05615878e-02 -3.59335333e-01 1.45708352e-01 8.81755725e-03\\n-1.51054129e-01 -4.73292582e-02 -2.31389552e-02 1.41306147e-01\\n-4.23853874e-01 -8.47265050e-02 3.57912071e-02 1.68432042e-01\\n-1.48513973e-01 -3.20981532e-01 1.53395742e-01 7.15538859e-02\\n1.64333247e-02 -6.99292794e-02 -5.31052053e-01 2.89238751e-01\\n-2.30182275e-01 -1.60018951e-01 3.27089399e-01 5.50157547e-01\\n-8.36343616e-02 -4.28591281e-01 -3.96054715e-01 -3.07384968e-01\\n5.95142469e-02 -1.71042472e-01 1.51446328e-01 -2.11977735e-01\\n3.31668735e-01 -2.31110733e-02 -3.43213091e-03 2.97998548e-01\\n-7.79415309e-01 -5.81556968e-02 -1.41546845e-01 -1.76338837e-01\\n-3.18232208e-01 -2.24399015e-01 -1.93985447e-01 -4.46574651e-02\\n-1.71832874e-01 3.20438266e-01 -6.34812191e-03 5.26670851e-02\\n-6.86931312e-02 2.12634176e-01 -2.00736940e-01 3.13361734e-01\\n2.52206504e-01 2.17922837e-01 1.51003763e-01 3.45444053e-01\\n-2.80736625e-01 3.58816803e-01 1.37060717e-01 -2.95692831e-01\\n2.77554035e-01 4.61736321e-02 4.52695072e-01 -1.02109641e-01\\n1.33541137e-01 1.27233073e-01 -1.72725827e-01 2.61346072e-01\\n2.25934163e-01 -2.93657184e-01 3.51308547e-02 -1.02400355e-01\\n-1.25162467e-01 3.93865891e-02 1.34616476e-02 3.91661078e-01\\n-2.72497803e-01 3.95819575e-01 1.96953848e-01 -1.68162256e-01\\n-5.27839642e-03 -5.32436013e-01 -6.35794401e-02 -2.85449419e-02\\n2.27576680e-02 1.41635060e-01 2.99577534e-01 1.95003539e-01\\n3.15216422e-01 5.50945289e-02 1.77949935e-01 7.82162249e-01\\n-6.95528388e-02 -1.06485942e-02 -1.83141634e-01 3.71077567e-01\\n9.47134420e-02 -3.52449417e-01 2.07145333e-01 2.55971640e-01\\n8.44329000e-02 -4.29405048e-02 -2.09174842e-01 3.19562584e-01\\n-5.72665446e-02 -1.91153005e-01 -2.65503317e-01 8.97026062e-02\\n-1.28501087e-01 -3.72112185e-01 5.62508404e-01 1.56871960e-01\\n1.82912469e-01 -5.53048588e-02 -3.94426426e-03 -2.21927717e-01\\n-4.68951911e-02 2.87027925e-01 9.74720940e-02 1.88746959e-01\\n-1.85686409e-01 -1.10682644e-01 -2.17966035e-01 1.81002915e-01\\n-2.57769823e-01 7.08091408e-02 -7.26538822e-02 -5.00200726e-02\\n3.62583697e-01 -2.00315248e-02 -2.42031783e-01 2.19914317e-01\\n3.02398708e-02 4.06021476e-02 -1.06041133e-01 3.07472825e-01\\n-2.29071662e-01 2.34056324e-01 -1.36502251e-01 -7.84502849e-02\\n6.44152164e-01 1.61935315e-01 2.14210033e-01 -3.28235291e-02\\n2.50620186e-01 -7.06445798e-02 1.67265102e-01 7.12040365e-02\\n-8.15086186e-01 2.42198512e-01 1.28117274e-03 -1.65778592e-01\\n6.76135942e-02 -5.00779673e-02 1.37460813e-01 -3.51681769e-01\\n4.32248600e-02 -1.54658869e-01 -3.77197415e-01 -2.91289896e-01\\n-3.03335607e-01 -9.16837007e-02 3.07800502e-01 -4.15722877e-01\\n-1.02222636e-01 2.00834513e-01 -5.02035618e-01 3.72994356e-02\\n1.83305636e-01 1.77630514e-01 4.49362583e-02 1.15844019e-01\\n-5.32674938e-02 -5.16095459e-01 6.99020997e-02 -3.28726798e-01\\n-2.88491368e-01 1.62937149e-01 -2.47179538e-01 2.99806535e-01\\n8.17100406e-02 -3.60871688e-03 -5.27518056e-02 2.28180990e-01\\n-1.02618970e-01 -1.21068411e-01 1.88411877e-01 6.55864552e-02\\n2.54900992e-01 7.91452155e-02 -4.36164886e-01 4.37535971e-01\\n-2.04018384e-01 5.89163840e-01 1.02276370e-01 -7.77375340e-01\\n4.37204629e-01 3.24561894e-01 6.48089424e-02 -3.41800421e-01\\n6.36652648e-01 -1.69620857e-01 1.53298108e-02 7.70890489e-02\\n-4.41106647e-01 -3.21914732e-01 2.47038200e-01 -1.36424556e-01\\n-1.91462532e-01 4.89517599e-01 4.56175320e-02 5.19953435e-03\\n1.95847452e-01 -1.99075177e-01 -5.01468070e-02 3.65773179e-02\\n-1.21756531e-01 -2.94013977e-01 -4.61595267e-01 -4.91148829e-02\\n-1.14157505e-01 -4.44583118e-01 -1.26388982e-01 -3.75852644e-01\\n-2.06945211e-01 -3.22829634e-01 -2.07525894e-01 2.34229311e-01\\n2.03865364e-01 1.66954443e-01 -1.32062072e-02 2.37189997e-02\\n-2.29091525e-01 -5.97406268e-01 -2.53920234e-03 8.40099901e-02\\n3.77256215e-01 2.09424272e-01 1.02357976e-01 -1.86912585e-02\\n-1.24870762e-01 6.59388185e-01 -2.65086740e-01 -6.37472123e-02\\n1.81517839e-01 2.24729568e-01 6.41338155e-02 -1.10455289e-01\\n-1.14096198e-02 3.50315392e-01 -2.16362074e-01 1.63446777e-02\\n-1.03627004e-01 -7.60748684e-02 4.34545428e-01 2.02471707e-02\\n-2.71126121e-01 -2.40514025e-01 -4.98008206e-02 2.19685823e-01\\n-4.63799328e-01 -1.55582711e-01 6.35922015e-01 3.00473094e-01\\n2.06713691e-01 2.17857823e-01 1.91894814e-01 -1.05688877e-01\\n-1.28329784e-01 -2.90801406e-01 3.11618835e-01 1.38225809e-01\\n1.68557122e-01 1.23579711e-01 -1.66140854e-01 -5.96358597e-01\\n-3.53283405e+00 -1.64912969e-01 1.76509857e-01 -3.28984261e-01\\n1.09984174e-01 -1.17865667e-01 -1.39584824e-01 -1.46593168e-01\\n-2.26898283e-01 1.09511226e-01 -2.12813944e-01 -2.69764543e-01\\n2.24568531e-01 2.26212189e-01 1.37748510e-01 3.02404076e-01\\n2.31716678e-01 -1.49721682e-01 7.57346908e-03 1.73221111e-01\\n-3.42497349e-01 -5.52999556e-01 2.60361671e-01 -3.25897820e-02\\n3.42976838e-01 4.00614530e-01 -2.75678575e-01 -2.59755522e-01\\n-2.44935572e-01 -2.62971163e-01 2.63636727e-02 -3.30364555e-01\\n-5.86436205e-02 3.28728765e-01 1.46820843e-01 -1.61966845e-01\\n1.91452384e-01 -3.43591660e-01 -5.06713763e-02 -4.04672235e-01\\n8.26874822e-02 -4.13416058e-01 -3.02240681e-02 -5.08640260e-02\\n7.34365463e-01 -4.10922140e-01 1.48562327e-01 1.37132227e-01\\n2.51234561e-01 2.06326500e-01 -3.90384682e-02 -5.87912910e-02\\n-2.58642286e-01 -1.34982914e-01 -8.38747621e-02 -1.50602043e-01\\n4.60600466e-01 5.76390684e-01 -2.07731828e-01 6.07291460e-02\\n1.76067501e-02 -3.20771903e-01 -2.81750977e-01 -2.87910014e-01\\n-1.34599343e-01 -3.14505786e-01 -4.89336461e-01 -3.61866951e-01\\n-4.56856042e-02 -2.04332527e-02 -1.28606603e-01 5.82632720e-01\\n-1.87858805e-01 -4.79950458e-01 -1.34232873e-02 -5.14285147e-01\\n7.88142383e-02 -1.45390570e-01 -4.92166821e-03 -1.79838151e-01\\n-1.04273111e-01 -4.92918193e-01 4.75566126e-02 -2.23151576e-02\\n-1.09107792e-01 -3.50248814e-01 9.56417993e-02 -1.17105290e-01\\n-2.31957301e-01 -5.50469100e-01 3.18325698e-01 1.21233135e-01\\n2.62410462e-01 9.83931795e-02 1.64810479e-01 1.12242542e-01\\n2.45010570e-01 -3.01274002e-01 8.95757303e-02 -3.86696041e-01\\n2.06775680e-01 -3.99843697e-03 5.00576675e-01 -1.94019094e-01\\n6.88759238e-02 1.84414431e-01 -2.64946133e-01 -1.07918791e-01\\n3.15362632e-01 9.43630561e-02 9.17450413e-02 -1.87196746e-01\\n3.37431490e-01 -4.16387230e-01 -2.63860971e-01 6.32998720e-02\\n-3.74885648e-02 5.00317335e-01 -4.79320027e-02 -3.58302653e-01\\n-1.30018353e-01 4.61492151e-01 -9.25939232e-02 -2.08459377e-01\\n-1.70828104e-01 9.59294587e-02 -1.22736216e-01 1.70590743e-01\\n6.15473986e-02 -2.28921279e-01 -3.15639704e-01 -1.64479196e-01\\n-5.71926609e-02 2.15553910e-01 2.34726235e-01 3.35783288e-02\\n3.87717411e-03 -3.30380470e-01 5.35378419e-02 1.25451773e-01\\n1.44117251e-01 3.53448987e-01 2.47955415e-02 -1.14867717e-01\\n-5.18599898e-02 3.18735838e-01 -9.90720019e-02 2.05109492e-01\\n-2.30546817e-01 -1.61895305e-02 -4.45723206e-01 -2.24193379e-01\\n-2.20119506e-01 -3.16136777e-01 6.43201079e-03 1.50462195e-01\\n1.04363553e-01 1.52094662e-02 -4.16187197e-02 -4.36461240e-01\\n3.42555195e-01 -5.38821109e-02 2.80280024e-01 2.12995023e-01\\n-4.33207303e-02 4.08671558e-01 2.05697827e-02 -6.98305443e-02\\n-2.02849299e-01 1.56739622e-01 -1.68497950e-01 -1.07083447e-01\\n1.26849553e-02 -4.49319005e-01 -7.01745003e-02 3.53944868e-01\\n3.42339464e-02 -3.27452809e-01 -1.46854416e-01 1.84733301e-01\\n-3.22363935e-02 -2.91881710e-01 -1.51817352e-01 3.82919461e-02\\n3.42724174e-01 -5.87161630e-03 3.45243305e-01 -3.62602532e-01\\n-1.06267586e-01 2.17560166e-03 -1.12053879e-01 4.87787575e-01\\n4.24789786e-02 5.96854463e-02 -8.26710388e-02 -2.93139279e-01\\n2.55333096e-01 -6.91333115e-02 -9.90862846e-02 3.49178016e-02\\n1.09669901e-01 -1.88418955e-01 -5.21453142e-01 1.75913132e-03\\n2.82762386e-02 -8.56460184e-02 2.51963418e-02 9.83123928e-02\\n1.49539769e-01 9.49136764e-02 -5.79984605e-01 -3.42897534e-01\\n-3.39955539e-01 -9.51370969e-02 6.23938888e-02 -3.32857847e-01\\n-8.20384324e-02 -4.07100394e-02 -5.84246874e-01 2.33391866e-01\\n-1.75940439e-01 -8.40682983e-02 1.27914891e-01 6.68329187e-03\\n-3.36378634e-01 -2.69900472e-03 1.72126234e-01 2.11603746e-01\\n-3.03627610e-01 -2.57374197e-01 1.31622598e-01 -1.01720822e+00\\n2.00547591e-01 6.86768163e-03 -7.49853104e-02 -1.92255732e-02\\n-6.75750747e-02 -5.61195612e-01 5.74049652e-02 -4.01492804e-01\\n-5.64935729e-02 -1.00407088e-02 -1.97284684e-01 -4.66606468e-01\\n8.69494230e-02 -8.38179141e-02 -3.06868583e-01 4.34492677e-01\\n-3.23680937e-01 3.74145329e-01 -4.98623922e-02 7.96938688e-02\\n-3.26891877e-02 -3.11599135e-01 1.26220301e-01 -4.36862916e-01\\n-4.38858747e-01 -8.41317549e-02 -3.09086442e-01 -1.08355090e-01\\n1.16099209e-01 -2.39239082e-01 -9.41130891e-02 4.01942730e-02\\n3.65165949e-01 2.39352472e-02 -1.78526416e-01 -2.86411196e-01\\n5.09746075e-02 -4.74315137e-01 1.22491986e-01 -1.02762833e-01\\n-1.20330654e-01 -3.34377028e-02 7.17092603e-02 7.60539025e-02\\n3.73299271e-02 -4.19745982e-01 3.47955912e-01 -2.89118141e-01\\n-2.87288696e-01 -1.71999671e-02 1.09056465e-01 1.44922482e-02\\n1.73615053e-01 -5.45116782e-01 -1.68892015e-02 3.45015317e-01\\n3.63763534e-02 1.24727800e-01 2.33098254e-01 -1.23717906e-02\\n-5.54527156e-02 3.32082033e-01 -2.59306550e-01 3.03124581e-02\\n7.23120093e-01 3.08251008e-02 4.15100381e-02 2.57384181e-01\\n2.45725945e-01 3.40794504e-01 4.25681174e-01 3.80517505e-02\\n-1.00565404e-01 2.38715172e-01 -3.81433815e-02 -6.82809651e-01\\n8.19775239e-02 4.83994223e-02 -1.99874684e-01 -4.64724243e-01\\n6.90540373e-01 4.51806784e-01 -3.37007135e-01 -2.57907242e-01\\n-7.44212493e-02 -1.16033733e-01 5.76912872e-02 -1.37315720e-01\\n1.42517880e-01 -1.62721321e-01 5.01554251e-01 -3.76961268e-02\\n2.04613194e-01 5.21006644e-01 -2.01255247e-01 -4.09145981e-01\\n-5.56958765e-02 1.45002350e-01 1.00933045e-01 5.46358883e-01\\n-2.09273189e-01 3.04940075e-01 2.73396913e-03 1.46520227e-01\\n-1.44312242e-02 1.79971069e-01 3.59536335e-02 4.67083082e-02\\n1.31515726e-01 -4.02162969e-02 3.46305132e-01 3.83515894e-01\\n3.19380850e-01 4.55225527e-01 3.22439224e-01 3.29549164e-02\\n5.28798938e-01 5.44467866e-01 4.24797446e-01 1.92358255e-01\\n-1.03390820e-01 4.17311341e-02 6.57252669e-02 -1.51358889e-02\\n2.86080688e-01 2.95822740e-01 2.14015823e-02 8.77493799e-01\\n5.03477752e-01 2.13869169e-01 6.34135604e-01 -6.44551873e-01\\n-3.06712121e-01 -9.60781127e-02 3.37035000e-01 -2.63259917e-01\\n-6.30480647e-02 1.02037191e-01 -1.37230366e-01 2.73399770e-01\\n-3.77271861e-01 -1.56726763e-01 -3.40395272e-02 1.51002750e-01\\n7.52778128e-02 -4.60717231e-02 -3.45592111e-01 2.45063044e-02\\n-1.42694175e-01 -1.94053799e-01 -6.03991389e-01 -7.24309087e-02\\n-2.89841473e-01 -2.23297849e-01 -7.52496868e-02 -1.87227726e-01\\n-1.27276093e-01 -3.20762247e-01 -1.43152714e-01 -6.13771612e-03\\n2.46454671e-01 -1.38288751e-01 -3.07585243e-02 -2.84276694e-01\\n2.99108595e-01 1.83433607e-01 4.68343616e-01 -1.13699242e-01\\n1.53801590e-01 -2.25997627e-01 -2.95881897e-01 1.05147555e-01\\n1.57206491e-01 8.77672136e-02 3.04993987e-02 3.56749564e-01\\n-3.33115608e-01 -7.28528202e-02 2.21941471e-01 3.74152452e-01\\n-4.89055097e-01 1.68205034e-02 -2.58056726e-03 2.86537230e-01\\n9.98579636e-02 1.45134419e-01 -2.68062890e-01 3.77636738e-02\\n-2.18111828e-01 -4.93041754e-01 3.00931811e-01 -3.82694229e-02\\n-8.88267979e-02 1.86702445e-01 2.31924757e-01 2.04290092e-01\\n-2.40811303e-01 -5.96433766e-02 -6.66469112e-02 1.98056191e-01\\n1.53466508e-01 3.27050567e-01 -2.28249490e-01 -2.55908400e-01\\n-2.18592197e-01 1.50415406e-01 -3.20769757e-01 1.13673970e-01\\n-1.28965855e-01 2.35460579e-01 1.00536861e-01 8.53970349e-02\\n2.83914268e-01 3.75412740e-02 -1.57884791e-01 -1.76064670e-01\\n-2.19078660e-01 -2.44343072e-01 3.22884656e-02 -1.08290367e-01\\n2.06559792e-01 -3.71505409e-01 -6.91285059e-02 -3.66223454e-02\\n-2.40121603e-01 -3.35044056e-01 -1.07151186e-02 -4.27005515e-02]]',\n", + " 'job_description': 'As a pioneer in Swiss online wealth management we are changing the way people invest their money. Our product is transparent and easy to use, while also suited for the demanding investor, who is looking for individual solutions and full control. Investing with True Wealth saves your time and your money. To help us to further develop our digital wealth management solution and bring it to the next level, we are looking for a Software Engineer. Requirements Your profile: You have a strong foundation as a Software Engineer (engineering degree), with an inclination towards functional concepts, types and good software design You are a team player who writes clean and elegant code and shares our passion of building a great platform. You possess strong skills in at least one typed programming language. Experience with Java and TypeScript is an advantage but not necessarily required. You are interested and might be experienced in web application development, from browsers down to the database. You might have business domain knowledge from finance, trading, or portfolio management You are fluent in English and are based in or around Zurich (we offer help with relocation). German skills are an advantage but not required. You need to hold or be eligible for a work permit in Switzerland (e.g. via Swiss or EU/EFTA citizenship) Benefits We offer: Responsibility, ownership and influence on the further development of our best-in-class roboadvice solution. Flexibility, exposure and opportunities to work across the entire stack, depending on preferences and skills. Backend stack: Java 12, Java EE (CDI, JAX-RS, JMS), jOOQ, Wildfly, Lombok, Gradle, Docker, PostgreSQL. Front-end stack: TypeScript, React, Redux. Competitive salary package, solidly financed growth company. Continuous integration, single command deployments. Office in Zürich (near station Zürich Binz SZU, 2 stops from HB). In your application, please include your full CV as well as references and possibly public samples to previous work, e.g. on GitHub. We do not work with recruitment agencies.',\n", + " 'soft_skills': '[\"Typing\", \"Writing\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"KM Programming Language\", \"Investment Control\", \"Continuous Integration\", \"Wealth Management\", \"TypeScript\", \"Java EE Application\", \"PostgreSQL\", \"WildFly (JBoss AS)\", \"Gradle\", \"E (Programming Language)\", \"Levelling\", \"Lombok\", \"Software Engineering\", \"Java Message Service (JMS)\", \"Investments\", \"Portfolio Management\", \"Github\", \"Docker (Software)\", \"React Redux\", \"Finance\", \"Experimental Software Engineering\", \"Digitization\", \"Software Design\", \"Front End (Software Engineering)\", \"Software Requirements Specification\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Trade Finance\", \"Web Application Development\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Marshallese']\"},\n", + " {'company_id': '31',\n", + " 'job_title': 'report specialist (data model - data.one / controlling)',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.25119507e-01 8.17296654e-02 4.75452662e-01 -4.57868166e-02\\n4.19818580e-01 -1.04036637e-01 1.34177998e-01 2.97945648e-01\\n-1.21588849e-01 -3.26886237e-01 4.67494056e-02 -3.42348874e-01\\n5.22543304e-02 1.05158746e-01 -5.45630790e-02 4.21756685e-01\\n2.05081731e-01 1.78786427e-01 -1.47596404e-01 2.74296910e-01\\n2.82686442e-01 -2.65080005e-01 2.36876994e-01 4.95839745e-01\\n4.31182474e-01 2.98775341e-02 -2.05575721e-03 3.25127281e-02\\n-3.16102564e-01 -4.02572900e-01 5.12588620e-01 9.98925641e-02\\n-1.26051903e-01 -1.54986337e-01 1.66265279e-01 8.81956704e-03\\n-1.60408869e-01 -4.30136696e-02 -3.58815701e-03 1.38989374e-01\\n-4.83927667e-01 -1.45400450e-01 -6.59676343e-02 -1.45794556e-01\\n-2.63517767e-01 -4.15705889e-01 7.43594691e-02 -1.41728129e-02\\n7.72370622e-02 2.07193289e-02 -5.07877469e-01 3.57519329e-01\\n-3.25596541e-01 -1.26780763e-01 2.07479626e-01 6.20237470e-01\\n-2.61015207e-01 -5.87778151e-01 -4.78216708e-01 -1.73907265e-01\\n2.15861350e-01 -2.90848106e-01 5.14248013e-02 -2.26675153e-01\\n3.67293298e-01 2.17011906e-02 6.91262539e-03 4.98481512e-01\\n-6.29028022e-01 -3.68082710e-02 -2.66227573e-01 -5.21527603e-02\\n-1.94457784e-01 -1.34328604e-01 -1.72393799e-01 -7.59694204e-02\\n-1.92938969e-01 4.48388904e-01 9.09083709e-02 7.86131397e-02\\n-7.08912686e-02 2.18386009e-01 -3.40767711e-01 1.94131777e-01\\n1.46489173e-01 2.05094919e-01 1.56100363e-01 1.71552643e-01\\n-2.12246895e-01 6.12757206e-01 3.40252429e-01 -2.96824306e-01\\n5.95959201e-02 -1.69138163e-02 4.10388082e-01 -1.78385973e-01\\n4.37658951e-02 -4.01632860e-03 -1.78431273e-01 2.68595517e-01\\n2.19346523e-01 -2.45952487e-01 1.41088530e-01 -1.94230322e-02\\n-6.33862093e-02 -8.14903378e-02 -1.98960360e-02 3.64594012e-01\\n-1.27840176e-01 4.87882197e-01 1.11782655e-01 -1.21525869e-01\\n2.04876848e-02 -5.97794056e-01 -2.18537420e-01 3.48105542e-02\\n1.77411720e-01 8.21160600e-02 5.85173704e-02 2.87171632e-01\\n1.59698173e-01 5.01017347e-02 1.57881096e-01 6.98797345e-01\\n-2.84742145e-03 1.49418086e-01 -8.05258602e-02 3.13565731e-01\\n6.70404062e-02 -2.49112681e-01 1.85600534e-01 2.51727283e-01\\n2.60673277e-02 -1.98142573e-01 -1.59571037e-01 1.90080673e-01\\n-8.38894024e-02 -1.91082716e-01 -1.62855297e-01 1.86677650e-01\\n-1.26657009e-01 -3.18315029e-01 5.41479051e-01 6.16897009e-02\\n1.43709779e-01 1.00808600e-02 -1.30385816e-01 -1.82990074e-01\\n-3.31558622e-02 2.76975363e-01 8.41366649e-02 -3.49429029e-04\\n1.83873344e-02 -1.79673195e-01 -2.26587176e-01 -4.80349250e-02\\n-1.86663225e-01 1.37206987e-01 -2.22942188e-01 -1.12273946e-01\\n5.03137946e-01 4.75715362e-02 -1.50686622e-01 2.93811053e-01\\n5.94460778e-02 7.08826929e-02 -1.00459561e-01 3.57521981e-01\\n-4.06455025e-02 1.46811441e-01 -1.73040122e-01 -2.19505951e-01\\n5.97164512e-01 7.09445626e-02 1.52518898e-01 9.08023044e-02\\n2.67396271e-01 -1.04380613e-02 4.25968543e-02 1.03357755e-01\\n-6.92473114e-01 4.63571221e-01 -1.06400385e-01 -2.49347836e-01\\n1.04804508e-01 -9.16299000e-02 2.39334494e-01 -3.95060867e-01\\n6.62657842e-02 -1.43846786e-02 -3.34883720e-01 -2.65495896e-01\\n6.18168525e-02 -3.99862789e-02 3.56621057e-01 -4.17067945e-01\\n-4.11277898e-02 1.58342525e-01 -4.39974815e-01 5.29200025e-02\\n2.88446486e-01 1.68907374e-01 2.81745493e-01 1.55254349e-01\\n-1.37071714e-01 -3.55300933e-01 3.80256288e-02 -3.14727873e-01\\n1.23672010e-02 2.47758046e-01 -3.04155380e-01 3.07503611e-01\\n6.06116615e-02 6.15633987e-02 -1.96092620e-01 6.20562993e-02\\n4.11489196e-02 -8.37136582e-02 2.69458115e-01 8.78892187e-03\\n2.73510307e-01 1.18763395e-01 -3.42997104e-01 3.89796764e-01\\n-1.31342009e-01 4.87222254e-01 4.44708727e-02 -6.26985967e-01\\n3.68440121e-01 2.31989130e-01 -2.58964766e-02 -3.12917739e-01\\n6.43969953e-01 -2.13615060e-01 3.19836438e-02 1.26654789e-01\\n-3.82118165e-01 -2.63270527e-01 5.87361716e-02 -3.52757692e-01\\n-2.29015440e-01 5.35241187e-01 1.55194759e-01 9.94040370e-02\\n6.71650842e-02 -8.22241902e-02 -7.81099573e-02 1.09575130e-01\\n5.86935394e-02 -1.88650578e-01 -5.20494878e-01 -3.40065248e-02\\n-5.34411892e-02 -3.74672353e-01 -8.81594047e-02 -3.46321762e-01\\n-2.45186463e-01 -2.39187822e-01 -3.60243320e-02 6.72907531e-02\\n1.25554442e-01 1.98840648e-01 1.01027615e-01 1.04281224e-01\\n-3.13410342e-01 -5.72093189e-01 -1.99471172e-02 1.38688803e-01\\n2.92901248e-01 9.08770189e-02 1.33507594e-01 -1.59680054e-01\\n-2.35787239e-02 6.17864311e-01 -2.21300140e-01 -1.57352388e-02\\n1.85899243e-01 2.18938217e-01 1.71602562e-01 -8.88934731e-02\\n1.33885711e-01 1.53315887e-01 1.10288141e-02 1.42469972e-01\\n3.12612741e-03 -1.40243858e-01 2.99757063e-01 -5.85593283e-02\\n-2.06748202e-01 -3.88803929e-01 -3.45895946e-01 1.14543490e-01\\n-4.85015631e-01 -1.75469771e-01 5.55829167e-01 6.96739033e-02\\n5.70364203e-03 3.11277926e-01 2.25486472e-01 -6.30392879e-02\\n-1.82556078e-01 -1.45755529e-01 2.85941809e-01 1.80132180e-01\\n-7.17617720e-02 9.98124629e-02 -1.65643737e-01 -5.46387136e-01\\n-3.82287645e+00 -1.47379398e-01 -5.52464509e-03 -4.06610072e-01\\n3.33110511e-01 -1.28473073e-01 2.90154070e-01 -5.36772273e-02\\n-1.78628951e-01 -2.80204657e-02 -4.98984344e-02 -1.24896035e-01\\n2.22341463e-01 1.47422627e-01 1.75097868e-01 4.05243456e-01\\n1.52597234e-01 -3.84450704e-01 -2.06567943e-02 3.66045177e-01\\n-2.29017690e-01 -5.98092198e-01 2.52634138e-01 -4.19550240e-02\\n2.85055161e-01 3.02909911e-01 -4.59258080e-01 4.42867614e-02\\n-2.99988717e-01 -1.93942472e-01 1.18897878e-01 -3.36513340e-01\\n4.40913774e-02 1.34687617e-01 1.70701057e-01 -1.18515000e-01\\n1.24307908e-01 -2.30261579e-01 -1.34593830e-01 -4.62908715e-01\\n-4.82969023e-02 -5.39837718e-01 -3.13606597e-02 1.32062659e-03\\n6.74695551e-01 -2.44371369e-01 7.36206546e-02 -6.85774088e-02\\n2.03874350e-01 2.95811713e-01 4.50821854e-02 -1.72503427e-01\\n-1.59017399e-01 -2.02915519e-01 -8.15362334e-02 -3.09169330e-02\\n3.74997616e-01 6.23771727e-01 -3.62632483e-01 -1.53531700e-01\\n6.17780760e-02 -3.64223808e-01 -4.63305712e-01 -3.10357571e-01\\n-1.03789434e-01 -1.84965134e-01 -6.37293279e-01 -4.62479681e-01\\n-1.30009577e-01 -8.76208544e-02 -7.29476288e-02 3.53935897e-01\\n-3.77743185e-01 -4.71830875e-01 -1.40914470e-01 -3.48875672e-01\\n2.98031807e-01 7.91057572e-02 1.24557711e-01 -1.73568204e-01\\n-2.41144910e-01 -3.47097397e-01 9.00551081e-02 4.02975222e-03\\n1.21871696e-03 -4.85602207e-02 2.41844654e-01 -2.44461820e-01\\n-4.85590786e-01 -4.25055802e-01 2.45598450e-01 -7.64952749e-02\\n3.05879653e-01 3.30665819e-02 7.80329034e-02 -1.17368817e-01\\n3.69979411e-01 -3.33373070e-01 1.66100502e-01 -2.81108230e-01\\n1.18521996e-01 7.09378570e-02 4.89725292e-01 -3.57012093e-01\\n8.19294602e-02 -1.84666943e-02 -3.66131246e-01 6.02259184e-04\\n3.04387480e-01 -2.06367612e-01 1.87571570e-01 -3.38744879e-01\\n3.69909972e-01 -2.84713387e-01 -2.72264004e-01 6.66050315e-02\\n3.55185159e-02 5.11834323e-01 9.82084349e-02 -3.08612347e-01\\n-1.06595948e-01 4.05138314e-01 -2.08627105e-01 -1.13661133e-01\\n-3.52482080e-01 -2.96414457e-02 -2.65709519e-01 1.85057431e-01\\n8.03125743e-03 -5.91334980e-03 -3.45769227e-01 -1.05608799e-01\\n-2.19269276e-01 2.98034608e-01 3.39207977e-01 7.55533427e-02\\n6.02764124e-03 -1.94743514e-01 7.07101449e-02 1.45102218e-01\\n5.51741533e-02 2.91190118e-01 -1.28281384e-03 2.06884462e-02\\n1.11952610e-03 2.59599507e-01 -1.63524240e-01 1.49572372e-01\\n-2.03070149e-01 8.34550187e-02 -3.27810466e-01 -4.18912143e-01\\n-1.84639260e-01 -1.70302168e-01 -9.03251246e-02 3.18992525e-01\\n2.56783664e-01 -1.02500498e-01 -2.50506811e-02 -2.98250407e-01\\n1.29516348e-01 -5.90546094e-02 2.05861643e-01 2.20728755e-01\\n-2.20624264e-02 4.38368976e-01 1.71892881e-01 -1.59902975e-01\\n-1.13861971e-01 -6.30355477e-02 -3.32198411e-01 -2.34089196e-02\\n-5.39220776e-03 -3.29054624e-01 -3.58321667e-02 4.37983662e-01\\n1.51632503e-01 -2.28649333e-01 -1.11852750e-01 4.35770005e-01\\n-1.64813668e-01 -3.11346322e-01 -2.04003066e-01 1.08577892e-01\\n2.78874367e-01 1.44889221e-01 3.38827431e-01 -4.75011349e-01\\n1.15252621e-01 -5.87808974e-02 -1.69820085e-01 4.01836544e-01\\n-1.11007020e-01 7.24424198e-02 -1.23228021e-01 -1.55766681e-01\\n3.68384391e-01 -8.84340182e-02 4.30168770e-02 3.39945167e-01\\n8.08892399e-02 1.35536501e-02 -3.85404348e-01 3.43506150e-02\\n-3.17491032e-02 -3.20899263e-02 -4.16854434e-02 1.44856319e-01\\n-8.71672183e-02 -1.16824070e-02 -5.25742471e-01 -1.97916061e-01\\n-3.97368878e-01 1.55158073e-01 -6.35814574e-03 -5.14515579e-01\\n-9.42626372e-02 -9.61007550e-02 -4.21151102e-01 2.99530506e-01\\n7.82616138e-02 1.38130918e-01 2.14673713e-01 -9.45240632e-02\\n-1.25438109e-01 1.88868850e-01 1.95379540e-01 4.81183119e-02\\n-2.27698371e-01 -5.04473858e-02 -1.23740070e-01 -8.74879658e-01\\n1.04950957e-01 1.10371104e-02 -1.62471682e-01 5.94913475e-02\\n-7.59907812e-02 -5.72740853e-01 1.41591415e-01 -2.42249727e-01\\n-2.14781404e-01 -9.26003382e-02 -6.60485253e-02 -5.09054244e-01\\n-2.51859389e-02 7.26720542e-02 -1.40108019e-01 2.79927492e-01\\n-2.28024587e-01 4.33173567e-01 -1.00698404e-01 1.45759001e-01\\n-7.35339001e-02 -2.70166665e-01 1.94200873e-01 -4.51548964e-01\\n-2.66389996e-01 -3.86697315e-02 -3.03812176e-01 1.02478944e-01\\n-1.46498056e-02 -2.96976537e-01 -1.82021724e-03 1.95539996e-01\\n3.65542710e-01 3.08462270e-02 -3.74710299e-02 1.24880662e-02\\n-3.72406207e-02 -4.45675135e-01 -4.01471481e-02 -6.23727441e-02\\n-2.41013407e-03 -2.05242649e-01 -3.87418009e-02 -1.00910261e-01\\n1.67073354e-01 -4.91580665e-01 4.13805425e-01 -3.55185181e-01\\n-3.37655962e-01 -1.56197166e-02 5.52233458e-02 4.22697663e-02\\n3.24508756e-01 -3.06072176e-01 -2.70886302e-01 3.05551678e-01\\n-2.01143771e-02 1.84457898e-02 3.94261211e-01 -4.17163319e-05\\n-3.11415911e-01 1.96547180e-01 -3.32900584e-01 1.10647902e-01\\n6.10299289e-01 1.05308540e-01 1.17889389e-01 2.29184940e-01\\n4.19340059e-02 1.29571155e-01 4.41435754e-01 -2.81282756e-02\\n-2.43679360e-01 3.84647548e-01 2.22505331e-02 -5.87102830e-01\\n-4.24193181e-02 4.46640924e-02 -3.28150928e-01 -2.85377771e-01\\n5.91233730e-01 3.51738632e-01 -3.54915828e-01 -3.58076364e-01\\n-2.30241805e-01 -2.21236393e-01 -2.30014190e-01 -2.28345133e-02\\n1.76668763e-01 -8.11873600e-02 5.48510849e-01 1.94233600e-02\\n3.49019207e-02 4.11412656e-01 -1.52474746e-01 -1.51964441e-01\\n1.77911799e-02 1.60060525e-01 6.79340884e-02 4.00483459e-01\\n-1.68418497e-01 3.98120224e-01 -4.56312634e-02 1.47726566e-01\\n-1.04366198e-01 -6.18232004e-02 -1.43377949e-02 1.95789620e-01\\n-7.44087771e-02 4.12455559e-01 3.48134905e-01 3.30090046e-01\\n3.96527231e-01 3.46858412e-01 1.62904590e-01 3.75843942e-02\\n7.23760605e-01 4.13027585e-01 3.51242214e-01 2.84883618e-01\\n-8.75889435e-02 -3.79842520e-02 -2.28159428e-02 2.53702670e-01\\n2.06511170e-01 2.35419288e-01 -1.75568581e-01 6.07075632e-01\\n2.62670934e-01 1.91291049e-01 4.61347878e-01 -4.17233229e-01\\n-2.87611693e-01 -2.50315480e-02 3.81020546e-01 -4.00964826e-01\\n-1.79247707e-02 5.21606803e-02 -5.13036512e-02 8.91088620e-02\\n-5.70092976e-01 -1.46194264e-01 -7.09187984e-02 1.15818746e-01\\n1.46236643e-01 -5.60551286e-02 -6.85518458e-02 -6.82648644e-02\\n-1.46356791e-01 -1.52378961e-01 -4.00799096e-01 -1.99916154e-01\\n-2.51809299e-01 -2.55450964e-01 2.04109997e-02 -1.69776440e-01\\n3.82385962e-02 -2.73497343e-01 -1.66449279e-01 -1.88320782e-02\\n2.57554561e-01 -1.62482247e-01 -9.83320251e-02 4.24150471e-03\\n3.80413532e-01 1.34504646e-01 5.98731995e-01 -4.68926784e-03\\n9.41349484e-04 -3.25036198e-01 -3.63122895e-02 -5.22180088e-02\\n4.25876886e-01 4.25714776e-02 7.29194731e-02 4.63141024e-01\\n-4.42859948e-01 -2.89858669e-01 9.79142189e-02 2.54570395e-01\\n-5.70715725e-01 3.81177338e-03 1.92422912e-01 1.49660155e-01\\n1.94715150e-02 1.41538292e-01 -2.17711374e-01 -9.26676169e-02\\n-2.55530834e-01 -4.76769418e-01 1.06684215e-01 1.89488798e-01\\n-2.55955189e-01 -4.34510969e-02 3.59715641e-01 1.52797922e-01\\n-9.49709937e-02 -5.90479635e-02 -4.29890640e-02 2.03117743e-01\\n1.47516921e-01 7.53174499e-02 -1.97582945e-01 -2.55628794e-01\\n-3.76073420e-01 2.41380468e-01 -2.25037098e-01 2.41238475e-01\\n6.81691319e-02 -2.55144015e-03 1.87051341e-01 1.22922055e-01\\n3.66383404e-01 -8.64518881e-02 -8.92237201e-02 -3.07821572e-01\\n-2.73998827e-01 -2.90129393e-01 3.28818932e-02 -1.78229690e-01\\n1.05165482e-01 -4.45940912e-01 -1.18563101e-01 -9.89066511e-02\\n-2.03019276e-01 -3.56948078e-01 5.07307388e-02 -1.26902331e-02]]',\n", + " 'job_description': 'LocationBaselContract typetemporary contract For our pharma client in Basel we are looking for a Report Specialist (Data Model/Cost Controlling) - 100% Tasks & Responsibilities: Ensure reporting implementation of Regulatory Affairs and Medical Affairs shift in data.one by: Check Actual deliveries of all countries against target status Communicate with country Controllers to ensure implementation of target status Document and track implementation status in each country Support countries with technical questions Must Haves: Strong knowledge of data model - data.one Follow-up with Controllers having different cultural background (i.e. worldwide) Proficiency with Excel and the use of databases Excellent communication skills Good organizational skills Start date : ASAP Duration: 3 months with exention opportunities Location: Basel Are you interested to work in this challenging position? Florence Wespiser, MSP Consultant, is looking forward to receiving your complete profile. Please send an e-mail to florence.wespiser@coopers.ch By sending us your CV per E-Mail you are giving us your consent to the processing of your personal data according to our Data Privacy Policy.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Communications\", \"Organizational Skills\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Health Data Specialists\", \"Cost Control\", \"TARGET 3001!\", \"Medical Affairs\", \"Logical Data Models\", \"Track (Rail Transport)\", \"Personalization\", \"E (Programming Language)\", \"Data Modeling\", \"Data Privacy Laws\", \"Receivables\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Avestan', 'Luba-Katanga', 'Church Slavonic', 'Southern Sotho']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'full - stack software engineer',\n", + " 'location': 'Full-Reuenthal',\n", + " 'industry': 'Advertising & Marketing',\n", + " 'website': 'www.vitamintalent.com',\n", + " 'jobdescription_embedded': '[[-1.48626611e-01 3.29904169e-01 3.78747433e-01 5.45453653e-02\\n3.81060809e-01 -1.89851880e-01 -1.00156758e-02 1.99745312e-01\\n1.59831196e-01 -4.43897963e-01 1.72605649e-01 -2.07153395e-01\\n-2.66032964e-01 1.55829638e-01 6.65780976e-02 4.67670619e-01\\n1.43066093e-01 9.30037424e-02 -1.39283359e-01 4.25615728e-01\\n2.09262166e-02 -2.24219665e-01 -4.94441278e-02 6.94746494e-01\\n2.47140050e-01 -4.29946557e-02 -1.17490403e-01 -2.37425148e-01\\n-3.45549643e-01 -1.55125454e-01 3.79287362e-01 1.95640802e-01\\n-1.54355496e-01 -5.81619978e-01 8.71039182e-02 1.90814108e-01\\n-1.97319567e-01 2.30981052e-01 -1.68585658e-01 2.21285939e-01\\n-7.32533753e-01 -4.16892260e-01 1.90006077e-01 3.91797572e-02\\n-2.67518520e-01 -1.70228347e-01 1.98081568e-01 -6.50687367e-02\\n8.56244192e-02 9.73904580e-02 -4.92742240e-01 2.85109580e-01\\n-2.75793761e-01 -1.92336842e-01 3.42975944e-01 4.96924996e-01\\n1.42158911e-01 -6.35273874e-01 -5.02982378e-01 -3.80295902e-01\\n-5.62393153e-03 4.93196538e-03 -7.44688883e-02 -3.80660236e-01\\n2.10741654e-01 -6.03607111e-02 2.28586271e-02 4.11245346e-01\\n-8.06235313e-01 -6.04325486e-03 -1.93210885e-01 -4.26053032e-02\\n-3.71804297e-01 -7.35312924e-02 -3.02141368e-01 5.06652612e-03\\n-1.61430478e-01 4.02611375e-01 1.24630675e-01 8.13253894e-02\\n-2.00721636e-01 2.27699652e-01 -1.26938269e-01 3.62293422e-01\\n3.18932205e-01 1.77870587e-01 3.46676975e-01 4.13533479e-01\\n-3.91224474e-01 3.82533878e-01 2.19156325e-01 -3.30681413e-01\\n2.98014969e-01 1.69693485e-01 4.26519006e-01 1.89381003e-01\\n1.31081700e-01 2.29221106e-01 -1.67813823e-01 2.82571912e-01\\n2.24001333e-01 -3.09983611e-01 1.28292918e-01 -6.68185651e-02\\n2.70895083e-02 -3.20998137e-03 8.59411806e-02 1.75094202e-01\\n-1.04502752e-01 3.95032674e-01 2.29829669e-01 -1.54161572e-01\\n-2.44541958e-01 -4.02180642e-01 -1.89511999e-01 3.37219015e-02\\n-7.23931473e-03 1.25495702e-01 2.62505084e-01 -4.52721156e-02\\n2.08875388e-01 4.17404398e-02 1.37788251e-01 8.59044015e-01\\n-3.49128544e-02 1.21275648e-01 -1.01532646e-01 3.85812879e-01\\n2.34628722e-01 -1.54129639e-01 2.21234664e-01 1.78038478e-01\\n7.56094009e-02 -1.95888340e-01 -2.31325790e-01 3.52289170e-01\\n-3.44484001e-02 -1.71012446e-01 -3.10874492e-01 2.00042501e-01\\n-1.25018686e-01 -3.46673399e-01 5.82716823e-01 1.20982386e-01\\n2.34761551e-01 8.34380835e-02 8.22836608e-02 -9.49115604e-02\\n-2.09219858e-01 2.29484424e-01 5.87121723e-03 2.22777590e-01\\n-3.58200043e-01 -2.20430091e-01 -1.13952518e-01 1.74657926e-01\\n-2.96411723e-01 1.99729234e-01 -2.18748361e-01 -1.02511771e-01\\n3.71903241e-01 1.63672149e-01 -2.41730943e-01 1.69989169e-01\\n1.50929647e-03 -9.23325792e-02 -1.01851262e-01 3.47917706e-01\\n-8.87933746e-02 2.12248579e-01 3.99556682e-02 1.06640123e-02\\n5.75471342e-01 3.01592022e-01 3.09675425e-01 -4.22265381e-02\\n3.59223902e-01 -6.92101046e-02 1.68179274e-01 1.50099307e-01\\n-6.43774807e-01 2.45583400e-01 -3.36286537e-02 -5.14091067e-02\\n1.59008637e-01 -5.79655217e-03 3.04924667e-01 -3.83745462e-01\\n-1.76921397e-01 -3.19198877e-01 -4.61803943e-01 -2.62712270e-01\\n-3.57261121e-01 -7.91452900e-02 4.64085013e-01 -4.34494674e-01\\n-1.40191004e-01 2.16840446e-01 -5.99335670e-01 -1.31589383e-01\\n1.70896873e-01 2.23774910e-01 2.87133679e-02 4.84254956e-03\\n-2.52545327e-01 -7.12819934e-01 3.85300033e-02 -5.68222702e-01\\n-5.58379829e-01 1.09108001e-01 -2.86456376e-01 1.20596997e-01\\n-4.44724001e-02 9.91085768e-02 -2.11864024e-01 1.38328195e-01\\n-3.11441720e-01 -5.49466610e-02 1.02784678e-01 8.11558068e-02\\n2.01039776e-01 1.25546493e-02 -3.19069922e-01 3.80481750e-01\\n-3.21780175e-01 6.64007545e-01 1.76328033e-01 -9.88491178e-01\\n6.14844561e-01 3.22752893e-01 -6.60278350e-02 -2.37227052e-01\\n2.33928338e-01 -5.14306486e-01 1.90940895e-03 8.93556103e-02\\n-2.18169346e-01 -3.40865254e-01 2.49958143e-01 -1.18081011e-01\\n-2.47283518e-01 5.53085148e-01 1.54785514e-01 2.22649258e-02\\n2.61926204e-01 -3.22097212e-01 -6.26598746e-02 7.58839175e-02\\n-3.12353000e-02 -1.42020449e-01 -4.68731314e-01 2.53779143e-02\\n1.08733354e-02 -4.81786042e-01 -1.79713108e-02 -2.16118082e-01\\n-2.45722771e-01 -3.46919000e-01 -3.84914070e-01 2.91487694e-01\\n2.47462228e-01 1.19603254e-01 -2.16959547e-02 1.28544241e-01\\n-3.00617982e-02 -7.86245346e-01 7.45197088e-02 1.02278784e-01\\n5.08592069e-01 3.15748602e-01 8.71565267e-02 -1.36675492e-01\\n-5.72859682e-02 6.28081620e-01 -2.88728774e-01 -3.19908917e-01\\n-2.41946187e-02 7.21881315e-02 1.87525619e-02 -1.55742884e-01\\n1.77029818e-01 5.52943468e-01 -2.15090081e-01 1.43781891e-02\\n4.83675860e-02 -1.51657209e-01 4.38049495e-01 2.51783226e-02\\n-4.48602885e-01 -1.71070904e-01 5.54537885e-02 1.42735243e-01\\n-5.76514781e-01 -2.79578716e-01 5.69571912e-01 2.28790656e-01\\n2.40921497e-01 1.67124912e-01 9.24381539e-02 -1.59640938e-01\\n-3.09219569e-01 -2.09320262e-01 2.49477103e-01 3.34722281e-01\\n5.10001481e-02 1.27248287e-01 -1.28787622e-01 -7.81129360e-01\\n-3.23318791e+00 -2.89330572e-01 2.01006889e-01 -2.96506613e-01\\n1.60242900e-01 -5.54808900e-02 3.15915979e-02 -1.48084521e-01\\n-2.66172528e-01 8.02022219e-02 4.66471128e-02 -6.55998737e-02\\n-7.64747635e-02 2.84594744e-01 -2.47408915e-02 2.55573750e-01\\n1.42334148e-01 -1.63341254e-01 -1.16377801e-01 2.62466192e-01\\n-4.74573709e-02 -6.35597289e-01 1.16218090e-01 -8.83484539e-03\\n3.78212869e-01 2.52482057e-01 -4.43632036e-01 5.07884435e-02\\n-1.92433029e-01 -8.64810646e-02 -6.74069747e-02 -3.00070345e-01\\n-2.46476829e-01 8.39021355e-02 -1.09207416e-02 -1.21816441e-01\\n3.11624799e-02 -2.31298611e-01 -2.03712642e-01 -5.68976641e-01\\n3.94721143e-02 -5.44838548e-01 -1.67014115e-02 -1.79299012e-01\\n5.94491899e-01 -3.63790125e-01 9.94501710e-02 1.25023469e-01\\n2.29898438e-01 2.13679880e-01 -1.34556862e-02 3.56957018e-02\\n-1.50574043e-01 -2.97512621e-01 -1.65466309e-01 -2.69763559e-01\\n6.00541413e-01 4.98775363e-01 -1.27561495e-01 4.06149849e-02\\n1.03855595e-01 -3.25125515e-01 -5.02043188e-01 -2.56481946e-01\\n-1.02932014e-01 -1.89042494e-01 -6.14761770e-01 -3.62197310e-01\\n-3.13071042e-01 -5.34346737e-02 -1.39165655e-01 7.45028079e-01\\n-5.05127966e-01 -3.51737410e-01 1.39497131e-01 -6.28833532e-01\\n1.43652380e-01 -2.61002600e-01 1.60596937e-01 -2.20799968e-01\\n-2.68581808e-01 -5.74654400e-01 -6.18758518e-03 -6.40635267e-02\\n-3.73051673e-01 -9.21073109e-02 -1.18068457e-01 -7.09462389e-02\\n-1.91954762e-01 -4.18579906e-01 4.09022242e-01 1.60173923e-01\\n2.62958020e-01 8.25775638e-02 4.92130667e-01 -3.74755263e-02\\n3.33495468e-01 2.62834295e-03 -2.18017567e-02 -3.71940970e-01\\n1.03617504e-01 4.48429026e-02 6.38280809e-01 -1.75642669e-01\\n-7.71797225e-02 2.55537331e-01 -2.42851600e-01 -2.41839550e-02\\n3.47349167e-01 1.71963900e-01 -7.31030330e-02 -1.97583720e-01\\n3.39100748e-01 -3.30155909e-01 -1.64840862e-01 1.55283242e-01\\n2.58893907e-01 7.36513078e-01 6.60076663e-02 -5.06461442e-01\\n-1.62502572e-01 5.01540065e-01 -1.38132066e-01 -4.42373976e-02\\n-1.23555414e-01 5.85355908e-02 -5.91753609e-02 2.88381517e-01\\n9.46471177e-04 -1.97506681e-01 -2.33212858e-01 -1.97546691e-01\\n-5.48240021e-02 3.34242404e-01 1.96949705e-01 -5.04134446e-02\\n-3.80301774e-02 -2.67892867e-01 -1.80451661e-01 1.66821763e-01\\n9.58515927e-02 3.47254932e-01 8.93395767e-02 -2.74516344e-01\\n-1.26571178e-01 3.81460696e-01 -1.96379632e-01 1.32442415e-01\\n-2.29158804e-01 8.71235654e-02 -5.79925597e-01 -2.07024291e-01\\n-1.92927659e-01 -5.37428021e-01 5.62153645e-02 2.77599126e-01\\n2.12510556e-01 -3.45085114e-02 -1.41075002e-02 -4.85581607e-01\\n3.43981057e-01 2.92211771e-01 2.11315788e-02 1.32490858e-01\\n-3.04754153e-02 4.17129874e-01 1.40231233e-02 -2.65811056e-01\\n-1.70244470e-01 3.46941617e-03 -1.49172336e-01 -2.18372479e-01\\n2.57217467e-01 -5.32257736e-01 -6.61329255e-02 4.55373555e-01\\n1.94231898e-01 -3.47038060e-01 -2.30231896e-01 2.39979610e-01\\n8.21427703e-02 -1.07467510e-01 -2.30276838e-01 -9.43371281e-02\\n1.66388735e-01 -3.15423496e-02 2.88977087e-01 -2.83218086e-01\\n-2.54435074e-02 5.57401590e-03 -1.47128403e-01 6.48782670e-01\\n2.09380805e-01 1.26844540e-01 -2.29089990e-01 -8.60385597e-02\\n4.39667434e-01 -3.42176966e-02 -5.63297719e-02 -2.29773998e-01\\n1.74647197e-01 -2.19110847e-01 -4.54560906e-01 1.63218349e-01\\n4.34193760e-02 -2.09363177e-01 5.56172282e-02 6.32395223e-02\\n9.51070860e-02 6.27173856e-02 -3.73432517e-01 -2.57063866e-01\\n-3.32010269e-01 -1.57521546e-01 1.20474257e-01 -3.36706996e-01\\n-7.79552269e-04 -1.08391963e-01 -5.59066117e-01 2.46353522e-01\\n-2.45930091e-01 -1.33057266e-01 1.17421485e-01 1.76221564e-01\\n-4.83760238e-01 -3.87467518e-02 -1.15178443e-01 1.96772516e-01\\n-2.92748094e-01 -4.12015766e-01 -3.47101279e-02 -8.15234780e-01\\n2.16774151e-01 1.26224369e-01 -1.60707638e-01 1.48006231e-01\\n-1.62347481e-01 -6.88202798e-01 9.35831442e-02 -3.16603869e-01\\n-2.20278516e-01 1.55724645e-01 -1.95729479e-01 -3.04050893e-01\\n1.56480089e-01 -1.29649922e-01 -3.66548896e-01 4.27133799e-01\\n-4.44843322e-01 3.25807184e-01 -1.12210505e-01 3.79288085e-02\\n-2.02681217e-02 -3.03290993e-01 1.64828852e-01 -4.34869587e-01\\n-4.21980172e-01 -2.52822369e-01 -4.79579270e-01 -3.71117592e-01\\n3.65484902e-03 -2.35871881e-01 -1.19026266e-01 2.23713756e-01\\n3.05242658e-01 1.66313946e-01 -1.33599620e-02 -3.26067388e-01\\n1.41634494e-01 -4.94065702e-01 -4.32011932e-02 -2.00131178e-01\\n1.52250990e-01 -6.01819865e-02 1.41340181e-01 -5.62509671e-02\\n-2.16257032e-02 -2.98869342e-01 6.21065319e-01 -2.93642431e-01\\n-2.59936899e-01 -1.80271611e-01 -5.43044657e-02 -3.37903276e-02\\n1.61632746e-01 -4.41305757e-01 9.88670364e-02 1.23513781e-01\\n3.78829613e-02 -2.39585377e-02 1.73025995e-01 -3.88062038e-02\\n4.97556143e-02 1.42433330e-01 -2.80613959e-01 1.40744507e-01\\n6.85243726e-01 4.83250283e-02 1.66041106e-01 9.37290266e-02\\n2.31172025e-01 4.00632769e-01 6.23201907e-01 -4.19554152e-02\\n-6.14942238e-02 2.58492559e-01 1.95988230e-02 -4.38554704e-01\\n-9.73201916e-02 4.34464328e-02 -2.63911098e-01 -3.63611579e-01\\n7.00244904e-01 4.48023289e-01 -4.35562313e-01 -1.76065788e-01\\n2.59880796e-02 -2.26867840e-01 2.20247433e-01 1.93166696e-02\\n-1.30661398e-01 -2.44144127e-02 5.47105551e-01 -4.71520387e-02\\n2.86110312e-01 6.23255789e-01 -3.13177615e-01 -5.00470042e-01\\n-1.12066627e-01 2.48712152e-01 2.25823671e-02 4.67140526e-01\\n-2.12110475e-01 1.67851925e-01 -5.87688722e-02 6.08998053e-02\\n-6.24076314e-02 3.73702526e-01 2.86358327e-01 1.21063009e-01\\n3.34283143e-01 -1.25737503e-01 5.40914714e-01 6.07011914e-01\\n1.01252995e-01 5.07442474e-01 2.50009596e-01 -3.12271379e-02\\n3.51831049e-01 6.53060138e-01 3.77333134e-01 1.19605258e-01\\n2.69040577e-02 2.28973702e-01 5.19979149e-02 -7.57616013e-02\\n4.18629020e-01 5.00391126e-01 2.82945931e-01 8.80806446e-01\\n2.62120873e-01 2.42155015e-01 6.77210569e-01 -6.92085028e-01\\n-4.08069491e-01 1.00201853e-01 5.54856360e-01 -2.04598844e-01\\n-1.03562593e-01 2.02469707e-01 -2.95252860e-01 2.85794914e-01\\n-5.00399649e-01 -2.11525738e-01 -5.15527874e-02 1.17509238e-01\\n1.41696436e-02 -9.94123966e-02 -3.06578130e-01 5.44706360e-02\\n-2.28170618e-01 -1.39409497e-01 -3.16827327e-01 -1.31506749e-04\\n-2.99148530e-01 1.13659380e-02 -5.99237755e-02 -1.22813009e-01\\n-1.28690256e-02 -6.07440352e-01 -1.27352506e-01 -4.05476913e-02\\n3.96270722e-01 -1.98018074e-01 -1.29302099e-01 -1.24926917e-01\\n1.86656326e-01 2.80428499e-01 5.08472621e-01 -4.75225691e-03\\n1.01306885e-02 -1.27258211e-01 -3.36125612e-01 2.42402181e-01\\n3.24132778e-02 1.73672229e-01 5.43367490e-02 2.92488843e-01\\n-1.49225220e-01 -1.39803346e-02 -6.28873892e-03 3.41397077e-01\\n-4.11972672e-01 -1.65743709e-01 -2.79372215e-01 1.52451292e-01\\n1.17961027e-01 2.70595878e-01 -1.73452884e-01 1.43660545e-01\\n-2.82718778e-01 -4.77071673e-01 5.01433313e-01 -1.34583026e-01\\n-1.87166199e-01 1.11406498e-01 1.72023356e-01 1.69026822e-01\\n-2.60429949e-01 -5.14952019e-02 2.95050330e-02 3.05686265e-01\\n-3.26887183e-02 4.61043298e-01 -6.03842773e-02 -2.33541131e-01\\n-2.70182312e-01 1.42566010e-01 -2.78107673e-02 1.65733397e-01\\n-3.65445055e-02 3.84144306e-01 7.47508705e-02 2.45336890e-02\\n4.43862557e-01 8.47181603e-02 -2.82898813e-01 -3.35309982e-01\\n-2.52929181e-01 -1.08484060e-01 -1.37479538e-02 -1.17568932e-02\\n-3.85501422e-02 -3.55831861e-01 -8.92278850e-02 -1.20163150e-01\\n1.51912840e-02 -3.24765265e-01 -1.00554012e-01 -2.46400889e-02]]',\n", + " 'job_description': \"RESPONSIBILITIES: Build, test and ship new user facing code in modern tools like React, ES6, Redux, Jest and Webpack Create trustworthy user experiences by building products that are simple, easy to understand, performant and reliable Design highly performant and tested APIs and internal services using tools like Python, Celery, Kubernetes, MySQL, Mongo and Redis Articulate a long term vision for maintaining and scaling our systems across the board Work with other engineers, product mangers, designers and leadership to turn our vision into a concrete roadmap every quarter REQUIREMENTS: At least 2-3 years of experience in software engineering with strong computer science fundamentals You've architected, built, scaled and maintained production services You've designed, built and shipped modern, component-based user interfaces You write high quality, well tested code to meet the needs of your users You're passionate about building technology at scale and solving challenges for your customers in creative and innovative ways NICE TO HAVES: You've worked with JavaScript (ES6) and have worked with production scale React apps You're on top of modern JavaScript and frontend best practices You've worked with modern Python and large backend services using technologies such as Flask Experience working with both SQL and no-SQL databases Previous experience working with third-party APIs at scale (such as Facebook Graph API)\",\n", + " 'soft_skills': '[\"Leadership\", \"Writing\", \"Articulation\", \"Trustworthiness\", \"Reliability\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"MySQL\", \"Kubernetes\", \"Tooling\", \"Nice (Unix Utility)\", \"Hyper SQL Database (HSQLDB)\", \"Jest (JavaScript Testing Framework)\", \"Computer Science\", \"Good Agricultural Practices\", \"Scale (Map)\", \"Python (Programming Language)\", \"Maintainability\", \"Facebook Graph API\", \"Flask (Web Framework)\", \"Software Engineering\", \"React.js\", \"Product Engineering\", \"React Redux\", \"Webpack\", \"JavaScript (Programming Language)\", \"Redis\", \"User Experience\", \"Long-Term Potentiation\", \"SQL (Programming Language)\", \"User Interface\", \"Custom Backend\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'programmer/ data science support (m/f) - 80%',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.69559181e-01 2.61045039e-01 5.42519391e-01 -5.19233719e-02\\n5.73635876e-01 -1.75223008e-01 1.42872229e-01 5.47711968e-01\\n-1.49483308e-01 -3.14195931e-01 -9.71150696e-02 -2.80745804e-01\\n-5.10975625e-03 1.65138632e-01 7.38712028e-02 3.29974532e-01\\n2.57073194e-01 1.21915787e-01 -2.08528116e-01 3.22041720e-01\\n1.70315459e-01 -5.16750924e-02 2.15614945e-01 5.23017287e-01\\n4.37158197e-01 -2.26848647e-02 -5.94062358e-02 -1.19069122e-01\\n-2.85818309e-01 -2.79750973e-01 3.46649140e-01 -2.99130045e-02\\n-8.70705172e-02 -3.56072038e-01 2.88980501e-03 1.15294307e-02\\n-2.02563867e-01 -9.24908146e-02 -1.03959823e-02 1.12045050e-01\\n-3.99036109e-01 -2.78011531e-01 -6.99840998e-03 1.20948842e-02\\n-2.23054960e-01 -3.23620081e-01 4.56904024e-02 -8.19536373e-02\\n2.38736629e-01 -1.08799655e-02 -4.92464870e-01 3.84508371e-01\\n-2.17007533e-01 -3.33131164e-01 2.51089334e-01 6.32812142e-01\\n1.32363047e-02 -4.16864097e-01 -4.95691597e-01 -2.41715416e-01\\n1.56577259e-01 -1.36390507e-01 -3.19536626e-02 -2.44558737e-01\\n2.92316526e-01 1.42921150e-01 1.13413528e-01 3.46918553e-01\\n-7.33965993e-01 -4.56308499e-02 -2.03697920e-01 -1.03590615e-01\\n-2.48784602e-01 -3.24511491e-02 -2.79180169e-01 -1.09781079e-01\\n-8.13184232e-02 4.25945759e-01 7.12032244e-02 3.46262753e-03\\n-8.56100619e-02 2.86568940e-01 -1.51810765e-01 2.98519999e-01\\n2.66303480e-01 1.64818302e-01 6.28362447e-02 2.85928935e-01\\n-4.04340386e-01 3.96595925e-01 2.30243042e-01 -2.06571236e-01\\n2.05661267e-01 1.27953410e-01 4.77838993e-01 -5.30673489e-02\\n7.70454705e-02 9.09551606e-02 -2.75196165e-01 2.83835948e-01\\n1.07133336e-01 -2.86202669e-01 -4.04351540e-02 -1.13105968e-01\\n7.63121061e-03 -4.14532498e-02 8.66433606e-02 2.87331671e-01\\n-2.96275556e-01 5.19915879e-01 1.16746739e-01 -1.44542679e-01\\n-6.07493967e-02 -4.39251155e-01 -1.08514898e-01 -7.86080658e-02\\n1.03083931e-01 1.18938640e-01 1.74530551e-01 1.76006839e-01\\n3.53795618e-01 -4.17325273e-02 1.86267495e-01 8.00958335e-01\\n-8.35233368e-03 2.06699297e-01 -3.00938994e-01 2.67021954e-01\\n9.40238982e-02 -1.82002157e-01 1.24620430e-01 2.84927279e-01\\n6.12312593e-02 -4.72794473e-03 -8.46888348e-02 1.66716695e-01\\n-1.30873427e-01 -2.09762424e-01 -2.59347469e-01 1.32891521e-01\\n-7.88737088e-02 -2.57980108e-01 4.35365498e-01 6.72961995e-02\\n5.06005995e-02 2.92364527e-02 2.98433900e-02 5.16179577e-02\\n-1.50774702e-01 3.22195649e-01 3.02110277e-02 5.48875034e-02\\n-2.82821149e-01 -2.09953636e-01 -3.23273689e-01 -6.94895862e-03\\n-1.30527616e-01 4.30440344e-02 -1.40676603e-01 -9.75936130e-02\\n2.64813006e-01 1.99664645e-02 -3.12710434e-01 4.04200733e-01\\n2.19235220e-03 -2.83689145e-02 -7.41820559e-02 2.66578704e-01\\n-5.74858375e-02 2.59814113e-01 -8.23077857e-02 -1.31990656e-01\\n5.05799115e-01 -2.15233471e-02 -2.62188111e-02 -4.64327857e-02\\n3.96781087e-01 -7.18103349e-02 1.77392751e-01 1.30902916e-01\\n-6.40940428e-01 2.85164058e-01 -4.20664623e-02 -1.06860586e-01\\n1.75538555e-01 -6.35072216e-02 3.85438353e-01 -2.56160587e-01\\n1.82692066e-01 -6.12594420e-03 -4.68635619e-01 -3.67841691e-01\\n-1.63509533e-01 -1.14069656e-01 3.80764425e-01 -3.36363763e-01\\n-1.66630387e-01 8.75090212e-02 -4.05517995e-01 3.32829244e-02\\n2.90465802e-01 1.78733528e-01 1.05847955e-01 1.38064787e-01\\n-2.13794723e-01 -3.49654526e-01 1.87972382e-01 -2.99215347e-01\\n-1.69602990e-01 1.66425571e-01 -2.08925709e-01 2.64979154e-01\\n1.81014344e-01 -6.25934154e-02 -1.29213616e-01 8.04973207e-03\\n-5.87571710e-02 -9.19925645e-02 2.28851020e-01 3.14909406e-02\\n1.87288523e-01 -2.16550864e-02 -3.79277349e-01 4.62352127e-01\\n-1.93898380e-01 6.02391958e-01 6.46469444e-02 -9.40138519e-01\\n4.41719562e-01 3.05685431e-01 2.04894543e-02 -2.92578965e-01\\n6.16035938e-01 -2.84800082e-01 5.47714680e-02 9.40331221e-02\\n-3.94646257e-01 -3.31888109e-01 1.70989558e-01 -4.70160581e-02\\n-2.36498311e-01 4.84345973e-01 8.76298323e-02 6.06664941e-02\\n9.57808122e-02 -2.22869202e-01 -1.86219424e-01 8.61550421e-02\\n7.47404471e-02 -2.26348668e-01 -4.30374801e-01 -5.15934154e-02\\n-6.20339178e-02 -3.83331120e-01 -2.18496710e-01 -3.41895312e-01\\n-3.65211666e-01 -3.40019256e-01 -1.97324216e-01 1.96142510e-01\\n1.60420030e-01 5.39122336e-02 6.36644810e-02 1.60047218e-01\\n-1.51293576e-01 -5.04827797e-01 9.13019329e-02 2.14705750e-01\\n3.98680866e-01 1.81740731e-01 3.04496363e-02 5.51700965e-02\\n-8.48451778e-02 6.71570718e-01 -1.77370533e-01 -1.40297905e-01\\n2.00412825e-01 2.99488425e-01 1.48102017e-02 -1.67427436e-01\\n1.18504316e-01 3.21542799e-01 -1.54790223e-01 2.05655098e-01\\n-1.19753577e-01 2.09084414e-02 2.43226901e-01 4.82034460e-02\\n-2.89709657e-01 -2.03726515e-01 -1.91518083e-01 1.54055953e-01\\n-4.73538905e-01 -2.28871688e-01 5.89874029e-01 8.72442722e-02\\n8.71996135e-02 9.91741046e-02 2.54528403e-01 -6.36037588e-02\\n-1.05949089e-01 -3.09775740e-01 1.57138392e-01 9.38181579e-02\\n1.15508707e-02 1.62044168e-01 -1.56841025e-01 -6.62468731e-01\\n-3.50264668e+00 -1.57750204e-01 7.17371255e-02 -2.68244207e-01\\n2.68046975e-01 -2.36085445e-01 2.05025017e-01 -2.07913946e-02\\n-2.02054650e-01 1.16239227e-01 -2.67856568e-01 -1.35206744e-01\\n2.28944927e-01 3.40003788e-01 6.49405178e-03 2.51488596e-01\\n1.77406251e-01 -2.19866812e-01 -5.85528053e-02 3.48811984e-01\\n-1.65424749e-01 -5.20501733e-01 2.81273991e-01 -4.02567051e-02\\n3.27050209e-01 4.29545105e-01 -2.75370926e-01 -1.17527418e-01\\n-1.09366521e-01 -2.06329063e-01 2.01657712e-01 -2.47290939e-01\\n-1.12287365e-01 3.12663108e-01 1.60509109e-01 -7.41810054e-02\\n1.41327783e-01 -5.29600322e-01 -1.34378657e-01 -3.55879635e-01\\n1.83680817e-01 -7.41602480e-01 -4.79431963e-03 2.37614126e-03\\n7.31937647e-01 -3.50656658e-01 4.62759063e-02 1.14367023e-01\\n2.23921061e-01 1.88386276e-01 4.25716303e-02 -2.93453000e-02\\n-1.51794910e-01 -2.49134392e-01 -5.57363629e-02 -6.52535260e-02\\n4.31551784e-01 5.07369220e-01 -2.11863145e-01 8.27106461e-03\\n1.66721612e-01 -1.38316602e-01 -4.27338153e-01 -3.73184592e-01\\n-2.45091781e-01 -3.17767799e-01 -6.76983356e-01 -3.97260159e-01\\n-1.19645819e-01 -1.57112554e-01 -1.84190094e-01 3.91172469e-01\\n-2.42083982e-01 -3.48317742e-01 -3.87924276e-02 -3.33766192e-01\\n1.40076846e-01 1.09588457e-02 -7.20779598e-02 -2.23218873e-01\\n-2.81568110e-01 -4.11793023e-01 -2.79626790e-02 6.95841387e-02\\n-8.75670612e-02 -2.33418986e-01 4.79355678e-02 -6.62015155e-02\\n-3.27448517e-01 -5.08184910e-01 4.58720684e-01 1.16785966e-01\\n4.00476277e-01 1.36209190e-01 2.40951926e-01 1.34643272e-01\\n3.12567264e-01 -2.47941270e-01 2.66792458e-02 -4.71571624e-01\\n1.16266206e-01 9.16449353e-03 5.59624851e-01 -2.56389081e-01\\n1.99515931e-03 8.12223330e-02 -2.51877517e-01 -1.41523287e-01\\n2.92765617e-01 -1.72457304e-02 2.18308955e-01 -2.50974983e-01\\n2.25334942e-01 -2.50393450e-01 -3.39879662e-01 2.09343527e-02\\n1.54555872e-01 5.43740451e-01 1.74582098e-02 -3.80020529e-01\\n-2.87530094e-01 4.26547617e-01 -2.07242206e-01 -1.12821490e-01\\n-3.56357098e-01 7.33850151e-02 -2.10485220e-01 1.63525477e-01\\n-1.54642453e-02 -4.94578071e-02 -2.38461822e-01 -1.73267499e-01\\n-1.61419302e-01 2.41700232e-01 2.18712926e-01 3.46433818e-02\\n1.52585402e-01 -4.36194181e-01 -3.44422981e-02 7.53684938e-02\\n1.44002408e-01 2.56624132e-01 4.16669138e-02 -1.53528824e-01\\n-1.01806212e-03 2.27999210e-01 -8.80449116e-02 1.05122931e-01\\n-2.43456647e-01 1.34414107e-01 -4.31117445e-01 -3.62720400e-01\\n-2.43829682e-01 -2.10965201e-01 -6.89298511e-02 2.78716683e-01\\n2.30407342e-01 -7.77033791e-02 -8.78668278e-02 -5.22052884e-01\\n3.34861100e-01 -5.65334111e-02 1.90578148e-01 1.43789068e-01\\n1.21636942e-01 3.59480709e-01 5.80476783e-02 -1.44563079e-01\\n-9.27148759e-02 8.31906870e-02 -1.59935772e-01 -6.08359538e-02\\n8.06473345e-02 -4.16505367e-01 -1.24211408e-01 4.64099556e-01\\n1.82102531e-01 -2.44245932e-01 -2.13420033e-01 2.72017390e-01\\n3.12703401e-02 -3.62795502e-01 -2.72004664e-01 -1.47969881e-02\\n2.91681647e-01 6.18082434e-02 3.02771360e-01 -4.25682724e-01\\n-5.09558385e-03 -7.37296864e-02 -6.51836172e-02 4.34307694e-01\\n8.92547444e-02 -9.57039595e-02 -7.29712397e-02 -2.33184561e-01\\n3.82072628e-01 -4.68664691e-02 -3.54509316e-02 -3.82856466e-02\\n9.44935530e-02 -5.13739586e-02 -4.34929341e-01 1.06125011e-03\\n-7.39746541e-02 -3.69003177e-01 2.43522078e-02 9.03518796e-02\\n1.51525259e-01 1.18993938e-01 -4.34937388e-01 -2.32588843e-01\\n-4.17502046e-01 -1.85799718e-01 -6.65295795e-02 -4.70479012e-01\\n-5.96743040e-02 4.17221822e-02 -5.89449406e-01 1.33043408e-01\\n-2.68843830e-01 -3.94336879e-02 1.83014214e-01 -1.57001764e-02\\n-4.20196533e-01 -1.29450887e-01 1.20374054e-01 7.48296157e-02\\n-2.50387102e-01 -1.48632959e-01 4.73291203e-02 -1.01826227e+00\\n1.69331878e-01 -7.56412148e-02 -1.19695023e-01 1.28890544e-01\\n-4.08417992e-02 -5.30741334e-01 1.68627098e-01 -3.02677006e-01\\n-3.13305944e-01 -1.13266230e-01 -2.57058978e-01 -5.31323612e-01\\n7.08769858e-02 7.74386749e-02 -2.51126230e-01 2.67384976e-01\\n-3.23223263e-01 4.46502954e-01 2.89931409e-02 1.22006893e-01\\n-4.98275533e-02 -3.16053182e-01 3.13113108e-02 -5.51318526e-01\\n-4.13637400e-01 -7.06232414e-02 -2.91413933e-01 -1.11475408e-01\\n1.97787192e-02 -1.95635259e-01 -9.02907029e-02 5.58687598e-02\\n1.88760564e-01 1.58019036e-01 1.93215348e-02 -1.58110902e-01\\n1.74831331e-01 -6.10993922e-01 -2.91324407e-02 -2.66821422e-02\\n-1.75215490e-02 -1.07206263e-01 3.46325934e-01 5.62866628e-02\\n1.33578300e-01 -3.36930424e-01 3.26041371e-01 -3.95532966e-01\\n-2.82947332e-01 -1.03897728e-01 -1.43822925e-02 -1.90414004e-02\\n4.36966419e-01 -5.25637865e-01 3.30386721e-02 1.79084182e-01\\n3.57898623e-02 4.40014116e-02 2.58653700e-01 -2.01891754e-02\\n-1.78549930e-01 2.21666709e-01 -4.71326292e-01 8.77693519e-02\\n7.45355308e-01 1.19806975e-01 1.14133827e-01 1.54601410e-01\\n1.56324595e-01 2.52127022e-01 4.39371616e-01 -3.45676541e-02\\n-1.70427799e-01 2.88810760e-01 5.38588353e-02 -6.93008661e-01\\n6.78328937e-03 6.48628101e-02 -3.10047776e-01 -3.78391713e-01\\n7.11907029e-01 3.98961246e-01 -3.09499472e-01 -1.81525901e-01\\n-3.24246943e-01 -2.68769801e-01 6.51824921e-02 -1.76272452e-01\\n1.31830409e-01 -7.76034966e-02 5.01379073e-01 -3.15096788e-02\\n3.34305167e-01 4.74057347e-01 -2.82085627e-01 -2.25963771e-01\\n-1.39362039e-02 4.03376743e-02 1.00596718e-01 3.51312995e-01\\n-5.87005503e-02 2.34526485e-01 -1.57851037e-02 2.03820631e-01\\n-1.10200256e-01 1.59019139e-02 3.88498716e-02 -5.23046255e-02\\n1.04269981e-01 8.05894881e-02 6.15327716e-01 2.53196776e-01\\n3.58386964e-01 4.32132602e-01 3.34582210e-01 6.42120615e-02\\n5.59861064e-01 4.41677213e-01 2.45480642e-01 1.34995341e-01\\n5.61291054e-02 5.86763211e-02 1.26304463e-01 4.12375741e-02\\n3.18288386e-01 3.36260140e-01 2.84704231e-02 9.10725772e-01\\n3.37712348e-01 3.09503317e-01 5.87512612e-01 -4.98412520e-01\\n-3.38098049e-01 -7.85477832e-03 4.13627356e-01 -3.67102951e-01\\n-6.27095252e-02 8.89910311e-02 -6.79995194e-02 1.35750145e-01\\n-3.77390772e-01 -1.78885475e-01 -9.30633023e-02 2.09513754e-01\\n8.29699859e-02 -1.87860638e-01 -2.45456874e-01 5.96090779e-03\\n-1.29184738e-01 -4.73713949e-02 -4.16860819e-01 -9.01618525e-02\\n-6.71485439e-02 -2.71332860e-01 -1.96409330e-01 -9.96501222e-02\\n-5.47715537e-02 -3.18350732e-01 -9.65505466e-02 -1.46008292e-02\\n2.33853787e-01 -2.32009888e-02 4.96165976e-02 -1.44123480e-01\\n3.21401536e-01 2.35773399e-01 5.17751694e-01 -2.33540758e-02\\n2.60680646e-01 -2.69019067e-01 -1.34609401e-01 1.40931562e-01\\n1.56894565e-01 1.02525009e-02 5.16251363e-02 4.09296632e-01\\n-3.22130501e-01 -1.26402259e-01 1.53372973e-01 4.42921460e-01\\n-3.94530982e-01 -7.64973536e-02 -5.67400493e-02 1.92955613e-01\\n8.60839039e-02 8.53603333e-02 -3.55850339e-01 7.70744979e-02\\n-2.81288654e-01 -3.80233735e-01 2.18698695e-01 -6.21601045e-02\\n-1.00984126e-01 -1.35791479e-02 2.59958327e-01 2.11997464e-01\\n-2.14227021e-01 -9.65067372e-03 -9.41812545e-02 4.65984121e-02\\n1.99218988e-01 3.02736729e-01 -2.76144505e-01 -2.79398412e-01\\n-1.86256424e-01 2.50352621e-01 -1.39549315e-01 7.01435283e-02\\n5.17217629e-03 3.56534421e-01 2.24303119e-02 1.68227211e-01\\n4.28202271e-01 -2.15557992e-01 -1.66514173e-01 -3.09013516e-01\\n-3.04064721e-01 -3.36886525e-01 -1.09070856e-02 -1.24030970e-01\\n1.13476910e-01 -3.18715453e-01 -1.44572891e-02 -1.33754620e-02\\n-1.14702627e-01 -3.43547970e-01 -9.17008612e-03 -1.23789934e-02]]',\n", + " 'job_description': \"For our client we are currently looking for aYour challenges•Use of programming experience to establish tailor-made software solutions based on different programming languages•Support for operational requirements of specific parts of the business, like troubleshooting and system migration•Responsible for system administration activities•Create all important documentation•Track, Troubleshoot and resolve system related problems•Apply and write suitable testing procedures and scriptsYour skills•Experience in at least one of these programming languages (HTML, CSS, JavaScript, Python, .NET, MS Office)•Background in Frameworks/Applications as React, VS code, Git, Svelte•Excellent communication skills•Experience in dynamic environment•Fluent spoken and written EnglishYour horizonsWe offer you a nice challenge at one of the world's leading companies. Spring Professional provides one of the most comprehensive benefits package in the industry to contract employees! Don't miss it! Next to a fix salary you will gain from nice fringe benefits offered by our client.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactInformation Technology A406, looks forward to answer your questions by phone +41 58 233 4580.You can apply directly online.Please mention reference JN -112019-297967 in your application.JN -112019-297967\",\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Communications\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"System Administration\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Programming (Music)\", \"Project-Based Solutions\", \"Python (Programming Language)\", \"Git Flow\", \"Cascading Style Sheets (CSS)\", \"Financial Information eXchange (FIX) Protocol\", \"JavaScript (Programming Language)\", \"HyperText Markup Language (HTML)\", \"Web Application Frameworks\", \"Industrialization\", \"React.js\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '55',\n", + " 'job_title': 'software engineer – infrastructure',\n", + " 'location': 'Lugano',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.00879031e-01 2.93186873e-01 3.91317397e-01 -1.03268325e-01\\n4.78794605e-01 -1.63716614e-01 -1.24025993e-01 2.78238416e-01\\n-6.44701272e-02 -3.18700671e-01 -7.58499131e-02 -1.74116194e-01\\n-1.89848706e-01 1.01615131e-01 1.67488351e-01 3.75592083e-01\\n7.28601813e-02 1.78860985e-02 -1.73786789e-01 4.24716145e-01\\n2.16276094e-01 2.71240622e-02 -1.07081458e-01 6.44125879e-01\\n3.15437347e-01 5.05755246e-02 -5.42306490e-02 -5.84535860e-02\\n-3.49566609e-01 -1.99953839e-01 2.56783605e-01 6.70977086e-02\\n1.96225531e-02 -3.30467224e-01 1.08449347e-01 2.42889076e-02\\n-2.29073167e-01 -5.94328903e-02 -3.90555374e-02 2.29642987e-01\\n-3.40409666e-01 -4.15655464e-01 5.97661510e-02 8.12869519e-02\\n-1.48136511e-01 -2.05082506e-01 7.47181177e-02 -3.82940099e-02\\n5.89827774e-04 -8.48522335e-02 -6.36883378e-01 3.25887978e-01\\n-1.50449380e-01 -2.98596263e-01 2.88268328e-01 5.38708150e-01\\n1.01485834e-01 -5.24987757e-01 -1.54847637e-01 -2.85892755e-01\\n-1.14543185e-01 -3.50345345e-03 4.57349531e-02 -1.50619000e-01\\n3.75841975e-01 7.53906788e-03 1.35511905e-03 5.05759835e-01\\n-7.84257889e-01 -9.27326009e-02 -1.27454743e-01 8.22741687e-02\\n-3.21160525e-01 1.42420497e-04 -1.32573649e-01 -5.03220595e-02\\n-2.40474250e-02 3.39716822e-01 3.41495313e-02 2.46226862e-02\\n-1.69638231e-01 2.87897348e-01 1.65269598e-02 2.04493821e-01\\n4.02450442e-01 2.36347482e-01 7.48850852e-02 3.92977804e-01\\n-3.39092374e-01 3.55543703e-01 2.47102734e-02 -1.09525576e-01\\n1.88436851e-01 2.02240899e-01 5.58090806e-01 2.57104754e-01\\n-7.99437333e-03 1.26798749e-01 -2.11416706e-01 2.19073489e-01\\n1.39928490e-01 -2.47061670e-01 3.79527397e-02 -2.11745803e-03\\n-1.67742223e-01 -7.72309601e-02 -9.44179222e-02 4.14851397e-01\\n-2.27359101e-01 2.94415325e-01 2.77031094e-01 -1.16150575e-02\\n-4.84739244e-02 -6.33450627e-01 -6.82621896e-02 -6.77805319e-02\\n9.44998041e-02 2.23461345e-01 2.79766053e-01 1.96791470e-01\\n1.20394945e-01 2.21997783e-01 2.04271674e-01 1.04545474e+00\\n-3.14405672e-02 1.30599171e-01 -1.79279611e-01 2.89214373e-01\\n2.56017148e-01 -2.04995364e-01 1.33666202e-01 3.32151592e-01\\n2.34139726e-01 -1.66957349e-01 -1.12822250e-01 3.86550277e-01\\n-1.50696322e-01 -8.32101330e-02 -3.40334445e-01 8.20770711e-02\\n-3.26552123e-01 -4.50612068e-01 4.32520688e-01 1.72729358e-01\\n2.65590787e-01 7.00112954e-02 -1.12124145e-01 -5.71813285e-02\\n-1.32182136e-01 4.17161673e-01 -1.36189863e-01 2.00398117e-01\\n-3.94227594e-01 -2.32892543e-01 -2.65055507e-01 3.24277580e-01\\n1.94085333e-02 2.17623770e-01 -2.80663036e-02 -1.22584902e-01\\n3.84874254e-01 -1.05298301e-02 -4.64051157e-01 1.62944660e-01\\n-7.85158500e-02 -2.75155514e-01 -1.40553564e-01 1.35943472e-01\\n-1.63567178e-02 1.68804660e-01 -3.54842730e-02 -2.26342067e-01\\n4.01549637e-01 9.38663911e-03 2.06304863e-02 -1.38568610e-01\\n3.02643180e-01 -1.90038607e-01 2.58602947e-01 2.33357385e-01\\n-7.79680669e-01 2.28618413e-01 1.83338230e-03 -2.30762839e-01\\n-6.24184161e-02 6.95198402e-02 4.03260529e-01 -3.76663059e-01\\n4.90600877e-02 -8.83588344e-02 -5.29202044e-01 -3.57074797e-01\\n-3.48177403e-01 4.85689677e-02 4.90368754e-01 -2.28337407e-01\\n-1.97726265e-01 1.56603396e-01 -4.55536842e-01 -6.93446994e-02\\n1.95589215e-01 4.90938239e-02 5.23668975e-02 -1.92485955e-02\\n-1.23538025e-01 -6.17735505e-01 -1.30851611e-01 -4.73395258e-01\\n-4.96935308e-01 9.46354792e-02 -2.57593751e-01 2.05382109e-01\\n9.74708796e-02 8.88068452e-02 3.13008651e-02 7.31329471e-02\\n-2.58341074e-01 -1.69609636e-01 2.72056669e-01 1.95337325e-01\\n3.00849140e-01 -3.00326869e-02 -3.81042659e-01 3.68223310e-01\\n-1.41485795e-01 6.92153692e-01 2.43943647e-01 -7.69371688e-01\\n6.31583691e-01 2.05738083e-01 6.82776570e-02 -5.04139245e-01\\n3.87583196e-01 -3.35701734e-01 1.33027285e-01 2.38910377e-01\\n-2.80704081e-01 -2.22749725e-01 2.28209972e-01 -1.55083522e-01\\n-3.29826891e-01 5.61209142e-01 1.56247288e-01 -1.28462151e-01\\n3.26708049e-01 -3.72736812e-01 3.36158983e-02 1.22877941e-01\\n-2.56286263e-02 -2.63898283e-01 -2.63618708e-01 1.44047424e-01\\n-9.48781222e-02 -5.00595927e-01 -1.52707145e-01 -2.55044729e-01\\n-1.97757691e-01 -3.34501833e-01 -1.93009913e-01 6.02746010e-01\\n7.68776983e-02 2.11635008e-01 1.11528002e-01 -4.46646959e-02\\n-1.07868664e-01 -6.05864823e-01 -1.57366246e-01 2.32590437e-02\\n4.55449015e-01 1.69754624e-01 2.43884269e-02 -1.47687703e-01\\n-1.59047142e-01 4.01418388e-01 -4.28975642e-01 -3.23695570e-01\\n1.07912615e-01 6.90169856e-02 -7.20065981e-02 -7.71670565e-02\\n1.73102003e-02 2.38392562e-01 -1.88736975e-01 1.10893138e-01\\n-2.04206035e-01 3.82827297e-02 2.22324267e-01 -5.50262891e-02\\n-2.91198194e-01 -4.14358139e-01 3.97748388e-02 3.50211859e-01\\n-5.15438914e-01 1.82694849e-02 5.84305644e-01 3.86929184e-01\\n2.27325216e-01 1.33536994e-01 2.65554458e-01 -2.44909897e-01\\n-3.12612474e-01 -3.36751431e-01 1.46923047e-02 3.15787226e-01\\n1.04217216e-01 2.15013735e-02 -1.71257675e-01 -6.16138995e-01\\n-3.46713924e+00 -1.93301052e-01 2.10031301e-01 -2.07476407e-01\\n1.69475362e-01 -1.26025841e-01 -1.88950039e-02 -3.53714600e-02\\n-2.33969301e-01 -2.87974030e-02 -3.69860321e-01 -8.93848613e-02\\n-2.42614243e-02 4.09246206e-01 1.66151851e-01 2.65335411e-01\\n7.07896501e-02 -1.83095276e-01 -1.39254153e-01 3.00904304e-01\\n-1.94392174e-01 -6.19301975e-01 1.11721240e-01 -6.54913187e-02\\n2.41897032e-01 9.04766396e-02 -4.36451584e-01 -7.91861266e-02\\n-1.65939137e-01 -1.55749217e-01 -2.86726677e-03 -2.13719219e-01\\n-7.01692402e-02 2.79045135e-01 1.80733837e-02 5.08422144e-02\\n1.14969879e-01 -1.59121975e-01 3.51332538e-02 -4.39557374e-01\\n-6.27788827e-02 -4.98567462e-01 -3.39253470e-02 -1.71872228e-01\\n6.59773350e-01 -3.86580676e-01 1.53439745e-01 8.71985853e-02\\n2.36954257e-01 2.12036982e-01 -2.15092361e-01 2.88824667e-03\\n-2.06664979e-01 -2.81206608e-01 1.96247753e-02 -2.78526068e-01\\n3.92579943e-01 6.37125134e-01 -2.56244302e-01 3.20588686e-02\\n1.38102338e-01 -2.77370691e-01 -3.24303627e-01 -5.99954844e-01\\n-2.45553732e-01 -1.67872697e-01 -8.09775829e-01 -4.80559677e-01\\n-9.27682668e-02 5.57722151e-02 -2.77839214e-01 5.80034375e-01\\n-4.61603671e-01 -5.49676895e-01 5.37728257e-02 -6.60362124e-01\\n-1.48893967e-02 -2.39232764e-01 6.95940033e-02 -1.50372148e-01\\n-2.75305599e-01 -4.36389297e-01 1.79174632e-01 -2.66638640e-02\\n-2.32112467e-01 -7.29342997e-02 2.64724847e-02 -4.31868285e-01\\n-3.33787382e-01 -2.96306759e-01 3.55388194e-01 1.82731822e-01\\n2.57711589e-01 1.22675538e-01 3.77857834e-01 4.52391468e-02\\n3.50659311e-01 -1.07281409e-01 1.37129828e-01 -3.18001330e-01\\n2.20700189e-01 -1.83648709e-02 5.41036308e-01 -3.50027502e-01\\n6.09605946e-02 3.58645976e-01 -2.61133105e-01 -1.08122624e-01\\n4.89372790e-01 7.29590505e-02 -2.53005847e-02 -1.19581163e-01\\n3.83681297e-01 -6.37967885e-01 -2.56187499e-01 3.02944511e-01\\n6.42761439e-02 5.80740988e-01 1.77910313e-01 -4.58288223e-01\\n-3.97374719e-01 4.02542263e-01 -1.14063472e-01 -2.51584977e-01\\n7.01158047e-02 2.22222611e-01 -2.47803312e-02 1.56336799e-01\\n1.49435177e-01 -2.45852709e-01 -3.88448298e-01 -3.64366956e-02\\n-2.88377376e-03 1.35575101e-01 1.75859213e-01 -1.34832412e-01\\n-1.03112653e-01 -1.22031204e-01 -3.78820710e-02 3.63153294e-02\\n2.02119753e-01 2.13538945e-01 1.67728022e-01 -3.20858240e-01\\n1.06952675e-01 2.63561010e-01 -1.07260503e-01 1.80178538e-01\\n-1.90651059e-01 -3.21749039e-02 -3.79539311e-01 -3.60461771e-01\\n-2.92769372e-02 -2.89781660e-01 4.04551104e-02 2.00645357e-01\\n1.21491902e-01 -2.21123779e-03 2.21114308e-02 -5.50375700e-01\\n4.33755368e-01 2.21633743e-02 1.70349032e-01 1.90832749e-01\\n1.01743355e-01 5.09069443e-01 8.50913823e-02 -3.16508114e-02\\n-1.28230691e-01 -1.78902075e-01 -2.77893186e-01 -3.07526469e-01\\n6.95318282e-02 -3.47837031e-01 -6.79813325e-02 4.49735999e-01\\n9.83924344e-02 -3.83342206e-01 -1.76466197e-01 3.50526214e-01\\n2.00574055e-01 -1.81934759e-01 -7.84528032e-02 6.54289722e-02\\n2.51233399e-01 1.86822750e-02 2.19002098e-01 -3.69453162e-01\\n-3.07673905e-02 9.28495377e-02 -7.56931677e-02 4.58273828e-01\\n3.47311378e-01 3.89679009e-03 -2.08536431e-01 -1.76302195e-01\\n4.58923221e-01 -1.23154871e-01 -5.91280498e-03 -2.05564216e-01\\n4.69516702e-02 -1.32719114e-01 -4.13890392e-01 1.62447691e-01\\n5.50124086e-02 -8.15157220e-02 8.06250274e-02 -8.07496235e-02\\n1.36916637e-01 -2.86610387e-02 -4.20104235e-01 -2.98656136e-01\\n-3.37828279e-01 -1.96709454e-01 1.80388913e-01 -2.43398353e-01\\n2.01923400e-02 8.52477700e-02 -6.56238735e-01 1.99699700e-01\\n-2.64420927e-01 1.25517324e-01 7.42155686e-02 1.42937839e-01\\n-3.03225577e-01 7.98135400e-02 5.34233153e-02 3.85028943e-02\\n-4.53491926e-01 -1.94671988e-01 2.70261150e-02 -9.74631250e-01\\n6.65682331e-02 -7.66236261e-02 9.40824393e-03 1.14252483e-02\\n-3.37707587e-02 -5.66168427e-01 1.99193791e-01 -4.40826386e-01\\n5.04017062e-02 1.68569401e-01 -1.71417952e-01 -4.21216071e-01\\n4.89115417e-02 -1.16364248e-01 -2.85581082e-01 4.42956597e-01\\n-5.01606703e-01 1.50286421e-01 1.17784612e-01 -2.47211792e-02\\n7.88761377e-02 -3.69431317e-01 2.02608258e-01 -2.65531957e-01\\n-4.03134644e-01 -1.08709678e-01 -3.43860686e-01 -1.39599085e-01\\n1.24647722e-01 -2.48197094e-01 -2.75886297e-01 1.18766770e-01\\n1.85462266e-01 1.42471671e-01 3.56539823e-02 -2.15658531e-01\\n1.34770572e-01 -2.79345363e-01 8.64735246e-02 -1.25774384e-01\\n-6.48249164e-02 1.20532081e-01 1.17231280e-01 -1.51869193e-01\\n3.61631177e-02 -2.31839910e-01 5.80160201e-01 -2.75261730e-01\\n-3.89089018e-01 -4.63009402e-02 2.69977842e-02 2.59587876e-02\\n3.00831139e-01 -4.15258884e-01 7.68277934e-03 2.38041312e-01\\n1.35940179e-01 -4.23567295e-02 2.50154495e-01 -1.02111273e-01\\n-6.99340552e-02 5.91482520e-02 -4.61507529e-01 5.96984252e-02\\n7.70102501e-01 1.17011242e-01 -3.14755850e-02 2.10223675e-01\\n8.15835297e-02 4.50068951e-01 4.52602684e-01 -9.18183774e-02\\n-7.12006986e-02 2.26993382e-01 5.87383583e-02 -4.99704361e-01\\n-9.72609445e-02 -2.50003844e-01 -1.67176172e-01 -1.97197720e-01\\n6.97801113e-01 4.70982462e-01 -3.04457128e-01 -2.08735168e-01\\n-7.25482479e-02 -1.89349130e-01 2.06093788e-01 -8.18968266e-02\\n-4.73494381e-02 -2.35091895e-02 5.78519821e-01 -3.08102984e-02\\n3.02670270e-01 4.66560930e-01 -2.38135278e-01 -4.34572309e-01\\n-1.09416001e-01 6.20297752e-02 1.08913675e-01 3.00506949e-01\\n-2.07963195e-02 3.11317265e-01 1.28179276e-02 9.26745385e-02\\n6.71412284e-03 6.13207445e-02 1.66868046e-01 -3.61097255e-03\\n2.78235048e-01 1.06410727e-01 1.77996550e-02 5.14176905e-01\\n1.24909259e-01 4.76623207e-01 3.16883922e-01 1.94185615e-01\\n3.43783319e-01 5.46812057e-01 4.46297884e-01 1.82734951e-01\\n5.96060567e-02 -4.68132943e-02 3.98530997e-02 -9.10039544e-02\\n4.55725998e-01 2.51346052e-01 3.44859511e-01 8.16920877e-01\\n3.29367936e-01 2.14782894e-01 7.78392732e-01 -6.70003235e-01\\n-3.85428339e-01 9.29093286e-02 4.82959777e-01 -3.44925046e-01\\n-1.25408113e-01 8.58220458e-02 -2.41764829e-01 1.66485399e-01\\n-5.78623474e-01 -9.24738348e-02 -2.86182649e-02 -9.08896625e-02\\n-8.81325174e-03 -3.48114334e-02 -2.86627918e-01 -1.63740069e-01\\n-1.73640594e-01 -2.34352484e-01 -1.87768996e-01 -1.47904441e-01\\n-2.90678680e-01 -1.45760730e-01 -4.97637577e-02 8.18882789e-03\\n-1.45734906e-01 -4.97592241e-01 -3.21818113e-01 1.17715396e-01\\n4.49432760e-01 -1.57377616e-01 -1.74466502e-02 -1.72294587e-01\\n-7.82589335e-03 3.52455467e-01 5.74620426e-01 -4.30326909e-02\\n1.46646231e-01 -1.62685096e-01 -2.04753563e-01 -1.72511884e-03\\n1.58810183e-01 -8.75630975e-03 6.10316806e-02 4.70520645e-01\\n-3.79225045e-01 2.03973040e-01 1.42406151e-01 2.75100172e-01\\n-4.41362977e-01 -1.60239324e-01 -1.55947730e-03 2.82590985e-01\\n4.11767662e-02 3.16154599e-01 -3.87521476e-01 1.47677600e-01\\n-3.44438523e-01 -5.26079834e-01 5.24405301e-01 -2.34351486e-01\\n-6.83412999e-02 1.53566837e-01 3.28152776e-01 1.14282914e-01\\n-2.03067213e-01 -5.59285916e-02 1.45715505e-01 2.76590496e-01\\n-6.31856248e-02 4.04603094e-01 -3.04258376e-01 -1.08718514e-01\\n-1.91801056e-01 3.90092880e-01 -6.51417673e-02 1.82144478e-01\\n-1.73569724e-01 3.82095128e-01 1.23801269e-01 1.74502939e-01\\n1.27364665e-01 6.34968802e-02 -5.40365130e-02 -2.22627968e-01\\n-2.57311881e-01 -4.27096128e-01 1.71497643e-01 2.96526961e-02\\n1.64752096e-01 -3.71100157e-01 -1.09345570e-01 1.18856607e-02\\n-1.66199088e-01 -3.77908051e-01 -2.34627366e-01 1.25755101e-01]]',\n", + " 'job_description': 'Lugano, Switzerland / Austin, TX Full Time Description Implement internal machine learning software infrastructure Integrate existing open-source tools in order to facilitate ML research Interface our proprietary platform with large data sets and customer platforms Contribute to the our proprietary code base Minimum Qualifications Masters in computer science 2 years in the industry, experience with IT systems Experience with parallel computing architectures “DevOps” Command of C/C++ and Python Knowledge of Unix environment, GNU/Linux Engineering mindset Large data management skills Fluent in written and spoken English Plusses Theoretical knowledge of machine learning methods (deep learning, reinforcement learning, evolutionary computation) Experience of machine learning frameworks (TensorFlow, PyTorch) Experience with containers and orchestration (Docker, Kubernetes, OpenStack) Experience with cluster environments (e.g. SGE, Condor) Experience with GPU programming (Cuda, OpenCL, Metal) Contact E-mail: jobs@nnaisense.com start subject with: [infrastructure engineer] submit both your cover letter and resume in English, PDF format',\n", + " 'soft_skills': '[\"Research\", \"Infrastructure\", \"Integration\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Tooling\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Computer Science\", \"Data Management\", \"Machine Learning\", \"Nvidia CUDA\", \"OpenStack\", \"Industrialization\", \"Component Object Model (COM)\", \"Association Rule Learning\", \"E (Programming Language)\", \"OpenCL\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Condor\", \"C (Programming Language)\", \"Metallization\", \"TensorFlow\", \"Deep Learning\", \"Parallel Computing\", \"Clinical Data Management\", \"SliTaz GNU/Linux\", \"PyTorch (Machine Learning Library)\", \"Unix\", \"Documentation Based Coding\"]',\n", + " 'languages': \"['English', 'Luxembourgish', 'Indonesian', 'Akan', 'Welsh']\"},\n", + " {'company_id': '34',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.darwinrecruitment.com',\n", + " 'jobdescription_embedded': '[[-1.65083453e-01 3.19254458e-01 4.95441109e-01 -3.81989740e-02\\n3.79558653e-01 -1.54357284e-01 -6.61659241e-02 4.67716426e-01\\n2.00597886e-02 -5.06808162e-01 -4.95050251e-02 -3.14041048e-01\\n-7.89727271e-02 2.11198092e-01 8.97698551e-02 3.45691472e-01\\n2.44436756e-01 7.88515657e-02 -1.19626366e-01 2.57578075e-01\\n1.16620570e-01 -1.54219747e-01 2.51368880e-02 7.06675112e-01\\n4.60067809e-01 4.69725579e-03 -4.81418706e-03 4.16709892e-02\\n-2.61765927e-01 -1.95731997e-01 5.26056290e-01 8.46560821e-02\\n-1.41980886e-01 -4.30015445e-01 6.17466159e-02 -2.15574703e-03\\n-1.73775107e-01 -1.24349199e-01 -1.11499421e-01 5.27733155e-02\\n-5.58828294e-01 -3.09473097e-01 3.16985846e-02 1.46569416e-01\\n-2.78874844e-01 -2.39975601e-01 7.55263567e-02 2.06531044e-02\\n7.44131580e-02 2.66239401e-02 -5.80476165e-01 2.38531888e-01\\n-2.52952814e-01 -2.93606281e-01 3.00193787e-01 6.08347297e-01\\n1.46699315e-02 -4.92188543e-01 -5.15527129e-01 -3.80926311e-01\\n1.16627328e-01 -1.08925834e-01 -4.57998179e-02 -3.35701406e-01\\n3.86292398e-01 1.11972839e-02 3.53513435e-02 3.31414163e-01\\n-8.27985883e-01 -1.31682549e-02 -1.73459172e-01 -5.12036867e-03\\n-3.07383418e-01 -1.71503313e-02 -3.36450040e-01 -8.99936780e-02\\n-8.80132765e-02 3.81386101e-01 1.05661333e-01 8.90223086e-02\\n-2.03625888e-01 3.20241839e-01 -1.80687740e-01 4.11038011e-01\\n2.03398749e-01 2.55291969e-01 2.74804741e-01 2.19039083e-01\\n-3.09199214e-01 4.23422128e-01 1.79787934e-01 -3.93441975e-01\\n2.86310881e-01 1.71788231e-01 4.76723939e-01 7.50590637e-02\\n3.33949059e-01 1.06433958e-01 -2.64567405e-01 2.55927294e-01\\n2.40622237e-01 -4.18380380e-01 9.86854918e-03 -1.69799194e-01\\n-3.68123278e-02 -1.02736000e-02 6.81591928e-02 2.58876175e-01\\n-2.66770303e-01 3.49239081e-01 1.16490670e-01 -1.14884578e-01\\n-5.06634302e-02 -3.72723728e-01 -6.11759163e-02 3.85265574e-02\\n-1.03304416e-01 1.80349976e-01 1.63249061e-01 2.09578797e-01\\n2.77222455e-01 5.91744706e-02 9.65539590e-02 8.00303519e-01\\n-1.59997359e-01 9.15836096e-02 -2.67055035e-01 3.52540791e-01\\n-1.48655605e-02 -3.39905024e-01 3.20987612e-01 2.20408142e-01\\n4.28162031e-02 -1.56447917e-01 -2.81828463e-01 3.26091617e-01\\n-1.42394066e-01 -1.55618176e-01 -3.54186118e-01 2.70916492e-01\\n-4.90221642e-02 -4.17977661e-01 5.77617764e-01 5.84985763e-02\\n2.32607648e-01 4.95234020e-02 9.56064984e-02 -1.04946747e-01\\n-1.47463351e-01 3.00862938e-01 -5.12746070e-03 2.35319465e-01\\n-3.14357340e-01 -1.78694904e-01 -1.97547540e-01 1.68702900e-01\\n-3.47839057e-01 1.17516480e-01 -1.38953865e-01 -1.76827818e-01\\n2.96173990e-01 -7.40425289e-02 -1.84928045e-01 2.69041359e-01\\n-4.53104265e-02 8.23551118e-02 -9.73196179e-02 2.74093777e-01\\n-2.60307550e-01 3.50097984e-01 -8.10794458e-02 -9.91023481e-02\\n5.27690828e-01 9.78930071e-02 2.34903097e-01 -1.26873344e-01\\n3.06012303e-01 -6.98535815e-02 1.81846410e-01 7.48809427e-02\\n-7.02474356e-01 2.23506808e-01 8.34702849e-02 -7.43738189e-02\\n1.25737682e-01 -7.17679560e-02 1.93709686e-01 -3.14099044e-01\\n-5.47205657e-02 -7.96952099e-02 -4.73146230e-01 -2.79186487e-01\\n-3.72156084e-01 -1.12092465e-01 4.67792362e-01 -4.30909961e-01\\n-7.91788101e-02 2.71165311e-01 -6.30002558e-01 -6.87183440e-02\\n2.09712207e-01 2.11599037e-01 9.18869749e-02 1.72063589e-01\\n-1.42219707e-01 -4.93272126e-01 1.51271015e-01 -3.28044176e-01\\n-2.12690547e-01 1.69810578e-01 -2.71262169e-01 2.92541921e-01\\n-1.41262682e-02 3.91495563e-02 -1.58338517e-01 1.69167995e-01\\n-1.77642405e-01 -1.03847608e-01 1.19404256e-01 4.99546491e-02\\n3.20385277e-01 8.45142305e-02 -3.35740685e-01 4.92505670e-01\\n-1.76585063e-01 5.79505026e-01 1.27589434e-01 -8.90880823e-01\\n4.60692346e-01 2.52288461e-01 3.71406414e-02 -1.96716711e-01\\n5.98921120e-01 -2.91911185e-01 -1.37697682e-01 7.70861581e-02\\n-3.64976943e-01 -3.77969176e-01 1.02516070e-01 -1.45798609e-01\\n-2.43318766e-01 5.77960134e-01 -3.06209410e-03 1.66892231e-01\\n2.65780896e-01 -3.23599279e-01 -9.85318050e-02 8.42596516e-02\\n-1.31586477e-01 -2.55167454e-01 -4.48100984e-01 -3.99389230e-02\\n6.55791163e-03 -4.77440655e-01 -1.06774732e-01 -2.25496203e-01\\n-2.16057077e-01 -3.11196715e-01 -2.56162077e-01 2.34992772e-01\\n2.81699210e-01 1.16907388e-01 2.26505771e-02 1.06790349e-01\\n-1.36170521e-01 -5.94081223e-01 -3.34470756e-02 -1.96925215e-02\\n3.58730465e-01 2.37309396e-01 1.33797467e-01 -1.20922634e-02\\n3.11987605e-02 5.72406352e-01 -2.49959707e-01 -3.10552001e-01\\n1.28232718e-01 1.29639909e-01 1.14353396e-01 -1.71455950e-01\\n1.29294008e-01 4.68337566e-01 -3.13875765e-01 1.30652338e-01\\n-5.94749749e-02 3.92417889e-04 3.41744035e-01 3.42286825e-02\\n-3.60461384e-01 -1.83997393e-01 -6.02864176e-02 1.42032579e-01\\n-5.19604802e-01 -1.93873584e-01 6.19571626e-01 1.32265851e-01\\n1.55707061e-01 1.79977715e-01 1.53400376e-01 -1.44464105e-01\\n-1.16054423e-01 -7.21182972e-02 2.15016454e-01 1.85630277e-01\\n1.33414134e-01 1.43782824e-01 -1.24449611e-01 -5.38608849e-01\\n-3.35662127e+00 -1.71166778e-01 2.70768225e-01 -2.90032625e-01\\n2.34924644e-01 -6.07757941e-02 8.29816330e-03 -1.50161520e-01\\n-2.24879205e-01 7.17367381e-02 -6.81408271e-02 -1.33796394e-01\\n1.45479158e-01 2.31149197e-01 5.29174730e-02 3.77376556e-01\\n1.84923172e-01 -1.24336347e-01 9.19131935e-02 3.92650485e-01\\n-1.90250456e-01 -5.27792335e-01 2.29316056e-01 -4.67799120e-02\\n3.29211354e-01 1.72328904e-01 -4.99511421e-01 -2.23698452e-01\\n-1.71870187e-01 -1.56360745e-01 1.28818378e-01 -2.49277726e-01\\n-1.76581651e-01 3.62027466e-01 1.15242019e-01 -6.12563379e-02\\n1.21528409e-01 -3.47983301e-01 -1.47720546e-01 -4.40003157e-01\\n1.20807648e-01 -5.43209791e-01 3.72945182e-02 -4.03833240e-02\\n6.36576056e-01 -4.03824091e-01 8.72881189e-02 1.03404924e-01\\n1.25959799e-01 2.19854578e-01 6.38148794e-03 5.54088876e-02\\n-2.53575683e-01 -2.06056267e-01 -1.16825871e-01 -1.93455204e-01\\n4.69573379e-01 4.97935086e-01 -1.76326811e-01 2.56949924e-02\\n1.30465319e-02 -4.16623294e-01 -4.86157060e-01 -2.69711196e-01\\n-2.14943051e-01 -3.09029162e-01 -5.92809975e-01 -4.30958062e-01\\n-1.25583902e-01 -2.30830729e-01 -1.09555170e-01 3.47886473e-01\\n-2.83355117e-01 -3.51131797e-01 5.12902774e-02 -6.08868599e-01\\n2.30312407e-01 9.33560636e-03 8.15793052e-02 -2.21696585e-01\\n-1.35806352e-01 -5.25290191e-01 -1.03401048e-02 -2.78670695e-02\\n-2.15595692e-01 -1.88859209e-01 -1.11919816e-03 -1.36716768e-01\\n-2.52233416e-01 -5.45656264e-01 4.26379204e-01 1.36129424e-01\\n1.88008830e-01 4.74017411e-02 2.51934618e-01 7.61366508e-04\\n3.05054069e-01 -2.02371091e-01 -5.97683303e-02 -4.26522881e-01\\n7.17229843e-02 -2.25509629e-02 4.05395269e-01 -8.51178691e-02\\n-4.90223914e-02 1.01441436e-01 -1.53953552e-01 -1.78119123e-01\\n3.00130546e-01 7.98332766e-02 2.50713766e-01 -3.17176312e-01\\n2.45556653e-01 -2.32074395e-01 -2.40696013e-01 4.27174345e-02\\n8.03229806e-04 4.74810421e-01 4.25823554e-02 -3.97048950e-01\\n-1.39336601e-01 4.77282345e-01 -2.29416907e-01 1.67547651e-02\\n-1.79245561e-01 4.91999649e-03 -2.53701180e-01 2.26274699e-01\\n-7.05053210e-02 -8.91214609e-02 -2.31661305e-01 -1.51219919e-01\\n-1.99180499e-01 2.73737073e-01 1.48562640e-01 6.11811206e-02\\n-4.27649170e-02 -3.08864474e-01 5.25183743e-03 1.53419554e-01\\n1.22200690e-01 4.39246386e-01 3.23207602e-02 -1.39135122e-01\\n1.24065002e-04 3.91298681e-01 -1.07306212e-01 1.51429176e-01\\n-2.63545334e-01 -6.26875088e-02 -6.05306685e-01 -1.74071416e-01\\n-3.10588419e-01 -2.98982769e-01 3.25216427e-02 2.32067317e-01\\n1.81284964e-01 -3.46225500e-02 8.33854005e-02 -4.77776766e-01\\n2.58061618e-01 3.56356837e-02 1.65657297e-01 1.91773146e-01\\n8.11498463e-02 5.07302940e-01 -6.18015591e-04 -2.85529960e-02\\n-1.56311840e-01 1.73390701e-01 -2.01492921e-01 -1.58605397e-01\\n-2.80407071e-02 -5.42979836e-01 -8.44680518e-02 4.29916173e-01\\n3.59204002e-02 -1.63769394e-01 -1.91574961e-01 1.29596427e-01\\n2.64844988e-02 -2.20389515e-01 -1.92395359e-01 6.61681918e-03\\n2.50176638e-01 2.82903224e-01 1.99627280e-01 -4.50444281e-01\\n-7.97723420e-03 -1.75965223e-02 -5.01822829e-02 4.95300859e-01\\n5.93878739e-02 5.05512860e-03 -1.87208578e-01 -2.84996748e-01\\n3.14409673e-01 -1.84382573e-01 -7.51987621e-02 -1.74926296e-01\\n1.20391063e-01 -4.36875969e-02 -3.73294562e-01 9.09328908e-02\\n-3.56206782e-02 -1.61765426e-01 -1.82871148e-02 1.35423639e-03\\n6.75418749e-02 1.40893608e-01 -5.42031586e-01 -2.55063772e-01\\n-2.29366362e-01 2.88663711e-03 -1.84630696e-02 -4.86314625e-01\\n5.50204180e-02 3.96595262e-02 -4.68332827e-01 1.80881947e-01\\n-2.82466263e-01 1.49940550e-02 2.04385206e-01 3.18277702e-02\\n-4.12185997e-01 -1.55226499e-01 2.01964095e-01 2.89694726e-01\\n-2.10780442e-01 -2.90206701e-01 -1.40937626e-01 -8.90241444e-01\\n2.09370106e-01 1.29689768e-01 -1.32999614e-01 7.88515955e-02\\n-4.85056378e-02 -6.05439246e-01 1.15587041e-01 -3.82334679e-01\\n-1.10686511e-01 4.31540720e-02 -1.96580812e-01 -4.52483773e-01\\n9.44392197e-03 -9.59797353e-02 -2.96589166e-01 3.68888438e-01\\n-5.24638832e-01 2.51528233e-01 -8.31307620e-02 1.09339334e-01\\n-3.78954294e-03 -3.10454100e-01 1.31201014e-01 -4.12992567e-01\\n-4.06429768e-01 -2.21933320e-01 -3.28845620e-01 -2.87652284e-01\\n4.12375852e-02 -3.01370919e-01 -1.28426310e-02 1.36909828e-01\\n3.18212390e-01 9.65859070e-02 -1.53924912e-01 -3.17425162e-01\\n5.29376231e-02 -4.99999404e-01 3.60145085e-02 2.44938210e-02\\n3.30164880e-02 -1.45108756e-02 2.09559023e-01 3.21212821e-02\\n1.21268444e-01 -3.59512419e-01 3.74653071e-01 -4.58422154e-01\\n-2.69202232e-01 -1.28728407e-03 -2.49122567e-02 -9.84800458e-02\\n3.10582310e-01 -5.39216280e-01 8.51636976e-02 3.05169255e-01\\n2.00447991e-01 -7.58894235e-02 2.18195140e-01 -4.44645854e-03\\n-1.27179585e-02 3.42004001e-01 -3.51436794e-01 1.12229630e-01\\n7.09348500e-01 7.95115903e-02 1.93998113e-01 2.28873149e-01\\n9.08756852e-02 3.54086876e-01 4.49341387e-01 -5.33851385e-02\\n-1.63995713e-01 2.74579048e-01 1.38879880e-01 -5.56289911e-01\\n4.90116663e-02 -5.14687374e-02 -2.56283760e-01 -1.64354086e-01\\n6.87093556e-01 3.72168183e-01 -3.40713054e-01 -3.12146634e-01\\n-4.00387198e-02 -2.94105947e-01 2.02030346e-01 -1.25642255e-01\\n-1.05589509e-01 -8.34729448e-02 4.24401820e-01 -1.08517811e-01\\n2.97968239e-01 5.94153047e-01 -3.20702761e-01 -3.10925275e-01\\n6.66216463e-02 3.03252161e-01 -2.32971087e-02 4.29299235e-01\\n-2.27434739e-01 2.68433392e-01 -4.45189476e-02 1.00190096e-01\\n2.28793174e-02 2.01676100e-01 1.72263756e-01 3.42686549e-02\\n1.83035672e-01 9.06133186e-03 4.52964962e-01 5.54563344e-01\\n3.33655357e-01 4.43002820e-01 3.47506404e-01 1.38530415e-02\\n5.08332014e-01 5.86554587e-01 4.80391204e-01 2.18267366e-01\\n4.91118878e-02 1.01991951e-01 6.60607591e-02 1.31986842e-01\\n3.01449805e-01 4.02481437e-01 1.16064169e-01 1.05228519e+00\\n4.01126266e-01 1.23936668e-01 6.64973319e-01 -6.24506831e-01\\n-3.59754980e-01 -7.28712305e-02 4.79474872e-01 -3.40455800e-01\\n-3.11607569e-02 5.54845445e-02 -1.79173484e-01 1.91193312e-01\\n-2.41364285e-01 -1.78781360e-01 -1.00161411e-01 2.65863597e-01\\n7.55129606e-02 -8.25018622e-03 -2.24792480e-01 -1.59826241e-02\\n-1.81215122e-01 -1.62647367e-01 -5.09552538e-01 2.91054486e-03\\n-2.37833008e-01 -2.32388318e-01 -1.66279852e-01 -6.99948967e-02\\n-2.14163393e-01 -4.57794935e-01 -1.27591521e-01 -3.47464392e-03\\n2.62957543e-01 -1.84498414e-01 -1.09867990e-01 -1.60784528e-01\\n2.95964807e-01 2.78353661e-01 5.40895104e-01 1.29721090e-02\\n-4.39452194e-02 -1.71186939e-01 -1.50675640e-01 1.18822522e-01\\n1.41475365e-01 1.66392073e-01 1.04544498e-01 3.69029045e-01\\n-2.47905090e-01 -1.00741833e-01 6.21569715e-02 3.67218375e-01\\n-4.99716789e-01 -1.53570920e-01 -1.47118658e-01 2.12147534e-01\\n-3.96226421e-02 1.21502995e-01 -1.53419912e-01 1.43974453e-01\\n-1.96815893e-01 -4.68812078e-01 3.35340858e-01 -1.80258989e-01\\n-1.56984881e-01 1.69272408e-01 1.90120324e-01 2.89518297e-01\\n-2.15707332e-01 8.77121836e-02 -2.53063627e-02 1.88329935e-01\\n8.51617232e-02 3.43941301e-01 -3.39311570e-01 -2.23651543e-01\\n-3.58946532e-01 4.79786582e-02 -2.92482972e-01 9.04521272e-02\\n-9.69715640e-02 3.01740915e-01 1.70857057e-01 5.14825247e-02\\n4.41886991e-01 2.15208940e-02 -1.53604358e-01 -2.65348077e-01\\n-2.00167745e-01 -1.66658074e-01 6.96220342e-03 -1.53192490e-01\\n9.90408882e-02 -2.38417327e-01 -2.66737603e-02 -8.00046027e-02\\n-1.10075206e-01 -3.97319824e-01 -7.23454729e-02 -7.31881112e-02]]',\n", + " 'job_description': 'Software Engineer - Front End, JavaScript, TypeScript, React, Angular, CSS, Lausanne One of our leading customers in the Lausanne area is looking for a Software engineer with strong Front End skills to join their R&D team. This business works with a range of companies to help create highly productive digital workplaces. Through a unique combination of real-time analytics, automation and more they can significantly improve the digital employee experience. In this role, you would be responsible for designing, implementing and validating solutions for new features in the Frontend department, whilst maintaining the highest code quality standards by using different metrics. You would help to bring high de-coupling of different frontend components by working with an agile incremental mindset. My customer is ideally looking for someone who has strong experience in Software Engineering with proven Front-end experience. This means a strong background in web technologies with Mobile technology experience being a plus. You would need to have a good programming background in one or more of the following : JavaScript, TypeScript, Java and scala Strong experience with Libraries and frameworks like Angular, jQuery with React being a big plus. Any experience or knowledge with CSS, micro-services, containers and REST is a plus If you are interested in this role and would like to work for an innovative, growing business, please apply as soon as possible and we shall arrange a call at a suitable time to discuss further. Jacob.webster@darwinrecruitment.com',\n", + " 'soft_skills': '[\"Innovation\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Automation\", \"Agility\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Analytics\", \"TypeScript\", \"Scala (Programming Language)\", \"Component Object Model (COM)\", \"Digital Productions\", \"Maintainability\", \"Library\", \"Idealization\", \"Software Engineering\", \"Mobility\", \"React.js\", \"JQuery\", \"Digitization\", \"JavaScript (Programming Language)\", \"Coupling\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Validations\", \"Java (Programming Language)\"]',\n", + " 'languages': \"['English', 'Hebrew', 'Azerbaijani', 'Polish']\"},\n", + " {'company_id': '94',\n", + " 'job_title': 'saas & open-data development engineers',\n", + " 'location': 'Rolle',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.84736553e-02 2.41919011e-01 6.12432182e-01 1.17697574e-01\\n6.16215467e-01 -6.42231181e-02 -1.31970704e-01 5.38616717e-01\\n-1.32668704e-01 -3.84660423e-01 3.77689451e-02 -3.60987097e-01\\n-6.04589283e-02 2.30093494e-01 1.72765180e-01 4.34548855e-01\\n1.83192998e-01 3.63055579e-02 -1.65740162e-01 2.67881513e-01\\n1.02243528e-01 -4.69515361e-02 3.48026693e-01 7.76968122e-01\\n3.32396507e-01 -1.38146371e-01 -6.98562413e-02 6.62104115e-02\\n-2.60016054e-01 -8.67173597e-02 4.17284906e-01 1.27730161e-01\\n-3.32209557e-01 -4.02919441e-01 1.16316535e-01 5.55696450e-02\\n-2.37498611e-01 -1.31318599e-01 -2.92957388e-02 1.12921357e-01\\n-5.80412507e-01 -3.28383714e-01 -8.09447616e-02 6.74306750e-02\\n-3.46572906e-01 -2.44941428e-01 9.31661949e-03 -1.86708309e-02\\n1.03522837e-01 1.03569023e-01 -5.14847040e-01 1.23196423e-01\\n-1.12720743e-01 -3.01769853e-01 2.20641196e-01 6.71360672e-01\\n6.81209117e-02 -4.06091511e-01 -4.51120973e-01 -3.24904770e-01\\n9.17415917e-02 -1.12229757e-01 6.13092072e-02 -3.56677771e-01\\n3.03087562e-01 -5.87963350e-02 1.64652560e-02 1.93191841e-01\\n-6.93414032e-01 2.38288473e-02 -2.33804762e-01 -1.47518933e-01\\n-3.15329462e-01 6.18902817e-02 -2.97626495e-01 -2.42492035e-01\\n-1.44667029e-01 4.33701217e-01 1.31305158e-01 1.11019388e-01\\n-1.50597528e-01 2.47312263e-01 -1.04015507e-01 3.70837659e-01\\n1.78832054e-01 3.69158030e-01 2.23606929e-01 3.22638959e-01\\n-3.73376667e-01 4.07187790e-01 1.23610720e-01 -2.65248090e-01\\n2.37748519e-01 1.79369792e-01 2.60767937e-01 -3.19731198e-02\\n1.99742496e-01 -3.80939171e-02 -3.38774532e-01 2.55127251e-01\\n1.66170642e-01 -4.89973366e-01 1.56059548e-01 -1.37409851e-01\\n-2.91071110e-03 -9.35484562e-03 5.29987477e-02 1.72150329e-01\\n-3.07736784e-01 3.31511438e-01 -9.75141581e-03 -1.83410212e-01\\n-6.16281517e-02 -4.30995047e-01 -1.41203254e-01 5.74008711e-02\\n4.13490981e-02 2.14751825e-01 2.29491144e-01 1.36725515e-01\\n2.72884190e-01 4.15500924e-02 2.00089261e-01 8.26575220e-01\\n-1.01523191e-01 1.22595973e-01 -2.15934291e-01 2.78273314e-01\\n1.04444064e-01 -3.02430749e-01 2.50487655e-01 2.11041972e-01\\n-4.98010106e-02 -9.42349657e-02 -2.13046059e-01 2.54772991e-01\\n2.46972758e-02 -2.07937703e-01 -2.51234353e-01 1.31882638e-01\\n6.11384101e-02 -4.97514218e-01 5.43788254e-01 8.31065923e-02\\n1.56877622e-01 -1.19561953e-02 -6.43652305e-02 -9.73375663e-02\\n-2.58714594e-02 2.39994973e-01 1.08834561e-02 1.40085697e-01\\n-2.57190377e-01 -1.34198502e-01 -2.20970795e-01 -5.64923510e-02\\n-4.84618783e-01 1.74180657e-01 -2.61870492e-03 -9.50599611e-02\\n2.02970713e-01 -4.20724228e-02 -2.46544674e-01 3.05305272e-01\\n-2.90376037e-01 -1.57171533e-01 1.00669160e-01 3.03827971e-01\\n-3.33609164e-01 1.24858879e-01 -4.12712581e-02 -2.41804451e-01\\n4.68797714e-01 1.51310444e-01 3.22709411e-01 5.13660572e-02\\n2.20861048e-01 -7.63877109e-02 1.25798220e-02 2.25749254e-01\\n-6.80219054e-01 3.12701553e-01 9.46367458e-02 -2.03057796e-01\\n2.09997013e-01 -9.98928025e-02 2.42035434e-01 -2.14426339e-01\\n1.05195731e-01 -1.19733736e-01 -3.10576200e-01 -2.43693173e-01\\n-2.50029624e-01 -1.11449482e-02 3.08066875e-01 -5.88151038e-01\\n-8.85183588e-02 -6.81326771e-03 -4.59642947e-01 -1.65356681e-01\\n8.05867016e-02 2.61000484e-01 8.85389671e-02 -6.61543459e-02\\n-1.77584067e-01 -4.06854153e-01 4.10916144e-03 -3.55987817e-01\\n-1.66966155e-01 -2.51327865e-02 -3.42965454e-01 1.76653370e-01\\n5.54593652e-02 -3.25680003e-02 -9.56261456e-02 -9.40824579e-03\\n-2.53544331e-01 7.96341375e-02 1.03581689e-01 6.38189167e-02\\n3.22969556e-01 1.15117999e-02 -2.08913103e-01 5.06031156e-01\\n-1.80207267e-01 6.66844666e-01 1.73181459e-01 -8.14377546e-01\\n4.54653323e-01 2.86863357e-01 -1.07230963e-02 -2.92135686e-01\\n6.37848198e-01 -3.75582367e-01 -8.85041524e-03 1.87342823e-01\\n-3.45231771e-01 -2.83567667e-01 1.51937395e-01 -2.25106969e-01\\n-2.58491546e-01 5.26574135e-01 1.42717451e-01 1.70898438e-01\\n2.14334786e-01 -3.03610891e-01 -6.75523803e-02 -8.32155868e-02\\n-1.54264092e-01 -3.83195549e-01 -5.73028982e-01 -6.55015782e-02\\n-1.25790730e-01 -3.36801231e-01 -1.47425279e-01 -4.62748349e-01\\n-9.27001834e-02 -4.03450519e-01 -2.65678197e-01 1.94546476e-01\\n2.13997319e-01 1.17348842e-01 -4.25942205e-02 1.22979367e-02\\n-9.76544321e-02 -6.76535070e-01 -8.29224885e-02 5.83552606e-02\\n4.43315655e-01 1.14559479e-01 2.77244925e-01 -1.28652334e-01\\n1.65955558e-01 6.53477192e-01 -1.71655521e-01 -3.07079434e-01\\n1.43087879e-01 2.78428346e-01 1.68222748e-02 -2.66479850e-02\\n3.05576324e-01 2.89223909e-01 -2.62924641e-01 2.34096106e-02\\n-1.91415884e-02 1.05153278e-01 2.40348488e-01 1.25994071e-01\\n-2.08174571e-01 -2.31274411e-01 7.44361654e-02 2.25542650e-01\\n-4.92674112e-01 -2.38332406e-01 5.76628327e-01 1.89323768e-01\\n1.72084689e-01 1.17254898e-01 1.26011491e-01 -1.54321223e-01\\n-6.75572753e-02 -1.61565736e-01 3.12038869e-01 1.21914983e-01\\n1.64828986e-01 4.59882095e-02 5.60047068e-02 -5.16435623e-01\\n-3.68510103e+00 -2.04643905e-01 1.15050748e-01 -1.39377043e-01\\n2.25725040e-01 -1.56521946e-01 1.81444034e-01 6.03725575e-02\\n-2.73012012e-01 8.79794806e-02 -3.70080732e-02 -2.01254904e-01\\n2.38678962e-01 1.67655721e-01 1.16300568e-01 3.35585594e-01\\n1.83759972e-01 -2.25459978e-01 -2.91225165e-02 4.49460089e-01\\n-1.60301223e-01 -7.04077303e-01 1.49113461e-01 9.12655378e-04\\n2.50079185e-01 1.75658807e-01 -2.26983413e-01 -1.39011815e-01\\n-1.59145996e-01 -2.46197671e-01 3.44767347e-02 -3.23523790e-01\\n-1.21446028e-01 3.80035192e-01 1.86080128e-01 -6.75055906e-02\\n9.49894413e-02 -3.48343015e-01 -2.33039573e-01 -3.63653660e-01\\n5.97209223e-02 -5.22657275e-01 2.36434229e-02 -5.33922091e-02\\n6.37204826e-01 -3.07620466e-01 2.31776059e-01 1.63289651e-01\\n1.16568752e-01 1.62227869e-01 1.37857303e-01 -4.81144451e-02\\n-1.36183485e-01 -3.80989969e-01 -4.40786481e-02 -2.41421148e-01\\n5.02203763e-01 4.73702669e-01 -9.83978510e-02 8.17500278e-02\\n8.24889317e-02 -1.00262851e-01 -4.55879271e-01 -3.48340064e-01\\n-1.40129134e-01 -1.73357055e-01 -6.14194393e-01 -3.46351296e-01\\n-7.30605051e-02 -2.31972501e-01 -1.35276854e-01 4.15082425e-01\\n-2.48057410e-01 -4.22986895e-01 -1.10082425e-01 -4.02447820e-01\\n4.98986453e-01 -8.01795423e-02 -8.19751695e-02 -1.77903876e-01\\n-3.06175083e-01 -4.51508850e-01 7.00418726e-02 5.60297556e-02\\n-1.37117594e-01 -2.48543158e-01 8.51005539e-02 -1.93365633e-01\\n-2.53347397e-01 -5.42094886e-01 4.91929710e-01 1.91351861e-01\\n3.88246030e-01 2.44157195e-01 3.35294843e-01 4.24858630e-02\\n2.36765862e-01 -1.30596459e-02 6.96509182e-02 -5.09429812e-01\\n-9.48905386e-03 1.50178969e-01 3.84478986e-01 -2.33487189e-01\\n-7.02647343e-02 5.68344593e-02 -2.13667691e-01 -8.05243030e-02\\n2.36583889e-01 -8.08320493e-02 1.11165784e-01 -1.00594193e-01\\n1.90627620e-01 -4.13162857e-01 -8.43930915e-02 1.21284667e-02\\n1.70217544e-01 6.26987398e-01 2.14895941e-02 -2.68700600e-01\\n-2.38965496e-01 6.31770074e-01 -1.30366474e-01 5.45745008e-02\\n-1.47044957e-01 8.67952630e-02 -2.01769859e-01 3.55974704e-01\\n-2.22864635e-02 -1.99969009e-01 -1.95707530e-01 -9.51852873e-02\\n-7.49362037e-02 2.82125622e-01 2.48614430e-01 8.22490677e-02\\n-3.91706564e-02 -4.08989966e-01 -7.48946741e-02 1.64007694e-01\\n2.83557922e-01 4.55308974e-01 6.03033565e-02 -1.59257561e-01\\n6.31423220e-02 3.57733667e-01 -2.71562994e-01 3.77787858e-01\\n-1.64666668e-01 1.26144394e-01 -6.03301287e-01 -3.17716330e-01\\n-3.47856581e-01 -2.79778987e-01 1.10520743e-01 2.84208000e-01\\n2.91715264e-01 -1.45216689e-01 1.40227275e-02 -4.95666593e-01\\n2.70140141e-01 7.16601461e-02 2.20344976e-01 1.04493171e-01\\n-5.39024696e-02 5.85934341e-01 1.65063702e-02 -6.02708682e-02\\n-2.38422398e-03 6.71600597e-03 -2.37283304e-01 -1.66704476e-01\\n5.08234948e-02 -4.92127687e-01 -2.53342599e-01 3.41810942e-01\\n1.59900710e-01 -4.24070001e-01 -2.68969983e-01 2.13717654e-01\\n7.50737786e-02 -2.27821589e-01 -3.24028492e-01 -6.61231298e-03\\n4.42440689e-01 1.45678639e-01 3.13613474e-01 -4.67149824e-01\\n-1.12178195e-02 7.18855634e-02 6.64622039e-02 4.66007918e-01\\n5.51713025e-03 -1.26265669e-02 -3.20396274e-02 -3.17635536e-01\\n4.47322935e-01 -1.50988325e-01 -1.68358177e-01 -3.33357863e-02\\n4.13880013e-02 -1.05511412e-01 -2.82702744e-01 6.04886040e-02\\n-1.16127856e-01 -3.03594172e-01 -6.26671612e-02 2.03018695e-01\\n1.83796227e-01 -2.95599774e-02 -5.65331638e-01 -3.25130701e-01\\n-2.91991740e-01 -2.10357551e-02 -2.09628493e-02 -3.67239952e-01\\n5.04770912e-02 -9.24000815e-02 -5.30682743e-01 2.08150864e-01\\n-1.51941746e-01 -7.75992721e-02 1.04340725e-01 9.44974422e-02\\n-3.33798975e-01 -1.01228140e-01 1.33059815e-01 2.66825765e-01\\n-3.21399778e-01 -3.43650460e-01 -6.54718503e-02 -7.51138926e-01\\n1.62022933e-01 8.36727098e-02 -1.15217365e-01 1.95982754e-01\\n-1.19607836e-01 -6.26854956e-01 6.60106540e-02 -2.65399069e-01\\n-2.20683664e-01 -2.26165712e-01 -3.15830946e-01 -3.78129840e-01\\n5.39277904e-02 6.49655312e-02 -2.36118942e-01 5.56347489e-01\\n-3.81152928e-01 2.56314486e-01 -7.96183646e-02 4.68397513e-02\\n1.72613356e-02 -2.08499610e-01 2.12732181e-01 -4.15350348e-01\\n-3.55430871e-01 -8.42158422e-02 -3.39894950e-01 -3.17642242e-01\\n-1.93699718e-01 -2.35852674e-01 8.16843566e-03 -7.09362775e-02\\n3.32020283e-01 1.07818626e-01 -1.32470295e-01 -2.26608410e-01\\n1.38176680e-01 -3.49356353e-01 1.51823595e-01 -4.59957086e-02\\n-8.19065049e-02 -1.00773856e-01 1.95760444e-01 6.50079250e-02\\n1.43086642e-01 -3.80741417e-01 2.65167475e-01 -4.40859646e-01\\n-3.23772490e-01 -2.09869534e-01 4.87224460e-02 -1.52072906e-02\\n1.62997901e-01 -5.91819942e-01 5.11376821e-02 1.73154294e-01\\n1.80089161e-01 -3.11979856e-02 3.00230235e-01 -8.87090936e-02\\n-1.05823286e-01 3.49404603e-01 -2.96149760e-01 4.22173403e-02\\n7.77066231e-01 1.09981678e-01 1.27380446e-01 2.90766448e-01\\n4.59263921e-02 1.73994601e-01 3.73097211e-01 9.55682322e-02\\n-8.30591545e-02 2.24705219e-01 1.89638421e-01 -4.55141872e-01\\n-1.00246727e-01 -4.87681068e-02 -1.74890444e-01 -5.11940002e-01\\n6.68703973e-01 3.47757995e-01 -4.26182002e-01 -2.17257574e-01\\n-1.64822757e-01 -1.07148722e-01 2.54087269e-01 -1.47430524e-01\\n-2.87761502e-02 -8.11498165e-02 4.20388699e-01 -3.27016115e-02\\n4.01613861e-01 5.60621262e-01 -1.66709617e-01 -1.95246652e-01\\n-9.10776332e-02 1.88937187e-01 1.67197540e-01 3.59142512e-01\\n-2.30399117e-01 4.22232628e-01 4.30427678e-02 1.42647967e-01\\n-6.48752749e-02 2.64208585e-01 8.52646455e-02 1.48579031e-01\\n1.23587020e-01 4.66456935e-02 4.33193743e-01 4.59638149e-01\\n2.26324245e-01 3.98176759e-01 3.37446034e-01 1.55141249e-01\\n3.14384997e-01 3.97590697e-01 2.74339944e-01 1.04928561e-01\\n7.24257603e-02 3.88792157e-02 1.23805352e-01 -5.80965504e-02\\n2.13122964e-01 4.22387719e-01 1.36452481e-01 8.81558657e-01\\n2.89816082e-01 2.85555631e-01 7.15859413e-01 -6.31844938e-01\\n-3.64297390e-01 -4.20741476e-02 4.30441201e-01 -4.68447536e-01\\n-1.09320067e-01 8.48481655e-02 -7.84363598e-02 2.46285096e-01\\n-4.01375502e-01 -1.64868042e-01 -2.24386752e-02 1.56669080e-01\\n-3.50819714e-02 -2.72874743e-01 -1.08179636e-01 1.21395297e-01\\n-6.77747205e-02 3.43343541e-02 -4.33771253e-01 -2.11069316e-01\\n-1.99396610e-01 -2.85828531e-01 -3.34845006e-01 -5.63718416e-02\\n-1.00726865e-01 -3.20283741e-01 -3.81402075e-02 -2.51298565e-02\\n2.81315476e-01 -3.21915485e-02 -7.25777224e-02 -1.84683770e-01\\n3.78435820e-01 1.55084729e-01 5.29626906e-01 -1.17577322e-01\\n2.12729409e-01 -1.15181141e-01 -1.74979821e-01 3.32621597e-02\\n1.71367526e-01 5.24305478e-02 -4.40387763e-02 2.06716865e-01\\n-2.54046082e-01 -1.07604459e-01 1.70961127e-01 1.84873760e-01\\n-4.32809472e-01 8.43826309e-02 -9.10341218e-02 1.38509825e-01\\n6.28625508e-03 1.02476016e-01 -2.58667499e-01 2.93790270e-02\\n-2.50913560e-01 -5.01246333e-01 3.05110931e-01 -3.14081937e-01\\n-7.71127418e-02 1.12704739e-01 3.78800213e-01 3.17042619e-01\\n-1.24185815e-01 8.15732330e-02 -4.62666750e-02 6.35132119e-02\\n3.96923572e-02 1.50955692e-01 -1.87291533e-01 -2.22348362e-01\\n-4.00322109e-01 9.14957225e-02 -1.98645294e-01 7.54148886e-02\\n4.54623438e-02 4.27334279e-01 1.41853422e-01 3.90491746e-02\\n3.97987515e-01 -1.40597627e-01 -2.23483115e-01 -2.70711303e-01\\n-2.68504232e-01 -6.37652203e-02 -1.10278949e-01 -5.43282293e-02\\n1.98959157e-01 -2.56295085e-01 -3.69881354e-02 -1.92600414e-01\\n-4.39222865e-02 -3.32336396e-01 6.70754462e-02 -1.82466760e-01]]',\n", + " 'job_description': \"You have hands-on experience developing, deploying or managing operating cloud-based services SAAS applications. You have been exposed to one or several IAAS & PAAS infrastructures such as AWS, GE-Digital Predix, IBM-BlueMix/Watson, VMware... You are experienced in finding and structuring and collecting different data streams (weather, finance, industrial signals, social events). You strongly believe automated machine learning and artificial intelligence coupled with big data can change the game in many industrial sectors. You worked open-data correlations with industrial signals, weather, events, calendar, financial markets, economic indicators. You applied it to real use case in operations and markets, for energy, utilities, industry, retail, transport or freight sectors. You cooperate with leading partners like GE - Digital, IBM-Analytics, Cisco-IOT with Industry leader customers in EU & US & Asia, like Arcelor, EDF, ALPIQ, ELIOR, METRO... Predictive Layer will bring you a unique opportunity to develop, deploy, or operate leading-edge predictive services for different customers worldwide, on different markets: Energy, Industry, retail, Catering, Transport and many more... At Predictive Layer, We cultivate a team-based environment where we strive for personal growth and a substantial contribution from all our team members. If you desire a career where you can drive innovation while working in an dynamic environment where innovative thinking, creativity and motivation are recognized and rewarded, then come and join us! Back to opportunities Send us your resume - Let's meet! careers@predictivelayer.com Position reference: #2017-OOE-003\",\n", + " 'soft_skills': '[\"Cooperation\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Innovation\", \"Socialization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Automation\", \"Collections\", \"Analytics\", \"Data Streaming\", \"Prediction\", \"Industrialization\", \"IBM Bluemix\", \"Energy Market\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Component Object Model (COM)\", \"Layering\", \"Weathering\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Cloud Operations\", \"Predix\", \"Financial Market\", \"Machine Learning Methods\", \"Finance\", \"Digitization\", \"Personalization\", \"Cisco Networking\", \"Location-Based Services\", \"Artificial Intelligence\", \"Big Data\", \"Coupling\", \"Operations Management\", \"Economic Indicators\", \"Cultivator\"]',\n", + " 'languages': \"['English', 'Cornish', 'Esperanto', 'German', 'Bengali']\"},\n", + " {'company_id': '9',\n", + " 'job_title': 'software engineer backend (m/w)',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.09588939e-01 3.53977472e-01 3.76809657e-01 -7.97372609e-02\\n3.86109412e-01 -2.18868315e-01 -4.56952713e-02 4.92449939e-01\\n-1.11506663e-01 -3.70523840e-01 -6.71701431e-02 -2.23877981e-01\\n-1.67698145e-01 5.79392575e-02 1.56673595e-01 3.58065605e-01\\n2.99305230e-01 1.31248459e-01 -2.14176953e-01 3.80015284e-01\\n8.25560838e-02 -8.59833360e-02 -2.83666942e-02 6.63735986e-01\\n3.03802878e-01 2.84423213e-02 -3.44149023e-02 -8.46213102e-02\\n-2.82238454e-01 -2.07219303e-01 3.54496300e-01 5.60077094e-03\\n-6.89964443e-02 -3.42943102e-01 9.19430554e-02 7.56266713e-02\\n-1.47413090e-01 3.53634655e-02 -2.36538257e-02 1.34321436e-01\\n-4.47326750e-01 -2.01077312e-01 2.11073399e-01 -2.72567337e-03\\n-1.31350085e-01 -3.98559481e-01 2.36390904e-01 -4.78912555e-02\\n1.13416471e-01 -1.35085965e-02 -6.85292482e-01 1.62851706e-01\\n-3.02356482e-01 -2.05522880e-01 4.12076473e-01 4.54081088e-01\\n5.75623102e-02 -4.85956311e-01 -4.84751880e-01 -3.34775031e-01\\n8.47035721e-02 -8.94995704e-02 9.58922505e-02 -3.74082088e-01\\n3.49215090e-01 1.19355589e-01 2.36970205e-02 3.73585284e-01\\n-8.09799850e-01 -5.26394472e-02 -1.97598115e-01 -3.75514068e-02\\n-4.56857324e-01 -2.21681312e-01 -2.82854706e-01 -3.14322151e-02\\n-1.06122546e-01 3.22846234e-01 -7.73782358e-02 6.90491349e-02\\n-1.70771867e-01 3.56611311e-01 -1.88694984e-01 4.72818404e-01\\n2.36417904e-01 1.88856408e-01 2.21740007e-01 3.82991165e-01\\n-3.92668724e-01 3.93701613e-01 2.18303025e-01 -2.79927939e-01\\n3.19552273e-01 4.04363163e-02 4.26905215e-01 2.52112560e-02\\n2.23859206e-01 1.09575085e-01 -2.54584134e-01 2.31614262e-01\\n2.15045586e-01 -2.50346452e-01 -1.31427601e-01 -1.45237774e-01\\n-3.65283340e-03 -2.59867101e-03 8.69962946e-03 2.37902790e-01\\n-1.93462595e-01 4.75418568e-01 2.51735002e-01 -1.21296667e-01\\n-1.05807282e-01 -5.26170552e-01 -9.73739401e-02 5.48740551e-02\\n-6.80509433e-02 4.88583595e-02 2.33428657e-01 1.22526482e-01\\n2.53239810e-01 6.17773682e-02 7.50501826e-02 8.69464695e-01\\n-8.79050121e-02 4.22566533e-02 -1.90922767e-01 3.82644087e-01\\n7.15236813e-02 -3.31572294e-01 8.63230154e-02 3.62228423e-01\\n1.20909728e-01 -1.52072728e-01 -1.78286970e-01 2.95595109e-01\\n-4.96928059e-02 -1.64546043e-01 -3.03301692e-01 8.57781693e-02\\n-1.41552716e-01 -5.21402597e-01 5.25555432e-01 8.79097655e-02\\n2.10065573e-01 6.48114234e-02 1.07701160e-01 -1.24945618e-01\\n-1.83591738e-01 1.93015814e-01 3.16089652e-02 2.11641788e-01\\n-2.81513840e-01 -2.94532567e-01 -2.26535931e-01 1.29564390e-01\\n-1.77221492e-01 1.18093163e-01 -6.23493381e-02 -1.13362864e-01\\n4.00769413e-01 5.84406070e-02 -3.93608004e-01 2.75057971e-01\\n-1.35527030e-02 7.91321620e-02 -1.57444581e-01 3.32714617e-01\\n5.11568934e-02 2.57208169e-01 8.17857832e-02 -7.16295317e-02\\n5.13015926e-01 5.89297712e-02 2.36508265e-01 -4.69877049e-02\\n3.98690253e-01 -1.14578038e-01 1.89958602e-01 5.21120355e-02\\n-6.23266220e-01 2.27140695e-01 -1.29885599e-02 -5.92732094e-02\\n1.01415418e-01 -5.70460281e-04 2.64854670e-01 -2.73588777e-01\\n8.12515691e-02 -1.38104349e-01 -4.48479056e-01 -3.08784008e-01\\n-2.87749738e-01 1.76270548e-02 4.56205338e-01 -3.95314127e-01\\n-1.41020164e-01 1.69671863e-01 -5.19107938e-01 -6.58958480e-02\\n2.44297341e-01 2.50703007e-01 1.05452664e-01 1.21496439e-01\\n-2.02490240e-01 -5.41628778e-01 6.07674569e-02 -4.79461104e-01\\n-4.31516707e-01 1.82647467e-01 -3.28045070e-01 1.81617320e-01\\n1.43425971e-01 -9.41272527e-02 -1.13464572e-01 7.02138469e-02\\n-2.49530360e-01 -1.33739248e-01 1.74917653e-01 9.55125391e-02\\n2.93781549e-01 -5.27568050e-02 -3.58724773e-01 5.17399967e-01\\n-1.64891437e-01 4.62800086e-01 7.47939125e-02 -8.52720559e-01\\n5.30289710e-01 4.17294741e-01 6.39415234e-02 -4.50185597e-01\\n5.95183194e-01 -3.10093790e-01 -5.67182302e-02 1.76095709e-01\\n-4.07054991e-01 -4.27787662e-01 2.47389525e-01 -1.25406101e-01\\n-2.52051502e-01 5.25710285e-01 5.02705090e-02 7.90504962e-02\\n2.63428062e-01 -3.12214673e-01 -1.89260647e-01 6.56605065e-02\\n-1.24992117e-01 -1.63137004e-01 -5.51456153e-01 6.42404780e-02\\n-6.81491867e-02 -5.13618588e-01 -1.45569310e-01 -3.61825168e-01\\n-2.03439265e-01 -3.91297013e-01 -3.26193660e-01 3.58578384e-01\\n1.61247373e-01 1.29636303e-01 -6.57431856e-02 1.28453150e-01\\n-1.29621506e-01 -5.99448323e-01 8.05152878e-02 1.30839869e-01\\n4.30480033e-01 1.23595923e-01 1.14451595e-01 -7.00612962e-02\\n-7.57485703e-02 5.73696971e-01 -3.06785762e-01 -2.34990969e-01\\n1.15763508e-01 2.11738825e-01 -1.06323715e-02 -1.43066451e-01\\n1.04536064e-01 3.24733496e-01 -3.21196645e-01 -4.10941467e-02\\n-1.43590420e-01 -2.91470364e-02 3.71725380e-01 -1.81908756e-01\\n-4.28511560e-01 -2.84574598e-01 -9.74958614e-02 1.76387012e-01\\n-5.44603467e-01 -2.27220550e-01 6.02471948e-01 2.76421964e-01\\n1.18041478e-01 1.94053158e-01 2.71325976e-01 -9.24557671e-02\\n-2.65710652e-01 -3.86517137e-01 2.88857937e-01 1.84291735e-01\\n1.37646988e-01 1.31242454e-01 -1.91350833e-01 -5.97491264e-01\\n-3.23715281e+00 -1.15003020e-01 2.48236299e-01 -2.41898566e-01\\n2.34865636e-01 -3.49950232e-02 9.82355773e-02 -4.53094244e-02\\n-2.67676234e-01 -3.48431319e-02 -1.99626416e-01 -1.26414761e-01\\n9.47018936e-02 3.65055621e-01 9.24764946e-02 1.63285449e-01\\n2.35818177e-01 -2.32232571e-01 7.57715479e-03 2.78240949e-01\\n-2.02137455e-01 -6.94799840e-01 1.78741083e-01 -1.16198801e-01\\n2.09937811e-01 3.84085059e-01 -2.76781678e-01 -1.25744343e-01\\n-1.59148708e-01 -2.15365320e-01 8.64176452e-02 -2.73608834e-01\\n-8.86897519e-02 1.92434788e-01 1.26364231e-01 -5.02105951e-02\\n7.23450407e-02 -3.90691012e-01 -1.41346902e-01 -5.60883105e-01\\n1.56694010e-01 -6.19566202e-01 8.97517651e-02 -1.65568754e-01\\n7.13032365e-01 -3.52395564e-01 5.41938432e-02 7.51003101e-02\\n1.73547879e-01 1.80168658e-01 -2.19061337e-02 1.23705296e-02\\n-3.22736800e-01 -3.54511946e-01 -8.05425420e-02 -2.66410023e-01\\n5.63354909e-01 4.19682980e-01 -2.48007834e-01 -3.39332931e-02\\n1.78986996e-01 -2.24188119e-01 -4.33510900e-01 -3.15909088e-01\\n-1.48620009e-01 -1.67560950e-01 -6.60619140e-01 -4.26278859e-01\\n-1.04835935e-01 -1.49283409e-01 -8.74210000e-02 7.15258658e-01\\n-3.07278872e-01 -3.85980248e-01 1.75549816e-02 -6.92957997e-01\\n1.69897854e-01 -2.14151651e-01 4.77288701e-02 -1.97633356e-01\\n-2.03085423e-01 -4.49166805e-01 3.89887504e-02 2.47536637e-02\\n-1.87829986e-01 -9.82045978e-02 8.72114301e-02 -1.13026634e-01\\n-2.75799125e-01 -5.53627670e-01 4.70937490e-01 1.54341623e-01\\n3.19041699e-01 1.69533432e-01 2.44624689e-01 -5.14727123e-02\\n3.97006959e-01 -5.11348397e-02 -6.32585883e-02 -4.03755069e-01\\n2.26712242e-01 8.70319605e-02 5.69442451e-01 -2.22122848e-01\\n2.43532844e-02 2.93975025e-01 -1.68566391e-01 -1.47208825e-01\\n4.66594398e-01 1.46925142e-02 8.75635818e-02 -2.32631937e-01\\n4.12977993e-01 -5.26539385e-01 -2.73449451e-01 2.03315839e-01\\n7.43526816e-02 6.20340049e-01 -1.21451903e-03 -4.36850518e-01\\n-1.50859818e-01 6.08619213e-01 -4.66704555e-02 -5.92083409e-02\\n-1.71394408e-01 1.64263368e-01 -1.66789517e-01 1.80495754e-01\\n1.04756765e-01 -1.66501135e-01 -2.85801381e-01 -7.95282423e-02\\n-7.58536905e-02 2.26842567e-01 1.56926945e-01 1.39817253e-01\\n-3.83481048e-02 -4.09494877e-01 -9.36418623e-02 1.27841875e-01\\n2.34541148e-01 4.52518046e-01 -1.40752690e-02 -2.23636061e-01\\n-3.01932842e-02 3.35671335e-01 -1.27867222e-01 1.83084950e-01\\n-2.32367977e-01 1.53489783e-01 -4.73929852e-01 -2.92540550e-01\\n-2.79559016e-01 -3.39252383e-01 -1.16810773e-03 2.38654613e-01\\n2.07027152e-01 1.63934287e-02 9.26687047e-02 -4.51065332e-01\\n2.44798183e-01 4.85716648e-02 2.10684657e-01 1.63453460e-01\\n7.79469460e-02 5.20148396e-01 -3.54029797e-02 -1.74611300e-01\\n-2.14245260e-01 1.46214180e-02 -2.46277764e-01 -1.10298149e-01\\n1.11780711e-01 -4.87949759e-01 -1.43235832e-01 3.88653129e-01\\n1.14982188e-01 -1.66046306e-01 -2.55609989e-01 1.82679668e-01\\n6.69051753e-03 -2.69823492e-01 -2.38607332e-01 9.91296116e-03\\n2.70472854e-01 4.08974551e-02 2.92255193e-01 -4.06071097e-01\\n-3.60555761e-02 2.41898671e-02 -3.37772332e-02 4.38061535e-01\\n1.60126671e-01 -4.90090623e-03 -1.53987750e-01 -1.99865669e-01\\n4.15145010e-01 -1.45158798e-01 -1.09175518e-01 -4.97223362e-02\\n1.60733119e-01 -1.64842680e-01 -4.35482979e-01 5.91527186e-02\\n-1.86189398e-01 -1.21297650e-01 1.32337153e-01 -4.63738199e-03\\n7.87262842e-02 1.23606093e-01 -5.11792243e-01 -2.25079089e-01\\n-3.12994987e-01 -6.02369010e-02 1.15266196e-01 -5.36304295e-01\\n4.07283660e-03 2.28858609e-02 -6.21369123e-01 2.09775418e-01\\n-2.09053442e-01 -5.88272363e-02 1.64252281e-01 1.22789100e-01\\n-4.07638580e-01 -6.40896931e-02 9.16406140e-02 2.15890318e-01\\n-3.46147209e-01 -3.15475821e-01 -6.20566569e-02 -1.05058849e+00\\n1.97028711e-01 -1.41107932e-01 -2.64688641e-01 4.49682698e-02\\n1.85613683e-03 -6.71989620e-01 5.24471514e-02 -3.37515563e-01\\n-8.42871591e-02 1.18729517e-01 -2.64562547e-01 -4.26228821e-01\\n9.89981815e-02 -1.25239104e-01 -3.32172215e-01 4.63592678e-01\\n-5.05871892e-01 3.00040126e-01 -4.50361781e-02 9.09817517e-02\\n-7.43934885e-02 -4.00205731e-01 1.50269806e-01 -4.20744747e-01\\n-5.04953861e-01 -2.21894041e-01 -3.48518521e-01 -2.79601127e-01\\n8.39479640e-02 -3.63103926e-01 -8.99961814e-02 1.45294532e-01\\n2.70731360e-01 8.78804848e-02 -6.07641041e-02 -1.47595122e-01\\n7.47060552e-02 -4.82307881e-01 3.56825553e-02 -6.93390593e-02\\n-6.77431561e-03 -1.29935756e-01 2.44944811e-01 7.23651648e-02\\n1.36398122e-01 -3.64098936e-01 4.48227257e-01 -2.95706004e-01\\n-3.81368726e-01 -6.48868531e-02 5.98115027e-02 -2.00187598e-04\\n2.21697047e-01 -6.67186618e-01 -2.56842896e-02 3.96792412e-01\\n1.84273988e-01 1.21751996e-02 1.18582964e-01 -6.15130626e-02\\n1.27690267e-02 2.98362881e-01 -4.12272006e-01 8.37142020e-02\\n7.85624146e-01 1.09577581e-01 6.75976882e-03 2.25301832e-01\\n9.99752507e-02 3.36705416e-01 5.17287791e-01 -3.19842957e-02\\n-1.05091095e-01 3.12191099e-01 8.27515572e-02 -6.58817947e-01\\n-1.54512107e-01 2.76920479e-02 -1.53029546e-01 -2.98763275e-01\\n6.85680270e-01 3.71039033e-01 -3.88709873e-01 -2.31683359e-01\\n-1.06425442e-01 -1.40825063e-01 2.67355412e-01 -8.34991261e-02\\n2.50079092e-02 -1.81745961e-01 5.01077592e-01 8.33394900e-02\\n3.11581939e-01 5.27889848e-01 -1.69223011e-01 -3.54060262e-01\\n-8.34070742e-02 1.12947732e-01 3.70981544e-02 3.41636181e-01\\n-1.45053893e-01 1.80296868e-01 -2.33031474e-02 2.19070077e-01\\n-1.91727579e-01 9.31735486e-02 -8.22807942e-03 1.77548468e-01\\n1.82012275e-01 8.27697292e-02 4.63144898e-01 3.39797169e-01\\n3.20627600e-01 5.61908960e-01 2.78198332e-01 1.41125888e-01\\n4.92009610e-01 4.79488701e-01 5.00399947e-01 9.56353396e-02\\n1.51317543e-03 1.36053205e-01 1.47854343e-01 -3.41123603e-02\\n4.35661644e-01 4.09750640e-01 1.55200481e-01 8.77741933e-01\\n2.31613830e-01 3.12919527e-01 7.15448976e-01 -6.67473197e-01\\n-3.44301283e-01 1.24895893e-01 4.03651059e-01 -4.43001390e-01\\n-4.13868539e-02 8.50534886e-02 -2.07440451e-01 2.44275540e-01\\n-5.27294219e-01 -1.37676135e-01 -1.80673730e-02 1.15240984e-01\\n5.43654598e-02 -6.07110560e-02 -2.46413648e-01 -1.94499809e-02\\n-1.55377597e-01 -1.19439907e-01 -3.55133384e-01 -1.04684137e-01\\n-1.47682443e-01 -9.00456160e-02 -5.53277992e-02 -1.54165640e-01\\n-1.62107591e-02 -4.26176608e-01 -1.77523434e-01 4.41393964e-02\\n3.80702049e-01 3.94175341e-03 7.15221912e-02 -1.28922880e-01\\n2.45743945e-01 3.62213939e-01 6.21322811e-01 -6.13933913e-02\\n1.47941127e-01 -2.88176119e-01 -1.56848311e-01 1.40819401e-01\\n1.07798681e-01 7.40610212e-02 8.40305462e-02 3.53829861e-01\\n-3.36206228e-01 -7.48514384e-02 1.82488695e-01 4.57779020e-01\\n-3.93527806e-01 -4.89911325e-02 -7.02601150e-02 1.60846427e-01\\n8.22223127e-02 1.46882579e-01 -2.57787228e-01 1.27619103e-01\\n-2.86425412e-01 -4.97772187e-01 4.37390059e-01 -1.76774055e-01\\n-3.99529785e-02 7.34976456e-02 3.12458992e-01 1.91788912e-01\\n-2.25058958e-01 -4.58106399e-02 4.65021469e-02 2.58296281e-01\\n5.60588576e-02 3.32565218e-01 -2.31827855e-01 -1.51168138e-01\\n-2.81095624e-01 1.79059610e-01 -1.15645371e-01 6.17654026e-02\\n-8.25238004e-02 3.97589296e-01 9.61149707e-02 4.20853123e-02\\n3.95510256e-01 6.57555610e-02 -2.39014030e-01 -1.87476799e-01\\n-2.81010628e-01 -2.81814039e-01 -1.84999555e-02 4.88361518e-04\\n2.02127323e-01 -3.93764436e-01 -1.19642779e-01 -1.46853864e-01\\n-7.59425461e-02 -3.28372210e-01 -8.23235810e-02 5.68337776e-02]]',\n", + " 'job_description': 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customized solutions based on Python (Django) and/or PHP Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of Python or PHP Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Modern technologies such as DevOps, Containers, CI/CD are no foreign words. Willingness to assume responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Python (Programming Language)\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Hosting\", \"Django (Web Framework)\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"Functional Programming\", \"Additives\", \"Rust (Programming Language)\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Greek', 'Mongolian', 'Cornish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'backend software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.96146512e-01 2.25685984e-01 3.81386131e-01 6.31073164e-03\\n5.44051468e-01 -2.66359210e-01 9.79871210e-03 3.68729413e-01\\n-2.57958770e-01 -3.63048911e-01 -4.27846722e-02 -2.44650826e-01\\n-1.89992860e-01 7.98621103e-02 1.31351292e-01 3.88559461e-01\\n2.86206812e-01 1.14335604e-01 -2.94916004e-01 3.70017171e-01\\n5.59200607e-02 -2.97922634e-06 -3.94451544e-02 7.66554117e-01\\n3.45010400e-01 -1.57250445e-02 -1.05865642e-01 4.27433215e-02\\n-2.50761896e-01 -2.51972258e-01 3.91722500e-01 9.16388854e-02\\n-6.79150671e-02 -2.71345764e-01 7.47358724e-02 2.99406657e-03\\n-1.73540786e-01 3.67118083e-02 -3.28949690e-02 1.02406882e-01\\n-3.89293969e-01 -3.86299521e-01 -1.31230317e-02 8.90230536e-02\\n-2.07433581e-01 -2.27711007e-01 6.55482039e-02 -6.68610036e-02\\n9.57257301e-02 -3.67352106e-02 -5.76359332e-01 3.58721346e-01\\n-3.02708954e-01 -2.23158300e-01 3.07890981e-01 4.61729437e-01\\n8.36970378e-03 -5.25690913e-01 -3.13287854e-01 -2.96148419e-01\\n-6.46865815e-02 -2.27823809e-01 6.36532456e-02 -2.82713115e-01\\n2.77987897e-01 -6.69266284e-02 1.76805593e-02 3.48076642e-01\\n-8.05531442e-01 -1.11406527e-01 -2.55701691e-01 -1.67581066e-02\\n-3.27168614e-01 -1.13382816e-01 -2.97376007e-01 -8.67974013e-02\\n-2.49279151e-03 2.98043609e-01 2.22778530e-03 4.50644307e-02\\n-1.84759200e-01 3.27564687e-01 -8.17147568e-02 1.87909037e-01\\n2.71823198e-01 1.37041613e-01 1.96846083e-01 3.55800182e-01\\n-3.99252176e-01 4.74914730e-01 6.22444972e-02 -2.50799268e-01\\n2.52674788e-01 1.17200777e-01 5.10781288e-01 7.12232888e-02\\n-1.94422137e-02 1.98808089e-01 -2.40859404e-01 1.83766812e-01\\n1.71783924e-01 -3.66276562e-01 7.25136651e-03 -1.45601839e-01\\n-1.04529589e-01 6.37285784e-02 9.36795250e-02 3.36586028e-01\\n-2.25237370e-01 4.13727045e-01 2.51422554e-01 -1.96289316e-01\\n-6.28880039e-02 -4.50352252e-01 -1.46044105e-01 -5.16299391e-03\\n-1.47846431e-01 1.73527420e-01 3.10440302e-01 1.35391027e-01\\n2.32913375e-01 5.63149787e-02 2.12322995e-01 1.00176609e+00\\n-5.54031990e-02 7.29359314e-02 -2.05411926e-01 2.46166497e-01\\n2.39893049e-01 -2.51254976e-01 1.67283967e-01 3.81592065e-01\\n1.24794915e-01 -2.59980410e-02 -2.27838188e-01 4.07280207e-01\\n-2.19630346e-01 9.61505715e-03 -4.11413938e-01 1.15846552e-01\\n-1.34364828e-01 -4.82871950e-01 6.40055299e-01 2.36462861e-01\\n2.59038001e-01 1.04006231e-01 5.25620468e-02 -1.34524792e-01\\n-5.92462122e-02 2.71504462e-01 5.36241904e-02 2.06059739e-01\\n-3.08684468e-01 -1.45982787e-01 -1.20966882e-01 2.70433098e-01\\n-2.19325796e-01 6.27185628e-02 -9.34070647e-02 -9.61261839e-02\\n2.77041972e-01 1.88584568e-03 -3.76766801e-01 1.64261207e-01\\n-1.43390864e-01 -2.16381237e-01 -1.38773814e-01 3.73514354e-01\\n-2.87047643e-02 2.76391625e-01 3.41875032e-02 -5.18735051e-02\\n5.54426432e-01 1.27705857e-01 8.06537420e-02 -5.00559509e-02\\n2.73152024e-01 -1.25188500e-01 2.98683941e-01 1.25220373e-01\\n-6.48123622e-01 2.48765215e-01 4.50515142e-03 -1.50381878e-01\\n4.97784019e-02 1.08504236e-01 2.25529596e-01 -3.15021932e-01\\n-1.19738221e-01 -1.59779355e-01 -3.98117065e-01 -2.34913692e-01\\n-3.39261681e-01 1.02690987e-01 3.87645006e-01 -2.83121347e-01\\n-2.73953099e-02 3.61904688e-02 -4.11414802e-01 -1.12460248e-01\\n1.21409439e-01 2.20011428e-01 -7.40451680e-04 9.41236019e-02\\n-5.17403968e-02 -6.24350309e-01 -3.07392571e-02 -5.67003191e-01\\n-6.13892853e-01 6.51752353e-02 -3.42500508e-01 2.11026967e-01\\n-2.21276321e-02 6.84335306e-02 -1.22847997e-01 2.22263083e-01\\n-2.89490104e-01 1.62976068e-02 1.55959263e-01 1.54940382e-01\\n1.63378343e-01 -5.18211611e-02 -5.00666440e-01 4.99712616e-01\\n-2.51869828e-01 5.72678685e-01 2.04769090e-01 -7.59468317e-01\\n6.22770548e-01 2.10076243e-01 -1.54065583e-02 -4.32466447e-01\\n4.36771423e-01 -3.70565772e-01 -5.43131083e-02 6.75043166e-02\\n-2.75733978e-01 -2.70287097e-01 3.29187512e-01 -2.45832354e-01\\n-3.28681290e-01 5.30238688e-01 1.78291693e-01 4.64592949e-02\\n2.40959570e-01 -3.21133345e-01 -7.51918852e-02 1.33497074e-01\\n-6.52342066e-02 -1.81331709e-01 -3.61952662e-01 1.13359563e-01\\n-1.38990909e-01 -5.04113317e-01 -1.07806183e-01 -4.39256847e-01\\n-1.59562483e-01 -3.12495440e-01 -2.96111971e-01 4.28421110e-01\\n1.62175849e-01 1.31733015e-01 9.25084502e-02 -7.87500571e-03\\n-1.09921664e-01 -7.13658750e-01 -9.95457917e-02 8.01472589e-02\\n5.26105702e-01 1.61516771e-01 2.26015765e-02 -5.90045042e-02\\n-1.09903337e-02 4.90845084e-01 -3.22321862e-01 -4.08838034e-01\\n7.56429657e-02 2.12865382e-01 3.95328552e-02 -1.46358341e-01\\n5.99788390e-02 4.18535233e-01 -2.21491531e-01 8.05787966e-02\\n-1.20871782e-01 -1.07351147e-01 3.83747309e-01 1.01165185e-02\\n-3.32630038e-01 -2.19757631e-01 -6.85275868e-02 1.28504485e-01\\n-5.46890259e-01 -1.45852864e-01 5.15477300e-01 2.78362602e-01\\n2.34046727e-01 2.41533622e-01 2.57811844e-01 -1.21555634e-01\\n-1.60838127e-01 -3.27941120e-01 1.52987689e-01 1.83056548e-01\\n1.36702657e-02 1.16857871e-01 -1.61256477e-01 -5.82535803e-01\\n-3.53865886e+00 -5.25070764e-02 2.33940259e-01 -2.33232975e-01\\n2.22787201e-01 1.93664432e-02 -2.11348711e-03 -2.77434513e-02\\n-3.89675677e-01 2.73402091e-02 -2.74592936e-01 -1.61136702e-01\\n7.54935816e-02 2.99658746e-01 7.66612887e-02 1.68919444e-01\\n1.46122158e-01 -2.01155603e-01 -1.75282300e-01 2.98287570e-01\\n-1.26963273e-01 -6.89685702e-01 1.76773161e-01 2.60658702e-03\\n1.78158760e-01 2.33466223e-01 -3.10038984e-01 -5.44228815e-02\\n-1.00545384e-01 -2.86617875e-01 -1.20354727e-01 -1.95067689e-01\\n-2.18074247e-01 2.56595016e-01 1.47746578e-01 -7.74799958e-02\\n-4.11737561e-02 -2.97930509e-01 -1.16281152e-01 -4.83958364e-01\\n1.30276039e-01 -6.21900797e-01 -1.19844405e-02 -8.96313488e-02\\n7.17292249e-01 -2.75509953e-01 2.14505062e-01 -2.74955179e-03\\n1.12558760e-01 1.26052022e-01 -3.29398587e-02 -1.33748259e-02\\n-1.94945335e-01 -2.86627859e-01 1.36436755e-02 -1.69811055e-01\\n4.45547312e-01 4.89085972e-01 -2.04414487e-01 2.03414517e-03\\n1.39567658e-01 -3.45959991e-01 -2.43075639e-01 -2.90258735e-01\\n-1.47194445e-01 -2.39982158e-01 -6.97500825e-01 -4.12387908e-01\\n-1.01254918e-01 -9.95859951e-02 -2.19648242e-01 6.51868820e-01\\n-2.63530791e-01 -5.37128031e-01 5.46800494e-02 -5.96572042e-01\\n7.01377019e-02 -2.20030382e-01 7.46550113e-02 -1.37784168e-01\\n-2.57477760e-01 -5.15490830e-01 2.98223142e-02 -9.03870165e-02\\n-1.69783309e-01 -1.73673272e-01 -9.51103419e-02 -2.12532490e-01\\n-2.91603178e-01 -3.11852276e-01 3.59889954e-01 1.92676261e-01\\n2.99908549e-01 1.62064180e-01 3.21541339e-01 1.10873409e-01\\n1.86296135e-01 -3.91465910e-02 7.89720044e-02 -2.77826399e-01\\n1.43261954e-01 -1.19530253e-01 6.85186267e-01 -2.48210818e-01\\n-6.71043480e-03 2.73477644e-01 -1.67891324e-01 -1.31178796e-01\\n4.39723670e-01 2.57814024e-02 4.08895500e-03 -1.92016259e-01\\n3.92300397e-01 -5.71952701e-01 -2.36913264e-01 1.18917905e-01\\n1.06494457e-01 7.50011206e-01 6.28736243e-02 -3.96635413e-01\\n-3.91471565e-01 5.61642945e-01 -1.34723172e-01 -8.79992545e-02\\n-1.52301759e-01 1.86250597e-01 -1.59833223e-01 1.28825203e-01\\n1.33469969e-01 -2.56227314e-01 -1.27534226e-01 -7.03896657e-02\\n-6.91740960e-02 1.35372534e-01 2.89200723e-01 9.54434276e-02\\n-6.79581165e-02 -3.19717824e-01 -2.44971946e-01 1.60366073e-01\\n1.46037072e-01 3.29782337e-01 1.54318437e-01 -2.69396722e-01\\n-1.55062735e-01 2.95448422e-01 -1.22497998e-01 1.88510805e-01\\n-1.00630008e-01 4.53787856e-02 -4.60060000e-01 -1.58033416e-01\\n-2.07865193e-01 -3.84061694e-01 1.03902020e-01 3.87394041e-01\\n8.14171210e-02 -1.85729917e-02 1.08406998e-01 -4.39084888e-01\\n4.03984547e-01 1.12623937e-01 2.16721550e-01 8.09297040e-02\\n4.04496081e-02 3.99033725e-01 -6.57609403e-02 -9.03673097e-02\\n-1.71036452e-01 2.01591365e-02 -2.70080090e-01 -1.84027478e-01\\n5.80558591e-02 -3.99814934e-01 -9.87318978e-02 4.24282700e-01\\n1.16935588e-01 -2.35709593e-01 -2.62416065e-01 1.97747558e-01\\n1.11613661e-01 -2.33696416e-01 -1.56210333e-01 -1.32447407e-01\\n2.14814186e-01 4.21500988e-02 2.73926854e-01 -3.72478634e-01\\n-1.63674355e-01 4.51076822e-03 -9.82293263e-02 4.54779059e-01\\n1.24669820e-02 9.87216681e-02 -2.08241060e-01 -1.51800901e-01\\n3.84840637e-01 -1.35899052e-01 -4.86892499e-02 -4.65612710e-02\\n7.25345984e-02 -1.06761351e-01 -4.60397601e-01 2.46398039e-02\\n-3.00988816e-02 -7.92926401e-02 6.58417046e-02 -5.11334501e-02\\n1.80184379e-01 8.64026025e-02 -4.99750733e-01 -3.37446243e-01\\n-3.93075258e-01 -1.58610314e-01 1.84359282e-01 -2.58413464e-01\\n6.51117507e-03 -1.44290239e-01 -6.21417046e-01 2.01031253e-01\\n-3.91525120e-01 4.89966944e-02 1.47439882e-01 9.22599509e-02\\n-3.18078399e-01 8.34538136e-03 8.11690316e-02 1.94992110e-01\\n-1.56328559e-01 -1.06334642e-01 -6.84863031e-02 -1.00273967e+00\\n2.39501759e-01 -2.39953492e-02 -5.01109473e-02 -2.35969573e-03\\n-4.75207251e-03 -7.04596817e-01 6.74694628e-02 -3.24622959e-01\\n7.24786334e-03 4.78375182e-02 -1.91196188e-01 -3.15906167e-01\\n1.29918709e-01 -1.55668318e-01 -2.76734680e-01 3.40826094e-01\\n-4.97100681e-01 1.56361789e-01 9.99132637e-03 1.24302238e-01\\n3.90209779e-02 -3.28728914e-01 1.79683551e-01 -3.74637753e-01\\n-3.78247947e-01 -1.76550090e-01 -2.22631887e-01 -3.12925160e-01\\n4.49395999e-02 -3.48209918e-01 -2.08637148e-01 1.06192246e-01\\n3.15708786e-01 6.72188699e-02 -1.36586234e-01 -2.93032825e-01\\n-7.12274387e-02 -4.72314179e-01 2.50363618e-01 -1.86917022e-01\\n5.63730560e-02 -3.71665731e-02 2.40359381e-01 1.33037359e-01\\n4.64835353e-02 -3.87725025e-01 3.88629586e-01 -3.53516430e-01\\n-2.89711386e-01 3.33548291e-03 3.25403772e-02 4.99740206e-02\\n2.57377356e-01 -6.23883665e-01 7.37987971e-03 2.18040749e-01\\n9.32115689e-02 6.99808225e-02 2.58332789e-01 5.80880418e-03\\n-1.15301207e-01 2.25950524e-01 -2.87278354e-01 8.67727995e-02\\n7.54065871e-01 1.61999524e-01 9.46024284e-02 1.52283698e-01\\n1.48484573e-01 3.84318531e-01 5.36778271e-01 2.17558220e-02\\n4.64519346e-03 2.22276032e-01 -6.29292568e-03 -4.94863868e-01\\n-1.00053661e-01 -6.29699528e-02 -1.61775336e-01 -2.98902482e-01\\n5.68166614e-01 4.07394856e-01 -4.23182547e-01 -2.71510661e-01\\n6.65159822e-02 -7.59990439e-02 3.11885595e-01 3.58162075e-02\\n3.34598981e-02 -1.87891349e-01 5.13635039e-01 -1.16528012e-02\\n2.79682100e-01 6.27047002e-01 -1.38059944e-01 -4.31816071e-01\\n-1.30976960e-01 1.85184613e-01 6.16035014e-02 5.02908170e-01\\n-1.11100718e-01 2.22501397e-01 -5.89813069e-02 1.21240998e-02\\n9.24969558e-03 2.38774836e-01 1.73292637e-01 1.14967421e-01\\n1.82844222e-01 6.59905225e-02 2.92303056e-01 6.04145467e-01\\n1.31791711e-01 5.43202102e-01 3.58735502e-01 6.58187419e-02\\n2.88298935e-01 6.31099224e-01 4.47781831e-01 2.47161061e-01\\n6.90274835e-02 1.94426149e-01 9.28051025e-02 -1.40974417e-01\\n4.09494728e-01 3.35055977e-01 2.37639770e-01 8.94953966e-01\\n3.76655608e-01 2.06508011e-01 7.90702522e-01 -6.95942461e-01\\n-3.39136571e-01 1.22824386e-01 4.27526295e-01 -2.06764847e-01\\n-1.12134710e-01 6.62854463e-02 -1.89896703e-01 3.23662549e-01\\n-4.59862262e-01 -9.07356143e-02 1.61180925e-02 -4.31619436e-02\\n6.76198900e-02 -5.55598699e-02 -1.57312319e-01 -3.97852995e-02\\n-1.96500078e-01 -7.31067955e-02 -2.48670623e-01 -1.65038571e-01\\n-3.46983284e-01 5.32180024e-03 -1.46576539e-01 -2.05453575e-01\\n-7.81072304e-02 -4.58009094e-01 -7.53434598e-02 7.55573288e-02\\n3.09527397e-01 -7.06459209e-02 2.18218714e-02 -8.75489786e-02\\n1.97565377e-01 3.58882308e-01 5.26761174e-01 -1.00220099e-01\\n1.62169889e-01 -1.11063801e-01 -2.30599523e-01 3.94183025e-02\\n2.00516265e-03 6.67308981e-04 9.63001996e-02 3.67192984e-01\\n-3.16834986e-01 -4.78394330e-02 5.36589772e-02 3.52561891e-01\\n-3.81102294e-01 -1.05050661e-01 -1.42782465e-01 2.84201324e-01\\n1.79798547e-02 1.44495070e-01 -2.83834726e-01 -3.74649279e-02\\n-2.04619929e-01 -4.52179700e-01 4.31283027e-01 -2.28166133e-01\\n-1.03941590e-01 2.60026276e-01 3.07673335e-01 1.97034329e-01\\n-2.89613932e-01 4.43160348e-02 -1.08998358e-01 2.99963772e-01\\n2.98879622e-03 4.13744360e-01 -2.30122894e-01 -1.20121427e-01\\n-2.34736517e-01 2.24266812e-01 -1.74272120e-01 1.34532943e-01\\n-1.23346359e-01 2.68748790e-01 2.04904929e-01 -7.65443668e-02\\n3.33752960e-01 1.11883422e-02 -2.88367152e-01 -1.34824961e-01\\n-1.43094748e-01 -1.96044683e-01 1.22624626e-02 -4.52133603e-02\\n2.08444059e-01 -3.33552301e-01 -4.24384251e-02 8.19940120e-03\\n-4.23172973e-02 -3.11812639e-01 -1.73182979e-01 5.89172244e-02]]',\n", + " 'job_description': \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting large scale micro-service based distributed systems with high transaction volume. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: a Bachelor's or higher degree in technical field of study or equivalent practical experience hands-on experience with highly concurrent production grade systems knowledge of at least one modern programming language, such as Go, Java, C++ and Scala, etc. excellent troubleshooting and creative problem-solving abilities excellent written and oral communication and interpersonal skills Ideally: experience with systems for automating deployment, scaling and management of containerised applications, such as Kubernetes and Mesos experience with big data technologies, such as Kafka, Spark, Storm, Flink and Cassandra experience with encryption and cryptography standards Benötigte Skills JAVA Python Englisch Scala Kryptografie / Verschlüsselung Go\",\n", + " 'soft_skills': '[\"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Scale (Map)\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Flink\", \"Apache Cassandra\", \"KM Programming Language\", \"Encryption\", \"Cryptography\", \"Python (Programming Language)\", \"Maintainability\", \"Location-Based Services\", \"Java (Programming Language)\", \"Idealization\", \"Big Data\", \"Apache Mesos\"]',\n", + " 'languages': \"['English', 'Catalan', 'Sundanese', 'Turkmen', 'Portuguese']\"},\n", + " {'company_id': '88',\n", + " 'job_title': 'full stack software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.29723415e-01 2.82175958e-01 5.05872488e-01 3.07175005e-03\\n5.28041601e-01 -2.51381129e-01 4.29131910e-02 4.42291528e-01\\n-4.71199378e-02 -4.53217566e-01 3.71953733e-02 -1.95505157e-01\\n-1.22245513e-01 4.21867035e-02 7.03995451e-02 2.28203252e-01\\n2.61599898e-01 2.23329335e-01 -2.62582302e-01 3.67197782e-01\\n9.93298143e-02 -9.05440301e-02 -3.97230685e-03 6.45791590e-01\\n3.90364528e-01 1.93100702e-02 -7.54290149e-02 -1.23295806e-01\\n-3.98110807e-01 -2.99601078e-01 3.02430511e-01 9.44134817e-02\\n2.87044980e-02 -4.02330071e-01 3.21280137e-02 4.08044923e-03\\n-1.58390775e-01 2.24436005e-03 -7.23523796e-02 3.13852161e-01\\n-4.60026443e-01 -3.06600273e-01 1.31599754e-01 4.16262187e-02\\n-1.11805141e-01 -3.53266299e-01 1.41960541e-02 -6.94910157e-03\\n1.04344890e-01 2.00307257e-02 -5.41645527e-01 3.01067978e-01\\n-1.42413110e-01 -2.65134752e-01 2.82112986e-01 6.28392696e-01\\n2.61600912e-02 -5.71503758e-01 -3.90170842e-01 -3.13878000e-01\\n3.43811437e-02 -1.89398155e-01 -2.97260657e-02 -1.58778325e-01\\n2.45714709e-01 1.22598365e-01 1.36427492e-01 3.69397193e-01\\n-8.19257975e-01 3.51422653e-02 -8.00639912e-02 -1.76868308e-02\\n-2.83822268e-01 -1.63458660e-01 -1.85572952e-01 -1.25690401e-01\\n-1.02880381e-01 4.49278325e-01 -2.86809411e-02 9.76346061e-02\\n-1.46473587e-01 2.24424362e-01 -1.98093489e-01 3.86331201e-01\\n1.92628860e-01 9.32635963e-02 1.67282641e-01 3.53734434e-01\\n-3.17023546e-01 3.55525523e-01 1.62744865e-01 -2.07223505e-01\\n3.03006768e-01 6.33762926e-02 5.60049057e-01 2.16492340e-02\\n1.40644293e-02 1.64483860e-01 -2.18872219e-01 3.66370171e-01\\n2.06354618e-01 -2.36247882e-01 2.21597385e-02 -9.48626474e-02\\n-1.38487592e-01 -5.68807684e-02 -7.78488591e-02 1.94410130e-01\\n-1.53795034e-01 4.90505546e-01 1.40747398e-01 -1.32331088e-01\\n-6.83867335e-02 -5.13043940e-01 -6.95893466e-02 -5.70687465e-02\\n1.05178781e-01 2.19821379e-01 2.05429330e-01 4.24333215e-02\\n1.81917787e-01 1.23625912e-01 1.09165587e-01 9.46541905e-01\\n-3.15199457e-02 1.15251310e-01 -2.83293456e-01 2.31832668e-01\\n1.96120784e-01 -1.86946273e-01 6.05643131e-02 3.10488909e-01\\n1.21185608e-01 -7.39017054e-02 -1.20620906e-01 3.29627484e-01\\n-7.80114159e-02 -1.65409297e-01 -3.02999288e-01 9.16662067e-02\\n-2.62442857e-01 -3.53031337e-01 5.28563440e-01 2.36485094e-01\\n2.21070603e-01 6.36409968e-02 4.29657958e-02 -2.43670749e-03\\n-1.81605473e-01 3.67260218e-01 1.36017464e-02 1.55133694e-01\\n-2.36471429e-01 -2.20956951e-01 -2.20015615e-01 1.69692665e-01\\n-1.42482340e-01 7.33158216e-02 4.39049490e-02 -4.54385020e-02\\n3.03493708e-01 1.46257058e-01 -2.59628892e-01 2.09177956e-01\\n-9.59189534e-02 -3.43251526e-02 -1.29803225e-01 2.32880875e-01\\n1.66312493e-02 2.36595079e-01 1.43600069e-02 -1.72839478e-01\\n6.21517360e-01 1.01470605e-01 1.33547097e-01 -7.45106265e-02\\n3.49140584e-01 -9.31205153e-02 1.76359102e-01 1.74797878e-01\\n-6.08516634e-01 1.73149973e-01 -5.85562252e-02 -1.64183974e-01\\n1.37126788e-01 5.26662581e-02 9.35743973e-02 -2.93390572e-01\\n1.19613230e-01 -1.41610846e-01 -3.81029606e-01 -2.22578481e-01\\n-2.92873472e-01 6.72588646e-02 4.60060239e-01 -3.53746980e-01\\n-1.37993470e-01 3.56096894e-01 -5.05932093e-01 -2.01158244e-02\\n3.83618772e-01 1.01214945e-01 6.18799031e-03 9.87319574e-02\\n-1.31160110e-01 -4.84164923e-01 9.40968543e-02 -3.16092163e-01\\n-3.95608723e-01 5.12202643e-02 -2.59327233e-01 3.18071544e-01\\n-8.08586273e-03 9.69316214e-02 -2.15414539e-01 1.97978154e-01\\n-1.18256859e-01 -1.80843621e-01 1.59355149e-01 1.15554616e-01\\n2.09880441e-01 -1.17774963e-01 -3.77655804e-01 4.04088259e-01\\n-2.20527932e-01 5.58870435e-01 1.60700828e-01 -8.79648089e-01\\n4.22257990e-01 3.21077496e-01 -1.98234934e-02 -3.72316271e-01\\n5.74080527e-01 -2.84014195e-01 8.89516920e-02 1.59255832e-01\\n-2.13475421e-01 -3.24701279e-01 3.14451963e-01 -1.40822977e-01\\n-3.06795299e-01 5.12280703e-01 1.72515154e-01 1.37934998e-01\\n2.30716214e-01 -2.05723688e-01 -5.04717007e-02 1.50293350e-01\\n-2.35670377e-02 -2.50724286e-01 -4.16823238e-01 9.77694839e-02\\n-4.60178219e-02 -4.62354243e-01 -2.72122473e-02 -3.42714727e-01\\n-2.36204609e-01 -4.03870106e-01 -2.03057140e-01 3.51750433e-01\\n3.04708391e-01 2.48220250e-01 1.93333384e-02 4.71864790e-02\\n-5.73203638e-02 -7.59867966e-01 5.80177419e-02 1.32058069e-01\\n5.45887530e-01 1.57652289e-01 4.70654182e-02 -2.97316670e-04\\n-9.27462429e-02 5.67077100e-01 -2.86780387e-01 -5.16869985e-02\\n1.40828434e-02 8.91361609e-02 1.36138005e-02 -1.86532974e-01\\n1.33909406e-02 3.64997864e-01 -1.70989677e-01 9.24495608e-02\\n-1.44996151e-01 -6.68589473e-02 3.22506249e-01 8.56105238e-03\\n-4.20292288e-01 -2.64849752e-01 -8.76145959e-02 2.69791007e-01\\n-4.37586635e-01 -1.40976757e-01 5.90600312e-01 2.25602567e-01\\n1.62331864e-01 1.21877551e-01 1.44515231e-01 -1.51700720e-01\\n-1.61967129e-01 -3.22479486e-01 2.07382455e-01 1.22776069e-01\\n1.38575956e-01 2.00365067e-01 -3.72148193e-02 -5.98236918e-01\\n-3.55767083e+00 -2.44661883e-01 1.49188027e-01 -2.34879002e-01\\n1.46839559e-01 -2.12224767e-01 -8.87293667e-02 -5.88172451e-02\\n-2.40590602e-01 2.91238707e-02 -5.57908863e-02 -1.95996780e-02\\n1.42217010e-01 2.60268897e-01 -3.07028089e-02 2.72283316e-01\\n1.75273940e-01 -1.26665086e-01 -1.83526769e-01 2.82742083e-01\\n-2.40751475e-01 -5.56216240e-01 1.43199146e-01 -5.56357764e-02\\n3.51206899e-01 2.08695754e-01 -2.89472550e-01 -1.17879041e-01\\n-1.40148014e-01 -2.32659578e-01 1.26830284e-02 -1.36277646e-01\\n-9.39959511e-02 3.08147907e-01 1.41567409e-01 -3.73056158e-02\\n1.71906620e-01 -3.75681490e-01 -4.30389233e-02 -3.65561306e-01\\n1.36520028e-01 -7.29529917e-01 -1.41399682e-01 3.18213552e-03\\n6.23938799e-01 -2.56782234e-01 1.48772329e-01 8.40159953e-02\\n2.74440140e-01 8.98150057e-02 -1.54575348e-01 -1.68985967e-02\\n-3.00989926e-01 -1.96983695e-01 -7.90994521e-03 -1.11506239e-01\\n4.08479303e-01 5.67197084e-01 -2.85875708e-01 -1.25717551e-01\\n3.54545936e-02 -2.46213466e-01 -4.10356253e-01 -3.61439258e-01\\n-6.70600981e-02 -3.23299080e-01 -6.78215563e-01 -2.82885045e-01\\n-1.41898841e-01 -8.67227837e-02 -2.54353434e-01 6.38305664e-01\\n-2.21352711e-01 -4.61500913e-01 9.65236351e-02 -5.07090449e-01\\n1.27212569e-01 -9.43848342e-02 -1.46394327e-01 -1.59531683e-01\\n-1.88793853e-01 -3.94708335e-01 1.19795511e-02 -1.84823351e-03\\n-2.61640400e-01 -2.10281104e-01 1.44181728e-01 -2.36410707e-01\\n-2.31983140e-01 -4.32137311e-01 3.84556353e-01 1.09627098e-01\\n2.39205778e-01 1.57670021e-01 4.06324655e-01 1.48291066e-01\\n3.65584284e-01 -1.74589932e-01 4.14790995e-02 -4.15609360e-01\\n1.46451578e-01 -1.29213110e-02 6.52251303e-01 -3.48292291e-01\\n1.44252405e-01 1.98672503e-01 -2.56197393e-01 -1.15831569e-01\\n2.94329226e-01 1.07384464e-02 5.22111617e-02 -1.62561193e-01\\n2.96091110e-01 -2.83448875e-01 -3.72771323e-01 7.74094388e-02\\n1.80112153e-01 5.74220955e-01 -5.66965789e-02 -4.12047416e-01\\n-2.89244920e-01 5.09307325e-01 -1.49825037e-01 -1.40478134e-01\\n-2.89814144e-01 3.90885994e-02 -1.21235453e-01 2.30737910e-01\\n1.15701482e-01 -1.40875220e-01 -2.64869422e-01 -2.24301100e-01\\n-1.61692858e-01 1.70949668e-01 1.54917657e-01 -3.55652608e-02\\n-4.50803526e-02 -3.30715954e-01 -4.80194464e-02 6.00791126e-02\\n1.30775660e-01 2.35793710e-01 1.48768455e-01 -1.26801834e-01\\n-9.00350139e-02 2.91415960e-01 -1.06008939e-01 4.80863266e-02\\n-2.94090539e-01 1.73461698e-02 -4.92684096e-01 -2.04996273e-01\\n-2.05945879e-01 -2.36744300e-01 1.25386310e-03 2.73028046e-01\\n7.83270746e-02 -1.92913674e-02 -6.22604676e-02 -5.62592864e-01\\n2.66212404e-01 4.52628992e-02 2.05417767e-01 1.56162784e-01\\n-4.41402290e-03 3.85655701e-01 5.26062027e-02 -4.59839627e-02\\n-1.74095571e-01 -9.85900685e-03 -1.86417758e-01 -1.27734646e-01\\n-3.02870683e-02 -4.94981676e-01 -8.66208002e-02 4.63056087e-01\\n1.57417357e-01 -3.38068724e-01 -1.66483968e-01 1.71713859e-01\\n1.43609289e-02 -3.40368211e-01 -1.57239482e-01 -6.47105724e-02\\n3.08866680e-01 -2.29401980e-02 4.00199592e-01 -4.02351141e-01\\n6.25269338e-02 -2.95184180e-02 -1.93843663e-01 3.90342653e-01\\n1.42584071e-01 -5.41709699e-02 -1.17452085e-01 -8.38809013e-02\\n4.16228533e-01 -1.39740899e-01 -3.68375555e-02 -2.47496739e-02\\n4.77487519e-02 -1.82550594e-01 -6.04419112e-01 1.17317494e-02\\n-1.13630302e-01 -1.36927068e-01 -3.66678946e-02 2.60255430e-02\\n1.93115082e-02 7.63460696e-02 -3.88356149e-01 -3.03313047e-01\\n-3.89725357e-01 -1.41464934e-01 1.99375033e-01 -3.38017911e-01\\n-5.51815368e-02 1.65231153e-01 -5.24846315e-01 2.20427051e-01\\n-2.04738691e-01 -2.61480194e-02 1.11604720e-01 5.02638333e-02\\n-3.27773243e-01 4.14728783e-02 -9.07654001e-04 2.81640172e-01\\n-2.43530273e-01 -2.75707424e-01 6.17538765e-02 -9.81558979e-01\\n1.01845182e-01 4.44127955e-02 -1.24048129e-01 -1.74493138e-02\\n5.82963377e-02 -5.87953568e-01 2.33283520e-01 -5.23572564e-01\\n-4.46500629e-02 -9.48602147e-03 -2.25964233e-01 -4.85625267e-01\\n5.56180216e-02 -1.27536923e-01 -4.59565073e-01 2.83805877e-01\\n-4.34136480e-01 3.86559367e-01 -6.31705858e-03 8.37491974e-02\\n4.02998775e-02 -2.94362068e-01 9.84495580e-02 -4.33196157e-01\\n-4.20690030e-01 -1.41551256e-01 -4.46564436e-01 -1.71888277e-01\\n3.13174725e-02 -2.07269549e-01 -2.06534863e-01 1.86751932e-01\\n1.62583113e-01 1.70897633e-01 -2.92137656e-02 -2.69730777e-01\\n2.56398246e-02 -6.05263829e-01 -5.88169806e-02 -1.69473469e-01\\n-4.58938815e-02 -7.42240399e-02 2.08374873e-01 3.76476943e-02\\n6.87211379e-02 -2.81975895e-01 4.20352787e-01 -3.60191673e-01\\n-2.17204168e-01 8.59622844e-03 -6.22801036e-02 7.12337047e-02\\n1.84305102e-01 -5.57156563e-01 1.45075530e-01 2.48096809e-01\\n4.61339206e-02 4.76611219e-02 2.24525839e-01 4.64865007e-02\\n-1.32498741e-02 8.20354745e-02 -3.15005243e-01 1.46620259e-01\\n7.09010899e-01 8.85413215e-03 3.63794863e-02 1.93682238e-01\\n2.44389862e-01 3.48329782e-01 4.63534325e-01 -6.43178523e-02\\n-1.53882161e-01 2.28379518e-01 -1.00872703e-02 -6.14064753e-01\\n-7.55777732e-02 4.84914444e-02 -2.91381210e-01 -2.96028882e-01\\n7.51922309e-01 3.98893774e-01 -3.80282104e-01 -2.20711544e-01\\n-1.58171520e-01 -1.37440547e-01 8.37631896e-02 -1.26653373e-01\\n1.00874074e-01 -1.32348984e-01 4.80521888e-01 -5.21223322e-02\\n3.10963422e-01 4.49604928e-01 -1.48096502e-01 -4.36883509e-01\\n-1.32044435e-01 1.96442217e-01 8.53473470e-02 3.14534813e-01\\n-1.13067321e-01 1.83487341e-01 -6.45483062e-02 1.02342211e-01\\n-8.29420388e-02 1.31473869e-01 3.41702029e-02 1.38920337e-01\\n2.05454424e-01 6.92160204e-02 4.60737526e-01 4.09891784e-01\\n2.19783798e-01 4.38740790e-01 3.38125706e-01 1.22946896e-01\\n4.40776438e-01 4.66991246e-01 3.53928477e-01 1.34520516e-01\\n-7.25133494e-02 1.16346039e-01 8.54310244e-02 -1.22478724e-01\\n3.80240560e-01 3.06474149e-01 3.16636413e-01 7.87271619e-01\\n4.14689720e-01 2.11218193e-01 6.96081638e-01 -6.36073232e-01\\n-3.08079362e-01 -1.15281746e-01 5.14411807e-01 -1.04065783e-01\\n-1.00495689e-01 1.38914660e-01 -1.51006296e-01 2.78553247e-01\\n-4.67804253e-01 1.17776478e-02 -7.30841383e-02 2.07078263e-01\\n8.16055834e-02 -8.15491900e-02 -2.81815827e-01 -2.23745741e-02\\n-1.71641752e-01 -7.78845772e-02 -4.24824595e-01 -6.18792549e-02\\n-1.41262069e-01 -1.79642260e-01 -7.66692832e-02 -5.30424640e-02\\n-1.49708599e-01 -4.41145480e-01 -1.70682907e-01 4.73992787e-02\\n3.38214368e-01 -9.89092439e-02 -3.83634157e-02 -8.20451751e-02\\n2.82830656e-01 2.45254517e-01 4.71925914e-01 -2.24134699e-02\\n9.92254689e-02 -2.58137047e-01 -1.65046111e-01 6.16772920e-02\\n1.52383789e-01 -2.98398864e-02 7.36191794e-02 3.11658353e-01\\n-3.02360058e-01 -9.89738256e-02 -4.64291451e-03 3.69115621e-01\\n-4.63059038e-01 -2.07851827e-01 -5.57075329e-02 2.69026905e-01\\n1.11814000e-01 1.65285140e-01 -3.38819653e-01 6.55039251e-02\\n-2.45464742e-01 -3.42747182e-01 3.88895452e-01 -1.20167576e-01\\n-1.37024373e-01 2.23203138e-01 1.86469361e-01 1.52044177e-01\\n-1.06642850e-01 -5.82115836e-02 1.11434534e-02 2.11798906e-01\\n4.45167981e-02 4.40632105e-01 -1.07891828e-01 -2.73646116e-01\\n-3.42508316e-01 2.85298496e-01 -1.05829470e-01 1.68224946e-01\\n3.35317757e-03 2.61487693e-01 1.18349299e-01 5.68313487e-02\\n3.85723948e-01 -6.20126240e-02 -1.79838508e-01 -2.05640852e-01\\n-2.74755657e-01 -4.33481365e-01 -4.03706916e-02 -7.80969933e-02\\n1.33783847e-01 -3.03544998e-01 4.54520695e-02 -8.02513734e-02\\n-2.26583570e-01 -2.34379664e-01 -5.88032492e-02 -8.64266083e-02]]',\n", + " 'job_description': 'You will develop new features for our platform for dietitians using latest web and backend technologies or continue engineering our native mobile apps written in Swift and Java. We have all knowledge in-house and can provide training for your continued development. You may be a great fit for Oviva’s Engineering team, If… You are a gifted Java Engineer, passionate about developing innovative web applicationsYou are a collaborator. You thrive in environments that freely exchange ideas and viewpointsYou are an innovator that believes in making a difference to our clients and having fun doing it Required: BS or MS in Computer Science or equivalent work experience (Juniors welcome if we find proof of potential)Strong Java / object oriented design and development skillsSolid understanding of web standardsSQL proficiency (MySQL experience preferred)Strong communication skillsStrong problem solving skills, adaptable, proactive and willing to take ownership. Desired: Experience with Agile or XP methodologies or related iterative development processesExperience with Java EE, Maven, Git, IntelliJ, Hibernate, XML, SQL, HTML, JavaScript, Angular, AJAX, JSONExperienced with SOA architectures and design patternOviva does not accept agency resumes. Please do not forward resumes to our jobs alias. Oviva does not accept agency resumes. Please do not forward resumes to our jobs alias. Job Type: Full-time Language: English (Required) ',\n", + " 'soft_skills': '[\"Adaptability\", \"Collaboration\", \"Proactivity\", \"Problem Solving\", \"Communications\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Agility\", \"Computer Science\", \"Ajax (Programming Language)\", \"Mobile App\", \"Hibernate (Java)\", \"Java EE Application\", \"Iterators\", \"HyperText Markup Language (HTML)\", \"Swift (Programming Language)\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Angular (Web Framework)\", \"Git Flow\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Extensible Markup Language (XML)\", \"SQL (Programming Language)\", \"Custom Backend\", \"Autodesk Alias\"]',\n", + " 'languages': \"['English', 'Oromo', 'Uighur', 'Xhosa', 'Dzongkha']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'data scientist in tel-aviv',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.18293035e-01 2.87841141e-01 5.12300014e-01 -7.21083768e-03\\n5.24712682e-01 -1.88244194e-01 -1.17877543e-01 2.70312518e-01\\n-5.77173606e-02 -3.23469400e-01 -1.44767746e-01 -2.39758983e-01\\n-1.33455500e-01 1.63746506e-01 2.24244371e-01 3.49083453e-01\\n2.10390851e-01 4.85742167e-02 -2.19078898e-01 3.56796920e-01\\n1.08912639e-01 -2.76170559e-02 3.07881739e-02 8.12087834e-01\\n3.18082333e-01 2.93625891e-03 -8.18525702e-02 -3.55271362e-02\\n-2.17758745e-01 -1.63740441e-01 4.30000007e-01 2.15683579e-02\\n-1.47977367e-01 -3.33791941e-01 1.47535443e-01 1.79005191e-01\\n-2.73670375e-01 2.32104622e-02 -1.56353980e-01 1.55275434e-01\\n-4.87558007e-01 -2.98121899e-01 -6.23520240e-02 8.38000029e-02\\n-3.07590961e-01 -3.54387790e-01 9.75237340e-02 -1.02897167e-01\\n9.54963788e-02 1.98823959e-02 -5.77964842e-01 2.69739419e-01\\n-2.04751775e-01 -3.27793479e-01 3.35760653e-01 6.56660855e-01\\n2.63097230e-02 -5.55410028e-01 -3.31110209e-01 -3.70134026e-01\\n-6.39993399e-02 -6.52012378e-02 6.68702051e-02 -3.81399423e-01\\n3.34978670e-01 4.01002076e-03 -8.22445564e-03 3.82482320e-01\\n-8.58393788e-01 -1.37028411e-01 -2.64403045e-01 9.09647048e-02\\n-3.66348296e-01 -8.84052552e-03 -3.38790148e-01 -2.39188224e-01\\n3.69494632e-02 3.96705240e-01 1.06598876e-01 4.03243452e-02\\n-1.29990965e-01 2.69204468e-01 -2.73234189e-01 3.25216651e-01\\n3.10159683e-01 3.27072799e-01 2.10068285e-01 2.86820263e-01\\n-4.34033751e-01 4.11853403e-01 1.43094495e-01 -3.09442371e-01\\n1.08997867e-01 2.70852089e-01 4.39643055e-01 8.12140778e-02\\n1.45917118e-01 1.25089183e-01 -2.27411553e-01 2.50035554e-01\\n1.86893985e-01 -3.55020821e-01 -1.54045550e-02 -9.37457457e-02\\n-8.06592852e-02 4.15019430e-02 6.25080895e-03 1.73431516e-01\\n-4.20865238e-01 4.12830085e-01 1.65124029e-01 -1.33727670e-01\\n-1.41450658e-01 -5.59730351e-01 -1.32213861e-01 8.89212359e-03\\n-1.47841694e-02 2.11780146e-01 1.23516731e-01 2.09867597e-01\\n1.08305834e-01 6.59859255e-02 1.33507490e-01 9.74079132e-01\\n-6.29510805e-02 1.10877909e-01 -1.32439673e-01 3.78171325e-01\\n1.40447825e-01 -2.11893439e-01 2.49871910e-01 2.28198484e-01\\n8.04139003e-02 -1.73262596e-01 -2.73073584e-01 3.56066465e-01\\n-1.47886500e-01 -1.64400339e-01 -3.56325984e-01 2.89170325e-01\\n-4.88935001e-02 -5.75941622e-01 6.70860589e-01 5.96228130e-02\\n2.34454915e-01 -3.51504609e-02 1.24850124e-01 -1.01970524e-01\\n-1.23098195e-01 2.93026090e-01 5.42703234e-02 1.32511228e-01\\n-3.47178042e-01 -2.18496352e-01 -2.20214114e-01 2.49481991e-01\\n-3.77162009e-01 1.21448226e-01 -9.87554342e-02 -1.15173399e-01\\n1.61477342e-01 1.28003499e-02 -3.42942923e-01 1.66983321e-01\\n-1.35706723e-01 -1.80758610e-01 -2.04923898e-02 3.19539130e-01\\n-1.88702732e-01 3.61160785e-01 -5.94299920e-02 -1.77253917e-01\\n5.82493186e-01 1.11601993e-01 1.30582482e-01 -5.30823618e-02\\n2.72910118e-01 -1.05887450e-01 2.20045894e-01 1.11448959e-01\\n-7.38385797e-01 3.85596603e-01 -2.84547359e-02 -1.73716813e-01\\n-1.65580641e-02 5.10152914e-02 3.64965647e-01 -3.59147787e-01\\n4.98479269e-02 -1.66514322e-01 -3.25890452e-01 -1.92414984e-01\\n-2.29196206e-01 4.21810709e-02 5.25538445e-01 -4.21860158e-01\\n1.81264244e-02 2.62536764e-01 -5.79888821e-01 -1.29377455e-01\\n2.31570154e-01 1.09798148e-01 4.93862182e-02 1.45558715e-01\\n-2.01086015e-01 -5.92694819e-01 1.28643159e-02 -4.03994501e-01\\n-3.53430837e-01 -1.05816629e-02 -2.70896882e-01 1.69163838e-01\\n-1.03219122e-01 -6.22279793e-02 -9.72907692e-02 1.49337977e-01\\n-2.91529000e-01 9.61449966e-02 1.82307839e-01 7.16495737e-02\\n2.87366241e-01 6.04301207e-02 -3.59633982e-01 5.36509454e-01\\n-1.32813379e-01 5.92790067e-01 1.60871685e-01 -8.45661759e-01\\n5.38983703e-01 3.52200985e-01 4.08283696e-02 -3.83220077e-01\\n5.54943502e-01 -3.82794738e-01 -1.18547067e-01 7.00652227e-02\\n-3.33947718e-01 -3.28016520e-01 3.69035810e-01 -2.78760403e-01\\n-3.24766517e-01 5.73739171e-01 1.16708800e-01 6.31609857e-02\\n3.66605490e-01 -3.17673743e-01 -1.56395152e-01 1.07739098e-01\\n-1.23718701e-01 -2.78182715e-01 -5.57289720e-01 2.01117769e-02\\n-6.72401637e-02 -5.01689613e-01 -1.77827924e-01 -3.52551490e-01\\n-2.68854499e-01 -3.42199683e-01 -2.08490387e-01 1.64829910e-01\\n1.96887955e-01 1.65492341e-01 -6.21476211e-03 -3.97751480e-03\\n5.06284786e-03 -6.92227781e-01 -7.15350825e-03 4.90946174e-02\\n4.99817550e-01 1.91982672e-01 1.46058634e-01 -6.45228401e-02\\n9.23559666e-02 6.21987641e-01 -2.94392377e-01 -4.10207957e-01\\n1.60949573e-01 2.08620057e-01 -5.49437888e-02 -1.86902463e-01\\n1.19672351e-01 3.19383144e-01 -4.58880246e-01 1.41053066e-01\\n-2.08991498e-01 6.99654967e-02 2.75222689e-01 1.16555570e-02\\n-2.04641044e-01 -2.04443306e-01 -7.49943033e-02 2.67654330e-01\\n-5.31203032e-01 -2.11172640e-01 4.50798422e-01 2.19182745e-01\\n1.23261519e-01 1.32240802e-01 1.68832824e-01 -9.81790423e-02\\n-3.55463505e-01 -1.39827728e-01 1.36318460e-01 2.32824355e-01\\n4.70402092e-02 1.35376140e-01 -5.45809083e-02 -6.73519611e-01\\n-3.00617957e+00 -1.60012737e-01 1.17671415e-01 -1.75615221e-01\\n3.61178368e-01 -1.64495587e-01 1.43302590e-01 -9.03277751e-03\\n-3.49488795e-01 -6.10821731e-02 -2.09754616e-01 -2.23797321e-01\\n8.75594839e-02 2.50830948e-01 8.35473463e-02 3.01108092e-01\\n1.15815252e-01 -2.84762204e-01 1.64243989e-02 3.78445059e-01\\n-1.82845399e-01 -7.49971211e-01 3.38451043e-02 2.89310440e-02\\n2.37582803e-01 2.86669821e-01 -5.35140693e-01 -1.41612977e-01\\n-3.35757196e-01 -1.93789482e-01 1.41799256e-01 -4.32356775e-01\\n-2.08259672e-01 2.76039302e-01 1.81092039e-01 8.33089277e-03\\n1.05184980e-01 -3.07880163e-01 -7.87858367e-02 -4.05652016e-01\\n8.44321847e-02 -6.88022316e-01 -2.27253325e-02 -2.53851945e-03\\n6.76779807e-01 -2.75195360e-01 2.01655611e-01 1.07493915e-01\\n1.00873686e-01 3.83704193e-02 3.70400399e-02 3.45684006e-03\\n-2.38506883e-01 -3.11897129e-01 3.23845446e-02 -1.71624944e-01\\n5.28447032e-01 5.87214768e-01 -1.27861023e-01 3.21895443e-03\\n7.55982623e-02 -3.32092673e-01 -4.32284087e-01 -4.22599584e-01\\n-2.07180500e-01 -1.82864100e-01 -6.47473037e-01 -5.84745228e-01\\n-1.27664909e-01 -1.65396556e-01 -1.21536672e-01 5.69952726e-01\\n-2.91157603e-01 -3.13016921e-01 -7.76192732e-03 -6.26682997e-01\\n2.63738483e-01 -9.93413553e-02 7.07623661e-02 -2.06828043e-01\\n-1.94918439e-01 -6.63694561e-01 6.09017462e-02 -6.81228712e-02\\n-1.35057598e-01 -2.39459768e-01 4.28878665e-02 -1.63148925e-01\\n-3.04237574e-01 -5.44258356e-01 4.25652415e-01 1.30276144e-01\\n2.81241715e-01 1.27569154e-01 4.44982022e-01 -1.62410602e-01\\n2.86756963e-01 1.08747140e-01 1.32018223e-01 -3.25071961e-01\\n6.31374940e-02 1.51748862e-03 5.41878521e-01 -2.35481575e-01\\n7.42597878e-02 1.81875736e-01 -2.45808855e-01 -4.55430560e-02\\n3.82158905e-01 -5.88339232e-02 8.51765275e-02 -3.27251196e-01\\n4.22881663e-01 -2.92879015e-01 -5.35061844e-02 6.91487342e-02\\n2.01761127e-01 7.53794432e-01 2.33551376e-02 -3.19270164e-01\\n-3.02711785e-01 4.92297024e-01 -1.02416702e-01 -4.22330499e-02\\n3.65426624e-03 6.59923702e-02 -1.36420980e-01 2.41520226e-01\\n-6.08639531e-02 -2.74800241e-01 -1.54007182e-01 -9.21609104e-02\\n-1.80405170e-01 2.99591571e-01 2.38003865e-01 8.13113302e-02\\n-9.06702802e-02 -3.00942063e-01 -3.02870907e-02 2.85105705e-01\\n2.45284632e-01 4.05236095e-01 1.71040803e-01 -2.73677856e-01\\n1.24181218e-01 3.18955183e-01 -1.68900564e-01 3.66705984e-01\\n-2.39510164e-01 4.84256446e-02 -5.51192164e-01 -2.27828890e-01\\n-2.82664031e-01 -4.12412703e-01 2.08331913e-01 3.75236183e-01\\n1.40334994e-01 -1.74522903e-02 5.76600023e-02 -3.92776936e-01\\n3.58074427e-01 1.88306466e-01 1.23329140e-01 7.14654401e-02\\n-9.24802721e-02 5.21789491e-01 1.76760778e-02 -1.29744336e-01\\n-4.99612056e-02 1.19916320e-01 -1.91738874e-01 -3.10217887e-01\\n1.79390199e-02 -5.62416434e-01 -2.13426292e-01 4.20868009e-01\\n1.21819377e-01 -2.28558898e-01 -1.72867492e-01 1.23649307e-01\\n-3.05206259e-03 -2.60526448e-01 -2.40866095e-01 -5.26610166e-02\\n2.97338873e-01 3.12007535e-02 2.88476765e-01 -4.86263722e-01\\n1.02790457e-03 -1.89638849e-05 -9.14216042e-02 4.82597053e-01\\n5.08560687e-02 9.11352411e-02 -1.94687262e-01 -1.18908972e-01\\n4.49147791e-01 -1.26008853e-01 -3.90892252e-02 -2.84874924e-02\\n4.43721712e-02 -1.30077496e-01 -4.30025816e-01 9.27536860e-02\\n5.09439893e-02 -2.70332903e-01 -2.62129884e-02 9.39276218e-02\\n1.60054103e-01 6.53310865e-02 -5.40078759e-01 -3.00339073e-01\\n-2.47534916e-01 2.84825265e-02 1.58488408e-01 -4.22260523e-01\\n-3.33974436e-02 -7.40806665e-03 -6.69469476e-01 2.35402569e-01\\n-1.84741929e-01 2.88976654e-02 2.48318851e-01 6.24485537e-02\\n-3.87329429e-01 -1.78277954e-01 -9.41277761e-03 2.96678513e-01\\n-3.83303940e-01 -2.22639427e-01 -1.06608696e-01 -9.75611448e-01\\n2.14084610e-01 8.76736864e-02 -1.34298623e-01 2.07775071e-01\\n-8.97926092e-03 -6.58091366e-01 8.31519142e-02 -4.75828856e-01\\n-1.16090886e-01 2.41030082e-02 -2.85048157e-01 -4.04611379e-01\\n1.46265879e-01 1.18161179e-01 -2.41376832e-01 5.49563885e-01\\n-3.88389558e-01 3.07227850e-01 -6.42132461e-02 -5.95144890e-02\\n-2.75390446e-02 -2.00592190e-01 8.07937086e-02 -2.97519088e-01\\n-2.33403519e-01 -2.56137401e-01 -2.21348792e-01 -2.19993785e-01\\n-5.67318127e-02 -2.34017238e-01 -1.44421533e-01 7.18368590e-02\\n2.87361383e-01 3.03286873e-02 -1.85453922e-01 -3.87502939e-01\\n1.79538220e-01 -3.80847037e-01 -5.69932647e-02 -3.36848021e-01\\n-1.88614819e-02 -1.21831067e-01 1.33851856e-01 1.37501493e-01\\n9.43917036e-02 -2.75968164e-01 4.13993090e-01 -3.47519577e-01\\n-3.95263761e-01 -5.05526252e-02 3.56818251e-02 -6.65428936e-02\\n2.56928712e-01 -4.65586632e-01 2.22059134e-02 3.06080818e-01\\n2.08225414e-01 -4.53113355e-02 1.50231272e-01 -1.42714649e-01\\n-7.98468292e-02 3.09931517e-01 -3.72600824e-01 9.30723622e-02\\n7.53199816e-01 1.80170029e-01 8.15048665e-02 1.31628498e-01\\n2.70878136e-01 3.33038032e-01 5.43331385e-01 7.10164607e-02\\n-6.47241808e-03 3.65606636e-01 5.76459952e-02 -4.20979321e-01\\n-5.20156138e-02 -1.70334429e-01 -1.92165419e-01 -4.35033321e-01\\n6.81549609e-01 3.40471238e-01 -3.55009824e-01 -2.90121287e-01\\n-1.23186998e-01 -2.55506933e-01 2.27265403e-01 5.58853671e-02\\n-1.80744994e-02 -4.28048149e-02 5.25710464e-01 -3.21102552e-02\\n2.52861470e-01 5.23727894e-01 -1.91659644e-01 -3.69987607e-01\\n-3.34243551e-02 3.49063009e-01 4.16438170e-02 4.03664291e-01\\n-2.55929261e-01 3.37148309e-01 1.56096965e-02 7.81616271e-02\\n-3.91230062e-02 1.74844608e-01 2.87186116e-01 5.53589426e-02\\n2.91800857e-01 4.39713523e-02 3.93747956e-01 4.43959564e-01\\n2.22822219e-01 5.12729526e-01 3.28795314e-01 1.39577046e-01\\n3.15115660e-01 6.16119981e-01 3.34165603e-01 7.75566250e-02\\n4.96870354e-02 1.06310681e-01 9.89114121e-02 -3.53255607e-02\\n3.74655962e-01 2.58748323e-01 1.14481501e-01 9.13820505e-01\\n4.19050455e-01 2.90576130e-01 7.83076227e-01 -7.25676179e-01\\n-4.61633861e-01 5.01146205e-02 5.66897154e-01 -4.15733337e-01\\n-9.57862958e-02 1.77778676e-01 -2.46684670e-01 3.16184282e-01\\n-5.03846407e-01 -1.78304851e-01 3.22709903e-02 2.42886879e-02\\n-1.55182248e-02 -7.84657374e-02 -2.36155882e-01 5.91551550e-02\\n-1.20163910e-01 -2.41799146e-01 -4.08412069e-01 -1.59290597e-01\\n-2.17466012e-01 -1.96896628e-01 -1.58770263e-01 -6.34346753e-02\\n-2.13597819e-01 -4.25238073e-01 -1.35838211e-01 5.75714409e-02\\n3.49687219e-01 -1.05659075e-01 -1.77324012e-01 -1.64048001e-01\\n3.27015936e-01 2.69009501e-01 5.35591185e-01 -3.74660175e-03\\n4.58556227e-02 -1.60626084e-01 -2.26541489e-01 2.07142279e-01\\n4.24319319e-02 6.97323913e-03 6.39940202e-02 3.79417956e-01\\n-1.05872333e-01 -9.79279056e-02 1.52147800e-01 2.89568722e-01\\n-4.49063867e-01 -5.00153303e-02 -7.25549161e-02 2.81835824e-01\\n5.87736927e-02 1.98308975e-01 -2.39006579e-01 6.30554259e-02\\n-6.29267693e-02 -6.17099345e-01 3.35754007e-01 -1.26462936e-01\\n-2.06246108e-01 1.59260884e-01 3.71250540e-01 2.57733524e-01\\n-2.70904720e-01 -9.60356891e-02 -4.16815430e-02 1.41539529e-01\\n-5.72923608e-02 3.97079289e-01 -1.75745562e-01 -2.80430377e-01\\n-3.09338182e-01 2.19110414e-01 -3.41730177e-01 1.37834206e-01\\n3.45500819e-02 3.37633759e-01 4.48890850e-02 1.21918358e-01\\n3.77781987e-01 1.67348050e-02 -2.85270363e-01 -2.59968311e-01\\n-1.51336551e-01 -1.66423470e-01 -4.03786339e-02 -7.49597466e-03\\n1.29494756e-01 -2.36944631e-01 -7.84701332e-02 -1.31945327e-01\\n-1.03526577e-01 -2.97147602e-01 -1.72600776e-01 4.93747927e-03]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our clients based in Tel-Aviv for an experienced Data Scientist who will take a lead role in designing the next generation of financial engine, based on state-of-the-art deep learning, algorithms and innovative technology. Your role: Lead the development of novel solutions for hard, yet-unsolved problems. Acquire and maintain knowledge of state-of-the-art scientific literature in deep learning and related fields Design and implement scalable ML and DL systems, products, and solutions. Build deep learning-based products on CPUs and GPUs, leveraging latest deep learning and machine learning libraries. Manage, coach, mentor and support less experienced team members as required Your skills: Proven industrial and/or academic machine learning background (e.g., publications in ICCV, CVPR, ECCV, NIPS, ICML) Strong understanding of deep neural networks, machine learning and related fields At least 3 years’ experience Python / C++ Experience working with deep learning frameworks (e.g. Caffe, TensorFlow, etc.) Excel at both individual and team work The following skills are a big plus: Experience building AI systems using one of TensorFlow, PyTorch, MXNet, Theano, Caffe, and other open source frameworks. Solid understanding of underlying techniques in deep learning to build for scalability, and efficiency. Experience building machine learning products. Experience building scalable machine learning and deep learning systems. Your profile: MSc / PhD in related fields from leading universities (graduation with honours is a plus). Expected to be self-driven and motivated, lead and act independently to deliver; support will be provided from an experienced AI Leader as required and requested Ability to quickly understand and pick up new technologies and algorithms',\n", + " 'soft_skills': '[\"Innovation\"]',\n", + " 'hard_skills': '[\"Library Management\", \"MSC Software\", \"Apache MXNet\", \"Theano (Software)\", \"Machine Learning\", \"Industrialization\", \"C++ (Programming Language)\", \"Scientific Literature\", \"Python (Programming Language)\", \"Maintainability\", \"Financial Engineering\", \"E (Programming Language)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Caffe\", \"Scalability\", \"TensorFlow\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " 'languages': \"['English', 'Sundanese', 'Chichewa', 'Slovenian']\"},\n", + " {'company_id': '114',\n", + " 'job_title': 'internship aircraft data analytics (all genders)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'job_description': 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " 'languages': \"['English', 'Ossetian', 'Quechua', 'Amharic']\"},\n", + " {'company_id': '112',\n", + " 'job_title': 'retail business analyst (finance)',\n", + " 'location': 'Biel',\n", + " 'industry': 'Consumer Products Manufacturing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.60366142e-01 4.16198403e-01 5.13007104e-01 -4.58791181e-02\\n5.86787283e-01 -1.44783750e-01 5.34384772e-02 2.81462699e-01\\n-2.46746242e-02 -4.28145021e-01 -1.65418655e-01 -2.21339330e-01\\n1.29661649e-01 3.54477763e-02 1.68049395e-01 3.62080067e-01\\n3.07346046e-01 9.34951827e-02 -1.34250075e-01 3.25294048e-01\\n-2.91972999e-02 -8.59411955e-02 1.84458151e-01 5.66123903e-01\\n3.34935457e-01 7.89068937e-02 2.39256024e-02 2.63092127e-02\\n-1.71086565e-01 -2.20117807e-01 4.70904976e-01 5.64207844e-02\\n-6.05660044e-02 -2.88488150e-01 1.57257587e-01 8.11701342e-02\\n-2.92061716e-01 -3.28941755e-02 -1.58734024e-01 1.05157740e-01\\n-3.99021357e-01 -1.06198624e-01 1.95070915e-02 3.70941013e-02\\n-2.66377538e-01 -4.06013668e-01 6.33867783e-03 -1.56189099e-01\\n1.48816824e-01 8.71593952e-02 -4.31397587e-01 2.20859572e-01\\n-2.04779401e-01 -3.12892973e-01 3.00441056e-01 7.04635799e-01\\n-2.77992804e-02 -5.28008282e-01 -3.76709878e-01 -2.32795104e-01\\n1.89796239e-01 -7.66227841e-02 3.83774228e-02 -2.60336757e-01\\n3.19013566e-01 -1.79508459e-02 7.40850419e-02 4.09827560e-01\\n-6.95324183e-01 -7.18873739e-02 -2.93685585e-01 1.27128556e-01\\n-2.88504630e-01 -6.62443861e-02 -4.79720503e-01 -1.82769537e-01\\n1.95439048e-02 4.25904572e-01 2.41005421e-02 1.07560843e-01\\n-1.68398157e-01 3.04809749e-01 -2.57902116e-01 1.70936614e-01\\n1.94649428e-01 2.75538892e-01 2.76660860e-01 3.08616191e-01\\n-4.25903887e-01 5.70748508e-01 2.86959082e-01 -3.08938026e-01\\n2.79345155e-01 1.43819511e-01 2.97820181e-01 2.25921631e-01\\n1.73248127e-01 1.76129058e-01 -1.30423322e-01 8.98625180e-02\\n1.89846754e-01 -1.29267126e-01 -8.88215154e-02 -1.15285646e-02\\n6.13179915e-02 -1.30392864e-01 3.82471904e-02 1.90969706e-01\\n-4.33736235e-01 3.34263384e-01 2.06410047e-02 -3.37200165e-01\\n-1.20640263e-01 -3.87640148e-01 -5.62805459e-02 -7.05949515e-02\\n-5.40276170e-02 1.40669361e-01 3.61375734e-02 3.27316403e-01\\n2.20498145e-01 2.13131867e-03 1.19777098e-01 8.41232419e-01\\n-4.45607081e-02 1.39065813e-02 -2.14564577e-01 2.86546350e-01\\n6.74904883e-02 -1.73305541e-01 1.70322224e-01 1.53753191e-01\\n-1.10108256e-01 -6.70654178e-02 -3.22708040e-01 2.18080044e-01\\n1.20457457e-02 -1.68102905e-01 -2.72964418e-01 2.25012287e-01\\n1.09555405e-02 -5.12929022e-01 5.47587335e-01 -5.09203188e-02\\n5.34194708e-02 -9.95263457e-02 1.66952517e-02 -2.48408206e-02\\n-1.41182035e-01 2.23526970e-01 1.95200160e-01 1.92873627e-01\\n-2.71726429e-01 -2.66368747e-01 -2.35528126e-01 2.46072918e-01\\n-2.18030706e-01 3.27763855e-02 -2.99447179e-01 -2.19896853e-01\\n2.33294398e-01 1.04608402e-01 -3.77441734e-01 3.52003455e-01\\n-1.09248467e-01 -4.56835218e-02 -1.96931005e-01 3.78665924e-01\\n-7.41354525e-02 1.02866016e-01 -4.94200503e-03 -1.22906700e-01\\n5.34390867e-01 2.97303796e-02 2.31294394e-01 -5.08920588e-02\\n2.12059721e-01 -4.20053601e-02 1.65290609e-01 7.65089095e-02\\n-5.94647586e-01 3.27069789e-01 -8.37033838e-02 -1.12812586e-01\\n2.22171977e-01 -6.04256801e-03 2.71024883e-01 -2.72044659e-01\\n2.52232216e-02 -1.40184432e-01 -3.78637463e-01 -4.47078943e-01\\n-8.88745859e-02 -1.34797320e-01 3.25015575e-01 -4.13344175e-01\\n1.56073207e-02 1.18515484e-01 -5.09650290e-01 -1.55021593e-01\\n2.77825505e-01 2.71797627e-01 4.54138666e-02 2.47066662e-01\\n-2.21378595e-01 -5.52162111e-01 1.19831532e-01 -5.10164261e-01\\n-2.16645464e-01 1.76274776e-01 -2.66857982e-01 2.80104037e-02\\n1.73577279e-01 2.59349160e-02 -1.98723599e-02 3.89899015e-02\\n-1.94942191e-01 1.85538456e-02 7.55913928e-02 1.11020632e-01\\n2.53857166e-01 2.02024896e-02 -3.75071317e-01 5.76821804e-01\\n-2.22980350e-01 3.40066671e-01 1.26498699e-01 -8.87949288e-01\\n3.84566367e-01 2.93842435e-01 6.80350959e-02 -3.14566404e-01\\n5.83601058e-01 -4.13977951e-01 -1.78225011e-01 1.15494996e-01\\n-4.69588220e-01 -1.99960783e-01 6.85926527e-02 -1.50669530e-01\\n-3.58624190e-01 5.84099591e-01 -3.57328705e-03 3.75506766e-02\\n2.81217456e-01 -2.14951098e-01 -2.80232936e-01 -7.62230828e-02\\n-2.44614631e-01 -2.15742722e-01 -5.96243441e-01 3.64261158e-02\\n-4.16958891e-02 -4.77734625e-01 -1.31146997e-01 -3.89252007e-01\\n-1.70288205e-01 -3.55705708e-01 -1.43209577e-01 8.84838700e-02\\n1.99451908e-01 5.68324476e-02 1.77597273e-02 3.59326601e-02\\n-4.59712520e-02 -6.18733823e-01 5.12852566e-03 1.57255903e-01\\n1.59753665e-01 2.73468256e-01 8.98202509e-02 -1.07202448e-01\\n1.35245500e-03 5.40933549e-01 -2.46174008e-01 -2.01609984e-01\\n3.80955964e-01 2.12077171e-01 5.84648363e-02 -1.70039654e-01\\n7.65062645e-02 3.49149108e-01 -3.12314928e-01 8.92772898e-02\\n1.35805244e-02 -5.46073541e-02 2.87237942e-01 -8.79490674e-02\\n-2.25289941e-01 -2.69179463e-01 -1.02564923e-01 2.20300362e-01\\n-4.80968952e-01 -1.45958543e-01 6.76581562e-01 2.53809076e-02\\n-7.42538869e-02 2.29867741e-01 1.95560843e-01 -3.06113157e-02\\n-2.48976409e-01 -3.14258009e-01 1.82494730e-01 1.09043680e-01\\n1.74046487e-01 2.36267447e-02 -1.67312190e-01 -4.85412896e-01\\n-3.60415649e+00 -1.50056675e-01 8.79721437e-03 -2.05379918e-01\\n3.30240965e-01 -1.44530803e-01 1.65378690e-01 4.87620849e-03\\n-3.00524682e-01 6.67757541e-02 -1.25177607e-01 -1.62549168e-01\\n1.37074530e-01 2.58186162e-01 7.05493800e-03 2.79447496e-01\\n2.22442821e-01 -2.19912320e-01 3.83284912e-02 3.80303830e-01\\n-1.80901662e-01 -6.84099317e-01 8.62653255e-02 7.78472498e-02\\n2.18093053e-01 2.62204558e-01 -4.82520878e-01 -6.11269032e-04\\n-2.87947863e-01 -1.98416278e-01 1.54717416e-01 -2.40450412e-01\\n-1.94278672e-01 3.49303871e-01 1.80833906e-01 -6.05289377e-02\\n1.29978955e-02 -2.44155616e-01 -1.33137703e-02 -4.86943513e-01\\n8.51925015e-02 -5.80141664e-01 -4.64374460e-02 8.88477340e-02\\n7.42266417e-01 -2.04040810e-01 1.83438092e-01 8.75085145e-02\\n5.58736660e-02 2.35013649e-01 1.47243291e-01 -6.56753546e-03\\n-3.81098002e-01 -2.26574600e-01 -9.98698547e-02 -2.07036078e-01\\n5.74095905e-01 2.96574146e-01 -2.82074004e-01 -6.87422752e-02\\n8.55506584e-02 -3.22920412e-01 -4.93596911e-01 -2.09350735e-01\\n-1.77368641e-01 -4.55291606e-02 -7.74939895e-01 -4.83849436e-01\\n-2.13795125e-01 -1.60104200e-01 -8.77793506e-02 6.01570487e-01\\n-2.52961099e-01 -2.36073077e-01 -1.85377985e-01 -5.01623094e-01\\n2.90285945e-01 -7.53034726e-02 -3.05217337e-02 -2.39039481e-01\\n-1.39198676e-01 -3.60834450e-01 1.30470142e-01 1.32489279e-01\\n-1.13058902e-01 -3.23238000e-02 1.07964471e-01 -1.19760141e-01\\n-4.87621248e-01 -4.29770976e-01 3.59567672e-01 2.24547666e-02\\n2.57707626e-01 8.95719901e-02 2.66426533e-01 1.08546186e-02\\n4.13491249e-01 -9.21736136e-02 -1.94746759e-02 -5.10195792e-01\\n6.33517355e-02 8.83425493e-03 5.01223922e-01 -1.09166957e-01\\n1.02479026e-01 1.62126765e-01 -1.02498136e-01 -1.55186519e-01\\n4.45153624e-01 -1.03138238e-01 1.60426766e-01 -3.06612164e-01\\n1.88632071e-01 -2.33669668e-01 -1.73225045e-01 3.76736894e-02\\n-2.07201894e-02 5.90611696e-01 3.77056375e-02 -3.57374251e-01\\n-1.69785023e-01 3.37105781e-01 3.23901908e-03 -3.76246385e-02\\n-2.65823871e-01 -3.34164649e-02 -2.64225930e-01 1.68483421e-01\\n2.23007202e-02 -3.54478927e-03 -1.15291640e-01 8.89016129e-03\\n-6.71927854e-02 2.00307801e-01 2.70674944e-01 6.65951222e-02\\n-3.73160988e-02 -3.27037334e-01 -1.26658663e-01 1.41751766e-01\\n2.09917769e-01 3.22505683e-01 1.64607376e-01 -3.99768054e-01\\n1.00298673e-01 2.21468195e-01 -1.86139524e-01 1.86412156e-01\\n-2.58338988e-01 2.27758050e-01 -5.63447654e-01 -2.90681213e-01\\n-2.44895846e-01 -1.63093105e-01 2.75715161e-02 4.36965108e-01\\n1.67358458e-01 -2.58991510e-01 1.07551552e-01 -4.07346368e-01\\n3.43581200e-01 4.06307131e-02 1.63106278e-01 1.71737298e-01\\n2.39503826e-03 7.05112696e-01 -2.53428631e-02 -2.44587034e-01\\n-1.14659250e-01 1.74056470e-01 -1.45620212e-01 -2.09405199e-01\\n-1.83083210e-03 -5.41668296e-01 -1.26604632e-01 3.31225127e-01\\n1.94258109e-01 -1.13694057e-01 -1.69149220e-01 1.21673137e-01\\n-6.73849210e-02 -3.39557946e-01 -3.01698864e-01 4.02992293e-02\\n2.52640158e-01 2.21338689e-01 1.73625752e-01 -4.63652104e-01\\n7.05083683e-02 -1.20520629e-01 8.51229429e-02 3.95820171e-01\\n9.84107852e-02 1.84933320e-01 7.08548026e-03 -1.31313413e-01\\n4.74397600e-01 3.00073321e-03 -1.74352095e-01 -5.79775451e-03\\n9.51981246e-02 -2.12212622e-01 -3.25306773e-01 9.22251567e-02\\n-2.56574042e-02 -1.98751613e-01 -5.07578775e-02 1.36283755e-01\\n3.57528105e-02 -1.10908784e-02 -5.55078983e-01 -1.87696680e-01\\n-3.77901703e-01 2.77839191e-02 -5.84135763e-03 -6.37229443e-01\\n1.03241004e-01 9.36986879e-03 -5.44728041e-01 2.64470249e-01\\n-7.36583173e-02 4.64043729e-02 1.08570561e-01 -9.55984276e-03\\n-3.52514446e-01 -1.96703747e-01 2.19694287e-01 1.64899737e-01\\n-2.54748583e-01 -1.67042062e-01 -8.93131346e-02 -8.72232199e-01\\n2.15049982e-01 -1.19851688e-02 -8.91867876e-02 1.10289246e-01\\n-7.89234564e-02 -7.17115819e-01 3.38542521e-01 -2.95838386e-01\\n-2.83252478e-01 -2.29342729e-02 -2.00008228e-01 -3.87396753e-01\\n8.56989995e-02 2.51405854e-02 -2.29211062e-01 2.93070078e-01\\n-4.06969905e-01 4.80211198e-01 -1.23177163e-01 3.56480130e-03\\n1.28181472e-01 -2.82159239e-01 1.40940443e-01 -3.77185732e-01\\n-5.62752306e-01 -1.51011944e-01 -2.85611749e-01 -2.03779534e-01\\n-4.60707583e-02 -3.28829020e-01 -7.99030662e-02 -1.87660777e-03\\n3.67722750e-01 1.19102068e-01 -6.72884434e-02 -8.27429816e-02\\n3.71673256e-02 -3.93780380e-01 2.18084991e-01 -2.27669924e-01\\n6.95215687e-02 -1.33238673e-01 3.14161867e-01 5.68009689e-02\\n2.41384149e-01 -3.89710575e-01 3.84331822e-01 -2.77826160e-01\\n-3.90008658e-01 -1.29307330e-01 9.66409147e-02 1.94237400e-02\\n4.25935686e-01 -4.90588129e-01 6.82357047e-03 2.71835059e-01\\n1.20642483e-01 2.29296647e-02 2.20556110e-01 -1.37333006e-01\\n-2.14410856e-01 2.54804671e-01 -5.25751650e-01 2.69850612e-01\\n6.65041745e-01 1.80698931e-01 2.65957326e-01 1.97471336e-01\\n1.05660997e-01 3.52081984e-01 4.21341091e-01 2.12216135e-02\\n-8.74837413e-02 4.42590922e-01 1.31988615e-01 -5.47322989e-01\\n-3.39499824e-02 -1.62835568e-01 -1.60504475e-01 -1.97742939e-01\\n6.28086329e-01 3.23774755e-01 -3.12551558e-01 -2.21673191e-01\\n-3.99667293e-01 -2.16669708e-01 2.56090492e-01 -2.42589675e-02\\n9.14716870e-02 -3.37460525e-02 5.68908095e-01 -2.63434369e-02\\n3.75562698e-01 5.65334976e-01 -9.29379985e-02 -2.00033411e-01\\n3.08333673e-02 3.29894722e-01 2.00992823e-02 3.36188138e-01\\n-4.39430438e-02 1.77744284e-01 6.73705339e-02 2.60232836e-01\\n-1.87463120e-01 -7.88556505e-03 1.68856934e-01 1.29980827e-03\\n1.14068381e-01 1.40972257e-01 5.43366849e-01 3.91898870e-01\\n2.90129930e-01 3.46980482e-01 3.37762117e-01 -9.36607197e-02\\n4.68981355e-01 5.62566996e-01 3.21178317e-01 6.10109158e-02\\n7.38343075e-02 -2.91373376e-02 1.34322479e-01 2.55998988e-02\\n1.94931358e-01 4.82288748e-01 -2.83413082e-02 8.19744647e-01\\n2.84295976e-01 1.83909103e-01 6.73367918e-01 -4.94882017e-01\\n-2.64198005e-01 -1.15105376e-01 4.10458863e-01 -4.08013225e-01\\n7.05565978e-03 1.84181035e-01 -2.15285838e-01 1.98368043e-01\\n-4.00641769e-01 -2.45527819e-01 1.62250064e-02 7.55632669e-02\\n-4.66196984e-02 -1.74090117e-01 -7.50467777e-02 5.08568622e-02\\n-3.56083959e-02 -1.97247475e-01 -3.43990922e-01 -9.52696428e-02\\n-2.02380925e-01 7.73368329e-02 -1.02428049e-01 -2.27554906e-02\\n3.56398057e-03 -3.42539519e-01 -9.54458565e-02 -9.28687230e-02\\n3.45957577e-01 -1.81818798e-01 -1.80599958e-01 -6.76950589e-02\\n1.87284246e-01 2.16270730e-01 6.32341504e-01 -4.79642041e-02\\n1.39478520e-01 -2.07892448e-01 -1.78950593e-01 1.77008510e-01\\n2.27761999e-01 1.36873156e-01 -4.53151017e-02 5.46708703e-01\\n-3.27662736e-01 -2.22996771e-01 6.36015758e-02 2.37591371e-01\\n-3.92754376e-01 -1.50204986e-01 1.36556536e-01 2.80976892e-01\\n-9.67909545e-02 1.51441380e-01 -2.07959518e-01 2.76301261e-02\\n-1.30974427e-01 -5.04735291e-01 4.03550029e-01 -2.21229315e-01\\n-1.85949236e-01 -6.75574467e-02 2.83242136e-01 2.86418080e-01\\n-1.36499494e-01 -5.21421805e-02 -8.89497623e-02 1.32607594e-01\\n-4.51250263e-02 3.63497108e-01 -2.80329704e-01 -2.15676367e-01\\n-2.50533104e-01 2.15190738e-01 -4.90441546e-02 1.03613295e-01\\n-4.78832331e-03 2.58319288e-01 1.06775872e-01 6.51929677e-02\\n2.36263663e-01 -1.23105474e-01 -1.43801227e-01 -2.56284028e-01\\n-3.00472289e-01 -1.41711906e-01 5.21806302e-03 -1.91442847e-01\\n1.94375291e-01 -1.89875215e-01 -7.68510550e-02 -1.48815423e-01\\n-2.53974795e-01 -4.42274541e-01 -7.99143985e-02 -1.82743490e-01]]',\n", + " 'job_description': 'Job description The distribution IT team is looking for a new colleague: Retail Business Analyst. As a retail IT Business Analyst, you will be working with business and IT partners to continually implement and improve Retail solutions. You will deliver an integrated Retail solution fitting our group’s needs, focusing on the understanding of business processes focusing especially on financial aspects. Your main task is to deliver parameterization and development as of maintaining support and develop Retail. Establishing user and technical documentation, providing some training and bringing in new ideas based on a solution oriented approach is also part of the job. In addition, you will liaise with internal and external services and will be responsible for application management and the development of identified Retail processes. Your responsibilities • Implement Retail solutions of Brands and countries • Provides support to internal users • Analyze and specifies development enhancements and new functions on Retail platforms • Coordinates, schedules, tests, implements solutions in order to remain on current levels of software utilized in the supported sites • Seek out opportunities to optimize financial processes • Recommend loss prevention measures Profile Bachelor degree or equivalent in business and/or finance • 3- 5 years’ relevant work experience • Retail systems exposure/knowledge. SAP Finance knowledge is a plus. • Cegid CBR system experience a plus • Strong project management skills • Experience with Microsoft Office Suite and Microsoft Operating Systems • Fluent in English and French and/or German Professional requirements Bachelor degree or equivalent in business and/or finance • 3- 5 years’ relevant work experience, Retail systems exposure/knowledge. Languages Fluent in English and French and/or German ',\n", + " 'soft_skills': '[\"Professionalism\", \"Coordinating\", \"Scheduling\", \"Integration\", \"Microsoft Office\"]',\n", + " 'hard_skills': '[\"Utility Software\", \"Operating Systems\", \"Microsoft Operating Systems\", \"Project Management\", \"Finance\", \"Loss Prevention\", \"Business Process\", \"Additives\", \"Maintainability\", \"Levelling\", \"Job Descriptions\", \"SAP Knowledge Warehouse\", \"Technical Documentation\", \"Branding\"]',\n", + " 'languages': \"['English', 'Telugu', 'Chichewa']\"},\n", + " {'company_id': '54',\n", + " 'job_title': 'scientific consultant/field application scientist',\n", + " 'location': 'Basel',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.genedata.com',\n", + " 'jobdescription_embedded': '[[-2.32442379e-01 3.07738304e-01 3.99056196e-01 -2.70836577e-02\\n6.56583786e-01 -5.14619537e-02 -3.88629101e-02 2.16710836e-01\\n5.41671105e-02 -3.65262270e-01 -5.75208887e-02 -2.65726984e-01\\n-1.72851030e-02 2.60878086e-01 1.39552383e-02 5.63386559e-01\\n3.62089574e-01 3.96771282e-02 -9.41991806e-02 3.56274962e-01\\n-5.69989122e-02 -2.42773950e-01 5.02247214e-02 8.23738694e-01\\n3.24123740e-01 6.94254786e-03 -1.77322656e-01 1.00362211e-01\\n-2.35687435e-01 -1.63654178e-01 5.07943273e-01 1.21569917e-01\\n-2.38539785e-01 -4.81321871e-01 6.84724674e-02 1.58220410e-01\\n-2.25910336e-01 6.19722949e-03 -2.18426913e-01 1.20587371e-01\\n-5.92146397e-01 -2.01387703e-01 -7.36053139e-02 7.53944665e-02\\n-2.64677465e-01 -3.64674091e-01 -6.15307316e-03 -4.80009206e-02\\n2.44331494e-01 6.69034198e-02 -3.81608367e-01 2.56636143e-01\\n-4.03986573e-01 -1.84787408e-01 3.12528133e-01 6.92409873e-01\\n-7.89592341e-02 -4.88350838e-01 -6.04032993e-01 -3.58812571e-01\\n5.93140908e-02 -5.86972982e-02 1.92329317e-01 -4.75805640e-01\\n3.39513659e-01 9.15621072e-02 1.34341354e-02 2.89688170e-01\\n-8.39130759e-01 -2.49590978e-01 -3.35327774e-01 9.25211310e-02\\n-2.72830367e-01 -2.10000388e-02 -2.61939406e-01 1.69139169e-02\\n-1.35113761e-01 3.53417754e-01 -2.40524467e-02 9.96802300e-02\\n-1.81974962e-01 3.26806903e-01 -2.62390912e-01 3.48742127e-01\\n7.76790082e-02 2.17974648e-01 2.93708682e-01 3.27362180e-01\\n-2.66070187e-01 4.73173320e-01 1.68133423e-01 -3.44853580e-01\\n2.13494539e-01 9.46282074e-02 3.67666721e-01 -3.16059068e-02\\n2.43596822e-01 1.16984189e-01 -4.54034269e-01 2.83447415e-01\\n2.36201704e-01 -3.56486201e-01 1.41795546e-01 -1.51516601e-01\\n5.02755046e-02 -5.24020419e-02 1.38191536e-01 7.64484257e-02\\n-4.96059299e-01 6.24560237e-01 -4.82736155e-02 -2.51710296e-01\\n-1.39408618e-01 -5.07217169e-01 -1.52183965e-01 1.97517961e-01\\n-4.27782685e-02 1.29341125e-01 9.18544680e-02 2.09814966e-01\\n2.55204499e-01 -2.76704989e-02 1.36783272e-01 7.58589029e-01\\n-8.91354978e-02 -1.24567505e-02 -1.26805782e-01 1.99975014e-01\\n1.80370420e-01 -2.64291406e-01 2.90985793e-01 1.30984694e-01\\n2.58466601e-03 -1.01340584e-01 -2.23201007e-01 2.24601954e-01\\n2.01595873e-02 -3.03292215e-01 -2.25105658e-01 3.17411721e-01\\n9.46880877e-02 -5.20789862e-01 6.35551333e-01 -1.60975326e-02\\n1.67411372e-01 -4.36340943e-02 5.87628447e-02 -1.14940353e-01\\n4.18886021e-02 1.96062341e-01 2.48873174e-01 2.14157447e-01\\n-2.18030497e-01 -2.67030060e-01 -6.99123368e-02 8.33025649e-02\\n-4.75801766e-01 1.33130029e-01 -7.00868368e-02 -1.15509093e-01\\n3.74666929e-01 2.42697634e-03 -3.81397992e-01 2.08057284e-01\\n-1.92758903e-01 -1.72918383e-02 1.20048728e-02 4.74323511e-01\\n-2.10934550e-01 2.53578424e-01 -1.84125900e-01 -1.37920976e-01\\n6.67226791e-01 1.28614143e-01 3.73597503e-01 9.46645141e-02\\n3.30942065e-01 -1.19044006e-01 1.98491126e-01 3.77705619e-02\\n-7.23338962e-01 4.29489166e-01 -7.97711387e-02 -3.09408069e-01\\n1.69961601e-01 -1.99996993e-01 5.01872122e-01 -2.91776419e-01\\n2.49987599e-02 -1.69333428e-01 -2.95621842e-01 -3.56718183e-01\\n-2.09738225e-01 -7.61451665e-03 3.33374918e-01 -3.18108767e-01\\n-3.90474424e-02 2.30349109e-01 -6.09039366e-01 -2.01040953e-01\\n1.81049198e-01 1.91210836e-01 2.08117276e-01 7.44753703e-02\\n-1.70233592e-01 -7.19654799e-01 7.18926787e-02 -4.95360225e-01\\n-1.82624698e-01 6.06344305e-02 -3.59937906e-01 2.40485370e-01\\n-8.15402567e-02 1.96651965e-02 -9.33565497e-02 1.38061076e-01\\n-1.88314527e-01 5.71838096e-02 1.23764602e-02 -2.60408986e-02\\n1.69260055e-01 9.64049548e-02 -4.70478952e-01 4.64293301e-01\\n-2.30761796e-01 5.80371141e-01 -1.45201404e-02 -7.80861139e-01\\n4.89111036e-01 4.86604184e-01 2.98841633e-02 -2.76401877e-01\\n5.85330963e-01 -4.36097443e-01 -1.34886831e-01 2.81325486e-02\\n-4.29145932e-01 -2.12550968e-01 7.04684779e-02 -2.51096755e-01\\n-2.97495723e-01 5.27800679e-01 6.29262775e-02 1.88219219e-01\\n3.65226179e-01 -1.81559578e-01 -1.35169342e-01 1.40606478e-01\\n-9.61726755e-02 -2.16735393e-01 -6.32967353e-01 -2.06193298e-01\\n-4.26792018e-02 -3.81757081e-01 -5.50195836e-02 -3.71231496e-01\\n-6.74760863e-02 -2.32709303e-01 -2.11190253e-01 7.12805614e-03\\n3.07608187e-01 2.08460793e-01 -1.87103581e-02 5.56767322e-02\\n-1.29283085e-01 -7.74057686e-01 4.97019887e-02 1.35979354e-01\\n3.15975845e-01 3.53715718e-01 1.14296950e-01 -2.31418386e-02\\n2.22290214e-03 5.10602891e-01 -3.86080205e-01 -3.91206533e-01\\n3.52677554e-02 2.08746955e-01 4.89863902e-02 -1.17181569e-01\\n1.99449673e-01 3.50901425e-01 -2.11591825e-01 8.63744617e-02\\n-8.83418545e-02 -7.25206509e-02 4.18237448e-01 -4.51538377e-02\\n-2.92016447e-01 -5.91106340e-02 -2.68920064e-01 6.07148260e-02\\n-5.14914632e-01 -2.72147536e-01 3.59722465e-01 -4.37740088e-02\\n1.76675603e-01 1.89731538e-01 1.41168416e-01 3.82324979e-02\\n-2.13246018e-01 -3.90323728e-01 4.25515473e-01 6.11937009e-02\\n5.83200902e-02 1.13105133e-01 -6.59661368e-03 -6.34525895e-01\\n-3.03469348e+00 -6.13375977e-02 9.52121802e-03 -2.41200656e-01\\n4.11783099e-01 -7.55954236e-02 1.65503681e-01 -6.50815517e-02\\n-2.76874661e-01 6.35305196e-02 -1.41984761e-01 -3.11619550e-01\\n1.40695348e-01 1.51296586e-01 1.28531292e-01 5.42428643e-02\\n5.74936010e-02 -2.79139340e-01 7.29653835e-02 4.37327504e-01\\n-2.84770168e-02 -7.17190981e-01 1.30334347e-01 7.68823475e-02\\n2.47291654e-01 3.56453240e-01 -6.16812289e-01 -1.25489697e-01\\n-3.46225768e-01 -2.33285636e-01 1.81676090e-01 -2.66291916e-01\\n-1.63844749e-01 2.77898967e-01 1.89369515e-01 -1.45473361e-01\\n-1.05180470e-02 -3.33743274e-01 -9.89596546e-02 -5.35880327e-01\\n1.35906219e-01 -5.87640226e-01 -9.33447257e-02 -2.44360194e-01\\n6.26185000e-01 -2.02125475e-01 1.91916883e-01 1.21745184e-01\\n1.56054184e-01 1.74986109e-01 2.12640196e-01 6.92513287e-02\\n-1.18076600e-01 -1.11742005e-01 -6.85724765e-02 -2.02516153e-01\\n5.75369716e-01 3.16606164e-01 -2.83073962e-01 -1.28682740e-02\\n1.68891281e-01 -3.02579522e-01 -5.72280705e-01 -1.66499570e-01\\n-1.49839446e-01 -1.61743075e-01 -5.59600413e-01 -4.29784268e-01\\n-1.28293797e-01 -9.80977193e-02 -2.34381109e-03 6.44748032e-01\\n-3.15855145e-01 -2.14313835e-01 1.65215414e-02 -5.08993328e-01\\n2.86774337e-01 -9.86029208e-02 1.18833482e-02 -2.17344284e-01\\n-2.73361981e-01 -5.32851100e-01 1.64437652e-01 -6.03721663e-02\\n-2.73424499e-02 -2.49530703e-01 -1.47405341e-01 -3.32870707e-02\\n-3.70957136e-01 -5.24775386e-01 4.05381322e-01 9.72573757e-02\\n4.25845146e-01 8.51523280e-02 1.59927458e-01 -2.17530325e-01\\n2.94481456e-01 2.47242544e-02 5.91279343e-02 -3.10467958e-01\\n1.35945166e-02 2.92563625e-02 4.89490867e-01 -1.15475401e-01\\n-1.04606792e-01 -5.05292043e-02 -3.02600414e-01 -9.26430821e-02\\n3.40641886e-01 -8.70705098e-02 2.66492441e-02 -7.03636706e-02\\n3.19053829e-01 -2.73771942e-01 -5.13524413e-02 1.03461698e-01\\n1.32545024e-01 7.65318036e-01 6.28628433e-02 -4.00142252e-01\\n-8.10757130e-02 3.57248753e-01 -2.06922024e-01 1.33682862e-01\\n-2.70684715e-02 7.60252699e-02 -2.65021086e-01 3.30453515e-01\\n5.44475317e-02 -8.18144754e-02 -1.57014057e-01 -1.61569178e-01\\n-1.89940423e-01 3.02544534e-01 2.83511639e-01 2.02994585e-01\\n-7.92443529e-02 -2.94725865e-01 -1.50302261e-01 3.31764102e-01\\n2.14060768e-01 4.03191328e-01 1.91767722e-01 -2.37404287e-01\\n-1.17510587e-01 3.08192104e-01 -1.08263865e-01 3.18853796e-01\\n-1.39326900e-01 1.65630504e-01 -5.89734912e-01 -4.29030359e-02\\n-4.10736501e-01 -3.31209838e-01 2.24690050e-01 4.06404763e-01\\n2.27813810e-01 -1.29744560e-01 9.46846977e-02 -4.30739284e-01\\n1.96246237e-01 1.60955489e-01 4.73779850e-02 -2.54090559e-02\\n-2.09319949e-01 5.57296753e-01 -7.63453096e-02 -2.54182160e-01\\n-8.70946869e-02 5.38765229e-02 -2.61154503e-01 -1.71153188e-01\\n2.15041012e-01 -4.73926425e-01 -1.67470634e-01 2.80276358e-01\\n1.38712376e-01 -1.68808460e-01 -3.00579071e-01 3.77027124e-01\\n6.16286369e-03 -4.61226881e-01 -3.65501642e-01 -4.46242765e-02\\n3.21592331e-01 8.78513902e-02 2.28920728e-01 -5.86782336e-01\\n-5.19755259e-02 -5.28373793e-02 -4.81466427e-02 3.88798833e-01\\n-1.68965489e-01 -1.56518333e-02 -1.70848072e-01 -1.25513181e-01\\n3.95823896e-01 -7.49285892e-03 -4.95692901e-02 8.19482580e-02\\n7.74428546e-02 -2.36917481e-01 -3.51838470e-01 2.34114919e-02\\n-3.88629138e-02 -2.03384325e-01 -1.38144076e-01 2.29392320e-01\\n1.09325657e-02 1.26697153e-01 -6.16341829e-01 -1.54170260e-01\\n-1.82784826e-01 6.08055815e-02 -4.74814512e-02 -5.57095110e-01\\n-3.55729237e-02 -1.99092269e-01 -5.11761665e-01 2.62366831e-01\\n-9.36825424e-02 -1.31517902e-01 2.20228449e-01 -2.05761287e-02\\n-2.81221479e-01 -1.79363862e-01 8.89880303e-03 2.57389337e-01\\n-3.45206201e-01 -2.54300147e-01 -7.87793100e-02 -9.11462665e-01\\n8.02039877e-02 7.98257291e-02 -1.28931329e-01 1.46059453e-01\\n-1.05976507e-01 -5.90200424e-01 1.57370567e-01 -3.58438671e-01\\n-1.10712744e-01 -2.97286585e-02 -3.15314293e-01 -5.18359281e-02\\n1.24939263e-01 7.24566169e-03 -2.41730705e-01 2.75774807e-01\\n-2.30751440e-01 3.09834301e-01 -2.00493902e-01 2.43222751e-02\\n2.08485574e-02 -1.48160905e-01 2.95591176e-01 -2.32712105e-01\\n-4.58940089e-01 -1.36098534e-01 -2.34504044e-01 -1.23537526e-01\\n-1.28428802e-01 -2.28376091e-01 2.01412775e-02 6.47189096e-02\\n4.76199746e-01 -5.59079982e-02 -1.50721937e-01 -1.56556576e-01\\n1.07670739e-01 -5.33652008e-01 8.61099139e-02 -4.05896008e-02\\n-9.05444846e-04 -5.35680205e-02 4.33252826e-02 1.54006422e-01\\n3.41710687e-01 -4.61550593e-01 4.04270351e-01 -5.42552590e-01\\n-3.62047374e-01 -1.28544137e-01 2.70606652e-02 2.02727336e-02\\n2.86612302e-01 -5.11082530e-01 -2.53720824e-02 3.18889081e-01\\n5.93949631e-02 4.76487726e-03 2.44288251e-01 -1.50833070e-01\\n-1.79235965e-01 2.14298427e-01 -2.99159825e-01 1.20361798e-01\\n9.02350187e-01 3.02395076e-01 1.92661919e-02 2.30523065e-01\\n1.34616315e-01 3.47339958e-01 4.97985303e-01 -3.15038767e-03\\n-1.27127012e-02 3.40488553e-01 1.68656141e-01 -4.23993647e-01\\n-1.61434010e-01 6.70711249e-02 -1.46439567e-01 -4.88276631e-01\\n6.79491639e-01 2.96415299e-01 -4.29011464e-01 -2.58326173e-01\\n-2.59714305e-01 -9.67805758e-02 1.90644547e-01 -1.05458230e-01\\n3.43606733e-02 -8.65786746e-02 4.88759816e-01 -6.79901540e-02\\n9.30004939e-02 5.64005494e-01 -5.58255576e-02 -2.06642300e-01\\n-9.01564881e-02 2.11891010e-01 1.60535485e-01 5.16209960e-01\\n-1.24296106e-01 2.39304364e-01 -1.37977287e-01 2.12765634e-02\\n-1.88231409e-01 1.72804058e-01 2.68478453e-01 6.47890493e-02\\n5.85948266e-02 1.28820315e-01 5.82628906e-01 5.88080049e-01\\n3.92452300e-01 2.66587734e-01 3.32661688e-01 3.79032120e-02\\n5.07516026e-01 4.10881281e-01 2.30346859e-01 3.18531096e-02\\n-9.70747322e-04 2.30345070e-01 1.73367172e-01 4.46295813e-02\\n4.15993273e-01 2.71433294e-01 4.40230556e-02 8.23480308e-01\\n1.90676600e-01 2.88234293e-01 6.15596294e-01 -6.13289237e-01\\n-2.93532610e-01 6.14848621e-02 4.95927036e-01 -4.12347674e-01\\n1.25404656e-01 1.61690205e-01 -1.07983485e-01 2.72096515e-01\\n-5.64436376e-01 -2.17067778e-01 2.91454047e-03 1.60865024e-01\\n1.11436784e-01 -2.03232080e-01 -5.40719926e-02 6.66900352e-02\\n-1.02776587e-01 -2.18793243e-01 -4.61653501e-01 -2.26520419e-01\\n-3.07220221e-01 -1.43419281e-02 -4.74092476e-02 -2.42149085e-01\\n1.51533820e-02 -1.75533205e-01 1.49528101e-01 -1.03782229e-01\\n3.65668774e-01 -1.92489579e-01 -5.45778349e-02 -3.31634879e-02\\n5.39122939e-01 2.64480822e-02 5.59886694e-01 -9.67102647e-02\\n9.81148332e-03 -1.18649408e-01 -1.51837826e-01 1.77474052e-01\\n8.03755820e-02 1.03485435e-01 1.00138530e-01 1.81097329e-01\\n-2.61407852e-01 -2.90009916e-01 1.69499546e-01 3.01765293e-01\\n-3.84069681e-01 1.34308748e-02 -4.47389223e-02 2.69308947e-02\\n-1.73465107e-02 8.76316801e-02 -1.70689479e-01 -5.24713658e-02\\n-3.19772437e-02 -4.15383041e-01 2.45901540e-01 -4.31711897e-02\\n-3.98227662e-01 -1.75727308e-02 4.88632023e-01 2.34511882e-01\\n-1.93984091e-01 -2.49437522e-02 -1.59829989e-01 1.36674941e-01\\n1.83949955e-02 1.51006550e-01 -6.48707151e-02 -4.74141479e-01\\n-3.72587979e-01 2.15488255e-01 -1.52674481e-01 5.81661128e-02\\n5.40572181e-02 3.89264226e-01 -1.01188987e-01 5.58998734e-02\\n5.54651618e-01 -9.09994915e-02 -2.47718334e-01 -3.59937906e-01\\n-7.79160559e-02 -1.13661915e-01 -1.37385368e-01 -6.98653907e-02\\n1.95851669e-01 -3.37328911e-01 -2.07518935e-01 -3.16191971e-01\\n-3.12869251e-02 -3.33085537e-01 6.97566569e-02 -5.68944365e-02]]',\n", + " 'job_description': 'The Position Genedata is seeking a Scientific Consultant / Field Application Scientist to fill an opening in our growing Genedata Profiler (Precision Medicine) team. Precision medicine requires scientists to characterize the genomic profile of patients to better understand patients’ response to new therapies, to efficiently stratify patients for clinical trials or to identify novel biomarkers for patient monitoring. Genedata Profiler, a highly innovative tool in the era of precision medicine, provides a comprehensive, enterprise solution for the processing, management, integration, and analysis of massive amounts of clinical, phenotype, and multi-omic data. The Scientific Consultant is a scientific and technical consultant for our customers. It is a highly dynamic job: you will wear many different hats, interact with many different people such as clinicians, bioinformaticians, and software developers, and use your scientific and technical knowledge to solve real-world scientific problems in precision medicine. This position is especially well-suited for you if you have a scientific/technical background, enjoy variety in your daily work, and want to expand your skill set (scientific, technical, and soft skills). This full-time position is based in Basel, Switzerland and requires regular travel within Europe. Key Responsibilities First and foremost, you will act as an expert in scientific and IT matters related to translational and clinical data analysis in general and the use of our Genedata Profiler software in particular. You will combine this expertise with excellent communication skills and project management know-how to (a) be a vital part of the sales team, (b) propose, plan, execute and manage projects, and (c) support our customers in getting the most out of Genedata Profiler. (a) You will work in tandem with our Business Development Managers in establishing and communicating the value of Genedata Profiler to prospects and customers. Tasks include qualifying customer needs, giving presentations and demos, and managing software evaluation projects. (b) In addition, you will act as scientific consultant for data science projects. For example, you will help our customers with exploratory clinical trial design, identify biomarkers for response or adverse events, conduct mechanistic interpretation of results from mode-of-action studies, and devise stratification strategies based on the results obtained. You will ensure results delivery at the level of excellence that our customers know us for. This involves proper project set up and planning to achieve the customer’s goals; specifying and coordinating and executing the implementation work; guaranteeing adherence to scope, budget and timelines; managing change in the project; controlling the quality of all deliverables; providing customer feedback to product management; and supporting the Profiler team to keep improving our processes. (c) You will establish relationships based on trust with our customers by being their first point of contact and a sparring partner on scientific and technical matters, including user trainings and product support. We want our customers to have excellent translational and clinical data analysis processes, and you will be responsible to help enable this. Further, you will channel the insights gathered through your customer interactions back to our Development and Product Management team, help them to define end-to-end user stories and workflows matching their requirements, thereby assuring that Profiler is developed to maximize value for our customers. In addition to the core responsibilities listed above, we want you to help all of us in the Profiler team to improve, and we count on your knowledge, creativity, and technical skills to further advance our science, marketing, development, and product management. Your Profile Essential Skills and Experience: Excellent communication skills: you will be exposed to a range of different people, so you should feel comfortable interacting with customers at all levels (managers, scientists, and IT experts) and be prepared to constantly communicate internally. Solid scientific background (PhD level preferred) in statistical genetics, bioinformatics, biostatistics, computational biology, machine learning, data science or related field. 3+ years of working experience in translational / clinical research would be a definitive advantage, in particular experience with exploratory clinical trial data, biomarker research, patient stratification & companion diagnostics approaches, ideally at a contract research organization, in a clinic or a pharmaceutical company. If you do not have experience in any of these companies, we look forward to receiving your application if you possess the skills listed below, are a fast learner and wish to quickly delve into the scientific and technical challenges of cutting-edge technologies in the context of Pharmaceutical R&D. Additional Preferred Skills and Experience: Scientific experience and technical skills: Expertise in human genetics or molecular epidemiology, with a strong grasp of genomic approaches, technologies, and analytics to inform clinical trial design and enrichment, e.g. GWAS/RVAS/PheWAS. Profound understanding of biostatistics is essential; experience with methods of causal interference would be desirable. Solid background in oncology and/or immunology would be a plus. Expert knowledge of statistical programming in R is required, as well as working experience with SAS and scripting languages (Python or similar). Project management experience: delivering on time; planning resources and milestones; coordinating teams within and across organizations. Excellent presentation skills. Industry knowledge: You will work with a range of omics technologies and application areas (please see our website for currently supported technologies), so deeper knowledge within a few or broader knowledge across several of them would be desirable. Our customers are mainly pharmaceutical research organizations, thus your experience with pharmaceutical research and the drug discovery process would be valuable to us. The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Profiler Developed in collaboration with leading pharmaceutical companies, Genedata Profiler provides a comprehensive, scalable and interoperable computational platform that addresses the major challenges associated with omics-based precision medicine. The innovative software platform combines high-performance raw omics data processing pipelines, sophisticated data analyses and unparalleled data visualizations with an advanced distributed data management infrastructure. Genedata Profiler accelerates the genomic profiling of patients, at scale and according to the highest data privacy and regulatory standards. Are you interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Genedata is an Equal Opportunity Employer.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Coordinating\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Timelines\", \"Operations\", \"Presentations\", \"Innovation\", \"Creativity\", \"Positivity\", \"Sales\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Milestones (Project Management)\", \"Genomics\", \"Collections\", \"SAS (Software)\", \"High Performance Computing\", \"Genetics\", \"Python (Programming Language)\", \"Computational Biology\", \"Know Your Customer\", \"Pipelining\", \"Data Visualization\", \"Evaluation Projects\", \"Budgeting\", \"Patient Monitoring\", \"Clinical Research\", \"Project Management\", \"International Communications\", \"Amazon Data Pipeline\", \"Business Development\", \"Technical Consulting\", \"Epidemiology\", \"Product Management\", \"Interactivity\", \"Statistics\", \"Machine Learning\", \"Plan Execution\", \"Industrialization\", \"Levelling\", \"Open Management Infrastructure\", \"Customer Interaction Management\", \"Biostatistics\", \"Electronic Data Processing\", \"Survey Data Analysis\", \"Humanism\", \"Pharmaceuticals\", \"Product Support\", \"B (Programming Language)\", \"Profiling (Computer Programming)\", \"Controllability\", \"Programming (Music)\", \"Analytics\", \"Market Development\", \"Integrity Management\", \"Clinical Trials\", \"Clinical Research Informatics\", \"E (Programming Language)\", \"Resource Planning\", \"Translations\", \"Management Process\", \"Executable\", \"Microsoft Delve\", \"C (Programming Language)\", \"Equalization\", \"R (Programming Language)\", \"Clinical Data Management\", \"Adverse Event Monitoring\", \"Software Development\", \"Phenotyping\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Analysis\", \"User Story\", \"Life Sciences\", \"Immunology\", \"Informatics\", \"MASSIVE (Software)\", \"Scale (Map)\", \"Contract Research Organization\", \"Agile Edge Technologies\", \"Idealization\", \"Computing Platforms\", \"Data Science\", \"Scalability\", \"Receivables\", \"Adapter Scripting Language\", \"Stratifying\", \"Drug Discovery\", \"Bioinformatics\", \"Interoperability\", \"Workflows\", \"Change Management\"]',\n", + " 'languages': \"['English', 'Arabic']\"},\n", + " {'company_id': '121',\n", + " 'job_title': 'frontend engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.teralytics.ch',\n", + " 'jobdescription_embedded': '[[-1.23579845e-01 2.93399215e-01 5.25721729e-01 7.85023421e-02\\n4.19699490e-01 -2.49111410e-02 -3.58503014e-02 4.96793211e-01\\n-4.65962850e-02 -5.25776505e-01 5.66240326e-02 -3.19739103e-01\\n-1.27106056e-01 1.03402823e-01 -7.67607242e-04 4.35630441e-01\\n3.35431159e-01 9.88462418e-02 -2.23248124e-01 3.93326521e-01\\n7.20900446e-02 -7.34687746e-02 2.07197875e-01 8.84832740e-01\\n3.73518050e-01 -1.33740097e-01 -4.51790467e-02 5.29524237e-02\\n-2.02978402e-01 -1.64191395e-01 5.08260608e-01 4.06589285e-02\\n-3.14435959e-01 -3.66170794e-01 1.14152431e-01 -4.14469130e-02\\n-2.94421703e-01 -2.69246846e-01 -1.70056671e-01 1.52753592e-01\\n-5.40310740e-01 -2.83601463e-01 -1.90319389e-01 8.26458633e-03\\n-2.35858276e-01 -2.50487238e-01 9.83743817e-02 7.49109238e-02\\n1.11827746e-01 7.21769854e-02 -5.25439143e-01 1.81697950e-01\\n-2.10754052e-01 -1.49727657e-01 3.56817663e-01 5.10881841e-01\\n-5.90718612e-02 -4.22961116e-01 -5.11825025e-01 -4.03737128e-01\\n5.97058013e-02 -5.69449328e-02 2.64540222e-02 -4.63153303e-01\\n2.24637926e-01 1.25168815e-01 1.09981865e-01 3.10152501e-01\\n-6.98030829e-01 -1.43823177e-01 -3.40612382e-01 -1.15538470e-01\\n-2.96571046e-01 -1.16844095e-01 -3.78809333e-01 -1.40633702e-01\\n-1.68254465e-01 4.72057998e-01 5.68039566e-02 5.02098463e-02\\n-2.18380883e-01 4.63668913e-01 -2.18298107e-01 4.32817578e-01\\n1.68341547e-01 3.68644536e-01 1.86919451e-01 3.14986885e-01\\n-3.74770939e-01 4.42581296e-01 1.13608710e-01 -3.85571271e-01\\n2.03325033e-01 1.44699991e-01 4.22388673e-01 -9.77218449e-02\\n3.63011956e-01 -4.82609048e-02 -3.16630065e-01 4.41865563e-01\\n3.64671111e-01 -3.98974359e-01 2.49471486e-01 -1.12911776e-01\\n1.61653131e-01 -1.00586832e-01 1.55575186e-01 1.21311754e-01\\n-2.45256603e-01 3.48027229e-01 1.05345279e-01 -2.48117715e-01\\n-1.67894587e-02 -4.67990041e-01 2.73228027e-02 5.78152835e-02\\n2.87929736e-02 -2.45071203e-02 1.01956859e-01 3.60882320e-02\\n2.37855911e-01 -1.79064330e-02 4.23837639e-02 6.30572140e-01\\n-1.60771668e-01 -1.24343172e-01 -2.02874810e-01 2.53848493e-01\\n2.23280378e-02 -2.53743559e-01 2.40192980e-01 2.38810033e-01\\n-1.28863864e-02 -2.54537821e-01 -2.67847300e-01 3.85174394e-01\\n1.01309299e-01 -2.34340757e-01 -2.28538096e-01 3.40746343e-01\\n7.25050420e-02 -3.58729243e-01 6.99770331e-01 1.00742951e-01\\n2.00497717e-01 -6.63858727e-02 -1.05420277e-02 -1.86222062e-01\\n-6.72279894e-02 -6.03388995e-02 3.35646421e-03 1.43918753e-01\\n-1.78532243e-01 -3.14929008e-01 -8.07268918e-02 -8.87499377e-03\\n-5.17841756e-01 1.93727106e-01 -9.22134519e-02 -4.46382612e-02\\n1.95082463e-02 -7.15325847e-02 -2.45175794e-01 2.87806809e-01\\n-1.96319774e-01 7.24045485e-02 6.12854697e-02 5.29392421e-01\\n-9.18594599e-02 2.56735981e-01 9.18153077e-02 -1.81125790e-01\\n6.16453290e-01 3.30388188e-01 2.27801234e-01 9.50129181e-02\\n1.60699770e-01 2.33827662e-02 -4.02905792e-03 1.45025283e-01\\n-8.44521284e-01 2.95116007e-01 3.45449299e-02 -1.96054369e-01\\n1.64220184e-01 -1.45139575e-01 1.58551440e-01 -2.52801180e-01\\n-3.69728766e-02 -1.27791554e-01 -2.29090452e-01 -2.73631901e-01\\n-7.62037113e-02 -1.87940031e-01 2.54311323e-01 -5.45333028e-01\\n-7.42686614e-02 1.07227545e-02 -5.32564819e-01 -1.64876759e-01\\n-1.01291398e-02 1.83962762e-01 1.44209027e-01 8.03280920e-02\\n-1.02256030e-01 -5.28380156e-01 5.00006117e-02 -3.36201906e-01\\n-3.05362165e-01 -9.96300112e-03 -3.94033492e-01 1.18415929e-01\\n5.80518208e-02 -8.36820602e-02 -1.60000950e-01 4.78587523e-02\\n-2.07779735e-01 -6.09468743e-02 -1.50434867e-01 -4.12155129e-03\\n1.97905034e-01 1.20966122e-01 -3.05731207e-01 4.44832891e-01\\n-1.37671858e-01 6.59154177e-01 4.63377386e-02 -6.96983933e-01\\n4.91092056e-01 4.44897592e-01 -8.76761079e-02 -3.68802160e-01\\n4.57046330e-01 -3.26403081e-01 -1.36404410e-01 -2.02308968e-02\\n-3.43472868e-01 -3.30782712e-01 1.54344887e-01 -2.68709123e-01\\n-2.46033713e-01 4.35492754e-01 6.19320981e-02 1.66537344e-01\\n2.27961063e-01 -3.24186057e-01 -6.39095679e-02 -2.15834491e-02\\n-7.68651292e-02 -2.32477263e-01 -6.68751359e-01 -2.17776939e-01\\n-2.05967546e-01 -3.81371558e-01 -3.24803442e-02 -4.17229533e-01\\n-1.43407971e-01 -3.13632876e-01 -9.87014472e-02 2.20309868e-01\\n3.10815573e-01 -4.17306796e-02 -1.06487602e-01 9.31433365e-02\\n-2.06051186e-01 -6.99862123e-01 4.99978922e-02 1.62259415e-01\\n4.41062331e-01 1.96381152e-01 2.71242410e-01 -1.99359097e-02\\n6.66364208e-02 7.89240837e-01 -1.99498922e-01 -1.20881185e-01\\n1.77721083e-01 2.18578130e-01 1.23111680e-01 -4.69625928e-02\\n1.98409289e-01 3.23943257e-01 -2.97700077e-01 3.40049081e-02\\n5.74410334e-02 -9.90053266e-03 5.05695462e-01 2.30510868e-02\\n-2.98630536e-01 -1.27244949e-01 -1.64279584e-02 3.30367275e-02\\n-4.19255972e-01 -1.97610706e-01 4.46426272e-01 2.09593773e-01\\n2.19281316e-01 5.55627905e-02 1.07027918e-01 1.00451887e-01\\n-1.92829013e-01 -3.29990387e-01 3.68354857e-01 8.79892558e-02\\n7.61021972e-02 1.38752669e-01 5.18997125e-02 -5.20616829e-01\\n-3.20654821e+00 -8.53528976e-02 1.97419852e-01 -1.44088686e-01\\n1.89393193e-01 3.10317911e-02 3.24844383e-03 -7.36726448e-02\\n-2.35015035e-01 7.75593966e-02 -1.78666636e-01 -2.16080248e-01\\n1.37819514e-01 8.12493861e-02 3.67712490e-02 7.77714774e-02\\n2.00591594e-01 -2.47883171e-01 -6.99451268e-02 2.49238819e-01\\n-1.90491140e-01 -7.28970408e-01 1.05000138e-01 -3.53961401e-02\\n2.88512290e-01 2.79749960e-01 -3.72640848e-01 -1.85696110e-01\\n-1.44766510e-01 -2.09772557e-01 -2.58958116e-02 -4.32846606e-01\\n-1.69027567e-01 1.67008698e-01 2.71183193e-01 -3.11063528e-02\\n1.96449645e-03 -3.58851790e-01 -2.75279522e-01 -5.30766428e-01\\n5.29328808e-02 -5.11140645e-01 -8.40596156e-04 -2.07475871e-01\\n8.06700110e-01 -2.43226305e-01 1.42410129e-01 2.50463169e-02\\n4.69836108e-02 5.20456992e-02 2.53179222e-01 1.26054049e-01\\n-2.27574944e-01 -2.54944682e-01 -3.90350968e-02 -1.81579858e-01\\n5.56796074e-01 3.06474060e-01 -1.75938100e-01 -9.23742279e-02\\n1.18065901e-01 -2.08107501e-01 -4.98447090e-01 -1.07085496e-01\\n-1.14153959e-02 -2.07301080e-01 -6.53504431e-01 -3.91476274e-01\\n-7.86846131e-02 -2.17786431e-01 -2.25293085e-01 6.03317440e-01\\n-3.57819617e-01 -2.56108820e-01 1.61022022e-02 -4.77542847e-01\\n4.67649877e-01 -2.00655818e-01 2.15705931e-02 -3.20451081e-01\\n-2.71206945e-01 -4.39194083e-01 2.53454074e-02 -8.34199041e-02\\n-5.01807928e-02 -3.63148808e-01 4.88334075e-02 -6.82196170e-02\\n-1.28324598e-01 -5.70201457e-01 4.67823505e-01 1.67164207e-01\\n2.19043970e-01 1.48196429e-01 4.22282159e-01 -8.18097293e-02\\n1.64819807e-01 1.63131133e-01 -1.41461968e-01 -2.18828723e-01\\n1.22757792e-01 4.85173762e-02 3.27694058e-01 -6.29526824e-02\\n-1.45245371e-02 1.11125901e-01 -2.96625614e-01 6.00766316e-02\\n2.45641023e-01 -7.01929182e-02 8.21780786e-02 -1.15494668e-01\\n3.62400413e-01 -3.08475077e-01 -1.31428773e-02 5.63411862e-02\\n1.56273633e-01 6.38420701e-01 1.67827308e-03 -4.10116792e-01\\n-1.17930342e-02 5.08486092e-01 8.06755479e-03 1.24444082e-01\\n-2.49771222e-01 1.19322285e-01 -3.18730891e-01 2.34040931e-01\\n1.00715168e-01 -2.03780025e-01 -2.05699891e-01 -8.98755938e-02\\n-1.18600890e-01 3.82208228e-01 2.96510309e-01 9.72151011e-02\\n9.50306207e-02 -4.99423563e-01 -2.14457884e-01 2.50590175e-01\\n2.79440045e-01 5.46361685e-01 1.55815333e-01 -2.87146270e-01\\n3.81847806e-02 3.92797828e-01 -1.09684184e-01 1.45992771e-01\\n-2.31144398e-01 1.48204818e-01 -5.06975293e-01 -2.20484823e-01\\n-4.02841985e-01 -3.74466002e-01 2.56819814e-01 3.97695839e-01\\n2.38159001e-01 -1.02527305e-01 6.90770000e-02 -3.79894376e-01\\n2.59567857e-01 2.61136174e-01 2.54649103e-01 8.48751590e-02\\n-3.60576399e-02 5.64549029e-01 1.56342447e-01 -2.44089067e-01\\n-1.13690481e-01 -2.21194960e-02 -1.34670794e-01 1.40346512e-02\\n-1.25516756e-02 -6.12455904e-01 -2.58369476e-01 3.45459074e-01\\n4.92989272e-02 -1.89965308e-01 -1.58773214e-01 3.17962438e-01\\n-1.15542129e-01 -1.15291841e-01 -2.88072765e-01 -5.20853661e-02\\n4.44818854e-01 1.19308330e-01 3.83392096e-01 -4.95261043e-01\\n-1.25604272e-01 2.51072310e-02 -3.39547023e-02 5.22853017e-01\\n-3.13350223e-02 -5.46027757e-02 -1.20501079e-01 -1.92232490e-01\\n3.85082543e-01 -2.77876496e-01 -1.93124339e-01 8.69284272e-02\\n7.32967183e-02 -1.20890826e-01 -3.95751119e-01 1.48965567e-01\\n-6.04763627e-04 -2.49997437e-01 -4.96552438e-02 3.24569464e-01\\n4.58386131e-02 1.19118482e-01 -7.42156863e-01 -2.03458786e-01\\n-2.85418570e-01 1.66426361e-01 8.67159665e-02 -5.40792346e-01\\n4.41426672e-02 -2.40284368e-01 -6.64822459e-01 2.34500900e-01\\n-2.72952318e-01 -1.87562674e-01 9.81483534e-02 1.56662650e-02\\n-2.44002163e-01 -1.50442868e-01 5.62619977e-03 3.20364356e-01\\n-2.45387256e-01 -3.06732267e-01 -8.69671702e-02 -8.80515218e-01\\n2.37986490e-01 1.38007119e-01 -2.04207525e-01 1.36368066e-01\\n-1.44270331e-01 -6.62676275e-01 3.56135294e-02 -1.19254246e-01\\n-1.35989636e-01 -7.91659728e-02 -3.15757841e-01 -2.99689442e-01\\n2.14120060e-01 -1.44177116e-04 -1.68543920e-01 4.33785975e-01\\n-3.16622972e-01 1.86901361e-01 -2.43034333e-01 3.90616991e-02\\n-8.13825205e-02 -2.97911823e-01 1.17707044e-01 -4.15840447e-01\\n-4.85785186e-01 -2.85642296e-01 -1.93121850e-01 -3.87660086e-01\\n-1.89975455e-01 -4.27620590e-01 -2.07964163e-02 -1.18472055e-03\\n2.62154698e-01 -7.60777220e-02 -1.86973438e-01 -2.59558201e-01\\n1.33079782e-01 -4.65987444e-01 1.01078242e-01 -1.36738643e-04\\n-3.67363505e-02 -2.39293382e-01 1.11524791e-01 1.18981272e-01\\n2.95704663e-01 -3.40235949e-01 2.19130903e-01 -6.52194738e-01\\n-2.68620938e-01 -5.88957369e-02 -1.58876404e-02 -2.84191482e-02\\n1.71321675e-01 -5.07032871e-01 6.77375197e-02 4.09710795e-01\\n2.13228345e-01 4.58456427e-02 2.52339602e-01 -1.71565890e-01\\n-4.99894693e-02 4.32166219e-01 -1.51055098e-01 1.39727578e-01\\n7.78289437e-01 7.37064183e-02 2.03044742e-01 2.01079816e-01\\n5.32234013e-02 2.40388662e-01 3.81585479e-01 -2.17770785e-02\\n-8.10138583e-02 1.52336821e-01 1.90713823e-01 -4.79417950e-01\\n-2.21280381e-02 2.35802978e-02 -1.41184777e-01 -3.69127065e-01\\n6.73279703e-01 3.77215564e-01 -4.57994819e-01 -4.19035591e-02\\n-5.52536026e-02 -9.70232263e-02 1.58781782e-01 1.20163709e-03\\n-9.72460955e-04 3.64994071e-02 2.63047457e-01 -1.42033651e-01\\n2.31685042e-01 5.72090387e-01 -4.95424271e-02 -2.62506485e-01\\n-9.04868990e-02 4.28061366e-01 -1.60298683e-02 5.22552848e-01\\n-2.16636449e-01 3.00592393e-01 1.11129969e-01 -6.25464786e-03\\n-6.67265803e-02 2.21259475e-01 1.70181319e-01 1.18232548e-01\\n2.02496052e-01 7.57725388e-02 3.64590108e-01 4.27349478e-01\\n3.60719919e-01 4.74992812e-01 2.70054817e-01 2.06135899e-01\\n3.98745477e-01 5.20626247e-01 4.15227413e-01 1.79552913e-01\\n-4.95510995e-02 5.99726662e-02 1.30621105e-01 -5.29425256e-02\\n3.20703149e-01 4.19076145e-01 7.91069493e-03 9.68700707e-01\\n3.32125962e-01 3.27838987e-01 6.38249278e-01 -6.99022770e-01\\n-2.74809599e-01 1.56081155e-01 4.50889587e-01 -4.40819263e-01\\n1.41057178e-01 4.63673510e-02 -5.43630123e-03 3.80127370e-01\\n-4.53974247e-01 -3.01362485e-01 1.30990725e-02 2.92919755e-01\\n4.74476404e-02 -3.00300449e-01 -2.61320174e-01 4.65546250e-02\\n-8.00867379e-02 -7.68428370e-02 -4.14825678e-01 -1.38973325e-01\\n-2.64064908e-01 -1.27689779e-01 -1.10817418e-01 -1.91261560e-01\\n2.20229663e-02 -2.60212183e-01 -1.99533217e-02 -8.95065144e-02\\n2.76820898e-01 -1.38364211e-01 -1.18192673e-01 -1.37035266e-01\\n3.71873111e-01 2.06051424e-01 5.26858747e-01 -6.35449123e-03\\n2.01185584e-01 -1.62368298e-01 -2.26636186e-01 2.04156503e-01\\n7.40240961e-02 3.95169333e-02 -5.96227795e-02 4.04631533e-02\\n-2.02656090e-01 -2.09689736e-01 1.98953390e-01 2.28882104e-01\\n-4.96074855e-01 2.49252971e-02 -2.06031740e-01 1.89417049e-01\\n-3.95829976e-02 1.88557118e-01 -1.99440986e-01 2.55305078e-02\\n-1.59616143e-01 -4.15746152e-01 2.01386094e-01 -1.42630458e-01\\n-1.43095136e-01 -3.29967663e-02 4.51712608e-01 1.18638173e-01\\n-3.14783841e-01 1.21351052e-02 -9.07522142e-02 8.78540576e-02\\n8.32986087e-04 1.61249295e-01 -1.92122221e-01 -1.87737808e-01\\n-2.37770915e-01 6.33843094e-02 -2.56481916e-01 7.76565969e-02\\n2.00481728e-01 4.43547368e-01 1.94571421e-01 -6.88022077e-02\\n5.89097023e-01 -1.01672202e-01 -2.81858563e-01 -1.74266368e-01\\n-1.23484217e-01 -9.47194621e-02 -1.96634173e-01 -5.86392283e-02\\n2.36270428e-01 -4.21762913e-01 -4.84818313e-03 -2.21713275e-01\\n-9.03806463e-03 -3.48473102e-01 7.35559836e-02 -1.08425640e-01]]',\n", + " 'job_description': \"Would you like to be central to our future success, where you will be a part of a very dynamic team fueled by positive energy, enthusiasm and supportive teammates? We are looking for a smart and passionate Frontend Engineer to join our Engineering Team in Zurich. About Teralytics Teralytics is on a mission to change how the world moves. Until now, cities and mobility services have been designed based on assumptions of how officials and companies expect people to move. But, they aren't taking everyone's journey into consideration. As a result, for many, mobility is limited. Not just physically, but socially and economically. It's stopping people from reaching their full potential. Teralytics partners with mobile network operators to solve this problem with the most accurate indicator of people's movement – their mobile devices. It's the one thing everyone has with them at all times. And the cell towers receiving their signals don't discriminate based on device model or apps. Due to its complexity and scale, mobile network data has been nearly impossible to understand or utilize. That's why we've pioneered a way to translate it into actionable insights. For the first time we've unlocked truly inclusive data on people's journeys. Teralytics is backed by leading investors in the mobility and transport space, including Robert Bosch Venture Capital and Deutsche Bahn Digital Ventures, as well as high-profile VC funds, such as Atomico and Lakestar, and we are continuing to grow across the world. Whether at our headquarters in Zurich or in our offices in New York and Singapore, our people are at the core of our mission to shape the future of mobility. Your Role The frontend team is one of the engineering pillars in Teralytics. The team is responsible for building interactive web applications and data visualizations that present the insights from our aggregated and anonymized data on human mobility to customers in an easily understandable, visually appealing and engaging manner. Located in our Zurich office, you will play a central role in the development of these applications. More specifically, your responsibilities will include: Taking ownership of our web applications and shaping their future direction and architecture in close collaboration with product managers and designers Developing new features, components and experiences for our web applications in close collaboration with our data visualisation specialists, designers, data scientists and backend engineers Mocking up and prototyping new functionality, visualizations and applications Designing and developing internal applications in close collaboration with data scientists and backend engineers Working with our reliability engineers for efficient deployment of web applications Tech Stack We like working with modern browsers and technologies. Our tech stack includes tools such as: React, TypeScript, Node.js, D3, SVG, Canvas, WebGL, webpack, PostgreSQL, ClickHouse, Docker, Kubernetes. Open Source As strong believers in open-source we contribute to the community by releasing some of our work as open source projects ( https://github.com/teralytics/ ). Your Profile You are a CH/EU/EFTA citizen or in possession of a valid Swiss work permit Must-have qualifications Professional experience in building web applications with great UI/UX using state-of-the-art technologies, with a demonstrable portfolio Extensive knowledge of the technologies that power the web: JavaScript, HTML, CSS Experience with modern frontend development stacks Know-how in scalable frontend development architectures Fluency with data, databases, data preparation and transformations Eye for aesthetics and fluent user experiences Open mind about technologies and ways of approaching a problem Excitement about the fast moving web development world. You enjoy staying up to date and learning new technologies. Strong English communication skills, attention to detail, and ability to deliver finished projects on your own Preferred qualifications Experience with React, TypeScript, D3 and Node.js Experience with geospatial data, web mapping and geographic visualization Experience with 2D/3D graphics in the browser (SVG, Canvas, WebGL) Experience with functional programming concepts Knowledge of SQL databases, especially PostgreSQL What we offer We offer the chance to be part of an exciting and ambitious start-up that puts its people at the heart of its business. Be part of a diverse, international, cross-disciplinary team of highly motivated, hands-on experts that tackle unique challenges with a positive spirit and lots of fun. We offer a flexible work schedule, a central office location as well as a wide range of benefits and perks, including financial childcare support, additional company holidays, and career development programs. What to expect Teralytics is an equal opportunity employer and we value diversity. We do not discriminate on the basis of race, religion, colour, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Aesthetics\", \"Collaboration\", \"Mobile Devices\", \"Communications\", \"Scheduling\", \"Enthusiasm\", \"Presentations\", \"Socialization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Production Management\", \"Web Applications\", \"Childcare Fundamentals\", \"Disabilities\", \"Kubernetes\", \"Tooling\", \"Hyper SQL Database (HSQLDB)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Joint Application Design (JAD)\", \"Aggregator\", \"2D Animation\", \"TypeScript\", \"Scale (Map)\", \"Visualization\", \"PostgreSQL\", \"Component Object Model (COM)\", \"Node.js\", \"Venture Capital\", \"Prototyping\", \"D3.js\", \"Translations\", \"Limiter\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Mobility\", \"Mobile Network Operator\", \"Data Visualization\", \"React.js\", \"Mock Ups\", \"Open Source Technology\", \"Docker (Software)\", \"Github\", \"Programming Concepts\", \"2D Computer Graphics\", \"Webpack\", \"WebGL\", \"Equalization\", \"Digitization\", \"Architectural Development\", \"JavaScript (Programming Language)\", \"Scalability\", \"Unlocker\", \"Receivables\", \"Functional Programming\", \"Humanism\", \"Appeals\", \"Economics\", \"Career Development\", \"Data Direct Networks\", \"Web Mapping\", \"3D Graphic Design\", \"Additives\", \"User Experience\", \"Eyes\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'South Ndebele', 'Chichewa', 'Sinhala']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'supply chain data analyst (m/f)',\n", + " 'location': 'Reinach',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.28764436e-01 2.81232744e-01 5.46897054e-01 2.39168555e-02\\n4.87601131e-01 -6.08971901e-02 4.35195379e-02 4.44313020e-01\\n4.20789011e-02 -4.31067914e-01 -1.91733837e-02 -3.02204907e-01\\n3.51779163e-02 1.44612134e-01 8.17054585e-02 4.81249332e-01\\n1.42991006e-01 1.65683970e-01 -1.51579052e-01 3.48072678e-01\\n2.09333420e-01 -2.18113601e-01 7.05627799e-02 7.14393258e-01\\n4.98119146e-01 -6.37528971e-02 -1.55709073e-01 -1.68627456e-01\\n-2.36410141e-01 -3.39036733e-01 4.54381227e-01 5.54485712e-03\\n-1.61002666e-01 -4.03046042e-01 1.40599489e-01 9.48599353e-02\\n-2.53681690e-01 -4.97404113e-02 -1.01542100e-01 1.12951100e-01\\n-6.37218893e-01 -2.34703541e-01 -4.95794192e-02 9.76033881e-02\\n-2.75957376e-01 -2.97132343e-01 -5.73506653e-02 -2.48469338e-01\\n2.09559321e-01 8.78555998e-02 -5.83139241e-01 3.46242964e-01\\n-1.92888424e-01 -2.47145981e-01 1.82381585e-01 7.37409353e-01\\n1.74885569e-03 -4.08297062e-01 -5.97543061e-01 -3.69059891e-01\\n1.30141020e-01 -9.84064490e-02 4.46544914e-03 -2.91452259e-01\\n3.14586639e-01 -7.59287998e-02 1.18152283e-01 2.99740523e-01\\n-8.21612120e-01 4.24459465e-02 -2.43652329e-01 -1.28605068e-01\\n-2.57679760e-01 1.08537858e-03 -4.34394687e-01 -5.57115339e-02\\n-2.08737388e-01 4.20561612e-01 8.39779153e-03 -4.25238200e-02\\n-2.47895733e-01 2.11780921e-01 -3.11896324e-01 2.68603921e-01\\n2.55449712e-01 1.98734924e-01 2.60259956e-01 3.08454037e-01\\n-2.94404984e-01 4.71016556e-01 1.89391658e-01 -2.19466552e-01\\n2.33851194e-01 5.03624640e-02 3.70529205e-01 -5.71726635e-02\\n1.81744277e-01 7.04566017e-02 -3.35229099e-01 2.67888129e-01\\n3.17238927e-01 -2.22069517e-01 1.02975346e-01 -1.64164007e-01\\n-1.49377957e-02 -1.03025148e-02 8.76927897e-02 2.58724988e-01\\n-2.09802106e-01 4.20759737e-01 1.89734448e-03 -1.35146201e-01\\n-1.74052626e-01 -5.28820217e-01 -8.59992057e-02 -4.80410531e-02\\n1.60068527e-01 2.23622769e-01 6.08341135e-02 1.92289785e-01\\n2.59475261e-01 -1.01211637e-01 1.17319666e-01 8.31721067e-01\\n-6.45617917e-02 9.63801742e-02 -3.02544653e-01 2.67725468e-01\\n3.75905149e-02 -3.39066982e-01 1.97602138e-01 1.97701111e-01\\n-5.33101559e-02 -2.25135505e-01 -2.48776421e-01 3.21419805e-01\\n-5.57252504e-02 -1.77175358e-01 -2.28699103e-01 1.72681823e-01\\n5.63719012e-02 -3.40610832e-01 6.64120913e-01 3.98432277e-02\\n1.32725552e-01 -7.50221461e-02 -1.22490590e-02 -9.61322710e-02\\n-1.06725395e-02 1.79952651e-01 1.79459795e-01 3.62738930e-02\\n-2.68734813e-01 -3.02008092e-01 -1.64258212e-01 7.36802816e-02\\n-4.23053592e-01 1.65526420e-01 -1.21396191e-01 -6.75761551e-02\\n2.78499693e-01 4.19373624e-02 -2.49632671e-01 2.97974378e-01\\n-1.41237676e-01 -3.93906608e-02 4.55705635e-02 2.84124881e-01\\n-3.14811349e-01 2.40439937e-01 -2.54387408e-02 -3.44077051e-02\\n7.52553821e-01 1.05511174e-01 1.48284167e-01 1.14828460e-01\\n2.93795794e-01 5.58137558e-02 1.14752688e-01 1.48557410e-01\\n-5.69136381e-01 4.73231554e-01 -4.47113849e-02 -2.88504273e-01\\n2.22794443e-01 -1.48736566e-01 4.33844626e-01 -2.50106335e-01\\n2.28771213e-02 -1.69143304e-01 -2.93767840e-01 -3.18153739e-01\\n-2.34207004e-01 -1.10197656e-01 3.52335513e-01 -4.39643592e-01\\n-9.36490600e-04 1.63303152e-01 -5.21103859e-01 -1.30809531e-01\\n1.29113913e-01 2.10481793e-01 8.03400502e-02 1.64008901e-01\\n-1.90959945e-01 -5.11997581e-01 8.97692814e-02 -3.57128710e-01\\n-1.53712615e-01 3.38476859e-02 -3.04998785e-01 1.74673602e-01\\n4.24587950e-02 1.28055185e-01 -1.76694050e-01 1.17558837e-01\\n-2.09624678e-01 -1.46156833e-01 1.21898748e-01 7.49668106e-02\\n2.79185772e-01 1.01576991e-01 -3.90949100e-01 3.76045018e-01\\n-5.54475524e-02 5.68349957e-01 1.51172772e-01 -8.86357725e-01\\n4.50291276e-01 3.85232896e-01 3.96634787e-02 -3.25285345e-01\\n6.29735053e-01 -2.68870085e-01 -8.96312576e-03 4.72313650e-02\\n-3.16972762e-01 -3.50511998e-01 2.52959728e-01 -1.60521537e-01\\n-2.51252055e-01 3.79714221e-01 8.93100277e-02 1.67644322e-01\\n1.32343069e-01 -1.42613187e-01 -1.01433136e-01 7.99286813e-02\\n3.45585681e-02 -1.71544179e-01 -5.02561510e-01 2.48241201e-02\\n-4.21282239e-02 -3.21013868e-01 -1.97903425e-01 -4.85130757e-01\\n-2.10628092e-01 -3.01327229e-01 -2.10874513e-01 2.04483166e-01\\n2.27844417e-01 1.74164772e-01 4.02374417e-02 2.43239030e-02\\n-1.67955235e-01 -6.98134124e-01 -1.54068723e-01 1.07779369e-01\\n4.76227850e-01 2.11453319e-01 9.91025642e-02 -8.23631138e-02\\n4.25253585e-02 6.67702913e-01 -2.53969908e-01 -2.76519090e-01\\n1.98636383e-01 9.62556750e-02 9.65693519e-02 -1.41181692e-01\\n2.12047502e-01 2.67475277e-01 -1.65507913e-01 4.79277819e-02\\n-8.59688371e-02 -1.05508476e-01 2.92466730e-01 2.52837837e-01\\n-2.43043512e-01 -2.84316599e-01 -2.12770537e-01 1.23170137e-01\\n-5.74210823e-01 -2.54680693e-01 5.92390418e-01 1.73833504e-01\\n2.73764312e-01 7.55974799e-02 2.24692807e-01 -6.36000112e-02\\n-1.12850189e-01 -2.61527121e-01 3.19875062e-01 8.92695114e-02\\n1.15731575e-01 1.03525646e-01 -2.16320753e-02 -7.25295603e-01\\n-3.27209759e+00 -1.11953765e-01 1.50066778e-01 -3.59969288e-01\\n2.60609955e-01 -1.66682899e-01 2.60204852e-01 -3.09241191e-02\\n-3.12038511e-01 -2.02162750e-03 -2.92299986e-01 -4.30052206e-02\\n2.04030737e-01 3.22853595e-01 1.60819396e-01 2.29965597e-01\\n2.82271177e-01 -3.15553367e-01 -1.09316343e-02 4.90758866e-01\\n-1.21117197e-01 -5.89842916e-01 1.51041910e-01 1.05359126e-03\\n1.07691906e-01 3.04127365e-01 -2.27182627e-01 -1.27798691e-01\\n-3.33106369e-01 -1.59168601e-01 5.12171537e-02 -3.88463527e-01\\n-2.79219300e-01 1.52779073e-01 1.59717977e-01 -1.93177477e-01\\n4.75535206e-02 -3.68068784e-01 -4.44069803e-02 -4.07263398e-01\\n8.41399878e-02 -6.56183958e-01 1.09731378e-02 -5.49196126e-03\\n8.02021205e-01 -1.69993043e-01 4.20183726e-02 1.01977661e-02\\n1.73705950e-01 1.39366120e-01 1.21844284e-01 6.92329183e-02\\n-9.09658521e-02 -3.29167902e-01 -6.29113391e-02 -1.46915123e-01\\n6.48227155e-01 5.49666941e-01 -1.49214417e-01 -7.62293413e-02\\n9.93361771e-02 -2.69035906e-01 -4.49173868e-01 -2.40427703e-01\\n-2.68591613e-01 -2.68768042e-01 -6.07945263e-01 -4.18401539e-01\\n-2.39425659e-01 -1.21046744e-01 -2.51357079e-01 4.87106442e-01\\n-2.59714514e-01 -2.86263704e-01 -3.08411662e-02 -4.93256301e-01\\n2.96392053e-01 -1.07400380e-01 5.76469265e-02 -2.59572327e-01\\n-1.98630437e-01 -4.93678153e-01 7.52078295e-02 1.73591208e-02\\n-8.65768716e-02 -1.93008080e-01 -8.44383985e-02 -8.81933272e-02\\n-3.58855933e-01 -5.97592890e-01 3.56970996e-01 1.54431000e-01\\n4.20752168e-01 9.87725481e-02 3.29500854e-01 2.99395644e-03\\n4.27996010e-01 -1.14249796e-01 -5.82283512e-02 -4.23470199e-01\\n1.68414935e-02 9.54959318e-02 6.00186944e-01 -3.13914150e-01\\n-2.82981321e-02 2.43159290e-02 -2.70642787e-01 -1.07605867e-01\\n2.73641914e-01 -9.68947187e-02 1.29640445e-01 -1.43695295e-01\\n2.67815471e-01 -3.61983865e-01 -2.72105694e-01 5.84241189e-02\\n-1.14795491e-02 6.01922214e-01 -8.08509141e-02 -3.19103092e-01\\n-6.83792233e-02 3.77756953e-01 -1.30633220e-01 -7.82845169e-03\\n-1.91623122e-01 -8.88505131e-02 -1.71746343e-01 3.28968585e-01\\n4.02713707e-03 -2.05643654e-01 -2.07608745e-01 -1.50207385e-01\\n-6.16584010e-02 4.11203861e-01 8.44620019e-02 1.98279396e-02\\n6.85963482e-02 -4.37513918e-01 -1.02881067e-01 2.94618636e-01\\n1.43739805e-01 4.91804570e-01 3.27605568e-02 -2.03892916e-01\\n-1.44536898e-01 3.18509638e-01 -3.17675769e-01 2.08907351e-01\\n-3.14779729e-01 1.43567502e-01 -4.50716794e-01 -2.25893617e-01\\n-2.50616372e-01 -4.42676306e-01 1.63771242e-01 3.86209577e-01\\n1.75867990e-01 1.12641938e-01 -7.38131851e-02 -4.64854598e-01\\n1.87239066e-01 8.19955245e-02 1.32542700e-01 1.35177106e-01\\n-1.00389585e-01 5.13187528e-01 -1.66302919e-02 -1.45746425e-01\\n-7.90596753e-02 8.47329125e-02 -2.49137819e-01 -2.06960186e-01\\n2.15650439e-01 -5.14498472e-01 -1.01562209e-01 5.59331775e-01\\n3.36833298e-01 -2.60551423e-01 -2.66562879e-01 2.39882037e-01\\n1.52954273e-02 -3.40122819e-01 -3.17193776e-01 9.36554745e-02\\n2.36116081e-01 1.74736917e-01 3.93770725e-01 -3.95841867e-01\\n-3.53140011e-02 -6.94602802e-02 -1.21473633e-01 3.71100724e-01\\n-1.86036844e-02 1.47500172e-01 -2.55385607e-01 -1.71865851e-01\\n4.99527097e-01 8.17651227e-02 -2.09141858e-02 5.35607599e-02\\n2.15555593e-01 -2.07020655e-01 -4.41368908e-01 5.85991330e-02\\n-1.09863123e-02 -2.94837296e-01 4.42870613e-03 1.47256032e-01\\n-2.04709563e-02 8.18594769e-02 -6.33789480e-01 -2.86462963e-01\\n-2.85009295e-01 -8.55261907e-02 9.16512012e-02 -5.34546316e-01\\n-1.14497222e-01 -2.65090447e-02 -5.22750556e-01 2.18540177e-01\\n-1.62362635e-01 -1.44343823e-02 2.27588624e-01 6.51002303e-02\\n-2.38904789e-01 -5.66478930e-02 1.55980766e-01 3.59089673e-01\\n-3.25781494e-01 -2.18924433e-01 -4.40066680e-02 -1.05469048e+00\\n6.98417351e-02 -4.28832248e-02 -1.07498176e-01 2.22774476e-01\\n-1.60633221e-01 -6.48294091e-01 1.29321679e-01 -3.86240840e-01\\n-2.17909515e-01 -1.24346064e-02 -1.27707899e-01 -4.53269213e-01\\n1.18007258e-01 4.10855301e-02 -3.19887191e-01 3.24435651e-01\\n-2.94510871e-01 3.81644309e-01 -1.04961015e-01 1.96778163e-01\\n-4.59882617e-02 -2.11096138e-01 2.48012096e-01 -4.07824934e-01\\n-3.94221961e-01 -1.62064403e-01 -3.68471950e-01 -1.82444930e-01\\n-3.10555864e-02 -3.27453583e-01 -1.64478287e-01 2.13548705e-01\\n5.27119637e-01 1.31892070e-01 -2.52060033e-02 -2.18212396e-01\\n9.63703915e-02 -6.80909097e-01 6.71873614e-02 2.86784079e-02\\n-1.71318114e-01 -6.94778860e-02 3.03647697e-01 8.99076909e-02\\n1.36590913e-01 -3.75100285e-01 3.97345841e-01 -4.19959962e-01\\n-2.76993155e-01 -6.96432889e-02 9.00200233e-02 8.38690065e-03\\n3.54267150e-01 -4.22304958e-01 -6.00282066e-02 2.38856852e-01\\n4.43377048e-02 2.03104958e-01 3.57050508e-01 -1.06125183e-01\\n-1.25015080e-01 2.60633647e-01 -4.33169276e-01 3.24030742e-02\\n8.50722373e-01 1.63823798e-01 7.51696602e-02 2.55658448e-01\\n1.93099126e-01 2.63304532e-01 4.22858655e-01 -3.04937661e-02\\n-1.53546736e-01 2.60877639e-01 -4.24936861e-02 -6.44675136e-01\\n3.65843512e-02 -1.98049787e-02 -1.74176350e-01 -2.94283628e-01\\n6.34519577e-01 3.55780274e-01 -4.74421173e-01 -3.20709735e-01\\n-1.23765759e-01 -6.85335845e-02 1.31463200e-01 -4.83045280e-02\\n-1.81025378e-02 -3.17654386e-02 3.95299375e-01 -6.25251979e-02\\n2.31280953e-01 5.23020566e-01 -2.28155807e-01 -2.67665058e-01\\n-3.25174779e-02 1.23930693e-01 -6.35954877e-03 4.64194626e-01\\n-1.74738348e-01 2.77220070e-01 -5.03048487e-02 7.74902180e-02\\n-9.64803100e-02 7.93015286e-02 8.77303630e-02 1.47348702e-01\\n1.42649159e-01 1.72113106e-01 5.94327867e-01 5.24532080e-01\\n2.27448955e-01 3.83944601e-01 3.43459815e-01 2.46498659e-02\\n4.62378174e-01 4.60709125e-01 3.11339021e-01 1.37289464e-01\\n2.53534503e-02 4.65814508e-02 1.52491257e-01 -5.76507635e-02\\n4.30147469e-01 4.19286102e-01 1.33034512e-01 7.84353971e-01\\n7.58600309e-02 2.92487860e-01 7.04769373e-01 -6.32447302e-01\\n-4.42493916e-01 7.70544540e-03 6.05489135e-01 -4.83824819e-01\\n-9.39632803e-02 1.78962216e-01 -1.78773373e-01 1.81127816e-01\\n-5.38589239e-01 -3.89146745e-01 -2.61195153e-02 1.23999573e-01\\n-7.77707025e-02 -1.66761696e-01 -1.54550359e-01 1.13589913e-01\\n3.58011536e-02 1.79079175e-02 -5.03724158e-01 -8.94336700e-02\\n-8.75824690e-02 -8.19132626e-02 -1.24801084e-01 -1.60023376e-01\\n-7.78837875e-02 -2.92164654e-01 5.34609705e-02 5.16755208e-02\\n2.84003705e-01 -5.19138314e-02 6.38652174e-03 1.71714295e-02\\n2.28366554e-01 1.11782677e-01 5.60524583e-01 -9.85085890e-02\\n7.16386884e-02 -1.07680649e-01 -2.15105012e-01 1.67366683e-01\\n1.61797330e-01 3.88299860e-02 1.48115782e-02 3.01574111e-01\\n-1.89686805e-01 -2.88532019e-01 1.04793906e-01 3.36473018e-01\\n-4.96872932e-01 8.46881568e-02 -1.13916643e-01 1.55542821e-01\\n1.19470850e-01 1.64155975e-01 -2.55628884e-01 -2.87215523e-02\\n-2.07679495e-01 -4.05460387e-01 1.89282626e-01 -5.09027168e-02\\n-1.74691170e-01 3.91284674e-02 2.00842097e-01 1.08325310e-01\\n-1.83323845e-01 9.02697295e-02 -1.92071542e-01 2.42557213e-01\\n6.31390437e-02 2.44066209e-01 -8.26845914e-02 -3.41219455e-01\\n-2.56906986e-01 1.24575324e-01 -7.39657283e-02 2.08857790e-01\\n4.03286107e-02 3.50092351e-01 -5.89012774e-03 -1.63358040e-02\\n5.40917933e-01 1.10420570e-01 -2.30183333e-01 -3.66632402e-01\\n-2.57155389e-01 -2.49119163e-01 1.22341822e-04 -7.09325895e-02\\n1.26313761e-01 -4.68478382e-01 -1.05692431e-01 -3.30885977e-01\\n-1.90472573e-01 -3.49994332e-01 -1.05137248e-02 -1.15497708e-01]]',\n", + " 'job_description': 'Discover your own perfect formula for job satisfaction Our facility in Reinach is currently looking for a Supply Chain Data Analyst (m/f) Endress+Hauser is a global leader in measurement instrumentation, services and solutions for industrial process engineering. Despite employing over 14,000 people worldwide, we have remained a family company, and are proud of our close-knit working environment. There are always two sides to working with us - the professional and the personal. Together they add up to a more rewarding career, day in and day out. Role+Responsibilities Collect, analyze and interpret data from various systems (SAP, Data Warehouse, Transport Management System) for supply chain analytics Define new data collection approaches and improve existing ones Analyze patterns and trends in the data for supply chain improvements Visualize and report your derived findings Maintain supply chain master data and assure data quality Qualification+Profile Degree in Mathematics, Computer Science, Statistics or Economics Experience in data models and reporting packages Ability to analyze large datasets and create comprehensive reports An analytical mind with focus on problem-solving, attention to detail Strong verbal and written communication skills Strong knowledge of English Programming skills and experience with SQL, Oracle, Python, SAP BW, SAP analytics cloud, SAP HANA, Data lakes, Tableau Benefits + Perks You will find the security of working for an international family-owned company You will have a wide range of training opportunities You will get flexible working time You will come across a broad range of options for the reconciliation of family and working life Contact us + Apply If this position sounds appealing to you, we would like to hear from you. Please send your CV to Beatrice Jacob and state your salary expectations and earliest possible start date via our job portal at www.endress.com/career',\n", + " 'soft_skills': '[\"Professionalism\", \"Written Communication\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Oracle SQL Developer\", \"Data Quality\", \"Tableau (Business Intelligence Software)\", \"Programming (Music)\", \"Computer Science\", \"Collections\", \"Analytics\", \"SAP HANA\", \"Statistics\", \"Supply Chain\", \"Survey Data Collection\", \"Visualization\", \"Computational Mathematics\", \"Industrial Processes\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Maintainability\", \"Python (Programming Language)\", \"Instrumentation\", \"Transport Management Systems\", \"Dataset\", \"SAP Project System\", \"Library For WWW In Perl\", \"Logical Data Models\", \"Management Systems\", \"Personalization\", \"Reconciliation\", \"Appeals\", \"Economics\", \"Data Lakes\", \"Derivatives\", \"Process Engineering\"]',\n", + " 'languages': \"['English', 'Macedonian', 'Divehi', 'Chuang']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'master data integration engineer',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.09031397e-01 2.86576778e-01 5.84010422e-01 -4.96654399e-02\\n5.52538276e-01 -1.91140592e-01 -1.05004922e-01 2.17947185e-01\\n-3.58377248e-02 -3.50853562e-01 -1.73911348e-01 -3.41806024e-01\\n-7.37481788e-02 1.49130579e-02 2.96316713e-01 3.59328806e-01\\n2.64990717e-01 1.21172190e-01 -1.33099645e-01 3.10553759e-01\\n1.32012770e-01 2.63772719e-02 3.02399080e-02 6.18956089e-01\\n2.99379706e-01 -9.67673492e-04 -8.83044153e-02 -8.80543590e-02\\n-3.03947598e-01 -1.74440265e-01 4.44239616e-01 4.23517972e-02\\n-1.09806888e-01 -3.04692060e-01 3.44010964e-02 8.36837217e-02\\n-3.18673164e-01 -1.13705933e-01 -1.67597651e-01 1.29380211e-01\\n-5.14039397e-01 -3.20091903e-01 1.22377045e-01 3.50121558e-02\\n-2.31327176e-01 -3.23004663e-01 5.71623305e-03 -2.62245070e-02\\n-1.65084447e-03 9.47165936e-02 -6.08101845e-01 2.80911207e-01\\n-2.94764489e-01 -8.31394792e-02 2.86304116e-01 6.73340738e-01\\n1.54943481e-01 -5.91074646e-01 -3.18855226e-01 -2.83709526e-01\\n5.86925931e-02 -9.44780037e-02 -1.36812339e-02 -2.08829105e-01\\n3.51754606e-01 7.44933356e-03 -5.36290370e-03 3.88051987e-01\\n-6.88661993e-01 -5.92931658e-02 -1.97157189e-01 5.62264062e-02\\n-3.12114567e-01 -3.57375829e-04 -2.52716243e-01 -2.70768225e-01\\n-9.69972163e-02 4.26825494e-01 -3.26753296e-02 1.04308046e-01\\n-2.60033309e-01 2.65941232e-01 -2.42705539e-01 2.15209484e-01\\n3.07769030e-01 1.89420193e-01 1.85211584e-01 3.26378673e-01\\n-4.77024645e-01 3.86798352e-01 3.10529888e-01 -2.84182489e-01\\n1.82534248e-01 9.01785865e-02 4.46074277e-01 1.88288808e-01\\n-2.46673953e-02 2.07584247e-01 -8.05083886e-02 2.42950693e-01\\n1.85306519e-01 -1.33837417e-01 3.12851593e-02 -1.28761262e-01\\n-7.45856985e-02 -1.50200292e-01 -1.46806017e-01 2.32810125e-01\\n-2.31268212e-01 2.83299834e-01 1.39372334e-01 -2.90425003e-01\\n1.21127609e-02 -6.26100183e-01 -9.03062746e-02 -1.65504128e-01\\n3.84997986e-02 2.14812070e-01 3.90426159e-01 1.30028248e-01\\n2.98212051e-01 1.27725169e-01 2.37798423e-01 9.67388749e-01\\n-3.11160292e-02 2.11381484e-02 -3.05449933e-01 3.69793445e-01\\n1.14839397e-01 -1.10671498e-01 1.57654285e-01 2.23656684e-01\\n2.65453458e-02 -2.20216680e-02 -2.25707233e-01 3.43386978e-01\\n-1.59932315e-01 -1.78902015e-01 -2.39085793e-01 9.10748765e-02\\n-3.37796301e-01 -4.74599749e-01 4.36829507e-01 1.08324826e-01\\n9.44597572e-02 -1.40616909e-01 -1.35782361e-01 -9.49153155e-02\\n-4.41103429e-02 3.02594960e-01 -9.24544688e-03 1.70401618e-01\\n-2.01353207e-01 -2.41656527e-01 -1.54357061e-01 3.29602718e-01\\n-8.04234110e-03 1.65440246e-01 -1.17442414e-01 -2.09429070e-01\\n3.28517556e-01 1.77442685e-01 -4.04022276e-01 2.37942591e-01\\n-4.29252051e-02 -3.06154698e-01 -1.69786260e-01 2.29956716e-01\\n-8.79543871e-02 1.18282408e-01 1.08271070e-01 -3.74532789e-01\\n3.66246581e-01 1.53868079e-01 2.40926936e-01 -8.57976228e-02\\n3.15328032e-01 -1.86292067e-01 2.10748285e-01 5.96689917e-02\\n-6.64204597e-01 5.36294878e-01 -6.79907799e-02 -1.46926880e-01\\n1.98252797e-01 1.11642949e-01 4.75669295e-01 -2.73644686e-01\\n-1.53003735e-02 -1.23909056e-01 -4.54862386e-01 -5.55491090e-01\\n-2.68206686e-01 -3.62232924e-02 3.95516336e-01 -4.56687868e-01\\n-1.43751308e-01 2.67377347e-01 -5.37496686e-01 -1.02724560e-01\\n2.03365102e-01 1.95239007e-01 5.95607087e-02 8.96883979e-02\\n-8.93619508e-02 -4.80014741e-01 2.09800918e-02 -5.48787355e-01\\n-4.00240481e-01 4.63845320e-02 -2.36212865e-01 1.01013325e-01\\n-9.22630914e-03 9.02198814e-03 -5.18196374e-02 4.20438796e-02\\n-4.25878227e-01 -1.25641627e-02 2.44914606e-01 1.60918564e-01\\n3.86925370e-01 -6.13185018e-02 -4.45062608e-01 5.96696019e-01\\n-2.56606430e-01 5.30152619e-01 2.35292062e-01 -9.65582609e-01\\n6.29519820e-01 2.65462965e-01 6.41416237e-02 -3.14249367e-01\\n4.88585472e-01 -5.27821898e-01 -4.98679020e-02 1.17878065e-01\\n-1.72558203e-01 -1.73572958e-01 2.42242277e-01 -1.72913715e-01\\n-3.06415588e-01 7.61413753e-01 2.08185956e-01 -4.26918156e-02\\n2.58585393e-01 -3.10146183e-01 -3.09233010e-01 -2.44386330e-01\\n-1.21514998e-01 -2.54675865e-01 -4.97495443e-01 3.04339558e-01\\n-9.96117815e-02 -6.23809874e-01 -1.38340011e-01 -4.08791512e-01\\n-1.98109671e-01 -3.96214426e-01 -2.47026369e-01 3.74756902e-01\\n1.45989284e-01 1.02002442e-01 1.05626788e-02 6.20141216e-02\\n-2.80371979e-02 -5.69191039e-01 -9.72760916e-02 1.59860238e-01\\n4.50274408e-01 3.12100619e-01 1.40358016e-01 -5.93217127e-02\\n-4.40949462e-02 4.23749477e-01 -4.10010159e-01 -2.46761099e-01\\n1.39062747e-01 4.98438515e-02 2.82621216e-02 -1.32813692e-01\\n3.77965383e-02 3.19637567e-01 -1.78171977e-01 7.27716386e-02\\n1.04980707e-01 3.28872055e-02 2.78977931e-01 -4.11830023e-02\\n-2.04476193e-01 -2.10270464e-01 2.31688470e-02 2.92448014e-01\\n-5.28763890e-01 -1.44869104e-01 5.33815384e-01 1.26609981e-01\\n4.53696661e-02 2.75086671e-01 3.85329902e-01 -1.55482739e-01\\n-3.02281171e-01 -2.07723051e-01 1.38194159e-01 2.00230539e-01\\n2.05872670e-01 9.25944094e-03 -1.37909502e-01 -4.24137175e-01\\n-2.98963785e+00 -2.58043945e-01 7.31441379e-02 -2.39079982e-01\\n1.94096074e-01 -2.73516446e-01 1.16430245e-01 2.96514276e-02\\n-3.35626006e-01 5.70795052e-02 -1.14627898e-01 -1.35130495e-01\\n1.72555298e-01 2.27056488e-01 3.98736075e-02 2.11004660e-01\\n-7.02143162e-02 -2.20964462e-01 4.73132022e-02 2.92485833e-01\\n-1.21186644e-01 -9.06617701e-01 8.44840407e-02 -4.41130586e-02\\n1.29273370e-01 -3.57169621e-02 -5.65537155e-01 -4.04509380e-02\\n-2.37811446e-01 -2.80156434e-01 1.95495799e-01 -2.03214794e-01\\n-1.02807567e-01 3.93973082e-01 1.22072347e-01 -1.39195025e-01\\n1.60574585e-01 -2.61458248e-01 -1.37707531e-01 -6.36443734e-01\\n1.44126713e-01 -7.10125923e-01 1.05467469e-01 -1.95417609e-02\\n6.34472430e-01 -3.57956350e-01 2.14998841e-01 2.80857027e-01\\n1.27888218e-01 2.02071309e-01 8.11111107e-02 -3.86155397e-02\\n-3.68958980e-01 -3.05942208e-01 -1.01600535e-01 -2.16305688e-01\\n3.63546103e-01 4.56827700e-01 -1.89321250e-01 1.32574350e-01\\n6.45778105e-02 -3.62895489e-01 -5.05029440e-01 -5.54503858e-01\\n-2.30979413e-01 -2.95974463e-02 -7.95248926e-01 -3.85925621e-01\\n-4.18757908e-02 -1.39935568e-01 -2.53812850e-01 6.90082192e-01\\n-4.08688247e-01 -3.65704417e-01 3.83748934e-02 -6.44479275e-01\\n3.25562805e-01 -3.47256482e-01 -4.40127245e-04 -1.85035750e-01\\n-2.60694146e-01 -4.11580116e-01 3.17062140e-01 3.73830050e-02\\n-1.94116190e-01 -2.61121485e-02 2.66478900e-02 -2.90203959e-01\\n-3.08739394e-01 -5.49238384e-01 4.38234538e-01 1.50610596e-01\\n4.19534951e-01 1.33223087e-02 4.58820403e-01 8.93500298e-02\\n3.65145802e-01 -3.07797845e-02 -2.27722921e-03 -4.87848550e-01\\n7.87420869e-02 7.96757191e-02 4.99596149e-01 -2.01953605e-01\\n1.49646327e-01 1.13438129e-01 -1.84745029e-01 -1.25695497e-01\\n4.74538535e-01 2.65390761e-02 -4.82929051e-02 -9.42156985e-02\\n2.84395695e-01 -5.65676033e-01 -3.03501397e-01 8.70286450e-02\\n-4.71941605e-02 7.46560276e-01 5.35740168e-04 -4.40139294e-01\\n-2.54497051e-01 4.63669688e-01 1.93849765e-02 -2.22656131e-01\\n-2.59023160e-01 1.08675480e-01 -2.31655583e-01 3.13287556e-01\\n5.57357781e-02 -1.99131504e-01 -4.10033554e-01 -1.02836870e-01\\n-5.31504825e-02 2.01398388e-01 1.73507407e-01 2.15011854e-02\\n1.94600653e-02 -2.49557436e-01 -7.89644271e-02 5.69297820e-02\\n3.23053330e-01 3.02415013e-01 2.52158105e-01 -2.41755709e-01\\n7.77272955e-02 2.59667009e-01 -3.17813814e-01 1.85700074e-01\\n-2.03028083e-01 2.50630472e-02 -5.86995900e-01 -2.60194421e-01\\n-1.52077034e-01 -2.47335806e-01 6.30628541e-02 2.95009553e-01\\n1.79531589e-01 -3.78091820e-02 1.04685113e-01 -4.40648913e-01\\n4.52928156e-01 4.79968674e-02 1.66705236e-01 9.41888094e-02\\n6.44171908e-02 6.72086596e-01 6.02041697e-03 -8.05083383e-03\\n-4.38597351e-02 -5.73137999e-02 -2.63033658e-01 -3.05837244e-01\\n-1.55909164e-02 -3.94400686e-01 -1.87050864e-01 5.57488978e-01\\n1.51062101e-01 -1.68598741e-01 -2.18687013e-01 3.06282759e-01\\n1.12334706e-01 -1.89448029e-01 -2.14419603e-01 8.39236900e-02\\n2.19085887e-01 1.97240248e-01 2.74058908e-01 -4.92281854e-01\\n-1.43895177e-02 -1.09894676e-02 7.84249380e-02 4.73054200e-01\\n1.09900139e-01 9.18412134e-02 -9.38837677e-02 -2.81119883e-01\\n4.83633995e-01 -1.82545722e-01 -1.47579551e-01 -8.45760033e-02\\n4.83577289e-02 -1.89375445e-01 -4.19606835e-01 6.15428435e-03\\n-1.14339806e-01 -3.05949748e-01 2.87973601e-02 6.83199763e-02\\n1.60263538e-01 -1.23813316e-01 -4.35812056e-01 -2.08905369e-01\\n-3.36403966e-01 1.30945176e-01 2.60540079e-02 -4.08985496e-01\\n1.60179943e-01 -6.03110343e-02 -5.80539167e-01 2.91574568e-01\\n-1.04396485e-01 3.10704671e-02 9.15766582e-02 7.92369768e-02\\n-3.50189239e-01 3.38676423e-02 2.58987099e-01 8.91120508e-02\\n-3.15855443e-01 -2.46408135e-01 8.03388059e-02 -9.25754786e-01\\n6.85591847e-02 7.01451525e-02 -1.94141511e-02 -3.30729224e-02\\n-3.27180624e-02 -7.51413643e-01 1.76214650e-01 -3.42901111e-01\\n-6.45458326e-02 -1.43175747e-03 -1.92376629e-01 -5.38688779e-01\\n1.30960181e-01 -2.21168585e-02 -2.33925045e-01 3.73144686e-01\\n-4.77556705e-01 4.05272186e-01 -7.83124268e-02 -2.68616062e-02\\n1.50416836e-01 -3.57049674e-01 1.90864712e-01 -1.76614136e-01\\n-4.41850662e-01 -6.35404736e-02 -4.24848884e-01 -3.60614151e-01\\n-4.69528474e-02 -2.07669809e-01 -8.02349523e-02 -2.87526641e-02\\n4.23886567e-01 1.26479566e-01 -1.09757975e-01 -1.57125190e-01\\n6.65987805e-02 -3.83253545e-01 1.17753118e-01 -3.19074571e-01\\n1.07034326e-01 -9.50057209e-02 3.48126620e-01 -8.78201276e-02\\n1.00190789e-01 -2.57148594e-01 6.25360012e-01 -2.26554513e-01\\n-4.25364077e-01 -1.38549611e-01 -1.14917129e-01 1.93369567e-01\\n3.46221924e-01 -4.28475648e-01 1.14908829e-01 1.65957436e-01\\n1.58710584e-01 4.75239605e-02 2.85313368e-01 -1.08931422e-01\\n-8.82275626e-02 2.37336442e-01 -6.65546834e-01 1.25865534e-01\\n7.25230932e-01 1.84553459e-01 1.87589839e-01 1.80103034e-01\\n2.35868707e-01 3.27042311e-01 4.99828458e-01 -5.08886576e-02\\n-2.10177839e-01 4.09881860e-01 1.37698159e-01 -5.22261322e-01\\n-2.20875487e-01 -1.30723223e-01 -1.60068378e-01 -3.70253474e-01\\n5.85434020e-01 2.41482243e-01 -3.26979965e-01 -3.31066698e-01\\n-1.08493224e-01 -8.57653096e-02 3.17341894e-01 -1.65576771e-01\\n-1.77606829e-02 -9.72070545e-02 4.73120928e-01 -1.71813685e-02\\n4.02478904e-01 4.71185029e-01 -1.02979377e-01 -3.63156289e-01\\n-2.02836126e-01 1.97874337e-01 1.97283819e-01 3.39838982e-01\\n-5.10042580e-03 1.94804192e-01 5.22861183e-02 2.10988030e-01\\n-2.97829956e-01 2.89090574e-02 1.16931140e-01 1.19833834e-02\\n1.53040186e-01 1.83349520e-01 2.79368490e-01 4.60089415e-01\\n2.40413576e-01 4.56416845e-01 3.15560669e-01 8.55551735e-02\\n4.08024997e-01 5.93873084e-01 3.53891492e-01 2.14175612e-01\\n1.93166677e-02 1.06202718e-02 -1.07715011e-01 3.89366858e-02\\n2.02558517e-01 3.28927934e-01 1.40826613e-01 1.03379095e+00\\n3.78616631e-01 3.65503281e-01 8.96946192e-01 -5.61348319e-01\\n-4.41696346e-01 1.61616188e-02 5.09271801e-01 -4.60500330e-01\\n-3.26234363e-02 1.46196291e-01 -3.10163289e-01 3.16170007e-01\\n-4.57625687e-01 -8.59101862e-02 1.08486060e-02 1.23156169e-02\\n3.13986652e-02 -1.86317749e-02 -1.30529612e-01 1.55483410e-01\\n-2.27623701e-01 -2.73653626e-01 -1.75416186e-01 -2.32355103e-01\\n-2.77309000e-01 -1.05848424e-01 -9.16233808e-02 9.98180658e-02\\n-6.31807745e-02 -3.31707627e-01 -1.66980878e-01 -1.97949354e-02\\n5.05184412e-01 -2.20968813e-01 -8.60830396e-02 -7.73406178e-02\\n1.36285082e-01 3.10595125e-01 6.15562320e-01 8.55323300e-03\\n2.02722639e-01 -1.76636368e-01 -1.74178466e-01 -3.84292044e-02\\n1.30484119e-01 1.43787667e-01 1.17616199e-01 5.23070455e-01\\n-3.58872712e-01 -8.50069374e-02 1.59691796e-01 2.49158993e-01\\n-3.31901193e-01 -1.95418999e-01 -7.76703060e-02 1.85278848e-01\\n4.09422107e-02 1.82861418e-01 -3.53871256e-01 1.92606822e-01\\n-2.40807399e-01 -5.86088300e-01 4.44573641e-01 -4.28800374e-01\\n2.79977196e-03 -3.72530930e-02 4.67348576e-01 2.11324215e-01\\n-1.12077259e-01 6.41296571e-03 -1.48027693e-03 3.70333225e-01\\n9.70532373e-03 4.61281717e-01 -3.08950275e-01 -8.64729956e-02\\n-3.60588402e-01 3.62756699e-01 -7.70005062e-02 2.11403668e-01\\n-3.55138630e-02 5.02551317e-01 -4.16979976e-02 1.88169673e-01\\n9.23456773e-02 -1.86422244e-01 -2.60167539e-01 -3.69283050e-01\\n-3.39867830e-01 -2.44794905e-01 1.20273359e-01 -1.42484888e-01\\n2.66324103e-01 -2.89228320e-01 -8.35647136e-02 -1.98115751e-01\\n-2.02512160e-01 -4.02971536e-01 -6.59103543e-02 3.14233303e-02]]',\n", + " 'job_description': 'About our client Our client is providing high quality services in the fields of Logistics, Information Technology, Customer Service and Real Estate. Your responsibilities Contribute in custom implementation of Master Data Integration and distribution solutions between different Group Brands and Countries. Master Data Solution is being custom built using Software AG’s Webmethods EAI product stack and MS SQL database, Goal of this role will be to further implement and extend the solution into new Master Data areas around a central Master Data Hub. Design robust data integration architecture and data models Act as Integration Solution Designer working with Business Analysts and development teams to define end-to-end Integration Solution Design Implementation of Master Data Integration Solutions based on SOA principles and their Data Integration Architecture Assist in Governance of master data, interfaces and their related processes Operational support of the Integration Landscape- infrastructure, solutions and applications assigned to the Services- Integration Competence Center (INTCC) Your profile Degree in information technology or equivalent Technically qualified in the Information technology field (IT degree or Master’s degree) Multiple years of experience in designing and developing Master Data Management (MDM) Integration Solutions Expertise with data modeling and MSSQL relational databases Experience in Software AG Webmethods EAI stack or any other EAI and ESB stacks. Experience as a Java/JEE integration developer and object-oriented programming Experience in developing web applications and frameworks like Angular JS or Webmethods CAF UI Experience in XML/ SOAP/ REST based Webservices Experience with various communication protocols such as HTTP, FTP, AS2 Experience in SAP Integrations and SAP Technology (ABAP, IDOC’S, ALE, RFC etc.) will be an added advantage Experience in at least one messaging Technologies (Webmethods Universal Messaging/Broker, JMS, IBM MQ, Active MQ or any other messaging technology) Familiar with SOA based solutions Experience in operating applications in Unix based environments- shell scripting Ability to work in a team and independently Good analytical skills and solution-oriented Excellent communication skills and Fluent in English and French, German will be an asset Your chance Apply now: jobs@oneagency.ch! Ort: Bern Spezialisierung: JAVA Entwicklung XML JEE/J2EE SQL Sprachen: Deutsch Englisch Job ID: 2416',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Customer Service\", \"Governance\", \"Infrastructure\", \"Real Estate\", \"Operations\", \"Integration\", \"Information Technology\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Siebel EAI\", \"Hyper SQL Database (HSQLDB)\", \"Data Management\", \"Pentaho Data Integration\", \"Data Modeling\", \"Branding\", \"Data Hub\", \"Data Integration\", \"Landscaping\", \"AS2\", \"SAP Technology Consulting\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Web Development\", \"IDoc\", \"Java Message Service (JMS)\", \"Object-Oriented Programming (OOP)\", \"Quality Of Services\", \"Custom Built PC\", \"Project-Based Solutions\", \"AD Model Builder (ADMB)\", \"File Transfer Protocol (FTP)\", \"Logistics\", \"Advanced Business Application Programming (ABAP)\", \"Message Broker\", \"Integrated Services\", \"Angular (Web Framework)\", \"Relational Databases\", \"Solution Design\", \"Data Language Interface\", \"Simple Object Access Protocol (SOAP)\", \"Master Data Management\", \"Centering\", \"Communications Protocols\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Extensible Markup Language (XML)\", \"Unix\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " 'languages': \"['English', 'Igbo', 'Dzongkha', 'Icelandic', 'Persian']\"},\n", + " {'company_id': '3',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.25972161e-01 1.82309926e-01 4.60240096e-01 3.88041548e-02\\n5.27822554e-01 -2.00513646e-01 3.07385270e-02 3.83118659e-01\\n8.81233513e-02 -3.35077792e-01 -3.31870243e-02 -3.11059833e-01\\n-1.40460432e-01 1.27683818e-01 -8.64985678e-03 3.43016297e-01\\n3.68590027e-01 1.36323437e-01 -1.77311301e-01 4.07873333e-01\\n1.12691619e-01 -1.01935767e-01 1.18176444e-02 8.02999854e-01\\n5.14983177e-01 1.09390533e-02 -9.28386971e-02 1.86021086e-02\\n-2.69973010e-01 -1.68353513e-01 4.47183996e-01 -4.36146222e-02\\n-1.05818823e-01 -3.45961630e-01 1.67472348e-01 7.74640739e-02\\n-2.25931183e-01 8.37413743e-02 -1.18933901e-01 9.82481018e-02\\n-4.62380052e-01 -2.33057842e-01 -1.11393016e-02 3.71388569e-02\\n-2.39295825e-01 -2.68159091e-01 9.56443623e-02 4.43644859e-02\\n8.14447030e-02 9.37325507e-02 -4.83117551e-01 2.99364716e-01\\n-2.41431952e-01 -1.92126647e-01 2.47133553e-01 5.65697193e-01\\n-3.69032025e-02 -5.38636148e-01 -4.52528417e-01 -4.23976004e-01\\n3.02578770e-02 -6.65280148e-02 8.93900543e-02 -4.17196304e-01\\n4.03923780e-01 -4.95664291e-02 -1.60344839e-02 3.26124519e-01\\n-7.66836762e-01 5.57993306e-03 -2.70500004e-01 -8.28465149e-02\\n-4.10270035e-01 -5.49467020e-02 -3.70843530e-01 -2.25932058e-03\\n-1.23264879e-01 3.71388048e-01 1.09313175e-01 1.79937452e-01\\n-2.68536717e-01 2.97999561e-01 -2.28436574e-01 4.39626038e-01\\n2.38174379e-01 2.11773112e-01 2.14993790e-01 3.42533946e-01\\n-3.90221357e-01 4.78368282e-01 1.77198201e-01 -2.72695988e-01\\n2.97895491e-01 8.05688575e-02 3.30556244e-01 -3.28749642e-02\\n1.50311276e-01 6.86438158e-02 -2.63857186e-01 2.51930207e-01\\n2.75529921e-01 -3.63178968e-01 2.85147037e-02 -7.69500658e-02\\n8.40694178e-04 7.35757574e-02 4.67434004e-02 2.34161988e-01\\n-2.43389234e-01 5.17325580e-01 1.59513518e-01 -1.49813384e-01\\n-1.62780598e-01 -4.95391697e-01 -6.07719794e-02 4.03835438e-02\\n3.63908112e-02 1.19789228e-01 2.16845468e-01 5.70448861e-02\\n2.19390929e-01 -1.67973265e-02 5.53100705e-02 8.34067106e-01\\n-4.36116643e-02 -3.59342694e-02 -2.24684000e-01 3.02282155e-01\\n1.30359948e-01 -3.43923748e-01 2.39593014e-01 2.92837113e-01\\n9.61170495e-02 -1.19641654e-01 -2.61175185e-01 3.80248010e-01\\n-8.27484280e-02 -2.14978993e-01 -2.17670843e-01 2.04866171e-01\\n4.06045988e-02 -4.70596492e-01 6.80355132e-01 5.21477051e-02\\n1.59599200e-01 -7.48544633e-02 9.12806317e-02 -1.27606601e-01\\n-9.67475325e-02 2.02053592e-01 8.97060707e-02 1.58364475e-01\\n-2.99857438e-01 -3.24041158e-01 -1.76518500e-01 1.73897550e-01\\n-4.07551467e-01 1.38561815e-01 -8.72857869e-02 -1.46169052e-01\\n2.94432759e-01 1.03343114e-01 -3.62105727e-01 2.29781941e-01\\n-2.01501116e-01 7.56594492e-03 -5.33736832e-02 4.63217854e-01\\n-1.95115134e-01 2.03369319e-01 3.49731073e-02 -2.21205391e-02\\n6.66948497e-01 3.38200182e-01 1.17670707e-01 2.31263749e-02\\n2.66580343e-01 -2.71575223e-03 2.14269355e-01 5.80774248e-02\\n-7.59289086e-01 3.65284413e-01 1.55970324e-02 -1.97686449e-01\\n5.90963326e-02 -9.50042233e-02 2.84486622e-01 -4.16169494e-01\\n-5.18031940e-02 -2.11864278e-01 -4.41584378e-01 -2.12039143e-01\\n-2.73039371e-01 1.43839624e-02 3.07349741e-01 -5.35399795e-01\\n-6.99087679e-02 3.00495446e-01 -5.63752651e-01 -2.14882940e-01\\n1.70416176e-01 3.03622931e-01 1.15070254e-01 5.40704578e-02\\n-7.48782679e-02 -6.79392278e-01 6.67964146e-02 -4.31898981e-01\\n-3.59579831e-01 -1.43316174e-02 -4.50412571e-01 2.13948086e-01\\n6.20485321e-02 4.17212211e-02 -1.09753035e-01 1.65961176e-01\\n-2.48744145e-01 -1.38504773e-01 1.11490592e-01 2.05052812e-02\\n3.02611202e-01 6.07155859e-02 -4.64979678e-01 4.30662125e-01\\n-2.81098306e-01 5.11593163e-01 1.85008258e-01 -7.57326186e-01\\n5.74034393e-01 3.37535799e-01 -9.99366492e-02 -4.42817807e-01\\n5.50441027e-01 -3.39149714e-01 -1.15464889e-01 5.64512089e-02\\n-3.20634305e-01 -3.06303531e-01 2.40475267e-01 -3.26777190e-01\\n-2.76131868e-01 4.50085253e-01 4.65395935e-02 1.02973126e-01\\n2.72129059e-01 -2.19907060e-01 -5.01147732e-02 6.58455640e-02\\n-7.29757920e-02 -2.17130125e-01 -4.91143376e-01 -3.91559079e-02\\n-3.90565358e-02 -4.26554710e-01 -8.78385678e-02 -4.46184009e-01\\n-1.93908229e-01 -4.06153977e-01 -1.88737169e-01 1.85721308e-01\\n2.46318460e-01 3.63205895e-02 1.24839339e-02 -3.16444822e-02\\n-1.89068869e-01 -6.94603801e-01 3.42434384e-02 1.10273719e-01\\n4.47300375e-01 1.93019032e-01 1.37744710e-01 -6.61570206e-02\\n1.21055312e-01 8.20595801e-01 -1.98637009e-01 -2.56368279e-01\\n1.20762415e-01 7.03201145e-02 7.16204941e-02 -1.56968191e-01\\n1.37659520e-01 3.55493516e-01 -3.32486242e-01 -4.54530641e-02\\n-1.08643413e-01 -1.61953300e-01 4.28994507e-01 -4.50886041e-03\\n-3.58219385e-01 -2.58688301e-01 -7.62887523e-02 6.36898950e-02\\n-5.80926001e-01 -1.99150175e-01 5.45143485e-01 2.65415907e-01\\n2.31855735e-01 1.17926307e-01 1.64546266e-01 -3.04037426e-02\\n-1.89089417e-01 -3.36750120e-01 2.76831359e-01 7.82701671e-02\\n6.05927221e-02 5.68566136e-02 1.70564018e-02 -6.60516083e-01\\n-3.07928133e+00 -1.36260435e-01 2.04543009e-01 -2.74991542e-01\\n1.91050038e-01 -1.05118133e-01 3.24771553e-02 -9.82534960e-02\\n-2.67867535e-01 1.35505736e-01 -1.01696119e-01 -1.93334833e-01\\n8.59103650e-02 1.48705438e-01 2.39607707e-01 1.04718499e-01\\n2.03483790e-01 -1.54805556e-01 -1.76227372e-03 3.25024307e-01\\n-1.30704090e-01 -6.79139614e-01 1.71775267e-01 -1.18264861e-01\\n3.35542530e-01 1.99890092e-01 -3.63701522e-01 -2.04560608e-01\\n-3.09739292e-01 -2.09116235e-01 1.51127940e-02 -3.46992493e-01\\n-1.23579942e-01 2.46115938e-01 1.91082001e-01 -1.80376664e-01\\n1.12678662e-01 -4.30446923e-01 -1.47436500e-01 -5.14610350e-01\\n9.26637650e-02 -5.87351799e-01 6.45765429e-03 -1.46780223e-01\\n7.23004282e-01 -3.28756422e-01 2.51842976e-01 4.21436690e-02\\n1.84404105e-01 1.31646618e-01 1.77398622e-01 -2.16096975e-02\\n-2.61649340e-01 -3.39562446e-01 -5.68366647e-02 -2.36328632e-01\\n6.20820045e-01 5.02843976e-01 -2.34211728e-01 1.68539421e-03\\n5.83029352e-02 -3.73863041e-01 -3.79948556e-01 -2.51776069e-01\\n-1.03984557e-01 -2.88192630e-01 -5.92338860e-01 -4.39090133e-01\\n-1.99536726e-01 2.05398947e-02 -2.09143851e-02 5.99308193e-01\\n-1.99688837e-01 -3.59549403e-01 3.71728390e-02 -5.83014250e-01\\n2.70767689e-01 -1.94168940e-01 7.62940794e-02 -2.17999488e-01\\n-2.01216474e-01 -5.55336356e-01 4.19292673e-02 -1.34545371e-01\\n-5.63517213e-02 -2.84844607e-01 -3.22182290e-02 -5.24639934e-02\\n-2.52541602e-01 -4.98524815e-01 4.01998371e-01 1.40139192e-01\\n3.65950167e-01 1.13092780e-01 3.14593226e-01 -7.91940540e-02\\n2.85575092e-01 -1.01126945e-02 1.27692074e-01 -4.00050700e-01\\n7.50818998e-02 6.88411221e-02 4.92206573e-01 -1.99832082e-01\\n8.79143178e-02 1.14784412e-01 -2.99478799e-01 -1.30216449e-01\\n3.41384590e-01 -1.84303466e-02 -9.10376722e-04 -2.55819317e-02\\n2.81386167e-01 -3.75699550e-01 -2.20978394e-01 5.63926548e-02\\n1.11726739e-01 6.29562736e-01 -7.38921240e-02 -3.61767173e-01\\n-1.50198326e-01 5.49922049e-01 -6.29680678e-02 3.74586135e-02\\n-7.85078034e-02 8.07458013e-02 -2.23857969e-01 2.64670968e-01\\n5.98244555e-02 -2.92934418e-01 -2.77020276e-01 -1.58345506e-01\\n3.21874022e-02 2.88698405e-01 1.94495127e-01 5.37030026e-02\\n1.69680326e-03 -4.04658556e-01 -8.22796971e-02 2.21844509e-01\\n2.03910291e-01 4.42292601e-01 8.61155540e-02 -2.13491425e-01\\n-5.57508580e-02 4.79698181e-01 -1.64071262e-01 2.69057572e-01\\n-1.97141424e-01 9.52728316e-02 -5.15679836e-01 -2.45657250e-01\\n-3.22022200e-01 -3.71634990e-01 1.93703368e-01 3.49903047e-01\\n7.76421353e-02 4.56004776e-02 2.01864983e-03 -4.83336985e-01\\n2.80215442e-01 1.12315468e-01 2.08314106e-01 1.22792087e-01\\n-8.20273906e-02 5.79760373e-01 3.24717499e-02 -5.08821942e-02\\n-2.39353120e-01 1.13580570e-01 -1.14677094e-01 -1.93785697e-01\\n1.23440668e-01 -5.38683772e-01 -1.38539299e-01 3.60751271e-01\\n1.24218032e-01 -2.41286412e-01 -1.84318155e-01 2.92224586e-01\\n-6.73509091e-02 -2.53834635e-01 -2.27760807e-01 -4.76558469e-02\\n3.96245092e-01 1.05850078e-01 2.44866207e-01 -4.22976792e-01\\n2.05802731e-02 3.16218771e-02 -1.43547226e-02 4.22730148e-01\\n-1.71101075e-02 1.29679842e-02 -1.20946005e-01 -2.43411556e-01\\n4.93974090e-01 2.66678631e-02 -9.43832770e-02 1.07316479e-01\\n1.14340901e-01 -2.69126475e-01 -4.78230238e-01 -1.83768501e-03\\n6.10399842e-02 -1.26717374e-01 1.39015108e-01 8.91534984e-02\\n6.47467896e-02 2.45339144e-02 -4.89231169e-01 -2.13751778e-01\\n-2.41733104e-01 -5.25473431e-02 8.90705511e-02 -4.27102387e-01\\n-1.28822297e-01 -8.90454352e-02 -5.10802388e-01 2.21324235e-01\\n-2.87056953e-01 -3.76962796e-02 2.15834185e-01 6.72568679e-02\\n-2.09871203e-01 -9.88579616e-02 1.56540453e-01 3.48584861e-01\\n-3.25046778e-01 -2.82673597e-01 7.45313913e-02 -1.01789093e+00\\n2.13743508e-01 4.56102900e-02 -1.55562028e-01 1.86216429e-01\\n-3.99098545e-02 -6.89056277e-01 1.72192335e-01 -4.02195692e-01\\n-5.65077178e-02 -7.54329488e-02 -2.22990453e-01 -2.01319993e-01\\n1.76147789e-01 -9.39187557e-02 -3.54897320e-01 4.24434870e-01\\n-3.25181097e-01 3.02044421e-01 -2.01269343e-01 3.35145444e-02\\n-7.22902939e-02 -1.49711028e-01 1.56923294e-01 -3.07342172e-01\\n-3.89001220e-01 -2.93077677e-01 -3.21712136e-01 -2.22281530e-01\\n6.21619113e-02 -3.82596821e-01 -5.76206334e-02 4.63966280e-02\\n5.10748148e-01 8.87594223e-02 -1.10826522e-01 -2.57768571e-01\\n1.46319307e-02 -4.75860626e-01 1.25647308e-02 -1.62303537e-01\\n-1.24252543e-01 -1.23974390e-01 1.82830751e-01 1.87634900e-01\\n1.35423243e-01 -5.11440337e-01 3.18530381e-01 -2.70976335e-01\\n-3.25612277e-01 -9.84951034e-02 5.77368364e-02 9.12609398e-02\\n3.62453222e-01 -4.62031066e-01 -4.99801338e-02 2.84197778e-01\\n1.41021430e-01 1.02387734e-01 2.26282150e-01 -2.20260210e-02\\n5.47817759e-02 2.36834422e-01 -4.02780563e-01 -3.49529125e-02\\n7.28735864e-01 6.36048317e-02 1.15245074e-01 2.95333892e-01\\n1.85252503e-01 2.47042060e-01 4.55743581e-01 -5.11097312e-02\\n-2.18262132e-02 1.85932666e-01 3.15329619e-02 -4.92577523e-01\\n-8.17644522e-02 -3.12537067e-02 -2.31141374e-01 -4.03899044e-01\\n6.45071983e-01 3.74137402e-01 -4.41730797e-01 -3.31220478e-01\\n-6.60742223e-02 -1.72294557e-01 2.29084805e-01 -3.09711043e-02\\n4.13585752e-02 -1.02447808e-01 3.47379178e-01 -8.83611515e-02\\n1.95212439e-01 6.36070848e-01 -1.72376364e-01 -3.08130860e-01\\n-1.36338130e-01 1.54107779e-01 -2.84463987e-02 4.89341855e-01\\n-3.37848395e-01 2.51304418e-01 2.76741106e-02 1.54452650e-02\\n-4.97861356e-02 2.47311175e-01 9.70601439e-02 9.09015536e-02\\n2.34690502e-01 7.73711037e-03 3.79537553e-01 5.72275221e-01\\n1.76239148e-01 4.32909101e-01 3.31621319e-01 3.40414606e-02\\n3.96334589e-01 5.77271402e-01 4.54982519e-01 1.50337741e-01\\n-3.17969918e-02 1.48689970e-01 7.57291541e-02 -1.28129736e-01\\n4.21068937e-01 3.50408405e-01 1.12657823e-01 9.19663668e-01\\n3.82002026e-01 3.76989096e-01 7.07433760e-01 -7.12125480e-01\\n-4.20664757e-01 1.46591654e-02 5.99066019e-01 -4.36608076e-01\\n6.86650351e-02 1.36931196e-01 -1.71794161e-01 3.37077260e-01\\n-4.96647477e-01 -2.04845399e-01 1.44012654e-02 3.19488980e-02\\n-4.25091246e-03 -8.02719370e-02 -2.50780493e-01 2.59769950e-02\\n-1.50735885e-01 -5.72400168e-02 -4.78805929e-01 -1.38075545e-01\\n-1.54214069e-01 -4.13403427e-03 -5.40589243e-02 -2.15688750e-01\\n1.38140293e-02 -2.37362400e-01 -5.31846620e-02 -1.01747744e-01\\n3.10975015e-01 -1.91179052e-01 -5.38796932e-03 -1.46132916e-01\\n2.99586833e-01 1.75029308e-01 5.59096694e-01 4.66897599e-02\\n1.29685640e-01 -2.11708397e-01 -2.73740321e-01 9.53275338e-02\\n1.37150571e-01 1.07840657e-01 4.53513041e-02 1.82484195e-01\\n-2.41997555e-01 -1.58939764e-01 1.47235051e-01 3.35812151e-01\\n-4.67892677e-01 2.51869555e-03 -1.16797432e-01 1.01557821e-01\\n6.62344098e-02 1.12400115e-01 -1.95465058e-01 -5.14276363e-02\\n-1.72580302e-01 -4.18463498e-01 3.72841954e-01 -1.69517606e-01\\n-2.11953759e-01 5.89743443e-02 3.09473425e-01 1.87666088e-01\\n-3.02863181e-01 -8.14485699e-02 -1.68710276e-01 1.27660379e-01\\n1.31128252e-01 2.06666306e-01 -1.34282395e-01 -3.07062209e-01\\n-3.01935047e-01 6.54495880e-02 -1.54230207e-01 9.62111428e-02\\n4.46040519e-02 4.56519783e-01 -3.60696353e-02 -6.11511432e-02\\n4.58282471e-01 3.95893641e-02 -3.27029467e-01 -1.56432047e-01\\n-2.33172983e-01 -1.71896622e-01 1.05248708e-02 -2.92119868e-02\\n1.34704441e-01 -4.27240282e-01 -9.03581455e-02 -1.77082211e-01\\n-3.39127742e-02 -3.07589471e-01 3.26588051e-03 -1.20717153e-01]]',\n", + " 'job_description': \"42matters.com is a Swiss company operating in the mobile app space. We offer a full suite of products and services for App Market Data and Mobile App Intelligence. Bringing a unique combination of technical and business skills together, we provide our customers with a thorough analysis of the latest developments on the app stores and mobile industry. We are a truly international team, with an innovative and fast-paced company culture. As a Data Engineer, you are someone who is passionate about processing large data sets. You will be responsible for building and maintaining data pipelines to support our products and our Data Science team. You will contribute to the entire stack, working with DevOps on maintenance and tuning, alongside collaborating with Data Scientists to build applications and algorithms. To thrive as a member of team 42matters, you must embrace our exciting work-hard, play-hard environment. We're not afraid to move fast and break things as we release, launch, iterate, update and announce; sometimes all in the same day. We're a closely-knit team and, especially at the end of a long day over beers, we feel like we're inventing the future together. Job type: Full-time Location: Zurich Starting date: As soon as possible RESPONSIBILITIES Write data pipelines to extract, transform and load (ETL) data automatically, using a variety of traditional as well as large-scale distributed technologies. Extend and optimize the current system by making the enormous amounts of data accessible for both our data scientists and our products. Help to build a reliable, sustainable and scalable data infrastructure. Requirements 3+ years of work experience as a Data Engineer. Strong experience with big data technologies on Amazon Web Services (e.g. Redshift, EC2, MapReduce, Spark). Strong knowledge of Python programming language. Familiar working with relational data stores (e.g. PostgreSQL, Redshift). Good abilities in DevOps. Fluent English. Ability to work autonomously but also be a strong team player. Self-motivated, team player comfortable in a small, intense and high-growth start-up environment. PREFERRED QUALIFICATIONS Strong educational background: Bachelor/Master degree in CS or other technical/science/math field Proficiency in more than one programming language (Java, Python, Bash). Strong SQL skills and the ability to write and analyze complex SQL queries. Experience designing data models and data warehouses. Ability to identify and resolve performance issues. \",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Writing\", \"Collaboration\", \"Operations\", \"Team Motivation\", \"Reliability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Accessioning\", \"KM Programming Language\", \"Sustainability\", \"Data Modeling\", \"Data Engineering\", \"Industrialization\", \"Scale (Map)\", \"Mobile App\", \"MapReduce\", \"PostgreSQL\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Data Pipeline\", \"Iterators\", \"Extract Transform Load (ETL)\", \"Mobility\", \"Minimum Data Set\", \"App Store (IOS)\", \"Data Science\", \"Web Services\", \"Bash (Scripting Language)\", \"Big Data\", \"Amazon Web Services\", \"Data Store\", \"Clinical Data Warehouse\", \"Data Infrastructure\", \"Experience Design\", \"Algorithms\", \"Amazon Data Pipeline\", \"Market Data\", \"Amazon Redshift\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Hebrew', 'Tajik', 'Pashto']\"},\n", + " {'company_id': '15',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.98998433e-02 1.97152644e-01 4.99470174e-01 -1.87371280e-02\\n5.57983756e-01 -4.58676927e-02 2.19857134e-02 2.63412774e-01\\n5.93734831e-02 -3.48637283e-01 9.23671760e-03 -2.26297766e-01\\n-4.41474877e-02 1.25425667e-01 1.01614155e-01 3.50094080e-01\\n2.28653610e-01 1.43700704e-01 -1.61327466e-01 2.42487073e-01\\n2.60273933e-01 -2.27474153e-01 1.46380231e-01 7.42537141e-01\\n3.51047695e-01 7.53103048e-02 -1.22040108e-01 -8.72733742e-02\\n-2.35802457e-01 -2.19702959e-01 4.60112602e-01 2.73665488e-02\\n-1.78154372e-02 -3.69986176e-01 1.52367219e-01 4.63702492e-02\\n-3.02975923e-01 -2.78775506e-02 -7.84548894e-02 2.49695569e-01\\n-6.48348093e-01 -2.75886148e-01 -2.66547129e-02 4.19582352e-02\\n-2.34154552e-01 -2.63983905e-01 -3.10796387e-02 -7.76615739e-02\\n8.40050429e-02 8.83230641e-02 -5.07604837e-01 2.41512030e-01\\n-1.24171391e-01 -2.28536963e-01 2.48472199e-01 6.91273987e-01\\n-4.50681038e-02 -4.41353738e-01 -5.37199080e-01 -3.11479896e-01\\n8.33623931e-02 -1.95348561e-01 6.43659532e-02 -2.55740345e-01\\n2.96868801e-01 2.51846164e-02 1.24646239e-01 3.39337111e-01\\n-6.92676008e-01 -9.81176551e-03 -2.06226423e-01 7.86596071e-03\\n-2.53300458e-01 -8.06198344e-02 -2.65956372e-01 -1.03259161e-01\\n-1.63169637e-01 5.04333436e-01 1.56563893e-01 -2.13129390e-02\\n-6.97189122e-02 2.04713434e-01 -2.66840726e-01 2.91900247e-01\\n1.95358247e-01 2.55060107e-01 1.41678452e-01 2.92000473e-01\\n-3.24760646e-01 4.51508760e-01 8.28409120e-02 -2.80482441e-01\\n2.31827781e-01 6.45272881e-02 4.46475387e-01 -7.59381279e-02\\n9.55346152e-02 8.09905306e-02 -2.48376578e-01 2.68496335e-01\\n2.35486105e-01 -2.48794243e-01 7.69232213e-02 -8.61431807e-02\\n-1.40916556e-01 -5.14186770e-02 -4.72015655e-03 2.14406341e-01\\n-1.84699848e-01 3.66772532e-01 2.04026341e-01 -5.82609437e-02\\n-1.51278481e-01 -5.49873054e-01 1.88134611e-02 5.32678403e-02\\n6.83155656e-02 2.22340986e-01 1.91423163e-01 7.53043741e-02\\n1.86959937e-01 5.27589358e-02 1.90087140e-01 8.44816625e-01\\n2.61658803e-02 1.23406202e-01 -2.85340935e-01 2.81537175e-01\\n1.05313189e-01 -1.68594822e-01 1.16564445e-01 1.91351876e-01\\n8.37723389e-02 -9.97206122e-02 -2.76905566e-01 3.22454602e-01\\n-7.89886340e-02 -2.12458119e-01 -1.41082928e-01 2.16886789e-01\\n-7.93813765e-02 -3.31747264e-01 5.10200918e-01 1.48076490e-01\\n1.31854162e-01 -5.91597967e-02 8.79621319e-03 -1.36009589e-01\\n-1.59676716e-01 1.80109471e-01 5.42135425e-02 1.47959471e-01\\n-3.39210600e-01 -2.66746342e-01 -2.66191065e-01 1.06226690e-01\\n-3.05226713e-01 9.95913744e-02 -5.22824898e-02 -8.04561824e-02\\n2.76378810e-01 1.74293458e-01 -2.94111192e-01 2.37864852e-01\\n-8.44585299e-02 -1.09393433e-01 1.25585094e-01 3.02391976e-01\\n-2.31247544e-01 1.81893796e-01 1.20371310e-02 -1.93199307e-01\\n5.66395700e-01 1.66991785e-01 2.37456560e-01 9.21028107e-02\\n2.88263500e-01 -6.08759522e-02 1.05367444e-01 2.27070495e-01\\n-5.73513687e-01 3.11017722e-01 -1.05044939e-01 -7.21694678e-02\\n1.82422280e-01 -6.32762685e-02 3.83740097e-01 -3.05233240e-01\\n1.57807574e-01 -1.17152251e-01 -3.57045382e-01 -2.67231077e-01\\n-1.65865228e-01 1.71132118e-01 3.61724347e-01 -4.38111156e-01\\n-2.45524123e-02 3.20603430e-01 -4.49311018e-01 -1.78323194e-01\\n1.68470204e-01 1.88515052e-01 1.43587887e-01 8.76417011e-02\\n-2.38418832e-01 -4.36608940e-01 -2.54167058e-03 -3.21836710e-01\\n-3.00735235e-01 5.79095706e-02 -2.60441244e-01 2.78234243e-01\\n5.49001098e-02 6.52710944e-02 -1.32333368e-01 1.48784906e-01\\n-1.94907054e-01 -5.45627922e-02 1.67649865e-01 2.76614223e-02\\n2.20458657e-01 7.26060793e-02 -3.43278468e-01 3.71006191e-01\\n-1.22606680e-01 5.54795384e-01 1.31609350e-01 -8.16452086e-01\\n4.77201194e-01 2.66264230e-01 -1.40279502e-01 -3.60791326e-01\\n5.56011319e-01 -2.08606049e-01 4.72614579e-02 1.61297396e-01\\n-3.17924023e-01 -3.60303968e-01 3.37640136e-01 -1.41066924e-01\\n-2.24926263e-01 4.85480428e-01 1.72831804e-01 1.30888209e-01\\n1.59585848e-01 -2.51462340e-01 -1.17638201e-01 3.39746214e-02\\n-1.53288677e-01 -2.30060682e-01 -5.00312567e-01 -2.85034962e-02\\n-1.40911520e-01 -3.92224193e-01 -7.19712824e-02 -3.09450299e-01\\n-2.25271046e-01 -3.30438226e-01 -1.03796020e-01 1.81441441e-01\\n3.11140209e-01 2.38120362e-01 1.24966754e-02 8.45534634e-03\\n-1.26339896e-02 -6.34600580e-01 -8.67870599e-02 8.32965896e-02\\n3.69247437e-01 1.30257577e-01 1.44248337e-01 4.63810451e-02\\n-4.26720902e-02 5.18113732e-01 -1.74384668e-01 -1.52194649e-01\\n1.39776304e-01 1.27821162e-01 8.16736668e-02 -6.81443959e-02\\n1.47215068e-01 3.12286437e-01 -2.22207084e-01 9.18604061e-02\\n-9.47456062e-02 -4.78177592e-02 3.32185388e-01 4.27488200e-02\\n-3.00677687e-01 -2.40568906e-01 -1.16933428e-01 1.17763579e-01\\n-4.97554302e-01 -2.18924999e-01 4.79001731e-01 1.79978967e-01\\n1.86108798e-01 1.39620975e-01 1.27440870e-01 -1.33280292e-01\\n-1.72111884e-01 -2.58254677e-01 3.32453758e-01 2.68188287e-02\\n1.86541125e-01 1.00505784e-01 -1.40593783e-03 -5.70831895e-01\\n-3.43930721e+00 -1.65340841e-01 1.24765515e-01 -2.75352001e-01\\n1.88078478e-01 -1.52135253e-01 7.20741153e-02 1.50343459e-02\\n-2.77613133e-01 5.70858717e-02 -5.00585400e-02 -9.10519809e-02\\n1.16038486e-01 1.80958629e-01 1.49729788e-01 2.29187727e-01\\n7.46175274e-02 -2.11780906e-01 -4.57385108e-02 3.57682198e-01\\n-3.16253662e-01 -6.25500679e-01 1.54034004e-01 -7.84544945e-02\\n1.74763709e-01 1.97557971e-01 -3.36236060e-01 -1.76586166e-01\\n-2.41786540e-01 -2.16673508e-01 7.88787380e-02 -2.43224978e-01\\n-1.20544150e-01 3.38597059e-01 1.77966803e-01 -2.47339476e-02\\n1.11569829e-01 -2.90177077e-01 5.41986723e-04 -4.14874434e-01\\n9.85726193e-02 -6.58646047e-01 -6.86026737e-02 -1.47949070e-01\\n6.62897587e-01 -3.05703431e-01 1.22703440e-01 6.12274371e-02\\n2.06132039e-01 1.19932771e-01 4.71950769e-02 -8.91026780e-02\\n-2.39108741e-01 -2.38231212e-01 -8.04287642e-02 -6.82279766e-02\\n3.29306543e-01 5.55606902e-01 -1.41079843e-01 -1.01776652e-01\\n-3.85066979e-02 -3.50557536e-01 -4.77627426e-01 -3.50319862e-01\\n-9.72887576e-02 -1.90136760e-01 -6.05422676e-01 -4.35974300e-01\\n-1.58704817e-01 -1.14522755e-01 -7.50512406e-02 5.06284535e-01\\n-2.83337206e-01 -3.42575222e-01 -1.72541335e-01 -5.07660031e-01\\n2.49455258e-01 -1.48055673e-01 -7.63515681e-02 -2.82965839e-01\\n-3.32825184e-01 -4.41049308e-01 1.95053592e-01 3.88801955e-02\\n-1.13154590e-01 -2.56487221e-01 6.71961308e-02 -2.27691740e-01\\n-3.09614331e-01 -4.63464409e-01 3.23200345e-01 5.41589968e-02\\n2.99706787e-01 1.30259842e-01 3.71802628e-01 -3.51815447e-02\\n3.12345922e-01 -9.61680785e-02 6.74147159e-02 -3.34052265e-01\\n7.97658637e-02 4.60403524e-02 4.11679924e-01 -3.23985666e-01\\n-3.62232290e-02 1.71932250e-01 -3.28969419e-01 -3.26989926e-02\\n2.89494783e-01 -9.97728482e-02 -1.23855107e-01 -1.44535854e-01\\n3.90606403e-01 -3.52675945e-01 -1.79764166e-01 6.33004233e-02\\n1.44868657e-01 4.92709488e-01 2.34151129e-02 -3.45968008e-01\\n-2.04053819e-01 3.97915274e-01 -7.78415129e-02 -1.48245245e-01\\n-8.86551812e-02 -2.49728188e-03 -2.12938026e-01 3.16476256e-01\\n-1.77277252e-02 -1.79964960e-01 -2.90927500e-01 -1.78654149e-01\\n-8.60887468e-02 3.54264438e-01 2.16819718e-01 4.51311760e-04\\n-1.32116392e-01 -3.00597429e-01 -2.19884798e-01 2.64676422e-01\\n1.64699480e-01 3.21614355e-01 1.40138313e-01 -1.95295036e-01\\n-2.37670150e-02 2.58300990e-01 -1.36433095e-01 1.72529817e-01\\n-2.48085856e-01 3.23181525e-02 -5.37817240e-01 -4.53125745e-01\\n-1.39257535e-01 -3.71102333e-01 1.85846046e-01 3.53551596e-01\\n2.64122963e-01 6.88541157e-04 -7.74141215e-03 -5.03653347e-01\\n2.46722594e-01 -1.52597893e-02 1.61403954e-01 6.18723258e-02\\n-4.11908515e-02 6.14995658e-01 1.61009490e-01 -1.54791683e-01\\n-8.38213041e-02 7.44742947e-03 -2.00097844e-01 -5.44463545e-02\\n1.46256775e-01 -3.91793877e-01 -1.51044086e-01 4.78571475e-01\\n1.16849549e-01 -3.17656100e-01 -1.38495415e-01 2.61488706e-01\\n-2.01293789e-02 -2.65987962e-01 -2.15953991e-01 5.71088158e-02\\n2.97512233e-01 1.60917565e-01 3.70271653e-01 -4.22141343e-01\\n1.48862042e-02 4.91659604e-02 -1.52740777e-01 4.59558755e-01\\n3.32085118e-02 -1.00646392e-02 -2.21461520e-01 -8.65842104e-02\\n3.60315889e-01 -8.66901129e-02 3.67928483e-02 1.07094266e-01\\n-1.62132233e-02 -1.87189251e-01 -5.38501203e-01 5.40643185e-02\\n-3.55087519e-02 -2.22213075e-01 -1.66446492e-02 2.31658742e-01\\n1.52707584e-02 3.75772780e-03 -5.79141438e-01 -2.82765359e-01\\n-1.65417030e-01 7.92880580e-02 1.15879089e-01 -4.19070035e-01\\n-1.13906212e-01 -3.97933498e-02 -5.43984115e-01 2.10181311e-01\\n-6.32139966e-02 -2.52097193e-02 1.64730832e-01 7.40281269e-02\\n-1.58122644e-01 -2.38359757e-02 1.15754612e-01 2.27616131e-01\\n-1.98546410e-01 -1.89981088e-01 3.97958932e-03 -9.69584465e-01\\n7.49571174e-02 -5.12979068e-02 -2.74407089e-01 3.77369151e-02\\n1.05678476e-02 -6.32331550e-01 6.70341551e-02 -4.01552588e-01\\n-7.78725445e-02 -5.10341302e-03 -2.73104459e-01 -2.77397186e-01\\n5.93604259e-02 9.77364853e-02 -3.69456828e-01 3.73389304e-01\\n-2.99965501e-01 3.83564740e-01 -6.55236393e-02 8.77982825e-02\\n8.50875601e-02 -3.14839125e-01 1.07931159e-01 -3.36971015e-01\\n-3.05370301e-01 -1.69857129e-01 -4.21980828e-01 -2.52053857e-01\\n-3.55787426e-02 -1.91765055e-01 -8.08241516e-02 5.34649231e-02\\n2.66178697e-01 4.46977764e-02 2.62324773e-02 -2.94415295e-01\\n-1.94731727e-03 -4.60829198e-01 1.39008075e-01 -1.31950289e-01\\n-9.15825367e-02 -1.54787511e-01 1.04006410e-01 5.43554313e-02\\n1.82314485e-01 -3.46424013e-01 4.80115563e-01 -3.19533885e-01\\n-2.44878531e-01 -9.55470800e-02 8.56073759e-03 9.55415890e-02\\n2.69538105e-01 -3.72755468e-01 2.56780535e-02 2.82279313e-01\\n1.89144269e-01 1.64526016e-01 3.31392378e-01 -4.78386953e-02\\n-7.00033307e-02 1.08433641e-01 -3.79010141e-01 6.60397038e-02\\n7.49648869e-01 1.58139348e-01 1.25816986e-01 1.14973873e-01\\n6.65250719e-02 1.15810171e-01 5.54963112e-01 1.29024267e-01\\n-1.49597526e-01 2.38715529e-01 1.48169762e-02 -5.24714589e-01\\n-1.65051237e-01 -8.94706845e-02 -1.98826209e-01 -3.94835591e-01\\n6.80251420e-01 3.73314798e-01 -4.93509024e-01 -1.49980471e-01\\n-1.29828855e-01 -9.19738412e-02 7.96814784e-02 -1.76913321e-01\\n-1.93392299e-02 -4.90420163e-02 4.50672626e-01 -8.11112002e-02\\n2.46962354e-01 3.41357142e-01 -7.36927837e-02 -2.48386577e-01\\n-5.01758754e-02 2.33399808e-01 9.60875675e-02 3.45379740e-01\\n-1.58916712e-01 3.44303370e-01 3.47258970e-02 1.89217180e-01\\n-9.04791132e-02 5.18768579e-02 3.88155989e-02 1.05042011e-01\\n5.69801107e-02 3.80215123e-02 3.77773523e-01 4.59079593e-01\\n2.90616691e-01 4.31438059e-01 3.01439136e-01 4.86432910e-02\\n4.27714586e-01 4.63314265e-01 3.30575436e-01 1.76705062e-01\\n-7.51924813e-02 9.05373991e-02 2.66333111e-02 2.87195314e-02\\n4.16210324e-01 3.12305629e-01 1.05562702e-01 7.69239187e-01\\n2.18980998e-01 1.88183337e-01 6.16315246e-01 -5.62968791e-01\\n-3.85516107e-01 -8.84358212e-02 5.47951818e-01 -3.74285072e-01\\n2.72122137e-02 1.02708444e-01 -1.94500014e-01 1.39071584e-01\\n-5.39252520e-01 -2.29361415e-01 -1.54878385e-02 1.25321329e-01\\n-6.19567707e-02 -1.31734788e-01 -2.02776849e-01 5.79915754e-02\\n-6.53996691e-02 -9.16827321e-02 -3.84773493e-01 -1.12982392e-01\\n-2.63507336e-01 -1.24508485e-01 -1.06767878e-01 -1.03236005e-01\\n-2.13398971e-02 -3.14800441e-01 -9.55086872e-02 1.65221598e-02\\n3.30449432e-01 -1.56356573e-01 -1.24725811e-01 -4.95006405e-02\\n3.12073350e-01 1.38101891e-01 5.02904177e-01 6.18027970e-02\\n7.78317377e-02 -3.44437838e-01 -2.45629191e-01 1.18237786e-01\\n2.95107663e-01 9.48463082e-02 3.10304239e-02 3.80618721e-01\\n-2.21369207e-01 -1.61770299e-01 1.02590494e-01 2.90005982e-01\\n-5.21793008e-01 3.65752019e-02 -5.89083470e-02 2.20316574e-01\\n1.47336632e-01 1.66876733e-01 -1.72704577e-01 2.20828410e-02\\n-2.61339217e-01 -4.60745931e-01 1.87247515e-01 -7.49568790e-02\\n-1.58283606e-01 1.56375453e-01 2.99991578e-01 7.89559186e-02\\n-1.93863139e-01 -1.25433318e-02 2.76581501e-03 2.26015866e-01\\n9.03900936e-02 2.26390019e-01 -2.52003312e-01 -3.00219715e-01\\n-2.56502569e-01 1.70084387e-01 -1.65290222e-01 1.68460369e-01\\n-1.93015039e-02 2.79036134e-01 2.67824288e-02 5.35682514e-02\\n3.64560634e-01 4.41920618e-03 -1.21809565e-01 -3.01301807e-01\\n-2.14202970e-01 -4.11552042e-01 -7.04973564e-02 7.54717737e-02\\n1.45527303e-01 -4.11020845e-01 -9.77766421e-03 -1.98590174e-01\\n-1.80508822e-01 -3.55517030e-01 7.10508823e-02 -8.82288218e-02]]',\n", + " 'job_description': 'Ava is a digital health company with offices in Zurich, San Francisco, Belgrade and Makati that aims to advance women’s reproductive health by bringing together artificial intelligence and clinical research. Our wearable device, smart app and proprietary predictive algorithms empower women by giving them unique clinically researched insights and personalized data about their menstrual cycle, fertile window, and pregnancy delivered in a way that’s convenient and non-invasive. Ava was voted Best of Baby Tech at CES 2017, named a Women’s Health “Editors’ Choice” product and has been honoured as the best Swiss startup in 2017 and 2018. Our current key markets include USA, Germany, Switzerland and UK. Would you like to join us on our challenging adventure? Responsibilities: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements About you: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Would you like to contribute to a highly motivated team, with a lot of space for your own initiatives? If yes, please apply online or send your complete application to recruiting(at)avawomen.com. We appreciate that you share our excitement for Ava. Please be aware that only complete applications (CV and motivation letter) can be considered. Ava – Revolutionizing women’s health Moritz Ritter, System Architect and Data Engineering Manager Should you not hear back from us within 3 weeks your application has unfortunately not been successful for the respective role.',\n", + " 'soft_skills': '[\"Research\", \"Team Motivation\"]',\n", + " 'hard_skills': '[\"Non-Invasive Monitoring\", \"Storage Area Network (SAN)\", \"Automation\", \"Data Quality\", \"MySQL\", \"Tooling\", \"Computer Science\", \"Prediction\", \"Fertilizers\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Reproductive Health Care\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Smart Device\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Data Science\", \"Virtual Computing\", \"Personalization\", \"Artificial Intelligence\", \"Clinical Research\", \"Digital Health Technologies\", \"Big Data\", \"Scalability\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Algorithms\", \"Scripting\", \"Git Flow\", \"Wearables\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " 'languages': \"['English', 'Kannada']\"},\n", + " {'company_id': '118',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.swisscom.ch',\n", + " 'jobdescription_embedded': '[[-2.09733129e-01 3.50201875e-01 2.88068235e-01 6.78935274e-02\\n5.85411787e-01 -3.34826916e-01 7.13923946e-03 4.90224123e-01\\n-5.37332520e-02 -5.77073276e-01 4.92801815e-02 -1.75621271e-01\\n-6.04336783e-02 1.17440253e-01 1.24078527e-01 3.65275979e-01\\n3.57617319e-01 1.81526050e-01 -1.11316614e-01 4.74624604e-01\\n-9.60416496e-02 -2.01154336e-01 -1.92102343e-02 7.68339336e-01\\n2.58309960e-01 -9.15234685e-02 -9.40391868e-02 6.98386831e-03\\n-2.62272686e-01 -2.15332359e-01 3.59628618e-01 -1.20907584e-02\\n-1.53971046e-01 -4.45049405e-01 9.15785357e-02 7.83154964e-02\\n-1.84729755e-01 3.32165807e-02 -2.39157245e-01 2.95112371e-01\\n-4.85486954e-01 -2.81434059e-01 1.17457405e-01 -1.64664745e-01\\n-1.27416924e-01 -3.71524662e-01 9.61027853e-03 -7.69541562e-02\\n1.59417123e-01 9.86733288e-03 -3.95112276e-01 2.31028989e-01\\n-2.93052733e-01 -3.83175373e-01 3.56507212e-01 4.64982510e-01\\n-4.37522195e-02 -4.43860263e-01 -4.17410225e-01 -2.79752970e-01\\n-6.16220087e-02 -8.76398012e-02 3.14267864e-03 -4.18190628e-01\\n2.67136991e-01 9.14760157e-02 1.23812154e-01 4.06399250e-01\\n-7.93675125e-01 -8.47081095e-02 -2.90754050e-01 8.06644484e-02\\n-3.64949703e-01 -4.68147136e-02 -3.37662965e-01 -1.37157440e-01\\n-1.42118245e-01 3.90951693e-01 -9.65361819e-02 5.79897650e-02\\n-1.43458605e-01 3.29052240e-01 -1.65201515e-01 2.78372765e-01\\n2.73103982e-01 2.71395594e-01 2.86335707e-01 4.25483823e-01\\n-2.92050242e-01 3.47670853e-01 9.95604992e-02 -2.44791389e-01\\n2.31175303e-01 2.51144439e-01 3.67501259e-01 -1.13475077e-01\\n1.78721189e-01 1.65645301e-01 -3.44498336e-01 3.92289758e-01\\n2.48048648e-01 -2.99359828e-01 2.86904629e-02 -7.65194073e-02\\n1.09673686e-01 5.79488948e-02 8.40063393e-02 1.16601877e-01\\n-3.13945442e-01 4.07598913e-01 9.81566757e-02 -2.23008201e-01\\n-1.66955620e-01 -5.71952164e-01 -1.54507577e-01 2.07357690e-01\\n7.40975812e-02 9.11723077e-02 2.66826957e-01 6.38721362e-02\\n1.03398107e-01 7.41318017e-02 3.00442204e-02 7.53109157e-01\\n-7.41939098e-02 4.73546423e-02 -2.85934389e-01 1.76662207e-01\\n2.45324031e-01 -2.17951074e-01 9.97604430e-02 2.70273179e-01\\n7.03035370e-02 -1.04061954e-01 -1.99657992e-01 4.41908747e-01\\n1.31818607e-01 -1.37619525e-01 -3.79833966e-01 1.69582844e-01\\n-1.71148539e-01 -4.79624331e-01 6.34949028e-01 7.32105523e-02\\n2.10192919e-01 1.32025093e-01 1.40333980e-01 1.72232985e-02\\n-1.07934833e-01 2.48624563e-01 6.93569705e-02 2.01720417e-01\\n-3.59988093e-01 -2.49775648e-01 -2.56098896e-01 2.23630324e-01\\n-4.07202929e-01 1.84128582e-01 -1.41019881e-01 -2.60942616e-02\\n2.59395868e-01 7.07353652e-02 -2.53197342e-01 1.93167120e-01\\n-1.86606973e-01 -1.44176185e-01 -1.16766818e-01 3.63898218e-01\\n-1.28088787e-01 2.75762290e-01 2.15500481e-02 -8.67486820e-02\\n5.16543865e-01 1.79610431e-01 1.41989037e-01 -6.73883930e-02\\n4.12586719e-01 2.93078879e-03 3.45247872e-02 8.69146585e-02\\n-6.54803872e-01 3.08846265e-01 2.30199322e-02 -1.76064044e-01\\n9.06173363e-02 2.84861978e-02 2.75428116e-01 -3.07030648e-01\\n-6.84873313e-02 -1.67840406e-01 -4.33870882e-01 -1.84978768e-01\\n-1.88303277e-01 2.13570725e-02 3.03364366e-01 -4.17939633e-01\\n-1.29680693e-01 1.40753716e-01 -5.20996690e-01 -4.25483175e-02\\n2.21350506e-01 6.68150559e-02 2.10515670e-02 5.45245036e-02\\n-1.78296328e-01 -6.66213274e-01 -4.37225215e-02 -4.59491462e-01\\n-4.24898028e-01 -6.00650162e-03 -2.40374133e-01 5.70118465e-02\\n1.02026038e-01 1.09893166e-01 -1.15401015e-01 1.07113265e-01\\n-2.85441875e-01 2.34845132e-02 8.23006853e-02 4.83490005e-02\\n2.97900438e-01 -7.61079490e-02 -3.43663782e-01 4.16151673e-01\\n-1.17776059e-01 3.77871215e-01 1.48972422e-01 -8.42625141e-01\\n5.16027868e-01 3.37099284e-01 1.83288939e-02 -4.18144375e-01\\n5.36795259e-01 -4.23260480e-01 -7.44309276e-02 5.72879948e-02\\n-4.17293727e-01 -2.78795481e-01 2.78357416e-01 -2.41489887e-01\\n-3.37335020e-01 4.43093210e-01 -1.20257428e-02 1.77619010e-01\\n3.55840951e-01 -3.24155241e-01 -2.52468977e-02 8.95429626e-02\\n-5.73112369e-02 -1.61628351e-01 -4.35413182e-01 -1.55501470e-01\\n9.37055238e-03 -5.36843836e-01 -2.60523111e-01 -4.26872522e-01\\n-1.16137728e-01 -2.13132650e-01 -3.04312706e-01 2.69610852e-01\\n3.12862545e-01 1.19065896e-01 -6.32455293e-03 5.83908707e-02\\n1.11041553e-02 -7.23194182e-01 -4.56385650e-02 9.20776129e-02\\n3.00502300e-01 2.39201993e-01 3.21835317e-02 -7.59006590e-02\\n1.05058722e-01 5.58026075e-01 -3.86397511e-01 -3.03197473e-01\\n1.44408092e-01 1.75097644e-01 -1.19722977e-01 -3.64997312e-02\\n1.71838090e-01 3.58563185e-01 -3.63081545e-01 -4.58467454e-02\\n-3.55759859e-02 -3.90003598e-03 4.89477634e-01 -2.42922641e-03\\n-5.16530514e-01 -1.25377327e-01 -1.35609806e-02 1.61338717e-01\\n-5.38893104e-01 -1.07864864e-01 5.53689361e-01 1.64914310e-01\\n1.83275074e-01 1.28516510e-01 9.32909399e-02 -1.94271505e-02\\n-1.67393416e-01 -2.88171500e-01 2.22912997e-01 9.00755227e-02\\n1.13849781e-01 4.16994430e-02 -5.45025505e-02 -6.05401099e-01\\n-3.47597384e+00 -1.49729803e-01 2.86560893e-01 -3.12052161e-01\\n2.94720024e-01 -6.45450801e-02 1.69738099e-01 6.67153043e-04\\n-3.52069199e-01 3.68313007e-02 -5.56642860e-02 -8.93484205e-02\\n1.04869507e-01 2.75273532e-01 5.28077669e-02 1.36193186e-01\\n2.05654621e-01 -2.91813403e-01 -1.22958779e-01 3.93783599e-01\\n1.31174666e-03 -6.73751414e-01 2.29121093e-02 -2.27640811e-02\\n3.05876732e-01 2.14843363e-01 -4.03502852e-01 8.19453821e-02\\n-2.33080879e-01 -2.02052131e-01 7.26264939e-02 -2.47464374e-01\\n-2.13183597e-01 1.98068485e-01 1.33692607e-01 -7.11210519e-02\\n1.18159093e-01 -2.32169777e-01 -9.73357782e-02 -4.45277452e-01\\n2.13236541e-01 -5.52964389e-01 -1.66017506e-02 -6.53686076e-02\\n7.87102163e-01 -2.61789143e-01 2.48798624e-01 7.51640052e-02\\n1.41153052e-01 7.32612684e-02 6.71451911e-02 1.89165529e-02\\n-9.03080702e-02 -3.96048754e-01 2.59484872e-02 -1.80603653e-01\\n6.32229984e-01 4.39479172e-01 -1.11593828e-01 -3.86284031e-02\\n1.17747955e-01 -3.17439407e-01 -4.41524446e-01 -2.65410870e-01\\n-1.13699280e-01 -2.39809364e-01 -7.58288324e-01 -4.29965764e-01\\n-2.05913112e-01 -1.45373449e-01 -1.27300406e-02 7.44115353e-01\\n-3.04026902e-01 -4.91289645e-01 -2.10199486e-02 -5.94045341e-01\\n1.49889395e-01 -2.09626690e-01 3.03463005e-02 -3.13305467e-01\\n-3.24666858e-01 -4.99608576e-01 1.30414605e-01 4.16155979e-02\\n-1.15767978e-01 -2.03779295e-01 1.23041205e-01 -1.15461312e-01\\n-2.97305256e-01 -5.54764867e-01 4.21966910e-01 1.24424413e-01\\n2.03966111e-01 1.38088316e-01 3.77435058e-01 1.98974200e-02\\n2.30898291e-01 5.99412471e-02 -9.07661095e-02 -3.92720461e-01\\n1.05163038e-01 -5.00899255e-02 6.38651550e-01 -1.57368779e-01\\n-9.36251804e-02 2.20038667e-01 -2.04070881e-01 -2.19414383e-01\\n4.51119214e-01 -4.74378020e-02 3.31285074e-02 -1.45982623e-01\\n3.43076915e-01 -3.65142316e-01 -1.05779752e-01 2.38588646e-01\\n5.85412532e-02 5.70252359e-01 5.24227358e-02 -4.37423140e-01\\n-1.87552556e-01 5.35667777e-01 3.00602634e-02 1.50645956e-01\\n-5.05790673e-03 6.12864755e-02 -1.77505597e-01 3.62897009e-01\\n2.20594481e-02 -2.31019646e-01 -1.56014085e-01 -1.14957727e-01\\n-5.91869168e-02 2.76597410e-01 1.57855749e-01 1.66588679e-01\\n-1.00057483e-01 -3.44359428e-01 -2.14264780e-01 1.02949664e-01\\n1.93159729e-01 5.06351888e-01 1.90882325e-01 -2.84361750e-01\\n-6.08249977e-02 3.25970918e-01 -1.38587773e-01 1.86590910e-01\\n-2.01480180e-01 1.11607164e-01 -4.80380148e-01 -2.75604874e-01\\n-1.53358266e-01 -3.54806632e-01 1.30693749e-01 4.15582776e-01\\n1.21069409e-01 -2.70130429e-02 5.92843890e-02 -3.84923607e-01\\n2.70773113e-01 2.91711748e-01 1.49372414e-01 1.39139995e-01\\n-7.16936290e-02 5.81214488e-01 -7.07380250e-02 -2.30376199e-01\\n-1.48810223e-01 -3.80017124e-02 -1.22826882e-01 -1.46121949e-01\\n5.10482974e-02 -6.43774927e-01 -9.94052142e-02 2.57323295e-01\\n6.18054755e-02 -3.06365103e-01 -2.67674834e-01 1.59229383e-01\\n1.77639611e-02 -3.77076447e-01 -3.34516466e-01 -3.78809012e-02\\n2.93707460e-01 -2.88520847e-02 2.45742947e-01 -4.47569311e-01\\n-1.90982029e-01 7.90526196e-02 -9.04794335e-02 3.83514524e-01\\n2.54354123e-02 1.19620673e-02 -2.70830095e-01 -1.99543178e-01\\n4.29465532e-01 -1.17246658e-01 -1.51162401e-01 -1.05197109e-01\\n8.09307620e-02 -2.03112483e-01 -4.24832284e-01 2.00499967e-03\\n-2.17199102e-02 -1.87935174e-01 7.75986388e-02 3.00086699e-02\\n8.52997601e-02 1.54385328e-01 -5.65418005e-01 -3.55227053e-01\\n-3.38669479e-01 -8.29861388e-02 4.85059209e-02 -4.35877204e-01\\n1.67817194e-02 -5.10515198e-02 -7.11609006e-01 3.02218288e-01\\n-1.81963339e-01 -1.31590128e-01 1.64306313e-01 1.64643049e-01\\n-4.00275528e-01 -1.13469198e-01 3.15355584e-02 2.65506953e-01\\n-2.77096331e-01 -3.63718390e-01 -1.45139590e-01 -7.94639945e-01\\n2.34289095e-01 -1.68516003e-02 -1.50269017e-01 1.06999710e-01\\n-3.24029289e-02 -6.49260938e-01 -2.10911762e-02 -3.20515692e-01\\n-9.61500034e-02 -2.83424575e-02 -2.15000257e-01 -3.19333375e-01\\n-6.09119469e-03 -1.51173487e-01 -3.07184547e-01 4.45846289e-01\\n-4.36380774e-01 3.20442826e-01 -1.90006837e-01 9.41419303e-02\\n-6.10862672e-02 -3.36221814e-01 1.78663880e-01 -4.24825698e-01\\n-3.44401360e-01 -2.43853465e-01 -2.83287615e-01 -3.15359026e-01\\n-9.83284786e-02 -4.34923679e-01 -2.07578227e-01 1.75587848e-01\\n1.54214144e-01 1.25374243e-01 -1.19200408e-01 -2.79249847e-01\\n8.63375515e-02 -4.40135032e-01 1.60873290e-02 -1.86712340e-01\\n8.53889212e-02 -1.46243006e-01 2.19337791e-01 1.06983110e-01\\n1.77111447e-01 -4.16199505e-01 3.16545665e-01 -2.59784907e-01\\n-2.48951897e-01 -6.93521425e-02 3.49726491e-02 -5.83183914e-02\\n4.04145509e-01 -5.69702387e-01 6.87651411e-02 2.95567065e-01\\n1.33851260e-01 8.28302652e-02 1.91253111e-01 -6.85251877e-02\\n4.24214415e-02 2.48247147e-01 -2.64428914e-01 2.38366261e-01\\n8.27787578e-01 1.56743467e-01 2.53264576e-01 1.74091950e-01\\n1.95259035e-01 5.30809939e-01 5.01688123e-01 7.90407509e-03\\n1.40632532e-04 2.58396626e-01 1.65024400e-01 -4.75859791e-01\\n-5.45703471e-02 -1.30565651e-02 -2.18819797e-01 -2.34625101e-01\\n6.24248385e-01 5.12257040e-01 -3.84957433e-01 -2.13049635e-01\\n-1.32187426e-01 -2.40334556e-01 3.34150791e-01 -6.74437732e-02\\n-6.69228807e-02 -2.92856365e-01 4.85280365e-01 9.12204087e-02\\n3.21711719e-01 6.65572405e-01 -1.35729581e-01 -5.08175015e-01\\n3.90542224e-02 1.91677079e-01 2.52960771e-02 4.29537147e-01\\n-1.46298662e-01 2.28275359e-01 -5.14356792e-02 2.41076380e-01\\n-3.35171297e-02 1.76312730e-01 1.50908098e-01 1.45189732e-01\\n1.28399909e-01 2.38297433e-01 5.49156845e-01 6.02283001e-01\\n2.61668414e-01 4.95927304e-01 2.41988763e-01 1.93365037e-01\\n2.97800004e-01 4.35325265e-01 3.65192831e-01 6.86516538e-02\\n9.26744379e-03 -2.78533623e-02 2.46915147e-01 -1.55249774e-01\\n3.29123497e-01 3.61645490e-01 1.66161269e-01 8.48939538e-01\\n3.74386311e-01 2.27678984e-01 7.56364524e-01 -6.29738748e-01\\n-2.60170370e-01 -1.37730166e-02 5.30863285e-01 -3.72926921e-01\\n-6.49699122e-02 1.68663546e-01 -2.27849141e-01 3.05322677e-01\\n-5.55172980e-01 -1.38486028e-01 2.90209446e-02 1.36739418e-01\\n8.69201943e-02 -2.44194344e-01 -1.47973910e-01 7.69029856e-02\\n-1.46649584e-01 -6.16859123e-02 -4.15532053e-01 -1.59877002e-01\\n-2.40205899e-01 2.18104664e-02 -1.03425816e-01 -1.32008210e-01\\n7.09932968e-02 -4.69515711e-01 1.77200343e-02 6.00741245e-02\\n4.01752800e-01 3.73092778e-02 -1.54463118e-02 2.26209387e-02\\n2.70080715e-01 2.91789532e-01 4.73454773e-01 2.87191421e-02\\n1.01272598e-01 -1.40695065e-01 -2.27114305e-01 9.80223939e-02\\n5.47391176e-02 9.24571976e-02 3.04099880e-02 2.33188421e-01\\n-3.23465139e-01 -7.42656961e-02 6.64160028e-02 4.35703844e-01\\n-3.70051712e-01 -1.59648550e-03 -1.72781095e-01 3.03989530e-01\\n9.72080752e-02 1.84772670e-01 -3.01277339e-01 2.56701075e-02\\n-8.95198807e-02 -4.67865646e-01 2.73341209e-01 -1.88589722e-01\\n-1.37472272e-01 1.87441006e-01 2.21281424e-01 3.06792915e-01\\n-2.89388180e-01 -3.45223863e-03 4.56133150e-02 1.13425076e-01\\n-1.21977985e-01 4.39499795e-01 -2.77647991e-02 -2.32059836e-01\\n-3.94886345e-01 3.59288365e-01 -6.30251989e-02 -1.89148746e-02\\n-1.06028020e-01 2.93331325e-01 2.29137242e-02 1.12849504e-01\\n2.90398210e-01 -7.79334307e-02 -2.83385068e-01 -2.25020513e-01\\n-1.40623376e-01 -1.04559578e-01 6.83791889e-03 -8.53682011e-02\\n2.25720003e-01 -4.12703246e-01 -4.93930951e-02 -1.53500348e-01\\n4.42658216e-02 -2.30335638e-01 -3.24271880e-02 -8.10001343e-02]]',\n", + " 'job_description': 'Throughout the entire software lifecycle – from design to operations of the productive environments – you use state-of-the-art methods and tools. You play a key role in architecture and design discussions and inspire the team and the environment with the solutions you propose. You are committed to collaborative development and continuous delivery and contribute to continuously improving our DevOps capabilities. Leveraging your know-how in modern software architecture and cloud technology, you create innovative and fail-safe solutions for our customers. Thanks to your enthusiasm for new trends and technologies as well as your good communication skills, you help us keep our systems and data secure. Degree (Uni/UAS/technical college) in computer science, business informatics, or related disciplines Several years of experience in software development with Java, preferably in IAM Experienced in using DevOps automation tools for deployment, testing, and monitoring Knowledge of ForgeRock Identity and the Access Management Platform a plus Familiar with agile development methods and environments (Scrum, SAFe) Good German and English',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Collaboration\", \"Operations\", \"Enthusiasm\", \"Innovation\"]',\n", + " 'hard_skills': '[\"AWS Identity And Access Management (IAM)\", \"Automation\", \"Tooling\", \"Continuous Delivery\", \"Computer Science\", \"Data Security\", \"Vienna Development Methods\", \"Dialer Management Platform\", \"Scrum (Software Development)\", \"Business Informatics\", \"Software Architecture\", \"Sage SAFE X3\", \"Unmanned Aerial Systems (UAS)\", \"Software Development\", \"Software Modernization\", \"Java (Programming Language)\", \"Web Access Management\", \"Agile Product Development\", \"DevOps\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '77',\n", + " 'job_title': 'backend engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.nanos.ai',\n", + " 'jobdescription_embedded': '[[-9.93610993e-02 1.67789996e-01 4.53946531e-01 -4.33472060e-02\\n3.97099793e-01 -8.52692872e-02 -6.75937310e-02 4.87816244e-01\\n-2.92915013e-02 -4.29475784e-01 -4.19181585e-02 -2.24508286e-01\\n-1.58719450e-01 7.35269561e-02 6.80728406e-02 3.37462664e-01\\n2.93862671e-01 1.14449501e-01 -2.80677438e-01 4.04118955e-01\\n1.58727437e-01 -5.37589714e-02 1.67795599e-01 6.62032604e-01\\n3.95197421e-01 -8.29496980e-03 3.43314558e-02 5.85573614e-02\\n-2.33463258e-01 -2.32918441e-01 4.72242475e-01 1.03322580e-01\\n-8.68875533e-02 -3.84176552e-01 2.06842005e-01 1.89335048e-02\\n-2.15945989e-01 3.69436480e-03 -7.42332265e-02 1.17948353e-01\\n-5.74157476e-01 -3.09221327e-01 3.62171121e-02 1.07915699e-01\\n-3.34808350e-01 -3.53398681e-01 2.05551028e-01 -1.37847975e-01\\n1.53530762e-01 -8.17515701e-03 -5.20347357e-01 2.95845091e-01\\n-2.46081278e-01 -2.41051972e-01 3.11416626e-01 5.09739339e-01\\n-2.22356264e-02 -4.50727820e-01 -5.97427249e-01 -3.33517134e-01\\n1.43634647e-01 -1.19620651e-01 -1.27497166e-01 -3.92209053e-01\\n2.57025510e-01 4.68364023e-02 4.64968719e-02 3.28114271e-01\\n-7.61563778e-01 -7.61777386e-02 -1.62835613e-01 -6.68030083e-02\\n-3.27059209e-01 -1.38065577e-01 -1.83207244e-01 -6.96963593e-02\\n-4.74140309e-02 3.65187526e-01 1.03470743e-01 1.68163963e-02\\n-1.77551493e-01 2.92631447e-01 -1.46124169e-01 4.21709836e-01\\n1.84524983e-01 1.65821776e-01 1.81653857e-01 3.62514436e-01\\n-4.02314186e-01 4.46734488e-01 1.23997286e-01 -3.47076833e-01\\n2.75705218e-01 4.25050594e-02 5.10777116e-01 -4.22319248e-02\\n2.47302696e-01 9.91449505e-02 -3.00741196e-01 3.56822342e-01\\n3.86728644e-01 -2.75420010e-01 -3.19507793e-02 -2.07951948e-01\\n5.92964217e-02 -4.89717871e-02 7.00124651e-02 2.07829863e-01\\n-2.40344733e-01 4.18751538e-01 1.79867670e-01 -2.58241653e-01\\n-6.40562028e-02 -4.53900754e-01 -7.83777386e-02 1.26154125e-02\\n-3.00932024e-02 2.75136326e-02 1.36330724e-01 3.57848182e-02\\n2.58927643e-01 6.93315733e-03 1.20945476e-01 7.90590584e-01\\n-1.60239726e-01 1.37875648e-02 -2.76214004e-01 2.78311789e-01\\n5.85818365e-02 -2.99628019e-01 3.10229361e-01 2.31225163e-01\\n7.68230706e-02 -1.86602294e-01 -1.83852077e-01 2.41406307e-01\\n-3.03763933e-02 -2.41855353e-01 -3.09810102e-01 1.83313295e-01\\n-2.37987079e-02 -3.21837872e-01 5.82641959e-01 1.25421286e-01\\n1.63445517e-01 -3.25146131e-02 -8.17322433e-02 -1.56428277e-01\\n-1.68062270e-01 1.17449835e-01 -1.35939687e-01 2.27486789e-01\\n-2.95050532e-01 -2.54602969e-01 -2.30339304e-01 1.12504788e-01\\n-3.80494475e-01 1.77756503e-01 -1.31885380e-01 -9.95028913e-02\\n3.86159599e-01 4.66080010e-02 -2.94564277e-01 3.20560664e-01\\n1.29130334e-02 1.82437539e-01 -6.53957352e-02 3.10995996e-01\\n-1.70663327e-01 2.82760084e-01 -2.77612498e-03 -5.06778546e-02\\n6.72044396e-01 1.30839825e-01 1.19194672e-01 -7.98331723e-02\\n3.36308748e-01 -2.27463320e-02 6.77945167e-02 5.27473688e-02\\n-6.10567093e-01 2.09911019e-01 8.34482908e-02 2.49728262e-02\\n9.98687521e-02 -2.32785389e-01 1.33428439e-01 -3.28318834e-01\\n-1.33248735e-02 -1.32945970e-01 -4.93339956e-01 -3.23858976e-01\\n-2.95524955e-01 1.87272150e-02 4.87178683e-01 -4.37209547e-01\\n-8.87565464e-02 2.40891457e-01 -5.03076911e-01 -7.79272765e-02\\n2.31710881e-01 2.13704571e-01 1.30593598e-01 1.35977760e-01\\n-1.37220412e-01 -4.88527179e-01 9.51480716e-02 -4.17858899e-01\\n-1.73858568e-01 1.04147375e-01 -2.83767343e-01 2.72220433e-01\\n9.98983830e-02 -1.82821676e-02 -1.71559989e-01 1.29017696e-01\\n-2.57252276e-01 -8.56996477e-02 1.80805579e-01 -2.89463624e-03\\n3.02316546e-01 2.92098708e-02 -3.82030219e-01 3.90898168e-01\\n-1.66776031e-01 6.02536738e-01 9.25745815e-02 -9.14494336e-01\\n5.30719519e-01 3.66088927e-01 -5.37202433e-02 -4.26744968e-01\\n5.31409204e-01 -2.52824366e-01 6.69408515e-02 8.64332616e-02\\n-4.73934621e-01 -3.76606286e-01 2.13932663e-01 -1.72838017e-01\\n-2.70933896e-01 5.25604129e-01 -4.38920315e-03 3.70949954e-02\\n1.89967722e-01 -2.15081096e-01 -4.56902012e-02 9.50350538e-02\\n-6.82128817e-02 -2.00226575e-01 -5.01076698e-01 -7.01187775e-02\\n-1.00035466e-01 -4.49627489e-01 -3.65002677e-02 -3.06704432e-01\\n-2.36146808e-01 -3.22404265e-01 -1.26409680e-01 3.03303719e-01\\n2.55712569e-01 1.27298787e-01 -1.65854534e-03 1.08707532e-01\\n-2.43446410e-01 -6.08066797e-01 7.09840655e-02 1.20301448e-01\\n3.74828935e-01 2.12943196e-01 1.51690319e-01 7.70428702e-02\\n-1.01540208e-01 6.69360757e-01 -2.86712945e-01 -8.44555497e-02\\n1.47202089e-01 2.23723650e-01 7.55906850e-02 -1.79548591e-01\\n1.10325627e-01 3.52039754e-01 -2.86453068e-01 6.60493970e-02\\n-8.30903724e-02 -8.07230026e-02 3.72221291e-01 9.00535733e-02\\n-3.56203794e-01 -2.72459805e-01 -7.89736137e-02 1.87788531e-01\\n-5.07830918e-01 -1.43112600e-01 6.34681046e-01 1.70296341e-01\\n2.17873305e-01 9.47361588e-02 2.95363963e-01 -1.19377337e-01\\n-1.62438259e-01 -3.08462560e-01 3.27627569e-01 2.08017498e-01\\n8.72275010e-02 1.28923297e-01 -5.47885336e-02 -6.39599502e-01\\n-3.28828382e+00 -1.46801472e-01 2.00160772e-01 -2.74898946e-01\\n1.44616514e-01 -1.10349439e-01 1.59068145e-02 -1.40658304e-01\\n-2.03158945e-01 4.45600636e-02 -1.25753075e-01 -1.03959687e-01\\n1.72426045e-01 1.71444044e-01 1.23367466e-01 2.24291444e-01\\n2.54876196e-01 -1.79509789e-01 -3.11288796e-02 3.27679992e-01\\n-1.76567003e-01 -5.64411879e-01 2.87557006e-01 -9.01716277e-02\\n3.47678930e-01 3.41422915e-01 -3.38940531e-01 -2.00842753e-01\\n-1.69263959e-01 -9.48775262e-02 7.46974051e-02 -2.49065369e-01\\n-5.82792014e-02 2.78075069e-01 2.14028686e-01 -9.17554200e-02\\n1.47685111e-01 -4.26787287e-01 -1.04663379e-01 -4.21290278e-01\\n1.35233685e-01 -5.80724239e-01 5.16032353e-02 -2.00618535e-01\\n6.94020271e-01 -3.15359414e-01 9.43393353e-03 8.71808827e-02\\n1.95157081e-01 2.42143691e-01 7.92423189e-02 4.49310467e-02\\n-2.08649158e-01 -1.96706563e-01 -1.43625559e-02 -1.22779764e-01\\n4.76427197e-01 5.95577121e-01 -2.01984197e-01 -1.94135338e-01\\n-1.20051540e-02 -2.80892432e-01 -4.83817101e-01 -3.18551332e-01\\n-1.33718461e-01 -3.89633000e-01 -5.66331506e-01 -3.79042923e-01\\n-8.80559608e-02 -1.90143853e-01 -1.68654859e-01 6.33704901e-01\\n-2.84728944e-01 -3.50746334e-01 2.24245917e-02 -4.43110406e-01\\n1.24902338e-01 -9.76853222e-02 2.21271589e-02 -2.36163735e-01\\n-7.97046348e-02 -5.84255934e-01 -2.53726058e-02 -7.04826415e-02\\n-1.69805095e-01 -3.95438313e-01 4.82539013e-02 -8.12280849e-02\\n-2.24114001e-01 -5.71472645e-01 4.34624434e-01 1.76221013e-01\\n3.93158466e-01 -3.40591930e-02 3.51325750e-01 -1.39260471e-01\\n3.03481877e-01 -1.38209552e-01 -2.51237806e-02 -3.69425952e-01\\n1.70535222e-01 6.76486418e-02 4.44016516e-01 -1.89696670e-01\\n3.59313078e-02 1.25170469e-01 -3.02818030e-01 -1.23331919e-01\\n3.02495539e-01 1.14759356e-01 1.51264101e-01 -2.69826889e-01\\n3.49503815e-01 -2.59722263e-01 -2.67762244e-01 1.22446544e-01\\n1.29940450e-01 4.95402753e-01 -3.68406586e-02 -4.27085042e-01\\n-1.45981163e-01 4.91905838e-01 -1.73765361e-01 -2.06378564e-01\\n-2.72872686e-01 1.22658104e-01 -2.17794791e-01 1.18387848e-01\\n4.69069816e-02 -1.43414110e-01 -2.76620716e-01 -1.51994258e-01\\n-2.02153653e-01 3.19839180e-01 2.47814059e-01 8.56968760e-02\\n-4.24604192e-02 -4.43561226e-01 -2.39462405e-02 2.54370600e-01\\n8.47622305e-02 3.86034846e-01 1.46849066e-01 -1.79819271e-01\\n-9.09223557e-02 4.14612740e-01 -7.16713741e-02 5.65404817e-02\\n-2.01421648e-01 -2.45091654e-02 -5.12343884e-01 -2.54233301e-01\\n-2.67604679e-01 -3.08503628e-01 7.01154917e-02 3.44767839e-01\\n1.67837441e-01 -8.18632916e-02 4.01608050e-02 -4.82600212e-01\\n3.82953286e-01 7.73230493e-02 2.21294224e-01 1.87643766e-01\\n1.43851951e-01 5.80110550e-01 4.31292243e-02 -1.04034625e-01\\n-1.07805520e-01 6.08604178e-02 -2.51589656e-01 -8.61296728e-02\\n3.14704329e-02 -4.11448956e-01 -9.63072777e-02 3.16217124e-01\\n8.78617540e-02 -2.28364393e-01 -2.24662006e-01 1.82632089e-01\\n4.13233787e-02 -1.95096701e-01 -2.26152301e-01 4.35877815e-02\\n2.90571660e-01 -6.31550252e-02 3.21785897e-01 -3.70037347e-01\\n-1.05793104e-01 2.88109854e-02 -1.40410870e-01 5.37156701e-01\\n1.45299375e-01 -1.50084626e-02 -2.07966313e-01 -1.54579833e-01\\n3.81847590e-01 -1.90109789e-01 -1.26229703e-01 -3.24403867e-02\\n9.71914381e-02 -1.62216991e-01 -5.62439084e-01 2.04670995e-01\\n-2.26722881e-02 -9.22845751e-02 -3.04775909e-02 3.92030068e-02\\n4.41796146e-02 1.66674465e-01 -5.45425177e-01 -2.41216898e-01\\n-2.62619853e-01 -5.11997491e-02 -7.09929615e-02 -5.20227015e-01\\n2.30319966e-02 -7.31063336e-02 -5.19117713e-01 1.89804673e-01\\n-2.76289642e-01 -2.36336067e-02 1.59806728e-01 1.23812668e-02\\n-3.71587217e-01 -7.02594966e-02 6.96415231e-02 2.57402003e-01\\n-3.93426001e-01 -2.82079995e-01 6.16872907e-02 -1.01133490e+00\\n2.46242970e-01 3.28487940e-02 -1.84355170e-01 1.32151559e-01\\n-7.72657841e-02 -7.54749060e-01 1.16941273e-01 -2.45404780e-01\\n-1.90269127e-01 1.26908123e-02 -1.92829281e-01 -4.24370259e-01\\n2.51797959e-04 -1.06082968e-02 -2.78553963e-01 2.79644907e-01\\n-4.00225043e-01 4.13082480e-01 -1.26112312e-01 1.79848120e-01\\n-4.22977097e-02 -2.52883375e-01 8.00915137e-02 -3.74139488e-01\\n-4.96198416e-01 -1.75489813e-01 -3.20817947e-01 -1.99880153e-01\\n8.30135643e-02 -3.52957964e-01 -8.41379464e-02 5.65927997e-02\\n3.96766961e-01 4.96545583e-02 -1.82666898e-01 -2.67882705e-01\\n5.36458604e-02 -5.08981586e-01 -3.88099961e-02 1.10900715e-01\\n-1.28652211e-02 -1.20556548e-01 2.59435833e-01 7.22169280e-02\\n7.96886608e-02 -5.08349657e-01 4.57321346e-01 -4.08288926e-01\\n-2.65217304e-01 -7.93791413e-02 -2.17683706e-02 -9.67163499e-03\\n2.35950992e-01 -5.16537309e-01 1.09831274e-01 3.80640417e-01\\n9.90145802e-02 2.02300251e-02 3.19205761e-01 -8.11272860e-03\\n-6.95799291e-02 2.23343998e-01 -3.13239098e-01 6.20982908e-02\\n8.15948963e-01 -6.40997812e-02 7.42106289e-02 2.13306651e-01\\n5.85321710e-02 2.53138691e-01 5.73716760e-01 4.57107276e-02\\n-1.50479317e-01 2.90243328e-01 7.76106864e-02 -5.71407318e-01\\n3.97871584e-02 -2.65571773e-02 -3.24665904e-01 -3.09560865e-01\\n6.66166425e-01 4.27953929e-01 -4.06144977e-01 -2.80682087e-01\\n-1.77397411e-02 -2.31618419e-01 7.37597495e-02 -1.16672695e-01\\n8.66719484e-02 -6.46298528e-02 4.65079099e-01 -7.25083426e-02\\n2.06392005e-01 5.35153687e-01 -2.22982496e-01 -3.86543244e-01\\n-1.38666332e-01 2.13527262e-01 7.44567066e-02 4.73716140e-01\\n-1.74348354e-01 3.21345448e-01 -2.79660113e-02 5.78216910e-02\\n-1.51948094e-01 1.73177093e-01 3.65324989e-02 1.17573053e-01\\n1.54443994e-01 2.39516459e-02 4.20435131e-01 4.18534696e-01\\n4.38679755e-01 4.58841354e-01 3.26630473e-01 8.17675702e-03\\n7.27507591e-01 5.97143471e-01 4.36305583e-01 1.70520097e-01\\n-6.62052482e-02 1.26602612e-02 4.36070077e-02 3.71709391e-02\\n4.28101629e-01 3.44461352e-01 1.62424892e-01 8.56793284e-01\\n4.35278982e-01 2.20243618e-01 6.81294501e-01 -6.41433954e-01\\n-3.52632433e-01 -5.67904767e-03 3.74184370e-01 -3.02653104e-01\\n-1.48134530e-02 1.36322156e-01 -6.16818741e-02 2.14248031e-01\\n-3.51553023e-01 -2.02767223e-01 -1.54429376e-02 2.68943131e-01\\n-1.47019178e-02 -7.89708495e-02 -1.84003487e-01 7.79078752e-02\\n-2.06681237e-01 -1.60926014e-01 -4.11987007e-01 -7.43745118e-02\\n-2.06466690e-01 -1.52855679e-01 -1.58408478e-01 -2.21374601e-01\\n-1.77253157e-01 -3.33148122e-01 -1.01506785e-01 -1.60256699e-02\\n3.16570699e-01 -2.25720257e-01 -4.21670265e-02 -2.23581091e-01\\n2.93309689e-01 1.87360689e-01 4.62730646e-01 5.91990873e-02\\n1.67365253e-01 -3.03859144e-01 -2.60319263e-01 1.86627552e-01\\n1.93616286e-01 1.45036250e-01 2.53738575e-02 2.69729257e-01\\n-3.62243056e-01 -1.50744110e-01 2.65604079e-01 3.76549006e-01\\n-3.95782948e-01 2.39452291e-02 -1.50481716e-01 2.40539551e-01\\n3.58745605e-02 1.04924597e-01 -2.00678661e-01 -1.76874408e-03\\n-1.73636839e-01 -5.14753163e-01 3.49185944e-01 -1.18349016e-01\\n-2.31975894e-02 5.70320860e-02 3.05385411e-01 6.33793175e-02\\n-2.41767704e-01 1.94561034e-02 -6.75720908e-03 1.93816975e-01\\n2.05875218e-01 2.51239151e-01 -2.90455550e-01 -2.00694889e-01\\n-1.99528456e-01 1.10300615e-01 -2.38858029e-01 6.66600317e-02\\n1.41682737e-02 3.72138739e-01 1.41189769e-01 -2.97317803e-02\\n4.86623615e-01 -3.18099856e-02 -1.00332372e-01 -2.15976655e-01\\n-3.13839972e-01 -3.20134878e-01 -1.04718879e-01 -1.41013771e-01\\n2.13397115e-01 -3.93651515e-01 -1.20920800e-02 -8.08006078e-02\\n-1.93688393e-01 -2.40513042e-01 7.95801431e-02 -9.03673321e-02]]',\n", + " 'job_description': 'Who are we? Nanos is an online platform that makes placing paid advertisements a straightforward process accessible to any small & micro business around the world. We are a privately owned Swiss startup based in Zurich - a dynamic fast-growing team of software engineers, UX designers, business experts and machine learning engineers. Who are we looking for? As part of our growth we are building a fully distributed engineering team, for which we are looking for a Backend Engineer with a minimum of 3 years professional experience. From a cultural point of view, we expect you to bring in a plus with you as we are an inclusive company that thrives from the diversity its employees bring in. As a Backend Engineer, we expect you to be a problem solver before being a code writer. What will you do if you join us? As a backend engineer and being a part of our distributed development team you will be working on different parts of the Nanos platform (Frontend, Backend, Mobile app, Server infrastructure.., etc), where you will be expected to: - Architect and maintain distributed systems, focusing on reliability, security, and scalability - Design and develop highly scalable APIs and services that are used by web and mobile clients Requirements What skills do we expect you to have? With the exponentially growing number of frameworks and languages in software engineering we do not expect you to be an expert in all technologies used at Nanos but we do expect you to be a fast learner and an engineer with a critical and open mindset. Being a part of a rapidly moving industry, we are looking for engineers, who are not afraid to build fast, fail fast and learn from their mistakes. If you decide to join us you might be working on projects with technologies and languages such as: Node.js, MongoDB, Python, PostgreSQL CI/CD: Git, GitHub, Docker, Kubernetes, Jenkins, GitOps Our working language is English and we expect all candidates to be fluent in English. Benefits What are we to offer you? We would be more than happy to hear from you and look forward to have you joining our team where you should expect following benefits and culture: A competitive salary Generous stock option plan 25 vacation days per year Flexible working hours Free choice of hardware Regular experimental time to work on your own ideas Office within 5 min walking distance from Zurich HB Office shut down between Christmas and New Year (to be compensated by working a couple of extra minutes per day over the year, i.e. 15 min in 2018) A very multicultural team Regular team events and parties One ski retreat per year A fully-equipped kitchen and a dining area Big open terrace and a bbq space Free coffee/fruits and soft drinks ',\n", + " 'soft_skills': '[\"Infrastructure\", \"Planning\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Advertisement\", \"Kubernetes\", \"Accessioning\", \"Jenkins\", \"Machine Learning\", \"Industrialization\", \"Mobile App\", \"PostgreSQL\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"E (Programming Language)\", \"Experimentation\", \"Software Engineering\", \"Mobility\", \"Github\", \"Docker (Software)\", \"Scalability\", \"Distributed Development\", \"Incentive Stock Option\", \"Git Flow\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Sanskrit', 'Bashkir']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data sw engineer',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.01101953e-01 2.05468118e-01 3.38937968e-01 6.27648458e-02\\n5.27831316e-01 -2.44242936e-01 -4.42347862e-02 4.94137406e-01\\n-1.58931017e-01 -2.22726703e-01 -1.85679972e-01 -2.29153544e-01\\n-2.35485375e-01 8.83499682e-02 2.02865213e-01 1.99808836e-01\\n3.66957873e-01 1.75539657e-01 -3.10731858e-01 3.03253353e-01\\n9.57712680e-02 -7.33449981e-02 -6.93250299e-02 5.87042093e-01\\n2.11038351e-01 -7.33086094e-02 -1.07081152e-01 6.65421039e-02\\n-2.83298492e-01 -2.24916577e-01 3.65526676e-01 1.04469042e-02\\n-5.85217811e-02 -1.62259921e-01 2.23333761e-01 7.93899670e-02\\n-1.67514771e-01 3.64139751e-02 -1.34390101e-01 1.68983176e-01\\n-3.56289893e-01 -2.34871879e-01 1.32322222e-01 9.38800052e-02\\n-2.80128151e-01 -1.69230387e-01 2.06812218e-01 8.60328786e-03\\n2.13166345e-02 2.70253513e-03 -5.94597042e-01 3.96542996e-01\\n-2.27956325e-01 -2.61778653e-01 3.70452523e-01 5.02379537e-01\\n-4.11657803e-02 -5.48599482e-01 -2.87942350e-01 -2.96847492e-01\\n-1.16176798e-03 -2.22184062e-01 1.61893293e-02 -2.17313752e-01\\n4.47410703e-01 -8.13635886e-02 -2.92907208e-02 3.80839199e-01\\n-8.64019513e-01 -1.77900910e-01 -2.26260126e-01 -4.85640392e-02\\n-3.99245679e-01 -9.10999253e-03 -3.19830894e-01 -1.09274149e-01\\n8.41057580e-03 3.01758528e-01 -2.85557099e-02 1.24274015e-01\\n-1.25534520e-01 3.40029597e-01 -1.31320447e-01 2.30538473e-01\\n2.80047119e-01 2.49191612e-01 9.16843861e-02 3.29105258e-01\\n-4.03916955e-01 4.81374830e-01 2.14370355e-01 -2.16466814e-01\\n2.23379508e-01 1.66391090e-01 3.96670938e-01 9.13620964e-02\\n5.05224280e-02 1.06491007e-01 -1.27593681e-01 1.17748506e-01\\n1.75165161e-01 -3.30599159e-01 -9.24481358e-03 -1.84518173e-02\\n-1.82441071e-01 1.37799248e-01 -4.29142788e-02 3.27759355e-01\\n-2.82197207e-01 3.42970043e-01 2.17104077e-01 -1.55072898e-01\\n-8.35699290e-02 -5.02163053e-01 -7.30586872e-02 8.45400430e-03\\n-4.61958162e-02 1.90622374e-01 3.84816527e-01 1.69828430e-01\\n2.46956319e-01 5.33519201e-02 1.24672972e-01 9.46399093e-01\\n-8.28568712e-02 1.08757518e-01 -1.91055864e-01 3.06229293e-01\\n2.48259783e-01 -1.42553911e-01 8.25339649e-03 4.03297603e-01\\n2.08169997e-01 -3.86135615e-02 -2.31562227e-01 3.82868707e-01\\n-1.95302576e-01 9.16899554e-03 -3.32402378e-01 4.92216498e-02\\n-2.45508999e-01 -6.26972675e-01 5.42866051e-01 8.35473463e-02\\n2.41304502e-01 4.55136299e-02 3.09707429e-02 -1.53375283e-01\\n-9.55718607e-02 4.09621656e-01 -5.23311831e-03 3.42104316e-01\\n-2.85475999e-01 -2.14302391e-01 -1.22620888e-01 4.12547231e-01\\n-1.17644615e-01 3.42605561e-02 -1.79696724e-01 -2.00457796e-01\\n3.52467537e-01 1.08342670e-01 -3.68690789e-01 1.93266973e-01\\n-1.40618026e-01 -1.42957017e-01 -1.09497547e-01 3.14066440e-01\\n-1.68675289e-01 2.36806899e-01 -4.43535894e-02 -1.47419780e-01\\n4.98357624e-01 1.01879969e-01 1.04123749e-01 -5.36108501e-02\\n3.03531080e-01 -9.47742462e-02 2.98180968e-01 9.13879871e-02\\n-6.96229339e-01 3.54917586e-01 3.47370207e-02 -1.28086314e-01\\n-1.57752261e-02 1.57817736e-01 3.84815276e-01 -3.90204042e-01\\n-1.20488219e-01 -2.90392995e-01 -4.20715153e-01 -2.81075507e-01\\n-4.44815248e-01 3.89676802e-02 3.44864935e-01 -4.27793264e-01\\n-3.74122034e-03 1.78709939e-01 -4.16195780e-01 3.59884201e-04\\n2.03709409e-01 1.80468023e-01 -4.15053703e-02 2.28170939e-02\\n-1.42573342e-01 -6.94083214e-01 1.42792948e-02 -4.79546934e-01\\n-5.01015782e-01 1.35879472e-01 -3.51854682e-01 1.36104584e-01\\n7.57353567e-03 1.01088457e-01 -4.42259833e-02 9.98786837e-02\\n-3.24994922e-01 -3.06313462e-03 2.09171444e-01 1.15747169e-01\\n3.13567072e-01 -6.70982450e-02 -4.61780250e-01 6.42696977e-01\\n-2.67642766e-01 5.26777267e-01 2.51041383e-01 -8.25207233e-01\\n5.82702935e-01 1.20460384e-01 1.00540847e-01 -3.22622836e-01\\n4.81071264e-01 -3.36502284e-01 -7.06387237e-02 2.11421788e-01\\n-2.75068194e-01 -1.48258418e-01 2.70925075e-01 -2.61967242e-01\\n-3.72318655e-01 5.42962670e-01 1.03863493e-01 6.85962215e-02\\n3.50966424e-01 -3.27421755e-01 -4.81002256e-02 2.64064930e-02\\n-1.97089121e-01 -1.80465713e-01 -2.65693337e-01 9.07230526e-02\\n-8.72700438e-02 -5.63232899e-01 -2.08431602e-01 -4.15834278e-01\\n-1.93350479e-01 -3.43577325e-01 -2.96570837e-01 4.22725111e-01\\n2.14663614e-02 2.11691886e-01 6.53447807e-02 -7.67039508e-02\\n-1.36821643e-01 -6.85748875e-01 -3.82958874e-02 4.16736528e-02\\n3.97857517e-01 1.78448007e-01 9.84479189e-02 -1.24142036e-01\\n9.42003354e-02 4.43085819e-01 -3.02035928e-01 -3.93219262e-01\\n7.01723322e-02 2.47988611e-01 -1.05666339e-01 -7.22176880e-02\\n8.17293897e-02 3.93916309e-01 -1.81146532e-01 7.86973536e-02\\n-1.15590632e-01 -1.09692782e-01 2.94791907e-01 -5.73444851e-02\\n-2.69350320e-01 -3.02367240e-01 -1.28933741e-02 2.35635653e-01\\n-5.26639163e-01 -2.00345889e-01 4.47629154e-01 2.78221697e-01\\n2.09839001e-01 2.77162403e-01 2.57791489e-01 -1.37005329e-01\\n-1.49560839e-01 -2.18382955e-01 1.00144103e-01 8.02823305e-02\\n6.07070662e-02 1.15605257e-01 -1.08793989e-01 -5.30451179e-01\\n-3.39208603e+00 -5.63151315e-02 2.52593994e-01 -3.18908006e-01\\n2.17180908e-01 -3.96097265e-02 -3.48894000e-02 -8.05229135e-03\\n-3.34934950e-01 2.52406541e-02 -1.33705780e-01 -1.70382172e-01\\n4.73639145e-02 3.44657719e-01 1.58479080e-01 1.78433403e-01\\n1.10718593e-01 -2.78479576e-01 -2.79764161e-02 2.71381021e-01\\n-1.50305688e-01 -6.21330321e-01 9.97146964e-02 -1.41468078e-01\\n1.58538356e-01 2.70813227e-01 -3.80205452e-01 -1.78321853e-01\\n-1.46755233e-01 -1.23283803e-01 -6.81680907e-03 -2.01021194e-01\\n-1.40996844e-01 3.03455979e-01 8.51234123e-02 -7.39043877e-02\\n-2.25619227e-03 -1.88769802e-01 5.89157343e-02 -3.97744507e-01\\n1.28502116e-01 -6.27700984e-01 -1.17061824e-01 2.55809110e-02\\n8.00558209e-01 -3.38051409e-01 2.50999868e-01 4.48361747e-02\\n1.24136552e-01 1.44558430e-01 -9.47530009e-03 -2.89928056e-02\\n-4.10954207e-01 -2.59968370e-01 8.07316601e-03 -2.05413237e-01\\n5.00134587e-01 5.56650519e-01 -2.70375103e-01 1.18852615e-01\\n4.39306758e-02 -3.88473392e-01 -2.67922729e-01 -4.63823408e-01\\n-2.44448036e-01 -1.60499856e-01 -6.05833292e-01 -4.68020409e-01\\n6.56542331e-02 -4.00498360e-02 -4.27641906e-02 5.28888762e-01\\n-2.47434586e-01 -5.23392141e-01 -4.97311261e-03 -6.35559916e-01\\n1.53691709e-01 -1.68543160e-01 8.75283703e-02 -2.12559879e-01\\n-2.23422244e-01 -4.90395814e-01 9.68449935e-02 -1.00319140e-01\\n-2.05070257e-01 -2.16643646e-01 9.30998996e-02 -3.30167264e-01\\n-2.66174406e-01 -4.45008546e-01 3.52712095e-01 6.88946545e-02\\n3.21807653e-01 1.06319748e-01 3.73929888e-01 1.71221986e-01\\n2.82949686e-01 -1.04071811e-01 1.69954538e-01 -4.78197068e-01\\n6.06009029e-02 5.11393603e-03 5.07411778e-01 -3.06614310e-01\\n1.09827109e-01 1.89834788e-01 -1.62681907e-01 -1.19189776e-01\\n3.21089804e-01 -7.71349948e-03 5.50119169e-02 -1.75196022e-01\\n4.34161544e-01 -5.69048405e-01 -2.94435322e-01 1.80286989e-01\\n1.89764611e-02 7.08990693e-01 6.18260838e-02 -3.30991447e-01\\n-3.09282333e-01 6.04820669e-01 -1.03759550e-01 -3.29420827e-02\\n-1.16342530e-01 1.41456410e-01 -1.32823661e-01 2.07058951e-01\\n1.77259937e-01 -2.62008011e-01 -2.92187750e-01 -2.98776738e-02\\n1.99932940e-02 7.04660714e-02 2.43663341e-01 3.54229542e-03\\n-1.35227546e-01 -2.29722336e-01 1.30359055e-02 1.57592326e-01\\n2.05773816e-01 3.08589101e-01 1.35966957e-01 -1.88283771e-01\\n-3.57005559e-02 2.44446576e-01 -1.05021141e-01 3.19479436e-01\\n-6.81861714e-02 -4.34864452e-03 -5.69531798e-01 -2.56540865e-01\\n-2.61088520e-01 -3.32109034e-01 8.42036009e-02 2.82533526e-01\\n9.93325338e-02 2.56332140e-02 8.83383676e-02 -5.29455006e-01\\n4.47646558e-01 5.59237897e-02 1.56982929e-01 1.13786317e-01\\n-1.26906931e-01 5.15711963e-01 -5.80736399e-02 1.91197582e-02\\n-1.66845039e-01 1.24922171e-01 -3.01848084e-01 -3.47423434e-01\\n5.26845492e-02 -3.90955597e-01 -1.03276826e-01 3.87472838e-01\\n1.64225511e-02 -2.41657481e-01 -2.56173581e-01 1.98452711e-01\\n8.62858668e-02 -3.07554901e-01 -3.16199660e-01 -1.14465252e-01\\n2.78394282e-01 1.86716795e-01 2.94284970e-01 -4.95745897e-01\\n-3.76344472e-02 7.16181323e-02 -2.48826109e-02 4.97234225e-01\\n-6.80453777e-02 1.42859459e-01 -1.43272460e-01 -2.50733644e-01\\n4.04684305e-01 -1.28766662e-02 -2.51279958e-02 -1.61555469e-01\\n1.36498541e-01 -1.81473628e-01 -4.97260153e-01 -2.65101437e-02\\n4.50159833e-02 -1.24487810e-01 1.27765059e-01 2.60357410e-02\\n1.79643169e-01 4.15647626e-02 -4.19829279e-01 -2.95686811e-01\\n-3.94085139e-01 -1.30887121e-01 6.55944124e-02 -2.89105147e-01\\n2.47811098e-02 9.60506382e-04 -4.56053048e-01 1.89061150e-01\\n-3.44224572e-01 6.65163100e-02 1.06628314e-01 6.41208291e-02\\n-4.23861504e-01 -8.08182135e-02 2.15648010e-01 8.36255550e-02\\n-2.76723564e-01 -2.14604691e-01 -4.69051152e-02 -9.38539684e-01\\n1.97718084e-01 3.38651128e-02 -2.05476098e-02 2.03586137e-03\\n3.03438609e-03 -6.55751348e-01 6.85764775e-02 -4.34416175e-01\\n2.61995364e-02 9.69585869e-03 -1.64045036e-01 -3.18273038e-01\\n1.88789919e-01 -1.61052451e-01 -3.55716944e-01 4.60080624e-01\\n-5.48370063e-01 1.45905852e-01 2.66430639e-02 9.05736070e-03\\n8.50666538e-02 -2.50437349e-01 1.77480757e-01 -4.29296404e-01\\n-3.08534056e-01 -1.54185236e-01 -2.75501490e-01 -2.61542082e-01\\n4.25716490e-03 -2.87788689e-01 -1.50277898e-01 7.79411346e-02\\n3.72407258e-01 3.95688191e-02 -1.35988906e-01 -3.02409798e-01\\n-3.50133656e-03 -3.35615605e-01 2.17419550e-01 -3.31272304e-01\\n2.81495992e-02 -2.91138496e-02 2.49101117e-01 6.69286549e-02\\n1.23135261e-01 -3.85709554e-01 4.59179580e-01 -1.51689067e-01\\n-4.46419388e-01 -5.38214110e-02 1.35429770e-01 5.52593842e-02\\n2.57866412e-01 -6.05759144e-01 1.14931889e-01 3.00878286e-01\\n1.35573730e-01 -9.27001331e-03 3.37561637e-01 8.25927630e-02\\n-2.15809699e-02 1.61514759e-01 -3.80178303e-01 -2.29498781e-02\\n6.60057366e-01 2.65543014e-01 1.58701733e-01 1.37158856e-01\\n1.72695071e-01 3.88955176e-01 4.09141243e-01 2.86676753e-02\\n-7.16962889e-02 2.10967466e-01 6.96680769e-02 -5.88416159e-01\\n-3.56307477e-02 -1.33309275e-01 -2.09017277e-01 -2.27373600e-01\\n5.89847445e-01 3.21393013e-01 -3.46056610e-01 -3.13028961e-01\\n3.46080586e-02 -1.50365934e-01 3.27742636e-01 -3.15129980e-02\\n4.48317714e-02 -2.82147735e-01 4.66292948e-01 1.04251720e-01\\n3.41210067e-01 5.86767793e-01 -2.40182266e-01 -3.76839578e-01\\n-7.62794018e-02 2.15023160e-01 1.23140857e-01 3.93933356e-01\\n-1.77429840e-01 2.86297172e-01 -4.92895618e-02 3.94732915e-02\\n-1.51000962e-01 1.74328953e-01 1.59239292e-01 8.87001008e-02\\n2.61936009e-01 1.03396080e-01 2.83596098e-01 5.33213317e-01\\n1.50322810e-01 6.07154071e-01 3.44479978e-01 9.83228236e-02\\n3.34318846e-01 5.55958450e-01 4.30937439e-01 1.65368557e-01\\n4.48586904e-02 1.80928141e-01 3.17191370e-02 -4.69754599e-02\\n3.92230421e-01 2.93758422e-01 1.41964242e-01 8.66955042e-01\\n4.96722788e-01 2.04849377e-01 8.54869545e-01 -5.62597096e-01\\n-3.33546072e-01 -4.36255895e-02 4.70584303e-01 -3.22842687e-01\\n-1.57439783e-01 9.43984538e-02 -2.34402195e-01 3.50408584e-01\\n-4.05797720e-01 -1.33026578e-02 -2.25762222e-02 -9.13154893e-03\\n1.15386425e-02 1.54169491e-02 -2.48635471e-01 -7.11982548e-02\\n-2.53270119e-01 -1.65285215e-01 -2.79015481e-01 -2.60136187e-01\\n-3.13320428e-01 -6.13441207e-02 -1.85072049e-01 2.14449521e-02\\n-1.63897336e-01 -3.61653239e-01 -1.17479809e-01 5.21581881e-02\\n2.82231897e-01 -2.37760872e-01 -7.92240575e-02 -2.46802539e-01\\n1.76398724e-01 1.53994024e-01 5.13328612e-01 -1.57607589e-02\\n1.51374280e-01 -1.45597979e-01 -2.37930238e-01 8.08967091e-03\\n3.98317389e-02 9.11872685e-02 1.19882539e-01 4.81764764e-01\\n-4.30050731e-01 -4.64595594e-02 4.54946160e-02 3.27450961e-01\\n-4.45557058e-01 -2.52781212e-01 1.71306115e-02 3.24606508e-01\\n6.28484488e-02 6.93295375e-02 -3.11871618e-01 2.50572395e-02\\n-2.49034271e-01 -5.61248779e-01 4.54631239e-01 -2.58694082e-01\\n1.16471695e-02 2.15337083e-01 3.09639663e-01 2.00530648e-01\\n-4.11093011e-02 -5.68200536e-02 -7.14775398e-02 2.43405938e-01\\n-8.57694596e-02 3.74721408e-01 -1.87467322e-01 -1.44767627e-01\\n-3.32160890e-01 3.46036613e-01 -2.41534218e-01 2.12024897e-01\\n-6.70670196e-02 2.96857536e-01 8.58305544e-02 5.16654737e-02\\n1.51009873e-01 -1.21138670e-01 -1.81237057e-01 -2.05051482e-01\\n-1.64857954e-01 -1.64369792e-01 1.69383839e-01 3.96749042e-02\\n1.86790228e-01 -3.70514661e-01 4.97878715e-03 -3.36113423e-02\\n-5.06768636e-02 -3.40315491e-01 -2.35031456e-01 1.09160975e-01]]',\n", + " 'job_description': 'Job Informationen Your tasks: In this role you will be working with state of the art cloud technologies to build a big data processing pipeline that handles TBs of raw data and millions of events on a daily basis. You will be responsible to keep the platform highly available, scalable, secure and cost-efficient. Your profile: Bachelor’s degree in Computer Science, or a related field, or equivalent practical experience. Experience with one or more general purpose programming languages including but not limited to: C/C++, Go, Python or Java. Good understanding of cloud architectures, services and container technology. Experience with common cloud platforms (AWS, Azure, GCP). Experience with big-data processing systems featuring ingestion, storage and indexing. Solid communication skills, fluent in English. High level of drive, independence and strong analytical skills. Preferred qualifications: Master’s or PhD degree in Computer Science, further education or experience in engineering, computer science or a related field. Experience in IT security, especially malware analysis. Experience in message passing architectures (e.g. Kafka, RabbitMQ, Redis). Experience in architecting, building and maintaining hybrid cloud environments. Experience with agile development, testing and continuous integration. Benötigte Skills C C++ Go Python Python JAVA CLOUD Englisch Security Test',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Analytical Skills\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Python Server Pages\", \"KM Programming Language\", \"Agility\", \"Security Testing\", \"Computer Science\", \"Continuous Integration\", \"Python (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Hybrid Cloud Computing\", \"Limiter\", \"Pipelining\", \"Message Passing\", \"Data Processing Systems\", \"RabbitMQ\", \"Indexing\", \"C (Programming Language)\", \"Storages\", \"Scalability\", \"Big Data\", \"Redis\", \"Computer Engineering\", \"Google Cloud Platform (GCP)\", \"Raw Data\", \"Malware Analysis\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Cloud-Native Architecture\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Chinese', 'Wolof', 'Southern Sotho', 'Kongo']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'fullstack software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Publishing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.67187336e-02 2.96722233e-01 5.69320023e-01 5.54775912e-03\\n3.93695325e-01 -2.44853720e-01 6.13278449e-02 4.39237267e-01\\n-3.71004380e-02 -3.76976460e-01 1.44464830e-02 -2.01261029e-01\\n-1.77895710e-01 1.51643947e-01 1.19291306e-01 3.40309560e-01\\n1.46882311e-01 1.46317557e-01 -1.59184709e-01 3.03446144e-01\\n2.39146829e-01 -8.00555050e-02 1.58204213e-01 6.36542737e-01\\n4.19375390e-01 2.41677724e-02 -5.45547083e-02 -7.05409721e-02\\n-3.60972941e-01 -2.06816643e-01 4.37921822e-01 1.33640841e-01\\n-8.46405700e-02 -4.37251240e-01 5.85866980e-02 3.82522531e-02\\n-2.37589940e-01 -1.21355340e-01 1.13389283e-01 3.12887311e-01\\n-4.68225986e-01 -3.09102178e-01 1.08712859e-01 5.88735342e-02\\n-2.22313091e-01 -2.94777691e-01 1.25417948e-01 2.10777111e-02\\n6.06098473e-02 -1.59901649e-01 -5.19902527e-01 3.33915353e-01\\n-1.48147970e-01 -2.18725681e-01 2.06449345e-01 4.88953263e-01\\n-7.28642046e-02 -4.44074035e-01 -4.05547202e-01 -2.85148084e-01\\n7.93206915e-02 -1.09679095e-01 7.52034709e-02 -2.50600070e-01\\n2.30235025e-01 3.55911888e-02 -3.62425484e-02 3.63901168e-01\\n-6.27832115e-01 -6.24744818e-02 -2.74090599e-02 -1.14512570e-01\\n-2.90184140e-01 -1.69261634e-01 -1.08545452e-01 -1.19351923e-01\\n-1.00509040e-01 4.37621176e-01 1.77954912e-01 4.22590859e-02\\n-1.48623928e-01 3.52732629e-01 -1.07174113e-01 4.41610485e-01\\n2.30287209e-01 2.27462009e-01 1.50427923e-01 3.07592303e-01\\n-3.98245454e-01 3.26627195e-01 7.22608194e-02 -3.18401575e-01\\n3.19555432e-01 6.69317646e-03 5.14104247e-01 2.62273010e-02\\n4.43237228e-03 1.98723506e-02 -1.93057477e-01 3.28119040e-01\\n2.69340843e-01 -1.85362697e-01 8.35981220e-02 -8.29748288e-02\\n-6.58849403e-02 -2.33044624e-02 -8.01128224e-02 2.44132370e-01\\n-1.08781122e-01 3.86238635e-01 2.32352808e-01 -1.92284822e-01\\n-1.69037268e-01 -4.57147300e-01 -2.42234184e-03 1.03367409e-02\\n2.39397828e-02 1.85592055e-01 2.72359192e-01 1.26982644e-01\\n2.69823253e-01 1.17569029e-01 1.58665076e-01 8.56716633e-01\\n8.57469067e-03 -4.37417030e-02 -2.67243981e-01 2.75124520e-01\\n1.63230762e-01 -2.51760244e-01 2.56302088e-01 3.62402558e-01\\n1.13420933e-01 -1.76909283e-01 -8.86960849e-02 3.00287306e-01\\n2.90440116e-02 -2.60723382e-01 -3.53721976e-01 1.09487094e-01\\n-2.28362277e-01 -2.31612802e-01 5.76940596e-01 1.91144735e-01\\n1.26530856e-01 -2.60857157e-02 -4.46492322e-02 -2.23895624e-01\\n-1.12277649e-01 1.95836052e-01 -1.17187500e-01 3.68517041e-02\\n-2.57537067e-01 -2.13730350e-01 -3.12259912e-01 1.40268147e-01\\n-2.14918569e-01 1.22836351e-01 1.36997364e-02 -1.79604478e-02\\n3.68961006e-01 -3.75046022e-02 -1.71374694e-01 3.15917552e-01\\n8.26814584e-03 -5.74938543e-02 -2.95440108e-02 2.80687302e-01\\n-1.54562250e-01 2.07130566e-01 -1.71475559e-02 -1.49127305e-01\\n5.36321998e-01 1.13359056e-01 1.61812231e-01 1.66860018e-02\\n3.34713429e-01 -2.20375732e-01 6.88984022e-02 2.14569479e-01\\n-5.46268940e-01 1.88515067e-01 -1.30828366e-01 2.83839554e-02\\n1.12771407e-01 -3.61085013e-02 2.78316945e-01 -2.51751900e-01\\n8.79559442e-02 -1.23617977e-01 -4.17852968e-01 -3.63407969e-01\\n-1.10374160e-01 2.28156671e-02 4.43680614e-01 -3.13345820e-01\\n-1.91146314e-01 2.97416866e-01 -4.28972840e-01 8.48936569e-03\\n1.53323203e-01 2.31711999e-01 1.02577545e-01 7.85370450e-03\\n-2.22339883e-01 -3.61608177e-01 1.91932544e-02 -3.48060846e-01\\n-3.73283476e-01 8.27715248e-02 -2.58655220e-01 2.43152216e-01\\n1.27916306e-01 7.21792504e-02 -1.51331961e-01 1.93871707e-01\\n-1.36164784e-01 -2.12173626e-01 1.69147268e-01 6.26653954e-02\\n3.02887172e-01 -1.12523235e-01 -4.24842238e-01 4.09860104e-01\\n-2.03235656e-01 6.75117791e-01 1.50511488e-01 -8.71262848e-01\\n5.20909190e-01 2.95181215e-01 -6.67094067e-02 -3.61656189e-01\\n5.54514885e-01 -2.49935582e-01 9.58802402e-02 1.02369644e-01\\n-2.91614860e-01 -3.43615174e-01 2.65896648e-01 -6.57019764e-02\\n-1.77297845e-01 5.48355639e-01 1.27354741e-01 -6.13008393e-03\\n1.24384791e-01 -1.75733134e-01 -7.46652186e-02 -5.27924299e-02\\n-5.12434021e-02 -2.74515539e-01 -3.75991523e-01 9.09159705e-02\\n-1.61188602e-01 -4.39422756e-01 2.57048830e-02 -2.93024212e-01\\n-2.30757058e-01 -3.53218943e-01 -1.14352420e-01 4.32680994e-01\\n3.19875658e-01 7.33499601e-02 1.97651256e-02 8.40124339e-02\\n-1.23082809e-01 -6.14158213e-01 -9.86102149e-02 1.40843242e-01\\n4.85467523e-01 1.82063103e-01 9.52177495e-02 9.69471782e-02\\n3.58351693e-02 6.01812184e-01 -1.50268853e-01 -5.22333942e-02\\n5.39931059e-02 1.31090701e-01 -2.73996573e-02 -1.66916266e-01\\n-1.84699893e-02 3.61212462e-01 -2.48187661e-01 9.48279724e-03\\n-1.98753893e-01 -3.22190183e-03 5.11966228e-01 6.15152568e-02\\n-3.91003728e-01 -1.40090019e-01 5.69002666e-02 2.28298500e-01\\n-5.60989320e-01 -1.49974942e-01 5.62736630e-01 1.59602359e-01\\n9.61167365e-02 1.13881178e-01 2.53907919e-01 -1.31241560e-01\\n-1.04191929e-01 -5.29475957e-02 2.01631710e-01 1.34956926e-01\\n2.37567812e-01 6.11278526e-02 -1.17080443e-01 -5.64521492e-01\\n-3.73585176e+00 -2.13137731e-01 2.02780262e-01 -2.72512734e-01\\n8.40850249e-02 -1.00012653e-01 -6.22426644e-02 -1.41159356e-01\\n-1.93529800e-01 1.29292592e-01 -1.43042788e-01 -7.24028647e-02\\n1.38196737e-01 2.14548111e-01 -4.21912828e-03 2.56612182e-01\\n1.11522853e-01 -2.36249700e-01 -1.33395001e-01 2.68445373e-01\\n-2.80611634e-01 -5.82509220e-01 4.62023199e-01 -1.25198364e-01\\n2.67884552e-01 1.87164888e-01 -2.04647958e-01 -1.29223302e-01\\n-1.31829828e-01 -1.92293689e-01 6.12795763e-02 -9.39538777e-02\\n-8.59152377e-02 3.23388636e-01 9.77475792e-02 -1.00771397e-01\\n3.10782611e-01 -4.18412954e-01 -2.50079334e-01 -4.68986362e-01\\n1.02944970e-01 -5.20250201e-01 -7.67997876e-02 -8.12862962e-02\\n7.76533425e-01 -4.35851097e-01 9.95982215e-02 1.63303509e-01\\n1.62734449e-01 2.69255280e-01 -8.63716453e-02 -9.00575519e-02\\n-2.15842098e-01 -2.02197447e-01 -2.41889674e-02 -2.72290051e-01\\n3.84078354e-01 5.21022558e-01 -2.27394283e-01 -8.90961289e-02\\n-1.18444208e-02 -1.39494345e-01 -4.06376392e-01 -2.97382027e-01\\n-1.33093866e-02 -3.45209450e-01 -6.45767629e-01 -3.44988912e-01\\n-8.53393674e-02 -7.44745582e-02 -3.00105065e-01 5.56294501e-01\\n-2.55929202e-01 -5.01018941e-01 -6.37039319e-02 -3.91463339e-01\\n1.71785668e-01 -2.13017747e-01 -7.51036927e-02 -1.48616314e-01\\n-2.50548184e-01 -4.89901721e-01 -6.59603328e-02 1.78579073e-02\\n-2.01745242e-01 -2.78845698e-01 -4.30707075e-02 -2.83622980e-01\\n-1.01161934e-01 -5.20414174e-01 4.20552015e-01 9.56956968e-02\\n2.32600644e-01 6.03266209e-02 3.05402726e-01 1.80324048e-01\\n2.88148284e-01 -2.68026769e-01 3.81080061e-02 -3.69150817e-01\\n2.25047216e-01 -4.81761433e-02 5.35127103e-01 -3.05869102e-01\\n5.57059385e-02 1.77850649e-01 -2.11757451e-01 -6.46279985e-03\\n2.45328739e-01 1.14314899e-01 -2.94656698e-02 -2.18708441e-01\\n1.83173254e-01 -3.31229389e-01 -2.74223238e-01 8.38534534e-03\\n1.18746176e-01 4.65987921e-01 -8.10511783e-02 -4.65594023e-01\\n-2.14281842e-01 4.87218618e-01 -1.14892401e-01 -1.67984560e-01\\n-3.68615419e-01 1.52739868e-01 -1.20416932e-01 2.25331560e-01\\n5.65250739e-02 -1.99138939e-01 -4.00528491e-01 -2.87562490e-01\\n-1.21224187e-01 1.26799926e-01 3.28885376e-01 1.06314771e-01\\n-5.14674298e-02 -3.97335589e-01 -6.57119825e-02 1.16826944e-01\\n1.92517221e-01 2.01343328e-01 1.12483673e-01 -1.09031983e-02\\n-3.01207770e-02 3.62238139e-01 -1.18605971e-01 1.56226188e-01\\n-3.15339655e-01 -5.28079318e-03 -4.95506346e-01 -3.11013013e-01\\n-1.06824383e-01 -3.67273480e-01 1.14798591e-01 1.60853311e-01\\n2.41685212e-01 3.79153527e-02 -5.10414243e-02 -4.56056207e-01\\n3.89789432e-01 -9.30798650e-02 2.31278896e-01 2.41151020e-01\\n3.90331149e-02 4.56876010e-01 1.37195930e-01 -8.29316080e-02\\n-1.49566486e-01 -8.45598578e-02 -2.22926557e-01 -1.08174104e-02\\n-6.38274327e-02 -2.95079529e-01 -1.73237726e-01 3.48053485e-01\\n6.20904155e-02 -4.31401789e-01 -2.38968834e-01 2.60857493e-01\\n-2.50868648e-02 -1.55542672e-01 -6.74322322e-02 6.43418282e-02\\n3.76790076e-01 2.17092857e-02 3.46067458e-01 -3.65874618e-01\\n1.90149453e-02 6.69767261e-02 -4.21951339e-02 6.09107435e-01\\n2.80052036e-01 -3.19692381e-02 -1.64769560e-01 -2.97057509e-01\\n3.34365308e-01 -1.68340936e-01 -6.02143183e-02 -1.56974316e-01\\n4.06555720e-02 -1.08460829e-01 -4.05753583e-01 1.67035356e-01\\n-2.47203261e-02 -2.41897672e-01 -6.81778137e-03 4.55852188e-02\\n1.09386958e-01 5.82059398e-02 -3.68962377e-01 -3.84875298e-01\\n-2.90951014e-01 -2.23942976e-02 -1.20255640e-02 -3.56603295e-01\\n2.18186602e-02 3.27027664e-02 -6.07908130e-01 1.88048556e-01\\n-3.20781380e-01 -8.77033994e-02 2.13556942e-02 5.04866503e-02\\n-3.59134704e-01 -1.16177434e-02 6.90006390e-02 2.08212867e-01\\n-1.86065540e-01 -3.47521961e-01 2.23886043e-01 -1.00485408e+00\\n1.86940715e-01 -6.40914813e-02 -2.23913312e-01 8.79647285e-02\\n-5.78339137e-02 -5.10921717e-01 1.05936274e-01 -3.43242347e-01\\n-8.42427537e-02 -4.54773568e-02 -1.26209021e-01 -5.60749650e-01\\n1.21082686e-01 -4.20459732e-02 -3.31637204e-01 4.56954420e-01\\n-4.05316442e-01 2.15204895e-01 -3.48812118e-02 2.24518359e-01\\n4.40747552e-02 -3.56915116e-01 1.14904575e-01 -4.79978174e-01\\n-3.30032855e-01 -4.43308428e-02 -3.68664235e-01 -2.28247836e-01\\n-4.41463515e-02 -2.17817277e-01 -5.26896620e-04 1.24487728e-01\\n2.25357533e-01 7.74440393e-02 3.52876708e-02 -3.81222010e-01\\n5.15290983e-02 -3.70318532e-01 8.24180767e-02 -4.90108393e-02\\n-3.03732473e-02 -4.18397859e-02 3.71964872e-02 -8.22254736e-03\\n-2.00392995e-02 -2.89255619e-01 3.58116269e-01 -2.75829136e-01\\n-1.52155325e-01 -7.77188018e-02 -2.18711440e-02 -6.20610872e-03\\n1.53075725e-01 -5.31868994e-01 8.06183666e-02 3.67095411e-01\\n1.32969141e-01 1.79005548e-01 2.39876196e-01 5.64817376e-02\\n-7.73215517e-02 2.85412908e-01 -2.48589501e-01 1.21940948e-01\\n7.07733631e-01 -3.69421728e-02 5.27142361e-03 9.76652578e-02\\n1.73838049e-01 1.04933545e-01 4.33435768e-01 -3.50388400e-02\\n-1.26859635e-01 1.99341267e-01 -2.39235954e-03 -5.36039531e-01\\n-4.54127369e-03 3.18226926e-02 -3.07196259e-01 -3.35978329e-01\\n6.76762998e-01 3.23572755e-01 -2.88808584e-01 -2.11659059e-01\\n-7.14001805e-02 -1.64696351e-01 5.98044582e-02 -1.21731579e-01\\n7.80935735e-02 -6.50402755e-02 5.03270686e-01 -5.81781715e-02\\n2.27961481e-01 5.12414753e-01 -1.46927491e-01 -3.39265227e-01\\n-7.10828900e-02 3.94160599e-02 1.25709757e-01 5.66308260e-01\\n-2.15253025e-01 2.19289437e-01 5.76037019e-02 1.34706631e-01\\n1.26359600e-03 2.14553028e-01 3.27989087e-02 1.53294101e-01\\n5.08411452e-02 3.01635806e-02 2.36456841e-01 4.15357471e-01\\n2.58377761e-01 5.78998327e-01 3.40781033e-01 9.35006514e-02\\n4.70770031e-01 4.00471061e-01 4.45883304e-01 2.51183957e-01\\n-7.41710886e-02 7.26996809e-02 9.42412019e-02 -1.31412074e-01\\n1.58378646e-01 2.84192622e-01 1.07372522e-01 8.90735507e-01\\n4.26928520e-01 1.73812479e-01 6.20054245e-01 -5.61360538e-01\\n-3.79605204e-01 -2.44449731e-03 3.80369425e-01 -2.39221737e-01\\n-9.09817666e-02 5.60221374e-02 -9.55387577e-02 1.31833315e-01\\n-4.63133156e-01 -4.66141514e-02 -9.65779573e-02 8.93006176e-02\\n5.80806322e-02 -5.12994714e-02 -3.05669278e-01 4.42468710e-02\\n-2.09971130e-01 4.80944514e-02 -4.73778665e-01 -5.44616133e-02\\n-1.76520050e-01 -2.76075333e-01 -1.80888906e-01 -1.65693477e-01\\n-1.16700724e-01 -4.43723351e-01 -1.03742622e-01 3.94497206e-03\\n2.12993145e-01 -1.67148635e-01 -4.58802618e-02 -2.70562142e-01\\n3.38034809e-01 2.46800840e-01 4.36104596e-01 8.62346217e-02\\n1.62941456e-01 -2.60475099e-01 -2.92180687e-01 1.76115129e-02\\n1.29402250e-01 5.70366234e-02 -4.73167524e-02 4.31277543e-01\\n-3.02605987e-01 3.23485211e-03 2.32418794e-02 4.17752355e-01\\n-4.76870537e-01 -2.86960155e-02 -6.68208152e-02 1.61704049e-01\\n1.30211711e-01 1.72086850e-01 -2.47980282e-01 1.00084774e-01\\n-3.02859783e-01 -4.60162848e-01 3.45902801e-01 -8.45284238e-02\\n-1.11927968e-02 1.59881204e-01 1.43875748e-01 9.66285393e-02\\n-2.55336046e-01 -4.60860245e-02 4.37939242e-02 2.26694062e-01\\n6.88303337e-02 2.34162003e-01 -2.64328092e-01 -2.36567214e-01\\n-2.56358117e-01 1.31330937e-01 -2.12732673e-01 1.21233791e-01\\n3.73896444e-04 2.60688841e-01 1.67180136e-01 7.53072724e-02\\n2.79586524e-01 4.06940700e-03 -1.07937142e-01 -1.42126694e-01\\n-2.66415268e-01 -3.80658418e-01 -1.59196377e-01 -3.26687358e-02\\n1.25756204e-01 -2.92749524e-01 4.12866250e-02 -1.75034851e-02\\n-2.23701209e-01 -3.28137487e-01 1.19817182e-01 -1.54932171e-01]]',\n", + " 'job_description': 'localsearch is the leading marketing and advertising partner for Swiss SME. We make our customers successful in the digital world. Within our department Products & Platforms we are looking for new colleagues: Fullstack Software Engineer We are software engineers, Java dudes, Go programmers, Ruby champions, Javascript ninjas and offer a skilled cross functional software engineering team (mobile, web, backend) working on one of the biggest internet platforms in terms of traffic and users in Switzerland: local.ch a modern tech stack running on Kubernetes (moving to GCP) based on Spring Boot, Go, Rails, MongoDB, React, Swift, Kotlin an environment where we practice agile methodologies, do code reviews and live a DevOps culture other nice things like free coffee and fruits, hackdays, table tennis, foosball and a joyful team spirit You are a curious explorer, tech enthusiast, software craftsman, hacker and you impress us with knowledge of modern JavaScript frameworks like React, Vue or Angular HTML and CSS skills to build responsive websites proven Rails experience your willingness to get your hands dirty with backend apps written in Java, Go and writing RESTful APIs passion to explore new and alternative technologies like GraphQL fluent in English, German is a plus Important: We are only able to consider applicants with a valid permit to reside and work in Switzerland or citizens of EU-27. Direct applications are given priority. We will be happy to answer your questions via our WhatsApp chat +41 79 358 35 76. We, Sylvia Ramona Bertele and James Bergamin, look forward to receiving your online application!',\n", + " 'soft_skills': '[\"Writing\"]',\n", + " 'hard_skills': '[\"Advertisement\", \"Kubernetes\", \"Nice (Unix Utility)\", \"Spring Boot\", \"Platform Product Management\", \"Cascading Style Sheets (CSS)\", \"Vue.js\", \"Ruby (Programming Language)\", \"MongoDB\", \"GraphQL\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Mobility\", \"React.js\", \"Swift (Programming Language)\", \"Cross-Functional Coordination\", \"Agile Methodology\", \"Whatsapp\", \"Digitization\", \"JavaScript (Programming Language)\", \"Alternative Technologies\", \"Code Review\", \"JavaScript Frameworks\", \"Receivables\", \"Angular (Web Framework)\", \"Google Cloud Platform (GCP)\", \"Customer Success\", \"Java (Programming Language)\", \"Custom Backend\", \"DevOps\", \"RESTful API\", \"Kotlin\"]',\n", + " 'languages': \"['English', 'Moldovan', 'Komi']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 4.90229800e-02 2.97917128e-01 4.39905524e-01 7.03050867e-02\\n5.21131754e-01 -2.16982588e-01 -3.99645828e-02 4.95162368e-01\\n-4.02844995e-02 -5.36455035e-01 9.40928385e-02 -1.14590101e-01\\n-1.49782866e-01 1.09880485e-01 4.10227664e-02 4.17319089e-01\\n2.88221031e-01 1.62648827e-01 -1.93620488e-01 3.20761919e-01\\n1.27973095e-01 -8.01675543e-02 1.66979223e-01 7.15268552e-01\\n4.30098027e-01 -8.08927938e-02 -1.00524791e-01 -2.22665351e-02\\n-2.60259390e-01 -2.64580011e-01 2.83885896e-01 3.00317854e-02\\n-9.15894844e-03 -3.50295514e-01 1.13630824e-01 -7.57706687e-02\\n-2.79735386e-01 -1.43612120e-02 -1.06526609e-03 2.13685796e-01\\n-5.42728007e-01 -2.58182436e-01 -2.00369293e-04 -3.26127298e-02\\n-2.40542024e-01 -2.40969792e-01 -1.37284445e-03 -1.06943876e-01\\n1.98715106e-01 7.02873617e-02 -5.09317517e-01 2.31335938e-01\\n-1.80450886e-01 -2.15089709e-01 3.09043199e-01 5.71866632e-01\\n1.43685967e-01 -4.15235132e-01 -5.44164896e-01 -3.07650894e-01\\n1.54684186e-01 -1.26219854e-01 -1.23524956e-01 -2.73860574e-01\\n2.78269470e-01 -6.38677552e-03 4.23559658e-02 2.43443742e-01\\n-7.64444172e-01 1.69372093e-03 -1.06222861e-01 -7.98086971e-02\\n-4.12060112e-01 -7.79623091e-02 -2.04859614e-01 -5.67695946e-02\\n1.58206448e-02 4.21798050e-01 1.84037447e-01 4.15711738e-02\\n-1.74852207e-01 3.21402937e-01 -2.01201767e-01 3.69817376e-01\\n1.71229944e-01 2.05713451e-01 1.23940267e-01 3.58641565e-01\\n-3.64917427e-01 4.28739816e-01 2.52892047e-01 -2.61655450e-01\\n2.54364282e-01 5.74528389e-02 5.17502487e-01 -9.90852043e-02\\n7.18632564e-02 6.49723858e-02 -2.51405239e-01 4.56787169e-01\\n1.83500156e-01 -2.68869430e-01 8.94334316e-02 -1.10007077e-01\\n7.14004319e-03 1.07774343e-02 6.44368827e-02 2.03074798e-01\\n-8.56987461e-02 4.62229759e-01 1.70712546e-01 -1.80773661e-01\\n-1.75357416e-01 -3.61860633e-01 4.96655889e-02 -5.22858053e-02\\n7.01624528e-02 2.40798667e-01 2.86226392e-01 1.06877409e-01\\n1.31891638e-01 1.05866447e-01 1.81113243e-01 9.39289510e-01\\n-1.26703814e-01 5.76909184e-02 -3.44789743e-01 1.21241055e-01\\n1.49034292e-01 -3.63606036e-01 2.50193179e-01 3.35075498e-01\\n-1.84964593e-02 -1.48586616e-01 -1.44163862e-01 2.59524494e-01\\n1.45316347e-01 -1.63228199e-01 -2.74204075e-01 8.20346624e-02\\n-1.31944761e-01 -3.01126182e-01 5.97357094e-01 1.84695750e-01\\n1.26479939e-01 -5.28316088e-02 -6.60626218e-02 -1.51135638e-01\\n-1.39598727e-01 2.64438450e-01 -7.25273192e-02 1.57592744e-01\\n-3.64943355e-01 -2.42020994e-01 -2.20878467e-01 1.08098248e-02\\n-2.63684630e-01 8.44867714e-03 3.02194972e-02 -1.32325694e-01\\n2.21328184e-01 4.78991941e-02 -2.31505305e-01 2.59641618e-01\\n-7.82069489e-02 1.45271346e-02 9.61283073e-02 3.04035127e-01\\n-1.18358001e-01 2.67371118e-01 -1.67370252e-02 1.42752416e-02\\n5.66132247e-01 9.33041722e-02 7.60053247e-02 -5.61900400e-02\\n3.97335827e-01 -1.38681307e-01 9.38635841e-02 1.88586682e-01\\n-5.47605872e-01 2.37958938e-01 -1.33755699e-01 -9.03653577e-02\\n1.04015723e-01 -1.54397534e-02 2.73853391e-01 -2.45076358e-01\\n-5.24954917e-03 -1.26831234e-01 -3.56160939e-01 -3.11813205e-01\\n-1.58239558e-01 1.67962350e-02 4.70927179e-01 -4.62002218e-01\\n-1.79054558e-01 3.42160493e-01 -4.06109035e-01 -5.07237352e-02\\n2.00700894e-01 1.98570341e-01 1.35579780e-01 5.45782000e-02\\n-3.11292857e-01 -4.37252373e-01 5.60363345e-02 -3.59499454e-01\\n-3.59844267e-01 4.84139509e-02 -2.54474133e-01 2.97530681e-01\\n1.29817173e-01 5.56956232e-02 -1.75994784e-01 1.19772732e-01\\n-1.82454899e-01 -1.63502708e-01 1.66017056e-01 9.12023559e-02\\n2.33028099e-01 -2.07305537e-04 -3.27303827e-01 3.47200155e-01\\n-2.16579825e-01 5.40561795e-01 1.28396228e-01 -9.23711836e-01\\n4.39514369e-01 2.39880487e-01 -8.72563049e-02 -3.95572186e-01\\n5.28012633e-01 -2.36039132e-01 6.11040322e-03 1.49542898e-01\\n-3.11635137e-01 -3.51612061e-01 2.95361549e-01 -9.72519815e-02\\n-3.02343488e-01 4.42996919e-01 6.24808334e-02 5.79570569e-02\\n1.32670969e-01 -1.85301438e-01 -1.39385387e-01 3.32112759e-02\\n2.88467091e-02 -2.50473887e-01 -4.25768584e-01 5.15406206e-02\\n-1.11733839e-01 -4.64803636e-01 -3.68338004e-02 -3.38356733e-01\\n-2.76383817e-01 -3.71631950e-01 -1.60122886e-01 4.16003644e-01\\n2.71352887e-01 1.64722472e-01 -1.19958082e-02 8.62305332e-03\\n-1.26696408e-01 -5.61281621e-01 1.05358684e-03 1.58699274e-01\\n4.98374522e-01 1.85555845e-01 1.37598604e-01 4.00808603e-02\\n8.80823359e-02 6.30084395e-01 -8.41415673e-02 -1.70300141e-01\\n1.68344639e-02 1.60772681e-01 3.74805667e-02 -1.80662543e-01\\n9.05907899e-02 3.68793428e-01 -1.82320610e-01 7.03947544e-02\\n-3.65675911e-02 -5.43992668e-02 3.05132896e-01 6.49728477e-02\\n-3.68243754e-01 -2.58017033e-01 -1.24566980e-01 7.92000070e-02\\n-5.91980815e-01 -1.38440982e-01 6.71019852e-01 9.19051319e-02\\n1.09320365e-01 4.77070473e-02 1.57038569e-01 -9.88913029e-02\\n-8.97527710e-02 -1.39424846e-01 2.49182880e-01 1.48275048e-01\\n6.21557832e-02 1.30021811e-01 -6.66223094e-02 -6.58248842e-01\\n-3.67480326e+00 -2.29925990e-01 1.48332387e-01 -3.07796061e-01\\n1.49848357e-01 -1.55036569e-01 1.09026376e-02 -9.40375701e-02\\n-1.93540439e-01 -1.36013729e-02 -1.58369407e-01 -1.33279152e-02\\n1.69032544e-01 1.64100274e-01 7.87530765e-02 2.78886646e-01\\n1.95263594e-01 -8.62191916e-02 -1.91642135e-01 3.37890923e-01\\n-1.97389334e-01 -4.34735656e-01 3.38154197e-01 -5.47892880e-04\\n3.08338851e-01 1.18616156e-01 -2.40605205e-01 -3.42522562e-02\\n-1.34146795e-01 -1.78933680e-01 3.90813611e-02 -1.03651412e-01\\n-1.09375186e-01 2.75964707e-01 2.41375700e-01 -1.20446779e-01\\n2.53881067e-01 -4.28811640e-01 -9.00486261e-02 -3.90702218e-01\\n1.08340807e-01 -6.85738385e-01 -8.23402107e-02 -2.55763650e-01\\n6.68185115e-01 -2.90078878e-01 9.19390656e-03 1.43376747e-02\\n2.29970768e-01 1.78290725e-01 -1.57695822e-02 -2.45004147e-02\\n-1.66011795e-01 -2.95519501e-01 -8.72104988e-02 -1.95148528e-01\\n5.03344059e-01 6.17993414e-01 -2.30630606e-01 -1.67314500e-01\\n4.95820493e-02 -2.17338920e-01 -5.18517375e-01 -3.22742075e-01\\n-1.63678885e-01 -2.29304641e-01 -6.06425166e-01 -3.15599173e-01\\n-1.38748556e-01 -1.04703188e-01 -1.88564092e-01 5.85413098e-01\\n-2.41186112e-01 -3.89125556e-01 5.27560152e-02 -3.28469068e-01\\n1.97466105e-01 -9.14533660e-02 7.00900843e-03 -1.46995991e-01\\n-2.92783588e-01 -3.89106423e-01 1.29827829e-02 -1.70806572e-02\\n-1.79119691e-01 -3.99387568e-01 -1.05220536e-02 -2.73325980e-01\\n-2.57143617e-01 -3.91739696e-01 4.70210642e-01 9.39262956e-02\\n3.25395674e-01 8.23065192e-02 4.80847508e-01 4.50396203e-02\\n2.98660010e-01 -1.77257329e-01 -7.04686251e-03 -4.97215420e-01\\n1.87265590e-01 -2.57863533e-02 5.11380792e-01 -2.63171762e-01\\n5.67363687e-02 1.22685075e-01 -2.55335897e-01 -4.13114391e-02\\n3.17553639e-01 2.52914894e-02 -1.53527400e-02 -1.22701488e-01\\n3.02402765e-01 -2.04782948e-01 -3.00792664e-01 6.33167624e-02\\n1.83470786e-01 4.42046970e-01 -3.44368480e-02 -4.88886029e-01\\n-2.26990566e-01 4.50808197e-01 -1.02485582e-01 -1.01845235e-01\\n-2.55794168e-01 1.79100290e-01 -1.86688736e-01 1.72387838e-01\\n-1.54618705e-02 -8.44695196e-02 -2.99323857e-01 -2.42612109e-01\\n-1.02214143e-01 2.27265224e-01 1.14673987e-01 1.11041209e-02\\n1.65615082e-02 -3.84036839e-01 -1.07313462e-01 1.98038563e-01\\n2.40716875e-01 3.09013933e-01 1.41834840e-01 -1.25459120e-01\\n-1.72623277e-01 4.77681458e-01 -2.96323925e-01 4.95484993e-02\\n-2.49966741e-01 8.00705105e-02 -4.89998788e-01 -3.02763820e-01\\n-2.52651334e-01 -3.22511077e-01 1.19988434e-01 1.48235321e-01\\n1.22521393e-01 -5.52958660e-02 2.80120783e-03 -4.96964097e-01\\n2.61990607e-01 3.57899070e-02 9.99776125e-02 1.21592194e-01\\n1.25403032e-01 4.58060145e-01 -2.42090970e-02 -1.63799182e-01\\n-1.56555012e-01 3.51100750e-02 -1.36328474e-01 -5.96082173e-02\\n-2.92110676e-03 -4.60033536e-01 -7.96466097e-02 4.47527617e-01\\n1.96670100e-01 -3.13334018e-01 -1.95950016e-01 2.48417735e-01\\n4.38527726e-02 -2.45991260e-01 -8.49739239e-02 -1.98643040e-02\\n3.21872294e-01 6.22354522e-02 3.93752158e-01 -4.38779294e-01\\n-2.90494561e-02 3.23878191e-02 -2.10317880e-01 5.09623110e-01\\n1.02035470e-01 -4.49573547e-02 -7.26781785e-02 -4.13856581e-02\\n4.06417221e-01 3.84614766e-02 -8.89194608e-02 -1.17779650e-01\\n1.46644920e-01 -1.80050105e-01 -5.72130322e-01 1.09475195e-01\\n-5.03441878e-02 -1.59073472e-01 5.63799357e-03 1.26731731e-02\\n1.30923003e-01 1.31024033e-01 -4.96383607e-01 -1.85334429e-01\\n-3.71792674e-01 -1.69018418e-01 6.25220537e-02 -4.35256511e-01\\n-4.08742996e-03 6.44582286e-02 -4.65459764e-01 2.07544744e-01\\n-2.92049229e-01 2.06500408e-03 1.54819628e-02 9.77155566e-02\\n-3.23667169e-01 -3.83040942e-02 7.15091974e-02 2.07367122e-01\\n-1.71860948e-01 -2.81139731e-01 1.17594592e-01 -1.04733026e+00\\n1.43595576e-01 7.35743195e-02 -2.35966176e-01 9.56095904e-02\\n-3.63203548e-02 -5.64536393e-01 1.44158825e-01 -4.01565969e-01\\n-9.66879949e-02 -4.58510891e-02 -1.74676687e-01 -4.60682869e-01\\n1.10469975e-01 -9.85078141e-03 -4.54157263e-01 2.89801389e-01\\n-3.76395017e-01 3.04196566e-01 3.39493644e-03 1.34901360e-01\\n1.04267895e-01 -3.27947676e-01 -2.28601657e-02 -5.45770943e-01\\n-5.66141427e-01 -1.06665514e-01 -3.73360246e-01 -3.14507902e-01\\n-3.01770307e-02 -4.02879477e-01 -1.78008631e-01 1.24009684e-01\\n2.70601392e-01 1.30757272e-01 -3.57931517e-02 -3.56963456e-01\\n5.80498762e-02 -5.44255614e-01 -2.08090488e-02 3.85423787e-02\\n-7.53510445e-02 -1.18216053e-01 3.78738582e-01 1.00925686e-02\\n1.26456633e-01 -3.71195346e-01 4.65350181e-01 -3.51531327e-01\\n-1.29802987e-01 -8.65236297e-02 1.05208512e-02 3.73173766e-02\\n2.73024619e-01 -4.92679209e-01 6.35693744e-02 2.66594321e-01\\n1.39498234e-01 1.15148783e-01 2.53251880e-01 -4.40950543e-02\\n-1.08120166e-01 1.65892795e-01 -2.95463413e-01 8.96564052e-02\\n7.90868640e-01 -8.33253637e-02 2.04687297e-01 1.40607312e-01\\n7.50428066e-02 1.82200834e-01 5.23168862e-01 -3.07234786e-02\\n-1.83045864e-01 1.91279069e-01 5.46168089e-02 -3.98158908e-01\\n-3.20634730e-02 -3.54945101e-02 -3.36782455e-01 -3.32100272e-01\\n6.57620490e-01 4.60989863e-01 -3.84891927e-01 -2.38872096e-01\\n-1.65248394e-01 -1.45280868e-01 1.63825035e-01 -1.28773123e-01\\n-2.25439910e-02 -1.30001456e-01 4.39656615e-01 -3.36288624e-02\\n2.60023266e-01 4.40848976e-01 -1.83954418e-01 -4.37244833e-01\\n1.25938281e-03 1.51654854e-01 6.66578263e-02 4.28770423e-01\\n-2.65140593e-01 1.96871310e-01 3.48326080e-02 2.07846329e-01\\n-1.57927632e-01 1.23226017e-01 2.02100482e-02 1.68790236e-01\\n1.71384498e-01 6.45633787e-02 5.08594394e-01 4.54661310e-01\\n3.46415043e-01 4.41684544e-01 3.40123832e-01 3.80693451e-02\\n4.54511315e-01 4.60954458e-01 3.58160764e-01 1.61977410e-01\\n-5.47797419e-02 6.34168461e-02 1.00292727e-01 -1.00612789e-01\\n4.17820632e-01 3.09857547e-01 1.58717155e-01 8.05959582e-01\\n2.91433096e-01 3.02615970e-01 5.96797407e-01 -5.58560312e-01\\n-3.27021092e-01 4.34430651e-02 4.73246276e-01 -3.39711905e-01\\n-1.45276070e-01 6.28827959e-02 -1.93137437e-01 1.84252515e-01\\n-4.25452471e-01 -2.51263678e-01 -1.25781044e-01 2.42539048e-01\\n-7.14948550e-02 -1.21070378e-01 -2.86172926e-01 6.34597242e-02\\n-2.99935732e-02 5.52443862e-02 -4.06489462e-01 -2.06967909e-02\\n-1.58962607e-01 -9.27588865e-02 -1.23826332e-01 -1.63735658e-01\\n-8.75240415e-02 -4.91472453e-01 -9.39831436e-02 1.92536612e-03\\n1.52665004e-01 -1.22879528e-01 -2.00113617e-02 -9.03527215e-02\\n2.61674345e-01 2.38915756e-01 5.27828395e-01 2.15206698e-01\\n6.81920946e-02 -3.24095726e-01 -2.37543955e-01 1.62505552e-01\\n9.98783782e-02 1.04766212e-01 5.57429381e-02 2.73743749e-01\\n-3.04069191e-01 -8.33827704e-02 9.51043740e-02 3.46847326e-01\\n-3.91505688e-01 -7.37886727e-02 -7.90476799e-02 2.53250539e-01\\n1.26460254e-01 1.29253283e-01 -2.72975028e-01 3.08794305e-02\\n-2.56497532e-01 -3.58349681e-01 2.75747746e-01 -1.55192122e-01\\n1.39598660e-02 3.67554724e-02 1.18441224e-01 1.48936793e-01\\n-2.30613381e-01 -4.28503565e-03 -5.72739840e-02 2.51130074e-01\\n1.20921925e-01 2.41342485e-01 -1.25145823e-01 -2.94571847e-01\\n-2.95653969e-01 2.37815455e-01 -1.36709930e-02 1.33002535e-01\\n-1.16710896e-02 3.60873789e-01 -4.83247526e-02 8.16527009e-02\\n4.85785723e-01 -3.00786458e-02 -8.01000893e-02 -1.46404862e-01\\n-3.41889620e-01 -3.29969913e-01 -3.58666219e-02 -9.21188518e-02\\n1.63640395e-01 -3.08218509e-01 3.42501812e-02 -4.25913446e-02\\n-1.09584853e-01 -2.91119158e-01 9.99695882e-02 -2.12022245e-01]]',\n", + " 'job_description': 'Beekeeper is a fast growing SaaS company disrupting the way 2 billion people working “out in the field” communicate within their companies. Are you eager to shape the future of traditional industries like hospitality, retail, manufacturing or transportation using latest mobile technology? We are looking for the most talented and passionate individuals that love to work in demanding and international environments. We are a lean development team that moves fast. We push to production multiple times a day and continuously iterate on our products. This is an exciting time to join if you truly want to be involved in developing the core product at a tech driven company. As a Software Engineer you have the opportunity to work on all of our software stack and learn about state-of-the art web and mobile development. Technologies that you will work on are ElasticSearch, Realm.io, RabbitMQ, Backbone.js, Docker, Saltstack, Amazon Web Services, MySQL and interfacing them with different programming languages like Python, Java, Objective-C and Javascript. Your responsibilities Translate requirements, designs and wireframes into inspiring user experiencesBuild and maintain high-performance, reusable and reliable codeWork closely with other passionate software engineers to develop and ship new features What we look for BSc or MSc degree in Computer Science or related technical field or equivalent practical experienceExperience using RESTful APIs and handling JSON dataYou care about code quality and continuous refactoringProficiency in English as we speak mainly English at work Bonus Points You can show us programming projects that you work on in your free timeWe love an entrepreneurial mindsetWhat we offer youCompetitive salaryDynamic work environmentWeekly Bee-BreakfastFree Coffee, Fresh Fruits and a lot of Snacks Interested? We are looking for passionate, self-driven individuals. Thus we are interested in links/information to any projects you have done inside/outside your day job. Applications over videojobs.ch Job Type: Full-time',\n", + " 'soft_skills': '[\"Reliability\", \"Communications\", \"Hospitality\"]',\n", + " 'hard_skills': '[\"MySQL\", \"KM Programming Language\", \"Programming (Music)\", \"Computer Science\", \"High Performance Computing\", \"Backbone.js\", \"Beekeeping\", \"Industrialization\", \"Objective-C (Programming Language)\", \"Python (Programming Language)\", \"Maintainability\", \"Translations\", \"Iterators\", \"Lean Product Development\", \"Software Engineering\", \"Mobility\", \"RabbitMQ\", \"Docker (Software)\", \"Web Services\", \"Wireframing\", \"Mobile Application Development\", \"JavaScript (Programming Language)\", \"Core Product\", \"Amazon Web Services\", \"RESTful API\", \"Java (Programming Language)\", \"JSON\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Greek', 'Hungarian', 'Divehi']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'performance and capacity software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.30073804e-01 1.82333335e-01 3.54817897e-01 -5.20979427e-02\\n5.10860205e-01 -1.22414924e-01 2.82488745e-02 2.72785813e-01\\n-1.15607768e-01 -3.26799512e-01 -1.11309655e-01 -2.12444499e-01\\n-8.61595422e-02 -1.48624741e-02 4.88055050e-02 3.60669583e-01\\n2.52864659e-01 8.21797773e-02 -1.60429567e-01 2.47678310e-01\\n1.60236150e-01 8.47721845e-02 -3.28864232e-02 5.70113063e-01\\n3.05923551e-01 -2.21794099e-02 -4.29356657e-02 -1.01206535e-02\\n-2.90633291e-01 -2.93833345e-01 2.91792929e-01 1.42507821e-01\\n-1.79832801e-02 -2.77961284e-01 5.96094914e-02 8.56781006e-03\\n-1.92503572e-01 2.94639599e-02 -1.21581797e-02 2.57650942e-01\\n-4.94087309e-01 -3.40133756e-01 2.19089016e-01 9.27771479e-02\\n-1.98074311e-01 -3.33119124e-01 -4.20717038e-02 1.25107333e-01\\n9.90826711e-02 -1.52135466e-03 -5.68861842e-01 4.33658928e-01\\n-3.42078775e-01 -1.59071058e-01 3.34775239e-01 5.16615987e-01\\n1.23486966e-01 -6.02040648e-01 -2.54358351e-01 -1.72925562e-01\\n4.27933671e-02 -1.80797324e-01 -1.94736551e-02 -2.13368505e-01\\n3.85865420e-01 -4.73097712e-02 4.77422681e-03 4.85355318e-01\\n-6.55387104e-01 -3.95587049e-02 -2.18750030e-01 5.58237499e-03\\n-4.11192596e-01 -4.77760695e-02 -2.71876872e-01 -1.38512224e-01\\n-1.32361978e-01 4.09661174e-01 3.28550152e-02 2.40756124e-02\\n-9.90290940e-02 2.64150530e-01 -2.01560453e-01 1.04968637e-01\\n3.12396526e-01 1.75488651e-01 2.02447832e-01 3.45405906e-01\\n-4.69548881e-01 3.23275238e-01 1.70898482e-01 -2.66092062e-01\\n1.76185027e-01 1.11972116e-01 4.67801899e-01 1.37578890e-01\\n-1.36103958e-03 2.02677161e-01 -1.51316524e-01 2.16347933e-01\\n2.77863204e-01 -2.29205355e-01 7.41887931e-03 -7.47556835e-02\\n-1.54904678e-01 -7.94864595e-02 3.69605832e-02 3.00210983e-01\\n-2.28934377e-01 4.66917127e-01 2.48645455e-01 -1.53634951e-01\\n4.84108105e-02 -6.18979216e-01 -1.97858319e-01 -3.90853137e-02\\n-6.34250864e-02 1.03680804e-01 3.55034769e-01 1.38934612e-01\\n2.30153799e-01 1.33356348e-01 2.14993834e-01 9.48184609e-01\\n-9.60684344e-02 1.34332046e-01 -1.91521540e-01 4.42718744e-01\\n2.27070659e-01 -9.60380360e-02 1.29597291e-01 2.91562080e-01\\n9.07142237e-02 -6.79604486e-02 -1.30698845e-01 3.21554065e-01\\n-1.96740106e-01 -1.62336931e-01 -3.00839394e-01 4.67570126e-02\\n-2.30881751e-01 -3.78175676e-01 4.21992153e-01 2.14933470e-01\\n2.24276319e-01 6.22885115e-02 -1.29535735e-01 -1.47376478e-01\\n-7.71731436e-02 3.06255430e-01 -3.10579711e-03 2.24452630e-01\\n-4.21280921e-01 -1.68350056e-01 -2.57366657e-01 3.25396627e-01\\n-4.14102823e-02 -5.56321517e-02 -2.05037206e-01 -2.53207367e-02\\n4.03468192e-01 1.62803173e-01 -4.16183978e-01 1.73810244e-01\\n1.79960001e-02 -1.98173061e-01 -1.10953875e-01 3.22205514e-01\\n6.86136931e-02 4.19434272e-02 -2.71140020e-02 -2.32080355e-01\\n4.39068943e-01 1.63994372e-01 2.55078375e-01 -9.27375108e-02\\n3.19547594e-01 -2.37060875e-01 1.67243704e-01 1.43001735e-01\\n-7.64194608e-01 3.49804223e-01 -1.00723602e-01 -4.32931818e-02\\n6.64263666e-02 1.67375371e-01 4.36342418e-01 -2.97968328e-01\\n-3.43194455e-02 -1.25300348e-01 -4.11930978e-01 -4.39560980e-01\\n-3.20832789e-01 -6.17662631e-02 4.63308752e-01 -4.23120141e-01\\n-1.11471586e-01 8.72113630e-02 -4.06286538e-01 -6.50587380e-02\\n2.78680831e-01 1.50325269e-01 1.39742553e-01 1.23357274e-01\\n-9.99730602e-02 -6.45759463e-01 4.93513756e-02 -5.53170204e-01\\n-6.51424468e-01 2.03363642e-01 -3.37543935e-01 3.24965686e-01\\n4.90081795e-02 -4.96285930e-02 -7.64552057e-02 1.34767964e-01\\n-2.90950358e-01 -3.03710494e-02 2.14166567e-01 1.92777067e-01\\n3.22863340e-01 -1.06282458e-01 -4.95130479e-01 4.48232293e-01\\n-1.87311664e-01 6.10837579e-01 3.28270197e-01 -8.22558105e-01\\n5.51853120e-01 2.49696285e-01 2.08081752e-02 -2.43036106e-01\\n4.93680358e-01 -3.27291816e-01 1.03242129e-01 1.91898674e-01\\n-3.89319420e-01 -1.60931885e-01 2.79397696e-01 -1.38655543e-01\\n-1.91730037e-01 6.94694102e-01 3.00835699e-01 -9.12323967e-02\\n2.87442118e-01 -3.39344501e-01 -2.17560291e-01 2.39655245e-02\\n-6.08682372e-02 -2.26159245e-01 -3.42510402e-01 1.13443382e-01\\n-7.19419569e-02 -6.28250003e-01 -2.00320467e-01 -2.79967934e-01\\n-1.76502600e-01 -2.77691245e-01 -2.55579531e-01 4.62377936e-01\\n1.31371945e-01 8.09600353e-02 5.54099120e-02 4.61477004e-02\\n1.03529030e-02 -5.77242613e-01 -7.95560032e-02 1.20993666e-01\\n4.62944359e-01 1.34782940e-01 1.58111639e-02 -9.27790552e-02\\n-1.66906133e-01 4.92247909e-01 -4.08307552e-01 -2.80381382e-01\\n1.99652493e-01 2.28363305e-01 -2.96534915e-02 -2.97715645e-02\\n-2.62488071e-02 3.58998865e-01 -2.31767744e-01 9.31122452e-02\\n2.07621139e-02 -5.43867648e-02 3.57003689e-01 1.26718106e-02\\n-3.05724502e-01 -2.60966629e-01 -1.35750517e-01 2.38892213e-01\\n-5.42422473e-01 -2.27652848e-01 5.09047568e-01 3.12668264e-01\\n2.67595172e-01 2.59124547e-01 3.16894531e-01 -1.76190242e-01\\n-2.10237309e-01 -3.26757759e-01 1.36874944e-01 1.84106454e-01\\n3.07802893e-02 5.31448685e-02 -2.85138667e-01 -5.79706550e-01\\n-3.42623782e+00 -2.57639974e-01 1.77104592e-01 -2.89912045e-01\\n2.05162063e-01 -1.25140816e-01 4.01510037e-02 -4.77603301e-02\\n-2.84156770e-01 1.65888574e-02 -2.24702448e-01 -2.28117853e-01\\n1.78591125e-02 2.89764702e-01 1.17374370e-02 1.91709936e-01\\n5.03975041e-02 -2.23670229e-01 -2.35336404e-02 1.84431195e-01\\n-9.19547603e-02 -6.45670235e-01 1.31950900e-01 -1.88954771e-02\\n1.60361871e-01 1.86640397e-01 -3.48967224e-01 -9.66397766e-03\\n-1.56231850e-01 -2.50950754e-01 7.61029720e-02 -2.56303400e-01\\n-3.16909701e-02 2.40510955e-01 1.55150726e-01 -6.91247061e-02\\n-3.09370132e-03 -2.61119366e-01 -3.30378450e-02 -4.15529728e-01\\n1.77946866e-01 -4.46394265e-01 1.27670184e-01 -1.05741262e-01\\n7.21635878e-01 -3.20548564e-01 6.46116361e-02 1.13885358e-01\\n1.94188505e-01 1.89525098e-01 -8.98239613e-02 -4.34088521e-02\\n-2.05631226e-01 -3.64561498e-01 -1.50392577e-01 -2.38582268e-01\\n4.13422674e-01 4.58273172e-01 -1.70710593e-01 2.71493495e-02\\n8.72483850e-02 -3.68835688e-01 -2.82347411e-01 -4.49311376e-01\\n-3.16838205e-01 -8.17013755e-02 -6.21190786e-01 -4.69199389e-01\\n-1.47983313e-01 -4.81707752e-02 -2.40671426e-01 6.09202802e-01\\n-3.61060023e-01 -5.25859177e-01 -2.72691343e-02 -5.95469892e-01\\n6.58769161e-02 -3.23380083e-01 2.50169411e-02 -1.55658454e-01\\n-3.31984013e-01 -5.08418679e-01 1.17903545e-01 1.14932163e-02\\n-1.62465319e-01 -2.63561979e-02 3.66140902e-02 -2.13755623e-01\\n-3.63111049e-01 -3.36871862e-01 3.86156857e-01 -3.23000886e-02\\n3.42006117e-01 1.64944157e-01 2.64157563e-01 1.60016283e-01\\n3.51128548e-01 -1.43643394e-01 5.75878210e-02 -2.63508350e-01\\n9.05488357e-02 4.52248529e-02 6.50635481e-01 -3.15508306e-01\\n-1.96186788e-02 2.82834440e-01 -3.30466211e-01 -9.64236930e-02\\n4.18354869e-01 1.17020309e-02 -6.00626357e-02 -1.70579657e-01\\n3.74546766e-01 -5.14261365e-01 -2.39538118e-01 2.31087044e-01\\n2.99923774e-03 6.34977996e-01 6.66428953e-02 -3.83366704e-01\\n-2.90473938e-01 4.16613221e-01 -1.16571605e-01 -2.90686876e-01\\n-2.56845295e-01 1.41445801e-01 -1.74778581e-01 2.28649050e-01\\n1.25533268e-01 -2.03080118e-01 -3.58451247e-01 -5.99483326e-02\\n-2.37415009e-03 2.32676327e-01 2.51253366e-01 -2.57089012e-03\\n-1.98258199e-02 -1.62917003e-01 -1.18764773e-01 3.24689187e-02\\n1.94024220e-01 3.49367082e-01 1.86742589e-01 -2.12615997e-01\\n-4.00626361e-02 1.59869075e-01 -1.84370518e-01 1.65367633e-01\\n-1.62551686e-01 -5.09238569e-03 -4.79976833e-01 -3.55994195e-01\\n-1.11810304e-01 -3.18132609e-01 4.55938242e-02 3.09165448e-01\\n2.29074731e-01 -6.85298070e-03 -9.52612534e-02 -4.31866795e-01\\n4.39125836e-01 8.97091553e-02 3.31817776e-01 1.60687953e-01\\n5.46569936e-02 4.67481583e-01 -1.24708256e-02 -5.63992411e-02\\n-4.36708145e-02 -7.14600459e-02 -3.34591389e-01 -1.49619147e-01\\n1.38863757e-01 -3.11357796e-01 -1.15039617e-01 4.64470237e-01\\n1.22343995e-01 -1.66878000e-01 -1.22501962e-01 3.52641940e-01\\n3.69313136e-02 -1.39942616e-01 -2.11236015e-01 1.46495908e-01\\n2.09854782e-01 4.26724404e-02 1.90415129e-01 -4.06624377e-01\\n-7.45907519e-03 -5.45794098e-03 -1.45663843e-01 4.58337039e-01\\n9.51535776e-02 7.91616291e-02 -2.29619250e-01 -3.08905721e-01\\n4.10526097e-01 -2.26803422e-01 -1.50345191e-01 -6.14170395e-02\\n7.13979639e-03 -1.65313542e-01 -5.12980580e-01 -8.50594230e-03\\n-2.57864222e-02 -2.16652706e-01 1.82691664e-01 2.18039192e-02\\n1.32936582e-01 7.31126219e-03 -4.88532007e-01 -3.52014482e-01\\n-3.83595258e-01 -7.46418685e-02 1.78375453e-01 -3.41993362e-01\\n-1.23027631e-03 -1.00328781e-01 -7.07307339e-01 2.75399357e-01\\n-2.53393620e-01 3.64375673e-02 6.64788336e-02 2.21344620e-01\\n-3.87919247e-01 -5.72460331e-02 2.36454979e-01 1.10961460e-02\\n-3.45647871e-01 -1.05850652e-01 5.25349937e-02 -8.86347532e-01\\n1.55046687e-01 -1.84995215e-02 -8.42969492e-02 -5.45322634e-02\\n-1.12192012e-01 -5.35455704e-01 7.25509077e-02 -3.15937251e-01\\n-8.84019658e-02 5.44081107e-02 -1.66798398e-01 -4.16263640e-01\\n1.10183090e-01 -1.43082306e-01 -2.10641041e-01 4.75535512e-01\\n-3.96454722e-01 2.85692662e-01 1.84612498e-02 6.07071631e-02\\n7.44938180e-02 -3.49799603e-01 1.91862211e-01 -2.67542511e-01\\n-4.95829493e-01 -1.78072289e-01 -3.67329121e-01 -2.96086609e-01\\n8.14664289e-02 -3.12245935e-01 -1.74484134e-01 7.75493979e-02\\n2.32949644e-01 8.38425308e-02 4.21654545e-02 -2.32604727e-01\\n8.63509849e-02 -3.43068957e-01 1.83110610e-01 -2.44171441e-01\\n5.30973636e-02 2.89008021e-02 1.71390250e-01 -6.64871410e-02\\n3.74223739e-02 -2.35376567e-01 5.74966133e-01 -1.53920859e-01\\n-3.49559069e-01 -1.04342707e-01 7.04299510e-02 1.24070220e-01\\n2.55497396e-01 -4.30946201e-01 4.05236445e-02 1.78632215e-01\\n1.33616030e-01 1.31333634e-01 2.80095488e-01 -5.69849387e-02\\n-8.63757730e-02 2.42840976e-01 -5.11824846e-01 1.43571794e-01\\n7.96909571e-01 1.77939326e-01 7.18609989e-02 6.05499819e-02\\n1.81018770e-01 4.02316600e-01 6.38038993e-01 8.03692117e-02\\n-8.94313008e-02 3.78729910e-01 2.54143942e-02 -4.94806111e-01\\n-1.53936997e-01 -1.24556318e-01 -1.65885419e-01 -3.10592711e-01\\n5.07842422e-01 4.50095177e-01 -4.56072479e-01 -2.62396842e-01\\n-4.25777882e-02 -3.79710458e-02 1.31090984e-01 -4.72590178e-02\\n-3.33616696e-02 -2.39915505e-01 5.41548729e-01 1.03328619e-02\\n2.61459380e-01 5.08723617e-01 -2.03432173e-01 -3.36867899e-01\\n-1.22156158e-01 1.53257295e-01 1.90806285e-01 3.22494507e-01\\n-1.88110047e-03 2.31287509e-01 -6.89021647e-02 1.40960693e-01\\n-4.16624993e-02 3.67468186e-02 9.78776366e-02 -2.16810256e-02\\n1.78294957e-01 1.34170339e-01 2.24142402e-01 3.53844345e-01\\n2.83491403e-01 5.09663463e-01 2.05206499e-01 1.93228442e-02\\n4.50385094e-01 6.47124827e-01 3.66184801e-01 2.06926152e-01\\n1.13189239e-02 8.03468227e-02 -1.44448383e-02 -6.38912618e-02\\n3.67286593e-01 3.50150526e-01 1.92237616e-01 8.29155922e-01\\n3.20328772e-01 1.46881089e-01 6.99906826e-01 -5.96941710e-01\\n-4.20468062e-01 8.05909708e-02 4.10809785e-01 -2.56357491e-01\\n-1.08847864e-01 1.64834797e-01 -3.91001582e-01 2.53619045e-01\\n-4.20835257e-01 -1.14055730e-01 -5.26589155e-02 -5.44624403e-02\\n8.05206224e-02 -3.90173309e-02 -2.50499636e-01 5.13612516e-02\\n-2.59468019e-01 -1.98543802e-01 -2.86656767e-01 -8.94601867e-02\\n-3.80045712e-01 -1.51607081e-01 -6.88789226e-03 -1.48545370e-01\\n-6.99518668e-03 -4.33371812e-01 -2.12975621e-01 -1.95745975e-02\\n3.66152406e-01 -1.46261647e-01 -6.44944459e-02 -1.86123356e-01\\n-2.24388354e-02 3.83276045e-01 6.65033698e-01 -4.60890755e-02\\n1.84980780e-01 -2.06447378e-01 -2.17129931e-01 7.94143975e-02\\n6.88401535e-02 3.72105353e-02 4.87285219e-02 5.31002820e-01\\n-3.98630857e-01 -1.53744547e-03 1.11140005e-01 4.10521388e-01\\n-4.35798645e-01 -7.39716738e-02 -1.11880824e-01 3.03153604e-01\\n1.25727981e-01 1.97139785e-01 -3.18615019e-01 2.19469562e-01\\n-3.36157531e-01 -5.87719262e-01 3.97367001e-01 -1.42112792e-01\\n2.18525846e-02 1.52800441e-01 2.63327748e-01 1.58383697e-01\\n-2.67522991e-01 -7.42008686e-02 5.45852892e-02 3.68455827e-01\\n1.27233967e-01 3.65198791e-01 -3.58217061e-01 -5.32075502e-02\\n-1.87639788e-01 2.50360608e-01 -1.01450682e-02 1.93004787e-01\\n-1.92182183e-01 3.18927675e-01 1.16276972e-01 1.96226478e-01\\n1.61264166e-01 -7.74201006e-03 -1.50772929e-01 -3.40490013e-01\\n-2.49975815e-01 -1.55658543e-01 1.83007151e-01 -1.55558446e-02\\n1.60224006e-01 -4.80183542e-01 -4.78968434e-02 -8.43011364e-02\\n-1.86920613e-01 -4.58354652e-01 -5.21401502e-02 1.21805631e-02]]',\n", + " 'job_description': 'About our client Our client is one of the international leading providers of secure communication platforms and solutions for the next generation of mobile communication. Your responsibilities Regular execution of performance tests Automation of performance testing environments Analysis and presentation of test results, suggestions for improvements Bottleneck analysis, database queries optimization, etc. Full cooperation with the development team to improve the overall product performance Dimensioning and capacity planning for the solution Your profile Master university degree in computer science or equivalent work experience At least 3 years of experience with performance testing Excellent analytic thinking and preciseness Advanced Java knowledge with code profiling, JVM monitoring and tuning Working experience with MySQL/Percona/MariaDB and good knowledge of their internals (e.g., InnoDB engine, Galera replication, etc.) Working knowledge of Linux OS and its monitoring tools Experience with infrastructure deployment automation (e.g. monitoring and deployment using Puppet/Chef/Ansible and Graphite) Knowledge of statistics Fluent in English Your chance Are you interested? Then apply now! Ort: Zürich Spezialisierung: JAVA Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1297',\n", + " 'soft_skills': '[\"Presentations\", \"Communications\", \"Infrastructure\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Galera\", \"MySQL\", \"Automation\", \"Tooling\", \"Puppet (Configuration Management Tool)\", \"Capacity Planning\", \"Computer Science\", \"Statistics\", \"Database Queries\", \"Linux\", \"E (Programming Language)\", \"Test Automation\", \"MariaDB\", \"Executable\", \"Chef (Configuration Management Tool)\", \"Analytical Thinking\", \"InnoDB\", \"Performance Testing\", \"Java Virtual Machine (JVM)\", \"Ansible\", \"Secure Network Communications\", \"Dimensioning\", \"Graphite (Software)\", \"Java (Programming Language)\", \"Bottleneck Analysis\", \"SQL (Programming Language)\", \"Profiling (Computer Programming)\", \"Query Optimization\"]',\n", + " 'languages': \"['English', 'Burmese', 'Inuktitut']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'software solution and integration engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Banks & Building Societies',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.78290033e-01 3.80474567e-01 4.18100476e-01 -6.04825206e-02\\n5.65613270e-01 -2.92381905e-02 2.69318074e-02 1.69541329e-01\\n1.60666462e-03 -4.00838345e-01 -1.75689131e-01 -1.81932807e-01\\n-5.25751412e-02 5.48833981e-02 1.10879838e-01 3.50658119e-01\\n3.90594631e-01 3.64826508e-02 -6.64699376e-02 3.54679465e-01\\n-3.69811729e-02 -1.03528544e-01 2.81506702e-02 7.15992689e-01\\n3.11567724e-01 5.49854990e-03 -6.48555011e-02 1.21316714e-02\\n-1.40748933e-01 -2.46147186e-01 4.61530745e-01 -4.68358397e-03\\n-1.68578625e-01 -2.93609738e-01 9.49846208e-02 7.86572844e-02\\n-3.16059649e-01 8.44962150e-02 -1.85989708e-01 1.39380723e-01\\n-5.30766010e-01 -2.35792279e-01 5.09170890e-02 -3.51140499e-02\\n-2.82331079e-01 -3.52336735e-01 1.35625690e-01 -1.29055589e-01\\n9.19883326e-02 2.86212899e-02 -3.21316659e-01 3.07057410e-01\\n-2.76826710e-01 -2.49900967e-01 4.82129753e-01 6.19374871e-01\\n1.04787260e-01 -5.03370643e-01 -4.81561989e-01 -3.28055739e-01\\n1.79075062e-01 -6.12534359e-02 1.09849289e-01 -2.39912182e-01\\n3.45363736e-01 -4.44185920e-02 1.38730304e-02 3.54250073e-01\\n-7.55133510e-01 -3.01724598e-02 -3.71843755e-01 8.54871497e-02\\n-3.19211066e-01 -5.56439497e-02 -3.42552185e-01 -2.69644558e-01\\n1.49367750e-03 4.19769436e-01 -7.02717677e-02 8.81112069e-02\\n-2.43769020e-01 3.68939877e-01 -3.12516302e-01 2.59872973e-01\\n2.37345994e-01 1.35172874e-01 3.58147025e-01 2.82545388e-01\\n-4.86553729e-01 4.53596711e-01 3.52385342e-01 -3.51774216e-01\\n2.95350611e-01 1.02730647e-01 3.14439446e-01 2.26180866e-01\\n7.39036500e-02 2.37312406e-01 -4.65863124e-02 1.13784403e-01\\n1.31933823e-01 -2.83480510e-02 -1.84448421e-01 -8.03840086e-02\\n5.71150482e-02 -9.93360952e-02 6.86746836e-02 1.79600328e-01\\n-3.48143458e-01 3.43278944e-01 5.63810281e-02 -3.59516442e-01\\n-1.36905640e-01 -4.75866020e-01 -1.43285096e-01 -1.55603848e-02\\n-2.01456934e-01 1.05969459e-01 1.45454735e-01 2.47048989e-01\\n1.98739603e-01 4.89020348e-03 1.45164207e-01 7.53162742e-01\\n-4.41686735e-02 -2.25279834e-02 -2.12641761e-01 3.72642279e-01\\n1.74572319e-01 -2.20563382e-01 7.23030269e-02 2.98613012e-01\\n-1.47942305e-01 -7.66221732e-02 -3.34111959e-01 4.26924229e-01\\n-2.03543268e-02 -1.64448947e-01 -2.92663485e-01 1.80069119e-01\\n-1.85391083e-01 -4.97550339e-01 5.50058305e-01 -1.93767697e-02\\n1.04367927e-01 2.22941115e-03 1.86246634e-02 -1.66487647e-03\\n-2.36370206e-01 1.82802036e-01 1.11078471e-01 1.92598611e-01\\n-3.20871204e-01 -1.82042122e-01 -1.54250696e-01 2.83006907e-01\\n-1.45076126e-01 4.56356667e-02 -3.54309559e-01 -1.36101812e-01\\n3.05914223e-01 1.48408890e-01 -4.73381311e-01 2.98501670e-01\\n-4.77237813e-03 -1.50015399e-01 -1.62710249e-01 3.31876397e-01\\n-9.52931046e-02 1.77076310e-01 -3.30890045e-02 -7.87097663e-02\\n5.24412751e-01 1.13048837e-01 3.26106131e-01 -1.06342115e-01\\n2.88690031e-01 -9.25760940e-02 2.10036173e-01 5.82170673e-04\\n-6.24863029e-01 3.35382521e-01 -1.49408862e-01 -5.99714369e-03\\n6.19164295e-03 1.57975592e-03 3.71083766e-01 -3.01912010e-01\\n-5.95176071e-02 -2.03114972e-01 -3.96126568e-01 -4.04501438e-01\\n-1.58627957e-01 5.97790331e-02 2.89736271e-01 -4.25355911e-01\\n-3.89608787e-03 2.22457871e-01 -5.57277322e-01 -1.22796565e-01\\n3.10554385e-01 2.30464444e-01 1.09683633e-01 1.22660518e-01\\n-1.07196905e-01 -5.51794231e-01 1.22580916e-01 -5.07699370e-01\\n-3.51092368e-01 1.10389173e-01 -3.00593585e-01 7.65898675e-02\\n1.02330334e-01 -7.13258013e-02 -5.47414906e-02 -7.81858154e-03\\n-4.03110087e-01 -4.86916117e-02 1.54137462e-01 3.02839167e-02\\n1.65854573e-01 9.09411311e-02 -3.32659841e-01 5.78064620e-01\\n-2.72123098e-01 2.84008145e-01 1.20899737e-01 -1.04834008e+00\\n5.28024554e-01 3.50393653e-01 1.07001420e-02 -2.72172749e-01\\n4.48002756e-01 -3.76866162e-01 -7.85349160e-02 1.06823884e-01\\n-3.07857573e-01 -2.35623240e-01 1.83491528e-01 -1.68769255e-01\\n-3.28408480e-01 6.13187075e-01 9.90723222e-02 6.44440204e-02\\n2.90623575e-01 -1.98734492e-01 -2.05941439e-01 -5.13157025e-02\\n-2.34010398e-01 -9.30996016e-02 -5.88946700e-01 4.42759357e-02\\n-2.10373532e-02 -6.33819222e-01 -1.86507508e-01 -6.00575089e-01\\n-2.76475966e-01 -3.91505063e-01 -2.52267748e-01 1.27259359e-01\\n1.42289639e-01 1.24592841e-01 -1.18504643e-01 4.17614877e-02\\n-1.05947435e-01 -6.60643458e-01 -3.81189473e-02 1.34587973e-01\\n2.48273715e-01 3.22923601e-01 6.32420927e-02 -1.31662413e-01\\n-3.94602567e-02 5.00614464e-01 -3.44925404e-01 -3.01664174e-01\\n3.51342350e-01 1.04657061e-01 -6.96221143e-02 -1.07156016e-01\\n1.18274815e-01 3.30133617e-01 -3.02458346e-01 3.74127477e-02\\n3.99376303e-02 2.73105875e-02 3.52187157e-01 -1.31147169e-02\\n-2.88994551e-01 -2.18932688e-01 -5.85766211e-02 2.17075706e-01\\n-6.02190256e-01 -2.10669726e-01 6.01794422e-01 1.97579235e-01\\n-5.24823144e-02 2.56129980e-01 2.82802403e-01 -4.92552444e-02\\n-2.64537990e-01 -1.34016484e-01 2.64411867e-01 1.49154902e-01\\n1.89773798e-01 8.82226229e-02 -1.84833348e-01 -5.22651315e-01\\n-3.40924406e+00 -2.86704808e-01 2.03333899e-01 -2.89268672e-01\\n3.14688563e-01 -1.28435060e-01 2.32403010e-01 1.50011303e-02\\n-2.96690762e-01 -4.25070524e-02 -1.19808547e-01 -1.07720837e-01\\n1.32821292e-01 2.88379312e-01 6.72558397e-02 1.37757376e-01\\n3.55124362e-02 -1.48527443e-01 3.56011540e-02 3.62670481e-01\\n-7.48167485e-02 -7.94079661e-01 9.02501941e-02 -3.64799201e-02\\n1.71445429e-01 -1.15807764e-02 -5.04269421e-01 -3.58790345e-02\\n-2.74945617e-01 -2.15985298e-01 1.33602619e-01 -1.19048789e-01\\n-2.40695402e-01 2.11244598e-01 5.57042509e-02 -1.23289384e-01\\n1.87607594e-02 -2.77388275e-01 -1.14831880e-01 -5.43252885e-01\\n1.39387295e-01 -7.75701880e-01 -6.10272028e-03 -1.52973793e-02\\n6.10387921e-01 -1.95671618e-01 2.18392804e-01 1.00037314e-01\\n9.55374092e-02 2.08364189e-01 1.62694961e-01 1.11553259e-03\\n-3.48535597e-01 -3.52186322e-01 3.89552563e-02 -1.40328661e-01\\n5.55689752e-01 2.61259139e-01 -2.33175933e-01 5.88769242e-02\\n3.27466615e-02 -3.19522411e-01 -4.87712920e-01 -2.94706702e-01\\n-1.05784364e-01 -6.59059808e-02 -7.12858200e-01 -4.07012165e-01\\n-1.46084577e-01 -2.56510317e-01 -4.08943184e-02 7.39331245e-01\\n-2.70188451e-01 -3.14190596e-01 -3.93026546e-02 -5.69110036e-01\\n2.50351846e-01 -1.58626914e-01 4.63407189e-02 -2.38775700e-01\\n-2.98472852e-01 -3.61144245e-01 2.20529586e-01 4.91622835e-02\\n-2.22673923e-01 -2.21876986e-02 2.82238591e-02 -1.60391003e-01\\n-4.18400496e-01 -4.41071481e-01 4.82618481e-01 8.32878053e-02\\n3.49792898e-01 3.61956805e-02 3.68689775e-01 -6.58319890e-02\\n3.19877565e-01 3.13073359e-02 -7.74340257e-02 -4.59519088e-01\\n8.09023157e-02 -1.64802559e-02 5.63512564e-01 -2.06614941e-01\\n-2.62801126e-02 1.32762089e-01 -1.37791902e-01 -6.19628057e-02\\n4.90510404e-01 -7.39257038e-02 1.08766258e-01 -2.22811788e-01\\n2.30396479e-01 -4.21551526e-01 -2.98600972e-01 1.24910295e-01\\n5.22979200e-02 7.19821572e-01 -1.88974626e-02 -3.45355630e-01\\n-2.07879245e-01 4.29512352e-01 -4.77667525e-02 -1.01277500e-01\\n-2.46953368e-01 4.04107273e-02 -2.76074708e-01 2.11510226e-01\\n1.36606216e-01 -8.23638737e-02 -2.34294087e-01 -1.27437487e-02\\n-9.13211033e-02 1.89185917e-01 2.27388203e-01 1.62984043e-01\\n5.98747805e-02 -2.80520618e-01 -1.60721578e-02 1.31122679e-01\\n1.89689800e-01 3.65197718e-01 2.37042189e-01 -3.33795309e-01\\n-1.28800720e-01 2.90722430e-01 -2.52872169e-01 2.35001951e-01\\n-1.16030931e-01 1.30577654e-01 -6.08124137e-01 -2.71315843e-01\\n-2.84431159e-01 -3.20235550e-01 1.01977140e-02 3.66781473e-01\\n1.48102969e-01 -1.57701999e-01 1.41113363e-02 -4.52803373e-01\\n2.64597863e-01 -1.60222873e-03 2.66735077e-01 7.66851604e-02\\n-4.11103666e-02 7.74567366e-01 1.75513085e-02 -3.29330415e-01\\n-1.82695314e-03 5.30252643e-02 -1.79010093e-01 -2.84527957e-01\\n2.05633640e-02 -4.52018231e-01 -7.21742809e-02 4.96383816e-01\\n8.91182572e-02 -1.79540336e-01 -1.80997580e-01 2.98436224e-01\\n-2.02593580e-02 -2.40821794e-01 -2.10421965e-01 -5.62031418e-02\\n1.83506489e-01 7.72186294e-02 2.69544333e-01 -4.56165195e-01\\n1.26091586e-02 -2.45891567e-02 7.19334707e-02 4.12751317e-01\\n1.54386416e-01 1.31581604e-01 3.87730747e-02 -9.50430706e-02\\n4.43802059e-01 1.12474836e-01 -1.97131872e-01 -3.82853784e-02\\n1.41341731e-01 -2.87622780e-01 -4.72628057e-01 2.11017374e-02\\n-1.11386344e-01 -1.61707237e-01 1.01467416e-01 1.53456926e-02\\n1.50865242e-01 2.95311622e-02 -4.38522518e-01 -1.84373170e-01\\n-4.24536645e-01 1.17321908e-01 -9.85472426e-02 -6.49234653e-01\\n9.77564603e-02 2.02745870e-02 -5.71652889e-01 2.74298608e-01\\n-4.53905389e-02 4.86094058e-02 1.67146191e-01 1.31723642e-01\\n-2.25723952e-01 -1.77133620e-01 1.46598786e-01 8.53225589e-02\\n-2.68861830e-01 -2.46592954e-01 4.28218991e-02 -9.68012214e-01\\n2.76739627e-01 2.99760140e-03 -1.19711876e-01 9.47631150e-02\\n3.43455300e-02 -8.05438459e-01 2.48515815e-01 -3.85759622e-01\\n-1.76476628e-01 6.51508421e-02 -2.65799731e-01 -4.47156578e-01\\n4.20060158e-02 -1.15752127e-02 -2.01461345e-01 3.27315390e-01\\n-4.57598448e-01 5.16542315e-01 5.68061098e-02 1.08936600e-01\\n1.90594822e-01 -1.85713693e-01 3.88168320e-02 -3.05402160e-01\\n-4.86669630e-01 -2.91343272e-01 -1.78113401e-01 -3.35276127e-01\\n-1.21924199e-01 -2.35675871e-01 -1.45003900e-01 1.17702782e-03\\n3.18597376e-01 1.51010364e-01 -1.43857509e-01 -2.09421128e-01\\n5.96151203e-02 -3.27045381e-01 1.80744544e-01 -2.19062850e-01\\n1.11395612e-01 -2.51687348e-01 3.97747517e-01 1.90634914e-02\\n2.55273223e-01 -3.05948675e-01 4.46409047e-01 -1.88401282e-01\\n-3.64123940e-01 -2.00072318e-01 1.97282359e-02 7.94317350e-02\\n3.57394427e-01 -5.50540686e-01 1.56624049e-01 2.63425767e-01\\n5.21960072e-02 3.90384495e-02 2.26451695e-01 -1.45229906e-01\\n-7.72912502e-02 1.14788249e-01 -5.03074229e-01 2.08915710e-01\\n6.79631710e-01 1.41556442e-01 2.70682991e-01 1.73548162e-01\\n1.67190790e-01 2.86673188e-01 5.53420424e-01 4.92636263e-02\\n-8.00984502e-02 3.83481085e-01 1.52444363e-01 -4.93146747e-01\\n-2.07554683e-01 -4.35727462e-02 -9.51422602e-02 -3.56130034e-01\\n6.10882521e-01 3.01229835e-01 -3.90176564e-01 -3.11406463e-01\\n-2.03139424e-01 -2.98850268e-01 3.88044655e-01 -3.46279852e-02\\n7.92823359e-02 -1.27824917e-01 5.48047721e-01 -2.04795785e-03\\n3.79109621e-01 5.63291788e-01 -2.02212647e-01 -3.00975978e-01\\n-5.79575822e-02 2.56830603e-01 3.69990133e-02 3.17692280e-01\\n-5.77861145e-02 1.89650908e-01 5.45897633e-02 1.82440758e-01\\n-1.99747548e-01 -2.06301734e-02 1.94171757e-01 6.63347244e-02\\n1.04582444e-01 1.42010301e-01 5.55784345e-01 4.69859481e-01\\n2.11500257e-01 4.32693243e-01 3.60350937e-01 1.23665947e-03\\n4.24455017e-01 7.19901383e-01 2.65974104e-01 -1.71962250e-02\\n5.92679754e-02 1.68874696e-01 1.24564439e-01 -1.24936970e-02\\n3.44065696e-01 4.30243701e-01 1.38814241e-01 8.30626309e-01\\n4.03666377e-01 3.25912118e-01 7.08173394e-01 -6.37859821e-01\\n-2.95746922e-01 2.98424531e-02 5.57961464e-01 -3.97196501e-01\\n1.27006829e-01 2.06659958e-01 -2.25103974e-01 2.98169166e-01\\n-3.96013856e-01 -1.09286904e-01 -2.30659824e-02 -5.30308783e-02\\n1.24295518e-01 -1.12575702e-01 -8.91449526e-02 -1.50860297e-02\\n-9.54208374e-02 -2.47789979e-01 -2.86710978e-01 -2.42979899e-01\\n-2.84602523e-01 2.33938955e-02 -1.34209078e-02 -5.08332029e-02\\n-1.31739914e-01 -3.16565573e-01 -1.55908048e-01 -7.78649300e-02\\n3.23702961e-01 -1.61263436e-01 -1.71052277e-01 -6.27280921e-02\\n1.55324042e-01 3.15142691e-01 7.68052220e-01 1.99800804e-02\\n1.08948000e-01 -7.45462030e-02 -2.05540031e-01 1.59211576e-01\\n9.54287872e-02 1.55690148e-01 -9.08952393e-03 5.41924238e-01\\n-2.26774096e-01 -1.13780618e-01 7.24235326e-02 3.37958992e-01\\n-2.91860759e-01 -2.87216529e-02 -8.72548521e-02 1.23932660e-01\\n-2.10183933e-02 1.66710272e-01 -2.53908157e-01 6.75996691e-02\\n-5.09918928e-02 -5.38255930e-01 4.32942450e-01 -1.86862037e-01\\n-2.12996274e-01 -6.62430003e-02 2.58737147e-01 4.11747575e-01\\n-1.57282740e-01 -3.43940705e-02 -8.32056105e-02 8.76736939e-02\\n7.35472143e-03 4.96551335e-01 -2.13431090e-01 -9.57835913e-02\\n-3.16317588e-01 2.34070033e-01 3.41118015e-02 1.65940002e-01\\n-4.29691300e-02 4.22061294e-01 9.77471769e-02 1.52525038e-01\\n1.79273367e-01 -8.55935365e-02 -2.91646242e-01 -2.45301545e-01\\n-2.38152847e-01 -3.61880772e-02 3.23343873e-02 -1.12965196e-01\\n2.41054416e-01 -2.43249923e-01 -4.29404974e-02 -1.79611832e-01\\n-1.45707116e-01 -4.02538866e-01 -2.00856119e-01 -1.03881694e-02]]',\n", + " 'job_description': 'As a Solution and Integration Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, systems’ integration and interfaces’ orchestration for the Bank’s existing and new applications. You will be responsible for elaborating and preparing solution design documentation for change initiatives and also for the development, configuration and maintenance of changes on existing systems and also for introducing new applications and interfaces with other systems. You will be designing and developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Prepare the required solution design and design specifications documentation for change initiatives and also develop integrated solutions mainly for middleware and backend applications Undertake the technical ownership of Cembra Money Bank’s middleware and backend applications and micro services Act as a SME and integrator with third parties providing design specifications and also development of backend services Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 7+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Knowledge of messaging systems and experience in designing and implementing ESB/Middleware solutions and applications’ integration Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Working experience with Java applications servers (WAS, JBoss, Tomcat) and relational databases and also knowledge of common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Systems Engineering\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Middleware\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Design Specifications\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"System Integration Testing\", \"Operating Systems\", \"Java Application Server\", \"Finance\", \"Personalization\", \"Production Support\", \"Object-Oriented Design\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Solution Design\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Custom Backend\", \"Java (Programming Language)\", \"Biological Systems Engineering\", \"Acceptance and Commitment Therapy (ACT)\", \"Apache Tomcat\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '96',\n", + " 'job_title': 'data scientist, real world evidence within oncology',\n", + " 'location': 'Basel',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.proclinical.com',\n", + " 'jobdescription_embedded': '[[-2.63169497e-01 3.86650473e-01 4.68789518e-01 -3.20093706e-04\\n7.19425201e-01 -5.94137199e-02 2.23216508e-02 1.48933291e-01\\n-2.25920901e-02 -3.16203535e-01 -1.55717298e-01 -2.68961906e-01\\n3.84098068e-02 1.96828693e-01 1.78216875e-01 6.07137442e-01\\n3.50333661e-01 -3.81678753e-02 -3.89230326e-02 3.49530071e-01\\n5.27326241e-02 -1.75138190e-01 1.15638273e-03 8.54943514e-01\\n3.70329112e-01 2.45838165e-02 -1.67965710e-01 2.66950615e-02\\n-1.60904080e-01 -3.09640527e-01 5.65931797e-01 1.28522068e-02\\n-2.32964069e-01 -2.92585969e-01 1.21114455e-01 3.18059206e-01\\n-3.33256066e-01 3.80583629e-02 -1.97451293e-01 1.85492039e-01\\n-6.52454138e-01 -2.34094203e-01 -1.01964653e-01 -3.53781246e-02\\n-3.23889494e-01 -3.46547753e-01 7.30108246e-02 -7.40006492e-02\\n5.45543917e-02 2.75971234e-01 -4.50768441e-01 1.50981382e-01\\n-3.22868347e-01 -2.18348175e-01 3.51933807e-01 6.84982896e-01\\n8.93925503e-02 -4.98680592e-01 -5.26003718e-01 -3.62124503e-01\\n2.94625163e-02 -1.21122651e-01 3.09171915e-01 -3.26322377e-01\\n4.15292203e-01 4.24316004e-02 8.05535391e-02 1.61024660e-01\\n-6.62605286e-01 -2.23464295e-01 -5.22553682e-01 4.52159718e-02\\n-4.04539287e-01 4.97839302e-02 -4.20589894e-01 -1.39957100e-01\\n-1.19181722e-02 4.26721156e-01 -8.68240371e-03 9.07887071e-02\\n-1.31739765e-01 1.67956978e-01 -4.35254216e-01 2.88908124e-01\\n2.31453925e-01 2.87516147e-01 3.44208002e-01 3.43221307e-01\\n-3.43693256e-01 4.52233195e-01 2.25297004e-01 -2.87212849e-01\\n1.58153504e-01 2.74454594e-01 3.96189213e-01 1.60953507e-01\\n2.19625831e-01 6.55522272e-02 -2.97693253e-01 1.79574788e-01\\n2.87075460e-01 -2.72511691e-01 6.51143640e-02 -2.68369280e-02\\n-1.02064542e-01 5.67441620e-02 7.39111602e-02 -3.35512720e-02\\n-5.73595166e-01 4.45354879e-01 1.55315757e-01 -1.83875620e-01\\n-2.70958245e-01 -4.89671171e-01 -6.44533709e-02 1.24073744e-01\\n5.18905371e-02 2.12211221e-01 1.43317044e-01 2.24806324e-01\\n2.09356666e-01 -2.60517839e-02 9.35430452e-02 9.19676244e-01\\n2.95836739e-02 4.01868299e-02 -7.72249997e-02 2.01101944e-01\\n8.76916945e-02 -1.99077487e-01 2.65773833e-01 2.49101579e-01\\n-1.45804435e-01 -2.01857075e-01 -3.80936205e-01 3.42906266e-01\\n-1.63130127e-02 -1.93363011e-01 -8.68330300e-02 1.83452725e-01\\n8.64825845e-02 -6.59497380e-01 5.49374461e-01 -2.56151170e-01\\n1.85302138e-01 -1.37681961e-01 1.46572992e-01 -4.86909412e-02\\n7.64856115e-03 2.13260710e-01 3.58413160e-01 1.85464591e-01\\n-1.99610218e-01 -3.12877715e-01 -6.78154603e-02 1.48865595e-01\\n-4.77504790e-01 2.40760416e-01 -2.04132795e-01 -1.63046271e-01\\n3.32447708e-01 7.99462646e-02 -4.07236665e-01 2.34335840e-01\\n-1.09753981e-01 -1.56194463e-01 -5.59636690e-02 3.60473216e-01\\n-1.88666016e-01 1.81127608e-01 -6.48256913e-02 -1.86204344e-01\\n6.23774350e-01 1.28437519e-01 5.02431035e-01 7.83126429e-03\\n2.99208641e-01 -1.12532854e-01 2.51185417e-01 1.15040742e-01\\n-6.36189461e-01 4.42099869e-01 -2.16425151e-01 -3.92091423e-01\\n8.87885243e-02 -1.03830159e-01 5.58911204e-01 -3.40569586e-01\\n3.08581199e-02 -1.37884542e-01 -3.93987238e-01 -3.39751303e-01\\n-1.42173067e-01 -1.94159061e-01 3.90068382e-01 -4.37297374e-01\\n2.52022326e-01 2.28931963e-01 -6.79499984e-01 -4.29788649e-01\\n1.90448895e-01 2.92493075e-01 2.68038690e-01 2.10991263e-01\\n-1.06335461e-01 -6.54755771e-01 2.79191881e-02 -6.01601660e-01\\n-3.45293283e-01 7.30617270e-02 -2.53108948e-01 9.52522457e-02\\n-5.76631725e-02 5.43288607e-03 -1.31190971e-01 5.87391667e-02\\n-1.73447520e-01 1.91271156e-01 -1.32447898e-01 3.34679149e-02\\n2.33289212e-01 7.80984238e-02 -2.60863990e-01 5.83154678e-01\\n-2.05385119e-01 5.13628244e-01 1.31358886e-02 -7.55238533e-01\\n5.81305981e-01 3.93368602e-01 8.02817121e-02 -2.38318413e-01\\n5.76504588e-01 -3.25649142e-01 -1.25092208e-01 1.46722794e-01\\n-3.20407927e-01 -1.34183630e-01 1.78138554e-01 -4.29830134e-01\\n-2.88591683e-01 5.04212081e-01 9.55815762e-02 1.98618919e-01\\n3.28001767e-01 -1.98156059e-01 -1.58077598e-01 1.62954867e-01\\n-2.60754347e-01 -1.35032460e-01 -4.88017321e-01 -1.11145619e-02\\n-1.09894410e-01 -3.10110450e-01 -8.66682976e-02 -4.16223526e-01\\n-1.62458345e-01 -4.00335014e-01 -1.53964087e-01 -1.44013632e-02\\n1.45980358e-01 1.68479592e-01 -3.77351716e-02 -1.15019262e-01\\n3.83327976e-02 -7.50463128e-01 -2.26425193e-02 -5.29739074e-02\\n2.48868734e-01 2.34864816e-01 2.92786121e-01 3.14666592e-02\\n4.59447876e-02 4.71697271e-01 -4.13966596e-01 -2.64527649e-01\\n7.85053745e-02 8.81357789e-02 -1.00785829e-01 -6.82438165e-02\\n5.08707240e-02 1.12746067e-01 -3.25165033e-01 4.29151952e-03\\n-9.66105759e-02 6.43548295e-02 3.35586041e-01 -1.10191926e-01\\n-2.01760694e-01 -1.68754850e-02 -2.31002748e-01 1.80770174e-01\\n-5.25746524e-01 -4.34828520e-01 5.59399664e-01 2.16196682e-02\\n9.59829148e-03 3.39529306e-01 1.33651912e-01 3.17488685e-02\\n-3.48861068e-01 -3.65478575e-01 4.08766747e-01 1.60561055e-01\\n1.33144349e-01 1.21597975e-01 3.80218178e-02 -6.67538583e-01\\n-3.05873823e+00 -6.17777109e-02 3.82132418e-02 -1.89406097e-01\\n4.14980292e-01 1.30867204e-02 1.68434471e-01 -3.71458344e-02\\n-4.45917487e-01 -4.07822132e-02 -1.41197965e-01 -2.61001140e-01\\n4.68694568e-02 2.32462987e-01 1.64793730e-01 6.91835284e-02\\n-2.62111053e-03 -3.84462297e-01 8.80558342e-02 2.85796702e-01\\n-6.82753623e-02 -7.75471151e-01 3.67415547e-02 1.06540114e-01\\n9.42885727e-02 2.16603220e-01 -4.85599637e-01 -6.20426461e-02\\n-3.35193455e-01 -2.77159154e-01 2.72731930e-01 -2.90507764e-01\\n-2.70232320e-01 1.13401391e-01 2.20221788e-01 6.80987686e-02\\n-1.64314941e-01 -2.48836935e-01 -1.74254686e-01 -5.38170695e-01\\n1.41248852e-01 -6.25723243e-01 -1.87455148e-01 -1.72063038e-02\\n5.74367523e-01 -2.02129241e-02 3.81945908e-01 2.53758758e-01\\n1.27129462e-02 1.17836654e-01 2.72749960e-01 6.58520088e-02\\n-2.14218408e-01 -2.32963234e-01 -1.28913000e-01 -1.45377606e-01\\n5.89571953e-01 3.03469956e-01 -2.15279862e-01 -8.83492678e-02\\n1.74333602e-01 -2.98516035e-01 -5.83107710e-01 -1.98955581e-01\\n-1.38482243e-01 -1.07885048e-01 -7.23694921e-01 -6.17788792e-01\\n-1.37287498e-01 -1.99022368e-01 -4.99126911e-02 7.00236797e-01\\n-3.11717749e-01 -1.20480046e-01 -1.26693740e-01 -5.38578629e-01\\n3.72536838e-01 -1.86147541e-01 5.04276976e-02 -2.26332963e-01\\n-3.27819049e-01 -3.33191395e-01 1.52537286e-01 3.61270867e-02\\n-1.09392002e-01 -1.21011838e-01 4.21941690e-02 -8.72536153e-02\\n-5.46141446e-01 -5.13643265e-01 3.56811106e-01 1.18744433e-01\\n3.84875000e-01 7.62618035e-02 2.44185984e-01 -6.45570830e-02\\n3.93647492e-01 2.13175327e-01 3.49211842e-02 -3.28929365e-01\\n-8.53152946e-04 -1.10033259e-01 4.73418772e-01 -2.22450301e-01\\n-3.95352021e-02 -1.85041204e-02 -3.54374528e-01 -5.81390262e-02\\n4.10307676e-01 -3.39608371e-01 6.42432943e-02 4.48559187e-02\\n3.07339311e-01 -3.28091770e-01 -4.42240387e-04 4.74730767e-02\\n1.03277467e-01 7.87029982e-01 -2.00506765e-02 -3.12873065e-01\\n6.53456599e-02 4.84357804e-01 -1.16644919e-01 2.00057209e-01\\n-6.56557530e-02 -4.18547615e-02 -2.00842202e-01 3.48425388e-01\\n-3.77023518e-02 -1.65450096e-01 -1.06197633e-01 -1.10520497e-01\\n-2.14247942e-01 1.66636139e-01 1.81638435e-01 1.58576161e-01\\n-1.51923165e-01 -1.47565335e-01 -2.01503411e-01 4.13872898e-01\\n3.09004039e-01 3.56837451e-01 2.58016229e-01 -2.40901619e-01\\n2.82631367e-02 1.56962231e-01 -2.75030643e-01 4.22598422e-01\\n-3.24577123e-01 2.89073467e-01 -6.64871454e-01 -1.43727466e-01\\n-4.65996861e-01 -3.96284163e-01 2.59475917e-01 3.38967562e-01\\n2.97228634e-01 -2.06053838e-01 1.51987657e-01 -5.83863378e-01\\n3.26926410e-02 2.09997594e-01 1.81305930e-02 3.96323875e-02\\n-2.45413586e-01 6.36228204e-01 -4.06591743e-02 -9.73383784e-02\\n3.27425227e-02 -6.35855645e-02 -2.20548674e-01 -2.77040541e-01\\n1.11499667e-01 -5.42595923e-01 -1.70647666e-01 4.03657258e-01\\n2.24765718e-01 -8.00242424e-02 -1.76973611e-01 4.08680439e-01\\n8.53495225e-02 -4.04141933e-01 -4.41270381e-01 -2.84796730e-02\\n2.83959687e-01 1.65105835e-02 2.34020829e-01 -6.11977160e-01\\n8.14037621e-02 -2.26918384e-02 1.10521674e-01 3.66688013e-01\\n-1.00717209e-02 9.31022391e-02 -2.18411043e-01 -1.79259181e-01\\n4.23077762e-01 -1.42400786e-01 -8.14289600e-03 1.51702806e-01\\n2.01886564e-01 -3.50987732e-01 -3.29258740e-01 -2.80435868e-02\\n-1.28421992e-01 -3.45943332e-01 -6.73285648e-02 1.74761474e-01\\n-1.21685646e-01 4.26382124e-02 -5.24345100e-01 -2.06147388e-01\\n-2.93926895e-01 2.05035925e-01 3.61565724e-02 -6.19699776e-01\\n-1.55757546e-01 -8.39121863e-02 -5.32069921e-01 3.43240201e-01\\n2.05736428e-01 -1.59070283e-01 2.34105706e-01 9.52995867e-02\\n-1.90687075e-01 -2.09086135e-01 1.18313730e-01 1.38559774e-01\\n-3.67941260e-01 -3.01412106e-01 -2.38272324e-01 -9.73496437e-01\\n1.82587817e-01 1.95172757e-01 -1.36673242e-01 1.20117791e-01\\n-4.23979796e-02 -6.03386700e-01 1.68654859e-01 -3.83858681e-01\\n-5.44190332e-02 1.02767628e-02 -2.79198468e-01 -2.80329645e-01\\n7.49583691e-02 7.76237994e-02 -1.09634623e-01 3.93686295e-01\\n-2.03246742e-01 4.26449180e-01 -1.51202887e-01 -1.50912285e-01\\n-1.93814132e-02 -1.71392500e-01 2.19790295e-01 -1.80859059e-01\\n-4.46960688e-01 -2.63360381e-01 -3.36964369e-01 -2.01839432e-01\\n-1.03932053e-01 -2.50474811e-01 1.07237473e-02 1.77948736e-02\\n4.36653137e-01 6.50257803e-03 -1.00336149e-01 -1.30199894e-01\\n6.65094703e-02 -4.96700794e-01 2.99157985e-02 -3.60830486e-01\\n6.73559830e-02 -2.13295013e-01 2.18530774e-01 2.08065987e-01\\n3.39993209e-01 -4.15723890e-01 5.19020021e-01 -4.51698422e-01\\n-4.01642263e-01 -2.19547108e-01 1.04606353e-01 3.63336131e-02\\n3.25121462e-01 -6.23464584e-01 -7.59521574e-02 3.70156825e-01\\n2.68130414e-02 -7.15454519e-02 2.94797122e-01 -2.86140561e-01\\n-1.20888732e-01 1.93248138e-01 -4.37441349e-01 2.96518713e-01\\n6.64422631e-01 4.04550046e-01 1.50314003e-01 1.95145503e-01\\n1.20136693e-01 2.47663379e-01 6.38301611e-01 -1.68549210e-01\\n-7.20039196e-03 4.06495094e-01 1.07259251e-01 -4.39922929e-01\\n-1.35117978e-01 -7.26668686e-02 1.57358460e-02 -4.30671036e-01\\n6.98233664e-01 2.73953140e-01 -3.79747987e-01 -2.36634582e-01\\n-3.45314324e-01 -1.81749225e-01 3.59881282e-01 5.66240102e-02\\n-7.66157508e-02 9.38081145e-02 5.19822180e-01 -1.23299006e-02\\n3.65838468e-01 4.10720170e-01 -1.97861820e-01 -1.69186041e-01\\n-4.24940959e-02 4.17032242e-01 8.55420455e-02 4.27664816e-01\\n-9.46612135e-02 2.38421336e-01 -5.39368428e-02 1.73492938e-01\\n-2.00624496e-01 -3.33604589e-03 1.74284384e-01 1.42387033e-01\\n2.32574001e-01 1.25318050e-01 5.41251600e-01 3.52053106e-01\\n2.33013898e-01 2.81875312e-01 2.31242567e-01 -1.14579722e-02\\n3.54339153e-01 4.52320665e-01 3.14443946e-01 1.67987943e-02\\n1.50480658e-01 2.77799904e-01 1.47601873e-01 -1.68088116e-02\\n3.17809701e-01 3.20173085e-01 -1.69567764e-02 6.87757254e-01\\n1.22173473e-01 3.11119586e-01 5.96915364e-01 -6.34248734e-01\\n-2.65211374e-01 6.51225224e-02 6.22432232e-01 -4.55231816e-01\\n1.72395676e-01 2.21373647e-01 -1.25444442e-01 3.33469868e-01\\n-4.48151380e-01 -2.44815931e-01 6.23401105e-02 1.13036513e-01\\n1.89520478e-01 -3.76806498e-01 -8.91952813e-02 1.18640773e-01\\n-2.01355517e-01 -3.12619388e-01 -2.56161004e-01 -2.48887166e-01\\n-3.59327644e-01 2.87291687e-02 -1.06178075e-01 -3.65683660e-02\\n-2.15112656e-01 -2.26350993e-01 5.04885167e-02 -5.24986982e-02\\n3.63746732e-01 -1.51461720e-01 -2.99836397e-01 6.08856976e-02\\n5.10223329e-01 2.39921398e-02 5.68501294e-01 -1.47693366e-01\\n3.67185697e-02 -1.63921952e-01 -1.88348413e-01 1.93296611e-01\\n1.58758253e-01 3.48239765e-02 1.29505545e-01 3.74074459e-01\\n-1.61060780e-01 -2.77240068e-01 7.87940770e-02 1.34126440e-01\\n-4.16026801e-01 -1.24537339e-02 -9.68861207e-02 6.63801432e-02\\n-3.46069001e-02 2.16871947e-01 -2.28760198e-01 -4.66132462e-02\\n3.14489305e-02 -6.26270950e-01 2.77413309e-01 -1.65808558e-01\\n-4.05041277e-01 -4.46531251e-02 5.02574563e-01 3.76168191e-01\\n-7.48049617e-02 1.61495972e-02 -1.86737046e-01 1.08606704e-01\\n-7.82465935e-02 2.41280407e-01 -5.88982105e-02 -3.69655192e-01\\n-4.37243104e-01 3.21165204e-01 -1.49376780e-01 2.50494808e-01\\n-2.78768167e-02 3.94391030e-01 5.84165566e-02 1.49188600e-02\\n4.96017456e-01 -4.57513556e-02 -2.21470207e-01 -3.73599648e-01\\n-1.33955747e-01 -1.11581087e-02 2.41576657e-02 2.46831682e-02\\n1.79618418e-01 -3.23660791e-01 -7.25455657e-02 -5.09880781e-01\\n-3.43385115e-02 -4.22159433e-01 -1.12265915e-01 -4.04368229e-02]]',\n", + " 'job_description': 'A leading international healthcare company is seeking to recruit a Data Scientist, Real World Evidence within Oncology, to their team in Switzerland. The organisation is a global provider of automated laboratory instruments and solutions that develops, produces, markets, and supports automated workflow solutions that empower laboratories to achieve more. This vacancy is an excellent opportunity to work with a highly prestigious organisation whose historic presence has been a cornerstone in the pharmaceutical industry. Job Responsibilities: Ask the right scientific questions, understand the evidence needs for research and development, regulatory, and market access, and ideate and make recommendations on fit-for-purpose data and analytics solutions. Develop strategic plans to access fit-for-purpose data sources to support evidence generation and gain access to data through collaboration or data generation. Develop a comprehensive and deep understanding of the data we work with and foster learning with colleagues using analytical tools and applications to broaden data accessibility and advance our proficiency/efficiency in understanding and using the data appropriately. Stay current with and adopt emergent analytical methodologies, tools and applications to ensure fit-for-purpose and impactful approaches. Apply rigor in study design and analytical methods; plan for data processing; design a fit-for-purpose analysis plan, assess effective ways of presenting and delivering the results to maximize impact and interpretability; implement and/or oversee the study, including its reporting; ensure compliance with applicable pharma industry regulations and standards. Communicate findings to internal stakeholders, regulatory, health technology assessment (HTA) bodies and scientific communities; publish results; participate in external meetings and forums to present your insights (e.g. congress/conference). Collaborate and contribute to functional, cross-functional, enterprise-wide or external data science communities, networks, collaborations, initiatives or goals on knowledge-sharing, methodologies, innovations, technology, IT infrastructure, policy-shaping, processes, etc. to enable broader and more effective use of data and analytics to support the business. Skills and Requirements: MSc or PhD in epidemiology, pharmacoepidemiology, biostatistics, and/or public health (with focus on epidemiology/observational research). Demonstrated track record of designing, developing, executing, and interpreting epidemiological or outcomes research projects, with publications and presentations. Demonstrated experience with managing project scope and driving delivery in an evolving environment. Relevant work experience Good knowledge of drug development and life cycle management. Good therapeutic and disease area knowledge (chronic diseases/oncology preferred). Excellent knowledge in epidemiological methodology and ability to apply it within the pharmaceutical industry. Proven ability to translate and communicate complex study design and findings to diverse audiences. Please note that depending on your experience and qualifications, we may offer one of these titles: Data Scientist, Senior Data Scientist or Principal Data Scientist. Demonstrable multitasking, project management, and execution skills. Good interpersonal skills, including communication, presentation, persuasion, and influence. Good organisational skills, including efficiency, punctuality, and collaboration in a team environment. Proficiency with computer skills, such as MS Office. To Apply: Please click on the Apply button. Please include a short note outlining why you are interested in the role and why you think you are suitable. In case you have difficulty in applying or if you have any questions, please contact Emma Adams at +44 203 854 3893 or upload your CV on our website - www.proclinical.com. A full job description is available on request. Proclinical Staffing is a specialist employment agency and recruitment business, providing job opportunities within major pharmaceutical, biopharmaceutical, biotechnology and medical device companies. Proclinical Staffing is an equal opportunity employer. #LI-EA1 #Biometrics',\n", + " 'soft_skills': '[\"Punctuality\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Multitasking\", \"Presentations\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Biometrics\", \"Automation\", \"MSC Software\", \"Outliner\", \"Tooling\", \"Accessioning\", \"Epidemiology\", \"Analytics\", \"Project Management Life Cycle\", \"Industrialization\", \"Clinical Study Design\", \"Biotechnology\", \"IT Infrastructure\", \"Outcomes Research\", \"Component Object Model (COM)\", \"External Data Representation\", \"Track (Rail Transport)\", \"Technology Assessment\", \"Oncology\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Instrumentation\", \"E (Programming Language)\", \"Translations\", \"Executable\", \"Chronic Diseases\", \"Medical Devices\", \"Workflow Automation\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Equalization\", \"Biostatistics\", \"Network Communications\", \"Communication Sciences\", \"Electronic Data Processing\", \"Direct Market Access\", \"Strategic Planning\", \"Pharmaceuticals\", \"Research And Development\", \"Executive Development\", \"Project Management\", \"Public Health\", \"Job Descriptions\", \"Health Technology\", \"Drug Development\", \"Project Scoping\", \"Adoptions\", \"Source Data\", \"Biopharmaceuticals\"]',\n", + " 'languages': \"['English', 'French', 'Serbian', 'Malay', 'Uzbek']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'software engineer .net / c#',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.39995795e-02 3.35250646e-01 5.78792751e-01 -1.29941076e-01\\n4.64701653e-01 -3.69766057e-01 1.05191454e-01 3.63712847e-01\\n-5.13378531e-02 -3.42865735e-01 -1.91628918e-01 -2.82905370e-01\\n1.18555920e-02 1.20631464e-01 4.96344790e-02 2.93974698e-01\\n2.87849218e-01 6.71490356e-02 -1.34868041e-01 3.21233898e-01\\n2.02394545e-01 -1.30778149e-01 1.28763229e-01 6.65439785e-01\\n3.76757056e-01 -6.70232158e-03 3.41307861e-03 9.77772772e-02\\n-2.33811677e-01 -3.04761469e-01 4.08054709e-01 -2.24661604e-02\\n-4.05807234e-03 -2.65985578e-01 8.79088417e-02 4.40241732e-02\\n-1.74539521e-01 1.22085281e-01 5.57244420e-02 1.70685753e-01\\n-3.72524589e-01 -1.82705134e-01 9.64485928e-02 -3.06541789e-02\\n-1.52956501e-01 -3.96577328e-01 1.02722690e-01 2.05065776e-03\\n1.85473919e-01 4.01727222e-02 -3.96216303e-01 3.93563092e-01\\n-2.82718867e-01 -2.88695216e-01 2.88813591e-01 5.86105168e-01\\n-2.87808683e-02 -6.05412900e-01 -4.17917490e-01 -1.98869005e-01\\n2.20193252e-01 -6.08862601e-02 9.76299867e-02 -2.49703109e-01\\n4.94848758e-01 -6.30363682e-03 4.58837673e-02 3.70801359e-01\\n-8.31132829e-01 4.88173366e-02 -2.14614958e-01 4.26024087e-02\\n-3.06188822e-01 -4.77559641e-02 -2.46833116e-01 -1.40547246e-01\\n-1.37120947e-01 4.27567571e-01 2.03950688e-01 4.74188738e-02\\n-7.58213028e-02 2.70213068e-01 -3.34931374e-01 2.23179609e-01\\n2.85451114e-01 3.23207170e-01 2.47570544e-01 2.34550208e-01\\n-4.75566864e-01 5.14151394e-01 2.19023958e-01 -2.24276215e-01\\n1.74022168e-01 9.22211409e-02 4.09278154e-01 2.57765986e-02\\n1.24465972e-01 6.41222969e-02 -2.28002712e-01 2.03150481e-01\\n2.81742156e-01 -2.36419246e-01 -6.78101555e-02 7.87941366e-02\\n-4.66147736e-02 5.15802465e-02 -5.10821342e-02 4.08931136e-01\\n-3.71488631e-01 6.07856989e-01 3.30002792e-02 -2.16771588e-01\\n-4.99735698e-02 -6.43660605e-01 -2.40363851e-01 9.63097885e-02\\n3.77016999e-02 1.08179785e-01 1.82061657e-01 3.42771620e-01\\n1.24615729e-01 1.31780699e-01 1.82801828e-01 1.00848806e+00\\n-3.51740159e-02 2.01524645e-01 -2.78994381e-01 4.57489371e-01\\n4.06039618e-02 -2.77916789e-01 2.94273019e-01 3.60021681e-01\\n1.67656019e-01 -1.14639737e-01 -1.00077674e-01 2.94764012e-01\\n3.31706032e-02 -3.05054426e-01 -3.42874438e-01 1.27677307e-01\\n-1.40103906e-01 -5.24720609e-01 5.60441852e-01 7.54762962e-02\\n8.10468867e-02 4.69054990e-02 -3.64233293e-02 -7.65441284e-02\\n-1.04856446e-01 2.79342830e-01 6.16928302e-02 1.26006663e-01\\n-2.94955283e-01 -1.98590606e-01 -3.45345467e-01 2.75270402e-01\\n-2.06399292e-01 1.16404884e-01 -1.42051712e-01 -1.20138913e-01\\n3.86669248e-01 -1.49370346e-03 -3.29746932e-01 3.62275094e-01\\n-9.14096385e-02 2.26053619e-03 -1.00520641e-01 2.36930132e-01\\n-1.37323707e-01 1.67278334e-01 -8.75476748e-02 -2.01294601e-01\\n4.28184003e-01 1.23512268e-01 2.00953439e-01 -1.59641877e-01\\n3.57140481e-01 -1.32429183e-01 4.70495634e-02 2.42503993e-02\\n-7.12123096e-01 4.55628633e-01 -4.73668501e-02 -1.05156861e-01\\n4.82615680e-02 -1.69987064e-02 2.71746337e-01 -3.17442954e-01\\n1.08821206e-02 -1.67923570e-01 -3.89507741e-01 -2.87922502e-01\\n-1.20596610e-01 1.32114692e-02 5.45547128e-01 -4.38488662e-01\\n-1.54664502e-01 9.37325209e-02 -6.01531386e-01 9.80301350e-02\\n3.31798553e-01 2.32450500e-01 1.99254230e-01 1.17177546e-01\\n-2.33570963e-01 -4.69137609e-01 1.97242036e-01 -3.82882237e-01\\n-2.14146540e-01 1.82689011e-01 -2.53345102e-01 2.85357445e-01\\n1.42731965e-01 -5.83715551e-02 -1.54751733e-01 9.87009630e-02\\n-8.83767605e-02 -1.07187495e-01 3.09135675e-01 6.02564253e-02\\n3.17919791e-01 -6.83641434e-02 -3.73569489e-01 5.16927361e-01\\n-2.36638024e-01 4.06869829e-01 5.02030253e-02 -8.49887669e-01\\n4.18810159e-01 3.91902357e-01 3.86040546e-02 -4.14703190e-01\\n8.00929070e-01 -1.94809258e-01 -8.26516077e-02 1.40963584e-01\\n-4.87086147e-01 -2.53189653e-01 7.31034949e-02 -1.29148483e-01\\n-2.64219373e-01 5.28288841e-01 1.57841802e-01 2.48751719e-03\\n3.03817570e-01 -1.67177364e-01 -5.63406050e-02 4.20106612e-02\\n-1.03009053e-01 -2.63718486e-01 -3.59898597e-01 2.95773707e-02\\n9.33025032e-04 -5.64894319e-01 -1.64464742e-01 -4.48738456e-01\\n-2.29870215e-01 -3.85623068e-01 -2.84457594e-01 3.02222729e-01\\n7.86871389e-02 1.71372771e-01 4.33371961e-02 -4.39497270e-02\\n-2.78310090e-01 -5.91726780e-01 5.89052066e-02 2.03073859e-01\\n3.46185327e-01 2.10832834e-01 -1.33104362e-02 -1.03311993e-01\\n-5.84570095e-02 6.04193866e-01 -2.05098584e-01 -1.40605584e-01\\n1.08209684e-01 1.39762253e-01 4.72012609e-02 -1.05087914e-01\\n1.53457165e-01 3.73826772e-01 -2.18837425e-01 2.22453242e-03\\n-1.84212878e-01 1.01875596e-01 2.89617628e-01 -1.31458100e-02\\n-3.10870618e-01 -3.99476796e-01 -1.03770129e-01 2.09014311e-01\\n-5.55365026e-01 -1.96462154e-01 5.97025633e-01 1.30548239e-01\\n4.63644043e-02 1.57617778e-01 2.10942939e-01 -9.38930586e-02\\n-1.89529091e-01 -1.20896824e-01 1.92022502e-01 4.83548306e-02\\n1.36211485e-01 1.53590322e-01 -1.63846135e-01 -4.46112633e-01\\n-3.63659501e+00 -1.80078432e-01 -5.42014651e-03 -3.12845737e-01\\n2.97223538e-01 -1.54581055e-01 2.19552338e-01 -1.65595278e-01\\n-1.88669026e-01 3.05460449e-02 -9.51548964e-02 -1.36965632e-01\\n2.81775981e-01 2.40435064e-01 1.09840468e-01 3.13061804e-01\\n1.25040293e-01 -2.22727150e-01 4.76853130e-03 3.64664197e-01\\n-1.93489149e-01 -6.12320125e-01 2.30651960e-01 -1.06236584e-01\\n3.37590873e-01 3.19241226e-01 -4.68604296e-01 -7.57416487e-02\\n-1.80577040e-01 -2.22853854e-01 1.57241955e-01 -2.44731724e-01\\n-1.43219884e-02 2.94258326e-01 1.58158228e-01 -1.20368332e-01\\n2.44422495e-01 -3.11997265e-01 5.91555703e-03 -4.03323650e-01\\n8.40874389e-02 -5.94538689e-01 -6.14618436e-02 -6.66272342e-02\\n6.66004419e-01 -4.09932256e-01 1.95654392e-01 1.23809896e-01\\n2.07823701e-02 2.83911139e-01 4.53063548e-02 -1.76372513e-01\\n-1.97235227e-01 -2.66823083e-01 -5.79562448e-02 -2.25702286e-01\\n4.66666043e-01 6.96216285e-01 -2.94844300e-01 -6.37403950e-02\\n-8.23288560e-02 -3.42556387e-01 -5.09594858e-01 -4.12853509e-01\\n-2.54454225e-01 -1.26878396e-01 -6.33693337e-01 -4.84593600e-01\\n-1.54982507e-01 -1.42191112e-01 -5.85608259e-02 4.69030470e-01\\n-2.36090988e-01 -4.54550534e-01 -6.02466352e-02 -4.16607738e-01\\n8.01975727e-02 -9.71060023e-02 -2.93771345e-02 -9.37598273e-02\\n-2.48133451e-01 -4.78813738e-01 -6.90025929e-03 -1.76193304e-02\\n-1.49136111e-01 -8.99743140e-02 2.71314949e-01 -2.03736812e-01\\n-3.03722858e-01 -5.82876921e-01 4.73527908e-01 4.42071855e-02\\n3.33470196e-01 1.40813708e-01 2.42255077e-01 9.47453231e-02\\n3.66359681e-01 -2.70765573e-01 1.25461772e-01 -3.78114522e-01\\n8.91728625e-02 9.37936008e-02 5.73961973e-01 -2.37132847e-01\\n-2.01754272e-02 7.31562525e-02 -2.53148168e-01 -1.96580127e-01\\n3.42683792e-01 2.64596697e-02 1.71553433e-01 -3.61900806e-01\\n3.61735135e-01 -3.27515870e-01 -3.00484151e-01 1.41570300e-01\\n1.09479986e-01 5.15654206e-01 -9.24759433e-02 -4.34977323e-01\\n-2.27275729e-01 4.21392083e-01 -2.26698771e-01 -1.52374223e-01\\n-2.13429123e-01 2.97520813e-02 -3.47439438e-01 3.04347426e-01\\n-2.04450246e-02 1.73302069e-02 -3.29923093e-01 -4.20465767e-02\\n2.10618768e-02 2.77067512e-01 2.57934481e-01 1.13589779e-01\\n-4.24875617e-02 -3.79611403e-01 -2.14846246e-02 3.23617011e-02\\n1.62662297e-01 3.17998976e-01 6.05719984e-02 -1.21278904e-01\\n-2.18761172e-02 3.60093772e-01 -2.38716230e-01 2.05808297e-01\\n-2.53398567e-01 2.31435914e-02 -4.92392689e-01 -3.88980508e-01\\n-1.43900841e-01 -1.96623087e-01 -1.08339354e-01 2.94260293e-01\\n1.12443842e-01 -4.80814911e-02 4.07402106e-02 -4.20604438e-01\\n2.32162371e-01 -4.18848023e-02 2.91334361e-01 2.43431717e-01\\n-2.35292129e-02 5.76835871e-01 -1.72726139e-02 -1.37904301e-01\\n-1.62628219e-01 5.69730178e-02 -2.79366702e-01 -7.88518339e-02\\n2.56062914e-02 -4.27904785e-01 -8.10970645e-03 3.98097992e-01\\n1.08125590e-01 -3.61608803e-01 -9.99841392e-02 3.23307127e-01\\n-1.15581444e-02 -4.54943866e-01 -1.64581299e-01 1.22221999e-01\\n3.09805959e-01 1.02784693e-01 2.58078277e-01 -4.92193967e-01\\n-7.67409755e-03 9.98756289e-02 -1.29717037e-01 4.82860923e-01\\n-2.86095627e-02 1.20670937e-01 -4.59373035e-02 -3.21812332e-01\\n3.14715654e-01 -1.34326324e-01 -9.52776149e-03 -8.16570669e-02\\n1.50452837e-01 -1.22944333e-01 -4.04615492e-01 -1.07274083e-02\\n-3.86911333e-02 -9.39931050e-02 1.88949164e-02 1.31937265e-02\\n9.20329243e-02 4.48798463e-02 -4.75471020e-01 -2.82731950e-01\\n-3.28823209e-01 -1.26031414e-01 -9.33070257e-02 -3.89814317e-01\\n7.66213536e-02 -4.30215970e-02 -5.35311818e-01 3.65594536e-01\\n-1.47409961e-01 7.34477267e-02 2.19290018e-01 -3.70027847e-03\\n-4.59182531e-01 -1.23398535e-01 2.43806079e-01 2.10411221e-01\\n-3.34555000e-01 -2.70502090e-01 -6.12781830e-02 -9.74847734e-01\\n2.23563954e-01 -1.32047281e-01 -5.51519170e-02 7.02798739e-02\\n-8.03746060e-02 -5.10082066e-01 2.57669002e-01 -4.35314298e-01\\n-1.90430090e-01 -2.80766599e-02 -2.15726376e-01 -4.35656816e-01\\n-7.02216849e-02 -7.43538514e-03 -2.79765308e-01 4.07338262e-01\\n-3.65778923e-01 4.01677161e-01 -8.79502594e-02 3.65646593e-02\\n-1.05069071e-01 -1.64712012e-01 1.11720599e-01 -4.66668516e-01\\n-5.02142787e-01 -1.49727985e-01 -2.39411965e-01 -1.53811529e-01\\n-3.02266255e-02 -1.59854606e-01 -1.39973417e-01 7.52397925e-02\\n2.43774444e-01 1.40858382e-01 -2.69311313e-02 -1.26812980e-01\\n6.14742897e-02 -4.21969086e-01 -5.07393442e-02 -2.01066181e-01\\n4.59013395e-02 -1.58128083e-01 1.33343488e-01 4.38675024e-02\\n3.20338607e-02 -4.69429910e-01 4.61370587e-01 -1.42458960e-01\\n-2.73617834e-01 4.47295234e-02 6.48807660e-02 1.52496308e-01\\n3.29329491e-01 -4.24849182e-01 1.68828312e-02 3.20536673e-01\\n1.39476359e-01 1.10014372e-01 2.33474627e-01 -7.79749379e-02\\n-2.37630859e-01 3.01276982e-01 -3.39940608e-01 9.36526209e-02\\n7.64296114e-01 1.67809755e-01 1.52172565e-01 2.72762775e-01\\n1.77274048e-01 3.55184823e-01 4.46117073e-01 6.18371591e-02\\n-4.26048711e-02 4.17723596e-01 7.46866614e-02 -5.09685516e-01\\n1.17228299e-01 1.03521749e-01 -3.11587095e-01 -2.56383002e-01\\n6.21267259e-01 4.94621307e-01 -3.24777246e-01 -3.22307646e-01\\n-2.52845705e-01 -1.94170386e-01 1.16937272e-01 -2.23922640e-01\\n1.74328923e-01 -2.14896247e-01 5.12992203e-01 9.88713726e-02\\n1.07385509e-01 4.45189208e-01 -2.28208110e-01 -3.57998699e-01\\n1.01103447e-01 1.40395120e-01 1.92834616e-01 2.40782216e-01\\n-1.14868246e-01 2.20514715e-01 -5.86164743e-02 1.77401662e-01\\n-1.33047312e-01 1.18686154e-01 1.21529825e-01 9.31338668e-02\\n1.08821215e-02 7.98870325e-02 3.22156370e-01 5.01354277e-01\\n3.23970228e-01 4.31119919e-01 1.88143447e-01 7.00362027e-03\\n4.64333981e-01 5.49779534e-01 3.90707433e-01 2.16324568e-01\\n-6.71236068e-02 -1.84571594e-02 2.77564861e-02 -1.75713617e-02\\n2.70239383e-01 3.27943951e-01 4.27183136e-02 8.96209955e-01\\n4.15628254e-01 2.01356903e-01 7.06834555e-01 -5.38191974e-01\\n-4.03924614e-01 -2.20054537e-02 4.06180114e-01 -4.42725331e-01\\n-1.56852707e-01 6.34243414e-02 -2.69979745e-01 1.39637470e-01\\n-4.64405179e-01 -1.67816415e-01 -9.86833572e-02 -2.07132902e-02\\n1.56364813e-01 -7.98116028e-02 -2.51188636e-01 -1.63048536e-01\\n-2.13829294e-01 -1.47049710e-01 -4.93398756e-01 -9.49210078e-02\\n-2.43086159e-01 -2.77882189e-01 -1.40593156e-01 -1.97990164e-01\\n-2.70161703e-02 -4.08469588e-01 -2.23765329e-01 5.66765554e-02\\n2.74015367e-01 -1.26930490e-01 -4.19663452e-02 -1.30328238e-01\\n2.51100123e-01 1.97219402e-01 6.05810344e-01 -4.75016888e-03\\n7.04863444e-02 -1.73395634e-01 -1.75210580e-01 7.97345713e-02\\n2.33371556e-01 1.60470307e-01 -3.59520898e-03 4.69539464e-01\\n-4.02127236e-01 -1.48868710e-01 -1.36767412e-02 5.23167729e-01\\n-3.91351730e-01 7.47904927e-02 1.01863958e-01 2.67115712e-01\\n7.03318715e-02 3.38105075e-02 -1.85994923e-01 5.06803989e-02\\n-2.51456648e-01 -5.16831756e-01 2.65523374e-01 -7.86855295e-02\\n-1.57653168e-01 4.39037345e-02 1.11513242e-01 1.54173389e-01\\n-1.71496153e-01 -1.53831363e-01 1.05763435e-01 1.37929469e-01\\n2.76641995e-01 3.32663387e-01 -2.58737832e-01 -2.65550166e-01\\n-3.86903614e-01 1.53313428e-01 -3.75429720e-01 1.95665315e-01\\n-7.92288184e-02 2.23854959e-01 4.78915051e-02 2.10408419e-01\\n2.89527982e-01 -6.43686205e-02 -1.07713558e-01 -2.83538729e-01\\n-3.00297737e-01 -2.80480921e-01 1.03980675e-01 3.08904573e-02\\n1.03786029e-01 -4.48357999e-01 -1.15784578e-01 -5.52665740e-02\\n-1.64544910e-01 -3.73970807e-01 1.89681482e-02 -1.53350011e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Software Engineer .NET / C#. The role is permanent position based in Zürich Canton. Your role: Design and develop core components for a PC-based client-server application Develop & implement concepts independently. Carry out feature development of client & / or server: Analysis, conception, design, implementation & unit testing. Perform design & code reviews with team members. Train & support team members in development work when necessary. Work closely with cooperation partners composed of product managers, requirements engineers & development teams for software instruments. Your Skills & Profile: 3 to 5 years of relevant work experience in software engineering environment. Strong practical experience & expertise with the .NET Framework & C#. Solid know-how of phase models & agile methods. Good Knowledge of OOA / OOD, UML & OO implementations. Ideally experienced with WPF, WCF, NHibernate & Autofac. Your Profile: University Degree in Computer Science. Proactive, self-driven & consistently aim to achieve high performance. Fluent English (spoken & written), German language skills are a big plus If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Proactivity\", \"Positivity\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Production Management\", \"NHibernate\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"High Performance Computing\", \"Requirements Management\", \"Autofac\", \".NET Framework\", \"Component Object Model (COM)\", \"Instrumentation\", \"Idealization\", \"Feature-Driven Development (FDD)\", \"Reporting Application Server\", \"Software Engineering\", \"Wcf 4\", \"Requirements Engineering\", \"C# (Programming Language)\", \"Phase (Waves)\", \"Code Review\", \"Receivables\", \"Concept Analysis\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '41',\n", + " 'job_title': 'software engineer - javascript/scala/machine learning',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.19342285e-01 1.81136325e-01 4.31088746e-01 -1.60901487e-01\\n4.10918951e-01 -8.67805108e-02 -6.26184195e-02 5.22232115e-01\\n-8.42604712e-02 -2.47504920e-01 -2.18544245e-01 -3.24308634e-01\\n8.97972062e-02 1.08883873e-01 1.65337056e-01 3.10236186e-01\\n3.08304667e-01 2.56755319e-03 -3.04417580e-01 1.82255983e-01\\n2.28875801e-01 -3.78732570e-02 7.41434693e-02 7.44441450e-01\\n4.90626186e-01 1.74559981e-01 4.43047322e-02 -1.50399029e-01\\n-1.28601298e-01 -1.91238746e-01 5.72216988e-01 -4.49501425e-02\\n-6.96651191e-02 -2.08408922e-01 1.79716334e-01 9.49267820e-02\\n-1.79737762e-01 -2.00217351e-01 2.48300210e-02 2.42804617e-01\\n-3.90633553e-01 -2.98790097e-01 -1.17210681e-02 4.17491421e-02\\n-3.32288533e-01 -4.63986248e-01 2.88865060e-01 -1.55572528e-02\\n2.44128436e-01 1.31436244e-01 -4.99969244e-01 2.80061662e-01\\n-1.91263422e-01 -1.31407812e-01 3.73712003e-01 6.18750751e-01\\n-3.97483185e-02 -3.61107945e-01 -5.28609037e-01 -4.22803104e-01\\n-3.90197150e-02 1.13913007e-01 -5.71367480e-02 -2.71627784e-01\\n2.34543040e-01 1.36240572e-01 8.62427987e-03 5.11701405e-01\\n-8.12334001e-01 -1.13012016e-01 -2.39662677e-01 -8.64790380e-02\\n-3.17643136e-01 -3.25453579e-02 -1.90938011e-01 -3.58071417e-01\\n-7.14236870e-02 4.61017787e-01 1.25890851e-01 1.18652925e-01\\n-9.49859694e-02 3.59456241e-01 -1.46789208e-01 4.00276482e-01\\n1.98676348e-01 2.13330477e-01 8.39599371e-02 2.44358882e-01\\n-5.49195588e-01 3.21369290e-01 1.43215090e-01 -2.22701252e-01\\n1.93573520e-01 5.26475534e-03 4.74725157e-01 2.97191720e-02\\n1.24389142e-01 4.51385528e-02 -2.31437340e-01 2.39587903e-01\\n2.43238583e-01 -2.02112943e-01 5.23226857e-02 4.25398909e-02\\n-1.64405137e-01 3.29763144e-02 -4.62663174e-02 1.28205195e-01\\n-3.40232402e-01 4.66732472e-01 2.35703960e-02 -2.01361373e-01\\n-4.33659777e-02 -5.80004752e-01 -2.80267280e-02 1.21275103e-02\\n2.44357046e-02 1.67777181e-01 9.46337134e-02 1.78465709e-01\\n1.37468755e-01 -1.52569190e-01 1.88763335e-01 8.05732965e-01\\n-1.14600785e-01 2.74602827e-02 -2.44367778e-01 3.69928777e-01\\n-1.45950541e-01 -3.67948234e-01 3.50265443e-01 1.72814861e-01\\n4.89646289e-03 -5.96176982e-02 -2.51221180e-01 4.14095700e-01\\n-5.01370132e-02 -1.51512563e-01 -3.23573977e-01 3.54495019e-01\\n-1.70885399e-01 -3.81304085e-01 4.89407748e-01 -5.46506681e-02\\n1.25963286e-01 -1.50730595e-01 -6.12580255e-02 -3.26082595e-02\\n5.54982945e-03 6.91239387e-02 -2.51286495e-02 -1.31055294e-02\\n-2.20789805e-01 -2.38931373e-01 -2.13980854e-01 1.36114031e-01\\n-1.34211496e-01 2.65044689e-01 -5.05102053e-03 -1.08604558e-01\\n3.20245087e-01 -6.41912688e-04 -3.25966150e-01 3.79401356e-01\\n-6.15211353e-02 1.22886002e-01 -1.34850800e-01 2.10042864e-01\\n-2.70947307e-01 1.36978120e-01 -6.49424717e-02 -2.85965234e-01\\n6.70593381e-01 6.31957781e-03 1.32618472e-01 5.88973686e-02\\n2.77708024e-01 -8.46680403e-02 2.79738814e-01 1.20237604e-01\\n-7.62676060e-01 3.91593635e-01 -3.30742635e-02 -1.61631200e-02\\n6.68700337e-02 -1.90229818e-01 2.35450685e-01 -2.91392654e-01\\n3.35854553e-02 2.48182975e-02 -3.72044474e-01 -3.33673626e-01\\n-2.73872346e-01 -3.98267768e-02 3.21471035e-01 -3.50116163e-01\\n-1.99006483e-01 1.43123105e-01 -4.66322035e-01 -4.17253450e-02\\n1.51570708e-01 1.00866437e-01 1.42859682e-01 1.45642295e-01\\n-1.83142051e-01 -4.79768217e-01 5.28754815e-02 -5.36527991e-01\\n-1.89959466e-01 1.07251368e-01 -2.85337418e-01 2.26660341e-01\\n7.51121566e-02 6.71514124e-02 -1.74602315e-01 -8.21924210e-03\\n-2.28629753e-01 -5.91553375e-02 2.00148404e-01 3.31991613e-02\\n3.02762836e-01 1.14476062e-01 -3.41458499e-01 5.03612757e-01\\n-2.45982364e-01 5.12931943e-01 1.23211980e-01 -8.12644958e-01\\n4.57919210e-01 5.22098422e-01 -2.13325527e-02 -4.05561537e-01\\n7.19655275e-01 -2.63673067e-01 -6.28801510e-02 1.86544225e-01\\n-5.86722374e-01 -3.16703498e-01 2.63397336e-01 -3.64431828e-01\\n-1.82355210e-01 6.45250142e-01 6.18461147e-02 6.05282821e-02\\n1.93730548e-01 -1.97166026e-01 -1.26565933e-01 1.47543490e-01\\n-1.15413450e-01 -2.15338185e-01 -4.45533901e-01 -1.61614250e-02\\n-1.49535120e-01 -4.24727201e-01 -2.33451128e-01 -4.60280031e-01\\n-9.29819867e-02 -3.33145261e-01 -2.37518898e-03 2.18881980e-01\\n1.86330870e-01 -6.08280525e-02 1.04105487e-01 6.76739886e-02\\n-1.97936013e-01 -4.13433462e-01 5.88760115e-02 -7.81613495e-03\\n3.58421952e-01 2.71300375e-01 -1.29200204e-03 9.52208489e-02\\n-1.67398865e-03 6.82544708e-01 -3.86782557e-01 -1.17535561e-01\\n1.77442014e-01 1.73393533e-01 4.80011627e-02 -1.06415316e-01\\n9.08299237e-02 2.05960900e-01 -4.11512136e-01 -1.17996456e-02\\n-1.65786251e-01 1.37561172e-01 2.29779616e-01 4.46937270e-02\\n-1.96353987e-01 -3.24490607e-01 -1.54591382e-01 2.63263792e-01\\n-3.61809939e-01 -1.76518843e-01 6.08534455e-01 1.10960938e-01\\n1.41477585e-01 1.86081737e-01 2.43466511e-01 -1.03352562e-01\\n-2.06096902e-01 -2.26634204e-01 1.73313707e-01 2.37825394e-01\\n7.25073889e-02 7.70985857e-02 -2.84317671e-03 -4.88712609e-01\\n-2.71430135e+00 -5.74638397e-02 1.18139923e-01 -1.38285458e-01\\n1.94370031e-01 -2.54102677e-01 1.24196716e-01 -8.79071206e-02\\n-3.64636928e-01 -5.31982817e-02 -1.62161618e-01 -2.50386357e-01\\n2.40171865e-01 3.31475586e-01 1.66182712e-01 2.62444466e-01\\n7.93102533e-02 -3.50262046e-01 -2.56643910e-02 2.82971740e-01\\n-2.40375012e-01 -6.87352836e-01 1.89345852e-01 -7.94614404e-02\\n2.99564868e-01 2.21134931e-01 -4.58120793e-01 -1.83168411e-01\\n-3.27253431e-01 -3.39169681e-01 1.92315131e-01 -3.81347001e-01\\n6.05004318e-02 3.56053263e-01 2.52672285e-01 -1.59194663e-01\\n1.31252840e-01 -3.75197798e-01 -1.64503768e-01 -4.23420101e-01\\n8.64471272e-02 -6.99187517e-01 8.35179910e-02 -1.27526388e-01\\n6.57840014e-01 -3.28761876e-01 1.09929599e-01 8.71486380e-04\\n1.15118906e-01 1.28030613e-01 -6.34490454e-04 1.09039731e-01\\n-2.71551907e-01 -2.59697855e-01 -1.02733955e-01 -1.56282812e-01\\n4.04876202e-01 6.70983613e-01 -2.06097111e-01 1.48781005e-03\\n-4.46171127e-02 -2.83934057e-01 -4.17712122e-01 -4.10557717e-01\\n-2.13394880e-01 -2.10029364e-01 -6.52326882e-01 -3.83003980e-01\\n-4.71648835e-02 -1.27612293e-01 -1.95811931e-02 5.00996768e-01\\n-3.61822158e-01 -2.57012248e-01 -1.07394345e-01 -5.99090993e-01\\n2.63237059e-01 -6.26404658e-02 1.00035612e-02 -1.66280985e-01\\n-2.05776781e-01 -4.43390340e-01 4.44217511e-02 -3.27809416e-02\\n-9.73256677e-02 -3.13276112e-01 1.29013404e-01 -2.09248677e-01\\n-2.82249212e-01 -4.64406490e-01 2.94110566e-01 1.80835947e-01\\n2.89424986e-01 1.72436297e-01 1.29402593e-01 -1.02223583e-01\\n1.11000828e-01 -4.63343551e-03 3.37298103e-02 -3.94715726e-01\\n6.76604435e-02 2.66956119e-03 4.64268237e-01 -2.20577046e-01\\n1.15164973e-01 9.65706706e-02 -2.71096319e-01 -1.07297376e-01\\n2.31599063e-01 2.05715448e-02 4.86085974e-02 -2.81832665e-01\\n3.06731254e-01 -3.31665426e-01 -7.12709725e-02 1.13251600e-02\\n3.07341088e-02 6.67900860e-01 -5.88539951e-02 -3.51268977e-01\\n-2.49013126e-01 5.05070508e-01 6.33997796e-03 -1.83792219e-01\\n-2.04912558e-01 1.87133789e-01 -3.54243994e-01 -9.99365300e-02\\n2.29420699e-02 -1.52171165e-01 -3.42947274e-01 -9.42999870e-02\\n-5.12667149e-02 3.82685244e-01 3.00624460e-01 2.15948790e-01\\n2.79616173e-02 -4.22449261e-01 6.12730682e-02 3.19320142e-01\\n1.97118789e-01 3.32690448e-01 1.68936417e-01 -2.76271641e-01\\n1.28320202e-01 3.88148159e-01 -1.74902081e-01 2.47394174e-01\\n-2.28138819e-01 -2.66975965e-02 -4.52379197e-01 -3.20220023e-01\\n-2.45751008e-01 -2.66670674e-01 1.50615126e-01 2.59572923e-01\\n9.42377187e-03 2.96353381e-02 6.87748194e-02 -3.58052462e-01\\n3.32783669e-01 -3.63968872e-02 2.58961469e-01 1.07383698e-01\\n5.93451075e-02 6.23828888e-01 1.38840020e-01 -5.25347255e-02\\n-1.84954688e-01 3.73546444e-02 -1.58487365e-01 -2.47711375e-01\\n3.01026506e-03 -4.25581127e-01 -2.28361338e-01 3.69653970e-01\\n3.76352556e-02 -2.49631286e-01 -1.13479912e-01 2.19415635e-01\\n5.15291952e-02 -2.18812093e-01 -1.51501268e-01 3.01592462e-02\\n3.78630966e-01 1.53287947e-01 1.86932430e-01 -5.11538029e-01\\n9.72272828e-02 -2.30892524e-02 -1.80621184e-02 4.41557646e-01\\n1.39098063e-01 1.25697991e-02 -2.61261374e-01 -3.08790058e-01\\n3.34632576e-01 -3.42663169e-01 -1.95402093e-02 2.01656707e-02\\n3.63726839e-02 -1.25110298e-01 -4.24573243e-01 9.10349935e-02\\n-6.42896369e-02 -1.16678514e-01 -7.60053173e-02 6.93906471e-02\\n1.95207477e-01 -3.03827897e-02 -6.43123865e-01 -2.44738027e-01\\n-2.82264322e-01 1.56612977e-01 -4.07660613e-03 -4.70483243e-01\\n-3.52718569e-02 -1.61820143e-01 -6.25119627e-01 3.13072085e-01\\n-2.71256030e-01 -1.46929668e-02 1.92158967e-01 3.49590811e-03\\n-3.72740060e-01 -2.59224661e-02 1.99121699e-01 1.96224809e-01\\n-3.38736057e-01 -3.04571658e-01 8.51263553e-02 -9.57494140e-01\\n6.92129508e-02 -3.61912027e-02 -1.63678098e-02 1.53977156e-01\\n6.73978403e-02 -8.00652921e-01 1.17523737e-01 -2.42552936e-01\\n-8.47847611e-02 -8.27525035e-02 -2.08409399e-01 -5.94122231e-01\\n4.70246971e-02 8.07676241e-02 -1.07013792e-01 2.92061239e-01\\n-4.20337498e-01 3.18811625e-01 -6.62466809e-02 4.21071537e-02\\n2.52626725e-02 -2.71317542e-01 1.52913183e-01 -4.19835389e-01\\n-2.17567176e-01 -1.13802657e-01 -2.68537283e-01 -2.79424906e-01\\n-2.64740400e-02 -2.29366049e-01 -7.39524812e-02 1.20868616e-01\\n3.12948197e-01 2.73460913e-02 -9.62467045e-02 -1.79499775e-01\\n1.02025084e-01 -4.32507277e-01 7.13376701e-02 -1.68989927e-01\\n-9.91764069e-02 -1.98152885e-01 2.32822016e-01 1.86861813e-01\\n9.11485553e-02 -4.01329190e-01 4.16251004e-01 -3.85343075e-01\\n-4.98724461e-01 -2.77024768e-02 -3.82275097e-02 -2.71633035e-03\\n4.49894577e-01 -4.09570068e-01 -7.89676607e-02 4.51759219e-01\\n9.49817598e-02 -5.09302355e-02 4.08575326e-01 -2.04133227e-01\\n-6.54539764e-02 3.09752375e-01 -5.06745756e-01 2.93327272e-02\\n7.54946113e-01 7.50260726e-02 1.30431861e-01 1.87825441e-01\\n5.32671958e-02 1.56089142e-01 4.70147043e-01 8.10024794e-03\\n-1.22578867e-01 3.26220810e-01 1.49382323e-01 -5.15533209e-01\\n-1.32689387e-01 -2.19930008e-01 -1.46906778e-01 -3.41371298e-01\\n6.50402606e-01 3.04198772e-01 -2.86466449e-01 -2.05696926e-01\\n-2.29582801e-01 -2.32447207e-01 1.33902729e-01 -7.73866102e-02\\n1.74898244e-02 -4.98972051e-02 4.47491139e-01 2.11403109e-02\\n4.27219003e-01 5.04204273e-01 -9.83430222e-02 -2.72266924e-01\\n-1.04540102e-01 2.06998542e-01 -1.08292736e-01 2.92599291e-01\\n-9.69199836e-02 5.14105797e-01 3.54764275e-02 8.58753994e-02\\n-1.09720446e-01 -1.90725680e-02 9.30355564e-02 1.53255817e-02\\n8.87968764e-02 2.73327738e-01 2.41285786e-01 4.79711711e-01\\n3.92003149e-01 4.46622759e-01 2.95904219e-01 3.48261893e-02\\n5.73025823e-01 5.92399836e-01 4.27761525e-01 5.42831942e-02\\n-5.47832288e-02 2.84770448e-02 3.61264087e-02 1.00322232e-01\\n3.54003787e-01 3.12172234e-01 5.90910055e-02 9.76930201e-01\\n4.03424442e-01 3.03128541e-01 6.96769953e-01 -5.57572961e-01\\n-3.79510522e-01 -1.08129755e-01 4.30003881e-01 -4.55606550e-01\\n-6.66758642e-02 1.36496872e-01 -1.10436454e-01 2.07791626e-01\\n-3.27172130e-01 -1.52637452e-01 -2.90899314e-02 1.88968569e-01\\n2.36313306e-02 -3.48529741e-02 -1.58427462e-01 2.42009610e-02\\n-3.43573332e-01 -2.27847427e-01 -4.82903779e-01 -2.36538006e-03\\n-2.76970983e-01 -2.69974768e-01 -1.45564815e-02 -1.03661746e-01\\n-2.57667601e-01 -2.94177145e-01 -1.21997736e-01 3.09795402e-02\\n3.50861400e-01 -1.64819911e-01 -1.37814760e-01 -2.99447089e-01\\n3.19494784e-01 2.33509839e-01 6.21406555e-01 -1.31062074e-02\\n4.71575856e-02 -2.93080389e-01 -2.61988401e-01 9.25703645e-02\\n1.59121886e-01 5.10298051e-02 1.12252288e-01 2.82947332e-01\\n-2.32727319e-01 -9.53059196e-02 1.26616910e-01 3.61890644e-01\\n-3.67958635e-01 -3.73639390e-02 -7.27146585e-03 2.25033611e-01\\n1.22023478e-01 1.49894476e-01 -2.97193050e-01 1.08350821e-01\\n-1.88325658e-01 -5.72522521e-01 2.64368594e-01 -3.25062014e-02\\n-6.84223920e-02 -7.28884935e-02 2.78501868e-01 2.43510440e-01\\n-1.50746718e-01 -7.76211023e-02 -7.21939877e-02 1.33978903e-01\\n1.19384579e-01 3.44789654e-01 -3.54178101e-01 -2.20660478e-01\\n-1.99023068e-01 2.45924294e-01 -3.51511598e-01 1.08043261e-01\\n5.17625101e-02 4.13835257e-01 5.78689836e-02 -2.94870231e-03\\n3.73335868e-01 -1.30798388e-02 -1.92066714e-01 -2.05476671e-01\\n-1.03885517e-01 -3.33876401e-01 -2.55587772e-02 -1.19787760e-01\\n2.04682708e-01 -3.53458792e-01 -1.34133622e-01 -2.62693256e-01\\n-1.05370209e-01 -1.85946152e-01 4.05000933e-02 1.02388568e-01]]',\n", + " 'job_description': 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer - Javascript/Scala/Machine LearningYour mission : The IIPP Chair at the College of Management at EPFL Switzerland, is seeking a Software Engineer - Javascript/Scala/Machine Learning to lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io. The IIPP Chair is the Chair of Innovation and Intellectual Property Policy of Prof. de Rassenfosse. The Chair is part of the College of Management at EPFL. Main duties and responsibilities include : Lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io Your profile : Self-motivated and talented software engineer who holds a master’s degree in computer science or related disciplines Two years of experience in web development, including Javascript/HTML5/CSS Two years of experience in back-end development Strong knowledge of object-oriented and functional programming languages (preferably Scala) Keen interest in algorithms and machine learning Some knowledge of MySQL and UNIX Familiar with continuous integrating and delivery (DevOps) We offer : We offer a competitive salary commensurate with skills and experience, and subject to EPFL pay scale. Flexible working conditions in a highly international and stimulating environment. EPFL is a highly international, world-class engineering university. It offers many CS-related events and training and hosts a vibrant entrepreneurial community. EPFL is an equal-opportunity employer. Candidates will be recruited on merit only. If you are a passionate engineer and you fit the above criteria, we want to hear from you! Start date : To be agreed Term of employment : Fixed-term (CDD) Work rate : 70-100% Duration : 1 year, renewable Contact : Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Research\", \"Management\", \"Communications\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"JavaScript Engine\", \"Machine Learning\", \"Continuous Integration\", \"Educational Research\", \"Scale (Map)\", \"Scala (Programming Language)\", \"HTML5\", \"Machining\", \"Web Development\", \"Software Engineering\", \"Hosting\", \"Library For WWW In Perl\", \"Equalization\", \"Intellectual Property\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Functional Programming\", \"Back End (Software Engineering)\", \"Algorithms\", \"Unix\", \"Web Platforms\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Panjabi', 'Kwanyama']\"},\n", + " {'company_id': '124',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.12718710e-01 1.10670008e-01 4.75184590e-01 -3.31541561e-02\\n5.69552958e-01 -1.60082176e-01 -7.25976750e-02 4.56851900e-01\\n-9.39485431e-03 -3.46985042e-01 -8.97977054e-02 -1.99055016e-01\\n-8.65264684e-02 1.58009958e-02 1.02504492e-01 2.59520143e-01\\n3.06469977e-01 1.36347577e-01 -2.48786330e-01 3.25105458e-01\\n1.79310754e-01 -2.32021026e-02 1.37772277e-01 6.70434237e-01\\n4.32870984e-01 -9.26994905e-03 -5.02437763e-02 1.68501791e-02\\n-3.41383606e-01 -2.54121363e-01 3.67121607e-01 8.42692852e-02\\n-7.05615878e-02 -3.59335333e-01 1.45708352e-01 8.81755725e-03\\n-1.51054129e-01 -4.73292582e-02 -2.31389552e-02 1.41306147e-01\\n-4.23853874e-01 -8.47265050e-02 3.57912071e-02 1.68432042e-01\\n-1.48513973e-01 -3.20981532e-01 1.53395742e-01 7.15538859e-02\\n1.64333247e-02 -6.99292794e-02 -5.31052053e-01 2.89238751e-01\\n-2.30182275e-01 -1.60018951e-01 3.27089399e-01 5.50157547e-01\\n-8.36343616e-02 -4.28591281e-01 -3.96054715e-01 -3.07384968e-01\\n5.95142469e-02 -1.71042472e-01 1.51446328e-01 -2.11977735e-01\\n3.31668735e-01 -2.31110733e-02 -3.43213091e-03 2.97998548e-01\\n-7.79415309e-01 -5.81556968e-02 -1.41546845e-01 -1.76338837e-01\\n-3.18232208e-01 -2.24399015e-01 -1.93985447e-01 -4.46574651e-02\\n-1.71832874e-01 3.20438266e-01 -6.34812191e-03 5.26670851e-02\\n-6.86931312e-02 2.12634176e-01 -2.00736940e-01 3.13361734e-01\\n2.52206504e-01 2.17922837e-01 1.51003763e-01 3.45444053e-01\\n-2.80736625e-01 3.58816803e-01 1.37060717e-01 -2.95692831e-01\\n2.77554035e-01 4.61736321e-02 4.52695072e-01 -1.02109641e-01\\n1.33541137e-01 1.27233073e-01 -1.72725827e-01 2.61346072e-01\\n2.25934163e-01 -2.93657184e-01 3.51308547e-02 -1.02400355e-01\\n-1.25162467e-01 3.93865891e-02 1.34616476e-02 3.91661078e-01\\n-2.72497803e-01 3.95819575e-01 1.96953848e-01 -1.68162256e-01\\n-5.27839642e-03 -5.32436013e-01 -6.35794401e-02 -2.85449419e-02\\n2.27576680e-02 1.41635060e-01 2.99577534e-01 1.95003539e-01\\n3.15216422e-01 5.50945289e-02 1.77949935e-01 7.82162249e-01\\n-6.95528388e-02 -1.06485942e-02 -1.83141634e-01 3.71077567e-01\\n9.47134420e-02 -3.52449417e-01 2.07145333e-01 2.55971640e-01\\n8.44329000e-02 -4.29405048e-02 -2.09174842e-01 3.19562584e-01\\n-5.72665446e-02 -1.91153005e-01 -2.65503317e-01 8.97026062e-02\\n-1.28501087e-01 -3.72112185e-01 5.62508404e-01 1.56871960e-01\\n1.82912469e-01 -5.53048588e-02 -3.94426426e-03 -2.21927717e-01\\n-4.68951911e-02 2.87027925e-01 9.74720940e-02 1.88746959e-01\\n-1.85686409e-01 -1.10682644e-01 -2.17966035e-01 1.81002915e-01\\n-2.57769823e-01 7.08091408e-02 -7.26538822e-02 -5.00200726e-02\\n3.62583697e-01 -2.00315248e-02 -2.42031783e-01 2.19914317e-01\\n3.02398708e-02 4.06021476e-02 -1.06041133e-01 3.07472825e-01\\n-2.29071662e-01 2.34056324e-01 -1.36502251e-01 -7.84502849e-02\\n6.44152164e-01 1.61935315e-01 2.14210033e-01 -3.28235291e-02\\n2.50620186e-01 -7.06445798e-02 1.67265102e-01 7.12040365e-02\\n-8.15086186e-01 2.42198512e-01 1.28117274e-03 -1.65778592e-01\\n6.76135942e-02 -5.00779673e-02 1.37460813e-01 -3.51681769e-01\\n4.32248600e-02 -1.54658869e-01 -3.77197415e-01 -2.91289896e-01\\n-3.03335607e-01 -9.16837007e-02 3.07800502e-01 -4.15722877e-01\\n-1.02222636e-01 2.00834513e-01 -5.02035618e-01 3.72994356e-02\\n1.83305636e-01 1.77630514e-01 4.49362583e-02 1.15844019e-01\\n-5.32674938e-02 -5.16095459e-01 6.99020997e-02 -3.28726798e-01\\n-2.88491368e-01 1.62937149e-01 -2.47179538e-01 2.99806535e-01\\n8.17100406e-02 -3.60871688e-03 -5.27518056e-02 2.28180990e-01\\n-1.02618970e-01 -1.21068411e-01 1.88411877e-01 6.55864552e-02\\n2.54900992e-01 7.91452155e-02 -4.36164886e-01 4.37535971e-01\\n-2.04018384e-01 5.89163840e-01 1.02276370e-01 -7.77375340e-01\\n4.37204629e-01 3.24561894e-01 6.48089424e-02 -3.41800421e-01\\n6.36652648e-01 -1.69620857e-01 1.53298108e-02 7.70890489e-02\\n-4.41106647e-01 -3.21914732e-01 2.47038200e-01 -1.36424556e-01\\n-1.91462532e-01 4.89517599e-01 4.56175320e-02 5.19953435e-03\\n1.95847452e-01 -1.99075177e-01 -5.01468070e-02 3.65773179e-02\\n-1.21756531e-01 -2.94013977e-01 -4.61595267e-01 -4.91148829e-02\\n-1.14157505e-01 -4.44583118e-01 -1.26388982e-01 -3.75852644e-01\\n-2.06945211e-01 -3.22829634e-01 -2.07525894e-01 2.34229311e-01\\n2.03865364e-01 1.66954443e-01 -1.32062072e-02 2.37189997e-02\\n-2.29091525e-01 -5.97406268e-01 -2.53920234e-03 8.40099901e-02\\n3.77256215e-01 2.09424272e-01 1.02357976e-01 -1.86912585e-02\\n-1.24870762e-01 6.59388185e-01 -2.65086740e-01 -6.37472123e-02\\n1.81517839e-01 2.24729568e-01 6.41338155e-02 -1.10455289e-01\\n-1.14096198e-02 3.50315392e-01 -2.16362074e-01 1.63446777e-02\\n-1.03627004e-01 -7.60748684e-02 4.34545428e-01 2.02471707e-02\\n-2.71126121e-01 -2.40514025e-01 -4.98008206e-02 2.19685823e-01\\n-4.63799328e-01 -1.55582711e-01 6.35922015e-01 3.00473094e-01\\n2.06713691e-01 2.17857823e-01 1.91894814e-01 -1.05688877e-01\\n-1.28329784e-01 -2.90801406e-01 3.11618835e-01 1.38225809e-01\\n1.68557122e-01 1.23579711e-01 -1.66140854e-01 -5.96358597e-01\\n-3.53283405e+00 -1.64912969e-01 1.76509857e-01 -3.28984261e-01\\n1.09984174e-01 -1.17865667e-01 -1.39584824e-01 -1.46593168e-01\\n-2.26898283e-01 1.09511226e-01 -2.12813944e-01 -2.69764543e-01\\n2.24568531e-01 2.26212189e-01 1.37748510e-01 3.02404076e-01\\n2.31716678e-01 -1.49721682e-01 7.57346908e-03 1.73221111e-01\\n-3.42497349e-01 -5.52999556e-01 2.60361671e-01 -3.25897820e-02\\n3.42976838e-01 4.00614530e-01 -2.75678575e-01 -2.59755522e-01\\n-2.44935572e-01 -2.62971163e-01 2.63636727e-02 -3.30364555e-01\\n-5.86436205e-02 3.28728765e-01 1.46820843e-01 -1.61966845e-01\\n1.91452384e-01 -3.43591660e-01 -5.06713763e-02 -4.04672235e-01\\n8.26874822e-02 -4.13416058e-01 -3.02240681e-02 -5.08640260e-02\\n7.34365463e-01 -4.10922140e-01 1.48562327e-01 1.37132227e-01\\n2.51234561e-01 2.06326500e-01 -3.90384682e-02 -5.87912910e-02\\n-2.58642286e-01 -1.34982914e-01 -8.38747621e-02 -1.50602043e-01\\n4.60600466e-01 5.76390684e-01 -2.07731828e-01 6.07291460e-02\\n1.76067501e-02 -3.20771903e-01 -2.81750977e-01 -2.87910014e-01\\n-1.34599343e-01 -3.14505786e-01 -4.89336461e-01 -3.61866951e-01\\n-4.56856042e-02 -2.04332527e-02 -1.28606603e-01 5.82632720e-01\\n-1.87858805e-01 -4.79950458e-01 -1.34232873e-02 -5.14285147e-01\\n7.88142383e-02 -1.45390570e-01 -4.92166821e-03 -1.79838151e-01\\n-1.04273111e-01 -4.92918193e-01 4.75566126e-02 -2.23151576e-02\\n-1.09107792e-01 -3.50248814e-01 9.56417993e-02 -1.17105290e-01\\n-2.31957301e-01 -5.50469100e-01 3.18325698e-01 1.21233135e-01\\n2.62410462e-01 9.83931795e-02 1.64810479e-01 1.12242542e-01\\n2.45010570e-01 -3.01274002e-01 8.95757303e-02 -3.86696041e-01\\n2.06775680e-01 -3.99843697e-03 5.00576675e-01 -1.94019094e-01\\n6.88759238e-02 1.84414431e-01 -2.64946133e-01 -1.07918791e-01\\n3.15362632e-01 9.43630561e-02 9.17450413e-02 -1.87196746e-01\\n3.37431490e-01 -4.16387230e-01 -2.63860971e-01 6.32998720e-02\\n-3.74885648e-02 5.00317335e-01 -4.79320027e-02 -3.58302653e-01\\n-1.30018353e-01 4.61492151e-01 -9.25939232e-02 -2.08459377e-01\\n-1.70828104e-01 9.59294587e-02 -1.22736216e-01 1.70590743e-01\\n6.15473986e-02 -2.28921279e-01 -3.15639704e-01 -1.64479196e-01\\n-5.71926609e-02 2.15553910e-01 2.34726235e-01 3.35783288e-02\\n3.87717411e-03 -3.30380470e-01 5.35378419e-02 1.25451773e-01\\n1.44117251e-01 3.53448987e-01 2.47955415e-02 -1.14867717e-01\\n-5.18599898e-02 3.18735838e-01 -9.90720019e-02 2.05109492e-01\\n-2.30546817e-01 -1.61895305e-02 -4.45723206e-01 -2.24193379e-01\\n-2.20119506e-01 -3.16136777e-01 6.43201079e-03 1.50462195e-01\\n1.04363553e-01 1.52094662e-02 -4.16187197e-02 -4.36461240e-01\\n3.42555195e-01 -5.38821109e-02 2.80280024e-01 2.12995023e-01\\n-4.33207303e-02 4.08671558e-01 2.05697827e-02 -6.98305443e-02\\n-2.02849299e-01 1.56739622e-01 -1.68497950e-01 -1.07083447e-01\\n1.26849553e-02 -4.49319005e-01 -7.01745003e-02 3.53944868e-01\\n3.42339464e-02 -3.27452809e-01 -1.46854416e-01 1.84733301e-01\\n-3.22363935e-02 -2.91881710e-01 -1.51817352e-01 3.82919461e-02\\n3.42724174e-01 -5.87161630e-03 3.45243305e-01 -3.62602532e-01\\n-1.06267586e-01 2.17560166e-03 -1.12053879e-01 4.87787575e-01\\n4.24789786e-02 5.96854463e-02 -8.26710388e-02 -2.93139279e-01\\n2.55333096e-01 -6.91333115e-02 -9.90862846e-02 3.49178016e-02\\n1.09669901e-01 -1.88418955e-01 -5.21453142e-01 1.75913132e-03\\n2.82762386e-02 -8.56460184e-02 2.51963418e-02 9.83123928e-02\\n1.49539769e-01 9.49136764e-02 -5.79984605e-01 -3.42897534e-01\\n-3.39955539e-01 -9.51370969e-02 6.23938888e-02 -3.32857847e-01\\n-8.20384324e-02 -4.07100394e-02 -5.84246874e-01 2.33391866e-01\\n-1.75940439e-01 -8.40682983e-02 1.27914891e-01 6.68329187e-03\\n-3.36378634e-01 -2.69900472e-03 1.72126234e-01 2.11603746e-01\\n-3.03627610e-01 -2.57374197e-01 1.31622598e-01 -1.01720822e+00\\n2.00547591e-01 6.86768163e-03 -7.49853104e-02 -1.92255732e-02\\n-6.75750747e-02 -5.61195612e-01 5.74049652e-02 -4.01492804e-01\\n-5.64935729e-02 -1.00407088e-02 -1.97284684e-01 -4.66606468e-01\\n8.69494230e-02 -8.38179141e-02 -3.06868583e-01 4.34492677e-01\\n-3.23680937e-01 3.74145329e-01 -4.98623922e-02 7.96938688e-02\\n-3.26891877e-02 -3.11599135e-01 1.26220301e-01 -4.36862916e-01\\n-4.38858747e-01 -8.41317549e-02 -3.09086442e-01 -1.08355090e-01\\n1.16099209e-01 -2.39239082e-01 -9.41130891e-02 4.01942730e-02\\n3.65165949e-01 2.39352472e-02 -1.78526416e-01 -2.86411196e-01\\n5.09746075e-02 -4.74315137e-01 1.22491986e-01 -1.02762833e-01\\n-1.20330654e-01 -3.34377028e-02 7.17092603e-02 7.60539025e-02\\n3.73299271e-02 -4.19745982e-01 3.47955912e-01 -2.89118141e-01\\n-2.87288696e-01 -1.71999671e-02 1.09056465e-01 1.44922482e-02\\n1.73615053e-01 -5.45116782e-01 -1.68892015e-02 3.45015317e-01\\n3.63763534e-02 1.24727800e-01 2.33098254e-01 -1.23717906e-02\\n-5.54527156e-02 3.32082033e-01 -2.59306550e-01 3.03124581e-02\\n7.23120093e-01 3.08251008e-02 4.15100381e-02 2.57384181e-01\\n2.45725945e-01 3.40794504e-01 4.25681174e-01 3.80517505e-02\\n-1.00565404e-01 2.38715172e-01 -3.81433815e-02 -6.82809651e-01\\n8.19775239e-02 4.83994223e-02 -1.99874684e-01 -4.64724243e-01\\n6.90540373e-01 4.51806784e-01 -3.37007135e-01 -2.57907242e-01\\n-7.44212493e-02 -1.16033733e-01 5.76912872e-02 -1.37315720e-01\\n1.42517880e-01 -1.62721321e-01 5.01554251e-01 -3.76961268e-02\\n2.04613194e-01 5.21006644e-01 -2.01255247e-01 -4.09145981e-01\\n-5.56958765e-02 1.45002350e-01 1.00933045e-01 5.46358883e-01\\n-2.09273189e-01 3.04940075e-01 2.73396913e-03 1.46520227e-01\\n-1.44312242e-02 1.79971069e-01 3.59536335e-02 4.67083082e-02\\n1.31515726e-01 -4.02162969e-02 3.46305132e-01 3.83515894e-01\\n3.19380850e-01 4.55225527e-01 3.22439224e-01 3.29549164e-02\\n5.28798938e-01 5.44467866e-01 4.24797446e-01 1.92358255e-01\\n-1.03390820e-01 4.17311341e-02 6.57252669e-02 -1.51358889e-02\\n2.86080688e-01 2.95822740e-01 2.14015823e-02 8.77493799e-01\\n5.03477752e-01 2.13869169e-01 6.34135604e-01 -6.44551873e-01\\n-3.06712121e-01 -9.60781127e-02 3.37035000e-01 -2.63259917e-01\\n-6.30480647e-02 1.02037191e-01 -1.37230366e-01 2.73399770e-01\\n-3.77271861e-01 -1.56726763e-01 -3.40395272e-02 1.51002750e-01\\n7.52778128e-02 -4.60717231e-02 -3.45592111e-01 2.45063044e-02\\n-1.42694175e-01 -1.94053799e-01 -6.03991389e-01 -7.24309087e-02\\n-2.89841473e-01 -2.23297849e-01 -7.52496868e-02 -1.87227726e-01\\n-1.27276093e-01 -3.20762247e-01 -1.43152714e-01 -6.13771612e-03\\n2.46454671e-01 -1.38288751e-01 -3.07585243e-02 -2.84276694e-01\\n2.99108595e-01 1.83433607e-01 4.68343616e-01 -1.13699242e-01\\n1.53801590e-01 -2.25997627e-01 -2.95881897e-01 1.05147555e-01\\n1.57206491e-01 8.77672136e-02 3.04993987e-02 3.56749564e-01\\n-3.33115608e-01 -7.28528202e-02 2.21941471e-01 3.74152452e-01\\n-4.89055097e-01 1.68205034e-02 -2.58056726e-03 2.86537230e-01\\n9.98579636e-02 1.45134419e-01 -2.68062890e-01 3.77636738e-02\\n-2.18111828e-01 -4.93041754e-01 3.00931811e-01 -3.82694229e-02\\n-8.88267979e-02 1.86702445e-01 2.31924757e-01 2.04290092e-01\\n-2.40811303e-01 -5.96433766e-02 -6.66469112e-02 1.98056191e-01\\n1.53466508e-01 3.27050567e-01 -2.28249490e-01 -2.55908400e-01\\n-2.18592197e-01 1.50415406e-01 -3.20769757e-01 1.13673970e-01\\n-1.28965855e-01 2.35460579e-01 1.00536861e-01 8.53970349e-02\\n2.83914268e-01 3.75412740e-02 -1.57884791e-01 -1.76064670e-01\\n-2.19078660e-01 -2.44343072e-01 3.22884656e-02 -1.08290367e-01\\n2.06559792e-01 -3.71505409e-01 -6.91285059e-02 -3.66223454e-02\\n-2.40121603e-01 -3.35044056e-01 -1.07151186e-02 -4.27005515e-02]]',\n", + " 'job_description': 'As a pioneer in Swiss online wealth management we are changing the way people invest their money. Our product is transparent and easy to use, while also suited for the demanding investor, who is looking for individual solutions and full control. Investing with True Wealth saves your time and your money. To help us to further develop our digital wealth management solution and bring it to the next level, we are looking for a Software Engineer. Requirements Your profile: You have a strong foundation as a Software Engineer (engineering degree), with an inclination towards functional concepts, types and good software design You are a team player who writes clean and elegant code and shares our passion of building a great platform. You possess strong skills in at least one typed programming language. Experience with Java and TypeScript is an advantage but not necessarily required. You are interested and might be experienced in web application development, from browsers down to the database. You might have business domain knowledge from finance, trading, or portfolio management You are fluent in English and are based in or around Zurich (we offer help with relocation). German skills are an advantage but not required. You need to hold or be eligible for a work permit in Switzerland (e.g. via Swiss or EU/EFTA citizenship) Benefits We offer: Responsibility, ownership and influence on the further development of our best-in-class roboadvice solution. Flexibility, exposure and opportunities to work across the entire stack, depending on preferences and skills. Backend stack: Java 12, Java EE (CDI, JAX-RS, JMS), jOOQ, Wildfly, Lombok, Gradle, Docker, PostgreSQL. Front-end stack: TypeScript, React, Redux. Competitive salary package, solidly financed growth company. Continuous integration, single command deployments. Office in Zürich (near station Zürich Binz SZU, 2 stops from HB). In your application, please include your full CV as well as references and possibly public samples to previous work, e.g. on GitHub. We do not work with recruitment agencies.',\n", + " 'soft_skills': '[\"Typing\", \"Writing\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"KM Programming Language\", \"Investment Control\", \"Continuous Integration\", \"Wealth Management\", \"TypeScript\", \"Java EE Application\", \"PostgreSQL\", \"WildFly (JBoss AS)\", \"Gradle\", \"E (Programming Language)\", \"Levelling\", \"Lombok\", \"Software Engineering\", \"Java Message Service (JMS)\", \"Investments\", \"Portfolio Management\", \"Github\", \"Docker (Software)\", \"React Redux\", \"Finance\", \"Experimental Software Engineering\", \"Digitization\", \"Software Design\", \"Front End (Software Engineering)\", \"Software Requirements Specification\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Trade Finance\", \"Web Application Development\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Pashto', 'Letzeburgesch', 'Avaric', 'Aymara']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'junior data analyst',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.69903481e-01 3.30211699e-01 3.92661035e-01 4.90615964e-02\\n5.56073964e-01 -4.56960872e-02 1.97432823e-02 2.03761920e-01\\n-1.14606410e-01 -2.59626091e-01 -6.09852895e-02 -2.39072815e-01\\n-1.46226600e-01 2.28210520e-02 1.02569878e-01 4.44392890e-01\\n2.21634388e-01 1.38972506e-01 -1.40524939e-01 3.04671645e-01\\n1.15937673e-01 -1.00240514e-01 -9.84825194e-02 6.73958302e-01\\n5.08503199e-01 1.85407437e-02 -2.31237620e-01 5.71484007e-02\\n-3.82248580e-01 -3.01472396e-01 3.43140543e-01 9.73194018e-02\\n-1.39029562e-01 -3.78364325e-01 1.07878134e-01 1.27601147e-01\\n-2.35481039e-01 4.53270879e-03 -8.93662572e-02 2.39326522e-01\\n-4.66389835e-01 -2.46199742e-01 4.14232537e-02 7.08748251e-02\\n-2.36647680e-01 -2.56346852e-01 -1.17730774e-01 -3.74902412e-02\\n-2.94771735e-02 7.94671327e-02 -5.94967782e-01 4.93730962e-01\\n-2.30061308e-01 -2.44092524e-01 1.82035565e-01 7.39780784e-01\\n1.21820599e-01 -5.53129792e-01 -3.08142394e-01 -3.74406427e-01\\n-2.36968882e-02 -1.12940542e-01 1.33159161e-01 -2.37707719e-01\\n3.32335234e-01 4.84203827e-03 -5.79093210e-02 4.24355984e-01\\n-8.62976730e-01 -9.71233025e-02 -2.24476844e-01 -2.22595390e-02\\n-5.32340348e-01 5.94385602e-02 -3.59243333e-01 -6.88645244e-02\\n-1.18864454e-01 3.67610186e-01 -4.74069417e-02 8.26179534e-02\\n-1.70148581e-01 2.23239958e-01 -1.21832490e-02 1.70375019e-01\\n3.08648199e-01 1.81487590e-01 3.40257764e-01 3.66689950e-01\\n-3.18727314e-01 3.68465990e-01 1.17254652e-01 -2.63595492e-01\\n2.16223836e-01 1.54409528e-01 5.19486368e-01 5.11390567e-02\\n-6.45652488e-02 1.29642174e-01 -2.53183067e-01 2.99986809e-01\\n1.61745206e-01 -4.39516872e-01 1.31676912e-01 8.29570089e-03\\n-1.73895523e-01 6.91733137e-02 9.78381485e-02 2.59390116e-01\\n-3.07596564e-01 4.34935749e-01 1.39447704e-01 -2.06035927e-01\\n-3.61505784e-02 -6.10142708e-01 -1.00276120e-01 -4.69638361e-03\\n1.17541723e-01 3.94250423e-01 2.72953212e-01 1.00699633e-01\\n2.63319761e-01 1.22485673e-02 2.11649716e-01 8.42800319e-01\\n4.15918492e-02 8.90497267e-02 -1.77863166e-01 3.18379700e-01\\n3.25477928e-01 -1.96858913e-01 1.95026726e-01 2.44496241e-01\\n8.95442665e-02 -6.68318942e-02 -3.25990647e-01 3.09875816e-01\\n-1.65617988e-01 -1.64334849e-01 -3.22462916e-01 6.12857789e-02\\n-2.42983088e-01 -4.15133566e-01 5.81723511e-01 8.22580010e-02\\n2.96112478e-01 -1.04103237e-01 1.71245597e-02 -3.75425480e-02\\n-6.51072264e-02 4.05751258e-01 5.91281131e-02 2.82216817e-01\\n-2.91610003e-01 -1.68535903e-01 -1.07815035e-01 3.78378898e-01\\n-2.85254389e-01 4.49367128e-02 -1.08398706e-01 -4.45846356e-02\\n2.82868624e-01 1.54228896e-01 -3.20729077e-01 1.19504400e-01\\n-1.14336200e-01 -3.91188443e-01 -7.64971375e-02 3.50683928e-01\\n-1.00491866e-01 2.39754349e-01 3.03259362e-02 -3.01487833e-01\\n6.62374616e-01 3.26763153e-01 1.95564002e-01 4.22401540e-02\\n3.41230124e-01 -1.85006544e-01 3.11518729e-01 1.63052961e-01\\n-6.62602842e-01 3.45543474e-01 6.48731813e-02 -2.75541097e-01\\n1.00821942e-01 7.34974220e-02 4.50670421e-01 -3.99756700e-01\\n3.56923379e-02 -2.31615767e-01 -3.79971802e-01 -4.11220878e-01\\n-2.66762912e-01 3.15081254e-02 4.09278840e-01 -3.34985644e-01\\n-1.33521825e-01 2.62247235e-01 -4.52034235e-01 -2.23917171e-01\\n1.26374215e-01 1.53301477e-01 5.30270971e-02 -2.57687792e-02\\n-8.62678885e-02 -6.35706961e-01 4.50634882e-02 -4.63739485e-01\\n-5.35800934e-01 3.69748590e-03 -3.49186510e-01 1.30858615e-01\\n-3.59033458e-02 6.13594353e-02 -9.43311527e-02 1.34197414e-01\\n-3.54555607e-01 -1.64842084e-02 3.56554314e-02 1.87073305e-01\\n2.50404596e-01 -4.16482799e-02 -5.16741753e-01 3.75585020e-01\\n-2.20642731e-01 5.30993879e-01 2.65517473e-01 -9.04959261e-01\\n6.30442917e-01 2.15591192e-01 9.25984383e-02 -2.50578582e-01\\n3.78691554e-01 -4.48909819e-01 -9.15755406e-02 1.65064305e-01\\n-2.16029018e-01 -2.37218425e-01 3.51897150e-01 -1.77554384e-01\\n-3.55367988e-01 4.60479677e-01 2.18342736e-01 -8.94561782e-03\\n2.88449913e-01 -3.12268019e-01 -5.50551079e-02 1.02989577e-01\\n-4.47699204e-02 -1.61732897e-01 -4.82570559e-01 3.75194140e-02\\n-6.72925413e-02 -4.71965730e-01 -8.25488418e-02 -3.33299011e-01\\n-1.39920011e-01 -3.51502776e-01 -3.77326757e-01 3.11004162e-01\\n1.52781412e-01 1.58988565e-01 4.05513011e-02 1.89531930e-02\\n7.43351802e-02 -7.34974742e-01 -2.18533337e-01 5.60102053e-02\\n4.93476361e-01 2.60669619e-01 2.46646572e-02 -1.74784794e-01\\n-1.12977496e-03 5.15721321e-01 -3.41495842e-01 -4.67799664e-01\\n1.95672363e-02 9.23142359e-02 -9.55522582e-02 -1.36673942e-01\\n8.85168016e-02 3.19082975e-01 -1.07110932e-01 7.99562410e-02\\n-8.89738426e-02 -4.78304587e-02 4.19248402e-01 8.59825499e-03\\n-2.74071276e-01 -1.06046446e-01 -1.37584895e-01 2.48347938e-01\\n-5.89287400e-01 -2.13321909e-01 5.59960544e-01 1.62665859e-01\\n1.92150578e-01 1.22509658e-01 1.89478770e-01 -1.00261785e-01\\n-2.56064795e-02 -2.74536699e-01 2.34207943e-01 1.49035946e-01\\n4.43218984e-02 8.54118317e-02 -7.88715556e-02 -7.66854465e-01\\n-3.27940965e+00 -3.14133286e-01 1.41042575e-01 -3.91017616e-01\\n1.82209447e-01 -1.15987666e-01 5.03617823e-02 -3.44741940e-02\\n-3.00532490e-01 5.49929254e-02 -2.86814153e-01 -1.72902986e-01\\n4.06640675e-03 2.38242477e-01 3.91243175e-02 1.80157244e-01\\n1.53169468e-01 -1.97287470e-01 -1.49520129e-01 3.35524678e-01\\n5.03745803e-04 -7.03826666e-01 5.96859083e-02 9.91246551e-02\\n2.37975270e-01 2.07187563e-01 -4.33561444e-01 1.28541784e-02\\n-2.35836565e-01 -2.62833148e-01 5.33691011e-02 -2.86824256e-01\\n-3.13884258e-01 2.71430731e-01 1.09556332e-01 -1.05196491e-01\\n-1.42289875e-02 -3.14451575e-01 -2.76335906e-02 -3.73896092e-01\\n7.24806041e-02 -5.91529787e-01 -5.61806485e-02 -6.87715709e-02\\n7.53360629e-01 -3.11479509e-01 2.59482831e-01 9.38942004e-03\\n1.71413392e-01 8.25963542e-02 2.62180008e-02 5.61644994e-02\\n-2.59518206e-01 -2.80994236e-01 1.46166412e-02 -1.69610560e-01\\n5.25863886e-01 5.11499107e-01 -1.65557310e-01 6.70194626e-02\\n2.22234637e-01 -3.11955512e-01 -3.11834574e-01 -3.88804317e-01\\n-2.40330726e-01 -2.34804913e-01 -7.05123782e-01 -4.79961872e-01\\n-1.78665057e-01 -9.45891719e-03 -2.03674048e-01 6.05339706e-01\\n-3.27680856e-01 -5.04034042e-01 2.23229658e-02 -5.27502716e-01\\n1.80814773e-01 -2.59595037e-01 7.15190694e-02 -1.66806027e-01\\n-3.63574892e-01 -5.42186856e-01 1.35831445e-01 -8.89754370e-02\\n-2.47457966e-01 -1.14685707e-01 -1.29641011e-01 -1.80894926e-01\\n-3.27081829e-01 -3.57394665e-01 5.02651691e-01 5.52136675e-02\\n3.59626859e-01 1.47503734e-01 3.71624470e-01 1.12909146e-01\\n3.14907074e-01 -1.09508485e-01 1.06382534e-01 -3.85194182e-01\\n3.58129735e-03 -6.70126826e-02 7.12407172e-01 -2.92129695e-01\\n7.88502395e-02 3.35630290e-02 -2.85090357e-01 -1.44628927e-01\\n4.88318801e-01 3.24213207e-02 9.44490582e-02 -5.70058711e-02\\n3.51760805e-01 -3.92466605e-01 -1.90895021e-01 2.43023679e-01\\n3.64841856e-02 7.20716894e-01 5.84823266e-02 -4.04302835e-01\\n-2.32394651e-01 4.47871596e-01 -7.59328008e-02 -4.97647654e-03\\n-1.05114341e-01 1.18639819e-01 -8.31916779e-02 2.59987295e-01\\n1.26624748e-01 -2.72606432e-01 -2.23663345e-01 -1.68161094e-01\\n2.98183933e-02 1.99713036e-01 2.93037713e-01 -3.97289991e-02\\n-5.07048741e-02 -2.18218073e-01 -2.11851820e-01 1.74137101e-01\\n2.92431593e-01 3.85163456e-01 1.44175962e-01 -2.27869362e-01\\n-1.02706037e-01 2.51480222e-01 -2.14656040e-01 2.65399247e-01\\n-1.58830509e-01 1.55674249e-01 -5.60586274e-01 -9.05579254e-02\\n-1.20868422e-01 -3.91883761e-01 1.90963641e-01 3.58746231e-01\\n2.14726791e-01 1.51378429e-02 -4.11909074e-02 -4.85457003e-01\\n3.66061270e-01 1.75971150e-01 1.43844336e-01 1.02357678e-01\\n-5.87090999e-02 4.24725682e-01 -1.18267927e-02 -5.04770502e-02\\n-1.70471132e-01 -3.68972234e-02 -2.19831809e-01 -3.15829873e-01\\n2.23768741e-01 -4.78620768e-01 -1.36539534e-01 4.10748720e-01\\n1.76589787e-01 -3.42217773e-01 -2.45084122e-01 2.89245814e-01\\n7.63109550e-02 -4.16781366e-01 -1.76472515e-01 -8.15693382e-03\\n2.31761992e-01 1.39034420e-01 2.85722256e-01 -3.96381140e-01\\n-9.23257694e-02 -6.33148849e-02 -1.51948392e-01 2.55487949e-01\\n1.05200857e-01 1.33293360e-01 -1.55749455e-01 -1.51574627e-01\\n5.12240827e-01 1.89651884e-02 -6.05685450e-02 5.80746271e-02\\n5.63989691e-02 -2.50223964e-01 -4.39500749e-01 -1.27526775e-01\\n-1.48952249e-02 -3.23749006e-01 3.96459438e-02 7.22012073e-02\\n6.24779835e-02 -1.63984578e-02 -4.80627567e-01 -3.24877799e-01\\n-3.21176618e-01 -1.90499455e-01 1.78123623e-01 -3.55892122e-01\\n-8.25810134e-02 -6.06468096e-02 -6.09544992e-01 1.75386190e-01\\n-2.59284049e-01 -3.60954404e-02 1.21220216e-01 1.26917914e-01\\n-1.86400548e-01 -8.87692869e-02 9.61606503e-02 1.81614995e-01\\n-2.85488784e-01 -1.58323973e-01 3.38639840e-02 -9.73684549e-01\\n1.08692758e-01 1.33115768e-01 -4.66713170e-03 4.13510464e-02\\n-5.12922145e-02 -5.41548729e-01 1.77234396e-01 -4.31651056e-01\\n-9.09246579e-02 7.44284177e-03 -1.86018631e-01 -2.53871232e-01\\n2.71518528e-01 -1.65154591e-01 -3.13458860e-01 3.71603012e-01\\n-4.41296160e-01 3.28340769e-01 7.62637481e-02 7.21891820e-02\\n-2.36079600e-02 -2.22803444e-01 1.07833743e-01 -2.65182316e-01\\n-4.45908189e-01 -1.36173964e-01 -3.94252926e-01 -1.42236337e-01\\n-2.70827673e-02 -2.58871943e-01 -1.58280507e-01 1.19419239e-01\\n3.47398967e-01 1.77878559e-01 -3.12975533e-02 -2.74050891e-01\\n6.41223416e-02 -5.58637738e-01 1.13728061e-01 -2.08668083e-01\\n-1.85295548e-02 5.22920396e-03 9.88802463e-02 -9.62967575e-02\\n8.77240896e-02 -2.91087627e-01 4.55982983e-01 -2.53869355e-01\\n-2.84520805e-01 -4.34890501e-02 6.40102625e-02 1.00279108e-01\\n3.80771756e-01 -4.47192520e-01 2.78782677e-02 2.48965412e-01\\n5.77623248e-02 1.19500525e-01 2.47714058e-01 -6.48874417e-02\\n-1.20549664e-01 1.78344697e-01 -5.32059669e-01 1.44256935e-01\\n8.96549881e-01 2.66778320e-01 4.69323136e-02 2.19581753e-01\\n2.57015437e-01 3.18985790e-01 5.33832371e-01 -8.06291327e-02\\n-9.58016291e-02 2.30021268e-01 -4.45018522e-02 -5.51859319e-01\\n-1.35526597e-01 -2.04562604e-01 -1.90782607e-01 -3.78986955e-01\\n6.04588270e-01 3.85152906e-01 -4.11267459e-01 -1.91748694e-01\\n-8.32971334e-02 -1.10327385e-01 2.43367568e-01 -5.42359985e-02\\n-9.09660161e-02 -1.49531305e-01 5.51828802e-01 -8.73960555e-03\\n3.66063893e-01 5.35598457e-01 -1.22023605e-01 -4.02548641e-01\\n-1.00493968e-01 2.76395261e-01 1.00876123e-01 5.10195315e-01\\n-1.59426585e-01 7.58925229e-02 -1.11529179e-01 7.02911541e-02\\n-1.66896489e-02 1.25271454e-01 2.28683323e-01 7.92856216e-02\\n2.92419672e-01 2.75281090e-02 3.08388889e-01 5.03178954e-01\\n7.84934908e-02 4.36758965e-01 3.81499827e-01 4.64925058e-02\\n1.86104923e-01 6.72974944e-01 2.91059941e-01 2.02554837e-01\\n-3.10175586e-03 2.01042145e-01 1.63644359e-01 -7.55597502e-02\\n3.72875303e-01 3.74817967e-01 3.15849006e-01 8.40524912e-01\\n2.73545325e-01 2.69655168e-01 7.63611376e-01 -7.31192827e-01\\n-4.02983159e-01 6.19159974e-02 6.12192333e-01 -1.57615051e-01\\n-1.26609221e-01 1.06311664e-01 -2.16974184e-01 3.51189196e-01\\n-6.01985335e-01 -9.25850198e-02 -4.02787402e-02 -1.20380364e-01\\n1.11637853e-01 -8.24511331e-03 -1.74308404e-01 6.63954467e-02\\n-1.94561049e-01 -8.28483924e-02 -3.47291708e-01 -1.15570366e-01\\n-3.89279306e-01 2.14222986e-02 -3.76100950e-02 -6.40734434e-02\\n-1.10988177e-01 -3.77812386e-01 -7.10287094e-02 5.20848855e-02\\n3.01097393e-01 -1.56266347e-01 -2.65326258e-02 -5.22031449e-02\\n1.04964025e-01 3.19031268e-01 4.77201283e-01 -9.14380103e-02\\n7.86635354e-02 -1.26054525e-01 -2.25667253e-01 -2.55079195e-02\\n1.59232274e-01 4.92963241e-03 1.94637284e-01 4.34655935e-01\\n-2.91074514e-01 -1.51027635e-01 5.28844893e-02 2.80973911e-01\\n-4.88572836e-01 -8.78828019e-02 -4.04011533e-02 2.29001075e-01\\n5.89627028e-02 2.81933814e-01 -3.20299417e-01 3.36592644e-02\\n-1.56576276e-01 -5.49048543e-01 4.01915342e-01 -1.75448596e-01\\n-1.01908915e-01 2.64829725e-01 2.05560997e-01 1.70984343e-01\\n-2.37505257e-01 -3.67347561e-02 -1.46159410e-01 2.52834141e-01\\n7.72492494e-03 4.63570625e-01 -1.27386123e-01 -2.77112961e-01\\n-2.64451444e-01 2.49437809e-01 -4.75737490e-02 1.64807796e-01\\n-1.27312437e-01 2.51511663e-01 -7.85685424e-03 1.40856072e-01\\n3.24630558e-01 5.67830615e-02 -3.62524450e-01 -2.20763236e-01\\n-1.49674267e-01 -2.44783461e-01 1.70121312e-01 -3.56495641e-02\\n1.41897425e-01 -3.42355549e-01 -7.14769140e-02 -2.73064435e-01\\n-1.82965696e-01 -3.93911481e-01 -1.39297768e-01 1.27686625e-02]]',\n", + " 'job_description': \"Job Informationen your tasks: Manage the end-to-end development of technical solutions, from partnering with multiple stakeholders to gathering detailed business requirements, through technical design, development, testing, and implementation Work on concurrent initiatives automating our business processes Develop RPA bots to increase operational efficiency and quality Translate analytic insights into concrete, actionable recommendations for business or product improvement Your profile: Bachelor's degree in Computer Science, Engineering, Mathematics, MTEC or other quantitative field combined with a passion for solving business problems Proven analytical and quantitative skills and an ability to use hard data and metrics to back up assumptions, develop business cases, and complete root cause analyses Proficient in at least one programming language (e.g., Python, Java, JavaScript, R) Experience extracting and transforming data sets with SQL Fluency in English, good German skills Nice-to-Have: Experience using Data Warehouse solutions and BI Tools in a business environment with large-scale, complex datasets (e.g. Teradata, AWS RDS, Looker, Tableau, Kibana, MS Excel) Benötigte Skills Englisch MS-Office Python Python R E-commerce Einzel-/Detailhandel JAVA JavaScript Junior Mathematik Datawarehouse Business Intelligence\",\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Data Warehouse Systems\", \"Automation\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Kibana\", \"Computer Science\", \"Analytics\", \"Task Management\", \"Scale (Map)\", \"Operational Efficiency\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Translations\", \"Data Transformation\", \"Dataset\", \"Productivity Improvement\", \"Root Cause Analysis\", \"Business Intelligence\", \"Business Requirements\", \"Business Process\", \"E-Commerce\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Technical Solution Design\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Business Development\", \"Business Case\"]',\n", + " 'languages': \"['English', 'Slovak', 'Ossetian', 'Inuktitut']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer business data events',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-1.91104650e-01 2.25271225e-01 5.89884579e-01 1.13143306e-02\\n5.50288737e-01 -1.07360438e-01 -5.49557582e-02 3.53687912e-01\\n-5.68057783e-03 -3.53976190e-01 -6.66690916e-02 -2.06283987e-01\\n-6.52140528e-02 1.13803282e-01 1.33876234e-01 2.86508203e-01\\n2.07377613e-01 1.70513123e-01 -1.35549843e-01 3.60378802e-01\\n1.63065881e-01 -5.70979938e-02 1.39258310e-01 7.63423145e-01\\n4.20967400e-01 9.03721601e-02 -9.48430896e-02 -6.79137558e-02\\n-2.77748376e-01 -2.68304706e-01 5.12581050e-01 1.23132959e-01\\n-8.00701380e-02 -3.92657846e-01 1.00996882e-01 -8.78694355e-02\\n-3.47456396e-01 -5.31649105e-02 -1.13787040e-01 1.70788139e-01\\n-4.25675213e-01 -2.20063150e-01 -3.58525924e-02 3.11442986e-02\\n-2.09038854e-01 -3.25879991e-01 -7.64228478e-02 -1.11904919e-01\\n1.51222244e-01 -5.05765975e-02 -5.80470681e-01 3.11546206e-01\\n-2.55757749e-01 -2.45741457e-01 2.38467842e-01 6.60135031e-01\\n2.61558946e-02 -4.47333366e-01 -5.18018365e-01 -3.61129850e-01\\n3.93479764e-02 -1.96594447e-01 8.89007002e-03 -2.75045574e-01\\n2.06544295e-01 3.66032124e-02 1.11073837e-01 3.36233914e-01\\n-7.84965396e-01 4.05319072e-02 -1.14564031e-01 2.81319004e-02\\n-3.14257711e-01 -1.35130569e-01 -2.72363931e-01 -1.12676941e-01\\n-1.91045240e-01 4.88303721e-01 1.14931889e-01 1.96017101e-02\\n-1.80016637e-01 2.69780278e-01 -1.79371983e-01 4.58454430e-01\\n1.52707130e-01 1.48835257e-01 1.71350271e-01 3.26086402e-01\\n-3.99997622e-01 5.14149487e-01 7.41990209e-02 -2.58566141e-01\\n2.52426803e-01 1.11026600e-01 4.08997983e-01 -7.33221173e-02\\n1.69006810e-02 5.15300259e-02 -1.77071899e-01 2.78317183e-01\\n1.46823570e-01 -3.00002724e-01 3.54490951e-02 -1.45677224e-01\\n6.04247712e-02 5.01459725e-02 -7.75469393e-02 1.61639258e-01\\n-1.89987630e-01 3.40027034e-01 1.63327247e-01 -2.28514254e-01\\n-9.51029733e-02 -5.16787827e-01 -2.75141560e-02 -1.22872874e-01\\n-1.47055313e-02 1.37265921e-01 1.75416514e-01 1.46065950e-01\\n2.39557832e-01 7.83035904e-02 1.60299540e-01 7.38087058e-01\\n-3.60017866e-02 3.23574841e-02 -2.64268339e-01 3.03454995e-01\\n1.14140645e-01 -2.31558070e-01 1.82344019e-01 1.91870868e-01\\n-4.74690422e-02 -6.92424923e-02 -2.42338881e-01 3.71702373e-01\\n-6.89632744e-02 -2.31614977e-01 -2.81543255e-01 1.86241776e-01\\n-5.23010157e-02 -3.81986558e-01 5.18738747e-01 2.29265884e-01\\n2.07297742e-01 -5.44483215e-02 -2.96435840e-02 -7.35451579e-02\\n-7.12790936e-02 1.37056276e-01 -1.88476928e-02 2.33056173e-01\\n-3.00991833e-01 -3.17959428e-01 -1.92559794e-01 6.40818924e-02\\n-2.39642829e-01 1.39869004e-01 -1.01948723e-01 -4.06477377e-02\\n2.17627555e-01 9.05688405e-02 -3.60501289e-01 2.38868505e-01\\n-4.82646376e-02 -5.02809100e-02 9.87699628e-02 3.37118864e-01\\n-2.01765716e-01 1.32161558e-01 -3.44580896e-02 -2.06862450e-01\\n5.96211076e-01 1.82913855e-01 1.48873270e-01 4.11691554e-02\\n2.40312397e-01 1.80903450e-03 1.62605733e-01 9.29873511e-02\\n-6.85128689e-01 3.31892133e-01 -3.04754786e-02 -1.93754464e-01\\n1.33941770e-01 -3.12536582e-02 3.10086012e-01 -2.13648513e-01\\n9.08349603e-02 -1.39696658e-01 -4.08832014e-01 -3.44101250e-01\\n-8.45905095e-02 4.04238701e-02 2.98557580e-01 -4.96244222e-01\\n-1.27827257e-01 2.40074247e-01 -3.67813826e-01 -7.00937882e-02\\n1.75393507e-01 2.18247339e-01 6.67142347e-02 6.55681491e-02\\n-1.71543255e-01 -4.68551904e-01 4.06255499e-02 -4.02587593e-01\\n-3.41322005e-01 -1.10598765e-02 -3.64776671e-01 2.34177515e-01\\n7.88938999e-02 -7.96585605e-02 -6.54369593e-02 9.76237506e-02\\n-2.35238954e-01 -4.31889575e-03 1.03268303e-01 3.79081964e-02\\n3.50548863e-01 7.49245286e-02 -3.95155042e-01 4.32843089e-01\\n-2.21912950e-01 6.24888480e-01 1.80369943e-01 -9.02102113e-01\\n5.07815957e-01 3.26111287e-01 -8.95737857e-02 -4.26269323e-01\\n4.40132976e-01 -4.00146961e-01 4.77322526e-02 1.47844896e-01\\n-3.94989997e-01 -3.08719635e-01 2.63617814e-01 -1.19687527e-01\\n-2.32213289e-01 4.46671426e-01 3.62101197e-02 1.35341182e-01\\n1.68025970e-01 -3.35302800e-01 -2.31776357e-01 -6.63553327e-02\\n-5.92000559e-02 -2.36630082e-01 -5.45124531e-01 -2.08818875e-02\\n-1.14121214e-01 -4.63573337e-01 -5.73052056e-02 -3.57771814e-01\\n-1.95958614e-01 -2.96843797e-01 -1.95162594e-01 2.52563477e-01\\n2.28455871e-01 1.33433253e-01 2.32611932e-02 9.11801606e-02\\n7.98998177e-02 -6.88568413e-01 6.44074157e-02 1.51260346e-01\\n4.40051764e-01 2.16872483e-01 1.01137936e-01 -5.13716526e-02\\n3.75595242e-02 6.97380364e-01 -1.94036990e-01 -2.56647587e-01\\n2.17354685e-01 1.27813190e-01 6.27641156e-02 -1.36421353e-01\\n4.20168713e-02 3.13503861e-01 -3.31564665e-01 2.86704004e-02\\n5.36904298e-03 -1.32174054e-02 4.76532847e-01 5.19754775e-02\\n-3.20547491e-01 -1.40128568e-01 -7.72105604e-02 1.21365681e-01\\n-5.98461986e-01 -2.07316756e-01 5.91568172e-01 2.75702387e-01\\n1.37548074e-01 1.29435316e-01 1.17182925e-01 -2.73123831e-02\\n-2.06086278e-01 -2.09241778e-01 3.43682528e-01 1.04221180e-01\\n2.05713794e-01 3.50228287e-02 -4.31485176e-02 -6.05880499e-01\\n-3.26159954e+00 -1.72538638e-01 7.10092708e-02 -3.31525385e-01\\n2.92069882e-01 -2.25409612e-01 1.15612969e-01 -2.31769234e-02\\n-2.63314247e-01 4.04323563e-02 -1.97155178e-01 -1.45481795e-01\\n1.25695750e-01 1.13246724e-01 9.81977135e-02 1.68032944e-01\\n6.84211403e-02 -2.06251323e-01 3.19968611e-02 3.62278163e-01\\n-2.29932547e-01 -6.88806772e-01 1.25433728e-01 -3.84139828e-03\\n1.63343191e-01 2.02503607e-01 -4.04854208e-01 -8.04904774e-02\\n-1.73921928e-01 -2.12761387e-01 -2.79457420e-02 -3.31653148e-01\\n-1.57393157e-01 2.41190642e-01 1.94800138e-01 -1.35780275e-01\\n6.90654069e-02 -4.63961899e-01 -9.88506004e-02 -5.46691120e-01\\n2.09500492e-01 -6.36404574e-01 2.22675819e-02 -1.18378446e-01\\n7.22521067e-01 -3.03569108e-01 1.22286491e-01 1.64847583e-01\\n2.45710582e-01 1.44990236e-01 6.19171411e-02 -1.50625445e-02\\n-2.28378803e-01 -3.31389904e-01 -1.07836932e-01 -1.36333361e-01\\n4.30780649e-01 4.32378531e-01 -1.48321554e-01 1.44804701e-01\\n7.60335401e-02 -2.98072249e-01 -3.70201468e-01 -2.74137914e-01\\n-1.14738956e-01 -2.53664076e-01 -7.18594551e-01 -4.44676965e-01\\n-1.87793493e-01 -2.12780461e-01 -1.76433980e-01 6.04597092e-01\\n-3.01532626e-01 -3.36729109e-01 -8.74382854e-02 -4.83342826e-01\\n3.53918552e-01 -1.14479214e-01 2.33005565e-02 -1.58610314e-01\\n-1.97149411e-01 -4.85279500e-01 9.53139961e-02 -7.30241239e-02\\n-1.28713965e-01 -2.67821550e-01 4.91779484e-02 -1.89734131e-01\\n-3.04274529e-01 -5.41955471e-01 4.25041050e-01 1.76238194e-02\\n3.30998302e-01 1.35763988e-01 3.45253825e-01 -3.58940512e-02\\n2.41688758e-01 -6.49173930e-02 -8.70448723e-02 -3.63057196e-01\\n3.62509042e-02 9.14106891e-03 4.99241352e-01 -2.33211234e-01\\n-3.31291631e-02 1.43452108e-01 -2.41380394e-01 -3.48432995e-02\\n2.85139501e-01 -3.43421474e-02 7.53200147e-03 -5.68813682e-02\\n3.28804135e-01 -2.67332971e-01 -1.49721906e-01 8.65284428e-02\\n4.50118594e-02 5.36115468e-01 -3.59812006e-03 -3.71129215e-01\\n-1.53250426e-01 4.20760125e-01 8.06491151e-02 -1.01141684e-01\\n-1.81138635e-01 6.02976866e-02 -1.93007469e-01 2.98970878e-01\\n5.51952049e-02 -2.53229469e-01 -2.45458871e-01 -1.40272439e-01\\n-9.29873884e-02 3.54534835e-01 2.86041141e-01 3.38246264e-02\\n4.73956354e-02 -4.30611849e-01 -1.34398818e-01 1.47303715e-01\\n1.70360431e-01 4.68289375e-01 1.69550717e-01 -1.71644449e-01\\n-3.21131870e-02 3.07046771e-01 -1.22439452e-01 2.57191837e-01\\n-2.40871489e-01 6.20918423e-02 -5.70222080e-01 -2.73005158e-01\\n-2.35740721e-01 -3.97317708e-01 9.43351090e-02 3.61744106e-01\\n1.13756292e-01 -1.12383552e-02 7.03416839e-02 -4.67679054e-01\\n3.01416516e-01 7.64930472e-02 1.52636588e-01 7.30635375e-02\\n-6.13627955e-03 6.09745383e-01 -1.69100761e-02 -1.53149337e-01\\n-1.02242999e-01 1.29240826e-02 -1.92491993e-01 -1.70512870e-01\\n9.64803323e-02 -4.72850353e-01 -6.92090243e-02 4.87406850e-01\\n1.09044805e-01 -2.99020588e-01 -1.23628736e-01 3.33748728e-01\\n-4.33416888e-02 -1.97118267e-01 -2.53051400e-01 4.90383580e-02\\n3.63614053e-01 1.87947273e-01 3.04749250e-01 -3.75626981e-01\\n2.95814779e-03 -9.39863361e-03 -4.65635844e-02 4.35519278e-01\\n1.16406664e-01 -9.51788947e-03 -1.23558588e-01 -1.92275301e-01\\n5.08605242e-01 2.75412407e-02 -9.50071141e-02 5.10627404e-02\\n8.42717737e-02 -1.44816548e-01 -4.94374901e-01 9.71820951e-02\\n4.66368869e-02 -2.49552578e-01 -2.14861799e-03 1.58285260e-01\\n1.85644016e-01 7.49705359e-02 -5.95128417e-01 -2.18601316e-01\\n-3.39220345e-01 -3.65379415e-02 1.12151667e-01 -4.76320267e-01\\n-5.33669256e-03 -5.10306507e-02 -6.29264295e-01 2.12740347e-01\\n-1.95973694e-01 -1.43745005e-01 1.53202370e-01 5.08390181e-02\\n-2.86069632e-01 9.45396256e-03 1.35232583e-01 2.59672761e-01\\n-3.07804048e-01 -1.74276307e-01 6.54586032e-03 -9.91381049e-01\\n1.87845469e-01 3.03550698e-02 -1.27887338e-01 1.29680991e-01\\n-4.06414978e-02 -6.92942381e-01 1.17505282e-01 -3.63826752e-01\\n-2.14895338e-01 -9.04371291e-02 -2.52536833e-01 -3.47979546e-01\\n3.94411385e-02 9.59743932e-03 -1.88935935e-01 4.03753489e-01\\n-3.40673715e-01 4.35669065e-01 -1.32329017e-01 1.30729973e-01\\n1.11544088e-01 -2.47792259e-01 1.12777866e-01 -4.38190758e-01\\n-2.82479882e-01 -1.98119223e-01 -3.74101996e-01 -2.95929968e-01\\n-5.98878451e-02 -2.93092579e-01 -1.19012818e-01 6.18605986e-02\\n3.33937556e-01 1.33729905e-01 -1.29205287e-01 -3.62458229e-01\\n1.69575542e-01 -5.40457308e-01 2.30198592e-01 -1.28210127e-01\\n-1.26892716e-01 -6.12140670e-02 2.09212929e-01 8.62802863e-02\\n1.36641920e-01 -3.85998368e-01 2.84716070e-01 -3.66512358e-01\\n-3.15181136e-01 -1.67194635e-01 -5.04035577e-02 1.25146601e-02\\n3.11727792e-01 -4.18432206e-01 -2.14082748e-03 2.74862409e-01\\n2.60538131e-01 8.96861330e-02 2.27151543e-01 -7.66113698e-02\\n-8.83215964e-02 2.94792235e-01 -4.18162882e-01 1.65259093e-01\\n7.60153890e-01 1.09358355e-01 7.60658532e-02 2.85158634e-01\\n2.56973416e-01 2.69388139e-01 5.00717282e-01 4.79386672e-02\\n-1.19028293e-01 2.50033140e-01 1.59221850e-02 -5.21474123e-01\\n-1.09588638e-01 -7.16493130e-02 -1.92833632e-01 -3.23404968e-01\\n6.44350886e-01 4.67520118e-01 -5.06553769e-01 -1.73717499e-01\\n-2.66003728e-01 -1.40803725e-01 1.44920319e-01 -7.50689059e-02\\n1.37838600e-02 -5.97605258e-02 4.68942523e-01 -1.26253605e-01\\n2.14266628e-01 5.31075597e-01 -1.86657637e-01 -3.47286224e-01\\n-1.24417886e-01 1.53236568e-01 -1.95224397e-02 4.33477342e-01\\n-2.21219495e-01 2.33311713e-01 9.33096409e-02 1.77044272e-01\\n-9.86758471e-02 6.94394112e-02 1.35936245e-01 9.52033103e-02\\n1.52097076e-01 1.66829675e-03 3.52826059e-01 3.87930453e-01\\n2.76531160e-01 3.96166533e-01 3.64475697e-01 1.24166861e-01\\n3.91465247e-01 5.62030435e-01 3.07321250e-01 6.72038794e-02\\n-5.79363704e-02 2.63212249e-03 1.57451779e-01 -4.07832377e-02\\n3.35983723e-01 4.08975899e-01 1.33378997e-01 8.72005939e-01\\n3.71215165e-01 3.48622501e-01 7.47449160e-01 -6.23856068e-01\\n-4.46658254e-01 3.16884965e-02 4.78175730e-01 -4.13712263e-01\\n2.49979869e-02 1.53403953e-01 -3.06449413e-01 2.79428363e-01\\n-4.80152488e-01 -1.69091254e-01 2.16486864e-02 1.04581207e-01\\n-3.51752862e-02 -7.25307614e-02 -2.02012464e-01 2.11214930e-01\\n-9.08846632e-02 -1.30395770e-01 -3.91294450e-01 -1.48296446e-01\\n-1.89257085e-01 -1.11438692e-01 1.22827049e-02 -1.00664228e-01\\n-2.56660953e-02 -3.71397108e-01 -7.60997087e-02 -3.88763472e-02\\n3.47960740e-01 -6.50051981e-02 -3.67048234e-02 -9.71247032e-02\\n2.41734654e-01 2.34557673e-01 5.88870406e-01 5.74958287e-02\\n1.06842056e-01 -2.58659005e-01 -2.17410609e-01 1.60957932e-01\\n1.75131649e-01 9.63894874e-02 2.90348418e-02 2.45911419e-01\\n-3.41180503e-01 -1.26341254e-01 1.88839585e-01 3.19260865e-01\\n-4.12410438e-01 -2.25242097e-02 -6.72351345e-02 1.75769627e-01\\n1.10682428e-01 2.09808290e-01 -3.08911473e-01 5.23173064e-02\\n-2.06504524e-01 -4.43239391e-01 3.35786313e-01 -1.11409143e-01\\n-9.95671973e-02 1.97682194e-02 2.82165438e-01 1.20935649e-01\\n-2.67954499e-01 1.45463087e-02 -5.73985651e-02 8.98494869e-02\\n2.59898715e-02 3.76415074e-01 -2.24367201e-01 -2.51332343e-01\\n-2.52039790e-01 2.15256810e-01 -9.52642858e-02 1.63145423e-01\\n-2.35626549e-02 4.01792526e-01 2.37347428e-02 8.10715556e-02\\n3.67659450e-01 -1.90224815e-02 -2.72442818e-01 -2.54267246e-01\\n-2.98907518e-01 -2.08814263e-01 -1.41596138e-01 -7.61095211e-02\\n1.85458571e-01 -3.50936562e-01 -2.29051430e-02 -8.71997774e-02\\n-1.46647722e-01 -3.01208168e-01 -1.66410524e-02 -8.58882442e-02]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team The Application Framework Team is mainly responsible for software frameworks used in the Avaloq Banking Suite (ABS) for the business process modelling and data management. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Business Data Events is a newly built, high-volume data streaming platform. It streams all relevant business events from the Avaloq core banking system to a series of microservices. The data streaming platform is designed for high throughput (100 million messages per hour) and for low latency (below 20 ms). Our technology stack is based on Java (Spring Boot), Oracle and PL/SQL, Docker, Kubernetes, Apache Kafka, Google Protocol Buffers, Prometheus, Grafana, Angular and more. Your mission Further develop and optimize the data streaming platform Drive and enhance the core frameworks of Avaloq’s current and future products Participate in architectural design Understand Avaloq’s architectural strategy and translate it to scalable and maintainable solutions Support and consult our stakeholders – customers and internal business teams Constant self-development What you need University degree in Computer Science or equivalent experience Strong software engineering background, including understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Knowledge and hands-on experience in Java Solid understanding of relational databases Strong communication abilities and proficient English language skills You will get extra points for the following Experience with concurrent and distributed systems Experience with Spring Boot Experience with PL/SQL Experience with microservice architectures Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Don’t be shy – apply! Avaloq Evolution AG Kristin Stengel, Talent Acquisition Partner 8027 Zürich www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " 'soft_skills': '[\"Writing\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Low Latency\", \"Spring Boot\", \"Protocol Buffers\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Data Driven Instruction\", \"Wealth Management\", \"Event Data Recorder\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"Architectural Design\", \"Translations\", \"Apache Kafka\", \"Microservices\", \"Software Engineering\", \"Docker (Software)\", \"Agile Methodology\", \"Business Process\", \"High Throughput Screening\", \"Library For WWW In Perl\", \"Scalability\", \"Clinical Data Management\", \"Grafana\", \"Angular (Web Framework)\", \"Business Events\", \"Relational Databases\", \"Banking\", \"Software Modernization\", \"Java (Programming Language)\", \"Prometheus (Software)\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '45',\n", + " 'job_title': 'software integration engineer',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Investment Banking & Asset Management',\n", + " 'website': 'www.evooq.ch',\n", + " 'jobdescription_embedded': '[[-1.68128863e-01 1.47294775e-01 4.35314238e-01 1.03110090e-01\\n5.61902881e-01 -7.97348320e-02 -1.59811065e-01 3.72415334e-01\\n-8.33733752e-03 -3.67878765e-01 -1.52336314e-01 -2.37585738e-01\\n-3.37354131e-02 8.95932764e-02 5.61325066e-02 2.54188120e-01\\n2.37652689e-01 2.88989805e-02 -1.69625893e-01 2.19949186e-01\\n1.11101702e-01 -2.00569499e-02 2.21947238e-01 6.39403701e-01\\n3.54957104e-01 -9.49822739e-03 -5.59865721e-02 8.41386802e-03\\n-1.89814463e-01 -1.63141251e-01 5.26956260e-01 1.57068148e-01\\n-2.09396839e-01 -3.88300061e-01 3.09270211e-02 1.39186993e-01\\n-2.06834257e-01 -1.98661655e-01 -8.47955942e-02 1.42582297e-01\\n-3.93504590e-01 -2.11757615e-01 -5.75681627e-02 1.19460441e-01\\n-2.92561829e-01 -3.05757791e-01 -2.88881268e-02 -6.76742941e-02\\n1.38082579e-01 -7.79613527e-03 -5.24741113e-01 2.11558670e-01\\n-7.84013644e-02 -2.03570202e-01 3.43775332e-01 7.00410783e-01\\n-1.74974240e-02 -4.61337060e-01 -4.14225131e-01 -3.21062326e-01\\n-3.66777461e-03 -1.24672212e-01 6.49402961e-02 -3.24815184e-01\\n2.30561361e-01 -5.53616732e-02 -1.14875004e-01 2.80383408e-01\\n-7.61394262e-01 -8.72813314e-02 -1.32919982e-01 -1.31924078e-01\\n-3.75573128e-01 -9.02865976e-02 -2.72569865e-01 -1.45808235e-01\\n-1.73297346e-01 3.90760183e-01 1.46646783e-01 1.26234248e-01\\n-8.88999179e-02 3.10318202e-01 -1.88351870e-01 4.63643372e-01\\n2.40018100e-01 2.63512760e-01 1.53541639e-01 2.41300628e-01\\n-4.33555901e-01 4.42212224e-01 2.03539014e-01 -3.43963027e-01\\n2.85174400e-01 1.21223398e-01 3.30555141e-01 3.40144448e-02\\n1.55371219e-01 7.27808848e-02 -1.32952884e-01 3.20399791e-01\\n2.68837363e-01 -2.85810441e-01 1.09653361e-01 -8.38390365e-02\\n3.45762670e-02 -4.63872328e-02 4.74566547e-03 1.83913410e-02\\n-3.93896639e-01 2.65181720e-01 9.91052985e-02 -1.99264750e-01\\n-4.14207950e-02 -4.26346600e-01 -2.36790255e-02 7.09409341e-02\\n5.62368333e-03 2.04241008e-01 1.96208939e-01 2.37501964e-01\\n3.41495931e-01 6.55578151e-02 1.55596390e-01 7.61557043e-01\\n-1.01584226e-01 -1.18829459e-02 -2.76519090e-01 4.29472864e-01\\n1.14391528e-01 -3.27624351e-01 2.53814906e-01 2.22400531e-01\\n-4.53908518e-02 -6.36736080e-02 -1.79570079e-01 2.92052597e-01\\n-8.06294531e-02 -3.20610493e-01 -2.76493639e-01 1.66942030e-01\\n-1.86257828e-02 -3.30361515e-01 5.60239375e-01 4.29778583e-02\\n1.89587399e-01 -1.46029875e-01 -6.12184126e-03 -1.51939273e-01\\n-3.19303721e-02 1.91002533e-01 -9.13634598e-02 5.76310866e-02\\n-1.72939733e-01 -1.22181363e-01 -1.81536451e-01 8.34787712e-02\\n-2.65188694e-01 4.42739502e-02 -5.38306981e-02 -8.73634890e-02\\n1.78696245e-01 4.09455858e-02 -2.38084674e-01 1.26777127e-01\\n-1.17140142e-02 -1.52977020e-01 -4.38295072e-03 3.42681944e-01\\n-2.34903499e-01 2.69638598e-01 1.38456782e-03 -8.61889571e-02\\n4.79957670e-01 5.63570485e-02 4.01633501e-01 3.66916917e-02\\n1.61033362e-01 -1.34031892e-01 2.17201725e-01 2.21559510e-01\\n-6.96760595e-01 4.12164301e-01 6.25087554e-03 -2.14383915e-01\\n1.81181565e-01 -6.26953170e-02 2.18474373e-01 -2.68743604e-01\\n1.43958911e-01 -1.23676173e-01 -2.69235104e-01 -3.00969124e-01\\n-1.47512406e-01 -1.95377227e-02 3.13833565e-01 -5.73024750e-01\\n-8.99280757e-02 2.61618823e-01 -4.70705479e-01 -2.00948462e-01\\n8.29637870e-02 1.33871600e-01 7.01398998e-02 3.56388576e-02\\n-1.86609164e-01 -3.99383336e-01 8.18568319e-02 -3.57486486e-01\\n-2.43403062e-01 3.24413404e-02 -2.39725426e-01 2.01549739e-01\\n3.33346128e-02 -3.25893721e-04 -1.70452043e-03 5.77167757e-02\\n-2.30749622e-01 5.76498918e-02 1.61576524e-01 4.94486131e-02\\n3.66422802e-01 5.42224087e-02 -3.68894249e-01 5.86344957e-01\\n-3.11225414e-01 6.23655856e-01 1.71733886e-01 -7.98395216e-01\\n5.10502100e-01 3.16019505e-01 3.80936414e-02 -2.49795884e-01\\n5.21906734e-01 -4.36866671e-01 -5.36233149e-02 3.54008451e-02\\n-3.41631532e-01 -3.18905532e-01 1.79821163e-01 -2.49334574e-01\\n-1.72654912e-01 5.62681913e-01 1.79174617e-02 1.08783534e-02\\n1.77092463e-01 -2.56482840e-01 -3.48413773e-02 -5.36901653e-02\\n-2.15849012e-01 -2.87638456e-01 -5.52793860e-01 -1.52895883e-01\\n-2.51653910e-01 -4.57996964e-01 -1.46980464e-01 -3.82162303e-01\\n-1.62851557e-01 -2.34563425e-01 -1.46315470e-01 3.02969098e-01\\n1.58968776e-01 1.13789327e-01 -9.56362579e-03 7.28087798e-02\\n-1.23102292e-01 -6.05919063e-01 -3.53180803e-02 7.15499818e-02\\n3.07807803e-01 1.37429923e-01 1.65170550e-01 6.90665543e-02\\n9.49916542e-02 6.21306002e-01 -2.04154506e-01 -3.38269204e-01\\n1.50972128e-01 2.69060224e-01 3.98530066e-03 -9.28666964e-02\\n1.78645775e-01 3.17791641e-01 -2.69582063e-01 -2.63166660e-03\\n-6.93970397e-02 5.34727797e-02 3.38417500e-01 3.48978559e-03\\n-2.24355116e-01 -6.63933828e-02 9.92172435e-02 1.52574912e-01\\n-4.83114868e-01 -1.93199545e-01 5.44397533e-01 2.70623505e-01\\n9.34510455e-02 1.86391443e-01 1.79662839e-01 -4.70327362e-02\\n-1.86024874e-01 -1.77284718e-01 2.44594052e-01 2.11579148e-02\\n9.14168134e-02 6.58574165e-04 -3.32983956e-02 -5.95084965e-01\\n-3.72826886e+00 -1.78480342e-01 1.28922507e-01 -1.64920166e-01\\n2.00949878e-01 -3.00656080e-01 1.31269902e-01 -7.20228106e-02\\n-3.15222412e-01 1.30564421e-01 -9.32901353e-02 -1.64200574e-01\\n1.48747444e-01 1.35411307e-01 1.80549081e-02 3.15282643e-01\\n8.48204121e-02 -1.10754043e-01 1.20123543e-01 2.72085071e-01\\n-2.05266327e-01 -7.24351704e-01 1.75991833e-01 8.14142004e-02\\n2.66727865e-01 1.71779618e-02 -3.98834616e-01 -8.58699679e-02\\n-2.44717285e-01 -1.87625647e-01 1.91170555e-02 -2.38981768e-01\\n-1.77039996e-01 2.93625265e-01 2.06057817e-01 -1.17549978e-01\\n6.95791170e-02 -3.28475893e-01 -2.43799329e-01 -4.40557271e-01\\n9.31955874e-02 -4.25943345e-01 3.65621559e-02 -1.41531482e-01\\n5.99165559e-01 -3.85811597e-01 6.23889007e-02 8.16986337e-02\\n1.85796812e-01 2.08015501e-01 1.55843765e-01 -1.63045116e-02\\n-2.21752882e-01 -1.70180261e-01 -7.62226582e-02 -2.18808964e-01\\n4.83260989e-01 4.61859733e-01 -1.43537521e-01 2.10913464e-01\\n9.43685099e-02 -1.20121121e-01 -3.02825689e-01 -3.77167940e-01\\n-6.23809658e-02 -1.68955669e-01 -5.98849714e-01 -3.18909138e-01\\n1.20164240e-02 -1.64223894e-01 -1.95989743e-01 5.47281146e-01\\n-2.02879548e-01 -4.14439708e-01 3.17797735e-02 -5.30532777e-01\\n4.93966192e-01 -1.50539190e-01 5.64648844e-02 -5.46558537e-02\\n-1.82264954e-01 -4.70313102e-01 8.51233229e-02 -1.17056169e-01\\n-7.91182928e-03 -2.84506053e-01 -1.55911557e-02 -1.32803202e-01\\n-3.78483444e-01 -4.97961402e-01 3.90376776e-01 5.52649796e-02\\n3.35341215e-01 9.40819532e-02 2.59362400e-01 4.88539301e-02\\n2.32921317e-01 -1.77754427e-03 -1.16420873e-02 -4.65375334e-01\\n1.01872191e-01 -1.15964366e-02 4.63016599e-01 -2.68639386e-01\\n4.67863344e-02 8.24160874e-02 -2.02701285e-01 5.26804216e-02\\n2.84012169e-01 3.91109698e-02 5.07305339e-02 -2.09340632e-01\\n2.95160532e-01 -3.62573951e-01 -1.57285467e-01 9.25374180e-02\\n3.04213800e-02 5.94360590e-01 6.40504956e-02 -2.78194189e-01\\n-1.72764286e-01 5.22090793e-01 3.29062752e-02 -1.59293488e-01\\n-1.97975904e-01 6.85797632e-02 -2.44041502e-01 1.97353497e-01\\n1.43389739e-02 -1.84940323e-01 -1.95317775e-01 -2.31408417e-01\\n-7.72331655e-02 1.52961895e-01 3.59108716e-01 4.41749729e-02\\n-2.90062465e-02 -3.93463343e-01 -4.48306426e-02 1.48902580e-01\\n2.03450531e-01 3.82565081e-01 2.05063835e-01 -1.99494362e-01\\n-9.03776065e-02 2.99344987e-01 -1.16250888e-01 2.51636893e-01\\n-1.67220592e-01 9.53625590e-02 -5.75240552e-01 -2.35108927e-01\\n-2.33209282e-01 -2.94880956e-01 1.76110029e-01 2.14334130e-01\\n1.71016157e-01 -6.20361306e-02 6.39283881e-02 -4.83012497e-01\\n3.18965495e-01 7.55835250e-02 2.77103871e-01 4.94899824e-02\\n-3.50857936e-02 5.12454450e-01 -5.41864261e-02 -1.37286872e-01\\n-1.47367239e-01 1.15424030e-01 -1.23274684e-01 -2.20224679e-01\\n-4.89579402e-02 -4.90295917e-01 -9.68478471e-02 3.12052876e-01\\n1.87804118e-01 -2.03140810e-01 -2.86225080e-01 3.05936903e-01\\n-6.12818934e-02 -1.73054278e-01 -1.53871581e-01 -1.21928193e-02\\n3.99883479e-01 1.99321672e-01 3.16624731e-01 -4.35362935e-01\\n-1.01916581e-01 9.76095907e-04 7.28148744e-02 4.06958312e-01\\n7.54189789e-02 1.03038743e-01 -2.00444814e-02 -1.92449421e-01\\n3.68172228e-01 -3.05240415e-02 -1.44173622e-01 7.24907126e-03\\n6.78982511e-02 -9.29013863e-02 -4.20568526e-01 1.15129419e-01\\n9.82277747e-03 -3.17494035e-01 5.61600067e-02 1.45324156e-01\\n1.63944021e-01 -5.29504800e-03 -5.80588102e-01 -2.26827130e-01\\n-3.31592530e-01 6.11777008e-02 3.13306265e-02 -4.53329146e-01\\n7.83101916e-02 -1.07311442e-01 -5.58490753e-01 2.32817799e-01\\n-1.86985567e-01 -1.42525807e-01 5.89415692e-02 3.37508805e-02\\n-3.07193100e-01 -1.27870338e-02 1.04919195e-01 2.96422541e-01\\n-2.07113847e-01 -1.31758913e-01 7.74511993e-02 -9.47205305e-01\\n1.35081694e-01 1.33756831e-01 -1.19658716e-01 1.26474053e-01\\n-6.05270565e-02 -7.06068337e-01 6.66025728e-02 -3.76786977e-01\\n-1.66760176e-01 -1.46450132e-01 -2.11099908e-01 -3.80655944e-01\\n1.25072703e-01 4.81946655e-02 -2.27547437e-01 3.94070745e-01\\n-2.75100976e-01 3.68109733e-01 -6.91472590e-02 4.96269166e-02\\n1.50176119e-02 -1.63823858e-01 1.38874486e-01 -2.76051998e-01\\n-3.36816609e-01 -2.06801534e-01 -3.13355416e-01 -1.79582641e-01\\n-4.21354435e-02 -3.16959798e-01 -1.92110855e-02 -6.04686365e-02\\n4.56686467e-01 1.23045452e-01 -1.75307870e-01 -2.64023364e-01\\n4.37808707e-02 -4.21046317e-01 2.90062521e-02 -1.76873952e-01\\n-7.18785897e-02 -3.62824239e-02 6.47548661e-02 6.25013039e-02\\n2.02290550e-01 -4.01015550e-01 2.52477467e-01 -3.16339105e-01\\n-4.07891721e-01 -1.25659704e-01 4.21583503e-02 5.92468269e-02\\n2.80964941e-01 -4.54706609e-01 -2.48445310e-02 3.48300606e-01\\n1.62695840e-01 -2.72799842e-02 2.41704121e-01 -1.19289242e-01\\n-7.61452913e-02 3.81438345e-01 -4.59581316e-01 1.75386727e-01\\n6.34703636e-01 1.30245656e-01 1.81873038e-01 2.16921017e-01\\n1.78758204e-01 2.05135912e-01 4.01299298e-01 8.36498737e-02\\n-4.82329242e-02 2.99093425e-01 4.04538028e-02 -5.02735734e-01\\n-2.49397345e-02 -1.59248427e-01 -1.69059113e-01 -4.33924407e-01\\n6.17326260e-01 2.92010754e-01 -4.24525887e-01 -2.41783410e-01\\n-1.32218614e-01 -2.49724254e-01 9.95014608e-02 -1.45405680e-01\\n2.51905769e-02 -6.36068508e-02 3.59645605e-01 -1.71683371e-01\\n2.95995384e-01 5.91365695e-01 -1.27350584e-01 -2.53869146e-01\\n-8.97180364e-02 2.22738191e-01 1.33663878e-01 5.18028557e-01\\n-1.53765932e-01 3.71468782e-01 2.47903019e-02 1.99752778e-01\\n-8.52378234e-02 8.73349532e-02 1.57535478e-01 1.59054160e-01\\n2.41001666e-01 -3.90572734e-02 3.38641047e-01 3.63949805e-01\\n1.81306794e-01 3.67089719e-01 3.66563201e-01 5.90634085e-02\\n4.59791005e-01 5.90558410e-01 2.93667376e-01 1.43136978e-01\\n7.99467862e-02 5.20725399e-02 3.83734517e-02 -8.64794031e-02\\n2.25679293e-01 4.60319489e-01 5.57947718e-02 7.60943592e-01\\n4.45387810e-01 2.95687854e-01 6.40802860e-01 -6.78275943e-01\\n-3.66522670e-01 -4.49226610e-02 4.63913739e-01 -4.83679146e-01\\n5.15789762e-02 2.19729915e-01 -2.02840388e-01 3.89310479e-01\\n-3.55032623e-01 -8.48148167e-02 4.42487113e-02 4.66773584e-02\\n9.97295529e-02 -1.10383265e-01 -2.35966861e-01 2.69817617e-02\\n-1.24333709e-01 -1.14856593e-01 -4.37362641e-01 -1.21442787e-01\\n-3.21948618e-01 -1.24309950e-01 -5.96647970e-02 -8.83073583e-02\\n-1.67680800e-01 -3.22568655e-01 -1.66798487e-01 -1.67561248e-01\\n3.41501087e-01 -1.32807672e-01 -6.95448145e-02 -1.62482545e-01\\n3.01190406e-01 2.03732207e-01 4.32136118e-01 4.93046604e-02\\n1.49875328e-01 -1.92663923e-01 -1.54028594e-01 3.70327868e-02\\n1.12321302e-01 -1.96878575e-02 -1.32181812e-02 2.94967711e-01\\n-2.88704306e-01 -1.72770724e-01 3.51048976e-01 2.35429853e-01\\n-3.99206281e-01 2.18921248e-02 -7.20779300e-02 1.55422449e-01\\n8.94272998e-02 2.11567223e-01 -2.43989930e-01 1.36162471e-02\\n-1.13879994e-01 -5.21218002e-01 3.54247570e-01 -1.29307300e-01\\n-3.58745977e-02 9.68332589e-02 2.66155928e-01 1.98837504e-01\\n-1.62176996e-01 2.39111669e-02 -8.54180828e-02 6.67735934e-02\\n6.93216249e-02 3.09320420e-01 -2.26467744e-01 -2.84156173e-01\\n-2.63617426e-01 2.02416644e-01 -2.05831692e-01 1.08235665e-01\\n-9.53044277e-03 3.93489122e-01 1.81642234e-01 1.73937529e-01\\n2.77668834e-01 -4.60480526e-02 -3.44084382e-01 -2.47148171e-01\\n-2.57059276e-01 -1.44745022e-01 -4.98206168e-02 -2.12546006e-01\\n7.95108899e-02 -2.49087647e-01 -7.19678029e-02 -4.55603041e-02\\n-1.54507414e-01 -3.68393928e-01 -4.72110622e-02 -8.35018456e-02]]',\n", + " 'job_description': 'Evooq is a Swiss investment and technology partner of banks, independent asset managers and pension funds. Active in the market since 2011, Evooq’s portfolio of solutions has been developed to empower advisors - from derivative financial instruments to risk intelligence, investment advisory and monitoring tools and more. To date, clients of leading financial institutions have utilized Evooq’s products in the Swiss, EU and Asian markets. We are a human sized company focused on delivering innovative software products that change how wealth management services are delivered to clients. We are looking for smart, pragmatic, clear communicators who like to solve problems with original thinking, drive features, and are able to work as part of an agile and cross-functional team in order to make us collectively stronger. Software Integration Engineer A Software Integration Engineer at Evooq works to onboard banks onto the platform. He has ease with customer contact (technical and business teams), he adapts to various technical setups and organizations in a solution-oriented state of mind. We are looking to hire people who can collaborate on large projects with discussion, review and knowledge sharing to drive features and make us collectively stronger. We are looking for the following specific skills and experience but are happy to talk to people who are bright and have the ability to learn fast. Banking software : Avaloq, Finnova, T24, S2i, Olympic Knowledge in Banking Languages: Java, JavaScript Tools: TDD, junit, git, maven Datastores: Postgres Orchestration: OpenShift, Docker-Swarm Containers: Dockers Optional but valuable skills and experience include: Domain knowledge: financial products, wealth management Agile delivery experience Cloud: AWS, GCP or Azure We are looking for smart, clear communicators who like to solve problems with original thinking, and are able to work as part of a cross-functional team. Start the conversation by clicking “Apply now”. Candidates must have or be eligible for a work permit in Switzerland. Full-time in Lausanne.',\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Innovation\", \"Complex Problem Solving\"]',\n", + " 'hard_skills': '[\"OpenShift\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Collections\", \"Docker Container\", \"Junit\", \"Wealth Management\", \"Financial Institution\", \"Business Integration Software\", \"Financial Instrument\", \"Activism\", \"Onboarding\", \"Disciplined Agile Delivery\", \"Docker Swarm\", \"SARS Software Products\", \"Adapters\", \"Investment Advisory\", \"Feature-Driven Development (FDD)\", \"Investments\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Cross-Functional Team Leadership\", \"Humanism\", \"Banking Software\", \"Asset Management\", \"Google Cloud Platform (GCP)\", \"Banking\", \"Git Flow\", \"Derivatives\", \"Pension Funds\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'c++ back end software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Aerospace & Defence',\n", + " 'website': 'www.veritystudios.com',\n", + " 'jobdescription_embedded': '[[-2.05985904e-01 3.63334298e-01 3.98180604e-01 7.37345889e-02\\n6.12776875e-01 -1.37464389e-01 -5.66377267e-02 2.55230784e-01\\n7.42716938e-02 -3.34895611e-01 -7.98960216e-03 -3.96854490e-01\\n-8.38371068e-02 1.38850421e-01 8.63480121e-02 5.18396437e-01\\n1.43955186e-01 7.12292120e-02 -2.42769927e-01 4.73550498e-01\\n4.60687205e-02 -1.24515496e-01 1.94112062e-01 7.60677397e-01\\n3.29556614e-01 2.42234170e-02 -1.37974501e-01 -7.10776448e-02\\n-2.13933125e-01 -5.19141406e-02 4.58962619e-01 6.75563216e-02\\n-1.07235275e-01 -5.70448339e-01 1.12456426e-01 1.05927154e-01\\n-2.50869185e-01 -1.11949027e-01 -1.29622042e-01 1.66764438e-01\\n-6.19513690e-01 -3.82298768e-01 -1.60045493e-02 -8.34970325e-02\\n-2.54685223e-01 -2.79926658e-01 2.11237147e-01 -2.39865445e-02\\n1.70779213e-01 1.45328030e-01 -4.76414502e-01 2.34440804e-01\\n-2.34336197e-01 -1.93579555e-01 3.83755922e-01 6.64856672e-01\\n2.58830860e-02 -5.88672101e-01 -5.01487315e-01 -3.41661394e-01\\n-8.89664590e-02 -9.22143366e-03 1.02668162e-02 -4.75725114e-01\\n2.40385279e-01 2.11712383e-02 6.66927546e-02 3.38225812e-01\\n-7.42188096e-01 -1.98617861e-01 -2.21957371e-01 6.28391132e-02\\n-2.27078557e-01 2.23747548e-03 -3.39267105e-01 -1.28093749e-01\\n-1.72613531e-01 4.28349525e-01 -1.82365552e-02 5.71071655e-02\\n-2.71872938e-01 3.69172007e-01 -1.57922849e-01 5.11346817e-01\\n2.41458386e-01 2.26627022e-01 1.56122446e-01 4.16605175e-01\\n-4.52266932e-01 3.00074458e-01 2.52851784e-01 -3.06461662e-01\\n2.18064755e-01 2.47903913e-01 4.03815567e-01 -7.38221407e-03\\n1.15824014e-01 1.26008645e-01 -3.36245447e-01 3.49652469e-01\\n2.69072413e-01 -2.39013523e-01 1.78278387e-01 -1.25444710e-01\\n8.66488218e-02 2.85100713e-02 -2.23362576e-02 1.84874579e-01\\n-2.84118414e-01 4.43160534e-01 2.94514388e-01 -2.56686330e-01\\n-2.64549255e-01 -5.97270846e-01 -6.77708983e-02 1.30404428e-01\\n7.87365288e-02 1.36354595e-01 1.92636877e-01 1.14882261e-01\\n2.76067168e-01 -2.29275644e-01 1.36476874e-01 9.40843701e-01\\n-1.33099928e-01 -1.03538103e-01 -6.32294640e-02 3.19909990e-01\\n6.59054667e-02 -1.73681334e-01 7.24943355e-02 2.32951432e-01\\n-1.45552503e-02 -1.17562473e-01 -2.69029617e-01 3.36433053e-01\\n-1.97948620e-01 -2.49143064e-01 -3.78955394e-01 3.51919234e-01\\n-1.15315601e-01 -4.07644629e-01 6.82614565e-01 -1.04512244e-01\\n1.52674019e-01 -4.64980677e-02 1.61041487e-02 -7.72189051e-02\\n-1.58067122e-01 1.02436595e-01 1.65273577e-01 7.28868470e-02\\n-3.18537533e-01 -2.87096769e-01 -1.78769052e-01 -4.54214178e-02\\n-3.19787741e-01 2.05240905e-01 -9.91580486e-02 -2.36709565e-01\\n7.16910213e-02 1.83305278e-01 -4.80815113e-01 2.18793720e-01\\n-2.40914747e-01 -6.99398741e-02 -7.83811882e-02 5.64806938e-01\\n-2.77467638e-01 1.73256397e-01 1.18529722e-01 -2.27510296e-02\\n6.31084800e-01 2.06389159e-01 2.35145420e-01 1.29319001e-02\\n3.82446945e-01 -7.83267096e-02 1.56693220e-01 3.07950974e-01\\n-6.89495087e-01 2.99862176e-01 -3.20297405e-02 -5.80733046e-02\\n2.04313934e-01 -1.30033612e-01 3.56816083e-01 -3.66585791e-01\\n-1.29208818e-01 -2.42006898e-01 -3.71527553e-01 -2.40603611e-01\\n-2.28652120e-01 3.93386371e-02 2.79398203e-01 -3.10971290e-01\\n-9.18062925e-02 1.97226346e-01 -5.74024558e-01 -1.66245937e-01\\n1.42289877e-01 2.43803695e-01 1.23344466e-01 6.97688311e-02\\n-1.67240083e-01 -6.82010055e-01 3.09797674e-02 -3.36659491e-01\\n-3.53111207e-01 -1.99150890e-02 -3.32719207e-01 6.41027540e-02\\n-3.05872615e-02 1.12619169e-01 -7.96262622e-02 -2.88432091e-02\\n-4.58801597e-01 3.66032273e-02 3.19360271e-02 -3.15219257e-03\\n1.81903243e-01 1.28900915e-01 -4.40722167e-01 4.27287459e-01\\n-3.60187411e-01 6.59742475e-01 -2.54579633e-02 -9.26798463e-01\\n5.15718222e-01 3.95129174e-01 -1.20112583e-01 -2.78218091e-01\\n4.32752430e-01 -5.82723558e-01 -1.87039986e-01 7.82845914e-02\\n-2.26778746e-01 -2.97221065e-01 3.39034796e-01 -2.90983677e-01\\n-3.32921147e-01 5.92325926e-01 1.02244355e-01 1.43974900e-01\\n3.22126627e-01 -3.28167975e-01 -4.69457135e-02 2.15251232e-03\\n3.08986418e-02 -1.11619577e-01 -5.82536340e-01 -1.53299784e-02\\n-7.27580339e-02 -3.33276272e-01 -3.45025063e-02 -4.34960335e-01\\n-1.45363450e-01 -3.40342939e-01 -2.55671144e-01 5.37418574e-02\\n3.47044915e-01 5.65831661e-02 1.07031733e-01 6.65723756e-02\\n-5.10901250e-02 -6.68282092e-01 7.48240799e-02 1.27382770e-01\\n4.18702900e-01 2.33208656e-01 2.18327329e-01 5.94726130e-02\\n1.24663159e-01 7.71426260e-01 -3.42102289e-01 -1.72709197e-01\\n6.91612884e-02 6.19139336e-02 -2.05395408e-02 -1.48755342e-01\\n2.65958071e-01 3.88664514e-01 -3.76277506e-01 3.82000022e-02\\n-9.30259228e-02 2.03964692e-02 4.02058005e-01 -4.58512679e-02\\n-2.63992935e-01 -2.96835959e-01 -8.26911181e-02 1.12520903e-02\\n-5.15154958e-01 -1.50129423e-01 2.82796025e-01 8.38344842e-02\\n1.94413751e-01 5.02666198e-02 1.70590863e-01 -9.82355103e-02\\n-4.41521227e-01 -3.11400533e-01 1.22995183e-01 1.48827359e-01\\n-2.76790094e-02 1.12194128e-01 7.44633451e-02 -7.07996726e-01\\n-2.72454309e+00 5.34029864e-02 1.75257504e-01 -1.98654652e-01\\n3.36907804e-01 -6.53685927e-02 1.09978214e-01 -3.16157192e-02\\n-3.55830789e-01 4.42458987e-02 -2.89239287e-02 -1.59436435e-01\\n7.56649151e-02 1.86911806e-01 1.44056782e-01 4.63028215e-02\\n6.98418692e-02 -3.27719748e-01 -9.36945155e-02 3.31667989e-01\\n-1.18849806e-01 -8.04062247e-01 2.00819045e-01 -1.26729324e-01\\n2.54911333e-01 1.95139214e-01 -4.79090929e-01 -1.46115467e-01\\n-2.61862636e-01 -1.09654486e-01 4.85282019e-03 -2.79336989e-01\\n-2.41603047e-01 1.88137472e-01 1.87168032e-01 -1.35401972e-02\\n8.62481222e-02 -4.34705317e-01 -1.60589010e-01 -4.28641707e-01\\n1.77408278e-01 -6.09819472e-01 -6.96853548e-03 -2.30592757e-01\\n6.40858293e-01 -2.70242929e-01 1.35734931e-01 1.25911921e-01\\n1.49351195e-01 2.69990042e-02 2.36425519e-01 6.78248629e-02\\n-9.65867788e-02 -2.25626662e-01 -1.29000962e-01 -2.47471124e-01\\n6.36729777e-01 3.39879185e-01 -2.07142353e-01 -1.66808292e-02\\n7.58172870e-02 -2.93556452e-01 -5.43299913e-01 -1.82129353e-01\\n-5.64413927e-02 -1.79539651e-01 -5.83404779e-01 -3.56540203e-01\\n-1.86783940e-01 -1.21287085e-01 -6.88438863e-02 7.59267151e-01\\n-4.20275092e-01 -2.10742876e-01 1.22092612e-01 -5.78946352e-01\\n4.35128927e-01 -2.75633633e-01 -1.44124031e-03 -3.35657805e-01\\n-2.88897008e-01 -5.05288661e-01 7.09490553e-02 -2.00807944e-01\\n-2.24279895e-01 -2.85540402e-01 -3.29982080e-02 -1.64206147e-01\\n-2.05053717e-01 -5.54817021e-01 3.81877899e-01 1.87059671e-01\\n3.86264861e-01 5.08880094e-02 4.64519948e-01 -1.04326755e-01\\n3.50761890e-01 1.23105720e-01 5.25633097e-02 -2.67343819e-01\\n-1.06798224e-02 4.93982062e-02 5.52316666e-01 -2.65558004e-01\\n-4.99412566e-02 1.00008756e-01 -2.66877711e-01 -4.02108654e-02\\n3.44774008e-01 -1.90543327e-02 2.04607621e-02 -2.38944471e-01\\n3.50827903e-01 -3.92211854e-01 -1.28689528e-01 5.48722632e-02\\n2.60435879e-01 9.16035593e-01 2.89942957e-02 -4.06902254e-01\\n-1.69348806e-01 5.25479972e-01 -8.75239521e-02 1.28346324e-01\\n-5.64013906e-02 1.12256117e-01 -3.05525213e-01 3.53314340e-01\\n6.43014312e-02 -3.14700872e-01 -2.42124379e-01 -5.53655252e-02\\n-1.95170686e-01 4.67520624e-01 2.03857601e-01 8.48484188e-02\\n-9.66811031e-02 -5.17074049e-01 -1.59701943e-01 3.82808626e-01\\n1.31089941e-01 4.08550084e-01 1.88265741e-01 -3.49108070e-01\\n8.19405168e-02 4.89717305e-01 -1.45293534e-01 3.22562099e-01\\n-1.64050549e-01 2.67119467e-01 -6.20453417e-01 -3.37721467e-01\\n-4.14802641e-01 -4.14349735e-01 1.97383106e-01 4.82603669e-01\\n1.53204799e-01 -1.28630683e-01 1.68317378e-01 -4.87397552e-01\\n3.02149683e-01 2.83015072e-01 1.00283109e-01 8.34846199e-02\\n-1.17759869e-01 6.17286623e-01 1.05127871e-01 -2.48130873e-01\\n-1.06966838e-01 -7.93929249e-02 -1.23948075e-01 -2.39282727e-01\\n2.99848348e-01 -4.96423870e-01 -1.50800049e-01 3.85559142e-01\\n1.18245080e-01 -1.42266810e-01 -2.99973667e-01 2.87136734e-01\\n-3.25641818e-02 -2.36124963e-01 -2.87606478e-01 -1.41123101e-01\\n3.06777865e-01 -4.94928379e-03 3.12205136e-01 -5.73935747e-01\\n5.68464957e-02 -5.13903648e-02 1.31196082e-02 4.51087654e-01\\n-8.40906203e-02 -1.74472809e-01 -2.99184442e-01 -6.03371374e-02\\n5.48217297e-01 4.91175577e-02 -8.05393159e-02 5.94910234e-04\\n1.80061147e-01 -2.82668650e-01 -3.93472195e-01 1.59531921e-01\\n-8.40653926e-02 -2.41839379e-01 -1.71505958e-02 1.28349856e-01\\n1.37416095e-01 -2.75823791e-02 -5.25561213e-01 -1.38248727e-01\\n-1.43182695e-01 1.04452908e-01 5.48416004e-02 -4.70787257e-01\\n-3.49911489e-02 -5.91794029e-02 -6.06221080e-01 1.95649415e-01\\n-3.05625618e-01 -1.34530529e-01 2.20184281e-01 1.31248429e-01\\n-3.43111396e-01 -1.53189898e-01 -7.22303912e-02 3.39819670e-01\\n-2.04909027e-01 -2.51479685e-01 -1.24517620e-01 -8.94033074e-01\\n1.15059406e-01 -5.33648431e-02 -9.59374905e-02 2.31852964e-01\\n-8.95830169e-02 -1.01438189e+00 1.02808803e-01 -2.87014186e-01\\n-1.23003460e-01 -5.44079356e-02 -2.80505329e-01 -1.33313134e-01\\n2.15161532e-01 6.24261834e-02 -3.43123406e-01 4.18560803e-01\\n-2.62078226e-01 2.57272989e-01 -1.70919940e-01 5.71095273e-02\\n-6.81268051e-02 -1.48463920e-01 1.25125855e-01 -2.81140804e-01\\n-4.28685009e-01 -2.55029738e-01 -2.69996196e-01 -3.43083620e-01\\n-2.50073552e-01 -2.36282885e-01 -1.43171966e-01 1.72680765e-01\\n3.02348286e-01 -4.01428789e-02 -6.29873946e-02 -2.45580941e-01\\n1.51368916e-01 -4.35436219e-01 1.25311121e-01 -8.24228451e-02\\n1.22122213e-01 -2.17733800e-01 7.84816667e-02 1.65779665e-01\\n4.18182284e-01 -3.24608028e-01 4.68778223e-01 -3.72710466e-01\\n-4.76856112e-01 -2.95310944e-01 -2.42418349e-02 -1.01358160e-01\\n4.10329849e-01 -3.06138098e-01 1.89497545e-02 2.51212239e-01\\n1.62074566e-02 1.07716024e-03 2.97208190e-01 -2.26072460e-01\\n4.42043170e-02 7.91206360e-02 -3.68174314e-01 8.35003853e-02\\n7.66569734e-01 2.27703333e-01 1.60436019e-01 1.76611155e-01\\n-7.87680298e-02 1.74581856e-01 5.79604685e-01 -1.76826477e-01\\n-9.89760906e-02 1.53370082e-01 1.53601617e-01 -5.15923858e-01\\n-2.18991399e-01 -1.02344826e-01 -2.77597874e-01 -4.17335123e-01\\n6.47350669e-01 3.24208558e-01 -4.09324229e-01 -1.20936535e-01\\n-1.68782286e-02 -1.33876160e-01 3.25822204e-01 4.75306213e-02\\n-2.17234455e-02 9.15554166e-03 4.19051945e-01 -7.64211640e-02\\n3.60948175e-01 5.86866438e-01 -1.53685242e-01 -3.32891405e-01\\n-8.57250020e-02 2.37980485e-01 7.72385746e-02 2.74617195e-01\\n-2.83346415e-01 2.80306965e-01 -4.96304967e-02 4.38111350e-02\\n-2.53939241e-01 1.49510801e-01 2.59434320e-02 9.54945385e-02\\n1.71745360e-01 1.32071450e-01 4.66509789e-01 5.44153452e-01\\n1.13663808e-01 3.87066305e-01 3.59454751e-01 5.65822423e-02\\n4.70831662e-01 5.89590549e-01 3.96798193e-01 1.14028126e-01\\n1.74154237e-01 3.23015094e-01 2.44358093e-01 -1.23436943e-01\\n5.12997031e-01 4.81955409e-01 1.20019168e-01 9.29232836e-01\\n1.45038828e-01 4.72661376e-01 7.75368929e-01 -6.93370223e-01\\n-4.00529057e-01 8.01825225e-02 5.42603910e-01 -5.40490150e-01\\n8.92204568e-02 5.83554581e-02 1.72359906e-02 4.68550384e-01\\n-5.91422915e-01 -2.77828455e-01 -3.52308303e-02 2.01531619e-01\\n-8.18846747e-02 -1.34756729e-01 -2.12909371e-01 1.02107242e-01\\n-1.20052040e-01 -1.85670480e-01 -3.02780002e-01 -1.07798368e-01\\n-1.95805132e-01 6.21429086e-02 -1.33213237e-01 -1.29382968e-01\\n1.23620525e-01 -2.99780279e-01 9.81813483e-03 -1.08691722e-01\\n3.71459663e-01 -1.66730940e-01 -1.63171202e-01 -1.16961792e-01\\n3.51053357e-01 1.34677947e-01 5.22296786e-01 4.18758616e-02\\n2.24322766e-01 -2.27149367e-01 -2.32325897e-01 1.49474919e-01\\n1.20496228e-02 1.18949890e-01 7.47720972e-02 3.29894722e-01\\n-2.65817940e-01 -1.28175229e-01 8.05771351e-03 2.63151199e-01\\n-3.55885863e-01 -1.08938903e-01 -2.18016773e-01 -1.75021682e-03\\n-2.98438929e-02 1.93126902e-01 -1.03299230e-01 -7.21593797e-02\\n-1.71474069e-01 -4.37116802e-01 2.80486882e-01 -9.49724615e-02\\n-2.70961106e-01 -1.32967487e-01 4.12571549e-01 1.24051787e-01\\n-2.78940409e-01 1.41099960e-01 -2.07458019e-01 2.60855407e-01\\n3.23246270e-02 2.92219132e-01 1.05701797e-02 -2.19366729e-01\\n-2.48113886e-01 2.14953542e-01 -6.39967173e-02 1.99305657e-02\\n2.04844683e-01 6.07056201e-01 -1.01149984e-01 -1.29280359e-01\\n6.67372286e-01 -4.63127270e-02 -3.13079894e-01 -3.09482813e-01\\n-9.77961048e-02 -1.94017991e-01 -1.44472271e-01 -1.38574749e-01\\n1.43630370e-01 -3.68721157e-01 -1.21986322e-01 -3.03417236e-01\\n1.05592251e-01 -2.40879670e-01 -1.33349448e-01 -2.46001985e-02]]',\n", + " 'job_description': \"To complement its growing team, Verity Studios is looking for an experienced and versatile back end software engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software back ends for drone systems requires addressing new and challenging problems such as: (a) defining robust and reliable communication protocols to interact with embedded devices (both on wired and wireless connections), (b) implementing components to retrieve, store, and process significant amount of data in an efficient and responsive fashion, and (c) designing algorithms to easily and safely coordinate the operation of hundreds of drones and other system components. Our software team works on a multitude of challenging and interesting tasks, such as implementing drivers for proprietary embedded platform, defining robust and efficient communication protocols, designing algorithms to retrieve, process, and analyze significant amount of data, and implementing graphical user interfaces for control stations. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deploymentInteract with other engineering teams to define and review design documentsCooperate with control engineers to design protocols to interact with robotic systems in order to send commands and collect feedback dataCooperate with embedded engineers to understand the constraints of embedded platforms and design smart and reliable embedded applicationsInteract with front end engineers to define the interfaces between back ends and front endsDesign general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Experience with database design and handling large amount of data is a plus Experience with distributed systems is a plusGood written and spoken English language skillsExcellent knowledge of C++ and STLFamiliar with GDB and other debugging and program analysis toolsKnowledge of libraries such as Boost and Qt and is a plusExperience in Python, C and modern C++ is a plusExperience with PCB schematics and digital communication interfaces (e.g. SPI, CAN, I2C) is a plusTeam player and self-drivenCreative approach to problem solving Benefits. Work in an interdisciplinary, highly-skilled teamCreate ground-breaking systems, used by some of the world's most prominent stage productionsShape the culture and have a significant impact in a rapidly growing young company \",\n", + " 'soft_skills': '[\"Professionalism\", \"Coordinating\", \"Problem Solving\", \"Operations\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Control Engineering\", \"System Requirements\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Collections\", \"Digital Communications\", \"Repository Protocol Design\", \"Staging\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"Python (Programming Language)\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Library\", \"Embedding\", \"Program Analysis\", \"Process Driven Development\", \"Database Design\", \"Software Engineering\", \"C (Programming Language)\", \"Robotics\", \"Qt (Software)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Graphical User Interface\", \"Data Structures\", \"Systems Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Algorithm Design\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"User Interface\", \"Debugging\", \"Documentation Based Coding\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Uzbek']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Chiasso',\n", + " 'industry': 'Film Production & Distribution',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.10012941e-01 2.50470519e-01 4.47021544e-01 7.62318075e-03\\n4.62903321e-01 -1.23481639e-01 1.25570491e-01 2.44325876e-01\\n3.67624722e-02 -4.38723087e-01 -1.22936435e-01 -2.46223420e-01\\n-9.11628082e-03 -9.29438695e-03 5.71359470e-02 3.63453090e-01\\n2.53457546e-01 -3.03699821e-02 -2.00233787e-01 4.40562785e-01\\n1.52866721e-01 -6.13864996e-02 6.80958107e-02 6.93907142e-01\\n4.41830158e-01 -4.54013608e-03 -2.18034536e-02 -7.38844723e-02\\n-2.11520836e-01 -3.17640036e-01 3.76719534e-01 -3.89324762e-02\\n2.38037594e-02 -3.50452602e-01 4.59056944e-02 1.72284432e-02\\n-1.31245151e-01 3.04484181e-03 1.87065490e-02 1.28031567e-01\\n-3.92087758e-01 -1.23583615e-01 8.59400630e-03 2.02191919e-02\\n-2.11099193e-01 -3.12084407e-01 1.07930720e-01 -1.05607897e-01\\n1.37010172e-01 -1.06115431e-01 -4.44776684e-01 3.70078236e-01\\n-1.88915402e-01 -2.33930528e-01 3.48369181e-01 6.47744775e-01\\n4.44919392e-02 -5.04125237e-01 -5.12717426e-01 -2.86719531e-01\\n2.40827035e-02 -4.05313857e-02 1.82288419e-02 -8.89614522e-02\\n2.47844741e-01 1.33271776e-02 4.70391214e-02 2.86254257e-01\\n-6.57482862e-01 -4.78459150e-02 -2.32855380e-01 2.18541101e-02\\n-3.31831217e-01 -1.59573227e-01 -3.10385317e-01 -9.38830227e-02\\n2.28110701e-03 5.07326484e-01 1.03619002e-01 -1.55620920e-02\\n-2.12682113e-01 1.42840058e-01 -3.02678108e-01 2.16910616e-01\\n2.14599013e-01 1.06917620e-01 3.28376353e-01 3.62879217e-01\\n-4.29095685e-01 4.19654220e-01 1.63889796e-01 -3.97462189e-01\\n2.85219610e-01 7.79108405e-02 5.06142735e-01 1.44823343e-01\\n1.04369193e-01 2.29737878e-01 -1.33120790e-01 2.49118775e-01\\n2.01877475e-01 -1.39971942e-01 -1.34994239e-01 -7.79017806e-02\\n1.54902413e-03 -1.09885558e-01 -1.25419423e-02 1.33354589e-01\\n-3.39495599e-01 5.18693030e-01 1.54752046e-01 -2.36832231e-01\\n-5.49510121e-02 -4.15887833e-01 -1.02557279e-01 -1.75335348e-01\\n-2.74720285e-02 1.83461428e-01 1.22072347e-01 1.80916414e-01\\n1.14876524e-01 3.59974988e-02 1.27981812e-01 8.67739558e-01\\n-6.35130405e-02 9.16547477e-02 -2.57079810e-01 2.48824105e-01\\n9.98084694e-02 -3.10137630e-01 2.39390135e-01 1.40937150e-01\\n-1.06097065e-01 -8.28493237e-02 -2.39718884e-01 2.44963765e-01\\n-1.51680335e-01 -2.31603056e-01 -2.40500540e-01 1.64550528e-01\\n-1.08818166e-01 -3.25645804e-01 5.18735170e-01 7.27473125e-02\\n3.66622433e-02 -4.17074934e-02 -1.15242466e-01 -1.17945679e-01\\n-1.40849769e-01 1.97806969e-01 7.46065453e-02 1.45685196e-01\\n-2.95734733e-01 -2.95975894e-01 -2.32712477e-01 2.36166328e-01\\n-3.67443323e-01 4.33284156e-02 -2.53742278e-01 -1.26388326e-01\\n3.40133667e-01 1.00808889e-01 -4.23965037e-01 3.15503776e-01\\n5.73892519e-02 2.17308700e-02 -1.33384109e-01 2.85237551e-01\\n-1.41019940e-01 2.38344729e-01 -2.95608807e-02 -1.35206189e-02\\n6.92211628e-01 2.09686011e-01 1.11002862e-01 -3.18190008e-02\\n3.71634990e-01 -7.82537311e-02 1.72736987e-01 1.14630967e-01\\n-5.93129814e-01 2.24569887e-01 -1.18505806e-01 -9.42846090e-02\\n2.02682167e-01 -1.19505987e-01 1.60792902e-01 -3.26074064e-01\\n5.23647219e-02 -1.01331547e-02 -3.60718668e-01 -3.64175647e-01\\n-1.95972383e-01 -1.50333550e-02 3.98813546e-01 -3.07920992e-01\\n-3.43605727e-02 2.31086165e-01 -5.43899894e-01 -8.85231569e-02\\n3.18682313e-01 2.07243979e-01 2.02752739e-01 2.08226055e-01\\n-7.87236691e-02 -4.28158104e-01 8.77275765e-02 -4.39233780e-01\\n-3.03926557e-01 1.84423953e-01 -2.90903538e-01 2.32999921e-01\\n7.16643184e-02 -1.77714974e-05 -1.92187011e-01 8.58783573e-02\\n-1.13346770e-01 -1.35578021e-01 1.41854897e-01 1.08108968e-02\\n2.08949238e-01 1.68700024e-01 -3.94689441e-01 4.46140021e-01\\n-2.10058153e-01 4.28580642e-01 6.09100796e-02 -9.37987447e-01\\n5.27969003e-01 1.96625203e-01 -9.08250809e-02 -3.48471373e-01\\n4.60195720e-01 -2.70923495e-01 1.78242415e-01 1.25302896e-01\\n-2.97267973e-01 -2.76605546e-01 2.57663995e-01 -1.89104229e-01\\n-2.61997879e-01 5.23096919e-01 1.05462879e-01 1.14958160e-01\\n1.95214182e-01 -6.62928373e-02 -1.90549254e-01 1.30824298e-01\\n-7.01125786e-02 -1.71031818e-01 -5.09049892e-01 9.39098448e-02\\n-1.20466843e-01 -4.30068314e-01 -1.43864408e-01 -5.29655814e-01\\n-2.89729059e-01 -4.62442875e-01 -2.12303102e-01 2.20529452e-01\\n2.05937028e-01 2.11702973e-01 -1.40874177e-01 2.23908909e-02\\n-4.60025221e-02 -6.28447890e-01 3.22187692e-03 1.30759418e-01\\n3.92721951e-01 1.89028352e-01 6.16211966e-02 -4.76873741e-02\\n-5.26029132e-02 5.38343430e-01 -4.85375404e-01 -1.02256849e-01\\n2.07169130e-01 1.30829886e-01 4.88320440e-02 -2.56732821e-01\\n4.77302819e-05 1.95507467e-01 -2.53248215e-01 1.70020670e-01\\n3.37195694e-02 -5.72493635e-02 2.94688165e-01 -3.88828143e-02\\n-3.89996946e-01 -2.29939967e-01 -1.79155078e-02 2.80436128e-01\\n-5.88391066e-01 -2.05896407e-01 7.22771227e-01 9.18255672e-02\\n6.50228709e-02 1.25886798e-01 3.01764339e-01 -6.77710250e-02\\n-2.13477463e-01 -1.87686026e-01 3.08631450e-01 1.79099128e-01\\n1.90205395e-01 6.14645258e-02 -1.62507772e-01 -7.37720311e-01\\n-3.44775796e+00 -1.91172779e-01 1.76672369e-01 -2.24034429e-01\\n1.84050381e-01 -1.20466061e-01 9.53514427e-02 -1.09181389e-01\\n-2.83488125e-01 5.99379018e-02 -3.43893468e-01 -3.17648426e-02\\n1.45940855e-01 3.44773591e-01 1.46317691e-01 2.20983759e-01\\n1.50097072e-01 -1.77730531e-01 7.39100575e-03 2.95644373e-01\\n-2.61173785e-01 -5.95391393e-01 2.54958451e-01 4.96640354e-02\\n2.76129901e-01 2.40309894e-01 -4.16081727e-01 -9.39517245e-02\\n-1.87265128e-01 -1.88248605e-01 6.85101599e-02 -1.65217102e-01\\n-1.21384442e-01 3.62184346e-01 2.48463124e-01 -1.76614001e-02\\n8.69665295e-02 -4.95112658e-01 -5.13296798e-02 -3.55179727e-01\\n7.31112882e-02 -7.18506813e-01 1.79983713e-02 -1.26108527e-01\\n5.50911784e-01 -1.72152013e-01 1.72777236e-01 7.36195296e-02\\n2.33043879e-01 1.37694985e-01 -2.97690555e-03 8.18728432e-02\\n-2.08410203e-01 -1.64473727e-01 -9.43721533e-02 -5.95708974e-02\\n5.65099955e-01 4.93477792e-01 -2.35337570e-01 -1.61434025e-01\\n-9.77121294e-02 -2.89260358e-01 -4.93865967e-01 -2.83251077e-01\\n-2.01496512e-01 -2.13037342e-01 -7.29650795e-01 -3.96988511e-01\\n-2.21128583e-01 -8.86087269e-02 -2.25295991e-01 7.05511212e-01\\n-2.62344748e-01 -3.25369298e-01 -2.24544778e-02 -3.19504797e-01\\n5.94823509e-02 -1.12579823e-01 7.60319829e-02 -7.04938099e-02\\n-2.35558450e-01 -3.85741532e-01 1.73618004e-01 2.10461896e-02\\n-2.41451666e-01 -2.65895873e-01 1.46236315e-01 -6.88198581e-02\\n-2.62146860e-01 -4.36277568e-01 4.11964834e-01 1.00677773e-01\\n2.13773400e-01 -8.84544849e-03 4.00483191e-01 2.55469549e-02\\n2.98367441e-01 -1.84673995e-01 5.19332252e-02 -4.18981552e-01\\n1.27792761e-01 2.41414905e-02 6.68128669e-01 -2.00941101e-01\\n1.22046746e-01 8.20060670e-02 -3.10632676e-01 -2.17405520e-02\\n3.95080686e-01 -6.14599846e-02 3.98053080e-02 -2.19420254e-01\\n2.52758324e-01 -3.18713725e-01 -2.80584276e-01 5.47411852e-03\\n1.15285553e-01 7.10785270e-01 -1.69613324e-02 -4.53787863e-01\\n-2.59640664e-01 3.60180259e-01 -8.74342620e-02 -1.95133209e-01\\n-2.17105061e-01 1.32989019e-01 -2.80065060e-01 8.25791135e-02\\n9.76574719e-02 8.70897807e-03 -2.90812433e-01 -1.18685216e-01\\n-1.32323727e-01 2.59659529e-01 2.65245289e-01 1.84636116e-02\\n-1.98791884e-02 -4.13618624e-01 -4.06362638e-02 2.10191756e-01\\n1.06387123e-01 2.69592583e-01 1.47949070e-01 -3.09367061e-01\\n-3.87316979e-02 2.70249963e-01 -1.61175370e-01 1.22753806e-01\\n-2.54008949e-01 1.34274036e-01 -5.28644502e-01 -3.26742232e-01\\n-2.99596965e-01 -3.67729068e-01 1.40982997e-02 4.03252006e-01\\n5.83771132e-02 -5.59020191e-02 3.25823314e-02 -4.28824067e-01\\n2.75585234e-01 -3.23800258e-02 2.45673612e-01 9.68115777e-02\\n1.17397442e-01 5.80042124e-01 1.19286850e-02 -2.32902691e-01\\n-9.16453823e-02 -5.84164076e-03 -3.08908492e-01 -1.20897010e-01\\n2.11256575e-02 -4.19384241e-01 -5.78539446e-02 4.17571425e-01\\n1.93481386e-01 -2.00555071e-01 -1.21428184e-01 2.53280342e-01\\n-7.32681528e-02 -3.08266789e-01 -1.98888183e-01 -1.42246336e-01\\n3.98349404e-01 -4.24597152e-02 2.99416929e-01 -4.40168142e-01\\n3.85698769e-03 -1.20824561e-01 -8.17181244e-02 4.82242882e-01\\n9.03292447e-02 9.30096731e-02 -6.00879043e-02 4.23767604e-03\\n5.61940134e-01 -2.26192474e-02 -7.89087862e-02 4.15842608e-02\\n1.31305724e-01 -2.16246307e-01 -5.49400568e-01 7.76759461e-02\\n2.11669784e-02 -1.59281999e-01 3.95505540e-02 1.52924970e-01\\n9.10619944e-02 1.88257359e-02 -5.72728336e-01 -2.69188702e-01\\n-3.86804700e-01 -6.63298294e-02 9.15820077e-02 -6.65654063e-01\\n-1.15531310e-01 1.94864161e-02 -5.37414730e-01 2.85714805e-01\\n-1.34082735e-01 -8.65770578e-02 8.66236016e-02 2.66879164e-02\\n-2.71023601e-01 -1.83643997e-01 1.38369665e-01 7.02836439e-02\\n-2.98597574e-01 -1.48576126e-01 1.79574877e-01 -9.39351082e-01\\n1.98692918e-01 3.17853093e-02 -1.48597896e-01 4.58805785e-02\\n-6.66105375e-02 -6.60189509e-01 2.14171246e-01 -4.10021335e-01\\n-8.38513523e-02 -3.78951035e-03 -2.16160208e-01 -4.28993344e-01\\n6.69576079e-02 -7.70870000e-02 -3.60684782e-01 3.49363804e-01\\n-3.14594358e-01 3.67190003e-01 5.86253330e-02 1.05138928e-01\\n1.09997109e-01 -3.06649148e-01 -3.99776287e-02 -4.06819642e-01\\n-5.40746808e-01 -8.80865157e-02 -2.89883316e-01 -1.19079255e-01\\n6.20841756e-02 -3.32511544e-01 -1.45653754e-01 5.27217984e-02\\n2.95580089e-01 1.62493378e-01 -6.35830015e-02 -2.88838208e-01\\n-5.77366650e-02 -5.09525597e-01 4.12790850e-02 7.86661357e-03\\n-1.22106746e-02 -1.00146905e-01 3.86836737e-01 5.51682189e-02\\n1.74759194e-01 -3.57936442e-01 5.59384763e-01 -3.30532551e-01\\n-2.88161874e-01 -8.81625041e-02 -4.28027548e-02 1.49170950e-01\\n3.39139372e-01 -4.26507115e-01 -2.70741675e-02 3.27434003e-01\\n1.53594956e-01 9.05248299e-02 3.36502850e-01 -1.47999644e-01\\n-1.27233207e-01 1.97953060e-01 -3.61297190e-01 2.09337264e-01\\n7.11478710e-01 -4.82371859e-02 5.61578982e-02 1.18219934e-01\\n8.48385766e-02 2.30178833e-01 6.17283463e-01 -1.18414551e-01\\n-1.69422269e-01 4.13275808e-01 7.91588649e-02 -6.13373756e-01\\n-1.20063111e-01 -7.75925815e-03 -8.71705711e-02 -2.88340867e-01\\n5.99007308e-01 3.78376871e-01 -3.44215155e-01 -2.44394675e-01\\n-1.40219122e-01 -1.60340875e-01 7.03253672e-02 2.84910873e-02\\n1.30121291e-01 2.98768729e-02 5.67786098e-01 -8.22214931e-02\\n1.71368569e-01 4.61361170e-01 -1.17683873e-01 -3.79283994e-01\\n-1.03428736e-01 1.79372966e-01 9.40807238e-02 3.99562150e-01\\n-1.46710813e-01 2.08850533e-01 1.02987394e-01 7.45752305e-02\\n-7.22869933e-02 -4.52621579e-02 1.06191769e-01 7.38420561e-02\\n1.16560459e-01 1.07244954e-01 5.04447401e-01 4.31542933e-01\\n4.00300741e-01 4.53484833e-01 3.04671258e-01 1.19413100e-02\\n5.91943562e-01 7.32437491e-01 3.23637128e-01 1.51883885e-01\\n-8.27608183e-02 5.83784245e-02 1.13580018e-01 9.21359286e-04\\n4.00977731e-01 4.25269485e-01 8.27398300e-02 7.59780526e-01\\n4.40533578e-01 2.89181948e-01 5.50154865e-01 -6.40766740e-01\\n-3.46369147e-01 1.08832687e-01 5.07788539e-01 -2.19588935e-01\\n6.81672990e-02 1.80244774e-01 -5.94211593e-02 7.11943954e-02\\n-4.75390851e-01 -3.69595319e-01 -3.29450630e-02 2.20857561e-03\\n1.25821665e-01 -1.57366082e-01 -2.72083104e-01 1.53144300e-01\\n-5.56357093e-02 -1.35593921e-01 -4.62019503e-01 -6.21635914e-02\\n-2.14661196e-01 -3.49476039e-02 -1.13270804e-01 -9.83854383e-02\\n-6.86635226e-02 -3.02266419e-01 -2.24063158e-01 4.84197540e-03\\n1.90172717e-01 -1.76232904e-01 -1.63900495e-01 -1.51675224e-01\\n2.25549817e-01 1.98618487e-01 5.85257173e-01 -1.18914410e-01\\n9.39056277e-02 -3.71392995e-01 -2.28455395e-01 1.35586649e-01\\n2.29180649e-01 4.77072932e-02 2.39419267e-02 4.63004887e-01\\n-3.55399609e-01 -1.12099037e-01 1.29001975e-01 3.28360319e-01\\n-3.93815547e-01 -7.02106208e-03 -1.50103256e-01 1.46630272e-01\\n1.33815676e-01 1.71488792e-01 -1.37916759e-01 -9.00065601e-02\\n-1.40100434e-01 -5.20996690e-01 3.12228352e-01 -3.54125425e-02\\n-1.16210610e-01 2.34234333e-03 1.85509741e-01 1.99718326e-01\\n-2.79738724e-01 -2.30321120e-02 -1.68226153e-01 1.43030733e-01\\n4.91208732e-02 2.88100481e-01 -3.06857765e-01 -2.05781162e-01\\n-1.92017049e-01 2.26385653e-01 -6.21558353e-02 1.45950302e-01\\n-1.30987801e-02 3.68991464e-01 1.69430822e-01 1.70710325e-01\\n4.22643721e-01 8.54823887e-02 -1.24446549e-01 -1.45083398e-01\\n-3.09533983e-01 -2.41282701e-01 -2.54385658e-02 -8.20061751e-03\\n1.59541160e-01 -3.19271326e-01 -3.46607044e-02 -1.34387702e-01\\n-2.85385549e-01 -2.86997914e-01 -1.14202261e-01 8.40340462e-03]]',\n", + " 'job_description': 'Job DescriptionWe are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you dont feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios Youll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! -Blog: https://technology.lastminute.com/ -Twitter: https://twitter.com/lastminute_tech/Qualifications null Additional Information null',\n", + " 'soft_skills': '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Vert.x\", \"Extreme Programming\"]',\n", + " 'languages': \"['English', 'Letzeburgesch', 'Chichewa', 'Kazakh']\"},\n", + " {'company_id': '40',\n", + " 'job_title': 'data analyst',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.epam.com',\n", + " 'jobdescription_embedded': '[[-8.58022720e-02 3.32712084e-01 4.94108289e-01 -1.77620146e-02\\n5.63087642e-01 2.70984918e-02 1.36530504e-01 3.28442276e-01\\n-3.49113182e-03 -2.92604297e-01 -1.99293733e-01 -2.32322410e-01\\n2.59116888e-02 -2.85414737e-02 7.96415284e-02 3.91459495e-01\\n1.77091986e-01 2.46167872e-02 -1.93204746e-01 2.45982379e-01\\n1.89622715e-01 -2.05481425e-01 1.35971785e-01 7.05018997e-01\\n5.88862717e-01 4.01387997e-02 -4.02101642e-03 -1.66107304e-02\\n-2.98135132e-01 -3.87022644e-01 5.56441963e-01 3.69660407e-02\\n-1.24448605e-01 -2.40263909e-01 1.31573409e-01 2.22700894e-01\\n-2.06793636e-01 -7.78195336e-02 -1.31535664e-01 1.22085422e-01\\n-4.70116496e-01 -6.63011968e-02 -7.62421861e-02 1.13834061e-01\\n-2.89439321e-01 -3.39821339e-01 1.52780816e-01 -2.74627686e-01\\n1.01910397e-01 1.67807490e-01 -4.54560131e-01 3.61653060e-01\\n-1.56389162e-01 -1.75973728e-01 2.97375947e-01 8.02958906e-01\\n-1.55247197e-01 -6.12067640e-01 -4.84079629e-01 -3.10692042e-01\\n1.57142028e-01 -6.73078448e-02 1.82032675e-01 -1.79578334e-01\\n2.37745270e-01 -4.10367288e-02 6.17140252e-03 3.77570897e-01\\n-7.40710855e-01 2.33693346e-02 -3.51561666e-01 -4.72165570e-02\\n-3.75126064e-01 -3.34743969e-02 -4.78289455e-01 -9.79894996e-02\\n-7.70336762e-02 4.60552692e-01 1.70774199e-02 -7.83480983e-03\\n-1.99656188e-01 1.92613140e-01 -3.05593461e-01 1.60100654e-01\\n2.26275757e-01 2.09195480e-01 2.04487920e-01 2.35866725e-01\\n-2.95835257e-01 5.07475317e-01 2.86559552e-01 -1.57564610e-01\\n2.76239634e-01 5.07368334e-02 3.45853090e-01 1.65063307e-01\\n4.45651403e-03 7.88482130e-02 -1.19431503e-01 1.58783033e-01\\n2.69983768e-01 -1.75139323e-01 -6.92347735e-02 -3.46829556e-02\\n9.23480652e-03 -6.21263720e-02 2.13638283e-02 1.62478328e-01\\n-3.16812128e-01 4.66730475e-01 -2.20814217e-02 -2.69843996e-01\\n-9.62447301e-02 -5.42697251e-01 -1.85581639e-01 -1.01232357e-01\\n3.47622372e-02 3.64132047e-01 3.21396515e-02 2.65110224e-01\\n2.72119492e-01 2.18545198e-02 1.37086600e-01 7.72362113e-01\\n-4.54835445e-02 6.47301450e-02 -3.07634294e-01 3.88520598e-01\\n7.40818307e-02 -3.30911875e-01 2.37009272e-01 1.68779090e-01\\n-1.01053573e-01 -1.05036937e-01 -2.41707385e-01 2.58020312e-01\\n-1.54672012e-01 -2.58798748e-01 -1.99231967e-01 1.14379346e-01\\n-8.96056741e-02 -3.95303100e-01 5.28215826e-01 -6.77254330e-03\\n1.37234539e-01 -2.17588082e-01 -1.05034098e-01 1.89749505e-02\\n-4.47313115e-02 2.46621192e-01 1.60324991e-01 1.10097505e-01\\n-8.68762583e-02 -2.29974464e-01 -1.88614294e-01 2.46995255e-01\\n-2.40887985e-01 6.99263960e-02 -2.20867351e-01 -1.49381816e-01\\n4.53227818e-01 9.62322429e-02 -3.24547023e-01 2.74745941e-01\\n-5.14681824e-02 1.52907856e-02 -1.94785327e-01 2.83881575e-01\\n-1.74146861e-01 2.10408747e-01 -2.76432596e-02 -1.45912498e-01\\n7.06097007e-01 8.48135576e-02 2.22871706e-01 3.59987691e-02\\n1.54666722e-01 -6.77158162e-02 1.98599309e-01 1.70325473e-01\\n-5.08823633e-01 4.74150479e-01 -5.87677807e-02 -1.33389682e-01\\n1.77948639e-01 -1.52808532e-01 2.53254533e-01 -2.65658975e-01\\n4.95238304e-02 -1.24621630e-01 -2.92085141e-01 -3.29807281e-01\\n-1.65965617e-01 -4.88345176e-02 2.60966241e-01 -4.20238823e-01\\n-1.56857423e-05 2.83976495e-01 -5.45167208e-01 -1.19213589e-01\\n2.78933942e-01 2.54040092e-01 1.48838535e-01 2.01222375e-01\\n-2.14302644e-01 -3.49974155e-01 1.91520110e-01 -4.10572052e-01\\n-2.23578840e-01 7.28538781e-02 -2.92827368e-01 1.62387729e-01\\n9.53513980e-02 6.59349486e-02 -8.58828574e-02 1.77078545e-01\\n-2.30140686e-01 -6.91175312e-02 5.23169190e-02 1.56736270e-01\\n3.10649306e-01 1.43427759e-01 -5.35088241e-01 4.78362948e-01\\n-1.83927044e-01 4.01968479e-01 1.70406759e-01 -8.60576570e-01\\n3.84561926e-01 3.11263740e-01 2.22975910e-02 -3.64291131e-01\\n6.70126140e-01 -2.73737311e-01 7.04717189e-02 2.83454768e-02\\n-3.33977133e-01 -2.40552232e-01 2.85062820e-01 -1.71629518e-01\\n-2.89835811e-01 5.75648844e-01 8.15752745e-02 1.58796668e-01\\n2.67559379e-01 -6.62268102e-02 -1.86589718e-01 1.69394948e-02\\n-1.58070087e-01 3.77502665e-02 -5.54238319e-01 -3.34189477e-04\\n-2.11785108e-01 -4.46970344e-01 -4.13983613e-02 -5.71358740e-01\\n-2.26707831e-01 -3.60662252e-01 -1.54805318e-01 6.84579387e-02\\n1.83144882e-01 1.74884707e-01 -9.52750072e-02 4.11693286e-03\\n-1.37357309e-01 -8.71199310e-01 -4.35033888e-02 1.89279363e-01\\n3.00331980e-01 2.89833099e-01 2.26860344e-01 -1.18684128e-01\\n1.70541201e-02 6.02091193e-01 -3.21440369e-01 -9.05222744e-02\\n1.48846701e-01 1.69294894e-01 1.30588353e-01 -8.70373696e-02\\n4.42209095e-02 1.79722458e-01 -2.13950574e-01 -3.95147055e-02\\n-1.07182652e-01 -1.42917326e-02 2.50130892e-01 2.11310703e-02\\n-3.02444935e-01 -2.49347046e-01 -5.90105541e-02 3.50946933e-01\\n-4.91041154e-01 -2.56376863e-01 6.68152392e-01 1.22094929e-01\\n4.63068159e-03 2.40912154e-01 2.89630622e-01 -4.82703224e-02\\n-8.46922621e-02 -2.25176722e-01 3.21934432e-01 7.09089041e-02\\n1.27997503e-01 -3.16553041e-02 -2.11945355e-01 -6.92523599e-01\\n-3.63800716e+00 -2.31165718e-02 5.37471585e-02 -3.01871866e-01\\n2.43005678e-01 -1.60907060e-01 3.82398456e-01 -5.55806905e-02\\n-2.37859100e-01 9.05731097e-02 -2.04409555e-01 -3.82111371e-02\\n1.38733581e-01 3.42459440e-01 6.09979257e-02 3.05416495e-01\\n1.11218594e-01 -3.87069106e-01 5.23189716e-02 3.84103060e-01\\n-1.72103062e-01 -6.82609975e-01 1.09542914e-01 1.87952027e-01\\n1.75164565e-01 2.23995849e-01 -4.57438171e-01 -8.92086998e-02\\n-2.54251510e-01 -3.68202746e-01 1.68587103e-01 -1.88387915e-01\\n-2.65489936e-01 2.64035165e-01 1.91955835e-01 -1.62621304e-01\\n-5.33834659e-02 -3.36081624e-01 1.82765424e-02 -5.51248968e-01\\n-4.45842408e-02 -7.14796960e-01 -2.24602427e-02 -1.51182208e-02\\n7.38620520e-01 -2.42076680e-01 1.18038118e-01 6.42449483e-02\\n1.54694736e-01 1.34873927e-01 1.33788541e-01 2.11601872e-02\\n-2.72300005e-01 -1.52046785e-01 -1.69784576e-01 -8.79277363e-02\\n6.24512672e-01 4.51346666e-01 -2.98033059e-01 -4.91448166e-03\\n2.27133613e-02 -3.15694422e-01 -5.01874566e-01 -2.78311521e-01\\n-2.80405730e-01 -5.41933626e-02 -7.94163823e-01 -4.09809530e-01\\n-9.76841375e-02 -1.96379796e-01 -1.76401913e-01 6.38670623e-01\\n-1.77162260e-01 -3.79866511e-01 -1.09128438e-01 -5.46562135e-01\\n2.47732118e-01 -5.29508628e-02 4.53545488e-02 -1.90821767e-01\\n-1.86222270e-01 -3.39822680e-01 1.05499715e-01 -4.92565222e-02\\n-1.44704536e-01 -3.67721543e-02 1.15484081e-01 -6.37855381e-02\\n-4.11788791e-01 -6.23712242e-01 3.63089681e-01 7.76443407e-02\\n3.11633527e-01 1.56335384e-02 2.51271963e-01 6.61507398e-02\\n3.40137452e-01 -1.47749722e-01 9.44963694e-02 -3.42936039e-01\\n-8.18526447e-02 4.00951505e-02 6.77417397e-01 -3.40811610e-01\\n1.27991945e-01 8.34834948e-02 -2.21898094e-01 -6.61411807e-02\\n3.99379700e-01 7.58593064e-03 9.73184705e-02 -2.04064310e-01\\n2.53059834e-01 -3.05489630e-01 -2.71699488e-01 7.04624131e-02\\n1.19051322e-01 6.66127741e-01 -4.33618687e-02 -3.48103225e-01\\n-8.18821117e-02 3.38700891e-01 -7.60509521e-02 -1.24820441e-01\\n-2.51725197e-01 4.65911031e-02 -3.39026600e-01 3.00159693e-01\\n1.49597183e-01 -1.47857249e-01 -3.39286894e-01 -1.88165307e-01\\n4.83503155e-02 2.89707601e-01 3.57491255e-01 1.87540576e-02\\n-5.26642203e-02 -2.31924340e-01 -1.70446366e-01 2.69043356e-01\\n9.25507322e-02 3.05210710e-01 1.75956577e-01 -2.72577643e-01\\n-9.03716777e-03 2.10065663e-01 -3.15325826e-01 2.09408894e-01\\n-2.24558219e-01 1.20159335e-01 -5.36346078e-01 -2.71365196e-01\\n-1.12313464e-01 -3.62632155e-01 2.07792401e-01 3.91727567e-01\\n1.56777605e-01 -5.57116885e-03 5.48180453e-02 -5.35319924e-01\\n2.53443062e-01 -6.29852861e-02 1.66190639e-01 1.10189229e-01\\n5.34478873e-02 5.97949862e-01 -2.83439308e-02 -1.14077456e-01\\n-1.06162317e-01 5.80132417e-02 -3.98063689e-01 -2.49116987e-01\\n7.30019659e-02 -5.29227555e-01 -5.74655384e-02 4.90821064e-01\\n2.52621561e-01 -8.40218663e-02 -1.16779748e-02 2.20578611e-01\\n-9.80254635e-02 -2.84056246e-01 -2.00497627e-01 8.94206613e-02\\n3.29359800e-01 1.46241546e-01 3.54735911e-01 -3.78123820e-01\\n5.61985597e-02 -1.30186528e-01 -5.42683303e-02 3.75687540e-01\\n6.75667673e-02 2.06396222e-01 1.61007028e-02 -1.26443058e-01\\n5.34386277e-01 -7.89452810e-03 -7.58236833e-03 1.30109131e-01\\n1.33009076e-01 -3.58247429e-01 -4.51698661e-01 4.93704826e-02\\n-3.52064818e-02 -2.69826055e-01 -7.88469985e-02 1.28111079e-01\\n-5.69645353e-02 -1.05016660e-02 -7.36596406e-01 -2.14280203e-01\\n-3.62956941e-01 6.66568577e-02 -6.31039543e-03 -5.77726722e-01\\n-1.30348504e-01 3.49110970e-03 -6.55627668e-01 3.49790931e-01\\n-4.72887466e-03 -1.79685745e-02 2.09610671e-01 4.01627980e-02\\n-1.56303167e-01 -1.18445694e-01 2.21592993e-01 2.50441343e-01\\n-2.12127939e-01 -1.70442119e-01 -7.51747340e-02 -1.02838957e+00\\n2.22675409e-02 4.68226783e-02 -1.63422495e-01 7.64471143e-02\\n-4.55700373e-03 -7.76873112e-01 2.64902949e-01 -3.38653505e-01\\n-2.05551073e-01 -2.27847323e-02 -1.87836394e-01 -4.65635836e-01\\n1.26138404e-01 9.96539518e-02 -2.75597006e-01 2.74695009e-01\\n-3.08248639e-01 4.33444023e-01 -4.68119234e-03 8.11599344e-02\\n4.41725105e-02 -2.42475405e-01 8.30164850e-02 -3.06405038e-01\\n-4.08852011e-01 -1.58906728e-01 -3.35255563e-01 -3.63071263e-02\\n-2.69566178e-02 -3.06130290e-01 -7.99980611e-02 1.25781223e-01\\n4.03326213e-01 1.76411644e-01 -5.47775924e-02 -1.04424180e-02\\n-1.90558713e-02 -4.95793164e-01 4.40263972e-02 -2.46433288e-01\\n-5.75465746e-02 -1.60973266e-01 1.56471208e-01 2.58842167e-02\\n1.70532182e-01 -4.30789411e-01 5.26056170e-01 -2.96768695e-01\\n-3.07012647e-01 -4.22546342e-02 1.11904368e-01 1.69725139e-02\\n3.33291262e-01 -4.09171671e-01 -1.23935781e-01 4.28277671e-01\\n-5.54087833e-02 7.93002993e-02 3.68243188e-01 -2.05442250e-01\\n-1.98118106e-01 3.51389617e-01 -4.54942673e-01 1.92148075e-01\\n7.68722534e-01 1.48142949e-01 1.48598254e-01 1.59322411e-01\\n2.36921161e-02 2.37080663e-01 4.28111762e-01 -4.12203670e-02\\n-1.12421721e-01 3.25640023e-01 -9.34998542e-02 -6.43992245e-01\\n-5.97526953e-02 -1.73185617e-01 -1.66084573e-01 -4.19775426e-01\\n6.29584908e-01 4.00225729e-01 -2.43878245e-01 -3.69404167e-01\\n-3.27855408e-01 -2.22102523e-01 1.16962537e-01 -9.70805213e-02\\n2.36286279e-02 6.11390397e-02 5.09792209e-01 5.92119768e-02\\n2.78992862e-01 4.15516406e-01 -2.31851880e-02 -2.08425432e-01\\n-4.14332896e-02 1.79937094e-01 2.07552332e-02 4.60339248e-01\\n-4.51183394e-02 2.30721176e-01 -2.17917096e-02 1.60337389e-01\\n-1.88717157e-01 -8.18147510e-02 1.22962527e-01 1.34528592e-01\\n-3.49900723e-02 1.63638726e-01 4.43198472e-01 4.86152709e-01\\n2.17964098e-01 4.79881018e-01 3.46334547e-01 7.08746016e-02\\n5.07249355e-01 5.65257549e-01 3.18793684e-01 2.21879363e-01\\n-2.13614013e-02 2.49506645e-02 4.20566052e-02 -3.75797600e-03\\n2.16977492e-01 4.52837288e-01 4.28138971e-02 6.65215790e-01\\n2.16140509e-01 2.13084206e-01 6.09186471e-01 -6.52760208e-01\\n-3.56107354e-01 -8.38891938e-02 4.73078579e-01 -3.16097170e-01\\n4.00876105e-02 1.85518757e-01 -2.85058737e-01 1.82405561e-01\\n-6.71678543e-01 -3.60605896e-01 1.43685183e-02 -1.74553484e-01\\n3.01650129e-02 -1.26761213e-01 -2.36683533e-01 1.67124704e-01\\n-1.35479420e-01 -9.03854519e-02 -4.67409670e-01 -7.60198310e-02\\n-2.96081126e-01 1.37561501e-03 -3.24344076e-02 9.12120508e-04\\n-1.03140902e-03 -1.69677645e-01 -1.68354630e-01 1.25711575e-01\\n2.76699752e-01 -2.68246643e-02 -1.13898829e-01 -3.16284522e-02\\n2.05400854e-01 9.60599408e-02 5.39832830e-01 -1.25818342e-01\\n9.20961350e-02 -1.53405279e-01 -1.43259600e-01 1.04069792e-01\\n4.71300244e-01 -5.73609695e-02 2.23232098e-02 4.51675564e-01\\n-4.48908687e-01 -3.90351385e-01 9.09804851e-02 2.76562214e-01\\n-4.36768234e-01 -1.27926432e-02 1.19737007e-01 1.42528355e-01\\n8.28544721e-02 2.25530699e-01 -2.07654893e-01 -3.78931798e-02\\n-2.52544843e-02 -5.51477730e-01 3.62212002e-01 -1.20237075e-01\\n-1.40697882e-01 2.84734499e-02 2.75724381e-01 2.16456622e-01\\n-5.23248948e-02 5.01972251e-02 -2.05741629e-01 1.83046922e-01\\n1.26709761e-02 2.07993358e-01 -3.06108147e-01 -3.79501671e-01\\n-2.71508992e-01 2.75969207e-01 3.98389921e-02 2.22066581e-01\\n7.39723891e-02 2.17266634e-01 1.05314985e-01 1.03053764e-01\\n4.03005362e-01 7.86899403e-03 -2.43393317e-01 -2.80336201e-01\\n-2.54765838e-01 -2.00268671e-01 3.92516255e-02 -1.95944056e-01\\n2.43809134e-01 -4.68595266e-01 -1.24956749e-01 -3.14952105e-01\\n-3.59460950e-01 -3.48780543e-01 -5.63030317e-02 -7.25100655e-03]]',\n", + " 'job_description': \"Epam Systems are currently seeking an experienced Data Analyst to join one of our client’s office in Zurich. Responsibilities Design and prepare customer reports, dashboards and analyses; create prototypes; turn models into results Analyze, validate and visualize business data, create value-added solutions Analyze business questions and deliver business answers; translate technical data findings for non-technical teams and vice versa Become a visualization expert to empower the clients understanding their data Provide insights and recommendations for clients based on the analysis Conduct daily contact with customers, fill the role of a consultant Participate in internal knowledge-sharing forums Requirements Bachelor’s/Master’s Degree in Information technology or Economics with a strong IT attitude Work experience in an international enterprise size/servicing company At least 2-3 years of data analysis experience /Tableau/AML Datahub, Global/Business Objects Oracle/ SQL know-how is required Excellent communication skills, ability to work closely to clients Fluent English is a must, both verbal and written Self-motivated personality and excellent problem-solving skills, can-do attitude Excellent time management skills, ability to work effectively with strict deadlines We offer Competitive compensation depending on skills and experience Knowledge-sharing across EPAM's global Tech Communities Unlimited access to LinkedIn learning solutions Relocation support as per EPAM relocation policies EPAM Community with regular corporate and social events Career growth, performance and compensation reviews Additional Please note that any offers will be subject to appropriate background checks We do not accept CVs from recruiting or staffing agencies Due to the Swiss labour legislation we can only accept applicants who have a valid right to work in Switzerland\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Self-Motivation\", \"Time Management\", \"Problem Solving\", \"Communications\", \"Socialization\", \"Information Technology\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Technical Translation\", \"Validations\", \"Visualization\", \"Economics\", \"Business Objects Framework\", \"Tableau (Business Intelligence Software)\", \"Oracle SQL Developer\", \"Creating Shareholder Value\", \"Accessioning\", \"Prototyping\", \"Value-Added Services\", \"Personalization\", \"Data Analysis\", \"Legislation\", \"Dashboard\"]',\n", + " 'languages': \"['English', 'Pushto', 'Yiddish', 'Chichewa']\"},\n", + " {'company_id': '64',\n", + " 'job_title': 'back-end software engineer',\n", + " 'location': 'Chiasso',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.35816383e-01 6.42856285e-02 6.17190480e-01 -7.22094923e-02\\n6.01747274e-01 -1.70121282e-01 -1.42338872e-01 4.20830846e-01\\n-7.83537850e-02 -5.50096869e-01 -6.17809072e-02 -1.95279032e-01\\n-3.54207829e-02 1.98555112e-01 4.70523201e-02 4.87554282e-01\\n3.15138310e-01 -1.35895789e-01 -5.76310121e-02 1.52816206e-01\\n2.57867668e-02 -6.72990307e-02 -1.52405679e-01 7.77097881e-01\\n8.09336975e-02 6.91256598e-02 1.49383098e-01 1.05123580e-01\\n-2.73855031e-01 -1.59847155e-01 3.74778986e-01 8.82838368e-02\\n-2.52783537e-01 -2.16898084e-01 4.96213734e-02 2.16017172e-01\\n7.00714588e-02 1.37256622e-01 -2.31474325e-01 4.01288241e-01\\n-3.19918811e-01 -3.29550475e-01 5.06536104e-02 2.67343074e-02\\n-9.94760618e-02 -3.21008831e-01 2.20930353e-02 1.92332864e-02\\n2.87635833e-01 4.75739315e-02 -4.03760403e-01 2.56997406e-01\\n-3.03514421e-01 -3.23297024e-01 1.74764901e-01 4.80346471e-01\\n1.17518073e-02 -6.33487940e-01 -2.12561950e-01 -1.40187517e-01\\n-1.03921175e-03 5.20952456e-02 1.38530031e-01 -3.41934979e-01\\n3.09789240e-01 1.08210407e-01 -2.58142632e-02 2.83341438e-01\\n-4.82071251e-01 5.11103496e-02 -3.08139741e-01 -5.73741496e-02\\n-3.32230687e-01 6.14223070e-02 -4.44998205e-01 -2.36588761e-01\\n-2.51418322e-01 4.83292133e-01 -3.58375385e-02 1.45748034e-01\\n-6.45818596e-04 3.61956120e-01 -3.38535644e-02 2.35867634e-01\\n3.65718424e-01 4.82972622e-01 2.27682829e-01 4.58622932e-01\\n-4.51820046e-01 5.38606584e-01 3.09110165e-01 -4.87724245e-01\\n2.39958301e-01 3.49740312e-02 4.59356099e-01 4.28773046e-01\\n2.06471354e-01 2.79183388e-01 -2.39093885e-01 2.40214020e-01\\n1.07594959e-01 1.59498885e-01 -1.08709730e-01 -1.40734790e-02\\n-8.53286460e-02 -1.05843293e-02 -9.43391100e-02 1.63034096e-01\\n-5.38502753e-01 4.00397032e-01 4.99080271e-02 -3.32930267e-01\\n-1.19366810e-01 -5.39647281e-01 -3.50241691e-01 6.20675720e-02\\n4.84277569e-02 2.19983593e-01 9.93627161e-02 7.21137077e-02\\n3.23029160e-01 3.20430920e-02 7.45286644e-02 9.63083029e-01\\n-2.02344194e-01 1.19102322e-01 -2.42441848e-01 2.33480752e-01\\n1.39688775e-01 -3.04558158e-01 1.29850194e-01 3.91483009e-02\\n-8.75324383e-02 -7.72551000e-02 -3.37488025e-01 3.86875659e-01\\n-1.95673347e-01 -2.88348854e-01 -1.73076287e-01 4.63260524e-02\\n-2.48655185e-01 -2.65380979e-01 4.89898950e-01 -1.08684927e-01\\n1.98381674e-03 -9.66975614e-02 -1.58322845e-02 -3.54445390e-02\\n1.00233026e-01 3.44772756e-01 8.34914148e-02 5.36902994e-02\\n-5.11694431e-01 -4.36779797e-01 -3.03783178e-01 2.84493834e-01\\n-6.65749088e-02 2.09763587e-01 -3.01945418e-01 -1.86776165e-02\\n2.31497929e-01 8.79511237e-02 -4.85268354e-01 3.12542588e-01\\n2.17456315e-02 -2.78509766e-01 -2.09885702e-01 2.57758200e-01\\n9.64615867e-02 5.55989668e-02 1.49195805e-01 -2.03833535e-01\\n4.75604445e-01 9.80241075e-02 5.69358543e-02 -9.63634104e-02\\n4.76104945e-01 -1.40179083e-01 2.99713202e-02 2.86981463e-01\\n-6.02345586e-01 3.08412015e-01 -1.04783803e-01 1.07239746e-01\\n1.69108342e-02 1.06040619e-01 9.57944468e-02 -2.98631549e-01\\n8.76503438e-03 -1.96783587e-01 -2.49831021e-01 -4.22178358e-01\\n-2.47870728e-01 -1.42515436e-01 2.93561518e-01 -3.02431524e-01\\n-1.38605401e-01 1.31891131e-01 -3.43666703e-01 -5.58715127e-03\\n6.70685992e-02 2.32487813e-01 -3.87553573e-02 1.99939087e-01\\n-1.97937608e-01 -3.67844909e-01 5.58159761e-02 -3.95254970e-01\\n-3.53695869e-01 2.99876511e-01 -1.95069522e-01 2.55081691e-02\\n1.93304166e-01 -2.35439837e-02 3.10629327e-02 9.49155614e-02\\n-4.24087942e-01 2.68104076e-01 1.88005477e-01 1.91933308e-02\\n3.89228255e-01 -4.01305370e-02 -5.37776589e-01 5.66419125e-01\\n-1.85545653e-01 7.23235667e-01 1.54870406e-01 -8.35480452e-01\\n4.20975983e-01 2.11656854e-01 1.68891773e-01 -3.72700423e-01\\n5.18453121e-01 -4.04182345e-01 -1.38055742e-01 3.59585017e-01\\n-1.65474132e-01 -2.29561940e-01 1.97055191e-01 -7.38615021e-02\\n-4.02299374e-01 4.07181680e-01 5.95144890e-02 1.52975947e-01\\n3.21952641e-01 -2.55502313e-01 -6.85760304e-02 1.56512603e-01\\n-1.27258018e-01 -4.86520566e-02 -5.94821155e-01 -4.18094769e-02\\n4.03789151e-03 -4.26964968e-01 -1.52130336e-01 -6.55867159e-01\\n-2.37718254e-01 -3.17163259e-01 -3.86875808e-01 2.24158987e-01\\n3.11252810e-02 -4.02983539e-02 2.38340721e-01 -1.05310336e-01\\n2.56683342e-02 -4.74429846e-01 -2.14331940e-01 3.58576059e-01\\n2.67352134e-01 1.26342893e-01 -4.54920949e-03 1.92359939e-01\\n-3.28779817e-02 7.15677440e-01 -3.06654721e-01 -2.11589217e-01\\n3.25238347e-01 2.76177317e-01 -2.84643006e-02 -2.05232903e-01\\n1.37561839e-02 -8.08920786e-02 -2.59437621e-01 -1.30957007e-01\\n-1.23784222e-01 1.17745124e-01 3.43038172e-01 -3.54717046e-01\\n-3.65070045e-01 -1.05773032e-01 1.00951627e-01 1.14218324e-01\\n-6.78049862e-01 2.48626582e-02 5.63674212e-01 2.39516795e-01\\n1.70822199e-02 1.64149746e-01 3.76289904e-01 -3.76064718e-01\\n-1.89558700e-01 -2.23128408e-01 3.27466786e-01 3.17862213e-01\\n1.45042881e-01 2.49640960e-02 -1.76913198e-02 -7.57614970e-01\\n-3.75792313e+00 8.57777719e-04 1.12362444e-01 6.27834722e-02\\n2.02862218e-01 -2.43310899e-01 2.39974067e-01 -6.94024339e-02\\n-1.13785654e-01 1.25698835e-01 -9.99290645e-02 -1.24728359e-01\\n1.98647082e-01 1.32987127e-01 -1.04215138e-01 2.45599151e-01\\n1.97095439e-01 -1.52036725e-02 -3.54831256e-02 3.77410263e-01\\n-3.81051097e-03 -7.79102683e-01 2.77841866e-01 4.48227338e-02\\n2.86787182e-01 3.44916135e-02 -6.34835422e-01 1.58861697e-01\\n-2.18517557e-01 -2.87165254e-01 -7.23682567e-02 -3.22762996e-01\\n-1.95776150e-01 1.85507357e-01 2.05212399e-01 -1.46160558e-01\\n1.75211385e-01 -3.13255131e-01 -1.09669194e-01 -4.75046962e-01\\n2.25439921e-01 -5.89710951e-01 1.36708796e-01 -2.19931244e-03\\n6.59722686e-01 -4.25067574e-01 1.64826885e-01 -6.79916888e-02\\n1.35915399e-01 2.61513561e-01 -8.03083554e-02 -1.50689796e-01\\n-1.94884077e-01 -7.38067329e-02 6.27941191e-02 -2.38455102e-01\\n5.38707793e-01 1.94449335e-01 -4.06914234e-01 1.67456612e-01\\n-2.54792999e-02 -8.77490342e-02 -5.09262204e-01 -3.65274519e-01\\n-1.83140188e-01 1.63344309e-01 -7.43462801e-01 -5.17316520e-01\\n-1.13406919e-01 6.25036061e-02 -1.40360063e-02 7.30422437e-01\\n-2.13739216e-01 -5.74570537e-01 -1.10378318e-01 -5.10768533e-01\\n1.81564584e-01 -1.14835590e-01 1.32191211e-01 -2.49310017e-01\\n-3.20150018e-01 -4.15238380e-01 1.92050606e-01 2.55930121e-03\\n-3.35550308e-02 2.43580922e-01 4.32158649e-01 -1.22507177e-01\\n-4.38296467e-01 -4.22423750e-01 2.71958709e-01 2.90999770e-01\\n2.95629054e-01 1.93194017e-01 1.65813416e-01 -1.19192787e-02\\n5.99905476e-02 -7.62789696e-02 1.98687464e-02 -4.34738934e-01\\n8.82581323e-02 -1.21354975e-01 4.44716275e-01 -1.01036422e-01\\n-4.87516485e-02 2.76452243e-01 -7.29969516e-02 -2.06125274e-01\\n6.40399277e-01 -4.88228165e-02 1.61976188e-01 -1.55908853e-01\\n3.42644691e-01 -4.59012300e-01 -1.65247634e-01 1.22318797e-01\\n3.04336734e-02 6.30299747e-01 -1.48535684e-01 -5.98637938e-01\\n-1.30440623e-01 4.68776435e-01 -8.64978731e-02 -1.66776493e-01\\n-4.01799589e-01 2.15608433e-01 -4.09925371e-01 4.26518828e-01\\n1.48650289e-01 -2.96242267e-01 -2.60324746e-01 -1.94575295e-01\\n-1.33279756e-01 4.79072481e-02 3.49059790e-01 1.18741922e-01\\n-7.44105950e-02 -2.40232050e-01 -1.49964169e-01 1.93952754e-01\\n4.64527488e-01 3.73166502e-01 -3.82514447e-02 -2.86761880e-01\\n-9.58099216e-02 1.14247978e-01 -4.08111364e-01 1.69477180e-01\\n-1.87804252e-01 1.43015996e-01 -2.87762344e-01 -6.54500127e-02\\n-1.87959552e-01 -3.73775780e-01 -1.76899150e-01 3.34146976e-01\\n2.38246009e-01 -9.94237587e-02 -7.51638189e-02 -3.51595253e-01\\n3.65375012e-01 2.99315572e-01 1.44145817e-01 3.36403936e-01\\n3.69169600e-02 6.85654461e-01 -3.58373784e-02 -2.25517958e-01\\n-8.60656723e-02 -6.35516420e-02 -1.57183826e-01 5.28525338e-02\\n1.07586302e-01 -5.03348708e-01 -1.30449206e-01 3.70364606e-01\\n1.68821380e-01 -4.05244559e-01 -1.67480186e-01 4.89618242e-01\\n1.84112489e-01 -1.93187609e-01 4.27185977e-03 8.45783763e-03\\n3.04464817e-01 -9.98612680e-03 3.56901258e-01 -6.58673763e-01\\n-2.06787422e-01 -1.92642938e-02 -2.92614281e-01 4.40166354e-01\\n5.27594313e-02 5.67348450e-02 7.24702403e-02 -2.74958313e-01\\n4.33856547e-01 -2.47206792e-01 -2.25697622e-01 -2.28592604e-02\\n1.50242791e-01 -6.49525076e-02 -4.61358309e-01 2.75782254e-02\\n-3.08821738e-01 -2.62774974e-01 2.62675345e-01 4.57146317e-02\\n-4.47132178e-02 1.67790353e-01 -4.14286971e-01 -5.82846761e-01\\n-3.53388101e-01 -1.97387356e-02 -4.27904353e-02 -3.75893861e-01\\n9.08501633e-03 -6.65017366e-02 -8.49630296e-01 2.68503547e-01\\n-2.31322080e-01 -2.09441781e-01 1.14523493e-01 1.77974075e-01\\n-2.29824200e-01 -4.73155640e-02 8.62656981e-02 1.98720217e-01\\n-4.10640806e-01 -3.48075092e-01 -9.64708552e-02 -7.07181334e-01\\n1.71308279e-01 -1.46653831e-01 -1.00649484e-01 9.25418437e-02\\n-6.31624311e-02 -6.06906116e-01 1.50987104e-01 -1.49495289e-01\\n-3.55437666e-01 -1.37379512e-01 -1.01847455e-01 -4.61318463e-01\\n2.53213674e-01 1.75715968e-01 -2.42395282e-01 5.67250311e-01\\n-3.47685486e-01 3.32406044e-01 -1.42352164e-01 8.03012773e-02\\n6.28302619e-02 -3.29185724e-01 2.99085140e-01 -3.40220183e-01\\n-3.08522314e-01 -2.32166409e-01 -3.14598322e-01 -2.98940688e-01\\n6.21512607e-02 -2.22457528e-01 -3.32184464e-01 1.28930286e-01\\n2.80466437e-01 1.80993617e-01 4.31475602e-02 -1.97586969e-01\\n1.39958173e-01 -5.04913449e-01 1.52199402e-01 -1.08957708e-01\\n1.90965921e-01 6.96623698e-02 1.25898793e-03 -1.17911093e-01\\n2.14120112e-02 -2.39685923e-01 5.98533213e-01 -7.34719587e-03\\n-2.78458029e-01 -9.65006649e-02 2.46035252e-02 3.48818451e-01\\n2.61103898e-01 -4.74221855e-01 -2.54945248e-01 4.68349129e-01\\n8.04939792e-02 2.26050392e-01 1.88512772e-01 -2.12967411e-01\\n5.04330024e-02 3.53423767e-02 -3.50023806e-01 3.32645684e-01\\n3.67526323e-01 -3.37785925e-03 1.67977974e-01 2.51543671e-01\\n3.82700227e-02 4.10939723e-01 5.72789252e-01 -3.81168202e-02\\n-5.61047010e-02 3.30875367e-01 -7.79623315e-02 -4.44811285e-01\\n-7.21201524e-02 -1.70582533e-01 -2.69833237e-01 -5.99939585e-01\\n6.71412945e-01 3.72346014e-01 -3.56382817e-01 -2.16919720e-01\\n-9.74410996e-02 -1.05523549e-01 1.89534817e-02 -2.01386437e-01\\n-2.23510250e-01 3.12771276e-02 4.97825235e-01 2.26704292e-02\\n4.34335053e-01 4.09816504e-01 -3.59223396e-01 -1.99229077e-01\\n-2.11354330e-01 1.74170986e-01 8.07771012e-02 2.44595647e-01\\n-5.95522225e-02 2.14293167e-01 1.59969687e-01 1.55956745e-01\\n-2.35917643e-02 -2.31420249e-01 -5.04499003e-02 1.14397049e-01\\n3.52006704e-01 2.71467548e-02 2.73233622e-01 4.14565802e-01\\n2.59487867e-01 3.02392125e-01 3.12215894e-01 1.45298436e-01\\n4.32207942e-01 5.38762093e-01 4.77781028e-01 1.63617626e-01\\n2.24968717e-01 1.60065711e-01 1.63965255e-01 -6.65032789e-02\\n2.15722024e-01 4.54488605e-01 7.15093017e-02 6.38998032e-01\\n1.50694951e-01 2.65595198e-01 7.22460687e-01 -5.68424642e-01\\n-3.66467804e-01 -2.79041752e-02 2.95864046e-01 -1.96140707e-01\\n-2.43677661e-01 6.00007102e-02 -1.06351629e-01 9.87427086e-02\\n-6.03569150e-01 1.14045158e-01 2.79753655e-01 -9.10819024e-02\\n8.78136456e-02 9.09341150e-04 -3.05676073e-01 -3.40464897e-02\\n-1.90240964e-01 -2.73199156e-02 -3.69730622e-01 -2.92600542e-01\\n-2.62211829e-01 -1.65740550e-01 6.06591515e-02 -1.76774293e-01\\n8.94650221e-02 -2.50827253e-01 -2.07122788e-01 1.50647700e-01\\n2.41036505e-01 -9.02146846e-02 -8.19535926e-02 -3.13162468e-02\\n4.52656113e-02 1.90373674e-01 5.75016916e-01 7.95449242e-02\\n2.01677710e-01 -1.53858379e-01 -1.78880811e-01 8.76552239e-02\\n1.73068970e-01 4.31731790e-02 1.90317333e-01 3.86260301e-01\\n-5.74243963e-01 -2.61047959e-01 3.12430486e-02 5.24540722e-01\\n-3.88376117e-01 1.82737380e-01 -3.75962295e-02 2.69468427e-01\\n6.79673031e-02 3.92884500e-02 -3.25483978e-01 -6.94731027e-02\\n-1.36809319e-01 -5.12272358e-01 3.77437890e-01 -4.20546949e-01\\n-6.49380013e-02 -7.67480209e-02 1.24616556e-01 1.85142875e-01\\n-2.75748551e-01 -7.27195740e-02 -7.14258254e-02 3.16397339e-01\\n8.30367059e-02 2.59518534e-01 -3.49409670e-01 -6.62130415e-02\\n-2.81189322e-01 -5.58537468e-02 1.21889357e-02 2.98320875e-03\\n-6.72159195e-02 2.96684772e-01 3.03455323e-01 1.62705213e-01\\n3.82352948e-01 -9.82054397e-02 -3.30381185e-01 -2.31987685e-02\\n2.18656138e-02 -3.77537340e-01 7.63856992e-02 7.39148781e-02\\n2.82662243e-01 -2.27714270e-01 -3.12827788e-02 -2.38592684e-01\\n-1.88624546e-01 -4.33910638e-01 -1.36388570e-01 7.48383403e-02]]',\n", + " 'job_description': 'Il nostro cliente,realtà internazionale, leader nell’E- commerce. Principali responsabilità Designing, writing and testing clean code Create resilient, secure and performant applications Simplifying and improving the infrastructure, focusing on CI/CD Interact with all stakeholders Monitoring, identifying and correcting software defects. Contribute in the R&D Principali caratteristiche richieste Experience as a Software Engineer programming in Object Oriented languages ( Java, Python etc.) Willingness to work inside a team Knowledge of Italian and English Customer orientation',\n", + " 'soft_skills': '[\"Infrastructure\"]',\n", + " 'hard_skills': '[\"Object-Oriented Database\", \"Software Engineering\", \"Python (Programming Language)\"]',\n", + " 'languages': \"['English', 'Kwanyama', 'Urdu']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'data scientist in tel-aviv',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.18293035e-01 2.87841141e-01 5.12300014e-01 -7.21083768e-03\\n5.24712682e-01 -1.88244194e-01 -1.17877543e-01 2.70312518e-01\\n-5.77173606e-02 -3.23469400e-01 -1.44767746e-01 -2.39758983e-01\\n-1.33455500e-01 1.63746506e-01 2.24244371e-01 3.49083453e-01\\n2.10390851e-01 4.85742167e-02 -2.19078898e-01 3.56796920e-01\\n1.08912639e-01 -2.76170559e-02 3.07881739e-02 8.12087834e-01\\n3.18082333e-01 2.93625891e-03 -8.18525702e-02 -3.55271362e-02\\n-2.17758745e-01 -1.63740441e-01 4.30000007e-01 2.15683579e-02\\n-1.47977367e-01 -3.33791941e-01 1.47535443e-01 1.79005191e-01\\n-2.73670375e-01 2.32104622e-02 -1.56353980e-01 1.55275434e-01\\n-4.87558007e-01 -2.98121899e-01 -6.23520240e-02 8.38000029e-02\\n-3.07590961e-01 -3.54387790e-01 9.75237340e-02 -1.02897167e-01\\n9.54963788e-02 1.98823959e-02 -5.77964842e-01 2.69739419e-01\\n-2.04751775e-01 -3.27793479e-01 3.35760653e-01 6.56660855e-01\\n2.63097230e-02 -5.55410028e-01 -3.31110209e-01 -3.70134026e-01\\n-6.39993399e-02 -6.52012378e-02 6.68702051e-02 -3.81399423e-01\\n3.34978670e-01 4.01002076e-03 -8.22445564e-03 3.82482320e-01\\n-8.58393788e-01 -1.37028411e-01 -2.64403045e-01 9.09647048e-02\\n-3.66348296e-01 -8.84052552e-03 -3.38790148e-01 -2.39188224e-01\\n3.69494632e-02 3.96705240e-01 1.06598876e-01 4.03243452e-02\\n-1.29990965e-01 2.69204468e-01 -2.73234189e-01 3.25216651e-01\\n3.10159683e-01 3.27072799e-01 2.10068285e-01 2.86820263e-01\\n-4.34033751e-01 4.11853403e-01 1.43094495e-01 -3.09442371e-01\\n1.08997867e-01 2.70852089e-01 4.39643055e-01 8.12140778e-02\\n1.45917118e-01 1.25089183e-01 -2.27411553e-01 2.50035554e-01\\n1.86893985e-01 -3.55020821e-01 -1.54045550e-02 -9.37457457e-02\\n-8.06592852e-02 4.15019430e-02 6.25080895e-03 1.73431516e-01\\n-4.20865238e-01 4.12830085e-01 1.65124029e-01 -1.33727670e-01\\n-1.41450658e-01 -5.59730351e-01 -1.32213861e-01 8.89212359e-03\\n-1.47841694e-02 2.11780146e-01 1.23516731e-01 2.09867597e-01\\n1.08305834e-01 6.59859255e-02 1.33507490e-01 9.74079132e-01\\n-6.29510805e-02 1.10877909e-01 -1.32439673e-01 3.78171325e-01\\n1.40447825e-01 -2.11893439e-01 2.49871910e-01 2.28198484e-01\\n8.04139003e-02 -1.73262596e-01 -2.73073584e-01 3.56066465e-01\\n-1.47886500e-01 -1.64400339e-01 -3.56325984e-01 2.89170325e-01\\n-4.88935001e-02 -5.75941622e-01 6.70860589e-01 5.96228130e-02\\n2.34454915e-01 -3.51504609e-02 1.24850124e-01 -1.01970524e-01\\n-1.23098195e-01 2.93026090e-01 5.42703234e-02 1.32511228e-01\\n-3.47178042e-01 -2.18496352e-01 -2.20214114e-01 2.49481991e-01\\n-3.77162009e-01 1.21448226e-01 -9.87554342e-02 -1.15173399e-01\\n1.61477342e-01 1.28003499e-02 -3.42942923e-01 1.66983321e-01\\n-1.35706723e-01 -1.80758610e-01 -2.04923898e-02 3.19539130e-01\\n-1.88702732e-01 3.61160785e-01 -5.94299920e-02 -1.77253917e-01\\n5.82493186e-01 1.11601993e-01 1.30582482e-01 -5.30823618e-02\\n2.72910118e-01 -1.05887450e-01 2.20045894e-01 1.11448959e-01\\n-7.38385797e-01 3.85596603e-01 -2.84547359e-02 -1.73716813e-01\\n-1.65580641e-02 5.10152914e-02 3.64965647e-01 -3.59147787e-01\\n4.98479269e-02 -1.66514322e-01 -3.25890452e-01 -1.92414984e-01\\n-2.29196206e-01 4.21810709e-02 5.25538445e-01 -4.21860158e-01\\n1.81264244e-02 2.62536764e-01 -5.79888821e-01 -1.29377455e-01\\n2.31570154e-01 1.09798148e-01 4.93862182e-02 1.45558715e-01\\n-2.01086015e-01 -5.92694819e-01 1.28643159e-02 -4.03994501e-01\\n-3.53430837e-01 -1.05816629e-02 -2.70896882e-01 1.69163838e-01\\n-1.03219122e-01 -6.22279793e-02 -9.72907692e-02 1.49337977e-01\\n-2.91529000e-01 9.61449966e-02 1.82307839e-01 7.16495737e-02\\n2.87366241e-01 6.04301207e-02 -3.59633982e-01 5.36509454e-01\\n-1.32813379e-01 5.92790067e-01 1.60871685e-01 -8.45661759e-01\\n5.38983703e-01 3.52200985e-01 4.08283696e-02 -3.83220077e-01\\n5.54943502e-01 -3.82794738e-01 -1.18547067e-01 7.00652227e-02\\n-3.33947718e-01 -3.28016520e-01 3.69035810e-01 -2.78760403e-01\\n-3.24766517e-01 5.73739171e-01 1.16708800e-01 6.31609857e-02\\n3.66605490e-01 -3.17673743e-01 -1.56395152e-01 1.07739098e-01\\n-1.23718701e-01 -2.78182715e-01 -5.57289720e-01 2.01117769e-02\\n-6.72401637e-02 -5.01689613e-01 -1.77827924e-01 -3.52551490e-01\\n-2.68854499e-01 -3.42199683e-01 -2.08490387e-01 1.64829910e-01\\n1.96887955e-01 1.65492341e-01 -6.21476211e-03 -3.97751480e-03\\n5.06284786e-03 -6.92227781e-01 -7.15350825e-03 4.90946174e-02\\n4.99817550e-01 1.91982672e-01 1.46058634e-01 -6.45228401e-02\\n9.23559666e-02 6.21987641e-01 -2.94392377e-01 -4.10207957e-01\\n1.60949573e-01 2.08620057e-01 -5.49437888e-02 -1.86902463e-01\\n1.19672351e-01 3.19383144e-01 -4.58880246e-01 1.41053066e-01\\n-2.08991498e-01 6.99654967e-02 2.75222689e-01 1.16555570e-02\\n-2.04641044e-01 -2.04443306e-01 -7.49943033e-02 2.67654330e-01\\n-5.31203032e-01 -2.11172640e-01 4.50798422e-01 2.19182745e-01\\n1.23261519e-01 1.32240802e-01 1.68832824e-01 -9.81790423e-02\\n-3.55463505e-01 -1.39827728e-01 1.36318460e-01 2.32824355e-01\\n4.70402092e-02 1.35376140e-01 -5.45809083e-02 -6.73519611e-01\\n-3.00617957e+00 -1.60012737e-01 1.17671415e-01 -1.75615221e-01\\n3.61178368e-01 -1.64495587e-01 1.43302590e-01 -9.03277751e-03\\n-3.49488795e-01 -6.10821731e-02 -2.09754616e-01 -2.23797321e-01\\n8.75594839e-02 2.50830948e-01 8.35473463e-02 3.01108092e-01\\n1.15815252e-01 -2.84762204e-01 1.64243989e-02 3.78445059e-01\\n-1.82845399e-01 -7.49971211e-01 3.38451043e-02 2.89310440e-02\\n2.37582803e-01 2.86669821e-01 -5.35140693e-01 -1.41612977e-01\\n-3.35757196e-01 -1.93789482e-01 1.41799256e-01 -4.32356775e-01\\n-2.08259672e-01 2.76039302e-01 1.81092039e-01 8.33089277e-03\\n1.05184980e-01 -3.07880163e-01 -7.87858367e-02 -4.05652016e-01\\n8.44321847e-02 -6.88022316e-01 -2.27253325e-02 -2.53851945e-03\\n6.76779807e-01 -2.75195360e-01 2.01655611e-01 1.07493915e-01\\n1.00873686e-01 3.83704193e-02 3.70400399e-02 3.45684006e-03\\n-2.38506883e-01 -3.11897129e-01 3.23845446e-02 -1.71624944e-01\\n5.28447032e-01 5.87214768e-01 -1.27861023e-01 3.21895443e-03\\n7.55982623e-02 -3.32092673e-01 -4.32284087e-01 -4.22599584e-01\\n-2.07180500e-01 -1.82864100e-01 -6.47473037e-01 -5.84745228e-01\\n-1.27664909e-01 -1.65396556e-01 -1.21536672e-01 5.69952726e-01\\n-2.91157603e-01 -3.13016921e-01 -7.76192732e-03 -6.26682997e-01\\n2.63738483e-01 -9.93413553e-02 7.07623661e-02 -2.06828043e-01\\n-1.94918439e-01 -6.63694561e-01 6.09017462e-02 -6.81228712e-02\\n-1.35057598e-01 -2.39459768e-01 4.28878665e-02 -1.63148925e-01\\n-3.04237574e-01 -5.44258356e-01 4.25652415e-01 1.30276144e-01\\n2.81241715e-01 1.27569154e-01 4.44982022e-01 -1.62410602e-01\\n2.86756963e-01 1.08747140e-01 1.32018223e-01 -3.25071961e-01\\n6.31374940e-02 1.51748862e-03 5.41878521e-01 -2.35481575e-01\\n7.42597878e-02 1.81875736e-01 -2.45808855e-01 -4.55430560e-02\\n3.82158905e-01 -5.88339232e-02 8.51765275e-02 -3.27251196e-01\\n4.22881663e-01 -2.92879015e-01 -5.35061844e-02 6.91487342e-02\\n2.01761127e-01 7.53794432e-01 2.33551376e-02 -3.19270164e-01\\n-3.02711785e-01 4.92297024e-01 -1.02416702e-01 -4.22330499e-02\\n3.65426624e-03 6.59923702e-02 -1.36420980e-01 2.41520226e-01\\n-6.08639531e-02 -2.74800241e-01 -1.54007182e-01 -9.21609104e-02\\n-1.80405170e-01 2.99591571e-01 2.38003865e-01 8.13113302e-02\\n-9.06702802e-02 -3.00942063e-01 -3.02870907e-02 2.85105705e-01\\n2.45284632e-01 4.05236095e-01 1.71040803e-01 -2.73677856e-01\\n1.24181218e-01 3.18955183e-01 -1.68900564e-01 3.66705984e-01\\n-2.39510164e-01 4.84256446e-02 -5.51192164e-01 -2.27828890e-01\\n-2.82664031e-01 -4.12412703e-01 2.08331913e-01 3.75236183e-01\\n1.40334994e-01 -1.74522903e-02 5.76600023e-02 -3.92776936e-01\\n3.58074427e-01 1.88306466e-01 1.23329140e-01 7.14654401e-02\\n-9.24802721e-02 5.21789491e-01 1.76760778e-02 -1.29744336e-01\\n-4.99612056e-02 1.19916320e-01 -1.91738874e-01 -3.10217887e-01\\n1.79390199e-02 -5.62416434e-01 -2.13426292e-01 4.20868009e-01\\n1.21819377e-01 -2.28558898e-01 -1.72867492e-01 1.23649307e-01\\n-3.05206259e-03 -2.60526448e-01 -2.40866095e-01 -5.26610166e-02\\n2.97338873e-01 3.12007535e-02 2.88476765e-01 -4.86263722e-01\\n1.02790457e-03 -1.89638849e-05 -9.14216042e-02 4.82597053e-01\\n5.08560687e-02 9.11352411e-02 -1.94687262e-01 -1.18908972e-01\\n4.49147791e-01 -1.26008853e-01 -3.90892252e-02 -2.84874924e-02\\n4.43721712e-02 -1.30077496e-01 -4.30025816e-01 9.27536860e-02\\n5.09439893e-02 -2.70332903e-01 -2.62129884e-02 9.39276218e-02\\n1.60054103e-01 6.53310865e-02 -5.40078759e-01 -3.00339073e-01\\n-2.47534916e-01 2.84825265e-02 1.58488408e-01 -4.22260523e-01\\n-3.33974436e-02 -7.40806665e-03 -6.69469476e-01 2.35402569e-01\\n-1.84741929e-01 2.88976654e-02 2.48318851e-01 6.24485537e-02\\n-3.87329429e-01 -1.78277954e-01 -9.41277761e-03 2.96678513e-01\\n-3.83303940e-01 -2.22639427e-01 -1.06608696e-01 -9.75611448e-01\\n2.14084610e-01 8.76736864e-02 -1.34298623e-01 2.07775071e-01\\n-8.97926092e-03 -6.58091366e-01 8.31519142e-02 -4.75828856e-01\\n-1.16090886e-01 2.41030082e-02 -2.85048157e-01 -4.04611379e-01\\n1.46265879e-01 1.18161179e-01 -2.41376832e-01 5.49563885e-01\\n-3.88389558e-01 3.07227850e-01 -6.42132461e-02 -5.95144890e-02\\n-2.75390446e-02 -2.00592190e-01 8.07937086e-02 -2.97519088e-01\\n-2.33403519e-01 -2.56137401e-01 -2.21348792e-01 -2.19993785e-01\\n-5.67318127e-02 -2.34017238e-01 -1.44421533e-01 7.18368590e-02\\n2.87361383e-01 3.03286873e-02 -1.85453922e-01 -3.87502939e-01\\n1.79538220e-01 -3.80847037e-01 -5.69932647e-02 -3.36848021e-01\\n-1.88614819e-02 -1.21831067e-01 1.33851856e-01 1.37501493e-01\\n9.43917036e-02 -2.75968164e-01 4.13993090e-01 -3.47519577e-01\\n-3.95263761e-01 -5.05526252e-02 3.56818251e-02 -6.65428936e-02\\n2.56928712e-01 -4.65586632e-01 2.22059134e-02 3.06080818e-01\\n2.08225414e-01 -4.53113355e-02 1.50231272e-01 -1.42714649e-01\\n-7.98468292e-02 3.09931517e-01 -3.72600824e-01 9.30723622e-02\\n7.53199816e-01 1.80170029e-01 8.15048665e-02 1.31628498e-01\\n2.70878136e-01 3.33038032e-01 5.43331385e-01 7.10164607e-02\\n-6.47241808e-03 3.65606636e-01 5.76459952e-02 -4.20979321e-01\\n-5.20156138e-02 -1.70334429e-01 -1.92165419e-01 -4.35033321e-01\\n6.81549609e-01 3.40471238e-01 -3.55009824e-01 -2.90121287e-01\\n-1.23186998e-01 -2.55506933e-01 2.27265403e-01 5.58853671e-02\\n-1.80744994e-02 -4.28048149e-02 5.25710464e-01 -3.21102552e-02\\n2.52861470e-01 5.23727894e-01 -1.91659644e-01 -3.69987607e-01\\n-3.34243551e-02 3.49063009e-01 4.16438170e-02 4.03664291e-01\\n-2.55929261e-01 3.37148309e-01 1.56096965e-02 7.81616271e-02\\n-3.91230062e-02 1.74844608e-01 2.87186116e-01 5.53589426e-02\\n2.91800857e-01 4.39713523e-02 3.93747956e-01 4.43959564e-01\\n2.22822219e-01 5.12729526e-01 3.28795314e-01 1.39577046e-01\\n3.15115660e-01 6.16119981e-01 3.34165603e-01 7.75566250e-02\\n4.96870354e-02 1.06310681e-01 9.89114121e-02 -3.53255607e-02\\n3.74655962e-01 2.58748323e-01 1.14481501e-01 9.13820505e-01\\n4.19050455e-01 2.90576130e-01 7.83076227e-01 -7.25676179e-01\\n-4.61633861e-01 5.01146205e-02 5.66897154e-01 -4.15733337e-01\\n-9.57862958e-02 1.77778676e-01 -2.46684670e-01 3.16184282e-01\\n-5.03846407e-01 -1.78304851e-01 3.22709903e-02 2.42886879e-02\\n-1.55182248e-02 -7.84657374e-02 -2.36155882e-01 5.91551550e-02\\n-1.20163910e-01 -2.41799146e-01 -4.08412069e-01 -1.59290597e-01\\n-2.17466012e-01 -1.96896628e-01 -1.58770263e-01 -6.34346753e-02\\n-2.13597819e-01 -4.25238073e-01 -1.35838211e-01 5.75714409e-02\\n3.49687219e-01 -1.05659075e-01 -1.77324012e-01 -1.64048001e-01\\n3.27015936e-01 2.69009501e-01 5.35591185e-01 -3.74660175e-03\\n4.58556227e-02 -1.60626084e-01 -2.26541489e-01 2.07142279e-01\\n4.24319319e-02 6.97323913e-03 6.39940202e-02 3.79417956e-01\\n-1.05872333e-01 -9.79279056e-02 1.52147800e-01 2.89568722e-01\\n-4.49063867e-01 -5.00153303e-02 -7.25549161e-02 2.81835824e-01\\n5.87736927e-02 1.98308975e-01 -2.39006579e-01 6.30554259e-02\\n-6.29267693e-02 -6.17099345e-01 3.35754007e-01 -1.26462936e-01\\n-2.06246108e-01 1.59260884e-01 3.71250540e-01 2.57733524e-01\\n-2.70904720e-01 -9.60356891e-02 -4.16815430e-02 1.41539529e-01\\n-5.72923608e-02 3.97079289e-01 -1.75745562e-01 -2.80430377e-01\\n-3.09338182e-01 2.19110414e-01 -3.41730177e-01 1.37834206e-01\\n3.45500819e-02 3.37633759e-01 4.48890850e-02 1.21918358e-01\\n3.77781987e-01 1.67348050e-02 -2.85270363e-01 -2.59968311e-01\\n-1.51336551e-01 -1.66423470e-01 -4.03786339e-02 -7.49597466e-03\\n1.29494756e-01 -2.36944631e-01 -7.84701332e-02 -1.31945327e-01\\n-1.03526577e-01 -2.97147602e-01 -1.72600776e-01 4.93747927e-03]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our clients based in Tel-Aviv for an experienced Data Scientist who will take a lead role in designing the next generation of financial engine, based on state-of-the-art deep learning, algorithms and innovative technology. Your role: Lead the development of novel solutions for hard, yet-unsolved problems. Acquire and maintain knowledge of state-of-the-art scientific literature in deep learning and related fields Design and implement scalable ML and DL systems, products, and solutions. Build deep learning-based products on CPUs and GPUs, leveraging latest deep learning and machine learning libraries. Manage, coach, mentor and support less experienced team members as required Your skills: Proven industrial and/or academic machine learning background (e.g., publications in ICCV, CVPR, ECCV, NIPS, ICML) Strong understanding of deep neural networks, machine learning and related fields At least 3 years’ experience Python / C++ Experience working with deep learning frameworks (e.g. Caffe, TensorFlow, etc.) Excel at both individual and team work The following skills are a big plus: Experience building AI systems using one of TensorFlow, PyTorch, MXNet, Theano, Caffe, and other open source frameworks. Solid understanding of underlying techniques in deep learning to build for scalability, and efficiency. Experience building machine learning products. Experience building scalable machine learning and deep learning systems. Your profile: MSc / PhD in related fields from leading universities (graduation with honours is a plus). Expected to be self-driven and motivated, lead and act independently to deliver; support will be provided from an experienced AI Leader as required and requested Ability to quickly understand and pick up new technologies and algorithms',\n", + " 'soft_skills': '[\"Innovation\"]',\n", + " 'hard_skills': '[\"Library Management\", \"MSC Software\", \"Apache MXNet\", \"Theano (Software)\", \"Machine Learning\", \"Industrialization\", \"C++ (Programming Language)\", \"Scientific Literature\", \"Python (Programming Language)\", \"Maintainability\", \"Financial Engineering\", \"E (Programming Language)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Caffe\", \"Scalability\", \"TensorFlow\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " 'languages': \"['English', 'Danish', 'Tsonga']\"},\n", + " {'company_id': '51',\n", + " 'job_title': 'product manager - ai and data products',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Publishing',\n", + " 'website': 'www.frontiersin.org',\n", + " 'jobdescription_embedded': '[[-4.01236355e-01 2.87015855e-01 4.39394355e-01 9.88470763e-02\\n4.76421744e-01 -8.49938244e-02 8.12596306e-02 1.96090937e-01\\n-5.44392057e-02 -3.98882926e-01 -1.43993914e-01 -1.83753029e-01\\n-1.58108938e-02 6.74094260e-02 7.12079853e-02 4.88142818e-01\\n3.37462604e-01 5.71313240e-02 -1.51247784e-01 4.22992468e-01\\n1.90616958e-02 -1.94834426e-01 1.66388452e-02 6.99739575e-01\\n4.63335603e-01 -2.39662323e-02 -1.27283514e-01 1.99957825e-02\\n-9.95414332e-02 -2.81736702e-01 3.59253168e-01 3.19542661e-02\\n-1.64493620e-02 -3.80350351e-01 5.11729196e-02 4.86332923e-04\\n-2.13148475e-01 1.05989672e-01 -1.30445600e-01 1.47916153e-01\\n-3.90347302e-01 -8.13534111e-02 4.45378758e-02 -6.05453625e-02\\n-2.10255086e-01 -3.25333446e-01 -4.96872887e-02 -9.94873047e-02\\n1.29596829e-01 1.44078150e-01 -4.87961739e-01 3.60232264e-01\\n-3.02495778e-01 -2.53662050e-01 2.48073369e-01 5.93623996e-01\\n-1.20144878e-02 -4.31212902e-01 -4.85820889e-01 -3.77218127e-01\\n7.94182122e-02 -1.94613367e-01 3.01809549e-01 -2.29129255e-01\\n2.32306495e-01 -8.45196377e-03 2.71647312e-02 2.76663184e-01\\n-6.81997895e-01 -5.88912517e-03 -3.52539837e-01 2.59306766e-02\\n-3.33706915e-01 -7.47505501e-02 -4.26799774e-01 -8.30218196e-02\\n-8.17832127e-02 3.17750216e-01 -6.21341355e-03 1.11685812e-01\\n-2.51950979e-01 3.01139683e-01 -1.96993917e-01 3.46933544e-01\\n1.99890330e-01 1.18254408e-01 3.64616752e-01 4.44880366e-01\\n-2.69150972e-01 5.45547247e-01 1.92063272e-01 -2.69803196e-01\\n4.15234923e-01 6.24892935e-02 3.59981000e-01 4.59041819e-02\\n2.37286568e-01 9.39356387e-02 -2.13887066e-01 1.29903585e-01\\n2.19259098e-01 -2.74659574e-01 -1.23549610e-01 -1.37294561e-01\\n-3.56600210e-02 3.83770652e-02 9.17483345e-02 5.29713556e-02\\n-3.93190980e-01 5.02123713e-01 2.44524833e-02 -2.34544352e-01\\n-1.28471926e-01 -3.33001614e-01 -3.69556956e-02 4.90282886e-02\\n-4.89940532e-02 2.34134138e-01 2.10760027e-01 1.50582701e-01\\n2.01021865e-01 2.43503321e-03 1.35461330e-01 7.58145452e-01\\n1.13273785e-01 3.80898975e-02 -2.81135798e-01 2.47894973e-01\\n1.06203891e-01 -4.52317238e-01 2.18564540e-01 -7.90535659e-03\\n-7.65636936e-02 -1.40001550e-01 -2.28940338e-01 3.17973852e-01\\n-1.49007782e-01 -2.08554149e-01 -2.36900389e-01 1.43334866e-01\\n-5.56822941e-02 -6.30265951e-01 6.06806874e-01 -1.55254275e-01\\n2.04922527e-01 -4.62804474e-02 1.22867286e-01 -5.51203452e-02\\n-1.45845383e-01 2.57596195e-01 1.93511814e-01 2.60994345e-01\\n-2.67605782e-01 -2.41002798e-01 -1.36122763e-01 3.00853282e-01\\n-4.27202165e-01 2.15794832e-01 -1.90160215e-01 -1.76130965e-01\\n3.05705965e-01 1.02462947e-01 -4.25817192e-01 2.19044000e-01\\n-1.91495076e-01 -7.52302706e-02 -2.15498894e-01 5.04195273e-01\\n-1.28268316e-01 1.78646192e-01 1.78774506e-01 3.33063118e-02\\n6.84854388e-01 2.60646313e-01 2.54357636e-01 -2.36474220e-02\\n3.34094405e-01 -5.80014288e-03 2.23529413e-01 7.51067251e-02\\n-6.44975364e-01 2.47253329e-01 -6.83541149e-02 -1.42340213e-01\\n4.72327918e-02 -1.70135722e-01 2.29554504e-01 -4.19607043e-01\\n7.31343590e-03 -1.79721415e-01 -3.39367270e-01 -3.66864711e-01\\n-1.68405503e-01 5.69386594e-02 3.96326423e-01 -3.51168394e-01\\n-5.14275357e-02 1.60805777e-01 -5.66573679e-01 -1.56895116e-01\\n2.52493739e-01 1.83577478e-01 2.64259726e-02 2.20267177e-01\\n-1.09668732e-01 -5.41825294e-01 1.04890645e-01 -4.06251609e-01\\n-4.38534677e-01 6.75804615e-02 -3.94131958e-01 1.56423509e-01\\n2.09375471e-01 3.43195274e-02 -1.28100395e-01 1.52730256e-01\\n-1.57520831e-01 3.57151367e-02 1.53335091e-03 1.74084716e-02\\n2.78731763e-01 1.24772131e-01 -3.79303038e-01 4.88689840e-01\\n-1.46320671e-01 3.93800706e-01 5.80356009e-02 -8.56556058e-01\\n5.28268814e-01 2.44959086e-01 -8.48154724e-02 -3.36754918e-01\\n5.09054780e-01 -2.98091918e-01 -1.92236193e-02 1.17055416e-01\\n-1.95416689e-01 -2.59282053e-01 3.28496575e-01 -2.49662966e-01\\n-3.13444316e-01 5.04077196e-01 3.59492227e-02 2.64932156e-01\\n2.16184884e-01 -1.75906017e-01 -1.68327659e-01 1.61577076e-01\\n-1.38973072e-01 -1.67204887e-01 -6.10741854e-01 4.30010222e-02\\n-8.74697417e-02 -3.42068374e-01 -1.22047454e-01 -5.14169157e-01\\n-1.95201442e-01 -4.88301337e-01 -2.15323806e-01 1.43965036e-01\\n1.78504974e-01 1.68033674e-01 -1.35873824e-01 -8.14716965e-02\\n-8.21794197e-03 -7.41325378e-01 5.82537241e-03 1.01975836e-01\\n4.11420643e-01 2.76292443e-01 1.49665609e-01 -8.51111487e-02\\n7.38791376e-02 5.17667234e-01 -3.67874444e-01 -2.28311971e-01\\n2.49442443e-01 6.95261285e-02 -4.83997092e-02 -2.02582717e-01\\n1.38280876e-02 2.01509789e-01 -2.11457953e-01 3.47246900e-02\\n-2.30344851e-03 -9.57287475e-02 4.63504136e-01 -6.06935360e-02\\n-4.31221187e-01 -1.52278781e-01 -1.13882646e-01 2.97894597e-01\\n-5.34587622e-01 -3.28249931e-01 7.18602657e-01 1.83658019e-01\\n1.23673283e-01 2.00187936e-01 1.20248929e-01 -6.64021894e-02\\n-1.97900862e-01 -3.43581796e-01 4.29987103e-01 4.78257686e-02\\n1.71052232e-01 9.85144824e-02 -6.08210228e-02 -7.01202869e-01\\n-3.65674400e+00 -2.28687212e-01 -2.53579132e-02 -2.08647490e-01\\n2.05655426e-01 -1.00015335e-01 1.40217066e-01 -1.01980209e-01\\n-2.38330975e-01 1.73456326e-01 -1.76072881e-01 -1.05937712e-01\\n-1.81968659e-02 2.25988299e-01 2.41594777e-01 1.91380829e-01\\n2.73708105e-01 -2.61488527e-01 -1.71999745e-02 2.63826489e-01\\n-1.53127134e-01 -6.88936949e-01 1.13314345e-01 5.52272499e-02\\n2.67355025e-01 1.86614707e-01 -3.65598202e-01 -1.40844285e-01\\n-3.95124674e-01 -1.31108403e-01 6.81990832e-02 -1.53861254e-01\\n-2.93632686e-01 2.39228666e-01 2.17268124e-01 -1.33394152e-01\\n-1.84806995e-02 -4.68376637e-01 -1.03572816e-01 -3.45144987e-01\\n1.33822322e-01 -6.60131454e-01 7.57426582e-03 -3.37112583e-02\\n6.35620236e-01 -1.21863276e-01 2.78837264e-01 -6.33863453e-03\\n1.55754060e-01 3.80049460e-02 1.31808102e-01 7.40242302e-02\\n-1.40557498e-01 -2.88098007e-01 -2.96449754e-02 -1.53378323e-01\\n7.52657652e-01 2.92451054e-01 -1.48197263e-01 -1.60030007e-01\\n1.04287848e-01 -3.68480653e-01 -4.45929885e-01 -2.26350904e-01\\n-2.14556694e-01 -1.36174992e-01 -6.55618787e-01 -4.63277936e-01\\n-2.36805573e-01 -1.27850443e-01 -5.51923811e-02 6.52110457e-01\\n-1.96535081e-01 -3.11424971e-01 -1.01561025e-01 -4.19152200e-01\\n2.32776359e-01 -1.09636471e-01 3.25425640e-02 -2.36157835e-01\\n-2.63167739e-01 -4.17800069e-01 7.54241571e-02 1.03517123e-01\\n-9.46301967e-02 -1.96282819e-01 1.24833159e-01 -7.48359710e-02\\n-3.68689358e-01 -4.39635903e-01 3.95750582e-01 1.25993297e-01\\n2.91576385e-01 2.33012438e-02 3.30586791e-01 -8.31006281e-03\\n2.39797741e-01 -3.40751410e-02 -1.08806640e-02 -4.96363282e-01\\n4.75334004e-02 1.12056039e-01 5.60755968e-01 -1.29822075e-01\\n-1.08713321e-02 7.60848671e-02 -1.85606450e-01 -1.45961538e-01\\n5.46629548e-01 -6.30770847e-02 5.16788512e-02 1.40532907e-02\\n2.02252537e-01 -3.17024231e-01 -2.08124191e-01 6.45948499e-02\\n6.71973825e-02 7.36087024e-01 -1.59884095e-02 -3.76228154e-01\\n-1.62754938e-01 4.37781185e-01 -6.69209659e-02 1.57638922e-01\\n-1.71262294e-01 1.22721314e-01 -1.80247664e-01 2.77977943e-01\\n8.39399695e-02 -1.67263046e-01 -1.76014960e-01 -1.34624451e-01\\n-1.46271884e-01 2.63368845e-01 2.86168098e-01 1.40139401e-01\\n-9.69307423e-02 -4.46446687e-01 -2.16117203e-01 2.17374980e-01\\n2.24043161e-01 5.17161012e-01 1.99186727e-01 -2.67839551e-01\\n8.02960247e-04 3.04621756e-01 -1.24134190e-01 2.65025437e-01\\n-2.55736709e-01 2.12695926e-01 -5.59670150e-01 -2.11667985e-01\\n-2.42610991e-01 -3.90370101e-01 9.64280665e-02 4.17320013e-01\\n8.79301876e-02 -6.66142330e-02 -6.05605915e-02 -4.26920533e-01\\n2.63435781e-01 9.82398912e-03 1.97889522e-01 9.96484049e-03\\n-6.82526603e-02 6.13374352e-01 -9.89310443e-02 -1.30804762e-01\\n-1.93908393e-01 4.22899686e-02 -8.62748623e-02 -1.28480375e-01\\n8.77488479e-02 -4.42295223e-01 -2.80523021e-02 3.32474947e-01\\n3.15771997e-01 -1.74641520e-01 -1.22721627e-01 2.68373668e-01\\n-2.28046402e-02 -4.74802762e-01 -2.73135722e-01 3.56485136e-03\\n3.01194370e-01 2.58758925e-02 2.69845814e-01 -3.33348691e-01\\n9.43511575e-02 -5.89743853e-02 2.90337913e-02 3.97190601e-01\\n-1.83273815e-02 4.49931063e-02 -4.37064730e-02 -1.21281475e-01\\n4.45687264e-01 -4.44673076e-02 -1.40645295e-01 1.42325126e-02\\n1.81018263e-02 -3.67516041e-01 -6.05409622e-01 -3.56025100e-02\\n-3.16698737e-02 -2.70098209e-01 2.09108382e-01 1.61890775e-01\\n-7.90996850e-02 1.66019112e-01 -5.62680006e-01 -1.81347460e-01\\n-2.81549752e-01 -1.45219624e-01 6.27622306e-02 -6.03503585e-01\\n-2.82929420e-01 -5.30891418e-02 -5.02614975e-01 2.13011369e-01\\n-2.92041469e-02 -1.70365110e-01 1.69536889e-01 7.23993704e-02\\n-1.79092616e-01 -1.92488715e-01 1.15020201e-01 2.22151116e-01\\n-2.27764904e-01 -2.48008877e-01 1.28186703e-01 -1.04188812e+00\\n1.96785599e-01 2.32199371e-01 -2.51621187e-01 -4.95044515e-03\\n-7.05215931e-02 -6.55517757e-01 2.00875849e-01 -3.72523427e-01\\n-8.15366060e-02 -3.23916674e-02 -3.22995305e-01 -2.79101133e-01\\n3.78183275e-02 -2.30744258e-02 -2.68617749e-01 4.14375871e-01\\n-2.75039941e-01 3.29757512e-01 -7.70997033e-02 6.44419342e-02\\n-7.06364959e-02 -1.95181310e-01 4.82499525e-02 -3.06231141e-01\\n-4.66505527e-01 -1.92978233e-01 -3.34116220e-01 -2.14218825e-01\\n-6.28525689e-02 -2.08866358e-01 -1.11021660e-01 1.15985885e-01\\n4.15128469e-01 2.11818218e-01 -1.41719997e-01 -2.84112453e-01\\n-7.20839202e-02 -4.29138571e-01 7.08533078e-02 -1.80122077e-01\\n-9.25066918e-02 -1.97212905e-01 2.57932901e-01 1.76073074e-01\\n1.98054284e-01 -3.36628556e-01 4.07548219e-01 -3.47763866e-01\\n-2.79322267e-01 -1.44766927e-01 1.31175667e-01 1.06199503e-01\\n2.65051365e-01 -5.46744108e-01 -1.09651037e-01 3.05856347e-01\\n3.48362625e-02 7.41115212e-02 2.67413020e-01 -1.53471142e-01\\n-6.23319037e-02 2.47210085e-01 -4.49784815e-01 1.82791740e-01\\n7.90020943e-01 1.77784547e-01 -2.99046878e-02 2.36884147e-01\\n1.39117628e-01 3.40837598e-01 4.81783986e-01 -8.34009796e-02\\n-4.48337607e-02 2.87920892e-01 2.49613300e-02 -6.64794385e-01\\n-1.73200935e-01 -1.25498980e-01 -8.55277479e-03 -3.52936089e-01\\n7.34187067e-01 3.26662749e-01 -3.12185675e-01 -2.80074447e-01\\n-2.10296139e-01 -1.81767076e-01 2.68944502e-01 2.31875256e-02\\n5.24091050e-02 2.87809968e-03 4.91007656e-01 -1.22929141e-02\\n1.75310463e-01 5.01890182e-01 -1.55870348e-01 -2.23255917e-01\\n-8.24373513e-02 2.83650935e-01 2.47816481e-02 4.74993169e-01\\n-2.30437815e-01 1.14461705e-01 1.11486495e-01 9.44469720e-02\\n-1.25120342e-01 1.11952990e-01 6.86803088e-02 1.42307699e-01\\n1.78406909e-01 8.13381970e-02 5.86423993e-01 4.35170054e-01\\n2.51753211e-01 4.20752823e-01 3.38247061e-01 -1.17946398e-02\\n3.94381881e-01 5.43840826e-01 4.66669858e-01 7.01498240e-02\\n1.50371045e-01 2.02910721e-01 1.59822196e-01 -5.84913269e-02\\n3.16915870e-01 3.73158216e-01 7.00212717e-02 7.46483922e-01\\n2.82250375e-01 3.44314635e-01 5.58940053e-01 -7.02206612e-01\\n-3.20451438e-01 -2.47690771e-02 5.77786922e-01 -3.23657990e-01\\n8.41432661e-02 4.06111300e-01 -1.96292236e-01 2.42494315e-01\\n-5.46283484e-01 -2.80415386e-01 -5.09143695e-02 -8.96067694e-02\\n1.01188555e-01 -2.05370769e-01 -1.30367950e-01 1.69513971e-01\\n-7.44356439e-02 -1.77003220e-01 -3.85996610e-01 -1.97853759e-01\\n-1.74220532e-01 2.14480430e-01 -7.65559971e-02 -4.10021767e-02\\n-8.85473490e-02 -2.82710433e-01 -1.10612080e-01 -3.82672548e-02\\n1.92532331e-01 -1.22516438e-01 -1.20310448e-01 6.92449510e-03\\n3.35002005e-01 1.72754407e-01 6.82246149e-01 -4.56843227e-02\\n5.11294156e-02 -2.30215982e-01 -1.91492751e-01 1.26143783e-01\\n2.63198912e-01 2.50240341e-02 7.53227100e-02 2.67022550e-01\\n-2.38535285e-01 -2.47321963e-01 6.54906332e-02 2.49994099e-01\\n-3.38833570e-01 -1.65161956e-03 -8.35850984e-02 1.29003733e-01\\n2.38232315e-04 1.45643473e-01 -1.88595027e-01 -1.25197455e-01\\n5.86594939e-02 -5.24764538e-01 2.74103820e-01 -3.11644189e-02\\n-2.42884099e-01 9.54058617e-02 2.39487037e-01 2.23849922e-01\\n-2.20932320e-01 -3.01560853e-02 -2.02141494e-01 4.99859080e-02\\n9.46204811e-02 2.47816861e-01 -1.06561720e-01 -2.86907256e-01\\n-2.60860264e-01 1.85026392e-01 -2.44647376e-02 2.23192260e-01\\n3.64108607e-02 2.19318539e-01 4.80907038e-02 1.23291895e-01\\n3.67851913e-01 1.19100913e-01 -2.45575979e-01 -1.72853202e-01\\n-2.73651183e-01 -1.54123738e-01 -3.06690894e-02 -5.37598245e-02\\n2.20141023e-01 -2.70026267e-01 -1.72143579e-02 -2.31355876e-01\\n-1.75957277e-01 -2.85332471e-01 -7.51812309e-02 2.13145763e-02]]',\n", + " 'job_description': \"Frontiers, a leading Open Access Publisher and Open Science Platform, is looking for a technical product manager to complement our product management team. In this position, you will take responsibility for one of our data and AI driven products. We seek an enthusiastic team player with great initiative and a get-it-done attitude. You must be able to handle a fast-paced work environment while juggling several different tasks at the same time. You also must have an eye for detail and high standards, with highly developed critical thinking, interpretive and analytical skills, and the ability to communicate product vision across multiple cross-functional teams. Key responsibilities Drive your products within the agile development teams, specifying business requirements, prioritizing user stories, supporting development, setting KPIs, proactively approaching users and stakeholders, collecting feedback and acting on it; Work together with our Data Architecture teams to ensure data quality, consistency and traceability; Discover, define and drive implementation of new product features, or evolving existing ones through working with our Data Sciences and other internal stakeholders; Sette hypotheses, test assumptions and break down complex problems into small steps; Take responsibility for the user experience and collaborate with designers and users to create the most appropriate solutions of our users; Be an expert in your product field, including technologies, competitors, and usage model trends; Work on multiple products simultaneously in a fast-paced, dynamic, and energetic environment; Act as the spokesperson for your products and drive feature adoption. Requirements Minimum three years of working experience, either as a product manager or similar position, ideally with a focus on data products; Good understanding of data architecture in both structured and unstructured data sources; Good understanding of machine learning concepts in general, more specific recommendation algorithms; Good understanding of web technologies and APIs; Experience in defining technical specifications describing requirements for data transfer, transformation and storage, with attention to big data topics, Comfortable in working with machine lear Strong analytical skills and independent, entrepreneurial approach; Working language is English - solid communication skills in English, both written and verbal are an absolute must. Benefits 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Access to the latest equipment and international working environment; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Analytical Skills\", \"Sourcing\", \"Energetic\", \"Collaboration\", \"Proactivity\", \"Communications\", \"Critical Thinking\", \"Socialization\", \"Prioritization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Data Architecture\", \"Production Management\", \"Data Quality\", \"Accessioning\", \"User Story\", \"Product Management\", \"Acting\", \"Collections\", \"Open Access\", \"Scheme (Programming Language)\", \"Activism\", \"Yoga\", \"Machining\", \"Idealization\", \"Development Support\", \"Hostile Work Environment\", \"Machine Learning Methods\", \"Unstructured Data\", \"Traceability\", \"Data Science\", \"Professional Development Programs\", \"Business Requirements\", \"Storages\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Transformation Services\", \"Big Data\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"Data Transfer Object\", \"Statistical Hypothesis Testing\", \"User Experience\", \"Eyes\", \"New Product Development\", \"Agile Product Development\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Limburger', 'Western Frisian', 'Navaho', 'Maldivian']\"},\n", + " {'company_id': '14',\n", + " 'job_title': 'computer vision researcher/engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.17035726e-01 2.98950672e-01 4.69268471e-01 -8.73681381e-02\\n5.13036072e-01 -2.32685223e-01 -9.23216119e-02 4.52893853e-01\\n-1.51256517e-01 -3.85924488e-01 -1.29038885e-01 -2.83279926e-01\\n-1.48410395e-01 2.11731523e-01 1.44315660e-01 5.19022346e-01\\n2.31461331e-01 5.25986701e-02 -4.14509892e-01 4.25563246e-01\\n2.55281657e-01 -1.20303407e-01 -9.82607622e-03 6.96228087e-01\\n4.30570960e-01 -7.75224641e-02 1.63752076e-04 2.52568841e-01\\n-2.30209127e-01 -2.83672243e-01 4.30388540e-01 4.22238410e-02\\n-4.68100235e-02 -2.93774396e-01 2.47980967e-01 1.41149491e-01\\n-1.38741374e-01 1.42635778e-02 -7.47205615e-02 2.06415877e-01\\n-4.52843755e-01 -2.24439025e-01 6.93554580e-02 6.55850470e-02\\n-2.22362086e-01 -3.77025455e-01 7.77795464e-02 -1.31554663e-01\\n1.09198682e-01 2.04573702e-02 -4.84884441e-01 4.26645041e-01\\n-1.71004355e-01 -2.04200670e-01 2.15091631e-01 7.36515939e-01\\n-1.19348221e-01 -3.94073159e-01 -4.33158308e-01 -3.06488276e-01\\n6.11925498e-02 -6.40015304e-02 -1.07702546e-01 -2.96205521e-01\\n3.42325360e-01 1.88962460e-01 4.67698984e-02 2.44885057e-01\\n-8.20312381e-01 -3.87265794e-02 -2.01706007e-01 4.81296293e-02\\n-2.59279490e-01 -4.51870970e-02 -2.49911875e-01 -4.29616049e-02\\n2.61862669e-02 3.28220397e-01 -2.75706709e-03 -1.13586254e-01\\n-1.00859813e-01 2.41348118e-01 -1.68194652e-01 2.56577075e-01\\n2.52244443e-01 1.02597348e-01 5.05177006e-02 1.80174783e-01\\n-3.43042403e-01 4.66162294e-01 1.04678467e-01 -3.59962553e-01\\n2.50158787e-01 1.63952008e-01 5.99860132e-01 -3.50063369e-02\\n1.71416849e-01 1.54624537e-01 -2.67824054e-01 2.94125438e-01\\n2.07114294e-01 -3.15089941e-01 4.80773933e-02 7.66728446e-02\\n-1.03797056e-01 -9.48329642e-03 -2.62817871e-02 4.90246713e-01\\n-2.91256428e-01 4.74763781e-01 -4.97973477e-03 -2.51572549e-01\\n-1.20243795e-01 -6.41939759e-01 -1.61465555e-01 -3.94092500e-02\\n1.99101400e-02 2.41597831e-01 1.36434957e-01 1.76024035e-01\\n8.19128379e-02 3.46283941e-03 2.54528016e-01 1.07943833e+00\\n-4.74978276e-02 2.19425991e-01 -4.88763899e-02 3.17451477e-01\\n1.09287001e-01 -2.86467463e-01 2.79915065e-01 2.94623494e-01\\n9.02740806e-02 -1.03666246e-01 -2.18871728e-01 2.78379560e-01\\n-1.23671331e-01 -2.19239980e-01 -4.42984939e-01 2.40879551e-01\\n-1.01094805e-01 -5.26074290e-01 6.60579205e-01 6.65918812e-02\\n2.43507117e-01 -5.06290048e-02 -6.31391704e-02 -6.03117421e-02\\n-1.85745612e-01 4.29179281e-01 7.98044950e-02 1.25700444e-01\\n-3.91211689e-01 -2.43832901e-01 -1.88360050e-01 3.13123405e-01\\n-3.10419858e-01 1.55270413e-01 -2.15107098e-01 -9.91766900e-02\\n3.74924511e-01 -4.61854860e-02 -3.30940843e-01 2.53863722e-01\\n-8.42722133e-02 -1.06144980e-01 2.15888750e-02 3.25099051e-01\\n-1.53583959e-01 3.94235909e-01 -8.42127353e-02 -5.27715646e-02\\n6.07145429e-01 -1.24179669e-01 -9.34389886e-03 -2.17889622e-02\\n2.68143266e-01 -2.16556843e-02 2.08569229e-01 9.56408866e-03\\n-6.15173399e-01 3.03072274e-01 -9.67033301e-03 -1.28808171e-01\\n-1.89812426e-02 -1.50770172e-01 4.80305612e-01 -3.94290954e-01\\n-1.03656620e-01 -1.29369423e-01 -3.41768146e-01 -2.32338861e-01\\n-4.65267986e-01 1.07860398e-02 4.69927669e-01 -4.10198182e-01\\n-1.28028333e-01 1.11130029e-01 -5.40956616e-01 1.48593917e-01\\n2.22055227e-01 1.70908511e-01 5.23780510e-02 2.03228280e-01\\n-2.62902051e-01 -6.49345756e-01 2.99616326e-02 -4.17868018e-01\\n-2.92050630e-01 2.26886749e-01 -2.56252736e-01 3.12439144e-01\\n5.93406036e-02 1.57478601e-01 -1.19805880e-01 1.27759382e-01\\n-3.69976193e-01 -3.95558262e-03 1.56628564e-01 8.54282230e-02\\n2.45059311e-01 1.44087344e-01 -5.17318785e-01 4.20909405e-01\\n-1.69872984e-01 6.15544438e-01 1.32037446e-01 -7.80290425e-01\\n5.38011491e-01 2.18913257e-01 2.30872016e-02 -3.81047100e-01\\n6.64608538e-01 -2.96842813e-01 -8.71951208e-02 2.43682057e-01\\n-2.97810018e-01 -3.10044587e-01 3.14329803e-01 -1.78861514e-01\\n-4.45284724e-01 4.51129287e-01 2.24437565e-01 9.74128544e-02\\n3.34185094e-01 -2.74792314e-01 -9.54287946e-02 1.17172360e-01\\n-7.91442096e-02 -1.67034566e-01 -3.99761945e-01 -6.12472594e-02\\n-1.19446352e-01 -5.21925926e-01 -1.49382398e-01 -4.49620903e-01\\n-3.03322017e-01 -4.63432401e-01 -2.10357919e-01 3.39501858e-01\\n1.59859002e-01 2.23609418e-01 2.00472966e-01 -1.04117736e-01\\n-2.74799496e-01 -6.59818649e-01 1.66699700e-02 1.81827545e-01\\n4.61220860e-01 2.76945502e-01 -8.31258073e-02 -9.25879478e-02\\n9.44696367e-02 4.88944143e-01 -3.28413635e-01 -4.01173562e-01\\n1.97374448e-01 2.82761097e-01 1.72042437e-02 -7.39972815e-02\\n1.01915374e-01 4.48483855e-01 -3.16658735e-01 1.60660431e-01\\n-2.44935796e-01 -2.09203623e-02 2.55809188e-01 1.38096631e-01\\n-3.23692560e-01 -3.53398919e-01 -1.27130419e-01 2.08120540e-01\\n-5.86071849e-01 -2.63090163e-01 4.86389399e-01 1.83118522e-01\\n1.36989042e-01 1.27846720e-02 2.20300615e-01 -2.11982086e-01\\n-2.08984479e-01 -2.33670548e-01 9.24206227e-02 1.94163695e-01\\n-1.29334524e-01 1.83267817e-01 -2.30460256e-01 -6.19110167e-01\\n-3.11664462e+00 -8.05686489e-02 2.40369365e-01 -2.57464916e-01\\n1.99845284e-01 -1.67236015e-01 3.68043706e-02 5.56031652e-02\\n-2.45701179e-01 -4.36835177e-02 -1.75640821e-01 -2.28175640e-01\\n1.28585324e-01 4.19824183e-01 2.76018262e-01 2.79499978e-01\\n2.29533911e-01 -3.21284056e-01 -9.32058990e-02 3.88967812e-01\\n-1.05808645e-01 -6.90544009e-01 1.57541066e-01 -1.43830970e-01\\n2.53037781e-01 3.62953514e-01 -3.53361368e-01 -1.16188690e-01\\n-3.64477694e-01 -2.54562140e-01 1.25512600e-01 -2.35596702e-01\\n-2.10525855e-01 3.40823531e-01 2.59610951e-01 9.47993919e-02\\n1.01299398e-01 -2.90804386e-01 2.80938856e-02 -2.79148698e-01\\n4.27221134e-02 -7.32970715e-01 -1.23153806e-01 -1.70238465e-01\\n8.24480593e-01 -3.50483388e-01 1.98953375e-01 6.31885976e-02\\n2.66721308e-01 1.62735790e-01 -5.41404746e-02 -6.59445301e-02\\n-1.78531557e-01 -2.02568889e-01 -1.90270506e-02 -1.12433217e-01\\n5.36185861e-01 6.71329439e-01 -3.21810246e-01 -1.75951824e-01\\n-2.98887957e-02 -3.93124044e-01 -4.28649217e-01 -3.74091953e-01\\n-1.99111849e-01 -1.77761644e-01 -6.82059467e-01 -5.09291708e-01\\n-7.90584087e-02 -1.32311314e-01 -2.54362989e-02 4.18400735e-01\\n-4.89627481e-01 -4.16765243e-01 -1.30961195e-01 -3.26900691e-01\\n1.95419937e-01 -1.70527667e-01 4.63421494e-02 -1.91731706e-01\\n-2.90601790e-01 -6.19742751e-01 5.26644811e-02 -1.45708630e-02\\n-2.85831481e-01 -2.95991361e-01 -2.96030473e-02 -4.06513661e-01\\n-3.60997677e-01 -5.78343451e-01 4.20680821e-01 1.17324822e-01\\n2.53663510e-01 1.04385965e-01 2.01841578e-01 7.37298951e-02\\n4.07099336e-01 -2.18945354e-01 2.16421992e-01 -3.85481030e-01\\n2.07634687e-01 -8.27214643e-02 6.99065685e-01 -3.10044557e-01\\n4.16436829e-02 1.23935632e-01 -3.66222590e-01 -1.06458910e-01\\n3.23459417e-01 4.12419997e-02 2.66173277e-02 -3.91757667e-01\\n2.73531407e-01 -2.50116378e-01 -2.88912386e-01 9.36420783e-02\\n1.11825339e-01 6.94923341e-01 1.44878894e-01 -3.87016922e-01\\n-3.02916229e-01 4.62186098e-01 -1.78337350e-01 -1.24578826e-01\\n-1.62430316e-01 1.35538504e-01 -1.65623412e-01 2.25651890e-01\\n-3.40400338e-02 -1.27599478e-01 -2.11725861e-01 7.47528151e-02\\n-1.09188654e-01 4.49712068e-01 2.95329064e-01 -1.79079473e-02\\n-3.98830883e-02 -2.07589403e-01 -6.11220952e-03 2.19320729e-01\\n1.65379465e-01 2.36312494e-01 1.47323579e-01 -3.26535821e-01\\n2.31359038e-03 4.72231418e-01 -1.08700193e-01 1.65043876e-01\\n-8.77658129e-02 2.39165369e-02 -6.15838110e-01 -2.81858116e-01\\n-2.73304433e-01 -3.98407549e-01 1.80396557e-01 3.29735905e-01\\n2.34193671e-02 -5.51375486e-02 1.15594201e-01 -5.31719387e-01\\n3.51446956e-01 2.19529286e-01 2.89943606e-01 2.12635726e-01\\n-1.27256781e-01 5.19830585e-01 3.24322726e-03 -1.56378657e-01\\n-1.17015727e-01 1.15028493e-01 -2.46449217e-01 -2.13438272e-01\\n4.58797328e-02 -5.15485406e-01 -1.68101877e-01 3.96053702e-01\\n8.75024199e-02 -3.05238426e-01 -2.47520342e-01 2.48687923e-01\\n1.08888954e-01 -2.89398283e-01 -1.31661132e-01 -3.11982073e-02\\n3.66594195e-01 1.37463450e-01 2.14672402e-01 -5.54337919e-01\\n8.16373974e-02 -6.06036074e-02 -8.55693594e-02 5.26099205e-01\\n-1.55361697e-01 1.89293921e-02 -2.65763432e-01 -6.03662804e-02\\n4.94714826e-01 4.60771564e-03 1.00939848e-01 -1.33585691e-01\\n1.76304672e-02 -2.39504904e-01 -4.30469990e-01 1.48568928e-01\\n2.57115886e-02 -1.58681408e-01 -2.69363169e-02 1.01597466e-01\\n-1.56178856e-02 1.10882610e-01 -5.66456199e-01 -2.54446507e-01\\n-3.27419221e-01 -1.65805638e-01 4.71970998e-02 -4.02482361e-01\\n2.33576968e-02 -7.96365319e-04 -3.84800255e-01 2.05773667e-01\\n-1.38961568e-01 1.62390724e-01 2.97419995e-01 6.15580427e-03\\n-3.07163537e-01 -1.99907199e-01 1.97732031e-01 1.45531356e-01\\n-2.87392557e-01 -1.60337299e-01 -3.12978216e-02 -8.58383000e-01\\n1.22250281e-01 -5.62848784e-02 -1.40660793e-01 1.50318161e-01\\n-4.66634743e-02 -8.30350101e-01 -5.12366975e-03 -3.97481889e-01\\n7.47966208e-03 1.12342983e-02 -1.86315775e-01 -3.33870739e-01\\n2.03316540e-01 -6.97739720e-02 -2.82185525e-01 4.02151942e-01\\n-4.75812972e-01 2.96179771e-01 8.45623203e-03 3.39408368e-02\\n8.93906225e-03 -3.35583448e-01 1.17936119e-01 -4.32155669e-01\\n-3.21212411e-01 -1.03260376e-01 -2.06887782e-01 -1.16271682e-01\\n5.66127244e-03 -3.10035229e-01 -1.70412242e-01 1.35172933e-01\\n2.43972912e-01 1.57793611e-03 -7.74960741e-02 -2.41326675e-01\\n7.23817274e-02 -3.22606415e-01 2.72113848e-02 -1.32495180e-01\\n1.55225638e-02 -1.28486738e-01 8.37377086e-02 9.73379463e-02\\n1.17826730e-01 -4.44315046e-01 5.73109567e-01 -3.93524796e-01\\n-3.81249577e-01 2.63941567e-02 9.90944281e-02 -1.55426800e-01\\n4.97506231e-01 -4.34421390e-01 -3.75014804e-02 4.21753705e-01\\n-3.80420010e-03 7.13804811e-02 2.42156461e-01 -9.56681222e-02\\n-1.36319533e-01 1.16548315e-01 -2.54056096e-01 4.72206660e-02\\n8.50503027e-01 2.42869914e-01 2.20126867e-01 6.52963221e-02\\n2.96079069e-02 3.45052540e-01 3.37082207e-01 1.20170182e-02\\n-1.52402250e-02 1.40239865e-01 1.83024973e-01 -4.96655315e-01\\n-5.33501431e-02 -6.94211349e-02 -2.69478858e-01 -2.15938210e-01\\n6.06432021e-01 4.79145616e-01 -3.31203550e-01 -2.85751760e-01\\n4.18289453e-02 -2.83467680e-01 1.81734249e-01 -3.33805382e-02\\n-7.30824703e-03 -5.08453995e-02 5.55789828e-01 -2.62170862e-02\\n4.46782224e-02 5.25467277e-01 -3.12697500e-01 -3.10060531e-01\\n-1.29906146e-03 1.90938666e-01 -2.37996690e-02 3.50738943e-01\\n-1.88606516e-01 4.71172512e-01 -8.88439640e-02 3.75756659e-02\\n-6.07598461e-02 4.88347262e-02 2.34591424e-01 -5.57595529e-02\\n1.27587482e-01 2.25828946e-01 4.35720682e-01 6.12502158e-01\\n2.62493908e-01 5.41456521e-01 4.09565628e-01 2.96458881e-02\\n4.89281863e-01 6.08497739e-01 4.43592668e-01 1.79996565e-01\\n-3.35513093e-02 5.47011830e-02 1.00962996e-01 8.66869166e-02\\n5.50501227e-01 2.92941809e-01 1.17329955e-01 8.56596887e-01\\n4.33871657e-01 1.68664515e-01 6.44136250e-01 -6.90316856e-01\\n-4.56193000e-01 -7.34282052e-03 4.86049205e-01 -2.90933251e-01\\n-1.63291857e-01 8.41208026e-02 -1.85453236e-01 2.05263868e-01\\n-5.16638339e-01 -2.34654471e-01 -9.37795117e-02 1.81813508e-01\\n-1.97025724e-02 -2.60343519e-03 -1.31245568e-01 -2.34506503e-02\\n-1.80504769e-02 -8.03187788e-02 -5.10931611e-01 -1.85944736e-01\\n-3.30880016e-01 -3.24859589e-01 -7.22184703e-02 2.94357762e-02\\n-1.23180218e-01 -3.71969044e-01 -2.60714650e-01 8.44898596e-02\\n3.46218437e-01 -2.25244448e-01 -1.14703789e-01 -1.01280630e-01\\n1.00308761e-01 2.59002388e-01 6.15002155e-01 -3.57006229e-02\\n3.19671421e-03 -1.90056890e-01 -1.52256459e-01 5.67096099e-02\\n4.82882261e-02 6.62369654e-02 1.12943307e-01 4.19781297e-01\\n-4.79844213e-01 -9.58947092e-02 -8.10999796e-02 3.99318367e-01\\n-4.69480544e-01 -2.62536794e-01 -6.26483175e-04 1.70049429e-01\\n3.46633680e-02 8.46292675e-02 -1.98443308e-01 -4.66455780e-02\\n-1.45482197e-01 -5.42486072e-01 3.24805766e-01 -2.59422585e-02\\n-1.50893196e-01 8.07226170e-03 3.42955440e-01 1.82188049e-01\\n-3.40605043e-02 -4.14949097e-02 1.28683997e-02 3.83335680e-01\\n-1.65945645e-02 2.84696907e-01 -1.41138136e-01 -3.75340104e-01\\n-3.48357618e-01 2.42437959e-01 -1.62165910e-01 1.70202568e-01\\n-5.29040322e-02 1.96052790e-01 2.09912583e-02 1.68673500e-01\\n3.43007058e-01 -5.46199270e-02 -1.44290358e-01 -1.23735689e-01\\n-2.22008958e-01 -4.05785382e-01 -1.06713001e-03 -3.23196501e-02\\n1.27133757e-01 -3.18237513e-01 -6.69296011e-02 -1.51215389e-01\\n-1.03771403e-01 -2.42908493e-01 -2.10208684e-01 3.01287975e-02]]',\n", + " 'job_description': 'Your Responsibilities: You will be working on the core computer vision algorithms, focusing on cutting edge problems. You have extensive experience in Computer Vision with specialization in at least one of the following areas: Dense Mapping Design and implement advanced algorithms for reconstructing dense 3D models of large-scale indoor environments using depth sensors. 3D Scene Understanding Design and implement 3D scene segmentation algorithms based on depth, motion or texture data. Machine learning Detecting known objects and use priors to complete un-observed parts of the object. Your Qualifications:Expert knowledge in at least one area listed below: Fluent in C/C++ (programming and debugging) Experience working with OpenCV Knowledge of parallel computing, OpenCL, GPGPU is a plus Knowledge software optimization and embedded programming is a plus Your Education: MS in Computer Science or Electrical Engineering Ph.D. is preferred What we offer: Nice environment to deploy your enthusiasm for computer vision challenges and cutting-edge technologies Highly skilled team of researchers, scientists and engineers Flexible working hours Should you have any further questions, feel free to reach out to: hr@astrivis.com',\n", + " 'soft_skills': '[\"Research\", \"Enthusiasm\"]',\n", + " 'hard_skills': '[\"Nice (Unix Utility)\", \"Programming (Music)\", \"pH Meters\", \"Computer Science\", \"Texturing\", \"OpenCV\", \"Machine Learning\", \"Scale (Map)\", \"Computer Vision\", \"Component Object Model (COM)\", \"Knowledge Management Software\", \"Optimization Software\", \"Agile Edge Technologies\", \"OpenCL\", \"Embedding\", \"C (Programming Language)\", \"Electrical Engineering\", \"3D Modeling\", \"Parallel Computing\", \"Algorithms\", \"Mapping\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Software Plus Services\", \"Debugging\"]',\n", + " 'languages': \"['English', 'Nepali']\"},\n", + " {'company_id': '9',\n", + " 'job_title': 'software engineer frontend (m/w)',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.29411924e-01 3.69570881e-01 4.05117869e-01 -9.23201814e-02\\n4.00253803e-01 -1.96479231e-01 -3.31471823e-02 4.53161091e-01\\n-8.15106258e-02 -3.87246817e-01 -8.96338522e-02 -2.40364134e-01\\n-1.78286508e-01 5.12044504e-02 1.76763207e-01 3.77947927e-01\\n3.02914709e-01 1.31900102e-01 -2.00987652e-01 3.42699260e-01\\n7.53284618e-02 -8.97139087e-02 -2.94442456e-02 7.02488601e-01\\n3.25351417e-01 1.07417889e-02 -3.31698805e-02 -8.29202756e-02\\n-2.61225253e-01 -2.32835680e-01 3.87040228e-01 1.65966637e-02\\n-9.27388221e-02 -3.60517710e-01 8.05779919e-02 7.85665810e-02\\n-1.49701387e-01 1.11210449e-02 -2.71107778e-02 1.73086390e-01\\n-4.95559961e-01 -2.36285791e-01 1.87594235e-01 -2.54552811e-03\\n-1.19406827e-01 -3.99426579e-01 2.31142834e-01 -4.11266237e-02\\n1.42262325e-01 -1.39738563e-02 -6.67806029e-01 1.82873860e-01\\n-3.02327514e-01 -1.91834658e-01 4.21090394e-01 4.75494474e-01\\n5.96510693e-02 -5.02350688e-01 -4.68741387e-01 -3.23751360e-01\\n5.00352047e-02 -6.45478070e-02 1.25537902e-01 -3.54868680e-01\\n3.50229591e-01 7.04007223e-02 2.94305775e-02 3.95864725e-01\\n-8.07034492e-01 -5.06236218e-02 -2.34445035e-01 -1.19389305e-02\\n-4.53674287e-01 -1.83947399e-01 -2.66975850e-01 -5.07865623e-02\\n-1.25643134e-01 3.16604376e-01 -8.07620361e-02 6.20083399e-02\\n-1.92136452e-01 3.58563244e-01 -1.96704954e-01 4.84612137e-01\\n2.37676635e-01 1.84111580e-01 2.35324442e-01 3.53205860e-01\\n-4.17643011e-01 4.26375836e-01 2.31587321e-01 -2.68785179e-01\\n3.11311007e-01 3.05274967e-02 4.46601897e-01 5.85986041e-02\\n2.14686230e-01 8.38731676e-02 -2.45889008e-01 2.03965932e-01\\n2.06985757e-01 -2.63606668e-01 -1.32197678e-01 -1.34364218e-01\\n-2.37532513e-04 1.42218713e-02 7.10352184e-03 2.31911212e-01\\n-1.58053622e-01 5.14584839e-01 2.49390170e-01 -1.23238206e-01\\n-1.31678358e-01 -5.28611302e-01 -9.17088389e-02 4.26199846e-02\\n-8.95039141e-02 4.86033857e-02 1.97904795e-01 8.70702490e-02\\n2.45701268e-01 4.46167290e-02 6.42111450e-02 8.11113477e-01\\n-8.71537924e-02 7.23166764e-02 -1.57811627e-01 3.86564374e-01\\n9.73562226e-02 -3.39138538e-01 1.33837491e-01 3.47027004e-01\\n1.12876065e-01 -1.56601027e-01 -2.10042566e-01 3.36655289e-01\\n-6.77346066e-02 -1.78810269e-01 -3.28392357e-01 1.03942566e-01\\n-1.30089775e-01 -5.43019891e-01 5.14666319e-01 1.15517050e-01\\n2.11252630e-01 8.44955891e-02 1.09585926e-01 -1.08988255e-01\\n-1.67187542e-01 2.02998176e-01 3.29276882e-02 2.19192848e-01\\n-2.62528121e-01 -2.95220882e-01 -2.30744511e-01 1.29503042e-01\\n-1.86414227e-01 1.22461922e-01 -7.28980824e-02 -1.25563279e-01\\n3.91089648e-01 9.01127309e-02 -3.89580131e-01 3.25837731e-01\\n-2.96039265e-02 7.32740760e-02 -1.73700258e-01 3.51689696e-01\\n1.13036372e-02 2.26558372e-01 9.32053030e-02 -5.85043877e-02\\n5.41109443e-01 3.37963142e-02 2.49247745e-01 -4.23603207e-02\\n3.73318166e-01 -9.71680284e-02 1.92851096e-01 3.28308158e-02\\n-6.21452749e-01 1.97901428e-01 -5.31012230e-02 -3.59770395e-02\\n1.07706808e-01 -3.11045144e-02 2.90326744e-01 -3.05278003e-01\\n4.10244241e-02 -1.62066251e-01 -4.43341225e-01 -3.42027724e-01\\n-2.92095184e-01 -3.00347056e-05 4.76545930e-01 -3.98269385e-01\\n-1.25014722e-01 1.77671731e-01 -5.25608063e-01 -8.17053095e-02\\n2.53624022e-01 2.23039031e-01 1.06225893e-01 1.11317560e-01\\n-2.20318407e-01 -5.56012452e-01 4.24042828e-02 -5.06793082e-01\\n-4.24928844e-01 1.39224917e-01 -3.33594203e-01 2.07066193e-01\\n1.06761746e-01 -7.13509321e-02 -1.42024100e-01 5.63105606e-02\\n-2.45518357e-01 -9.25257802e-02 1.67488351e-01 1.06218018e-01\\n2.82514632e-01 -1.60132367e-02 -3.91320944e-01 5.45516670e-01\\n-2.07576782e-01 4.84423816e-01 8.30163807e-02 -8.63820076e-01\\n5.29234767e-01 4.03689086e-01 1.70482323e-02 -4.29077387e-01\\n5.68604767e-01 -3.38719010e-01 -4.87028770e-02 1.79560736e-01\\n-4.23586935e-01 -4.16793406e-01 2.49534130e-01 -1.28347069e-01\\n-2.44486988e-01 5.52456677e-01 7.65677765e-02 5.66585287e-02\\n2.63584852e-01 -2.79061884e-01 -1.83097646e-01 6.19198382e-02\\n-1.02029957e-01 -1.81545436e-01 -5.69159269e-01 4.90567461e-02\\n-5.71765266e-02 -5.12661278e-01 -1.59197271e-01 -3.78707260e-01\\n-2.35236287e-01 -4.07423347e-01 -3.33275080e-01 3.46463472e-01\\n1.90752208e-01 1.18661016e-01 -4.99214903e-02 1.18422091e-01\\n-1.45164147e-01 -6.48951769e-01 5.65320365e-02 1.40068904e-01\\n3.99149865e-01 1.57687411e-01 1.33428708e-01 -7.52682388e-02\\n-7.49949962e-02 5.97881436e-01 -2.96335161e-01 -2.47993588e-01\\n1.51850387e-01 2.04703584e-01 4.02054604e-04 -1.41496122e-01\\n1.18283741e-01 3.04508865e-01 -3.38581204e-01 -2.00866219e-02\\n-1.14004619e-01 2.07603048e-03 3.97050172e-01 -1.79522738e-01\\n-4.23588037e-01 -2.48989001e-01 -1.15061529e-01 1.76054463e-01\\n-5.33380151e-01 -2.13539794e-01 6.13665521e-01 3.21149409e-01\\n1.31031826e-01 2.04565778e-01 2.74301261e-01 -9.03357044e-02\\n-2.50618696e-01 -3.84346724e-01 2.98153579e-01 1.62363291e-01\\n1.54614463e-01 1.11201599e-01 -2.00536415e-01 -6.05881572e-01\\n-3.10678220e+00 -1.11332886e-01 2.43699685e-01 -2.34393403e-01\\n2.21965104e-01 -7.14346394e-02 1.11621946e-01 -6.25328720e-02\\n-2.62996674e-01 2.69727828e-03 -2.08455190e-01 -1.43144622e-01\\n1.09476000e-01 3.54203433e-01 1.04733236e-01 1.75140977e-01\\n2.29415357e-01 -2.34874815e-01 2.01575309e-02 2.80038327e-01\\n-2.20643982e-01 -6.92691386e-01 1.59317523e-01 -7.19114169e-02\\n2.05907077e-01 3.57553571e-01 -2.76850402e-01 -9.86656472e-02\\n-1.60291374e-01 -2.22065330e-01 9.19965357e-02 -2.89611846e-01\\n-9.40682888e-02 1.85911208e-01 1.41933128e-01 -6.64288253e-02\\n3.28832343e-02 -3.96721900e-01 -1.79942846e-01 -5.49185932e-01\\n1.70321688e-01 -5.97442806e-01 1.05505064e-01 -1.74614400e-01\\n7.38923609e-01 -3.13181967e-01 2.88300775e-02 6.46378621e-02\\n1.66261196e-01 1.77568853e-01 2.27926262e-02 1.51935574e-02\\n-3.33069384e-01 -3.41732055e-01 -4.03173938e-02 -2.76493996e-01\\n5.61342776e-01 4.01285380e-01 -2.73374557e-01 5.12259779e-03\\n1.56088069e-01 -2.21656680e-01 -4.30077165e-01 -3.17961127e-01\\n-1.44211724e-01 -1.24780893e-01 -6.84318304e-01 -4.54844266e-01\\n-1.27156168e-01 -1.68069690e-01 -6.41700402e-02 7.41744041e-01\\n-3.28977764e-01 -3.47371250e-01 -9.86098964e-03 -6.81394637e-01\\n1.94150820e-01 -2.31482938e-01 2.41207760e-02 -2.03758359e-01\\n-2.32270256e-01 -4.61979359e-01 5.73927388e-02 4.15991955e-02\\n-1.80058643e-01 -7.67726153e-02 7.98474401e-02 -1.05169445e-01\\n-2.69929051e-01 -5.51191330e-01 4.67386663e-01 1.44844174e-01\\n3.31390470e-01 1.49854526e-01 2.65491754e-01 -9.00676325e-02\\n4.04459149e-01 -2.45536566e-02 -1.83354337e-02 -4.13371325e-01\\n2.29118884e-01 7.02057332e-02 5.63765764e-01 -2.08509088e-01\\n-4.39126929e-03 3.24514747e-01 -1.66267022e-01 -1.66295394e-01\\n4.44916666e-01 -2.81692692e-03 9.39762294e-02 -2.35529691e-01\\n3.72845113e-01 -4.99007255e-01 -2.79690892e-01 1.62263930e-01\\n6.50707260e-02 6.79179490e-01 -4.62868176e-02 -4.07837003e-01\\n-1.45643756e-01 5.92358530e-01 -2.68287994e-02 -3.81400101e-02\\n-1.59143195e-01 1.90688744e-01 -1.69566676e-01 2.11906001e-01\\n7.83518404e-02 -1.83542281e-01 -2.62169242e-01 -4.94430438e-02\\n-9.38159972e-02 2.56094605e-01 1.93756148e-01 1.54458731e-01\\n1.85032953e-02 -4.16298151e-01 -1.09462939e-01 1.71553329e-01\\n2.32540503e-01 4.73408222e-01 2.56309900e-02 -2.50505865e-01\\n-7.08528906e-02 3.12660068e-01 -1.67381495e-01 1.95748866e-01\\n-2.51374364e-01 1.77247152e-01 -4.89304394e-01 -2.81294286e-01\\n-3.07072520e-01 -3.44712198e-01 2.19907779e-02 2.45001048e-01\\n2.15368003e-01 1.71730258e-02 9.67314020e-02 -4.89545405e-01\\n2.33887285e-01 4.17286009e-02 2.09033161e-01 1.75459236e-01\\n6.57896549e-02 5.22310913e-01 -5.55800423e-02 -1.59081459e-01\\n-2.12825298e-01 2.26340666e-02 -2.12228030e-01 -1.30399451e-01\\n1.28516719e-01 -4.60697681e-01 -1.47388235e-01 3.98855448e-01\\n1.28584683e-01 -1.85337469e-01 -2.24879280e-01 2.00295970e-01\\n2.95178732e-03 -2.28929460e-01 -2.45843783e-01 -2.93837171e-02\\n2.75664061e-01 6.57641962e-02 2.95062721e-01 -4.09785092e-01\\n-4.07891683e-02 1.04561551e-02 -1.35437781e-02 4.34687287e-01\\n1.31916359e-01 -8.60692002e-03 -1.58321127e-01 -2.11187065e-01\\n4.18992668e-01 -1.60342500e-01 -1.04373552e-01 -4.44057547e-02\\n1.48072585e-01 -1.85886979e-01 -4.69280154e-01 8.08674544e-02\\n-2.00714096e-01 -1.47033080e-01 1.56165868e-01 4.47960123e-02\\n3.98036651e-02 1.20192535e-01 -5.49052715e-01 -2.34389722e-01\\n-3.28624845e-01 -4.41376343e-02 1.15211010e-01 -5.70016205e-01\\n1.55493505e-02 8.15795269e-03 -6.38714314e-01 1.96569309e-01\\n-2.46831536e-01 -4.55087684e-02 1.55861527e-01 1.41786739e-01\\n-4.19364989e-01 -6.18827343e-02 1.00808263e-01 2.71678746e-01\\n-3.90558630e-01 -3.26926380e-01 -6.28312826e-02 -1.05453587e+00\\n2.29835749e-01 -1.07707851e-01 -2.80444503e-01 2.65343562e-02\\n-2.40594968e-02 -7.19151497e-01 5.64527102e-02 -3.33742708e-01\\n-8.38625282e-02 9.29665193e-02 -2.90800959e-01 -3.91880780e-01\\n1.24277040e-01 -9.24262404e-02 -3.13667327e-01 4.52166200e-01\\n-4.91245717e-01 2.90124625e-01 -3.98732871e-02 9.69134346e-02\\n-7.86277950e-02 -3.67054850e-01 1.37411773e-01 -4.33616459e-01\\n-4.65432167e-01 -2.12991685e-01 -3.69023800e-01 -2.83506781e-01\\n6.37267232e-02 -3.57645780e-01 -7.93143287e-02 1.49083808e-01\\n2.66231418e-01 6.93375915e-02 -5.67990355e-02 -1.98315829e-01\\n5.03223762e-02 -4.86519575e-01 4.27958369e-02 -9.35251340e-02\\n-1.91907454e-02 -1.22224070e-01 2.18753368e-01 5.62345572e-02\\n1.48162648e-01 -3.73725444e-01 4.54626232e-01 -3.08522969e-01\\n-3.94377708e-01 -9.17724520e-02 4.11946364e-02 1.07083796e-02\\n2.10496694e-01 -6.59699619e-01 -2.93771774e-02 3.78252089e-01\\n1.77783608e-01 7.48921884e-03 1.41644970e-01 -6.53472096e-02\\n-3.11940163e-02 3.19561124e-01 -4.28473741e-01 7.72890523e-02\\n8.03155065e-01 1.04914188e-01 -9.26881097e-03 2.30272353e-01\\n1.10204071e-01 3.35492373e-01 5.15445471e-01 -1.35111455e-02\\n-8.65495503e-02 2.99768776e-01 5.77457845e-02 -6.36009276e-01\\n-1.93279043e-01 -1.25310393e-02 -1.19154349e-01 -3.08667332e-01\\n6.95102811e-01 3.49992901e-01 -4.15083408e-01 -2.33824492e-01\\n-9.59376693e-02 -1.38059989e-01 2.60134935e-01 -8.02251995e-02\\n2.13269778e-02 -1.74361482e-01 5.24038792e-01 1.20265998e-01\\n3.40502143e-01 5.41308582e-01 -1.41582504e-01 -3.37894022e-01\\n-1.25669673e-01 1.28656000e-01 6.10002922e-03 3.55155498e-01\\n-1.55080050e-01 2.16957033e-01 -2.66384110e-02 2.15285808e-01\\n-1.86379910e-01 8.16482529e-02 -1.73866432e-02 1.58651382e-01\\n1.77946299e-01 9.09013227e-02 4.73535925e-01 3.48686725e-01\\n3.07873636e-01 5.59899449e-01 2.56952941e-01 1.46173865e-01\\n4.97570693e-01 4.95077401e-01 4.91139591e-01 5.72649315e-02\\n2.02857777e-02 1.38471335e-01 1.60988525e-01 -2.30022985e-02\\n4.55447614e-01 3.73011321e-01 9.69769433e-02 9.09893811e-01\\n2.63892829e-01 2.91585386e-01 7.37418652e-01 -7.00027406e-01\\n-3.41046154e-01 1.42620400e-01 4.08385426e-01 -4.52853829e-01\\n-1.21834837e-02 1.15986437e-01 -2.04505742e-01 2.87938744e-01\\n-4.94186431e-01 -1.59595266e-01 -2.45441124e-02 1.03444837e-01\\n6.10486679e-02 -7.21836314e-02 -2.32636109e-01 -1.86584871e-02\\n-1.33059517e-01 -1.21303864e-01 -3.42725992e-01 -1.06091879e-01\\n-1.54547065e-01 -9.56852883e-02 -6.15939163e-02 -1.54421628e-01\\n-1.86023526e-02 -4.55810010e-01 -1.64407387e-01 2.58800052e-02\\n3.81081372e-01 7.22546177e-03 5.10656349e-02 -1.49288088e-01\\n2.68291146e-01 3.61838728e-01 6.41104460e-01 -7.41466507e-02\\n1.28239766e-01 -3.31496716e-01 -1.62876248e-01 1.26637995e-01\\n1.22773126e-01 7.49756917e-02 7.29571506e-02 3.56549025e-01\\n-3.29781264e-01 -9.12872702e-02 1.50337309e-01 4.64791358e-01\\n-4.04272437e-01 -5.86483777e-02 -7.41252825e-02 2.06489816e-01\\n1.07363746e-01 1.22886963e-01 -2.73597389e-01 1.29549608e-01\\n-2.65247673e-01 -5.01372039e-01 4.16632324e-01 -1.39432535e-01\\n-2.59529743e-02 5.72796352e-02 3.19551617e-01 2.14657202e-01\\n-1.99605718e-01 -4.39755581e-02 2.79396344e-02 1.99439138e-01\\n6.27974868e-02 3.43864381e-01 -2.23075032e-01 -1.38274357e-01\\n-2.89120644e-01 1.91538960e-01 -1.01570398e-01 5.28164692e-02\\n-7.71433935e-02 3.91924173e-01 8.37674290e-02 7.61969537e-02\\n3.88105720e-01 7.08745494e-02 -2.46042758e-01 -2.11832866e-01\\n-2.45644569e-01 -2.33632281e-01 -1.56008741e-02 -6.01415820e-02\\n1.88023865e-01 -3.92546386e-01 -1.06564753e-01 -1.59330621e-01\\n-8.31586793e-02 -3.26125592e-01 -9.23803002e-02 4.95209694e-02]]',\n", + " 'job_description': 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customer-specific solutions based on EmberJS, HTML, CSS Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of all web technologies (Javascript, HTML, CSS, REST, etc.) Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Know-how in User Interaction and User Experience Design Willingness to take on responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Hosting\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"User Experience Design (UX)\", \"Functional Programming\", \"Experience Design\", \"Additives\", \"Rust (Programming Language)\", \"User Experience\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English', 'Volapük', 'North Ndebele']\"},\n", + " {'company_id': '105',\n", + " 'job_title': 'frontend engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.smallpdf.com',\n", + " 'jobdescription_embedded': '[[-4.26356867e-02 2.17359364e-01 5.42060494e-01 -5.14482819e-02\\n4.81459022e-01 -2.47155696e-01 7.70751685e-02 3.83561611e-01\\n-7.61580393e-02 -4.18908447e-01 -1.47926528e-02 -3.62792462e-01\\n-9.29435715e-02 1.75257578e-01 5.87201007e-02 3.43884677e-01\\n2.85040706e-01 1.12520024e-01 -2.44654283e-01 3.55138689e-01\\n2.96462566e-01 -1.12063155e-01 4.66714986e-02 6.95091784e-01\\n4.14578646e-01 -9.51050743e-02 -5.16524464e-02 -1.53855786e-01\\n-3.06625158e-01 -2.67285466e-01 4.19684708e-01 -3.26246917e-02\\n-5.62880151e-02 -4.05230820e-01 8.40772465e-02 1.87225621e-02\\n-2.44043529e-01 -2.15876698e-01 1.30531646e-03 2.38969445e-01\\n-4.90683615e-01 -2.87727356e-01 5.78819215e-02 3.12983468e-02\\n-1.71726957e-01 -3.27531070e-01 9.79775041e-02 4.48192917e-02\\n1.39299437e-01 1.00150913e-01 -4.11611140e-01 3.32246542e-01\\n-1.69229612e-01 -1.15801483e-01 2.90452182e-01 6.70354784e-01\\n-9.36756283e-02 -4.22827065e-01 -5.80516756e-01 -3.08450162e-01\\n2.99962107e-02 -3.33176479e-02 1.19138407e-02 -3.35483313e-01\\n1.98844135e-01 4.93469238e-02 4.88317460e-02 3.76933247e-01\\n-7.37324536e-01 -1.93130281e-02 -1.10173628e-01 -1.39085770e-01\\n-3.13379079e-01 -1.41722351e-01 -1.62129253e-01 3.04854731e-03\\n-1.78818852e-01 5.11358202e-01 1.83843821e-01 -2.78426670e-02\\n-1.79097503e-01 3.18047345e-01 -2.55310148e-01 4.11038995e-01\\n2.70241320e-01 1.02049403e-01 1.28908843e-01 2.37064034e-01\\n-4.04838055e-01 4.03564245e-01 1.47431359e-01 -3.30602348e-01\\n3.22148353e-01 1.34906963e-01 5.89837074e-01 -4.91536483e-02\\n-1.25817992e-02 9.04181078e-02 -2.64334738e-01 3.74347538e-01\\n3.87403011e-01 -2.54816055e-01 6.95309713e-02 1.44624673e-02\\n-5.47078513e-02 1.01057934e-02 5.37022054e-02 2.35129207e-01\\n-2.19720095e-01 4.60387707e-01 1.73691243e-01 -2.33808652e-01\\n-1.58658758e-01 -5.13279378e-01 -2.34095473e-02 -9.95451063e-02\\n9.82712954e-02 1.65316582e-01 3.00291359e-01 9.77112427e-02\\n1.21364690e-01 -6.02424480e-02 1.44502446e-01 9.19503272e-01\\n-2.13861391e-02 7.77891278e-02 -3.45812917e-01 3.09157729e-01\\n9.89619419e-02 -2.78476208e-01 2.78817922e-01 2.51963079e-01\\n3.02748755e-03 -2.06331581e-01 -2.00654373e-01 4.03390080e-01\\n-9.07253474e-02 -2.23988771e-01 -3.14446628e-01 1.52227238e-01\\n-1.31628722e-01 -1.65394217e-01 5.24711311e-01 2.20738813e-01\\n1.42920539e-01 -7.70501138e-05 -4.84240428e-02 -2.27333203e-01\\n-1.34954140e-01 1.90372914e-01 7.96317030e-03 -2.91291215e-02\\n-2.73840815e-01 -1.82257190e-01 -2.31048837e-01 2.48168379e-01\\n-2.95537531e-01 6.79955706e-02 -1.19695021e-03 -5.39408959e-02\\n3.48537564e-01 6.86229020e-02 -2.60308057e-01 2.64624238e-01\\n7.56696938e-03 6.12249412e-02 -3.24984938e-02 2.76003182e-01\\n-2.10690260e-01 1.41476572e-01 -2.11646385e-03 -1.18105561e-01\\n6.54830158e-01 2.10145786e-01 5.75211570e-02 6.11898899e-02\\n2.63660371e-01 -1.11128248e-01 1.06344171e-01 1.75692439e-01\\n-6.41887426e-01 3.22313249e-01 -1.90654937e-02 -2.39929333e-02\\n1.06223367e-01 -1.27983047e-02 2.35499501e-01 -2.43631989e-01\\n7.41604492e-02 -1.60515472e-01 -3.47899497e-01 -1.97039917e-01\\n-1.32735893e-01 -7.07565993e-02 4.51854765e-01 -4.44653243e-01\\n-2.42387190e-01 2.59660482e-01 -5.44767261e-01 -4.57545780e-02\\n2.09263057e-01 1.56340107e-01 2.84527063e-01 1.48632616e-01\\n-2.29241788e-01 -5.04425168e-01 9.28275883e-02 -3.99338365e-01\\n-2.84851521e-01 5.91068342e-02 -3.40003043e-01 2.53648698e-01\\n1.00188352e-01 1.11372367e-01 -2.81086862e-01 1.71657622e-01\\n-1.33932665e-01 -1.12761721e-01 9.37261209e-02 1.16183348e-01\\n1.72252297e-01 6.48344457e-02 -4.69846815e-01 3.62570107e-01\\n-2.30470419e-01 5.88052511e-01 1.18322209e-01 -8.95061910e-01\\n4.94688183e-01 3.44649494e-01 -1.68681607e-01 -3.31332892e-01\\n5.15646040e-01 -2.96523988e-01 3.98536213e-02 7.43760392e-02\\n-2.61296332e-01 -3.14898998e-01 3.64714861e-01 -1.98250696e-01\\n-1.84726387e-01 4.64992583e-01 1.29337892e-01 1.29057586e-01\\n2.37109184e-01 -1.58043653e-01 -1.24909297e-01 8.42152685e-02\\n-7.01201558e-02 -2.43604600e-01 -4.35638428e-01 -1.59778371e-02\\n-1.41154110e-01 -4.40238506e-01 -4.38202098e-02 -4.69277173e-01\\n-2.20354408e-01 -3.67773533e-01 -2.15932161e-01 2.33749807e-01\\n3.10926527e-01 8.61162171e-02 -4.12216689e-03 7.19740242e-03\\n-1.65765360e-01 -6.07746184e-01 3.99390096e-03 1.37362525e-01\\n4.34966385e-01 2.36092687e-01 -2.04690211e-02 3.99171142e-03\\n3.68867093e-03 6.31656706e-01 -1.33606359e-01 -7.18556941e-02\\n7.91895539e-02 1.94614589e-01 1.23932563e-01 -1.86552376e-01\\n1.88707076e-02 3.37208122e-01 -1.74811974e-01 2.81678289e-02\\n-3.52268144e-02 -1.93276927e-01 3.54825288e-01 1.42324686e-01\\n-3.76785338e-01 -1.49863258e-01 -4.03830856e-02 1.29352152e-01\\n-5.58953047e-01 -1.92380756e-01 6.17369831e-01 1.80110350e-01\\n1.66266620e-01 1.34725064e-01 2.16193751e-01 -4.14935276e-02\\n-1.70880750e-01 -2.46176451e-01 1.72394395e-01 9.20567513e-02\\n1.29354030e-01 1.71144351e-01 -7.78340474e-02 -7.20774829e-01\\n-3.02696419e+00 -1.69447660e-01 1.64873064e-01 -2.11554483e-01\\n-1.61197223e-03 -1.83458030e-01 4.44901250e-02 -1.10294193e-01\\n-3.23799729e-01 5.16319685e-02 -6.99989498e-02 -1.51402518e-01\\n2.33764619e-01 1.97024450e-01 4.59666066e-02 3.15534860e-01\\n1.85523376e-01 -1.60471156e-01 -1.25477344e-01 2.40527421e-01\\n-2.77908683e-01 -5.25492549e-01 2.93127030e-01 -7.69200027e-02\\n3.93592626e-01 1.10759802e-01 -3.07077080e-01 -2.26663485e-01\\n-2.79753417e-01 -1.39607966e-01 2.97660362e-02 -2.51405686e-01\\n-1.09302349e-01 1.80793703e-01 1.78204492e-01 -1.37538731e-01\\n2.59157240e-01 -4.86818045e-01 -3.26527536e-01 -4.66840833e-01\\n8.80545601e-02 -6.75537109e-01 2.21512839e-02 -1.72708139e-01\\n7.93677747e-01 -4.94511038e-01 1.74503118e-01 7.58543760e-02\\n2.46737212e-01 7.37583861e-02 1.04516990e-01 -9.84922238e-03\\n-1.76882342e-01 -2.22224280e-01 -1.65907398e-01 -1.24548778e-01\\n5.32761872e-01 5.98090053e-01 -1.05982184e-01 -5.15023172e-02\\n3.98262925e-02 -2.32019320e-01 -4.56047893e-01 -3.11501563e-01\\n-1.23848878e-01 -3.12325180e-01 -6.19879246e-01 -4.80381727e-01\\n-2.37374187e-01 -2.99166180e-02 -2.52804726e-01 7.38435268e-01\\n-2.61857003e-01 -3.40022802e-01 -2.18061991e-02 -5.30470192e-01\\n1.82726920e-01 -1.58571959e-01 4.85256314e-02 -1.53433368e-01\\n-3.88786972e-01 -4.27916050e-01 -1.78475548e-02 -6.47812113e-02\\n-1.85336962e-01 -3.86098593e-01 6.90961108e-02 -1.22954682e-01\\n-2.22198427e-01 -4.14396673e-01 4.20592993e-01 1.13168724e-01\\n2.30245173e-01 1.16653182e-01 3.04527223e-01 1.01878628e-01\\n2.95006633e-01 -1.64352849e-01 -4.38155793e-02 -2.86876976e-01\\n2.44866550e-01 1.16625212e-01 5.95448017e-01 -2.78884768e-01\\n4.80130874e-02 6.87559545e-02 -2.44557679e-01 -2.33721696e-02\\n3.35198134e-01 2.76131053e-02 -1.03772663e-01 -2.13947028e-01\\n2.68056065e-01 -2.69518793e-01 -2.41763443e-01 -1.17048975e-02\\n2.79169172e-01 5.85196376e-01 -6.94288090e-02 -4.91421729e-01\\n-1.98517337e-01 4.67280716e-01 -7.77068734e-02 -2.47461155e-01\\n-1.93125218e-01 1.23044305e-01 -2.74590850e-01 1.27820253e-01\\n5.46145029e-02 -1.30986243e-01 -4.22641724e-01 -2.16225550e-01\\n-4.15990828e-03 3.54080647e-01 2.53307343e-01 1.47672594e-01\\n9.53674968e-03 -5.08051634e-01 -9.97868106e-02 2.11298048e-01\\n1.02997646e-01 3.36050928e-01 1.33977756e-01 -1.54583320e-01\\n5.15170656e-02 3.32957923e-01 -1.75241008e-01 1.43952206e-01\\n-3.40252429e-01 1.20022282e-01 -5.15146017e-01 -3.25636208e-01\\n-2.17854962e-01 -3.94147724e-01 1.63017347e-01 2.23630354e-01\\n1.21833198e-01 1.38728432e-02 6.95391074e-02 -4.55082774e-01\\n3.00341964e-01 -3.16870399e-02 1.86063543e-01 1.80934131e-01\\n4.78222556e-02 4.69653845e-01 1.12590663e-01 -1.72039807e-01\\n-1.60782307e-01 -4.56978418e-02 -1.62538409e-01 -1.16983600e-01\\n-7.65185207e-02 -4.47909921e-01 -1.96309328e-01 5.07844746e-01\\n5.47904000e-02 -2.56419778e-01 -5.11841141e-02 3.41776311e-01\\n-6.51571676e-02 -1.71711653e-01 -8.86672661e-02 -3.84895131e-02\\n2.92488426e-01 3.59644480e-02 2.86019772e-01 -4.21014547e-01\\n7.02790692e-02 6.54388219e-02 -8.98997560e-02 6.42010212e-01\\n-2.50126608e-02 7.58225052e-03 -1.59198403e-01 -2.16151804e-01\\n5.30328333e-01 -1.18230805e-01 -1.57720353e-02 3.83238941e-02\\n4.56224941e-02 -1.38759941e-01 -5.34839809e-01 1.18696570e-01\\n7.06395134e-02 -1.22500226e-01 3.48810703e-02 1.38549313e-01\\n1.86418787e-01 1.02284044e-01 -5.34944713e-01 -3.15698534e-01\\n-2.81562775e-01 -4.09017466e-02 2.22971514e-02 -4.47195977e-01\\n-8.83192290e-03 -1.84076563e-01 -4.92877126e-01 2.96114266e-01\\n-2.23012596e-01 -6.69644549e-02 1.77550778e-01 -1.52256126e-02\\n-2.52854258e-01 -6.93797395e-02 1.62339911e-01 2.81103849e-01\\n-2.40171671e-01 -3.66645962e-01 1.68111414e-01 -8.54814291e-01\\n1.81317464e-01 6.14535697e-02 -1.83936939e-01 1.73092872e-01\\n-9.64080393e-02 -7.69380033e-01 1.19291037e-01 -3.40814888e-01\\n-1.90931763e-02 -4.40369621e-02 -1.90907493e-01 -5.51337242e-01\\n1.21280506e-01 -1.74905825e-02 -2.94490904e-01 3.46234411e-01\\n-2.82669514e-01 3.43858838e-01 -3.77558395e-02 1.15316696e-01\\n1.50045782e-01 -3.20816875e-01 7.28359371e-02 -5.25180936e-01\\n-4.36110467e-01 -1.72565967e-01 -3.54540348e-01 -3.14469576e-01\\n-1.87959187e-02 -1.48561597e-01 -1.50251994e-02 1.18796960e-01\\n3.57951671e-01 1.46575332e-01 -6.07330985e-02 -3.01587433e-01\\n-9.17130802e-03 -5.48538089e-01 1.19791981e-02 -6.01466298e-02\\n-3.27033810e-02 -1.08909249e-01 1.23886704e-01 1.24658689e-01\\n-2.53379662e-02 -4.16364372e-01 4.12447333e-01 -4.29993182e-01\\n-2.72186756e-01 -1.09541789e-01 -6.33095484e-03 -2.47128177e-02\\n3.12206268e-01 -3.61054778e-01 1.02273608e-02 3.67910296e-01\\n1.68739051e-01 1.72914833e-01 2.24339306e-01 -2.46951785e-02\\n1.51762720e-02 3.16061378e-01 -2.83781290e-01 9.12732109e-02\\n7.32344687e-01 -6.43279478e-02 1.25934094e-01 1.49296865e-01\\n8.04644823e-02 2.23277465e-01 5.20833075e-01 2.39329860e-02\\n-1.70112059e-01 2.47473210e-01 1.05645001e-01 -5.92863321e-01\\n-4.95322533e-02 2.27696411e-02 -2.68524468e-01 -4.98389393e-01\\n5.77039182e-01 4.72070992e-01 -3.78883392e-01 -2.15172797e-01\\n-2.35220402e-01 -1.88715443e-01 2.09268425e-02 -5.15931584e-02\\n1.06485188e-01 -9.55188647e-02 4.95313108e-01 -8.12276825e-02\\n2.23100528e-01 5.06278872e-01 -1.78636491e-01 -3.66078079e-01\\n-1.09578617e-01 1.57138929e-01 7.24354982e-02 3.87416899e-01\\n-2.70480365e-01 3.56068730e-01 -2.57838480e-02 1.12834960e-01\\n-1.69545963e-01 1.81436419e-01 1.28029156e-02 -4.25392129e-02\\n1.24429092e-01 4.67251576e-02 3.76551211e-01 4.23538595e-01\\n4.15591359e-01 4.23245519e-01 1.69085264e-01 -6.29788861e-02\\n6.06733799e-01 6.10048175e-01 4.34010714e-01 2.57893533e-01\\n-1.05141290e-01 4.41681668e-02 5.62633481e-03 1.42182233e-02\\n3.03674459e-01 3.16523194e-01 -8.69757403e-03 8.80585134e-01\\n3.50955695e-01 2.16461644e-01 5.12291551e-01 -6.01212859e-01\\n-3.22058737e-01 5.06694280e-02 5.27052045e-01 -3.23927611e-01\\n-1.81411549e-01 8.42813700e-02 -1.81037962e-01 1.01448156e-01\\n-4.14314598e-01 -2.44046807e-01 -3.42161283e-02 1.73092961e-01\\n7.17791840e-02 -1.95260778e-01 -2.24474832e-01 9.94745046e-02\\n-2.33754501e-01 -1.25018612e-01 -5.29336095e-01 1.27337381e-01\\n-1.90800324e-01 -1.90402061e-01 -8.49710405e-02 -1.14995398e-01\\n-1.18122794e-01 -4.26183611e-01 -1.06715366e-01 -1.22525126e-01\\n2.84286171e-01 -1.94852024e-01 -4.19794582e-02 -2.32974783e-01\\n1.49049222e-01 2.84637243e-01 5.23172855e-01 9.19648409e-02\\n8.47783983e-02 -3.57522756e-01 -2.50506252e-01 1.48564354e-01\\n1.81228220e-01 1.70128286e-01 2.60742810e-02 3.01527172e-01\\n-2.16837287e-01 5.73847666e-02 9.37110335e-02 3.80991787e-01\\n-4.79477644e-01 6.14154488e-02 -2.06676453e-01 1.43909633e-01\\n2.57612020e-01 2.01875240e-01 -2.61800170e-01 8.53309333e-02\\n-1.99946001e-01 -4.23904121e-01 3.04566056e-01 -8.63096565e-02\\n-3.57200243e-02 4.99662943e-02 1.28981411e-01 1.13556460e-01\\n-2.84328401e-01 -6.86825886e-02 -8.50870386e-02 2.41473511e-01\\n2.12153226e-01 3.13087791e-01 -3.16514820e-01 -2.86024600e-01\\n-1.86461270e-01 1.87176913e-01 -1.66381896e-01 6.69556856e-02\\n1.70782227e-02 3.39607239e-01 3.10208127e-02 7.02763125e-02\\n4.41980451e-01 4.97865044e-02 -2.11667866e-01 -1.50598556e-01\\n-2.66024113e-01 -3.77244651e-01 4.27110732e-04 -5.80797344e-02\\n1.13955222e-01 -4.43898141e-01 -3.84360855e-03 -9.13604945e-02\\n-2.07513228e-01 -3.37287456e-01 3.88290937e-04 -1.68185696e-01]]',\n", + " 'job_description': 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 20 million users worldwide work with documents. Our team enjoys open-source, adopting the latest technologies and solving tricky frontend challenges to create outstanding user interfaces. As a Frontend Engineer at Smallpdf, you will work closely with the team to improve and extend our product. What you will do: Team up with our designers and developers to create great user experiences and reliable interfaces Work closely with our team to tie the front-end to our back-end infrastructure Implement new features and improve existing ones We use the latest technologies, including: ES6 Webpack React Redux Redux-Saga Check our stack via https://stackshare.io/smallpdf/frontend Requirements 3+ years of experience in developing web-based user interfaces Outstanding skills in Javascript (including some knowledge in Node.js) An obsession for interactions, animations, and visual details CSS, TDD, Git and Linux experience Experience with React is a plus Can excel independently and have a sense of ownership for your own work Fluent English Based in Zurich or willing to relocate Swiss or EU passport holder (or other permits that allow you to work in Switzerland) Benefits The chance to personally impact a successful & rapidly growing startup Opportunity to solve tricky frontend challenges using modern technologies Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich If you like the job apply here please: https://apply.workable.com/smallpdf/j/62E4A9510C/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Visualization\", \"Component Object Model (COM)\", \"Node.js\", \"Linux\", \"Web Development\", \"React.js\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"React Redux\", \"Webpack\", \"Animations\", \"Personalization\", \"JavaScript (Programming Language)\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Language Experience Approach\", \"Git Flow\", \"User Experience\", \"User Interface\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Yiddish', 'Volapük']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'it project manager for data analysis 100% (m/f/d)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': 'www.haysplc.com',\n", + " 'jobdescription_embedded': '[[-1.42762199e-01 3.82178932e-01 5.31461596e-01 -3.62440869e-02\\n4.76268142e-01 -1.55882537e-02 4.52619120e-02 4.96076703e-01\\n-1.80580154e-01 -5.86280584e-01 6.92058429e-02 -1.25717968e-01\\n2.01034367e-01 2.14188039e-01 1.74855039e-01 4.77071762e-01\\n2.48044357e-01 3.92324999e-02 -1.89950764e-01 2.97135144e-01\\n1.71825901e-01 -2.04139099e-01 1.63787797e-01 6.77214444e-01\\n5.05341947e-01 1.89277008e-02 -7.54329190e-02 -5.03591746e-02\\n-1.26381636e-01 -2.85719275e-01 4.96361881e-01 -5.82685471e-02\\n-6.29100651e-02 -1.05489992e-01 -2.04720702e-02 -5.51342107e-02\\n-3.08564395e-01 -1.78622484e-01 -1.61988884e-01 4.53207046e-02\\n-4.06613231e-01 -1.04752399e-01 -4.43688445e-02 6.31870031e-02\\n-3.46925795e-01 -3.95593405e-01 1.72229670e-02 -2.51253545e-01\\n1.25248656e-01 2.91282460e-02 -3.34296703e-01 2.05402434e-01\\n-2.42610455e-01 -2.48873815e-01 2.86819190e-01 8.13174784e-01\\n-7.23315403e-02 -3.96262497e-01 -5.68849683e-01 -2.90843189e-01\\n2.11151332e-01 -1.28183410e-01 1.07144147e-01 -2.49575347e-01\\n2.89541185e-01 5.84759638e-02 1.71710193e-01 2.17974380e-01\\n-7.23863006e-01 -1.63646862e-02 -3.16391736e-01 5.35117537e-02\\n-2.32080728e-01 -1.20066516e-02 -4.07299459e-01 -1.92244455e-01\\n-9.92342532e-02 4.35009331e-01 1.74652729e-02 -4.27076332e-02\\n-1.04218513e-01 2.30497777e-01 -3.20674628e-01 2.32451499e-01\\n1.71402931e-01 2.34551251e-01 2.39991024e-01 2.57664919e-01\\n-2.54992008e-01 5.63754499e-01 1.95265785e-01 -2.50174403e-01\\n1.90990999e-01 1.90235153e-01 4.39762205e-01 -4.61510494e-02\\n2.84964710e-01 -1.47742797e-02 -2.80640930e-01 2.92708248e-01\\n3.49348575e-01 -2.78140642e-02 1.79687608e-02 -1.29786864e-01\\n-6.76942766e-02 -5.26158698e-03 3.23501602e-02 2.26646632e-01\\n-3.66046041e-01 4.14407045e-01 4.29525189e-02 -2.17096627e-01\\n-2.36975968e-01 -4.34662551e-01 -7.23540932e-02 -6.14977404e-02\\n1.21721826e-01 2.92340994e-01 1.79777950e-01 2.49137461e-01\\n8.00910816e-02 -1.18670799e-02 1.71299353e-01 7.42641687e-01\\n3.34598236e-02 2.95037422e-02 -2.78626800e-01 2.09410354e-01\\n-5.18807359e-02 -2.55042911e-01 1.52315140e-01 9.72997099e-02\\n-4.68825176e-02 -1.50625974e-01 -2.73066103e-01 1.94782913e-01\\n-3.51920277e-02 -2.76694298e-01 -2.48372242e-01 2.37198114e-01\\n-9.53435600e-02 -4.99582708e-01 5.08736312e-01 -5.11191636e-02\\n1.23873554e-01 -6.72992095e-02 -1.20180547e-02 -7.72468150e-02\\n-6.38474077e-02 1.67167231e-01 9.01643708e-02 -8.34050849e-02\\n-1.97030902e-01 -1.86748743e-01 -2.13719070e-01 5.08006960e-02\\n-3.26530367e-01 1.66457251e-01 -7.26467073e-02 -4.07864004e-02\\n2.91773826e-01 1.44877704e-03 -2.40295142e-01 2.21060440e-01\\n-4.97631766e-02 3.02033350e-02 -6.20265454e-02 3.46062213e-01\\n-1.73267275e-01 1.86765790e-01 -3.52218822e-02 -2.70350184e-02\\n6.12263858e-01 -1.55663593e-02 1.48441002e-01 -8.14929008e-02\\n2.45409861e-01 6.56160563e-02 1.41495913e-01 1.18440099e-01\\n-4.95236456e-01 2.52339393e-01 -7.41179287e-02 -1.29047647e-01\\n-3.94900963e-02 -1.50118932e-01 1.61703795e-01 -2.64578372e-01\\n7.67890513e-02 -3.10303364e-02 -3.65496606e-01 -3.37876558e-01\\n-1.48427993e-01 -6.73411041e-02 4.06901717e-01 -4.62004304e-01\\n8.63309130e-02 1.75807893e-01 -4.94219035e-01 1.85155254e-02\\n2.72707969e-01 1.21834666e-01 1.13579974e-01 2.11826921e-01\\n-2.35917628e-01 -4.94018912e-01 2.14274898e-01 -3.14365327e-01\\n-1.55801356e-01 2.05916598e-01 -2.63814181e-01 2.30782881e-01\\n1.38679877e-01 8.58920813e-02 -1.05299920e-01 1.12278685e-01\\n-2.12615952e-01 3.42010632e-02 1.00749798e-01 9.12397131e-02\\n3.27325940e-01 1.45972773e-01 -3.81104141e-01 4.47299331e-01\\n-1.61842182e-01 3.97183776e-01 -5.76725788e-03 -9.11315680e-01\\n3.37926626e-01 3.29104960e-01 1.04936495e-01 -3.64338905e-01\\n7.35157192e-01 -2.13433504e-01 2.98946276e-02 7.41347969e-02\\n-4.91587996e-01 -3.51039618e-01 2.44299620e-01 -2.98781663e-01\\n-3.41334492e-01 4.67304915e-01 -3.38459574e-02 2.08070114e-01\\n1.67503864e-01 -1.62721246e-01 -2.26627409e-01 7.12058991e-02\\n-7.23608807e-02 -6.91644549e-02 -4.39821064e-01 1.11865380e-03\\n-5.62147163e-02 -4.17374492e-01 -1.38335928e-01 -5.85721552e-01\\n-2.21360922e-01 -2.70504117e-01 -1.32939801e-01 -1.68437585e-02\\n2.25247458e-01 1.54728279e-01 5.16420528e-02 4.17423397e-02\\n-1.02669805e-01 -6.68118000e-01 -4.18679230e-03 8.40030536e-02\\n2.67931819e-01 1.33709356e-01 1.68451190e-01 -3.54999341e-02\\n2.04878720e-03 6.09403849e-01 -2.14789942e-01 -1.31207570e-01\\n1.67043120e-01 1.04340024e-01 3.41285206e-02 -1.70610383e-01\\n1.48161292e-01 2.24754170e-01 -2.45582655e-01 -2.26556007e-02\\n-6.15711212e-02 -1.09545745e-01 2.67801642e-01 1.20324761e-01\\n-3.35512966e-01 -2.65079081e-01 -1.80318773e-01 1.49877876e-01\\n-5.91468573e-01 -2.76162893e-01 7.46124566e-01 1.32024540e-02\\n1.21872082e-01 2.84312725e-01 1.43644571e-01 -9.23207030e-02\\n-2.13382438e-01 -1.30318433e-01 2.31954634e-01 1.13745004e-01\\n1.68694332e-02 2.21959725e-01 -8.24100599e-02 -6.62443876e-01\\n-3.73264027e+00 -4.45869043e-02 1.28330499e-01 -3.13241124e-01\\n3.82144511e-01 -1.54570237e-01 2.74532944e-01 -7.80470371e-02\\n-2.53411502e-01 -1.12959236e-01 -2.18952149e-01 -8.13264996e-02\\n1.74650252e-01 2.48450220e-01 1.21660242e-02 2.82379001e-01\\n2.13277861e-01 -3.11558694e-01 -8.45117271e-02 4.80396807e-01\\n-1.11018933e-01 -5.95700443e-01 1.49473622e-01 8.39669257e-02\\n2.11673483e-01 3.03569555e-01 -3.81250918e-01 -1.17359042e-01\\n-2.27456406e-01 -2.08696067e-01 1.90122902e-01 -3.90161097e-01\\n-2.15753257e-01 1.88764036e-01 2.33664826e-01 -1.10861391e-01\\n7.81201422e-02 -3.53186250e-01 -2.62997039e-02 -4.64275718e-01\\n6.97303712e-02 -8.13028097e-01 -1.22930132e-01 -1.74381156e-02\\n7.77728319e-01 -2.11499423e-01 1.50429279e-01 1.80430841e-02\\n1.08692646e-01 6.44755289e-02 8.17589089e-02 4.90186363e-02\\n-7.06683099e-02 -2.99287677e-01 -5.51117621e-02 6.90312032e-03\\n5.73603332e-01 6.07679904e-01 -1.80654466e-01 -1.67851552e-01\\n6.08213991e-02 -2.19886750e-01 -4.96837556e-01 -2.13977158e-01\\n-2.80072868e-01 -1.01580821e-01 -6.67531729e-01 -4.02023643e-01\\n-1.19237170e-01 -2.45334864e-01 -1.05671458e-01 4.86753345e-01\\n-1.77246436e-01 -2.98425674e-01 -1.20601028e-01 -4.66042399e-01\\n2.11582497e-01 -1.98570895e-03 4.74351719e-02 -2.47230455e-01\\n-2.02707574e-01 -3.56355011e-01 4.42914516e-02 5.62475771e-02\\n-1.43359244e-01 -1.38138965e-01 1.69104844e-01 -1.03637815e-01\\n-4.45693374e-01 -5.09123981e-01 3.15624416e-01 4.20204513e-02\\n3.51431757e-01 1.73732668e-01 1.68623254e-01 -1.42882264e-03\\n2.87038207e-01 -1.01626486e-01 -9.28158462e-02 -3.83064389e-01\\n1.36001796e-01 9.53616500e-02 4.71893042e-01 -1.90587014e-01\\n4.54995222e-02 3.12674716e-02 -1.31608590e-01 -1.24004416e-01\\n3.35070878e-01 -1.97031468e-01 2.17983827e-01 -3.48130852e-01\\n2.60167629e-01 -2.85477281e-01 -1.29040778e-01 -5.04845232e-02\\n-3.42379063e-02 5.27259231e-01 -8.42799097e-02 -3.07554841e-01\\n-6.45002276e-02 4.02753145e-01 -1.97226450e-01 -7.05909729e-03\\n-3.23484033e-01 6.12767972e-03 -1.69769615e-01 2.63618320e-01\\n-1.31425202e-01 -1.79543287e-01 -2.10144475e-01 -2.07878739e-01\\n-2.07403824e-01 3.39414418e-01 2.83727318e-01 1.49394572e-01\\n6.56599030e-02 -5.44966161e-01 -1.01433843e-01 2.21779898e-01\\n1.57610044e-01 3.47161680e-01 9.79378372e-02 -2.84091055e-01\\n6.06525689e-02 2.16053024e-01 -2.86566675e-01 2.05967292e-01\\n-3.41088951e-01 1.73459202e-01 -4.04322565e-01 -3.36254716e-01\\n-1.96085468e-01 -3.25369090e-01 1.48630023e-01 4.29466665e-01\\n1.94486141e-01 -6.07222728e-02 -2.14623176e-02 -3.88256520e-01\\n2.65665621e-01 2.75999382e-02 1.57827139e-01 2.27931768e-01\\n-1.31019488e-01 6.07688189e-01 -8.24998319e-02 -8.22478384e-02\\n-3.87693718e-02 1.25518695e-01 -2.33393878e-01 -1.02942705e-01\\n9.83368680e-02 -5.59669495e-01 -3.24263908e-02 3.91867548e-01\\n1.48641199e-01 -1.72744319e-02 -1.37203366e-01 1.79129094e-01\\n1.61455888e-02 -4.11459655e-01 -2.08630607e-01 3.97923067e-02\\n2.77576119e-01 9.60367993e-02 3.04660171e-01 -3.69100511e-01\\n8.22699070e-02 -2.41801087e-02 -1.66786313e-01 3.89531046e-01\\n4.88529354e-02 6.61277100e-02 -5.26898243e-02 -1.50384963e-01\\n5.04236102e-01 -1.94941491e-01 -1.20208068e-02 1.48068732e-02\\n1.98255092e-01 -2.44214699e-01 -3.52942795e-01 -9.08680726e-03\\n-9.61957648e-02 -1.14466906e-01 -4.59324792e-02 5.79733178e-02\\n-8.12073871e-02 9.47572663e-02 -5.01005173e-01 -3.05201024e-01\\n-3.43091398e-01 7.91298300e-02 -5.65182511e-03 -5.85893333e-01\\n-1.37358025e-01 -1.66979000e-01 -5.85451782e-01 3.67414862e-01\\n-1.66697300e-03 -7.08617568e-02 2.89222956e-01 7.97127485e-02\\n-3.23718816e-01 -1.38950601e-01 1.88088238e-01 2.13463724e-01\\n-1.42456204e-01 -1.95733041e-01 -1.26602843e-01 -9.91138875e-01\\n2.02569544e-01 -1.34695566e-03 -1.53401837e-01 1.61369100e-01\\n-1.38098180e-01 -6.20649636e-01 2.77790546e-01 -2.46465653e-01\\n-2.71076649e-01 1.97666641e-02 -1.89390108e-01 -4.17159826e-01\\n-2.92259455e-03 5.96940331e-02 -1.84184298e-01 4.07260031e-01\\n-2.10051313e-01 3.90962720e-01 5.93291931e-02 3.61988693e-02\\n3.41858417e-02 -2.79689282e-01 9.83187631e-02 -4.48527217e-01\\n-3.31744790e-01 -1.26138151e-01 -3.54475677e-01 -2.18132660e-01\\n-7.90687874e-02 -3.20878625e-01 -2.00553790e-01 1.69252217e-01\\n2.26148054e-01 1.46614626e-01 -1.38972417e-01 -1.05833210e-01\\n8.05935636e-02 -5.08877337e-01 1.42927200e-01 -1.12525582e-01\\n1.65147875e-02 -2.32077703e-01 2.92540640e-01 1.14949383e-01\\n8.99275541e-02 -3.86568457e-01 4.79783475e-01 -3.84183288e-01\\n-3.41412783e-01 -4.71158810e-02 8.43303725e-02 -3.41217071e-02\\n4.26428318e-01 -3.62479866e-01 -2.07839176e-01 3.10873985e-01\\n-3.23354006e-02 -2.39629429e-02 3.85108173e-01 -1.19946018e-01\\n-1.80313647e-01 3.29474896e-01 -4.10299659e-01 2.56837100e-01\\n7.84245253e-01 1.70243680e-01 2.08498791e-01 2.28375137e-01\\n1.36540592e-01 2.91669220e-01 4.08860594e-01 3.06395926e-02\\n-1.69243172e-01 3.27864349e-01 2.80702915e-02 -5.99891841e-01\\n-8.30554310e-03 -7.90103301e-02 -1.71838760e-01 -3.55935872e-01\\n7.06707716e-01 3.14257890e-01 -2.40550205e-01 -3.47438902e-01\\n-2.71941066e-01 -2.36177027e-01 2.46631801e-01 -4.27523106e-02\\n-2.43397690e-02 -1.19232446e-01 5.34654558e-01 1.17379904e-01\\n3.18896562e-01 4.20081884e-01 -2.02104434e-01 -3.64937514e-01\\n1.13880597e-01 2.31034651e-01 -6.61819801e-02 4.21844780e-01\\n-1.78126276e-01 3.37893248e-01 -2.38085613e-02 1.28706113e-01\\n-1.68633044e-01 -2.35072803e-02 9.96146351e-02 2.10375369e-01\\n2.22868263e-03 1.98959768e-01 5.16387224e-01 4.27601308e-01\\n2.69517720e-01 4.23930913e-01 3.06467175e-01 1.36676237e-01\\n3.77505004e-01 3.72809768e-01 2.24967852e-01 6.99753091e-02\\n1.30408213e-01 -1.00891456e-01 1.08076081e-01 5.69026396e-02\\n2.64709085e-01 3.88809323e-01 -7.68140703e-02 7.00719476e-01\\n1.55470952e-01 2.55753160e-01 5.98388553e-01 -5.98676622e-01\\n-2.72169054e-01 -4.18960713e-02 4.89079595e-01 -4.01656002e-01\\n8.78083184e-02 1.10183030e-01 -1.67242184e-01 3.16778347e-02\\n-4.19257522e-01 -3.66372019e-01 -1.08277105e-01 8.81435201e-02\\n1.57220196e-02 -2.36145765e-01 -2.90518496e-02 1.24057308e-01\\n-6.57008812e-02 -1.15280323e-01 -3.46666753e-01 -6.62467778e-02\\n-2.10102409e-01 -9.86673906e-02 -4.32031192e-02 -3.25116813e-02\\n-6.91913590e-02 -3.34635943e-01 8.30698479e-03 8.03397968e-02\\n3.17705452e-01 6.61498308e-02 -8.53193253e-02 5.04240952e-02\\n3.62804264e-01 1.14420466e-01 6.91604674e-01 2.82405820e-02\\n-3.56557444e-02 -1.32156000e-01 -1.21940851e-01 2.22929552e-01\\n2.57162154e-01 2.17051674e-02 2.23348197e-02 3.54392529e-01\\n-3.06210577e-01 -2.53453881e-01 -2.73514912e-02 2.88210928e-01\\n-4.07845616e-01 7.61455623e-03 -4.36685495e-02 1.43725216e-01\\n1.32651687e-01 2.80517012e-01 -2.38600656e-01 1.49957286e-02\\n-1.19244270e-01 -4.03870225e-01 1.37548387e-01 -3.14532816e-02\\n-1.32693276e-01 -3.13109998e-03 1.00045726e-01 1.56172797e-01\\n-1.20299034e-01 5.90221621e-02 -7.87567198e-02 1.04919992e-01\\n4.30530049e-02 2.22154021e-01 -1.89361230e-01 -2.52076864e-01\\n-2.77807385e-01 2.14880228e-01 8.95178970e-03 2.64211297e-01\\n3.19242887e-02 2.17582688e-01 6.50641546e-02 -6.10280375e-04\\n5.14386535e-01 2.17757020e-02 -9.06479135e-02 -2.05146551e-01\\n-2.43824214e-01 -1.90440238e-01 -7.21954778e-02 -1.63595617e-01\\n1.88485876e-01 -3.00821513e-01 -1.19375467e-01 -3.02821636e-01\\n-1.60028085e-01 -3.35127056e-01 5.24665900e-02 -4.36067656e-02]]',\n", + " 'job_description': 'My duties Independently drive enrichment and harmonization of available data on resources through a combination of available system data and interviews with key stakeholders Create estimation of current and future resources volume and cost structures for all ongoing key IT projects Review and suggest improvements to current external hiring process to ensure proper information flow Create executive-level presentation on final findings My qualifications Rigorous analytical and conceptual thinking with an entrepreneurial mindset and advanced knowledge of MS-Office, particularly Excel Academic degree in Business Administration, Engineering, Science, or equivalent education (UNI/FH) Consulting or project management background Able to adapt quickly to new topics and stakeholders Able to interact professionally and independently with various internal stakeholders on different hierarchy levels Strong written and verbal communication skills in English and German My benefits Interesting project in an international company About Hays IT specialists hold all the cards: for its customers in industry and the public sector, Hays is looking for motivated employees who like looking at the bigger picture and growing with new challenges. We make sure that you benefit from our many years of experience in IT recruitment and will find you the right role to suit your skills and interests – all completely free of charge to you. Register with us and reap the benefits of job offers that are both interesting and relevant to your skills and experience. My contact at Hays My contact person Nicoletta Marciello Reference number 447367/1 Contact E-Mail: nicoletta.marciello@hays.ch',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Adaptability\", \"Professionalism\", \"Business Administration\", \"Presentations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Data Processing Systems\", \"Estimators\", \"Conceptualization\", \"Employee Motivation\", \"Resourcing\", \"Project Management\", \"Personalization\", \"Interactivity\", \"E (Programming Language)\", \"Levelling\", \"Analytics\", \"Cost Structures\", \"Industrialization\", \"Finalization\"]',\n", + " 'languages': \"['English', 'Icelandic']\"},\n", + " {'company_id': '109',\n", + " 'job_title': 'data scientist (analytics)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.starmind.ai',\n", + " 'jobdescription_embedded': '[[-2.10179746e-01 1.94211572e-01 4.47810352e-01 7.11169317e-02\\n4.75101680e-01 -1.05349049e-01 1.71992742e-02 3.98088157e-01\\n-2.30169017e-02 -5.11718750e-01 7.56235421e-02 -2.83988595e-01\\n-1.85230911e-01 1.26160175e-01 2.60654427e-02 3.76901388e-01\\n2.39219233e-01 1.66433752e-01 -1.64665177e-01 4.03719902e-01\\n6.82031959e-02 -1.23662595e-02 4.69312072e-04 7.99202323e-01\\n4.52678859e-01 -5.14311492e-02 -5.81164770e-02 4.51204516e-02\\n-1.91704780e-01 -2.37781882e-01 4.67107028e-01 1.29429162e-01\\n-1.99123085e-01 -4.70910579e-01 -3.30480784e-02 5.50191179e-02\\n-2.50130266e-01 -8.57802406e-02 -5.99808469e-02 1.74275488e-01\\n-5.78484654e-01 -1.90715224e-01 -1.04086816e-01 8.43295828e-02\\n-2.80406743e-01 -3.33820581e-01 6.04574196e-02 2.06429362e-02\\n2.40011171e-01 7.22111315e-02 -5.37037671e-01 3.08836520e-01\\n-2.53518373e-01 -2.28790194e-01 2.30259091e-01 6.09373450e-01\\n6.41611144e-02 -3.96829188e-01 -5.92023313e-01 -2.99331665e-01\\n1.26928598e-01 -2.16440961e-01 5.64881526e-02 -4.84487444e-01\\n3.02383959e-01 4.54939082e-02 1.68502033e-01 2.86692649e-01\\n-7.07299292e-01 -1.54409632e-02 -2.36068189e-01 -8.47047567e-02\\n-4.60173845e-01 -4.59526964e-02 -3.45182002e-01 -2.48257481e-02\\n-1.54969990e-01 4.45691019e-01 7.67012537e-02 9.96287912e-03\\n-1.86111555e-01 3.12287122e-01 -3.07298243e-01 4.16275740e-01\\n1.97299033e-01 2.38001123e-01 1.79564059e-01 3.68592858e-01\\n-4.59829003e-01 4.30814475e-01 8.08612332e-02 -3.01364750e-01\\n3.06849778e-01 2.17004538e-01 4.63233650e-01 -2.33492181e-02\\n2.48216003e-01 6.17225543e-02 -3.62661004e-01 4.80409831e-01\\n3.23345959e-01 -4.47050422e-01 7.52894059e-02 -2.52340853e-01\\n1.33517101e-01 -4.06849869e-02 1.21368274e-01 1.29612103e-01\\n-2.82538176e-01 4.16292667e-01 2.06427872e-01 -1.66058794e-01\\n-1.18123874e-01 -3.88204098e-01 -2.27980241e-02 -9.65153519e-03\\n1.14265755e-01 9.73291248e-02 1.85215503e-01 7.00136125e-02\\n2.59798765e-01 1.67647064e-01 1.60188615e-01 8.25629354e-01\\n-9.63142812e-02 2.89463867e-02 -2.09348053e-01 2.80466080e-01\\n1.89862311e-01 -3.49973232e-01 3.00333560e-01 2.63654202e-01\\n5.76562509e-02 -1.60088286e-01 -2.74979770e-01 3.48088205e-01\\n-1.37138873e-01 -1.65909871e-01 -3.56268048e-01 2.07551032e-01\\n2.50931025e-01 -3.54777217e-01 7.02439666e-01 1.09080330e-01\\n2.14200258e-01 -1.49468314e-02 5.35254218e-02 -2.13143051e-01\\n-1.21867314e-01 1.56842902e-01 5.52795045e-02 1.73762649e-01\\n-2.93830097e-01 -1.87693939e-01 -1.30972311e-01 5.32020442e-02\\n-5.78639627e-01 1.16341837e-01 -1.43634155e-04 -1.13525558e-02\\n1.67789310e-01 -5.14701083e-02 -3.08998555e-01 7.22464696e-02\\n-1.95161492e-01 -1.12387687e-01 1.67239934e-01 4.42371845e-01\\n-1.58010542e-01 2.87146419e-01 2.40565613e-02 -8.20622593e-02\\n7.88658977e-01 2.06482381e-01 2.10094750e-01 4.71047871e-03\\n3.19060683e-01 9.82624292e-03 1.50462583e-01 2.64285922e-01\\n-7.66696811e-01 2.24359229e-01 -9.21086743e-02 -2.98248351e-01\\n1.69284493e-01 -5.46119586e-02 3.13757896e-01 -2.64960140e-01\\n1.08908117e-01 -1.23104624e-01 -3.11451107e-01 -2.40551606e-01\\n-3.41877222e-01 -1.28749665e-02 3.58161598e-01 -4.83628213e-01\\n-1.18165538e-01 1.74724907e-01 -4.99271095e-01 -1.72453731e-01\\n1.00684166e-01 7.62574077e-02 1.35376096e-01 1.17276490e-01\\n-1.45077333e-01 -6.31760240e-01 -2.76954491e-02 -3.99203956e-01\\n-4.77119029e-01 6.05513379e-02 -4.18557227e-01 3.05402398e-01\\n7.10128322e-02 -1.20502442e-01 -1.78107440e-01 2.30716959e-01\\n-2.54188061e-01 8.04420337e-02 1.49276182e-02 4.55989689e-02\\n1.75669566e-01 7.05859736e-02 -3.80026639e-01 3.31154436e-01\\n-8.17083046e-02 6.78580821e-01 8.06134045e-02 -7.87013173e-01\\n5.94534278e-01 3.05935383e-01 -7.68897533e-02 -4.81723517e-01\\n5.56069195e-01 -2.29369015e-01 -1.89763397e-01 2.91056968e-02\\n-3.97436827e-01 -4.08761621e-01 2.73921907e-01 -5.71240149e-02\\n-2.05789596e-01 4.73918676e-01 1.10384524e-01 1.47889242e-01\\n2.53278315e-01 -3.11583638e-01 -1.28919750e-01 1.26212656e-01\\n-6.04721084e-02 -2.50511438e-01 -5.87294340e-01 -7.72306025e-02\\n-1.99988768e-01 -3.08492422e-01 -6.03672080e-02 -3.58885109e-01\\n-1.89634860e-01 -3.80856961e-01 -2.33501524e-01 3.06740940e-01\\n2.92243481e-01 8.06134567e-02 -1.22002319e-01 6.37357235e-02\\n2.66681202e-02 -7.78093159e-01 -2.43456531e-02 8.75557885e-02\\n5.14803529e-01 1.88636243e-01 2.23282859e-01 -7.33380467e-02\\n1.30144402e-01 6.51920974e-01 -1.97757870e-01 -3.17990124e-01\\n1.66064978e-01 3.08942735e-01 -2.14497242e-02 -1.34855613e-01\\n7.25394785e-02 4.26286757e-01 -3.86969805e-01 8.80723000e-02\\n4.14319038e-02 -2.09634185e-01 4.36686635e-01 -4.37591597e-02\\n-3.27730954e-01 -1.15854472e-01 -1.94023311e-01 9.71607342e-02\\n-5.63966274e-01 -3.78041863e-01 5.32606244e-01 2.39405975e-01\\n2.10919052e-01 5.64445630e-02 3.23486105e-02 -2.33842209e-02\\n-2.35300094e-01 -3.13792646e-01 3.14882666e-01 1.14036284e-01\\n9.17684957e-02 1.97435349e-01 3.54253761e-02 -6.28795326e-01\\n-3.45707703e+00 -1.40250266e-01 2.66815454e-01 -1.74149483e-01\\n1.18733853e-01 -2.24343985e-02 4.15387098e-03 -1.41916215e-01\\n-3.16568702e-01 7.11792558e-02 -1.43641040e-01 -2.30840474e-01\\n5.55182472e-02 2.49967009e-01 1.21269159e-01 1.39162913e-01\\n2.33872563e-01 -1.97353989e-01 -9.31975469e-02 2.96579003e-01\\n-1.92320481e-01 -5.83225429e-01 1.63121238e-01 -1.32989911e-02\\n1.93724096e-01 2.93803692e-01 -1.54656455e-01 -2.48165220e-01\\n-2.07820937e-01 -2.17830285e-01 6.53106123e-02 -2.76642561e-01\\n-1.56589165e-01 3.15363616e-01 2.55629003e-01 4.53668274e-02\\n5.58210015e-02 -3.89792979e-01 -1.80715233e-01 -4.64159369e-01\\n3.54249813e-02 -5.17889500e-01 1.66600384e-02 -1.99917495e-01\\n8.24899256e-01 -2.76604742e-01 1.46714419e-01 9.83523726e-02\\n2.15099514e-01 4.38738987e-02 1.14830293e-01 6.81909323e-02\\n-1.61824286e-01 -2.23032728e-01 -1.95522845e-01 -1.36374190e-01\\n6.10514045e-01 3.66834551e-01 -3.70142311e-02 -1.12815261e-01\\n1.70202836e-01 -2.26860926e-01 -4.04349864e-01 -2.30926380e-01\\n-9.46606845e-02 -2.99577475e-01 -5.26724339e-01 -3.45891416e-01\\n-1.07495070e-01 -1.42220378e-01 -1.62838548e-01 5.81643462e-01\\n-4.00863796e-01 -3.24613065e-01 -1.02602258e-01 -4.29318726e-01\\n2.85477668e-01 -2.08131433e-01 -2.74303518e-02 -1.73406973e-01\\n-3.50050002e-01 -5.66657543e-01 -2.20690109e-02 -7.50655681e-02\\n-1.60913914e-01 -4.17465508e-01 1.39559964e-02 -7.89035857e-02\\n-2.75966078e-01 -5.95266819e-01 3.95969659e-01 8.97488445e-02\\n2.76108086e-01 2.31478781e-01 3.34949255e-01 2.43235826e-02\\n3.84296954e-01 -3.48085389e-02 -1.04335777e-01 -2.52733678e-01\\n7.90352970e-02 6.24209642e-05 4.70604599e-01 -3.00321668e-01\\n-3.01844254e-02 7.38041550e-02 -2.16567382e-01 6.17171451e-03\\n3.73950481e-01 -5.70871271e-02 3.21425423e-02 -9.31534469e-02\\n3.58094007e-01 -2.15443060e-01 -9.59355980e-02 1.39634430e-01\\n1.64284959e-01 5.48558414e-01 2.22381204e-04 -4.10339385e-01\\n-5.49609214e-02 5.39321661e-01 -1.71384424e-01 4.04147245e-02\\n-2.52790809e-01 6.71408698e-03 -1.73354775e-01 3.31684709e-01\\n2.29939688e-02 -2.67501891e-01 -1.50031552e-01 -1.64433479e-01\\n-1.29732117e-01 3.56378138e-01 2.89455205e-01 -9.87644494e-03\\n5.33621423e-02 -3.33533257e-01 -1.46737382e-01 2.02087820e-01\\n2.87780106e-01 4.85582888e-01 1.42497241e-01 -2.30159491e-01\\n-1.54986531e-01 3.27715755e-01 -3.05212103e-02 6.83273375e-02\\n-2.77411401e-01 9.84354913e-02 -5.60426474e-01 -2.45150685e-01\\n-3.40586960e-01 -4.57471818e-01 3.09908420e-01 2.96390802e-01\\n1.93297327e-01 -2.79567353e-02 1.68242715e-02 -4.84814733e-01\\n2.53559619e-01 2.29311198e-01 8.67401734e-02 9.65577886e-02\\n-1.83367599e-02 4.81751442e-01 -1.77990459e-02 -1.51028335e-01\\n-6.13336265e-02 4.96961474e-02 -1.62863940e-01 -1.28857881e-01\\n1.36013746e-01 -5.56048393e-01 -1.21822193e-01 4.01461422e-01\\n1.78361565e-01 -2.41204500e-01 -3.50371778e-01 2.38098100e-01\\n-7.46901482e-02 -1.38120472e-01 -3.01481009e-01 -7.78522938e-02\\n3.64065111e-01 6.05226010e-02 2.70697415e-01 -3.44998896e-01\\n-1.00081660e-01 3.53457332e-02 -1.76378191e-01 4.54855680e-01\\n-2.79353037e-02 -6.55786097e-02 -2.75551766e-01 -1.15903333e-01\\n3.84312302e-01 -1.62750870e-01 -7.71391690e-02 2.01012418e-02\\n1.44687697e-01 -2.52256334e-01 -4.08395171e-01 5.50485030e-02\\n-2.44182274e-02 -2.89785624e-01 -4.54139113e-02 2.05413848e-01\\n3.20607126e-02 1.79573059e-01 -6.64706588e-01 -2.79706538e-01\\n-3.47172827e-01 -1.57855153e-01 1.35471314e-01 -3.32170874e-01\\n1.11616030e-02 -1.51936859e-01 -5.85460424e-01 2.02037826e-01\\n-2.33857602e-01 -1.67000219e-01 1.52982950e-01 1.88255444e-01\\n-2.88002372e-01 -2.15857163e-01 7.07886815e-02 3.00652683e-01\\n-3.01800817e-01 -3.06582063e-01 3.27955782e-02 -9.49103117e-01\\n1.51237726e-01 1.06959537e-01 -2.73427993e-01 1.29867047e-01\\n-1.25954658e-01 -5.67539513e-01 -2.70187901e-03 -4.66065466e-01\\n-7.62172639e-02 4.26074117e-03 -2.75106043e-01 -2.68526882e-01\\n1.25605613e-01 -3.63534875e-02 -3.38201106e-01 5.90385437e-01\\n-2.39713579e-01 2.97159076e-01 -2.00981051e-01 6.32197931e-02\\n-4.05335166e-02 -2.06939816e-01 4.79787141e-02 -3.77410114e-01\\n-4.50367928e-01 -2.79206514e-01 -3.24430555e-01 -2.88720042e-01\\n7.29513168e-02 -4.49980557e-01 -9.38795656e-02 1.27719730e-01\\n3.08707356e-01 3.52661163e-02 -6.69995993e-02 -3.36333185e-01\\n1.20317079e-01 -6.10910594e-01 -1.00885108e-02 -3.98753732e-02\\n-1.88447028e-01 -6.01781756e-02 1.39500916e-01 6.99954331e-02\\n2.14711025e-01 -1.92881435e-01 2.83252746e-01 -5.04460454e-01\\n-1.41100675e-01 6.52415305e-03 6.14316985e-02 -1.26327246e-01\\n1.57054693e-01 -5.10943055e-01 3.32886241e-02 4.04096216e-01\\n1.84172601e-01 7.86176044e-03 1.84053227e-01 -9.64846089e-02\\n1.38454735e-02 3.60264897e-01 -2.45273083e-01 7.34435469e-02\\n7.05817223e-01 1.05272770e-01 1.81264430e-01 1.20723128e-01\\n1.86774805e-01 2.46158153e-01 5.45635581e-01 4.24904302e-02\\n-7.89920539e-02 2.18962252e-01 3.06327436e-02 -4.10098195e-01\\n-1.86287947e-02 4.25301977e-02 -2.49770403e-01 -4.11494434e-01\\n6.35590732e-01 4.15606707e-01 -5.70702791e-01 -1.08167760e-01\\n-1.22683778e-01 -8.49220827e-02 2.85244644e-01 -3.27986740e-02\\n-9.70615149e-02 -2.50389948e-02 4.42076862e-01 -1.58618227e-01\\n1.66108638e-01 4.65281546e-01 -1.79365739e-01 -2.17780143e-01\\n-8.96031857e-02 2.29684085e-01 2.10076999e-02 6.10326648e-01\\n-2.15045214e-01 3.84999216e-01 -4.10412960e-02 3.08759734e-02\\n-7.95201883e-02 2.24118471e-01 2.07123190e-01 1.27009720e-01\\n3.00675213e-01 -1.00370824e-01 4.99070823e-01 4.32720244e-01\\n1.68665707e-01 4.49966490e-01 3.20463508e-01 1.01850949e-01\\n3.92724097e-01 5.18780708e-01 3.37164134e-01 1.85537606e-01\\n-2.94519439e-02 1.85228959e-01 1.93825006e-01 -4.55904901e-02\\n4.29522157e-01 3.75671625e-01 5.81753589e-02 8.86701941e-01\\n3.31846833e-01 4.05257344e-01 7.13368833e-01 -6.92930818e-01\\n-4.08669174e-01 2.39533588e-01 5.05235851e-01 -3.08072239e-01\\n3.77252102e-02 1.59508780e-01 -1.69029504e-01 2.58641511e-01\\n-4.29258943e-01 -2.63436735e-01 -1.86553225e-02 2.78958142e-01\\n-5.74850589e-02 -2.66052961e-01 -2.77419329e-01 1.05503559e-01\\n-2.24513933e-02 4.01349887e-02 -4.79153514e-01 -1.60319269e-01\\n-2.52722114e-01 -1.18680969e-01 -1.19232081e-01 -9.07109380e-02\\n3.99960987e-02 -3.42873454e-01 1.81955472e-02 -3.69969048e-02\\n2.98058689e-01 -1.79092824e-01 -1.20981731e-01 -1.38574302e-01\\n2.70347595e-01 2.77954906e-01 4.83906150e-01 -1.87783390e-02\\n9.00344551e-02 -2.30700612e-01 -2.22805068e-01 1.74296543e-01\\n1.16220593e-01 2.99101267e-02 1.43809114e-02 1.35847509e-01\\n-1.87098280e-01 -2.41374403e-01 2.00182676e-01 3.00834507e-01\\n-4.77595150e-01 -4.74525802e-02 -1.81763530e-01 1.72846913e-01\\n1.10419430e-01 2.42714167e-01 -1.92542121e-01 1.40764371e-01\\n-2.17416227e-01 -3.97935569e-01 2.40891814e-01 -1.31820142e-01\\n-9.15689915e-02 1.11068368e-01 3.31274390e-01 1.43759787e-01\\n-2.63186932e-01 -4.85299528e-03 -1.56927884e-01 2.31594503e-01\\n-3.17130610e-02 2.27894485e-01 -1.29941285e-01 -4.01979715e-01\\n-1.83858126e-01 1.13327384e-01 -1.76448286e-01 1.18976891e-01\\n1.83977336e-02 3.92277896e-01 1.29125327e-01 2.79327072e-02\\n5.19391060e-01 1.68753807e-02 -2.69162893e-01 -2.31084645e-01\\n-1.80346817e-01 -1.44831434e-01 -1.77088588e-01 2.68146582e-02\\n1.62462294e-01 -3.55977535e-01 -8.23326260e-02 -1.59328684e-01\\n-1.95772126e-02 -3.44549417e-01 7.99285024e-02 -3.76709290e-02]]',\n", + " 'job_description': \"At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology's computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people's advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from AirBnB, Twitter, SalesForce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! What You Will Do You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Who You Are You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization (for example using matplotlib or Grafana). You are always curious to try out new tools and libraries for the analysis and visualization of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. The Bounty A dynamic, young company where input is welcomed and acted upon High level of personal responsibility and independence A challenging and exciting mission within an innovative and multi-cultural environment The opportunity to work with some of the smartest and most innovative people in the market If this sounds like you, let’s solve the riddle and apply (written in English or German) - We’re very excited to meet you.\",\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Proactivity\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MySQL\", \"NoSQL\", \"Matplotlib\", \"Accessioning\", \"Advising\", \"Corporate Communications\", \"Tooling\", \"Agility\", \"Acting\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Levelling\", \"Data Visualization\", \"Machine Learning Methods\", \"Personalization\", \"Machine Learning Algorithms\", \"Scalability\", \"Human Intelligence\", \"Electronic Data Processing\", \"Humanism\", \"Grafana\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Latvian', 'Kikuyu']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software back-end engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.71552032e-01 2.91270584e-01 3.82932365e-01 -6.69109868e-03\\n3.55228841e-01 -2.36295044e-01 2.26878119e-03 3.73446047e-01\\n-7.57382885e-02 -2.04707831e-01 -3.22159790e-02 -2.29785040e-01\\n-3.30118656e-01 -6.83388487e-02 1.30850390e-01 4.15461659e-01\\n2.63428152e-01 1.37489960e-01 -2.57047325e-01 3.84930313e-01\\n2.22024724e-01 -7.94562511e-03 -2.06433833e-01 6.13091886e-01\\n4.15168166e-01 6.67720009e-03 -1.12058461e-01 7.38009950e-03\\n-3.43387604e-01 -2.87937373e-01 3.34174991e-01 7.63941417e-03\\n-1.57293066e-01 -3.32568496e-01 5.75951636e-02 9.28215086e-02\\n-1.49799198e-01 8.00929070e-02 1.27713457e-01 1.74960107e-01\\n-3.93162608e-01 -3.42083246e-01 1.08727805e-01 8.67118537e-02\\n-1.47588775e-01 -1.52126253e-01 2.10592359e-01 9.10648331e-02\\n-2.10765786e-02 -3.92282307e-02 -6.59780800e-01 3.43442112e-01\\n-8.31183717e-02 -2.07812771e-01 2.16222495e-01 4.91686881e-01\\n4.11508940e-02 -5.77887833e-01 -3.88974547e-01 -2.97275513e-01\\n2.31454279e-02 -1.32889286e-01 3.95712890e-02 -1.05743386e-01\\n3.91338438e-01 -1.82317849e-02 -4.78573702e-02 4.16116089e-01\\n-8.47215474e-01 -6.76593408e-02 -1.85629666e-01 -4.92557592e-04\\n-4.70055312e-01 5.79526927e-03 -2.32034683e-01 -1.14024647e-01\\n-3.29488441e-02 3.36776853e-01 -1.81190353e-02 2.23107822e-02\\n-1.55476764e-01 3.64888161e-01 -2.63778642e-02 2.41699785e-01\\n4.27926391e-01 1.31522655e-01 2.00191230e-01 2.82205403e-01\\n-3.44663799e-01 3.55268836e-01 1.06206812e-01 -2.61881053e-01\\n2.20112368e-01 6.26756251e-02 5.29973447e-01 6.86371550e-02\\n-5.19335903e-02 2.03620479e-01 -2.35724568e-01 2.06270605e-01\\n4.91508283e-02 -4.36996609e-01 1.66943334e-02 4.89583462e-02\\n-2.12178469e-01 5.97290578e-04 -6.27001747e-02 2.48238236e-01\\n-2.20404372e-01 4.37218487e-01 3.19672555e-01 -1.38408870e-01\\n-3.07972301e-02 -5.30560970e-01 -1.10544503e-01 -5.11436462e-02\\n-1.35645494e-01 1.19996652e-01 2.81457543e-01 4.55717333e-02\\n2.29059979e-01 6.89450949e-02 1.90196216e-01 8.30775797e-01\\n-4.81531629e-03 1.43571213e-01 -1.09598301e-01 3.17951143e-01\\n2.34613374e-01 -2.92001992e-01 2.36804947e-01 3.17300707e-01\\n1.80220842e-01 -1.24423750e-01 -2.22232983e-01 1.42850056e-01\\n-2.20663503e-01 -1.41652822e-01 -3.27037811e-01 2.30795220e-02\\n-2.36305907e-01 -3.40515554e-01 4.23087716e-01 1.79520994e-01\\n3.51594478e-01 5.37443794e-02 9.51535162e-03 -1.89058054e-02\\n-1.16214804e-01 4.00311351e-01 -5.94490506e-02 3.61276656e-01\\n-3.22990745e-01 -1.89081177e-01 -1.81312338e-01 2.26882532e-01\\n-3.92700918e-02 6.78772926e-02 -8.64418522e-02 -1.64703727e-01\\n3.33705008e-01 6.17516739e-03 -3.46669644e-01 3.09836566e-01\\n4.64579090e-03 -2.21798107e-01 -2.48315468e-01 2.84495652e-01\\n1.46735425e-03 1.85809314e-01 4.42082658e-02 -2.35127211e-01\\n5.95170021e-01 2.13921338e-01 1.51697561e-01 -1.10353552e-01\\n3.08895916e-01 -2.26111159e-01 3.89481217e-01 1.00061595e-01\\n-5.22963941e-01 3.20854336e-01 3.63583281e-03 -9.48745906e-02\\n-6.19910732e-02 -6.23289542e-03 3.94909829e-01 -4.06044781e-01\\n5.53050917e-03 -1.39790267e-01 -4.68294382e-01 -2.78005540e-01\\n-4.05888945e-01 8.81420448e-02 4.97142404e-01 -2.70147741e-01\\n-1.03628926e-01 2.27419496e-01 -4.37061489e-01 -1.60997108e-01\\n2.11786717e-01 5.25522418e-02 3.59879546e-02 5.48441522e-02\\n-1.07693158e-01 -5.52978516e-01 -3.83146703e-02 -4.12344992e-01\\n-4.95637387e-01 -3.90525423e-02 -2.60240853e-01 2.45997369e-01\\n6.05285913e-02 4.61989269e-02 -2.68846571e-01 1.62094191e-01\\n-3.56144667e-01 -4.94657271e-02 1.77361831e-01 8.39198604e-02\\n7.48449983e-03 -4.85855900e-02 -3.68663698e-01 3.33473414e-01\\n-3.12864661e-01 6.86015606e-01 1.62761614e-01 -8.00490975e-01\\n5.09792209e-01 2.72990912e-01 9.67471153e-02 -4.08024341e-01\\n3.85270149e-01 -3.59974176e-01 2.11722385e-02 1.32646307e-01\\n-2.51146883e-01 -2.08991200e-01 3.66078168e-01 -2.22752526e-01\\n-2.28856921e-01 5.99907577e-01 1.60703599e-01 -1.00016877e-01\\n2.43155837e-01 -3.12022746e-01 4.54199240e-02 7.11110905e-02\\n-4.94847409e-02 -2.09228575e-01 -3.13219726e-01 9.92925763e-02\\n-5.45884483e-02 -5.07564366e-01 -1.58324882e-01 -2.00389817e-01\\n-2.44116247e-01 -4.81824845e-01 -2.66392827e-01 4.89725292e-01\\n1.97891027e-01 1.73390254e-01 2.32866406e-02 2.11820845e-02\\n-2.95376331e-02 -6.54248714e-01 -3.60433422e-02 -1.55964505e-03\\n5.41053236e-01 2.92158574e-01 9.50837657e-02 -2.00500414e-01\\n5.22423442e-03 5.12299895e-01 -3.55726033e-01 -4.05372113e-01\\n1.20549180e-01 1.05580322e-01 -7.22159371e-02 -2.10635707e-01\\n1.00136381e-02 4.09225345e-01 -1.87066749e-01 1.82405710e-02\\n-2.51781464e-01 -4.46655117e-02 3.96122158e-01 -3.20786759e-02\\n-3.65153044e-01 -1.97646201e-01 2.50058211e-02 3.15762997e-01\\n-4.66854125e-01 -1.97033182e-01 5.36266327e-01 3.61193776e-01\\n2.29305580e-01 8.84390697e-02 1.61574215e-01 -6.51850998e-02\\n-1.32268608e-01 -3.56735647e-01 1.42277256e-01 1.72209576e-01\\n9.17599201e-02 1.47943720e-02 -1.60055235e-01 -6.15658522e-01\\n-3.21531630e+00 -2.12728217e-01 1.22804336e-01 -2.98083454e-01\\n2.13541210e-01 -3.50307524e-02 -9.24410447e-02 -4.93167713e-02\\n-2.67344326e-01 1.39072552e-01 -2.37250715e-01 -1.90550774e-01\\n1.06130071e-01 2.89520502e-01 1.82777897e-01 2.16425985e-01\\n1.48011312e-01 -3.38041574e-01 -1.27020434e-01 4.07761693e-01\\n-3.02785262e-02 -5.47685266e-01 1.55806541e-01 -2.80483644e-02\\n2.99305737e-01 2.25676537e-01 -3.96532953e-01 -1.09443136e-01\\n-1.26231849e-01 -2.47124657e-01 9.73018538e-03 -2.28223816e-01\\n-1.61810681e-01 3.40885431e-01 2.88150832e-03 -8.12282115e-02\\n6.85799941e-02 -3.54570776e-01 -1.27157778e-01 -4.48255777e-01\\n3.03039718e-02 -5.81036568e-01 1.05025560e-01 -2.21932739e-01\\n6.88779414e-01 -2.38863349e-01 1.40365764e-01 1.66100726e-01\\n1.89708382e-01 1.54716283e-01 -1.99603364e-01 3.39167267e-02\\n-3.83035690e-01 -2.34601557e-01 -6.61461800e-02 -1.97902307e-01\\n4.41991895e-01 5.26856661e-01 -1.59432009e-01 -1.15105910e-02\\n6.83370307e-02 -4.25648957e-01 -3.10858637e-01 -4.61101264e-01\\n-1.10442527e-01 -1.97666124e-01 -7.28578150e-01 -4.36597466e-01\\n-1.48746774e-01 -1.11884661e-01 -1.67722151e-01 5.20081401e-01\\n-4.28153574e-01 -3.76730144e-01 1.77470669e-01 -6.19699836e-01\\n2.83889603e-02 -2.09998652e-01 1.58616647e-01 -1.32310525e-01\\n-2.86271602e-01 -5.62087953e-01 1.07411735e-01 -6.34800494e-02\\n-2.95787632e-01 -2.19763026e-01 -2.46233828e-02 -2.41134852e-01\\n-2.13767067e-01 -4.15614277e-01 4.44184095e-01 3.52122486e-02\\n3.48372221e-01 1.15963683e-01 2.33315155e-01 1.90185934e-01\\n3.27564895e-01 -1.04253747e-01 1.51733905e-01 -3.84352356e-01\\n1.77130848e-01 5.07899560e-02 5.77076316e-01 -3.53925884e-01\\n3.07852533e-02 1.02570504e-01 -3.12118649e-01 -6.47103712e-02\\n4.78083432e-01 1.02319084e-01 -7.60655850e-02 -2.71291705e-04\\n3.63896132e-01 -4.82758850e-01 -2.48481452e-01 2.63567328e-01\\n5.22926860e-02 5.45598626e-01 -7.35057378e-03 -4.49981332e-01\\n-2.76595652e-01 4.24551576e-01 -7.38812685e-02 -7.87267014e-02\\n-9.80214626e-02 7.38268495e-02 -9.36382562e-02 1.02683939e-01\\n1.34772748e-01 -1.73409685e-01 -2.71898299e-01 -5.14883772e-02\\n-1.07444510e-01 1.02417774e-01 2.56944835e-01 -1.68367010e-02\\n-7.96495080e-02 -2.56493777e-01 -1.84047312e-01 9.48862806e-02\\n1.70557544e-01 2.59262651e-01 1.08699098e-01 -2.05751419e-01\\n4.59911749e-02 2.83028573e-01 -9.88159180e-02 1.23980112e-01\\n-2.19104975e-01 6.04601689e-02 -5.67805111e-01 -9.60743502e-02\\n-1.41311049e-01 -3.29733670e-01 1.67957515e-01 2.87787825e-01\\n1.22639768e-01 7.49320388e-02 1.90897379e-02 -5.88104963e-01\\n4.85986233e-01 3.86591405e-02 1.84442759e-01 1.57832965e-01\\n8.49223733e-02 3.86732548e-01 5.59855625e-02 -2.46757865e-02\\n-2.88682759e-01 -7.09388852e-02 -2.12403029e-01 -2.41041854e-01\\n8.88784826e-02 -3.76955807e-01 -1.01718135e-01 4.93554741e-01\\n1.21331379e-01 -2.55023152e-01 -2.16292471e-01 3.44459981e-01\\n1.91898480e-01 -2.48215914e-01 -1.69099540e-01 -2.30740774e-02\\n1.64175734e-01 8.49669054e-02 2.47845650e-01 -2.99475521e-01\\n-1.13549232e-01 -3.72391082e-02 -9.62547436e-02 4.02917773e-01\\n1.77824914e-01 -5.58110476e-02 -2.50293285e-01 -1.96637750e-01\\n4.55981255e-01 -5.52653037e-02 -9.05464590e-02 -1.80311352e-01\\n1.19824909e-01 -1.72574267e-01 -4.25881386e-01 -7.99653679e-03\\n-2.82678157e-02 -1.03793480e-01 8.86163563e-02 -8.37067794e-03\\n4.46492061e-02 5.08746058e-02 -2.72957027e-01 -2.69796610e-01\\n-3.08599532e-01 -2.72410512e-01 1.09905988e-01 -3.47291589e-01\\n-5.94342500e-02 1.25488238e-02 -4.83871609e-01 1.98036402e-01\\n-4.84319150e-01 -3.25461216e-02 8.49067494e-02 1.88526034e-01\\n-4.10423994e-01 -8.27222466e-02 5.83636202e-02 1.80127323e-01\\n-3.97754490e-01 -3.04423094e-01 7.42776021e-02 -8.80911291e-01\\n2.44409680e-01 1.25364274e-01 -3.83193344e-02 -6.24485426e-02\\n1.27528906e-02 -6.39937639e-01 1.18093662e-01 -4.30548936e-01\\n1.36846855e-01 2.44638212e-02 -1.14779845e-01 -3.13872814e-01\\n9.81192812e-02 -3.01212609e-01 -3.76202196e-01 3.32452834e-01\\n-4.69170123e-01 3.62234920e-01 7.22761452e-02 3.16124111e-02\\n1.70641560e-02 -3.60128194e-01 1.34400517e-01 -3.56733531e-01\\n-4.46172118e-01 -2.00980604e-01 -3.27178180e-01 -1.92323342e-01\\n-2.00275946e-02 -1.21833265e-01 -2.67280459e-01 1.20325729e-01\\n2.30594710e-01 1.47440016e-01 -8.54876861e-02 -2.68745542e-01\\n1.25888065e-01 -4.56336677e-01 -9.20768827e-02 -2.98691243e-01\\n-3.92760225e-02 -7.81482235e-02 1.98152348e-01 -1.35454759e-01\\n-6.43529138e-03 -3.14422220e-01 4.48826969e-01 -3.90015244e-01\\n-2.53161818e-01 -5.69062717e-02 8.35730731e-02 -3.96893024e-02\\n7.21535310e-02 -6.21991098e-01 1.28632396e-01 3.00864995e-01\\n4.32584248e-02 8.93807262e-02 1.70158774e-01 4.39386666e-02\\n-1.15548633e-01 2.51294792e-01 -5.33888400e-01 7.29920790e-02\\n7.34216094e-01 1.88444138e-01 -4.53827903e-02 2.05532685e-01\\n1.80256173e-01 3.46677691e-01 6.25255048e-01 -1.58300735e-02\\n-6.36261851e-02 1.95396304e-01 -8.11186060e-03 -5.56946039e-01\\n-7.40337968e-02 -2.21901406e-02 -1.26143485e-01 -2.40240976e-01\\n6.87060058e-01 4.04825062e-01 -4.13822025e-01 -2.91439056e-01\\n3.61502692e-02 -9.95048881e-02 1.95578024e-01 -5.24000861e-02\\n4.81917225e-02 -1.43123582e-01 6.63339198e-01 2.29177531e-02\\n2.12729827e-01 5.21273911e-01 -2.16799572e-01 -3.60699326e-01\\n-1.31314471e-01 1.21853605e-01 1.46436349e-01 4.64680225e-01\\n-9.96639132e-02 1.42780274e-01 -1.70964241e-01 -9.87535343e-03\\n5.24808615e-02 3.65480453e-01 1.88426703e-01 5.98822944e-02\\n2.25514665e-01 2.62132864e-02 2.09612682e-01 4.40072298e-01\\n1.51625708e-01 5.62719107e-01 2.43154541e-01 9.69170108e-02\\n2.98865467e-01 5.84474385e-01 4.25144553e-01 1.06067978e-01\\n4.63227916e-04 1.30929381e-01 1.26784027e-01 -1.55534642e-02\\n5.67120492e-01 3.01957577e-01 3.11675012e-01 8.11192989e-01\\n3.56013745e-01 3.20000678e-01 8.16168189e-01 -6.44952953e-01\\n-4.14494336e-01 1.56656414e-01 5.79559267e-01 -8.77263844e-02\\n-1.00557365e-01 2.27869898e-01 -3.03167403e-01 2.77273148e-01\\n-4.44567323e-01 -4.58748937e-02 -7.66223716e-03 5.48736602e-02\\n1.57649234e-01 2.79718284e-02 -1.81998238e-01 1.28152013e-01\\n-1.78937778e-01 -2.04069078e-01 -3.17970604e-01 -1.29812643e-01\\n-2.28384390e-01 -8.92306194e-02 -3.68082039e-02 -1.11019917e-01\\n-1.62650570e-01 -4.25846338e-01 -1.39929235e-01 -6.24607392e-02\\n2.56200671e-01 -1.11240223e-01 -5.44522069e-02 -1.22756742e-01\\n1.21525697e-01 3.49149644e-01 5.09233117e-01 -7.22431093e-02\\n2.27792561e-03 -8.86761472e-02 -3.47578973e-01 9.58653316e-02\\n1.05713233e-02 5.99187315e-02 1.71711832e-01 3.97532582e-01\\n-3.25093776e-01 3.96073759e-02 7.60146305e-02 2.94799089e-01\\n-3.76254261e-01 -1.27146795e-01 -6.88758567e-02 2.37431064e-01\\n3.66044864e-02 1.65688723e-01 -2.88238704e-01 1.48570761e-01\\n-2.71678150e-01 -4.97985840e-01 3.86771530e-01 -8.33091810e-02\\n-2.14117393e-01 3.84571582e-01 2.27011263e-01 2.31966868e-01\\n-2.88752824e-01 -1.02611370e-01 3.28605585e-02 3.17585021e-01\\n3.31836864e-02 4.34862018e-01 -6.68492541e-02 -1.53409272e-01\\n-2.56073743e-01 3.44886363e-01 -1.47571176e-01 5.51983938e-02\\n-1.33935079e-01 3.75227064e-01 -6.68831393e-02 6.00299649e-02\\n2.49299124e-01 -3.56536247e-02 -2.53164083e-01 -2.66369313e-01\\n-3.13599885e-01 -2.52270013e-01 1.04922302e-01 8.08849111e-02\\n1.73435137e-01 -3.68906528e-01 -6.80530630e-03 -9.99413431e-02\\n-1.09519497e-01 -1.98148310e-01 -1.26212746e-01 1.66497573e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: - Design and enhance an intuitive, easy-to-use API (used by our own front-end and by third-party applications) - Collaborate closely with fellow engineers, data scientists, and business people - Contribute your ideas to our product development and system architecture Requirements: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with web development, API design, and third-party integration - Advanced knowledge of relational databases - Some experience with the technologies we’re using is a plus: - Python, Django, Flask, SQLAlchemy, Pytest - PostgreSQL, PostGIS - JavaScript, Angular, HTML5, CSS3, Bootstrap - Git, Bitbucket, CircleCI - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Are comfortable working in English and German; you have a great read, good spoken command of it. Benötigte Skills Englisch JavaScript Angular HTML5 CSS3 Bootstrap PostgreSQL Python',\n", + " 'soft_skills': '[\"Collaboration\", \"Integration\"]',\n", + " 'hard_skills': '[\"Bitbucket\", \"Control Systems\", \"MSC Software\", \"Test-Driven Development (TDD)\", \"Agility\", \"Circleci\", \"API Design\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Data Engineering\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"HTML5\", \"Systems Architecture\", \"Web Development\", \"Flask (Web Framework)\", \"Software Engineering\", \"Django (Web Framework)\", \"Object-Oriented Programming (OOP)\", \"Bootstrap (Front-End Framework)\", \"JavaScript (Programming Language)\", \"SQLAlchemy\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Structures\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Relational Databases\", \"Algorithms\", \"Git Flow\", \"Application Programming Interface (API)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English', 'Sindhi', 'Panjabi']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.31415814e-01 3.55438679e-01 4.90337342e-01 -8.28324631e-02\\n4.08656746e-01 -2.28473857e-01 1.64905354e-01 2.89817214e-01\\n-8.06796551e-02 -2.90651083e-01 -6.01219200e-02 -3.21930230e-01\\n-1.71051055e-01 1.57934474e-03 1.58764392e-01 3.11463714e-01\\n2.03134492e-01 7.47852325e-02 -1.82910338e-01 2.49574170e-01\\n-1.85994953e-02 1.70398671e-02 -2.73172185e-03 4.96231019e-01\\n4.56043839e-01 6.33839443e-02 -4.92315441e-02 1.41917884e-01\\n-2.73578554e-01 -2.19693109e-01 2.76706129e-01 9.42966267e-02\\n-4.16554436e-02 -2.30465025e-01 5.47328517e-02 4.45727445e-02\\n-1.98416874e-01 -6.13118112e-02 1.26664594e-01 1.02333128e-01\\n-2.85203815e-01 -2.79903561e-01 9.85285342e-02 7.73594975e-02\\n-2.62883574e-01 -9.22192484e-02 6.43516183e-02 7.73997903e-02\\n-5.94037436e-02 -5.53218089e-02 -6.20391309e-01 4.30479437e-01\\n-1.60187811e-01 -6.91809729e-02 1.69604540e-01 4.70809668e-01\\n8.13471153e-02 -5.75396836e-01 -2.73764551e-01 -2.10939556e-01\\n4.43500802e-02 -6.52804300e-02 -6.91867471e-02 -1.33449465e-01\\n5.23295224e-01 -1.62077650e-01 -7.07104206e-02 6.45963609e-01\\n-7.33069897e-01 -6.41661659e-02 -1.31368905e-01 -5.83291948e-02\\n-5.14248431e-01 4.29536141e-02 -2.32855946e-01 -9.87961367e-02\\n-1.28009841e-01 2.66723096e-01 1.87169209e-01 8.59651119e-02\\n-6.59100041e-02 2.42013633e-01 -9.32167992e-02 1.56416640e-01\\n4.82535094e-01 2.31315568e-01 1.11902177e-01 1.96482420e-01\\n-3.30107421e-01 3.88743639e-01 5.38037606e-02 -2.15849295e-01\\n1.59538239e-01 8.43525231e-02 5.33611000e-01 8.28831643e-02\\n-6.45163059e-02 1.83131546e-01 4.69793826e-02 1.76646158e-01\\n2.76406854e-01 -3.31466973e-01 -1.84831977e-01 5.34386039e-02\\n-2.13362500e-01 -4.30502333e-02 -1.08836656e-02 2.80898541e-01\\n-2.38715261e-01 2.31976271e-01 2.81219095e-01 -2.12865919e-01\\n1.61103848e-02 -5.38872719e-01 -1.63399458e-01 -1.77107632e-01\\n-7.92649761e-02 2.40156740e-01 2.65709639e-01 1.64623424e-01\\n1.23025201e-01 7.59880990e-02 1.41159177e-01 1.09186566e+00\\n-4.23491634e-02 1.20910645e-01 -1.32135913e-01 3.88451397e-01\\n2.05933601e-01 -3.39386910e-01 3.04426163e-01 2.65843958e-01\\n9.74287316e-02 -2.24949285e-01 -1.84600502e-01 1.26444295e-01\\n-1.32029712e-01 -1.47475556e-01 -2.12800980e-01 4.87657264e-02\\n-3.98266077e-01 -3.59526366e-01 4.41962957e-01 1.19303279e-01\\n2.85502374e-01 -2.44071614e-03 5.02832383e-02 -1.45071633e-02\\n-2.00262085e-01 2.66406685e-01 -6.48943931e-02 2.72134244e-01\\n-4.11819637e-01 -1.59840092e-01 -2.30041102e-01 5.00476539e-01\\n1.33479774e-01 -1.61830299e-02 -6.40627295e-02 -9.69656035e-02\\n3.45848024e-01 8.71133134e-02 -4.22367811e-01 3.24953526e-01\\n-4.20422032e-02 -3.12215269e-01 -2.21154526e-01 1.68754563e-01\\n9.81383994e-02 1.39060989e-01 1.45446047e-01 -1.94811970e-01\\n3.25881213e-01 2.06114829e-01 2.84323562e-03 -1.43997014e-01\\n2.53726751e-01 -1.81069240e-01 1.92866072e-01 1.57162368e-01\\n-6.47062540e-01 2.61248022e-01 1.57020628e-01 -7.81705379e-02\\n9.03600082e-02 1.18944637e-01 3.60760331e-01 -3.34953964e-01\\n-6.09221905e-02 -2.26829156e-01 -4.14415747e-01 -3.29700023e-01\\n-3.35527539e-01 5.51868081e-02 4.76936638e-01 -4.92550045e-01\\n-1.73251837e-01 9.55596864e-02 -3.66254359e-01 -8.64324123e-02\\n1.87836036e-01 1.51263759e-01 1.11785345e-01 1.12373471e-01\\n-1.95818469e-01 -4.91502404e-01 -6.88915551e-02 -5.45381665e-01\\n-5.66609800e-01 -8.37996528e-02 -1.44619420e-01 1.60369813e-01\\n8.78336430e-02 4.90035526e-02 -1.36529669e-01 1.61304101e-01\\n-2.80040979e-01 6.81008026e-02 1.80800810e-01 1.39986798e-01\\n1.06516816e-01 -1.18087813e-01 -3.55532885e-01 1.91917837e-01\\n-2.65658677e-01 4.06081140e-01 2.89132982e-01 -8.47032607e-01\\n4.96825635e-01 2.86416620e-01 7.53534362e-02 -2.50986814e-01\\n3.28313738e-01 -3.29438061e-01 7.90545344e-02 9.76724848e-02\\n-2.49423206e-01 -2.09419727e-01 2.76912987e-01 -1.12126239e-01\\n-2.88388103e-01 4.87280905e-01 7.96865150e-02 -3.09223272e-02\\n3.69939893e-01 -3.50298792e-01 -6.73293620e-02 1.28214017e-01\\n-1.23087861e-01 -1.84010804e-01 -1.91569313e-01 8.06371942e-02\\n-1.09194793e-01 -3.99816960e-01 -1.30492255e-01 -4.18986291e-01\\n-2.47094899e-01 -3.19849789e-01 -2.44261846e-01 5.21175861e-01\\n1.50122464e-01 9.35015976e-02 1.84727728e-01 4.07323539e-02\\n-7.25444332e-02 -6.32194281e-01 7.73878470e-02 -1.18453138e-01\\n5.09964287e-01 3.57581109e-01 -2.69139605e-03 -1.81750432e-01\\n-3.29931416e-02 4.06918168e-01 -2.64841259e-01 -4.95774180e-01\\n6.58661127e-02 1.47624195e-01 -3.09743080e-02 -1.60064667e-01\\n-1.21044569e-01 4.27278161e-01 -1.13527767e-01 -3.40292640e-02\\n-1.37710840e-01 3.78358364e-03 3.50194037e-01 -9.53218937e-02\\n-3.20638955e-01 -1.35344729e-01 -2.40080524e-02 3.06903452e-01\\n-4.56624389e-01 -2.86236256e-01 6.13471329e-01 3.83743465e-01\\n4.43382598e-02 1.64185748e-01 2.26917133e-01 -6.48542419e-02\\n-2.32065141e-01 -2.52224237e-01 -5.35152946e-03 2.33439848e-01\\n-7.16817798e-03 -6.28362820e-02 -3.04502726e-01 -4.98127043e-01\\n-3.64702845e+00 -7.07966611e-02 6.81451336e-02 -4.15976346e-01\\n2.17551365e-01 -3.79207991e-02 3.53398919e-02 -5.53929135e-02\\n-1.72750890e-01 -6.23448752e-03 -2.51021117e-01 9.69212726e-02\\n5.30537516e-02 2.59790540e-01 6.11480996e-02 2.54652768e-01\\n1.96471676e-01 -2.12616831e-01 -7.95705691e-02 1.99128583e-01\\n-2.61164438e-02 -5.85420787e-01 7.02781454e-02 -6.97607249e-02\\n2.45127350e-01 1.86620131e-01 -3.63750994e-01 7.47657614e-03\\n-2.54858583e-01 -2.90211648e-01 1.67486429e-01 -3.40759397e-01\\n-5.79306260e-02 2.42522508e-01 1.04224317e-01 -1.07990824e-01\\n-5.69108268e-03 -1.55350000e-01 6.64158612e-02 -3.98107618e-01\\n1.37451468e-02 -4.51275378e-01 2.81253550e-02 -4.51808004e-03\\n6.45433903e-01 -4.60406929e-01 7.61987194e-02 1.61187649e-01\\n1.20994493e-01 1.45807564e-01 -8.19239486e-03 3.40240262e-02\\n-2.16473937e-01 -3.93456429e-01 -9.01395157e-02 -2.60845095e-01\\n4.52660710e-01 4.66383755e-01 -1.67026356e-01 -5.75658791e-02\\n8.82069580e-03 -3.55852067e-01 -4.03380752e-01 -4.74659145e-01\\n-2.65411139e-01 -8.25103745e-02 -9.10850286e-01 -6.16087556e-01\\n-2.01002494e-01 -1.32155418e-02 -3.16451430e-01 5.44719875e-01\\n-3.03473502e-01 -6.55448318e-01 8.18456784e-02 -6.01207852e-01\\n1.07818553e-02 -1.65816531e-01 2.27171764e-01 -2.60078281e-01\\n-3.10198724e-01 -4.15045410e-01 -5.22071868e-02 -1.23976506e-01\\n-1.75772056e-01 -4.10374105e-02 1.06516816e-01 -2.82056898e-01\\n-2.51997739e-01 -2.87774771e-01 3.64788890e-01 -2.62662880e-02\\n3.41698647e-01 1.85247600e-01 2.55811870e-01 3.49858075e-01\\n2.56213754e-01 -2.64781415e-02 2.18253836e-01 -3.63395125e-01\\n1.63659289e-01 4.89325151e-02 6.05133772e-01 -2.35734597e-01\\n2.22185388e-01 1.66757837e-01 -2.04870597e-01 -2.04522520e-01\\n4.21584189e-01 7.31333420e-02 -3.55900265e-02 -9.93076935e-02\\n3.17683429e-01 -4.86673176e-01 -2.88027942e-01 1.61163107e-01\\n2.15252098e-02 5.15725553e-01 1.22332960e-01 -4.42246169e-01\\n-1.87256858e-01 4.56645489e-01 2.29103528e-02 -2.85576522e-01\\n1.18565597e-01 2.14785770e-01 -1.57453701e-01 4.77845743e-02\\n7.76576325e-02 -2.07752287e-01 -2.72907972e-01 -1.75641075e-01\\n-8.09754431e-03 4.13907394e-02 2.49573320e-01 5.80187477e-02\\n-6.79470524e-02 -1.00879274e-01 -1.44763917e-01 1.29930273e-01\\n2.03011498e-01 2.17646971e-01 1.10955812e-01 -2.28261679e-01\\n7.02223182e-02 1.24417283e-01 -2.71337360e-01 3.26442152e-01\\n-6.23708330e-02 1.80366531e-01 -4.60239530e-01 -2.52253681e-01\\n-3.40830460e-02 -3.07081878e-01 3.03418133e-02 2.86846519e-01\\n1.91490129e-01 -6.44808868e-03 6.35467470e-02 -5.17574012e-01\\n4.08340007e-01 6.74519688e-02 1.51017368e-01 2.51450539e-01\\n2.56395608e-01 3.00833791e-01 1.59199938e-01 5.69913089e-02\\n-3.19737047e-01 -3.19762938e-02 -7.23269582e-02 -2.89015502e-01\\n9.46031883e-02 -3.67008656e-01 -1.27159938e-01 3.89893711e-01\\n-4.55388101e-03 -1.54166371e-01 -8.82190540e-02 3.70260060e-01\\n6.96047619e-02 -2.95576781e-01 -1.48261234e-01 1.44655854e-01\\n2.42130294e-01 1.33612171e-01 6.02382906e-02 -2.74277687e-01\\n-1.13668467e-03 2.44764984e-02 1.20251440e-02 4.18842286e-01\\n2.78565675e-01 7.17391223e-02 -3.90284173e-02 -1.92877442e-01\\n5.36731064e-01 -1.04584113e-04 4.51789424e-02 -7.64888078e-02\\n4.23914455e-02 -2.54951924e-01 -3.75885189e-01 2.96566803e-02\\n9.88004953e-02 -9.11155492e-02 1.48728848e-01 -5.85579909e-02\\n1.51641550e-03 -6.50919229e-02 -3.83909374e-01 -2.09336594e-01\\n-3.34922075e-01 -1.32289365e-01 -3.42537947e-02 -2.78136700e-01\\n4.86178510e-02 -3.26189548e-02 -5.68354666e-01 4.01592910e-01\\n-3.54342103e-01 1.14290215e-01 -4.94438782e-02 2.47914761e-01\\n-3.51128995e-01 1.41219087e-02 1.05602354e-01 1.01228647e-01\\n-4.12379324e-01 -2.51616985e-01 -1.51185557e-01 -9.22459126e-01\\n2.16241896e-01 1.11814730e-01 2.30259658e-03 1.30155891e-01\\n1.41222611e-01 -5.17130017e-01 2.99351037e-01 -3.10151756e-01\\n6.98730499e-02 -5.79269091e-03 -1.31838545e-01 -3.21361572e-01\\n1.12125315e-01 -2.05199167e-01 -2.26164773e-01 3.05173129e-01\\n-4.47165400e-01 1.64443254e-01 5.56934662e-02 -2.86029037e-02\\n1.72776300e-02 -2.30110541e-01 9.36402529e-02 -2.44628549e-01\\n-5.05659938e-01 -2.23586425e-01 -3.40125531e-01 -2.14576930e-01\\n4.52620722e-02 -2.50640869e-01 -2.81090081e-01 1.57226399e-01\\n2.96636313e-01 1.85992420e-01 -1.21924534e-01 -2.67237097e-01\\n1.21135689e-01 -3.49263847e-01 -3.46458657e-03 -2.36124337e-01\\n-4.73474059e-03 -1.38681665e-01 9.26655903e-02 -2.18589425e-01\\n-2.87742983e-03 -2.70496875e-01 4.17677045e-01 -9.84279364e-02\\n-3.37426156e-01 8.42147321e-02 9.52830091e-02 -4.55865636e-02\\n2.28462979e-01 -4.56675440e-01 -1.84297562e-03 3.55554968e-01\\n1.39379323e-01 6.52208999e-02 2.84189165e-01 -1.20053194e-01\\n-1.91099659e-01 2.37140492e-01 -7.17716455e-01 8.81993249e-02\\n5.51825106e-01 1.67359952e-02 1.31862164e-01 2.09804118e-01\\n9.42107290e-02 4.48537767e-01 4.98610854e-01 1.91285349e-02\\n1.94899496e-02 3.71068269e-01 1.00385845e-02 -4.42720264e-01\\n-9.16478261e-02 -1.93680242e-01 -1.85386002e-01 -2.32740745e-01\\n4.89331067e-01 4.75996703e-01 -3.59787256e-01 -1.89899057e-01\\n-6.42332137e-02 -2.01199278e-01 6.70997873e-02 -1.81127414e-02\\n-7.29242191e-02 -1.11737907e-01 7.75737405e-01 1.33887827e-01\\n2.66701519e-01 5.87847233e-01 -2.30716337e-02 -2.95603096e-01\\n-2.05360010e-01 -1.86668523e-03 6.99609891e-02 3.25399727e-01\\n3.35993171e-02 2.00463369e-01 5.13557456e-02 1.53165013e-01\\n-1.82610843e-02 2.40218297e-01 1.45433158e-01 3.11406720e-02\\n2.27452219e-01 9.21565890e-02 -1.08652478e-02 3.99540305e-01\\n1.72747627e-01 4.35289025e-01 5.37854917e-02 1.15205891e-01\\n2.51383483e-01 5.99183619e-01 4.57638443e-01 1.87290758e-01\\n2.12313533e-02 -3.97947393e-02 -3.73837203e-02 -9.82408449e-02\\n4.22067791e-01 2.91440666e-01 2.50784099e-01 7.20143855e-01\\n3.41325790e-01 1.86915964e-01 6.80540442e-01 -6.31667733e-01\\n-3.89096618e-01 3.28384191e-02 3.23793560e-01 -2.30397195e-01\\n-2.08698407e-01 4.47994396e-02 -2.83383638e-01 1.32448122e-01\\n-5.68106711e-01 -8.47245380e-02 1.45991808e-02 -1.23345435e-01\\n6.42769188e-02 -8.88670422e-03 -2.07806770e-02 1.40572235e-01\\n-3.02947611e-01 -3.45977724e-01 -3.97305787e-01 2.89684646e-02\\n-3.56603086e-01 -2.32118309e-01 1.03148870e-01 -1.17247842e-01\\n-4.28603068e-02 -3.51059943e-01 -8.04522261e-02 1.67108014e-01\\n4.58508819e-01 -2.18350701e-02 -1.89811051e-01 -2.99764454e-01\\n3.95860560e-02 3.77959758e-01 5.05305588e-01 8.63474831e-02\\n7.30258152e-02 -1.56165272e-01 -2.71169543e-01 2.70123035e-02\\n1.75500169e-01 2.98466776e-02 1.93785593e-01 3.63993317e-01\\n-2.82878011e-01 8.58250260e-03 1.19473636e-01 3.45460862e-01\\n-4.14316356e-01 -6.23351261e-02 6.20224737e-02 3.17373157e-01\\n3.67316194e-02 3.27052832e-01 -1.34708345e-01 1.85529217e-01\\n-1.66710943e-01 -4.70392764e-01 5.70532560e-01 -2.17126116e-01\\n-1.36575192e-01 1.68327108e-01 6.94092363e-02 2.44138971e-01\\n-1.14254929e-01 -1.17895819e-01 1.64109247e-03 4.06686127e-01\\n-5.18842228e-02 3.20951104e-01 -2.58050680e-01 -9.74666849e-02\\n-2.91773200e-01 2.58951038e-01 -8.06380510e-02 7.06642270e-02\\n-3.44972461e-01 2.13502273e-01 1.12708852e-01 1.11880980e-01\\n1.75762936e-01 -7.54433870e-02 -1.02868341e-01 -2.08454639e-01\\n-3.53586167e-01 -3.10836196e-01 2.90875375e-01 1.01799428e-01\\n2.51442820e-01 -3.29822004e-01 -6.79453388e-02 -1.98518038e-01\\n-2.18332112e-01 -4.15921509e-01 -1.27230614e-01 5.91702163e-02]]',\n", + " 'job_description': 'Job Informationen Tasks: - Conceptualise and build new features for shared electric mobility systems - Maintain and scale our current infrastructure - Provide technical support for our customers Requirements: - 4+ years professional work experience in software development - Deep knowledge of Ruby on Rails or any other framework - Experience with relational databases (e.g. PostgreSQL) - Experience building large-scale applications - On top of software design and web trends - Familiar with GitHub work flow - Strong communication skills in English and German Benötigte Skills Englisch PostgreSQL Ruby Support',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Infrastructure\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Scale (Map)\", \"Github\", \"Ruby (Programming Language)\", \"Software Development\", \"Relational Databases\", \"PostgreSQL\", \"Maintainability\", \"Electricity\", \"E (Programming Language)\", \"Web Trends\", \"Ruby On Rails\", \"Technical Support\", \"Customer Requirements Analysis\", \"Software Design\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Japanese', 'Southern Sotho', 'Hausa', 'Limburgan']\"},\n", + " {'company_id': '41',\n", + " 'job_title': 'software engineer - javascript/scala/machine learning',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.19342285e-01 1.81136325e-01 4.31088746e-01 -1.60901487e-01\\n4.10918951e-01 -8.67805108e-02 -6.26184195e-02 5.22232115e-01\\n-8.42604712e-02 -2.47504920e-01 -2.18544245e-01 -3.24308634e-01\\n8.97972062e-02 1.08883873e-01 1.65337056e-01 3.10236186e-01\\n3.08304667e-01 2.56755319e-03 -3.04417580e-01 1.82255983e-01\\n2.28875801e-01 -3.78732570e-02 7.41434693e-02 7.44441450e-01\\n4.90626186e-01 1.74559981e-01 4.43047322e-02 -1.50399029e-01\\n-1.28601298e-01 -1.91238746e-01 5.72216988e-01 -4.49501425e-02\\n-6.96651191e-02 -2.08408922e-01 1.79716334e-01 9.49267820e-02\\n-1.79737762e-01 -2.00217351e-01 2.48300210e-02 2.42804617e-01\\n-3.90633553e-01 -2.98790097e-01 -1.17210681e-02 4.17491421e-02\\n-3.32288533e-01 -4.63986248e-01 2.88865060e-01 -1.55572528e-02\\n2.44128436e-01 1.31436244e-01 -4.99969244e-01 2.80061662e-01\\n-1.91263422e-01 -1.31407812e-01 3.73712003e-01 6.18750751e-01\\n-3.97483185e-02 -3.61107945e-01 -5.28609037e-01 -4.22803104e-01\\n-3.90197150e-02 1.13913007e-01 -5.71367480e-02 -2.71627784e-01\\n2.34543040e-01 1.36240572e-01 8.62427987e-03 5.11701405e-01\\n-8.12334001e-01 -1.13012016e-01 -2.39662677e-01 -8.64790380e-02\\n-3.17643136e-01 -3.25453579e-02 -1.90938011e-01 -3.58071417e-01\\n-7.14236870e-02 4.61017787e-01 1.25890851e-01 1.18652925e-01\\n-9.49859694e-02 3.59456241e-01 -1.46789208e-01 4.00276482e-01\\n1.98676348e-01 2.13330477e-01 8.39599371e-02 2.44358882e-01\\n-5.49195588e-01 3.21369290e-01 1.43215090e-01 -2.22701252e-01\\n1.93573520e-01 5.26475534e-03 4.74725157e-01 2.97191720e-02\\n1.24389142e-01 4.51385528e-02 -2.31437340e-01 2.39587903e-01\\n2.43238583e-01 -2.02112943e-01 5.23226857e-02 4.25398909e-02\\n-1.64405137e-01 3.29763144e-02 -4.62663174e-02 1.28205195e-01\\n-3.40232402e-01 4.66732472e-01 2.35703960e-02 -2.01361373e-01\\n-4.33659777e-02 -5.80004752e-01 -2.80267280e-02 1.21275103e-02\\n2.44357046e-02 1.67777181e-01 9.46337134e-02 1.78465709e-01\\n1.37468755e-01 -1.52569190e-01 1.88763335e-01 8.05732965e-01\\n-1.14600785e-01 2.74602827e-02 -2.44367778e-01 3.69928777e-01\\n-1.45950541e-01 -3.67948234e-01 3.50265443e-01 1.72814861e-01\\n4.89646289e-03 -5.96176982e-02 -2.51221180e-01 4.14095700e-01\\n-5.01370132e-02 -1.51512563e-01 -3.23573977e-01 3.54495019e-01\\n-1.70885399e-01 -3.81304085e-01 4.89407748e-01 -5.46506681e-02\\n1.25963286e-01 -1.50730595e-01 -6.12580255e-02 -3.26082595e-02\\n5.54982945e-03 6.91239387e-02 -2.51286495e-02 -1.31055294e-02\\n-2.20789805e-01 -2.38931373e-01 -2.13980854e-01 1.36114031e-01\\n-1.34211496e-01 2.65044689e-01 -5.05102053e-03 -1.08604558e-01\\n3.20245087e-01 -6.41912688e-04 -3.25966150e-01 3.79401356e-01\\n-6.15211353e-02 1.22886002e-01 -1.34850800e-01 2.10042864e-01\\n-2.70947307e-01 1.36978120e-01 -6.49424717e-02 -2.85965234e-01\\n6.70593381e-01 6.31957781e-03 1.32618472e-01 5.88973686e-02\\n2.77708024e-01 -8.46680403e-02 2.79738814e-01 1.20237604e-01\\n-7.62676060e-01 3.91593635e-01 -3.30742635e-02 -1.61631200e-02\\n6.68700337e-02 -1.90229818e-01 2.35450685e-01 -2.91392654e-01\\n3.35854553e-02 2.48182975e-02 -3.72044474e-01 -3.33673626e-01\\n-2.73872346e-01 -3.98267768e-02 3.21471035e-01 -3.50116163e-01\\n-1.99006483e-01 1.43123105e-01 -4.66322035e-01 -4.17253450e-02\\n1.51570708e-01 1.00866437e-01 1.42859682e-01 1.45642295e-01\\n-1.83142051e-01 -4.79768217e-01 5.28754815e-02 -5.36527991e-01\\n-1.89959466e-01 1.07251368e-01 -2.85337418e-01 2.26660341e-01\\n7.51121566e-02 6.71514124e-02 -1.74602315e-01 -8.21924210e-03\\n-2.28629753e-01 -5.91553375e-02 2.00148404e-01 3.31991613e-02\\n3.02762836e-01 1.14476062e-01 -3.41458499e-01 5.03612757e-01\\n-2.45982364e-01 5.12931943e-01 1.23211980e-01 -8.12644958e-01\\n4.57919210e-01 5.22098422e-01 -2.13325527e-02 -4.05561537e-01\\n7.19655275e-01 -2.63673067e-01 -6.28801510e-02 1.86544225e-01\\n-5.86722374e-01 -3.16703498e-01 2.63397336e-01 -3.64431828e-01\\n-1.82355210e-01 6.45250142e-01 6.18461147e-02 6.05282821e-02\\n1.93730548e-01 -1.97166026e-01 -1.26565933e-01 1.47543490e-01\\n-1.15413450e-01 -2.15338185e-01 -4.45533901e-01 -1.61614250e-02\\n-1.49535120e-01 -4.24727201e-01 -2.33451128e-01 -4.60280031e-01\\n-9.29819867e-02 -3.33145261e-01 -2.37518898e-03 2.18881980e-01\\n1.86330870e-01 -6.08280525e-02 1.04105487e-01 6.76739886e-02\\n-1.97936013e-01 -4.13433462e-01 5.88760115e-02 -7.81613495e-03\\n3.58421952e-01 2.71300375e-01 -1.29200204e-03 9.52208489e-02\\n-1.67398865e-03 6.82544708e-01 -3.86782557e-01 -1.17535561e-01\\n1.77442014e-01 1.73393533e-01 4.80011627e-02 -1.06415316e-01\\n9.08299237e-02 2.05960900e-01 -4.11512136e-01 -1.17996456e-02\\n-1.65786251e-01 1.37561172e-01 2.29779616e-01 4.46937270e-02\\n-1.96353987e-01 -3.24490607e-01 -1.54591382e-01 2.63263792e-01\\n-3.61809939e-01 -1.76518843e-01 6.08534455e-01 1.10960938e-01\\n1.41477585e-01 1.86081737e-01 2.43466511e-01 -1.03352562e-01\\n-2.06096902e-01 -2.26634204e-01 1.73313707e-01 2.37825394e-01\\n7.25073889e-02 7.70985857e-02 -2.84317671e-03 -4.88712609e-01\\n-2.71430135e+00 -5.74638397e-02 1.18139923e-01 -1.38285458e-01\\n1.94370031e-01 -2.54102677e-01 1.24196716e-01 -8.79071206e-02\\n-3.64636928e-01 -5.31982817e-02 -1.62161618e-01 -2.50386357e-01\\n2.40171865e-01 3.31475586e-01 1.66182712e-01 2.62444466e-01\\n7.93102533e-02 -3.50262046e-01 -2.56643910e-02 2.82971740e-01\\n-2.40375012e-01 -6.87352836e-01 1.89345852e-01 -7.94614404e-02\\n2.99564868e-01 2.21134931e-01 -4.58120793e-01 -1.83168411e-01\\n-3.27253431e-01 -3.39169681e-01 1.92315131e-01 -3.81347001e-01\\n6.05004318e-02 3.56053263e-01 2.52672285e-01 -1.59194663e-01\\n1.31252840e-01 -3.75197798e-01 -1.64503768e-01 -4.23420101e-01\\n8.64471272e-02 -6.99187517e-01 8.35179910e-02 -1.27526388e-01\\n6.57840014e-01 -3.28761876e-01 1.09929599e-01 8.71486380e-04\\n1.15118906e-01 1.28030613e-01 -6.34490454e-04 1.09039731e-01\\n-2.71551907e-01 -2.59697855e-01 -1.02733955e-01 -1.56282812e-01\\n4.04876202e-01 6.70983613e-01 -2.06097111e-01 1.48781005e-03\\n-4.46171127e-02 -2.83934057e-01 -4.17712122e-01 -4.10557717e-01\\n-2.13394880e-01 -2.10029364e-01 -6.52326882e-01 -3.83003980e-01\\n-4.71648835e-02 -1.27612293e-01 -1.95811931e-02 5.00996768e-01\\n-3.61822158e-01 -2.57012248e-01 -1.07394345e-01 -5.99090993e-01\\n2.63237059e-01 -6.26404658e-02 1.00035612e-02 -1.66280985e-01\\n-2.05776781e-01 -4.43390340e-01 4.44217511e-02 -3.27809416e-02\\n-9.73256677e-02 -3.13276112e-01 1.29013404e-01 -2.09248677e-01\\n-2.82249212e-01 -4.64406490e-01 2.94110566e-01 1.80835947e-01\\n2.89424986e-01 1.72436297e-01 1.29402593e-01 -1.02223583e-01\\n1.11000828e-01 -4.63343551e-03 3.37298103e-02 -3.94715726e-01\\n6.76604435e-02 2.66956119e-03 4.64268237e-01 -2.20577046e-01\\n1.15164973e-01 9.65706706e-02 -2.71096319e-01 -1.07297376e-01\\n2.31599063e-01 2.05715448e-02 4.86085974e-02 -2.81832665e-01\\n3.06731254e-01 -3.31665426e-01 -7.12709725e-02 1.13251600e-02\\n3.07341088e-02 6.67900860e-01 -5.88539951e-02 -3.51268977e-01\\n-2.49013126e-01 5.05070508e-01 6.33997796e-03 -1.83792219e-01\\n-2.04912558e-01 1.87133789e-01 -3.54243994e-01 -9.99365300e-02\\n2.29420699e-02 -1.52171165e-01 -3.42947274e-01 -9.42999870e-02\\n-5.12667149e-02 3.82685244e-01 3.00624460e-01 2.15948790e-01\\n2.79616173e-02 -4.22449261e-01 6.12730682e-02 3.19320142e-01\\n1.97118789e-01 3.32690448e-01 1.68936417e-01 -2.76271641e-01\\n1.28320202e-01 3.88148159e-01 -1.74902081e-01 2.47394174e-01\\n-2.28138819e-01 -2.66975965e-02 -4.52379197e-01 -3.20220023e-01\\n-2.45751008e-01 -2.66670674e-01 1.50615126e-01 2.59572923e-01\\n9.42377187e-03 2.96353381e-02 6.87748194e-02 -3.58052462e-01\\n3.32783669e-01 -3.63968872e-02 2.58961469e-01 1.07383698e-01\\n5.93451075e-02 6.23828888e-01 1.38840020e-01 -5.25347255e-02\\n-1.84954688e-01 3.73546444e-02 -1.58487365e-01 -2.47711375e-01\\n3.01026506e-03 -4.25581127e-01 -2.28361338e-01 3.69653970e-01\\n3.76352556e-02 -2.49631286e-01 -1.13479912e-01 2.19415635e-01\\n5.15291952e-02 -2.18812093e-01 -1.51501268e-01 3.01592462e-02\\n3.78630966e-01 1.53287947e-01 1.86932430e-01 -5.11538029e-01\\n9.72272828e-02 -2.30892524e-02 -1.80621184e-02 4.41557646e-01\\n1.39098063e-01 1.25697991e-02 -2.61261374e-01 -3.08790058e-01\\n3.34632576e-01 -3.42663169e-01 -1.95402093e-02 2.01656707e-02\\n3.63726839e-02 -1.25110298e-01 -4.24573243e-01 9.10349935e-02\\n-6.42896369e-02 -1.16678514e-01 -7.60053173e-02 6.93906471e-02\\n1.95207477e-01 -3.03827897e-02 -6.43123865e-01 -2.44738027e-01\\n-2.82264322e-01 1.56612977e-01 -4.07660613e-03 -4.70483243e-01\\n-3.52718569e-02 -1.61820143e-01 -6.25119627e-01 3.13072085e-01\\n-2.71256030e-01 -1.46929668e-02 1.92158967e-01 3.49590811e-03\\n-3.72740060e-01 -2.59224661e-02 1.99121699e-01 1.96224809e-01\\n-3.38736057e-01 -3.04571658e-01 8.51263553e-02 -9.57494140e-01\\n6.92129508e-02 -3.61912027e-02 -1.63678098e-02 1.53977156e-01\\n6.73978403e-02 -8.00652921e-01 1.17523737e-01 -2.42552936e-01\\n-8.47847611e-02 -8.27525035e-02 -2.08409399e-01 -5.94122231e-01\\n4.70246971e-02 8.07676241e-02 -1.07013792e-01 2.92061239e-01\\n-4.20337498e-01 3.18811625e-01 -6.62466809e-02 4.21071537e-02\\n2.52626725e-02 -2.71317542e-01 1.52913183e-01 -4.19835389e-01\\n-2.17567176e-01 -1.13802657e-01 -2.68537283e-01 -2.79424906e-01\\n-2.64740400e-02 -2.29366049e-01 -7.39524812e-02 1.20868616e-01\\n3.12948197e-01 2.73460913e-02 -9.62467045e-02 -1.79499775e-01\\n1.02025084e-01 -4.32507277e-01 7.13376701e-02 -1.68989927e-01\\n-9.91764069e-02 -1.98152885e-01 2.32822016e-01 1.86861813e-01\\n9.11485553e-02 -4.01329190e-01 4.16251004e-01 -3.85343075e-01\\n-4.98724461e-01 -2.77024768e-02 -3.82275097e-02 -2.71633035e-03\\n4.49894577e-01 -4.09570068e-01 -7.89676607e-02 4.51759219e-01\\n9.49817598e-02 -5.09302355e-02 4.08575326e-01 -2.04133227e-01\\n-6.54539764e-02 3.09752375e-01 -5.06745756e-01 2.93327272e-02\\n7.54946113e-01 7.50260726e-02 1.30431861e-01 1.87825441e-01\\n5.32671958e-02 1.56089142e-01 4.70147043e-01 8.10024794e-03\\n-1.22578867e-01 3.26220810e-01 1.49382323e-01 -5.15533209e-01\\n-1.32689387e-01 -2.19930008e-01 -1.46906778e-01 -3.41371298e-01\\n6.50402606e-01 3.04198772e-01 -2.86466449e-01 -2.05696926e-01\\n-2.29582801e-01 -2.32447207e-01 1.33902729e-01 -7.73866102e-02\\n1.74898244e-02 -4.98972051e-02 4.47491139e-01 2.11403109e-02\\n4.27219003e-01 5.04204273e-01 -9.83430222e-02 -2.72266924e-01\\n-1.04540102e-01 2.06998542e-01 -1.08292736e-01 2.92599291e-01\\n-9.69199836e-02 5.14105797e-01 3.54764275e-02 8.58753994e-02\\n-1.09720446e-01 -1.90725680e-02 9.30355564e-02 1.53255817e-02\\n8.87968764e-02 2.73327738e-01 2.41285786e-01 4.79711711e-01\\n3.92003149e-01 4.46622759e-01 2.95904219e-01 3.48261893e-02\\n5.73025823e-01 5.92399836e-01 4.27761525e-01 5.42831942e-02\\n-5.47832288e-02 2.84770448e-02 3.61264087e-02 1.00322232e-01\\n3.54003787e-01 3.12172234e-01 5.90910055e-02 9.76930201e-01\\n4.03424442e-01 3.03128541e-01 6.96769953e-01 -5.57572961e-01\\n-3.79510522e-01 -1.08129755e-01 4.30003881e-01 -4.55606550e-01\\n-6.66758642e-02 1.36496872e-01 -1.10436454e-01 2.07791626e-01\\n-3.27172130e-01 -1.52637452e-01 -2.90899314e-02 1.88968569e-01\\n2.36313306e-02 -3.48529741e-02 -1.58427462e-01 2.42009610e-02\\n-3.43573332e-01 -2.27847427e-01 -4.82903779e-01 -2.36538006e-03\\n-2.76970983e-01 -2.69974768e-01 -1.45564815e-02 -1.03661746e-01\\n-2.57667601e-01 -2.94177145e-01 -1.21997736e-01 3.09795402e-02\\n3.50861400e-01 -1.64819911e-01 -1.37814760e-01 -2.99447089e-01\\n3.19494784e-01 2.33509839e-01 6.21406555e-01 -1.31062074e-02\\n4.71575856e-02 -2.93080389e-01 -2.61988401e-01 9.25703645e-02\\n1.59121886e-01 5.10298051e-02 1.12252288e-01 2.82947332e-01\\n-2.32727319e-01 -9.53059196e-02 1.26616910e-01 3.61890644e-01\\n-3.67958635e-01 -3.73639390e-02 -7.27146585e-03 2.25033611e-01\\n1.22023478e-01 1.49894476e-01 -2.97193050e-01 1.08350821e-01\\n-1.88325658e-01 -5.72522521e-01 2.64368594e-01 -3.25062014e-02\\n-6.84223920e-02 -7.28884935e-02 2.78501868e-01 2.43510440e-01\\n-1.50746718e-01 -7.76211023e-02 -7.21939877e-02 1.33978903e-01\\n1.19384579e-01 3.44789654e-01 -3.54178101e-01 -2.20660478e-01\\n-1.99023068e-01 2.45924294e-01 -3.51511598e-01 1.08043261e-01\\n5.17625101e-02 4.13835257e-01 5.78689836e-02 -2.94870231e-03\\n3.73335868e-01 -1.30798388e-02 -1.92066714e-01 -2.05476671e-01\\n-1.03885517e-01 -3.33876401e-01 -2.55587772e-02 -1.19787760e-01\\n2.04682708e-01 -3.53458792e-01 -1.34133622e-01 -2.62693256e-01\\n-1.05370209e-01 -1.85946152e-01 4.05000933e-02 1.02388568e-01]]',\n", + " 'job_description': 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer - Javascript/Scala/Machine LearningYour mission : The IIPP Chair at the College of Management at EPFL Switzerland, is seeking a Software Engineer - Javascript/Scala/Machine Learning to lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io. The IIPP Chair is the Chair of Innovation and Intellectual Property Policy of Prof. de Rassenfosse. The Chair is part of the College of Management at EPFL. Main duties and responsibilities include : Lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io Your profile : Self-motivated and talented software engineer who holds a master’s degree in computer science or related disciplines Two years of experience in web development, including Javascript/HTML5/CSS Two years of experience in back-end development Strong knowledge of object-oriented and functional programming languages (preferably Scala) Keen interest in algorithms and machine learning Some knowledge of MySQL and UNIX Familiar with continuous integrating and delivery (DevOps) We offer : We offer a competitive salary commensurate with skills and experience, and subject to EPFL pay scale. Flexible working conditions in a highly international and stimulating environment. EPFL is a highly international, world-class engineering university. It offers many CS-related events and training and hosts a vibrant entrepreneurial community. EPFL is an equal-opportunity employer. Candidates will be recruited on merit only. If you are a passionate engineer and you fit the above criteria, we want to hear from you! Start date : To be agreed Term of employment : Fixed-term (CDD) Work rate : 70-100% Duration : 1 year, renewable Contact : Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Research\", \"Management\", \"Communications\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"JavaScript Engine\", \"Machine Learning\", \"Continuous Integration\", \"Educational Research\", \"Scale (Map)\", \"Scala (Programming Language)\", \"HTML5\", \"Machining\", \"Web Development\", \"Software Engineering\", \"Hosting\", \"Library For WWW In Perl\", \"Equalization\", \"Intellectual Property\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Functional Programming\", \"Back End (Software Engineering)\", \"Algorithms\", \"Unix\", \"Web Platforms\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Nyanja', 'Lingala']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.59864122e-01 3.01538646e-01 4.92225647e-01 -1.93152279e-02\\n5.17405212e-01 -9.19268429e-02 -6.95516883e-06 1.06248260e-01\\n-6.64190203e-02 -2.92094737e-01 -9.83332768e-02 -3.28181207e-01\\n-2.64743507e-01 -2.58114394e-02 7.53682405e-02 5.12615025e-01\\n1.70055211e-01 7.77240098e-02 -1.87301069e-01 2.80951560e-01\\n1.21073343e-01 -2.74600759e-02 -4.42800447e-02 5.66475034e-01\\n4.12018746e-01 -1.38704136e-01 -1.26830712e-01 2.70555969e-02\\n-3.42648953e-01 -1.78577796e-01 3.81166250e-01 4.25771847e-02\\n-1.17943630e-01 -3.72847646e-01 4.66185845e-02 1.27303079e-01\\n-2.22045049e-01 2.76031308e-02 -3.51983421e-02 1.03873990e-01\\n-4.32303637e-01 -3.11049253e-01 3.57612111e-02 -2.33242828e-02\\n-3.49526763e-01 -2.68202543e-01 -4.19423170e-02 -1.39751239e-02\\n9.03236959e-03 7.79562965e-02 -5.32114685e-01 3.80242199e-01\\n-2.69284278e-01 -9.97092426e-02 2.24697798e-01 6.56659663e-01\\n7.67930076e-02 -5.57321370e-01 -3.82070780e-01 -3.01237315e-01\\n1.77832127e-01 -1.50176451e-01 1.25642329e-01 -1.48474336e-01\\n4.21092331e-01 -1.06958576e-01 -1.05356105e-01 3.83905947e-01\\n-6.81691289e-01 -1.38567016e-02 -2.53401995e-01 2.79064290e-03\\n-4.38649952e-01 5.29891253e-02 -3.99499267e-01 -8.38649869e-02\\n-6.04773983e-02 4.80339736e-01 2.21692324e-02 3.79781537e-02\\n-2.34058604e-01 2.17221811e-01 -2.03327656e-01 1.90754235e-01\\n3.80656809e-01 1.14630893e-01 2.22742021e-01 3.41940671e-01\\n-5.47518134e-01 3.31483841e-01 2.68400103e-01 -3.41912478e-01\\n1.91628218e-01 1.33438006e-01 4.77975100e-01 2.63423085e-01\\n-1.78412739e-02 1.80785745e-01 -8.81461501e-02 2.55364358e-01\\n1.91132396e-01 -2.52167821e-01 8.48064870e-02 -8.06812793e-02\\n-1.30314350e-01 -8.67485255e-02 -1.68644059e-02 2.57980764e-01\\n-2.68361747e-01 3.33175510e-01 2.54696757e-01 -1.35289177e-01\\n-4.78511490e-02 -6.11057043e-01 -7.95383751e-02 -7.19936714e-02\\n5.72977066e-02 2.38087133e-01 3.62203568e-01 1.16531141e-01\\n2.39463598e-01 1.35905549e-01 2.38074765e-01 9.82580721e-01\\n-3.87874171e-02 1.10183433e-01 -2.63708353e-01 4.13343430e-01\\n2.08525300e-01 -2.46381283e-01 2.01551408e-01 2.47544348e-01\\n6.16608746e-02 -8.63595977e-02 -2.04890013e-01 3.36909801e-01\\n-1.61743313e-01 -1.73529401e-01 -2.74856210e-01 5.60133122e-02\\n-2.49008551e-01 -4.26667213e-01 5.18822372e-01 1.06489323e-01\\n1.59596160e-01 -9.47507471e-02 -6.73094988e-02 -1.66072190e-01\\n-4.67353500e-02 3.50761533e-01 -3.32292989e-02 2.48569608e-01\\n-3.27590793e-01 -2.84367770e-01 -2.46967912e-01 4.21100557e-01\\n-1.73212677e-01 4.67419289e-02 -1.21566944e-01 -1.21808968e-01\\n2.57509410e-01 2.38048896e-01 -4.11607116e-01 1.34441152e-01\\n-5.14818691e-02 -3.59558523e-01 -3.57041880e-02 3.56209159e-01\\n-1.29884079e-01 3.26764323e-02 -7.54186837e-03 -2.32915848e-01\\n5.61516702e-01 2.85182714e-01 3.25433910e-01 -8.03947449e-02\\n3.30582738e-01 -1.81907341e-01 2.18693689e-01 1.99648768e-01\\n-5.89409471e-01 4.15895998e-01 -1.05789028e-01 -1.89027473e-01\\n1.09639853e-01 1.00847103e-01 5.01944900e-01 -2.90378660e-01\\n-4.91837896e-02 -2.57034332e-01 -4.34662163e-01 -4.49825138e-01\\n-3.22791100e-01 1.10766152e-02 4.46435839e-01 -4.51394945e-01\\n-1.21058732e-01 2.11182460e-01 -6.09888434e-01 -1.75338849e-01\\n1.87866002e-01 1.74391240e-01 1.47711277e-01 2.34641284e-02\\n-8.53154808e-02 -6.97391510e-01 5.51519208e-02 -5.22673011e-01\\n-5.18987417e-01 8.76995027e-02 -2.96523541e-01 2.10182965e-01\\n3.31274606e-02 5.40682441e-03 -1.49634495e-01 2.03421026e-01\\n-3.56682509e-01 -1.99454594e-02 1.65910304e-01 1.75335377e-01\\n2.46710494e-01 -1.57050195e-03 -4.99556065e-01 5.07808387e-01\\n-2.18212441e-01 6.11273348e-01 2.49145105e-01 -9.00253415e-01\\n6.35109961e-01 5.73513694e-02 -1.24825630e-02 -2.63666719e-01\\n4.33391094e-01 -3.98532391e-01 3.80166657e-02 1.23577975e-01\\n-1.68950275e-01 -1.40046239e-01 3.12570214e-01 -7.61174932e-02\\n-2.69749820e-01 6.42573714e-01 2.15982303e-01 -2.61650681e-02\\n2.50492066e-01 -3.85117650e-01 -2.47803584e-01 -4.13786955e-02\\n-1.12726152e-01 -2.61890411e-01 -4.39849228e-01 1.86587662e-01\\n-3.18504013e-02 -5.35001218e-01 -7.08940476e-02 -4.30322260e-01\\n-2.33438596e-01 -4.32938427e-01 -1.97027549e-01 4.54276919e-01\\n1.88348785e-01 6.21834695e-02 3.20143588e-02 -4.58779819e-02\\n-4.33901772e-02 -6.24636889e-01 -1.62761137e-01 9.73014534e-02\\n5.06425023e-01 2.63491809e-01 1.41985163e-01 -6.24018572e-02\\n-4.91994806e-03 4.97716397e-01 -2.67108440e-01 -3.52781087e-01\\n8.63682255e-02 9.04444605e-02 2.64750551e-02 -1.06052078e-01\\n1.41632920e-02 4.10472780e-01 -1.07792430e-01 4.31825630e-02\\n1.25971502e-02 -1.12058319e-01 3.56061667e-01 -5.60762286e-02\\n-2.41172060e-01 -1.49076059e-01 -8.81135613e-02 2.92252868e-01\\n-5.95040143e-01 -2.08458573e-01 5.02864122e-01 3.11905831e-01\\n1.87737644e-01 1.34885728e-01 2.62456089e-01 -1.29248559e-01\\n-3.22163254e-01 -1.52315065e-01 1.90079495e-01 1.43186569e-01\\n2.36036703e-02 1.99365597e-02 -2.45251358e-01 -5.29553533e-01\\n-3.26959872e+00 -2.56146193e-01 1.39366776e-01 -2.42912218e-01\\n1.43636286e-01 -1.62987590e-01 9.23383012e-02 -1.38556454e-02\\n-2.44086832e-01 7.84183592e-02 -2.43884385e-01 -1.80349231e-01\\n-4.01683226e-02 2.96378404e-01 7.76180178e-02 1.81381047e-01\\n2.45224149e-03 -1.63476080e-01 -8.22806954e-02 3.97026300e-01\\n-1.26145139e-01 -7.01179564e-01 1.32919654e-01 -5.65961711e-02\\n1.30506501e-01 5.67401387e-02 -4.03549492e-01 -7.06139728e-02\\n-2.35962436e-01 -2.98038751e-01 1.25317633e-01 -3.09304535e-01\\n-1.92793623e-01 2.53399253e-01 1.65659562e-01 -9.27565321e-02\\n-1.29662212e-02 -3.49138975e-01 -1.12010121e-01 -5.05290031e-01\\n7.76432753e-02 -5.86658716e-01 8.87125134e-02 -2.03306004e-01\\n6.57664299e-01 -3.64288121e-01 1.56203970e-01 1.70474887e-01\\n2.02240705e-01 1.68683037e-01 5.92369772e-02 -5.20663895e-02\\n-2.90857226e-01 -4.06320691e-01 -8.09175894e-02 -2.17727020e-01\\n5.17106473e-01 4.68430668e-01 -4.91501950e-02 3.03255431e-02\\n1.13591209e-01 -3.69442880e-01 -4.03996915e-01 -5.20252049e-01\\n-2.51734138e-01 -1.29451543e-01 -5.87655067e-01 -4.52263981e-01\\n-1.27599031e-01 -2.38071149e-03 -2.50093818e-01 6.46669745e-01\\n-3.24104726e-01 -3.92304540e-01 -3.73162217e-02 -5.24602532e-01\\n1.87518597e-01 -3.49958479e-01 6.42570332e-02 -1.86443344e-01\\n-4.13404942e-01 -5.62080801e-01 2.08511144e-01 -8.77109766e-02\\n-1.69117495e-01 -3.61166485e-02 -9.99097899e-02 -2.33742699e-01\\n-3.10763180e-01 -3.86143625e-01 4.90192920e-01 4.20660935e-02\\n4.25317675e-01 1.39293611e-01 3.89141917e-01 1.32936522e-01\\n4.03480977e-01 -1.96240693e-01 3.93719971e-02 -3.54624540e-01\\n6.38450384e-02 6.46387115e-02 6.41743839e-01 -2.84381360e-01\\n1.04359522e-01 7.67790973e-02 -2.27636725e-01 -1.99619364e-02\\n4.57164526e-01 1.69573650e-02 2.07318012e-02 -3.37012000e-02\\n3.32695514e-01 -5.97836673e-01 -2.73889452e-01 2.34101996e-01\\n4.13223132e-02 6.49182141e-01 3.37538421e-02 -4.91220862e-01\\n-2.71217287e-01 4.59119409e-01 -1.43904790e-01 -2.12113976e-01\\n-1.99332416e-01 1.45009965e-01 -1.81290239e-01 2.70041376e-01\\n4.69088070e-02 -2.03420222e-01 -4.02831972e-01 -9.01431218e-02\\n6.13312051e-02 2.60193497e-01 2.71892309e-01 -2.74077579e-02\\n-4.06201836e-03 -1.58637792e-01 -1.52695149e-01 7.89160505e-02\\n3.30333441e-01 3.19285154e-01 1.94919333e-01 -2.35454082e-01\\n-7.95873031e-02 2.04053357e-01 -2.35418424e-01 2.06877843e-01\\n-2.08154380e-01 3.31962258e-02 -5.25831640e-01 -2.77449638e-01\\n-1.47370875e-01 -3.37646484e-01 2.20849395e-01 2.93827713e-01\\n2.09054142e-01 -6.71690479e-02 6.84492141e-02 -4.79559898e-01\\n4.10875469e-01 7.43935779e-02 1.96158677e-01 1.56394675e-01\\n-1.92992594e-02 6.59825265e-01 1.17858062e-02 -1.81324091e-02\\n-3.01163476e-02 -5.75909987e-02 -3.08191627e-01 -2.60751724e-01\\n9.10956711e-02 -3.14819157e-01 -1.23318978e-01 5.24835408e-01\\n1.49772733e-01 -2.34066278e-01 -1.66986242e-01 3.97266179e-01\\n7.12550655e-02 -1.62122965e-01 -1.32850647e-01 6.72698468e-02\\n2.11275071e-01 1.72613963e-01 2.40995184e-01 -4.10565406e-01\\n-4.05843705e-02 -3.10417935e-02 -6.96671382e-02 5.03475785e-01\\n1.25251353e-01 2.01601252e-01 -1.01759590e-01 -2.48495579e-01\\n5.82380116e-01 -2.04682499e-02 -1.18128799e-01 -4.54731882e-02\\n1.32655933e-01 -2.05148935e-01 -4.22825307e-01 -1.48797454e-02\\n1.22733302e-02 -2.95715183e-01 8.09626877e-02 -2.39419402e-03\\n1.69533700e-01 -6.60513341e-02 -4.73624647e-01 -2.38233864e-01\\n-3.11098188e-01 -1.18043944e-01 5.20513542e-02 -4.90924299e-01\\n4.85214079e-03 -1.25277132e-01 -6.31405234e-01 2.65420794e-01\\n-2.04348564e-01 3.50211258e-03 1.35872081e-01 2.49604970e-01\\n-2.69677162e-01 -1.83686584e-01 9.67645794e-02 1.37023777e-01\\n-3.51724833e-01 -2.00381711e-01 1.19880907e-01 -9.52559352e-01\\n5.19246198e-02 1.61693022e-01 -1.08523816e-01 2.53875321e-03\\n-1.64032672e-02 -6.64067209e-01 1.24535039e-01 -4.12667274e-01\\n-1.34206414e-02 7.90412724e-02 -2.50994086e-01 -3.47121418e-01\\n2.01361716e-01 -2.93696336e-02 -3.68284017e-01 4.87604827e-01\\n-4.26546991e-01 3.88386011e-01 7.84319341e-02 1.04678035e-01\\n1.24918118e-01 -1.88159287e-01 1.81690618e-01 -1.35894120e-01\\n-4.59107786e-01 -2.22340658e-01 -4.21518594e-01 -2.77780086e-01\\n1.34322077e-01 -2.45887846e-01 -1.57188058e-01 -1.29125444e-02\\n4.84645724e-01 2.35253036e-01 -7.13750720e-02 -2.21771553e-01\\n1.53204411e-01 -4.40131992e-01 1.11964099e-01 -2.52618372e-01\\n-1.95792317e-02 -4.66670133e-02 1.40758798e-01 -8.42214897e-02\\n3.26356702e-02 -1.74794853e-01 5.92158973e-01 -2.18197331e-01\\n-2.50208467e-01 -8.78116339e-02 7.22762495e-02 1.20371886e-01\\n2.83597827e-01 -4.17058945e-01 6.86930344e-02 2.33645871e-01\\n1.64324239e-01 6.05717488e-02 2.79225081e-01 -7.36008212e-02\\n-8.77946019e-02 2.06249699e-01 -5.91637492e-01 1.02338456e-01\\n7.57228196e-01 2.02817097e-01 1.55319855e-01 1.45789981e-01\\n2.84777373e-01 1.77202448e-01 5.70581317e-01 1.84486229e-02\\n-7.34474659e-02 3.62903565e-01 -3.99426650e-03 -4.75134552e-01\\n-1.23706661e-01 -2.29985029e-01 -1.92412928e-01 -4.19680715e-01\\n5.49009800e-01 3.71648580e-01 -4.65696782e-01 -2.30238810e-01\\n-1.29057728e-02 -1.03646725e-01 3.64610851e-01 -1.01651683e-01\\n-6.73276484e-02 -5.87902963e-02 5.38373172e-01 -7.31145665e-02\\n3.38303715e-01 4.99626279e-01 -2.01097533e-01 -3.34187925e-01\\n-1.70527264e-01 9.76514742e-02 1.37013391e-01 5.07366121e-01\\n-1.71007693e-01 1.86961353e-01 1.52872931e-02 1.47041515e-01\\n-1.74938828e-01 9.82163697e-02 2.20930487e-01 2.58166045e-02\\n2.51042783e-01 5.83751574e-02 2.25517735e-01 4.71430600e-01\\n1.13394678e-01 4.88456279e-01 2.95384139e-01 6.08368367e-02\\n3.71666372e-01 8.08836877e-01 3.67155880e-01 3.00937176e-01\\n-2.59896480e-02 1.63378909e-01 -9.98355448e-02 -8.59796032e-02\\n3.77373785e-01 4.25703257e-01 2.24330693e-01 8.33069444e-01\\n3.08897555e-01 4.10353422e-01 6.75969183e-01 -5.77205002e-01\\n-5.58773220e-01 1.33554325e-01 6.18767083e-01 -4.04591203e-01\\n-7.61713758e-02 1.50495872e-01 -3.64944220e-01 2.37548754e-01\\n-5.30530930e-01 -1.51069805e-01 8.51040985e-03 -1.56574309e-01\\n1.01066701e-01 -7.83223510e-02 -2.50930041e-01 1.06238663e-01\\n-2.21019521e-01 -1.71510994e-01 -2.78240710e-01 -1.45338535e-01\\n-3.29239786e-01 -5.51173724e-02 -5.89133166e-02 -6.80320188e-02\\n-6.16916306e-02 -3.26743186e-01 -1.34451956e-01 -2.72953957e-02\\n4.07248735e-01 -2.16173276e-01 -1.83890209e-01 -1.31166562e-01\\n-2.66194772e-02 3.19368094e-01 6.14523053e-01 -8.44864547e-03\\n1.72497988e-01 -1.19063482e-01 -3.04284185e-01 3.98241915e-02\\n7.81720281e-02 1.01284474e-01 6.30358532e-02 4.60111260e-01\\n-2.64215082e-01 -9.70120132e-02 2.11409926e-01 2.90353596e-01\\n-4.56584215e-01 -8.47727209e-02 -1.39065459e-01 1.42288044e-01\\n6.46542460e-02 2.54517913e-01 -3.19350421e-01 1.42921850e-01\\n-2.93239564e-01 -5.24355114e-01 4.81686354e-01 -2.35292703e-01\\n-8.76531675e-02 1.28701143e-02 3.11773539e-01 1.58758506e-01\\n-2.45550781e-01 -2.25622263e-02 2.71132626e-02 4.19472545e-01\\n5.02382517e-02 3.59988183e-01 -2.83442378e-01 -1.12552971e-01\\n-2.67483622e-01 2.44254291e-01 -4.52912562e-02 2.80420482e-01\\n-1.36821315e-01 4.43909645e-01 8.59643072e-02 8.66009444e-02\\n1.87259659e-01 1.11921549e-01 -2.38131568e-01 -3.17423493e-01\\n-3.41608316e-01 -1.81519330e-01 1.32211238e-01 -2.87230555e-02\\n1.65485814e-01 -3.92305672e-01 -1.13870747e-01 -1.45994261e-01\\n-1.61202058e-01 -5.10855615e-01 -1.82897329e-01 1.28261624e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is the leading private media group in Switzerland. Ihr Aufgabenbereich Architect, build and maintain a data infrastructure that is fast and reliable Develop code as part of a wider team, contributing to code review and solution design Deploy and maintain applications in production environments Build data expertise and own data quality for own areas Design, build and launch new data models, data extraction, transformation and loading processes in production Communicate and document solutions and design decisions Source and clean up complicated datasets for answering challenging business questions Work with the Google Analytics Expert to set up and maintain advanced tracking for user behaviour on the platform of our client (specification, implementation and validation) using the right tools for the right job – especially during deployment of new features Work with our engineering team to set up a new backend tracking system based on defined business requirements Ihr Profil Multiple years of experience delivering code in a production environment Experience working with large volumes of data Strong programming skills (Python, Java, C#, Go) Knowledge of relational databases, Structured Query Language (SQL), good understanding of data structures and algorithms Experience with ETL/ELT design, integrating data sets from various environments into centralised database system Analytical skills to understand the business request for which the sourced data are used Good understanding of front end technologies (web & app) and able to read, write and implement code snippets in JavaScript or Java / Swift Experience with integration of data from multiple data sources; ability to investigate and master new data sets quickly Ability to work well across a different teams and be autonomous Experience with Hadoop, MPP DB platform other NoSQL (Mongo, Cassandra) technologies is a plus Experience with Google Analytics 360, Tag Manager and Big Query is a big plus Degree in a technical subject, e.g. data analytics, statistics, maths, computer science or equivalent Ihre Chance Apply now! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript C# / C++ / C SQL Sprachen: Deutsch Englisch Job ID: 1849',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Writing\", \"Decisiveness\", \"Investigation\", \"Communications\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Data Quality\", \"Tooling\", \"NoSQL\", \"Query Languages\", \"Apache Cassandra\", \"Programming (Music)\", \"Google Analytics\", \"Computer Science\", \"Analytics\", \"Scholastic READ 180\", \"Integrated Data Viewer (IDV)\", \"Python (Programming Language)\", \"Data Extraction\", \"Maintainability\", \"E (Programming Language)\", \"Source (Game Engine)\", \"Tracking (Commercial Airline Flight)\", \"Dataset\", \"Knowledge-Based Systems\", \"Extract Transform Load (ETL)\", \"Issue Tracking Systems\", \"Building Design\", \"Minimum Data Set\", \"Swift (Programming Language)\", \"Business Requirements\", \"C (Programming Language)\", \"Logical Data Models\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Google Tag Manager\", \"Code Review\", \"Data Infrastructure\", \"Database Systems\", \"Data Structures\", \"Front End (Software Engineering)\", \"Transformation (Genetics)\", \"Validations\", \"Relational Databases\", \"Solution Design\", \"Algorithms\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Custom Backend\", \"Code Snippets\", \"Source Data\"]',\n", + " 'languages': \"['English', 'Central Khmer']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'agile java software engineer',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.78160131e-01 2.67130196e-01 5.70411026e-01 -1.30842522e-01\\n4.27903295e-01 -3.28722775e-01 1.97537974e-01 3.46200615e-01\\n-8.44845697e-02 -4.25652683e-01 -1.19350448e-01 -3.08613330e-01\\n-8.41952953e-03 1.19773164e-01 1.29989594e-01 2.47611746e-01\\n4.04780746e-01 1.38171464e-01 -9.55041274e-02 3.19136262e-01\\n1.78276554e-01 -1.57051891e-01 1.03102967e-01 6.74135029e-01\\n4.17927980e-01 7.01802000e-02 -6.03511296e-02 7.57620037e-02\\n-2.42297024e-01 -3.10805351e-01 4.87008274e-01 -3.54262851e-02\\n7.49409050e-02 -2.28499800e-01 1.24900505e-01 6.85209334e-02\\n-2.17767879e-01 8.75495002e-02 -5.37083223e-02 1.19578607e-01\\n-3.13948721e-01 -1.25577465e-01 7.07789510e-02 -1.04314327e-01\\n-2.19303936e-01 -3.89014184e-01 -7.39848893e-03 7.25653917e-02\\n1.89819425e-01 3.32725979e-02 -4.35602427e-01 3.50642622e-01\\n-2.00176999e-01 -2.84803778e-01 2.47689307e-01 5.43670714e-01\\n-1.55405909e-01 -5.20748377e-01 -3.24871689e-01 -2.50717580e-01\\n1.45558402e-01 -1.16749249e-01 8.02816227e-02 -2.44934991e-01\\n3.59537423e-01 6.29842058e-02 3.92465014e-03 3.93199325e-01\\n-7.70260811e-01 5.42437145e-03 -1.73387066e-01 -1.35564879e-01\\n-2.72316456e-01 -1.12519555e-01 -3.51108611e-01 -1.55232236e-01\\n-1.79539174e-01 4.36947197e-01 1.55413970e-01 1.08503610e-01\\n-1.17385410e-01 2.05146357e-01 -3.34686607e-01 2.76330650e-01\\n2.21717283e-01 3.08971316e-01 2.75659949e-01 2.52460808e-01\\n-4.36765432e-01 3.93524349e-01 2.42625788e-01 -3.19777071e-01\\n2.29935780e-01 1.46451071e-01 4.03820187e-01 -5.89570142e-02\\n1.41463429e-01 2.94590313e-02 -1.96779013e-01 1.65309638e-01\\n3.69472533e-01 -1.98846549e-01 -6.00538440e-02 2.01986847e-03\\n-7.43267685e-02 1.33583412e-01 4.98932041e-03 2.80165792e-01\\n-3.84351045e-01 5.49634755e-01 2.24019885e-02 -2.30682507e-01\\n-1.51326209e-01 -5.68269491e-01 -1.44323185e-01 1.39655024e-01\\n2.58465707e-02 1.59917668e-01 2.38786295e-01 2.27584794e-01\\n8.67428556e-02 9.90934074e-02 1.19210139e-01 9.16315436e-01\\n-1.28111094e-01 9.91545767e-02 -2.89951205e-01 3.57165664e-01\\n3.66935655e-02 -2.06005841e-01 2.23964259e-01 2.74577141e-01\\n1.07662916e-01 -1.02316022e-01 -1.50708601e-01 2.97133237e-01\\n4.31279764e-02 -3.11728954e-01 -2.41691485e-01 1.25943303e-01\\n-1.38290644e-01 -5.21051705e-01 6.39917731e-01 -3.27519234e-03\\n8.41241106e-02 6.24339879e-02 9.60209817e-02 -4.58950028e-02\\n-1.48156270e-01 1.59889594e-01 6.85542300e-02 1.09935053e-01\\n-2.69257754e-01 -2.52413243e-01 -3.06875736e-01 2.57043064e-01\\n-2.62502342e-01 1.46533608e-01 -1.23867430e-01 -4.90918569e-02\\n3.82819980e-01 6.09668866e-02 -2.25502297e-01 2.75058091e-01\\n-7.06931204e-02 2.13811733e-03 -1.17167935e-01 3.02860171e-01\\n-1.40975207e-01 1.25141680e-01 -2.06211321e-02 -1.34711638e-01\\n5.17798424e-01 2.26317540e-01 7.69846588e-02 -8.40425566e-02\\n3.47309917e-01 -3.58686633e-02 9.04811770e-02 -4.29619988e-03\\n-7.37084091e-01 4.08807814e-01 -4.82204109e-02 -1.06649905e-01\\n5.75965829e-02 -9.21495818e-03 1.65001914e-01 -2.82155931e-01\\n4.18692678e-02 -1.07451789e-01 -3.57686788e-01 -1.90091759e-01\\n-1.58616319e-01 -7.49249607e-02 4.68324453e-01 -3.91312480e-01\\n-1.26531288e-01 1.85602993e-01 -5.73490024e-01 1.19393408e-01\\n3.14777106e-01 1.93342060e-01 1.45430520e-01 1.44570008e-01\\n-1.11640222e-01 -5.11924684e-01 2.11566716e-01 -3.65166396e-01\\n-2.78891236e-01 2.79641569e-01 -3.12346190e-01 1.68257028e-01\\n2.17111349e-01 8.96758772e-03 -1.37938276e-01 1.41807094e-01\\n-4.42761257e-02 -9.20079127e-02 2.23289952e-01 9.25437510e-02\\n3.52800697e-01 -1.32203652e-02 -3.70376706e-01 5.63992143e-01\\n-2.03071401e-01 3.88557166e-01 1.52892739e-01 -8.03860903e-01\\n4.08387452e-01 3.94792020e-01 3.52213718e-02 -2.81041741e-01\\n6.98131740e-01 -2.74152398e-01 -4.28784601e-02 8.25850591e-02\\n-4.21643019e-01 -2.94504732e-01 1.57066926e-01 -1.86448097e-01\\n-2.19658628e-01 4.22987640e-01 5.47348894e-02 1.29318222e-01\\n2.49792367e-01 -1.30920902e-01 -1.07071862e-01 1.05863988e-01\\n-1.06433161e-01 -2.63647377e-01 -3.72839838e-01 2.37776581e-02\\n2.50276998e-02 -4.76436049e-01 -5.49099036e-02 -5.58836579e-01\\n-2.46918142e-01 -3.86386603e-01 -2.47049555e-01 2.15007216e-01\\n1.35691121e-01 1.16965301e-01 5.47121540e-02 -4.89609390e-02\\n-2.06927404e-01 -5.19196987e-01 1.23222694e-01 4.43304814e-02\\n3.43467891e-01 1.21826857e-01 -3.18867862e-02 -2.22710818e-02\\n3.42824534e-02 7.05453515e-01 -2.11628839e-01 6.15694211e-04\\n6.91623762e-02 8.28913972e-02 1.60337873e-02 -1.08357929e-01\\n-1.22740283e-04 3.91189247e-01 -3.09162945e-01 -1.56578310e-02\\n-1.42235488e-01 3.83666381e-02 3.65968645e-01 -6.36216179e-02\\n-3.55871111e-01 -3.20522130e-01 -1.06393434e-01 1.74282387e-01\\n-5.89847922e-01 -1.48637310e-01 6.87067688e-01 1.49589032e-01\\n6.67906851e-02 2.06769422e-01 1.42071083e-01 -4.09134775e-02\\n-2.27354795e-01 -1.03935920e-01 1.52507871e-01 1.56669114e-02\\n1.29046485e-01 1.95706829e-01 -1.56659871e-01 -5.51076889e-01\\n-3.72830391e+00 -1.71324745e-01 8.98214504e-02 -3.29631805e-01\\n1.52027756e-01 -1.86399892e-01 8.68831202e-02 -1.50878102e-01\\n-1.73397198e-01 4.08666395e-02 -1.14552237e-01 -1.56286731e-01\\n2.08279207e-01 1.94536641e-01 1.71355367e-01 2.57227272e-01\\n2.25260362e-01 -1.87849090e-01 4.88970848e-03 2.89439023e-01\\n-2.24580601e-01 -6.16548777e-01 2.29973063e-01 -6.47037476e-02\\n3.83559078e-01 3.53073716e-01 -4.00153965e-01 -1.12623185e-01\\n-2.75743514e-01 -1.97374463e-01 1.24730840e-01 -2.79241592e-01\\n3.31601012e-03 2.94604331e-01 1.66081578e-01 -8.70042741e-02\\n2.96152383e-01 -3.31744552e-01 6.27479628e-02 -3.89241219e-01\\n1.74452081e-01 -5.59645474e-01 -7.03067780e-02 5.43996431e-02\\n6.39945209e-01 -3.76391053e-01 1.90891057e-01 1.02454059e-01\\n7.95902759e-02 2.17858970e-01 -2.01346632e-02 -1.50116846e-01\\n-2.19345093e-01 -2.33722508e-01 -1.00256942e-01 -1.90459728e-01\\n5.33929169e-01 5.87556541e-01 -2.27276981e-01 8.02583061e-03\\n-6.55508935e-02 -3.36639315e-01 -4.93834257e-01 -3.57855290e-01\\n-2.26524517e-01 -1.04346208e-01 -5.96624136e-01 -5.67752659e-01\\n-1.71218097e-01 -9.10449252e-02 -4.40216959e-02 4.14147913e-01\\n-1.93744436e-01 -4.15538788e-01 -4.90681380e-02 -3.85631979e-01\\n7.86114857e-02 -4.94357534e-02 -5.37771452e-03 -1.25202924e-01\\n-2.06014395e-01 -5.09218276e-01 -7.52145275e-02 2.49828398e-02\\n-6.47674650e-02 -1.37344629e-01 3.04839045e-01 -9.76829082e-02\\n-3.16554099e-01 -4.87523109e-01 3.91679525e-01 1.28040938e-02\\n2.58817673e-01 2.10235849e-01 2.48568192e-01 1.72663972e-01\\n2.56440341e-01 -2.26009741e-01 1.26792520e-01 -4.11793888e-01\\n1.35020390e-01 7.07585961e-02 4.82337266e-01 -1.07088022e-01\\n1.18930280e-01 1.67146772e-01 -2.64577121e-01 -2.94025570e-01\\n3.76370728e-01 -3.30166705e-02 1.61806285e-01 -3.10271561e-01\\n3.22231591e-01 -1.36683941e-01 -2.80664504e-01 7.92777613e-02\\n3.83476205e-02 4.71915632e-01 -8.74610171e-02 -3.69709104e-01\\n-9.62346494e-02 5.35097003e-01 -1.88177824e-01 -1.67427104e-04\\n-2.11830974e-01 3.20973620e-02 -2.94778228e-01 3.28286707e-01\\n-4.83244881e-02 -1.06635749e-01 -3.32567900e-01 -1.86464563e-01\\n-6.96215853e-02 2.08774537e-01 2.94489890e-01 1.00182079e-01\\n-2.47118231e-02 -3.94922018e-01 -4.75246124e-02 8.75485912e-02\\n2.56851375e-01 2.84403503e-01 1.18227273e-01 -7.67369345e-02\\n8.29652101e-02 3.35600406e-01 -1.71246380e-01 1.55224189e-01\\n-3.13721806e-01 6.39763102e-02 -4.25272524e-01 -4.02639478e-01\\n-2.31986403e-01 -3.06628525e-01 -6.01680838e-02 2.21927524e-01\\n2.32626144e-02 -2.39521964e-03 2.18735505e-02 -3.03672373e-01\\n2.68668950e-01 6.27487525e-02 2.26384953e-01 2.74107873e-01\\n1.87287282e-03 4.94118541e-01 -7.84384727e-04 -3.94915901e-02\\n-3.00324678e-01 1.10802494e-01 -2.20425442e-01 -8.29102173e-02\\n3.37837753e-03 -4.44272190e-01 -1.32209752e-02 3.26972336e-01\\n5.79900220e-02 -2.86454082e-01 -5.97493835e-02 2.35195473e-01\\n-7.68666938e-02 -4.48539853e-01 -2.15840921e-01 1.13560982e-01\\n3.29568952e-01 5.07164150e-02 2.91123986e-01 -5.11142612e-01\\n8.33519250e-02 9.73212793e-02 -1.15607589e-01 5.45073807e-01\\n3.05423364e-02 3.50739323e-02 -5.52040674e-02 -3.14175189e-01\\n3.19339901e-01 -2.50681460e-01 3.33448537e-02 -8.31925198e-02\\n1.62728414e-01 -1.33304015e-01 -3.06916803e-01 -2.94076256e-03\\n3.52517673e-04 -1.00440748e-01 2.15996522e-02 -4.09355573e-02\\n-4.43158373e-02 2.01369636e-02 -5.02475560e-01 -3.23775202e-01\\n-2.57070422e-01 -9.67437550e-02 2.19932687e-03 -4.00352716e-01\\n-3.64234149e-02 -4.19948027e-02 -4.77411181e-01 3.94175589e-01\\n-1.46072611e-01 -4.90791455e-04 1.55977502e-01 -8.61729905e-02\\n-3.73163462e-01 -3.83569337e-02 2.16491953e-01 2.10918382e-01\\n-2.16345936e-01 -2.59070873e-01 -6.24600127e-02 -1.10474896e+00\\n2.63509244e-01 -2.46847384e-02 -7.20799789e-02 5.93402609e-02\\n-9.16685835e-02 -5.03946543e-01 1.96820080e-01 -4.12676513e-01\\n-5.27056418e-02 1.51656559e-02 -1.65168583e-01 -4.74302292e-01\\n-4.89118919e-02 5.62123209e-02 -2.26855174e-01 3.94708395e-01\\n-3.31402868e-01 3.31574947e-01 -1.03666954e-01 5.84355146e-02\\n-1.45087034e-01 -2.23123193e-01 1.06916204e-01 -4.24630284e-01\\n-3.09288025e-01 -2.31434837e-01 -2.15537310e-01 -1.70070767e-01\\n-8.82015750e-02 -2.00532913e-01 -3.83642726e-02 1.08000532e-01\\n2.51496464e-01 1.73931494e-01 -5.82006983e-02 -2.49837428e-01\\n1.08384199e-01 -5.00939012e-01 -4.36579511e-02 -2.82342821e-01\\n-6.20780326e-02 -1.26743168e-01 1.16164163e-01 1.11161567e-01\\n6.64132312e-02 -4.67193484e-01 3.77616435e-01 -1.61529690e-01\\n-2.80291766e-01 6.84437156e-02 2.38526743e-02 7.24026784e-02\\n3.74615192e-01 -4.14081722e-01 -9.04863402e-02 2.89408296e-01\\n1.19639106e-01 5.71670868e-02 2.04903811e-01 -4.17599566e-02\\n-1.32050589e-01 3.47151548e-01 -3.50301951e-01 9.01031047e-02\\n5.61449945e-01 8.06979015e-02 1.73084512e-01 2.13066146e-01\\n2.37463295e-01 3.62316310e-01 4.74107653e-01 -5.36775813e-02\\n-5.19113988e-02 4.11155611e-01 7.61439726e-02 -6.19301081e-01\\n1.48386478e-01 4.43577990e-02 -3.26468527e-01 -2.10809857e-01\\n6.45228148e-01 4.67015415e-01 -2.88062423e-01 -2.36867055e-01\\n-2.73070455e-01 -2.52777070e-01 8.47028643e-02 -7.24041313e-02\\n2.25451529e-01 -2.22852856e-01 4.90953773e-01 -1.77075304e-02\\n1.87141493e-01 4.55277324e-01 -2.10530549e-01 -3.59930068e-01\\n3.67894806e-02 2.05321908e-01 8.33088607e-02 2.98135519e-01\\n-2.14313731e-01 2.41460413e-01 -1.35950856e-02 2.01801136e-01\\n-7.62269348e-02 1.24031857e-01 6.46254346e-02 8.95379260e-02\\n2.02929661e-01 -1.92856491e-02 2.75060028e-01 4.51842755e-01\\n3.41969728e-01 4.15778846e-01 2.44980484e-01 9.40669477e-02\\n4.63562518e-01 4.92498696e-01 4.45984185e-01 2.47861713e-01\\n-1.06808068e-02 4.38526273e-02 1.32200215e-02 -1.39781699e-01\\n2.45464474e-01 3.39424640e-01 -6.48410097e-02 8.55444133e-01\\n4.43055153e-01 2.56891429e-01 7.40794480e-01 -5.58294594e-01\\n-3.70125920e-01 -1.38275921e-01 3.91056746e-01 -3.96575600e-01\\n-1.15958788e-01 9.43519846e-02 -2.07092538e-01 1.77408889e-01\\n-4.14318413e-01 -2.09130749e-01 -7.58591145e-02 3.29313502e-02\\n1.40814796e-01 -6.35308400e-02 -2.50638902e-01 -1.40360564e-01\\n-2.42124721e-01 -1.93662345e-01 -5.09034753e-01 6.81995153e-02\\n-1.54312879e-01 -2.45305330e-01 -1.49871469e-01 -1.85353816e-01\\n-4.32178490e-02 -4.06291187e-01 -1.60035998e-01 1.19264856e-01\\n1.79342508e-01 -1.68786258e-01 -1.27332389e-01 -1.46234676e-01\\n2.40853474e-01 2.32593626e-01 5.55238843e-01 2.75885966e-02\\n8.89078528e-02 -2.35266656e-01 -1.19881399e-01 1.21910468e-01\\n1.81221217e-01 1.08767092e-01 3.05743776e-02 3.64834219e-01\\n-3.27006608e-01 -2.13956803e-01 -3.76910903e-02 4.96911436e-01\\n-4.61899966e-01 6.40120506e-02 2.65698172e-02 2.82695562e-01\\n3.71912271e-02 1.06316939e-01 -1.28976256e-01 6.62880391e-02\\n-1.35359108e-01 -4.73220557e-01 2.51688987e-01 -4.41740490e-02\\n-2.14302480e-01 2.74957735e-02 6.89772815e-02 1.31073162e-01\\n-2.23782688e-01 -1.64586231e-01 1.17825065e-02 1.20771073e-01\\n2.76376367e-01 2.89230853e-01 -1.85092300e-01 -3.79303008e-01\\n-3.58382463e-01 1.56327546e-01 -3.67394924e-01 1.85198903e-01\\n-6.29785135e-02 2.41257101e-01 1.21135108e-01 4.42162305e-02\\n2.33979389e-01 -5.77633129e-03 -9.62941125e-02 -1.94045275e-01\\n-2.80786693e-01 -2.05623299e-01 8.68445262e-02 4.49230149e-02\\n1.50801226e-01 -3.96348894e-01 -1.31439054e-02 -1.31574750e-01\\n-1.96709916e-01 -3.87406707e-01 -4.14424241e-02 -1.99492127e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for an Agile Java Software Engineer. This role is permanent position based in Basel Canton. Your Role: < >nsure high-quality functionality of applications. Independently develop solution variants in coordination with customers. Further develop applications within a Scrum team. Undertake programming with Java8. Implement backend service development with Java EE. Utilize Angular in a digitalized environment Integrate different systems in a high-performance & flexible manner. Your Skills: Several years of software development experience. Skills & experience in Java8, Java EE & Angular. A convincing performance record in successfully completed software projects. Experienced in agile methodologies. Scrum Master experience is considered a plus Ideally experienced in testing. Very interested in software architecture. Your Profile: University degree in computer science. Committed, ambitious & enthusiastic personality. Convincing, strong communication skills & a team-player. Innovative, analytical & both solution & service orientated. Entrepreneurial thinking, goal-driven & a strong willingness to learn. A high affinity for agility & fun in the development of high-quality software. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Coordinating\", \"Service-Orientation\", \"Willingness To Learn\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Agility\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Integrated Language Environments\", \"High Performance Computing\", \"Service Development Studio\", \"Software Quality Management\", \"Java EE Application\", \"Component Object Model (COM)\", \"Scrum (Software Development)\", \"Idealization\", \"Software Engineering\", \"Agile Methodology\", \"Digitization\", \"Personalization\", \"Software Architecture\", \"Receivables\", \"Angular (Web Framework)\", \"Software Development\", \"Software Project Management\", \"Java (Programming Language)\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Haitian', 'Danish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'junior data-scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.65259391e-01 2.37471595e-01 4.02921498e-01 1.00243151e-01\\n4.03606445e-01 -2.84495324e-01 5.22616357e-02 2.92965204e-01\\n-6.68480694e-02 -3.47696990e-01 -1.38469741e-01 -2.65816092e-01\\n-1.49815634e-01 1.45849427e-02 -4.01442274e-02 3.89594674e-01\\n2.18470454e-01 9.74991247e-02 -4.37254608e-02 3.25632930e-01\\n1.81184068e-01 -1.25458285e-01 -1.57004997e-01 7.08373964e-01\\n4.39376473e-01 3.98021676e-02 -8.90317783e-02 1.05163857e-01\\n-2.12917149e-01 -1.11826278e-01 4.44480598e-01 1.41342506e-01\\n-1.13332547e-01 -2.81599075e-01 8.90250504e-02 9.67258215e-02\\n-2.39634782e-01 4.57551219e-02 5.07330671e-02 9.06079784e-02\\n-3.82302314e-01 -2.56410003e-01 -1.10499486e-01 -3.68735217e-03\\n-9.31458771e-02 -2.26927370e-01 1.52826801e-01 4.39070351e-03\\n1.07097767e-01 -7.23425597e-02 -6.30154312e-01 3.55206311e-01\\n-2.56618470e-01 -1.98945343e-01 1.73552498e-01 4.54097092e-01\\n8.23455676e-02 -4.97449309e-01 -5.19702494e-01 -2.60333955e-01\\n3.05381287e-02 -2.00251862e-01 6.28850162e-02 -1.77313492e-01\\n3.98115993e-01 2.79472023e-02 6.15051985e-02 4.02017355e-01\\n-7.28873968e-01 7.41557823e-03 -2.63501316e-01 -4.84086648e-02\\n-4.30597782e-01 -8.93377960e-02 -1.20950200e-01 -5.96159995e-02\\n-1.27885327e-01 2.70291537e-01 1.03023320e-01 1.40650839e-01\\n-1.70349151e-01 3.02430868e-01 -7.06722513e-02 2.56429732e-01\\n3.21581066e-01 1.75991148e-01 2.81737357e-01 3.24973732e-01\\n-4.89475518e-01 4.25270587e-01 -1.50225824e-02 -3.34316194e-01\\n3.03237975e-01 1.16709329e-01 4.48259056e-01 5.99275343e-02\\n8.83978680e-02 8.29369128e-02 -1.57754958e-01 1.40945390e-01\\n1.86626792e-01 -4.05217469e-01 -9.57964733e-02 -3.45108733e-02\\n-1.46836758e-01 1.01107834e-02 5.66654541e-02 8.18052068e-02\\n-3.83570760e-01 4.67964560e-01 2.32737124e-01 -2.30423406e-01\\n-7.10786730e-02 -4.45096463e-01 -7.42365271e-02 7.62551725e-02\\n-3.62130404e-02 1.73038617e-03 3.35518599e-01 1.45967498e-01\\n1.32403955e-01 2.93680821e-02 6.45787418e-02 7.67333925e-01\\n-1.38512803e-02 1.48196429e-01 -1.33719325e-01 2.53971666e-01\\n1.76519722e-01 -4.10493076e-01 2.78548479e-01 4.15549308e-01\\n6.17337637e-02 -1.20927528e-01 -1.78697869e-01 1.86371520e-01\\n-5.07205315e-02 -9.44609344e-02 -3.12949806e-01 7.79691339e-02\\n-2.44871303e-02 -3.45233411e-01 6.34652555e-01 1.47559732e-01\\n2.92232275e-01 5.22346348e-02 6.16950653e-02 -5.70451990e-02\\n-4.04910706e-02 2.30516970e-01 3.09516694e-02 2.42248103e-01\\n-3.53409648e-01 -1.98094949e-01 -1.25594482e-01 2.58810282e-01\\n-1.63262054e-01 2.34451756e-01 -1.02877468e-01 -6.26270175e-02\\n2.31362343e-01 4.11764123e-02 -3.43174934e-01 2.84666866e-01\\n8.91182199e-02 -1.65422589e-01 -1.30116776e-01 3.59108597e-01\\n4.61961962e-02 1.18675932e-01 -5.63206784e-02 -2.24686936e-01\\n6.92797542e-01 2.54175246e-01 1.21430248e-01 -5.56592420e-02\\n4.50366318e-01 -1.50836751e-01 2.12357536e-01 1.33042827e-01\\n-6.79938853e-01 3.56312841e-01 -1.29048126e-02 -1.50303781e-01\\n-3.19864936e-02 5.99157158e-03 2.69934326e-01 -4.61429715e-01\\n6.45606918e-03 -8.65569189e-02 -4.53485250e-01 -2.32634664e-01\\n-2.33120561e-01 1.62114874e-02 3.45313311e-01 -4.74464864e-01\\n-1.29196629e-01 1.55474290e-01 -5.26848435e-01 -1.73454657e-01\\n2.03691453e-01 1.28180295e-01 2.25429609e-01 1.29713953e-01\\n-2.86477525e-02 -4.43474978e-01 -2.34237462e-02 -5.23890615e-01\\n-4.57848549e-01 -1.17869889e-02 -3.08330685e-01 3.78769606e-01\\n1.54169202e-01 -9.41331405e-03 -2.89833963e-01 1.67355582e-01\\n-1.91053510e-01 -1.01237044e-01 1.78767517e-01 8.32180977e-02\\n1.53405204e-01 1.36301341e-02 -4.04747248e-01 3.55580211e-01\\n-2.25095466e-01 5.46011329e-01 2.31024727e-01 -7.32230246e-01\\n5.74651301e-01 3.48143429e-01 2.07070895e-02 -4.09685999e-01\\n4.73898530e-01 -3.27840418e-01 3.63477729e-02 1.85083807e-01\\n-3.49963963e-01 -3.38657081e-01 1.90444514e-01 -1.44300908e-01\\n-3.23285162e-01 5.11384249e-01 1.08282998e-01 8.71376917e-02\\n1.48188993e-01 -2.82800883e-01 6.10570982e-02 1.45225093e-01\\n-7.57299289e-02 -2.24193722e-01 -3.63301039e-01 -4.95508052e-02\\n-2.18269620e-02 -3.97020608e-01 -1.81401312e-01 -3.76587272e-01\\n-1.54027864e-01 -4.16910112e-01 -4.01245415e-01 4.10874486e-01\\n1.52734071e-01 2.89439484e-02 9.42164063e-02 2.42756754e-02\\n-8.22035149e-02 -6.66109085e-01 7.62750357e-02 5.69109991e-02\\n4.83015925e-01 1.79649577e-01 -2.92398874e-02 -1.36256456e-01\\n2.00605895e-02 6.46065176e-01 -3.02666903e-01 -4.36799318e-01\\n1.42087817e-01 1.98449224e-01 9.02390946e-03 -1.90455452e-01\\n2.39054160e-03 4.17563230e-01 -1.84093431e-01 1.57943424e-02\\n-2.09399968e-01 -7.40374625e-02 4.56414938e-01 -4.05411050e-02\\n-3.62800658e-01 -2.12435156e-01 -3.84178460e-02 1.91970006e-01\\n-5.10101199e-01 -2.35967934e-01 4.69315648e-01 2.65499353e-01\\n1.52784169e-01 1.12834655e-01 9.30865631e-02 1.44220725e-01\\n-1.98500738e-01 -3.55066508e-01 1.59675568e-01 1.02170616e-01\\n9.58727077e-02 2.72374731e-02 -1.09751344e-01 -7.05892682e-01\\n-3.57860398e+00 -1.54456064e-01 1.17296532e-01 -3.58474612e-01\\n1.57040104e-01 8.60425830e-03 1.75232008e-01 -1.40169248e-01\\n-3.67234439e-01 1.12563841e-01 -2.73984879e-01 -2.06158653e-01\\n7.84678832e-02 1.99624792e-01 2.62721181e-01 2.44374588e-01\\n2.89620131e-01 -3.38543862e-01 -8.31254274e-02 3.22546363e-01\\n-1.89086691e-01 -5.33013940e-01 1.56328768e-01 -8.07926357e-02\\n3.78168613e-01 2.36845106e-01 -3.02280843e-01 -6.91014752e-02\\n-3.36892247e-01 -3.28467816e-01 7.63467103e-02 -3.27701390e-01\\n-1.06256440e-01 1.78985268e-01 1.40661627e-01 -1.19899362e-01\\n4.04418372e-02 -4.33135271e-01 -5.54569028e-02 -4.21407878e-01\\n1.09078303e-01 -5.13788640e-01 6.36009648e-02 -1.57931134e-01\\n6.95812464e-01 -2.97442794e-01 2.68545449e-01 1.59259781e-01\\n1.96441963e-01 1.76789165e-01 5.63376211e-02 6.63564131e-02\\n-8.24726969e-02 -3.57424796e-01 -6.62016049e-02 -1.17699362e-01\\n5.42770445e-01 5.21977425e-01 -3.21123719e-01 -5.21274768e-02\\n8.28349143e-02 -3.39454353e-01 -2.71534413e-01 -3.85348678e-01\\n-5.05540669e-02 -4.16322611e-02 -6.14069104e-01 -4.93425310e-01\\n-3.02970201e-01 -7.09245279e-02 -1.46553800e-01 6.60475373e-01\\n-3.67950350e-01 -4.86978084e-01 4.62493412e-02 -5.35368860e-01\\n-2.33992692e-02 -2.45249316e-01 1.64906070e-01 -7.92293847e-02\\n-3.86970997e-01 -5.95680892e-01 -2.39894707e-02 -1.20241150e-01\\n-1.54713750e-01 -2.55245835e-01 1.55582979e-01 -3.65699567e-02\\n-3.07641327e-01 -3.54601860e-01 4.15111959e-01 1.21851481e-01\\n3.56321335e-01 1.89730749e-01 2.18801945e-01 1.54360786e-01\\n2.89261252e-01 9.22313891e-03 5.01034781e-02 -3.27154517e-01\\n9.12655592e-02 -2.59304605e-02 4.55766946e-01 -2.09569559e-01\\n-6.88465759e-02 7.36388937e-02 -3.07366729e-01 -1.92095235e-01\\n3.97151887e-01 2.92154141e-02 6.84614927e-02 -1.41952738e-01\\n4.20645714e-01 -2.76961416e-01 -1.63110688e-01 1.76148131e-01\\n8.92080739e-03 5.69060981e-01 5.61799332e-02 -4.54283863e-01\\n-1.40724540e-01 4.72900361e-01 -1.35789603e-01 -5.21575995e-02\\n8.16516578e-02 1.59935027e-01 -2.29043782e-01 4.82896678e-02\\n-1.62993316e-02 -2.80953765e-01 -2.22062886e-01 -9.15302783e-02\\n2.40725428e-02 1.02243997e-01 2.53852516e-01 2.19810177e-02\\n-1.28540620e-01 -2.88948596e-01 -1.95365593e-01 1.83673859e-01\\n2.45797560e-01 4.44608182e-01 1.13275096e-01 -1.45817235e-01\\n-9.22705010e-02 3.28213841e-01 -3.68295051e-02 1.32626116e-01\\n-1.91138089e-01 1.81276709e-01 -4.41945881e-01 -2.07546085e-01\\n-1.39557451e-01 -2.81789333e-01 1.43330291e-01 2.63030827e-01\\n9.53998193e-02 -3.55446674e-02 9.50289518e-02 -5.05297959e-01\\n3.64702284e-01 1.42178252e-01 2.39070311e-01 1.43523350e-01\\n3.79263423e-02 5.00493348e-01 4.00093049e-02 -1.58896729e-01\\n-3.99316192e-01 -7.93984458e-02 -1.11482248e-01 -1.33338869e-01\\n1.23052225e-01 -4.30563211e-01 -7.57423937e-02 2.88160175e-01\\n6.41240627e-02 -2.46326774e-01 -1.88240066e-01 4.27504361e-01\\n5.40549457e-02 -2.18872935e-01 -2.79368877e-01 -4.71048057e-02\\n3.06162477e-01 -1.15522444e-01 1.47318408e-01 -4.01239514e-01\\n-9.33479220e-02 6.45447001e-02 -2.84312088e-02 3.69291037e-01\\n1.59423083e-01 2.35275198e-02 -9.28477794e-02 -1.65495470e-01\\n4.37572420e-01 -2.25587916e-02 -9.69065428e-02 -1.55799881e-01\\n1.39202788e-01 -2.56935745e-01 -5.01692176e-01 5.93043044e-02\\n1.95458364e-02 -7.32901692e-02 9.97361988e-02 9.54829752e-02\\n4.90863882e-02 5.54760285e-02 -4.27533090e-01 -2.42149517e-01\\n-3.19615841e-01 -2.33973026e-01 -6.58251047e-02 -3.48971188e-01\\n-1.42133189e-02 -7.45663643e-02 -5.57183385e-01 2.73410231e-01\\n-3.88336629e-01 -5.00232615e-02 1.06363766e-01 1.16150804e-01\\n-3.62644225e-01 -6.84799775e-02 1.04726546e-01 2.18035460e-01\\n-3.36113334e-01 -2.87639201e-01 4.60156538e-02 -9.57406104e-01\\n1.70239821e-01 8.76221061e-02 -1.07657909e-01 5.42641059e-02\\n-1.63819513e-03 -4.52206135e-01 1.18598230e-01 -4.35451180e-01\\n9.50971805e-03 -8.01053867e-02 -2.58931994e-01 -2.85081565e-01\\n4.24206778e-02 -2.59201527e-01 -3.68386358e-01 3.84738505e-01\\n-3.13146204e-01 3.70339304e-01 -8.41901824e-02 6.82748109e-02\\n2.14676391e-02 -2.43325233e-01 1.67327106e-01 -5.71973741e-01\\n-4.01841313e-01 -2.72359997e-01 -3.27504039e-01 -2.40148768e-01\\n-9.89156403e-03 -3.05033743e-01 -2.41536587e-01 9.60338265e-02\\n2.73960263e-01 1.72606826e-01 -2.42198825e-01 -2.49932870e-01\\n1.65913831e-02 -6.25581741e-01 -4.21068594e-02 -2.32592821e-01\\n-7.67148957e-02 -1.54345244e-01 5.62568270e-02 -4.58587781e-02\\n7.54598528e-02 -5.04122555e-01 3.11357588e-01 -4.24329668e-01\\n-2.00700343e-01 8.13712832e-03 2.19845563e-01 8.46769512e-02\\n2.97267556e-01 -5.95009923e-01 -5.79856597e-02 3.08384418e-01\\n2.34660968e-01 8.14508572e-02 2.49725834e-01 1.62725411e-02\\n-1.08683653e-01 3.41774851e-01 -3.14241529e-01 1.34723827e-01\\n5.91243804e-01 6.94597065e-02 -1.14463463e-01 1.98782101e-01\\n2.70590574e-01 3.58612359e-01 5.90449989e-01 9.28065032e-02\\n4.15862612e-02 2.86983401e-01 6.43214732e-02 -4.33481634e-01\\n-8.49271566e-03 3.03755663e-02 -1.56749398e-01 -2.07867876e-01\\n5.57246685e-01 5.11646628e-01 -6.33273780e-01 -1.81267932e-01\\n-1.18068896e-01 -2.21558914e-01 1.81693301e-01 -2.89348364e-02\\n5.24213351e-02 -1.35913014e-01 5.39654374e-01 1.67307239e-02\\n7.00709149e-02 5.47003567e-01 -1.78729877e-01 -2.22354069e-01\\n-5.52947223e-02 7.47394785e-02 7.27902502e-02 4.99995947e-01\\n-6.96820095e-02 1.92893177e-01 -1.30753741e-01 7.53141716e-02\\n7.35032931e-02 3.09915215e-01 6.63059354e-02 1.23925850e-01\\n1.85047567e-01 3.80894691e-02 3.28887641e-01 4.27067935e-01\\n2.13729516e-01 4.70866084e-01 3.06196243e-01 9.29939970e-02\\n3.70843947e-01 6.15273774e-01 4.82394636e-01 -1.00984117e-02\\n-7.74666369e-02 -2.83566732e-02 1.39895871e-01 -1.17272839e-01\\n3.33040178e-01 4.18442249e-01 7.43177757e-02 8.05904925e-01\\n4.13264871e-01 2.60098010e-01 6.52689040e-01 -6.50068641e-01\\n-2.80000687e-01 9.07276720e-02 4.24983650e-01 -1.18952602e-01\\n-7.96879008e-02 1.52733222e-01 -2.36040607e-01 3.10547143e-01\\n-5.33010364e-01 -4.20841500e-02 2.41075903e-02 9.64438990e-02\\n2.44837597e-01 -5.09312637e-02 -2.05003366e-01 1.40806571e-01\\n-1.82958841e-01 -8.03655535e-02 -4.05690342e-01 -1.37749106e-01\\n-2.54208595e-01 -1.34888753e-01 -6.43124580e-02 -1.56268910e-01\\n1.78459305e-02 -3.27132881e-01 1.87085848e-02 8.74587744e-02\\n2.55218774e-01 -1.36147022e-01 -1.16964810e-01 -1.30390555e-01\\n2.34537989e-01 3.22108567e-01 4.19020355e-01 -8.30409229e-02\\n9.47498530e-02 -1.58502638e-01 -2.52952605e-01 1.81522489e-01\\n1.04169264e-01 4.05840836e-02 6.30686954e-02 2.25942880e-01\\n-2.13793829e-01 -4.27678674e-02 1.62121281e-01 4.09961969e-01\\n-3.88063490e-01 1.48173422e-01 -4.39369120e-02 3.11749399e-01\\n4.87943441e-02 1.76556975e-01 -2.56209075e-01 -3.74992788e-02\\n-2.42193148e-01 -5.11981249e-01 3.20799470e-01 -6.31775111e-02\\n-1.34411916e-01 1.51678413e-01 1.59209400e-01 3.32274228e-01\\n-2.56847143e-01 -4.02567089e-02 -8.80651269e-03 1.46502361e-01\\n-6.76369369e-02 2.87486404e-01 -1.24705561e-01 -3.13114911e-01\\n-2.28602156e-01 2.45329753e-01 -1.40167087e-01 5.90375289e-02\\n-1.95922107e-01 3.12457383e-01 6.56343922e-02 6.26347885e-02\\n3.17683429e-01 -9.38898977e-03 -2.17722446e-01 -1.97292104e-01\\n-3.64258289e-01 -1.21989205e-01 1.43814981e-01 8.17646086e-02\\n1.65961280e-01 -4.60202575e-01 -9.60230604e-02 -2.33497858e-01\\n-8.55634734e-02 -2.00792432e-01 7.28481337e-02 2.38590837e-02]]',\n", + " 'job_description': 'Job Informationen RESPONSIBILITIES: - work closely with other engineering team members, our product team members, and other stakeholders. - implement, test & document new climate change risk computations. - control the data quality at all computational steps. - employ agile development and rapid prototyping techniques. - promote best engineering practices to ensure quality assurance. - promote best team communication practices and train employees. - anticipate problems/opportunities and adapt to new challenges. OUR TECHNOLOGY STACK: - git - Python 3 - Django - PostgreSQL - Celery - UNIX - YouTrack YOU: - have experience in data manipulation and software development, particularly Python. - are interested in modern web technologies. Experience with Django is a big plus. - are a strong logical thinker. - interested in data quality management and project management. - have a Swiss work permit. - love to organize, communicate and collaborate. - would like to join a dedicated, technically savvy and enthusiastic team. - enjoy all aspects of a start-up environment. Benötigte Skills UNIX PostgreSQL Python Test Junior Konzeptionell / Analytisch',\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Quality Assurance\", \"Adaptability\"]',\n", + " 'hard_skills': '[\"Django (Web Framework)\", \"Integrated Product Team\", \"Data Quality\", \"Software Development\", \"Project Management\", \"PostgreSQL\", \"Data Manipulation\", \"Python (Programming Language)\", \"Climate Change Mitigation\", \"Git Flow\", \"YouTrack\", \"Community Organizing\", \"Unix\", \"Rapid Prototyping\", \"Agile Product Development\", \"Controllability\", \"Technical Savvy\", \"Quality Management\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '35',\n", + " 'job_title': 'project manager change control - ballaigues, switzerland',\n", + " 'location': 'Ballaigues',\n", + " 'industry': 'Healthcare Product Manufacturing',\n", + " 'website': 'www.dentsplysirona.com',\n", + " 'jobdescription_embedded': '[[-1.84645727e-01 3.13790977e-01 4.66458857e-01 -1.53860360e-01\\n4.18055177e-01 3.52161527e-02 1.04506262e-01 3.77356559e-01\\n9.78349149e-03 -5.31103015e-01 -1.05764158e-02 -3.76608729e-01\\n9.30171907e-02 3.57260495e-01 1.12422600e-01 3.97305042e-01\\n3.95113736e-01 7.79752359e-02 -1.09135091e-01 3.33693027e-01\\n-1.01408795e-01 -1.99804455e-01 2.18506604e-01 8.74046624e-01\\n3.69173646e-01 -1.06594171e-02 -9.47334170e-02 -5.72994873e-02\\n-2.22343802e-01 -2.00983033e-01 4.78578091e-01 2.06905287e-02\\n-2.26208344e-01 -4.30472732e-01 7.92281330e-02 7.97208101e-02\\n-2.27476746e-01 -1.73852950e-01 -2.01787844e-01 1.10723272e-01\\n-5.91382980e-01 -2.44014174e-01 -1.43932372e-01 2.58774497e-02\\n-3.23120445e-01 -2.50614107e-01 -3.82641107e-02 -3.94377485e-02\\n2.70336568e-01 1.68963328e-01 -4.86056447e-01 6.50876015e-02\\n-3.77530903e-01 -2.26628140e-01 3.14617753e-01 5.76608062e-01\\n-4.78843674e-02 -3.18338811e-01 -6.85431480e-01 -3.59097660e-01\\n6.52582501e-04 -1.10413499e-01 5.73555455e-02 -3.52342129e-01\\n2.59592712e-01 9.85476822e-02 6.89226389e-02 2.79916108e-01\\n-8.48283648e-01 -1.26033068e-01 -3.59622389e-01 -1.35431886e-01\\n-1.77961171e-01 -1.20132707e-01 -2.12970823e-01 -9.16205198e-02\\n-3.35602224e-01 3.65115702e-01 1.71880379e-01 6.18759952e-02\\n-1.51253119e-01 3.51545900e-01 -1.97518170e-01 4.66602445e-01\\n1.13407962e-01 2.75801539e-01 2.93954790e-01 2.62581259e-01\\n-2.65407413e-01 5.18979490e-01 -1.47166019e-02 -2.71689653e-01\\n2.89825559e-01 1.07620180e-01 2.60436803e-01 -1.56124502e-01\\n2.56363899e-01 6.00264072e-02 -3.33849370e-01 3.12823176e-01\\n2.41048276e-01 -2.64382988e-01 1.20878547e-01 -1.24791175e-01\\n7.03004450e-02 -5.72720729e-02 1.66985720e-01 6.17712960e-02\\n-3.63255829e-01 3.98907304e-01 1.46304518e-01 -3.49948823e-01\\n-3.08756948e-01 -3.90558720e-01 2.64782477e-02 1.37200356e-01\\n-1.98224932e-02 2.30713915e-02 3.43869366e-02 1.20976716e-02\\n2.70910203e-01 -1.43966943e-01 5.92914298e-02 7.35607266e-01\\n-1.30847827e-01 4.93135005e-02 -2.92023361e-01 2.38328904e-01\\n-9.98833403e-03 -2.25749314e-01 1.72163755e-01 1.83404058e-01\\n-1.73846185e-01 -1.33416012e-01 -2.53383756e-01 3.21501821e-01\\n3.44794914e-02 -2.90222019e-01 -1.59317642e-01 1.94370449e-01\\n5.72747812e-02 -3.69436681e-01 4.50347453e-01 -5.51766828e-02\\n2.28707880e-01 -1.50439203e-01 2.75334120e-02 -4.75746989e-02\\n-6.28176928e-02 5.96789606e-02 2.38983393e-01 1.44950837e-01\\n-1.83393359e-01 -2.38970339e-01 -1.79849789e-02 -5.88390678e-02\\n-4.01569337e-01 1.53627902e-01 -8.59421864e-02 -1.49899155e-01\\n1.95538580e-01 4.09964919e-02 -1.77190661e-01 2.68830508e-01\\n-1.71934485e-01 3.08272503e-02 -7.65683353e-02 3.93049330e-01\\n-3.01680684e-01 2.11846188e-01 -1.11492574e-02 -1.40904516e-01\\n6.06538832e-01 1.11099795e-01 3.35924566e-01 2.65760198e-02\\n3.55467200e-01 1.10997036e-01 1.08061343e-01 9.24652219e-02\\n-7.14544296e-01 4.40607995e-01 -4.55961265e-02 -9.29781944e-02\\n2.17360198e-01 -2.41267622e-01 4.24851835e-01 -2.79067248e-01\\n1.04915150e-01 -1.22131996e-01 -2.91652054e-01 -2.87106633e-01\\n-7.09936395e-02 -1.66927353e-02 2.24254414e-01 -2.83664048e-01\\n-1.08533159e-01 1.53667867e-01 -5.23425817e-01 -2.25271299e-01\\n3.38189304e-02 2.65045822e-01 -2.82399170e-02 1.36599258e-01\\n-2.70546794e-01 -4.36563253e-01 1.21123508e-01 -4.31404412e-01\\n-1.31373301e-01 6.09647110e-02 -2.72032708e-01 6.25330955e-02\\n7.17395544e-03 5.15464172e-02 -1.84412207e-02 1.54377744e-02\\n-1.96467847e-01 -4.44229208e-02 -7.35276714e-02 -1.65370494e-01\\n2.00894713e-01 8.97585303e-02 -2.37043232e-01 3.66493285e-01\\n-1.72866613e-01 5.50346613e-01 -1.03730366e-01 -8.40902328e-01\\n3.95759583e-01 5.18534780e-01 6.80476055e-02 -3.14728498e-01\\n4.53857303e-01 -3.14289063e-01 -7.89228380e-02 2.63119712e-02\\n-3.80263299e-01 -1.96343124e-01 1.94567412e-01 -3.83930653e-01\\n-2.12966949e-01 3.88114929e-01 5.95433190e-02 1.62700593e-01\\n3.13337684e-01 -2.01529756e-01 -4.66018356e-02 2.45095640e-02\\n-1.05790943e-01 -2.10855082e-01 -5.62389374e-01 -3.16118568e-01\\n-1.57493830e-01 -2.20740676e-01 -7.45753348e-02 -4.88158643e-01\\n-1.11407176e-01 -2.59047329e-01 -1.42449617e-01 -5.44775501e-02\\n2.67964125e-01 5.14565222e-02 -6.12127781e-03 4.61335629e-02\\n-7.67190009e-02 -6.61457896e-01 5.44726700e-02 1.45193249e-01\\n3.48141849e-01 1.19762801e-01 1.65659592e-01 1.31395414e-01\\n5.48837855e-02 5.57274640e-01 -2.87403494e-01 -1.62930995e-01\\n1.39284447e-01 2.24446088e-01 6.66060746e-02 -1.12290934e-01\\n1.58100709e-01 2.87533492e-01 -2.29492098e-01 -2.17036009e-02\\n-8.76578093e-02 -1.85488202e-02 3.24690104e-01 -6.91105574e-02\\n-2.91154563e-01 -8.59269202e-02 -8.82758126e-02 -5.47061488e-02\\n-4.76589143e-01 -2.04709083e-01 4.18346167e-01 -2.93522887e-03\\n5.47498614e-02 1.34079903e-01 -1.50107630e-02 7.56811723e-03\\n-1.93159521e-01 -3.23214650e-01 3.73953491e-01 2.04077065e-02\\n2.56806761e-02 1.53472111e-01 1.39222890e-01 -7.13111043e-01\\n-3.37653112e+00 -1.06220558e-01 5.73568493e-02 -1.92644313e-01\\n4.41990256e-01 -1.94569573e-01 1.91812485e-01 6.08306983e-03\\n-3.05028886e-01 1.58673644e-01 1.78798772e-02 -4.83931303e-02\\n2.07327902e-01 9.44557488e-02 1.38021588e-01 2.25795418e-01\\n1.39226049e-01 -1.67035773e-01 4.42020856e-02 4.12288845e-01\\n4.73488793e-02 -8.39409351e-01 1.67033985e-01 -6.75404891e-02\\n2.18167648e-01 1.93010092e-01 -3.71742129e-01 -3.62688340e-02\\n-2.97940969e-01 -1.57876298e-01 -4.38457802e-02 -2.24612996e-01\\n-1.68822348e-01 2.10909829e-01 3.08930188e-01 -1.21165857e-01\\n-2.34291740e-02 -3.56496513e-01 -2.62867153e-01 -6.01278186e-01\\n2.90515631e-01 -5.85058689e-01 -1.18642621e-01 -1.26978606e-01\\n6.33962452e-01 -1.28822923e-01 8.12933296e-02 9.92898792e-02\\n9.14590806e-02 1.98267311e-01 3.68089885e-01 5.17647043e-02\\n-1.71627805e-01 -1.48933560e-01 -5.55741861e-02 -2.12604627e-01\\n5.53425550e-01 2.98654228e-01 -1.84153900e-01 -9.25747082e-02\\n6.38462231e-03 -2.37214595e-01 -5.12214422e-01 -1.19460061e-01\\n-4.05071378e-02 -1.95707172e-01 -6.37990117e-01 -3.64400506e-01\\n-2.02736080e-01 -1.53684288e-01 -8.66343081e-03 6.97330594e-01\\n-4.57485110e-01 -2.23038226e-01 -1.16861388e-01 -5.27572989e-01\\n4.13276255e-01 -1.79830208e-01 -2.47265548e-02 -2.98641860e-01\\n-1.74613893e-01 -4.03933525e-01 6.19093627e-02 5.31499982e-02\\n-3.12031396e-02 -3.30452621e-01 1.13618799e-01 7.42588192e-04\\n-2.95646608e-01 -5.22965610e-01 4.23454434e-01 1.53112054e-01\\n2.55737931e-01 1.20096162e-01 1.75290883e-01 -2.68140882e-01\\n3.07132334e-01 1.77852362e-01 -8.37904066e-02 -3.47285181e-01\\n-1.71253942e-02 -7.20431134e-02 4.42349792e-01 -7.04139546e-02\\n-1.78959500e-02 -1.65938884e-02 -3.03649276e-01 -1.17458418e-01\\n4.60066140e-01 -1.67636186e-01 9.73060504e-02 -8.15106854e-02\\n2.45668963e-01 -2.63665438e-01 7.85874873e-02 -4.85127829e-02\\n8.43226761e-02 6.75987363e-01 1.54649271e-02 -3.72998267e-01\\n6.21821359e-02 5.67383170e-01 -7.88971037e-02 1.54795721e-01\\n-7.92634040e-02 3.87714207e-02 -2.84083068e-01 3.64433229e-01\\n-5.45314215e-02 -1.01301715e-01 -1.38811499e-01 -8.95736367e-02\\n-1.21088549e-01 2.92396486e-01 2.54660696e-01 2.52087504e-01\\n3.85846421e-02 -3.36064965e-01 -3.14346194e-01 2.85317630e-01\\n1.50898457e-01 5.39009213e-01 1.75862536e-01 -2.61243820e-01\\n-1.32858874e-02 3.89818132e-01 -8.01904351e-02 2.98500091e-01\\n-2.07324773e-01 3.13131809e-01 -5.60786247e-01 -2.03016549e-01\\n-3.75081599e-01 -3.63016605e-01 1.98393315e-01 3.09872478e-01\\n1.33259147e-01 -9.04379711e-02 6.72319978e-02 -5.07169962e-01\\n8.27119946e-02 2.47481763e-01 1.64448380e-01 3.84315997e-02\\n-6.06112778e-02 6.45801485e-01 6.52305037e-02 -2.66355515e-01\\n-1.32869840e-01 3.94149423e-02 2.45845914e-02 -1.11619383e-02\\n1.22317467e-02 -5.61590314e-01 -7.96582475e-02 3.36627632e-01\\n1.62140235e-01 -1.67968243e-01 -2.02226222e-01 3.56704414e-01\\n2.84251720e-02 -1.72660351e-01 -3.60678792e-01 -7.06915557e-02\\n2.37744406e-01 1.20801833e-02 2.59649456e-01 -6.48082674e-01\\n-3.73637863e-02 -8.80714655e-02 3.41499597e-02 3.72550011e-01\\n-1.32095575e-01 1.82030499e-02 -2.54675865e-01 -1.46642268e-01\\n2.46656954e-01 -1.00458272e-01 -1.54730588e-01 1.60091490e-01\\n1.70153022e-01 -1.30084842e-01 -4.18796718e-01 1.16406620e-01\\n4.49056327e-02 -3.15874338e-01 3.53038833e-02 3.60813111e-01\\n6.47197589e-02 2.49580324e-01 -5.68191409e-01 -1.96668506e-01\\n-2.00627670e-01 1.91577479e-01 6.09581247e-02 -6.33165777e-01\\n6.50685839e-03 -1.15272991e-01 -4.31340545e-01 2.15969980e-01\\n-2.96684429e-02 -2.87583590e-01 2.31079519e-01 5.26492521e-02\\n-3.07027936e-01 -7.65521638e-03 -2.09016781e-02 2.92268425e-01\\n-1.85366094e-01 -2.25689799e-01 -3.88403162e-02 -9.71567392e-01\\n2.50973910e-01 -2.13524736e-02 -3.32256407e-03 2.86909372e-01\\n-1.58867091e-01 -6.38821423e-01 7.93350562e-02 -3.31051677e-01\\n-2.19826788e-01 -9.72383171e-02 -3.75366002e-01 -2.50517845e-01\\n9.44098458e-03 -5.00097051e-02 -1.56446591e-01 3.74885559e-01\\n-2.06334859e-01 4.96902913e-01 -2.99185455e-01 5.69497719e-02\\n-4.09606844e-04 -2.45174170e-01 2.20738962e-01 -3.80642593e-01\\n-3.44413370e-01 -1.99467480e-01 -3.54156911e-01 -1.99764431e-01\\n-7.03575164e-02 -2.09478095e-01 4.33604792e-02 1.15268216e-01\\n4.86252844e-01 1.00459889e-01 -2.49341935e-01 -1.46017671e-01\\n-8.80204514e-03 -4.89164561e-01 1.66285545e-01 -1.34751266e-02\\n7.23782927e-04 -2.28664309e-01 2.26485640e-01 1.26988947e-01\\n2.69683540e-01 -3.93679857e-01 2.75140911e-01 -3.94309342e-01\\n-3.39797169e-01 -1.88757256e-01 7.17268288e-02 2.26432085e-02\\n3.17455143e-01 -5.69553971e-01 -1.83888257e-01 3.09962064e-01\\n9.37558711e-04 -2.23528855e-02 2.80265212e-01 -1.34643346e-01\\n-6.56384528e-02 3.40541363e-01 -4.54259098e-01 1.54576927e-01\\n6.57110691e-01 2.46742994e-01 1.85089305e-01 3.31453830e-01\\n1.42495304e-01 3.42854559e-01 5.17835677e-01 1.03503913e-02\\n-1.50840878e-01 3.23100537e-01 1.80222213e-01 -5.01859903e-01\\n-1.60714567e-01 -1.62919983e-02 -4.41284925e-02 -5.38053751e-01\\n7.04629898e-01 3.88942301e-01 -4.68298376e-01 -4.86949012e-02\\n-1.71798378e-01 -1.97482765e-01 1.15210325e-01 -9.32246074e-02\\n-9.21602100e-02 -1.07926682e-01 4.01215315e-01 -1.24279276e-01\\n3.19891930e-01 5.80991626e-01 -2.17238724e-01 -2.28825346e-01\\n3.65949348e-02 2.90475190e-01 3.44847590e-02 4.37248588e-01\\n-1.19411521e-01 3.21149290e-01 -2.67499797e-02 9.66356248e-02\\n-1.52802199e-01 1.65527463e-01 9.50314477e-03 1.58491820e-01\\n2.45399103e-01 7.00595826e-02 4.96758491e-01 4.37456727e-01\\n3.57724845e-01 2.79051840e-01 2.21929476e-01 4.40740436e-02\\n5.37222326e-01 4.51813281e-01 2.69344866e-01 -1.69013351e-01\\n1.43741488e-01 2.57030815e-01 3.07410121e-01 -6.68168962e-02\\n4.05590951e-01 3.96757007e-01 -9.48763639e-03 7.99952745e-01\\n1.69359773e-01 2.94007361e-01 5.98220468e-01 -5.10594308e-01\\n-2.68920273e-01 -7.93863088e-02 4.54555511e-01 -4.94535536e-01\\n3.53662036e-02 3.57954949e-01 -1.02382325e-01 2.50315696e-01\\n-3.09754550e-01 -1.69935241e-01 5.25472797e-02 1.72165573e-01\\n2.29917914e-02 -3.16769123e-01 -7.12227523e-02 2.39966735e-01\\n-1.06333874e-01 -1.56265721e-01 -3.71095330e-01 -1.80016667e-01\\n-2.74396002e-01 -2.39759535e-02 -9.64845121e-02 -1.33045614e-01\\n-8.98741484e-02 -2.65110999e-01 7.55990222e-02 -8.71447101e-02\\n1.30892575e-01 -1.56703711e-01 -1.29299432e-01 -8.07367489e-02\\n4.53403354e-01 1.15526006e-01 4.27334905e-01 -4.92155440e-02\\n4.78809886e-02 -2.08649397e-01 -1.77427843e-01 1.92755356e-01\\n3.07864368e-01 8.74086693e-02 -6.11137226e-02 2.18013495e-01\\n-1.59278288e-01 -1.31101996e-01 9.48497653e-02 2.70747244e-01\\n-3.56100649e-01 2.97885798e-02 -2.16340512e-01 1.03425667e-01\\n-8.05890486e-02 1.80036634e-01 -1.07496165e-01 -5.97284548e-02\\n-2.78714448e-02 -4.49156046e-01 1.14211038e-01 -4.67937216e-02\\n-2.26788178e-01 -4.96190041e-02 3.44880134e-01 3.66953433e-01\\n-2.88655043e-01 6.78340048e-02 -1.85356438e-01 6.51989728e-02\\n8.85424018e-03 2.12430105e-01 -1.44109547e-01 -3.75173241e-01\\n-3.05662453e-01 1.31517023e-01 -1.56476557e-01 8.38051923e-03\\n3.95061821e-02 3.78402114e-01 8.06892291e-02 3.33392471e-02\\n5.18024445e-01 -1.93984509e-01 -3.49767029e-01 -2.83212781e-01\\n-1.84087560e-01 -8.89592916e-02 -8.09286609e-02 -7.71420002e-02\\n2.23603815e-01 -2.96618849e-01 7.68085346e-02 -2.87756026e-01\\n-8.00041780e-02 -2.13343903e-01 3.38186249e-02 -7.48392045e-02]]',\n", + " 'job_description': 'Dentsply Sirona is the world’s largest manufacturer of professional dental products and technologies, with a 130-year history of innovation and service to the dental industry and patients worldwide. Dentsply Sirona develops, manufactures, and markets a comprehensive solutions offering including dental and oral health products as well as other consumable medical devices under a strong portfolio of world class brands. Dentsply Sirona’s products provide innovative, high-quality and effective solutions to advance patient care and deliver better and safer dentistry. Dentsply Sirona’s global headquarters is located in Charlotte, North Carolina, USA. The company’s shares are listed in the United States on NASDAQ under the symbol XRAY. Bringing out the best in people As advanced as dentistry is today, we are dedicated to making it even better. Our people have a passion for innovation and are committed to applying it to improve dental care. We live and breathe high performance, working as one global team, bringing out the best in each other for the benefit of dental patients, and the professionals who serve them. If you want to grow and develop as a part of a team that is shaping an industry, then we’re looking for the best to join us. Working at Dentsply Sirona you are able to: Develop faster - with our commitment to the best professional development. Perform better - as part of a high-performance, empowering culture. Shape an industry - with a market leader that continues to drive innovation. Make a difference -by helping improve oral health worldwide. MISSION In this new function as Project Manager Change Control, you will be the central point for coordinating all business functions involved in operational Change Control activities. Results-driven, with a proven talent in managing international and cross-functional project teams, you will ensure that all activities necessary to validate and document manufacturing processes and product design modifications are completed on time. You will be a key contributor to the sustaining engineering process and the new product development program. Finally, you will work closely with the QA/RA teams to ensure labels certifications meet new European MDR requirements. MAIN RESPONSIBLITIES Coordinate the operational cycle dedicated to managing Change Control requests (i.e. manufacturing process change and product design modifications) for the Endodontics unit global product portfolio Manage individual project dedicated to each change request and track deliverables assigned to cross-functional project teams (Marketing, R+D, Clinical Affairs, Operations, QA and RA) Owns process to validate Change Control requests into operational cycle, for tracking action plan and for coordination of individual project teams Analyze and report performance of Change Control management process; identify and implement opportunities for process improvement Coordinate project teams in 3 sites (US and Europe) for deployment of improvements to Change Control management process Support PMO leader for any other initiative in support of business performance improvement PROFILE Engineering Masters’ Degree with specialization in medical devices, industrial processes, quality management, supply chain or equivalent experience; PMP certificate preferred 5 years’ experience planning and managing complex technology projects in an international, highly regulated, industrial environment Strong knowledge of Change Control processes for Medical Devices; experience with European MDR requirements an asset Successful track record of managing international, cross-functional teams Excellent communication skills in English (C1/C2 min.) and French (B2 min.) Command of MS Office (Word, Excel, Powerpoint, Visio); Knowledge of MS Project an asset Strong analytical and organizational skills Ability to keep an overview while diving into detail where necessary Strong drive and motivation with the ability to multi-task Ability to work under pressure and to keep tight deadlines #LI-CM1',\n", + " 'soft_skills': '[\"Professionalism\", \"Coordinating\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Organizational Skills\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Diving\", \"Performance Reporting\", \"Analytics\", \"Consumables\", \"High Performance Computing\", \"Supply Chain\", \"Branding\", \"Health Products\", \"Industrialization\", \"Process Improvements\", \"Manufacturing Processes\", \"Endodontics\", \"Activism\", \"Industrial Processes\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Tracking (Commercial Airline Flight)\", \"Dental Care\", \"Management Process\", \"Portfolio Management\", \"Professional Development Programs\", \"Project Coordination\", \"Medical Devices\", \"Product Design\", \"Change Control\", \"Cross-Functional Coordination\", \"Project Management Office (PMO)\", \"Change Request\", \"Cross-Functional Team Leadership\", \"Sustaining Engineering\", \"Validations\", \"Dentistry\", \"Change Management\", \"New Product Development\", \"Performance Improvement\", \"Quality Management\"]',\n", + " 'languages': \"['English', 'Limburgan', 'Punjabi', 'Wolof', 'Korean']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-4.88080710e-01 2.58449346e-01 5.23118019e-01 -1.80086773e-02\\n4.56478834e-01 -4.98167723e-02 -1.09972715e-01 3.95245016e-01\\n-2.08908230e-01 -3.84887457e-01 -1.69541612e-01 -2.97027439e-01\\n-9.60512832e-02 1.17807850e-01 2.19974980e-01 4.79626954e-01\\n2.54724503e-01 9.28897262e-02 -2.09499031e-01 3.03051829e-01\\n6.45347536e-02 -3.75785641e-02 6.86234757e-02 7.13960111e-01\\n4.04978663e-01 -1.34375021e-01 -8.83488655e-02 1.06580921e-01\\n-2.41681129e-01 -1.86572239e-01 4.01777387e-01 3.56652625e-02\\n-1.72101617e-01 -2.95837015e-01 1.07834443e-01 9.90013182e-02\\n-2.61548728e-01 -5.27285114e-02 -1.04345880e-01 6.80635050e-02\\n-4.66666877e-01 -1.53118208e-01 -6.50336742e-02 3.03525645e-02\\n-3.40912312e-01 -3.29585195e-01 5.81570528e-02 -2.70689745e-02\\n-3.58481589e-03 -2.62594991e-03 -5.80102742e-01 2.82983601e-01\\n-1.24443091e-01 -2.91620433e-01 2.30460033e-01 5.48951983e-01\\n2.67120358e-02 -4.20045614e-01 -3.09936076e-01 -3.09853822e-01\\n1.71392485e-02 -1.95150077e-01 6.70710802e-02 -3.63646716e-01\\n4.16064024e-01 -9.72882882e-02 -1.58429313e-02 3.81274253e-01\\n-7.51251221e-01 -4.22746353e-02 -2.41789296e-01 8.49242881e-03\\n-3.96629632e-01 7.42806569e-02 -4.56928015e-01 -3.15135419e-01\\n3.93922813e-02 4.90157515e-01 -5.31114731e-03 1.09597027e-01\\n-1.51349261e-01 2.75063068e-01 -1.87770128e-01 3.72965455e-01\\n2.24130765e-01 2.84781545e-01 1.58477694e-01 3.36544722e-01\\n-4.91813809e-01 3.58506680e-01 2.43204206e-01 -3.29293221e-01\\n2.72049576e-01 1.24530286e-01 4.38458622e-01 1.70934096e-01\\n9.65059847e-02 1.67430788e-01 -1.68561608e-01 1.85203061e-01\\n2.24669918e-01 -2.18960434e-01 -6.61202520e-02 -1.75060734e-01\\n-5.52071584e-03 -3.74981537e-02 2.27148645e-03 1.43765941e-01\\n-3.35403144e-01 3.88749301e-01 1.31322354e-01 -1.11921363e-01\\n4.28772084e-02 -5.05427659e-01 -9.07157436e-02 1.05168015e-01\\n1.82921924e-02 2.48542130e-01 2.50279605e-01 1.74497649e-01\\n2.47828931e-01 6.81117028e-02 1.84739247e-01 9.25672233e-01\\n-8.28232244e-02 8.60639960e-02 -1.72762454e-01 3.89640659e-01\\n2.03802183e-01 -2.87431121e-01 2.46729538e-01 1.90574110e-01\\n4.62594256e-02 -1.58721849e-01 -1.72855839e-01 3.54858160e-01\\n-1.25417233e-01 -2.71658421e-01 -3.47269058e-01 1.86486855e-01\\n-2.33052000e-01 -5.29509842e-01 5.06148458e-01 -1.42532750e-03\\n1.90554649e-01 1.98000539e-02 -1.11909732e-01 -8.75182301e-02\\n-1.20384805e-01 2.19469324e-01 -1.29224703e-01 2.08721235e-01\\n-3.39804262e-01 -2.64568478e-01 -2.29304060e-01 2.81115085e-01\\n-3.07949126e-01 1.54763684e-01 -1.32529825e-01 -8.05592313e-02\\n2.58168399e-01 1.15916230e-01 -3.60593170e-01 1.77908868e-01\\n-1.45572066e-01 -2.58308500e-01 -1.45490924e-02 3.56810838e-01\\n-1.77126616e-01 2.16519892e-01 2.96422318e-02 -2.37371922e-01\\n4.38802451e-01 1.46827742e-01 3.63974422e-01 -1.83634553e-02\\n3.48504752e-01 -1.78370610e-01 1.44226074e-01 1.73070043e-01\\n-6.14870846e-01 3.65952879e-01 -3.37626413e-02 -2.26930603e-01\\n4.91819493e-02 3.24125849e-02 3.42423618e-01 -2.45931700e-01\\n-2.81348303e-02 -1.32465124e-01 -3.99612904e-01 -3.96553338e-01\\n-3.59001786e-01 5.69728762e-02 4.00247008e-01 -5.14771581e-01\\n7.95809028e-04 1.64951310e-01 -5.64277947e-01 -1.32167459e-01\\n1.91970542e-01 1.84242263e-01 7.42360651e-02 9.16184671e-03\\n-3.79957706e-02 -5.37259817e-01 4.98834513e-02 -5.50491571e-01\\n-2.89642870e-01 1.67059213e-01 -3.07075232e-01 1.09782904e-01\\n1.42642498e-01 -8.50048140e-02 -3.05166021e-02 1.10802636e-01\\n-2.80528069e-01 5.87514900e-02 2.09973112e-01 1.22226238e-01\\n4.03572619e-01 -2.04290096e-02 -3.45379263e-01 6.75532937e-01\\n-7.97054395e-02 5.18149674e-01 2.81403214e-01 -9.07865644e-01\\n5.89711010e-01 2.67308682e-01 -1.66378170e-03 -1.76213562e-01\\n5.43554962e-01 -4.30779845e-01 -1.12713084e-01 1.05818957e-01\\n-4.30461377e-01 -3.07125032e-01 2.75603443e-01 -2.33108565e-01\\n-1.97707593e-01 6.75981045e-01 1.79867029e-01 6.43787384e-02\\n3.58221710e-01 -3.05250645e-01 -2.99424410e-01 4.50107977e-02\\n-1.83755785e-01 -3.23641419e-01 -5.56773543e-01 9.01362747e-02\\n-1.18716195e-01 -5.65665126e-01 -1.68511391e-01 -4.38051343e-01\\n-1.14867106e-01 -3.51924926e-01 -1.33778542e-01 3.65401536e-01\\n1.25836357e-01 1.00489050e-01 -1.00781351e-01 -6.60510808e-02\\n-3.77262570e-02 -5.15089631e-01 -1.72773778e-01 -2.80870087e-02\\n4.57857847e-01 1.26904413e-01 2.29385585e-01 -6.33817166e-02\\n1.05247110e-01 5.11449575e-01 -3.48449141e-01 -3.02929878e-01\\n1.63844734e-01 8.33675563e-02 -1.75055768e-02 -1.23382919e-01\\n2.13581234e-01 3.97111297e-01 -3.48383248e-01 3.04835159e-02\\n-8.00620914e-02 1.30478501e-01 3.78982395e-01 -5.47720157e-02\\n-2.22666532e-01 -1.76455334e-01 3.67587246e-02 3.23155224e-01\\n-4.67526227e-01 -2.66114712e-01 5.47717273e-01 2.44917616e-01\\n1.68179005e-01 1.53267860e-01 1.95229590e-01 -1.10755593e-01\\n-2.56123900e-01 -1.30251676e-01 2.03251436e-01 1.27288520e-01\\n1.67314738e-01 5.57840504e-02 -7.81720951e-02 -5.35983026e-01\\n-3.48404598e+00 -2.75874615e-01 1.47778109e-01 -1.49247721e-01\\n9.23720077e-02 -1.42145276e-01 9.64686424e-02 -7.11704269e-02\\n-3.31991643e-01 -8.09031203e-02 -2.66701102e-01 -1.43627867e-01\\n1.32241860e-01 2.46843264e-01 1.32039443e-01 1.62333935e-01\\n7.27132931e-02 -1.55805349e-01 8.67354423e-02 3.79597127e-01\\n-2.04604790e-01 -7.26749301e-01 1.19719222e-01 -4.31729779e-02\\n1.07526444e-01 8.53167772e-02 -3.11718166e-01 -8.72057006e-02\\n-2.70258963e-01 -3.03555250e-01 1.64115861e-01 -2.44587943e-01\\n-1.49763614e-01 3.45058262e-01 1.50865525e-01 -6.84344172e-02\\n7.98318088e-02 -2.84004748e-01 -4.32571881e-02 -4.88892585e-01\\n7.94317350e-02 -5.63762724e-01 1.06393903e-01 -8.75314884e-03\\n6.26708984e-01 -3.14638674e-01 2.19086066e-01 1.70357570e-01\\n1.21158041e-01 2.26227134e-01 4.93888445e-02 -4.53606062e-02\\n-2.90715814e-01 -3.81290048e-01 -3.80977453e-03 -2.86511630e-01\\n5.28391898e-01 4.34086978e-01 -5.41208200e-02 1.19354554e-01\\n8.20225105e-02 -2.50958353e-01 -4.63806033e-01 -4.38718498e-01\\n-1.93201527e-01 -1.33598387e-01 -6.02385759e-01 -4.57036346e-01\\n-9.35222488e-03 -2.06880093e-01 -1.38165131e-01 5.45179546e-01\\n-2.50930727e-01 -3.78701389e-01 -4.36986826e-04 -5.77397227e-01\\n3.28695625e-01 -2.35719889e-01 -1.10821165e-02 -1.43472150e-01\\n-2.68096119e-01 -5.72995245e-01 1.54001221e-01 -1.22025739e-02\\n-1.94222271e-01 -9.77213681e-02 6.14832975e-02 -2.28391349e-01\\n-3.73427004e-01 -5.12774229e-01 3.84782284e-01 1.42118335e-02\\n3.99144143e-01 1.72881305e-01 3.40557396e-01 3.22971717e-02\\n2.28681713e-01 -1.04564227e-01 -1.09892143e-02 -5.18376052e-01\\n1.03848219e-01 7.47149587e-02 5.13602495e-01 -1.83969930e-01\\n7.77700990e-02 1.79991886e-01 -1.83219686e-01 -7.87470415e-02\\n3.79723519e-01 2.34899111e-02 1.62039369e-01 -2.27087483e-01\\n2.54985034e-01 -4.97314811e-01 -2.01084316e-01 1.53107136e-01\\n2.46962626e-02 7.30256855e-01 -7.06133544e-02 -3.83487284e-01\\n-2.95985550e-01 4.99348938e-01 -7.30060041e-02 -4.04943563e-02\\n-1.21834680e-01 1.58335030e-01 -2.10915402e-01 1.94291934e-01\\n-4.80912952e-03 -1.54817924e-01 -2.97951788e-01 -1.53682724e-01\\n-9.47334543e-02 3.26727271e-01 3.29419106e-01 3.54330288e-03\\n-2.16006041e-02 -3.68062079e-01 1.54398818e-04 1.62494123e-01\\n3.82593036e-01 4.10673022e-01 1.26968607e-01 -2.48717368e-01\\n-1.39137972e-02 2.70952970e-01 -2.90973634e-01 2.76279420e-01\\n-2.81048119e-01 1.17827490e-01 -5.70337772e-01 -2.22846925e-01\\n-2.68764794e-01 -3.19785982e-01 2.46864319e-01 2.59733617e-01\\n1.63896799e-01 -6.29612282e-02 5.01734018e-02 -3.84214997e-01\\n3.71041149e-01 1.60171241e-02 2.24273250e-01 7.49909356e-02\\n4.47562225e-02 6.83543384e-01 -2.96682771e-02 -5.15647605e-02\\n-9.30895954e-02 1.14319213e-02 -3.51343989e-01 -2.24426255e-01\\n-2.63144877e-02 -4.44142997e-01 -1.96701974e-01 4.27060008e-01\\n1.63380951e-01 -1.13608837e-01 -2.17575088e-01 1.54271707e-01\\n5.31245805e-02 -2.37088814e-01 -1.80748001e-01 1.01215035e-01\\n2.94685781e-01 2.30453253e-01 2.90765047e-01 -4.85814452e-01\\n4.99449149e-02 3.33332568e-02 3.77982520e-02 4.85471338e-01\\n1.03189960e-01 1.32028148e-01 -6.10816777e-02 -3.20689023e-01\\n3.93696070e-01 -2.31498346e-01 -1.02466784e-01 -4.98440936e-02\\n3.76347788e-02 -8.56078565e-02 -2.68498540e-01 1.60330534e-02\\n-1.11729644e-01 -3.35789919e-01 5.33521734e-02 3.99431586e-02\\n1.03078730e-01 -6.91587403e-02 -5.77003181e-01 -2.54919440e-01\\n-3.34349066e-01 5.73266782e-02 2.31226981e-02 -4.21617448e-01\\n7.50150159e-02 -5.32809459e-02 -6.53690040e-01 2.59189844e-01\\n-2.26417497e-01 -7.10023614e-03 1.71873599e-01 4.58962135e-02\\n-3.80352557e-01 -5.23275286e-02 2.19324932e-01 2.30039254e-01\\n-2.78990567e-01 -1.89968050e-01 1.32533545e-02 -9.58980799e-01\\n1.44764781e-01 5.04691899e-02 -1.73739508e-01 1.41219422e-01\\n-7.05820974e-03 -6.70554280e-01 1.13281906e-01 -3.25227797e-01\\n-5.34261599e-05 1.50735956e-02 -2.45827898e-01 -4.44976121e-01\\n1.16216876e-01 6.61068857e-02 -2.62828737e-01 4.06773359e-01\\n-5.39749861e-01 3.11619997e-01 3.87455747e-02 6.83767870e-02\\n2.47951392e-02 -2.52707034e-01 1.48843199e-01 -1.96265221e-01\\n-3.85321826e-01 -2.31008440e-01 -2.94927806e-01 -3.45805824e-01\\n-4.32012640e-02 -4.24220949e-01 -1.01511165e-01 6.25677174e-03\\n4.24294382e-01 9.87886041e-02 -1.26236230e-01 -2.90121645e-01\\n1.58154964e-01 -3.73585820e-01 1.25095382e-01 -1.30304575e-01\\n-9.33962464e-02 -1.07786350e-01 2.10416287e-01 1.15145527e-01\\n1.23329692e-01 -3.42679530e-01 4.39849705e-01 -2.77547061e-01\\n-4.00786102e-01 -1.10524960e-01 2.41745934e-02 9.05909613e-02\\n3.06665480e-01 -5.42094588e-01 7.03900494e-03 2.51866013e-01\\n1.41772538e-01 7.44949058e-02 2.83484519e-01 -1.07629217e-01\\n-5.77467792e-02 3.86182696e-01 -4.30141360e-01 -1.11955320e-02\\n8.87028992e-01 8.08170885e-02 1.00850090e-01 7.94578195e-02\\n1.67972997e-01 2.93403476e-01 4.62875575e-01 -3.47492807e-02\\n-3.88708413e-02 3.55016053e-01 8.06770548e-02 -5.66590726e-01\\n-4.76404428e-02 -2.16895506e-01 -3.56505550e-02 -2.99393356e-01\\n6.83066368e-01 3.31603974e-01 -3.69955629e-01 -2.33629435e-01\\n-8.46160203e-02 -1.30182326e-01 3.56767863e-01 -9.28148255e-02\\n2.61970349e-02 -1.89936161e-01 3.76356244e-01 -9.47207063e-02\\n3.02585572e-01 6.15288556e-01 -1.97078153e-01 -2.64044046e-01\\n-1.30153120e-01 2.04152435e-01 1.08272932e-01 4.84079957e-01\\n-1.72625020e-01 3.19548428e-01 6.58685416e-02 1.14237726e-01\\n-1.02002107e-01 4.83611934e-02 2.11072892e-01 6.79408908e-02\\n2.26109445e-01 9.02840644e-02 2.74445146e-01 5.53237259e-01\\n2.69963384e-01 5.45949280e-01 3.55816305e-01 1.02703258e-01\\n3.29303831e-01 5.23667812e-01 4.70607787e-01 1.63073003e-01\\n3.74352448e-02 1.28166914e-01 5.83189689e-02 -6.79947436e-02\\n2.30745837e-01 3.52295935e-01 1.22299276e-01 9.66224074e-01\\n4.03637558e-01 3.77715170e-01 7.55848944e-01 -6.79753423e-01\\n-4.46252882e-01 2.84961220e-02 5.58641016e-01 -3.62183720e-01\\n1.04366485e-02 4.70777303e-02 -2.65435040e-01 2.30347693e-01\\n-4.85594392e-01 -1.53805554e-01 -3.28570269e-02 -7.03989342e-02\\n3.49147879e-02 -1.61748692e-01 -1.66269749e-01 9.36996415e-02\\n-1.41130179e-01 -1.45356864e-01 -3.29366773e-01 -7.68242627e-02\\n-1.76492885e-01 -1.19746782e-01 -1.24883406e-01 -1.32959068e-01\\n-1.29743993e-01 -2.95736820e-01 -1.52239308e-01 6.15269877e-02\\n4.23552990e-01 -3.98562215e-02 -7.87860453e-02 -1.90938428e-01\\n2.48277962e-01 3.53220195e-01 6.59507155e-01 8.22114199e-03\\n1.47330672e-01 -4.70246971e-02 -1.82519346e-01 3.26219536e-02\\n-4.61884367e-04 1.93634182e-02 -1.36013338e-02 3.77558500e-01\\n-2.75994956e-01 -2.03450739e-01 1.38126060e-01 2.57111520e-01\\n-4.51633036e-01 -7.33265504e-02 -3.21016423e-02 1.30819753e-01\\n1.94332972e-02 2.39152670e-01 -2.85515249e-01 8.04521963e-02\\n-1.39635623e-01 -6.31096423e-01 4.53938842e-01 -2.84843773e-01\\n-6.82316646e-02 8.55871812e-02 3.73131156e-01 2.63525009e-01\\n-2.58038551e-01 -7.17266053e-02 -5.05782031e-02 3.19474638e-01\\n9.17834044e-02 2.68822074e-01 -2.96082586e-01 -1.20748632e-01\\n-2.90982991e-01 1.72468007e-01 -1.56346425e-01 1.67726755e-01\\n-1.03287384e-01 4.01425213e-01 2.13158995e-01 1.26084894e-01\\n2.09551424e-01 -7.93113559e-03 -2.97833174e-01 -2.90800065e-01\\n-1.80631295e-01 -1.72484040e-01 8.13277345e-03 4.30970499e-03\\n2.33255148e-01 -3.29242110e-01 -1.24490581e-01 -2.58233130e-01\\n-1.81781620e-01 -4.65416640e-01 -4.85115722e-02 -9.43885818e-02]]',\n", + " 'job_description': 'In this role As an expert within our growing Analytics-Team you will take over the following tasks: Advisory on mandates at ELCA, inhouse and on the client side Design and conception of analytics solutions to the integration and analysis of different data files on modern data platforms (Hadoop, Spark, Kafka, Analytics Databases, Cloud) Implementation of performing data processing job by means of BigData technologies including Continuous integration & Delivery (DevOps) Operationalization of complex AI algorithms in collaboration with Data Scientists Accompaniment of projects during the whole cycle (Analysis, Design, Development and Implementation) What we offer A challenging work environment in a dynamic team with extensive expertise An organisation with flat hierarchies and collaborations across business departments Close cooperation with customers from various industries An attractive prospect for your professional and personal development About your profile For this vacancy we expect a candidate with an academic degree of a university, university of applied sciences in computer sciences, mathematics or other scientific disciplines and with several years of experience as a Developer of analytics solutions. Experience within IT- and data architecture, as well as in the area of software development Pleasure working with data- and data processing (Batch und Streaming), as well as strong interest in leading edge technologies Knowledge and practical with technologies like (Hadoop, Hive, Kafka, Spark, SAP Hana, Lucene, Elasticsearch, Splunk), Cluster & Cloud Computing (YARN, Kubernetes, Docker, Azure, AWS) and programming languages like (Java, Scala, Python, SQL) Strong communication skills in German & English Further you should be able to deal with clients on all levels. Further you have strong analytical skills, as well as a pleasant and structured way of working. As a strong team player, you are able to deal with internal and external stakeholders to come up with ideas and solutions.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Cooperation\", \"Collaboration\", \"Professionalism\", \"Integration\"]',\n", + " 'hard_skills': '[\"Data Architecture\", \"Kubernetes\", \"Advisories\", \"KM Programming Language\", \"Batch Message Processing\", \"Computer Science\", \"Analytics\", \"SAP HANA\", \"Continuous Integration\", \"Industrialization\", \"Scala (Programming Language)\", \"SQL (Programming Language)\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"Hybrid Cloud Computing\", \"Levelling\", \"Splunk\", \"Hostile Work Environment\", \"Operationalization\", \"Applied Science\", \"Data Files\", \"Docker (Software)\", \"Apache Hive\", \"Electronic Data Processing\", \"Software Development\", \"Apache Yarn\", \"Algorithms\", \"Personality Development\", \"Java (Programming Language)\", \"Cloud Database\", \"DevOps\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Mongolian', 'Czech', 'Marathi', 'Norwegian Nynorsk']\"},\n", + " {'company_id': '82',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.nicollcurtin.com',\n", + " 'jobdescription_embedded': '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'job_description': 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " 'languages': \"['English', 'Zulu', 'Swahili']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'software engineer .net / c#',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.39995795e-02 3.35250646e-01 5.78792751e-01 -1.29941076e-01\\n4.64701653e-01 -3.69766057e-01 1.05191454e-01 3.63712847e-01\\n-5.13378531e-02 -3.42865735e-01 -1.91628918e-01 -2.82905370e-01\\n1.18555920e-02 1.20631464e-01 4.96344790e-02 2.93974698e-01\\n2.87849218e-01 6.71490356e-02 -1.34868041e-01 3.21233898e-01\\n2.02394545e-01 -1.30778149e-01 1.28763229e-01 6.65439785e-01\\n3.76757056e-01 -6.70232158e-03 3.41307861e-03 9.77772772e-02\\n-2.33811677e-01 -3.04761469e-01 4.08054709e-01 -2.24661604e-02\\n-4.05807234e-03 -2.65985578e-01 8.79088417e-02 4.40241732e-02\\n-1.74539521e-01 1.22085281e-01 5.57244420e-02 1.70685753e-01\\n-3.72524589e-01 -1.82705134e-01 9.64485928e-02 -3.06541789e-02\\n-1.52956501e-01 -3.96577328e-01 1.02722690e-01 2.05065776e-03\\n1.85473919e-01 4.01727222e-02 -3.96216303e-01 3.93563092e-01\\n-2.82718867e-01 -2.88695216e-01 2.88813591e-01 5.86105168e-01\\n-2.87808683e-02 -6.05412900e-01 -4.17917490e-01 -1.98869005e-01\\n2.20193252e-01 -6.08862601e-02 9.76299867e-02 -2.49703109e-01\\n4.94848758e-01 -6.30363682e-03 4.58837673e-02 3.70801359e-01\\n-8.31132829e-01 4.88173366e-02 -2.14614958e-01 4.26024087e-02\\n-3.06188822e-01 -4.77559641e-02 -2.46833116e-01 -1.40547246e-01\\n-1.37120947e-01 4.27567571e-01 2.03950688e-01 4.74188738e-02\\n-7.58213028e-02 2.70213068e-01 -3.34931374e-01 2.23179609e-01\\n2.85451114e-01 3.23207170e-01 2.47570544e-01 2.34550208e-01\\n-4.75566864e-01 5.14151394e-01 2.19023958e-01 -2.24276215e-01\\n1.74022168e-01 9.22211409e-02 4.09278154e-01 2.57765986e-02\\n1.24465972e-01 6.41222969e-02 -2.28002712e-01 2.03150481e-01\\n2.81742156e-01 -2.36419246e-01 -6.78101555e-02 7.87941366e-02\\n-4.66147736e-02 5.15802465e-02 -5.10821342e-02 4.08931136e-01\\n-3.71488631e-01 6.07856989e-01 3.30002792e-02 -2.16771588e-01\\n-4.99735698e-02 -6.43660605e-01 -2.40363851e-01 9.63097885e-02\\n3.77016999e-02 1.08179785e-01 1.82061657e-01 3.42771620e-01\\n1.24615729e-01 1.31780699e-01 1.82801828e-01 1.00848806e+00\\n-3.51740159e-02 2.01524645e-01 -2.78994381e-01 4.57489371e-01\\n4.06039618e-02 -2.77916789e-01 2.94273019e-01 3.60021681e-01\\n1.67656019e-01 -1.14639737e-01 -1.00077674e-01 2.94764012e-01\\n3.31706032e-02 -3.05054426e-01 -3.42874438e-01 1.27677307e-01\\n-1.40103906e-01 -5.24720609e-01 5.60441852e-01 7.54762962e-02\\n8.10468867e-02 4.69054990e-02 -3.64233293e-02 -7.65441284e-02\\n-1.04856446e-01 2.79342830e-01 6.16928302e-02 1.26006663e-01\\n-2.94955283e-01 -1.98590606e-01 -3.45345467e-01 2.75270402e-01\\n-2.06399292e-01 1.16404884e-01 -1.42051712e-01 -1.20138913e-01\\n3.86669248e-01 -1.49370346e-03 -3.29746932e-01 3.62275094e-01\\n-9.14096385e-02 2.26053619e-03 -1.00520641e-01 2.36930132e-01\\n-1.37323707e-01 1.67278334e-01 -8.75476748e-02 -2.01294601e-01\\n4.28184003e-01 1.23512268e-01 2.00953439e-01 -1.59641877e-01\\n3.57140481e-01 -1.32429183e-01 4.70495634e-02 2.42503993e-02\\n-7.12123096e-01 4.55628633e-01 -4.73668501e-02 -1.05156861e-01\\n4.82615680e-02 -1.69987064e-02 2.71746337e-01 -3.17442954e-01\\n1.08821206e-02 -1.67923570e-01 -3.89507741e-01 -2.87922502e-01\\n-1.20596610e-01 1.32114692e-02 5.45547128e-01 -4.38488662e-01\\n-1.54664502e-01 9.37325209e-02 -6.01531386e-01 9.80301350e-02\\n3.31798553e-01 2.32450500e-01 1.99254230e-01 1.17177546e-01\\n-2.33570963e-01 -4.69137609e-01 1.97242036e-01 -3.82882237e-01\\n-2.14146540e-01 1.82689011e-01 -2.53345102e-01 2.85357445e-01\\n1.42731965e-01 -5.83715551e-02 -1.54751733e-01 9.87009630e-02\\n-8.83767605e-02 -1.07187495e-01 3.09135675e-01 6.02564253e-02\\n3.17919791e-01 -6.83641434e-02 -3.73569489e-01 5.16927361e-01\\n-2.36638024e-01 4.06869829e-01 5.02030253e-02 -8.49887669e-01\\n4.18810159e-01 3.91902357e-01 3.86040546e-02 -4.14703190e-01\\n8.00929070e-01 -1.94809258e-01 -8.26516077e-02 1.40963584e-01\\n-4.87086147e-01 -2.53189653e-01 7.31034949e-02 -1.29148483e-01\\n-2.64219373e-01 5.28288841e-01 1.57841802e-01 2.48751719e-03\\n3.03817570e-01 -1.67177364e-01 -5.63406050e-02 4.20106612e-02\\n-1.03009053e-01 -2.63718486e-01 -3.59898597e-01 2.95773707e-02\\n9.33025032e-04 -5.64894319e-01 -1.64464742e-01 -4.48738456e-01\\n-2.29870215e-01 -3.85623068e-01 -2.84457594e-01 3.02222729e-01\\n7.86871389e-02 1.71372771e-01 4.33371961e-02 -4.39497270e-02\\n-2.78310090e-01 -5.91726780e-01 5.89052066e-02 2.03073859e-01\\n3.46185327e-01 2.10832834e-01 -1.33104362e-02 -1.03311993e-01\\n-5.84570095e-02 6.04193866e-01 -2.05098584e-01 -1.40605584e-01\\n1.08209684e-01 1.39762253e-01 4.72012609e-02 -1.05087914e-01\\n1.53457165e-01 3.73826772e-01 -2.18837425e-01 2.22453242e-03\\n-1.84212878e-01 1.01875596e-01 2.89617628e-01 -1.31458100e-02\\n-3.10870618e-01 -3.99476796e-01 -1.03770129e-01 2.09014311e-01\\n-5.55365026e-01 -1.96462154e-01 5.97025633e-01 1.30548239e-01\\n4.63644043e-02 1.57617778e-01 2.10942939e-01 -9.38930586e-02\\n-1.89529091e-01 -1.20896824e-01 1.92022502e-01 4.83548306e-02\\n1.36211485e-01 1.53590322e-01 -1.63846135e-01 -4.46112633e-01\\n-3.63659501e+00 -1.80078432e-01 -5.42014651e-03 -3.12845737e-01\\n2.97223538e-01 -1.54581055e-01 2.19552338e-01 -1.65595278e-01\\n-1.88669026e-01 3.05460449e-02 -9.51548964e-02 -1.36965632e-01\\n2.81775981e-01 2.40435064e-01 1.09840468e-01 3.13061804e-01\\n1.25040293e-01 -2.22727150e-01 4.76853130e-03 3.64664197e-01\\n-1.93489149e-01 -6.12320125e-01 2.30651960e-01 -1.06236584e-01\\n3.37590873e-01 3.19241226e-01 -4.68604296e-01 -7.57416487e-02\\n-1.80577040e-01 -2.22853854e-01 1.57241955e-01 -2.44731724e-01\\n-1.43219884e-02 2.94258326e-01 1.58158228e-01 -1.20368332e-01\\n2.44422495e-01 -3.11997265e-01 5.91555703e-03 -4.03323650e-01\\n8.40874389e-02 -5.94538689e-01 -6.14618436e-02 -6.66272342e-02\\n6.66004419e-01 -4.09932256e-01 1.95654392e-01 1.23809896e-01\\n2.07823701e-02 2.83911139e-01 4.53063548e-02 -1.76372513e-01\\n-1.97235227e-01 -2.66823083e-01 -5.79562448e-02 -2.25702286e-01\\n4.66666043e-01 6.96216285e-01 -2.94844300e-01 -6.37403950e-02\\n-8.23288560e-02 -3.42556387e-01 -5.09594858e-01 -4.12853509e-01\\n-2.54454225e-01 -1.26878396e-01 -6.33693337e-01 -4.84593600e-01\\n-1.54982507e-01 -1.42191112e-01 -5.85608259e-02 4.69030470e-01\\n-2.36090988e-01 -4.54550534e-01 -6.02466352e-02 -4.16607738e-01\\n8.01975727e-02 -9.71060023e-02 -2.93771345e-02 -9.37598273e-02\\n-2.48133451e-01 -4.78813738e-01 -6.90025929e-03 -1.76193304e-02\\n-1.49136111e-01 -8.99743140e-02 2.71314949e-01 -2.03736812e-01\\n-3.03722858e-01 -5.82876921e-01 4.73527908e-01 4.42071855e-02\\n3.33470196e-01 1.40813708e-01 2.42255077e-01 9.47453231e-02\\n3.66359681e-01 -2.70765573e-01 1.25461772e-01 -3.78114522e-01\\n8.91728625e-02 9.37936008e-02 5.73961973e-01 -2.37132847e-01\\n-2.01754272e-02 7.31562525e-02 -2.53148168e-01 -1.96580127e-01\\n3.42683792e-01 2.64596697e-02 1.71553433e-01 -3.61900806e-01\\n3.61735135e-01 -3.27515870e-01 -3.00484151e-01 1.41570300e-01\\n1.09479986e-01 5.15654206e-01 -9.24759433e-02 -4.34977323e-01\\n-2.27275729e-01 4.21392083e-01 -2.26698771e-01 -1.52374223e-01\\n-2.13429123e-01 2.97520813e-02 -3.47439438e-01 3.04347426e-01\\n-2.04450246e-02 1.73302069e-02 -3.29923093e-01 -4.20465767e-02\\n2.10618768e-02 2.77067512e-01 2.57934481e-01 1.13589779e-01\\n-4.24875617e-02 -3.79611403e-01 -2.14846246e-02 3.23617011e-02\\n1.62662297e-01 3.17998976e-01 6.05719984e-02 -1.21278904e-01\\n-2.18761172e-02 3.60093772e-01 -2.38716230e-01 2.05808297e-01\\n-2.53398567e-01 2.31435914e-02 -4.92392689e-01 -3.88980508e-01\\n-1.43900841e-01 -1.96623087e-01 -1.08339354e-01 2.94260293e-01\\n1.12443842e-01 -4.80814911e-02 4.07402106e-02 -4.20604438e-01\\n2.32162371e-01 -4.18848023e-02 2.91334361e-01 2.43431717e-01\\n-2.35292129e-02 5.76835871e-01 -1.72726139e-02 -1.37904301e-01\\n-1.62628219e-01 5.69730178e-02 -2.79366702e-01 -7.88518339e-02\\n2.56062914e-02 -4.27904785e-01 -8.10970645e-03 3.98097992e-01\\n1.08125590e-01 -3.61608803e-01 -9.99841392e-02 3.23307127e-01\\n-1.15581444e-02 -4.54943866e-01 -1.64581299e-01 1.22221999e-01\\n3.09805959e-01 1.02784693e-01 2.58078277e-01 -4.92193967e-01\\n-7.67409755e-03 9.98756289e-02 -1.29717037e-01 4.82860923e-01\\n-2.86095627e-02 1.20670937e-01 -4.59373035e-02 -3.21812332e-01\\n3.14715654e-01 -1.34326324e-01 -9.52776149e-03 -8.16570669e-02\\n1.50452837e-01 -1.22944333e-01 -4.04615492e-01 -1.07274083e-02\\n-3.86911333e-02 -9.39931050e-02 1.88949164e-02 1.31937265e-02\\n9.20329243e-02 4.48798463e-02 -4.75471020e-01 -2.82731950e-01\\n-3.28823209e-01 -1.26031414e-01 -9.33070257e-02 -3.89814317e-01\\n7.66213536e-02 -4.30215970e-02 -5.35311818e-01 3.65594536e-01\\n-1.47409961e-01 7.34477267e-02 2.19290018e-01 -3.70027847e-03\\n-4.59182531e-01 -1.23398535e-01 2.43806079e-01 2.10411221e-01\\n-3.34555000e-01 -2.70502090e-01 -6.12781830e-02 -9.74847734e-01\\n2.23563954e-01 -1.32047281e-01 -5.51519170e-02 7.02798739e-02\\n-8.03746060e-02 -5.10082066e-01 2.57669002e-01 -4.35314298e-01\\n-1.90430090e-01 -2.80766599e-02 -2.15726376e-01 -4.35656816e-01\\n-7.02216849e-02 -7.43538514e-03 -2.79765308e-01 4.07338262e-01\\n-3.65778923e-01 4.01677161e-01 -8.79502594e-02 3.65646593e-02\\n-1.05069071e-01 -1.64712012e-01 1.11720599e-01 -4.66668516e-01\\n-5.02142787e-01 -1.49727985e-01 -2.39411965e-01 -1.53811529e-01\\n-3.02266255e-02 -1.59854606e-01 -1.39973417e-01 7.52397925e-02\\n2.43774444e-01 1.40858382e-01 -2.69311313e-02 -1.26812980e-01\\n6.14742897e-02 -4.21969086e-01 -5.07393442e-02 -2.01066181e-01\\n4.59013395e-02 -1.58128083e-01 1.33343488e-01 4.38675024e-02\\n3.20338607e-02 -4.69429910e-01 4.61370587e-01 -1.42458960e-01\\n-2.73617834e-01 4.47295234e-02 6.48807660e-02 1.52496308e-01\\n3.29329491e-01 -4.24849182e-01 1.68828312e-02 3.20536673e-01\\n1.39476359e-01 1.10014372e-01 2.33474627e-01 -7.79749379e-02\\n-2.37630859e-01 3.01276982e-01 -3.39940608e-01 9.36526209e-02\\n7.64296114e-01 1.67809755e-01 1.52172565e-01 2.72762775e-01\\n1.77274048e-01 3.55184823e-01 4.46117073e-01 6.18371591e-02\\n-4.26048711e-02 4.17723596e-01 7.46866614e-02 -5.09685516e-01\\n1.17228299e-01 1.03521749e-01 -3.11587095e-01 -2.56383002e-01\\n6.21267259e-01 4.94621307e-01 -3.24777246e-01 -3.22307646e-01\\n-2.52845705e-01 -1.94170386e-01 1.16937272e-01 -2.23922640e-01\\n1.74328923e-01 -2.14896247e-01 5.12992203e-01 9.88713726e-02\\n1.07385509e-01 4.45189208e-01 -2.28208110e-01 -3.57998699e-01\\n1.01103447e-01 1.40395120e-01 1.92834616e-01 2.40782216e-01\\n-1.14868246e-01 2.20514715e-01 -5.86164743e-02 1.77401662e-01\\n-1.33047312e-01 1.18686154e-01 1.21529825e-01 9.31338668e-02\\n1.08821215e-02 7.98870325e-02 3.22156370e-01 5.01354277e-01\\n3.23970228e-01 4.31119919e-01 1.88143447e-01 7.00362027e-03\\n4.64333981e-01 5.49779534e-01 3.90707433e-01 2.16324568e-01\\n-6.71236068e-02 -1.84571594e-02 2.77564861e-02 -1.75713617e-02\\n2.70239383e-01 3.27943951e-01 4.27183136e-02 8.96209955e-01\\n4.15628254e-01 2.01356903e-01 7.06834555e-01 -5.38191974e-01\\n-4.03924614e-01 -2.20054537e-02 4.06180114e-01 -4.42725331e-01\\n-1.56852707e-01 6.34243414e-02 -2.69979745e-01 1.39637470e-01\\n-4.64405179e-01 -1.67816415e-01 -9.86833572e-02 -2.07132902e-02\\n1.56364813e-01 -7.98116028e-02 -2.51188636e-01 -1.63048536e-01\\n-2.13829294e-01 -1.47049710e-01 -4.93398756e-01 -9.49210078e-02\\n-2.43086159e-01 -2.77882189e-01 -1.40593156e-01 -1.97990164e-01\\n-2.70161703e-02 -4.08469588e-01 -2.23765329e-01 5.66765554e-02\\n2.74015367e-01 -1.26930490e-01 -4.19663452e-02 -1.30328238e-01\\n2.51100123e-01 1.97219402e-01 6.05810344e-01 -4.75016888e-03\\n7.04863444e-02 -1.73395634e-01 -1.75210580e-01 7.97345713e-02\\n2.33371556e-01 1.60470307e-01 -3.59520898e-03 4.69539464e-01\\n-4.02127236e-01 -1.48868710e-01 -1.36767412e-02 5.23167729e-01\\n-3.91351730e-01 7.47904927e-02 1.01863958e-01 2.67115712e-01\\n7.03318715e-02 3.38105075e-02 -1.85994923e-01 5.06803989e-02\\n-2.51456648e-01 -5.16831756e-01 2.65523374e-01 -7.86855295e-02\\n-1.57653168e-01 4.39037345e-02 1.11513242e-01 1.54173389e-01\\n-1.71496153e-01 -1.53831363e-01 1.05763435e-01 1.37929469e-01\\n2.76641995e-01 3.32663387e-01 -2.58737832e-01 -2.65550166e-01\\n-3.86903614e-01 1.53313428e-01 -3.75429720e-01 1.95665315e-01\\n-7.92288184e-02 2.23854959e-01 4.78915051e-02 2.10408419e-01\\n2.89527982e-01 -6.43686205e-02 -1.07713558e-01 -2.83538729e-01\\n-3.00297737e-01 -2.80480921e-01 1.03980675e-01 3.08904573e-02\\n1.03786029e-01 -4.48357999e-01 -1.15784578e-01 -5.52665740e-02\\n-1.64544910e-01 -3.73970807e-01 1.89681482e-02 -1.53350011e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Software Engineer .NET / C#. The role is permanent position based in Zürich Canton. Your role: Design and develop core components for a PC-based client-server application Develop & implement concepts independently. Carry out feature development of client & / or server: Analysis, conception, design, implementation & unit testing. Perform design & code reviews with team members. Train & support team members in development work when necessary. Work closely with cooperation partners composed of product managers, requirements engineers & development teams for software instruments. Your Skills & Profile: 3 to 5 years of relevant work experience in software engineering environment. Strong practical experience & expertise with the .NET Framework & C#. Solid know-how of phase models & agile methods. Good Knowledge of OOA / OOD, UML & OO implementations. Ideally experienced with WPF, WCF, NHibernate & Autofac. Your Profile: University Degree in Computer Science. Proactive, self-driven & consistently aim to achieve high performance. Fluent English (spoken & written), German language skills are a big plus If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Proactivity\", \"Positivity\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Production Management\", \"NHibernate\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"High Performance Computing\", \"Requirements Management\", \"Autofac\", \".NET Framework\", \"Component Object Model (COM)\", \"Instrumentation\", \"Idealization\", \"Feature-Driven Development (FDD)\", \"Reporting Application Server\", \"Software Engineering\", \"Wcf 4\", \"Requirements Engineering\", \"C# (Programming Language)\", \"Phase (Waves)\", \"Code Review\", \"Receivables\", \"Concept Analysis\"]',\n", + " 'languages': \"['English', 'Faroese']\"},\n", + " {'company_id': '121',\n", + " 'job_title': 'frontend engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.teralytics.ch',\n", + " 'jobdescription_embedded': '[[-1.23579845e-01 2.93399215e-01 5.25721729e-01 7.85023421e-02\\n4.19699490e-01 -2.49111410e-02 -3.58503014e-02 4.96793211e-01\\n-4.65962850e-02 -5.25776505e-01 5.66240326e-02 -3.19739103e-01\\n-1.27106056e-01 1.03402823e-01 -7.67607242e-04 4.35630441e-01\\n3.35431159e-01 9.88462418e-02 -2.23248124e-01 3.93326521e-01\\n7.20900446e-02 -7.34687746e-02 2.07197875e-01 8.84832740e-01\\n3.73518050e-01 -1.33740097e-01 -4.51790467e-02 5.29524237e-02\\n-2.02978402e-01 -1.64191395e-01 5.08260608e-01 4.06589285e-02\\n-3.14435959e-01 -3.66170794e-01 1.14152431e-01 -4.14469130e-02\\n-2.94421703e-01 -2.69246846e-01 -1.70056671e-01 1.52753592e-01\\n-5.40310740e-01 -2.83601463e-01 -1.90319389e-01 8.26458633e-03\\n-2.35858276e-01 -2.50487238e-01 9.83743817e-02 7.49109238e-02\\n1.11827746e-01 7.21769854e-02 -5.25439143e-01 1.81697950e-01\\n-2.10754052e-01 -1.49727657e-01 3.56817663e-01 5.10881841e-01\\n-5.90718612e-02 -4.22961116e-01 -5.11825025e-01 -4.03737128e-01\\n5.97058013e-02 -5.69449328e-02 2.64540222e-02 -4.63153303e-01\\n2.24637926e-01 1.25168815e-01 1.09981865e-01 3.10152501e-01\\n-6.98030829e-01 -1.43823177e-01 -3.40612382e-01 -1.15538470e-01\\n-2.96571046e-01 -1.16844095e-01 -3.78809333e-01 -1.40633702e-01\\n-1.68254465e-01 4.72057998e-01 5.68039566e-02 5.02098463e-02\\n-2.18380883e-01 4.63668913e-01 -2.18298107e-01 4.32817578e-01\\n1.68341547e-01 3.68644536e-01 1.86919451e-01 3.14986885e-01\\n-3.74770939e-01 4.42581296e-01 1.13608710e-01 -3.85571271e-01\\n2.03325033e-01 1.44699991e-01 4.22388673e-01 -9.77218449e-02\\n3.63011956e-01 -4.82609048e-02 -3.16630065e-01 4.41865563e-01\\n3.64671111e-01 -3.98974359e-01 2.49471486e-01 -1.12911776e-01\\n1.61653131e-01 -1.00586832e-01 1.55575186e-01 1.21311754e-01\\n-2.45256603e-01 3.48027229e-01 1.05345279e-01 -2.48117715e-01\\n-1.67894587e-02 -4.67990041e-01 2.73228027e-02 5.78152835e-02\\n2.87929736e-02 -2.45071203e-02 1.01956859e-01 3.60882320e-02\\n2.37855911e-01 -1.79064330e-02 4.23837639e-02 6.30572140e-01\\n-1.60771668e-01 -1.24343172e-01 -2.02874810e-01 2.53848493e-01\\n2.23280378e-02 -2.53743559e-01 2.40192980e-01 2.38810033e-01\\n-1.28863864e-02 -2.54537821e-01 -2.67847300e-01 3.85174394e-01\\n1.01309299e-01 -2.34340757e-01 -2.28538096e-01 3.40746343e-01\\n7.25050420e-02 -3.58729243e-01 6.99770331e-01 1.00742951e-01\\n2.00497717e-01 -6.63858727e-02 -1.05420277e-02 -1.86222062e-01\\n-6.72279894e-02 -6.03388995e-02 3.35646421e-03 1.43918753e-01\\n-1.78532243e-01 -3.14929008e-01 -8.07268918e-02 -8.87499377e-03\\n-5.17841756e-01 1.93727106e-01 -9.22134519e-02 -4.46382612e-02\\n1.95082463e-02 -7.15325847e-02 -2.45175794e-01 2.87806809e-01\\n-1.96319774e-01 7.24045485e-02 6.12854697e-02 5.29392421e-01\\n-9.18594599e-02 2.56735981e-01 9.18153077e-02 -1.81125790e-01\\n6.16453290e-01 3.30388188e-01 2.27801234e-01 9.50129181e-02\\n1.60699770e-01 2.33827662e-02 -4.02905792e-03 1.45025283e-01\\n-8.44521284e-01 2.95116007e-01 3.45449299e-02 -1.96054369e-01\\n1.64220184e-01 -1.45139575e-01 1.58551440e-01 -2.52801180e-01\\n-3.69728766e-02 -1.27791554e-01 -2.29090452e-01 -2.73631901e-01\\n-7.62037113e-02 -1.87940031e-01 2.54311323e-01 -5.45333028e-01\\n-7.42686614e-02 1.07227545e-02 -5.32564819e-01 -1.64876759e-01\\n-1.01291398e-02 1.83962762e-01 1.44209027e-01 8.03280920e-02\\n-1.02256030e-01 -5.28380156e-01 5.00006117e-02 -3.36201906e-01\\n-3.05362165e-01 -9.96300112e-03 -3.94033492e-01 1.18415929e-01\\n5.80518208e-02 -8.36820602e-02 -1.60000950e-01 4.78587523e-02\\n-2.07779735e-01 -6.09468743e-02 -1.50434867e-01 -4.12155129e-03\\n1.97905034e-01 1.20966122e-01 -3.05731207e-01 4.44832891e-01\\n-1.37671858e-01 6.59154177e-01 4.63377386e-02 -6.96983933e-01\\n4.91092056e-01 4.44897592e-01 -8.76761079e-02 -3.68802160e-01\\n4.57046330e-01 -3.26403081e-01 -1.36404410e-01 -2.02308968e-02\\n-3.43472868e-01 -3.30782712e-01 1.54344887e-01 -2.68709123e-01\\n-2.46033713e-01 4.35492754e-01 6.19320981e-02 1.66537344e-01\\n2.27961063e-01 -3.24186057e-01 -6.39095679e-02 -2.15834491e-02\\n-7.68651292e-02 -2.32477263e-01 -6.68751359e-01 -2.17776939e-01\\n-2.05967546e-01 -3.81371558e-01 -3.24803442e-02 -4.17229533e-01\\n-1.43407971e-01 -3.13632876e-01 -9.87014472e-02 2.20309868e-01\\n3.10815573e-01 -4.17306796e-02 -1.06487602e-01 9.31433365e-02\\n-2.06051186e-01 -6.99862123e-01 4.99978922e-02 1.62259415e-01\\n4.41062331e-01 1.96381152e-01 2.71242410e-01 -1.99359097e-02\\n6.66364208e-02 7.89240837e-01 -1.99498922e-01 -1.20881185e-01\\n1.77721083e-01 2.18578130e-01 1.23111680e-01 -4.69625928e-02\\n1.98409289e-01 3.23943257e-01 -2.97700077e-01 3.40049081e-02\\n5.74410334e-02 -9.90053266e-03 5.05695462e-01 2.30510868e-02\\n-2.98630536e-01 -1.27244949e-01 -1.64279584e-02 3.30367275e-02\\n-4.19255972e-01 -1.97610706e-01 4.46426272e-01 2.09593773e-01\\n2.19281316e-01 5.55627905e-02 1.07027918e-01 1.00451887e-01\\n-1.92829013e-01 -3.29990387e-01 3.68354857e-01 8.79892558e-02\\n7.61021972e-02 1.38752669e-01 5.18997125e-02 -5.20616829e-01\\n-3.20654821e+00 -8.53528976e-02 1.97419852e-01 -1.44088686e-01\\n1.89393193e-01 3.10317911e-02 3.24844383e-03 -7.36726448e-02\\n-2.35015035e-01 7.75593966e-02 -1.78666636e-01 -2.16080248e-01\\n1.37819514e-01 8.12493861e-02 3.67712490e-02 7.77714774e-02\\n2.00591594e-01 -2.47883171e-01 -6.99451268e-02 2.49238819e-01\\n-1.90491140e-01 -7.28970408e-01 1.05000138e-01 -3.53961401e-02\\n2.88512290e-01 2.79749960e-01 -3.72640848e-01 -1.85696110e-01\\n-1.44766510e-01 -2.09772557e-01 -2.58958116e-02 -4.32846606e-01\\n-1.69027567e-01 1.67008698e-01 2.71183193e-01 -3.11063528e-02\\n1.96449645e-03 -3.58851790e-01 -2.75279522e-01 -5.30766428e-01\\n5.29328808e-02 -5.11140645e-01 -8.40596156e-04 -2.07475871e-01\\n8.06700110e-01 -2.43226305e-01 1.42410129e-01 2.50463169e-02\\n4.69836108e-02 5.20456992e-02 2.53179222e-01 1.26054049e-01\\n-2.27574944e-01 -2.54944682e-01 -3.90350968e-02 -1.81579858e-01\\n5.56796074e-01 3.06474060e-01 -1.75938100e-01 -9.23742279e-02\\n1.18065901e-01 -2.08107501e-01 -4.98447090e-01 -1.07085496e-01\\n-1.14153959e-02 -2.07301080e-01 -6.53504431e-01 -3.91476274e-01\\n-7.86846131e-02 -2.17786431e-01 -2.25293085e-01 6.03317440e-01\\n-3.57819617e-01 -2.56108820e-01 1.61022022e-02 -4.77542847e-01\\n4.67649877e-01 -2.00655818e-01 2.15705931e-02 -3.20451081e-01\\n-2.71206945e-01 -4.39194083e-01 2.53454074e-02 -8.34199041e-02\\n-5.01807928e-02 -3.63148808e-01 4.88334075e-02 -6.82196170e-02\\n-1.28324598e-01 -5.70201457e-01 4.67823505e-01 1.67164207e-01\\n2.19043970e-01 1.48196429e-01 4.22282159e-01 -8.18097293e-02\\n1.64819807e-01 1.63131133e-01 -1.41461968e-01 -2.18828723e-01\\n1.22757792e-01 4.85173762e-02 3.27694058e-01 -6.29526824e-02\\n-1.45245371e-02 1.11125901e-01 -2.96625614e-01 6.00766316e-02\\n2.45641023e-01 -7.01929182e-02 8.21780786e-02 -1.15494668e-01\\n3.62400413e-01 -3.08475077e-01 -1.31428773e-02 5.63411862e-02\\n1.56273633e-01 6.38420701e-01 1.67827308e-03 -4.10116792e-01\\n-1.17930342e-02 5.08486092e-01 8.06755479e-03 1.24444082e-01\\n-2.49771222e-01 1.19322285e-01 -3.18730891e-01 2.34040931e-01\\n1.00715168e-01 -2.03780025e-01 -2.05699891e-01 -8.98755938e-02\\n-1.18600890e-01 3.82208228e-01 2.96510309e-01 9.72151011e-02\\n9.50306207e-02 -4.99423563e-01 -2.14457884e-01 2.50590175e-01\\n2.79440045e-01 5.46361685e-01 1.55815333e-01 -2.87146270e-01\\n3.81847806e-02 3.92797828e-01 -1.09684184e-01 1.45992771e-01\\n-2.31144398e-01 1.48204818e-01 -5.06975293e-01 -2.20484823e-01\\n-4.02841985e-01 -3.74466002e-01 2.56819814e-01 3.97695839e-01\\n2.38159001e-01 -1.02527305e-01 6.90770000e-02 -3.79894376e-01\\n2.59567857e-01 2.61136174e-01 2.54649103e-01 8.48751590e-02\\n-3.60576399e-02 5.64549029e-01 1.56342447e-01 -2.44089067e-01\\n-1.13690481e-01 -2.21194960e-02 -1.34670794e-01 1.40346512e-02\\n-1.25516756e-02 -6.12455904e-01 -2.58369476e-01 3.45459074e-01\\n4.92989272e-02 -1.89965308e-01 -1.58773214e-01 3.17962438e-01\\n-1.15542129e-01 -1.15291841e-01 -2.88072765e-01 -5.20853661e-02\\n4.44818854e-01 1.19308330e-01 3.83392096e-01 -4.95261043e-01\\n-1.25604272e-01 2.51072310e-02 -3.39547023e-02 5.22853017e-01\\n-3.13350223e-02 -5.46027757e-02 -1.20501079e-01 -1.92232490e-01\\n3.85082543e-01 -2.77876496e-01 -1.93124339e-01 8.69284272e-02\\n7.32967183e-02 -1.20890826e-01 -3.95751119e-01 1.48965567e-01\\n-6.04763627e-04 -2.49997437e-01 -4.96552438e-02 3.24569464e-01\\n4.58386131e-02 1.19118482e-01 -7.42156863e-01 -2.03458786e-01\\n-2.85418570e-01 1.66426361e-01 8.67159665e-02 -5.40792346e-01\\n4.41426672e-02 -2.40284368e-01 -6.64822459e-01 2.34500900e-01\\n-2.72952318e-01 -1.87562674e-01 9.81483534e-02 1.56662650e-02\\n-2.44002163e-01 -1.50442868e-01 5.62619977e-03 3.20364356e-01\\n-2.45387256e-01 -3.06732267e-01 -8.69671702e-02 -8.80515218e-01\\n2.37986490e-01 1.38007119e-01 -2.04207525e-01 1.36368066e-01\\n-1.44270331e-01 -6.62676275e-01 3.56135294e-02 -1.19254246e-01\\n-1.35989636e-01 -7.91659728e-02 -3.15757841e-01 -2.99689442e-01\\n2.14120060e-01 -1.44177116e-04 -1.68543920e-01 4.33785975e-01\\n-3.16622972e-01 1.86901361e-01 -2.43034333e-01 3.90616991e-02\\n-8.13825205e-02 -2.97911823e-01 1.17707044e-01 -4.15840447e-01\\n-4.85785186e-01 -2.85642296e-01 -1.93121850e-01 -3.87660086e-01\\n-1.89975455e-01 -4.27620590e-01 -2.07964163e-02 -1.18472055e-03\\n2.62154698e-01 -7.60777220e-02 -1.86973438e-01 -2.59558201e-01\\n1.33079782e-01 -4.65987444e-01 1.01078242e-01 -1.36738643e-04\\n-3.67363505e-02 -2.39293382e-01 1.11524791e-01 1.18981272e-01\\n2.95704663e-01 -3.40235949e-01 2.19130903e-01 -6.52194738e-01\\n-2.68620938e-01 -5.88957369e-02 -1.58876404e-02 -2.84191482e-02\\n1.71321675e-01 -5.07032871e-01 6.77375197e-02 4.09710795e-01\\n2.13228345e-01 4.58456427e-02 2.52339602e-01 -1.71565890e-01\\n-4.99894693e-02 4.32166219e-01 -1.51055098e-01 1.39727578e-01\\n7.78289437e-01 7.37064183e-02 2.03044742e-01 2.01079816e-01\\n5.32234013e-02 2.40388662e-01 3.81585479e-01 -2.17770785e-02\\n-8.10138583e-02 1.52336821e-01 1.90713823e-01 -4.79417950e-01\\n-2.21280381e-02 2.35802978e-02 -1.41184777e-01 -3.69127065e-01\\n6.73279703e-01 3.77215564e-01 -4.57994819e-01 -4.19035591e-02\\n-5.52536026e-02 -9.70232263e-02 1.58781782e-01 1.20163709e-03\\n-9.72460955e-04 3.64994071e-02 2.63047457e-01 -1.42033651e-01\\n2.31685042e-01 5.72090387e-01 -4.95424271e-02 -2.62506485e-01\\n-9.04868990e-02 4.28061366e-01 -1.60298683e-02 5.22552848e-01\\n-2.16636449e-01 3.00592393e-01 1.11129969e-01 -6.25464786e-03\\n-6.67265803e-02 2.21259475e-01 1.70181319e-01 1.18232548e-01\\n2.02496052e-01 7.57725388e-02 3.64590108e-01 4.27349478e-01\\n3.60719919e-01 4.74992812e-01 2.70054817e-01 2.06135899e-01\\n3.98745477e-01 5.20626247e-01 4.15227413e-01 1.79552913e-01\\n-4.95510995e-02 5.99726662e-02 1.30621105e-01 -5.29425256e-02\\n3.20703149e-01 4.19076145e-01 7.91069493e-03 9.68700707e-01\\n3.32125962e-01 3.27838987e-01 6.38249278e-01 -6.99022770e-01\\n-2.74809599e-01 1.56081155e-01 4.50889587e-01 -4.40819263e-01\\n1.41057178e-01 4.63673510e-02 -5.43630123e-03 3.80127370e-01\\n-4.53974247e-01 -3.01362485e-01 1.30990725e-02 2.92919755e-01\\n4.74476404e-02 -3.00300449e-01 -2.61320174e-01 4.65546250e-02\\n-8.00867379e-02 -7.68428370e-02 -4.14825678e-01 -1.38973325e-01\\n-2.64064908e-01 -1.27689779e-01 -1.10817418e-01 -1.91261560e-01\\n2.20229663e-02 -2.60212183e-01 -1.99533217e-02 -8.95065144e-02\\n2.76820898e-01 -1.38364211e-01 -1.18192673e-01 -1.37035266e-01\\n3.71873111e-01 2.06051424e-01 5.26858747e-01 -6.35449123e-03\\n2.01185584e-01 -1.62368298e-01 -2.26636186e-01 2.04156503e-01\\n7.40240961e-02 3.95169333e-02 -5.96227795e-02 4.04631533e-02\\n-2.02656090e-01 -2.09689736e-01 1.98953390e-01 2.28882104e-01\\n-4.96074855e-01 2.49252971e-02 -2.06031740e-01 1.89417049e-01\\n-3.95829976e-02 1.88557118e-01 -1.99440986e-01 2.55305078e-02\\n-1.59616143e-01 -4.15746152e-01 2.01386094e-01 -1.42630458e-01\\n-1.43095136e-01 -3.29967663e-02 4.51712608e-01 1.18638173e-01\\n-3.14783841e-01 1.21351052e-02 -9.07522142e-02 8.78540576e-02\\n8.32986087e-04 1.61249295e-01 -1.92122221e-01 -1.87737808e-01\\n-2.37770915e-01 6.33843094e-02 -2.56481916e-01 7.76565969e-02\\n2.00481728e-01 4.43547368e-01 1.94571421e-01 -6.88022077e-02\\n5.89097023e-01 -1.01672202e-01 -2.81858563e-01 -1.74266368e-01\\n-1.23484217e-01 -9.47194621e-02 -1.96634173e-01 -5.86392283e-02\\n2.36270428e-01 -4.21762913e-01 -4.84818313e-03 -2.21713275e-01\\n-9.03806463e-03 -3.48473102e-01 7.35559836e-02 -1.08425640e-01]]',\n", + " 'job_description': \"Would you like to be central to our future success, where you will be a part of a very dynamic team fueled by positive energy, enthusiasm and supportive teammates? We are looking for a smart and passionate Frontend Engineer to join our Engineering Team in Zurich. About Teralytics Teralytics is on a mission to change how the world moves. Until now, cities and mobility services have been designed based on assumptions of how officials and companies expect people to move. But, they aren't taking everyone's journey into consideration. As a result, for many, mobility is limited. Not just physically, but socially and economically. It's stopping people from reaching their full potential. Teralytics partners with mobile network operators to solve this problem with the most accurate indicator of people's movement – their mobile devices. It's the one thing everyone has with them at all times. And the cell towers receiving their signals don't discriminate based on device model or apps. Due to its complexity and scale, mobile network data has been nearly impossible to understand or utilize. That's why we've pioneered a way to translate it into actionable insights. For the first time we've unlocked truly inclusive data on people's journeys. Teralytics is backed by leading investors in the mobility and transport space, including Robert Bosch Venture Capital and Deutsche Bahn Digital Ventures, as well as high-profile VC funds, such as Atomico and Lakestar, and we are continuing to grow across the world. Whether at our headquarters in Zurich or in our offices in New York and Singapore, our people are at the core of our mission to shape the future of mobility. Your Role The frontend team is one of the engineering pillars in Teralytics. The team is responsible for building interactive web applications and data visualizations that present the insights from our aggregated and anonymized data on human mobility to customers in an easily understandable, visually appealing and engaging manner. Located in our Zurich office, you will play a central role in the development of these applications. More specifically, your responsibilities will include: Taking ownership of our web applications and shaping their future direction and architecture in close collaboration with product managers and designers Developing new features, components and experiences for our web applications in close collaboration with our data visualisation specialists, designers, data scientists and backend engineers Mocking up and prototyping new functionality, visualizations and applications Designing and developing internal applications in close collaboration with data scientists and backend engineers Working with our reliability engineers for efficient deployment of web applications Tech Stack We like working with modern browsers and technologies. Our tech stack includes tools such as: React, TypeScript, Node.js, D3, SVG, Canvas, WebGL, webpack, PostgreSQL, ClickHouse, Docker, Kubernetes. Open Source As strong believers in open-source we contribute to the community by releasing some of our work as open source projects ( https://github.com/teralytics/ ). Your Profile You are a CH/EU/EFTA citizen or in possession of a valid Swiss work permit Must-have qualifications Professional experience in building web applications with great UI/UX using state-of-the-art technologies, with a demonstrable portfolio Extensive knowledge of the technologies that power the web: JavaScript, HTML, CSS Experience with modern frontend development stacks Know-how in scalable frontend development architectures Fluency with data, databases, data preparation and transformations Eye for aesthetics and fluent user experiences Open mind about technologies and ways of approaching a problem Excitement about the fast moving web development world. You enjoy staying up to date and learning new technologies. Strong English communication skills, attention to detail, and ability to deliver finished projects on your own Preferred qualifications Experience with React, TypeScript, D3 and Node.js Experience with geospatial data, web mapping and geographic visualization Experience with 2D/3D graphics in the browser (SVG, Canvas, WebGL) Experience with functional programming concepts Knowledge of SQL databases, especially PostgreSQL What we offer We offer the chance to be part of an exciting and ambitious start-up that puts its people at the heart of its business. Be part of a diverse, international, cross-disciplinary team of highly motivated, hands-on experts that tackle unique challenges with a positive spirit and lots of fun. We offer a flexible work schedule, a central office location as well as a wide range of benefits and perks, including financial childcare support, additional company holidays, and career development programs. What to expect Teralytics is an equal opportunity employer and we value diversity. We do not discriminate on the basis of race, religion, colour, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Aesthetics\", \"Collaboration\", \"Mobile Devices\", \"Communications\", \"Scheduling\", \"Enthusiasm\", \"Presentations\", \"Socialization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Production Management\", \"Web Applications\", \"Childcare Fundamentals\", \"Disabilities\", \"Kubernetes\", \"Tooling\", \"Hyper SQL Database (HSQLDB)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Joint Application Design (JAD)\", \"Aggregator\", \"2D Animation\", \"TypeScript\", \"Scale (Map)\", \"Visualization\", \"PostgreSQL\", \"Component Object Model (COM)\", \"Node.js\", \"Venture Capital\", \"Prototyping\", \"D3.js\", \"Translations\", \"Limiter\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Mobility\", \"Mobile Network Operator\", \"Data Visualization\", \"React.js\", \"Mock Ups\", \"Open Source Technology\", \"Docker (Software)\", \"Github\", \"Programming Concepts\", \"2D Computer Graphics\", \"Webpack\", \"WebGL\", \"Equalization\", \"Digitization\", \"Architectural Development\", \"JavaScript (Programming Language)\", \"Scalability\", \"Unlocker\", \"Receivables\", \"Functional Programming\", \"Humanism\", \"Appeals\", \"Economics\", \"Career Development\", \"Data Direct Networks\", \"Web Mapping\", \"3D Graphic Design\", \"Additives\", \"User Experience\", \"Eyes\", \"Custom Backend\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '118',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.swisscom.ch',\n", + " 'jobdescription_embedded': '[[-2.37515822e-01 3.27821583e-01 4.20995831e-01 -5.08009791e-02\\n3.81632239e-01 -2.43010327e-01 1.08985091e-02 3.85306656e-01\\n4.62909192e-02 -2.13611737e-01 -6.37277514e-02 -2.93727368e-01\\n-2.90873051e-01 1.49489000e-01 1.54372424e-01 4.23432171e-01\\n2.22828403e-01 9.23545882e-02 -2.44008526e-01 4.17492867e-01\\n6.86373413e-02 7.27814510e-02 -1.34627029e-01 6.21603370e-01\\n4.03350651e-01 -5.32095619e-02 -1.65685907e-01 -1.05307475e-01\\n-3.72956097e-01 -1.61685959e-01 4.54196304e-01 1.26438990e-01\\n-2.08362356e-01 -4.05997336e-01 5.26735373e-02 1.15206756e-01\\n-1.37977004e-01 -5.89941218e-02 -6.01788200e-02 1.78162575e-01\\n-5.23175359e-01 -3.62893403e-01 5.38302846e-02 1.49870679e-01\\n-1.85276926e-01 -2.17958227e-01 2.51104772e-01 6.37179315e-02\\n-5.45897186e-02 3.93017828e-02 -6.58880770e-01 2.48588890e-01\\n-1.46918803e-01 -2.66802430e-01 2.58605987e-01 5.46580195e-01\\n1.00834295e-01 -4.95901167e-01 -4.50792015e-01 -4.47990000e-01\\n9.66743007e-02 -7.44877607e-02 2.49192845e-02 -3.64111900e-01\\n2.97390580e-01 1.79963920e-03 2.74405652e-03 3.82426083e-01\\n-7.95863688e-01 -1.82803214e-01 -1.18297070e-01 -4.55285832e-02\\n-3.95875394e-01 6.00838959e-02 -2.22109929e-01 -6.15972094e-02\\n-7.32400045e-02 3.25842917e-01 -4.43595536e-02 8.52121636e-02\\n-1.82827339e-01 4.30580705e-01 -6.82247505e-02 3.11964750e-01\\n3.28048706e-01 1.45572141e-01 6.88224211e-02 3.51250947e-01\\n-3.97454917e-01 3.68488133e-01 5.81115559e-02 -2.21373856e-01\\n3.01258802e-01 1.55241787e-01 5.46696544e-01 4.97956723e-02\\n1.59619376e-01 1.90129012e-01 -2.52596438e-01 2.39958867e-01\\n2.17011750e-01 -3.80977780e-01 1.69381872e-01 -7.13851899e-02\\n-1.01593412e-01 -1.46940099e-02 7.03252554e-02 2.09431559e-01\\n-2.26294518e-01 3.89722824e-01 3.08652908e-01 -1.37512237e-01\\n-8.48512277e-02 -5.51381230e-01 -4.79210503e-02 -3.53688933e-03\\n1.14034355e-01 1.02352053e-01 2.18395367e-01 9.08071622e-02\\n2.34005958e-01 5.63564673e-02 1.49540439e-01 7.42017686e-01\\n-1.13778375e-01 1.56902015e-01 -1.26103252e-01 3.56538028e-01\\n2.28007525e-01 -3.20565253e-01 2.98876971e-01 2.50431150e-01\\n2.16553420e-01 -1.06242828e-01 -3.46848845e-01 4.08227354e-01\\n-1.77643582e-01 -1.72903165e-01 -3.70090693e-01 1.04895666e-01\\n-1.09037980e-01 -4.84822035e-01 5.25121629e-01 2.16166899e-01\\n2.57058501e-01 -5.52205816e-02 -3.23333666e-02 -4.57535759e-02\\n-6.25421703e-02 3.69237304e-01 1.90292429e-02 3.24873000e-01\\n-2.93915391e-01 -2.72201121e-01 -1.73601836e-01 2.63056755e-01\\n-3.95872980e-01 1.28986880e-01 6.14040755e-02 -1.66189373e-01\\n3.25342000e-01 5.82416877e-02 -3.56184751e-01 1.54371709e-01\\n-1.18086323e-01 -2.32663214e-01 -3.22058201e-02 3.60680044e-01\\n-2.31387749e-01 3.06946486e-01 -3.56702246e-02 -1.51209891e-01\\n6.02022171e-01 1.46288365e-01 2.05208033e-01 -2.49165483e-02\\n2.82504469e-01 -7.87910372e-02 3.26676905e-01 1.51668772e-01\\n-7.68049181e-01 2.49433547e-01 -2.53462233e-02 -1.66625425e-01\\n1.24892563e-01 5.32665476e-02 3.40551257e-01 -3.29799622e-01\\n2.67900657e-02 -2.14845866e-01 -4.61766034e-01 -3.25357676e-01\\n-4.77361143e-01 5.93500920e-02 3.54495585e-01 -3.46998155e-01\\n-1.10501237e-01 1.25149235e-01 -5.64486682e-01 -1.77245751e-01\\n1.02879219e-01 4.64399420e-02 2.46496964e-02 -2.03646049e-02\\n-9.19718817e-02 -7.03052938e-01 -3.34287062e-02 -4.16015655e-01\\n-4.65385556e-01 7.24769458e-02 -3.27007592e-01 2.22653449e-01\\n-7.72005618e-02 7.73477331e-02 -1.47160992e-01 2.13181123e-01\\n-2.71734953e-01 -2.31534243e-02 1.96659416e-01 5.42957410e-02\\n2.49667451e-01 -1.19377062e-01 -3.94999832e-01 4.26858693e-01\\n-1.44757509e-01 7.27348208e-01 2.79707074e-01 -7.96696544e-01\\n6.29517972e-01 3.10309142e-01 1.01566620e-01 -3.65626991e-01\\n4.98687625e-01 -3.61605316e-01 -1.81186363e-01 1.00357167e-01\\n-3.34465593e-01 -2.76126832e-01 2.87010938e-01 -2.19946787e-01\\n-2.51093447e-01 6.54046118e-01 2.62399912e-01 1.50524853e-02\\n3.76619875e-01 -2.98978597e-01 -6.43304437e-02 4.27519158e-03\\n-1.67029381e-01 -2.43043199e-01 -4.14825588e-01 8.46408084e-02\\n-3.73417735e-02 -4.83296603e-01 -2.03598022e-01 -1.41347036e-01\\n-1.72631428e-01 -3.21708411e-01 -1.94380894e-01 4.81264651e-01\\n2.07750946e-01 7.37131312e-02 1.53929146e-03 5.94995916e-02\\n-9.05224904e-02 -6.47354186e-01 6.45858124e-02 8.31868947e-02\\n4.23580080e-01 2.09187537e-01 7.42333010e-02 -7.47496560e-02\\n8.38232972e-03 5.72409749e-01 -4.14211333e-01 -4.24342632e-01\\n1.05215654e-01 1.45050123e-01 -4.06878479e-02 -1.92919403e-01\\n5.49387373e-02 4.35983390e-01 -3.70846808e-01 3.39646302e-02\\n-9.34038609e-02 -1.08434811e-01 3.09535652e-01 -9.05699059e-02\\n-2.48197347e-01 -2.48376191e-01 -2.17290260e-02 3.10240209e-01\\n-4.62658226e-01 -2.61926025e-01 4.91151154e-01 3.01259309e-01\\n1.83516845e-01 1.24158345e-01 3.01032305e-01 -2.04022944e-01\\n-3.01513761e-01 -3.89198422e-01 1.45998999e-01 2.12264821e-01\\n5.83008043e-02 6.63826466e-02 -2.58908160e-02 -5.81174314e-01\\n-2.79377222e+00 -1.76822752e-01 2.39893243e-01 -1.79324895e-01\\n1.60964921e-01 -7.37733766e-02 -8.86297747e-02 -9.10789073e-02\\n-3.29460412e-01 5.41804694e-02 -9.45919082e-02 -1.69867933e-01\\n2.84727141e-02 3.76368999e-01 1.87100455e-01 1.45676136e-01\\n5.86669594e-02 -2.01920137e-01 -1.15719922e-01 3.79000127e-01\\n-1.45066246e-01 -6.23265803e-01 1.80462509e-01 -1.01669664e-02\\n2.73825705e-01 2.55329818e-01 -2.70087749e-01 -1.12823449e-01\\n-1.24110334e-01 -1.83944881e-01 2.67332792e-02 -2.75999457e-01\\n-1.62102491e-01 3.75868589e-01 7.09924623e-02 3.36317271e-02\\n4.55581136e-02 -3.30238223e-01 -2.08968133e-01 -4.38419372e-01\\n1.75034683e-02 -5.40408731e-01 7.59009738e-04 -3.15894097e-01\\n7.24893153e-01 -3.06543678e-01 1.72562927e-01 6.01168489e-03\\n2.36272767e-01 1.21930875e-01 -4.63882387e-02 7.82464370e-02\\n-2.77718574e-01 -2.71854967e-01 -8.91297683e-02 -2.46021017e-01\\n5.37968040e-01 4.89737034e-01 -1.31939694e-01 -1.55898780e-01\\n2.71017790e-01 -2.53752440e-01 -2.67024010e-01 -4.25180405e-01\\n-8.61372128e-02 -3.14467102e-01 -6.23471200e-01 -3.91440630e-01\\n-7.58717135e-02 -1.15340158e-01 -1.08392075e-01 7.14646280e-01\\n-4.70339477e-01 -2.74625629e-01 5.59775382e-02 -7.52178788e-01\\n1.99839786e-01 -2.26295933e-01 -1.76110007e-02 -1.53353751e-01\\n-2.30650783e-01 -6.04556859e-01 9.50940847e-02 -6.54529557e-02\\n-2.25660041e-01 -2.90835887e-01 -3.78598385e-02 -1.69121906e-01\\n-2.46496156e-01 -5.17673731e-01 4.20730084e-01 1.70003071e-01\\n3.17611516e-01 1.06449224e-01 3.04608434e-01 -2.62698866e-02\\n3.63096088e-01 -1.08289793e-01 1.99334309e-01 -4.14311022e-01\\n1.56713322e-01 1.64450239e-02 5.50319016e-01 -2.73518473e-01\\n6.07944373e-03 2.24829823e-01 -2.80311227e-01 -4.80230041e-02\\n3.68224829e-01 1.29964858e-01 9.04914748e-04 -1.17033064e-01\\n3.79825354e-01 -4.81033444e-01 -1.74813658e-01 2.78963774e-01\\n1.12928025e-01 6.66270137e-01 -4.16088896e-03 -3.80156428e-01\\n-2.58522898e-01 5.22660136e-01 -1.27737686e-01 -1.26743004e-01\\n-1.27574503e-01 1.09952055e-01 -9.60498825e-02 2.11966008e-01\\n1.56671721e-02 -1.46194413e-01 -3.11321765e-01 -1.30641147e-01\\n-1.15131244e-01 2.33409151e-01 2.26387009e-01 2.64064576e-02\\n-6.71111140e-03 -2.49030218e-01 -3.58261280e-02 1.48786977e-01\\n2.84321696e-01 3.64353508e-01 -9.31981485e-03 -1.85774371e-01\\n-1.39272928e-01 3.77890468e-01 -1.24807194e-01 1.92038760e-01\\n-2.53800958e-01 1.01092912e-01 -5.92636585e-01 -2.32990146e-01\\n-1.66735455e-01 -3.03618222e-01 2.75048554e-01 2.28982285e-01\\n1.98361069e-01 2.13006996e-02 2.62222476e-02 -5.75723648e-01\\n3.68358940e-01 1.89023688e-01 1.34584740e-01 1.83677450e-02\\n-6.63080141e-02 4.67741281e-01 -1.80375148e-02 -3.39669804e-03\\n-5.88626303e-02 -3.83439474e-02 -2.53341585e-01 -2.78196245e-01\\n1.78709745e-01 -4.55920666e-01 -2.15738043e-01 4.56094980e-01\\n9.55064893e-02 -3.75245750e-01 -3.85136962e-01 1.82245746e-01\\n1.45845264e-01 -2.03144863e-01 -1.91142753e-01 -8.42086002e-02\\n1.98972821e-01 1.48447111e-01 2.37318754e-01 -3.49746972e-01\\n-1.26460820e-01 9.71029252e-02 -1.03444427e-01 3.95305932e-01\\n1.27991945e-01 4.26144898e-02 -2.62969732e-01 -2.00599611e-01\\n4.25111562e-01 -2.33250529e-01 -7.28306323e-02 -8.29897299e-02\\n2.13285133e-01 -1.71023205e-01 -5.17676353e-01 9.73732620e-02\\n-4.00352068e-02 -2.96395421e-01 8.91325902e-03 3.45707424e-02\\n1.43759847e-01 7.43674710e-02 -4.71034706e-01 -2.44405299e-01\\n-3.25612545e-01 -1.82188481e-01 1.19583771e-01 -2.54178554e-01\\n7.61724263e-02 -5.45064025e-02 -5.56881070e-01 1.68059275e-01\\n-3.64581048e-01 -5.41684628e-02 9.38367397e-02 1.24190144e-01\\n-4.61285770e-01 -4.15245853e-02 6.67510182e-03 2.00377151e-01\\n-4.31792527e-01 -4.43958908e-01 8.09719786e-02 -8.55524063e-01\\n1.03325665e-01 3.59382667e-02 -7.26571530e-02 6.39490560e-02\\n-1.01134986e-01 -7.12303579e-01 8.97002518e-02 -3.97122651e-01\\n-3.24196778e-02 7.16675594e-02 -3.20040494e-01 -2.10587353e-01\\n2.69071251e-01 -2.79395640e-01 -4.04485881e-01 5.09820163e-01\\n-4.73025829e-01 1.71773225e-01 -6.10312866e-03 8.94835293e-02\\n-1.57899957e-03 -1.63599491e-01 1.95006505e-01 -2.98076600e-01\\n-3.65664452e-01 -1.77680150e-01 -3.30997795e-01 -3.13161999e-01\\n3.80180813e-02 -2.77160645e-01 -1.77348703e-01 1.48686409e-01\\n2.88764387e-01 8.10002014e-02 -1.33514047e-01 -1.83961645e-01\\n1.48065075e-01 -4.68307644e-01 7.08416253e-02 -2.05258802e-01\\n1.30885774e-02 -2.43086834e-02 1.23701856e-01 -2.29089577e-02\\n-1.49853984e-02 -3.34903121e-01 3.93113106e-01 -4.23680037e-01\\n-3.51313680e-01 -9.74764600e-02 -1.10818803e-01 -8.45456272e-02\\n1.53341919e-01 -5.26033401e-01 1.63398877e-01 3.85827750e-01\\n3.82424109e-02 -2.38581952e-02 1.66098401e-01 9.68989264e-03\\n-2.27045193e-02 2.93934494e-01 -4.79917675e-01 1.44276954e-02\\n8.33814919e-01 1.47376463e-01 -2.31898371e-02 1.03075989e-01\\n1.86361283e-01 3.57426971e-01 4.47775066e-01 -4.12158528e-03\\n-3.55357602e-02 1.39942989e-01 7.43634403e-02 -4.96736377e-01\\n-2.09169388e-02 1.19745485e-01 -2.15188339e-01 -2.96924233e-01\\n6.87722623e-01 4.06432420e-01 -4.78748739e-01 -3.21693003e-01\\n9.68511850e-02 -5.56703918e-02 3.54306310e-01 -1.20034479e-01\\n-1.03619322e-01 -3.93997543e-02 5.36198735e-01 4.90024686e-02\\n2.36768901e-01 5.70484996e-01 -1.64025739e-01 -4.04676586e-01\\n-1.19671382e-01 1.41104236e-01 1.50366306e-01 5.31778753e-01\\n-1.06964760e-01 2.30960310e-01 -1.11541979e-01 4.17664386e-02\\n-8.83472431e-03 3.30757856e-01 2.79946864e-01 8.27588961e-02\\n2.46844992e-01 -8.60367581e-05 2.91347414e-01 5.09129643e-01\\n1.37710959e-01 4.78811711e-01 2.52485573e-01 4.69638109e-02\\n3.35895717e-01 4.93021965e-01 3.75424564e-01 2.31532335e-01\\n-2.18581203e-02 8.39639977e-02 1.40570134e-01 1.44818556e-02\\n4.42975670e-01 2.82091469e-01 2.05940738e-01 9.34057951e-01\\n3.74598294e-01 2.54715830e-01 7.68483400e-01 -7.22378433e-01\\n-3.87649983e-01 1.01815000e-01 5.09043097e-01 -3.51925492e-01\\n-6.22350983e-02 1.39932066e-01 -1.71189100e-01 2.92440355e-01\\n-5.05330741e-01 -4.36785966e-02 2.84388214e-02 1.93726212e-01\\n-2.58070100e-02 -6.12182952e-02 -2.88419724e-01 1.46615049e-02\\n-2.24268511e-01 -1.33764520e-01 -3.50016326e-01 -3.13072413e-01\\n-2.88937718e-01 -1.69691831e-01 -1.86906710e-01 -7.90367723e-02\\n-9.19008628e-02 -4.79197681e-01 -7.13729784e-02 -5.57798371e-02\\n3.36303979e-01 -1.78764880e-01 3.67732975e-03 -2.20532328e-01\\n2.39723817e-01 3.65229934e-01 5.27588367e-01 -1.35037690e-01\\n2.89134458e-02 -2.00053692e-01 -3.81077647e-01 8.46858397e-02\\n2.52793524e-02 1.48317426e-01 5.40305525e-02 3.50993335e-01\\n-2.08683103e-01 -6.84615001e-02 9.00868326e-02 2.72932619e-01\\n-4.35891002e-01 -1.61528006e-01 -1.41027942e-01 2.18612537e-01\\n1.22167982e-01 1.29202679e-01 -2.94389665e-01 1.97411880e-01\\n-2.54111201e-01 -4.83704835e-01 3.48814577e-01 -1.63745746e-01\\n-9.14216340e-02 3.71205091e-01 3.60128343e-01 2.55130827e-01\\n-2.65109330e-01 -1.42115384e-01 6.94283172e-02 3.87339145e-01\\n-7.96625316e-02 3.53159726e-01 -6.31901994e-02 -2.54419982e-01\\n-2.49674678e-01 3.17460090e-01 -2.13343993e-01 1.25820369e-01\\n-5.59143163e-02 3.91125709e-01 -4.60046995e-03 1.04311660e-01\\n3.37887168e-01 4.59150858e-02 -1.95388675e-01 -3.09314489e-01\\n-1.45938829e-01 -2.63455987e-01 -7.68668875e-02 4.92827967e-02\\n6.87826127e-02 -3.57056469e-01 -1.53861403e-01 -1.70016453e-01\\n-8.15603659e-02 -2.97621459e-01 -2.09456123e-03 6.34652972e-02]]',\n", + " 'job_description': \"You are an expert in gathering knowledge from network engineers, sourcing and processing data, applying anomaly detection models, and making our insights accessible to end users. We are a group of data engineers and data scientists that are passionate about the topics we work on, the methods we apply, and the tools we use. We design and implement end-to-end solutions – all by leveraging domains like distributed systems, data mining, or web development. We create software relying on the Agile approach, and we use state-of-the-art big data technologies such as Kafka, Kafka Streams, or Cassandra. We code mostly in Java, and we are strong supporters of Open Source. Your tasks span from data science (10%) through big data engineering (60%) to DevOps (30%). Thus, you are interacting with data scientists, big data engineers, DevOps as well as product owners and business engineers. Bachelor's degree (ETH/Uni/UAS) with at least 4 years of relevant experience, or Master's degree (ETH/Uni/UAS) with at least 1 year of relevant experience, or PhD in computer science or related field Able to write clean and effective code in Java Solid understanding of data structures and algorithms Experience with Big Data technologies, in particular Kafka, Kafka Streams, and Cassandra is a plus Ability to analyse and visualise data (e.g. with Python, Jupyter) is a plus DevOps know-how: scripting (Unix, Python), Ansible, Prometheus, Grafana, Jenkins is a plus Familiarity with web development technologies such as TypeScript, Angular, HTML, CSS, RESTful APIs is a plus Knowledge in relational databases, relational data modelling, and SQL is a plus Experience with containerization technologies (Docker, Kubernetes) is a plus Very good English, German a plus\",\n", + " 'soft_skills': '[\"Writing\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Agility\", \"Apache Cassandra\", \"Jenkins\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Data Modeling\", \"Data Engineering\", \"TypeScript\", \"Network Engineering\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Open Source Technology\", \"Data Science\", \"Docker (Software)\", \"Big Data\", \"Java Data Mining\", \"Unmanned Aerial Systems (UAS)\", \"Data Structures\", \"Grafana\", \"Angular (Web Framework)\", \"Relational Databases\", \"Ansible\", \"Algorithms\", \"Scripting\", \"Anomaly Detection\", \"Java (Programming Language)\", \"Data Processing\", \"Unix\", \"Prometheus (Software)\", \"Jupyter\", \"SQL (Programming Language)\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Nauru', 'Samoan', 'Tatar', 'Venda']\"},\n", + " {'company_id': '14',\n", + " 'job_title': 'navigation software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.anybotics.com',\n", + " 'jobdescription_embedded': '[[-3.65454137e-01 3.03180605e-01 4.32658046e-01 -4.90374975e-02\\n5.34926891e-01 -2.04220399e-01 -6.77040294e-02 2.93809235e-01\\n-1.27185676e-02 -4.11410570e-01 1.21092899e-02 -2.23751366e-01\\n-1.03251658e-01 9.40477103e-02 1.70659095e-01 4.45899427e-01\\n2.90099680e-01 5.37354797e-02 -2.76247799e-01 4.48428154e-01\\n1.39183789e-01 -1.04265757e-01 1.37354568e-01 8.48674953e-01\\n3.33168149e-01 -7.27674458e-03 -6.13345318e-02 8.60348493e-02\\n-2.37022132e-01 -1.56767070e-01 2.93087959e-01 -3.90353650e-02\\n-1.13746211e-01 -4.37424481e-01 7.77685717e-02 1.24595903e-01\\n-1.99001938e-01 -3.93236615e-02 -1.24038354e-01 1.29215688e-01\\n-4.23992723e-01 -1.52068362e-01 -4.87055741e-02 -1.74764246e-02\\n-1.99220672e-01 -3.03308278e-01 8.97573307e-02 -7.25957751e-02\\n1.15579963e-01 -5.27519062e-02 -4.14977491e-01 2.51682997e-01\\n-2.26809919e-01 -3.07420909e-01 2.94637889e-01 5.29990315e-01\\n-1.28570497e-01 -5.04366696e-01 -3.36030036e-01 -3.48614097e-01\\n-1.36529326e-01 -6.86778780e-03 9.26275030e-02 -3.13591599e-01\\n2.39539221e-01 7.22256899e-02 -8.02190881e-03 3.09142530e-01\\n-7.39558935e-01 -1.10351630e-01 -2.83550650e-01 -7.96735007e-03\\n-3.59147221e-01 -2.64373440e-02 -3.82402122e-01 -2.15000823e-01\\n-3.69495563e-02 3.31150115e-01 -2.81560607e-02 8.95063207e-02\\n-1.07911684e-01 3.26754838e-01 -6.62119389e-02 3.37718427e-01\\n2.48008668e-01 2.10852206e-01 1.12694457e-01 3.28697145e-01\\n-3.38333786e-01 4.14902210e-01 1.06794119e-01 -2.48491451e-01\\n2.34170958e-01 1.99527711e-01 4.21633929e-01 -1.00721769e-01\\n1.58016831e-01 1.07762605e-01 -3.04430962e-01 2.36302331e-01\\n2.44378239e-01 -2.85108894e-01 3.24930176e-02 -1.28217474e-01\\n1.53772548e-01 6.94228709e-02 2.66170949e-02 2.40776390e-01\\n-3.97635311e-01 5.04359066e-01 9.32845995e-02 -1.63739100e-01\\n-1.09376840e-01 -5.95417500e-01 -7.57067651e-02 2.74604298e-02\\n-1.71643291e-02 1.84607938e-01 2.24667192e-01 1.79150909e-01\\n1.90633714e-01 -1.73837747e-02 1.45241708e-01 9.41730738e-01\\n-8.50586519e-02 6.84904680e-02 -9.60040912e-02 2.95937210e-01\\n3.58937606e-02 -3.77100319e-01 2.22502381e-01 2.13563949e-01\\n1.55855656e-01 -1.04072131e-01 -2.64676511e-01 2.81037867e-01\\n-1.18771695e-01 -2.12683767e-01 -2.78553903e-01 3.29246521e-01\\n-1.34525076e-01 -5.68394721e-01 5.93204975e-01 -1.07186120e-02\\n2.22122923e-01 -5.19878871e-04 1.24893583e-01 -9.02527645e-02\\n-1.55405611e-01 1.71034589e-01 1.52161911e-01 1.24719098e-01\\n-3.56195271e-01 -2.56443679e-01 -1.88477322e-01 4.07308340e-02\\n-3.68533105e-01 2.15235725e-01 -1.15645319e-01 -1.32607102e-01\\n1.51272327e-01 -1.63503587e-02 -4.33358550e-01 2.88041443e-01\\n-1.90481171e-01 -2.43252981e-02 -6.88001048e-03 4.40340281e-01\\n-2.21206889e-01 3.06674153e-01 2.30127946e-02 -3.45258042e-02\\n6.04870141e-01 1.86518446e-01 8.44287276e-02 -5.33559881e-02\\n3.19055468e-01 -7.64684984e-03 8.40133950e-02 1.02746829e-01\\n-7.26908386e-01 3.13111931e-01 -1.77127533e-02 -1.92416355e-01\\n5.50586246e-02 -1.04155727e-01 2.72781283e-01 -2.26958081e-01\\n-8.40433016e-02 -2.53165543e-01 -2.35663816e-01 -1.75750241e-01\\n-2.32534856e-01 1.90199334e-02 4.11342680e-01 -2.77086377e-01\\n-1.38832062e-01 2.38145128e-01 -5.10836542e-01 4.40043025e-02\\n1.06670991e-01 1.12866253e-01 1.17893532e-01 1.80323303e-01\\n-5.27573898e-02 -6.14390075e-01 -3.39544863e-02 -4.10006583e-01\\n-3.12837899e-01 1.11898579e-01 -3.93974572e-01 1.62113190e-01\\n1.07567444e-01 -3.16423103e-02 -2.09333405e-01 2.70663321e-01\\n-2.07096398e-01 -1.14626763e-02 9.01832357e-02 -1.10774506e-02\\n2.21597165e-01 8.43742490e-02 -5.55385113e-01 3.54262978e-01\\n-1.95031196e-01 5.68201005e-01 2.85780821e-02 -7.39733577e-01\\n4.13903922e-01 3.14075381e-01 -1.26858115e-01 -4.05693829e-01\\n6.26557052e-01 -3.99890810e-01 -1.26738250e-01 4.75891680e-02\\n-3.29101592e-01 -3.22109133e-01 3.44384491e-01 -2.39428788e-01\\n-2.86160141e-01 5.77122927e-01 9.37213600e-02 2.52764583e-01\\n3.44143808e-01 -3.05880934e-01 -6.22156076e-02 1.60126895e-01\\n-2.01179758e-02 -2.47861713e-01 -6.17269337e-01 -1.08659126e-01\\n-1.50444970e-01 -4.41511005e-01 -1.49445549e-01 -5.25598288e-01\\n-1.67348832e-01 -3.56858730e-01 -2.37745658e-01 1.97227523e-01\\n3.77053589e-01 1.99395597e-01 4.56864685e-02 5.97172929e-03\\n-1.44970581e-01 -6.35497749e-01 7.55072683e-02 2.77137421e-02\\n4.06811118e-01 3.12594175e-01 1.01706222e-01 -4.91957404e-02\\n1.11005232e-01 6.24633789e-01 -2.59952307e-01 -2.23154858e-01\\n3.36115025e-02 1.80295110e-01 -4.27132472e-02 -1.34652138e-01\\n1.86834022e-01 4.21593964e-01 -3.85302365e-01 9.21670645e-02\\n-1.84992805e-01 -8.18830915e-03 4.78436172e-01 -6.70330748e-02\\n-3.18218201e-01 -2.59743452e-01 -2.71236841e-02 5.21514527e-02\\n-5.73787332e-01 -1.41142890e-01 4.18053597e-01 2.06109866e-01\\n2.95077473e-01 2.24693008e-02 1.97483718e-01 -8.15607682e-02\\n-2.58299053e-01 -2.59231776e-01 1.71600312e-01 8.05975124e-02\\n1.01935819e-01 8.12639743e-02 -5.73470071e-02 -6.86783075e-01\\n-3.11407042e+00 3.17352191e-02 1.45011321e-01 -1.09241605e-01\\n2.72219360e-01 9.14474130e-02 2.15101726e-02 -6.05277754e-02\\n-3.62525553e-01 7.01834783e-02 -2.14144796e-01 -2.27167845e-01\\n9.77804810e-02 2.46939346e-01 1.96693093e-01 1.24753326e-01\\n1.78399026e-01 -3.66412163e-01 -5.23452498e-02 3.00741762e-01\\n-5.44728339e-02 -6.81084216e-01 1.30007908e-01 -9.74975005e-02\\n3.06685925e-01 3.78559381e-01 -4.11470205e-01 -2.00529933e-01\\n-3.36717576e-01 -1.44724712e-01 -1.86909118e-03 -2.87585258e-01\\n-1.43032581e-01 2.66890883e-01 1.84047371e-01 1.62518565e-02\\n1.86432347e-01 -3.80646020e-01 6.08798116e-02 -4.35968310e-01\\n1.06690504e-01 -4.72301543e-01 6.01324923e-02 -7.37136602e-02\\n7.27541804e-01 -3.17588359e-01 1.41126156e-01 9.34400633e-02\\n1.95823207e-01 8.90228450e-02 2.02203076e-02 3.29886302e-02\\n-1.56897619e-01 -1.78285971e-01 -1.01710305e-01 -2.60784119e-01\\n6.58959389e-01 4.07693267e-01 -1.75593510e-01 2.94342935e-02\\n-2.23970711e-02 -4.32222873e-01 -4.78064865e-01 -2.32302442e-01\\n-1.19170994e-01 -1.71627551e-01 -5.59193850e-01 -4.68573719e-01\\n-5.83003946e-02 -1.77866742e-01 -1.05435789e-01 5.95056415e-01\\n-3.03894639e-01 -3.10692042e-01 3.02418917e-02 -4.96130258e-01\\n1.87906325e-01 -2.64997154e-01 5.03594987e-02 -2.25820810e-01\\n-3.55956018e-01 -6.86294019e-01 1.66899621e-01 -4.61636595e-02\\n-7.29616210e-02 -2.66528398e-01 2.80516613e-02 -1.45121977e-01\\n-2.33675212e-01 -4.93425876e-01 4.68777597e-01 2.14099162e-03\\n3.00365031e-01 1.20423131e-01 2.56995320e-01 -2.89015681e-03\\n1.95217624e-01 -4.16791365e-02 1.40957743e-01 -3.35617512e-01\\n9.39099491e-02 4.05658446e-02 4.55212533e-01 -1.23390853e-01\\n-7.84516521e-03 1.42175704e-01 -3.12554240e-01 -1.21331714e-01\\n3.30570638e-01 9.68148783e-02 2.25068927e-02 -1.91442609e-01\\n3.18400055e-01 -3.37037235e-01 -4.03813049e-02 1.45985574e-01\\n1.69994742e-01 6.39955938e-01 -4.61196061e-03 -4.01263177e-01\\n-1.43951222e-01 4.24473733e-01 -4.07987973e-03 1.62685812e-01\\n1.59354396e-02 6.82254136e-02 -2.55306572e-01 2.60637879e-01\\n2.29170825e-02 -2.28294760e-01 -1.97289929e-01 -1.22773582e-02\\n-1.28654152e-01 3.89743328e-01 2.73628533e-01 1.60318553e-01\\n-2.34572485e-01 -4.85770255e-01 -9.04010907e-02 3.06712508e-01\\n2.03474224e-01 4.38887119e-01 1.62957504e-01 -3.41204792e-01\\n-2.98428200e-02 2.83670247e-01 -6.94526285e-02 2.38548085e-01\\n-2.71186203e-01 1.46025807e-01 -5.26947737e-01 -2.75323838e-01\\n-3.34688365e-01 -4.45930153e-01 2.61100829e-01 3.56127232e-01\\n7.77451172e-02 -5.45403268e-03 1.43993333e-01 -3.77144843e-01\\n4.14504945e-01 1.35612100e-01 2.58740306e-01 5.78065403e-02\\n-9.97224823e-02 4.80091453e-01 2.88913157e-02 -2.35296190e-01\\n-2.04342112e-01 7.67380372e-02 -1.91279426e-01 -2.70455569e-01\\n8.04772899e-02 -5.52839577e-01 -1.61758259e-01 3.09789985e-01\\n1.11055784e-01 -2.03684852e-01 -1.92787305e-01 9.91084725e-02\\n5.41896513e-03 -3.03815871e-01 -1.88977182e-01 -1.22274132e-02\\n3.75382930e-01 -4.26247492e-02 2.72794604e-01 -5.95370710e-01\\n-7.04058912e-03 -7.01865181e-02 -1.03192680e-01 5.91120481e-01\\n-6.97540045e-02 -8.63338728e-03 -3.29183787e-01 -2.17121974e-01\\n3.81594092e-01 -2.32542064e-02 -2.79618762e-02 -3.17015089e-02\\n4.38088812e-02 -1.91499636e-01 -4.39401567e-01 1.48713037e-01\\n7.07865357e-02 -1.60686553e-01 3.15783210e-02 7.99156874e-02\\n1.25944376e-01 8.91021192e-02 -6.25720799e-01 -2.39240661e-01\\n-1.41752720e-01 -8.63795429e-02 4.31564525e-02 -3.77674401e-01\\n-4.12519276e-02 -1.76614687e-01 -5.97375393e-01 2.35451609e-01\\n-2.74873346e-01 -6.17252663e-02 1.90681115e-01 -7.73611758e-03\\n-3.88211489e-01 -1.84347108e-01 1.03032149e-01 3.67354423e-01\\n-2.06077039e-01 -1.51213512e-01 -7.80211911e-02 -9.36980307e-01\\n1.83209449e-01 -7.81169608e-02 -2.07244560e-01 6.61485493e-02\\n-1.26584381e-01 -7.80465245e-01 6.56293035e-02 -2.84428477e-01\\n1.06929198e-01 1.58776324e-02 -2.49690548e-01 -2.34429836e-01\\n1.48121968e-01 -8.95496160e-02 -3.00016820e-01 3.82119805e-01\\n-2.41107464e-01 2.49795571e-01 -1.11443914e-01 7.39375055e-02\\n-1.45127043e-01 -2.88375556e-01 1.51309028e-01 -3.52362871e-01\\n-2.24865809e-01 -1.79543555e-01 -1.64573595e-01 -2.36765966e-01\\n-1.02496877e-01 -3.36761564e-01 -2.12167457e-01 1.06407516e-01\\n2.18414113e-01 -7.70208091e-02 -2.20322534e-01 -3.55963826e-01\\n1.19069174e-01 -4.40688312e-01 1.50667906e-01 -1.31745204e-01\\n3.81316952e-02 -9.53523070e-02 3.63753475e-02 1.89983502e-01\\n2.85179168e-01 -3.54628861e-01 3.21953565e-01 -4.57286894e-01\\n-3.22361559e-01 2.87501961e-02 1.06958486e-01 -7.18923733e-02\\n1.94092557e-01 -3.04069281e-01 -7.87619650e-02 2.58209497e-01\\n1.22490466e-01 1.43320233e-01 3.19232851e-01 -1.19173512e-01\\n-6.62290752e-02 3.13679934e-01 -2.94598430e-01 8.77797380e-02\\n9.45975542e-01 2.05375969e-01 8.31156522e-02 1.47393823e-01\\n9.50306952e-02 3.97796631e-01 4.99012142e-01 9.04819816e-02\\n-1.21306174e-01 1.26567677e-01 1.52165830e-01 -4.58294928e-01\\n-9.17888805e-02 -3.44369598e-02 -1.49785340e-01 -3.04620862e-01\\n6.10906363e-01 4.75548148e-01 -3.87208641e-01 -1.83649898e-01\\n-9.64250639e-02 -1.59757987e-01 1.66276082e-01 -9.35914554e-03\\n9.71892849e-02 -2.30815157e-01 4.32286382e-01 -7.18877092e-02\\n1.50297448e-01 6.38181746e-01 -1.27957135e-01 -3.02755535e-01\\n-1.06957622e-01 1.87841967e-01 6.15438409e-02 4.85782921e-01\\n-3.07275742e-01 3.21475685e-01 -3.82319055e-02 6.13959096e-02\\n-4.46766131e-02 1.42454326e-01 2.38852739e-01 4.63387668e-02\\n-8.81967368e-04 8.32038522e-02 3.98874760e-01 5.30039012e-01\\n3.03503901e-01 4.64243829e-01 3.06502581e-01 4.66161892e-02\\n3.60639513e-01 5.31081915e-01 4.34573084e-01 1.11873247e-01\\n3.66298743e-02 1.35697067e-01 2.37124711e-01 -1.69443160e-01\\n4.19711113e-01 2.86658317e-01 2.88804304e-02 9.65256274e-01\\n3.39579433e-01 3.49926591e-01 7.93871880e-01 -6.64799571e-01\\n-4.52657312e-01 8.88704583e-02 5.64915955e-01 -4.95719165e-01\\n-6.11534528e-02 1.60432801e-01 -1.26733705e-01 3.38418573e-01\\n-4.80950505e-01 -2.10408568e-01 -1.48988217e-02 5.91853894e-02\\n-6.69532781e-03 -1.95941523e-01 -2.27601141e-01 1.06220521e-01\\n-8.54993537e-02 -1.34587780e-01 -4.66410547e-01 -1.42728731e-01\\n-1.86962098e-01 -3.46354693e-02 -1.09563343e-01 -1.29688069e-01\\n7.62141570e-02 -2.56952852e-01 -5.60034008e-04 1.45400432e-03\\n2.77336210e-01 -1.97630510e-01 -9.40944403e-02 -1.46910548e-01\\n3.22252423e-01 2.29572877e-01 6.26785934e-01 5.77397533e-02\\n1.20051391e-01 -1.81290433e-01 -2.48874739e-01 2.43820980e-01\\n-1.27007824e-03 8.31327066e-02 1.56127359e-03 2.68316269e-01\\n-2.58810490e-01 -1.94161117e-01 9.38965008e-02 2.83591181e-01\\n-3.38881612e-01 -6.51781708e-02 -5.99319786e-02 1.79617241e-01\\n1.77981500e-02 7.88064972e-02 -1.20770968e-01 1.54565014e-02\\n-1.62846401e-01 -5.13798296e-01 2.55577862e-01 -3.11698746e-02\\n-2.67688811e-01 6.55950233e-02 3.56399268e-01 1.58398330e-01\\n-2.74850726e-01 -1.46074416e-02 -1.09750405e-01 2.41863027e-01\\n1.23407124e-02 2.35920310e-01 -9.99098197e-02 -4.66228127e-01\\n-2.08232418e-01 2.17423186e-01 -2.13784650e-01 -2.55917069e-02\\n-1.12880068e-02 4.37451690e-01 -5.12176901e-02 1.47198901e-01\\n4.70210016e-01 2.22200004e-04 -2.87581682e-01 -2.79158294e-01\\n-1.23385422e-01 -1.08231202e-01 -1.28792435e-01 1.37119321e-02\\n2.75177598e-01 -3.68385315e-01 -4.78738882e-02 -2.94309109e-01\\n-4.12864201e-02 -3.23515207e-01 -2.97789201e-02 -3.88256982e-02]]',\n", + " 'job_description': 'ANYbotics is a fast-growing tech startup dedicated to shaping the future of mobile robotics across multiple industries. Join our highly talented and motivated team of more than 30 people and work on cutting-edge robot technology. Our quadrupedal robot ANYmal is equipped with state-of-the-art perception sensors (LIDAR, stereo cameras, GPS) to provide autonomous inspection in challenging environments such as industrial sites, power plants, and subterranean systems. We are seeking a Robotics Engineer to join our highly motivated development team to enhance the robot’s ability to navigate in challenging environments autonomously. You are responsible for the navigation software stack including path planning, obstacle negotiation, and high-level mission planning, which enables the robot to execute complete autonomous surveillance tours. Your tasks and responsibilities: Develop and implement state-of-the-art methods, Integrate, test and evaluate third-party solutions, Debug and test the navigation software in the field with the robot, Develop, maintain and support the navigation software stack, Consult on sensor selection for hardware development. Your profile: Extensive knowledge of state-of-the-art planning algorithms and techniques, Must have a fundamental knowledge of modern map representations (pose graph, point cloud, signed distance fields, etc.), Experience with convex and nonconvex optimization solvers, Familiarity with SLAM, An understanding of mechanics and dynamics, Strong competence in object-oriented programming in C++, Experience with C++ libraries like Eigen, PCL, Boost or likewise, Experience with ROS and Linux, Comfortable with unit testing and debugging hardware systems. You have a Master’s or Ph.D. degree with a focus on robotic engineering and a strong track record with practical experience in robot navigation. You are an engaged personality used to work proactively and with precision – on your own and in the team. You enjoy the research environment of ETH Zurich to broaden your horizon, to get to know new technologies and to expand your skills continuously. Your profile is complemented by a good knowledge of English. We offer you a very exciting and dynamic work environment, the opportunity to become part of a young and ambitious team, a chance to leverage your experience and bring in your own ideas, a fair market salary and a job in the city of Zurich.',\n", + " 'soft_skills': '[\"Negotiation\", \"Research\", \"Proactivity\", \"Planning\", \"Team Motivation\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Point Clouds\", \"Unit Testing\", \"Steam Power Plant\", \"Boost (C++ Libraries)\", \"pH Meters\", \"Industrialization\", \"Eigen (C++ Library)\", \"C++ (Programming Language)\", \"Integrity Testing\", \"Linux\", \"Maintainability\", \"JUCE C++ Library\", \"Track (Rail Transport)\", \"Executable\", \"Hostile Work Environment\", \"SLAM Algorithms (Simultaneous Localization And Mapping)\", \"Mobility\", \"Printer Command Language (PCL)\", \"Object-Oriented Programming (OOP)\", \"Integrated Test Facility\", \"Pathing\", \"Robotics\", \"Mission Planning\", \"Mobile Robot Navigation\", \"High-Level Architecture\", \"Mechanics\", \"Algorithms\", \"Mapping\", \"Graphing\", \"Dilution Of Precision (GPS)\", \"GPS Navigation Software\", \"Debugging\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '46',\n", + " 'job_title': 'data centre engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.20992708e-01 3.24868619e-01 4.44623590e-01 -2.06698015e-01\\n5.61702907e-01 1.67399067e-02 2.03571469e-01 3.12604904e-01\\n1.14555821e-01 -2.30956271e-01 -2.95724452e-01 -1.45734802e-01\\n5.05553670e-02 4.16085795e-02 1.42657623e-01 4.23656821e-01\\n2.54625171e-01 1.47843584e-02 -6.55927509e-02 3.09122294e-01\\n1.01366960e-01 -1.19018257e-01 8.50919113e-02 6.65079415e-01\\n3.42924058e-01 -2.08120011e-02 9.75979790e-02 1.13722198e-02\\n-1.84017792e-01 -3.39858294e-01 4.39586669e-01 -6.86746761e-02\\n-1.32881835e-01 -3.33626121e-01 2.41054073e-01 8.20413232e-02\\n-2.09021419e-01 -1.68739520e-02 -1.91325113e-01 3.92315648e-02\\n-4.56807166e-01 -1.14604466e-01 4.69977669e-02 -1.44372091e-01\\n-3.71216565e-01 -2.73618490e-01 2.98053086e-01 -1.46605492e-01\\n1.93083301e-01 1.60194710e-01 -5.39988935e-01 3.01620752e-01\\n-3.19422901e-01 -2.94975251e-01 5.10386229e-01 6.02502227e-01\\n-3.05275898e-04 -7.01068997e-01 -3.71223271e-01 -1.88572586e-01\\n2.71705817e-02 -9.85296667e-02 9.80837792e-02 -8.92247334e-02\\n3.16859275e-01 -1.32081792e-01 2.01097038e-03 5.28337955e-01\\n-6.43169582e-01 -6.33321702e-02 -4.45892006e-01 -5.80698922e-02\\n-2.13415369e-01 1.14282221e-01 -4.74503547e-01 -2.62505710e-01\\n-6.29425496e-02 2.97526747e-01 -7.97732025e-02 1.71661079e-01\\n-1.18019126e-01 2.56952465e-01 -3.35049480e-01 2.62095660e-01\\n2.78805941e-01 1.02468014e-01 1.92153186e-01 1.66629449e-01\\n-4.03576285e-01 7.38112450e-01 4.63144541e-01 -1.77040055e-01\\n2.04118043e-01 8.59789848e-02 2.22872660e-01 1.59763366e-01\\n1.27131179e-01 1.92020372e-01 5.99381141e-03 2.29666912e-04\\n2.64624745e-01 1.79403722e-02 -9.34911892e-02 -1.64213777e-01\\n-7.91446865e-02 -2.81473016e-03 6.64469451e-02 2.00658217e-01\\n-3.72400999e-01 2.67220229e-01 1.39930248e-01 -3.18461388e-01\\n-1.59120008e-01 -3.24656099e-01 -1.11221485e-01 -1.13852412e-01\\n-1.11029960e-01 1.44244403e-01 1.79076102e-02 2.01138005e-01\\n2.60806829e-01 1.03999078e-01 5.79782352e-02 8.42487335e-01\\n-3.85027528e-02 -6.95801079e-02 -2.16275722e-01 3.70730489e-01\\n-5.77730127e-03 -2.21464545e-01 1.08441778e-01 2.45696455e-01\\n-1.86597273e-01 -2.59543478e-01 -3.63568813e-01 3.21496487e-01\\n-1.18903227e-01 -1.72197476e-01 -2.46539921e-01 2.43533224e-01\\n-1.48266852e-01 -4.79707330e-01 4.82727468e-01 -5.92029579e-02\\n8.48442614e-02 -1.10106930e-01 -3.79019693e-05 3.55553813e-02\\n-6.20178739e-03 3.51581961e-01 1.33339778e-01 -3.18575427e-02\\n-1.07156508e-01 -2.32200533e-01 -2.80870885e-01 1.46157727e-01\\n3.24593335e-02 1.44052923e-01 -4.17244673e-01 -1.08726621e-01\\n3.85440767e-01 4.97285165e-02 -3.66288632e-01 3.56455773e-01\\n1.84417531e-01 -4.29348387e-02 -1.81535304e-01 1.49954826e-01\\n-1.16695359e-04 2.36736104e-01 -4.01337855e-02 -1.40929922e-01\\n6.24371946e-01 1.46069244e-01 2.31020704e-01 -7.24323019e-02\\n1.91886440e-01 -5.51386252e-02 1.29945368e-01 -1.40682291e-02\\n-6.11488104e-01 4.65296596e-01 -3.25219370e-02 -7.29846731e-02\\n1.36024877e-01 -5.82411792e-03 2.14516282e-01 -3.57889801e-01\\n-2.76079122e-02 -5.04417941e-02 -3.44033509e-01 -4.76003021e-01\\n-2.26885807e-02 -1.34410188e-01 1.86202839e-01 -4.56571281e-01\\n2.06874358e-03 1.26872778e-01 -4.57212448e-01 -5.69727421e-02\\n3.54857564e-01 1.66321099e-01 1.37243718e-01 2.25789651e-01\\n-8.55193064e-02 -3.49118888e-01 1.90711051e-01 -4.64240402e-01\\n-1.32682085e-01 7.75582716e-02 -2.49923304e-01 1.98378433e-02\\n-1.89537536e-02 3.98312919e-02 -1.02702670e-01 4.85904552e-02\\n-2.53891677e-01 -1.55262008e-01 3.92053202e-02 -8.82065743e-02\\n2.24479303e-01 2.34798998e-01 -2.63095379e-01 5.07711053e-01\\n-1.83350369e-01 3.81080300e-01 6.01966586e-03 -7.20307767e-01\\n4.24280107e-01 1.86561704e-01 1.23244980e-02 -2.94792384e-01\\n4.53267604e-01 -2.96398431e-01 1.17267378e-01 1.88871510e-02\\n-3.34912449e-01 -2.02146210e-02 2.43802950e-01 -1.83349505e-01\\n-2.80408859e-01 5.88341713e-01 1.80868283e-02 1.09298013e-01\\n1.90496162e-01 -3.36814933e-02 -1.97486252e-01 4.95056920e-02\\n-8.80986899e-02 -2.21439116e-02 -4.73396003e-01 -6.57928139e-02\\n-8.16168711e-02 -4.97412443e-01 -8.66268203e-02 -6.85619056e-01\\n-2.47249797e-01 -3.03445399e-01 -2.51491725e-01 1.43816218e-01\\n-3.78490351e-02 1.19386360e-01 -3.09882145e-02 6.85982779e-02\\n-1.36105865e-01 -6.85061991e-01 -8.01299326e-03 6.79907128e-02\\n1.99871972e-01 1.97040305e-01 1.58675492e-01 -1.33471563e-01\\n1.07989442e-02 4.95000303e-01 -2.80969262e-01 -1.73517212e-01\\n2.71584749e-01 2.02667147e-01 1.13012411e-01 -1.47868484e-01\\n1.32153437e-01 2.64528215e-01 -3.26294065e-01 3.05351596e-02\\n4.96717282e-02 7.51984939e-02 3.15145642e-01 -1.27876252e-01\\n-4.00357902e-01 -1.46592468e-01 -8.45369026e-02 1.19746655e-01\\n-5.31511903e-01 -2.43515335e-02 4.39352810e-01 2.38416597e-01\\n-3.59681658e-02 3.28629941e-01 2.08434686e-01 -3.68503183e-02\\n-2.25980595e-01 -7.79229030e-02 1.20354466e-01 1.89528957e-01\\n-5.91190830e-02 8.82301256e-02 -3.06917548e-01 -7.19935954e-01\\n-3.67594314e+00 -1.12381116e-01 1.75884247e-01 -2.27007076e-01\\n4.04413551e-01 -9.98565108e-02 3.79922926e-01 7.81878158e-02\\n-3.22409332e-01 -3.08159627e-02 -2.04330444e-01 -1.40322268e-01\\n3.32918972e-01 1.88908741e-01 8.24078396e-02 2.49415144e-01\\n2.64598001e-02 -3.97464931e-01 2.27922410e-01 3.73837560e-01\\n-3.19178700e-01 -7.36998320e-01 1.67706132e-01 -7.14538023e-02\\n1.21241175e-01 9.32772234e-02 -5.23654699e-01 -3.66293937e-02\\n-2.04351619e-01 -2.44992539e-01 2.23208100e-01 -2.21065760e-01\\n-8.99085402e-02 1.40657857e-01 1.37605861e-01 -1.14235766e-01\\n-2.94447187e-02 -2.44475365e-01 -4.49468382e-02 -7.68135726e-01\\n5.89522645e-02 -5.65950096e-01 -9.49528441e-02 -4.10118699e-02\\n6.01877391e-01 -1.01314165e-01 1.37759060e-01 -1.07751355e-01\\n9.30629522e-02 2.41365522e-01 1.12298779e-01 1.45285383e-01\\n-2.63603657e-01 -3.25437903e-01 -7.21056610e-02 -8.31322223e-02\\n5.68651319e-01 3.79927188e-01 -4.65950549e-01 2.72869971e-03\\n-1.22071005e-01 -2.76108623e-01 -5.45160472e-01 -1.80649400e-01\\n-2.34067068e-01 1.62110150e-01 -7.07921565e-01 -2.82714754e-01\\n-9.99909639e-02 -2.50131696e-01 -4.89306152e-02 4.86768872e-01\\n-2.37586051e-01 -3.45522076e-01 -1.42306477e-01 -6.06279552e-01\\n4.44346130e-01 -6.18551373e-02 1.56405732e-01 -3.47408980e-01\\n-2.07678065e-01 -2.95815915e-01 1.38386652e-01 3.34735252e-02\\n-9.58454311e-02 -6.84963763e-02 8.63185823e-02 -1.38075471e-01\\n-3.59072596e-01 -5.86493552e-01 2.79859543e-01 7.74228424e-02\\n2.08769441e-01 1.41370863e-01 2.12922454e-01 1.12980502e-02\\n2.99592584e-01 -2.45005097e-02 9.83945280e-02 -3.55856538e-01\\n-6.89715743e-02 -2.60696840e-02 5.05209148e-01 -2.39443317e-01\\n9.72434208e-02 1.46529987e-01 -2.74268687e-01 -1.18378751e-01\\n2.93351650e-01 -2.23989919e-01 3.12173188e-01 -2.98116624e-01\\n2.45002553e-01 -3.65975231e-01 -3.34370494e-01 -2.41183396e-02\\n4.43742462e-02 5.83759367e-01 1.00142039e-01 -2.95338154e-01\\n-1.73483342e-01 2.94335037e-01 -3.46422642e-02 9.91996229e-02\\n-4.30163980e-01 -2.82405578e-02 -3.47431034e-01 2.63600320e-01\\n1.26142189e-01 -1.38548240e-01 -2.37378985e-01 -6.22682087e-02\\n-1.13407321e-01 2.97553122e-01 2.44797215e-01 7.06003979e-02\\n-6.73439279e-02 -2.24718019e-01 -9.53003168e-02 2.75603205e-01\\n1.09810531e-01 3.39868993e-01 1.16863534e-01 -2.59342134e-01\\n3.95490937e-02 1.41051844e-01 -3.06910217e-01 1.62998080e-01\\n-1.18638128e-01 1.47596076e-01 -5.45356512e-01 -1.84702083e-01\\n-2.16028884e-01 -3.72006148e-01 1.30186722e-01 4.52358186e-01\\n-2.24302597e-02 -2.03651801e-01 8.53662267e-02 -3.70809227e-01\\n2.26514742e-01 7.99310878e-02 1.08852006e-01 1.68566033e-01\\n4.81652543e-02 6.31120920e-01 -1.09053209e-01 -1.35200918e-01\\n-1.40370622e-01 -1.58051122e-03 -3.95264864e-01 -1.91366836e-01\\n-6.29185094e-03 -4.56136644e-01 4.50522732e-03 5.95702171e-01\\n1.59040406e-01 2.83155963e-02 1.36070162e-01 3.85688692e-01\\n-1.37359928e-02 -4.20102216e-02 -2.66277254e-01 1.16483152e-01\\n2.23654643e-01 2.09650751e-02 2.55407035e-01 -4.15736258e-01\\n1.46293670e-01 -5.34290411e-02 1.29845470e-01 3.60866219e-01\\n-3.01853996e-02 1.87387303e-01 -7.20390603e-02 -1.31535783e-01\\n4.51385915e-01 -6.54133782e-02 -9.06833410e-02 1.34642109e-01\\n2.11314842e-01 -1.32941514e-01 -3.39931607e-01 9.25652310e-02\\n-1.53027371e-01 -1.79714546e-01 8.66961256e-02 3.25545147e-02\\n3.54019180e-03 3.45192570e-03 -4.45268750e-01 -1.44551948e-01\\n-3.26949328e-01 2.60383725e-01 -2.02441350e-01 -6.96382046e-01\\n-1.40338577e-02 6.71015978e-02 -4.92353946e-01 2.64773130e-01\\n-7.66382292e-02 9.06192958e-02 1.66481182e-01 1.44609421e-01\\n-1.99086547e-01 -1.94678605e-01 2.52672762e-01 5.97272478e-02\\n-2.38344982e-01 -1.10085398e-01 -8.84047225e-02 -9.74414825e-01\\n1.87760174e-01 1.19790137e-02 -7.76776448e-02 1.13395445e-01\\n-8.81322324e-02 -7.38363206e-01 2.93696880e-01 -1.29906714e-01\\n-8.54780301e-02 1.35368869e-01 -1.21535540e-01 -3.92318517e-01\\n7.13851079e-02 2.84709353e-02 -1.45143434e-01 2.94810981e-01\\n-3.21252733e-01 3.73886317e-01 3.44846733e-02 4.07734737e-02\\n7.91742001e-03 -2.35158399e-01 7.68799782e-02 -4.66818631e-01\\n-3.90069902e-01 -1.75546423e-01 -1.66483521e-01 -2.53097773e-01\\n2.10644584e-02 -4.21779752e-01 -2.75838263e-02 9.88264009e-02\\n3.88392955e-01 3.93786915e-02 -5.44545762e-02 -8.17874521e-02\\n-1.09014504e-01 -3.92766893e-01 1.28825694e-01 -2.17944682e-01\\n1.51625395e-01 -1.85886785e-01 3.07374597e-01 -4.13127653e-02\\n3.25106204e-01 -2.95887083e-01 5.36980033e-01 -3.19379807e-01\\n-3.22525620e-01 -1.43264204e-01 1.33226901e-01 8.97722393e-02\\n3.82051915e-01 -4.85767931e-01 -1.67253297e-02 2.61806399e-01\\n-4.99421731e-02 -4.21272367e-02 3.75573844e-01 -3.38228345e-01\\n-2.53730595e-01 6.84244260e-02 -4.78008956e-01 2.60893375e-01\\n4.90229666e-01 1.69238955e-01 2.80877143e-01 1.80539608e-01\\n-6.63809255e-02 1.68181852e-01 3.38057458e-01 -1.28881663e-01\\n-1.59039959e-01 4.24895495e-01 3.80028002e-02 -6.40325665e-01\\n-1.43105865e-01 -2.63907880e-01 -1.21160537e-01 -2.52472550e-01\\n6.79355919e-01 2.05923975e-01 -3.15716326e-01 -3.91189665e-01\\n-1.93810731e-01 -2.80402511e-01 8.83146524e-02 3.37027349e-02\\n7.49644125e-03 -9.00202468e-02 5.41021109e-01 6.35374635e-02\\n3.18035275e-01 5.48332870e-01 -1.07328892e-01 -1.89855635e-01\\n1.58851850e-03 3.20116341e-01 -1.67953491e-01 3.51078421e-01\\n6.85634390e-02 2.92062312e-01 -4.61906455e-02 1.35271624e-01\\n-3.67310345e-02 -1.13375902e-01 1.00393958e-01 1.25861317e-01\\n-1.19673312e-01 2.56306708e-01 4.81333435e-01 4.64992344e-01\\n2.14798316e-01 3.36963028e-01 3.28334361e-01 7.83311427e-02\\n5.74850202e-01 6.67642534e-01 3.58128965e-01 5.36153167e-02\\n1.82366893e-01 1.31619200e-02 1.66190714e-02 1.53566594e-03\\n2.41993040e-01 4.50434387e-01 -1.27912806e-02 6.59261405e-01\\n1.94247454e-01 1.72496736e-01 5.75656235e-01 -5.13949454e-01\\n-4.03470457e-01 -2.03149110e-01 4.86505866e-01 -4.74104732e-01\\n1.93211913e-01 1.59332588e-01 -7.50615727e-03 3.39663118e-01\\n-5.07510424e-01 -2.07057089e-01 8.10246542e-02 -1.29740685e-01\\n1.40014097e-01 -1.88831493e-01 -3.58851328e-02 -7.21131917e-04\\n-1.56315446e-01 -1.56389311e-01 -2.94426352e-01 -2.51997322e-01\\n-3.41350526e-01 6.94555119e-02 -1.11559771e-01 -5.82171008e-02\\n-9.69594643e-02 -1.34011596e-01 -1.30870834e-01 7.83628523e-02\\n2.54105866e-01 -1.52538747e-01 -1.65034801e-01 -7.04521164e-02\\n2.46929064e-01 2.89245751e-02 6.04466021e-01 1.05081405e-02\\n6.89821839e-02 -4.67571244e-03 -1.24993986e-02 1.37999713e-01\\n3.58548254e-01 2.61919379e-01 4.46083099e-02 5.13837337e-01\\n-3.38287830e-01 -1.75180569e-01 1.31053075e-01 3.67902517e-01\\n-4.11561877e-01 -1.78137776e-02 5.27100787e-02 1.73103094e-01\\n-5.69220185e-02 -1.85620897e-02 -1.54638961e-01 -7.36809708e-03\\n-1.03106506e-01 -4.16724861e-01 4.85487074e-01 -1.93980247e-01\\n-3.74499291e-01 -2.29139552e-01 4.05710548e-01 4.65710521e-01\\n-7.01933727e-02 1.25290185e-01 -1.69794530e-01 8.58192295e-02\\n5.86466826e-02 9.83409062e-02 -2.16114819e-01 -9.97687280e-02\\n-3.41423601e-01 3.04073513e-01 -9.08160135e-02 2.61446118e-01\\n1.22249559e-01 2.20867783e-01 1.15949877e-01 4.79177199e-02\\n3.41100335e-01 -3.07290733e-01 -2.09567770e-01 -2.60127783e-01\\n-3.00317675e-01 -8.11325237e-02 1.12716630e-01 -1.97108611e-01\\n2.32551321e-01 -3.97126079e-01 -1.08622387e-01 -3.00310940e-01\\n-1.48808002e-01 -2.20378175e-01 -1.74243838e-01 -4.26888745e-03]]',\n", + " 'job_description': 'ExcelRedstone designs, installs, supports and enhances IT infrastructure, networks and connectivity for enterprise‐level clients across the UK and EMEA. Our services, processes and tools are built around a unique business vision which emphasizes the life cycle role of IT infrastructure – an understanding that far from being static installations, infrastructures should continually evolve to drive improved business performance. This role will be working as part of the Data Centre Operations team to deliver support activities and input to project related tasks within the Data Centre and ensure that all work carried out complies with agreed standards, providing an operational interface to physical security teams assisting in the proactive management of the site’s security. The DC Engineer will provide an interface to the customer, advising them of any operational issues with the infrastructure and acting as a point of contact to address the customer requirements including being first line of support for incident and recovery duties, contribution to BAU activity to rack, install and decommission devices. Candidates will be fluent in German and English and have worked in a similar role previously. Required Skills / Experience Ideally the candidate will have worked previously in a Data Centre support role.Network patching experience (copper and fibre) install and break/ fixKnowledge of copper termination and previous infrastructure installationsChange management processesUnderstanding of criticality of support in a financial sectorDemonstration of good listening, oral and written communication required.An ability to assimilate technical details required for project delivery in ashort time frame and in pressurised environmentAbility to manage prioritise workload effectivelyTroubleshooting, ability to diagnose potential issues impacting programme and offer resolutionFluent in German and English Job Types: Full-time, Permanent Language: English (Required)German (Required) ',\n", + " 'soft_skills': '[\"Proactivity\", \"Infrastructure\", \"Management\", \"Operations\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Business Performance Management\", \"Logistics Support Activity\", \"Tooling\", \"IT Infrastructure\", \"Installation\", \"Advising\", \"Activism\", \"Acting\", \"Idealization\", \"Physical Security\", \"Life Cycle Assessment\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'Walloon']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'backend sw engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.68256277e-01 2.80966550e-01 3.44677925e-01 5.30506372e-02\\n5.80511034e-01 -2.47638822e-01 7.77832866e-02 2.96363652e-01\\n-1.86372668e-01 -3.81059796e-01 -8.01259801e-02 -1.91526100e-01\\n-1.20249137e-01 4.19630893e-02 6.58501759e-02 2.97487617e-01\\n2.96830416e-01 1.03520900e-01 -2.24871874e-01 3.48558217e-01\\n2.44660843e-02 -2.33520754e-02 -7.16324151e-02 7.10306168e-01\\n3.73393893e-01 7.64411092e-02 -7.30364174e-02 3.10215969e-02\\n-2.69114822e-01 -2.33520836e-01 3.59915376e-01 8.74466226e-02\\n-2.01426968e-02 -2.21706823e-01 8.55944529e-02 1.63908675e-02\\n-2.02809051e-01 3.03395186e-02 -7.03047067e-02 1.84850901e-01\\n-3.49794418e-01 -3.19804043e-01 3.57922874e-02 1.16022877e-01\\n-2.03592315e-01 -3.27240318e-01 -7.38833472e-02 -8.32037814e-03\\n1.08916402e-01 -5.48914671e-02 -5.44368207e-01 4.32967663e-01\\n-2.85363168e-01 -2.13028684e-01 3.27406317e-01 4.80463058e-01\\n7.07191764e-04 -5.72555006e-01 -2.74876982e-01 -3.11568081e-01\\n-7.87170604e-04 -2.16793537e-01 9.30675864e-02 -2.66013175e-01\\n2.65337527e-01 -1.99370328e-02 6.45290688e-02 3.96281332e-01\\n-7.15952098e-01 -7.56770745e-02 -2.58975267e-01 4.84445971e-03\\n-3.44652683e-01 -1.32466108e-01 -3.00590098e-01 -7.25278556e-02\\n-6.71878159e-02 3.16180170e-01 -2.17432920e-02 6.17913567e-02\\n-1.51244149e-01 3.00630808e-01 -9.61166099e-02 1.84126168e-01\\n2.33807787e-01 1.18075542e-01 1.84917077e-01 3.30178261e-01\\n-4.02723163e-01 4.94906694e-01 2.78163515e-02 -1.89738944e-01\\n2.46067822e-01 2.03865394e-01 4.66537535e-01 7.31082112e-02\\n-3.48280333e-02 1.81059256e-01 -2.56648839e-01 1.59588724e-01\\n2.00172037e-01 -3.17932218e-01 2.00379938e-02 -1.10025086e-01\\n-8.66630152e-02 1.95057467e-02 4.45732585e-04 2.31951535e-01\\n-2.83212394e-01 4.38437521e-01 2.28525981e-01 -1.96417868e-01\\n-7.44504780e-02 -4.96552169e-01 -1.17808118e-01 -2.58486811e-02\\n-1.42118305e-01 1.98162153e-01 2.90167809e-01 1.20146722e-01\\n1.79669514e-01 5.00745960e-02 1.73523605e-01 9.51189220e-01\\n-2.46720817e-02 1.25142261e-01 -1.97533846e-01 2.33240172e-01\\n2.42920592e-01 -1.90623596e-01 1.76015064e-01 3.12252760e-01\\n1.64266855e-01 1.83322039e-02 -1.87562793e-01 3.77678484e-01\\n-2.49157727e-01 -6.96034804e-02 -3.38936239e-01 1.09828226e-01\\n-1.85315907e-01 -5.79838157e-01 6.25603855e-01 1.71961352e-01\\n2.00974256e-01 1.01519758e-02 5.39434999e-02 -7.08785728e-02\\n-7.03627914e-02 2.46599570e-01 7.77274892e-02 1.78365037e-01\\n-3.97517234e-01 -2.17392102e-01 -1.14692204e-01 2.54033774e-01\\n-2.28492916e-01 7.52320215e-02 -4.59703095e-02 -4.00270000e-02\\n2.37886637e-01 5.03434539e-02 -3.75742763e-01 1.42910615e-01\\n-1.12772316e-01 -2.28844285e-01 -1.34519503e-01 3.83624822e-01\\n-7.34532773e-02 2.68917799e-01 5.40079512e-02 -7.69566670e-02\\n5.54528654e-01 1.61391243e-01 1.55689299e-01 -1.64353289e-02\\n2.59011865e-01 -1.06625922e-01 3.07998925e-01 1.54668242e-01\\n-6.65170670e-01 1.90961540e-01 -2.93293837e-02 -1.18123017e-01\\n7.81614110e-02 1.31149411e-01 2.44318053e-01 -3.87164861e-01\\n-1.18726470e-01 -1.59455091e-01 -3.86809468e-01 -3.32343668e-01\\n-2.47529522e-01 9.23015028e-02 3.47663224e-01 -2.65317112e-01\\n-4.82774228e-02 5.91426976e-02 -3.72780293e-01 -1.42033011e-01\\n1.64764598e-01 1.58674031e-01 3.43571417e-02 8.71408135e-02\\n-4.59054932e-02 -6.15433395e-01 -1.43101104e-02 -5.04064023e-01\\n-6.24376178e-01 6.46936819e-02 -3.60657811e-01 2.46049732e-01\\n-2.42124051e-02 1.28714904e-01 -9.33485851e-02 2.03563452e-01\\n-3.41948122e-01 6.93769604e-02 1.14815541e-01 1.63760811e-01\\n1.60189509e-01 -6.42544180e-02 -4.50130522e-01 4.45112824e-01\\n-2.10934803e-01 5.23637235e-01 2.21961200e-01 -7.07449436e-01\\n6.36946261e-01 1.72863886e-01 -3.61249298e-02 -4.06198651e-01\\n3.93998146e-01 -3.90469640e-01 -1.74895655e-02 8.44453499e-02\\n-2.60609835e-01 -2.46748820e-01 3.50345880e-01 -2.54884869e-01\\n-3.57528716e-01 5.20105898e-01 1.54569283e-01 1.10955499e-01\\n2.70659983e-01 -2.81114399e-01 -4.63892668e-02 1.07461095e-01\\n-9.90929604e-02 -2.05803499e-01 -3.38931829e-01 5.04897423e-02\\n-9.08693597e-02 -4.78580534e-01 -1.01777166e-01 -4.82099354e-01\\n-1.62538871e-01 -3.30503732e-01 -2.43613437e-01 3.15286875e-01\\n2.02044815e-01 1.45659372e-01 7.61852860e-02 -1.54940626e-02\\n-6.57685176e-02 -7.43359923e-01 -9.27251130e-02 -1.06826294e-02\\n5.37342727e-01 1.67797074e-01 2.22710315e-02 -9.00486112e-02\\n3.53892031e-03 4.98980403e-01 -3.74690175e-01 -3.90252203e-01\\n5.71420491e-02 1.52028054e-01 -3.06195877e-02 -2.02539220e-01\\n5.28162764e-03 4.07761842e-01 -2.38233924e-01 1.35247439e-01\\n-5.10711111e-02 -8.85524303e-02 4.05885488e-01 -1.31611060e-02\\n-3.47480059e-01 -1.97392955e-01 -9.28023532e-02 1.45437539e-01\\n-5.24388373e-01 -1.30381510e-01 5.59510589e-01 2.86901951e-01\\n1.90427989e-01 2.36356452e-01 2.60759771e-01 -9.23052505e-02\\n-1.39417976e-01 -2.85702348e-01 1.08309023e-01 1.53566405e-01\\n-3.82178137e-03 1.11081935e-01 -1.30673394e-01 -5.21439373e-01\\n-3.56062269e+00 -5.72392419e-02 2.28134543e-01 -2.83745587e-01\\n1.84516937e-01 -1.33128716e-02 -6.78385142e-03 3.67290564e-02\\n-3.99421692e-01 6.83811009e-02 -2.16967925e-01 -1.92042127e-01\\n4.35629264e-02 3.56590509e-01 7.23295435e-02 1.37255475e-01\\n1.43693984e-01 -2.57922351e-01 -1.95843816e-01 3.23520690e-01\\n-1.59120247e-01 -6.54160619e-01 1.07833773e-01 5.10134958e-02\\n1.85165629e-01 1.51602179e-01 -3.37271720e-01 -2.79328637e-02\\n-7.37449527e-02 -2.80705243e-01 -9.30318311e-02 -1.46301761e-01\\n-2.10048124e-01 3.16557288e-01 1.60904914e-01 -1.03805587e-01\\n-7.55465627e-02 -3.03779960e-01 -5.29515669e-02 -4.60794389e-01\\n1.47117585e-01 -5.53129137e-01 3.23036462e-02 -1.01737969e-01\\n7.63723314e-01 -2.43185744e-01 1.68201491e-01 -1.92443337e-02\\n1.34243369e-01 1.03382960e-01 -2.04743315e-02 3.98349464e-02\\n-2.16008723e-01 -3.03375393e-01 -3.02219372e-02 -2.41419956e-01\\n4.70418245e-01 4.26415265e-01 -2.55726814e-01 -4.89498526e-02\\n9.98428166e-02 -3.56135607e-01 -2.20863923e-01 -2.58219093e-01\\n-1.28375947e-01 -1.67964280e-01 -7.53873765e-01 -4.53482836e-01\\n-1.39948219e-01 -1.30637571e-01 -1.79183066e-01 6.85823739e-01\\n-3.26341331e-01 -4.67525035e-01 4.03417125e-02 -5.45589864e-01\\n9.74138454e-02 -2.54920065e-01 7.36849010e-02 -1.48353577e-01\\n-2.53879339e-01 -4.79702592e-01 9.93387476e-02 -2.29159947e-02\\n-1.47317365e-01 -1.29291221e-01 -1.78953316e-02 -1.56996712e-01\\n-3.52823853e-01 -2.84348994e-01 3.98072630e-01 1.54219553e-01\\n3.36670429e-01 1.61767811e-01 3.46327454e-01 9.29220691e-02\\n2.54116535e-01 4.29166704e-02 1.13745682e-01 -2.56963491e-01\\n1.17407493e-01 -1.33167744e-01 6.75389588e-01 -2.10271806e-01\\n-3.06424163e-02 2.17618912e-01 -1.58588171e-01 -1.52335107e-01\\n4.65653092e-01 -3.48148644e-02 -4.37473841e-02 -9.63325799e-02\\n3.44315141e-01 -4.37570572e-01 -1.39008015e-01 1.31856829e-01\\n1.22326307e-01 7.11004436e-01 6.48837164e-02 -3.90598357e-01\\n-3.15256923e-01 5.10156810e-01 -1.70436800e-02 -4.39828150e-02\\n-1.38245210e-01 9.51706916e-02 -1.49762645e-01 1.48976564e-01\\n1.69290587e-01 -2.52623677e-01 -1.34392485e-01 -2.07254682e-02\\n-1.28508016e-01 1.82498679e-01 2.94994891e-01 1.21286921e-01\\n-7.36759230e-02 -3.18882346e-01 -2.82738686e-01 2.13413090e-01\\n1.78033501e-01 3.21200728e-01 2.33400777e-01 -2.96987057e-01\\n-8.88423845e-02 2.74162829e-01 -6.39112070e-02 2.36131728e-01\\n-1.91125125e-01 1.17985599e-01 -5.77232420e-01 -1.51990280e-01\\n-1.82451352e-01 -3.55341643e-01 -9.63377487e-03 3.92011106e-01\\n1.12721696e-01 -2.80157998e-02 1.37635335e-01 -4.28060919e-01\\n3.83078098e-01 1.65574297e-01 2.16329724e-01 3.94830592e-02\\n2.24087574e-02 5.06155550e-01 -2.36281455e-02 -1.44592866e-01\\n-1.81049764e-01 -3.10048577e-03 -2.26907879e-01 -1.86938718e-01\\n9.39327627e-02 -4.24537361e-01 -1.03394493e-01 3.78989726e-01\\n1.09884910e-01 -2.03449875e-01 -2.22843081e-01 1.92236215e-01\\n1.26634508e-01 -2.22964704e-01 -2.68124551e-01 -8.59432817e-02\\n2.69510955e-01 4.22532149e-02 2.69445181e-01 -3.63558859e-01\\n-1.24990664e-01 -4.05609459e-02 -1.04681544e-01 3.71735752e-01\\n4.38280068e-02 1.25749245e-01 -2.25489825e-01 -8.71866271e-02\\n4.16496962e-01 -1.99916437e-01 -1.01017416e-01 -5.68775786e-03\\n2.14488301e-02 -2.21383125e-01 -5.36945581e-01 3.34589146e-02\\n-2.31792871e-02 -9.16041583e-02 1.03917226e-01 4.95176688e-02\\n1.12624101e-01 2.97736600e-02 -4.76847261e-01 -2.42387205e-01\\n-3.20910484e-01 -1.01022720e-01 2.21627682e-01 -3.39469522e-01\\n2.06570011e-02 -7.44875893e-02 -6.46117508e-01 2.20176965e-01\\n-2.93631554e-01 6.44078925e-02 2.09118575e-01 6.84900731e-02\\n-2.89846301e-01 -7.18417093e-02 5.40907830e-02 2.68675357e-01\\n-2.00353399e-01 -9.69718024e-02 -1.32815599e-01 -9.32604074e-01\\n2.26728067e-01 -6.84717745e-02 -6.46681637e-02 -4.70831804e-02\\n4.15480183e-03 -6.18592799e-01 1.54709801e-01 -3.55068088e-01\\n2.02562585e-02 9.17806178e-02 -2.54402548e-01 -2.93878287e-01\\n8.91731530e-02 -1.47753209e-01 -2.84847856e-01 3.83184791e-01\\n-4.57132012e-01 1.83667257e-01 1.60041936e-02 1.10351361e-01\\n-2.38874350e-02 -2.93784559e-01 2.02276498e-01 -4.16057378e-01\\n-3.50548148e-01 -1.97443083e-01 -2.71469623e-01 -3.08780611e-01\\n5.73224500e-02 -3.66917074e-01 -1.48068368e-01 6.08434752e-02\\n2.30457067e-01 4.75714169e-02 -1.31713197e-01 -2.82507241e-01\\n-3.21307369e-02 -5.15598178e-01 2.60962754e-01 -1.64898157e-01\\n4.75019254e-02 -2.06220839e-02 2.24028453e-01 9.45636630e-02\\n1.84180185e-01 -3.89262885e-01 3.92789364e-01 -3.63392323e-01\\n-3.01650137e-01 -4.81558852e-02 -5.16412966e-02 6.42930493e-02\\n2.61086762e-01 -5.41121542e-01 1.01180077e-02 1.86398819e-01\\n7.75865912e-02 7.26497918e-02 2.30011582e-01 -1.09838851e-01\\n-1.73561439e-01 1.53525159e-01 -2.96756804e-01 8.38316903e-02\\n7.66189814e-01 1.42351881e-01 1.14174858e-01 1.68061465e-01\\n9.82450545e-02 3.79284948e-01 4.92646873e-01 1.93414406e-03\\n3.30070704e-02 2.17681155e-01 3.02026719e-02 -4.71996814e-01\\n-1.98831648e-01 -5.58554381e-02 -2.32645109e-01 -3.01343143e-01\\n4.88483787e-01 3.37962657e-01 -4.36467230e-01 -3.03671569e-01\\n8.37995932e-02 -9.90793705e-02 3.49347502e-01 7.99787715e-02\\n-4.62359339e-02 -2.34577790e-01 5.53103149e-01 3.91831249e-02\\n3.02090526e-01 5.90380311e-01 -6.04438595e-02 -4.08283502e-01\\n-1.40415251e-01 2.38491431e-01 4.59875353e-02 4.55891699e-01\\n-8.67438391e-02 2.29221463e-01 -2.01717131e-02 5.56300431e-02\\n3.30250449e-02 6.81054220e-02 1.29672989e-01 1.54104605e-01\\n1.95514098e-01 1.66474506e-01 3.70199621e-01 5.40943503e-01\\n7.32200742e-02 4.85517889e-01 2.70979524e-01 5.00193834e-02\\n2.99673736e-01 6.42767489e-01 4.52486783e-01 2.01659963e-01\\n6.43692091e-02 1.64361969e-01 1.21771529e-01 -1.07977420e-01\\n3.70519519e-01 2.84178942e-01 1.81891605e-01 8.49902451e-01\\n3.34213793e-01 1.84644729e-01 7.72197366e-01 -6.86626375e-01\\n-3.28088492e-01 3.39398682e-02 4.50774461e-01 -2.42100075e-01\\n-4.00201790e-02 1.57529965e-01 -2.51336247e-01 3.51791948e-01\\n-4.80008394e-01 -1.14155754e-01 3.30991074e-02 -6.21156096e-02\\n7.45923668e-02 -9.39129516e-02 -9.83097106e-02 -1.97362620e-02\\n-1.56326681e-01 -1.46081910e-01 -2.79602110e-01 -1.78151205e-01\\n-3.31089139e-01 5.21156229e-02 -1.19059257e-01 -1.49056032e-01\\n-1.86889935e-02 -4.32440907e-01 -5.47806136e-02 1.09304845e-01\\n3.38639438e-01 -6.29020408e-02 -6.29020631e-02 -8.41925852e-03\\n1.99822500e-01 3.48794281e-01 5.95449805e-01 -7.12604076e-02\\n9.79602411e-02 -2.22206548e-01 -2.13774800e-01 7.25805014e-02\\n2.28640297e-03 -6.96777776e-02 1.04644112e-01 3.42532545e-01\\n-3.15297872e-01 -7.83983991e-02 -1.87895447e-02 2.60366470e-01\\n-4.01568830e-01 -9.28893909e-02 -1.57994911e-01 2.52415776e-01\\n-2.83473004e-02 1.41502365e-01 -2.46584997e-01 -8.50632787e-03\\n-1.97978795e-01 -3.97043020e-01 4.11216497e-01 -1.76645890e-01\\n-1.31972298e-01 2.76845545e-01 2.00490072e-01 1.43336028e-01\\n-2.52448678e-01 2.04628538e-02 -8.30664188e-02 1.74150482e-01\\n-3.00979521e-02 4.37407762e-01 -2.07550764e-01 -1.64763391e-01\\n-2.82055020e-01 3.11717063e-01 -1.00641996e-01 1.29502967e-01\\n-6.62696660e-02 2.52333671e-01 1.82071149e-01 -6.27015159e-02\\n3.45473260e-01 9.84240919e-02 -2.71901995e-01 -1.56051815e-01\\n-8.02501589e-02 -1.78788513e-01 -4.45113108e-02 -5.37209585e-02\\n1.52462572e-01 -3.73692155e-01 -6.55194223e-02 -9.74771529e-02\\n-4.11849990e-02 -3.18096995e-01 -1.56579182e-01 -1.07962815e-02]]',\n", + " 'job_description': \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting our BI environment. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: Bachelor's or higher degree in computer science or equivalent work experience A minimum of three years of software engineering experience Excellent knowledge with Scala or Java Expert knowledge in an enterprise class RDBMS Demonstrated ability in data modeling, ETL development, and data warehousing Experience with big data technologies, such as Kafka, Spark, and Cassandra Excellent troubleshooting and creative problem-solving abilities and analytical skills Excellent written and oral communication and interpersonal skills Advantage: experience with systems for automating deployment, scaling, and management of containerised applications, such as Kubernetes and Mesos experience with machine learning experience with encryption and cryptography standards Benötigte Skills Scala JAVA ETL Datawarehouse Business Intelligence Kryptografie / Verschlüsselung\",\n", + " 'soft_skills': '[\"Analytical Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " 'hard_skills': '[\"Machine Learning Methods\", \"Data Warehousing\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Mesos\", \"Apache Cassandra\", \"Encryption\", \"Cryptography\", \"Maintainability\", \"Computer Science\", \"Java (Programming Language)\", \"Data Modeling\", \"Big Data\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Business Intelligence\"]',\n", + " 'languages': \"['English', 'Javanese']\"},\n", + " {'company_id': '94',\n", + " 'job_title': 'saas & open-data development engineers',\n", + " 'location': 'Rolle',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.84736553e-02 2.41919011e-01 6.12432182e-01 1.17697574e-01\\n6.16215467e-01 -6.42231181e-02 -1.31970704e-01 5.38616717e-01\\n-1.32668704e-01 -3.84660423e-01 3.77689451e-02 -3.60987097e-01\\n-6.04589283e-02 2.30093494e-01 1.72765180e-01 4.34548855e-01\\n1.83192998e-01 3.63055579e-02 -1.65740162e-01 2.67881513e-01\\n1.02243528e-01 -4.69515361e-02 3.48026693e-01 7.76968122e-01\\n3.32396507e-01 -1.38146371e-01 -6.98562413e-02 6.62104115e-02\\n-2.60016054e-01 -8.67173597e-02 4.17284906e-01 1.27730161e-01\\n-3.32209557e-01 -4.02919441e-01 1.16316535e-01 5.55696450e-02\\n-2.37498611e-01 -1.31318599e-01 -2.92957388e-02 1.12921357e-01\\n-5.80412507e-01 -3.28383714e-01 -8.09447616e-02 6.74306750e-02\\n-3.46572906e-01 -2.44941428e-01 9.31661949e-03 -1.86708309e-02\\n1.03522837e-01 1.03569023e-01 -5.14847040e-01 1.23196423e-01\\n-1.12720743e-01 -3.01769853e-01 2.20641196e-01 6.71360672e-01\\n6.81209117e-02 -4.06091511e-01 -4.51120973e-01 -3.24904770e-01\\n9.17415917e-02 -1.12229757e-01 6.13092072e-02 -3.56677771e-01\\n3.03087562e-01 -5.87963350e-02 1.64652560e-02 1.93191841e-01\\n-6.93414032e-01 2.38288473e-02 -2.33804762e-01 -1.47518933e-01\\n-3.15329462e-01 6.18902817e-02 -2.97626495e-01 -2.42492035e-01\\n-1.44667029e-01 4.33701217e-01 1.31305158e-01 1.11019388e-01\\n-1.50597528e-01 2.47312263e-01 -1.04015507e-01 3.70837659e-01\\n1.78832054e-01 3.69158030e-01 2.23606929e-01 3.22638959e-01\\n-3.73376667e-01 4.07187790e-01 1.23610720e-01 -2.65248090e-01\\n2.37748519e-01 1.79369792e-01 2.60767937e-01 -3.19731198e-02\\n1.99742496e-01 -3.80939171e-02 -3.38774532e-01 2.55127251e-01\\n1.66170642e-01 -4.89973366e-01 1.56059548e-01 -1.37409851e-01\\n-2.91071110e-03 -9.35484562e-03 5.29987477e-02 1.72150329e-01\\n-3.07736784e-01 3.31511438e-01 -9.75141581e-03 -1.83410212e-01\\n-6.16281517e-02 -4.30995047e-01 -1.41203254e-01 5.74008711e-02\\n4.13490981e-02 2.14751825e-01 2.29491144e-01 1.36725515e-01\\n2.72884190e-01 4.15500924e-02 2.00089261e-01 8.26575220e-01\\n-1.01523191e-01 1.22595973e-01 -2.15934291e-01 2.78273314e-01\\n1.04444064e-01 -3.02430749e-01 2.50487655e-01 2.11041972e-01\\n-4.98010106e-02 -9.42349657e-02 -2.13046059e-01 2.54772991e-01\\n2.46972758e-02 -2.07937703e-01 -2.51234353e-01 1.31882638e-01\\n6.11384101e-02 -4.97514218e-01 5.43788254e-01 8.31065923e-02\\n1.56877622e-01 -1.19561953e-02 -6.43652305e-02 -9.73375663e-02\\n-2.58714594e-02 2.39994973e-01 1.08834561e-02 1.40085697e-01\\n-2.57190377e-01 -1.34198502e-01 -2.20970795e-01 -5.64923510e-02\\n-4.84618783e-01 1.74180657e-01 -2.61870492e-03 -9.50599611e-02\\n2.02970713e-01 -4.20724228e-02 -2.46544674e-01 3.05305272e-01\\n-2.90376037e-01 -1.57171533e-01 1.00669160e-01 3.03827971e-01\\n-3.33609164e-01 1.24858879e-01 -4.12712581e-02 -2.41804451e-01\\n4.68797714e-01 1.51310444e-01 3.22709411e-01 5.13660572e-02\\n2.20861048e-01 -7.63877109e-02 1.25798220e-02 2.25749254e-01\\n-6.80219054e-01 3.12701553e-01 9.46367458e-02 -2.03057796e-01\\n2.09997013e-01 -9.98928025e-02 2.42035434e-01 -2.14426339e-01\\n1.05195731e-01 -1.19733736e-01 -3.10576200e-01 -2.43693173e-01\\n-2.50029624e-01 -1.11449482e-02 3.08066875e-01 -5.88151038e-01\\n-8.85183588e-02 -6.81326771e-03 -4.59642947e-01 -1.65356681e-01\\n8.05867016e-02 2.61000484e-01 8.85389671e-02 -6.61543459e-02\\n-1.77584067e-01 -4.06854153e-01 4.10916144e-03 -3.55987817e-01\\n-1.66966155e-01 -2.51327865e-02 -3.42965454e-01 1.76653370e-01\\n5.54593652e-02 -3.25680003e-02 -9.56261456e-02 -9.40824579e-03\\n-2.53544331e-01 7.96341375e-02 1.03581689e-01 6.38189167e-02\\n3.22969556e-01 1.15117999e-02 -2.08913103e-01 5.06031156e-01\\n-1.80207267e-01 6.66844666e-01 1.73181459e-01 -8.14377546e-01\\n4.54653323e-01 2.86863357e-01 -1.07230963e-02 -2.92135686e-01\\n6.37848198e-01 -3.75582367e-01 -8.85041524e-03 1.87342823e-01\\n-3.45231771e-01 -2.83567667e-01 1.51937395e-01 -2.25106969e-01\\n-2.58491546e-01 5.26574135e-01 1.42717451e-01 1.70898438e-01\\n2.14334786e-01 -3.03610891e-01 -6.75523803e-02 -8.32155868e-02\\n-1.54264092e-01 -3.83195549e-01 -5.73028982e-01 -6.55015782e-02\\n-1.25790730e-01 -3.36801231e-01 -1.47425279e-01 -4.62748349e-01\\n-9.27001834e-02 -4.03450519e-01 -2.65678197e-01 1.94546476e-01\\n2.13997319e-01 1.17348842e-01 -4.25942205e-02 1.22979367e-02\\n-9.76544321e-02 -6.76535070e-01 -8.29224885e-02 5.83552606e-02\\n4.43315655e-01 1.14559479e-01 2.77244925e-01 -1.28652334e-01\\n1.65955558e-01 6.53477192e-01 -1.71655521e-01 -3.07079434e-01\\n1.43087879e-01 2.78428346e-01 1.68222748e-02 -2.66479850e-02\\n3.05576324e-01 2.89223909e-01 -2.62924641e-01 2.34096106e-02\\n-1.91415884e-02 1.05153278e-01 2.40348488e-01 1.25994071e-01\\n-2.08174571e-01 -2.31274411e-01 7.44361654e-02 2.25542650e-01\\n-4.92674112e-01 -2.38332406e-01 5.76628327e-01 1.89323768e-01\\n1.72084689e-01 1.17254898e-01 1.26011491e-01 -1.54321223e-01\\n-6.75572753e-02 -1.61565736e-01 3.12038869e-01 1.21914983e-01\\n1.64828986e-01 4.59882095e-02 5.60047068e-02 -5.16435623e-01\\n-3.68510103e+00 -2.04643905e-01 1.15050748e-01 -1.39377043e-01\\n2.25725040e-01 -1.56521946e-01 1.81444034e-01 6.03725575e-02\\n-2.73012012e-01 8.79794806e-02 -3.70080732e-02 -2.01254904e-01\\n2.38678962e-01 1.67655721e-01 1.16300568e-01 3.35585594e-01\\n1.83759972e-01 -2.25459978e-01 -2.91225165e-02 4.49460089e-01\\n-1.60301223e-01 -7.04077303e-01 1.49113461e-01 9.12655378e-04\\n2.50079185e-01 1.75658807e-01 -2.26983413e-01 -1.39011815e-01\\n-1.59145996e-01 -2.46197671e-01 3.44767347e-02 -3.23523790e-01\\n-1.21446028e-01 3.80035192e-01 1.86080128e-01 -6.75055906e-02\\n9.49894413e-02 -3.48343015e-01 -2.33039573e-01 -3.63653660e-01\\n5.97209223e-02 -5.22657275e-01 2.36434229e-02 -5.33922091e-02\\n6.37204826e-01 -3.07620466e-01 2.31776059e-01 1.63289651e-01\\n1.16568752e-01 1.62227869e-01 1.37857303e-01 -4.81144451e-02\\n-1.36183485e-01 -3.80989969e-01 -4.40786481e-02 -2.41421148e-01\\n5.02203763e-01 4.73702669e-01 -9.83978510e-02 8.17500278e-02\\n8.24889317e-02 -1.00262851e-01 -4.55879271e-01 -3.48340064e-01\\n-1.40129134e-01 -1.73357055e-01 -6.14194393e-01 -3.46351296e-01\\n-7.30605051e-02 -2.31972501e-01 -1.35276854e-01 4.15082425e-01\\n-2.48057410e-01 -4.22986895e-01 -1.10082425e-01 -4.02447820e-01\\n4.98986453e-01 -8.01795423e-02 -8.19751695e-02 -1.77903876e-01\\n-3.06175083e-01 -4.51508850e-01 7.00418726e-02 5.60297556e-02\\n-1.37117594e-01 -2.48543158e-01 8.51005539e-02 -1.93365633e-01\\n-2.53347397e-01 -5.42094886e-01 4.91929710e-01 1.91351861e-01\\n3.88246030e-01 2.44157195e-01 3.35294843e-01 4.24858630e-02\\n2.36765862e-01 -1.30596459e-02 6.96509182e-02 -5.09429812e-01\\n-9.48905386e-03 1.50178969e-01 3.84478986e-01 -2.33487189e-01\\n-7.02647343e-02 5.68344593e-02 -2.13667691e-01 -8.05243030e-02\\n2.36583889e-01 -8.08320493e-02 1.11165784e-01 -1.00594193e-01\\n1.90627620e-01 -4.13162857e-01 -8.43930915e-02 1.21284667e-02\\n1.70217544e-01 6.26987398e-01 2.14895941e-02 -2.68700600e-01\\n-2.38965496e-01 6.31770074e-01 -1.30366474e-01 5.45745008e-02\\n-1.47044957e-01 8.67952630e-02 -2.01769859e-01 3.55974704e-01\\n-2.22864635e-02 -1.99969009e-01 -1.95707530e-01 -9.51852873e-02\\n-7.49362037e-02 2.82125622e-01 2.48614430e-01 8.22490677e-02\\n-3.91706564e-02 -4.08989966e-01 -7.48946741e-02 1.64007694e-01\\n2.83557922e-01 4.55308974e-01 6.03033565e-02 -1.59257561e-01\\n6.31423220e-02 3.57733667e-01 -2.71562994e-01 3.77787858e-01\\n-1.64666668e-01 1.26144394e-01 -6.03301287e-01 -3.17716330e-01\\n-3.47856581e-01 -2.79778987e-01 1.10520743e-01 2.84208000e-01\\n2.91715264e-01 -1.45216689e-01 1.40227275e-02 -4.95666593e-01\\n2.70140141e-01 7.16601461e-02 2.20344976e-01 1.04493171e-01\\n-5.39024696e-02 5.85934341e-01 1.65063702e-02 -6.02708682e-02\\n-2.38422398e-03 6.71600597e-03 -2.37283304e-01 -1.66704476e-01\\n5.08234948e-02 -4.92127687e-01 -2.53342599e-01 3.41810942e-01\\n1.59900710e-01 -4.24070001e-01 -2.68969983e-01 2.13717654e-01\\n7.50737786e-02 -2.27821589e-01 -3.24028492e-01 -6.61231298e-03\\n4.42440689e-01 1.45678639e-01 3.13613474e-01 -4.67149824e-01\\n-1.12178195e-02 7.18855634e-02 6.64622039e-02 4.66007918e-01\\n5.51713025e-03 -1.26265669e-02 -3.20396274e-02 -3.17635536e-01\\n4.47322935e-01 -1.50988325e-01 -1.68358177e-01 -3.33357863e-02\\n4.13880013e-02 -1.05511412e-01 -2.82702744e-01 6.04886040e-02\\n-1.16127856e-01 -3.03594172e-01 -6.26671612e-02 2.03018695e-01\\n1.83796227e-01 -2.95599774e-02 -5.65331638e-01 -3.25130701e-01\\n-2.91991740e-01 -2.10357551e-02 -2.09628493e-02 -3.67239952e-01\\n5.04770912e-02 -9.24000815e-02 -5.30682743e-01 2.08150864e-01\\n-1.51941746e-01 -7.75992721e-02 1.04340725e-01 9.44974422e-02\\n-3.33798975e-01 -1.01228140e-01 1.33059815e-01 2.66825765e-01\\n-3.21399778e-01 -3.43650460e-01 -6.54718503e-02 -7.51138926e-01\\n1.62022933e-01 8.36727098e-02 -1.15217365e-01 1.95982754e-01\\n-1.19607836e-01 -6.26854956e-01 6.60106540e-02 -2.65399069e-01\\n-2.20683664e-01 -2.26165712e-01 -3.15830946e-01 -3.78129840e-01\\n5.39277904e-02 6.49655312e-02 -2.36118942e-01 5.56347489e-01\\n-3.81152928e-01 2.56314486e-01 -7.96183646e-02 4.68397513e-02\\n1.72613356e-02 -2.08499610e-01 2.12732181e-01 -4.15350348e-01\\n-3.55430871e-01 -8.42158422e-02 -3.39894950e-01 -3.17642242e-01\\n-1.93699718e-01 -2.35852674e-01 8.16843566e-03 -7.09362775e-02\\n3.32020283e-01 1.07818626e-01 -1.32470295e-01 -2.26608410e-01\\n1.38176680e-01 -3.49356353e-01 1.51823595e-01 -4.59957086e-02\\n-8.19065049e-02 -1.00773856e-01 1.95760444e-01 6.50079250e-02\\n1.43086642e-01 -3.80741417e-01 2.65167475e-01 -4.40859646e-01\\n-3.23772490e-01 -2.09869534e-01 4.87224460e-02 -1.52072906e-02\\n1.62997901e-01 -5.91819942e-01 5.11376821e-02 1.73154294e-01\\n1.80089161e-01 -3.11979856e-02 3.00230235e-01 -8.87090936e-02\\n-1.05823286e-01 3.49404603e-01 -2.96149760e-01 4.22173403e-02\\n7.77066231e-01 1.09981678e-01 1.27380446e-01 2.90766448e-01\\n4.59263921e-02 1.73994601e-01 3.73097211e-01 9.55682322e-02\\n-8.30591545e-02 2.24705219e-01 1.89638421e-01 -4.55141872e-01\\n-1.00246727e-01 -4.87681068e-02 -1.74890444e-01 -5.11940002e-01\\n6.68703973e-01 3.47757995e-01 -4.26182002e-01 -2.17257574e-01\\n-1.64822757e-01 -1.07148722e-01 2.54087269e-01 -1.47430524e-01\\n-2.87761502e-02 -8.11498165e-02 4.20388699e-01 -3.27016115e-02\\n4.01613861e-01 5.60621262e-01 -1.66709617e-01 -1.95246652e-01\\n-9.10776332e-02 1.88937187e-01 1.67197540e-01 3.59142512e-01\\n-2.30399117e-01 4.22232628e-01 4.30427678e-02 1.42647967e-01\\n-6.48752749e-02 2.64208585e-01 8.52646455e-02 1.48579031e-01\\n1.23587020e-01 4.66456935e-02 4.33193743e-01 4.59638149e-01\\n2.26324245e-01 3.98176759e-01 3.37446034e-01 1.55141249e-01\\n3.14384997e-01 3.97590697e-01 2.74339944e-01 1.04928561e-01\\n7.24257603e-02 3.88792157e-02 1.23805352e-01 -5.80965504e-02\\n2.13122964e-01 4.22387719e-01 1.36452481e-01 8.81558657e-01\\n2.89816082e-01 2.85555631e-01 7.15859413e-01 -6.31844938e-01\\n-3.64297390e-01 -4.20741476e-02 4.30441201e-01 -4.68447536e-01\\n-1.09320067e-01 8.48481655e-02 -7.84363598e-02 2.46285096e-01\\n-4.01375502e-01 -1.64868042e-01 -2.24386752e-02 1.56669080e-01\\n-3.50819714e-02 -2.72874743e-01 -1.08179636e-01 1.21395297e-01\\n-6.77747205e-02 3.43343541e-02 -4.33771253e-01 -2.11069316e-01\\n-1.99396610e-01 -2.85828531e-01 -3.34845006e-01 -5.63718416e-02\\n-1.00726865e-01 -3.20283741e-01 -3.81402075e-02 -2.51298565e-02\\n2.81315476e-01 -3.21915485e-02 -7.25777224e-02 -1.84683770e-01\\n3.78435820e-01 1.55084729e-01 5.29626906e-01 -1.17577322e-01\\n2.12729409e-01 -1.15181141e-01 -1.74979821e-01 3.32621597e-02\\n1.71367526e-01 5.24305478e-02 -4.40387763e-02 2.06716865e-01\\n-2.54046082e-01 -1.07604459e-01 1.70961127e-01 1.84873760e-01\\n-4.32809472e-01 8.43826309e-02 -9.10341218e-02 1.38509825e-01\\n6.28625508e-03 1.02476016e-01 -2.58667499e-01 2.93790270e-02\\n-2.50913560e-01 -5.01246333e-01 3.05110931e-01 -3.14081937e-01\\n-7.71127418e-02 1.12704739e-01 3.78800213e-01 3.17042619e-01\\n-1.24185815e-01 8.15732330e-02 -4.62666750e-02 6.35132119e-02\\n3.96923572e-02 1.50955692e-01 -1.87291533e-01 -2.22348362e-01\\n-4.00322109e-01 9.14957225e-02 -1.98645294e-01 7.54148886e-02\\n4.54623438e-02 4.27334279e-01 1.41853422e-01 3.90491746e-02\\n3.97987515e-01 -1.40597627e-01 -2.23483115e-01 -2.70711303e-01\\n-2.68504232e-01 -6.37652203e-02 -1.10278949e-01 -5.43282293e-02\\n1.98959157e-01 -2.56295085e-01 -3.69881354e-02 -1.92600414e-01\\n-4.39222865e-02 -3.32336396e-01 6.70754462e-02 -1.82466760e-01]]',\n", + " 'job_description': \"You have hands-on experience developing, deploying or managing operating cloud-based services SAAS applications. You have been exposed to one or several IAAS & PAAS infrastructures such as AWS, GE-Digital Predix, IBM-BlueMix/Watson, VMware... You are experienced in finding and structuring and collecting different data streams (weather, finance, industrial signals, social events). You strongly believe automated machine learning and artificial intelligence coupled with big data can change the game in many industrial sectors. You worked open-data correlations with industrial signals, weather, events, calendar, financial markets, economic indicators. You applied it to real use case in operations and markets, for energy, utilities, industry, retail, transport or freight sectors. You cooperate with leading partners like GE - Digital, IBM-Analytics, Cisco-IOT with Industry leader customers in EU & US & Asia, like Arcelor, EDF, ALPIQ, ELIOR, METRO... Predictive Layer will bring you a unique opportunity to develop, deploy, or operate leading-edge predictive services for different customers worldwide, on different markets: Energy, Industry, retail, Catering, Transport and many more... At Predictive Layer, We cultivate a team-based environment where we strive for personal growth and a substantial contribution from all our team members. If you desire a career where you can drive innovation while working in an dynamic environment where innovative thinking, creativity and motivation are recognized and rewarded, then come and join us! Back to opportunities Send us your resume - Let's meet! careers@predictivelayer.com Position reference: #2017-OOE-003\",\n", + " 'soft_skills': '[\"Cooperation\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Innovation\", \"Socialization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Automation\", \"Collections\", \"Analytics\", \"Data Streaming\", \"Prediction\", \"Industrialization\", \"IBM Bluemix\", \"Energy Market\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Component Object Model (COM)\", \"Layering\", \"Weathering\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Cloud Operations\", \"Predix\", \"Financial Market\", \"Machine Learning Methods\", \"Finance\", \"Digitization\", \"Personalization\", \"Cisco Networking\", \"Location-Based Services\", \"Artificial Intelligence\", \"Big Data\", \"Coupling\", \"Operations Management\", \"Economic Indicators\", \"Cultivator\"]',\n", + " 'languages': \"['English', 'Kyrgyz', 'Sango', 'Dhivehi']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.91686648e-01 2.04061642e-01 4.32900786e-01 5.80541231e-03\\n5.18044472e-01 -4.35516611e-02 6.88831061e-02 3.14570218e-01\\n-2.31416989e-02 -1.06871881e-01 -2.13608995e-01 -3.15169513e-01\\n-2.04013705e-01 4.33192477e-02 2.12641582e-01 4.68771964e-01\\n2.06029788e-01 4.64090845e-03 -2.33336136e-01 3.54226083e-01\\n8.34875479e-02 1.16545513e-01 -8.03779885e-02 6.66175187e-01\\n4.59694654e-01 7.73728266e-02 -9.30137709e-02 -6.06686398e-02\\n-4.31178957e-01 -1.22906849e-01 3.92261207e-01 3.61385271e-02\\n-9.46454480e-02 -3.26138735e-01 2.11242456e-02 1.10569127e-01\\n-2.47097641e-01 -1.50502831e-01 1.68206654e-02 2.04309180e-01\\n-3.79395932e-01 -3.12247723e-01 6.52576089e-02 1.26953319e-01\\n-2.43624642e-01 -2.30153948e-01 -9.27058533e-02 2.55104769e-02\\n-1.03222162e-01 1.84942279e-02 -6.65568054e-01 4.08408523e-01\\n-1.04728453e-02 -2.32192174e-01 2.04855323e-01 5.86999357e-01\\n-3.99021171e-02 -6.51836574e-01 -1.44396707e-01 -3.63383561e-01\\n9.07827243e-02 -1.54940471e-01 1.95662662e-01 -1.43888503e-01\\n2.62164503e-01 -2.54363287e-02 -9.81821939e-02 4.06078011e-01\\n-6.90876722e-01 -2.91096240e-01 -2.70085990e-01 2.83177420e-02\\n-4.25305545e-01 2.47034803e-01 -2.70958364e-01 -1.99569121e-01\\n-7.19892373e-03 3.57395053e-01 -7.33129233e-02 1.79655209e-01\\n-1.30498648e-01 2.68183112e-01 5.49143404e-02 1.56695530e-01\\n3.29132676e-01 1.70341834e-01 6.99401200e-02 3.04478884e-01\\n-4.62187618e-01 3.90775949e-01 2.11236048e-02 -2.53589392e-01\\n7.53163546e-02 7.59304240e-02 5.08834243e-01 1.42248869e-01\\n-3.88880493e-03 1.46473348e-01 -1.14827834e-01 2.20470622e-01\\n1.56753615e-01 -3.96738827e-01 1.68205366e-01 -1.48392871e-01\\n-3.07249308e-01 9.56062824e-02 -5.15857749e-02 1.48669571e-01\\n-3.95480365e-01 3.60392392e-01 3.44294488e-01 -1.48743823e-01\\n4.47677597e-02 -7.07802296e-01 -6.16617687e-03 -1.08273730e-01\\n-3.29244770e-02 2.66690195e-01 3.53786469e-01 1.39948636e-01\\n3.35522771e-01 -2.40337998e-02 3.09950709e-01 9.22345698e-01\\n1.06312841e-01 -6.31182119e-02 -2.80792922e-01 3.81584108e-01\\n1.77828118e-01 -1.56814650e-01 1.29394233e-01 3.10392052e-01\\n1.79872289e-01 -1.06019974e-02 -3.41209352e-01 1.85541242e-01\\n-2.57802755e-01 -2.52250612e-01 -2.50154316e-01 6.68606237e-02\\n-3.00160915e-01 -5.20796239e-01 4.69825923e-01 2.89042899e-03\\n1.94604620e-01 -2.91163594e-01 4.07283343e-02 -2.49617416e-02\\n9.56173986e-02 3.98653984e-01 2.79094782e-02 2.17068866e-01\\n-3.32155615e-01 -2.23185718e-01 -9.21046361e-02 4.37520176e-01\\n-1.27507046e-01 8.61564875e-02 -4.25243825e-02 -1.88912332e-01\\n2.21561462e-01 1.54933020e-01 -4.68802392e-01 8.78279582e-02\\n-7.37207234e-02 -5.42537093e-01 -1.70441732e-01 2.29685605e-01\\n-1.14009015e-01 1.72813907e-01 6.27578199e-02 -4.33599025e-01\\n4.43504423e-01 2.13964894e-01 3.21540713e-01 -1.51990175e-01\\n3.53876829e-01 -2.53861398e-01 3.90937448e-01 9.04271677e-02\\n-5.72262168e-01 2.86348790e-01 -4.35030013e-02 -2.74785340e-01\\n5.26457578e-02 9.81169194e-02 4.16561067e-01 -3.90926689e-01\\n7.44875073e-02 -1.22140825e-01 -5.08401811e-01 -4.69216824e-01\\n-2.30852485e-01 -1.41185215e-02 3.27836186e-01 -2.72792906e-01\\n-1.21926583e-01 1.26300439e-01 -4.60910052e-01 -1.87993661e-01\\n1.98193178e-01 1.49658859e-01 -5.78675941e-02 1.21580981e-01\\n-1.14804476e-01 -5.86582541e-01 -7.11060837e-02 -4.94487405e-01\\n-5.88183165e-01 6.78510685e-03 -1.46117225e-01 1.84540823e-01\\n-4.49923463e-02 6.83041364e-02 -1.15771160e-01 9.27980244e-02\\n-3.67254108e-01 8.01892281e-02 8.07137415e-02 1.34678900e-01\\n2.40965366e-01 -3.53384875e-02 -3.95915896e-01 5.52297473e-01\\n-1.36895254e-01 7.23371267e-01 1.95815772e-01 -7.41342068e-01\\n6.38919592e-01 2.20288649e-01 1.21694058e-01 -3.34901065e-01\\n4.34764653e-01 -4.39412773e-01 1.34969741e-01 1.38143837e-01\\n-1.92996383e-01 -1.85268894e-01 3.54556441e-01 -2.34328449e-01\\n-2.26210520e-01 6.41136110e-01 2.31571779e-01 -4.68387939e-02\\n2.65198618e-01 -3.25872600e-01 -7.42147639e-02 2.10727658e-02\\n-1.24358773e-01 -2.64939845e-01 -3.25193048e-01 2.36042559e-01\\n2.05413494e-02 -4.78125781e-01 -1.34334296e-01 -3.00024182e-01\\n-2.20172137e-01 -3.30865502e-01 -1.60069898e-01 4.58098292e-01\\n2.76281744e-01 6.51849508e-02 1.63065001e-01 -1.41635284e-01\\n3.59781235e-02 -5.04790545e-01 -7.63145015e-02 6.02018833e-02\\n4.72447187e-01 2.22790226e-01 1.42201856e-01 -3.78096811e-02\\n-1.62803754e-01 5.66866040e-01 -2.81950563e-01 -3.03432107e-01\\n7.97862262e-02 1.26851588e-01 -1.34955049e-01 -8.98523182e-02\\n2.16015540e-02 3.30069751e-01 -1.12245493e-01 1.98037133e-01\\n-1.73597977e-01 5.31428717e-02 3.97042304e-01 5.46354742e-04\\n-6.91757128e-02 -9.93821844e-02 2.34444849e-02 4.30463403e-01\\n-4.51289505e-01 -2.72068530e-01 5.25003254e-01 2.51450390e-01\\n1.47409484e-01 1.89006016e-01 2.93197662e-01 -1.90295175e-01\\n-1.99855283e-01 -3.15547258e-01 1.98901683e-01 1.13358460e-01\\n-7.48423561e-02 6.57600686e-02 -1.22415893e-01 -5.27231753e-01\\n-3.09559941e+00 -1.15185134e-01 8.34255666e-02 -2.94988632e-01\\n1.26817331e-01 -5.58995754e-02 -9.95766968e-02 1.78745668e-02\\n-3.18785220e-01 1.68545768e-01 -1.95996329e-01 -1.77107424e-01\\n-3.22351940e-02 2.67682254e-01 2.70675067e-02 6.31248206e-02\\n6.36800081e-02 -1.29271969e-01 -6.45667613e-02 3.60034555e-01\\n-1.04455441e-01 -7.07329273e-01 1.27839133e-01 9.89936143e-02\\n1.60704896e-01 1.39445588e-01 -3.79342139e-01 -2.20478594e-01\\n-2.47751176e-01 -2.63370812e-01 1.02236338e-01 -3.67218524e-01\\n-2.26745471e-01 5.52684784e-01 1.89995721e-01 1.23770475e-01\\n-2.57424414e-02 -3.64202052e-01 5.16005047e-02 -3.72083664e-01\\n4.92196679e-02 -6.75677419e-01 -2.24536229e-02 -6.73445463e-02\\n7.37730682e-01 -3.14650893e-01 2.38339290e-01 1.16855979e-01\\n1.99528173e-01 1.91732794e-01 -9.02530476e-02 -3.59763354e-02\\n-3.00475210e-01 -3.57758582e-01 -3.88732441e-02 -1.25933304e-01\\n1.98664621e-01 5.35580575e-01 -1.26230106e-01 9.72895473e-02\\n1.66875422e-01 -3.12311232e-01 -3.78897369e-01 -4.96209085e-01\\n-3.85520071e-01 -3.04649651e-01 -7.95602918e-01 -4.55968976e-01\\n6.41787574e-02 -2.38715727e-02 -2.03945309e-01 6.33700073e-01\\n-2.67338723e-01 -3.09815854e-01 3.13259922e-02 -5.72830915e-01\\n8.76204297e-02 -3.82605910e-01 7.02480972e-02 -5.17662093e-02\\n-2.30191305e-01 -4.76210207e-01 2.21614793e-01 -4.52983044e-02\\n-8.74392986e-02 -5.20487204e-02 -1.32195219e-01 -3.47441792e-01\\n-3.51087242e-01 -4.01318222e-01 4.83230531e-01 1.67956620e-01\\n3.45731348e-01 1.77679092e-01 3.14586937e-01 1.78574964e-01\\n2.28793174e-01 -1.79718718e-01 1.02619573e-01 -2.74181455e-01\\n1.50165260e-01 7.03793615e-02 6.06749535e-01 -2.58435279e-01\\n2.18768328e-01 7.18174875e-02 -2.40116552e-01 2.39831414e-02\\n3.87367308e-01 1.04221758e-02 -1.10561617e-01 1.06923759e-01\\n3.44872296e-01 -7.11534023e-01 -2.85245121e-01 1.62486106e-01\\n1.03101274e-02 6.29650652e-01 1.19856186e-01 -3.50648224e-01\\n-3.50287288e-01 3.50472361e-01 -1.14624739e-01 -2.77999461e-01\\n-2.41299435e-01 2.00297326e-01 -3.36781219e-02 2.01471657e-01\\n-8.62081870e-02 -2.59894907e-01 -3.28894407e-01 -1.00058675e-01\\n-1.76600572e-02 1.67612225e-01 2.25826800e-01 -2.74837622e-03\\n-1.15479641e-01 -2.98116982e-01 -2.16345146e-01 1.26768455e-01\\n4.86808360e-01 2.68854707e-01 1.05064958e-01 -2.23249957e-01\\n-6.88995793e-02 2.34800488e-01 -9.46756452e-02 2.06882849e-01\\n-1.13547988e-01 2.16431692e-02 -4.87001568e-01 -2.74139404e-01\\n-7.26620257e-02 -2.69470245e-01 1.67877689e-01 4.22688961e-01\\n2.02724263e-01 1.23987952e-02 1.65575430e-01 -4.72110569e-01\\n5.43054283e-01 3.25886011e-02 2.37037271e-01 9.31065083e-02\\n-1.38055921e-01 5.86927772e-01 -2.53712311e-02 7.49213919e-02\\n-3.06381006e-02 -2.15650886e-01 -3.27455670e-01 -2.30519980e-01\\n7.34299496e-02 -1.59435898e-01 -6.76190332e-02 4.90209043e-01\\n8.61545354e-02 -3.16816658e-01 -1.40562698e-01 2.92161793e-01\\n7.88714513e-02 -3.43418807e-01 -2.03560680e-01 2.06449088e-02\\n3.21168929e-01 1.94228709e-01 2.89532244e-01 -3.93969625e-01\\n-1.63746029e-01 1.33334100e-02 -1.36937410e-01 4.68767136e-01\\n1.50372535e-01 4.56012189e-02 -1.45879835e-01 -2.96538979e-01\\n4.93033051e-01 -3.20778310e-01 -1.61193863e-01 1.33040011e-01\\n9.44858417e-02 -1.56003058e-01 -5.19017041e-01 -1.38598129e-01\\n3.73046286e-03 -3.13572586e-01 7.54157901e-02 -3.96254249e-02\\n7.04898387e-02 -1.04615487e-01 -4.65436101e-01 -1.98056504e-01\\n-2.42939785e-01 -1.61022365e-01 2.72263400e-02 -3.25940460e-01\\n-6.75823689e-02 -1.42018273e-01 -5.76319933e-01 2.35365167e-01\\n-2.95892686e-01 3.27474661e-02 1.46657616e-01 1.56496599e-01\\n-3.91837656e-01 -2.18247637e-01 4.59922403e-02 1.58302888e-01\\n-2.15325177e-01 -9.29694772e-02 4.32322398e-02 -1.05566096e+00\\n6.74600303e-02 9.57051888e-02 4.38620970e-02 -1.37444250e-02\\n5.82143925e-02 -4.75047231e-01 9.01588053e-02 -4.09445524e-01\\n1.78429082e-01 1.43065438e-01 -1.89526349e-01 -3.32361102e-01\\n2.36770779e-01 -9.77622718e-03 -1.90614969e-01 4.00422871e-01\\n-4.33595836e-01 2.24015430e-01 1.00988053e-01 2.49428526e-02\\n-1.31894322e-02 -2.22912118e-01 1.54108465e-01 -2.20984921e-01\\n-3.87277067e-01 -7.69300833e-02 -3.49794298e-01 -1.46556661e-01\\n5.36721461e-02 -1.79340631e-01 -1.82234108e-01 -2.12534494e-03\\n2.67346382e-01 1.74136102e-01 -8.22721422e-02 -2.09856361e-01\\n1.65601522e-01 -4.61291492e-01 1.79181471e-01 -2.80783921e-01\\n-7.81702548e-02 -8.81757289e-02 1.14850618e-01 -2.13391781e-02\\n-4.90123481e-02 -1.90039948e-01 4.20607239e-01 -4.21165496e-01\\n-4.26618218e-01 -1.46922663e-01 6.75674528e-02 -6.57596514e-02\\n1.99816599e-01 -5.05904078e-01 9.24960896e-02 1.79652214e-01\\n-1.23600625e-02 5.12330867e-02 3.10125351e-01 1.73377208e-02\\n-7.69033805e-02 2.12042525e-01 -4.49290246e-01 1.49462000e-01\\n7.97258973e-01 2.44524360e-01 1.03667662e-01 1.47585422e-01\\n3.19616884e-01 1.93922266e-01 4.80840445e-01 2.74203829e-02\\n-6.48033759e-03 3.03565234e-01 2.05989815e-02 -5.44946373e-01\\n-1.35170072e-01 -2.17022493e-01 -2.81841010e-01 -3.52884531e-01\\n5.24826765e-01 3.64471138e-01 -2.89452016e-01 -2.52792299e-01\\n4.29466888e-02 -3.98050807e-03 3.09857309e-01 -9.07611772e-02\\n-1.62053388e-02 4.23711911e-03 6.46601498e-01 -4.12539020e-02\\n2.83709884e-01 5.23165226e-01 -1.53776795e-01 -3.81389380e-01\\n-2.21663475e-01 2.19195157e-01 2.47132704e-01 4.67390478e-01\\n-1.41480789e-01 2.21952155e-01 6.55875681e-03 8.12674686e-02\\n1.22969672e-02 5.68068214e-02 1.13815844e-01 1.14773445e-01\\n1.92382187e-01 8.23568106e-02 9.49330479e-02 4.14008975e-01\\n5.60235269e-02 5.41974485e-01 2.57521600e-01 1.12128057e-01\\n2.22433060e-01 6.99137092e-01 2.99825996e-01 2.41511628e-01\\n-2.20777504e-02 1.94488913e-01 -6.79388791e-02 -5.71528152e-02\\n3.13189805e-01 1.79291338e-01 2.53783673e-01 8.21816862e-01\\n4.30064529e-01 4.26190197e-01 6.28211617e-01 -7.05857992e-01\\n-5.40140808e-01 -2.42070891e-02 4.85594153e-01 -4.06843603e-01\\n-8.49680305e-02 7.87440091e-02 -1.83871135e-01 4.23936516e-01\\n-5.04320562e-01 -1.52203068e-01 8.90779197e-02 -1.97354853e-01\\n9.27238986e-02 1.12863235e-01 -2.46302843e-01 1.06928006e-01\\n-3.24640989e-01 -2.52708167e-01 -1.78537622e-01 -1.82979271e-01\\n-2.94684291e-01 7.05610821e-03 -2.19192028e-01 -6.02630153e-02\\n-1.73061714e-01 -2.81221062e-01 -5.15223891e-02 9.77224186e-02\\n3.45926851e-01 -1.70974880e-01 -5.85893318e-02 -8.38431567e-02\\n3.22858468e-02 3.04626942e-01 5.61742485e-01 -2.06052825e-01\\n1.91823915e-01 -2.77284253e-02 -3.05221140e-01 -4.42805402e-02\\n8.79964232e-02 -2.45617349e-02 6.70327097e-02 5.06610870e-01\\n-3.83912235e-01 -9.10310447e-02 1.72058523e-01 2.16033608e-01\\n-3.52536142e-01 -1.22531824e-01 -7.99581185e-02 2.29155853e-01\\n5.28882556e-02 1.27549261e-01 -4.40746605e-01 6.87479153e-02\\n-2.03659371e-01 -5.89218378e-01 3.70585591e-01 -3.16344202e-01\\n-6.58534691e-02 3.46906602e-01 3.73105437e-01 7.74152949e-02\\n-3.17093253e-01 1.34946406e-01 -4.19319198e-02 3.90964121e-01\\n2.11893208e-02 3.65439743e-01 -2.65085846e-01 -2.08954737e-01\\n-1.74587041e-01 2.98991859e-01 -1.84180886e-01 3.04837316e-01\\n-1.71879321e-01 2.79030085e-01 1.64251611e-01 -2.80765109e-02\\n1.37629569e-01 3.68232317e-02 -2.77507752e-01 -2.47004271e-01\\n-2.96162635e-01 -3.46491158e-01 1.46319360e-01 4.40414101e-02\\n1.67378008e-01 -3.22934538e-01 -1.03864007e-01 -2.76259840e-01\\n-1.69470996e-01 -3.75530303e-01 -1.91596404e-01 1.57630280e-01]]',\n", + " 'job_description': 'Über unseren Kunden Unser Kunde ist einer der führenden Bankunternehmen der Schweiz Ihr Aufgabenbereich Sourcing and transformation of both structured and unstructured distributed client data coming from relational database systems using SQL or streaming data feeds using APIs; Application of advanced statistical methods, data mining, machine learning, deep learning or reinforcement learning, where applicable, to build and deploy models aiming at an improved client communication and truly personalized client experience / advice; Turning data analysis results into business insights & actions by using effective communication to various business stakeholders. Ihr Profil a degree in a technical field (Computer Science, Statistics, Mathematics, Physics, Engineering or similar) or equivalent practical experience; experience in Machine Learning / Artificial Intelligence, Data Mining, Natural Language Understanding or Algorithmic Foundations of Optimization; experience in processing data from relational databases using SQL; experience in visualizing data analysis results in an effective, applicable manner; programming experience and proficiency in one or more of the following: Python, R, Julia, Scala, Java, C/C++ (preferable, not required: understanding of object oriented design, programming and analysis); (preferable, not required) experience with learning frameworks/tools (TensorFlow, PyTorch, Caffe, MXNet, H2O, Deeplearning4j, Microsoft Cognitive Toolkit, MLlib, CUDA) and/or ‘Big Data’ analyses involving Apache Spark, Hadoop, Mesos or Kubernetes, and/or distributions such as Hortonworks; ability to explain complex models to both technical and non-technical stakeholders; basic knowledge about core banking products (functional, usage, target groups). Ihre Chance Schicken Sie Ihre Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: JAVA Entwicklung C# / C++ / C SQL Sprachen: Job ID: 7055',\n", + " 'soft_skills': '[\"Communications\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Apache Spark\", \"Julia (Programming Language)\", \"Tooling\", \"Programming (Music)\", \"Apache MXNet\", \"Statistical Methods\", \"Computer Science\", \"Data Streaming\", \"Machine Learning\", \"Nvidia CUDA\", \"Mathematical Statistics\", \"Production Function\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Data Feed\", \"Data Visualization\", \"Natural Language Understanding\", \"Mathematical Physics\", \"TARGET 3001!\", \"C (Programming Language)\", \"C# (Programming Language)\", \"Personalization\", \"R (Programming Language)\", \"Caffe\", \"Artificial Intelligence\", \"Object-Oriented Design\", \"Electronic Data Processing\", \"Deep Learning\", \"Survey Data Analysis\", \"Java Data Mining\", \"TensorFlow\", \"Big Data\", \"Database Systems\", \"Transformation (Genetics)\", \"Microsoft Cognitive Toolkit (CNTK)\", \"Banking\", \"Relational Databases\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Java (Programming Language)\", \"Reinforcement Learning\", \"SQL (Programming Language)\", \"Data Analysis\", \"Apache Mesos\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '31',\n", + " 'job_title': 'business analyst for clinical data (structured authoring / data flow mapping)',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.90058723e-01 2.05467284e-01 3.72426987e-01 -5.80466948e-02\\n5.52426279e-01 -1.35403141e-01 5.06900586e-02 1.17760152e-01\\n-3.51019613e-02 -3.80689293e-01 -3.58271338e-02 -3.32828492e-01\\n9.25450027e-02 1.16106957e-01 7.91445896e-02 5.21173418e-01\\n2.81454057e-01 5.90662435e-02 -6.97103366e-02 2.46027634e-01\\n1.40348732e-01 -1.84725702e-01 1.87619776e-01 7.42999434e-01\\n4.30548191e-01 -2.37730164e-02 -3.94903272e-02 4.01175302e-03\\n-2.58001328e-01 -3.45108211e-01 5.59595764e-01 2.84140371e-02\\n-7.95810297e-02 -2.31803909e-01 1.89016998e-01 5.27131185e-02\\n-2.78515488e-01 -2.54841018e-02 -1.59584612e-01 1.29197359e-01\\n-5.78633547e-01 -6.88090622e-02 -1.67745426e-01 -1.00181960e-01\\n-3.14419061e-01 -3.53397936e-01 6.75246567e-02 -1.19257331e-01\\n1.38581753e-01 2.75538713e-02 -4.41809297e-01 1.85329482e-01\\n-3.28515321e-01 -1.55563995e-01 1.75760448e-01 6.83074951e-01\\n-1.45041153e-01 -4.97234970e-01 -4.81767178e-01 -2.40383357e-01\\n2.14999095e-01 -2.20530555e-01 1.44956876e-02 -2.48666823e-01\\n4.08628583e-01 3.72095555e-02 4.76088412e-02 4.28243935e-01\\n-7.22229540e-01 3.62592284e-03 -3.59028965e-01 6.62287325e-02\\n-2.65752167e-01 -1.49419174e-01 -2.67137557e-01 -1.53566346e-01\\n-7.11820051e-02 5.13301671e-01 -4.40597758e-02 8.67671985e-03\\n-1.46189600e-01 2.18050718e-01 -4.62920547e-01 2.63790548e-01\\n1.33325174e-01 1.50912672e-01 2.62105167e-01 7.72791728e-02\\n-4.37509239e-01 5.39172888e-01 2.45323122e-01 -3.96319926e-01\\n5.41904345e-02 8.98631662e-02 4.34878796e-01 -3.18157524e-02\\n6.24236315e-02 1.66692317e-01 -2.21452668e-01 2.38205418e-01\\n2.77330428e-01 -1.54558778e-01 9.64008570e-02 -5.01327850e-02\\n5.52161001e-02 -4.44939733e-02 3.50220017e-02 1.70944035e-01\\n-2.74819344e-01 4.77229238e-01 1.67230517e-01 -1.71569705e-01\\n-6.93121776e-02 -5.75600922e-01 -1.39177486e-01 1.42730139e-02\\n9.78661627e-02 1.22890607e-01 1.73482195e-01 3.08965772e-01\\n1.35107741e-01 3.33782285e-02 1.90341100e-01 8.82140756e-01\\n-4.52443548e-02 9.46592242e-02 -2.19695911e-01 3.27983350e-01\\n5.48824295e-02 -1.86934635e-01 2.39293039e-01 2.42590547e-01\\n-3.60377319e-02 -1.58151969e-01 -2.53053665e-01 4.14843231e-01\\n-9.26750004e-02 -2.17903927e-01 -1.93283975e-01 1.59457773e-01\\n-1.03982978e-01 -4.09473747e-01 5.79520702e-01 1.81898065e-02\\n1.21529602e-01 5.02033830e-02 -4.37205508e-02 -1.26886711e-01\\n-1.33194476e-01 3.43388498e-01 8.80149305e-02 1.16420120e-01\\n-1.20533943e-01 -2.96015114e-01 -8.47650021e-02 -2.92673451e-03\\n-2.82999754e-01 2.02451006e-01 -2.91905552e-01 -1.36052728e-01\\n4.50310171e-01 1.38760164e-01 -2.50322551e-01 3.11224759e-01\\n2.23671906e-02 9.41399764e-03 -9.75012034e-02 3.11580926e-01\\n-1.38899744e-01 9.29924380e-03 -1.01195633e-01 -3.15653920e-01\\n6.40886545e-01 2.92992163e-02 1.49095446e-01 4.01243046e-02\\n2.86743194e-01 -1.16093077e-01 1.56278908e-01 1.03367336e-01\\n-6.29719377e-01 4.76476073e-01 -1.67793274e-01 -1.35034740e-01\\n1.79337367e-01 -3.14125791e-02 3.62498045e-01 -3.12276870e-01\\n4.72382717e-02 -1.02296822e-01 -2.82601982e-01 -3.01525712e-01\\n-1.39809862e-01 -7.39141032e-02 3.35491955e-01 -3.87600124e-01\\n-5.22675663e-02 1.23412631e-01 -5.80588639e-01 -3.56190056e-02\\n1.82278842e-01 2.21916214e-01 2.37710059e-01 9.78602320e-02\\n-1.38567075e-01 -4.41609710e-01 1.90374434e-01 -4.09482688e-01\\n-1.62757501e-01 1.67970449e-01 -2.81430900e-01 2.90771395e-01\\n1.04229055e-01 4.54522334e-02 -9.80815664e-02 1.36675030e-01\\n-6.86575174e-02 -8.45099539e-02 1.90347210e-01 8.13273564e-02\\n2.58637458e-01 8.65791272e-03 -4.48414534e-01 5.19765198e-01\\n-1.46892890e-01 5.25546491e-01 4.04729247e-02 -8.02604318e-01\\n4.84955102e-01 3.28606844e-01 4.90329508e-03 -3.45496327e-01\\n6.34484172e-01 -2.96592027e-01 3.57473753e-02 1.14029065e-01\\n-3.74130130e-01 -1.55934751e-01 1.93257228e-01 -2.80833155e-01\\n-2.54598439e-01 5.66658378e-01 1.71225250e-01 1.22440688e-01\\n2.46449471e-01 -1.12304188e-01 -1.61031783e-01 3.93293388e-02\\n-1.09233826e-01 -1.59679577e-01 -5.42315364e-01 2.20103208e-02\\n-5.44199310e-02 -5.21671116e-01 -1.64359301e-01 -4.73229885e-01\\n-2.22590208e-01 -3.99813920e-01 -1.23955354e-01 1.52796328e-01\\n2.41797999e-01 1.89214319e-01 7.03435449e-04 6.00679442e-02\\n-2.03024209e-01 -6.13151848e-01 9.76223405e-03 1.94850072e-01\\n3.26987088e-01 1.81718230e-01 1.09383836e-01 -6.29059151e-02\\n-2.81207077e-02 6.03085160e-01 -3.78800511e-01 -1.43379867e-01\\n1.59969315e-01 1.44424990e-01 1.08571462e-01 -1.28893808e-01\\n1.00390203e-01 2.20234051e-01 -1.22250162e-01 1.16356000e-01\\n-9.71533358e-03 2.74036508e-02 2.64457822e-01 5.27017713e-02\\n-2.11649492e-01 -2.20533460e-01 -2.12174371e-01 1.36218324e-01\\n-5.66270471e-01 -1.68751776e-01 5.57263374e-01 1.96176916e-01\\n2.31138896e-02 2.06497937e-01 2.60912329e-01 1.40063316e-02\\n-1.86564744e-01 -2.50271380e-01 3.06731373e-01 1.39617130e-01\\n4.91467072e-03 8.59659389e-02 -1.58902809e-01 -5.63892365e-01\\n-3.36324835e+00 -1.95348442e-01 -2.57976372e-02 -3.31049293e-01\\n2.67073482e-01 -1.52796730e-01 2.15132862e-01 1.49351754e-03\\n-3.03503662e-01 -3.72367315e-02 -2.49930769e-01 -1.72204837e-01\\n1.95170596e-01 1.84270158e-01 2.22979248e-01 1.99243888e-01\\n9.71098244e-02 -3.84600371e-01 3.56917419e-02 4.55390334e-01\\n-2.75605559e-01 -6.55007243e-01 1.02833264e-01 -9.52682719e-02\\n2.18457982e-01 3.87460850e-02 -5.06822050e-01 4.01939675e-02\\n-3.26002091e-01 -3.26755911e-01 1.74597755e-01 -2.80557960e-01\\n-1.15135446e-01 3.00766826e-01 2.10835248e-01 -9.21319202e-02\\n2.01859493e-02 -3.09540629e-01 -6.25620186e-02 -5.02174973e-01\\n1.39221653e-01 -7.48782754e-01 -2.29106117e-02 -8.43984261e-02\\n6.82296038e-01 -2.06351340e-01 1.58082068e-01 6.03727959e-02\\n1.60576686e-01 2.37639233e-01 1.68077677e-01 -9.73077640e-02\\n-2.21897140e-01 -2.23018304e-01 -8.54433775e-02 -1.05844475e-01\\n4.97144729e-01 4.77709442e-01 -3.72599483e-01 -1.25010937e-01\\n1.26520265e-03 -3.95392537e-01 -5.39183795e-01 -3.55889976e-01\\n-1.82988077e-01 -1.65971920e-01 -5.98074198e-01 -4.89699215e-01\\n-1.69689685e-01 -5.22753857e-02 -9.69398320e-02 6.29267812e-01\\n-4.56043243e-01 -3.27973336e-01 -1.36905029e-01 -4.16652203e-01\\n3.64232719e-01 -1.40386030e-01 4.82365191e-02 -1.64482132e-01\\n-3.03558350e-01 -3.77842963e-01 1.53750509e-01 -1.40761002e-03\\n-1.05671883e-01 3.29723628e-03 1.91893131e-01 -1.58676445e-01\\n-4.67132956e-01 -4.86495197e-01 3.63789976e-01 1.12330779e-01\\n3.19108844e-01 9.38904658e-02 2.04925835e-01 -1.67214990e-01\\n3.45781952e-01 -1.01561062e-01 3.10841277e-02 -4.23262358e-01\\n1.04609415e-01 5.74371479e-02 6.00706935e-01 -3.17351311e-01\\n5.98249547e-02 8.66804086e-03 -3.55762303e-01 -1.69922203e-01\\n4.05487090e-01 -1.71734676e-01 1.45549789e-01 -2.55932659e-01\\n4.65459824e-01 -2.32990474e-01 -2.58921206e-01 8.84296596e-02\\n3.44560556e-02 5.93665957e-01 4.33094725e-02 -3.81689578e-01\\n-1.36192173e-01 3.46844792e-01 -2.33442813e-01 -1.14016002e-02\\n-2.97092140e-01 -2.78521120e-03 -2.86134452e-01 3.25320870e-01\\n1.79793350e-02 1.36247342e-02 -3.05606812e-01 -1.16075486e-01\\n-2.22237781e-01 2.78074563e-01 2.48078033e-01 1.04994647e-01\\n3.92782018e-02 -2.90544689e-01 -2.21576579e-02 1.78106561e-01\\n1.97863743e-01 3.11772466e-01 2.50887990e-01 -1.97766602e-01\\n3.65854464e-02 2.61411071e-01 -1.85083926e-01 2.09362686e-01\\n-3.16109180e-01 1.83555037e-01 -4.71541733e-01 -3.05407405e-01\\n-2.74768382e-01 -3.01650256e-01 4.81360294e-02 3.17884713e-01\\n1.84605837e-01 -1.26579300e-01 1.13542378e-01 -3.97090137e-01\\n1.75426275e-01 6.47886097e-02 3.09046596e-01 1.10835157e-01\\n1.54837798e-02 6.90805435e-01 7.56438961e-03 -1.86061949e-01\\n-8.64344686e-02 -2.18231790e-02 -3.02438736e-01 -2.13097379e-01\\n-3.77570726e-02 -4.37880397e-01 -1.36320382e-01 5.21356404e-01\\n2.12662950e-01 -1.17049828e-01 -2.23888665e-01 4.21675026e-01\\n-1.04807533e-01 -2.89238513e-01 -2.33994931e-01 1.70107074e-02\\n2.38820776e-01 1.21531785e-01 3.27122211e-01 -5.72849154e-01\\n4.25495170e-02 -3.70287299e-02 -6.70568123e-02 4.55349743e-01\\n-8.82798284e-02 4.26646434e-02 -8.30525458e-02 -2.02754885e-01\\n4.62697774e-01 -1.05037587e-02 -3.79085578e-02 1.50842577e-01\\n1.53091252e-01 -1.48680389e-01 -3.60697865e-01 2.47949865e-02\\n5.42031927e-03 -1.69533595e-01 -3.07298042e-02 2.30486184e-01\\n-3.22773159e-02 -1.26512581e-02 -5.36381721e-01 -2.77305484e-01\\n-3.79520148e-01 1.10953912e-01 4.94207703e-02 -5.74059784e-01\\n-2.40406562e-02 -5.92880771e-02 -5.31799555e-01 3.52786601e-01\\n3.99696194e-02 3.55030992e-03 2.20114842e-01 -5.40738627e-02\\n-2.07238182e-01 2.74938289e-02 1.40771806e-01 1.77916586e-01\\n-3.20066273e-01 -1.24813147e-01 -4.21409756e-02 -1.00083768e+00\\n6.17662743e-02 -5.81398010e-02 -2.27742255e-01 -7.84645230e-02\\n-5.70750758e-02 -6.73011124e-01 1.56866506e-01 -3.75677913e-01\\n-1.35025844e-01 -3.26495692e-02 -1.94318771e-01 -4.80438232e-01\\n7.32820779e-02 7.08678141e-02 -2.59072930e-01 3.58302265e-01\\n-3.15421879e-01 5.69595933e-01 -3.25746797e-02 1.39233574e-01\\n1.49428308e-01 -2.99422473e-01 2.61943817e-01 -3.16289306e-01\\n-3.12164992e-01 -7.06595257e-02 -3.26704234e-01 -3.03210281e-02\\n1.59444753e-02 -3.72253507e-01 -8.93174708e-02 2.51654629e-02\\n4.20899272e-01 1.17759682e-01 -7.91604891e-02 -1.15705572e-01\\n-7.60770589e-02 -5.72640002e-01 8.90200585e-02 -1.83142200e-01\\n-7.09273070e-02 -2.49870092e-01 1.62189975e-01 6.42067418e-02\\n1.62905350e-01 -4.44488853e-01 5.38042307e-01 -3.75340700e-01\\n-3.86815488e-01 -3.85302603e-02 9.07124206e-02 2.24585772e-01\\n3.77011776e-01 -3.36327940e-01 -1.70112059e-01 3.32089007e-01\\n1.02199934e-01 4.30839807e-02 4.24716175e-01 -1.08520336e-01\\n-2.66716599e-01 3.30352992e-01 -4.68949050e-01 1.53835192e-01\\n7.49873340e-01 2.36410528e-01 9.15419385e-02 1.41658217e-01\\n1.12863034e-01 2.10397005e-01 6.14363253e-01 1.43037084e-02\\n-2.13048026e-01 4.15264815e-01 1.66876927e-01 -5.53050637e-01\\n-6.26244396e-02 -3.43547277e-02 -8.16872567e-02 -2.88008571e-01\\n6.48481727e-01 3.29474777e-01 -4.74155843e-01 -3.31726372e-01\\n-2.24546596e-01 -1.11521989e-01 2.33570635e-02 -9.96116549e-02\\n2.03585684e-01 -7.48839453e-02 5.69579542e-01 -1.32354528e-01\\n2.23881453e-01 3.81198406e-01 -1.33831441e-01 -1.99641168e-01\\n-3.89527483e-03 2.74768919e-01 9.25894603e-02 3.73406380e-01\\n-1.43348351e-01 3.85353506e-01 -4.41071466e-02 2.42703632e-01\\n-2.15426698e-01 -9.45277512e-02 8.71850848e-02 5.71766421e-02\\n2.82602292e-02 2.87284255e-01 3.53981495e-01 3.94976556e-01\\n5.18484414e-01 3.16292405e-01 3.31387311e-01 -1.36872130e-02\\n6.21182144e-01 5.48778236e-01 3.16485077e-01 1.66908786e-01\\n2.95532458e-02 3.21119875e-02 4.21687774e-02 1.20075606e-01\\n2.93636560e-01 3.91016692e-01 -1.28857955e-01 8.20029259e-01\\n2.07150191e-01 1.95323646e-01 6.16483450e-01 -4.59836185e-01\\n-3.04637015e-01 2.23926548e-02 4.22337085e-01 -4.24316525e-01\\n-2.73490436e-02 1.27998784e-01 -1.71738088e-01 1.52612880e-01\\n-5.36341071e-01 -1.95624113e-01 -4.59611453e-02 1.60018072e-01\\n8.32308456e-02 -1.97743505e-01 -6.88581169e-02 8.20619091e-02\\n-1.60508141e-01 -1.51786119e-01 -4.34448063e-01 -1.48529962e-01\\n-3.15490246e-01 -1.94764793e-01 -9.56727378e-03 -3.66451107e-02\\n-5.82360886e-02 -3.47061098e-01 -1.68079302e-01 9.04041901e-02\\n3.78298700e-01 -2.75742620e-01 -2.15663522e-01 -5.59319109e-02\\n3.26137811e-01 1.48957595e-01 6.44164503e-01 -2.01805308e-02\\n7.21882433e-02 -2.97726005e-01 -7.25260302e-02 8.84919241e-02\\n3.17623973e-01 1.69884153e-02 -3.61636654e-02 4.03722882e-01\\n-3.20163220e-01 -2.03439623e-01 1.62111670e-01 2.62114495e-01\\n-5.25738239e-01 4.39740345e-02 5.77369109e-02 1.19100720e-01\\n3.81210968e-02 1.54335558e-01 -2.63213992e-01 -4.05454896e-02\\n-2.64186382e-01 -4.75535959e-01 2.03858420e-01 -3.36489640e-02\\n-3.60339195e-01 -1.20649017e-01 3.70815158e-01 2.83264041e-01\\n-1.06371954e-01 -5.33371754e-02 -4.30159755e-02 1.47116631e-01\\n7.66743273e-02 3.16765666e-01 -2.20451593e-01 -1.99113846e-01\\n-5.02811968e-01 3.22249591e-01 -1.61620945e-01 2.70153135e-01\\n1.02248322e-02 2.73758203e-01 1.17077924e-01 8.08801129e-02\\n3.63581091e-01 -1.06259495e-01 -1.75246626e-01 -3.59386027e-01\\n-2.13463098e-01 -2.83043563e-01 2.65992060e-02 -1.48835197e-01\\n1.77828223e-01 -4.12614316e-01 -5.42294122e-02 -1.44876689e-01\\n-3.00119191e-01 -3.97373110e-01 -7.46742338e-02 -3.69519033e-02]]',\n", + " 'job_description': \"LocationBaselContract typetemporary contract For our pharma client in the Basel area we are looking for a Business Analyst for clinical data- 100% Background : Development Excellence improves efficiency and effectiveness of drug development by leading cross-functional non-molecule projects. In this case the team is supporting an acceleration project in the regulatory space. You should be able to analyze data to establish options to optimize the flow of data and documents through the process. Tasks & Responsibilities: Responsible to support global project Execute process analysis as assigned by lead of process stream Reports to lead of process stream, works with process team and SME's Responsible for documenting and maintaining current and future state process documentation Work on several distinct initiatives at the same time Must Haves: 5 to 7 years of Business Analysis experience of Product Development / Clinical Data with a strong understanding of data controls and cleaning principles Experience in Data Flow Mapping Experience in BPMN 2.0 Experience and understanding of Structured Authoring Experience in Process Mapping Experience in software development and software specification design Data mining and data visualization experience Experience in Documentum Ability to work independently and deliver according agreed timelines Regulatory/Filing knowledge Analytic and able to understand complex structure Good communication skills Team spirit Fluent English Nice to Have: Lean Six Sigma certification Experience and understanding of Structured Authoring Start date : 01/11/2019 End date : 31/12/2019 Location: Basel Are you interested to work in this challenging position? Eda Kraja, Talent Acquisition Consultant, is looking forward to receiving your complete profile. Please send an e-mail to eda.kraja@coopers.ch By sending us your CV per E-Mail you are giving us your consent to the processing of your personal data according to our Data Privacy Policy.\",\n", + " 'soft_skills': '[\"Communications\", \"Timelines\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Nice (Unix Utility)\", \"Business Process Mapping\", \"Analytics\", \"Global Project Management\", \"Electronic Design Automation (EDA) Software\", \"Talent Acquisition\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Executable\", \"Process Analysis\", \"Data Visualization\", \"Lean Six Sigma\", \"Stream Processing\", \"Regulatory Filings\", \"Cross-Functional Coordination\", \"Document Processing\", \"Personalization\", \"Business Analysis\", \"Data Privacy Laws\", \"Java Data Mining\", \"Clinical Data Warehouse\", \"Receivables\", \"Software Development\", \"Language Experience Approach\", \"Process State\", \"Mapping\", \"Data Control\", \"Drug Development\", \"Data-Flow Analysis\", \"Agile Product Development\", \"Team Processes\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '37',\n", + " 'job_title': 'data engineer ef education first - associate level',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Education Training Services',\n", + " 'website': 'www.ef.com',\n", + " 'jobdescription_embedded': '[[-7.13831335e-02 2.68712938e-01 5.48830986e-01 -4.31743711e-02\\n5.21940768e-01 -1.67066246e-01 4.45478074e-02 5.89715421e-01\\n-5.27753942e-02 -4.89541143e-01 -9.27176699e-02 -3.03665847e-01\\n-1.92509759e-02 1.33665353e-01 1.40386775e-01 3.85331780e-01\\n2.08407477e-01 1.43563733e-01 -2.08950177e-01 2.60225773e-01\\n1.23485737e-01 -1.18826583e-01 1.69246092e-01 7.96625495e-01\\n4.88331318e-01 -2.07768544e-03 -1.98247842e-02 -9.05586109e-02\\n-2.09431201e-01 -3.23135942e-01 4.59163219e-01 -5.85045330e-02\\n-1.80026218e-01 -3.68967324e-01 5.66360988e-02 -5.88107714e-03\\n-2.51680404e-01 -9.98953283e-02 -6.86669946e-02 1.97209686e-01\\n-4.87213641e-01 -2.98452914e-01 -1.55093381e-02 -4.09873612e-02\\n-3.11148912e-01 -3.80632073e-01 9.77071673e-02 3.67947854e-02\\n1.84638500e-01 1.02800563e-01 -4.32717264e-01 2.44622692e-01\\n-2.51461744e-01 -1.58534482e-01 2.56993383e-01 7.07744896e-01\\n-1.68754887e-02 -4.19182718e-01 -5.87125063e-01 -3.31701249e-01\\n1.58648759e-01 -9.95023400e-02 -1.40892677e-02 -2.77910113e-01\\n3.49790931e-01 2.48045269e-02 1.47327662e-01 2.40685910e-01\\n-6.85154259e-01 -6.83094636e-02 -2.23256782e-01 -2.86017153e-02\\n-2.40029916e-01 -1.45453392e-02 -3.41388822e-01 -9.27574709e-02\\n-1.55565903e-01 4.14132088e-01 4.27225754e-02 -1.30996769e-02\\n-1.47944003e-01 3.20776701e-01 -1.99172065e-01 4.37319696e-01\\n1.98036090e-01 2.80869067e-01 9.07239243e-02 2.61881948e-01\\n-3.86323720e-01 4.56956893e-01 1.30886525e-01 -3.28037798e-01\\n1.64370582e-01 6.92902282e-02 5.18994212e-01 -1.09715328e-01\\n1.11935712e-01 3.95040065e-02 -3.07159930e-01 3.28623056e-01\\n2.26784378e-01 -3.02808225e-01 1.18445635e-01 -9.15177464e-02\\n2.75544617e-02 -7.83294290e-02 1.22149296e-01 1.21135697e-01\\n-2.17962772e-01 3.96692365e-01 -5.71839046e-03 -2.28258803e-01\\n-9.52792987e-02 -5.46339333e-01 -7.99353141e-03 -1.18300999e-02\\n2.09644027e-02 7.82603323e-02 1.58882409e-01 1.96947828e-01\\n2.20907047e-01 -5.27852289e-02 1.53433830e-01 8.20567429e-01\\n-1.15729064e-01 2.87624858e-02 -3.65544707e-01 2.48024285e-01\\n5.38649522e-02 -3.51763725e-01 2.77504981e-01 1.74894050e-01\\n-4.04908918e-02 -1.52767166e-01 -1.86067089e-01 3.18166584e-01\\n-2.15057414e-02 -2.33161837e-01 -2.62625843e-01 2.13937521e-01\\n-5.19695990e-02 -3.47727090e-01 5.54340601e-01 8.26471671e-02\\n1.51873425e-01 -1.00771308e-01 -3.40677500e-02 -1.40321150e-01\\n-8.19023922e-02 3.80302742e-02 1.07732274e-01 -2.86382250e-02\\n-2.45429799e-01 -3.03641230e-01 -2.05550775e-01 6.61794320e-02\\n-2.77993590e-01 1.72421023e-01 -4.15852219e-02 -1.41670808e-01\\n2.59412378e-01 8.86371173e-03 -2.85456747e-01 2.97867745e-01\\n-1.53674692e-01 9.79248341e-03 -6.38451986e-03 3.80456299e-01\\n-2.63276577e-01 2.31363058e-01 -4.08444963e-02 -8.53994563e-02\\n5.64438283e-01 1.03420779e-01 1.14589408e-01 -1.02162883e-01\\n2.54717022e-01 4.62259129e-02 1.11438185e-01 1.44903317e-01\\n-7.10092902e-01 3.07486624e-01 -2.21159942e-02 -5.99461719e-02\\n1.79916009e-01 -1.00868776e-01 3.21888000e-01 -2.41313711e-01\\n6.19043072e-04 -9.98877361e-02 -2.78433561e-01 -2.65704662e-01\\n-1.21995308e-01 -8.79946649e-02 3.59849155e-01 -4.31571662e-01\\n-1.37589857e-01 2.01866716e-01 -4.76746887e-01 7.00860023e-02\\n9.44742784e-02 2.12313682e-01 1.78495303e-01 1.87152803e-01\\n-2.44722024e-01 -3.98013532e-01 1.10801257e-01 -3.03785920e-01\\n-2.17823133e-01 9.22078341e-02 -3.22812676e-01 1.95749447e-01\\n1.14573129e-01 1.41997576e-01 -1.64266780e-01 3.15525122e-02\\n-2.70967871e-01 -8.69031698e-02 1.52310625e-01 -9.12559219e-03\\n2.91625023e-01 6.99107125e-02 -3.57145488e-01 3.76401752e-01\\n-1.16416179e-01 5.27362704e-01 1.80935428e-01 -7.55879104e-01\\n4.55930114e-01 3.08919579e-01 -6.27308413e-02 -4.45452124e-01\\n5.85036278e-01 -2.09046766e-01 -4.08806838e-02 1.03890002e-01\\n-2.90055960e-01 -3.54207128e-01 2.21493304e-01 -1.06751956e-01\\n-2.14926898e-01 4.60274845e-01 4.31803800e-03 7.88214132e-02\\n1.87831357e-01 -1.56073689e-01 -9.34108868e-02 -9.47151519e-03\\n-2.05107816e-02 -1.56666800e-01 -4.77372229e-01 1.83835011e-02\\n-9.34585929e-02 -3.68961811e-01 -2.17227861e-01 -4.25705403e-01\\n-1.97244704e-01 -2.84532070e-01 -4.77311648e-02 1.88150033e-01\\n2.63245136e-01 -4.09824625e-02 9.84308198e-02 1.53723387e-02\\n-1.95845023e-01 -5.91944933e-01 -9.34703127e-02 7.79384524e-02\\n4.63563561e-01 2.23107547e-01 2.14337096e-01 -1.28215423e-03\\n1.50879368e-01 6.77174270e-01 -1.56564161e-01 -2.34799057e-01\\n1.40170127e-01 1.75392359e-01 9.98444855e-02 -1.30685970e-01\\n1.65973976e-01 2.75251418e-01 -2.91769654e-01 5.26739806e-02\\n-4.72565144e-02 -6.11450784e-02 3.45654070e-01 2.33171228e-02\\n-3.07081580e-01 -2.62908190e-01 5.55850156e-02 1.56849995e-02\\n-5.11130691e-01 -1.82921022e-01 5.78301668e-01 1.52453646e-01\\n1.23635463e-01 2.81612352e-02 8.34764242e-02 -1.02098500e-02\\n-5.94204180e-02 -1.54227093e-01 1.86254531e-01 5.52650541e-02\\n6.28160164e-02 1.71710938e-01 -5.18863536e-02 -6.17394626e-01\\n-3.13916326e+00 -1.27605498e-01 8.70268866e-02 -2.23092660e-01\\n2.21001789e-01 -1.28477111e-01 1.82656631e-01 -1.75802112e-02\\n-2.80088276e-01 2.08897870e-02 -1.42730489e-01 -9.79821905e-02\\n1.80087700e-01 1.76493883e-01 1.38014361e-01 3.01599711e-01\\n1.61845759e-01 -3.31117779e-01 -7.37131760e-02 4.71889198e-01\\n-1.47669032e-01 -6.29151940e-01 2.49845803e-01 4.69561033e-02\\n3.49155635e-01 1.54819503e-01 -4.21009243e-01 -1.89997628e-01\\n-2.28841797e-01 -1.95354596e-01 5.11328615e-02 -3.05028796e-01\\n-1.82475403e-01 2.09260032e-01 2.46516287e-01 -2.50196785e-01\\n2.25126401e-01 -4.45908338e-01 -7.02921376e-02 -5.01263738e-01\\n1.05987601e-01 -7.02100515e-01 3.90252061e-02 -9.39371586e-02\\n6.86094284e-01 -2.95523703e-01 9.63675976e-02 7.06995800e-02\\n9.67510790e-02 1.19490810e-01 9.00948569e-02 9.35866684e-02\\n-2.14881793e-01 -3.20908785e-01 -1.07006580e-01 -2.07213044e-01\\n5.64140558e-01 5.15030384e-01 -1.38298288e-01 -9.24741998e-02\\n1.29300535e-01 -2.90203065e-01 -4.80586827e-01 -3.05213213e-01\\n-1.26189753e-01 -9.50096622e-02 -7.49234438e-01 -4.99551147e-01\\n-1.14083238e-01 -1.59414485e-01 -8.46208036e-02 4.93285179e-01\\n-2.55941391e-01 -3.19047481e-01 -9.36704427e-02 -5.97325861e-01\\n3.25245112e-01 -1.13075592e-01 3.44722234e-02 -2.65649736e-01\\n-1.76887959e-01 -4.79935408e-01 1.09366938e-01 5.54132573e-02\\n-1.69700179e-02 -3.43682349e-01 8.82017165e-02 -1.47823736e-01\\n-2.26915210e-01 -6.03165329e-01 4.53798473e-01 1.25047445e-01\\n3.33470970e-01 2.02171013e-01 2.92658865e-01 -3.75372134e-02\\n3.05391252e-01 -2.64529828e-02 6.26453757e-02 -4.04180646e-01\\n9.04138684e-02 1.32592171e-02 4.54954416e-01 -1.53502911e-01\\n-1.97766829e-04 7.95999691e-02 -1.52082741e-01 -1.28754675e-01\\n3.31119746e-01 -9.92281269e-03 7.64469057e-02 -1.14746928e-01\\n2.44977131e-01 -3.09446484e-01 -2.09425151e-01 -6.05222536e-03\\n1.37601197e-01 5.31468451e-01 -3.53007801e-02 -4.13755596e-01\\n-1.79686502e-01 4.08746779e-01 -4.63801250e-02 1.18333444e-01\\n-2.23730862e-01 1.13763496e-01 -2.52912372e-01 2.69637018e-01\\n-2.78718509e-02 -2.26117522e-01 -3.15797627e-01 -1.83173761e-01\\n4.28928882e-02 3.45161378e-01 2.05633178e-01 2.18997508e-01\\n3.32254916e-02 -3.93077731e-01 -6.87589571e-02 2.38591313e-01\\n1.96190283e-01 5.15604436e-01 7.86670074e-02 -1.64035812e-01\\n1.31621305e-02 3.70633841e-01 -2.18468681e-01 2.90395141e-01\\n-2.37421796e-01 1.10710837e-01 -5.13327539e-01 -2.85359085e-01\\n-3.10449094e-01 -3.18995565e-01 1.70534283e-01 3.50027710e-01\\n1.12887070e-01 -6.62314966e-02 1.07193813e-02 -4.18144643e-01\\n2.86941379e-01 5.77094639e-03 1.50794238e-01 2.21258223e-01\\n9.35514048e-02 6.36898577e-01 1.54077202e-01 -2.36396238e-01\\n-1.74863771e-01 1.07087895e-01 -1.36547104e-01 -1.22860111e-02\\n4.81486917e-02 -4.78642851e-01 -1.21583499e-01 4.45488632e-01\\n1.36594296e-01 -1.82137117e-01 -9.58000943e-02 2.59965807e-01\\n-1.27143105e-02 -2.29163289e-01 -1.79696277e-01 6.18980527e-02\\n2.41429090e-01 1.33856624e-01 2.80803919e-01 -4.75254416e-01\\n6.59961207e-03 -7.48020336e-02 -4.07617204e-02 4.58080322e-01\\n2.26680059e-02 1.42067913e-02 -1.06166795e-01 -1.05436996e-01\\n3.73385161e-01 -1.11556262e-01 -8.60560238e-02 5.09797595e-02\\n1.02307603e-01 -2.50768691e-01 -4.23362404e-01 1.13883607e-01\\n-7.35991597e-02 -1.86456949e-01 -6.44132271e-02 1.71926588e-01\\n9.11646113e-02 1.05796441e-01 -5.75231612e-01 -2.11849734e-01\\n-2.14949906e-01 2.62124408e-02 -1.00850143e-01 -4.60794330e-01\\n-3.16246599e-02 -6.07812107e-02 -4.97432351e-01 1.97956875e-01\\n-2.18977720e-01 -4.28529158e-02 2.62351066e-01 2.73256488e-02\\n-3.28045189e-01 -5.87259717e-02 9.93866622e-02 2.53748715e-01\\n-2.47936323e-01 -2.53832012e-01 -7.88784549e-02 -9.66813445e-01\\n8.95514935e-02 4.75212336e-02 -1.68126404e-01 1.61822438e-01\\n-1.59288064e-01 -6.35768652e-01 1.31555945e-01 -3.65607709e-01\\n-2.67166346e-01 -8.22343901e-02 -1.74507141e-01 -4.73198175e-01\\n8.38323683e-02 4.99980301e-02 -2.54873902e-01 3.38549376e-01\\n-2.65259117e-01 2.65541703e-01 -1.41262308e-01 5.54067679e-02\\n2.20962912e-02 -2.62250602e-01 1.55997574e-01 -4.51870441e-01\\n-3.10551822e-01 -1.39656037e-01 -3.19957227e-01 -2.54593998e-01\\n-2.19257604e-02 -2.59118289e-01 -2.23030761e-01 9.88457352e-02\\n2.91177660e-01 8.41098651e-02 -1.15374498e-01 -1.59809843e-01\\n7.46977702e-02 -5.33654332e-01 9.09858048e-02 -1.14166833e-01\\n-5.65610602e-02 -1.65707082e-01 3.12940776e-01 1.77297257e-02\\n1.32765800e-01 -3.61309022e-01 4.66877818e-01 -3.46883267e-01\\n-3.54196429e-01 -6.42637461e-02 6.16060235e-02 -3.88318039e-02\\n3.34254920e-01 -4.38408792e-01 2.62832157e-02 3.56866837e-01\\n1.40200034e-01 1.70936808e-01 2.07970858e-01 -1.75544649e-01\\n-1.86026648e-01 3.39122087e-01 -4.99673784e-01 -1.20304562e-02\\n7.47456789e-01 7.01971054e-02 1.82522744e-01 2.13648006e-01\\n1.30306005e-01 1.94348395e-01 3.93598169e-01 6.85305074e-02\\n-2.08614364e-01 2.77723223e-01 3.75845358e-02 -5.12498677e-01\\n-2.73742285e-02 1.55909555e-02 -2.28356943e-01 -4.58390236e-01\\n6.10684872e-01 4.33689624e-01 -4.65060145e-01 -2.18137279e-01\\n-1.83053926e-01 -2.01842666e-01 1.09394066e-01 -7.99208134e-02\\n9.16358083e-02 -8.99005979e-02 3.86361003e-01 -6.32352754e-02\\n2.21016839e-01 5.28857827e-01 -1.28057778e-01 -2.32101157e-01\\n-5.34384921e-02 1.00591600e-01 -1.40818572e-02 4.34716314e-01\\n-2.29571342e-01 3.48156273e-01 5.59089631e-02 1.51447460e-01\\n-1.54795915e-01 7.38499910e-02 8.48646760e-02 6.97239907e-03\\n8.16447437e-02 1.73018903e-01 4.22664136e-01 3.75741690e-01\\n3.35442483e-01 3.80889952e-01 2.90468633e-01 4.76717688e-02\\n4.38380539e-01 4.09026742e-01 4.32644635e-01 1.39618129e-01\\n3.43482234e-02 9.28358361e-03 1.60197884e-01 6.86306506e-02\\n3.12051982e-01 2.57358909e-01 6.90622255e-02 9.46969986e-01\\n2.44098276e-01 2.37869844e-01 7.52016842e-01 -5.97580492e-01\\n-3.42552543e-01 -1.16324173e-02 4.27714765e-01 -6.05044127e-01\\n-5.65975942e-02 1.65098578e-01 -2.56243080e-01 1.50134608e-01\\n-4.60014254e-01 -3.49378169e-01 -6.31586090e-02 1.92720383e-01\\n-7.96000957e-02 -1.39946938e-01 -2.41793036e-01 1.49368078e-01\\n-6.48017228e-02 -9.06797424e-02 -5.36240458e-01 -1.89643174e-01\\n-9.18619037e-02 -1.68333188e-01 -1.63700432e-01 -1.73725769e-01\\n-2.14935139e-01 -2.39658326e-01 -9.19167418e-03 -3.50553468e-02\\n2.57400453e-01 -1.26432702e-01 7.88807347e-02 -2.17238739e-01\\n3.28027993e-01 2.07587048e-01 5.00584126e-01 -7.60600623e-03\\n1.81865185e-01 -2.44340435e-01 -2.25482523e-01 7.38184080e-02\\n2.28666022e-01 6.88113412e-03 8.66552591e-02 2.78624058e-01\\n-2.00570881e-01 -1.67664587e-01 1.27727315e-01 3.53889376e-01\\n-3.94326687e-01 4.02186811e-02 -2.54571959e-02 2.19157308e-01\\n6.57689795e-02 1.21368185e-01 -1.87020943e-01 1.50549933e-01\\n-2.47281700e-01 -3.92455041e-01 1.66152492e-01 -7.51631558e-02\\n-1.01014964e-01 5.29704690e-02 2.45454937e-01 1.69752434e-01\\n-3.15871954e-01 1.14148818e-01 -6.88738227e-02 1.78047195e-01\\n2.15988066e-02 2.87830561e-01 -2.20087335e-01 -1.90772191e-01\\n-2.95863628e-01 2.28187561e-01 -1.68326214e-01 6.93639368e-02\\n6.39170222e-03 4.02594477e-01 2.28410633e-03 -2.81913187e-02\\n5.03594518e-01 -1.87721044e-01 -2.00153977e-01 -2.87870377e-01\\n-2.18039900e-01 -1.29720658e-01 -7.76425600e-02 -1.31955951e-01\\n2.09464073e-01 -4.49019969e-01 -6.10463805e-02 -1.79197833e-01\\n-1.27301276e-01 -4.15583700e-01 8.53738487e-02 -1.39782622e-01]]',\n", + " 'job_description': 'EF Travel, the flights division of EF Tours, is currently looking for a Data Engineer to join our BI team in Zurich, Switzerland. We are an autonomous and dynamic BI team working on a multitude of technical solutions for EF’s flights department. We provide vital functions in the areas of technical development, business intelligence and innovation and everything we do has a direct impact on our business. We enjoy a fantastic work environment right on the doorstep to the Swiss Alps. As a Data Engineer your main focus will be to provide all the back-end development and architecture for supporting our operational and executive deliveries. We expect you to be forward thinker, innovative and ready for a position where you will get to make an impact from day one. The role Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Requirements Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English About EF Since 1965, we have helped millions of people transform their lives by opening the world through education. Today we are the world’s largest private education company - offering every imaginable way to learn a language, travel abroad, experience another culture, or earn an academic degree. We offer competitive salaries and a multicultural working environment. The position is situated in Zurich, Switzerland and you will be working with people from all over the world. What’s it like to work here? https://vimeo.com/111638911 and https://www.youtube.com/watch?v=fGlnMgNtivw',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Imagination\", \"Problem Solving\", \"Operations\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Computer Science\", \"Analytics\", \"Data Engineering\", \"Data Warehousing\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"AWS Directory Service\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Business Intelligence\", \"Cloud Services\", \"Dimensional Modeling\", \"Library For WWW In Perl\", \"SQL Server Integration Services (SSIS)\", \"Big Data\", \"End Systems\", \"Adapter Scripting Language\", \"Front End (Software Engineering)\", \"Technical Solution Design\", \"Back End (Software Engineering)\", \"Vimeo\", \"Business Development\"]',\n", + " 'languages': \"['English', 'Estonian', 'Quechua', 'Thai', 'Kyrgyz']\"},\n", + " {'company_id': '78',\n", + " 'job_title': 'data science support (m/f/d) 80%',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.10731536e-01 3.69907647e-01 5.37105322e-01 -8.32841396e-02\\n4.53694373e-01 -1.47729725e-01 8.38730298e-03 3.66918534e-01\\n-1.57625392e-01 -3.26307744e-01 -1.58176333e-01 -2.35379845e-01\\n-2.38481447e-01 2.98396703e-02 2.55294055e-01 4.43618059e-01\\n3.02331537e-01 1.41056091e-01 -2.33044013e-01 3.40792924e-01\\n1.05844527e-01 -4.63881083e-02 4.21047024e-02 5.62856317e-01\\n3.92587990e-01 -4.81727114e-03 -4.79921885e-02 2.79685240e-02\\n-3.64072233e-01 -2.69238085e-01 3.66391331e-01 3.59552540e-02\\n-1.34150833e-01 -2.66587615e-01 1.03522204e-01 6.95136935e-02\\n-2.00103402e-01 7.58919716e-02 -5.40180467e-02 1.23594776e-01\\n-5.28827906e-01 -2.32451200e-01 2.22892419e-01 6.08282946e-02\\n-3.06051791e-01 -3.61976653e-01 2.70672292e-01 -1.21745132e-01\\n1.05021968e-01 3.80751602e-02 -5.13953090e-01 3.23753357e-01\\n-3.42199296e-01 -2.47083098e-01 3.48262936e-01 6.11278951e-01\\n9.53011885e-02 -6.74879730e-01 -4.09028232e-01 -3.56984079e-01\\n1.20385014e-01 -7.89638385e-02 4.85966466e-02 -2.45383576e-01\\n3.89639914e-01 1.41319744e-02 -4.61677052e-02 2.58769363e-01\\n-7.97479451e-01 -1.70608252e-01 -2.26641998e-01 -4.86740191e-03\\n-3.62574607e-01 1.64110716e-02 -2.51666874e-01 -5.32444119e-02\\n-2.19522864e-02 4.17514384e-01 -9.81100276e-02 1.05325781e-01\\n-8.26765671e-02 3.55940074e-01 -4.79766764e-02 2.58681506e-01\\n3.57513756e-01 1.48636431e-01 2.21547097e-01 4.55340981e-01\\n-3.70224148e-01 3.42689931e-01 2.75950491e-01 -2.66333252e-01\\n1.65974915e-01 8.30710828e-02 5.42722106e-01 2.02049866e-01\\n-1.75791152e-04 1.33832678e-01 -2.63876855e-01 2.21400827e-01\\n1.66453093e-01 -2.34147057e-01 -3.30838151e-02 -6.34793565e-02\\n-1.27191529e-01 -2.67711636e-02 3.20337676e-02 3.54278088e-01\\n-2.83879459e-01 4.84825373e-01 2.16134235e-01 -2.29279399e-01\\n9.40535497e-03 -5.89384675e-01 -2.06433266e-01 1.01783410e-01\\n-2.25730333e-03 2.10527003e-01 2.31992200e-01 1.74135640e-01\\n3.19889098e-01 -3.15156579e-02 2.13990450e-01 8.40982378e-01\\n4.22333144e-02 9.80159268e-02 -1.79195553e-01 3.17088604e-01\\n1.96465924e-01 -2.52695858e-01 9.05093029e-02 2.92772293e-01\\n1.11302800e-01 -3.07344832e-02 -2.13593394e-01 3.53802264e-01\\n-1.20423749e-01 -2.31578842e-01 -3.34817171e-01 1.01689406e-01\\n-1.87317386e-01 -4.29675370e-01 4.25123721e-01 4.16812375e-02\\n1.92523807e-01 3.16351168e-02 -2.10788380e-02 -3.32988910e-02\\n-1.02190524e-01 2.74721473e-01 2.06413623e-02 1.67150736e-01\\n-2.31359556e-01 -1.98495328e-01 -3.33338976e-01 1.55785426e-01\\n-1.54996380e-01 4.85239401e-02 -1.82880208e-01 -1.52975649e-01\\n4.09928620e-01 1.43778712e-01 -4.56775039e-01 2.95035273e-01\\n-8.29395130e-02 -5.84062114e-02 -1.31028056e-01 3.09784204e-01\\n1.79350760e-03 1.59098104e-01 -3.69025879e-02 -9.39987674e-02\\n6.04301214e-01 1.63868502e-01 9.18486267e-02 -5.02227321e-02\\n4.48493987e-01 -1.02813385e-01 2.58800775e-01 7.20917583e-02\\n-7.56281018e-01 2.76264727e-01 -1.70021988e-02 1.36750611e-02\\n5.17535061e-02 -9.41074193e-02 3.79714787e-01 -4.48161483e-01\\n-3.15036043e-04 -1.80644721e-01 -4.23877507e-01 -3.36619824e-01\\n-3.10977668e-01 -6.40199557e-02 4.66459930e-01 -3.72265697e-01\\n-1.44634172e-01 1.32286146e-01 -5.18678129e-01 -1.01235799e-01\\n3.18453759e-01 2.02263758e-01 1.35310516e-01 1.27309144e-01\\n-8.50867406e-02 -6.43747032e-01 8.50918069e-02 -5.18019795e-01\\n-4.41043556e-01 1.74783766e-01 -3.35100293e-01 2.37536967e-01\\n1.96872242e-02 -2.43050847e-02 -1.49733007e-01 3.46708335e-02\\n-3.01479399e-01 -5.76477572e-02 5.21038249e-02 1.37543768e-01\\n2.39318788e-01 -5.09910621e-02 -4.48510081e-01 4.46121961e-01\\n-3.15744102e-01 5.17616034e-01 1.74525827e-01 -9.39459682e-01\\n6.35799408e-01 2.25852892e-01 6.60003871e-02 -3.09500933e-01\\n5.45736969e-01 -3.38004231e-01 -6.53736964e-02 1.70085728e-01\\n-3.41892570e-01 -3.98401648e-01 2.42864385e-01 -1.54370323e-01\\n-3.47090453e-01 5.43048084e-01 1.28654554e-01 -5.45445383e-02\\n2.30093777e-01 -1.89999372e-01 -1.07986249e-01 1.61216408e-01\\n-4.12692949e-02 -1.26108602e-01 -4.68378842e-01 -2.25561322e-03\\n1.77530814e-02 -5.04604638e-01 -2.01132506e-01 -3.45662057e-01\\n-2.27212965e-01 -4.87672180e-01 -3.04211050e-01 3.64536822e-01\\n1.14621542e-01 9.87400115e-02 3.52037661e-02 1.10753790e-01\\n-7.49558136e-02 -6.44169867e-01 5.61154410e-02 6.19635079e-03\\n3.60969901e-01 2.74347961e-01 9.77665707e-02 -8.57716873e-02\\n-7.96219483e-02 6.21131063e-01 -2.42698669e-01 -2.47656479e-01\\n7.22179785e-02 8.03811327e-02 -4.18683030e-02 -1.60559595e-01\\n1.29437938e-01 3.19870889e-01 -1.90356866e-01 1.25097275e-01\\n-1.40182316e-01 -6.52400702e-02 3.25557083e-01 -9.52481106e-02\\n-3.21648359e-01 -2.26222768e-01 -7.16273189e-02 2.45786533e-01\\n-6.41996443e-01 -2.53398776e-01 5.57601035e-01 2.06552386e-01\\n1.78267136e-01 1.85761213e-01 3.36458981e-01 -1.68710142e-01\\n-1.93185434e-01 -2.64896035e-01 2.64908403e-01 2.03485817e-01\\n9.00784805e-02 1.47578567e-01 -1.86626181e-01 -7.16610551e-01\\n-3.04160571e+00 -1.91848218e-01 2.20283180e-01 -2.43747458e-01\\n2.49602973e-01 -4.69423123e-02 9.96891558e-02 -8.37535411e-02\\n-2.02624813e-01 1.85490195e-02 -2.27678329e-01 -1.28193051e-01\\n8.46198350e-02 3.12644690e-01 2.30448581e-02 1.09214991e-01\\n2.21879795e-01 -2.41276398e-01 -4.87298183e-02 2.50997812e-01\\n-5.79752848e-02 -6.78818941e-01 1.47857651e-01 -9.10229981e-02\\n2.70248204e-01 2.87184983e-01 -3.47423702e-01 -1.15189284e-01\\n-1.77563325e-01 -2.33028993e-01 -5.27828047e-03 -2.18604803e-01\\n-1.26371324e-01 2.43191153e-01 8.17344487e-02 2.07444187e-02\\n1.09996334e-01 -2.64710516e-01 -3.94320190e-02 -4.73364085e-01\\n1.90876693e-01 -7.61241436e-01 -6.93584606e-03 -3.00038189e-01\\n5.65630257e-01 -3.78603607e-01 7.37286657e-02 8.87229964e-02\\n2.03951299e-01 1.90445587e-01 -1.29225114e-02 -2.91848276e-02\\n-3.36547554e-01 -1.90935165e-01 -2.47057453e-02 -1.74102336e-01\\n5.69267035e-01 5.52759528e-01 -2.82387435e-01 -1.20747909e-02\\n2.30162367e-01 -4.22629595e-01 -4.79909986e-01 -3.93579215e-01\\n-1.81753576e-01 -2.34211892e-01 -6.72134399e-01 -4.21625942e-01\\n-1.07680894e-01 -2.36486625e-02 -1.30403176e-01 6.27168238e-01\\n-2.63569385e-01 -4.22517121e-01 7.73259476e-02 -5.42714596e-01\\n6.60096705e-02 -1.60290018e-01 3.80783305e-02 -2.83471107e-01\\n-2.12179765e-01 -5.04125297e-01 1.34427428e-01 2.13479735e-02\\n-2.59686083e-01 -7.66295642e-02 6.57235384e-02 -1.64675400e-01\\n-3.07906032e-01 -4.45219874e-01 4.71308798e-01 9.29133445e-02\\n4.22378957e-01 1.41857862e-01 2.24425539e-01 5.19355014e-02\\n3.46008539e-01 -1.35627702e-01 1.39423057e-01 -4.64231133e-01\\n-2.32318249e-02 3.39566283e-02 6.78254366e-01 -1.66035190e-01\\n3.68114002e-02 1.84258372e-01 -2.93843061e-01 -1.76310286e-01\\n4.49197143e-01 5.42719327e-02 7.52034485e-02 -2.74298429e-01\\n4.07258928e-01 -3.58387351e-01 -2.90008128e-01 1.65129423e-01\\n7.86686316e-02 8.04310918e-01 2.43452508e-02 -4.00982440e-01\\n-3.22587609e-01 5.00058353e-01 -1.70635581e-01 -1.00941248e-01\\n-2.18243495e-01 9.68409479e-02 -7.13226050e-02 2.53408551e-01\\n1.28468573e-01 -1.32461771e-01 -2.81297266e-01 -9.55562368e-02\\n-5.88952862e-02 1.64605901e-01 2.40022659e-01 1.17620990e-01\\n5.44424057e-02 -2.58559525e-01 3.75962071e-02 9.65941772e-02\\n2.03767017e-01 3.00640851e-01 4.79891486e-02 -2.63623118e-01\\n-1.25996962e-01 3.49057406e-01 -1.26180321e-01 2.85049856e-01\\n-1.07221283e-01 7.77212754e-02 -4.42887455e-01 -2.15981871e-01\\n-2.64151275e-01 -3.44455302e-01 -1.42485797e-02 3.19568813e-01\\n2.03205854e-01 -2.58313771e-03 8.56234401e-04 -4.99171108e-01\\n3.69079143e-01 6.00580201e-02 2.40228683e-01 1.47707209e-01\\n3.11386529e-02 4.57619697e-01 1.67504977e-02 -4.82043885e-02\\n-1.56614050e-01 6.45890087e-02 -2.26106972e-01 -1.42165214e-01\\n1.26978621e-01 -3.98276120e-01 -1.34162083e-01 4.79718417e-01\\n7.48340338e-02 -2.24436224e-01 -2.46876180e-01 2.53256112e-01\\n1.12354472e-01 -4.18088794e-01 -1.43996909e-01 -1.16118439e-01\\n1.80104852e-01 -7.71564245e-03 3.22382241e-01 -4.10689503e-01\\n4.73950878e-02 -7.78159574e-02 -8.01018625e-02 5.06661594e-01\\n1.40267909e-01 -6.53904155e-02 -1.13426521e-01 -1.00845240e-01\\n4.14705426e-01 -3.11442595e-02 -5.09249195e-02 -6.01374470e-02\\n1.09685875e-01 -1.55536339e-01 -4.71183330e-01 -3.14764641e-02\\n-1.79735139e-01 -1.81970939e-01 2.47871261e-02 -5.92177212e-02\\n1.61049157e-01 7.15048537e-02 -3.25409830e-01 -2.41035104e-01\\n-3.53654683e-01 -9.79515016e-02 -2.78428663e-02 -4.18056190e-01\\n-7.17561617e-02 7.88506269e-02 -6.23365343e-01 1.66162580e-01\\n-3.72024417e-01 9.72304679e-03 1.27361983e-01 1.06142581e-01\\n-4.63612705e-01 -7.47699961e-02 6.00101687e-02 8.39792117e-02\\n-4.04772997e-01 -2.63746500e-01 6.20788112e-02 -8.82543206e-01\\n1.13375835e-01 8.09631404e-03 -1.17724486e-01 9.11231562e-02\\n-6.74665049e-02 -7.57364333e-01 1.87944233e-01 -3.06501180e-01\\n-9.60846618e-02 6.81713745e-02 -2.36296549e-01 -4.31807041e-01\\n1.54325068e-01 -1.51437119e-01 -3.24556172e-01 3.25155675e-01\\n-4.66710329e-01 2.93473542e-01 5.08545376e-02 1.39016703e-01\\n-1.82869360e-02 -2.73568720e-01 9.91006494e-02 -2.60581940e-01\\n-5.66838145e-01 -8.38299394e-02 -3.70923787e-01 -2.70012081e-01\\n6.23657443e-02 -2.22421110e-01 -1.69736937e-01 5.42394072e-02\\n3.77027720e-01 7.91343823e-02 -1.16932280e-01 -6.00278601e-02\\n7.70480111e-02 -3.59642178e-01 -7.37779513e-02 -7.50138685e-02\\n4.24185693e-02 -6.26866072e-02 1.67623848e-01 -6.76227510e-02\\n2.14640558e-01 -3.22585434e-01 5.53006947e-01 -3.04440349e-01\\n-3.90158355e-01 7.15670437e-02 1.36208147e-01 2.66614128e-02\\n2.43216410e-01 -5.51566362e-01 6.44580880e-03 3.18377525e-01\\n-2.62574442e-02 2.46096812e-02 2.21603945e-01 5.41184656e-02\\n-1.66352704e-01 1.80906594e-01 -4.50848997e-01 2.89608892e-02\\n9.16644335e-01 2.13164806e-01 1.00765549e-01 2.21899688e-01\\n-4.68453253e-03 3.57225716e-01 6.30633533e-01 -8.35323483e-02\\n-8.77875835e-02 3.00511867e-01 3.09560765e-02 -6.27168596e-01\\n-1.20123118e-01 1.93521176e-02 -2.52246201e-01 -3.12236071e-01\\n7.15249062e-01 4.20263350e-01 -3.16046119e-01 -2.66715616e-01\\n-9.70485583e-02 -2.16722295e-01 1.43152848e-01 -9.62061286e-02\\n1.53920442e-01 -1.70903847e-01 5.34658790e-01 -5.13083562e-02\\n2.63260216e-01 5.43530464e-01 -2.89680779e-01 -3.15014750e-01\\n-1.32023379e-01 8.76243263e-02 2.58956775e-02 3.52872372e-01\\n-1.76191330e-01 9.32432115e-02 3.79043557e-02 3.62920798e-02\\n-1.45068914e-01 1.68738782e-01 7.30930492e-02 9.16383043e-02\\n3.00069243e-01 1.36907056e-01 2.40522832e-01 4.28248256e-01\\n2.56061375e-01 4.94731307e-01 2.87909806e-01 8.41541961e-02\\n4.59914416e-01 5.29126585e-01 3.98894638e-01 1.50522739e-01\\n-9.35459882e-03 9.87020284e-02 9.05465558e-02 4.84659933e-02\\n4.86199409e-01 2.45884418e-01 2.55503476e-01 8.98801684e-01\\n2.40435839e-01 3.93020213e-01 7.24668622e-01 -5.91465414e-01\\n-3.86379510e-01 8.73027816e-02 4.67809558e-01 -3.04379612e-01\\n-8.79099444e-02 8.69089887e-02 -1.27297148e-01 2.40333095e-01\\n-5.35327196e-01 -1.26873240e-01 -6.66621979e-03 -4.57532220e-02\\n4.01203558e-02 -5.37147373e-02 -2.37362385e-01 -9.71688554e-02\\n-2.82674223e-01 -1.28103331e-01 -3.33885342e-01 -1.44143492e-01\\n-2.04035088e-01 -1.15397640e-01 -2.27123648e-02 -2.15493590e-01\\n-9.80089605e-02 -4.24606293e-01 -1.93304464e-01 -6.99681602e-03\\n2.54074991e-01 -1.17220215e-01 -1.17312118e-01 -1.75538078e-01\\n1.40722409e-01 2.83962280e-01 6.06930852e-01 -4.92974222e-02\\n1.58067986e-01 -1.79238141e-01 -2.44933218e-01 1.17063165e-01\\n1.09505802e-01 -2.61869393e-02 1.52552158e-01 5.52039444e-01\\n-2.80846357e-01 -1.25043973e-01 8.24225470e-02 4.18685585e-01\\n-4.79618251e-01 -5.28519116e-02 -9.48673114e-02 2.07414091e-01\\n2.17076708e-02 1.94035232e-01 -2.88582593e-01 1.38456881e-01\\n-2.30339989e-01 -6.26011491e-01 3.91725063e-01 -4.80942726e-02\\n-1.98783219e-01 9.38457623e-02 3.44199896e-01 2.01732203e-01\\n-2.10025847e-01 -7.50362799e-02 -1.70447174e-02 3.25209022e-01\\n9.07730833e-02 4.24107790e-01 -2.89709508e-01 -1.78466812e-01\\n-2.09643975e-01 2.59959042e-01 -1.39734179e-01 3.53505984e-02\\n-1.43826276e-01 4.34967756e-01 2.37054244e-01 4.38335016e-02\\n3.85028005e-01 -3.62493470e-02 -1.86462611e-01 -1.50911972e-01\\n-2.36064956e-01 -3.10038149e-01 4.92999479e-02 -4.00034413e-02\\n1.33595288e-01 -3.83559704e-01 -8.59049633e-02 -1.85931802e-01\\n-9.34243575e-02 -4.32149053e-01 -1.32399768e-01 1.03199765e-01]]',\n", + " 'job_description': 'For our client, an international pharmaceutical company, we are in search for a Programmer (Data Science Support). What the company offers you: You will support scientists by building and deploying modeling and simulation user-friendly applications through digital tools An international environment Large and diverse infrastructure Competitive salary Contract till 31.07.2020 with a possibility of extension Your responsibilities: Using programming expertise to develop tailor-made software solutions based on various programming languages (e.g. JavaScript, C#, php, python etc.) Supporting and being responsible for defined system administration activities on an allocated/defined system or environment Supporting operational requirements of defined areas of the business e.g. troubleshooting and migration to new versions Writing all required documentation (e.g. user guides, etc.) Tracking, troubleshooting and resolving systems related issues Applying and writing appropriate testing procedures and scripts Your profile: Being proficient in one or more programming language / environment, including HTML, CSS, JavaScript, .NET (C#), SQL, Python, vba macros (MS Office) Being familiar with Frameworks/applications: Svelte, React, Git (gitbucket), VS code Strong interpersonal communication skills and ability to manage in a dynamic, ever-changing working environment Fluent English (oral and written) Welcome to nemensis! We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Writing\", \"Infrastructure\", \"Friendliness\", \"Interpersonal Communications\", \"Management\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"Tooling\", \"KM Programming Language\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Integrated Language Environments\", \"Activism\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Tracking (Commercial Airline Flight)\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Web Application Frameworks\", \"React.js\", \"Data Science\", \"Project-Based Solutions\", \"C# (Programming Language)\", \"Digitization\", \"JavaScript (Programming Language)\", \"User Guide\", \"Simulations\", \"Pharmaceuticals\", \"Macros\", \"Svelte (Software)\", \"System Administration\", \"Scripting\", \"Git Flow\", \"SQL (Programming Language)\", \"E-Business\"]',\n", + " 'languages': \"['English', 'Bislama', 'Punjabi']\"},\n", + " {'company_id': '118',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.swisscom.ch',\n", + " 'jobdescription_embedded': '[[-2.37515822e-01 3.27821583e-01 4.20995831e-01 -5.08009791e-02\\n3.81632239e-01 -2.43010327e-01 1.08985091e-02 3.85306656e-01\\n4.62909192e-02 -2.13611737e-01 -6.37277514e-02 -2.93727368e-01\\n-2.90873051e-01 1.49489000e-01 1.54372424e-01 4.23432171e-01\\n2.22828403e-01 9.23545882e-02 -2.44008526e-01 4.17492867e-01\\n6.86373413e-02 7.27814510e-02 -1.34627029e-01 6.21603370e-01\\n4.03350651e-01 -5.32095619e-02 -1.65685907e-01 -1.05307475e-01\\n-3.72956097e-01 -1.61685959e-01 4.54196304e-01 1.26438990e-01\\n-2.08362356e-01 -4.05997336e-01 5.26735373e-02 1.15206756e-01\\n-1.37977004e-01 -5.89941218e-02 -6.01788200e-02 1.78162575e-01\\n-5.23175359e-01 -3.62893403e-01 5.38302846e-02 1.49870679e-01\\n-1.85276926e-01 -2.17958227e-01 2.51104772e-01 6.37179315e-02\\n-5.45897186e-02 3.93017828e-02 -6.58880770e-01 2.48588890e-01\\n-1.46918803e-01 -2.66802430e-01 2.58605987e-01 5.46580195e-01\\n1.00834295e-01 -4.95901167e-01 -4.50792015e-01 -4.47990000e-01\\n9.66743007e-02 -7.44877607e-02 2.49192845e-02 -3.64111900e-01\\n2.97390580e-01 1.79963920e-03 2.74405652e-03 3.82426083e-01\\n-7.95863688e-01 -1.82803214e-01 -1.18297070e-01 -4.55285832e-02\\n-3.95875394e-01 6.00838959e-02 -2.22109929e-01 -6.15972094e-02\\n-7.32400045e-02 3.25842917e-01 -4.43595536e-02 8.52121636e-02\\n-1.82827339e-01 4.30580705e-01 -6.82247505e-02 3.11964750e-01\\n3.28048706e-01 1.45572141e-01 6.88224211e-02 3.51250947e-01\\n-3.97454917e-01 3.68488133e-01 5.81115559e-02 -2.21373856e-01\\n3.01258802e-01 1.55241787e-01 5.46696544e-01 4.97956723e-02\\n1.59619376e-01 1.90129012e-01 -2.52596438e-01 2.39958867e-01\\n2.17011750e-01 -3.80977780e-01 1.69381872e-01 -7.13851899e-02\\n-1.01593412e-01 -1.46940099e-02 7.03252554e-02 2.09431559e-01\\n-2.26294518e-01 3.89722824e-01 3.08652908e-01 -1.37512237e-01\\n-8.48512277e-02 -5.51381230e-01 -4.79210503e-02 -3.53688933e-03\\n1.14034355e-01 1.02352053e-01 2.18395367e-01 9.08071622e-02\\n2.34005958e-01 5.63564673e-02 1.49540439e-01 7.42017686e-01\\n-1.13778375e-01 1.56902015e-01 -1.26103252e-01 3.56538028e-01\\n2.28007525e-01 -3.20565253e-01 2.98876971e-01 2.50431150e-01\\n2.16553420e-01 -1.06242828e-01 -3.46848845e-01 4.08227354e-01\\n-1.77643582e-01 -1.72903165e-01 -3.70090693e-01 1.04895666e-01\\n-1.09037980e-01 -4.84822035e-01 5.25121629e-01 2.16166899e-01\\n2.57058501e-01 -5.52205816e-02 -3.23333666e-02 -4.57535759e-02\\n-6.25421703e-02 3.69237304e-01 1.90292429e-02 3.24873000e-01\\n-2.93915391e-01 -2.72201121e-01 -1.73601836e-01 2.63056755e-01\\n-3.95872980e-01 1.28986880e-01 6.14040755e-02 -1.66189373e-01\\n3.25342000e-01 5.82416877e-02 -3.56184751e-01 1.54371709e-01\\n-1.18086323e-01 -2.32663214e-01 -3.22058201e-02 3.60680044e-01\\n-2.31387749e-01 3.06946486e-01 -3.56702246e-02 -1.51209891e-01\\n6.02022171e-01 1.46288365e-01 2.05208033e-01 -2.49165483e-02\\n2.82504469e-01 -7.87910372e-02 3.26676905e-01 1.51668772e-01\\n-7.68049181e-01 2.49433547e-01 -2.53462233e-02 -1.66625425e-01\\n1.24892563e-01 5.32665476e-02 3.40551257e-01 -3.29799622e-01\\n2.67900657e-02 -2.14845866e-01 -4.61766034e-01 -3.25357676e-01\\n-4.77361143e-01 5.93500920e-02 3.54495585e-01 -3.46998155e-01\\n-1.10501237e-01 1.25149235e-01 -5.64486682e-01 -1.77245751e-01\\n1.02879219e-01 4.64399420e-02 2.46496964e-02 -2.03646049e-02\\n-9.19718817e-02 -7.03052938e-01 -3.34287062e-02 -4.16015655e-01\\n-4.65385556e-01 7.24769458e-02 -3.27007592e-01 2.22653449e-01\\n-7.72005618e-02 7.73477331e-02 -1.47160992e-01 2.13181123e-01\\n-2.71734953e-01 -2.31534243e-02 1.96659416e-01 5.42957410e-02\\n2.49667451e-01 -1.19377062e-01 -3.94999832e-01 4.26858693e-01\\n-1.44757509e-01 7.27348208e-01 2.79707074e-01 -7.96696544e-01\\n6.29517972e-01 3.10309142e-01 1.01566620e-01 -3.65626991e-01\\n4.98687625e-01 -3.61605316e-01 -1.81186363e-01 1.00357167e-01\\n-3.34465593e-01 -2.76126832e-01 2.87010938e-01 -2.19946787e-01\\n-2.51093447e-01 6.54046118e-01 2.62399912e-01 1.50524853e-02\\n3.76619875e-01 -2.98978597e-01 -6.43304437e-02 4.27519158e-03\\n-1.67029381e-01 -2.43043199e-01 -4.14825588e-01 8.46408084e-02\\n-3.73417735e-02 -4.83296603e-01 -2.03598022e-01 -1.41347036e-01\\n-1.72631428e-01 -3.21708411e-01 -1.94380894e-01 4.81264651e-01\\n2.07750946e-01 7.37131312e-02 1.53929146e-03 5.94995916e-02\\n-9.05224904e-02 -6.47354186e-01 6.45858124e-02 8.31868947e-02\\n4.23580080e-01 2.09187537e-01 7.42333010e-02 -7.47496560e-02\\n8.38232972e-03 5.72409749e-01 -4.14211333e-01 -4.24342632e-01\\n1.05215654e-01 1.45050123e-01 -4.06878479e-02 -1.92919403e-01\\n5.49387373e-02 4.35983390e-01 -3.70846808e-01 3.39646302e-02\\n-9.34038609e-02 -1.08434811e-01 3.09535652e-01 -9.05699059e-02\\n-2.48197347e-01 -2.48376191e-01 -2.17290260e-02 3.10240209e-01\\n-4.62658226e-01 -2.61926025e-01 4.91151154e-01 3.01259309e-01\\n1.83516845e-01 1.24158345e-01 3.01032305e-01 -2.04022944e-01\\n-3.01513761e-01 -3.89198422e-01 1.45998999e-01 2.12264821e-01\\n5.83008043e-02 6.63826466e-02 -2.58908160e-02 -5.81174314e-01\\n-2.79377222e+00 -1.76822752e-01 2.39893243e-01 -1.79324895e-01\\n1.60964921e-01 -7.37733766e-02 -8.86297747e-02 -9.10789073e-02\\n-3.29460412e-01 5.41804694e-02 -9.45919082e-02 -1.69867933e-01\\n2.84727141e-02 3.76368999e-01 1.87100455e-01 1.45676136e-01\\n5.86669594e-02 -2.01920137e-01 -1.15719922e-01 3.79000127e-01\\n-1.45066246e-01 -6.23265803e-01 1.80462509e-01 -1.01669664e-02\\n2.73825705e-01 2.55329818e-01 -2.70087749e-01 -1.12823449e-01\\n-1.24110334e-01 -1.83944881e-01 2.67332792e-02 -2.75999457e-01\\n-1.62102491e-01 3.75868589e-01 7.09924623e-02 3.36317271e-02\\n4.55581136e-02 -3.30238223e-01 -2.08968133e-01 -4.38419372e-01\\n1.75034683e-02 -5.40408731e-01 7.59009738e-04 -3.15894097e-01\\n7.24893153e-01 -3.06543678e-01 1.72562927e-01 6.01168489e-03\\n2.36272767e-01 1.21930875e-01 -4.63882387e-02 7.82464370e-02\\n-2.77718574e-01 -2.71854967e-01 -8.91297683e-02 -2.46021017e-01\\n5.37968040e-01 4.89737034e-01 -1.31939694e-01 -1.55898780e-01\\n2.71017790e-01 -2.53752440e-01 -2.67024010e-01 -4.25180405e-01\\n-8.61372128e-02 -3.14467102e-01 -6.23471200e-01 -3.91440630e-01\\n-7.58717135e-02 -1.15340158e-01 -1.08392075e-01 7.14646280e-01\\n-4.70339477e-01 -2.74625629e-01 5.59775382e-02 -7.52178788e-01\\n1.99839786e-01 -2.26295933e-01 -1.76110007e-02 -1.53353751e-01\\n-2.30650783e-01 -6.04556859e-01 9.50940847e-02 -6.54529557e-02\\n-2.25660041e-01 -2.90835887e-01 -3.78598385e-02 -1.69121906e-01\\n-2.46496156e-01 -5.17673731e-01 4.20730084e-01 1.70003071e-01\\n3.17611516e-01 1.06449224e-01 3.04608434e-01 -2.62698866e-02\\n3.63096088e-01 -1.08289793e-01 1.99334309e-01 -4.14311022e-01\\n1.56713322e-01 1.64450239e-02 5.50319016e-01 -2.73518473e-01\\n6.07944373e-03 2.24829823e-01 -2.80311227e-01 -4.80230041e-02\\n3.68224829e-01 1.29964858e-01 9.04914748e-04 -1.17033064e-01\\n3.79825354e-01 -4.81033444e-01 -1.74813658e-01 2.78963774e-01\\n1.12928025e-01 6.66270137e-01 -4.16088896e-03 -3.80156428e-01\\n-2.58522898e-01 5.22660136e-01 -1.27737686e-01 -1.26743004e-01\\n-1.27574503e-01 1.09952055e-01 -9.60498825e-02 2.11966008e-01\\n1.56671721e-02 -1.46194413e-01 -3.11321765e-01 -1.30641147e-01\\n-1.15131244e-01 2.33409151e-01 2.26387009e-01 2.64064576e-02\\n-6.71111140e-03 -2.49030218e-01 -3.58261280e-02 1.48786977e-01\\n2.84321696e-01 3.64353508e-01 -9.31981485e-03 -1.85774371e-01\\n-1.39272928e-01 3.77890468e-01 -1.24807194e-01 1.92038760e-01\\n-2.53800958e-01 1.01092912e-01 -5.92636585e-01 -2.32990146e-01\\n-1.66735455e-01 -3.03618222e-01 2.75048554e-01 2.28982285e-01\\n1.98361069e-01 2.13006996e-02 2.62222476e-02 -5.75723648e-01\\n3.68358940e-01 1.89023688e-01 1.34584740e-01 1.83677450e-02\\n-6.63080141e-02 4.67741281e-01 -1.80375148e-02 -3.39669804e-03\\n-5.88626303e-02 -3.83439474e-02 -2.53341585e-01 -2.78196245e-01\\n1.78709745e-01 -4.55920666e-01 -2.15738043e-01 4.56094980e-01\\n9.55064893e-02 -3.75245750e-01 -3.85136962e-01 1.82245746e-01\\n1.45845264e-01 -2.03144863e-01 -1.91142753e-01 -8.42086002e-02\\n1.98972821e-01 1.48447111e-01 2.37318754e-01 -3.49746972e-01\\n-1.26460820e-01 9.71029252e-02 -1.03444427e-01 3.95305932e-01\\n1.27991945e-01 4.26144898e-02 -2.62969732e-01 -2.00599611e-01\\n4.25111562e-01 -2.33250529e-01 -7.28306323e-02 -8.29897299e-02\\n2.13285133e-01 -1.71023205e-01 -5.17676353e-01 9.73732620e-02\\n-4.00352068e-02 -2.96395421e-01 8.91325902e-03 3.45707424e-02\\n1.43759847e-01 7.43674710e-02 -4.71034706e-01 -2.44405299e-01\\n-3.25612545e-01 -1.82188481e-01 1.19583771e-01 -2.54178554e-01\\n7.61724263e-02 -5.45064025e-02 -5.56881070e-01 1.68059275e-01\\n-3.64581048e-01 -5.41684628e-02 9.38367397e-02 1.24190144e-01\\n-4.61285770e-01 -4.15245853e-02 6.67510182e-03 2.00377151e-01\\n-4.31792527e-01 -4.43958908e-01 8.09719786e-02 -8.55524063e-01\\n1.03325665e-01 3.59382667e-02 -7.26571530e-02 6.39490560e-02\\n-1.01134986e-01 -7.12303579e-01 8.97002518e-02 -3.97122651e-01\\n-3.24196778e-02 7.16675594e-02 -3.20040494e-01 -2.10587353e-01\\n2.69071251e-01 -2.79395640e-01 -4.04485881e-01 5.09820163e-01\\n-4.73025829e-01 1.71773225e-01 -6.10312866e-03 8.94835293e-02\\n-1.57899957e-03 -1.63599491e-01 1.95006505e-01 -2.98076600e-01\\n-3.65664452e-01 -1.77680150e-01 -3.30997795e-01 -3.13161999e-01\\n3.80180813e-02 -2.77160645e-01 -1.77348703e-01 1.48686409e-01\\n2.88764387e-01 8.10002014e-02 -1.33514047e-01 -1.83961645e-01\\n1.48065075e-01 -4.68307644e-01 7.08416253e-02 -2.05258802e-01\\n1.30885774e-02 -2.43086834e-02 1.23701856e-01 -2.29089577e-02\\n-1.49853984e-02 -3.34903121e-01 3.93113106e-01 -4.23680037e-01\\n-3.51313680e-01 -9.74764600e-02 -1.10818803e-01 -8.45456272e-02\\n1.53341919e-01 -5.26033401e-01 1.63398877e-01 3.85827750e-01\\n3.82424109e-02 -2.38581952e-02 1.66098401e-01 9.68989264e-03\\n-2.27045193e-02 2.93934494e-01 -4.79917675e-01 1.44276954e-02\\n8.33814919e-01 1.47376463e-01 -2.31898371e-02 1.03075989e-01\\n1.86361283e-01 3.57426971e-01 4.47775066e-01 -4.12158528e-03\\n-3.55357602e-02 1.39942989e-01 7.43634403e-02 -4.96736377e-01\\n-2.09169388e-02 1.19745485e-01 -2.15188339e-01 -2.96924233e-01\\n6.87722623e-01 4.06432420e-01 -4.78748739e-01 -3.21693003e-01\\n9.68511850e-02 -5.56703918e-02 3.54306310e-01 -1.20034479e-01\\n-1.03619322e-01 -3.93997543e-02 5.36198735e-01 4.90024686e-02\\n2.36768901e-01 5.70484996e-01 -1.64025739e-01 -4.04676586e-01\\n-1.19671382e-01 1.41104236e-01 1.50366306e-01 5.31778753e-01\\n-1.06964760e-01 2.30960310e-01 -1.11541979e-01 4.17664386e-02\\n-8.83472431e-03 3.30757856e-01 2.79946864e-01 8.27588961e-02\\n2.46844992e-01 -8.60367581e-05 2.91347414e-01 5.09129643e-01\\n1.37710959e-01 4.78811711e-01 2.52485573e-01 4.69638109e-02\\n3.35895717e-01 4.93021965e-01 3.75424564e-01 2.31532335e-01\\n-2.18581203e-02 8.39639977e-02 1.40570134e-01 1.44818556e-02\\n4.42975670e-01 2.82091469e-01 2.05940738e-01 9.34057951e-01\\n3.74598294e-01 2.54715830e-01 7.68483400e-01 -7.22378433e-01\\n-3.87649983e-01 1.01815000e-01 5.09043097e-01 -3.51925492e-01\\n-6.22350983e-02 1.39932066e-01 -1.71189100e-01 2.92440355e-01\\n-5.05330741e-01 -4.36785966e-02 2.84388214e-02 1.93726212e-01\\n-2.58070100e-02 -6.12182952e-02 -2.88419724e-01 1.46615049e-02\\n-2.24268511e-01 -1.33764520e-01 -3.50016326e-01 -3.13072413e-01\\n-2.88937718e-01 -1.69691831e-01 -1.86906710e-01 -7.90367723e-02\\n-9.19008628e-02 -4.79197681e-01 -7.13729784e-02 -5.57798371e-02\\n3.36303979e-01 -1.78764880e-01 3.67732975e-03 -2.20532328e-01\\n2.39723817e-01 3.65229934e-01 5.27588367e-01 -1.35037690e-01\\n2.89134458e-02 -2.00053692e-01 -3.81077647e-01 8.46858397e-02\\n2.52793524e-02 1.48317426e-01 5.40305525e-02 3.50993335e-01\\n-2.08683103e-01 -6.84615001e-02 9.00868326e-02 2.72932619e-01\\n-4.35891002e-01 -1.61528006e-01 -1.41027942e-01 2.18612537e-01\\n1.22167982e-01 1.29202679e-01 -2.94389665e-01 1.97411880e-01\\n-2.54111201e-01 -4.83704835e-01 3.48814577e-01 -1.63745746e-01\\n-9.14216340e-02 3.71205091e-01 3.60128343e-01 2.55130827e-01\\n-2.65109330e-01 -1.42115384e-01 6.94283172e-02 3.87339145e-01\\n-7.96625316e-02 3.53159726e-01 -6.31901994e-02 -2.54419982e-01\\n-2.49674678e-01 3.17460090e-01 -2.13343993e-01 1.25820369e-01\\n-5.59143163e-02 3.91125709e-01 -4.60046995e-03 1.04311660e-01\\n3.37887168e-01 4.59150858e-02 -1.95388675e-01 -3.09314489e-01\\n-1.45938829e-01 -2.63455987e-01 -7.68668875e-02 4.92827967e-02\\n6.87826127e-02 -3.57056469e-01 -1.53861403e-01 -1.70016453e-01\\n-8.15603659e-02 -2.97621459e-01 -2.09456123e-03 6.34652972e-02]]',\n", + " 'job_description': \"You are an expert in gathering knowledge from network engineers, sourcing and processing data, applying anomaly detection models, and making our insights accessible to end users. We are a group of data engineers and data scientists that are passionate about the topics we work on, the methods we apply, and the tools we use. We design and implement end-to-end solutions – all by leveraging domains like distributed systems, data mining, or web development. We create software relying on the Agile approach, and we use state-of-the-art big data technologies such as Kafka, Kafka Streams, or Cassandra. We code mostly in Java, and we are strong supporters of Open Source. Your tasks span from data science (10%) through big data engineering (60%) to DevOps (30%). Thus, you are interacting with data scientists, big data engineers, DevOps as well as product owners and business engineers. Bachelor's degree (ETH/Uni/UAS) with at least 4 years of relevant experience, or Master's degree (ETH/Uni/UAS) with at least 1 year of relevant experience, or PhD in computer science or related field Able to write clean and effective code in Java Solid understanding of data structures and algorithms Experience with Big Data technologies, in particular Kafka, Kafka Streams, and Cassandra is a plus Ability to analyse and visualise data (e.g. with Python, Jupyter) is a plus DevOps know-how: scripting (Unix, Python), Ansible, Prometheus, Grafana, Jenkins is a plus Familiarity with web development technologies such as TypeScript, Angular, HTML, CSS, RESTful APIs is a plus Knowledge in relational databases, relational data modelling, and SQL is a plus Experience with containerization technologies (Docker, Kubernetes) is a plus Very good English, German a plus\",\n", + " 'soft_skills': '[\"Writing\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Agility\", \"Apache Cassandra\", \"Jenkins\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Data Modeling\", \"Data Engineering\", \"TypeScript\", \"Network Engineering\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Open Source Technology\", \"Data Science\", \"Docker (Software)\", \"Big Data\", \"Java Data Mining\", \"Unmanned Aerial Systems (UAS)\", \"Data Structures\", \"Grafana\", \"Angular (Web Framework)\", \"Relational Databases\", \"Ansible\", \"Algorithms\", \"Scripting\", \"Anomaly Detection\", \"Java (Programming Language)\", \"Data Processing\", \"Unix\", \"Prometheus (Software)\", \"Jupyter\", \"SQL (Programming Language)\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Malagasy', 'Faroese']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Banks & Building Societies',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.03804046e-01 3.90768409e-01 4.67769086e-01 -8.77881497e-02\\n4.87570196e-01 -7.82477483e-02 4.64432091e-02 2.35845342e-01\\n-3.25662307e-02 -4.09615815e-01 -2.12051362e-01 -1.85173452e-01\\n-3.37314159e-02 2.85892887e-03 8.85701180e-02 3.81983519e-01\\n4.20859516e-01 5.20653501e-02 -1.77889988e-01 2.62596428e-01\\n-2.63112150e-02 -4.84103486e-02 8.93685222e-02 7.05695868e-01\\n3.66484374e-01 -4.07317001e-03 -3.99812683e-02 1.14762597e-02\\n-1.80528551e-01 -2.61936098e-01 4.66465175e-01 -1.29114725e-02\\n-1.05974756e-01 -2.18961939e-01 1.30097687e-01 1.13381878e-01\\n-2.33863339e-01 6.26446605e-02 -1.02193907e-01 8.27504918e-02\\n-4.65156496e-01 -2.15260744e-01 4.61863503e-02 1.69673450e-02\\n-2.73656785e-01 -3.25701177e-01 1.41076788e-01 -9.91059318e-02\\n8.86920840e-02 3.25927138e-02 -3.59828532e-01 3.10147762e-01\\n-3.49230528e-01 -2.51716435e-01 3.94583434e-01 6.66098475e-01\\n6.72818422e-02 -4.92215574e-01 -5.22410512e-01 -2.89230585e-01\\n1.19727992e-01 -1.04853883e-01 7.54880682e-02 -2.38034174e-01\\n3.79000843e-01 -3.68774086e-02 -4.54715006e-02 3.40090334e-01\\n-8.06410789e-01 -5.71128950e-02 -3.42003316e-01 -3.79882194e-03\\n-3.69161308e-01 -9.07453969e-02 -3.28373104e-01 -2.37304121e-01\\n-3.78980525e-02 3.99585336e-01 -3.97136770e-02 7.42971301e-02\\n-2.37833411e-01 3.79690588e-01 -3.01380932e-01 2.51185834e-01\\n2.31715769e-01 2.17698529e-01 3.94593537e-01 2.69670486e-01\\n-4.36338782e-01 4.71198261e-01 3.81378710e-01 -4.01021689e-01\\n2.99861073e-01 7.16661960e-02 2.94071645e-01 1.21090993e-01\\n4.55599129e-02 2.07176715e-01 -4.13994640e-02 1.90927461e-01\\n1.63995117e-01 -6.48481101e-02 -2.65146792e-01 -8.46652389e-02\\n-6.79937154e-02 -6.19099960e-02 5.88375144e-02 2.03558311e-01\\n-3.80781233e-01 3.19268405e-01 1.02467567e-01 -3.65109324e-01\\n-1.19307436e-01 -4.81050342e-01 -1.25744179e-01 2.14220621e-02\\n-1.81125551e-01 8.63118023e-02 1.42853677e-01 2.58707881e-01\\n2.07280636e-01 5.52942790e-03 1.49121359e-01 8.42240810e-01\\n-7.94274062e-02 -1.53379310e-02 -2.76485652e-01 3.84893417e-01\\n1.92834020e-01 -2.95513868e-01 1.66953534e-01 2.49384388e-01\\n-1.41898528e-01 -5.93110956e-02 -2.90096939e-01 4.11847413e-01\\n-1.56909823e-02 -1.91932783e-01 -3.28270495e-01 1.57402813e-01\\n-1.80526137e-01 -4.60175455e-01 5.44894278e-01 -3.37428227e-02\\n1.36734962e-01 -3.38697694e-02 5.79121411e-02 -4.10552025e-02\\n-2.21429914e-01 2.58652300e-01 7.20810443e-02 1.28949702e-01\\n-3.42869103e-01 -1.81787699e-01 -1.25452325e-01 3.38497758e-01\\n-1.09896198e-01 2.09553558e-02 -3.38218451e-01 -1.56369090e-01\\n3.00506532e-01 1.03319228e-01 -3.89633536e-01 2.20915735e-01\\n7.37515092e-03 -1.26083091e-01 -1.28226817e-01 3.30436647e-01\\n-9.45730135e-02 1.55070588e-01 -1.45876808e-02 -9.98046845e-02\\n5.83147407e-01 1.13250047e-01 2.33511329e-01 -1.48835555e-01\\n2.55569845e-01 -1.52248889e-01 1.66610152e-01 6.39637411e-02\\n-5.83862901e-01 3.85710686e-01 -1.21061869e-01 2.62319148e-02\\n4.04232070e-02 -1.21016111e-02 2.68036485e-01 -3.26909959e-01\\n-3.89732793e-02 -2.43426889e-01 -3.64712715e-01 -4.16114688e-01\\n-2.31771350e-01 5.16521670e-02 3.14480543e-01 -4.93528724e-01\\n-3.38866264e-02 2.29032874e-01 -6.23656154e-01 -1.13938093e-01\\n2.31761351e-01 2.02805042e-01 5.63333184e-02 1.31169736e-01\\n-1.32118374e-01 -5.36988318e-01 1.87922508e-01 -4.68224108e-01\\n-3.71509492e-01 1.66688889e-01 -2.32319504e-01 1.73263445e-01\\n1.28264099e-01 -3.09862308e-02 -8.89402330e-02 8.46490860e-02\\n-3.74169827e-01 -4.25389297e-02 1.57298416e-01 3.41132544e-02\\n2.00495511e-01 9.53207090e-02 -3.70331585e-01 5.56046605e-01\\n-1.88224792e-01 2.79402107e-01 1.86127856e-01 -1.11399782e+00\\n4.68504429e-01 3.13605785e-01 5.44302762e-02 -3.44051838e-01\\n5.39809585e-01 -3.31697047e-01 -6.30915090e-02 1.32269770e-01\\n-3.40196490e-01 -2.20591009e-01 2.78031409e-01 -1.85036287e-01\\n-2.89583206e-01 5.84917307e-01 4.77691926e-02 6.45212829e-02\\n3.20092380e-01 -2.39338607e-01 -1.98462546e-01 1.41741522e-02\\n-2.01178432e-01 -1.00232869e-01 -5.33763230e-01 -5.23728207e-02\\n-5.50117418e-02 -5.54126143e-01 -2.14222640e-01 -6.14199102e-01\\n-2.14566529e-01 -3.56247604e-01 -2.63777196e-01 2.28898674e-01\\n1.29156232e-01 1.51986346e-01 -1.00486219e-01 2.60264780e-02\\n-1.07011676e-01 -6.38307750e-01 -7.32773319e-02 1.18817471e-01\\n3.27738136e-01 3.04416984e-01 3.80399115e-02 -6.35404363e-02\\n-7.20551834e-02 4.86990243e-01 -2.95677304e-01 -2.85945177e-01\\n2.74363995e-01 1.24624133e-01 -5.15035093e-02 -1.30820215e-01\\n7.80715942e-02 3.36906612e-01 -2.40326658e-01 -3.75703238e-02\\n5.10542020e-02 -9.25578270e-03 3.81516725e-01 8.74746591e-03\\n-3.02216709e-01 -1.89894408e-01 -5.15234210e-02 2.64405489e-01\\n-5.87001085e-01 -2.12707072e-01 6.60117388e-01 2.66089380e-01\\n6.90679625e-03 2.57129878e-01 2.88240254e-01 -6.67196661e-02\\n-2.29125023e-01 -1.44214928e-01 2.58206844e-01 1.17328785e-01\\n1.82096273e-01 4.88546379e-02 -1.67807341e-01 -5.59000731e-01\\n-3.50456190e+00 -2.27051646e-01 2.08202973e-01 -3.04246664e-01\\n2.53372312e-01 -1.08278304e-01 1.91876993e-01 -4.90713157e-02\\n-2.64295340e-01 -2.56928876e-02 -1.29935309e-01 -1.25814736e-01\\n1.74039871e-01 2.99989998e-01 1.39695248e-02 2.43258417e-01\\n1.36782706e-01 -1.53154761e-01 2.03970186e-02 3.56555462e-01\\n-4.52529266e-02 -7.84795880e-01 1.62590116e-01 -3.57159898e-02\\n1.62149251e-01 1.74659938e-02 -4.31057900e-01 -6.35004044e-02\\n-2.95321792e-01 -2.20802099e-01 1.23770088e-01 -1.49104103e-01\\n-1.79627061e-01 2.00907424e-01 1.39965430e-01 -1.98137999e-01\\n4.84757535e-02 -2.97858715e-01 -6.63966835e-02 -5.24165630e-01\\n2.49262959e-01 -6.58757210e-01 9.06176046e-02 -4.34906930e-02\\n6.34322166e-01 -2.73911119e-01 1.93695098e-01 1.28422379e-01\\n1.93415821e-01 1.77321672e-01 1.49514958e-01 -3.03439610e-03\\n-3.35032463e-01 -3.42313588e-01 -1.05996579e-02 -1.00922011e-01\\n6.47520006e-01 2.78520614e-01 -2.39458829e-01 5.25724776e-02\\n-2.13818606e-02 -2.53913909e-01 -4.61148381e-01 -2.76440054e-01\\n-1.60496026e-01 -4.53968756e-02 -6.99442148e-01 -4.07145858e-01\\n-1.35753185e-01 -1.81316569e-01 -8.11915696e-02 7.43607044e-01\\n-2.19896764e-01 -3.91651213e-01 -1.13684237e-01 -5.66930830e-01\\n1.81098491e-01 -1.69850588e-01 2.75039431e-02 -2.53439754e-01\\n-2.56627977e-01 -3.89817357e-01 1.37756169e-01 9.64485481e-03\\n-1.76757276e-01 -5.65620176e-02 7.32280761e-02 -1.33123338e-01\\n-3.41263175e-01 -4.70330536e-01 4.47685182e-01 7.75322318e-02\\n3.83713365e-01 7.77238309e-02 3.09280843e-01 -3.14922258e-02\\n2.94075549e-01 -6.97753802e-02 -1.73235089e-02 -4.73299772e-01\\n1.25298530e-01 6.32203296e-02 5.97068727e-01 -2.41783768e-01\\n5.08673787e-02 1.72237828e-01 -1.30143434e-01 -1.05525434e-01\\n4.89634752e-01 3.22905257e-02 7.00303391e-02 -2.34990343e-01\\n2.50719965e-01 -5.09002507e-01 -2.58920729e-01 9.37308669e-02\\n4.22939211e-02 6.29909635e-01 -5.00193983e-02 -4.46703672e-01\\n-1.96332157e-01 4.14849043e-01 -5.90387657e-02 -1.45725369e-01\\n-2.64161825e-01 1.03701666e-01 -3.24410617e-01 2.13341534e-01\\n2.78311111e-02 -1.16578788e-01 -2.89350361e-01 -5.92018887e-02\\n-6.37676120e-02 2.14282051e-01 2.73974359e-01 1.53323740e-01\\n1.56883597e-02 -2.90722519e-01 -1.04385540e-02 8.78996402e-02\\n1.78481176e-01 4.22182024e-01 2.35109508e-01 -3.15822065e-01\\n-2.09998339e-02 2.70354152e-01 -2.64137089e-01 2.48385996e-01\\n-1.10622399e-01 6.13665693e-02 -4.60509717e-01 -2.24325269e-01\\n-1.94375932e-01 -3.43253702e-01 8.35158154e-02 3.38662028e-01\\n9.61739048e-02 -1.31071836e-01 -4.18518633e-02 -4.87964720e-01\\n3.29023242e-01 5.29233217e-02 2.60018945e-01 1.50793836e-01\\n5.82220033e-04 6.98550224e-01 3.17230541e-03 -2.35252410e-01\\n-4.26415615e-02 7.78964832e-02 -1.29145354e-01 -2.12308973e-01\\n2.01781467e-03 -5.06595016e-01 -6.14632294e-02 4.72236097e-01\\n1.43387616e-02 -2.06427887e-01 -1.83539301e-01 2.93051451e-01\\n-9.07769054e-03 -2.36076578e-01 -1.40851036e-01 3.21042836e-02\\n1.79151565e-01 1.20031558e-01 3.02308261e-01 -4.28472728e-01\\n-7.28138238e-02 1.57823786e-03 2.21211221e-02 4.42300737e-01\\n1.62282705e-01 1.87535763e-01 4.70180344e-03 -1.40022159e-01\\n4.52322900e-01 8.20135102e-02 -1.98109269e-01 -4.35945429e-02\\n9.77521837e-02 -2.22388268e-01 -4.59461898e-01 2.02564411e-02\\n-1.06711335e-01 -1.54663831e-01 7.07870796e-02 5.52929752e-03\\n1.57346129e-01 8.51361528e-02 -5.52490473e-01 -2.43216082e-01\\n-3.75035822e-01 3.76921259e-02 -8.24845433e-02 -6.22166872e-01\\n6.61400482e-02 -3.46626900e-03 -6.24173701e-01 2.93617368e-01\\n-9.53998864e-02 4.07506339e-03 1.08901881e-01 1.39287218e-01\\n-2.57879496e-01 -1.73907652e-01 1.76795453e-01 1.44949555e-01\\n-2.68176168e-01 -2.57146358e-01 5.49259484e-02 -9.39684093e-01\\n2.83430904e-01 1.42679606e-02 -1.52050465e-01 9.51161385e-02\\n2.79563963e-02 -7.10500598e-01 2.55846113e-01 -4.01708126e-01\\n-1.25617549e-01 8.61931518e-02 -2.53956288e-01 -4.20040190e-01\\n4.53875512e-02 -5.81300855e-02 -3.03170592e-01 3.82353485e-01\\n-4.74330693e-01 4.81081545e-01 5.73964864e-02 1.20966241e-01\\n1.90057248e-01 -1.97504357e-01 2.67975479e-02 -3.06911439e-01\\n-4.97036368e-01 -2.75405288e-01 -2.02862799e-01 -3.59575391e-01\\n-2.62710303e-02 -2.78152287e-01 -2.02199370e-01 1.38330394e-02\\n3.32245708e-01 1.58109933e-01 -1.46111727e-01 -2.12831154e-01\\n-3.04572470e-03 -3.13678443e-01 1.74370408e-01 -2.02957094e-01\\n4.02330384e-02 -1.44340038e-01 3.06579709e-01 5.06446101e-02\\n1.30468190e-01 -3.69112730e-01 4.75309312e-01 -1.63741708e-01\\n-3.38913560e-01 -1.41455650e-01 8.39800090e-02 7.56729767e-02\\n3.14627945e-01 -5.91121078e-01 6.94257468e-02 3.47659469e-01\\n2.90944055e-02 8.04835185e-02 2.68158376e-01 -1.39273971e-01\\n-1.10903807e-01 1.40584588e-01 -5.01240313e-01 2.18151540e-01\\n6.66464090e-01 7.49852508e-02 1.95262119e-01 1.86863691e-01\\n2.01701790e-01 3.20096374e-01 5.13015330e-01 6.13382570e-02\\n-1.42312437e-01 3.26856196e-01 7.44533837e-02 -5.75528502e-01\\n-1.50138080e-01 -9.12020504e-02 -1.70393273e-01 -3.46687496e-01\\n6.51755333e-01 3.66033256e-01 -3.54396939e-01 -3.06159616e-01\\n-2.12369904e-01 -2.11850137e-01 3.04177284e-01 -6.47637695e-02\\n9.48208123e-02 -1.31843403e-01 5.69609165e-01 -4.61567119e-02\\n3.49865377e-01 5.45184851e-01 -2.07545966e-01 -3.22709620e-01\\n-3.56575176e-02 1.85333088e-01 3.63333151e-02 3.61937046e-01\\n-5.57535924e-02 2.15400964e-01 4.50925007e-02 1.95634782e-01\\n-1.57729372e-01 -1.79023705e-02 1.77537173e-01 5.44928163e-02\\n1.21926248e-01 4.00297269e-02 5.35466194e-01 4.90870714e-01\\n2.53744483e-01 4.85611647e-01 2.95513093e-01 7.86431059e-02\\n4.61681604e-01 7.16442108e-01 3.73337686e-01 4.58531976e-02\\n4.86913733e-02 1.07038990e-01 1.14339441e-01 -2.03900598e-03\\n2.95529544e-01 4.59290028e-01 1.14118382e-01 8.28918219e-01\\n3.50034237e-01 2.63442695e-01 7.43815720e-01 -6.84027612e-01\\n-3.18231404e-01 3.24992016e-02 4.80759114e-01 -3.47550154e-01\\n5.37812598e-02 1.76892847e-01 -3.14115793e-01 2.13397101e-01\\n-4.35995698e-01 -9.89361480e-02 -4.85197008e-02 -7.37838596e-02\\n9.04889777e-02 -1.53131485e-01 -1.23386778e-01 4.04317081e-02\\n-9.11652222e-02 -2.25712687e-01 -3.18940163e-01 -1.54745772e-01\\n-3.53496075e-01 -3.01715732e-03 -7.69090094e-03 -1.21485524e-01\\n-7.78919086e-02 -3.67699444e-01 -1.52253151e-01 -3.00908461e-04\\n2.89667517e-01 -9.51254964e-02 -1.77729085e-01 -1.30902007e-01\\n1.68675929e-01 2.60561228e-01 7.08278000e-01 4.87506390e-02\\n7.11908042e-02 -4.17976305e-02 -2.15041518e-01 7.63209462e-02\\n1.35584325e-01 9.81297344e-02 2.62277992e-03 5.09274065e-01\\n-2.51530170e-01 -8.81310180e-02 9.35409218e-02 3.21951330e-01\\n-3.35471511e-01 5.32840490e-02 -8.02944526e-02 1.86750114e-01\\n5.06229475e-02 1.79993495e-01 -2.25691020e-01 9.54378843e-02\\n-5.42874001e-02 -5.05900621e-01 4.70868051e-01 -1.25084698e-01\\n-1.71430796e-01 4.48656976e-02 1.56392992e-01 3.96338940e-01\\n-2.43341744e-01 -7.82990232e-02 -1.14482857e-01 1.52971774e-01\\n9.15328860e-02 4.52844322e-01 -2.54536510e-01 -1.00404203e-01\\n-2.80676812e-01 1.80780619e-01 -2.11960450e-02 1.34971946e-01\\n-7.15983436e-02 3.56249154e-01 1.07109055e-01 1.15570664e-01\\n2.51057893e-01 -2.60895379e-02 -2.25229293e-01 -2.30285615e-01\\n-2.43377358e-01 -1.18941270e-01 2.58340891e-02 -6.87678605e-02\\n3.26687604e-01 -2.70393074e-01 -1.15278289e-02 -1.90212190e-01\\n-2.16400623e-01 -4.26365733e-01 -1.54515609e-01 -4.96382965e-03]]',\n", + " 'job_description': 'As a Software Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, software design and development activities for the Bank’s existing and new applications. You will be responsible for providing the design, development, configuration and maintenance for changes on existing systems and also for introducing new applications and interfaces with other systems. You will be developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Work with experienced engineers to design and develop new modules and/or applications Undertake the technical ownership of Cembra Money Bank’s Applications Integrate with the existing applications portfolio as well as third parties’ software Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 5+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Knowledge of messaging systems, Java applications servers (WAS, JBoss, Tomcat) and relational databases and also working experience with common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Executable\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"Operating Systems\", \"Java Application Server\", \"Application Portfolio Management\", \"Finance\", \"Personalization\", \"Production Support\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Modulation\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Custom Backend\", \"Apache Tomcat\"]',\n", + " 'languages': \"['English', 'Dutch', 'Nuosu']\"},\n", + " {'company_id': '102',\n", + " 'job_title': 'network/communication engineer voice/data/iot cloud (m/f)',\n", + " 'location': 'Ebikon',\n", + " 'industry': 'Architectural & Engineering Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.27513874e-01 3.24660480e-01 5.21371543e-01 -1.62468553e-02\\n5.91535270e-01 -8.14866796e-02 -1.04570977e-01 3.87994260e-01\\n-1.16121575e-01 -5.39816916e-01 -1.18672751e-01 -3.28160822e-01\\n-6.97539747e-02 1.01617917e-01 1.26957491e-01 4.57225680e-01\\n2.86172837e-01 1.27504524e-02 -1.35993049e-01 4.08540070e-01\\n-4.54294533e-02 -1.76228747e-01 1.54578373e-01 7.69525468e-01\\n3.63228202e-01 2.51078280e-03 -4.80197184e-02 1.84496343e-02\\n-1.91533342e-01 -1.80703580e-01 5.27288854e-01 -2.50414629e-02\\n-1.47910759e-01 -3.24717611e-01 2.09152505e-01 4.26316895e-02\\n-2.58283377e-01 -1.72954500e-01 -1.76298320e-01 1.30219355e-01\\n-3.99071485e-01 -2.62460321e-01 -6.01413660e-02 -7.39195570e-02\\n-2.72856742e-01 -3.06711048e-01 7.47550055e-02 -1.13377146e-01\\n4.55387942e-02 1.15295567e-01 -5.28470993e-01 1.74004734e-01\\n-2.39586130e-01 -1.09819934e-01 3.19648713e-01 5.66717029e-01\\n-5.62827066e-02 -4.40692395e-01 -3.75974089e-01 -3.13365668e-01\\n-2.06132252e-02 -8.53484720e-02 1.03175610e-01 -3.37115735e-01\\n2.81001925e-01 -3.46716642e-02 4.76756543e-02 2.34627813e-01\\n-6.88664317e-01 -8.27201381e-02 -3.45584303e-01 -8.71054232e-02\\n-2.89789796e-01 -8.39989483e-02 -3.84652764e-01 -2.62295246e-01\\n-5.21809980e-02 3.90245616e-01 4.74985726e-02 2.07424566e-01\\n-2.71471918e-01 3.28349024e-01 -1.12410374e-01 3.93511087e-01\\n1.96112767e-01 3.39792639e-01 1.99637756e-01 4.01514471e-01\\n-3.74668598e-01 3.33852857e-01 2.18639955e-01 -3.28995675e-01\\n2.03536034e-01 1.72603622e-01 4.07894641e-01 7.57448673e-02\\n1.82540178e-01 1.10496216e-01 -1.42393813e-01 2.66890228e-01\\n3.89432013e-01 -2.79655129e-01 9.57917944e-02 -1.82758003e-01\\n1.05117656e-01 -1.05627105e-01 -8.98787938e-03 1.63817599e-01\\n-3.51882994e-01 3.52546304e-01 -2.56119128e-02 -2.32492223e-01\\n-4.77882139e-02 -5.11577427e-01 -2.13184189e-02 7.70586357e-02\\n-2.66295951e-02 2.28512749e-01 2.70617664e-01 1.75524026e-01\\n3.16701025e-01 1.38448924e-02 1.38567597e-01 8.73835385e-01\\n-8.03365782e-02 -1.36452690e-01 -2.43228614e-01 3.83873343e-01\\n6.82242289e-02 -2.31580213e-01 2.31080398e-01 1.38615936e-01\\n-1.18714005e-01 -1.91908538e-01 -2.93087095e-01 2.73527801e-01\\n2.46396065e-02 -2.71611810e-01 -2.67762184e-01 2.02132508e-01\\n-1.49194703e-01 -4.27448124e-01 5.93013287e-01 6.80002496e-02\\n1.50144815e-01 -1.08504139e-01 -4.25162865e-03 -9.51935723e-02\\n1.56872924e-02 8.86611417e-02 -1.62230060e-02 7.62731582e-02\\n-2.10765898e-01 -3.16631019e-01 -2.71194398e-01 2.03075022e-01\\n-2.76791751e-01 2.59861439e-01 -1.83953404e-01 -1.04282446e-01\\n3.00375491e-01 -2.95789745e-02 -4.14569199e-01 3.03779364e-01\\n-7.85541385e-02 -7.83197135e-02 -8.97465795e-02 3.64640385e-01\\n-1.95868090e-01 2.46197015e-01 1.62467048e-01 -2.64871508e-01\\n3.55387032e-01 1.52724057e-01 1.74062461e-01 -4.42357399e-02\\n3.13367993e-01 -6.06129877e-02 1.83351804e-02 3.24684530e-02\\n-6.78511500e-01 3.17961156e-01 -5.22133037e-02 -3.18828821e-02\\n1.38803169e-01 -1.43666267e-01 1.87273085e-01 -2.27463573e-01\\n-1.16540954e-01 -1.21680096e-01 -3.45243812e-01 -2.98851967e-01\\n-5.71038648e-02 -1.08912475e-01 3.70764643e-01 -5.06577969e-01\\n-7.10808262e-02 1.60293579e-01 -5.83544075e-01 -7.10899383e-02\\n1.73581809e-01 2.60179132e-01 1.39542431e-01 1.01052463e-01\\n-9.42812413e-02 -3.94584328e-01 -2.64257975e-02 -5.18444777e-01\\n-3.08894545e-01 -2.12829206e-02 -2.49823347e-01 2.36584339e-02\\n1.35457322e-01 -4.77718636e-02 -5.70311248e-02 5.20856008e-02\\n-2.04273731e-01 1.51985139e-01 1.67370066e-01 8.89553502e-02\\n3.35058182e-01 -9.80378245e-04 -3.30758125e-01 5.58796585e-01\\n-1.24561548e-01 4.94186759e-01 1.02958322e-01 -9.04405355e-01\\n5.18464208e-01 3.21163923e-01 -8.30996782e-02 -3.88071090e-01\\n4.15933698e-01 -4.71666008e-01 -6.90504685e-02 1.37438163e-01\\n-3.02692831e-01 -2.84801275e-01 1.93483233e-01 -2.39759028e-01\\n-2.97848880e-01 5.39437056e-01 -6.00135475e-02 2.00159773e-01\\n2.06587210e-01 -2.55644023e-01 -2.30926901e-01 -5.13056219e-02\\n-1.15931593e-01 -2.45423108e-01 -6.83319628e-01 1.40414149e-01\\n-9.91661698e-02 -4.97665823e-01 -1.90721661e-01 -5.92316806e-01\\n-1.04571581e-01 -3.54603946e-01 -8.52397978e-02 1.13461651e-01\\n3.40921432e-01 1.51163712e-01 1.02779241e-02 -5.31652980e-02\\n-1.51786238e-01 -6.22432232e-01 -1.36023447e-01 6.72485754e-02\\n3.29794019e-01 2.25694478e-01 1.99960142e-01 -2.83192564e-02\\n6.62022308e-02 6.17610693e-01 -2.21514359e-01 -4.73511256e-02\\n1.89005136e-01 2.80751556e-01 1.44715898e-03 -1.85540304e-01\\n1.38656750e-01 3.39429736e-01 -2.48522252e-01 6.45111352e-02\\n1.57161858e-02 8.43688250e-02 3.89033794e-01 -7.52486512e-02\\n-3.27784956e-01 -2.93004096e-01 1.93272121e-02 2.15596527e-01\\n-5.52058220e-01 -2.13446513e-01 7.63560474e-01 2.90295899e-01\\n1.09796621e-01 7.96814486e-02 3.53985518e-01 -1.47030652e-02\\n-2.94581562e-01 -1.14138328e-01 2.03341484e-01 9.16361660e-02\\n1.21246092e-01 1.45441592e-02 1.23775639e-01 -5.94759166e-01\\n-3.36037040e+00 -5.03432639e-02 8.96371081e-02 -1.12125799e-01\\n1.31805941e-01 -1.60832077e-01 2.59601861e-01 5.43079190e-02\\n-3.43426049e-01 8.39406028e-02 -1.70776755e-01 -1.19675010e-01\\n1.86225340e-01 1.50555223e-01 1.26509950e-01 1.64279506e-01\\n1.55550033e-01 -2.93290675e-01 7.62005001e-02 2.69882143e-01\\n-1.82754934e-01 -8.28160465e-01 2.55432099e-01 2.18617264e-02\\n2.58824617e-01 1.32115558e-01 -4.64618385e-01 -1.37046531e-01\\n-4.11220402e-01 -1.86510757e-01 3.87926102e-02 -3.48403275e-01\\n-1.63929567e-01 2.07432970e-01 2.42121607e-01 -1.19454347e-01\\n2.34880820e-01 -4.24138844e-01 -1.84982121e-01 -4.73628819e-01\\n1.78783312e-01 -5.58705091e-01 9.87137184e-02 -2.47042961e-02\\n6.57637000e-01 -2.48868823e-01 2.19270527e-01 8.54982361e-02\\n1.41012892e-01 3.32378715e-01 8.49945992e-02 3.65371071e-02\\n-1.86636791e-01 -3.57099622e-01 -3.35906856e-02 -1.86176300e-01\\n5.38908780e-01 4.48816270e-01 -1.46378428e-01 2.30602138e-02\\n-2.84460746e-02 -1.40096515e-01 -4.99003887e-01 -3.64343941e-01\\n-1.06642656e-01 -5.85098676e-02 -8.08445692e-01 -4.06611741e-01\\n-2.37639993e-02 -1.71512902e-01 -9.26528871e-02 7.11760759e-01\\n-1.41420975e-01 -2.51086503e-01 -4.42037918e-02 -4.85016644e-01\\n3.08057994e-01 -9.69668552e-02 1.09091461e-01 -2.27823779e-01\\n-1.85756698e-01 -5.01895189e-01 1.72485262e-01 8.43094662e-02\\n-3.21795493e-02 -9.94629487e-02 1.65858760e-01 -1.74258515e-01\\n-2.37484470e-01 -3.77254754e-01 5.16202152e-01 1.79990917e-01\\n2.43812591e-01 1.59626722e-01 2.84311384e-01 -6.43900931e-02\\n1.89222753e-01 -7.48564769e-03 -2.01029982e-02 -3.92843723e-01\\n9.34003517e-02 4.54701111e-02 3.64105612e-01 -9.93067101e-02\\n2.41816081e-02 1.41539156e-01 -1.27920508e-01 -1.41588643e-01\\n3.14303637e-01 2.04959996e-02 1.01463616e-01 -1.37022913e-01\\n2.00388908e-01 -4.02250797e-01 -1.62613049e-01 -5.02123591e-03\\n-1.75396558e-02 5.82829893e-01 -4.30466384e-02 -3.78703237e-01\\n-5.40718734e-02 4.89849508e-01 1.68551087e-01 -1.23128638e-01\\n-1.69199705e-01 1.25431135e-01 -2.89218873e-01 2.53283322e-01\\n1.08463250e-01 -2.55980730e-01 -2.59510577e-01 -1.30348176e-01\\n-1.77185997e-01 2.83998787e-01 3.08499575e-01 2.28232741e-01\\n-4.70168106e-02 -4.00181919e-01 -1.00700893e-02 2.75412470e-01\\n2.70956278e-01 3.32526505e-01 3.97499576e-02 -2.84159720e-01\\n7.09340125e-02 3.03442270e-01 -2.84474045e-01 3.29544485e-01\\n-2.93078244e-01 1.88381761e-01 -4.62186426e-01 -3.28931719e-01\\n-2.87744015e-01 -1.93596855e-01 1.20026514e-01 3.65172088e-01\\n1.68440819e-01 -9.36336219e-02 1.45505086e-01 -3.17222923e-01\\n4.15858895e-01 1.41671076e-01 1.32314011e-01 1.63809478e-01\\n2.96870470e-02 7.31750727e-01 1.10378951e-01 -2.65857071e-01\\n-1.01532027e-01 -2.54534348e-03 -1.90973505e-01 -2.13842258e-01\\n-5.95245026e-02 -4.00511980e-01 -1.22063912e-01 3.24088871e-01\\n9.06218514e-02 -8.37417468e-02 -1.73615962e-01 2.47586191e-01\\n9.10967216e-02 -2.13465869e-01 -3.10294271e-01 1.51814250e-02\\n4.15357023e-01 -5.50950617e-02 2.83966631e-01 -5.24871349e-01\\n2.17666663e-02 -4.10080180e-02 1.71994910e-01 5.79818428e-01\\n1.73562661e-01 2.96159722e-02 -7.19696935e-03 -2.79803187e-01\\n4.32911456e-01 -2.55871266e-01 -1.02094665e-01 3.30886431e-02\\n1.03257904e-02 -1.89997911e-01 -3.58432740e-01 1.40144855e-01\\n-1.52019769e-01 -1.97788432e-01 5.81325814e-02 1.65497020e-01\\n4.23153527e-02 1.16341701e-02 -6.29566252e-01 -2.31208980e-01\\n-2.81840473e-01 1.58807144e-01 -1.25848547e-01 -5.77765226e-01\\n5.04219010e-02 -4.09946442e-02 -6.99675679e-01 3.37090284e-01\\n-1.23379774e-01 -6.40249997e-02 2.13825032e-01 1.79764628e-02\\n-2.31894255e-01 -8.29418097e-03 1.32375985e-01 2.14657813e-01\\n-2.23746583e-01 -2.12855920e-01 -1.04096577e-01 -9.43876624e-01\\n2.77446121e-01 4.19552214e-02 -9.71219316e-02 1.84454322e-01\\n-2.76348311e-02 -8.35131109e-01 1.08362749e-01 -1.11244164e-01\\n-6.87608719e-02 -5.17777205e-02 -3.96820128e-01 -4.07126427e-01\\n4.31538075e-02 6.34478256e-02 -1.00891516e-01 3.71420860e-01\\n-4.03365135e-01 3.28341335e-01 -1.54476598e-01 9.42487344e-02\\n4.22401652e-02 -3.86239082e-01 2.70123094e-01 -3.93358082e-01\\n-3.36805463e-01 -1.90284446e-01 -2.62699723e-01 -4.13225532e-01\\n-1.07892029e-01 -4.24284846e-01 -8.22053924e-02 6.12269193e-02\\n3.97718936e-01 9.59841460e-02 -2.09994614e-01 -1.72678515e-01\\n-2.18727365e-02 -3.57981503e-01 1.90649360e-01 -8.72199237e-02\\n-7.78945815e-03 -2.56240010e-01 1.78784549e-01 4.79481667e-02\\n2.68488437e-01 -3.50159138e-01 3.80245090e-01 -3.84505093e-01\\n-4.62238640e-01 -2.03633711e-01 7.25907013e-02 1.26037281e-02\\n2.67358452e-01 -3.75358462e-01 -4.78357449e-02 2.06129327e-01\\n2.12642357e-01 4.40218784e-02 2.59728432e-01 -2.50591934e-01\\n-1.69104651e-01 2.98558295e-01 -4.07273382e-01 6.40522540e-02\\n6.86830163e-01 1.40162870e-01 2.25232556e-01 3.39472324e-01\\n6.92997649e-02 2.63427883e-01 5.14701664e-01 -1.13038644e-02\\n-1.24019712e-01 2.69727290e-01 2.08534703e-01 -5.01908123e-01\\n-2.20044628e-01 -1.26682177e-01 -2.04689696e-01 -3.99459124e-01\\n6.51107669e-01 3.08370709e-01 -3.76178175e-01 -1.95170447e-01\\n-1.54901713e-01 -1.75387457e-01 2.55599737e-01 -7.81800598e-02\\n1.49855148e-02 -1.29351422e-01 3.91716242e-01 3.74770090e-02\\n2.90432125e-01 7.00941145e-01 -1.38747275e-01 -2.20108002e-01\\n-2.14061990e-01 2.21550688e-01 4.50823344e-02 4.90299761e-01\\n-1.65550590e-01 3.53758335e-01 1.54228643e-01 2.87240773e-01\\n-2.52003640e-01 1.06205763e-02 -1.84188429e-02 1.03008516e-01\\n7.70246759e-02 1.08019009e-01 2.06982285e-01 4.37477440e-01\\n3.93363625e-01 4.20071065e-01 2.73457319e-01 -3.57226878e-02\\n4.49796319e-01 4.97542888e-01 4.65569288e-01 1.04407206e-01\\n1.52608722e-01 1.29665425e-02 9.86074954e-02 1.93880852e-02\\n1.78321242e-01 3.11838239e-01 5.34165464e-02 9.25270438e-01\\n3.85199904e-01 2.75272101e-01 7.13053644e-01 -6.34602308e-01\\n-3.52738470e-01 -4.91714142e-02 3.63732487e-01 -6.33798301e-01\\n5.06059751e-02 1.00064732e-01 -1.99652500e-02 1.56513333e-01\\n-4.36128885e-01 -2.57992536e-01 8.74973927e-03 1.75881013e-01\\n-1.25169819e-02 -2.39217699e-01 -9.07450914e-02 3.22986729e-02\\n-1.66479722e-01 -6.79788664e-02 -3.74026805e-01 -1.68724880e-01\\n-3.31220359e-01 -4.18441556e-02 -1.04686014e-01 -1.38955116e-01\\n-4.55393977e-02 -2.08739221e-01 -4.07044776e-02 -6.78791702e-02\\n3.25168729e-01 -1.17470562e-01 -1.57082662e-01 -2.19392136e-01\\n2.38439679e-01 1.67944476e-01 6.86512589e-01 7.81027079e-02\\n1.69539824e-01 -1.70379564e-01 -1.61114633e-01 9.97188613e-02\\n1.98233888e-01 5.57702444e-02 -6.09421283e-02 3.05139512e-01\\n-3.62043798e-01 -2.16848016e-01 1.29000157e-01 2.78099209e-01\\n-2.70894587e-01 8.03873688e-03 -2.75711194e-02 1.56064838e-01\\n4.30997908e-02 9.56550092e-02 -2.48001665e-01 -3.71234156e-02\\n-1.40115619e-01 -6.08305335e-01 2.88078219e-01 -1.89320028e-01\\n-8.88819993e-02 -1.33956611e-01 3.73163939e-01 2.17610478e-01\\n-2.34744370e-01 -2.26301420e-03 -9.57401376e-03 1.52759850e-01\\n5.47575653e-02 1.70270965e-01 -3.61910343e-01 -1.46282598e-01\\n-2.80051321e-01 1.41597673e-01 -1.31227165e-01 2.19925512e-02\\n1.55574143e-01 4.58222568e-01 1.37632698e-01 1.57527309e-02\\n2.63416827e-01 -9.63477269e-02 -1.81800380e-01 -1.51688501e-01\\n-2.71295339e-01 -1.65408790e-01 -1.30727530e-01 -2.21904069e-01\\n3.60058963e-01 -2.78569669e-01 -1.38587251e-01 -2.13272557e-01\\n-1.13256447e-01 -3.96746129e-01 -6.48873672e-03 -1.11167207e-01]]',\n", + " 'job_description': 'Our success has been built on leadership through Service, constant innovation and our ability to identify with customers and their needs. We invite you to learn more about our company and to consider what we can offer - not a job, but a career - to people who have the skills and passion to move AHEAD with Schindler. Therefore, we need you as part of our dynamic, collaborativ, innovative team. Join us in our mission to digitize elevators and escalators creating additional benefits for customers like uptime, insights, convenience by developing new digital product offerings. In your role as Network/communication engineer Voice/Data/IoT-Cloud you have ownership for the following subjects: providing robust (wired/wireless) Ethernet based network technology in industrial controller system (ICS) network and IoT environment Implementing and maintaining of highly scalable, converged and secured networks voice/data/multimedia in Schindler products Supporting existing processes in project management and product creation cycles Establishing network monitoring in industrial and IoT communication systems Participating the 2/3 level support Mobility needs you As Network/communication engineer Voice/Data/IoT-Cloud you will be responsible for supporting the teams in developing, implementing, monitoring and maintaining highly scaled communication network systems globally. Therefore, Schindler seeks for a flexible and independently working person that is willing to work in a dynamic and agile environment, dealing with IoT (Internet of Things) and communication technologies). Further expectations include: Fluent in English and German Understand state of the art wired/wireless communication technology principles (IPv4/6) Understand IoT/embedded system design principles in end to end communication aspects Understand leading edge security requirements in ICT in heterogenous environment Know cloud technologies and its automation and management aspects Used to participate global projects in virtual teams This role is an excellent opportunity for joining a successful global ambitious company. You will have the opportunity to grow and develop both personally and professionally in a supportive and inclusive environment, working with a great bunch of people. Package includes an attractive salary, flexible working hours and a modern multi-space office, in the center of Switzerland, close to Lucerne.',\n", + " 'soft_skills': '[\"Leadership\", \"Professionalism\", \"Management\", \"Communications\", \"Virtual Teams\", \"Wireless Communications\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Automation\", \"Wireless Mesh Networks\", \"Agility\", \"Juniper Network Technologies\", \"IPv4\", \"Ethernet\", \"Communications Systems\", \"Global Project Management\", \"Genesis Communications Networks\", \"Industrialization\", \"Maintainability\", \"Controller Development System (CoDeSys)\", \"Levelling\", \"Uptime\", \"Hostile Work Environment\", \"Mobility\", \"Corporate Governance Of ICT\", \"Multimedia\", \"Industrial Control Systems\", \"Embedded Systems\", \"Digitization\", \"Personalization\", \"Network Communications\", \"Scalability\", \"Network Monitoring\", \"Office Space Planning\", \"Network Security\", \"Security Requirements Analysis\", \"Systems Design\", \"Digital Product Management\", \"Data Direct Networks\", \"Project Management\", \"Additives\", \"Product Support\", \"Centering\", \"Internet Of Things (IoT)\", \"New Product Development\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer c++',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-6.15360327e-02 1.70069948e-01 3.69094670e-01 -4.79845591e-02\\n4.70457852e-01 -2.11933196e-01 -7.08187371e-02 2.78565824e-01\\n2.95023248e-02 -3.25105608e-01 4.88465913e-02 -2.35919148e-01\\n-1.46300763e-01 1.73026562e-01 9.29632112e-02 4.72389370e-01\\n3.19536090e-01 1.15963891e-01 -1.04019299e-01 3.63617152e-01\\n1.43307418e-01 -1.01917334e-01 1.59268215e-01 8.21938634e-01\\n3.83604348e-01 -5.87992370e-02 -6.00261986e-02 -1.12783508e-02\\n-2.19714239e-01 -1.16500683e-01 4.06501740e-01 1.43361226e-01\\n-7.79786855e-02 -4.00314540e-01 1.12267867e-01 9.94002298e-02\\n-3.23229134e-01 -1.82109043e-01 -7.37718642e-02 2.78239369e-01\\n-6.93649173e-01 -3.34074050e-01 -1.09158486e-01 4.11223480e-03\\n-2.48544917e-01 -3.11541736e-01 9.05178413e-02 -1.98799707e-02\\n1.34833902e-01 1.27673984e-01 -5.62962174e-01 2.21756414e-01\\n-2.10308075e-01 -2.62162238e-01 3.25115085e-01 6.20196640e-01\\n-2.27006990e-02 -4.35605645e-01 -5.04936755e-01 -3.91674995e-01\\n1.13927722e-01 -3.29396389e-02 -2.19221115e-02 -4.49590206e-01\\n2.82134950e-01 1.72711641e-01 -1.41567702e-03 3.11003178e-01\\n-8.41401517e-01 -1.87418044e-01 -2.62502939e-01 -4.23106924e-02\\n-3.74724805e-01 -6.10184185e-02 -1.53444380e-01 -1.05216317e-01\\n-3.86757702e-02 4.45064425e-01 4.06113677e-02 2.74664257e-02\\n-1.18220136e-01 3.87540281e-01 -2.12884188e-01 4.82440561e-01\\n2.04456359e-01 2.64162630e-01 9.84276012e-02 3.67818415e-01\\n-2.89154917e-01 3.47585022e-01 8.66943151e-02 -2.95485616e-01\\n1.91895068e-01 1.64032191e-01 5.06912708e-01 -4.85357083e-02\\n1.75279051e-01 7.67979398e-02 -4.09418195e-01 4.15128171e-01\\n2.56524861e-01 -2.89466470e-01 1.52836516e-01 -8.29043686e-02\\n2.56755557e-02 7.06810690e-03 5.92649616e-02 9.95903388e-02\\n-3.35495234e-01 3.97334129e-01 1.79926112e-01 -1.67149797e-01\\n-9.08892229e-02 -5.27441084e-01 -9.68079120e-02 7.15265423e-02\\n3.22680026e-02 6.92483634e-02 2.05185950e-01 1.00141227e-01\\n2.00903103e-01 5.54731786e-02 1.24387629e-01 9.73621309e-01\\n-9.67924595e-02 1.05454505e-03 -2.20986232e-01 3.07325393e-01\\n9.67770815e-02 -2.29671940e-01 2.70837277e-01 2.67831624e-01\\n1.17196687e-01 -2.18854681e-01 -2.33814448e-01 3.32441896e-01\\n6.03992306e-02 -1.98460042e-01 -2.73256570e-01 3.27207297e-01\\n-1.73127912e-02 -4.35801446e-01 6.63786471e-01 8.04563169e-04\\n1.08474314e-01 -6.42981231e-02 -4.31750156e-02 -1.32302165e-01\\n-4.51721065e-02 9.94271636e-02 1.71530137e-05 1.28383666e-01\\n-3.33145291e-01 -2.77937800e-01 -1.77992642e-01 3.96329463e-02\\n-3.68313164e-01 2.45561734e-01 -6.94993064e-02 -8.68954509e-02\\n1.61983281e-01 -5.77542335e-02 -2.28144571e-01 1.90994188e-01\\n-9.29187015e-02 1.43895280e-02 1.28230169e-01 3.89805436e-01\\n-2.57628709e-01 1.84226617e-01 -9.49219689e-02 -1.92838654e-01\\n5.26776254e-01 1.61258817e-01 5.37235290e-02 -1.29591525e-02\\n3.48932832e-01 -7.67435208e-02 2.30441481e-01 1.94344297e-01\\n-7.39030600e-01 2.87194252e-01 -1.10939883e-01 -2.32322782e-01\\n5.48879281e-02 -9.29856747e-02 3.56184244e-01 -2.82974631e-01\\n6.24019280e-03 -1.33209199e-01 -4.22763020e-01 -2.21646339e-01\\n-2.18117923e-01 -1.09508045e-01 4.99452442e-01 -4.08331901e-01\\n-1.73319593e-01 2.35321969e-01 -5.33958673e-01 -1.73191801e-01\\n2.77047064e-02 1.54111966e-01 2.19252974e-01 5.59129268e-02\\n-2.15247378e-01 -6.58071518e-01 2.61800531e-02 -4.71388608e-01\\n-2.88910538e-01 1.06464036e-01 -2.71896720e-01 2.80620754e-01\\n1.57240890e-02 -1.16062984e-02 -1.38100922e-01 1.26544744e-01\\n-2.41793022e-01 -1.44608505e-02 4.18391004e-02 3.19084874e-03\\n1.49102375e-01 8.21789205e-02 -3.18843246e-01 4.15687382e-01\\n-1.20143242e-01 7.38887548e-01 3.69345732e-02 -8.46216321e-01\\n5.17916620e-01 4.16019678e-01 -2.47838199e-02 -2.54223287e-01\\n5.48627019e-01 -3.83861870e-01 -1.78377882e-01 8.34225565e-02\\n-3.85464251e-01 -3.09331357e-01 2.20392063e-01 -2.58056343e-01\\n-2.86358505e-01 5.10280252e-01 9.39785838e-02 1.65612295e-01\\n3.19207907e-01 -2.90657401e-01 -2.78760176e-02 3.75616029e-02\\n-6.73609450e-02 -3.21334898e-01 -5.35726249e-01 -1.92885008e-02\\n-8.12788680e-02 -5.42707980e-01 -1.92736667e-02 -2.92269826e-01\\n-2.14521497e-01 -3.33490461e-01 -1.58306435e-01 2.17022285e-01\\n3.65034133e-01 1.07456565e-01 5.07156439e-02 5.49834557e-02\\n-1.00595355e-01 -5.40471494e-01 -4.16955128e-02 9.11187828e-02\\n3.76946747e-01 2.35252365e-01 9.54194516e-02 2.92639006e-02\\n-6.87321424e-02 6.42781734e-01 -2.67857581e-01 -2.19242021e-01\\n6.90786615e-02 2.02000931e-01 7.91040063e-03 -1.28834143e-01\\n1.65220633e-01 4.50034738e-01 -2.96262890e-01 1.26958698e-01\\n-1.34764001e-01 -5.05113006e-02 2.92828709e-01 1.26045197e-01\\n-1.94791853e-01 -1.95052609e-01 -1.40913844e-01 1.03951588e-01\\n-6.05008483e-01 -1.83572680e-01 4.42369729e-01 1.09146349e-01\\n2.54844993e-01 4.24901210e-02 2.81471282e-01 -1.26183674e-01\\n-2.41876170e-01 -2.70716846e-01 2.89479256e-01 1.83888420e-01\\n8.02820921e-02 1.79018348e-01 5.91687895e-02 -6.09297395e-01\\n-3.08833504e+00 -1.05858885e-01 1.48121655e-01 -2.28792489e-01\\n1.83724329e-01 1.54572483e-02 -1.58700813e-03 -7.97645003e-02\\n-3.01324129e-01 -7.38255903e-02 -1.98433593e-01 -1.89353421e-01\\n7.25826174e-02 1.54209048e-01 1.30315199e-01 7.80134127e-02\\n1.58667877e-01 -2.15334713e-01 -5.90466484e-02 3.51647347e-01\\n-7.55011812e-02 -5.56001663e-01 2.29559690e-01 2.89353542e-03\\n2.90803820e-01 1.15721308e-01 -4.58708256e-01 -1.40416771e-01\\n-1.97826967e-01 -1.74721807e-01 1.22433864e-01 -3.34654421e-01\\n-2.62786727e-02 2.80139416e-01 2.13215187e-01 -8.45521223e-03\\n9.90886539e-02 -4.09547955e-01 -1.57552987e-01 -3.98427546e-01\\n8.93677548e-02 -5.92201233e-01 1.49425101e-02 -2.24194452e-01\\n6.44605637e-01 -3.58653814e-01 5.59022129e-02 1.42211378e-01\\n1.29999787e-01 1.80157095e-01 6.98166490e-02 -9.50836670e-03\\n-1.79287121e-01 -2.34690279e-01 -1.07470900e-01 -1.67225555e-01\\n4.14665759e-01 5.71505427e-01 -6.46524057e-02 -1.03732109e-01\\n1.03607267e-01 -3.12021434e-01 -5.84030449e-01 -2.59165794e-01\\n-1.46081179e-01 -2.82951742e-01 -6.61847055e-01 -5.12746096e-01\\n-1.02164105e-01 -6.58482462e-02 -1.72628209e-01 6.29353225e-01\\n-3.62532377e-01 -2.96469182e-01 6.82153851e-02 -4.01356131e-01\\n2.07945466e-01 -3.01011622e-01 8.25977698e-02 -1.82450116e-01\\n-2.43590087e-01 -5.25997043e-01 5.61017692e-02 -1.22373914e-02\\n-8.28509033e-02 -3.87998402e-01 -3.69610526e-02 -2.26924196e-01\\n-2.69980758e-01 -4.20370936e-01 4.44941819e-01 1.89435720e-01\\n3.84555459e-01 7.72801861e-02 2.40476906e-01 -7.58712664e-02\\n2.93458164e-01 -2.79153474e-02 -8.12219381e-02 -3.12662840e-01\\n9.56308767e-02 4.49968651e-02 4.18010473e-01 -2.31686622e-01\\n-1.23370908e-01 6.86325273e-03 -3.47004056e-01 -2.70640012e-02\\n2.42457211e-01 6.42290339e-03 -2.80408263e-02 -1.83198184e-01\\n4.20002937e-01 -2.60792702e-01 -5.39209023e-02 1.71582073e-01\\n1.03063829e-01 5.64295292e-01 7.88486097e-03 -4.70834166e-01\\n-1.76993132e-01 3.81603271e-01 -9.43878070e-02 -8.10479224e-02\\n-2.05782261e-02 8.10663924e-02 -1.77646801e-01 2.37053588e-01\\n2.87216473e-02 -1.13345399e-01 -2.40583047e-01 -1.42416790e-01\\n-1.97484285e-01 4.30378973e-01 1.60710394e-01 6.20446391e-02\\n-9.95636359e-02 -3.69042218e-01 -1.04530133e-01 3.02616805e-01\\n2.10095316e-01 2.97285259e-01 2.55060077e-01 -2.53092885e-01\\n-3.25052515e-02 4.38893020e-01 -1.64433017e-01 1.94279432e-01\\n-2.45469734e-01 1.46761820e-01 -5.46583712e-01 -1.81154430e-01\\n-3.56602460e-01 -3.56532365e-01 2.15946585e-01 3.15783054e-01\\n2.37833053e-01 -5.06811887e-02 2.43615285e-01 -4.46075439e-01\\n3.10165942e-01 2.31263995e-01 2.07819521e-01 9.53669101e-02\\n-4.35707122e-02 6.34144068e-01 6.52131140e-02 -1.62557006e-01\\n-3.82012092e-02 -9.35275257e-02 -2.57405698e-01 -2.77863681e-01\\n7.12738335e-02 -4.90726084e-01 -1.72003627e-01 4.14939225e-01\\n1.19929798e-02 -3.07115704e-01 -2.88133264e-01 2.94350863e-01\\n4.53745499e-02 -2.82645762e-01 -2.94721484e-01 -5.60613954e-03\\n3.82236689e-01 -4.77441307e-03 2.89465189e-01 -5.32921195e-01\\n-7.05306306e-02 3.91185209e-02 -1.81442440e-01 6.03978574e-01\\n3.97017039e-02 -1.00307420e-01 -2.24660754e-01 -2.48657122e-01\\n3.46579373e-01 2.32381560e-03 -6.21865317e-02 -1.62810743e-01\\n1.29670411e-01 -1.65993020e-01 -2.93401748e-01 1.06150880e-01\\n2.69722436e-02 -1.20677598e-01 -5.41348942e-02 1.69817641e-01\\n1.54999360e-01 1.12913847e-01 -5.28884590e-01 -2.29777098e-01\\n-1.02099009e-01 1.38140861e-02 1.18286014e-01 -3.90523583e-01\\n-6.65493011e-02 -1.18845843e-01 -5.28726816e-01 2.59356290e-01\\n-1.79995090e-01 -6.33876771e-02 1.45757407e-01 4.41674665e-02\\n-3.90196830e-01 -1.64533883e-01 4.47562188e-02 2.68592030e-01\\n-3.36038888e-01 -3.03508312e-01 6.61023259e-02 -9.65365887e-01\\n4.73210663e-02 1.49925891e-02 -1.90606847e-01 1.99255109e-01\\n-3.77111137e-02 -5.96411288e-01 7.57368356e-02 -3.77188802e-01\\n-8.60775039e-02 -2.25442369e-03 -3.39427918e-01 -2.95279413e-01\\n9.80416313e-02 4.45397496e-02 -2.35997617e-01 3.71618241e-01\\n-3.83907884e-01 3.09884787e-01 -1.32649317e-01 2.36986764e-02\\n1.58124976e-02 -3.93595904e-01 1.76851645e-01 -4.58706349e-01\\n-4.17498320e-01 -1.73629120e-01 -3.23113531e-01 -2.72197038e-01\\n-2.72364486e-02 -1.95713922e-01 -1.68837935e-01 7.13770688e-02\\n2.79908746e-01 -9.94471982e-02 -8.80589262e-02 -2.27695882e-01\\n1.68260515e-01 -4.83649850e-01 1.19827949e-02 -4.67570685e-02\\n-8.20605643e-03 -1.69822350e-02 -2.08840072e-02 2.41146222e-01\\n1.97596639e-01 -3.65467548e-01 3.72829825e-01 -5.38573682e-01\\n-3.30811411e-01 -1.32995948e-01 1.48362368e-01 -3.14110778e-02\\n3.71939570e-01 -3.56714100e-01 -5.29241301e-02 2.47981116e-01\\n2.43250102e-01 3.42292972e-02 2.91329414e-01 -1.13652714e-01\\n7.07688332e-02 1.68619052e-01 -2.65314132e-01 1.41771108e-01\\n7.72444069e-01 1.22193418e-01 2.15246305e-01 1.34034827e-01\\n1.28308043e-01 1.52254969e-01 5.55234313e-01 6.95531145e-02\\n-1.14367470e-01 2.72008508e-01 2.12265760e-01 -3.27417433e-01\\n-1.41368076e-01 8.19723308e-03 -2.52981126e-01 -3.25297564e-01\\n6.97446167e-01 3.99260610e-01 -4.64953572e-01 -1.37237877e-01\\n-3.37966206e-03 -1.63995266e-01 1.53066546e-01 -1.16496146e-01\\n-5.37558272e-02 8.47891904e-03 4.39934969e-01 -1.53064996e-01\\n2.09769323e-01 4.32819247e-01 -1.90943584e-01 -4.02021229e-01\\n-8.35089013e-02 2.52721548e-01 2.67330874e-02 3.89168471e-01\\n-2.06106126e-01 3.97763252e-01 -2.31360290e-02 1.82387516e-01\\n-1.34223104e-01 1.28499418e-01 1.48220837e-01 1.01867869e-01\\n1.40002280e-01 2.21560262e-02 3.17652166e-01 4.30151075e-01\\n4.15707290e-01 4.00314301e-01 3.39364469e-01 -4.15941991e-04\\n4.22308087e-01 4.82627124e-01 3.39602828e-01 1.72086298e-01\\n-1.02666616e-01 1.35161459e-01 1.16447151e-01 -9.29013267e-03\\n4.46575284e-01 3.10713321e-01 1.69557795e-01 8.66306782e-01\\n2.88405806e-01 4.02954042e-01 7.08498836e-01 -5.74246526e-01\\n-3.02493989e-01 1.04537144e-01 4.32984531e-01 -4.73917127e-01\\n-3.20942923e-02 2.91799400e-02 -7.84139708e-02 2.18662664e-01\\n-3.52175862e-01 -2.40139216e-01 -6.56247139e-02 2.98952550e-01\\n3.18449363e-02 -1.09455273e-01 -2.52477109e-01 -4.17815186e-02\\n-2.21452832e-01 -1.38408095e-01 -4.76561010e-01 -4.83902432e-02\\n-2.63522714e-01 -1.87849909e-01 -5.20092212e-02 -7.35315457e-02\\n-1.07168294e-01 -4.00403649e-01 -2.41890792e-02 -3.53890248e-02\\n3.72063041e-01 -2.52057493e-01 -1.26549691e-01 -1.32459551e-01\\n3.33964020e-01 1.72105044e-01 6.11153305e-01 1.45205811e-01\\n7.46073276e-02 -2.52712697e-01 -1.76032111e-01 1.78253978e-01\\n5.91773912e-02 2.05314562e-01 1.16952769e-02 2.88733304e-01\\n-2.32696250e-01 -8.67840126e-02 1.55609652e-01 2.49566868e-01\\n-4.32942241e-01 -3.41088213e-02 -2.21731827e-01 5.89229763e-02\\n7.92885646e-02 1.10918105e-01 -2.37465367e-01 8.01573619e-02\\n-1.48676142e-01 -4.22992140e-01 2.37759501e-01 -1.23083465e-01\\n-1.79243162e-01 1.24646559e-01 3.69961411e-01 1.29486054e-01\\n-1.83342010e-01 -5.48164956e-02 5.47658280e-02 2.03589797e-01\\n4.67065908e-02 3.29977661e-01 -1.21937901e-01 -4.15521920e-01\\n-2.71547139e-01 2.37298384e-01 -2.21335277e-01 1.05093651e-01\\n2.18326636e-02 5.59969187e-01 1.23413667e-01 -2.92986855e-02\\n5.44673085e-01 -1.60206351e-02 -2.12896615e-01 -3.33475024e-01\\n-1.86459005e-01 -3.62796038e-01 -1.18960917e-01 7.16214404e-02\\n8.03726092e-02 -2.91677982e-01 -6.38136789e-02 -2.12681860e-01\\n-2.19799299e-02 -3.06136400e-01 -2.12664269e-02 -1.28117993e-01]]',\n", + " 'job_description': '(Internship 4-12 months) MaxWell Biosystems is an electronics-focused biotech company based in Basel, Switzerland, developing and selling advanced cell imaging platforms helping our customers in the pharmaceutical industry and in academia to make their drug discovery and research more efficient. We are an ETH Spin-off company, seeking highly motivated and talented individuals who want to contribute in shaping the future of drug discovery. Our core technology consists of a bio-sensor made out of an application specific integrated circuit (ASIC) chip. Together with an FPGA-based data acquisition platform and with our software suite MaxLab Live, this technology is used for drug discovery and to investigate brain cells at unprecedented detail and resolution. We are now enhancing our software MaxLab Live to perform automated experiment routines by means of a Python API (boost.python). Additionally, we are implementing various data analysis and visualization routines to enhance the user experience of our customers and to help them improve their research and drug discovery applications. For both of these activitieswe are seeking a highly motivated software engineer to help us either on the backend to improve the Python API and/or on the frontend with the user interface for data analysis and visualization. Your Profile Studies in computer science, electrical engineering, biology or related field Experience with C++ (C++11/14) and Linux Enjoy pushing technology to its limits You Get Working with cutting-edge technology Working on a modern C++11 code base Freedom to come up with and work on your own ideas Be part of a fast-paced technology startup at the intersection between biology, engineering and data science Are you motivated, innovative and committed to delivering first-rate performance? Have you ever wanted to work with cutting-edge technology involving both engineering and biology? Do you enjoy working in an international, multidisciplinary, and interactive team? Then we might have a position for you. Join MaxWellBiosystems in innovating the future of electrophysiology for drug discovery and basic research. Jan Müller looks forward to receiving your application documents (cover letter, short CV) by email at jan.mueller@mxwbio.com.',\n", + " 'soft_skills': '[\"Research\", \"Positivity\", \"Innovation\", \"Investigation\"]',\n", + " 'hard_skills': '[\"Automation\", \"Live Cell Imaging\", \"Basic Research\", \"Interactivity\", \"Field-Programmable Gate Array (FPGA)\", \"Computer Science\", \"Boost (C++ Libraries)\", \"Documentation Based Coding\", \"Industrialization\", \"Visualization\", \"Software Suite\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Push Technology\", \"Component Object Model (COM)\", \"Linux\", \"Agile Edge Technologies\", \"Limiter\", \"Application Specific Integrated Circuits\", \"Software Engineering\", \"Data Science\", \"Electronics\", \"Biology\", \"Electrical Engineering\", \"Electrophysiology\", \"Data Acquisition\", \"Biological Engineering\", \"Receivables\", \"Pharmaceuticals\", \"Drug Discovery\", \"Additives\", \"User Experience\", \"Custom Backend\", \"ASIC Programming Language\", \"Application Programming Interface (API)\", \"Integrated Circuits\", \"User Interface\", \"Data Analysis\", \"Advanced Imaging Technology\"]',\n", + " 'languages': \"['English', 'Tsonga']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data scientist (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.41230571e-01 3.20579290e-01 3.75774533e-01 -5.87651171e-02\\n4.43441123e-01 -1.29961938e-01 -1.92020759e-02 4.41386491e-01\\n-1.59575537e-01 -4.24713194e-01 -1.46686330e-01 -3.25343221e-01\\n1.14388704e-01 2.04729050e-01 -1.23882887e-03 4.20161128e-01\\n3.73519152e-01 -1.16898101e-02 -2.07619742e-01 1.32103652e-01\\n8.86699557e-02 -3.35102119e-02 4.04846482e-02 7.49066710e-01\\n4.03577298e-01 3.07110511e-02 9.69275273e-03 2.29009271e-01\\n-2.27694642e-02 -3.00659746e-01 4.20081764e-01 6.77612126e-02\\n-9.78656411e-02 -1.45831376e-01 1.00099869e-01 1.93986848e-01\\n-1.76201001e-01 -4.38924991e-02 -4.48319092e-02 1.02736801e-01\\n-4.25482512e-01 -7.39343241e-02 -1.93309754e-01 -9.40649137e-02\\n-2.36881807e-01 -3.55241865e-01 1.84402809e-01 -7.85545632e-02\\n1.81506589e-01 1.02683842e-01 -5.44188201e-01 3.21053684e-01\\n-2.46664912e-01 -2.24747032e-01 2.26115018e-01 6.36301339e-01\\n-4.64538336e-02 -4.17762935e-01 -4.72036988e-01 -2.27010503e-01\\n3.72807076e-03 -2.47032586e-02 1.63690284e-01 -2.71987379e-01\\n5.68070114e-01 2.97356918e-02 8.11387785e-03 3.70946676e-01\\n-7.85762906e-01 -7.95092732e-02 -5.25898218e-01 5.51936179e-02\\n-4.09012586e-01 -1.16724238e-01 -3.26011032e-01 -1.84702218e-01\\n-9.00333896e-02 2.66361088e-01 5.27836494e-02 5.73817641e-02\\n-5.46626411e-02 1.83182925e-01 -3.73869807e-01 2.18665108e-01\\n1.80035621e-01 3.55550379e-01 2.71658927e-01 1.24420635e-01\\n-5.61292708e-01 4.55916524e-01 1.60459146e-01 -3.16164434e-01\\n2.51621008e-01 1.12377949e-01 4.22266543e-01 1.91384722e-02\\n3.23856115e-01 7.96804950e-02 -1.73500240e-01 2.88461983e-01\\n3.24480802e-01 -2.72537529e-01 -4.57357392e-02 -2.22847443e-02\\n-7.05420151e-02 -2.36930493e-02 1.81777403e-02 8.52361992e-02\\n-4.42855358e-01 4.49962378e-01 2.38556601e-02 -3.29873711e-01\\n-8.54108781e-02 -4.92196053e-01 -1.26708031e-01 1.13501027e-01\\n4.74727973e-02 1.55081972e-01 5.56165911e-02 3.36634696e-01\\n9.23086330e-02 7.44584203e-02 1.71667546e-01 8.73141706e-01\\n-1.59719318e-01 9.80157852e-02 -1.35535583e-01 3.73292476e-01\\n5.89516051e-02 -4.22692955e-01 3.69895428e-01 1.48211956e-01\\n-5.48070716e-03 -2.23484635e-01 -2.28235051e-01 3.02637547e-01\\n-8.38862732e-02 -1.75278768e-01 -4.07274961e-01 2.79555261e-01\\n-4.80480082e-02 -4.97038513e-01 5.77611804e-01 -6.62990361e-02\\n2.56282687e-01 5.75698167e-03 -1.20063998e-01 -6.44469708e-02\\n-5.58342263e-02 2.05851644e-01 1.05513319e-01 1.50529891e-01\\n-2.80206472e-01 -1.23960570e-01 -2.12028727e-01 2.41515830e-01\\n-3.25081259e-01 1.42981023e-01 -1.64810762e-01 2.47103572e-02\\n2.97217578e-01 -1.06815249e-01 -3.58129829e-01 2.71518111e-01\\n-1.08762622e-01 -9.28396657e-02 -1.04522936e-01 3.48139197e-01\\n-1.49847686e-01 2.89581656e-01 -7.47042149e-03 -1.49303108e-01\\n4.85912025e-01 -3.17747407e-02 1.42754778e-01 -1.14044540e-01\\n1.87778026e-01 -1.54224485e-01 1.40239537e-01 1.00261755e-01\\n-7.44436622e-01 3.75441790e-01 -1.33631974e-01 -2.50234485e-01\\n1.03924565e-01 -2.11706422e-02 1.20492116e-01 -3.17121565e-01\\n-2.60668900e-02 4.86982241e-02 -2.25412384e-01 -2.37696111e-01\\n-2.98636377e-01 3.06145400e-02 4.75394011e-01 -5.51669955e-01\\n6.42826129e-03 8.85091349e-02 -5.41709900e-01 -4.73886430e-02\\n2.20377043e-01 1.63471773e-01 1.72797069e-01 1.99010149e-01\\n-9.34576318e-02 -4.07977581e-01 1.05349876e-01 -5.64375281e-01\\n-2.33918458e-01 1.47594362e-01 -4.07128572e-01 2.71355361e-01\\n2.08260804e-01 -8.85742530e-02 -6.84777424e-02 1.75756514e-01\\n-1.47204876e-01 8.39553475e-02 1.92527175e-01 5.17481156e-02\\n4.29474980e-01 -1.31909158e-02 -4.88036036e-01 4.87025589e-01\\n-1.17629059e-01 3.22765619e-01 1.28966480e-01 -6.33928299e-01\\n5.18156767e-01 3.87201309e-01 1.34119019e-01 -3.40296209e-01\\n7.73359656e-01 -2.09232211e-01 -1.53796226e-01 1.28882870e-01\\n-5.41336775e-01 -2.04530403e-01 2.09910870e-01 -2.85638869e-01\\n-2.04468206e-01 6.05933845e-01 1.46033973e-01 1.70462862e-01\\n4.07893091e-01 -1.25825554e-01 -2.04333976e-01 1.82618171e-01\\n-1.61599264e-01 -2.83577591e-01 -4.41130549e-01 -1.46593213e-01\\n-1.38645932e-01 -5.25331318e-01 -2.12554470e-01 -5.44122219e-01\\n-1.19418189e-01 -3.49090397e-01 -1.90421775e-01 2.98726946e-01\\n2.70572782e-01 1.56919345e-01 -1.27486894e-02 -3.89354005e-02\\n-2.16649249e-01 -6.33001685e-01 1.12677880e-01 2.43788790e-02\\n2.78449357e-01 5.46571165e-02 -1.01318525e-03 -8.76794234e-02\\n9.30171683e-02 4.80634838e-01 -4.45369393e-01 -4.65957880e-01\\n1.67595834e-01 2.88126379e-01 -6.29331991e-02 -1.63987651e-01\\n7.48787075e-02 2.02743486e-01 -3.77554804e-01 4.87946309e-02\\n-3.19412686e-02 7.09454566e-02 3.11002165e-01 4.75667939e-02\\n-2.25134403e-01 -2.73619622e-01 -1.19784929e-01 2.03147247e-01\\n-4.44426179e-01 -3.51640642e-01 5.16058743e-01 2.27594838e-01\\n-8.20012465e-02 2.19246358e-01 1.83445424e-01 2.56463606e-02\\n-3.11640471e-01 -1.73988789e-01 1.85515121e-01 1.07422307e-01\\n7.74253830e-02 1.50473043e-01 -2.39359498e-01 -5.16104043e-01\\n-3.70907736e+00 -5.90654090e-02 2.16919612e-02 -3.38318013e-02\\n2.63239056e-01 -9.49420929e-02 2.72949815e-01 -1.70295238e-01\\n-3.73317093e-01 2.23193280e-02 -3.49745035e-01 -2.36381829e-01\\n2.36413643e-01 3.80795240e-01 1.85329095e-01 3.37170660e-01\\n8.95158853e-03 -3.26061338e-01 1.55033227e-02 3.53047460e-01\\n-1.01034768e-01 -5.98247468e-01 9.17824358e-02 -2.74122953e-02\\n3.05051386e-01 3.23851973e-01 -4.45890903e-01 4.46502045e-02\\n-2.90478021e-01 -3.03679377e-01 2.81372607e-01 -3.05325180e-01\\n-1.04047373e-01 3.29313606e-01 3.19882810e-01 -1.35911644e-01\\n8.91114213e-03 -3.04096609e-01 -2.21896827e-01 -4.22515392e-01\\n1.57804459e-01 -4.90906239e-01 -1.28313333e-01 -3.78867239e-02\\n7.59345353e-01 -2.76979506e-01 2.90725946e-01 -1.25216572e-02\\n-3.79199944e-02 2.58015037e-01 4.34338264e-02 -3.02164797e-02\\n-1.59291670e-01 -4.10524219e-01 -2.00489357e-01 -1.38318598e-01\\n7.19663858e-01 4.77971762e-01 -3.27104688e-01 -6.32395521e-02\\n3.40273418e-02 -2.62451947e-01 -4.98666763e-01 -3.22024316e-01\\n-2.16446906e-01 -9.33134332e-02 -5.49440205e-01 -5.07502139e-01\\n-6.88180998e-02 -2.11285770e-01 6.72993669e-03 5.60048044e-01\\n-3.87955904e-01 -4.22377199e-01 -1.19003303e-01 -5.84407449e-01\\n2.33222038e-01 -1.50476933e-01 1.93103589e-02 -6.49409369e-02\\n-2.87916183e-01 -4.92121696e-01 -3.83201055e-02 1.25485957e-01\\n-1.22601926e-01 -1.80888444e-01 1.67992145e-01 -2.10358664e-01\\n-4.12067920e-01 -5.70630968e-01 3.19926620e-01 7.52659366e-02\\n2.06089333e-01 3.11958551e-01 7.43244067e-02 9.38261375e-02\\n2.09748298e-01 -1.18292257e-01 -2.77300477e-02 -3.33694518e-01\\n6.80211857e-02 2.71623526e-02 4.78780895e-01 -2.68519908e-01\\n5.22808619e-02 3.14865038e-02 -1.65933669e-01 -1.00066185e-01\\n3.60404819e-01 2.91085709e-03 2.48318762e-01 -2.93007404e-01\\n2.49018162e-01 -4.09965307e-01 -1.22578003e-01 1.50597855e-01\\n8.01002532e-02 5.93329430e-01 -1.38859358e-02 -2.87190259e-01\\n-1.81143865e-01 4.63179588e-01 -7.93593749e-02 -1.28168138e-02\\n-1.41236469e-01 1.22826479e-01 -3.01261604e-01 4.57582884e-02\\n8.31399858e-02 -9.90217179e-02 -2.10034654e-01 -7.69866481e-02\\n-6.24854602e-02 3.36862296e-01 3.39921534e-01 2.14407220e-01\\n-1.19193226e-01 -3.77245843e-01 -3.04245334e-02 2.41239384e-01\\n2.78555810e-01 3.43841553e-01 1.13287218e-01 -3.09911937e-01\\n-3.05522885e-02 2.28456452e-01 -2.43753612e-01 2.83019274e-01\\n-2.08737180e-01 1.85385078e-01 -4.71682221e-01 -1.98949471e-01\\n-3.35636973e-01 -3.02228987e-01 1.68202549e-01 2.78751761e-01\\n4.78324443e-02 -1.47481069e-01 7.40066096e-02 -2.79685259e-01\\n1.28714785e-01 1.26459092e-01 1.72895581e-01 9.00546685e-02\\n4.25361320e-02 5.08100033e-01 -1.34723365e-01 -8.66496190e-02\\n-3.79136987e-02 1.55094236e-01 -2.98904300e-01 -1.67882740e-01\\n3.26476581e-02 -4.96705264e-01 -1.38876662e-01 3.30863655e-01\\n1.33994266e-01 -2.44507063e-02 -1.56706899e-01 2.71681696e-01\\n-6.29353225e-02 -4.21984881e-01 -1.89854845e-01 -3.77752148e-02\\n3.91769797e-01 1.97067633e-01 1.99220017e-01 -4.72003251e-01\\n3.39651704e-02 -1.60421096e-02 -6.23232126e-02 4.92524296e-01\\n-1.64510719e-02 1.27280802e-01 -3.88157777e-02 -2.85643280e-01\\n4.07037139e-01 -1.82942048e-01 -8.02245066e-02 1.08663850e-01\\n6.57938644e-02 -2.33758911e-01 -2.71264285e-01 4.50135991e-02\\n-1.33240342e-01 -2.20708475e-01 5.43981744e-03 2.07883753e-02\\n6.81371242e-02 1.14125408e-01 -6.96763396e-01 -1.31494328e-01\\n-3.38128626e-01 -2.66433377e-02 -2.57064160e-02 -5.89495063e-01\\n9.37665924e-02 -1.76048622e-01 -4.83618677e-01 3.92892152e-01\\n-2.18248978e-01 1.59633476e-02 2.26147965e-01 -2.03592633e-03\\n-2.53043085e-01 -1.80282846e-01 3.03423852e-01 2.25411966e-01\\n-3.14275414e-01 -1.91533878e-01 -2.80531328e-02 -9.39720631e-01\\n2.66930401e-01 -5.04413843e-02 -2.22142965e-01 2.92951893e-02\\n4.60405312e-02 -5.75743496e-01 1.47720560e-01 -2.36621723e-01\\n-1.12835318e-01 -5.46076670e-02 -2.26170704e-01 -3.88530970e-01\\n9.35971644e-03 -7.93675333e-02 -2.26015106e-01 4.02906537e-01\\n-3.38889658e-01 1.84469283e-01 -2.24166885e-02 2.16775984e-02\\n-2.04286929e-02 -3.47074330e-01 3.10599487e-02 -2.67032415e-01\\n-3.94339442e-01 -1.74878016e-01 -8.28907788e-02 -2.08658576e-01\\n-1.93180924e-04 -4.40714270e-01 -1.09175496e-01 6.83374777e-02\\n2.36038581e-01 -6.47720993e-02 -2.07359180e-01 -6.37338012e-02\\n-4.02890518e-02 -4.36068565e-01 8.02344978e-02 -1.47829279e-01\\n-9.34714600e-02 -1.64646432e-01 1.75696179e-01 7.70144016e-02\\n1.71934247e-01 -3.83518070e-01 4.33824152e-01 -3.38958740e-01\\n-2.44281590e-01 -4.73154634e-02 1.36464551e-01 8.58591031e-03\\n3.32300365e-01 -5.70898592e-01 -1.79186478e-01 4.85027581e-01\\n1.21535219e-01 9.76505410e-03 2.74466872e-01 -2.22782210e-01\\n-2.85697460e-01 4.10868973e-01 -2.47874334e-01 2.06477046e-01\\n7.59367347e-01 2.34027103e-01 2.15660274e-01 1.85695961e-01\\n5.54197058e-02 3.72010559e-01 3.88585508e-01 7.35035837e-02\\n1.14770360e-01 4.62758750e-01 1.29114717e-01 -4.50532645e-01\\n6.51421919e-02 7.48575628e-02 -1.76990125e-02 -3.38613302e-01\\n5.71200788e-01 4.18865412e-01 -4.79401261e-01 -3.71115088e-01\\n-1.93321466e-01 -2.30509773e-01 2.57935256e-01 -3.96324694e-02\\n8.67455155e-02 -2.13403881e-01 4.65888798e-01 4.22241725e-02\\n1.19340211e-01 5.51934600e-01 -1.13279380e-01 -1.61001548e-01\\n-1.25377461e-01 1.63823247e-01 4.23096791e-02 5.02787948e-01\\n-1.01218373e-01 3.05310696e-01 -5.16975336e-02 1.80466488e-01\\n-1.23121917e-01 6.84957281e-02 3.06439400e-01 6.38772696e-02\\n-6.71916008e-02 3.13701838e-01 4.36375111e-01 4.52330589e-01\\n3.90467167e-01 4.19316918e-01 1.97180539e-01 4.10353169e-02\\n4.91685063e-01 4.94395077e-01 5.09132862e-01 9.87051949e-02\\n5.70210889e-02 -5.83960749e-02 6.65263906e-02 1.34733200e-01\\n2.76557297e-01 3.56498957e-01 -8.12474638e-02 8.53647649e-01\\n4.01272386e-01 2.59191155e-01 5.45863628e-01 -5.74813366e-01\\n-2.21465662e-01 9.34437066e-02 4.16498542e-01 -4.43234384e-01\\n-1.01665333e-01 9.72616524e-02 -2.36519665e-01 1.63716167e-01\\n-5.61485291e-01 -1.28513530e-01 -9.49923843e-02 4.80301902e-02\\n1.37602508e-01 -2.54826486e-01 -1.08912319e-01 2.56002657e-02\\n-3.76788527e-02 -2.07991019e-01 -5.21685421e-01 -2.01340169e-01\\n-2.61706352e-01 -1.59582540e-01 -1.58688724e-02 -4.76816446e-02\\n5.23601212e-02 -2.41665795e-01 -8.35303143e-02 1.02412224e-01\\n3.16163391e-01 -1.00517683e-01 -1.23253323e-01 -5.70156612e-02\\n4.24657643e-01 2.49227658e-01 6.50379419e-01 -8.71798173e-02\\n-4.85449545e-02 -1.09967537e-01 -1.61423773e-01 1.47626474e-01\\n2.10443869e-01 3.41736265e-02 5.91592267e-02 3.84093881e-01\\n-3.55219305e-01 -1.77509859e-01 1.67385608e-01 3.86279911e-01\\n-4.82749164e-01 1.87266737e-01 1.45087525e-01 3.19950968e-01\\n9.58703905e-02 1.88496649e-01 -1.79843903e-01 -3.18964124e-02\\n-3.08908075e-02 -5.10407269e-01 3.40934604e-01 2.78361328e-03\\n-1.12154096e-01 -6.76452518e-02 3.03985864e-01 3.73336256e-01\\n-1.07625850e-01 -1.99855298e-01 -8.22607577e-02 1.28288463e-01\\n4.12612483e-02 2.98357785e-01 -3.38464051e-01 -2.86627203e-01\\n-4.40334797e-01 1.09875180e-01 -5.98270334e-02 8.50374252e-02\\n-7.56504759e-03 2.46335596e-01 1.15903437e-01 2.67920941e-01\\n3.53387326e-01 -1.08669966e-01 -1.63407981e-01 -1.41656354e-01\\n-2.09220603e-01 -8.75437409e-02 1.10776484e-01 -7.38353282e-02\\n2.71980941e-01 -4.22552913e-01 -2.09828228e-01 -2.45986238e-01\\n-1.38953432e-01 -3.73937756e-01 4.29354645e-02 -8.54095817e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: You are the key contact person for the consolidation and analysis of needs of our scientists and will compile the information needed for strategic decisions of the board of directors. As a coordinator you will identify, propose and support solutions for relevant topics such as: - high performance data management documentation, exchange and curation systems - e-lab journals, repository systems, data management plans - identification, architecture and design of new technologies As contact person for data management you will lead a user group consisting of experts out of our research departments and you will organize and partly lead trainings and workshops or working groups and coordinate various activities with external partner. Your profile: You have a university degree (MSc degree) in computational science, or a related scientific discipline. You have already demonstrated experience in research and project management. You are interested to work closely together with our researchers on data science questions. You are a team player and your strengths include taking personal responsibility, high motivation for excellence, flair for elaborating out-of-the-box solutions. Strong interpersonal and communication skills are essential alongside the ability to collaborate with peers and scientific partners. Excellent communication skills in English and German are mandatory. The position is first limited to 2 years. Benötigte Skills Englisch Datawarehouse',\n", + " 'soft_skills': '[\"Coordinating\", \"Research\", \"Verbal Communication Skills\", \"Collaboration\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Compilers\", \"Computer Science\", \"Data Management\", \"Strategic Decision-Making\", \"Instructor-Led Training\", \"Journals\", \"Activism\", \"E (Programming Language)\", \"Data System\", \"Limiter\", \"Data Science\", \"Consolidation\", \"Data Management Plan\", \"Personalization\", \"High Performance Fortran (Concurrent Programming Language)\", \"Clinical Data Management\", \"Group Work\", \"Project Management\", \"Curation\", \"Document Management\"]',\n", + " 'languages': \"['English', 'Limburger', 'Armenian', 'Burmese', 'Marshallese']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'backend engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.93609878e-01 2.38891289e-01 4.06519204e-01 8.61738622e-02\\n4.30715382e-01 -3.36003989e-01 -1.61139861e-01 4.15474802e-01\\n-2.22977281e-01 -4.06614542e-01 3.22800167e-02 -2.33797461e-01\\n-1.81276754e-01 3.70774493e-02 1.14459306e-01 3.06226760e-01\\n2.59609461e-01 1.38207167e-01 -1.49424911e-01 2.96247959e-01\\n2.26440821e-02 -1.15986533e-01 -7.01595917e-02 6.96500957e-01\\n2.38875687e-01 2.42276047e-03 -7.36258850e-02 8.17331579e-03\\n-3.74730796e-01 -2.12735474e-01 3.14971775e-01 8.04221109e-02\\n-1.93355992e-01 -3.48446935e-01 1.14553824e-01 -1.63933206e-02\\n-5.59780225e-02 5.46178818e-02 -4.02057730e-02 1.58703566e-01\\n-3.46587300e-01 -3.32108766e-01 6.46114647e-02 -1.01506516e-01\\n-1.74282655e-01 -2.04824984e-01 1.58100843e-01 1.23577155e-02\\n1.80191755e-01 -5.01877740e-02 -6.75082028e-01 2.83348083e-01\\n-2.94771165e-01 -1.77697107e-01 2.59799689e-01 4.32879180e-01\\n-9.26483870e-02 -5.27739286e-01 -3.44643801e-01 -2.36072272e-01\\n-3.45843919e-02 -2.29838520e-01 -3.18135917e-02 -2.46542886e-01\\n4.45711583e-01 5.74431792e-02 5.61939552e-02 3.09277266e-01\\n-8.14386129e-01 2.50118244e-02 -2.65291959e-01 1.99728534e-02\\n-3.72764885e-01 -9.62876305e-02 -1.77409217e-01 -8.27456713e-02\\n-1.31562427e-01 3.56826633e-01 9.23013389e-02 1.01975895e-01\\n-1.28166929e-01 3.41862798e-01 -4.89135161e-02 2.48563722e-01\\n2.97479749e-01 1.69398651e-01 1.25267029e-01 3.27102959e-01\\n-3.98054957e-01 4.20897961e-01 5.09159975e-02 -1.93239093e-01\\n1.64171532e-01 2.00794071e-01 4.55226481e-01 -1.19181676e-03\\n5.25993556e-02 1.89613581e-01 -2.00487807e-01 2.93803096e-01\\n1.45152658e-01 -3.49965125e-01 8.76319483e-02 -1.85571685e-01\\n-3.33059840e-02 -3.20639014e-02 -8.61280039e-03 2.72219449e-01\\n-2.23039925e-01 4.03921366e-01 9.93230939e-02 -1.35570511e-01\\n-4.14746962e-02 -4.92252499e-01 -1.07711010e-01 1.11355364e-01\\n-1.04618661e-01 4.85642366e-02 2.16749683e-01 2.86736665e-03\\n3.32172841e-01 2.07647771e-01 1.98120639e-01 9.30774868e-01\\n-1.64547250e-01 1.20297529e-01 -2.23193675e-01 2.93913275e-01\\n2.06457078e-01 -3.05778980e-01 1.92143530e-01 3.55971813e-01\\n1.32995337e-01 -1.19181678e-01 -2.06582144e-01 2.63321638e-01\\n-1.14014521e-01 -1.08888298e-01 -3.24816316e-01 1.07738346e-01\\n-5.34843318e-02 -4.39587772e-01 5.70724070e-01 2.10099176e-01\\n3.10971588e-01 1.33211896e-01 6.17062300e-02 -6.54556081e-02\\n-1.67697757e-01 2.17937693e-01 2.98321620e-02 3.95708978e-01\\n-3.12394023e-01 -2.07883716e-01 -1.46958038e-01 2.38432676e-01\\n-2.57893324e-01 1.56059146e-01 -4.17890362e-02 -1.27407759e-01\\n2.68129200e-01 1.47033066e-01 -3.21199149e-01 2.32876346e-01\\n-1.22794658e-01 -8.21662322e-02 -1.24143466e-01 4.21050042e-01\\n-9.30321515e-02 3.07438165e-01 -8.63883644e-02 -8.50551799e-02\\n3.67024392e-01 4.13951501e-02 2.15933882e-02 -6.62171543e-02\\n3.52650434e-01 -9.36069936e-02 1.92063496e-01 8.87553915e-02\\n-7.27480292e-01 3.16697806e-01 1.00090923e-02 -2.19500527e-01\\n4.24255766e-02 8.01644698e-02 3.02408308e-01 -2.62604147e-01\\n-4.88790423e-02 -1.56213805e-01 -4.13161844e-01 -2.36048266e-01\\n-3.19609612e-01 1.34402290e-02 5.10799348e-01 -3.87044489e-01\\n-1.13480836e-01 1.59627795e-01 -4.51957405e-01 -2.31548818e-03\\n1.46003291e-01 2.20162228e-01 8.68461803e-02 -9.90828220e-03\\n-1.54263660e-01 -5.71936309e-01 -1.91813540e-02 -4.70927209e-01\\n-4.51677084e-01 1.20089911e-01 -2.75478691e-01 2.59934515e-01\\n1.17856026e-01 6.19736463e-02 -1.28895000e-01 9.96115282e-02\\n-1.53735220e-01 -8.12084526e-02 1.64510593e-01 7.38456398e-02\\n3.23495746e-01 -9.34387222e-02 -3.81825566e-01 5.07051528e-01\\n-1.89304501e-01 4.31637198e-01 2.24017218e-01 -7.86682129e-01\\n5.20439684e-01 2.74043739e-01 -2.99668219e-02 -3.13462645e-01\\n3.44040006e-01 -3.81539524e-01 -6.39368445e-02 1.96082950e-01\\n-3.24838191e-01 -2.26552024e-01 1.98541224e-01 -1.54704243e-01\\n-3.28236192e-01 4.71681178e-01 1.40720382e-01 5.63852228e-02\\n3.13498616e-01 -4.33293134e-01 -7.83182159e-02 1.27258673e-01\\n-1.06406502e-01 -1.69061497e-01 -3.92591506e-01 9.94565040e-02\\n-4.80437055e-02 -4.98033851e-01 -1.40958935e-01 -2.57244170e-01\\n-1.20046243e-01 -2.53951907e-01 -3.18261802e-01 4.51069862e-01\\n2.66787469e-01 1.67708591e-01 9.88931954e-03 -1.66336056e-02\\n-4.58749570e-02 -6.88831985e-01 -5.52613437e-02 5.17901108e-02\\n5.06908178e-01 2.22246930e-01 3.00061423e-02 -1.48189127e-01\\n7.61991441e-02 4.98650491e-01 -2.72759050e-01 -4.26857024e-01\\n-2.43592970e-02 2.61391342e-01 -4.54875566e-02 -1.18633829e-01\\n1.27020419e-01 3.54829013e-01 -1.84543654e-01 2.92894486e-02\\n-7.42090195e-02 -1.04620993e-01 3.75977576e-01 -8.64647776e-02\\n-4.39321637e-01 -2.64059275e-01 -3.06752715e-02 1.57340258e-01\\n-6.35601878e-01 -1.54002532e-01 5.35644293e-01 3.23377192e-01\\n2.93191224e-01 1.43129870e-01 1.90904245e-01 -6.30392432e-02\\n-2.00198635e-01 -2.56239027e-01 1.30318984e-01 1.79456592e-01\\n4.58607972e-02 -9.91028640e-03 -1.02244593e-01 -6.28867209e-01\\n-3.56497335e+00 -1.09059595e-01 2.95530744e-02 -2.01199010e-01\\n1.51337430e-01 -3.90374698e-02 8.31093714e-02 -2.36304998e-02\\n-2.40197793e-01 5.50046377e-02 -1.55483678e-01 -3.31812501e-02\\n3.34858485e-02 3.66769046e-01 1.48168042e-01 2.89231867e-01\\n1.93419337e-01 -2.58534819e-01 -1.26192480e-01 2.91335732e-01\\n-3.32587436e-02 -6.20354533e-01 1.36375114e-01 -1.18142828e-01\\n2.46186942e-01 3.04621696e-01 -3.31380665e-01 1.43322451e-02\\n-2.59599864e-01 -2.68341511e-01 -1.53494999e-01 -1.76931530e-01\\n-1.97081149e-01 1.16458192e-01 6.44529685e-02 -1.32931620e-01\\n1.55163378e-01 -3.02147418e-01 -1.07161582e-01 -4.40383226e-01\\n9.55890939e-02 -5.82825780e-01 -7.76957721e-02 -1.27146691e-01\\n5.73833227e-01 -2.02072829e-01 1.73009068e-01 7.46131167e-02\\n2.10641861e-01 2.12821007e-01 -8.39439854e-02 1.16213341e-03\\n-9.89572853e-02 -4.18801725e-01 -1.18972965e-01 -2.75553346e-01\\n5.45228302e-01 5.61980426e-01 -2.41372064e-01 1.25805782e-02\\n1.54746547e-01 -4.06510532e-01 -2.86750644e-01 -3.52933437e-01\\n-1.56786039e-01 -2.24532202e-01 -7.57250547e-01 -4.33150202e-01\\n-1.35912135e-01 -3.32371332e-02 -1.81100398e-01 5.64168572e-01\\n-3.49484354e-01 -4.85767275e-01 1.13857023e-01 -6.55135572e-01\\n1.34307534e-01 -1.33043200e-01 1.39974430e-01 -2.74026275e-01\\n-2.29048133e-01 -4.89738882e-01 3.58809344e-02 4.80971374e-02\\n-1.65877774e-01 -1.67593494e-01 4.86486889e-02 -2.02189684e-01\\n-1.89152449e-01 -3.54811162e-01 4.06996608e-01 8.73230770e-02\\n3.26633424e-01 2.06164971e-01 3.51561010e-01 6.33392017e-03\\n2.87124157e-01 3.16155888e-02 -2.42189933e-02 -3.94499272e-01\\n1.97839543e-01 2.54175495e-02 5.35093725e-01 -2.28016257e-01\\n-3.70822437e-02 2.56957918e-01 -2.74864316e-01 -1.72441691e-01\\n3.40094924e-01 1.25207439e-01 -3.68755348e-02 -6.99666813e-02\\n3.77682418e-01 -4.86819208e-01 -2.50421137e-01 2.89516091e-01\\n3.14677693e-02 6.27655566e-01 2.67627067e-03 -4.07129467e-01\\n-2.93779939e-01 5.02326727e-01 -4.95841689e-02 -2.20926069e-02\\n-7.29439314e-03 1.67353258e-01 -1.13846846e-01 3.03356677e-01\\n-2.55704410e-02 -2.27774605e-01 -2.19074965e-01 -1.00820020e-01\\n-1.48912519e-02 9.50258076e-02 2.78793752e-01 5.22605069e-02\\n-1.07417010e-01 -2.20965907e-01 -1.10825241e-01 2.27296069e-01\\n1.15736507e-01 4.09057498e-01 9.79579911e-02 -1.35097861e-01\\n-1.13826342e-01 3.99900675e-01 -7.19479099e-02 2.14880407e-01\\n-1.27812982e-01 8.08658004e-02 -4.81646746e-01 -2.99193949e-01\\n-2.26996407e-01 -3.35824043e-01 -1.60585716e-02 3.69948566e-01\\n9.82603356e-02 1.85063314e-02 1.04750998e-01 -4.31171715e-01\\n2.97974497e-01 2.32055530e-01 1.35562375e-01 8.32751691e-02\\n4.72751819e-02 4.55825627e-01 -2.82913167e-02 -1.81868866e-01\\n-2.64092475e-01 3.11721917e-02 -2.47771934e-01 -1.77410111e-01\\n8.89511481e-02 -4.98778582e-01 -6.30569011e-02 3.77205878e-01\\n1.12663455e-01 -1.19142421e-01 -2.32778132e-01 3.34653616e-01\\n1.30876824e-01 -2.34998763e-01 -2.06198379e-01 9.22033489e-02\\n2.89426178e-01 3.80586609e-02 2.05401108e-01 -2.96563178e-01\\n-1.38198838e-01 2.89196800e-02 -1.74159575e-02 3.57182264e-01\\n1.22165747e-01 3.35684717e-02 -2.02647895e-01 -2.37464920e-01\\n4.63229746e-01 -5.35888299e-02 -1.29708782e-01 -1.89220220e-01\\n2.00605448e-02 -1.16237901e-01 -3.91905874e-01 1.16337918e-01\\n-2.55453889e-03 -6.86675310e-02 1.18453857e-02 6.07794374e-02\\n1.97381109e-01 1.53668895e-01 -4.19552833e-01 -2.13881642e-01\\n-2.68490940e-01 -2.54990816e-01 9.55193639e-02 -2.67180711e-01\\n8.25620368e-02 -5.32196239e-02 -5.24900377e-01 2.15598673e-01\\n-3.72449130e-01 -3.28205116e-02 1.60175920e-01 1.21457875e-01\\n-3.71385604e-01 -1.22445514e-02 3.55883427e-02 2.43479848e-01\\n-2.84140080e-01 -3.29540282e-01 -1.27125725e-01 -9.54927325e-01\\n2.62994736e-01 -2.15929113e-02 -1.31272033e-01 2.29328889e-02\\n-5.55946641e-02 -5.28777301e-01 8.80087018e-02 -4.27142113e-01\\n-1.35827914e-01 -9.56085250e-02 -1.93846345e-01 -2.57752895e-01\\n2.83961631e-02 -1.86536327e-01 -3.61455292e-01 3.05089831e-01\\n-4.34960246e-01 2.67076105e-01 -1.04473136e-01 3.08978353e-02\\n1.59328002e-02 -2.91863114e-01 1.57511756e-01 -3.22308868e-01\\n-4.21874553e-01 -3.29817414e-01 -2.85484910e-01 -2.63700336e-01\\n1.65135544e-02 -3.33607763e-01 -2.31386229e-01 1.34944648e-01\\n3.32801700e-01 2.06625700e-01 -2.04392746e-01 -2.01781780e-01\\n1.41719446e-01 -4.08606708e-01 -1.87410060e-02 -2.61192799e-01\\n-2.63936948e-02 -3.14512625e-02 3.41264099e-01 2.63043698e-02\\n1.14875734e-01 -4.06881154e-01 4.87597555e-01 -2.83275306e-01\\n-3.52412343e-01 -5.08526340e-02 7.50014931e-02 2.49135233e-02\\n2.39399076e-01 -5.32572627e-01 -3.96086928e-03 2.39025190e-01\\n1.34059623e-01 8.01380649e-02 2.15935051e-01 1.32551156e-02\\n-3.40506099e-02 2.00467199e-01 -4.40197736e-01 5.45715913e-02\\n6.91948175e-01 1.50111631e-01 -1.32525647e-02 2.74009436e-01\\n9.68970284e-02 4.82644707e-01 5.02747834e-01 4.70060818e-02\\n-4.54125926e-02 2.57688522e-01 1.18416458e-01 -4.61049050e-01\\n-9.44672748e-02 -5.70178702e-02 -2.14389935e-01 -2.51579702e-01\\n5.80012918e-01 4.97951359e-01 -4.62980747e-01 -3.10142189e-01\\n8.26426223e-03 -1.38878793e-01 2.76910514e-01 -5.78650692e-03\\n-1.75659321e-02 -1.74563751e-01 4.13125604e-01 -1.73979476e-02\\n1.82498664e-01 6.18550777e-01 -2.02543497e-01 -3.57427508e-01\\n-1.72339514e-01 1.78634912e-01 1.07070766e-01 5.20022571e-01\\n-2.14211613e-01 1.14053443e-01 -5.12657054e-02 1.68751761e-01\\n-1.81583334e-02 2.80707985e-01 1.73050076e-01 4.02726941e-02\\n2.26445660e-01 9.24593806e-02 3.53091866e-01 5.52189708e-01\\n1.97609529e-01 4.55545247e-01 2.31048226e-01 2.76453495e-02\\n3.91012192e-01 5.79747736e-01 4.00589377e-01 7.03532696e-02\\n7.84077048e-02 3.33520584e-02 1.11131221e-01 -7.91525543e-02\\n4.17556673e-01 3.62965763e-01 3.53308201e-01 8.84305596e-01\\n3.17459077e-01 1.74994960e-01 7.03384638e-01 -6.07203960e-01\\n-3.31194848e-01 2.77323425e-02 4.10406977e-01 -2.76196927e-01\\n-1.63556769e-01 2.03860238e-01 -2.53282338e-01 2.22693563e-01\\n-5.18233478e-01 -8.51147845e-02 2.46700714e-03 -2.14886051e-02\\n4.83288020e-02 -6.70591965e-02 -2.50459880e-01 7.66222775e-02\\n-1.04427367e-01 -9.44490880e-02 -2.75075495e-01 -2.52621531e-01\\n-2.58810312e-01 -2.54299715e-02 -9.66081172e-02 -1.48612633e-01\\n4.54210769e-03 -4.13908422e-01 -5.64513765e-02 -7.10941777e-02\\n3.72165203e-01 -1.06282502e-01 3.30390001e-04 -1.42651796e-01\\n7.53116235e-02 3.75107080e-01 6.28862202e-01 8.91210791e-03\\n2.26281077e-01 -1.53021544e-01 -1.58797950e-01 1.04411848e-01\\n1.83248427e-02 2.60638651e-02 6.80985898e-02 2.36380041e-01\\n-3.44355226e-01 -5.78044131e-02 4.09140736e-02 3.98082346e-01\\n-3.22269320e-01 -1.31370157e-01 -1.16176158e-01 2.37682253e-01\\n-3.89103591e-02 1.06229022e-01 -2.14491755e-01 6.19591065e-02\\n-2.59762526e-01 -5.56123495e-01 4.27867442e-01 -1.30392566e-01\\n-4.90329042e-02 2.54992638e-02 2.39688084e-01 1.71841636e-01\\n-2.21876353e-01 -1.11957178e-01 7.04075536e-03 1.77370280e-01\\n-5.51433535e-04 2.96390235e-01 -1.65025413e-01 -2.16927961e-01\\n-2.08410129e-01 2.79140890e-01 -9.12882686e-02 2.19906922e-02\\n-1.73163503e-01 3.68318945e-01 3.82369272e-02 -3.87145840e-02\\n2.72268564e-01 8.05011764e-03 -2.18180999e-01 -2.49690548e-01\\n-3.06666374e-01 -1.14471808e-01 1.37831271e-01 7.59873306e-03\\n2.48591796e-01 -3.64565909e-01 -3.83512788e-02 4.01993887e-03\\n1.16353389e-02 -2.40991428e-01 -1.00444414e-01 -7.91347027e-03]]',\n", + " 'job_description': 'Job Informationen ABOUT THE POSITION: As a Senior Backend Engineer at our company, you build scalable, reliable and secure cloud based distributed data processing systems. You are passionate about complex data processing pipelines and keep up to date with best practices and new technology. You like to mentor your colleagues. You do not believe in big rewrites, but in continuous improvements. You will shape and implement our API services at internet scale. Together with your team, you are going to be constantly improving existing features, reliability, flexibility and scalability of our system. REQUIREMENTS: - Extensive experience with data pipelines, service oriented architecture and distributed systems - Experience with web-scale systems handling hundreds of concurrent requests at low latency - Extensive experience with relational and document oriented Databases - Experience with Docker, Kubernetes on GCP and/or AWS - Fluency in Python, C++ and another language - MSc/PhD in computer science or similar Benötigte Skills Senior C++ Python',\n", + " 'soft_skills': '[\"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"MSC Software\", \"Kubernetes\", \"Low Latency\", \"System Requirements\", \"Web Operating Systems\", \"Computer Science\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Pipelining\", \"Data Processing Systems\", \"Document-Oriented Databases\", \"Docker (Software)\", \"Handle Systems\", \"Scalability\", \"Continuous Improvement Process\", \"Electronic Data Processing\", \"Google Cloud Platform (GCP)\", \"Amazon Data Pipeline\", \"Application Programming Interface (API)\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Oromo']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'natural sciences analyst in the data analytics center 80-100%',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.57026637e-01 2.32859910e-01 4.49538589e-01 2.51548178e-02\\n4.80997980e-01 -1.22811340e-01 -1.84660733e-01 3.95710647e-01\\n-5.45534715e-02 -3.93182874e-01 -1.87619075e-01 -3.27390939e-01\\n-2.68942527e-02 1.70797706e-01 6.34973347e-02 4.91061807e-01\\n4.01009321e-01 -3.90403382e-02 -1.41165122e-01 1.73101842e-01\\n1.14961557e-01 2.94276085e-02 -6.37388974e-03 7.87521958e-01\\n4.24799711e-01 1.53540839e-02 -4.53360938e-02 2.09784389e-01\\n-9.32722986e-02 -2.03079015e-01 5.21673143e-01 1.01629809e-01\\n-1.11199744e-01 -3.08389753e-01 1.08123966e-01 3.45423520e-01\\n-1.89463586e-01 -2.57994652e-01 1.03104617e-02 9.31920558e-02\\n-4.41020846e-01 -2.07396895e-01 -2.56249994e-01 2.99774483e-03\\n-3.44060540e-01 -4.18555379e-01 1.56056300e-01 4.51763347e-02\\n1.78728074e-01 9.71842408e-02 -5.34556985e-01 2.67277926e-01\\n-2.15723664e-01 -1.93916112e-01 2.80144215e-01 6.12116814e-01\\n-3.25951613e-02 -3.85909796e-01 -4.62889642e-01 -3.14310908e-01\\n-1.61973722e-02 1.03870193e-02 7.69643337e-02 -3.60796928e-01\\n5.45450985e-01 1.55598924e-01 -5.07377982e-02 3.48809659e-01\\n-8.46281052e-01 -2.54447907e-01 -2.78374255e-01 8.86999890e-02\\n-4.10117805e-01 -2.42118910e-02 -3.07875961e-01 -3.25006306e-01\\n-1.12284027e-01 3.49935472e-01 -3.58467773e-02 7.70632923e-02\\n-8.21742490e-02 3.30984592e-01 -1.51708692e-01 2.51516461e-01\\n1.28069192e-01 3.22894782e-01 2.13751376e-01 1.80065840e-01\\n-4.23576057e-01 3.60498965e-01 3.87176797e-02 -2.50796497e-01\\n2.10082620e-01 1.96960568e-01 5.14130116e-01 6.04663454e-02\\n2.28174776e-01 3.01261023e-02 -3.45859945e-01 3.34119916e-01\\n2.15730801e-01 -2.73031831e-01 5.89941293e-02 -5.78461327e-02\\n-4.04592976e-02 7.71831125e-02 7.44080590e-03 5.35540655e-02\\n-6.39500499e-01 4.05967832e-01 -2.58963741e-02 -1.59378290e-01\\n-1.04025096e-01 -5.57688296e-01 -7.46137723e-02 2.05339700e-01\\n9.54833552e-02 6.00272119e-02 2.62174103e-02 2.21273273e-01\\n1.14882171e-01 -1.11209609e-01 1.49443239e-01 8.08853865e-01\\n-2.08337545e-01 1.03631347e-01 -7.34756663e-02 3.28317583e-01\\n6.19633161e-02 -4.33119774e-01 3.78388941e-01 1.87561601e-01\\n1.08988397e-01 -1.70387745e-01 -1.73783183e-01 2.32716531e-01\\n-9.32767242e-02 -2.16305017e-01 -4.03837621e-01 4.00942534e-01\\n-7.67959207e-02 -5.38568616e-01 6.38004184e-01 -1.47096679e-01\\n1.64926335e-01 -1.09805048e-01 -3.99201885e-02 -7.18866214e-02\\n-1.56253502e-02 1.96676075e-01 9.17166471e-02 8.61058086e-02\\n-3.64854276e-01 -1.91198319e-01 -1.94103539e-01 1.42814532e-01\\n-4.05855834e-01 3.68909031e-01 -5.29045910e-02 -3.41837592e-02\\n2.72442937e-01 -1.65721506e-01 -3.78602564e-01 1.32145315e-01\\n-1.09018356e-01 -1.52125686e-01 -1.68152303e-02 3.45511705e-01\\n-2.73657978e-01 3.45603287e-01 -9.80914831e-02 -3.44916314e-01\\n5.18423736e-01 -1.66100096e-02 1.79128438e-01 -9.52855051e-02\\n2.41020843e-01 1.10802222e-02 2.17567071e-01 9.62459445e-02\\n-9.51022685e-01 3.58012259e-01 -6.82983696e-02 -2.56234527e-01\\n4.77700904e-02 -5.43281212e-02 3.20888788e-01 -3.55847061e-01\\n3.50575112e-02 -5.23100756e-02 -2.15538830e-01 -2.24566191e-01\\n-3.54361832e-01 -1.91397220e-03 4.13029253e-01 -3.57138634e-01\\n-6.19838051e-02 1.85428426e-01 -6.48666620e-01 -1.50099248e-01\\n2.77622789e-03 6.16695881e-02 2.33756259e-01 1.59729227e-01\\n-5.99138364e-02 -6.18933558e-01 -5.98843656e-02 -4.58616912e-01\\n-2.13881373e-01 1.10051550e-01 -3.40521485e-01 2.26632237e-01\\n9.17410403e-02 2.67065540e-02 -6.05090484e-02 1.00387201e-01\\n-3.03604960e-01 1.49411008e-01 1.78440809e-01 2.41558328e-02\\n4.22505319e-01 1.37451708e-01 -2.93442428e-01 5.30336082e-01\\n5.26351808e-03 5.79741538e-01 1.15536407e-01 -6.10773981e-01\\n6.34115100e-01 5.60458899e-01 5.88066429e-02 -3.41705859e-01\\n7.68642545e-01 -2.79623061e-01 -2.65128970e-01 1.64247870e-01\\n-5.17295718e-01 -2.30743378e-01 2.82620370e-01 -3.74629498e-01\\n-1.85256630e-01 6.19185209e-01 4.99050096e-02 2.19829753e-01\\n2.67357349e-01 -3.23548019e-01 -1.60016790e-01 2.73893237e-01\\n-1.66666746e-01 -4.09484565e-01 -4.98129070e-01 -9.21313688e-02\\n-2.18864664e-01 -4.43600565e-01 -2.86780417e-01 -3.66399109e-01\\n-6.08428717e-02 -2.76474983e-01 -4.69804853e-02 2.45209485e-01\\n2.68670946e-01 1.48205876e-01 -6.63997829e-02 -3.56292576e-02\\n-1.16876923e-01 -5.48016071e-01 -3.35141793e-02 -1.23014562e-01\\n2.78979421e-01 1.17278479e-01 -3.97346821e-03 -2.98613757e-02\\n1.28887758e-01 5.45204997e-01 -5.90454996e-01 -3.58010232e-01\\n1.53878808e-01 1.11363992e-01 -1.49001077e-01 -9.94416326e-02\\n1.82871968e-01 2.62295634e-01 -4.45262730e-01 4.85505797e-02\\n-2.04700381e-01 1.39749035e-01 2.51096010e-01 -5.24999984e-02\\n-1.19583309e-02 -3.15133482e-01 -1.32949978e-01 2.06718504e-01\\n-3.90434504e-01 -3.06351721e-01 3.97500098e-01 6.45411983e-02\\n1.82518095e-01 1.17900390e-02 1.69844478e-01 1.89772081e-02\\n-4.10269916e-01 -3.58275145e-01 1.93300679e-01 1.62263632e-01\\n8.06408525e-02 2.38803267e-01 -1.84621420e-02 -4.33840066e-01\\n-3.01369357e+00 -9.25986003e-03 2.71226522e-02 2.88780667e-02\\n2.41721958e-01 -9.19614583e-02 9.53968242e-02 -1.27794430e-01\\n-3.56067061e-01 -3.76129411e-02 -2.84587443e-01 -3.65566522e-01\\n6.43449500e-02 3.26058656e-01 1.97178990e-01 1.71657294e-01\\n4.54631373e-02 -3.98157537e-01 5.04033677e-02 4.05748069e-01\\n-1.98825121e-01 -7.34363675e-01 1.00544751e-01 -1.77852884e-02\\n2.72573799e-01 3.26390594e-01 -4.44615573e-01 -1.22324243e-01\\n-3.77843887e-01 -3.32682520e-01 2.77853876e-01 -3.77132684e-01\\n-5.85132018e-02 4.68275964e-01 3.62387419e-01 5.06925881e-02\\n8.85643512e-02 -2.49168128e-01 -2.06807554e-01 -4.21991050e-01\\n1.27034932e-01 -5.22061706e-01 -4.78484072e-02 -1.07993633e-01\\n7.50361800e-01 -2.46234536e-01 1.64006770e-01 1.42132133e-01\\n9.56447572e-02 1.49268121e-01 2.07988136e-02 9.36464965e-02\\n-2.22134590e-01 -2.49629468e-01 -1.20853513e-01 -2.74069279e-01\\n5.03938198e-01 5.81365943e-01 -2.17699885e-01 -7.17258006e-02\\n1.51621580e-01 -2.58919388e-01 -4.84758794e-01 -3.56745064e-01\\n-3.02731693e-01 -7.63115808e-02 -6.53507531e-01 -4.33541000e-01\\n1.22266700e-02 -8.61201435e-02 9.29719061e-02 6.39364302e-01\\n-3.54325533e-01 -2.19040900e-01 -7.25362897e-02 -5.98300040e-01\\n3.17874789e-01 -2.71902025e-01 2.73977406e-02 -1.41174957e-01\\n-1.30984172e-01 -5.70347190e-01 5.47683872e-02 5.62292859e-02\\n2.99988985e-02 -3.14170897e-01 1.22435212e-01 -2.67989993e-01\\n-3.44589651e-01 -5.15109360e-01 3.46117795e-01 9.28433985e-02\\n3.35208863e-01 2.59848922e-01 7.12175444e-02 4.05142456e-03\\n3.14271271e-01 6.22371025e-02 -4.83980216e-02 -3.21013927e-01\\n2.37014264e-01 -3.14252190e-02 3.50010157e-01 -2.20663249e-01\\n-7.88869038e-02 -2.24479288e-03 -2.32809201e-01 -6.40945509e-02\\n2.43184239e-01 4.75468114e-02 7.41802529e-02 -2.92238295e-01\\n2.97158450e-01 -3.85935724e-01 8.52149650e-02 1.90458402e-01\\n-2.49815732e-03 6.39606059e-01 -2.68411953e-02 -2.19962552e-01\\n-1.06874026e-01 4.31823432e-01 2.45202314e-02 3.44640948e-02\\n4.93701585e-02 1.28278717e-01 -3.21355581e-01 1.23101771e-01\\n-1.68633945e-02 -1.90198392e-01 -3.13608706e-01 -8.11837316e-02\\n-1.29237413e-01 4.52779114e-01 3.01990867e-01 2.26245284e-01\\n-2.10702077e-01 -4.33065146e-01 3.85124572e-02 2.88214266e-01\\n4.01564062e-01 3.81129503e-01 1.81791902e-01 -2.31978312e-01\\n1.65736407e-01 3.30299556e-01 -9.77759510e-02 2.72958249e-01\\n-2.68060625e-01 1.13535941e-01 -4.45803642e-01 -2.44421035e-01\\n-3.07307631e-01 -1.60357624e-01 3.11684012e-01 3.22335184e-01\\n1.17697671e-01 -7.86273926e-02 1.40108496e-01 -2.56674290e-01\\n2.11889625e-01 1.78246737e-01 2.19879150e-01 7.79627860e-02\\n-3.41139585e-02 5.86338282e-01 -1.58264846e-01 -1.27774790e-01\\n-1.26485825e-01 5.37346900e-02 -2.02410668e-01 -2.54812121e-01\\n5.96531294e-02 -5.43468654e-01 -1.78533524e-01 2.56937742e-01\\n1.26081288e-01 -1.38659909e-01 -1.77114591e-01 1.64927959e-01\\n7.37129524e-02 -4.26522344e-01 -2.69472569e-01 3.13849300e-02\\n4.05274540e-01 2.44829357e-01 2.36457422e-01 -5.19285500e-01\\n3.90290990e-02 8.07213038e-02 5.95652983e-02 3.69214296e-01\\n1.58686787e-02 5.24478965e-02 -3.23414743e-01 -3.29418272e-01\\n2.93491066e-01 -2.64199942e-01 -4.00011204e-02 9.75667536e-02\\n5.13917282e-02 -6.48334250e-02 -3.00796986e-01 3.90332490e-02\\n-7.95642436e-02 -2.39373431e-01 1.27652176e-02 4.66234349e-02\\n1.16232663e-01 9.41022113e-03 -7.49878109e-01 -1.96364552e-01\\n4.27595712e-02 1.04536831e-01 4.76645902e-02 -4.39880252e-01\\n3.45617384e-02 -2.61739194e-01 -6.19036198e-01 2.71417648e-01\\n-1.87229097e-01 -9.29183662e-02 3.03549886e-01 -9.23155844e-02\\n-2.88450152e-01 -1.23714231e-01 1.33523107e-01 2.65539348e-01\\n-2.96349823e-01 -2.33279362e-01 3.23117822e-02 -9.61833537e-01\\n1.36610880e-01 -1.06027767e-01 -1.45877868e-01 -1.34234987e-02\\n4.05852012e-02 -6.24699116e-01 -1.61697119e-02 -3.52300882e-01\\n-3.01595815e-02 1.28174461e-02 -2.65058011e-01 -3.34245294e-01\\n1.24676473e-01 -2.07298994e-03 -1.12535149e-01 4.65211421e-01\\n-3.40684533e-01 2.08662748e-01 -9.98018682e-02 -1.08090229e-03\\n-7.04711452e-02 -3.15981746e-01 7.85160884e-02 -1.78168193e-01\\n-2.67534167e-01 -2.92007804e-01 -1.19538620e-01 -2.74561763e-01\\n5.94165735e-03 -4.36324805e-01 -1.00406162e-01 8.87636617e-02\\n1.89011216e-01 -1.54783845e-01 -1.62415236e-01 -2.05399036e-01\\n1.76479712e-01 -3.96805048e-01 4.96299602e-02 -1.03275657e-01\\n-8.74767751e-02 -1.09891616e-01 7.98672587e-02 1.49992362e-01\\n2.70124882e-01 -2.58046716e-01 4.42743182e-01 -5.01851261e-01\\n-4.42844242e-01 -6.45101592e-02 1.90198235e-02 -8.62704813e-02\\n2.76149064e-01 -5.21948934e-01 -5.89596555e-02 5.15529275e-01\\n9.91999358e-02 -2.89785434e-02 2.62380362e-01 -3.02511573e-01\\n-5.61039969e-02 2.75320441e-01 -3.62686753e-01 4.52141203e-02\\n8.41727614e-01 2.58628964e-01 1.69141591e-01 2.11347669e-01\\n1.39386319e-02 2.88870871e-01 5.00673294e-01 -2.10309811e-02\\n-2.34550536e-02 3.79900962e-01 3.08323950e-01 -3.57062221e-01\\n-2.04509437e-01 8.08746740e-03 -1.37418360e-02 -3.08307022e-01\\n5.64902663e-01 3.32624018e-01 -4.47578967e-01 -2.53448695e-01\\n-1.21224403e-01 -7.70931244e-02 2.81691968e-01 -5.45202009e-02\\n-9.25263017e-03 -1.12561271e-01 3.41794401e-01 -1.72428358e-02\\n1.89360797e-01 5.46753168e-01 -1.52272701e-01 -1.66926399e-01\\n-1.24997534e-01 2.82572925e-01 -5.51241636e-03 4.45639849e-01\\n-1.14057139e-01 4.88606989e-01 -4.75103222e-02 1.27330065e-01\\n-7.71888271e-02 2.03393735e-02 2.07223326e-01 1.83528010e-02\\n6.85198084e-02 3.05145442e-01 3.52287441e-01 5.30791044e-01\\n3.33111644e-01 4.07866985e-01 1.60128489e-01 -2.88168322e-02\\n5.09625256e-01 4.52942550e-01 4.65596467e-01 6.90903366e-02\\n-1.78485960e-02 1.02063738e-01 1.56433553e-01 6.60609230e-02\\n3.14570576e-01 2.35686138e-01 -2.30064690e-02 8.92342806e-01\\n3.05503190e-01 4.02906358e-01 6.81557953e-01 -5.76159835e-01\\n-3.37559819e-01 5.55145331e-02 5.48905730e-01 -4.37043011e-01\\n-3.18805315e-02 -1.70637444e-02 -1.02974996e-01 2.52092272e-01\\n-4.82573569e-01 -9.30496007e-02 -7.10384548e-03 1.51796699e-01\\n2.43809409e-02 -1.30091310e-01 -1.93892628e-01 6.91255508e-03\\n-1.80541307e-01 -2.75741577e-01 -4.48408097e-01 -2.14134976e-01\\n-2.66081750e-01 -1.81547940e-01 -8.90488625e-02 -2.87575088e-02\\n-2.69867741e-02 -2.43930742e-01 2.25435495e-02 -2.05790587e-02\\n4.78397489e-01 -1.95816696e-01 -1.97785676e-01 -2.01633722e-02\\n4.62873816e-01 2.74234325e-01 6.33875489e-01 -6.54845014e-02\\n4.02360857e-02 -2.50678241e-01 -1.90865740e-01 1.19856469e-01\\n3.45932841e-02 5.90173155e-02 8.04963857e-02 2.63062805e-01\\n-2.32039064e-01 -1.52065128e-01 1.05749458e-01 3.21067572e-01\\n-4.82729375e-01 2.09050551e-02 -8.86834115e-02 1.23163007e-01\\n2.90174168e-02 2.28717268e-01 -2.68276185e-01 1.40786961e-01\\n-8.89001340e-02 -5.85573614e-01 2.36395612e-01 -3.11900526e-02\\n-1.48994923e-01 -5.77228554e-02 3.04284632e-01 3.02178234e-01\\n-1.14178017e-01 -2.04233490e-02 -1.49043538e-02 6.24620393e-02\\n4.20494601e-02 3.27142537e-01 -2.23094240e-01 -3.70707750e-01\\n-3.39821547e-01 1.25315398e-01 -2.64248669e-01 -2.79772356e-02\\n-1.44816607e-01 4.03059065e-01 2.28753611e-02 1.07820839e-01\\n4.20216829e-01 6.19112328e-03 -2.10129634e-01 -2.68353790e-01\\n-6.64839000e-02 -2.17292935e-01 -1.02714658e-01 -3.29420753e-02\\n2.31097609e-01 -3.14566046e-01 -3.02571386e-01 -3.95944893e-01\\n1.33118182e-02 -2.33249456e-01 1.08794644e-01 3.77419591e-03]]',\n", + " 'job_description': \"80-100% The University of Basel is the oldest university in Switzerland, and ranked among the best universities in the world due to its research achievements. It counts over 12'000 students and 4'300 researchers in 7 faculties active in domains from humanities and social sciences to natural sciences. The University of Basel is promoting the growing area of Data Science by establishing a university-wide Data Analytics Center (DAC). The goal of the DAC is the advancement of research and the development of transdisciplinary synergies at the University of Basel and its partners. The service and support activities of the DAC will be provided by the Center for Scientific Computing (sciCORE) and the Digital Humanities Lab (DHLab) in collaboration with the Department of Mathematics and Computer Science (DMI). We invite applications for a data analysis support specialist (80-100%) to support quantitative research in biomedical and natural sciences. Your position The successful candidate will provide consulting and execute data analysis in research projects in various domains of natural sciences (life sciences, physics, chemistry). The primary mandate is to support research groups in need of data analysis by applying appropriate statistical, computational, and visualization methods, helping with experimental design, and making fundamental methodological advances. The position will involve hands-on data analysis and contributions to teaching (postgraduate courses), and will be hosted at sciCORE. Your profile Our ideal candidate has a strong and diversified experience (postdoctoral level) in data analysis, in particular with applications involving analysis of complex data sets (multi-scale data) using machine learning, deep learning, and other advanced statistics. Experience in high-performance computing environments (Linux) and knowledge of R and Python are required. Previous work with imaging data or *omics data, and familiarity with at least one state of the art deep learning framework will be an asset. Given the important service aspect of the position, we expect our candidate to be flexible, proactive, capable of following several projects in parallel and to have a curiosity for natural sciences in general. We offer you At sciCORE, you will be part of a highly efficient and motivated team of diverse data analysts (from biostatistics to astrophysics), data managers, and scientific IT specialists. As a member of the DAC you will also join forces with support scientists at the DHLab and DMI. External collaborations and co-authorship in publications can be expected. We support our team members in their own training, networking and career development. You will have the opportunity to contribute in shaping the organization and development of this data analysis platform. The initial contract is for 2 years, with possibility of renewal into a permanent contract. The University of Basel is an equal opportunity and family friendly employer committed to excellence through diversity. Application / Contact We look forward to receiving your complete application via the university's online application portal (see button below). Applications should include a curriculum vitae, list of publications indicating the five most significant papers, a link to your code repository or portfolio of data analysis projects, and names of three potential referees. Applications by email cannot be considered. For further information, please contact Dr. Geoffrey Fucile scicore@unibas.ch. The position will remain open until filled.\",\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Proactivity\", \"Friendliness\", \"Team Motivation\", \"Teaching\", \"Curiosity\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Physical Chemistry\", \"Social Sciences\", \"Computer Science\", \"Analytics\", \"Life Sciences\", \"Data Management\", \"High Performance Computing\", \"Machine Learning\", \"Physical Science\", \"Visualization\", \"Natural Sciences\", \"Scale (Map)\", \"Activism\", \"Python (Programming Language)\", \"Levelling\", \"Computational Statistics\", \"Executable\", \"DR-DOS\", \"Hosting\", \"Minimum Data Set\", \"Quantitative Research\", \"Data Science\", \"Scientific Computing\", \"Equalization\", \"R (Programming Language)\", \"Biostatistics\", \"Deep Learning\", \"Survey Data Analysis\", \"Receivables\", \"Humanism\", \"Imaging\", \"Astrophysics\", \"Digital Humanities\", \"Logistics Support Activity\", \"Career Development\", \"Centering\", \"Experimental Design\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Kanuri', 'Malayalam']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data management software engineer (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-4.04619247e-01 2.37983733e-01 5.40266812e-01 -1.12129927e-01\\n4.37007159e-01 -1.66741446e-01 9.36558768e-02 1.43781796e-01\\n-5.95327504e-02 -2.85568804e-01 -8.73139426e-02 -3.11490208e-01\\n-1.39583722e-01 3.46547067e-02 1.82638094e-01 5.57610631e-01\\n2.44249985e-01 3.16596553e-02 -2.86290497e-01 2.62290210e-01\\n8.15777108e-02 2.19135615e-03 -1.83395296e-03 7.27779508e-01\\n4.82069224e-01 -1.06577566e-02 -5.05015664e-02 -9.33204442e-02\\n-2.81174451e-01 -2.42011547e-01 4.95320857e-01 8.96196067e-03\\n-1.20651104e-01 -2.40456611e-01 8.06236491e-02 1.22564416e-02\\n-1.48057103e-01 -1.06481209e-01 1.21796452e-01 1.73215896e-01\\n-4.96022940e-01 -2.60411412e-01 2.62095500e-02 1.38251418e-02\\n-3.01295906e-01 -3.48673105e-01 -1.62118301e-01 3.50100663e-03\\n5.86734824e-02 1.94859207e-02 -5.66971362e-01 3.77061307e-01\\n-3.04460287e-01 -8.67407545e-02 2.38588333e-01 5.48194766e-01\\n4.77187969e-02 -6.60159528e-01 -3.13554347e-01 -2.63900489e-01\\n2.55775660e-01 -7.51654506e-02 1.72610834e-01 -1.17358841e-01\\n2.44545251e-01 -9.78455096e-02 -1.42277703e-01 4.92575258e-01\\n-5.47234476e-01 -2.31302887e-01 -3.20883602e-01 -1.02473021e-01\\n-2.80921131e-01 6.80592237e-03 -2.66840160e-01 -1.10580124e-01\\n-9.71888304e-02 3.42994839e-01 -3.02659478e-02 9.73834097e-03\\n-2.83317894e-01 2.43967295e-01 -5.57391606e-02 2.09963724e-01\\n2.92557299e-01 2.54828036e-01 2.88724452e-01 3.51320118e-01\\n-5.62426984e-01 5.28845251e-01 1.95096627e-01 -4.15902555e-01\\n1.82263881e-01 4.19072211e-02 5.09649217e-01 1.01629868e-01\\n1.08120821e-01 1.42978922e-01 -7.13947639e-02 1.65729195e-01\\n2.17857599e-01 -2.52555430e-01 2.44665697e-01 -8.46438557e-02\\n-2.55009592e-01 9.78587121e-02 5.92012145e-02 2.32916564e-01\\n-3.92669410e-01 3.68564278e-01 3.05657625e-01 -2.71317095e-01\\n-2.13548332e-01 -6.32961214e-01 -1.21821808e-02 -5.68022579e-03\\n-7.13676736e-02 1.82955071e-01 3.73892099e-01 1.40550569e-01\\n2.75219262e-01 -4.41518910e-02 2.56982148e-01 8.66636574e-01\\n1.41872661e-02 1.26892710e-02 -4.14273530e-01 3.25541824e-01\\n1.10272102e-01 -1.38247252e-01 1.38583824e-01 1.94496036e-01\\n4.75180782e-02 -6.52725175e-02 -3.39238822e-01 3.52184981e-01\\n-8.06421489e-02 -2.05381155e-01 -2.65099943e-01 4.25683819e-02\\n-3.20510209e-01 -4.84697640e-01 4.83849496e-01 2.18779724e-02\\n1.63596675e-01 -2.04687044e-01 3.37807052e-02 -8.81746039e-02\\n1.17199585e-01 3.58839929e-01 8.93602595e-02 1.60861626e-01\\n-2.86633253e-01 -1.86741233e-01 -2.15303034e-01 3.45746040e-01\\n-9.84168425e-02 1.60792157e-01 -6.55362234e-02 -9.98022407e-02\\n2.64480740e-01 1.16503663e-01 -3.36339295e-01 2.58920819e-01\\n9.31335315e-02 -3.83129209e-01 -2.39339858e-01 3.04429919e-01\\n-1.87159404e-01 9.06329826e-02 1.20504260e-01 -2.82558709e-01\\n5.19752383e-01 1.43018082e-01 3.21446151e-01 -1.10254951e-01\\n3.34982723e-01 -2.15550095e-01 1.95001960e-01 1.37457967e-01\\n-6.17527902e-01 3.15541923e-01 -7.87449032e-02 -4.68976311e-02\\n1.05896004e-01 6.64212331e-02 2.44559258e-01 -4.23880428e-01\\n5.57942614e-02 -2.21643612e-01 -2.94313461e-01 -5.07443964e-01\\n-1.27429634e-01 -1.25017837e-01 4.02090639e-01 -2.68896610e-01\\n-1.84477210e-01 1.64503783e-01 -4.57849234e-01 -1.02896854e-01\\n2.10981965e-01 1.05404221e-01 2.76525412e-02 1.89035341e-01\\n-1.05318569e-01 -5.74167550e-01 3.17176222e-03 -4.74228531e-01\\n-5.94800651e-01 2.15164591e-02 -1.05155818e-01 2.14459583e-01\\n-2.41729058e-02 3.10297739e-02 -8.35366398e-02 1.39171839e-01\\n-3.50253761e-01 1.09422497e-01 7.46040866e-02 1.94349006e-01\\n2.93067276e-01 -2.10401583e-02 -4.28189695e-01 5.57240784e-01\\n-1.77550480e-01 4.45131987e-01 2.71552801e-01 -8.76573265e-01\\n5.07878959e-01 1.11600816e-01 1.47071555e-01 -3.84725988e-01\\n4.93396819e-01 -4.78541642e-01 1.11739859e-01 1.55768320e-01\\n-3.06489319e-01 -1.61424905e-01 3.56450975e-01 -1.92792878e-01\\n-2.88099974e-01 5.55766046e-01 2.09969431e-01 5.25403954e-02\\n2.23205253e-01 -3.01926821e-01 -4.44831327e-02 -1.43713474e-01\\n-1.59706011e-01 -2.00237438e-01 -4.59070593e-01 2.37458393e-01\\n3.41521055e-02 -6.08120799e-01 -1.42498448e-01 -4.44842309e-01\\n-2.13198870e-01 -3.42192918e-01 -2.08161578e-01 3.53546679e-01\\n2.42999882e-01 1.24524780e-01 1.11621581e-01 -7.79664516e-02\\n-1.20637394e-01 -4.84014243e-01 -2.31873423e-01 1.95983127e-01\\n4.54764992e-01 2.13018864e-01 -9.15084928e-02 5.85114770e-02\\n-4.07321863e-02 6.29579961e-01 -2.68378079e-01 -2.62396902e-01\\n1.45282626e-01 2.31789425e-01 7.99286515e-02 -1.04344845e-01\\n-3.76019627e-04 3.13822210e-01 -7.85001516e-02 4.32799980e-02\\n-6.18564850e-03 3.33624659e-03 5.20001888e-01 3.62874530e-02\\n-1.70965791e-01 -1.37271687e-01 2.88175382e-02 1.97090745e-01\\n-5.59848905e-01 -1.42540261e-01 5.46197951e-01 2.76924551e-01\\n1.55028656e-01 2.68276006e-01 3.25991839e-01 -1.03694253e-01\\n-2.92399228e-01 -2.51350880e-01 1.94376737e-01 9.74271670e-02\\n-9.42894369e-02 -5.86205721e-02 -1.53127804e-01 -3.40821087e-01\\n-2.85217285e+00 -1.88795060e-01 8.91871527e-02 -2.93270886e-01\\n1.11793593e-01 -9.50155631e-02 5.40353321e-02 1.88888106e-02\\n-3.14325631e-01 2.54123181e-01 -1.26362681e-01 -2.08593294e-01\\n9.16382745e-02 1.61194175e-01 9.26532596e-02 1.73650503e-01\\n1.66929603e-01 -1.71514511e-01 -1.51542291e-01 3.25114310e-01\\n-8.72226208e-02 -7.84008026e-01 2.36325994e-01 1.07066128e-02\\n2.11145118e-01 1.19726062e-01 -4.96786267e-01 -3.76782939e-02\\n-3.36528689e-01 -3.32790852e-01 1.26519725e-01 -3.50257486e-01\\n-1.11090176e-01 3.04731518e-01 2.54530996e-01 -1.38892651e-01\\n4.96143885e-02 -4.33304876e-01 -6.62626624e-02 -4.68338072e-01\\n2.27370530e-01 -6.71676695e-01 5.24142049e-02 -1.57562181e-01\\n7.03120589e-01 -3.63721788e-01 1.08109847e-01 4.35707867e-02\\n2.26515263e-01 1.07248716e-01 5.76627254e-03 1.00331218e-03\\n-2.63620168e-01 -3.64444584e-01 7.23023489e-02 -1.44800738e-01\\n3.63338292e-01 5.34996629e-01 -1.85651228e-01 -7.53171090e-03\\n-7.91930314e-03 -2.85261929e-01 -3.88378143e-01 -3.76208991e-01\\n-3.92676264e-01 -1.56235620e-01 -6.93375170e-01 -3.87414664e-01\\n-1.55271247e-01 -1.07208885e-01 -2.15029687e-01 6.76994145e-01\\n-3.23091567e-01 -3.30971569e-01 -5.64591549e-02 -5.44489086e-01\\n1.13336138e-01 -3.74319553e-01 9.50227976e-02 -1.93543166e-01\\n-3.51352990e-01 -5.35526335e-01 2.84751415e-01 -5.11846952e-02\\n-8.59607309e-02 -4.58651856e-02 -5.46038151e-04 -2.23485962e-01\\n-2.80590624e-01 -2.99374610e-01 4.29836422e-01 1.94793969e-01\\n3.72653335e-01 1.76799670e-01 3.39215457e-01 1.62148267e-01\\n2.73224264e-01 -1.83394566e-01 8.96622986e-02 -2.28090391e-01\\n1.13777220e-01 3.39884534e-02 6.75155759e-01 -2.06183940e-01\\n1.39843807e-01 9.27630812e-02 -2.50225365e-01 -7.90078864e-02\\n5.19218922e-01 -5.60257360e-02 8.24456438e-02 -7.16828927e-02\\n3.97831857e-01 -6.23222709e-01 -2.19044089e-01 7.03658462e-02\\n-2.54930090e-02 6.92952991e-01 3.89781594e-03 -4.58891869e-01\\n-2.32829571e-01 3.48263830e-01 -9.64898318e-02 -1.83875874e-01\\n-3.95994991e-01 2.77174264e-01 -2.41616726e-01 3.10650080e-01\\n-1.76558569e-01 -2.08769560e-01 -4.05650616e-01 -1.15276769e-01\\n1.49738509e-02 2.06496015e-01 2.57720381e-01 -7.65000063e-04\\n4.83232215e-02 -2.22599074e-01 -2.77172297e-01 1.79709479e-01\\n4.09779131e-01 3.68144661e-01 1.30963072e-01 -1.97389871e-01\\n-4.37393710e-02 2.51729459e-01 -2.18878135e-01 1.55812651e-01\\n-1.66286543e-01 7.31632859e-02 -4.00317848e-01 -2.74588138e-01\\n-1.69619750e-02 -3.40102255e-01 7.36577734e-02 4.18122441e-01\\n9.39067453e-02 -9.00268331e-02 3.44443768e-02 -3.66995543e-01\\n4.74671423e-01 7.72488341e-02 1.44116610e-01 1.71139553e-01\\n3.50709967e-02 7.12831914e-01 -1.42141372e-01 -4.03422974e-02\\n-1.01996899e-01 -2.06455708e-01 -2.98413903e-01 -1.83103055e-01\\n5.37399873e-02 -2.48847485e-01 -5.99636100e-02 5.33710301e-01\\n6.03590570e-02 -3.34941447e-01 -1.24634756e-02 4.08279240e-01\\n2.58461274e-02 -1.74661115e-01 -2.11270183e-01 1.36494741e-01\\n2.27859169e-01 1.09098926e-01 2.69303143e-01 -3.99424285e-01\\n-2.49650642e-01 1.82069223e-02 -7.86261186e-02 4.70528781e-01\\n1.63750738e-01 2.16054171e-01 -1.42498940e-01 -3.37230057e-01\\n4.91614431e-01 -3.02777261e-01 -2.81928837e-01 8.89430791e-02\\n1.36825651e-01 -1.46780685e-01 -4.68305677e-01 -4.25700322e-02\\n1.25938654e-02 -2.86509663e-01 1.70969367e-01 6.38114437e-02\\n1.44428164e-01 -7.26535404e-03 -5.86546123e-01 -2.51299322e-01\\n-2.54348367e-01 -1.70128066e-02 1.00141779e-01 -5.17459631e-01\\n-6.78743050e-02 -2.26186380e-01 -6.03169024e-01 3.15219253e-01\\n-2.58965820e-01 -5.17338291e-02 8.25141817e-02 1.67500153e-01\\n-3.25172901e-01 -1.97020054e-01 1.64911360e-01 1.29827052e-01\\n-2.44464055e-01 -1.70529023e-01 2.05898136e-02 -9.78021085e-01\\n9.99073982e-02 4.30547968e-02 -1.15357511e-01 -1.54904025e-02\\n-8.92051905e-02 -6.16842747e-01 1.51459068e-01 -2.25688696e-01\\n1.55858826e-02 1.21558681e-01 -1.74848154e-01 -4.15118963e-01\\n1.14509590e-01 -4.48607132e-02 -1.11757629e-01 3.45323801e-01\\n-3.38240057e-01 2.83532441e-01 -1.15263164e-01 7.12145194e-02\\n4.04450260e-02 -2.41171733e-01 2.69744545e-01 -3.17019463e-01\\n-4.24472809e-01 -1.50734916e-01 -4.60670203e-01 -2.84482986e-01\\n7.25717172e-02 -2.55070865e-01 -2.73223966e-01 2.94841938e-02\\n3.70932639e-01 1.77226558e-01 -1.61630258e-01 -2.04684839e-01\\n5.69073744e-02 -4.37787563e-01 2.40399837e-01 -2.60320008e-01\\n-7.59520684e-04 -2.56424040e-01 3.55218127e-02 -3.45481597e-02\\n-4.89706658e-02 -3.05138052e-01 4.13746417e-01 -2.70617336e-01\\n-3.71311367e-01 -1.46093354e-01 5.72561212e-02 1.21661641e-01\\n4.23636138e-01 -4.58766431e-01 2.95110010e-02 1.84038773e-01\\n6.31051585e-02 1.28558025e-01 3.33770335e-01 -1.09484695e-01\\n-1.41081139e-01 3.05547804e-01 -5.24600089e-01 2.37237453e-01\\n7.29221284e-01 2.45229721e-01 7.28756264e-02 2.62991637e-01\\n2.53038913e-01 2.12367058e-01 3.98523778e-01 6.73928438e-03\\n-8.80630836e-02 2.46501848e-01 -1.33792758e-02 -5.46766818e-01\\n-1.59371302e-01 -1.98051453e-01 -2.22146437e-01 -4.31959093e-01\\n5.79992890e-01 3.94977093e-01 -3.29748213e-01 -2.03464001e-01\\n1.03392769e-02 -4.71854322e-02 2.42079481e-01 -1.22004353e-01\\n-8.00133795e-02 9.67349038e-02 6.49829924e-01 6.81088045e-02\\n3.74114037e-01 5.67824483e-01 -1.71621829e-01 -3.62950176e-01\\n-2.26238772e-01 2.73131073e-01 1.12081580e-01 4.49022204e-01\\n-7.55982846e-02 2.46758863e-01 1.81800462e-02 2.28397503e-01\\n7.48162204e-03 -5.31575009e-02 4.60344665e-02 4.39571479e-04\\n1.68793470e-01 1.15588017e-01 1.36030719e-01 3.72072428e-01\\n1.93238571e-01 4.16310579e-01 2.90624470e-01 4.13490459e-02\\n3.95109653e-01 8.31477165e-01 4.60052967e-01 2.18542576e-01\\n6.23000935e-02 -2.00765226e-02 -9.23007354e-02 1.53437881e-02\\n2.89922953e-01 3.11228842e-01 -3.01881172e-02 8.65579605e-01\\n2.89954245e-01 2.57361382e-01 5.90918660e-01 -5.42949975e-01\\n-5.10221243e-01 4.02284265e-02 4.53992575e-01 -3.54481161e-01\\n-5.39796688e-02 9.78207737e-02 -2.55533010e-01 2.75271803e-01\\n-3.95960122e-01 -1.46565646e-01 6.82097152e-02 -1.97503805e-01\\n9.75523442e-02 -2.27495469e-02 -1.88074842e-01 1.75879851e-01\\n-2.64562488e-01 -2.34696865e-01 -1.70675278e-01 -1.10963091e-01\\n-3.21500808e-01 1.37956869e-02 -1.00710325e-01 -5.56597374e-02\\n-8.15834776e-02 -3.74000490e-01 -1.12941198e-01 1.76065519e-01\\n3.51574689e-01 -1.30940035e-01 -7.18945116e-02 -5.37310503e-02\\n1.88916214e-02 2.46333972e-01 5.37510812e-01 -9.72419009e-02\\n1.26664028e-01 -1.12915412e-01 -4.05702323e-01 1.72997769e-02\\n1.33593902e-01 7.45546445e-02 6.65446296e-02 4.03454989e-01\\n-3.97048533e-01 -8.17728117e-02 2.23992869e-01 3.37566942e-01\\n-4.01896626e-01 9.17375088e-02 -2.29286686e-01 1.92628279e-01\\n2.24581107e-01 1.60014763e-01 -3.16188604e-01 8.65127072e-02\\n-2.07978994e-01 -5.02468884e-01 3.69291455e-01 -2.60421067e-01\\n-1.35686085e-01 1.44794315e-01 1.94411069e-01 1.72236651e-01\\n-4.05288428e-01 1.01948716e-01 -1.18795119e-01 3.52785915e-01\\n2.78403722e-02 2.67738551e-01 -2.71615237e-01 -1.68528873e-02\\n-2.70849913e-01 2.13211104e-01 -1.21285208e-01 1.93018094e-01\\n-3.81334983e-02 2.27157235e-01 1.16759017e-01 -4.44551781e-02\\n1.99618146e-01 1.60197970e-02 -2.00895458e-01 -2.73232073e-01\\n-2.25943699e-01 -2.96091080e-01 2.19793394e-01 -2.18684927e-01\\n1.98216841e-01 -4.06210095e-01 -1.91734508e-01 -2.20438987e-01\\n-1.61545664e-01 -3.84984344e-01 -1.62086561e-01 -2.44810116e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is a strong brand – more than 1.4 million Swiss customers place their trust in our products and services. Ihr Aufgabenbereich Developing and supporting Data Management Framework application(s) ranging from small integration tools to full-blown applications, over time building up an integrated solution suite enabling Data Management to support the enterprise in becoming even more data driven Contributing to overall data management capability development, spanning various topics like data modeling, metadata management, data standardization and master & reference data management Being part of the development team supporting the Risk Modelling Platform generic components underpinning a range of business critical capital modelling applications Supporting incident resolution; working with the BUs to mitigate associated impacts Ihr Profil University level education, e.g. Computer Science, Computer Engineering, or Engineering Discipline 10+ years of experience in enterprise-grade software development 10+ years of experience with C# .NET framework development High degree of customer focus & end-to-end solution delivery attitude Proficiency in C# and object-oriented programming concepts, enjoys writing clear, maintainable code, tests and documentation Familiarity with enterprise application architecture patterns (concurrency models, unit-of-work etc.), transactional processing, domain driven design, REST APIs and service oriented architecture including solid skills in managing complexity with decoupling and dependency injection Knows how to approach a problem statement, steer the requirements engineering and drive the technical solution design Experience in the data management domain (metadata, master & reference, data quality, etc.) are a plus Has excellent communication skills, both written and oral, able to interact with different management levels Fluent in written & spoken English, German is a plus Ihre Chance Haben wir Ihr Interesse geweckt und Sie sind bereit eine neue Herausforderung anzunehmen? Dann schicken Sie Ihre vollständigen Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C .NET Entwicklung Sprachen: Deutsch Englisch Job ID: 7379',\n", + " 'soft_skills': '[\"Writing\", \"Management\", \"Integration\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"Reference Data\", \"Mitigation\", \"Tooling\", \"Capitalization\", \"Interactivity\", \"Computer Science\", \"Metadata\", \"Data Management\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Build Time\", \"Branding\", \".NET Framework\", \"Service Level Management\", \"E (Programming Language)\", \"Levelling\", \"Applications Architecture\", \"Concurrency Pattern\", \"Programming Concepts\", \"C (Programming Language)\", \"Domain Driven Design\", \"Application Portfolio Management\", \"C# (Programming Language)\", \"Dependency Injection\", \"Solution Delivery\", \"Requirements Engineering\", \"Clinical Data Management\", \"Capability Development\", \"Computer Engineering\", \"Technical Solution Design\", \"Transaction Processing (Business)\", \"Software Development\", \"Solution Design\", \"Metadata Modeling\", \"Maintaining Code\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Welsh', 'Sundanese']\"},\n", + " {'company_id': '82',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.nicollcurtin.com',\n", + " 'jobdescription_embedded': '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'job_description': 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " 'languages': \"['English', 'Sinhalese']\"},\n", + " {'company_id': '107',\n", + " 'job_title': 'software engineer, full-stack',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.spotme.com',\n", + " 'jobdescription_embedded': '[[-2.40400463e-01 1.97630540e-01 5.63323975e-01 3.51318382e-02\\n5.01096666e-01 -1.70995638e-01 1.30098253e-01 3.23587179e-01\\n5.76776499e-03 -4.04238015e-01 -2.61640493e-02 -3.40038747e-01\\n-2.14768038e-03 2.19531074e-01 1.51836947e-01 4.26689506e-01\\n1.15004860e-01 1.13718919e-01 -1.38945699e-01 2.45707050e-01\\n5.85400686e-02 -2.23842412e-01 3.17868888e-02 7.21959472e-01\\n4.38476354e-01 -1.36701493e-02 -9.36722308e-02 -8.37761015e-02\\n-2.61980355e-01 -1.31882980e-01 4.96534377e-01 4.42499928e-02\\n-1.43099621e-01 -3.95369768e-01 1.17438890e-01 9.74113569e-02\\n-2.47757256e-01 -1.06715642e-01 1.81171149e-02 2.25266770e-01\\n-6.19741678e-01 -3.02673876e-01 8.98771957e-02 3.95925492e-02\\n-2.01780722e-01 -1.54720053e-01 -1.49527356e-01 -9.32055414e-02\\n1.37238517e-01 6.89389706e-02 -5.80855489e-01 2.89805204e-01\\n-1.24821439e-01 -2.60120928e-01 1.52547538e-01 5.81285417e-01\\n1.19390659e-01 -4.93634701e-01 -3.81300509e-01 -3.08212280e-01\\n3.37897874e-02 -8.07853490e-02 3.25256065e-02 -3.23344827e-01\\n1.85178548e-01 -2.40102768e-01 -1.30819798e-01 3.72485608e-01\\n-7.33904541e-01 1.32199168e-01 -1.81066379e-01 1.80613846e-02\\n-2.75795043e-01 4.19326760e-02 -3.56090963e-01 -6.84670731e-03\\n-1.23984255e-01 4.11063135e-01 9.92610902e-02 4.34811302e-02\\n-2.15636075e-01 1.80195943e-01 -9.93093476e-02 3.65351588e-01\\n2.72442222e-01 2.28126019e-01 2.88385779e-01 2.81622082e-01\\n-3.06123674e-01 4.95402157e-01 9.07175168e-02 -2.06902191e-01\\n3.20295393e-01 9.28660333e-02 3.82545590e-01 1.06864892e-01\\n5.80978133e-02 4.74007279e-02 -2.83134878e-01 2.41040051e-01\\n2.68704444e-01 -3.42991710e-01 7.12204948e-02 -1.25418184e-02\\n2.85970792e-03 3.95689867e-02 2.36287992e-02 4.98494580e-02\\n-2.10560367e-01 3.11114401e-01 1.71718091e-01 -1.95118234e-01\\n-1.64982736e-01 -4.40360963e-01 -5.28094731e-02 1.09355785e-01\\n-6.95057726e-03 2.44240910e-01 1.27988279e-01 -2.44312789e-02\\n2.74561971e-01 1.59978181e-01 4.91214693e-02 8.51621449e-01\\n-1.02241769e-01 1.10107340e-01 -2.23378107e-01 3.96864593e-01\\n1.48746207e-01 -1.92108780e-01 1.50460780e-01 1.75290361e-01\\n-3.76281794e-03 -2.11077020e-01 -1.74743220e-01 2.57089257e-01\\n9.83193964e-02 -1.96954861e-01 -2.19653800e-01 7.74057508e-02\\n2.91319508e-02 -3.83033007e-01 5.74635208e-01 7.32359141e-02\\n1.98952630e-01 3.49525623e-02 2.07471788e-01 -9.73836482e-02\\n-1.53020486e-01 2.15654999e-01 1.02469295e-01 1.90818146e-01\\n-3.57469320e-01 -2.27697641e-01 -1.40938312e-01 1.56861141e-01\\n-3.47734481e-01 6.63239509e-02 -1.20990023e-01 -2.92543471e-02\\n9.19779539e-02 1.27250358e-01 -2.42252797e-01 1.86331928e-01\\n-1.68862864e-01 -3.52367945e-02 9.25690234e-02 2.58517951e-01\\n-1.24217302e-01 4.40193750e-02 1.54193521e-01 -1.37341663e-01\\n4.83789444e-01 1.63370654e-01 2.82406002e-01 -5.40166628e-03\\n2.72691607e-01 -9.06459242e-02 3.32005955e-02 2.83354640e-01\\n-5.95211327e-01 2.60163009e-01 4.86185886e-02 -1.52183875e-01\\n2.20841601e-01 -4.89621498e-02 3.33764344e-01 -2.44724527e-01\\n2.61320379e-02 -2.20419809e-01 -3.11882973e-01 -2.12899357e-01\\n-2.55517989e-01 1.90029945e-02 3.29124451e-01 -3.43474627e-01\\n-9.94950980e-02 1.39676213e-01 -3.58133048e-01 -1.51155218e-01\\n1.50586545e-01 2.29285702e-01 -3.03761177e-02 5.29668778e-02\\n-2.36380532e-01 -5.55879474e-01 -5.89318760e-02 -3.61062557e-01\\n-4.21809763e-01 -1.47245407e-01 -3.73610705e-01 2.24480957e-01\\n9.62531865e-02 7.77265504e-02 -7.62180164e-02 -1.71432626e-02\\n-2.18350619e-01 -8.58573169e-02 -1.03445470e-01 1.41953513e-01\\n2.14144662e-01 1.14593627e-02 -3.42618734e-01 4.67578143e-01\\n-3.13855320e-01 5.82264483e-01 9.68542695e-02 -8.92894149e-01\\n4.12237108e-01 3.77169281e-01 -8.22556391e-02 -3.35643679e-01\\n4.07640457e-01 -3.16129506e-01 3.12804338e-03 5.68594038e-02\\n-2.50917792e-01 -2.00854242e-01 3.10433626e-01 -1.79649144e-01\\n-1.70935139e-01 3.82668793e-01 1.54696882e-01 6.39696941e-02\\n2.31497645e-01 -2.84989446e-01 -6.99492916e-02 6.34367540e-02\\n-1.37858063e-01 -2.95477837e-01 -4.79834139e-01 -8.27073157e-02\\n-1.78520665e-01 -3.65665585e-01 -3.85746285e-02 -4.41298306e-01\\n-3.88754196e-02 -4.11427677e-01 -2.73065954e-01 2.30137557e-01\\n2.25607872e-01 7.53567442e-02 -7.97303021e-02 2.22392678e-02\\n-8.69884938e-02 -7.11877584e-01 -7.27395713e-02 1.99392304e-01\\n4.49619472e-01 1.92375094e-01 2.04983681e-01 -1.68405119e-02\\n1.58491224e-01 5.30636847e-01 -2.31263474e-01 -3.14097911e-01\\n1.68046057e-01 1.60174206e-01 6.06726594e-02 -1.16466008e-01\\n6.95126504e-02 1.71664342e-01 -1.25021547e-01 -1.11185797e-01\\n-8.75117406e-02 3.37184183e-02 3.21332246e-01 1.37699870e-02\\n-3.83301795e-01 -1.18764602e-01 1.81452371e-02 8.19623694e-02\\n-4.72699285e-01 -5.35693914e-02 4.39307272e-01 2.09295675e-01\\n1.74808860e-01 3.05434950e-02 -6.21095262e-02 -7.89260343e-02\\n-1.67857304e-01 -2.88180739e-01 4.49139923e-01 -3.40612698e-03\\n1.07076745e-02 -6.04003668e-03 -9.97231007e-02 -5.62836945e-01\\n-3.85604334e+00 -3.06096256e-01 -2.17095427e-02 -1.52174667e-01\\n1.81380302e-01 -9.87992808e-02 5.11485487e-02 2.75125541e-02\\n-1.86300442e-01 1.84034601e-01 -1.01250380e-01 -4.98850867e-02\\n5.03376834e-02 1.35255694e-01 -9.79454815e-02 3.08787674e-01\\n2.53067732e-01 -1.18250117e-01 -3.93342413e-02 3.37812692e-01\\n-2.70375490e-01 -6.28200591e-01 2.04252541e-01 8.02262314e-03\\n2.01692507e-01 8.28427076e-02 -3.18369120e-01 1.73995793e-02\\n-1.46909699e-01 -2.28586525e-01 4.65484373e-02 -2.11322740e-01\\n-2.00234175e-01 1.45331606e-01 1.60587937e-01 -3.60628739e-02\\n-1.03552967e-01 -4.02897358e-01 -1.78891435e-01 -4.11203653e-01\\n1.74476996e-01 -5.54367483e-01 4.62452024e-02 -7.14308098e-02\\n7.17277169e-01 -2.75852293e-01 1.01454988e-01 4.51595709e-02\\n9.03848335e-02 -7.46952519e-02 1.66990489e-01 -9.55210999e-02\\n-2.45651945e-01 -3.15913409e-01 5.39972410e-02 -3.16813231e-01\\n5.11650681e-01 3.72740358e-01 -1.89699292e-01 4.99364883e-02\\n2.29884490e-01 -2.32672051e-01 -4.17112857e-01 -2.49968946e-01\\n-1.64882451e-01 -1.46982625e-01 -7.23980308e-01 -2.68446833e-01\\n-3.37805092e-01 -1.84834450e-01 -1.40902787e-01 6.67070746e-01\\n-2.43701920e-01 -4.37611312e-01 -2.15024408e-02 -5.18822670e-01\\n4.24354702e-01 -7.06763938e-02 -1.25403345e-01 -2.13564053e-01\\n-4.25147444e-01 -4.48690772e-01 4.47396673e-02 -3.22221667e-02\\n-2.69515842e-01 -2.23609880e-01 2.86455359e-02 -1.20944344e-01\\n-2.66924053e-01 -4.59144086e-01 3.98916066e-01 5.32186404e-02\\n2.79953420e-01 8.20406973e-02 4.02146697e-01 -4.86590760e-03\\n2.50995070e-01 4.59606051e-02 1.90061722e-02 -2.79628307e-01\\n5.70133142e-02 5.75441420e-02 5.20314276e-01 -2.65294492e-01\\n-9.76848975e-02 1.34546280e-01 -1.52699664e-01 -1.41446531e-01\\n3.74082446e-01 -8.56827796e-02 -6.84424862e-02 -1.64177939e-02\\n2.27126315e-01 -3.68513793e-01 -1.21798851e-01 1.94658190e-01\\n1.60996690e-01 6.11565530e-01 -3.13959643e-02 -3.92673045e-01\\n-1.66057959e-01 5.16290188e-01 -1.17700689e-01 1.62404940e-01\\n-1.77671224e-01 1.56527475e-01 -3.30200613e-01 3.76040846e-01\\n3.51698846e-02 -3.15770686e-01 -1.89164832e-01 -1.77387014e-01\\n3.12955454e-02 3.30063850e-01 2.76066095e-01 -9.61499438e-02\\n5.76080084e-02 -3.06134343e-01 -2.53567338e-01 1.03917137e-01\\n1.85485005e-01 4.96149451e-01 2.26737782e-01 -2.46465400e-01\\n8.96139815e-02 2.96713352e-01 -1.50801674e-01 1.90327451e-01\\n-2.79412210e-01 1.70360342e-01 -5.34062684e-01 -3.74208331e-01\\n-1.95670053e-01 -5.39525032e-01 1.01839729e-01 3.99693936e-01\\n2.29516774e-01 -2.54050922e-02 -8.41786712e-03 -5.85178256e-01\\n1.79648578e-01 1.74315333e-01 2.08718777e-01 1.37811378e-01\\n3.43236662e-02 5.60864985e-01 -6.34282306e-02 -1.11126661e-01\\n-1.53333917e-01 -7.51884133e-02 -1.52754799e-01 -2.00737521e-01\\n1.46958545e-01 -5.13727725e-01 4.81228046e-02 3.81421566e-01\\n3.13540608e-01 -3.45883340e-01 -1.36690885e-01 3.71160507e-01\\n5.16890511e-02 -2.06954211e-01 -2.72507161e-01 1.01223938e-01\\n3.48876745e-01 1.40752152e-01 2.88368076e-01 -3.08144778e-01\\n-1.13375448e-02 2.68610287e-02 -2.94122864e-02 3.67565364e-01\\n-1.07029259e-01 1.46502331e-01 -2.24190041e-01 -1.49244398e-01\\n4.55777228e-01 -2.11892114e-03 -1.60293877e-01 -2.13626385e-01\\n6.69422001e-02 -1.72527656e-01 -4.21129644e-01 1.30561054e-01\\n6.72175065e-02 -3.84037852e-01 4.06961553e-02 2.66011268e-01\\n7.27313990e-03 5.31712435e-02 -4.64924991e-01 -2.75938570e-01\\n-1.38838232e-01 -1.32132366e-01 2.36682311e-01 -3.22118938e-01\\n3.44947018e-02 -1.30300894e-01 -5.58969975e-01 1.38452813e-01\\n-1.14771716e-01 -1.97601676e-01 2.23057032e-01 1.81729779e-01\\n-2.39020601e-01 -1.36484087e-01 1.06901906e-01 4.19840723e-01\\n-2.96230674e-01 -3.65360707e-01 2.50597317e-02 -8.91939461e-01\\n1.23446621e-01 1.68549821e-01 -1.83998756e-02 1.66467950e-01\\n-1.96006536e-01 -5.17029345e-01 1.62770927e-01 -2.92382628e-01\\n-2.42331594e-01 -5.86269759e-02 -2.44610310e-01 -2.37711310e-01\\n1.51871960e-03 -4.39848192e-02 -2.89438814e-01 4.55137223e-01\\n-3.32576960e-01 3.08391154e-01 -9.84539241e-02 -4.37901309e-03\\n-3.77516299e-02 -1.09420314e-01 1.79311886e-01 -3.24526399e-01\\n-3.88705760e-01 -2.83786774e-01 -5.84797442e-01 -3.96170646e-01\\n1.04313493e-02 -2.04382032e-01 -1.93081290e-01 1.47021294e-01\\n3.70075703e-01 1.83904618e-01 6.72855647e-03 -2.88460284e-01\\n1.42788552e-02 -3.97846609e-01 5.68935759e-02 -1.28721520e-01\\n-1.56347856e-01 -1.48226574e-01 1.39715388e-01 4.06385101e-02\\n1.14916235e-01 -3.09361577e-01 3.59990150e-01 -2.22535878e-01\\n-1.67667061e-01 -1.65897831e-01 1.56193659e-01 5.94566800e-02\\n4.13833588e-01 -4.97422665e-01 -5.72539028e-03 2.95953006e-01\\n3.04187119e-01 8.42670649e-02 2.48572409e-01 -1.59057796e-01\\n-2.40869317e-02 2.70083547e-01 -4.24831033e-01 1.22771971e-01\\n7.88593769e-01 1.08405456e-01 9.50905308e-02 3.09542745e-01\\n1.07267030e-01 3.49410117e-01 4.68152851e-01 -7.82711357e-02\\n-7.01195672e-02 1.58612415e-01 1.68700982e-02 -4.97931391e-01\\n-7.70498961e-02 -2.13841856e-01 -9.85378213e-03 -3.85547101e-01\\n6.80855036e-01 4.10206407e-01 -5.41015565e-01 -9.76659134e-02\\n-1.95511982e-01 5.97619712e-02 1.74981326e-01 -1.72058031e-01\\n-1.79874837e-01 7.67515376e-02 4.01973784e-01 -5.26772700e-02\\n3.93320858e-01 4.97244209e-01 -2.15347454e-01 -2.55875707e-01\\n8.49097595e-02 2.26783648e-01 8.81636515e-02 3.65109891e-01\\n-8.19970667e-02 3.01959604e-01 1.64512433e-02 5.86670116e-02\\n3.10088452e-02 1.95851356e-01 3.10313087e-02 1.03131369e-01\\n2.91167021e-01 3.23149352e-03 3.44047517e-01 4.85890359e-01\\n1.48825914e-01 3.66759241e-01 2.74307668e-01 1.16941094e-01\\n3.89395326e-01 5.45209467e-01 3.51046056e-01 1.25307485e-01\\n7.41359778e-03 2.78202921e-01 1.83109358e-01 -2.21778765e-01\\n3.36743444e-01 4.36189294e-01 2.21177951e-01 7.27999091e-01\\n1.78551748e-01 2.80192137e-01 6.82907164e-01 -6.31415546e-01\\n-3.61072242e-01 -2.07454357e-02 5.18087566e-01 -1.79085419e-01\\n2.72523798e-02 1.84116080e-01 -1.64862677e-01 3.18325609e-01\\n-4.81542468e-01 -2.53237188e-01 2.93147415e-02 -9.60127115e-02\\n-7.17113912e-02 -2.21688762e-01 -1.07721120e-01 2.52417803e-01\\n-2.95714755e-02 -5.12633100e-02 -3.57824862e-01 -8.76091495e-02\\n-2.95486867e-01 -1.54236436e-03 -1.63140401e-01 -2.39619128e-02\\n-8.29311460e-02 -4.78738964e-01 -1.51337445e-01 5.83953448e-02\\n2.81994373e-01 -1.08892716e-01 -1.15706667e-01 -1.29689023e-01\\n2.04286471e-01 1.41418874e-01 4.44979668e-01 7.00490177e-02\\n1.11582890e-01 -1.57231435e-01 -2.71010131e-01 1.76119238e-01\\n3.09009850e-01 1.73285574e-01 -5.29381558e-02 6.33167326e-02\\n-2.59368807e-01 -2.28079744e-02 1.47774071e-01 2.09792033e-01\\n-3.47668588e-01 2.75182482e-02 -2.21802399e-01 1.87954590e-01\\n1.04003519e-01 2.36185834e-01 -1.22217782e-01 -1.09230898e-01\\n-2.59534597e-01 -3.02032083e-01 2.36030072e-01 -2.52569526e-01\\n-2.11328000e-01 2.26224685e-04 1.88181028e-01 1.44600198e-01\\n-2.27011964e-02 8.94951671e-02 -8.74709412e-02 1.76339775e-01\\n8.19404349e-02 2.61252373e-01 -1.42132759e-01 -2.53835708e-01\\n-3.13864112e-01 1.99815556e-01 -8.79455283e-02 1.60409808e-01\\n-4.21903431e-02 4.07238275e-01 -8.63590860e-04 -3.10702845e-02\\n4.69367892e-01 -2.25390941e-02 -2.94991642e-01 -2.93238759e-01\\n-2.69924879e-01 -1.81846306e-01 -1.17371390e-02 7.37380311e-02\\n8.04606900e-02 -4.19147760e-01 9.30623934e-02 -1.25831604e-01\\n-8.83002859e-03 -2.89686382e-01 -2.08228920e-02 -1.52727827e-01]]',\n", + " 'job_description': 'Since 2011, SpotMe has been the mobile engagement platform for visionary leaders who believe that events can drive transformative change. SpotMe has been recognized by G2 Crowd as the leading pure play mobile event app, a growing space that represents more than $1 billion in potential annual revenue. Our ambition is to double down on this opportunity, use events as a springboard and extend our positioning into Digital Experience Platforms (DXP) for employees and customers. Today, SpotMe serves over 220 global brands, including 80 Fortune 500 companies. Some of the world’s largest companies – including Novartis, L’Oréal and Daimler – use SpotMe to connect every event to their greater story. Responsibilities: Develop new features of the SpotMe Backstage, our CMS Optimise user experience, streamline workflows, improve feedback and reporting Perform complete UI/UX re-design with ease of use, contextual aid in mind Work in cross-team projects on new & improving existing features Participate in brainstorming, specification and design sessions Maintain documentation, samples & best practices up to the highest standards Requirements & Skills: Native JavaScript and CSS speaker, proficient in Angular & Node.js Experience with SQL & No-SQL databases is a plus Demonstrated success in designing and building complex web applications Strong analytical, communication and collaboration skills Proactive, independent, completes tasks down to resolution ',\n", + " 'soft_skills': '[\"Visionary\", \"Collaboration\", \"Proactivity\", \"Brainstorming\", \"Communications\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Angular (Web Framework)\", \"Streamlines\", \"Springboard\", \"Hyper SQL Database (HSQLDB)\", \"Node.js\", \"Cascading Style Sheets (CSS)\", \"Digitization\", \"User Experience\", \"Maintainability\", \"Workflows\", \"Performance Reporting\", \"JavaScript (Programming Language)\", \"Analytics\", \"SQL (Programming Language)\", \"Branding\", \"Zope (CMS)\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Tajik', 'Dhivehi']\"},\n", + " {'company_id': '10',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.adnovum.ch',\n", + " 'jobdescription_embedded': '[[-1.95624158e-01 3.97409528e-01 5.07171333e-01 -4.06459570e-02\\n5.41350424e-01 -8.11445639e-02 7.53710493e-02 3.58455390e-01\\n-3.10194045e-02 -5.43209136e-01 -1.87547192e-01 -1.59705579e-01\\n7.89334401e-02 1.13280721e-01 1.94852591e-01 3.26767713e-01\\n4.62987572e-01 7.56500736e-02 3.62817454e-03 3.83732766e-01\\n-1.62129730e-01 -9.87617448e-02 1.34480879e-01 6.40779495e-01\\n3.55763644e-01 -6.63058320e-03 4.31952588e-02 1.95201710e-01\\n-1.69206694e-01 -2.27221057e-01 3.46927643e-01 1.05911903e-02\\n-2.97944099e-01 -3.87432247e-01 -1.45010026e-05 1.29607841e-01\\n-2.42596522e-01 -5.24028204e-02 -2.67326087e-01 -1.58433039e-02\\n-4.46291417e-01 -2.01589301e-01 4.42150049e-02 -1.79851949e-01\\n-1.79206029e-01 -3.21800798e-01 1.82369471e-01 -1.13667451e-01\\n2.50975862e-02 4.72655185e-02 -4.30564284e-01 2.53324062e-01\\n-3.65517229e-01 -1.60606518e-01 3.87259394e-01 5.59639513e-01\\n-1.88216809e-02 -5.02482116e-01 -4.32932138e-01 -2.39122108e-01\\n6.77069798e-02 5.77977858e-02 6.16381504e-02 -4.02935296e-01\\n3.95106882e-01 -7.13882595e-03 6.12844415e-02 3.46813172e-01\\n-7.82036722e-01 -1.11264586e-01 -3.94327670e-01 6.17695414e-02\\n-4.45784539e-01 -9.46496725e-02 -3.18790168e-01 -1.40831918e-01\\n-7.18333498e-02 2.78311759e-01 -5.31314164e-02 1.69110179e-01\\n-1.93873212e-01 4.05293345e-01 -1.11126892e-01 2.41512299e-01\\n2.11167693e-01 2.15905383e-01 3.33343178e-01 3.32163930e-01\\n-2.75249958e-01 4.72428232e-01 2.29435265e-01 -2.92683333e-01\\n3.56134921e-01 1.88539982e-01 4.00257349e-01 -1.86471045e-02\\n3.63188028e-01 1.57960311e-01 -2.94262588e-01 3.16787750e-01\\n2.10242912e-01 -2.16880009e-01 -1.53617248e-01 -1.52181879e-01\\n1.06247939e-01 -4.00558710e-02 1.53568670e-01 6.42814860e-02\\n-5.40712059e-01 3.17350656e-01 4.25663637e-03 -4.39264148e-01\\n-1.80099253e-02 -4.20830518e-01 -1.94832996e-01 1.09065272e-01\\n-1.27117842e-01 -1.78300459e-02 1.61055312e-01 2.81734705e-01\\n2.96234101e-01 2.08901186e-02 7.77569041e-02 6.87539816e-01\\n-1.42687380e-01 -7.21321180e-02 -9.09945667e-02 2.80803591e-01\\n8.90855268e-02 -4.26961750e-01 1.82805791e-01 2.67846197e-01\\n1.29560689e-02 -6.07539155e-02 -2.09661439e-01 2.44960114e-01\\n6.67836592e-02 -1.25187263e-01 -3.06900293e-01 2.84918934e-01\\n-1.10217661e-01 -4.37027723e-01 5.40440679e-01 -9.84745994e-02\\n1.05262004e-01 -3.44979875e-02 1.76990386e-02 -1.61867276e-01\\n-9.46249720e-03 5.13485782e-02 6.31012097e-02 2.84552068e-01\\n-2.72600949e-01 -1.43201530e-01 -1.93577111e-01 2.96319813e-01\\n-1.85642079e-01 2.29487836e-01 -3.83103758e-01 -1.16362981e-01\\n3.21503192e-01 -1.34444818e-01 -3.00263554e-01 2.76550680e-01\\n-1.20592952e-01 1.00659430e-01 -1.09035082e-01 4.46274400e-01\\n4.15161140e-02 2.09956050e-01 -2.23392639e-02 -1.41820863e-01\\n4.69897777e-01 7.85709023e-02 1.45230621e-01 -1.70136049e-01\\n2.47340381e-01 7.07232654e-02 1.35360375e-01 -1.52775897e-02\\n-9.03002203e-01 2.34042764e-01 -1.06187217e-01 -1.31816819e-01\\n7.46678784e-02 -1.00906678e-01 2.55571693e-01 -3.59913737e-01\\n-3.09356362e-01 -5.98081499e-02 -3.36733460e-01 -4.95625228e-01\\n-1.90093324e-01 -1.57889247e-01 4.08337146e-01 -5.14456928e-01\\n-1.30040959e-01 1.57178730e-01 -7.05170453e-01 -8.26142132e-02\\n2.94075102e-01 1.77711561e-01 1.54172167e-01 9.45387259e-02\\n-1.30368426e-01 -6.33772254e-01 2.52397954e-02 -5.54250419e-01\\n-1.56634346e-01 1.66506395e-01 -3.99333686e-01 1.42835215e-01\\n1.17151611e-01 -1.63288504e-01 -1.04410527e-02 8.61984789e-02\\n-2.59264022e-01 6.96199611e-02 6.56216815e-02 -4.76955809e-02\\n4.74010140e-01 4.35532629e-02 -3.22253406e-01 4.16309327e-01\\n-2.20494866e-01 3.30039501e-01 6.24361373e-02 -6.50266886e-01\\n4.96558398e-01 3.21802765e-01 1.07861534e-02 -2.39032403e-01\\n5.10881364e-01 -3.56151015e-01 -1.79238841e-01 3.99765857e-02\\n-5.18438697e-01 -1.97887138e-01 -8.43936298e-03 -2.31724203e-01\\n-2.69446611e-01 6.06323123e-01 -1.00959159e-01 2.81071048e-02\\n4.66097504e-01 -2.12304890e-01 -1.53426036e-01 5.58594130e-02\\n-1.20743968e-01 -1.42654479e-01 -5.19885480e-01 -2.44537219e-01\\n-7.60620534e-02 -4.52454776e-01 -1.96117774e-01 -4.48424816e-01\\n-1.74352661e-01 -1.13148250e-01 -2.29993418e-01 1.56282708e-01\\n1.11307472e-01 4.63168323e-02 -3.59596498e-02 1.52980998e-01\\n-2.17158958e-01 -6.15378201e-01 -5.00781648e-03 5.57754934e-02\\n1.17143959e-01 1.67028829e-01 1.74357638e-01 -1.17288947e-01\\n-5.97898057e-03 5.61891913e-01 -3.81898165e-01 -2.19329491e-01\\n1.87622890e-01 8.11487809e-02 4.72141020e-02 -8.01655352e-02\\n1.80726364e-01 2.85143465e-01 -2.65156418e-01 7.41504431e-02\\n1.91574264e-02 -4.95185377e-03 4.13127631e-01 -2.15063453e-01\\n-2.16969445e-01 -1.84668198e-01 1.15098841e-02 1.87303782e-01\\n-5.22225201e-01 -2.81741589e-01 5.12124121e-01 4.57480364e-02\\n1.70271516e-01 3.96027952e-01 2.18809143e-01 -5.99434413e-02\\n-2.29900107e-01 -2.69758075e-01 2.54665107e-01 1.44434601e-01\\n8.19870010e-02 5.17033339e-02 -2.48508155e-01 -5.01990139e-01\\n-3.73741245e+00 -1.69829369e-01 1.93886802e-01 -8.66274312e-02\\n3.20012122e-01 1.24837577e-04 1.10940278e-01 -1.63704202e-01\\n-9.60515365e-02 6.13048710e-02 -2.45151937e-01 -1.96209326e-01\\n4.60789017e-02 1.98648751e-01 -7.37502202e-02 1.55523524e-01\\n1.81890652e-01 -2.25274503e-01 3.96934561e-02 2.60546356e-01\\n-7.54942074e-02 -7.34942734e-01 1.48128420e-01 -4.17279154e-02\\n2.77780980e-01 2.98262835e-01 -5.44760764e-01 -7.52332509e-02\\n-2.81963140e-01 -1.14054412e-01 9.17405784e-02 -3.89748901e-01\\n-1.13525487e-01 2.45817378e-01 1.76462010e-01 -1.95382237e-01\\n-4.85088676e-03 -1.55170932e-01 -4.23069112e-02 -5.38104355e-01\\n1.44984946e-01 -4.23481464e-01 9.92596895e-03 -1.04317732e-01\\n6.58848822e-01 -3.74893039e-01 8.49266425e-02 1.08089656e-01\\n1.22379780e-01 3.44221443e-01 1.83680534e-01 5.41547649e-02\\n-1.18564516e-01 -3.35045964e-01 -1.05374746e-01 -2.29010463e-01\\n6.47573769e-01 2.96443701e-01 -2.25249454e-01 8.94729272e-02\\n4.30189185e-02 -3.75931382e-01 -4.93100256e-01 -2.45927736e-01\\n-1.47599861e-01 -6.20698743e-02 -7.65075743e-01 -4.23622251e-01\\n-1.40338719e-01 -1.36029586e-01 4.94882017e-02 6.91641331e-01\\n-4.57934827e-01 -4.45010036e-01 -1.33881465e-01 -5.73298395e-01\\n2.76140660e-01 -1.53949559e-01 8.61736462e-02 -2.09675625e-01\\n-7.28234425e-02 -4.19816941e-01 4.59864140e-02 1.26932159e-01\\n-6.11431487e-02 -1.13501020e-01 1.34266838e-01 -1.93334091e-02\\n-2.73179561e-01 -4.89091426e-01 3.33182782e-01 1.02330655e-01\\n3.38543296e-01 4.35405411e-02 1.34716466e-01 1.42232096e-02\\n1.95962787e-01 -9.32971109e-03 -2.95996457e-01 -3.60452890e-01\\n5.86061291e-02 -9.68666375e-02 3.30863744e-01 -5.01703024e-02\\n4.16423678e-02 1.69599220e-01 -1.15280233e-01 -1.74085096e-01\\n4.76422697e-01 1.34312762e-02 7.50607029e-02 -2.62095004e-01\\n1.69395149e-01 -3.08273464e-01 -2.30495766e-01 7.52963349e-02\\n-1.26745686e-01 5.76520503e-01 9.31925103e-02 -3.09095651e-01\\n-1.10085808e-01 5.36023021e-01 1.61138978e-02 6.40568733e-02\\n-1.78747341e-01 1.21696383e-01 -3.32444042e-01 1.21629395e-01\\n-3.74581702e-02 -1.01423480e-01 -1.52004421e-01 1.67065987e-03\\n-5.64004779e-02 1.94245100e-01 3.62157464e-01 1.93723932e-01\\n3.54437158e-02 -3.65789801e-01 -6.51486078e-03 5.68960309e-02\\n2.69350708e-01 5.12906611e-01 2.18058273e-01 -2.60197908e-01\\n-2.96228100e-02 2.86592603e-01 -1.91321090e-01 1.04290463e-01\\n-1.56939536e-01 1.49414435e-01 -3.53981167e-01 -1.75616622e-01\\n-3.89933556e-01 -2.26607218e-01 1.83177982e-02 2.86728173e-01\\n1.60088092e-01 -1.69027686e-01 6.76730350e-02 -3.05084616e-01\\n3.07842433e-01 1.85946599e-01 2.05674753e-01 2.41451606e-01\\n-9.06339809e-02 5.01223266e-01 -5.94297089e-02 -1.80611566e-01\\n-1.70813486e-01 1.76880643e-01 -7.35193118e-02 -1.48713067e-01\\n8.11968371e-02 -5.29519558e-01 -1.36745140e-01 2.39613071e-01\\n4.86317538e-02 -1.41108623e-02 -1.69857025e-01 2.49989271e-01\\n-8.25471058e-02 -3.16823393e-01 -2.92034388e-01 -1.13830082e-02\\n2.13950217e-01 2.02135608e-01 2.74918973e-01 -4.14322227e-01\\n-6.34821057e-02 -6.65557906e-02 1.31719545e-01 4.69626516e-01\\n-4.74022925e-02 5.66381812e-02 -1.48473442e-01 -2.82566190e-01\\n4.03746963e-01 -5.34192733e-02 -1.76694453e-01 -5.31154275e-02\\n7.85092860e-02 -3.77384350e-02 -2.76284754e-01 7.40090981e-02\\n-1.52061716e-01 -1.59391850e-01 2.88550686e-02 1.68561060e-02\\n1.32478476e-01 1.21951967e-01 -5.28629899e-01 -2.07124755e-01\\n-3.09237152e-01 3.44422720e-02 -2.03306437e-01 -5.35484731e-01\\n1.37280509e-01 -1.45939156e-01 -5.39872587e-01 2.81580299e-01\\n-2.25011960e-01 -1.00715496e-01 1.68772504e-01 1.50281981e-01\\n-4.27882403e-01 -9.54971984e-02 1.41966119e-01 1.88962862e-01\\n-4.18896228e-01 -1.88078880e-01 -6.64666072e-02 -8.23264062e-01\\n2.95560300e-01 -1.29990652e-01 -5.45138493e-03 4.89177965e-02\\n-1.31034717e-01 -5.87537587e-01 1.11939467e-01 -1.64533958e-01\\n-1.05697572e-01 8.67673457e-02 -1.85601771e-01 -3.03874016e-01\\n7.26094693e-02 -1.73494980e-01 -1.19071417e-01 2.35415936e-01\\n-4.70925927e-01 2.73304254e-01 -2.33205333e-01 2.94341054e-02\\n5.51923625e-02 -2.63867110e-01 1.08813308e-01 -1.68278635e-01\\n-4.77744430e-01 -2.24186108e-01 -1.20687574e-01 -2.15005577e-01\\n-4.40847166e-02 -4.31432575e-01 -1.40312118e-02 2.49734018e-02\\n3.42152476e-01 -1.86173040e-02 -2.45851651e-01 -1.22430079e-01\\n3.35471444e-02 -2.64644295e-01 1.14545450e-02 -3.15855406e-02\\n1.04539298e-01 -3.95798981e-02 2.40147948e-01 5.25263511e-02\\n3.02339226e-01 -3.38018298e-01 4.12936062e-01 -3.26547056e-01\\n-2.99328417e-01 -1.20408893e-01 -1.03438273e-03 9.94906668e-03\\n3.48492384e-01 -5.65469265e-01 2.16063019e-02 4.17885035e-01\\n5.90350665e-02 1.31136701e-02 1.96933493e-01 -2.06139255e-02\\n-3.91580611e-02 4.00822908e-01 -2.68910855e-01 1.51081681e-01\\n8.05222929e-01 1.23100244e-01 2.22835556e-01 2.39065811e-01\\n6.61984310e-02 4.55249518e-01 3.76264066e-01 -3.29954438e-02\\n-2.69405190e-02 3.62387568e-01 1.92488596e-01 -4.58240986e-01\\n8.92967451e-03 2.65243258e-02 -1.76343262e-01 -2.24504188e-01\\n6.40138268e-01 3.59989643e-01 -3.65842313e-01 -2.83531159e-01\\n-1.71031818e-01 -3.97459388e-01 2.82339364e-01 -6.89230859e-02\\n2.07787883e-02 -2.04716727e-01 4.02844995e-01 1.19541027e-02\\n1.80359051e-01 7.35158503e-01 -2.34106705e-01 -3.34822744e-01\\n-1.52588636e-01 2.95565993e-01 1.04012579e-01 4.59747642e-01\\n-1.08243853e-01 2.77069926e-01 1.27821257e-02 5.54686785e-02\\n-7.73639008e-02 1.47383735e-01 1.73800305e-01 1.46056980e-01\\n2.30573535e-01 3.30295533e-01 5.34503043e-01 4.98811692e-01\\n3.04300189e-01 3.67333174e-01 2.31833622e-01 9.10304561e-02\\n5.18943369e-01 4.31326002e-01 4.51881647e-01 5.73795326e-02\\n1.44129721e-02 2.46286616e-01 1.24434501e-01 4.62027341e-02\\n2.63589889e-01 4.34119821e-01 -1.06435297e-02 9.17801201e-01\\n3.97906274e-01 2.60819077e-01 6.05717063e-01 -7.42412508e-01\\n-1.63220003e-01 9.56422612e-02 3.73246938e-01 -3.71888280e-01\\n5.20412959e-02 1.56332329e-01 -1.44453868e-01 2.95470715e-01\\n-4.40726310e-01 -2.19140649e-01 2.57894546e-02 1.62777096e-01\\n1.63460687e-01 -4.18730378e-02 -1.47528782e-01 -6.64786920e-02\\n-7.76151791e-02 -3.76542322e-02 -3.44924062e-01 -1.83253124e-01\\n-2.71405041e-01 -2.09814999e-02 -4.12860177e-02 -2.38330677e-01\\n8.82498696e-02 -3.12943548e-01 -5.40300012e-02 -2.07890019e-01\\n3.62136245e-01 -1.68464601e-01 -4.36339229e-02 3.95724317e-03\\n3.03939849e-01 2.41475508e-01 6.91587865e-01 -1.04941487e-01\\n1.04229458e-01 -8.08869898e-02 -1.64956421e-01 1.22152209e-01\\n4.13262360e-02 1.95013985e-01 1.27756938e-01 2.95504242e-01\\n-2.36357883e-01 -2.22418547e-01 2.53336102e-01 2.69581676e-01\\n-3.67388129e-01 -1.55440171e-03 -7.16302916e-02 1.96484342e-01\\n-1.05625711e-01 1.21191286e-01 -6.69479445e-02 1.74651649e-02\\n-8.62853602e-02 -5.46514571e-01 3.23153853e-01 -1.94367453e-01\\n-1.37836905e-02 -7.64152333e-02 3.71804714e-01 3.08940917e-01\\n-1.64258018e-01 3.89989913e-02 -1.03479110e-01 1.03970937e-01\\n1.27854899e-01 3.61236781e-01 -2.60132492e-01 -1.70172587e-01\\n-2.23325595e-01 1.31388679e-01 -5.96998036e-02 -8.69416818e-02\\n-8.74217525e-02 3.96499157e-01 1.15623929e-01 2.07069650e-01\\n2.53376275e-01 -1.53874323e-01 -2.12854162e-01 -1.77685454e-01\\n-2.93299466e-01 -3.35060735e-03 6.77606091e-02 -9.50272605e-02\\n2.36362293e-01 -4.38735336e-01 -2.61465132e-01 -1.96449637e-01\\n3.37974578e-02 -4.40327674e-01 9.80812684e-03 5.00930659e-02]]',\n", + " 'job_description': \"That's your role You will, together with an international team, develop and support individual mobile and web applications for our customers. Your main working language with our customers will be German. We look for Software Engineers for our locations in Bern and in Zurich. Depending on your qualifications, past experience and project, you will be involved in the analysis, specification and implementation of technical requirements in one of the following disciplines: Application development You implement the functional requirements of our customers with a broad spectrum of technologies and development processes. Integration Your focus is on quality attributes (non-functional requirements). You get the developed solutions up and running (deployment, technical architecture, etc.) and connect them to the customer's systems. By operating at the interface between customers and highly qualified development teams, you will gain a deeper insight into the broader interrelationships in the software development process and benefit from the extensive experience of our application development, integration and security specialists.\",\n", + " 'soft_skills': '[\"Operations\", \"Integration\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Process Development\", \"Software Development\", \"Functional Requirement\", \"Software Engineering\", \"Process Integration\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Malagasy']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.32771158e-01 3.23575675e-01 3.22079837e-01 2.11038645e-02\\n4.28447992e-01 -8.46897438e-02 -6.14280589e-02 2.52944112e-01\\n-7.71240592e-02 -4.60035145e-01 7.07489923e-02 -1.96435317e-01\\n-1.78112105e-01 -8.70894343e-02 1.49234504e-01 5.19659817e-01\\n1.30023852e-01 6.24674968e-02 -6.89474419e-02 4.44085509e-01\\n9.07824561e-02 -5.03305718e-02 -1.05173320e-01 8.01011920e-01\\n3.50438774e-01 -3.50439884e-02 -1.50030240e-01 9.87674147e-02\\n-2.45800763e-01 -3.04026783e-01 3.85356247e-01 9.66515467e-02\\n-4.94073480e-02 -4.21713650e-01 7.00240061e-02 1.49487287e-01\\n-2.98419803e-01 -5.70223527e-03 -4.43303734e-02 3.14540148e-01\\n-4.76185888e-01 -3.82286489e-01 8.77431855e-02 -8.39554518e-02\\n-2.73328215e-01 -2.70228058e-01 -1.36637434e-01 -3.58960554e-02\\n1.82698742e-01 1.38409203e-02 -6.53364897e-01 3.19564313e-01\\n-5.54208234e-02 -2.65608639e-01 2.20117152e-01 5.59088290e-01\\n2.13892773e-01 -5.63026249e-01 -2.97065943e-01 -3.22461277e-01\\n-1.21113444e-02 -7.90259987e-02 2.29474884e-02 -2.54588515e-01\\n3.62604648e-01 -3.44214551e-02 -5.50057646e-03 4.41134989e-01\\n-7.93977916e-01 -6.65304065e-02 -2.90753692e-01 1.12066105e-01\\n-3.99506778e-01 2.76150443e-02 -4.74426746e-01 -5.71803264e-02\\n-6.50339723e-02 5.21396756e-01 5.91075122e-02 -7.43939308e-03\\n-1.08375654e-01 1.97234809e-01 -1.18143134e-01 1.76221237e-01\\n3.73093277e-01 1.72580466e-01 2.82087952e-01 4.23345745e-01\\n-4.46676701e-01 3.12253535e-01 1.68932348e-01 -3.16638231e-01\\n1.36125520e-01 1.79201022e-01 6.16097927e-01 2.92444676e-01\\n-4.26084027e-02 2.34113351e-01 -1.82206258e-01 2.94912457e-01\\n1.28224760e-01 -3.22535902e-01 3.59990075e-02 -3.49719152e-02\\n-3.56369764e-02 -2.18581297e-02 3.02300155e-02 1.87007338e-01\\n-1.94472402e-01 4.12699461e-01 1.33930504e-01 -1.79334164e-01\\n-8.22932124e-02 -6.31163597e-01 -1.34373516e-01 -5.11797741e-02\\n-1.02793135e-01 2.86621451e-01 3.03357720e-01 1.34482637e-01\\n8.08005258e-02 8.93958956e-02 1.68459520e-01 9.82253253e-01\\n-7.72180706e-02 7.07321614e-02 -2.38974407e-01 2.89491653e-01\\n3.54515731e-01 -2.41681039e-01 1.44744173e-01 2.18987748e-01\\n7.72629231e-02 -1.84187219e-01 -2.27921769e-01 3.50836307e-01\\n-1.30407602e-01 -1.31864026e-01 -2.74684757e-01 2.11499538e-03\\n-2.04148084e-01 -5.28920710e-01 6.04730725e-01 1.27012849e-01\\n2.44040325e-01 -5.61796129e-02 -3.76490131e-02 -9.34772417e-02\\n-8.36838260e-02 1.74382433e-01 -3.01180724e-02 2.45826200e-01\\n-4.03422266e-01 -2.69273341e-01 -1.88620761e-01 3.08993787e-01\\n-1.59166008e-01 1.85574248e-01 -4.02123332e-02 -6.99926019e-02\\n2.64162451e-01 9.58682448e-02 -3.49406540e-01 1.60112053e-01\\n-1.32765770e-01 -3.35921764e-01 -1.21516682e-01 3.20315927e-01\\n-7.10094869e-02 1.42433047e-01 1.83020942e-02 -1.77537426e-01\\n6.77544355e-01 2.71468610e-01 2.04124644e-01 -1.80610970e-01\\n3.40131015e-01 -1.66294858e-01 2.03096256e-01 1.83016315e-01\\n-5.12547612e-01 3.44441116e-01 -2.15425417e-02 -1.65736780e-01\\n6.10829592e-02 8.30597803e-02 4.21715498e-01 -3.53513718e-01\\n1.25296591e-02 -1.66147277e-01 -3.93632889e-01 -3.87479275e-01\\n-2.07493186e-01 8.10356438e-03 4.93143469e-01 -4.30294871e-01\\n-1.18622705e-01 2.99510360e-01 -5.02010465e-01 -1.60760239e-01\\n1.81376800e-01 9.53095779e-02 1.51596904e-01 -2.62368061e-02\\n-6.15368634e-02 -6.44030929e-01 -6.08694181e-02 -5.46753109e-01\\n-5.46886444e-01 -3.70682143e-02 -3.16950917e-01 1.46724552e-01\\n1.07491381e-01 3.35342102e-02 -1.67341709e-01 5.27262464e-02\\n-3.85501444e-01 3.34403254e-02 1.71075776e-01 1.51324078e-01\\n3.25184941e-01 -6.33193851e-02 -4.03964400e-01 4.01005834e-01\\n-2.60051757e-01 5.42895257e-01 2.40626290e-01 -8.45698833e-01\\n6.58155262e-01 2.65417248e-01 -8.84738937e-02 -2.26467952e-01\\n3.50536287e-01 -4.23037708e-01 -3.59490700e-02 1.79078192e-01\\n-2.96971351e-01 -2.95722693e-01 3.29562575e-01 -1.38216436e-01\\n-3.02644074e-01 5.20400822e-01 2.39866853e-01 3.78323197e-02\\n3.38624060e-01 -2.90953726e-01 -1.45004779e-01 -1.50345871e-02\\n-1.29658982e-01 -2.41204768e-01 -3.50444943e-01 1.95962861e-01\\n-3.56839076e-02 -5.94943225e-01 -1.88304707e-01 -2.80902416e-01\\n-1.90194875e-01 -3.66979092e-01 -3.32771063e-01 4.56198812e-01\\n1.44989178e-01 1.76227644e-01 -2.90204026e-02 2.48519629e-02\\n1.12619922e-01 -6.57110274e-01 -1.48633480e-01 3.08304206e-02\\n5.71922243e-01 3.30424309e-01 6.86325654e-02 -1.22720093e-01\\n1.39883310e-01 5.43043494e-01 -3.74155372e-01 -3.88006479e-01\\n6.07419983e-02 4.47508097e-02 -1.06314711e-01 -1.88183933e-01\\n-1.92357216e-03 3.12522650e-01 -2.50745267e-01 3.42481583e-02\\n-8.66321772e-02 5.12787923e-02 2.91952789e-01 -9.81471017e-02\\n-3.59933734e-01 -1.65861428e-01 -3.71611537e-03 3.45752239e-01\\n-5.28455436e-01 -2.32274204e-01 5.20879149e-01 2.88068026e-01\\n2.03717783e-01 1.67829275e-01 2.71252394e-01 -1.05374016e-01\\n-2.67258316e-01 -1.41384318e-01 1.74634099e-01 1.85415179e-01\\n4.12994437e-02 1.64123341e-01 -8.99589211e-02 -6.76442623e-01\\n-3.22283173e+00 -1.65213332e-01 2.10589617e-01 -3.05456519e-01\\n1.78245440e-01 -1.56153724e-01 6.04089946e-02 -4.86874692e-02\\n-4.42327768e-01 -5.32054901e-02 -2.71715462e-01 -1.08623251e-01\\n-1.31011754e-01 2.37731919e-01 7.29682595e-02 2.88561374e-01\\n7.04864711e-02 -2.53304899e-01 -1.10939004e-01 4.20523256e-01\\n-8.88754725e-02 -7.15417922e-01 6.86133131e-02 9.97603387e-02\\n1.42124325e-01 1.10106796e-01 -4.12043214e-01 1.14969105e-01\\n-2.11065620e-01 -2.57921875e-01 1.03344943e-03 -2.66380727e-01\\n-1.57726526e-01 3.40127796e-01 1.37293532e-01 -2.20522806e-02\\n4.00137231e-02 -1.88013166e-01 1.08728498e-01 -5.23898363e-01\\n-1.28307998e-01 -5.89351714e-01 -2.82236058e-02 -1.30385801e-01\\n6.17146432e-01 -3.08652610e-01 2.26161167e-01 2.13282928e-01\\n5.13157509e-02 7.70782158e-02 -3.54103222e-02 7.10783387e-03\\n-4.08289820e-01 -3.61567765e-01 -1.77459400e-02 -3.37245733e-01\\n5.59190750e-01 4.33864683e-01 -1.21879302e-01 7.77162891e-03\\n1.27230659e-01 -3.23641509e-01 -3.79713744e-01 -4.83888090e-01\\n-1.65496305e-01 -2.08638564e-01 -8.43017876e-01 -5.59587121e-01\\n-2.42586046e-01 7.20592029e-03 -1.55099973e-01 6.84438050e-01\\n-3.61629784e-01 -5.16476929e-01 -1.13526331e-02 -5.55763185e-01\\n1.23817816e-01 -2.24447966e-01 1.15944289e-01 -1.74416289e-01\\n-4.46848243e-01 -4.99530137e-01 2.41874456e-01 -4.84364107e-02\\n-2.77655512e-01 -1.80772599e-02 -1.56947621e-03 -2.69827813e-01\\n-3.55094761e-01 -3.92081738e-01 4.10161167e-01 7.36151487e-02\\n3.12595636e-01 2.01257154e-01 4.60317403e-01 7.17918649e-02\\n4.48793143e-01 -6.87518939e-02 -1.12969764e-02 -4.00511712e-01\\n1.65219173e-01 -3.09082028e-02 4.92543459e-01 -2.77522236e-01\\n9.53317285e-02 2.02135533e-01 -3.03460479e-01 -1.46783972e-02\\n5.62721729e-01 -5.70466667e-02 -5.08335978e-02 -3.61850485e-02\\n2.95242935e-01 -4.48523939e-01 -2.87652642e-01 3.00116330e-01\\n1.38880499e-02 7.23209560e-01 -2.26064064e-02 -3.98977339e-01\\n-2.85103440e-01 5.28487742e-01 -1.87839031e-01 -1.44902632e-01\\n-1.54840544e-01 1.68592528e-01 -6.18593022e-02 2.46762633e-01\\n8.09662789e-03 -3.30122799e-01 -2.94705182e-01 -1.86642960e-01\\n-7.81869218e-02 1.48894340e-01 2.03733802e-01 -3.62406783e-02\\n-1.07890375e-01 -1.15412295e-01 -3.02606821e-01 1.55602947e-01\\n3.13823283e-01 3.26663554e-01 3.12385648e-01 -3.77679259e-01\\n1.92490276e-02 2.05863640e-01 -2.20341906e-01 2.63513088e-01\\n-2.88031816e-01 1.43910959e-01 -5.40859163e-01 -2.76224315e-01\\n-2.10433528e-01 -3.53873789e-01 1.37799159e-01 3.43861908e-01\\n7.62189701e-02 -8.79569561e-04 1.05259597e-01 -4.81570899e-01\\n3.82623732e-01 9.87121314e-02 1.94569826e-01 1.27861142e-01\\n1.15318671e-01 5.63545823e-01 9.30358022e-02 -1.42259330e-01\\n-2.32419685e-01 -1.69394925e-01 -3.07754338e-01 -2.50631273e-01\\n9.11021680e-02 -4.45085108e-01 -1.39545634e-01 4.57939625e-01\\n1.76461384e-01 -2.24776089e-01 -2.88547784e-01 3.30854803e-01\\n1.67811528e-01 -2.95660943e-01 -2.51585364e-01 -3.69841605e-02\\n1.53245464e-01 4.72640544e-02 2.94627070e-01 -3.74298871e-01\\n3.07159983e-02 2.87471209e-02 -1.00898251e-01 5.99937260e-01\\n2.51359552e-01 3.06058079e-02 -1.76503748e-01 -9.27447304e-02\\n6.12627447e-01 -2.84990780e-02 -6.72675371e-02 -6.86853528e-02\\n1.01782314e-01 -2.99873382e-01 -5.21072328e-01 1.84393115e-02\\n-8.41496661e-02 -2.22033516e-01 9.42429081e-02 2.07711756e-03\\n2.56550405e-02 1.71182863e-02 -4.15086061e-01 -4.49740291e-01\\n-3.87827158e-01 -1.49130672e-01 2.06654415e-01 -4.17182684e-01\\n-6.48360774e-02 5.75842038e-02 -5.84694505e-01 2.71852255e-01\\n-2.74196535e-01 4.88489531e-02 5.92570528e-02 2.48928860e-01\\n-2.78596669e-01 -7.04363436e-02 -4.91667241e-02 2.18839675e-01\\n-4.03681606e-01 -3.23717684e-01 4.06410173e-02 -8.27127457e-01\\n1.49263427e-01 1.36651859e-01 -1.86433747e-01 7.78386220e-02\\n-9.44809755e-04 -6.35998130e-01 2.09475294e-01 -4.32126313e-01\\n3.65819968e-02 1.98617931e-02 -1.50505513e-01 -3.14826429e-01\\n1.88688755e-01 -9.63194575e-03 -3.90022516e-01 4.74443167e-01\\n-5.30495942e-01 2.48197898e-01 4.78367060e-02 7.58247375e-02\\n7.92486891e-02 -3.05282891e-01 1.34887934e-01 -2.51360148e-01\\n-4.15204316e-01 -2.26260215e-01 -4.13159758e-01 -1.75755903e-01\\n4.81594466e-02 -2.33462662e-01 -9.53705311e-02 1.25544205e-01\\n3.01008493e-01 2.41857320e-01 -7.67108724e-02 -3.94017160e-01\\n1.51887000e-01 -4.74282265e-01 1.94843803e-02 -3.20908606e-01\\n-4.68999259e-02 -1.50185198e-01 1.66657001e-01 -1.71755299e-01\\n1.52233198e-01 -1.79880217e-01 6.19434059e-01 -1.81528702e-01\\n-2.86699057e-01 -1.67552620e-01 1.61399245e-02 1.50878364e-02\\n2.29463756e-01 -4.59013045e-01 9.66397859e-03 2.19766065e-01\\n1.92026109e-01 5.43899424e-02 1.46592289e-01 -4.03624251e-02\\n-2.54280157e-02 1.89142987e-01 -5.58319449e-01 1.46615669e-01\\n7.32634485e-01 4.53247577e-02 5.77360988e-02 1.56172186e-01\\n1.90630123e-01 4.52069402e-01 6.34704471e-01 -7.09303888e-04\\n-2.18145121e-02 2.65557438e-01 3.04066855e-02 -4.44260985e-01\\n-1.66460171e-01 -2.26848334e-01 -1.79455474e-01 -2.98462182e-01\\n5.66974819e-01 4.12166446e-01 -3.90005529e-01 -1.88780248e-01\\n4.69222143e-02 -5.19786105e-02 3.53922397e-01 7.64702559e-02\\n-1.09916247e-01 -3.56483981e-02 5.43048263e-01 -3.51193477e-03\\n3.80765676e-01 5.87606013e-01 -1.27567559e-01 -3.44867855e-01\\n-2.84700487e-02 2.06801474e-01 1.39937997e-01 4.05073404e-01\\n-1.56302720e-01 2.76910782e-01 4.54904847e-02 2.53554173e-02\\n-3.72206531e-02 1.59755051e-01 2.39282370e-01 3.60498242e-02\\n3.23107094e-01 1.21613434e-02 2.46318296e-01 5.43167830e-01\\n2.00530708e-01 4.31431085e-01 2.47552916e-01 1.98286504e-01\\n2.69804925e-01 6.13274693e-01 4.02387112e-01 1.08076043e-01\\n5.25225699e-02 6.28960282e-02 1.26886621e-01 -1.35727376e-01\\n3.57431263e-01 3.99179399e-01 2.13221952e-01 9.50212300e-01\\n3.08432430e-01 3.07941347e-01 7.33944535e-01 -8.28180730e-01\\n-2.83514708e-01 1.41495898e-01 6.16533101e-01 -2.06349060e-01\\n-5.76663576e-02 1.93498597e-01 -2.33924165e-01 3.13546360e-01\\n-5.31943142e-01 -2.35884562e-01 1.62740592e-02 -1.69678926e-02\\n1.29374983e-02 -6.65253475e-02 -2.17781052e-01 1.51064426e-01\\n-1.60624161e-01 -1.65527865e-01 -2.68893987e-01 -1.44846603e-01\\n-3.87791991e-01 -4.25691716e-02 -6.77338317e-02 -1.08303018e-02\\n-1.32121667e-01 -4.65577155e-01 -2.00620919e-01 4.70577888e-02\\n4.70681757e-01 -1.79116860e-01 -1.46525860e-01 -1.93146318e-01\\n4.47265571e-03 3.31226438e-01 6.28223181e-01 7.35087544e-02\\n2.03161657e-01 -1.58458531e-01 -2.39049450e-01 5.79397641e-02\\n1.89758882e-01 -8.42017028e-03 1.28200009e-01 4.24213886e-01\\n-3.13301653e-01 -8.71934667e-02 1.30094886e-01 2.69486070e-01\\n-4.57791090e-01 -1.48240566e-01 -5.81148192e-02 3.34406376e-01\\n5.97886834e-03 3.24914128e-01 -3.07897568e-01 1.81322888e-01\\n-1.66851655e-01 -5.11189997e-01 4.81978774e-01 -1.93455845e-01\\n-1.21979207e-01 2.57710814e-01 1.68983772e-01 1.21297017e-01\\n-2.46108204e-01 -3.99563946e-02 -9.20972303e-02 2.89270997e-01\\n-3.49839665e-02 4.90244478e-01 -2.02553615e-01 -1.74713135e-01\\n-3.91795903e-01 2.53912449e-01 -6.32460490e-02 1.61259428e-01\\n-2.01776400e-01 3.90940279e-01 1.61536694e-01 1.89745039e-01\\n1.84292421e-01 1.53588504e-01 -2.48056233e-01 -2.02077478e-01\\n-1.82787538e-01 -2.53081918e-01 1.07800871e-01 -3.43111269e-02\\n6.59308732e-02 -3.48187774e-01 2.88559310e-02 -2.02361494e-01\\n-2.63630450e-01 -3.82653534e-01 -1.28160104e-01 2.40338184e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: Create and deploy production-ready machine learning models, life-cycle management Evaluate and assess model quality through metrics and experiments End-to-end responsibility for socio-demographic predictions, audience expansions and interest inference Writing production code with Spark and Scala and creating advanced pipelines with Luigi Working with git on github, various services on AWS, Jira and Confluence with an agile software development culture Your profile: Deep knowledge in Scala, Java or C++ and strong skills in either Python or Bash Expertise in using Spark, Hadoop, etc. for scalable data processing and machine learning Understanding and experience in various machine learning algorithms Experience in applying machine learning and deep learning for real-world applications In-depth understanding of concepts such as algorithms, networking and internet technology Able to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala C++ JAVA Python Python Bash Englisch',\n", + " 'soft_skills': '[\"Communications\", \"Writing\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Luigi (Python Package)\", \"Prediction\", \"Machine Learning\", \"Project Management Life Cycle\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Pipelining\", \"Machine Learning Methods\", \"Github\", \"Agile Software Development\", \"Machine Learning Algorithms\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Deep Learning\", \"Atlassian Confluence\", \"Software Development\", \"Algorithms\", \"Production Code\", \"Git Flow\", \"JIRA Studio\", \"Java (Programming Language)\", \"Data Processing\"]',\n", + " 'languages': \"['English', 'Corsican', 'Marathi', 'Bulgarian']\"},\n", + " {'company_id': '48',\n", + " 'job_title': 'front-end software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-5.42001687e-02 2.34355092e-01 4.70845371e-01 -8.38351250e-02\\n5.17368853e-01 -7.06578940e-02 -1.99809670e-03 4.08608556e-01\\n1.68794662e-01 -4.28181887e-01 -2.20953487e-03 -2.94494361e-01\\n-7.07552657e-02 1.58489607e-02 -1.06429569e-02 3.90653312e-01\\n3.52239162e-01 2.10637957e-01 -1.57270715e-01 3.66716325e-01\\n9.27976817e-02 -9.69800055e-02 1.61560595e-01 8.27780902e-01\\n3.65579188e-01 -1.17771421e-02 -7.89073557e-02 -2.29799375e-02\\n-1.33444965e-01 -2.06020236e-01 6.04864717e-01 5.29014133e-02\\n-1.13141350e-01 -5.20530462e-01 6.96166828e-02 2.14777626e-02\\n-1.41484380e-01 -5.19886687e-02 -9.82794762e-02 1.72007114e-01\\n-5.24042189e-01 -1.84206218e-01 -7.36353695e-02 -5.95488697e-02\\n-2.74145186e-01 -2.52162039e-01 7.53166750e-02 -1.49903381e-02\\n1.09067567e-01 8.41844901e-02 -3.49104464e-01 1.96151495e-01\\n-2.90760070e-01 -1.62467375e-01 2.75079459e-01 5.52700400e-01\\n-1.33403212e-01 -3.43463838e-01 -5.58273494e-01 -2.87445307e-01\\n8.55758041e-02 -1.04298562e-01 -2.94660777e-02 -3.81673813e-01\\n3.08068454e-01 1.38305873e-02 3.72508429e-02 3.30130994e-01\\n-6.88989401e-01 3.51769812e-02 -3.23612779e-01 -2.03064352e-01\\n-3.42129111e-01 -2.23024786e-01 -1.94613308e-01 -1.10773385e-01\\n-1.49912506e-01 3.69927913e-01 1.49090260e-01 7.60992318e-02\\n-2.62983024e-01 2.75917351e-01 -2.12134093e-01 3.92707705e-01\\n1.85297593e-01 2.50479460e-01 2.30644330e-01 3.26948464e-01\\n-2.76169777e-01 4.36597824e-01 1.32471621e-01 -2.61928082e-01\\n3.10585558e-01 3.09559777e-02 4.30574894e-01 -1.38166904e-01\\n1.48666859e-01 9.55320299e-02 -3.07648540e-01 3.39842200e-01\\n2.51760721e-01 -3.27350110e-01 2.54817866e-02 -1.84555892e-02\\n3.53922248e-02 -3.11717391e-02 8.55188519e-02 1.24883264e-01\\n-3.77162606e-01 4.55627084e-01 8.48014206e-02 -2.83630610e-01\\n-1.54337376e-01 -3.25129986e-01 -8.21679831e-02 9.16553736e-02\\n-2.35646404e-02 4.87753302e-02 1.59532979e-01 1.49018973e-01\\n1.46556765e-01 -1.67647228e-02 4.26516905e-02 6.89166665e-01\\n-1.36813983e-01 3.67884859e-02 -2.34464467e-01 3.64617407e-01\\n4.32107300e-02 -3.50614607e-01 4.15215164e-01 1.88589334e-01\\n-2.12789141e-02 -1.01771131e-01 -2.34496415e-01 3.76090944e-01\\n1.10846192e-01 -1.96781307e-01 -1.69015169e-01 2.19961807e-01\\n3.15777771e-02 -4.16440010e-01 6.28884196e-01 6.89357147e-02\\n1.61422580e-01 -8.96962732e-02 1.14122611e-02 -1.64178699e-01\\n-2.63705123e-02 1.09161898e-01 9.81994271e-02 1.92581177e-01\\n-2.76841462e-01 -2.88816422e-01 -1.23627961e-01 1.33993372e-01\\n-4.39780295e-01 1.08827010e-01 -1.43013656e-01 -1.10157490e-01\\n2.94943452e-01 -2.86315568e-02 -2.82646894e-01 2.25954652e-01\\n-3.72470170e-02 -2.38342397e-03 -4.07479703e-02 4.53073382e-01\\n-1.89338207e-01 2.05003485e-01 -2.91258190e-02 -1.66371301e-01\\n6.25780344e-01 2.05250129e-01 1.73375875e-01 -3.86715271e-02\\n2.84306288e-01 -2.49507111e-02 1.05408058e-01 1.22200295e-01\\n-7.16595411e-01 3.85239542e-01 -4.74359915e-02 -1.40881315e-01\\n9.08691883e-02 -1.70705587e-01 2.32108742e-01 -3.63659054e-01\\n-1.95645001e-02 -1.25681877e-01 -2.70100743e-01 -3.06232482e-01\\n-1.69374511e-01 -1.91183332e-02 2.82902211e-01 -5.21857500e-01\\n-1.96258366e-01 2.10099488e-01 -4.87000108e-01 -1.43227845e-01\\n1.41200691e-01 1.88984662e-01 1.23287052e-01 1.47592798e-01\\n-1.81208014e-01 -4.62999046e-01 1.20758433e-02 -4.41406190e-01\\n-2.19748974e-01 1.08473383e-01 -3.23920667e-01 2.62133002e-01\\n2.28372693e-01 -1.44839510e-02 -1.66250199e-01 1.99155480e-01\\n-1.07902393e-01 -2.13105790e-02 9.08888429e-02 -2.19714250e-02\\n1.77839607e-01 1.20283745e-01 -4.35772896e-01 4.74177003e-01\\n-2.55027413e-01 4.88480270e-01 1.53333381e-01 -7.56549597e-01\\n3.51292551e-01 4.13150489e-01 -9.41897631e-02 -2.98738599e-01\\n5.03396690e-01 -2.39731878e-01 1.61967892e-02 4.64043021e-02\\n-3.41424823e-01 -1.93572104e-01 2.03667164e-01 -2.22409874e-01\\n-2.20863700e-01 4.50543046e-01 2.71165650e-02 8.78648013e-02\\n7.89952725e-02 -2.34577805e-01 -2.79603545e-02 1.32942617e-01\\n-1.59201473e-01 -1.87078670e-01 -5.06142437e-01 -1.91023439e-01\\n-7.25492984e-02 -3.75788391e-01 -4.32180688e-02 -4.89510119e-01\\n-2.02339858e-01 -2.88615942e-01 -1.07910596e-01 3.07877064e-01\\n2.51054019e-01 -2.03505903e-02 5.79112954e-02 4.72193435e-02\\n-2.03094646e-01 -5.94334722e-01 1.31010897e-02 1.09577626e-01\\n3.52463961e-01 2.49223053e-01 1.49552047e-01 8.54988676e-03\\n-2.43343841e-02 6.74785137e-01 -2.31591433e-01 -1.86594307e-01\\n1.84435517e-01 2.78537720e-01 1.08690992e-01 -1.04254276e-01\\n9.13513452e-02 3.63563836e-01 -2.21467257e-01 7.58785903e-02\\n-4.72123288e-02 -1.62948161e-01 5.11746049e-01 -4.37237658e-02\\n-4.03745711e-01 -1.66785210e-01 -6.61444515e-02 1.21691674e-01\\n-4.91796732e-01 -2.50097960e-01 5.82885861e-01 2.19699115e-01\\n1.32803276e-01 1.41867161e-01 1.55721277e-01 3.46104242e-02\\n-1.32226914e-01 -3.53808522e-01 3.07837099e-01 1.15893483e-01\\n1.23779237e-01 3.41952071e-02 -2.43840199e-02 -6.60068274e-01\\n-3.59858561e+00 -1.91759348e-01 1.21772893e-01 -2.22645640e-01\\n1.94363326e-01 -1.47387475e-01 7.37033635e-02 -1.25644922e-01\\n-2.12562442e-01 2.28356272e-01 -8.41122270e-02 -1.79364979e-01\\n1.04589656e-01 1.45522565e-01 1.16311796e-01 1.99215457e-01\\n1.11552909e-01 -3.03366333e-01 -2.84181777e-02 3.14219773e-01\\n-2.35126019e-01 -5.79310894e-01 2.36771822e-01 -2.73830332e-02\\n3.52808297e-01 2.81629026e-01 -3.18864107e-01 -1.25244007e-01\\n-2.86033392e-01 -1.12069875e-01 -8.07832833e-03 -2.59101450e-01\\n-1.99895948e-01 2.12190926e-01 3.19670051e-01 -6.83308840e-02\\n6.57833219e-02 -4.61620212e-01 -1.22044049e-01 -3.83365422e-01\\n1.54885069e-01 -4.87097889e-01 -3.50606963e-02 -1.77613094e-01\\n7.66932964e-01 -2.64610469e-01 1.20386809e-01 -2.42949203e-02\\n1.72910765e-01 9.26042274e-02 1.97168201e-01 4.68848869e-02\\n-1.16068557e-01 -1.53544277e-01 5.89146186e-03 -1.11718327e-01\\n5.92903614e-01 4.59742844e-01 -1.58696160e-01 -7.77386799e-02\\n-8.62235054e-02 -2.86360085e-01 -5.00461876e-01 -2.10148513e-01\\n1.64027661e-02 -1.61578253e-01 -5.18305957e-01 -4.07081187e-01\\n-1.59781769e-01 -3.06602232e-02 -1.21592991e-01 5.65199196e-01\\n-2.55324215e-01 -3.27818185e-01 -1.37555286e-01 -5.33102155e-01\\n1.64348736e-01 -1.27243802e-01 2.92216502e-02 -1.98386192e-01\\n-2.13190809e-01 -4.82716709e-01 -7.52465799e-02 -3.51886712e-02\\n2.83312798e-03 -3.71589363e-01 8.91566575e-02 7.63843581e-03\\n-2.93043941e-01 -3.98492992e-01 4.20894563e-01 2.45878041e-01\\n2.99016863e-01 3.08950413e-02 2.23889619e-01 2.97841523e-02\\n2.45053858e-01 -1.16223484e-01 -3.84172425e-03 -3.35933417e-01\\n4.83188182e-02 -3.02931108e-02 4.49657500e-01 -1.66136175e-01\\n7.80265033e-02 6.94564730e-02 -2.53501683e-01 -1.15942784e-01\\n3.38073313e-01 -1.25041276e-01 4.96917516e-02 -1.56201735e-01\\n2.47353524e-01 -2.70015806e-01 -1.43927842e-01 3.30770388e-03\\n8.89796615e-02 5.74460387e-01 -4.16822769e-02 -3.72638881e-01\\n-8.02110061e-02 5.18151820e-01 -9.86938104e-02 -3.97884846e-02\\n-1.53020650e-01 5.55951633e-02 -2.64979482e-01 1.65183097e-01\\n1.10838406e-01 -9.85378623e-02 -2.98354626e-01 -1.00711718e-01\\n4.18888181e-02 3.66749465e-01 2.79540598e-01 2.03975201e-01\\n-2.98624113e-03 -4.15535331e-01 -2.18448639e-01 2.00178623e-01\\n1.74125001e-01 3.61331999e-01 1.61815733e-01 -1.73070937e-01\\n1.52426325e-02 3.26834708e-01 -1.18488371e-01 9.94749069e-02\\n-1.86725169e-01 1.01170443e-01 -3.88369739e-01 -2.07503691e-01\\n-2.47959092e-01 -3.03525209e-01 8.21034238e-02 2.58240640e-01\\n1.20882720e-01 -2.24431269e-02 -4.19498309e-02 -4.27704334e-01\\n3.71368706e-01 -5.22990078e-02 2.28221178e-01 1.58329159e-01\\n3.63649428e-02 5.85544586e-01 5.98297566e-02 -1.46352634e-01\\n-2.34547630e-01 4.44496535e-02 -1.25891250e-02 -1.02973655e-01\\n2.97532622e-02 -4.66632754e-01 -1.52713150e-01 2.99653649e-01\\n8.47446248e-02 -2.59561419e-01 -1.61045849e-01 2.64525801e-01\\n-1.76227257e-01 -2.72785932e-01 -2.51461089e-01 -1.47569150e-01\\n3.25329363e-01 2.35195123e-02 3.38687807e-01 -5.40250540e-01\\n-6.51074052e-02 -5.40428460e-02 -6.13803342e-02 4.48702931e-01\\n7.67198950e-03 -1.39379930e-02 -1.06233224e-01 -1.83382213e-01\\n4.05244470e-01 -7.99717009e-02 -9.25955027e-02 3.38664427e-02\\n5.74631914e-02 -1.60488486e-01 -5.76912165e-01 8.41579661e-02\\n7.01146871e-02 -1.98696062e-01 8.26717541e-02 1.75201327e-01\\n7.95333982e-02 2.23702043e-01 -6.43078089e-01 -2.61258304e-01\\n-2.46307164e-01 -5.83102703e-02 -1.05735853e-01 -5.56548119e-01\\n-2.29602102e-02 -1.16353199e-01 -4.81107473e-01 2.27179080e-01\\n-2.64079273e-01 -2.13978037e-01 3.15370858e-02 6.96945563e-03\\n-2.73305893e-01 -4.84699123e-02 1.57877147e-01 2.35617414e-01\\n-2.48942673e-01 -3.95612299e-01 9.73041952e-02 -8.83401692e-01\\n3.08862805e-01 8.33350047e-02 -1.53690577e-01 5.18677682e-02\\n-1.29490808e-01 -6.52248263e-01 1.46879226e-01 -2.72534966e-01\\n-6.18488491e-02 -6.13794476e-02 -2.39853576e-01 -3.07855606e-01\\n1.51126653e-01 7.59874582e-02 -2.54959971e-01 3.00465971e-01\\n-2.65511274e-01 3.79898071e-01 -2.11843818e-01 1.14548363e-01\\n1.54430903e-02 -2.54233986e-01 3.62084210e-02 -5.97950816e-01\\n-4.29953575e-01 -4.60287854e-02 -2.21724629e-01 -2.30584756e-01\\n-1.05949193e-01 -2.54104525e-01 -6.35505840e-02 6.98616803e-02\\n3.51374865e-01 1.11116856e-01 -2.22409189e-01 -1.91932335e-01\\n-5.50917722e-03 -3.90563190e-01 6.34375736e-02 -8.26173425e-02\\n-1.37054503e-01 -1.86746478e-01 1.98608756e-01 1.59327775e-01\\n6.54455721e-02 -3.51890832e-01 2.16901183e-01 -4.41379249e-01\\n-2.02145621e-01 -4.80008498e-02 9.91929471e-02 -2.62392825e-03\\n3.63564283e-01 -5.60829282e-01 -7.75943846e-02 3.85019898e-01\\n1.25989258e-01 1.19761765e-01 2.39824414e-01 -6.22060373e-02\\n3.64952609e-02 2.90100068e-01 -3.40883732e-01 1.69886544e-01\\n6.13146186e-01 1.00623406e-01 1.39180198e-01 1.38217479e-01\\n1.52971804e-01 2.14029044e-01 4.21449602e-01 1.39933705e-01\\n-1.38669014e-01 3.25544655e-01 1.36331335e-01 -6.16463661e-01\\n-4.59305234e-02 5.07320464e-02 -2.01713040e-01 -4.86057639e-01\\n5.76632142e-01 3.74846935e-01 -3.77397954e-01 -1.31990314e-01\\n-1.96178675e-01 -2.07945779e-01 5.37686050e-02 -4.22590263e-02\\n1.35144964e-01 -1.65300772e-01 4.28255558e-01 -1.13569498e-01\\n1.41685069e-01 5.64504385e-01 -1.32713422e-01 -2.51572132e-01\\n-1.34577498e-01 2.29997441e-01 1.13049969e-02 5.27569413e-01\\n-2.22804680e-01 2.97497898e-01 -9.61238239e-03 1.22012421e-01\\n-1.14972159e-01 1.99259639e-01 4.33888957e-02 1.11383535e-01\\n1.32531524e-01 1.21649101e-01 4.29489881e-01 3.80240202e-01\\n4.25669193e-01 4.20920521e-01 1.93905652e-01 8.64363909e-02\\n5.54483414e-01 6.26987576e-01 3.53179544e-01 -1.60816647e-02\\n-5.30245081e-02 7.22485259e-02 3.98595557e-02 -3.17636654e-02\\n4.25622582e-01 4.32650089e-01 -4.05639932e-02 8.54408741e-01\\n3.94513726e-01 2.38099277e-01 6.71892405e-01 -5.62213957e-01\\n-2.50269920e-01 7.87894279e-02 3.58505875e-01 -4.01327044e-01\\n-1.89535487e-02 2.19336987e-01 -2.57916600e-01 1.84428096e-01\\n-3.36098731e-01 -2.51055092e-01 -5.01784682e-02 2.13523045e-01\\n-2.55111679e-02 -1.55956283e-01 -2.17018813e-01 1.26630142e-01\\n-6.64239079e-02 -1.27065763e-01 -5.01424730e-01 -1.07387742e-02\\n-2.27471590e-01 -2.25099958e-02 -1.71294749e-01 -1.70998067e-01\\n-7.63860643e-02 -3.39218795e-01 -1.09551802e-01 -8.64733309e-02\\n1.72074646e-01 -2.99663514e-01 -1.06064111e-01 -1.33756608e-01\\n3.07657182e-01 1.92410961e-01 5.27699709e-01 -1.26560673e-01\\n1.39605656e-01 -2.07228929e-01 -2.10670114e-01 2.29752466e-01\\n2.08537325e-01 1.51748732e-01 -1.61329806e-02 1.89585313e-01\\n-1.61327168e-01 -1.21763192e-01 1.32539392e-01 2.87907988e-01\\n-3.97140384e-01 7.32619911e-02 -1.23376854e-01 2.69635022e-01\\n7.69453496e-02 3.71492431e-02 -1.59713656e-01 5.47447056e-03\\n-1.23327777e-01 -4.50538844e-01 2.18381286e-01 -4.59142923e-02\\n-6.18188232e-02 1.22052707e-01 2.96927631e-01 1.24312915e-01\\n-3.27293336e-01 -1.13116190e-01 -8.22888091e-02 2.08650097e-01\\n4.83332574e-02 1.98945820e-01 -1.66449919e-01 -2.85801202e-01\\n-1.41614929e-01 1.50194257e-01 -1.92084998e-01 6.92138821e-02\\n1.13935433e-02 3.15719306e-01 -2.49072537e-03 1.09081075e-01\\n4.35756654e-01 -4.84098420e-02 -2.28269339e-01 -2.38923982e-01\\n-3.03419769e-01 -1.15310267e-01 -6.33409321e-02 -1.26942441e-01\\n2.26360664e-01 -2.40976885e-01 -7.41824210e-02 -2.35900879e-02\\n-6.44095391e-02 -2.80245662e-01 7.33688325e-02 -1.03815094e-01]]',\n", + " 'job_description': \"FRONT-END SOFTWARE ENGINEER (TECHNOLOGY) Start: As soon as possible Location: Zürich, 100% THE FELFEL TECHNOLOGY TEAM & YOUR IMPACT FELFEL is a startup based in Zürich, Switzerland. The company has revolutionized how people eat at work with its intelligent technology - the FELFEL fridge. The company is among the fastest growing startups in Switzerland with over 80 employees. Our Technology team - currently consisting of 10 engineers - has built the heart of FELFEL's product and is responsible for our success as a leading European foodtech company. In this role, you will work very directly with the CTO, our founders and other teams at FELFEL (product, growth, sales, support, etc.) to improve the experience for our end customers eating at work every day, as well as the internal users of our technology. YOUR ROLE: Drive the evolution of the front-ends serving consumers and internal users. Build high-quality mockups and design prototypes around customer needs. Coordinate with our backend engineers to evolve the APIs required by the front-ends. Iteratively improve the user experience by incorporating feedback from customers and internal users. Assist with the development of our React Native based mobile apps. Maintain build automation pipelines to ensure efficient & reliable front-end deployment. WHO YOU ARE: You are an experienced front-end engineer with broad programming skills. You are able to build production-ready software that meets the needs of our customers and internal users. You have significant experience in building front-ends with the React framework. You can architect and implement robust software capable of embracing change. You are able to create effective user experiences from product specifications and insight into user psychology. Experience in building mobile apps with React Native is a plus. You possess a degree in Computer Science or related fields. You thrive in a collaborative environment involving different stakeholders and domain experts. Curiosity is key. We like to learn new stuff, fail fast and explore new territories - so do you. Your attitude is positive. ‘The Answer is Yes’. You are fluent in written and spoken English. If you speak German and/or French - even better. Authentic love & passion for good food. Non-smoker during work time: You never smell like cigarettes and don’t smoke during the day: FELFEL is about healthy living. EU/EFTA or Swiss work permit. WHAT WE OFFER: Lots of good (like really good ;)) food. Just steps away from your desk – we make all food dreams come true… Barista: Our office barista makes fresh coffee & tea for the whole team every day: be it Cappuccino, Americano, Espresso, Chai or Matcha – whatever you prefer the most! Holidays: Enjoy 5 weeks of holidays every year Birthday retreat: On top of your 5 weeks off, take a half day off work to enjoy your birthday Transport: We encourage employees to use public transport by financing the half-fare card Family: FELFEL is a family business with strong values and traditions. We support parenting by giving 1 week of holidays for new dads, 16 weeks for new mums, and paying for up to two days per week of child care People: A great international & diverse team (20 different nationalities!) of talented people who turn their passion into a career (English is our company language) Location: We are located in the heart of Zurich - on the top floor in a bright, open office // We are located in the heart of Lausanne - a lovely office with a beautiful view. Every now and then, get the chance to work from your second office and enjoy an evening in a different city ;) Makers. We are looking for people who want to make a difference - Ownership is an important FELFEL credo. Fun. We 'host' various events, including team aperitifs, sleigh rides, breakfast events and the well-known FELFEL summer & winter-outings… In the summer days we offer working outside in the lake beach clubs or similar locations for a refreshing working day :) Modern way of working. We use the latest technologies and offer time flexibility to individual team members (it matters ‘what’ you do, not ‘when’ in the day). Deep & variegated tech stack - we do everything from monitoring fridge temperature to creating management dashboards. Relocation support if you are based outside of Switzerland. We know that moving can be a challenge in terms of housing & documentation – we will do our best to make it as smooth as possible. HOW YOU APPLY: Interested? Please click on the link “APPLY NOW” and introduce your details in the form on careers.felfel.ch. We can only consider applications submitted via the form and we will get back to you latest 72 hours after your submission. What do we need? CV & short cover letter where you explain why you are our new Front-End Software Engineer. WHO WE ARE, THE FELFEL COMPANY FELFEL revolutionizes how people eat at work with smart technology. Our intelligent fridge makes it possible - good food all day long for employees at work, created by the best local chefs. Over 60'000 employees at more than 400 companies in Switzerland already benefit from a FELFEL fridge at work. FELFEL is a family-owned company and supports small, local producers in Switzerland. Sustainability is a core company value. The company has won several prestigious awards, among others the Swiss Economic Forum Award in 2017. The company was founded in 2013 and counts over 80 employees today. Friendship, respect, 'eating good food together' are key elements of our company culture. You can find more insights on the company and the team on LinkedIn, Facebook, Instagramand of course our website.\",\n", + " 'soft_skills': '[\"Positivity\", \"Coordinating\", \"Collaboration\", \"Management\", \"Reliability\", \"Curiosity\", \"Sales\"]',\n", + " 'hard_skills': '[\"Mockup\", \"Programming (Music)\", \"Sustainability\", \"Computer Science\", \"Consumables\", \"Psychology\", \"Building Automation\", \"Mobile App\", \"Authentications\", \"Office Open XML\", \"React Native\", \"Prototyping\", \"Maintainability\", \"Iterators\", \"Pipelining\", \"Software Engineering\", \"Dashboard\", \"React.js\", \"Hosting\", \"Espresso (Android Testing Framework)\", \"Finance\", \"User Assistance\", \"Flooring\", \"Foods\", \"Public Transport\", \"Child Care Policy\", \"Front End (Software Engineering)\", \"Economics\", \"Build Automation\", \"User Experience\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Venda', 'Hiri Motu']\"},\n", + " {'company_id': '40',\n", + " 'job_title': 'java software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.epam.com',\n", + " 'jobdescription_embedded': '[[-1.71919584e-01 2.81732976e-01 4.84064937e-01 -5.69593236e-02\\n4.68256027e-01 -3.42160948e-02 1.02954051e-02 2.62089521e-01\\n-2.28129048e-02 -3.24739158e-01 -2.06437349e-01 -2.69569308e-01\\n-4.12275195e-02 -5.38917370e-02 1.63495794e-01 4.88623798e-01\\n2.90773839e-01 7.33274827e-03 -1.84407234e-01 3.64538878e-01\\n1.37059212e-01 -1.07738093e-01 8.29301625e-02 7.77324319e-01\\n4.40808922e-01 7.30543584e-02 -7.26303160e-02 3.25239971e-02\\n-2.48149872e-01 -3.70282769e-01 5.62941849e-01 4.10772711e-02\\n-6.69803694e-02 -2.80117482e-01 2.85782546e-01 1.05221912e-01\\n-2.15670288e-01 3.22967358e-02 -1.60293326e-01 7.20751658e-02\\n-3.89699817e-01 -1.22789666e-01 3.39950100e-02 1.68695260e-04\\n-3.35550547e-01 -3.55818629e-01 -2.22640531e-03 -1.48606315e-01\\n1.77784547e-01 7.46651143e-02 -4.60888356e-01 2.63323814e-01\\n-2.68141299e-01 -2.83383459e-01 4.06603992e-01 7.84524679e-01\\n-6.99770302e-02 -5.94139755e-01 -4.24086094e-01 -3.70293081e-01\\n3.79855298e-02 -1.72399089e-01 1.12645008e-01 -1.59389257e-01\\n2.92536199e-01 -9.60010886e-02 -2.55580824e-02 3.14662695e-01\\n-7.01461375e-01 -8.52232352e-02 -3.00141186e-01 -3.62822637e-02\\n-4.20129687e-01 -1.14736967e-01 -5.02167881e-01 -1.26343474e-01\\n-1.39673635e-01 4.78894204e-01 -1.87342893e-02 7.03255013e-02\\n-1.10106021e-01 2.78921962e-01 -2.82969147e-01 3.23967695e-01\\n3.29088479e-01 1.95822984e-01 2.84555167e-01 3.31168562e-01\\n-4.19477940e-01 5.02915382e-01 3.09483618e-01 -3.11178982e-01\\n1.92650154e-01 7.88890570e-02 4.20271009e-01 2.29248732e-01\\n4.33826447e-02 1.46156892e-01 -6.29642308e-02 1.21827081e-01\\n2.58275628e-01 -1.19165085e-01 -5.07609062e-02 -1.80285230e-01\\n5.69037683e-02 -5.39673609e-04 3.79325449e-02 9.19675454e-02\\n-3.66221726e-01 3.54981542e-01 7.58465901e-02 -3.14536095e-01\\n-1.31201655e-01 -5.10037303e-01 -1.16903126e-01 -4.81957905e-02\\n-1.06746361e-01 2.95047998e-01 2.06738546e-01 2.23915368e-01\\n2.17652053e-01 -9.50488672e-02 1.02999650e-01 9.01753306e-01\\n-8.98940563e-02 6.87399134e-02 -2.28422076e-01 3.20472330e-01\\n1.49375647e-01 -2.42888182e-01 2.25913718e-01 1.82129696e-01\\n-1.94654092e-01 -1.04907021e-01 -2.56095111e-01 3.02702785e-01\\n-1.37177572e-01 -2.37009943e-01 -2.77807176e-01 1.33254096e-01\\n-1.74192190e-01 -5.29696822e-01 6.49683356e-01 -3.45626995e-02\\n1.16750129e-01 -1.34211913e-01 6.32655025e-02 -8.07553381e-02\\n-9.66741368e-02 2.16834903e-01 7.73973241e-02 1.13380492e-01\\n-2.16948643e-01 -2.03120202e-01 -1.86517745e-01 2.34471038e-01\\n-8.59403983e-02 1.16346151e-01 -3.24103862e-01 -1.76558018e-01\\n3.11060995e-01 1.34218112e-01 -2.86858708e-01 2.47557282e-01\\n5.50704412e-02 -8.18937793e-02 -1.63809314e-01 2.31823668e-01\\n-1.93685442e-01 2.27208197e-01 -5.42349480e-02 -2.41532493e-02\\n7.64591157e-01 1.24833368e-01 2.85915852e-01 -1.26268819e-01\\n2.83260047e-01 -8.15177262e-02 2.26839527e-01 1.87850133e-01\\n-5.57293713e-01 3.07172984e-01 -5.68480650e-03 -5.77630587e-02\\n1.17821805e-01 -6.97071552e-02 2.13178620e-01 -3.69680792e-01\\n8.70050564e-02 -1.09583028e-01 -3.56728494e-01 -3.62782180e-01\\n-9.46436748e-02 -7.79080614e-02 3.44352692e-01 -5.26448011e-01\\n1.01827569e-02 2.70497024e-01 -5.91163397e-01 -1.84783429e-01\\n2.06232592e-01 2.47477159e-01 1.38238341e-01 2.08066106e-01\\n-1.32898092e-01 -4.68614787e-01 1.34221435e-01 -3.81671399e-01\\n-3.35919261e-01 1.09545164e-01 -2.35484689e-01 1.29149228e-01\\n5.88874482e-02 5.02655096e-02 -1.92479372e-01 1.06266379e-01\\n-2.97162920e-01 1.59906072e-03 2.05155089e-01 9.34998244e-02\\n2.74592370e-01 1.49871558e-01 -3.80010724e-01 5.46890497e-01\\n-2.17333153e-01 4.26605344e-01 7.14566857e-02 -9.88181949e-01\\n5.42867184e-01 2.85078704e-01 -3.30983698e-02 -3.36631507e-01\\n4.19231951e-01 -4.12984788e-01 1.20959125e-01 1.29474282e-01\\n-3.42794001e-01 -2.58195996e-01 3.57731909e-01 -2.30537266e-01\\n-2.70753711e-01 5.99315047e-01 -1.22890901e-02 7.36503974e-02\\n1.95343316e-01 -9.47185233e-02 -1.82541668e-01 7.05934828e-03\\n-2.33077452e-01 -1.13625921e-01 -5.93707621e-01 1.05579488e-01\\n-9.65390876e-02 -4.75049764e-01 -1.20107755e-01 -6.11977935e-01\\n-3.01712692e-01 -3.93612832e-01 -2.15479359e-01 6.18445538e-02\\n1.40492663e-01 1.35498285e-01 -1.76348180e-01 -6.04385845e-02\\n-8.96640569e-02 -7.13332951e-01 -3.98706868e-02 5.96145056e-02\\n3.92174095e-01 2.66706288e-01 8.68079513e-02 -4.11208346e-02\\n5.08651733e-02 5.46246529e-01 -3.25899899e-01 -1.13582291e-01\\n1.54191479e-01 1.15970299e-01 8.69006291e-02 -1.41533658e-01\\n1.13556879e-02 2.71666408e-01 -3.59004736e-01 -3.10435928e-02\\n-1.00238919e-01 6.74099401e-02 3.83340687e-01 -9.57019180e-02\\n-3.66176307e-01 -2.39621192e-01 -6.72222227e-02 2.19832659e-01\\n-6.47780180e-01 -2.36217186e-01 7.56670356e-01 1.87729806e-01\\n4.20486555e-02 3.15089315e-01 2.01971918e-01 -3.01755108e-02\\n-2.07486093e-01 -1.10348739e-01 3.69705915e-01 4.70934138e-02\\n1.53266639e-01 1.58329383e-01 -1.82434276e-01 -6.99135959e-01\\n-3.30875325e+00 -1.40472740e-01 1.23780124e-01 -2.27444500e-01\\n2.48103052e-01 -1.87426418e-01 2.31958002e-01 -5.12921102e-02\\n-3.83744091e-01 -1.11498155e-01 -1.37218490e-01 -1.11436285e-01\\n1.35792524e-01 2.48466298e-01 1.32421955e-01 3.64632994e-01\\n1.68590963e-01 -2.42952749e-01 1.45405367e-01 4.04380083e-01\\n-2.75270909e-01 -7.54139364e-01 1.67608276e-01 5.28822877e-02\\n1.95483565e-01 4.29810509e-02 -4.52280015e-01 -7.58045241e-02\\n-2.96889514e-01 -2.51669407e-01 5.53993396e-02 -1.70366690e-01\\n-2.52960414e-01 1.64696291e-01 2.30514735e-01 -1.87001467e-01\\n1.20414391e-01 -4.73970115e-01 -1.18615925e-01 -5.47729433e-01\\n2.26956280e-03 -6.72837079e-01 2.68606972e-02 -2.13380996e-02\\n6.34693027e-01 -2.38545164e-01 1.93822309e-01 1.43922597e-01\\n2.17761263e-01 1.37691110e-01 1.45964101e-01 6.94967285e-02\\n-3.41597587e-01 -3.07024539e-01 -1.16236143e-01 -2.10364684e-01\\n5.73414326e-01 4.61988360e-01 -1.40686989e-01 3.22067924e-02\\n-8.31708312e-02 -2.74249613e-01 -4.45239305e-01 -3.09342563e-01\\n-3.28293085e-01 3.60417590e-02 -7.21698105e-01 -4.91704315e-01\\n-1.96297809e-01 -2.41964355e-01 -1.49175137e-01 6.45357847e-01\\n-1.59837812e-01 -3.35736632e-01 -4.90242317e-02 -4.86358702e-01\\n3.28123122e-01 -8.53832960e-02 1.33512139e-01 -1.88681409e-01\\n-1.83597207e-01 -3.96379173e-01 2.43595928e-01 -4.67403568e-02\\n-1.64900422e-01 -1.35136634e-01 8.16346332e-02 -5.69810644e-02\\n-3.65135431e-01 -5.40824533e-01 4.05861557e-01 5.87495044e-02\\n3.33712816e-01 1.04988001e-01 3.58494788e-01 6.20415434e-02\\n3.41854930e-01 -4.13585752e-02 -8.74069333e-03 -4.58473414e-01\\n1.42114214e-03 1.04126289e-01 5.60548306e-01 -2.19750553e-01\\n1.86550915e-01 1.59535557e-01 -3.22372139e-01 -1.16958385e-02\\n4.24700171e-01 -5.06309047e-02 1.79881409e-01 -2.65685916e-01\\n2.82050073e-01 -2.51965314e-01 -3.18642944e-01 -3.90035249e-02\\n2.29194742e-02 6.74745917e-01 -6.89919339e-03 -4.34743881e-01\\n-1.60144493e-01 4.45980161e-01 -6.94843754e-02 -1.03051830e-02\\n-2.98297822e-01 1.53930381e-01 -2.88108498e-01 2.91676909e-01\\n5.52276969e-02 -1.37562051e-01 -3.69112849e-01 -1.37981340e-01\\n-9.84194353e-02 2.47453615e-01 2.19683245e-01 1.19268313e-01\\n-9.28810239e-02 -2.26653650e-01 -5.49519956e-02 2.65233308e-01\\n1.57322660e-01 3.91252965e-01 2.62707263e-01 -3.17310363e-01\\n7.57882595e-02 2.23599523e-01 -1.98541880e-01 3.02110225e-01\\n-3.05316776e-01 1.83055922e-01 -5.82228422e-01 -2.25112885e-01\\n-2.42460132e-01 -4.16365325e-01 1.26069367e-01 3.75059754e-01\\n6.00344427e-02 5.74178714e-03 1.47806883e-01 -4.70705986e-01\\n3.84077638e-01 4.94497679e-02 1.58891872e-01 1.32541269e-01\\n1.17428556e-01 6.33234322e-01 4.88760741e-03 -1.57410577e-01\\n-2.16880485e-01 5.69334403e-02 -3.25867206e-01 -2.15343311e-01\\n8.51912051e-02 -5.32782495e-01 -6.87642321e-02 4.03517127e-01\\n1.46207377e-01 -9.37833562e-02 -1.47742718e-01 2.90811896e-01\\n1.81198493e-02 -2.49550626e-01 -2.52390951e-01 2.45402986e-03\\n2.44264826e-01 5.38487360e-02 3.00696164e-01 -4.90627229e-01\\n1.05952457e-01 -1.23984665e-01 8.34117681e-02 5.25035381e-01\\n1.69569731e-01 2.20710039e-01 -1.37485033e-02 -1.80477440e-01\\n5.24444580e-01 -1.00963816e-01 -1.12638921e-01 -3.81861515e-02\\n9.92491096e-02 -1.73227772e-01 -5.04171431e-01 4.38575894e-02\\n-9.10531208e-02 -1.45354718e-01 9.59565639e-02 1.11411311e-01\\n1.06030457e-01 -2.92574968e-02 -6.41000152e-01 -3.24678749e-01\\n-3.33363861e-01 1.63768753e-01 1.16787739e-02 -6.62823319e-01\\n-6.39719591e-02 5.50428145e-02 -5.98048985e-01 2.57290781e-01\\n-3.89619870e-03 -4.88169044e-02 1.88672781e-01 7.62674138e-02\\n-1.71412870e-01 -9.44894925e-02 1.36151388e-01 1.30378932e-01\\n-2.10719228e-01 -1.62710994e-01 3.63288657e-03 -1.07502043e+00\\n2.25441024e-01 7.30384216e-02 -2.00783119e-01 9.21990052e-02\\n-4.71623205e-02 -8.58056366e-01 2.26553410e-01 -3.93634170e-01\\n-7.61694834e-02 1.12937696e-01 -1.31912380e-01 -4.96871710e-01\\n6.80479556e-02 -7.11151026e-03 -2.83148915e-01 3.24218273e-01\\n-3.98939878e-01 4.25331652e-01 -4.78918850e-02 1.81701779e-01\\n1.47260875e-01 -3.05740237e-01 3.44472118e-02 -3.49052161e-01\\n-3.86572897e-01 -2.27709249e-01 -2.72239596e-01 -1.91561729e-01\\n4.21302058e-02 -2.93487489e-01 -6.65989071e-02 -2.89108679e-02\\n4.81133968e-01 2.28502020e-01 -1.98604494e-01 -3.35714102e-01\\n2.15981696e-02 -5.51821828e-01 2.56159976e-02 -1.91342056e-01\\n2.53805090e-02 -2.86454499e-01 3.09090316e-01 -9.52417776e-03\\n3.14948350e-01 -4.38213319e-01 5.12106419e-01 -1.91226378e-01\\n-4.20582384e-01 -9.96183231e-02 8.75280574e-02 3.45657580e-02\\n3.31998438e-01 -4.87252146e-01 -1.56253695e-01 3.10691506e-01\\n-1.68279912e-02 -9.44731943e-03 3.31054658e-01 -1.93903074e-01\\n-1.74969390e-01 2.00190648e-01 -5.59068322e-01 2.07319483e-01\\n6.73894763e-01 2.44034287e-02 1.16923988e-01 9.69735458e-02\\n1.34544000e-01 2.28441358e-01 6.37487769e-01 -5.95330708e-02\\n-1.54868022e-01 3.40685725e-01 -8.31345022e-02 -6.81346893e-01\\n-3.15954648e-02 -1.77135572e-01 -7.96217173e-02 -4.00322050e-01\\n6.64742172e-01 3.37964803e-01 -2.74512768e-01 -2.91313142e-01\\n-1.98888719e-01 -2.59303451e-01 2.69883871e-01 7.92102367e-02\\n9.83724557e-03 -6.33535981e-02 4.96266574e-01 -1.78306736e-03\\n3.90143067e-01 4.91152257e-01 -1.94394901e-01 -1.92403585e-01\\n-4.98873219e-02 2.48325482e-01 3.13150845e-02 4.71769035e-01\\n-1.47375509e-01 2.33435497e-01 9.97645333e-02 1.93992764e-01\\n-1.93518654e-01 -5.30297644e-02 1.65692478e-01 1.29700169e-01\\n1.36714384e-01 -8.32184311e-03 5.06102324e-01 4.54964310e-01\\n3.26938540e-01 3.89599085e-01 3.09572160e-01 1.76237114e-02\\n4.97174054e-01 6.87113583e-01 4.14649457e-01 1.56375319e-01\\n8.47204626e-02 5.82023300e-02 9.82664451e-02 -4.75001074e-02\\n3.15815508e-01 4.59129393e-01 3.72670479e-02 7.28798866e-01\\n3.48006755e-01 3.09118271e-01 7.11241066e-01 -7.06816018e-01\\n-3.38940054e-01 -1.00262761e-01 6.42797351e-01 -3.96856219e-01\\n9.55101475e-02 2.35689089e-01 -1.90204471e-01 2.00395957e-01\\n-4.29340839e-01 -1.39828324e-01 1.05848722e-01 -1.11335829e-01\\n1.70839131e-01 -1.45234898e-01 -1.33434087e-01 1.76549882e-01\\n-2.31828839e-01 -2.41125032e-01 -3.57971132e-01 -8.26558471e-02\\n-3.11307758e-01 1.56581104e-02 -5.73256388e-02 -6.57175034e-02\\n-2.23926112e-01 -2.45213434e-01 -1.84875518e-01 1.64091066e-02\\n3.14159483e-01 -1.62863210e-01 -1.78881496e-01 -1.67792171e-01\\n1.88264742e-01 3.26184303e-01 6.50709927e-01 -3.53121869e-02\\n1.79076210e-01 -2.98844159e-01 -1.25256985e-01 1.58627063e-01\\n2.64280349e-01 -4.73334491e-02 6.48877323e-02 4.95882303e-01\\n-3.43580276e-01 -2.56434500e-01 1.60778254e-01 3.03699344e-01\\n-3.88005406e-01 1.73377059e-02 -1.03157029e-01 1.47013232e-01\\n2.18542060e-03 1.85138464e-01 -2.16427162e-01 -1.24779353e-02\\n-3.59577164e-02 -6.00027144e-01 4.63126838e-01 -9.34181362e-02\\n-2.15923011e-01 6.38946891e-02 2.44623274e-01 3.46377730e-01\\n-2.93448657e-01 7.12933913e-02 -1.90976307e-01 8.93735141e-02\\n5.29000424e-02 3.44804287e-01 -2.63412654e-01 -2.32178330e-01\\n-2.79406607e-01 2.81543851e-01 -1.27655476e-01 1.36797443e-01\\n6.75568208e-02 3.87520343e-01 1.28951252e-01 -4.25912030e-02\\n3.03428620e-01 9.69086811e-02 -2.97073752e-01 -2.14627206e-01\\n-2.70903647e-01 -8.77839997e-02 4.59462851e-02 -1.89668775e-01\\n2.02823713e-01 -3.21965694e-01 2.41124891e-02 -2.42942855e-01\\n-3.19720268e-01 -3.65619898e-01 -2.03693494e-01 -3.58000025e-02]]',\n", + " 'job_description': 'We are looking for a Java Software Engineer to come on board and support our operation in Zürich. The team provides server-side solutions for pricing and execution of a wide range of financial instruments including FX Vanilla & Exotic Options. The programme of work has a very high profile and is recognised to be a key part of our business strategy. Responsibilities Design and implement solutions, writing high quality code and adhere to coding standards Work across full delivery cycle to ensure high quality delivery, utilizing automated testing Support the system / team in resolving high-priority defects and deploying fixes to production systems Work as part of an agile development team and collaborate with global business and IT stakeholders Perform level 3 support, assisting production operations team in rollout and support-related matters Requirements Strong server-side Java skills, including expertise in multi-threaded performance critical programming Large-scale enterprise, object-oriented design experience and hands-on experience in building distributed systems Applied solutions to cater for non-functional requirements including stability, manageability, scalability, capacity and performance Strong analytical, problem-solving and synthesizing skills (you know how to figure stuff out) Working experience in agile SDLC and TDD methodology, with Git/GitHub and continuous integration Ability to work closely with business partners, as part of a global team, delivering iteratively Interest in financial industry or FX derivatives business knowledge Exposure to electronic trading platforms and FIX engines is an added advantage Nice to have: some Java Swing knowledge, Apache Kafka Passionate about what you do, you value excellence, learning and integrity, you like a work Environment that places emphasis on teamwork, collaboration and delivering business value while Working at a sustainable pace Someone who is technically excellent and can aspire, and inspire others, to our values and culture Proactive, detail-oriented and comfortable working in dynamic environments with fast paced deliveries and changing requirements Quick learner An excellent communicator, strong written and verbal communication skills in English We offer Large developer community around the world Career development across technologies and domains Competitive compensation Extensive in-house educational opportunities Dynamic teams and creative work environments Corporate and social events Being part of an international organization servicing both local and global clients Unlimited access to LinkedIn learning solutions Additional Please note that any offers will be subject to appropriate background checks We do not accept CVs from recruiting or staffing agencies Due to the Swiss labour legislation we can only accept EU candidates and applicants who have open work permit for Switzerland',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Proactivity\", \"Management\", \"Problem Solving\", \"Communications\", \"Operations\", \"Detail Oriented\", \"Integration\", \"Creativity\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Electronic Trading Platform\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Agility\", \"Programming (Music)\", \"Sustainability\", \"Analytics\", \"Automated Testing Framework\", \"Business Partnering\", \"Continuous Integration\", \"Business Strategies\", \"Industrialization\", \"Legislation\", \"Scale (Map)\", \"Financial Instrument\", \"Functional Requirement\", \"Financial Information eXchange (FIX) Protocol\", \"Levelling\", \"Apache Kafka\", \"Executable\", \"Server-Side\", \"Iterators\", \"Hostile Work Environment\", \"Software Engineering\", \"Github\", \"AD Model Builder (ADMB)\", \"International Organizations\", \"Electronic Trading\", \"Scalability\", \"Object-Oriented Design\", \"Production Systems\", \"Community Development\", \"Swing (Dance)\", \"Career Development\", \"Quality Cost Delivery\", \"Additives\", \"Git Flow\", \"Derivatives\", \"Java (Programming Language)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'java software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.57583886e-01 2.24278361e-01 6.10608578e-01 -1.32473692e-01\\n5.40641129e-01 -2.66387910e-01 8.89475271e-03 4.58861977e-01\\n-1.72101825e-01 -3.97874653e-01 -8.91604796e-02 -2.91676521e-01\\n-8.50128308e-02 1.08348310e-01 1.90760925e-01 3.06241989e-01\\n2.47287810e-01 1.53054461e-01 -1.96567520e-01 3.35067272e-01\\n1.45332381e-01 -1.12508059e-01 -7.27547472e-03 7.02277780e-01\\n4.61279154e-01 2.71470379e-02 -1.81327716e-01 8.36401954e-02\\n-2.35679656e-01 -3.43126655e-01 4.10136104e-01 5.15991859e-02\\n-1.31657824e-01 -2.32896119e-01 1.05538338e-01 6.84699789e-02\\n-2.18084857e-01 -3.67332511e-02 -2.30334215e-02 2.25426018e-01\\n-5.01278996e-01 -1.63770318e-01 1.30645633e-01 6.71180561e-02\\n-1.26623824e-01 -2.61265814e-01 6.97741583e-02 -1.47142988e-02\\n1.72037661e-01 -2.97129825e-02 -6.49174213e-01 3.30680430e-01\\n-1.55511528e-01 -2.63963342e-01 2.68973827e-01 4.72108305e-01\\n-4.33117971e-02 -4.72319245e-01 -3.66739392e-01 -3.31185967e-01\\n2.78378241e-02 -7.84204528e-02 6.00680336e-02 -2.67986476e-01\\n3.97579104e-01 7.72539079e-02 -2.74479538e-02 5.11141241e-01\\n-8.47846448e-01 1.67120546e-02 -1.65963203e-01 -2.01355200e-02\\n-2.79158711e-01 -4.66028079e-02 -1.80689424e-01 -1.19035348e-01\\n-1.13500163e-01 4.33825254e-01 4.05250527e-02 1.67095691e-01\\n-1.50328681e-01 3.01293820e-01 -1.80330515e-01 2.73952365e-01\\n2.92767763e-01 3.08838934e-01 1.68060079e-01 2.75948644e-01\\n-4.49267596e-01 3.06172073e-01 1.29521906e-01 -2.80103236e-01\\n3.08810920e-01 1.29945800e-01 4.92417008e-01 2.91899834e-02\\n1.26032025e-01 1.16703376e-01 -2.09692717e-01 2.45438933e-01\\n3.06585014e-01 -2.21688688e-01 -1.63578391e-02 -7.32325576e-03\\n-1.04856305e-01 9.18223113e-02 -5.71673140e-02 2.61083424e-01\\n-2.53644526e-01 5.49844742e-01 6.22525327e-02 -1.51834682e-01\\n-6.30524307e-02 -6.14064991e-01 -7.06819668e-02 9.67485309e-02\\n6.90301135e-03 2.34434962e-01 2.93787748e-01 2.27627635e-01\\n2.80523807e-01 1.67687774e-01 1.23844877e-01 8.71379435e-01\\n-1.82832405e-01 9.04105231e-02 -2.78920680e-01 3.73587191e-01\\n1.80734247e-01 -2.07606792e-01 2.95285702e-01 2.73443729e-01\\n1.04889244e-01 -8.28641951e-02 -1.67222515e-01 3.88706326e-01\\n-3.12034157e-03 -1.65013686e-01 -2.57144272e-01 6.45506606e-02\\n-3.01792145e-01 -5.02516091e-01 5.44718802e-01 6.26810715e-02\\n2.46172652e-01 8.28823298e-02 5.09679615e-02 9.72435251e-03\\n-1.11060306e-01 2.47699976e-01 -9.23224241e-02 2.67207742e-01\\n-2.26901218e-01 -1.86406955e-01 -3.44459444e-01 2.10952193e-01\\n-1.94614425e-01 1.52743965e-01 7.67313689e-03 -1.09751500e-01\\n3.48649651e-01 5.49802324e-03 -2.35884979e-01 3.92635882e-01\\n-1.60011068e-01 -7.97309354e-02 -8.07939023e-02 1.72748089e-01\\n-7.33570755e-02 2.08269522e-01 -5.12530096e-02 -1.99508652e-01\\n5.30699611e-01 2.09235191e-01 1.67233557e-01 -1.24382891e-03\\n3.02465677e-01 -9.44857597e-02 1.60577103e-01 2.96599604e-02\\n-7.74726152e-01 3.57794464e-01 9.02968086e-03 -1.97710410e-01\\n-2.40483936e-02 4.89026718e-02 3.22064966e-01 -3.60242337e-01\\n3.90120037e-02 -1.09087110e-01 -4.32024777e-01 -3.24579269e-01\\n-2.91374266e-01 2.05730181e-02 5.21267474e-01 -4.00459617e-01\\n-1.88750923e-01 1.21945046e-01 -5.36569834e-01 8.41926709e-02\\n2.73975492e-01 1.45664349e-01 4.63981889e-02 9.78739560e-02\\n-9.55403820e-02 -5.65264702e-01 1.01441719e-01 -4.49343890e-01\\n-3.34717840e-01 1.56051546e-01 -3.32833171e-01 1.59459874e-01\\n1.13084018e-01 5.55495638e-03 -1.48442328e-01 1.43238753e-01\\n-1.96646258e-01 -1.05383925e-01 1.46250531e-01 1.19363889e-01\\n4.66866642e-01 3.92461829e-02 -4.67435658e-01 5.82722247e-01\\n-2.25528777e-01 5.99116564e-01 2.35894561e-01 -9.59693789e-01\\n4.82131422e-01 3.71363550e-01 1.48339868e-01 -3.19856167e-01\\n6.29062474e-01 -3.06101829e-01 -3.23906057e-02 8.90640467e-02\\n-4.93299723e-01 -3.05044800e-01 1.90983251e-01 -1.27752498e-01\\n-2.36862689e-01 5.44315636e-01 8.07897523e-02 5.43228053e-02\\n3.09236169e-01 -1.60474315e-01 -1.26948327e-01 3.25009264e-02\\n-8.38085935e-02 -3.34769607e-01 -4.15257961e-01 1.26669094e-01\\n-1.25170767e-01 -5.50664842e-01 -2.15689465e-02 -3.51278663e-01\\n-2.71888644e-01 -3.93545747e-01 -2.41604358e-01 4.65740472e-01\\n1.58422768e-01 6.64536431e-02 7.47429505e-02 5.78101538e-02\\n-1.86671585e-01 -5.68167865e-01 4.53361645e-02 1.48970649e-01\\n4.26604778e-01 1.72204286e-01 4.92882468e-02 -6.85800239e-02\\n-9.20698866e-02 6.17161632e-01 -3.84079069e-01 -1.71341613e-01\\n4.82404903e-02 1.28838614e-01 -8.05882514e-02 -3.45155559e-02\\n4.02178541e-02 3.69528681e-01 -2.97649592e-01 -1.45858210e-02\\n-2.42435172e-01 1.22509353e-01 3.80285054e-01 -4.77877595e-02\\n-4.00515109e-01 -2.42902219e-01 -1.05139568e-01 2.32550383e-01\\n-5.29595256e-01 -1.70521870e-01 6.26755953e-01 1.90487877e-01\\n1.26379415e-01 1.48844153e-01 2.16809675e-01 -1.03928514e-01\\n-1.66048914e-01 -3.39489549e-01 1.83162794e-01 1.21256530e-01\\n1.33968458e-01 1.19143903e-01 -9.55008939e-02 -5.60689390e-01\\n-3.42344046e+00 -2.39997104e-01 1.67549223e-01 -3.20032984e-01\\n1.46800205e-01 -2.19089493e-01 3.13191414e-02 -1.23652548e-01\\n-1.85080037e-01 8.42759535e-02 -1.28616914e-01 -1.73912361e-01\\n1.78927839e-01 1.99459776e-01 1.23740532e-01 2.49317273e-01\\n2.23415017e-01 -1.33193567e-01 3.32326964e-02 2.85424203e-01\\n-2.34543428e-01 -6.23800755e-01 2.13373452e-01 -1.33986175e-01\\n3.30299973e-01 3.47469807e-01 -2.91469574e-01 -1.33075312e-01\\n-1.52270198e-01 -3.00877184e-01 9.87958685e-02 -2.66842902e-01\\n-6.67360565e-03 3.50001693e-01 9.53909531e-02 -8.19347203e-02\\n1.62400961e-01 -3.30659777e-01 -6.44750819e-02 -3.84279698e-01\\n2.10682005e-01 -5.68385720e-01 -7.26196468e-02 -5.35071008e-02\\n8.01595747e-01 -3.73670071e-01 1.61102027e-01 2.02670902e-01\\n1.19603641e-01 2.72307217e-01 1.10587738e-02 -2.03825563e-01\\n-2.92967081e-01 -2.54518807e-01 5.74550815e-02 -2.10433111e-01\\n4.81725276e-01 5.25332153e-01 -2.15332612e-01 6.45343512e-02\\n9.51613262e-02 -2.67256469e-01 -4.68601495e-01 -4.69010770e-01\\n-2.03330263e-01 -2.50050813e-01 -6.21195197e-01 -5.24641514e-01\\n-1.80896204e-02 -2.04285845e-01 -1.45651698e-01 6.63150966e-01\\n-2.77416438e-01 -4.18004483e-01 -6.61919042e-02 -4.88435388e-01\\n1.46508873e-01 -1.57860979e-01 -1.22777857e-01 -1.40238583e-01\\n-2.35778838e-01 -4.86413300e-01 -2.80342400e-02 9.30318888e-03\\n-1.70999244e-01 -2.64476478e-01 1.17607556e-01 -2.74324179e-01\\n-3.43522936e-01 -4.97430861e-01 5.32748282e-01 4.64134552e-02\\n3.52548718e-01 6.05197437e-02 2.32776672e-01 1.96070179e-01\\n3.41220170e-01 -2.76282161e-01 1.35229342e-02 -3.96473050e-01\\n1.98206753e-01 -1.70233604e-02 5.56876004e-01 -1.55463874e-01\\n1.56599268e-01 1.46961689e-01 -1.49105847e-01 -2.65505373e-01\\n3.74508858e-01 6.98375702e-02 1.09697461e-01 -2.43835911e-01\\n3.70247096e-01 -3.38080436e-01 -3.80105317e-01 1.75932795e-01\\n-9.13916603e-02 6.44052148e-01 -6.21827394e-02 -3.98258924e-01\\n-2.20207095e-01 5.83137810e-01 -1.32708713e-01 -1.29001111e-01\\n-2.18515709e-01 1.03773534e-01 -1.84651583e-01 1.87637970e-01\\n1.05787858e-01 -1.42905623e-01 -2.34073803e-01 -8.59974846e-02\\n-3.47021855e-02 1.72941983e-01 2.49844164e-01 1.05177071e-02\\n9.54391882e-02 -4.10854250e-01 -9.24184918e-02 1.65698677e-01\\n2.36222535e-01 3.29858273e-01 9.73102823e-02 -1.40055329e-01\\n-9.37038586e-02 2.91175365e-01 -1.75197363e-01 1.75014988e-01\\n-2.01614231e-01 4.50126342e-02 -4.46310073e-01 -2.99648821e-01\\n-2.21855998e-01 -3.37423831e-01 -1.04301898e-02 1.09562039e-01\\n3.50798219e-02 9.86902416e-02 -1.22194523e-02 -4.31680053e-01\\n2.63424724e-01 -2.93281977e-03 3.24295431e-01 1.97017312e-01\\n-5.85931167e-02 4.81887072e-01 9.85051692e-03 -1.68752149e-02\\n-1.14188395e-01 6.37781769e-02 -2.12607101e-01 -1.69618189e-01\\n-3.37427221e-02 -4.13840383e-01 -5.98542579e-02 4.40601289e-01\\n1.20637789e-01 -3.84090811e-01 -2.78004616e-01 1.58101082e-01\\n-3.38055007e-02 -3.79125088e-01 -1.87674120e-01 1.76028647e-02\\n3.53184938e-01 3.64386216e-02 2.67181337e-01 -5.67322731e-01\\n-2.40153447e-02 6.06786348e-02 -5.43791689e-02 5.30635655e-01\\n7.94282258e-02 -2.64340062e-02 -1.40363812e-01 -3.73206735e-01\\n2.75253862e-01 -1.81798264e-01 2.71342136e-03 -1.91415489e-01\\n5.78765757e-02 -1.91194728e-01 -4.30463880e-01 9.47066769e-02\\n-1.20195381e-01 -1.97345063e-01 -1.00383554e-02 -1.10037394e-01\\n1.28113870e-02 8.55104923e-02 -5.22974193e-01 -3.40321243e-01\\n-3.75218987e-01 -1.36259794e-01 8.72427225e-03 -3.40312690e-01\\n3.80098224e-02 7.86961913e-02 -6.10029101e-01 2.69160658e-01\\n-3.51555824e-01 -1.90250054e-02 1.95648685e-01 3.75189856e-02\\n-4.43506300e-01 2.99211536e-02 2.37376034e-01 2.38107502e-01\\n-4.26049471e-01 -2.94054478e-01 6.88863546e-02 -1.05952585e+00\\n1.68002829e-01 -1.82837900e-02 9.42894723e-03 9.42927226e-02\\n2.72770203e-03 -5.96114576e-01 1.11601770e-01 -3.04830909e-01\\n3.42156366e-02 -3.88490111e-02 -2.66441762e-01 -4.86245155e-01\\n3.69999409e-02 -6.02515116e-02 -2.97504127e-01 3.25485736e-01\\n-4.79360372e-01 3.11842769e-01 -3.43450122e-02 7.73108527e-02\\n-1.19152948e-01 -2.94846177e-01 1.19015217e-01 -4.17509913e-01\\n-4.01873678e-01 -1.60769135e-01 -2.82100290e-01 -2.19216838e-01\\n2.73652915e-02 -2.20999643e-01 -3.92215289e-02 1.66129991e-01\\n2.81601399e-01 6.46452382e-02 -9.92305651e-02 -3.05598080e-01\\n1.90013528e-01 -4.92806882e-01 -1.84919387e-02 -1.99532181e-01\\n-8.59614611e-02 -7.06908107e-02 1.34359270e-01 3.09030451e-02\\n5.18640690e-02 -4.61079270e-01 3.47921878e-01 -3.82179558e-01\\n-2.88794219e-01 -9.04683769e-03 4.36630473e-02 1.43059000e-01\\n2.72067726e-01 -5.45432448e-01 5.42921908e-02 3.90583038e-01\\n1.40932888e-01 2.18462422e-02 3.15219194e-01 1.47120990e-02\\n-5.35729676e-02 3.30026537e-01 -3.97946328e-01 1.11142218e-01\\n7.23168433e-01 1.97301209e-01 3.01393624e-02 2.18443334e-01\\n2.66600341e-01 4.12593305e-01 4.83061522e-01 -5.21094771e-03\\n3.72509547e-02 3.10118258e-01 1.46340996e-01 -7.00845063e-01\\n-3.45321521e-02 3.51000904e-06 -2.53404707e-01 -2.32473060e-01\\n6.99832916e-01 3.81607503e-01 -3.86612773e-01 -1.96372911e-01\\n-2.25604028e-01 -1.91897944e-01 1.48289829e-01 -1.98129028e-01\\n1.91521928e-01 -6.81058392e-02 4.98257279e-01 6.99881688e-02\\n2.91142613e-01 5.60273588e-01 -2.00168639e-01 -3.82358938e-01\\n-1.75074711e-01 9.17116627e-02 3.61310467e-02 3.82802635e-01\\n-1.48656413e-01 2.39627823e-01 7.68905580e-02 2.05974072e-01\\n-8.36420283e-02 1.98483497e-01 6.49647787e-02 7.32829943e-02\\n1.43256813e-01 5.69299832e-02 2.48082027e-01 4.36084986e-01\\n2.99941689e-01 5.98405302e-01 3.51424456e-01 1.60797238e-01\\n4.58824277e-01 5.06752849e-01 3.79154474e-01 1.69674128e-01\\n-9.54269320e-02 9.48182419e-02 -9.80877038e-03 -9.86820906e-02\\n3.83263320e-01 2.84612358e-01 1.10103093e-01 9.56705511e-01\\n4.68186408e-01 2.81715065e-01 7.83853412e-01 -5.84079981e-01\\n-4.61227208e-01 -3.10950503e-02 4.12851751e-01 -3.56342793e-01\\n-1.12012103e-01 9.01244730e-02 -1.96246818e-01 2.92169422e-01\\n-4.62409914e-01 -7.29872808e-02 -5.34939393e-02 7.95590430e-02\\n1.78047851e-01 -4.43895645e-02 -3.40434492e-01 -1.83744311e-01\\n-2.56870270e-01 -8.13818946e-02 -4.77654159e-01 -3.79056185e-02\\n-2.52517223e-01 -2.76095837e-01 -1.86661422e-01 -1.44891188e-01\\n-1.35957487e-02 -4.37088102e-01 -1.52315408e-01 8.73189047e-02\\n3.51048410e-01 -1.05664022e-01 -6.36203587e-02 -1.28768042e-01\\n2.88004637e-01 3.01429033e-01 5.00274122e-01 -9.48877037e-02\\n7.36109912e-02 -9.37480628e-02 -1.85977116e-01 7.53349364e-02\\n1.09136917e-01 1.11559808e-01 -2.09253817e-03 3.97442669e-01\\n-3.82200241e-01 -1.68757334e-01 7.99579769e-02 4.40565467e-01\\n-4.37371194e-01 -1.25770405e-01 7.78131038e-02 2.90759116e-01\\n1.28357157e-01 1.73150063e-01 -3.54894847e-01 5.46495467e-02\\n-2.68999010e-01 -5.13819516e-01 3.45636040e-01 -1.09166019e-01\\n-8.25389698e-02 5.99216558e-02 3.03997487e-01 1.59141764e-01\\n-1.88917920e-01 -1.03359103e-01 1.25873491e-01 2.11416766e-01\\n1.26016781e-01 3.47677231e-01 -2.63669252e-01 -2.25019798e-01\\n-2.77623743e-01 2.68201560e-01 -3.32442760e-01 1.74849391e-01\\n-1.55298963e-01 3.42802942e-01 1.53565735e-01 1.28540710e-01\\n1.73937172e-01 -4.52347361e-02 -1.25829980e-01 -2.02888966e-01\\n-3.53951782e-01 -2.95110673e-01 8.25848579e-02 -2.93367654e-02\\n1.67923048e-01 -4.18692261e-01 -4.70832735e-02 -6.47504330e-02\\n-2.66997725e-01 -2.90285826e-01 -9.46866497e-02 -1.43150270e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Java Software Engineer. This role is a permanent position based in Zürich or Bern Canton depending on candidate preference. Your role: Develop sophisticated web / JEE applications. Develop software & enterprise architectures. Design technical solutions in collaboration with customers. Making cost estimates. Contribute to the further development of software development within the business. Your Skills: Experienced in the development of solutions based on Java technologies / open source frameworks. Good knowledge in the following areas: JAVA frameworks for dependency injection O / R mapping & access control (Spring, Hibernate) JAVA application server (Tomcat, JBoss, WebSphere or WildFly) Spring & Vaadin JAVA Web technologies (JSF and PrimeFaces ) Client-side JavaScript UI technologies (Angular 2, React) JAVA UI technologies (JavaFX) Cloud technologies (Docker, Openshift, Kubernetes) Database technologies (Oracle, MySQL, Maria DB) Experience in agile software development is advantageous. Your Profile: Higher education in Computer Science. Self-driven, self-motivation, open-minded & solution-oriented. Cooperative, quality-focused & both customer & team-oriented. Analytical, conceptual & in possession of a quick understanding. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Team Oriented\", \"Cooperation\", \"Collaboration\", \"Positivity\"]',\n", + " 'hard_skills': '[\"MySQL\", \"OpenShift\", \"Kubernetes\", \"Computer Science\", \"Analytics\", \"Mobile Application Software\", \"Higher Education\", \"Vaadin\", \"Hibernate (Java)\", \"Primefaces\", \"WildFly (JBoss AS)\", \"Application Servers\", \"Software Engineering\", \"React.js\", \"Agile Software Development\", \"Open Source Technology\", \"Docker (Software)\", \"Conceptualization\", \"Enterprise Architecture\", \"Java Application Server\", \"Java Collections Framework\", \"Project-Based Solutions\", \"Access Controls\", \"Dependency Injection\", \"Cost Estimation\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"JavaFX\", \"Receivables\", \"Angular (Web Framework)\", \"Technical Solution Design\", \"Java Web Services\", \"Software Development\", \"Mapping\", \"Java (Programming Language)\", \"Apache Tomcat\", \"JSF 2\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Marathi', 'Luxembourgish', 'Tatar', 'Amharic']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'c++ back end software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Aerospace & Defence',\n", + " 'website': 'www.veritystudios.com',\n", + " 'jobdescription_embedded': '[[-1.94348380e-01 3.86654705e-01 4.00781035e-01 3.70950587e-02\\n5.85618258e-01 -1.16143979e-01 -2.10347958e-02 2.62955159e-01\\n9.63716656e-02 -3.22371721e-01 -3.28790210e-03 -4.09738719e-01\\n-1.03634223e-01 1.12887949e-01 1.03849776e-01 5.52141428e-01\\n1.49206609e-01 8.52243900e-02 -2.57271886e-01 4.74316716e-01\\n4.91118729e-02 -1.25223652e-01 2.05478594e-01 7.69396424e-01\\n3.64225090e-01 3.89648750e-02 -1.39195040e-01 -4.26500700e-02\\n-2.08582491e-01 -1.09238833e-01 4.75828141e-01 5.23496680e-02\\n-9.49341282e-02 -5.54989219e-01 9.54063684e-02 1.13951951e-01\\n-2.43345976e-01 -9.42346230e-02 -1.37205228e-01 1.81399405e-01\\n-6.20150268e-01 -3.76232624e-01 -1.90401711e-02 -5.18785492e-02\\n-2.56950259e-01 -2.90452719e-01 2.08597437e-01 -4.42349464e-02\\n1.94856718e-01 1.55506432e-01 -4.80879009e-01 2.56232858e-01\\n-2.71040171e-01 -2.02431560e-01 3.92223150e-01 6.80856705e-01\\n-7.35888816e-03 -5.72267056e-01 -5.27735770e-01 -3.53371978e-01\\n-1.14412621e-01 7.49448501e-03 5.79795986e-03 -4.91108209e-01\\n2.28589207e-01 1.75274536e-02 4.16966900e-02 3.17887187e-01\\n-7.51130104e-01 -2.12072551e-01 -2.44154096e-01 6.68729767e-02\\n-2.11111039e-01 6.88102678e-04 -3.54203582e-01 -1.08962491e-01\\n-1.74808428e-01 4.08681929e-01 -1.71357617e-02 5.22712208e-02\\n-2.80045837e-01 3.80608797e-01 -1.84791982e-01 4.91457522e-01\\n2.58180529e-01 2.22371593e-01 1.46396101e-01 4.12636131e-01\\n-4.22194183e-01 2.82379359e-01 2.55765796e-01 -3.04087698e-01\\n2.12951303e-01 2.51925766e-01 4.26021308e-01 1.24225654e-02\\n1.30858853e-01 1.22331142e-01 -3.38515162e-01 3.50557268e-01\\n2.82593668e-01 -2.25958616e-01 1.80094838e-01 -1.17000706e-01\\n9.96977240e-02 3.40466462e-02 -1.05605088e-02 1.96294650e-01\\n-2.98010051e-01 4.40183282e-01 2.92286754e-01 -2.62683153e-01\\n-2.80870438e-01 -6.03706241e-01 -8.66058841e-02 1.24744773e-01\\n6.80034012e-02 1.55019149e-01 1.67781740e-01 1.36747375e-01\\n2.56217003e-01 -2.28316426e-01 1.38594314e-01 9.59096313e-01\\n-1.20944403e-01 -1.06562912e-01 -9.43699926e-02 2.96076536e-01\\n6.83789402e-02 -2.07362235e-01 1.06674537e-01 2.20443696e-01\\n1.64292753e-03 -1.12748906e-01 -2.58314788e-01 3.79270852e-01\\n-2.08699375e-01 -2.31089517e-01 -3.64469945e-01 3.73177230e-01\\n-8.84922594e-02 -4.07817453e-01 6.93808079e-01 -9.13595706e-02\\n1.55761823e-01 -6.82402402e-02 -1.00391861e-02 -8.44192207e-02\\n-1.73603505e-01 9.44158286e-02 1.71843827e-01 9.16444734e-02\\n-2.89607733e-01 -2.55266875e-01 -1.83834285e-01 7.56159425e-05\\n-3.28682244e-01 1.91302657e-01 -9.58610699e-02 -2.57399350e-01\\n9.22529697e-02 1.61047012e-01 -4.93340701e-01 2.54223198e-01\\n-2.60539949e-01 -5.10076284e-02 -1.06215641e-01 5.88988900e-01\\n-2.99050450e-01 1.81946009e-01 1.15071118e-01 -4.58161533e-03\\n6.70732617e-01 2.11163267e-01 2.14643508e-01 -4.08851169e-03\\n3.56607616e-01 -5.95619977e-02 1.60351783e-01 3.06355059e-01\\n-6.48547053e-01 2.98541784e-01 -3.01667303e-02 -4.08495888e-02\\n1.75974697e-01 -1.22684069e-01 3.81435752e-01 -3.70929122e-01\\n-1.45529807e-01 -2.39799082e-01 -3.69456649e-01 -2.49319673e-01\\n-2.42206037e-01 2.75893211e-02 2.64834553e-01 -3.15773010e-01\\n-1.13668546e-01 2.13936031e-01 -5.83916962e-01 -1.79358006e-01\\n1.34995207e-01 2.36872315e-01 1.13412507e-01 9.53873619e-02\\n-1.81309313e-01 -7.04969883e-01 2.62625329e-02 -3.30105901e-01\\n-3.53265941e-01 -8.25124886e-03 -3.63148212e-01 7.86953121e-02\\n-5.23837376e-03 1.06715329e-01 -9.11118388e-02 -1.03900405e-02\\n-4.67082709e-01 7.70175457e-02 1.55674182e-02 2.12781113e-02\\n1.81793809e-01 1.49291366e-01 -4.73080993e-01 4.15229946e-01\\n-3.30170363e-01 6.61423385e-01 -5.33360988e-03 -9.15490806e-01\\n5.17282128e-01 3.93017024e-01 -1.01353824e-01 -2.93962955e-01\\n4.41249788e-01 -5.61162293e-01 -1.82171702e-01 8.12476277e-02\\n-2.13682398e-01 -3.20696175e-01 3.53610575e-01 -2.90364683e-01\\n-3.31247091e-01 5.76578736e-01 9.49058980e-02 1.48613229e-01\\n3.28464121e-01 -3.25202525e-01 -4.09282818e-02 -1.10570649e-02\\n3.41901705e-02 -6.60564676e-02 -5.88007748e-01 -3.28038353e-04\\n-8.25570822e-02 -3.20418328e-01 -4.91697714e-03 -4.24571842e-01\\n-1.72771990e-01 -3.51472884e-01 -2.36000866e-01 6.52843341e-02\\n3.14039648e-01 6.66677952e-02 1.26211658e-01 5.10686710e-02\\n-4.77119833e-02 -7.13394165e-01 8.03755373e-02 1.41587138e-01\\n4.36300814e-01 2.40824565e-01 2.26307362e-01 3.89044136e-02\\n9.88297313e-02 7.40357459e-01 -3.34132850e-01 -1.72303617e-01\\n6.86783195e-02 5.21656834e-02 -5.52305952e-03 -1.56777561e-01\\n2.23208010e-01 3.59668225e-01 -3.70971888e-01 2.63797939e-02\\n-9.84190032e-02 -1.49103738e-02 4.26121116e-01 -3.55978794e-02\\n-2.56633550e-01 -2.88104475e-01 -6.99774474e-02 2.89968103e-02\\n-5.49732089e-01 -1.71457857e-01 2.87345707e-01 1.19387046e-01\\n2.19713330e-01 6.14910126e-02 1.89015821e-01 -1.04090348e-01\\n-4.03904200e-01 -3.34496081e-01 1.19874060e-01 1.41578615e-01\\n1.02881631e-02 1.29338220e-01 6.20501265e-02 -7.23011672e-01\\n-2.74403715e+00 6.99990392e-02 1.94179654e-01 -1.98129460e-01\\n3.31099153e-01 -4.24483381e-02 1.18164673e-01 -5.42396791e-02\\n-3.57023358e-01 4.83668596e-02 -4.51247841e-02 -1.66139901e-01\\n6.14394769e-02 1.95229843e-01 1.62246078e-01 3.45406234e-02\\n7.32393041e-02 -3.55535269e-01 -1.07255429e-01 3.29666942e-01\\n-9.88674611e-02 -8.09641182e-01 1.94888711e-01 -1.26043633e-01\\n2.35473365e-01 2.07285136e-01 -4.70242858e-01 -1.72521576e-01\\n-2.42911816e-01 -9.14510190e-02 -7.45956413e-03 -2.74616748e-01\\n-2.48923689e-01 1.75973639e-01 1.88311443e-01 -1.18151568e-02\\n4.88506407e-02 -4.30095166e-01 -1.29800916e-01 -4.22971904e-01\\n1.58135757e-01 -6.11115277e-01 -1.69929117e-02 -2.36758724e-01\\n6.36546731e-01 -2.68018872e-01 1.48008317e-01 1.01492599e-01\\n1.28540158e-01 9.21779126e-03 2.32910261e-01 6.36900738e-02\\n-1.04076728e-01 -2.12966844e-01 -1.22163326e-01 -2.07928255e-01\\n6.46013975e-01 3.48692626e-01 -1.74919873e-01 -3.61822024e-02\\n5.89438230e-02 -3.30791771e-01 -5.45068443e-01 -1.62129432e-01\\n-4.25833389e-02 -2.00564444e-01 -5.97938418e-01 -3.89251560e-01\\n-1.88893706e-01 -1.35106727e-01 -9.77274030e-02 7.81335473e-01\\n-4.24825996e-01 -1.95501357e-01 1.01534091e-01 -5.88133454e-01\\n3.98333102e-01 -3.09325695e-01 -2.91742384e-03 -3.36537600e-01\\n-2.90060163e-01 -5.32378316e-01 3.81393880e-02 -1.97494775e-01\\n-2.43927091e-01 -3.12586069e-01 -4.25507054e-02 -1.66882694e-01\\n-2.09519833e-01 -5.96426427e-01 4.14967030e-01 1.88189447e-01\\n3.73050392e-01 3.79138961e-02 4.67485160e-01 -9.76439714e-02\\n3.70446831e-01 9.83746499e-02 5.27738705e-02 -2.91795731e-01\\n-2.70669051e-02 6.19108602e-02 5.67464948e-01 -2.84999609e-01\\n-2.73748711e-02 1.20541707e-01 -2.42657110e-01 -2.53723022e-02\\n3.65089566e-01 -9.52648744e-03 1.20986626e-02 -2.36147970e-01\\n3.56049895e-01 -3.93347144e-01 -1.16834849e-01 4.02766541e-02\\n2.51747429e-01 9.25063491e-01 9.96294804e-03 -4.16298777e-01\\n-1.56970009e-01 5.31791568e-01 -1.01576313e-01 1.26609653e-01\\n-3.70809510e-02 9.55945551e-02 -3.07060957e-01 3.53125095e-01\\n8.83109644e-02 -3.23164701e-01 -2.26022094e-01 -5.50459325e-02\\n-1.97638005e-01 4.83863473e-01 2.12989390e-01 9.36524719e-02\\n-1.10740632e-01 -5.04475057e-01 -1.82314321e-01 3.66933763e-01\\n8.52924287e-02 4.03339148e-01 1.84236139e-01 -3.86461377e-01\\n7.86487833e-02 4.84791756e-01 -1.51966259e-01 3.30968797e-01\\n-1.66502088e-01 2.40495518e-01 -6.06689155e-01 -2.96466827e-01\\n-4.36145306e-01 -4.51705694e-01 2.15952858e-01 4.97588903e-01\\n1.42149478e-01 -9.33180451e-02 1.77505195e-01 -5.06020844e-01\\n3.29226971e-01 2.58765280e-01 7.57804289e-02 1.12430677e-01\\n-1.21103190e-01 6.17438197e-01 9.38253626e-02 -2.43761778e-01\\n-9.16939527e-02 -6.53584450e-02 -1.37578160e-01 -2.48489872e-01\\n3.09196830e-01 -4.70775664e-01 -1.52180880e-01 4.04896677e-01\\n1.15728825e-01 -1.67713001e-01 -3.18809211e-01 2.71318376e-01\\n-2.88665518e-02 -2.42043167e-01 -2.73779690e-01 -1.70384288e-01\\n2.77543008e-01 5.45997173e-05 3.24233413e-01 -5.54642081e-01\\n6.35441467e-02 -9.80389863e-02 1.53191388e-04 4.51469928e-01\\n-8.40948597e-02 -1.37639761e-01 -3.24330807e-01 -6.85842037e-02\\n5.50812721e-01 6.90345094e-02 -6.45619705e-02 1.26046687e-03\\n1.80941164e-01 -3.08956325e-01 -4.01521444e-01 1.47785321e-01\\n-9.48236883e-02 -2.42157891e-01 -2.57043242e-02 1.05868958e-01\\n1.17377549e-01 -1.51959341e-02 -5.77378631e-01 -1.53081864e-01\\n-1.56328872e-01 8.44021440e-02 6.40902147e-02 -4.91706759e-01\\n-5.91321550e-02 -6.39774650e-02 -6.19694352e-01 1.97925523e-01\\n-3.12732130e-01 -1.29718900e-01 2.18066067e-01 1.50096774e-01\\n-3.35887134e-01 -1.72422752e-01 -8.34710598e-02 3.11568677e-01\\n-2.11163819e-01 -2.63360202e-01 -1.00984812e-01 -9.09781694e-01\\n1.37166232e-01 -4.83959131e-02 -1.25977427e-01 2.41968870e-01\\n-1.19125366e-01 -1.07242119e+00 1.32499874e-01 -2.89771110e-01\\n-8.48900825e-02 -3.69656533e-02 -2.74208903e-01 -1.43308371e-01\\n2.44020492e-01 5.00505194e-02 -3.29325736e-01 4.32396591e-01\\n-2.57793128e-01 2.52530009e-01 -1.77076325e-01 7.71406293e-02\\n-7.41853118e-02 -1.58875823e-01 1.25217795e-01 -2.78681636e-01\\n-4.20094609e-01 -2.41497099e-01 -2.50834346e-01 -3.11401874e-01\\n-2.18652636e-01 -2.33420581e-01 -1.72874585e-01 2.00443476e-01\\n3.32501113e-01 -4.99922112e-02 -5.66647351e-02 -2.61541963e-01\\n1.33424774e-01 -4.32124674e-01 1.28403097e-01 -9.85285938e-02\\n1.09072886e-01 -2.07313448e-01 9.47110355e-02 1.89788938e-01\\n4.28275883e-01 -3.34297359e-01 4.58373010e-01 -3.77920240e-01\\n-4.51831698e-01 -2.54580617e-01 -1.84555911e-02 -1.59376979e-01\\n4.02824402e-01 -3.38583887e-01 2.46431641e-02 2.70457983e-01\\n8.73155892e-03 -4.26252931e-03 3.03365290e-01 -2.03865439e-01\\n4.72228788e-02 7.12948143e-02 -3.87658656e-01 8.59391168e-02\\n7.80834079e-01 2.42679700e-01 1.49043277e-01 1.57790676e-01\\n-6.39243424e-02 1.94103137e-01 5.94968319e-01 -1.97389215e-01\\n-9.55838040e-02 1.49378330e-01 1.23923987e-01 -5.29262066e-01\\n-1.99680671e-01 -6.92083910e-02 -2.76806206e-01 -4.14020479e-01\\n6.44936740e-01 3.09056759e-01 -3.89846623e-01 -1.35602862e-01\\n1.26670077e-02 -1.49116606e-01 3.08682203e-01 7.45331571e-02\\n-7.23476335e-03 1.80483833e-02 4.33214247e-01 -3.59783918e-02\\n3.49011838e-01 5.79561591e-01 -1.33380815e-01 -3.34973693e-01\\n-8.86593312e-02 2.34578103e-01 6.14541732e-02 2.85951436e-01\\n-2.73300529e-01 2.79059827e-01 -5.12432978e-02 1.88746415e-02\\n-2.73229569e-01 1.77643299e-01 3.92559469e-02 1.07234448e-01\\n1.42944053e-01 1.34662390e-01 4.75228608e-01 5.64220428e-01\\n1.41923174e-01 4.09929156e-01 3.42808336e-01 8.16699788e-02\\n4.85394716e-01 5.94147682e-01 4.33412969e-01 1.18196920e-01\\n1.58504888e-01 3.42586815e-01 2.13065773e-01 -1.05134800e-01\\n5.24901628e-01 4.71619695e-01 1.02652028e-01 9.16308761e-01\\n1.34127229e-01 4.65298146e-01 8.06036353e-01 -7.13045597e-01\\n-3.63786340e-01 1.07391700e-01 5.67864895e-01 -5.50294757e-01\\n6.91470504e-02 6.77960142e-02 7.79256225e-04 4.53837335e-01\\n-6.10303640e-01 -3.06261599e-01 -5.06565571e-02 1.99330881e-01\\n-9.76914465e-02 -1.67890057e-01 -1.95862100e-01 8.86225179e-02\\n-1.44565254e-01 -1.80502370e-01 -3.15023482e-01 -9.91068929e-02\\n-2.15810150e-01 9.61633474e-02 -1.38593853e-01 -1.41481280e-01\\n1.01224624e-01 -3.06619763e-01 -1.77458916e-02 -1.04608089e-01\\n3.87455285e-01 -1.71470925e-01 -1.54313698e-01 -1.11381777e-01\\n3.59237820e-01 1.26212806e-01 5.35712242e-01 3.34419757e-02\\n2.26921797e-01 -2.03877375e-01 -2.37678200e-01 1.71350718e-01\\n1.29083954e-02 1.21650308e-01 6.95552081e-02 3.14468980e-01\\n-2.64892995e-01 -1.31549671e-01 3.21061909e-02 2.84654200e-01\\n-3.72310460e-01 -1.13970362e-01 -2.16578126e-01 2.02571396e-02\\n-1.10586621e-02 1.97952718e-01 -1.07882887e-01 -6.12098351e-02\\n-1.48926139e-01 -4.18089688e-01 2.90469408e-01 -1.08911335e-01\\n-2.76985735e-01 -1.21864483e-01 4.14815813e-01 1.16447099e-01\\n-2.97790080e-01 1.34231612e-01 -2.24058777e-01 2.58389711e-01\\n2.68316083e-03 3.27553451e-01 3.48364562e-03 -2.27977157e-01\\n-2.57403910e-01 2.02079326e-01 -6.06240481e-02 3.02909240e-02\\n2.14175239e-01 5.97551703e-01 -9.08737108e-02 -1.38386235e-01\\n6.94867492e-01 -1.68568194e-02 -2.82355875e-01 -3.09340656e-01\\n-1.02787226e-01 -1.61273569e-01 -1.48593396e-01 -1.59613132e-01\\n1.58633083e-01 -3.81464362e-01 -1.02209583e-01 -2.70916820e-01\\n1.15288861e-01 -2.44386196e-01 -1.37193218e-01 -3.85446660e-02]]',\n", + " 'job_description': \"To complement its growing team, Verity Studios is looking for an experienced and versatile back end software engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software back ends for drone systems requires addressing new and challenging problems such as: (a) defining robust and reliable communication protocols to interact with embedded devices (both on wired and wireless connections), (b) implementing components to retrieve, store, and process significant amount of data in an efficient and responsive fashion, and (c) designing algorithms to easily and safely coordinate the operation of hundreds of drones and other system components. Our software team works on a multitude of challenging and interesting tasks, such as implementing drivers for proprietary embedded platform, defining robust and efficient communication protocols, designing algorithms to retrieve, process, and analyze significant amount of data, and implementing graphical user interfaces for control stations. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deployment Interact with other engineering teams to define and review design documents Cooperate with control engineers to design protocols to interact with robotic systems in order to send commands and collect feedback data Cooperate with embedded engineers to understand the constraints of embedded platforms and design smart and reliable embedded applications Interact with front end engineers to define the interfaces between back ends and front ends Design general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Experience with database design and handling large amount of data is a plus Experience with distributed systems is a plus Good written and spoken English language skills Excellent knowledge of C++ and STL Familiar with GDB and other debugging and program analysis tools Knowledge of libraries such as Boost and Qt and is a plus Experience in Python, C and modern C++ is a plus Experience with PCB schematics and digital communication interfaces (e.g. SPI, CAN, I2C) is a plus Team player and self-driven Creative approach to problem solving Benefits. Work in an interdisciplinary, highly-skilled team Create ground-breaking systems, used by some of the world's most prominent stage productions Shape the culture and have a significant impact in a rapidly growing young company\",\n", + " 'soft_skills': '[\"Professionalism\", \"Coordinating\", \"Cooperation\", \"Problem Solving\", \"Operations\", \"Reliability\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Tooling\", \"Control Engineering\", \"System Requirements\", \"Software Design Documents\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Collections\", \"Digital Communications\", \"Repository Protocol Design\", \"Staging\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"Python (Programming Language)\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Library\", \"Embedding\", \"Program Analysis\", \"Process Driven Development\", \"Database Design\", \"Software Engineering\", \"C (Programming Language)\", \"Front End Design\", \"Robotics\", \"Qt (Software)\", \"Standard Template Library (STL)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Graphical User Interface\", \"Data Structures\", \"Systems Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Algorithm Design\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"User Interface\", \"Debugging\", \"Documentation Based Coding\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Chamorro', 'Amharic', 'Moldavian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data ingenieur (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.73539215e-01 2.95446873e-01 3.41366827e-01 3.93180214e-02\\n4.40420538e-01 -1.47717759e-01 -5.48443720e-02 2.30844498e-01\\n-8.91414285e-02 -4.39024776e-01 1.05183357e-02 -9.85265374e-02\\n-2.43622586e-01 -5.89660660e-04 -1.47397863e-02 4.74850059e-01\\n2.80426443e-01 6.34839982e-02 -1.43790379e-01 3.84318888e-01\\n1.05363093e-01 -3.25387642e-02 -2.00483307e-01 8.03782105e-01\\n3.08296889e-01 -3.17984521e-02 2.24749073e-02 9.14418623e-02\\n-6.67959005e-02 -1.43164203e-01 3.64695042e-01 1.60059065e-01\\n-1.00824147e-01 -3.22888434e-01 1.22831404e-01 2.00250655e-01\\n-1.94558889e-01 6.35166764e-02 -1.37775987e-01 7.37599581e-02\\n-3.76453847e-01 -1.73091054e-01 -8.04219916e-02 3.95079516e-02\\n-1.57729849e-01 -2.51143217e-01 1.44618124e-01 -2.24684939e-01\\n2.97256261e-01 4.46853787e-03 -6.94204330e-01 3.18485349e-01\\n-2.28280187e-01 -1.62220791e-01 2.34000966e-01 4.64561015e-01\\n5.01000471e-02 -4.63844717e-01 -4.39903587e-01 -3.53651315e-01\\n-1.08716330e-02 -5.98834120e-02 -2.82261074e-02 -3.53043616e-01\\n3.16754729e-01 3.56427347e-03 8.99656042e-02 2.43225127e-01\\n-8.23725402e-01 -1.05068073e-01 -4.20428991e-01 -2.26258989e-02\\n-4.38156933e-01 -5.65539226e-02 -3.59581858e-01 2.61795521e-02\\n-7.72417337e-02 2.87032902e-01 4.55488116e-02 6.78809881e-02\\n-2.35347003e-01 2.70585775e-01 -2.93253362e-01 3.29408884e-01\\n2.76014954e-01 1.38341695e-01 2.38590196e-01 3.69926006e-01\\n-5.02795100e-01 4.07005459e-01 4.97104935e-02 -2.92263478e-01\\n2.34251171e-01 2.25896820e-01 4.27680135e-01 2.05386490e-01\\n1.81894228e-01 1.50503382e-01 -2.51848787e-01 3.50331217e-01\\n2.39382461e-01 -4.51936007e-01 4.24619950e-02 -2.21537635e-01\\n1.52646035e-01 -8.92313197e-02 5.49507774e-02 1.02773488e-01\\n-3.34391266e-01 4.40531641e-01 1.65045276e-01 -1.65558740e-01\\n-1.39052868e-01 -5.76995373e-01 -9.55668762e-02 -2.39929892e-02\\n-2.56161001e-02 2.14993089e-01 1.74376845e-01 2.35086322e-01\\n1.71372846e-01 6.88543022e-02 5.23202829e-02 8.91119480e-01\\n-1.43159017e-01 -1.57657713e-02 -1.82234228e-01 2.13842094e-01\\n1.70693681e-01 -3.74809951e-01 3.11169416e-01 3.57347637e-01\\n1.67213112e-01 -1.85709864e-01 -2.94184357e-01 2.98517853e-01\\n2.02898104e-02 -9.60549787e-02 -3.80438834e-01 2.33673573e-01\\n4.12185639e-02 -5.39134681e-01 7.73584545e-01 1.40000045e-01\\n3.27907830e-01 8.81463066e-02 2.57994700e-02 -8.59297886e-02\\n3.52902198e-03 1.23795435e-01 -5.53409755e-02 3.36271733e-01\\n-2.23474592e-01 -1.77447617e-01 -9.64029431e-02 1.90260187e-01\\n-4.62801039e-01 2.66632259e-01 -1.32285237e-01 -1.45230874e-01\\n1.87922180e-01 -2.94205658e-02 -3.24101150e-01 1.10768579e-01\\n-1.26643166e-01 -1.52376890e-01 8.02242681e-02 5.69777429e-01\\n-7.82675371e-02 2.43639350e-01 -1.51042221e-02 -8.74454230e-02\\n7.25178540e-01 1.66858494e-01 -1.07229850e-03 -6.43134788e-02\\n3.50875914e-01 3.57049294e-02 2.90560871e-01 9.05217603e-02\\n-6.39829993e-01 3.67502570e-01 1.42371282e-02 -1.98851094e-01\\n8.54345784e-02 2.50803903e-02 3.50216717e-01 -4.67205524e-01\\n-1.24535322e-01 -1.13375433e-01 -2.95392036e-01 -1.33079529e-01\\n-3.10479373e-01 -1.50215775e-01 4.03197229e-01 -2.97243237e-01\\n-1.56392843e-01 1.65585518e-01 -6.80798471e-01 -1.17076978e-01\\n1.95750073e-01 1.22090451e-01 8.98842216e-02 6.79821372e-02\\n-5.84428012e-02 -6.84136391e-01 -1.17838711e-01 -5.61434746e-01\\n-4.79235709e-01 -1.62391197e-02 -4.43102211e-01 3.12348336e-01\\n9.61948857e-02 2.23491900e-02 -2.70209312e-01 1.73036739e-01\\n-3.16214174e-01 2.91104000e-02 2.20800668e-01 1.30040003e-02\\n3.07837993e-01 5.19551933e-02 -3.73211861e-01 3.93969983e-01\\n-1.10023595e-01 6.05572820e-01 2.04976350e-01 -6.67174816e-01\\n5.68976700e-01 4.10228640e-01 -1.32097639e-02 -3.06244224e-01\\n4.71904486e-01 -3.28421414e-01 -1.11632749e-01 5.80066219e-02\\n-3.02488774e-01 -4.29130524e-01 1.21426813e-01 -1.13919549e-01\\n-3.05754006e-01 5.60343683e-01 1.06565334e-01 2.19404157e-02\\n3.08832675e-01 -3.60765815e-01 -1.36797220e-01 2.37932205e-01\\n-1.19924918e-01 -2.33903900e-01 -4.15719062e-01 -3.11465207e-02\\n-7.49295428e-02 -4.38354939e-01 -1.42351896e-01 -3.94857258e-01\\n-1.94070101e-01 -3.19405705e-01 -4.09768730e-01 4.61869001e-01\\n1.85869917e-01 9.61013809e-02 -9.09118578e-02 -1.33323530e-02\\n-1.00047491e-01 -8.27483296e-01 4.93074320e-02 4.75524329e-02\\n4.48125720e-01 1.53993413e-01 7.36384690e-02 -1.83055058e-01\\n7.37257004e-02 6.65648341e-01 -4.05947179e-01 -3.05492789e-01\\n3.27343158e-02 1.57261103e-01 -2.55504027e-02 -4.86530960e-02\\n1.07461832e-01 4.97097760e-01 -3.26111466e-01 8.08469281e-02\\n-1.97301358e-01 -1.11661203e-01 3.29602003e-01 -1.07117631e-01\\n-3.10849756e-01 -2.20599413e-01 -6.18796982e-02 3.00643623e-01\\n-5.62083840e-01 -3.92843187e-01 4.34898883e-01 2.90442258e-01\\n2.31254756e-01 1.32649526e-01 1.95963055e-01 -5.02265617e-02\\n-2.53306299e-01 -4.08284217e-01 2.67852932e-01 1.85309544e-01\\n8.72170553e-02 1.72761410e-01 -4.57098894e-02 -6.49209142e-01\\n-3.35005069e+00 -1.19049266e-01 1.95204079e-01 -1.42373562e-01\\n2.34189317e-01 2.28987448e-02 4.00891975e-02 -8.33868012e-02\\n-3.62264037e-01 8.28131512e-02 -1.28010809e-01 -2.70860106e-01\\n-1.12116292e-01 3.58870476e-01 1.30933970e-01 2.05565602e-01\\n2.01939940e-01 -3.27510476e-01 -5.64833544e-02 3.45400125e-01\\n-1.45829007e-01 -6.70550108e-01 5.40195368e-02 -1.53561831e-02\\n2.53562301e-01 3.77783775e-01 -3.13458294e-01 -1.30594134e-01\\n-3.04139614e-01 -1.88112676e-01 -4.13720001e-04 -3.99223834e-01\\n-1.23340622e-01 2.06579968e-01 2.54610330e-01 5.58344275e-02\\n-2.98778922e-03 -3.05615544e-01 -9.70033854e-02 -5.04232526e-01\\n3.41190351e-03 -4.49428767e-01 1.86609123e-02 -1.19894370e-01\\n6.79200590e-01 -1.91292331e-01 1.84738591e-01 1.52017057e-01\\n1.70434773e-01 1.63962543e-01 3.62524390e-02 1.06787182e-01\\n-9.38766524e-02 -2.97862411e-01 -1.19559780e-01 -2.31664062e-01\\n7.04229474e-01 5.14253438e-01 -6.92761242e-02 -2.63523054e-03\\n1.08825430e-01 -3.91366541e-01 -4.67752814e-01 -3.18818301e-01\\n-9.39716697e-02 -2.29888588e-01 -6.51591003e-01 -4.13950711e-01\\n-1.85595721e-01 -4.32047024e-02 -2.12076157e-01 5.42313576e-01\\n-3.38225871e-01 -3.48974556e-01 2.69715283e-02 -5.62692642e-01\\n1.61460757e-01 -2.43679285e-01 1.53686360e-01 -3.89631204e-02\\n-2.38289446e-01 -6.71593368e-01 -1.06749736e-01 -1.78200170e-01\\n-1.30260393e-01 -3.03197592e-01 -1.18988305e-01 -5.86845353e-02\\n-2.56225020e-01 -6.05665445e-01 3.79024357e-01 1.43792480e-01\\n2.94720531e-01 1.84704378e-01 4.59055811e-01 -8.26915428e-02\\n4.23558921e-01 4.58418652e-02 -7.91794136e-02 -3.60442162e-01\\n-5.48459366e-02 -7.40971416e-02 4.52599943e-01 -1.13543294e-01\\n1.53942466e-01 1.17062114e-01 -2.18255490e-01 -3.83212119e-02\\n3.62344861e-01 4.19153161e-02 -4.17718217e-02 -1.44397959e-01\\n4.22746927e-01 -2.72830397e-01 -2.31825694e-01 1.60845831e-01\\n1.15813628e-01 6.28076434e-01 1.86652504e-02 -4.49732155e-01\\n-2.33861983e-01 5.65137684e-01 -1.11333020e-01 6.58415928e-02\\n-9.03046578e-02 1.49235427e-01 -1.35980144e-01 1.95091501e-01\\n-9.82831270e-02 -2.44395882e-01 -1.49072662e-01 -1.22328259e-01\\n-1.10931545e-01 3.91953558e-01 2.35398397e-01 6.10994501e-03\\n-1.11531682e-01 -2.95550257e-01 -1.54909506e-01 1.46287695e-01\\n2.94560939e-01 4.09787089e-01 1.78593561e-01 -3.12423974e-01\\n-7.02138990e-02 3.77872974e-01 -1.01519451e-02 9.31342468e-02\\n-2.08368748e-01 4.09455299e-02 -3.92957956e-01 -2.46942624e-01\\n-3.59082162e-01 -4.25442368e-01 2.39385858e-01 3.73319775e-01\\n8.39539096e-02 -3.97312529e-02 2.85563558e-01 -5.47754049e-01\\n4.19133395e-01 2.72235364e-01 1.17853925e-01 1.09099276e-01\\n-1.24561578e-01 5.02645969e-01 -7.49223679e-02 -1.08004563e-01\\n-2.52406061e-01 1.05447508e-02 -1.95723534e-01 -2.71729171e-01\\n1.70587212e-01 -6.02116942e-01 -1.91897884e-01 4.44209516e-01\\n2.45881185e-01 -2.02954754e-01 -3.22783262e-01 2.50395596e-01\\n-5.23507297e-02 -3.28757972e-01 -2.32960701e-01 -1.76553190e-01\\n1.73108369e-01 1.33014014e-02 2.78843582e-01 -2.93195784e-01\\n-5.48861660e-02 -4.37954850e-02 -3.27146351e-02 5.07661879e-01\\n1.77467212e-01 5.08969948e-02 -2.54120320e-01 -1.10497549e-01\\n5.29563785e-01 -8.29265043e-02 -1.36750340e-02 -1.43619433e-01\\n1.45741969e-01 -2.30486944e-01 -4.08401132e-01 8.31735954e-02\\n-3.91913131e-02 -1.56264216e-01 -9.30302888e-02 1.48367554e-01\\n-1.03273369e-01 7.85977989e-02 -7.10077345e-01 -3.36266488e-01\\n-4.08053666e-01 -1.86203495e-01 2.09359936e-02 -3.18180740e-01\\n1.15589714e-02 -6.17773943e-02 -5.33395767e-01 3.53105187e-01\\n-3.28015059e-01 -7.26068690e-02 1.17504291e-01 1.76224634e-01\\n-4.20059055e-01 -1.74938381e-01 -4.77401055e-02 2.87048846e-01\\n-3.99624974e-01 -2.75250167e-01 4.49762493e-03 -9.77015793e-01\\n1.42093718e-01 6.76126555e-02 -2.14485288e-01 5.88524789e-02\\n-1.42176464e-01 -5.97350597e-01 -3.74841020e-02 -5.06289542e-01\\n-2.76711397e-02 2.12920353e-01 -2.74026603e-01 -8.27496871e-02\\n1.76449582e-01 -1.70337725e-02 -3.88304412e-01 3.80793124e-01\\n-3.33709151e-01 2.41502866e-01 -1.98908761e-01 1.61453217e-01\\n-5.55104762e-02 -1.27174959e-01 7.43299574e-02 -2.05290601e-01\\n-4.01791364e-01 -2.92716295e-01 -2.03706503e-01 -1.25526950e-01\\n7.93420374e-02 -3.92119318e-01 -1.65071607e-01 1.69550125e-02\\n3.70709479e-01 8.66900459e-02 -1.10151120e-01 -2.79189885e-01\\n1.13218136e-01 -5.50931931e-01 -3.59931495e-03 -2.49128968e-01\\n-6.20403215e-02 -9.75676626e-02 2.24061534e-01 8.71564671e-02\\n2.17803076e-01 -3.08463454e-01 4.82191592e-01 -4.08337027e-01\\n-2.46548027e-01 -4.72327955e-02 4.22134995e-02 -1.22209042e-01\\n1.28084630e-01 -4.84935492e-01 -2.40670261e-03 3.19071472e-01\\n4.58413996e-02 -8.80386010e-02 2.65195668e-01 -5.87772876e-02\\n5.09641804e-02 2.46959642e-01 -2.27597073e-01 1.25412136e-01\\n7.23162532e-01 1.03838801e-01 3.38800512e-02 1.74701512e-01\\n1.91928566e-01 3.41389924e-01 5.37623644e-01 5.94294816e-02\\n4.50938381e-02 2.90370047e-01 1.37288779e-01 -3.51034641e-01\\n-2.80057173e-02 1.58480443e-02 -2.50718445e-01 -2.66983002e-01\\n7.02537000e-01 4.61657256e-01 -5.05702734e-01 -2.70402133e-01\\n-3.14138494e-02 -2.01632008e-01 3.57618004e-01 5.21320701e-02\\n1.47703802e-02 -3.18478309e-02 5.02444267e-01 -1.48917615e-01\\n6.63390383e-02 6.09450161e-01 -2.44767696e-01 -3.23840827e-01\\n-5.24812154e-02 2.82150477e-01 5.42860888e-02 5.81487775e-01\\n-2.77523935e-01 3.18400472e-01 -3.25301811e-02 -2.94691208e-03\\n1.19819464e-02 2.43483633e-01 2.22774833e-01 3.47710103e-02\\n2.87638277e-01 -3.39678638e-02 3.22743118e-01 6.37781262e-01\\n8.24697763e-02 3.68883431e-01 2.42546946e-01 1.49033964e-01\\n3.51512939e-01 5.71332753e-01 3.89838547e-01 1.88696101e-01\\n1.60439685e-02 2.80597359e-01 1.32400841e-01 -1.03801303e-01\\n3.83920342e-01 3.97256941e-01 9.42822918e-02 8.88749540e-01\\n3.38519901e-01 4.03219104e-01 5.19377470e-01 -7.30246723e-01\\n-3.18686038e-01 2.07738429e-01 5.71277797e-01 -2.21303478e-01\\n-2.68598981e-02 1.79136291e-01 -2.70904154e-01 2.96401203e-01\\n-4.99009192e-01 -1.91606760e-01 4.54262830e-03 9.40883979e-02\\n-6.65409490e-02 -1.88375816e-01 -2.88819104e-01 -7.96906054e-02\\n-1.59726128e-01 -3.83828394e-02 -3.83251727e-01 -1.96621731e-01\\n-2.81151384e-01 -9.25636012e-03 -1.77532867e-01 -1.97292909e-01\\n5.14329709e-02 -3.68404061e-01 -6.41435608e-02 7.43891373e-02\\n3.96721900e-01 -1.96322531e-01 -1.47753030e-01 -1.43119931e-01\\n1.71592310e-01 3.70279372e-01 5.63981056e-01 -5.77464662e-02\\n1.34021595e-01 -9.81474966e-02 -2.07689196e-01 1.38016596e-01\\n-9.37613845e-03 4.72647473e-02 1.47420689e-01 1.93972245e-01\\n-2.21584007e-01 -1.64701194e-01 2.09619597e-01 3.02007616e-01\\n-4.17190611e-01 -1.25701442e-01 -2.01619834e-01 2.83955842e-01\\n-3.84229496e-02 1.66154966e-01 -1.89610735e-01 1.00306846e-01\\n-1.40607163e-01 -4.21521395e-01 4.70354974e-01 -1.07023336e-01\\n-4.63431776e-02 2.26062387e-01 4.34537768e-01 1.93338960e-01\\n-3.22088212e-01 -3.84056941e-02 -4.56718132e-02 2.38319427e-01\\n-8.59484002e-02 3.83177549e-01 -2.02118486e-01 -3.81131172e-01\\n-2.67352015e-01 1.53150648e-01 -2.25777149e-01 1.22528940e-01\\n-9.30396840e-03 3.44943106e-01 1.03135789e-02 5.86238913e-02\\n4.39161271e-01 6.83616400e-02 -2.40586132e-01 -1.51674092e-01\\n-2.48169482e-01 -7.94871524e-02 9.09963921e-02 -7.05700042e-03\\n8.89195278e-02 -3.81218761e-01 -2.01335952e-01 -6.06442541e-02\\n1.93256270e-02 -2.59877086e-01 -2.84286719e-02 1.12730607e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: You build prototypes, you set up automatic benchmarking procedures and you assess the scalability and robustness of different machine learning methods. You optimise the use of available CPU and GPU resources for training machine learning models on large datasets on platforms such as AWS and Azure. You work with our engineers to ensure that new models can be seamlessly integrated into our applications and reliably deployed on production systems. You actively share your know-how with our other data scientists (which already includes specialists in areas such as natural language processing, recurrent neural networks and mathematics) and in turn you learn from their ideas and expertise. Requirements: You can produce scalable, reliable and easy-to-understand code in Scala, Java and/or Python. You have deployed machine learning models in production, having tested their robustness and scalability in different environments. You are familiar with a wide range of machine learning approaches, in particular deep learning models. You are passionate about the newest neural network architectures, but you also remain pragmatic and recognise that a simpler traditional machine learning model might work just as well for many use cases. You enjoy solving mathematical problems. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills Scala JAVA Python Python',\n", + " 'soft_skills': '[\"Proactivity\", \"Communications\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Graphics Processing Unit (GPU)\", \"Agility\", \"Natural Language Processing\", \"Scala (Programming Language)\", \"Activism\", \"Python (Programming Language)\", \"Prototyping\", \"Dataset\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Benchmarking\", \"Scalability\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Resourcing\", \"Java (Programming Language)\", \"Network Architecture\"]',\n", + " 'languages': \"['English', 'Gaelic']\"},\n", + " {'company_id': '13',\n", + " 'job_title': 'c++ software engineer',\n", + " 'location': 'Valais',\n", + " 'industry': 'Architectural & Engineering Services',\n", + " 'website': 'www.albelissa.com',\n", + " 'jobdescription_embedded': '[[-1.93023220e-01 2.84971774e-01 5.76747715e-01 8.09191689e-02\\n3.79462004e-01 -1.60719037e-01 -1.95983723e-02 1.81595489e-01\\n-5.43494560e-02 -2.47605875e-01 -1.26799166e-01 -2.36014664e-01\\n-1.87159881e-01 1.18354205e-02 1.56876445e-01 4.07753825e-01\\n3.69153708e-01 4.60872538e-02 -1.42274782e-01 3.09822500e-01\\n1.29416794e-01 -2.26810370e-02 1.69744864e-01 5.97809672e-01\\n2.97849417e-01 -1.80582833e-02 -4.90233414e-02 3.23238313e-01\\n-2.40271091e-01 -2.75693744e-01 3.91724914e-01 -3.35422345e-02\\n-2.27663711e-01 -3.17115307e-01 1.81185693e-01 1.33092746e-01\\n-2.71566808e-01 6.53250888e-02 -7.05304891e-02 1.93278491e-01\\n-3.56408805e-01 -3.36260289e-01 6.35209084e-02 8.21651742e-02\\n-3.27285498e-01 -2.78838396e-01 1.88201442e-02 3.02441306e-02\\n1.01771019e-01 3.14762294e-02 -3.92157257e-01 2.94625401e-01\\n-1.20578289e-01 -1.44571900e-01 3.47032636e-01 6.02841318e-01\\n-8.03779215e-02 -5.35582244e-01 -2.47117892e-01 -3.32369059e-01\\n-1.82846859e-02 -1.27541929e-01 9.16568190e-02 -1.90231383e-01\\n4.96628195e-01 -4.21262309e-02 -6.79767877e-02 3.87758881e-01\\n-6.40235245e-01 2.03417847e-03 -3.07453334e-01 -3.56304087e-02\\n-2.71039307e-01 5.07144397e-03 -2.06913248e-01 -2.31157541e-01\\n-4.04809378e-02 2.85882771e-01 1.29741356e-01 5.24331965e-02\\n-1.08462982e-01 2.33123407e-01 -9.08612013e-02 1.85076386e-01\\n3.72805327e-01 3.00237656e-01 2.10820600e-01 2.00532600e-01\\n-4.36785936e-01 4.06616688e-01 1.59396961e-01 -3.73646885e-01\\n1.45827159e-01 2.00291306e-01 4.31923985e-01 -2.82509867e-02\\n-9.82719138e-02 3.07383742e-02 -2.64602184e-01 1.95478678e-01\\n2.06393048e-01 -3.46922219e-01 8.94336328e-02 4.82789241e-02\\n-1.64601028e-01 -1.07527025e-01 -8.49649590e-03 2.71790743e-01\\n-2.49963090e-01 5.16679466e-01 6.80635348e-02 -1.88341990e-01\\n-8.44592229e-02 -5.78167856e-01 -2.08876789e-01 7.41825700e-02\\n-1.51014701e-01 1.50385112e-01 3.14733952e-01 3.26260388e-01\\n2.00032711e-01 1.51999995e-01 2.45978162e-01 8.72025967e-01\\n-1.79239750e-01 1.23001553e-01 -7.15389252e-02 3.89586270e-01\\n2.33427554e-01 -2.90309370e-01 2.57669955e-01 3.22876245e-01\\n1.44438803e-01 -1.55339599e-01 -1.75612897e-01 9.73040089e-02\\n-1.87438726e-01 -2.91707158e-01 -3.68469000e-01 1.42460003e-01\\n-1.68224335e-01 -6.61118329e-01 6.50804460e-01 2.49196626e-02\\n2.92072982e-01 6.66861311e-02 -3.84853557e-02 -5.23812696e-02\\n-1.09184988e-01 3.19606721e-01 -3.18275928e-03 2.14698762e-01\\n-3.27821374e-01 -2.77011812e-01 -2.85831511e-01 2.95772552e-01\\n-8.16220939e-02 1.81969047e-01 -2.33848482e-01 -1.64082125e-01\\n2.77564734e-01 -7.94791877e-02 -3.21719646e-01 2.68638283e-01\\n-1.40423492e-01 -2.08896756e-01 8.28243233e-03 4.97536302e-01\\n-1.66883662e-01 2.11816326e-01 3.01943142e-02 -1.75269142e-01\\n3.62579346e-01 2.80470755e-02 8.56711492e-02 -1.13940515e-01\\n2.93263197e-01 -1.44733131e-01 2.05978885e-01 6.41251504e-02\\n-6.76442742e-01 4.34491962e-01 -6.28121719e-02 3.07337120e-02\\n-1.62847891e-01 -6.64470494e-02 4.32688743e-01 -4.26729113e-01\\n-8.22884217e-03 -1.97257832e-01 -3.51870894e-01 -2.82241851e-01\\n-3.46485734e-01 1.93993561e-02 5.30176520e-01 -4.15287465e-01\\n-3.28391120e-02 1.57842889e-01 -4.71407413e-01 -7.51680229e-03\\n1.43371403e-01 1.17811762e-01 1.84757173e-01 -3.42583517e-03\\n-2.64382631e-01 -5.62316358e-01 4.85258214e-02 -3.50103498e-01\\n-4.39741403e-01 1.43307466e-02 -1.41345173e-01 1.87769085e-01\\n4.71102595e-02 4.25483361e-02 -1.20546483e-01 9.45197046e-03\\n-3.22040796e-01 2.47450527e-02 2.91196406e-01 2.01789394e-01\\n1.92784369e-01 -7.61114731e-02 -3.08057785e-01 4.80427712e-01\\n-2.62463987e-01 6.31210625e-01 2.85822660e-01 -8.07167649e-01\\n4.31979686e-01 2.35709533e-01 7.08875358e-02 -3.98039699e-01\\n5.12551546e-01 -4.14534599e-01 -1.75894320e-01 2.15526253e-01\\n-2.88839549e-01 -1.37294233e-01 3.31055880e-01 -2.24120185e-01\\n-2.21103713e-01 6.42048657e-01 9.74993408e-02 3.48896720e-02\\n3.80524337e-01 -4.25285190e-01 -1.47565097e-01 3.17999045e-03\\n-9.69451144e-02 -2.16694087e-01 -3.51917416e-01 -1.41600622e-02\\n4.62215394e-02 -5.03255010e-01 -2.26462200e-01 -4.05337572e-01\\n-2.13770062e-01 -3.81369621e-01 -9.36022401e-02 2.23631740e-01\\n9.27278250e-02 1.51227310e-01 1.34733409e-01 -1.17643990e-01\\n-2.49269962e-01 -5.39430320e-01 -1.50111541e-01 1.80291273e-02\\n4.39711958e-01 3.57158393e-01 5.25986543e-03 -1.54796792e-02\\n9.96850505e-02 5.39542794e-01 -2.33960435e-01 -5.09997785e-01\\n1.95541620e-01 1.48514599e-01 -7.17050284e-02 -1.80345237e-01\\n2.21236143e-02 3.70704591e-01 -1.83929473e-01 -2.93744318e-02\\n-2.46051043e-01 1.49638832e-01 2.79841483e-01 -6.72466680e-02\\n-2.27851123e-01 -2.73935616e-01 -4.27316390e-02 8.00766721e-02\\n-5.02077401e-01 -2.32208908e-01 6.17888272e-01 2.07111806e-01\\n2.38259956e-01 2.26038918e-02 2.41767481e-01 -7.24759325e-02\\n-1.33666918e-01 -1.89319775e-02 7.63500184e-02 2.99648270e-02\\n-5.45546636e-02 -7.66083673e-02 -2.07644179e-01 -3.96772236e-01\\n-3.52680349e+00 -4.75487970e-02 6.23236038e-02 -1.87649578e-01\\n2.29745731e-01 -5.70304804e-02 1.27997890e-01 1.81619767e-02\\n-2.89883733e-01 8.34556371e-02 -1.24892227e-01 -6.82225823e-02\\n5.02106361e-03 2.09312797e-01 1.88645884e-01 1.91557005e-01\\n9.69992056e-02 -3.53137523e-01 -1.06242701e-01 3.42037588e-01\\n9.88449752e-02 -7.25111187e-01 1.53379947e-01 -1.48783419e-02\\n2.82547802e-01 1.09135099e-02 -3.90976220e-01 -8.66443738e-02\\n-2.80368924e-01 -2.20440567e-01 4.44171391e-02 -2.00245351e-01\\n-1.54095218e-01 1.96305126e-01 1.20309539e-01 -1.46327719e-01\\n1.77151129e-01 -2.31519029e-01 -1.20392524e-01 -3.22773516e-01\\n4.01089452e-02 -5.85949719e-01 1.48317993e-01 -1.21823274e-01\\n6.27528727e-01 -2.74833888e-01 1.57375019e-02 1.98437437e-01\\n1.16189860e-01 1.13506280e-01 -3.58787887e-02 -7.84481466e-02\\n-2.78231025e-01 -1.98788300e-01 -4.72309999e-02 -3.98397774e-01\\n5.00525475e-01 5.32321513e-01 -2.25421876e-01 -5.14891930e-02\\n-2.66299564e-02 -3.10648412e-01 -4.01851118e-01 -4.94376242e-01\\n-1.92128077e-01 1.37983739e-01 -7.86833405e-01 -6.63788140e-01\\n-1.90485895e-01 5.86663336e-02 -1.45413280e-01 3.74451458e-01\\n-2.82953382e-01 -4.91457194e-01 -2.50308984e-03 -4.09625888e-01\\n1.45391986e-01 -1.40860528e-01 1.10345855e-01 -2.18848884e-01\\n-2.58358806e-01 -5.28694034e-01 1.23043016e-01 -1.09075765e-04\\n-1.81524754e-02 -7.69573376e-02 -1.27501741e-01 -3.35102767e-01\\n-2.62436688e-01 -2.25428104e-01 5.30628204e-01 -7.06033316e-03\\n4.49202120e-01 8.04683473e-03 1.28231838e-01 8.88944715e-02\\n4.75103796e-01 -1.68030839e-02 2.38922089e-01 -4.37832505e-01\\n6.48542866e-02 4.33753915e-02 6.10117912e-01 -3.10926557e-01\\n-6.88958168e-02 1.81218326e-01 -3.35536212e-01 -6.17533773e-02\\n4.54336703e-01 4.92603369e-02 -3.32282931e-02 -3.11262250e-01\\n2.82797605e-01 -4.25663769e-01 -4.67174612e-02 1.19527042e-01\\n6.47183359e-02 6.66389048e-01 8.93400833e-02 -3.51489514e-01\\n-2.62787610e-01 3.96891832e-01 -1.35237798e-01 -2.33242027e-02\\n-1.74163505e-01 9.65479389e-02 -1.95121795e-01 2.83886701e-01\\n-1.53991226e-02 -2.44298086e-01 -3.01724523e-01 -3.43440212e-02\\n3.38082872e-02 1.04805753e-01 2.51252323e-01 1.76965550e-01\\n-9.68178660e-02 -1.85262188e-01 -9.91895720e-02 3.56270559e-02\\n2.86910802e-01 1.34213224e-01 2.57296324e-01 -2.90597141e-01\\n3.51994969e-02 3.34553808e-01 -1.03289165e-01 2.50428826e-01\\n-1.13137707e-01 1.65966734e-01 -4.61433560e-01 -2.12833852e-01\\n-8.89929831e-02 -2.98652053e-01 -5.07398210e-02 4.26158518e-01\\n7.68801346e-02 -8.72694254e-02 1.12909548e-01 -4.88994062e-01\\n5.08778036e-01 7.03571737e-02 1.80435330e-01 1.46698818e-01\\n2.85777263e-02 6.80919826e-01 1.46579891e-02 -1.21986784e-01\\n-1.58208877e-01 1.28067359e-01 -1.05399445e-01 -1.45108327e-01\\n4.62610740e-03 -3.98118615e-01 -1.06731830e-02 3.56154650e-01\\n8.90209600e-02 -1.93076968e-01 -1.61920667e-01 3.37398499e-01\\n2.03744367e-01 -3.06835860e-01 -9.18369740e-02 -1.66637208e-02\\n2.84768969e-01 -3.16000730e-02 1.82370663e-01 -4.10906315e-01\\n-8.05889219e-02 -1.05070874e-01 1.88400003e-03 4.26721215e-01\\n1.52733207e-01 -3.98115022e-03 -1.07361659e-01 -2.74852574e-01\\n4.13479298e-01 1.27881482e-01 -8.79582688e-02 -2.38127232e-01\\n-4.01609298e-03 -1.78775564e-01 -3.06777537e-01 -2.88935732e-02\\n1.45492166e-01 -6.66133920e-03 1.12127036e-01 3.33956815e-02\\n1.19929589e-01 4.84050140e-02 -4.63071823e-01 -3.44539076e-01\\n-2.48355538e-01 -1.18324526e-01 -8.31865445e-02 -3.82269174e-01\\n3.10625862e-02 -5.27249947e-02 -5.93813717e-01 1.81866094e-01\\n-3.11311722e-01 2.14212183e-02 9.58050042e-02 -5.22036515e-02\\n-3.32061589e-01 -9.43717584e-02 -3.28533389e-02 1.61685705e-01\\n-4.29066002e-01 -2.49400392e-01 -1.34284675e-01 -8.48411500e-01\\n2.67388433e-01 -2.13558059e-02 -1.15095809e-01 3.62662151e-02\\n-1.00073352e-01 -5.77638626e-01 8.51545110e-02 -2.92366743e-01\\n1.10153602e-02 1.70191738e-03 -1.70019597e-01 -2.54895926e-01\\n1.15180604e-01 2.42098179e-02 -2.00091377e-01 2.70929575e-01\\n-4.13661897e-01 3.25733423e-01 -2.22014878e-02 1.28626004e-01\\n-7.24688321e-02 -2.57328153e-01 1.91305518e-01 -3.29103738e-01\\n-2.68333733e-01 -2.22385898e-01 -2.40738660e-01 -1.87114298e-01\\n-1.85926750e-01 -4.88936342e-02 -1.96887836e-01 1.22379653e-01\\n3.28160733e-01 1.42361894e-01 -9.31878015e-02 -2.40325078e-01\\n7.43252188e-02 -2.19420478e-01 -1.19804423e-02 -3.95451933e-01\\n1.15312941e-01 -7.64120594e-02 1.09175451e-01 -1.23228908e-01\\n6.94909021e-02 -3.07562083e-01 4.26732570e-01 -2.19584346e-01\\n-4.03388828e-01 2.93509066e-02 2.04352155e-01 -6.21642172e-02\\n2.99982011e-01 -4.45957392e-01 -1.05718330e-01 2.31080785e-01\\n5.38153062e-03 7.10275993e-02 2.93371081e-01 -9.55037251e-02\\n-1.69300377e-01 3.14331651e-01 -5.54181039e-01 4.49242219e-02\\n5.73993742e-01 2.46420249e-01 1.59777477e-01 1.32012099e-01\\n1.13615900e-01 4.06407207e-01 4.81314570e-01 -6.78323815e-03\\n-5.26680686e-02 3.13821703e-01 1.24980271e-01 -4.05068159e-01\\n-1.48893774e-01 -1.41417444e-01 -2.56702572e-01 -2.26249665e-01\\n5.15847743e-01 3.12024325e-01 -1.88372970e-01 -2.93507457e-01\\n-3.27169895e-03 -1.89708531e-01 8.03721771e-02 -3.86354066e-02\\n2.31652081e-01 -3.78894545e-02 6.56130791e-01 1.10042781e-01\\n2.02738047e-01 6.41581774e-01 -2.46023104e-01 -4.56133455e-01\\n3.30727696e-02 2.31501684e-01 1.00457981e-01 3.12128186e-01\\n-1.14007063e-01 4.25962001e-01 3.76946516e-02 9.20343176e-02\\n-1.29603103e-01 1.57816723e-01 1.49577051e-01 5.71878487e-03\\n1.74194545e-01 1.72803089e-01 2.44996503e-01 5.20447075e-01\\n1.53932810e-01 4.89728868e-01 1.21829741e-01 5.81851788e-02\\n3.90776604e-01 5.12025714e-01 4.82425094e-01 7.24556148e-02\\n9.98450518e-02 5.31431399e-02 1.20104682e-02 -7.24868244e-03\\n2.86504656e-01 2.44183764e-01 2.50385553e-01 8.27449977e-01\\n2.80537218e-01 2.36078605e-01 8.79954040e-01 -7.18434930e-01\\n-3.30775946e-01 9.56443101e-02 4.61866975e-01 -3.82468164e-01\\n-2.33527899e-01 9.95463654e-02 -3.38779628e-01 2.57915676e-01\\n-2.85843819e-01 -1.57489657e-01 6.35072216e-03 -1.41251069e-02\\n2.47995052e-02 -6.64199423e-03 -1.64762139e-01 7.38743246e-02\\n-2.59277105e-01 -2.15228960e-01 -3.97931933e-01 -1.82363465e-01\\n-4.41712320e-01 -2.38952309e-01 -1.88669357e-02 -1.87597409e-01\\n-1.52685225e-01 -4.08340305e-01 -4.19915318e-02 -1.12481892e-01\\n2.16905132e-01 -1.80489942e-01 -1.69659227e-01 -1.77615494e-01\\n7.73277506e-02 2.99770415e-01 6.58399403e-01 1.17505580e-01\\n2.62801349e-02 -1.45018429e-01 -1.98117211e-01 6.87367544e-02\\n6.86697438e-02 -3.98421362e-02 7.64967129e-02 4.90854084e-01\\n-2.98463106e-01 -7.27979988e-02 3.66051346e-02 2.26996809e-01\\n-3.53975505e-01 -1.05500175e-02 1.05356229e-02 2.80984342e-01\\n-5.82098365e-02 6.68152198e-02 -1.53334782e-01 2.48753652e-02\\n-7.48076960e-02 -5.86891949e-01 4.08051610e-01 1.22734904e-02\\n-4.33160476e-02 4.12606411e-02 2.81995952e-01 1.92616120e-01\\n-1.73784629e-01 -1.99561656e-01 -2.58685965e-02 3.03664476e-01\\n1.10460080e-01 2.98650563e-01 -1.48724526e-01 -1.87458232e-01\\n-2.04714715e-01 2.95864999e-01 -2.02737838e-01 1.35312364e-01\\n-7.71338269e-02 4.57371384e-01 1.45977944e-01 1.79110870e-01\\n1.92659155e-01 -1.17105119e-01 -2.01586396e-01 -2.49867678e-01\\n-2.11017817e-01 -1.15493901e-01 3.53023037e-03 -1.00921161e-01\\n2.66618729e-01 -2.91890979e-01 5.63797504e-02 -1.02415636e-01\\n-1.26619309e-01 -4.01673198e-01 -1.41128674e-01 5.22736348e-02]]',\n", + " 'job_description': 'Our Swiss client, a leading worldwide supplier of high performance optical sensor solutions is in search of a:C++ Software Engineer Responsibilities:- Optimize and port C++ algorithms to mobile platforms - Design, implement and port algorithms to GPU and DSP - Port machine learning algorithms from research to production ready implementation - Profile production code for performance reportingRequired Skills & Knowledge: - Master’s degree in computer science (or equivalent) - Very good C++ and C programming skills - Good code architecture skills - 3+ years’ experience in algorithm development, profiling and optimization - Good understanding of mobile platforms (CPU, GPU, DSP, memory, etc.) - Good knowledge of computer architecture - Open-minded, fast learner and willingness to learn - English fluency',\n", + " 'soft_skills': '[\"Research\", \"Willingness To Learn\"]',\n", + " 'hard_skills': '[\"C++ (Programming Language)\", \"High Performance Computing\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Algorithms\", \"Production Code\", \"Machine Learning Algorithms\", \"Optics\", \"Computer Science\", \"Machine Learning\", \"Open Control Architecture\", \"Profiling (Computer Programming)\", \"Software Engineering\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Oromo', 'Akan']\"},\n", + " {'company_id': '47',\n", + " 'job_title': 'ibm db2 database administrator',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.experis.com',\n", + " 'jobdescription_embedded': '[[-1.33371219e-01 2.05799371e-01 4.27507818e-01 -8.84635597e-02\\n4.37172949e-01 -3.16156307e-03 -3.06391846e-02 5.13258874e-01\\n-2.95675732e-02 -3.94192606e-01 -2.01171979e-01 -2.67313808e-01\\n1.37568980e-01 1.12885877e-01 1.31004639e-02 3.83273035e-01\\n1.72422290e-01 1.65948167e-01 -1.06670171e-01 2.37314016e-01\\n2.23816603e-01 -1.18073300e-01 2.15529710e-01 6.61718309e-01\\n4.79833275e-01 7.61424601e-02 -1.29026584e-02 -8.44122767e-02\\n-2.25638673e-01 -3.24105531e-01 4.50888962e-01 -1.13730066e-01\\n-8.93626139e-02 -3.56032670e-01 6.08137175e-02 -1.28504187e-02\\n-1.71385452e-01 -1.97236657e-01 -3.40837426e-02 1.25147820e-01\\n-5.09844601e-01 -1.83028415e-01 6.94296136e-02 -5.83921261e-02\\n-2.32285038e-01 -2.86633551e-01 3.42995785e-02 -5.24260998e-02\\n2.25405842e-01 1.19900726e-01 -6.06682599e-01 2.41676927e-01\\n-1.93707049e-01 -1.61098734e-01 2.93181986e-01 6.24811649e-01\\n-1.12407513e-01 -4.61319566e-01 -4.94477212e-01 -1.64419949e-01\\n1.28550693e-01 -1.08417459e-01 -4.77717444e-02 -2.39821345e-01\\n3.84628087e-01 1.56205609e-01 6.04600869e-02 4.29563761e-01\\n-6.78335965e-01 -4.72522303e-02 -2.68250316e-01 -1.91572264e-01\\n-3.38681847e-01 -4.70067095e-03 -2.36700535e-01 -1.21357195e-01\\n-1.55554056e-01 4.59851742e-01 1.41336560e-01 4.45492826e-02\\n-5.19889034e-02 2.56126344e-01 -1.38313919e-01 2.78513879e-01\\n3.35668951e-01 2.09135503e-01 7.53053129e-02 2.11518690e-01\\n-3.43744427e-01 4.56794381e-01 1.91642210e-01 -2.24156693e-01\\n2.23755181e-01 -8.29801783e-02 4.49587494e-01 -9.64650512e-02\\n1.31258085e-01 -3.56153585e-02 -2.42913410e-01 2.50014395e-01\\n2.52737015e-01 -2.11360604e-01 1.19521514e-01 -1.53503299e-01\\n-4.36405204e-02 -4.64391373e-02 1.86601728e-02 2.22570449e-01\\n-2.80826151e-01 5.25702000e-01 1.26672029e-01 -1.21648550e-01\\n-3.02330814e-02 -5.66365063e-01 -1.15302496e-01 -5.63428923e-03\\n1.00152194e-01 9.43064168e-02 4.19501700e-02 1.90304488e-01\\n3.50161225e-01 1.42082470e-02 1.46841824e-01 7.57015526e-01\\n-9.55087095e-02 -1.35471271e-02 -1.69464603e-01 2.95132726e-01\\n5.55998124e-02 -2.50527501e-01 2.37814009e-01 2.82920510e-01\\n-2.25777794e-02 -1.91665947e-01 -1.47990644e-01 2.72137165e-01\\n-9.49046761e-02 -2.32338518e-01 -2.51700163e-01 1.79357499e-01\\n-1.24941748e-02 -1.78573072e-01 5.29013693e-01 -1.18365921e-02\\n1.63641229e-01 -5.13781793e-03 8.63534678e-03 -8.74784067e-02\\n-1.34268114e-02 2.43661821e-01 7.02125803e-02 3.64533290e-02\\n-2.31779277e-01 -2.06587642e-01 -2.19731897e-01 1.42144710e-01\\n-8.95717591e-02 6.35875985e-02 -1.38894528e-01 -1.40497714e-01\\n3.61997813e-01 -6.15258189e-03 -2.08519518e-01 3.36080760e-01\\n-1.31961303e-02 3.03063616e-02 -8.67127031e-02 1.93593919e-01\\n-1.38765439e-01 1.64297193e-01 -2.00799763e-01 -2.49628350e-01\\n5.01382351e-01 -4.94180098e-02 4.91536260e-02 6.84183389e-02\\n2.90598154e-01 3.01255845e-02 1.12851351e-01 8.52651056e-03\\n-7.24557996e-01 3.57022494e-01 -5.31258583e-02 -2.09017217e-01\\n1.95543289e-01 -1.37829840e-01 2.21508384e-01 -2.49300569e-01\\n9.99711901e-02 6.73290342e-02 -4.05430257e-01 -3.93910974e-01\\n-5.58184534e-02 -9.46291611e-02 3.31483811e-01 -3.58847767e-01\\n-2.71675915e-01 1.70472294e-01 -3.50292116e-01 4.55967104e-03\\n2.71476865e-01 2.57223755e-01 1.35824844e-01 1.09580472e-01\\n-1.99854210e-01 -4.11877960e-01 1.12364389e-01 -4.17932838e-01\\n-8.12283307e-02 1.84159219e-01 -2.65517682e-01 1.73987523e-01\\n7.07757547e-02 -3.41742076e-02 -7.96643272e-02 7.40498751e-02\\n3.75508191e-03 -8.43756124e-02 1.37403831e-01 4.33149375e-02\\n3.05522144e-01 1.58095136e-01 -3.47859979e-01 3.70992035e-01\\n-1.53892010e-01 6.38485610e-01 4.33101542e-02 -7.65384555e-01\\n5.28118730e-01 3.83646905e-01 5.92860244e-02 -2.91692227e-01\\n7.21271276e-01 -1.59387097e-01 2.94404998e-02 1.23070106e-01\\n-5.17444432e-01 -3.24670792e-01 2.14289933e-01 -1.96364522e-01\\n-2.63157755e-01 4.44370210e-01 8.39110278e-03 1.33906275e-01\\n8.40515196e-02 -9.98430699e-02 -2.04734266e-01 1.07181117e-01\\n-6.45012548e-03 -2.15333268e-01 -5.29146135e-01 -1.39669195e-01\\n-1.89094990e-01 -4.73088443e-01 -1.19034655e-01 -3.50639373e-01\\n-2.46458426e-01 -2.79653937e-01 -1.13373756e-01 1.63403839e-01\\n2.56636351e-01 7.50516504e-02 5.85452504e-02 1.18373044e-01\\n-2.15260163e-01 -5.54025531e-01 -4.33990210e-02 8.45257565e-02\\n3.54685247e-01 2.11181521e-01 5.60365431e-02 -3.00813969e-02\\n-1.13356233e-01 7.13183641e-01 -1.48901433e-01 -5.89994974e-02\\n1.77890956e-01 2.81891704e-01 1.71173170e-01 -2.10834257e-02\\n1.30546004e-01 1.19427219e-01 -2.02108696e-01 8.49028379e-02\\n-1.23910785e-01 1.01220638e-01 2.85901129e-01 -6.73929825e-02\\n-3.68915528e-01 -3.09713811e-01 -1.94293290e-01 9.19063389e-02\\n-4.10428911e-01 -3.70769948e-02 7.03782916e-01 2.08521470e-01\\n1.08355664e-01 1.99403301e-01 1.91989705e-01 -6.29624948e-02\\n-3.64044197e-02 -1.47809908e-01 2.16696903e-01 8.90232548e-02\\n-6.46961331e-02 6.40876889e-02 -1.67246625e-01 -6.92745507e-01\\n-3.42176318e+00 -1.23497441e-01 9.01969969e-02 -3.22278053e-01\\n2.65568882e-01 -1.95588917e-01 1.78975254e-01 -3.50061916e-02\\n-2.55003572e-01 4.50879335e-02 -1.72089458e-01 -1.86167493e-01\\n2.63491154e-01 1.32787660e-01 9.03407037e-02 3.80113930e-01\\n1.36247039e-01 -1.58177197e-01 -1.36389188e-03 3.31812084e-01\\n-3.16919744e-01 -6.08626246e-01 3.15553844e-01 -5.79803661e-02\\n2.64587820e-01 3.92388672e-01 -3.64307582e-01 -1.10873200e-01\\n-1.85079142e-01 -2.41591007e-01 2.44352967e-01 -4.56115514e-01\\n-1.10426798e-01 3.89783680e-01 1.79563209e-01 -1.78729072e-01\\n1.28573611e-01 -4.04469341e-01 3.04594561e-02 -5.78631938e-01\\n5.43392524e-02 -6.25710130e-01 3.94522659e-02 -2.58353949e-02\\n6.62804663e-01 -3.31731856e-01 2.36898512e-02 7.02679455e-02\\n2.34228984e-01 2.39032984e-01 4.28735688e-02 -4.50738035e-02\\n-1.81983411e-01 -2.89416641e-01 -1.03766114e-01 -1.54740855e-01\\n3.00505221e-01 6.10849917e-01 -2.35515565e-01 7.02915415e-02\\n5.53140193e-02 -2.58784682e-01 -4.02440399e-01 -3.39439750e-01\\n-1.89735144e-01 -1.50278851e-01 -6.57278895e-01 -3.34497631e-01\\n-1.15860552e-01 -1.83503523e-01 -9.66823399e-02 3.12969416e-01\\n-2.29674950e-01 -2.75914937e-01 -8.53286535e-02 -4.79041696e-01\\n2.45226189e-01 7.09865913e-02 -7.04380348e-02 -1.69022635e-01\\n-1.63950503e-01 -3.43916655e-01 7.77869523e-02 1.85001064e-02\\n-4.48846817e-02 -1.83759302e-01 5.08454405e-02 -2.12779567e-01\\n-3.53567809e-01 -4.99482483e-01 2.98669696e-01 1.33216321e-01\\n3.15942168e-01 1.77221835e-01 2.23191250e-02 1.09549277e-02\\n2.99648404e-01 -3.01277041e-01 7.17213079e-02 -3.20920199e-01\\n1.38174683e-01 1.47417234e-02 4.28012878e-01 -3.05463344e-01\\n3.75528075e-02 1.15785310e-02 -3.77472490e-01 -1.79261222e-01\\n2.48683989e-01 -6.81184828e-02 1.66927159e-01 -3.01256686e-01\\n1.91228762e-01 -3.06610703e-01 -3.07828188e-01 5.75505458e-02\\n-6.64626583e-02 4.72549587e-01 6.06770143e-02 -3.61382455e-01\\n-2.04380199e-01 3.94715458e-01 -6.65246770e-02 -3.95309106e-02\\n-2.47686937e-01 2.87414901e-02 -3.55923831e-01 2.48838723e-01\\n-6.09782860e-02 -9.42683741e-02 -2.64787734e-01 -1.01991758e-01\\n-9.61587280e-02 3.13363642e-01 2.40723893e-01 1.41399637e-01\\n4.53760615e-03 -3.37665379e-01 -2.27243267e-02 2.94157714e-01\\n1.51349425e-01 4.76930737e-01 6.50615171e-02 -7.80015960e-02\\n6.58115596e-02 3.34465206e-01 -1.36432245e-01 1.06814414e-01\\n-1.53895825e-01 2.22882088e-02 -4.29047823e-01 -3.44791353e-01\\n-2.50608712e-01 -2.02324137e-01 3.47349718e-02 2.86271662e-01\\n1.68628082e-01 -1.35763541e-01 -4.67459597e-02 -2.57006675e-01\\n2.47827232e-01 -6.23320788e-02 1.48508608e-01 2.05369368e-01\\n1.08742602e-01 4.15658206e-01 1.51533067e-01 -2.32296050e-01\\n-1.25905991e-01 -3.79431201e-03 -3.03833425e-01 3.70254013e-04\\n8.41520354e-02 -3.76123279e-01 -1.21948943e-01 4.77743357e-01\\n1.37785375e-01 -1.08983040e-01 5.99971646e-03 4.72064167e-01\\n-1.09932609e-01 -2.48965263e-01 -2.54145086e-01 1.44819900e-01\\n4.11230296e-01 1.78455874e-01 2.47661233e-01 -4.71388102e-01\\n3.11464351e-02 -8.22136030e-02 -7.83164799e-03 3.43756557e-01\\n9.00764316e-02 5.74659072e-02 -1.19600102e-01 -3.09496939e-01\\n3.61400843e-01 -8.47936496e-02 -6.30013645e-02 2.09444657e-01\\n4.74296696e-02 -5.81431016e-02 -4.91343170e-01 8.80029425e-02\\n-1.04511052e-01 -1.26672506e-01 7.36680925e-02 3.50665972e-02\\n1.17334209e-01 7.30119925e-03 -5.59879422e-01 -2.10101113e-01\\n-1.99574202e-01 1.47355869e-01 -1.44189507e-01 -4.80099916e-01\\n-2.33495142e-02 -3.12063619e-02 -5.60033143e-01 2.23822355e-01\\n-1.61080107e-01 1.67009886e-02 2.32773080e-01 -4.48173061e-02\\n-2.70627886e-01 5.00976145e-02 2.31770024e-01 1.35631919e-01\\n-3.08689982e-01 -1.87755674e-01 -5.80563471e-02 -1.04349649e+00\\n1.64861321e-01 -2.45977864e-02 -5.41159734e-02 1.30992085e-01\\n8.63255039e-02 -5.65017939e-01 8.36776718e-02 -2.12323114e-01\\n-2.06730217e-01 -1.63068071e-01 -8.32395926e-02 -4.93767947e-01\\n-3.51195298e-02 6.54743239e-02 -1.41817629e-01 2.52416819e-01\\n-2.48661324e-01 2.38354698e-01 -1.46934465e-02 5.94691783e-02\\n-3.21889296e-02 -3.14568996e-01 2.23100230e-01 -3.77518475e-01\\n-3.53369057e-01 -1.49075598e-01 -3.33571643e-01 -1.28569245e-01\\n4.02850732e-02 -2.92416692e-01 -7.36466795e-02 2.61670291e-01\\n2.98244804e-01 7.06951842e-02 -7.13124722e-02 -6.95739836e-02\\n7.35802874e-02 -4.98523146e-01 1.51330948e-01 8.95632058e-02\\n-1.64705336e-01 -5.01828417e-02 3.33137184e-01 5.34483641e-02\\n1.74539492e-01 -4.12812471e-01 3.61971527e-01 -4.92386401e-01\\n-3.06161344e-01 1.67556491e-03 1.34837672e-01 4.10571098e-02\\n4.43473637e-01 -4.38564599e-01 -1.11866124e-01 4.09112155e-01\\n1.26230836e-01 1.12702549e-01 3.18779349e-01 -1.06237084e-01\\n-1.32878780e-01 3.01319301e-01 -5.55391848e-01 8.46253186e-02\\n7.08826423e-01 2.07657054e-01 1.55981839e-01 1.90416127e-01\\n-2.26936564e-02 2.27222875e-01 3.77483875e-01 1.36525454e-02\\n-2.62449235e-01 3.45059931e-01 -1.42353140e-02 -7.68584073e-01\\n-1.42146602e-01 -1.57654524e-01 -2.80348778e-01 -4.64638770e-01\\n6.58223987e-01 4.27320302e-01 -4.56058502e-01 -2.40133464e-01\\n-2.30779856e-01 -2.33429775e-01 -6.89104348e-02 -1.68819129e-01\\n5.95154203e-02 -1.51475146e-01 4.61679161e-01 -1.36592919e-02\\n2.01342061e-01 4.21174079e-01 -1.62242711e-01 -1.41490623e-01\\n-8.22958052e-02 6.27560169e-02 -7.81479627e-02 3.58443141e-01\\n-1.26534119e-01 2.95761943e-01 -2.20252741e-02 2.42983475e-01\\n-2.37127040e-02 -4.72395644e-02 -4.19845097e-02 -3.83028202e-02\\n-5.60388826e-02 3.19579959e-01 2.95404166e-01 2.90586531e-01\\n4.10978079e-01 3.58087301e-01 3.00400764e-01 5.93846999e-02\\n6.17043436e-01 3.52668822e-01 3.26820016e-01 1.83177322e-01\\n-1.39118299e-01 7.32062533e-02 -6.74592480e-02 1.11791618e-01\\n2.71139145e-01 2.34200418e-01 -3.19756083e-02 8.03222239e-01\\n2.34582201e-01 1.84454560e-01 5.70965052e-01 -5.00223398e-01\\n-3.43580008e-01 -1.56258583e-01 3.94312531e-01 -4.59701687e-01\\n3.53975222e-02 2.24629249e-02 -1.14779077e-01 1.30188957e-01\\n-4.32968676e-01 -3.01344872e-01 1.16653154e-02 1.10374108e-01\\n1.10670902e-01 -7.09238499e-02 -2.22948164e-01 -2.32056025e-02\\n-1.53612942e-01 -2.05817133e-01 -4.20883030e-01 -4.60624024e-02\\n-1.63215458e-01 -1.82119161e-01 -2.94461790e-02 -2.71312952e-01\\n-8.58309120e-02 -2.24729747e-01 -5.36047295e-02 -2.34992523e-03\\n2.97083676e-01 -1.38589311e-02 -9.60794452e-04 -1.53908446e-01\\n2.70777553e-01 1.76755264e-01 5.47148764e-01 -6.68331236e-03\\n1.23513870e-01 -2.16279805e-01 -6.16046712e-02 1.68843731e-01\\n4.43239272e-01 4.92541566e-02 9.19680372e-02 3.52449983e-01\\n-3.38073671e-01 -1.69344291e-01 1.02153651e-01 3.03860456e-01\\n-5.02762198e-01 -3.82813662e-02 1.01749767e-02 2.27467090e-01\\n1.22416452e-01 1.63998008e-01 -2.18629256e-01 7.30605498e-02\\n-2.25328013e-01 -4.44776922e-01 2.13889554e-01 5.48362173e-02\\n-1.57049388e-01 -7.29980916e-02 2.77926683e-01 9.75853279e-02\\n-8.32841843e-02 6.18050098e-02 1.90277845e-02 1.63488731e-01\\n2.14833230e-01 2.88607210e-01 -3.55266660e-01 -2.97078073e-01\\n-3.03522408e-01 1.68096393e-01 -2.22219825e-01 1.80516332e-01\\n-1.01062082e-01 3.22808862e-01 1.26399755e-01 5.62091954e-02\\n4.42894995e-01 -1.83020994e-01 -1.87508419e-01 -3.21166813e-01\\n-3.33363861e-01 -2.98934102e-01 8.22979361e-02 -2.58180588e-01\\n1.47568077e-01 -3.60976130e-01 -1.93068773e-01 -1.32323831e-01\\n-1.40512407e-01 -3.32886577e-01 1.71561129e-02 -5.65489605e-02]]',\n", + " 'job_description': 'IBM DB2 Database AdministratorExperis is the global leader in professional resourcing and project-based workforce solutions. Our suite services range from interim and permanent to managed services and consulting, enabling businesses and candidates to achieve their goals. We accelerate organisational growth by attracting, assessing and placing specialised professional talents.On behalf of our client, a global pharmaceutical company, we are looking for an IBM DB2 Database Administrator, who is eager to join an international and dynamic team in Zurich, Switzerland. Duration: 6-8 weeks Start date: ASAPLocation: Zurich, Switzerland Languages: Fluency in English. German and any other languages are considered an asset. Responsibilities: Set-up of UAT Big Data Environment (DB2 / Attunity / HortonWorks) with the help of the Data ArchitectWriting of installation guidelines and operating guidelines for the set-up componentsReproduction of the installation for the production environmentTransfer of knowledge to the client Required Skills & Experience: Senior experience level Are you interested in this opportunity? Kindly send us your CV today via the link in the advert. Should you have any questions, please contact Nina-Beatriz Schröter on: +41 44 229 99 38.If this position is not a perfect fit for you, you may still reach out to us, as we have hundreds of open positions across Switzerland at Experis IT.To view more jobs in Zurich, please visit: https://www.experis.ch/it-jobs-zurich',\n", + " 'soft_skills': '[\"Consulting\", \"Operations\", \"Positivity\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Pharmaceuticals\", \"Attunity\", \"Database Administration\", \"Resourcing\", \"Installation\", \"Project-Based Solutions\", \"Library For WWW In Perl\", \"Big Data\", \"IBM DB2\", \"Levelling\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Managed Services\", \"DB2 SQL\"]',\n", + " 'languages': \"['English', 'Maori', 'Marathi', 'Pali', 'Flemish']\"},\n", + " {'company_id': '115',\n", + " 'job_title': 'backend software engineer for iptiq emea p&c',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Agencies & Brokerages',\n", + " 'website': 'www.swissre.com',\n", + " 'jobdescription_embedded': '[[-1.51607335e-01 2.45700851e-01 5.71299732e-01 4.21508439e-02\\n5.47416329e-01 -1.59287214e-01 -3.46607268e-02 2.49995232e-01\\n4.47569564e-02 -5.64005554e-01 -3.09100077e-02 -2.73756176e-01\\n-1.55617520e-01 7.43689314e-02 1.28326714e-01 5.27891755e-01\\n3.57368231e-01 6.98308200e-02 -1.72142819e-01 4.35592949e-01\\n6.27982244e-03 -1.40930757e-01 5.72162420e-02 7.86320627e-01\\n3.96925211e-01 -3.37414071e-02 -4.83073890e-02 -1.80194154e-03\\n-2.76713967e-01 -1.84191778e-01 5.40569782e-01 4.71941195e-02\\n-2.48609483e-01 -5.41587353e-01 1.29495695e-01 1.21562771e-01\\n-2.14085653e-01 -7.96991810e-02 -1.70730978e-01 1.45557150e-01\\n-5.21042585e-01 -2.40828693e-01 -1.19071640e-02 -1.18121207e-01\\n-2.12115049e-01 -4.30957049e-01 2.39199027e-04 -1.01336256e-01\\n1.51791707e-01 6.14694990e-02 -5.03482044e-01 1.75401777e-01\\n-3.11641276e-01 -1.63465053e-01 3.40275019e-01 6.12610102e-01\\n3.72616574e-02 -5.89699626e-01 -5.19559443e-01 -3.46681595e-01\\n2.01193392e-02 -1.55878305e-01 1.31854326e-01 -3.45781684e-01\\n2.26804391e-01 -3.06797773e-03 -3.30993049e-02 3.56631339e-01\\n-7.48796403e-01 -5.61239310e-02 -2.76137501e-01 -6.57028519e-03\\n-3.51451337e-01 -8.54304135e-02 -3.96596462e-01 -1.35090426e-01\\n-1.73384756e-01 4.97799933e-01 5.18363528e-02 5.38194738e-02\\n-1.72606051e-01 3.76287282e-01 -2.27606595e-01 5.04966378e-01\\n2.99681634e-01 2.04901561e-01 3.53502095e-01 4.53148961e-01\\n-4.12867457e-01 5.42658091e-01 2.02847391e-01 -3.73002917e-01\\n2.50773400e-01 1.86028242e-01 4.22769696e-01 4.58819829e-02\\n2.43803024e-01 7.17079192e-02 -1.47466838e-01 3.20022345e-01\\n2.57693321e-01 -2.10487992e-01 -5.09887598e-02 -2.71403998e-01\\n-2.26936322e-02 2.54654512e-03 9.37806070e-02 1.23303540e-01\\n-2.83563733e-01 3.92254889e-01 5.35078049e-02 -2.80434072e-01\\n-1.54238239e-01 -4.39132601e-01 -3.73535082e-02 -2.39585638e-02\\n-3.55188176e-02 2.55148947e-01 2.25412637e-01 8.42405632e-02\\n2.41174310e-01 1.07006706e-01 5.93280420e-02 8.43412459e-01\\n-6.20268798e-03 -3.21134776e-02 -2.92062670e-01 3.62573266e-01\\n7.63421357e-02 -3.17435592e-01 2.79244602e-01 1.94348395e-01\\n-2.00742841e-01 -1.88946709e-01 -2.94854790e-01 4.66094911e-01\\n-2.52451058e-02 -2.70842493e-01 -2.60526985e-01 1.56662136e-01\\n7.92032406e-02 -4.89735723e-01 6.84454858e-01 7.17296749e-02\\n1.68903977e-01 -7.14911819e-02 1.08660772e-01 -1.14922643e-01\\n-7.60371387e-02 9.44318324e-02 4.58407998e-02 1.40101999e-01\\n-1.80131972e-01 -2.17888832e-01 -2.11512744e-01 1.79843843e-01\\n-4.03750479e-01 2.45457649e-01 -1.89657360e-01 -9.94548798e-02\\n2.52676576e-01 9.19565707e-02 -3.15387964e-01 2.55572796e-01\\n-8.97467583e-02 8.15720484e-03 1.86879635e-02 4.01351511e-01\\n-1.95168734e-01 6.87448084e-02 8.25260766e-04 -1.96216777e-01\\n6.70043766e-01 2.61465043e-01 2.06621528e-01 6.73682392e-02\\n3.95032972e-01 -4.18851152e-02 3.40355933e-02 1.34208024e-01\\n-7.06217647e-01 3.68079007e-01 -5.14578447e-02 -8.74001831e-02\\n5.46051972e-02 -4.45525423e-02 2.10410863e-01 -2.72858799e-01\\n-5.63940443e-02 -1.54990345e-01 -3.97879362e-01 -2.44130164e-01\\n-1.69587210e-01 -1.80972487e-01 3.64111960e-01 -6.05951667e-01\\n-1.14200369e-01 2.85567760e-01 -6.68980241e-01 -1.59817696e-01\\n1.52009562e-01 2.24529460e-01 1.81540653e-01 1.11764856e-01\\n-2.06065565e-01 -5.30062973e-01 -1.11364797e-02 -5.69816232e-01\\n-3.49971771e-01 5.44129610e-02 -3.49038780e-01 6.89770803e-02\\n5.81736118e-02 6.10862300e-02 -1.25391319e-01 1.19754393e-02\\n-1.36266589e-01 -3.47451344e-02 1.21357404e-01 4.25939411e-02\\n2.65452474e-01 5.27256355e-02 -3.26346517e-01 4.77183431e-01\\n-2.29264617e-01 5.70963979e-01 1.21736772e-01 -1.00509179e+00\\n5.85437655e-01 3.58790159e-01 -1.01564661e-01 -3.15641820e-01\\n3.17170918e-01 -4.15061057e-01 -4.31151576e-02 1.64486498e-01\\n-3.25988591e-01 -2.50679672e-01 1.84413105e-01 -2.64790028e-01\\n-3.05539548e-01 4.23391670e-01 4.23845463e-02 1.42683476e-01\\n2.96188712e-01 -2.29181707e-01 -2.31676966e-01 1.65705830e-02\\n-1.75288200e-01 -2.55442142e-01 -6.99486732e-01 4.60998639e-02\\n-1.14344880e-01 -4.82824206e-01 -7.32759237e-02 -4.98251528e-01\\n-1.46104693e-01 -4.10333812e-01 -2.40190282e-01 1.12137184e-01\\n2.13270932e-01 9.14745778e-02 -1.29924864e-01 -3.09933126e-02\\n2.01663934e-02 -7.00964689e-01 -5.94696309e-03 1.02839254e-01\\n3.74797970e-01 1.32841855e-01 9.76127759e-02 3.58268432e-02\\n1.15872577e-01 6.72438443e-01 -2.34618783e-01 -2.10130006e-01\\n2.08724231e-01 2.64791667e-01 2.58660931e-02 -1.60817921e-01\\n3.05834897e-02 3.11138421e-01 -3.02934200e-01 -1.18448213e-03\\n5.02564088e-02 3.90601568e-02 4.59220827e-01 -1.14960298e-01\\n-4.22099233e-01 -5.55464178e-02 -9.98506416e-03 1.00901648e-01\\n-7.05993295e-01 -1.47137925e-01 7.00239360e-01 1.77009597e-01\\n1.23192295e-01 1.90565437e-01 5.12596518e-02 -6.19042665e-02\\n-3.36743832e-01 -2.54050046e-01 3.45681518e-01 1.64667219e-01\\n2.12107912e-01 1.08523108e-01 2.97815856e-02 -6.53734207e-01\\n-2.96928358e+00 -1.94780499e-01 1.37721986e-01 -1.28120512e-01\\n1.27507553e-01 -1.70227081e-01 5.63224070e-02 -8.29518214e-02\\n-2.55149364e-01 1.19226445e-02 -6.39807805e-02 -1.54268891e-01\\n1.17435344e-01 1.13361835e-01 1.34498805e-01 2.37024307e-01\\n2.50927776e-01 -1.24392226e-01 4.23465855e-02 2.44113877e-01\\n-1.31829381e-01 -8.28639865e-01 2.01336920e-01 3.85021940e-02\\n2.30335027e-01 1.11758836e-01 -4.44711566e-01 -1.34559482e-01\\n-3.23703766e-01 -1.92273781e-01 2.59722173e-02 -3.45683277e-01\\n-1.18936643e-01 2.00283542e-01 1.87649086e-01 -7.99838752e-02\\n8.28027874e-02 -3.81826401e-01 -3.03422064e-01 -5.07337928e-01\\n8.24332833e-02 -6.71792865e-01 7.75821730e-02 -2.03144222e-01\\n5.72810590e-01 -2.17529297e-01 2.23930269e-01 1.19926929e-01\\n1.26079857e-01 1.99299574e-01 1.52441457e-01 9.11917537e-02\\n-2.76066005e-01 -3.35463345e-01 -1.03997886e-01 -1.44256145e-01\\n6.24363899e-01 3.26365411e-01 -2.17629801e-02 5.32800555e-02\\n1.41887307e-01 -1.96928799e-01 -5.22651911e-01 -2.12304950e-01\\n-6.34393021e-02 -1.35689989e-01 -6.88690782e-01 -5.08009076e-01\\n-2.22282708e-01 -8.03410783e-02 -1.87203109e-01 7.38792241e-01\\n-2.69677222e-01 -1.89316869e-01 -9.69721824e-02 -6.09651506e-01\\n3.91033947e-01 -1.64330423e-01 5.76500669e-02 -2.51962543e-01\\n-2.16293544e-01 -5.39816141e-01 8.98807272e-02 1.34898908e-02\\n-3.99983414e-02 -2.47507975e-01 1.19101197e-01 -1.18828356e-01\\n-2.73174405e-01 -4.76839840e-01 4.02263522e-01 2.26547837e-01\\n3.05459380e-01 1.73775733e-01 3.36529911e-01 -5.57742566e-02\\n2.55649805e-01 -1.92559641e-02 -1.89690650e-01 -3.25314164e-01\\n1.39680326e-01 8.31988007e-02 3.54917705e-01 -1.34529799e-01\\n-1.22191742e-01 1.20385304e-01 -2.48277068e-01 -9.30234641e-02\\n4.11407650e-01 -1.05201475e-01 5.34394346e-02 -8.42848569e-02\\n3.60394597e-01 -2.84647226e-01 -1.71526939e-01 2.44031455e-02\\n9.84324589e-02 7.68158793e-01 -5.58939017e-03 -5.24926305e-01\\n1.18317567e-02 5.55643141e-01 9.24163684e-03 1.06751174e-02\\n-3.16886902e-01 1.05011672e-01 -2.51011759e-01 3.11813265e-01\\n1.13789886e-02 -1.80304289e-01 -2.08910257e-01 -2.19813764e-01\\n-1.74070269e-01 2.21201599e-01 2.46137515e-01 1.27475619e-01\\n-2.11120062e-02 -3.21910262e-01 -2.00424045e-01 2.49503508e-01\\n2.17861995e-01 4.82915819e-01 2.19339967e-01 -2.42882714e-01\\n-2.17846297e-02 3.27325761e-01 -1.56466872e-01 1.49184167e-01\\n-2.85380065e-01 1.20912708e-01 -5.34851074e-01 -2.26842359e-01\\n-2.31371552e-01 -3.94340336e-01 1.85542971e-01 4.00716305e-01\\n1.29319355e-01 -1.42921120e-01 1.82845831e-01 -4.70712543e-01\\n3.13165516e-01 2.96505928e-01 6.77503571e-02 1.51993483e-01\\n3.59634310e-02 7.26995587e-01 1.41285229e-02 -2.37567574e-01\\n-1.36250168e-01 -5.21105193e-02 -2.30557352e-01 -2.33205393e-01\\n4.86279763e-02 -5.67141891e-01 -1.25840366e-01 4.14481312e-01\\n5.88311441e-02 -2.83619344e-01 -3.22829664e-01 2.45125219e-01\\n5.49949184e-02 -1.34644657e-01 -2.48466015e-01 -6.68199211e-02\\n4.28889245e-01 -1.04629792e-01 2.66903758e-01 -5.28803825e-01\\n5.76970093e-02 -5.18402420e-02 8.69944245e-02 5.62788904e-01\\n1.44799650e-01 1.29055366e-01 -9.65894759e-02 -1.86028093e-01\\n4.47029442e-01 -8.16727281e-02 -1.73637822e-01 4.33749333e-02\\n1.59072548e-01 -1.88954622e-01 -4.18685973e-01 8.80020037e-02\\n-1.26815930e-01 -1.92775324e-01 5.35170734e-02 1.92247659e-01\\n4.43729423e-02 1.28883183e-01 -6.84196293e-01 -3.06600809e-01\\n-2.64415205e-01 6.82324171e-02 7.87351578e-02 -5.64081311e-01\\n1.37114814e-02 -1.26930326e-01 -5.97811222e-01 2.47712940e-01\\n-2.21192390e-02 -2.26999164e-01 2.62781024e-01 1.14665180e-01\\n-2.72057712e-01 -1.39947653e-01 1.45706441e-02 1.53290555e-01\\n-3.28228235e-01 -3.67780328e-01 -7.27485642e-02 -1.07193446e+00\\n2.25077853e-01 1.47885740e-01 -2.19207317e-01 2.59622931e-01\\n-5.94061539e-02 -7.99730062e-01 4.55757938e-02 -3.83859366e-01\\n-7.41356015e-02 -2.41216943e-02 -2.48026133e-01 -3.44804168e-01\\n1.00986212e-01 5.09668663e-02 -2.06268176e-01 4.35465693e-01\\n-4.18261558e-01 3.78620923e-01 -2.08440125e-01 8.04942548e-02\\n7.31090456e-02 -3.64128858e-01 9.13885608e-02 -4.15105283e-01\\n-4.14787710e-01 -3.36221993e-01 -3.67865145e-01 -3.05270970e-01\\n-3.15383524e-02 -5.04256546e-01 -5.12754917e-02 -1.08980350e-02\\n4.78007495e-01 2.24641651e-01 -1.37601987e-01 -2.90719271e-01\\n-3.88187319e-02 -4.48888600e-01 -1.50886178e-03 -1.48260236e-01\\n-7.53376558e-02 -2.36101285e-01 2.12596506e-01 1.41000703e-01\\n1.67472482e-01 -4.29942071e-01 4.02122855e-01 -2.61439055e-01\\n-3.32473546e-01 -2.36470938e-01 4.54503596e-02 7.02080354e-02\\n2.95249760e-01 -4.96690899e-01 -2.72229593e-03 2.65036881e-01\\n2.38607287e-01 -2.41885986e-02 2.81740010e-01 -9.40708667e-02\\n9.59842931e-03 2.71147907e-01 -3.35410416e-01 2.15242654e-01\\n5.97622633e-01 1.17543370e-01 1.61616325e-01 1.95294216e-01\\n2.08071470e-01 2.82338947e-01 5.33342242e-01 -2.03958657e-02\\n-9.53450799e-04 3.20085645e-01 1.23949036e-01 -4.19393659e-01\\n-7.51649141e-02 -1.06877126e-01 -8.01247805e-02 -3.45256776e-01\\n7.05132365e-01 4.47373152e-01 -3.37100178e-01 -1.10133410e-01\\n-2.72297800e-01 -1.98818237e-01 2.10725039e-01 -4.95266467e-02\\n-7.95061886e-02 1.15052342e-01 4.89127755e-01 -1.14399776e-01\\n2.45970488e-01 5.72366297e-01 -2.94472724e-01 -2.63495028e-01\\n-2.15922967e-01 3.08524549e-01 2.59994641e-02 4.65615124e-01\\n-2.61387885e-01 3.02861780e-01 1.30239576e-01 1.64290771e-01\\n-2.39229113e-01 1.53996617e-01 8.62301067e-02 1.52675718e-01\\n3.51831257e-01 -7.26979226e-02 4.23496485e-01 4.77612317e-01\\n3.31548274e-01 4.07338709e-01 4.06877995e-01 5.42258695e-02\\n5.01626194e-01 5.56577444e-01 5.29224038e-01 1.18944295e-01\\n7.49630481e-02 9.72353369e-02 1.84845626e-01 2.36443616e-02\\n2.87443548e-01 5.45897841e-01 1.04046673e-01 8.42569947e-01\\n3.72719526e-01 3.46872628e-01 6.95742011e-01 -7.36663818e-01\\n-3.64543170e-01 -3.96736562e-02 5.49128413e-01 -3.17222297e-01\\n1.33364141e-01 1.55748993e-01 -1.49561867e-01 2.36745656e-01\\n-4.29289550e-01 -2.32609928e-01 3.15140411e-02 1.58049643e-01\\n1.15368053e-01 -2.16189295e-01 -2.00409368e-01 2.03507170e-01\\n-2.21010342e-01 -1.21603936e-01 -3.85199457e-01 -7.55350813e-02\\n-2.26084024e-01 -3.12810093e-02 7.77518190e-03 -1.56865671e-01\\n-9.85272080e-02 -2.70421267e-01 -1.40903935e-01 -8.31648260e-02\\n3.84521157e-01 -1.18471131e-01 -1.19114116e-01 -1.15869805e-01\\n2.73873448e-01 1.70746401e-01 5.60358405e-01 -1.93594024e-03\\n1.10007524e-01 -1.85535356e-01 -1.53566033e-01 1.86564520e-01\\n2.14750424e-01 6.70564473e-02 3.20854485e-02 3.44990492e-01\\n-2.08808005e-01 -1.58831000e-01 2.20954776e-01 2.57213444e-01\\n-3.36503953e-01 -3.82269397e-02 -2.01983526e-01 9.50355455e-02\\n5.96063510e-02 2.46583730e-01 -2.47002587e-01 -6.63466230e-02\\n-1.17401727e-01 -6.07196689e-01 3.90233815e-01 -3.57466161e-01\\n-1.40969843e-01 -5.50134256e-02 2.76421249e-01 3.49114597e-01\\n-2.89102852e-01 4.72083874e-02 -1.62901469e-02 7.42716640e-02\\n5.01377285e-02 2.60579735e-01 -3.17225426e-01 -2.50775605e-01\\n-3.19044083e-01 2.03708112e-01 -1.09380811e-01 1.43182650e-01\\n8.52500722e-02 4.42883044e-01 2.20652685e-01 2.83812545e-02\\n3.43937576e-01 5.49533404e-03 -2.42628515e-01 -1.54690981e-01\\n-3.12048793e-01 -1.30345121e-01 -1.26126364e-01 -6.13558106e-02\\n1.60341278e-01 -2.96005070e-01 -7.62861073e-02 -2.50045031e-01\\n-1.88376456e-01 -3.98542941e-01 -9.68363881e-02 -7.16263428e-02]]',\n", + " 'job_description': \"About iptiQ EMEA P&C

iptiQ EMEA Property & Casualty is a newly built unit within Swiss Re Life Capital, established to deliver digital-native and creative solutions for Property & Casualty (P&C) clients and partners across Europe that engage with consumers in non-traditional ways. About the role As a Backend Software Engineer you will have an unusual and great opportunity to join us: a diverse and motivated team, committed to delivering value and creative services together with our clients and partners in the primary insurance space. Responsibilities You will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a high-traffic distributed infrastructure by designing, implementing and testing simple, scalable and reliable solutions. This will include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability End-to-end responsibility on the applications implemented, including monitoring, identifying issues or bottlenecks and delivering improvements of the platform Optimise applications and components to maximize speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications About the team We put the consumers' needs at the center of what we do, seek to become a digital champion and believe in data based learning. We use the Swiss Re network to access state of the art technologies and capabilities, combine it with local expertise and an innovative mind-set, constantly questioning current ways of offering insurance. Our aim is to drive the digitalization of the P&C insurance business in Europe, combining insurance know-how and e-commerce competencies, as well as the dynamic spirit of a start-up with the backing of Swiss Re. Do you enjoy thinking ahead and identifying new opportunities or anticipate future challenges? Do you like driving complex, multi-functional projects in an agile way? Do you enjoy pushing borders and have a passion for the latest technologies? About you Proven software development capabilities (5+ years hands-on experience) in any modern language (Java/Kotlin/Scala/C++/C#/Go/Python…) ***we are working in Java environment*** Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality overtime You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience designing data-models for relational and NoSQL data stores Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long term vision the adoption of new technologies Master’s or PhD degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re\",\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Leadership\", \"Collaboration\", \"Infrastructure\", \"Team Motivation\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Performance Improvement\", \"NoSQL\", \"Accessioning\", \"Agility\", \"Capitalization\", \"Computer Science\", \"Collections\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"Scale (Map)\", \"Activity-Based Learning\", \"Streamlines\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Prototyping\", \"Maintainability\", \"Library\", \"Iterators\", \"Micro Channel Architecture\", \"Message Passing\", \"Concurrent Versions System (Software)\", \"E-Commerce\", \"Business Process\", \"Equalization\", \"C# (Programming Language)\", \"Digitization\", \"Performance Metric\", \"Scalability\", \"Java Runtime Environment\", \"Experience Design\", \"Software Development\", \"Centering\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Kotlin\", \"Adoptions\", \"RESTful API\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English', 'Basque', 'Gujarati']\"},\n", + " {'company_id': '9',\n", + " 'job_title': 'software engineer frontend (m/w)',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.29411924e-01 3.69570881e-01 4.05117869e-01 -9.23201814e-02\\n4.00253803e-01 -1.96479231e-01 -3.31471823e-02 4.53161091e-01\\n-8.15106258e-02 -3.87246817e-01 -8.96338522e-02 -2.40364134e-01\\n-1.78286508e-01 5.12044504e-02 1.76763207e-01 3.77947927e-01\\n3.02914709e-01 1.31900102e-01 -2.00987652e-01 3.42699260e-01\\n7.53284618e-02 -8.97139087e-02 -2.94442456e-02 7.02488601e-01\\n3.25351417e-01 1.07417889e-02 -3.31698805e-02 -8.29202756e-02\\n-2.61225253e-01 -2.32835680e-01 3.87040228e-01 1.65966637e-02\\n-9.27388221e-02 -3.60517710e-01 8.05779919e-02 7.85665810e-02\\n-1.49701387e-01 1.11210449e-02 -2.71107778e-02 1.73086390e-01\\n-4.95559961e-01 -2.36285791e-01 1.87594235e-01 -2.54552811e-03\\n-1.19406827e-01 -3.99426579e-01 2.31142834e-01 -4.11266237e-02\\n1.42262325e-01 -1.39738563e-02 -6.67806029e-01 1.82873860e-01\\n-3.02327514e-01 -1.91834658e-01 4.21090394e-01 4.75494474e-01\\n5.96510693e-02 -5.02350688e-01 -4.68741387e-01 -3.23751360e-01\\n5.00352047e-02 -6.45478070e-02 1.25537902e-01 -3.54868680e-01\\n3.50229591e-01 7.04007223e-02 2.94305775e-02 3.95864725e-01\\n-8.07034492e-01 -5.06236218e-02 -2.34445035e-01 -1.19389305e-02\\n-4.53674287e-01 -1.83947399e-01 -2.66975850e-01 -5.07865623e-02\\n-1.25643134e-01 3.16604376e-01 -8.07620361e-02 6.20083399e-02\\n-1.92136452e-01 3.58563244e-01 -1.96704954e-01 4.84612137e-01\\n2.37676635e-01 1.84111580e-01 2.35324442e-01 3.53205860e-01\\n-4.17643011e-01 4.26375836e-01 2.31587321e-01 -2.68785179e-01\\n3.11311007e-01 3.05274967e-02 4.46601897e-01 5.85986041e-02\\n2.14686230e-01 8.38731676e-02 -2.45889008e-01 2.03965932e-01\\n2.06985757e-01 -2.63606668e-01 -1.32197678e-01 -1.34364218e-01\\n-2.37532513e-04 1.42218713e-02 7.10352184e-03 2.31911212e-01\\n-1.58053622e-01 5.14584839e-01 2.49390170e-01 -1.23238206e-01\\n-1.31678358e-01 -5.28611302e-01 -9.17088389e-02 4.26199846e-02\\n-8.95039141e-02 4.86033857e-02 1.97904795e-01 8.70702490e-02\\n2.45701268e-01 4.46167290e-02 6.42111450e-02 8.11113477e-01\\n-8.71537924e-02 7.23166764e-02 -1.57811627e-01 3.86564374e-01\\n9.73562226e-02 -3.39138538e-01 1.33837491e-01 3.47027004e-01\\n1.12876065e-01 -1.56601027e-01 -2.10042566e-01 3.36655289e-01\\n-6.77346066e-02 -1.78810269e-01 -3.28392357e-01 1.03942566e-01\\n-1.30089775e-01 -5.43019891e-01 5.14666319e-01 1.15517050e-01\\n2.11252630e-01 8.44955891e-02 1.09585926e-01 -1.08988255e-01\\n-1.67187542e-01 2.02998176e-01 3.29276882e-02 2.19192848e-01\\n-2.62528121e-01 -2.95220882e-01 -2.30744511e-01 1.29503042e-01\\n-1.86414227e-01 1.22461922e-01 -7.28980824e-02 -1.25563279e-01\\n3.91089648e-01 9.01127309e-02 -3.89580131e-01 3.25837731e-01\\n-2.96039265e-02 7.32740760e-02 -1.73700258e-01 3.51689696e-01\\n1.13036372e-02 2.26558372e-01 9.32053030e-02 -5.85043877e-02\\n5.41109443e-01 3.37963142e-02 2.49247745e-01 -4.23603207e-02\\n3.73318166e-01 -9.71680284e-02 1.92851096e-01 3.28308158e-02\\n-6.21452749e-01 1.97901428e-01 -5.31012230e-02 -3.59770395e-02\\n1.07706808e-01 -3.11045144e-02 2.90326744e-01 -3.05278003e-01\\n4.10244241e-02 -1.62066251e-01 -4.43341225e-01 -3.42027724e-01\\n-2.92095184e-01 -3.00347056e-05 4.76545930e-01 -3.98269385e-01\\n-1.25014722e-01 1.77671731e-01 -5.25608063e-01 -8.17053095e-02\\n2.53624022e-01 2.23039031e-01 1.06225893e-01 1.11317560e-01\\n-2.20318407e-01 -5.56012452e-01 4.24042828e-02 -5.06793082e-01\\n-4.24928844e-01 1.39224917e-01 -3.33594203e-01 2.07066193e-01\\n1.06761746e-01 -7.13509321e-02 -1.42024100e-01 5.63105606e-02\\n-2.45518357e-01 -9.25257802e-02 1.67488351e-01 1.06218018e-01\\n2.82514632e-01 -1.60132367e-02 -3.91320944e-01 5.45516670e-01\\n-2.07576782e-01 4.84423816e-01 8.30163807e-02 -8.63820076e-01\\n5.29234767e-01 4.03689086e-01 1.70482323e-02 -4.29077387e-01\\n5.68604767e-01 -3.38719010e-01 -4.87028770e-02 1.79560736e-01\\n-4.23586935e-01 -4.16793406e-01 2.49534130e-01 -1.28347069e-01\\n-2.44486988e-01 5.52456677e-01 7.65677765e-02 5.66585287e-02\\n2.63584852e-01 -2.79061884e-01 -1.83097646e-01 6.19198382e-02\\n-1.02029957e-01 -1.81545436e-01 -5.69159269e-01 4.90567461e-02\\n-5.71765266e-02 -5.12661278e-01 -1.59197271e-01 -3.78707260e-01\\n-2.35236287e-01 -4.07423347e-01 -3.33275080e-01 3.46463472e-01\\n1.90752208e-01 1.18661016e-01 -4.99214903e-02 1.18422091e-01\\n-1.45164147e-01 -6.48951769e-01 5.65320365e-02 1.40068904e-01\\n3.99149865e-01 1.57687411e-01 1.33428708e-01 -7.52682388e-02\\n-7.49949962e-02 5.97881436e-01 -2.96335161e-01 -2.47993588e-01\\n1.51850387e-01 2.04703584e-01 4.02054604e-04 -1.41496122e-01\\n1.18283741e-01 3.04508865e-01 -3.38581204e-01 -2.00866219e-02\\n-1.14004619e-01 2.07603048e-03 3.97050172e-01 -1.79522738e-01\\n-4.23588037e-01 -2.48989001e-01 -1.15061529e-01 1.76054463e-01\\n-5.33380151e-01 -2.13539794e-01 6.13665521e-01 3.21149409e-01\\n1.31031826e-01 2.04565778e-01 2.74301261e-01 -9.03357044e-02\\n-2.50618696e-01 -3.84346724e-01 2.98153579e-01 1.62363291e-01\\n1.54614463e-01 1.11201599e-01 -2.00536415e-01 -6.05881572e-01\\n-3.10678220e+00 -1.11332886e-01 2.43699685e-01 -2.34393403e-01\\n2.21965104e-01 -7.14346394e-02 1.11621946e-01 -6.25328720e-02\\n-2.62996674e-01 2.69727828e-03 -2.08455190e-01 -1.43144622e-01\\n1.09476000e-01 3.54203433e-01 1.04733236e-01 1.75140977e-01\\n2.29415357e-01 -2.34874815e-01 2.01575309e-02 2.80038327e-01\\n-2.20643982e-01 -6.92691386e-01 1.59317523e-01 -7.19114169e-02\\n2.05907077e-01 3.57553571e-01 -2.76850402e-01 -9.86656472e-02\\n-1.60291374e-01 -2.22065330e-01 9.19965357e-02 -2.89611846e-01\\n-9.40682888e-02 1.85911208e-01 1.41933128e-01 -6.64288253e-02\\n3.28832343e-02 -3.96721900e-01 -1.79942846e-01 -5.49185932e-01\\n1.70321688e-01 -5.97442806e-01 1.05505064e-01 -1.74614400e-01\\n7.38923609e-01 -3.13181967e-01 2.88300775e-02 6.46378621e-02\\n1.66261196e-01 1.77568853e-01 2.27926262e-02 1.51935574e-02\\n-3.33069384e-01 -3.41732055e-01 -4.03173938e-02 -2.76493996e-01\\n5.61342776e-01 4.01285380e-01 -2.73374557e-01 5.12259779e-03\\n1.56088069e-01 -2.21656680e-01 -4.30077165e-01 -3.17961127e-01\\n-1.44211724e-01 -1.24780893e-01 -6.84318304e-01 -4.54844266e-01\\n-1.27156168e-01 -1.68069690e-01 -6.41700402e-02 7.41744041e-01\\n-3.28977764e-01 -3.47371250e-01 -9.86098964e-03 -6.81394637e-01\\n1.94150820e-01 -2.31482938e-01 2.41207760e-02 -2.03758359e-01\\n-2.32270256e-01 -4.61979359e-01 5.73927388e-02 4.15991955e-02\\n-1.80058643e-01 -7.67726153e-02 7.98474401e-02 -1.05169445e-01\\n-2.69929051e-01 -5.51191330e-01 4.67386663e-01 1.44844174e-01\\n3.31390470e-01 1.49854526e-01 2.65491754e-01 -9.00676325e-02\\n4.04459149e-01 -2.45536566e-02 -1.83354337e-02 -4.13371325e-01\\n2.29118884e-01 7.02057332e-02 5.63765764e-01 -2.08509088e-01\\n-4.39126929e-03 3.24514747e-01 -1.66267022e-01 -1.66295394e-01\\n4.44916666e-01 -2.81692692e-03 9.39762294e-02 -2.35529691e-01\\n3.72845113e-01 -4.99007255e-01 -2.79690892e-01 1.62263930e-01\\n6.50707260e-02 6.79179490e-01 -4.62868176e-02 -4.07837003e-01\\n-1.45643756e-01 5.92358530e-01 -2.68287994e-02 -3.81400101e-02\\n-1.59143195e-01 1.90688744e-01 -1.69566676e-01 2.11906001e-01\\n7.83518404e-02 -1.83542281e-01 -2.62169242e-01 -4.94430438e-02\\n-9.38159972e-02 2.56094605e-01 1.93756148e-01 1.54458731e-01\\n1.85032953e-02 -4.16298151e-01 -1.09462939e-01 1.71553329e-01\\n2.32540503e-01 4.73408222e-01 2.56309900e-02 -2.50505865e-01\\n-7.08528906e-02 3.12660068e-01 -1.67381495e-01 1.95748866e-01\\n-2.51374364e-01 1.77247152e-01 -4.89304394e-01 -2.81294286e-01\\n-3.07072520e-01 -3.44712198e-01 2.19907779e-02 2.45001048e-01\\n2.15368003e-01 1.71730258e-02 9.67314020e-02 -4.89545405e-01\\n2.33887285e-01 4.17286009e-02 2.09033161e-01 1.75459236e-01\\n6.57896549e-02 5.22310913e-01 -5.55800423e-02 -1.59081459e-01\\n-2.12825298e-01 2.26340666e-02 -2.12228030e-01 -1.30399451e-01\\n1.28516719e-01 -4.60697681e-01 -1.47388235e-01 3.98855448e-01\\n1.28584683e-01 -1.85337469e-01 -2.24879280e-01 2.00295970e-01\\n2.95178732e-03 -2.28929460e-01 -2.45843783e-01 -2.93837171e-02\\n2.75664061e-01 6.57641962e-02 2.95062721e-01 -4.09785092e-01\\n-4.07891683e-02 1.04561551e-02 -1.35437781e-02 4.34687287e-01\\n1.31916359e-01 -8.60692002e-03 -1.58321127e-01 -2.11187065e-01\\n4.18992668e-01 -1.60342500e-01 -1.04373552e-01 -4.44057547e-02\\n1.48072585e-01 -1.85886979e-01 -4.69280154e-01 8.08674544e-02\\n-2.00714096e-01 -1.47033080e-01 1.56165868e-01 4.47960123e-02\\n3.98036651e-02 1.20192535e-01 -5.49052715e-01 -2.34389722e-01\\n-3.28624845e-01 -4.41376343e-02 1.15211010e-01 -5.70016205e-01\\n1.55493505e-02 8.15795269e-03 -6.38714314e-01 1.96569309e-01\\n-2.46831536e-01 -4.55087684e-02 1.55861527e-01 1.41786739e-01\\n-4.19364989e-01 -6.18827343e-02 1.00808263e-01 2.71678746e-01\\n-3.90558630e-01 -3.26926380e-01 -6.28312826e-02 -1.05453587e+00\\n2.29835749e-01 -1.07707851e-01 -2.80444503e-01 2.65343562e-02\\n-2.40594968e-02 -7.19151497e-01 5.64527102e-02 -3.33742708e-01\\n-8.38625282e-02 9.29665193e-02 -2.90800959e-01 -3.91880780e-01\\n1.24277040e-01 -9.24262404e-02 -3.13667327e-01 4.52166200e-01\\n-4.91245717e-01 2.90124625e-01 -3.98732871e-02 9.69134346e-02\\n-7.86277950e-02 -3.67054850e-01 1.37411773e-01 -4.33616459e-01\\n-4.65432167e-01 -2.12991685e-01 -3.69023800e-01 -2.83506781e-01\\n6.37267232e-02 -3.57645780e-01 -7.93143287e-02 1.49083808e-01\\n2.66231418e-01 6.93375915e-02 -5.67990355e-02 -1.98315829e-01\\n5.03223762e-02 -4.86519575e-01 4.27958369e-02 -9.35251340e-02\\n-1.91907454e-02 -1.22224070e-01 2.18753368e-01 5.62345572e-02\\n1.48162648e-01 -3.73725444e-01 4.54626232e-01 -3.08522969e-01\\n-3.94377708e-01 -9.17724520e-02 4.11946364e-02 1.07083796e-02\\n2.10496694e-01 -6.59699619e-01 -2.93771774e-02 3.78252089e-01\\n1.77783608e-01 7.48921884e-03 1.41644970e-01 -6.53472096e-02\\n-3.11940163e-02 3.19561124e-01 -4.28473741e-01 7.72890523e-02\\n8.03155065e-01 1.04914188e-01 -9.26881097e-03 2.30272353e-01\\n1.10204071e-01 3.35492373e-01 5.15445471e-01 -1.35111455e-02\\n-8.65495503e-02 2.99768776e-01 5.77457845e-02 -6.36009276e-01\\n-1.93279043e-01 -1.25310393e-02 -1.19154349e-01 -3.08667332e-01\\n6.95102811e-01 3.49992901e-01 -4.15083408e-01 -2.33824492e-01\\n-9.59376693e-02 -1.38059989e-01 2.60134935e-01 -8.02251995e-02\\n2.13269778e-02 -1.74361482e-01 5.24038792e-01 1.20265998e-01\\n3.40502143e-01 5.41308582e-01 -1.41582504e-01 -3.37894022e-01\\n-1.25669673e-01 1.28656000e-01 6.10002922e-03 3.55155498e-01\\n-1.55080050e-01 2.16957033e-01 -2.66384110e-02 2.15285808e-01\\n-1.86379910e-01 8.16482529e-02 -1.73866432e-02 1.58651382e-01\\n1.77946299e-01 9.09013227e-02 4.73535925e-01 3.48686725e-01\\n3.07873636e-01 5.59899449e-01 2.56952941e-01 1.46173865e-01\\n4.97570693e-01 4.95077401e-01 4.91139591e-01 5.72649315e-02\\n2.02857777e-02 1.38471335e-01 1.60988525e-01 -2.30022985e-02\\n4.55447614e-01 3.73011321e-01 9.69769433e-02 9.09893811e-01\\n2.63892829e-01 2.91585386e-01 7.37418652e-01 -7.00027406e-01\\n-3.41046154e-01 1.42620400e-01 4.08385426e-01 -4.52853829e-01\\n-1.21834837e-02 1.15986437e-01 -2.04505742e-01 2.87938744e-01\\n-4.94186431e-01 -1.59595266e-01 -2.45441124e-02 1.03444837e-01\\n6.10486679e-02 -7.21836314e-02 -2.32636109e-01 -1.86584871e-02\\n-1.33059517e-01 -1.21303864e-01 -3.42725992e-01 -1.06091879e-01\\n-1.54547065e-01 -9.56852883e-02 -6.15939163e-02 -1.54421628e-01\\n-1.86023526e-02 -4.55810010e-01 -1.64407387e-01 2.58800052e-02\\n3.81081372e-01 7.22546177e-03 5.10656349e-02 -1.49288088e-01\\n2.68291146e-01 3.61838728e-01 6.41104460e-01 -7.41466507e-02\\n1.28239766e-01 -3.31496716e-01 -1.62876248e-01 1.26637995e-01\\n1.22773126e-01 7.49756917e-02 7.29571506e-02 3.56549025e-01\\n-3.29781264e-01 -9.12872702e-02 1.50337309e-01 4.64791358e-01\\n-4.04272437e-01 -5.86483777e-02 -7.41252825e-02 2.06489816e-01\\n1.07363746e-01 1.22886963e-01 -2.73597389e-01 1.29549608e-01\\n-2.65247673e-01 -5.01372039e-01 4.16632324e-01 -1.39432535e-01\\n-2.59529743e-02 5.72796352e-02 3.19551617e-01 2.14657202e-01\\n-1.99605718e-01 -4.39755581e-02 2.79396344e-02 1.99439138e-01\\n6.27974868e-02 3.43864381e-01 -2.23075032e-01 -1.38274357e-01\\n-2.89120644e-01 1.91538960e-01 -1.01570398e-01 5.28164692e-02\\n-7.71433935e-02 3.91924173e-01 8.37674290e-02 7.61969537e-02\\n3.88105720e-01 7.08745494e-02 -2.46042758e-01 -2.11832866e-01\\n-2.45644569e-01 -2.33632281e-01 -1.56008741e-02 -6.01415820e-02\\n1.88023865e-01 -3.92546386e-01 -1.06564753e-01 -1.59330621e-01\\n-8.31586793e-02 -3.26125592e-01 -9.23803002e-02 4.95209694e-02]]',\n", + " 'job_description': 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customer-specific solutions based on EmberJS, HTML, CSS Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of all web technologies (Javascript, HTML, CSS, REST, etc.) Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Know-how in User Interaction and User Experience Design Willingness to take on responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Hosting\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"User Experience Design (UX)\", \"Functional Programming\", \"Experience Design\", \"Additives\", \"Rust (Programming Language)\", \"User Experience\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'cloud bi and data warehouse specialist',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.94456601e-01 2.48325408e-01 4.84606385e-01 1.44675300e-01\\n6.30575418e-01 -9.66933519e-02 -7.38720000e-02 1.34106100e-01\\n-4.31993529e-02 -3.80754590e-01 -1.57507971e-01 -1.78477168e-01\\n-3.20349187e-02 5.63224629e-02 9.40698311e-02 3.59987199e-01\\n2.89046407e-01 7.13369474e-02 -5.23303300e-02 2.69134611e-01\\n-1.37218833e-02 -1.50290489e-01 -5.17377481e-02 6.82634473e-01\\n3.94660652e-01 -1.12333372e-02 -4.08147909e-02 3.39767449e-02\\n-2.30431169e-01 -2.32317239e-01 4.26721752e-01 9.46487859e-03\\n-2.21591294e-01 -3.54394317e-01 7.06284419e-02 1.38953894e-01\\n-2.79211313e-01 -6.63644224e-02 -1.56360179e-01 5.59348091e-02\\n-4.64337826e-01 -1.28819913e-01 9.90000293e-02 -1.74332224e-02\\n-3.15286309e-01 -3.27180266e-01 9.41369496e-03 -1.38765678e-01\\n-3.30512822e-02 4.59450670e-02 -4.97947127e-01 3.65237653e-01\\n-3.88124436e-01 -1.82546124e-01 3.19714576e-01 7.43747115e-01\\n1.01209357e-01 -5.55799127e-01 -3.50036263e-01 -3.20983469e-01\\n5.03872260e-02 -8.80709738e-02 1.30930483e-01 -3.20293546e-01\\n3.90409052e-01 -2.44937167e-02 -6.80421665e-03 2.50290126e-01\\n-6.92720294e-01 -1.96003430e-02 -4.05999303e-01 6.69496283e-02\\n-2.56989509e-01 2.61742752e-02 -4.98316467e-01 -6.42776340e-02\\n-9.88724232e-02 4.12648231e-01 -6.13628104e-02 1.37926161e-01\\n-2.52504557e-01 2.31436089e-01 -2.33917832e-01 1.85494736e-01\\n2.90195763e-01 1.55339301e-01 3.89562488e-01 3.17629218e-01\\n-3.48300695e-01 5.66295862e-01 3.14937890e-01 -2.92322218e-01\\n2.82441318e-01 1.69063613e-01 3.47751409e-01 1.72949955e-01\\n1.42155886e-01 1.73264742e-01 -1.83166131e-01 2.34904364e-01\\n2.91860700e-01 -1.69900045e-01 -1.14408508e-02 -1.64061949e-01\\n-9.83618200e-03 -1.21301353e-01 3.63234244e-02 1.48171380e-01\\n-4.51698840e-01 3.69412452e-01 3.92975844e-02 -2.62675583e-01\\n-6.50725067e-02 -4.15342212e-01 4.68479916e-02 4.52349298e-02\\n-5.35338745e-03 2.40349025e-01 2.62831897e-01 1.02917135e-01\\n2.96008468e-01 8.47877376e-03 1.34815231e-01 7.73816705e-01\\n1.55418925e-02 2.44230665e-02 -2.22126707e-01 3.47933412e-01\\n1.12205625e-01 -2.04293251e-01 1.40859649e-01 1.75966233e-01\\n-1.01404361e-01 -1.58585668e-01 -3.03288221e-01 3.42481911e-01\\n-9.85604599e-02 -7.74083808e-02 -2.36967504e-01 2.26930767e-01\\n-1.72496557e-01 -5.23870826e-01 6.12761140e-01 -8.97391066e-02\\n1.13145292e-01 -7.58891404e-02 1.30506143e-01 -1.03224427e-01\\n-1.30781442e-01 2.62694508e-01 1.28463715e-01 2.34109819e-01\\n-2.65197635e-01 -2.62552112e-01 -1.12032756e-01 2.97461689e-01\\n-2.78420597e-01 1.30209088e-01 -2.64673561e-01 -1.49742201e-01\\n2.69057959e-01 1.81268930e-01 -4.09318238e-01 1.02064975e-01\\n-1.17628664e-01 -1.99191749e-01 -1.10227495e-01 3.80161405e-01\\n-8.89033675e-02 2.58585215e-01 9.64579582e-02 -1.38277873e-01\\n4.61921483e-01 2.20902652e-01 3.41443211e-01 7.74658099e-03\\n3.11140776e-01 -5.94998896e-02 1.65977135e-01 4.08669077e-02\\n-6.65361762e-01 4.11846220e-01 -3.39032412e-02 -2.21361414e-01\\n1.49531662e-01 6.80991635e-02 4.67673957e-01 -3.18426460e-01\\n-7.63108134e-02 -2.21786678e-01 -3.75582218e-01 -4.53994870e-01\\n-1.88959152e-01 -8.60249773e-02 3.06719184e-01 -4.43890452e-01\\n-3.65283825e-02 2.26670563e-01 -5.76359570e-01 -2.40739197e-01\\n2.97878385e-01 2.23707318e-01 1.29622877e-01 1.22349508e-01\\n-1.55047737e-02 -5.00079691e-01 8.26865584e-02 -4.35134113e-01\\n-3.65287960e-01 2.89627556e-02 -2.89738566e-01 -2.47918703e-02\\n7.77775794e-03 -1.07729025e-02 5.68401739e-02 5.87757118e-02\\n-3.57727677e-01 -1.92392152e-02 1.36188835e-01 2.32384466e-02\\n3.89966965e-01 3.39486338e-02 -4.34811085e-01 5.34210622e-01\\n-2.10796595e-01 3.91614944e-01 1.94993600e-01 -9.50507998e-01\\n6.40812516e-01 1.95426896e-01 -4.50216010e-02 -3.41325849e-01\\n4.44963098e-01 -4.25216943e-01 -5.20462170e-03 3.12038437e-02\\n-2.11603403e-01 -1.51304200e-01 2.46093258e-01 -1.86756134e-01\\n-4.00261611e-01 6.56291962e-01 -3.17994431e-02 7.73108974e-02\\n2.45013759e-01 -2.55990237e-01 -2.45398015e-01 -4.88037318e-02\\n-2.21447036e-01 -1.49521738e-01 -5.78557491e-01 1.09255001e-01\\n-5.35336770e-02 -5.47171891e-01 -1.22840390e-01 -4.95657444e-01\\n-1.74710542e-01 -3.44119042e-01 -2.50823349e-01 1.13149315e-01\\n1.41759813e-01 1.27258509e-01 -1.18396193e-01 -7.03995824e-02\\n-4.36423123e-02 -6.10437632e-01 -1.62004173e-01 5.56988865e-02\\n3.44814509e-01 2.81324387e-01 1.29175276e-01 -1.03621371e-01\\n7.14616776e-02 5.12507677e-01 -3.51269782e-01 -2.74730563e-01\\n1.95104629e-01 1.07703879e-01 -5.68498746e-02 -9.63004827e-02\\n2.06701130e-01 2.78652608e-01 -1.65631741e-01 -2.03819722e-02\\n3.89728136e-03 -2.21241079e-02 4.12939996e-01 -8.70399848e-02\\n-2.44848698e-01 -2.12935418e-01 -2.84403712e-02 2.82905638e-01\\n-4.86345053e-01 -2.68255860e-01 5.80669761e-01 2.16072917e-01\\n-1.00779682e-02 2.87891418e-01 1.50749743e-01 4.17280272e-02\\n-2.81666994e-01 -2.65512496e-01 2.82907546e-01 1.03553414e-01\\n1.36321127e-01 8.42825472e-02 -1.26609504e-01 -5.26513815e-01\\n-3.39327526e+00 -1.50292516e-01 3.62325720e-02 -1.92042649e-01\\n1.38392940e-01 -1.81347594e-01 2.15763241e-01 3.48792635e-02\\n-2.41526321e-01 3.65372188e-02 -2.23948821e-01 -1.45000458e-01\\n-1.51177905e-02 3.14476967e-01 7.67854005e-02 2.11993724e-01\\n8.86006951e-02 -2.88194001e-01 9.07110944e-02 3.81492943e-01\\n-1.59434348e-01 -8.43709052e-01 8.82793516e-02 -1.11684442e-01\\n1.36998489e-01 7.71812201e-02 -5.94315588e-01 -5.60590252e-03\\n-3.76335800e-01 -1.88278705e-01 8.30260217e-02 -2.08591878e-01\\n-2.69140273e-01 2.03400493e-01 1.29052937e-01 -1.46043390e-01\\n-9.40586347e-03 -2.17581853e-01 -7.73055851e-02 -5.98796427e-01\\n8.75477493e-02 -5.89399695e-01 9.54345390e-02 4.81922142e-02\\n6.42069280e-01 -2.34651521e-01 2.78422236e-01 1.48738325e-01\\n1.67575642e-01 1.53412223e-01 1.61667243e-01 1.04647204e-02\\n-2.56857514e-01 -3.52027684e-01 -3.98449339e-02 -1.87060580e-01\\n7.47249365e-01 3.30611259e-01 -1.64734006e-01 7.00008646e-02\\n1.84890300e-01 -4.22895342e-01 -4.12562191e-01 -3.95471185e-01\\n-2.56511718e-01 -3.00600380e-03 -7.83981562e-01 -3.73882055e-01\\n-1.94832832e-01 -1.55848280e-01 -1.12747893e-01 6.87511444e-01\\n-3.06581676e-01 -3.18843663e-01 -7.38033429e-02 -6.02983057e-01\\n3.75579983e-01 -2.17352048e-01 2.74661835e-03 -3.31739366e-01\\n-2.63680160e-01 -4.35816675e-01 2.10163265e-01 5.13261408e-02\\n-1.66691691e-01 -3.47792953e-02 8.06096196e-02 -1.00692421e-01\\n-3.61551762e-01 -4.95462239e-01 3.36409837e-01 9.46225673e-02\\n3.54638457e-01 5.96623719e-02 4.05088872e-01 -6.41696528e-02\\n3.68525982e-01 -2.49275938e-03 -8.33104849e-02 -4.22168672e-01\\n-2.12540030e-02 3.86307351e-02 5.03316045e-01 -1.74712315e-01\\n4.70771715e-02 9.67440158e-02 -1.80077270e-01 -9.07273144e-02\\n4.13953125e-01 -6.67332858e-02 1.29753903e-01 -1.05602503e-01\\n2.38430709e-01 -4.56395268e-01 -2.37036794e-01 1.65760398e-01\\n2.13423781e-02 7.36270189e-01 3.56953889e-02 -3.06479514e-01\\n-1.55991480e-01 4.42644179e-01 8.01946037e-03 4.25950997e-02\\n-2.73337245e-01 6.05188832e-02 -2.64612526e-01 3.66736412e-01\\n6.88102916e-02 -1.67750403e-01 -3.30837846e-01 -2.64469404e-02\\n-8.24493542e-02 2.19712824e-01 2.54464298e-01 3.53205949e-02\\n-1.50629729e-02 -1.81070775e-01 -8.77439976e-02 1.56211659e-01\\n2.73749501e-01 4.71746355e-01 2.23312706e-01 -3.33938658e-01\\n-1.51535124e-03 2.87248582e-01 -3.06464106e-01 3.93607795e-01\\n-2.53719300e-01 2.04404131e-01 -5.43246031e-01 -2.29711860e-01\\n-2.62219727e-01 -3.94261777e-01 9.22262296e-02 3.86951745e-01\\n1.89164028e-01 -1.48763597e-01 1.18467912e-01 -4.59082425e-01\\n2.38246202e-01 8.40461329e-02 2.04578996e-01 1.16616234e-01\\n-1.41610783e-02 7.16277361e-01 -1.05455108e-02 -2.02121451e-01\\n-1.24213815e-01 7.31128529e-02 -2.33276069e-01 -2.55476892e-01\\n4.56899256e-02 -5.62105238e-01 -1.61327407e-01 3.88908267e-01\\n2.45255828e-01 -1.20687716e-01 -1.38321489e-01 3.97101521e-01\\n3.90420817e-02 -3.01579177e-01 -2.88960606e-01 -1.74910463e-02\\n2.33944237e-01 1.89798683e-01 2.33934194e-01 -4.60302949e-01\\n-2.05722041e-02 9.02691483e-03 1.50269493e-01 4.20739353e-01\\n5.08563370e-02 1.51011869e-01 -2.79967021e-02 -9.95412767e-02\\n4.53924567e-01 2.85081323e-02 -1.70697093e-01 -1.71528608e-02\\n7.65945315e-02 -2.40998402e-01 -4.28655744e-01 1.08503632e-01\\n-9.36032012e-02 -2.36684576e-01 3.80872041e-02 1.20046511e-01\\n6.61455318e-02 -5.93762994e-02 -5.32872736e-01 -1.81030214e-01\\n-3.60207736e-01 1.02999046e-01 3.12972814e-04 -5.77941418e-01\\n1.26363561e-02 -5.09075746e-02 -5.46884060e-01 2.11529955e-01\\n1.01565942e-02 -1.14195216e-02 2.35447630e-01 1.09671287e-01\\n-1.16823696e-01 -8.98106769e-02 1.64494187e-01 1.89219713e-01\\n-2.87388355e-01 -2.38597095e-01 -5.57237044e-02 -9.99749541e-01\\n9.55764800e-02 8.17667693e-02 -1.71285987e-01 3.01404446e-02\\n1.07278191e-02 -7.37914801e-01 1.39817327e-01 -3.47168446e-01\\n-1.49594367e-01 -2.54796930e-02 -2.17392191e-01 -3.73441786e-01\\n6.55198768e-02 -3.29482369e-02 -2.67293245e-01 3.49238217e-01\\n-3.66197944e-01 3.40663075e-01 -4.50974964e-02 2.01004408e-02\\n9.27205756e-02 -2.21489295e-01 1.81136861e-01 -1.12962678e-01\\n-4.42471981e-01 -2.51401871e-01 -3.08267742e-01 -2.53633678e-01\\n-2.21125893e-02 -3.67434502e-01 -1.23770900e-01 3.94412614e-02\\n4.45771396e-01 1.43392310e-01 -1.87875271e-01 -1.16049357e-01\\n-2.74144113e-02 -4.77848291e-01 1.38263285e-01 -1.64959133e-01\\n3.70795056e-02 -2.11060777e-01 2.80568957e-01 -6.54495358e-02\\n2.63695240e-01 -3.42901349e-01 6.10882401e-01 -2.41967693e-01\\n-4.29100722e-01 -1.48699805e-01 9.58679244e-02 1.77848786e-01\\n3.44269365e-01 -3.43600005e-01 6.51866123e-02 2.84224123e-01\\n8.71548504e-02 2.02386100e-02 2.67932177e-01 -2.11893380e-01\\n-1.35363072e-01 2.35245213e-01 -5.13063669e-01 1.48185089e-01\\n8.29711676e-01 2.20413655e-01 2.21491590e-01 1.77120671e-01\\n1.23312965e-01 3.59576344e-01 4.08321738e-01 -6.92100599e-02\\n-4.19813097e-02 3.40069830e-01 1.35639489e-01 -5.50942063e-01\\n-1.37065917e-01 -1.49925217e-01 -5.33976033e-02 -2.98083067e-01\\n6.56088829e-01 3.22136045e-01 -3.94684285e-01 -3.33503366e-01\\n-1.96384579e-01 -1.86412096e-01 4.01673675e-01 5.66398911e-03\\n-1.46571666e-01 -9.02745500e-02 4.06370163e-01 -3.21017280e-02\\n3.62719357e-01 5.07876277e-01 -1.69476703e-01 -2.88130701e-01\\n-6.33474588e-02 2.60850579e-01 1.71289295e-02 5.32063127e-01\\n-1.28504187e-01 1.84178144e-01 5.98905273e-02 1.53362095e-01\\n-1.79759219e-01 -2.22435854e-02 1.97355300e-01 1.35769308e-01\\n1.77023441e-01 1.85824305e-01 4.91914928e-01 4.51744378e-01\\n1.67134315e-01 3.68182361e-01 3.32414985e-01 -5.02880365e-02\\n3.76617372e-01 6.37455285e-01 3.32440674e-01 8.64446983e-02\\n3.05770375e-02 3.68129052e-02 3.83531414e-02 -2.39207949e-02\\n2.35514849e-01 4.19595778e-01 1.15671478e-01 8.14598680e-01\\n2.54569739e-01 3.90959740e-01 6.95160985e-01 -6.84908450e-01\\n-4.00667071e-01 -1.87409986e-02 4.80772972e-01 -3.93209159e-01\\n1.47944435e-01 1.62374109e-01 -1.77399591e-01 3.46289277e-01\\n-5.33585489e-01 -2.05511525e-01 3.20605040e-02 -7.02608302e-02\\n9.03806835e-02 -1.19226202e-01 -6.53574541e-02 8.21389556e-02\\n-6.98537380e-02 -1.87525392e-01 -2.07739860e-01 -1.95940003e-01\\n-2.87689507e-01 1.23787194e-01 9.41040814e-02 -4.03273441e-02\\n3.91049311e-02 -2.45344371e-01 -1.41246513e-01 7.74136372e-03\\n4.34300631e-01 -9.20285881e-02 -1.38275161e-01 -1.50976107e-01\\n1.51041716e-01 2.42315859e-01 6.33151054e-01 -3.80161032e-02\\n1.54961273e-01 -1.18170179e-01 -1.57036677e-01 4.37915660e-02\\n1.39799505e-01 9.70572531e-02 1.39814332e-01 4.29721117e-01\\n-3.15538436e-01 -2.32771307e-01 1.13981515e-01 2.28204206e-01\\n-3.92206669e-01 -1.17909670e-01 -1.23574615e-01 1.37190670e-01\\n-5.93758002e-03 2.19976395e-01 -2.25787595e-01 -8.01794901e-02\\n-1.92397475e-01 -5.77941179e-01 3.31095576e-01 -2.26138592e-01\\n-2.32834786e-01 -3.07113156e-02 3.41755867e-01 2.66180575e-01\\n-1.36216134e-01 4.48379628e-02 -6.68076426e-02 1.87626749e-01\\n1.64654795e-02 3.57991278e-01 -1.76944524e-01 -1.47745281e-01\\n-3.46171021e-01 2.73418307e-01 1.50377266e-02 2.00730562e-01\\n-4.35493886e-03 3.80385131e-01 -8.43160674e-02 8.10263380e-02\\n2.24465311e-01 -6.25960231e-02 -3.17475826e-01 -2.43184552e-01\\n-2.79021829e-01 -7.09466264e-02 8.55661929e-02 -1.69684842e-01\\n2.68610001e-01 -4.29979682e-01 -1.55944452e-01 -2.83360839e-01\\n-1.70483828e-01 -4.22639132e-01 -1.20198593e-01 -1.72344632e-02]]',\n", + " 'job_description': \"If you’re looking for a position that brings personal growth and fulfillment then Vicara is the right place for you. For you to thrive in this environment; you should be dynamic, willing to collaborate with our clients and provide solutions based on the understanding of customer needs. We are looking to fill this position urgently and this position is only open to Swiss and EU citizens or with a valid work permit. Our requirement is for a Cloud Business Intelligence and Data Warehouse Expert with strong analytical and problem-solving skills, along with interpersonal skills to work across the organization and with external partners to drive forward projects and recommendations. Regional travel maybe required for this position. Responsibilities: Ability to provide innovative, performance ready and integrated cloud based BI technical solutions for business problems Understand business requirements and owning technical design and solution and migrating traditional BI setups to the cloud (such as Azure) Responsible for various project requirements, from high level business requirements to detailed functional and non-functional specifications. The individual will also be assisting in mock-up / design of solution, and managing the requirements for any changes and conflicting prioritization The individual will have to serve as the Lead Designer of all ETL activities for projects and work closely with project Business Analyst and Data Modeler to ensure that the end to end designs meet the business and data requirements Coordinating with teams across different functions/platforms and streams for multiple projects Own the roadmap to deliver scalable and robust data infrastructure and BI capabilities across all operations Maintain a strong understanding of evolving data warehouse and provide technical guidance across all operations Mandatory Qualifications and Skills: Master's degree in Computer Science or Information Science, or related field 5+ years’ experience in a data architecture role as leading senior technical staff in demanding customer contexts 5+ years in the areas of Data Quality, Data Governance, data integration (ETL, ELT) and Data Security Experience with Enterprise workload migration to one or more Cloud platforms Experience with Azure, Azure SQL Data Warehouse, BI tools on Azure Advanced knowledge of data architecture principles, methods, and techniques Demonstrated awareness of new systems technologies and how they could be leveraged to benefit customers and new business strategies Experience with BI concepts (i.e metadata and master data management, data standardization, data pipeline, and integration of data silos) and data warehousing methodologies (i.e dimension models, data marts, and normalized repositories) Expert knowledge of OLAP, modeling tools (such as Erwin and/or Rational Rose), business intelligence tools and ETL tools (Informatica, Data Stage, Data Manager, SSIS, or other) Excellent Data Profiling abilities Good knowledge in Reporting tools Expert knowledge of SQL and related query and procedure languages Experience in managing data warehouse project and lifecycle initiatives Strong verbal & written communication skills in English Excellent interpersonal and presentation skills with a proven ability to effectively communicate in both written and verbal formats across various levels of management and peer Able to work with divergent and virtual team with a proven ability to influence Ability to work with resources across the region Action orientated with ability to work quickly and efficiently in a fast-paced environment Possess the qualities, business acumen and discipline to ensure business and systems architecture alignment Preferred Skills: Subject matter expertise in Financial Services Experience with Big Data and NoSQL technologies\",\n", + " 'soft_skills': '[\"Collaboration\", \"Coordinating\", \"Management\", \"Problem Solving\", \"Communications\", \"Operations\", \"Working Quickly\", \"Virtual Teams\", \"Business Acumen\", \"Integration\", \"Presentations\", \"Innovation\", \"Prioritization\", \"Positivity\", \"Written Communication\", \"Action Oriented\"]',\n", + " 'hard_skills': '[\"Data Architecture\", \"Data Warehouse Systems\", \"Tooling\", \"NoSQL\", \"Micro Systems Technologies\", \"Business Intelligence Tools\", \"Computer Science\", \"Analytics\", \"Metadata\", \"Data Security\", \"Azure Data Factory\", \"Data Management\", \"Staging\", \"Business Strategies\", \"Data Integration\", \"Financial Services\", \"Data Warehousing\", \"Activism\", \"Apex Data Loader\", \"Maintainability\", \"E (Programming Language)\", \"Azure Web Apps\", \"Systems Architecture\", \"Data Governance\", \"Cloud Platform System\", \"Data Mart\", \"Extract Transform Load (ETL)\", \"Functional Specification\", \"Data Warehouse Appliance\", \"Toad Data Modeler\", \"Business Intelligence\", \"Mock Ups\", \"Patentable Subject Matter\", \"Business Requirements\", \"Information Sciences\", \"SQL Server Integration Services (SSIS)\", \"Front End Design\", \"Logical Data Models\", \"Personalization\", \"Scalability\", \"Big Data\", \"High-Level Architecture\", \"Clinical Data Warehouse\", \"Clinical Data Management\", \"Data Infrastructure\", \"Technical Solution Design\", \"Erwin (Data Modeling Software)\", \"Dimensioning\", \"Language Experience Approach\", \"Resourcing\", \"Amazon Data Pipeline\", \"Informatica\", \"SQL (Programming Language)\", \"Profiling (Computer Programming)\", \"Reporting Tools\"]',\n", + " 'languages': \"['English', 'Moldavian']\"},\n", + " {'company_id': '86',\n", + " 'job_title': 'full stack web application engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Security Services',\n", + " 'website': 'www.open-systems.com',\n", + " 'jobdescription_embedded': '[[-3.17957133e-01 3.46389115e-01 3.89491558e-01 -3.21595445e-02\\n5.47099888e-01 -2.52057105e-01 1.19775601e-01 4.27356750e-01\\n-2.69577876e-02 -4.45008129e-01 -1.14103749e-01 -2.02499047e-01\\n-8.60764459e-02 6.90063164e-02 1.94518670e-01 3.55485588e-01\\n3.41190726e-01 1.12909868e-01 -1.41569227e-01 4.89856005e-01\\n4.27033752e-02 -1.30995095e-01 4.85031717e-02 7.52265155e-01\\n4.26227689e-01 -3.18181980e-03 -8.98265168e-02 2.08703224e-02\\n-2.44165137e-01 -2.73249954e-01 3.26298892e-01 -1.04821555e-01\\n-7.59880915e-02 -4.93569523e-01 7.06598237e-02 6.10551722e-02\\n-2.48633206e-01 -9.26238373e-02 -1.26214534e-01 2.20894963e-01\\n-5.46437979e-01 -2.03694150e-01 9.57597792e-02 -4.09916788e-02\\n-1.17594033e-01 -3.00222963e-01 1.58938259e-01 -7.88319390e-03\\n1.69749066e-01 8.69346112e-02 -5.74281931e-01 2.77996898e-01\\n-2.53192782e-01 -2.76665032e-01 4.04574513e-01 5.27458131e-01\\n-1.04940504e-01 -4.91359204e-01 -4.40244555e-01 -3.21139395e-01\\n4.49523218e-02 -3.41433920e-02 1.06954977e-01 -4.54942495e-01\\n2.10506827e-01 1.47364080e-01 9.09315422e-02 4.18028682e-01\\n-7.96747327e-01 -1.23051666e-01 -2.11931065e-01 4.83873719e-03\\n-3.40003461e-01 -1.12704732e-01 -2.32655272e-01 -7.71910250e-02\\n-1.51445717e-01 3.14400613e-01 -8.78645480e-02 8.16881210e-02\\n-2.42152691e-01 4.06859607e-01 -1.96380913e-01 3.39642167e-01\\n2.24399850e-01 1.33446842e-01 1.50234178e-01 3.55518043e-01\\n-3.76299322e-01 5.47876894e-01 2.43909862e-02 -1.90546989e-01\\n2.35892311e-01 2.05133080e-01 4.93840456e-01 -1.20741732e-01\\n2.72940546e-01 1.05226330e-01 -3.37884486e-01 3.16735029e-01\\n2.26761714e-01 -2.65390307e-01 2.74141170e-02 -1.15541853e-01\\n1.60161871e-02 1.23560103e-02 7.36827776e-02 1.89412162e-01\\n-2.96290547e-01 4.35608566e-01 2.17686459e-01 -2.42853463e-01\\n-1.70292541e-01 -4.95200157e-01 -6.64721355e-02 9.77687687e-02\\n1.03903778e-01 4.13565561e-02 1.20665722e-01 4.76577319e-02\\n2.13716090e-01 7.07028359e-02 1.28067777e-01 7.54609525e-01\\n-3.33775617e-02 -4.79815081e-02 -1.86167181e-01 2.25350335e-01\\n9.84847844e-02 -3.47499192e-01 1.01765737e-01 2.47770607e-01\\n1.35233268e-01 -1.61645174e-01 -2.70701975e-01 4.28736508e-01\\n-4.04644310e-02 -1.50215998e-01 -3.39992046e-01 3.33525509e-01\\n-2.42999941e-02 -3.92903835e-01 6.74369037e-01 1.46597683e-01\\n2.44624674e-01 4.66031842e-02 1.14331000e-01 -1.14503413e-01\\n-1.13514826e-01 2.12754190e-01 3.90690453e-02 1.81982353e-01\\n-3.00874203e-01 -2.41636962e-01 -2.58203894e-01 1.78066298e-01\\n-3.48155260e-01 2.64073014e-01 -4.20289263e-02 -1.06782876e-01\\n3.09588611e-01 5.90845523e-03 -3.68086725e-01 3.67620319e-01\\n-1.05782501e-01 1.15263246e-01 -5.34173846e-02 3.71192694e-01\\n-1.09338857e-01 3.00737083e-01 -2.18968000e-02 7.64149101e-03\\n5.54143012e-01 1.35591924e-01 1.07178427e-01 -9.01777484e-03\\n3.05944234e-01 1.64379794e-02 7.41080418e-02 2.71832701e-02\\n-7.85640955e-01 1.17021069e-01 -4.26308140e-02 -2.20000520e-01\\n9.34198424e-02 -2.02861633e-02 2.75185525e-01 -3.19841266e-01\\n-9.91580412e-02 -1.09273158e-01 -4.28054124e-01 -2.76276737e-01\\n-1.65073320e-01 -9.06704646e-03 3.69913608e-01 -4.40424442e-01\\n-1.96099818e-01 1.81671157e-01 -5.52416444e-01 -3.07945460e-02\\n2.31437281e-01 1.81865767e-01 1.43393546e-01 7.64940903e-02\\n-1.46329716e-01 -5.71325958e-01 -5.29930890e-02 -4.36371535e-01\\n-3.22329074e-01 1.02476284e-01 -3.54254812e-01 1.97251499e-01\\n7.99020454e-02 3.46084908e-02 -6.43852875e-02 7.43075758e-02\\n-1.01185657e-01 -4.43144664e-02 7.26245195e-02 1.54840918e-02\\n2.52201259e-01 4.69018854e-02 -3.78696471e-01 4.77530539e-01\\n-9.12952051e-02 5.21065533e-01 5.06401509e-02 -7.02111542e-01\\n6.05801105e-01 4.07491505e-01 -7.68442750e-02 -4.45064068e-01\\n5.72859585e-01 -2.93170631e-01 -6.84666485e-02 1.18993104e-01\\n-4.61221486e-01 -3.32666427e-01 2.01899692e-01 -2.62311399e-01\\n-2.69756168e-01 4.33777541e-01 4.47497107e-02 1.28752500e-01\\n3.09070170e-01 -2.55755067e-01 -1.89371314e-02 1.10282086e-01\\n2.56098453e-02 -1.69690162e-01 -4.68102574e-01 -3.34036872e-02\\n-1.05558939e-01 -5.02024770e-01 -2.28240520e-01 -3.52649599e-01\\n-2.10032925e-01 -2.88501769e-01 -2.20751137e-01 2.11570054e-01\\n3.58125597e-01 1.27706051e-01 -3.27368937e-02 1.53566003e-01\\n-1.69241130e-01 -7.30481029e-01 4.84158099e-02 1.21620789e-01\\n3.93260062e-01 1.35030329e-01 7.89637640e-02 -1.39907718e-01\\n4.03648354e-02 6.60474122e-01 -2.35167861e-01 -1.80679515e-01\\n1.87646702e-01 1.55477181e-01 -2.75418647e-02 -1.48216262e-01\\n1.15306802e-01 3.75697494e-01 -3.03794801e-01 3.99204195e-02\\n-6.01590239e-02 -9.78769436e-02 4.65614825e-01 -1.12096399e-01\\n-3.48604530e-01 -1.94803149e-01 -3.80763076e-02 1.13495745e-01\\n-5.19424558e-01 -1.92997321e-01 5.56229889e-01 1.84489548e-01\\n1.76611036e-01 1.79377154e-01 2.69371003e-01 -5.38812615e-02\\n-1.92319259e-01 -4.49233204e-01 1.52706459e-01 1.85660064e-01\\n3.87645885e-02 1.49512947e-01 -1.10662237e-01 -6.07183337e-01\\n-3.13286400e+00 -1.14501432e-01 1.86877415e-01 -2.77484596e-01\\n1.41552925e-01 3.03500071e-02 9.89959165e-02 -9.19869691e-02\\n-2.32641295e-01 -2.02264069e-04 -2.08785906e-01 -1.63579240e-01\\n2.25899354e-01 2.19554275e-01 6.82780892e-02 1.44386515e-01\\n2.50501931e-01 -3.54680568e-01 -7.91747048e-02 3.53798985e-01\\n-2.09628493e-01 -6.58907890e-01 1.65987730e-01 -1.23932049e-01\\n2.65876293e-01 3.29649925e-01 -3.39721620e-01 -1.53539389e-01\\n-1.12494364e-01 -1.77220985e-01 1.70867324e-01 -2.61521429e-01\\n-1.54491186e-01 2.21460700e-01 2.02100933e-01 -6.65310472e-02\\n1.61021203e-01 -3.54507089e-01 -2.28864610e-01 -4.85336155e-01\\n2.00379089e-01 -5.86918950e-01 -8.24745521e-02 -1.90911263e-01\\n6.94261730e-01 -1.94824278e-01 1.19847812e-01 6.07037507e-02\\n1.37646064e-01 2.34228656e-01 4.71794605e-02 9.07998309e-02\\n-1.04215816e-01 -3.03033203e-01 1.19026634e-03 -1.60643101e-01\\n5.68521082e-01 3.81689638e-01 -1.87572062e-01 -1.93162709e-01\\n1.54592827e-01 -3.23764056e-01 -3.34773690e-01 -1.68628871e-01\\n-4.69333120e-02 -2.53888488e-01 -7.32491434e-01 -3.33992243e-01\\n-1.54034451e-01 -1.60925210e-01 -1.10497199e-01 7.51931727e-01\\n-3.79072875e-01 -3.37486833e-01 -9.05068964e-03 -6.13309205e-01\\n2.02447772e-01 -2.41526768e-01 -1.35589652e-02 -2.76897520e-01\\n-2.04679877e-01 -4.70768780e-01 2.75579141e-03 7.46099651e-02\\n-7.73346275e-02 -2.33702704e-01 1.10456750e-01 -9.95911732e-02\\n-2.12389037e-01 -5.48683405e-01 4.08601940e-01 1.95013434e-01\\n2.26209521e-01 1.32945120e-01 2.82616109e-01 -9.96729136e-02\\n3.22639108e-01 -6.87282532e-02 -5.49646765e-02 -3.37978899e-01\\n1.62868485e-01 -1.87516194e-02 4.86517251e-01 -2.40476042e-01\\n-5.25436476e-02 2.78704077e-01 -2.48368323e-01 -1.22600950e-01\\n3.76673907e-01 -1.46528380e-02 -3.22154677e-03 -1.90073922e-01\\n3.27841878e-01 -4.24081594e-01 -1.61813736e-01 1.64856791e-01\\n9.25865248e-02 6.25278652e-01 1.81071293e-02 -4.38238144e-01\\n-1.64067969e-01 4.84205157e-01 8.74420181e-02 1.19034842e-01\\n-1.66575283e-01 1.06102586e-01 -1.69412151e-01 1.84004202e-01\\n1.41489848e-01 -1.84998080e-01 -2.53216773e-01 -7.63335004e-02\\n-1.14709005e-01 3.59787464e-01 2.77822167e-01 1.42149165e-01\\n-5.74641638e-02 -5.22582889e-01 -1.23194441e-01 1.99648932e-01\\n1.24138914e-01 4.82731998e-01 2.92330747e-03 -2.09343746e-01\\n-8.60012770e-02 4.03038114e-01 -1.07682832e-01 1.96464971e-01\\n-2.66828775e-01 1.09435424e-01 -5.08722842e-01 -2.24511251e-01\\n-3.19141299e-01 -3.28222126e-01 3.56741622e-02 3.48222464e-01\\n1.85456514e-01 -8.73688981e-03 2.66966093e-02 -3.44979525e-01\\n2.54003346e-01 1.94488287e-01 1.06250808e-01 1.61319092e-01\\n-5.43124117e-02 4.48600531e-01 3.42440605e-02 -2.58526772e-01\\n-1.44315124e-01 -2.37494670e-02 -2.26721421e-01 -1.31833866e-01\\n1.33627787e-01 -5.76189935e-01 -1.45383716e-01 3.22851747e-01\\n6.84645995e-02 -2.83004224e-01 -1.33953989e-01 2.10355148e-01\\n2.06986605e-03 -2.95229852e-01 -2.95636714e-01 2.90269870e-02\\n2.89142996e-01 2.67953780e-02 3.43758136e-01 -3.94800007e-01\\n-7.77711421e-02 3.00285202e-02 -5.75258024e-02 3.75425071e-01\\n-7.86335394e-02 3.03283446e-02 -2.51882166e-01 -1.72195703e-01\\n4.29914951e-01 -7.52227604e-02 -1.11945435e-01 7.81935230e-02\\n9.73584801e-02 -1.50054157e-01 -4.91888344e-01 1.19270407e-01\\n-1.38712302e-01 -7.83049166e-02 3.04556955e-02 6.15339205e-02\\n7.04397559e-02 1.09279469e-01 -5.24496675e-01 -2.09913269e-01\\n-2.54649192e-01 -3.27235572e-02 1.90025628e-01 -4.69346881e-01\\n-9.09959227e-02 -5.52273057e-02 -6.18522227e-01 2.38586769e-01\\n-3.16056460e-01 -6.06192090e-02 2.37740174e-01 8.90933052e-02\\n-3.04333270e-01 -1.04371428e-01 1.79925412e-02 2.74827629e-01\\n-3.92499000e-01 -3.11261356e-01 2.42314041e-02 -9.76937711e-01\\n2.94974208e-01 -1.00287952e-01 -1.79324657e-01 3.25834900e-02\\n-1.41378924e-01 -6.97744191e-01 2.50876881e-02 -2.79181689e-01\\n-1.15042403e-01 -3.51326726e-02 -2.04039142e-01 -3.63788098e-01\\n3.21779400e-02 -1.82736635e-01 -3.40582192e-01 3.87623101e-01\\n-3.33451599e-01 2.37268642e-01 -9.60848853e-02 7.21412599e-02\\n-1.30347461e-02 -3.10815781e-01 1.09990388e-01 -4.08573955e-01\\n-4.00553018e-01 -2.61758447e-01 -3.02531093e-01 -2.63614774e-01\\n-4.73727919e-02 -3.47075433e-01 -2.57021468e-02 1.62009239e-01\\n2.27930993e-01 -9.98363458e-03 -8.04812312e-02 -3.19451869e-01\\n8.27896819e-02 -4.75351155e-01 6.36880398e-02 -1.48393465e-02\\n-1.86869642e-03 -1.08936422e-01 8.40525925e-02 1.62282929e-01\\n2.52297789e-01 -3.55913818e-01 2.94258505e-01 -4.25280601e-01\\n-2.90224582e-01 -6.83074817e-02 -1.05769441e-01 -1.29082110e-02\\n3.00846905e-01 -4.91198272e-01 2.23449785e-02 3.73590678e-01\\n1.12625800e-01 8.67099017e-02 1.77705556e-01 -6.49443045e-02\\n-1.02254115e-01 2.86103904e-01 -3.14258784e-01 1.36403978e-01\\n7.75529206e-01 9.81408805e-02 6.92448067e-03 3.12625974e-01\\n1.22414492e-01 4.13226575e-01 4.88337934e-01 3.52014933e-04\\n-1.44282743e-01 1.94699198e-01 1.14453651e-01 -5.26063681e-01\\n-8.14016014e-02 6.43597320e-02 -2.09092230e-01 -3.36164057e-01\\n6.69802368e-01 4.14263695e-01 -4.57418740e-01 -2.41373301e-01\\n-1.38956279e-01 -1.81377560e-01 1.06757239e-01 -6.73089921e-02\\n-1.37804328e-02 -1.14203028e-01 5.01829922e-01 -5.63766435e-03\\n1.72867507e-01 5.98401845e-01 -9.26457644e-02 -4.24071789e-01\\n-1.02994695e-01 2.27244094e-01 1.31103089e-02 4.98054624e-01\\n-1.60583213e-01 2.41314918e-01 2.11817026e-02 1.59914345e-01\\n-1.04281180e-01 1.72808826e-01 5.19606620e-02 1.77664697e-01\\n7.32279867e-02 1.83608159e-01 5.06464124e-01 4.42793936e-01\\n3.00168693e-01 4.43760365e-01 2.35433146e-01 2.29846947e-02\\n5.31396151e-01 4.08648819e-01 4.97671515e-01 1.52437434e-01\\n6.08255565e-02 2.06853241e-01 2.17744365e-01 7.78767839e-02\\n3.70430946e-01 2.86156893e-01 8.90241712e-02 8.81004512e-01\\n3.42060626e-01 2.25520417e-01 7.98166037e-01 -6.52752697e-01\\n-3.75869304e-01 3.90703119e-02 4.31025714e-01 -4.74906176e-01\\n-5.58187664e-02 5.70952892e-02 -1.24275073e-01 3.14276159e-01\\n-5.57963073e-01 -2.32347578e-01 -5.93300611e-02 2.17000827e-01\\n1.49198808e-02 -2.02581167e-01 -2.23299891e-01 3.47343013e-02\\n-1.26407027e-01 -1.38148353e-01 -4.44794595e-01 -1.67534888e-01\\n-2.28633046e-01 -6.33168966e-02 -8.13389570e-02 -2.03161627e-01\\n5.84210306e-02 -3.88770878e-01 -4.07264195e-02 -9.29877236e-02\\n2.98769116e-01 -4.53008562e-02 -6.50997739e-03 -9.11024120e-03\\n3.44113141e-01 2.25517541e-01 6.37861669e-01 1.69867147e-02\\n7.08297417e-02 -2.75487095e-01 -2.02902600e-01 1.60759270e-01\\n5.29393815e-02 1.78294584e-01 6.96251616e-02 2.16959298e-01\\n-3.35007817e-01 -1.98974237e-01 1.43792942e-01 3.77561033e-01\\n-4.76269126e-01 -2.31554881e-02 -9.83069241e-02 2.37876683e-01\\n3.16139683e-02 1.14257373e-01 -1.43238261e-01 -2.60084327e-02\\n-1.63131550e-01 -5.09828031e-01 3.25618684e-01 -4.60752398e-02\\n-9.06016901e-02 6.81380779e-02 3.07196707e-01 2.04111695e-01\\n-2.25322306e-01 5.73124625e-02 7.86416158e-02 7.46644512e-02\\n1.10234201e-01 3.60729367e-01 -8.97766650e-02 -3.19468617e-01\\n-2.96407491e-01 1.87342674e-01 -1.46991193e-01 -4.61427383e-02\\n-3.37555222e-02 3.37481409e-01 -5.64520098e-02 9.76285711e-02\\n3.58092904e-01 -4.46299836e-02 -2.66143739e-01 -2.66801000e-01\\n-1.53056338e-01 -2.55317211e-01 -4.51381430e-02 -3.47080268e-02\\n1.95612729e-01 -4.55677122e-01 -1.10574611e-01 -9.88458768e-02\\n-2.49608960e-02 -2.35832348e-01 -2.35158112e-02 -1.15717314e-01]]',\n", + " 'job_description': 'Join our team of web application developers and face the challenge of making IT security visible, understandable, and beautiful. As a Web Application Engineer, you will extend and improve the Mission Control Portal and thus help our customers to better manage and understand their global network security setups. Together with service engineers, UI designers, and product owners you discuss, shape, specify, and implement solutions that emphasise the value of strong IT security services, ease the operation of thousands of devices deployed across the planet, and provide intelligent insights into security-relevant data and processes. As part of the Mission Control team, you share operational duties with your colleagues. We expect you to bring the following skills to the table: ETH, university, or FH degree in Computer Science Experience in web application development on the client side (JavaScript, CSS3, HTML5, React) and the server side (Java, Spring) Familiarity with SQL and relational databases Basic knowledge of build and deployment environments (Atlassian Bamboo, Maven, Tomcat) Fluent in English and preferably German Furthermore, we expect basic knowledge and a high motivation to participate a coached training program in these areas: Knowledge of Linux operating systems Understanding networking in general and the major internet protocols Knowledge of network security concepts and practices You will join one of our small development teams that works with agile methods. The team will rely on you to focus on its goals and efforts as a team player while being able to work independently. At Open Systems we are passionate about what we do. We work in an environment in which innovative solutions, rapid development times, creativity and open communication are practiced and continuously fostered. The pursuit of technical advancement is at the center of our attention. You will be based at our office in Zurich (CH) and will get the opportunity to work out of our office in Redwood City (US) for a few months. We look forward to receiving your complete online application (letter of motivation, CV, diplomas/reference letters/transcript of records. Compress your application into two attachments). For further questions and inquiries about applications, please feel free to contact Helena Grimm at +41 58 100 10 10.',\n", + " 'soft_skills': '[\"Management\", \"Communications\", \"Operations\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Agility\", \"Computer Science\", \"Compression\", \"Internet Protocols\", \"Atlassian Bamboo\", \"European Training Programs\", \"Rapid Application Development\", \"Linux\", \"HTML5\", \"Server-Side\", \"React.js\", \"Operating Systems\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Network Security\", \"Small Business Development\", \"Receivables\", \"Relational Databases\", \"Centering\", \"Network Security Services\", \"Java (Programming Language)\", \"Inquiry\", \"SQL (Programming Language)\", \"Web Application Development\", \"Apache Tomcat\", \"Controllability\", \"Open Systems SnapVault\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '108',\n", + " 'job_title': 'business analyst - application support analyst',\n", + " 'location': 'Neuchâtel',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.springasia.com',\n", + " 'jobdescription_embedded': '[[-7.98924267e-02 2.59289831e-01 5.11253893e-01 -1.63195536e-01\\n5.41876137e-01 -6.50344864e-02 5.36384843e-02 4.95411247e-01\\n-8.99371356e-02 -4.07855600e-01 -2.79204804e-03 -1.95963010e-01\\n1.08054146e-01 1.84690446e-01 6.11677282e-02 3.77246529e-01\\n2.71335125e-01 1.28439441e-01 -1.46379501e-01 2.17710495e-01\\n9.71265659e-02 -2.04063430e-01 3.18544149e-01 6.75113976e-01\\n4.77256864e-01 2.31007412e-02 -1.12440735e-02 -3.01566254e-02\\n-1.06329560e-01 -3.68513316e-01 4.60609674e-01 -5.54353185e-03\\n-7.52649307e-02 -2.76399463e-01 8.18261877e-02 9.52620525e-03\\n-1.25392541e-01 -1.50145337e-01 -2.02265933e-01 7.00096786e-02\\n-5.86391687e-01 -2.58492351e-01 -1.73578128e-01 -1.94698386e-02\\n-2.97244221e-01 -3.52446437e-01 -4.82900925e-02 -2.25767583e-01\\n1.95709676e-01 3.25830169e-02 -4.51255113e-01 2.97174364e-01\\n-3.82982999e-01 -2.59264737e-01 2.50475675e-01 6.25597775e-01\\n-1.71111494e-01 -3.92183036e-01 -5.78981042e-01 -2.41885290e-01\\n1.67432681e-01 -1.93347365e-01 2.19293963e-02 -2.73001313e-01\\n3.05080920e-01 1.29748940e-01 1.14961706e-01 2.56365985e-01\\n-7.90543258e-01 -2.43340302e-02 -3.43085349e-01 -2.36545518e-01\\n-1.62968606e-01 -9.80864391e-02 -2.22788051e-01 -1.34469196e-01\\n-1.37229472e-01 4.65027630e-01 1.25252023e-01 2.78254114e-02\\n-3.73945497e-02 2.90234238e-01 -2.77456701e-01 3.54456693e-01\\n1.06741123e-01 3.03979814e-01 1.45118743e-01 1.71867132e-01\\n-1.85761973e-01 4.47866678e-01 1.71011537e-01 -3.35191816e-01\\n2.12033048e-01 9.09468979e-02 4.04881150e-01 -1.87102541e-01\\n2.29882702e-01 1.98098961e-02 -3.42608273e-01 3.71331573e-01\\n3.54826421e-01 -3.00808430e-01 7.84931406e-02 -1.35568857e-01\\n-1.81999784e-02 -2.68950369e-02 1.39047176e-01 1.78426102e-01\\n-3.02507311e-01 4.60028917e-01 4.94900867e-02 -1.90250203e-01\\n-6.15063570e-02 -4.00417835e-01 -8.60558823e-02 2.25734003e-02\\n8.27145055e-02 1.52719736e-01 1.44878596e-01 2.28450015e-01\\n2.31984034e-01 -1.29117161e-01 4.61059436e-02 7.62308002e-01\\n-8.12031031e-02 8.96027908e-02 -2.83116877e-01 2.51733482e-01\\n-8.32209811e-02 -2.57841587e-01 1.57165483e-01 1.99877009e-01\\n1.14249729e-03 -1.51403844e-01 -1.27003714e-01 2.08152458e-01\\n-7.29180872e-02 -3.09326887e-01 -2.57022738e-01 2.19715357e-01\\n3.54448557e-02 -2.09024459e-01 5.46122849e-01 -4.54814248e-02\\n1.78580672e-01 -5.84518500e-02 -2.02156045e-02 -1.00779332e-01\\n-7.35567063e-02 1.46995693e-01 5.59131801e-02 5.71952537e-02\\n-2.33673826e-01 -2.17597798e-01 -2.57218152e-01 2.17550844e-02\\n-3.47150475e-01 7.69870579e-02 -1.05707988e-01 -1.07805200e-01\\n2.97659069e-01 -4.86813895e-02 -8.85978118e-02 4.41497803e-01\\n6.81825876e-02 1.24072298e-01 -1.22382361e-02 2.18790159e-01\\n-2.05779955e-01 2.72613376e-01 -7.57139921e-02 -1.10984497e-01\\n5.91628850e-01 -8.20761621e-02 -1.21793686e-03 -5.84570877e-02\\n2.65924007e-01 1.01073965e-01 4.35245149e-02 7.09008574e-02\\n-5.98314047e-01 3.73772770e-01 -5.46989813e-02 -3.85149680e-02\\n1.76446423e-01 -1.33124828e-01 2.54455358e-01 -1.50395840e-01\\n7.04003349e-02 7.26733208e-02 -2.59342790e-01 -2.97883123e-01\\n-1.67111009e-01 -2.37446368e-01 2.75469393e-01 -4.09321964e-01\\n-1.16294481e-01 1.87024981e-01 -4.83416051e-01 1.01419486e-01\\n2.00232744e-01 2.07871273e-01 1.57517493e-01 1.87758595e-01\\n-2.13158146e-01 -2.78174639e-01 2.17597589e-01 -2.77160108e-01\\n4.73389257e-04 2.40825847e-01 -1.46028355e-01 2.78637946e-01\\n1.77592814e-01 4.63477820e-02 -1.30877256e-01 3.81055363e-02\\n7.62739265e-03 -6.20929524e-02 2.16815442e-01 2.85425056e-02\\n3.06444615e-01 6.60696849e-02 -3.73005211e-01 3.28473985e-01\\n-1.49954826e-01 5.10130107e-01 -1.31402081e-02 -9.78403449e-01\\n3.07965159e-01 3.02256048e-01 7.43931904e-02 -2.11438477e-01\\n7.26615131e-01 -1.37031063e-01 -6.21670932e-02 1.81469589e-01\\n-4.32785034e-01 -4.38685834e-01 1.88053966e-01 -1.93247840e-01\\n-2.23518670e-01 4.32121128e-01 7.30948374e-02 1.94255084e-01\\n9.42110494e-02 3.34045216e-02 -2.48274952e-01 1.31222621e-01\\n1.13273244e-02 -1.27347916e-01 -4.79466617e-01 -2.68873841e-01\\n-1.09296910e-01 -4.24703360e-01 -1.08062841e-01 -4.72294092e-01\\n-2.43403137e-01 -2.23537639e-01 -2.02321038e-02 7.37641081e-02\\n2.08996996e-01 1.17070638e-01 1.00070596e-01 2.24544302e-01\\n-2.65068591e-01 -5.08855939e-01 -2.02704053e-02 2.67819196e-01\\n2.25794822e-01 1.62689164e-01 1.77619644e-02 6.11115769e-02\\n-1.13532960e-01 7.47612238e-01 -1.33176282e-01 6.83325753e-02\\n2.29049072e-01 3.07138771e-01 7.46914521e-02 -1.23554006e-01\\n9.66506153e-02 2.91159958e-01 -3.15868855e-01 2.36598924e-01\\n-8.39449186e-03 7.60951191e-02 1.89736471e-01 1.98400691e-01\\n-3.48620474e-01 -2.38706350e-01 -1.25665843e-01 9.32488367e-02\\n-5.44840276e-01 -2.66175568e-01 6.81383014e-01 3.16820182e-02\\n7.25592524e-02 2.16726840e-01 3.01087439e-01 -4.45276946e-02\\n-4.29125939e-04 -1.59981221e-01 1.88298702e-01 9.21824798e-02\\n1.50726333e-01 1.31440327e-01 -6.41306490e-02 -7.02000618e-01\\n-3.80704212e+00 -1.42281294e-01 1.30562618e-01 -2.16669187e-01\\n2.65530527e-01 -2.02920839e-01 7.92901516e-02 6.10076152e-02\\n-2.93332309e-01 1.66843478e-02 -2.05057070e-01 -2.03793630e-01\\n2.81725943e-01 1.96156144e-01 1.05186217e-01 3.86720777e-01\\n1.75895765e-01 -2.58535117e-01 9.53703094e-03 4.40447092e-01\\n-2.34167591e-01 -5.86043477e-01 3.01093161e-01 -2.31882520e-02\\n3.35297793e-01 3.91580850e-01 -3.04021597e-01 -6.25082999e-02\\n-1.61756352e-01 -2.05100581e-01 2.47069523e-01 -2.46489212e-01\\n-1.47597760e-01 2.61685342e-01 1.71133846e-01 -1.24095321e-01\\n1.72406226e-01 -5.11024654e-01 -1.19607873e-01 -4.09476906e-01\\n1.24028400e-01 -6.50349140e-01 -9.71165672e-02 1.13761753e-01\\n6.89809084e-01 -3.57772142e-01 -2.94654891e-02 -1.15372939e-02\\n1.24158539e-01 1.96933359e-01 7.96591341e-02 3.93592194e-02\\n-1.00539848e-01 -2.76507646e-01 -3.45253535e-02 3.19250040e-02\\n4.57459569e-01 4.25301224e-01 -1.43165544e-01 -7.62795806e-02\\n-1.92781314e-02 -1.49372131e-01 -5.22970259e-01 -2.26284251e-01\\n-2.14612842e-01 -3.14310968e-01 -5.85163891e-01 -3.48056406e-01\\n-6.42482936e-02 -2.11126372e-01 -1.50802732e-01 3.75272423e-01\\n-2.17984915e-01 -3.30024183e-01 -2.05289736e-01 -3.53669226e-01\\n2.41714865e-01 2.40416266e-02 6.56506792e-03 -1.80272296e-01\\n-3.10425401e-01 -3.66544187e-01 1.77970026e-02 8.62218067e-02\\n1.78041123e-02 -2.62165129e-01 1.05341971e-01 -1.76303163e-02\\n-3.09632838e-01 -5.05125701e-01 4.55966264e-01 2.24633247e-01\\n2.40406349e-01 1.45919502e-01 1.54616728e-01 3.86796854e-02\\n2.38418475e-01 -2.55402625e-01 2.72809551e-03 -4.44108367e-01\\n-9.51500144e-03 4.26706150e-02 4.81598198e-01 -2.07486346e-01\\n1.39602631e-01 -7.85032436e-02 -2.40593642e-01 -1.42798096e-01\\n1.56412542e-01 4.88127172e-02 2.74273634e-01 -3.26643825e-01\\n1.36225194e-01 -7.70054385e-02 -2.63992339e-01 -6.77016973e-02\\n-2.82797385e-02 5.16307175e-01 -2.13080794e-02 -2.90863514e-01\\n-1.43432409e-01 4.21866983e-01 -1.78539827e-01 -5.78832030e-02\\n-3.80438119e-01 6.39445987e-03 -2.78718621e-01 2.57908940e-01\\n-1.22576594e-01 -1.85893441e-03 -1.23988271e-01 -2.06648782e-01\\n-2.48281896e-01 3.15575033e-01 2.11921498e-01 9.53447968e-02\\n1.18864387e-01 -4.28381264e-01 -3.06604896e-02 2.46309653e-01\\n1.02581404e-01 3.62972796e-01 5.67226224e-02 -6.79383650e-02\\n-7.70052671e-02 2.54394859e-01 -1.61883265e-01 5.14153577e-02\\n-2.68833607e-01 1.56669796e-01 -3.96953583e-01 -3.41309577e-01\\n-2.64310718e-01 -3.85328382e-01 7.97808096e-02 2.84942716e-01\\n1.82863653e-01 -4.91889752e-02 2.13245284e-02 -5.11059225e-01\\n2.26544619e-01 -1.72971692e-02 2.69211054e-01 1.45900860e-01\\n2.82175206e-02 4.81230170e-01 7.76677877e-02 -9.66231227e-02\\n-9.84158888e-02 2.09978983e-01 -2.40100399e-01 -7.62000680e-02\\n-2.37415321e-02 -4.58954453e-01 -1.56572282e-01 4.51792926e-01\\n6.83386326e-02 -1.77264109e-01 -1.64168686e-01 2.36912891e-01\\n-4.70824167e-02 -3.96263421e-01 -2.76888311e-01 -5.07901888e-03\\n4.26292866e-01 1.49641335e-01 3.23466092e-01 -4.72902358e-01\\n-2.76648812e-02 -1.67382956e-01 -1.24403931e-01 4.40783828e-01\\n-5.14334301e-03 6.88844249e-02 -5.99356964e-02 -3.26699048e-01\\n2.68668115e-01 -1.49494112e-01 4.79223132e-02 1.36637613e-01\\n6.39315397e-02 -1.52786583e-01 -4.55858231e-01 1.29234761e-01\\n-1.09809702e-02 -2.38628164e-01 3.39676850e-02 9.79606584e-02\\n1.63781531e-02 1.16254926e-01 -5.39465308e-01 -2.36866072e-01\\n-2.58848399e-01 -1.42332744e-02 -1.89977184e-01 -4.96607155e-01\\n-8.98463875e-02 -1.51905324e-02 -4.50351030e-01 2.36930236e-01\\n-1.21533699e-01 -1.47279566e-02 2.07264587e-01 -6.93266373e-03\\n-3.30008119e-01 -4.44798060e-02 2.47283146e-01 1.74816102e-01\\n-1.95314974e-01 -1.75170660e-01 5.92069365e-02 -9.92224097e-01\\n1.55794919e-01 -9.75198001e-02 -1.12431660e-01 2.07266301e-01\\n-9.37234312e-02 -5.65540552e-01 1.00372076e-01 -2.59651303e-01\\n-2.57782608e-01 -2.05472782e-01 -1.47393629e-01 -5.47632873e-01\\n-6.10617362e-02 1.52903557e-01 -1.84746623e-01 2.58980930e-01\\n-2.55757898e-01 4.47258383e-01 -1.26137454e-02 1.93031758e-01\\n-2.04017852e-02 -3.25386375e-01 7.25502148e-02 -5.03702819e-01\\n-3.44253212e-01 -2.53998097e-02 -2.48401076e-01 -4.94648218e-02\\n2.78973337e-02 -2.41970718e-01 -6.69860020e-02 1.56903058e-01\\n2.56730318e-01 1.12027019e-01 -1.03057101e-01 -4.43051979e-02\\n-5.03396578e-02 -5.01549661e-01 1.07736565e-01 1.19684406e-01\\n-1.10048562e-01 -9.53512415e-02 3.06258649e-01 1.62655324e-01\\n1.23670980e-01 -4.12296057e-01 3.62996042e-01 -4.37082916e-01\\n-3.50896895e-01 1.32284658e-02 1.62078127e-01 2.12254804e-02\\n4.96368855e-01 -4.11515802e-01 -5.14579415e-02 3.31881911e-01\\n-1.16536170e-02 7.68011063e-02 4.24065024e-01 -6.79081604e-02\\n-1.32647142e-01 2.87115186e-01 -3.10263485e-01 1.66179508e-01\\n7.18590140e-01 1.14779569e-01 1.86875120e-01 1.62332535e-01\\n9.62227210e-02 3.27473849e-01 3.91634434e-01 1.66884298e-03\\n-2.63387442e-01 3.59060913e-01 1.35685161e-01 -7.91403830e-01\\n-1.50277037e-02 7.40124565e-03 -2.85941750e-01 -4.14998949e-01\\n6.34299397e-01 3.83178711e-01 -3.16669881e-01 -2.70034879e-01\\n-1.58385426e-01 -2.90230572e-01 -9.33067352e-02 -1.10463902e-01\\n1.23002648e-01 -9.75013375e-02 5.07175326e-01 -2.76348740e-02\\n2.81856090e-01 4.23068523e-01 -2.48352289e-01 -2.27416843e-01\\n-9.75315198e-02 4.81003113e-02 -4.35649753e-02 4.54058230e-01\\n-1.97684407e-01 4.06698316e-01 -6.78121373e-02 1.73170015e-01\\n1.59275364e-02 -4.90957173e-03 5.98848052e-02 4.50165272e-02\\n-3.62397805e-02 2.20353171e-01 4.98650908e-01 3.47803026e-01\\n4.64346081e-01 4.13573891e-01 3.17018867e-01 1.94470976e-02\\n6.41468287e-01 4.05263722e-01 2.43156463e-01 1.66549832e-01\\n-1.78390574e-02 -3.73893157e-02 1.36562986e-02 1.03015505e-01\\n2.61256397e-01 3.17620158e-01 -4.81634736e-02 9.04621899e-01\\n2.53947735e-01 1.57476395e-01 5.72103262e-01 -5.19562602e-01\\n-3.17309707e-01 -1.04960881e-01 3.36126715e-01 -5.09433448e-01\\n-2.62446776e-02 2.03736946e-01 -1.09704137e-01 7.06598833e-02\\n-3.17346960e-01 -3.01300377e-01 -1.56441644e-01 2.50904381e-01\\n-5.74126504e-02 -2.77126998e-01 -3.05499405e-01 1.54772168e-02\\n-1.03286821e-02 -1.25997245e-01 -5.24463534e-01 -1.46286208e-02\\n-2.53040463e-01 -3.04010242e-01 -1.09803759e-01 -1.19308963e-01\\n-1.99296787e-01 -1.73695907e-01 -1.42646924e-01 1.40575673e-02\\n8.55722502e-02 -1.19131617e-01 6.13201708e-02 -2.25797802e-01\\n4.03514117e-01 1.78444117e-01 5.18263280e-01 1.98284984e-02\\n4.90216613e-02 -2.58069098e-01 -4.86606508e-02 1.00017168e-01\\n3.44709992e-01 -8.84006917e-03 4.10662964e-02 4.93100196e-01\\n-3.47445816e-01 -2.28194162e-01 1.32526085e-01 4.30495232e-01\\n-5.41497529e-01 -1.45699903e-02 -2.67877094e-02 1.74632758e-01\\n1.43123060e-01 1.47417188e-01 -1.41513661e-01 -4.21168469e-02\\n-2.15064466e-01 -3.86253297e-01 5.43414205e-02 7.25285932e-02\\n-1.64784998e-01 -4.13618349e-02 1.22846141e-01 1.57080382e-01\\n-5.22804335e-02 -2.55230157e-06 -3.28832716e-02 7.82996044e-02\\n7.59337246e-02 2.46097177e-01 -3.01330388e-01 -4.13263112e-01\\n-2.03879863e-01 8.41342732e-02 -2.56603569e-01 1.05397530e-01\\n7.99833462e-02 2.49770135e-01 8.50051865e-02 1.21625558e-01\\n4.14514840e-01 -5.96566014e-02 -1.14100568e-01 -2.70163536e-01\\n-3.05794388e-01 -3.45417321e-01 4.97989655e-02 -2.53002256e-01\\n2.89954156e-01 -3.18723351e-01 -6.08104914e-02 -2.44881306e-02\\n-1.89783335e-01 -3.65372658e-01 5.28156012e-02 -3.26108150e-02]]',\n", + " 'job_description': \"For one of our clients in the Romandie the French speaking part of Switzerland, in Lausanne, we are looking for a Business Analyst - Application Support Analyst who is open-minded and client-oriented, is passionate about his work, who believes in success and has a strong team spirit. Are you looking for you next challenging position? This opportunity is for you! Your challenges You manage new applications and new functionalities in a manufacturing environment. You are in charge of lifecycle and support in manufacturing and application Level 2. Your skills Experience in a validated environment At least 3-4 years' experience Experience in application development lifecycle (supply chain) ITSM mandatory GxP systems and computer validation system Medical device Labelling systems a plus French and English mandatory Your horizons Do you think you have what it takes to face this challenge ? Don't hesitate to contact me on +41 58 233 27 08 or apply directly on this advert. About Spring Professional Advance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals. Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.ch Your contact Madame Joanna Fumey, Recruitment Trainee, looks forward to answer your questions by phone +41 58 233 2706. You can apply directly online.\",\n", + " 'soft_skills': '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Validations\", \"Business Computer Systems\", \"Medical Devices\", \"Computerized System Validation\", \"Supply Chain\", \"Customer Support Analyst\", \"Application-Level Gateway\"]',\n", + " 'languages': \"['English', 'Hiri Motu', 'Norwegian']\"},\n", + " {'company_id': '81',\n", + " 'job_title': 'software engineer (front end)',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.nexthink.com',\n", + " 'jobdescription_embedded': '[[-2.18650475e-01 3.10543031e-01 5.08035719e-01 3.03931441e-03\\n4.21418309e-01 -2.14236557e-01 2.91899424e-02 2.95808613e-01\\n5.73431440e-02 -5.24873555e-01 -9.40842833e-03 -2.48995304e-01\\n9.99815203e-03 1.91425860e-01 -7.16918334e-03 3.98366034e-01\\n4.54603791e-01 3.92952859e-02 -1.19716473e-01 3.06733519e-01\\n5.08440584e-02 -9.71822217e-02 7.24048764e-02 6.85338199e-01\\n3.53578418e-01 2.81452313e-02 -7.67235905e-02 -4.43683825e-02\\n-1.33352861e-01 -1.97455615e-01 4.47656810e-01 1.42974705e-02\\n-1.90549523e-01 -3.33959162e-01 2.18503568e-02 5.90090230e-02\\n-1.44699752e-01 1.44732028e-01 -2.95598749e-02 1.43360391e-01\\n-3.96953762e-01 -2.25514472e-01 -1.22275986e-02 -3.22799273e-02\\n-3.00597966e-01 -3.91413957e-01 -2.83471141e-02 1.62228327e-02\\n1.82165176e-01 3.34369950e-02 -3.92836869e-01 3.24186146e-01\\n-3.39547396e-01 -2.18174532e-01 3.24194044e-01 6.37363434e-01\\n6.63487613e-02 -4.25195754e-01 -4.63421196e-01 -3.69157493e-01\\n1.20278507e-01 -1.59252822e-01 7.71521181e-02 -2.59632885e-01\\n4.06898022e-01 5.99455871e-02 8.86699930e-03 3.31543863e-01\\n-7.84377635e-01 -1.32360458e-02 -2.88025737e-01 -9.13999230e-02\\n-2.87193090e-01 -1.53338820e-01 -3.65910769e-01 -1.73348159e-01\\n-1.54442072e-01 4.29219306e-01 1.54133225e-02 5.22672273e-02\\n-1.82157487e-01 1.86675027e-01 -2.68549562e-01 3.66621137e-01\\n1.50970176e-01 2.26079956e-01 5.02338409e-01 2.81122088e-01\\n-5.16310036e-01 4.25990015e-01 2.88981467e-01 -4.23285484e-01\\n2.98094183e-01 1.59841537e-01 3.95843208e-01 -2.57112402e-02\\n2.02608541e-01 1.68573126e-01 -1.97369292e-01 2.96764284e-01\\n2.59543300e-01 -2.34327137e-01 -9.73427296e-02 -1.70254722e-01\\n-7.88961351e-02 -4.31400687e-02 3.02129835e-02 2.10880741e-01\\n-3.14638287e-01 4.37536716e-01 7.57455155e-02 -2.70836443e-01\\n-1.49044722e-01 -3.45062673e-01 -5.67172095e-02 7.31222630e-02\\n-6.93883151e-02 1.28326297e-01 1.93164557e-01 2.18365997e-01\\n9.62266177e-02 5.69934808e-02 1.57027930e-01 7.51616597e-01\\n-1.76009417e-01 9.60751101e-02 -3.11997116e-01 3.22137982e-01\\n1.05268911e-01 -2.79821515e-01 1.14652589e-01 1.15436807e-01\\n-1.97467148e-01 -6.09609112e-02 -3.57288659e-01 3.18996280e-01\\n4.27553616e-03 -2.33447671e-01 -3.39717001e-01 2.04964921e-01\\n-1.64175093e-01 -5.16131341e-01 5.84234536e-01 -3.38917077e-02\\n1.45381942e-01 -2.07380038e-02 -8.15092865e-03 -8.32221657e-02\\n-1.81774318e-01 3.80541176e-01 1.10570259e-01 1.69137433e-01\\n-3.47502589e-01 -2.39976898e-01 -2.10208327e-01 1.60587370e-01\\n-2.37786770e-01 2.03429669e-01 -2.39257798e-01 -5.45330420e-02\\n2.79003829e-01 2.29750164e-02 -2.67033786e-01 2.63592303e-01\\n6.02098927e-03 -5.20320088e-02 -8.48794207e-02 3.88192177e-01\\n-1.51540205e-01 2.55170166e-01 2.49514971e-02 -9.61196423e-02\\n6.09905005e-01 1.19947776e-01 1.99527681e-01 -1.08556472e-01\\n3.58797491e-01 -1.12489790e-01 1.13122821e-01 1.22773632e-01\\n-6.24625802e-01 4.00636077e-01 -1.12962253e-01 -7.96596706e-03\\n8.40483904e-02 2.00637616e-02 1.47217587e-01 -3.15164089e-01\\n-1.34918094e-03 -1.52171999e-01 -2.58474350e-01 -3.68334711e-01\\n-2.23935187e-01 -9.76097286e-02 4.85715985e-01 -4.07684445e-01\\n1.62908770e-02 2.63122439e-01 -7.13247538e-01 -1.99186523e-02\\n2.62963623e-01 1.58582091e-01 1.36089921e-01 2.22164884e-01\\n-1.67677462e-01 -4.62270409e-01 2.13828981e-01 -3.55782151e-01\\n-3.70185733e-01 2.33332932e-01 -2.29924709e-01 2.75243878e-01\\n1.27697870e-01 -2.12527718e-02 -2.18119368e-01 5.96873835e-02\\n-1.18005306e-01 -5.54043055e-02 2.99016178e-01 6.70550391e-03\\n2.94208884e-01 1.27696507e-02 -4.13457513e-01 5.14396131e-01\\n-1.95209146e-01 3.79187226e-01 8.73363912e-02 -9.81898665e-01\\n3.69979799e-01 2.65994757e-01 -7.76384771e-02 -3.99151742e-01\\n6.66981578e-01 -3.09518993e-01 -5.01649380e-02 1.68589264e-01\\n-3.36642206e-01 -1.73619062e-01 1.79963082e-01 -2.14542627e-01\\n-2.25747406e-01 6.82093740e-01 2.21200436e-02 1.07294559e-01\\n2.58162320e-01 -2.54559577e-01 -1.30232871e-01 1.01824194e-01\\n-2.08605796e-01 -2.96463341e-01 -5.22100568e-01 -5.78982159e-02\\n2.14181952e-02 -5.24374485e-01 -2.30907246e-01 -4.71731722e-01\\n-2.12596595e-01 -4.44021851e-01 -2.84505844e-01 1.78727031e-01\\n2.78781891e-01 1.45726591e-01 -1.39762521e-01 4.35733646e-02\\n-1.11581042e-01 -5.74458361e-01 5.61864711e-02 3.66289318e-02\\n3.91725093e-01 2.36579418e-01 -4.43175659e-02 1.86401941e-02\\n1.54694542e-01 5.41999698e-01 -3.35956722e-01 -2.86364138e-01\\n2.93111563e-01 1.71467796e-01 5.75373881e-03 -2.24929601e-01\\n3.14889997e-02 4.42665577e-01 -2.93741345e-01 1.18415490e-01\\n6.80408999e-02 9.76198819e-03 3.94192874e-01 -6.04331009e-02\\n-3.55990797e-01 -2.32366383e-01 -6.55177236e-02 1.86422333e-01\\n-5.30665755e-01 -2.06025496e-01 6.72770679e-01 1.57291710e-01\\n3.83236632e-02 1.66843489e-01 1.08706817e-01 -3.75144444e-02\\n-3.02943826e-01 -9.62411612e-02 3.06542158e-01 1.05481461e-01\\n2.43690372e-01 1.73278511e-01 -1.09039657e-01 -5.83939791e-01\\n-3.42961693e+00 -2.88475662e-01 1.78627431e-01 -2.59557962e-01\\n2.39439636e-01 -1.96460426e-01 1.00570343e-01 -6.41465634e-02\\n-2.80953646e-01 7.90572912e-02 -4.71993908e-03 -1.19920239e-01\\n1.75035626e-01 3.09008181e-01 1.44353449e-01 2.15894654e-01\\n1.15331039e-01 -1.38937026e-01 1.07381120e-02 3.37179214e-01\\n-1.37612671e-01 -6.78623378e-01 1.95904553e-01 -5.47194406e-02\\n3.90071332e-01 5.52000105e-02 -5.27021527e-01 -3.12946923e-03\\n-3.53106380e-01 -1.49800360e-01 1.00697495e-01 -1.29036233e-01\\n-1.15855575e-01 2.56190777e-01 1.92257553e-01 -1.67073146e-01\\n1.99266583e-01 -4.30702984e-01 -1.59624651e-01 -4.19768870e-01\\n1.20416448e-01 -6.66463375e-01 -1.91507190e-02 -8.74533355e-02\\n5.91144443e-01 -2.83851981e-01 1.97345778e-01 6.23492040e-02\\n2.28051364e-01 1.66373983e-01 4.75738943e-03 3.73997912e-02\\n-2.95104682e-01 -3.12852204e-01 -1.65972948e-01 -1.97991312e-01\\n6.70500636e-01 4.11265463e-01 -2.91703999e-01 -9.93811190e-02\\n-6.84431121e-02 -2.61007965e-01 -4.95092660e-01 -2.61539996e-01\\n-8.06117058e-02 -8.59712064e-02 -5.14091849e-01 -4.03526902e-01\\n-3.30611110e-01 -1.46348312e-01 -1.73689332e-02 5.58362424e-01\\n-3.70218277e-01 -3.23816180e-01 1.83795542e-02 -4.86035526e-01\\n2.40504637e-01 1.72993317e-02 2.60216817e-02 -1.66959643e-01\\n-3.04401398e-01 -4.54181314e-01 1.37668118e-01 5.26537672e-02\\n-1.12466268e-01 -1.30350694e-01 1.72437474e-01 -2.11157650e-01\\n-3.59475553e-01 -3.89787734e-01 4.31623340e-01 3.59745622e-02\\n2.29804322e-01 1.80383980e-01 3.40899289e-01 -1.47292381e-02\\n3.78327578e-01 -9.53480303e-02 5.26392795e-02 -5.67894936e-01\\n1.41585872e-01 8.94055516e-02 5.49226999e-01 -9.49313715e-02\\n-1.79228187e-03 1.26087785e-01 -2.02977926e-01 -5.30949384e-02\\n4.93942916e-01 -4.68480289e-02 2.27714211e-01 -2.72660792e-01\\n2.35983223e-01 -2.28329897e-01 -2.42622882e-01 6.21621944e-02\\n9.63953137e-02 5.67263961e-01 -1.77137554e-02 -3.26565325e-01\\n-1.52350247e-01 4.66162115e-01 -2.62642682e-01 -7.00976327e-02\\n-2.78548688e-01 8.65641162e-02 -1.99453175e-01 2.91738987e-01\\n-4.46970649e-02 -8.57394636e-02 -2.68089235e-01 -1.35370076e-01\\n-2.12737650e-01 2.15577587e-01 2.65350401e-01 1.11112416e-01\\n-7.84778222e-02 -3.24843466e-01 2.86233239e-02 4.19249535e-02\\n2.38920778e-01 3.70558739e-01 9.58826691e-02 -2.45087549e-01\\n9.91144553e-02 3.02839547e-01 -1.37624845e-01 6.02397025e-02\\n-3.18162739e-01 1.55188411e-01 -4.82320249e-01 -2.42762893e-01\\n-2.70919740e-01 -3.57495278e-01 -1.43710468e-02 3.47067177e-01\\n1.30311817e-01 -2.03643173e-01 -2.23056637e-02 -4.31199282e-01\\n2.30452180e-01 1.74985781e-01 1.83588281e-01 4.49117459e-02\\n1.05446205e-01 5.80689907e-01 1.33321062e-03 -2.05909774e-01\\n-1.85165733e-01 9.88214612e-02 -7.79286474e-02 -5.91340028e-02\\n-1.28817841e-01 -5.45139849e-01 -1.39691845e-01 4.39800858e-01\\n3.06236036e-02 -1.81369647e-01 -1.64389983e-01 2.46628463e-01\\n-7.06614107e-02 -2.30152056e-01 -1.47590101e-01 -1.73633285e-02\\n2.23877192e-01 3.38118263e-02 2.25666344e-01 -4.57440287e-01\\n-5.77850454e-03 7.26865679e-02 -2.94799916e-02 4.68265891e-01\\n7.07896799e-03 7.69850984e-02 -8.52518976e-02 -1.08089797e-01\\n3.97263527e-01 -1.89865023e-01 -1.33330464e-01 -4.77305800e-02\\n1.03413686e-01 -1.64530441e-01 -3.85604352e-01 3.05615682e-02\\n2.82565486e-02 -1.89160734e-01 5.03238700e-02 2.02855155e-01\\n1.30436972e-01 1.07358813e-01 -5.78121960e-01 -2.88562804e-01\\n-3.83050472e-01 -2.90591195e-02 2.27706730e-02 -6.84259295e-01\\n3.98030803e-02 -6.15718029e-03 -5.17811537e-01 2.43406296e-01\\n-1.47185596e-02 -4.53435183e-02 8.67597982e-02 -3.19680944e-02\\n-3.43416631e-01 -1.58811837e-01 2.15249747e-01 1.55890033e-01\\n-8.72706771e-02 -3.57164025e-01 2.29963027e-02 -9.35744345e-01\\n2.57687926e-01 5.79344854e-02 -2.67125964e-01 3.50094289e-02\\n-5.94987050e-02 -5.73277235e-01 2.15281010e-01 -4.66434896e-01\\n-1.55453920e-01 -3.40049677e-02 -2.35462666e-01 -5.20292759e-01\\n1.91742592e-02 -5.40319234e-02 -2.74187624e-01 4.01990891e-01\\n-3.33486021e-01 5.04636526e-01 -7.45254382e-02 1.35415629e-01\\n4.62736823e-02 -3.00582141e-01 7.07020834e-02 -3.55981171e-01\\n-4.61019695e-01 -2.68139482e-01 -2.69087911e-01 -3.44955504e-01\\n-6.54678047e-02 -3.27477336e-01 -1.40419632e-01 9.66827124e-02\\n2.66112745e-01 1.40503675e-01 -1.97049379e-01 -2.39267886e-01\\n-9.15869884e-03 -5.24257302e-01 5.55966720e-02 -1.73484683e-01\\n-1.39855426e-02 -2.03051150e-01 3.19361150e-01 1.54229701e-02\\n4.16555628e-02 -3.57903063e-01 4.74453419e-01 -2.66763628e-01\\n-2.93199241e-01 -1.75132439e-01 5.13447858e-02 -1.43138506e-03\\n1.89437687e-01 -6.11606956e-01 -1.30874664e-03 2.87226111e-01\\n1.15044616e-01 1.49256960e-02 1.23625211e-01 -1.70697957e-01\\n-1.61471128e-01 2.39040181e-01 -3.47934425e-01 1.43006414e-01\\n5.83060980e-01 9.56750065e-02 1.92932352e-01 1.75836027e-01\\n2.05924332e-01 3.36876214e-01 4.82374936e-01 -1.23282000e-02\\n-9.26382095e-02 3.64101768e-01 1.91988349e-01 -5.35904408e-01\\n-5.29485568e-02 8.43399763e-02 -2.03730375e-01 -3.25397462e-01\\n7.26255655e-01 3.79542261e-01 -3.18130404e-01 -3.21482599e-01\\n-2.32722089e-01 -2.34033614e-01 2.74998307e-01 -2.99524143e-02\\n8.58696997e-02 -1.36936963e-01 5.23999810e-01 -2.57582664e-02\\n2.09209770e-01 6.24615550e-01 -2.96937823e-01 -3.70776176e-01\\n1.43919643e-02 3.11371326e-01 4.54956181e-02 4.81295675e-01\\n-2.30672628e-01 1.89841986e-01 -4.06072624e-02 1.72707975e-01\\n-9.17960927e-02 7.44964331e-02 2.03814000e-01 1.01318695e-02\\n2.27396518e-01 5.95719032e-02 6.36656284e-01 3.88105989e-01\\n3.29555571e-01 4.30302858e-01 2.98791915e-01 1.20390616e-02\\n5.30248284e-01 6.91076040e-01 3.55923772e-01 -3.36932614e-02\\n9.18637812e-02 1.01069450e-01 1.36885881e-01 4.92398590e-02\\n2.96294391e-01 4.36577290e-01 -5.21144643e-02 9.44994390e-01\\n3.91165257e-01 2.95906991e-01 6.17039800e-01 -5.93331635e-01\\n-2.80339003e-01 7.19083659e-03 5.06428003e-01 -2.33637393e-01\\n-9.43668261e-02 1.69965640e-01 -2.19012082e-01 1.13339700e-01\\n-2.69366056e-01 -6.90435320e-02 -4.05337363e-02 1.89710915e-01\\n1.54301420e-01 -1.03272207e-01 -1.46025360e-01 8.44389424e-02\\n-1.09260894e-01 -1.51410341e-01 -4.71823961e-01 -1.56549096e-01\\n-2.44043767e-01 -4.83967587e-02 -1.15732014e-01 -4.66924571e-02\\n-1.89224228e-01 -3.97264361e-01 -1.54194176e-01 2.09202301e-02\\n2.84019440e-01 -1.87653422e-01 -1.80525601e-01 -8.96091983e-02\\n3.13960403e-01 2.63720453e-01 6.40362561e-01 6.63462505e-02\\n4.07070257e-02 -2.14153498e-01 -2.05213308e-01 1.01068333e-01\\n1.21944025e-01 4.23617363e-02 -9.23030451e-03 4.68520284e-01\\n-2.54377484e-01 -1.36466593e-01 5.95699064e-02 4.01126266e-01\\n-3.88959169e-01 -1.08222114e-02 -1.09633714e-01 2.05865651e-01\\n5.32033294e-02 8.47350508e-02 -1.49514288e-01 2.30091438e-02\\n-1.47371352e-01 -5.29899359e-01 3.37847292e-01 -3.56885269e-02\\n-2.03789771e-01 6.57325238e-02 1.59064323e-01 3.79705042e-01\\n-2.91163266e-01 -1.35766745e-01 -7.58540183e-02 9.20963138e-02\\n1.76287457e-01 3.62564623e-01 -1.77641660e-01 -2.08424717e-01\\n-3.06486785e-01 9.99477208e-02 -5.36687113e-02 1.13125294e-01\\n-6.10419177e-03 2.56920189e-01 5.33921160e-02 1.98925287e-01\\n2.63360143e-01 -3.15163806e-02 -1.91018373e-01 -1.80443853e-01\\n-1.56191021e-01 -1.04184300e-01 -7.05121085e-03 -5.53378686e-02\\n2.82284439e-01 -2.27335125e-01 -7.27892816e-02 -1.26072466e-01\\n-2.33592898e-01 -3.55403900e-01 1.64451785e-02 -1.71223745e-01]]',\n", + " 'job_description': 'Job DescriptionWe are looking for a Senior Software Engineer with strong front-end programming skills and with test automation capabilities to play a major role in the company. The candidate should be heavily motivated by the product and experienced in Software development and testing. The position entails a high level of responsibility within the R&D team. Your contribution will have a significant impact on the satisfaction of hundreds of our happy customers. As a Senior Software engineer at Nexthink, your duty is to ensure that the software we deliver fulfil the product requirements by collaborating with our product experts. You will participate in all stages of software development: design, implementation, validation, maintenance and will collaborate with our experts and with the different teams. If you are highly motivated and result driven, you have a high sense of product ownership, constantly learning and enhancing your skills, you are open to feedback and you like being accountable and work within a team, then, do not hesitate to apply. Your main responsibilities will include: Design, implement and validate solutions for new features in our different frontendsMaintain the highest code quality standards by using different metrics and by helping the team to improve its best practices in developmentPut in place the necessary front-end test automation to achieve excellent software qualityHelp us bring high decoupling of the different front components Make sure that web and mobile technological trends are assessed and followedWork with the agile iterative/incremental mindset and best practices and participate actively to the different ceremonialsDocument the solutions and architecture according to our standardsSeniority level: Mid-Senior LevelFunction: Engineering Qualifications 5+ years of experience in Software Engineering with proven front-end expertiseB.S. or Master in Computer Science (or equivalent) Very strong technical background, with clear focus on web technologies. Knowledge of mobile technologies is a plusStrong programming skills and ability to code in JavaScript, TypeScript. Java and Scala highly valuedTeamwork and collaboration is part of your DNA Good leadership and soft skillset (e.g. proactivity, pragmatism, open-minded, excellent communication skills, )Experience with libraries and frameworks. React is a big plus. Others like Angular, jQuery, Ember will be valuedMastery of CSS and design is a big plusExperience with micro-services, containers, API gateway, REST is a plusExperience in an agile environment is a mustStrong motivation for complex challenges and learning new technologiesFluent in English (spoken and written), French is a plus Additional InformationThis is an exceptional opportunity to join a fast-growing, successful and innovative company. Nexthink allows you to thrive in a unique work environment where the emphasis is on excellence, innovation, openness and collaboration.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Leadership\", \"Collaboration\", \"Proactivity\", \"Accountability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Agility\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Good Agricultural Practices\", \"Staging\", \"TypeScript\", \"Scala (Programming Language)\", \"Activism\", \"E (Programming Language)\", \"Test Automation\", \"Levelling\", \"Library\", \"Iterators\", \"Hostile Work Environment\", \"Software Engineering\", \"Mobility\", \"React.js\", \"Senior TeleCommunications Engineer\", \"JQuery\", \"JavaScript (Programming Language)\", \"Decoupling\", \"API Gateway\", \"Validations\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Software Development\", \"Additives\", \"Java (Programming Language)\", \"Product Requirements\"]',\n", + " 'languages': \"['English', 'Venda', 'Gikuyu']\"},\n", + " {'company_id': '44',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.12801331e-01 3.16512048e-01 4.18633461e-01 -7.91569278e-02\\n5.23473918e-01 -2.02009022e-01 1.43224448e-02 3.96541834e-01\\n-2.95258015e-02 -3.80351514e-01 -1.71148345e-01 -2.60764986e-01\\n-1.86775640e-01 3.46598998e-02 2.29364529e-01 4.35211420e-01\\n2.13361993e-01 7.31811300e-02 -2.71519899e-01 3.62178653e-01\\n6.76888525e-02 -9.00769681e-02 3.08419261e-02 7.49629259e-01\\n3.51514131e-01 1.39445933e-02 7.99249671e-03 -1.12452928e-03\\n-3.08921933e-01 -2.86021382e-01 2.84034193e-01 -1.54524837e-02\\n-1.17725946e-01 -3.36671174e-01 1.80350006e-01 3.94491404e-02\\n-1.42310113e-01 -6.50811344e-02 -2.96018068e-02 1.36475191e-01\\n-4.86237645e-01 -2.83786476e-01 2.09684446e-01 8.14381912e-02\\n-7.68273175e-02 -3.60551596e-01 1.40205085e-01 -1.42227501e-01\\n1.89237390e-02 -6.57460168e-02 -4.99913871e-01 3.54694098e-01\\n-2.39417732e-01 -1.58044338e-01 3.51311326e-01 5.19925475e-01\\n-1.20911978e-01 -6.11969590e-01 -3.13406318e-01 -2.62099057e-01\\n4.18638550e-02 -7.50373229e-02 -1.30443517e-02 -3.59687090e-01\\n3.79999757e-01 7.91939124e-02 -7.55848140e-02 3.19918513e-01\\n-8.10813129e-01 -2.05031931e-01 -2.33121410e-01 4.83161956e-02\\n-3.55063528e-01 -9.04140249e-02 -1.34746566e-01 -1.46796510e-01\\n1.85451377e-02 3.83641899e-01 -1.53264469e-02 3.23173665e-02\\n-1.09364137e-01 3.71241242e-01 -4.62248400e-02 3.77704322e-01\\n3.20841372e-01 1.68776840e-01 1.32807031e-01 3.55924428e-01\\n-3.59836102e-01 4.87569720e-01 7.26686940e-02 -2.88253397e-01\\n1.25274226e-01 2.05301002e-01 5.00716269e-01 1.26226461e-02\\n3.97542417e-02 1.97526187e-01 -3.04165840e-01 2.99141109e-01\\n2.02088848e-01 -1.69397727e-01 6.65759528e-03 -7.11626336e-02\\n-6.61653057e-02 -8.45232680e-02 2.61793938e-02 3.13128084e-01\\n-2.93170273e-01 5.02677441e-01 1.24285914e-01 -7.22864345e-02\\n5.16628325e-02 -5.67255735e-01 -1.40350863e-01 1.53846378e-02\\n-8.00355077e-02 9.77878496e-02 3.32642287e-01 1.70066193e-01\\n2.57896721e-01 4.31124158e-02 9.32393223e-02 9.67842042e-01\\n1.71050604e-03 1.68293089e-01 -2.51748562e-01 4.06392246e-01\\n1.53977498e-01 -3.17053527e-01 1.74288854e-01 3.45592886e-01\\n2.39519402e-01 -1.12963505e-01 -2.27179065e-01 3.27402472e-01\\n-1.98341832e-01 -2.90694505e-01 -3.96096706e-01 1.96666941e-01\\n-2.44850695e-01 -4.90286648e-01 4.87498850e-01 1.40147626e-01\\n2.05087215e-01 1.03209866e-02 -9.43975672e-02 -4.17625979e-02\\n-1.00627251e-01 2.33817548e-01 3.21568996e-02 1.13600150e-01\\n-3.47780794e-01 -1.75770327e-01 -3.02637100e-01 1.32408574e-01\\n-1.58637851e-01 1.71912894e-01 -1.09562412e-01 -1.44348353e-01\\n3.51832122e-01 3.17592826e-03 -5.07710516e-01 3.64246964e-01\\n8.38328060e-03 -2.77027320e-02 -4.36405130e-02 4.02636915e-01\\n-9.95365232e-02 2.98923433e-01 -2.54423991e-02 -6.76289275e-02\\n3.59841526e-01 1.76911224e-02 -2.52633691e-02 -1.65009215e-01\\n3.01501960e-01 -1.43668905e-01 1.70410991e-01 6.89919889e-02\\n-7.37222970e-01 2.55105525e-01 -5.80111742e-02 1.35410186e-02\\n1.21948551e-02 -2.48319414e-02 3.62341821e-01 -3.71194720e-01\\n-1.72665700e-01 -1.85158774e-01 -3.90695781e-01 -3.93356651e-01\\n-3.03242415e-01 -1.41313951e-02 4.49884295e-01 -3.03693563e-01\\n-1.78244039e-01 2.21627623e-01 -5.13013422e-01 7.02287033e-02\\n2.58289307e-01 1.97849259e-01 1.26958489e-01 1.41438901e-01\\n-3.51326987e-02 -5.98378539e-01 7.58757666e-02 -4.24420714e-01\\n-3.60226482e-01 1.34903803e-01 -3.12238276e-01 2.69950598e-01\\n1.49554044e-01 1.00095376e-01 -6.44305274e-02 6.67490140e-02\\n-2.30115294e-01 -6.73026517e-02 1.71835586e-01 6.78511634e-02\\n1.98214769e-01 3.73082533e-02 -4.94558334e-01 4.80509192e-01\\n-2.18076795e-01 4.77721304e-01 8.23358148e-02 -8.05065870e-01\\n5.48103392e-01 3.26535404e-01 3.47400866e-02 -4.32201236e-01\\n6.10359013e-01 -3.83548349e-01 -9.53272209e-02 1.43837258e-01\\n-4.00688887e-01 -3.12934250e-01 1.97759032e-01 -1.26089916e-01\\n-2.75784433e-01 5.80727637e-01 9.97411311e-02 2.69413833e-03\\n2.87883818e-01 -2.82297134e-01 -1.53541237e-01 7.27819875e-02\\n-2.70451121e-02 -2.21376926e-01 -4.47217792e-01 -1.82413007e-03\\n-1.61377676e-02 -5.08080542e-01 -1.74873129e-01 -4.52164561e-01\\n-2.09689453e-01 -3.83565933e-01 -1.85078964e-01 3.29800218e-01\\n2.43226454e-01 1.48317978e-01 1.01001821e-01 9.96082556e-03\\n-1.42926037e-01 -6.03709698e-01 -5.56448624e-02 6.82088509e-02\\n4.28021967e-01 2.43521348e-01 7.49348253e-02 -4.66759428e-02\\n-6.68673441e-02 6.31377578e-01 -3.06268126e-01 -2.56342620e-01\\n8.89747813e-02 1.52975783e-01 -3.74802798e-02 -7.81136826e-02\\n1.56144172e-01 4.08918172e-01 -2.41116136e-01 3.76945175e-02\\n-2.23806977e-01 8.41687992e-02 3.68939638e-01 7.07777450e-04\\n-3.46594244e-01 -2.57924855e-01 -2.69735418e-02 1.82354793e-01\\n-5.86630285e-01 -1.80287495e-01 5.61579823e-01 2.65502125e-01\\n2.08557695e-01 1.54528826e-01 3.47996920e-01 -1.95836157e-01\\n-5.38512878e-02 -1.69183508e-01 1.18805401e-01 2.48434573e-01\\n8.71337280e-02 1.91436857e-02 -1.81508169e-01 -5.99153221e-01\\n-3.05484533e+00 1.10294959e-02 1.36477068e-01 -1.99948147e-01\\n1.39525965e-01 -6.62112907e-02 2.88588461e-02 -1.17691398e-01\\n-2.62980223e-01 6.02071807e-02 -3.20721596e-01 -1.26113206e-01\\n8.52785930e-02 2.04672530e-01 1.25590280e-01 1.42709404e-01\\n2.15302050e-01 -3.65236789e-01 -6.41188771e-02 2.48403624e-01\\n-6.28827065e-02 -7.12549269e-01 1.79696992e-01 -8.72801095e-02\\n2.93931693e-01 2.97597945e-01 -3.60176116e-01 -1.36338770e-01\\n-1.74095780e-01 -2.83319741e-01 1.11630552e-01 -2.43421271e-01\\n-1.40295044e-01 3.74410242e-01 4.93827872e-02 -1.42165184e-01\\n1.41054377e-01 -3.48098963e-01 5.34460805e-02 -4.17488962e-01\\n1.58350185e-01 -5.95151544e-01 1.27165481e-01 -9.31036696e-02\\n6.22393191e-01 -3.27441275e-01 9.71521661e-02 2.07087368e-01\\n1.36256769e-01 2.67784446e-01 -6.76104426e-02 -3.57137341e-03\\n-1.95487037e-01 -2.08670855e-01 -1.30109107e-02 -2.11488754e-01\\n5.04943311e-01 4.60878670e-01 -1.69685796e-01 -3.30233909e-02\\n8.74223039e-02 -3.65866989e-01 -4.38640147e-01 -4.03927565e-01\\n-2.57940143e-01 -1.97407663e-01 -8.23525071e-01 -3.83654982e-01\\n-8.59944522e-02 -7.49429986e-02 -1.59311533e-01 5.48014581e-01\\n-2.91549981e-01 -3.61807287e-01 4.08007912e-02 -5.12999594e-01\\n7.83261284e-02 -2.03186750e-01 7.11726546e-02 -2.37453148e-01\\n-2.17922196e-01 -5.08351088e-01 1.26214266e-01 7.54575729e-02\\n-1.60454854e-01 -1.76717415e-01 7.34414905e-02 -2.33689398e-01\\n-1.70308679e-01 -5.09858668e-01 4.56348330e-01 1.57323986e-01\\n2.63603836e-01 1.53788000e-01 2.11083204e-01 -6.76111970e-03\\n3.25063020e-01 -6.80102259e-02 1.06913075e-01 -4.63090241e-01\\n5.46183102e-02 8.84331390e-02 5.33161044e-01 -1.95888788e-01\\n-3.46129909e-02 2.00686380e-01 -1.66580871e-01 -1.78392231e-01\\n2.72686183e-01 1.22653231e-01 8.36533904e-02 -2.49631599e-01\\n3.34251016e-01 -5.11177361e-01 -2.40285367e-01 1.53864443e-01\\n1.60415947e-01 7.00615287e-01 6.49797218e-03 -4.78652209e-01\\n-2.99368918e-01 3.67539376e-01 3.14667053e-03 -7.26779178e-02\\n-4.08478267e-02 1.43154070e-01 -2.79801160e-01 1.69476718e-01\\n2.17109397e-02 -1.75495341e-01 -2.85740227e-01 -1.06599860e-01\\n-7.87442923e-02 3.19206625e-01 2.99442440e-01 1.19668327e-01\\n-4.11337912e-02 -4.85817999e-01 -1.08940728e-01 1.37533471e-01\\n1.45772815e-01 3.25233519e-01 9.24873874e-02 -3.06976318e-01\\n-5.98290935e-02 4.24621344e-01 -1.02247730e-01 1.36669278e-01\\n-2.22659975e-01 -3.18024606e-02 -5.38682222e-01 -1.71118721e-01\\n-2.39801943e-01 -2.24327132e-01 -4.66067716e-02 3.97736639e-01\\n1.48451328e-01 -7.31302006e-03 7.61822239e-02 -5.14854372e-01\\n4.06590223e-01 2.58336309e-02 2.52168030e-01 1.23999245e-01\\n1.66050624e-02 4.88307595e-01 -5.61133353e-03 -1.70740664e-01\\n-1.57895908e-01 9.37199071e-02 -2.77358770e-01 -2.33088717e-01\\n1.40401438e-01 -2.93494672e-01 -9.65822786e-02 2.91272163e-01\\n4.91943881e-02 -2.76045293e-01 -1.84342369e-01 1.74787879e-01\\n1.16718769e-01 -3.74120444e-01 -2.05214411e-01 4.75183539e-02\\n2.56592423e-01 1.78696364e-02 1.84482783e-01 -4.47677374e-01\\n-6.68130070e-02 -2.09452629e-01 -1.43975437e-01 5.01841247e-01\\n2.16458008e-01 2.91687232e-02 -2.43994996e-01 -2.70706505e-01\\n4.12215650e-01 -8.92977789e-02 -5.60359061e-02 -1.98209986e-01\\n2.95626111e-02 -1.62104219e-01 -3.88458967e-01 4.40001711e-02\\n-5.18975742e-02 -5.11773489e-02 2.22649239e-02 3.13011184e-02\\n1.29123017e-01 7.45195895e-02 -5.29471934e-01 -2.07720190e-01\\n-2.53031343e-01 -1.08118638e-01 1.40799694e-02 -4.06599522e-01\\n5.92197292e-02 -7.43468385e-03 -6.36318207e-01 3.06066871e-01\\n-3.06495547e-01 9.54146758e-02 1.30129576e-01 8.76834095e-02\\n-4.51240152e-01 -1.30911306e-01 1.65414929e-01 1.52794510e-01\\n-2.88830251e-01 -1.08976416e-01 -9.61446315e-02 -1.08853316e+00\\n2.96982944e-01 -9.61849242e-02 -7.25740790e-02 2.27480270e-02\\n-4.63116020e-02 -7.93134034e-01 9.86428708e-02 -3.43419343e-01\\n1.87187120e-02 -2.07975358e-02 -1.08778752e-01 -4.32107568e-01\\n6.74312338e-02 -1.27865180e-01 -2.87211865e-01 2.68414289e-01\\n-4.44613755e-01 3.72799575e-01 -1.56655312e-01 1.28634110e-01\\n-3.51930298e-02 -3.12616080e-01 1.57254413e-01 -4.55645651e-01\\n-3.98627371e-01 -1.27781808e-01 -2.95688212e-01 -1.76665843e-01\\n-5.17622195e-02 -3.53044599e-01 -1.56716421e-01 1.14772148e-01\\n3.16042304e-01 1.14111893e-01 -6.10143542e-02 -2.41039008e-01\\n1.12457089e-01 -2.69582003e-01 3.24008316e-02 -1.21879131e-01\\n1.20718703e-01 -3.03700138e-02 1.75463855e-01 -4.79134964e-03\\n2.41457626e-01 -4.57437903e-01 4.01130646e-01 -3.77908587e-01\\n-4.42508519e-01 2.64437217e-03 4.21154946e-02 3.97810936e-02\\n3.01885575e-01 -4.86610025e-01 1.11247646e-02 2.37946510e-01\\n1.73222974e-01 1.22796781e-01 2.48659536e-01 1.86481662e-02\\n-1.54597655e-01 1.36411369e-01 -3.85708928e-01 9.71544441e-03\\n8.32945168e-01 1.75121665e-01 1.13029771e-01 9.02787372e-02\\n3.18379104e-02 3.77394587e-01 5.02191901e-01 -8.99109989e-03\\n-1.20048493e-01 2.51982510e-01 1.11550167e-01 -4.91380543e-01\\n-2.24850014e-01 -2.65921708e-02 -2.05087617e-01 -1.75069168e-01\\n6.28130555e-01 4.36543196e-01 -2.94996500e-01 -2.88637042e-01\\n-9.96529013e-02 -2.03501254e-01 1.74984753e-01 -5.48226386e-02\\n1.01103045e-01 -2.30957493e-01 6.27895594e-01 6.22641146e-02\\n2.44934604e-01 6.21182382e-01 -1.85486361e-01 -3.99862140e-01\\n-9.16196033e-02 1.68436378e-01 5.53882271e-02 3.10499460e-01\\n-1.42887026e-01 2.84558684e-01 1.68681350e-02 4.10193764e-02\\n-1.99829996e-01 5.01204096e-02 1.52698874e-01 4.43148576e-02\\n1.40622944e-01 2.18024269e-01 3.18108648e-01 5.23011446e-01\\n3.41097444e-01 5.57101846e-01 2.71017879e-01 3.59637737e-02\\n4.87620115e-01 4.76558000e-01 4.54230547e-01 2.08986163e-01\\n-1.76320306e-03 1.02056921e-01 2.16901347e-01 5.01393266e-02\\n4.69051331e-01 2.94091463e-01 1.79922462e-01 9.98627603e-01\\n3.48797649e-01 2.87032545e-01 8.43538225e-01 -6.43991292e-01\\n-3.18332583e-01 5.51734343e-02 4.55668807e-01 -4.48792756e-01\\n-1.03208646e-01 -2.35917289e-02 -1.22589260e-01 2.35548720e-01\\n-4.74328876e-01 -2.55274892e-01 -9.27144364e-02 1.68489486e-01\\n4.89928350e-02 -8.48086700e-02 -2.35221758e-01 5.56751527e-02\\n-2.20822483e-01 -1.62228793e-01 -4.53381389e-01 -1.14544705e-01\\n-2.33592719e-01 -1.03915513e-01 -7.65084699e-02 -1.84562787e-01\\n-3.26370820e-02 -3.98711294e-01 -2.02082708e-01 2.68614795e-02\\n3.79045993e-01 -2.30294168e-01 2.94798687e-02 -1.81650251e-01\\n2.43176535e-01 2.39570662e-01 6.50650203e-01 1.27208696e-04\\n1.63850382e-01 -2.21740499e-01 -2.02035472e-01 9.17099938e-02\\n2.68027466e-02 1.37803748e-01 1.17072977e-01 3.76176268e-01\\n-4.04191136e-01 -2.14482509e-02 1.21888354e-01 5.50979197e-01\\n-3.42247546e-01 -9.31182057e-02 -1.53794706e-01 1.38029650e-01\\n6.04198799e-02 1.23234972e-01 -1.84309915e-01 -2.02576760e-02\\n-2.62405872e-01 -5.71299553e-01 3.52944851e-01 -1.24262683e-01\\n-1.58385515e-01 1.21032149e-01 3.36867213e-01 1.86535716e-01\\n-2.29159430e-01 9.08462738e-04 4.92382459e-02 1.94130823e-01\\n1.63496256e-01 3.55838865e-01 -3.36899340e-01 -2.02272743e-01\\n-1.60276696e-01 2.56040275e-01 -1.89696684e-01 2.15142649e-02\\n-9.00366232e-02 4.16060656e-01 2.68871486e-02 9.36951786e-02\\n3.94507438e-01 -4.32611518e-02 -1.73853770e-01 -2.69220442e-01\\n-1.61375061e-01 -2.79768169e-01 5.43620624e-02 -1.25683665e-01\\n2.65155464e-01 -3.70299548e-01 -8.55093896e-02 -1.29202113e-01\\n-5.75658605e-02 -3.69844526e-01 -1.52958527e-01 4.67682397e-03]]',\n", + " 'job_description': 'We are looking for young, enthusiastic and talented Software Engineer In this position you will be responsible for embedded software development in C++ and other programming languages. You will develop software under different operating systems using provided Application Programming Interfaces (APIs). In dynamic, multicultural environment of our company, you will be part of a team working on projects in the area of Telecommunications, Wireless, Networked Entertainment and Multimedia. In cooperation with leading European companies, you will be developing cutting-edge technology products. Exciting, challenging tasks are waiting for you! As a successful candidate for this position you must be able to demonstrate the following qualifications: 2+ years of experience in software development Strong knowledge of object-oriented (OO) design principles Extensive programming experience in C++ and multi-threading environments Basic computer engineering knowledge (processor and memory organization, stack, calling conventions, interrupt handling, etc.) Good written and verbal communication skills in English Good analytical and problem-solving skills Any of the following qualifications will be a plus: Experience with real-time operating systems (RTOS) and Linux Software design and development process using UML Understanding of embedded software development principles Hands-on experience with hardware debuggers and device-level programming Practical knowledge of MS VS, GCC, STL, Perl, CVS/Subversion, ADS (RealView), Socket API Familiarity with the ARM architecture and assembler Software analysis, review and re-factoring skills We offer: Exciting carrier and professional opportunities in a dynamically developing company with Swiss quality standards and stability Enjoyable working atmosphere in our engineering offices, conveniently located in 5-minute walking distance from Zug railway station. If you are interested in this position, please, send your resume at jobs@epscom.net We are looking forward to your application!',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Cooperation\", \"Professionalism\", \"Problem Solving\", \"Positivity\"]',\n", + " 'hard_skills': '[\"KM Programming Language\", \"Programming (Music)\", \"UML Tool\", \"Analytics\", \"Perl (Programming Language)\", \"C++ (Programming Language)\", \"Linux\", \"Agile Edge Technologies\", \"Process Driven Development\", \"Software Engineering\", \"ARM Architecture\", \"Operating Systems\", \"Multimedia\", \"AD Model Builder (ADMB)\", \"Standard Template Library (STL)\", \"Object-Oriented Design\", \"Wireless Telecommunications\", \"Software Design\", \"Computer Engineering\", \"Wireless Networks\", \"Software Development\", \"Software Business Analysis\", \"Application Programming Interface (API)\", \"Embedded Software\", \"Apache Subversion\", \"Real-Time Operating Systems\", \"Interrupt Handling\", \"Threading (Manufacturing)\"]',\n", + " 'languages': \"['English', 'Maltes', 'Luxembourgish']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer - .net developer w/m',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.01657408e-01 2.30316505e-01 5.26042521e-01 -8.72600079e-02\\n4.53993380e-01 -1.98693052e-01 -4.32159677e-02 4.65722531e-01\\n-1.48710459e-01 -3.88769388e-01 -1.91301897e-01 -3.22442859e-01\\n-7.62060061e-02 1.10869899e-01 2.56091684e-01 3.47763777e-01\\n3.33220124e-01 1.18078180e-01 -2.80989975e-01 2.60545522e-01\\n1.94182679e-01 2.88035795e-02 8.21112022e-02 7.07120717e-01\\n3.54223788e-01 4.11188267e-02 -8.30323398e-02 -8.85845050e-02\\n-2.78669566e-01 -2.18544230e-01 3.54387879e-01 -1.13285892e-01\\n9.43706837e-03 -3.22178423e-01 3.10933106e-02 2.85002198e-02\\n-1.44600525e-01 -4.73411791e-02 5.77373095e-02 7.23253414e-02\\n-5.18574059e-01 -2.85762548e-01 9.77040604e-02 1.04219258e-01\\n-1.26700684e-01 -2.94646025e-01 1.31777346e-01 5.10048755e-02\\n-7.62825226e-03 1.76417325e-02 -6.26534224e-01 3.51388305e-01\\n-1.37516931e-01 -1.61844820e-01 2.68187255e-01 5.19277930e-01\\n9.07676667e-02 -4.50406134e-01 -3.79254997e-01 -2.19055891e-01\\n1.39114901e-01 -6.55782670e-02 1.14454091e-01 -1.67829424e-01\\n4.26876605e-01 4.10379702e-03 -1.53040802e-02 3.15018803e-01\\n-6.47643447e-01 -6.51689023e-02 -1.40244767e-01 -9.32807848e-02\\n-3.80440384e-01 -6.90393150e-02 -1.61267996e-01 -1.86128616e-01\\n-1.57983258e-01 3.76804471e-01 2.10373942e-02 6.85177967e-02\\n-1.69157624e-01 2.39717484e-01 -1.01084098e-01 1.99774280e-01\\n2.34521732e-01 3.20394963e-01 1.94464326e-01 3.26440394e-01\\n-4.34007525e-01 4.29572970e-01 1.73872471e-01 -3.14605385e-01\\n2.68397987e-01 8.12376440e-02 4.69510794e-01 -6.63764775e-04\\n-2.89315172e-02 5.91853261e-02 -1.55917436e-01 1.95396334e-01\\n1.83167130e-01 -2.79840797e-01 5.58342924e-03 -4.80667055e-02\\n-1.07893668e-01 7.28609413e-02 -3.61531787e-02 2.64011979e-01\\n-3.36755455e-01 3.47040176e-01 1.94233999e-01 -1.80412635e-01\\n-1.41463339e-01 -6.26322746e-01 -6.01723269e-02 4.15914170e-02\\n8.80032256e-02 1.40708074e-01 3.84188771e-01 1.16005167e-01\\n2.81707048e-01 -7.74355186e-03 2.41218403e-01 9.65571523e-01\\n-4.74150740e-02 1.07582688e-01 -2.76836783e-01 4.63726968e-01\\n1.14230432e-01 -2.82994151e-01 1.59000471e-01 2.51056403e-01\\n8.21049288e-02 -5.54673411e-02 -1.60506502e-01 3.05519760e-01\\n-1.55198360e-02 -1.57149702e-01 -2.81945586e-01 7.26208910e-02\\n-2.24192902e-01 -4.12770182e-01 5.26985168e-01 1.16957948e-01\\n1.21497825e-01 -1.62992656e-01 -6.64501591e-03 -1.71597436e-01\\n-7.73010999e-02 2.91583210e-01 -5.16703166e-03 1.44726664e-01\\n-3.10260117e-01 -1.66110381e-01 -1.79787949e-01 2.85868943e-01\\n-8.10527653e-02 1.28754824e-01 -5.21859489e-02 -1.62502185e-01\\n3.78315240e-01 7.79769644e-02 -3.39269757e-01 2.55399853e-01\\n-1.87735632e-02 -1.86854005e-01 -8.24888498e-02 1.77755430e-01\\n-1.45436704e-01 1.77360132e-01 -2.99099693e-03 -1.59789100e-01\\n4.00778800e-01 1.08157024e-01 2.41037488e-01 -8.32973868e-02\\n3.35556924e-01 -2.23514304e-01 1.19611971e-01 1.30593076e-01\\n-6.25571430e-01 3.50767910e-01 -4.21801992e-02 -2.29649469e-01\\n9.87343118e-02 8.38403329e-02 4.01858002e-01 -2.06678331e-01\\n1.82592683e-02 -2.28926122e-01 -3.76924276e-01 -3.97141963e-01\\n-2.18826801e-01 -2.89369700e-03 3.97470921e-01 -4.26047057e-01\\n-8.48829001e-02 1.33379266e-01 -4.62853640e-01 -5.70487529e-02\\n1.54725134e-01 2.35626012e-01 -3.24324286e-03 7.60859177e-02\\n-1.41524315e-01 -5.09381235e-01 -3.49010644e-03 -4.50809926e-01\\n-4.86829937e-01 5.03723435e-02 -2.36261696e-01 2.75848210e-01\\n7.04765841e-02 -5.20541742e-02 -1.09029301e-01 1.82467371e-01\\n-2.19011903e-01 2.38632932e-02 1.98784277e-01 1.13973178e-01\\n3.25975686e-01 -4.55042906e-03 -4.06870842e-01 5.26638925e-01\\n-2.47084171e-01 4.39072043e-01 1.11540489e-01 -8.62606168e-01\\n5.28003752e-01 2.48369306e-01 3.06366738e-02 -4.21203971e-01\\n6.95800781e-01 -2.86491513e-01 4.32357490e-02 1.74495146e-01\\n-4.44431126e-01 -2.48281032e-01 2.98005164e-01 -1.40056849e-01\\n-2.04928413e-01 6.21417522e-01 1.27516091e-01 -4.95990328e-02\\n1.78120956e-01 -2.57954895e-01 -1.56515077e-01 1.92018244e-02\\n-8.06622505e-02 -3.19092661e-01 -4.05395478e-01 3.80146466e-02\\n-1.01809837e-01 -4.17731792e-01 -2.30812058e-01 -4.69049394e-01\\n-1.55004919e-01 -3.93153608e-01 -2.32734516e-01 4.07873452e-01\\n1.60260320e-01 8.18269253e-02 2.64743790e-02 -1.81194380e-04\\n-1.10518225e-01 -4.83779132e-01 -6.53129295e-02 3.62274945e-02\\n5.01109958e-01 2.79971659e-01 8.92833024e-02 2.73971411e-04\\n-1.14397459e-01 4.87327367e-01 -1.84871808e-01 -2.12629586e-01\\n1.37901425e-01 1.89772755e-01 9.74273309e-03 -8.47181585e-03\\n1.16365952e-02 3.24117631e-01 -1.43951297e-01 -3.57133821e-02\\n-1.18272565e-01 7.76449144e-02 3.41947585e-01 -2.78005321e-02\\n-2.86080629e-01 -1.93823889e-01 8.93855281e-03 3.27466756e-01\\n-5.47079623e-01 -1.95203200e-01 5.30026436e-01 2.14526981e-01\\n1.23824030e-01 2.05431223e-01 2.03975216e-01 -1.29122138e-01\\n-1.45172358e-01 -2.84640193e-01 1.59101963e-01 1.02967583e-01\\n1.81799874e-01 5.56185506e-02 -9.27492827e-02 -5.30307472e-01\\n-3.47864795e+00 -2.21044689e-01 7.52913281e-02 -3.34521145e-01\\n1.27890781e-01 -1.61596462e-01 1.15579637e-02 -7.93188959e-02\\n-2.88460523e-01 1.16560817e-01 -2.06608340e-01 -1.59368202e-01\\n1.86076507e-01 2.10269094e-01 1.30117182e-02 2.95698315e-01\\n2.01134309e-02 -1.17637962e-01 -1.05754500e-02 2.47143000e-01\\n-2.29296297e-01 -7.16016412e-01 2.09988266e-01 -1.09744065e-01\\n1.80342078e-01 3.02353233e-01 -4.32897776e-01 -1.82762668e-01\\n-1.96550995e-01 -2.67577052e-01 1.68055788e-01 -2.68152297e-01\\n-7.09383935e-02 3.81940663e-01 1.73063174e-01 -8.92019570e-02\\n1.43478513e-01 -3.20594817e-01 -3.08055058e-02 -4.85928386e-01\\n1.94170386e-01 -6.12210691e-01 -5.52832037e-02 -2.24623755e-02\\n6.88734412e-01 -3.89870226e-01 2.27409959e-01 1.69976309e-01\\n2.13257432e-01 2.59818673e-01 -3.58176641e-02 -9.12822559e-02\\n-2.17227474e-01 -3.35270166e-01 -3.78949642e-02 -2.29675874e-01\\n4.11398321e-01 6.01249933e-01 -1.26634508e-01 7.15008527e-02\\n1.40247047e-02 -1.86520129e-01 -3.93612623e-01 -3.71801317e-01\\n-2.04945609e-01 -1.79050490e-01 -6.16498411e-01 -3.83029193e-01\\n-1.35347635e-01 -1.33216962e-01 -1.25852257e-01 6.14490092e-01\\n-2.44769752e-01 -4.28459883e-01 5.69914617e-02 -5.85926533e-01\\n1.43331140e-01 -2.82705218e-01 -6.41627163e-02 -1.94557354e-01\\n-3.09480935e-01 -5.03614187e-01 9.93304178e-02 5.06230630e-02\\n-1.18170395e-01 -1.20080650e-01 9.96291414e-02 -3.15063119e-01\\n-2.71412045e-01 -4.22720760e-01 4.33024794e-01 1.73821226e-01\\n3.42947215e-01 1.56143218e-01 2.25925952e-01 2.15346172e-01\\n2.74255693e-01 -1.82794109e-01 1.23248592e-01 -4.69160557e-01\\n1.29776895e-01 6.87053800e-02 4.86953706e-01 -2.07567602e-01\\n-3.05376090e-02 1.39112726e-01 -1.63504586e-01 -1.01614945e-01\\n3.60747784e-01 2.60422993e-02 -3.13207367e-03 -9.00996253e-02\\n3.19215596e-01 -5.20843327e-01 -1.69356793e-01 8.80354941e-02\\n-7.25154653e-02 5.89414954e-01 -5.49721196e-02 -3.76794934e-01\\n-2.66839206e-01 4.94782120e-01 -5.85391708e-02 -1.56812772e-01\\n-1.05907381e-01 2.18588755e-01 -1.65321618e-01 1.30275801e-01\\n-2.15784367e-02 -2.94437289e-01 -3.67575526e-01 -4.00124863e-02\\n-5.17578758e-02 1.65222615e-01 2.54662424e-01 5.76269068e-02\\n-2.38845591e-02 -3.60036224e-01 -1.58335660e-02 9.85415876e-02\\n3.61271858e-01 4.21312064e-01 1.17894366e-01 -1.05998643e-01\\n5.57792410e-02 2.79089570e-01 -1.48224354e-01 2.46851549e-01\\n-1.94381893e-01 1.50626488e-02 -4.15307850e-01 -3.39877933e-01\\n-1.93253696e-01 -3.39001805e-01 2.73951888e-02 2.59762317e-01\\n2.18290761e-01 1.39832934e-02 -1.97436893e-03 -4.34294939e-01\\n3.72914881e-01 -1.42825218e-02 1.90003067e-01 1.57943472e-01\\n7.91264400e-02 5.56112766e-01 1.52871171e-02 1.07662287e-02\\n-1.51287407e-01 -5.66689298e-02 -1.49415433e-01 -1.85012564e-01\\n8.68122429e-02 -2.75461316e-01 -7.65203536e-02 4.16148633e-01\\n8.19613114e-02 -4.18476760e-01 -5.35611957e-02 3.66258353e-01\\n1.63969565e-02 -2.66350508e-01 -1.59743309e-01 1.54506087e-01\\n2.45470434e-01 1.17358617e-01 1.99685410e-01 -4.57636237e-01\\n-8.44222903e-02 8.59304816e-02 8.80188029e-03 4.32779789e-01\\n9.22154933e-02 1.69989437e-01 -7.78091177e-02 -3.54519725e-01\\n3.06295246e-01 -2.19712734e-01 -9.55667049e-02 -5.89797124e-02\\n1.66751444e-02 -1.22725308e-01 -4.78102893e-01 1.26251578e-02\\n-1.00458845e-01 -2.04753175e-01 -3.46274227e-02 7.36821517e-02\\n1.83986962e-01 6.98039215e-03 -4.16574866e-01 -2.69577563e-01\\n-3.43822837e-01 -4.97456305e-02 -1.73592614e-03 -3.06948841e-01\\n2.68069445e-03 -6.63644001e-02 -6.32181644e-01 2.35883236e-01\\n-2.22123325e-01 -2.98697669e-02 1.35699525e-01 3.24799083e-02\\n-4.05016124e-01 -4.21436615e-02 1.90183878e-01 1.27946869e-01\\n-2.61944354e-01 -2.62508035e-01 1.52523324e-01 -1.00188899e+00\\n9.55086276e-02 -2.13378090e-02 -8.59925449e-02 3.44850682e-03\\n-6.64010197e-02 -5.69378734e-01 1.08484477e-01 -3.78643245e-01\\n-7.40260854e-02 -2.36359835e-02 -1.77935869e-01 -3.82951349e-01\\n6.66894987e-02 -7.95539990e-02 -2.78036922e-01 4.15881753e-01\\n-3.99640292e-01 3.00654590e-01 -1.09746747e-01 5.15957139e-02\\n-3.69774527e-03 -2.46386111e-01 1.61697209e-01 -2.61516273e-01\\n-4.01421487e-01 -7.71443620e-02 -3.94240409e-01 -2.76821703e-01\\n3.57873850e-02 -1.53610215e-01 -1.86638400e-01 5.67276217e-02\\n3.73638779e-01 2.47095488e-02 -1.59127712e-01 -2.94166416e-01\\n9.39259678e-02 -4.03371543e-01 1.43163174e-01 -1.32697701e-01\\n-8.23514313e-02 -4.85573411e-02 1.66207984e-01 4.88710515e-02\\n2.04997882e-02 -3.80417973e-01 4.43856895e-01 -2.50555933e-01\\n-3.48599523e-01 9.30380728e-03 3.47732529e-02 1.22084141e-01\\n3.03717852e-01 -6.10043049e-01 8.09883233e-03 3.31897169e-01\\n1.84408203e-01 1.27481028e-01 2.00592205e-01 -6.08587563e-02\\n-2.08650157e-01 3.51026207e-01 -4.32103574e-01 5.26391529e-02\\n7.39688993e-01 1.03679873e-01 4.80277278e-02 2.23765269e-01\\n2.68755585e-01 2.79728711e-01 4.53116268e-01 -6.14792705e-02\\n-1.08761452e-01 2.46584654e-01 4.00902778e-02 -5.60584128e-01\\n-8.19079801e-02 -1.13639809e-01 -2.35606298e-01 -4.45130467e-01\\n5.28547227e-01 4.19264525e-01 -3.58696282e-01 -2.11495176e-01\\n-1.49978608e-01 -1.95933655e-02 2.14915201e-01 -1.91650569e-01\\n2.85303332e-02 -1.09086350e-01 5.22689521e-01 2.33817622e-02\\n3.44725966e-01 5.76641798e-01 -1.00705497e-01 -4.19857830e-01\\n-1.46472007e-01 7.99509585e-02 1.97171360e-01 3.88619274e-01\\n-5.48314080e-02 2.21585870e-01 -4.78931982e-03 1.48326591e-01\\n-4.92946617e-02 1.34689555e-01 1.30722765e-02 3.48390117e-02\\n1.78639799e-01 4.74532433e-02 3.11515361e-01 4.28870976e-01\\n2.12452784e-01 5.22460938e-01 2.77625203e-01 1.18570812e-01\\n4.00064975e-01 6.08640611e-01 3.78539920e-01 1.62183523e-01\\n-6.17025681e-02 1.15506850e-01 -3.20145972e-02 -1.32013381e-01\\n3.20725799e-01 2.34900519e-01 1.06777489e-01 8.96721423e-01\\n4.49434876e-01 3.10035318e-01 8.22513819e-01 -5.25242031e-01\\n-4.49845880e-01 8.07984248e-02 4.30306405e-01 -3.32671404e-01\\n-9.97834131e-02 1.33153394e-01 -2.08684355e-01 2.31077909e-01\\n-4.54648018e-01 -9.72831920e-02 -4.57446463e-02 -3.57262604e-02\\n7.16367364e-02 -1.18041195e-01 -3.09559584e-01 -3.28844264e-02\\n-1.96422726e-01 -1.37569100e-01 -4.35113788e-01 -1.13557264e-01\\n-3.07073414e-01 -1.60342231e-01 -1.84387580e-01 -1.41903803e-01\\n-4.31750268e-02 -3.27618837e-01 -1.70762718e-01 6.36838377e-02\\n3.12531412e-01 -5.77795990e-02 -5.97471707e-02 -2.34154075e-01\\n2.49766469e-01 2.59165406e-01 5.31386673e-01 -3.04018054e-02\\n1.72598854e-01 -1.49280891e-01 -2.80146003e-01 2.45943945e-02\\n1.28066838e-01 4.25493345e-02 1.01034142e-01 4.06463742e-01\\n-3.15971553e-01 -1.21132933e-01 1.78289935e-01 4.70815331e-01\\n-3.65720093e-01 -1.82724502e-02 -5.54929627e-03 2.99797535e-01\\n1.42836750e-01 6.46017864e-02 -2.51224697e-01 1.06767423e-01\\n-3.01643193e-01 -5.51688313e-01 3.36228400e-01 -1.55969128e-01\\n-5.94274607e-03 9.92349982e-02 3.02237481e-01 2.23221362e-01\\n-1.66063339e-01 -6.45069033e-03 -2.30027214e-02 3.03805888e-01\\n1.61926821e-01 3.61758471e-01 -2.70284951e-01 -1.81942612e-01\\n-2.39786342e-01 1.87577620e-01 -2.68125266e-01 1.32000387e-01\\n-1.61910027e-01 3.24789643e-01 4.35116850e-02 1.38164937e-01\\n1.37695134e-01 4.01956551e-02 -2.39966556e-01 -2.63764739e-01\\n-3.34358811e-01 -2.49595091e-01 1.14812411e-01 -1.49073293e-02\\n2.13729322e-01 -3.78666103e-01 -4.26807813e-02 -1.60440341e-01\\n-1.12145901e-01 -2.99565375e-01 6.32503927e-02 -1.10410452e-01]]',\n", + " 'job_description': 'Über unseren Kunden With already 25 000 consultants around the world and revenues of CHF. 2 Bn., our client is already the global leader in innovation and high-tech engineering consulting. In Switzerland, our client employs more than 200 consultants and aims towards large growth. We operate particularly in Life Sciences (Pharma, Biotech, and Medical Devices), Industry (Watches, MEMs), Aerospace, Automotive, Energy, Railways, Finance and Telecoms sectors. Our client deploys activities throughout Switzerland with premises in Zürich, Basel, Lausanne and Geneva. Ihr Aufgabenbereich Detailed requirements analysis, designing, and developing code. Architecture discussion. Coding, testing, debugging, and documenting programs. Revising and updating programs. Integration and deployment scripts. Participating in production support including investigation and fixing bugs. Ihr Profil Education level: Master or Engineering Degree in Software Engineering (EPFL, ETH, HES or equivalent). Requirements: Minimum 7 years of experience in .NET development. Minimum of 4 years of relevant experience with WPF. Proven experience in UI web technologies: HTML, CSS, Javascript. Professional use of programming languages: .NET / C#, ASP.NET, Web Services (WCF), MVC patterns and Web API. Experience with traditional RDBMS databases, such as SQL Server, Oracle SQL, NoSQL. Extensive experience with a common application server (JBoss, IBM Websphere or BEA Weblogic). Microsoft Prism/ MVVM and unity/ IOC grandly appreciated. Experience with Big Data (Hadoop, Teradata) is a plus. Any experience in mobile development (Android, iOS, Xamarin) is a plus. Ability to work with Agile Methodology (Scrum, XP, TFS etc…) Key qualities: You know how to take initiative You like to work in a multidisciplinary team You value knowledge-sharing You must have strong verbal and writing communication capabilities. Ihre Chance Our client offers an exciting tailored career path for your professional and personal development within an international company. You will be accompanied from the beginning with specific coaching and mentoring programs and intensive training on innovation and management in a fast-moving and results driven environment. Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 384',\n", + " 'soft_skills': '[\"Professionalism\", \"Investigation\", \"Management\", \"Operations\", \"Integration\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"NoSQL\", \"ASP.NET\", \"KM Programming Language\", \"Micro Electro-Mechanical Systems (MEMS)\", \"Cascading Style Sheets (CSS)\", \"Life Sciences\", \"Industrialization\", \"IBM WebSphere MQ\", \"Xamarin.ios\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"High Tech Manufacturing\", \"Scrum (Software Development)\", \"Application Servers\", \"Levelling\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Web Services\", \"Medical Devices\", \"Agile Methodology\", \"Finance\", \"Mobile Application Development\", \"Wcf 4\", \"C# (Programming Language)\", \"Pathing\", \"JavaScript (Programming Language)\", \"Production Support\", \"Revisions\", \"Big Data\", \"Android Software Development\", \"SQL Server Reporting Services\", \"Requirements Analysis\", \"Scripting\", \"Prism\", \"Personality Development\", \"Web UI\", \"Application Programming Interface (API)\", \"Debugging\"]',\n", + " 'languages': \"['English', 'Kongo', 'Mongolian', 'Arabic']\"},\n", + " {'company_id': '118',\n", + " 'job_title': 'software engineer java/angular',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.swisscom.ch',\n", + " 'jobdescription_embedded': '[[-4.16965753e-01 1.30104199e-01 4.12405014e-01 6.62759691e-02\\n5.24131119e-01 -1.54747233e-01 -1.10941164e-01 3.15400183e-01\\n5.01498487e-03 -4.59576726e-01 -7.31892511e-02 -2.16326535e-01\\n-7.85968266e-03 6.35129139e-02 2.68234499e-02 2.81249076e-01\\n2.22770005e-01 1.49195611e-01 -5.70747331e-02 2.98343271e-01\\n2.94750719e-03 6.12106640e-04 4.79604304e-02 6.42730057e-01\\n2.36743227e-01 -2.35249307e-02 -1.09836005e-03 1.31894052e-01\\n-2.80982643e-01 -2.08444446e-01 3.20984006e-01 8.68297070e-02\\n-2.55135387e-01 -2.73158967e-01 1.95114147e-02 4.28909529e-03\\n-1.55160323e-01 -1.11353546e-01 -1.64435342e-01 2.09473521e-01\\n-4.63653892e-01 -2.72957653e-01 1.62932873e-01 -4.54873890e-02\\n-1.73800826e-01 -3.21503878e-01 3.67197134e-02 4.73831035e-02\\n1.22575253e-01 -1.79998409e-02 -4.91408706e-01 3.43986124e-01\\n-1.92458361e-01 -6.51295483e-02 3.65059495e-01 5.32947600e-01\\n1.32279560e-01 -5.17428935e-01 -1.20849021e-01 -2.04999149e-01\\n1.13797523e-01 -1.49653954e-02 3.54290940e-02 -3.41850042e-01\\n4.25276220e-01 -2.53574084e-02 -6.66119903e-02 2.89302230e-01\\n-8.39613497e-01 6.77393824e-02 -3.63426059e-01 2.06609238e-02\\n-3.67710322e-01 -3.18991323e-03 -2.33224675e-01 -1.79964557e-01\\n-1.80586711e-01 3.15427184e-01 2.00152975e-02 6.37574717e-02\\n-1.88595518e-01 2.41701156e-01 -1.80167347e-01 1.59231380e-01\\n3.61279190e-01 2.26766855e-01 1.51898175e-01 3.65981787e-01\\n-4.94116664e-01 3.48006397e-01 3.06154937e-01 -3.08871567e-01\\n2.74513632e-01 1.63364306e-01 4.15625036e-01 1.15806662e-01\\n5.63020855e-02 1.32569134e-01 -3.52692641e-02 2.60529876e-01\\n1.74956843e-01 -2.90122896e-01 3.54597578e-03 -1.06906518e-02\\n-2.09732950e-02 -1.97978109e-01 -5.05161695e-02 2.13225916e-01\\n-1.37910724e-01 3.15148264e-01 -2.11975742e-02 -2.24811912e-01\\n1.32495865e-01 -5.09428740e-01 -1.95863158e-01 1.03410311e-01\\n-7.80245364e-02 1.11808166e-01 3.92824113e-01 1.86180040e-01\\n1.61953643e-01 2.58579403e-01 1.44823343e-01 9.15312350e-01\\n-9.76408198e-02 7.21175000e-02 -2.74113327e-01 4.10181344e-01\\n2.95039803e-01 -1.92865103e-01 1.15603603e-01 2.58610994e-01\\n1.07934520e-01 -7.53626525e-02 -1.93637982e-01 2.74594545e-01\\n-4.74146195e-03 -1.30470783e-01 -3.07514757e-01 1.18611164e-01\\n-2.48394772e-01 -4.10477161e-01 5.70455432e-01 5.42136654e-02\\n2.16763198e-01 4.46080267e-02 -1.20422751e-01 -1.27334818e-01\\n-4.69524488e-02 2.91306615e-01 -2.78197229e-02 2.23080143e-01\\n-3.29148352e-01 -1.08958676e-01 -2.85340458e-01 3.84520918e-01\\n-3.57390866e-02 2.34732300e-01 -1.95870429e-01 -7.61557296e-02\\n3.03184748e-01 1.35816082e-01 -3.81674081e-01 2.01700926e-01\\n-8.26081336e-02 -2.75783807e-01 -2.88942140e-02 3.10904443e-01\\n-1.11283638e-01 1.83016554e-01 -2.94257700e-03 -1.62167698e-01\\n3.77638847e-01 2.28634030e-02 1.45538256e-01 -1.29991829e-01\\n3.25775653e-01 -1.85651183e-01 2.04807788e-01 1.34500608e-01\\n-9.24480975e-01 4.20826972e-01 -3.57663147e-02 -1.67947143e-01\\n4.50120904e-02 2.20494881e-01 2.95506090e-01 -3.20345789e-01\\n-9.87959281e-02 -1.30967140e-01 -4.16571736e-01 -3.96771371e-01\\n-3.19675416e-01 -1.39415115e-01 4.35057461e-01 -5.26652992e-01\\n-1.21576801e-01 7.36181214e-02 -6.25250757e-01 4.65291925e-02\\n2.10757092e-01 1.18189856e-01 1.61424309e-01 -3.85909639e-02\\n-5.91973104e-02 -6.01194561e-01 -1.10409640e-01 -5.66511810e-01\\n-4.00432318e-01 3.91143039e-02 -2.22967073e-01 1.61883801e-01\\n2.32775405e-01 -2.22137067e-02 -9.90659371e-03 3.88161391e-02\\n-3.02774340e-01 1.20767765e-01 2.21966311e-01 1.71355829e-01\\n4.19490516e-01 -5.31572066e-02 -4.74512458e-01 6.12745821e-01\\n-1.80613965e-01 3.94169003e-01 2.33826146e-01 -7.68422782e-01\\n5.69250762e-01 3.13053995e-01 -1.58719532e-02 -2.95920402e-01\\n5.03066659e-01 -4.57818836e-01 -6.79840669e-02 1.21548608e-01\\n-3.16965133e-01 -9.12178010e-02 1.11171283e-01 -1.07267901e-01\\n-3.10171127e-01 6.78246856e-01 2.21274793e-01 1.13478517e-02\\n3.61348510e-01 -3.88759911e-01 -2.16541097e-01 -5.25174849e-02\\n-7.59290457e-02 -4.34731841e-01 -3.93855542e-01 -2.99651008e-02\\n2.40504500e-02 -5.79887211e-01 -2.37244666e-01 -3.87573272e-01\\n-9.93303135e-02 -2.74275839e-01 -2.41276845e-01 3.60665202e-01\\n1.75839931e-01 1.30588949e-01 9.85012483e-03 -1.10853761e-01\\n-1.00692220e-01 -5.95754564e-01 -1.51801839e-01 8.11340958e-02\\n3.40381205e-01 2.44508788e-01 7.51497224e-02 -1.70356095e-01\\n4.24038246e-02 4.98554528e-01 -3.67914855e-01 -3.87517810e-01\\n1.88244984e-01 2.30676621e-01 -1.66751146e-01 -3.61844227e-02\\n1.20888636e-01 3.03480566e-01 -1.55497745e-01 2.45344527e-02\\n-2.52503976e-02 5.61942812e-03 3.57555002e-01 -1.76548809e-01\\n-3.32578778e-01 -3.08885664e-01 -1.60639398e-02 2.64064312e-01\\n-4.83480006e-01 -1.65796533e-01 5.09334385e-01 3.20726454e-01\\n1.23452082e-01 2.50657916e-01 2.68863589e-01 -1.10400707e-01\\n-2.98446804e-01 -1.98842838e-01 1.55635148e-01 2.41629958e-01\\n6.32404834e-02 -1.25994354e-01 -2.15171218e-01 -4.25918430e-01\\n-3.71031594e+00 -2.06708834e-01 7.64100179e-02 -2.50097185e-01\\n1.60580367e-01 -2.03822985e-01 1.52532831e-01 -2.91017685e-02\\n-2.54189640e-01 1.59514591e-01 -1.55910194e-01 -2.08235398e-01\\n8.34776908e-02 2.60665536e-01 1.21871129e-01 1.79051265e-01\\n-1.36366012e-02 -2.23522887e-01 8.75492208e-03 1.49504662e-01\\n-5.27866520e-02 -7.54071355e-01 1.14222683e-01 -5.51748788e-03\\n2.78662026e-01 1.88581184e-01 -4.84750569e-01 3.47348899e-02\\n-2.65270740e-01 -2.81141222e-01 9.62765813e-02 -2.68056661e-01\\n-4.54057008e-02 1.93962872e-01 1.04722910e-01 -1.37201622e-01\\n1.05578318e-01 -1.59167096e-01 -7.62828216e-02 -4.80932504e-01\\n9.49903280e-02 -3.57180685e-01 9.43092406e-02 7.17177391e-02\\n6.98014319e-01 -5.09829760e-01 1.73476100e-01 1.48964942e-01\\n1.67947039e-01 2.08687767e-01 8.41878727e-03 -2.87849805e-03\\n-2.38069981e-01 -2.74399132e-01 -1.11900508e-01 -3.36805135e-01\\n5.15845537e-01 4.69196230e-01 -3.53009135e-01 9.41464677e-02\\n1.16820678e-01 -2.89207309e-01 -3.86897951e-01 -6.34125531e-01\\n-2.02307075e-01 -6.29894882e-02 -8.47320497e-01 -4.50233817e-01\\n-1.35690004e-01 -8.88980031e-02 -1.29135624e-01 5.61428905e-01\\n-3.07437688e-01 -5.64943016e-01 1.59795150e-01 -5.41460514e-01\\n1.51367202e-01 -1.92374423e-01 9.74119231e-02 -1.53761804e-01\\n-2.90510237e-01 -4.35157329e-01 1.75956205e-01 7.71812350e-02\\n-1.83545440e-01 -1.01211995e-01 7.09175989e-02 -3.59477192e-01\\n-2.80232936e-01 -4.22915161e-01 4.50320065e-01 9.78807583e-02\\n3.22098166e-01 1.40627414e-01 3.01782966e-01 1.64809331e-01\\n2.68706083e-01 -1.13207392e-01 2.21518688e-02 -4.36120450e-01\\n2.26189539e-01 -4.72658500e-02 4.52802300e-01 -1.24808170e-01\\n6.96225930e-03 2.28588402e-01 -9.00310278e-02 -2.20794380e-01\\n4.75347549e-01 7.92894512e-02 1.12674832e-01 -2.52055973e-01\\n4.57653731e-01 -5.35212696e-01 -2.66738504e-01 3.03288907e-01\\n4.15205173e-02 5.70316076e-01 1.51331648e-01 -3.41046005e-01\\n-1.91799864e-01 3.31092447e-01 9.03495699e-02 -1.91132590e-01\\n-1.00879692e-01 5.85719645e-02 -2.56096214e-01 2.22761318e-01\\n5.98856434e-02 -2.56870925e-01 -2.68317491e-01 -7.40766600e-02\\n6.12970218e-02 1.89645544e-01 2.69917220e-01 8.65752809e-03\\n-3.24452370e-02 -1.71158478e-01 5.55060953e-02 -2.52961256e-02\\n2.33417749e-01 3.12664837e-01 2.26507843e-01 -2.49126509e-01\\n2.45479606e-02 2.34137237e-01 -1.51635721e-01 1.72924548e-01\\n-1.14183106e-01 1.40568158e-02 -4.59291816e-01 -2.65914470e-01\\n-2.19637409e-01 -1.96592078e-01 -2.56383289e-02 2.07217753e-01\\n1.68785259e-01 -1.27785355e-01 -3.66337597e-02 -4.36480850e-01\\n3.42743725e-01 1.07747324e-01 2.18913108e-01 1.58411354e-01\\n-4.88634594e-03 5.89559853e-01 -1.00946046e-01 -1.35332450e-01\\n-6.29404485e-02 4.68722433e-02 -1.13991290e-01 -3.14046621e-01\\n7.06611350e-02 -3.69416475e-01 -1.40634641e-01 3.98946881e-01\\n8.17260370e-02 -1.59549892e-01 -1.17849052e-01 3.07710290e-01\\n5.91988042e-02 -3.41218084e-01 -2.01079324e-01 8.43514130e-02\\n3.44300330e-01 1.44250751e-01 1.22745007e-01 -3.40225190e-01\\n-5.21201305e-02 3.62516451e-03 1.31625682e-02 4.77725565e-01\\n1.40264615e-01 1.15722409e-02 -1.52682262e-02 -3.83803397e-01\\n3.76472950e-01 -3.43810841e-02 -1.17076293e-01 -2.20121160e-01\\n6.05035946e-02 -1.94559053e-01 -3.60515416e-01 7.63352588e-02\\n-9.53050181e-02 -1.84883550e-01 1.77356422e-01 -2.96661220e-02\\n1.34988353e-01 -5.68971746e-02 -5.65454602e-01 -3.54356378e-01\\n-4.50919271e-01 -5.65552749e-02 -3.97699550e-02 -2.60951251e-01\\n1.62301272e-01 -6.83107376e-02 -6.40741289e-01 3.22200507e-01\\n-1.33710369e-01 2.98819542e-02 -4.24663201e-02 1.28247902e-01\\n-4.25150752e-01 3.91874872e-02 2.30269343e-01 1.44947588e-01\\n-3.69862467e-01 -2.41471455e-01 9.64986682e-02 -7.26475656e-01\\n1.49814293e-01 -4.67106141e-02 1.82336811e-02 7.44731259e-03\\n-3.07640061e-02 -6.07158422e-01 8.18970576e-02 -1.98816374e-01\\n-2.11938024e-01 2.94022262e-02 -2.54669875e-01 -4.07304406e-01\\n5.17774411e-02 2.51599178e-02 -1.33850962e-01 3.24586093e-01\\n-5.18390298e-01 2.39376634e-01 -6.41655698e-02 -6.40304610e-02\\n2.30907239e-02 -3.23037416e-01 1.52388439e-01 -2.26431146e-01\\n-4.70235020e-01 -1.68607205e-01 -3.27592522e-01 -2.57250100e-01\\n-1.48808584e-01 -3.88059318e-01 -1.54103070e-01 8.20179209e-02\\n3.56649637e-01 1.05882414e-01 -9.90509242e-02 -1.16317049e-01\\n8.70532915e-02 -2.69588232e-01 3.86495404e-02 -3.29617798e-01\\n1.04773685e-01 -1.45419151e-01 2.24165753e-01 -2.11259305e-01\\n1.69271126e-01 -4.00312603e-01 4.71799880e-01 -1.63305491e-01\\n-3.24291140e-01 -1.36818692e-01 1.15733683e-01 8.35935622e-02\\n3.26394051e-01 -3.92056018e-01 2.40395544e-03 2.35812396e-01\\n1.28508076e-01 8.09123740e-02 2.13397995e-01 -1.11992583e-01\\n-1.19032852e-01 2.84677863e-01 -4.12001431e-01 1.74837843e-01\\n6.94359481e-01 1.08362257e-01 2.87316084e-01 1.81212306e-01\\n2.01477632e-01 4.70642686e-01 3.82438779e-01 -1.65630430e-02\\n1.82134192e-02 3.38364363e-01 1.38883397e-01 -3.77498358e-01\\n-1.13297805e-01 -7.21196905e-02 -1.81230173e-01 -2.78479338e-01\\n5.90270936e-01 4.48540926e-01 -3.19836468e-01 -2.30239674e-01\\n-1.50932416e-01 -1.63957879e-01 2.83457011e-01 -1.63493901e-01\\n7.31403306e-02 -2.05569267e-01 4.92319077e-01 -1.58148259e-02\\n3.59941721e-01 6.27415657e-01 -1.83655605e-01 -3.56612891e-01\\n-1.25856921e-01 2.19271988e-01 1.73008025e-01 4.24125940e-01\\n-4.18089740e-02 2.22565442e-01 6.46811202e-02 1.99034289e-01\\n-2.32563674e-01 1.08026415e-01 1.39667809e-01 3.76389059e-03\\n2.09188610e-01 2.04737633e-01 2.71923214e-01 4.81290251e-01\\n2.00560242e-01 5.03998578e-01 2.45639205e-01 1.07631296e-01\\n4.00016040e-01 5.61661601e-01 3.57929498e-01 2.30250835e-01\\n3.77309546e-02 -6.58496171e-02 5.62515222e-02 -2.24808007e-02\\n2.65263855e-01 3.65401745e-01 2.04275697e-01 9.61841822e-01\\n4.26072598e-01 3.40301484e-01 7.16388226e-01 -6.38603687e-01\\n-2.23219424e-01 1.33489519e-01 3.41158897e-01 -4.05229300e-01\\n-7.45538399e-02 -1.82763748e-02 -1.94842234e-01 3.10239017e-01\\n-3.82595688e-01 -6.64950386e-02 -7.36969858e-02 4.09397446e-02\\n4.37910408e-02 -8.55748877e-02 -2.70717174e-01 3.46050821e-02\\n-2.68448144e-01 -5.26038297e-02 -3.00674558e-01 -1.81628123e-01\\n-3.98996711e-01 -1.02000639e-01 -3.25170532e-02 -4.89291251e-02\\n8.54481906e-02 -3.75761181e-01 -1.16685785e-01 -3.08248736e-02\\n5.13482273e-01 -2.74440557e-01 -7.53607079e-02 -5.46776950e-02\\n1.25323206e-01 3.97798240e-01 5.97222090e-01 -5.14587946e-03\\n2.01593131e-01 -1.29633933e-01 -1.31169349e-01 -3.58453835e-03\\n8.86023045e-02 1.40538946e-01 3.43197733e-02 4.84244794e-01\\n-3.69804710e-01 -1.52543988e-02 1.49311438e-01 4.01481748e-01\\n-3.73973459e-01 -1.26186624e-01 -2.93826754e-03 2.16573909e-01\\n-1.34283083e-03 2.31182337e-01 -4.00869280e-01 1.16140082e-01\\n-2.84557730e-01 -5.14003158e-01 4.82769072e-01 -3.09981853e-01\\n1.45161916e-02 -3.69073376e-02 3.51175070e-01 2.83484727e-01\\n-1.01108514e-01 -6.14298172e-02 6.03399910e-02 1.74972430e-01\\n2.59292163e-02 4.61997539e-01 -2.08805770e-01 -5.52008264e-02\\n-4.52130049e-01 2.80071557e-01 3.07434350e-02 6.05844110e-02\\n-1.27791241e-01 3.38768244e-01 -5.31824008e-02 2.49198541e-01\\n1.60466686e-01 -1.64894044e-01 -3.44681621e-01 -3.45432103e-01\\n-2.19625250e-01 -1.98326588e-01 2.37062022e-01 -2.17157409e-01\\n2.00774014e-01 -3.07922751e-01 -2.06978008e-01 -4.11195308e-02\\n-8.21736902e-02 -3.61798257e-01 -1.27709150e-01 5.85834049e-02]]',\n", + " 'job_description': 'The application provides frontend and backend features to configure data center / core backbones. Our partners and cloud platforms can integrate these into their customer dashboards. This enables customer-specific configuration of the network on demand. You develop backend functions in Java for the orchestration tools and attractive user interfaces in Angular7 for our customers. To implement the requirements of different areas, you always find the technically and economically optimal solution. Degree (ETH/Uni/UAS) in computer science Several years of experience in Java and Spring development (DevOps environment) Good knowledge of web technologies (e.g. Angular7) as well as software architecture and design Know-how in CI/CD and business process modelling, practical experience in developing microservice-oriented software for database systems Several years of experience in developing network orchestration tools is a plus Solution-oriented, assertive, communicative Good German and English',\n", + " 'soft_skills': '[\"Assertiveness\", \"Communications\", \"Integration\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Computer Science\", \"E (Programming Language)\", \"Cloud Platform System\", \"Process Modeling\", \"Microservices\", \"Dashboard\", \"Data Centers\", \"Business Process Modeling\", \"Business Process\", \"Software Architecture\", \"Develop Networks\", \"Database Systems\", \"Unmanned Aerial Systems (UAS)\", \"Economics\", \"Java (Programming Language)\", \"User Interface\", \"Custom Backend\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Shona', 'Sango', 'Gaelic', 'Nauru']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'clinical database developer',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.68560281e-01 4.86681968e-01 3.66085529e-01 -2.04478484e-02\\n5.87187111e-01 -2.46527672e-01 -7.28633627e-02 1.55251235e-01\\n-6.58313408e-02 -1.05748273e-01 -2.22682968e-01 -7.55839944e-02\\n9.79829952e-02 1.45604283e-01 1.98571354e-01 4.86466646e-01\\n3.86392385e-01 2.18806863e-02 8.20364133e-02 2.05639333e-01\\n7.26672113e-02 -1.83295324e-01 3.67924459e-02 5.90038359e-01\\n2.74913996e-01 1.06455155e-01 -4.58606444e-02 1.08608514e-01\\n-3.13255429e-01 -3.32061917e-01 4.52678949e-01 -2.18480621e-02\\n-1.81287169e-01 -7.24749416e-02 1.65782809e-01 1.79669544e-01\\n-3.06512296e-01 7.02212229e-02 -1.79152682e-01 8.37668628e-02\\n-4.49693114e-01 -1.81056499e-01 -1.29891872e-01 1.03442214e-01\\n-3.11710626e-01 -3.38022560e-01 1.37747362e-01 -1.88123688e-01\\n8.23829398e-02 1.06810212e-01 -4.88927275e-01 2.96919405e-01\\n-3.96460176e-01 -1.24455653e-01 3.23220640e-01 7.03162670e-01\\n4.28794362e-02 -5.52584410e-01 -4.10397381e-01 -2.08542526e-01\\n1.81494027e-01 -1.44335032e-01 2.86549963e-02 -1.87727481e-01\\n5.18172681e-01 -3.48430611e-02 1.03587308e-03 2.84309894e-01\\n-6.94705188e-01 -6.99295551e-02 -4.94929403e-01 9.11390111e-02\\n-3.90751481e-01 1.75121333e-02 -4.45953637e-01 -7.11274818e-02\\n1.91181680e-04 2.86413282e-01 -1.27695709e-01 -4.76878919e-02\\n-9.51963142e-02 2.77056128e-01 -3.31757516e-01 1.80138588e-01\\n2.52496183e-01 1.81494817e-01 2.65657425e-01 2.66098440e-01\\n-3.40561569e-01 5.03526568e-01 2.86573827e-01 -2.36302882e-01\\n2.75807865e-02 3.19409110e-02 3.39604080e-01 1.41111434e-01\\n-1.10450894e-01 9.44928527e-02 -1.57291278e-01 2.21507698e-01\\n1.76824987e-01 -1.07992850e-01 2.24937554e-02 2.12741364e-02\\n-1.01921447e-01 -1.00012869e-01 -5.95358089e-02 2.02064440e-01\\n-4.16203767e-01 3.73272747e-01 1.69335157e-01 -1.82169855e-01\\n-1.08955260e-02 -7.20351040e-01 -1.56407863e-01 1.15327522e-01\\n1.17388614e-01 1.97736293e-01 2.28200763e-01 4.93099123e-01\\n2.50589579e-01 -5.67625053e-02 1.58501521e-01 7.57764637e-01\\n-1.12613784e-02 1.76216528e-01 -7.12545142e-02 3.54674041e-01\\n3.50010134e-02 -1.63224474e-01 6.31615222e-02 3.35125715e-01\\n6.14754073e-02 -1.78886816e-01 -3.30058157e-01 2.48454481e-01\\n-5.32297790e-02 -2.57002681e-01 -2.64033079e-01 1.28997117e-01\\n-8.99011567e-02 -5.28241515e-01 4.31227714e-01 -1.56025052e-01\\n3.85102555e-02 -8.96073207e-02 -2.08254248e-01 -2.30822433e-02\\n-1.32130489e-01 4.48131472e-01 2.99089044e-01 1.97991699e-01\\n-1.63361549e-01 -2.21884996e-01 -6.18459769e-02 2.09032059e-01\\n-1.13737784e-01 1.53609276e-01 -3.44211102e-01 -1.91077992e-01\\n3.17667067e-01 1.96626112e-01 -5.11676550e-01 3.04898113e-01\\n8.91920459e-03 -8.12718570e-02 -1.02392405e-01 3.99749666e-01\\n-2.13563628e-02 1.22042015e-01 -1.31196737e-01 -2.75553197e-01\\n3.73715818e-01 7.06698652e-03 3.48300874e-01 -1.53970882e-01\\n4.21449870e-01 -1.48500353e-01 3.44346911e-01 5.51659428e-02\\n-6.03439033e-01 4.10731465e-01 -5.92194051e-02 -2.28632972e-01\\n2.29128495e-01 -1.36510404e-02 6.28236294e-01 -2.92134851e-01\\n4.65101488e-02 -1.81562632e-01 -3.12519312e-01 -3.34721208e-01\\n-1.92188665e-01 -1.03871539e-01 3.47810477e-01 -4.08198655e-01\\n2.25167334e-01 2.81307429e-01 -5.64418554e-01 -1.26150027e-01\\n3.54979634e-01 3.11255187e-01 2.63648421e-01 1.68868333e-01\\n-1.06754452e-01 -5.48622966e-01 1.74592406e-01 -5.09275734e-01\\n-2.92663842e-01 1.52679205e-01 -1.54337525e-01 2.61495054e-01\\n1.88902393e-02 1.53544499e-02 1.23083591e-01 -4.05280851e-02\\n-2.69141257e-01 1.10517725e-01 2.49509320e-01 4.31743041e-02\\n3.11115652e-01 -5.57305254e-02 -4.55954164e-01 5.76230824e-01\\n-2.83205330e-01 4.94328409e-01 1.24147512e-01 -7.99203992e-01\\n5.30896962e-01 2.51967013e-01 5.46083897e-02 -2.95430005e-01\\n7.33345568e-01 -3.17502648e-01 1.77035499e-02 1.60075754e-01\\n-4.11401868e-01 -1.48806766e-01 2.20626369e-01 -1.86839163e-01\\n-2.59845763e-01 6.03980243e-01 1.69175774e-01 -1.74813241e-01\\n3.94455880e-01 -2.01470107e-01 -2.41836548e-01 4.11278792e-02\\n-2.31337637e-01 -4.17878032e-02 -3.48479033e-01 -4.67761699e-03\\n-3.29631083e-02 -5.29091358e-01 -2.19337866e-01 -3.27506751e-01\\n-1.97808906e-01 -4.12582248e-01 -2.25202367e-01 1.63108453e-01\\n2.94099525e-02 1.53081641e-01 2.95570157e-02 7.54131842e-03\\n-2.77212393e-02 -6.44629240e-01 -2.26978473e-02 5.41828312e-02\\n2.63514638e-01 4.37330782e-01 3.08005393e-01 -1.70579895e-01\\n-6.15834780e-02 4.35802013e-01 -4.18911964e-01 -3.78330141e-01\\n2.39216670e-01 7.86989555e-02 -9.39939171e-03 3.83936577e-02\\n1.66753754e-01 1.65923908e-01 -1.09478436e-01 -4.71647736e-03\\n-1.43641353e-01 5.58918901e-02 2.46250659e-01 -5.58691658e-02\\n-1.50145233e-01 -2.96077222e-01 -2.28679582e-01 3.73295933e-01\\n-5.55744171e-01 -4.51806337e-01 3.99015039e-01 9.40045863e-02\\n-4.81348857e-02 3.32462579e-01 3.54473591e-01 1.50509411e-02\\n-1.49133906e-01 -1.92415789e-01 3.02498996e-01 9.00284201e-02\\n5.91730922e-02 1.02111861e-01 -3.06883276e-01 -4.89227802e-01\\n-3.68908787e+00 -1.71683699e-01 -4.37697023e-03 -2.99511462e-01\\n3.40820104e-01 -3.97793874e-02 2.90705204e-01 -1.84709262e-02\\n-3.08123142e-01 1.79027375e-02 -2.84664392e-01 -1.24278851e-01\\n1.90220356e-01 3.54641378e-01 5.78620955e-02 1.69575810e-01\\n-7.91746601e-02 -4.52922642e-01 7.18482062e-02 5.12359381e-01\\n-6.32933481e-03 -8.91038895e-01 -5.57616912e-03 -1.44528374e-01\\n1.03657655e-01 1.45292267e-01 -5.61869740e-01 9.80626270e-02\\n-3.71791929e-01 -3.15129697e-01 1.88382834e-01 -2.28532106e-01\\n-9.30480883e-02 2.55030781e-01 1.44544736e-01 -1.15916848e-01\\n-2.49161571e-02 -1.05254836e-01 5.06465547e-02 -6.25242889e-01\\n1.39055058e-01 -7.89402604e-01 -1.05835330e-02 9.47473347e-02\\n5.55384398e-01 -1.95627242e-01 2.99044162e-01 1.34232789e-01\\n1.09461628e-01 2.57667780e-01 9.71452892e-02 -3.58233489e-02\\n-2.74826944e-01 -2.76571840e-01 -1.91612646e-01 -1.32931396e-01\\n5.19695044e-01 4.14197385e-01 -3.95292044e-01 3.06542329e-02\\n9.13037136e-02 -4.31805581e-01 -6.04953706e-01 -4.76485401e-01\\n-2.84407109e-01 -3.93337235e-02 -7.31427550e-01 -5.40723145e-01\\n-1.96784794e-01 5.09702088e-03 7.74462847e-03 5.84109902e-01\\n-5.24256766e-01 -4.35782313e-01 -4.01459821e-02 -7.19916463e-01\\n3.88339043e-01 -1.62912980e-01 1.18710183e-01 -2.77258307e-01\\n-2.40868852e-01 -4.07298148e-01 1.74358949e-01 1.21211752e-01\\n-1.65348470e-01 4.82334197e-02 1.06161050e-01 -1.28368124e-01\\n-4.90997583e-01 -6.62565231e-01 4.35149580e-01 6.03361009e-03\\n3.93211931e-01 9.98159796e-02 1.76750913e-01 -4.92063724e-02\\n4.97342139e-01 -1.41848242e-02 1.33379176e-01 -5.19317329e-01\\n2.14645136e-02 7.26893172e-02 6.22243166e-01 -2.74458736e-01\\n-3.11782267e-02 4.89086136e-02 -3.27343911e-01 -1.05109774e-02\\n3.60379964e-01 -1.24242164e-01 5.39791733e-02 -1.92020550e-01\\n4.49660569e-01 -4.48704600e-01 -3.05286437e-01 1.81378514e-01\\n8.17829370e-02 6.83981895e-01 1.98301561e-02 -2.50770092e-01\\n-1.24911770e-01 5.18753529e-01 -1.28571585e-01 3.24374512e-02\\n-1.25816375e-01 3.80167179e-02 -2.02260971e-01 3.09285492e-01\\n5.28839864e-02 -1.06283955e-01 -3.41085672e-01 -3.46607566e-02\\n-2.54158434e-02 1.08791322e-01 3.07576001e-01 1.29410088e-01\\n-1.01829588e-01 -1.51821032e-01 8.56233239e-02 2.05802232e-01\\n2.43720591e-01 3.14294070e-01 1.98645383e-01 -2.81681865e-01\\n1.59514114e-01 1.36079237e-01 -2.14612082e-01 4.08221096e-01\\n-2.22169846e-01 9.60678309e-02 -4.45303291e-01 -1.83044851e-01\\n-2.58694351e-01 -2.41452426e-01 4.87098806e-02 1.98881790e-01\\n2.51475334e-01 -8.21784586e-02 1.15739822e-01 -6.22132123e-01\\n2.36071140e-01 -5.72002046e-02 1.99729502e-01 -2.00653039e-02\\n-1.96126048e-02 6.55131042e-01 -9.40204635e-02 -1.71967983e-01\\n-1.01202771e-01 1.25528336e-01 -2.39509702e-01 -2.21570820e-01\\n1.83175623e-01 -3.73027921e-01 -2.13975847e-01 3.47458810e-01\\n1.75267413e-01 -2.50084382e-02 -1.76661670e-01 4.09010231e-01\\n-2.26706080e-02 -4.27673995e-01 -2.25141659e-01 1.11307569e-01\\n1.54992893e-01 2.47268736e-01 1.80334955e-01 -4.64837193e-01\\n1.91410128e-02 -6.04266189e-02 1.45941466e-01 3.89567852e-01\\n7.47549832e-02 7.40541071e-02 -1.48085788e-01 -2.12737203e-01\\n3.00801277e-01 7.72340596e-02 -1.61436442e-02 2.63567753e-02\\n2.46392250e-01 -1.82521522e-01 -3.27939481e-01 -1.38957694e-01\\n-6.61976123e-03 -2.27547169e-01 -4.55591567e-02 6.60495162e-02\\n3.25397365e-02 -1.31943785e-02 -4.69185680e-01 -2.13031188e-01\\n-4.99778509e-01 7.59211332e-02 -1.05219208e-01 -5.58243811e-01\\n-1.42764971e-01 1.90961566e-02 -5.62448621e-01 2.44937956e-01\\n1.62002727e-01 1.24564104e-01 2.09941342e-01 1.25718117e-01\\n-3.25594395e-01 -1.36200637e-01 1.97895601e-01 -1.50032088e-01\\n-3.35141659e-01 -1.21711254e-01 -1.12406656e-01 -9.49571490e-01\\n5.19356988e-02 -1.00372769e-01 -1.85237706e-01 -6.74441978e-02\\n-2.03575209e-01 -4.40119237e-01 2.55929708e-01 -3.19189221e-01\\n-2.68733174e-01 8.90868679e-02 -2.12066576e-01 -3.95988107e-01\\n6.35863394e-02 -4.13218290e-02 -1.44288510e-01 2.96998173e-01\\n-3.67379248e-01 5.10733485e-01 -9.25207958e-02 -1.64414360e-03\\n7.00171739e-02 -2.13520110e-01 2.27486029e-01 -1.25856474e-01\\n-3.23976904e-01 -1.02901392e-01 -3.17729652e-01 -1.34588510e-01\\n1.04841255e-01 -2.23519772e-01 -1.47741616e-01 7.65471607e-02\\n4.19747442e-01 1.94867160e-02 -1.08509161e-01 4.70741726e-02\\n4.95036598e-03 -4.37013656e-01 1.41614303e-01 -3.32222939e-01\\n-1.55060859e-02 -1.68393746e-01 3.40625614e-01 -1.24884993e-01\\n2.76548058e-01 -3.65130424e-01 7.41309941e-01 -2.12202564e-01\\n-4.02636051e-01 1.50811933e-02 2.33168602e-01 9.01967213e-02\\n2.92385727e-01 -4.85284030e-01 -1.43646494e-01 4.06657904e-01\\n-3.26638925e-03 2.93990001e-02 3.89123261e-01 -1.93818152e-01\\n-3.85461748e-01 2.17758015e-01 -6.15916371e-01 1.71599641e-01\\n7.23630488e-01 3.68036002e-01 1.75260991e-01 6.41833842e-02\\n9.33544040e-02 3.85443032e-01 6.65354013e-01 -1.47998020e-01\\n-5.77385090e-02 3.90731394e-01 9.79045555e-02 -6.17084026e-01\\n-1.87427074e-01 -5.05152792e-02 -7.43524060e-02 -3.81466389e-01\\n6.23678505e-01 2.79082835e-01 -4.22845781e-01 -3.77291173e-01\\n-3.04208219e-01 -2.55536854e-01 1.79399401e-01 5.31424992e-02\\n1.21399730e-01 -3.18675578e-01 5.51212013e-01 -2.42802477e-03\\n2.27090523e-01 4.57185298e-01 -1.90935016e-01 -2.43773878e-01\\n1.84934795e-01 1.64315984e-01 1.85541183e-01 3.10098320e-01\\n3.04405242e-02 1.78469971e-01 -6.82984293e-02 1.63802758e-01\\n-2.28550553e-01 -2.76485503e-01 1.76225334e-01 1.92592312e-02\\n3.55033726e-02 2.55160689e-01 4.76495922e-01 4.28284049e-01\\n3.16479862e-01 4.00882512e-01 1.36859268e-01 5.92119433e-03\\n4.52715665e-01 5.73742986e-01 2.49000639e-01 8.55507180e-02\\n6.88674897e-02 1.83812648e-01 8.77671912e-02 1.52575195e-01\\n3.12801749e-01 2.78387070e-01 1.03773803e-01 6.72179341e-01\\n5.42753004e-02 3.41798753e-01 6.56069875e-01 -4.36897367e-01\\n-2.35313088e-01 7.25249499e-02 4.42236125e-01 -4.18397933e-01\\n9.35086235e-02 1.25925303e-01 -2.40521491e-01 1.94508836e-01\\n-6.76722288e-01 -1.95459187e-01 2.39629578e-03 -6.97698221e-02\\n7.41876587e-02 -1.35813102e-01 -3.89732420e-02 2.95729041e-02\\n-1.20592050e-01 -2.06858248e-01 -2.33948186e-01 -4.72765803e-01\\n-4.18748409e-01 -1.40443280e-01 2.90774647e-02 -7.48938918e-02\\n1.09027410e-02 -2.83599406e-01 -2.97835588e-01 7.17386156e-02\\n3.40595663e-01 -2.73021340e-01 -1.61091506e-01 -1.58825576e-01\\n3.00577313e-01 1.93100587e-01 7.18517661e-01 -1.20732017e-01\\n5.38749285e-02 -1.14536278e-01 -1.57240987e-01 -2.70104520e-02\\n1.53698102e-01 5.04470207e-02 1.06326260e-01 6.46555722e-01\\n-3.19105446e-01 -2.37292588e-01 1.83037564e-01 3.62156004e-01\\n-3.35848451e-01 -1.01055987e-01 8.47785473e-02 1.87121525e-01\\n5.34312576e-02 1.28071442e-01 -2.84901828e-01 8.04541931e-02\\n-2.69391984e-01 -5.41143060e-01 2.65248686e-01 -6.24122545e-02\\n-3.26482773e-01 6.26728963e-03 5.40157378e-01 3.63774359e-01\\n-2.12363480e-03 -1.05618583e-02 -2.70550579e-01 1.97846144e-01\\n-1.16404658e-02 3.94765288e-01 -2.77920783e-01 -1.33807555e-01\\n-4.02474254e-01 3.50736082e-01 -2.11011041e-02 2.46636823e-01\\n-5.01717515e-02 3.80953997e-01 4.14801799e-02 2.18504056e-01\\n2.64451206e-01 -1.68413222e-01 -3.08688372e-01 -4.05884296e-01\\n-1.59014151e-01 -8.22703466e-02 2.47341916e-01 -1.15853280e-01\\n1.46781072e-01 -4.42090958e-01 -1.57109857e-01 -2.94182420e-01\\n-1.51223332e-01 -3.54026049e-01 -2.04641327e-01 1.63526177e-01]]',\n", + " 'job_description': 'We are looking for a Clinical Database Developer who will provide Clinical Data Management support to the Clinical Research Department in all phases of projects related to clinical development programs. Key Responsibilities: Databases setup, testing and maintenance Data system compliance by following guidelines of international regulatory authorities and internal policies Specifications related to data management: data transfers, Data Management Plan (DMP) Data Validation Plan (DVP), internal tools Implementation of edit checks Execution of User Acceptance Tests (UAT) for electronic case report forms (eCRF) and edit checks Review of external data specifications Data transfers with other functions and CRO Design and development of data management tools Development and maintenance of procedures and working instructions necessary to support clinical data management conforming to the function quality standards and regulation in the clinical environment. Education / Qualifications: At least two years of clinical database development experience is required, gained in the pharmaceutical industry, CRO or Life science related industry Some experience working with Oracle and clinical database applications is required Knowledge of SQL, PL-SQL, SAS, VBA, Excel, Access and CDISC Understanding of the research environment and good knowledge of global regulatory requirements such as ICH GCP and CFR 21 part 11 Ability to prioritize multiple tasks and manage time efficiently Detail-oriented with excellent organizational and communication skills Fluency in English is required (oral and written). ',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Editing\", \"Planning\", \"Time Management\", \"Detail Oriented\", \"Prioritization\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Database Application\", \"Tooling\", \"Accessioning\", \"Clinical Decision Support\", \"Data Validation\", \"Life Sciences\", \"Data Management\", \"SAS (Software)\", \"Regulatory Requirements\", \"Pre-Clinical Development\", \"Database Development\", \"Quality Function Deployment (QFD)\", \"Industrialization\", \"Case Report Forms\", \"External Data Representation\", \"PHP Development Tools\", \"Executable\", \"Data Definition Specification\", \"Professional Development Programs\", \"Data Management Plan\", \"Electronics\", \"Clinical Research\", \"Acceptance Test Procedures\", \"Clinical Data Management\", \"Pharmaceuticals\", \"Instructing\", \"Industrial Relations\", \"Google Cloud Platform (GCP)\", \"Data Transfer Object\", \"Title 47 CFR Part 15\", \"Integrated Maintenance Data System\"]',\n", + " 'languages': \"['English', 'Ukrainian', 'Tswana']\"},\n", + " {'company_id': '111',\n", + " 'job_title': 'sr data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Beauty & Personal Accessories Shops',\n", + " 'website': 'www.swarovskigroup.com',\n", + " 'jobdescription_embedded': '[[-2.09799975e-01 2.45371357e-01 6.03603840e-01 6.65826350e-02\\n6.28002167e-01 -5.45458421e-02 -6.58793822e-02 2.91150063e-01\\n-6.86659962e-02 -2.81901330e-01 -1.01180449e-01 -2.93105602e-01\\n-4.69956063e-02 1.10560685e-01 1.52176216e-01 4.46738005e-01\\n1.84649959e-01 6.83167763e-03 -1.40062466e-01 3.86521727e-01\\n1.60238087e-01 -7.46410787e-02 1.35514885e-01 6.91295743e-01\\n4.71817344e-01 -7.00502619e-02 -1.84293017e-01 7.81575888e-02\\n-3.05802584e-01 -2.15384960e-01 4.40561414e-01 1.01593733e-01\\n-2.21173674e-01 -2.81539381e-01 1.46945849e-01 1.27915904e-01\\n-2.39650205e-01 -1.07696213e-01 -4.91712093e-02 2.10452095e-01\\n-4.77263451e-01 -1.86048687e-01 -1.93999968e-02 5.71769997e-02\\n-4.58154023e-01 -3.44038099e-01 -1.64944798e-01 -4.65223044e-02\\n-1.71431303e-02 -3.47411372e-02 -5.08247018e-01 5.07455289e-01\\n-1.87961996e-01 -3.32929909e-01 1.81491062e-01 7.77180195e-01\\n8.16262960e-02 -4.41816837e-01 -2.88736641e-01 -3.22279125e-01\\n1.39828607e-01 -1.39261201e-01 1.05930358e-01 -2.60379732e-01\\n3.49323750e-01 -1.18844472e-01 -4.92149815e-02 3.73246312e-01\\n-8.06652904e-01 -1.02319047e-02 -2.64190763e-01 1.28488140e-02\\n-3.59484255e-01 6.32514060e-03 -4.15515184e-01 -1.07252255e-01\\n-2.61936449e-02 4.68915761e-01 -3.26903500e-02 1.79436989e-02\\n-1.88427016e-01 1.56293541e-01 -2.56668031e-01 2.16429219e-01\\n2.87340581e-01 2.70213604e-01 3.00496101e-01 3.69778156e-01\\n-4.05632734e-01 4.71168667e-01 1.73107982e-01 -3.42354000e-01\\n3.28884304e-01 2.00922936e-01 3.90934616e-01 1.26115218e-01\\n4.34674844e-02 1.83341235e-01 -1.95466250e-01 1.70233279e-01\\n1.53203428e-01 -3.74033451e-01 5.72343618e-02 -1.04884446e-01\\n-2.90690362e-03 -8.55158493e-02 3.33965756e-02 3.21339548e-01\\n-3.69909763e-01 3.80383641e-01 7.14902654e-02 -2.31179118e-01\\n-5.78089990e-02 -5.07297933e-01 -5.90494126e-02 4.60678712e-04\\n2.27862056e-02 3.68130505e-01 2.67655194e-01 2.20130831e-01\\n1.89239532e-01 5.63188121e-02 2.24790573e-01 8.95125031e-01\\n4.94131818e-05 2.13259459e-01 -1.98088393e-01 3.75671685e-01\\n2.23204494e-01 -1.77884191e-01 1.55582488e-01 2.47954980e-01\\n6.34295717e-02 -1.43953651e-01 -2.61841536e-01 2.82252133e-01\\n-1.98383242e-01 -1.95317805e-01 -2.15177074e-01 8.45345035e-02\\n-1.68082371e-01 -5.67597151e-01 5.61937451e-01 -1.46172978e-02\\n2.14652508e-01 -1.61124498e-01 -1.36450790e-02 -1.48383483e-01\\n-6.32035732e-02 3.44431520e-01 1.60245463e-01 1.56117409e-01\\n-3.73151690e-01 -2.01693147e-01 -1.74334228e-01 3.51265371e-01\\n-3.62037033e-01 2.10803617e-02 -1.91299692e-01 -1.08752280e-01\\n3.35064411e-01 1.07541487e-01 -4.62480426e-01 1.83829054e-01\\n-1.52365565e-01 -3.36052805e-01 -1.38628222e-02 2.52761900e-01\\n-3.39334339e-01 1.20274886e-01 -5.15389070e-02 -2.03660935e-01\\n5.96760988e-01 1.65874481e-01 2.83887804e-01 2.43828055e-02\\n3.19413126e-01 -1.24233887e-01 1.79487839e-01 2.26185530e-01\\n-6.68202996e-01 4.49051440e-01 -5.95071986e-02 -2.32003793e-01\\n6.36987388e-02 3.35326344e-02 4.96706396e-01 -3.58301282e-01\\n8.52545947e-02 -2.98817098e-01 -3.08600307e-01 -4.08272177e-01\\n-3.15689832e-01 1.88987702e-02 4.64316964e-01 -4.70127076e-01\\n-4.25915793e-02 1.77360266e-01 -5.57965040e-01 -6.80355132e-02\\n2.36749128e-01 1.49165794e-01 9.43288580e-02 1.28181130e-01\\n-9.75340754e-02 -6.28468573e-01 4.23967727e-02 -4.34795260e-01\\n-3.62985730e-01 5.17709404e-02 -3.29233825e-01 1.16838276e-01\\n6.65556192e-02 -4.78616767e-02 -1.09651797e-02 1.19249865e-01\\n-2.77674139e-01 -5.75821698e-02 1.36752725e-01 6.02857843e-02\\n3.37924838e-01 2.12269835e-02 -4.21200514e-01 4.89454895e-01\\n-2.05419332e-01 5.78478992e-01 1.92950860e-01 -1.05891299e+00\\n5.48521578e-01 1.65580854e-01 5.36602959e-02 -2.19873041e-01\\n6.59864664e-01 -3.86876702e-01 -7.36442432e-02 1.36705875e-01\\n-2.21223608e-01 -1.57597989e-01 2.34535247e-01 -1.56565130e-01\\n-3.23738933e-01 6.53199911e-01 2.23730117e-01 2.16413110e-01\\n3.22187483e-01 -2.64825583e-01 -2.19263792e-01 -6.78867549e-02\\n-2.12333634e-01 -3.00087333e-01 -6.01269007e-01 1.47598952e-01\\n-8.57096463e-02 -5.54377794e-01 -1.66279405e-01 -4.44679201e-01\\n-1.52338192e-01 -4.99079943e-01 -1.61132857e-01 2.39972651e-01\\n2.55431861e-01 2.03105658e-01 -8.44481662e-02 -7.45449141e-02\\n-1.05656758e-01 -6.19558394e-01 -2.01907963e-01 7.25115687e-02\\n3.66698623e-01 3.05634677e-01 1.08013675e-01 -9.42812711e-02\\n2.12396085e-01 5.46940446e-01 -2.62860745e-01 -3.90725851e-01\\n2.56794304e-01 1.93955839e-01 -7.05626011e-02 -1.42199829e-01\\n6.64772913e-02 3.47756326e-01 -1.45360798e-01 9.54262763e-02\\n-5.52647337e-02 3.59337106e-02 2.81855404e-01 2.88254116e-02\\n-1.42872274e-01 -1.99947268e-01 -7.00158775e-02 3.41586798e-01\\n-5.88303685e-01 -2.01732054e-01 5.26862562e-01 1.66323185e-01\\n1.51168466e-01 1.74102366e-01 2.07534105e-01 -1.02659345e-01\\n-2.77054965e-01 -1.08338818e-01 2.08979368e-01 1.61649346e-01\\n1.52664334e-01 6.82457238e-02 -2.27358453e-02 -5.38438082e-01\\n-3.34786677e+00 -2.78339684e-01 1.93841174e-01 -3.07963789e-01\\n1.52499408e-01 -2.32752219e-01 3.11252140e-02 3.85489017e-02\\n-3.05252820e-01 1.29264537e-02 -1.39703229e-01 -2.10177839e-01\\n-9.70971957e-03 2.90589929e-01 2.01760560e-01 2.14379847e-01\\n1.39220804e-01 -2.77686417e-01 3.06891631e-02 4.90279227e-01\\n-1.88724577e-01 -6.68499053e-01 1.63968682e-01 6.80816099e-02\\n9.22040343e-02 1.92572787e-01 -4.28868830e-01 -1.45176485e-01\\n-3.14542592e-01 -2.54573494e-01 9.87289548e-02 -2.55834371e-01\\n-2.36711353e-01 4.28729117e-01 1.56401202e-01 -2.40467750e-02\\n1.26972377e-01 -3.82168919e-01 -6.69598579e-02 -3.13567638e-01\\n1.24312632e-01 -5.61982393e-01 -1.10066608e-02 -1.83733385e-02\\n6.88484788e-01 -3.33484232e-01 2.45489687e-01 9.50278640e-02\\n1.95794046e-01 8.91050026e-02 1.22013539e-01 -7.50614926e-02\\n-2.64467895e-01 -2.61123776e-01 -6.54282421e-03 -2.00955272e-01\\n5.57687759e-01 4.55683529e-01 -8.89362097e-02 1.57598555e-02\\n1.62847489e-01 -2.02769488e-01 -4.13719416e-01 -4.84344453e-01\\n-1.89464420e-01 -1.57274917e-01 -6.68248892e-01 -4.42558616e-01\\n-1.09671734e-01 -1.55005068e-01 -1.80255607e-01 5.32664776e-01\\n-2.85376668e-01 -3.19284141e-01 -1.84183463e-01 -4.28066790e-01\\n3.26113105e-01 -1.21988043e-01 -6.88493401e-02 -2.42111251e-01\\n-3.00011039e-01 -4.62455124e-01 1.49375349e-01 1.98300891e-02\\n-1.90829724e-01 -1.78703815e-01 7.83607885e-02 -3.21322381e-01\\n-3.67240548e-01 -6.06400371e-01 5.10240734e-01 5.01437038e-02\\n3.21464896e-01 9.35488418e-02 4.05482531e-01 1.65233970e-01\\n4.68293250e-01 -2.16517299e-01 1.99372992e-02 -5.01922488e-01\\n5.60409389e-02 9.94057581e-02 5.30611873e-01 -3.31511796e-01\\n8.33786875e-02 1.93395689e-02 -1.93567008e-01 -8.96800756e-02\\n3.95433724e-01 -1.10582680e-01 8.45000148e-02 -1.23021722e-01\\n1.40888274e-01 -3.43454361e-01 -2.34716564e-01 1.70378521e-01\\n5.01665995e-02 6.85591519e-01 9.87084303e-03 -2.88986921e-01\\n-2.34547764e-01 3.87772918e-01 -1.79013297e-01 -7.12770373e-02\\n-1.92878410e-01 5.59632704e-02 -1.67553902e-01 4.89995778e-01\\n-3.49330716e-02 -2.27003336e-01 -3.06034505e-01 -6.35150969e-02\\n-3.14649306e-02 2.31136292e-01 3.11601400e-01 5.02099935e-03\\n7.32846931e-03 -2.69898176e-01 6.50875419e-02 1.52970552e-01\\n3.11731637e-01 3.47614527e-01 1.59135371e-01 -1.81848377e-01\\n-5.11044823e-03 1.75755844e-01 -2.80089378e-01 3.19548815e-01\\n-1.56890735e-01 1.14408858e-01 -6.99656844e-01 -2.07303375e-01\\n-2.33856991e-01 -3.51432383e-01 2.18290687e-01 2.73868263e-01\\n1.93503395e-01 -1.34510010e-01 3.96089032e-02 -5.60966313e-01\\n4.17424977e-01 3.07608843e-02 2.38305271e-01 1.36265278e-01\\n-1.38160408e-01 6.42040014e-01 1.49055403e-02 -9.00889114e-02\\n2.12995261e-02 -7.02845901e-02 -2.50569701e-01 -3.74849439e-01\\n-7.71632120e-02 -5.01042545e-01 -2.22917616e-01 5.01166105e-01\\n2.32340351e-01 -2.75700450e-01 -3.00715655e-01 2.47045338e-01\\n-2.07648799e-03 -3.48439634e-01 -1.91038251e-01 -1.95536427e-02\\n4.21733975e-01 2.03236043e-01 2.15271831e-01 -5.09783983e-01\\n-4.12427671e-02 -1.99437886e-03 5.13441451e-02 3.95825207e-01\\n4.86878678e-02 7.70572647e-02 1.76383331e-02 -2.15963036e-01\\n4.71484840e-01 -1.26622066e-01 -1.58588886e-01 -9.08944942e-03\\n6.95930049e-02 -2.31100619e-01 -4.75203753e-01 1.06377654e-01\\n7.17108548e-02 -2.76686162e-01 2.34388672e-02 2.84813702e-01\\n1.14846796e-01 -5.65712154e-02 -5.64158440e-01 -2.80859828e-01\\n-3.76927882e-01 -3.10570598e-02 2.94076093e-02 -5.09059906e-01\\n-5.01472577e-02 -5.55850118e-02 -5.47834575e-01 1.60150439e-01\\n9.38598067e-04 -1.25446051e-01 2.69870237e-02 7.02489167e-02\\n-1.51851356e-01 -8.99457633e-02 2.74703145e-01 6.76705986e-02\\n-3.61029059e-01 -2.91764826e-01 3.35525349e-02 -9.23433781e-01\\n1.64770484e-01 8.08696598e-02 -8.29554349e-02 9.35930908e-02\\n-4.54211719e-02 -6.40485227e-01 1.96050838e-01 -4.14140582e-01\\n-1.03219584e-01 -3.49580497e-02 -3.47130746e-01 -3.07760686e-01\\n1.50172010e-01 8.62397850e-02 -2.23386690e-01 4.76308763e-01\\n-4.22934234e-01 3.60915869e-01 8.21577236e-02 1.08809143e-01\\n1.09146066e-01 -2.31922194e-01 1.49670810e-01 -2.01601475e-01\\n-4.28917229e-01 -1.65964767e-01 -3.64023507e-01 -2.43195221e-01\\n-1.09552301e-01 -2.43464917e-01 -8.64679217e-02 -9.14174095e-02\\n3.86218101e-01 2.38143176e-01 -8.20938349e-02 -2.37207264e-01\\n1.04419157e-01 -3.70944679e-01 2.14817643e-01 -2.07821250e-01\\n-7.66050369e-02 -4.07870114e-03 2.57409096e-01 3.90612632e-02\\n9.94898826e-02 -3.03352386e-01 4.20089185e-01 -2.73924828e-01\\n-3.69899303e-01 -1.25064090e-01 1.13083005e-01 6.06005415e-02\\n3.05719852e-01 -4.33376133e-01 -3.87399755e-02 3.03135633e-01\\n1.71009302e-01 9.08471420e-02 3.37848634e-01 -1.19021952e-01\\n-9.27144140e-02 2.32433006e-01 -5.04758596e-01 2.34265402e-02\\n8.66339445e-01 2.07176566e-01 1.03915267e-01 1.74714789e-01\\n1.83114618e-01 2.63173461e-01 4.52601910e-01 -2.48411726e-02\\n-4.55543734e-02 3.62650990e-01 8.14497173e-02 -5.83231568e-01\\n-6.22273311e-02 -1.97110221e-01 -1.04681581e-01 -3.86264384e-01\\n6.43242836e-01 2.63900548e-01 -3.20712328e-01 -3.29176009e-01\\n-1.26017183e-01 -6.93392754e-02 3.08513880e-01 -1.07354105e-01\\n-8.15618262e-02 -2.17281468e-02 5.42413771e-01 -1.25997394e-01\\n3.72197866e-01 5.55598617e-01 -2.37150341e-01 -2.41545692e-01\\n-3.73511985e-02 1.95191994e-01 1.43049464e-01 5.08144975e-01\\n-2.30075732e-01 3.07303786e-01 -2.82148663e-02 1.19852617e-01\\n-5.55610359e-02 -6.53974861e-02 3.03768396e-01 -2.76075304e-03\\n1.24757454e-01 9.48950797e-02 3.42823237e-01 4.39409018e-01\\n1.58643782e-01 4.55600798e-01 4.51086938e-01 -9.09918081e-03\\n4.47711945e-01 5.93799353e-01 1.98461354e-01 1.71895653e-01\\n3.83092836e-02 7.02570826e-02 1.53879479e-01 1.09632704e-02\\n2.62667477e-01 4.00550842e-01 1.30756453e-01 8.90647173e-01\\n3.07902813e-01 3.35808814e-01 7.56363273e-01 -6.92148209e-01\\n-4.68996763e-01 9.66669712e-03 5.39399564e-01 -3.32095772e-01\\n-7.83604607e-02 1.16883710e-01 -2.78222501e-01 1.99468821e-01\\n-4.72943932e-01 -1.64867476e-01 -1.06299631e-02 5.97502068e-02\\n-4.68078814e-03 -9.71571431e-02 -1.76315337e-01 2.11670488e-01\\n-1.22933701e-01 -9.89432633e-02 -3.11540514e-01 -1.67365417e-01\\n-2.43699670e-01 -1.54376477e-01 -1.46191359e-01 6.70025349e-02\\n-1.93508402e-01 -2.60474741e-01 -8.43837783e-02 -2.39111669e-03\\n3.95866513e-01 -1.74888596e-01 -1.31021395e-01 -1.27704903e-01\\n1.28855005e-01 1.93803698e-01 4.90049481e-01 -1.08613335e-01\\n1.50120899e-01 -1.62467808e-01 -3.15842897e-01 6.15190715e-02\\n1.70021921e-01 2.32337303e-02 -3.66747528e-02 5.11497140e-01\\n-3.61222804e-01 -9.62386951e-02 4.94451113e-02 1.80054307e-01\\n-4.24924374e-01 -6.25192821e-02 -5.31624667e-02 1.25187337e-01\\n1.61396936e-02 1.81298614e-01 -3.28637958e-01 6.18106388e-02\\n-2.85210133e-01 -6.18053198e-01 3.34192634e-01 -2.58327603e-01\\n-7.98284635e-02 1.24681711e-01 3.11910391e-01 2.25521237e-01\\n-1.63778022e-01 -1.21444069e-01 -1.08826831e-01 2.40983799e-01\\n1.04229311e-02 2.73642004e-01 -2.20998675e-01 -2.64012426e-01\\n-2.44926214e-01 2.60452509e-01 -8.05139914e-02 1.92846134e-01\\n-3.89664248e-02 3.47567856e-01 6.47892356e-02 2.17252135e-01\\n1.77034318e-01 -4.84667346e-03 -2.26465583e-01 -2.66422719e-01\\n-2.02238947e-01 -2.20473707e-01 1.04610845e-02 -6.55374154e-02\\n1.87096000e-01 -2.73063213e-01 -4.98912148e-02 -2.15667069e-01\\n-2.76900828e-01 -4.73196507e-01 -2.64370814e-02 -7.66175687e-02]]',\n", + " 'job_description': 'Here at Swarovski, our people sparkle just as much as our products. Come and join us as a Senior data Scientist where you will get a chance to work in a growing team in the Zurich area and develop your skills in use cases at global scale. Be part of a truly iconic global brand, learn and grow with us. ABOUT THE JOB Drive the development and implementation of Advanced Analytics use cases for the Consumer Goods Business Partner with relevant departments (e.g. e-Commerce, Omnichannel Management, CRM, Marketing Management) to understand and frame the problem, estimate the business impact, develop the solution & monitor it Identify internal and external data for the question at hand and work with BI/IT to assure data provisioning Develop model prototypes both using latest AI and machine learning techniques like Gradient Boost, Neural Networks or Random Forests as well as classic methods. Test and continuously improve model along AA best in class standards Provide output to target systems like marketing automation or dashboards and assures automation and monitoring of use cases, in alignment with relevant departments Assure reporting of Use Case KPIs and feed them into functional dashboards Monitor the execution of statistical models & performance in use cases and identify improvement / extension opportunities ABOUT YOU We are looking for a motivated talent, who brings along the following background: University degree/ Education, preferably in in Mathematics, Statistics, Computer Science, Physics or similar More than 5-8 years of experience in advanced analytics field Proven track record of creating impact in at least 2 of the following fields (Personalization of e-Mails, Websites & Advertising, Assortment Optimization, Dynamic Pricing & Promotions, Marketing Mix Optimization, Store level forecasting, Social Media/Network analysis) Strong technical experience in the following areas: R and/or Python (min. 5 years), modelling & real time analytics (process parallelization), familiarity to SAS a plus Familiarity with one of the following AI verticals: text mining, image recognition, conversational interface, automatic classification, network analytics, predictive modeling - incl deep learning framework (PyTorch, Keras, Tensorflow, etc.) a plus Database management (SQL & NoSQL, Spark a plus) Robust knowledge on Data management & IT infrastructure management, Proven ability to structure, build & optimize complex data science pipelines, Big data cloud providers (e.g. AWS, Google Cloud, Azure) Tableau skills a plus Substantial prior experience in modelling large scale retail data sets, digital & tracking data & data enrichment (data scraping/crawling a plus) Ability to work in cross-functional teams & agile ways of working Excellent English proficiency ABOUT SWAROVSKI Swarovski is a family-run company, founded more than 120 years ago in Wattens, Austria. We are leading group of global companies committed to stable growth and maintaining our place at the forefront of design, creativity, and technological innovation. Working for Swarovski is more than just a job. You will work for a groundbreaking, modern, premium brand, which is globally known for its quality and creativity. We place people at the heart of our business and offer global pay programs, supported by a range of local benefits. In addition, we provide rich development opportunities which recognize and reward the brilliant contributions of our passionate individuals and teams who contribute to the success of our company – sparkling every day. Whether you are just starting your career or celebrating an existing one, we invite you to make your own mark on Swarovski’s rich history. Grow your own career through our blended learning and development programs. Learning opportunities are everywhere at Swarovski and will help you grow and develop your own career. We are an equal opportunity employer and value diversity at our company.',\n", + " 'soft_skills': '[\"Social Media\", \"Creativity\", \"Innovation\", \"Management\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"E-Learning Development\", \"Automation\", \"Advertisement\", \"Tableau (Business Intelligence Software)\", \"NoSQL\", \"Analytic Hierarchy Process\", \"Agility\", \"Data Scraping\", \"Computer Science\", \"Analytics\", \"Text Mining\", \"Data Management\", \"SAS (Software)\", \"Machine Learning\", \"Customer Relationship Management (CRM) Software\", \"Branding\", \"Business Partnering\", \"Marketing Management\", \"Mathematical Statistics\", \"Scale (Map)\", \"Marketing Automation\", \"Estimators\", \"IT Infrastructure\", \"Blended Learning\", \"Network Analysis\", \"Python (Programming Language)\", \"Parallel Processing\", \"External Data Representation\", \"Prototyping\", \"E (Programming Language)\", \"Random Forest Algorithm\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Track (Rail Transport)\", \"Computational Statistics\", \"Levelling\", \"Tracking (Commercial Airline Flight)\", \"Executable\", \"Keras (Neural Network Library)\", \"Statistical Modeling\", \"SQL Plan Management\", \"Use Case Diagram\", \"Infrastructure Management\", \"Test Method\", \"Dashboard\", \"Pipelining\", \"Minimum Data Set\", \"Marketing Mix\", \"Data Science\", \"Professional Development Programs\", \"TARGET 3001!\", \"E-Commerce\", \"Equalization\", \"Personalization\", \"R (Programming Language)\", \"Digitization\", \"TensorFlow\", \"Google Cloud\", \"Big Data\", \"Deep Learning\", \"Predictive Modeling\", \"Cross-Functional Team Leadership\", \"Physics\", \"Maintainability\", \"Imaging\", \"Consumer Packaged Goods\", \"Predictive Analytics\", \"Recurrent Neural Network (RNN)\", \"Forecasting\", \"Additives\", \"PyTorch (Machine Learning Library)\", \"Amazon Data Pipeline\", \"Gradient Boosting\", \"Assortment Optimization\", \"Conversational User Interface\"]',\n", + " 'languages': \"['English', 'Pali', 'Croatian', 'Kazakh']\"},\n", + " {'company_id': '18',\n", + " 'job_title': 'pl/sql developer with avaloq experience and/or certification',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.13505888e-01 2.25676537e-01 4.94336933e-01 -1.10997431e-01\\n5.00059366e-01 -1.46009773e-01 6.33367477e-03 4.37126428e-01\\n-2.71575595e-03 -2.77291059e-01 -1.92970946e-01 -1.76570728e-01\\n1.08183816e-01 3.01874634e-02 1.26210079e-01 1.70721531e-01\\n3.39352190e-01 1.26081884e-01 -1.65360451e-01 2.77324528e-01\\n2.02321947e-01 -1.03745975e-01 1.53151751e-01 7.31896520e-01\\n3.38048279e-01 6.03996441e-02 -1.08721014e-02 -1.89579763e-02\\n-2.23226696e-01 -2.75348067e-01 3.87274563e-01 -2.01872066e-02\\n-8.11380297e-02 -2.54527539e-01 2.51477927e-01 -2.02515703e-02\\n-2.25338519e-01 2.73438953e-02 -1.74218714e-01 -1.13461185e-02\\n-2.64139205e-01 -8.32525492e-02 9.71880183e-02 1.14277259e-01\\n-2.22081631e-01 -3.70131105e-01 1.43041819e-01 -5.61417677e-02\\n1.08728580e-01 -1.50922006e-02 -4.82406884e-01 2.60246754e-01\\n-1.67487517e-01 -2.68497735e-01 4.23574507e-01 6.49840355e-01\\n-6.66429102e-02 -5.47274232e-01 -4.54208881e-01 -3.19246799e-01\\n1.29397348e-01 -6.66984394e-02 2.58226395e-02 -2.62087435e-01\\n3.80460083e-01 3.05206198e-02 7.33466297e-02 3.85000408e-01\\n-8.66699457e-01 -1.33454967e-02 -2.64105409e-01 -4.18104678e-02\\n-4.13654894e-01 -6.52424917e-02 -4.74523515e-01 -1.55804604e-01\\n-1.32233322e-01 3.95601273e-01 -1.57053545e-02 1.20831870e-01\\n-8.72799009e-02 1.90223947e-01 -2.39056528e-01 2.54214466e-01\\n1.90656021e-01 1.90327883e-01 1.52354881e-01 1.69292748e-01\\n-2.89042324e-01 5.59022725e-01 1.73426032e-01 -2.59276062e-01\\n2.14212626e-01 1.54793844e-01 3.30740124e-01 -2.97552161e-02\\n1.47202253e-01 2.16019303e-01 -2.12081552e-01 1.82862118e-01\\n3.03658217e-01 -3.16032678e-01 -4.44155075e-02 -2.49843784e-02\\n1.62045239e-03 3.49316895e-02 -3.24592106e-02 1.40808001e-01\\n-3.73727173e-01 4.68760014e-01 8.56839940e-02 -2.01469272e-01\\n4.31629941e-02 -5.49779058e-01 -1.93952009e-01 -8.58052969e-02\\n-6.42616898e-02 1.29477456e-01 2.14856565e-01 2.26580620e-01\\n2.11266443e-01 -9.05679464e-02 1.61286682e-01 8.97106707e-01\\n-1.72662642e-02 4.32890095e-02 -2.18549639e-01 3.55478704e-01\\n-2.50826608e-02 -2.63867140e-01 1.97118551e-01 2.37657398e-01\\n7.62812570e-02 -2.70406511e-02 -1.74689010e-01 2.50309229e-01\\n-7.49686360e-02 -2.55958706e-01 -1.76618129e-01 1.70993492e-01\\n-6.03567623e-02 -4.63697672e-01 5.24712205e-01 5.92822954e-02\\n6.44474030e-02 -8.44114125e-02 6.68513551e-02 -1.17506824e-01\\n-2.51340959e-02 1.19340599e-01 3.43455300e-02 1.61518589e-01\\n-2.35834002e-01 -3.05694968e-01 -1.62289634e-01 1.90971270e-01\\n-1.85730770e-01 4.14421335e-02 -2.53246844e-01 -1.89795136e-01\\n2.98461616e-01 4.55926135e-02 -3.22965115e-01 1.96334660e-01\\n1.45396525e-02 3.66493016e-02 -1.01456821e-01 2.43520200e-01\\n-1.55359805e-01 2.96954095e-01 -1.12310052e-01 -1.21962421e-01\\n5.08188784e-01 1.27711520e-01 8.87355506e-02 -2.79984456e-02\\n2.21990898e-01 -4.53062207e-02 2.94044912e-01 3.37931924e-02\\n-7.40335107e-01 4.56572235e-01 -4.88654040e-02 -1.59077272e-01\\n1.91522345e-01 -3.35196964e-02 2.97192991e-01 -3.32289726e-01\\n-1.32584916e-02 -9.98062491e-02 -3.77890855e-01 -3.12321484e-01\\n-2.63868272e-01 -1.28236637e-01 2.73498446e-01 -5.31979144e-01\\n8.26959871e-03 2.09560320e-01 -5.21369517e-01 2.76892018e-02\\n1.84769541e-01 2.91110396e-01 1.57324925e-01 1.92036569e-01\\n-9.76754129e-02 -5.22699475e-01 1.43841699e-01 -4.32533950e-01\\n-1.72745213e-01 2.23321810e-01 -3.33327621e-01 2.40808740e-01\\n1.10804737e-01 -3.95779638e-03 -1.42567217e-01 1.48387551e-01\\n-1.83268353e-01 4.88819368e-02 1.44207776e-01 8.35886523e-02\\n2.88407654e-01 4.51891944e-02 -3.85806441e-01 5.18241823e-01\\n-1.95140511e-01 5.13497174e-01 1.01359591e-01 -7.71982610e-01\\n5.12168825e-01 2.77616739e-01 3.25088911e-02 -3.43879879e-01\\n6.15161121e-01 -3.60904813e-01 -4.17738445e-02 1.39305353e-01\\n-4.79231775e-01 -3.14677954e-01 9.43712518e-02 -2.26560473e-01\\n-2.16890037e-01 5.78126371e-01 5.51722087e-02 6.74266517e-02\\n3.02211642e-01 -1.50130197e-01 -1.57777339e-01 6.30151927e-02\\n-1.14738189e-01 -1.85685232e-01 -4.63802874e-01 -1.22751445e-01\\n-7.76513815e-02 -4.50132817e-01 -2.05209315e-01 -5.65085649e-01\\n-2.24781126e-01 -3.53338361e-01 -2.06232443e-01 1.10515364e-01\\n1.45879388e-01 1.65532365e-01 6.54752329e-02 5.63768074e-02\\n-1.34061128e-01 -5.68979263e-01 3.02805863e-02 4.00163010e-02\\n3.05268914e-01 1.99289173e-01 1.10505179e-01 -2.10561343e-02\\n-6.09337203e-02 6.55841470e-01 -3.64445806e-01 -1.76484212e-01\\n6.04400076e-02 1.71181768e-01 1.03521556e-01 -4.04950790e-02\\n1.27860382e-01 2.72784650e-01 -3.33948940e-01 -6.52224943e-03\\n-3.78074162e-02 -8.85075107e-02 2.74505496e-01 -4.66307849e-02\\n-3.06940556e-01 -3.26009542e-01 -4.29011174e-02 2.29161575e-01\\n-5.48056960e-01 -2.44233057e-01 5.86831570e-01 1.72917679e-01\\n1.14062726e-01 2.84505218e-01 2.68076807e-01 -1.14130639e-01\\n-9.83022600e-02 -2.51824230e-01 2.18887106e-01 9.70181152e-02\\n1.51812762e-01 6.77424148e-02 -1.90525785e-01 -7.08982348e-01\\n-3.24527597e+00 -9.83210579e-02 5.37957773e-02 -3.46471965e-01\\n3.55732203e-01 -1.34616777e-01 1.77753940e-01 -5.10864817e-02\\n-4.03739393e-01 3.88030745e-02 -1.67540923e-01 -2.06917837e-01\\n2.25713223e-01 2.29321122e-01 9.52715427e-02 2.70147830e-01\\n1.06661446e-01 -2.24826247e-01 9.40784290e-02 3.58945638e-01\\n-1.86706945e-01 -7.46163487e-01 1.21594585e-01 -2.72880811e-02\\n3.26745480e-01 2.84515858e-01 -4.58543986e-01 -1.52638555e-01\\n-2.80961454e-01 -1.25917330e-01 7.74110407e-02 -3.85799646e-01\\n-3.70077863e-02 2.66156346e-01 2.13670537e-01 -1.29333109e-01\\n8.15823115e-03 -2.94720620e-01 9.63109359e-02 -4.94713426e-01\\n7.45884180e-02 -5.73351264e-01 3.58112119e-02 6.74156845e-02\\n7.25357711e-01 -3.71745199e-01 1.94991037e-01 7.73049966e-02\\n1.25213787e-01 2.09269986e-01 5.27658612e-02 -5.37075510e-04\\n-2.83465952e-01 -2.55079895e-01 -1.84426844e-01 -1.76656708e-01\\n4.57737803e-01 5.44439554e-01 -2.15440705e-01 1.64349169e-01\\n-4.75559048e-02 -3.94987017e-01 -4.46086138e-01 -3.30132812e-01\\n-2.58629650e-01 -1.39309838e-01 -6.91900074e-01 -6.09815061e-01\\n-7.16798306e-02 -1.04310267e-01 -7.61944614e-03 4.61881071e-01\\n-2.22761706e-01 -2.97273725e-01 -1.05872648e-02 -5.89910209e-01\\n3.32740664e-01 -7.30889142e-02 1.08377188e-01 -1.22612536e-01\\n-7.14141354e-02 -4.23443586e-01 5.24793826e-02 -8.99949949e-03\\n-9.19280350e-02 -1.30372420e-01 1.06537633e-01 -9.67368931e-02\\n-4.05013025e-01 -6.00732207e-01 4.33678001e-01 7.75734261e-02\\n3.07028323e-01 1.13045581e-01 1.61959395e-01 -2.20943950e-02\\n2.73065418e-01 -1.14517391e-01 5.75593635e-02 -4.94413882e-01\\n8.58318899e-03 7.16281682e-02 5.62934816e-01 -2.48638898e-01\\n2.34890580e-02 1.23342305e-01 -2.79204816e-01 -1.34033784e-01\\n2.53702104e-01 -2.78197620e-02 6.39409050e-02 -2.01471880e-01\\n3.85558754e-01 -2.89121389e-01 -3.04993391e-01 1.55427560e-01\\n8.70495010e-03 4.81643528e-01 2.83414628e-02 -2.97116965e-01\\n-1.76386267e-01 4.48837489e-01 3.54262739e-02 -1.34738177e-01\\n-1.53975934e-01 -3.21901217e-02 -3.21917385e-01 1.40067801e-01\\n-9.07587673e-05 -1.70422420e-01 -2.99439728e-01 -9.04336348e-02\\n-3.24249379e-02 3.12872082e-01 2.03046411e-01 1.29424229e-01\\n-2.12194994e-01 -4.26910192e-01 -6.88625849e-04 1.94322571e-01\\n1.36465415e-01 4.04798806e-01 1.48197830e-01 -3.07572007e-01\\n6.12774976e-02 2.12033316e-01 -1.81309044e-01 2.53710598e-01\\n-2.06727639e-01 1.67902276e-01 -5.93734205e-01 -3.15401882e-01\\n-3.23848128e-01 -3.30435425e-01 9.26089659e-02 2.86891818e-01\\n1.47721440e-01 5.36211347e-03 7.08993226e-02 -3.78346771e-01\\n3.48350972e-01 -9.62175615e-03 2.56625384e-01 1.06612064e-01\\n5.54321473e-03 5.00910640e-01 -4.40958180e-02 -1.37442365e-01\\n-1.81327984e-01 1.49753496e-01 -2.23903418e-01 -2.34680429e-01\\n1.37174636e-01 -5.23396254e-01 -9.07166228e-02 4.49097991e-01\\n1.11089900e-01 -8.21309090e-02 -8.15702528e-02 2.17900977e-01\\n-4.97922674e-02 -3.01927954e-01 -3.37916404e-01 4.15159352e-02\\n3.34000438e-01 2.20325053e-01 2.73833692e-01 -4.97964472e-01\\n1.54959872e-01 -2.62581557e-02 -3.76029802e-03 4.43627745e-01\\n-5.36328964e-02 1.23908252e-01 -1.52028963e-01 -2.53328264e-01\\n4.24353629e-01 -1.88547838e-02 -1.96958333e-02 8.82230327e-02\\n3.70823853e-02 -1.51496619e-01 -4.65980411e-01 4.20641266e-02\\n2.38742009e-02 -1.37682781e-01 9.86736789e-02 7.29344636e-02\\n1.34340584e-01 -1.70264691e-02 -5.70336759e-01 -2.92256057e-01\\n-2.68857807e-01 1.51632046e-02 -2.57112756e-02 -3.53985339e-01\\n-2.40771230e-02 -2.88755819e-02 -5.34162760e-01 2.91371733e-01\\n-1.45012125e-01 -4.59438041e-02 2.71247238e-01 -9.00504738e-03\\n-4.42018658e-01 -4.22238335e-02 2.15222076e-01 2.62176991e-01\\n-2.79281169e-01 -1.31206095e-01 -6.58725649e-02 -9.58643198e-01\\n2.48883888e-01 -1.32099003e-01 -5.36124445e-02 1.69137105e-01\\n-1.25057846e-01 -7.50647366e-01 1.75455809e-01 -4.21255380e-01\\n-1.17679581e-01 4.21561450e-02 -1.85840666e-01 -4.21346426e-01\\n1.22832343e-01 -7.46336579e-02 -2.25876197e-01 4.05995280e-01\\n-3.74102920e-01 3.63710552e-01 -1.00987658e-01 4.88177724e-02\\n2.84191524e-03 -2.86147535e-01 1.45366609e-01 -4.31975812e-01\\n-3.60874414e-01 -1.08531386e-01 -2.84198731e-01 -1.63346410e-01\\n4.21037618e-03 -2.99949914e-01 -5.56920506e-02 2.02413443e-02\\n4.08039600e-01 5.64120151e-02 -1.32539168e-01 -1.63916230e-01\\n3.37721184e-02 -4.59013730e-01 1.77485228e-01 -2.09137917e-01\\n6.53753802e-03 -1.17975004e-01 2.45392904e-01 1.36956483e-01\\n1.66505173e-01 -5.01433253e-01 4.68517244e-01 -2.90196687e-01\\n-4.45065796e-01 -3.88198160e-02 8.20334256e-02 1.29098753e-02\\n3.82705182e-01 -4.35926020e-01 -7.13932514e-02 3.35871279e-01\\n2.77164541e-02 -5.27233779e-02 2.43552685e-01 -5.36459424e-02\\n-1.55055806e-01 3.68713975e-01 -4.64435399e-01 1.11540943e-01\\n7.64247060e-01 2.11214021e-01 2.34409034e-01 1.80559039e-01\\n1.97899833e-01 4.42156315e-01 4.13545310e-01 5.54455146e-02\\n-6.07773326e-02 3.78328800e-01 1.41907111e-01 -6.00179255e-01\\n-1.71131454e-02 -1.28583759e-01 -1.99612156e-01 -3.78658384e-01\\n6.21825874e-01 3.80464703e-01 -2.98762739e-01 -2.91284293e-01\\n-2.62536556e-01 -1.95770532e-01 1.13236383e-01 -9.08564255e-02\\n1.86662048e-01 -2.58907348e-01 4.50066447e-01 -3.74419913e-02\\n2.53141403e-01 5.38776577e-01 -2.09225699e-01 -3.42618376e-01\\n-7.14973211e-02 1.94250286e-01 7.22212195e-02 4.16994005e-01\\n-1.30392537e-01 2.46725500e-01 -2.35554799e-02 1.78460151e-01\\n-1.37709871e-01 3.77712920e-02 1.61794871e-01 4.55175526e-03\\n1.85070783e-01 1.65081888e-01 3.97132814e-01 4.36072528e-01\\n2.97018021e-01 5.02614439e-01 2.38122895e-01 4.30402532e-02\\n5.07481754e-01 5.86602151e-01 4.04883713e-01 1.49632201e-01\\n-6.08793162e-02 8.49951357e-02 4.70912969e-03 3.08333058e-03\\n3.02210122e-01 3.62614900e-01 1.15864370e-02 9.12414253e-01\\n4.11557198e-01 3.08369905e-01 8.08166623e-01 -5.83395839e-01\\n-4.16567206e-01 -6.25687931e-03 5.22746503e-01 -4.59154397e-01\\n1.16123985e-02 1.81052670e-01 -2.61414528e-01 3.33840281e-01\\n-3.80022556e-01 -1.78984508e-01 2.33988874e-02 -7.03074709e-02\\n-2.76222415e-02 1.57800671e-02 -1.86525851e-01 7.64693925e-03\\n-2.12475255e-01 -2.10408732e-01 -5.21903217e-01 -1.10752761e-01\\n-2.95979142e-01 -8.31125528e-02 -1.18233018e-01 -1.48936778e-01\\n-1.48180112e-01 -3.09835225e-01 -1.52388081e-01 -8.80184397e-03\\n3.23110908e-01 -1.57268211e-01 -1.32724166e-01 -2.02975318e-01\\n3.78830165e-01 1.75158963e-01 6.76213980e-01 2.01145113e-02\\n9.45379138e-02 -2.35519812e-01 -1.63976222e-01 1.33471057e-01\\n2.00232476e-01 1.24660894e-01 4.36808430e-02 4.40089256e-01\\n-3.52115452e-01 -2.06055716e-01 1.30682766e-01 3.42669278e-01\\n-3.96928489e-01 -1.48671167e-02 -6.53938949e-03 2.07837954e-01\\n1.23359077e-01 8.48608986e-02 -1.85038075e-01 1.45648569e-01\\n-1.99263036e-01 -5.28940082e-01 3.01312894e-01 -1.19065963e-01\\n-8.97404999e-02 4.02265936e-02 2.05652609e-01 1.98669940e-01\\n-3.25926468e-02 2.00213194e-02 -1.40320644e-01 1.57324195e-01\\n1.28684729e-01 3.53975385e-01 -2.74407923e-01 -3.20546746e-01\\n-2.39693552e-01 2.41033450e-01 -2.47134432e-01 1.82797775e-01\\n-6.27521332e-03 3.15889686e-01 4.10882151e-03 8.94808248e-02\\n3.28599662e-01 -5.00399806e-02 -2.41735324e-01 -3.58677864e-01\\n-2.59882540e-01 -1.66964218e-01 5.80436699e-02 -4.47663032e-02\\n1.53210089e-01 -4.07208264e-01 -1.22531153e-01 -1.63937047e-01\\n-1.84956759e-01 -3.59827310e-01 -6.44601807e-02 -5.63750416e-02]]',\n", + " 'job_description': 'After an initial training period on the AVALOQ core banking application, our developers will join a project team and work hand in hand with our clients to help them implement the system. Ayaval offers you a diversified and challenging assignment, exposure to top tier international banks, possibilities to develop multi-disciplinary IT skills, a dynamic atmosphere in terms of colleagues and clients and a good working climate. You get a competitive compensation package and the chance of being part of a growing and dynamic consultancy. Our collaboration is based on a mutual trust and responsibility. Your main responsibilities: Extend and enhance the core business functionality of the AVALOQ core banking system based on Oracle PL/SQL. Analyse, design and develop new functionality, interfaces and enhancements to the product core. Integrate our solutions into the customer environment in close cooperation with our consultants and with the clients business analysts. Your qualifications (for all positions): University degree in computer science or similar. Avaloq parametrisation experience (Avaloq certification is a clear advantage). Strong skills in object oriented and relational data modelling. Good knowledge of and proven practical experience with at least one DBMS. Strong analytical skills and willingness to focus on Database Engineering. Working knowledge of English. Willingness to work remotely at clients premises on short and long-term projects in Switzerland and abroad (i.e. up to 18 months). An asset is: Working knowledge of German, French or Spanish. Experience with PL/SQL optimisation and tuning. Working experience in a bank environment, the financial industry or insurance industry. Experience in data and process modelling, use case oriented requirements engineering and interface development third party systems. Additional qualifications for senior positions: Valid Avaloq Certification and at least 1 year full time experience as Avaloq developer At least 2 years full time experience in software engineering and database development. Experience with Oracle 10/11g. Working experience with PL/SQL development in real-life projects. If you are interested, please send your complete application in English by email to: office@ayaval.com.',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Cooperation\", \"Collaboration\", \"Integration\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Computer Science\", \"Data Modeling\", \"Database Development\", \"Industrialization\", \"Component Object Model (COM)\", \"E (Programming Language)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Process Modeling\", \"Knowledge-Based Systems\", \"Software Engineering\", \"Requirements Engineering\", \"Core Product\", \"Database Engines\", \"Banking\", \"Additives\", \"Atmospheric Dynamics\", \"Long-Term Potentiation\", \"Functional Interface\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Shona', 'French', 'Flemish', 'Haitian']\"},\n", + " {'company_id': '17',\n", + " 'job_title': 'data science manager f/m switzerland',\n", + " 'location': 'Switzerland',\n", + " 'industry': 'Consulting',\n", + " 'website': 'www.axxiome.com',\n", + " 'jobdescription_embedded': '[[-2.45921910e-01 3.64944696e-01 5.66830039e-01 -4.42552194e-03\\n6.07137740e-01 -3.58532816e-02 -7.13070855e-04 2.29102582e-01\\n-8.79856385e-03 -4.23271626e-01 -1.12019163e-02 -2.79152483e-01\\n1.17464408e-01 1.81373224e-01 2.31768861e-02 4.22521472e-01\\n2.09838718e-01 3.76365110e-02 -1.79761857e-01 4.03860956e-01\\n2.34120376e-02 -1.44892216e-01 2.07821861e-01 7.00868130e-01\\n4.20755804e-01 -2.49336548e-02 -4.27808836e-02 -4.32553031e-02\\n-2.81308353e-01 -2.11954385e-01 5.24052203e-01 2.60045230e-02\\n-1.87911510e-01 -2.90406376e-01 1.07913442e-01 3.05315405e-02\\n-2.64642119e-01 -9.09706503e-02 -1.89330533e-01 1.44601107e-01\\n-4.73985076e-01 -1.82331115e-01 -1.06650069e-02 -2.91811861e-03\\n-3.76790941e-01 -5.17107308e-01 -1.25920102e-01 -1.00769050e-01\\n1.08134978e-01 9.05703604e-02 -4.54427838e-01 1.93579257e-01\\n-2.60035336e-01 -2.59526730e-01 2.71923423e-01 7.75269151e-01\\n-2.98850853e-02 -4.39171314e-01 -5.32690525e-01 -3.93370718e-01\\n1.47971913e-01 -7.26859272e-02 7.86159933e-02 -3.06278467e-01\\n2.78093457e-01 -3.30605730e-03 3.75598557e-02 2.43363649e-01\\n-7.56314635e-01 -1.50222898e-01 -3.26991111e-01 4.13803719e-02\\n-3.66385281e-01 -1.05629474e-01 -4.33392674e-01 -2.40224093e-01\\n-1.23682141e-01 4.59726006e-01 1.06721871e-01 -3.25710848e-02\\n-2.64199972e-01 2.76415229e-01 -3.26216042e-01 2.17330575e-01\\n1.81030706e-01 3.17788005e-01 3.44060987e-01 3.91795516e-01\\n-3.28861833e-01 4.00029361e-01 2.92857468e-01 -3.70870233e-01\\n2.56032765e-01 1.52590707e-01 3.01409543e-01 -1.02013722e-02\\n1.69352084e-01 1.29102111e-01 -1.88280120e-01 3.37971598e-01\\n2.92865813e-01 -2.53491759e-01 1.13441981e-02 -1.18685320e-01\\n7.98881799e-02 -4.54057828e-02 1.68322399e-02 1.24850497e-01\\n-3.90109837e-01 2.84585595e-01 -4.44836654e-02 -3.66795272e-01\\n-1.00431263e-01 -4.57162291e-01 -1.06918573e-01 -8.01978409e-02\\n-5.70156518e-03 1.87075034e-01 1.78632349e-01 2.35677660e-01\\n2.10754246e-01 -5.03677428e-02 1.70380592e-01 8.76710653e-01\\n-8.34595039e-03 4.89493869e-02 -3.32669228e-01 4.18295622e-01\\n7.65853748e-03 -1.90081030e-01 1.90014482e-01 1.06433108e-01\\n-1.29714862e-01 -5.53015508e-02 -3.17486405e-01 3.26737285e-01\\n-5.01306206e-02 -2.85634041e-01 -1.82487592e-01 1.18685432e-01\\n-2.42170654e-02 -4.91118252e-01 6.07552648e-01 -2.95297876e-02\\n1.18727639e-01 -2.52901286e-01 5.49544487e-03 -1.00099713e-01\\n-1.47795305e-03 1.36073396e-01 1.42462879e-01 1.10068917e-01\\n-2.93086052e-01 -2.61587262e-01 -9.45952386e-02 2.04275176e-01\\n-3.72313261e-01 5.68338484e-03 -2.17546254e-01 -6.04286306e-02\\n2.10390940e-01 1.22314103e-01 -4.67245340e-01 1.52860612e-01\\n-7.63912871e-02 -6.53198585e-02 -6.28637057e-03 4.08639252e-01\\n-3.66601586e-01 2.10801393e-01 -6.10959157e-02 -1.05927579e-01\\n6.28257394e-01 1.36030614e-01 3.37295145e-01 1.67331984e-03\\n2.35847265e-01 -6.34730384e-02 1.65461987e-01 2.23834157e-01\\n-5.79585254e-01 4.36830193e-01 -8.55116397e-02 -1.90968633e-01\\n1.48631006e-01 -8.61020237e-02 3.19376707e-01 -2.54164547e-01\\n1.09994173e-01 -1.79887325e-01 -2.81099111e-01 -3.52362216e-01\\n-9.43516865e-02 -4.85175848e-02 3.22893560e-01 -5.07194817e-01\\n-7.61729479e-03 2.63135016e-01 -5.76938748e-01 -2.25446984e-01\\n1.20687030e-01 2.38363579e-01 7.45931938e-02 2.11705700e-01\\n-1.76185995e-01 -5.34414768e-01 1.38204321e-01 -4.11061585e-01\\n-2.34608501e-01 1.61183521e-01 -2.93112636e-01 1.30785525e-01\\n4.76591624e-02 2.24735159e-02 -1.05475865e-01 6.95926100e-02\\n-3.24384570e-01 -1.61868110e-02 1.67739503e-02 7.41715729e-02\\n3.55591476e-01 1.47779748e-01 -4.31447506e-01 5.21407366e-01\\n-1.65915996e-01 3.91414404e-01 1.80935234e-01 -1.00179696e+00\\n4.41542685e-01 3.47838730e-01 6.50071129e-02 -3.69515121e-01\\n5.59662938e-01 -3.95547062e-01 -2.96869520e-02 1.25100851e-01\\n-3.11068058e-01 -2.29845583e-01 2.32175797e-01 -2.63683528e-01\\n-2.66220629e-01 5.03459215e-01 -2.03863233e-02 1.43936604e-01\\n3.03789854e-01 -2.84333766e-01 -2.92014003e-01 -1.28883198e-01\\n-2.25134090e-01 -2.67191052e-01 -6.82415664e-01 2.43814290e-03\\n-9.48423892e-02 -4.56080288e-01 -9.62660015e-02 -4.14302230e-01\\n-1.35782093e-01 -3.27197075e-01 -1.55999899e-01 4.64870185e-02\\n2.03237012e-01 1.12335689e-01 -1.31886184e-01 -2.83232890e-02\\n2.26668492e-02 -6.32648706e-01 -8.35290700e-02 1.24586798e-01\\n3.28894079e-01 2.66649902e-01 1.72872901e-01 4.07448635e-02\\n3.69883366e-02 6.54320240e-01 -2.93933392e-01 -2.73528099e-01\\n2.35190347e-01 1.35438293e-01 -6.35076314e-02 -1.96907341e-01\\n7.97661915e-02 2.46569231e-01 -2.67043054e-01 -1.50392763e-03\\n8.39423537e-02 -5.40301390e-02 3.38879973e-01 1.77628547e-02\\n-1.90582663e-01 -2.03127712e-01 -6.51058555e-02 1.30328491e-01\\n-5.84850669e-01 -2.64413476e-01 6.32897258e-01 1.34088337e-01\\n9.50071029e-03 2.51613736e-01 2.29802251e-01 1.88265294e-02\\n-3.66359562e-01 -2.13709712e-01 3.07417035e-01 8.39281529e-02\\n1.96068406e-01 6.11872748e-02 5.12848124e-02 -5.77519417e-01\\n-3.24799728e+00 -1.69826210e-01 1.06522381e-01 -2.25405872e-01\\n3.08175147e-01 -1.89206302e-01 1.63121253e-01 4.45353314e-02\\n-4.54820126e-01 1.42139625e-02 -9.49461311e-02 -1.37367144e-01\\n5.78579307e-02 1.89332396e-01 8.62061977e-02 1.91817939e-01\\n1.42997324e-01 -1.68550238e-01 7.36394152e-02 3.95097315e-01\\n-8.34486261e-02 -7.82853246e-01 1.66983396e-01 1.36964232e-01\\n1.21752001e-01 1.05963036e-01 -4.65968609e-01 -1.36122018e-01\\n-3.57103407e-01 -2.17097014e-01 1.21184766e-01 -2.82251537e-01\\n-1.90611392e-01 2.12878883e-01 2.40197480e-01 -6.95260763e-02\\n2.69690920e-02 -3.47148955e-01 -5.56462631e-02 -5.26130319e-01\\n8.72342363e-02 -6.10046625e-01 1.80049986e-03 -6.27218187e-02\\n7.39886522e-01 -2.77540952e-01 1.94530487e-01 1.91638410e-01\\n1.06656328e-01 1.63295954e-01 1.92849159e-01 6.54033944e-02\\n-2.34414548e-01 -3.04287136e-01 -1.06991798e-01 -1.35043666e-01\\n6.06157124e-01 3.87201041e-01 -1.21685475e-01 4.22015078e-02\\n1.07443072e-01 -2.14714855e-01 -5.31587601e-01 -2.41496980e-01\\n-1.90920800e-01 -1.38890103e-01 -7.47319221e-01 -5.13473034e-01\\n-1.52645022e-01 -1.69929966e-01 -1.20133206e-01 6.72429919e-01\\n-1.25722989e-01 -2.56621331e-01 -1.95590854e-01 -4.87632364e-01\\n3.40316892e-01 -1.53406411e-01 7.67541304e-02 -1.80450037e-01\\n-1.68858439e-01 -3.90759051e-01 1.63518235e-01 -4.90865484e-02\\n-9.50010121e-02 -9.49073732e-02 6.59806374e-03 -1.33534163e-01\\n-3.63709539e-01 -5.95687926e-01 3.92257780e-01 8.04415345e-02\\n4.33541536e-01 8.36967230e-02 4.16038752e-01 -4.92727235e-02\\n3.91176701e-01 -6.91211596e-02 -1.48355290e-01 -4.93212640e-01\\n-6.06559515e-02 9.93431583e-02 5.32403588e-01 -2.09267661e-01\\n4.22511026e-02 -8.34257901e-03 -1.90606460e-01 -5.67713603e-02\\n3.45819980e-01 -8.13398361e-02 1.63348898e-01 -7.88199306e-02\\n2.25743979e-01 -2.68304437e-01 -1.04395591e-01 8.70596319e-02\\n7.67047983e-04 6.03134334e-01 -6.25669211e-02 -3.56460929e-01\\n-4.75177765e-02 4.08956170e-01 -4.37586159e-02 -1.00416765e-01\\n-3.08997571e-01 -2.62237713e-02 -2.88998842e-01 4.15641457e-01\\n-8.36860985e-02 -1.96044520e-01 -2.42734015e-01 -1.15270570e-01\\n-8.46666247e-02 3.39749098e-01 2.38535404e-01 2.01701581e-01\\n-3.77592780e-02 -4.09201711e-01 -1.04267605e-01 1.88862771e-01\\n2.72506565e-01 3.84476304e-01 2.52921373e-01 -2.66126782e-01\\n7.01435935e-03 2.31164202e-01 -3.12745273e-01 2.70031601e-01\\n-1.71409488e-01 2.28548393e-01 -7.02564120e-01 -2.83752441e-01\\n-2.08915830e-01 -3.24911743e-01 2.07820892e-01 4.84418899e-01\\n2.14780331e-01 -8.35779980e-02 1.30925566e-01 -5.00762582e-01\\n2.89361715e-01 1.76102281e-01 1.22894250e-01 3.34063694e-02\\n-7.21575618e-02 8.39317024e-01 2.67627873e-02 -1.64550453e-01\\n1.71246715e-02 3.88621166e-03 -2.45666057e-01 -2.18836084e-01\\n4.54920530e-02 -5.34934044e-01 -1.49418220e-01 5.12873352e-01\\n1.72530025e-01 -1.44415632e-01 -1.38982147e-01 2.46456265e-01\\n1.22482069e-02 -2.55173147e-01 -2.92161405e-01 5.41106947e-02\\n3.45119476e-01 2.08441824e-01 2.88472503e-01 -5.93923628e-01\\n2.30947826e-02 -5.04769832e-02 4.61579151e-02 4.76999313e-01\\n8.36529136e-02 1.59786820e-01 -8.18593726e-02 -1.12589180e-01\\n5.34571588e-01 -5.26609458e-02 -1.31717294e-01 9.87673700e-02\\n1.06258601e-01 -1.84308559e-01 -3.16501886e-01 6.96009547e-02\\n5.76907173e-02 -3.07378501e-01 -6.59161657e-02 2.06394672e-01\\n3.99399847e-02 5.78490570e-02 -6.52556181e-01 -2.13704571e-01\\n-3.81309569e-01 4.25295159e-02 4.56301644e-02 -6.49009824e-01\\n6.15077205e-02 -1.15735121e-01 -5.84666252e-01 3.19792658e-01\\n1.10377073e-01 -1.85834795e-01 1.54304832e-01 4.23192978e-04\\n-2.16205731e-01 -2.47395664e-01 1.75002486e-01 2.98761457e-01\\n-2.44280308e-01 -2.60217011e-01 -4.22296152e-02 -9.04650927e-01\\n1.16268277e-01 6.54700696e-02 -8.91539603e-02 2.45658457e-01\\n6.58497214e-04 -7.33578205e-01 2.82283366e-01 -3.81602824e-01\\n-2.09483862e-01 -5.65385260e-02 -2.51575977e-01 -4.11636323e-01\\n1.18698716e-01 3.70347053e-02 -2.05585554e-01 4.49339628e-01\\n-3.05426568e-01 5.05944610e-01 -1.73813432e-01 3.70150656e-02\\n1.34803578e-01 -2.33847052e-01 9.02599767e-02 -2.93336451e-01\\n-4.29284632e-01 -2.21725553e-01 -2.75201023e-01 -3.27438116e-01\\n-1.66207999e-01 -2.50342637e-01 -7.11620376e-02 1.43014807e-02\\n4.78029847e-01 2.18206286e-01 -1.06679216e-01 -1.48405358e-01\\n1.47682920e-01 -4.79291230e-01 2.66344696e-01 -1.88953221e-01\\n-1.12153590e-03 -1.21023074e-01 2.01207161e-01 1.29752934e-01\\n1.83702007e-01 -3.42673153e-01 4.05458778e-01 -3.06599140e-01\\n-3.56773376e-01 -1.80469215e-01 7.36860558e-02 2.57491227e-02\\n3.50551903e-01 -3.83217722e-01 -1.26342922e-01 3.16002071e-01\\n8.86447430e-02 1.28272325e-02 2.90792197e-01 -1.86736703e-01\\n-1.81795321e-02 3.06658030e-01 -5.24818480e-01 2.60160446e-01\\n8.48055899e-01 1.10449523e-01 2.42968410e-01 2.89506137e-01\\n2.52098680e-01 2.30567485e-01 3.99969548e-01 -9.57072824e-02\\n-2.05243990e-01 3.93826306e-01 7.53218457e-02 -4.83305424e-01\\n-1.09464027e-01 -1.73052430e-01 -2.26075500e-01 -4.59894568e-01\\n5.80006897e-01 3.13304365e-01 -3.13438594e-01 -2.22106159e-01\\n-2.80672997e-01 -9.55687389e-02 3.41950446e-01 -2.10532285e-02\\n-4.04935032e-02 -9.00340267e-03 5.80752373e-01 -1.76937386e-01\\n3.75622749e-01 5.29786289e-01 -2.13048786e-01 -3.02188903e-01\\n-6.72305599e-02 2.84235120e-01 9.90334079e-02 4.56026256e-01\\n-1.88996643e-01 2.73309767e-01 6.46158233e-02 2.06541523e-01\\n-2.26517797e-01 2.90215742e-02 2.25946650e-01 9.79579613e-02\\n1.49736643e-01 5.40722013e-02 5.74282885e-01 3.40536207e-01\\n2.84645557e-01 3.55635285e-01 3.58910799e-01 5.27420491e-02\\n5.05891562e-01 5.76545477e-01 3.40940446e-01 1.43006518e-01\\n-2.32622474e-02 6.61864057e-02 9.19683054e-02 -2.67255381e-02\\n1.70390472e-01 5.23409128e-01 1.00115307e-01 8.55834246e-01\\n3.27121615e-01 3.83333921e-01 6.89056873e-01 -6.68171346e-01\\n-2.98700750e-01 2.68845912e-02 5.15031815e-01 -4.69754308e-01\\n4.44980338e-02 1.96003169e-01 -2.65809357e-01 1.55805796e-01\\n-5.26422739e-01 -2.39244461e-01 1.97987724e-03 6.03208318e-02\\n-4.44223732e-02 -1.33598968e-01 -1.68413088e-01 2.28887111e-01\\n-1.31252766e-01 -1.42758027e-01 -3.60055506e-01 -1.09288201e-01\\n-2.75815457e-01 3.34134996e-02 -9.96145308e-02 4.40237001e-02\\n-1.06014490e-01 -2.81776607e-01 -1.68639589e-02 -1.39402419e-01\\n3.60379785e-01 -6.96187615e-02 -1.12020478e-01 -2.50156727e-02\\n2.43043721e-01 1.32869542e-01 6.48293138e-01 1.78837478e-02\\n8.48599896e-02 -2.50000209e-01 -1.40357256e-01 6.23552762e-02\\n2.28759289e-01 2.34695189e-02 -3.91375320e-03 3.76838803e-01\\n-2.33588368e-01 -2.61357486e-01 7.96170682e-02 1.75206900e-01\\n-4.07878757e-01 -4.38190587e-02 -1.18612051e-01 8.47824514e-02\\n-1.34902820e-03 1.98414788e-01 -3.02337587e-01 2.15135142e-02\\n-5.74270822e-02 -4.99403059e-01 3.29176903e-01 -1.74990714e-01\\n-1.49460539e-01 1.25245526e-02 2.70362228e-01 1.41746044e-01\\n-2.46404469e-01 8.99055600e-02 -1.87737614e-01 1.59438118e-01\\n-6.67132884e-02 2.97512829e-01 -1.98901206e-01 -2.20736310e-01\\n-3.31923842e-01 1.41132772e-01 -9.16024297e-02 1.81684241e-01\\n3.55431437e-02 4.12354469e-01 7.65552893e-02 4.04589027e-02\\n3.89421374e-01 -1.51551468e-02 -2.70998240e-01 -2.18103588e-01\\n-2.26548940e-01 -1.72021717e-01 -1.16660625e-01 -9.22714770e-02\\n2.63544202e-01 -2.78902918e-01 -6.21061912e-03 -2.97500670e-01\\n-2.16268674e-01 -5.27362585e-01 1.41717307e-02 -1.07467048e-01]]',\n", + " 'job_description': 'OUR COMPANY Our mission is to deliver solutions to the financial services industry, driving business and technology change through proven global expertise. Axxiome is a name synonymous with quality and value for financial services organizations that are looking to improve or build upon their IT operations. With offices and subsidiaries in many countries across 4 continents, Axxiome excels in transforming legacy banking and insurance platforms to modern solutions and is considered a leader in implementation and integration of digitization initiatives across the globe. In Cooperation with the Business Engineering Institute St.Gallen AG (BEI AG) we are building up a Data Science team for financial services. Innovation based on science and projects will lead us to success. BEI AG is the leading company for turning knowledge gained from research and science into practice-oriented consulting and innovative solutions. Join our team as DATA SCIENCE MANAGER F/M SWITZERLAND JOB DESCRIPTION As Data Science Manager you will manage a team of 3-5 highly educated and experienced data science analysts and developers, collaborate with the BEI AG and be responsible with your team for innovation and accurate data collection, processing, modelling and analysis to drive business. Lead data science projects end to end and coordinate functional teams/developers of 3-5 employees Mine, analyze customer data to drive optimization and improvement of products, marketing techniques and business strategy with your team Develop/use predictive statistics behavioral or other models by machine learning and/or traditional statist. modeling techniques to increase and optimize customer experience and revenue generation Develop data models, algorithms, tools and methods Applied knowledge of the configuration options of modules within or across packages to functional solutions using detailed knowledge of package capabilities to meet business requirements Create showcases how BI data can help to facilitate and drive business decisions focused on Financial Services Industries Connect findings to business initiatives and approach customer at various management levels to create opportunities REQUIREMENTS Master’s degree in engineering, computer science, physics, math or economics Familiar with the principles of modelling 5 years of experience Project Management SQL database management and maintenance skills Several years developing sustainable customer relations Fluent in German and English ADDITIONAL AS A PLUS Machine Learning, AI Python; R and/or SPSS knowledge or equivalent tools WE OFFER Unleash your potential in an international company with flat hierarchies. Enjoy a maximum of personal freedom. A structured onboarding process ensure that our new hires get familiar with Axxiome, receive right tools and feel seen and accountable. An attractive salary model with performance-based bonuses, a generous home office regulation, a company car for private use and other benefits of a modern consulting company round off our offer to you. As a top performer, you also participate directly in the company’s success through an investment model. To ensure that your knowledge is always “state-of-the-art”, you regularly take part in internal and external training courses. An intensive training and a regular coaching enable you to reach your personal goals. YOUR APPLICATION Please apply online with your complete set of documents, including your desired salary and your possible starting date at recruiting.dach@axxiome.com. For any questions please don’t hesitate to contact Hardy Schwarzer, Recruiting Manager Europe at Axxiome (hardy.schwarzer@axxiome.com, +49 151 27 655 588).',\n", + " 'soft_skills': '[\"Research\", \"Cooperation\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Management\", \"Accountability\", \"Operations\", \"Integration\", \"Innovation\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Technological Change\", \"Business Strategies\", \"Financial Services\", \"Sustainable Development\", \"Service Level Management\", \"Onboarding\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Customer Data Integration\", \"Performance Based Contracting\", \"Process Modeling\", \"Statistical Modeling\", \"SQL Plan Management\", \"Investments\", \"Machine Learning Methods\", \"Data Science\", \"Business Requirements\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Personalization\", \"Physics\", \"Receivables\", \"Service Innovation\", \"Modulation\", \"Economics\", \"Product Marketing\", \"Banking\", \"Project Management\", \"Algorithms\", \"Customer Experience\", \"Service Industries\", \"Additives\", \"Data Collection\", \"Job Descriptions\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"New Hire Orientations\"]',\n", + " 'languages': \"['English', 'Basque']\"},\n", + " {'company_id': '114',\n", + " 'job_title': 'internship aircraft data analytics (all genders)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'job_description': 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " 'languages': \"['English', 'Welsh']\"},\n", + " {'company_id': '11',\n", + " 'job_title': 'computer vision & machine learning engineer (m/f) in tech-startup (zh/sg)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.advertima.com',\n", + " 'jobdescription_embedded': '[[-7.48125613e-02 2.07835570e-01 4.13504213e-01 2.60667298e-02\\n5.27177691e-01 -1.57908928e-02 4.35426906e-02 5.12840092e-01\\n-4.83831353e-02 -5.26692152e-01 5.49370311e-02 -1.96710870e-01\\n-1.63398251e-01 6.90943524e-02 -2.87500788e-02 4.91514653e-01\\n3.48133087e-01 3.24850567e-02 -2.51344264e-01 4.14437264e-01\\n1.43588513e-01 -7.46505931e-02 1.35740444e-01 8.27436090e-01\\n4.11910862e-01 3.23479883e-02 -9.66688618e-02 6.09110648e-05\\n-1.28485680e-01 -1.53699204e-01 4.46923971e-01 -4.01104465e-02\\n-2.93530434e-01 -4.21549112e-01 1.61809966e-01 6.34851307e-02\\n-3.26294124e-01 -4.79399338e-02 -8.50537494e-02 1.99593470e-01\\n-5.31336725e-01 -2.39011541e-01 -1.98493809e-01 -1.52248878e-03\\n-3.57401073e-01 -4.12513912e-01 -2.35237963e-02 -7.23645417e-03\\n5.08585274e-02 1.97815597e-01 -4.25257891e-01 2.77907193e-01\\n-2.71358579e-01 -2.68183023e-01 2.50582248e-01 6.71763241e-01\\n3.00997347e-02 -3.51465911e-01 -5.90603232e-01 -3.74534220e-01\\n7.55006745e-02 -1.31098658e-01 6.19654544e-02 -3.68496984e-01\\n2.20492423e-01 1.04646027e-01 2.00463384e-01 2.14055791e-01\\n-7.28041708e-01 -2.26604640e-02 -3.77883226e-01 -1.77688897e-01\\n-2.52983540e-01 -2.65825894e-02 -2.75271893e-01 -1.30633980e-01\\n-8.04400519e-02 4.66312200e-01 1.08041100e-01 4.48809601e-02\\n-2.31912181e-01 3.08458298e-01 -2.04646558e-01 4.24157351e-01\\n1.26530781e-01 1.97570026e-01 8.99697542e-02 3.40761513e-01\\n-3.61919165e-01 4.94392663e-01 1.11442529e-01 -4.32582140e-01\\n2.05883458e-01 1.31741717e-01 3.92908216e-01 -4.69278097e-02\\n2.06392407e-01 9.47498456e-02 -3.98474246e-01 3.61459047e-01\\n2.86300510e-01 -3.59656632e-01 1.79673314e-01 -1.02912620e-01\\n8.76625925e-02 5.08109620e-03 2.07532957e-01 6.40464500e-02\\n-2.69463092e-01 4.55623835e-01 7.12066442e-02 -2.54219562e-01\\n-1.40845012e-02 -4.14022803e-01 -1.09639913e-01 -1.97120439e-02\\n-1.85655802e-02 1.98791206e-01 2.59927630e-01 6.10037372e-02\\n1.84396625e-01 -1.22795209e-01 5.97733594e-02 8.13485563e-01\\n-1.17612004e-01 2.09934749e-02 -3.09005052e-01 3.31056267e-01\\n1.18769221e-01 -4.59516913e-01 3.24716330e-01 3.47765476e-01\\n-1.72157399e-02 -2.07467362e-01 -1.88085467e-01 3.84308130e-01\\n4.94885724e-03 -2.66732812e-01 -3.39586377e-01 2.21659973e-01\\n4.17912714e-02 -5.40848494e-01 7.15782225e-01 1.56245932e-01\\n2.29486614e-01 -1.22062832e-01 5.10278419e-02 -1.48741230e-01\\n5.54006286e-02 1.46335363e-01 1.58569664e-01 5.42617999e-02\\n-2.45616004e-01 -3.14456284e-01 -2.00252637e-01 1.04914345e-01\\n-5.13096273e-01 1.48689479e-01 2.35152207e-02 -2.02239119e-02\\n2.13221356e-01 -4.46189158e-02 -3.41341317e-01 4.23323125e-01\\n-1.15832798e-01 -6.50786534e-02 3.90008017e-02 3.46165001e-01\\n-1.77494243e-01 3.14297438e-01 -4.28830534e-02 -1.56724855e-01\\n8.56056571e-01 2.55528182e-01 7.45730698e-02 4.07931767e-03\\n2.39926547e-01 6.78101406e-02 1.62786499e-01 2.03532577e-01\\n-7.40827978e-01 3.89650315e-01 -9.40904170e-02 -1.71619162e-01\\n8.91325101e-02 -1.81489915e-01 3.66186887e-01 -3.46606731e-01\\n-7.09829256e-02 -1.20310955e-01 -1.65692300e-01 -3.29915166e-01\\n-2.54832983e-01 -6.61463141e-02 3.79581422e-01 -4.96371925e-01\\n-1.96535900e-01 1.39401987e-01 -4.53027189e-01 -5.71447536e-02\\n1.68783993e-01 1.22829907e-01 2.26199523e-01 1.06280930e-01\\n-1.07998066e-01 -4.76163507e-01 2.09548678e-02 -3.76099199e-01\\n-3.64155114e-01 6.42323717e-02 -3.21632832e-01 1.98440403e-01\\n2.61040945e-02 2.30498938e-03 -8.14980045e-02 5.08852862e-02\\n-1.99491262e-01 -5.70860542e-02 1.00729175e-01 2.59538670e-03\\n2.50436038e-01 8.80186632e-02 -4.22680736e-01 3.72438908e-01\\n-1.68824807e-01 6.67744458e-01 1.31584153e-01 -8.62265408e-01\\n4.68892068e-01 1.97639048e-01 -8.74200687e-02 -3.32371950e-01\\n5.32641172e-01 -2.51138568e-01 -1.45662561e-01 8.23543444e-02\\n-2.31744900e-01 -4.14200634e-01 2.86004007e-01 -2.36347720e-01\\n-3.12744141e-01 3.67305607e-01 8.68527368e-02 2.42738292e-01\\n6.99582323e-02 -2.06447572e-01 -7.88005963e-02 -2.95100827e-02\\n-9.62020159e-02 -1.76612437e-01 -6.69884384e-01 -1.18874162e-01\\n-1.06973559e-01 -4.23873425e-01 -1.12240344e-01 -5.02191663e-01\\n-2.85304040e-01 -4.31075394e-01 -1.05588853e-01 2.01871991e-01\\n2.04943374e-01 1.56390533e-01 -1.19793285e-02 5.41197434e-02\\n-1.83353871e-01 -7.38529205e-01 -9.11356583e-02 2.25708351e-01\\n4.25021917e-01 2.59195596e-01 1.10391319e-01 -4.90930155e-02\\n1.53416425e-01 8.14056754e-01 -2.10384831e-01 -2.12434754e-01\\n2.29098693e-01 2.32892513e-01 5.91132380e-02 -1.94783002e-01\\n1.38658270e-01 4.19793934e-01 -3.79100353e-01 1.32807255e-01\\n-9.02396515e-02 -1.84316114e-02 2.98213214e-01 1.83588639e-01\\n-3.09759229e-01 -2.45619372e-01 -8.40093866e-02 1.41065866e-01\\n-6.25453651e-01 -1.97557300e-01 5.71390390e-01 1.96120083e-01\\n2.63788164e-01 6.04571588e-03 2.09466890e-01 -6.48538470e-02\\n-7.48273656e-02 -1.89074472e-01 2.80521274e-01 5.00234077e-03\\n3.98609154e-02 6.98407665e-02 1.13726825e-01 -5.63144803e-01\\n-2.94568491e+00 -1.47614136e-01 3.08415532e-01 -1.99678242e-01\\n2.23228112e-01 -1.24285780e-01 1.43789828e-01 -6.15976155e-02\\n-3.96182090e-01 3.12300492e-02 -2.39219248e-01 -2.13510722e-01\\n5.36912307e-02 2.23684579e-01 3.49516660e-01 8.87812972e-02\\n2.51385599e-01 -3.28710556e-01 -1.59784481e-01 4.13269639e-01\\n-2.26513982e-01 -6.51242316e-01 1.98655382e-01 3.01423185e-02\\n2.34614179e-01 4.51477170e-01 -3.47378135e-01 -1.16808653e-01\\n-2.71248430e-01 -1.91095963e-01 1.90173276e-02 -3.31858397e-01\\n-2.18587369e-01 2.45439574e-01 2.45007798e-01 -1.56097347e-02\\n1.44496277e-01 -5.28135836e-01 -2.24401224e-02 -3.73407483e-01\\n-1.62471496e-02 -6.72421098e-01 4.29715663e-02 -1.01453289e-01\\n7.49893248e-01 -2.60108680e-01 7.59656355e-02 -1.08131453e-01\\n1.61183015e-01 3.61445583e-02 1.27395421e-01 1.01962723e-01\\n-2.04769015e-01 -2.55298108e-01 1.22324824e-01 -9.33513343e-02\\n5.19265950e-01 5.60826778e-01 -1.10651478e-01 -9.31328982e-02\\n4.90874909e-02 -2.47624919e-01 -4.11607355e-01 -1.79984957e-01\\n-9.65348333e-02 -2.46315837e-01 -7.04983532e-01 -5.00326455e-01\\n-5.38956048e-03 -1.63189769e-01 -9.01276246e-02 4.97162312e-01\\n-3.47494543e-01 -2.86464363e-01 -1.29615456e-01 -3.70553464e-01\\n3.23888659e-01 -1.99949071e-01 7.77457356e-02 -1.59244329e-01\\n-2.55513161e-01 -4.50424880e-01 1.01163844e-02 8.33788794e-03\\n-9.00736079e-02 -3.79168838e-01 1.33313358e-01 -1.01498343e-01\\n-3.20504636e-01 -4.65898812e-01 4.24958318e-01 2.36298382e-01\\n3.33041281e-01 1.82261050e-01 4.59996611e-01 2.81010158e-02\\n2.93453097e-01 -2.87624057e-02 2.23959237e-02 -3.52932364e-01\\n-5.34184016e-02 -3.92107219e-02 5.01218259e-01 -2.53014117e-01\\n3.71430442e-02 8.44733566e-02 -3.80612522e-01 -6.10129386e-02\\n3.41987520e-01 -1.01841472e-01 9.57975835e-02 -2.26451829e-01\\n2.39010364e-01 -7.73808137e-02 -1.07169293e-01 -2.25295220e-02\\n6.46802783e-02 6.58057213e-01 -5.93172610e-02 -3.02687138e-01\\n-1.37431264e-01 4.80119377e-01 1.36458268e-02 3.35414708e-02\\n-2.65986502e-01 2.80338284e-02 -2.33829752e-01 2.09015667e-01\\n1.69411618e-02 -2.08195403e-01 -2.67624676e-01 -5.94747290e-02\\n-8.60798135e-02 3.57821405e-01 2.71177292e-01 8.43654424e-02\\n2.18449123e-02 -3.40232581e-01 -1.46594182e-01 2.83499271e-01\\n3.40087444e-01 4.36206043e-01 2.27067277e-01 -2.19285488e-01\\n-8.62284526e-02 4.85615253e-01 -2.78541118e-01 1.76007196e-01\\n-2.18323544e-01 2.04620361e-01 -6.23414874e-01 -2.63426363e-01\\n-3.50454718e-01 -4.65650290e-01 2.64340103e-01 3.47794712e-01\\n9.47226305e-03 -2.42124181e-02 3.84898856e-02 -4.19354141e-01\\n2.93535322e-01 1.03877403e-01 2.24952534e-01 1.06221318e-01\\n1.43218217e-02 5.59086561e-01 -2.27070674e-02 -2.02024609e-01\\n-1.72525287e-01 5.61809391e-02 -1.24175198e-01 -2.01452971e-01\\n1.17491605e-02 -5.36128938e-01 -1.92975804e-01 4.12077069e-01\\n1.98053092e-01 -3.01922917e-01 -2.72895008e-01 3.29305589e-01\\n1.76602527e-02 -2.04209313e-01 -2.31350243e-01 -9.57332626e-02\\n5.10580540e-01 -1.74978133e-02 3.55504662e-01 -5.30909836e-01\\n-7.65369982e-02 -4.41194139e-02 -5.59273548e-02 3.58745098e-01\\n1.13446809e-01 -8.07073042e-02 -1.44687474e-01 8.84606224e-03\\n4.71067876e-01 -3.60574536e-02 -5.53475820e-06 8.31435397e-02\\n1.61708087e-01 -2.64543653e-01 -4.70685095e-01 1.25135724e-02\\n4.78825457e-02 -2.32196271e-01 9.67384949e-02 1.99749872e-01\\n5.52381389e-02 1.31472230e-01 -7.30037510e-01 -2.13792220e-01\\n-3.26187432e-01 -1.08023331e-01 4.91690859e-02 -4.82414067e-01\\n-2.59728022e-02 -9.40333903e-02 -5.76544881e-01 2.52427220e-01\\n-2.68262714e-01 -1.04450382e-01 1.59083351e-01 -6.06603501e-03\\n-2.84948021e-01 -1.62871733e-01 -9.12071147e-04 2.44397566e-01\\n-3.01917046e-01 -2.42015421e-01 -7.48318210e-02 -1.03533852e+00\\n1.60527363e-01 6.39708489e-02 -1.17310330e-01 1.73966944e-01\\n-5.95262051e-02 -7.00972021e-01 4.61294651e-02 -3.75033319e-01\\n-1.69396892e-01 -4.17529270e-02 -2.76075423e-01 -3.02262902e-01\\n1.69621363e-01 1.48250923e-01 -2.56628394e-01 3.64276320e-01\\n-2.41461664e-01 3.18687856e-01 -8.98490921e-02 1.00449860e-01\\n-1.55152142e-01 -2.36089498e-01 1.34332627e-01 -5.82177401e-01\\n-3.94688457e-01 -4.97919209e-02 -2.61311263e-01 -2.14216113e-01\\n-2.22407281e-01 -4.91788626e-01 -2.56183237e-01 -1.71271153e-02\\n2.88931608e-01 1.03159569e-01 -4.94758524e-02 -2.82297462e-01\\n1.88523114e-01 -4.60476160e-01 1.42803475e-01 -6.42988235e-02\\n-1.54645085e-01 -1.63130984e-01 1.80930957e-01 1.32193342e-01\\n1.97630629e-01 -4.20587391e-01 2.62340307e-01 -5.08404076e-01\\n-2.89801419e-01 2.71923840e-02 1.05498713e-02 3.57106030e-02\\n3.93313110e-01 -4.90743697e-01 2.21123290e-03 2.95393825e-01\\n1.31535843e-01 7.66709670e-02 3.06000561e-01 -3.07087362e-01\\n2.32098587e-02 3.68755579e-01 -3.18982273e-01 -1.06272763e-02\\n7.85786927e-01 1.04951635e-01 1.18482150e-01 2.08068743e-01\\n1.02742158e-01 2.48621747e-01 3.43646824e-01 2.76259277e-02\\n-4.84284870e-02 2.35315084e-01 7.49419034e-02 -5.12280881e-01\\n-1.06589667e-01 -2.82703862e-02 -2.33133242e-01 -3.23688596e-01\\n6.18175268e-01 3.96639913e-01 -5.53844452e-01 -1.86758637e-01\\n-8.96660239e-02 -2.22536281e-01 1.23838320e-01 4.87790629e-02\\n-4.62098010e-02 1.46604814e-02 4.85837370e-01 -1.49229048e-02\\n2.96656013e-01 5.50299942e-01 -2.87422597e-01 -2.32082099e-01\\n-8.24133232e-02 2.62375563e-01 2.95545869e-02 5.53577900e-01\\n-2.35687807e-01 3.75991851e-01 5.44276414e-03 8.37347433e-02\\n3.79191190e-02 5.67225851e-02 1.49264082e-01 3.37557644e-02\\n5.79684973e-02 1.04574330e-01 4.85482961e-01 5.09096801e-01\\n3.89920890e-01 3.77573103e-01 4.24028665e-01 1.62315577e-01\\n4.56680566e-01 5.52138031e-01 3.55916619e-01 6.99591860e-02\\n-1.23630196e-03 -9.76197422e-03 2.03912035e-01 -6.26806021e-02\\n3.75773311e-01 3.32866609e-01 -1.36190532e-02 9.42473710e-01\\n2.98499227e-01 2.79507488e-01 7.44784653e-01 -6.74631059e-01\\n-3.12969059e-01 1.50091290e-01 3.88896376e-01 -3.96772623e-01\\n-8.16438869e-02 1.35524377e-01 -1.24494344e-01 2.79605299e-01\\n-4.06364650e-01 -2.96852410e-01 -1.19995482e-01 2.21407130e-01\\n-1.00813881e-02 -2.34616414e-01 -2.10542589e-01 8.23616982e-02\\n-4.67322990e-02 -2.92843822e-02 -4.85481292e-01 -9.15615559e-02\\n-1.32098481e-01 -1.94786936e-01 -9.76953432e-02 -6.16302490e-02\\n-1.03723638e-01 -2.56065875e-01 -5.71998470e-02 -1.86263397e-02\\n1.06210925e-01 -1.75023645e-01 4.24486063e-02 -1.69261903e-01\\n2.53040224e-01 6.50412068e-02 6.34551167e-01 2.62695607e-02\\n2.05661863e-01 -2.99769163e-01 -9.33705494e-02 1.01154484e-01\\n5.98798729e-02 -5.26588857e-02 -2.04691011e-02 2.32411399e-01\\n-2.95312762e-01 -2.24729270e-01 9.96834189e-02 3.59177619e-01\\n-4.85568792e-01 6.32534847e-02 -2.40274489e-01 1.13494985e-01\\n9.02093574e-02 1.11282296e-01 -1.68600410e-01 -4.23413664e-02\\n-1.95959970e-01 -4.70459282e-01 9.94396955e-02 -2.41598450e-02\\n-1.68525234e-01 6.38668239e-02 2.90277541e-01 1.53806180e-01\\n-3.53918493e-01 -5.69059066e-02 -1.42201662e-01 1.74924031e-01\\n-1.87559798e-02 1.26507863e-01 -5.22771105e-02 -3.42573524e-01\\n-1.97158292e-01 2.09949896e-01 -2.35219568e-01 1.12652808e-01\\n8.66327733e-02 2.98721105e-01 3.38055119e-02 3.19180489e-02\\n4.98309731e-01 1.65570900e-02 -3.12753171e-01 -2.60851681e-01\\n-3.73559520e-02 -1.91683665e-01 -1.32150292e-01 -1.21907175e-01\\n2.36478999e-01 -4.58974749e-01 -1.12187766e-01 -1.27420351e-01\\n-1.18253261e-01 -3.04006726e-01 4.16994765e-02 -4.56260564e-03]]',\n", + " 'job_description': \"Are you looking for a job? Then keep looking. We've got a mission for you instead. You're the best at what you do. You don't just want a job. You're looking for the ultimate challenge. In a team that knows no limits, because you don't either. Welcome to Advertima. We combine machine learning, computer vision, and smart data to visually interpret human behavior in the physical world. More specifically, we detect people's physical appearance, their full-body motion and the situational context in real-time. In short: We are a Tech-Startup and we develop an AI-driven computer vision technology to enable organizations to better understand their customers and audiences and engage with them in the physical world. Our software is already operational with prominent clients, and now it is time to conquer the world. Do you want to help shape our success story? Join our team as Computer Vision & Machine Learning Engineer: Your role... Participate in cutting edge research in computer vision, artificial intelligence and machine learning applications Develop solutions for real world, large scale problems Your profile... MSc/PhD in Computer Science, Artificial Intelligence, Machine Learning, Math or related technical field Algorithmic background and rock-solid problem solving skills Strong background in computer vision or machine learning Solid coding experience in system components and experience in various software engineering systems Passion for quality, performance and reliability Excellent teamwork and communication skills Ideally you will also have... Experience in deep learning & non linear optimization What we offer... An international, young and highly motivated team of start-up professionals A fast-paced, dynamic and innovative working environment The opportunity to strongly impact on the future of Advertima An organizational model that distributes power across peers A workplace in the modern Y&R Coworking Space (ZH) and/or STARTFELD Innovation Hub (SG) Flexible vacation policy Self-development budget Monthly team brunch Competitive compensation Phantom stock options Ready for the mission? Don't keep us in suspense.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Teamwork\", \"Professionalism\", \"Problem Solving\", \"Operations\", \"Team Motivation\", \"Reliability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Application Development\", \"MSC Software\", \"Computer Science\", \"Machine Learning\", \"Visualization\", \"Scale (Map)\", \"Computer Vision\", \"Limiter\", \"Idealization\", \"Software Engineering\", \"Machine Learning Methods\", \"Artificial Intelligence\", \"Deep Learning\", \"Budget Development\", \"Physics\", \"Humanism\", \"Incentive Stock Option\", \"Algorithms\", \"Power Distribution\", \"Linearization\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '66',\n", + " 'job_title': 'sr. software engineer (jee)',\n", + " 'location': 'Sursee',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.59140545e-01 2.14985952e-01 3.99593562e-01 7.47437701e-02\\n5.97911000e-01 -2.91271418e-01 -1.53353848e-02 2.72424370e-01\\n8.65566544e-03 -3.56101155e-01 1.00290766e-02 -2.18779534e-01\\n-2.08245158e-01 1.02874584e-01 2.83053696e-01 4.66352105e-01\\n2.49129981e-01 1.74954772e-01 -2.08015949e-01 4.80245262e-01\\n1.06187262e-01 -1.34192914e-01 -3.24562639e-02 7.48353422e-01\\n2.94979960e-01 -1.74370455e-03 -1.74593985e-01 -1.98903382e-01\\n-4.08579350e-01 -1.41832247e-01 3.23671609e-01 2.61603445e-02\\n-1.68415487e-01 -4.89255846e-01 5.62287308e-02 1.01798244e-01\\n-3.11282456e-01 5.77073917e-02 -8.58186856e-02 1.42956197e-01\\n-6.93300366e-01 -4.19151723e-01 2.14420065e-01 6.40792251e-02\\n-1.28609091e-01 -2.45959461e-01 1.26493365e-01 -6.68771267e-02\\n-2.13176385e-02 8.53607804e-03 -6.65722191e-01 2.67347455e-01\\n-2.80167311e-01 -2.85073161e-01 3.45911980e-01 5.13616323e-01\\n1.92300528e-01 -6.36415601e-01 -3.47609878e-01 -4.26453382e-01\\n-1.15390606e-01 -8.39847922e-02 -5.38811572e-02 -3.64828050e-01\\n2.15325370e-01 1.45649230e-02 2.03194823e-02 3.17851812e-01\\n-7.65799165e-01 -3.32071185e-02 -9.53334793e-02 1.16522629e-02\\n-3.26856583e-01 3.01859304e-02 -3.28330815e-01 -7.84200057e-03\\n-1.07520677e-01 5.00679970e-01 2.37438474e-02 7.71400481e-02\\n-2.02081069e-01 3.24178129e-01 -4.54307348e-02 4.04399991e-01\\n3.19481462e-01 1.58569843e-01 1.74619496e-01 4.41463858e-01\\n-4.83307630e-01 3.96462828e-01 3.69919166e-02 -2.17701629e-01\\n3.06889057e-01 2.24917248e-01 4.19290185e-01 1.05420828e-01\\n2.42398381e-02 2.40396306e-01 -2.78469265e-01 3.66270870e-01\\n1.47189200e-01 -3.65447611e-01 1.21482708e-01 -1.17198296e-01\\n-4.69425879e-02 5.47754467e-02 -2.67522205e-02 1.17511988e-01\\n-2.18609333e-01 4.09478337e-01 1.97810546e-01 -1.28436059e-01\\n-8.48821551e-02 -4.97678995e-01 -6.63976520e-02 1.03133455e-01\\n4.33529392e-02 2.02133581e-01 3.01330388e-01 -9.63915512e-02\\n2.82894164e-01 1.64732821e-02 8.38655606e-02 9.48516071e-01\\n-3.35577875e-02 1.20503291e-01 -1.55044407e-01 3.20303112e-01\\n2.63782680e-01 -1.58164158e-01 1.66031513e-02 3.27381909e-01\\n1.39746591e-01 -1.17424294e-01 -2.18241856e-01 4.19413358e-01\\n-1.55524299e-01 -1.71532661e-01 -2.89140731e-01 9.24619213e-02\\n-6.92198575e-02 -5.05993962e-01 5.92344463e-01 1.45465240e-01\\n2.37012252e-01 6.38825633e-03 1.36477157e-01 -2.94672195e-02\\n-7.24028274e-02 2.77583450e-01 2.96698846e-02 1.83918700e-01\\n-3.43328983e-01 -2.67430574e-01 -1.49654314e-01 1.95940286e-01\\n-3.05878639e-01 1.03185363e-01 1.07147116e-02 -1.50992379e-01\\n1.66214824e-01 1.92711994e-01 -4.03672278e-01 2.12912083e-01\\n-1.14551313e-01 -1.24027066e-01 4.00168002e-02 3.25854540e-01\\n-1.34027928e-01 3.18210632e-01 4.38608639e-02 -1.61071625e-02\\n4.78085190e-01 2.39609182e-01 1.92840144e-01 -4.08564806e-02\\n4.38337266e-01 -2.28527263e-01 2.08125934e-01 2.31889009e-01\\n-6.04985237e-01 1.79358795e-01 -5.31815784e-03 -2.28794843e-01\\n1.67600304e-01 -3.12883779e-02 4.67690080e-01 -2.56510198e-01\\n-8.61563906e-02 -3.42738748e-01 -4.94056970e-01 -2.92866498e-01\\n-3.28362912e-01 2.96565481e-02 3.75261456e-01 -3.02060932e-01\\n-1.45419016e-01 2.97271937e-01 -4.47354585e-01 -1.12804659e-01\\n2.71004200e-01 2.50776619e-01 3.41000780e-02 6.22081617e-03\\n-1.56346336e-01 -6.63615525e-01 -4.07908820e-02 -5.09478390e-01\\n-5.84851563e-01 2.87754741e-02 -3.68840635e-01 1.04534075e-01\\n-8.30786973e-02 9.01416466e-02 -2.85243019e-02 8.63545388e-02\\n-2.44477659e-01 -1.04726650e-01 2.01141298e-01 4.67919819e-02\\n2.61013299e-01 -1.08078822e-01 -3.25344712e-01 4.67303455e-01\\n-3.16353142e-01 6.82672501e-01 2.46882156e-01 -1.09293807e+00\\n6.89088106e-01 2.80120045e-01 -1.19891099e-03 -3.37090075e-01\\n4.11354214e-01 -5.70863664e-01 -2.83778161e-02 4.35246676e-02\\n-2.52764910e-01 -3.70473385e-01 2.75692254e-01 -1.69052377e-01\\n-3.18890750e-01 5.97497880e-01 1.25928938e-01 -4.00718451e-02\\n3.54555547e-01 -3.58050555e-01 -1.19076304e-01 3.45927775e-02\\n-4.87102680e-02 -1.66204497e-01 -4.86148745e-01 1.73715577e-01\\n-5.69110475e-02 -4.74281609e-01 -9.61758941e-02 -3.04102093e-01\\n-2.13119775e-01 -3.06411415e-01 -2.82633156e-01 3.63916665e-01\\n2.34888583e-01 9.22573432e-02 -8.95299390e-02 1.40345782e-01\\n7.92562962e-02 -7.97855914e-01 7.80948848e-02 6.83736503e-02\\n5.69462359e-01 3.38594347e-01 1.68318823e-01 -4.87911552e-02\\n7.75671229e-02 6.01238906e-01 -2.49276847e-01 -2.78023273e-01\\n-3.53451036e-02 3.79000716e-02 -4.00593802e-02 -5.68204187e-02\\n2.43540078e-01 5.28935730e-01 -3.93423289e-01 5.00212125e-02\\n-3.33835594e-02 -3.29537690e-02 3.91057849e-01 -1.70480490e-01\\n-4.30596888e-01 -1.03494570e-01 1.86453220e-02 2.59832114e-01\\n-6.09304607e-01 -1.91358089e-01 5.62231243e-01 1.69317901e-01\\n2.30401680e-01 1.86170399e-01 1.92530319e-01 -1.98338822e-01\\n-1.86776370e-01 -2.93643475e-01 1.93424359e-01 1.10538065e-01\\n1.25486523e-01 1.33014590e-01 3.25820222e-03 -6.78729177e-01\\n-3.02968431e+00 -1.64733008e-01 2.94037789e-01 -2.30525911e-01\\n1.38884202e-01 -1.49873897e-01 -5.53125553e-02 -1.18580991e-02\\n-2.70127773e-01 1.16413645e-01 -1.40688464e-01 -6.88409507e-02\\n1.84081569e-02 3.30921084e-01 2.82745212e-02 1.77129135e-01\\n1.80618092e-01 -2.13503823e-01 -1.19663276e-01 3.52496922e-01\\n-1.30314440e-01 -7.14205444e-01 1.73913524e-01 -3.09373885e-02\\n1.99755281e-01 1.62980571e-01 -4.18903589e-01 -4.94657829e-02\\n-4.82036546e-02 -2.38112494e-01 1.94168687e-02 -2.55795807e-01\\n-2.45681927e-01 2.40613088e-01 9.24154092e-03 -1.05352113e-02\\n7.51384646e-02 -3.71547103e-01 -1.11809686e-01 -5.63753664e-01\\n1.41792938e-01 -6.57378018e-01 -1.91586614e-02 -4.32715677e-02\\n6.03190958e-01 -3.09732854e-01 1.29175141e-01 1.57157898e-01\\n2.33670622e-01 8.49056467e-02 9.03856941e-03 4.64980714e-02\\n-2.06346691e-01 -3.58047932e-01 -1.63211133e-02 -2.49112368e-01\\n4.83281225e-01 3.02857786e-01 -9.96795893e-02 1.09858528e-01\\n3.09875906e-01 -2.84569860e-01 -4.39362824e-01 -3.44064444e-01\\n-1.50141776e-01 -2.52484530e-01 -7.90437281e-01 -2.75485963e-01\\n-1.84734285e-01 -4.34323102e-02 -2.06440732e-01 6.95610762e-01\\n-3.31079632e-01 -3.30904037e-01 1.27264112e-01 -6.63184166e-01\\n2.99937189e-01 -3.04647893e-01 -4.02918365e-03 -3.18165004e-01\\n-3.24599534e-01 -4.74954665e-01 1.60354897e-01 -1.65417902e-02\\n-2.74585545e-01 -1.35358438e-01 -6.78182691e-02 -3.84551100e-02\\n-2.30980143e-01 -4.17516649e-01 4.58189994e-01 1.58557206e-01\\n2.94039875e-01 1.10753559e-01 5.52804947e-01 -7.60128722e-02\\n3.82173836e-01 7.71620721e-02 5.18296380e-03 -3.62911701e-01\\n1.44410823e-02 2.66282149e-02 5.56607366e-01 -2.48109698e-01\\n-8.46340135e-02 2.94083923e-01 -2.95413554e-01 -1.15545578e-01\\n3.85310382e-01 4.81810793e-02 -7.73006380e-02 2.98006134e-03\\n3.19571048e-01 -3.52579892e-01 -2.11414739e-01 1.63416073e-01\\n1.66518345e-01 8.83441269e-01 4.45842743e-04 -3.81531030e-01\\n-2.82961249e-01 6.38796926e-01 -6.13223985e-02 2.19613742e-02\\n-8.97796676e-02 1.52679458e-01 -4.94410731e-02 3.50327492e-01\\n1.32470559e-02 -3.56396735e-01 -2.83354878e-01 -2.27178603e-01\\n-1.46985963e-01 2.32430905e-01 1.48612052e-01 7.43683288e-03\\n-5.49935624e-02 -3.21658283e-01 -1.65663704e-01 1.60599977e-01\\n2.27022886e-01 4.66034681e-01 1.39568686e-01 -1.82106093e-01\\n1.48305367e-03 3.19706917e-01 -2.24734336e-01 2.59605318e-01\\n-3.10565948e-01 1.62956700e-01 -6.24524832e-01 -2.59586841e-01\\n-1.56687498e-01 -4.39807951e-01 5.45527413e-02 3.30551535e-01\\n2.44172513e-01 3.08549814e-02 1.35955766e-01 -6.46464586e-01\\n3.38027030e-01 1.74484611e-01 6.17844984e-02 7.63140153e-03\\n2.49219523e-03 4.21890378e-01 -5.38765863e-02 -1.72121853e-01\\n-1.30897835e-01 -6.54230863e-02 -2.03455210e-01 -2.54353255e-01\\n2.96545535e-01 -5.21669924e-01 -1.13839313e-01 3.11975479e-01\\n1.83707625e-01 -3.88236582e-01 -2.47944444e-01 2.71010965e-01\\n2.10424930e-01 -1.86878219e-01 -2.47602791e-01 -4.84839194e-02\\n2.94839948e-01 -2.07209233e-02 2.92301089e-01 -3.32095921e-01\\n-1.32310743e-04 -4.67430316e-02 -5.07606864e-02 4.57950562e-01\\n2.44528547e-01 1.12880012e-02 -2.91687906e-01 -1.12961292e-01\\n5.32411635e-01 -1.55245647e-01 -9.33347121e-02 -1.86505675e-01\\n8.93089399e-02 -8.39429051e-02 -4.69422072e-01 1.70883864e-01\\n-3.75418440e-02 -2.58899063e-01 -3.00870743e-02 -3.48422714e-02\\n1.49219573e-01 1.23273708e-01 -4.48829979e-01 -2.56764710e-01\\n-2.78885573e-01 -8.74090269e-02 3.19470644e-01 -2.78574347e-01\\n-4.60292287e-02 1.86245963e-02 -5.86488783e-01 2.59166211e-01\\n-3.09428364e-01 -8.54080915e-02 1.97234765e-01 2.00140357e-01\\n-4.47484851e-01 1.55396014e-02 2.37046815e-02 2.45800689e-01\\n-2.58217573e-01 -3.46178681e-01 -6.11793809e-02 -1.08007526e+00\\n1.00250579e-01 3.05740032e-02 -1.96941704e-01 8.01054761e-02\\n-1.61697119e-01 -7.44671047e-01 8.08203593e-02 -4.16147500e-01\\n-3.62664945e-02 5.67052178e-02 -2.57417828e-01 -3.43923420e-01\\n4.32008021e-02 -1.44574605e-02 -3.70647490e-01 4.33134913e-01\\n-4.63282526e-01 3.00051719e-01 -2.10830808e-01 7.14535713e-02\\n6.97714277e-03 -1.87210009e-01 1.47016302e-01 -3.45265985e-01\\n-3.49844754e-01 -2.67215163e-01 -5.37152410e-01 -3.90266031e-01\\n-1.42886769e-02 -3.11907083e-01 -1.15726091e-01 1.05029717e-01\\n2.95390874e-01 2.23784000e-01 -3.37222666e-02 -4.07550573e-01\\n2.78661817e-01 -4.85380322e-01 1.52519392e-02 -2.73122460e-01\\n3.21673490e-02 -1.08061716e-01 1.85616046e-01 4.64729853e-02\\n1.87275410e-01 -3.97490174e-01 5.02618372e-01 -2.67293811e-01\\n-3.87547612e-01 -1.78973258e-01 -2.45054923e-02 5.07123955e-02\\n2.63544053e-01 -5.58651149e-01 4.14139554e-02 1.52039081e-01\\n1.35533512e-01 -3.73425968e-02 1.83417931e-01 -8.13848432e-03\\n1.92759857e-02 1.72055840e-01 -4.66128856e-01 5.41372262e-02\\n8.94944072e-01 1.32951602e-01 -2.55786832e-02 1.03053764e-01\\n2.35550538e-01 4.54222530e-01 5.70481598e-01 -1.04312629e-01\\n9.89628769e-03 2.27908000e-01 -2.06019282e-02 -6.14049196e-01\\n-1.60267964e-01 -1.81636974e-01 -1.76981032e-01 -3.11468810e-01\\n6.84495211e-01 3.26817751e-01 -4.20823067e-01 -1.60921991e-01\\n-1.10746004e-01 -1.48182601e-01 3.04823130e-01 3.67237208e-03\\n-1.08729653e-01 -1.19788669e-01 4.51514691e-01 3.39987851e-03\\n4.53031182e-01 6.18699610e-01 -2.52691299e-01 -4.84011233e-01\\n-1.07165150e-01 2.07058623e-01 1.65678456e-01 3.47062409e-01\\n-1.18496157e-01 1.72558323e-01 -1.17746241e-01 3.52860764e-02\\n-1.60739735e-01 1.93895459e-01 1.28720105e-01 1.15685619e-01\\n3.92618954e-01 -5.90706058e-02 4.10141736e-01 4.08648849e-01\\n9.46822464e-02 4.82899249e-01 2.76164621e-01 1.27298787e-01\\n3.13044548e-01 4.87805218e-01 3.13855708e-01 1.77488640e-01\\n3.68758999e-02 2.11508989e-01 1.34360701e-01 -2.53728449e-01\\n3.80788773e-01 3.25406581e-01 3.77087981e-01 9.25790608e-01\\n2.13581488e-01 3.42635244e-01 9.78252828e-01 -7.21503735e-01\\n-4.88778800e-01 4.26922366e-02 5.66395104e-01 -3.39419037e-01\\n-6.76623872e-03 2.31389597e-01 -1.66323140e-01 3.66537750e-01\\n-4.85446066e-01 -1.89327180e-01 6.38370812e-02 4.61666919e-02\\n-8.29492807e-02 -1.04809284e-01 -2.70108283e-01 1.14919804e-01\\n-1.98394313e-01 -5.23257181e-02 -2.93915629e-01 -9.04433057e-02\\n-1.27969369e-01 -4.28299233e-02 -1.60277158e-01 -3.93470190e-02\\n-1.01959296e-01 -4.81896013e-01 -1.45679355e-01 -4.53921072e-02\\n4.18310374e-01 -5.80909885e-02 1.24395303e-01 -2.32716799e-01\\n2.37782612e-01 2.75281787e-01 4.97156709e-01 -5.77912554e-02\\n2.11122736e-01 -2.34258294e-01 -2.20230788e-01 1.23899087e-01\\n2.72566676e-02 8.48191753e-02 2.38910504e-02 2.95267016e-01\\n-2.75234580e-01 -9.68883932e-02 9.56616551e-02 4.18630183e-01\\n-2.71179110e-01 -2.43866503e-01 -2.71051615e-01 7.09974840e-02\\n1.35059908e-01 1.75600842e-01 -2.32238725e-01 6.27258420e-02\\n-3.11817944e-01 -6.18101597e-01 4.37010646e-01 -2.62267828e-01\\n-1.68230906e-01 2.02680200e-01 4.16226804e-01 2.00393528e-01\\n-2.70699263e-01 1.06937625e-01 -7.24396408e-02 1.65149331e-01\\n5.91270849e-02 4.23454285e-01 -9.66151133e-02 -2.08272070e-01\\n-2.53871173e-01 3.09258908e-01 -1.79275140e-01 5.09080663e-02\\n-6.06958047e-02 5.15875578e-01 -8.73451307e-03 4.27482948e-02\\n3.30507815e-01 1.04264200e-01 -3.69591087e-01 -3.62218678e-01\\n-1.92903012e-01 -1.87381998e-01 5.12942038e-02 -1.42367920e-02\\n5.29789254e-02 -4.38718796e-01 -5.45011135e-03 -2.13688821e-01\\n5.55509217e-02 -3.55192810e-01 -1.37375101e-01 -3.35964784e-02]]',\n", + " 'job_description': 'Want to work on some of the most in-demand & exciting technologies in the IT industry? Come join us at Ishi Systems. At Ishi, we have built an enduring platform for innovation that pursues excellence to create products, systems and solutions that delight our customers and exceed their expectations. Our engineers solve a variety of complex and challenging business problems with cutting edge technology. We actively explore new and emerging technologies in Big Data No-SQL databases, Middleware Messaging platforms, High Availability Architectures, Advanced Analytics, Machine Learning, and contemporary web and mobile user interface frameworks. Do you take pride in writing quality code and building software that is reliable, testable and maintainable? Do you thrive on creating simple and elegant solutions to complex problems? Are you ready to compete head-to-head with some of the top and most fast-paced and innovative organizations in the industry? Mandatory Skills and Experience 5+ years of experience in application development including analysis, design, coding and implementation of large scale enterprise systems Strong Java language skills – core and advanced Extensive OO knowledge, including design patterns Experience in one or more frameworks such as Spring, Hibernate, JBPM, Drools, Quartz, etc Experience with relational databases and solid SQL skills Solid experience with Unix/Linux, including basic shell scripting Strong communication skills and ability to interface with customers Desired Skills and Experience Experience on user interface frameworks and technologies such as AngularJS, Play, JSF, JQuery, JavaScript, etc. Experience with messaging platforms such as RabbitMQ, HornetQ, Kafka, ActiveMQ Experience developing RESTful services and APIs Experience in No-SQL databases such as MongoDB, Hadoop HBase, Couchbase, etc Experience in application server clustering, performance tuning and scalability design Experience working in agile environments using Scrum, Continuous Integration and TDD/BDD practices Additional languages such as Scala, Clojure, Golang, Python, R',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Writing\", \"Reliability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Test-Driven Development (TDD)\", \"Agility\", \"Hyper SQL Database (HSQLDB)\", \"High Availability Clusters\", \"Shell Script\", \"Analytics\", \"Middleware\", \"Distributed Design Patterns\", \"Continuous Integration\", \"Industrialization\", \"Scale (Map)\", \"Hibernate (Java)\", \"Scala (Programming Language)\", \"Activism\", \"Metal Building Software\", \"Python (Programming Language)\", \"Linux\", \"Maintainability\", \"Drools\", \"Agile Edge Technologies\", \"Application Servers\", \"MongoDB\", \"Scrum (Software Development)\", \"Hornetq\", \"Mobility\", \"Machine Learning Methods\", \"Quartz (Graphics Layer)\", \"RabbitMQ\", \"Clojure\", \"JQuery\", \"Testability\", \"Enterprise Planning Systems\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Apache ActiveMQ\", \"Scalability\", \"Production Systems\", \"Big Data\", \"User Experience Design (UX)\", \"Design Codes\", \"Performance Tuning\", \"Relational Databases\", \"Language Experience Approach\", \"Apache HBase\", \"Additives\", \"Unix\", \"Emerging Technologies\", \"SQL (Programming Language)\", \"User Interface\", \"JSF 2\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '49',\n", + " 'job_title': 'software engineer (full time\\xa0and internship)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'job_description': 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " 'soft_skills': '[\"Writing\", \"Planning\"]',\n", + " 'hard_skills': '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'oracle database specialist',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.50344044e-01 2.99868912e-01 5.50742328e-01 -8.36134702e-02\\n5.68544745e-01 -2.65012980e-01 1.25814363e-01 4.24314201e-01\\n-1.92428425e-01 -1.74037442e-01 -2.41665691e-01 -3.46283823e-01\\n-3.23801525e-02 4.87368219e-02 4.95956279e-02 3.16335648e-01\\n3.56342822e-01 1.39567122e-01 -7.31303692e-02 2.66264588e-01\\n1.69047534e-01 -1.29467577e-01 1.56061396e-01 5.98502934e-01\\n3.61385316e-01 9.83440578e-02 -1.57679245e-01 1.17900304e-01\\n-3.65872294e-01 -3.41019779e-01 3.84579003e-01 4.00338881e-02\\n-1.65814415e-01 -9.72165763e-02 1.31032333e-01 -2.45395675e-03\\n-1.36326745e-01 1.75180323e-02 3.47431637e-02 1.62477508e-01\\n-2.48829797e-01 -2.69782655e-02 1.03121489e-01 8.20975453e-02\\n-3.28827858e-01 -3.65580380e-01 2.20062166e-01 -4.09145094e-02\\n2.38919392e-01 -4.01984937e-02 -4.30999607e-01 4.50154752e-01\\n-2.36004829e-01 -3.34120214e-01 3.16861004e-01 5.76608181e-01\\n-1.43594697e-01 -5.74257374e-01 -3.91342789e-01 -1.87209502e-01\\n1.89507544e-01 -2.10906371e-01 8.99885669e-02 -2.61813521e-01\\n4.86060888e-01 7.18827769e-02 5.33668287e-02 3.59765857e-01\\n-7.60632753e-01 -3.68128088e-03 -2.46613190e-01 -8.53761509e-02\\n-3.52674961e-01 -2.27976998e-04 -3.23778927e-01 -4.58565494e-03\\n-4.50931378e-02 4.66178983e-01 8.74290541e-02 1.68304548e-01\\n-3.99443209e-02 2.73903221e-01 -1.35031775e-01 1.69238433e-01\\n2.64134526e-01 2.38735020e-01 9.01743844e-02 2.11429551e-01\\n-3.01218837e-01 4.63288248e-01 2.31534705e-01 -2.92255104e-01\\n2.28532806e-01 1.29726723e-01 2.48588115e-01 6.02029152e-02\\n2.00216174e-01 8.31226408e-02 -1.41769022e-01 2.63627499e-01\\n2.91055858e-01 -2.58690685e-01 1.18627129e-02 2.19210405e-02\\n-4.21017483e-02 2.64915321e-02 7.90824443e-02 4.09882694e-01\\n-4.01165128e-01 5.72586715e-01 2.44457778e-02 -1.56676993e-01\\n-6.74437582e-02 -5.77431321e-01 -2.89555579e-01 1.19530857e-01\\n-4.03646007e-02 -2.40212735e-02 1.70099542e-01 2.95797676e-01\\n2.14618072e-01 5.06621525e-02 2.17613012e-01 8.55161309e-01\\n-1.27205662e-02 5.14612421e-02 -1.19237639e-01 3.73150796e-01\\n8.32098871e-02 -2.76429981e-01 2.23874971e-01 4.86609042e-01\\n1.52684331e-01 -5.53184412e-02 -1.47194460e-01 1.87543795e-01\\n-8.18634704e-02 -2.42548525e-01 -1.76519558e-01 1.45320639e-01\\n-1.29047826e-01 -5.30931234e-01 5.24457932e-01 5.21680480e-03\\n1.09040692e-01 -3.10333557e-02 -1.18403919e-02 -2.11007372e-02\\n-8.20503682e-02 1.98070288e-01 1.78878918e-01 8.17778856e-02\\n-2.48747468e-01 -1.67122751e-01 -3.78896713e-01 1.37126282e-01\\n-2.64571041e-01 -9.78433937e-02 -2.35998347e-01 -8.70659128e-02\\n4.21234190e-01 -1.92164425e-02 -3.29638600e-01 4.01808739e-01\\n-7.52056241e-02 -5.90403341e-02 -1.65488675e-01 2.21466959e-01\\n-1.10831313e-01 2.11020663e-01 -2.94468433e-01 -1.08377084e-01\\n4.27365273e-01 6.49237037e-02 3.81381325e-02 -3.02022118e-02\\n3.38242650e-01 5.16137108e-04 2.24531800e-01 1.13080293e-02\\n-7.92481422e-01 4.07549709e-01 2.19546980e-03 -7.87545070e-02\\n9.41997916e-02 1.26496390e-01 2.62682110e-01 -2.88416326e-01\\n1.29888430e-01 -1.82406679e-01 -4.31333274e-01 -2.95589477e-01\\n-1.85058028e-01 -1.50061548e-02 3.70781511e-01 -4.67244118e-01\\n-2.14029238e-01 8.85621905e-02 -5.87092817e-01 8.37548524e-02\\n3.47697467e-01 2.14996129e-01 2.02805400e-01 8.14359486e-02\\n-9.88976881e-02 -5.39520979e-01 2.57641017e-01 -3.95575941e-01\\n-1.16240196e-01 2.84675032e-01 -3.68804127e-01 1.94553494e-01\\n6.93748146e-02 7.75319412e-02 -8.32814798e-02 1.61023200e-01\\n-1.07206188e-01 -1.76077440e-01 1.15711398e-01 6.69607744e-02\\n4.34747219e-01 1.07930355e-01 -4.59999442e-01 6.55410945e-01\\n-2.53371567e-01 3.84891748e-01 1.23931378e-01 -7.72607625e-01\\n4.18274522e-01 3.11403006e-01 1.15485363e-01 -2.31430069e-01\\n7.50813067e-01 -2.82341331e-01 1.26042599e-02 6.69983625e-02\\n-4.55215275e-01 -3.27777654e-01 1.06438383e-01 -1.07356638e-01\\n-3.08551878e-01 4.97365564e-01 4.35727984e-02 1.17535688e-01\\n3.30232471e-01 -5.27512506e-02 -1.88408583e-01 2.90741604e-02\\n-1.24852739e-01 -1.77497551e-01 -4.22181964e-01 2.54762988e-03\\n-1.38306869e-02 -5.68121970e-01 -5.26690036e-02 -5.70605755e-01\\n-1.85014293e-01 -1.62004888e-01 -2.03082114e-01 2.20118552e-01\\n2.50092125e-03 1.38598904e-01 3.95965837e-02 -4.49507460e-02\\n-3.42395276e-01 -5.73601484e-01 -3.96765321e-02 2.20874831e-01\\n3.19226384e-01 1.77587673e-01 -4.26600873e-03 -1.87898681e-01\\n-6.14274889e-02 6.90328836e-01 -2.17607468e-01 -1.53107643e-01\\n-2.16693208e-02 2.90729553e-01 4.55933716e-03 -9.21536982e-02\\n1.43671513e-01 3.24280947e-01 -2.11498484e-01 1.40329197e-01\\n-1.30637884e-01 -1.12636248e-02 2.80874640e-01 -6.28885627e-02\\n-3.25269729e-01 -4.19982821e-01 -1.29318655e-01 9.63561907e-02\\n-5.82228363e-01 -2.41820529e-01 6.50394440e-01 1.67511910e-01\\n5.52900806e-02 2.58343160e-01 3.31641883e-01 -6.93516508e-02\\n-1.77122012e-01 -1.71651617e-01 1.37424394e-01 5.47310412e-02\\n2.03108415e-03 1.27780169e-01 -2.72520959e-01 -5.46763182e-01\\n-3.67851758e+00 -1.07219957e-01 1.10660531e-01 -3.23858052e-01\\n2.47935802e-01 -1.57187149e-01 2.88007468e-01 -8.45322832e-02\\n-2.23977402e-01 5.93658611e-02 -1.34607568e-01 -1.94025353e-01\\n2.99265563e-01 2.82040834e-01 1.06960975e-01 2.59087443e-01\\n3.41742903e-01 -2.46477947e-01 2.37383004e-02 2.69323528e-01\\n-2.07011864e-01 -6.37321711e-01 2.99886197e-01 -6.01440743e-02\\n3.35886687e-01 5.48691392e-01 -3.12769592e-01 -8.43790844e-02\\n-1.56674847e-01 -2.89406091e-01 1.52986750e-01 -2.63179034e-01\\n-1.21529937e-01 2.96120971e-01 1.89323202e-01 -6.87250644e-02\\n1.80136085e-01 -3.40261549e-01 5.23467511e-02 -4.24237639e-01\\n1.32251009e-01 -6.31319702e-01 -7.00130165e-02 -6.71439394e-02\\n7.58784652e-01 -3.90633196e-01 2.17326544e-02 -1.88544579e-02\\n1.01620957e-01 3.37837577e-01 1.06822960e-01 -2.11049527e-01\\n-2.40405098e-01 -2.09129676e-01 -3.05872578e-02 -1.55725375e-01\\n4.24672812e-01 6.68926358e-01 -2.59950817e-01 2.86586508e-02\\n4.19696197e-02 -3.49278837e-01 -4.54057276e-01 -3.54308605e-01\\n-3.57671440e-01 -7.08710626e-02 -6.64852977e-01 -5.60403526e-01\\n3.33710574e-02 -4.70280461e-02 -4.47280928e-02 4.77390528e-01\\n-1.96592674e-01 -4.81749386e-01 -1.84579790e-01 -4.08670127e-01\\n4.29462679e-02 2.95097977e-02 -6.09803163e-02 -1.62162885e-01\\n-8.92863572e-02 -4.15206730e-01 -1.72136784e-01 -4.65405956e-02\\n-1.76524401e-01 -2.09040031e-01 1.26130700e-01 -1.89721748e-01\\n-3.87841940e-01 -5.64676106e-01 4.82218325e-01 3.45765352e-02\\n3.24065655e-01 1.97742090e-01 1.47551864e-01 2.21240342e-01\\n3.22948217e-01 -3.12136739e-01 6.52425662e-02 -3.99301022e-01\\n2.08723977e-01 1.70524612e-01 7.03334868e-01 -3.11024040e-01\\n1.45836756e-01 2.84163915e-02 -2.65702337e-01 -1.98777989e-01\\n1.86738357e-01 -2.53383331e-02 1.50296003e-01 -4.21443701e-01\\n2.81243503e-01 -4.46012288e-01 -4.07073230e-01 1.19376332e-01\\n1.08825870e-01 6.16555691e-01 -2.28778925e-02 -3.34809750e-01\\n-1.93834931e-01 3.88231009e-01 -1.96265653e-01 -1.81126326e-01\\n-2.78138697e-01 -1.75813213e-02 -3.14066410e-01 3.41635346e-01\\n1.20524831e-01 -1.46943899e-02 -2.17535079e-01 -9.68547761e-02\\n3.41110751e-02 3.51485699e-01 2.92355388e-01 1.78553060e-01\\n4.52560522e-02 -3.93174708e-01 1.08899757e-01 2.12006241e-01\\n1.34727627e-01 2.20185041e-01 1.73186902e-02 2.74178050e-02\\n-4.91308756e-02 3.02060843e-01 -1.64208457e-01 2.27174640e-01\\n-3.34652252e-02 9.58792567e-02 -5.59185863e-01 -3.73958617e-01\\n-1.86907813e-01 -1.86061367e-01 -2.05658060e-02 3.26790452e-01\\n1.43890277e-01 -3.38630304e-02 -9.15467069e-02 -3.03534359e-01\\n1.43392250e-01 -1.01385243e-01 3.84435982e-01 2.60852337e-01\\n-1.09422944e-01 4.35409397e-01 1.66016594e-02 -1.53932258e-01\\n-1.86502874e-01 1.57390490e-01 -4.07057285e-01 -2.25469880e-02\\n9.39822122e-02 -3.46799314e-01 -3.54322232e-02 3.48026216e-01\\n1.98349357e-01 -2.14511305e-01 -5.75737804e-02 1.79050207e-01\\n-1.45205408e-01 -4.05240983e-01 -2.22403198e-01 -3.78827341e-02\\n3.55395406e-01 8.32724720e-02 2.82284409e-01 -4.58255023e-01\\n-3.37302941e-03 -8.97446368e-03 1.32864686e-02 4.08360392e-01\\n-4.98161912e-02 9.33496561e-03 6.37324601e-02 -3.47337842e-01\\n4.61662263e-01 -5.15633039e-02 -3.58784758e-02 6.17126413e-02\\n1.63957119e-01 -1.75808091e-02 -4.10534561e-01 4.89798523e-02\\n-9.02213231e-02 -7.17921853e-02 3.73984315e-02 -5.66902570e-02\\n2.50325631e-02 8.08443800e-02 -5.39205909e-01 -1.88293576e-01\\n-3.81888539e-01 -8.43304545e-02 -1.74573302e-01 -4.79754716e-01\\n7.41466973e-03 3.21177430e-02 -5.18002927e-01 3.10618758e-01\\n-1.78096890e-01 1.45629436e-01 2.10393578e-01 -7.82343149e-02\\n-4.00201291e-01 -1.24277547e-01 3.33773434e-01 1.27438471e-01\\n-3.24243516e-01 -1.29123241e-01 -1.66171759e-01 -9.95943069e-01\\n2.65177816e-01 -1.95115969e-01 -9.41480231e-03 8.54606852e-02\\n2.56666308e-03 -4.87043649e-01 2.22561225e-01 -3.62459272e-01\\n-2.31111124e-01 -4.08805571e-02 -2.55128324e-01 -3.91455770e-01\\n4.06730808e-02 5.05709201e-02 -2.25117698e-01 3.17290455e-01\\n-3.44240993e-01 3.38977307e-01 -2.66766436e-02 1.42045811e-01\\n6.91696927e-02 -1.89942077e-01 -3.54596879e-03 -5.23240566e-01\\n-3.62083673e-01 -1.27398446e-01 -1.24019913e-01 -4.63463105e-02\\n-5.50492816e-02 -1.78591877e-01 8.23139772e-03 1.36974910e-02\\n3.80780071e-01 2.29671881e-01 -1.99328348e-01 2.52699945e-02\\n1.14986688e-01 -3.65228772e-01 -8.25979263e-02 -1.22287512e-01\\n3.57515402e-02 -1.67211279e-01 1.90315634e-01 1.62759900e-01\\n4.32456806e-02 -5.18814921e-01 3.53566170e-01 -2.19230160e-01\\n-2.81259626e-01 7.14839324e-02 1.49458915e-01 9.09223035e-03\\n2.81989336e-01 -4.65097606e-01 -1.37101084e-01 3.45818073e-01\\n7.88298175e-02 1.14434347e-01 2.57998496e-01 -2.74207518e-02\\n-1.42109543e-01 2.72109985e-01 -4.37683046e-01 1.23329088e-02\\n8.33764911e-01 2.53213048e-01 1.01695225e-01 2.49616325e-01\\n1.51883494e-02 2.44343713e-01 3.87706578e-01 1.21419407e-01\\n-2.16146987e-02 4.78671849e-01 -1.81764085e-02 -6.87834442e-01\\n9.95376483e-02 -1.85063910e-02 -2.35239774e-01 -3.04442823e-01\\n6.38441265e-01 4.60555255e-01 -3.53409946e-01 -4.44168240e-01\\n-2.02166691e-01 -2.15724707e-01 -4.65193801e-02 -1.05919778e-01\\n2.41688669e-01 -2.70377398e-01 5.08318186e-01 -3.28088216e-02\\n1.08665094e-01 5.17178178e-01 -1.43142626e-01 -2.62475431e-01\\n-6.47307560e-02 5.50841913e-02 1.21137895e-01 4.05580401e-01\\n-1.45933479e-01 2.11201400e-01 -4.65157516e-02 1.94335118e-01\\n-1.99252635e-01 1.52460514e-02 1.38617471e-01 9.46106687e-02\\n1.83712412e-02 1.63487032e-01 3.25548291e-01 4.01360333e-01\\n3.44879717e-01 5.27180016e-01 2.06052750e-01 -7.24249007e-03\\n7.11077571e-01 5.08523405e-01 2.93867767e-01 2.77169943e-01\\n-1.01757556e-01 3.05843372e-02 3.46198902e-02 -6.95794672e-02\\n2.49344662e-01 3.08107585e-01 3.22118998e-02 8.25287700e-01\\n3.96732420e-01 1.70224041e-01 5.58603048e-01 -4.36760694e-01\\n-3.83109093e-01 -1.28457949e-01 3.92501354e-01 -5.14883995e-01\\n-4.80463803e-02 -6.26916885e-02 -2.75684655e-01 1.68438509e-01\\n-5.38641632e-01 -2.45701253e-01 -2.15521865e-02 -1.40079454e-01\\n2.45970026e-01 -4.85178605e-02 -3.74405235e-01 -1.67981923e-01\\n-1.50379583e-01 7.49530876e-03 -4.77015644e-01 -1.26347452e-01\\n-1.91276401e-01 -1.27341136e-01 -1.44395798e-01 -3.62022191e-01\\n9.89248157e-02 -3.21793616e-01 -9.78836343e-02 6.62921146e-02\\n1.92977145e-01 -1.83094248e-01 4.35643904e-02 -1.61129221e-01\\n2.03401208e-01 2.57215530e-01 5.73963165e-01 -2.55213603e-02\\n9.38783139e-02 -1.80271953e-01 -4.37991954e-02 1.43296078e-01\\n1.72994554e-01 1.41194284e-01 -4.67405980e-03 4.33169454e-01\\n-4.19555873e-01 -2.34488904e-01 -1.37800530e-01 4.58843350e-01\\n-5.12693822e-01 6.09200224e-02 4.28633429e-02 8.00583139e-02\\n3.23438942e-02 2.08423063e-02 -2.73821652e-01 7.73949474e-02\\n-3.35285544e-01 -4.57355887e-01 3.70146304e-01 -1.73096862e-02\\n-6.28818795e-02 -6.78678304e-02 2.37066865e-01 1.04409143e-01\\n-2.13372022e-01 -1.11256436e-01 -6.49941340e-02 7.16841519e-02\\n2.57636040e-01 2.04123557e-01 -2.49845341e-01 -3.49484921e-01\\n-3.42307717e-01 2.49408156e-01 -2.13888392e-01 4.26927097e-02\\n-6.67438284e-02 3.02733839e-01 1.77777156e-01 1.11881152e-01\\n4.14010465e-01 -1.78985521e-01 -1.79693669e-01 -3.38950247e-01\\n-3.89300317e-01 -2.06772342e-01 8.99277106e-02 -8.23896378e-02\\n2.09541619e-01 -4.81432587e-01 -1.45769671e-01 -5.81401587e-02\\n-1.30580723e-01 -3.64867061e-01 -5.96029386e-02 -1.95593819e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for an Oracle Database Specialist. This role is permanent position based in Bern Canton. Your Role: Carry out complex tasks in the DB management of our customers covering consulting, planning, designing, installation, configuration, monitoring, tuning, backup / recovery, troubleshooting, replication, high availability & security. Work on interesting problem cases of customers SLAs. Support & advise software development projects on database-specific issues. Your Skills: Several years of experience in the management of Oracle databases on Unix / Linux & MS Windows platforms. Experienced with SQL Server databases (or motivated to gain experience). Good know-how of associated processes corresponding customer orders. Skilled & experienced in a variety of customer platforms & installations. Your Profile: University Degree in Computer Science. Customer-oriented & ready to occasionally work irregular hours & be on-call. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Positivity\", \"Planning\", \"Management\", \"Troubleshooting (Problem Solving)\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Software Development\", \"Advising\", \"Installation\", \"High Availability Clusters\", \"Linux\", \"Computer Science\", \"Unix\", \"Microsoft SQL Servers\", \"Oracle Databases\", \"Receivables\"]',\n", + " 'languages': \"['English', 'Interlingua', 'Nyanja', 'Aragonese']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'software engineer (c++)',\n", + " 'location': 'Grisons',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.16711386e-01 3.69977802e-01 6.53656304e-01 -1.72255784e-01\\n5.88140547e-01 -3.33259344e-01 9.66208726e-02 4.75413740e-01\\n-2.72345636e-02 -3.65770549e-01 -2.28218153e-01 -2.25554496e-01\\n-7.41186514e-02 6.04369007e-02 1.97732136e-01 3.27083737e-01\\n2.00537607e-01 1.16075017e-01 -2.26755738e-01 4.17729795e-01\\n1.69004664e-01 -9.03910771e-02 1.99338242e-01 6.34134054e-01\\n4.05396968e-01 3.55938412e-02 -7.77124912e-02 2.38766924e-01\\n-3.44107985e-01 -3.78096640e-01 4.31581736e-01 -9.72639211e-03\\n-1.39755324e-01 -2.25263029e-01 3.90292406e-02 1.01073189e-02\\n-1.72666207e-01 -7.84307495e-02 6.53899759e-02 1.09139636e-01\\n-4.60478842e-01 -9.38126966e-02 1.30447701e-01 -5.34073934e-02\\n-1.41176522e-01 -2.39984795e-01 9.79479998e-02 -5.82291484e-02\\n7.52111673e-02 1.11586623e-01 -4.05352294e-01 4.21035081e-01\\n-1.05114304e-01 -3.17079872e-01 3.09022993e-01 5.66848218e-01\\n-1.38330340e-01 -5.71752667e-01 -3.36598128e-01 -2.24763289e-01\\n1.59878835e-01 -3.42855342e-02 -1.31786207e-03 -2.53890932e-01\\n5.05875111e-01 1.61292255e-02 -7.08251214e-03 3.91902059e-01\\n-7.72519290e-01 -3.04813646e-02 -1.59922108e-01 -1.43293990e-02\\n-2.85866410e-01 -1.02017954e-01 -1.32235438e-01 -1.27378702e-01\\n-1.03301249e-01 3.99073809e-01 1.62749320e-01 6.53543174e-02\\n-6.01348542e-02 2.58790582e-01 -7.88265839e-02 1.63398460e-01\\n3.16419989e-01 3.18248510e-01 1.62652597e-01 1.88770548e-01\\n-3.78257006e-01 4.51556772e-01 7.73684382e-02 -2.71137327e-01\\n1.55507594e-01 1.59369335e-01 4.97536838e-01 -9.41084251e-02\\n-3.34032578e-03 9.91925225e-02 -1.86006695e-01 2.90743977e-01\\n2.86107123e-01 -2.99640834e-01 -6.60556415e-03 1.05154112e-01\\n-1.27310291e-01 8.37048814e-02 -1.24502005e-02 4.32000875e-01\\n-4.04928386e-01 5.20336747e-01 2.61143073e-02 -2.56315827e-01\\n-5.85182682e-02 -5.88435292e-01 -2.07071260e-01 1.35785863e-01\\n9.70073491e-02 1.88490257e-01 2.73035645e-01 2.62574762e-01\\n2.71510065e-01 1.18219644e-01 2.37232521e-01 9.17314291e-01\\n-2.27055252e-02 1.43360555e-01 -2.36847863e-01 4.45430636e-01\\n2.33983815e-01 -2.72568822e-01 2.83426732e-01 4.16507065e-01\\n2.25006878e-01 -7.98987374e-02 -1.02084890e-01 3.23664784e-01\\n-3.49117592e-02 -3.26600671e-01 -2.85006404e-01 1.21353686e-01\\n-1.25970393e-01 -4.97893721e-01 5.34921288e-01 -3.77789140e-02\\n7.25846887e-02 2.21318733e-02 -1.08871147e-01 -7.02012926e-02\\n-1.82155088e-01 3.08609456e-01 4.50302474e-02 1.64936066e-01\\n-3.15706223e-01 -1.51499733e-01 -3.49420518e-01 1.54188469e-01\\n-2.10170060e-01 7.91070983e-02 -1.63186565e-01 -1.20792709e-01\\n3.69687170e-01 -3.42964344e-02 -3.37685764e-01 4.05079395e-01\\n-6.84471279e-02 -7.80858696e-02 -3.83921899e-04 2.37096041e-01\\n-9.32143852e-02 2.05766439e-01 -1.09598212e-01 -2.12515682e-01\\n4.17773545e-01 1.53356671e-01 -2.95169484e-02 2.85217568e-04\\n3.17192972e-01 -6.26497492e-02 9.05531645e-02 1.84589569e-02\\n-7.31127858e-01 4.26629871e-01 -1.53094390e-02 -9.58687738e-02\\n2.56067747e-03 -1.03043646e-01 3.41259688e-01 -4.42950338e-01\\n3.27930823e-02 -1.52984858e-01 -4.20181483e-01 -2.77616352e-01\\n-1.08803608e-01 5.04173338e-02 3.91158432e-01 -4.23386306e-01\\n-1.87374637e-01 1.86705947e-01 -4.89517689e-01 1.48329437e-01\\n2.80189097e-01 1.18947722e-01 1.66594684e-01 1.35390311e-01\\n-1.28598154e-01 -4.80886579e-01 5.47020920e-02 -3.44852924e-01\\n-2.96400040e-01 1.86056912e-01 -2.96169072e-01 3.10237408e-01\\n1.09568559e-01 -5.77458069e-02 -5.80030493e-02 7.11321756e-02\\n-1.62732765e-01 -8.06782693e-02 1.65838569e-01 1.35787083e-02\\n3.39788735e-01 3.71498279e-02 -3.55951458e-01 5.52621782e-01\\n-2.66015798e-01 4.97784674e-01 2.78246645e-02 -8.54062259e-01\\n4.37975973e-01 3.09957266e-01 1.20274842e-01 -4.21788186e-01\\n8.09961915e-01 -2.42925301e-01 -8.79951566e-02 1.99235514e-01\\n-4.92259830e-01 -2.48918548e-01 1.67581573e-01 -9.99145508e-02\\n-2.33109534e-01 5.06046474e-01 4.73874435e-02 1.14738755e-01\\n3.36238056e-01 -1.05512552e-01 -9.59602594e-02 1.05055280e-01\\n-5.63491434e-02 -2.65342623e-01 -2.76865631e-01 1.23997517e-02\\n-9.50430334e-02 -5.05195796e-01 -7.79650360e-02 -4.92430300e-01\\n-2.37440541e-01 -3.42677504e-01 -2.41447687e-01 4.15722221e-01\\n1.47478282e-01 1.91034034e-01 1.36973977e-01 -1.05778813e-01\\n-3.69926006e-01 -5.58501184e-01 7.85498470e-02 1.10308319e-01\\n3.40198278e-01 2.62860090e-01 -1.41615719e-02 1.18716592e-02\\n-9.97479353e-03 6.00542486e-01 -2.10044965e-01 -1.72546804e-01\\n7.55989701e-02 1.80868611e-01 -2.83137672e-02 -1.05669327e-01\\n5.61012095e-03 2.79175758e-01 -1.34512067e-01 4.73080501e-02\\n-2.15229824e-01 9.66726914e-02 4.19400722e-01 -1.27904683e-01\\n-2.43028238e-01 -2.24865094e-01 -3.55767906e-02 1.69522658e-01\\n-5.85402608e-01 -1.70030743e-01 6.77510321e-01 1.02680288e-01\\n1.36742488e-01 1.64846867e-01 2.08982795e-01 -1.48838565e-01\\n-1.63827673e-01 -1.38488188e-01 1.19801164e-01 8.61028358e-02\\n3.81607041e-02 8.20862949e-02 -1.47709176e-01 -6.28463566e-01\\n-3.50947976e+00 -6.95905015e-02 5.07893264e-02 -3.72887284e-01\\n1.43510669e-01 -1.50710538e-01 7.12516829e-02 -1.38609752e-01\\n-2.00685814e-01 1.01449788e-01 -1.35460034e-01 -8.09203684e-02\\n2.40336463e-01 2.56954104e-01 1.58219889e-01 2.82151729e-01\\n1.52612552e-01 -3.15944642e-01 -3.23855467e-02 3.23411018e-01\\n-1.52248532e-01 -5.29062748e-01 2.49401480e-01 -1.58318996e-01\\n3.28707129e-01 4.12410408e-01 -2.65092045e-01 -1.83035776e-01\\n-2.04936936e-01 -2.71626413e-01 8.75706896e-02 -1.32820472e-01\\n-8.63167793e-02 4.32731628e-01 1.31058872e-01 -2.55311597e-02\\n2.76955485e-01 -3.29590142e-01 9.93246660e-02 -3.40305567e-01\\n1.80777878e-01 -6.28704965e-01 -2.09031224e-01 -1.21652536e-01\\n7.08598495e-01 -3.72197270e-01 2.19632417e-01 2.46222168e-01\\n2.34237034e-02 2.15063289e-01 -2.56573781e-02 -2.07122162e-01\\n-1.74588308e-01 -1.54770523e-01 6.19011335e-02 -2.14341536e-01\\n4.37666327e-01 6.55901790e-01 -2.70582527e-01 -3.77648547e-02\\n-2.48237886e-03 -3.62921506e-01 -5.51371455e-01 -3.95588845e-01\\n-2.17601657e-01 -2.15747893e-01 -6.76740646e-01 -5.65148592e-01\\n-8.26388001e-02 -1.02130324e-01 -9.64230970e-02 4.79382306e-01\\n-2.28729382e-01 -4.77629453e-01 -9.30461511e-02 -4.05157149e-01\\n-2.29590246e-03 -8.91579315e-02 -7.72675276e-02 -2.57509589e-01\\n-1.96866661e-01 -4.84418631e-01 -5.16214706e-02 5.99558316e-02\\n-1.39842182e-01 -2.63973624e-01 1.52468383e-01 -3.80292684e-01\\n-3.15077811e-01 -5.33970773e-01 5.21470845e-01 1.80925406e-03\\n2.36462653e-01 1.86493006e-02 7.34937415e-02 2.13390514e-01\\n3.46110016e-01 -3.61156315e-01 9.35771316e-02 -3.63734692e-01\\n1.54972419e-01 -4.90688123e-02 5.55797756e-01 -2.57378846e-01\\n2.24332269e-02 1.26618547e-02 -2.80926794e-01 -2.09525824e-01\\n3.79286021e-01 9.04691312e-03 8.71878639e-02 -3.54801357e-01\\n3.14843595e-01 -3.13439608e-01 -2.51327842e-01 1.48195505e-01\\n-2.83258893e-02 5.31957865e-01 1.69493835e-02 -4.53518063e-01\\n-2.60654271e-01 4.11312819e-01 -1.64336920e-01 -1.52471438e-01\\n-2.12484986e-01 1.24927163e-01 -2.73192763e-01 2.81573653e-01\\n-3.07346899e-02 -8.07940215e-02 -3.34147722e-01 -4.19421755e-02\\n6.67361394e-02 2.78611422e-01 2.70861745e-01 1.04750291e-01\\n2.68488657e-02 -3.38486463e-01 -5.09995185e-02 9.68300998e-02\\n1.96424991e-01 1.31580681e-01 8.58114287e-02 -5.55838086e-02\\n-9.02327374e-02 3.12772304e-01 -3.63683514e-02 1.69118002e-01\\n-2.02881634e-01 5.33792982e-03 -4.32185948e-01 -3.11757088e-01\\n-2.34637871e-01 -1.99070841e-01 -4.97425832e-02 1.85789227e-01\\n7.90603012e-02 6.99176118e-02 4.43564057e-02 -4.84900266e-01\\n3.12888354e-01 6.56095287e-03 2.36435771e-01 2.56482065e-01\\n-1.53860375e-02 5.14553189e-01 -3.91432978e-02 -9.76500958e-02\\n-2.08385333e-01 7.58687183e-02 -1.15223534e-01 -1.67661846e-01\\n2.99498923e-02 -4.22137976e-01 5.02133518e-02 4.19399768e-01\\n9.34664235e-02 -4.51933324e-01 -9.18925926e-02 1.94801286e-01\\n7.11812600e-02 -5.00110328e-01 -1.86339810e-01 -4.69098687e-02\\n3.39295238e-01 8.08603987e-02 3.00206274e-01 -4.78857219e-01\\n-1.49908653e-02 6.38589412e-02 -7.26479962e-02 4.57627088e-01\\n-2.87861656e-02 -1.09844789e-01 -1.54343322e-01 -3.14789176e-01\\n3.13623607e-01 -8.95420983e-02 1.63352601e-02 -1.58542499e-01\\n9.80145782e-02 -1.82016328e-01 -3.92133355e-01 1.49127077e-02\\n-7.50780851e-02 -4.96307425e-02 7.98115879e-02 -2.85340082e-02\\n-9.17275529e-03 2.28842095e-01 -4.16089118e-01 -3.23949546e-01\\n-2.11008728e-01 -1.77796990e-01 -1.16793767e-01 -3.91357929e-01\\n-1.17879873e-02 3.07394583e-02 -5.91648042e-01 1.69889897e-01\\n-2.03339905e-01 9.93298665e-02 1.63410068e-01 -7.50962198e-02\\n-4.63738143e-01 -1.40932754e-01 1.79322317e-01 1.25857338e-01\\n-2.99066931e-01 -2.22860530e-01 -4.64089997e-02 -1.05796325e+00\\n3.09133977e-01 -3.70868966e-02 -9.30716544e-02 8.77699852e-02\\n-1.13217734e-01 -5.29284716e-01 5.77498488e-02 -4.45535809e-01\\n8.15899968e-02 -8.52857009e-02 -2.34513983e-01 -3.28693181e-01\\n4.14934643e-02 1.20808696e-03 -2.98262268e-01 3.22513193e-01\\n-4.64317948e-01 4.33100849e-01 -7.01674297e-02 9.87059250e-02\\n-1.81445464e-01 -2.37510800e-01 -8.32750276e-02 -4.72027481e-01\\n-3.20247620e-01 -3.29432823e-03 -1.56630918e-01 -1.01540424e-01\\n-4.87841256e-02 -1.07461452e-01 -5.64100742e-02 1.68540359e-01\\n2.01142639e-01 9.19365585e-02 -1.48744896e-01 -2.30574012e-01\\n1.27764106e-01 -3.48798871e-01 -1.12877749e-01 -2.45345697e-01\\n-1.99884037e-03 -1.34268641e-01 8.59831274e-02 4.99136262e-02\\n8.18226188e-02 -4.08268958e-01 2.46638194e-01 -2.19635412e-01\\n-2.65179217e-01 1.27597153e-01 9.61963832e-02 2.98351236e-02\\n3.26674938e-01 -4.32969749e-01 6.50746301e-02 4.32970554e-01\\n1.54156402e-01 7.47783408e-02 3.12804580e-01 -3.51573154e-02\\n-1.57069296e-01 3.28820378e-01 -3.70093048e-01 -6.26958068e-03\\n7.23390341e-01 2.56467938e-01 2.16047183e-01 1.50831118e-01\\n1.46253854e-01 4.29901093e-01 5.35103202e-01 3.79811972e-02\\n-4.43797223e-02 3.32762122e-01 1.33511052e-01 -5.81681311e-01\\n2.62734969e-03 1.36860296e-01 -3.46690238e-01 -1.78885773e-01\\n5.91478169e-01 4.84318405e-01 -1.85664684e-01 -2.64854610e-01\\n-1.58704728e-01 -1.70813039e-01 6.28725737e-02 -2.59820849e-01\\n1.28600985e-01 -1.49432093e-01 5.41126609e-01 2.04228368e-02\\n1.02435432e-01 5.25909603e-01 -1.71489850e-01 -4.08588886e-01\\n4.27409522e-02 1.60675019e-01 9.12388936e-02 3.91908646e-01\\n-5.68377376e-02 2.20628083e-01 -3.00593860e-02 1.44636214e-01\\n-7.56790070e-03 1.12187557e-01 1.80983394e-01 1.01613887e-01\\n5.53483739e-02 1.24664254e-01 2.33092979e-01 4.74534512e-01\\n3.29038262e-01 5.44925272e-01 2.02747494e-01 2.94067282e-02\\n5.19816697e-01 4.83248144e-01 3.56505841e-01 2.23239601e-01\\n-1.30469352e-01 3.18705849e-02 3.87590565e-02 3.91295105e-02\\n3.67519468e-01 2.05684423e-01 8.29173923e-02 8.87367845e-01\\n4.60609883e-01 2.24310040e-01 8.01133752e-01 -5.63878536e-01\\n-4.82321978e-01 -1.07662659e-02 4.28492367e-01 -3.59514236e-01\\n-1.81902692e-01 3.04455664e-02 -1.57501683e-01 2.36600444e-01\\n-4.64959174e-01 -2.55713373e-01 -6.61714748e-02 1.48822162e-02\\n1.31853908e-01 2.44303904e-02 -2.90832311e-01 -1.07912384e-01\\n-2.63285965e-01 -1.35341734e-01 -5.58718979e-01 -9.74957943e-02\\n-2.76884496e-01 -2.85969198e-01 -2.20553190e-01 -1.91538259e-01\\n-1.32141483e-03 -3.88017774e-01 -2.11133480e-01 -7.66447140e-03\\n2.39107743e-01 -2.42102683e-01 -1.56475216e-01 -2.26466298e-01\\n2.02102274e-01 2.30737865e-01 4.39694464e-01 5.16717648e-03\\n7.17471242e-02 -1.42468229e-01 -1.73422769e-01 9.34361666e-02\\n1.74857035e-01 1.93065718e-01 3.61060724e-02 4.36068177e-01\\n-5.05770743e-01 -1.42243817e-01 -2.15190705e-02 4.40266579e-01\\n-3.81555676e-01 -2.23313607e-02 4.66185212e-02 2.86167890e-01\\n1.58502370e-01 4.72187363e-02 -2.63696939e-01 5.61964251e-02\\n-2.35109761e-01 -6.21603608e-01 3.07471395e-01 -1.93317793e-02\\n-4.35243696e-02 8.15627500e-02 2.24592671e-01 1.68232828e-01\\n-1.44399852e-01 -6.73820823e-02 4.81659286e-02 1.74050152e-01\\n1.84404537e-01 2.96647310e-01 -2.78818280e-01 -2.71556973e-01\\n-2.63028324e-01 1.79821342e-01 -3.99351835e-01 1.50010198e-01\\n-1.85142070e-01 3.40973079e-01 1.63936377e-01 2.12806374e-01\\n2.40478829e-01 -9.63066891e-02 -1.44197762e-01 -1.82251900e-01\\n-3.47981423e-01 -3.75767440e-01 8.34576711e-02 1.65334567e-02\\n2.28697106e-01 -3.40034485e-01 -1.08673126e-02 -3.97506915e-02\\n-2.24749312e-01 -3.18071693e-01 -7.72343501e-02 -1.89313531e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Embedded Software Engineer (C++). The role is a permanent position based in Graubünden Canton. Your Role: Specify, analyze (architecture & design), develop & test near-hardware embedded real-time software for the product range. Utilize state-of-the-art methods (Driven Development) & tools (IBM Rhapsody, WindRiver VxWorks & Linux) in C++ programming. Your Skills & Profile: In-depth knowledge in technical computer science. Good level of C ++ / UML knowledge & motivated to use & further develop it. Skills & experience in any of the following are considered advantageous: Programming microcontroller software. Creating & performing software test. GUI development, including Qt Quick, QML. Control engineering. iOS & Android app programming. Communication standards such as Bluetooth & wireless. Completed University Degree in engineering (applications from graduates are welcome). Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Positivity\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Control Engineering\", \"Programming (Music)\", \"VxWorks\", \"Computer Science\", \"UML Tool\", \"Windows Software Development\", \"C++ (Programming Language)\", \"Qt Modeling Language (QML)\", \"Android (Operating System)\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Linux\", \"Real Time Systems\", \"QT Quick\", \"Communication Program Generator (Programming Language)\", \"C (Programming Language)\", \"Time Tracking Software\", \"Hazard Communication Standard (HCS)\", \"Receivables\", \"Software Testing\", \"Bluetooth\", \"Embedded Software\"]',\n", + " 'languages': \"['English', 'Tajik', 'Afrikaans']\"},\n", + " {'company_id': '122',\n", + " 'job_title': 'application scientist, chemical ionization mass spectrometry',\n", + " 'location': 'Thun',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.22071165e-01 3.35994661e-01 4.83776540e-01 -6.40972853e-02\\n6.11253023e-01 -7.13514015e-02 -1.14054918e-01 1.98036522e-01\\n1.12699583e-01 -2.06944034e-01 -1.58244222e-01 -3.54309440e-01\\n2.49078125e-02 2.25402951e-01 7.10181594e-02 6.34336233e-01\\n3.25270057e-01 5.24713621e-02 4.69298139e-02 4.38917756e-01\\n9.60446000e-02 -1.46910578e-01 1.38095424e-01 7.59765983e-01\\n3.24976802e-01 -2.94832662e-02 -4.38018888e-02 1.22776538e-01\\n-1.77218154e-01 -2.16217875e-01 5.02378941e-01 9.38742235e-02\\n-2.22176850e-01 -4.03737217e-01 9.49825048e-02 2.32561350e-01\\n-2.25547686e-01 -2.98123956e-02 -1.24865249e-01 1.93640873e-01\\n-6.83146060e-01 -3.22210491e-01 4.83767800e-02 -6.82667047e-02\\n-2.93613076e-01 -3.39217901e-01 1.45096183e-01 -1.12511292e-01\\n2.76587382e-02 1.45025745e-01 -4.27522898e-01 2.11642951e-01\\n-1.87756449e-01 -2.60515660e-01 3.73523861e-01 8.18408966e-01\\n-2.92102545e-02 -5.68019032e-01 -4.50492203e-01 -2.96409249e-01\\n1.07475119e-02 -1.24969650e-02 8.14223215e-02 -3.71924520e-01\\n4.69474673e-01 4.97827865e-02 -3.50979343e-03 2.19129920e-01\\n-7.30725646e-01 -2.13264644e-01 -3.03966403e-01 1.61905855e-01\\n-4.08347398e-01 4.16619927e-02 -1.48494124e-01 -1.34820372e-01\\n-8.88818949e-02 3.99366617e-01 -8.53884891e-02 8.67198110e-02\\n-3.45002525e-02 3.27037930e-01 -2.68398166e-01 3.53007913e-01\\n2.10795075e-01 1.39860064e-01 2.86855876e-01 2.88504630e-01\\n-2.99485713e-01 4.43927169e-01 1.62827209e-01 -2.95417964e-01\\n2.14850798e-01 4.97248173e-02 3.65435719e-01 -5.71940653e-02\\n1.89987376e-01 1.07137293e-01 -3.54181767e-01 2.38421440e-01\\n2.66428292e-01 -2.44015634e-01 3.65765579e-02 -9.35238600e-02\\n6.67725131e-02 2.26250626e-02 -2.73920931e-02 1.54613601e-02\\n-5.24358511e-01 4.52765703e-01 1.46474883e-01 -2.14989126e-01\\n-5.19621857e-02 -5.93617141e-01 -1.56798974e-01 -1.37796532e-02\\n-6.69724271e-02 8.90561342e-02 4.62685786e-02 1.77838862e-01\\n3.26121300e-01 1.20813958e-02 9.50876772e-02 8.72025311e-01\\n2.41289437e-02 8.79597515e-02 -5.67165613e-02 4.61607456e-01\\n5.15877455e-02 -2.40077183e-01 2.97346979e-01 9.03361440e-02\\n-3.11097074e-02 -1.03263885e-01 -2.22860560e-01 2.63914824e-01\\n-1.02852240e-01 -3.23492259e-01 -2.59753287e-01 3.29096258e-01\\n-1.74353197e-02 -4.56009716e-01 5.22334278e-01 -1.96926221e-01\\n7.77562410e-02 -1.05281353e-01 -5.14109358e-02 -3.26890908e-02\\n-1.44234210e-01 2.15448797e-01 1.81884229e-01 1.24584571e-01\\n-2.91880339e-01 -2.07166284e-01 -1.68662578e-01 7.95932636e-02\\n-2.74402499e-01 2.47937605e-01 -2.39675030e-01 -1.61837593e-01\\n2.73200095e-01 1.93460882e-02 -4.42898840e-01 2.58858263e-01\\n-1.01767957e-01 -1.36146277e-01 -8.04063827e-02 4.65727776e-01\\n-2.59148479e-01 2.08761364e-01 2.87646018e-02 -2.04146594e-01\\n6.17075503e-01 4.15205546e-02 2.51093328e-01 -6.53549582e-02\\n2.86037147e-01 -1.47970736e-01 2.42254108e-01 2.09540769e-01\\n-6.48887277e-01 4.47108328e-01 -8.04359540e-02 -1.30039364e-01\\n3.79298851e-02 -1.66308314e-01 5.29851019e-01 -3.41786265e-01\\n-7.15541467e-02 -1.97946444e-01 -3.24780196e-01 -3.81483734e-01\\n-3.14209044e-01 -8.85766521e-02 3.07037562e-01 -3.65383625e-01\\n5.35375997e-02 1.01774052e-01 -5.69337010e-01 -2.89981008e-01\\n2.08624199e-01 2.59375304e-01 2.13857174e-01 1.68030396e-01\\n-2.40718067e-01 -6.50057316e-01 7.35826194e-02 -5.34984350e-01\\n-7.20526129e-02 8.34865049e-02 -2.83299446e-01 2.65487105e-01\\n7.77441487e-02 -4.36626263e-02 -1.96749061e-01 5.85632250e-02\\n-3.24441493e-01 1.49356484e-01 6.86924532e-02 5.87357320e-02\\n2.13346779e-01 1.27405956e-01 -3.84200364e-01 4.62790132e-01\\n-2.50309169e-01 5.30068517e-01 5.39943501e-02 -9.67972815e-01\\n5.16683519e-01 5.74802756e-01 5.30515127e-02 -4.01740909e-01\\n6.12028360e-01 -4.48840499e-01 -2.18429625e-01 1.43864572e-01\\n-3.92809629e-01 -7.81859681e-02 3.13722670e-01 -3.24343204e-01\\n-2.43544191e-01 6.64350629e-01 1.92120746e-01 2.01540589e-01\\n3.75425965e-01 -1.15122199e-01 -1.61432792e-02 1.35955065e-01\\n-1.45501152e-01 -1.76568642e-01 -5.07044435e-01 -7.47955143e-02\\n-1.20463520e-01 -4.73117054e-01 -8.90543759e-02 -4.81914520e-01\\n-1.58354104e-01 -2.90354818e-01 -7.60099813e-02 7.71325678e-02\\n1.90583169e-01 5.43439649e-02 1.46061212e-01 1.96301639e-02\\n-1.07335329e-01 -7.67278850e-01 1.18593358e-01 -1.57433599e-02\\n2.44572103e-01 2.84206092e-01 1.87653422e-01 8.72246325e-02\\n-1.23348963e-02 5.44273973e-01 -5.19644678e-01 -3.17016423e-01\\n8.69193673e-02 6.35529906e-02 -1.75551996e-01 -1.36884004e-01\\n2.58261323e-01 2.67141849e-01 -2.94593900e-01 1.47626251e-01\\n-1.76367611e-01 3.75982672e-02 3.81409824e-01 -2.53120251e-02\\n-2.25336194e-01 -1.46812513e-01 -1.55685738e-01 6.15317933e-02\\n-4.97732550e-01 -2.56312937e-01 2.71816611e-01 1.56659577e-02\\n1.72362819e-01 2.60542303e-01 2.10443199e-01 -5.83785623e-02\\n-3.64409864e-01 -3.83100927e-01 2.14357316e-01 1.83322728e-01\\n-1.80672258e-02 6.76504672e-02 -1.29908741e-01 -6.54375613e-01\\n-2.79908323e+00 -1.23159684e-01 3.50847542e-02 -1.53656602e-01\\n4.65550214e-01 -1.09387070e-01 1.96244806e-01 -8.46396685e-02\\n-4.14233088e-01 1.64728284e-01 -2.14522690e-01 -2.35280752e-01\\n9.66513455e-02 5.62695563e-02 1.90110996e-01 4.68250588e-02\\n-1.06818303e-02 -4.07430887e-01 1.57529533e-01 4.34014946e-01\\n-5.00358976e-02 -7.59915829e-01 1.07479513e-01 4.87836078e-02\\n2.62701094e-01 2.17019558e-01 -5.97976029e-01 -7.68634379e-02\\n-3.27123761e-01 -2.30037183e-01 1.35682285e-01 -3.72972488e-01\\n-1.75831258e-01 2.31695116e-01 2.41476491e-01 -8.81463103e-03\\n-5.15482426e-02 -3.78988206e-01 -8.20081234e-02 -4.45041806e-01\\n7.43470490e-02 -6.34494662e-01 -3.65943983e-02 -7.86084384e-02\\n6.89913750e-01 -1.32354721e-01 2.04089046e-01 1.17671430e-01\\n1.10012017e-01 2.63050109e-01 2.31961489e-01 7.93322474e-02\\n-1.25771239e-01 -2.11531669e-01 -5.65928556e-02 -1.08543336e-01\\n4.80061769e-01 4.26655352e-01 -1.76116854e-01 -1.07978091e-01\\n1.82572436e-02 -3.59977007e-01 -7.17721581e-01 -4.23244908e-02\\n-3.46820623e-01 -5.78375757e-02 -7.69396186e-01 -3.59955430e-01\\n-6.20905459e-02 -2.11180151e-01 -5.68541884e-02 7.70458937e-01\\n-3.83617759e-01 -2.70362854e-01 -2.83906981e-02 -6.00602150e-01\\n3.28278601e-01 -2.22286701e-01 3.72322947e-02 -7.73643926e-02\\n-3.45586002e-01 -4.55108136e-01 1.48932084e-01 -6.09154254e-03\\n-1.60074204e-01 -2.51260817e-01 1.95340980e-02 -1.94570482e-01\\n-4.47593063e-01 -6.62861228e-01 4.03402686e-01 1.07800528e-01\\n3.88790488e-01 -1.27314180e-02 2.01849699e-01 -9.46250558e-02\\n3.28960717e-01 9.95439813e-02 1.17847554e-01 -4.43078339e-01\\n-3.04384679e-02 -1.22414287e-02 5.69319844e-01 -2.56601453e-01\\n-1.59537066e-02 -6.56263530e-02 -3.97187054e-01 -1.36839375e-01\\n2.84766197e-01 -7.85306543e-02 5.17561734e-02 -1.75073758e-01\\n2.64304042e-01 -2.89100647e-01 5.40050771e-03 1.57532096e-01\\n7.65489414e-02 7.85804272e-01 6.28712997e-02 -3.18475664e-01\\n-8.42032731e-02 3.53727639e-01 -1.08276501e-01 9.22434498e-03\\n4.87649217e-02 -7.09222117e-03 -3.20107073e-01 3.88561428e-01\\n-5.38056307e-02 -9.08005387e-02 -2.26392925e-01 -2.58532651e-02\\n-2.41315290e-01 4.11914945e-01 3.72470349e-01 3.22843254e-01\\n-2.25378826e-01 -3.69885445e-01 -1.32335916e-01 3.15627038e-01\\n1.45535111e-01 3.18097115e-01 2.13341445e-01 -2.45503902e-01\\n1.10960584e-02 3.68367732e-01 -1.77435786e-01 2.88998038e-01\\n-1.31619781e-01 8.66411775e-02 -5.51874220e-01 -1.51292235e-01\\n-3.13471854e-01 -3.47445786e-01 1.79899424e-01 4.33494151e-01\\n1.77767158e-01 -1.51875600e-01 1.64088011e-01 -5.00433564e-01\\n2.39484161e-01 1.53381437e-01 1.93355709e-01 -1.35048945e-02\\n-1.69267833e-01 5.87525427e-01 -1.05123676e-01 -9.58819315e-02\\n5.59639037e-02 -3.30140628e-02 -2.89241403e-01 -3.77500772e-01\\n1.63769469e-01 -5.40195405e-01 -1.60197005e-01 3.98302853e-01\\n1.51308447e-01 -1.69362992e-01 -2.08383128e-01 3.18847239e-01\\n-3.85672152e-02 -2.93277323e-01 -3.83144975e-01 5.28388098e-02\\n3.46008599e-01 1.76176548e-01 2.76199818e-01 -5.93356729e-01\\n1.36092573e-01 -3.31758671e-02 -5.41806966e-02 4.04620796e-01\\n-8.13515484e-02 7.18372390e-02 -4.35290575e-01 -3.05844545e-01\\n3.99080575e-01 -3.93500552e-02 -5.99032752e-02 -1.40683949e-02\\n5.55592403e-02 -2.32374951e-01 -2.94043571e-01 4.44828197e-02\\n-2.51961462e-02 -2.44572848e-01 -2.79224068e-02 1.34612918e-01\\n7.48762265e-02 -3.06981094e-02 -5.54868817e-01 -1.32118642e-01\\n-7.72951692e-02 1.74364805e-01 -2.53934823e-02 -4.29614663e-01\\n-7.62047842e-02 -1.45285934e-01 -4.00995523e-01 2.15944916e-01\\n-6.63143098e-02 -1.86884701e-01 2.11304754e-01 -1.59485079e-02\\n-2.73282498e-01 -2.20773190e-01 1.90122157e-01 1.66708380e-01\\n-3.21528465e-01 -2.35284761e-01 -1.25715539e-01 -8.77228022e-01\\n1.23679921e-01 -8.38333368e-02 -1.15303196e-01 2.43682876e-01\\n1.94252953e-02 -8.22788477e-01 2.11156607e-01 -2.09233195e-01\\n-2.74240002e-02 -8.52119252e-02 -2.64390945e-01 -2.24004343e-01\\n7.98411220e-02 1.93789322e-02 8.32750201e-02 2.76013434e-01\\n-2.44845241e-01 4.74416971e-01 -1.55817166e-01 -9.30967629e-02\\n-9.56344083e-02 -2.40649492e-01 2.41330832e-01 -3.32357526e-01\\n-3.92562091e-01 -1.56487405e-01 -2.26712108e-01 -2.20085114e-01\\n-2.16433525e-01 -1.89405039e-01 -1.64508730e-01 3.49242017e-02\\n4.08531964e-01 5.83917871e-02 -2.20097825e-01 -1.49208412e-01\\n8.54256302e-02 -3.25875998e-01 1.03538074e-01 -1.10601783e-01\\n1.26354754e-01 -5.08532189e-02 1.33721307e-01 2.46858120e-01\\n1.36273786e-01 -3.07841659e-01 3.82927120e-01 -4.35529888e-01\\n-4.98367727e-01 -1.56510159e-01 1.69563949e-01 -1.53531507e-03\\n3.58934402e-01 -3.51289213e-01 -2.13212013e-01 3.15565348e-01\\n-5.50941154e-02 -8.40158984e-02 3.95422101e-01 -2.20634609e-01\\n-2.09009275e-01 1.79741129e-01 -4.30357277e-01 2.04788595e-01\\n8.30743194e-01 3.25510085e-01 1.74998604e-02 1.40910268e-01\\n6.87763542e-02 3.28109562e-01 5.60177028e-01 -5.66273369e-02\\n6.07278338e-03 3.23202938e-01 2.27420866e-01 -4.17084992e-01\\n-1.96479812e-01 -1.53758824e-01 -1.02760829e-03 -4.64945912e-01\\n4.90882397e-01 3.19201469e-01 -2.79180944e-01 -2.14740127e-01\\n-2.88104683e-01 -2.05734491e-01 2.90126204e-01 -3.75250317e-02\\n6.63378611e-02 -5.83293512e-02 5.44876158e-01 -6.81349337e-02\\n1.47334024e-01 5.05152822e-01 -2.01801166e-01 -2.61362076e-01\\n-1.75539464e-01 2.03189760e-01 1.61162660e-01 4.23275590e-01\\n-1.12217359e-01 3.14255595e-01 -1.33299038e-01 1.83682948e-01\\n-1.95814580e-01 8.43852535e-02 1.50031224e-01 -2.68648528e-02\\n-8.52944255e-02 2.45723158e-01 4.08645660e-01 4.48904812e-01\\n4.09840196e-01 3.92711341e-01 2.93104261e-01 2.12088395e-02\\n5.03329754e-01 5.60217023e-01 2.39641666e-01 4.66271304e-02\\n5.99698536e-03 1.61154702e-01 9.89949405e-02 3.42507884e-02\\n4.10280645e-01 2.69631863e-01 1.11378603e-01 9.16861653e-01\\n2.13574246e-01 4.45441425e-01 7.33426094e-01 -6.49558902e-01\\n-3.66797984e-01 5.95637560e-02 4.31729555e-01 -5.58744371e-01\\n3.28731090e-02 1.96207166e-01 1.88608933e-02 2.29131699e-01\\n-5.27038932e-01 -1.88437074e-01 2.89539713e-02 1.14500336e-01\\n1.81479037e-01 -9.59135368e-02 -1.35038614e-01 2.36179009e-01\\n-2.82172322e-01 -2.62147784e-01 -4.30314124e-01 -2.33607978e-01\\n-2.64321178e-01 8.98233149e-03 -3.46091688e-02 -1.02093562e-01\\n-5.33997826e-02 -2.47440755e-01 8.31302404e-02 -6.23095147e-02\\n3.76782954e-01 -1.79653257e-01 -1.76410705e-01 -8.13263729e-02\\n7.08274484e-01 1.16025582e-01 5.89377761e-01 -9.00212824e-02\\n9.20626372e-02 -2.85596848e-01 -2.28821635e-01 1.02161586e-01\\n1.76186681e-01 1.87908232e-01 5.90837048e-03 4.18738365e-01\\n-2.38294661e-01 -6.98183253e-02 4.01096791e-02 3.08326930e-01\\n-2.65782952e-01 -1.15349948e-01 -1.95698112e-01 -6.09375015e-02\\n-3.13130207e-02 1.85329616e-01 -1.64328247e-01 1.20316356e-01\\n3.74259166e-02 -5.07009983e-01 3.77264142e-01 -4.61399332e-02\\n-3.29699874e-01 1.29200742e-02 4.16063130e-01 2.55316556e-01\\n-8.87309909e-02 -3.49061452e-02 -1.18126377e-01 1.64474785e-01\\n2.93811113e-02 3.67938459e-01 -1.11943677e-01 -4.43264812e-01\\n-4.05919790e-01 1.78947031e-01 -2.66234577e-01 1.12964772e-03\\n6.46589026e-02 4.32083786e-01 -2.48052292e-02 8.70360062e-02\\n4.95590389e-01 -1.95871115e-01 -2.87681282e-01 -4.21056271e-01\\n-1.87379614e-01 -2.11080045e-01 -1.12561956e-01 -5.73445633e-02\\n1.99748904e-01 -3.09953570e-01 -2.45363235e-01 -4.99587715e-01\\n8.14421773e-02 -2.94173717e-01 -3.18146124e-03 -3.42493095e-02]]',\n", + " 'job_description': 'Headquartered in Thun, Switzerland, TOFWERK aims to bring the advantages of our time-of-flight technology to new markets and applications. With team members in Switzerland, Germany, China and the United States, we offer a family of end-user research products and custom instrument designs for OEM partners and research laboratories. TOFWERK is seeking an analytical scientist to develop and demonstrate new applications of our chemical ionization (CI) time-of-flight mass spectrometers (TOFMS), with emphasis on the Vocus PTR-TOF. The scientist will work within our Applications Department in support of our Vocus PTR-TOF and API-TOF product teams. He/she will be independently tasked with increasing the breadth and quality of analyses based on these instruments. The scientist will be active in relevant scientific communities in order to stay updated on trends and advances and to engage potential customers and collaborators. As the company’s expert on CI-TOFMS applications, he/she will communicate the capabilities of TOFWERK technology to prospective customers; lead product demonstrations; represent TOFWERK at international scientific meetings; support the Marketing Department in the production of technical promotional material; and formally present data in conference presentations, research reports, application notes, and peer-reviewed publications. He/she will work with other members of the Applications Department to ensure that all analyses at TOFWERK utilize the best available methods and technology. Based on his/her knowledge of the field and use of TOFWERK technology, the application scientist will provide suggestions and feedback to the Software and R&D Departments regarding potential short- and long-term product improvements and developments. Requirements PhD in Analytical Chemistry or related field 4+ years of experience using mass spectrometry for applied research or sample analysis, including method development Ability to work independently in the laboratory, including: experiment design, sample preparation, operation of scientific equipment, and data interpretation Strong background in data analysis, including statistics and spectral interpretation Interest in interacting with customers and prospective customers Confident and effective communicator Willingness to travel up to 30% per year for scientific conferences and customer site visits at European and international locations Fluency in English Desirable Experience and Expertise Use of any of the following: PTR-MS, chemical ionization MS, TOFMS, real-time trace gas analyzers Expertise in any of the following fields: biogenic VOCs, forensics, fragrances, flavors, breath analysis, atmospheric science Experience running and characterizing prototype scientific equipment Familiarity with any of the following: high vacuum systems, ion optics, ion-molecule reaction chemistry Competence in laboratory electronics and use of diagnostic equipment We Offer Exciting projects in state-of-the-art mass spectrometry An open culture that encourages new ideas A creative international team Flexible work times A bright, spacious workplace on the river in beautiful Thun We look forward to receiving your application at jobs@tofwerk.com. Please send all attachments in pdf format.',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Communications\", \"Operations\", \"Presentations\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Product Demonstration\", \"Chemical Ionization\", \"Research Reports\", \"Sample Preparation\", \"Data Presentation\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Vienna Development Methods\", \"Prototype (Manufacturing)\", \"Spectrometer\", \"Activism\", \"Mass Spectrometry\", \"Analytical Chemistry\", \"Instrumentation\", \"Vacuum Systems\", \"Productivity Improvement\", \"IText (Free PDF Software)\", \"Atmospheric Sciences\", \"Electronics\", \"Optics\", \"Survey Data Analysis\", \"Applied Research\", \"Receivables\", \"Chemistry\", \"Sample Analysis\", \"Experience Design\", \"Sampling Design\", \"Residual Gas Analyzer\", \"Peer Review\", \"Application Notes\", \"Long-Term Potentiation\", \"User Research\", \"Application Programming Interface (API)\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Shona', 'Turkish', 'Nyanja']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'business application analyst',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.95008665e-01 3.99013340e-01 4.29643035e-01 6.23621792e-02\\n6.08087063e-01 6.52238876e-02 1.04930684e-01 1.14952393e-01\\n7.00906217e-02 -2.68205762e-01 -1.38870880e-01 -1.20139062e-01\\n-5.62866032e-02 -7.93280452e-02 1.21173106e-01 4.18069065e-01\\n3.15848827e-01 -5.43995164e-02 -3.28657031e-03 2.79873222e-01\\n-5.72428331e-02 8.00456665e-03 2.15325020e-02 5.92675447e-01\\n4.05653894e-01 1.20013863e-01 -3.50275636e-02 1.12025894e-01\\n-2.48493224e-01 -3.62214535e-01 3.75085354e-01 3.69461626e-02\\n-2.33532578e-01 -3.03215653e-01 6.88816160e-02 1.64522588e-01\\n-1.85275301e-01 1.21623948e-02 -1.24451324e-01 3.28230113e-03\\n-4.66755688e-01 -2.48992056e-01 -4.48130071e-02 -1.80105090e-01\\n-3.70480001e-01 -2.55145013e-01 2.06496492e-01 -2.15973467e-01\\n3.28031704e-02 2.48962641e-02 -5.00505447e-01 3.85336757e-01\\n-2.19557941e-01 -1.46872059e-01 3.15424025e-01 6.28724456e-01\\n1.65173799e-01 -5.98815799e-01 -4.74887490e-01 -3.30780447e-01\\n1.29434094e-01 -1.59070551e-01 1.68393940e-01 -2.64650136e-02\\n4.71206695e-01 -2.15121865e-01 -2.69760732e-02 2.99594939e-01\\n-6.15362763e-01 -1.15436874e-02 -5.40289640e-01 1.83903314e-02\\n-3.03136885e-01 5.53766713e-02 -4.26471055e-01 -2.40658224e-01\\n-6.99507166e-03 4.13340658e-01 1.20811388e-02 7.35970587e-02\\n-1.71227008e-01 3.18997502e-01 -1.79942995e-01 1.24712914e-01\\n2.69173622e-01 2.31143702e-02 4.02183950e-01 2.32091874e-01\\n-4.57810193e-01 5.29850721e-01 3.74625385e-01 -3.48989129e-01\\n2.59545594e-01 1.34253064e-02 2.31121942e-01 2.04598159e-01\\n1.49972821e-02 2.93230921e-01 -1.39868483e-02 9.22784302e-03\\n7.95998573e-02 -6.44016117e-02 -2.07560703e-01 -9.70576480e-02\\n-5.49077168e-02 -2.28717700e-01 6.58551455e-02 1.34303480e-01\\n-4.52967733e-01 4.46573734e-01 8.08416307e-02 -2.33199641e-01\\n-5.34538068e-02 -3.31894696e-01 -1.15534864e-01 -1.13618165e-01\\n-1.22120567e-01 9.63859782e-02 2.09814861e-01 3.08730274e-01\\n2.74116784e-01 6.90218508e-02 1.88973278e-01 7.02065170e-01\\n6.16038144e-02 1.22587457e-01 -8.43458250e-03 2.99832821e-01\\n5.18384874e-02 -2.89068192e-01 1.17042631e-01 2.91722059e-01\\n-2.23484665e-01 -6.48168400e-02 -3.67855966e-01 1.77600279e-01\\n-1.94459617e-01 -1.14878140e-01 -2.18792319e-01 2.13929236e-01\\n-2.00481564e-01 -6.06310368e-01 3.66872668e-01 -5.05070537e-02\\n9.99847203e-02 -1.49258733e-01 3.67650762e-03 -2.67140083e-02\\n-2.41359979e-01 3.47323537e-01 1.75061330e-01 3.08430970e-01\\n-2.97674477e-01 -2.55726039e-01 -9.77141187e-02 3.67457777e-01\\n-1.13222837e-01 8.72353166e-02 -5.40520310e-01 -2.04681039e-01\\n3.79402757e-01 2.12867528e-01 -5.21773994e-01 2.86651731e-01\\n-5.87734487e-03 -9.59016234e-02 -1.91565380e-01 4.30359900e-01\\n3.59341130e-02 -4.29353565e-02 -4.49364595e-02 -1.73897684e-01\\n5.46396017e-01 1.60005078e-01 1.95677131e-01 -7.37396628e-02\\n3.58966947e-01 -1.32059127e-01 2.50623226e-01 -6.79093227e-03\\n-5.72852254e-01 4.15170729e-01 -1.74482450e-01 3.14541906e-03\\n-6.03997782e-02 -3.82388160e-02 5.31919897e-01 -3.52441043e-01\\n2.11916752e-02 -2.08766580e-01 -4.14281428e-01 -4.38057303e-01\\n-1.38663471e-01 -3.98902483e-02 4.54661429e-01 -4.58312869e-01\\n5.53567521e-03 1.29119918e-01 -5.71516037e-01 -1.85264051e-01\\n4.02185559e-01 1.87568933e-01 2.13938653e-01 1.50399074e-01\\n-9.81053412e-02 -4.81393695e-01 1.11682698e-01 -5.46461701e-01\\n-3.75030160e-01 2.44040415e-01 -2.47653693e-01 6.63139895e-02\\n1.80318117e-01 -6.35833014e-03 -3.96272466e-02 1.30210929e-02\\n-3.61765027e-01 -5.96959107e-02 2.44559735e-01 -5.10137081e-02\\n1.82738453e-01 1.76333308e-01 -2.88261354e-01 6.08550787e-01\\n-2.95774102e-01 3.35119009e-01 1.87874585e-01 -9.53545034e-01\\n4.56823647e-01 1.94832981e-01 -3.92278694e-02 -3.21594030e-01\\n2.93811142e-01 -3.59783113e-01 5.99214900e-03 1.76124096e-01\\n-1.87629536e-01 -1.09368242e-01 2.09992945e-01 -1.58685684e-01\\n-3.12051386e-01 6.60686314e-01 1.05416395e-01 1.07662939e-02\\n2.86886156e-01 -1.42430902e-01 -3.27407420e-01 -4.90555428e-02\\n-3.45832944e-01 -1.50670335e-01 -5.37451744e-01 1.14824072e-01\\n-2.77052037e-02 -5.12728751e-01 -1.22580498e-01 -5.49357653e-01\\n-2.18824804e-01 -4.69523907e-01 -2.82027304e-01 2.13616759e-01\\n6.35256767e-02 1.39032960e-01 -1.55497581e-01 2.79446207e-02\\n-4.28187400e-02 -6.23596072e-01 -2.66356803e-02 1.49163604e-01\\n2.00827986e-01 4.23853099e-01 1.98534369e-01 -2.79200673e-01\\n3.93205695e-02 5.08246005e-01 -4.05801445e-01 -3.40488493e-01\\n3.75211567e-01 1.54240757e-01 -6.00795001e-02 -1.78934500e-01\\n2.73097940e-02 2.95856416e-01 -1.80580080e-01 5.62755466e-02\\n1.25635564e-01 -9.06742215e-02 2.75325835e-01 -2.66111314e-01\\n-2.56982237e-01 -1.17668010e-01 -1.43375665e-01 3.09205562e-01\\n-5.11835814e-01 -3.01409364e-01 6.02433622e-01 1.83108971e-01\\n-4.19602580e-02 3.06000352e-01 1.99281752e-01 7.44044175e-03\\n-3.36609691e-01 -1.70412421e-01 2.61179686e-01 1.76363379e-01\\n1.30626291e-01 -4.54344749e-02 -3.01077724e-01 -5.49743652e-01\\n-3.55569029e+00 -2.82751650e-01 5.50696328e-02 -2.48541459e-01\\n1.85145915e-01 -4.22971770e-02 2.74901390e-01 -2.18013488e-02\\n-2.70694554e-01 7.35134333e-02 -2.01510012e-01 -8.64264816e-02\\n-3.46118249e-02 3.53509903e-01 1.68244332e-01 1.43488690e-01\\n1.93885267e-02 -2.96424508e-01 1.26230046e-01 4.56099212e-01\\n-1.37910172e-01 -8.56148124e-01 7.47311115e-02 -7.26257861e-02\\n1.17508277e-01 1.38784558e-01 -4.04958606e-01 -1.12103790e-01\\n-3.46385002e-01 -1.60494342e-01 6.99183345e-02 -1.60134003e-01\\n-2.52299368e-01 2.49085829e-01 1.06362417e-01 -8.64721388e-02\\n-3.53455804e-02 -3.59373569e-01 -2.24601962e-02 -6.53341055e-01\\n3.26970555e-02 -6.95949554e-01 1.48876294e-01 3.61051299e-02\\n4.64770705e-01 -1.56582966e-02 2.45510906e-01 1.63776100e-01\\n1.69339389e-01 2.33648822e-01 1.70241073e-01 -8.08064919e-03\\n-3.03983480e-01 -2.80499369e-01 -1.99072599e-01 -2.36861020e-01\\n6.57795072e-01 1.94023579e-01 -1.99919999e-01 3.74202840e-02\\n-4.98504452e-02 -3.43164265e-01 -4.75379229e-01 -4.13300067e-01\\n-1.74542099e-01 1.01825230e-01 -6.86987460e-01 -4.31307584e-01\\n-2.44460553e-01 -1.73468426e-01 -1.26737446e-01 6.47513747e-01\\n-4.35722947e-01 -2.20222995e-01 -2.16420054e-01 -5.94370723e-01\\n2.52624780e-01 -8.20131153e-02 8.62736106e-02 -1.86010838e-01\\n-3.27403426e-01 -3.50784421e-01 1.98355496e-01 -2.75172293e-03\\n-2.44776979e-01 1.02648735e-02 1.77890003e-01 -1.08397275e-01\\n-3.86105478e-01 -3.74359012e-01 4.77235377e-01 4.26571816e-03\\n4.57176685e-01 6.10954463e-02 3.10741782e-01 1.59194395e-02\\n5.06574988e-01 -8.55695084e-02 9.16682854e-02 -5.37249565e-01\\n2.93198694e-02 6.69127926e-02 6.19441628e-01 -1.38995737e-01\\n-1.60193462e-02 4.74740826e-02 -2.56839752e-01 -2.49762386e-02\\n5.38749158e-01 -1.63856179e-01 1.38494700e-01 -3.35919678e-01\\n2.67729521e-01 -4.32539463e-01 -3.34229290e-01 6.38738275e-02\\n7.81847909e-02 7.43538260e-01 1.29113436e-01 -3.38600814e-01\\n-2.58372545e-01 3.27801645e-01 -1.52215630e-01 -7.24039972e-02\\n-2.09616601e-01 1.41601801e-01 -2.36046284e-01 2.61437654e-01\\n1.76726252e-01 3.02040782e-02 -2.80137837e-01 3.49889025e-02\\n-1.48878694e-01 1.18181966e-01 2.62158394e-01 1.75832957e-01\\n3.65262851e-03 -2.22498298e-01 -6.84153587e-02 1.14416696e-01\\n2.34426767e-01 3.24253023e-01 2.33186617e-01 -3.89072716e-01\\n2.86060870e-02 1.03369638e-01 -2.36514941e-01 2.98341453e-01\\n-1.03237309e-01 2.26938367e-01 -5.21813989e-01 -2.76915312e-01\\n-2.54761577e-01 -2.65493602e-01 2.29397453e-02 4.41016793e-01\\n1.09912843e-01 -2.51434445e-01 1.10836118e-01 -5.09543180e-01\\n3.66670161e-01 -5.71772903e-02 2.26971194e-01 4.31929063e-03\\n-1.36781614e-02 7.32295930e-01 7.96074718e-02 -2.41586313e-01\\n-5.31088933e-02 1.55605733e-01 -2.05185592e-01 -3.17513853e-01\\n3.06285396e-02 -3.52946162e-01 -1.32428646e-01 4.91699934e-01\\n7.55733997e-02 3.69209722e-02 -1.30102739e-01 4.33190167e-01\\n-6.32488281e-02 -2.58107305e-01 -2.31630683e-01 -1.81962162e-01\\n2.35331021e-02 7.26722330e-02 2.61114061e-01 -5.45908093e-01\\n3.81588191e-02 -1.29535586e-01 1.75660253e-01 4.11845297e-01\\n1.14919640e-01 1.88628212e-02 1.49087429e-01 -1.69886172e-01\\n5.05914688e-01 2.76735544e-01 -1.43848300e-01 -8.47352445e-02\\n1.94630563e-01 -2.57028848e-01 -3.90511125e-01 -3.60201709e-02\\n-9.97323319e-02 -1.41303703e-01 1.43579289e-01 2.12300956e-01\\n1.71816796e-01 3.36324200e-02 -4.70748782e-01 -1.37881815e-01\\n-4.19336766e-01 8.37518796e-02 -2.39282846e-01 -8.23341370e-01\\n6.73615187e-02 -3.51095833e-02 -6.13993406e-01 2.21830845e-01\\n-6.80322275e-02 1.18058249e-01 1.02512687e-01 1.82622120e-01\\n-1.90888226e-01 -3.03844094e-01 2.23368987e-01 -1.36131853e-01\\n-3.05934250e-01 -3.46114695e-01 2.39739753e-02 -9.21545088e-01\\n2.76762545e-01 7.67990723e-02 -1.86048716e-01 3.07146758e-02\\n1.19301431e-01 -7.44753361e-01 3.17702353e-01 -2.37914801e-01\\n-1.33371681e-01 1.43889353e-01 -3.11614990e-01 -3.48008454e-01\\n1.53147981e-01 1.45591050e-03 -1.91140026e-01 2.88545072e-01\\n-3.08448493e-01 6.43162549e-01 2.17807382e-01 1.92919865e-01\\n2.00574994e-01 -2.33969927e-01 -1.39634572e-02 -3.33765209e-01\\n-4.21945453e-01 -2.28561282e-01 -1.99784607e-01 -2.11759627e-01\\n-5.40009476e-02 -1.53570965e-01 -1.05935186e-01 -1.13392070e-01\\n4.73212868e-01 3.49675536e-01 -2.36959338e-01 4.88043763e-02\\n-3.90611514e-02 -2.73881495e-01 2.26684019e-01 -2.59959221e-01\\n-6.96395934e-02 -2.72628725e-01 4.93727446e-01 -1.14674158e-01\\n2.04172567e-01 -1.64891273e-01 6.67558193e-01 -1.67972893e-01\\n-3.62935126e-01 -1.09879233e-01 1.50007069e-01 4.50675115e-02\\n2.88204223e-01 -6.10142827e-01 5.38021401e-02 3.56592685e-01\\n9.64097083e-02 5.85207455e-02 3.72008562e-01 -1.59248084e-01\\n-2.30890840e-01 2.10392445e-01 -6.78520679e-01 1.51378185e-01\\n7.01343715e-01 2.80828059e-01 1.27947688e-01 1.64826989e-01\\n5.65739870e-02 1.68446481e-01 5.30752659e-01 7.68702477e-02\\n-2.02321798e-01 5.14730573e-01 1.92759395e-01 -7.11550891e-01\\n-3.36884797e-01 -1.59894601e-01 -3.37813422e-03 -2.42597044e-01\\n6.20835900e-01 1.33443847e-01 -4.70507681e-01 -3.80021691e-01\\n-3.76374185e-01 -2.80495912e-01 3.32177192e-01 5.52777313e-02\\n1.24651492e-01 -1.00803256e-01 5.91643929e-01 -3.90242860e-02\\n3.01796436e-01 4.75176245e-01 -1.80343539e-02 -1.34569585e-01\\n-5.11511564e-02 2.42801830e-01 1.28010020e-01 3.61895084e-01\\n-5.64892739e-02 1.49931237e-01 3.91129851e-02 1.27426535e-01\\n-3.17187309e-01 -5.31696826e-02 2.20459417e-01 -1.27257854e-02\\n1.10019527e-01 2.12586641e-01 5.36637545e-01 3.36952329e-01\\n2.47376382e-01 4.84607428e-01 3.80346388e-01 -2.83900667e-02\\n4.39093977e-01 6.83360755e-01 1.82947829e-01 -1.08023643e-01\\n1.34323090e-02 1.19458131e-01 1.03729367e-01 -3.07833347e-02\\n4.12101150e-01 5.54117441e-01 9.07534659e-02 7.66765833e-01\\n3.47824782e-01 3.59968692e-01 5.83235145e-01 -5.53700447e-01\\n-1.98314428e-01 5.60754687e-02 5.19675672e-01 -2.61983693e-01\\n1.31907567e-01 1.67795941e-01 -2.51441777e-01 2.32583821e-01\\n-4.59881693e-01 -2.24262774e-01 -5.18954396e-02 -1.45882815e-01\\n2.27639586e-01 -1.86824724e-02 4.49294001e-02 1.42247528e-01\\n-3.87051068e-02 -2.37777084e-01 -2.11852521e-01 -3.39132100e-01\\n-3.74523491e-01 5.73425647e-03 8.44365954e-02 -6.97888136e-02\\n-6.77605197e-02 -2.72388935e-01 -7.20749199e-02 -1.55324727e-01\\n2.70112395e-01 -1.10158734e-01 -3.34998935e-01 -1.07086696e-01\\n1.45143438e-02 3.06369156e-01 9.21783447e-01 -1.77824765e-01\\n1.66461051e-01 -1.78993165e-01 -1.86832607e-01 -2.54484080e-02\\n1.61697477e-01 1.01951584e-01 -2.91782729e-02 6.06689692e-01\\n-2.57903636e-01 -4.82439697e-02 1.52224541e-01 2.31140733e-01\\n-2.43201107e-01 1.32235307e-02 -5.22389561e-02 5.44080250e-02\\n4.37594205e-03 1.22165650e-01 -1.84865832e-01 3.06754448e-02\\n-2.30701506e-01 -6.49197519e-01 2.72451490e-01 -1.19080722e-01\\n-2.70071149e-01 -9.45970863e-02 2.54023075e-01 4.36552346e-01\\n-8.99736732e-02 -1.55729830e-01 -8.55943188e-02 1.97303742e-01\\n1.10036470e-01 3.79391223e-01 -2.18155861e-01 -1.33596122e-01\\n-2.61167705e-01 4.08169508e-01 7.51660541e-02 1.51080757e-01\\n-7.55340159e-02 3.85382116e-01 2.61615179e-02 2.32520312e-01\\n1.59027353e-01 -2.20937565e-01 -3.69323730e-01 -3.04829597e-01\\n-4.35190201e-01 -1.16633028e-02 1.11955486e-01 -8.50889459e-02\\n2.64335275e-01 -2.27494001e-01 -6.81183934e-02 -2.76735246e-01\\n-2.44057477e-01 -4.49558347e-01 -1.16036996e-01 1.09312750e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Manages the maintenance of key Applications - Ensure a proper functional and technical support to the business departments on IS applications - Supervise end users in order to ensure a proper understanding of internal Business Processes (Trading, Shipping, Finance, Legal, Cross-functions) - Provide support to Trading and Operations team in their usage and ramp-up on the Application (training, coaching, change management) - Supervise end users application’s usage in order to guarantee the efficient use of the software - Coach and Train new comers in the understanding of our processes and a proper usage of the applications related to the function of the employee. - Perform review on application usage and data quality and trigger necessary training or process improvements - Define and Implement Projects for new requirements and/or evolution of the applications - Manage the continuous improvement of our Business processes: - Help in ensuring the defined IS applications matches the business requirements of internal departments - Review Processes supported by IS systems and work in coordination with the functional departments to propose processes/Systems changes. - Specify and implement necessary system changes - Manage the testing phases and ensuring quality performance with the external developers involved in various IS improvement projects - Lead Change Management with the users whilst implementing change - Get user-feedback and trigger necessary tasks or subprojects to reach a balance between Processes, Controls, user satisfaction and capability/cost efficiency of the IS Solution - Follow-up on processes implemented, new and existing, and ensure continuous improvement - Identify user needs for reporting and implement them once specified and approved - With the support and in relation with the Business Process Owners, review the processes defined by each BPO and ensure our Operating Model is updated - Manage specific and ad-hoc IS/IT Projects - Gather Requirements and Objectives of the Project - Manage the different Project Phases from Requirements till post-support implementation - Ensure a proper handover and transition of Project deliverables to the employees (Training, support of employees on requests) Profile required: Educational Background / Qualifications: - Degree in Computer science with experience in project management - Secondary Education in cross functional areas Technical Skills: - CRM Systems (SalesForce, Oracle) - Good knowledge of Reporting systems and Business Intelligence tools (IBM Cognos, Quickview,..) - General understanding of main ERP functionalities (SAP) - Scripting language (SQL, JavaScript, any other scripting languages) - First experience on Mobility and Mobile Apps development Experience required: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in the current Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs - Proven capabilities in coaching, training and development Competency profile: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Good experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs Interpersonal competencies / communication - Service-oriented - Communication capability with specialists and non-specialists (oral and written) - Listening skills - Ability to manage diversity and complexity of processes - Negotiation/conflict resolution skills - Reactivity - Time management skills - English professional. Good German. Any other language is a plus Benötigte Skills Englisch Projektleitung Qualitätssicherung CRM ERP Oracle Cognos SAP SQL JavaScript Requirements Engineering Schulung Strategie',\n", + " 'soft_skills': '[\"Negotiation\", \"Professionalism\", \"Supervision\", \"Management\", \"Listening Skills\", \"Operations\", \"Training And Development\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Data Quality\", \"QuickView\", \"Business Intelligence Tools\", \"Ad Hoc Testing\", \"Computer Science\", \"Customer Relationship Management (CRM) Software\", \"Asynchronous Serial Communication\", \"Process Automation Systems\", \"Reactivity\", \"Process Improvements\", \"Performance Review\", \"Mobile App\", \"SAP Sybase SQL\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Secondary Education\", \"Dashboard\", \"Business Intelligence\", \"Mobility\", \"Process Control\", \"Business Requirements\", \"MFG/Pro (ERP)\", \"Cross-Functional Coordination\", \"Finance\", \"Business Process\", \"SAP Functional\", \"Specific Performance\", \"Requirements Engineering\", \"JavaScript (Programming Language)\", \"Continuous Improvement Process\", \"Implement Projects\", \"Adapter Scripting Language\", \"User Feedback\", \"Project Management\", \"Scripting\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Diversity Management\", \"SQL (Programming Language)\", \"Technical Support\", \"International Business\", \"Conflict Resolution\", \"Change Management\"]',\n", + " 'languages': \"['English', 'Korean', 'Chewa', 'Estonian']\"},\n", + " {'company_id': '52',\n", + " 'job_title': 'junior software developer internship',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.45473623e-01 2.19922841e-01 3.95095408e-01 -8.58976841e-02\\n5.51735580e-01 -2.02397883e-01 -7.35367462e-03 5.00029922e-01\\n-1.52281597e-01 -1.19535170e-01 -1.25269637e-01 -2.06219703e-01\\n-3.24371420e-02 -2.62237042e-02 1.49601355e-01 3.16426218e-01\\n4.82166260e-01 5.57406731e-02 -2.89484859e-01 2.85835177e-01\\n9.59658772e-02 -1.58541277e-01 1.09840846e-02 6.16762042e-01\\n3.71483356e-01 3.89521345e-02 -5.42104766e-02 -7.87682310e-02\\n-2.99870104e-01 -1.31022558e-01 5.30076027e-01 3.96904498e-02\\n-1.54182715e-02 -2.32307419e-01 2.21703202e-01 6.51573688e-02\\n-4.44421172e-02 -3.38877067e-02 -1.95203587e-01 1.99599862e-01\\n-4.15456951e-01 -1.94820508e-01 9.43321958e-02 1.80630758e-01\\n-2.37349615e-01 -4.10376310e-01 2.75215745e-01 -1.24317423e-01\\n1.27079174e-01 1.30634263e-01 -4.77396876e-01 2.48626798e-01\\n-7.80712068e-02 -2.59655833e-01 3.82703841e-01 6.09389007e-01\\n-6.21135309e-02 -6.32945001e-01 -4.94459152e-01 -5.03488004e-01\\n1.41859800e-01 -5.00296317e-02 6.92079887e-02 -3.10608923e-01\\n2.81814247e-01 1.06972054e-01 6.34988472e-02 4.08018589e-01\\n-8.53355050e-01 -1.41253442e-01 -1.99521750e-01 1.27827227e-01\\n-2.35327348e-01 -1.28637239e-01 -2.89901704e-01 -1.46020539e-02\\n-4.02461849e-02 3.85970861e-01 -7.86702484e-02 1.10203102e-01\\n-1.18088454e-01 4.06786680e-01 -1.19136840e-01 4.12524074e-01\\n2.32734367e-01 2.22471863e-01 1.13852687e-01 2.04134822e-01\\n-2.62728989e-01 5.30867875e-01 1.18389353e-01 -3.25752825e-01\\n8.66854116e-02 1.89736113e-01 3.32002491e-01 7.25791082e-02\\n2.59054393e-01 1.63287669e-01 -3.93455297e-01 9.31832939e-02\\n1.52656317e-01 -3.05316985e-01 1.56553492e-01 1.01894297e-01\\n-7.74925202e-02 1.58645004e-01 -2.57805847e-02 1.22793607e-01\\n-3.99372756e-01 4.78572071e-01 2.29489118e-01 -2.61536270e-01\\n-6.53430074e-02 -6.29386663e-01 -9.89215374e-02 -3.66564021e-02\\n-1.07020393e-01 9.30459425e-02 1.22054107e-01 2.31111541e-01\\n2.79944867e-01 -2.46658698e-01 1.62418559e-01 7.94231951e-01\\n-8.29315260e-02 7.32356235e-02 -1.21068135e-01 3.64816099e-01\\n-2.01784577e-02 -2.27983460e-01 1.07244946e-01 2.09850580e-01\\n1.83243096e-01 -3.70334089e-02 -3.29061538e-01 3.32001060e-01\\n-2.13583335e-01 -3.62991035e-01 -2.46123090e-01 2.57668674e-01\\n-8.47623125e-03 -6.20967448e-01 5.99171996e-01 -5.08470796e-02\\n1.71031147e-01 -1.22229189e-01 -3.71582294e-03 -2.85885227e-03\\n-6.02269247e-02 2.71905333e-01 1.54449850e-01 5.59690259e-02\\n-2.21181631e-01 -2.00638339e-01 -2.49279261e-01 9.30614993e-02\\n-3.13635081e-01 4.16235253e-02 -1.51886299e-01 -1.30846292e-01\\n3.12026650e-01 5.16252145e-02 -2.85045058e-01 3.01462114e-01\\n2.68437937e-02 1.37891591e-01 -1.29512757e-01 3.69422823e-01\\n-3.86612773e-01 3.78587157e-01 -1.09693602e-01 -4.92961481e-02\\n6.62681937e-01 -5.58964070e-03 3.45770293e-03 -1.36714743e-03\\n8.77903700e-02 -3.74430716e-02 4.15127844e-01 1.42090647e-02\\n-6.65074527e-01 2.18379006e-01 5.93557321e-02 2.60124449e-02\\n2.85582215e-01 -1.43258989e-01 2.20245868e-01 -4.66184407e-01\\n2.68916897e-02 -1.84423387e-01 -3.68056208e-01 -2.35640734e-01\\n-2.82810897e-01 -6.77277595e-02 2.33487561e-01 -3.84310931e-01\\n5.17817847e-02 1.52055189e-01 -5.22442460e-01 -1.37363091e-01\\n1.94653317e-01 1.43800065e-01 8.01353976e-02 1.96248382e-01\\n-5.50853051e-02 -6.92686617e-01 1.88014284e-01 -4.37903315e-01\\n-1.72082201e-01 1.60971716e-01 -2.34674081e-01 2.28002980e-01\\n-1.62200615e-01 2.13294610e-01 3.05494084e-03 1.35160014e-01\\n-1.70606539e-01 -6.18163645e-02 1.21334381e-01 1.63340583e-01\\n2.27279961e-01 6.45199744e-03 -4.75051045e-01 5.05639911e-01\\n-2.41032824e-01 5.92652738e-01 3.97885917e-03 -7.68352866e-01\\n3.66328567e-01 4.27883416e-01 3.70802619e-02 -2.53934503e-01\\n7.48160958e-01 -4.13161248e-01 -1.56835496e-01 1.40595153e-01\\n-5.70764601e-01 -3.49678636e-01 1.58749789e-01 -3.99365425e-01\\n-3.17865402e-01 5.79256415e-01 1.11226074e-01 1.05091304e-01\\n2.74932951e-01 -1.35770738e-01 1.67993754e-02 7.77744427e-02\\n-2.37597600e-01 -1.84271887e-01 -5.27741194e-01 -1.13836981e-01\\n3.20441201e-02 -4.99126554e-01 -1.66044325e-01 -3.18567008e-01\\n-1.66296780e-01 -2.96055734e-01 -7.16652945e-02 5.04269190e-02\\n3.49717081e-01 1.67163357e-01 1.36661291e-01 9.67797637e-02\\n-2.39999846e-01 -5.70889950e-01 2.10115343e-01 1.03598259e-01\\n1.56007677e-01 2.52406627e-01 5.03194295e-02 -7.17848837e-02\\n-6.94592223e-02 6.78895473e-01 -3.37098598e-01 -2.99918324e-01\\n1.59823507e-01 7.49776289e-02 4.04712446e-02 -2.48348653e-01\\n1.06766306e-01 3.89184177e-01 -3.87663752e-01 1.38602734e-01\\n-2.48314053e-01 -1.64672490e-02 3.31007600e-01 7.64871538e-02\\n-1.22879997e-01 -2.32466772e-01 -1.28548086e-01 1.41489357e-01\\n-4.15204942e-01 -2.39170030e-01 5.57497323e-01 1.00887470e-01\\n1.57292590e-01 3.10246229e-01 3.94553602e-01 -1.07318595e-01\\n-1.92710996e-01 -3.69626492e-01 1.35761783e-01 8.85161757e-02\\n1.43931657e-01 6.97454810e-02 -9.40581188e-02 -5.88764906e-01\\n-2.61776710e+00 -3.70270498e-02 1.54413387e-01 -3.08222562e-01\\n2.22388059e-01 -8.61221626e-02 -1.68882310e-01 -7.46942833e-02\\n-5.02890408e-01 7.83290640e-02 -9.78340954e-02 -2.75557995e-01\\n1.76349327e-01 3.71665418e-01 1.93544462e-01 9.65916663e-02\\n1.15380600e-01 -2.84991413e-01 -1.43430429e-02 3.59965742e-01\\n-1.51247576e-01 -6.32064342e-01 1.47848114e-01 4.74647656e-02\\n4.74401683e-01 4.91123945e-01 -5.39658964e-01 -2.43761733e-01\\n-1.52173072e-01 -2.56942779e-01 1.61740094e-01 -2.92044282e-01\\n-4.96272147e-02 4.84879673e-01 1.21359810e-01 4.54459414e-02\\n3.41642387e-02 -3.72570783e-01 7.99332559e-03 -2.69092530e-01\\n2.22852696e-02 -7.21908152e-01 -1.36210471e-01 -8.45591500e-02\\n8.16650748e-01 -2.96223730e-01 1.57203883e-01 -9.54588503e-02\\n1.26440257e-01 1.74636230e-01 8.94863717e-03 1.92048252e-02\\n-4.01789278e-01 -1.95247695e-01 -5.05155604e-03 3.23557369e-02\\n4.60078239e-01 4.78760779e-01 -3.04901659e-01 -3.00131459e-02\\n8.12928677e-02 -4.24017549e-01 -4.02201265e-01 -2.28107348e-01\\n-2.17574567e-01 -3.73260498e-01 -6.86394215e-01 -4.28051353e-01\\n-8.42068053e-04 -1.90977529e-02 2.80474909e-02 5.86344838e-01\\n-2.83237129e-01 -2.33287498e-01 -8.16170499e-02 -6.24902487e-01\\n2.21570775e-01 -1.46495730e-01 4.69842777e-02 -2.03845352e-01\\n-1.18891701e-01 -5.26580393e-01 2.96362191e-02 -1.84443727e-01\\n3.16750854e-02 -1.08838528e-01 -7.95118883e-03 -6.29516914e-02\\n-4.15167511e-01 -6.67237759e-01 3.67964208e-01 1.17280856e-01\\n2.67264128e-01 6.96267784e-02 1.84422359e-01 7.76985753e-03\\n3.16727191e-01 -1.06417999e-01 1.56561643e-01 -4.11961645e-01\\n-4.54064319e-03 3.50753367e-02 5.33268094e-01 -1.34442493e-01\\n2.53753085e-02 1.58909738e-01 -2.84534991e-01 -6.49948865e-02\\n1.83838159e-01 3.11604869e-02 1.20041080e-01 -3.32923681e-01\\n3.78964812e-01 -2.08193779e-01 -1.34031609e-01 -3.84025723e-02\\n7.95439854e-02 6.67521775e-01 -9.07117948e-02 -2.24580631e-01\\n-2.13326246e-01 4.56168592e-01 -1.12361178e-01 -1.46115884e-01\\n-2.14275673e-01 -2.15088353e-02 -1.04602940e-01 1.15005344e-01\\n3.29497643e-03 -1.11089461e-01 -1.78989664e-01 -1.31157324e-01\\n-1.16287135e-01 3.25007915e-01 1.54645443e-01 1.50567740e-01\\n-1.01972483e-01 -4.60030079e-01 -4.56119771e-04 2.91093320e-01\\n1.84487551e-01 3.56197119e-01 -2.82094330e-02 -3.12071234e-01\\n-2.80383360e-02 2.40914762e-01 6.59707654e-03 3.67216259e-01\\n-1.90381423e-01 1.51898801e-01 -6.77344382e-01 -2.78151125e-01\\n-1.73992589e-01 -3.61348301e-01 8.12298954e-02 3.76010925e-01\\n1.52181134e-01 -5.52453399e-02 1.63824514e-01 -5.86592138e-01\\n4.21698332e-01 3.86788137e-02 2.89200068e-01 -4.65883091e-02\\n-1.28184959e-01 4.76823449e-01 -3.10150534e-02 -4.38425131e-02\\n-2.43651316e-01 1.95553139e-01 -1.46640718e-01 -3.30681711e-01\\n1.89789012e-01 -4.15319085e-01 -2.33142838e-01 3.87686461e-01\\n8.60225409e-02 -2.28306726e-01 -1.93042859e-01 7.39180297e-02\\n3.75953177e-03 -4.54503089e-01 -2.52650738e-01 -7.54570439e-02\\n3.61787736e-01 1.26784205e-01 2.71633297e-01 -3.22847873e-01\\n8.42160285e-02 -8.58866274e-02 -8.21855739e-02 4.04488921e-01\\n3.69907655e-02 -6.22059144e-02 -3.12176198e-01 -1.59623578e-01\\n4.58450079e-01 -1.77133292e-01 -2.37016864e-02 1.18872933e-01\\n9.29111540e-02 -2.95646757e-01 -4.90285933e-01 -6.99271709e-02\\n8.66693556e-02 -5.21860123e-02 -3.77704613e-02 6.90912455e-02\\n7.78119341e-02 6.17326982e-02 -4.36556190e-01 -1.64108545e-01\\n-3.48309845e-01 -7.25517198e-02 7.01059550e-02 -4.57707703e-01\\n-1.65634096e-01 -6.01060577e-02 -4.67383236e-01 2.44101763e-01\\n-2.37860709e-01 2.27316972e-02 2.92285055e-01 -1.65588990e-01\\n-3.80428076e-01 -1.89400643e-01 9.47308093e-02 2.87066013e-01\\n-2.46226490e-01 -2.07789451e-01 -9.66834798e-02 -1.00555551e+00\\n2.02925876e-01 -1.30872637e-01 -4.98056374e-02 3.58184017e-02\\n-3.64202596e-02 -7.89154887e-01 2.68895179e-01 -4.10526931e-01\\n-1.03596546e-01 -2.84045357e-02 -1.72376692e-01 -3.78441185e-01\\n2.35497072e-01 -2.96965484e-02 -2.47622490e-01 2.40348652e-01\\n-3.28644991e-01 4.43502098e-01 1.64369512e-02 3.72146703e-02\\n-1.23621419e-01 -2.95922965e-01 2.03749095e-03 -4.54361647e-01\\n-2.46674791e-01 -1.00867443e-01 -3.12553525e-01 4.19228598e-02\\n-9.00717229e-02 -1.30740345e-01 -1.94600612e-01 7.42791146e-02\\n4.15088296e-01 1.21921368e-01 -7.93483406e-02 -1.43306211e-01\\n1.72423363e-01 -5.09902239e-01 1.69317350e-01 -3.27898473e-01\\n1.00524195e-01 -1.32626623e-01 2.60226458e-01 2.19739541e-01\\n1.35404274e-01 -4.91473883e-01 3.29101801e-01 -4.48009372e-01\\n-5.26750445e-01 1.43201500e-02 6.79285973e-02 -1.54193386e-01\\n4.65061665e-01 -5.41942716e-01 -1.84909865e-01 3.91988754e-01\\n-3.80467884e-02 -3.87774631e-02 2.29927927e-01 -8.31914991e-02\\n-1.54848412e-01 1.93777397e-01 -3.63993645e-01 2.78356988e-02\\n7.29109347e-01 2.97423631e-01 1.50550744e-02 2.45707139e-01\\n2.04123780e-01 3.12750310e-01 4.08034384e-01 1.01338901e-01\\n-5.38795581e-03 3.50028157e-01 -5.73848337e-02 -6.59256220e-01\\n5.85917477e-03 -5.09761833e-03 -3.33802193e-01 -3.10916871e-01\\n6.43007040e-01 3.93528640e-01 -4.00413543e-01 -3.07851851e-01\\n-2.00726002e-01 -2.13978842e-01 2.55529165e-01 3.70820202e-02\\n2.39879712e-01 4.26364318e-03 6.05877399e-01 1.43179610e-01\\n2.80882865e-01 6.50168717e-01 -1.66484520e-01 -3.05924505e-01\\n3.54904085e-02 3.28848094e-01 -3.73973995e-02 4.60030496e-01\\n-1.35907263e-01 2.84458667e-01 -9.23225358e-02 -3.37796248e-02\\n-9.76275653e-02 1.43223435e-01 1.78526103e-01 -3.26318368e-02\\n1.16038181e-01 7.29452744e-02 4.23307061e-01 4.27861929e-01\\n2.92726010e-01 3.76757383e-01 2.97999948e-01 3.12964395e-02\\n4.99812603e-01 4.65014637e-01 3.86114776e-01 1.27076000e-01\\n4.80362698e-02 1.34755716e-01 1.05135947e-01 7.07183555e-02\\n2.49690160e-01 3.30388665e-01 8.25779736e-02 9.25211728e-01\\n3.68591398e-01 2.69573301e-01 7.10277975e-01 -5.85745335e-01\\n-3.28817725e-01 -2.13221475e-01 5.07364154e-01 -3.62576783e-01\\n-5.21593206e-02 8.35919529e-02 -9.39361230e-02 3.43980849e-01\\n-3.31892371e-01 -2.30632693e-01 4.35365252e-02 2.30933771e-01\\n5.45152687e-02 2.59559005e-02 -1.37752265e-01 1.47144021e-02\\n-2.34334201e-01 -2.95307875e-01 -5.97996235e-01 -1.71406239e-01\\n-1.91932321e-01 -8.37542489e-02 -1.69033170e-01 -9.45577174e-02\\n-2.39471942e-01 -3.43974501e-01 -9.28418264e-02 -9.75252464e-02\\n3.05595368e-01 -2.03515068e-01 -4.90560047e-02 -1.77224323e-01\\n4.21410710e-01 1.90544441e-01 5.85261703e-01 -3.29012275e-02\\n6.19723536e-02 -4.69307840e-01 -2.07040191e-01 1.13210708e-01\\n7.64514282e-02 2.52238158e-02 4.38707955e-02 4.78126526e-01\\n-2.79441535e-01 -2.42833152e-01 4.90680570e-03 3.51825029e-01\\n-4.21927482e-01 -8.22668001e-02 3.52508128e-02 1.42494947e-01\\n5.55643328e-02 2.74579115e-02 -1.36973664e-01 -4.16733511e-02\\n-9.12409797e-02 -4.46850061e-01 2.21877247e-01 1.64352339e-02\\n-2.63824046e-01 2.75128007e-01 2.32905328e-01 1.85319960e-01\\n-1.28736332e-01 -9.35236067e-02 -1.17537715e-01 8.76640752e-02\\n-7.66385347e-03 3.47190261e-01 -1.64434120e-01 -4.21817601e-01\\n-2.38005117e-01 2.00991228e-01 -3.99697393e-01 9.29051936e-02\\n2.57381517e-02 2.95806766e-01 4.98581231e-02 -5.15647605e-02\\n4.65222955e-01 3.06350384e-02 -1.82640076e-01 -2.53989995e-01\\n-7.15851411e-02 -3.08803678e-01 -4.61579598e-02 -1.35998756e-01\\n1.36391968e-01 -2.77447462e-01 -1.13779701e-01 -3.12114954e-01\\n-1.25723988e-01 -2.47070983e-01 -1.69569999e-01 -1.25062257e-01]]',\n", + " 'job_description': 'We are an investment and trading firm with offices based in Zug, Zürich and Ziegelbrücke, Switzerland. We are looking for a Junior Software Developer Internship (f / m, 100%) who is motivated to learn in a small but growing team. This position is being offered either as a 6 to 12-month internship or as an entry level role for recent graduates. The successful candidate will work on projects involving futures and cryptocurrencies and gain exposure to financial markets trading. Your Responsibilities: • Developing an automated trading system with the Senior Portfolio Managers. • Building front end framework and GUI. • Managing short-term quantitative strategies and market risk issues. • Directing system testing and validation procedures. Your Profile: • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Effective communicator, fluency in English is a must. • Excellent at multi-tasking and working under pressure. • Highly motivated and interested to learn from experienced professionals. • An interest in finance and cryptocurrencies will be beneficial. Did we raise your interest? Please send your CV and cover letter. Requirements • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Fluency in English. • Excellent at multi-tasking and working under pressure.',\n", + " 'soft_skills': '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Market Risk\", \"Automation\", \"KM Programming Language\", \"Vue.js\", \"Notching\", \"Python (Programming Language)\", \"M (Programming Language)\", \"Levelling\", \"Financial Market\", \"Investments\", \"Business Economics\", \"Cryptocurrency\", \"Portfolio Management\", \"Finance\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Physics\", \"Computer Programming\", \"Validations\", \"Front End (Software Engineering)\", \"Software Development\", \"Political Sciences\", \"System Testing\"]',\n", + " 'languages': \"['English', 'Armenian', 'Arabic']\"},\n", + " {'company_id': '82',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.nicollcurtin.com',\n", + " 'jobdescription_embedded': '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'job_description': 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " 'languages': \"['English', 'Chuang', 'Portuguese']\"},\n", + " {'company_id': '2',\n", + " 'job_title': 'computer scientist internship',\n", + " 'location': 'Schlieren',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.53602079e-01 2.75295228e-01 4.44754988e-01 -8.74064746e-04\\n4.65142727e-01 -9.00841281e-02 3.52950059e-02 3.23823810e-01\\n-1.11643709e-01 -2.68267572e-01 -1.73975769e-02 -2.35319495e-01\\n-1.20843843e-01 2.28507612e-02 5.45536652e-02 5.17031670e-01\\n2.56125003e-01 1.02014244e-01 -2.13766143e-01 2.48112679e-01\\n1.99942648e-01 -1.53428212e-01 6.28897268e-03 6.94221199e-01\\n4.73785073e-01 -2.12082770e-02 -2.33641006e-02 2.71139015e-02\\n-2.70769387e-01 -1.71507776e-01 3.80241275e-01 3.10115572e-02\\n-6.24167882e-02 -2.51691252e-01 2.07952544e-01 1.08487733e-01\\n-1.45617232e-01 -2.82728225e-02 -6.40606135e-02 2.39154637e-01\\n-5.00803411e-01 -2.27012783e-01 8.28664154e-02 -5.88480802e-03\\n-3.01922083e-01 -3.96644235e-01 8.84282812e-02 -8.25946853e-02\\n1.18442819e-01 -8.04540887e-02 -6.21175110e-01 3.25554013e-01\\n-2.62513757e-01 -5.28069809e-02 2.67046869e-01 6.22997642e-01\\n1.75173637e-02 -6.24342501e-01 -4.32742864e-01 -3.23103011e-01\\n1.22896388e-01 -1.14720605e-01 3.08250189e-02 -3.29822838e-01\\n2.65377522e-01 4.73865680e-02 -2.78202314e-02 3.78728628e-01\\n-8.09108377e-01 -1.08554766e-01 -3.13643754e-01 1.07773039e-02\\n-3.61554801e-01 -6.85201064e-02 -3.57690275e-01 -3.95499766e-02\\n-7.07582310e-02 3.94466072e-01 -6.43955618e-02 2.41639651e-02\\n-1.60574973e-01 2.75085330e-01 -2.96322286e-01 2.96128988e-01\\n2.90642321e-01 1.64011940e-01 1.63925856e-01 3.54308426e-01\\n-3.22756439e-01 3.94301832e-01 1.48467347e-01 -3.28850389e-01\\n1.20087259e-01 6.70346916e-02 4.90757972e-01 6.25806823e-02\\n3.58981788e-02 1.51024401e-01 -1.96921900e-01 2.80004263e-01\\n1.89411595e-01 -1.99639887e-01 1.19231425e-01 -1.45926535e-01\\n-9.98239890e-02 -6.31182492e-02 2.92794481e-02 2.85648704e-01\\n-2.38075405e-01 4.63762730e-01 1.81371108e-01 -1.43252566e-01\\n-6.10677749e-02 -5.97779214e-01 -1.46738470e-01 -4.79835421e-02\\n9.90228541e-03 2.02259764e-01 2.18669951e-01 2.95556247e-01\\n1.69639215e-01 -3.66647467e-02 1.54743403e-01 8.88356924e-01\\n-9.27291214e-02 5.57114333e-02 -2.22520947e-01 3.36524427e-01\\n1.26762688e-01 -1.30034193e-01 1.63136125e-01 2.66448766e-01\\n1.24527909e-01 -1.38661847e-01 -3.04444641e-01 3.01279366e-01\\n-2.03299493e-01 -1.97715744e-01 -3.21733028e-01 1.13359720e-01\\n-1.26464516e-01 -4.22883570e-01 6.39714837e-01 9.57419500e-02\\n1.21580683e-01 -9.35149714e-02 -7.06192404e-02 -1.13021635e-01\\n-3.90886664e-02 2.97870904e-01 1.03825651e-01 1.72982365e-01\\n-2.62146205e-01 -2.37105966e-01 -1.72257408e-01 1.39742464e-01\\n-1.87868550e-01 4.04359885e-02 -5.32390587e-02 -2.33344249e-02\\n3.58087838e-01 8.36327672e-02 -3.97071511e-01 1.94158182e-01\\n-3.52918170e-02 -2.11089835e-01 -1.75920546e-01 4.78833765e-01\\n-1.18805371e-01 1.79205075e-01 -5.62654808e-04 -1.64773479e-01\\n5.25384128e-01 1.44765720e-01 1.78613380e-01 -4.08485346e-02\\n2.23982945e-01 -7.63998181e-02 2.21726879e-01 1.56658426e-01\\n-5.92209995e-01 3.01452816e-01 -4.26033325e-02 -4.11835201e-02\\n2.04418361e-01 -3.64146824e-03 3.92587543e-01 -3.19166958e-01\\n-5.28447852e-02 -2.06167892e-01 -3.61407131e-01 -3.17565650e-01\\n-2.08405003e-01 -4.14628610e-02 3.93401176e-01 -3.70006919e-01\\n-3.59406881e-02 2.75770038e-01 -4.60921288e-01 -6.29739612e-02\\n1.79042384e-01 2.41301447e-01 1.20403916e-01 9.09609646e-02\\n-1.29892007e-01 -5.92998028e-01 4.95606810e-02 -4.56167519e-01\\n-4.74848419e-01 1.49121329e-01 -3.27060908e-01 2.70537883e-01\\n3.40833180e-02 1.07858978e-01 -2.38053408e-02 1.65477246e-01\\n-2.84833610e-01 2.82191560e-02 1.29977316e-01 1.20445400e-01\\n1.72923639e-01 6.56228513e-03 -5.48824072e-01 4.51307535e-01\\n-2.10540816e-01 5.27005076e-01 1.68574885e-01 -8.17633152e-01\\n5.33210993e-01 1.99961245e-01 3.69334333e-02 -3.84959430e-01\\n5.93608081e-01 -2.71225005e-01 3.69302817e-02 7.62620866e-02\\n-2.92427510e-01 -1.94473416e-01 3.05666536e-01 -1.91071451e-01\\n-2.24033490e-01 5.12881935e-01 1.79499090e-01 4.11442108e-02\\n2.20911309e-01 -3.12304884e-01 -1.89719886e-01 1.93197485e-02\\n-7.74767250e-02 -1.71716079e-01 -3.82747442e-01 8.98938105e-02\\n-1.57072946e-01 -5.97255647e-01 -1.09047018e-01 -3.44104916e-01\\n-2.22361147e-01 -3.33881289e-01 -1.40929669e-01 3.06869119e-01\\n2.32386425e-01 1.76017642e-01 4.14241441e-02 -4.21105511e-02\\n-1.02337524e-01 -6.38835013e-01 -1.30182765e-02 9.28274840e-02\\n4.14528966e-01 2.46585473e-01 1.00189492e-01 -1.08352512e-01\\n-1.34536363e-02 5.63502908e-01 -2.98841238e-01 -2.59328812e-01\\n1.66434571e-01 1.20348431e-01 4.84061241e-02 -1.37787819e-01\\n1.03051558e-01 3.02864045e-01 -2.38909870e-01 1.71409659e-02\\n-2.08655015e-01 -2.27689594e-02 3.71344924e-01 8.83662179e-02\\n-2.36278132e-01 -2.64207989e-01 -7.14703351e-02 2.85397261e-01\\n-4.78906929e-01 -3.33927780e-01 5.50480902e-01 2.29390293e-01\\n1.59361452e-01 2.00587839e-01 3.37863207e-01 -6.27067909e-02\\n-2.08654270e-01 -2.34520793e-01 2.09387496e-01 1.28037736e-01\\n3.18930075e-02 1.29974142e-01 -6.10775873e-02 -5.29053390e-01\\n-3.31904364e+00 -3.03261280e-02 1.80773512e-01 -3.98429722e-01\\n2.63521940e-01 -6.72795698e-02 9.67778862e-02 -1.48871168e-03\\n-2.89413452e-01 3.38058285e-02 -2.19606504e-01 -1.37703061e-01\\n8.67493078e-02 3.28529149e-01 6.77003413e-02 8.40484649e-02\\n1.18505172e-01 -2.53358155e-01 -9.06607434e-02 3.63431036e-01\\n-7.43994564e-02 -6.83497608e-01 2.05274612e-01 -1.03583140e-03\\n1.29385397e-01 2.04781815e-01 -3.53495568e-01 -8.14406425e-02\\n-2.27504790e-01 -3.86991531e-01 1.31423518e-01 -2.98274875e-01\\n-1.09821446e-01 3.74471933e-01 1.31086841e-01 -9.22293961e-02\\n3.43438797e-02 -2.58354902e-01 1.03413537e-01 -5.27502418e-01\\n1.02804273e-01 -6.92639351e-01 -5.99695509e-03 -4.89108190e-02\\n7.20850110e-01 -2.44364783e-01 1.69846669e-01 3.73018347e-02\\n1.09367788e-01 1.31801307e-01 4.38581482e-02 6.80840611e-02\\n-2.21455514e-01 -2.74322629e-01 -1.43507928e-01 -1.25110578e-02\\n5.53489149e-01 4.78209078e-01 -1.82596117e-01 -3.78921889e-02\\n6.07531294e-02 -3.79607439e-01 -4.55506444e-01 -3.64566326e-01\\n-2.95426548e-01 -2.66789854e-01 -7.51881361e-01 -3.51188600e-01\\n-1.01255216e-01 -8.94137472e-02 -1.61856756e-01 4.91799623e-01\\n-2.62051702e-01 -3.82540882e-01 5.27941287e-02 -5.45134604e-01\\n2.04817384e-01 -2.36882463e-01 7.90828466e-02 -2.22677827e-01\\n-3.38443071e-01 -5.18638790e-01 1.41649127e-01 -8.06449205e-02\\n-1.50153324e-01 -1.45016685e-01 1.12725787e-01 -2.33602986e-01\\n-2.63774306e-01 -6.57187581e-01 3.59553933e-01 9.72402915e-02\\n2.16489419e-01 1.92879051e-01 2.76198804e-01 2.82964390e-02\\n2.97138959e-01 -1.62054688e-01 1.28524438e-01 -3.25920075e-01\\n1.81981772e-01 1.60352886e-03 5.16854465e-01 -2.13908657e-01\\n7.25013986e-02 1.73593313e-01 -2.31560022e-01 -3.98134850e-02\\n3.51356238e-01 -3.96473780e-02 2.29825471e-02 -1.28120020e-01\\n3.36034834e-01 -4.42079693e-01 -2.51009583e-01 4.77879457e-02\\n-9.91837773e-03 6.52624488e-01 -4.55294475e-02 -3.37199748e-01\\n-1.98198393e-01 4.99084771e-01 -9.45051089e-02 -1.46985814e-01\\n-2.23353311e-01 3.17299664e-02 -5.64684533e-02 2.54696399e-01\\n-2.37339754e-02 -2.12478101e-01 -3.04327756e-01 -2.36206114e-01\\n-1.20887786e-01 2.94198930e-01 2.27759540e-01 1.04324706e-01\\n-6.01769648e-02 -2.64845997e-01 4.10931744e-03 2.33577281e-01\\n2.01172799e-01 4.38109010e-01 9.93783101e-02 -2.01888978e-01\\n-2.45959405e-02 3.29944402e-01 -1.85227722e-01 2.50515729e-01\\n-2.62063146e-01 8.12042356e-02 -5.32123625e-01 -2.42141888e-01\\n-1.77016839e-01 -4.21145201e-01 1.71328336e-01 3.76035631e-01\\n2.00258568e-01 -1.51827540e-02 5.48333041e-02 -5.50627172e-01\\n3.95117015e-01 6.71457797e-02 1.24630883e-01 1.76317126e-01\\n-3.42798308e-02 6.08054280e-01 -8.20547864e-02 -3.61471586e-02\\n-9.51210335e-02 -5.19671030e-02 -4.01220590e-01 -1.45096704e-01\\n1.37507185e-01 -2.92499453e-01 -1.58439726e-01 5.20828187e-01\\n1.57981351e-01 -2.76140422e-01 -1.93701386e-01 2.32864216e-01\\n4.07198109e-02 -3.41823220e-01 -1.70939103e-01 4.63949218e-02\\n1.83589429e-01 1.35904029e-01 2.67145723e-01 -3.25727969e-01\\n-7.40477219e-02 -3.42329964e-02 -8.51560533e-02 4.55039650e-01\\n1.26481712e-01 9.49736312e-03 -1.49191186e-01 -1.13087840e-01\\n5.34564316e-01 -1.82246551e-01 -6.97943419e-02 3.16317305e-02\\n8.63784030e-02 -2.12962717e-01 -5.09177744e-01 -2.39348952e-02\\n-9.27379131e-02 -2.03457683e-01 6.73676468e-03 1.17026418e-01\\n1.91402230e-02 1.63133647e-02 -5.19271195e-01 -2.74993420e-01\\n-3.39055181e-01 -9.21681374e-02 7.69305825e-02 -4.94073808e-01\\n-8.33783001e-02 4.38126875e-03 -5.22319496e-01 2.59860784e-01\\n-1.33243337e-01 8.21146071e-02 2.44402304e-01 1.29367441e-01\\n-2.22957805e-01 -5.61451837e-02 1.05035231e-01 1.35916740e-01\\n-2.87162334e-01 -1.55335665e-01 -3.73689085e-02 -9.48419929e-01\\n1.08483002e-01 3.63766290e-02 -2.27224320e-01 8.53658766e-02\\n-9.98522937e-02 -6.38040960e-01 7.99505338e-02 -2.67035365e-01\\n-6.33292571e-02 1.30717024e-01 -1.75862640e-01 -4.65874404e-01\\n1.84822276e-01 -4.79171500e-02 -2.68487513e-01 4.86784220e-01\\n-4.51096803e-01 2.36563906e-01 -4.88459459e-03 6.66545257e-02\\n1.81141365e-02 -2.96540648e-01 2.36885384e-01 -3.87453526e-01\\n-3.62312794e-01 -1.24784864e-01 -3.31068814e-01 -1.99850261e-01\\n2.81495191e-02 -2.86687404e-01 -2.05103293e-01 1.48562342e-01\\n3.41107190e-01 9.43034887e-02 -5.29122427e-02 -1.87834129e-02\\n1.56127214e-01 -5.22367358e-01 1.59767792e-01 -2.65975177e-01\\n-1.92024186e-02 -9.14664045e-02 2.33556747e-01 4.48940955e-02\\n1.25893012e-01 -3.80189270e-01 5.29064834e-01 -3.79257649e-01\\n-3.03653628e-01 -5.98012209e-02 7.63095170e-02 -1.10951759e-01\\n2.58604735e-01 -4.86270815e-01 -2.46902625e-03 2.57016569e-01\\n5.52281328e-02 4.64873761e-02 2.46626511e-01 -1.20789148e-01\\n-1.33198872e-01 1.97786078e-01 -3.95724744e-01 1.34468943e-01\\n8.05878341e-01 1.70482650e-01 2.23702371e-01 1.55435383e-01\\n8.07280242e-02 1.66414827e-01 4.50633854e-01 6.02854006e-02\\n-4.00055386e-02 2.02548847e-01 -1.40654994e-02 -6.12739563e-01\\n-1.40906781e-01 2.99106236e-03 -3.03913206e-01 -3.85297626e-01\\n6.10250294e-01 4.19392794e-01 -3.41209680e-01 -2.83789486e-01\\n-3.43055390e-02 -6.30171224e-02 2.49566779e-01 3.96046601e-02\\n4.37033474e-02 -7.09792972e-02 6.17688596e-01 1.33136824e-01\\n2.72374123e-01 6.27636790e-01 -7.70956725e-02 -3.37699294e-01\\n-2.24497281e-02 1.04215860e-01 1.23015186e-02 4.65817928e-01\\n-1.53456241e-01 3.03762197e-01 -7.52975866e-02 4.81290258e-02\\n-1.76822886e-01 4.14056592e-02 1.54297844e-01 6.65575191e-02\\n-3.50689306e-03 1.51965484e-01 3.07770431e-01 4.46553409e-01\\n2.95417964e-01 4.33602542e-01 2.44903997e-01 8.97686277e-03\\n3.55134785e-01 5.37818611e-01 3.51399630e-01 1.69588760e-01\\n-1.28439134e-02 -3.50305741e-03 6.35744408e-02 9.70817953e-02\\n3.28252256e-01 2.32104287e-01 1.17576182e-01 8.33265483e-01\\n2.01204404e-01 2.54175752e-01 7.06625640e-01 -6.05233788e-01\\n-3.78463447e-01 3.14637050e-02 4.13594455e-01 -3.38910133e-01\\n-7.14619756e-02 -4.99815941e-02 -2.14538276e-01 2.12544665e-01\\n-5.87455273e-01 -2.92000294e-01 -1.03563458e-01 1.49492890e-01\\n3.04851145e-03 -1.55858397e-01 -2.05256075e-01 4.89827618e-02\\n-1.17417656e-01 -2.33712941e-01 -3.12006712e-01 -1.40339702e-01\\n-2.71431237e-01 -1.61594227e-01 -8.80464762e-02 -1.29857227e-01\\n3.30242398e-03 -3.17338735e-01 -1.09425105e-01 4.73867878e-02\\n3.99813056e-01 -6.35411963e-02 -1.07857376e-01 -1.17407404e-01\\n1.59771547e-01 2.19781592e-01 6.06037140e-01 -5.21835964e-03\\n4.32929322e-02 -8.84532034e-02 -1.84936315e-01 6.05457760e-02\\n1.64109558e-01 -1.76302008e-02 2.20615249e-02 4.35199469e-01\\n-3.65858197e-01 -2.10721031e-01 1.42830670e-01 2.85131961e-01\\n-4.26858008e-01 -1.72297835e-01 -9.65421721e-02 2.62670070e-01\\n1.14978068e-01 8.11369047e-02 -1.28767908e-01 1.50073841e-01\\n-2.53151804e-01 -5.65897822e-01 3.53234738e-01 -1.08609751e-01\\n-2.51548767e-01 1.47412837e-01 2.65972912e-01 1.25600129e-01\\n-2.99150169e-01 5.42248860e-02 -1.10516652e-01 3.11142594e-01\\n-4.14242372e-02 3.58103096e-01 -2.31343597e-01 -1.38978601e-01\\n-3.16997170e-01 2.78861016e-01 1.54354423e-02 2.06445649e-01\\n1.53465010e-02 3.12084377e-01 7.54139572e-02 2.84364261e-02\\n3.65073174e-01 4.29855920e-02 -1.99872911e-01 -2.62116760e-01\\n-1.56631842e-01 -2.72377610e-01 7.96584263e-02 -8.69565755e-02\\n1.27506420e-01 -3.95920098e-01 -2.01144278e-01 -2.10773960e-01\\n-9.52333510e-02 -3.58040333e-01 -4.27656509e-02 5.42212911e-02]]',\n", + " 'job_description': 'Job: Expanding and optimizing the existing data pipeline architectures of 3+’s Machine Learning projects aimed at predicting TV viewership Working closely with the Data Science team to collect requirements and use cases for onboarding new data sources Designing the architecture of a Data pipeline suiting use cases, building a data pipeline using your own design choices Supporting the Data Science team in their data gathering and data analysis projects such as - not limited to – analyzing, modeling and predicting TV viewer behavior, analyzing and optimizing TV Advertisement strategies, analyzing and optimizing Social Media exposure Enriching existing datasets such as TV schedule with additional metadata Your Profile: Bachelor or master’s degree in computer science or shortly before graduation Excellent knowledge of at least one of the following programming languages Python, R, or Ruby Good Knowledge of data structures and algorithms Experience with SQL or NoSQL databases Proficiency with Logging Systems such as Graylog or Elasticsearch Familiarity with MVC Frameworks such as Ruby on Rails Knowledge of distributed computing platforms and query interfaces such as MapReduce, Pig or/and Hive Great level of autonomy, self-managed approach to projects Dealing with critical and confidential data which requires high level of confidentiality, integrity and responsibility Written and spoken fluency is mandatory in either German or English This position offers you the chance to prove your analytical and programming skills in a fast-paced environment. The TV and media industry are data driven industries. Your results and contributions will be essential in the decision-making process. We also offer you a modern workplace with an open feedback culture and a competitive salary. Interested? Then, please apply at job(at)3plus.tv. 3 Plus TV Network AG Eva Felsberg Wagistrasse 21 8952 Schlieren Tel. +41 43 336 36 36',\n", + " 'soft_skills': '[\"Social Media\", \"Management\", \"Scheduling\", \"Integration\", \"Decision Making\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Advertisement\", \"NoSQL\", \"Elasticsearch\", \"KM Programming Language\", \"Programming (Music)\", \"Computer Science\", \"Collections\", \"Metadata\", \"Prediction\", \"Analytics\", \"Industrialization\", \"Distributed Computing\", \"Ruby (Programming Language)\", \"MapReduce\", \"Onboarding\", \"Python (Programming Language)\", \"Data Pipeline\", \"Levelling\", \"Limiter\", \"Dataset\", \"Graylog\", \"Microsoft Modern Workplace\", \"Logging (Construction)\", \"Use Case Diagram\", \"Computing Platforms\", \"Machine Learning Methods\", \"Data Science\", \"Survey Data Analysis\", \"Ruby On Rails\", \"High-Level Architecture\", \"Data Structures\", \"Algorithms\", \"Additives\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Source Data\"]',\n", + " 'languages': \"['English', 'Southern Sotho']\"},\n", + " {'company_id': '3',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.25972161e-01 1.82309926e-01 4.60240096e-01 3.88041548e-02\\n5.27822554e-01 -2.00513646e-01 3.07385270e-02 3.83118659e-01\\n8.81233513e-02 -3.35077792e-01 -3.31870243e-02 -3.11059833e-01\\n-1.40460432e-01 1.27683818e-01 -8.64985678e-03 3.43016297e-01\\n3.68590027e-01 1.36323437e-01 -1.77311301e-01 4.07873333e-01\\n1.12691619e-01 -1.01935767e-01 1.18176444e-02 8.02999854e-01\\n5.14983177e-01 1.09390533e-02 -9.28386971e-02 1.86021086e-02\\n-2.69973010e-01 -1.68353513e-01 4.47183996e-01 -4.36146222e-02\\n-1.05818823e-01 -3.45961630e-01 1.67472348e-01 7.74640739e-02\\n-2.25931183e-01 8.37413743e-02 -1.18933901e-01 9.82481018e-02\\n-4.62380052e-01 -2.33057842e-01 -1.11393016e-02 3.71388569e-02\\n-2.39295825e-01 -2.68159091e-01 9.56443623e-02 4.43644859e-02\\n8.14447030e-02 9.37325507e-02 -4.83117551e-01 2.99364716e-01\\n-2.41431952e-01 -1.92126647e-01 2.47133553e-01 5.65697193e-01\\n-3.69032025e-02 -5.38636148e-01 -4.52528417e-01 -4.23976004e-01\\n3.02578770e-02 -6.65280148e-02 8.93900543e-02 -4.17196304e-01\\n4.03923780e-01 -4.95664291e-02 -1.60344839e-02 3.26124519e-01\\n-7.66836762e-01 5.57993306e-03 -2.70500004e-01 -8.28465149e-02\\n-4.10270035e-01 -5.49467020e-02 -3.70843530e-01 -2.25932058e-03\\n-1.23264879e-01 3.71388048e-01 1.09313175e-01 1.79937452e-01\\n-2.68536717e-01 2.97999561e-01 -2.28436574e-01 4.39626038e-01\\n2.38174379e-01 2.11773112e-01 2.14993790e-01 3.42533946e-01\\n-3.90221357e-01 4.78368282e-01 1.77198201e-01 -2.72695988e-01\\n2.97895491e-01 8.05688575e-02 3.30556244e-01 -3.28749642e-02\\n1.50311276e-01 6.86438158e-02 -2.63857186e-01 2.51930207e-01\\n2.75529921e-01 -3.63178968e-01 2.85147037e-02 -7.69500658e-02\\n8.40694178e-04 7.35757574e-02 4.67434004e-02 2.34161988e-01\\n-2.43389234e-01 5.17325580e-01 1.59513518e-01 -1.49813384e-01\\n-1.62780598e-01 -4.95391697e-01 -6.07719794e-02 4.03835438e-02\\n3.63908112e-02 1.19789228e-01 2.16845468e-01 5.70448861e-02\\n2.19390929e-01 -1.67973265e-02 5.53100705e-02 8.34067106e-01\\n-4.36116643e-02 -3.59342694e-02 -2.24684000e-01 3.02282155e-01\\n1.30359948e-01 -3.43923748e-01 2.39593014e-01 2.92837113e-01\\n9.61170495e-02 -1.19641654e-01 -2.61175185e-01 3.80248010e-01\\n-8.27484280e-02 -2.14978993e-01 -2.17670843e-01 2.04866171e-01\\n4.06045988e-02 -4.70596492e-01 6.80355132e-01 5.21477051e-02\\n1.59599200e-01 -7.48544633e-02 9.12806317e-02 -1.27606601e-01\\n-9.67475325e-02 2.02053592e-01 8.97060707e-02 1.58364475e-01\\n-2.99857438e-01 -3.24041158e-01 -1.76518500e-01 1.73897550e-01\\n-4.07551467e-01 1.38561815e-01 -8.72857869e-02 -1.46169052e-01\\n2.94432759e-01 1.03343114e-01 -3.62105727e-01 2.29781941e-01\\n-2.01501116e-01 7.56594492e-03 -5.33736832e-02 4.63217854e-01\\n-1.95115134e-01 2.03369319e-01 3.49731073e-02 -2.21205391e-02\\n6.66948497e-01 3.38200182e-01 1.17670707e-01 2.31263749e-02\\n2.66580343e-01 -2.71575223e-03 2.14269355e-01 5.80774248e-02\\n-7.59289086e-01 3.65284413e-01 1.55970324e-02 -1.97686449e-01\\n5.90963326e-02 -9.50042233e-02 2.84486622e-01 -4.16169494e-01\\n-5.18031940e-02 -2.11864278e-01 -4.41584378e-01 -2.12039143e-01\\n-2.73039371e-01 1.43839624e-02 3.07349741e-01 -5.35399795e-01\\n-6.99087679e-02 3.00495446e-01 -5.63752651e-01 -2.14882940e-01\\n1.70416176e-01 3.03622931e-01 1.15070254e-01 5.40704578e-02\\n-7.48782679e-02 -6.79392278e-01 6.67964146e-02 -4.31898981e-01\\n-3.59579831e-01 -1.43316174e-02 -4.50412571e-01 2.13948086e-01\\n6.20485321e-02 4.17212211e-02 -1.09753035e-01 1.65961176e-01\\n-2.48744145e-01 -1.38504773e-01 1.11490592e-01 2.05052812e-02\\n3.02611202e-01 6.07155859e-02 -4.64979678e-01 4.30662125e-01\\n-2.81098306e-01 5.11593163e-01 1.85008258e-01 -7.57326186e-01\\n5.74034393e-01 3.37535799e-01 -9.99366492e-02 -4.42817807e-01\\n5.50441027e-01 -3.39149714e-01 -1.15464889e-01 5.64512089e-02\\n-3.20634305e-01 -3.06303531e-01 2.40475267e-01 -3.26777190e-01\\n-2.76131868e-01 4.50085253e-01 4.65395935e-02 1.02973126e-01\\n2.72129059e-01 -2.19907060e-01 -5.01147732e-02 6.58455640e-02\\n-7.29757920e-02 -2.17130125e-01 -4.91143376e-01 -3.91559079e-02\\n-3.90565358e-02 -4.26554710e-01 -8.78385678e-02 -4.46184009e-01\\n-1.93908229e-01 -4.06153977e-01 -1.88737169e-01 1.85721308e-01\\n2.46318460e-01 3.63205895e-02 1.24839339e-02 -3.16444822e-02\\n-1.89068869e-01 -6.94603801e-01 3.42434384e-02 1.10273719e-01\\n4.47300375e-01 1.93019032e-01 1.37744710e-01 -6.61570206e-02\\n1.21055312e-01 8.20595801e-01 -1.98637009e-01 -2.56368279e-01\\n1.20762415e-01 7.03201145e-02 7.16204941e-02 -1.56968191e-01\\n1.37659520e-01 3.55493516e-01 -3.32486242e-01 -4.54530641e-02\\n-1.08643413e-01 -1.61953300e-01 4.28994507e-01 -4.50886041e-03\\n-3.58219385e-01 -2.58688301e-01 -7.62887523e-02 6.36898950e-02\\n-5.80926001e-01 -1.99150175e-01 5.45143485e-01 2.65415907e-01\\n2.31855735e-01 1.17926307e-01 1.64546266e-01 -3.04037426e-02\\n-1.89089417e-01 -3.36750120e-01 2.76831359e-01 7.82701671e-02\\n6.05927221e-02 5.68566136e-02 1.70564018e-02 -6.60516083e-01\\n-3.07928133e+00 -1.36260435e-01 2.04543009e-01 -2.74991542e-01\\n1.91050038e-01 -1.05118133e-01 3.24771553e-02 -9.82534960e-02\\n-2.67867535e-01 1.35505736e-01 -1.01696119e-01 -1.93334833e-01\\n8.59103650e-02 1.48705438e-01 2.39607707e-01 1.04718499e-01\\n2.03483790e-01 -1.54805556e-01 -1.76227372e-03 3.25024307e-01\\n-1.30704090e-01 -6.79139614e-01 1.71775267e-01 -1.18264861e-01\\n3.35542530e-01 1.99890092e-01 -3.63701522e-01 -2.04560608e-01\\n-3.09739292e-01 -2.09116235e-01 1.51127940e-02 -3.46992493e-01\\n-1.23579942e-01 2.46115938e-01 1.91082001e-01 -1.80376664e-01\\n1.12678662e-01 -4.30446923e-01 -1.47436500e-01 -5.14610350e-01\\n9.26637650e-02 -5.87351799e-01 6.45765429e-03 -1.46780223e-01\\n7.23004282e-01 -3.28756422e-01 2.51842976e-01 4.21436690e-02\\n1.84404105e-01 1.31646618e-01 1.77398622e-01 -2.16096975e-02\\n-2.61649340e-01 -3.39562446e-01 -5.68366647e-02 -2.36328632e-01\\n6.20820045e-01 5.02843976e-01 -2.34211728e-01 1.68539421e-03\\n5.83029352e-02 -3.73863041e-01 -3.79948556e-01 -2.51776069e-01\\n-1.03984557e-01 -2.88192630e-01 -5.92338860e-01 -4.39090133e-01\\n-1.99536726e-01 2.05398947e-02 -2.09143851e-02 5.99308193e-01\\n-1.99688837e-01 -3.59549403e-01 3.71728390e-02 -5.83014250e-01\\n2.70767689e-01 -1.94168940e-01 7.62940794e-02 -2.17999488e-01\\n-2.01216474e-01 -5.55336356e-01 4.19292673e-02 -1.34545371e-01\\n-5.63517213e-02 -2.84844607e-01 -3.22182290e-02 -5.24639934e-02\\n-2.52541602e-01 -4.98524815e-01 4.01998371e-01 1.40139192e-01\\n3.65950167e-01 1.13092780e-01 3.14593226e-01 -7.91940540e-02\\n2.85575092e-01 -1.01126945e-02 1.27692074e-01 -4.00050700e-01\\n7.50818998e-02 6.88411221e-02 4.92206573e-01 -1.99832082e-01\\n8.79143178e-02 1.14784412e-01 -2.99478799e-01 -1.30216449e-01\\n3.41384590e-01 -1.84303466e-02 -9.10376722e-04 -2.55819317e-02\\n2.81386167e-01 -3.75699550e-01 -2.20978394e-01 5.63926548e-02\\n1.11726739e-01 6.29562736e-01 -7.38921240e-02 -3.61767173e-01\\n-1.50198326e-01 5.49922049e-01 -6.29680678e-02 3.74586135e-02\\n-7.85078034e-02 8.07458013e-02 -2.23857969e-01 2.64670968e-01\\n5.98244555e-02 -2.92934418e-01 -2.77020276e-01 -1.58345506e-01\\n3.21874022e-02 2.88698405e-01 1.94495127e-01 5.37030026e-02\\n1.69680326e-03 -4.04658556e-01 -8.22796971e-02 2.21844509e-01\\n2.03910291e-01 4.42292601e-01 8.61155540e-02 -2.13491425e-01\\n-5.57508580e-02 4.79698181e-01 -1.64071262e-01 2.69057572e-01\\n-1.97141424e-01 9.52728316e-02 -5.15679836e-01 -2.45657250e-01\\n-3.22022200e-01 -3.71634990e-01 1.93703368e-01 3.49903047e-01\\n7.76421353e-02 4.56004776e-02 2.01864983e-03 -4.83336985e-01\\n2.80215442e-01 1.12315468e-01 2.08314106e-01 1.22792087e-01\\n-8.20273906e-02 5.79760373e-01 3.24717499e-02 -5.08821942e-02\\n-2.39353120e-01 1.13580570e-01 -1.14677094e-01 -1.93785697e-01\\n1.23440668e-01 -5.38683772e-01 -1.38539299e-01 3.60751271e-01\\n1.24218032e-01 -2.41286412e-01 -1.84318155e-01 2.92224586e-01\\n-6.73509091e-02 -2.53834635e-01 -2.27760807e-01 -4.76558469e-02\\n3.96245092e-01 1.05850078e-01 2.44866207e-01 -4.22976792e-01\\n2.05802731e-02 3.16218771e-02 -1.43547226e-02 4.22730148e-01\\n-1.71101075e-02 1.29679842e-02 -1.20946005e-01 -2.43411556e-01\\n4.93974090e-01 2.66678631e-02 -9.43832770e-02 1.07316479e-01\\n1.14340901e-01 -2.69126475e-01 -4.78230238e-01 -1.83768501e-03\\n6.10399842e-02 -1.26717374e-01 1.39015108e-01 8.91534984e-02\\n6.47467896e-02 2.45339144e-02 -4.89231169e-01 -2.13751778e-01\\n-2.41733104e-01 -5.25473431e-02 8.90705511e-02 -4.27102387e-01\\n-1.28822297e-01 -8.90454352e-02 -5.10802388e-01 2.21324235e-01\\n-2.87056953e-01 -3.76962796e-02 2.15834185e-01 6.72568679e-02\\n-2.09871203e-01 -9.88579616e-02 1.56540453e-01 3.48584861e-01\\n-3.25046778e-01 -2.82673597e-01 7.45313913e-02 -1.01789093e+00\\n2.13743508e-01 4.56102900e-02 -1.55562028e-01 1.86216429e-01\\n-3.99098545e-02 -6.89056277e-01 1.72192335e-01 -4.02195692e-01\\n-5.65077178e-02 -7.54329488e-02 -2.22990453e-01 -2.01319993e-01\\n1.76147789e-01 -9.39187557e-02 -3.54897320e-01 4.24434870e-01\\n-3.25181097e-01 3.02044421e-01 -2.01269343e-01 3.35145444e-02\\n-7.22902939e-02 -1.49711028e-01 1.56923294e-01 -3.07342172e-01\\n-3.89001220e-01 -2.93077677e-01 -3.21712136e-01 -2.22281530e-01\\n6.21619113e-02 -3.82596821e-01 -5.76206334e-02 4.63966280e-02\\n5.10748148e-01 8.87594223e-02 -1.10826522e-01 -2.57768571e-01\\n1.46319307e-02 -4.75860626e-01 1.25647308e-02 -1.62303537e-01\\n-1.24252543e-01 -1.23974390e-01 1.82830751e-01 1.87634900e-01\\n1.35423243e-01 -5.11440337e-01 3.18530381e-01 -2.70976335e-01\\n-3.25612277e-01 -9.84951034e-02 5.77368364e-02 9.12609398e-02\\n3.62453222e-01 -4.62031066e-01 -4.99801338e-02 2.84197778e-01\\n1.41021430e-01 1.02387734e-01 2.26282150e-01 -2.20260210e-02\\n5.47817759e-02 2.36834422e-01 -4.02780563e-01 -3.49529125e-02\\n7.28735864e-01 6.36048317e-02 1.15245074e-01 2.95333892e-01\\n1.85252503e-01 2.47042060e-01 4.55743581e-01 -5.11097312e-02\\n-2.18262132e-02 1.85932666e-01 3.15329619e-02 -4.92577523e-01\\n-8.17644522e-02 -3.12537067e-02 -2.31141374e-01 -4.03899044e-01\\n6.45071983e-01 3.74137402e-01 -4.41730797e-01 -3.31220478e-01\\n-6.60742223e-02 -1.72294557e-01 2.29084805e-01 -3.09711043e-02\\n4.13585752e-02 -1.02447808e-01 3.47379178e-01 -8.83611515e-02\\n1.95212439e-01 6.36070848e-01 -1.72376364e-01 -3.08130860e-01\\n-1.36338130e-01 1.54107779e-01 -2.84463987e-02 4.89341855e-01\\n-3.37848395e-01 2.51304418e-01 2.76741106e-02 1.54452650e-02\\n-4.97861356e-02 2.47311175e-01 9.70601439e-02 9.09015536e-02\\n2.34690502e-01 7.73711037e-03 3.79537553e-01 5.72275221e-01\\n1.76239148e-01 4.32909101e-01 3.31621319e-01 3.40414606e-02\\n3.96334589e-01 5.77271402e-01 4.54982519e-01 1.50337741e-01\\n-3.17969918e-02 1.48689970e-01 7.57291541e-02 -1.28129736e-01\\n4.21068937e-01 3.50408405e-01 1.12657823e-01 9.19663668e-01\\n3.82002026e-01 3.76989096e-01 7.07433760e-01 -7.12125480e-01\\n-4.20664757e-01 1.46591654e-02 5.99066019e-01 -4.36608076e-01\\n6.86650351e-02 1.36931196e-01 -1.71794161e-01 3.37077260e-01\\n-4.96647477e-01 -2.04845399e-01 1.44012654e-02 3.19488980e-02\\n-4.25091246e-03 -8.02719370e-02 -2.50780493e-01 2.59769950e-02\\n-1.50735885e-01 -5.72400168e-02 -4.78805929e-01 -1.38075545e-01\\n-1.54214069e-01 -4.13403427e-03 -5.40589243e-02 -2.15688750e-01\\n1.38140293e-02 -2.37362400e-01 -5.31846620e-02 -1.01747744e-01\\n3.10975015e-01 -1.91179052e-01 -5.38796932e-03 -1.46132916e-01\\n2.99586833e-01 1.75029308e-01 5.59096694e-01 4.66897599e-02\\n1.29685640e-01 -2.11708397e-01 -2.73740321e-01 9.53275338e-02\\n1.37150571e-01 1.07840657e-01 4.53513041e-02 1.82484195e-01\\n-2.41997555e-01 -1.58939764e-01 1.47235051e-01 3.35812151e-01\\n-4.67892677e-01 2.51869555e-03 -1.16797432e-01 1.01557821e-01\\n6.62344098e-02 1.12400115e-01 -1.95465058e-01 -5.14276363e-02\\n-1.72580302e-01 -4.18463498e-01 3.72841954e-01 -1.69517606e-01\\n-2.11953759e-01 5.89743443e-02 3.09473425e-01 1.87666088e-01\\n-3.02863181e-01 -8.14485699e-02 -1.68710276e-01 1.27660379e-01\\n1.31128252e-01 2.06666306e-01 -1.34282395e-01 -3.07062209e-01\\n-3.01935047e-01 6.54495880e-02 -1.54230207e-01 9.62111428e-02\\n4.46040519e-02 4.56519783e-01 -3.60696353e-02 -6.11511432e-02\\n4.58282471e-01 3.95893641e-02 -3.27029467e-01 -1.56432047e-01\\n-2.33172983e-01 -1.71896622e-01 1.05248708e-02 -2.92119868e-02\\n1.34704441e-01 -4.27240282e-01 -9.03581455e-02 -1.77082211e-01\\n-3.39127742e-02 -3.07589471e-01 3.26588051e-03 -1.20717153e-01]]',\n", + " 'job_description': \"42matters.com is a Swiss company operating in the mobile app space. We offer a full suite of products and services for App Market Data and Mobile App Intelligence. Bringing a unique combination of technical and business skills together, we provide our customers with a thorough analysis of the latest developments on the app stores and mobile industry. We are a truly international team, with an innovative and fast-paced company culture. As a Data Engineer, you are someone who is passionate about processing large data sets. You will be responsible for building and maintaining data pipelines to support our products and our Data Science team. You will contribute to the entire stack, working with DevOps on maintenance and tuning, alongside collaborating with Data Scientists to build applications and algorithms. To thrive as a member of team 42matters, you must embrace our exciting work-hard, play-hard environment. We're not afraid to move fast and break things as we release, launch, iterate, update and announce; sometimes all in the same day. We're a closely-knit team and, especially at the end of a long day over beers, we feel like we're inventing the future together. Job type: Full-time Location: Zurich Starting date: As soon as possible RESPONSIBILITIES Write data pipelines to extract, transform and load (ETL) data automatically, using a variety of traditional as well as large-scale distributed technologies. Extend and optimize the current system by making the enormous amounts of data accessible for both our data scientists and our products. Help to build a reliable, sustainable and scalable data infrastructure. Requirements 3+ years of work experience as a Data Engineer. Strong experience with big data technologies on Amazon Web Services (e.g. Redshift, EC2, MapReduce, Spark). Strong knowledge of Python programming language. Familiar working with relational data stores (e.g. PostgreSQL, Redshift). Good abilities in DevOps. Fluent English. Ability to work autonomously but also be a strong team player. Self-motivated, team player comfortable in a small, intense and high-growth start-up environment. PREFERRED QUALIFICATIONS Strong educational background: Bachelor/Master degree in CS or other technical/science/math field Proficiency in more than one programming language (Java, Python, Bash). Strong SQL skills and the ability to write and analyze complex SQL queries. Experience designing data models and data warehouses. Ability to identify and resolve performance issues. \",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Writing\", \"Collaboration\", \"Operations\", \"Team Motivation\", \"Reliability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Accessioning\", \"KM Programming Language\", \"Sustainability\", \"Data Modeling\", \"Data Engineering\", \"Industrialization\", \"Scale (Map)\", \"Mobile App\", \"MapReduce\", \"PostgreSQL\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Data Pipeline\", \"Iterators\", \"Extract Transform Load (ETL)\", \"Mobility\", \"Minimum Data Set\", \"App Store (IOS)\", \"Data Science\", \"Web Services\", \"Bash (Scripting Language)\", \"Big Data\", \"Amazon Web Services\", \"Data Store\", \"Clinical Data Warehouse\", \"Data Infrastructure\", \"Experience Design\", \"Algorithms\", \"Amazon Data Pipeline\", \"Market Data\", \"Amazon Redshift\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Aymara']\"},\n", + " {'company_id': '115',\n", + " 'job_title': 'software engineer iptiq emea l&h',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Agencies & Brokerages',\n", + " 'website': 'www.swissre.com',\n", + " 'jobdescription_embedded': '[[-0.16013445 0.22569531 0.6324923 0.0093284 0.5381161 -0.15063666\\n0.02804223 0.22192875 0.0804841 -0.5566739 -0.05377465 -0.22114146\\n-0.0635557 0.15569699 0.07420799 0.4024698 0.35071748 0.04559055\\n-0.17357785 0.36030537 -0.05258026 -0.13976526 0.17141452 0.8126224\\n0.39405257 -0.05420893 0.02658164 0.0669645 -0.18605134 -0.16940922\\n0.61019754 0.04421813 -0.26045662 -0.49868867 0.14402446 0.1133811\\n-0.3265548 -0.07206324 -0.19434878 0.1366287 -0.5640813 -0.20671928\\n-0.00484867 -0.11940594 -0.2566663 -0.4276902 -0.09391475 -0.12914988\\n0.21712852 0.09122949 -0.5167943 0.13234454 -0.43572438 -0.18555266\\n0.3473823 0.64281857 -0.01877485 -0.51746744 -0.58717346 -0.31216794\\n0.05296207 -0.14169925 0.04470246 -0.3586021 0.20672527 0.00513785\\n-0.06634439 0.32732528 -0.78683954 -0.10825328 -0.3622216 -0.12849367\\n-0.39812824 -0.13340186 -0.39907455 -0.10162166 -0.24909116 0.43582568\\n0.132881 0.05161656 -0.17402288 0.3722129 -0.34263194 0.48173034\\n0.28077042 0.26178318 0.2645293 0.407089 -0.39901644 0.60142374\\n0.28084603 -0.39879245 0.2519967 0.14626864 0.35663164 0.0199902\\n0.3638214 0.05232989 -0.21968359 0.35149288 0.37217534 -0.1669535\\n-0.05630765 -0.30762923 0.00977344 -0.01739726 0.05714284 0.09921033\\n-0.3436755 0.35215402 0.07392196 -0.2615611 -0.20392063 -0.38403392\\n-0.12568156 0.1104831 -0.03981927 0.130726 0.15037507 0.09968171\\n0.2939635 0.05092125 0.0480513 0.8383652 -0.06602217 -0.00972072\\n-0.3147748 0.41917026 0.09688261 -0.25703558 0.22176698 0.17896798\\n-0.21078846 -0.18107401 -0.29519355 0.42146087 0.00450771 -0.22707087\\n-0.27705064 0.23537846 0.02504312 -0.40808925 0.653803 0.00907745\\n0.17120449 -0.0867567 0.14699079 -0.06369095 -0.01400576 0.06371022\\n0.09028128 0.02925777 -0.15305611 -0.24966249 -0.2782688 0.15637854\\n-0.35522842 0.25771683 -0.20717666 -0.09271187 0.1781751 0.03062406\\n-0.2981939 0.18425421 -0.12160124 0.05446175 0.06502359 0.48255816\\n-0.21363288 0.08157681 0.05503492 -0.16622514 0.5736625 0.17721191\\n0.26463193 0.03931585 0.30628657 0.03197074 0.03622271 0.10854442\\n-0.77321416 0.3573644 -0.02368134 -0.09357305 0.06378625 -0.23908003\\n0.15491968 -0.2522272 -0.14073934 -0.09421994 -0.43916798 -0.2532613\\n-0.06951328 -0.21427104 0.3185327 -0.64268804 -0.06692332 0.20854887\\n-0.6760795 -0.16730264 0.15824308 0.30428874 0.03057984 0.09509704\\n-0.22778475 -0.49636096 0.06770271 -0.49541703 -0.30820942 0.12206858\\n-0.3004557 0.09221523 0.09849553 0.04281051 -0.10593906 0.01366595\\n-0.19553773 -0.03658759 0.09230068 0.01350832 0.24786624 0.12695242\\n-0.32523236 0.4795437 -0.21530142 0.48865807 0.06208376 -1.0141566\\n0.6021327 0.31790122 -0.06770398 -0.29719913 0.41510794 -0.3965518\\n-0.05750413 0.12294842 -0.3778852 -0.2775185 0.15396163 -0.28327\\n-0.24703422 0.34905678 -0.01761276 0.13682309 0.30852357 -0.21486424\\n-0.243568 -0.01676573 -0.14107007 -0.22038767 -0.7448733 -0.14908151\\n-0.12331474 -0.3887121 -0.12026404 -0.54146755 -0.1858001 -0.33976147\\n-0.25853744 0.09848069 0.16770257 0.0632818 -0.0815158 0.09296314\\n-0.09039203 -0.68518585 -0.06439137 0.1128249 0.22259352 0.18818715\\n0.11566081 0.06957845 0.07998963 0.66875434 -0.18705809 -0.1860685\\n0.24124813 0.28704306 0.00799356 -0.10846223 0.09541228 0.33870882\\n-0.3641743 -0.01941412 0.10707999 0.06003562 0.5392841 -0.07175145\\n-0.42407453 -0.01981154 -0.07469543 0.10141239 -0.64646316 -0.1165273\\n0.69823015 0.1545197 0.10505688 0.2405594 0.08883108 -0.03347543\\n-0.25282767 -0.19056109 0.4210915 0.12550277 0.14556864 0.18055618\\n0.05195802 -0.6311406 -3.081627 -0.1283467 0.11716287 -0.07776258\\n0.24527021 -0.20968121 0.13600793 -0.20074566 -0.31327087 0.01506016\\n-0.05316637 -0.17916 0.18526715 0.11917259 0.02193177 0.28071046\\n0.25740469 -0.1015265 0.05021273 0.26707208 -0.12241758 -0.81380516\\n0.1583159 0.00816396 0.17814791 0.05138441 -0.37223655 -0.13103151\\n-0.35106757 -0.10924783 0.07986216 -0.40065467 -0.08894084 0.13866593\\n0.22593346 -0.15557577 0.08142647 -0.42611378 -0.2775317 -0.53003216\\n0.20126998 -0.51322544 0.17369011 -0.09812284 0.61196804 -0.34422588\\n0.17633726 0.10492297 0.15324688 0.22975972 0.23025535 0.05007998\\n-0.24972597 -0.33091235 -0.1701434 -0.10267623 0.61977315 0.36141425\\n-0.10096284 0.10670355 0.05966059 -0.2331739 -0.5349126 -0.22021344\\n-0.04346237 -0.08657146 -0.6467296 -0.51393414 -0.24589428 -0.12970239\\n-0.08622187 0.6962105 -0.26699084 -0.20531073 -0.1463249 -0.5831491\\n0.4802823 -0.19844246 0.06776978 -0.29828995 -0.17425182 -0.5371694\\n0.13849473 0.04670556 0.02974892 -0.16454256 0.19963542 -0.02383537\\n-0.2708159 -0.5471761 0.3928965 0.2516849 0.3171095 0.12576966\\n0.24436723 -0.12214725 0.22957903 0.01402971 -0.21181291 -0.37168694\\n0.0811003 0.07606825 0.3674984 -0.05019451 -0.09716113 0.1549606\\n-0.2530123 -0.1372352 0.3550142 -0.14896688 0.10341606 -0.12537394\\n0.2873585 -0.23056783 -0.17599878 -0.0532253 0.06095642 0.6800467\\n0.06081703 -0.43761712 0.03754508 0.54194343 0.08056065 0.03575584\\n-0.23201953 0.04096289 -0.22721481 0.34851074 0.01121191 -0.22587857\\n-0.17866373 -0.19733056 -0.13480324 0.345998 0.21853667 0.12043013\\n0.02644263 -0.31951317 -0.14485547 0.24324805 0.19145188 0.54552203\\n0.24733266 -0.2751147 0.04460098 0.35668653 -0.21056437 0.23678058\\n-0.34104759 0.14459226 -0.5142007 -0.21468142 -0.2582834 -0.4393332\\n0.15578938 0.36023808 0.0912687 -0.15416221 0.0912361 -0.5028437\\n0.24647024 0.31486398 0.13142335 0.18981326 -0.01143549 0.82554036\\n-0.02524091 -0.2450667 -0.1700413 -0.01808267 -0.22026308 -0.19436356\\n0.0131777 -0.6058825 -0.08199731 0.39627188 0.10237826 -0.21943909\\n-0.23501423 0.32967526 -0.00364209 -0.12037507 -0.3365658 -0.04569908\\n0.43356857 0.04168545 0.27158183 -0.5670419 -0.01895915 -0.02852984\\n0.10061146 0.6469649 0.11711884 0.08525299 -0.16700143 -0.24209073\\n0.33992875 -0.11298209 -0.20078577 0.05365457 0.1889652 -0.05202819\\n-0.3996982 0.10855186 -0.1001902 -0.2913378 0.05911896 0.2432932\\n0.01971641 0.14239292 -0.6830838 -0.3055412 -0.25487846 0.16684622\\n-0.00665429 -0.59992397 -0.01541862 -0.14597997 -0.45903403 0.2310698\\n-0.04988953 -0.30240905 0.2864958 0.13950919 -0.3069916 -0.10557632\\n0.1367812 0.22697711 -0.30555403 -0.2837118 -0.11507441 -0.95683044\\n0.28167176 0.07258306 -0.25268692 0.27544135 -0.03730151 -0.7137953\\n0.10189239 -0.3025553 -0.20895764 0.0165339 -0.26404715 -0.36059865\\n0.06258297 -0.01737979 -0.15570256 0.43387073 -0.38439894 0.4781201\\n-0.2735098 0.0352231 0.02533549 -0.31223714 0.17834967 -0.43766588\\n-0.39671534 -0.2996428 -0.36842722 -0.34175605 -0.01124634 -0.44870952\\n-0.09127378 -0.06817497 0.56492937 0.13606751 -0.1400832 -0.19298841\\n0.0139726 -0.44665563 0.04117493 -0.14176124 -0.09738734 -0.19947115\\n0.21778451 0.13756384 0.28400087 -0.47293845 0.3367325 -0.33220202\\n-0.34243086 -0.23844784 0.09158944 0.2176717 0.36617756 -0.47864392\\n-0.01937048 0.28571653 0.17911117 -0.02081473 0.27840793 -0.17211673\\n-0.01493381 0.27509218 -0.30517408 0.24044263 0.6775731 0.08980174\\n0.2403217 0.27485448 0.26281542 0.29313517 0.42540127 -0.00516532\\n-0.03439115 0.28897023 0.12682307 -0.41001284 -0.069356 -0.0820428\\n-0.08815394 -0.38286322 0.7096766 0.40364543 -0.42673922 -0.11556775\\n-0.2956983 -0.3125646 0.13663779 -0.05662314 -0.10298808 0.05792071\\n0.38164866 -0.14711449 0.2562728 0.62503755 -0.36950028 -0.27002478\\n-0.16774127 0.30325148 -0.01144586 0.44140142 -0.2789078 0.40553102\\n0.09945858 0.13423295 -0.1858715 0.03612029 0.06808963 0.12924291\\n0.30012578 -0.06560097 0.4541993 0.4227412 0.32304925 0.38507473\\n0.34188455 0.08855829 0.5232739 0.6083925 0.44842845 0.11167987\\n0.10293694 0.07394881 0.15695551 0.03637059 0.2800699 0.5044471\\n0.01594558 0.8973056 0.32786474 0.29364562 0.6607263 -0.7320093\\n-0.3230073 -0.02565218 0.4902855 -0.41587403 0.1842958 0.23208293\\n-0.18154085 0.28503093 -0.37801886 -0.26306102 0.07145222 0.27663648\\n0.08543089 -0.19616826 -0.13253435 0.12097526 -0.2487054 -0.14608598\\n-0.36596775 -0.06776987 -0.29512188 -0.01710189 -0.04259263 -0.16281095\\n-0.04752951 -0.2427069 -0.0629724 -0.02904047 0.3292541 -0.11305804\\n-0.10725418 -0.09259688 0.2707351 0.03973428 0.5765066 0.05632727\\n0.07062726 -0.20020807 -0.19021964 0.15924925 0.16616696 0.10787661\\n0.02068041 0.32434893 -0.20018832 -0.23230952 0.27139422 0.28753123\\n-0.3172104 -0.02308438 -0.21542422 0.12829441 -0.02174878 0.22059989\\n-0.22172804 -0.11814848 -0.10398397 -0.50562686 0.39507186 -0.29421997\\n-0.15330392 -0.08005292 0.29164767 0.3118668 -0.28548992 0.05173009\\n-0.06569502 0.08745544 0.13454048 0.24019808 -0.24229437 -0.16081002\\n-0.23639451 0.13946804 -0.12286778 0.21028614 0.19049786 0.39571697\\n0.22189674 0.0309509 0.40308183 -0.05175998 -0.22418468 -0.18241107\\n-0.27678344 -0.04288498 -0.08565736 -0.15285426 0.18129054 -0.36927295\\n-0.1356483 -0.233388 -0.0831958 -0.41842946 -0.08858338 -0.03124702]]',\n", + " 'job_description': 'About iptiQ

Become a part of a growing and dynamic entrepreneurial team within the established Swiss Re Group. iptiQ is a start-up unit, established to provide innovative protection solutions directly to consumers. Our team delivers the coordination, infrastructure and competences that are key to driving forward this new business; working closely with our partners and clients. Our mission is to reduce the protection gap by simplifying life insurance and making it more accessible to people. Our motto is \"now life is easier for everyone\". For us this means making life insurance easier to sell, to buy and to trust. About the Role You will join a team of software engineers for the technology platform within the iptiQ EMEA Technology & Operations department. This is a rare opportunity to join a new business unit within an established company; combining the dynamic spirit of a startup with the backing of Swiss Re\\'s strong organisation. As a software engineer, you will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a distributed infrastructure by designing, implementing and testing simple, scalable, reliable and configurable solutions. Your responsibilities include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability Optimise applications and components to maximize configurability, speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications End-to-end responsibility on the applications implemented, including automated testing, monitoring, identifying issues or bottlenecks and delivering improvements of the platform We are looking forward to working with you as a software engineer. You will report directly to the Head of Digital Innovation of iptiQ EMEA. About the Team iptiQ is a unit within the newly built Swiss Re Life Capital; established to deliver white-label life insurance solutions to be sold through partners, directly to consumers. iptiQ is young, motivated and technology driven team, organised to provide creative solutions for life insurance distributors across Europe that engage with consumers in non-traditional ways. Through our strong operational infrastructure, creative thinking, insurance know-how and ecommerce competences we want to drive the digitalization of the life insurance business in Europe. About you Qualifications: Proven software development capabilities, i.e. 5+ years hands-on experience as a full-stack developer. Experienced in the following languages and frameworks: Mandatory: Enterprise Java Desirable: JavaScript, TypeScript, Docker, React Optional: Camunda, Kafka, RestAssured, WireMock, OpenShift, AWS Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality over time You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience in the design of data-models for relational and NoSQL data stores Experience in test-drive-development (TDD) and in the automated testing of APIs and user interfaces About you: Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Open to pair programming and XP techniques Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long-term vision the adoption of new technologies Master’s degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re',\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Leadership\", \"Coordinating\", \"Collaboration\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Camunda\", \"Performance Improvement\", \"OpenShift\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Accessioning\", \"Computer Science\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Automated Testing Framework\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"TypeScript\", \"Scale (Map)\", \"New Business Development\", \"Wiremock\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Test Automation\", \"Library\", \"Iterators\", \"Software Engineering\", \"Micro Channel Architecture\", \"React.js\", \"Message Passing\", \"Docker (Software)\", \"Concurrent Versions System (Software)\", \"Business Process\", \"Life Insurance Sales\", \"Equalization\", \"Digitization\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Scalability\", \"Information Technology Operations\", \"White Labelling\", \"Software Development\", \"Algorithms\", \"Java Enterprise Edition\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Pair Programming\", \"User Interface\", \"RESTful API\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '97',\n", + " 'job_title': 'paid internship in information technology - data scientist -switzerland, 6 months (m/f)',\n", + " 'location': 'Geneva',\n", + " 'industry': '',\n", + " 'website': 'www.pg.com',\n", + " 'jobdescription_embedded': '[[-1.46625876e-01 2.97089696e-01 5.98815024e-01 5.52584045e-02\\n6.63380027e-01 5.05736098e-03 4.31522243e-02 2.83696324e-01\\n5.46164811e-05 -3.58041972e-01 1.07462779e-02 -2.28334308e-01\\n-3.17019373e-02 2.05632702e-01 1.95266500e-01 5.14388084e-01\\n2.72215247e-01 6.76571280e-02 -1.62535056e-01 4.03577745e-01\\n8.36891234e-02 -1.76670998e-01 1.46190464e-01 7.74135113e-01\\n5.82006931e-01 1.19468421e-02 -1.48957238e-01 3.10910121e-02\\n-2.50926822e-01 -2.35392228e-01 4.49550807e-01 1.04054168e-01\\n-2.38533258e-01 -3.36627632e-01 1.50475189e-01 7.38798529e-02\\n-3.67153525e-01 -7.34119341e-02 -1.45952046e-01 2.00175762e-01\\n-4.50292140e-01 -2.15128899e-01 -9.07714441e-02 2.74249017e-02\\n-3.05803537e-01 -3.77696753e-01 -1.83832064e-01 -4.45742644e-02\\n2.35005468e-02 7.14937001e-02 -3.84729803e-01 3.83611172e-01\\n-9.96154994e-02 -3.55441809e-01 1.70554936e-01 7.75690913e-01\\n3.60512547e-02 -3.82699996e-01 -4.66619432e-01 -3.58019590e-01\\n5.00244498e-02 -1.18224978e-01 2.10219175e-01 -2.97615707e-01\\n2.49363601e-01 -6.19977452e-02 9.08441190e-03 2.49283105e-01\\n-7.74306417e-01 -8.10025558e-02 -3.50942314e-01 -3.44854370e-02\\n-2.63833225e-01 4.28281724e-04 -4.77425992e-01 -1.77426815e-01\\n-4.91471179e-02 4.59216475e-01 1.73763677e-01 8.12058672e-02\\n-1.47140831e-01 1.75030917e-01 -2.15033948e-01 2.82546192e-01\\n1.45197511e-01 3.42268765e-01 2.76879787e-01 3.44273150e-01\\n-3.22444350e-01 3.64846021e-01 2.07499027e-01 -3.66537750e-01\\n3.12495232e-01 1.94600195e-01 4.33068842e-01 -2.06331871e-02\\n1.31348819e-01 9.49978679e-02 -2.88555801e-01 2.75159001e-01\\n1.73106253e-01 -3.75627130e-01 1.27045780e-01 -6.62551075e-02\\n-5.30463196e-02 8.75604525e-03 1.43937515e-02 6.98049143e-02\\n-3.27641428e-01 4.67955828e-01 -2.47577261e-02 -2.06768572e-01\\n-1.28039673e-01 -4.07353073e-01 -6.75275698e-02 -1.35964155e-02\\n-2.02514641e-02 3.33678365e-01 2.09505290e-01 1.76706225e-01\\n9.33874995e-02 -1.10308509e-02 1.15899965e-01 7.80142188e-01\\n-3.72556597e-02 8.78705978e-02 -2.43952289e-01 2.38540158e-01\\n2.13185579e-01 -2.48349726e-01 2.22224861e-01 1.78140461e-01\\n-4.17644083e-02 -1.19771257e-01 -2.71934420e-01 2.26071075e-01\\n-3.93532291e-02 -2.98456430e-01 -1.22461766e-01 2.15724915e-01\\n-3.12453546e-02 -5.93349516e-01 6.23180211e-01 -6.00920711e-03\\n1.74817964e-01 -1.53801233e-01 -8.74667987e-03 -7.88041055e-02\\n-3.92587446e-02 1.78148687e-01 5.46641387e-02 2.29622722e-01\\n-2.64808416e-01 -2.60687411e-01 -1.93305671e-01 1.11035876e-01\\n-5.14232397e-01 1.31877095e-01 -9.71325934e-02 -5.85907474e-02\\n1.97940797e-01 9.89877284e-02 -3.39746445e-01 2.64409065e-01\\n-1.99533522e-01 -1.75205648e-01 5.06825671e-02 4.54981089e-01\\n-2.98453212e-01 1.73153609e-01 3.02604809e-02 -1.45189315e-01\\n5.76241016e-01 2.69048870e-01 2.98345447e-01 5.83518222e-02\\n3.04198146e-01 -5.25966510e-02 9.29361507e-02 1.93861246e-01\\n-5.72419167e-01 3.68082583e-01 -1.84971407e-01 -2.90293515e-01\\n5.90719581e-02 -1.57388046e-01 3.55120540e-01 -2.30196908e-01\\n1.07912645e-01 -1.03712857e-01 -2.83419400e-01 -2.50865996e-01\\n-8.93106982e-02 8.74926895e-03 3.41615915e-01 -5.10797858e-01\\n3.15235667e-02 2.08735704e-01 -4.91805196e-01 -1.11982219e-01\\n1.20349154e-01 1.47516891e-01 8.50317720e-03 6.21916428e-02\\n-1.49881989e-01 -5.08829892e-01 -8.51720572e-03 -4.26416397e-01\\n-2.44404584e-01 5.41032106e-02 -3.79858851e-01 1.46746904e-01\\n8.54083821e-02 -7.63888843e-03 -1.31499872e-01 -1.75580662e-02\\n-2.43993342e-01 2.91733705e-02 4.59788516e-02 4.37083542e-02\\n1.94412410e-01 1.02460295e-01 -3.46118927e-01 4.83212531e-01\\n-2.63057172e-01 5.13956189e-01 1.93336755e-01 -9.28895354e-01\\n4.58037764e-01 1.99196383e-01 -2.73814946e-02 -3.12786549e-01\\n5.66497087e-01 -4.03608382e-01 -5.83759993e-02 2.07428142e-01\\n-2.47247845e-01 -2.88090110e-01 1.97575137e-01 -2.42127806e-01\\n-2.56387502e-01 4.97271359e-01 1.24795869e-01 1.70185894e-01\\n2.17580035e-01 -1.30556300e-01 -1.13175049e-01 9.42278802e-02\\n-2.03288078e-01 -2.46712834e-01 -6.38752759e-01 5.88763282e-02\\n-9.35888365e-02 -3.85042250e-01 -4.00742963e-02 -4.26307529e-01\\n-1.89873621e-01 -4.25766468e-01 -1.52606875e-01 1.03556961e-01\\n3.27954054e-01 1.92350075e-01 -3.72943953e-02 -1.26396656e-01\\n-3.67903337e-02 -6.43004119e-01 -1.35628700e-01 1.07975513e-01\\n4.16285336e-01 1.96093351e-01 1.97558045e-01 -4.68288623e-02\\n2.13901460e-01 6.62105620e-01 -2.02041864e-01 -3.02116960e-01\\n1.94451243e-01 1.33849382e-01 -1.59646291e-02 -1.56211421e-01\\n1.29034147e-01 2.59791553e-01 -2.90636390e-01 7.41391554e-02\\n-4.86015007e-02 4.76026535e-02 3.81776571e-01 1.57405958e-02\\n-2.13094845e-01 -2.35063344e-01 -5.05603068e-02 1.80122048e-01\\n-5.30554771e-01 -2.05156893e-01 6.16245389e-01 6.68901131e-02\\n9.75368321e-02 6.81096315e-02 3.40779871e-02 -1.02391634e-02\\n-1.38622478e-01 -1.73848212e-01 2.88696051e-01 7.95263499e-02\\n1.93889961e-01 1.01825446e-01 8.15253332e-02 -5.93242049e-01\\n-3.59176254e+00 -2.48596728e-01 3.81323993e-02 -1.66917682e-01\\n2.47269541e-01 -2.57904112e-01 8.75673071e-02 2.83037685e-02\\n-3.33868563e-01 1.42402589e-01 -2.11599514e-01 -2.06320465e-01\\n4.32894640e-02 1.23296291e-01 1.65230855e-01 1.99653119e-01\\n1.76120371e-01 -2.06816360e-01 -5.53095788e-02 5.16425669e-01\\n-1.50242686e-01 -6.90240443e-01 1.67507827e-01 7.63816684e-02\\n2.93795586e-01 1.34509757e-01 -3.26899260e-01 -1.29727662e-01\\n-3.15243065e-01 -1.80568129e-01 3.68714780e-02 -2.64436841e-01\\n-1.99155122e-01 3.90549362e-01 1.89543426e-01 -6.54361248e-02\\n1.08399168e-01 -3.96811515e-01 -9.94347185e-02 -3.82092357e-01\\n4.89588119e-02 -6.64116263e-01 -9.30344388e-02 -8.53366628e-02\\n7.15531588e-01 -1.71126708e-01 2.34689236e-01 1.68843389e-01\\n1.12720951e-01 1.33092115e-02 9.35156569e-02 -3.94485667e-02\\n-1.67037755e-01 -2.84408867e-01 -3.53569612e-02 -1.43924683e-01\\n5.60148001e-01 4.11696374e-01 -1.35116488e-01 -1.00722071e-02\\n1.24426112e-01 -1.34410173e-01 -5.08586526e-01 -3.38261008e-01\\n-1.67830929e-01 -1.66109636e-01 -7.41971791e-01 -5.14543295e-01\\n-1.54742867e-01 -1.34314358e-01 -1.57274857e-01 5.45019209e-01\\n-1.79529369e-01 -2.11379528e-01 -1.31653517e-01 -3.18932980e-01\\n3.24488401e-01 -4.58307452e-02 -5.60571104e-02 -1.34983733e-01\\n-2.93032020e-01 -5.28362989e-01 9.22956765e-02 4.87315357e-02\\n-1.90210760e-01 -2.72065759e-01 9.48319808e-02 -1.26954779e-01\\n-4.29644823e-01 -4.69773948e-01 4.69080836e-01 3.71185131e-02\\n2.59852260e-01 1.48498118e-01 3.88921678e-01 -1.08408919e-02\\n3.13204467e-01 -1.18586823e-01 -9.79972631e-03 -4.50827777e-01\\n2.70048492e-02 5.20006120e-02 4.35374081e-01 -2.35581741e-01\\n3.45722511e-02 -1.87900849e-02 -1.83354601e-01 -1.13277789e-03\\n3.81821930e-01 -7.77769387e-02 7.91429132e-02 4.24028225e-02\\n1.55009419e-01 -2.18639731e-01 -9.75505710e-02 4.69379090e-02\\n6.96843788e-02 6.49002552e-01 1.85191315e-02 -3.12850684e-01\\n-1.52622640e-01 3.64467859e-01 -1.74426585e-01 -7.59934541e-03\\n-2.29537308e-01 7.09246397e-02 -2.09646523e-01 3.93172234e-01\\n-1.50768962e-02 -1.90625027e-01 -2.19742730e-01 -2.31166974e-01\\n-1.20229721e-01 2.34180376e-01 3.71145666e-01 7.69891292e-02\\n-6.66841120e-02 -4.48181182e-01 -9.69401672e-02 2.09734321e-01\\n4.07551467e-01 3.46975744e-01 2.39197850e-01 -1.74763530e-01\\n-8.08972791e-02 2.39324912e-01 -2.75705546e-01 2.01958671e-01\\n-2.81147182e-01 9.61922407e-02 -6.47115350e-01 -3.07859242e-01\\n-2.92454481e-01 -3.65987003e-01 2.27803126e-01 4.46995854e-01\\n1.73977375e-01 -8.16863850e-02 1.17244929e-01 -4.70234692e-01\\n2.76065588e-01 5.64550841e-03 1.32812575e-01 6.18906617e-02\\n-1.31162271e-01 6.62208438e-01 -1.61584467e-05 -1.75784975e-01\\n-8.30981582e-02 2.02771183e-02 -2.29303136e-01 -1.55026212e-01\\n-1.04611188e-01 -5.42949975e-01 -1.52880341e-01 3.01126301e-01\\n2.12495103e-01 -2.83316851e-01 -2.26651222e-01 2.04502329e-01\\n-4.88832891e-02 -3.02814096e-01 -2.27337599e-01 -5.23123033e-02\\n4.16536510e-01 8.34350139e-02 2.82918096e-01 -5.33548594e-01\\n4.04903665e-02 -2.21000016e-02 -5.96635342e-02 4.77883399e-01\\n-1.15390830e-02 9.95267630e-02 8.45957268e-03 -1.07848123e-01\\n4.71558869e-01 2.66339630e-02 -1.21857315e-01 8.48133415e-02\\n8.04677680e-02 -2.62561500e-01 -3.85840058e-01 1.08799823e-02\\n7.25580901e-02 -3.01310390e-01 -1.01090008e-02 2.47946113e-01\\n-3.82981636e-02 8.68202746e-03 -5.66247344e-01 -2.37429291e-01\\n-3.27022493e-01 -8.59834254e-02 -8.01572762e-03 -5.54027140e-01\\n-1.54837817e-01 -1.06725030e-01 -5.16012490e-01 2.16088504e-01\\n-2.49270927e-02 -1.53991118e-01 9.96070877e-02 5.65100461e-02\\n-1.35449141e-01 -1.44496113e-01 1.98386222e-01 2.46859506e-01\\n-2.70817250e-01 -2.85278678e-01 3.21337394e-02 -8.64739776e-01\\n1.92481965e-01 1.58444226e-01 -1.06236815e-01 1.45081952e-01\\n-9.26926211e-02 -5.58218122e-01 1.55765414e-01 -4.11275804e-01\\n-1.17287561e-01 -1.42168880e-01 -2.97917366e-01 -4.38430250e-01\\n1.23975128e-01 1.14716120e-01 -2.57658035e-01 4.46679115e-01\\n-3.03191781e-01 3.25460553e-01 -9.80649516e-02 8.86136442e-02\\n7.36139566e-02 -2.16459244e-01 1.51887894e-01 -3.78057718e-01\\n-3.78298789e-01 -1.50157705e-01 -2.87086487e-01 -2.09018663e-01\\n-1.31245881e-01 -1.72453046e-01 -1.40407562e-01 4.29235771e-02\\n3.61408472e-01 2.22641379e-01 -1.67668447e-01 -3.22013438e-01\\n4.70559187e-02 -4.42969680e-01 8.78485888e-02 -8.26380402e-02\\n-1.44174933e-01 -1.02946624e-01 1.53302610e-01 6.86193258e-02\\n1.73456222e-01 -2.84451038e-01 3.90342325e-01 -4.53755200e-01\\n-1.99048325e-01 -1.58408299e-01 4.78072539e-02 5.20601347e-02\\n2.36808002e-01 -4.37245131e-01 2.40360387e-02 3.00536931e-01\\n1.04633503e-01 1.85837209e-01 3.52854908e-01 -1.19050696e-01\\n-1.11401640e-01 2.57135093e-01 -3.34527433e-01 1.61557928e-01\\n8.68196130e-01 1.19382471e-01 1.33350745e-01 2.42692173e-01\\n2.13040769e-01 2.20479786e-01 4.49616879e-01 2.50931010e-02\\n-9.78141949e-02 3.40593398e-01 1.26733139e-01 -4.30560350e-01\\n-6.33596629e-02 -8.00765455e-02 -9.54978541e-02 -3.31881583e-01\\n7.45690346e-01 3.20768327e-01 -3.01714629e-01 -2.01066017e-01\\n-2.35518783e-01 -1.19151413e-01 2.28711292e-01 -3.36469971e-02\\n-2.03638170e-02 1.68020818e-02 4.72643465e-01 -1.11908972e-01\\n2.39745766e-01 5.13241053e-01 -2.08051294e-01 -2.39870399e-01\\n-1.21385135e-01 2.08733857e-01 6.87775910e-02 5.58869839e-01\\n-3.44918430e-01 3.11169803e-01 2.14506872e-02 8.84221196e-02\\n-1.77302390e-01 1.18435226e-01 2.28702664e-01 1.35135904e-01\\n1.52885109e-01 1.33021683e-01 4.85519469e-01 4.08172131e-01\\n2.55011618e-01 4.62241113e-01 3.77689481e-01 9.35338810e-03\\n3.93570542e-01 4.95040715e-01 2.62960136e-01 4.06806581e-02\\n1.72233656e-02 1.14742205e-01 1.69294789e-01 -1.04481116e-01\\n2.74797320e-01 4.19516504e-01 3.12785879e-02 8.27302694e-01\\n3.53839278e-01 3.36508811e-01 6.71891451e-01 -7.20949709e-01\\n-3.90495062e-01 -1.35154407e-02 6.23018861e-01 -3.08391839e-01\\n6.83952495e-02 2.25676432e-01 -1.19365104e-01 2.58398116e-01\\n-5.16853809e-01 -2.27873415e-01 -8.28940421e-02 3.38437445e-02\\n2.53287069e-02 -1.43886864e-01 -2.09054083e-01 1.88411236e-01\\n1.72548406e-02 -6.04042821e-02 -4.04927254e-01 -1.19684309e-01\\n-2.01444566e-01 -3.11949085e-02 -1.80023223e-01 -6.10500202e-02\\n-6.67620301e-02 -2.43953198e-01 -4.77997437e-02 -9.84043628e-02\\n2.43683174e-01 -1.48762807e-01 -2.26418987e-01 -1.12095363e-02\\n2.98861265e-01 4.46163565e-02 5.58758318e-01 -9.53576788e-02\\n1.06483690e-01 -1.55647799e-01 -2.48059124e-01 3.99314985e-03\\n2.13611126e-01 -2.05972996e-02 -1.02880910e-01 3.25925052e-01\\n-3.33385944e-01 -2.61040270e-01 -4.54178080e-05 1.45592868e-01\\n-4.17892188e-01 3.59568745e-02 -6.96446598e-02 2.32273042e-01\\n1.17788985e-01 1.68844461e-01 -2.08954096e-01 -9.81199294e-02\\n-1.19740486e-01 -5.60607910e-01 1.52102232e-01 -4.64368239e-03\\n-2.15597123e-01 5.05738854e-02 2.60670125e-01 1.54831007e-01\\n-2.74442494e-01 -7.44385049e-02 -1.49428099e-01 9.48665440e-02\\n5.17737716e-02 1.21388718e-01 -1.08646825e-01 -2.95511276e-01\\n-2.38656044e-01 2.55911589e-01 -1.62446368e-02 2.86795884e-01\\n5.60653247e-02 3.79945576e-01 6.96440935e-02 2.49366552e-01\\n2.62124538e-01 9.03570801e-02 -2.53754497e-01 -2.08785594e-01\\n-2.16483608e-01 -1.60309911e-01 -1.24970056e-01 -3.94104384e-02\\n2.22455859e-01 -2.52866566e-01 -1.00973621e-02 -2.42963284e-01\\n-2.37086371e-01 -4.39810336e-01 5.09778224e-02 -1.58611730e-01]]',\n", + " 'job_description': 'Do you have passion to transform P&G\\'s brand building while enabling better decision-making through advanced analytics and machine learning; enhance business results and improving consumer\\'s lives every single day? We are looking for Data Scientist Interns (Female or Male) 6-months - Based in Geneva CompensatedYour responsibilities will be:Get into the details on Marketing and Data Science, using artificial intelligence, data visualization and analytic engines, release business building insights, generating plans from our data to serve consumers worldwide in better way. You will learn through from data we generate from 1.5TB individual consumer touchpoints daily, and information on 500MM consumers\\' behaviors. You will answer business questions and propose solution for business problems by applying machine learning techniques and automatize analysis of consumer touch point information or other deep learning data, explore their patterns and recommend marketing activities.You will discover and invent next-generation business analytic tools for our category analysts and business partners, own our new applications from design-thinking up to user adoption.Full-stack development of innovative and creative tailor-made algorithms that will drive real-life business recommendation and activation, using your favorite tools or environment.Team up with technology partners to translate your innovations into robust, scaled, analytic solutions Collaborate actively and effectively with the data science team, other function\\'s partners and senior management to achieve your project\\'s objectives.Participate to P&G\\'s analytic capability program at different levels of skill and seniority To qualify for this role you should possess the following: Doing a Master Degree in a quantitative field (Operation Research, Computer Science, Engineering, Applied Math, Statistics, Analytics, Data Science, Life-science etc)Passion to try new things, learn quickly and work well with diverse backgrounds.Excellent interpersonal skills, self-motivated, dynamic and can-do attitudeEnthusiasm and curiosity about the intersection of business, technology and data.Very good English (written and oral) and you should have knowledge of Business Intelligence Tools such as KNIME, Tableau, SpotfireBig Data Ecosystem: Hadoop, Spark, MapReduce, SQL, HiveScientific Computing: R, Python, C++, Java, ScalaAdvanced Analytical models (Bayesian, Optimization (global, local, stochastic methods), Uncertainty Quantification, etc.) We offer: Competitive compensationOwn your responsibilities and project leadership as of day 1Dynamic, Diverse, Multi-cultural and Flexible working environment\\'Vibrant Living\\' offering on-site: Gym / Yoga / Sports-teams, Hair-Salon, Canteen, Agile workspace design, Flex-work arrangements possible and \"new-hire network activities\"Help with housing, subsidized meals, free public transport in Geneva and access to our company store, are some examples of our benefits.Equal Opportunities for everybody #WeSeeEqual #LikeAGirl #GABLE #P&GJob Location: Geneva, Petit-Lancy Due to legal restrictions, immigration sponsorship is available only for EU/EFTA nationalities. All candidate with non EU/EFTA nationalities are encouraged to check out opportunities in countries where they can obtain a work permit.Further helpful information to make the application process smooth: Just apply via clicking the button belowHave your CV in English ready to attachPlease note individual attachments cannot be larger than 500 KB ',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Leadership\", \"Collaboration\", \"Planning\", \"Management\", \"Decision Making\", \"Innovation\", \"Creativity\", \"Curiosity\"]',\n", + " 'hard_skills': '[\"Business Analytics\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Data Explorers\", \"Agility\", \"Accessioning\", \"Business Intelligence Tools\", \"Computer Science\", \"Life Sciences\", \"Analytics\", \"Consumables\", \"Statistics\", \"Bayesian Modeling\", \"Branding\", \"Business Partnering\", \"KNIME\", \"Activism\", \"MapReduce\", \"Python (Programming Language)\", \"Yoga\", \"Operations Research\", \"Levelling\", \"Translations\", \"Hostile Work Environment\", \"Business Intelligence\", \"Data Visualization\", \"Machine Learning Methods\", \"Data Science\", \"Uncertainty Quantification\", \"Release Engineering\", \"Equalization\", \"R (Programming Language)\", \"Artificial Intelligence\", \"Deep Learning\", \"Design Thinking\", \"Adoptions\", \"Public Transport\", \"Subsidized Housing\", \"Algorithms\", \"Business Technologies\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Touchpoint\", \"New Hire Orientations\"]',\n", + " 'languages': \"['English', 'Haitian Creole', 'Yoruba']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'business analyst - application support analyst',\n", + " 'location': 'Neuchâtel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.66816726e-01 2.85162449e-01 4.95247245e-01 -7.54986182e-02\\n5.17806172e-01 -1.34886459e-01 7.60038346e-02 4.32544142e-01\\n-8.29061940e-02 -4.25131202e-01 -2.95873592e-03 -1.83584690e-01\\n9.61176306e-02 2.15909109e-01 1.05633009e-02 3.52613240e-01\\n2.66447812e-01 1.37014166e-01 -1.48201928e-01 2.16381490e-01\\n1.25430062e-01 -1.72634274e-01 3.35497499e-01 6.12776577e-01\\n4.23927665e-01 3.30772921e-02 -2.56940257e-02 -1.53158531e-01\\n-1.23470135e-01 -2.56299287e-01 3.67050439e-01 -9.53961536e-03\\n-2.50251982e-02 -2.93682307e-01 6.65732324e-02 -5.90753835e-03\\n-1.93510950e-01 -1.60548806e-01 -1.45955786e-01 3.65572944e-02\\n-5.26386201e-01 -3.39580148e-01 -2.28963360e-01 -6.91483840e-02\\n-2.80557990e-01 -3.24102759e-01 -9.15291905e-03 -1.48155108e-01\\n1.82212859e-01 7.26522505e-02 -4.75324601e-01 2.69055218e-01\\n-3.30000103e-01 -2.03725293e-01 2.42885351e-01 6.28940821e-01\\n-2.85409689e-02 -3.79264444e-01 -4.72581893e-01 -2.54332900e-01\\n1.76641077e-01 -2.23826885e-01 3.89919020e-02 -2.20772594e-01\\n2.78967142e-01 2.02960521e-01 1.42488971e-01 3.70038003e-01\\n-7.76884913e-01 -1.40156075e-01 -3.32717627e-01 -2.39798233e-01\\n-1.49233565e-01 -9.14947912e-02 -1.49845034e-01 -1.88158885e-01\\n-9.45164785e-02 4.63348299e-01 1.23411208e-01 8.18541348e-02\\n-4.00788076e-02 2.69109011e-01 -2.31787860e-01 3.21324795e-01\\n8.58864859e-02 2.63024807e-01 1.04690574e-01 1.11424729e-01\\n-2.43329868e-01 4.18507725e-01 2.25649655e-01 -2.40596652e-01\\n2.23352090e-01 1.01557516e-01 3.95808041e-01 -2.47453704e-01\\n2.17678934e-01 2.30605043e-02 -2.61458695e-01 3.84560764e-01\\n2.94863254e-01 -3.24450463e-01 1.01686813e-01 -1.92390114e-01\\n-7.05779865e-02 -3.26319039e-02 9.00029615e-02 9.10945833e-02\\n-2.42432758e-01 4.81475919e-01 6.77301213e-02 -1.03688523e-01\\n-3.28537524e-02 -3.50481927e-01 1.81190129e-02 1.48204993e-03\\n9.13675204e-02 1.26485348e-01 2.01980963e-01 1.82763562e-01\\n2.78376192e-01 -8.81460756e-02 6.53274804e-02 6.54171109e-01\\n-1.05632469e-01 4.24783602e-02 -2.75458485e-01 2.27828890e-01\\n-2.77840551e-02 -1.56604737e-01 1.21966206e-01 1.94903582e-01\\n-2.02449113e-02 -1.33911476e-01 -1.51002795e-01 1.31977484e-01\\n-9.53805074e-02 -2.70285606e-01 -2.16760933e-01 1.45205572e-01\\n-2.02276465e-02 -1.81995362e-01 4.59509641e-01 -9.95344669e-02\\n1.54643893e-01 -6.64847717e-02 4.90071699e-02 -8.27436745e-02\\n-1.04522534e-01 2.26501137e-01 3.14468183e-02 5.26629947e-02\\n-1.86016604e-01 -2.29177713e-01 -2.01230317e-01 -1.15925521e-01\\n-2.18725786e-01 1.46933421e-01 -3.53244133e-02 -1.40077416e-02\\n2.48875499e-01 -3.61084230e-02 -7.27863610e-02 3.78438652e-01\\n6.28798753e-02 5.30594662e-02 4.58895788e-03 2.32622206e-01\\n-1.41313732e-01 2.28673071e-01 -7.18937814e-02 -1.59278110e-01\\n5.01531720e-01 -8.31596851e-02 -3.37360352e-02 2.20002420e-02\\n3.80361110e-01 1.69208460e-02 1.06049635e-01 6.94921240e-02\\n-6.85974836e-01 3.24633330e-01 -6.15523160e-02 -7.24900514e-02\\n1.80995688e-01 -5.40063418e-02 1.82919949e-01 -1.76368594e-01\\n1.16254650e-01 1.08255669e-01 -3.00764263e-01 -3.24148387e-01\\n-4.82118055e-02 -2.70950079e-01 3.17378998e-01 -3.62578064e-01\\n-1.01960555e-01 2.19249845e-01 -4.43402588e-01 3.50450166e-02\\n2.21723080e-01 2.19678774e-01 1.60573512e-01 1.74959153e-01\\n-1.87104136e-01 -1.07577771e-01 2.11339355e-01 -2.92870849e-01\\n-4.04642597e-02 2.01489881e-01 -1.51171640e-01 2.52423763e-01\\n1.80193394e-01 8.58183578e-02 -1.33273408e-01 -3.71211246e-02\\n7.67256096e-02 -1.27010360e-01 2.91456729e-01 2.45403033e-02\\n2.02699035e-01 6.92233145e-02 -3.49474669e-01 3.17839295e-01\\n-1.64470896e-01 5.17099142e-01 1.79933235e-02 -9.06439424e-01\\n2.98671514e-01 2.40180403e-01 9.21225641e-03 -2.06164390e-01\\n6.60073578e-01 -2.37542599e-01 -1.86836775e-02 2.21317619e-01\\n-4.16005880e-01 -3.51475030e-01 2.17292264e-01 -1.60689533e-01\\n-2.04272598e-01 4.95882601e-01 6.34944066e-02 1.67960897e-01\\n2.99192779e-02 7.70038180e-03 -1.76692083e-01 1.43731236e-01\\n6.70351461e-02 -2.26195082e-01 -4.81849194e-01 -2.13338256e-01\\n-9.12654176e-02 -3.93154383e-01 -1.60786033e-01 -4.35936034e-01\\n-2.99532652e-01 -2.26393089e-01 -3.79842259e-02 9.68500972e-02\\n2.70522445e-01 1.19380295e-01 1.02652572e-01 2.36744285e-01\\n-2.17602983e-01 -4.10830438e-01 4.99545895e-02 1.80105016e-01\\n2.03366339e-01 1.63581371e-01 -1.74756907e-02 1.00715175e-01\\n-5.69107533e-02 7.79145777e-01 -1.69867963e-01 1.17225260e-01\\n2.50453949e-01 2.46209681e-01 2.09222510e-02 -1.38754234e-01\\n1.37883991e-01 3.16180587e-01 -3.32972646e-01 3.08759868e-01\\n1.20447921e-02 9.94644165e-02 1.83122978e-01 1.02680460e-01\\n-3.20344627e-01 -2.38243774e-01 -1.52315661e-01 9.39186066e-02\\n-4.23535496e-01 -9.78240296e-02 6.99331999e-01 -5.90619892e-02\\n6.72758743e-02 1.79002061e-01 2.24290609e-01 1.89715829e-02\\n-7.98832476e-02 -1.42766654e-01 1.67589679e-01 1.30283430e-01\\n7.71711171e-02 1.14916414e-01 -2.10767351e-02 -7.03401506e-01\\n-3.66119194e+00 -1.91520050e-01 7.63729215e-02 -2.67383516e-01\\n2.88053155e-01 -2.38004535e-01 6.30816072e-02 3.02737895e-02\\n-2.82982022e-01 2.84561813e-02 -1.82005599e-01 -1.69044077e-01\\n2.74280638e-01 1.47940725e-01 8.84595513e-02 3.70418876e-01\\n8.69562328e-02 -2.43361235e-01 -4.54022363e-02 4.39097166e-01\\n-2.59551674e-01 -5.01000047e-01 3.15047622e-01 3.06553431e-02\\n4.55406636e-01 3.17829907e-01 -2.86230743e-01 -1.84408929e-02\\n-2.13597432e-01 -1.67652160e-01 2.65707254e-01 -2.18014374e-01\\n-1.17986098e-01 3.12351078e-01 1.57812402e-01 -1.49565056e-01\\n1.99206904e-01 -5.47767043e-01 -1.39021069e-01 -4.40096915e-01\\n1.54843882e-01 -6.80866301e-01 -7.54826590e-02 9.22882408e-02\\n6.30724728e-01 -3.05221558e-01 -6.51504621e-02 2.05139779e-02\\n1.68092549e-01 2.16654554e-01 3.85348462e-02 8.41422305e-02\\n-1.09303966e-01 -2.92187899e-01 -8.05607587e-02 -2.65527274e-02\\n4.02626842e-01 4.19412136e-01 -1.93728492e-01 -2.92385668e-02\\n2.37763692e-02 -7.16327429e-02 -5.14202237e-01 -2.44632438e-01\\n-2.33901113e-01 -2.90591866e-01 -5.91090381e-01 -2.97825873e-01\\n-8.16299990e-02 -1.50004745e-01 -1.77371711e-01 3.61755818e-01\\n-2.59540766e-01 -3.28153163e-01 -9.77436230e-02 -3.13551068e-01\\n2.44248971e-01 8.71416405e-02 2.70596631e-02 -1.75347775e-01\\n-3.33077371e-01 -2.62013882e-01 5.40916584e-02 3.51502821e-02\\n7.43630230e-02 -2.43363753e-01 1.34339169e-01 -5.82472086e-02\\n-3.48647982e-01 -4.38914150e-01 3.72188121e-01 1.82587147e-01\\n2.95160979e-01 1.29808903e-01 1.70364648e-01 3.97798568e-02\\n2.68732101e-01 -1.93118274e-01 3.27250399e-02 -4.54264104e-01\\n1.21773429e-01 3.01426500e-02 4.19101030e-01 -2.39311561e-01\\n1.34406894e-01 -6.85461611e-02 -3.17651659e-01 -9.01133940e-02\\n1.73144713e-01 1.64044555e-02 3.10877353e-01 -2.86493987e-01\\n9.10846144e-02 -9.45265517e-02 -3.37682039e-01 -9.01720226e-02\\n3.98449898e-02 5.40296733e-01 1.88922714e-02 -2.44994655e-01\\n-1.95327938e-01 4.30162072e-01 -1.86767906e-01 -1.05130345e-01\\n-4.22023684e-01 1.42143909e-02 -2.52014607e-01 2.62868404e-01\\n-1.59118950e-01 1.02813933e-02 -1.38729379e-01 -2.49796048e-01\\n-3.30721319e-01 2.21400172e-01 1.93553895e-01 6.19933493e-02\\n1.81442440e-01 -4.46847945e-01 -2.18381714e-02 2.21937165e-01\\n2.35554442e-01 3.14708680e-01 8.33338797e-02 -8.71262327e-02\\n-3.45915444e-02 2.58472115e-01 -9.51578617e-02 3.27858049e-03\\n-3.19740862e-01 1.95240930e-01 -3.61432314e-01 -3.58379364e-01\\n-1.91436127e-01 -2.91244745e-01 5.32719046e-02 2.95230061e-01\\n1.79268554e-01 -1.24208011e-01 -5.72530739e-02 -4.92347062e-01\\n2.27682278e-01 -5.71119692e-03 2.34419107e-01 8.71739462e-02\\n1.38690248e-01 4.49256152e-01 7.72836208e-02 -1.18679494e-01\\n-9.27810892e-02 1.10134482e-01 -2.03555584e-01 -1.90139338e-02\\n-8.88487920e-02 -4.82167929e-01 -1.86358348e-01 4.85445172e-01\\n1.02756664e-01 -1.65900752e-01 -1.38045281e-01 2.81440318e-01\\n-2.19744761e-02 -2.87334770e-01 -2.87153959e-01 -9.03102197e-03\\n3.98945391e-01 1.02387711e-01 2.84408033e-01 -4.59530681e-01\\n-3.58351991e-02 -1.12431869e-01 -1.31006092e-01 3.69533986e-01\\n-9.26976837e-03 -1.71559677e-02 -5.80750890e-02 -2.80332834e-01\\n3.09269339e-01 -2.40515903e-01 -1.20958863e-02 1.83207259e-01\\n2.16813069e-02 -7.87165537e-02 -4.90577340e-01 8.22712928e-02\\n-4.84090522e-02 -2.34726727e-01 6.49087131e-02 9.93404239e-02\\n4.13053259e-02 8.31290260e-02 -4.33365464e-01 -1.60270169e-01\\n-2.73173273e-01 -1.48864184e-02 -1.01929843e-01 -4.78242606e-01\\n-1.35987833e-01 -1.06385751e-02 -4.61583883e-01 2.18421265e-01\\n-1.72643021e-01 -2.78825797e-02 1.16837531e-01 -3.33104916e-02\\n-3.43747765e-01 -4.07880358e-02 1.90739334e-01 1.22684263e-01\\n-1.04270823e-01 -1.92071080e-01 3.72905508e-02 -1.04549646e+00\\n1.30296722e-01 -5.25312796e-02 -6.33966699e-02 1.53619871e-01\\n-6.23431951e-02 -4.66623932e-01 1.21072285e-01 -2.26599574e-01\\n-2.59526759e-01 -1.82114974e-01 -1.79347202e-01 -5.78566909e-01\\n1.74562130e-02 1.73893452e-01 -2.43642583e-01 9.91964042e-02\\n-1.80627495e-01 4.67720926e-01 2.90250368e-02 1.34733438e-01\\n-5.92419803e-02 -3.22629094e-01 5.51503785e-02 -5.42692065e-01\\n-3.99296254e-01 -7.62159452e-02 -2.77674198e-01 -7.62889013e-02\\n-4.42121699e-02 -2.38437042e-01 -2.38500629e-02 1.04686610e-01\\n1.33098677e-01 1.38216212e-01 -6.88350797e-02 -3.02352849e-02\\n4.38568145e-02 -5.49843848e-01 7.60013284e-03 1.25216827e-01\\n-6.87079430e-02 -6.15439788e-02 3.10668319e-01 5.94193302e-02\\n1.51098415e-01 -3.42876405e-01 3.04079890e-01 -4.73696858e-01\\n-3.52422208e-01 -1.02299422e-01 1.15718827e-01 3.09767015e-02\\n4.40727264e-01 -3.89883310e-01 -1.77950673e-02 2.15530694e-01\\n-5.26006185e-02 4.49993052e-02 3.74439180e-01 -9.81108323e-02\\n-1.72202095e-01 1.94005996e-01 -3.28821987e-01 1.58162490e-01\\n6.44426525e-01 9.71629992e-02 1.63278416e-01 1.99211195e-01\\n8.51648599e-02 2.57614285e-01 4.42488700e-01 -2.15315223e-02\\n-2.30379656e-01 3.38848710e-01 1.34154290e-01 -7.84104347e-01\\n-7.12086558e-02 5.24897780e-03 -3.45720202e-01 -4.09364492e-01\\n6.32258475e-01 3.74652267e-01 -3.20911914e-01 -2.64206171e-01\\n-2.14571998e-01 -2.93611228e-01 -9.04613882e-02 -8.07626769e-02\\n1.04360253e-01 -5.89491874e-02 5.14246285e-01 -5.77799827e-02\\n2.98325330e-01 3.94017309e-01 -2.33465746e-01 -2.60939300e-01\\n-9.88230407e-02 7.20113888e-02 -3.50659736e-03 4.40833092e-01\\n-2.17162192e-01 3.58903855e-01 -8.39845389e-02 2.06221074e-01\\n2.67525464e-02 -8.42386633e-02 1.27595710e-02 4.33015125e-03\\n-2.67094956e-03 2.48375416e-01 5.03314912e-01 2.64433086e-01\\n4.17895287e-01 3.51910889e-01 2.83470899e-01 1.02277135e-03\\n5.92872977e-01 4.03473586e-01 1.70991674e-01 7.97142535e-02\\n2.95545254e-02 -8.40264745e-03 -1.32184243e-02 8.39368030e-02\\n1.93413943e-01 2.76795000e-01 -4.69836257e-02 8.57254922e-01\\n2.83694625e-01 1.85646594e-01 5.20147920e-01 -4.81117815e-01\\n-3.03524613e-01 -1.04773149e-01 3.16642702e-01 -4.28495944e-01\\n-4.38466556e-02 1.62076697e-01 -4.81925383e-02 1.38399273e-01\\n-2.65730709e-01 -2.46834874e-01 -1.22185603e-01 3.39174837e-01\\n6.21627606e-02 -2.77915150e-01 -3.24637145e-01 5.30817024e-02\\n-3.90307568e-02 -1.64872363e-01 -4.78122920e-01 -3.55879478e-02\\n-1.62898108e-01 -2.85573632e-01 -1.14847891e-01 -7.87149295e-02\\n-1.75909787e-01 -2.35179320e-01 -3.18051800e-02 2.51442962e-03\\n9.02554691e-02 -4.39501815e-02 3.29973735e-02 -1.78352058e-01\\n4.22430009e-01 1.93573773e-01 5.28786302e-01 8.96317437e-02\\n1.22774325e-01 -2.80449748e-01 -7.57336169e-02 9.47676525e-02\\n3.08251590e-01 -5.87870739e-02 4.26246412e-02 4.77853417e-01\\n-3.60689729e-01 -1.48818403e-01 1.36610836e-01 3.36928487e-01\\n-4.77062523e-01 -1.50291482e-02 -2.92839017e-02 1.94664672e-01\\n1.48600787e-01 9.61889699e-02 -2.06270605e-01 -3.70850451e-02\\n-2.19964057e-01 -3.76349926e-01 5.17789945e-02 9.52670947e-02\\n-1.77644908e-01 -2.95919012e-02 1.50312439e-01 2.24202201e-01\\n-1.13957815e-01 8.58803652e-03 -2.93815825e-02 3.66153903e-02\\n1.59092173e-01 2.14664996e-01 -2.48889595e-01 -3.92054886e-01\\n-2.03100368e-01 1.72215775e-01 -1.91089347e-01 7.64004812e-02\\n1.24061391e-01 2.84464210e-01 -2.04099212e-02 1.77199900e-01\\n3.70478779e-01 -1.84260115e-01 -1.40958399e-01 -2.90715069e-01\\n-3.34070265e-01 -2.93073833e-01 1.55471340e-02 -2.60204047e-01\\n2.29036763e-01 -2.44325683e-01 -7.27668405e-02 4.04270813e-02\\n-1.92970902e-01 -3.44104618e-01 9.01933610e-02 -2.75175422e-02]]',\n", + " 'job_description': \"For one of our clients in the Romandie the French speaking part of Switzerland, in Lausanne, we are looking for a Business Analyst - Application Support Analyst who is open-minded and client-oriented, is passionate about his work, who believes in success and has a strong team spirit. Are you looking for you next challenging position? This opportunity is for you!Your challengesYou manage new applications and new functionalities in a manufacturing environment. You are in charge of lifecycle and support in manufacturing and application Level 2.Your skillsExperience in a validated environmentAt least 3-4 years' experienceExperience in application development lifecycle (supply chain)ITSM mandatoryGxP systems and computer validation systemMedical deviceLabelling systems a plusFrench and English mandatoryYour horizonsDo you think you have what it takes to face this challenge ? Don't hesitate to contact me on +41 58 233 27 08 or apply directly on this advert.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactMadame Joanna Fumey, Recruitment Trainee, looks forward to answer your questions by phone +41 58 233 2706.You can apply directly online.JN -072019-296587\",\n", + " 'soft_skills': '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Validations\", \"Supply Chain\", \"Customer Support Analyst\", \"Application-Level Gateway\"]',\n", + " 'languages': \"['English', 'Shona']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software security engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.36230105e-01 3.40883940e-01 2.81349361e-01 -5.84128685e-02\\n5.47161996e-01 -2.54661232e-01 1.41434878e-01 3.16309333e-01\\n4.87177633e-02 -3.90651971e-01 -1.82920620e-01 -1.13990486e-01\\n-1.21490248e-01 -7.10763875e-03 1.15474664e-01 3.96341264e-01\\n3.46896559e-01 4.84734140e-02 -1.74251467e-01 4.21952516e-01\\n7.64683634e-02 -1.49408370e-01 -8.72187540e-02 7.74587631e-01\\n3.13406676e-01 -2.46134493e-02 -3.04220952e-02 1.50954768e-01\\n-1.50724828e-01 -3.50249588e-01 4.00979340e-01 4.63254005e-02\\n-1.28971055e-01 -3.24213773e-01 2.34067291e-01 1.58148006e-01\\n-2.10834980e-01 1.20885037e-01 -1.35070443e-01 1.65216610e-01\\n-5.10458589e-01 -1.04725800e-01 5.01477830e-02 2.51809712e-02\\n-2.11760834e-01 -3.09845030e-01 3.15770984e-01 -1.35060102e-01\\n1.24602653e-01 7.66976327e-02 -4.37074661e-01 3.75989974e-01\\n-2.94328362e-01 -3.68989676e-01 4.36579168e-01 5.09961724e-01\\n-5.27991168e-02 -5.38764060e-01 -4.31116283e-01 -1.90824926e-01\\n6.19377568e-02 -6.86014965e-02 -4.21723016e-02 -3.26115668e-01\\n2.99222350e-01 9.48643312e-03 2.78786221e-03 3.64717215e-01\\n-7.29737163e-01 -1.80096805e-01 -3.16305786e-01 9.88234058e-02\\n-4.97047871e-01 -3.47018689e-02 -3.79566193e-01 -1.19525082e-02\\n-1.81558058e-02 3.07648748e-01 -9.52588245e-02 -3.01134288e-02\\n-1.21238358e-01 2.20981687e-01 -2.47208968e-01 2.13575080e-01\\n4.23745781e-01 1.37277186e-01 1.81152225e-01 3.38626206e-01\\n-3.79729688e-01 5.52518249e-01 2.88632601e-01 -1.70796961e-01\\n2.81181544e-01 1.57423228e-01 3.53093922e-01 5.03442436e-02\\n1.12062328e-01 2.26662979e-01 -1.42871857e-01 2.70301759e-01\\n2.21988454e-01 -1.20011128e-01 -6.85149580e-02 -1.20571703e-01\\n6.25788122e-02 9.27873105e-02 7.87840709e-02 2.77712196e-01\\n-4.26590204e-01 4.18029517e-01 1.96169317e-01 -2.55520731e-01\\n-1.48707628e-01 -4.51909155e-01 -2.43758321e-01 -5.10128289e-02\\n-1.17735304e-01 9.00925845e-02 2.64664531e-01 1.79659739e-01\\n1.97700128e-01 -6.36972953e-04 7.23178089e-02 9.32077706e-01\\n-1.08792521e-02 6.59423098e-02 -1.67940706e-01 3.25408518e-01\\n1.62026212e-01 -3.70135695e-01 1.33355960e-01 3.26324701e-01\\n3.66832018e-02 -1.56788230e-01 -3.31980437e-01 3.93040627e-01\\n-1.44323066e-01 -3.67674679e-02 -3.30581248e-01 1.98745370e-01\\n-1.40233617e-02 -4.36291784e-01 5.96548259e-01 7.30163753e-02\\n1.84971839e-01 2.72194091e-02 1.81709845e-02 -7.61415735e-02\\n-8.24494660e-02 2.89668769e-01 1.54739022e-01 1.44882604e-01\\n-3.41305047e-01 -1.87448189e-01 -1.70738891e-01 2.10534185e-01\\n-1.75602078e-01 3.74115780e-02 -3.29094648e-01 -1.96294829e-01\\n3.34982753e-01 1.22533953e-02 -4.07652676e-01 2.37174183e-01\\n-9.67284441e-02 -5.40716201e-02 -2.08191097e-01 4.53883559e-01\\n-1.03561372e-01 4.28381175e-01 -6.88905939e-02 6.15608506e-02\\n6.39488280e-01 1.53334647e-01 9.44825336e-02 -9.71933454e-02\\n2.20040947e-01 -8.50457251e-02 2.01068178e-01 4.42939438e-02\\n-6.26628935e-01 3.22842687e-01 -1.62956235e-03 3.90988216e-02\\n7.16277882e-02 3.87711525e-02 3.06310087e-01 -4.42335248e-01\\n-1.62914664e-01 -1.42152160e-01 -3.99116457e-01 -2.72928387e-01\\n-2.01035529e-01 -4.25517559e-02 2.71728188e-01 -3.73294204e-01\\n8.22718441e-02 1.78085834e-01 -6.80272639e-01 -9.47691277e-02\\n2.69779712e-01 2.57384449e-01 1.04040302e-01 2.52503186e-01\\n-2.48469725e-01 -5.79682529e-01 6.82116970e-02 -4.86944020e-01\\n-4.25309569e-01 3.73534188e-02 -3.25412571e-01 2.44017318e-01\\n-4.95814122e-02 1.41965272e-02 -1.38159350e-01 1.81642517e-01\\n-2.79801518e-01 7.80287571e-03 1.57224596e-01 -5.46181016e-02\\n2.54166067e-01 9.47151110e-02 -5.06887794e-01 4.25634056e-01\\n-2.07324430e-01 4.20397013e-01 2.67268419e-02 -7.53952384e-01\\n4.88478005e-01 1.26151085e-01 -3.06204595e-02 -3.86928558e-01\\n6.13707244e-01 -3.77691954e-01 3.22655728e-03 5.49104773e-02\\n-4.00810063e-01 -3.12262058e-01 2.79005140e-01 -1.50151044e-01\\n-3.26824099e-01 5.61275244e-01 4.35390659e-02 1.56094730e-01\\n3.69414151e-01 -1.55140787e-01 -3.42161953e-02 1.48553550e-01\\n-6.20831214e-02 9.49347019e-03 -4.87843871e-01 -8.44901428e-02\\n-1.49304971e-01 -6.18570268e-01 -1.63102061e-01 -4.71113980e-01\\n-3.02495509e-01 -2.37608239e-01 -5.16763210e-01 2.95706570e-01\\n7.75307044e-02 1.94282621e-01 -2.26013698e-02 -2.45508794e-02\\n-1.52564794e-01 -8.02806795e-01 5.18825604e-03 -8.91132187e-03\\n2.77503550e-01 2.89175957e-01 1.91706061e-01 -1.63295612e-01\\n2.09223516e-02 4.54722226e-01 -3.53377044e-01 -4.56867397e-01\\n1.52050421e-01 1.94183365e-01 1.51615962e-01 -3.27445827e-02\\n7.23549500e-02 5.12989759e-01 -3.16475660e-01 8.43358040e-02\\n-1.19275972e-01 -1.47877514e-01 4.99412894e-01 -7.39354417e-02\\n-4.20261860e-01 -1.18375905e-01 -2.22943816e-02 1.97365984e-01\\n-6.10212266e-01 -2.08742931e-01 4.09803361e-01 2.07657307e-01\\n1.28626570e-01 2.08876580e-01 3.11899364e-01 -1.64812163e-01\\n-5.23272119e-02 -2.17160031e-01 2.24296078e-01 1.75063029e-01\\n2.89972015e-02 5.68758436e-02 -2.46734247e-01 -8.08490455e-01\\n-3.25950909e+00 -7.77465031e-02 2.56558150e-01 -3.11545849e-01\\n2.17199519e-01 7.36336261e-02 2.43846208e-01 -1.34971619e-01\\n-2.79663533e-01 -2.54189931e-02 -9.45741236e-02 -1.26895010e-01\\n2.23539561e-01 3.34059834e-01 1.96272641e-01 2.70244867e-01\\n1.76725432e-01 -4.36620384e-01 6.67353394e-03 3.42941493e-01\\n-1.50901914e-01 -6.45757318e-01 1.47648141e-01 -8.43802914e-02\\n1.95986539e-01 2.94450045e-01 -4.18046832e-01 -1.54150218e-01\\n-2.35296890e-01 -1.82726070e-01 1.64092388e-02 -2.32571706e-01\\n-1.84014887e-01 1.98720574e-01 1.59188673e-01 -1.25567064e-01\\n-5.72018512e-02 -2.78977513e-01 -3.05294879e-02 -4.47643399e-01\\n1.73253402e-01 -5.61142743e-01 -1.02939665e-01 -4.64177132e-02\\n6.74403191e-01 -1.69352248e-01 2.33202070e-01 -3.67168970e-02\\n9.62695479e-02 1.39173493e-01 7.95989558e-02 4.70517091e-02\\n-2.58132160e-01 -9.94803607e-02 -1.79577380e-01 -1.46327376e-01\\n6.43202364e-01 4.20495212e-01 -2.52693594e-01 -1.08996131e-01\\n-4.35153656e-02 -5.29760897e-01 -3.94579470e-01 -1.55387923e-01\\n-2.05819502e-01 -9.72050205e-02 -6.68632269e-01 -5.10835528e-01\\n-1.47219554e-01 -1.22221485e-01 -9.57783870e-03 5.74590862e-01\\n-3.57182384e-01 -3.87805670e-01 -4.65258881e-02 -6.15057528e-01\\n1.33895144e-01 -1.90831289e-01 2.21085459e-01 -3.08029890e-01\\n-2.47318089e-01 -4.56562817e-01 9.17264819e-03 -2.89619435e-02\\n-1.51640609e-01 -3.00886512e-01 3.78662460e-02 -9.16975513e-02\\n-3.23639631e-01 -6.74402177e-01 4.89945173e-01 9.53548998e-02\\n2.50703305e-01 4.92298715e-02 3.08223277e-01 1.16943039e-01\\n3.30529332e-01 -2.00284123e-02 1.24237575e-01 -3.97573739e-01\\n-4.31656912e-02 -1.01144060e-01 6.85418963e-01 -3.43283415e-01\\n-4.72046956e-02 1.17155313e-01 -1.48077071e-01 -1.20038562e-01\\n3.46016526e-01 -9.01595652e-02 2.98824050e-02 -3.96859765e-01\\n3.80515456e-01 -3.80597204e-01 -2.20115975e-01 5.73851913e-02\\n8.94033983e-02 7.13838100e-01 3.52916233e-02 -4.22264934e-01\\n-2.24139586e-01 3.45110565e-01 -2.20934525e-02 1.30381629e-01\\n-1.62001267e-01 5.90957925e-02 -2.02190891e-01 2.45297626e-01\\n1.74445450e-01 -1.50996879e-01 -2.05005556e-01 -4.78054490e-03\\n-1.08965382e-01 3.47263217e-01 2.92444229e-01 1.68419123e-01\\n-8.69051740e-02 -3.25881243e-01 -1.82808340e-01 2.71455556e-01\\n8.19426477e-02 3.61980557e-01 9.24000293e-02 -1.67669296e-01\\n-8.67289826e-02 2.97123730e-01 -9.91074145e-02 2.03018740e-01\\n-1.51235372e-01 2.01531515e-01 -6.04083896e-01 -7.84956217e-02\\n-2.78156489e-01 -4.85281259e-01 1.37753665e-01 4.83223945e-01\\n9.70770195e-02 -1.23621123e-02 5.62536065e-03 -4.28890139e-01\\n2.61601508e-01 1.85150445e-01 1.54221147e-01 1.75877139e-01\\n6.49666553e-03 4.20802027e-01 -1.86976135e-01 -2.94356316e-01\\n-2.74620742e-01 1.32322265e-02 -3.08156550e-01 -2.24496707e-01\\n2.05708385e-01 -5.60212433e-01 -3.82583849e-02 5.01132011e-01\\n2.46724878e-02 -2.23943934e-01 -1.54025510e-01 1.52332693e-01\\n-8.55983421e-02 -2.58852214e-01 -3.03468436e-01 4.85359244e-02\\n2.18769804e-01 7.17325583e-02 3.18865091e-01 -4.65372741e-01\\n-2.49821153e-02 -6.14283681e-02 -4.44378005e-03 4.13851619e-01\\n-3.05573083e-03 1.34010538e-01 -2.73883492e-01 -4.29241806e-02\\n3.77903819e-01 1.09724663e-02 -9.79698673e-02 -2.02823952e-02\\n1.96577579e-01 -1.91107541e-01 -4.69758004e-01 4.34129685e-02\\n-1.19597837e-01 -1.50982112e-01 1.13489293e-01 2.15941593e-02\\n3.67697999e-02 1.46094233e-01 -5.36949873e-01 -3.43258649e-01\\n-4.00119752e-01 1.87548418e-02 -4.00977321e-02 -4.45265353e-01\\n-5.50834201e-02 -6.85993433e-02 -5.59171617e-01 2.21888825e-01\\n-3.03995192e-01 3.52224000e-02 2.42005885e-01 1.38644055e-01\\n-4.65052575e-01 -2.47741029e-01 2.28008449e-01 1.48820817e-01\\n-1.56793013e-01 -2.00521752e-01 -1.17222913e-01 -8.74291003e-01\\n3.31814498e-01 -7.02759624e-02 -2.39935994e-01 1.06690258e-01\\n-1.52971342e-01 -7.02292800e-01 1.02817498e-01 -3.09247017e-01\\n-1.29236951e-01 5.61997853e-02 -1.43841773e-01 -2.19313934e-01\\n-9.90737136e-03 -1.75113901e-01 -2.79561341e-01 3.67884457e-01\\n-4.18372154e-01 2.97890067e-01 1.71297733e-02 1.15648262e-01\\n-3.62195186e-02 -2.67172217e-01 -7.24951876e-03 -3.90505672e-01\\n-3.18844646e-01 -2.10138723e-01 -2.43131146e-01 -2.43045926e-01\\n3.63116548e-03 -3.44717532e-01 -1.28210053e-01 9.48946550e-02\\n3.08772743e-01 2.64947284e-02 -1.25894204e-01 -1.92879200e-01\\n-2.35227216e-02 -4.17649865e-01 1.93553809e-02 -2.37915143e-01\\n2.40150452e-01 -1.19511820e-01 1.84080794e-01 1.35001853e-01\\n2.09862396e-01 -4.25568819e-01 4.57503796e-01 -2.58021623e-01\\n-2.41932496e-01 -1.88143682e-02 1.05044529e-01 -6.85671568e-02\\n1.87770233e-01 -5.98344266e-01 1.28205836e-01 4.00086075e-01\\n-6.40014699e-03 5.94226457e-02 2.52312869e-01 -9.36126411e-02\\n-1.77493304e-01 2.48076469e-01 -2.58027643e-01 1.67275533e-01\\n6.68133855e-01 1.63989767e-01 1.09757155e-01 9.42717493e-02\\n7.97632858e-02 3.82863969e-01 5.51314950e-01 4.05256869e-03\\n-6.01771381e-03 3.15127671e-01 4.03704643e-02 -5.67876577e-01\\n-4.89383638e-02 -1.09230034e-01 -2.60376573e-01 -2.18073890e-01\\n6.57648563e-01 4.64694828e-01 -4.12794203e-01 -3.81209671e-01\\n-8.40802342e-02 -2.91532427e-01 1.91639841e-01 7.16924854e-03\\n-2.88871862e-02 -2.21757248e-01 6.71080768e-01 6.26463145e-02\\n1.50676534e-01 5.82162917e-01 -1.78084701e-01 -3.16340059e-01\\n6.88933283e-02 2.70010173e-01 -2.88737530e-04 4.89798218e-01\\n-1.10594749e-01 1.58395901e-01 -1.34423032e-01 3.52054238e-02\\n-3.28748208e-03 1.20212458e-01 2.27221891e-01 1.84195310e-01\\n9.16336551e-02 8.27381760e-02 4.65532511e-01 6.44301474e-01\\n1.35872886e-01 5.17247617e-01 2.88858056e-01 5.50503395e-02\\n3.51726860e-01 6.97570503e-01 4.08822656e-01 6.21180721e-02\\n-2.90510133e-02 2.35902220e-01 1.55987859e-01 3.33707519e-02\\n4.15488988e-01 3.97846311e-01 6.23514280e-02 8.61464441e-01\\n3.14967036e-01 1.72480643e-01 7.78439343e-01 -5.32875597e-01\\n-2.99070477e-01 9.50443223e-02 4.36996490e-01 -1.80994526e-01\\n-1.20303994e-02 1.48653895e-01 -1.56031653e-01 2.54098207e-01\\n-5.90734482e-01 -2.97638565e-01 2.63393391e-02 -4.36099572e-03\\n6.64930493e-02 -1.31585404e-01 -1.88900888e-01 -3.77781573e-03\\n-2.10251406e-01 -1.08694516e-01 -4.06018078e-01 -2.85509497e-01\\n-1.91541821e-01 1.30689204e-01 -1.70066193e-01 -2.11650997e-01\\n-4.28749099e-02 -4.33932841e-01 -1.24317467e-01 7.71997571e-02\\n3.64081919e-01 -1.61468804e-01 -1.22163266e-01 -1.08903296e-01\\n2.88340122e-01 2.54437834e-01 5.19906402e-01 -7.03713819e-02\\n8.31739753e-02 -9.22845900e-02 -1.90660119e-01 1.43151581e-01\\n2.79047037e-03 2.97594368e-01 1.14800535e-01 4.55013812e-01\\n-4.39203113e-01 -1.89027250e-01 3.12027000e-02 4.29935753e-01\\n-3.67066145e-01 -4.82384376e-02 -1.53742284e-01 1.84001431e-01\\n2.35982146e-02 3.93803008e-02 -1.40048414e-01 1.25499651e-01\\n-1.53455585e-01 -5.57482123e-01 4.38541204e-01 -1.53940231e-01\\n-2.68663466e-02 1.76729456e-01 2.40116671e-01 3.90539944e-01\\n-1.21646017e-01 6.55655116e-02 -5.61428517e-02 1.87141508e-01\\n6.52832240e-02 3.88164759e-01 -1.76751003e-01 -2.92770028e-01\\n-2.38778323e-01 2.61063039e-01 -1.25930890e-01 1.07358687e-01\\n4.39232141e-02 2.41340667e-01 4.89918776e-02 3.99572682e-03\\n4.37632263e-01 -1.16230391e-01 -3.27830195e-01 -2.12156311e-01\\n-2.14274064e-01 -7.37738535e-02 1.03754140e-01 -3.99301248e-03\\n2.03367069e-01 -4.08034354e-01 -1.35590762e-01 -1.84247792e-01\\n-6.44982085e-02 -2.49246821e-01 -1.43534496e-01 5.95390126e-02]]',\n", + " 'job_description': 'Job Informationen You will work with other engineers to ensure that new features are designed, implemented and operated to the highest possible security standard. You will review designs, code, perform in-depth assessments and closely work with the engineers to resolve issues at a very detailed level. Further responsibilities include the engineering, implementation and monitoring of security tooling for automated monitoring, code review, security tests, scanning and much more - all to ensure the day-to-day operational security tasks are as automated as possible, enabling a deeper product security focus. You should be as comfortable reviewing code across multiple platforms as you are handling a security incident. Your passion for the field should see you keeping yourself up-to-date about the latest vulnerabilities, exploits and trends, as well as the latest countermeasures. Requirements University degree in Computer Science or Engineering, or equivalent experience A minimum 8 years of work experience Proficient in at least one of the top languages, particularly Go, Java or Python and be willing to learn more. You have experience with performing application code reviews, design reviews and penetration testing. Strong communication skills in verbal and written English and German (optional) Experience working with distributed systems Experience in penetration testing web-based apps, mobile apps and back-end infrastructure Experience implementing modern-day cryptosystems Problem solving skills and ability to work under pressure Benötigte Skills JAVA Go Python Security',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Infrastructure\", \"Problem Solving\", \"Operations\", \"Written English\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Automation\", \"Tooling\", \"Cryptosystem\", \"Security Testing\", \"Computer Science\", \"Automated Code Review\", \"Mobile App\", \"Python (Programming Language)\", \"Levelling\", \"Code Review\", \"Penetration Testing\", \"Operations Security\", \"Design Codes\", \"Design Review\", \"Exploitation\", \"Vulnerability\", \"Back End (Software Engineering)\", \"Cyber Security Standards\", \"Java (Programming Language)\"]',\n", + " 'languages': \"['English', 'Zhuang', 'Kanuri', 'Aragonese', 'Sundanese']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer (position keeping)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-2.00253054e-01 2.56725699e-01 5.41780770e-01 1.75821991e-03\\n6.37378335e-01 -1.04170382e-01 -1.41443953e-01 3.36291552e-01\\n4.73299511e-02 -3.86223912e-01 -9.24882665e-02 -2.22091779e-01\\n-5.11610657e-02 8.25501010e-02 5.00927716e-02 2.74111688e-01\\n3.84074479e-01 9.62766334e-02 -1.62377097e-02 3.53015929e-01\\n-9.56607461e-02 -7.12777674e-02 2.28637919e-01 7.16766953e-01\\n2.95270681e-01 1.58153847e-02 -2.89820302e-02 9.78332385e-02\\n-1.86303765e-01 -2.61680901e-01 4.63883519e-01 1.39251798e-01\\n-1.14017770e-01 -4.11439210e-01 1.05947703e-01 1.25802327e-02\\n-1.97914332e-01 -5.92882782e-02 -1.81843191e-01 7.56517053e-02\\n-3.72939497e-01 -1.64551973e-01 -5.02287298e-02 2.99674440e-02\\n-3.19385767e-01 -3.25118363e-01 4.09052595e-02 -1.09895587e-01\\n1.43684015e-01 6.73452020e-03 -4.49263215e-01 2.82347739e-01\\n-2.86655545e-01 -2.74314195e-01 3.36229086e-01 6.40236855e-01\\n-3.23326290e-02 -3.94684106e-01 -5.29504478e-01 -3.50726783e-01\\n9.62220505e-02 -8.91209543e-02 5.98588958e-04 -3.87542486e-01\\n2.81670064e-01 8.58276263e-02 8.47088397e-02 1.75000131e-01\\n-8.25500727e-01 -2.54480932e-02 -2.44124860e-01 -4.48711999e-02\\n-4.52388227e-01 -1.70490518e-01 -3.83371115e-01 -1.39028877e-01\\n-1.02107912e-01 4.15430784e-01 9.28360373e-02 1.35098070e-01\\n-1.43828779e-01 2.96394020e-01 -2.77781337e-01 3.85856628e-01\\n2.43246153e-01 1.56070054e-01 2.78646111e-01 3.36835504e-01\\n-3.46685737e-01 5.21448731e-01 1.40832931e-01 -3.61034691e-01\\n2.23812938e-01 8.62870216e-02 3.17121625e-01 -1.20271102e-01\\n2.05742329e-01 1.31442502e-01 -2.62441099e-01 3.29913855e-01\\n2.93149441e-01 -2.20600396e-01 -4.45324816e-02 -1.18442461e-01\\n1.57576174e-01 6.96880091e-03 6.20250627e-02 5.62660508e-02\\n-3.16687644e-01 3.24837029e-01 1.35181457e-01 -3.27113897e-01\\n-5.94355613e-02 -4.68972206e-01 -7.50185996e-02 2.92240232e-02\\n-3.86207886e-02 -5.50734401e-02 4.20788452e-02 1.29700080e-01\\n2.58344591e-01 3.35050561e-02 1.27199009e-01 7.15238571e-01\\n-1.23955905e-01 1.23675019e-02 -2.46815771e-01 3.10856521e-01\\n1.58585683e-02 -2.45879143e-01 2.65575141e-01 2.38004178e-01\\n-5.44337668e-02 -4.73384969e-02 -2.09684461e-01 2.54482865e-01\\n2.71537900e-02 -2.18452170e-01 -1.68906957e-01 2.88479239e-01\\n3.26526165e-02 -3.96604836e-01 5.29513240e-01 1.12845905e-01\\n8.37704539e-02 -6.57300875e-02 -7.67123699e-03 -1.08603001e-01\\n-1.37339652e-01 7.28671402e-02 1.66302323e-02 2.16577023e-01\\n-3.23907197e-01 -1.83171421e-01 -1.48729801e-01 5.99237233e-02\\n-3.25153410e-01 2.22405754e-02 -3.21388006e-01 -8.18846151e-02\\n1.77942067e-01 7.75477216e-02 -3.52483124e-01 1.07007399e-01\\n-1.01218246e-01 1.76572576e-02 2.84767412e-02 4.71396267e-01\\n-1.25606745e-01 2.78333068e-01 -1.26631886e-01 -7.14727491e-02\\n5.55412769e-01 1.11355364e-01 1.36499241e-01 -2.83601359e-02\\n2.72205830e-01 -1.11410439e-01 2.26684660e-01 1.28734440e-01\\n-7.28409708e-01 3.75975966e-01 -3.14003825e-02 -9.20988172e-02\\n1.23331614e-01 -8.31139237e-02 2.32134283e-01 -2.88026512e-01\\n2.50054095e-02 -1.30247504e-01 -3.46476257e-01 -3.17628682e-01\\n-2.22340673e-01 -2.36976855e-02 3.39171141e-01 -6.03927374e-01\\n-9.88859981e-02 2.09592640e-01 -4.75752652e-01 -1.39879227e-01\\n1.12196058e-01 2.41157711e-01 7.27632567e-02 9.49385762e-02\\n-1.29994363e-01 -5.39737880e-01 1.06692791e-01 -4.30015087e-01\\n-1.46197557e-01 7.51147792e-02 -3.08089226e-01 1.83631301e-01\\n4.22103442e-02 -1.23760127e-01 -9.68625546e-02 1.03868321e-01\\n-3.25016290e-01 7.52039701e-02 8.79803002e-02 2.01716926e-02\\n3.10152590e-01 6.95693344e-02 -3.28544855e-01 4.52286065e-01\\n-2.73740590e-01 5.01670837e-01 1.39824659e-01 -8.16060662e-01\\n4.77836221e-01 3.00695479e-01 -1.13826972e-02 -4.11189437e-01\\n4.92633164e-01 -4.66104746e-01 -6.43799603e-02 3.47560160e-02\\n-4.45547581e-01 -2.66873002e-01 2.23177165e-01 -1.26347423e-01\\n-2.28768274e-01 4.55716640e-01 -3.17573696e-02 1.35509700e-01\\n2.91828573e-01 -2.65423059e-01 -2.18783289e-01 5.08541316e-02\\n-1.20374113e-01 -2.24416673e-01 -6.57539368e-01 -2.00394273e-01\\n-9.45184305e-02 -4.13397253e-01 -1.88765258e-01 -3.79548490e-01\\n-2.05975950e-01 -3.39237422e-01 -1.41895562e-01 2.10496709e-01\\n1.66640177e-01 1.07752115e-01 -1.08117715e-01 1.54858291e-01\\n-7.02537224e-02 -6.94647074e-01 1.28809109e-01 1.71377152e-01\\n3.67131680e-01 1.42096207e-01 2.12058812e-01 -7.37743452e-03\\n1.18400291e-01 6.43516064e-01 -1.80779666e-01 -3.06719422e-01\\n1.69384822e-01 2.09129632e-01 3.20081487e-02 -7.99533799e-02\\n1.19974628e-01 3.15935552e-01 -2.79965997e-01 6.27184510e-02\\n1.04158998e-01 -8.03146660e-02 4.62717175e-01 -4.06848043e-02\\n-2.27733374e-01 -1.81162283e-01 -1.44526690e-01 1.43507496e-01\\n-6.49266958e-01 -2.75185823e-01 5.65653145e-01 1.76949769e-01\\n1.34163052e-01 1.77874684e-01 1.78720891e-01 2.95347460e-02\\n-1.62256420e-01 -2.09216177e-01 3.48073125e-01 5.55691607e-02\\n1.85492843e-01 1.53151914e-01 -1.34279877e-01 -5.94111085e-01\\n-3.63031387e+00 -1.63273960e-01 1.27723739e-01 -2.09938049e-01\\n3.03180784e-01 -1.35935947e-01 1.66427746e-01 -7.51478970e-02\\n-2.72680581e-01 3.74052152e-02 -2.01947421e-01 -1.70289621e-01\\n1.74876869e-01 1.84517235e-01 1.17071882e-01 1.52325481e-01\\n2.00516403e-01 -2.01605752e-01 3.65168005e-02 3.80984306e-01\\n-1.50154218e-01 -7.36844182e-01 1.27956614e-01 6.06299844e-03\\n2.09820688e-01 1.86120242e-01 -3.86659533e-01 -1.20411530e-01\\n-1.94244727e-01 -1.24452516e-01 -3.10685672e-02 -3.10537159e-01\\n-9.64259729e-02 1.75015509e-01 2.53979445e-01 -1.36170164e-01\\n2.05385052e-02 -3.64001334e-01 -1.19523451e-01 -4.65491086e-01\\n2.50575870e-01 -5.55996299e-01 1.03412412e-01 -1.50008857e-01\\n6.73502803e-01 -3.12322378e-01 3.52610089e-02 9.23263282e-02\\n1.12087086e-01 1.86502263e-01 2.65754282e-01 2.31253300e-02\\n-1.86453700e-01 -3.16389680e-01 -1.84369117e-01 -2.05597937e-01\\n5.79190969e-01 3.83203626e-01 -1.86523110e-01 4.86568362e-02\\n2.04424020e-02 -3.87336195e-01 -4.66488749e-01 -2.94489980e-01\\n-5.20526543e-02 -2.26973802e-01 -6.37695789e-01 -5.16025901e-01\\n-1.53665274e-01 -1.11677542e-01 -1.14568867e-01 6.42892361e-01\\n-3.43562305e-01 -3.42501760e-01 -8.81535262e-02 -4.38975126e-01\\n3.91891986e-01 -1.68852240e-01 6.01179525e-02 -2.38230497e-01\\n-1.14625640e-01 -3.52115631e-01 6.79871291e-02 1.08076036e-02\\n-8.73502344e-02 -3.53127420e-01 1.62091777e-01 3.82128358e-02\\n-3.98470044e-01 -5.83948195e-01 5.34913242e-01 1.31564349e-01\\n3.34865600e-01 2.92871799e-02 2.85449088e-01 -1.22587450e-01\\n2.15833515e-01 -1.76380761e-03 -1.87780172e-01 -4.18067336e-01\\n1.07344396e-01 1.65638374e-03 4.98883307e-01 -1.54417634e-01\\n2.26072166e-02 1.82448663e-02 -2.26226658e-01 -2.20833421e-02\\n2.89610982e-01 9.23598483e-02 9.42889899e-02 -1.52496353e-01\\n3.27075779e-01 -3.47938538e-01 -1.18684903e-01 1.34175777e-01\\n9.59727168e-02 4.82382983e-01 7.01077059e-02 -2.90034086e-01\\n-1.29983306e-01 5.01850665e-01 7.04220980e-02 -6.64546192e-02\\n-2.43571371e-01 3.27995792e-02 -2.47607172e-01 2.65242249e-01\\n1.36703819e-01 -1.77528664e-01 -1.51104778e-01 -1.08857922e-01\\n-4.54243273e-04 3.10188472e-01 2.79992044e-01 2.61576384e-01\\n2.88770832e-02 -3.60387146e-01 2.65394039e-02 8.55474472e-02\\n1.53134391e-01 5.25461912e-01 1.39566079e-01 -2.29223579e-01\\n2.15089098e-02 2.63457060e-01 -5.50530814e-02 3.45617533e-01\\n-1.04265384e-01 9.42513794e-02 -5.71432710e-01 -1.94097340e-01\\n-3.89731348e-01 -3.22093606e-01 1.47665679e-01 3.28908920e-01\\n1.84581414e-01 -1.42440632e-01 3.54361013e-02 -3.96993577e-01\\n2.85804272e-01 2.03175485e-01 2.42241174e-01 9.43106413e-02\\n-2.21238658e-02 6.35178268e-01 -8.03719684e-02 -2.23663226e-01\\n-1.17810845e-01 1.92082286e-01 -1.19993366e-01 -1.15948178e-01\\n-1.13024935e-03 -5.72870076e-01 -1.03039861e-01 3.77402246e-01\\n5.44861518e-02 -1.56006277e-01 -2.58324683e-01 3.16854775e-01\\n-8.12807381e-02 -2.52403647e-01 -2.52755523e-01 -4.13993970e-02\\n3.33888173e-01 1.16900906e-01 2.76557446e-01 -4.87096906e-01\\n-5.35831414e-02 8.24420750e-02 8.67883582e-03 5.19230366e-01\\n2.29519866e-02 -8.39923620e-02 -3.77933644e-02 -1.70647204e-01\\n3.90929878e-01 7.31684119e-02 -1.55213296e-01 6.44790977e-02\\n6.47011101e-02 -9.93148424e-03 -4.11862195e-01 1.34115517e-01\\n2.99596079e-02 -2.36174673e-01 1.69366430e-02 1.02244094e-01\\n1.90463886e-01 2.15886056e-01 -6.62147284e-01 -1.93811089e-01\\n-3.01491439e-01 3.33852470e-02 -1.30592082e-02 -5.82640409e-01\\n3.95435691e-02 -1.07773766e-01 -5.62166095e-01 2.06546962e-01\\n-1.86582774e-01 -1.44707263e-01 1.20220572e-01 8.67137834e-02\\n-3.07883322e-01 -8.31605196e-02 1.14147916e-01 2.12470651e-01\\n-3.22657138e-01 -7.83331394e-02 -1.30013213e-03 -8.68655860e-01\\n2.79167414e-01 -1.24874398e-01 -1.59177005e-01 1.47986889e-01\\n-1.06386617e-01 -7.33532667e-01 1.23930290e-01 -3.04254234e-01\\n-2.71986634e-01 -5.28188311e-02 -2.98714519e-01 -3.26280057e-01\\n5.28810620e-02 -5.87306879e-02 -2.06700444e-01 4.07494843e-01\\n-3.54368836e-01 4.34832066e-01 -1.12032548e-01 8.02555978e-02\\n1.02613956e-01 -3.30150545e-01 4.11836915e-02 -2.81693280e-01\\n-4.30717915e-01 -2.15868890e-01 -2.13985473e-01 -3.17880780e-01\\n3.89149114e-02 -4.11271572e-01 -1.46660924e-01 -9.40907449e-02\\n4.58888561e-01 6.67166263e-02 -2.56692648e-01 -1.64144963e-01\\n9.61420983e-02 -4.57513869e-01 1.42309725e-01 -1.30509183e-01\\n3.38265002e-02 -4.77819107e-02 2.90095806e-01 4.27330136e-02\\n3.04952294e-01 -4.42543030e-01 3.38397205e-01 -3.58795792e-01\\n-2.84870386e-01 -4.03209068e-02 9.17144120e-02 1.79410353e-03\\n3.06283861e-01 -5.19559860e-01 -1.16780385e-01 3.54429722e-01\\n1.62966013e-01 -4.06953469e-02 1.20828465e-01 -1.11686379e-01\\n-9.14954208e-03 3.50122899e-01 -3.54900599e-01 2.55668849e-01\\n8.67429614e-01 1.32999972e-01 2.08330557e-01 2.36940712e-01\\n1.50042430e-01 3.74801934e-01 5.20135283e-01 5.55534437e-02\\n-5.65125011e-02 3.55697870e-01 8.15863386e-02 -4.36548173e-01\\n-8.99201930e-02 7.03963637e-02 -2.54195571e-01 -4.26608473e-01\\n6.11744940e-01 3.92454714e-01 -4.62679505e-01 -2.50969708e-01\\n-2.60644406e-01 -2.76888996e-01 1.19455062e-01 -5.44107109e-02\\n5.24482839e-02 -9.80955064e-02 3.18294346e-01 -1.05274394e-01\\n2.66278744e-01 4.97735262e-01 -2.08518088e-01 -3.21853042e-01\\n-1.00336641e-01 1.85142577e-01 1.01524562e-01 5.35207033e-01\\n-1.63123682e-01 2.32019380e-01 5.19704595e-02 9.70381647e-02\\n-2.18808323e-01 2.18079500e-02 1.74398422e-01 3.64172980e-02\\n1.72202706e-01 -7.47798337e-03 5.02774477e-01 3.54192972e-01\\n3.18867683e-01 4.11955774e-01 2.78473496e-01 1.10735014e-01\\n4.79550600e-01 6.35231137e-01 3.29063356e-01 -2.42453422e-02\\n-3.02273128e-02 2.70658322e-02 2.21769631e-01 -1.56988092e-02\\n3.93181562e-01 4.55491900e-01 1.22193001e-01 8.49608481e-01\\n3.34301829e-01 4.55593169e-01 7.10908353e-01 -5.58823824e-01\\n-3.81833434e-01 1.46765828e-01 4.47062314e-01 -4.68874991e-01\\n1.15477867e-01 2.01174736e-01 -2.34872669e-01 3.04798305e-01\\n-4.36026812e-01 -1.08221345e-01 -4.11844216e-02 1.10485032e-01\\n-5.94637729e-02 -2.38137227e-02 -1.49816036e-01 1.57871544e-01\\n-3.42082344e-02 -1.76473469e-01 -4.36335921e-01 -1.74998760e-01\\n-2.49478176e-01 -1.20562389e-01 -3.31049301e-02 -1.44635081e-01\\n1.07141063e-02 -3.20616901e-01 -1.61507241e-02 -1.64926887e-01\\n3.21701884e-01 -2.14850962e-01 -1.52012318e-01 -9.34731215e-02\\n1.94382578e-01 1.54722810e-01 6.29607797e-01 4.83101234e-02\\n1.05783090e-01 -2.15384468e-01 -1.73423439e-01 1.25273660e-01\\n9.59721729e-02 3.21118794e-02 -4.87010926e-04 2.75926292e-01\\n-3.35823894e-01 -1.42027318e-01 3.11543584e-01 2.41832569e-01\\n-3.40193033e-01 1.06543511e-01 -1.17866851e-01 2.33647957e-01\\n4.28262986e-02 1.38848811e-01 -2.57634938e-01 -4.66632843e-03\\n-2.01022461e-01 -4.91586745e-01 3.36051822e-01 -1.45804316e-01\\n-4.30267751e-02 -4.40209210e-02 3.04796189e-01 2.28961736e-01\\n-2.67180443e-01 -4.76936437e-02 -1.82190120e-01 7.17667788e-02\\n7.49549493e-02 3.25387239e-01 -2.11756170e-01 -2.72507697e-01\\n-8.94372761e-02 2.04111487e-01 -4.81966697e-02 3.57159674e-02\\n-2.52138823e-03 4.49052632e-01 4.92451340e-02 1.02756284e-01\\n4.61591363e-01 -1.04408383e-01 -3.28928888e-01 -2.09496215e-01\\n-3.29737782e-01 -5.82334995e-02 -3.58589552e-02 -1.09553680e-01\\n2.23121434e-01 -3.33356142e-01 -5.99271208e-02 -1.56568512e-01\\n-1.52160063e-01 -4.27850902e-01 -1.30253602e-02 -2.51228604e-02]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team When you buy shares, take out a loan, withdraw money from an ATM or perform some other financial transaction, there is a good chance that you have used our software. We implement the technical banking framework which manages how financial systems keep track of financial transactions and positions. We are looking for a motivated software engineer who is interested in the banking business and challenging technical problems. We want you to join us to build on the best banking software product on the market. As a member of the development team Subledger and Position Keeping, you will be part of a group of highly skilled, motivated and dynamic people that are responsible for very central parts, such as the whole position keeping for varied financial products, within the Avaloq Banking Suite. We will place a large amount of trust in you and give you the freedom to help us shape the core banking technical framework on which the rest of the company is based. The company’s non-hierarchical structure will put you in contact with a wide range of industry experts. Along with these experts, external partners and customers will constantly help and challenge you to improve your knowledge of how to create great software and of the business which it serves. Together with our software professionals you analyse customer requirements and drive the design of new functionalities or the enhancement of existing features. The Avaloq Banking Suite is one of the largest PL/SQL applications in the world. Development takes place in our integrated development environment - a customized Eclipse platform, which is tightly integrated with a build automation and delivery system, allowing a standardised and automated process to be followed. Your mission Drive the design of new products and functionality in collaboration with the business analysts, product owners, software architects and fellow developer Analyse and implement customer requirements Maintenance of existing functionality Work in an Agile environment, helping us to improve our processes Provide support to other development teams (some in other international locations) that need to modify/use the software that is under your care Technical support of customer projects (new implementation of the Avaloq Banking Suite or upgrades) Work on interdisciplinary innovation projects Extension of Avaloq’s standard product configuration (Avaloq Banking Reference). Development of automated tests) What you need A university degree in computer science, business informatics, computer/electronic engineering or equivalent experience Open minded, team oriented and communicative Eager to learn and take on new challenges Solid knowledge of software engineering Experience in development of complex applications Interested in the banking business Strong written and spoken English language skills You will get extra points for the following Strong analytical and problem-solving skills and the ability to think abstractly is a strong plus Knowledge of SQL/relational database systems Experience with PL/SQL Basic understanding of double entry bookkeeping German language Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zürich Don’t be shy – apply! Avaloq Evolution AG Alina Tauscher, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " 'soft_skills': '[\"Writing\", \"Team Oriented\", \"Professionalism\", \"Motivational Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Integration\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Automation\", \"EN 1993 Building Codes\", \"Agility\", \"Development Environment\", \"Computer Science\", \"Analytics\", \"Building Automation\", \"Industrialization\", \"Wealth Management\", \"Product Configuration\", \"Electronic Engineering\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Track (Rail Transport)\", \"Bookkeeping\", \"Eclipse (Software)\", \"Business Informatics\", \"Software Engineering\", \"Technical Support\", \"Software Product Management\", \"Library For WWW In Perl\", \"Database Systems\", \"Banking Software\", \"Build Automation\", \"Financial Transaction Tax\", \"Banking\", \"Relational Databases\", \"Loans\", \"New Product Development\", \"SQL (Programming Language)\", \"Financial Systems\", \"Integrated Delivery Systems\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'Sundanese', 'Zhuang', 'Church Slavonic', 'Inuktitut']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.74159169e-01 3.37610811e-01 6.32986605e-01 -1.04096882e-01\\n5.10776281e-01 -1.76928371e-01 1.23440638e-01 3.22047621e-01\\n-2.33702168e-01 -3.37552518e-01 -1.90123260e-01 -2.75692314e-01\\n7.80085241e-03 7.53872395e-02 1.09145135e-01 3.93530756e-01\\n3.25709432e-01 6.66375384e-02 -1.34673268e-01 2.74409086e-01\\n1.91011846e-01 -4.79138009e-02 1.01544745e-01 6.11031294e-01\\n5.03775716e-01 -2.43258756e-02 -1.26253977e-01 1.90617010e-01\\n-2.13395208e-01 -2.97951698e-01 4.78870898e-01 7.68620595e-02\\n-1.54280111e-01 -8.58569890e-02 1.20153680e-01 1.32139876e-01\\n-1.98134676e-01 -1.18758297e-02 -1.84955318e-02 8.06215107e-02\\n-3.25358719e-01 -6.90306362e-04 -5.68117760e-02 -4.85117733e-02\\n-3.09198499e-01 -4.18812394e-01 -9.12849512e-03 7.69227967e-02\\n1.34908944e-01 4.71007489e-02 -4.08304185e-01 4.18267071e-01\\n-1.96686268e-01 -3.48830640e-01 1.54758364e-01 6.97228849e-01\\n-1.30681545e-01 -4.81871367e-01 -3.51434112e-01 -2.41023108e-01\\n1.58826023e-01 -1.42202780e-01 9.51188058e-02 -3.16717595e-01\\n6.11325502e-01 -3.72919887e-02 -7.09644705e-02 3.16210002e-01\\n-7.93446243e-01 -1.25272404e-02 -2.60333747e-01 -5.62610999e-02\\n-3.81852329e-01 3.03002503e-02 -3.53429973e-01 -1.82362080e-01\\n-7.90536255e-02 4.73523527e-01 4.97084558e-02 1.70599446e-01\\n-6.70160353e-02 2.16389358e-01 -3.22141975e-01 2.18345866e-01\\n1.92865342e-01 4.67429608e-01 1.74280331e-01 2.93980598e-01\\n-4.25263464e-01 3.78605843e-01 1.35690093e-01 -2.79087335e-01\\n1.88520551e-01 1.75940886e-01 4.24600840e-01 6.07181676e-02\\n1.93554625e-01 5.80913648e-02 -2.74738461e-01 2.51863897e-01\\n2.85106689e-01 -3.78318608e-01 6.08693212e-02 6.29624492e-03\\n-1.15190089e-01 1.12603977e-01 2.96976157e-02 2.66180962e-01\\n-3.74638081e-01 5.85921526e-01 -3.53540778e-02 -1.68602869e-01\\n-3.10806669e-02 -6.26818895e-01 -2.42606565e-01 1.63050294e-01\\n1.76286101e-01 2.74258226e-01 1.73404694e-01 4.34776276e-01\\n1.55279592e-01 6.03402182e-02 2.51504123e-01 9.16888773e-01\\n-7.53450319e-02 1.51415005e-01 -2.12091118e-01 4.77181941e-01\\n1.02437474e-01 -2.65336782e-01 2.58151263e-01 3.27646822e-01\\n1.49589211e-01 -1.00332119e-01 -2.57143557e-01 3.00071329e-01\\n-2.83816997e-02 -3.42744738e-01 -3.26590002e-01 1.53501138e-01\\n-1.20047443e-01 -6.43521845e-01 6.01870775e-01 -1.41520258e-02\\n8.65502134e-02 -6.21086843e-02 -3.15526091e-02 -6.91452920e-02\\n-3.84814292e-02 2.12042525e-01 1.22506566e-01 7.51162395e-02\\n-2.87874371e-01 -1.88766375e-01 -3.12698990e-01 2.30228215e-01\\n-4.70165908e-01 7.82576278e-02 -1.03938386e-01 -3.21434364e-02\\n2.73469776e-01 -9.23965797e-02 -3.50062072e-01 3.06634456e-01\\n-1.85352996e-01 -2.12948650e-01 -5.90674169e-02 3.77094477e-01\\n-2.21138328e-01 2.02790678e-01 -6.15214892e-02 -2.66010076e-01\\n4.94493216e-01 1.13771051e-01 1.51890993e-01 3.03541608e-02\\n3.27505678e-01 2.59406422e-03 1.61155343e-01 1.24708213e-01\\n-8.91785026e-01 4.54784781e-01 -8.39888752e-02 -2.64141798e-01\\n5.33160791e-02 3.78018804e-02 3.57734919e-01 -3.40982914e-01\\n1.64094016e-01 -1.48132905e-01 -2.67909676e-01 -2.25646198e-01\\n-2.81551391e-01 1.42808603e-02 4.81201559e-01 -4.54883993e-01\\n-1.28290832e-01 1.18064046e-01 -6.25424445e-01 9.40724686e-02\\n1.89791322e-01 1.58928111e-01 1.57106251e-01 1.86391696e-01\\n-1.04942575e-01 -5.48361540e-01 1.57844722e-01 -3.81006211e-01\\n-2.72294879e-01 2.51898885e-01 -3.62704009e-01 2.42142648e-01\\n1.84072226e-01 -4.22423594e-02 -7.22486302e-02 1.05826102e-01\\n-1.09347440e-01 -7.03085884e-02 1.98767096e-01 4.30995300e-02\\n4.77663964e-01 -2.46721320e-02 -4.03442204e-01 5.76572180e-01\\n-1.34788185e-01 3.98016423e-01 2.19209433e-01 -8.84030879e-01\\n4.94953811e-01 2.88229972e-01 1.45768628e-01 -3.08245629e-01\\n8.53734434e-01 -1.42586574e-01 -1.76400557e-01 1.20398231e-01\\n-3.90305042e-01 -2.70595014e-01 1.19539447e-01 -1.88488930e-01\\n-2.80934364e-01 4.93767858e-01 1.43255383e-01 1.38819575e-01\\n3.03464800e-01 -1.40080228e-01 -2.03393102e-01 1.66626304e-01\\n-1.98669434e-01 -3.08718443e-01 -4.08456147e-01 6.64917007e-02\\n7.11182645e-03 -4.77914691e-01 -1.55877903e-01 -5.15757501e-01\\n-1.95145741e-01 -3.99363995e-01 -8.38577896e-02 3.38394940e-01\\n8.70238394e-02 1.62593469e-01 3.34079415e-02 -1.75831303e-01\\n-3.02891076e-01 -5.37948549e-01 -1.00566909e-01 5.72912507e-02\\n3.89182061e-01 5.86620048e-02 8.34489763e-02 -8.49191099e-03\\n5.35918064e-02 6.51558101e-01 -2.04254881e-01 -3.06933492e-01\\n1.34450763e-01 1.86007053e-01 -7.45788813e-02 -7.07061961e-02\\n7.64248893e-02 3.43336195e-01 -2.72923529e-01 3.51957530e-02\\n-1.80335760e-01 1.04238272e-01 2.40936533e-01 -5.18822409e-02\\n-1.46691486e-01 -3.63116264e-01 -1.19817019e-01 2.13153124e-01\\n-5.62546313e-01 -3.18529159e-01 6.55937493e-01 1.69471055e-01\\n8.93241465e-02 5.82798906e-02 1.91726893e-01 -4.78999391e-02\\n-1.93732589e-01 -1.79378957e-01 1.76786900e-01 3.99150960e-02\\n8.46013352e-02 2.00013831e-01 -9.15069133e-02 -4.43638533e-01\\n-3.65405273e+00 -1.80417344e-01 5.57221957e-02 -2.16846511e-01\\n1.96865469e-01 -1.54008791e-01 1.13001958e-01 -1.26782551e-01\\n-2.77021796e-01 5.87999411e-02 -1.87859878e-01 -2.12990791e-01\\n1.36187643e-01 3.23811203e-01 2.21168250e-01 2.28244528e-01\\n1.26086324e-01 -3.07552189e-01 -1.10397546e-03 4.13926870e-01\\n-1.31254688e-01 -5.19708812e-01 2.01134101e-01 -1.73543058e-02\\n2.95369476e-01 3.02609861e-01 -2.93488979e-01 -5.15297875e-02\\n-2.84671158e-01 -3.21647346e-01 1.61086455e-01 -2.64134288e-01\\n-8.95985961e-02 3.90048444e-01 2.06880972e-01 -5.77176958e-02\\n1.64156452e-01 -2.89775580e-01 -6.22943006e-02 -3.23340029e-01\\n1.39087975e-01 -5.36502004e-01 -9.58459303e-02 -5.49979731e-02\\n7.41481781e-01 -4.08422053e-01 1.48745805e-01 5.43498583e-02\\n3.83405536e-02 1.68305933e-01 1.13388680e-01 -1.37711480e-01\\n-1.60727710e-01 -2.55754650e-01 -9.91198514e-03 -2.29229152e-01\\n5.91568172e-01 5.70663154e-01 -2.11375773e-01 -3.89424413e-02\\n1.32358760e-01 -2.59089291e-01 -5.44301391e-01 -5.43766141e-01\\n-1.90121710e-01 -1.08825684e-01 -6.17098927e-01 -6.46651328e-01\\n-4.82969135e-02 -1.77191257e-01 -3.60663049e-02 4.10772413e-01\\n-1.59459904e-01 -3.39491725e-01 -2.11655825e-01 -3.72076541e-01\\n2.38791540e-01 -9.86162797e-02 -5.07791862e-02 -1.40017658e-01\\n-1.92202359e-01 -5.30235171e-01 -8.94910395e-02 1.18634114e-02\\n-3.75514589e-02 -1.73680425e-01 2.29940057e-01 -2.28304684e-01\\n-4.32053179e-01 -5.18529356e-01 4.99954104e-01 -7.67195877e-03\\n3.18934977e-01 2.12811425e-01 1.49624303e-01 1.29515380e-01\\n3.09919089e-01 -3.20411235e-01 1.13498129e-01 -4.08704728e-01\\n9.09916162e-02 1.69389054e-01 4.96629179e-01 -2.34345302e-01\\n1.25310868e-01 2.34390646e-02 -2.03795344e-01 -1.73669636e-01\\n3.52008194e-01 -5.70731908e-02 1.70348614e-01 -3.07011366e-01\\n3.11449587e-01 -2.83378541e-01 -2.27256149e-01 1.52462289e-01\\n1.73500478e-02 5.52225530e-01 -6.99145254e-03 -3.12685609e-01\\n-1.47209316e-01 4.92266357e-01 -2.52374232e-01 -2.91149691e-02\\n-2.34611601e-01 3.48516144e-02 -2.61596382e-01 4.06386822e-01\\n-2.39280164e-02 -1.01019949e-01 -2.50219136e-01 -9.87142473e-02\\n5.67541905e-02 2.96956778e-01 4.05433059e-01 1.56943098e-01\\n4.71533574e-02 -3.97662193e-01 1.09559581e-01 1.06699608e-01\\n3.92384082e-01 2.73458868e-01 1.37981817e-01 -9.81113464e-02\\n-2.39373278e-02 2.68778980e-01 -2.07633033e-01 2.64224529e-01\\n-2.17288226e-01 7.86127374e-02 -4.73005831e-01 -3.88711005e-01\\n-2.35718265e-01 -2.67476469e-01 9.55964401e-02 2.06315786e-01\\n1.39542207e-01 -4.15066369e-02 3.40873003e-02 -4.32593286e-01\\n2.78660059e-01 7.75712505e-02 3.13747793e-01 1.62353545e-01\\n-1.47387087e-01 5.31094313e-01 -9.23211426e-02 -1.93027630e-02\\n-1.00148626e-01 1.34893343e-01 -2.40341946e-01 -1.42186627e-01\\n-5.76126687e-02 -5.16118944e-01 -7.39175379e-02 3.58045697e-01\\n1.33834869e-01 -3.27100962e-01 -2.05918342e-01 1.99233532e-01\\n-2.94661783e-02 -5.32969058e-01 -1.46249935e-01 4.08891514e-02\\n3.89277220e-01 1.20783843e-01 2.22787216e-01 -5.01138210e-01\\n6.90986076e-03 4.00661752e-02 -7.14216828e-02 4.03163612e-01\\n-6.88392371e-02 7.22995540e-03 2.91326130e-03 -2.84324795e-01\\n3.34298730e-01 -2.41863951e-01 -2.12238356e-02 4.35231403e-02\\n1.82643220e-01 -1.84244752e-01 -2.67392218e-01 -3.28050628e-02\\n-1.01621144e-01 -1.94732815e-01 -2.11356115e-02 9.28728208e-02\\n-5.55513203e-02 1.28251106e-01 -6.03217006e-01 -2.66701251e-01\\n-2.56851703e-01 -1.70726895e-01 -2.73046847e-02 -3.88177931e-01\\n-5.63815609e-03 -8.98531079e-02 -5.11775911e-01 2.94380754e-01\\n-8.52831081e-02 2.20850557e-02 2.17043966e-01 -8.43321308e-02\\n-3.31014484e-01 -1.76363513e-01 2.91098952e-01 2.31171250e-01\\n-3.23097408e-01 -1.76223069e-01 -1.07879072e-01 -9.66995060e-01\\n1.99077353e-01 1.06915655e-02 -6.90839067e-02 1.18711203e-01\\n-2.86572352e-02 -3.70634198e-01 1.82055548e-01 -5.09319782e-01\\n-9.18113440e-02 -3.87641340e-02 -3.02337617e-01 -3.81228417e-01\\n1.13231614e-01 1.85672238e-01 -2.77727932e-01 4.40083146e-01\\n-3.88970673e-01 3.21915329e-01 -2.35065687e-02 8.29701573e-02\\n-1.47689611e-01 -1.45058513e-01 5.09721562e-02 -3.35019141e-01\\n-3.69671762e-01 -9.01376382e-02 -1.43321022e-01 -1.21432342e-01\\n-4.56349030e-02 -2.64179885e-01 -1.05055653e-01 -2.61708396e-03\\n2.68238187e-01 1.43156394e-01 -1.52140945e-01 -7.02191889e-02\\n1.20972924e-01 -3.92282397e-01 -3.18160504e-02 -2.48903632e-01\\n-1.26688406e-01 -1.08237855e-01 1.46992385e-01 1.04872912e-01\\n3.54236327e-02 -3.75292987e-01 2.62142450e-01 -3.00062656e-01\\n-2.87245572e-01 9.10059437e-02 1.80830836e-01 5.76909110e-02\\n3.01194131e-01 -4.65094179e-01 -8.72469991e-02 4.44143713e-01\\n9.57387537e-02 1.40904382e-01 3.07736427e-01 -1.10900603e-01\\n-2.69042850e-01 4.30029869e-01 -3.69489223e-01 -5.09288646e-02\\n7.83908725e-01 3.38351876e-01 1.94277927e-01 2.04525501e-01\\n1.37326777e-01 3.10297310e-01 4.44158882e-01 1.19708017e-01\\n2.10691541e-02 4.54800189e-01 8.74161124e-02 -6.25064850e-01\\n6.27248585e-02 1.11879274e-01 -2.81737536e-01 -2.33830795e-01\\n6.12611711e-01 3.86091083e-01 -3.12427223e-01 -3.53459537e-01\\n-1.69712156e-01 -1.30875319e-01 2.38891542e-01 -1.44318774e-01\\n1.04649961e-01 -1.29990354e-01 4.90545720e-01 -1.06933720e-01\\n5.33149876e-02 4.58107203e-01 -2.55324900e-01 -2.50051677e-01\\n-6.25605732e-02 1.83780521e-01 1.07071139e-01 5.42647541e-01\\n-2.58609056e-01 3.29797059e-01 1.81031018e-03 2.23683327e-01\\n-1.17190361e-01 6.49629980e-02 3.58218431e-01 5.34724556e-02\\n1.39362976e-01 1.00770570e-01 2.26585850e-01 4.42650199e-01\\n2.80875623e-01 4.57783580e-01 2.31022030e-01 -2.32531372e-02\\n4.20621693e-01 4.24853265e-01 3.07903945e-01 2.23433584e-01\\n-2.98549552e-02 -7.71939233e-02 5.42614721e-02 -5.79893216e-03\\n1.99025795e-01 3.22845250e-01 4.48922664e-02 9.02114034e-01\\n3.66207510e-01 3.05928946e-01 6.80964649e-01 -6.25916004e-01\\n-4.06780779e-01 4.88804504e-02 4.54970151e-01 -4.67326999e-01\\n-1.15761392e-01 2.47231834e-02 -3.23830873e-01 1.46203905e-01\\n-5.53568959e-01 -2.17055753e-01 -1.41743705e-01 -3.95824201e-02\\n6.01592399e-02 -9.71162394e-02 -3.03052634e-01 -1.11460380e-01\\n-1.21884130e-01 -5.95332310e-02 -5.35667181e-01 -1.99593082e-01\\n-2.40810275e-01 -2.36846045e-01 -1.80764094e-01 -1.65303960e-01\\n-6.06713295e-02 -2.65615165e-01 -1.42208546e-01 2.98326034e-02\\n2.57583439e-01 -1.29467160e-01 -9.14196447e-02 -8.67619216e-02\\n1.91464648e-01 2.21810520e-01 5.27695298e-01 -1.22102991e-01\\n1.13259822e-01 -8.16389024e-02 -1.65111929e-01 5.92556484e-02\\n1.42112523e-01 6.17391169e-02 -2.76884641e-02 4.42933500e-01\\n-3.05534720e-01 -2.91576058e-01 -6.22137114e-02 3.31866473e-01\\n-5.64794004e-01 6.98598847e-02 6.28677979e-02 2.60065317e-01\\n6.28395844e-03 9.75773409e-02 -2.74697989e-01 4.44726720e-02\\n-2.29628667e-01 -4.98106003e-01 2.32364729e-01 -5.01548946e-02\\n-1.58210844e-01 8.27104971e-02 2.23257557e-01 1.51190028e-01\\n-1.45603970e-01 -2.35383749e-01 2.30863527e-03 1.16091892e-01\\n7.44408891e-02 2.37303838e-01 -2.10784853e-01 -2.89057612e-01\\n-3.27812672e-01 1.97639823e-01 -3.14291835e-01 2.05503881e-01\\n-5.88432923e-02 2.87641495e-01 1.26970172e-01 2.35756472e-01\\n2.58210897e-01 1.25476317e-02 -9.92365330e-02 -2.08201453e-01\\n-2.19911724e-01 -2.02710077e-01 1.33314148e-01 -2.05924429e-04\\n2.15275779e-01 -3.84161532e-01 -1.18480779e-01 -2.07286224e-01\\n-2.25694269e-01 -4.85371411e-01 -2.79661678e-02 -1.75728783e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Data Scientist. This role is permanent position based in Basel Canton. Your Role: Design & implement Predictive Analytics & Data Science applications. Look for solutions for the analysis & visualization of data for different problems. Act as a business enabler & advise departments on technology, methodology & operationalization. Partake in the development of new ideas & areas of application. Your Skills: Several years of professional experience as a Data Analyst or Data Scientist. Experience in the application & communication of machine learning algorithms or deep learning (e.g. GLMs, Random Forests, Support Vector Machines, Neural Networks). Sound experience in dealing with complex data structures. Good knowledge of relevant tools (R or R Studio, SQL, Python) & common BI tools (SAS VA, SAS EG, DataRobot). Your Profile: Completed University Degree with quantitative orientation (mathematics, statistics, business informatics). Very good understanding of overall corporate relationships. Strong analytical & conceptual skills & highly team & customer-oriented. Open, creative & innovative with a high level of self-initiative. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers',\n", + " 'soft_skills': '[\"Communications\", \"Creativity\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"E-Learning Development\", \"Tooling\", \"Advising\", \"Analytics\", \"SAS (Software)\", \"Business Statistics\", \"Mathematical Statistics\", \"Visualization\", \"Python (Programming Language)\", \"Random Forest Algorithm\", \"Business Informatics\", \"Machine Learning Methods\", \"Data Science\", \"Operationalization\", \"Conceptualization\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Deep Learning\", \"Receivables\", \"Data Structures\", \"Predictive Analytics\", \"Algorithms\", \"Support Vector Machine\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " 'languages': \"['English', 'Afar']\"},\n", + " {'company_id': '87',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Geneva',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.59030765e-01 3.05771738e-01 5.39892972e-01 1.05333783e-01\\n6.34533286e-01 -9.08267200e-02 -8.61300528e-03 2.87301600e-01\\n5.87390922e-03 -4.79659677e-01 -8.92648548e-02 -2.97052383e-01\\n-7.39292577e-02 1.21020332e-01 2.20781658e-02 5.07072091e-01\\n3.03567469e-01 8.14346448e-02 -1.87940747e-01 2.96953142e-01\\n7.43706524e-02 -9.29804146e-02 4.58251089e-02 7.89629340e-01\\n4.74143952e-01 -1.43151702e-02 -5.69073483e-02 1.16670132e-01\\n-2.57331669e-01 -2.64452934e-01 4.85168397e-01 -3.23529169e-02\\n-1.77421510e-01 -3.80118400e-01 1.02973044e-01 1.70703515e-01\\n-1.99125260e-01 -1.37598187e-01 -1.47851795e-01 1.84715852e-01\\n-5.14566362e-01 -7.57456720e-02 -6.60754070e-02 8.39721486e-02\\n-3.16365123e-01 -3.91451836e-01 2.58635208e-02 -1.45247295e-01\\n1.44362122e-01 1.18642278e-01 -4.94508386e-01 2.12052822e-01\\n-2.75080264e-01 -1.84870929e-01 2.35694036e-01 6.70478582e-01\\n1.51512399e-03 -4.02477354e-01 -4.97543126e-01 -3.59198302e-01\\n9.25767720e-02 -1.50658906e-01 1.22838624e-01 -3.70105982e-01\\n3.99690211e-01 4.66080830e-02 -3.78477722e-02 2.71259785e-01\\n-8.29329014e-01 -2.01589614e-02 -3.52537245e-01 -2.43826732e-02\\n-4.90647256e-01 -5.53952791e-02 -4.04283166e-01 -1.27910212e-01\\n-6.88232630e-02 4.70293909e-01 -1.91524401e-02 9.96799320e-02\\n-2.43997827e-01 3.20378065e-01 -3.00431609e-01 3.05811107e-01\\n2.13524207e-01 2.67991275e-01 1.98792115e-01 3.72229755e-01\\n-4.57275450e-01 3.74540091e-01 1.32012665e-01 -3.45818639e-01\\n2.93994308e-01 1.82646096e-01 3.72238606e-01 -1.20889582e-02\\n8.55105221e-02 1.32453173e-01 -2.79835612e-01 3.51269901e-01\\n2.60522366e-01 -3.23884189e-01 9.79204290e-03 -1.84816107e-01\\n7.83771276e-02 -1.14791347e-02 4.54166234e-02 1.35431662e-01\\n-4.48100626e-01 3.87194514e-01 5.47514111e-02 -1.89774543e-01\\n-1.00859955e-01 -5.31426430e-01 -8.41822624e-02 1.87524240e-02\\n3.56121100e-02 2.73803324e-01 1.75294876e-01 2.39225447e-01\\n2.60785371e-01 2.59427428e-02 1.26777500e-01 8.75468612e-01\\n-6.65241927e-02 6.24817796e-02 -1.93348557e-01 3.70736480e-01\\n1.06152520e-01 -3.87865722e-01 3.76142263e-01 1.93805918e-01\\n-4.00710292e-02 -9.28439051e-02 -3.11713934e-01 3.63564134e-01\\n-1.03381619e-01 -1.68766648e-01 -2.56578386e-01 1.59328997e-01\\n2.22570561e-02 -4.50528562e-01 6.80511534e-01 2.96660811e-02\\n1.48321137e-01 -1.88584358e-01 3.07629183e-02 -1.52311921e-01\\n-4.35568169e-02 2.51223862e-01 9.43309814e-02 1.46918371e-01\\n-3.62109125e-01 -2.34360546e-01 -1.65322587e-01 1.82315782e-01\\n-3.68251473e-01 4.00787517e-02 -1.69931367e-01 -1.06244527e-01\\n2.35770434e-01 6.47546351e-02 -3.63037944e-01 1.42801493e-01\\n-1.76551580e-01 -1.61157206e-01 1.82815436e-02 4.30654168e-01\\n-2.19070479e-01 2.14081004e-01 -8.94428194e-02 -1.26985952e-01\\n6.53856993e-01 1.14813000e-01 1.87033758e-01 7.39253685e-02\\n2.65714169e-01 -1.08091660e-01 1.80647612e-01 1.63359404e-01\\n-6.92936718e-01 4.49766338e-01 -8.54044482e-02 -1.96179986e-01\\n-6.70234859e-03 -4.67847288e-02 3.97213846e-01 -3.42820287e-01\\n1.02030039e-01 -1.31503850e-01 -3.38540733e-01 -2.53503203e-01\\n-2.67525852e-01 -5.99108450e-02 3.87871921e-01 -4.51569259e-01\\n-1.08800761e-01 2.91868091e-01 -6.89661026e-01 -1.67544901e-01\\n2.24679321e-01 2.17188537e-01 1.47019506e-01 1.11050546e-01\\n-1.26096845e-01 -6.39830828e-01 7.90960044e-02 -4.17203248e-01\\n-3.09273958e-01 1.21181607e-01 -4.10011172e-01 2.27763891e-01\\n9.26660299e-02 2.00748760e-02 -9.76395607e-02 2.06245109e-01\\n-3.16069722e-01 6.30938187e-02 1.39655471e-01 1.21952645e-01\\n3.34119260e-01 1.29984662e-01 -4.83021438e-01 4.64959651e-01\\n-1.76645607e-01 5.52956462e-01 1.32602856e-01 -8.21493864e-01\\n5.68687677e-01 2.32872188e-01 -8.21049698e-03 -3.41377825e-01\\n5.64420342e-01 -2.94616103e-01 -9.45989937e-02 7.32582808e-02\\n-4.05787438e-01 -3.41530144e-01 2.59587258e-01 -2.25991756e-01\\n-2.30908424e-01 5.12654424e-01 6.33081645e-02 1.76561415e-01\\n3.35086226e-01 -2.59798169e-01 -2.09386185e-01 9.08679739e-02\\n-1.54719874e-01 -2.49461696e-01 -6.68012083e-01 -7.10431784e-02\\n-1.61639228e-01 -4.31262940e-01 -1.70586914e-01 -4.59480703e-01\\n-2.30761081e-01 -3.55232269e-01 -1.67282999e-01 1.71095833e-01\\n2.25346655e-01 9.81860682e-02 -5.55006117e-02 -9.08858515e-03\\n-2.61083301e-02 -6.74250126e-01 -1.11320503e-01 7.37647265e-02\\n4.16855007e-01 2.46798277e-01 1.86147928e-01 -6.19552583e-02\\n1.37825996e-01 6.32594109e-01 -3.01396310e-01 -3.20776671e-01\\n1.78155988e-01 1.86649293e-01 -6.21309280e-02 -1.03117228e-01\\n1.72680840e-02 3.02052557e-01 -2.99066454e-01 5.02593368e-02\\n-7.34004602e-02 -1.20045662e-01 3.79832238e-01 -1.43049890e-02\\n-2.35488400e-01 -1.02642223e-01 -1.27101332e-01 1.79272294e-01\\n-6.03544831e-01 -2.40956366e-01 5.63507676e-01 2.17952460e-01\\n1.15734547e-01 4.32819873e-02 1.74331978e-01 -1.23426132e-03\\n-3.16734642e-01 -3.15939426e-01 2.60061234e-01 1.30881459e-01\\n2.71845199e-02 7.08227605e-02 2.23778337e-02 -6.08213425e-01\\n-3.17743540e+00 -1.70196354e-01 1.97488070e-01 -1.24468379e-01\\n2.21855685e-01 -1.89477116e-01 9.38503742e-02 -3.80806178e-02\\n-3.51354808e-01 1.21730901e-02 -1.36174113e-01 -2.10491180e-01\\n1.19224511e-01 2.76874959e-01 2.04873800e-01 1.55968249e-01\\n1.57576278e-01 -1.70956895e-01 1.81853212e-02 3.36094767e-01\\n-1.87098414e-01 -6.74995184e-01 8.84502307e-02 4.89529371e-02\\n1.60497069e-01 1.73584610e-01 -3.77615869e-01 -1.26529232e-01\\n-4.25991803e-01 -2.16349274e-01 1.24512464e-01 -3.68418097e-01\\n-1.50319219e-01 3.33108127e-01 2.75634676e-01 -4.50410992e-02\\n4.15721200e-02 -3.86071026e-01 -1.12181097e-01 -4.49187577e-01\\n1.52586967e-01 -5.31645000e-01 3.62432227e-02 -1.84321448e-01\\n7.68089414e-01 -2.66724169e-01 1.41376495e-01 9.10261795e-02\\n2.11971268e-01 1.76255971e-01 1.75027803e-01 -2.43053194e-02\\n-2.04278857e-01 -2.16697186e-01 -7.91370794e-02 -1.25030801e-01\\n6.51459098e-01 4.21992242e-01 -8.70550871e-02 4.54677045e-02\\n1.32283255e-01 -3.13277006e-01 -4.72089291e-01 -3.54025781e-01\\n-1.02192104e-01 -1.91666216e-01 -6.30087495e-01 -5.00930011e-01\\n-1.25017822e-01 -1.09933004e-01 -9.57808569e-02 6.21958256e-01\\n-2.20591068e-01 -2.63849050e-01 -1.62353277e-01 -5.23940206e-01\\n3.04816455e-01 -1.56880111e-01 6.68366775e-02 -2.12421015e-01\\n-2.06047237e-01 -4.98067737e-01 6.55934662e-02 -1.14533730e-01\\n-6.44067973e-02 -2.65470207e-01 1.19246498e-01 -2.58918673e-01\\n-3.62003922e-01 -5.80730617e-01 4.64366287e-01 1.43551931e-01\\n3.57930422e-01 1.30190820e-01 2.80367404e-01 7.39007294e-02\\n3.14366579e-01 -9.95346829e-02 -3.66679728e-02 -4.07696277e-01\\n1.32289737e-01 -4.54177521e-03 5.34758091e-01 -2.32690901e-01\\n1.09110966e-01 6.20269477e-02 -1.85508043e-01 -8.44253041e-03\\n4.24233377e-01 -6.90897554e-02 9.39006358e-02 -7.29631037e-02\\n2.88661927e-01 -2.90754288e-01 -1.27394795e-01 7.13018849e-02\\n2.08074283e-02 6.66703463e-01 -9.58561338e-03 -3.97192240e-01\\n-1.01832286e-01 4.55227613e-01 -2.20513158e-03 -1.57666598e-02\\n-1.91517413e-01 4.60521840e-02 -2.32737124e-01 3.05560172e-01\\n6.33228347e-02 -1.86548799e-01 -2.26331174e-01 -1.20969936e-01\\n-8.47954601e-02 3.78145933e-01 2.77770400e-01 9.43115205e-02\\n3.92162912e-02 -2.61308610e-01 -6.68023825e-02 1.97399005e-01\\n2.85816401e-01 4.56207633e-01 1.59711540e-01 -2.90865600e-01\\n3.60465236e-02 3.24102104e-01 -2.31038034e-01 2.34874040e-01\\n-2.35038638e-01 1.71805829e-01 -6.20764494e-01 -2.47152835e-01\\n-2.84685701e-01 -3.32703859e-01 2.85452843e-01 3.09866697e-01\\n1.50265574e-01 -1.14759177e-01 1.23647988e-01 -4.74036723e-01\\n1.83292627e-01 1.16261922e-01 7.70372897e-02 1.37081489e-01\\n-6.97835833e-02 6.30670607e-01 -3.63648161e-02 -1.43692762e-01\\n-5.40530495e-02 4.12623286e-02 -1.43003777e-01 -2.39440635e-01\\n-1.33306161e-02 -5.71379185e-01 -1.56605408e-01 5.17979622e-01\\n1.52683213e-01 -1.61630690e-01 -2.49379769e-01 2.56131768e-01\\n-4.10065614e-02 -2.50987291e-01 -3.06443542e-01 -3.12646106e-02\\n3.70909214e-01 9.42561030e-02 2.66026884e-01 -5.55427074e-01\\n-2.71757729e-02 -3.14550325e-02 3.10596749e-02 4.40249085e-01\\n6.74048960e-02 9.54427570e-02 -8.45930725e-02 -1.55234963e-01\\n4.78581667e-01 -2.33779028e-02 -1.05317608e-01 8.31170976e-02\\n1.21630549e-01 -1.95525244e-01 -4.05170023e-01 5.08420467e-02\\n-5.22412509e-02 -2.79171795e-01 -5.24923578e-03 1.26784906e-01\\n3.39550823e-02 6.80388808e-02 -7.15861201e-01 -2.64017224e-01\\n-2.74708569e-01 -2.64740605e-02 -3.03358920e-02 -5.99282026e-01\\n9.67526622e-03 -6.56723976e-02 -5.92737317e-01 2.06087291e-01\\n-4.85515557e-02 -1.27572209e-01 2.66050547e-01 9.21314359e-02\\n-1.70739204e-01 -1.64208233e-01 1.05365485e-01 2.35541642e-01\\n-3.14189494e-01 -3.14502895e-01 2.35910323e-02 -1.03202939e+00\\n1.49435431e-01 4.67146300e-02 -1.52312815e-01 1.75042748e-01\\n-4.47638594e-02 -7.28783727e-01 4.44093626e-03 -5.02347708e-01\\n-9.28632692e-02 -3.69641297e-02 -3.32820266e-01 -3.16317260e-01\\n2.41263881e-01 2.59111207e-02 -3.06516767e-01 4.02457356e-01\\n-2.91539848e-01 3.31742018e-01 -1.40207082e-01 8.31270814e-02\\n1.50313210e-02 -2.35611007e-01 1.05457276e-01 -2.30357647e-01\\n-4.41213667e-01 -2.25564048e-01 -2.90609598e-01 -1.89984217e-01\\n-2.20973082e-02 -3.63293320e-01 -8.30393881e-02 -4.06620838e-03\\n4.37233597e-01 6.93235546e-02 -1.43981159e-01 -1.81296349e-01\\n2.38894504e-02 -4.92097497e-01 9.41353142e-02 -1.74424797e-01\\n-1.44561499e-01 -1.29146457e-01 2.23065168e-01 1.33950740e-01\\n2.02414483e-01 -3.79122019e-01 3.54407281e-01 -4.11331624e-01\\n-3.16368192e-01 -1.12294346e-01 1.53473496e-01 1.20775867e-02\\n2.89116472e-01 -5.55721045e-01 -4.86623570e-02 3.54006022e-01\\n1.67378843e-01 1.01174437e-01 1.94381908e-01 -1.20795116e-01\\n-4.15558554e-02 3.22082102e-01 -3.85399282e-01 1.92366466e-01\\n7.77423143e-01 1.56715289e-01 2.55483031e-01 2.02775508e-01\\n1.49902433e-01 1.92512453e-01 5.22049129e-01 -4.63298298e-02\\n-8.48824233e-02 3.41965020e-01 1.19712472e-01 -4.85389531e-01\\n-9.57515687e-02 -1.38722792e-01 -1.01346597e-01 -4.18860018e-01\\n6.03593826e-01 3.72973472e-01 -3.84411007e-01 -1.98999465e-01\\n-2.21729815e-01 -1.40847385e-01 2.16368303e-01 -4.81138900e-02\\n-5.56027144e-03 7.63970613e-03 4.95413125e-01 -1.43391997e-01\\n2.70427555e-01 6.23119593e-01 -2.05229759e-01 -1.98007613e-01\\n-1.64004564e-01 1.38220489e-01 8.90119374e-02 4.81946826e-01\\n-2.51306415e-01 3.35482627e-01 3.31126861e-02 1.26351595e-01\\n-1.85365856e-01 1.15142856e-02 1.81594223e-01 5.60680330e-02\\n2.84443408e-01 1.05913840e-01 4.42639053e-01 4.89554703e-01\\n2.98851520e-01 4.61419255e-01 3.37799907e-01 3.98081280e-02\\n4.87007201e-01 6.28740311e-01 3.27270508e-01 1.31242365e-01\\n-1.04074046e-01 6.15621842e-02 1.32443964e-01 5.46563454e-02\\n3.57561767e-01 4.37979758e-01 9.83204097e-02 8.84886146e-01\\n3.41650814e-01 4.14826632e-01 7.38113463e-01 -6.91786230e-01\\n-4.12733614e-01 1.05300061e-01 5.08996606e-01 -3.75417709e-01\\n4.28313650e-02 1.09011978e-01 -2.05224708e-01 1.95717663e-01\\n-5.24787784e-01 -2.68553376e-01 -7.20147416e-03 1.54804692e-01\\n4.51246761e-02 -1.79716766e-01 -2.53418922e-01 6.52807131e-02\\n-2.82835457e-02 -1.56747341e-01 -4.23655570e-01 -1.46627933e-01\\n-2.98509896e-01 -3.21703963e-04 -8.41278657e-02 -8.06338936e-02\\n-5.42402156e-02 -2.03423023e-01 -7.59879276e-02 -7.42149875e-02\\n3.90399307e-01 -1.30170211e-01 -1.33048460e-01 -5.94723858e-02\\n2.52007753e-01 2.21921444e-01 5.78148663e-01 -3.06925196e-02\\n1.31111592e-01 -1.95450708e-01 -1.55934274e-01 1.56199068e-01\\n1.13677546e-01 3.99182588e-02 -1.48708262e-02 3.24543953e-01\\n-2.24775285e-01 -2.28666738e-01 1.37617216e-01 2.02691942e-01\\n-4.62405682e-01 -3.38517735e-03 -1.16616607e-01 4.38019857e-02\\n1.11007690e-02 1.05276942e-01 -2.42747754e-01 -2.58832378e-03\\n-1.45034805e-01 -4.46990609e-01 3.43142748e-01 -1.85870260e-01\\n-1.21610701e-01 2.49618702e-02 3.22385073e-01 1.82445332e-01\\n-2.71367848e-01 -3.05650681e-02 -9.76397097e-02 2.23537922e-01\\n7.04431161e-02 2.99833775e-01 -1.97206497e-01 -3.89607996e-01\\n-3.22382808e-01 1.88481301e-01 -9.56893116e-02 6.66301772e-02\\n-3.27497721e-02 3.94575268e-01 9.35088024e-02 6.05378747e-02\\n3.99799466e-01 -1.10708326e-02 -2.55383015e-01 -2.16320395e-01\\n-2.32584447e-01 -1.71583980e-01 -7.31828436e-03 -5.69336824e-02\\n2.30353102e-01 -3.11911047e-01 -1.28770679e-01 -1.94872081e-01\\n-9.02821422e-02 -4.46041435e-01 -3.26940343e-02 -9.28692371e-02]]',\n", + " 'job_description': \"Open Web Technology is a technology and strategy consulting firm. We help our clients leverage new technologies to reshape their business, invent new products or transform their organization. With a large growth every year and now over 150 employees, we're a fast growing and highly connected team. Beginning of 2016, we created together with Swisscom Entreprise the joint venture Swisscom Digital Technology SA. Operating under the Open Web Technology brand, it is our goal to become a leading provider of digital transformation consulting services for large companies in Switzerland in the Telecommunications, Banks, Insurances, Media, Healthcare and Consumer Goods industries. Learn more about us at https://www.openwt.com/ Open Web Technology has an opening for a Data Scientist that will join our Team in Geneva. You bring value out of data. You enthusiastically fetch information from various sources and analyze it for better understanding about how the business performs and build AI tools that automate certain processes within the company. You help discover the information hidden in vast amounts of data, and help making smarter decisions. The main focus will be in applying machine learning and data mining techniques, doing statistical analysis, and building high quality prediction systems integrated with our clients products or processes. What responsibilities we can offer you Select features and data to build and optimize classifiers using i) machine learning techniques ii) data mining methods Extend the project’s data with third party sources of information when needed Enhance data collection procedures to include information that is relevant for building analytic systems; Automate and integrate work-/data-flow from diverse systems. Process, cleanse, and verify the integrity of data used for analysis Apply state-of-the-art neural network/deep learning algorithms if suitable in a project context Contribute to the creation of an AI value proposition at Open Web Technology and to the acquisition of new clients thanks to a clear value proposition definition Requirements What you bring At least three years experience working as a Data Scientist in a similar environment Master degree (or ongoing Master/PhD) in one of Europe’s leading universities in one of the following fields: Statistics, Mathematics, Data Mining, Computer Science, Computational Linguistics or related Ability to learn fast, take initiative, lead oneself and work independently with minimal management direction. Able and willing to acquire new skills Above-average communication and analytical skills. Independent resolution of complex tasks Dynamic, dedicated and a demanding team player Solid understanding of the main machine learning methods (supervised and unsupervised learning), and optimization techniques. Experience with data visualisation tools, such as ggplot, tableau, etc... Proficiency in using SQL databases such as MySQL, Microsoft SQL, MariaDB, etc… Experience with NoSQL databases such as MongoDB, Cassandra, etc… Experience in text analytics and Natural Language Processing (text classification, NER, topics mining, sentiment analysis) Understanding of state-of-the-art deep learning techniques. Experience working with one or more frameworks such as TensorFlow, Torch, Caffe, Theano, Keras etc. Fluency in English; French and German a plus Benefits Why join Open Web Technology? From your first day, you will actively contribute to the digitalization of Switzerland by serving local and global companies. From digital strategy to complex software engineering, you will help our clients reshape their business, invent new products and transform their organization using the latest technologies. You will take part in every step of our clients' digital journey and work for industries including finance, healthcare, telecommunication, media and many others. More than the diverse projects you will be part of, becoming an Openwebber will make you feel valued, stimulated and encouraged in a passionate, focused and creative team. Can we spark your interest? We look forward to receiving your application!\",\n", + " 'soft_skills': '[\"Analytical Skills\", \"Decisiveness\", \"Management\", \"Supervision\", \"Communications\", \"Operations\", \"Integration\", \"Creativity\", \"Sourcing\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Automation\", \"MySQL\", \"Sentiment Analysis\", \"Tooling\", \"Tableau (Business Intelligence Software)\", \"NoSQL\", \"Apache Cassandra\", \"Hyper SQL Database (HSQLDB)\", \"Natural Language Processing\", \"Theano (Software)\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Branding\", \"Process Automation Systems\", \"Industrialization\", \"Mathematical Statistics\", \"Value Propositions\", \"Activism\", \"Open Web\", \"Component Object Model (COM)\", \"Digital Transformation\", \"Systems Integration\", \"MariaDB\", \"Keras (Neural Network Library)\", \"Quality Management Systems\", \"Software Engineering\", \"Data-Flow Analysis\", \"Machine Learning Methods\", \"Computational Linguistics\", \"Digital Technology\", \"Library For WWW In Perl\", \"Finance\", \"Digitization\", \"Bank Insurance Model (BIM)\", \"TensorFlow\", \"Deep Learning\", \"Data Mining\", \"Java Data Mining\", \"Receivables\", \"Consumer Packaged Goods\", \"Recurrent Neural Network (RNN)\", \"Text Classification\", \"Algorithms\", \"Data Collection\", \"Microsoft SQL Servers\", \"New Product Development\", \"Telecommunications\", \"Unsupervised Learning\", \"Feature Selection\", \"Joint Ventures\", \"Text Processing\", \"Integrated Delivery Systems\"]',\n", + " 'languages': \"['English', 'Maori', 'Swati', 'Panjabi']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'junior software engineer (java/.net)',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.58827543e-01 2.78695405e-01 4.78867859e-01 -1.40555575e-01\\n4.73880589e-01 -2.29799300e-01 1.18673015e-02 5.41712344e-01\\n-1.29821241e-01 -4.76364672e-01 -1.58624187e-01 -1.81938067e-01\\n4.80378605e-02 7.95653313e-02 2.17752740e-01 3.67459863e-01\\n4.41360325e-01 7.91803077e-02 -2.36952901e-01 2.59149373e-01\\n8.82902965e-02 -9.55050960e-02 2.38359142e-02 7.61771441e-01\\n3.76127362e-01 -8.69915858e-02 2.29717679e-02 3.41004245e-02\\n-1.39177978e-01 -2.78147906e-01 4.10465032e-01 -4.33184467e-02\\n-1.17008306e-01 -2.25145057e-01 1.31188542e-01 1.38856128e-01\\n-1.25351340e-01 -5.25613613e-02 -1.53748631e-01 4.86257859e-02\\n-5.14377654e-01 -2.02427134e-01 -2.05447972e-02 -1.84176508e-02\\n-2.09004015e-01 -3.33692968e-01 1.72833309e-01 -1.39994975e-02\\n1.31572768e-01 -9.98403784e-03 -4.73160774e-01 2.33639076e-01\\n-1.81318372e-01 -1.78376257e-01 3.14814419e-01 5.54818749e-01\\n-3.95433977e-02 -4.44730997e-01 -3.76411676e-01 -2.83830196e-01\\n3.44227068e-02 -9.47789662e-03 1.22087888e-01 -2.85488904e-01\\n3.67980450e-01 -7.87562970e-03 9.07403044e-03 3.48818094e-01\\n-8.14982414e-01 -1.68173745e-01 -2.94127077e-01 -6.67742416e-02\\n-3.78268152e-01 -7.66451210e-02 -4.20350105e-01 -2.10033372e-01\\n-1.07887097e-01 2.65489012e-01 5.23711927e-02 2.09682733e-02\\n-1.86930656e-01 3.08594942e-01 -1.73784181e-01 3.63948613e-01\\n2.48869896e-01 3.63521367e-01 1.64428174e-01 2.72433609e-01\\n-3.77314508e-01 4.13331836e-01 1.41549259e-01 -3.45169276e-01\\n2.43585914e-01 1.02383338e-01 4.17286038e-01 4.24816944e-02\\n2.50019222e-01 1.57336622e-01 -2.64836699e-01 3.02274495e-01\\n2.93807298e-01 -2.79321969e-01 -2.38636043e-02 -9.86920949e-03\\n-5.60049936e-02 2.31792517e-02 -6.16665813e-04 1.17856622e-01\\n-3.47929269e-01 4.11345243e-01 1.00593649e-01 -2.85953283e-01\\n-5.89340702e-02 -5.28664768e-01 -1.35897920e-01 -3.37957442e-02\\n-6.15946315e-02 2.11408257e-01 2.33356938e-01 2.40028992e-01\\n1.73432574e-01 -7.98824802e-02 1.34229273e-01 7.63626695e-01\\n-8.75543430e-02 -7.15625882e-02 -3.16814929e-01 3.73807162e-01\\n-2.67740134e-02 -4.11100835e-01 2.59840757e-01 2.11753845e-01\\n1.16921723e-01 -1.25389710e-01 -2.14210510e-01 3.41955751e-01\\n3.45799513e-02 -1.71745077e-01 -3.71429801e-01 2.30877593e-01\\n-1.22679412e-01 -3.75482708e-01 5.65133452e-01 7.24253282e-02\\n1.81915075e-01 3.86341778e-03 -4.98558767e-03 -1.22229494e-01\\n-3.95373395e-03 1.60084143e-01 6.99667186e-02 1.24577120e-01\\n-2.30207920e-01 -2.21925631e-01 -2.30002046e-01 3.13030601e-01\\n-3.64954174e-01 1.97183296e-01 -1.34738863e-01 -2.07204714e-01\\n2.64092565e-01 -1.13843828e-02 -2.69747227e-01 2.82127708e-01\\n-3.53487544e-02 1.22332918e-02 -1.36799812e-01 3.96395475e-01\\n-2.09637105e-01 3.49883676e-01 5.23413643e-02 -2.85093896e-02\\n5.61599016e-01 8.99781883e-02 2.71654595e-02 -2.03372002e-01\\n2.06880957e-01 -2.98014246e-02 1.15183085e-01 6.57073855e-02\\n-6.60079360e-01 3.07879359e-01 -9.49652120e-02 -1.27565965e-01\\n9.22757983e-02 -6.22084215e-02 1.81700677e-01 -3.32530349e-01\\n-9.13730934e-02 -2.39496194e-02 -3.23593050e-01 -1.28294677e-01\\n-3.21318537e-01 -1.14021793e-01 3.54481518e-01 -4.49458659e-01\\n-2.99405996e-02 2.49697998e-01 -5.77152431e-01 -2.73775402e-02\\n1.21829838e-01 1.55680776e-01 9.72019136e-02 2.03857154e-01\\n-2.03631241e-02 -5.92750371e-01 4.81511131e-02 -4.10569489e-01\\n-2.38378733e-01 1.76799178e-01 -2.41349548e-01 2.00967252e-01\\n1.55110434e-01 7.11145550e-02 -1.30593866e-01 1.42261624e-01\\n-2.02240467e-01 7.53328204e-02 2.06379533e-01 5.90732023e-02\\n3.36558282e-01 -2.42210203e-03 -3.62746119e-01 4.73185003e-01\\n-1.79395214e-01 4.32618946e-01 8.20220932e-02 -7.40790486e-01\\n4.99322742e-01 3.16077262e-01 1.87335107e-02 -2.89647877e-01\\n7.35326290e-01 -2.16304600e-01 -1.00801133e-01 3.21742892e-02\\n-5.23423493e-01 -3.58700395e-01 1.92116454e-01 -2.96618879e-01\\n-2.33964980e-01 4.45686579e-01 1.65504087e-02 1.98386401e-01\\n2.95771122e-01 -1.97146222e-01 -5.09892814e-02 1.61430672e-01\\n-1.64429456e-01 -2.37755612e-01 -3.73731345e-01 -7.80293196e-02\\n-4.40856926e-02 -3.88676941e-01 -2.37136006e-01 -5.08576810e-01\\n-2.19527751e-01 -3.54987919e-01 -1.41787678e-01 2.72372574e-01\\n1.58604011e-01 8.70653242e-02 1.32660553e-01 4.78086174e-02\\n-2.08709374e-01 -5.99440336e-01 1.99819263e-02 -8.94805416e-03\\n2.47664079e-01 1.52464449e-01 7.94050545e-02 5.17726168e-02\\n3.41715738e-02 6.48942888e-01 -3.20831656e-01 -1.91042066e-01\\n1.09203830e-01 1.48161173e-01 1.04698956e-01 -3.97733003e-02\\n5.07630408e-02 3.09694499e-01 -3.20202678e-01 -9.60228369e-02\\n-2.18024597e-01 -3.28182168e-02 4.66330886e-01 -1.81492523e-03\\n-2.81329036e-01 -2.52997398e-01 1.24677047e-02 2.45771989e-01\\n-4.65997130e-01 -2.84224808e-01 6.24197304e-01 1.23508401e-01\\n1.34853527e-01 1.71850488e-01 2.86073506e-01 -7.81232268e-02\\n-1.75063163e-01 -1.45206824e-01 1.15165994e-01 1.11263581e-01\\n2.11658254e-01 8.14656988e-02 -1.33688629e-01 -5.13552487e-01\\n-3.52109337e+00 -1.17624223e-01 2.69350410e-01 -1.77220568e-01\\n2.68861860e-01 2.68066535e-03 6.19634688e-02 -1.62257150e-01\\n-4.13883030e-01 4.62229177e-02 -1.27573296e-01 -2.28280216e-01\\n8.44606683e-02 3.29648674e-01 1.57195091e-01 3.08645725e-01\\n1.29263967e-01 -2.22141087e-01 -1.22946640e-02 3.62971544e-01\\n-1.39546975e-01 -6.86518013e-01 1.83385700e-01 2.85891108e-02\\n2.96255052e-01 2.73318321e-01 -4.13080931e-01 -1.90542772e-01\\n-2.95050502e-01 -1.80301338e-01 1.26884058e-01 -3.64466250e-01\\n-3.32780965e-02 3.19563150e-01 2.83203334e-01 -6.28919676e-02\\n1.33865908e-01 -2.76239842e-01 -4.78464812e-02 -4.32089269e-01\\n6.00930601e-02 -5.00135064e-01 -7.45047629e-02 -5.60372248e-02\\n7.28386939e-01 -3.76320213e-01 2.14657098e-01 1.32776007e-01\\n9.21246503e-03 1.30457014e-01 3.32576558e-02 7.75809363e-02\\n-1.70795739e-01 -3.18200201e-01 -9.86755341e-02 -1.54593468e-01\\n5.84324300e-01 5.08086622e-01 -1.61577046e-01 5.21287620e-02\\n1.53204089e-03 -2.86226988e-01 -5.30879080e-01 -2.80238062e-01\\n-1.05648682e-01 -2.30384082e-01 -6.41126037e-01 -5.36254942e-01\\n-3.83740999e-02 -1.15055107e-01 -4.74285781e-02 5.37634552e-01\\n-2.52482742e-01 -3.95210832e-01 -1.65556222e-02 -5.78961492e-01\\n1.98314011e-01 -1.45615041e-01 8.62899870e-02 -1.42745286e-01\\n-1.24511473e-01 -5.49315929e-01 2.70422958e-02 4.75546084e-02\\n-2.47622523e-02 -2.47174740e-01 1.22326352e-01 -1.49212986e-01\\n-2.52571464e-01 -5.40702343e-01 3.74891996e-01 1.36767313e-01\\n2.08872885e-01 1.40689880e-01 2.40576521e-01 1.01999514e-01\\n1.67921364e-01 -9.52362344e-02 -3.61311324e-02 -4.44859505e-01\\n8.95510316e-02 -1.04696140e-01 3.82164299e-01 -3.26634869e-02\\n6.03698343e-02 2.00049117e-01 -1.46399140e-01 -1.01913661e-01\\n3.26237798e-01 1.08943908e-02 1.12008460e-01 -2.20066637e-01\\n3.19959432e-01 -2.72757381e-01 -1.28581539e-01 -1.83506012e-02\\n4.90713445e-03 5.74966431e-01 -7.06424713e-02 -3.90848041e-01\\n-1.47595271e-01 6.00507021e-01 -6.79052100e-02 -3.97872925e-02\\n-1.17952898e-01 7.98804238e-02 -2.74480075e-01 5.67922881e-03\\n-3.06092072e-02 -2.11964339e-01 -2.54958183e-01 -1.58343881e-01\\n-2.52743382e-02 2.50926197e-01 2.46412784e-01 1.84663594e-01\\n-1.68434650e-01 -4.49379891e-01 -5.07851020e-02 2.13145614e-01\\n2.47640848e-01 4.30739164e-01 1.75509617e-01 -3.08284581e-01\\n9.53409970e-02 2.99105197e-01 -1.54446036e-01 2.29702756e-01\\n-2.52739400e-01 7.84975961e-02 -4.36804354e-01 -2.90216118e-01\\n-2.59949058e-01 -3.24193925e-01 1.25374228e-01 1.87814057e-01\\n6.76294044e-02 1.33603681e-02 1.14257529e-01 -4.02388960e-01\\n3.39951277e-01 5.46802655e-02 1.78838268e-01 2.34859586e-01\\n-1.44989258e-02 5.66608250e-01 -2.93977652e-02 -2.72655915e-02\\n-2.06471995e-01 1.31502539e-01 -1.16314121e-01 -1.70047715e-01\\n-1.53268073e-02 -4.18426305e-01 -1.25635967e-01 3.95572037e-01\\n-1.51341744e-02 -1.98892385e-01 -1.84293345e-01 1.33103088e-01\\n-1.24523873e-02 -4.26679999e-01 -1.68256223e-01 4.72400412e-02\\n3.17882925e-01 1.31157205e-01 2.37877235e-01 -4.51426506e-01\\n-4.36960720e-02 -8.59291479e-02 -9.19071771e-03 5.38052976e-01\\n9.78387520e-02 2.43968032e-02 -1.85595438e-01 -3.31986129e-01\\n3.40757281e-01 -2.35036463e-01 -4.49520610e-02 -9.49716642e-02\\n1.09524071e-01 -2.29051903e-01 -3.94466668e-01 1.12901796e-02\\n-2.28889715e-02 -1.57082766e-01 4.99600731e-02 -5.62684201e-02\\n5.32312579e-02 1.14234164e-01 -6.65734053e-01 -3.08978528e-01\\n-3.15116107e-01 -1.32280253e-02 3.26039875e-03 -4.10727203e-01\\n-1.57596990e-02 -1.82145894e-01 -5.69393694e-01 3.07676047e-01\\n-2.93911099e-01 -1.48574477e-02 1.86498404e-01 4.93605547e-02\\n-4.61528271e-01 -1.57485783e-01 1.40986159e-01 2.44371355e-01\\n-2.01365843e-01 -2.32848778e-01 3.08321370e-03 -1.03073108e+00\\n2.20900252e-01 -1.38987526e-01 -7.84655735e-02 8.88724849e-02\\n-8.37963969e-02 -7.31486976e-01 8.10461566e-02 -3.53159219e-01\\n-1.50128268e-02 -3.72301266e-02 -1.43916145e-01 -4.17995423e-01\\n5.00536673e-02 -1.84866600e-02 -2.48600647e-01 3.91701728e-01\\n-3.62792760e-01 2.24280521e-01 -1.86300918e-01 5.38041890e-02\\n-9.67377126e-02 -3.68721902e-01 7.33922124e-02 -3.73454690e-01\\n-3.44112813e-01 -1.37546062e-01 -2.37962887e-01 -2.54413038e-01\\n1.16084358e-02 -3.28658849e-01 -6.08670749e-02 9.40840244e-02\\n2.77582705e-01 2.66999863e-02 -1.74799994e-01 -2.48681396e-01\\n6.78614751e-02 -3.78883272e-01 1.66547179e-01 -2.07185209e-01\\n6.27262667e-02 -1.06813110e-01 3.06599170e-01 7.80118108e-02\\n1.21283166e-01 -4.46942568e-01 3.80641311e-01 -2.89954752e-01\\n-3.20932388e-01 5.85157536e-02 4.20724303e-02 -1.23140395e-01\\n3.69675606e-01 -5.54781973e-01 -2.06679776e-02 4.28485304e-01\\n8.46811384e-02 5.97820766e-02 3.17055672e-01 -7.15464577e-02\\n-1.09568961e-01 4.51631516e-01 -3.66588026e-01 9.77575928e-02\\n7.44794071e-01 1.27400473e-01 2.58273005e-01 1.80481389e-01\\n1.57584041e-01 4.34243172e-01 4.23174053e-01 -4.54297960e-02\\n4.08817418e-02 3.91179770e-01 1.07984982e-01 -5.50856769e-01\\n5.44481678e-03 7.19335973e-02 -2.54584849e-01 -2.51239806e-01\\n6.41991615e-01 4.47902858e-01 -3.08286816e-01 -3.16318631e-01\\n-1.60260692e-01 -1.67772382e-01 2.61525780e-01 -7.24956840e-02\\n1.73292905e-01 -1.90510035e-01 4.76444274e-01 7.25093633e-02\\n2.79668629e-01 5.98666668e-01 -1.68798998e-01 -4.63422179e-01\\n-6.67553768e-02 2.49895677e-01 -5.61951799e-03 5.59397578e-01\\n-1.99815243e-01 3.07910413e-01 -3.81668541e-03 9.51393619e-02\\n-7.72468969e-02 2.07414761e-01 1.83281481e-01 9.25850868e-02\\n1.99795917e-01 1.58821672e-01 4.23609674e-01 4.99398202e-01\\n3.23253930e-01 4.63131130e-01 2.66349792e-01 4.53740209e-02\\n4.42332268e-01 4.39093471e-01 6.10854387e-01 1.24034561e-01\\n2.70760749e-02 1.35199070e-01 -3.34587088e-03 -2.65484080e-02\\n3.17961782e-01 3.41834605e-01 -2.74997614e-02 9.60237682e-01\\n4.50954556e-01 3.41277361e-01 6.73647583e-01 -6.31285608e-01\\n-2.82306641e-01 1.83541942e-02 4.15009975e-01 -3.90704185e-01\\n-1.07998855e-01 8.41566995e-02 -2.38736510e-01 2.20124871e-01\\n-3.84852022e-01 -3.00646037e-01 -5.36313877e-02 8.61279517e-02\\n2.65489910e-02 -1.19192466e-01 -2.08627075e-01 -1.65807530e-02\\n-1.76002905e-01 -1.24855906e-01 -5.09822190e-01 -1.34648541e-02\\n-2.38185540e-01 -2.20769331e-01 -1.34820342e-01 -1.33086696e-01\\n-1.20534085e-01 -2.65057206e-01 -9.40930173e-02 3.00957412e-02\\n1.81991190e-01 -1.37859479e-01 -1.01571336e-01 -2.45375454e-01\\n3.61819506e-01 2.96767086e-01 5.06321073e-01 -1.22618140e-03\\n1.05124742e-01 -2.19792813e-01 -3.25285435e-01 1.08996965e-01\\n6.82698861e-02 7.99415112e-02 4.71303686e-02 3.68025988e-01\\n-1.77926347e-01 -1.64311856e-01 1.06142387e-01 3.94598186e-01\\n-4.38350856e-01 5.98285422e-02 -8.29191133e-02 3.12816650e-01\\n4.62172218e-02 7.52945840e-02 -1.42926052e-01 2.19236463e-02\\n-5.24606146e-02 -5.29077649e-01 3.10505122e-01 -1.89693198e-01\\n-7.29181617e-02 1.79550022e-01 2.31941864e-01 2.65209377e-01\\n-2.43209913e-01 -3.36528458e-02 -7.77457729e-02 1.48966402e-01\\n2.96344887e-02 2.88941920e-01 -3.16526979e-01 -1.69977471e-01\\n-2.23189056e-01 1.41295016e-01 -3.24264973e-01 8.26542974e-02\\n-4.16963585e-02 3.40689451e-01 6.85338825e-02 7.51652122e-02\\n4.13419455e-01 -6.90255836e-02 -1.82402045e-01 -1.72046363e-01\\n-2.15069085e-01 -1.78717017e-01 2.70129666e-02 -1.14340223e-01\\n2.40369633e-01 -3.34704936e-01 -1.08840436e-01 -2.16799378e-01\\n-9.73969996e-02 -3.66852075e-01 4.89581600e-02 -9.68382210e-02]]',\n", + " 'job_description': 'Drucken Share Bewerben For our locations Zurich, Bern, Lausanne, Geneva and Granada, we are looking for Junior Software Engineers (Java/.Net). In this role Develop innovative web and mobile applications, using state-of-the-art tools and agile methodologies. Work closely with a multidisciplinary team of business analysts, architects and developers. Be involved in the complete project lifecycle, from requirements analysis to final delivery. What we offer A dynamic work environment with a young and highly motivated team. Ample opportunities to expand your knowledge and experience by working on a broad range of exciting projects, customers and technologies. Attractive prospects for career and personal development through training and coaching. A flat hierarchy and a culture of collaboration across all disciplines. The chance to make a difference in peoples’ life by building great software. About your profile You hold a MSc or BSc from a leading university or institute of technology. You already have some experience in developing Java or .Net applications from internships or course-related activities. You are passionate about technology and software engineering. You are familiar with the fundamentals of underlying technologies such as web-based user interfaces, relational and non-relational databases, application security, and communication protocols. You have a good command of English and either French or German (depending on working location). For Zurich and Bern you have very good language skills in German and English. For Lausanne and Geneva you have very good language skills in French and English. For Granada you have very good language skills in English.',\n", + " 'soft_skills': '[\"Collaboration\", \"Innovation\", \"Team Motivation\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Database Application\", \"Tooling\", \"Hostile Work Environment\", \"Relational Databases\", \"Requirements Analysis\", \"Agile Methodology\", \"Application Security\", \"Personality Development\", \"Communications Protocols\", \"Java (Programming Language)\", \"Mobile Application Software\", \"User Interface\", \"Software Engineering\", \"Finalization\"]',\n", + " 'languages': \"['English', 'Arabic']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'database engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.70764947e-01 3.80482614e-01 4.18749332e-01 9.27205384e-02\\n5.02905071e-01 -1.98723689e-01 4.03951481e-03 2.72517890e-01\\n-7.10982308e-02 -2.41693258e-01 -6.16132170e-02 -4.16763760e-02\\n-6.36384077e-03 8.13919604e-02 1.72464192e-01 4.24755275e-01\\n3.09276372e-01 5.89461923e-02 1.49260964e-02 2.67620534e-01\\n1.34396106e-01 -1.19489536e-01 1.02892451e-01 5.66048265e-01\\n2.07293138e-01 1.47447407e-01 -9.67616495e-03 7.97666535e-02\\n-3.16824704e-01 -2.92747468e-01 2.82683641e-01 1.20330453e-01\\n-1.92091256e-01 -1.64798424e-01 4.28377353e-02 1.16624087e-02\\n-2.04767510e-01 -1.26587655e-02 1.53321072e-01 -1.62825026e-02\\n-7.53927603e-02 -2.69863933e-01 1.32300509e-02 8.78657494e-03\\n-3.56649160e-01 -1.09220482e-01 -3.92759331e-02 -8.24821293e-02\\n1.47108018e-01 -2.04093084e-01 -6.32436514e-01 4.13603216e-01\\n-9.26709324e-02 -1.77231640e-01 3.14854234e-01 4.34895456e-01\\n3.61038037e-02 -5.12671828e-01 -2.82791048e-01 -9.18632522e-02\\n7.27044046e-02 -2.59977221e-01 -7.81142432e-03 -1.03520207e-01\\n3.98269027e-01 -1.16136126e-01 1.00655770e-02 4.46817130e-01\\n-5.31788588e-01 5.11298887e-03 -3.66952062e-01 5.04493937e-02\\n-4.32678193e-01 -5.12507446e-02 -2.38883883e-01 -1.09187528e-01\\n-5.98026300e-03 2.12750196e-01 8.18139836e-02 6.39620051e-02\\n-9.10167396e-03 1.66780144e-01 2.24938225e-02 -1.10837230e-02\\n2.81920254e-01 6.61859242e-03 2.23566964e-01 2.55997956e-01\\n-2.71070689e-01 4.55642790e-01 2.59188652e-01 -2.53095746e-01\\n2.67622828e-01 1.04668252e-01 2.18283415e-01 3.30537707e-02\\n-4.24923860e-02 1.45234808e-01 1.06808819e-01 9.32760909e-02\\n1.44925386e-01 -2.39109680e-01 -1.01675197e-01 -8.16746056e-02\\n-7.04701245e-02 -1.44837007e-01 -1.09807901e-01 2.35594884e-01\\n-3.08379978e-01 4.09874678e-01 6.56969026e-02 -9.79458764e-02\\n-4.72002244e-03 -3.61802071e-01 -2.64445931e-01 1.86284201e-03\\n-1.78630665e-01 7.06110969e-02 3.05572897e-01 2.49758869e-01\\n2.67743349e-01 2.61802912e-01 2.32880920e-01 8.51773024e-01\\n-3.00463364e-02 9.18525830e-02 -1.36282906e-01 2.82282442e-01\\n1.15949638e-01 -2.05275342e-01 1.68994486e-01 2.20680907e-01\\n-4.16226592e-03 -6.79015834e-03 -1.62871167e-01 -2.66052615e-02\\n-1.38219118e-01 -6.44442290e-02 -1.55478328e-01 1.26214534e-01\\n-2.20614806e-01 -4.67813283e-01 3.02148074e-01 2.73883343e-02\\n2.40259260e-01 -4.35412768e-03 -8.33147168e-02 -1.83054283e-02\\n-1.42258881e-02 4.13970292e-01 -1.34123206e-01 3.03680629e-01\\n-3.32957149e-01 -1.83034033e-01 -2.14656830e-01 2.39048511e-01\\n-7.74940699e-02 1.18667945e-01 -2.69004256e-01 -7.33714774e-02\\n3.60295713e-01 -9.79447458e-03 -3.55655551e-01 3.60418141e-01\\n4.75275181e-02 -3.91682059e-01 -2.15859547e-01 4.15043771e-01\\n4.75670584e-02 1.23827137e-01 -1.22079141e-01 -3.14791292e-01\\n2.76966661e-01 2.07283739e-02 8.99648741e-02 1.86553667e-03\\n3.61201137e-01 -1.90529332e-01 8.28468874e-02 1.08368754e-01\\n-5.52015245e-01 3.80213529e-01 4.21508774e-02 -9.47545096e-03\\n-5.94542585e-02 7.10613802e-02 2.44265020e-01 -2.46711016e-01\\n1.36112705e-01 -1.36641145e-01 -3.25306207e-01 -3.34831506e-01\\n6.34716125e-03 -1.67915085e-03 3.71547312e-01 -3.29468250e-01\\n-1.14514671e-01 1.02617271e-01 -4.32701200e-01 -3.30369547e-02\\n4.20483440e-01 1.87133610e-01 1.17937503e-02 8.82378146e-02\\n-2.04707161e-01 -2.56533653e-01 4.18332294e-02 -5.93345582e-01\\n-2.94325620e-01 8.57808515e-02 -2.85274893e-01 1.93881080e-01\\n1.35875121e-01 -4.42772247e-02 2.36624666e-02 1.16387270e-01\\n-3.64681244e-01 9.72153321e-02 2.91628838e-01 6.92657903e-02\\n3.36356133e-01 -6.75864741e-02 -3.54334563e-01 4.92776603e-01\\n-2.40151539e-01 4.62714523e-01 2.77643442e-01 -6.72637522e-01\\n4.11479950e-01 2.11659446e-01 1.47904783e-01 -1.87863037e-01\\n3.57819527e-01 -4.71898764e-01 1.22086406e-01 2.25684851e-01\\n-2.95098364e-01 -2.13322878e-01 2.18939960e-01 -7.72679597e-02\\n-2.41847530e-01 5.81861377e-01 5.89128993e-02 6.02204353e-02\\n3.18042964e-01 -2.61105657e-01 -1.29103377e-01 -1.53848290e-01\\n-2.09282726e-01 -2.44212970e-01 -3.77224863e-01 2.26704776e-03\\n-7.94857368e-02 -5.46626270e-01 -1.74651027e-01 -4.26742852e-01\\n-1.13773160e-01 -1.70524120e-01 -3.05949360e-01 2.50412017e-01\\n7.74390101e-02 1.18507132e-01 -5.56022301e-02 -1.27137348e-01\\n5.74168041e-02 -4.87553120e-01 -7.69816563e-02 1.57215204e-02\\n3.27196360e-01 2.78806776e-01 7.25970641e-02 -2.99964517e-01\\n1.94517195e-01 3.58133793e-01 -3.79963189e-01 -3.56582224e-01\\n1.17316768e-01 3.08850944e-01 -8.92335549e-02 -1.79890305e-01\\n5.69752045e-02 3.67708921e-01 -1.50463089e-01 1.24846123e-01\\n-6.16659336e-02 9.93803740e-02 3.70127320e-01 -1.85547158e-01\\n-2.72887886e-01 -3.22162509e-01 -1.19921453e-02 3.09700757e-01\\n-3.69176000e-01 -2.07033798e-01 5.75120986e-01 2.99480647e-01\\n-9.41088001e-05 2.63390213e-01 1.92775220e-01 4.18238016e-03\\n-2.67701060e-01 -7.91750252e-02 -7.33833164e-02 8.12797472e-02\\n9.85543653e-02 -7.77804181e-02 -3.17840934e-01 -5.37053287e-01\\n-4.30504608e+00 -3.08360588e-02 -7.73874372e-02 -2.22823381e-01\\n1.52751550e-01 -1.46149963e-01 1.79027617e-01 1.58602655e-01\\n-2.89329588e-01 7.40446076e-02 -2.63787538e-01 -1.10482037e-01\\n1.22622102e-01 3.38531703e-01 1.30481303e-01 3.45031947e-01\\n2.95381516e-01 -3.25298578e-01 7.11191222e-02 3.16688657e-01\\n1.52683314e-02 -7.06119955e-01 5.71307465e-02 -6.11882657e-02\\n4.25201505e-02 3.23242635e-01 -2.60717571e-01 6.00600839e-02\\n-2.43984848e-01 -2.10711211e-01 4.02387828e-02 -2.32252568e-01\\n-1.56914338e-01 3.46349657e-01 3.87219638e-02 -1.79150671e-01\\n1.08784232e-02 -2.71173120e-01 -3.27146538e-02 -4.91972446e-01\\n6.42255768e-02 -5.33955753e-01 1.34940624e-01 1.36563212e-01\\n4.42563266e-01 -2.45066866e-01 1.69967160e-01 2.05120325e-01\\n1.94879889e-01 1.58966720e-01 -4.96476181e-02 -1.37066945e-01\\n-2.65961826e-01 -3.28777641e-01 -2.37413764e-01 -3.46467763e-01\\n4.39812869e-01 3.89918834e-01 -1.11154459e-01 5.05039580e-02\\n-1.05886273e-01 -3.11073333e-01 -2.94818640e-01 -4.59784567e-01\\n-3.06161493e-01 1.66427895e-01 -6.93567276e-01 -4.89499658e-01\\n-2.84662023e-02 -3.44134197e-02 -1.77855670e-01 4.83848572e-01\\n-3.33003134e-01 -4.72433984e-01 -3.17299366e-02 -5.31272769e-01\\n1.13127738e-01 -4.77387421e-02 1.08714901e-01 -8.11626241e-02\\n-2.80820370e-01 -4.56554949e-01 1.21841677e-01 3.96574438e-02\\n-1.46636561e-01 -3.35093439e-02 1.18002884e-01 -1.47341549e-01\\n-4.16376084e-01 -3.04768562e-01 4.85285610e-01 -1.07428515e-02\\n4.35039401e-01 1.46653175e-01 2.52369672e-01 2.60240167e-01\\n2.93618143e-01 -1.33284807e-01 1.89405262e-01 -3.70070457e-01\\n2.24102393e-01 1.66856602e-01 5.76015949e-01 -2.37886101e-01\\n-4.23823856e-02 1.35433361e-01 -1.65749222e-01 -1.09654024e-01\\n5.20451009e-01 7.07869679e-02 5.39543070e-02 -1.62050843e-01\\n2.81815946e-01 -4.87247586e-01 -2.30131328e-01 1.45535156e-01\\n-1.78700546e-03 5.65422177e-01 1.74928382e-01 -3.22919875e-01\\n-1.83554620e-01 3.27672988e-01 3.18201147e-02 -2.20363617e-01\\n-2.68335119e-02 6.36626035e-02 -2.24550009e-01 2.38265187e-01\\n1.56959519e-01 -1.54462367e-01 -2.35577524e-01 -1.54480329e-02\\n-5.94599135e-02 1.81890115e-01 2.69194841e-01 5.72329462e-02\\n-1.64241031e-01 -2.36346021e-01 -1.54765680e-01 1.49112508e-01\\n2.14499846e-01 1.82263434e-01 1.50400668e-01 -8.89383033e-02\\n4.80591655e-02 1.74056262e-01 -7.37534910e-02 1.20663665e-01\\n-1.44387811e-01 1.34751692e-01 -4.79542136e-01 -2.41103455e-01\\n-1.42490268e-01 -1.49614692e-01 -8.03369954e-02 3.60542506e-01\\n2.09526047e-01 -1.28700688e-01 7.41112530e-02 -3.00515503e-01\\n4.33313340e-01 -9.22398120e-02 2.64875293e-01 6.50296733e-02\\n1.29448503e-01 5.66303909e-01 3.41924815e-03 -2.84663171e-01\\n-1.87255308e-01 1.38023511e-01 -3.17382902e-01 -1.25782654e-01\\n6.44829571e-02 -2.62982041e-01 -6.70783315e-03 2.24723488e-01\\n1.88453346e-01 -2.85637025e-02 -8.36273655e-02 2.33084783e-01\\n-8.06129053e-02 -1.33166954e-01 -2.77333379e-01 7.27839395e-02\\n2.40309715e-01 -1.10012293e-03 1.51007280e-01 -3.91991824e-01\\n-5.43580987e-02 -5.22595942e-02 1.96869865e-01 3.62520337e-01\\n1.72606096e-01 1.10475160e-01 5.07885255e-02 -3.66143614e-01\\n4.25003797e-01 9.30979773e-02 -1.49404928e-01 -6.48168772e-02\\n1.07491672e-01 -1.12839855e-01 -3.68518174e-01 4.42494117e-02\\n-7.83619657e-02 -1.66494861e-01 2.31656522e-01 2.77469493e-02\\n8.90479758e-02 -5.20769395e-02 -4.04213935e-01 -1.81027845e-01\\n-2.48201355e-01 6.66322634e-02 -1.35266976e-02 -5.80770552e-01\\n-2.52953842e-02 6.47834390e-02 -5.63979268e-01 2.30325684e-01\\n-2.32393950e-01 1.46712109e-01 1.90329477e-02 3.81421633e-02\\n-2.39439160e-01 -5.31105772e-02 3.74628514e-01 -2.05257703e-02\\n-3.62264395e-01 -1.44534498e-01 -1.16461543e-02 -6.81164026e-01\\n2.10316882e-01 -1.39638126e-01 -2.53788441e-01 -3.59374955e-02\\n7.91927874e-02 -5.53475857e-01 2.19622031e-01 -2.71812916e-01\\n-3.28819528e-02 -8.21738318e-02 -2.49019846e-01 -3.07344526e-01\\n-2.55303774e-02 -1.97017625e-01 -1.10558458e-01 2.45045513e-01\\n-3.72373790e-01 3.70978922e-01 -8.42841528e-03 9.68909562e-02\\n1.45247206e-01 -3.72409821e-01 1.88435882e-01 -3.33387047e-01\\n-2.86380798e-01 -2.09097177e-01 -2.95100987e-01 -1.93460912e-01\\n-4.88442592e-02 -4.07931693e-02 -6.54291362e-02 -2.58242022e-02\\n2.53914565e-01 1.22465208e-01 -3.30628425e-01 -1.50074691e-01\\n7.58033693e-02 -3.46004188e-01 1.59437843e-02 -1.67228520e-01\\n-7.91710895e-03 -2.32482888e-02 2.21467286e-01 -2.49810591e-01\\n6.88032955e-02 -2.70387858e-01 4.86088365e-01 -5.40458672e-02\\n-3.14256907e-01 -1.36600018e-01 9.79795456e-02 6.79384694e-02\\n6.56604245e-02 -4.48888212e-01 -1.30255461e-01 2.36114174e-01\\n2.48830214e-01 1.62899733e-01 2.69786775e-01 -1.16645448e-01\\n-1.54523998e-01 2.31660023e-01 -6.11691236e-01 5.08534871e-02\\n6.47831559e-01 2.14162916e-01 3.35853472e-02 1.50039747e-01\\n-1.41143883e-02 5.00303507e-01 5.02642572e-01 7.12186769e-02\\n-8.07293579e-02 3.23166102e-01 1.79011106e-01 -5.46630263e-01\\n-2.17709124e-01 -2.12556571e-01 5.11331931e-02 -1.28550082e-01\\n5.45960605e-01 3.32146078e-01 -4.05467331e-01 -3.75077903e-01\\n-2.62413695e-02 -1.85728237e-01 -4.94477618e-03 -5.56833632e-02\\n3.87714766e-02 -3.44808370e-01 5.72980762e-01 4.57259715e-02\\n1.50245577e-01 5.87748170e-01 -2.29656659e-02 -1.65700898e-01\\n-4.39063273e-02 -4.48782369e-03 2.24708572e-01 1.71340123e-01\\n3.62066887e-02 2.23898128e-01 -1.05163552e-01 2.57129729e-01\\n-1.87560171e-01 -1.14559837e-01 -2.27715131e-02 8.70154127e-02\\n3.72791220e-03 1.92913145e-01 2.80505449e-01 2.89855689e-01\\n2.70798266e-01 4.72418129e-01 1.51201010e-01 5.04177399e-02\\n4.67858434e-01 4.62481171e-01 3.44654828e-01 -7.07194209e-02\\n9.23467521e-03 -7.29600200e-03 4.87732217e-02 -3.97568271e-02\\n2.54340291e-01 3.70028287e-01 1.45252600e-01 7.61656582e-01\\n2.82434344e-01 2.15063110e-01 6.27487659e-01 -4.68006104e-01\\n-3.14145565e-01 -2.48940401e-02 4.65045631e-01 -4.33412760e-01\\n-3.97228412e-02 -2.92391703e-03 -4.07598048e-01 -1.04498276e-02\\n-4.59011883e-01 -1.26563892e-01 9.05431807e-02 -2.24144384e-01\\n2.02035144e-01 -3.47004347e-02 -1.09594010e-01 2.54878581e-01\\n-7.38227442e-02 -2.25456744e-01 -2.67048150e-01 -2.72668540e-01\\n-3.16334963e-01 -6.18873127e-02 8.93824175e-03 -1.23509131e-01\\n1.33660093e-01 -3.38436037e-01 -4.22289260e-02 7.25715458e-02\\n3.78760368e-01 -8.82091075e-02 -1.45551324e-01 -1.20544843e-01\\n4.87549677e-02 3.06263864e-01 6.65579557e-01 -3.59557047e-02\\n1.01192921e-01 -1.96387209e-02 -1.29716069e-01 -1.00155100e-02\\n1.38584390e-01 4.15863991e-02 7.06940591e-02 5.33690274e-01\\n-4.59870458e-01 -1.96968336e-02 2.66726594e-02 3.53691995e-01\\n-2.90817887e-01 6.57966435e-02 7.97382742e-02 1.02914721e-01\\n7.74745271e-02 5.30694202e-02 -3.04382831e-01 1.58175215e-01\\n-2.37163916e-01 -5.82946837e-01 3.82542759e-01 -7.46670589e-02\\n-8.55535492e-02 -3.75871286e-02 1.85024709e-01 1.84259951e-01\\n-2.99542904e-01 -6.36216104e-02 -1.34176716e-01 2.70591199e-01\\n6.87954295e-03 2.37124860e-01 -3.01606178e-01 -2.38960132e-01\\n-3.22479457e-01 3.13418955e-01 1.21872477e-01 2.27395422e-03\\n-2.45224327e-01 3.77896607e-01 1.26993507e-01 1.76121458e-01\\n7.23407045e-02 -2.43791133e-01 -2.40951732e-01 -2.50291169e-01\\n-3.00154269e-01 -4.04937863e-02 6.60772845e-02 -1.24320529e-01\\n2.27274880e-01 -3.30703080e-01 -2.64657605e-02 -2.14440331e-01\\n-1.69417113e-01 -2.58702189e-01 -2.00911481e-02 -1.78634003e-02]]',\n", + " 'job_description': 'Job Informationen In this role you will be performing the following activities: - Develop and implement Oracle database related solutions - Database Performance-analysis, -tuning and problem monitoring - Keeping the Patch-Level of Databases, Oracle- Cluster ware and Database Machines up to date. - Maintain the availability of our database HA solutions in Dataguard and RAC configurations - rman backup/recovery configuration, execution and monitoring - Administer Linux machines Our requirements: - At least 5 years’ experience in Oracle Database administration and -tuning - Experience in Linux administration - Expert skills in several of these technologies: Oracle RAC, Data Guard, Golden Gate, RMAN, OEM - Work-experience with Oracle ODA - Good communication and documentation skills - Customer Orientation, capability of working independently and flexibility - English and German are mandatory Benötigte Skills Englisch Oracle Linux',\n", + " 'soft_skills': '[\"Communications\"]',\n", + " 'hard_skills': '[\"Oracle Autonomous Database\", \"Oracle Linux\", \"Executable\", \"Database Administration\", \"Linux Administration\", \"Activism\", \"Linux\", \"Maintainability\", \"Machining\", \"Performance Analysis\", \"Oracle Databases\", \"Oracle Rac\", \"Recovery Manager (RMAN)\", \"Guarding\"]',\n", + " 'languages': \"['English', 'Malay', 'Tagalog', 'Scottish Gaelic']\"},\n", + " {'company_id': '38',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.03343868e-01 2.30763748e-01 5.38993478e-01 4.34119478e-02\\n5.34979820e-01 -3.87130156e-02 -4.73924242e-02 2.99967110e-01\\n5.45151979e-02 -4.72891748e-01 -3.38513441e-02 -2.34363019e-01\\n-3.71357948e-02 1.22097448e-01 2.06475183e-01 5.27176976e-01\\n2.40563542e-01 1.57984551e-02 -9.60903391e-02 4.04276520e-01\\n1.24177679e-01 -1.25039771e-01 1.65932745e-01 7.62462139e-01\\n5.29685259e-01 -8.97750445e-03 -1.24191806e-01 -4.64070216e-02\\n-2.87370294e-01 -2.17502296e-01 5.09112000e-01 -1.38884196e-02\\n-1.59409046e-01 -2.75068492e-01 9.88993719e-02 1.18097454e-01\\n-2.40171224e-01 -1.03529440e-02 -4.62151542e-02 1.98938057e-01\\n-5.37210405e-01 -1.83637619e-01 -1.04602285e-01 -1.73897892e-02\\n-2.81807959e-01 -3.76029849e-01 -1.03991032e-02 -7.30309933e-02\\n4.46095839e-02 9.46762040e-02 -5.20715833e-01 3.41190279e-01\\n-1.78565487e-01 -2.86245823e-01 1.94672897e-01 7.81848311e-01\\n-6.73715547e-02 -4.83343661e-01 -5.43830872e-01 -3.55475992e-01\\n6.82389885e-02 -1.03316627e-01 1.20132297e-01 -3.13315928e-01\\n2.56372482e-01 -7.92228281e-02 -3.25507075e-02 2.17792124e-01\\n-7.56444931e-01 -1.46264017e-01 -2.32868388e-01 1.22063048e-01\\n-3.37095857e-01 6.25872314e-02 -3.81291270e-01 -9.43925902e-02\\n-9.64849815e-02 4.85821396e-01 8.87235813e-03 3.02395243e-02\\n-2.51084000e-01 2.62842774e-01 -1.56530038e-01 2.78546005e-01\\n1.88077927e-01 2.25880608e-01 2.82864809e-01 4.12221372e-01\\n-3.45938176e-01 3.23628724e-01 1.46459535e-01 -3.64160955e-01\\n2.53715008e-01 1.53682172e-01 4.33273703e-01 9.38322768e-03\\n1.52849674e-01 7.00151250e-02 -2.55638897e-01 2.77255595e-01\\n2.14355350e-01 -4.02089208e-01 1.07306987e-01 -1.08542912e-01\\n4.83603477e-02 -3.14614624e-02 8.09155032e-02 1.45625159e-01\\n-3.34811091e-01 3.45012963e-01 9.47378501e-02 -1.91496909e-01\\n-1.03878319e-01 -5.78423202e-01 2.09226320e-03 6.21747449e-02\\n1.69600055e-01 3.47162873e-01 1.45100474e-01 1.73138872e-01\\n1.79351330e-01 -3.73074263e-02 2.26460546e-01 7.75896430e-01\\n-5.87454215e-02 1.09416865e-01 -2.26481706e-01 2.88228422e-01\\n1.37839764e-01 -3.48483711e-01 2.24569038e-01 1.06233917e-01\\n-9.72716063e-02 -1.62953645e-01 -2.27057829e-01 2.29367316e-01\\n-1.48686722e-01 -3.13442111e-01 -2.09349230e-01 2.24907875e-01\\n1.07625842e-01 -3.90913725e-01 6.48622394e-01 -2.25769859e-02\\n1.28989398e-01 -1.60373926e-01 -1.19314983e-01 -1.03887036e-01\\n-6.55472353e-02 2.31716350e-01 9.95418355e-02 1.43068016e-01\\n-2.36593410e-01 -2.74164379e-01 -1.92878976e-01 9.17827189e-02\\n-5.07121801e-01 1.41971961e-01 -1.28286719e-01 -5.80766685e-02\\n2.16732055e-01 1.30471557e-01 -3.74847740e-01 1.70343876e-01\\n-1.88910753e-01 -1.12336844e-01 4.73561250e-02 3.87542367e-01\\n-3.26294988e-01 2.43841320e-01 6.55612256e-03 -1.10927440e-01\\n6.92139864e-01 2.11853623e-01 2.66393989e-01 2.04083491e-02\\n2.68992305e-01 -7.00954795e-02 8.40476602e-02 1.90958872e-01\\n-5.65881014e-01 2.81723291e-01 -1.62538618e-01 -2.79493868e-01\\n1.63718700e-01 -9.16426331e-02 4.11607772e-01 -3.17451298e-01\\n-7.04959966e-03 -1.48183599e-01 -2.82437176e-01 -3.07242721e-01\\n-1.23239353e-01 -4.47026864e-02 3.73835117e-01 -4.41698372e-01\\n-1.04132816e-02 2.62968272e-01 -4.99885499e-01 -1.78865910e-01\\n1.24962807e-01 1.68164492e-01 2.20379427e-01 1.63153321e-01\\n-1.49005428e-01 -5.92436850e-01 1.52511112e-02 -4.19609368e-01\\n-2.74719924e-01 5.10507487e-02 -3.20439607e-01 1.53898492e-01\\n2.49173902e-02 1.21990308e-01 -9.90692154e-02 7.39639346e-03\\n-1.45518035e-01 -2.58275270e-02 5.90835735e-02 8.38483572e-02\\n3.89136314e-01 8.13181847e-02 -4.09939945e-01 4.84633327e-01\\n-2.12312192e-01 6.25264525e-01 1.24346152e-01 -9.80473638e-01\\n6.03938639e-01 2.57790625e-01 -7.54845962e-02 -2.96940148e-01\\n4.95682538e-01 -3.28293592e-01 -2.50406321e-02 1.40372217e-01\\n-3.13391507e-01 -2.89684147e-01 2.86162943e-01 -2.45242536e-01\\n-2.09089339e-01 4.86634016e-01 1.18346840e-01 1.36726320e-01\\n2.51162916e-01 -2.08349466e-01 -1.09957770e-01 -1.47282276e-02\\n-6.36356100e-02 -1.83957636e-01 -6.79240525e-01 1.62515659e-02\\n-2.06544250e-01 -4.28036094e-01 -8.14266726e-02 -3.42492938e-01\\n-1.99275434e-01 -4.22752440e-01 -7.85707012e-02 1.07396990e-01\\n2.85738617e-01 4.50169966e-02 -6.88309968e-02 -1.73347015e-02\\n-9.23098624e-03 -6.72113478e-01 -9.80941206e-02 1.58549115e-01\\n4.23470438e-01 2.36782342e-01 1.86994627e-01 -4.48385850e-02\\n1.52598917e-01 5.64646721e-01 -2.90545642e-01 -2.69818246e-01\\n2.44540215e-01 7.58445039e-02 -4.31387424e-02 -1.99641079e-01\\n1.43902540e-01 1.33284569e-01 -2.58983791e-01 1.82899870e-02\\n-2.67209746e-02 -1.08145542e-01 4.16582584e-01 -6.53029829e-02\\n-1.60018533e-01 -1.34350806e-01 -8.05444196e-02 1.10381968e-01\\n-5.20404458e-01 -2.84330100e-01 5.72608829e-01 1.55429363e-01\\n1.86988324e-01 1.18153542e-01 1.17237493e-01 -1.54355513e-02\\n-2.30902433e-01 -2.05100387e-01 2.86329567e-01 1.00271851e-01\\n1.55057907e-01 1.26079127e-01 1.06383944e-02 -7.20139861e-01\\n-3.44800234e+00 -1.82609260e-01 4.30243351e-02 -1.96099296e-01\\n1.95774332e-01 -1.48200765e-01 5.49846441e-02 -2.05202941e-02\\n-3.28661978e-01 -6.08064514e-03 -1.72436684e-01 -1.58486858e-01\\n3.62683386e-02 1.83919847e-01 1.77659392e-01 2.68530309e-01\\n1.29694968e-01 -2.15548575e-01 -5.68717271e-02 4.37355548e-01\\n-1.49075866e-01 -6.16673946e-01 1.91888273e-01 1.10642478e-01\\n2.67340422e-01 2.81551063e-01 -4.76889908e-01 -5.68605810e-02\\n-2.46072859e-01 -1.89359590e-01 8.92390236e-02 -2.98651874e-01\\n-3.07158023e-01 2.21285135e-01 1.28742963e-01 -9.79780592e-03\\n6.51369542e-02 -4.29293752e-01 -1.93411380e-01 -3.96880031e-01\\n7.00733140e-02 -6.37853026e-01 -5.56009859e-02 -2.32573241e-01\\n6.48625255e-01 -2.07555249e-01 2.29414165e-01 9.05872881e-03\\n1.34549215e-01 4.07421812e-02 1.09364912e-02 4.42888215e-03\\n-1.85166627e-01 -2.84320414e-01 -5.82451448e-02 -1.26468763e-01\\n5.89282155e-01 3.98808688e-01 -6.92917481e-02 -4.39435914e-02\\n1.47232845e-01 -2.30870485e-01 -5.42497396e-01 -2.31308341e-01\\n-1.60647899e-01 -1.15518063e-01 -5.98265529e-01 -3.24230373e-01\\n-1.47600383e-01 -2.45622486e-01 -1.31393686e-01 6.13225281e-01\\n-2.78479934e-01 -2.55971283e-01 -1.35177180e-01 -4.87251073e-01\\n2.98640102e-01 -2.43487999e-01 1.75515171e-02 -2.28454083e-01\\n-3.08400631e-01 -4.75210547e-01 1.01907417e-01 5.80981225e-02\\n-1.68490678e-01 -1.61768049e-01 6.26888312e-03 -1.62818938e-01\\n-3.71261150e-01 -5.65067768e-01 3.76451552e-01 5.54502234e-02\\n2.87895203e-01 6.31127357e-02 4.25403416e-01 -8.10361207e-02\\n3.75872374e-01 -3.48828770e-02 -1.11873597e-02 -3.89423788e-01\\n1.18140824e-01 9.08161998e-02 5.27094364e-01 -2.68927664e-01\\n1.90385170e-02 -3.35797668e-05 -2.53355294e-01 1.25018701e-01\\n4.00337219e-01 -5.45716584e-02 7.79160485e-02 -2.56094635e-02\\n2.34904900e-01 -2.86127806e-01 -7.24384040e-02 8.38469863e-02\\n5.98106235e-02 7.43247092e-01 -6.52511939e-02 -3.21561068e-01\\n-1.81491941e-01 3.96404177e-01 -7.91395307e-02 1.20543212e-01\\n-2.03741252e-01 5.26347756e-02 -2.22391814e-01 3.08321863e-01\\n1.28396992e-02 -2.62069553e-01 -1.93990469e-01 -1.79392695e-01\\n-1.71351105e-01 3.48474145e-01 2.73936212e-01 7.98977241e-02\\n-4.12340909e-02 -3.73255998e-01 -9.65191200e-02 2.32484221e-01\\n2.36619368e-01 4.33709383e-01 1.66129589e-01 -2.33165488e-01\\n-6.02655485e-02 3.04455936e-01 -3.14703584e-01 2.45226040e-01\\n-2.79060721e-01 1.51490450e-01 -5.53827107e-01 -3.14107418e-01\\n-2.38843292e-01 -4.02781725e-01 2.66242951e-01 4.66194034e-01\\n2.34550923e-01 -3.20919603e-02 3.68824936e-02 -4.01094377e-01\\n2.46412605e-01 1.23772793e-01 1.39846355e-01 1.02486245e-01\\n-5.85739538e-02 6.21647954e-01 -3.02647129e-02 -6.69649988e-02\\n6.69175200e-03 -2.60228328e-02 -2.16520414e-01 -2.27943569e-01\\n1.20660909e-01 -4.60824877e-01 -2.15061098e-01 3.52002770e-01\\n1.62245959e-01 -2.07402229e-01 -2.13199899e-01 2.96611488e-01\\n1.54158995e-02 -3.48368824e-01 -1.56249791e-01 3.02210450e-02\\n3.39117289e-01 1.60919815e-01 4.06444311e-01 -4.95779157e-01\\n4.41726949e-03 -6.86247349e-02 -6.38718531e-02 3.20025444e-01\\n6.74214959e-02 1.46527588e-01 -2.14669406e-01 -1.43222302e-01\\n5.86831510e-01 -8.58149454e-02 -1.09388560e-01 1.20669849e-01\\n6.21372685e-02 -2.31922582e-01 -4.20078635e-01 1.10732280e-01\\n2.08665319e-02 -2.74237394e-01 -8.93482864e-02 1.23018801e-01\\n1.33224249e-01 7.95503706e-03 -6.00904703e-01 -1.77618414e-01\\n-2.46541262e-01 -1.24588655e-02 6.86416253e-02 -5.38020313e-01\\n-1.23260379e-01 -1.48033977e-01 -5.83821714e-01 1.96651459e-01\\n-4.02568281e-02 -1.76495910e-01 1.91098973e-01 -1.31880408e-02\\n-1.61894828e-01 -1.07534558e-01 3.25636789e-02 2.03372359e-01\\n-3.55641127e-01 -2.94837594e-01 4.73181531e-02 -1.00536239e+00\\n1.54831737e-01 2.31558830e-01 -2.15233818e-01 1.73128635e-01\\n-1.30525738e-01 -7.24637866e-01 2.07911938e-01 -3.98372769e-01\\n-1.35630697e-01 -1.97347388e-01 -2.23729491e-01 -3.53678495e-01\\n1.29845485e-01 2.77230814e-02 -3.50977927e-01 3.65032017e-01\\n-2.00580746e-01 3.48097801e-01 -6.32193238e-02 3.48044410e-02\\n8.07574913e-02 -2.04395056e-01 1.29091650e-01 -1.71415567e-01\\n-3.61894071e-01 -2.25210398e-01 -3.50763321e-01 -3.31488639e-01\\n-4.83489297e-02 -3.56270432e-01 -1.22437119e-01 1.23067573e-01\\n3.67484093e-01 1.23033345e-01 -1.08701333e-01 -2.82381922e-01\\n5.29918894e-02 -4.41964149e-01 2.59627029e-03 -8.37394819e-02\\n-1.12422422e-01 -1.03708744e-01 2.01126456e-01 1.30498931e-01\\n2.22310692e-01 -3.30033958e-01 5.16164184e-01 -3.22866023e-01\\n-2.88791299e-01 -1.13699548e-01 7.13948980e-02 -2.86400691e-02\\n3.49663764e-01 -3.80113661e-01 -1.22857526e-01 3.57985884e-01\\n5.56704886e-02 1.17764287e-01 2.28677183e-01 -1.25039518e-01\\n-1.44594312e-01 2.08710432e-01 -3.47990990e-01 1.46066338e-01\\n8.58892322e-01 1.94254965e-01 4.54286672e-03 1.63686037e-01\\n1.82376876e-01 2.70020843e-01 4.68955785e-01 -6.62302226e-02\\n-1.05469622e-01 2.50506431e-01 2.16680951e-03 -5.09775877e-01\\n4.29906361e-02 -9.70313475e-02 -1.44155771e-01 -4.28741783e-01\\n6.95365906e-01 2.81730115e-01 -3.87791812e-01 -2.00902045e-01\\n-1.25765711e-01 -1.32133171e-01 3.21253628e-01 1.71411373e-02\\n-4.07167748e-02 -1.88163556e-02 4.65991288e-01 -1.06553853e-01\\n2.35197514e-01 5.22611737e-01 -7.12134838e-02 -1.95413053e-01\\n-5.78605980e-02 2.71702111e-01 1.15357876e-01 5.55390179e-01\\n-2.26667404e-01 3.05121839e-01 -2.77492907e-02 1.14857983e-02\\n-1.45579338e-01 4.80127484e-02 2.20011339e-01 1.41912729e-01\\n1.88839644e-01 1.57106966e-01 4.43282783e-01 4.10943627e-01\\n2.02149630e-01 3.39008719e-01 3.82430017e-01 2.48419587e-03\\n3.67669463e-01 5.26082754e-01 3.51263911e-01 1.82386249e-01\\n7.02510402e-02 1.87211633e-01 1.64228886e-01 -2.75378507e-02\\n3.37155372e-01 3.99722606e-01 1.72077432e-01 7.55692363e-01\\n2.10361362e-01 3.92354727e-01 7.19956040e-01 -6.97514713e-01\\n-3.52785289e-01 5.96530624e-02 5.91005683e-01 -3.72862190e-01\\n6.57504946e-02 2.13819697e-01 -1.45916030e-01 2.33916909e-01\\n-6.23194933e-01 -2.83223033e-01 -7.62025416e-02 8.73444602e-02\\n-7.09280074e-02 -2.69449949e-01 -2.40030959e-01 2.17971206e-01\\n-3.53029743e-02 -1.22371718e-01 -3.37026238e-01 -1.70222163e-01\\n-1.27067745e-01 -6.04245439e-02 -7.36331865e-02 -2.87338793e-02\\n-1.31561309e-01 -2.19521314e-01 -7.96688497e-02 -1.25363886e-01\\n3.39101136e-01 -1.01144299e-01 -9.03323740e-02 -8.32718685e-02\\n2.82446116e-01 1.32077485e-01 4.87239152e-01 -7.30038062e-03\\n1.78945690e-01 -2.17060119e-01 -1.62933826e-01 1.06201150e-01\\n2.20534787e-01 -1.87682062e-02 1.15030715e-02 3.27968180e-01\\n-2.92840838e-01 -2.74773717e-01 1.22440085e-01 1.99164167e-01\\n-3.87138903e-01 -2.13555619e-02 -9.11058486e-02 1.97499231e-01\\n4.55599390e-02 2.95288444e-01 -2.16878295e-01 -2.00727303e-02\\n-8.38285685e-02 -5.03587782e-01 2.03642949e-01 2.16289982e-03\\n-2.94709623e-01 -1.47831887e-02 3.58099073e-01 1.31506920e-01\\n-3.29994977e-01 -2.94567980e-02 -1.17542207e-01 6.90163970e-02\\n8.11603814e-02 2.86071718e-01 -1.23395130e-01 -3.46197993e-01\\n-2.84858912e-01 1.57085583e-01 -2.50125080e-02 1.50009379e-01\\n4.36485000e-02 4.55555677e-01 -2.82361582e-02 1.96897149e-01\\n3.77941638e-01 1.08558245e-01 -2.24067509e-01 -2.88678646e-01\\n-2.03996092e-01 -1.60455674e-01 -1.09643020e-01 -8.79208148e-02\\n8.09622258e-02 -3.78949165e-01 -9.10735503e-02 -1.95933908e-01\\n-1.41849011e-01 -4.18155074e-01 7.02059418e-02 -8.77872258e-02]]',\n", + " 'job_description': 'Are you curious, confident and would you like to be part of creating a new data platform from start? Furthermore, do you want to work with world’s biggest Language Company in the world? Then please read on! We are looking for a Data Scientist to be based in our headquarters in Zurich, Switzerland. EF International Language Campuses is building a new data platform and is looking for new T-profiles, combining general and in-depth technology skills, to join the team to build the future of data processing at EF. The role Work with large complex data sets to solve difficult, non-routine analysis problems applying advanced analytical methods as needed Conduct end-to-end analysis including data gathering and requirements specification, processing, analysis, ongoing deliverables and presentations Make business recommendations with effective presentations of findings at multiple levels of stakeholders through use of visual displays of quantitative information Collaborate with business customers to understand needs, recommend strategy enhancements and deploy predictive analytics across multiple platforms Develop, consult on, deploy and analyse testing strategies to leverage learnings for future business endeavours Present technical issues to non-technical audiences You will work in a highly international company with development offices in Zurich, London, Shanghai, Boston and Bangalore Your profile You are curious and want to stay on top of new technologies You have an entrepreneurial drive and focus on progress and results You are a team-player and have an agile mind-set You are hands-on with an attention to details and quality Requirements Bachelor / Master / PhD degree in Math, Statistics, Physics, CS, or other quantitative disciplines Experience articulating business questions, using mathematical techniques to arrive at an answer using available data, and translating technical/analysis results into business recommendations Extensive experience with programming/analytical tools (Python, R, Julia, etc.) Experience cleaning and processing data (structured, unstructured) Experience with data visualization tools (Qlik, PowerBI, D3, etc.) Experience with data querying tools (SQL, DB2, Hive, Pig etc.) Excellent communication (written and verbal), presentation, and facilitation skills Ability to manage multiple goals and deadlines Fluency English About Us EF Education First is a global education company focusing on language, academic, cultural exchange, and educational travel programs. We are 52,000 staff, faculty and teachers, working in over 612 offices and schools across 52 countries, and having a global presence in 116 countries. While we continue to grow, we strive to stay small so as to ensure agility, smart thinking and a fun place to work. For the past 53 years, EF has grown to include a range of programs that give students of all ages the freedom and confidence to explore the world through language, travel and education. EF is committed to safeguarding and promoting the welfare of children and young adults and expects all staff and volunteers to share this commitment. References will be followed up and will ask specifically whether there is any reason that the applicant should not be engaged in situations where they have responsibility for, or substantial access to, persons under 18. Upon interview all gaps in CVs must be explained satisfactorily and proof of identity and, where applicable, qualifications will be required. Appropriate suitability checks and Garda Vetting will be conducted prior to confirmation of appointment.',\n", + " 'soft_skills': '[\"Collaboration\", \"Management\", \"Articulation\", \"Presentations\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Julia (Programming Language)\", \"Tooling\", \"Agility\", \"Programming (Music)\", \"Analytics\", \"Scholastic READ 180\", \"Visualization\", \"Requirements Specifications\", \"Python (Programming Language)\", \"Levelling\", \"D3.js\", \"Test Strategy\", \"Process Analysis\", \"DB2 SQL\", \"Technical Translation\", \"Data Visualization\", \"Apache Hive\", \"Personalization\", \"Cultural Exchange\", \"R (Programming Language)\", \"Young Adult Literature\", \"Electronic Data Processing\", \"Statistical Physics\", \"Technical Analysis\", \"Data Structures\", \"Predictive Analytics\", \"Data Management Platforms\", \"Data Processing\"]',\n", + " 'languages': \"['English', 'Assamese', 'Amharic']\"},\n", + " {'company_id': '78',\n", + " 'job_title': 'data science support (m/f/d) 80%',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.10731536e-01 3.69907647e-01 5.37105322e-01 -8.32841396e-02\\n4.53694373e-01 -1.47729725e-01 8.38730298e-03 3.66918534e-01\\n-1.57625392e-01 -3.26307744e-01 -1.58176333e-01 -2.35379845e-01\\n-2.38481447e-01 2.98396703e-02 2.55294055e-01 4.43618059e-01\\n3.02331537e-01 1.41056091e-01 -2.33044013e-01 3.40792924e-01\\n1.05844527e-01 -4.63881083e-02 4.21047024e-02 5.62856317e-01\\n3.92587990e-01 -4.81727114e-03 -4.79921885e-02 2.79685240e-02\\n-3.64072233e-01 -2.69238085e-01 3.66391331e-01 3.59552540e-02\\n-1.34150833e-01 -2.66587615e-01 1.03522204e-01 6.95136935e-02\\n-2.00103402e-01 7.58919716e-02 -5.40180467e-02 1.23594776e-01\\n-5.28827906e-01 -2.32451200e-01 2.22892419e-01 6.08282946e-02\\n-3.06051791e-01 -3.61976653e-01 2.70672292e-01 -1.21745132e-01\\n1.05021968e-01 3.80751602e-02 -5.13953090e-01 3.23753357e-01\\n-3.42199296e-01 -2.47083098e-01 3.48262936e-01 6.11278951e-01\\n9.53011885e-02 -6.74879730e-01 -4.09028232e-01 -3.56984079e-01\\n1.20385014e-01 -7.89638385e-02 4.85966466e-02 -2.45383576e-01\\n3.89639914e-01 1.41319744e-02 -4.61677052e-02 2.58769363e-01\\n-7.97479451e-01 -1.70608252e-01 -2.26641998e-01 -4.86740191e-03\\n-3.62574607e-01 1.64110716e-02 -2.51666874e-01 -5.32444119e-02\\n-2.19522864e-02 4.17514384e-01 -9.81100276e-02 1.05325781e-01\\n-8.26765671e-02 3.55940074e-01 -4.79766764e-02 2.58681506e-01\\n3.57513756e-01 1.48636431e-01 2.21547097e-01 4.55340981e-01\\n-3.70224148e-01 3.42689931e-01 2.75950491e-01 -2.66333252e-01\\n1.65974915e-01 8.30710828e-02 5.42722106e-01 2.02049866e-01\\n-1.75791152e-04 1.33832678e-01 -2.63876855e-01 2.21400827e-01\\n1.66453093e-01 -2.34147057e-01 -3.30838151e-02 -6.34793565e-02\\n-1.27191529e-01 -2.67711636e-02 3.20337676e-02 3.54278088e-01\\n-2.83879459e-01 4.84825373e-01 2.16134235e-01 -2.29279399e-01\\n9.40535497e-03 -5.89384675e-01 -2.06433266e-01 1.01783410e-01\\n-2.25730333e-03 2.10527003e-01 2.31992200e-01 1.74135640e-01\\n3.19889098e-01 -3.15156579e-02 2.13990450e-01 8.40982378e-01\\n4.22333144e-02 9.80159268e-02 -1.79195553e-01 3.17088604e-01\\n1.96465924e-01 -2.52695858e-01 9.05093029e-02 2.92772293e-01\\n1.11302800e-01 -3.07344832e-02 -2.13593394e-01 3.53802264e-01\\n-1.20423749e-01 -2.31578842e-01 -3.34817171e-01 1.01689406e-01\\n-1.87317386e-01 -4.29675370e-01 4.25123721e-01 4.16812375e-02\\n1.92523807e-01 3.16351168e-02 -2.10788380e-02 -3.32988910e-02\\n-1.02190524e-01 2.74721473e-01 2.06413623e-02 1.67150736e-01\\n-2.31359556e-01 -1.98495328e-01 -3.33338976e-01 1.55785426e-01\\n-1.54996380e-01 4.85239401e-02 -1.82880208e-01 -1.52975649e-01\\n4.09928620e-01 1.43778712e-01 -4.56775039e-01 2.95035273e-01\\n-8.29395130e-02 -5.84062114e-02 -1.31028056e-01 3.09784204e-01\\n1.79350760e-03 1.59098104e-01 -3.69025879e-02 -9.39987674e-02\\n6.04301214e-01 1.63868502e-01 9.18486267e-02 -5.02227321e-02\\n4.48493987e-01 -1.02813385e-01 2.58800775e-01 7.20917583e-02\\n-7.56281018e-01 2.76264727e-01 -1.70021988e-02 1.36750611e-02\\n5.17535061e-02 -9.41074193e-02 3.79714787e-01 -4.48161483e-01\\n-3.15036043e-04 -1.80644721e-01 -4.23877507e-01 -3.36619824e-01\\n-3.10977668e-01 -6.40199557e-02 4.66459930e-01 -3.72265697e-01\\n-1.44634172e-01 1.32286146e-01 -5.18678129e-01 -1.01235799e-01\\n3.18453759e-01 2.02263758e-01 1.35310516e-01 1.27309144e-01\\n-8.50867406e-02 -6.43747032e-01 8.50918069e-02 -5.18019795e-01\\n-4.41043556e-01 1.74783766e-01 -3.35100293e-01 2.37536967e-01\\n1.96872242e-02 -2.43050847e-02 -1.49733007e-01 3.46708335e-02\\n-3.01479399e-01 -5.76477572e-02 5.21038249e-02 1.37543768e-01\\n2.39318788e-01 -5.09910621e-02 -4.48510081e-01 4.46121961e-01\\n-3.15744102e-01 5.17616034e-01 1.74525827e-01 -9.39459682e-01\\n6.35799408e-01 2.25852892e-01 6.60003871e-02 -3.09500933e-01\\n5.45736969e-01 -3.38004231e-01 -6.53736964e-02 1.70085728e-01\\n-3.41892570e-01 -3.98401648e-01 2.42864385e-01 -1.54370323e-01\\n-3.47090453e-01 5.43048084e-01 1.28654554e-01 -5.45445383e-02\\n2.30093777e-01 -1.89999372e-01 -1.07986249e-01 1.61216408e-01\\n-4.12692949e-02 -1.26108602e-01 -4.68378842e-01 -2.25561322e-03\\n1.77530814e-02 -5.04604638e-01 -2.01132506e-01 -3.45662057e-01\\n-2.27212965e-01 -4.87672180e-01 -3.04211050e-01 3.64536822e-01\\n1.14621542e-01 9.87400115e-02 3.52037661e-02 1.10753790e-01\\n-7.49558136e-02 -6.44169867e-01 5.61154410e-02 6.19635079e-03\\n3.60969901e-01 2.74347961e-01 9.77665707e-02 -8.57716873e-02\\n-7.96219483e-02 6.21131063e-01 -2.42698669e-01 -2.47656479e-01\\n7.22179785e-02 8.03811327e-02 -4.18683030e-02 -1.60559595e-01\\n1.29437938e-01 3.19870889e-01 -1.90356866e-01 1.25097275e-01\\n-1.40182316e-01 -6.52400702e-02 3.25557083e-01 -9.52481106e-02\\n-3.21648359e-01 -2.26222768e-01 -7.16273189e-02 2.45786533e-01\\n-6.41996443e-01 -2.53398776e-01 5.57601035e-01 2.06552386e-01\\n1.78267136e-01 1.85761213e-01 3.36458981e-01 -1.68710142e-01\\n-1.93185434e-01 -2.64896035e-01 2.64908403e-01 2.03485817e-01\\n9.00784805e-02 1.47578567e-01 -1.86626181e-01 -7.16610551e-01\\n-3.04160571e+00 -1.91848218e-01 2.20283180e-01 -2.43747458e-01\\n2.49602973e-01 -4.69423123e-02 9.96891558e-02 -8.37535411e-02\\n-2.02624813e-01 1.85490195e-02 -2.27678329e-01 -1.28193051e-01\\n8.46198350e-02 3.12644690e-01 2.30448581e-02 1.09214991e-01\\n2.21879795e-01 -2.41276398e-01 -4.87298183e-02 2.50997812e-01\\n-5.79752848e-02 -6.78818941e-01 1.47857651e-01 -9.10229981e-02\\n2.70248204e-01 2.87184983e-01 -3.47423702e-01 -1.15189284e-01\\n-1.77563325e-01 -2.33028993e-01 -5.27828047e-03 -2.18604803e-01\\n-1.26371324e-01 2.43191153e-01 8.17344487e-02 2.07444187e-02\\n1.09996334e-01 -2.64710516e-01 -3.94320190e-02 -4.73364085e-01\\n1.90876693e-01 -7.61241436e-01 -6.93584606e-03 -3.00038189e-01\\n5.65630257e-01 -3.78603607e-01 7.37286657e-02 8.87229964e-02\\n2.03951299e-01 1.90445587e-01 -1.29225114e-02 -2.91848276e-02\\n-3.36547554e-01 -1.90935165e-01 -2.47057453e-02 -1.74102336e-01\\n5.69267035e-01 5.52759528e-01 -2.82387435e-01 -1.20747909e-02\\n2.30162367e-01 -4.22629595e-01 -4.79909986e-01 -3.93579215e-01\\n-1.81753576e-01 -2.34211892e-01 -6.72134399e-01 -4.21625942e-01\\n-1.07680894e-01 -2.36486625e-02 -1.30403176e-01 6.27168238e-01\\n-2.63569385e-01 -4.22517121e-01 7.73259476e-02 -5.42714596e-01\\n6.60096705e-02 -1.60290018e-01 3.80783305e-02 -2.83471107e-01\\n-2.12179765e-01 -5.04125297e-01 1.34427428e-01 2.13479735e-02\\n-2.59686083e-01 -7.66295642e-02 6.57235384e-02 -1.64675400e-01\\n-3.07906032e-01 -4.45219874e-01 4.71308798e-01 9.29133445e-02\\n4.22378957e-01 1.41857862e-01 2.24425539e-01 5.19355014e-02\\n3.46008539e-01 -1.35627702e-01 1.39423057e-01 -4.64231133e-01\\n-2.32318249e-02 3.39566283e-02 6.78254366e-01 -1.66035190e-01\\n3.68114002e-02 1.84258372e-01 -2.93843061e-01 -1.76310286e-01\\n4.49197143e-01 5.42719327e-02 7.52034485e-02 -2.74298429e-01\\n4.07258928e-01 -3.58387351e-01 -2.90008128e-01 1.65129423e-01\\n7.86686316e-02 8.04310918e-01 2.43452508e-02 -4.00982440e-01\\n-3.22587609e-01 5.00058353e-01 -1.70635581e-01 -1.00941248e-01\\n-2.18243495e-01 9.68409479e-02 -7.13226050e-02 2.53408551e-01\\n1.28468573e-01 -1.32461771e-01 -2.81297266e-01 -9.55562368e-02\\n-5.88952862e-02 1.64605901e-01 2.40022659e-01 1.17620990e-01\\n5.44424057e-02 -2.58559525e-01 3.75962071e-02 9.65941772e-02\\n2.03767017e-01 3.00640851e-01 4.79891486e-02 -2.63623118e-01\\n-1.25996962e-01 3.49057406e-01 -1.26180321e-01 2.85049856e-01\\n-1.07221283e-01 7.77212754e-02 -4.42887455e-01 -2.15981871e-01\\n-2.64151275e-01 -3.44455302e-01 -1.42485797e-02 3.19568813e-01\\n2.03205854e-01 -2.58313771e-03 8.56234401e-04 -4.99171108e-01\\n3.69079143e-01 6.00580201e-02 2.40228683e-01 1.47707209e-01\\n3.11386529e-02 4.57619697e-01 1.67504977e-02 -4.82043885e-02\\n-1.56614050e-01 6.45890087e-02 -2.26106972e-01 -1.42165214e-01\\n1.26978621e-01 -3.98276120e-01 -1.34162083e-01 4.79718417e-01\\n7.48340338e-02 -2.24436224e-01 -2.46876180e-01 2.53256112e-01\\n1.12354472e-01 -4.18088794e-01 -1.43996909e-01 -1.16118439e-01\\n1.80104852e-01 -7.71564245e-03 3.22382241e-01 -4.10689503e-01\\n4.73950878e-02 -7.78159574e-02 -8.01018625e-02 5.06661594e-01\\n1.40267909e-01 -6.53904155e-02 -1.13426521e-01 -1.00845240e-01\\n4.14705426e-01 -3.11442595e-02 -5.09249195e-02 -6.01374470e-02\\n1.09685875e-01 -1.55536339e-01 -4.71183330e-01 -3.14764641e-02\\n-1.79735139e-01 -1.81970939e-01 2.47871261e-02 -5.92177212e-02\\n1.61049157e-01 7.15048537e-02 -3.25409830e-01 -2.41035104e-01\\n-3.53654683e-01 -9.79515016e-02 -2.78428663e-02 -4.18056190e-01\\n-7.17561617e-02 7.88506269e-02 -6.23365343e-01 1.66162580e-01\\n-3.72024417e-01 9.72304679e-03 1.27361983e-01 1.06142581e-01\\n-4.63612705e-01 -7.47699961e-02 6.00101687e-02 8.39792117e-02\\n-4.04772997e-01 -2.63746500e-01 6.20788112e-02 -8.82543206e-01\\n1.13375835e-01 8.09631404e-03 -1.17724486e-01 9.11231562e-02\\n-6.74665049e-02 -7.57364333e-01 1.87944233e-01 -3.06501180e-01\\n-9.60846618e-02 6.81713745e-02 -2.36296549e-01 -4.31807041e-01\\n1.54325068e-01 -1.51437119e-01 -3.24556172e-01 3.25155675e-01\\n-4.66710329e-01 2.93473542e-01 5.08545376e-02 1.39016703e-01\\n-1.82869360e-02 -2.73568720e-01 9.91006494e-02 -2.60581940e-01\\n-5.66838145e-01 -8.38299394e-02 -3.70923787e-01 -2.70012081e-01\\n6.23657443e-02 -2.22421110e-01 -1.69736937e-01 5.42394072e-02\\n3.77027720e-01 7.91343823e-02 -1.16932280e-01 -6.00278601e-02\\n7.70480111e-02 -3.59642178e-01 -7.37779513e-02 -7.50138685e-02\\n4.24185693e-02 -6.26866072e-02 1.67623848e-01 -6.76227510e-02\\n2.14640558e-01 -3.22585434e-01 5.53006947e-01 -3.04440349e-01\\n-3.90158355e-01 7.15670437e-02 1.36208147e-01 2.66614128e-02\\n2.43216410e-01 -5.51566362e-01 6.44580880e-03 3.18377525e-01\\n-2.62574442e-02 2.46096812e-02 2.21603945e-01 5.41184656e-02\\n-1.66352704e-01 1.80906594e-01 -4.50848997e-01 2.89608892e-02\\n9.16644335e-01 2.13164806e-01 1.00765549e-01 2.21899688e-01\\n-4.68453253e-03 3.57225716e-01 6.30633533e-01 -8.35323483e-02\\n-8.77875835e-02 3.00511867e-01 3.09560765e-02 -6.27168596e-01\\n-1.20123118e-01 1.93521176e-02 -2.52246201e-01 -3.12236071e-01\\n7.15249062e-01 4.20263350e-01 -3.16046119e-01 -2.66715616e-01\\n-9.70485583e-02 -2.16722295e-01 1.43152848e-01 -9.62061286e-02\\n1.53920442e-01 -1.70903847e-01 5.34658790e-01 -5.13083562e-02\\n2.63260216e-01 5.43530464e-01 -2.89680779e-01 -3.15014750e-01\\n-1.32023379e-01 8.76243263e-02 2.58956775e-02 3.52872372e-01\\n-1.76191330e-01 9.32432115e-02 3.79043557e-02 3.62920798e-02\\n-1.45068914e-01 1.68738782e-01 7.30930492e-02 9.16383043e-02\\n3.00069243e-01 1.36907056e-01 2.40522832e-01 4.28248256e-01\\n2.56061375e-01 4.94731307e-01 2.87909806e-01 8.41541961e-02\\n4.59914416e-01 5.29126585e-01 3.98894638e-01 1.50522739e-01\\n-9.35459882e-03 9.87020284e-02 9.05465558e-02 4.84659933e-02\\n4.86199409e-01 2.45884418e-01 2.55503476e-01 8.98801684e-01\\n2.40435839e-01 3.93020213e-01 7.24668622e-01 -5.91465414e-01\\n-3.86379510e-01 8.73027816e-02 4.67809558e-01 -3.04379612e-01\\n-8.79099444e-02 8.69089887e-02 -1.27297148e-01 2.40333095e-01\\n-5.35327196e-01 -1.26873240e-01 -6.66621979e-03 -4.57532220e-02\\n4.01203558e-02 -5.37147373e-02 -2.37362385e-01 -9.71688554e-02\\n-2.82674223e-01 -1.28103331e-01 -3.33885342e-01 -1.44143492e-01\\n-2.04035088e-01 -1.15397640e-01 -2.27123648e-02 -2.15493590e-01\\n-9.80089605e-02 -4.24606293e-01 -1.93304464e-01 -6.99681602e-03\\n2.54074991e-01 -1.17220215e-01 -1.17312118e-01 -1.75538078e-01\\n1.40722409e-01 2.83962280e-01 6.06930852e-01 -4.92974222e-02\\n1.58067986e-01 -1.79238141e-01 -2.44933218e-01 1.17063165e-01\\n1.09505802e-01 -2.61869393e-02 1.52552158e-01 5.52039444e-01\\n-2.80846357e-01 -1.25043973e-01 8.24225470e-02 4.18685585e-01\\n-4.79618251e-01 -5.28519116e-02 -9.48673114e-02 2.07414091e-01\\n2.17076708e-02 1.94035232e-01 -2.88582593e-01 1.38456881e-01\\n-2.30339989e-01 -6.26011491e-01 3.91725063e-01 -4.80942726e-02\\n-1.98783219e-01 9.38457623e-02 3.44199896e-01 2.01732203e-01\\n-2.10025847e-01 -7.50362799e-02 -1.70447174e-02 3.25209022e-01\\n9.07730833e-02 4.24107790e-01 -2.89709508e-01 -1.78466812e-01\\n-2.09643975e-01 2.59959042e-01 -1.39734179e-01 3.53505984e-02\\n-1.43826276e-01 4.34967756e-01 2.37054244e-01 4.38335016e-02\\n3.85028005e-01 -3.62493470e-02 -1.86462611e-01 -1.50911972e-01\\n-2.36064956e-01 -3.10038149e-01 4.92999479e-02 -4.00034413e-02\\n1.33595288e-01 -3.83559704e-01 -8.59049633e-02 -1.85931802e-01\\n-9.34243575e-02 -4.32149053e-01 -1.32399768e-01 1.03199765e-01]]',\n", + " 'job_description': 'For our client, an international pharmaceutical company, we are in search for a Programmer (Data Science Support). What the company offers you: You will support scientists by building and deploying modeling and simulation user-friendly applications through digital tools An international environment Large and diverse infrastructure Competitive salary Contract till 31.07.2020 with a possibility of extension Your responsibilities: Using programming expertise to develop tailor-made software solutions based on various programming languages (e.g. JavaScript, C#, php, python etc.) Supporting and being responsible for defined system administration activities on an allocated/defined system or environment Supporting operational requirements of defined areas of the business e.g. troubleshooting and migration to new versions Writing all required documentation (e.g. user guides, etc.) Tracking, troubleshooting and resolving systems related issues Applying and writing appropriate testing procedures and scripts Your profile: Being proficient in one or more programming language / environment, including HTML, CSS, JavaScript, .NET (C#), SQL, Python, vba macros (MS Office) Being familiar with Frameworks/applications: Svelte, React, Git (gitbucket), VS code Strong interpersonal communication skills and ability to manage in a dynamic, ever-changing working environment Fluent English (oral and written) Welcome to nemensis! We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Writing\", \"Infrastructure\", \"Friendliness\", \"Interpersonal Communications\", \"Management\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"Tooling\", \"KM Programming Language\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Integrated Language Environments\", \"Activism\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Tracking (Commercial Airline Flight)\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Web Application Frameworks\", \"React.js\", \"Data Science\", \"Project-Based Solutions\", \"C# (Programming Language)\", \"Digitization\", \"JavaScript (Programming Language)\", \"User Guide\", \"Simulations\", \"Pharmaceuticals\", \"Macros\", \"Svelte (Software)\", \"System Administration\", \"Scripting\", \"Git Flow\", \"SQL (Programming Language)\", \"E-Business\"]',\n", + " 'languages': \"['English', 'Kikuyu', 'Esperanto']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data management software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.70292574e-01 2.81326264e-01 5.57755888e-01 -1.05053246e-01\\n4.39890504e-01 -1.87018290e-01 -2.12570298e-02 1.82688296e-01\\n-1.11956023e-01 -2.71211058e-01 -6.09315820e-02 -2.72902936e-01\\n-1.56906664e-01 4.73471079e-03 2.16479912e-01 5.41969240e-01\\n2.12923542e-01 6.95028827e-02 -2.96415985e-01 3.37609589e-01\\n1.24483429e-01 -7.90992752e-02 1.05031012e-02 6.93491995e-01\\n4.42851573e-01 -5.01158126e-02 -9.53608975e-02 -1.98568478e-02\\n-3.66580039e-01 -2.78387070e-01 4.37171996e-01 3.30377854e-02\\n-1.42621577e-01 -2.60440350e-01 9.61181894e-02 3.09303794e-02\\n-1.77142277e-01 -7.05773458e-02 3.99670117e-02 1.64713264e-01\\n-4.21976060e-01 -2.00841635e-01 2.26881467e-02 1.26410648e-02\\n-2.82974273e-01 -3.59689742e-01 -1.15469299e-01 -8.91362950e-02\\n6.67788535e-02 2.01953575e-02 -5.58817029e-01 3.60430270e-01\\n-3.72531027e-01 -1.85242146e-01 2.52384126e-01 6.05830491e-01\\n1.29636098e-02 -6.29486024e-01 -3.52056503e-01 -3.48986030e-01\\n1.94348097e-01 -8.57317746e-02 8.79204571e-02 -1.42898038e-01\\n2.42052555e-01 -1.96762569e-02 -1.12512000e-01 4.62455034e-01\\n-6.77478790e-01 -1.31137282e-01 -3.03896457e-01 -6.70878962e-02\\n-3.09089601e-01 -2.54116338e-02 -3.41115236e-01 -1.22281708e-01\\n-5.40802144e-02 3.67330432e-01 -2.92156301e-02 3.64422947e-02\\n-2.29004785e-01 2.49715611e-01 -9.91315767e-02 2.21881762e-01\\n3.64463598e-01 2.08059222e-01 2.77260840e-01 3.92164767e-01\\n-4.87864077e-01 4.72324520e-01 2.13847727e-01 -3.54043365e-01\\n1.34183824e-01 7.21081644e-02 4.96910572e-01 8.91512260e-02\\n9.26143825e-02 1.79028794e-01 -1.45859241e-01 1.57059535e-01\\n1.81636333e-01 -1.94797412e-01 1.30155325e-01 -7.77149945e-02\\n-1.86036229e-01 4.71877679e-02 3.42899784e-02 3.48258257e-01\\n-3.20100695e-01 3.96905094e-01 2.39035696e-01 -2.42097124e-01\\n-1.92998186e-01 -6.07923746e-01 -1.09215779e-02 1.82565432e-02\\n-2.09005061e-03 1.85316220e-01 3.74360442e-01 1.81953639e-01\\n2.54145712e-01 -5.00331372e-02 2.00790659e-01 9.04943824e-01\\n-2.77125631e-02 1.07413061e-01 -2.84514189e-01 3.34158540e-01\\n1.71823993e-01 -2.13762343e-01 1.53681695e-01 1.70487955e-01\\n8.37758034e-02 -1.15845136e-01 -2.90561527e-01 3.85896802e-01\\n-1.11527853e-01 -1.87116593e-01 -2.71454513e-01 1.97439548e-02\\n-2.87898451e-01 -5.90330362e-01 4.77310836e-01 -4.73777251e-03\\n1.56665415e-01 -1.22813262e-01 -3.91339064e-02 -5.63950948e-02\\n-4.56838403e-03 3.78255308e-01 8.70847702e-02 2.02759475e-01\\n-2.72098005e-01 -2.29454458e-01 -1.78882852e-01 3.27739954e-01\\n-1.37157530e-01 1.19671993e-01 -1.00329980e-01 -9.53236371e-02\\n3.19252610e-01 9.84994546e-02 -3.59065086e-01 2.83695042e-01\\n5.73738068e-02 -3.08815897e-01 -1.60348162e-01 3.06522310e-01\\n-2.10577190e-01 8.03513601e-02 5.16003370e-03 -2.77335912e-01\\n5.18592536e-01 1.87782079e-01 2.35965654e-01 -9.35928449e-02\\n3.86316955e-01 -1.64961159e-01 1.99199781e-01 1.17016427e-01\\n-6.19549692e-01 3.62743914e-01 -6.67514279e-02 -7.54005611e-02\\n9.21741053e-02 4.40084934e-02 3.15578282e-01 -3.77536505e-01\\n2.42003631e-02 -2.31159329e-01 -3.30907375e-01 -4.51200426e-01\\n-2.06652418e-01 -7.83104673e-02 4.27163392e-01 -2.79257685e-01\\n-1.30804226e-01 1.64026409e-01 -5.22862673e-01 -1.02706864e-01\\n2.06718788e-01 1.43548399e-01 5.07345721e-02 1.59358099e-01\\n-1.05502360e-01 -5.88102758e-01 1.81058478e-02 -4.62521762e-01\\n-5.43015659e-01 6.73736483e-02 -1.87761709e-01 2.51580387e-01\\n-2.42819600e-02 1.15281111e-02 -3.59412581e-02 1.60218030e-01\\n-3.32984984e-01 2.88123991e-02 1.02974594e-01 1.59279764e-01\\n2.96763361e-01 3.37335025e-03 -4.23487902e-01 5.41962743e-01\\n-2.03524396e-01 4.75730568e-01 2.76837468e-01 -8.91944706e-01\\n5.73816657e-01 7.40262344e-02 1.16694637e-01 -2.73546785e-01\\n4.94151890e-01 -4.60089207e-01 6.47174418e-02 1.25293434e-01\\n-2.92972922e-01 -1.75939918e-01 3.54199469e-01 -1.55538231e-01\\n-2.82111496e-01 5.29784918e-01 1.48372889e-01 9.01989117e-02\\n2.60414332e-01 -2.48044044e-01 -1.16512619e-01 -1.12489082e-01\\n-1.47846088e-01 -1.71143055e-01 -5.03914177e-01 1.90883383e-01\\n-2.01894250e-02 -6.14933193e-01 -1.32633418e-01 -3.82474273e-01\\n-2.55724788e-01 -3.84858936e-01 -3.01838994e-01 3.79406512e-01\\n1.65603846e-01 1.53353035e-01 2.73791291e-02 -8.97240117e-02\\n-6.87647015e-02 -5.23659050e-01 -1.94121301e-01 1.55255124e-01\\n4.59062368e-01 2.55280107e-01 -3.19904573e-02 3.28240991e-02\\n-2.24086903e-02 5.77081084e-01 -2.34184951e-01 -2.75515348e-01\\n1.40691236e-01 1.93803683e-01 6.49124235e-02 -9.24895704e-02\\n-2.26984005e-02 2.92352289e-01 -1.50341153e-01 6.86011789e-03\\n2.15091519e-02 3.35001424e-02 4.28775847e-01 5.76944239e-02\\n-2.32026607e-01 -1.24385804e-01 -4.50810418e-02 2.08737463e-01\\n-5.76928675e-01 -1.02075458e-01 5.81767261e-01 2.52229422e-01\\n2.31030211e-01 2.75238395e-01 3.69861007e-01 -1.35389850e-01\\n-3.37142378e-01 -2.18381867e-01 2.22820759e-01 9.40597281e-02\\n-1.87114943e-02 -2.91629620e-02 -9.81784016e-02 -4.15278941e-01\\n-3.00679040e+00 -2.07076758e-01 1.15285367e-01 -2.99824595e-01\\n1.48332626e-01 -1.03474289e-01 1.14717528e-01 2.93125375e-03\\n-2.80232728e-01 1.20290816e-01 -1.42425358e-01 -1.76887959e-01\\n9.58830714e-02 2.48012990e-01 1.76215678e-01 2.07192257e-01\\n2.01685518e-01 -1.89298734e-01 -1.22108571e-01 3.14803928e-01\\n-1.03367224e-01 -7.32086241e-01 1.65693462e-01 3.47145125e-02\\n1.05822742e-01 1.40546009e-01 -4.46331114e-01 -3.10765654e-02\\n-2.59204894e-01 -2.86579221e-01 1.17987216e-01 -2.73724735e-01\\n-1.63907662e-01 3.13615710e-01 2.01817781e-01 -1.24358267e-01\\n-1.47416983e-02 -3.46294999e-01 -5.73649257e-02 -4.48227704e-01\\n1.98319897e-01 -6.59012496e-01 8.91178250e-02 -1.87152013e-01\\n7.03532875e-01 -3.47390503e-01 1.87748343e-01 6.23209253e-02\\n2.49624908e-01 9.81964692e-02 1.07042091e-02 -3.45543213e-02\\n-2.52645999e-01 -2.96896249e-01 5.34235127e-02 -1.72995597e-01\\n5.04732311e-01 4.68306452e-01 -1.59807354e-01 2.06755344e-02\\n8.07546452e-02 -3.30439270e-01 -3.49689603e-01 -4.10873562e-01\\n-3.56101424e-01 -1.28247663e-01 -6.70646608e-01 -4.28215504e-01\\n-2.02621609e-01 -1.00035951e-01 -2.30059400e-01 6.27511978e-01\\n-2.99580932e-01 -3.80923718e-01 -6.68587983e-02 -5.19155800e-01\\n1.37443885e-01 -3.18979830e-01 1.17669880e-01 -2.66918182e-01\\n-3.09857309e-01 -5.24894655e-01 2.72378743e-01 -5.20828553e-02\\n-1.53475314e-01 -9.37151462e-02 3.41364220e-02 -1.87963292e-01\\n-2.71902859e-01 -4.07887161e-01 3.88528556e-01 1.73449725e-01\\n3.27306330e-01 1.72445208e-01 2.44999319e-01 1.59487233e-01\\n3.04804295e-01 -1.96822405e-01 8.81054848e-02 -3.02988976e-01\\n8.72355998e-02 1.63066313e-02 6.49742842e-01 -2.31694177e-01\\n6.54784217e-02 1.09045744e-01 -2.95519173e-01 -1.53040722e-01\\n4.74532008e-01 -4.01679501e-02 8.97865966e-02 -1.29278377e-01\\n4.44742352e-01 -5.84247112e-01 -2.31928140e-01 2.15962768e-01\\n4.72479388e-02 7.54454494e-01 -2.22351756e-02 -4.53572065e-01\\n-2.21685186e-01 3.64661485e-01 -9.69577208e-02 -6.86363801e-02\\n-2.96663076e-01 2.06189945e-01 -1.84080362e-01 3.02615166e-01\\n-8.52538049e-02 -1.69328988e-01 -3.80246013e-01 -1.44977987e-01\\n9.33646038e-03 2.62198716e-01 2.67987370e-01 -2.94822957e-02\\n5.72012328e-02 -1.87239453e-01 -1.67305976e-01 1.33853540e-01\\n3.37203562e-01 3.49137187e-01 1.26482770e-01 -2.23075747e-01\\n-1.53270841e-03 2.42047787e-01 -2.37563223e-01 2.50603706e-01\\n-1.32816464e-01 1.01964533e-01 -4.71296638e-01 -1.73137769e-01\\n-6.59048185e-02 -2.97777414e-01 2.53320262e-02 3.33302289e-01\\n6.81554750e-02 -8.43670070e-02 2.38669030e-02 -3.86873871e-01\\n4.91279662e-01 8.13033506e-02 1.86996669e-01 1.60336748e-01\\n4.30921093e-02 6.54275477e-01 -1.48466870e-01 -4.73781377e-02\\n-1.27377436e-01 -1.08686931e-01 -2.88999617e-01 -2.63836294e-01\\n6.02700077e-02 -2.77791530e-01 -1.37849435e-01 5.01835763e-01\\n1.70436367e-01 -3.05157840e-01 -7.96188489e-02 3.77350539e-01\\n5.27075529e-02 -2.26139188e-01 -2.36791521e-01 9.98539105e-02\\n1.83768496e-01 1.21347830e-01 2.91761756e-01 -4.26280946e-01\\n-2.16883004e-01 -5.52592287e-03 -5.87790981e-02 4.77342457e-01\\n1.57390147e-01 1.47559300e-01 -1.11198455e-01 -2.81600296e-01\\n4.59962130e-01 -1.58780724e-01 -1.95896387e-01 -2.36885492e-02\\n1.21590197e-01 -1.67239055e-01 -4.55151469e-01 -4.86931466e-02\\n-3.10168415e-02 -2.76671410e-01 1.76637247e-01 6.63259774e-02\\n1.41483098e-01 -7.68534048e-03 -5.55119097e-01 -2.89687932e-01\\n-3.08328003e-01 -1.08148687e-01 9.75039527e-02 -4.95561033e-01\\n-3.02156024e-02 -1.63144797e-01 -5.70814013e-01 2.62267262e-01\\n-1.81233481e-01 -1.80588569e-02 4.04895619e-02 1.15486853e-01\\n-3.24928880e-01 -1.18755840e-01 1.59849897e-01 1.54983521e-01\\n-3.35972905e-01 -2.10335389e-01 4.39419337e-02 -1.00806582e+00\\n1.46304116e-01 8.93483162e-02 -9.11566913e-02 -1.26727605e-02\\n-4.18219492e-02 -6.87542140e-01 1.64052874e-01 -3.21139902e-01\\n-4.36208509e-02 8.07907656e-02 -1.56738356e-01 -4.22464937e-01\\n2.01131716e-01 -5.22537678e-02 -1.70517638e-01 3.43359143e-01\\n-4.12267536e-01 2.88634032e-01 -4.41590175e-02 7.48884827e-02\\n1.91136915e-02 -2.66092837e-01 2.29615673e-01 -3.31646442e-01\\n-4.57971305e-01 -1.70771345e-01 -3.84818524e-01 -2.51089782e-01\\n4.70236130e-02 -2.39243701e-01 -2.88949192e-01 5.99629618e-02\\n3.59639168e-01 2.12070614e-01 -9.13261324e-02 -1.78368151e-01\\n2.90506762e-02 -4.23835605e-01 1.65251732e-01 -2.57589102e-01\\n2.90219374e-02 -1.77508801e-01 1.23099715e-01 6.03318401e-03\\n1.14358952e-02 -3.67693424e-01 4.79975015e-01 -2.89860487e-01\\n-3.88507903e-01 -1.10971637e-01 1.10011347e-01 1.28919601e-01\\n4.30074155e-01 -4.65584785e-01 4.06313352e-02 1.86186627e-01\\n6.44897670e-02 1.13622993e-01 2.89205283e-01 -9.09078121e-02\\n-1.15943819e-01 2.48185009e-01 -5.52143097e-01 1.54513299e-01\\n7.42216945e-01 2.41519630e-01 1.06562331e-01 2.26688534e-01\\n1.81796223e-01 2.80676425e-01 4.62622344e-01 -8.11659023e-02\\n-1.05545014e-01 2.29320228e-01 3.03105870e-03 -5.76003909e-01\\n-1.47117838e-01 -1.16706878e-01 -1.48186386e-01 -4.03552085e-01\\n6.30353689e-01 4.08468068e-01 -3.39721590e-01 -2.49167949e-01\\n-6.02707677e-02 -7.74010792e-02 2.55341142e-01 -8.73840451e-02\\n-8.87019485e-02 1.40945734e-02 5.84042370e-01 6.99315453e-03\\n3.58958006e-01 5.73696673e-01 -2.29277924e-01 -3.53772759e-01\\n-1.37871191e-01 2.69755989e-01 1.64598286e-01 4.00257021e-01\\n-1.21634804e-01 1.76562279e-01 -5.00363531e-03 1.77722111e-01\\n-1.97251588e-02 -2.22994108e-02 5.18739559e-02 1.81624666e-02\\n1.80039600e-01 9.53746960e-02 2.00973466e-01 4.70073670e-01\\n1.91159248e-01 4.61270034e-01 3.41069877e-01 -9.96945798e-03\\n3.95830721e-01 7.13277698e-01 4.15081263e-01 2.70778000e-01\\n5.71153089e-02 -5.62140197e-02 -1.34937810e-02 5.41997962e-02\\n3.18848073e-01 3.68342817e-01 6.68679457e-03 8.79053056e-01\\n3.00608993e-01 2.40280002e-01 6.98952317e-01 -5.70342124e-01\\n-4.63592976e-01 2.31184065e-02 5.35128355e-01 -3.18313986e-01\\n-2.67374199e-02 1.23612225e-01 -2.59276241e-01 2.43955836e-01\\n-4.71544921e-01 -1.30222812e-01 2.94075324e-03 -1.48924962e-01\\n7.84014612e-02 -6.24120906e-02 -1.38550386e-01 5.65694533e-02\\n-2.61736125e-01 -2.33677804e-01 -2.68874079e-01 -1.40818998e-01\\n-3.11408550e-01 -2.48596855e-02 -4.12263013e-02 -2.86668353e-02\\n-1.24997780e-01 -3.90314430e-01 -1.28355220e-01 8.91917050e-02\\n3.54920864e-01 -1.15812808e-01 -8.14978108e-02 -1.19258992e-01\\n5.21535501e-02 1.85887218e-01 5.59405029e-01 -5.08556701e-02\\n1.00841500e-01 -1.55992880e-01 -2.96297252e-01 3.92407738e-02\\n1.36431202e-01 1.18467294e-01 1.36087731e-01 3.88555765e-01\\n-3.84214669e-01 -7.68129155e-02 1.30664051e-01 3.44611168e-01\\n-4.00536478e-01 7.53649771e-02 -1.97978318e-01 1.73257187e-01\\n1.35396674e-01 1.91371560e-01 -3.35557103e-01 6.25645071e-02\\n-2.43111238e-01 -5.32230616e-01 3.71022195e-01 -2.59317577e-01\\n-1.60639033e-01 1.07533835e-01 2.50894994e-01 2.07663432e-01\\n-3.09702396e-01 1.78403351e-02 -1.00629181e-01 2.89874583e-01\\n1.82960480e-02 2.94732779e-01 -2.06338093e-01 -5.99913038e-02\\n-2.99882829e-01 2.96326041e-01 -7.54930452e-02 1.93120614e-01\\n-7.43991062e-02 2.91364491e-01 9.63511318e-02 6.72644516e-03\\n2.48291060e-01 5.44800274e-02 -2.52132535e-01 -2.85151273e-01\\n-2.09588379e-01 -2.83753872e-01 1.99802279e-01 -1.10176422e-01\\n2.01264024e-01 -3.85354459e-01 -1.32988065e-01 -1.93733394e-01\\n-2.31567115e-01 -3.74207228e-01 -1.57430694e-01 1.84634961e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is a world wide leading insurance company Ihr Aufgabenbereich Developing and supporting Data Management Framework application(s) ranging from small integration tools to full-blown applications, over time building up an integrated solution suite enabling Data Management to support the enterprise in becoming even more data driven Contributing to overall data management capability development, spanning various topics like data modeling, metadata management, data standardization and master & reference data management Being part of the development team supporting the Risk Modelling Platform generic components underpinning a range of business critical capital modelling applications Supporting incident resolution; working with the BUs to mitigate associated impacts Ihr Profil University level education, e.g. Computer Science, Computer Engineering, or Engineering Discipline 10+ years of experience in enterprise-grade software development 10+ years of experience with C# .NET framework development High degree of customer focus & end-to-end solution delivery attitude Proficiency in C# and object-oriented programming concepts, enjoys writing clear, maintainable code, tests and documentation Familiarity with enterprise application architecture patterns (concurrency models, unit-of-work etc.), transactional processing, domain driven design, REST APIs and service oriented architecture including solid skills in managing complexity with decoupling and dependency injection Knows how to approach a problem statement, steer the requirements engineering and drive the technical solution design Experience in the data management domain (metadata, master & reference, data quality, etc.) are a plus Has excellent communication skills, both written and oral, able to interact with different management levels Fluent in written & spoken English, German is a plus Ihre Chance Did you get your attention and you are looking for a new challenge? Then send your complete application documents to jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C .NET Entwicklung Sprachen: Deutsch Englisch Job ID: 7357',\n", + " 'soft_skills': '[\"Writing\", \"Management\", \"Integration\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"Reference Data\", \"Mitigation\", \"Tooling\", \"Capitalization\", \"Interactivity\", \"Computer Science\", \"Metadata\", \"Data Management\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Build Time\", \"World Wide Web\", \".NET Framework\", \"Service Level Management\", \"E (Programming Language)\", \"Levelling\", \"Applications Architecture\", \"Concurrency Pattern\", \"Programming Concepts\", \"C (Programming Language)\", \"Domain Driven Design\", \"Application Portfolio Management\", \"C# (Programming Language)\", \"Dependency Injection\", \"Solution Delivery\", \"Requirements Engineering\", \"Clinical Data Management\", \"Capability Development\", \"Computer Engineering\", \"Technical Solution Design\", \"Transaction Processing (Business)\", \"Software Development\", \"Solution Design\", \"Metadata Modeling\", \"Maintaining Code\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Mongolian', 'Armenian', 'South Ndebele', 'Maltes']\"},\n", + " {'company_id': '117',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Lausanne',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.98490053e-01 1.68447852e-01 5.34035742e-01 1.06047787e-01\\n5.86748719e-01 -1.64473459e-01 -1.20681524e-02 3.75144809e-01\\n3.11087854e-02 -4.82621431e-01 1.08029217e-01 -2.64965594e-01\\n-4.24936302e-02 1.79403901e-01 4.39701453e-02 4.36141640e-01\\n1.80472717e-01 8.43676999e-02 -1.63410068e-01 3.29295218e-01\\n1.13052651e-01 -1.84331536e-01 1.54782996e-01 8.92038584e-01\\n4.35893834e-01 2.22152937e-02 -1.08888783e-01 -5.51389158e-03\\n-1.97020054e-01 -1.57019198e-01 5.22132397e-01 2.31429040e-02\\n-2.02051908e-01 -4.68408644e-01 1.68216944e-01 1.09614417e-01\\n-2.70741880e-01 -9.14032832e-02 -5.62994629e-02 2.48039246e-01\\n-6.21851087e-01 -1.67824715e-01 -4.63125668e-02 5.22936247e-02\\n-3.25999469e-01 -3.72982562e-01 -1.35743007e-01 -6.46300837e-02\\n1.58920780e-01 1.82162970e-02 -4.20258880e-01 2.32335225e-01\\n-2.93916643e-01 -3.86448324e-01 2.66541123e-01 7.05900788e-01\\n-5.26017696e-02 -3.64010692e-01 -5.49109697e-01 -3.05890381e-01\\n8.15853179e-02 -1.81274474e-01 7.18047097e-02 -4.93999779e-01\\n1.36774898e-01 3.02586965e-02 6.14990145e-02 3.75392914e-01\\n-8.38087678e-01 -4.62461896e-02 -2.13762134e-01 -1.04728319e-01\\n-3.03522468e-01 -4.99219745e-02 -4.08171833e-01 -5.91531098e-02\\n-3.01084161e-01 4.70264167e-01 5.98923452e-02 -1.35122277e-02\\n-2.37765253e-01 2.84317821e-01 -2.13795438e-01 4.82043564e-01\\n1.57344908e-01 3.31291556e-01 2.78843254e-01 4.06588346e-01\\n-3.29693198e-01 6.00341678e-01 7.40409344e-02 -3.79007518e-01\\n2.68371969e-01 1.87614530e-01 4.32731837e-01 -4.40297574e-02\\n1.86995834e-01 6.54741526e-02 -3.53593290e-01 4.73700464e-01\\n2.86135823e-01 -4.65687990e-01 1.92917854e-01 -1.91417694e-01\\n1.39314681e-01 1.57137141e-02 9.35017243e-02 1.52080506e-01\\n-3.23441148e-01 2.82992095e-01 1.50865227e-01 -2.09911555e-01\\n-2.89470315e-01 -3.91164958e-01 1.15666874e-02 4.93022762e-02\\n1.30984157e-01 1.29873797e-01 1.53342888e-01 1.41196167e-02\\n2.75103807e-01 -2.21970007e-02 8.42160806e-02 7.94201910e-01\\n-8.52690637e-02 3.10839601e-02 -2.84211278e-01 2.55872875e-01\\n2.07810014e-01 -3.15589964e-01 2.48669237e-01 1.86385036e-01\\n-9.52237844e-02 -3.03176194e-01 -2.18086660e-01 4.76966023e-01\\n-7.79461265e-02 -2.07063124e-01 -2.67586976e-01 2.19157845e-01\\n1.32983014e-01 -4.11680341e-01 7.84787714e-01 9.47176069e-02\\n2.39536852e-01 -2.36116424e-02 1.72144517e-01 -2.52073884e-01\\n-1.50427684e-01 1.71814546e-01 1.58970639e-01 1.49749070e-01\\n-3.29409420e-01 -2.72307247e-01 -1.29685476e-01 -4.26201522e-02\\n-6.09343171e-01 1.41062260e-01 -7.84448683e-02 -1.18277241e-02\\n5.69632985e-02 -3.99046801e-02 -2.54334301e-01 1.35922119e-01\\n-1.81844965e-01 -8.05051103e-02 1.08543545e-01 3.46745372e-01\\n-3.40663314e-01 3.27113837e-01 6.50227666e-02 -5.33827022e-02\\n7.32531905e-01 2.69181877e-01 3.42125416e-01 6.00659512e-02\\n2.86090672e-01 -8.14728439e-04 8.44561756e-02 2.68181562e-01\\n-6.65334761e-01 2.67431557e-01 -3.85735631e-02 -2.69177854e-01\\n1.51878506e-01 -6.96610659e-02 2.80838668e-01 -2.71945447e-01\\n1.09034896e-01 -2.01537520e-01 -2.67104089e-01 -2.56473482e-01\\n-2.01278329e-01 2.74221562e-02 2.96878666e-01 -5.33602834e-01\\n-1.66825712e-01 2.11294040e-01 -4.35611427e-01 -1.50216639e-01\\n5.46448827e-02 1.30145490e-01 8.36823136e-02 8.58128667e-02\\n-2.24893093e-01 -5.74182510e-01 6.90102130e-02 -3.57991695e-01\\n-3.83243233e-01 2.26196740e-02 -3.93899381e-01 1.50892377e-01\\n7.20620230e-02 3.22730541e-02 -8.89464468e-02 1.47711128e-01\\n-2.42046684e-01 -7.89298713e-02 -7.71543831e-02 4.56787944e-02\\n2.80799389e-01 7.47262165e-02 -3.62081766e-01 3.89577091e-01\\n-1.42074376e-01 6.33597255e-01 5.39880991e-02 -9.04366970e-01\\n5.91697454e-01 2.82826871e-01 -3.77332680e-02 -4.51708794e-01\\n5.62316239e-01 -2.29422852e-01 -3.87869701e-02 2.16090661e-02\\n-4.02199686e-01 -3.95050228e-01 2.63352156e-01 -2.42722213e-01\\n-2.76190221e-01 3.83899897e-01 3.83671112e-02 2.30598614e-01\\n2.29331478e-01 -3.79312515e-01 -1.15541540e-01 -2.25963816e-03\\n-1.01682216e-01 -2.60021448e-01 -6.44318581e-01 -1.28046274e-01\\n-2.20174879e-01 -4.35055792e-01 -1.72082037e-01 -3.12714815e-01\\n-1.83354825e-01 -3.97215337e-01 -2.05919594e-01 1.03983790e-01\\n4.64447081e-01 1.33211598e-01 -1.33309245e-01 -1.33447405e-02\\n3.50766294e-02 -7.19582558e-01 -1.50310546e-01 1.34287849e-01\\n5.24787664e-01 2.26768404e-01 2.04036921e-01 4.96204160e-02\\n2.40692675e-01 6.74461544e-01 -2.07198635e-01 -3.32440853e-01\\n1.58490211e-01 2.04457343e-01 3.53739783e-03 -2.03716174e-01\\n1.80965483e-01 2.89989710e-01 -3.10778916e-01 5.78088686e-02\\n-1.80166028e-03 -1.15563311e-01 4.36029315e-01 8.43280777e-02\\n-2.41839737e-01 -9.56889614e-02 -6.22347146e-02 5.50791100e-02\\n-5.89935660e-01 -1.93254620e-01 5.09841681e-01 1.66533917e-01\\n2.19324440e-01 4.34344634e-02 8.15409049e-02 -2.48789787e-02\\n-2.67628551e-01 -2.34903574e-01 3.32112432e-01 1.01189539e-01\\n7.25044459e-02 1.55793279e-01 1.51826307e-01 -6.25371635e-01\\n-3.20623994e+00 -1.49784967e-01 1.68044001e-01 -2.80160785e-01\\n1.65643036e-01 -1.01801991e-01 1.34259522e-01 2.15092525e-02\\n-3.50563824e-01 2.48651318e-02 -1.22443222e-01 -1.72080040e-01\\n4.94490005e-02 1.84719846e-01 1.95669681e-01 1.40335456e-01\\n2.42038965e-01 -2.51577318e-01 -1.79296046e-01 3.47900063e-01\\n-1.50240153e-01 -6.05059683e-01 1.86683416e-01 3.17553878e-02\\n1.80850029e-01 1.58773795e-01 -3.26912194e-01 -4.62732427e-02\\n-2.19008893e-01 -2.15007514e-01 1.22700110e-02 -2.68822640e-01\\n-2.24717632e-01 2.18789965e-01 1.58057183e-01 -7.19448552e-02\\n2.81711179e-03 -4.10910755e-01 -2.38027632e-01 -4.60491240e-01\\n9.93805677e-02 -6.00141346e-01 -8.91721174e-02 -1.95648015e-01\\n8.62054229e-01 -2.85229027e-01 1.94139540e-01 4.74047475e-02\\n1.57917485e-01 -7.77313858e-02 1.50879011e-01 5.67601062e-02\\n-2.13472083e-01 -4.05702293e-01 -1.95058677e-02 -1.53746560e-01\\n6.11362994e-01 4.19011056e-01 -1.89428449e-01 -5.66643700e-02\\n2.08604977e-01 -2.03314975e-01 -3.61062944e-01 -1.17042221e-01\\n-1.69410147e-02 -2.99540311e-01 -6.58533394e-01 -3.73089492e-01\\n-1.34791106e-01 -2.24593833e-01 -1.76497772e-01 6.09089017e-01\\n-2.97758639e-01 -3.02233458e-01 -8.96530375e-02 -4.20221031e-01\\n3.65690708e-01 -1.72455221e-01 1.61491111e-02 -3.01233411e-01\\n-2.54266441e-01 -4.54686254e-01 7.82393962e-02 -2.00521480e-03\\n-1.18253559e-01 -2.77457058e-01 6.67528361e-02 -9.85487476e-02\\n-3.17083597e-01 -6.13618672e-01 3.36089909e-01 1.37260824e-01\\n2.82092035e-01 1.04266375e-01 4.27308202e-01 -2.08502412e-01\\n2.58303106e-01 4.92885560e-02 -1.78995162e-01 -2.88959026e-01\\n9.36131328e-02 -1.89439347e-03 5.03188968e-01 -2.86683559e-01\\n-7.22547472e-02 4.08482365e-02 -2.37298369e-01 5.89789078e-03\\n3.58722210e-01 -7.53989816e-02 3.75323109e-02 6.47131205e-02\\n2.84136295e-01 -3.09225082e-01 -4.52344567e-02 7.80943856e-02\\n1.22554593e-01 6.47270083e-01 -2.36292649e-02 -3.75358284e-01\\n-5.43820262e-02 4.90269899e-01 -7.02736378e-02 1.71730682e-01\\n-2.13375509e-01 1.28487516e-02 -1.26006141e-01 4.08423603e-01\\n5.60422204e-02 -3.27795237e-01 -2.40091056e-01 -2.17458859e-01\\n-1.27567679e-01 3.45424205e-01 2.41528869e-01 8.66085291e-02\\n-5.91539666e-02 -3.82090509e-01 -1.91814333e-01 3.11532617e-01\\n2.38167256e-01 6.07097685e-01 2.76135802e-01 -2.52990812e-01\\n-1.65165067e-01 3.57886434e-01 -1.73181459e-01 2.75649965e-01\\n-3.06775212e-01 2.13971138e-01 -7.21015215e-01 -1.63446605e-01\\n-2.72623777e-01 -5.55309415e-01 2.82396287e-01 4.76165920e-01\\n1.85164973e-01 -2.68256553e-02 1.26950622e-01 -5.11545658e-01\\n1.72404706e-01 2.51561522e-01 1.39455095e-01 9.32410955e-02\\n-4.36163917e-02 6.40143991e-01 -1.47140566e-02 -1.92858368e-01\\n-7.69074932e-02 -5.10496125e-02 -1.92039073e-01 -1.69946104e-01\\n1.03745170e-01 -6.42351449e-01 -1.20565593e-01 4.14614916e-01\\n1.91677496e-01 -3.02934855e-01 -2.30394423e-01 2.62013912e-01\\n-1.81987435e-02 -2.33089596e-01 -3.53265166e-01 9.29084122e-02\\n4.17391568e-01 1.69648916e-01 3.08351576e-01 -4.95054424e-01\\n-1.03488266e-01 1.95822418e-02 -1.13396540e-01 4.36611772e-01\\n5.13156876e-03 1.17455177e-01 -2.20528394e-01 -5.19436821e-02\\n5.04881144e-01 -9.73169506e-02 -1.58189476e-01 5.31852208e-02\\n9.87734422e-02 -2.07360879e-01 -3.70632887e-01 1.58462584e-01\\n1.10152006e-01 -2.72187889e-01 3.91138569e-02 3.00333917e-01\\n1.28344983e-01 1.72873646e-01 -6.10368729e-01 -2.51271278e-01\\n-2.37106159e-01 6.37514740e-02 2.44956851e-01 -5.00010371e-01\\n-2.50633229e-02 -1.08812183e-01 -6.01011992e-01 1.98806792e-01\\n-1.77623630e-01 -2.60716617e-01 2.80915648e-01 1.66567385e-01\\n-2.15954244e-01 -1.00538023e-01 -1.63552612e-02 4.31187004e-01\\n-2.57406890e-01 -3.66084754e-01 -2.97625158e-02 -1.05347943e+00\\n1.78860158e-01 1.54210538e-01 -2.16569722e-01 2.40157783e-01\\n-1.06771655e-01 -5.95843077e-01 3.03459018e-02 -4.52450454e-01\\n-1.70776471e-01 -1.47550017e-01 -2.40937576e-01 -3.20262849e-01\\n7.18483031e-02 4.63522002e-02 -3.54259253e-01 6.23313487e-01\\n-1.97199836e-01 2.66138107e-01 -1.66601285e-01 5.13235703e-02\\n6.74048364e-02 -2.28564024e-01 2.75622845e-01 -2.93762088e-01\\n-4.38206345e-01 -3.24746072e-01 -4.06680822e-01 -3.45362902e-01\\n-1.62110135e-01 -4.32901204e-01 -1.23458363e-01 1.42602041e-01\\n3.57138753e-01 1.11862049e-01 -1.00561082e-01 -4.47919190e-01\\n1.80069178e-01 -6.26722932e-01 1.00688308e-01 -7.38652050e-02\\n-1.97166830e-01 -1.08951122e-01 1.67460084e-01 8.84525180e-02\\n2.53220260e-01 -4.23621833e-01 2.16237202e-01 -4.83118892e-01\\n-3.24870735e-01 -1.73149645e-01 4.66404222e-02 2.52885744e-04\\n3.01216811e-01 -4.70385373e-01 -5.24459854e-02 3.46703112e-01\\n2.21672252e-01 3.46441455e-02 2.59166241e-01 -2.22074270e-01\\n-2.77883150e-02 3.37142140e-01 -2.97550499e-01 1.33782133e-01\\n9.80508685e-01 5.79408463e-03 1.57590389e-01 3.33879590e-01\\n1.73465908e-01 3.60501409e-01 4.97638971e-01 -3.62647735e-02\\n-1.30439132e-01 2.44274229e-01 1.09367687e-02 -4.30978417e-01\\n1.35228010e-02 -5.83141707e-02 -1.82679608e-01 -4.98491466e-01\\n6.82632089e-01 3.93440276e-01 -4.67156023e-01 -9.14927423e-02\\n-9.45386887e-02 -4.25627157e-02 1.56919152e-01 -3.31078246e-02\\n-1.62858278e-01 6.22135960e-02 4.24956024e-01 -1.13205925e-01\\n3.39500904e-01 4.99209374e-01 -2.22567901e-01 -3.02963257e-01\\n-3.59921250e-04 2.86644578e-01 -7.77633339e-02 5.80886960e-01\\n-2.50393897e-01 3.82342577e-01 -3.66649665e-02 8.49810094e-02\\n-6.23237193e-02 8.48399252e-02 2.50705659e-01 1.99864551e-01\\n1.95929199e-01 5.08617796e-02 5.55004120e-01 4.31450546e-01\\n1.89251930e-01 3.77211571e-01 3.30564678e-01 1.24150634e-01\\n4.19602394e-01 6.01479769e-01 3.68801951e-01 1.13870010e-01\\n9.81845055e-03 4.36148494e-02 2.53709644e-01 -7.97661245e-02\\n2.91473299e-01 5.21867990e-01 1.68353617e-01 8.84965003e-01\\n2.30840862e-01 3.20075691e-01 6.85470164e-01 -7.34844446e-01\\n-3.85260165e-01 1.75446086e-02 5.25078297e-01 -3.47879291e-01\\n-2.03201063e-02 1.76938742e-01 -1.84120700e-01 3.04136336e-01\\n-5.72602689e-01 -2.78642595e-01 5.69656957e-03 1.44848689e-01\\n-7.09198192e-02 -2.53389299e-01 -2.01469466e-01 2.86206871e-01\\n1.72310136e-02 -1.11196861e-01 -3.79156709e-01 -1.50908515e-01\\n-1.63486823e-01 -7.88276866e-02 -6.63947463e-02 -3.82226743e-02\\n-1.20323971e-01 -3.73594820e-01 -2.05948222e-02 1.45254387e-02\\n2.90173411e-01 -1.22973733e-01 -4.64409702e-02 -8.25230405e-02\\n2.54829764e-01 1.90161332e-01 4.92462516e-01 1.00153014e-01\\n6.48191124e-02 -3.17996979e-01 -2.72515297e-01 2.38044083e-01\\n2.39662200e-01 -5.15776686e-03 -1.20936483e-01 1.59862399e-01\\n-2.02828944e-01 -1.85424566e-01 1.19412929e-01 2.20155999e-01\\n-5.12123287e-01 5.75460568e-02 -1.90062851e-01 7.94272497e-02\\n3.39544900e-02 2.95824349e-01 -1.54211283e-01 -2.94568222e-02\\n-1.61088258e-01 -4.97217685e-01 1.97504610e-01 -1.72420919e-01\\n-2.45600611e-01 5.09801134e-02 2.04261571e-01 1.16024092e-01\\n-2.94619024e-01 8.77607614e-03 -1.22478306e-01 1.52068555e-01\\n-1.43381581e-01 2.22774521e-01 -3.56514901e-02 -2.75545478e-01\\n-2.92736769e-01 1.29977956e-01 -1.19818397e-01 2.06783414e-01\\n8.01312923e-02 3.69586587e-01 5.04262745e-02 4.83560152e-02\\n5.57063341e-01 -4.65005934e-02 -2.53236681e-01 -2.53618389e-01\\n-1.51917458e-01 -1.08010136e-01 -1.65727615e-01 -5.30804787e-03\\n2.03608751e-01 -4.56284881e-01 2.78644115e-02 -1.29650235e-01\\n-6.48330152e-02 -4.08598959e-01 2.67550573e-02 -1.88246176e-01]]',\n", + " 'job_description': 'Headquartered in Switzerland with additional offices in Toronto and London, SwissBorg aims to fundamentally change the way individuals manage their wealth. As a product obsessed team, we believe that advanced technology combined with an intuitive user experience will empower people to invest with more freedom, confidence, and belief. In 2018, we successfully raised funds from over 23,800 global participants who share our vision of a wealth management industry with more community-centric values. We are now working towards the next phase of disruption. In Q4 of 2019, individuals across the globe will have the opportunity to purchase digital assets such as Bitcoin at the best prices, and become members of our ecosystem to unlock first of its kind investment features. Your Mission: Data sits at the heart of what we do, and you’ll play a crucial role in helping our teams to build personalized customer experiences, track metrics, optimize processes, enhance our products, and everything in-between. As a data scientist, you will be one of the first members of our growing world-class data team with an impact across all business lines. We’ll give you the tools and autonomy to build the data structures & solutions that will fundamentally underpin all operations at SwissBorg. If you’re looking to explore uncharted territory in the digital assets space with a team that thinks long term, has an agile mindset, and wants to challenge the old-school money managers let’s chat! What You’ll Be Doing Develop statistical analysis, and models and apply them to solve real problems Build and deploy algorithms for anomaly detection, forecasting and churn prediction based on users behavior Work with our product & marketing teams to guide product & marketing decisions through data-based recommendations Define and report on metrics and KPIs Automate analysis and data pipelines while ensuring our data infrastructure is set up for scale What You Might Look Like Masters or PhD degree in math, statistics, physics, computer science, or related fields Expertise in a variety of data manipulation tools and programming languages (Python, SQL) Strong experience and theoretical knowledge in machine learning, prediction algorithms for classification and study of time series Track record in product analytics and experience to make decisions autonomously Outstanding communications and collaboration skills working cross-functionally Past experience building and working with AWS as well as building and maintaining databases Knowledge of Keras, Tensorflow library, SageMaker, and SDK a plus Benefits Being part of the lifetime opportunity to launch a product at scale Get in on the ground floor as a pioneer in the fast paced fintech/blockchain space Salary and competitive bonus based on our meritocratic system Continuous opportunities to learn, grow fast, and create alongside an experienced team of financial experts, engineers, scientists, designers, and marketing gurus Excellent benefits (health, etc…) Standard 5 weeks vacation Centrally located office in a beautiful historic building.',\n", + " 'soft_skills': '[\"Decisiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Operations\"]',\n", + " 'hard_skills': '[\"AWS SageMaker\", \"Automation\", \"Tooling\", \"Agility\", \"KM Programming Language\", \"Health Care Benefits\", \"Blockchain\", \"Computer Science\", \"Analytics\", \"Prediction\", \"Industrialization\", \"Wealth Management\", \"Scale (Map)\", \"Data Manipulation\", \"Python (Programming Language)\", \"Bitcoin\", \"Track (Rail Transport)\", \"Maintainability\", \"Data Pipeline\", \"Library\", \"Money Management\", \"Keras (Neural Network Library)\", \"Investments\", \"Process Optimization\", \"Machine Learning Methods\", \"Purchasing\", \"Physical Computing\", \"Time Series\", \"Personalization\", \"Digital Assets\", \"TensorFlow\", \"Statistical Physics\", \"Phase (Waves)\", \"Flooring\", \"Unlocker\", \"Data Infrastructure\", \"Data Structures\", \"Data Class\", \"Forecasting\", \"Algorithms\", \"Customer Experience\", \"Additives\", \"User Experience\", \"Anomaly Detection\", \"Long-Term Potentiation\", \"Advanced Imaging Technology\"]',\n", + " 'languages': \"['English', 'Telugu', 'Norwegian', 'Valencian']\"},\n", + " {'company_id': '74',\n", + " 'job_title': 'junior software engineer',\n", + " 'location': 'Münchenstein',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.magnolia-cms.com',\n", + " 'jobdescription_embedded': '[[-1.60679221e-01 3.68930846e-01 4.16745067e-01 -3.88244018e-02\\n4.15491134e-01 -3.23015302e-01 8.35841596e-02 3.70260090e-01\\n2.13421583e-02 -4.76614356e-01 -4.07999232e-02 -1.16958067e-01\\n-1.36614189e-01 8.17567408e-02 1.31035298e-01 3.82973284e-01\\n2.81916738e-01 1.52902648e-01 -1.85554162e-01 4.33594078e-01\\n5.45625538e-02 -1.63067564e-01 -7.65008703e-02 6.50917649e-01\\n5.19227684e-01 -4.31982316e-02 -1.43059507e-01 -2.60175727e-02\\n-1.92804098e-01 -2.23986909e-01 3.75782400e-01 8.06307569e-02\\n-3.15804929e-02 -4.87709284e-01 -5.27154375e-03 1.03821389e-01\\n-1.23615436e-01 1.11355975e-01 -1.60322040e-02 2.82018185e-01\\n-6.81401312e-01 -2.20705524e-01 1.26708955e-01 8.33734572e-02\\n-1.81194395e-02 -3.79842579e-01 -4.10833815e-03 -4.15885821e-02\\n1.77191108e-01 1.14431031e-01 -4.04673576e-01 2.51459092e-01\\n-4.15340185e-01 -2.73570091e-01 3.19933385e-01 5.36368787e-01\\n1.06485246e-03 -5.88501215e-01 -5.21084845e-01 -2.80204594e-01\\n7.19211996e-02 -1.48018032e-01 -1.80275030e-02 -4.19118166e-01\\n2.13626742e-01 7.21386299e-02 5.05566336e-02 4.00456756e-01\\n-8.99003267e-01 -9.91906412e-03 -1.82177424e-01 -7.17270300e-02\\n-3.07594508e-01 -1.85742870e-01 -3.26091796e-01 9.81103107e-02\\n-2.81870365e-01 3.92194271e-01 -1.09521955e-01 -5.76525219e-02\\n-2.57906467e-01 4.24762487e-01 -2.73574471e-01 4.17522401e-01\\n1.99832514e-01 1.00130633e-01 3.10718715e-01 4.09255177e-01\\n-3.63054872e-01 5.79405725e-01 1.14465259e-01 -3.31384182e-01\\n2.62970537e-01 1.15792722e-01 5.09078205e-01 2.15635728e-02\\n1.71413511e-01 2.50871718e-01 -4.13919657e-01 4.16562349e-01\\n2.93307930e-01 -2.54961610e-01 1.47210583e-02 -1.93873182e-01\\n2.21024714e-02 8.29485506e-02 9.23370272e-02 1.21053256e-01\\n-3.57360274e-01 5.24424374e-01 2.82916337e-01 -2.44688675e-01\\n-2.21764162e-01 -4.62534547e-01 -1.39986901e-02 2.10941564e-02\\n7.88916349e-02 1.01335034e-01 2.17049807e-01 9.65074822e-02\\n2.06261799e-01 -1.52150933e-02 7.46688396e-02 9.42466438e-01\\n-4.96086702e-02 1.08044751e-01 -3.83996457e-01 3.31787884e-01\\n2.20178843e-01 -3.40619057e-01 2.09017247e-01 2.46376172e-01\\n8.34461823e-02 -1.48374304e-01 -2.24086612e-01 4.65934247e-01\\n-5.17497323e-02 -2.23284766e-01 -3.72437149e-01 1.40500829e-01\\n-4.46036980e-02 -3.09851021e-01 6.49305761e-01 1.72397807e-01\\n2.97198683e-01 1.92727610e-01 8.59414861e-02 -1.01249449e-01\\n-8.68251994e-02 2.76353180e-01 9.10961851e-02 1.09205678e-01\\n-3.99161160e-01 -2.89162934e-01 -2.61726290e-01 1.43362716e-01\\n-4.10145074e-01 1.82488441e-01 -8.38645101e-02 -1.03869304e-01\\n2.88247406e-01 -2.69719888e-03 -2.38456830e-01 2.03228459e-01\\n-9.80909914e-02 1.17346622e-01 -6.47177622e-02 3.65310818e-01\\n-9.31973010e-02 2.70182878e-01 7.47014731e-02 2.37438697e-02\\n6.70466542e-01 2.84662396e-01 2.16225281e-01 -1.09380044e-01\\n2.99420565e-01 3.21493447e-02 1.01995945e-01 1.72216758e-01\\n-6.63550854e-01 2.68793553e-01 -1.24107622e-01 -9.65125784e-02\\n1.41646996e-01 -3.55946831e-02 2.35650688e-01 -3.39414924e-01\\n-9.90237445e-02 -2.72896737e-01 -3.66911680e-01 -3.19412231e-01\\n-3.74963135e-01 6.48366734e-02 5.85401177e-01 -4.09494042e-01\\n-2.10412741e-01 2.34612167e-01 -5.43981731e-01 -4.24037836e-02\\n2.99912125e-01 1.57992184e-01 9.32270065e-02 6.55519292e-02\\n-2.57914424e-01 -6.91120863e-01 8.03297535e-02 -3.21569175e-01\\n-4.47568119e-01 8.90637860e-02 -3.82488519e-01 3.33370477e-01\\n9.39517170e-02 -1.10756867e-02 -1.50849372e-01 1.99262038e-01\\n-1.59452379e-01 -1.24524482e-01 -1.69372205e-02 1.38996676e-01\\n2.46176004e-01 -6.48803711e-02 -4.18915987e-01 2.89974153e-01\\n-1.83330074e-01 6.29177928e-01 5.24248108e-02 -8.14357936e-01\\n4.91981477e-01 3.81475359e-01 -7.40497559e-02 -3.53811324e-01\\n6.05206847e-01 -1.21244252e-01 -1.29820868e-01 8.52394328e-02\\n-3.72504085e-01 -3.44074905e-01 2.74734974e-01 -1.68891117e-01\\n-2.62404680e-01 4.11027551e-01 9.83003154e-02 6.19617961e-02\\n2.05528200e-01 -2.58369565e-01 -1.37421757e-01 4.00593318e-02\\n-1.45064062e-02 -1.33568019e-01 -5.51834345e-01 -2.47071423e-02\\n-1.21721879e-01 -5.25484443e-01 -1.39386132e-01 -1.91840932e-01\\n-2.97995031e-01 -4.59047407e-01 -3.90087426e-01 1.94029227e-01\\n3.04884911e-01 2.22298592e-01 -8.73894840e-02 1.40213683e-01\\n-7.60578662e-02 -8.15819621e-01 -3.36689763e-02 2.16023117e-01\\n4.69106227e-01 2.18861714e-01 6.49913624e-02 -4.57650460e-02\\n-1.50739383e-02 6.17051363e-01 -3.34784716e-01 -1.51707709e-01\\n1.17291279e-01 7.57198781e-02 7.19992146e-02 -2.91802585e-01\\n1.13619305e-01 3.37702125e-01 -2.64799178e-01 1.03524841e-01\\n-2.62727775e-02 -1.16377361e-01 4.37785715e-01 1.35042546e-02\\n-5.13992667e-01 -1.88280523e-01 -4.73561250e-02 9.62976143e-02\\n-6.10698283e-01 -2.38466144e-01 5.03079653e-01 2.18033478e-01\\n2.83356279e-01 2.08738446e-01 2.02670589e-01 -2.00688586e-01\\n-2.13190600e-01 -3.73910457e-01 2.88109541e-01 8.88075903e-02\\n1.40337572e-01 2.50664949e-01 -1.08334616e-01 -7.32511401e-01\\n-3.24383831e+00 -2.28542209e-01 2.23770171e-01 -2.94359297e-01\\n8.90524015e-02 -1.55172318e-01 7.14404210e-02 -1.53261736e-01\\n-2.40805253e-01 -3.53666246e-02 -1.38321921e-01 -1.55370712e-01\\n1.01041980e-01 2.61033386e-01 4.83500399e-02 2.79859871e-01\\n3.30142856e-01 -2.02825457e-01 -1.92219973e-01 3.41009587e-01\\n-1.89424023e-01 -5.74225008e-01 1.74469158e-01 -4.26352695e-02\\n2.88729429e-01 2.64180005e-01 -3.55070859e-01 -6.53564706e-02\\n-1.90217435e-01 -2.13249743e-01 1.09171726e-01 -2.71372348e-01\\n-2.02008784e-01 2.92373240e-01 1.50572732e-01 -5.37993498e-02\\n7.53536597e-02 -3.77498597e-01 -1.14621438e-01 -4.52764452e-01\\n1.49746433e-01 -5.43859541e-01 -9.31551903e-02 -1.74670070e-01\\n7.41971254e-01 -3.69983166e-01 1.45954236e-01 1.73672605e-02\\n1.68864772e-01 1.10820033e-01 -2.63867844e-02 -7.57677108e-02\\n-2.00322717e-01 -2.96679288e-01 -2.44188309e-02 -6.73457384e-02\\n6.95638001e-01 4.95295912e-01 -1.93891361e-01 -1.33834809e-01\\n2.14891240e-01 -4.45628643e-01 -3.95137399e-01 -1.62700802e-01\\n-1.40484929e-01 -2.91806191e-01 -5.76192975e-01 -3.54250610e-01\\n-2.54458815e-01 -1.22581445e-01 -1.80709109e-01 7.61820972e-01\\n-3.77383053e-01 -3.83344114e-01 -1.56457368e-02 -4.80437070e-01\\n1.18101612e-01 -2.57534683e-01 -3.16900164e-02 -3.20240736e-01\\n-2.61372119e-01 -4.95116979e-01 -6.80894684e-03 2.14587599e-02\\n-2.55878121e-01 -2.24051327e-01 1.38940141e-01 -4.66228537e-02\\n-1.98074430e-01 -5.41265965e-01 4.02079910e-01 1.57926798e-01\\n1.66735187e-01 6.60963058e-02 3.39224219e-01 -5.96601143e-03\\n4.18291420e-01 -1.46251842e-01 -9.26036537e-02 -3.39963853e-01\\n1.73348188e-01 1.83527172e-02 6.19644880e-01 -2.83996969e-01\\n-8.77889246e-03 2.27092966e-01 -1.68483123e-01 -1.41409472e-01\\n4.18806285e-01 7.52485916e-02 -4.78949547e-02 -2.16686323e-01\\n3.14309984e-01 -2.71117508e-01 -2.18282655e-01 1.10133111e-01\\n1.17369547e-01 6.79565847e-01 -1.71453491e-01 -4.00075734e-01\\n-1.32896706e-01 5.28279603e-01 -1.59980863e-01 1.22722492e-01\\n-2.68697083e-01 8.06693211e-02 -1.27711728e-01 3.42424840e-01\\n3.96502726e-02 -2.22975016e-01 -2.17433363e-01 -2.49493107e-01\\n-1.04127415e-01 3.05870950e-01 2.11997077e-01 3.51466686e-02\\n-5.23720728e-03 -3.86369914e-01 -1.44641235e-01 1.16503544e-01\\n1.12701416e-01 5.21926522e-01 1.21575646e-01 -2.44482175e-01\\n-7.52010643e-02 3.78840357e-01 -2.09290594e-01 3.75989191e-02\\n-3.51746589e-01 3.24962027e-02 -5.46160400e-01 -8.50946084e-02\\n-2.43070424e-01 -5.31324446e-01 8.94428939e-02 2.59590954e-01\\n-2.67958418e-02 3.51595096e-02 2.13583745e-02 -4.67157960e-01\\n1.59165576e-01 2.56269366e-01 2.34677374e-01 1.60873234e-01\\n1.01220366e-02 4.16673124e-01 -1.90674514e-02 -1.87440991e-01\\n-2.20092490e-01 -1.16490684e-02 -1.10280737e-01 -1.42113462e-01\\n1.47661194e-01 -5.97217739e-01 7.23096728e-03 4.46493715e-01\\n1.76123559e-01 -1.96802989e-01 -1.92387149e-01 3.06057185e-01\\n7.50177056e-02 -3.29547346e-01 -2.99040049e-01 6.67238459e-02\\n2.17907339e-01 4.69029881e-02 2.94471085e-01 -3.82901132e-01\\n1.12494687e-02 -2.24147923e-02 -3.00224692e-01 3.58758956e-01\\n-5.36938421e-02 1.08673014e-01 -3.84921312e-01 -1.40831009e-01\\n4.04445916e-01 -1.38136208e-01 -3.16662772e-04 -8.97609740e-02\\n1.66405112e-01 -1.55574694e-01 -5.30687511e-01 9.50787365e-02\\n-2.29802355e-02 -1.70632586e-01 1.46642044e-01 3.34951729e-02\\n1.17556669e-01 1.82509691e-01 -4.12328303e-01 -3.36382896e-01\\n-2.35060990e-01 -1.78666323e-01 3.09892178e-01 -5.21881342e-01\\n-8.02810341e-02 -1.81842614e-02 -4.67334777e-01 1.66039228e-01\\n-2.91058153e-01 -1.86443135e-01 2.87617832e-01 1.87035814e-01\\n-3.86211872e-01 -1.27086177e-01 -4.60394584e-02 3.77195835e-01\\n-3.23979586e-01 -3.05757225e-01 4.25617658e-02 -8.61832500e-01\\n1.74911842e-01 4.60610949e-02 -2.82493472e-01 7.16117444e-03\\n-1.74401805e-01 -5.84051371e-01 1.47693276e-01 -4.95612442e-01\\n-2.30572343e-01 -3.82944755e-03 -1.37175307e-01 -3.54228288e-01\\n-7.80891953e-03 -2.21554101e-01 -4.41220224e-01 5.05550683e-01\\n-3.87380719e-01 4.01441514e-01 -2.84970887e-02 4.03218940e-02\\n-5.08988462e-02 -3.25799316e-01 1.15362830e-01 -4.35758710e-01\\n-4.68291551e-01 -2.67978549e-01 -4.52333063e-01 -2.42031395e-01\\n5.81075624e-02 -2.38921940e-01 -1.78990975e-01 2.73289502e-01\\n2.19766602e-01 9.70192552e-02 -2.54947832e-03 -4.00723189e-01\\n1.40419381e-03 -6.95461810e-01 7.27773272e-03 -6.30403459e-02\\n-9.75846797e-02 -1.30009614e-02 2.55679697e-01 1.05021872e-01\\n1.88570023e-01 -3.93009275e-01 4.20319647e-01 -3.64130944e-01\\n-2.28437722e-01 -6.38152435e-02 5.22683598e-02 1.37117624e-01\\n3.32883984e-01 -5.18797636e-01 -1.16139716e-02 3.04095656e-01\\n1.42127872e-01 4.87091988e-02 8.88541415e-02 2.86883023e-02\\n5.01168966e-02 2.42572039e-01 -2.43594080e-01 1.74103647e-01\\n9.14198637e-01 2.67782509e-02 7.01377615e-02 1.80324376e-01\\n1.55434236e-01 5.20884037e-01 5.67652225e-01 -5.68896048e-02\\n-1.11704886e-01 2.54307002e-01 -5.60473353e-02 -4.81336653e-01\\n2.60468330e-02 8.49873126e-02 -1.49703011e-01 -3.17059457e-01\\n7.63967931e-01 4.86272901e-01 -5.67126870e-01 -1.67997658e-01\\n-1.06884666e-01 -1.46637812e-01 9.53586251e-02 -6.55129254e-02\\n-7.24421442e-02 -1.51824087e-01 5.63527644e-01 2.00193729e-02\\n1.86234683e-01 4.52720821e-01 -3.41604620e-01 -4.33222681e-01\\n1.53244808e-02 3.18384022e-01 -1.17349112e-03 3.67279857e-01\\n-2.39703834e-01 1.33328006e-01 -7.12617189e-02 2.96351817e-02\\n1.97014883e-02 3.06935042e-01 1.01497635e-01 2.00858712e-01\\n1.75542310e-01 2.96578687e-02 6.23490751e-01 4.64773685e-01\\n2.38921270e-01 4.04996336e-01 3.68146062e-01 5.77279255e-02\\n4.63373631e-01 5.77111781e-01 5.12369096e-01 1.68802246e-01\\n-4.63637821e-02 2.00610280e-01 2.09636763e-01 6.95872828e-02\\n4.12154913e-01 4.47543651e-01 1.45510286e-01 8.22054863e-01\\n2.46541217e-01 2.69642949e-01 7.22844839e-01 -7.52548397e-01\\n-3.29300880e-01 5.83879538e-02 4.52963740e-01 -1.56045854e-01\\n-8.31726491e-02 2.02261358e-01 -2.77144074e-01 2.64976829e-01\\n-5.37766993e-01 -3.12358230e-01 -3.48965377e-02 2.36524567e-01\\n2.29706476e-03 -1.73857078e-01 -2.74012089e-01 6.44763112e-02\\n-8.65766555e-02 -1.25181869e-01 -4.15774435e-01 6.68083690e-03\\n-1.50970936e-01 -6.62733912e-02 -4.80771139e-02 -1.05851114e-01\\n1.03976240e-03 -5.42091370e-01 -2.07554609e-01 9.24014021e-03\\n2.62537897e-01 -1.33099571e-01 1.64427888e-02 2.90702395e-02\\n3.32931846e-01 3.04638922e-01 5.53012192e-01 3.39725353e-02\\n-5.27993552e-02 -2.56473780e-01 -2.24237755e-01 2.87707716e-01\\n1.79429978e-01 1.55407935e-01 7.99591616e-02 2.10661069e-01\\n-1.79939687e-01 -1.59373134e-01 1.08868137e-01 4.65517819e-01\\n-5.25004566e-01 -6.21148422e-02 -2.15271473e-01 2.10635498e-01\\n1.16936393e-01 3.21010113e-01 -1.24142408e-01 1.10931564e-02\\n-2.24678546e-01 -3.95728171e-01 2.62682289e-01 -5.71468100e-02\\n-1.77860767e-01 2.16301516e-01 -1.66932382e-02 2.12029725e-01\\n-2.24564254e-01 -7.50159919e-02 -1.19272154e-03 2.24027961e-01\\n2.60029472e-02 4.02184188e-01 -7.40523962e-03 -3.36262494e-01\\n-3.20258170e-01 1.63622141e-01 -1.12212420e-01 1.07477628e-01\\n-7.07450956e-02 2.83025295e-01 3.18890326e-02 6.34735227e-02\\n5.04220963e-01 4.21469361e-02 -1.32805273e-01 -1.28055140e-01\\n-2.38631800e-01 -2.62690991e-01 -4.57504652e-02 3.97312600e-04\\n1.40179321e-01 -4.40688729e-01 -6.14893213e-02 -1.00837052e-02\\n-3.48397009e-02 -3.65142763e-01 -5.27044497e-02 -1.92419350e-01]]',\n", + " 'job_description': \"We’re looking for a developer with a passion for solving problems within an agile team. You’ll develop on the heart of the Magnolia core in a group of awesome colleagues and help shape the future of it. Working closely together with all other developers as well as product management, user experience, and support is key. If you're ready to strive to create value in newer ways and to really think outside of the box you're the perfect match for us. Your Responsibilities Develop new features for Magnolia and assure they comply with our quality standards Maintain the core content management functionality: from the user interface to rendered content including the template system, resources, and integration with front-end technologies. Facilitate collaboration with other engineers, product owner, and designers to solve interesting and challenging problems Deal with and improve dependency management, source control, issue tracking tools, and testing frameworks we use Spread and develop YOUR ideas What you ideally offer Bachelor degree in Computer Science or equivalent Smart, knowledgeable, curious and enthusiastic Experience with newest Java technologies User interface development experience using languages such as CSS, HTML/HTML5, JavaScript or JSON Angular/React Js Excitement about working within an agile team Must be independent, responsible, self-motivated, with the ability to learn and achieve superior results Experience with Vaadin/GWT is a bonus Fluent in English Does this description sound attractive to you? Then hit the button below and apply now!\",\n", + " 'soft_skills': '[\"Collaboration\", \"Complex Problem Solving\", \"Integration\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Agility\", \"Cascading Style Sheets (CSS)\", \"Product Management\", \"Rendering\", \"Computer Science\", \"Automated Testing Framework\", \"Resource Management Systems\", \"Content Management\", \"Vaadin\", \"Creating Shareholder Value\", \"Maintainability\", \"HTML5\", \"Source (Game Engine)\", \"HyperText Markup Language (HTML)\", \"Issue Tracking Systems\", \"React.js\", \"Product Engineering\", \"JavaScript (Programming Language)\", \"Web Template Systems\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"User Experience\", \"Java (Programming Language)\", \"JSON\", \"Dependency Management\", \"User Interface\"]',\n", + " 'languages': \"['English', 'Bislama']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer (data science) m/w',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.29078621e-01 2.86381602e-01 3.87263089e-01 -2.57961228e-02\\n4.08634216e-01 -2.08080828e-01 1.00172028e-01 2.67145544e-01\\n-2.80442387e-01 -3.42231154e-01 -1.61632020e-02 -1.26012817e-01\\n-3.55845504e-02 1.33705944e-01 3.06054465e-02 5.24969995e-01\\n2.52899349e-01 1.41963558e-02 -1.90385491e-01 3.31452966e-01\\n9.77868363e-02 -4.48788106e-02 -4.53196876e-02 6.13716722e-01\\n5.87531805e-01 -8.47341027e-03 -1.76560044e-01 3.20396483e-01\\n-2.04809859e-01 -1.75819874e-01 3.50302517e-01 7.41681978e-02\\n-1.86123371e-01 -2.77868688e-01 3.91494036e-02 2.30170295e-01\\n-2.17136428e-01 7.19370246e-02 -4.02505994e-02 2.99546391e-01\\n-3.06641042e-01 -2.45850369e-01 1.58566777e-02 -1.38478428e-02\\n-1.42297074e-01 -3.89905959e-01 7.48738879e-03 -3.87680195e-02\\n1.01641707e-01 -1.21569104e-01 -5.94286680e-01 4.23843920e-01\\n-2.43663222e-01 -2.32895538e-01 1.82664186e-01 5.89253008e-01\\n5.50985262e-02 -4.24010575e-01 -2.50089496e-01 -3.19432497e-01\\n-5.46539342e-03 -1.55685663e-01 2.41270158e-02 -4.74044442e-01\\n5.35589755e-01 2.45049879e-01 -1.34531662e-01 3.44403118e-01\\n-6.43273950e-01 -4.91829477e-02 -2.25844383e-01 7.92533308e-02\\n-4.70231205e-01 -3.20809782e-02 -3.88186634e-01 -1.45054772e-01\\n3.28304581e-02 3.03631157e-01 4.49132659e-02 -8.32254440e-02\\n7.92804733e-02 2.50212312e-01 -1.05572633e-01 2.42794573e-01\\n3.78268242e-01 2.91966647e-01 2.67932653e-01 3.55013609e-01\\n-4.76783514e-01 3.32046986e-01 2.22171023e-02 -2.51247376e-01\\n9.70003605e-02 2.03136653e-01 6.74170375e-01 1.90023538e-02\\n1.83895707e-01 5.94974309e-02 -3.35526198e-01 4.10990477e-01\\n2.16933042e-01 -4.54486579e-01 1.09835376e-03 -3.01458780e-02\\n1.05320387e-01 1.83744868e-03 -2.38841726e-03 1.98910534e-01\\n-3.06852728e-01 4.57929701e-01 3.91810313e-02 -2.02153921e-01\\n9.52306092e-02 -5.48041821e-01 -1.02590770e-01 2.21395031e-01\\n1.30319461e-01 2.77992874e-01 6.71021417e-02 2.58245111e-01\\n-4.06966172e-02 4.28298041e-02 1.25507861e-01 8.75843346e-01\\n-8.77591521e-02 1.40732512e-01 -2.72833202e-02 3.68196458e-01\\n2.65529871e-01 -4.15701360e-01 2.85022050e-01 2.60373414e-01\\n1.86847597e-01 -2.14056969e-01 -1.05674833e-01 1.19059920e-01\\n-9.89295691e-02 -2.39567086e-01 -4.80280906e-01 2.18911350e-01\\n-1.45716399e-01 -4.61154521e-01 7.24399865e-01 2.89834873e-03\\n2.19016552e-01 9.90792364e-03 -1.00965396e-01 3.00422888e-02\\n2.59138420e-02 2.06355974e-01 3.82413194e-02 1.10885799e-01\\n-4.40133184e-01 -1.99978307e-01 -3.33130598e-01 2.13960797e-01\\n-3.99123520e-01 1.82844684e-01 -1.67441115e-01 4.44701873e-02\\n2.02417254e-01 -1.47609919e-01 -3.51888895e-01 3.01973283e-01\\n-1.50516450e-01 -1.47682279e-01 1.36249065e-01 4.00772005e-01\\n1.00912014e-02 3.79219741e-01 -1.22343406e-01 -1.46385252e-01\\n3.76158446e-01 -2.78287008e-02 1.92462921e-01 -9.87817422e-02\\n4.72127736e-01 -6.54650703e-02 1.60669297e-01 1.56228080e-01\\n-6.23726785e-01 1.82104036e-01 -1.46698162e-01 -2.46706367e-01\\n7.17807338e-02 2.22296007e-02 3.71183872e-01 -2.62819350e-01\\n-7.48349577e-02 -5.92610128e-02 -2.76252121e-01 -3.11585665e-01\\n-3.98164183e-01 -2.75340155e-02 5.94706476e-01 -4.25908417e-01\\n-1.84320718e-01 3.25553209e-01 -5.01419425e-01 -7.97540769e-02\\n1.16553709e-01 1.22543968e-01 1.87983781e-01 2.49150276e-01\\n-2.17129782e-01 -5.11061847e-01 1.00759551e-01 -3.77158433e-01\\n-3.88784021e-01 1.90428466e-01 -3.54576409e-01 3.21806759e-01\\n5.05144661e-03 -1.19235642e-01 -4.08064649e-02 1.08567216e-01\\n-1.77845940e-01 -4.09424268e-02 1.29065484e-01 1.33713230e-01\\n4.57344890e-01 -1.08983383e-01 -4.07701463e-01 4.78532910e-01\\n9.11262110e-02 5.51762581e-01 3.12421411e-01 -7.89242148e-01\\n5.54903686e-01 1.68220401e-01 6.97345138e-02 -1.96290925e-01\\n6.93204880e-01 -3.23246181e-01 -3.51667702e-01 1.52500182e-01\\n-3.95953476e-01 -3.42924505e-01 1.06867343e-01 -2.28599012e-01\\n-3.19883853e-01 5.09674430e-01 1.10843524e-01 2.22160481e-02\\n4.70124394e-01 -3.25921506e-01 -1.92882299e-01 2.30021477e-01\\n-1.32468864e-01 -2.62313873e-01 -3.99459392e-01 -9.56754317e-04\\n-7.70924166e-02 -5.59001207e-01 -2.06356302e-01 -3.08411181e-01\\n-7.63765424e-02 -3.60274345e-01 -6.05427772e-02 4.52622026e-01\\n1.85067013e-01 2.11983025e-01 1.90124124e-01 4.05958444e-02\\n-1.88197970e-01 -6.16204381e-01 -1.15312576e-01 4.31114016e-03\\n4.08201188e-01 1.30482256e-01 3.77127528e-02 -1.39246583e-01\\n5.57749197e-02 6.24705434e-01 -1.92961454e-01 -5.16687393e-01\\n4.46148328e-02 1.86840549e-01 -1.16784461e-01 -7.61956275e-02\\n1.48436874e-01 4.65058744e-01 -2.94191182e-01 1.73424289e-01\\n-2.07185879e-01 1.71074852e-01 3.20369214e-01 -5.99025227e-02\\n-1.90577120e-01 -1.54587835e-01 -1.06230035e-01 1.76136628e-01\\n-6.53127253e-01 -4.59328443e-01 6.87943161e-01 8.61000493e-02\\n2.19040900e-01 3.00647207e-02 1.99056014e-01 -7.79543445e-02\\n-2.56420404e-01 -2.27676202e-02 8.13090708e-03 6.50731921e-02\\n-3.01462002e-02 1.43684402e-01 -1.88488930e-01 -4.75991040e-01\\n-3.56742835e+00 -1.22448742e-01 1.08438112e-01 -1.58683747e-01\\n9.35013890e-02 -4.11672182e-02 6.24342375e-02 -1.69939384e-01\\n-2.73458183e-01 -2.03841627e-02 -2.08430707e-01 -2.20414430e-01\\n4.50342819e-02 3.15817088e-01 8.29988420e-02 2.12723687e-01\\n3.48931670e-01 -3.13878417e-01 -6.18177615e-02 4.88582522e-01\\n1.04918309e-01 -5.40735900e-01 -3.68785709e-02 1.03268372e-02\\n3.84548396e-01 2.71973193e-01 -4.28131342e-01 6.48724213e-02\\n-2.51206338e-01 -2.79642761e-01 1.35660857e-01 -3.85443687e-01\\n-1.87379986e-01 2.06670374e-01 1.45292148e-01 -2.31674444e-02\\n-4.84330021e-03 -3.47527802e-01 -1.33838758e-01 -1.65740266e-01\\n3.19169164e-02 -4.79574591e-01 5.03211506e-02 -1.80771694e-01\\n8.33041549e-01 -3.49992901e-01 7.29165822e-02 7.87506774e-02\\n3.12485304e-02 1.85878113e-01 5.34628592e-02 -7.29639381e-02\\n-1.10068187e-01 -3.89459848e-01 -7.99712464e-02 -2.12954625e-01\\n6.18170083e-01 4.50131267e-01 -2.82101035e-01 -1.28864557e-01\\n2.34002456e-01 -2.99423426e-01 -4.11750823e-01 -3.50717604e-01\\n-3.89514029e-01 -1.58853441e-01 -6.55832529e-01 -6.79704309e-01\\n-2.63427883e-01 -2.53659964e-01 -1.73614368e-01 4.30536926e-01\\n-4.84625399e-01 -5.31789064e-01 -6.09464012e-02 -2.44700164e-01\\n1.57664135e-01 -1.70096517e-01 1.00062281e-01 -2.03284264e-01\\n-2.69760400e-01 -6.23104751e-01 -1.01352312e-01 1.30361855e-01\\n-9.01662335e-02 -8.16716179e-02 -1.79384053e-02 -2.02890500e-01\\n-5.33758461e-01 -3.63676667e-01 4.04420733e-01 -8.04705843e-02\\n2.86330193e-01 1.95288628e-01 3.15853626e-01 2.08538324e-01\\n3.30535769e-01 -1.69279743e-02 5.73479459e-02 -2.54297256e-01\\n-5.57533763e-02 6.06172159e-03 5.84588289e-01 -2.76199907e-01\\n5.00230789e-02 2.93437503e-02 -3.33406091e-01 8.67541283e-02\\n4.10657138e-01 7.28827193e-02 1.67845711e-01 -1.79375082e-01\\n2.61154234e-01 -2.07764909e-01 -9.20947716e-02 3.43214214e-01\\n8.67149234e-02 6.97462440e-01 -1.89235136e-02 -3.42706829e-01\\n-3.57642323e-01 5.02580166e-01 -9.04328376e-02 1.13529198e-01\\n-1.30390927e-01 1.58151612e-01 -1.83950558e-01 2.33466491e-01\\n-4.13589664e-02 -1.46179333e-01 -2.69825310e-01 -2.94717047e-02\\n-3.43747959e-02 3.58415157e-01 4.21577483e-01 2.32309308e-02\\n-1.36430293e-01 -4.66434866e-01 -3.21043693e-02 1.04723178e-01\\n4.66308206e-01 3.23629409e-01 -3.76321212e-03 -1.59758940e-01\\n-7.14605227e-02 3.10920924e-01 -2.26615623e-01 2.42029116e-01\\n-2.24254206e-01 2.14839295e-01 -5.27010560e-01 -2.51147777e-01\\n-1.89533651e-01 -2.71585196e-01 1.84318483e-01 2.28126511e-01\\n2.03223228e-01 -3.70794609e-02 3.30763966e-01 -4.31313396e-01\\n3.07743609e-01 2.66629159e-01 1.91426024e-01 1.08968325e-01\\n2.52702497e-02 4.07645941e-01 -5.88917434e-02 -1.57739937e-01\\n-2.15157881e-01 1.83812693e-01 -2.67424822e-01 -9.50107872e-02\\n-7.86045194e-02 -6.34321153e-01 -1.38791934e-01 1.07940413e-01\\n3.98377478e-02 -1.64353326e-01 -2.82390535e-01 2.61431545e-01\\n6.86078370e-02 -3.14356238e-01 -1.31920904e-01 1.27763152e-01\\n3.57933968e-01 1.40246421e-01 1.86674997e-01 -5.64529419e-01\\n-6.06538691e-02 -4.70073475e-03 -3.02316606e-01 4.78716642e-01\\n5.66418171e-02 4.51362394e-02 -3.04455042e-01 -1.55716985e-01\\n4.52510864e-01 -6.72244281e-02 8.06999765e-03 3.82379331e-02\\n-3.75776440e-02 -1.28938720e-01 -1.58425212e-01 4.34455462e-02\\n1.72775880e-01 -2.62276292e-01 3.20517719e-02 -3.02826501e-02\\n-9.43470672e-02 1.44023851e-01 -5.95465481e-01 -1.24057770e-01\\n-2.92981505e-01 -2.50484735e-01 1.42083345e-02 -4.08683509e-01\\n-6.95034191e-02 -8.50751102e-02 -5.44655621e-01 2.59291500e-01\\n-2.67302752e-01 -2.65083145e-02 1.99467734e-01 -4.69694138e-02\\n-3.80409628e-01 -1.69289321e-01 1.78382933e-01 2.84624666e-01\\n-4.08713907e-01 -4.49865423e-02 -2.07871810e-01 -8.89347553e-01\\n1.70488626e-01 2.23317537e-02 -1.23359174e-01 1.24611802e-01\\n-1.17886394e-01 -4.60833669e-01 9.48977545e-02 -4.16832805e-01\\n-8.71105120e-02 -1.76602796e-01 -1.90854311e-01 -3.11236143e-01\\n7.31306374e-02 -1.09397650e-01 -1.95076495e-01 4.75263625e-01\\n-3.88413489e-01 2.45238379e-01 -8.25539231e-02 1.08486965e-01\\n-1.70761451e-01 -3.70792150e-01 7.76525140e-02 -2.92954296e-01\\n-3.65170211e-01 -3.11549723e-01 -2.78835654e-01 -2.81399786e-01\\n4.37543727e-02 -3.88051093e-01 -2.66322047e-01 1.55013829e-01\\n3.20634484e-01 5.13773896e-02 -1.44097760e-01 -3.07141542e-01\\n1.74089968e-01 -4.12364960e-01 -1.67529836e-01 -8.84682387e-02\\n-7.72396103e-02 -4.10492867e-02 1.60406493e-02 1.69670451e-02\\n2.32027218e-01 -2.82843649e-01 4.81261581e-01 -3.11639458e-01\\n-3.22973192e-01 3.25628854e-02 9.38505754e-02 2.30876785e-02\\n3.96650642e-01 -4.03154761e-01 -1.66947052e-01 3.51412475e-01\\n6.35201782e-02 4.83379886e-02 2.09350526e-01 -1.49551287e-01\\n-2.59609014e-01 3.81303996e-01 -1.97331727e-01 1.73351184e-01\\n7.91055083e-01 2.85044700e-01 3.64246033e-02 1.17907047e-01\\n-1.73918661e-02 3.36787611e-01 4.06204998e-01 -6.84190392e-02\\n9.36488900e-03 3.74048173e-01 9.97290462e-02 -2.42690191e-01\\n3.68908457e-02 1.97544068e-01 -2.18458727e-01 -1.34343252e-01\\n6.07685745e-01 5.15794814e-01 -4.24180597e-01 -1.82269633e-01\\n-6.99812546e-02 -2.74394035e-01 2.26543918e-01 1.04461499e-01\\n-8.12147185e-02 -1.48707256e-01 4.94916439e-01 -1.16664872e-01\\n-1.12876385e-01 5.91809452e-01 -3.26332659e-01 -2.91918963e-01\\n3.43156569e-02 2.17134476e-01 -6.50778860e-02 5.70419610e-01\\n-2.20061973e-01 3.33715588e-01 -8.85379687e-02 4.33868030e-03\\n-2.78020874e-02 -1.86405685e-02 3.82860780e-01 1.22185014e-02\\n3.42570454e-01 2.19154626e-01 1.57592863e-01 4.56549853e-01\\n2.65996009e-01 4.20051277e-01 1.32879838e-01 6.30503297e-02\\n2.50056803e-01 4.41739410e-01 4.51863408e-01 1.59671128e-01\\n-5.36160432e-02 -1.05534658e-04 3.17312151e-01 1.36153460e-01\\n2.78396010e-01 1.51762456e-01 1.40357032e-01 9.23001826e-01\\n4.18907583e-01 2.80676246e-01 6.49222314e-01 -7.03041136e-01\\n-3.92802715e-01 2.33179063e-01 5.68709254e-01 -2.21093416e-01\\n-1.20763890e-01 2.61729565e-02 -3.35082114e-01 1.23367153e-01\\n-5.18793821e-01 -5.28750010e-02 -5.58184413e-03 4.43795770e-02\\n1.53982490e-01 -1.23515882e-01 -1.78730428e-01 -3.93660739e-02\\n-1.87264830e-02 -6.47684857e-02 -5.20371795e-01 -1.92973018e-01\\n-2.67392129e-01 -1.74119934e-01 -3.68186203e-03 -1.58199117e-01\\n-2.21839696e-02 -3.10001135e-01 -1.57793164e-01 1.12845287e-01\\n3.11703771e-01 -2.71136053e-02 6.83787614e-02 -1.44933581e-01\\n1.28837734e-01 4.22842622e-01 6.76879168e-01 4.52585369e-02\\n4.23577689e-02 -1.49941221e-01 -1.23949461e-01 1.28979340e-01\\n-5.05858734e-02 -1.43334806e-01 8.61237869e-02 3.46731186e-01\\n-4.52521324e-01 -2.25270137e-01 2.26860065e-02 4.24205571e-01\\n-5.20391166e-01 3.45945954e-02 -2.98913326e-02 1.51712239e-01\\n-6.17790557e-02 2.62394607e-01 -2.01326430e-01 -7.28729367e-03\\n-2.07396314e-01 -5.96492648e-01 3.31731707e-01 -2.37001833e-02\\n-3.11802477e-02 3.90972868e-02 1.42133221e-01 1.84165254e-01\\n-2.54970253e-01 -1.44183725e-01 -4.75915633e-02 1.68822721e-01\\n2.25609038e-02 2.00655133e-01 -2.47797698e-01 -3.26203793e-01\\n-2.13428348e-01 1.82715490e-01 -1.71977639e-01 1.77289154e-02\\n-1.90177679e-01 3.92620444e-01 1.68538243e-01 3.78477067e-01\\n2.36950532e-01 -2.72329291e-03 -2.33181879e-01 -7.83161595e-02\\n-2.58168459e-01 -2.50963330e-01 1.54999308e-02 1.60254359e-01\\n1.89160034e-01 -5.01667202e-01 -8.36799145e-02 -2.90903658e-01\\n-8.28303695e-02 -4.52830136e-01 -7.78395459e-02 -1.24705449e-01]]',\n", + " 'job_description': 'Job Informationen Your tasks: We currently face a couple of interesting challenges in the field of computer vision and data science. These challenges need to be thoroughly analyzed together with experts from the related field, solutions proposed and implemented. We are looking for a person, who is able to take initiative and work independently on research topics while considering and incorporating the ideas and proposals from the rest of our international team. Your profile: Strong mathematical skills (statistics, numerical analysis, optimization) Data science Good programming skills C++, Python Self-starter Analytical thinking and problem solving Computer vision & geometry processing Benötigte Skills Mathematik C++ Python Python Englisch',\n", + " 'soft_skills': '[\"Self Starter\", \"Research\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"C++ (Programming Language)\", \"Python Server Pages\", \"Data Science\", \"Numerical Analysis\", \"Programming (Music)\", \"Computer Vision\", \"Python (Programming Language)\", \"Personalization\", \"Statistics\", \"Geometry\", \"Analytical Thinking\"]',\n", + " 'languages': \"['English', 'German', 'Tsonga', 'Tsonga']\"},\n", + " {'company_id': '92',\n", + " 'job_title': 'beamline scientist',\n", + " 'location': 'Villigen',\n", + " 'industry': 'Research & Development',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.45809698e-01 2.40760267e-01 3.86761814e-01 -1.41333997e-01\\n4.54120249e-01 -1.82031512e-01 -2.59941280e-01 3.03020418e-01\\n-5.06130755e-02 -3.54118764e-01 -1.63982719e-01 -4.68991011e-01\\n-2.05224663e-01 2.58927822e-01 1.64388344e-02 7.08726466e-01\\n3.99915755e-01 -6.20405376e-02 -1.15255043e-01 2.97411680e-01\\n1.85923219e-01 1.92877464e-02 2.04463810e-01 8.37673247e-01\\n2.70993084e-01 -6.91604614e-02 -1.41646788e-02 7.16641396e-02\\n4.87585040e-03 -7.52151459e-02 5.64723074e-01 1.62882075e-01\\n-2.03815117e-01 -2.86213338e-01 2.54533201e-01 3.56649399e-01\\n-2.43268669e-01 -1.10123068e-01 -1.56665351e-02 1.56770706e-01\\n-5.84460258e-01 -5.04559457e-01 -2.97786534e-01 -1.11032128e-02\\n-3.39402497e-01 -3.09013903e-01 2.96466410e-01 -5.06600700e-02\\n5.38071543e-02 1.56672657e-01 -5.71766913e-01 1.50984317e-01\\n-1.63360715e-01 -9.36386436e-02 2.64369518e-01 6.69528306e-01\\n-2.21422806e-01 -3.76176119e-01 -5.28578460e-01 -1.56794935e-01\\n-9.67135355e-02 -8.63044038e-02 -2.92635299e-02 -3.26595902e-01\\n5.01759291e-01 1.06564306e-01 9.99007449e-02 2.21450150e-01\\n-7.19509840e-01 -1.52579114e-01 -2.69892693e-01 7.70695284e-02\\n-2.77819395e-01 -7.71931559e-02 5.24960831e-02 -2.24402428e-01\\n-1.38893992e-01 3.43119502e-01 5.03780320e-02 7.26718679e-02\\n-1.26976579e-01 3.99083763e-01 -2.14835852e-01 2.70659059e-01\\n6.82644472e-02 3.04811418e-01 6.75827712e-02 2.66681939e-01\\n-4.42713916e-01 3.92651886e-01 -1.33917551e-03 -3.58318985e-01\\n1.72328770e-01 1.30207866e-01 5.04208803e-01 -4.05891053e-02\\n2.21757561e-01 6.40647411e-02 -2.94102699e-01 4.63778496e-01\\n3.37146103e-01 -6.19560406e-02 1.96224093e-01 4.35618833e-02\\n-7.07868487e-02 -2.03720093e-01 2.27487590e-02 -9.14328732e-03\\n-3.51798952e-01 3.38611662e-01 3.60218212e-02 -2.79057771e-01\\n-3.37158412e-01 -7.15076208e-01 -1.06256425e-01 -7.18494654e-02\\n2.57016011e-02 -1.88628733e-02 3.10433745e-01 3.01956683e-01\\n2.21182570e-01 5.68175549e-03 1.32828474e-01 9.08930302e-01\\n-1.96331874e-01 1.98670663e-02 -7.71393441e-03 4.39201623e-01\\n2.66786758e-02 -2.46281981e-01 3.55188400e-01 3.32521081e-01\\n3.98515463e-02 -2.87895262e-01 -1.40692741e-01 1.18540943e-01\\n-8.13064054e-02 -2.50040650e-01 -4.47571754e-01 4.01631534e-01\\n-5.59104197e-02 -3.82852018e-01 5.80591917e-01 -1.49704218e-02\\n1.44920781e-01 -1.95709556e-01 -9.14238766e-02 -1.14982143e-01\\n1.27150387e-01 1.73118591e-01 2.98465006e-02 1.51056759e-02\\n-3.18475276e-01 -1.86753318e-01 -2.56250620e-01 -4.79933135e-02\\n-2.68640310e-01 4.11803901e-01 -1.33990586e-01 -1.46340415e-01\\n3.20837498e-01 -1.45542443e-01 -2.99591124e-01 4.51312423e-01\\n-1.02879189e-01 -1.01027444e-01 8.49661976e-03 4.04606223e-01\\n-2.96354949e-01 1.62089974e-01 -2.28302479e-02 -4.15693104e-01\\n4.89489704e-01 -5.08041643e-02 -9.25617572e-03 5.85887767e-03\\n2.68584907e-01 -5.64731658e-02 1.13961428e-01 1.10013202e-01\\n-7.46925533e-01 2.05857426e-01 -2.99774744e-02 6.47832602e-02\\n1.01645365e-01 -2.11973228e-02 5.61715901e-01 -2.67359823e-01\\n-9.64637399e-02 -2.03056574e-01 -2.29629397e-01 -1.72231153e-01\\n-2.23611683e-01 2.41424683e-02 4.04588282e-01 -3.51689905e-01\\n-8.71918947e-02 9.25695449e-02 -5.21928191e-01 -2.22333848e-01\\n-1.65140599e-01 1.93033114e-01 2.76066571e-01 2.08562136e-01\\n-2.86134005e-01 -5.01437664e-01 1.68071929e-02 -4.80697244e-01\\n-1.29399329e-01 1.26776978e-01 -1.44325584e-01 4.70583662e-02\\n3.97809483e-02 8.65317285e-02 -2.42027611e-01 1.40861413e-02\\n-3.10616076e-01 -5.20778541e-03 1.46430328e-01 9.37623084e-02\\n1.78942502e-01 9.55171883e-02 -3.41007590e-01 4.25902605e-01\\n-1.21985711e-01 7.14845300e-01 9.37000066e-02 -6.87866688e-01\\n4.45264995e-01 6.15007639e-01 -8.32524151e-04 -5.22736907e-01\\n8.59574080e-01 -3.89872015e-01 -1.23316176e-01 2.20034212e-01\\n-4.67379868e-01 -2.04989061e-01 1.93395495e-01 -3.42955977e-01\\n-2.18238682e-01 6.82741404e-01 2.06239253e-01 2.79475570e-01\\n2.42790908e-01 -2.41475821e-01 -8.78192112e-02 1.18884847e-01\\n-1.99934721e-01 -3.35704684e-01 -4.58944082e-01 -4.46644053e-02\\n-8.43228847e-02 -3.87640506e-01 -3.59113049e-03 -5.47983646e-01\\n-7.01359510e-02 -2.85246670e-01 5.85510805e-02 2.53617436e-01\\n2.88158834e-01 -1.07170954e-01 1.28562897e-01 1.00407302e-02\\n-2.87427217e-01 -6.40394807e-01 5.80714867e-02 4.78657670e-02\\n2.98324913e-01 1.41319811e-01 4.86830696e-02 1.45219356e-01\\n-4.21842635e-02 5.98069787e-01 -4.12827760e-01 -2.28340060e-01\\n7.23405257e-02 6.98399842e-02 -1.01957403e-01 -4.79738750e-02\\n2.29019046e-01 2.80903310e-01 -3.66281211e-01 1.58332273e-01\\n-2.83897579e-01 1.16952267e-02 3.83291543e-01 5.76225631e-02\\n-1.03777170e-01 -3.39173496e-01 -2.17351243e-01 7.36750290e-02\\n-5.66741526e-01 -2.92441368e-01 1.83423460e-01 1.80575594e-01\\n1.71114445e-01 -4.13333401e-02 2.59165287e-01 -4.86990362e-02\\n-3.41019392e-01 -4.05753464e-01 1.24298155e-01 2.22978741e-01\\n2.63237301e-02 -3.36475298e-03 4.52119447e-02 -5.36467791e-01\\n-2.48188829e+00 7.85219520e-02 -1.18475594e-02 -9.82554033e-02\\n3.07876289e-01 -8.55706781e-02 -8.79981667e-02 1.01506431e-02\\n-4.67441052e-01 7.92015642e-02 -3.10824454e-01 -3.26058716e-01\\n7.89732113e-02 9.02246237e-02 2.01924622e-01 1.97807644e-02\\n-1.60633743e-01 -3.64493608e-01 5.46896569e-02 3.78157020e-01\\n-9.36601907e-02 -6.97075248e-01 1.95206866e-01 -2.06763536e-01\\n3.20534915e-01 1.41952857e-01 -4.56909209e-01 -2.07273245e-01\\n-3.41205090e-01 -3.02655101e-01 1.24217838e-01 -3.90627980e-01\\n-1.07618451e-01 2.11928278e-01 2.78403252e-01 5.28788939e-02\\n7.39757866e-02 -4.11585420e-01 -8.63629133e-02 -5.36580682e-01\\n1.60470635e-01 -5.27852297e-01 -8.33108351e-02 -1.23676457e-01\\n7.91242599e-01 -1.05762511e-01 1.66914254e-01 2.38038406e-01\\n8.54494423e-02 3.80013168e-01 1.68680042e-01 6.87090307e-02\\n-1.76705003e-01 -3.88859391e-01 -1.24609828e-01 -2.22830340e-01\\n3.03601801e-01 6.22459531e-01 -2.01547831e-01 -2.11238578e-01\\n-4.94279861e-02 -1.13650329e-01 -7.15984583e-01 -2.17597574e-01\\n-1.31451577e-01 -6.81305677e-02 -6.10427856e-01 -3.04470688e-01\\n5.06750681e-03 -2.22039297e-01 -1.77767575e-02 8.21896315e-01\\n-4.81288910e-01 -1.27176374e-01 -4.85077612e-02 -5.03491640e-01\\n3.56350601e-01 -4.02850211e-01 3.52946296e-02 -5.58663495e-02\\n-3.22295606e-01 -5.35560727e-01 1.91964626e-01 3.33730355e-02\\n1.03961535e-01 -3.13841373e-01 -2.76895724e-02 -3.79646301e-01\\n-3.68857533e-01 -5.78027844e-01 4.07614797e-01 1.47311330e-01\\n4.02638018e-01 8.41324776e-02 1.04301319e-01 -1.31242260e-01\\n2.61280745e-01 1.89854652e-01 9.66012999e-02 -2.65808821e-01\\n1.07359469e-01 -1.26699321e-02 5.32254577e-01 -2.18555123e-01\\n-3.28736715e-02 2.81389654e-02 -3.00247639e-01 2.07408480e-02\\n2.36194059e-02 8.39301422e-02 -2.72555090e-02 -3.07861328e-01\\n3.03385973e-01 -2.36406267e-01 1.00457236e-01 7.42449611e-02\\n5.07685505e-02 6.40259326e-01 -1.36890719e-02 -2.96718985e-01\\n-2.13718176e-01 3.79791319e-01 6.97991624e-03 -2.77193666e-01\\n1.91347003e-02 9.82096121e-02 -3.45803201e-01 2.50712484e-01\\n5.86071610e-02 -1.72310725e-01 -2.86427140e-01 5.66873178e-02\\n-3.03193718e-01 2.87834853e-01 2.73239851e-01 3.02359819e-01\\n-2.60871649e-01 -3.42498481e-01 -1.43479928e-01 4.42345500e-01\\n3.82398069e-01 1.96156815e-01 2.04745919e-01 -3.05308402e-01\\n9.85153168e-02 3.70981276e-01 -8.95058662e-02 3.23548555e-01\\n-1.93556488e-01 -8.63525271e-03 -4.70659971e-01 -2.47499496e-01\\n-3.43874365e-01 -2.95479327e-01 3.04496825e-01 3.88104975e-01\\n1.00817353e-01 -1.97061762e-01 6.98339343e-02 -4.01460588e-01\\n3.01824570e-01 2.24672675e-01 2.78110743e-01 -3.18264263e-03\\n-2.12903783e-01 7.60145903e-01 4.95729297e-02 -6.84433803e-02\\n8.71081352e-02 -3.22130769e-02 -2.50670910e-01 -2.48286098e-01\\n9.05192643e-02 -5.52165031e-01 -3.55697870e-01 5.11308253e-01\\n7.54418224e-02 -2.96924919e-01 -1.85742944e-01 3.81201386e-01\\n5.93147613e-03 -1.13518104e-01 -1.71170354e-01 1.11547768e-01\\n1.82311013e-01 2.48405505e-02 2.56972849e-01 -5.77492118e-01\\n4.81822453e-02 -8.07079375e-02 2.15251073e-01 4.60442126e-01\\n6.17659241e-02 -1.40849799e-02 -3.96825850e-01 -3.82223397e-01\\n2.61422187e-01 -1.20779887e-01 5.67430817e-02 6.79491460e-03\\n-4.23998609e-02 -2.34470665e-01 -3.82789850e-01 1.49799645e-01\\n-1.08190261e-01 -2.89712071e-01 -1.90536663e-01 1.66775525e-01\\n2.09501058e-01 4.23453888e-03 -5.50093293e-01 -2.88947999e-01\\n-1.58106625e-01 1.93713278e-01 -4.33786958e-02 -4.23162341e-01\\n-7.35912751e-03 -1.31652936e-01 -5.53546250e-01 2.83875942e-01\\n-1.15396291e-01 -1.44187838e-01 2.90813059e-01 -6.14260919e-02\\n-1.45987034e-01 -1.75757349e-01 1.66905209e-01 1.70598298e-01\\n-2.79904962e-01 -2.72356093e-01 -1.09784506e-01 -7.50319302e-01\\n2.31985673e-01 -1.79974943e-01 -1.36926234e-01 2.47590214e-01\\n1.44959867e-01 -8.47737432e-01 -2.81981789e-02 -3.51557806e-02\\n-4.15872149e-02 -1.08306736e-01 -2.97942400e-01 -3.60341072e-01\\n1.88647851e-01 2.98499595e-02 1.86299950e-01 2.66827583e-01\\n-3.24826360e-01 3.50115776e-01 -1.63529590e-01 -5.95295094e-02\\n1.14686333e-01 -4.38195705e-01 3.35826516e-01 -4.05177653e-01\\n-2.33751938e-01 -1.58398956e-01 -1.46460295e-01 -3.10499340e-01\\n-2.04065055e-01 -1.65390432e-01 -2.03085750e-01 4.59843725e-02\\n3.60766411e-01 2.19513476e-03 -2.52138615e-01 -1.58766493e-01\\n2.73846090e-01 -2.29012355e-01 2.15433925e-01 -1.61596298e-01\\n3.11880652e-02 -1.87858403e-01 1.22183934e-03 2.55314410e-01\\n1.20783404e-01 -2.37280145e-01 3.82095069e-01 -5.39723933e-01\\n-5.31245053e-01 -2.66796462e-02 1.68584093e-01 -1.36082739e-01\\n4.35275286e-01 -3.74710053e-01 -1.70460925e-01 4.82203603e-01\\n7.29043484e-02 6.12219982e-03 4.18551505e-01 -3.97491157e-01\\n-2.09333509e-01 1.63863674e-01 -3.99607241e-01 1.93790436e-01\\n7.51308262e-01 3.62087578e-01 2.58520953e-02 2.22431332e-01\\n4.95855138e-03 1.64091989e-01 3.33375990e-01 6.46231920e-02\\n1.19703844e-01 1.65906265e-01 3.51426452e-01 -3.05862963e-01\\n-2.74645358e-01 -4.20168042e-04 -1.27942711e-01 -2.91398168e-01\\n5.14018416e-01 2.91541100e-01 -4.78274584e-01 -2.32945487e-01\\n-1.89964548e-01 -4.08878177e-03 2.96094596e-01 3.07504255e-02\\n3.04530896e-02 1.51658863e-01 3.68120819e-01 -4.52038422e-02\\n6.22645020e-02 5.17324328e-01 4.71297912e-02 -2.14374572e-01\\n-3.30490589e-01 1.47188783e-01 6.48699477e-02 4.25095797e-01\\n5.39490208e-02 3.91915500e-01 -4.82826829e-02 1.55732155e-01\\n-1.41831219e-01 2.46662274e-02 6.44592196e-02 -1.30825177e-01\\n-1.41736001e-01 2.21100539e-01 2.01558292e-01 4.39204961e-01\\n5.07578373e-01 5.00967383e-01 2.18115643e-01 2.51558376e-03\\n5.15514493e-01 4.94697690e-01 4.24764246e-01 -5.24234623e-02\\n2.91975774e-02 6.29625618e-02 -1.28203239e-02 2.84622777e-02\\n3.69149685e-01 2.08649606e-01 9.06033814e-02 9.07156289e-01\\n2.42310524e-01 4.47250992e-01 5.23406446e-01 -4.98723030e-01\\n-3.74662876e-01 -2.53628008e-03 4.03031111e-01 -5.62860250e-01\\n-1.05003431e-01 -8.55161771e-02 5.83845712e-02 1.61441296e-01\\n-2.95660853e-01 -3.66350040e-02 -6.52897656e-02 2.90814579e-01\\n1.12193540e-01 -7.38110244e-02 -1.52578816e-01 1.17978677e-01\\n-2.60110885e-01 -1.61791578e-01 -5.00850916e-01 -3.36037695e-01\\n-4.47054625e-01 -1.85329109e-01 -2.57674083e-02 1.00367386e-02\\n1.79492719e-02 -1.65376797e-01 1.99737221e-01 -1.09691340e-02\\n5.77859521e-01 -2.67868102e-01 -1.38407469e-01 -2.31462479e-01\\n5.25919437e-01 2.30033308e-01 5.42341113e-01 -1.27677575e-01\\n1.08313262e-02 -4.23326880e-01 -1.79315448e-01 2.51365993e-02\\n9.70965400e-02 1.51231304e-01 4.65523824e-02 4.40123379e-01\\n-2.04064324e-01 -3.36268768e-02 3.16305682e-02 3.20813358e-01\\n-2.78688788e-01 3.01793609e-02 -7.19959140e-02 -5.04226759e-02\\n-9.13985148e-02 8.77118781e-02 -3.10290396e-01 2.50814915e-01\\n-5.91894500e-02 -6.35081768e-01 2.48365790e-01 -1.56630874e-02\\n-2.68759251e-01 -1.31524116e-01 5.77500701e-01 2.05051094e-01\\n-3.08491439e-02 -1.47888869e-01 9.37148333e-02 2.59473115e-01\\n1.02441013e-01 2.75669992e-01 -3.93415213e-01 -2.91762561e-01\\n-3.83897066e-01 9.31471959e-02 -2.82130897e-01 7.43618328e-03\\n6.20297529e-02 5.94205499e-01 1.50216296e-02 4.52903770e-02\\n6.08782291e-01 -1.96345031e-01 -1.72456682e-01 -4.11166191e-01\\n-1.57634676e-01 -2.51504600e-01 -1.23404920e-01 6.95163012e-03\\n1.29820973e-01 -1.68730915e-01 -2.03990757e-01 -4.34988976e-01\\n2.73905694e-02 -2.02042356e-01 7.43188858e-02 -1.08718477e-01]]',\n", + " 'job_description': 'The Paul Scherrer Institute PSI is the largest research institute for natural and engineering sciences within Switzerland. We perform cutting-edge research in the fields of matter and materials, energy and environment and human health. By performing fundamental and applied research, we work on sustainable solutions for major challenges facing society, science and economy. PSI is committed to the training of future generations. Therefore, about one quarter of our staff are post-docs, post-graduates or apprentices. Altogether, PSI employs 2100 people. The Swiss Light Source (SLS) is one of the most advanced radiation sources worldwide. The SLS Macromolecular Crystallography team operates two high performance undulator beamlines as well as a state-of-the-art superbending magnet beamline for Macromolecular Crystallography. The focus is on methods development in Macromolecular Crystallography including advanced beamline instrumentations, novel data collection methods for experimental phasing, in situ serial crystallography, and time-resolved crystallography. The team is also involved in the development and user operation of serial femtosecond crystallography (SFX) instruments at the Swiss X-Ray free-electron laser facility Swiss X-Ray free-electron laser facility (SwissFEL) Alvra and Bernina end stations, and in the design of the new SFX Cristallina end station. We are looking for a Beamline Scientist Serial Femtosecond Crystallography Your tasks You will lead the development and user operation of the SFX instruments at the SwissFEL. In addition, you will contribute to time-resolved serial crystallography development at the macromolecular crystallography beamlines of the SLS and SLS 2.0 Your main tasks are: Lead the design, implementation and commissioning of the SFX instrument in the Cristallina-MX end station at the SwissFEL Further develop and commission the current SFX instruments at the Alvra and Bernina end stations of the SwissFEL Develop new concepts and implement advanced methods focused on experimental control and online data analysis Support academic and industrial users Publish in peer-reviewed scientific journals and present your results at international conferences Supervise assigned personnel, and mentor PhD students and postdoctoral fellows Your profile You hold a PhD degree in biology, chemistry or physics and have substantial experience in macromolecular crystallography and beamline instrumentation at storage rings or XFELs Experience in experimental control and data analysis, especially in high throughput applications You are a good team player with fine communication skills, sense of responsibility, and very good command in spoken and written English; knowledge of German is an advantage We offer Our institution is based on an interdisciplinary, innovative and dynamic collaboration. You will profit from a systematic training on the job, in addition to personal development possibilities and our pronounced vocational training culture. If you wish to optimally combine work and family life or other personal interests, we are able to support you with our modern employment conditions and the on-site infrastructure. This is a Tenure Track position. The employment contract will initially be limited to 3 years. For further information please contact Dr Meitian Wang, phone +41 56 310 41 75 or Dr Bill Pedrini, phone +41 56 310 33 71. Please submit your application online by 30 November 2019 (including list of publications and addresses of referees) for the position as a Beamline Scientist (index no. 6121-00). Paul Scherrer Institut, Human Resources Management, Elke Baumann, 5232 Villigen PSI, Switzerland',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Positivity\", \"Collaboration\", \"Infrastructure\", \"Supervision\", \"Written English\", \"Operations\", \"Presentations\", \"Innovation\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Economy\", \"Resource Management\", \"Sustainability\", \"Indexer\", \"Employment Contracts\", \"Institutional Research\", \"Commissioning\", \"High Performance Computing\", \"Vienna Development Methods\", \"Laser\", \"Journals\", \"X-Rays\", \"Industrialization\", \"Survey Data Collection\", \"Naturalization\", \"Track (Rail Transport)\", \"Instrumentation\", \"Source (Game Engine)\", \"Limiter\", \"Experimentation\", \"DR-DOS\", \"Academic Support Services\", \"Crystallography\", \"Human Resource Management\", \"Storages\", \"Electronics\", \"Biology\", \"High Throughput Screening\", \"Personalization\", \"Survey Data Analysis\", \"Applied Research\", \"Physics\", \"Humanism\", \"Serializer\", \"Chemistry\", \"Peer Review\", \"Additives\", \"Personality Development\", \"S/SL Programming Language\", \"Data Analysis\", \"Controllability\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '102',\n", + " 'job_title': 'data engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.robertwalters.com',\n", + " 'jobdescription_embedded': '[[-3.69240314e-01 8.25279877e-02 4.91174340e-01 -8.14468637e-02\\n4.39075351e-01 -2.59894431e-01 1.08117752e-01 4.42793339e-01\\n-1.29006039e-02 -2.21820161e-01 -1.11764878e-01 -3.46410513e-01\\n3.82579044e-02 1.88376933e-01 1.42550454e-01 3.87582600e-01\\n3.24492037e-01 8.68002847e-02 -2.41615415e-01 3.03820312e-01\\n7.33862519e-02 -1.92458019e-01 1.04501899e-02 5.67554653e-01\\n5.09980440e-01 3.85048613e-02 -5.28866909e-02 4.88218740e-02\\n-2.86617905e-01 -2.13553339e-01 4.07707930e-01 -7.75738806e-03\\n-1.74949616e-01 -2.43239209e-01 -2.87563782e-02 3.63004394e-02\\n-9.17406008e-02 -5.80493137e-02 -2.32187226e-01 1.50015563e-01\\n-5.16039729e-01 -4.32223529e-01 6.05612919e-02 1.88062310e-01\\n-3.61154497e-01 -4.52994496e-01 -2.24923361e-02 -1.28107816e-01\\n1.56975076e-01 1.21473804e-01 -5.52773178e-01 5.16897440e-01\\n-3.28382015e-01 -3.29085082e-01 2.34204695e-01 7.44919598e-01\\n6.68055490e-02 -5.67464232e-01 -4.49748307e-01 -3.07602376e-01\\n1.28797784e-01 -1.05079904e-01 -3.27876620e-02 -3.29013437e-01\\n2.58923858e-01 5.65505028e-02 3.23734991e-02 4.74667639e-01\\n-9.46887016e-01 -2.08655745e-02 -3.92103791e-01 -8.98579508e-02\\n-7.63695613e-02 -2.71036364e-02 -4.35818046e-01 -1.99281469e-01\\n-9.98111144e-02 3.66229266e-01 5.51985623e-03 2.55612023e-02\\n-2.49248818e-01 3.81793588e-01 -2.52502412e-01 3.90147835e-01\\n2.25170612e-01 2.25819886e-01 1.64574474e-01 2.83999294e-01\\n-3.49378407e-01 5.91016293e-01 2.62454599e-01 -3.40145677e-01\\n1.22616664e-01 1.90349996e-01 3.58295411e-01 1.93632245e-01\\n1.19423456e-01 1.77830189e-01 -1.17937751e-01 2.77026951e-01\\n4.14565653e-01 -4.21201766e-01 2.00246368e-02 -6.19453080e-02\\n-1.44699827e-01 1.83656125e-03 1.45882025e-01 2.49355152e-01\\n-1.68656945e-01 3.71681005e-01 7.77733102e-02 -2.91046947e-01\\n9.79752466e-02 -5.00715256e-01 -1.92763239e-01 -9.94219538e-03\\n-3.09221111e-02 1.51602447e-01 2.32413709e-02 1.75464928e-01\\n1.82368442e-01 -9.10306126e-02 3.19169872e-02 9.06018913e-01\\n-1.62834436e-01 1.60859853e-01 -2.55465746e-01 4.82394278e-01\\n3.65963280e-02 -3.08085859e-01 2.89399147e-01 8.57370272e-02\\n-1.28514627e-02 -1.37735412e-01 -3.06986302e-01 4.68420506e-01\\n-1.23031072e-01 -2.40614563e-01 -3.76867175e-01 2.40593895e-01\\n-1.45341277e-01 -4.81125623e-01 6.94297433e-01 -4.25317436e-02\\n2.93819904e-01 7.18387440e-02 -3.35147940e-02 1.09219998e-01\\n-1.16232067e-01 2.59424686e-01 1.61119401e-01 3.90311368e-02\\n-3.80033821e-01 -1.99606299e-01 -2.26258412e-01 2.48691201e-01\\n-3.04851562e-01 1.48026451e-01 -1.19070835e-01 -5.28749637e-02\\n3.63795847e-01 7.07269683e-02 -4.21763450e-01 2.84870386e-01\\n-7.16133714e-02 1.26203494e-02 -1.35152161e-01 2.22982615e-01\\n-2.49662444e-01 3.71707886e-01 -7.46834353e-02 -1.62973374e-01\\n6.31901920e-01 1.79023117e-01 1.27076954e-01 -1.92455918e-01\\n2.05039203e-01 1.50246611e-02 2.82670289e-01 8.74235947e-03\\n-5.76988459e-01 5.77274323e-01 8.00961480e-02 -3.62565964e-02\\n1.31659001e-01 -1.58827946e-01 2.79630303e-01 -3.37808341e-01\\n-1.71705693e-01 -7.68935084e-02 -3.57631236e-01 -3.71480584e-01\\n-3.98912698e-01 -1.60966754e-01 3.51980805e-01 -5.92204332e-01\\n-1.15984946e-01 1.47292793e-01 -6.94108427e-01 -3.90457958e-02\\n3.79650533e-01 5.97690009e-02 1.25385270e-01 2.49188349e-01\\n-7.30868354e-02 -5.69591284e-01 1.96737736e-01 -5.03612638e-01\\n-2.61735320e-01 1.83000907e-01 -2.41609454e-01 2.58737057e-01\\n1.21974787e-02 1.15283407e-01 -8.84649605e-02 1.64380625e-01\\n-2.57929474e-01 1.23197976e-02 1.49216354e-01 7.02007413e-02\\n3.75430167e-01 4.47768904e-02 -3.95253450e-01 4.68276441e-01\\n-1.77164346e-01 6.51994050e-01 2.37045184e-01 -9.41641271e-01\\n4.30420101e-01 3.86938542e-01 -2.22837422e-02 -3.35657001e-01\\n6.22202337e-01 -4.11555946e-01 -2.55740225e-01 1.85853124e-01\\n-4.10764307e-01 -2.41395324e-01 1.20760888e-01 -1.47041410e-01\\n-3.14059198e-01 6.41126454e-01 8.66300166e-02 1.03188545e-01\\n2.68038988e-01 -2.27926910e-01 -1.11606024e-01 8.50964058e-03\\n-1.20851956e-01 -2.73170412e-01 -5.17953157e-01 -6.10137917e-02\\n-4.92346212e-02 -5.31678259e-01 -2.43596941e-01 -3.87654454e-01\\n-2.97718436e-01 -3.48096311e-01 -9.66810063e-02 1.40077755e-01\\n2.61486441e-01 2.07811981e-01 7.43704289e-02 7.26435408e-02\\n-1.68329492e-01 -5.96635401e-01 3.81935760e-02 9.25624892e-02\\n4.07238305e-01 3.13320696e-01 4.26565669e-02 1.26552610e-02\\n1.59102291e-01 6.05940461e-01 -5.42859614e-01 -4.28777367e-01\\n2.65189856e-01 1.14223011e-01 1.42616229e-02 -2.85975605e-01\\n2.08352283e-01 3.53475600e-01 -2.87568897e-01 1.15516424e-01\\n3.82988229e-02 -1.90840811e-02 3.18307340e-01 2.20453829e-01\\n-2.95485467e-01 -4.60772365e-01 -1.32605851e-01 1.99360758e-01\\n-5.42560339e-01 -2.34567016e-01 5.63095748e-01 1.27885014e-01\\n9.43219140e-02 2.82934636e-01 3.53706986e-01 -1.25921980e-01\\n-2.05265597e-01 -9.71540958e-02 1.25345737e-01 1.75501317e-01\\n-2.05488969e-02 1.06356412e-01 -2.36835014e-02 -5.97698867e-01\\n-3.04537058e+00 -1.11750372e-01 1.53187677e-01 -1.77589059e-01\\n2.46047720e-01 -2.62942314e-01 -4.22593439e-03 -5.31064197e-02\\n-3.67481142e-01 -3.43310572e-02 -1.58565044e-01 -5.02117649e-02\\n2.79857516e-01 1.70414746e-01 5.01893423e-02 2.07946002e-01\\n9.91830304e-02 -3.02427709e-01 1.48815373e-02 4.32165027e-01\\n-1.35586068e-01 -6.13655031e-01 1.18142068e-01 -1.14492625e-01\\n3.72311562e-01 2.26920635e-01 -6.28906131e-01 -1.30676880e-01\\n-2.61219114e-01 -3.51524591e-01 9.90687683e-02 -3.19350392e-01\\n-8.49257633e-02 2.38111585e-01 1.38117835e-01 -5.17274141e-02\\n2.10168883e-01 -2.74930149e-01 6.48810249e-03 -4.06912386e-01\\n9.22796428e-02 -7.78051853e-01 -4.57377778e-03 7.00837001e-02\\n8.47651482e-01 -3.33411098e-01 1.35327116e-01 1.00539345e-03\\n1.75501794e-01 2.34811381e-02 -5.58712333e-02 2.58948356e-02\\n-2.96528161e-01 -2.22639069e-01 -5.51448092e-02 -5.27355634e-02\\n5.56573629e-01 6.04797423e-01 -2.10573778e-01 -7.92994630e-03\\n5.03490772e-03 -3.90890926e-01 -4.43472683e-01 -3.75228852e-01\\n-1.34297282e-01 -1.73222393e-01 -6.30488336e-01 -3.76986712e-01\\n-2.00325802e-01 -5.92841096e-02 3.38628963e-02 5.17028153e-01\\n-3.20278496e-01 -4.54628080e-01 4.91282754e-02 -6.50902867e-01\\n2.83607721e-01 4.01125252e-02 1.65570542e-01 -2.10148931e-01\\n-2.08284259e-01 -6.25866592e-01 6.11026324e-02 1.59246139e-02\\n-1.02232650e-01 -1.29592821e-01 1.92116246e-01 -5.08912280e-02\\n-4.47158694e-01 -5.67521036e-01 3.35128903e-01 1.88271970e-01\\n3.57883453e-01 2.70942956e-01 1.78484857e-01 -8.19721296e-02\\n3.33459556e-01 -2.29541108e-01 1.68070987e-01 -4.68866616e-01\\n-1.07093222e-01 1.76562686e-02 4.21825290e-01 -1.05930820e-01\\n1.42581211e-02 1.58526078e-01 -2.63683200e-01 -1.31640941e-01\\n3.71041089e-01 7.31290430e-02 1.58227757e-01 -2.94220090e-01\\n2.49974340e-01 -1.83012262e-01 -2.83738881e-01 2.00685225e-02\\n-4.58043702e-02 7.52873778e-01 -3.57089341e-02 -2.33635828e-01\\n-1.47344217e-01 4.05440360e-01 -1.23900034e-01 -1.33360520e-01\\n-2.97999382e-01 7.44065642e-02 -1.65027201e-01 1.17701374e-01\\n-2.65431013e-02 -1.76033884e-01 -1.74560517e-01 -3.44776437e-02\\n-6.59584254e-02 3.36652368e-01 1.79248646e-01 1.17356203e-01\\n-1.49229556e-01 -1.68255821e-01 1.06160425e-01 1.52614608e-01\\n1.13357365e-01 4.04965907e-01 -5.30397035e-02 -3.61947894e-01\\n-6.38192426e-03 2.67998606e-01 -1.98803574e-01 1.59754753e-01\\n-1.18419252e-01 7.22104609e-02 -5.21541059e-01 -9.00286064e-02\\n-1.73611239e-01 -4.03191656e-01 1.04705997e-01 2.99585462e-01\\n6.16946220e-02 -6.16030544e-02 -5.56084746e-03 -5.43981612e-01\\n3.44774365e-01 1.44660071e-01 1.91595122e-01 1.85645342e-01\\n9.85863581e-02 6.46382093e-01 9.32209641e-02 -1.44844264e-01\\n-7.15427101e-02 1.38203114e-01 -1.60976112e-01 -1.97612703e-01\\n-3.59524675e-02 -4.38107967e-01 -9.09141824e-02 4.59769309e-01\\n2.16785371e-01 -1.42289534e-01 -1.53489828e-01 1.51401520e-01\\n1.67063192e-01 -2.85538405e-01 -2.51075476e-01 2.07387462e-01\\n3.03312838e-01 1.76931575e-01 1.66444331e-01 -3.34908217e-01\\n1.16699815e-01 -5.99436350e-02 -3.19329426e-02 4.00114626e-01\\n5.52689172e-02 8.10881555e-02 -3.10386151e-01 -1.70473322e-01\\n4.47864205e-01 -1.20368242e-01 1.02191949e-02 -9.47455317e-02\\n1.21399492e-01 -9.88917500e-02 -3.88200611e-01 -1.73262078e-02\\n6.73961267e-02 -1.66287690e-01 -3.07188295e-02 2.22887564e-02\\n-6.97165355e-02 8.39978233e-02 -5.55479765e-01 -1.45383850e-01\\n-3.19203943e-01 -1.24511970e-02 -2.40216311e-02 -4.02724534e-01\\n-2.93622725e-02 -4.79101501e-02 -5.91854036e-01 3.09091866e-01\\n-2.45220408e-01 7.09153116e-02 1.43204525e-01 3.54842581e-02\\n-2.91385025e-01 -1.09686986e-01 2.30921805e-01 2.70083815e-01\\n-4.37682152e-01 -3.74605626e-01 -7.58123770e-02 -8.43400478e-01\\n7.97160417e-02 7.05200359e-02 3.56022529e-02 1.84208810e-01\\n-7.22778440e-02 -7.36995459e-01 1.95281148e-01 -3.85950476e-01\\n-1.12499490e-01 1.57817140e-01 -1.21935330e-01 -5.77650726e-01\\n7.19749136e-03 -5.23175895e-02 -3.03457439e-01 3.51405919e-01\\n-4.47346359e-01 4.70710754e-01 1.15978811e-02 9.89015102e-02\\n6.55442551e-02 -2.69383490e-01 2.15770558e-01 -4.35787439e-01\\n-3.01557153e-01 -2.28800222e-01 -4.12436515e-01 -2.26584911e-01\\n7.16811717e-02 -2.72909164e-01 -2.49867991e-01 2.91146934e-01\\n3.36367160e-01 6.77164271e-02 -1.96278304e-01 -1.40293375e-01\\n9.66690108e-02 -6.28951967e-01 -8.10428858e-02 -3.45174670e-01\\n1.27673475e-02 -1.89390689e-01 2.53704280e-01 9.43263154e-03\\n-5.09825535e-02 -5.16686440e-01 3.55138719e-01 -1.84811935e-01\\n-4.14885342e-01 -2.85570249e-02 -4.58882935e-02 -8.85541737e-02\\n3.52662504e-01 -3.84442478e-01 -8.65319148e-02 3.37665141e-01\\n2.97105834e-02 -5.82179846e-03 1.46150365e-01 -1.64327249e-01\\n-5.83229810e-02 2.75725156e-01 -2.73209512e-01 6.86290637e-02\\n7.35783935e-01 8.20402279e-02 1.96759775e-01 1.93554014e-01\\n7.23883212e-02 6.84811532e-01 4.66410697e-01 1.96852525e-05\\n-9.12774354e-02 4.57006127e-01 3.31962965e-02 -6.45995140e-01\\n4.94029187e-03 9.72336903e-02 -3.24362963e-01 -4.38717097e-01\\n6.42769217e-01 5.05809546e-01 -4.11734581e-01 -3.73307616e-01\\n-4.15916517e-02 -2.61462599e-01 1.01649202e-01 -9.41994637e-02\\n4.94386703e-02 -1.51041806e-01 4.94082779e-01 1.26020029e-01\\n2.82762051e-01 5.56713820e-01 -2.17469290e-01 -2.74312615e-01\\n-8.92571956e-02 3.12633127e-01 2.19900194e-05 4.21211421e-01\\n-1.09959774e-01 3.37148130e-01 -6.02169447e-02 4.98960353e-02\\n-1.63255379e-01 1.24646962e-01 2.24700108e-01 -1.28953131e-02\\n1.22753046e-01 2.51483887e-01 5.08446455e-01 5.58867514e-01\\n3.33869934e-01 3.82212788e-01 3.05241525e-01 -2.85167377e-02\\n5.87329447e-01 5.51419437e-01 4.99584943e-01 8.79136175e-02\\n1.87435865e-01 -7.92128071e-02 8.22473913e-02 2.82038182e-01\\n2.55124360e-01 3.38618636e-01 1.76435679e-01 9.76337910e-01\\n4.11718339e-01 3.39573652e-01 9.17758465e-01 -6.99731290e-01\\n-4.69203502e-01 -1.09365188e-01 3.75902653e-01 -4.35338497e-01\\n-1.73421487e-01 5.12854718e-02 -3.03368539e-01 2.32427806e-01\\n-3.91536474e-01 -2.40698233e-01 4.70994748e-02 2.40797609e-01\\n3.24683227e-02 -1.06977649e-01 -1.60973072e-01 1.24271929e-01\\n-1.36761367e-01 -1.29743770e-01 -5.04181027e-01 -2.21394375e-01\\n-2.28577644e-01 -2.33825266e-01 -1.32123470e-01 -4.22072634e-02\\n-2.11774945e-01 -3.69155914e-01 -2.03979090e-01 8.96567665e-03\\n3.68860573e-01 -1.83114663e-01 -1.22481093e-01 -2.20666572e-01\\n2.69309878e-01 2.53335923e-01 5.33374310e-01 3.50270495e-02\\n-9.90169868e-02 -2.64434367e-01 -2.56926030e-01 5.80486469e-02\\n1.80510178e-01 1.00967146e-01 -1.86418649e-02 4.72050220e-01\\n-2.79831648e-01 -1.43928662e-01 1.94978625e-01 3.72866988e-01\\n-4.82679248e-01 4.60712351e-02 -1.13081839e-02 2.25041091e-01\\n1.63797706e-01 1.86475858e-01 -2.10605159e-01 8.51506144e-02\\n-1.85691059e-01 -3.70014280e-01 3.67387235e-01 -4.17417586e-02\\n-2.70970970e-01 2.91785412e-02 2.86757737e-01 3.41690451e-01\\n-2.81337500e-01 -1.67826250e-01 -1.55289918e-01 1.83858752e-01\\n1.80897731e-02 3.08114976e-01 -2.24041209e-01 -2.26730615e-01\\n-2.63909638e-01 1.42573684e-01 -2.19681978e-01 1.35659665e-01\\n-9.44996253e-03 3.24079543e-01 9.65003520e-02 2.04437196e-01\\n3.27318549e-01 -7.35462606e-02 -2.52505839e-01 -4.74324644e-01\\n-6.42108470e-02 -2.88562030e-01 -9.16094482e-02 -3.51239368e-02\\n2.10844904e-01 -4.13383812e-01 -1.10539921e-01 -4.69673015e-02\\n-1.54880226e-01 -3.86361837e-01 -1.16001265e-02 -1.44560263e-01]]',\n", + " 'job_description': 'A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform. Data Engineer (m/f) Zurich Key Responsibilities: Drive and develop a new Data platform, and the future of Data processing for the firm Ensure delivery is meeting the highest quality and standards With a strong track record in Data engineering / Science you have: Profile: Experience designing and implementing Data technologies Strong in Java, Python and SQL programming languages Skilled in Docker and Kubernetes, AWS, Shell scripting Strong team player and leader with excellent interpersonal skills Fluency in English required, other languages are a plus Apply for the Data Engineer (m/f) position if you believe this is your next challenge. A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform.',\n", + " 'soft_skills': '[\"Positivity\"]',\n", + " 'hard_skills': '[\"Docker (Software)\", \"Kubernetes\", \"Experience Design\", \"KM Programming Language\", \"Python (Programming Language)\", \"Shell Script\", \"M (Programming Language)\", \"Track (Rail Transport)\", \"Data Storage Technologies\", \"Java (Programming Language)\", \"Electronic Data Processing\", \"SQL (Programming Language)\", \"Data Engineering\"]',\n", + " 'languages': \"['English', 'Maori', 'Nuosu']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'performance and capacity software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.30073804e-01 1.82333335e-01 3.54817897e-01 -5.20979427e-02\\n5.10860205e-01 -1.22414924e-01 2.82488745e-02 2.72785813e-01\\n-1.15607768e-01 -3.26799512e-01 -1.11309655e-01 -2.12444499e-01\\n-8.61595422e-02 -1.48624741e-02 4.88055050e-02 3.60669583e-01\\n2.52864659e-01 8.21797773e-02 -1.60429567e-01 2.47678310e-01\\n1.60236150e-01 8.47721845e-02 -3.28864232e-02 5.70113063e-01\\n3.05923551e-01 -2.21794099e-02 -4.29356657e-02 -1.01206535e-02\\n-2.90633291e-01 -2.93833345e-01 2.91792929e-01 1.42507821e-01\\n-1.79832801e-02 -2.77961284e-01 5.96094914e-02 8.56781006e-03\\n-1.92503572e-01 2.94639599e-02 -1.21581797e-02 2.57650942e-01\\n-4.94087309e-01 -3.40133756e-01 2.19089016e-01 9.27771479e-02\\n-1.98074311e-01 -3.33119124e-01 -4.20717038e-02 1.25107333e-01\\n9.90826711e-02 -1.52135466e-03 -5.68861842e-01 4.33658928e-01\\n-3.42078775e-01 -1.59071058e-01 3.34775239e-01 5.16615987e-01\\n1.23486966e-01 -6.02040648e-01 -2.54358351e-01 -1.72925562e-01\\n4.27933671e-02 -1.80797324e-01 -1.94736551e-02 -2.13368505e-01\\n3.85865420e-01 -4.73097712e-02 4.77422681e-03 4.85355318e-01\\n-6.55387104e-01 -3.95587049e-02 -2.18750030e-01 5.58237499e-03\\n-4.11192596e-01 -4.77760695e-02 -2.71876872e-01 -1.38512224e-01\\n-1.32361978e-01 4.09661174e-01 3.28550152e-02 2.40756124e-02\\n-9.90290940e-02 2.64150530e-01 -2.01560453e-01 1.04968637e-01\\n3.12396526e-01 1.75488651e-01 2.02447832e-01 3.45405906e-01\\n-4.69548881e-01 3.23275238e-01 1.70898482e-01 -2.66092062e-01\\n1.76185027e-01 1.11972116e-01 4.67801899e-01 1.37578890e-01\\n-1.36103958e-03 2.02677161e-01 -1.51316524e-01 2.16347933e-01\\n2.77863204e-01 -2.29205355e-01 7.41887931e-03 -7.47556835e-02\\n-1.54904678e-01 -7.94864595e-02 3.69605832e-02 3.00210983e-01\\n-2.28934377e-01 4.66917127e-01 2.48645455e-01 -1.53634951e-01\\n4.84108105e-02 -6.18979216e-01 -1.97858319e-01 -3.90853137e-02\\n-6.34250864e-02 1.03680804e-01 3.55034769e-01 1.38934612e-01\\n2.30153799e-01 1.33356348e-01 2.14993834e-01 9.48184609e-01\\n-9.60684344e-02 1.34332046e-01 -1.91521540e-01 4.42718744e-01\\n2.27070659e-01 -9.60380360e-02 1.29597291e-01 2.91562080e-01\\n9.07142237e-02 -6.79604486e-02 -1.30698845e-01 3.21554065e-01\\n-1.96740106e-01 -1.62336931e-01 -3.00839394e-01 4.67570126e-02\\n-2.30881751e-01 -3.78175676e-01 4.21992153e-01 2.14933470e-01\\n2.24276319e-01 6.22885115e-02 -1.29535735e-01 -1.47376478e-01\\n-7.71731436e-02 3.06255430e-01 -3.10579711e-03 2.24452630e-01\\n-4.21280921e-01 -1.68350056e-01 -2.57366657e-01 3.25396627e-01\\n-4.14102823e-02 -5.56321517e-02 -2.05037206e-01 -2.53207367e-02\\n4.03468192e-01 1.62803173e-01 -4.16183978e-01 1.73810244e-01\\n1.79960001e-02 -1.98173061e-01 -1.10953875e-01 3.22205514e-01\\n6.86136931e-02 4.19434272e-02 -2.71140020e-02 -2.32080355e-01\\n4.39068943e-01 1.63994372e-01 2.55078375e-01 -9.27375108e-02\\n3.19547594e-01 -2.37060875e-01 1.67243704e-01 1.43001735e-01\\n-7.64194608e-01 3.49804223e-01 -1.00723602e-01 -4.32931818e-02\\n6.64263666e-02 1.67375371e-01 4.36342418e-01 -2.97968328e-01\\n-3.43194455e-02 -1.25300348e-01 -4.11930978e-01 -4.39560980e-01\\n-3.20832789e-01 -6.17662631e-02 4.63308752e-01 -4.23120141e-01\\n-1.11471586e-01 8.72113630e-02 -4.06286538e-01 -6.50587380e-02\\n2.78680831e-01 1.50325269e-01 1.39742553e-01 1.23357274e-01\\n-9.99730602e-02 -6.45759463e-01 4.93513756e-02 -5.53170204e-01\\n-6.51424468e-01 2.03363642e-01 -3.37543935e-01 3.24965686e-01\\n4.90081795e-02 -4.96285930e-02 -7.64552057e-02 1.34767964e-01\\n-2.90950358e-01 -3.03710494e-02 2.14166567e-01 1.92777067e-01\\n3.22863340e-01 -1.06282458e-01 -4.95130479e-01 4.48232293e-01\\n-1.87311664e-01 6.10837579e-01 3.28270197e-01 -8.22558105e-01\\n5.51853120e-01 2.49696285e-01 2.08081752e-02 -2.43036106e-01\\n4.93680358e-01 -3.27291816e-01 1.03242129e-01 1.91898674e-01\\n-3.89319420e-01 -1.60931885e-01 2.79397696e-01 -1.38655543e-01\\n-1.91730037e-01 6.94694102e-01 3.00835699e-01 -9.12323967e-02\\n2.87442118e-01 -3.39344501e-01 -2.17560291e-01 2.39655245e-02\\n-6.08682372e-02 -2.26159245e-01 -3.42510402e-01 1.13443382e-01\\n-7.19419569e-02 -6.28250003e-01 -2.00320467e-01 -2.79967934e-01\\n-1.76502600e-01 -2.77691245e-01 -2.55579531e-01 4.62377936e-01\\n1.31371945e-01 8.09600353e-02 5.54099120e-02 4.61477004e-02\\n1.03529030e-02 -5.77242613e-01 -7.95560032e-02 1.20993666e-01\\n4.62944359e-01 1.34782940e-01 1.58111639e-02 -9.27790552e-02\\n-1.66906133e-01 4.92247909e-01 -4.08307552e-01 -2.80381382e-01\\n1.99652493e-01 2.28363305e-01 -2.96534915e-02 -2.97715645e-02\\n-2.62488071e-02 3.58998865e-01 -2.31767744e-01 9.31122452e-02\\n2.07621139e-02 -5.43867648e-02 3.57003689e-01 1.26718106e-02\\n-3.05724502e-01 -2.60966629e-01 -1.35750517e-01 2.38892213e-01\\n-5.42422473e-01 -2.27652848e-01 5.09047568e-01 3.12668264e-01\\n2.67595172e-01 2.59124547e-01 3.16894531e-01 -1.76190242e-01\\n-2.10237309e-01 -3.26757759e-01 1.36874944e-01 1.84106454e-01\\n3.07802893e-02 5.31448685e-02 -2.85138667e-01 -5.79706550e-01\\n-3.42623782e+00 -2.57639974e-01 1.77104592e-01 -2.89912045e-01\\n2.05162063e-01 -1.25140816e-01 4.01510037e-02 -4.77603301e-02\\n-2.84156770e-01 1.65888574e-02 -2.24702448e-01 -2.28117853e-01\\n1.78591125e-02 2.89764702e-01 1.17374370e-02 1.91709936e-01\\n5.03975041e-02 -2.23670229e-01 -2.35336404e-02 1.84431195e-01\\n-9.19547603e-02 -6.45670235e-01 1.31950900e-01 -1.88954771e-02\\n1.60361871e-01 1.86640397e-01 -3.48967224e-01 -9.66397766e-03\\n-1.56231850e-01 -2.50950754e-01 7.61029720e-02 -2.56303400e-01\\n-3.16909701e-02 2.40510955e-01 1.55150726e-01 -6.91247061e-02\\n-3.09370132e-03 -2.61119366e-01 -3.30378450e-02 -4.15529728e-01\\n1.77946866e-01 -4.46394265e-01 1.27670184e-01 -1.05741262e-01\\n7.21635878e-01 -3.20548564e-01 6.46116361e-02 1.13885358e-01\\n1.94188505e-01 1.89525098e-01 -8.98239613e-02 -4.34088521e-02\\n-2.05631226e-01 -3.64561498e-01 -1.50392577e-01 -2.38582268e-01\\n4.13422674e-01 4.58273172e-01 -1.70710593e-01 2.71493495e-02\\n8.72483850e-02 -3.68835688e-01 -2.82347411e-01 -4.49311376e-01\\n-3.16838205e-01 -8.17013755e-02 -6.21190786e-01 -4.69199389e-01\\n-1.47983313e-01 -4.81707752e-02 -2.40671426e-01 6.09202802e-01\\n-3.61060023e-01 -5.25859177e-01 -2.72691343e-02 -5.95469892e-01\\n6.58769161e-02 -3.23380083e-01 2.50169411e-02 -1.55658454e-01\\n-3.31984013e-01 -5.08418679e-01 1.17903545e-01 1.14932163e-02\\n-1.62465319e-01 -2.63561979e-02 3.66140902e-02 -2.13755623e-01\\n-3.63111049e-01 -3.36871862e-01 3.86156857e-01 -3.23000886e-02\\n3.42006117e-01 1.64944157e-01 2.64157563e-01 1.60016283e-01\\n3.51128548e-01 -1.43643394e-01 5.75878210e-02 -2.63508350e-01\\n9.05488357e-02 4.52248529e-02 6.50635481e-01 -3.15508306e-01\\n-1.96186788e-02 2.82834440e-01 -3.30466211e-01 -9.64236930e-02\\n4.18354869e-01 1.17020309e-02 -6.00626357e-02 -1.70579657e-01\\n3.74546766e-01 -5.14261365e-01 -2.39538118e-01 2.31087044e-01\\n2.99923774e-03 6.34977996e-01 6.66428953e-02 -3.83366704e-01\\n-2.90473938e-01 4.16613221e-01 -1.16571605e-01 -2.90686876e-01\\n-2.56845295e-01 1.41445801e-01 -1.74778581e-01 2.28649050e-01\\n1.25533268e-01 -2.03080118e-01 -3.58451247e-01 -5.99483326e-02\\n-2.37415009e-03 2.32676327e-01 2.51253366e-01 -2.57089012e-03\\n-1.98258199e-02 -1.62917003e-01 -1.18764773e-01 3.24689187e-02\\n1.94024220e-01 3.49367082e-01 1.86742589e-01 -2.12615997e-01\\n-4.00626361e-02 1.59869075e-01 -1.84370518e-01 1.65367633e-01\\n-1.62551686e-01 -5.09238569e-03 -4.79976833e-01 -3.55994195e-01\\n-1.11810304e-01 -3.18132609e-01 4.55938242e-02 3.09165448e-01\\n2.29074731e-01 -6.85298070e-03 -9.52612534e-02 -4.31866795e-01\\n4.39125836e-01 8.97091553e-02 3.31817776e-01 1.60687953e-01\\n5.46569936e-02 4.67481583e-01 -1.24708256e-02 -5.63992411e-02\\n-4.36708145e-02 -7.14600459e-02 -3.34591389e-01 -1.49619147e-01\\n1.38863757e-01 -3.11357796e-01 -1.15039617e-01 4.64470237e-01\\n1.22343995e-01 -1.66878000e-01 -1.22501962e-01 3.52641940e-01\\n3.69313136e-02 -1.39942616e-01 -2.11236015e-01 1.46495908e-01\\n2.09854782e-01 4.26724404e-02 1.90415129e-01 -4.06624377e-01\\n-7.45907519e-03 -5.45794098e-03 -1.45663843e-01 4.58337039e-01\\n9.51535776e-02 7.91616291e-02 -2.29619250e-01 -3.08905721e-01\\n4.10526097e-01 -2.26803422e-01 -1.50345191e-01 -6.14170395e-02\\n7.13979639e-03 -1.65313542e-01 -5.12980580e-01 -8.50594230e-03\\n-2.57864222e-02 -2.16652706e-01 1.82691664e-01 2.18039192e-02\\n1.32936582e-01 7.31126219e-03 -4.88532007e-01 -3.52014482e-01\\n-3.83595258e-01 -7.46418685e-02 1.78375453e-01 -3.41993362e-01\\n-1.23027631e-03 -1.00328781e-01 -7.07307339e-01 2.75399357e-01\\n-2.53393620e-01 3.64375673e-02 6.64788336e-02 2.21344620e-01\\n-3.87919247e-01 -5.72460331e-02 2.36454979e-01 1.10961460e-02\\n-3.45647871e-01 -1.05850652e-01 5.25349937e-02 -8.86347532e-01\\n1.55046687e-01 -1.84995215e-02 -8.42969492e-02 -5.45322634e-02\\n-1.12192012e-01 -5.35455704e-01 7.25509077e-02 -3.15937251e-01\\n-8.84019658e-02 5.44081107e-02 -1.66798398e-01 -4.16263640e-01\\n1.10183090e-01 -1.43082306e-01 -2.10641041e-01 4.75535512e-01\\n-3.96454722e-01 2.85692662e-01 1.84612498e-02 6.07071631e-02\\n7.44938180e-02 -3.49799603e-01 1.91862211e-01 -2.67542511e-01\\n-4.95829493e-01 -1.78072289e-01 -3.67329121e-01 -2.96086609e-01\\n8.14664289e-02 -3.12245935e-01 -1.74484134e-01 7.75493979e-02\\n2.32949644e-01 8.38425308e-02 4.21654545e-02 -2.32604727e-01\\n8.63509849e-02 -3.43068957e-01 1.83110610e-01 -2.44171441e-01\\n5.30973636e-02 2.89008021e-02 1.71390250e-01 -6.64871410e-02\\n3.74223739e-02 -2.35376567e-01 5.74966133e-01 -1.53920859e-01\\n-3.49559069e-01 -1.04342707e-01 7.04299510e-02 1.24070220e-01\\n2.55497396e-01 -4.30946201e-01 4.05236445e-02 1.78632215e-01\\n1.33616030e-01 1.31333634e-01 2.80095488e-01 -5.69849387e-02\\n-8.63757730e-02 2.42840976e-01 -5.11824846e-01 1.43571794e-01\\n7.96909571e-01 1.77939326e-01 7.18609989e-02 6.05499819e-02\\n1.81018770e-01 4.02316600e-01 6.38038993e-01 8.03692117e-02\\n-8.94313008e-02 3.78729910e-01 2.54143942e-02 -4.94806111e-01\\n-1.53936997e-01 -1.24556318e-01 -1.65885419e-01 -3.10592711e-01\\n5.07842422e-01 4.50095177e-01 -4.56072479e-01 -2.62396842e-01\\n-4.25777882e-02 -3.79710458e-02 1.31090984e-01 -4.72590178e-02\\n-3.33616696e-02 -2.39915505e-01 5.41548729e-01 1.03328619e-02\\n2.61459380e-01 5.08723617e-01 -2.03432173e-01 -3.36867899e-01\\n-1.22156158e-01 1.53257295e-01 1.90806285e-01 3.22494507e-01\\n-1.88110047e-03 2.31287509e-01 -6.89021647e-02 1.40960693e-01\\n-4.16624993e-02 3.67468186e-02 9.78776366e-02 -2.16810256e-02\\n1.78294957e-01 1.34170339e-01 2.24142402e-01 3.53844345e-01\\n2.83491403e-01 5.09663463e-01 2.05206499e-01 1.93228442e-02\\n4.50385094e-01 6.47124827e-01 3.66184801e-01 2.06926152e-01\\n1.13189239e-02 8.03468227e-02 -1.44448383e-02 -6.38912618e-02\\n3.67286593e-01 3.50150526e-01 1.92237616e-01 8.29155922e-01\\n3.20328772e-01 1.46881089e-01 6.99906826e-01 -5.96941710e-01\\n-4.20468062e-01 8.05909708e-02 4.10809785e-01 -2.56357491e-01\\n-1.08847864e-01 1.64834797e-01 -3.91001582e-01 2.53619045e-01\\n-4.20835257e-01 -1.14055730e-01 -5.26589155e-02 -5.44624403e-02\\n8.05206224e-02 -3.90173309e-02 -2.50499636e-01 5.13612516e-02\\n-2.59468019e-01 -1.98543802e-01 -2.86656767e-01 -8.94601867e-02\\n-3.80045712e-01 -1.51607081e-01 -6.88789226e-03 -1.48545370e-01\\n-6.99518668e-03 -4.33371812e-01 -2.12975621e-01 -1.95745975e-02\\n3.66152406e-01 -1.46261647e-01 -6.44944459e-02 -1.86123356e-01\\n-2.24388354e-02 3.83276045e-01 6.65033698e-01 -4.60890755e-02\\n1.84980780e-01 -2.06447378e-01 -2.17129931e-01 7.94143975e-02\\n6.88401535e-02 3.72105353e-02 4.87285219e-02 5.31002820e-01\\n-3.98630857e-01 -1.53744547e-03 1.11140005e-01 4.10521388e-01\\n-4.35798645e-01 -7.39716738e-02 -1.11880824e-01 3.03153604e-01\\n1.25727981e-01 1.97139785e-01 -3.18615019e-01 2.19469562e-01\\n-3.36157531e-01 -5.87719262e-01 3.97367001e-01 -1.42112792e-01\\n2.18525846e-02 1.52800441e-01 2.63327748e-01 1.58383697e-01\\n-2.67522991e-01 -7.42008686e-02 5.45852892e-02 3.68455827e-01\\n1.27233967e-01 3.65198791e-01 -3.58217061e-01 -5.32075502e-02\\n-1.87639788e-01 2.50360608e-01 -1.01450682e-02 1.93004787e-01\\n-1.92182183e-01 3.18927675e-01 1.16276972e-01 1.96226478e-01\\n1.61264166e-01 -7.74201006e-03 -1.50772929e-01 -3.40490013e-01\\n-2.49975815e-01 -1.55658543e-01 1.83007151e-01 -1.55558446e-02\\n1.60224006e-01 -4.80183542e-01 -4.78968434e-02 -8.43011364e-02\\n-1.86920613e-01 -4.58354652e-01 -5.21401502e-02 1.21805631e-02]]',\n", + " 'job_description': 'About our client Our client is one of the international leading providers of secure communication platforms and solutions for the next generation of mobile communication. Your responsibilities Regular execution of performance tests Automation of performance testing environments Analysis and presentation of test results, suggestions for improvements Bottleneck analysis, database queries optimization, etc. Full cooperation with the development team to improve the overall product performance Dimensioning and capacity planning for the solution Your profile Master university degree in computer science or equivalent work experience At least 3 years of experience with performance testing Excellent analytic thinking and preciseness Advanced Java knowledge with code profiling, JVM monitoring and tuning Working experience with MySQL/Percona/MariaDB and good knowledge of their internals (e.g., InnoDB engine, Galera replication, etc.) Working knowledge of Linux OS and its monitoring tools Experience with infrastructure deployment automation (e.g. monitoring and deployment using Puppet/Chef/Ansible and Graphite) Knowledge of statistics Fluent in English Your chance Are you interested? Then apply now! Ort: Zürich Spezialisierung: JAVA Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1297',\n", + " 'soft_skills': '[\"Presentations\", \"Communications\", \"Infrastructure\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Galera\", \"MySQL\", \"Automation\", \"Tooling\", \"Puppet (Configuration Management Tool)\", \"Capacity Planning\", \"Computer Science\", \"Statistics\", \"Database Queries\", \"Linux\", \"E (Programming Language)\", \"Test Automation\", \"MariaDB\", \"Executable\", \"Chef (Configuration Management Tool)\", \"Analytical Thinking\", \"InnoDB\", \"Performance Testing\", \"Java Virtual Machine (JVM)\", \"Ansible\", \"Secure Network Communications\", \"Dimensioning\", \"Graphite (Software)\", \"Java (Programming Language)\", \"Bottleneck Analysis\", \"SQL (Programming Language)\", \"Profiling (Computer Programming)\", \"Query Optimization\"]',\n", + " 'languages': \"['English', 'Central Khmer', 'Latin']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'big data/spark engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.08247542e-01 2.31795996e-01 5.07690728e-01 2.15499327e-01\\n6.39641523e-01 -1.80837587e-01 -2.42910534e-01 2.05270618e-01\\n6.81032613e-02 -4.56488371e-01 -5.55087626e-02 -2.32204020e-01\\n-1.20247580e-01 6.25318512e-02 -6.54416382e-02 3.83164227e-01\\n3.54464412e-01 1.28045883e-02 -6.50804639e-02 3.72120678e-01\\n3.64708528e-02 -6.95785508e-02 5.09506613e-02 8.33609819e-01\\n2.60781795e-01 -5.56108989e-02 -2.40294524e-02 1.22337840e-01\\n-2.59663582e-01 -1.85927868e-01 3.39075804e-01 1.20859765e-01\\n-2.21114069e-01 -4.45232630e-01 6.20348006e-02 1.99150205e-01\\n-2.44912326e-01 2.15405375e-02 -7.17084408e-02 1.55942947e-01\\n-4.20176148e-01 -1.84351593e-01 -1.27598912e-01 3.70255001e-02\\n-3.22722137e-01 -3.58836293e-01 -2.12725252e-02 -1.29031867e-01\\n7.81545714e-02 2.39076838e-02 -4.76100028e-01 2.71858841e-01\\n-2.19930261e-01 -2.26962656e-01 2.40505785e-01 6.76981926e-01\\n3.15245613e-02 -4.26282018e-01 -5.00358462e-01 -3.36714119e-01\\n7.11330026e-02 -8.99462774e-02 1.01468429e-01 -3.49203229e-01\\n2.86823690e-01 5.11036813e-03 -3.29463743e-02 2.20849037e-01\\n-8.27230453e-01 -4.34976295e-02 -2.67707199e-01 1.61274448e-02\\n-5.21562338e-01 -9.45441127e-02 -2.56457448e-01 -1.18740499e-01\\n-9.07180607e-02 5.16877532e-01 9.28491652e-02 1.61562085e-01\\n-2.50543594e-01 2.67287999e-01 -2.63746709e-01 3.06004971e-01\\n2.68332720e-01 2.12616652e-01 3.10116589e-01 3.45089376e-01\\n-4.86461341e-01 4.67585921e-01 1.73763216e-01 -3.26676279e-01\\n2.86604017e-01 9.29690376e-02 3.42475533e-01 2.82518640e-02\\n2.00618356e-01 2.09291637e-01 -1.67347252e-01 3.52929175e-01\\n2.15926558e-01 -3.59394193e-01 2.40589213e-02 -1.39136046e-01\\n-8.94624740e-03 -8.02108049e-02 2.68610194e-03 1.16329640e-01\\n-3.86477530e-01 3.51273298e-01 1.12071887e-01 -2.35143930e-01\\n-1.11597247e-01 -4.56508964e-01 -8.82475153e-02 -7.13257864e-03\\n7.22553954e-03 1.70091420e-01 2.63477266e-01 1.57337874e-01\\n1.93398982e-01 1.84208490e-02 1.67795181e-01 8.52066278e-01\\n-7.12043941e-02 9.80755687e-02 -1.96436554e-01 4.20176178e-01\\n2.18004972e-01 -3.30089569e-01 2.71699727e-01 1.91834748e-01\\n-3.90764922e-02 -1.49430513e-01 -2.48072535e-01 2.96457291e-01\\n-2.70407964e-02 -1.33645415e-01 -2.52736926e-01 1.90905735e-01\\n2.73119640e-02 -3.35931003e-01 6.63635075e-01 7.38568678e-02\\n1.50661618e-01 -9.29107517e-02 7.01680407e-03 -1.71091527e-01\\n-1.09687790e-01 2.61298299e-01 5.63690402e-02 2.86445141e-01\\n-3.10963452e-01 -2.33559132e-01 -1.18632220e-01 2.47523487e-01\\n-3.84164572e-01 9.65968072e-02 -1.85459137e-01 -6.83654472e-02\\n1.68779731e-01 4.74224575e-02 -3.62813234e-01 8.47976506e-02\\n-1.10326432e-01 -1.93157047e-01 4.94038463e-02 2.83295870e-01\\n-2.21056104e-01 1.97139919e-01 -6.36348967e-04 -3.73530276e-02\\n6.13529980e-01 2.79359728e-01 2.92255282e-01 -2.46288702e-02\\n2.87658304e-01 -1.13076717e-01 1.26443684e-01 1.78609192e-01\\n-6.73825681e-01 3.84390712e-01 -4.76324596e-02 -1.87373936e-01\\n7.13876486e-02 -1.08887777e-02 3.16349804e-01 -2.61249602e-01\\n3.80762760e-03 -1.58052832e-01 -3.62426072e-01 -2.40824223e-01\\n-2.10803747e-01 -4.16489318e-02 3.91981602e-01 -5.35388112e-01\\n-5.43197468e-02 3.18961173e-01 -5.31809092e-01 -1.89905226e-01\\n1.56166509e-01 2.22047120e-01 1.52261883e-01 -1.55416057e-02\\n-9.38130617e-02 -5.70211112e-01 5.52827902e-02 -4.17227030e-01\\n-3.02402854e-01 2.57823113e-02 -2.61736900e-01 1.22255102e-01\\n4.69229883e-03 3.12589668e-03 -1.50731832e-01 1.44857287e-01\\n-3.02397251e-01 -1.35404151e-02 1.96527883e-01 8.20491910e-02\\n3.93124580e-01 6.33319318e-02 -3.84598017e-01 4.44820821e-01\\n-3.26753199e-01 5.01536369e-01 2.10532233e-01 -9.37517285e-01\\n5.99034309e-01 3.00365567e-01 -6.07616305e-02 -3.85130256e-01\\n4.78431821e-01 -4.76025194e-01 -4.54422436e-04 1.40490100e-01\\n-3.14652026e-01 -2.13530809e-01 2.88239837e-01 -1.05826735e-01\\n-2.49496639e-01 6.47490978e-01 -2.94865551e-03 1.03766032e-01\\n2.51507998e-01 -2.94830978e-01 -1.39646128e-01 -1.65035501e-02\\n-1.64638251e-01 -2.78221220e-01 -6.84535146e-01 4.89793718e-03\\n-1.21157438e-01 -4.90176737e-01 -1.67851076e-01 -4.06260729e-01\\n-2.32010588e-01 -2.90079236e-01 -2.38044009e-01 2.04944164e-01\\n2.57651508e-01 1.32148013e-01 -1.57518879e-01 4.91404906e-02\\n-6.41166419e-02 -6.21647358e-01 -3.49879749e-02 1.27177209e-01\\n4.32576746e-01 2.83053100e-01 1.54670790e-01 -7.17661828e-02\\n1.62650466e-01 6.25156999e-01 -3.22139174e-01 -3.96485031e-01\\n6.50667548e-02 1.96854800e-01 -8.17412436e-02 -1.56226560e-01\\n1.42870292e-01 3.13650787e-01 -2.37995625e-01 8.12020153e-03\\n7.19960034e-03 1.27064735e-02 3.52273554e-01 7.44335353e-03\\n-1.96977645e-01 -2.01293483e-01 -1.00268573e-01 2.13205367e-01\\n-6.13397896e-01 -1.86979070e-01 5.65048814e-01 1.99828178e-01\\n3.32873575e-02 1.32529378e-01 2.04330534e-01 1.70596018e-02\\n-2.83830673e-01 -1.72008872e-01 3.88564467e-01 9.60233808e-02\\n1.48682773e-01 1.01653591e-01 8.36778525e-03 -6.38726473e-01\\n-3.40883303e+00 -2.30462015e-01 1.84052646e-01 -2.47338727e-01\\n2.39281848e-01 -2.14260519e-01 6.28921166e-02 -4.88664620e-02\\n-2.50998348e-01 3.40968892e-02 -1.72814429e-01 -1.73174322e-01\\n2.20826194e-02 1.49629354e-01 1.82101011e-01 2.37171710e-01\\n1.88028246e-01 -1.56021446e-01 2.13607568e-02 3.91514540e-01\\n-2.00857073e-01 -6.71127081e-01 1.52192131e-01 4.35928106e-02\\n1.94052905e-01 9.66057703e-02 -3.76970947e-01 -4.61179279e-02\\n-3.19799662e-01 -2.32141256e-01 1.25606693e-02 -3.38132262e-01\\n-1.87689662e-01 3.17041159e-01 2.41352722e-01 -1.76207393e-01\\n1.05921969e-01 -2.89399385e-01 -1.63604558e-01 -4.16996300e-01\\n6.34419918e-02 -5.93445301e-01 7.74564892e-02 -1.81356862e-01\\n6.52160227e-01 -3.05068463e-01 1.55527562e-01 7.44187012e-02\\n2.40790248e-01 2.14253932e-01 1.56252593e-01 2.59192847e-02\\n-1.88618124e-01 -2.93381065e-01 -1.14334136e-01 -1.74804360e-01\\n5.98532677e-01 5.03645062e-01 -1.44101962e-01 1.92568935e-02\\n-1.18800271e-02 -1.98447704e-01 -4.21580702e-01 -3.33689809e-01\\n-1.49552509e-01 -1.68571800e-01 -6.41294360e-01 -4.03473020e-01\\n-1.93158671e-01 -7.17165470e-02 -1.02564342e-01 7.06679583e-01\\n-2.60323644e-01 -3.44354242e-01 -5.81443906e-02 -4.37046498e-01\\n2.54761070e-01 -2.23346427e-01 4.53234240e-02 -6.72288612e-02\\n-2.28335977e-01 -5.45118570e-01 1.18654244e-01 -8.90654922e-02\\n-1.29130721e-01 -1.91976547e-01 4.35904302e-02 -1.30162477e-01\\n-3.13044608e-01 -5.64507604e-01 4.34636861e-01 3.27280760e-02\\n3.68811429e-01 7.97757208e-02 4.23314095e-01 -1.31813101e-02\\n3.58244538e-01 -2.07008831e-02 -1.42248303e-01 -4.10258651e-01\\n7.46989623e-02 -4.04140055e-02 4.83184099e-01 -2.29483664e-01\\n1.53589509e-02 4.71685380e-02 -2.02130735e-01 2.41549257e-02\\n3.12455058e-01 -8.80870968e-03 1.01002783e-01 -1.03169873e-01\\n3.06556165e-01 -3.95881921e-01 -1.58473164e-01 1.95368439e-01\\n1.25041083e-01 6.30329788e-01 -4.44194600e-02 -3.73514652e-01\\n-1.46184251e-01 3.57682467e-01 -4.06747162e-02 -1.06483370e-01\\n-2.20282629e-01 1.07288979e-01 -2.77346194e-01 2.60700732e-01\\n-1.05116796e-03 -1.46603674e-01 -3.13481987e-01 -1.05250806e-01\\n-8.19871277e-02 2.57958502e-01 2.72276282e-01 7.40796477e-02\\n-5.79699464e-02 -2.79590666e-01 -8.36595986e-03 1.29918814e-01\\n3.14173222e-01 4.64640170e-01 2.27505267e-01 -2.08548665e-01\\n-2.32695863e-02 3.49206805e-01 -2.71768689e-01 2.09220588e-01\\n-2.37268269e-01 1.23735614e-01 -6.00836456e-01 -2.02454776e-01\\n-2.57654965e-01 -4.19843495e-01 1.61877856e-01 3.73372495e-01\\n1.47686422e-01 -7.84001648e-02 2.51766928e-02 -4.45630103e-01\\n2.62499958e-01 1.74096867e-01 1.44732207e-01 3.52637023e-02\\n8.28053802e-03 6.93126500e-01 6.27800226e-02 -1.89244717e-01\\n-1.40930235e-01 2.63986681e-02 -1.18499637e-01 -3.10618460e-01\\n1.01215035e-01 -5.47829568e-01 -1.92491114e-01 4.03863847e-01\\n2.08225057e-01 -2.50975668e-01 -2.79967129e-01 3.37112248e-01\\n-2.73203887e-02 -2.58915812e-01 -2.57701218e-01 -7.27014709e-03\\n3.25961351e-01 1.10789746e-01 2.66634971e-01 -5.23473382e-01\\n-1.57746822e-01 7.51889646e-02 4.70008366e-02 4.34031337e-01\\n1.26972437e-01 1.50932103e-01 4.49455380e-02 -1.37006268e-01\\n5.22908270e-01 8.27380568e-02 -1.57272160e-01 -4.54451777e-02\\n8.01657885e-02 -1.76417619e-01 -4.59239244e-01 1.13194317e-01\\n7.02392012e-02 -2.99876750e-01 1.39320996e-02 1.05446279e-01\\n1.68887526e-01 1.60032026e-02 -6.18985772e-01 -2.84545004e-01\\n-3.91011119e-01 -1.10534370e-01 7.91987628e-02 -5.80472112e-01\\n3.66193615e-03 -1.08854502e-01 -5.77886045e-01 2.70096213e-01\\n-1.18214250e-01 -8.08485970e-02 7.01831430e-02 7.14182854e-02\\n-1.63745910e-01 -1.54541060e-01 8.73373747e-02 2.95210600e-01\\n-3.60262126e-01 -2.64701009e-01 5.05418852e-02 -1.01634669e+00\\n1.65685445e-01 8.94840062e-02 -1.86727986e-01 1.20674014e-01\\n-1.61471069e-02 -6.81688607e-01 9.64287594e-02 -4.21150506e-01\\n-1.69627607e-01 -1.22993952e-02 -2.87024677e-01 -3.04457426e-01\\n1.36308819e-01 -4.26788777e-02 -3.04632604e-01 4.38294202e-01\\n-3.58185768e-01 3.17368209e-01 -6.32788911e-02 6.49528354e-02\\n8.12146217e-02 -1.67480290e-01 1.69395477e-01 -2.62316048e-01\\n-4.40227717e-01 -3.40559959e-01 -2.70070314e-01 -3.02517295e-01\\n-2.26188637e-02 -3.35748136e-01 -9.12295952e-02 -2.92932168e-02\\n4.22660530e-01 1.73581809e-01 -1.81824028e-01 -3.55043352e-01\\n8.87860209e-02 -4.96617258e-01 7.79114738e-02 -1.24089554e-01\\n-6.62564859e-02 -1.08450115e-01 1.38393477e-01 6.18134141e-02\\n1.42531097e-01 -3.21131945e-01 4.38298017e-01 -3.29791814e-01\\n-2.69131243e-01 -1.64394200e-01 6.86998740e-02 8.81655738e-02\\n2.38311306e-01 -3.85418922e-01 3.63033004e-02 3.03153992e-01\\n2.45654374e-01 6.42747134e-02 2.28441432e-01 -1.31591290e-01\\n-2.38574892e-02 2.96150863e-01 -3.68910462e-01 1.41023010e-01\\n8.46527934e-01 9.48617011e-02 1.38801381e-01 2.37876385e-01\\n2.41052955e-01 2.72992074e-01 4.89751935e-01 -3.61392908e-02\\n-6.80491403e-02 3.30488145e-01 6.22310676e-02 -3.47451061e-01\\n-5.90303466e-02 -1.19871147e-01 -1.50533020e-01 -4.29576218e-01\\n6.02295578e-01 3.78315151e-01 -4.88971174e-01 -2.67461360e-01\\n-1.89870849e-01 -1.06084853e-01 2.92157590e-01 -7.85756484e-02\\n-4.74730581e-02 -1.06530204e-01 4.39867526e-01 -1.10935733e-01\\n2.83126771e-01 5.72443724e-01 -2.03138709e-01 -3.19971889e-01\\n-2.17168313e-02 1.56396240e-01 2.47604162e-01 4.53571707e-01\\n-2.89345145e-01 2.36071065e-01 -2.18012519e-02 1.60131022e-01\\n-1.46323591e-01 1.61584631e-01 2.49932110e-01 1.10463522e-01\\n2.26018339e-01 -3.17756832e-02 4.92574185e-01 4.95783627e-01\\n2.40881205e-01 4.22222733e-01 4.23355401e-01 -2.91714929e-02\\n4.50779796e-01 6.24181032e-01 3.39135319e-01 8.69047195e-02\\n-2.99975798e-02 1.37670726e-01 1.48635849e-01 -9.99520719e-02\\n2.79643744e-01 4.86781001e-01 1.13222256e-01 8.68086696e-01\\n3.92106950e-01 4.04552341e-01 6.62222564e-01 -6.17080808e-01\\n-3.77365589e-01 3.98384109e-02 4.73802269e-01 -3.90451163e-01\\n-3.75041105e-02 8.43430758e-02 -2.81165451e-01 1.56228215e-01\\n-5.06851017e-01 -1.84138820e-01 -4.34812456e-02 5.43425195e-02\\n7.20871836e-02 -9.52041447e-02 -2.14099675e-01 1.25054121e-01\\n-3.10577769e-02 -1.01137742e-01 -3.96161079e-01 -8.47912580e-02\\n-2.83776402e-01 -4.96029779e-02 1.22009665e-02 -4.17151637e-02\\n-4.38448712e-02 -3.62115920e-01 -2.25929543e-02 -6.75187707e-02\\n2.08292559e-01 -1.34927928e-01 -1.33137569e-01 -1.28726855e-01\\n2.89957732e-01 1.93753809e-01 5.19462049e-01 6.83760494e-02\\n5.50446399e-02 -2.84820199e-01 -2.54280925e-01 1.36913940e-01\\n1.29251897e-01 4.51861992e-02 -1.93468109e-02 3.51282120e-01\\n-2.71862447e-01 -1.60170257e-01 2.04873756e-01 2.48101294e-01\\n-3.30449104e-01 4.29738909e-02 -1.65898025e-01 1.13079593e-01\\n5.22401296e-02 1.53852731e-01 -2.12032989e-01 -3.13155726e-02\\n-2.46620074e-01 -6.13209367e-01 3.97020102e-01 -1.75713718e-01\\n-9.39587429e-02 1.02836251e-01 2.56085634e-01 2.26512343e-01\\n-3.32940012e-01 -5.96431680e-02 2.94785947e-04 1.58428833e-01\\n1.20609440e-02 2.99338281e-01 -1.22441150e-01 -2.82858133e-01\\n-3.26080024e-01 2.29760721e-01 -6.99198544e-02 1.74302936e-01\\n-9.48989391e-03 3.76675904e-01 -4.39033583e-02 1.23578668e-01\\n3.59761894e-01 4.43524159e-02 -2.57656753e-01 -2.76704818e-01\\n-2.25956440e-01 -6.30828291e-02 -3.47759835e-02 -2.65054926e-02\\n1.74919456e-01 -3.04374039e-01 -1.42208651e-01 -1.03374600e-01\\n-1.42178416e-01 -3.70490432e-01 2.73623429e-02 -1.37706369e-01]]',\n", + " 'job_description': 'Unit8 is looking for Big Data/Spark Engineer to join our team. You will use Spark (pyspark) and a full set of other Big Data tools to understand the data and drive the development of ETL pipelines in the financial sector in Zurich. Our perfect candidate has already a background in working with financial data and data modelling or is willing to pick up financial domain knowledge. He/she is capable of translating complex technical and business requirements into readable, maintainable and efficient Spark pipelines that fit in the bigger picture of complete data platform. RequirementsWhat You’ll Do Design, build, maintain, and troubleshoot data pipelines that are relied on for both production and analytics applications using modern tools like Spark/Cloudera. Use your skills in Big Data and basic Data Science to harness the heterogenous financial data and enable other teams to use it Use software best practices in continuous integration and delivery, supervise code and data evolution (code reviews, versioning) Drive optimization, testing and tooling to improve data quality. Closely collaborate with other software engineers, data scientists and business owners, learning from them but also driving the discussions to analyze the nature of current problems in order to propose, implement and test proper solutions Work in multi-functional agile teams to continuously experiment, iterate and deliver on new product objectives. Who You Are You know how to work with high volume heterogeneous data, preferably with distributed systems such as Hadoop You know how to write distributed services in Python/jvm based languages You are happy to work with more junior developers - code reviewing, mentoring You are happy to work with business stakeholders - requirement gathering, prioritization You are knowledgeable about data modeling, data access, and data storage techniques. You appreciate agile software processes, data-driven development, reliability, and responsible experimentation You understand the value of teamwork. BenefitsWhat We Offer Competitive salary Sharing our profit - we offer equity Yearly bonus depending on performance of the company Work with state-of-the-art technology on projects with impact Challenging work close to a customer inside an experienced 10x engineering team Tailor-made mentorship program Dedicated budget for training 10% of the time for self-development Who We AreUnit8 is a Swiss-based startup focused on solving problems of big industries like chemical, pharma, automotive and finance. Our team comprised of world-class experts in ML and Software Engineering who previously worked for Sillicon Valley companies like Google, Amazon, Palantir or Microsoft. We work with some of the biggest companies in the world to solve the problems that directly affect their business. Apart from that, Unit8 dedicates a part of resources and time on things that deeply matter to us - that includes collaboration on pro-bono and engineering for good cases.',\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Mentorship\", \"Supervision\", \"Reliability\", \"Prioritization\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Data Quality\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Stakeholder Requirements\", \"Data Modeling\", \"Analytic Applications\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Pyspark\", \"Naturalization\", \"Python (Programming Language)\", \"Maintainability\", \"Data Pipeline\", \"Translations\", \"Experimentation\", \"Iterators\", \"Pipelining\", \"Software Engineering\", \"Extract Transform Load (ETL)\", \"Building Design\", \"NetApp Data Storage\", \"Data Science\", \"Budgeting\", \"Business Requirements\", \"Financial Data\", \"Finance\", \"Logical Data Models\", \"Readability\", \"Close Work Orders\", \"Big Data\", \"Code Review\", \"Equities\", \"Java Virtual Machine (JVM)\", \"Data Management Platforms\", \"Resourcing\", \"Agile Model Driven Development\", \"New Product Development\", \"Process Driven Development\", \"Agile Unified Process\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'data analyst',\n", + " 'location': 'Chiasso',\n", + " 'industry': 'Film Production & Distribution',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.38149607e-01 2.12852880e-01 5.54565072e-01 7.74446726e-02\\n5.90422690e-01 -5.07920608e-02 -1.11888032e-02 1.51384220e-01\\n-8.76617357e-02 -3.32557529e-01 -6.27142489e-02 -1.80280969e-01\\n6.76233880e-03 1.01418659e-01 4.53740098e-02 4.77790743e-01\\n2.11669892e-01 -8.31534807e-03 -1.46940216e-01 3.01756352e-01\\n2.34398499e-01 1.00015663e-02 2.94445455e-03 6.40289307e-01\\n4.87266839e-01 -4.11698371e-02 -1.35547474e-01 -1.15632471e-02\\n-2.72088438e-01 -2.69771934e-01 4.78497654e-01 2.26774830e-02\\n-2.30391636e-01 -2.26873815e-01 -5.37410472e-03 8.19530264e-02\\n-3.66986781e-01 -1.10001275e-02 -1.12134963e-01 1.66520134e-01\\n-3.81010771e-01 -2.20596179e-01 -1.18746981e-01 -2.79099476e-02\\n-4.60540146e-01 -3.57416749e-01 -1.34639174e-01 -3.96952853e-02\\n1.07431635e-02 6.70751631e-02 -4.74763513e-01 3.79682690e-01\\n-2.19794884e-01 -2.62366831e-01 1.70072228e-01 8.25430393e-01\\n1.97134599e-01 -4.92436260e-01 -3.56618553e-01 -3.26189071e-01\\n1.21640824e-01 -1.40193626e-01 2.07844585e-01 -2.25834176e-01\\n4.23753589e-01 -8.02325010e-02 -6.48332611e-02 3.46908212e-01\\n-7.65331745e-01 2.92398743e-02 -2.41225988e-01 1.97413983e-03\\n-3.52103800e-01 1.34175017e-01 -5.27944386e-01 -2.52336293e-01\\n-5.89859448e-02 5.41121423e-01 1.16814785e-02 6.59462363e-02\\n-1.60551324e-01 1.47678450e-01 -2.86848962e-01 2.11204022e-01\\n1.85841709e-01 2.08210677e-01 3.45193595e-01 2.67590165e-01\\n-5.16483963e-01 3.50221336e-01 3.85842025e-01 -3.70797306e-01\\n2.73933381e-01 1.79630637e-01 4.03135926e-01 1.11813337e-01\\n8.55037570e-02 1.96594685e-01 -1.18598402e-01 2.03542039e-01\\n2.36077592e-01 -2.03969762e-01 -3.04210116e-04 -4.88952287e-02\\n-3.87686640e-02 -1.18685454e-01 -4.73618582e-02 8.41772631e-02\\n-2.95252591e-01 4.75520045e-01 -5.04566655e-02 -2.24889025e-01\\n-4.40934524e-02 -5.03349841e-01 -5.79555593e-02 -7.18935728e-02\\n1.06629334e-01 3.77004594e-01 2.57671356e-01 2.03708544e-01\\n2.26748288e-01 6.77864030e-02 2.86337733e-01 7.93014944e-01\\n-4.58151586e-02 1.05087906e-01 -2.63087988e-01 3.66162360e-01\\n1.94100082e-01 -1.00710645e-01 1.58674389e-01 7.72588551e-02\\n-1.75476432e-01 -1.01312019e-01 -3.49074513e-01 2.66808182e-01\\n-2.00405166e-01 -2.49301448e-01 -2.49950260e-01 1.12715952e-01\\n-1.99616060e-01 -4.86044198e-01 4.49547589e-01 -6.23036325e-02\\n2.18831345e-01 -2.22845241e-01 3.25092988e-04 -2.56824773e-02\\n-5.02134785e-02 3.97722930e-01 9.20681432e-02 7.24966526e-02\\n-2.12524772e-01 -3.15903634e-01 -1.68724030e-01 2.24141508e-01\\n-2.58459985e-01 2.93522105e-02 -1.04997247e-01 1.28438342e-02\\n2.19086289e-01 2.19529375e-01 -4.73772287e-01 1.04929976e-01\\n-1.11654110e-01 -3.47639292e-01 -2.49251593e-02 3.37305129e-01\\n-1.47402957e-01 1.48362964e-01 6.31393120e-02 -2.27549553e-01\\n6.03551209e-01 1.74302712e-01 3.45455557e-01 7.61069506e-02\\n2.94259906e-01 -2.22531080e-01 1.46529347e-01 2.37130284e-01\\n-6.23151600e-01 4.43485528e-01 -1.55365273e-01 -3.56491953e-01\\n1.28196016e-01 6.42251447e-02 3.26360881e-01 -2.52412796e-01\\n1.82596043e-01 -1.94200411e-01 -2.15825140e-01 -5.06402910e-01\\n-1.79254591e-01 2.48463843e-02 4.18379486e-01 -4.65203822e-01\\n3.60530540e-02 2.00677574e-01 -4.74377960e-01 -2.17853859e-01\\n2.16211841e-01 1.11762360e-01 1.56247512e-01 2.12106317e-01\\n-2.75916252e-02 -4.66336310e-01 1.60286739e-01 -4.38865513e-01\\n-4.60602939e-01 1.90611318e-01 -3.54077667e-01 1.30366296e-01\\n1.15324669e-01 1.36907201e-03 -9.63207185e-02 4.72051911e-02\\n-3.68924022e-01 -4.07267287e-02 1.78667024e-01 1.43545598e-01\\n2.61467367e-01 6.21263012e-02 -4.75833744e-01 5.70281804e-01\\n-2.78852820e-01 4.67560172e-01 2.21588627e-01 -9.83033001e-01\\n4.90477622e-01 1.80314779e-01 -2.98965480e-02 -1.99029759e-01\\n5.82079113e-01 -3.86446536e-01 -7.63201341e-02 1.20203041e-01\\n-1.18384190e-01 -1.57224387e-01 2.95399398e-01 -1.86327919e-01\\n-2.44353712e-01 6.01786971e-01 2.36909300e-01 1.46838039e-01\\n2.53157824e-01 -1.61264494e-01 -3.31677824e-01 5.45360409e-02\\n-1.36292875e-01 -2.76681393e-01 -5.78074634e-01 1.07087284e-01\\n-1.16597712e-01 -5.29382527e-01 -8.17509964e-02 -5.05293310e-01\\n-1.53840512e-01 -5.05189955e-01 -1.28748119e-01 2.08358571e-01\\n2.42010638e-01 2.35019431e-01 -1.50914252e-01 1.24556366e-02\\n-2.38559693e-02 -5.87309718e-01 -1.85862094e-01 4.32619378e-02\\n3.91286910e-01 3.21221560e-01 1.00895330e-01 -2.10041255e-02\\n1.29592255e-01 5.88878989e-01 -2.91328520e-01 -3.25157017e-01\\n2.62268573e-01 8.25000331e-02 -1.79945394e-01 -2.94671088e-01\\n8.03272799e-02 2.45287284e-01 -1.09925836e-01 1.72894657e-01\\n9.51674953e-02 2.50143111e-02 2.77092904e-01 -7.10275099e-02\\n-1.68340385e-01 -1.42645225e-01 -1.31187692e-01 3.19387704e-01\\n-4.32836324e-01 -1.90610811e-01 5.88323772e-01 2.30586082e-01\\n4.99614514e-02 1.35580510e-01 8.12382028e-02 -6.93436638e-02\\n-3.48507524e-01 -1.04025051e-01 2.11222559e-01 5.10759801e-02\\n1.81408748e-01 7.28858560e-02 -3.54932398e-02 -5.88429272e-01\\n-3.40289950e+00 -3.32470387e-01 7.85404146e-02 -2.74100631e-01\\n2.18741745e-01 -2.61070609e-01 1.34377778e-01 8.68248101e-03\\n-3.67111355e-01 3.17968987e-02 -2.10541129e-01 -1.39615908e-01\\n7.43147358e-02 2.43852407e-01 9.69320983e-02 1.88089594e-01\\n1.71452463e-02 -1.96222171e-01 -1.54119385e-02 4.33891565e-01\\n-5.51851317e-02 -6.21944904e-01 1.07423216e-01 1.45503029e-01\\n2.11701140e-01 -6.25489056e-02 -4.39763427e-01 1.17345765e-01\\n-2.64257044e-01 -2.60373443e-01 1.36874542e-01 -1.29512265e-01\\n-2.35253349e-01 3.12920541e-01 1.41774639e-01 -9.51308757e-02\\n9.80277210e-02 -3.77572894e-01 -3.46104093e-02 -4.51977998e-01\\n3.52210701e-02 -6.51019931e-01 6.35705218e-02 -1.31862368e-02\\n5.93065321e-01 -2.32162029e-01 2.14713529e-01 9.54260901e-02\\n1.53369650e-01 8.50713179e-02 5.72051294e-02 -3.30890007e-02\\n-3.70765150e-01 -2.65341312e-01 -8.62429217e-02 -2.46560752e-01\\n7.17375338e-01 2.86840379e-01 -3.09495717e-01 4.23219353e-02\\n1.89084455e-01 -1.71135068e-01 -4.30560231e-01 -4.61305261e-01\\n-1.93452820e-01 -9.79751814e-03 -5.64219832e-01 -4.34993476e-01\\n-1.19108967e-01 -1.75926939e-01 -1.74924299e-01 6.28420591e-01\\n-2.00322986e-01 -3.21912527e-01 -5.06970175e-02 -4.38216895e-01\\n3.58603299e-01 -1.24829613e-01 6.04954697e-02 -1.92125201e-01\\n-4.47905302e-01 -3.36468965e-01 2.69833028e-01 4.95460741e-02\\n-2.17165872e-01 -5.96456288e-04 1.00138232e-01 -2.12977976e-01\\n-5.15004516e-01 -4.27742541e-01 4.65796590e-01 -1.22498490e-01\\n4.01974916e-01 1.71083361e-01 4.01310444e-01 9.31361765e-02\\n3.28548998e-01 -1.87925383e-01 9.69661996e-02 -5.11283100e-01\\n9.26292166e-02 7.32403472e-02 6.17983520e-01 -2.14253053e-01\\n9.66667980e-02 -9.46716685e-03 -2.43321449e-01 1.29464990e-03\\n4.59418327e-01 -7.22381175e-02 2.03681350e-01 -7.67657859e-03\\n2.39033267e-01 -2.76156694e-01 -2.20740810e-01 1.46999657e-01\\n1.35129437e-01 7.20522642e-01 -1.18372003e-02 -2.92955816e-01\\n-2.16937304e-01 2.94286698e-01 -2.00921535e-01 -1.25651076e-01\\n-2.95645982e-01 4.97483872e-02 -2.32350662e-01 3.79253000e-01\\n1.43093169e-02 -1.12403899e-01 -3.21700752e-01 -1.80571467e-01\\n-3.80800664e-02 1.58555701e-01 3.63040656e-01 -8.97138715e-02\\n-7.20688552e-02 -2.94582278e-01 -7.25387409e-02 1.28338352e-01\\n3.50423306e-01 3.00292462e-01 1.98763087e-01 -2.86371469e-01\\n-7.60660022e-02 1.31471783e-01 -3.01662624e-01 2.97120124e-01\\n-3.25154632e-01 2.59853780e-01 -6.58265293e-01 -2.71341950e-01\\n-1.14746958e-01 -3.67323130e-01 2.70229816e-01 3.06636333e-01\\n1.85640156e-01 -1.48014188e-01 6.37765154e-02 -5.54762483e-01\\n2.41104409e-01 4.15450037e-02 2.29346320e-01 3.33544277e-02\\n2.92247590e-02 6.82974935e-01 -5.41973077e-02 -1.58082783e-01\\n-3.70879173e-02 -3.57148163e-02 -2.48219773e-01 -3.07637006e-01\\n-1.71753213e-01 -4.99070674e-01 -2.33896866e-01 5.89169383e-01\\n1.94027573e-01 -1.01706274e-01 -1.76878631e-01 3.68113518e-01\\n-5.79065122e-02 -2.49609336e-01 -1.12928867e-01 -2.97409482e-02\\n2.71567881e-01 2.31146663e-01 2.31538415e-01 -4.92011040e-01\\n6.02773689e-02 -4.97626839e-03 -9.31991637e-02 4.66773421e-01\\n6.85764402e-02 3.60571556e-02 2.14156844e-02 -1.21898346e-01\\n6.14952862e-01 -1.52369276e-01 -9.95755047e-02 6.55921102e-02\\n7.69764408e-02 -3.04804653e-01 -3.37626904e-01 -3.55847850e-02\\n-3.87881771e-02 -3.79064590e-01 1.10738657e-01 2.08260685e-01\\n-1.89622436e-02 2.15952843e-02 -4.87457365e-01 -2.02925235e-01\\n-3.95221204e-01 -1.15116687e-04 9.00863484e-02 -5.51045597e-01\\n-7.50061544e-03 -3.97703983e-02 -6.21905506e-01 2.52165020e-01\\n5.96419489e-03 -8.71499628e-02 7.04007572e-04 5.91974407e-02\\n-1.44005701e-01 -1.25019625e-01 3.38560373e-01 1.98422477e-01\\n-2.24783137e-01 -2.20628977e-01 1.28247425e-01 -9.15271163e-01\\n9.76620540e-02 1.93567798e-01 -1.53008357e-01 1.20959766e-01\\n4.91970778e-02 -5.29274940e-01 3.26737940e-01 -4.79616940e-01\\n-6.89852461e-02 -4.75270897e-02 -2.38689661e-01 -4.42184150e-01\\n2.46909529e-01 1.52817413e-01 -2.30463028e-01 3.73967826e-01\\n-3.38222742e-01 4.49786752e-01 1.23107031e-01 -1.40323332e-02\\n8.86442289e-02 -2.50173360e-01 1.53406650e-01 -2.49623358e-01\\n-4.09712315e-01 -1.65738851e-01 -3.10625196e-01 -2.91869730e-01\\n-7.19121322e-02 -2.55407512e-01 -1.25474676e-01 -2.68792007e-02\\n3.03301543e-01 2.53720909e-01 -1.03353985e-01 -1.86840892e-01\\n5.13642281e-02 -5.45175552e-01 2.14024454e-01 -2.08808839e-01\\n-9.49892551e-02 -5.51625602e-02 2.14699760e-01 2.36911490e-03\\n1.26159474e-01 -1.98572576e-01 6.06348693e-01 -2.18807518e-01\\n-4.18961465e-01 -1.73661187e-01 1.20434664e-01 1.54408365e-01\\n3.35194588e-01 -3.82975519e-01 -1.18794598e-01 2.50081360e-01\\n5.40934354e-02 5.98458126e-02 3.04101318e-01 -2.13782698e-01\\n-2.55616039e-01 2.03356430e-01 -5.51714897e-01 1.27289608e-01\\n7.25632250e-01 1.33732975e-01 1.88798696e-01 1.88592389e-01\\n2.00784460e-01 1.93091035e-01 4.37869072e-01 -1.04626395e-01\\n-1.48373172e-01 3.51962477e-01 1.00411564e-01 -5.79532504e-01\\n-8.19096193e-02 -2.11182654e-01 -1.30349785e-01 -3.32569480e-01\\n5.88449895e-01 2.86809564e-01 -3.12303334e-01 -3.85551214e-01\\n-2.58021563e-01 -3.93161923e-03 3.45213681e-01 1.42844524e-02\\n-2.81501804e-02 6.25147717e-03 5.62359333e-01 -1.36418566e-01\\n4.47655201e-01 4.79111075e-01 -1.54884279e-01 -2.08057523e-01\\n-2.84904763e-02 1.75190181e-01 5.88216707e-02 5.35362780e-01\\n-1.75222248e-01 2.15409279e-01 1.18696848e-02 1.23092495e-01\\n-1.07222326e-01 -9.89648923e-02 3.80108029e-01 5.53783923e-02\\n1.74870208e-01 1.47867829e-01 3.77402782e-01 3.01737517e-01\\n1.55507088e-01 3.95431936e-01 3.04984927e-01 3.81979556e-03\\n3.56433690e-01 6.55488431e-01 1.40427992e-01 1.51776075e-01\\n1.05838478e-01 -2.77978685e-02 1.46516711e-01 -8.33807439e-02\\n1.70682639e-01 4.64491487e-01 1.26944721e-01 7.93600619e-01\\n3.10802490e-01 3.69408250e-01 6.19980037e-01 -6.88356102e-01\\n-4.39137936e-01 1.91148631e-02 5.55646122e-01 -3.64469528e-01\\n7.78956804e-03 1.95564985e-01 -2.59237468e-01 2.44021147e-01\\n-5.68714201e-01 -1.40316978e-01 -4.75701615e-02 -7.14225695e-02\\n1.90099016e-01 -1.25549659e-01 -2.13974163e-01 2.15678871e-01\\n-5.15355356e-02 -1.80212110e-01 -3.89927804e-01 -2.18300208e-01\\n-2.38127321e-01 -8.99356529e-02 -4.35105339e-02 9.61688161e-02\\n-1.36115015e-01 -2.94012159e-01 -1.20098732e-01 -5.36609739e-02\\n3.03400338e-01 -1.56379715e-01 -1.86595738e-01 -8.88280496e-02\\n1.60746828e-01 1.99016884e-01 6.38710141e-01 2.25816965e-02\\n1.03761971e-01 -1.37438521e-01 -1.32459417e-01 -1.24917766e-02\\n1.95770845e-01 -1.08611614e-01 -5.10375900e-03 5.37195981e-01\\n-3.37896377e-01 -2.20316932e-01 -3.24509479e-02 1.72011942e-01\\n-4.69907373e-01 -4.48745564e-02 6.06302954e-02 1.46277815e-01\\n-5.80988778e-03 2.42020428e-01 -2.80274659e-01 7.40841776e-02\\n-1.52766228e-01 -5.75809658e-01 2.88002551e-01 -8.73554945e-02\\n-2.82912612e-01 -1.20374328e-02 1.97796017e-01 1.75703824e-01\\n-2.20229015e-01 -1.49473369e-01 -5.41104935e-02 1.53688252e-01\\n4.69293967e-02 2.80852884e-01 -1.78425685e-01 -2.41739750e-01\\n-3.28268290e-01 2.96966016e-01 3.99281792e-02 3.00957292e-01\\n-1.75359286e-02 3.61858815e-01 4.08480950e-02 3.30049157e-01\\n1.86315447e-01 2.27617342e-02 -2.64187068e-01 -2.89263874e-01\\n-9.94643718e-02 -1.76507905e-01 6.81010541e-03 -8.43258426e-02\\n2.17222288e-01 -2.90454596e-01 5.88175515e-03 -3.45394164e-01\\n-3.50374758e-01 -5.95274925e-01 -4.50894386e-02 -7.38337636e-02]]',\n", + " 'job_description': 'Job Descriptionlm group is looking for a Data Analyst for its Data & Analytics department team based in Chiasso. The candidate will act within Data & Analytics department perimeters supporting, inspiring and delivering data integrations, data models, analysis, reports and dashboards to help the business look data in a comprehensive way, take proper decisions and steer directions of the units. Key Responsibilities Understand stakeholders business areas and take ownership of their data need, collect/support business requirement definition - be able to influence and partner with them leveraging on an in-depth cross-functional data knowledgePerforming analysis with the aim of providing insights and summaries to direct manager, the rest of the team and other functionsData model creation, design of ETL activities and use of data exploration and reporting tools to create report, analysis and testsWriting documents for mapping of data flows according to business rules Skills and Experience Essential 1-2 years of experience in a similar role in a fast-paced environmentKnowledge of statistical analysis techniquesDemonstrable ability to work creatively and analytically with a strong attitude for problem solvingStrong knowledge in SQL like languagesFluent in English both written and verbalGood interpersonal, communication and presentation skillsGood knowledge of Google Work Suite Desirable Bachelor or master degree in Statistics, Mathematics,, Engineering or Physics or PhysicsExpertise with BI tools (e.g:. Tibco Spotfire, QlikView, Business Objects, Tableau, Power BI, Cognos Analytics, SAS Visual Analytics)Expertise with workflow management tools (e.g.: Talend, Data Stage, Informatica, Rundeck)Expertise with analytical databases (e.g.: Vertica) and NoSQL DBsGood knowledge in analytics and web analytics techniques, enabling to support the business, guiding company growth efforts and key business outcomesKnowledge and application of a programming language (e.g: Python, R, JAVA)Previous experience in the travel industry Abilities/qualities Analytical and data driven mindset: improve the business providing insights coming from dataPassionate about digital world, ambitious and motivated with a can-do attitudeOpen minded and proactiveness in problem solvingStrong communication skills with willingness to challenge existing processes and applicationsStrong team player and excellent communicator Qualifications null Additional Information null',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Decisiveness\", \"Proactivity\", \"Interpersonal Communications\", \"Management\", \"Communications\", \"Presentations\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Tableau (Business Intelligence Software)\", \"Vertica\", \"NoSQL\", \"Data Explorers\", \"KM Programming Language\", \"Collections\", \"Analytics\", \"SAS (Software)\", \"TIBCO Designer\", \"Staging\", \"Industrialization\", \"Statistical Coupling Analysis\", \"Mathematical Statistics\", \"Activism\", \"Python (Programming Language)\", \"Talend\", \"E (Programming Language)\", \"Visual Analytics\", \"Extract Transform Load (ETL)\", \"Rundeck\", \"Dashboard\", \"Power BI\", \"Business Objects Framework\", \"QlikView (Data Analytics Software)\", \"Business Requirements\", \"Cross-Functional Coordination\", \"Spotfire (Data Analytics Software)\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Physics\", \"Perimeter\", \"E-Tools\", \"Web Analytics\", \"Workflow Management\", \"Mapping\", \"Additives\", \"Java (Programming Language)\", \"Informatica\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\", \"Reporting Tools\"]',\n", + " 'languages': \"['English', 'South Ndebele', 'Venda', 'Central Khmer']\"},\n", + " {'company_id': '55',\n", + " 'job_title': 'software engineer – infrastructure',\n", + " 'location': 'Lugano',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.00879031e-01 2.93186873e-01 3.91317397e-01 -1.03268325e-01\\n4.78794605e-01 -1.63716614e-01 -1.24025993e-01 2.78238416e-01\\n-6.44701272e-02 -3.18700671e-01 -7.58499131e-02 -1.74116194e-01\\n-1.89848706e-01 1.01615131e-01 1.67488351e-01 3.75592083e-01\\n7.28601813e-02 1.78860985e-02 -1.73786789e-01 4.24716145e-01\\n2.16276094e-01 2.71240622e-02 -1.07081458e-01 6.44125879e-01\\n3.15437347e-01 5.05755246e-02 -5.42306490e-02 -5.84535860e-02\\n-3.49566609e-01 -1.99953839e-01 2.56783605e-01 6.70977086e-02\\n1.96225531e-02 -3.30467224e-01 1.08449347e-01 2.42889076e-02\\n-2.29073167e-01 -5.94328903e-02 -3.90555374e-02 2.29642987e-01\\n-3.40409666e-01 -4.15655464e-01 5.97661510e-02 8.12869519e-02\\n-1.48136511e-01 -2.05082506e-01 7.47181177e-02 -3.82940099e-02\\n5.89827774e-04 -8.48522335e-02 -6.36883378e-01 3.25887978e-01\\n-1.50449380e-01 -2.98596263e-01 2.88268328e-01 5.38708150e-01\\n1.01485834e-01 -5.24987757e-01 -1.54847637e-01 -2.85892755e-01\\n-1.14543185e-01 -3.50345345e-03 4.57349531e-02 -1.50619000e-01\\n3.75841975e-01 7.53906788e-03 1.35511905e-03 5.05759835e-01\\n-7.84257889e-01 -9.27326009e-02 -1.27454743e-01 8.22741687e-02\\n-3.21160525e-01 1.42420497e-04 -1.32573649e-01 -5.03220595e-02\\n-2.40474250e-02 3.39716822e-01 3.41495313e-02 2.46226862e-02\\n-1.69638231e-01 2.87897348e-01 1.65269598e-02 2.04493821e-01\\n4.02450442e-01 2.36347482e-01 7.48850852e-02 3.92977804e-01\\n-3.39092374e-01 3.55543703e-01 2.47102734e-02 -1.09525576e-01\\n1.88436851e-01 2.02240899e-01 5.58090806e-01 2.57104754e-01\\n-7.99437333e-03 1.26798749e-01 -2.11416706e-01 2.19073489e-01\\n1.39928490e-01 -2.47061670e-01 3.79527397e-02 -2.11745803e-03\\n-1.67742223e-01 -7.72309601e-02 -9.44179222e-02 4.14851397e-01\\n-2.27359101e-01 2.94415325e-01 2.77031094e-01 -1.16150575e-02\\n-4.84739244e-02 -6.33450627e-01 -6.82621896e-02 -6.77805319e-02\\n9.44998041e-02 2.23461345e-01 2.79766053e-01 1.96791470e-01\\n1.20394945e-01 2.21997783e-01 2.04271674e-01 1.04545474e+00\\n-3.14405672e-02 1.30599171e-01 -1.79279611e-01 2.89214373e-01\\n2.56017148e-01 -2.04995364e-01 1.33666202e-01 3.32151592e-01\\n2.34139726e-01 -1.66957349e-01 -1.12822250e-01 3.86550277e-01\\n-1.50696322e-01 -8.32101330e-02 -3.40334445e-01 8.20770711e-02\\n-3.26552123e-01 -4.50612068e-01 4.32520688e-01 1.72729358e-01\\n2.65590787e-01 7.00112954e-02 -1.12124145e-01 -5.71813285e-02\\n-1.32182136e-01 4.17161673e-01 -1.36189863e-01 2.00398117e-01\\n-3.94227594e-01 -2.32892543e-01 -2.65055507e-01 3.24277580e-01\\n1.94085333e-02 2.17623770e-01 -2.80663036e-02 -1.22584902e-01\\n3.84874254e-01 -1.05298301e-02 -4.64051157e-01 1.62944660e-01\\n-7.85158500e-02 -2.75155514e-01 -1.40553564e-01 1.35943472e-01\\n-1.63567178e-02 1.68804660e-01 -3.54842730e-02 -2.26342067e-01\\n4.01549637e-01 9.38663911e-03 2.06304863e-02 -1.38568610e-01\\n3.02643180e-01 -1.90038607e-01 2.58602947e-01 2.33357385e-01\\n-7.79680669e-01 2.28618413e-01 1.83338230e-03 -2.30762839e-01\\n-6.24184161e-02 6.95198402e-02 4.03260529e-01 -3.76663059e-01\\n4.90600877e-02 -8.83588344e-02 -5.29202044e-01 -3.57074797e-01\\n-3.48177403e-01 4.85689677e-02 4.90368754e-01 -2.28337407e-01\\n-1.97726265e-01 1.56603396e-01 -4.55536842e-01 -6.93446994e-02\\n1.95589215e-01 4.90938239e-02 5.23668975e-02 -1.92485955e-02\\n-1.23538025e-01 -6.17735505e-01 -1.30851611e-01 -4.73395258e-01\\n-4.96935308e-01 9.46354792e-02 -2.57593751e-01 2.05382109e-01\\n9.74708796e-02 8.88068452e-02 3.13008651e-02 7.31329471e-02\\n-2.58341074e-01 -1.69609636e-01 2.72056669e-01 1.95337325e-01\\n3.00849140e-01 -3.00326869e-02 -3.81042659e-01 3.68223310e-01\\n-1.41485795e-01 6.92153692e-01 2.43943647e-01 -7.69371688e-01\\n6.31583691e-01 2.05738083e-01 6.82776570e-02 -5.04139245e-01\\n3.87583196e-01 -3.35701734e-01 1.33027285e-01 2.38910377e-01\\n-2.80704081e-01 -2.22749725e-01 2.28209972e-01 -1.55083522e-01\\n-3.29826891e-01 5.61209142e-01 1.56247288e-01 -1.28462151e-01\\n3.26708049e-01 -3.72736812e-01 3.36158983e-02 1.22877941e-01\\n-2.56286263e-02 -2.63898283e-01 -2.63618708e-01 1.44047424e-01\\n-9.48781222e-02 -5.00595927e-01 -1.52707145e-01 -2.55044729e-01\\n-1.97757691e-01 -3.34501833e-01 -1.93009913e-01 6.02746010e-01\\n7.68776983e-02 2.11635008e-01 1.11528002e-01 -4.46646959e-02\\n-1.07868664e-01 -6.05864823e-01 -1.57366246e-01 2.32590437e-02\\n4.55449015e-01 1.69754624e-01 2.43884269e-02 -1.47687703e-01\\n-1.59047142e-01 4.01418388e-01 -4.28975642e-01 -3.23695570e-01\\n1.07912615e-01 6.90169856e-02 -7.20065981e-02 -7.71670565e-02\\n1.73102003e-02 2.38392562e-01 -1.88736975e-01 1.10893138e-01\\n-2.04206035e-01 3.82827297e-02 2.22324267e-01 -5.50262891e-02\\n-2.91198194e-01 -4.14358139e-01 3.97748388e-02 3.50211859e-01\\n-5.15438914e-01 1.82694849e-02 5.84305644e-01 3.86929184e-01\\n2.27325216e-01 1.33536994e-01 2.65554458e-01 -2.44909897e-01\\n-3.12612474e-01 -3.36751431e-01 1.46923047e-02 3.15787226e-01\\n1.04217216e-01 2.15013735e-02 -1.71257675e-01 -6.16138995e-01\\n-3.46713924e+00 -1.93301052e-01 2.10031301e-01 -2.07476407e-01\\n1.69475362e-01 -1.26025841e-01 -1.88950039e-02 -3.53714600e-02\\n-2.33969301e-01 -2.87974030e-02 -3.69860321e-01 -8.93848613e-02\\n-2.42614243e-02 4.09246206e-01 1.66151851e-01 2.65335411e-01\\n7.07896501e-02 -1.83095276e-01 -1.39254153e-01 3.00904304e-01\\n-1.94392174e-01 -6.19301975e-01 1.11721240e-01 -6.54913187e-02\\n2.41897032e-01 9.04766396e-02 -4.36451584e-01 -7.91861266e-02\\n-1.65939137e-01 -1.55749217e-01 -2.86726677e-03 -2.13719219e-01\\n-7.01692402e-02 2.79045135e-01 1.80733837e-02 5.08422144e-02\\n1.14969879e-01 -1.59121975e-01 3.51332538e-02 -4.39557374e-01\\n-6.27788827e-02 -4.98567462e-01 -3.39253470e-02 -1.71872228e-01\\n6.59773350e-01 -3.86580676e-01 1.53439745e-01 8.71985853e-02\\n2.36954257e-01 2.12036982e-01 -2.15092361e-01 2.88824667e-03\\n-2.06664979e-01 -2.81206608e-01 1.96247753e-02 -2.78526068e-01\\n3.92579943e-01 6.37125134e-01 -2.56244302e-01 3.20588686e-02\\n1.38102338e-01 -2.77370691e-01 -3.24303627e-01 -5.99954844e-01\\n-2.45553732e-01 -1.67872697e-01 -8.09775829e-01 -4.80559677e-01\\n-9.27682668e-02 5.57722151e-02 -2.77839214e-01 5.80034375e-01\\n-4.61603671e-01 -5.49676895e-01 5.37728257e-02 -6.60362124e-01\\n-1.48893967e-02 -2.39232764e-01 6.95940033e-02 -1.50372148e-01\\n-2.75305599e-01 -4.36389297e-01 1.79174632e-01 -2.66638640e-02\\n-2.32112467e-01 -7.29342997e-02 2.64724847e-02 -4.31868285e-01\\n-3.33787382e-01 -2.96306759e-01 3.55388194e-01 1.82731822e-01\\n2.57711589e-01 1.22675538e-01 3.77857834e-01 4.52391468e-02\\n3.50659311e-01 -1.07281409e-01 1.37129828e-01 -3.18001330e-01\\n2.20700189e-01 -1.83648709e-02 5.41036308e-01 -3.50027502e-01\\n6.09605946e-02 3.58645976e-01 -2.61133105e-01 -1.08122624e-01\\n4.89372790e-01 7.29590505e-02 -2.53005847e-02 -1.19581163e-01\\n3.83681297e-01 -6.37967885e-01 -2.56187499e-01 3.02944511e-01\\n6.42761439e-02 5.80740988e-01 1.77910313e-01 -4.58288223e-01\\n-3.97374719e-01 4.02542263e-01 -1.14063472e-01 -2.51584977e-01\\n7.01158047e-02 2.22222611e-01 -2.47803312e-02 1.56336799e-01\\n1.49435177e-01 -2.45852709e-01 -3.88448298e-01 -3.64366956e-02\\n-2.88377376e-03 1.35575101e-01 1.75859213e-01 -1.34832412e-01\\n-1.03112653e-01 -1.22031204e-01 -3.78820710e-02 3.63153294e-02\\n2.02119753e-01 2.13538945e-01 1.67728022e-01 -3.20858240e-01\\n1.06952675e-01 2.63561010e-01 -1.07260503e-01 1.80178538e-01\\n-1.90651059e-01 -3.21749039e-02 -3.79539311e-01 -3.60461771e-01\\n-2.92769372e-02 -2.89781660e-01 4.04551104e-02 2.00645357e-01\\n1.21491902e-01 -2.21123779e-03 2.21114308e-02 -5.50375700e-01\\n4.33755368e-01 2.21633743e-02 1.70349032e-01 1.90832749e-01\\n1.01743355e-01 5.09069443e-01 8.50913823e-02 -3.16508114e-02\\n-1.28230691e-01 -1.78902075e-01 -2.77893186e-01 -3.07526469e-01\\n6.95318282e-02 -3.47837031e-01 -6.79813325e-02 4.49735999e-01\\n9.83924344e-02 -3.83342206e-01 -1.76466197e-01 3.50526214e-01\\n2.00574055e-01 -1.81934759e-01 -7.84528032e-02 6.54289722e-02\\n2.51233399e-01 1.86822750e-02 2.19002098e-01 -3.69453162e-01\\n-3.07673905e-02 9.28495377e-02 -7.56931677e-02 4.58273828e-01\\n3.47311378e-01 3.89679009e-03 -2.08536431e-01 -1.76302195e-01\\n4.58923221e-01 -1.23154871e-01 -5.91280498e-03 -2.05564216e-01\\n4.69516702e-02 -1.32719114e-01 -4.13890392e-01 1.62447691e-01\\n5.50124086e-02 -8.15157220e-02 8.06250274e-02 -8.07496235e-02\\n1.36916637e-01 -2.86610387e-02 -4.20104235e-01 -2.98656136e-01\\n-3.37828279e-01 -1.96709454e-01 1.80388913e-01 -2.43398353e-01\\n2.01923400e-02 8.52477700e-02 -6.56238735e-01 1.99699700e-01\\n-2.64420927e-01 1.25517324e-01 7.42155686e-02 1.42937839e-01\\n-3.03225577e-01 7.98135400e-02 5.34233153e-02 3.85028943e-02\\n-4.53491926e-01 -1.94671988e-01 2.70261150e-02 -9.74631250e-01\\n6.65682331e-02 -7.66236261e-02 9.40824393e-03 1.14252483e-02\\n-3.37707587e-02 -5.66168427e-01 1.99193791e-01 -4.40826386e-01\\n5.04017062e-02 1.68569401e-01 -1.71417952e-01 -4.21216071e-01\\n4.89115417e-02 -1.16364248e-01 -2.85581082e-01 4.42956597e-01\\n-5.01606703e-01 1.50286421e-01 1.17784612e-01 -2.47211792e-02\\n7.88761377e-02 -3.69431317e-01 2.02608258e-01 -2.65531957e-01\\n-4.03134644e-01 -1.08709678e-01 -3.43860686e-01 -1.39599085e-01\\n1.24647722e-01 -2.48197094e-01 -2.75886297e-01 1.18766770e-01\\n1.85462266e-01 1.42471671e-01 3.56539823e-02 -2.15658531e-01\\n1.34770572e-01 -2.79345363e-01 8.64735246e-02 -1.25774384e-01\\n-6.48249164e-02 1.20532081e-01 1.17231280e-01 -1.51869193e-01\\n3.61631177e-02 -2.31839910e-01 5.80160201e-01 -2.75261730e-01\\n-3.89089018e-01 -4.63009402e-02 2.69977842e-02 2.59587876e-02\\n3.00831139e-01 -4.15258884e-01 7.68277934e-03 2.38041312e-01\\n1.35940179e-01 -4.23567295e-02 2.50154495e-01 -1.02111273e-01\\n-6.99340552e-02 5.91482520e-02 -4.61507529e-01 5.96984252e-02\\n7.70102501e-01 1.17011242e-01 -3.14755850e-02 2.10223675e-01\\n8.15835297e-02 4.50068951e-01 4.52602684e-01 -9.18183774e-02\\n-7.12006986e-02 2.26993382e-01 5.87383583e-02 -4.99704361e-01\\n-9.72609445e-02 -2.50003844e-01 -1.67176172e-01 -1.97197720e-01\\n6.97801113e-01 4.70982462e-01 -3.04457128e-01 -2.08735168e-01\\n-7.25482479e-02 -1.89349130e-01 2.06093788e-01 -8.18968266e-02\\n-4.73494381e-02 -2.35091895e-02 5.78519821e-01 -3.08102984e-02\\n3.02670270e-01 4.66560930e-01 -2.38135278e-01 -4.34572309e-01\\n-1.09416001e-01 6.20297752e-02 1.08913675e-01 3.00506949e-01\\n-2.07963195e-02 3.11317265e-01 1.28179276e-02 9.26745385e-02\\n6.71412284e-03 6.13207445e-02 1.66868046e-01 -3.61097255e-03\\n2.78235048e-01 1.06410727e-01 1.77996550e-02 5.14176905e-01\\n1.24909259e-01 4.76623207e-01 3.16883922e-01 1.94185615e-01\\n3.43783319e-01 5.46812057e-01 4.46297884e-01 1.82734951e-01\\n5.96060567e-02 -4.68132943e-02 3.98530997e-02 -9.10039544e-02\\n4.55725998e-01 2.51346052e-01 3.44859511e-01 8.16920877e-01\\n3.29367936e-01 2.14782894e-01 7.78392732e-01 -6.70003235e-01\\n-3.85428339e-01 9.29093286e-02 4.82959777e-01 -3.44925046e-01\\n-1.25408113e-01 8.58220458e-02 -2.41764829e-01 1.66485399e-01\\n-5.78623474e-01 -9.24738348e-02 -2.86182649e-02 -9.08896625e-02\\n-8.81325174e-03 -3.48114334e-02 -2.86627918e-01 -1.63740069e-01\\n-1.73640594e-01 -2.34352484e-01 -1.87768996e-01 -1.47904441e-01\\n-2.90678680e-01 -1.45760730e-01 -4.97637577e-02 8.18882789e-03\\n-1.45734906e-01 -4.97592241e-01 -3.21818113e-01 1.17715396e-01\\n4.49432760e-01 -1.57377616e-01 -1.74466502e-02 -1.72294587e-01\\n-7.82589335e-03 3.52455467e-01 5.74620426e-01 -4.30326909e-02\\n1.46646231e-01 -1.62685096e-01 -2.04753563e-01 -1.72511884e-03\\n1.58810183e-01 -8.75630975e-03 6.10316806e-02 4.70520645e-01\\n-3.79225045e-01 2.03973040e-01 1.42406151e-01 2.75100172e-01\\n-4.41362977e-01 -1.60239324e-01 -1.55947730e-03 2.82590985e-01\\n4.11767662e-02 3.16154599e-01 -3.87521476e-01 1.47677600e-01\\n-3.44438523e-01 -5.26079834e-01 5.24405301e-01 -2.34351486e-01\\n-6.83412999e-02 1.53566837e-01 3.28152776e-01 1.14282914e-01\\n-2.03067213e-01 -5.59285916e-02 1.45715505e-01 2.76590496e-01\\n-6.31856248e-02 4.04603094e-01 -3.04258376e-01 -1.08718514e-01\\n-1.91801056e-01 3.90092880e-01 -6.51417673e-02 1.82144478e-01\\n-1.73569724e-01 3.82095128e-01 1.23801269e-01 1.74502939e-01\\n1.27364665e-01 6.34968802e-02 -5.40365130e-02 -2.22627968e-01\\n-2.57311881e-01 -4.27096128e-01 1.71497643e-01 2.96526961e-02\\n1.64752096e-01 -3.71100157e-01 -1.09345570e-01 1.18856607e-02\\n-1.66199088e-01 -3.77908051e-01 -2.34627366e-01 1.25755101e-01]]',\n", + " 'job_description': 'Lugano, Switzerland / Austin, TX Full Time Description Implement internal machine learning software infrastructure Integrate existing open-source tools in order to facilitate ML research Interface our proprietary platform with large data sets and customer platforms Contribute to the our proprietary code base Minimum Qualifications Masters in computer science 2 years in the industry, experience with IT systems Experience with parallel computing architectures “DevOps” Command of C/C++ and Python Knowledge of Unix environment, GNU/Linux Engineering mindset Large data management skills Fluent in written and spoken English Plusses Theoretical knowledge of machine learning methods (deep learning, reinforcement learning, evolutionary computation) Experience of machine learning frameworks (TensorFlow, PyTorch) Experience with containers and orchestration (Docker, Kubernetes, OpenStack) Experience with cluster environments (e.g. SGE, Condor) Experience with GPU programming (Cuda, OpenCL, Metal) Contact E-mail: jobs@nnaisense.com start subject with: [infrastructure engineer] submit both your cover letter and resume in English, PDF format',\n", + " 'soft_skills': '[\"Research\", \"Infrastructure\", \"Integration\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Tooling\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Computer Science\", \"Data Management\", \"Machine Learning\", \"Nvidia CUDA\", \"OpenStack\", \"Industrialization\", \"Component Object Model (COM)\", \"Association Rule Learning\", \"E (Programming Language)\", \"OpenCL\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Condor\", \"C (Programming Language)\", \"Metallization\", \"TensorFlow\", \"Deep Learning\", \"Parallel Computing\", \"Clinical Data Management\", \"SliTaz GNU/Linux\", \"PyTorch (Machine Learning Library)\", \"Unix\", \"Documentation Based Coding\"]',\n", + " 'languages': \"['English', 'Maldivian', 'Cree', 'Uzbek']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer – full stack java developer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.38020450e-01 2.89252847e-01 5.50936282e-01 -1.30269632e-01\\n6.12978935e-01 -8.19544271e-02 5.71732745e-02 3.72604609e-01\\n-1.01555577e-02 -2.83596218e-01 -1.40971750e-01 -3.23409617e-01\\n-3.14746574e-02 7.91962594e-02 1.81828246e-01 3.82863671e-01\\n1.36100456e-01 1.24225371e-01 -2.51341254e-01 2.05138013e-01\\n2.22766399e-01 3.69416066e-02 6.50205761e-02 6.44660056e-01\\n4.77383882e-01 4.81395796e-02 -8.17026719e-02 -5.71360067e-02\\n-3.49323899e-01 -2.90569216e-01 3.19683284e-01 -7.50034377e-02\\n-7.97010437e-02 -3.43942076e-01 -6.57866258e-05 6.16875663e-02\\n-2.29268506e-01 -1.57014519e-01 1.21674597e-01 2.21074298e-01\\n-4.57505256e-01 -3.14544857e-01 1.12679780e-01 1.93631779e-02\\n-1.70714349e-01 -2.40523934e-01 -8.86114612e-02 5.60749099e-02\\n7.20198750e-02 1.52499955e-02 -5.93267560e-01 3.58435810e-01\\n-1.65146336e-01 -1.77558690e-01 2.21322000e-01 6.25901818e-01\\n2.21056938e-02 -5.38928628e-01 -3.00852805e-01 -1.58400357e-01\\n1.26864061e-01 -5.99948466e-02 1.11612581e-01 -9.25844088e-02\\n3.34102780e-01 -1.37619432e-02 -1.06739715e-01 5.10814607e-01\\n-6.92016065e-01 -1.40844852e-01 -1.97262257e-01 -4.78972308e-02\\n-3.65765244e-01 4.41076234e-02 -1.77011207e-01 -1.83325410e-01\\n-1.10413872e-01 3.79701436e-01 8.56751204e-02 8.75183269e-02\\n-1.45346746e-01 2.47045785e-01 -5.86439371e-02 1.37468889e-01\\n3.10909122e-01 1.98889345e-01 1.72130585e-01 2.82537401e-01\\n-4.18444604e-01 3.42172325e-01 1.52799442e-01 -2.70126998e-01\\n1.99976727e-01 4.22309972e-02 4.70033348e-01 1.59599587e-01\\n-1.28056884e-01 1.97013989e-01 -1.58288538e-01 1.88701764e-01\\n2.81195015e-01 -2.75208771e-01 7.48789161e-02 5.58504313e-02\\n-2.01686770e-01 8.37526657e-03 -1.09921299e-01 3.29367876e-01\\n-2.90000677e-01 3.18743885e-01 3.01654547e-01 -1.13300286e-01\\n-8.77433270e-02 -6.64337516e-01 -9.70620513e-02 -1.85516838e-04\\n-2.09898055e-02 2.75159985e-01 3.50670427e-01 1.68694675e-01\\n1.86507478e-01 7.00895265e-02 2.44398564e-01 9.76149261e-01\\n1.92380685e-03 9.88360569e-02 -3.35690439e-01 3.56263638e-01\\n1.67176902e-01 -1.47717237e-01 1.53779745e-01 2.82772154e-01\\n5.43613359e-02 -6.97367936e-02 -9.91211683e-02 2.81315118e-01\\n-1.10305935e-01 -2.03170463e-01 -2.97168553e-01 1.00079319e-02\\n-3.55954051e-01 -2.92480677e-01 4.04611081e-01 1.52087316e-01\\n1.52592465e-01 -1.32529885e-01 -3.47781964e-02 -9.05324072e-02\\n-3.80969383e-02 4.63801235e-01 -5.51058911e-02 9.66308117e-02\\n-3.24663430e-01 -1.34776920e-01 -2.63138443e-01 3.39556366e-01\\n2.93166302e-02 2.77217720e-02 -2.56409366e-02 -9.49944779e-02\\n2.62268662e-01 1.05040252e-01 -3.00486475e-01 2.65005440e-01\\n2.03071535e-02 -3.78961802e-01 -2.18933553e-01 8.99778381e-02\\n-4.39079851e-02 6.25727326e-02 -8.24522134e-03 -4.00816560e-01\\n5.02790451e-01 1.50370613e-01 2.65438437e-01 -5.51680215e-02\\n2.77819335e-01 -3.14357042e-01 1.85936734e-01 1.34428054e-01\\n-5.75830758e-01 4.72359717e-01 -7.66385794e-02 -4.62857261e-02\\n-8.07601213e-03 9.18425620e-02 2.85387009e-01 -3.00662011e-01\\n4.30009589e-02 -1.23459332e-01 -3.70249748e-01 -4.44266140e-01\\n-2.42830873e-01 -4.30059172e-02 3.79342973e-01 -3.16577703e-01\\n-2.45095313e-01 1.59768596e-01 -4.31715161e-01 -2.09588334e-02\\n2.31050819e-01 8.41777772e-02 4.63253111e-02 6.70099854e-02\\n-1.96656346e-01 -4.68193501e-01 6.35992810e-02 -4.62202936e-01\\n-4.72822964e-01 2.01036185e-02 -1.33874133e-01 2.27562383e-01\\n4.64889174e-03 2.14723032e-02 -1.35936961e-01 1.53460860e-01\\n-2.88668931e-01 -1.71842519e-03 1.67433813e-01 1.95620060e-01\\n3.51910174e-01 -5.94950803e-02 -4.60408956e-01 4.08402652e-01\\n-2.20206290e-01 6.26231492e-01 2.14929655e-01 -8.86515319e-01\\n5.28552055e-01 2.28554472e-01 1.93027526e-01 -3.16511899e-01\\n5.78254580e-01 -3.11755955e-01 9.27779451e-02 1.54366255e-01\\n-2.71233976e-01 -1.94316059e-01 2.91994870e-01 -1.51084125e-01\\n-1.91353559e-01 6.21547043e-01 2.17407599e-01 -9.14107189e-02\\n2.34955773e-01 -2.88192898e-01 -8.78031775e-02 -2.75330115e-02\\n-9.50687677e-02 -2.10383937e-01 -2.65386373e-01 3.16576138e-02\\n-1.00774676e-01 -5.51855624e-01 -1.62710950e-01 -3.50965858e-01\\n-1.95501700e-01 -3.39059561e-01 -2.14682370e-01 4.42352951e-01\\n1.54243261e-01 4.29301374e-02 2.02507690e-01 1.44880516e-02\\n-8.83691460e-02 -4.96162862e-01 -1.59177035e-01 1.58905014e-01\\n4.77563828e-01 1.98162287e-01 1.08159751e-01 7.55139887e-02\\n-1.17749952e-01 4.81403738e-01 -1.87761173e-01 -2.59304792e-01\\n2.79184096e-02 1.78507432e-01 5.60347699e-02 -6.34062337e-04\\n-3.22487727e-02 3.08857769e-01 -1.69641554e-01 5.66251725e-02\\n-1.20917149e-01 8.68206024e-02 3.67467374e-01 8.29522163e-02\\n-2.21779063e-01 -1.41900405e-01 -2.14982461e-02 3.56089562e-01\\n-5.38258731e-01 -8.23074207e-02 5.42882860e-01 1.99035496e-01\\n1.48049146e-01 2.04901442e-01 2.06315845e-01 -7.74357393e-02\\n-2.19568953e-01 -2.29717135e-01 2.11249348e-02 1.82433113e-01\\n2.65084319e-02 -7.97534361e-02 -1.60047248e-01 -5.27031302e-01\\n-3.54178619e+00 -2.84901559e-01 1.38511434e-01 -3.77141625e-01\\n2.66091734e-01 -1.61941662e-01 3.50508019e-02 -4.56209332e-02\\n-2.60498703e-01 1.98321253e-01 -1.26741782e-01 -2.09564790e-01\\n1.85918793e-01 2.23036841e-01 -4.96789329e-02 3.86239737e-01\\n3.48385796e-02 -8.70032161e-02 -1.12861343e-01 2.36653149e-01\\n-1.76234245e-01 -6.99593663e-01 2.28095502e-01 -3.25627178e-02\\n2.24040374e-01 1.21776663e-01 -3.63060385e-01 -9.99307930e-02\\n-2.11064100e-01 -3.14668924e-01 8.01843628e-02 -3.25702131e-01\\n-1.03933245e-01 3.18474323e-01 9.80125517e-02 -8.81212205e-02\\n9.12363082e-02 -3.30125570e-01 -3.94337662e-02 -4.35465187e-01\\n1.10590704e-01 -6.15617812e-01 3.24216969e-02 -6.75836802e-02\\n7.63267577e-01 -4.59775120e-01 1.15445584e-01 1.85604662e-01\\n8.89748037e-02 2.28061393e-01 -8.58870000e-02 -7.81288221e-02\\n-2.05075026e-01 -3.31004113e-01 -2.39581540e-02 -2.22654447e-01\\n2.38349766e-01 5.83191991e-01 -1.46879256e-01 1.30760506e-01\\n7.04084113e-02 -2.82894731e-01 -3.51952612e-01 -4.48720038e-01\\n-1.92900524e-01 -2.12042451e-01 -7.14372218e-01 -3.52817953e-01\\n-2.63507478e-02 -1.27763420e-01 -2.23986119e-01 5.15876412e-01\\n-3.50340068e-01 -5.05989730e-01 3.27456780e-02 -4.80723232e-01\\n1.70539618e-01 -2.93665677e-01 1.12654055e-02 -1.21890225e-01\\n-3.82389784e-01 -3.94218206e-01 1.03041127e-01 -2.18628291e-02\\n-1.62893429e-01 -1.06765799e-01 -1.15785249e-01 -2.82497346e-01\\n-3.22430015e-01 -4.04749900e-01 4.86515909e-01 9.43618268e-02\\n3.42906654e-01 1.44595236e-01 2.50178367e-01 2.26239398e-01\\n2.27700219e-01 -2.86327422e-01 1.55903652e-01 -2.98213512e-01\\n8.98097605e-02 -6.50783554e-02 6.23444557e-01 -3.24934363e-01\\n2.44784385e-01 2.94484477e-02 -1.65272832e-01 -9.58171636e-02\\n4.27217513e-01 5.06709516e-02 -5.92720844e-02 -8.48875418e-02\\n3.08340430e-01 -5.63556671e-01 -2.87194073e-01 1.56728685e-01\\n-2.70848870e-02 5.61526060e-01 4.32400741e-02 -4.30436790e-01\\n-3.19916219e-01 4.05228764e-01 -1.55668736e-01 -3.17943841e-01\\n-2.48376131e-01 1.74195513e-01 -2.18273640e-01 2.07645729e-01\\n5.37468754e-02 -2.62315184e-01 -3.93784463e-01 -1.54407188e-01\\n3.67662124e-02 1.06552243e-01 2.84065425e-01 -1.28338067e-03\\n-1.05517050e-02 -2.82616377e-01 -1.75470859e-01 7.17858896e-02\\n3.25393707e-01 2.58180290e-01 2.06340641e-01 -1.98932976e-01\\n-2.50130780e-02 1.80420548e-01 -2.10632473e-01 1.36321381e-01\\n-2.50451237e-01 -4.11855653e-02 -4.22207087e-01 -4.31581616e-01\\n-1.77385402e-03 -2.87051439e-01 3.83492373e-02 3.00618708e-01\\n1.53480962e-01 1.05704344e-03 -4.22209734e-03 -4.89090115e-01\\n4.39332157e-01 -4.76558283e-02 2.43036523e-01 2.46567830e-01\\n6.78351000e-02 5.62839985e-01 3.25265005e-02 3.70239541e-02\\n-1.05156459e-01 -1.16570167e-01 -1.82399914e-01 -1.22748815e-01\\n-2.68969014e-02 -2.83407688e-01 -8.79672840e-02 4.69463587e-01\\n6.02037348e-02 -3.82131457e-01 -7.22853616e-02 2.86176860e-01\\n-5.75769786e-03 -1.82065234e-01 -1.39762893e-01 2.13512272e-01\\n2.61039108e-01 1.24260634e-01 3.30021769e-01 -4.70841229e-01\\n-1.41792908e-01 -1.62844155e-02 -1.22230940e-01 5.02285421e-01\\n1.52945101e-01 1.30606890e-01 -1.47797197e-01 -3.21403086e-01\\n4.32655990e-01 -1.13359578e-01 -1.38657540e-01 -2.77049895e-02\\n7.33215511e-02 -1.61464572e-01 -4.92186159e-01 -2.12933961e-03\\n2.45043039e-02 -2.11841419e-01 9.96652339e-03 -4.53871600e-02\\n1.83296740e-01 -4.92533743e-02 -4.47698474e-01 -3.66287172e-01\\n-2.59250969e-01 -3.34795490e-02 -5.90482056e-02 -3.13203156e-01\\n6.36998788e-02 -7.66855478e-02 -6.70806527e-01 3.07972938e-01\\n-3.21460545e-01 5.20851053e-02 5.89342564e-02 1.66582629e-01\\n-4.00910139e-01 -7.34523758e-02 2.07888693e-01 1.82939306e-01\\n-2.44174361e-01 -2.24472553e-01 1.03586391e-01 -8.82101655e-01\\n2.14485973e-02 -5.84667511e-02 4.45943736e-02 1.65245421e-02\\n1.21019013e-01 -4.58705485e-01 9.07473713e-02 -3.45605016e-01\\n1.72777269e-02 3.49135287e-02 -9.11911502e-02 -5.35429478e-01\\n1.54478639e-01 -1.87612772e-02 -1.72969714e-01 4.00750130e-01\\n-3.74087632e-01 2.72814661e-01 8.21048468e-02 5.22678643e-02\\n1.23135149e-02 -2.79991329e-01 2.20273837e-01 -2.73592830e-01\\n-4.19310778e-01 -2.50178427e-02 -4.32076931e-01 -1.83773890e-01\\n6.79792091e-02 -1.91945523e-01 -2.25047380e-01 4.83310893e-02\\n2.70755380e-01 1.79264903e-01 -9.16757509e-02 -1.81922391e-01\\n9.65546817e-02 -4.13502544e-01 1.43198624e-01 -2.28944674e-01\\n-6.36033807e-03 -1.20038107e-01 1.04245476e-01 -8.27134028e-02\\n-2.93544345e-02 -2.03951523e-01 5.26307523e-01 -1.93659887e-01\\n-3.62300992e-01 -5.81620485e-02 1.27072006e-01 6.64793253e-02\\n3.67500991e-01 -5.38610458e-01 9.27537307e-02 2.74419069e-01\\n6.41250163e-02 9.31206569e-02 2.74266213e-01 -8.19841772e-02\\n-1.69328630e-01 3.52548093e-01 -5.40599644e-01 2.51047313e-01\\n6.83496535e-01 1.49086371e-01 1.01109095e-01 1.65924579e-01\\n2.66905367e-01 2.78452963e-01 4.96260941e-01 8.16215277e-02\\n-6.46899343e-02 3.37262213e-01 -1.23044718e-02 -5.31052887e-01\\n-1.49271246e-02 -2.24097297e-01 -2.46348739e-01 -4.71074551e-01\\n5.32783747e-01 4.38686162e-01 -3.27105165e-01 -1.50508970e-01\\n-1.20658344e-02 -1.11432552e-01 1.29622698e-01 -1.81924134e-01\\n-1.33055234e-02 -1.01621732e-01 5.76984644e-01 -2.97110118e-02\\n4.50150192e-01 5.82568228e-01 -7.74706155e-02 -3.65792900e-01\\n-1.68011814e-01 7.37372637e-02 1.56098664e-01 3.56772333e-01\\n-4.81507145e-02 2.48289526e-01 -1.22198619e-01 1.91505447e-01\\n8.85055065e-02 2.59307865e-02 6.49932995e-02 6.00459240e-02\\n1.29552454e-01 1.85686871e-01 7.72312954e-02 3.46096784e-01\\n1.99982315e-01 5.07180095e-01 2.75846809e-01 1.46655455e-01\\n4.28752482e-01 6.38981879e-01 3.71005505e-01 1.67296156e-01\\n-2.58338898e-02 2.03597266e-02 -1.72940627e-01 -1.32870436e-01\\n2.78154433e-01 3.13985378e-01 1.53902113e-01 8.14617097e-01\\n3.22214395e-01 2.36675248e-01 7.02649891e-01 -6.05626881e-01\\n-5.17295718e-01 -2.69987248e-02 4.72564101e-01 -2.55426794e-01\\n-1.98075294e-01 1.39499515e-01 -2.86522985e-01 1.69820786e-01\\n-4.87000793e-01 -8.44143927e-02 5.74471010e-03 -1.51706025e-01\\n1.31652847e-01 -5.90725541e-02 -2.53984660e-01 7.47379139e-02\\n-2.45405197e-01 -1.96631834e-01 -3.31543505e-01 -5.18850051e-02\\n-3.39998990e-01 -1.35444805e-01 -1.28733888e-01 -1.67223334e-01\\n-6.72441870e-02 -3.11282307e-01 -1.49802029e-01 1.53711230e-01\\n4.65594500e-01 -9.91084501e-02 -9.04410556e-02 -1.21041991e-01\\n-7.87149090e-03 2.61934012e-01 4.05741125e-01 -1.12175874e-01\\n1.49162993e-01 -3.32798734e-02 -3.56227726e-01 -6.55620247e-02\\n1.90045550e-01 3.65935415e-02 -4.65964302e-02 5.00743687e-01\\n-3.40142608e-01 5.77112995e-02 1.09722473e-01 2.58588284e-01\\n-3.58537614e-01 -1.56976376e-02 9.94263031e-03 3.79866898e-01\\n1.91385031e-01 2.11970180e-01 -2.86552012e-01 2.17511371e-01\\n-2.61249274e-01 -4.33736473e-01 4.01196331e-01 -1.72018886e-01\\n-3.56429331e-02 1.68645233e-01 1.96501881e-01 1.17264748e-01\\n-3.21697086e-01 1.94661692e-02 -1.54590569e-02 4.08345699e-01\\n1.38100579e-01 3.41536433e-01 -3.65895391e-01 -1.07981980e-01\\n-2.32519433e-01 2.34447092e-01 -1.72387525e-01 1.93839952e-01\\n-1.84268057e-01 3.26715201e-01 8.13060328e-02 1.33784905e-01\\n1.99187040e-01 -6.98598698e-02 -2.10739136e-01 -2.28092819e-01\\n-2.95322090e-01 -3.31125885e-01 1.71492130e-01 -4.79243211e-02\\n2.16375485e-01 -3.68897915e-01 -1.23232454e-01 -1.45375162e-01\\n-2.50475407e-01 -4.45141196e-01 -3.81494686e-02 -5.45614399e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is a globally integrated technology and consulting company with operations in more than 170 countries. Ihr Aufgabenbereich Understand and prioritize product requirements and end-user needs and drivers Elicit and analyze all requirements, including business rules Design, develop and support application solutions to meet client requirements Ihr Profil A degree in Computer Science (IT apprenticeship graduates, higher education in IT, bachelor) Demonstrated work experience and knowledge of Web Development using Java, JavaScript, Python Experience in one or more of the following (AngularJS, NodeJS, Django / Flask, Bootstrap, Knockout, AureliaJS or similar. Build Chain: SVN Git, Ant, Maven) Knowledge of databases (SQL) Experience on agile development methodologies Excited to explore new technologies and able to quickly learn An ability to pro-actively take ownership of and analytical problem solving skills Good knowledge of the German & English languages (written & spoken) Swiss nationality or valid Swiss work permit / EU passport Ihre Chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript Web SQL Sprachen: Deutsch Englisch Job ID: 2064',\n", + " 'soft_skills': '[\"Prioritization\", \"Consulting\", \"Operations\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Knockout.js\", \"Hyper SQL Database (HSQLDB)\", \"Product Requirements\", \"Computer Science\", \"Analytics\", \"Web SQL Databases\", \"Higher Education\", \"Technology Integration\", \"Activism\", \"Python (Programming Language)\", \"Web Development\", \"Flask (Web Framework)\", \"Business Card Design\", \"Django (Web Framework)\", \"Apache Ant\", \"Bootstrap (Front-End Framework)\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Git Flow\", \"Java (Programming Language)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English', 'Chuang', 'Chewa']\"},\n", + " {'company_id': '84',\n", + " 'job_title': '.net consultant / software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.61061400e-01 2.82405615e-01 4.39843953e-01 -1.06197216e-01\\n4.96441543e-01 -2.55543470e-01 -1.15714118e-01 3.84546578e-01\\n-1.00942172e-01 -4.29098755e-01 -2.52556149e-02 -3.17635238e-01\\n-6.96545914e-02 2.52955910e-02 1.92746475e-01 4.94967282e-01\\n2.63134420e-01 8.39160010e-02 -2.18112051e-01 3.45846862e-01\\n1.22279868e-01 -8.40979908e-03 4.93846759e-02 7.05662966e-01\\n4.00918156e-01 3.21412012e-02 -9.74281803e-02 -4.59116995e-02\\n-3.10366064e-01 -2.24626094e-01 4.49564248e-01 3.62390056e-02\\n-1.24232292e-01 -3.17485422e-01 9.18334946e-02 7.17850849e-02\\n-1.80965066e-01 -8.28596354e-02 -5.51367439e-02 2.85666823e-01\\n-4.35210824e-01 -1.99896142e-01 8.98752287e-02 7.58509710e-02\\n-1.29840925e-01 -3.99345368e-01 6.93388283e-02 -9.92942005e-02\\n8.34268406e-02 3.81236561e-02 -5.19869387e-01 2.04275459e-01\\n-2.16927439e-01 -1.56002060e-01 3.18006873e-01 5.80775738e-01\\n2.44086739e-02 -4.98956293e-01 -4.65747952e-01 -3.39738786e-01\\n1.40105024e-01 -8.36121908e-05 2.46197395e-02 -3.41030449e-01\\n3.73587847e-01 7.15952069e-02 5.05458517e-03 3.23967606e-01\\n-8.48127425e-01 -1.43008575e-01 -2.12373853e-01 1.90450437e-02\\n-4.12282288e-01 -2.78401989e-02 -2.38644406e-01 -1.41654789e-01\\n-1.06879830e-01 4.43170369e-01 -1.93899423e-02 -1.70567427e-02\\n-1.40919730e-01 3.19316477e-01 -1.43043086e-01 2.88516313e-01\\n2.34780833e-01 2.94918388e-01 2.10442826e-01 3.75243038e-01\\n-4.31245834e-01 3.55803728e-01 1.84469894e-01 -3.79628241e-01\\n2.21618503e-01 2.10281517e-02 4.76391912e-01 3.15011013e-03\\n1.38864532e-01 1.14987269e-01 -2.77029723e-01 3.41122001e-01\\n1.86061472e-01 -1.68644488e-01 4.34421264e-02 -6.81454688e-02\\n-3.84778902e-02 5.65203242e-02 3.68006118e-02 2.23805130e-01\\n-2.58395851e-01 4.46176380e-01 1.18645146e-01 -1.51735380e-01\\n-3.33415419e-02 -6.22109115e-01 -1.51888743e-01 -1.21548190e-03\\n2.25975271e-02 1.43732384e-01 1.95251018e-01 1.83794543e-01\\n2.08858818e-01 -9.62470993e-02 1.94579110e-01 9.65843856e-01\\n-4.66822274e-02 2.38388553e-02 -2.86113352e-01 3.70040089e-01\\n1.72202840e-01 -2.50677079e-01 1.96682021e-01 1.97969154e-01\\n8.39239061e-02 -5.43384179e-02 -1.82683915e-01 3.15192640e-01\\n-1.28099501e-01 -3.00945669e-01 -3.71956706e-01 7.89373964e-02\\n-1.59114286e-01 -4.56348926e-01 6.03847146e-01 1.07984297e-01\\n1.67446434e-01 -1.56945422e-01 -4.35541803e-03 -1.54890746e-01\\n-9.89364646e-03 1.82144046e-01 -1.73465051e-02 1.98373925e-02\\n-3.93176079e-01 -2.22950116e-01 -1.73748061e-01 2.18064487e-01\\n-1.49262607e-01 6.47005364e-02 -9.92368683e-02 -1.08271062e-01\\n2.37163559e-01 1.29458890e-03 -2.90941119e-01 2.40611359e-01\\n2.13453714e-02 -1.76653355e-01 -6.03716075e-02 2.63112158e-01\\n-1.47585168e-01 1.89769506e-01 -7.04779625e-02 -2.11540177e-01\\n5.45767546e-01 4.10812534e-02 2.02351227e-01 4.08065366e-03\\n2.84436166e-01 -2.25074619e-01 1.93208128e-01 1.12986304e-01\\n-6.34288013e-01 3.34666550e-01 -6.33460954e-02 -1.02804773e-01\\n1.66738793e-01 5.86899221e-02 3.49167794e-01 -2.19903380e-01\\n7.31283873e-02 -1.63252726e-01 -2.80016392e-01 -4.13257271e-01\\n-3.15646976e-01 -4.60813977e-02 3.36676151e-01 -3.53214890e-01\\n-1.72820374e-01 2.44597197e-01 -5.43659866e-01 -1.30678803e-01\\n1.18069492e-01 1.81975648e-01 3.32590416e-02 2.07384631e-01\\n-2.52361774e-01 -5.69460690e-01 8.64793584e-02 -5.13334334e-01\\n-3.85820150e-01 1.28958747e-01 -2.49752745e-01 2.49418542e-01\\n2.07245089e-02 1.77062266e-02 -1.80193633e-01 1.30770490e-01\\n-3.05217117e-01 4.12850790e-02 1.23431556e-01 2.15713680e-01\\n3.30951124e-01 5.51810674e-02 -4.40088689e-01 5.43328047e-01\\n-1.27796948e-01 4.92609322e-01 1.60326600e-01 -9.73326802e-01\\n4.51699823e-01 3.52508068e-01 9.75953862e-02 -3.81554037e-01\\n6.76976204e-01 -3.32376361e-01 -6.34292141e-02 1.37686193e-01\\n-4.60948914e-01 -3.52548182e-01 2.48909488e-01 -1.90905079e-01\\n-2.20866904e-01 5.69935441e-01 8.78207535e-02 1.33400820e-02\\n3.52307618e-01 -2.83530086e-01 -2.35882461e-01 -2.50920169e-02\\n-1.10039435e-01 -2.52096117e-01 -4.88583863e-01 5.34434468e-02\\n2.07100287e-02 -5.58353841e-01 -1.04677498e-01 -3.23822826e-01\\n-2.31217682e-01 -3.37153435e-01 -1.87967539e-01 3.07265759e-01\\n2.10479677e-01 9.01447982e-02 3.26610692e-02 4.12330701e-04\\n-9.44381729e-02 -5.49226820e-01 -2.54393667e-02 1.26453042e-01\\n4.28147286e-01 1.71481848e-01 1.33025944e-01 8.33098888e-02\\n-7.47130439e-02 6.30581260e-01 -1.94379896e-01 -2.84884542e-01\\n4.64021564e-02 1.74978033e-01 7.10744187e-02 -4.52108905e-02\\n1.55839786e-01 3.88529271e-01 -2.32466757e-01 6.21679276e-02\\n-1.92457691e-01 -9.83112585e-03 3.26006532e-01 -1.43725267e-02\\n-1.65859058e-01 -1.86779484e-01 4.81200926e-02 1.77215740e-01\\n-5.83463013e-01 -2.16852948e-01 5.17063022e-01 2.26086602e-01\\n2.07482010e-01 1.57962576e-01 2.94357538e-01 -1.15060575e-01\\n-2.32433751e-01 -2.64887840e-01 1.87108070e-01 1.23880945e-01\\n1.23403162e-01 8.35000426e-02 -5.64389639e-02 -5.83317637e-01\\n-2.91366673e+00 -1.84168890e-01 1.30148560e-01 -2.49361515e-01\\n2.01651335e-01 -1.24938056e-01 8.57203379e-02 -9.90010649e-02\\n-3.49942714e-01 2.12433636e-02 -1.86857596e-01 -1.93448663e-01\\n1.74762264e-01 1.99333534e-01 1.86368059e-02 2.54788965e-01\\n1.50162444e-01 -1.21618822e-01 -1.18164957e-01 3.06661755e-01\\n-8.38257372e-02 -6.72026038e-01 2.46227354e-01 -2.89916843e-02\\n2.66872913e-01 2.66664326e-01 -4.51344132e-01 -1.73367262e-02\\n-2.80026585e-01 -2.50998974e-01 8.89280215e-02 -3.56341481e-01\\n-5.94833270e-02 2.97525436e-01 1.24153361e-01 -9.61018577e-02\\n9.65004861e-02 -3.26996267e-01 1.43701239e-02 -4.41497594e-01\\n8.57499391e-02 -5.87770879e-01 1.11087067e-02 -1.67933479e-01\\n7.76146054e-01 -4.05393720e-01 3.07848398e-02 1.30273372e-01\\n1.00030296e-01 2.50005275e-01 4.75976914e-02 -2.75536440e-02\\n-2.63364404e-01 -3.63615125e-01 -4.76867668e-02 -2.40496412e-01\\n5.13928890e-01 4.85458016e-01 -2.06249937e-01 6.19305037e-02\\n1.72705695e-01 -3.29640627e-01 -5.07084548e-01 -2.68978685e-01\\n-2.32588470e-01 -2.16017082e-01 -6.37931287e-01 -4.84856725e-01\\n-1.31795168e-01 -9.87995788e-02 -1.63614437e-01 6.49480581e-01\\n-2.68594474e-01 -3.20474416e-01 -4.77039777e-02 -5.23691773e-01\\n1.64337054e-01 -2.48191327e-01 1.27129167e-01 -1.91941082e-01\\n-2.64397830e-01 -4.88260150e-01 2.23465860e-02 -2.36735702e-03\\n-1.11003906e-01 -1.45433888e-01 4.82440135e-03 -2.79917747e-01\\n-3.69830012e-01 -5.28301001e-01 3.94007176e-01 1.53065205e-01\\n3.74419272e-01 1.69714421e-01 2.34437823e-01 1.02108106e-01\\n2.52446979e-01 -1.65792555e-01 3.10008768e-02 -3.82771164e-01\\n1.42912179e-01 1.09709008e-03 6.10804498e-01 -2.29342028e-01\\n1.50328115e-01 1.45601466e-01 -1.68598771e-01 -2.07371954e-02\\n3.42909783e-01 6.26643598e-02 8.41468722e-02 -1.82631075e-01\\n3.20092678e-01 -4.23888743e-01 -1.54926941e-01 1.58292919e-01\\n-4.73851152e-03 5.73954642e-01 -4.60129092e-03 -3.93465519e-01\\n-2.09658086e-01 4.13632423e-01 -2.46579535e-02 -1.67109922e-01\\n-1.99939683e-01 1.60442561e-01 -2.62140095e-01 1.86097726e-01\\n-4.25574519e-02 -1.94411874e-01 -3.34699184e-01 -1.41411692e-01\\n-9.03424323e-02 2.73254693e-01 2.99515814e-01 1.53691620e-01\\n-4.48876098e-02 -3.81153733e-01 -1.52592167e-01 7.96307102e-02\\n3.03573072e-01 3.83774519e-01 8.97634923e-02 -2.53035575e-01\\n-3.86298336e-02 2.58262277e-01 -1.69947296e-01 1.72767118e-01\\n-2.09663615e-01 1.81314908e-02 -5.26860476e-01 -2.88891226e-01\\n-1.26227543e-01 -3.33087802e-01 1.24050312e-01 3.58696729e-01\\n1.40719503e-01 1.88418925e-02 7.50028268e-02 -4.36043829e-01\\n3.87669742e-01 9.33569819e-02 2.14441881e-01 2.08596408e-01\\n-6.02947827e-03 5.44767737e-01 -5.13728820e-02 -5.89922443e-02\\n-1.58588693e-01 -2.42266562e-02 -2.30279207e-01 -1.47303686e-01\\n-1.54793113e-02 -4.47216570e-01 -1.50253311e-01 4.47553694e-01\\n7.76415542e-02 -3.25555980e-01 -2.08210409e-01 2.25479960e-01\\n2.58214884e-02 -2.12774947e-01 -2.40443587e-01 1.96861088e-01\\n2.23486498e-01 1.35469928e-01 3.04366291e-01 -4.62919235e-01\\n-8.35931078e-02 3.00603639e-02 -1.96293905e-01 5.45302272e-01\\n1.34474903e-01 1.69315279e-01 -1.61481097e-01 -2.26466194e-01\\n4.37355399e-01 -2.03286231e-01 -6.57850131e-02 2.33856831e-02\\n1.06682569e-01 -1.11521319e-01 -3.49828750e-01 5.52670844e-02\\n-5.65088578e-02 -2.70249337e-01 6.94669709e-02 4.74213157e-03\\n1.05160117e-01 4.85265255e-02 -5.60092211e-01 -2.81867564e-01\\n-2.95326650e-01 -1.25853807e-01 8.79566669e-02 -4.27554995e-01\\n8.79403353e-02 -9.02630463e-02 -6.39229536e-01 3.32679212e-01\\n-2.11237013e-01 -1.18213251e-01 1.75968915e-01 3.87088023e-02\\n-4.12068099e-01 -1.64926305e-01 1.42290413e-01 3.00444782e-01\\n-2.47365698e-01 -1.97585940e-01 -4.48082350e-02 -9.85156655e-01\\n1.39615819e-01 -4.13161851e-02 -7.39687085e-02 2.45203048e-01\\n-7.69408345e-02 -7.33268499e-01 1.25889406e-01 -3.64666820e-01\\n-6.76216930e-02 -6.41948031e-03 -1.50699005e-01 -5.01313984e-01\\n1.13210909e-01 -1.70278847e-02 -2.16318071e-01 4.94197339e-01\\n-3.73672336e-01 2.97962636e-01 -8.10647085e-02 8.12380537e-02\\n6.98016509e-02 -3.23110044e-01 1.87229127e-01 -3.42388660e-01\\n-4.26362872e-01 -1.54664084e-01 -2.97529280e-01 -2.75209755e-01\\n-1.16788363e-02 -3.35932612e-01 -2.44856432e-01 1.28172338e-01\\n4.14402068e-01 8.37660059e-02 -1.10845692e-01 -1.61402941e-01\\n1.37393013e-01 -4.63932842e-01 1.89728569e-02 -1.95594743e-01\\n-7.16201738e-02 -1.77967533e-01 1.21252045e-01 5.96221201e-02\\n7.49127641e-02 -3.83069605e-01 4.60307598e-01 -3.08368385e-01\\n-4.09402162e-01 -5.54539263e-02 8.25899094e-02 -7.30063170e-02\\n3.73752505e-01 -5.27427912e-01 -9.53287259e-02 2.53553867e-01\\n8.95565450e-02 4.90040965e-02 1.45704359e-01 -1.09710388e-01\\n-1.32416531e-01 3.32815111e-01 -4.25824970e-01 1.89764500e-01\\n8.64145935e-01 1.31961837e-01 1.53689817e-01 1.81878939e-01\\n2.13383749e-01 2.90007263e-01 4.89651352e-01 3.65276486e-02\\n-1.13949902e-01 3.58917564e-01 5.82671277e-02 -4.99208272e-01\\n-6.46283180e-02 -7.04978481e-02 -2.65846848e-01 -4.21163619e-01\\n5.73399127e-01 4.99142677e-01 -2.68035978e-01 -2.08846241e-01\\n-1.38075918e-01 -8.09096247e-02 2.34304592e-01 -8.25008899e-02\\n6.79305987e-03 -1.17978409e-01 5.43559849e-01 -1.11066857e-02\\n2.57869542e-01 5.90674579e-01 -2.20843449e-01 -3.89542550e-01\\n-1.36682928e-01 1.22545168e-01 4.86585572e-02 5.18713832e-01\\n-1.89380556e-01 2.76773602e-01 -2.64079999e-02 1.20500043e-01\\n-1.42428353e-01 1.01841144e-01 2.35280812e-01 3.36247310e-02\\n1.92598119e-01 7.48084560e-02 2.56457388e-01 4.77919519e-01\\n3.16520274e-01 4.78911072e-01 3.53773743e-01 1.71004906e-02\\n3.77350420e-01 6.31164432e-01 3.59651387e-01 2.35680759e-01\\n-1.11265063e-01 5.35906218e-02 3.26568447e-02 -8.02013129e-02\\n3.66984695e-01 3.24954271e-01 1.58921152e-01 9.29159880e-01\\n4.10655946e-01 2.79419482e-01 7.83787429e-01 -6.16033554e-01\\n-4.08982426e-01 1.28367066e-01 4.73427802e-01 -3.94076914e-01\\n-1.53975725e-01 9.97934118e-02 -2.67411977e-01 1.06774047e-01\\n-5.25260270e-01 -1.96036577e-01 -5.87552227e-02 4.93013710e-02\\n5.79093210e-02 -2.38608196e-02 -2.39395544e-01 5.57023771e-02\\n-1.70425415e-01 -1.44715697e-01 -4.81284797e-01 -6.27614334e-02\\n-1.92634031e-01 -1.01945490e-01 -9.18012187e-02 -1.92142069e-01\\n-1.12601012e-01 -3.46467227e-01 -1.49029762e-01 -1.72512997e-02\\n3.50676805e-01 -2.07750034e-02 6.39625778e-03 -1.84406146e-01\\n2.12827221e-01 3.57400656e-01 5.73160112e-01 -4.71568927e-02\\n6.14709333e-02 -2.17457592e-01 -2.00597003e-01 8.66437182e-02\\n1.16189495e-01 2.56672446e-02 5.00885732e-02 4.15923715e-01\\n-2.90545017e-01 -3.98523286e-02 8.89121965e-02 3.66499841e-01\\n-4.37477410e-01 -5.54743409e-02 -1.43565804e-01 2.50385910e-01\\n1.18160158e-01 2.05749154e-01 -2.73230851e-01 2.23534301e-01\\n-1.76171213e-01 -4.98140484e-01 3.76931012e-01 -1.86177120e-01\\n-5.55484071e-02 1.13522485e-01 1.48661166e-01 1.06151067e-01\\n-2.98583746e-01 -1.50560280e-02 -7.38669261e-02 2.43403733e-01\\n1.17248699e-01 3.90392631e-01 -2.88708091e-01 -2.08459586e-01\\n-1.98375627e-01 1.91929340e-01 -1.61302656e-01 9.50233117e-02\\n-4.86731194e-02 4.19884473e-01 5.19586727e-02 7.03756213e-02\\n3.32891434e-01 3.86182740e-02 -2.57498175e-01 -2.73904592e-01\\n-1.58494756e-01 -2.86519676e-01 4.40173931e-02 2.00525895e-02\\n2.43188187e-01 -4.20273751e-01 -1.18139595e-01 -2.74821341e-01\\n-1.39369920e-01 -3.49531591e-01 -3.17811519e-02 -6.11166731e-02]]',\n", + " 'job_description': 'About our client Our Client is a growing Swiss consulting and technology firm with more than 20 employees. He primarily serves banks, insurers, investment firms and e-commerce companies. Both global and local players belong to his clients. Our Client offers products and services in quantitative finance, predictive analytics, machine learning, software engineering and business consulting. Your responsibilities In this role, you will primarily be working with his clients but also with his internal development team and contribute to the design and implementation of the next generation of financial industry applications. You will work in a challenging and varying environment with both national as well as international clients. Your profile Master or Bachelor in computer science or electrical engineering Multiple years of experience in C#/.Net development including Asp.Net and Entity Framework Solid knowledge in JavaScript including state of the art frameworks like AngularJS Experience in SQL, C/C++, Python and Java is a plus Broad knowledge of software development processes, principles and practices (like Scrum, Kanban, extreme programming, SOLID, TDD, continuous integration etc.) Interested in new technologies and methods and able to incorporate them into projects and products Team player with a reliable and customer-oriented working attitude with the ability to understand and approach complex problems Fluent in English, German is an advantage Your chance Challenging and interesting projects in the fintech domain Work with new technologies Work within an interdisciplinary team of experts Modern and flexible collaboration methods and a flat hierarchy Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung: JAVA Entwicklung Scrum (Methode) JavaScript C# / C++ / C .NET Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1140',\n", + " 'soft_skills': '[\"Collaboration\", \"Complex Problem Solving\", \"Reliability\", \"Consulting\"]',\n", + " 'hard_skills': '[\"ASP.NET\", \"Test-Driven Development (TDD)\", \"Computer Science\", \"Machine Learning\", \"Continuous Integration\", \"Industrialization\", \"Python (Programming Language)\", \"Scrum (Software Development)\", \"Entity Framework\", \"Software Engineering\", \"Investments\", \"C (Programming Language)\", \"Finance\", \"E-Commerce\", \"Electrical Engineering\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Predictive Analytics\", \"Banking\", \"Software Development\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Extreme Programming\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Javanese']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'backend sw engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.68256277e-01 2.80966550e-01 3.44677925e-01 5.30506372e-02\\n5.80511034e-01 -2.47638822e-01 7.77832866e-02 2.96363652e-01\\n-1.86372668e-01 -3.81059796e-01 -8.01259801e-02 -1.91526100e-01\\n-1.20249137e-01 4.19630893e-02 6.58501759e-02 2.97487617e-01\\n2.96830416e-01 1.03520900e-01 -2.24871874e-01 3.48558217e-01\\n2.44660843e-02 -2.33520754e-02 -7.16324151e-02 7.10306168e-01\\n3.73393893e-01 7.64411092e-02 -7.30364174e-02 3.10215969e-02\\n-2.69114822e-01 -2.33520836e-01 3.59915376e-01 8.74466226e-02\\n-2.01426968e-02 -2.21706823e-01 8.55944529e-02 1.63908675e-02\\n-2.02809051e-01 3.03395186e-02 -7.03047067e-02 1.84850901e-01\\n-3.49794418e-01 -3.19804043e-01 3.57922874e-02 1.16022877e-01\\n-2.03592315e-01 -3.27240318e-01 -7.38833472e-02 -8.32037814e-03\\n1.08916402e-01 -5.48914671e-02 -5.44368207e-01 4.32967663e-01\\n-2.85363168e-01 -2.13028684e-01 3.27406317e-01 4.80463058e-01\\n7.07191764e-04 -5.72555006e-01 -2.74876982e-01 -3.11568081e-01\\n-7.87170604e-04 -2.16793537e-01 9.30675864e-02 -2.66013175e-01\\n2.65337527e-01 -1.99370328e-02 6.45290688e-02 3.96281332e-01\\n-7.15952098e-01 -7.56770745e-02 -2.58975267e-01 4.84445971e-03\\n-3.44652683e-01 -1.32466108e-01 -3.00590098e-01 -7.25278556e-02\\n-6.71878159e-02 3.16180170e-01 -2.17432920e-02 6.17913567e-02\\n-1.51244149e-01 3.00630808e-01 -9.61166099e-02 1.84126168e-01\\n2.33807787e-01 1.18075542e-01 1.84917077e-01 3.30178261e-01\\n-4.02723163e-01 4.94906694e-01 2.78163515e-02 -1.89738944e-01\\n2.46067822e-01 2.03865394e-01 4.66537535e-01 7.31082112e-02\\n-3.48280333e-02 1.81059256e-01 -2.56648839e-01 1.59588724e-01\\n2.00172037e-01 -3.17932218e-01 2.00379938e-02 -1.10025086e-01\\n-8.66630152e-02 1.95057467e-02 4.45732585e-04 2.31951535e-01\\n-2.83212394e-01 4.38437521e-01 2.28525981e-01 -1.96417868e-01\\n-7.44504780e-02 -4.96552169e-01 -1.17808118e-01 -2.58486811e-02\\n-1.42118305e-01 1.98162153e-01 2.90167809e-01 1.20146722e-01\\n1.79669514e-01 5.00745960e-02 1.73523605e-01 9.51189220e-01\\n-2.46720817e-02 1.25142261e-01 -1.97533846e-01 2.33240172e-01\\n2.42920592e-01 -1.90623596e-01 1.76015064e-01 3.12252760e-01\\n1.64266855e-01 1.83322039e-02 -1.87562793e-01 3.77678484e-01\\n-2.49157727e-01 -6.96034804e-02 -3.38936239e-01 1.09828226e-01\\n-1.85315907e-01 -5.79838157e-01 6.25603855e-01 1.71961352e-01\\n2.00974256e-01 1.01519758e-02 5.39434999e-02 -7.08785728e-02\\n-7.03627914e-02 2.46599570e-01 7.77274892e-02 1.78365037e-01\\n-3.97517234e-01 -2.17392102e-01 -1.14692204e-01 2.54033774e-01\\n-2.28492916e-01 7.52320215e-02 -4.59703095e-02 -4.00270000e-02\\n2.37886637e-01 5.03434539e-02 -3.75742763e-01 1.42910615e-01\\n-1.12772316e-01 -2.28844285e-01 -1.34519503e-01 3.83624822e-01\\n-7.34532773e-02 2.68917799e-01 5.40079512e-02 -7.69566670e-02\\n5.54528654e-01 1.61391243e-01 1.55689299e-01 -1.64353289e-02\\n2.59011865e-01 -1.06625922e-01 3.07998925e-01 1.54668242e-01\\n-6.65170670e-01 1.90961540e-01 -2.93293837e-02 -1.18123017e-01\\n7.81614110e-02 1.31149411e-01 2.44318053e-01 -3.87164861e-01\\n-1.18726470e-01 -1.59455091e-01 -3.86809468e-01 -3.32343668e-01\\n-2.47529522e-01 9.23015028e-02 3.47663224e-01 -2.65317112e-01\\n-4.82774228e-02 5.91426976e-02 -3.72780293e-01 -1.42033011e-01\\n1.64764598e-01 1.58674031e-01 3.43571417e-02 8.71408135e-02\\n-4.59054932e-02 -6.15433395e-01 -1.43101104e-02 -5.04064023e-01\\n-6.24376178e-01 6.46936819e-02 -3.60657811e-01 2.46049732e-01\\n-2.42124051e-02 1.28714904e-01 -9.33485851e-02 2.03563452e-01\\n-3.41948122e-01 6.93769604e-02 1.14815541e-01 1.63760811e-01\\n1.60189509e-01 -6.42544180e-02 -4.50130522e-01 4.45112824e-01\\n-2.10934803e-01 5.23637235e-01 2.21961200e-01 -7.07449436e-01\\n6.36946261e-01 1.72863886e-01 -3.61249298e-02 -4.06198651e-01\\n3.93998146e-01 -3.90469640e-01 -1.74895655e-02 8.44453499e-02\\n-2.60609835e-01 -2.46748820e-01 3.50345880e-01 -2.54884869e-01\\n-3.57528716e-01 5.20105898e-01 1.54569283e-01 1.10955499e-01\\n2.70659983e-01 -2.81114399e-01 -4.63892668e-02 1.07461095e-01\\n-9.90929604e-02 -2.05803499e-01 -3.38931829e-01 5.04897423e-02\\n-9.08693597e-02 -4.78580534e-01 -1.01777166e-01 -4.82099354e-01\\n-1.62538871e-01 -3.30503732e-01 -2.43613437e-01 3.15286875e-01\\n2.02044815e-01 1.45659372e-01 7.61852860e-02 -1.54940626e-02\\n-6.57685176e-02 -7.43359923e-01 -9.27251130e-02 -1.06826294e-02\\n5.37342727e-01 1.67797074e-01 2.22710315e-02 -9.00486112e-02\\n3.53892031e-03 4.98980403e-01 -3.74690175e-01 -3.90252203e-01\\n5.71420491e-02 1.52028054e-01 -3.06195877e-02 -2.02539220e-01\\n5.28162764e-03 4.07761842e-01 -2.38233924e-01 1.35247439e-01\\n-5.10711111e-02 -8.85524303e-02 4.05885488e-01 -1.31611060e-02\\n-3.47480059e-01 -1.97392955e-01 -9.28023532e-02 1.45437539e-01\\n-5.24388373e-01 -1.30381510e-01 5.59510589e-01 2.86901951e-01\\n1.90427989e-01 2.36356452e-01 2.60759771e-01 -9.23052505e-02\\n-1.39417976e-01 -2.85702348e-01 1.08309023e-01 1.53566405e-01\\n-3.82178137e-03 1.11081935e-01 -1.30673394e-01 -5.21439373e-01\\n-3.56062269e+00 -5.72392419e-02 2.28134543e-01 -2.83745587e-01\\n1.84516937e-01 -1.33128716e-02 -6.78385142e-03 3.67290564e-02\\n-3.99421692e-01 6.83811009e-02 -2.16967925e-01 -1.92042127e-01\\n4.35629264e-02 3.56590509e-01 7.23295435e-02 1.37255475e-01\\n1.43693984e-01 -2.57922351e-01 -1.95843816e-01 3.23520690e-01\\n-1.59120247e-01 -6.54160619e-01 1.07833773e-01 5.10134958e-02\\n1.85165629e-01 1.51602179e-01 -3.37271720e-01 -2.79328637e-02\\n-7.37449527e-02 -2.80705243e-01 -9.30318311e-02 -1.46301761e-01\\n-2.10048124e-01 3.16557288e-01 1.60904914e-01 -1.03805587e-01\\n-7.55465627e-02 -3.03779960e-01 -5.29515669e-02 -4.60794389e-01\\n1.47117585e-01 -5.53129137e-01 3.23036462e-02 -1.01737969e-01\\n7.63723314e-01 -2.43185744e-01 1.68201491e-01 -1.92443337e-02\\n1.34243369e-01 1.03382960e-01 -2.04743315e-02 3.98349464e-02\\n-2.16008723e-01 -3.03375393e-01 -3.02219372e-02 -2.41419956e-01\\n4.70418245e-01 4.26415265e-01 -2.55726814e-01 -4.89498526e-02\\n9.98428166e-02 -3.56135607e-01 -2.20863923e-01 -2.58219093e-01\\n-1.28375947e-01 -1.67964280e-01 -7.53873765e-01 -4.53482836e-01\\n-1.39948219e-01 -1.30637571e-01 -1.79183066e-01 6.85823739e-01\\n-3.26341331e-01 -4.67525035e-01 4.03417125e-02 -5.45589864e-01\\n9.74138454e-02 -2.54920065e-01 7.36849010e-02 -1.48353577e-01\\n-2.53879339e-01 -4.79702592e-01 9.93387476e-02 -2.29159947e-02\\n-1.47317365e-01 -1.29291221e-01 -1.78953316e-02 -1.56996712e-01\\n-3.52823853e-01 -2.84348994e-01 3.98072630e-01 1.54219553e-01\\n3.36670429e-01 1.61767811e-01 3.46327454e-01 9.29220691e-02\\n2.54116535e-01 4.29166704e-02 1.13745682e-01 -2.56963491e-01\\n1.17407493e-01 -1.33167744e-01 6.75389588e-01 -2.10271806e-01\\n-3.06424163e-02 2.17618912e-01 -1.58588171e-01 -1.52335107e-01\\n4.65653092e-01 -3.48148644e-02 -4.37473841e-02 -9.63325799e-02\\n3.44315141e-01 -4.37570572e-01 -1.39008015e-01 1.31856829e-01\\n1.22326307e-01 7.11004436e-01 6.48837164e-02 -3.90598357e-01\\n-3.15256923e-01 5.10156810e-01 -1.70436800e-02 -4.39828150e-02\\n-1.38245210e-01 9.51706916e-02 -1.49762645e-01 1.48976564e-01\\n1.69290587e-01 -2.52623677e-01 -1.34392485e-01 -2.07254682e-02\\n-1.28508016e-01 1.82498679e-01 2.94994891e-01 1.21286921e-01\\n-7.36759230e-02 -3.18882346e-01 -2.82738686e-01 2.13413090e-01\\n1.78033501e-01 3.21200728e-01 2.33400777e-01 -2.96987057e-01\\n-8.88423845e-02 2.74162829e-01 -6.39112070e-02 2.36131728e-01\\n-1.91125125e-01 1.17985599e-01 -5.77232420e-01 -1.51990280e-01\\n-1.82451352e-01 -3.55341643e-01 -9.63377487e-03 3.92011106e-01\\n1.12721696e-01 -2.80157998e-02 1.37635335e-01 -4.28060919e-01\\n3.83078098e-01 1.65574297e-01 2.16329724e-01 3.94830592e-02\\n2.24087574e-02 5.06155550e-01 -2.36281455e-02 -1.44592866e-01\\n-1.81049764e-01 -3.10048577e-03 -2.26907879e-01 -1.86938718e-01\\n9.39327627e-02 -4.24537361e-01 -1.03394493e-01 3.78989726e-01\\n1.09884910e-01 -2.03449875e-01 -2.22843081e-01 1.92236215e-01\\n1.26634508e-01 -2.22964704e-01 -2.68124551e-01 -8.59432817e-02\\n2.69510955e-01 4.22532149e-02 2.69445181e-01 -3.63558859e-01\\n-1.24990664e-01 -4.05609459e-02 -1.04681544e-01 3.71735752e-01\\n4.38280068e-02 1.25749245e-01 -2.25489825e-01 -8.71866271e-02\\n4.16496962e-01 -1.99916437e-01 -1.01017416e-01 -5.68775786e-03\\n2.14488301e-02 -2.21383125e-01 -5.36945581e-01 3.34589146e-02\\n-2.31792871e-02 -9.16041583e-02 1.03917226e-01 4.95176688e-02\\n1.12624101e-01 2.97736600e-02 -4.76847261e-01 -2.42387205e-01\\n-3.20910484e-01 -1.01022720e-01 2.21627682e-01 -3.39469522e-01\\n2.06570011e-02 -7.44875893e-02 -6.46117508e-01 2.20176965e-01\\n-2.93631554e-01 6.44078925e-02 2.09118575e-01 6.84900731e-02\\n-2.89846301e-01 -7.18417093e-02 5.40907830e-02 2.68675357e-01\\n-2.00353399e-01 -9.69718024e-02 -1.32815599e-01 -9.32604074e-01\\n2.26728067e-01 -6.84717745e-02 -6.46681637e-02 -4.70831804e-02\\n4.15480183e-03 -6.18592799e-01 1.54709801e-01 -3.55068088e-01\\n2.02562585e-02 9.17806178e-02 -2.54402548e-01 -2.93878287e-01\\n8.91731530e-02 -1.47753209e-01 -2.84847856e-01 3.83184791e-01\\n-4.57132012e-01 1.83667257e-01 1.60041936e-02 1.10351361e-01\\n-2.38874350e-02 -2.93784559e-01 2.02276498e-01 -4.16057378e-01\\n-3.50548148e-01 -1.97443083e-01 -2.71469623e-01 -3.08780611e-01\\n5.73224500e-02 -3.66917074e-01 -1.48068368e-01 6.08434752e-02\\n2.30457067e-01 4.75714169e-02 -1.31713197e-01 -2.82507241e-01\\n-3.21307369e-02 -5.15598178e-01 2.60962754e-01 -1.64898157e-01\\n4.75019254e-02 -2.06220839e-02 2.24028453e-01 9.45636630e-02\\n1.84180185e-01 -3.89262885e-01 3.92789364e-01 -3.63392323e-01\\n-3.01650137e-01 -4.81558852e-02 -5.16412966e-02 6.42930493e-02\\n2.61086762e-01 -5.41121542e-01 1.01180077e-02 1.86398819e-01\\n7.75865912e-02 7.26497918e-02 2.30011582e-01 -1.09838851e-01\\n-1.73561439e-01 1.53525159e-01 -2.96756804e-01 8.38316903e-02\\n7.66189814e-01 1.42351881e-01 1.14174858e-01 1.68061465e-01\\n9.82450545e-02 3.79284948e-01 4.92646873e-01 1.93414406e-03\\n3.30070704e-02 2.17681155e-01 3.02026719e-02 -4.71996814e-01\\n-1.98831648e-01 -5.58554381e-02 -2.32645109e-01 -3.01343143e-01\\n4.88483787e-01 3.37962657e-01 -4.36467230e-01 -3.03671569e-01\\n8.37995932e-02 -9.90793705e-02 3.49347502e-01 7.99787715e-02\\n-4.62359339e-02 -2.34577790e-01 5.53103149e-01 3.91831249e-02\\n3.02090526e-01 5.90380311e-01 -6.04438595e-02 -4.08283502e-01\\n-1.40415251e-01 2.38491431e-01 4.59875353e-02 4.55891699e-01\\n-8.67438391e-02 2.29221463e-01 -2.01717131e-02 5.56300431e-02\\n3.30250449e-02 6.81054220e-02 1.29672989e-01 1.54104605e-01\\n1.95514098e-01 1.66474506e-01 3.70199621e-01 5.40943503e-01\\n7.32200742e-02 4.85517889e-01 2.70979524e-01 5.00193834e-02\\n2.99673736e-01 6.42767489e-01 4.52486783e-01 2.01659963e-01\\n6.43692091e-02 1.64361969e-01 1.21771529e-01 -1.07977420e-01\\n3.70519519e-01 2.84178942e-01 1.81891605e-01 8.49902451e-01\\n3.34213793e-01 1.84644729e-01 7.72197366e-01 -6.86626375e-01\\n-3.28088492e-01 3.39398682e-02 4.50774461e-01 -2.42100075e-01\\n-4.00201790e-02 1.57529965e-01 -2.51336247e-01 3.51791948e-01\\n-4.80008394e-01 -1.14155754e-01 3.30991074e-02 -6.21156096e-02\\n7.45923668e-02 -9.39129516e-02 -9.83097106e-02 -1.97362620e-02\\n-1.56326681e-01 -1.46081910e-01 -2.79602110e-01 -1.78151205e-01\\n-3.31089139e-01 5.21156229e-02 -1.19059257e-01 -1.49056032e-01\\n-1.86889935e-02 -4.32440907e-01 -5.47806136e-02 1.09304845e-01\\n3.38639438e-01 -6.29020408e-02 -6.29020631e-02 -8.41925852e-03\\n1.99822500e-01 3.48794281e-01 5.95449805e-01 -7.12604076e-02\\n9.79602411e-02 -2.22206548e-01 -2.13774800e-01 7.25805014e-02\\n2.28640297e-03 -6.96777776e-02 1.04644112e-01 3.42532545e-01\\n-3.15297872e-01 -7.83983991e-02 -1.87895447e-02 2.60366470e-01\\n-4.01568830e-01 -9.28893909e-02 -1.57994911e-01 2.52415776e-01\\n-2.83473004e-02 1.41502365e-01 -2.46584997e-01 -8.50632787e-03\\n-1.97978795e-01 -3.97043020e-01 4.11216497e-01 -1.76645890e-01\\n-1.31972298e-01 2.76845545e-01 2.00490072e-01 1.43336028e-01\\n-2.52448678e-01 2.04628538e-02 -8.30664188e-02 1.74150482e-01\\n-3.00979521e-02 4.37407762e-01 -2.07550764e-01 -1.64763391e-01\\n-2.82055020e-01 3.11717063e-01 -1.00641996e-01 1.29502967e-01\\n-6.62696660e-02 2.52333671e-01 1.82071149e-01 -6.27015159e-02\\n3.45473260e-01 9.84240919e-02 -2.71901995e-01 -1.56051815e-01\\n-8.02501589e-02 -1.78788513e-01 -4.45113108e-02 -5.37209585e-02\\n1.52462572e-01 -3.73692155e-01 -6.55194223e-02 -9.74771529e-02\\n-4.11849990e-02 -3.18096995e-01 -1.56579182e-01 -1.07962815e-02]]',\n", + " 'job_description': \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting our BI environment. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: Bachelor's or higher degree in computer science or equivalent work experience A minimum of three years of software engineering experience Excellent knowledge with Scala or Java Expert knowledge in an enterprise class RDBMS Demonstrated ability in data modeling, ETL development, and data warehousing Experience with big data technologies, such as Kafka, Spark, and Cassandra Excellent troubleshooting and creative problem-solving abilities and analytical skills Excellent written and oral communication and interpersonal skills Advantage: experience with systems for automating deployment, scaling, and management of containerised applications, such as Kubernetes and Mesos experience with machine learning experience with encryption and cryptography standards Benötigte Skills Scala JAVA ETL Datawarehouse Business Intelligence Kryptografie / Verschlüsselung\",\n", + " 'soft_skills': '[\"Analytical Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " 'hard_skills': '[\"Machine Learning Methods\", \"Data Warehousing\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Mesos\", \"Apache Cassandra\", \"Encryption\", \"Cryptography\", \"Maintainability\", \"Computer Science\", \"Java (Programming Language)\", \"Data Modeling\", \"Big Data\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Business Intelligence\"]',\n", + " 'languages': \"['English', 'Polish', 'Sinhala']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'c++ software development engineer',\n", + " 'location': 'Unterentfelden',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.hexagon.com',\n", + " 'jobdescription_embedded': '[[-1.54618099e-01 3.89143944e-01 5.09049058e-01 -9.65741798e-02\\n5.67536414e-01 -1.22960091e-01 3.81881520e-02 2.98756510e-01\\n1.69447549e-02 -3.23508859e-01 -2.24941477e-01 -2.90438056e-01\\n-3.86461541e-02 -5.35851857e-03 8.62632096e-02 5.29451251e-01\\n2.92639971e-01 1.63329821e-02 -1.65439174e-01 4.00280774e-01\\n6.70399740e-02 -1.30536363e-01 2.01959938e-01 6.72956049e-01\\n3.42955559e-01 -1.08423401e-02 2.89842095e-02 -3.85596324e-03\\n-2.37996221e-01 -1.99050456e-01 3.79731923e-01 5.61525002e-02\\n-2.26014644e-01 -4.15623635e-01 6.20941594e-02 1.91115588e-01\\n-1.41476810e-01 -3.33002470e-02 -2.62992252e-02 1.44758776e-01\\n-5.25140822e-01 -3.53081107e-01 4.92205285e-02 -2.67142914e-02\\n-2.35074744e-01 -3.20273072e-01 1.25041455e-01 -4.27913480e-02\\n-2.77809538e-02 9.13154632e-02 -4.32981879e-01 3.22847962e-01\\n-2.56377965e-01 -1.72818854e-01 3.14492792e-01 6.58517838e-01\\n-5.39667271e-02 -4.93250698e-01 -3.99023503e-01 -2.53276348e-01\\n7.95491114e-02 -1.47057194e-02 -6.60235574e-03 -2.35741213e-01\\n4.19521838e-01 -9.13119540e-02 -1.21985853e-01 2.98219681e-01\\n-7.44005322e-01 -1.05459958e-01 -2.86731422e-01 -2.61336342e-02\\n-3.62767637e-01 -8.04213062e-02 -2.21055940e-01 -2.20309466e-01\\n-7.58841410e-02 3.58574450e-01 1.36963390e-02 7.88454153e-03\\n-1.61824793e-01 3.40631902e-01 -1.10626824e-01 2.45939761e-01\\n3.21417809e-01 2.30065927e-01 2.46290490e-01 3.01855117e-01\\n-4.49905902e-01 3.92784715e-01 1.65125445e-01 -2.68059313e-01\\n1.99164286e-01 8.76920745e-02 3.97254705e-01 1.31248310e-01\\n-3.52488048e-02 1.35279298e-01 -2.35336572e-01 2.64528424e-01\\n2.65920848e-01 -1.61506638e-01 -1.27661116e-02 -3.64867002e-02\\n-4.28374968e-02 -5.77242374e-02 4.80339862e-02 2.54126906e-01\\n-3.65552574e-01 3.78500879e-01 1.62364274e-01 -2.46197507e-01\\n-8.83050077e-03 -5.86377323e-01 -2.22073004e-01 -2.59210430e-02\\n6.17630333e-02 2.02233925e-01 2.84768641e-01 2.73241550e-01\\n3.09558481e-01 -5.99102452e-02 1.26509041e-01 9.52667296e-01\\n-6.49159849e-02 1.71797320e-01 -2.49836832e-01 5.14901161e-01\\n1.46904901e-01 -3.76003593e-01 1.68846786e-01 3.30233425e-01\\n5.89482440e-03 -8.89862105e-02 -2.00748339e-01 2.89657682e-01\\n-1.02835499e-01 -2.56204426e-01 -3.28726679e-01 1.99098542e-01\\n-1.57101363e-01 -4.88311738e-01 5.59774458e-01 -5.31339273e-03\\n4.41078916e-02 -7.15244189e-02 -1.60193771e-01 3.52091156e-02\\n-5.01323007e-02 3.35492104e-01 5.45355007e-02 4.19197232e-02\\n-3.57471675e-01 -2.40365535e-01 -2.64163077e-01 2.29739904e-01\\n-1.66869283e-01 1.75985515e-01 -2.40751207e-01 -2.41244689e-01\\n2.86476672e-01 2.20193267e-02 -4.67349827e-01 3.57372195e-01\\n-4.93327528e-02 -1.25278726e-01 -4.00690846e-02 3.29458535e-01\\n-1.75488248e-01 2.12900296e-01 5.71311451e-02 -1.99481413e-01\\n5.21703124e-01 6.31898195e-02 1.50833979e-01 -1.08988911e-01\\n3.82068306e-01 -1.06803991e-01 1.95333704e-01 1.77968040e-01\\n-6.06419981e-01 4.08256501e-01 -8.65222365e-02 1.61584560e-02\\n9.99960229e-02 -2.51125265e-02 4.64302182e-01 -2.73517698e-01\\n-1.21717393e-01 -2.42528856e-01 -3.16910386e-01 -3.59680772e-01\\n-2.47763604e-01 -3.01649794e-02 3.50776553e-01 -3.80049020e-01\\n-7.13144317e-02 2.52459884e-01 -5.92665613e-01 -3.44788842e-02\\n2.44498491e-01 2.35957220e-01 2.60260582e-01 1.52683243e-01\\n-1.90540418e-01 -5.53931236e-01 1.78228449e-02 -3.70877773e-01\\n-3.31059068e-01 1.42616451e-01 -1.59629449e-01 2.55565315e-01\\n9.54848006e-02 5.09208925e-02 -1.32721588e-01 2.83760559e-02\\n-3.29497635e-01 -1.45419668e-02 2.01949939e-01 1.10824652e-01\\n1.27135441e-01 -6.70668250e-03 -4.01907593e-01 4.87152219e-01\\n-1.50453374e-01 5.46891749e-01 9.91660282e-02 -9.85745192e-01\\n5.01998425e-01 2.71160603e-01 2.70486027e-02 -4.34481680e-01\\n6.56641424e-01 -3.80730182e-01 -9.90642980e-02 1.49804756e-01\\n-3.47977817e-01 -2.19491869e-01 2.10256264e-01 -1.93183899e-01\\n-2.38661394e-01 5.88405192e-01 7.46780485e-02 3.26739401e-02\\n2.78656602e-01 -2.15997443e-01 -1.54089645e-01 4.80760299e-02\\n-1.04387522e-01 -2.03592911e-01 -4.48495477e-01 6.27460331e-02\\n-8.64931494e-02 -4.97938931e-01 -2.37147391e-01 -5.29505908e-01\\n-1.32020146e-01 -3.72561216e-01 -1.65834263e-01 2.56583840e-01\\n1.87403455e-01 7.21768439e-02 5.18181361e-02 4.05724421e-02\\n-1.98745161e-01 -7.35531271e-01 -8.36018249e-02 4.70702536e-02\\n2.87959218e-01 2.49204084e-01 1.54015720e-01 4.37249728e-02\\n5.36141032e-03 5.35523713e-01 -3.07178229e-01 -2.22894415e-01\\n1.28105760e-01 1.66731790e-01 -2.49532182e-02 -4.97771055e-02\\n1.76257998e-01 4.02080834e-01 -2.35741422e-01 7.36688077e-02\\n-1.21377960e-01 8.22339803e-02 3.63423914e-01 -7.93753043e-02\\n-2.06546098e-01 -2.36631289e-01 -6.38097897e-02 2.39078268e-01\\n-6.17504120e-01 -2.92727828e-01 5.40913045e-01 1.39390618e-01\\n7.89543018e-02 9.67703983e-02 3.77769232e-01 -2.06822544e-01\\n-1.84880599e-01 -8.94260630e-02 1.43946320e-01 1.54490948e-01\\n5.26454076e-02 1.35100922e-02 -9.28519964e-02 -5.59488237e-01\\n-3.15681767e+00 -5.34394942e-02 9.84933823e-02 -2.42253110e-01\\n1.35125652e-01 -1.21987276e-01 7.66179115e-02 -3.80421393e-02\\n-3.40037465e-01 1.08533345e-01 -1.79354280e-01 -9.04224962e-02\\n1.36228815e-01 2.71269530e-01 1.35766849e-01 1.48275822e-01\\n8.66556838e-02 -3.32028836e-01 -5.33029623e-03 4.03992951e-01\\n-8.77189934e-02 -7.13490546e-01 1.83653161e-01 -7.43045956e-02\\n3.00741404e-01 5.16787060e-02 -4.52029556e-01 -1.43654272e-01\\n-2.52759218e-01 -2.78138578e-01 1.49115935e-01 -1.74116760e-01\\n-1.21141948e-01 3.53979588e-01 2.08349809e-01 -1.13166399e-01\\n1.40428826e-01 -3.03774476e-01 -4.23392542e-02 -4.20055956e-01\\n3.86209786e-02 -5.99688649e-01 2.72603780e-02 -5.20411618e-02\\n5.83321452e-01 -2.11528897e-01 1.95961818e-01 1.84097171e-01\\n1.20724119e-01 2.78540641e-01 3.58227342e-02 -2.43673250e-02\\n-2.24705845e-01 -2.85149634e-01 -8.39482918e-02 -1.20878614e-01\\n5.52769601e-01 5.23924172e-01 -2.22827509e-01 -2.98601203e-02\\n-2.84989569e-02 -2.74463177e-01 -5.69567621e-01 -3.52037907e-01\\n-1.79550514e-01 -9.86900404e-02 -8.01472247e-01 -4.09514010e-01\\n-1.31633580e-01 -1.47927210e-01 -1.36325583e-01 6.01689935e-01\\n-3.48467201e-01 -3.26819628e-01 1.20757688e-02 -4.60074574e-01\\n1.86222658e-01 -2.30171859e-01 4.63781739e-03 -1.90983057e-01\\n-2.02970862e-01 -4.23297822e-01 1.45552441e-01 1.12203717e-01\\n-1.29378811e-01 -1.30980834e-01 2.05250382e-02 -3.02450716e-01\\n-2.34245285e-01 -4.51907545e-01 4.98113096e-01 9.35951620e-02\\n3.76581460e-01 -2.46702619e-02 2.19077557e-01 8.70767224e-04\\n4.49835509e-01 -8.15717429e-02 8.94814804e-02 -5.20929217e-01\\n-5.98815121e-02 4.44927625e-02 6.23434901e-01 -2.84598112e-01\\n-6.73542991e-02 1.20774508e-01 -1.66066527e-01 -3.14577296e-02\\n4.10794973e-01 6.30336627e-02 6.72706440e-02 -2.73384869e-01\\n2.53057390e-01 -4.63822275e-01 -1.91310689e-01 8.41301605e-02\\n4.41267230e-02 6.45666003e-01 -7.21386895e-02 -4.60637689e-01\\n-2.05543861e-01 3.93736243e-01 -6.58919439e-02 -1.87078550e-01\\n-1.61248982e-01 1.62874460e-01 -3.57508391e-01 2.48478547e-01\\n1.56116299e-02 -1.42154545e-01 -3.87192786e-01 -5.57514466e-02\\n-2.15552896e-02 2.26344749e-01 2.88914800e-01 1.47699311e-01\\n-9.48880315e-02 -3.94125104e-01 -6.11509271e-02 1.26902714e-01\\n2.44433612e-01 2.08002940e-01 7.47048557e-02 -3.43898803e-01\\n7.62036964e-02 3.16252023e-01 -1.96142450e-01 2.10682303e-01\\n-1.61187977e-01 1.02039158e-01 -4.93739396e-01 -2.25151464e-01\\n-2.17559651e-01 -2.12366790e-01 9.61583257e-02 3.38968277e-01\\n1.81513876e-01 -9.73146502e-03 1.17653251e-01 -5.90803027e-01\\n3.63143325e-01 1.22776702e-01 1.91177860e-01 1.50318995e-01\\n1.18326999e-01 6.55165911e-01 1.51795167e-02 -1.88765362e-01\\n-1.80702955e-01 3.14146020e-02 -1.24567062e-01 -2.52788216e-01\\n5.77417389e-03 -4.29123878e-01 -1.20776571e-01 4.04752254e-01\\n9.66578946e-02 -2.58190721e-01 -2.21192017e-01 2.18194321e-01\\n1.09097309e-01 -2.81112015e-01 -2.06215680e-01 7.34604895e-02\\n1.89475611e-01 8.28502178e-02 2.65355200e-01 -4.25878108e-01\\n7.85965621e-02 -1.06037922e-01 1.85314212e-02 3.82015914e-01\\n1.61986902e-01 8.66450071e-02 -2.14960858e-01 -2.33081266e-01\\n3.65050465e-01 -3.06593049e-02 -9.85030085e-02 -1.00614466e-01\\n8.86598006e-02 -2.11213365e-01 -3.47770154e-01 4.16011848e-02\\n3.07001527e-02 -1.70261025e-01 -1.72148217e-02 4.02693078e-02\\n1.29924491e-01 3.55638415e-02 -5.64481854e-01 -2.84480691e-01\\n-2.45546892e-01 -1.99344214e-02 -6.91005737e-02 -4.56210077e-01\\n9.63350199e-03 2.17225007e-03 -6.37623072e-01 2.32062608e-01\\n-1.74986616e-01 -1.19105093e-02 1.50779977e-01 8.22377279e-02\\n-3.78822297e-01 -2.72701830e-01 1.18326984e-01 1.56765163e-01\\n-2.19174176e-01 -1.89722896e-01 -3.91815566e-02 -9.95388150e-01\\n2.10241348e-01 -2.96791047e-02 6.11168938e-03 1.64729521e-01\\n-1.38270035e-01 -8.34559977e-01 7.99586847e-02 -4.59912628e-01\\n-5.03978617e-02 2.40749903e-02 -1.55293316e-01 -4.21584427e-01\\n3.18494043e-03 -1.28338132e-02 -1.93308219e-01 3.53885561e-01\\n-4.86355841e-01 4.53691512e-01 -9.24880803e-02 1.28068745e-01\\n-4.22302708e-02 -2.96799242e-01 1.24242246e-01 -4.30849582e-01\\n-4.45544690e-01 -1.01224877e-01 -3.42922360e-01 -2.43550718e-01\\n-8.01290423e-02 -2.14901939e-01 -1.86146945e-01 7.90995583e-02\\n3.49012494e-01 1.16718866e-01 -9.44228992e-02 -1.45397976e-01\\n-1.29492208e-02 -3.70724142e-01 1.52573809e-01 -2.36557230e-01\\n2.96522360e-02 -1.05543584e-01 2.60140777e-01 9.28126741e-03\\n1.39393806e-01 -3.34815681e-01 4.48461026e-01 -3.06142509e-01\\n-3.73616040e-01 -4.76591988e-03 8.22496414e-02 4.78394739e-02\\n4.15680468e-01 -4.46204513e-01 7.08519369e-02 3.15320730e-01\\n-1.03978328e-02 7.72280395e-02 3.03771585e-01 -1.84963062e-01\\n-1.51519775e-01 1.76267520e-01 -5.08940935e-01 7.60158673e-02\\n6.44866407e-01 2.23713979e-01 1.94563866e-01 1.21470325e-01\\n8.55949819e-02 2.62387365e-01 5.29690027e-01 -9.65695828e-02\\n-8.17004591e-02 3.01401079e-01 1.18478060e-01 -4.89300370e-01\\n-1.68362871e-01 3.42328362e-02 -2.10482910e-01 -3.36371869e-01\\n5.87874711e-01 4.00158763e-01 -3.26516360e-01 -2.25504622e-01\\n-1.75248578e-01 -2.00424492e-01 2.48733640e-01 -9.29925963e-02\\n3.47641222e-02 -1.46142602e-01 5.25421202e-01 -1.31914811e-02\\n2.87766814e-01 6.70130134e-01 -1.39748409e-01 -3.74768436e-01\\n-6.27821237e-02 1.86250106e-01 4.95405607e-02 4.38594848e-01\\n-2.92769261e-02 2.68550515e-01 2.84384135e-02 1.50260583e-01\\n-2.28690878e-01 7.69244134e-02 1.99819177e-01 1.25651926e-01\\n1.72179699e-01 1.81311443e-01 4.19532597e-01 4.85740602e-01\\n3.44022393e-01 5.25828540e-01 2.24859208e-01 2.90669631e-02\\n5.23472309e-01 5.46586692e-01 3.70946079e-01 1.85443550e-01\\n9.28168278e-03 1.96565613e-01 3.36900800e-02 5.63553646e-02\\n4.02377874e-01 3.33543152e-01 2.30170459e-01 9.00894821e-01\\n3.10412109e-01 4.19768780e-01 8.59087229e-01 -5.77185392e-01\\n-3.81871909e-01 3.82917933e-02 4.85036314e-01 -3.99065405e-01\\n-1.15501128e-01 9.95718315e-02 -1.37473613e-01 1.99428588e-01\\n-4.26239312e-01 -2.26816311e-01 -6.75036311e-02 6.18164130e-02\\n7.81300515e-02 -6.11863472e-02 -1.94224134e-01 5.13911061e-02\\n-3.04338753e-01 -1.30060166e-01 -4.28534299e-01 -1.48547679e-01\\n-3.31156373e-01 -6.62256405e-02 -1.21509805e-01 -1.64979786e-01\\n-1.01810642e-01 -2.82223254e-01 -1.42185792e-01 -4.73085679e-02\\n2.92213887e-01 -2.70095736e-01 -2.03561604e-01 -2.46930420e-01\\n2.22086355e-01 2.54910082e-01 4.95715588e-01 -2.20354497e-02\\n1.68087900e-01 -1.77644938e-01 -2.64950603e-01 1.13510517e-02\\n1.67651191e-01 1.40842751e-01 6.50413036e-02 5.22554576e-01\\n-2.45464087e-01 -1.02193050e-01 7.51220658e-02 4.58513826e-01\\n-2.71154523e-01 -5.72787113e-02 -1.57778591e-01 7.29441792e-02\\n-2.14735549e-02 1.49690762e-01 -2.94493526e-01 1.99490208e-02\\n-1.67247891e-01 -6.37611985e-01 3.59891146e-01 -2.50506103e-01\\n-1.03410117e-01 8.73118788e-02 2.96337545e-01 2.74575025e-01\\n-1.06553182e-01 1.31165946e-03 -1.54510468e-01 2.71891892e-01\\n1.16456620e-01 3.82360667e-01 -3.56671482e-01 -1.77260950e-01\\n-1.68665811e-01 1.46800652e-01 -2.26669163e-01 7.94112086e-02\\n-9.15244296e-02 4.05253470e-01 5.24261482e-02 1.19566478e-01\\n4.05661762e-01 1.78980362e-02 -2.99085587e-01 -2.62189686e-01\\n-1.98534638e-01 -2.97964066e-01 8.36004876e-03 3.85739356e-02\\n2.90382475e-01 -2.68002659e-01 -7.38082975e-02 -2.05758408e-01\\n-2.26247638e-01 -4.50070679e-01 -3.18310373e-02 4.15710136e-02]]',\n", + " 'job_description': 'Hexagon Manufacturing Intelligence offers a comprehensive range of products and services for all industrial metrology applications in sectors such as automotive, aerospace, energy and medical. By empowering our customers to fully control their manufacturing processes, we enhance the quality of products and increase efficiency in manufacturing plants around the world. To strengthen our R&D Team in Unterentfelden (Switzerland) we are looking for a C++ Software Development Engineer Develop innovative Windows software in a team for our Portable industrial measurement instruments, contribute to entirely new interdisciplinary technology developments for industry automation and production intelligence! Main responsibilities Design and develop software for highest precision Portable Arms, Scanners and Laser Trackers in a team Analyse customer needs in cooperation with requirements engineering team and form functional software specifications Develop prototypes of the technical solution for validation of requirements Define, plan and implement technical as well as functional testing of the software in cooperation with test team Analyse the technical and functional quality, propose fixes and put in technical compliance Edit technical documents and media for developers, users, IT services and further relevant stakeholders Required skills Programming language C ++, Visual Studio 2012 or greater Windows System Programming Mandatory (Multi-threading environment and good knowledge of communication protocols based on USB, TCP/IP) University degree (ETH, EPFL, FH, Haute école) in Electrical Engineering, Computer Science or other relevant education At least 5 years experiences in a similar working environment Application Architecture experience SQL language skills appreciated C# and C++/CLI experience appreciated Knowledge of DevExpress recommended Knowledge of algorithms and maths Reliable analysis and synthesis skills Very good English and German skills are mandatory, French is an advantage Willingness to travel (10-20%) between Unterentfelden (CH) and Montoire (F) If you are ready to work within a culture of high-performance and feel at home in a high-tech environment and you are ready to take the challenge at Hexagon Manufacturing Intelligence, join our team. E-mail',\n", + " 'soft_skills': '[\"Editing\", \"Innovation\", \"Planning\", \"Cooperation\"]',\n", + " 'hard_skills': '[\"Common Technical Document\", \"KM Programming Language\", \"Stakeholder Requirements\", \"Computer Science\", \"High Performance Computing\", \"System Programming\", \"Industrialization\", \"C++ (Programming Language)\", \"Windows System Administration\", \"Prototyping\", \"Industrial Automation\", \"Instrumentation\", \"E (Programming Language)\", \"TCP/IP\", \"Medic\", \"C++/CLI\", \"Microsoft Visual Studio\", \"Applications Architecture\", \"ARM Architecture\", \"Functional Testing\", \"USB\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Windows Software\", \"Requirements Engineering\", \"Laser Tracker\", \"Application Environments\", \"Validations\", \"DevExpress\", \"Software Requirements Specification\", \"Technical Solution Design\", \"Software Development\", \"Language Experience Approach\", \"Algorithms\", \"Communications Protocols\", \"SQL (Programming Language)\", \"Controllability\", \"Threading (Manufacturing)\", \"Manufacturing Processes\"]',\n", + " 'languages': \"['English', 'Lingala']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'software engineer - full stack java developer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.52013659e-01 3.14987391e-01 4.98675883e-01 -1.49462566e-01\\n6.19377375e-01 -6.78769723e-02 9.46942419e-02 3.59441549e-01\\n-5.46060055e-02 -3.28247279e-01 -8.47038850e-02 -2.60736674e-01\\n-3.26999873e-02 4.30207029e-02 2.16524333e-01 3.62203747e-01\\n1.75307781e-01 1.38287872e-01 -1.98144704e-01 2.09692672e-01\\n2.24972352e-01 1.75803062e-02 1.10203400e-02 6.03493869e-01\\n4.49026883e-01 5.54661714e-02 -1.17764167e-01 -9.89851262e-03\\n-3.59952360e-01 -3.18271458e-01 2.86048055e-01 -2.20888034e-02\\n-6.49549812e-02 -3.34450632e-01 6.64654234e-03 3.99620943e-02\\n-1.93437636e-01 -1.25377804e-01 8.67926478e-02 2.43884459e-01\\n-4.46313620e-01 -2.93730140e-01 2.08373979e-01 -1.08789410e-02\\n-2.32537538e-01 -2.71868497e-01 5.33793075e-03 7.86093064e-03\\n1.23631380e-01 5.12073711e-02 -5.45509934e-01 3.78219366e-01\\n-1.96481898e-01 -2.16456637e-01 2.80130923e-01 6.11890554e-01\\n3.02445032e-02 -5.38867831e-01 -3.68399858e-01 -1.80720180e-01\\n1.13001727e-01 -2.86440887e-02 5.77266403e-02 -1.08761162e-01\\n3.31922084e-01 3.57862972e-02 -6.14863038e-02 4.93751824e-01\\n-7.28502512e-01 -5.00550009e-02 -1.96709752e-01 -4.33579944e-02\\n-3.69874388e-01 -2.16356907e-02 -1.77239120e-01 -1.17191471e-01\\n-1.08489729e-01 3.76541823e-01 7.69375041e-02 4.62846756e-02\\n-1.09650023e-01 2.70926714e-01 -8.78617391e-02 1.25371963e-01\\n3.49326909e-01 1.66316420e-01 1.79949626e-01 2.84806699e-01\\n-3.59135240e-01 3.73519361e-01 1.37599751e-01 -2.78775901e-01\\n2.40665749e-01 1.02022931e-01 4.57077265e-01 1.49675861e-01\\n-1.48923546e-01 1.91349044e-01 -1.60248905e-01 2.90379882e-01\\n2.64441788e-01 -2.41746664e-01 2.42725313e-02 2.79728305e-02\\n-2.27288797e-01 -1.31982323e-02 -1.03420459e-01 4.03144151e-01\\n-3.42770696e-01 4.09669727e-01 2.35441700e-01 -1.32976085e-01\\n-1.18057735e-01 -6.43509865e-01 -9.27304551e-02 -2.66000070e-02\\n-4.11300454e-03 2.27015838e-01 3.07156414e-01 1.44650027e-01\\n1.42468497e-01 5.22581190e-02 2.42307961e-01 9.28773642e-01\\n1.53279128e-02 1.59247294e-01 -3.10776442e-01 2.67138481e-01\\n1.94132328e-01 -1.77301362e-01 1.69608220e-01 3.16468745e-01\\n5.54946363e-02 -6.26173541e-02 -7.30333626e-02 2.80940622e-01\\n-1.85103953e-01 -1.82989106e-01 -2.45965749e-01 4.43233885e-02\\n-3.64470452e-01 -3.20324123e-01 4.56060618e-01 2.12975398e-01\\n1.47280589e-01 -1.02576725e-01 -5.25261164e-02 -7.34806284e-02\\n-1.08379818e-01 4.83625680e-01 -6.45359829e-02 1.32759511e-01\\n-3.21604788e-01 -1.01441301e-01 -2.98326701e-01 3.23897451e-01\\n3.45285051e-02 -6.90036593e-03 -4.04880792e-02 -7.87153468e-02\\n3.62320393e-01 9.77900773e-02 -3.14826787e-01 3.14715594e-01\\n3.88534293e-02 -2.77465105e-01 -1.84018537e-01 8.37236717e-02\\n3.71313058e-02 1.02877013e-01 -5.72167933e-02 -3.44568670e-01\\n4.63517457e-01 1.43529117e-01 1.64343193e-01 -8.68767500e-02\\n2.46774018e-01 -2.71988004e-01 1.92623451e-01 9.61904675e-02\\n-5.74545324e-01 3.81451786e-01 -9.91794541e-02 -6.46880791e-02\\n-1.52259246e-02 8.35656449e-02 3.40527415e-01 -2.43739039e-01\\n4.49806936e-02 -1.54684111e-01 -4.05371457e-01 -4.24218118e-01\\n-2.15315282e-01 -5.56302033e-02 3.97577792e-01 -3.96517426e-01\\n-2.79720038e-01 1.92272380e-01 -4.18679506e-01 -4.86529581e-02\\n2.70251691e-01 7.74495229e-02 9.75372568e-02 1.00433484e-01\\n-1.68625742e-01 -4.96924192e-01 6.31347522e-02 -4.79828387e-01\\n-3.95207167e-01 5.58082312e-02 -1.98821679e-01 1.79806828e-01\\n-4.88716848e-02 7.27397762e-03 -1.63596481e-01 2.01401189e-01\\n-3.10167611e-01 -7.52772689e-02 1.69226721e-01 1.85118288e-01\\n3.55585635e-01 -3.29437442e-02 -4.19796795e-01 3.70267302e-01\\n-2.12005854e-01 6.05258524e-01 2.24691793e-01 -9.10604656e-01\\n5.20170152e-01 2.32071623e-01 1.29163653e-01 -3.61692876e-01\\n6.24730766e-01 -2.38394991e-01 1.31199375e-01 1.96175426e-01\\n-3.01004618e-01 -2.63884455e-01 3.00934702e-01 -1.31390914e-01\\n-2.22206622e-01 5.78279555e-01 9.26048309e-02 -5.70313260e-02\\n2.03894049e-01 -2.64398217e-01 -1.08757056e-01 4.37385589e-02\\n-1.57204531e-02 -2.20091820e-01 -2.82680720e-01 -1.50626171e-02\\n-1.03365071e-01 -5.29074669e-01 -1.71930596e-01 -3.51354390e-01\\n-2.28636026e-01 -3.40003103e-01 -2.36452207e-01 4.60241884e-01\\n1.13807186e-01 1.14731990e-01 1.60406336e-01 4.63031083e-02\\n-8.42834637e-02 -5.52983820e-01 -1.51225343e-01 1.13453895e-01\\n4.76827532e-01 2.35291198e-01 1.28665924e-01 -2.72304211e-02\\n-1.52782395e-01 4.44225460e-01 -1.69254705e-01 -2.20837906e-01\\n2.50568129e-02 1.69954792e-01 5.21501601e-02 7.94483162e-03\\n-6.90949559e-02 2.98909038e-01 -1.90549955e-01 4.69063781e-02\\n-1.05067164e-01 4.88601625e-02 3.59492719e-01 1.44397140e-01\\n-3.11700553e-01 -1.96354210e-01 -7.23533854e-02 3.20021570e-01\\n-5.60514450e-01 -1.44133985e-01 6.30275071e-01 1.89523518e-01\\n1.67969808e-01 2.18249738e-01 2.81058908e-01 -6.46038130e-02\\n-1.29435658e-01 -2.20126629e-01 6.25483915e-02 1.90288603e-01\\n9.59240124e-02 6.57864427e-03 -1.54906392e-01 -5.57151198e-01\\n-3.66709495e+00 -3.21674794e-01 2.05407217e-01 -3.87526035e-01\\n2.24158123e-01 -1.59376472e-01 3.74792777e-02 -5.64840659e-02\\n-2.05428258e-01 9.88458768e-02 -2.15622723e-01 -2.12164864e-01\\n1.42023712e-01 3.07459921e-01 -2.35642884e-02 4.35731500e-01\\n9.42200795e-02 -1.49753049e-01 -9.04236063e-02 3.25699478e-01\\n-1.89385489e-01 -6.56188071e-01 1.91409037e-01 -5.36648482e-02\\n2.29743153e-01 2.18132108e-01 -3.40216339e-01 -1.21686369e-01\\n-2.30724692e-01 -2.56748945e-01 8.31776410e-02 -2.70381123e-01\\n-1.09648369e-01 3.04436058e-01 7.92108104e-02 -9.35184509e-02\\n1.31706938e-01 -3.06655288e-01 -8.83650407e-03 -4.54950750e-01\\n7.50941709e-02 -6.27078712e-01 2.69191749e-02 -3.82305756e-02\\n7.92820156e-01 -4.23646122e-01 8.19388554e-02 1.69780940e-01\\n1.54763624e-01 2.09114775e-01 -1.37851089e-01 -1.09411791e-01\\n-1.53931648e-01 -3.36255670e-01 -3.71555462e-02 -1.84392989e-01\\n3.12065512e-01 5.85979044e-01 -1.81631461e-01 1.02423146e-01\\n8.65050554e-02 -3.31391305e-01 -3.37217778e-01 -4.62312967e-01\\n-1.95031002e-01 -2.00464517e-01 -7.34988511e-01 -4.08285916e-01\\n-9.11605656e-02 -7.35024065e-02 -2.31328994e-01 4.81819510e-01\\n-3.69307727e-01 -5.26586950e-01 4.32224898e-03 -4.69191641e-01\\n1.60464227e-01 -2.87549436e-01 -9.37615288e-04 -1.97339326e-01\\n-4.18792039e-01 -3.76754999e-01 7.56531358e-02 3.62008251e-02\\n-1.50471807e-01 -1.08118720e-01 -3.78506593e-02 -2.24661604e-01\\n-3.39920759e-01 -3.91010493e-01 4.81264979e-01 8.71512443e-02\\n3.09229970e-01 1.52905688e-01 2.10187986e-01 2.46850610e-01\\n2.70715773e-01 -3.15705866e-01 8.74501020e-02 -2.93342084e-01\\n1.35655046e-01 -1.53619098e-02 6.00271642e-01 -3.57020408e-01\\n1.71679258e-01 6.39556497e-02 -2.10834026e-01 -9.81244147e-02\\n3.96443903e-01 7.00421259e-02 -1.14076577e-01 -1.16771087e-01\\n2.11876944e-01 -4.54549164e-01 -3.27892870e-01 1.53480634e-01\\n-3.78838219e-02 5.53942442e-01 1.56106399e-02 -4.48511600e-01\\n-2.95677662e-01 4.42950070e-01 -1.33867830e-01 -2.81414390e-01\\n-2.23944098e-01 9.99811292e-02 -1.40910774e-01 1.96330965e-01\\n1.19188286e-01 -2.36660287e-01 -3.80270749e-01 -1.69880748e-01\\n-3.01252375e-03 9.91581231e-02 2.83685327e-01 7.49830306e-02\\n3.61404233e-02 -2.55435884e-01 -1.10166661e-01 2.25364920e-02\\n3.01906377e-01 2.67345279e-01 2.47903302e-01 -1.53308153e-01\\n-2.57727318e-02 1.91328034e-01 -2.80551553e-01 1.74871564e-01\\n-2.32761279e-01 -4.64997590e-02 -4.33564782e-01 -3.76308382e-01\\n-4.30411883e-02 -3.19108278e-01 5.94043322e-02 2.49856457e-01\\n1.62800565e-01 -3.94068513e-04 -8.13521296e-02 -4.79383111e-01\\n4.69607770e-01 -1.34153157e-01 2.35822797e-01 3.10918242e-01\\n3.40024158e-02 4.95612055e-01 5.46760783e-02 3.17408368e-02\\n-1.01716511e-01 -7.59381056e-02 -2.49474093e-01 -9.57049876e-02\\n5.58564141e-02 -3.24062824e-01 -9.18781459e-02 4.29501921e-01\\n3.94939072e-02 -3.58935565e-01 -9.49870497e-02 2.54377812e-01\\n-6.24632882e-03 -2.16304705e-01 -5.65836541e-02 1.95615813e-01\\n2.53782541e-01 1.21416062e-01 3.02514553e-01 -4.50497717e-01\\n-1.11187093e-01 1.60290569e-03 -1.30796805e-01 4.99308914e-01\\n1.78695589e-01 9.70774889e-02 -1.29326120e-01 -2.76138425e-01\\n4.24660414e-01 -7.25370646e-02 -1.03055663e-01 -5.31438664e-02\\n4.44369540e-02 -1.61086947e-01 -5.24770319e-01 -2.89943372e-03\\n2.28512157e-02 -1.15287147e-01 2.29626130e-02 -4.93510626e-02\\n1.51296824e-01 -3.75148766e-02 -3.62063050e-01 -3.82388532e-01\\n-3.37493032e-01 -8.73018578e-02 -5.24179414e-02 -4.16568726e-01\\n-5.35183446e-03 5.95281948e-04 -6.24756575e-01 3.41604978e-01\\n-2.75126934e-01 3.46427336e-02 9.51784775e-02 1.54588282e-01\\n-3.40726852e-01 -1.76001452e-02 1.78427130e-01 2.01702312e-01\\n-2.81614572e-01 -2.20565051e-01 1.09290175e-01 -8.67535174e-01\\n6.25886694e-02 -9.98759791e-02 -5.01983277e-02 1.10529200e-03\\n1.09972350e-01 -3.99392664e-01 1.24992162e-01 -3.57988685e-01\\n2.82402411e-02 5.10724969e-02 -7.61764795e-02 -5.82448363e-01\\n1.25016361e-01 -1.06185094e-01 -2.59459227e-01 4.08513993e-01\\n-3.88595104e-01 3.01654071e-01 1.08958885e-01 1.12777755e-01\\n5.38329519e-02 -3.41170073e-01 1.99196577e-01 -2.50295907e-01\\n-3.93673182e-01 -4.84476723e-02 -3.89033109e-01 -1.74576104e-01\\n5.82356863e-02 -1.34176061e-01 -1.92337245e-01 1.01923749e-01\\n2.61102587e-01 1.37022555e-01 -8.17436278e-02 -2.04074338e-01\\n1.63056642e-01 -4.44226444e-01 4.37822714e-02 -2.05641136e-01\\n-3.06552351e-02 -4.44442481e-02 1.19641609e-01 -7.66662508e-02\\n-3.15643772e-02 -1.99992269e-01 5.91043115e-01 -1.95216879e-01\\n-2.93505847e-01 -4.66335937e-02 7.15174377e-02 8.55314881e-02\\n3.40944499e-01 -5.18271208e-01 9.12138671e-02 3.28552485e-01\\n5.93471974e-02 1.53613970e-01 2.34052882e-01 -4.99007627e-02\\n-1.32086501e-01 3.12549889e-01 -5.03949463e-01 1.99456379e-01\\n7.58330464e-01 1.21423610e-01 9.51919332e-02 1.67282090e-01\\n2.11784631e-01 3.37930739e-01 5.50765514e-01 1.02067903e-01\\n-1.42138913e-01 3.58938187e-01 -2.59078424e-02 -6.46496415e-01\\n4.94361809e-03 -1.14232913e-01 -2.54989743e-01 -4.44882423e-01\\n5.56324482e-01 3.99009615e-01 -3.28670889e-01 -2.07943082e-01\\n-4.15909924e-02 -1.65855423e-01 5.36641441e-02 -1.22537367e-01\\n8.36050417e-03 -2.06697732e-01 5.76773286e-01 -2.45219208e-02\\n3.81942928e-01 5.32828033e-01 -1.04024626e-01 -4.31479514e-01\\n-2.11436272e-01 3.91425518e-03 1.33288920e-01 3.69787633e-01\\n-6.87014759e-02 2.45271862e-01 -1.12063035e-01 1.58983946e-01\\n8.25871229e-02 5.76661080e-02 1.42010286e-01 4.79134321e-02\\n8.32314119e-02 1.85751423e-01 1.79356813e-01 3.42706323e-01\\n2.58858800e-01 5.28152764e-01 2.55628347e-01 1.74982756e-01\\n3.99481475e-01 6.04519844e-01 3.55694264e-01 1.61918715e-01\\n-6.49639294e-02 1.32824266e-02 -1.63286835e-01 -8.08830410e-02\\n2.80871809e-01 2.71701097e-01 1.93301246e-01 8.42167199e-01\\n3.04525375e-01 1.99922547e-01 6.98669016e-01 -6.03024483e-01\\n-5.31206906e-01 -2.84119975e-02 5.33286572e-01 -2.71053165e-01\\n-1.54287487e-01 1.32848889e-01 -3.26116294e-01 1.63779929e-01\\n-5.13619602e-01 -9.44642127e-02 -5.10765873e-02 -9.32022631e-02\\n1.46036565e-01 -8.07197019e-02 -2.30095029e-01 -1.70089751e-02\\n-1.72730550e-01 -1.90615252e-01 -3.85003328e-01 -6.02812320e-02\\n-3.13139558e-01 -1.66533947e-01 -1.18718743e-01 -2.01102540e-01\\n-7.21588284e-02 -3.44249576e-01 -1.79235116e-01 1.42913252e-01\\n4.69955057e-01 -7.31411278e-02 -1.21854678e-01 -8.97288546e-02\\n-6.86200988e-03 2.69235164e-01 4.66608673e-01 -1.19274244e-01\\n9.24327001e-02 -1.18086897e-01 -2.65166670e-01 -1.49913905e-02\\n1.97604567e-01 4.23635766e-02 -9.24727507e-03 4.84428227e-01\\n-3.17772239e-01 3.65552641e-02 8.14083815e-02 2.80802608e-01\\n-4.12942976e-01 -1.21794520e-02 2.11322083e-04 4.14862454e-01\\n1.48256123e-01 2.07748875e-01 -2.89492637e-01 2.25406602e-01\\n-2.48036593e-01 -4.52533871e-01 3.92580628e-01 -1.13978498e-01\\n-4.47406881e-02 1.85066402e-01 1.94632500e-01 1.30893290e-01\\n-2.74947315e-01 -4.72730882e-02 1.34449070e-02 3.27950835e-01\\n1.49212852e-01 3.89517605e-01 -3.53329629e-01 -1.15753040e-01\\n-1.85057268e-01 2.64325917e-01 -9.13657174e-02 1.53681889e-01\\n-1.61684871e-01 3.21962178e-01 1.08942069e-01 2.02699363e-01\\n2.11249799e-01 -1.85731351e-02 -2.22650334e-01 -2.71842867e-01\\n-3.53455395e-01 -3.11012745e-01 1.71248302e-01 -1.56482831e-02\\n1.82968259e-01 -3.95491630e-01 -1.29597157e-01 -1.61594078e-01\\n-2.44051546e-01 -4.61211562e-01 -6.47406504e-02 -8.16108584e-02]]',\n", + " 'job_description': 'About our client Our client belongs to the leading IT companies in Switzerland. Your responsibilities Understand and prioritize product requirements and end-user needs and drivers Elicit and analyze all requirements, including business rules Design, develop and support application solutions to meet client requirements Your profile A degree in Computer Science (IT apprenticeship graduates, higher education in IT, bachelor) Demonstrated work experience and knowledge of Web Development using Java, JavaScript, Python Experience on one or more of the following (AngularJS, NodeJS, Django / Flask, Bootstrap, Knockout, AureliaJS or similar. Build Chain: SVN Git, Ant, Maven) Knowledge of databases (SQL) Experience on Agile development methodologies Excited to explore new technologies and able to quickly learn An ability to pro-actively take ownership of and analytical problem solving skills Good knowledge of the German & English language (written & spoken) Swiss nationality or valid Swiss work permit / EU passport Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript SQL Sprachen: Deutsch Englisch Job ID: 2411',\n", + " 'soft_skills': '[\"Prioritization\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Knockout.js\", \"Hyper SQL Database (HSQLDB)\", \"Computer Science\", \"Analytics\", \"Higher Education\", \"Activism\", \"Python (Programming Language)\", \"Web Development\", \"Flask (Web Framework)\", \"Business Card Design\", \"Django (Web Framework)\", \"Apache Ant\", \"Bootstrap (Front-End Framework)\", \"Agile Software Development\", \"Apache Maven\", \"Git (Version Control System)\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Product Requirements\"]',\n", + " 'languages': \"['English', 'Bambara']\"},\n", + " {'company_id': '106',\n", + " 'job_title': 'software development engineer i (software test intern)',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.sophiagenetics.com',\n", + " 'jobdescription_embedded': '[[-1.45040169e-01 2.43918747e-01 2.49610946e-01 -6.05511628e-02\\n4.35218841e-01 -3.24340552e-01 2.13359501e-02 4.61109936e-01\\n-3.59165035e-02 -3.28257531e-01 -1.32986948e-01 -2.04800457e-01\\n-4.93541099e-02 4.20732200e-02 1.48836568e-01 3.60697687e-01\\n3.89183313e-01 7.73257464e-02 -1.16200820e-01 4.09679890e-01\\n6.71140254e-02 -2.16532841e-01 -6.70551881e-02 6.29718304e-01\\n3.70783478e-01 3.16479988e-02 1.83080453e-02 1.96677893e-01\\n-2.37260416e-01 -3.38546485e-01 3.34148109e-01 2.28177607e-02\\n5.55341365e-04 -3.58055234e-01 8.63800570e-02 1.60942480e-01\\n-1.67472865e-02 4.60683070e-02 -1.22591250e-01 2.13016942e-01\\n-5.81918120e-01 -2.63937026e-01 2.48504467e-02 1.55272158e-02\\n-9.84513983e-02 -4.79042977e-01 2.47301653e-01 -1.95607930e-01\\n2.14319080e-01 5.72143234e-02 -4.46977884e-01 3.43618035e-01\\n-3.38282228e-01 -2.42594972e-01 4.10583347e-01 6.00365520e-01\\n-2.38164589e-01 -5.85897863e-01 -5.78331053e-01 -2.52606601e-01\\n1.75116554e-01 -1.72457799e-01 -1.76500864e-02 -4.29261893e-01\\n4.01976734e-01 2.14231044e-01 1.91741865e-02 4.92938131e-01\\n-7.11642265e-01 -1.57387689e-01 -3.42758924e-01 2.46393103e-02\\n-3.03741753e-01 -2.08730459e-01 -2.56044120e-01 -3.27072293e-02\\n-1.36367872e-01 4.09183979e-01 -9.30086076e-02 1.34123638e-02\\n-1.12481169e-01 4.15539324e-01 -3.69695514e-01 2.39552900e-01\\n2.46067286e-01 1.48024291e-01 2.21520856e-01 2.32972607e-01\\n-3.61598730e-01 4.13265526e-01 3.29298489e-02 -3.03235471e-01\\n1.80740714e-01 5.12200035e-02 4.00378019e-01 -4.78562415e-02\\n2.40603387e-01 1.99943900e-01 -3.53114456e-01 3.01069736e-01\\n3.30538005e-01 -1.76839322e-01 -1.61917135e-02 -2.03690045e-02\\n4.76897415e-03 1.46301640e-02 1.11529313e-01 2.23647743e-01\\n-2.86237776e-01 5.36657453e-01 1.84208691e-01 -2.94665158e-01\\n-1.25850916e-01 -6.01912558e-01 -2.76139110e-01 1.28839642e-01\\n-1.55592454e-04 -4.09998298e-02 1.23937182e-01 2.12408841e-01\\n1.43723711e-01 -1.92411751e-01 1.39603570e-01 7.03543603e-01\\n-1.06781922e-01 1.17349446e-01 -2.60870606e-01 2.95540273e-01\\n7.87486807e-02 -1.76147789e-01 1.44951060e-01 2.31700897e-01\\n2.20957965e-01 -2.09934101e-01 -2.30768532e-01 3.11236978e-01\\n-1.84955582e-01 -1.91931292e-01 -4.42250222e-01 2.34433487e-01\\n-3.25413011e-02 -1.92228839e-01 5.93491554e-01 -5.38276955e-02\\n1.38339832e-01 8.78025442e-02 -5.02368771e-02 -7.85138384e-02\\n-2.06102103e-01 2.70728827e-01 1.31037340e-01 1.47144347e-01\\n-3.29785287e-01 -1.96652994e-01 -2.04668432e-01 1.73613936e-01\\n-3.44449610e-01 1.45161837e-01 -2.87512153e-01 -7.09201247e-02\\n4.66383725e-01 -1.08579397e-02 -2.83172458e-01 2.36123487e-01\\n6.41300157e-02 1.13296121e-01 -2.66319495e-02 2.95455575e-01\\n-5.26588298e-02 2.31064036e-01 -1.75690755e-01 -1.52691513e-01\\n7.82397926e-01 1.54860198e-01 1.39157444e-01 -1.57523200e-01\\n3.51078629e-01 3.71129625e-02 1.31214857e-01 -1.98092759e-02\\n-7.53940284e-01 2.13924512e-01 -2.37318259e-02 -2.89923679e-02\\n3.34641673e-02 -7.99368918e-02 2.07605511e-01 -3.32854182e-01\\n-1.92613289e-01 -1.07796133e-01 -3.27506304e-01 -3.28069597e-01\\n-3.80480975e-01 -1.02159176e-02 3.82657140e-01 -3.88001025e-01\\n-2.01829359e-01 2.62035698e-01 -5.70175469e-01 -3.96248773e-02\\n3.62336099e-01 1.96242630e-01 1.81612849e-01 2.10568830e-01\\n-2.31701389e-01 -5.87687731e-01 1.71487942e-01 -4.15798694e-01\\n-2.42546350e-01 2.54431933e-01 -3.18957686e-01 3.73573333e-01\\n1.16286948e-01 -3.38030956e-03 -1.47232741e-01 2.58611500e-01\\n-6.88580126e-02 -4.76695336e-02 1.32913530e-01 -2.22192071e-02\\n3.14100057e-01 1.13955759e-01 -5.04622221e-01 3.53166729e-01\\n-8.38970914e-02 4.15190488e-01 9.51870680e-02 -6.71262562e-01\\n4.88334686e-01 4.12686259e-01 5.85948415e-02 -2.78756946e-01\\n6.70250535e-01 -1.75703451e-01 -1.83946997e-01 1.02670617e-01\\n-4.81866300e-01 -3.26760113e-01 2.26163968e-01 -1.51018485e-01\\n-2.50708848e-01 5.39674938e-01 6.50392920e-02 2.01199338e-01\\n4.28813070e-01 -1.15872510e-01 2.88410243e-02 2.56727815e-01\\n-6.76439479e-02 -9.73750651e-02 -4.41832066e-01 -2.50632972e-01\\n-4.28051837e-02 -5.61066806e-01 -2.19127536e-01 -3.94207746e-01\\n-2.93946296e-01 -2.82612652e-01 -2.55513489e-01 2.52856314e-01\\n3.02235097e-01 1.85128018e-01 4.85412963e-02 1.60172537e-01\\n-2.31194004e-01 -6.66877031e-01 1.10724188e-01 1.82035044e-01\\n1.85575426e-01 2.36542314e-01 -2.83286721e-02 -6.71639666e-02\\n-3.49858068e-02 6.03506923e-01 -3.94858569e-01 -2.22049758e-01\\n1.79341808e-01 1.31845042e-01 1.76905859e-02 -7.43295997e-02\\n1.38744801e-01 4.02610898e-01 -4.16190475e-01 2.07002833e-01\\n-7.06594577e-03 -1.90075159e-01 3.07962328e-01 1.90253317e-01\\n-3.96299601e-01 -3.29710126e-01 -2.71249235e-01 7.17191547e-02\\n-5.59353769e-01 -2.25110009e-01 6.22588158e-01 8.66115317e-02\\n2.63328969e-01 2.61410803e-01 3.56450766e-01 -1.85606942e-01\\n-1.70293868e-01 -2.54973054e-01 1.90015584e-01 1.46230653e-01\\n1.38721243e-01 2.58141279e-01 -2.06138462e-01 -6.94226086e-01\\n-3.42255473e+00 -8.36404115e-02 2.57267803e-01 -3.99933070e-01\\n2.13762164e-01 -7.19644502e-02 1.51995376e-01 -1.82992756e-01\\n-3.39635313e-01 -4.82935868e-02 -1.44751340e-01 -2.13988289e-01\\n2.14998737e-01 3.28329951e-01 9.54044089e-02 2.87558526e-01\\n2.96765566e-01 -1.96990013e-01 -5.89065738e-02 3.79674494e-01\\n-2.43185923e-01 -5.10029912e-01 6.21210933e-02 -7.10221529e-02\\n3.19601685e-01 3.44973922e-01 -3.26814115e-01 -6.19499721e-02\\n-2.32265234e-01 -1.83021933e-01 1.50150895e-01 -2.25283429e-01\\n-1.61146015e-01 2.57369161e-01 1.07881673e-01 -2.91693900e-02\\n1.14675276e-01 -2.86688894e-01 1.67473495e-01 -3.67356151e-01\\n4.44465429e-02 -6.13409102e-01 -1.58971325e-02 -7.98409283e-02\\n8.25196862e-01 -3.03853601e-01 1.27551153e-01 1.29744699e-02\\n1.76556945e-01 3.27768952e-01 -1.56830344e-02 -1.26941176e-02\\n-1.64255634e-01 -1.91301778e-01 -9.97355729e-02 -7.54038841e-02\\n5.73324561e-01 4.93259013e-01 -2.11900324e-01 -9.39043909e-02\\n-4.37686890e-02 -4.95605558e-01 -4.52373117e-01 -1.49517879e-01\\n-1.79922208e-01 -3.52123767e-01 -4.33427155e-01 -3.61528546e-01\\n-1.38956115e-01 -5.14511168e-02 -5.93510978e-02 5.94122350e-01\\n-4.58097726e-01 -5.12728631e-01 -9.63635370e-02 -4.92741138e-01\\n6.03403561e-02 -5.12107797e-02 4.66527678e-02 -1.74912855e-01\\n-3.25792193e-01 -5.05182862e-01 3.50125208e-02 3.25536095e-02\\n-1.01458371e-01 -1.68556765e-01 8.12185034e-02 -5.13748340e-02\\n-3.49517733e-01 -6.98574603e-01 3.55509341e-01 1.20651878e-01\\n1.76240981e-01 1.14340216e-01 1.03831366e-01 4.46319878e-02\\n3.47419113e-01 -2.18904451e-01 4.75204922e-02 -3.45050067e-01\\n3.91468257e-02 -3.49460617e-02 6.90425038e-01 -2.64231384e-01\\n2.81520113e-02 1.16268657e-01 -3.66393328e-01 -1.65717423e-01\\n2.72890329e-01 1.01640642e-01 1.49667382e-01 -4.35814679e-01\\n4.09428000e-01 -2.27107301e-01 -2.81640202e-01 1.21098325e-01\\n-1.40129533e-02 5.80821157e-01 -1.80200599e-02 -2.88078398e-01\\n-2.09441751e-01 4.05577481e-01 -1.50888175e-01 -6.20271266e-02\\n-1.34861737e-01 6.95050880e-02 -3.31925541e-01 1.07105039e-01\\n1.79025471e-01 -9.37107205e-02 -1.11174338e-01 -1.68807451e-02\\n-1.53111696e-01 3.75387788e-01 1.69666678e-01 3.55107300e-02\\n-1.24839172e-01 -3.65374923e-01 7.04516694e-02 1.57292232e-01\\n-8.80743098e-03 4.25543576e-01 1.09774247e-02 -3.06900233e-01\\n-7.55000338e-02 3.37228477e-01 -1.77001894e-01 -5.44317998e-03\\n-1.75682455e-01 7.21209124e-02 -3.99006516e-01 -1.73145980e-01\\n-3.06020826e-01 -4.80457455e-01 3.19376774e-02 2.54238904e-01\\n1.05495043e-01 -3.13129229e-03 3.60671319e-02 -3.81018817e-01\\n1.88479543e-01 2.07004666e-01 3.26578766e-01 2.56011218e-01\\n-4.68259752e-02 4.96040463e-01 1.12041004e-01 -1.40338048e-01\\n-1.66195944e-01 8.52999985e-02 -2.57190943e-01 -1.81974813e-01\\n1.37128532e-01 -4.67000097e-01 -5.87725155e-02 4.03841794e-01\\n5.42038083e-02 -2.13119358e-01 -2.35106394e-01 1.53255090e-01\\n-9.10241529e-02 -4.79228348e-01 -1.98599368e-01 4.40861247e-02\\n2.09810749e-01 9.70690995e-02 3.51488769e-01 -3.79534364e-01\\n-2.92679816e-02 -1.11681908e-01 -2.05702990e-01 3.82717848e-01\\n-1.15497205e-02 5.58792464e-02 -3.50603104e-01 -2.00386927e-01\\n3.17643762e-01 -1.45951748e-01 -3.57574038e-02 3.00789974e-03\\n1.45071402e-01 -2.32527554e-01 -4.20417666e-01 7.90153965e-02\\n-4.72478382e-02 6.07494917e-03 5.02597541e-02 -1.06767891e-02\\n-7.72509584e-03 9.66040567e-02 -5.78982890e-01 -2.85135567e-01\\n-2.86035180e-01 -1.20438166e-01 -7.78919980e-02 -4.26137775e-01\\n-4.18244898e-02 -2.12376136e-02 -5.16903341e-01 3.00814927e-01\\n-3.07659179e-01 8.80233645e-02 2.78412312e-01 5.55151924e-02\\n-2.94673741e-01 -1.29076019e-01 2.19872102e-01 1.85419261e-01\\n-3.96872759e-01 -2.63088167e-01 -1.30388677e-01 -8.63465548e-01\\n2.26877525e-01 -1.77130654e-01 -2.04664469e-01 6.14290908e-02\\n-9.26524252e-02 -6.64731085e-01 1.88998684e-01 -3.61344576e-01\\n-1.20619036e-01 4.96506505e-02 -1.78972501e-02 -3.75305414e-01\\n-6.53465018e-02 -2.40656286e-01 -3.50097775e-01 3.77256691e-01\\n-3.46721262e-01 4.08829361e-01 -4.84675243e-02 1.27424002e-01\\n-1.60014808e-01 -3.13275754e-01 1.06276743e-01 -5.36897838e-01\\n-5.23146391e-01 -1.34195879e-01 -1.49747267e-01 -7.48694763e-02\\n2.03489169e-01 -3.40704381e-01 -1.26067489e-01 2.26069212e-01\\n1.65339366e-01 -8.04451779e-02 -1.11579694e-01 -2.59146094e-01\\n-3.55778560e-02 -4.91988778e-01 3.26792300e-02 -3.68297547e-02\\n1.63655788e-01 -7.77110904e-02 1.47230819e-01 2.11117193e-01\\n1.57889545e-01 -4.85724419e-01 3.92404050e-01 -2.21464410e-01\\n-2.74112344e-01 7.66450390e-02 1.16690636e-01 -2.17486992e-02\\n3.82355362e-01 -4.51687872e-01 -3.55237201e-02 5.05842268e-01\\n6.38002306e-02 5.78423291e-02 1.26966804e-01 -9.32557858e-04\\n-1.07497826e-01 1.54630318e-01 -8.31102654e-02 1.96933031e-01\\n7.07163811e-01 2.13611796e-01 1.14802539e-01 1.28329083e-01\\n8.36823508e-02 5.12113750e-01 5.73780894e-01 5.17482460e-02\\n1.40407318e-02 3.34495157e-01 2.01663896e-02 -4.75423455e-01\\n-1.52026699e-03 1.74411893e-01 -3.03197265e-01 -2.48266786e-01\\n5.50229251e-01 5.26378214e-01 -5.01606166e-01 -4.37584341e-01\\n-1.23171255e-01 -3.34311903e-01 2.70197336e-02 -8.27212110e-02\\n9.15229246e-02 -2.27184281e-01 5.52674353e-01 3.94441746e-02\\n7.27965087e-02 4.84600097e-01 -6.07173555e-02 -2.60610461e-01\\n5.68313301e-02 2.26621062e-01 1.22975133e-01 2.41837040e-01\\n-1.16584487e-01 3.84050399e-01 -2.33138010e-01 1.11699380e-01\\n-1.09851907e-03 1.15121618e-01 2.06875086e-01 1.32145375e-01\\n-8.94461274e-02 2.74272591e-01 5.86958051e-01 6.17474616e-01\\n3.26788038e-01 4.66203272e-01 3.01612705e-01 4.68677022e-02\\n5.80097914e-01 5.07889211e-01 4.50936288e-01 2.26419061e-01\\n-2.55675241e-02 1.22042373e-01 7.99114704e-02 1.10607937e-01\\n3.39621574e-01 3.95953089e-01 4.94239293e-02 8.02499294e-01\\n3.21913302e-01 2.38352314e-01 6.71470106e-01 -6.59073591e-01\\n-2.66737431e-01 -1.50125399e-01 3.68587524e-01 -2.68445998e-01\\n-1.16957344e-01 7.21373037e-02 -2.48553842e-01 2.37540692e-01\\n-4.64693457e-01 -2.67977178e-01 -7.80038461e-02 2.63734162e-01\\n1.19255126e-01 -1.59966618e-01 -2.19834715e-01 -3.35408077e-02\\n-1.51003987e-01 -1.22006103e-01 -5.20483851e-01 -4.92177270e-02\\n-2.68192500e-01 -2.68123478e-01 8.21355730e-02 -1.52703568e-01\\n-9.29683000e-02 -4.28811729e-01 -2.06460446e-01 -6.29300028e-02\\n2.86403745e-01 -2.33321145e-01 -5.49746770e-03 -2.01876491e-01\\n3.01622272e-01 1.79429933e-01 5.59706807e-01 1.30797829e-03\\n-3.67049836e-02 -2.71118075e-01 -1.61450744e-01 1.88510746e-01\\n9.14105698e-02 1.18125379e-01 1.47389323e-01 5.04118741e-01\\n-4.04495090e-01 -2.27436021e-01 1.11900426e-01 5.06911933e-01\\n-4.92988825e-01 1.13700956e-01 -4.16578278e-02 2.39623979e-01\\n1.27752572e-01 1.80794075e-01 -1.16537116e-01 4.37987857e-02\\n-1.37106299e-01 -5.09634733e-01 3.09846908e-01 1.21800512e-01\\n-2.09993750e-01 1.72209039e-01 2.16535896e-01 2.67192364e-01\\n-2.03697667e-01 -1.15874194e-01 2.58746147e-02 9.78002027e-02\\n3.89603116e-02 4.58330959e-01 -2.35796437e-01 -5.25199294e-01\\n-2.85331398e-01 1.97863638e-01 -1.81492120e-01 1.30396970e-02\\n-3.28934938e-02 2.86172211e-01 1.51159555e-01 1.45528644e-01\\n3.45906913e-01 2.50907242e-02 -1.38750181e-01 -1.58663154e-01\\n-2.79851574e-02 -2.20315740e-01 8.45866799e-02 4.18383069e-03\\n5.55489510e-02 -5.17130911e-01 -1.15104608e-01 -9.28531215e-02\\n-1.51568115e-01 -1.93232164e-01 -3.25193144e-02 -3.88728194e-02]]',\n", + " 'job_description': 'The Integration & Release (IR) Team is looking for a Test Engineer Intern. You will contribute to the testing and continuous integration of the SOPHiA platform by: Scripted and exploratory (manual) testing of the SOPHiA platform Documenting and reporting on test results Bug reporting and verification You will work alongside a team of project managers, developers and test engineers giving you an insight into the world of agile development. Who are you? You are currently enrolled at University (or just finished your studies) in or near Lausanne studying Computer Science, Natural Sciences, Engineering or a related field. You: Are reliable and show attention to detail You have an interest in software development and ideally have a basic understanding of the role of QA in software development You are thorough and enthusiastic, able to grasp complex scenarios and work independently Location : Lausanne – Switzerland If you think you fit this position, please send a CV and a cover letter in English. Please note that incomplete applications will not be considered. Apply',\n", + " 'soft_skills': '[\"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Document Enterprise Platform\", \"Natural Sciences\", \"Manual Testing\", \"Agile Software Development\", \"Bug Reporting\", \"Software Development\", \"Test Engineering\", \"Scripting\", \"Computer Science\", \"Idealization\", \"Management Development\", \"Continuous Integration\"]',\n", + " 'languages': \"['English', 'Arabic']\"},\n", + " {'company_id': '73',\n", + " 'job_title': 'computer vision engineer/researcher',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.magicleap.com',\n", + " 'jobdescription_embedded': '[[-1.70618728e-01 1.67502195e-01 3.97089243e-01 1.50855575e-02\\n3.99008274e-01 -5.12205064e-02 -8.26455951e-02 3.30113530e-01\\n-6.83513731e-02 -2.62684971e-01 3.93931717e-02 -5.75845718e-01\\n-3.31154257e-01 4.92468998e-02 2.72632867e-01 6.10013485e-01\\n4.12173718e-01 -7.06573576e-02 -1.83186620e-01 4.23021257e-01\\n2.57290244e-01 -1.79152369e-01 2.63028502e-01 6.75490081e-01\\n5.30646145e-01 -3.45708169e-02 -5.05066477e-02 7.21097708e-01\\n1.66826278e-01 -3.20330113e-01 6.76681042e-01 1.15466714e-02\\n-3.98195624e-01 -2.75924653e-01 1.20026231e-01 3.79139870e-01\\n-2.78232992e-01 -3.08883965e-01 1.44500792e-01 1.74813524e-01\\n-5.48939764e-01 -5.41626215e-01 -3.32396209e-01 -2.27715299e-01\\n-4.28845316e-01 4.24622744e-02 -5.78902289e-03 -2.48406559e-01\\n6.48002177e-02 1.20612029e-02 -4.67220962e-01 2.86467493e-01\\n7.24971667e-02 -1.26043946e-01 -3.45352069e-02 8.56330335e-01\\n-6.43315315e-02 -5.52858233e-01 -7.44307280e-01 -1.59170657e-01\\n8.11413080e-02 -3.88505980e-02 -9.74192321e-02 -3.16488713e-01\\n9.81581807e-02 -1.62229568e-01 1.17170596e-02 3.65323216e-01\\n-8.61484110e-01 -1.42740443e-01 -4.43125457e-01 -1.30678594e-01\\n-4.21785116e-01 2.11144298e-01 -5.36883846e-02 -1.24575809e-01\\n-2.73067225e-02 3.11144114e-01 1.91520795e-01 -1.18664347e-01\\n-4.07044828e-01 1.28293008e-01 9.53268707e-02 3.87960434e-01\\n3.18956971e-01 8.06877017e-02 2.75330879e-02 1.24430284e-01\\n-3.91759455e-01 7.46808529e-01 4.09647748e-02 -4.24600482e-01\\n2.11246520e-01 -6.27677515e-02 5.16090870e-01 1.69245213e-01\\n-1.16191611e-01 2.21505553e-01 -7.91412219e-02 -6.52020797e-02\\n-1.05028637e-02 -7.46090770e-01 -7.70816952e-02 9.40678492e-02\\n6.16672523e-02 4.02663648e-03 9.44018885e-02 1.98029697e-01\\n-2.58738726e-01 5.98842978e-01 1.74107905e-02 -1.80257130e-02\\n-1.03302412e-01 -4.96822715e-01 -8.59279409e-02 -2.80114651e-01\\n-1.13839239e-01 3.04831982e-01 2.34789997e-01 9.98577103e-02\\n1.19052194e-01 -7.94764161e-02 1.21003486e-01 6.32827759e-01\\n-1.58433110e-01 3.17800403e-01 -8.76917168e-02 4.89164114e-01\\n8.99693184e-03 -2.36432761e-01 4.27913040e-01 4.54951018e-01\\n-1.39142260e-01 -2.38892242e-01 -3.59908462e-01 3.84085923e-02\\n-3.04861605e-01 -1.21745862e-01 -3.31322968e-01 1.65413797e-01\\n7.13121146e-04 -5.39001763e-01 6.65223002e-01 -1.22964457e-02\\n5.59728265e-01 1.00114465e-01 8.56973231e-02 -3.98225635e-02\\n-5.68880141e-03 1.99816376e-01 -1.36339918e-01 9.44193453e-02\\n-8.67444277e-03 -3.79978299e-01 4.58980203e-02 -9.30381417e-02\\n-1.75054491e-01 4.97224063e-01 -3.08617443e-01 5.57600334e-02\\n4.07935172e-01 3.19439650e-01 -1.48177832e-01 5.31996608e-01\\n3.34765166e-02 1.01191513e-01 -1.55552663e-02 7.33569860e-01\\n-2.88273811e-01 -2.70513818e-02 2.18735307e-01 -5.44549227e-01\\n8.51711392e-01 4.11415964e-01 -3.17014396e-01 1.66380703e-01\\n4.89662498e-01 -3.05212319e-01 1.20733425e-01 -9.62114260e-02\\n-6.55611515e-01 4.50217992e-01 1.75243139e-01 1.41576394e-01\\n-2.43033007e-01 -5.33276439e-01 3.18784028e-01 -4.05632973e-01\\n-8.88067782e-02 -2.68834829e-01 -3.52477908e-01 2.52059221e-01\\n-1.59842402e-01 -5.90864904e-02 4.36759710e-01 -2.56489575e-01\\n-4.58585806e-02 -1.91150114e-01 -4.93093044e-01 7.34926015e-02\\n1.87005982e-01 2.50616729e-01 2.97342688e-01 3.36833782e-02\\n-2.95583427e-01 -2.81652033e-01 -2.30907619e-01 -3.29837114e-01\\n-3.67509961e-01 -2.48329267e-01 -1.42112970e-01 6.22789741e-01\\n3.56850713e-01 2.20100164e-01 -5.88748455e-01 1.60534874e-01\\n-1.05127722e-01 -2.05249965e-01 3.50350618e-01 2.07987130e-01\\n-3.81190896e-01 -7.74383694e-02 -3.40253055e-01 4.09039825e-01\\n-5.86327314e-01 5.31859457e-01 -8.77570361e-02 -5.62217772e-01\\n6.62192822e-01 6.16512477e-01 -3.16913165e-02 -5.85106969e-01\\n4.04051960e-01 -6.12749994e-01 -1.48169948e-02 6.16421774e-02\\n-1.49791300e-01 -1.95498154e-01 3.43432784e-01 -3.47200811e-01\\n-2.79410839e-01 8.26134205e-01 3.00523996e-01 6.25752732e-02\\n-8.67804140e-03 -3.11816990e-01 -8.57768953e-03 -1.27049267e-01\\n-3.11827529e-02 -3.30838203e-01 -4.59492087e-01 -3.71201366e-01\\n-1.86751872e-01 -7.76112795e-01 -2.10016817e-01 -7.90452778e-01\\n-3.67405474e-01 -4.40413177e-01 -5.96359849e-01 7.21626952e-02\\n4.30818766e-01 1.91734403e-01 1.93843693e-01 -1.76970124e-01\\n-4.63185668e-01 -5.56329966e-01 1.51692361e-01 2.13582560e-01\\n3.66441995e-01 4.16642815e-01 -1.78302079e-03 -3.33150327e-01\\n2.51072168e-01 7.78438747e-01 -2.10113540e-01 -2.68880516e-01\\n5.01617610e-01 3.90631258e-01 -2.44751841e-01 -1.79516211e-01\\n3.97369415e-01 6.18091702e-01 -3.62189710e-01 9.16847065e-02\\n-1.35775879e-01 -1.38725042e-01 3.85787010e-01 1.22617766e-01\\n-1.70626864e-01 -5.79293847e-01 -1.38623759e-01 2.81235456e-01\\n-4.41307247e-01 -3.30082119e-01 4.32713926e-01 1.79932892e-01\\n3.09389889e-01 -8.61205012e-02 -7.08659291e-02 2.89666057e-01\\n-2.74128795e-01 -4.44182456e-01 -1.44562900e-01 4.02839109e-02\\n-2.40173846e-01 6.68193996e-02 -1.10825635e-01 -6.80467844e-01\\n-2.68133116e+00 4.37540323e-01 2.11132869e-01 -3.50769460e-01\\n-2.26326078e-01 -1.36544500e-02 2.89060920e-01 6.49802089e-02\\n-3.78795207e-01 5.11811018e-01 -4.11279112e-01 -3.02102685e-01\\n1.70379460e-01 4.78720665e-03 6.31666780e-01 1.95725292e-01\\n2.52580881e-01 -4.20181841e-01 -4.62787747e-01 3.64701748e-01\\n-1.61036074e-01 -4.46027994e-01 1.77675501e-01 -2.78756201e-01\\n1.67249799e-01 4.26246107e-01 -3.37909833e-02 -2.42364317e-01\\n-1.52053714e-01 -3.08882833e-01 1.45818666e-01 -5.22744000e-01\\n-2.64815867e-01 4.07355428e-01 2.78183311e-01 1.23984456e-01\\n1.29176706e-01 -7.90587664e-01 -3.42546344e-01 -3.90709996e-01\\n-3.56837641e-03 -1.31034052e+00 2.05749601e-01 -2.29825526e-02\\n7.95656800e-01 1.83158636e-01 -3.16733122e-03 1.95068605e-02\\n-5.07497266e-02 -2.65388817e-01 -2.62179002e-02 -2.78136998e-01\\n-4.14764345e-01 2.78994516e-02 -1.63753420e-01 -6.32640794e-02\\n7.27809310e-01 5.58078408e-01 -2.52164662e-01 -2.42034763e-01\\n-2.12453865e-03 -3.84242833e-01 -7.09258497e-01 -2.80910492e-01\\n1.13219887e-01 -2.60265052e-01 -6.76868439e-01 -2.66251057e-01\\n-4.48125675e-02 -1.90135568e-01 -1.23483278e-01 2.07655087e-01\\n-1.66905895e-01 2.52303295e-02 -1.04185659e-02 -4.47418988e-01\\n2.01448113e-01 -3.29038411e-01 2.34796584e-01 -1.28649399e-01\\n-3.47196698e-01 -7.32261300e-01 -4.26445063e-03 3.65451872e-02\\n-1.74629331e-01 -3.04337054e-01 2.44078636e-01 -4.31938022e-02\\n-4.07533914e-01 -5.80906510e-01 6.95126653e-01 6.05330393e-02\\n2.37349868e-01 -1.18767679e-01 3.14733312e-02 3.97343159e-01\\n5.20797968e-01 -1.56484097e-01 3.00743461e-01 -2.75554359e-01\\n2.51509011e-01 9.46410075e-02 6.98439956e-01 -3.97687674e-01\\n-8.29855353e-02 -5.35061434e-02 -6.22640550e-01 -2.65864551e-01\\n1.34745792e-01 -1.09809048e-01 1.72971502e-01 -6.70731783e-01\\n3.94450337e-01 -1.26547158e-01 -2.09764093e-01 1.92362711e-01\\n-1.17986158e-01 6.71631694e-01 2.94696540e-01 -3.29299629e-01\\n-2.55343795e-01 2.43420407e-01 -9.59671587e-02 -3.68313551e-01\\n6.25236034e-01 1.07311057e-02 -2.32862130e-01 9.24339220e-02\\n2.51406252e-01 -1.16216876e-01 -2.63131768e-01 2.97895446e-03\\n-3.24717551e-01 1.25603750e-01 1.97750196e-01 2.02262819e-01\\n-6.75592050e-02 -2.02006370e-01 -2.08754361e-01 5.46865523e-01\\n1.77441135e-01 1.04609750e-01 -1.39645085e-01 -9.56379250e-02\\n-2.68466264e-01 6.90704465e-01 1.97048083e-01 -7.21134245e-02\\n-1.96713567e-01 2.37802386e-01 -6.96032047e-01 -2.00520501e-01\\n-1.30795255e-01 -5.77659011e-01 4.28623259e-01 5.94750881e-01\\n7.31410831e-02 -2.50587821e-01 2.61903077e-01 -6.38745666e-01\\n4.43649769e-01 3.24190378e-01 4.63692009e-01 3.98116529e-01\\n-1.87036768e-03 4.86652792e-01 6.32132590e-02 -1.48679346e-01\\n-2.78915912e-01 -2.65558869e-01 -3.01019192e-01 -4.85829055e-01\\n-1.03568092e-01 -8.19643617e-01 -3.75034474e-02 2.36386210e-01\\n-1.17213950e-02 -1.49962515e-01 -1.91345364e-01 2.67547607e-01\\n-1.08446836e-01 -3.07786077e-01 -5.07405959e-02 -2.02790469e-01\\n3.97155046e-01 -2.32588843e-01 3.36937129e-01 -4.27192986e-01\\n-2.93962181e-01 1.37337241e-02 -3.12705100e-01 5.32572031e-01\\n2.31359571e-01 -6.21327683e-02 -2.72714794e-02 -1.79218844e-01\\n4.37099516e-01 3.48084390e-01 3.40118222e-02 -2.00135469e-01\\n8.87158215e-02 -4.07668293e-01 -3.56629938e-01 1.50159746e-01\\n2.64466822e-01 -8.33796635e-02 8.35386217e-02 2.16312051e-01\\n2.45802015e-01 -2.23110095e-02 -4.56936717e-01 -3.80412906e-01\\n-5.33428118e-02 -1.04053378e-01 -4.03765514e-02 -4.52430427e-01\\n5.68658412e-02 -2.07568586e-01 -4.04327542e-01 5.16947657e-02\\n-3.97277296e-01 -1.15578756e-01 1.86151311e-01 1.81636810e-01\\n-3.12619925e-01 -1.03700198e-01 2.22894847e-01 1.76250324e-01\\n-2.86928385e-01 -7.45913208e-01 2.94783175e-01 -9.72420692e-01\\n1.61702216e-01 4.28646922e-01 -3.73816460e-01 -2.57313430e-01\\n1.36520267e-01 -1.07614803e+00 1.35503262e-01 -1.81312501e-01\\n4.30959404e-01 -7.78276473e-02 2.25923061e-02 1.46406949e-01\\n5.18923737e-02 1.39128372e-01 -1.83031499e-01 7.59307742e-02\\n-6.53481334e-02 6.60320044e-01 -1.31951123e-01 1.79775894e-01\\n1.60312504e-01 -1.63763925e-01 1.69477146e-02 -1.00962830e+00\\n-1.53439119e-01 -4.13932726e-02 -3.26148868e-01 -1.77192628e-01\\n-2.30143502e-01 -8.73169154e-02 -1.58260345e-01 4.16869372e-02\\n2.21992314e-01 8.26030076e-02 -1.48114428e-01 3.39892693e-02\\n-4.91014794e-02 -2.80294657e-01 -3.57958049e-01 -1.89737260e-01\\n-2.69985273e-02 -5.90520352e-02 -9.55775976e-02 -3.65237236e-01\\n1.37959689e-01 -5.92823207e-01 5.36397621e-02 -5.84597349e-01\\n-3.47196430e-01 -4.67536971e-02 3.80887985e-01 2.44763382e-02\\n1.21204779e-01 -4.40120935e-01 -1.99407235e-01 2.56229460e-01\\n1.61017522e-01 1.26550868e-01 4.68818843e-01 3.17062996e-02\\n1.42844617e-02 3.07303101e-01 -5.87886035e-01 3.15817475e-01\\n6.00997865e-01 7.23887756e-02 -1.26827136e-03 -1.15204751e-02\\n-8.65586847e-02 -3.56338173e-03 2.75984704e-01 3.09045017e-01\\n-1.35463662e-02 6.96634203e-02 3.91483724e-01 -3.39707434e-01\\n-8.41041058e-02 2.41148546e-02 -2.24556446e-01 1.13270260e-01\\n5.15619457e-01 2.27412745e-01 -1.67447820e-01 -1.13914777e-02\\n-3.00671220e-01 -3.83771174e-02 -1.13396347e-02 6.44215643e-02\\n6.99077323e-02 1.26949638e-01 1.05426097e+00 2.30551213e-01\\n3.29549789e-01 6.79373384e-01 -7.03519136e-02 -3.07410121e-01\\n-3.05911005e-01 1.80154577e-01 6.40074834e-02 3.08081746e-01\\n-1.54298484e-01 3.35851461e-01 1.24743342e-01 -5.43169975e-02\\n-2.12720186e-01 8.63474682e-02 1.80937469e-01 -2.15723544e-01\\n-4.61291641e-01 4.73163784e-01 2.38553792e-01 6.52506590e-01\\n4.65125114e-01 4.81594145e-01 1.82139412e-01 6.54803216e-02\\n4.35106754e-01 5.80458641e-01 4.31897312e-01 3.03088725e-01\\n1.16654374e-01 -1.19311392e-01 2.31155559e-01 -1.49072735e-02\\n4.23333347e-01 4.82348979e-01 -4.22320068e-02 8.45156729e-01\\n2.80171871e-01 3.31104219e-01 8.54741931e-01 -3.73065591e-01\\n-4.24657136e-01 2.85935968e-01 2.37475961e-01 -7.82437250e-02\\n-4.13819671e-01 -9.33625102e-02 -1.02956116e-01 2.09204435e-01\\n-3.39783728e-01 8.32832903e-02 -3.85550290e-01 4.55488920e-01\\n2.76888341e-01 -1.77255571e-01 -3.81752193e-01 4.03891504e-01\\n-2.20834792e-01 -3.00260842e-01 -2.09868431e-01 2.96560191e-02\\n-2.48980448e-01 -5.81076980e-01 -1.26858920e-01 5.55934235e-02\\n-5.97705059e-02 -2.62293190e-01 2.88752198e-01 1.50765106e-02\\n2.90045500e-01 4.67911549e-02 -3.20460856e-01 -1.52593642e-01\\n2.64764279e-01 1.99642241e-01 8.07064414e-01 2.35222459e-01\\n1.78928852e-01 -5.27676642e-02 -2.88725495e-01 1.67655006e-01\\n4.62310910e-01 4.40191664e-03 5.47943600e-02 5.60182035e-01\\n-3.22265267e-01 5.44343144e-03 -1.29558161e-01 5.82708001e-01\\n-4.18319672e-01 3.39368582e-01 -4.35823351e-01 -7.57289827e-02\\n2.26324975e-01 2.61183888e-01 -2.82926679e-01 -8.73967260e-02\\n-9.34458748e-02 -8.29747498e-01 8.30447823e-02 -5.84226511e-02\\n-3.23683292e-01 -8.95144790e-03 1.25865683e-01 3.40034276e-01\\n-9.11064260e-03 -5.35828173e-02 3.72066915e-01 5.44959247e-01\\n-1.95612103e-01 9.46409330e-02 1.17489964e-01 -4.45527554e-01\\n-3.13069671e-01 3.47881675e-01 -2.91316718e-01 4.06008363e-01\\n-2.59034205e-02 3.65587026e-01 1.70802265e-01 1.65100306e-01\\n2.83076912e-01 -1.56515315e-01 -4.99108195e-01 -1.66544065e-01\\n-2.59428442e-01 -4.85505283e-01 -7.41059482e-02 -8.94542560e-02\\n2.07328826e-01 -4.12793934e-01 -3.13336194e-01 -4.55499470e-01\\n-3.43337953e-01 -6.19067661e-02 -1.00756429e-01 2.13142604e-01]]',\n", + " 'job_description': 'Job Description -------------- Qualified candidates will use their experience in Computer Vision with specialization in at least one of the following areas: ---------------------------------------------------------------------------------------------------------------------------------- SLAM: Design and implement algorithms for creating consistent maps of the environment that enable accurate tracking in real-time. Visual-Inertial Pose Tracking: Design and implement advanced algorithms for estimating the 3D pose of a head-mounted device by optimally fusing visual and inertial measurements collected from multiple cameras and IMUs. Sensor Calibration: Design and implement algorithms for online and offline calibration of complex devices composed of several sensors, cameras, IMUs, depth sensors, and images. Collaborate with other engineers on the design and deployment of a fully automatic robotics-aided calibration process targeted for factory production. 3D Scene Understanding: Design and implement 3D scene segmentation algorithms based on depth, motion or texture data. 3D Object Tracking: Design and implement robust algorithms for detecting and tracking the 6 DOF pose of known moving objects from multiple cameras in presence of clutter and occlusions. Machine Learning: Use collected data to design and implement algorithms that can be superior over traditional algorithms or that can be used for behavior detection Qualifications: -------------- Fluent in C/C++ (programming and debugging) Knowledge software optimization and embedded programming is a plus Experience working with Computer Vision libraries such as OpenCV is a plus Knowledge of parallel computing, OpenCL, GPGPU is a plus Education: --------------------- Ph.D. or MSc in Computer Science or related areas of study Additional Information --------------------- All your information will be kept confidential according to Equal Employment Opportunities guidelines. ',\n", + " 'soft_skills': '[\"Collaboration\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"MSC Software\", \"Programming (Music)\", \"pH Meters\", \"Computer Science\", \"Collections\", \"Texturing\", \"OpenCV\", \"Machine Learning\", \"Visualization\", \"Estimators\", \"Debugging\", \"Computer Vision\", \"Knowledge Management Software\", \"Optimization Software\", \"Tracking (Commercial Airline Flight)\", \"Library\", \"OpenCL\", \"Embedding\", \"SLAM Algorithms (Simultaneous Localization And Mapping)\", \"TARGET 3001!\", \"C (Programming Language)\", \"Equalization\", \"Robotics\", \"Object-Oriented Design\", \"Parallel Computing\", \"Imaging\", \"Factorials\", \"Algorithms\", \"Additives\", \"Mapping\", \"Data Collection\", \"Job Descriptions\", \"Calibration\", \"Fuses\"]',\n", + " 'languages': \"['English', 'Danish', 'Persian']\"},\n", + " {'company_id': '36',\n", + " 'job_title': 'ibm cloud software engineer',\n", + " 'location': 'Lausanne',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.72165710e-01 2.52090961e-01 4.62761223e-01 5.80096543e-02\\n5.32154024e-01 -2.42089435e-01 -1.11294508e-01 3.14517647e-01\\n-5.75950332e-02 -4.13470566e-01 -1.29214302e-01 -3.54309112e-01\\n-2.35665649e-01 -2.37643416e-03 1.69808969e-01 3.30033869e-01\\n3.43411744e-01 1.17903978e-01 -1.95102558e-01 3.92981589e-01\\n6.99448958e-02 -9.21433419e-02 -1.19605489e-01 7.38587141e-01\\n2.77704120e-01 -5.18972725e-02 -9.97508690e-02 6.03851937e-02\\n-2.73360431e-01 -1.99144915e-01 3.87391657e-01 -1.08257663e-02\\n1.61297817e-03 -2.88451582e-01 8.47925991e-02 9.04506296e-02\\n-2.35576913e-01 7.77631551e-02 -1.49677902e-01 1.06110759e-01\\n-5.08172929e-01 -2.59937853e-01 1.01417810e-01 1.36326263e-02\\n-2.46759191e-01 -2.47933254e-01 2.01960772e-01 6.16600364e-02\\n-1.46693410e-02 1.09530993e-01 -6.25983834e-01 2.93800026e-01\\n-2.19624281e-01 -2.06446812e-01 2.75159925e-01 6.43892646e-01\\n2.04597384e-01 -5.18103421e-01 -3.29160720e-01 -3.56751263e-01\\n7.04146326e-02 -8.59435648e-02 8.40510726e-02 -3.52052331e-01\\n3.70457083e-01 -1.22008279e-01 8.86758789e-02 3.36152196e-01\\n-7.43329406e-01 -5.55792302e-02 -2.16684267e-01 4.11948934e-02\\n-4.17638540e-01 2.82712243e-02 -4.33340847e-01 -1.26270607e-01\\n-8.03594440e-02 4.10189062e-01 3.42294276e-02 9.12066773e-02\\n-3.12458456e-01 1.69430971e-01 -2.51208156e-01 3.89408022e-01\\n2.95937449e-01 1.85092032e-01 2.21788749e-01 3.63916308e-01\\n-5.57043552e-01 4.53466564e-01 2.47821987e-01 -2.12231666e-01\\n2.43180841e-01 1.72566786e-01 4.06989902e-01 2.40923718e-01\\n2.67766137e-02 1.66967317e-01 -1.66458890e-01 1.59520179e-01\\n1.69826999e-01 -2.68324435e-01 -1.50419936e-01 -2.95784827e-02\\n-2.13658437e-02 -2.14272738e-02 -5.27008995e-02 3.08431298e-01\\n-3.41673404e-01 2.96032369e-01 2.03851581e-01 -1.67560041e-01\\n-9.08847749e-02 -5.67686975e-01 1.14644682e-02 -2.49200081e-03\\n9.18986369e-03 1.37966856e-01 3.64087105e-01 7.02824146e-02\\n3.39869171e-01 1.83764607e-01 1.18451171e-01 1.04920959e+00\\n-6.69740438e-02 1.50212303e-01 -1.93717599e-01 3.16177815e-01\\n2.25088447e-01 -1.33813530e-01 2.40900248e-01 2.99515814e-01\\n8.17135498e-02 -1.15653321e-01 -1.62739038e-01 4.08497870e-01\\n-1.11885503e-01 -5.76469488e-02 -1.79808870e-01 1.14577465e-01\\n-2.02749759e-01 -5.62742114e-01 5.60976267e-01 3.74981873e-02\\n1.88679039e-01 1.67075191e-02 5.85492142e-02 -1.36150539e-01\\n-1.01547070e-01 3.45693201e-01 -1.92144662e-02 3.16687882e-01\\n-2.56446600e-01 -3.23632985e-01 -1.38324976e-01 3.88696879e-01\\n-2.04724014e-01 7.60901794e-02 -5.76850772e-02 -2.03957289e-01\\n3.36445004e-01 2.51151919e-01 -4.92502749e-01 1.56872496e-01\\n-1.21857345e-01 -1.77321777e-01 -6.12538047e-02 2.91877896e-01\\n-1.37559501e-02 8.91257152e-02 -1.21113630e-02 -1.89755782e-01\\n5.01128078e-01 3.82254004e-01 1.22045249e-01 -1.58331424e-01\\n4.04442400e-01 -2.65327394e-01 2.04443097e-01 9.48448479e-02\\n-6.13374054e-01 3.90430987e-01 -5.63397259e-02 -1.81503281e-01\\n1.40600979e-01 1.09760910e-01 5.51337481e-01 -3.19600016e-01\\n-4.55679819e-02 -2.27371246e-01 -4.74234730e-01 -4.09691989e-01\\n-3.68624866e-01 -4.32519838e-02 4.64810044e-01 -5.52534938e-01\\n-3.57695818e-02 2.04989269e-01 -6.49785697e-01 -9.86546651e-02\\n2.61650145e-01 2.48298615e-01 2.20909342e-01 2.10774243e-02\\n6.09660812e-04 -7.34842241e-01 -8.66221413e-02 -5.05891860e-01\\n-4.09271359e-01 6.74456879e-02 -3.52565527e-01 1.06678039e-01\\n1.82233024e-02 2.92703435e-02 -5.21624982e-02 7.28931725e-02\\n-2.86913812e-01 -3.98236737e-02 2.08399251e-01 1.55194432e-01\\n4.64111894e-01 -5.08319922e-02 -4.31635797e-01 5.93768358e-01\\n-3.44345063e-01 5.85091949e-01 2.02759802e-01 -9.00726974e-01\\n6.99288607e-01 2.39193067e-01 -4.16974118e-03 -2.88485199e-01\\n5.50167084e-01 -4.41071630e-01 2.01078951e-02 1.14189729e-01\\n-2.23408356e-01 -1.87992588e-01 2.03641921e-01 -1.46043330e-01\\n-2.82760590e-01 5.94685197e-01 1.12038441e-01 -1.21711642e-01\\n3.28104764e-01 -3.43344003e-01 -2.00900003e-01 1.59067046e-02\\n-1.04536541e-01 -2.38818079e-01 -4.91268277e-01 2.42381483e-01\\n-9.50461179e-02 -5.46618104e-01 -1.91763654e-01 -4.34820265e-01\\n-2.12969840e-01 -4.33682948e-01 -3.96028340e-01 4.58711714e-01\\n5.14584444e-02 9.58351716e-02 -1.07257463e-01 -5.69851436e-02\\n-4.17242162e-02 -6.52592123e-01 -4.63568904e-02 7.94918388e-02\\n5.53822219e-01 2.54091471e-01 2.13841274e-01 -1.48719192e-01\\n1.62654910e-02 4.47360724e-01 -3.86423588e-01 -2.71045506e-01\\n1.12089559e-01 1.40598446e-01 -2.18519624e-02 -9.28497761e-02\\n5.81104234e-02 2.91863412e-01 -2.32600719e-01 -3.40323262e-02\\n-2.64396537e-02 -5.64857759e-02 3.37040097e-01 -1.50986403e-01\\n-3.24885845e-01 -2.05470547e-01 -3.27475555e-02 3.96375418e-01\\n-5.92557013e-01 -2.42801026e-01 5.38110018e-01 2.74647206e-01\\n1.16636999e-01 2.53552675e-01 2.72733927e-01 -6.54237866e-02\\n-2.93133914e-01 -3.99130344e-01 2.39977166e-01 1.55471355e-01\\n1.05199277e-01 8.47236291e-02 -1.34232312e-01 -5.43659925e-01\\n-3.34659219e+00 -1.85470805e-01 1.86272144e-01 -2.67219186e-01\\n6.18328005e-02 -9.41918865e-02 4.48853821e-02 -5.37375584e-02\\n-2.90855289e-01 5.52063249e-02 -2.43412822e-01 -1.02909677e-01\\n4.96202260e-02 2.96419948e-01 8.11782330e-02 1.76798895e-01\\n7.40350932e-02 -1.71706751e-01 7.81029016e-02 3.17506760e-01\\n-2.41974741e-01 -7.62605906e-01 7.11414404e-03 -1.11710042e-01\\n1.50512964e-01 1.27103031e-01 -5.20420849e-01 -1.65682167e-01\\n-1.78132668e-01 -1.97268918e-01 1.90611884e-01 -2.30426610e-01\\n-1.41355917e-01 1.74635366e-01 2.09344208e-01 3.72012742e-02\\n-1.40046533e-02 -1.86804295e-01 -3.05520743e-02 -4.99733388e-01\\n1.58237413e-01 -5.96771598e-01 -2.34803986e-02 3.67735513e-02\\n6.85898781e-01 -3.44681948e-01 2.77018905e-01 1.87210754e-01\\n1.59712881e-01 1.34746701e-01 8.62920508e-02 -6.94189668e-02\\n-3.21058005e-01 -2.69485235e-01 1.60773676e-02 -2.58882672e-01\\n4.94025141e-01 5.00414073e-01 -2.23780394e-01 3.14590074e-02\\n7.99297765e-02 -4.14086789e-01 -5.07454038e-01 -5.53609252e-01\\n-1.67316124e-01 -1.03689037e-01 -7.02839077e-01 -5.34316838e-01\\n-1.10308588e-01 -4.65105847e-02 -1.57320321e-01 6.66950285e-01\\n-2.69748211e-01 -4.10632491e-01 1.09882315e-03 -6.47832870e-01\\n2.64732718e-01 -3.15544724e-01 3.61436680e-02 -2.58415520e-01\\n-2.95829117e-01 -4.23755527e-01 8.88980106e-02 -6.36920109e-02\\n-2.51588106e-01 -9.55295339e-02 1.47750387e-02 -2.37851545e-01\\n-3.02470624e-01 -5.49105048e-01 4.24516588e-01 5.85083812e-02\\n3.33881915e-01 5.86331300e-02 5.47786117e-01 -2.22886689e-02\\n4.02965397e-01 -8.28737989e-02 3.99610326e-02 -4.93511647e-01\\n1.97333217e-01 5.50208203e-02 5.80219626e-01 -2.50018358e-01\\n1.13145195e-01 2.63751894e-01 -1.79616138e-01 -1.14448532e-01\\n4.46358800e-01 -4.98348090e-04 -3.70323397e-02 -3.29126865e-02\\n3.64446342e-01 -5.32423377e-01 -3.33300948e-01 1.56077594e-01\\n9.01528150e-02 7.03270674e-01 -1.17788278e-01 -4.30188537e-01\\n-2.38772318e-01 5.62075555e-01 -7.50778466e-02 -7.18446821e-02\\n-1.36628926e-01 1.29814252e-01 -1.86438784e-01 2.62755394e-01\\n9.07548368e-02 -2.72256136e-01 -3.42007965e-01 -8.24400634e-02\\n2.56186556e-02 1.20042615e-01 1.66230008e-01 -3.30677070e-02\\n-2.87710764e-02 -2.05477089e-01 1.34528643e-02 8.92774314e-02\\n2.50322640e-01 4.24044937e-01 1.79104179e-01 -2.78451771e-01\\n4.72770594e-02 2.97680169e-01 -2.53424674e-01 2.70401627e-01\\n-1.70247421e-01 2.91763563e-02 -5.54789245e-01 -2.36818478e-01\\n-3.56453419e-01 -2.93065965e-01 1.69935033e-01 1.12680502e-01\\n2.15020701e-01 -6.44032881e-02 8.67749825e-02 -4.62153852e-01\\n3.15461338e-01 -3.70477489e-03 2.26723358e-01 1.47592038e-01\\n-1.16751892e-02 6.03889465e-01 -3.11708935e-02 6.40076995e-02\\n-1.14331253e-01 -1.00600524e-02 -1.63181379e-01 -3.62836033e-01\\n1.31446570e-01 -4.39260453e-01 -1.73105106e-01 4.62152481e-01\\n1.65932193e-01 -1.98236808e-01 -2.02898830e-01 4.00496662e-01\\n3.61347124e-02 -1.85442239e-01 -2.51966417e-01 -4.06260379e-02\\n1.85756505e-01 1.53034493e-01 2.54712075e-01 -4.36145216e-01\\n5.53748496e-02 1.39850914e-01 3.56785543e-02 4.93247211e-01\\n4.84593995e-02 3.23899239e-02 -5.24902605e-02 -1.89248309e-01\\n4.86704499e-01 -5.69227487e-02 -1.12096176e-01 -2.03981146e-01\\n1.27977058e-02 -1.74649075e-01 -5.89996219e-01 4.73707654e-02\\n-1.28556732e-02 -2.13214219e-01 4.66677137e-02 9.50431898e-02\\n1.17584385e-01 -2.52358988e-02 -4.91814971e-01 -2.63277352e-01\\n-4.43365186e-01 -8.97283852e-02 4.80223633e-02 -3.54797006e-01\\n4.71865721e-02 -6.65075704e-03 -5.13880253e-01 2.10237503e-01\\n-1.59854338e-01 9.45790634e-02 1.49945363e-01 1.74532428e-01\\n-3.33978564e-01 -5.00608608e-02 9.28767696e-02 1.49773344e-01\\n-3.94185960e-01 -3.88539582e-01 1.14003032e-01 -1.00975716e+00\\n9.37254354e-02 4.78034839e-02 -1.35683522e-01 -2.15668213e-02\\n-2.41998453e-02 -7.25695848e-01 1.97929025e-01 -3.63556892e-01\\n-3.62688154e-02 5.97281121e-02 -2.96226978e-01 -3.74101788e-01\\n1.96578294e-01 -4.03228886e-02 -4.21175599e-01 4.32101369e-01\\n-4.60387737e-01 2.73794711e-01 -7.81528801e-02 -6.88246936e-02\\n9.14617255e-02 -2.14492574e-01 1.26816735e-01 -2.41184205e-01\\n-4.60537732e-01 -1.76688552e-01 -4.00467455e-01 -3.17903906e-01\\n2.27430486e-03 -3.30569386e-01 -1.12711966e-01 -9.81530640e-03\\n4.84089911e-01 1.33995324e-01 -7.84346908e-02 -2.69043595e-01\\n5.11095040e-02 -4.70661730e-01 1.33391887e-01 -3.19221884e-01\\n-3.63155976e-02 -1.39551103e-01 2.78282791e-01 -1.00044925e-02\\n1.64159536e-01 -3.32813829e-01 6.79388821e-01 -1.85312018e-01\\n-4.33018923e-01 -6.51442930e-02 9.14761126e-02 1.70146748e-01\\n2.93954521e-01 -5.03762960e-01 1.36249989e-01 3.03121150e-01\\n2.69080549e-01 -1.39889158e-02 2.20592469e-01 -1.36350796e-01\\n7.42800459e-02 1.93731308e-01 -4.44490254e-01 1.88779280e-01\\n7.78465867e-01 1.51724115e-01 1.55441061e-01 1.41939759e-01\\n2.42036760e-01 3.53440672e-01 5.18178642e-01 -6.98996782e-02\\n-5.75617068e-02 2.41093680e-01 1.17671952e-01 -5.14681339e-01\\n-1.02658167e-01 -2.28828207e-01 -1.50963113e-01 -3.68218780e-01\\n6.92465186e-01 2.95690894e-01 -4.80754673e-01 -2.64776200e-01\\n-2.54985571e-01 -8.77965987e-02 3.89253259e-01 -1.16550833e-01\\n-4.52024397e-03 -9.09133330e-02 4.35217857e-01 7.87920132e-03\\n3.91538650e-01 5.03461957e-01 -2.14380041e-01 -3.88900220e-01\\n-1.33473322e-01 1.87866271e-01 1.53757274e-01 3.47062111e-01\\n-1.14306830e-01 1.40867725e-01 -5.30260243e-03 1.18934177e-01\\n-2.42927790e-01 9.41305757e-02 8.51570517e-02 4.71035726e-02\\n3.51350754e-01 -3.23312730e-02 3.40125889e-01 4.92908895e-01\\n1.41081780e-01 5.41592002e-01 3.10832113e-01 1.20370597e-01\\n3.78399640e-01 6.43078268e-01 3.40096653e-01 2.64853239e-01\\n3.01046073e-02 1.99350104e-01 -1.89743899e-02 -4.64694835e-02\\n3.52204859e-01 3.28673244e-01 1.46795750e-01 8.86695147e-01\\n3.32531780e-01 4.12808537e-01 8.48938584e-01 -5.13273418e-01\\n-4.89991188e-01 9.32485238e-02 5.47522545e-01 -3.59978467e-01\\n1.28826266e-02 8.09605643e-02 -2.54163265e-01 3.91615361e-01\\n-4.97708648e-01 -1.22465476e-01 4.73299287e-02 7.39889368e-02\\n2.06746254e-02 -1.18016042e-01 -1.47685260e-01 -7.48841912e-02\\n-2.22785532e-01 -2.86765456e-01 -2.57837087e-01 -1.05210856e-01\\n-2.85868973e-01 -5.64084798e-02 -7.36665055e-02 5.78969382e-02\\n1.80955194e-02 -3.58420610e-01 -1.60148457e-01 6.41921610e-02\\n4.33266968e-01 -2.40184397e-01 -2.15065807e-01 -2.11921751e-01\\n1.72974721e-01 1.77835315e-01 6.63578153e-01 9.20417979e-02\\n2.17247754e-01 -1.78491876e-01 -1.81709394e-01 4.97374982e-02\\n3.64046916e-02 1.15619376e-01 5.76811135e-02 4.14359778e-01\\n-2.90331453e-01 -5.89574650e-02 1.66844234e-01 2.37461403e-01\\n-3.12234402e-01 -2.12106124e-01 6.05743825e-02 2.64162868e-01\\n-2.18059644e-02 9.65858176e-02 -2.73928612e-01 1.50378123e-01\\n-3.99898142e-01 -5.17399132e-01 4.80782270e-01 -2.76247591e-01\\n-2.08895151e-02 2.64553335e-02 3.49517345e-01 2.31085256e-01\\n-1.49710298e-01 2.90703718e-02 -1.86282825e-02 3.37806761e-01\\n1.08412087e-01 3.77807230e-01 -2.54255235e-01 -1.78854495e-01\\n-3.68686050e-01 3.10246855e-01 -1.93599015e-01 3.14195126e-01\\n-9.02616903e-02 4.16895956e-01 -6.84328675e-02 4.50011678e-02\\n1.49650335e-01 2.95631457e-02 -2.29219407e-01 -3.03037673e-01\\n-2.95177370e-01 -1.97104678e-01 2.18565777e-01 -2.86840405e-02\\n1.99898750e-01 -4.43882376e-01 -9.71251801e-02 -1.02621987e-01\\n-3.71873081e-02 -4.33594972e-01 -8.47087502e-02 4.78878021e-02]]',\n", + " 'job_description': 'We are looking for an IBM Cloud Software Engineer to join the team involved in the development of the next intelligent big data platform. This position will consist in creating, optimizing, evolving and developing with the IBM Watson Platform ( Cognitives APIs) all relying on IBM Cloud Platform. Description To design and implement the Backend BigData and Cognitives platform (APIs). Integrate applications by designing database architecture and server scripting Participate in designing a highly scalable web architecture. Support and maintain the web architecture and infrastructure. Scale the resources (nodes, clusters) according to the user growth. Target for high availability for mass consuming. Define specs and communicate clearly with the rest of the team and management. Identify new state of the art web patterns, frameworks, environments and adopt them. Work in a cross-functional team, including external partners to design the integration with other API’s, mobile apps or big data software. Profile Advanced degree in Computer Science or significant experience working with highly scalable and available web projects. Understanding fundamental design principles behind a scalable application. Integration of multiple data sources and databases into one system. Software quality: experience with GIT and Continuous Integration, deployment in multiple environments & automation. Backend architecture & infrastructure: experience in scaling & maintaining large web infrastructures Experience in Machine Learning and Cognitives Approach Experience in BigData and DataScience Culture Experience in developing applications running in cloud environments such as SoftLayer, Bluemix, Amazon Web Services, Azure or other cloud providers and prior experience in designing and building components in a cloud environment Experience with databases like DB2, MySQL, PostgresSQL or Cassandra. Experience with Search like Elastic Search, Solr, Lucene, Experience in processing data in formats such as XML, HTML, or JSON in a large scale environment Experience in Agile/Test-driven development methodologies 5+ years of web engineering / architecture. Ability to take ownership of projects with minimal supervision. Good level of English / French with good verbal and written communication. Swiss working permit or EU citizen.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Management\", \"Communications\", \"Integration\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Automation\", \"MySQL\", \"Test-Driven Development (TDD)\", \"Enterprise Application Integration\", \"Apache Cassandra\", \"High Availability Clusters\", \"Web Engineering\", \"Computer Science\", \"Consumables\", \"Continuous Integration\", \"System Software\", \"Scale (Map)\", \"Mobile App\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Node.js\", \"Maintainability\", \"SoftLayer\", \"Levelling\", \"Azure Web Apps\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"DB2 SQL\", \"Machine Learning Methods\", \"Web Project\", \"Web Services\", \"TARGET 3001!\", \"Software Quality (SQA/SQC)\", \"Data Recovery Software\", \"Scalability\", \"Big Data\", \"Amazon Web Services\", \"Cross-Functional Team Leadership\", \"Apache Solr\", \"Agile Testing\", \"Resourcing\", \"Language Experience Approach\", \"Scripting\", \"Git Flow\", \"Extensible Markup Language (XML)\", \"Application Programming Interface (API)\", \"Data Processing\", \"JSON\", \"Custom Backend\", \"Adoptions\", \"Source Data\"]',\n", + " 'languages': \"['English', 'Moldovan', 'Czech']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'application engineer - java',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.55808532e-01 3.37073445e-01 4.68456328e-01 5.96076213e-02\\n5.44890523e-01 -1.30339459e-01 -6.62898943e-02 3.29940349e-01\\n-1.33533999e-01 -4.37654316e-01 -9.55163836e-02 -9.86115709e-02\\n-2.44956892e-02 8.97528455e-02 1.91370547e-01 4.12870944e-01\\n3.98574650e-01 4.05492671e-02 -1.95302904e-01 3.74782205e-01\\n4.89123389e-02 -1.11160949e-01 5.33090308e-02 7.80794084e-01\\n4.13207948e-01 1.13232441e-01 -6.04151897e-02 6.60173744e-02\\n-2.10499361e-01 -3.23715150e-01 4.23470140e-01 -2.09919382e-02\\n-1.34444311e-01 -2.64349818e-01 9.52050239e-02 1.19265221e-01\\n-2.31448621e-01 -5.00229672e-02 -1.45653486e-01 1.76977158e-01\\n-4.10124719e-01 -1.29672006e-01 -3.39588299e-02 3.45962495e-02\\n-2.20398188e-01 -3.71905416e-01 6.46123067e-02 -7.94861168e-02\\n1.17574111e-01 3.11294086e-02 -4.69237506e-01 4.03305441e-01\\n-2.40431517e-01 -2.43310541e-01 3.38967860e-01 6.33943081e-01\\n2.96667460e-02 -5.11293590e-01 -4.87605125e-01 -3.44192207e-01\\n7.87505060e-02 -1.29626557e-01 9.30146426e-02 -2.42762446e-01\\n4.47398901e-01 1.04160108e-01 -8.24963972e-02 3.83848429e-01\\n-7.97209024e-01 -1.07523687e-01 -3.29579711e-01 3.70689780e-02\\n-3.70374799e-01 -8.13968852e-02 -3.12633991e-01 -1.14763446e-01\\n-8.15293640e-02 3.55602741e-01 -1.03652045e-01 1.35296375e-01\\n-6.63444549e-02 3.51141989e-01 -1.81835383e-01 2.70721883e-01\\n2.73774385e-01 2.31659353e-01 3.50735873e-01 3.75950336e-01\\n-3.80406201e-01 4.46385920e-01 1.94512874e-01 -2.76750147e-01\\n2.33661681e-01 1.19846925e-01 4.12772179e-01 6.91626519e-02\\n2.01970413e-01 1.45325661e-01 -1.91437185e-01 1.84454829e-01\\n1.30477324e-01 -2.56454110e-01 -6.58136792e-03 -9.07894596e-02\\n4.78952155e-02 -4.00098674e-02 -4.03733477e-02 1.06311999e-01\\n-3.49379867e-01 5.01761436e-01 6.22101501e-02 -3.02358806e-01\\n-8.92782956e-02 -5.99835992e-01 -8.50415826e-02 8.68865922e-02\\n-4.39783782e-02 1.91453785e-01 1.59146443e-01 2.95719832e-01\\n1.90271661e-01 -9.04824436e-02 1.08334050e-01 8.31530809e-01\\n-1.22043923e-01 4.49038930e-02 -2.67735660e-01 2.90029049e-01\\n1.27206907e-01 -2.70772278e-01 1.79501295e-01 2.63166666e-01\\n1.74689665e-03 6.09629638e-02 -3.04220974e-01 3.00966203e-01\\n-7.15184137e-02 -2.06152022e-01 -3.32405835e-01 2.25395441e-01\\n-1.69399813e-01 -5.35365522e-01 5.83341897e-01 -3.82870249e-02\\n2.75041968e-01 -1.18573099e-01 2.17579566e-02 -2.60559805e-02\\n-1.23969451e-01 3.01834524e-01 7.54818618e-02 2.21436217e-01\\n-3.15245390e-01 -1.66647941e-01 -1.93758175e-01 2.47777402e-01\\n-2.97981381e-01 1.46861881e-01 -1.49710953e-01 -1.04214452e-01\\n3.01210731e-01 2.52711959e-02 -4.04339701e-01 3.56099248e-01\\n-6.74385354e-02 -1.64164379e-01 -1.02923870e-01 3.31898332e-01\\n-1.37728736e-01 2.39060670e-01 -1.13384187e-01 -1.24124274e-01\\n6.32526994e-01 7.46572912e-02 2.40839735e-01 -1.07302647e-02\\n2.22918794e-01 -9.25877169e-02 2.69894093e-01 8.15138370e-02\\n-7.03108072e-01 2.74010420e-01 -6.40975982e-02 -2.34274596e-01\\n6.22633584e-02 -4.20332737e-02 3.22813958e-01 -4.21590626e-01\\n-5.65426871e-02 -1.72655284e-01 -2.85524338e-01 -3.58665943e-01\\n-2.36733884e-01 -2.36240551e-02 4.88393277e-01 -4.98519540e-01\\n-5.10029830e-02 1.99642405e-01 -6.13220513e-01 -6.79643303e-02\\n2.18699187e-01 1.64105758e-01 6.95907474e-02 1.90601468e-01\\n-7.42574036e-02 -5.63156486e-01 1.37512803e-01 -4.56095994e-01\\n-3.15934867e-01 1.56589180e-01 -3.28141838e-01 2.17608362e-01\\n8.49500522e-02 -1.23327123e-02 -1.04825869e-01 1.11761570e-01\\n-2.85331249e-01 4.45580557e-02 1.35202497e-01 3.80220972e-02\\n3.29133093e-01 4.05695960e-02 -4.49544370e-01 5.78053594e-01\\n-2.12196633e-01 4.15153384e-01 1.59640163e-01 -9.36754048e-01\\n5.18396258e-01 3.31254005e-01 3.14372852e-02 -3.10493439e-01\\n6.27963066e-01 -3.67640793e-01 -1.48033082e-01 2.36281469e-01\\n-4.27161992e-01 -2.44814724e-01 1.93949476e-01 -2.02260315e-01\\n-2.75662482e-01 6.55525923e-01 1.09605700e-01 1.94541007e-01\\n4.22844380e-01 -1.77056521e-01 -1.06027231e-01 -5.68426475e-02\\n-2.33480513e-01 -2.83239096e-01 -5.74048519e-01 3.81746776e-02\\n-8.32576007e-02 -6.05826735e-01 -2.30568081e-01 -4.92524147e-01\\n-1.92836434e-01 -3.80383462e-01 -1.81332529e-01 2.67955780e-01\\n1.41903698e-01 2.17924520e-01 -2.59663761e-02 -2.82805413e-05\\n-1.04236759e-01 -6.34298444e-01 6.45491295e-03 3.85725275e-02\\n3.33907098e-01 3.68606746e-01 6.91049248e-02 -1.53220534e-01\\n7.54841194e-02 5.43214202e-01 -3.79810214e-01 -3.71833265e-01\\n1.80991501e-01 1.37095332e-01 -8.96518975e-02 -1.18662618e-01\\n1.00606620e-01 3.50473344e-01 -3.23105812e-01 5.36582321e-02\\n-1.40380487e-01 9.02424827e-02 3.43137801e-01 -1.16156861e-01\\n-2.37240762e-01 -2.30305433e-01 -6.20119125e-02 2.76989222e-01\\n-5.26858091e-01 -2.83450663e-01 6.36926591e-01 1.41324237e-01\\n9.57625210e-02 2.04510853e-01 3.18703741e-01 -6.05596676e-02\\n-2.34628364e-01 -2.48275146e-01 2.10501537e-01 1.15231000e-01\\n2.48011678e-01 1.00390658e-01 -7.82887638e-02 -5.29437125e-01\\n-3.07844353e+00 -2.50917226e-01 1.20902330e-01 -2.61083633e-01\\n2.78342307e-01 -1.24349117e-01 1.32776409e-01 1.43680759e-02\\n-4.02289629e-01 5.13123870e-02 -1.07671551e-01 -1.73335433e-01\\n1.48070514e-01 2.33742535e-01 1.60335720e-01 1.71329409e-01\\n2.15245724e-01 -2.29246348e-01 4.06482965e-02 4.06005919e-01\\n-6.58445060e-02 -8.09059501e-01 1.01522341e-01 -3.60648707e-03\\n3.07430267e-01 2.79584885e-01 -4.22020316e-01 -6.92063645e-02\\n-3.40389699e-01 -2.67280400e-01 4.57585379e-02 -2.82098770e-01\\n-1.55224264e-01 4.03723001e-01 1.53713584e-01 -1.74165189e-01\\n1.02423690e-01 -3.70172977e-01 -9.85361114e-02 -4.75336730e-01\\n1.46209925e-01 -6.77501917e-01 -3.63746211e-02 -3.01472694e-02\\n6.60295725e-01 -3.21714073e-01 2.27353185e-01 8.08809549e-02\\n1.93406820e-01 1.98059082e-01 1.02558687e-01 -9.37359408e-03\\n-3.49216551e-01 -2.95364887e-01 -1.17402233e-01 -1.88076094e-01\\n6.45881295e-01 4.75026369e-01 -2.77792782e-01 2.24572215e-02\\n4.18757983e-02 -3.29170465e-01 -4.85821426e-01 -3.31049681e-01\\n-1.85520738e-01 -2.00931773e-01 -6.25781417e-01 -4.96386766e-01\\n-1.67225331e-01 -1.53440312e-01 -5.19684516e-02 7.37138569e-01\\n-2.70267487e-01 -2.81533390e-01 -8.99527594e-02 -5.24616003e-01\\n2.43159264e-01 -1.89375639e-01 -4.52903137e-02 -2.34442040e-01\\n-2.27502540e-01 -5.09904444e-01 1.63961247e-01 6.39593452e-02\\n-1.58689231e-01 -1.05306461e-01 1.59754351e-01 -2.05803767e-01\\n-3.69312346e-01 -5.18929958e-01 5.75707674e-01 6.63628876e-02\\n3.21575999e-01 1.86075434e-01 3.19788098e-01 1.09983027e-01\\n4.29221332e-01 -1.02604628e-01 1.37512162e-02 -5.35878062e-01\\n7.15918392e-02 3.97919342e-02 5.22148609e-01 -1.40084922e-01\\n1.24339759e-02 4.87452000e-03 -1.84229299e-01 -2.08469592e-02\\n4.39739347e-01 6.02326244e-02 1.33663625e-01 -2.71868944e-01\\n2.80583382e-01 -3.50069523e-01 -2.49759808e-01 1.41578719e-01\\n-4.02060151e-02 6.59861267e-01 3.47793438e-02 -2.96816379e-01\\n-1.62126109e-01 4.53513265e-01 -7.98134431e-02 -1.62108783e-02\\n-1.94086432e-01 1.07621238e-01 -2.27464229e-01 2.19464988e-01\\n1.83093138e-02 -9.78198126e-02 -1.91391110e-01 4.86656697e-03\\n-1.51257411e-01 1.95946336e-01 2.46717036e-01 2.09692076e-01\\n-5.34470789e-02 -3.02856624e-01 -7.21270591e-03 1.93470493e-01\\n2.53031969e-01 3.25770289e-01 1.66620940e-01 -2.34616667e-01\\n3.85101140e-02 3.16680670e-01 -1.49006814e-01 2.45270267e-01\\n-2.36596435e-01 8.04373771e-02 -6.37423277e-01 -2.30439693e-01\\n-2.30456978e-01 -3.34649503e-01 -6.83899829e-03 2.91253537e-01\\n4.45786752e-02 -5.21223731e-02 8.56707990e-02 -4.97735322e-01\\n2.78131902e-01 4.10677344e-02 2.26697251e-01 3.00913006e-02\\n-6.06206506e-02 5.89340568e-01 -7.83510059e-02 -2.26526827e-01\\n-1.43483758e-01 1.50425300e-01 -1.28624856e-01 -2.77871430e-01\\n2.21437011e-02 -5.10774732e-01 -1.24284521e-01 3.86217386e-01\\n1.49989963e-01 -2.12735116e-01 -2.60763764e-01 1.82894036e-01\\n-2.10438296e-03 -4.07131851e-01 -2.56571651e-01 -1.91104766e-02\\n3.39273393e-01 1.41859427e-01 2.06782162e-01 -5.00617266e-01\\n-9.58528928e-03 -5.77640384e-02 1.32779256e-02 3.28384459e-01\\n1.16819277e-01 1.23974651e-01 -8.56348872e-02 -2.47029841e-01\\n3.91880929e-01 -5.13763018e-02 -6.37968630e-02 -6.45359531e-02\\n1.15723625e-01 -2.61147946e-01 -4.43698198e-01 -5.20283356e-03\\n-6.28705919e-02 -2.16344774e-01 -2.21439749e-02 5.34471273e-02\\n6.54756948e-02 5.56902997e-02 -6.02025211e-01 -1.81921363e-01\\n-3.93161595e-01 -1.01522189e-02 -1.80128962e-03 -5.54661036e-01\\n2.57067755e-03 -5.91491163e-02 -6.17012143e-01 2.27462009e-01\\n-1.93288505e-01 -7.72827305e-03 1.46137372e-01 2.70685507e-03\\n-3.74308825e-01 -1.38795897e-01 1.30044013e-01 1.26882434e-01\\n-2.59685308e-01 -2.41290480e-01 -1.71773992e-02 -9.16896820e-01\\n2.41099849e-01 -4.47780043e-02 -1.46295428e-01 8.71659443e-03\\n5.96119016e-02 -7.86224246e-01 2.13490158e-01 -4.42587554e-01\\n-7.34034330e-02 -5.32511994e-02 -2.99654871e-01 -4.19603884e-01\\n3.32528539e-02 -4.87955436e-02 -2.67345995e-01 3.14116657e-01\\n-4.43440706e-01 4.77910995e-01 -5.23517281e-02 6.92546889e-02\\n3.75449434e-02 -3.45616579e-01 2.75129788e-02 -3.67159486e-01\\n-3.87125075e-01 -2.75124967e-01 -2.27405623e-01 -3.12143117e-01\\n-5.44109643e-02 -2.16156214e-01 -1.21164486e-01 9.74652767e-02\\n3.21979523e-01 1.05820104e-01 -2.83785611e-01 -2.47695193e-01\\n1.01856500e-01 -4.55958515e-01 9.02074426e-02 -1.49648845e-01\\n-3.45571898e-02 -1.57413781e-01 2.15351492e-01 6.77896887e-02\\n2.28583157e-01 -3.68386686e-01 4.44630802e-01 -2.92355150e-01\\n-3.59969676e-01 -8.22744370e-02 1.13130346e-01 4.51801717e-02\\n2.53296554e-01 -6.18026316e-01 -6.44735321e-02 3.72729301e-01\\n1.04283050e-01 6.92583397e-02 2.28760540e-01 -1.70242697e-01\\n-1.63246632e-01 2.34861016e-01 -4.79902893e-01 1.48090035e-01\\n7.77719855e-01 2.28743553e-01 5.85735962e-02 2.23965555e-01\\n1.58306122e-01 3.82422984e-01 4.55016315e-01 1.49419159e-02\\n-9.50162858e-02 3.85829329e-01 1.96012005e-01 -5.41675091e-01\\n-1.24380015e-01 -9.51157883e-03 -1.40057385e-01 -3.01467419e-01\\n6.94568574e-01 3.71726364e-01 -4.20915484e-01 -3.55089873e-01\\n-2.26755977e-01 -2.35909551e-01 2.98081458e-01 -6.97169602e-02\\n5.14107719e-02 -1.42977446e-01 5.49829006e-01 -1.31223723e-02\\n2.81506836e-01 6.61413014e-01 -1.87012076e-01 -2.85775006e-01\\n-7.63901770e-02 2.90733933e-01 9.05569568e-02 4.20053661e-01\\n-1.76569521e-01 2.53755927e-01 -3.02340109e-02 1.76752418e-01\\n-1.60879016e-01 6.01500645e-02 2.92551577e-01 6.61502779e-03\\n1.34982318e-01 1.12038657e-01 5.60967207e-01 4.95282680e-01\\n2.00496227e-01 5.04207850e-01 3.72471899e-01 -1.62782501e-02\\n4.71184939e-01 5.92214525e-01 3.25640649e-01 2.45483033e-02\\n-2.64912676e-02 1.69008434e-01 2.05812186e-01 5.43586574e-02\\n3.22243929e-01 4.08530116e-01 8.90217051e-02 9.97545362e-01\\n3.87153029e-01 3.19197863e-01 7.53401756e-01 -7.12076545e-01\\n-2.79803216e-01 -1.47552006e-02 4.94328380e-01 -4.31035519e-01\\n-1.32653294e-02 2.12294117e-01 -2.65596122e-01 3.15961719e-01\\n-4.04976249e-01 -7.22043738e-02 -2.86986753e-02 9.25575048e-02\\n1.18286289e-01 -1.01890124e-01 -1.91296682e-01 4.56276685e-02\\n-1.74387008e-01 -2.33241647e-01 -4.21412408e-01 -2.96364427e-01\\n-2.45122820e-01 -6.12163916e-02 -1.05807714e-01 -7.34834746e-02\\n-4.70886268e-02 -3.62323701e-01 -8.82291272e-02 -3.69754508e-02\\n3.59874010e-01 -1.34197772e-01 -7.44640976e-02 -1.35085329e-01\\n3.40849400e-01 2.69734621e-01 7.25262880e-01 -9.86575484e-02\\n6.82408363e-02 -1.93322390e-01 -2.12183774e-01 3.83212455e-02\\n1.16222426e-02 2.72300448e-02 6.09408990e-02 6.09072864e-01\\n-4.38957065e-01 -2.35902786e-01 3.38127762e-02 3.76781821e-01\\n-3.67565483e-01 -1.03730634e-01 -8.06691051e-02 1.36216834e-01\\n5.58694601e-02 1.21972516e-01 -2.23918110e-01 3.74377519e-02\\n-1.55979425e-01 -5.45422792e-01 3.82009685e-01 -1.06562130e-01\\n-1.06963478e-01 1.02384321e-01 2.55640328e-01 3.24659407e-01\\n-2.01840848e-01 -1.92697197e-02 -6.82788491e-02 3.50340195e-02\\n5.35736457e-02 4.43974257e-01 -1.17212661e-01 -2.35562384e-01\\n-3.46341729e-01 2.55334347e-01 -1.38096064e-01 4.98439968e-02\\n-2.76826546e-02 3.61386091e-01 1.17341019e-02 1.87336355e-01\\n1.89934328e-01 8.19223654e-03 -3.49441022e-01 -2.55365729e-01\\n-1.77964300e-01 -8.43334943e-02 -6.15842268e-03 -1.66509047e-01\\n2.88866103e-01 -2.58812249e-01 -1.03354618e-01 -2.33927459e-01\\n-1.81191191e-01 -2.71966875e-01 -6.74397647e-02 -7.69971758e-02]]',\n", + " 'job_description': 'About our client Our client is the world’s leading wholesale providers of reinsurance, insurance and other innovative forms of insurance-based risk transfer. Your responsibilities Our client is hiring an application engineer to work in a team with IT specialists and business analysts to design and develop solutions for global IT projects. The role is focused on maintaining and developing reporting applications for the Finance division. Maintaining, analyzing, designing, documenting, implementing, testing and deploying high-quality applications is within the responsibility of the team and you. You are interested to find out how you can apply your software engineering skills in the area of object-oriented design and analysis. Knowledge in surrounding technologies like J2EE, HTML5, JavaScript and WebSphere Liberty will help you by understanding the bigger picture. You are not afraid to learn other technologies like z/OS mainframe (i.e. JCL, JES, DB2) In addition, providing Level 3 support for ongoing operations is an integral part of the job. You enjoy solving challenging problems and you are equipped with good analytical skills and are highly motivated. You are willing to constantly develop your knowledge of IT methods and tools. You bring in an interest for reinsurance, financial topics, business requirements engineering and solution design. You will cooperate closely with the team lead, team members and internal clients, promoting teamwork within the project and the department across the globe. Your profile Graduates in computer science are preferred. Graduates in mathematics, technical studies, or natural sciences with software engineering experience are also considered. Persons with multiple years with professional experience in software engineering and projects are preferred. Knowledge in all of the following areas is required: Object Oriented Design & Analysis Java (programming language and libraries), J2EE Web services technologies (RESTful) and WebSphere liberty profile SQL and relational database design Creation and maintenance of technical documentation Strong command of German and English The ideal candidate also offers: Experience with data- and compute-intensive applications (batch processing, scheduling) Know-how in HTML5/JavaScript web-application development, Spring, Hibernate, IBM WebSphere Application Server Good analytical skills Cooperative, team-oriented work-style Experience with agile and test-driven and/or test-oriented software development (JUnit/bamboo/Jira) Above average quality awareness Passion to deliver innovative technical solutions which focus on business requirements and system stability Curiosity and open-mindedness; willingness to learn and develop skills on requirements engineering, test case engineering and solution definition and design Innovative, showing a high degree of own initiative Ability to work under pressure Ability to express him-/herself effectively in one-to-one conversations and small groups Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung HTML JavaScript Web JEE/J2EE Agile Hibernate (Framework) Spring (Framework) SQL Sprachen: Deutsch Englisch Job ID: 2085',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Team Oriented\", \"Teamwork\", \"Cooperation\", \"Willingness To Learn\", \"Integration\", \"Innovation\", \"Curiosity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Risk-Based Testing\", \"Test Case\", \"Tooling\", \"KM Programming Language\", \"Software Design Documents\", \"Agility\", \"Computer Science\", \"Junit\", \"Atlassian Bamboo\", \"Natural Sciences\", \"Hibernate (Java)\", \"SQL (Programming Language)\", \"Maintainability\", \"z/OS\", \"HTML5\", \"Application Servers\", \"E (Programming Language)\", \"Levelling\", \"Library\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"Reinsurance\", \"DB2 SQL\", \"Web Services\", \"Business Requirements\", \"Finance\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Job Control Language (JCL)\", \"Technical Documentation\", \"IBM Websphere Application Server\", \"Technical Solution Design\", \"Batch Processing\", \"Relational Databases\", \"Software Development\", \"Solution Design\", \"Additives\", \"JIRA Studio\", \"Java (Programming Language)\", \"Spring Framework\", \"Web Application Development\"]',\n", + " 'languages': \"['English', 'Chuang', 'Turkmen']\"},\n", + " {'company_id': '22',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Bergdietikon',\n", + " 'industry': 'Consulting',\n", + " 'website': 'www.behind-digital.com',\n", + " 'jobdescription_embedded': '[[-5.90697229e-02 1.92498304e-02 3.87356907e-01 -7.15880617e-02\\n3.22084755e-01 -2.15501979e-01 -6.63695857e-02 3.97634625e-01\\n2.09165141e-02 -4.51799512e-01 3.30017544e-02 -3.08219016e-01\\n6.15430474e-02 2.43660837e-01 -1.32951746e-02 2.38168046e-01\\n1.30762652e-01 6.25353456e-02 -1.15504324e-01 3.06345403e-01\\n8.64320099e-02 -1.85176179e-01 9.84735712e-02 7.57409096e-01\\n4.93705899e-01 -1.89804821e-03 -1.15245106e-02 2.10546136e-01\\n-1.36642814e-01 -2.55426347e-01 4.77892250e-01 1.50667066e-02\\n-1.15244262e-01 -4.56027895e-01 3.66785228e-01 5.06629683e-02\\n-4.15707976e-01 -1.10122919e-01 -2.40538403e-01 2.55900007e-02\\n-6.56731427e-01 -1.60800725e-01 -6.83459416e-02 1.19278561e-02\\n-1.62522569e-01 -2.54644960e-01 1.79070234e-01 -2.12749720e-01\\n1.61552966e-01 -1.11505739e-01 -5.78838289e-01 1.57199815e-01\\n-2.30957001e-01 -2.47693166e-01 2.93649733e-01 6.66485846e-01\\n-1.37940675e-01 -3.74371409e-01 -6.05260015e-01 -1.80233270e-01\\n1.51930302e-01 -2.64761120e-01 -1.46372899e-01 -4.46116209e-01\\n1.95855469e-01 1.90346427e-02 1.64089173e-01 4.98041749e-01\\n-9.10122037e-01 -2.09277458e-02 -2.66835630e-01 -1.10039823e-01\\n-3.09296191e-01 -4.78990860e-02 -3.65474015e-01 -1.02367423e-01\\n-9.73782167e-02 3.39759290e-01 7.56907761e-02 3.24463546e-02\\n-1.49492070e-01 4.42747980e-01 -3.23321164e-01 4.96977329e-01\\n1.30325064e-01 1.85690328e-01 1.42984599e-01 2.62793213e-01\\n-3.76342177e-01 6.27630711e-01 1.47171915e-01 -2.97406137e-01\\n2.87895463e-02 6.20058030e-02 4.12518919e-01 5.81836468e-03\\n2.87557662e-01 5.20693213e-02 -1.00697219e-01 3.65672529e-01\\n3.59967202e-01 -3.58083248e-01 -8.25724080e-02 -2.22581610e-01\\n1.45372719e-01 -1.80870984e-02 7.81507567e-02 1.72770873e-01\\n-1.73971608e-01 2.20883921e-01 2.04097897e-01 -8.25681016e-02\\n-1.32840797e-01 -4.67537969e-01 -1.65118545e-01 -4.39303368e-02\\n-1.25740960e-01 1.13545030e-01 4.13704738e-02 1.18052058e-01\\n5.31233326e-02 1.52762249e-01 3.42401117e-02 8.89394939e-01\\n-1.70897812e-01 3.77048440e-02 -1.46692693e-01 4.35713142e-01\\n4.82495204e-02 -3.23864341e-01 2.76832759e-01 2.67522722e-01\\n5.93155585e-02 -4.47779328e-01 -1.03766508e-01 2.69337773e-01\\n-3.87678705e-02 -1.26786411e-01 -3.05339307e-01 8.67760181e-02\\n3.06430878e-03 -2.38800988e-01 6.92716181e-01 2.80005664e-01\\n2.24171594e-01 1.76719040e-01 1.24009795e-01 -1.99632630e-01\\n-2.82599241e-01 2.23259091e-01 -3.35459299e-02 1.82143718e-01\\n-1.96323127e-01 -2.32997432e-01 -2.72435784e-01 -1.94149315e-02\\n-3.13872874e-01 2.03990370e-01 -1.28979459e-01 4.63761464e-02\\n3.95511538e-01 -1.43596172e-01 -7.70782977e-02 3.47966790e-01\\n-7.60922655e-02 3.18855822e-01 1.48644239e-01 1.67898506e-01\\n-8.68766680e-02 2.27451980e-01 -9.88272950e-02 -7.69993514e-02\\n6.38916910e-01 1.17101176e-02 1.47830203e-01 -7.81669617e-02\\n1.95734799e-01 9.37228575e-02 1.18589282e-01 5.22155426e-02\\n-7.41063654e-01 1.95023298e-01 8.17947164e-02 -4.84484807e-02\\n2.93577585e-04 -1.81881979e-01 1.29528821e-01 -3.25801998e-01\\n-2.54525449e-02 -1.13045484e-01 -4.49147582e-01 -1.74974531e-01\\n-2.36789584e-01 -1.16625316e-01 4.83282268e-01 -4.48038965e-01\\n-1.45088971e-01 6.16411790e-02 -2.64690369e-01 7.79283419e-02\\n2.51147687e-01 2.97649324e-01 2.67692089e-01 7.03499690e-02\\n-2.05553398e-01 -6.09242558e-01 5.01984507e-02 -2.68959701e-01\\n-2.63000578e-01 1.48040742e-01 -3.12735438e-01 2.80186623e-01\\n1.49960667e-01 -3.08451712e-01 -7.66111836e-02 1.12253748e-01\\n-7.62751997e-02 -5.64620756e-02 1.01130698e-02 -4.41561500e-03\\n3.43583584e-01 1.89318642e-01 -3.41510415e-01 3.69745851e-01\\n-1.56446658e-02 7.06944048e-01 1.78014617e-02 -7.84260869e-01\\n5.07012129e-01 3.36031735e-01 -1.82145670e-01 -3.02309602e-01\\n4.83803898e-01 -1.82280526e-01 -4.67858352e-02 1.02060385e-01\\n-6.14063680e-01 -4.60184366e-01 7.69026577e-02 -2.04062939e-01\\n-2.17569798e-01 4.47465092e-01 -7.65245361e-03 9.05045122e-02\\n3.30235273e-01 -2.14643240e-01 -1.81797370e-01 -1.66454576e-02\\n7.63276815e-02 -2.51149982e-01 -5.45484126e-01 -1.76503733e-01\\n-1.76720366e-01 -5.24456978e-01 -1.94476992e-01 -3.86347324e-01\\n-2.77320027e-01 -4.55801487e-01 -1.96946904e-01 2.88875774e-02\\n2.34343782e-01 2.01302260e-01 5.15171327e-02 1.24490641e-01\\n-2.12943345e-01 -5.94643831e-01 2.99840383e-02 1.77204460e-01\\n3.33040446e-01 1.18492641e-01 1.43386200e-01 -1.04594290e-01\\n-2.61927973e-02 6.41000986e-01 -2.16013163e-01 -1.97362646e-01\\n2.29460239e-01 1.05897479e-01 5.82566038e-02 -2.86858708e-01\\n7.50339106e-02 3.05699438e-01 -4.28190589e-01 1.03366174e-01\\n-1.23979226e-01 -1.47475824e-01 4.88919169e-01 -6.37356006e-03\\n-3.63598615e-01 -1.58088371e-01 -2.52051324e-01 8.24041814e-02\\n-5.83899081e-01 -4.71512862e-02 6.44982100e-01 1.06046848e-01\\n1.80375293e-01 1.10018857e-01 1.02523491e-01 -8.58148634e-02\\n-1.37858063e-01 -1.18157968e-01 2.49138579e-01 2.56441593e-01\\n-1.64678916e-01 1.61965743e-01 -1.50298804e-01 -6.03684187e-01\\n-3.53884387e+00 -1.66385338e-01 1.43651798e-01 -3.44596684e-01\\n1.43189982e-01 -1.56618446e-01 -2.35876217e-02 -1.16823934e-01\\n-1.88289329e-01 -2.25103721e-01 -2.28481054e-01 -1.61166966e-01\\n1.47299856e-01 2.46515367e-02 1.68859929e-01 3.00495982e-01\\n3.71193111e-01 -1.39538765e-01 4.21666615e-02 1.73326060e-01\\n-3.72239739e-01 -5.27086914e-01 1.04839034e-01 -1.17252864e-01\\n3.10631633e-01 3.70246857e-01 -3.31588715e-01 -1.47960335e-01\\n-1.96688399e-01 -1.83902517e-01 7.21079707e-02 -4.44871098e-01\\n1.47916764e-01 1.89034641e-01 3.30240056e-02 -3.28062661e-02\\n1.09414786e-01 -4.66481328e-01 -9.94480327e-02 -4.43042457e-01\\n4.88443263e-02 -4.97565687e-01 4.05698121e-02 -1.42104521e-01\\n8.87242138e-01 -4.50150430e-01 1.21466431e-03 2.68027745e-02\\n1.19330682e-01 2.31589615e-01 4.17047106e-02 9.26459953e-02\\n-3.78078759e-01 -3.12201321e-01 -1.18358061e-01 1.04628233e-02\\n3.08340162e-01 4.56080198e-01 -2.58575231e-01 6.50123209e-02\\n-1.57848019e-02 -2.69014060e-01 -4.29757208e-01 -2.26546124e-01\\n-8.53807330e-02 -1.99883997e-01 -4.87628967e-01 -3.54114622e-01\\n-5.72812222e-02 -2.75813699e-01 -7.38668591e-02 4.70817953e-01\\n-2.85164058e-01 -4.69380409e-01 3.53815593e-02 -4.16886240e-01\\n3.46859962e-01 5.00312112e-02 1.32368684e-01 -1.77790269e-01\\n-2.89823830e-01 -6.01796687e-01 6.41048476e-02 -4.47928421e-02\\n-2.07037494e-01 -3.01630348e-01 7.71933943e-02 -2.04316065e-01\\n-2.60478377e-01 -6.11738622e-01 3.55137557e-01 4.60728034e-02\\n1.53969526e-01 4.44217622e-02 2.20213488e-01 -2.16164261e-01\\n1.66568115e-01 1.35732777e-02 -1.55497611e-01 -2.54577696e-01\\n1.78706467e-01 -2.79983580e-02 2.88263530e-01 -1.08268999e-01\\n4.67528094e-04 9.93764475e-02 -2.01266706e-01 -6.70529306e-02\\n2.28374794e-01 1.50854867e-02 1.65409744e-01 -3.65247518e-01\\n4.13163364e-01 -8.08945149e-02 -2.30804265e-01 1.79677561e-01\\n4.03349735e-02 4.17586803e-01 1.51773766e-02 -2.28993714e-01\\n-8.47993791e-02 3.83248806e-01 5.98196611e-02 -7.28707016e-02\\n-2.08068326e-01 7.96936899e-02 -3.05856109e-01 2.39873976e-01\\n5.05812541e-02 -1.97099045e-01 -1.92490175e-01 -4.00975347e-02\\n-2.53551096e-01 3.63657713e-01 2.06890151e-01 -2.28365194e-02\\n-1.23668313e-01 -4.56591427e-01 4.94027175e-02 2.60141224e-01\\n9.73235667e-02 5.74870646e-01 2.07484946e-01 -1.64960101e-01\\n3.39396521e-02 3.46997142e-01 -2.24972904e-01 -6.64325431e-02\\n-3.06013584e-01 6.27606139e-02 -5.69776058e-01 -3.28463376e-01\\n-3.62535059e-01 -4.44711357e-01 3.91949303e-02 2.02419132e-01\\n9.97913778e-02 -6.12550527e-02 -2.19105314e-02 -3.99106383e-01\\n2.30006993e-01 1.34858280e-01 3.26067001e-01 2.44457424e-01\\n1.17442429e-01 5.29643893e-01 4.08034660e-02 -1.76353827e-01\\n-1.33579224e-01 7.03076497e-02 -2.70969599e-01 -2.23659158e-01\\n-1.96700227e-02 -5.67251086e-01 -2.03932519e-03 4.59441632e-01\\n-2.36693118e-02 -2.24491745e-01 -8.57427642e-02 3.07308614e-01\\n-8.25798139e-02 -2.04445377e-01 -3.13317001e-01 1.59328580e-01\\n4.25629288e-01 2.72927344e-01 1.91312522e-01 -3.48455280e-01\\n7.42041245e-02 6.58947602e-02 -2.22712278e-01 6.19362593e-01\\n4.16553244e-02 1.03516646e-01 -2.39900678e-01 -2.52179086e-01\\n3.16543758e-01 -8.90434161e-02 3.97701077e-02 -1.11334361e-01\\n3.19872677e-01 -1.55574024e-01 -2.39475131e-01 2.49652624e-01\\n1.13142423e-01 -1.87225044e-01 1.13470986e-01 1.38564616e-01\\n3.70389707e-02 1.62575573e-01 -6.30668223e-01 -2.92453557e-01\\n-3.99146110e-01 1.10396124e-01 1.48829103e-01 -4.67499167e-01\\n1.79926883e-02 1.88286242e-03 -3.89978766e-01 1.98242381e-01\\n-1.27938315e-01 -5.81056960e-02 2.43402243e-01 1.17657907e-01\\n-2.96742618e-01 -6.33418858e-02 1.79303214e-01 2.29626194e-01\\n-2.45782837e-01 -2.06666693e-01 -3.35800461e-02 -9.29463148e-01\\n2.23673359e-01 7.29157180e-02 -1.01103127e-01 2.93183923e-01\\n3.25593874e-02 -5.68493187e-01 4.36539426e-02 -1.48256943e-01\\n-2.46190101e-01 1.03062510e-01 -2.97377054e-02 -5.30274987e-01\\n-6.50946498e-02 7.83666410e-03 -1.15137413e-01 5.28556108e-01\\n-3.76523614e-01 4.49867010e-01 -3.80168147e-02 5.84761426e-02\\n-4.32460755e-02 -2.61065722e-01 1.81839705e-01 -5.76361179e-01\\n-3.13833743e-01 -3.02043676e-01 -3.43342632e-01 -2.57068694e-01\\n8.23177397e-02 -5.64761162e-01 -1.16347261e-02 2.12286144e-01\\n4.02159691e-01 -1.50288653e-03 -1.49140298e-01 -3.75115067e-01\\n2.13044494e-01 -5.29640257e-01 5.57774715e-02 -1.76500734e-02\\n9.50891674e-02 -1.97668195e-01 1.06907263e-01 1.05619892e-01\\n2.34327182e-01 -6.49115503e-01 2.76991069e-01 -3.63622487e-01\\n-2.72558421e-01 4.26127249e-03 1.12596355e-01 -1.62064582e-02\\n3.82132679e-01 -4.21694070e-01 -6.79756105e-02 4.06790286e-01\\n3.41996074e-01 -1.79658890e-01 2.92355984e-01 -3.69793028e-02\\n-1.46797478e-01 4.33824927e-01 -2.15216279e-01 1.20397866e-01\\n8.20362866e-01 -1.17482141e-01 1.87678188e-01 1.56477958e-01\\n1.83569774e-01 4.26871330e-01 3.82140905e-01 2.88187619e-03\\n-1.79248855e-01 3.37101251e-01 2.25690141e-01 -4.70945835e-01\\n2.25053087e-01 -1.37736395e-01 -1.37479767e-01 -1.92626432e-01\\n6.18137240e-01 5.72110116e-01 -4.77607995e-01 -4.73110601e-02\\n-5.64659685e-02 -2.01015130e-01 -1.86540000e-02 -4.96195024e-03\\n-4.80545219e-03 -6.90571442e-02 4.20113027e-01 -7.68214539e-02\\n1.19988456e-01 4.61118281e-01 -2.54854888e-01 -2.74702638e-01\\n9.11292881e-02 2.88592160e-01 -1.54909000e-01 3.42322022e-01\\n-2.79259354e-01 4.46368515e-01 2.97971480e-02 4.33158278e-02\\n-1.11211315e-02 6.12120591e-02 1.81251779e-01 6.78690299e-02\\n4.58965227e-02 -2.43143607e-02 3.78362030e-01 3.70555788e-01\\n4.14361179e-01 5.12473047e-01 2.92659730e-01 1.58590242e-01\\n5.06956339e-01 5.71667790e-01 4.27521676e-01 2.02264220e-01\\n-9.96391848e-02 -5.88743091e-02 1.27711564e-01 1.56993553e-01\\n3.08242857e-01 4.10435021e-01 1.33390680e-01 9.25025523e-01\\n4.79304373e-01 1.61568135e-01 5.29406548e-01 -6.68632030e-01\\n-3.90176207e-01 -3.76478769e-03 3.00428540e-01 -2.43273661e-01\\n-8.05053189e-02 9.34481770e-02 -7.39339814e-02 3.32135856e-01\\n-2.37521321e-01 -2.65890777e-01 -9.14464518e-02 3.95459294e-01\\n2.76408289e-02 -1.98852390e-01 -2.02611387e-01 2.68706027e-02\\n-1.13139100e-01 -1.74532145e-01 -4.40434188e-01 -8.28698501e-02\\n-3.15015316e-01 -3.78962278e-01 -4.51962575e-02 2.85281017e-02\\n-8.46900418e-02 -4.02702838e-01 -7.79105946e-02 1.53156281e-01\\n3.20196211e-01 -1.77886724e-01 -2.26824582e-02 -2.78161138e-01\\n3.10718983e-01 1.47873133e-01 4.92353380e-01 1.92223951e-01\\n8.09796676e-02 -3.04575056e-01 -6.47391826e-02 1.90143943e-01\\n1.97994009e-01 2.04498395e-01 -4.80325706e-02 2.47786894e-01\\n-2.66602904e-01 -1.52968258e-01 3.36418957e-01 3.85989040e-01\\n-5.03808141e-01 9.83584672e-02 -6.18576668e-02 7.58966953e-02\\n-7.66670331e-02 2.66651601e-01 -1.10115066e-01 1.02342097e-02\\n-1.61913842e-01 -4.29271072e-01 2.23915756e-01 -1.76836461e-01\\n-1.11590564e-01 -1.34869531e-01 2.30460331e-01 2.56823242e-01\\n-7.08037764e-02 3.77928764e-02 2.96847411e-02 2.40338728e-01\\n2.57309787e-02 2.80185193e-01 -2.65034318e-01 -2.86984533e-01\\n-2.41443217e-01 3.72472554e-02 -1.90118030e-01 1.21536605e-01\\n8.08183923e-02 3.02979201e-01 2.20730409e-01 -6.66994750e-02\\n5.34560204e-01 -2.20442221e-01 -4.85056033e-03 -1.33125797e-01\\n-3.28821123e-01 -1.15221068e-01 -6.67722300e-02 -4.28645238e-02\\n2.74226576e-01 -3.71595293e-01 -1.22148730e-01 2.98989881e-02\\n-8.56320336e-02 -3.00180584e-01 2.52191182e-02 -5.35060428e-02]]',\n", + " 'job_description': \"The DIADEM project will use blockchain technology to solve real problems in the mobile telecoms billing and contract space. It’s an ambitious project with huge potential to both transform the mobile telecoms sector, and to generate substantial revenue. The project is in the startup phase and we need to expand the core team to help transform the vision into a robust project. These will be your tasks We are seeking blockchain developers with the following skills Experience developing blockchain software and smart contracts Knowledge of HyperLedger and Ethereum development Experience with developing software more broadly You're offering these qualifications Full-stack development HyperLedger Fabric Blockchain We're offering these benefits The project is not funded at this time so initially you will need to be prepared to devote time to the project in return for an eventual share of token equity. Once the project is funded a salary will be provided. This is a great opportunity to get in at the start with a project with real-world tangible application and massive scope for development, so please get in touch if you like to come on-board.\",\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Equities\", \"MASSIVE (Software)\", \"Hyperledger\", \"Billing\", \"Software Development\", \"Blockchain\", \"Ethereum\", \"Phase (Waves)\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Tigrinya', 'Southern Sotho']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data scientist (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.11555862e-01 2.90439308e-01 2.43743166e-01 -6.73134923e-02\\n5.26016116e-01 -1.71804175e-01 -1.54827498e-02 3.27446796e-02\\n-2.04832897e-01 -3.60443443e-01 -5.93928993e-02 -1.11598141e-01\\n-9.30588394e-02 -9.82516408e-02 1.18764192e-01 6.31380558e-01\\n1.98650539e-01 1.30750062e-02 -2.13116661e-01 2.35080779e-01\\n5.07640541e-02 5.95810125e-03 5.48583828e-02 5.70251405e-01\\n3.36387813e-01 -4.28584293e-02 -1.89078376e-01 1.25269055e-01\\n-2.11285919e-01 -1.25119597e-01 1.98547840e-01 1.64403260e-01\\n-6.48555011e-02 -1.93890929e-01 -1.12815481e-02 2.41606012e-01\\n-1.78396910e-01 7.00846910e-02 2.14162581e-02 3.37384015e-01\\n-3.17803293e-01 -1.89752460e-01 -4.00397666e-02 -5.83578125e-02\\n-3.76946032e-01 -4.48038787e-01 -5.03118001e-02 -9.86058712e-02\\n1.58417061e-01 -2.47141525e-01 -4.22548532e-01 2.86312491e-01\\n-6.35446534e-02 -5.90158775e-02 1.99346364e-01 6.85207367e-01\\n9.88571495e-02 -4.28662062e-01 -1.03581704e-01 -2.02687562e-01\\n-9.93999559e-03 -1.12690456e-01 -9.03542936e-02 -1.94134966e-01\\n5.91465473e-01 1.22063033e-01 1.56430006e-02 2.72757053e-01\\n-7.88408458e-01 -1.01638965e-01 -1.85445800e-01 1.53270736e-01\\n-3.62269640e-01 -1.40357226e-01 -2.16223165e-01 -1.24481566e-01\\n1.22514643e-01 3.15117657e-01 -5.72549999e-02 6.58501983e-02\\n-1.27125829e-01 2.40262479e-01 -2.08158925e-01 7.11812750e-02\\n2.96646804e-01 2.65437573e-01 1.41527385e-01 3.49135011e-01\\n-3.71321589e-01 1.83299661e-01 1.32367179e-01 -2.57658720e-01\\n1.60240427e-01 1.51241958e-01 5.07546782e-01 1.20145254e-01\\n-9.14805308e-02 1.82396650e-01 -1.85440287e-01 3.79287213e-01\\n1.36634469e-01 -2.10370824e-01 -3.57755348e-02 7.12437276e-03\\n-7.95886293e-02 -1.72915235e-01 -3.00242696e-02 3.16566557e-01\\n-2.46039420e-01 3.64842594e-01 1.20915711e-01 -2.42251143e-01\\n9.33149531e-02 -6.76228344e-01 -2.91599274e-01 -7.51264244e-02\\n-1.34301543e-01 2.09640756e-01 3.04557830e-01 3.18822473e-01\\n7.95031711e-02 8.63540918e-02 3.87014925e-01 1.18354905e+00\\n-9.42070857e-02 2.55286515e-01 -5.38273826e-02 4.10368413e-01\\n1.66878939e-01 -2.20077470e-01 1.10328980e-01 3.76161784e-01\\n2.88229942e-01 -6.57120422e-02 -1.83342583e-02 1.52587667e-01\\n-2.80916572e-01 -3.03427875e-01 -3.79278898e-01 1.43539757e-01\\n-1.78206876e-01 -5.10638297e-01 5.83467960e-01 3.49937901e-02\\n1.03938371e-01 -1.51902050e-01 -1.20379880e-01 -7.03316107e-02\\n-1.26891017e-01 3.43891472e-01 1.43059522e-01 6.14267178e-02\\n-4.26526904e-01 -2.56333947e-01 -2.54625082e-01 1.92367613e-01\\n-2.00437099e-01 8.64835903e-02 -2.37875402e-01 -1.54359415e-02\\n1.90354496e-01 1.50561687e-02 -4.71203744e-01 1.60527661e-01\\n2.12555681e-03 -5.21052241e-01 -7.49117881e-02 4.98623580e-01\\n-9.78956372e-02 2.47593269e-01 -5.06086983e-02 -2.22749561e-01\\n5.81299126e-01 6.36968836e-02 5.34296446e-02 -1.83920458e-01\\n3.45435202e-01 -1.65651396e-01 2.52314806e-01 2.03706607e-01\\n-6.74226284e-01 2.70633548e-01 -1.54546738e-01 -2.04136074e-01\\n1.92002311e-01 1.07969724e-01 6.03751302e-01 -3.36163640e-01\\n-2.13438328e-02 -1.46973848e-01 -2.82903790e-01 -2.60321736e-01\\n-2.87149638e-01 2.27827784e-02 4.77642506e-01 -7.18863904e-02\\n-6.90290146e-03 2.23712072e-01 -5.49547434e-01 -5.46188056e-02\\n1.15351357e-01 2.16850802e-01 2.73859441e-01 1.10779583e-01\\n-1.26846343e-01 -6.54958904e-01 -2.46623904e-02 -4.12901253e-01\\n-4.53823358e-01 2.55083263e-01 -1.69219643e-01 2.85879850e-01\\n1.84488997e-01 9.73493829e-02 6.93552662e-04 1.20703936e-01\\n-3.48493636e-01 1.26679754e-02 2.11851016e-01 2.14580268e-01\\n3.13206837e-02 4.63391580e-02 -5.13124704e-01 3.91052097e-01\\n-3.52221951e-02 6.17624402e-01 3.67429554e-01 -8.10084522e-01\\n5.38096130e-01 4.02823687e-01 1.16752625e-01 -2.54842848e-01\\n5.57982206e-01 -3.00403655e-01 -7.87999257e-02 1.04020417e-01\\n-2.49045014e-01 -1.57891899e-01 3.17537129e-01 -1.32099360e-01\\n-3.30077976e-01 5.91726363e-01 3.55832905e-01 1.64920524e-01\\n3.61044586e-01 -3.35754871e-01 -1.31146476e-01 1.27146989e-01\\n-1.33231238e-01 -2.97007203e-01 -4.39045340e-01 7.25508630e-02\\n-5.76176718e-02 -5.06333351e-01 -1.10034250e-01 -4.12959337e-01\\n-1.79132521e-01 -4.12871659e-01 -4.30766903e-02 4.75330621e-01\\n9.58494768e-02 1.40172631e-01 1.14418812e-01 -1.17533199e-01\\n-9.75390971e-02 -5.52489340e-01 -1.73331439e-01 -9.95348468e-02\\n4.63406146e-01 2.63907492e-01 2.07709502e-02 -4.49075401e-02\\n2.38032639e-03 3.57018918e-01 -5.59494853e-01 -5.19638836e-01\\n7.17170676e-03 7.78084844e-02 -2.14344725e-01 -2.05588229e-02\\n5.84143102e-02 5.40068686e-01 -1.94340661e-01 2.73501307e-01\\n-3.10353786e-01 3.87848057e-02 2.27466494e-01 -8.67832974e-02\\n-1.77429259e-01 -2.32428044e-01 -1.91218644e-01 2.38477394e-01\\n-7.27529585e-01 -3.66210639e-01 4.48359877e-01 2.00410128e-01\\n1.50636598e-01 -9.00894310e-03 1.16743378e-01 -1.63753822e-01\\n-2.84284770e-01 -1.84285387e-01 -1.03945754e-01 1.24566190e-01\\n-1.95649207e-01 5.49074225e-02 -2.59083986e-01 -4.41251993e-01\\n-3.83032179e+00 -1.12078888e-02 9.95448530e-02 -2.30838463e-01\\n1.25900716e-01 -5.85343465e-02 1.37677148e-01 -1.20255435e-02\\n-3.61738920e-01 -1.32911429e-02 -3.92558992e-01 -2.24743068e-01\\n-1.74907774e-01 4.80667293e-01 1.60809442e-01 -1.24164917e-01\\n-2.23787874e-02 -3.65350395e-01 -2.12771669e-02 4.33080643e-01\\n1.42978385e-01 -6.35747194e-01 -2.78150924e-02 6.63202703e-02\\n7.33892247e-02 9.88208354e-02 -3.03018242e-01 7.14696050e-02\\n-3.20187062e-01 -4.12855715e-01 5.30754738e-02 -2.79922694e-01\\n-1.33402068e-02 2.68121749e-01 1.77963570e-01 8.56625363e-02\\n-1.74222812e-01 -2.49606416e-01 1.74995333e-01 -3.12451929e-01\\n-9.16491747e-02 -4.74989623e-01 6.48437813e-02 -7.61047229e-02\\n6.51225686e-01 -2.41680205e-01 1.00490831e-01 1.99631497e-01\\n2.65959978e-01 2.66152680e-01 -3.99318822e-02 1.81837790e-02\\n-2.72162974e-01 -1.72152102e-01 -6.75251484e-02 -3.54183882e-01\\n4.02745277e-01 3.57949913e-01 -2.61477947e-01 -8.52075368e-02\\n1.25592589e-01 -2.87037104e-01 -4.64866310e-01 -3.40538234e-01\\n-3.59270006e-01 -7.23846331e-02 -8.52823913e-01 -6.17260337e-01\\n-5.35104424e-02 -1.49468258e-01 -1.73587695e-01 4.98814523e-01\\n-4.20341790e-01 -5.93547463e-01 -9.93520766e-02 -3.72091532e-01\\n3.85716408e-02 -2.85469085e-01 1.64575145e-01 4.83522099e-03\\n-3.50459367e-01 -5.09117544e-01 4.09958810e-02 2.06249505e-02\\n-6.33743107e-02 -2.61272073e-01 -1.63085356e-01 -4.27231163e-01\\n-4.42923754e-01 -4.67792958e-01 5.27583063e-01 4.38655494e-03\\n2.88466185e-01 1.79134965e-01 3.35528851e-01 1.64853334e-01\\n4.00547385e-01 -4.27129567e-02 3.22156161e-01 -3.53896528e-01\\n9.08770338e-02 -2.25402161e-01 7.77115583e-01 -3.30181777e-01\\n2.62016594e-01 2.25058317e-01 -3.48582029e-01 -7.54140839e-02\\n4.51124430e-01 3.10696121e-02 -8.62401277e-02 -2.13893861e-01\\n4.27063555e-01 -4.00535226e-01 -2.22272173e-01 1.98532298e-01\\n6.77602515e-02 7.04245627e-01 5.53727001e-02 -4.28555667e-01\\n-2.94217885e-01 3.28479856e-01 -1.80308357e-01 -2.61540145e-01\\n6.04375452e-02 2.08908677e-01 -1.38546556e-01 2.51392990e-01\\n2.68681888e-02 -1.19131297e-01 -1.67560622e-01 -1.30164614e-02\\n-5.49458563e-02 2.89081097e-01 3.18010449e-01 8.74031261e-02\\n-1.62215054e-01 -1.66866407e-01 -1.18104838e-01 1.95303157e-01\\n3.95396411e-01 6.09003641e-02 3.62601250e-01 -4.03633595e-01\\n7.65063539e-02 3.00281525e-01 -7.28415176e-02 2.04496399e-01\\n-1.31483957e-01 1.48580790e-01 -4.96283472e-01 -2.58033037e-01\\n-1.63887277e-01 -2.82742083e-01 1.46742925e-01 3.90289068e-01\\n1.38425052e-01 -1.23477124e-01 1.17292941e-01 -4.02351737e-01\\n3.06721479e-01 1.37483031e-01 3.77373099e-01 1.65012345e-01\\n1.93018466e-03 4.71057445e-01 -1.22117914e-01 -8.62892643e-02\\n4.22921265e-04 7.21396878e-02 -2.57544875e-01 -3.19395065e-01\\n-9.24516469e-03 -5.07275045e-01 -8.76470208e-02 4.41440314e-01\\n1.34612262e-01 1.10771903e-03 -4.05421972e-01 1.68883130e-01\\n1.38025045e-01 -3.84095043e-01 -1.40642807e-01 1.46499947e-01\\n3.21914405e-01 5.61968088e-02 1.35492712e-01 -3.54174376e-01\\n-6.81156665e-02 -9.66459215e-02 -4.60865758e-02 4.65203673e-01\\n1.00904584e-01 -1.23450689e-01 -2.23651290e-01 -7.25204349e-02\\n5.23207486e-01 1.28401443e-01 1.08874045e-01 -9.44120511e-02\\n4.10713851e-02 -2.98162073e-01 -3.17022979e-01 -3.74734146e-03\\n-3.52426171e-02 -1.50398612e-01 5.82138589e-03 -3.02747004e-02\\n-6.39000013e-02 -5.85089698e-02 -5.51018059e-01 -3.41060460e-01\\n-2.04344869e-01 -1.70999840e-01 9.83914882e-02 -1.92710459e-01\\n-1.40080014e-02 5.75304404e-03 -5.66341698e-01 3.06389630e-01\\n-2.17712045e-01 1.56970069e-01 6.82923570e-02 4.29574884e-02\\n-6.35352805e-02 -2.86520481e-01 -1.40593782e-01 -1.03187241e-01\\n-2.19198570e-01 4.38316783e-04 -7.94080272e-02 -8.64568353e-01\\n8.47481042e-02 -8.72977450e-02 -7.45702982e-02 8.20272639e-02\\n3.59908491e-02 -4.69099224e-01 3.36571336e-01 -4.36736166e-01\\n1.36879832e-01 6.29045349e-03 -2.79745996e-01 -3.37061554e-01\\n1.83193102e-01 5.47118112e-03 -1.38494074e-01 2.99332619e-01\\n-4.71499383e-01 4.17314112e-01 3.09013892e-02 3.00412662e-02\\n-4.63865921e-02 -3.35199118e-01 2.36106366e-01 -1.71397045e-01\\n-4.23774868e-01 -1.84465379e-01 -1.37731850e-01 -4.53911535e-02\\n-4.69204411e-02 -1.92002997e-01 -3.64799052e-01 -1.23858266e-02\\n2.88580388e-01 2.15197802e-01 -9.18181315e-02 -1.69454858e-01\\n3.26777905e-01 -2.61554897e-01 1.60487100e-01 -3.26245070e-01\\n7.25609884e-02 -2.09928514e-03 1.38524681e-01 -1.80013888e-02\\n2.51632363e-01 -9.61889327e-02 4.71095651e-01 -2.64951468e-01\\n-3.09443176e-01 9.15616304e-02 1.57881349e-01 -2.50032898e-02\\n4.05039400e-01 -3.97604048e-01 -2.23590165e-01 1.48998216e-01\\n-5.39502352e-02 5.30702509e-02 3.39304477e-01 -2.92504489e-01\\n-2.48874128e-01 7.15326667e-02 -5.11425793e-01 1.56250715e-01\\n7.92902112e-01 3.26483339e-01 1.78219453e-01 -6.45415112e-02\\n4.53465953e-02 4.17138755e-01 5.38294017e-01 6.16513006e-02\\n-1.14381224e-01 5.25526822e-01 3.04398894e-01 -3.13834935e-01\\n-3.00320476e-01 -3.40229198e-02 -2.97332525e-01 -2.83326954e-01\\n3.96476001e-01 3.60264063e-01 -2.94625938e-01 -2.54714847e-01\\n3.34303938e-02 -1.70149863e-01 3.99628043e-01 1.47498935e-01\\n1.65449351e-01 -1.72678083e-01 6.68344915e-01 -1.23177938e-01\\n-2.11596638e-02 5.17369628e-01 -9.23807845e-02 -2.27742210e-01\\n-7.51344934e-02 2.43138656e-01 1.51831388e-01 4.25618857e-01\\n1.70464758e-02 3.18144977e-01 -1.97831877e-02 7.07197115e-02\\n-1.90828681e-01 -1.37546420e-01 3.35149676e-01 -4.03568428e-03\\n1.86002061e-01 2.16113210e-01 1.32362396e-01 5.42475522e-01\\n2.29950264e-01 4.71922696e-01 1.88410088e-01 5.66283278e-02\\n4.35977399e-01 5.48723102e-01 3.23334396e-01 1.32846355e-01\\n-5.37463911e-02 -6.68602670e-03 1.40852690e-01 -2.59610377e-02\\n4.31640029e-01 2.85018951e-01 3.29702377e-01 8.02512765e-01\\n2.83427566e-01 3.55214804e-01 6.70197964e-01 -6.10703409e-01\\n-3.12079042e-01 2.86798328e-01 4.21084553e-01 -2.12784454e-01\\n-5.29389903e-02 -1.15354098e-01 -2.29805619e-01 3.42949741e-02\\n-5.47114789e-01 -2.68398345e-01 -1.16630785e-01 -8.35573822e-02\\n7.30164647e-02 -7.20057562e-02 -1.53006986e-01 4.77067418e-02\\n-1.91035271e-01 -1.34206966e-01 -3.53421688e-01 -9.49072689e-02\\n-3.51143390e-01 -1.70744300e-01 1.38726495e-02 -7.23473132e-02\\n-3.91830355e-02 -2.70605922e-01 9.93625727e-03 1.24776773e-01\\n4.52637166e-01 -2.00411543e-01 -2.25509688e-01 -1.63642719e-01\\n8.90555978e-02 3.99075627e-01 6.13787234e-01 -3.32886875e-02\\n2.47478873e-01 -2.69005030e-01 -2.46622749e-02 2.54332926e-03\\n-1.60905257e-01 -1.15170747e-01 1.08869158e-01 5.94666243e-01\\n-2.29927763e-01 -6.39724359e-02 -1.32484427e-02 3.26294750e-01\\n-4.02566910e-01 -2.51201540e-01 4.70000990e-02 -2.22480241e-02\\n-2.57276863e-01 1.82088256e-01 -2.37886935e-01 1.32778004e-01\\n-2.05992445e-01 -5.79181850e-01 4.54015732e-01 -3.65798995e-02\\n-2.93435574e-01 1.23249166e-01 2.83016652e-01 9.88727137e-02\\n-1.05349481e-01 -1.62999198e-01 8.25201743e-04 4.95322943e-01\\n-1.09235734e-01 4.64137256e-01 -2.12948650e-01 -2.31351659e-01\\n-3.43019068e-01 2.73095012e-01 -1.50117679e-02 1.87179610e-01\\n-1.65419698e-01 3.49284858e-01 1.38665020e-01 2.70874053e-01\\n3.27627510e-01 3.30057070e-02 -2.86800146e-01 -3.65440309e-01\\n-9.52540189e-02 -3.24586481e-01 4.25875075e-02 4.11919765e-02\\n1.61682487e-01 -2.07667306e-01 -1.00019239e-01 -3.55895281e-01\\n-2.69634426e-01 -4.21904534e-01 -2.30305210e-01 2.05671206e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Development of special algorithms for pattern recognition in magnetic resonance applications New development and implementation of methods for curve fitting routines in the automated analysis and interpretation of magnetic resonance spectra Numerical simulations and optimizations with restrained computing time and power Development of algorithms and programs to analyze NMR spectra Maintenance and further development of existing algorithms and program code Your profile: Experience in the development of numerical algorithms for scientific questions Background in natural sciences, preferably chemistry Favorably experience in machine learning and possibly pattern recognition Extensive programming experience in Java or other object oriented language Very good English and German skills Project experience and team spirit Benötigte Skills OO-Design / Analyse JAVA Englisch',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Magnetic Resonance Imaging\", \"Machine Learning Methods\", \"Application Development Languages\", \"Natural Sciences\", \"Automation\", \"Chemistry\", \"Programming (Music)\", \"New Business Development\", \"Algorithms\", \"Java (Programming Language)\", \"NMR Spectra Database\", \"Object Oriented Programming Language\", \"Simulations\", \"Curve Fitting\", \"Pattern Recognition\"]',\n", + " 'languages': \"['English', 'Breton', 'Burmese', 'Breton']\"},\n", + " {'company_id': '47',\n", + " 'job_title': 'professional business analyst for clinical data',\n", + " 'location': 'Basel',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.experis.com',\n", + " 'jobdescription_embedded': '[[-2.03268051e-01 1.92566589e-01 5.46450555e-01 -6.85060397e-02\\n4.90139514e-01 -1.12623818e-01 1.10257626e-01 3.02090555e-01\\n-7.07901269e-02 -3.51043582e-01 -4.00437266e-02 -3.11868668e-01\\n2.02759281e-02 1.17219932e-01 1.05032353e-02 4.42456365e-01\\n2.24403203e-01 7.70653933e-02 -1.03095055e-01 2.08658218e-01\\n1.30311251e-01 -6.38914555e-02 1.68224022e-01 6.81208670e-01\\n3.75938326e-01 -3.00612841e-02 -1.60918981e-01 -1.80058405e-01\\n-2.58042604e-01 -1.97706223e-01 3.66205543e-01 2.57284893e-03\\n-9.75649282e-02 -2.31664538e-01 1.19551614e-01 5.51055223e-02\\n-2.28973702e-01 -1.17216855e-01 -9.45978686e-02 1.46547839e-01\\n-4.58308965e-01 -2.00964689e-01 -1.05334900e-01 -2.99457964e-02\\n-4.06848758e-01 -3.87259632e-01 -5.35964631e-02 -7.16857985e-02\\n2.16340765e-01 3.81404646e-02 -5.03534913e-01 2.46555150e-01\\n-2.78494358e-01 -1.53776944e-01 2.26930067e-01 6.87259078e-01\\n9.68727749e-03 -4.54673141e-01 -4.37581211e-01 -3.20973217e-01\\n1.68687403e-01 -1.88612670e-01 -4.44467179e-02 -2.48099908e-01\\n3.07905287e-01 1.08567402e-01 5.76670505e-02 5.05622208e-01\\n-7.66351402e-01 -1.12744659e-01 -2.71591902e-01 -3.67983468e-02\\n-2.24006265e-01 -6.35871217e-02 -2.58585632e-01 -2.45288312e-01\\n-1.26519427e-01 5.05294979e-01 5.45981005e-02 5.15176319e-02\\n-1.55458912e-01 2.62322932e-01 -2.55229920e-01 2.87816316e-01\\n2.37178683e-01 1.78217873e-01 1.16763592e-01 1.23551384e-01\\n-3.52134794e-01 4.87456739e-01 2.96229035e-01 -3.57698053e-01\\n1.52377635e-01 6.00952059e-02 3.64102393e-01 -2.03070045e-02\\n1.26090363e-01 1.64600849e-01 -2.24420711e-01 2.16355398e-01\\n3.33362818e-01 -1.87877238e-01 1.50080413e-01 -1.01900987e-01\\n3.48121561e-02 -6.68441579e-02 4.34996597e-02 1.74975395e-01\\n-2.88991809e-01 4.52587277e-01 1.03926763e-01 -8.13157558e-02\\n-9.17867646e-02 -4.35235023e-01 3.90437953e-02 1.47584165e-02\\n3.15432958e-02 1.05556399e-01 2.25241125e-01 1.49303809e-01\\n1.59390211e-01 -3.91172245e-02 1.91483736e-01 8.27205479e-01\\n-1.34387985e-01 1.03664592e-01 -2.64815658e-01 3.86269063e-01\\n3.23058888e-02 -1.97776034e-01 1.62266836e-01 2.34214798e-01\\n-8.44981149e-02 -1.57951102e-01 -2.05152139e-01 3.30332160e-01\\n-1.03898637e-01 -2.16078281e-01 -2.09386989e-01 1.66796148e-01\\n-1.18264169e-01 -3.16138506e-01 5.31774580e-01 -5.92957996e-02\\n3.96406688e-02 -6.23877626e-03 2.17261501e-02 -8.06570277e-02\\n-5.03620841e-02 3.09469670e-01 9.19645801e-02 6.63675591e-02\\n-2.03742281e-01 -3.23336184e-01 -1.26182958e-01 2.34329421e-02\\n-2.04958260e-01 1.16317108e-01 -7.76427686e-02 -1.03831924e-01\\n3.23573470e-01 5.51546663e-02 -2.13407680e-01 3.01959544e-01\\n-2.43741479e-02 -1.60539877e-02 -1.96589883e-02 2.64483243e-01\\n-1.11077212e-01 2.17781395e-01 -1.12911321e-01 -1.80706576e-01\\n5.42541146e-01 6.49909526e-02 1.64732501e-01 5.58114797e-02\\n3.49351525e-01 -1.11881800e-01 1.01339020e-01 1.50398061e-01\\n-6.15134180e-01 4.48378205e-01 -1.04998164e-01 -9.65003893e-02\\n2.45070130e-01 -3.35846394e-02 2.65434414e-01 -2.41672605e-01\\n6.85873404e-02 -7.23266825e-02 -3.09003174e-01 -4.09542590e-01\\n-1.01338781e-01 -1.52989447e-01 3.55066627e-01 -3.76655817e-01\\n-4.26262766e-02 2.14422956e-01 -5.42763770e-01 -1.05305150e-01\\n2.07543671e-01 2.45003358e-01 2.15705782e-01 1.60618290e-01\\n-1.13578930e-01 -3.66197616e-01 1.94014072e-01 -2.83260137e-01\\n-2.49593183e-01 1.75474495e-01 -2.31132954e-01 1.78048372e-01\\n2.92506348e-02 1.20078318e-01 -1.95109233e-01 9.36219618e-02\\n-1.21396817e-01 -1.55143037e-01 2.59630114e-01 4.56381403e-02\\n2.63468921e-01 3.79633941e-02 -4.11579847e-01 4.34763938e-01\\n-2.12912902e-01 4.96183306e-01 1.01574987e-01 -9.32015240e-01\\n3.98536772e-01 2.32614130e-01 3.20648663e-02 -2.45903805e-01\\n6.21360123e-01 -2.97258854e-01 1.02699725e-02 1.44965678e-01\\n-4.33339715e-01 -2.01815739e-01 1.46481395e-01 -2.22285539e-01\\n-1.73075944e-01 6.02710009e-01 1.99438483e-01 1.37279987e-01\\n1.15053162e-01 -1.73396423e-01 -1.79994687e-01 3.49168852e-02\\n-6.09414130e-02 -2.31630772e-01 -5.80207050e-01 -3.25308442e-02\\n-9.28029418e-02 -4.96884167e-01 -1.55561924e-01 -4.43307757e-01\\n-2.27859184e-01 -3.34940195e-01 -2.23495513e-02 2.24134073e-01\\n3.40402156e-01 1.09881341e-01 6.27687946e-02 1.16621517e-01\\n-1.71766609e-01 -4.11657453e-01 -3.47674489e-02 1.33986041e-01\\n3.49448830e-01 2.70606488e-01 7.89938644e-02 6.23526983e-02\\n3.38099375e-02 6.68753862e-01 -3.03462535e-01 -1.21913165e-01\\n1.58694312e-01 2.30971321e-01 1.14342615e-01 -1.13909818e-01\\n9.28640515e-02 3.35898638e-01 -2.85414338e-01 9.12629142e-02\\n-5.36235310e-02 8.21762532e-02 2.31886297e-01 1.81449622e-01\\n-2.54483432e-01 -1.99649602e-01 -1.51512429e-01 1.67802989e-01\\n-4.98327941e-01 -1.26510799e-01 6.63905919e-01 3.84538323e-02\\n6.21180087e-02 1.56950071e-01 2.52577722e-01 -1.97987389e-02\\n-2.04801068e-01 -1.43354744e-01 2.80862182e-01 9.09585133e-02\\n2.01273374e-02 6.91879913e-02 -4.97522578e-03 -6.31815851e-01\\n-3.22934484e+00 -2.02222511e-01 6.51045814e-02 -3.18751842e-01\\n1.92945480e-01 -2.29831278e-01 1.08663574e-01 4.55231033e-02\\n-3.45248312e-01 1.04069067e-02 -9.20069665e-02 -1.33928761e-01\\n1.49095789e-01 1.40080556e-01 1.07477181e-01 1.85077056e-01\\n7.68983364e-02 -1.72658950e-01 4.45143655e-02 4.24751967e-01\\n-2.60819703e-01 -5.95473886e-01 2.97251463e-01 3.95127013e-02\\n3.00670117e-01 1.75438702e-01 -4.82105792e-01 -2.52229087e-02\\n-3.49123031e-01 -2.44282663e-01 2.56371826e-01 -2.33171180e-01\\n-7.50310794e-02 4.39225435e-01 1.81035995e-01 -1.54223889e-01\\n1.69876575e-01 -3.93083602e-01 -1.23922199e-01 -5.05811155e-01\\n1.53156564e-01 -7.47039616e-01 6.01683976e-03 -5.84366657e-02\\n6.17975175e-01 -3.71172041e-01 6.87469468e-02 7.28888437e-02\\n2.62789339e-01 1.72643289e-01 5.75470664e-02 -3.01005505e-02\\n-3.54258478e-01 -2.80782819e-01 -1.77918635e-02 -2.08473668e-01\\n4.59095001e-01 5.22678912e-01 -2.56193757e-01 -7.08456188e-02\\n7.34925717e-02 -2.54494220e-01 -4.83377397e-01 -3.15943420e-01\\n-2.67289013e-01 -1.23838648e-01 -6.26717627e-01 -3.75561059e-01\\n-1.76392138e-01 -1.02939464e-01 -1.58392340e-01 4.49262023e-01\\n-3.07415605e-01 -2.91500956e-01 -1.29519906e-02 -4.65934724e-01\\n3.30396712e-01 -2.07796805e-02 4.12527891e-03 -2.27356866e-01\\n-2.68901378e-01 -3.56120437e-01 1.66627020e-01 9.52889863e-03\\n4.70736064e-04 -6.85117245e-02 7.25044757e-02 -2.08185658e-01\\n-4.25820857e-01 -4.55684602e-01 3.45046192e-01 1.18180230e-01\\n3.08906674e-01 1.77157059e-01 2.61199355e-01 2.75733750e-02\\n2.72211879e-01 -1.02184132e-01 4.79237773e-02 -4.82137710e-01\\n8.06337968e-02 9.11229998e-02 4.89372700e-01 -2.84355521e-01\\n6.45272136e-02 -6.20781519e-02 -3.17492664e-01 -5.22510298e-02\\n3.12264621e-01 -1.25170052e-01 2.26878300e-01 -2.12578267e-01\\n2.34333858e-01 -2.17530951e-01 -3.17991734e-01 7.29915053e-02\\n5.36829291e-04 6.47444725e-01 -1.42149599e-02 -3.35881561e-01\\n-2.21612900e-01 3.55304122e-01 -1.82956710e-01 -1.10793948e-01\\n-3.00837636e-01 4.21329513e-02 -2.60422111e-01 3.24601680e-01\\n-3.36254500e-02 -4.02169786e-02 -3.46878082e-01 -2.37727806e-01\\n-1.58570379e-01 2.62122780e-01 2.58973122e-01 4.63069417e-02\\n3.65829580e-02 -3.37618351e-01 3.63456383e-02 2.56228417e-01\\n2.93483227e-01 3.66554976e-01 2.02512324e-01 -9.33693424e-02\\n-2.81720106e-02 3.28789830e-01 -1.42513052e-01 1.15391746e-01\\n-3.20789397e-01 1.47123829e-01 -5.04736960e-01 -3.15703720e-01\\n-2.17566028e-01 -3.08203131e-01 4.97720353e-02 3.46336275e-01\\n2.28648707e-01 -1.60968930e-01 -2.71564126e-02 -4.35088336e-01\\n2.61011213e-01 -4.35093082e-02 1.78205311e-01 8.05341676e-02\\n1.74634710e-01 5.27562678e-01 -4.29300545e-03 -1.16584130e-01\\n-8.88076127e-02 -4.91013154e-02 -2.78312862e-01 -1.16517633e-01\\n-7.92520419e-02 -4.44486201e-01 -2.76060790e-01 4.97955471e-01\\n1.80351794e-01 -1.41246378e-01 -2.27377862e-01 3.67965281e-01\\n-1.05628878e-01 -2.30200425e-01 -2.17244789e-01 3.77549529e-02\\n2.90296078e-01 1.34080037e-01 2.37228855e-01 -4.93863732e-01\\n-9.85211059e-02 -2.16863118e-02 -1.32787526e-01 4.14855391e-01\\n9.78607833e-02 -5.29592149e-02 -1.09640680e-01 -2.02763364e-01\\n4.05323267e-01 -1.59125030e-01 -3.12434249e-02 1.29444078e-01\\n6.18684702e-02 -9.14613754e-02 -4.37892288e-01 -2.42273845e-02\\n2.67361552e-02 -2.45746329e-01 4.63941060e-02 1.80370688e-01\\n3.55317816e-02 -1.87267233e-02 -4.76462364e-01 -2.09293187e-01\\n-4.15178716e-01 1.18489087e-01 5.34053519e-03 -6.46864235e-01\\n-6.09034896e-02 -6.39331266e-02 -5.10345101e-01 2.79323757e-01\\n-4.74734828e-02 3.15640122e-02 3.74180377e-02 -6.50535077e-02\\n-2.55368143e-01 4.10858840e-02 1.63370267e-01 1.22780830e-01\\n-1.91653803e-01 -2.26294741e-01 -2.40142867e-02 -9.98201549e-01\\n1.25351265e-01 5.89029901e-02 -1.11966625e-01 1.60986613e-02\\n-3.13995108e-02 -6.50110185e-01 1.73888251e-01 -3.40209335e-01\\n-1.61561310e-01 -5.35407439e-02 -9.91210714e-02 -5.73660314e-01\\n1.48288280e-01 1.96573243e-01 -1.55229166e-01 1.87803432e-01\\n-3.17698210e-01 4.50851321e-01 -2.87739467e-02 7.05741122e-02\\n2.05459688e-02 -2.84933001e-01 1.57313883e-01 -3.61594439e-01\\n-4.19843465e-01 -1.71388552e-01 -3.67413938e-01 -1.88570008e-01\\n3.17576751e-02 -3.58414441e-01 -1.18447676e-01 9.20842066e-02\\n3.81433815e-01 1.91270962e-01 -9.91753787e-02 -7.70728663e-02\\n6.42939433e-02 -5.93569994e-01 -1.88944507e-02 -6.53355196e-02\\n-9.20880288e-02 -1.93313390e-01 3.16378832e-01 6.40169680e-02\\n9.70375538e-02 -3.59815687e-01 4.55996126e-01 -3.76457572e-01\\n-3.81640047e-01 -1.52657315e-01 8.94325152e-02 1.52641892e-01\\n4.53683168e-01 -3.68719667e-01 -1.23467021e-01 1.71673819e-01\\n7.73958266e-02 1.21574655e-01 3.25167626e-01 -1.64263815e-01\\n-1.91466227e-01 2.37253770e-01 -4.97604489e-01 1.25456586e-01\\n7.34239459e-01 2.03186616e-01 1.97750717e-01 1.43335730e-01\\n1.59632117e-01 1.15058318e-01 4.79789019e-01 -6.46027029e-02\\n-2.04234794e-01 3.80170226e-01 8.32715183e-02 -6.31408095e-01\\n-6.00159578e-02 -3.21934558e-02 -2.36507207e-01 -3.15015167e-01\\n6.13726497e-01 2.95836627e-01 -3.20697576e-01 -2.47974217e-01\\n-1.76842526e-01 -1.60647675e-01 7.06172436e-02 -4.36107069e-02\\n1.11324497e-01 -3.60955708e-02 5.19797623e-01 -1.54624850e-01\\n3.35260808e-01 5.33329964e-01 -2.12213129e-01 -1.66263819e-01\\n4.72531933e-03 2.32700035e-01 4.02586497e-02 4.38681751e-01\\n-1.90709502e-01 3.54149848e-01 -1.24341331e-01 1.65532053e-01\\n-1.55903861e-01 -1.18098788e-01 1.75011978e-01 -3.75308804e-02\\n1.19056985e-01 2.32835412e-01 4.34971571e-01 3.21420670e-01\\n4.21155840e-01 3.40911776e-01 3.69908512e-01 -2.06723101e-02\\n6.22560501e-01 5.14613748e-01 2.78126150e-01 5.82580902e-02\\n-1.78164232e-03 -9.34129581e-03 5.57815321e-02 2.70732380e-02\\n2.63666272e-01 3.31435204e-01 9.28050652e-03 8.42741191e-01\\n2.67577440e-01 2.88054973e-01 6.14724457e-01 -5.14676929e-01\\n-3.30963403e-01 -5.20879515e-02 4.69279230e-01 -3.94008577e-01\\n-7.69956736e-03 1.01224400e-01 -1.15648657e-01 2.38063768e-01\\n-4.07877237e-01 -2.11430997e-01 -5.37412465e-02 2.01128170e-01\\n1.44365802e-01 -1.72499716e-01 -1.43401369e-01 9.49271023e-02\\n-1.56470731e-01 -1.77874684e-01 -4.64865237e-01 -5.65525554e-02\\n-1.92901134e-01 -1.67265341e-01 -4.43692654e-02 -9.87489149e-02\\n-2.06326976e-01 -2.42855281e-01 -1.16673224e-01 -5.14328294e-02\\n3.36006850e-01 -2.49751359e-01 -2.68343911e-02 -1.68834671e-01\\n2.68193811e-01 2.33703285e-01 6.51905835e-01 7.07226172e-02\\n1.31329939e-01 -3.15642834e-01 -1.00642726e-01 8.80039185e-02\\n2.38439575e-01 -6.29773596e-04 -1.27973510e-02 4.34830457e-01\\n-3.35439831e-01 -1.27333283e-01 1.08026005e-01 2.61002153e-01\\n-4.71062154e-01 -8.63107517e-02 -8.61832276e-02 4.30506468e-02\\n9.34774652e-02 2.66018156e-02 -2.50113606e-01 1.21248318e-02\\n-2.95201451e-01 -4.84787375e-01 2.23981306e-01 -7.50340372e-02\\n-2.31188536e-01 1.05014900e-02 2.14996532e-01 2.20963910e-01\\n-2.29885325e-01 -4.06685378e-03 -5.04873656e-02 1.54209837e-01\\n1.84858680e-01 1.75735921e-01 -2.32681453e-01 -2.78435111e-01\\n-3.34369451e-01 2.52183139e-01 -1.51645169e-01 1.80677146e-01\\n1.29410177e-01 3.79607350e-01 2.83999052e-02 1.48872375e-01\\n3.17155868e-01 -8.58057886e-02 -1.84193492e-01 -3.73310477e-01\\n-1.44966409e-01 -3.25179577e-01 -4.09117714e-03 -2.18174681e-01\\n1.25872150e-01 -3.64110976e-01 -6.93134144e-02 -1.51939139e-01\\n-2.31523350e-01 -3.65001410e-01 8.97836834e-02 -1.25341088e-01]]',\n", + " 'job_description': \"Professional Business Analyst for Clinical Data Experis IT is Europe's leading IT recruitment agency. We are dedicated to connecting talented individuals with Business opportunities across a number of professional sectors, with IT being at the heart of our operations.For one of our clients, specialized in the pharmaceutical area with HQ in Basel, we are looking for a Business Analyst for Clinical Data.This is a challenging contracting position starting in November until the end of the year with extension possibilities. Tasks & Responsibilities: Responsible to support global projectExecute process analysis as assigned by lead of process streamReports to lead of process stream, works with process team and SME'sResponsible for documenting and maintaining current and future state process documentationWork on several distinct initiatives at the same timeRequirements: 7+ years of Business Analysis experience of Product Development / Clinical Data with a strong understanding of data controls and cleaning principlesLean Six Sigma certificationExperience in Data Flow Mapping Experience in BPMN 2.0 Experience and understanding of Structured AuthoringExperience in Process MappingExperience in software development and software specification designData mining and data visualization experienceExperience in DocumentumAbility to work independently and deliver according agreed timelinesRegulatory/Filing knowledgeAnalytic and able to understand complex structuresStrong communication skills in EnglishExperience and understanding of Structured Authoring Location: BaselStart Date: 01.11.2019End date: 31.12.2019Extension: possibleWorkload: 100% If you are a result-oriented Business Analyst currently looking for a challenging new position that applies to your skills, then we look forward to receiving your application! Not the right job for you? Since new jobs are coming in every day just give us a call +41 (0)61 282 22 17. Experis, the leading IT recruitment agency in Switzerland has many open jobs, just browse our website now to find interesting professional opportunities!\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Filing\", \"Professionalism\", \"Operations\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Data Visualization\", \"Pharmaceuticals\", \"Stream Processing\", \"Software Requirements Specification\", \"Software Development\", \"Process Analysis\", \"Process State\", \"Maintainability\", \"Data Control\", \"Business Analysis\", \"Agile Product Development\", \"Data-Flow Analysis\", \"Clinical Data Warehouse\", \"Receivables\", \"Team Processes\"]',\n", + " 'languages': \"['English', 'Navaho', 'Somali', 'Pashto', 'Javanese']\"},\n", + " {'company_id': '110',\n", + " 'job_title': 'web frontend engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Security Services',\n", + " 'website': 'www.sunflower-labs.com',\n", + " 'jobdescription_embedded': '[[-1.97345108e-01 3.24228615e-01 2.84632653e-01 -5.53627126e-03\\n6.07294440e-01 -1.85925871e-01 9.37802903e-03 2.42352486e-01\\n7.33421445e-02 -3.48081857e-01 -1.36039570e-01 -2.57465392e-01\\n-1.01737559e-01 -1.13914020e-01 1.11071751e-01 3.36952806e-01\\n3.14909488e-01 1.31907687e-01 -1.79240704e-01 3.76434505e-01\\n1.68947980e-01 -1.66812345e-01 -6.93389028e-02 7.35236049e-01\\n3.49332988e-01 -3.99425626e-02 -6.62238523e-02 -9.38844606e-02\\n-3.23157638e-01 -2.62265742e-01 3.93790364e-01 -3.10797896e-02\\n-2.73034796e-02 -3.26212406e-01 7.74423704e-02 7.62141049e-02\\n-1.95640549e-01 3.29714268e-02 -8.87628868e-02 2.01062456e-01\\n-6.27534330e-01 -3.11942935e-01 7.48322085e-02 3.19042504e-02\\n-1.40513614e-01 -2.85481364e-01 2.62891531e-01 -8.26638341e-02\\n5.97197525e-02 1.06615692e-01 -4.61682141e-01 3.27616990e-01\\n-1.64939463e-01 -1.93884432e-01 3.96622032e-01 5.34527242e-01\\n9.02771484e-03 -7.06020236e-01 -3.76671493e-01 -3.53928536e-01\\n9.83100459e-02 -1.36317657e-02 7.89198801e-02 -3.12867045e-01\\n3.90022635e-01 1.08693046e-02 2.26046820e-03 4.90909368e-01\\n-7.45857000e-01 -1.08255707e-01 -2.96585053e-01 6.42749518e-02\\n-3.32182229e-01 -8.51879939e-02 -2.20728934e-01 -8.66726115e-02\\n-4.82119247e-02 4.24780905e-01 -8.70240480e-02 9.61901322e-02\\n-2.36477390e-01 2.98454106e-01 -1.66456044e-01 3.38933378e-01\\n3.60408932e-01 6.12876080e-02 9.56560373e-02 1.92394882e-01\\n-4.39060688e-01 4.14943129e-01 1.80634931e-01 -1.70756355e-01\\n1.97063535e-01 2.14994401e-01 4.75046039e-01 1.11958936e-01\\n8.61554593e-03 2.45986789e-01 -1.67927802e-01 1.99508980e-01\\n1.50230855e-01 -2.49064654e-01 -5.10915369e-03 2.43586861e-02\\n-6.72818050e-02 7.09210522e-03 3.69846188e-02 3.38157326e-01\\n-3.32984865e-01 4.11306620e-01 2.26202980e-01 -1.49961904e-01\\n-5.81872649e-02 -5.73249996e-01 -5.25609702e-02 -1.63140282e-01\\n-6.50958642e-02 1.38084471e-01 4.17818010e-01 1.64904386e-01\\n2.50903726e-01 -1.69851836e-02 1.09124072e-01 1.04576731e+00\\n-6.80947118e-03 7.53380433e-02 -2.66514897e-01 3.55896384e-01\\n1.55839771e-01 -2.37706900e-01 1.63239300e-01 3.26600134e-01\\n1.78340226e-01 -9.32063460e-02 -2.31795460e-01 4.18154895e-01\\n-2.40299165e-01 -1.44734055e-01 -2.78046817e-01 1.34216368e-01\\n-1.64967105e-01 -4.45874751e-01 4.89280850e-01 1.17464535e-01\\n2.51944542e-01 -9.52630043e-02 -2.93539092e-02 -3.19010876e-02\\n-2.18220800e-01 2.85353631e-01 4.63960394e-02 1.83281466e-01\\n-2.27521330e-01 -2.41757125e-01 -1.96625456e-01 2.18617693e-01\\n-9.27789882e-02 5.52555807e-02 -3.19442973e-02 -1.71897024e-01\\n3.61291021e-01 2.33350903e-01 -4.83547270e-01 3.09485495e-01\\n-1.59324240e-02 -1.15046883e-02 -1.99916109e-01 3.09227407e-01\\n-1.11775674e-01 2.16534764e-01 -3.02705783e-02 -2.87463851e-02\\n6.32465720e-01 1.76399887e-01 5.39313070e-02 -1.00723684e-01\\n2.35032216e-01 -1.51864275e-01 2.91042954e-01 1.47718906e-01\\n-6.30995631e-01 3.12836438e-01 -3.94238681e-02 -5.40720634e-02\\n3.18477899e-02 7.08017647e-02 3.95930260e-01 -3.27801824e-01\\n-9.44400579e-02 -2.35484496e-01 -4.13704962e-01 -3.64341587e-01\\n-3.76024306e-01 6.20848238e-02 3.40034425e-01 -3.70491982e-01\\n-6.51753023e-02 2.87788928e-01 -6.12909615e-01 -6.87157363e-02\\n2.89819717e-01 1.25736535e-01 2.79029548e-01 2.29976848e-01\\n-4.01941165e-02 -6.28049910e-01 5.73074818e-02 -4.72834975e-01\\n-4.22279835e-01 3.43193859e-02 -2.88495183e-01 2.78595209e-01\\n6.33585081e-02 1.99363649e-01 -1.19933546e-01 1.62669495e-01\\n-3.14195663e-01 -1.39738917e-01 1.63050622e-01 1.34270072e-01\\n2.01068744e-01 -8.73838738e-03 -4.66002524e-01 4.05189782e-01\\n-2.51184553e-01 5.48543632e-01 1.53733030e-01 -8.04983437e-01\\n5.15101194e-01 3.07370663e-01 -9.03877094e-02 -3.70151579e-01\\n4.59540993e-01 -2.98909575e-01 -2.82173809e-02 1.19836994e-01\\n-2.55357653e-01 -2.69054115e-01 2.49056980e-01 -1.39845774e-01\\n-3.52149695e-01 5.68952739e-01 1.90324873e-01 3.91690657e-02\\n2.70177752e-01 -2.03653932e-01 -3.56600843e-02 -3.12821530e-02\\n9.60500073e-03 -7.46422261e-02 -4.18900996e-01 7.99173042e-02\\n-9.13527384e-02 -5.75225770e-01 -7.85956904e-02 -4.07828003e-01\\n-2.03599304e-01 -3.57844293e-01 -2.21606418e-01 2.55156785e-01\\n2.45323658e-01 2.05397725e-01 9.74067077e-02 7.96591043e-02\\n-9.60233808e-02 -7.67645240e-01 -2.51136292e-02 4.95927297e-02\\n4.61043835e-01 4.26908344e-01 1.16448633e-01 -1.36186481e-01\\n-3.15692164e-02 5.44775903e-01 -3.84055316e-01 -1.87792525e-01\\n8.20890665e-02 1.27622396e-01 1.12485075e-02 -9.08977538e-02\\n1.33464575e-01 4.52577651e-01 -1.65055200e-01 6.39722943e-02\\n-7.80935064e-02 -1.13191023e-01 3.29472005e-01 -1.12019837e-01\\n-3.75086516e-01 -3.36929679e-01 -2.24106628e-02 3.30436110e-01\\n-4.51916873e-01 -2.06390321e-01 4.93935704e-01 3.27748269e-01\\n2.23642290e-01 3.22372198e-01 4.06219184e-01 -1.74011141e-01\\n-2.58319795e-01 -3.22023928e-01 7.01877624e-02 1.74744383e-01\\n1.10378385e-01 3.27469558e-02 -1.30561784e-01 -7.57871330e-01\\n-2.86290956e+00 3.31626311e-02 2.56150573e-01 -3.69371474e-01\\n2.23945364e-01 -1.12298243e-01 8.12904071e-03 -1.03259180e-02\\n-3.34622413e-01 6.06039949e-02 -1.76818758e-01 -2.11211860e-01\\n7.69786909e-02 3.10709208e-01 1.78360328e-01 1.72828794e-01\\n5.70579022e-02 -3.22053939e-01 -6.46548048e-02 2.70141661e-01\\n-2.94070542e-01 -6.20606422e-01 1.74562603e-01 -9.49055403e-02\\n2.74052739e-01 2.44676620e-01 -4.91125643e-01 -1.44868121e-01\\n-2.72900462e-01 -2.47249514e-01 9.01499689e-02 -2.25803003e-01\\n-1.68288857e-01 2.72157937e-01 1.41616181e-01 -8.84362087e-02\\n4.81451489e-02 -2.90106326e-01 4.47057672e-02 -4.95713443e-01\\n3.60467695e-02 -6.18023157e-01 -5.88159710e-02 -8.03837478e-02\\n5.56906343e-01 -2.92740285e-01 2.62986124e-01 3.89250256e-02\\n2.21267954e-01 1.98342845e-01 7.91205280e-03 -6.51158567e-04\\n-3.38854671e-01 -1.73350409e-01 -5.62585779e-02 -1.15663305e-01\\n4.77080077e-01 4.57372665e-01 -2.87935019e-01 -6.08441904e-02\\n6.82021352e-03 -3.97662818e-01 -4.54139560e-01 -3.63884956e-01\\n-1.22053206e-01 -2.19558910e-01 -6.39528096e-01 -4.57377583e-01\\n-1.13043353e-01 -8.25832561e-02 -1.34456068e-01 7.48631179e-01\\n-2.91930377e-01 -4.00788367e-01 3.60055678e-02 -6.86005473e-01\\n6.43023774e-02 -3.87998432e-01 3.72918174e-02 -2.58401036e-01\\n-2.80192047e-01 -4.46755409e-01 1.17128864e-01 -8.88805464e-02\\n-2.63643503e-01 -1.02506571e-01 2.57707443e-02 -2.09750861e-01\\n-2.43446335e-01 -4.89779174e-01 4.43002254e-01 1.49392709e-01\\n3.27058941e-01 -7.31587559e-02 3.20791274e-01 1.28182620e-01\\n4.98435646e-01 -1.45184830e-01 1.39850125e-01 -4.26877499e-01\\n5.89827448e-02 -3.50659601e-02 6.48847938e-01 -3.90757918e-01\\n1.32712737e-01 3.06710809e-01 -2.42066443e-01 -1.68356568e-01\\n3.56044978e-01 1.77656673e-02 -4.94988374e-02 -3.33474159e-01\\n3.96928608e-01 -4.75788295e-01 -3.59932065e-01 1.34424314e-01\\n1.49838686e-01 7.33433664e-01 -4.00893353e-02 -4.40610021e-01\\n-2.24125534e-01 3.98688793e-01 -5.64199015e-02 -2.06975296e-01\\n-6.66801184e-02 3.39390077e-02 -2.29909807e-01 1.28785938e-01\\n1.03138253e-01 -2.23519430e-01 -3.53766561e-01 -8.50708485e-02\\n-1.05845720e-01 2.75810570e-01 1.78457111e-01 -1.11785121e-02\\n-7.26089403e-02 -2.71586120e-01 -1.20208181e-01 2.02075586e-01\\n1.13453574e-01 2.58439511e-01 9.30101201e-02 -3.00772965e-01\\n3.35262679e-02 3.54731292e-01 -2.16172948e-01 2.26575002e-01\\n-2.29042500e-01 4.71004881e-02 -6.55566931e-01 -2.28080764e-01\\n-2.83497453e-01 -3.34932625e-01 -2.21167896e-02 3.28185558e-01\\n2.15321779e-01 5.41238934e-02 7.07647651e-02 -5.39160848e-01\\n3.29184800e-01 -4.64814492e-02 2.04450935e-01 1.23403341e-01\\n-2.46326975e-03 4.59395647e-01 8.27974901e-02 -7.35729486e-02\\n-1.71867073e-01 3.37559395e-02 -1.59510106e-01 -4.02907431e-01\\n2.52698362e-01 -3.80396575e-01 -1.07381530e-01 4.84688073e-01\\n1.18678942e-01 -2.43842199e-01 -1.69347942e-01 2.50866055e-01\\n6.70448989e-02 -2.67971188e-01 -2.04848930e-01 -4.31304909e-02\\n1.93155259e-01 4.57112193e-02 2.07018346e-01 -4.31137681e-01\\n1.18966689e-02 -8.12864974e-02 -7.55924210e-02 3.25497717e-01\\n8.89868587e-02 3.30699012e-02 -1.84540108e-01 -8.03751275e-02\\n5.25481701e-01 -5.28396331e-02 2.05400560e-04 -9.86088738e-02\\n7.71133378e-02 -3.43398243e-01 -6.44347727e-01 1.15423426e-01\\n-5.78299798e-02 -4.13826406e-02 6.13406040e-02 1.13307573e-02\\n1.22570880e-01 -4.17365469e-02 -3.87488365e-01 -2.15273812e-01\\n-3.42898101e-01 -1.31285742e-01 1.17841676e-01 -4.40789521e-01\\n-2.91533228e-02 8.12058598e-02 -5.16072154e-01 2.37783253e-01\\n-3.40996563e-01 6.09528609e-02 2.01356396e-01 1.11669548e-01\\n-3.44835699e-01 -4.85857502e-02 5.26021942e-02 2.18374416e-01\\n-2.58737683e-01 -1.87138140e-01 3.02020013e-02 -1.05123365e+00\\n1.07760720e-01 3.96591835e-02 -9.52001289e-02 -5.44561632e-02\\n-5.16168326e-02 -8.86006057e-01 2.29001701e-01 -4.27794784e-01\\n3.38291004e-02 1.26389852e-02 -2.03112349e-01 -3.85154277e-01\\n1.04278773e-01 -6.78284839e-02 -4.88475442e-01 3.07186782e-01\\n-3.33031446e-01 3.90876591e-01 -4.43755016e-02 2.58875079e-02\\n9.79769751e-02 -2.34703109e-01 8.86242241e-02 -3.72205198e-01\\n-4.01015341e-01 -1.91952601e-01 -3.57259363e-01 -1.95409596e-01\\n-4.52243797e-02 -2.40285948e-01 -7.83261731e-02 1.77762985e-01\\n2.19619602e-01 1.19151473e-01 -4.96888645e-02 -2.27677628e-01\\n4.00573760e-02 -5.03957510e-01 4.43414748e-02 -1.66573301e-01\\n8.67541954e-02 -8.58806819e-02 1.98419034e-01 9.58023891e-02\\n1.92348912e-01 -3.25199425e-01 5.20363212e-01 -2.98354208e-01\\n-4.59563911e-01 -1.17354520e-01 -1.96626056e-02 3.00916955e-02\\n3.54102761e-01 -4.27763283e-01 1.12409316e-01 3.22934121e-01\\n2.17208862e-02 8.24974626e-02 2.85015255e-01 -3.22085693e-02\\n-2.43972987e-02 7.46308863e-02 -5.52053571e-01 4.47645783e-02\\n6.55934870e-01 2.03648627e-01 7.28675723e-02 9.41255838e-02\\n2.94905007e-02 2.87294716e-01 5.55354416e-01 5.37511371e-02\\n-1.64699852e-01 1.86711594e-01 6.79391846e-02 -6.16140246e-01\\n-1.66103646e-01 -7.50412717e-02 -2.95922637e-01 -3.13107669e-01\\n6.85622156e-01 3.13173026e-01 -4.30689275e-01 -2.53591508e-01\\n-1.44582853e-01 -2.16056168e-01 2.35819861e-01 3.21078822e-02\\n1.50100142e-02 -1.48348644e-01 6.46556497e-01 -5.14612359e-04\\n3.71604592e-01 5.51314116e-01 -1.24810085e-01 -3.52494955e-01\\n-1.63277790e-01 2.33963534e-01 1.73248630e-02 3.17002058e-01\\n-1.20549038e-01 1.41605705e-01 -4.59448770e-02 1.71863079e-01\\n-2.21509844e-01 7.37597868e-02 8.43838975e-02 7.99054131e-02\\n1.18918531e-01 1.82719842e-01 4.03279334e-01 4.90988731e-01\\n1.76861748e-01 5.53107381e-01 2.62085080e-01 1.07646704e-01\\n5.29861748e-01 6.92372620e-01 3.53259534e-01 2.53186911e-01\\n-1.86242443e-02 2.50860929e-01 -2.87988316e-02 4.64306548e-02\\n4.88850236e-01 3.74706328e-01 7.10797608e-02 8.78084302e-01\\n2.91077197e-01 2.56915718e-01 8.30257356e-01 -5.34894645e-01\\n-4.03644770e-01 1.55795235e-02 5.38303673e-01 -4.02006447e-01\\n-5.60756288e-02 1.16701081e-01 -2.16002360e-01 4.12588626e-01\\n-5.07389009e-01 -1.77469656e-01 -1.23044010e-02 1.19388476e-01\\n1.53488051e-02 -1.12591729e-01 -3.48989159e-01 -1.18860684e-01\\n-1.99146539e-01 -2.72191793e-01 -4.15738374e-01 -1.07463986e-01\\n-2.42538691e-01 -1.71708670e-02 -4.53299023e-02 -4.92444960e-03\\n-1.07836574e-01 -3.73808652e-01 -2.57636905e-01 -1.99864935e-02\\n4.26751375e-01 -1.94708496e-01 -8.79315212e-02 -1.67949796e-01\\n2.13966712e-01 3.14000905e-01 7.15817988e-01 1.64747294e-02\\n1.79704800e-01 -2.97372371e-01 -2.29922906e-01 1.30629167e-01\\n1.14051640e-01 1.80160075e-01 1.69001520e-01 5.32293975e-01\\n-3.36938351e-01 -7.42170364e-02 8.11318830e-02 4.57631886e-01\\n-4.10823613e-01 -2.41111249e-01 -8.13343078e-02 1.60042733e-01\\n1.59551516e-01 1.15756638e-01 -1.88469499e-01 7.20787272e-02\\n-2.49831319e-01 -5.68957806e-01 3.85371357e-01 -8.65364894e-02\\n-1.58999577e-01 7.04628676e-02 3.29713613e-01 1.68037787e-01\\n-1.52517617e-01 3.09096202e-02 -1.88164990e-02 2.42127374e-01\\n3.14752455e-03 4.64181393e-01 -2.24343076e-01 -1.92967057e-01\\n-3.13223720e-01 3.55042636e-01 -1.22983024e-01 1.85472220e-01\\n-6.58114403e-02 3.18399280e-01 -7.14983493e-02 5.02421968e-02\\n3.15712363e-01 -2.00780090e-02 -2.69879311e-01 -3.80563587e-01\\n-1.32891893e-01 -2.17865333e-01 4.70931679e-02 -1.51026443e-01\\n1.56056434e-01 -3.91724020e-01 -1.38768613e-01 -7.69705921e-02\\n-1.49306014e-01 -2.63549328e-01 -2.15849355e-01 3.44449654e-02]]',\n", + " 'job_description': '(Zurich, Switzerland) Experienced, hands-on web frontend developer with excellent software engineering skills who is motivated to work in a local drone startup. Responsibilities include design and development of web frontend interfaces for a drone-based home security system. You will work with backend and firmware engineers in the development of data storage and retrieval schemas, remote system access and authentication, and cloud data processing and analysis. Responsibilities Development of a web frontend interface capable of real-time controls and video streaming Work on Amazon AWS and/or Google Cloud Understanding of serverless architecture Write unit test procedures, run tests, and evaluate test results Design and develop testing tools Formulate requirements, design descriptions, and test procedures Work hands-on with firmware and backend engineers to integrate system components Skills and Qualifications Strong programming skills in Javascript (Python, or Go are a plus). Knowledge and experience with various Javascript frameworks, i.e. jQuery, etc. In-depth understanding of CSS5, HTML5, LESS and SASS. Knowledge of C/C++ is desired. Experience with Amazon AWS and/or Google Cloud A strong understanding of system security, encryption, and authentication Experience with relational and/or non-relational databases. Experience with back-end technologies for web applications/APIs. Experience with distributed systems Good oral and written skills in English Ability to prioritize tasks and work independently Must be flexible and be able to work in a multicultural environment Must have experience in related engineering fields 3+ years of experience preferred but not a must Willing to work full-time in Zurich at our R&D lab Work permit in Switzerland required If you are interested in this position, please send your resume or CV to: jobs@sunflower-labs.com',\n", + " 'soft_skills': '[\"Writing\", \"Prioritization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Web Applications\", \"Development Testing\", \"Distributed File Systems\", \"Design Verification Test\", \"Programming (Music)\", \"Unit Testing\", \"Authentications\", \"Optical Data Storage\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"HTML5\", \"E (Programming Language)\", \"Systems Integration\", \"Software Engineering\", \"SASS\", \"Remote Access Service\", \"Security Systems\", \"C (Programming Language)\", \"Encryption\", \"Serverless Computing\", \"JQuery\", \"JavaScript (Programming Language)\", \"Firmware\", \"Google Cloud\", \"Electronic Data Processing\", \"Acceptance Test Procedures\", \"JavaScript Frameworks\", \"GUI Testing Tools\", \"Software Design Description\", \"Back End (Software Engineering)\", \"Relational Databases\", \"Information Systems Security\", \"Custom Backend\", \"Controllability\", \"Integrated Delivery Systems\"]',\n", + " 'languages': \"['English', 'Kannada', 'Dhivehi']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.34095418e-01 2.73776919e-01 4.29008782e-01 -1.45812035e-01\\n4.26754355e-01 -1.04837127e-01 5.60075492e-02 2.76683807e-01\\n1.74667817e-02 -2.96783775e-01 -1.03320286e-01 -3.36444616e-01\\n-1.25498727e-01 -6.30288851e-03 4.91948910e-02 5.38937986e-01\\n2.65689790e-01 9.48986411e-02 -1.56839013e-01 3.40051681e-01\\n1.06237948e-01 -3.86243104e-03 -7.10057542e-02 7.61575699e-01\\n5.19459486e-01 -5.01584262e-02 -5.72566837e-02 4.87949215e-02\\n-2.31794804e-01 -2.67416865e-01 4.41990167e-01 -2.59516463e-02\\n-4.07457650e-02 -3.13291073e-01 1.02095798e-01 1.79664060e-01\\n-2.10702032e-01 -1.18956261e-03 -5.22736683e-02 2.42715463e-01\\n-5.71045935e-01 -3.42772543e-01 7.12673515e-02 -1.01455674e-01\\n-2.16893017e-01 -3.69050026e-01 -3.41974795e-02 5.32544926e-02\\n1.01365112e-01 2.29551028e-02 -5.32390952e-01 3.23228478e-01\\n-1.85612947e-01 -1.71352670e-01 1.92537248e-01 6.53049707e-01\\n5.76728024e-02 -5.07487237e-01 -4.18671131e-01 -2.34733373e-01\\n6.79820180e-02 -6.83744103e-02 5.97014986e-02 -1.95169032e-01\\n3.68298918e-01 -3.43155898e-02 -1.17371649e-01 4.91714954e-01\\n-6.39529288e-01 -9.04735401e-02 -3.44102442e-01 -6.82718530e-02\\n-3.85171741e-01 1.97697971e-02 -3.79736423e-01 -1.68706939e-01\\n-5.59789613e-02 3.82227540e-01 1.83971636e-02 8.34003240e-02\\n-2.44903192e-01 1.90350890e-01 -2.01888487e-01 2.09854126e-01\\n2.64233291e-01 2.03309342e-01 2.42317125e-01 3.26199651e-01\\n-4.23543751e-01 4.27912295e-01 1.89678937e-01 -3.92024457e-01\\n1.79089338e-01 4.35493030e-02 5.21297634e-01 7.48718977e-02\\n1.19697470e-02 2.49081850e-01 -2.07372934e-01 2.40003839e-01\\n3.17620635e-01 -2.91925013e-01 1.18318908e-01 -3.89867872e-02\\n-8.26429129e-02 6.81209192e-02 9.85358357e-02 1.86564609e-01\\n-3.46344739e-01 4.56862837e-01 2.23356158e-01 -2.37069383e-01\\n-6.35267496e-02 -6.12408161e-01 -1.44821510e-01 -1.44844409e-03\\n-6.54563829e-02 1.42169580e-01 2.96194404e-01 1.59094796e-01\\n1.77186579e-01 -1.74342450e-02 1.45020381e-01 9.43545043e-01\\n-4.88304645e-02 5.72102070e-02 -4.00284797e-01 4.79179353e-01\\n1.67574421e-01 -1.45144925e-01 2.81761408e-01 1.85625479e-01\\n3.12229842e-02 -7.07646236e-02 -2.59504020e-01 3.53854001e-01\\n-8.29943456e-03 -1.83544472e-01 -3.81311029e-01 2.68082544e-02\\n-2.87683219e-01 -4.23644900e-01 5.74253976e-01 1.93456352e-01\\n1.72908470e-01 -1.23010501e-01 -2.50515938e-02 -2.33706273e-02\\n-2.76359059e-02 2.79729873e-01 2.08379421e-03 1.67345569e-01\\n-3.53029996e-01 -2.23779812e-01 -1.79828018e-01 3.93573821e-01\\n-5.77512570e-02 1.99124366e-01 -6.86855912e-02 -9.82096642e-02\\n3.25843126e-01 8.01508129e-02 -2.19682083e-01 1.69486851e-01\\n-3.25829946e-02 -3.60083073e-01 -1.76058874e-01 2.93865323e-01\\n-1.50267720e-01 2.16403171e-01 8.56792629e-02 -3.73076022e-01\\n5.02852619e-01 2.40294769e-01 3.16435337e-01 -1.50818989e-01\\n3.98800313e-01 -1.72050729e-01 2.28472665e-01 9.04336348e-02\\n-5.86091399e-01 4.68973041e-01 -3.47233042e-02 -4.91310023e-02\\n1.14655688e-01 8.81577432e-02 3.11448514e-01 -3.15963447e-01\\n-1.08606644e-01 -1.15696929e-01 -3.87348443e-01 -4.79412168e-01\\n-2.55454838e-01 -9.93610397e-02 3.59908402e-01 -4.20792550e-01\\n-1.47385895e-01 1.12712771e-01 -5.53137124e-01 -6.39277697e-02\\n2.22534850e-01 1.82469502e-01 6.99036345e-02 5.51364981e-02\\n-1.13623992e-01 -5.66386402e-01 -1.77261382e-02 -5.05372047e-01\\n-5.51212609e-01 3.15483212e-02 -2.08802968e-01 3.03742200e-01\\n7.92741589e-03 5.77656217e-02 -2.54715621e-01 1.34352550e-01\\n-2.98926920e-01 3.52985933e-02 2.29407802e-01 1.83054805e-01\\n3.08428556e-01 -8.41315240e-02 -4.69776779e-01 4.54683036e-01\\n-8.64884183e-02 5.36191583e-01 2.58661330e-01 -8.99191916e-01\\n5.46525061e-01 2.42056116e-01 1.75609924e-02 -3.55133772e-01\\n5.07570207e-01 -4.09429193e-01 -2.30579339e-02 5.87160662e-02\\n-3.43424469e-01 -2.04044729e-01 3.47485155e-01 -1.75325528e-01\\n-1.79965973e-01 5.52717388e-01 2.24433929e-01 -5.03826775e-02\\n2.99686700e-01 -3.09740275e-01 -1.42359555e-01 -5.93316928e-02\\n-1.35678649e-01 -1.95778161e-01 -3.94106269e-01 1.52259439e-01\\n7.53374712e-04 -6.09668314e-01 -2.07938805e-01 -4.03600723e-01\\n-2.22292840e-01 -3.54032397e-01 -3.24557126e-01 4.24783885e-01\\n2.28581518e-01 1.45497024e-01 1.80080056e-01 -9.37494077e-03\\n-1.09873883e-01 -4.69158471e-01 -1.81724951e-01 1.40493721e-01\\n4.76088136e-01 2.46167943e-01 -2.12556031e-02 7.13153854e-02\\n-7.10453689e-02 5.98563790e-01 -3.89922082e-01 -4.25575435e-01\\n5.47480099e-02 1.92588568e-01 2.83323526e-02 -7.42674768e-02\\n7.02248514e-02 3.80211204e-01 -2.61850774e-01 2.64179725e-02\\n-6.47430718e-02 5.31164706e-02 4.38651174e-01 1.89859360e-01\\n-2.75171727e-01 -1.99241698e-01 -5.77088855e-02 2.23152310e-01\\n-6.51415884e-01 -2.31510118e-01 6.28346205e-01 2.08146840e-01\\n2.03928143e-01 2.06928164e-01 3.24949533e-01 -6.81945160e-02\\n-1.46608546e-01 -2.15964124e-01 2.30296478e-01 1.31047249e-01\\n-4.56741415e-02 -7.46131316e-02 -1.60408333e-01 -5.15422940e-01\\n-3.05881691e+00 -2.46115118e-01 5.97916767e-02 -2.19004974e-01\\n1.49660185e-01 -1.06067300e-01 2.01608464e-02 -7.25696087e-02\\n-3.45388979e-01 -4.73201135e-03 -1.85428575e-01 -2.57845223e-01\\n1.14683844e-01 1.34972408e-01 2.64217984e-02 1.84691340e-01\\n7.19669834e-02 -1.45789817e-01 -8.39853734e-02 3.23775440e-01\\n-9.76662338e-02 -7.12043762e-01 1.59387931e-01 3.37555856e-02\\n2.58927703e-01 7.29843527e-02 -3.89537424e-01 4.28741099e-03\\n-2.83054799e-01 -2.51264334e-01 1.08744785e-01 -3.43084514e-01\\n-8.29879194e-02 3.46485168e-01 2.36478820e-01 -1.59078255e-01\\n3.47986743e-02 -3.54712486e-01 -4.78096753e-02 -3.67458224e-01\\n1.02962054e-01 -5.81620336e-01 9.12230089e-02 -1.05720691e-01\\n8.41169357e-01 -3.98733348e-01 1.39378354e-01 8.53355154e-02\\n1.36508852e-01 1.75440803e-01 -2.41795518e-02 -1.58991609e-02\\n-2.19890893e-01 -4.09864336e-01 1.56552792e-02 -1.57891974e-01\\n4.31164265e-01 6.17986321e-01 -1.26724988e-01 4.51988727e-02\\n9.84236076e-02 -2.77329892e-01 -3.94732982e-01 -3.98947775e-01\\n-3.65065575e-01 -1.31872252e-01 -7.74544656e-01 -5.02000809e-01\\n-1.69640511e-01 -1.04251735e-01 -1.99221313e-01 5.92218339e-01\\n-4.17497694e-01 -4.58365589e-01 6.02742843e-03 -6.00270689e-01\\n1.78554356e-01 -2.86027551e-01 8.04664120e-02 -1.06255494e-01\\n-2.99394131e-01 -5.99589586e-01 1.70468062e-01 -9.69657823e-02\\n-1.66607216e-01 -1.29738137e-01 -4.65008244e-02 -2.53995180e-01\\n-2.81396151e-01 -3.52893889e-01 4.64716554e-01 1.79180652e-01\\n3.69885117e-01 1.20817125e-01 2.86861748e-01 6.94473162e-02\\n2.94146955e-01 -1.60911858e-01 3.69631946e-02 -3.28750104e-01\\n8.43549594e-02 7.26338662e-03 6.63111389e-01 -2.59787410e-01\\n1.18036024e-01 1.63624376e-01 -2.65614808e-01 -1.02577046e-01\\n4.30439621e-01 9.56737846e-02 3.05000525e-02 -6.20463416e-02\\n3.21036577e-01 -4.63005394e-01 -2.39929140e-01 1.24347992e-01\\n-3.89193334e-02 5.85942507e-01 -2.46172678e-02 -4.87460464e-01\\n-2.72942036e-01 3.85455608e-01 -6.02109507e-02 -1.60620838e-01\\n-2.12509573e-01 2.38913521e-01 -1.79294378e-01 2.99886972e-01\\n3.29646729e-02 -1.84623837e-01 -3.22277337e-01 -1.07528791e-01\\n4.44122441e-02 2.30374381e-01 2.48805299e-01 1.26231954e-01\\n-3.98034900e-02 -2.73710102e-01 -1.93810865e-01 1.67807296e-01\\n3.88934731e-01 3.82806867e-01 2.03985125e-01 -2.39666656e-01\\n-4.20156308e-02 3.06916803e-01 -2.63592869e-01 6.31754696e-02\\n-2.21793249e-01 7.19127655e-02 -4.34812963e-01 -2.46420681e-01\\n-9.04863924e-02 -3.60369921e-01 1.41660690e-01 4.00373608e-01\\n6.78079873e-02 6.47832900e-02 4.37994525e-02 -3.37331533e-01\\n4.46006387e-01 1.46112055e-01 1.38967201e-01 1.66508466e-01\\n5.86866438e-02 6.02247417e-01 -3.55606824e-02 5.66939227e-02\\n-9.43408012e-02 -1.89710498e-01 -2.42291272e-01 -2.30863333e-01\\n9.42611396e-02 -3.52341086e-01 -1.12429440e-01 5.09735346e-01\\n4.77332771e-02 -3.44819248e-01 -1.48354366e-01 2.90229619e-01\\n3.92077863e-02 -2.40525573e-01 -2.42990553e-01 1.16002813e-01\\n1.92062289e-01 1.59345210e-01 3.43961984e-01 -4.92938906e-01\\n-1.63487226e-01 1.75915565e-02 -1.96422204e-01 5.13373613e-01\\n1.66007310e-01 2.50180900e-01 -1.97201326e-01 -3.15121591e-01\\n4.89279419e-01 -2.97080278e-01 -1.94435105e-01 3.31013091e-02\\n1.00080380e-02 -1.73536524e-01 -3.58556211e-01 2.32813368e-03\\n-2.68780775e-02 -2.36970454e-01 4.96660694e-02 -8.20500311e-03\\n1.28028825e-01 5.08584781e-03 -5.44844747e-01 -3.78941894e-01\\n-3.06225419e-01 -3.36552337e-02 -2.63501704e-02 -3.97554487e-01\\n1.39672933e-02 -1.20770261e-01 -6.20216072e-01 3.34514707e-01\\n-3.70891511e-01 -1.10473102e-02 9.67968181e-02 1.74747288e-01\\n-3.82828653e-01 -2.05048591e-01 1.44879937e-01 2.69676238e-01\\n-3.22435349e-01 -2.65681207e-01 1.94177702e-02 -8.71194661e-01\\n1.42822415e-01 5.12337647e-02 -8.51174593e-02 1.09895490e-01\\n-4.97788973e-02 -5.51025569e-01 1.37180313e-01 -2.96103030e-01\\n7.89723417e-05 7.31267706e-02 -1.35336578e-01 -3.76711369e-01\\n1.44046605e-01 -1.01301722e-01 -1.82028815e-01 4.59668845e-01\\n-4.51700062e-01 2.65634179e-01 -3.90165187e-02 1.44335642e-01\\n2.00795718e-02 -2.66896218e-01 2.66425222e-01 -2.75177300e-01\\n-4.73187327e-01 -2.06489667e-01 -3.54128629e-01 -2.95822978e-01\\n5.13138920e-02 -3.15571427e-01 -2.95318484e-01 2.41542477e-02\\n3.81711870e-01 9.50799808e-02 -1.27721980e-01 -1.70941263e-01\\n-3.60802673e-02 -4.70515579e-01 1.86881632e-01 -2.84833968e-01\\n-1.29260466e-01 -1.79615483e-01 1.48664206e-01 -9.64908581e-03\\n-4.25917804e-02 -2.69528478e-01 4.74330515e-01 -2.74236321e-01\\n-3.76831084e-01 -4.97810952e-02 -2.70215217e-02 6.02321103e-02\\n3.51844460e-01 -4.90786135e-01 4.61954735e-02 2.34168604e-01\\n2.71563996e-02 8.24308470e-02 2.77475208e-01 -1.02362476e-01\\n-1.12748735e-01 4.39530909e-01 -4.47575808e-01 1.94211602e-01\\n8.04173172e-01 1.89228147e-01 1.34465203e-01 1.77896172e-01\\n3.23425531e-01 2.82374382e-01 4.37978268e-01 -2.12607663e-02\\n-4.16656490e-03 3.25100601e-01 2.41660699e-03 -4.24110651e-01\\n-7.99821038e-03 -2.01301947e-01 -2.28338391e-01 -3.77416402e-01\\n5.05203545e-01 4.92491037e-01 -3.29951137e-01 -2.78160512e-01\\n-4.55235206e-02 -1.20352991e-01 2.77606905e-01 -1.44076914e-01\\n-3.29748467e-02 -6.25228286e-02 5.76341748e-01 1.14694498e-01\\n3.04585367e-01 5.07460058e-01 -2.03560352e-01 -4.10911769e-01\\n-9.86474380e-02 2.01326460e-01 1.43166170e-01 4.63549644e-01\\n-1.13494433e-01 2.25295171e-01 -1.16808817e-01 1.96360409e-01\\n-6.67527989e-02 1.59337744e-01 1.92558125e-01 5.44711389e-02\\n1.60342291e-01 1.30295992e-01 2.23465040e-01 5.50060689e-01\\n3.26125115e-01 5.02811015e-01 2.62240916e-01 7.24272132e-02\\n3.41198772e-01 7.00757742e-01 4.47417110e-01 2.81176835e-01\\n-4.85398546e-02 2.30243299e-02 -1.07092805e-01 -2.41078995e-02\\n2.50387520e-01 3.22646081e-01 1.35083839e-01 9.21271086e-01\\n3.63900721e-01 2.18752131e-01 6.98304772e-01 -6.85294747e-01\\n-4.49772775e-01 3.26978713e-02 4.15330827e-01 -3.87796581e-01\\n-1.60723060e-01 1.37236208e-01 -3.46083075e-01 2.62403935e-01\\n-5.10770321e-01 -1.37977615e-01 -2.80315392e-02 -3.35540511e-02\\n1.35373786e-01 -1.32425772e-02 -1.07980601e-01 -2.94934236e-03\\n-2.79053569e-01 -1.62697449e-01 -2.79539734e-01 -1.04222130e-02\\n-4.64932293e-01 -6.05345853e-02 -6.83496520e-02 -2.33537197e-01\\n-9.19168964e-02 -4.37342316e-01 -1.51102111e-01 1.50047123e-01\\n3.35844725e-01 -1.79025933e-01 2.64765765e-03 -1.34256810e-01\\n7.03805909e-02 2.83669889e-01 6.37778878e-01 -1.18853301e-01\\n1.05558380e-01 -5.53949289e-02 -3.44676375e-01 2.57128291e-02\\n1.22970104e-01 5.93876578e-02 4.16587405e-02 4.37147737e-01\\n-3.21840167e-01 -1.25453413e-01 9.97943059e-02 3.82271796e-01\\n-4.33810979e-01 3.54909431e-03 -7.13840276e-02 3.10256779e-01\\n1.37387231e-01 1.18593521e-01 -2.75910199e-01 1.56978175e-01\\n-2.15641946e-01 -4.74043190e-01 3.43139201e-01 -1.89482570e-01\\n-9.23431963e-02 1.91655263e-01 2.26326659e-01 1.68600157e-01\\n-3.89385849e-01 -2.37186756e-02 -5.62300459e-02 3.94517124e-01\\n1.32282674e-01 4.04587716e-01 -2.70195365e-01 -1.00168072e-01\\n-2.54767448e-01 1.59004569e-01 -2.24676996e-01 1.42532751e-01\\n-1.44012962e-02 2.99954802e-01 6.76034810e-03 8.61083940e-02\\n2.06475273e-01 7.85386860e-02 -2.71092445e-01 -2.57254541e-01\\n-2.62379587e-01 -2.38739505e-01 1.26035228e-01 -6.05210178e-02\\n2.29872644e-01 -4.16574508e-01 -9.33737904e-02 -1.03422254e-01\\n-2.61195004e-01 -4.65718955e-01 -7.15738237e-02 -2.15218980e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client operates in the telecommunication business. Ihr Aufgabenbereich Collaboration with data scientists, data engineers, devops, product owners and business partners to design end-to-end solutions Designing, coding and documenting data products Architecture, optimization and automation of your entire work environment Cooperation with your team to define the technical roadmap for the product Your tasks vary from data science (20%) through data engineering (60%) to devops (20%) Ihr Profil Master or PhD in Computer Science or similar qualification Very good knowledge of FP (Scala) and good knowledge of OOP (Java) Hands-on experience in end to end projects: from requirements engineering to deploying products into production Thorough know-how of Hadoop, Spark, Kafka, SQL & NoSQL Solid understanding of data structures and algorithms and experience in agile/lean development of scalable solutions Good abstraction and conceptual skills are combined with a self-reliant, team-minded, communicative, proactive personality Good English and good German Ihre Chance Apply now! Ort: Bern Spezialisierung: JAVA Entwicklung JavaScript Agile SQL Sprachen: Deutsch Englisch Job ID: 1809',\n", + " 'soft_skills': '[\"Cooperation\", \"Collaboration\", \"Proactivity\", \"Communications\", \"Operations\"]',\n", + " 'hard_skills': '[\"Automation\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Business Partnering\", \"Data Engineering\", \"Scala (Programming Language)\", \"Product Data Management\", \"Hostile Work Environment\", \"Lean Product Development\", \"Data Science\", \"Conceptualization\", \"Front End Design\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Scalability\", \"Design Codes\", \"Data Structures\", \"Solution Design\", \"Algorithms\", \"Java (Programming Language)\", \"Telecommunications\", \"Abstractions\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data scientist (m/w) 100%',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.23716041e-01 3.20143580e-01 4.61641818e-01 -2.05259416e-02\\n6.13241017e-01 -4.79093939e-02 -2.30252333e-02 1.98744759e-01\\n-1.34202063e-01 -1.96182340e-01 -4.97631691e-02 -2.56434619e-01\\n-6.27211928e-02 2.06369996e-01 -5.32674324e-03 6.17873311e-01\\n2.97053814e-01 5.61233275e-02 -1.88491389e-01 4.00563776e-01\\n1.42491430e-01 -2.70447787e-02 -1.21198185e-01 5.93753159e-01\\n3.99801463e-01 -8.75585228e-02 -1.63281158e-01 2.01077059e-01\\n-3.72864723e-01 -2.82330781e-01 3.36710244e-01 1.44757003e-01\\n-1.59963891e-01 -2.09601268e-01 1.65841520e-01 3.35064441e-01\\n-2.00217217e-01 3.46014574e-02 -1.05763890e-01 2.79501051e-01\\n-5.05677402e-01 -2.14998290e-01 -2.52348860e-03 2.02676445e-01\\n-2.50211239e-01 -2.93983370e-01 1.21236078e-01 -9.72635448e-02\\n3.07807289e-02 2.08511069e-01 -6.00388110e-01 4.58682895e-01\\n-2.66696334e-01 -1.44867152e-01 1.21694997e-01 6.99495792e-01\\n1.14676617e-01 -4.80412275e-01 -3.87103498e-01 -3.26806664e-01\\n1.20056719e-01 -5.80563322e-02 -1.89169496e-02 -4.07083392e-01\\n6.13145053e-01 -2.45869160e-02 6.21792227e-02 1.36961102e-01\\n-8.03324640e-01 -1.47417277e-01 -2.39962220e-01 9.04255509e-02\\n-5.42023301e-01 -1.09991012e-02 -2.27525771e-01 -4.17410508e-02\\n-4.09408771e-02 2.87546873e-01 -3.75437513e-02 5.03469743e-02\\n-3.81505378e-02 2.52418011e-01 -2.67105997e-01 1.42803013e-01\\n2.55896926e-01 2.15732753e-01 1.52351171e-01 3.53950739e-01\\n-2.65049189e-01 3.23000133e-01 8.91181454e-02 -1.63550049e-01\\n5.21807335e-02 2.27609918e-01 6.13169014e-01 8.98124650e-02\\n-5.71217202e-02 1.73562869e-01 -3.27084422e-01 3.01347315e-01\\n1.50213867e-01 -5.02408326e-01 1.56832278e-01 5.99309653e-02\\n-2.18358606e-01 1.47065772e-02 1.06818423e-01 3.46595347e-01\\n-3.39315087e-01 3.95113170e-01 1.26598790e-01 -9.95166376e-02\\n2.12791120e-03 -7.72975385e-01 -2.06442714e-01 3.03555299e-02\\n2.58866727e-01 3.64359409e-01 1.10903189e-01 2.81008750e-01\\n3.07509638e-02 -1.06449567e-01 2.73809701e-01 1.02503753e+00\\n-3.58710857e-03 2.19989955e-01 2.18298566e-02 2.49157384e-01\\n3.78833532e-01 -9.47678834e-02 2.25171417e-01 3.72929424e-01\\n2.11653545e-01 -1.93468124e-01 -1.15013942e-01 3.29230368e-01\\n-1.90758213e-01 -8.06486681e-02 -2.15190604e-01 1.22849852e-01\\n-5.23954444e-02 -3.95497888e-01 6.46436810e-01 2.23891094e-01\\n2.15203524e-01 -4.53961715e-02 -1.26244262e-01 -9.93883237e-02\\n-5.65535575e-02 3.84217352e-01 7.24602565e-02 2.24270090e-01\\n-3.67361069e-01 -7.41464347e-02 -8.75755679e-04 3.88787299e-01\\n-4.02648449e-01 -6.22885115e-02 -1.59833610e-01 -1.04757927e-01\\n3.52072269e-01 4.92596738e-02 -3.77662182e-01 1.03288010e-01\\n-1.68151140e-01 -4.00151968e-01 9.30070225e-03 4.66121584e-01\\n-3.41998227e-02 3.66243064e-01 -1.48893550e-01 -3.07992637e-01\\n6.21138513e-01 6.65008277e-02 7.51883537e-02 3.20020914e-02\\n3.45407903e-01 -3.70111614e-02 2.55501688e-01 1.85259908e-01\\n-6.91452563e-01 5.28156757e-01 -1.73739251e-02 -3.10814947e-01\\n7.50623345e-02 3.13052796e-02 7.32099116e-01 -3.74661237e-01\\n6.66110441e-02 -1.90925464e-01 -3.17391664e-01 -2.23569080e-01\\n-3.99595797e-01 4.00653891e-02 4.33836162e-01 -3.20580840e-01\\n-1.30015463e-02 2.42763266e-01 -4.50524032e-01 -2.65976250e-01\\n2.13548928e-01 1.84102744e-01 2.05443785e-01 -1.92683730e-02\\n-2.03957751e-01 -7.33364999e-01 -3.49229649e-02 -4.76192802e-01\\n-4.36677843e-01 5.12599126e-02 -3.09764445e-01 3.70899439e-01\\n9.95766092e-03 -2.13379078e-02 -9.47733596e-02 1.22342207e-01\\n-3.29395950e-01 7.08684698e-02 1.90020695e-01 6.84869140e-02\\n2.62767881e-01 -7.08706304e-02 -3.06048155e-01 4.46448863e-01\\n-1.35941297e-01 5.95533907e-01 3.03283513e-01 -7.33221710e-01\\n6.49586201e-01 2.74479866e-01 9.00814608e-02 -1.85406253e-01\\n6.49651527e-01 -2.87393749e-01 -2.26535246e-01 2.26282910e-01\\n-1.70604751e-01 -2.64377177e-01 1.73837617e-01 -2.38251939e-01\\n-3.24990690e-01 5.23796439e-01 3.18378031e-01 5.84871024e-02\\n4.38380718e-01 -3.50164443e-01 -1.95987225e-01 2.18986660e-01\\n-2.08209530e-01 -2.13969424e-01 -3.26557130e-01 -1.27061978e-01\\n-1.05304942e-01 -3.33187759e-01 -1.00043215e-01 -2.36923471e-01\\n-1.09552406e-01 -2.43016347e-01 -2.51085132e-01 3.91932517e-01\\n1.87940132e-02 2.48053044e-01 7.43893534e-02 -1.33403838e-01\\n-1.86374843e-01 -7.92374492e-01 -2.36991525e-01 1.88020468e-02\\n3.96040827e-01 2.65920728e-01 1.17609419e-01 -1.54432803e-01\\n-3.68056484e-02 3.65844995e-01 -2.59463310e-01 -5.67649782e-01\\n-4.54556866e-04 8.93254802e-02 -7.61158094e-02 2.80874241e-02\\n2.13181809e-01 3.39081049e-01 -2.83662975e-02 1.33899808e-01\\n-2.37549126e-01 -9.14158747e-02 2.24248618e-01 -1.54136505e-03\\n-2.80098636e-02 -1.91755489e-01 -2.39881024e-01 2.35570565e-01\\n-5.17950118e-01 -3.49207819e-01 4.21409398e-01 1.29324600e-01\\n1.81953609e-01 4.33499627e-02 2.76737571e-01 -1.14268690e-01\\n-2.67161965e-01 -4.76207256e-01 1.86808169e-01 1.96115449e-01\\n-1.33756593e-01 2.56362319e-01 -5.25274128e-02 -5.47557235e-01\\n-3.54796791e+00 -1.26988158e-01 7.74990395e-02 -3.28409195e-01\\n2.17335880e-01 -1.38542846e-01 8.74826610e-02 -7.92198535e-03\\n-3.16212207e-01 -4.02606353e-02 -1.63929343e-01 -1.66111037e-01\\n4.63367105e-02 4.75754023e-01 9.14881527e-02 1.57539889e-01\\n3.60287465e-02 -2.09682807e-01 -1.13135435e-01 4.51695889e-01\\n1.07384562e-01 -6.74493730e-01 -1.47334009e-01 1.02827653e-01\\n1.43027240e-02 3.01118195e-01 -2.93269515e-01 -2.92928107e-02\\n-2.33911142e-01 -3.52692276e-01 8.88642967e-02 -3.43986928e-01\\n-2.00320408e-01 3.84371966e-01 1.56916723e-01 2.58099377e-01\\n-1.24714084e-01 -1.27830938e-01 -2.65972950e-02 -3.83334965e-01\\n-8.56846571e-02 -5.73763847e-01 -1.86509430e-01 -2.16690391e-01\\n6.85116947e-01 -3.34135234e-01 2.16818646e-01 2.18049437e-01\\n7.08826035e-02 6.46075187e-03 6.38954043e-02 -3.25175077e-02\\n-1.14304058e-01 -2.69846141e-01 -1.27916723e-01 -2.06454590e-01\\n4.66286778e-01 6.75529003e-01 -2.49701440e-01 -1.14757173e-01\\n2.94628531e-01 -3.64959419e-01 -4.07697737e-01 -4.85185832e-01\\n-2.22349912e-01 -2.22621486e-01 -7.31948495e-01 -6.16865098e-01\\n-1.53911822e-02 -6.67736232e-02 -1.06547579e-01 3.96667868e-01\\n-3.15740794e-01 -4.50640351e-01 -1.36186525e-01 -4.63380486e-01\\n2.31105626e-01 -1.01682968e-01 9.52863395e-02 -1.49022996e-01\\n-3.25556457e-01 -6.01751924e-01 -4.10873182e-02 -1.82784200e-01\\n-1.94659397e-01 -1.06083043e-01 -1.44784644e-01 -2.73545057e-01\\n-5.07642686e-01 -4.00643468e-01 4.09976393e-01 -2.95111202e-02\\n3.13107312e-01 2.14005321e-01 3.29447150e-01 1.82287097e-01\\n3.85622829e-01 -8.04841667e-02 1.89810082e-01 -4.25219744e-01\\n1.14251450e-01 -4.17058207e-02 6.98472798e-01 -4.60248113e-01\\n-3.65476497e-02 3.42792347e-02 -4.12867993e-01 2.83561833e-02\\n3.84360522e-01 -1.40575126e-01 -1.50678521e-02 -1.24135733e-01\\n3.79494220e-01 -3.53775203e-01 -1.08327065e-02 2.28223309e-01\\n8.21757317e-02 7.23202169e-01 1.30189106e-01 -2.93464720e-01\\n-2.10505113e-01 5.33006370e-01 -2.41514578e-01 -1.81471407e-01\\n2.35888176e-02 8.05610195e-02 4.28265613e-03 1.76993862e-01\\n-1.25941485e-02 -2.20608622e-01 -1.71644479e-01 2.68579312e-02\\n4.10232618e-02 4.18173552e-01 3.01259339e-01 -8.62357169e-02\\n-1.05879463e-01 -1.76628187e-01 1.84876174e-02 1.71240568e-01\\n3.39527667e-01 1.95929587e-01 1.66274697e-01 -2.57875353e-01\\n-1.04218423e-01 2.60362446e-01 -2.31339887e-01 2.57316202e-01\\n-1.73618067e-02 9.58253816e-02 -5.41330993e-01 -2.28512540e-01\\n-3.09431583e-01 -1.95623383e-01 3.26638967e-01 2.45920599e-01\\n1.72698751e-01 -1.01384409e-01 1.79248288e-01 -5.50921857e-01\\n1.85736969e-01 9.71695259e-02 1.62668958e-01 9.08823982e-02\\n-2.30574146e-01 3.79771560e-01 -9.49454233e-02 -6.73414543e-02\\n4.12209593e-02 3.77316400e-02 -2.49557018e-01 -3.07161033e-01\\n1.61056399e-01 -4.97589529e-01 -1.48147881e-01 4.60163504e-01\\n2.45712176e-01 -2.16726944e-01 -4.53359693e-01 2.80347377e-01\\n1.17998399e-01 -5.22898793e-01 -1.76845685e-01 -6.68539777e-02\\n1.80567667e-01 2.89604187e-01 3.49867433e-01 -4.62755829e-01\\n-1.07764795e-01 1.20698653e-01 -2.28490412e-01 2.60124624e-01\\n-6.53296337e-02 -4.49316949e-02 -1.88457355e-01 -6.55024126e-02\\n4.13993418e-01 1.15629815e-01 1.31830886e-01 6.54704273e-02\\n1.16681978e-01 -2.44838968e-01 -3.86529833e-01 -1.52831629e-01\\n-3.22700664e-02 -3.36367011e-01 -6.58417791e-02 9.52823237e-02\\n-5.16501628e-02 1.88946985e-02 -4.64449793e-01 -2.34803036e-01\\n-3.11341822e-01 -1.21355198e-01 1.14418246e-01 -2.96686500e-01\\n-6.57539815e-02 -1.21492364e-01 -5.54341555e-01 2.12612987e-01\\n-1.46835923e-01 5.88714965e-02 1.54687017e-01 1.63746744e-01\\n-1.68712050e-01 -2.03044608e-01 -2.95699425e-02 -1.26604876e-02\\n-3.37728202e-01 -1.80189058e-01 -9.26229432e-02 -8.94587755e-01\\n-1.79911964e-02 -9.43466276e-02 -2.54343785e-02 6.36632070e-02\\n-3.70044447e-02 -5.32659233e-01 9.50756297e-02 -5.03579795e-01\\n-6.06375672e-02 7.38632530e-02 -2.73170173e-01 -2.99890250e-01\\n2.11142138e-01 -5.11150882e-02 -2.51265973e-01 3.45696598e-01\\n-4.38469082e-01 2.59521902e-01 1.20507916e-02 2.65063699e-02\\n-8.60092044e-02 -1.33072302e-01 2.85489440e-01 -1.79590404e-01\\n-3.59274447e-01 -2.25066125e-01 -2.18973279e-01 -1.12617761e-01\\n7.81064034e-02 -3.10509801e-01 -1.24466002e-01 5.06553277e-02\\n4.66983974e-01 9.12235007e-02 9.35848951e-02 -5.83754517e-02\\n1.66940004e-01 -4.07591313e-01 4.08400781e-02 -1.85476631e-01\\n5.70867537e-03 -2.65677813e-02 9.81193855e-02 -4.63928748e-03\\n1.94933891e-01 -2.60055810e-01 4.85100597e-01 -3.24405253e-01\\n-3.36590856e-01 2.06747465e-02 8.84414464e-02 -9.01453719e-02\\n2.55286962e-01 -4.23512727e-01 1.05555743e-01 3.15425038e-01\\n-3.87395211e-02 1.28511470e-02 2.96840459e-01 -1.26061022e-01\\n-1.46638080e-01 3.40263322e-02 -3.37229908e-01 1.09715857e-01\\n8.92882466e-01 3.54014635e-01 2.31530860e-01 -1.79855488e-02\\n1.98128987e-02 3.28601569e-01 5.11649966e-01 -6.65510446e-02\\n4.16291803e-02 2.83035278e-01 1.29808739e-01 -3.79802138e-01\\n-8.21665376e-02 -3.63377184e-02 -2.45722517e-01 -3.49682778e-01\\n5.35786688e-01 4.19564664e-01 -3.88633162e-01 -3.60367537e-01\\n-1.70477152e-01 -6.36361539e-02 2.76914835e-01 7.36309662e-02\\n-6.02521896e-02 -7.45706782e-02 4.73733157e-01 -1.14864826e-01\\n8.96347910e-02 3.95497054e-01 -1.48684710e-01 -2.75012046e-01\\n7.05825090e-02 2.51531422e-01 1.61452785e-01 4.56404030e-01\\n-1.72256321e-01 3.04862231e-01 -2.65032232e-01 -2.83073708e-02\\n-7.17234612e-02 1.43022969e-01 3.65398824e-01 1.01229839e-01\\n3.47938776e-01 1.42199293e-01 1.90705702e-01 5.50340295e-01\\n7.50354230e-02 4.50197875e-01 1.44890875e-01 -5.68637475e-02\\n2.19591558e-01 4.71372426e-01 1.74839318e-01 1.88041866e-01\\n-1.21701300e-01 2.49426752e-01 1.26800567e-01 -4.52978946e-02\\n5.06105661e-01 1.33941993e-01 1.93406597e-01 7.47801483e-01\\n1.88911587e-01 2.83947051e-01 6.79957926e-01 -6.68273211e-01\\n-2.85148442e-01 1.45910472e-01 6.42837644e-01 -2.58315951e-01\\n-1.67321786e-01 5.65501824e-02 -2.17108727e-01 3.31937522e-01\\n-6.27733707e-01 -9.26453769e-02 -4.73746918e-02 -2.25290973e-02\\n-3.23625840e-02 -1.41235411e-01 -1.70949265e-01 -5.69994785e-02\\n-1.39623314e-01 -1.47041321e-01 -2.65226036e-01 -2.92698473e-01\\n-4.10194814e-01 -1.83458805e-01 -1.08290933e-01 3.44705284e-02\\n1.12354299e-02 -3.08143526e-01 -3.03840693e-02 9.40502435e-03\\n4.07808006e-01 -2.70557970e-01 -1.77884400e-01 -8.01614076e-02\\n2.12041140e-01 1.37782648e-01 5.39726079e-01 -4.58837152e-02\\n4.74968478e-02 -2.24078577e-02 -2.45592833e-01 -2.55202632e-02\\n-6.12193421e-02 6.86581656e-02 1.16753660e-01 3.30354571e-01\\n-2.20859677e-01 -1.72410309e-01 6.34556860e-02 2.32380524e-01\\n-5.39662778e-01 -2.22145945e-01 -5.97488843e-02 2.02112988e-01\\n2.36609280e-02 5.92152663e-02 -2.88785428e-01 3.44763696e-02\\n-2.07524940e-01 -5.18594980e-01 3.90656143e-01 -2.00291649e-01\\n-1.92863345e-01 1.66448012e-01 3.33111137e-01 1.35801867e-01\\n2.93051992e-02 -7.45473728e-02 -1.41294762e-01 3.24375957e-01\\n-9.80077684e-02 2.68547297e-01 -1.65431440e-01 -3.66666287e-01\\n-3.03484440e-01 2.61496305e-01 -1.63154855e-01 5.44528849e-02\\n-2.15493917e-01 3.37821364e-01 5.80103546e-02 1.66370571e-01\\n3.92386943e-01 1.19650319e-01 -2.88032770e-01 -2.46147707e-01\\n-1.53031349e-01 -3.88381958e-01 1.41235158e-01 7.55776614e-02\\n6.05716147e-02 -3.88700008e-01 -1.37486890e-01 -2.52680987e-01\\n-1.53663591e-01 -3.57751340e-01 -1.35426074e-01 1.24687716e-01]]',\n", + " 'job_description': 'Job Informationen Main tasks: Analyze and integrate data from mobile medical devices, large multivariate clinical data sets and real-world data (such as medical claims) Use modern analysis techniques to improve how we extract medically relevant information from this wealth of data Other tasks may include evaluating and improving performance of published and new algorithms on clinical datasets, establishing software frameworks for efficient and effective data exploration, or scientific publication of results. Your profile: MSc. (with 2-3 years of experience) or PhD in fields like computational science, life sciences, statistics, maths or physics Experience in working with complex numerical challenges/ tasks Fluency in Python, R, and/or Matlab Benötigte Skills Python Python R MATLAB',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Python Server Pages\", \"Data Explorers\", \"Computer Science\", \"Life Sciences\", \"Statistics\", \"MATLAB\", \"Integrated Data Viewer (IDV)\", \"Python (Programming Language)\", \"Medical Insurance Claims\", \"Medic\", \"Dataset\", \"Mobility\", \"Minimum Data Set\", \"Medical Devices\", \"R (Programming Language)\", \"Clinical Data Warehouse\", \"Physics\", \"Algorithms\", \"Performance Improvement\"]',\n", + " 'languages': \"['English', 'Tibetan', 'Serbian', 'Yiddish']\"},\n", + " {'company_id': '29',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Mendrisio',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.cloudacademy.com',\n", + " 'jobdescription_embedded': '[[-2.00082242e-01 2.25635409e-01 6.63298070e-01 1.74696892e-01\\n6.88305974e-01 -1.10866912e-01 -2.90110726e-02 2.65614241e-01\\n-2.35257614e-02 -4.37820047e-01 -8.71222764e-02 -3.46750170e-01\\n-2.09086202e-02 2.07687795e-01 5.08692972e-02 2.84356058e-01\\n2.62650102e-01 1.12316065e-01 -1.31888419e-01 2.61616021e-01\\n1.10120215e-01 -1.65580377e-01 8.55592117e-02 7.12094665e-01\\n4.60100949e-01 -3.22972201e-02 -8.23161080e-02 4.79430258e-02\\n-2.42024899e-01 -2.07945868e-01 4.00503367e-01 9.90183055e-02\\n-1.68391764e-01 -4.36540097e-01 -1.29079288e-02 5.07858321e-02\\n-2.61611253e-01 -3.81427705e-02 -9.31642056e-02 1.41921714e-01\\n-5.55662572e-01 -2.24112660e-01 6.92034978e-03 -1.08542638e-02\\n-2.79660046e-01 -2.66668320e-01 -8.36663768e-02 -1.11763008e-01\\n2.00705647e-01 -6.99487561e-03 -5.58448434e-01 3.48983556e-01\\n-2.88526475e-01 -2.46745616e-01 2.39355683e-01 6.85674608e-01\\n4.49190289e-02 -4.27034050e-01 -4.39924151e-01 -2.56394088e-01\\n1.13245778e-01 -6.92416877e-02 9.98810232e-02 -3.23293477e-01\\n2.55826384e-01 -1.81462809e-01 9.63137597e-02 3.35469514e-01\\n-7.63127029e-01 -2.70059351e-02 -2.77449757e-01 -4.96551301e-03\\n-2.85952985e-01 -1.98064167e-02 -3.34825546e-01 -2.86463182e-02\\n-1.50923669e-01 4.24297959e-01 1.09618232e-01 6.03514910e-02\\n-2.17139214e-01 2.07503587e-01 -1.46180332e-01 2.86496907e-01\\n2.82279164e-01 2.36213192e-01 2.47824579e-01 3.82822365e-01\\n-4.06622767e-01 5.14600873e-01 1.88137859e-01 -2.50667244e-01\\n3.68505806e-01 1.85147226e-01 4.08479184e-01 1.13837942e-01\\n1.17324583e-01 6.71341866e-02 -1.97632447e-01 2.49295205e-01\\n1.90685228e-01 -3.85536134e-01 1.27438754e-01 -5.75072542e-02\\n-1.22359786e-02 -2.18886863e-02 -1.91269210e-03 1.73894539e-01\\n-3.79568487e-01 4.52667356e-01 7.39621297e-02 -2.30535835e-01\\n-2.37085432e-01 -4.82903600e-01 3.09503917e-02 -2.38423888e-02\\n3.84458192e-02 2.74018168e-01 2.87682801e-01 1.53203428e-01\\n2.83823878e-01 1.07762538e-01 1.95443094e-01 8.07184935e-01\\n-3.42021585e-02 1.52695969e-01 -2.77493209e-01 2.74105042e-01\\n2.30065420e-01 -1.55148596e-01 1.56199798e-01 1.40333340e-01\\n-6.77077938e-03 -2.29165610e-02 -2.60127693e-01 3.49779546e-01\\n-1.20351188e-01 -1.71180844e-01 -9.96858478e-02 1.40617922e-01\\n2.41409279e-02 -4.00373459e-01 6.49785757e-01 9.60879922e-02\\n1.70826301e-01 -8.47234055e-02 3.16374898e-02 -2.15287581e-01\\n-4.41876911e-02 3.79038364e-01 9.70669836e-02 3.19313496e-01\\n-2.39135265e-01 -3.27318609e-01 -2.11985081e-01 1.22383900e-01\\n-4.09909338e-01 3.01523842e-02 -7.33427033e-02 -9.95295718e-02\\n1.95114493e-01 1.58882067e-01 -3.46398115e-01 2.18756318e-01\\n-2.36978412e-01 -1.33958653e-01 8.46584216e-02 2.56152511e-01\\n-2.70831287e-01 1.06760204e-01 -1.96390077e-02 -4.49482463e-02\\n5.92858613e-01 2.87783831e-01 3.76510829e-01 1.57887504e-01\\n3.49147648e-01 -2.94567682e-02 4.21640910e-02 1.57492325e-01\\n-6.28208101e-01 3.47462296e-01 -7.02861473e-02 -2.95179129e-01\\n2.01829880e-01 -1.82228331e-02 4.31417555e-01 -3.02745104e-01\\n-3.28100822e-03 -2.41454840e-01 -3.37192923e-01 -3.48820478e-01\\n-1.01075239e-01 -6.60636872e-02 3.42532456e-01 -5.57855785e-01\\n-2.57703904e-02 2.23957747e-01 -3.46328467e-01 -2.67351151e-01\\n1.44567579e-01 2.26748168e-01 1.04867168e-01 2.91624311e-02\\n-1.42461047e-01 -5.94898641e-01 -2.96882857e-02 -4.60280687e-01\\n-3.16621095e-01 -6.79194331e-02 -4.56243396e-01 1.48905888e-01\\n1.10946912e-02 4.40111756e-02 -2.29711477e-02 5.85411415e-02\\n-3.44295382e-01 -2.66771112e-02 2.32449546e-02 8.76419693e-02\\n2.92141825e-01 9.27962512e-02 -4.53015924e-01 3.90051514e-01\\n-3.80894870e-01 5.72727084e-01 1.79034054e-01 -8.32445323e-01\\n5.75927973e-01 1.99583724e-01 -1.32156849e-01 -4.01137143e-01\\n3.85893583e-01 -3.76241833e-01 5.72103374e-02 1.33344650e-01\\n-2.76199341e-01 -2.28468224e-01 2.32691363e-01 -2.22493067e-01\\n-3.23248893e-01 4.80825454e-01 1.17888339e-02 1.28483877e-01\\n2.18720943e-01 -2.91855901e-01 -8.61173049e-02 -2.94803157e-02\\n-1.84825182e-01 -2.65061200e-01 -6.22734785e-01 -4.59723435e-02\\n-1.55446321e-01 -4.42602873e-01 -1.28232107e-01 -4.23898399e-01\\n-2.14341074e-01 -4.10265714e-01 -3.43282193e-01 2.53153652e-01\\n3.40299070e-01 2.14686573e-01 -5.27324751e-02 2.04038378e-02\\n-4.39856574e-02 -7.11411357e-01 -1.26831025e-01 2.11433336e-01\\n5.01188278e-01 2.48775229e-01 2.18476385e-01 -1.47287682e-01\\n1.77839920e-01 6.00828350e-01 -3.09406728e-01 -2.80862719e-01\\n2.17531860e-01 2.08177805e-01 1.45641966e-02 -9.61460695e-02\\n9.39673558e-02 2.99324602e-01 -2.52875119e-01 5.53668663e-02\\n3.86620909e-02 -1.08227931e-01 4.21970367e-01 -4.29246575e-02\\n-2.49852225e-01 -2.26163939e-01 -1.11575253e-01 1.89098254e-01\\n-4.47607070e-01 -1.37752548e-01 4.68564689e-01 1.85808524e-01\\n1.35806024e-01 1.70576558e-01 5.93733490e-02 1.49952965e-02\\n-1.84288934e-01 -3.19368720e-01 3.96014452e-01 1.00406803e-01\\n1.71300486e-01 2.63545886e-02 5.65059073e-02 -6.84754848e-01\\n-3.29882193e+00 -1.29368231e-01 1.12093002e-01 -2.58684248e-01\\n1.98881641e-01 -2.24619567e-01 8.87670368e-02 -3.54548432e-02\\n-2.53153235e-01 1.60149708e-01 -1.93070188e-01 -2.14312136e-01\\n-9.60368104e-03 1.85116231e-01 1.41748101e-01 1.62633300e-01\\n1.71462834e-01 -2.24512383e-01 -2.54045501e-02 3.98863107e-01\\n-2.68425316e-01 -5.75734317e-01 1.89656749e-01 -9.24922992e-03\\n1.29011825e-01 1.61735445e-01 -3.94575417e-01 -4.79263403e-02\\n-2.94606388e-01 -2.58855581e-01 3.94836813e-02 -3.02826524e-01\\n-1.69015825e-01 2.31173575e-01 2.05302283e-01 -1.10380255e-01\\n-2.29525771e-02 -2.83569694e-01 -9.85960588e-02 -4.64898437e-01\\n2.29971185e-01 -6.82347894e-01 1.70826563e-03 -1.70031786e-01\\n7.67421246e-01 -2.53621846e-01 2.41331354e-01 5.32200001e-02\\n1.98563531e-01 7.72579014e-02 1.83079496e-01 -4.80950512e-02\\n-2.93160707e-01 -3.03587914e-01 -7.72290230e-02 -2.10390672e-01\\n5.72774589e-01 4.68876898e-01 -2.32954219e-01 1.00567788e-01\\n8.97916257e-02 -2.50250399e-01 -3.38004082e-01 -3.67808491e-01\\n-8.47953334e-02 -1.90154105e-01 -6.44422889e-01 -3.58307689e-01\\n-2.37692565e-01 -5.35098948e-02 -1.73348784e-01 6.83309138e-01\\n-2.23537713e-01 -3.40627760e-01 -4.50060032e-02 -5.49930453e-01\\n2.92525142e-01 -2.26350710e-01 -3.54556181e-02 -2.19424278e-01\\n-3.84449244e-01 -5.46058536e-01 2.00572610e-01 -1.46286935e-02\\n-1.70405999e-01 -1.90486237e-01 -7.12514594e-02 -1.11887105e-01\\n-3.27220827e-01 -5.28734922e-01 4.53813314e-01 7.47138634e-02\\n3.89641225e-01 4.50258516e-02 3.42192531e-01 -5.83290234e-02\\n3.66619319e-01 -4.39553559e-02 -1.18861243e-01 -2.91084558e-01\\n1.67029945e-03 -5.19434027e-02 4.72310871e-01 -2.14802042e-01\\n-5.62340021e-02 1.30633181e-02 -2.05137238e-01 -7.26636574e-02\\n3.83473903e-01 -5.91421202e-02 -1.91919561e-02 -1.73676014e-02\\n1.49899006e-01 -3.12187254e-01 -1.23561025e-01 1.09912425e-01\\n7.66745880e-02 6.77045226e-01 -4.77517908e-03 -3.79470497e-01\\n-1.69385076e-01 4.10028815e-01 2.98419930e-02 -3.22889574e-02\\n-1.82013303e-01 1.13103665e-01 -1.85907215e-01 3.64134163e-01\\n1.58624128e-01 -2.54524708e-01 -2.21764252e-01 -8.18207934e-02\\n9.81799210e-04 2.37839743e-01 2.93095320e-01 -3.10851261e-02\\n3.69392671e-02 -2.76173055e-01 -1.15463503e-01 2.45575801e-01\\n2.15234429e-01 5.35252392e-01 2.80419290e-01 -1.21189475e-01\\n-7.09661543e-02 3.48761678e-01 -2.61405408e-01 2.60237485e-01\\n-2.85427600e-01 1.26180246e-01 -7.14460313e-01 -1.98975205e-01\\n-3.96215558e-01 -4.54480767e-01 2.23042920e-01 3.25305134e-01\\n2.24712506e-01 2.15919479e-03 6.41972348e-02 -5.01045287e-01\\n3.11040223e-01 5.87692596e-02 1.88704818e-01 6.48616254e-02\\n-1.27303720e-01 7.35857010e-01 3.20191355e-03 -1.81023076e-01\\n-4.05069627e-02 -5.12045994e-02 -1.48772836e-01 -3.27150643e-01\\n9.48814377e-02 -5.37663460e-01 -1.67420164e-01 4.80783254e-01\\n2.42198750e-01 -3.29493672e-01 -1.80699497e-01 3.88646007e-01\\n-7.60499313e-02 -1.86901271e-01 -2.79845953e-01 -7.35238791e-02\\n3.15637708e-01 2.81177342e-01 2.61436522e-01 -4.49708462e-01\\n2.57047471e-02 7.10664466e-02 4.39580567e-02 4.50114101e-01\\n-9.27429199e-02 9.11136791e-02 -1.22978285e-01 -1.54046938e-01\\n5.39652109e-01 1.26949728e-01 -9.98347178e-02 -5.32008428e-03\\n7.32606510e-03 -3.16352934e-01 -4.79247510e-01 1.39600426e-01\\n2.86864899e-02 -2.87878633e-01 3.37244943e-02 3.99078190e-01\\n7.60375410e-02 -1.99807379e-02 -5.66408038e-01 -2.90984780e-01\\n-4.14100200e-01 -1.03131138e-01 7.49235898e-02 -5.34403384e-01\\n-5.59889227e-02 -1.14912890e-01 -5.45652151e-01 1.62470236e-01\\n-1.09022275e-01 -1.72669262e-01 7.09402487e-02 1.14660144e-01\\n-1.58122212e-01 -1.39632910e-01 1.61323324e-01 2.20779091e-01\\n-3.81904364e-01 -3.71773392e-01 1.92661569e-01 -8.71955574e-01\\n9.49129388e-02 7.87084773e-02 -1.10037871e-01 4.20953818e-02\\n-1.04353778e-01 -6.15664482e-01 1.58753976e-01 -4.14265662e-01\\n-1.45693198e-01 -3.46349068e-02 -3.60484034e-01 -3.20388347e-01\\n1.93313137e-01 -1.94700863e-02 -3.00010473e-01 4.07644212e-01\\n-2.63488710e-01 4.00100559e-01 -1.35406509e-01 -4.44483012e-02\\n1.51757598e-01 -2.00149119e-01 1.61718547e-01 -2.86785990e-01\\n-4.19289023e-01 -2.14120299e-01 -3.94909799e-01 -2.70132959e-01\\n-1.47896111e-02 -2.25182533e-01 -2.84535717e-02 5.81240132e-02\\n4.31330621e-01 1.28466085e-01 -1.02975480e-01 -3.42939675e-01\\n8.98802727e-02 -6.12769902e-01 1.86899617e-01 -1.15531527e-01\\n-9.15887877e-02 6.27326220e-03 2.03187928e-01 8.49358663e-02\\n1.66386053e-01 -3.11109543e-01 3.65905881e-01 -2.81435341e-01\\n-3.31665874e-01 -2.27461219e-01 2.42027408e-03 1.14350490e-01\\n3.87221217e-01 -3.51583600e-01 5.32052070e-02 3.62708539e-01\\n3.00327033e-01 2.11734265e-01 2.93572366e-01 -1.35290504e-01\\n-8.57323110e-02 2.89969236e-01 -4.33671653e-01 1.32000312e-01\\n8.17723393e-01 1.70845255e-01 1.20184541e-01 2.79863536e-01\\n2.37380981e-01 2.99207360e-01 4.94850248e-01 -4.24323492e-02\\n-8.02195743e-02 3.11893940e-01 4.57821153e-02 -5.10120869e-01\\n-9.27260965e-02 -4.67517860e-02 -1.01373769e-01 -4.63973373e-01\\n5.49229980e-01 3.39088768e-01 -5.88029146e-01 -1.91776097e-01\\n-1.65974170e-01 -8.41565207e-02 2.90564120e-01 -1.19086705e-01\\n-9.30366293e-02 -5.15116192e-02 4.38387096e-01 -3.48028243e-02\\n2.62130946e-01 5.64313650e-01 -1.63257420e-01 -2.91046381e-01\\n-1.45677835e-01 1.50090024e-01 8.47534314e-02 5.19238114e-01\\n-2.61489242e-01 2.66655147e-01 3.78726684e-02 8.95607248e-02\\n-1.39705539e-01 1.27351612e-01 1.68887764e-01 3.63932587e-02\\n1.53656244e-01 4.34682518e-02 5.11553943e-01 4.35245067e-01\\n1.68042347e-01 4.31544572e-01 3.78251702e-01 1.70791782e-02\\n4.54069227e-01 6.33443415e-01 2.05257058e-01 1.55574843e-01\\n1.94717553e-02 1.21155813e-01 8.99212807e-02 -9.27966535e-02\\n3.37685257e-01 4.72893596e-01 3.71972322e-02 7.62906134e-01\\n2.58406311e-01 3.27719122e-01 6.48398161e-01 -6.60321414e-01\\n-4.51613516e-01 4.49905768e-02 5.38177073e-01 -3.23654026e-01\\n1.95264723e-02 2.16557428e-01 -1.76611483e-01 3.19603801e-01\\n-5.55349529e-01 -2.57436872e-01 7.04749301e-02 1.57999676e-02\\n-6.65021092e-02 -8.54203925e-02 -1.74164981e-01 1.99467555e-01\\n-9.37347934e-02 -8.00428465e-02 -4.80387747e-01 -1.51882321e-01\\n-2.44141921e-01 2.26639062e-02 -1.34149954e-01 -2.77896561e-02\\n-2.61368994e-02 -2.76046395e-01 -5.96836507e-02 -3.38545591e-02\\n3.51283640e-01 -1.52411431e-01 -1.14355490e-01 -1.40807554e-01\\n2.95329064e-01 8.31074715e-02 5.08750319e-01 -1.15922838e-02\\n1.54916584e-01 -2.34697178e-01 -3.54662359e-01 4.98404987e-02\\n1.79183751e-01 8.54688883e-02 -7.04176677e-03 2.63531327e-01\\n-3.15759987e-01 -1.64064705e-01 1.71020180e-01 2.17373580e-01\\n-4.33389336e-01 -1.60579756e-02 -9.65989605e-02 1.86059102e-01\\n9.78053436e-02 1.49035260e-01 -3.71706039e-01 -1.19697273e-01\\n-2.28046790e-01 -4.42699254e-01 2.73321688e-01 -2.14537129e-01\\n-6.13162369e-02 -1.68225598e-02 3.33334237e-01 1.11436725e-01\\n-2.00642869e-01 2.95370501e-02 -1.15176305e-01 7.70796686e-02\\n-1.50255606e-01 3.01825523e-01 -1.50554284e-01 -2.27331847e-01\\n-3.23002756e-01 3.32887322e-01 6.60262182e-02 1.67546555e-01\\n-5.55528812e-02 3.39907467e-01 -2.28524338e-02 1.39183551e-01\\n3.69270712e-01 -2.38381289e-02 -3.01697582e-01 -2.68617421e-01\\n-2.02936634e-01 -5.76473847e-02 -6.89984933e-02 -5.75511493e-02\\n1.31067246e-01 -4.47860688e-01 -4.76802550e-02 -1.22213572e-01\\n-1.44428954e-01 -3.72405082e-01 -3.93482782e-02 -9.27502811e-02]]',\n", + " 'job_description': 'PLEASE NOTE: This position is based in our Swiss HQ in Mendrisio, Switzerland, just 7km over the border from Como, Italy. Mendrisio is easily commutable from Milan, Como, Varese or Lugano and Cloud Academy provides the train ticket for you! Cloud Academy is the leading digital skills development platform that enables every enterprise to become a tech company through guided Learning Paths, Hands-on Labs, and Skill Assessment. Cloud Academy delivers role-specific training on leading clouds (AWS, Azure, Google Cloud Platform), essential methodologies needed to operate on and between clouds (DevOps, security, containers), and capabilities that are unlocked by the cloud (big data, machine learning). Companies like Turner, Cognizant, SAS, and ThermoFisher customize Cloud Academy to contextualize learning and leverage the platform to assign, manage, and measure cloud enablement at scale. Role Description As a Data Engineer, you will design, build and improve our Data Warehouse. You will explore our data to find actionable insights from it. Data is the greatest accelerator for our business and you will be responsible for the full data stack. You will design, build and manage scalable data pipelines that provide reports to multiple business stakeholders. You will analyze data to find key insights and make product recommendations through funnels, cohort analyses, long-term trends, user segmentation, regression models, and more This role will enable you to work on the latest Cloud technologies and Cloud data warehouse to develop state of the art data analytics systems. Main responsibilities: Develop and manage our cloud data warehousing platform supporting the needs of critical BI reporting and analytical requirements Build data pipelines and own data quality for our data flows Identify, translate, and answer important product questions with data Create dashboards to track key product and business metrics Launch and support new data models and tools that provide intuitive analytics to internal customers Experience building and maintaining an AWS RedShift DWH. S3 Datalake design. Familiarity with Apache Parquet or other column-oriented data storage format a plus. SQL and NoSQL schema design expertise. Monitoring and alert management. Charting and graphing with ChartIO or similar. ETL design. Benefits Competitive salary with an annual bonus Train ticket paid for by the company Budget for professional development 4 weeks paid vacation per year 15 paid holidays per year Great company culture and work environment! Highly-skilled teammates and lots of opportunities for growth and development',\n", + " 'soft_skills': '[\"Operations\", \"Management\"]',\n", + " 'hard_skills': '[\"Data Warehouse Systems\", \"Data Quality\", \"Tooling\", \"NoSQL\", \"KM Programming Language\", \"Funnels\", \"Analytics\", \"Data Modeling\", \"SAS (Software)\", \"Machine Learning\", \"Apache Parquet\", \"Data Engineering\", \"Scale (Map)\", \"Data Warehousing\", \"Container Security\", \"SQL (Programming Language)\", \"Optical Data Storage\", \"Track (Rail Transport)\", \"Maintainability\", \"Censored Regression Model\", \"Data Pipeline\", \"Translations\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Building Design\", \"Dashboard\", \"Professional Development Programs\", \"Budgeting\", \"Pathing\", \"Column-Oriented DBMS\", \"Google Cloud\", \"Big Data\", \"Unlocker\", \"Clinical Data Warehouse\", \"Google Cloud Platform (GCP)\", \"Customer Experience\", \"Graphing\", \"Amazon Data Pipeline\", \"Digital Skills\", \"Long-Term Potentiation\", \"Amazon Redshift\", \"Data-Flow Analysis\", \"DevOps\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Tahitian', 'Dutch']\"},\n", + " {'company_id': '22',\n", + " 'job_title': 'data analyst - reward - careerplus ag',\n", + " 'location': 'Vaud',\n", + " 'industry': 'Consulting',\n", + " 'website': 'www.careerplus.ch/career',\n", + " 'jobdescription_embedded': '[[-2.92807728e-01 2.49484152e-01 5.17897129e-01 -2.04964243e-02\\n5.03775358e-01 4.79193330e-02 -4.91306558e-03 2.22196281e-01\\n-9.57313478e-02 -2.94222355e-01 -5.14931567e-02 -1.89331293e-01\\n2.17424572e-01 3.47227976e-02 1.17391795e-01 5.40095329e-01\\n2.23624900e-01 -4.39064167e-02 -1.78647742e-01 1.24300145e-01\\n1.74209356e-01 -1.31224871e-01 1.35293141e-01 5.82972527e-01\\n4.79634225e-01 1.45123020e-01 5.55340424e-02 -6.74915314e-02\\n-1.62668422e-01 -3.79930794e-01 4.87149775e-01 5.43474741e-02\\n-2.52798885e-01 -1.68198258e-01 1.46908700e-01 1.57194003e-01\\n-2.18937084e-01 -5.19923009e-02 7.88300531e-05 1.01035371e-01\\n-3.54064494e-01 -2.37514034e-01 -2.33541995e-01 -4.05795407e-03\\n-4.16233659e-01 -3.54876995e-01 3.36350016e-02 -1.81600705e-01\\n-5.56478910e-02 1.47341385e-01 -5.06300688e-01 3.36834222e-01\\n-2.07008317e-01 -3.09854716e-01 2.00348452e-01 7.45260000e-01\\n-2.41848029e-04 -4.15680438e-01 -3.83806884e-01 -2.72388399e-01\\n7.73532167e-02 -2.17611685e-01 2.13331729e-01 -1.44179091e-01\\n3.26887190e-01 -1.29860803e-01 9.79032964e-02 3.73884261e-01\\n-5.93981743e-01 -2.25384459e-01 -4.55781043e-01 -2.85508521e-02\\n-3.57793927e-01 1.11816861e-01 -3.78699839e-01 -2.52537608e-01\\n4.57380936e-02 4.15611416e-01 2.62043979e-02 6.77202046e-02\\n1.71525299e-03 2.25806519e-01 -2.78027833e-01 2.32643455e-01\\n2.44076699e-01 3.33147228e-01 4.15818810e-01 2.90371090e-01\\n-3.48088622e-01 3.44111949e-01 3.44426781e-01 -2.54290104e-01\\n1.99634552e-01 1.57101259e-01 4.24583346e-01 2.98259035e-02\\n1.96415022e-01 1.47921234e-01 -1.59335673e-01 2.49806240e-01\\n2.86896676e-01 -1.24613784e-01 1.63917802e-02 -2.91413534e-02\\n-1.06210001e-01 -4.34550680e-02 -2.94366460e-02 7.09833801e-02\\n-3.81873190e-01 4.03445840e-01 8.21186230e-02 -1.81224376e-01\\n-1.17309570e-01 -4.82728899e-01 -5.48721366e-02 -3.12304962e-02\\n1.56406239e-01 2.93370754e-01 9.01803225e-02 3.61370176e-01\\n2.31609970e-01 -4.35394198e-02 2.74227291e-01 7.19301105e-01\\n9.43277497e-03 3.55669633e-02 -1.40127480e-01 3.34680498e-01\\n9.72637609e-02 -2.36396343e-01 1.33891195e-01 5.20664491e-02\\n-1.94027752e-01 -1.20845273e-01 -2.22322553e-01 6.48572519e-02\\n-8.74188095e-02 -2.42824838e-01 -1.21442296e-01 3.75104956e-02\\n-1.05740033e-01 -3.64575654e-01 5.26833177e-01 -1.99331746e-01\\n1.28249913e-01 -5.69389276e-02 -1.65914565e-01 -2.02501733e-02\\n-9.06353295e-02 2.89669335e-01 2.41958618e-01 8.38008747e-02\\n-1.04285151e-01 -2.23296747e-01 -7.23098963e-02 9.80277508e-02\\n-2.45159313e-01 4.62356023e-02 -2.24775180e-01 -4.43001613e-02\\n3.49812567e-01 1.21501036e-01 -3.48953843e-01 2.12346286e-01\\n-5.89323118e-02 -1.11650214e-01 -1.05385639e-01 2.94752210e-01\\n-1.55899048e-01 2.56639570e-01 -4.03030030e-02 -1.46253720e-01\\n6.46015465e-01 -5.71680181e-02 2.03306660e-01 -2.60278247e-02\\n2.68023551e-01 -5.18381000e-02 1.21561222e-01 2.33049229e-01\\n-4.90553498e-01 3.43359232e-01 -1.49579048e-01 -2.29938790e-01\\n2.31814221e-01 9.11547337e-03 3.17964464e-01 -2.69416988e-01\\n-9.31287708e-04 -7.59353582e-03 -1.97048053e-01 -3.91775221e-01\\n-1.85339630e-01 -1.70011297e-01 2.49484479e-01 -4.16117400e-01\\n1.76510200e-01 2.78248250e-01 -4.16252375e-01 -7.76430666e-02\\n2.13353857e-01 2.23150298e-01 1.90509826e-01 2.29954839e-01\\n-5.70872538e-02 -3.52336496e-01 1.56435356e-01 -4.11385506e-01\\n-2.93577939e-01 1.90014228e-01 -2.02031001e-01 1.71946272e-01\\n1.10902667e-01 9.85754281e-02 -1.24510020e-01 3.98426764e-02\\n-4.18151543e-02 2.05012358e-04 1.45837754e-01 1.39613450e-01\\n4.07487392e-01 1.02339126e-01 -2.96056241e-01 6.33538425e-01\\n-2.38188162e-01 3.58768940e-01 2.22109452e-01 -8.11640859e-01\\n3.67092192e-01 2.73561627e-01 1.86295807e-02 -2.18771517e-01\\n6.34175837e-01 -3.30929250e-01 3.46937985e-03 7.76533410e-02\\n-3.55292261e-01 -1.78364798e-01 2.45974377e-01 -2.02756807e-01\\n-2.04766452e-01 6.19655013e-01 2.36004159e-01 1.20264463e-01\\n1.77044287e-01 -6.23706244e-02 -1.13642655e-01 2.27062598e-01\\n-2.11139396e-01 -1.43515885e-01 -5.30399978e-01 2.98961028e-02\\n-1.69910863e-01 -4.11377132e-01 -2.08604515e-01 -4.18698043e-01\\n-1.18193962e-01 -3.78028601e-01 -3.54471877e-02 1.67336494e-01\\n2.15364218e-01 2.22132593e-01 3.34526040e-02 -2.89345421e-02\\n-2.25567613e-02 -5.34587741e-01 -1.29745692e-01 -4.01797444e-02\\n2.32752353e-01 3.20354551e-01 2.18023300e-01 1.03602260e-02\\n-1.38135133e-02 5.86848378e-01 -3.27669650e-01 -2.30981871e-01\\n2.04553694e-01 7.09214658e-02 -3.07821929e-02 -1.63559511e-01\\n8.59709010e-02 1.69269234e-01 -2.29933068e-01 6.99177310e-02\\n3.36774550e-02 8.83765593e-02 2.64966339e-01 4.00313996e-02\\n-1.64133087e-01 -2.46609986e-01 -1.02021053e-01 3.38139862e-01\\n-3.07671964e-01 -2.31801808e-01 7.73478746e-01 7.45766088e-02\\n1.08141853e-02 2.50741720e-01 2.74939388e-01 2.38365363e-02\\n-2.09479362e-01 -1.82558864e-01 3.16131145e-01 3.37982886e-02\\n6.95002601e-02 3.79140489e-02 -1.30585268e-01 -6.73632264e-01\\n-3.82798314e+00 -1.91044480e-01 4.66539301e-02 -1.85087696e-01\\n3.07614774e-01 -2.62535989e-01 2.82215178e-01 -5.04504703e-02\\n-4.25621539e-01 2.27900178e-04 -1.98130056e-01 -1.34890050e-01\\n1.04165822e-01 3.05800259e-01 1.35605007e-01 2.02937216e-01\\n4.91464883e-02 -3.17067415e-01 1.04402274e-01 3.54781449e-01\\n-1.08920634e-01 -6.34532630e-01 9.27509367e-02 1.45179257e-01\\n1.87821895e-01 1.89701527e-01 -3.53751153e-01 -2.01682989e-02\\n-4.12370831e-01 -2.71910667e-01 2.43152291e-01 -1.87033936e-01\\n-1.25722006e-01 3.38573337e-01 1.23678602e-01 -1.56453237e-01\\n6.40785694e-02 -3.19020420e-01 -1.83386028e-01 -5.14295459e-01\\n1.48560423e-02 -6.43576264e-01 5.17886430e-02 -4.11559492e-02\\n6.98832929e-01 -1.72314465e-01 1.01254255e-01 -1.11673819e-02\\n1.54864475e-01 1.28706217e-01 1.17632680e-01 6.80226833e-02\\n-2.49146119e-01 -2.39811659e-01 -1.88842162e-01 -1.48558870e-01\\n5.46723425e-01 3.19685817e-01 -2.42419168e-01 -1.74864940e-02\\n1.61094725e-01 -1.43375814e-01 -4.70130593e-01 -3.43046486e-01\\n-1.84929371e-01 -1.26760587e-01 -6.91271245e-01 -4.17398959e-01\\n-1.24878511e-01 -1.20434113e-01 -9.15611386e-02 3.27238590e-01\\n-3.26957107e-01 -3.19581360e-01 -1.75155461e-01 -5.68320572e-01\\n3.43096048e-01 3.59299257e-02 7.19898418e-02 -6.30485937e-02\\n-2.51967788e-01 -3.12358260e-01 1.48753345e-01 -4.85609584e-02\\n-2.24839583e-01 -4.39677313e-02 1.17708310e-01 -1.02119699e-01\\n-5.39550483e-01 -5.88740170e-01 3.02530378e-01 -6.59187557e-03\\n2.52082676e-01 1.06097408e-01 1.81812048e-01 8.54525939e-02\\n3.28449339e-01 -8.88749361e-02 1.10937268e-01 -4.82921779e-01\\n-5.00840694e-02 -8.73403400e-02 5.34672558e-01 -3.17915112e-01\\n6.14494942e-02 -4.95008901e-02 -3.48138571e-01 6.60801679e-03\\n4.03120458e-01 -1.05266176e-01 2.09771156e-01 -2.05323040e-01\\n1.44424021e-01 -3.22828382e-01 -1.81625366e-01 4.68288474e-02\\n-2.18213964e-02 6.10500932e-01 -3.97641474e-04 -2.27759480e-01\\n-7.60752782e-02 3.43674451e-01 -2.52524644e-01 1.94884744e-02\\n-3.32107604e-01 -3.98220159e-02 -1.91715553e-01 2.38440007e-01\\n-6.23567514e-02 -1.67001877e-02 -2.20612690e-01 -2.18230456e-01\\n-3.08839321e-01 1.86227098e-01 3.92580032e-01 5.61631583e-02\\n-9.95813683e-02 -1.71130270e-01 -5.91154501e-04 2.83885747e-01\\n3.78166527e-01 2.47558996e-01 1.17952764e-01 -1.35925710e-01\\n-2.58399807e-02 1.30871221e-01 -3.14149946e-01 3.13218504e-01\\n-3.23312074e-01 1.73780978e-01 -5.46690047e-01 -3.48422348e-01\\n-2.14184523e-01 -2.36149579e-01 5.49806170e-02 2.56292284e-01\\n2.73810685e-01 -1.41505882e-01 -3.17259766e-02 -4.69738692e-01\\n1.36060417e-01 -3.23298783e-03 1.54710814e-01 9.68048722e-02\\n8.37241933e-02 5.46857476e-01 -7.90028572e-02 -9.90717933e-02\\n-1.02386046e-02 -2.37745908e-03 -3.14815193e-01 -1.92746237e-01\\n-1.11373537e-03 -4.64389563e-01 -1.87721133e-01 4.42664027e-01\\n2.97294378e-01 -2.18733232e-02 -1.42969266e-01 2.21551806e-01\\n-1.03578754e-01 -2.80066609e-01 -1.34844273e-01 9.46347043e-02\\n2.54331231e-01 2.06244305e-01 2.56608605e-01 -4.00748789e-01\\n-1.30822835e-02 -6.35702685e-02 -1.03939921e-02 3.72703433e-01\\n7.96988532e-02 3.55907306e-02 -1.02591552e-01 -2.11652473e-01\\n5.00992537e-01 -1.15009263e-01 -9.93147567e-02 2.29951933e-01\\n4.52876166e-02 -2.59161472e-01 -2.88915873e-01 -6.09055012e-02\\n-1.38794139e-01 -4.31407869e-01 -5.30247437e-03 5.26427366e-02\\n-5.45670763e-02 -1.34544820e-01 -5.58946550e-01 -1.44385621e-01\\n-4.39100355e-01 5.86260743e-02 -2.64023487e-02 -6.36194110e-01\\n-1.56636104e-01 -8.56428370e-02 -5.68331301e-01 4.72408384e-01\\n8.43668506e-02 -2.70385575e-02 -1.88171435e-02 4.56746183e-02\\n-1.51285753e-01 -1.16489366e-01 2.37081498e-01 5.73098771e-02\\n-1.72211125e-01 -1.59373105e-01 -6.26735166e-02 -9.15573955e-01\\n9.90821123e-02 3.38610969e-02 -6.15950339e-02 3.74277234e-02\\n-1.61738228e-02 -5.03424287e-01 2.65701950e-01 -3.10010970e-01\\n-1.24647848e-01 -1.28880173e-01 -1.37904823e-01 -5.72070062e-01\\n1.65153548e-01 1.66095361e-01 -8.25605690e-02 1.86751485e-01\\n-2.54866928e-01 4.60192829e-01 -6.07885271e-02 8.10760856e-02\\n5.18160574e-02 -2.72850156e-01 1.31389320e-01 -1.90626621e-01\\n-3.70012522e-01 -2.66933382e-01 -2.18123361e-01 -8.98007154e-02\\n-9.44960490e-02 -3.25810164e-01 -1.03750825e-01 8.93225968e-02\\n3.60930800e-01 1.34899750e-01 -2.81905774e-02 2.77143251e-02\\n3.47865857e-02 -3.19763273e-01 5.54116368e-02 -1.84001684e-01\\n-1.04908630e-01 -1.62066430e-01 3.06123793e-01 -1.60078686e-02\\n5.42841405e-02 -2.90793985e-01 6.55854821e-01 -3.51014316e-01\\n-3.66542280e-01 -1.43741444e-01 1.49283499e-01 9.28857028e-02\\n2.52769381e-01 -4.28187490e-01 -2.44174629e-01 2.65337050e-01\\n-5.03823534e-02 4.21923846e-02 4.57499534e-01 -2.51772940e-01\\n-3.33101004e-01 1.59681082e-01 -4.96445179e-01 1.67737246e-01\\n6.01235509e-01 2.08328292e-01 -4.24949937e-02 2.11482391e-01\\n5.84092960e-02 1.89005136e-01 4.47757453e-01 -6.54521808e-02\\n-1.18993491e-01 4.50450659e-01 9.47508216e-02 -5.98891973e-01\\n-2.52614319e-02 -1.32938683e-01 -8.49289745e-02 -4.22369659e-01\\n6.51286125e-01 2.45060951e-01 -2.44177952e-01 -3.56246859e-01\\n-2.32966051e-01 -2.06434965e-01 2.21360460e-01 6.99854270e-02\\n-8.14646482e-04 2.37384457e-02 6.33953750e-01 -3.37907560e-02\\n2.60523170e-01 4.42820013e-01 -1.29458934e-01 -1.25179425e-01\\n7.29270130e-02 2.24530995e-01 1.70701087e-01 6.03003919e-01\\n-1.71363279e-01 2.18244433e-01 -9.98080969e-02 8.34806412e-02\\n-2.23042950e-01 -1.58569261e-01 2.64286727e-01 1.02007426e-01\\n3.10000964e-02 2.80019283e-01 4.57617164e-01 2.52010167e-01\\n3.00936550e-01 2.77910411e-01 2.99330354e-01 -8.88086483e-03\\n5.68773866e-01 4.25679058e-01 2.88365990e-01 6.98861480e-02\\n2.44877785e-01 -1.16200102e-02 2.83846818e-02 1.24049164e-01\\n1.47922784e-01 3.53529394e-01 3.05384435e-02 6.88762784e-01\\n1.10410459e-01 2.03235954e-01 4.44429129e-01 -5.47876596e-01\\n-2.98101485e-01 -1.06862940e-01 4.76930678e-01 -2.10015133e-01\\n2.96239499e-02 1.17520146e-01 -1.60778672e-01 1.11862861e-01\\n-5.71863592e-01 -2.39320666e-01 3.35921012e-02 4.76931036e-02\\n1.24705255e-01 -2.65769392e-01 -1.14316419e-01 2.71872073e-01\\n-8.02594721e-02 -3.04331720e-01 -3.58398080e-01 -2.18096286e-01\\n-2.64741093e-01 -3.15170037e-03 -1.65616404e-02 -5.75651526e-02\\n-1.18179344e-01 -1.41884610e-01 -7.06317574e-02 -2.27782577e-02\\n2.61324435e-01 -6.21302128e-02 -1.71103179e-01 -1.16848528e-01\\n2.92841852e-01 1.13314904e-01 6.68359637e-01 -7.81475306e-02\\n4.04097028e-02 -1.56131983e-01 -7.96927363e-02 8.81968439e-02\\n3.48450750e-01 9.45734512e-03 3.75038348e-02 4.82997626e-01\\n-4.97146755e-01 -3.23453486e-01 2.33763028e-02 2.13830411e-01\\n-4.28546071e-01 1.77113991e-02 6.24992736e-02 6.81621432e-02\\n-3.12935859e-02 2.31950670e-01 -2.33727381e-01 -1.30394027e-01\\n-1.80645630e-01 -5.73991418e-01 2.47440994e-01 2.13290676e-02\\n-1.75795346e-01 -3.05417692e-03 2.82727331e-01 2.61612386e-01\\n-1.20194063e-01 -2.32921652e-02 -1.69710323e-01 1.32358000e-01\\n8.95941183e-02 2.62208670e-01 -1.12875976e-01 -1.70468539e-01\\n-3.81984055e-01 2.47090742e-01 1.50484862e-02 2.27425903e-01\\n7.91528597e-02 2.21344605e-01 1.02727368e-01 1.80787221e-01\\n2.42698088e-01 1.94107683e-03 -1.63231403e-01 -3.06096852e-01\\n-2.27223650e-01 -1.85125530e-01 9.02209580e-02 -1.72899321e-01\\n2.35681489e-01 -3.52716058e-01 -1.80768311e-01 -3.58611137e-01\\n-2.83901781e-01 -4.77604181e-01 -7.98367560e-02 8.31644423e-03]]',\n", + " 'job_description': 'Are you interested in a new challenging job opportunity?Do you have work experience in a Compensation & Benefit field?Your mother tongue is french and you are fluent in english ? We look forward to receiving your application ! We are looking for a Data Analyst - Reward for an international service company based in the canton of Vaud. You will be in charge of the following tasks : Participate in the highest quality data and survey products and service across Europe through: Analysis, and implementation of the annual survey cycle / Managing client relationships, and sitting on Steering Committee meetings-callsPrepare/ review materials and lead round table and conference meetings, including annual conference/ results delivery meetingsSupport clients with data submission training, collect data, analysis of client compensation levels, recommendations of appropriate survey products, interpretation of compensation surveys and survey access supportUnderstand complexities of data gathering and handling, data nuances and caveats, and best practicesLiaise with local/regional/global colleagues to manage client relationshipsMarket research and competitor analysisInterpret trends and market data patterns, implications for client compensation programmes and HR strategies identify insights in the data Requirements : Maturity, university degree in Economics, Human Resources or equivalent1-4 years experience with Compensation & Benefit, Data Analysis, ReportingExperience in using compensation/benefits surveysExperience in data analysis, surveys/surveys data and reportingExperience in producing and presenting reports, in a clear and concise manor, to a variety of audiencesExcellent MS Excel skillsGood knowledge of French and English (minimum C1 level)Teamwork, analytical skill, stress management, versatility and rigorous ',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Research\", \"Concision\", \"Teamwork\", \"Stress Management\", \"Presentations\"]',\n", + " 'hard_skills': '[\"Economics\", \"Data Quality\", \"Human Resource Management\", \"Surveys\", \"Accessioning\", \"Intelligence Data Handling\", \"Market Data\", \"Levelling\", \"Data Collection\", \"Managing Client Expectations\", \"Survey Data Analysis\", \"Data Analysis\", \"Receivables\"]',\n", + " 'languages': \"['English', 'Navajo']\"},\n", + " {'company_id': '41',\n", + " 'job_title': 'software engineer (100%) – web and data science',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.65671992e-01 1.45940229e-01 3.86579961e-01 -5.96222728e-02\\n4.40720975e-01 -1.17932484e-01 -5.53719737e-02 5.01133442e-01\\n-6.70614690e-02 -3.90774101e-01 -2.40968078e-01 -3.33446920e-01\\n-2.98712663e-02 4.49025333e-02 4.81980816e-02 3.25744450e-01\\n4.09833908e-01 5.76693937e-03 -1.84553653e-01 2.21736267e-01\\n1.58151448e-01 7.42802769e-03 6.68215826e-02 7.74974823e-01\\n4.26653177e-01 3.95111814e-02 -8.13630000e-02 8.06319192e-02\\n-1.23878241e-01 -1.93758741e-01 4.81303036e-01 -4.36533578e-02\\n-5.75363971e-02 -2.78646976e-01 1.52562439e-01 1.53269842e-01\\n-1.69085369e-01 -1.44976303e-01 1.58054326e-02 1.32952496e-01\\n-3.66461992e-01 -1.98856890e-01 -1.35921940e-01 -2.06342489e-02\\n-2.50288725e-01 -3.20023537e-01 1.66707382e-01 7.32310712e-02\\n1.94391698e-01 1.21158890e-01 -5.73420227e-01 3.27536047e-01\\n-1.59305811e-01 -2.10323647e-01 2.62402833e-01 5.85820317e-01\\n-4.31489646e-02 -3.49614322e-01 -4.45077181e-01 -3.20531785e-01\\n-3.72604914e-02 8.26465804e-03 2.51845773e-02 -3.39872897e-01\\n4.32266474e-01 7.68900961e-02 -1.74692422e-02 4.08467025e-01\\n-7.77748108e-01 -1.19041376e-01 -1.80832863e-01 -3.07215638e-02\\n-4.31059688e-01 -9.34521481e-02 -2.04030812e-01 -3.37942868e-01\\n3.92130949e-03 3.90388906e-01 4.84944806e-02 1.46399632e-01\\n-1.26081616e-01 3.08380604e-01 -1.73809811e-01 2.64557004e-01\\n2.00204268e-01 2.24971503e-01 1.22631535e-01 2.03790337e-01\\n-4.58802283e-01 3.04537326e-01 1.20717525e-01 -3.34799170e-01\\n2.20548585e-01 1.06594443e-01 4.94277716e-01 -2.64986046e-02\\n1.33682892e-01 1.20210752e-01 -2.74110585e-01 2.19658196e-01\\n1.65380284e-01 -2.70546913e-01 6.74144253e-02 1.08242229e-01\\n-1.60465941e-01 6.08422644e-02 -1.85638703e-02 1.67464122e-01\\n-4.69229460e-01 3.80220354e-01 1.42995641e-01 -2.04860896e-01\\n-5.75360730e-02 -5.27833998e-01 -5.02122864e-02 7.55536705e-02\\n1.28539905e-01 2.48511523e-01 1.00582331e-01 2.20322356e-01\\n1.80671632e-01 -1.19153254e-01 1.77313268e-01 8.00523818e-01\\n-1.65828735e-01 4.92043868e-02 -1.09462552e-01 2.98142612e-01\\n1.40939914e-02 -4.12092865e-01 3.59669060e-01 2.41447479e-01\\n6.60205856e-02 -9.69279334e-02 -1.92451924e-01 3.51833910e-01\\n-5.27645983e-02 -1.07739866e-01 -2.72441983e-01 2.93499619e-01\\n-6.37685955e-02 -3.98500741e-01 5.46387792e-01 -3.29662189e-02\\n1.38507351e-01 -1.19825944e-01 -1.50499977e-02 -1.06342621e-01\\n-1.75223872e-03 1.77395970e-01 -1.65576115e-02 1.13179833e-01\\n-2.77129471e-01 -2.60744929e-01 -2.11151257e-01 2.11403474e-01\\n-2.17946619e-01 1.65860862e-01 -1.15631759e-01 -7.70363733e-02\\n3.89654279e-01 -1.46581009e-02 -3.62541020e-01 2.69966841e-01\\n-1.63040996e-01 -7.66931847e-02 -1.56875193e-01 2.75265068e-01\\n-1.57152399e-01 1.70637965e-01 -8.45586434e-02 -2.88989067e-01\\n6.04902506e-01 9.84405205e-02 7.97428861e-02 2.04659179e-02\\n3.77252936e-01 -1.16546281e-01 2.71022826e-01 1.23651460e-01\\n-8.31082702e-01 3.86215389e-01 -7.69033059e-02 -1.41677290e-01\\n5.73826246e-02 -9.23963487e-02 3.63402575e-01 -3.26572210e-01\\n-4.28737048e-03 -6.35979474e-02 -4.10261333e-01 -3.56522679e-01\\n-2.93922603e-01 1.17526241e-02 3.80106091e-01 -4.41879064e-01\\n-1.07742257e-01 2.29473859e-01 -4.35201019e-01 -5.65388687e-02\\n1.20207965e-01 1.47222951e-01 2.17267781e-01 1.16263881e-01\\n-1.37646094e-01 -5.49800515e-01 -4.99382168e-02 -4.79152948e-01\\n-2.49541163e-01 1.10701770e-01 -3.63124132e-01 2.43841216e-01\\n1.00868732e-01 -9.69737396e-03 -1.25990167e-01 6.72070533e-02\\n-1.80060863e-01 1.93080287e-02 2.23223478e-01 9.92939174e-02\\n2.69773066e-01 2.12840606e-02 -3.51220042e-01 5.13492465e-01\\n-2.67470479e-01 5.66492081e-01 1.12878934e-01 -7.32331932e-01\\n5.85182548e-01 3.70277882e-01 2.30081119e-02 -4.11384702e-01\\n6.64948702e-01 -3.22872043e-01 -1.39720738e-01 2.16031119e-01\\n-5.10149181e-01 -2.79087454e-01 2.25954041e-01 -2.85820723e-01\\n-1.71467245e-01 5.68640590e-01 1.11486539e-01 5.34686446e-03\\n1.91207111e-01 -2.09477827e-01 -5.11966310e-02 2.03552753e-01\\n-5.67220896e-02 -3.04019392e-01 -4.41351265e-01 6.44363463e-03\\n-1.00489557e-01 -5.02600849e-01 -2.21974134e-01 -4.52862322e-01\\n-1.32305488e-01 -3.67884755e-01 -8.69197994e-02 3.19357514e-01\\n1.78226694e-01 1.15841031e-02 5.40474430e-02 -1.46193001e-02\\n-2.18150109e-01 -4.65944588e-01 5.52844405e-02 -4.87956665e-02\\n3.54325950e-01 2.22053930e-01 5.17959297e-02 7.71746412e-03\\n1.20537810e-01 5.90416431e-01 -4.31589901e-01 -2.04296216e-01\\n1.92698970e-01 1.77802205e-01 -1.65455453e-02 -9.36991945e-02\\n6.47983104e-02 1.84358478e-01 -2.80127943e-01 6.28573596e-02\\n-1.97841823e-01 6.18828088e-03 3.12159479e-01 -3.37022841e-02\\n-1.72033250e-01 -2.81366050e-01 -2.01874048e-01 2.41755426e-01\\n-4.15241957e-01 -1.46145418e-01 5.02776742e-01 1.94308281e-01\\n1.26098216e-01 9.35502499e-02 1.64956897e-01 -5.51386178e-02\\n-2.27688760e-01 -2.75434315e-01 1.64273471e-01 2.11716086e-01\\n9.52063203e-02 1.16905600e-01 7.06956442e-03 -5.39504468e-01\\n-3.16318107e+00 -1.43631786e-01 8.27458352e-02 -2.16717392e-01\\n1.96872801e-01 -1.81011736e-01 7.57007673e-02 -1.56750932e-01\\n-3.19366306e-01 8.51342082e-03 -2.65844643e-01 -2.52728224e-01\\n2.42721364e-01 3.00038517e-01 2.11652458e-01 1.78828925e-01\\n6.91802874e-02 -2.70938516e-01 -3.27821411e-02 3.37593853e-01\\n-2.02352136e-01 -6.36483133e-01 1.80496231e-01 -1.10360548e-01\\n2.89911449e-01 2.12548465e-01 -3.64683986e-01 -1.52064413e-01\\n-3.71091872e-01 -2.66302556e-01 1.55196354e-01 -3.94480646e-01\\n-1.90219581e-02 3.70257854e-01 2.72065759e-01 -8.62296000e-02\\n1.26356497e-01 -3.15278769e-01 -8.34692791e-02 -4.33622539e-01\\n9.70664546e-02 -6.00667834e-01 3.41655426e-02 -1.36053458e-01\\n6.46572888e-01 -2.92690754e-01 2.10369080e-01 -6.23375773e-02\\n1.25545070e-01 1.81514800e-01 7.08480626e-02 2.23776102e-02\\n-2.35551387e-01 -1.89410746e-01 -2.88651381e-02 -2.43645459e-01\\n4.85781610e-01 5.86879492e-01 -2.45114237e-01 5.31861279e-03\\n1.39248502e-02 -3.06160778e-01 -4.03995007e-01 -4.26138461e-01\\n-1.84742033e-01 -2.08667144e-01 -5.83256066e-01 -3.99220407e-01\\n4.32866812e-02 -8.51115957e-03 -1.75034963e-02 5.42504251e-01\\n-3.46156836e-01 -3.08009803e-01 -7.46407062e-02 -5.06666541e-01\\n1.90752119e-01 -1.30440563e-01 3.77066061e-02 -1.53395131e-01\\n-2.05087990e-01 -5.11045337e-01 -2.26585865e-02 -6.74601644e-02\\n-7.92954639e-02 -3.09072286e-01 1.44901365e-01 -2.73926258e-01\\n-3.10961783e-01 -4.97012854e-01 3.87421727e-01 7.26928636e-02\\n2.68800616e-01 1.60214692e-01 1.13335781e-01 -4.80764695e-02\\n1.84253618e-01 -7.91472644e-02 7.70884603e-02 -3.75289261e-01\\n1.73179924e-01 -3.24712358e-02 4.67437983e-01 -2.92596370e-01\\n9.26188082e-02 9.33798477e-02 -2.40125269e-01 -9.63956937e-02\\n3.16478431e-01 2.82150581e-02 5.46283498e-02 -2.18946502e-01\\n3.16442132e-01 -3.99932027e-01 -1.06561989e-01 1.22343890e-01\\n7.86487013e-04 5.63141465e-01 -9.13602859e-02 -3.18641096e-01\\n-2.43854791e-01 4.75256920e-01 -3.92867178e-02 -6.24148473e-02\\n-2.72917636e-02 6.82791173e-02 -2.72959262e-01 8.36367439e-03\\n1.05782643e-01 -1.77339256e-01 -3.27258199e-01 -6.63473010e-02\\n-4.37629186e-02 2.60152191e-01 3.49061579e-01 1.23251729e-01\\n-4.43817750e-02 -3.90107691e-01 4.30728868e-02 2.38825619e-01\\n2.05731302e-01 4.10272509e-01 1.64604485e-01 -2.82640755e-01\\n1.16258956e-01 4.40718293e-01 -1.38385400e-01 2.99130321e-01\\n-2.55757272e-01 2.94040069e-02 -4.51910585e-01 -2.76521027e-01\\n-3.08819771e-01 -2.09950149e-01 2.33417332e-01 2.39462256e-01\\n6.02208003e-02 -7.66653344e-02 2.06329226e-02 -2.36203387e-01\\n2.68072933e-01 3.77498157e-02 2.47298986e-01 1.95489034e-01\\n7.02776536e-02 5.05241871e-01 6.19248040e-02 -4.02613468e-02\\n-1.11321114e-01 9.74437874e-03 -1.82372719e-01 -2.55358249e-01\\n2.59953812e-02 -4.51805174e-01 -1.71005443e-01 3.30977261e-01\\n8.71234760e-02 -2.15608418e-01 -1.51789695e-01 3.16470623e-01\\n2.74791047e-02 -2.69510776e-01 -1.83940381e-01 4.27336209e-02\\n3.36368263e-01 1.95188791e-01 2.39873916e-01 -5.45838594e-01\\n2.16232799e-02 8.71053934e-02 6.00444637e-02 3.49319577e-01\\n7.42349587e-03 4.74575683e-02 -2.14556947e-01 -3.09754163e-01\\n3.78174186e-01 -1.18754230e-01 -7.81170204e-02 2.21334770e-02\\n-5.10758124e-02 -1.01043999e-01 -4.98390257e-01 6.23926409e-02\\n-7.73448050e-02 -1.69122234e-01 2.25923546e-02 3.02437153e-02\\n1.88040107e-01 1.60920154e-03 -5.90171278e-01 -2.60729134e-01\\n-2.39859760e-01 1.21823907e-01 -6.59736991e-03 -4.12824333e-01\\n-3.31509188e-02 -1.43836319e-01 -5.90028405e-01 2.51630843e-01\\n-3.01294565e-01 2.14015245e-02 1.66689724e-01 -2.85166893e-02\\n-2.90737748e-01 -1.66129358e-02 2.14256197e-01 1.43998519e-01\\n-3.52507979e-01 -2.76134938e-01 1.63707078e-01 -9.68044043e-01\\n2.28630215e-01 -4.89335358e-02 -2.76113488e-03 5.22096828e-02\\n5.19602746e-02 -6.59997046e-01 6.40762374e-02 -3.23857099e-01\\n3.16361152e-02 -5.28077185e-02 -1.89562067e-01 -3.75486195e-01\\n1.65075988e-01 2.86792889e-02 -2.53136873e-01 4.25950587e-01\\n-3.73569787e-01 2.23947644e-01 -6.23741485e-02 8.54542851e-02\\n-9.47628915e-03 -2.60334611e-01 1.60610527e-01 -3.55486512e-01\\n-3.97661686e-01 -1.08092077e-01 -2.31303632e-01 -2.40255073e-01\\n2.04730574e-02 -3.08231413e-01 -1.32807940e-01 1.14467770e-01\\n2.77534485e-01 -2.14315578e-03 -1.54656783e-01 -2.02471212e-01\\n6.36121482e-02 -4.14339721e-01 6.53293878e-02 -9.79014263e-02\\n-1.74235195e-01 -5.83656654e-02 1.44413859e-01 1.49172083e-01\\n1.79759547e-01 -2.99676359e-01 4.11857545e-01 -4.19254601e-01\\n-3.48256886e-01 9.24141146e-03 2.44993679e-02 7.12200850e-02\\n4.10732448e-01 -4.47869778e-01 -1.06420852e-02 4.83556926e-01\\n1.58661678e-01 4.26347740e-02 3.35807711e-01 -1.40962273e-01\\n-6.75651282e-02 3.55195940e-01 -4.03500348e-01 8.11336488e-02\\n7.59608150e-01 1.82093397e-01 1.61473811e-01 1.83877945e-01\\n8.28263089e-02 2.08341986e-01 4.96791363e-01 -6.81689978e-02\\n-4.55492884e-02 2.34692231e-01 1.66272134e-01 -4.87056762e-01\\n-3.79559584e-02 -7.23590404e-02 -1.19591534e-01 -3.12258154e-01\\n6.38360381e-01 2.92919099e-01 -3.86653483e-01 -2.76258111e-01\\n-1.80285275e-01 -8.55756849e-02 1.83038861e-01 -1.20801419e-01\\n-1.20878769e-02 -1.25445127e-01 3.60706985e-01 -1.79722719e-02\\n3.25670779e-01 5.15507519e-01 -1.36967659e-01 -2.27989957e-01\\n-1.24316573e-01 1.55378118e-01 -2.40206271e-02 4.30340767e-01\\n-1.24636143e-01 3.93962950e-01 -2.61003356e-02 7.84785450e-02\\n-7.83978105e-02 6.78520948e-02 1.60332724e-01 1.56171434e-02\\n1.71123862e-01 2.25997478e-01 2.28904232e-01 4.57809508e-01\\n4.19697940e-01 4.20207202e-01 2.50340521e-01 1.02351159e-02\\n5.12344360e-01 5.60570955e-01 3.82814586e-01 5.80348261e-02\\n-1.36158187e-02 6.44954741e-02 2.43339259e-02 3.39429080e-02\\n3.61855984e-01 2.38496885e-01 7.39051476e-02 8.66282940e-01\\n3.72847259e-01 3.94555718e-01 7.58402288e-01 -5.22506416e-01\\n-3.68315160e-01 -9.77809355e-03 4.80227858e-01 -3.72988820e-01\\n-2.26168558e-02 4.76302467e-02 -1.46486595e-01 2.68404514e-01\\n-4.04040635e-01 -1.36018753e-01 -3.36954966e-02 5.21584116e-02\\n8.01622570e-02 -6.15493730e-02 -1.92121118e-01 -5.70904277e-02\\n-2.76259631e-01 -2.42562056e-01 -4.39272940e-01 -2.10140608e-02\\n-2.95146763e-01 -1.82361647e-01 -6.06999770e-02 -1.34291872e-01\\n-1.40891895e-01 -3.11350852e-01 -6.07098565e-02 -7.84874409e-02\\n2.48353630e-01 -2.02380747e-01 -1.92393035e-01 -1.98216036e-01\\n3.09174687e-01 1.87624231e-01 5.69564581e-01 3.12692448e-02\\n5.37515357e-02 -1.99505210e-01 -2.62128711e-01 5.34336045e-02\\n1.47601604e-01 6.16584383e-02 1.04133293e-01 2.15175718e-01\\n-3.02895337e-01 -1.61912888e-01 2.15130210e-01 2.95713663e-01\\n-4.23356444e-01 -7.45199993e-03 -3.20259519e-02 2.60154426e-01\\n9.83207449e-02 9.41179097e-02 -2.00363994e-01 1.09424725e-01\\n-1.80405974e-01 -6.02317691e-01 2.75040656e-01 -1.84674039e-02\\n-7.90801942e-02 -3.01857069e-02 2.44553834e-01 1.65890366e-01\\n-1.48469836e-01 -7.37166107e-02 -5.72709739e-03 1.91942930e-01\\n1.08315811e-01 3.56584936e-01 -2.70975500e-01 -3.18293184e-01\\n-2.75185645e-01 2.19380870e-01 -2.39802092e-01 7.16267228e-02\\n-7.55953044e-02 4.12379742e-01 2.35632937e-02 1.06797941e-01\\n3.06158900e-01 -2.49416716e-02 -1.43308297e-01 -2.47206077e-01\\n-1.26511961e-01 -2.64839530e-01 4.24703807e-02 -3.16180363e-02\\n1.42942041e-01 -3.56728315e-01 -1.51308179e-01 -2.08909661e-01\\n-9.97731909e-02 -2.28749037e-01 8.07694867e-02 4.54790238e-03]]',\n", + " 'job_description': 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer (100%) – Web and Data ScienceYour mission : The Distributed Information Systems Laboratory (LSIR) headed by Prof. Karl Aberer at EPFL in Lausanne is currently looking for a software engineer with experience in Web development and Data Science. If you are interested in being at the crossroad of Web technologies, Machine learning and Computational Journalism, this job is for you. You will join our research team. Our goal is to develop a web platform to collect news articles from all around the world and to analyze the media landscape in real-time. You will be in charge of the Web platform development and will help us integrating some of the algorithms developed by our researchers. Interest in the field of journalism is a plus. Main duties and responsibilities include : Participate in the development and optimization of the platform in close collaboration with research staff. Support research staff to the transition of research prototypes into production-grade software tools. Implement best practices for sustainable and maintainable software development. Your profile : Master’s degree in computer science or equivalent. Ideally, at least 2 years of experience in software development. Fluent English in speech and writing Skills required Experience in web application development (Full-stack). Expertise in Python. Experience in managing and processing large-scale datasets. Effective team player. Skills preferred Experience in front-end and with at least one Javascript framework (e.g., Node.js, React, or Angular). Experience with at least one Machine/Deep Learning framework (e.g., scikit-learn, PyTorch, or Tensorflow). Experience with at least one Natural Language Processing framework (e.g., SpaCy, NLTK). We offer : A young, dynamic and interdisciplinary team Collaboration with strategic external partners and with advanced scientists Start date : Immediatly Term of employment : Fixed-term (CDD) Duration : 1 year, renewable Contact : For additional information, please contact J. Rappaz: jeremie.rappaz@epfl.ch Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " 'soft_skills': '[\"Research\", \"Writing\", \"Team Effectiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Integration\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Real Time Data\", \"Tooling\", \"Natural Language Processing\", \"Sustainability\", \"Computer Science\", \"Collections\", \"Good Agricultural Practices\", \"Web Application Development\", \"Scikit-learn (Machine Learning Library)\", \"Educational Research\", \"Scale (Map)\", \"Landscaping\", \"Python (Programming Language)\", \"Node.js\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Machining\", \"Web Development\", \"Dataset\", \"Software Engineering\", \"React.js\", \"Data Science\", \"SpaCy (NLP Software)\", \"Therapeutic Support Staff\", \"TensorFlow\", \"Deep Learning\", \"JavaScript Frameworks\", \"NLTK (NLP Analysis)\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Digital Learning Technology\", \"Software Development\", \"Algorithms\", \"Additives\", \"PyTorch (Machine Learning Library)\", \"Journalism\", \"Web Platforms\", \"Information Systems\"]',\n", + " 'languages': \"['English', 'Volapük', 'Southern Sotho']\"},\n", + " {'company_id': '92',\n", + " 'job_title': 'beamline scientist',\n", + " 'location': 'Villigen',\n", + " 'industry': 'Research & Development',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.45809698e-01 2.40760267e-01 3.86761814e-01 -1.41333997e-01\\n4.54120249e-01 -1.82031512e-01 -2.59941280e-01 3.03020418e-01\\n-5.06130755e-02 -3.54118764e-01 -1.63982719e-01 -4.68991011e-01\\n-2.05224663e-01 2.58927822e-01 1.64388344e-02 7.08726466e-01\\n3.99915755e-01 -6.20405376e-02 -1.15255043e-01 2.97411680e-01\\n1.85923219e-01 1.92877464e-02 2.04463810e-01 8.37673247e-01\\n2.70993084e-01 -6.91604614e-02 -1.41646788e-02 7.16641396e-02\\n4.87585040e-03 -7.52151459e-02 5.64723074e-01 1.62882075e-01\\n-2.03815117e-01 -2.86213338e-01 2.54533201e-01 3.56649399e-01\\n-2.43268669e-01 -1.10123068e-01 -1.56665351e-02 1.56770706e-01\\n-5.84460258e-01 -5.04559457e-01 -2.97786534e-01 -1.11032128e-02\\n-3.39402497e-01 -3.09013903e-01 2.96466410e-01 -5.06600700e-02\\n5.38071543e-02 1.56672657e-01 -5.71766913e-01 1.50984317e-01\\n-1.63360715e-01 -9.36386436e-02 2.64369518e-01 6.69528306e-01\\n-2.21422806e-01 -3.76176119e-01 -5.28578460e-01 -1.56794935e-01\\n-9.67135355e-02 -8.63044038e-02 -2.92635299e-02 -3.26595902e-01\\n5.01759291e-01 1.06564306e-01 9.99007449e-02 2.21450150e-01\\n-7.19509840e-01 -1.52579114e-01 -2.69892693e-01 7.70695284e-02\\n-2.77819395e-01 -7.71931559e-02 5.24960831e-02 -2.24402428e-01\\n-1.38893992e-01 3.43119502e-01 5.03780320e-02 7.26718679e-02\\n-1.26976579e-01 3.99083763e-01 -2.14835852e-01 2.70659059e-01\\n6.82644472e-02 3.04811418e-01 6.75827712e-02 2.66681939e-01\\n-4.42713916e-01 3.92651886e-01 -1.33917551e-03 -3.58318985e-01\\n1.72328770e-01 1.30207866e-01 5.04208803e-01 -4.05891053e-02\\n2.21757561e-01 6.40647411e-02 -2.94102699e-01 4.63778496e-01\\n3.37146103e-01 -6.19560406e-02 1.96224093e-01 4.35618833e-02\\n-7.07868487e-02 -2.03720093e-01 2.27487590e-02 -9.14328732e-03\\n-3.51798952e-01 3.38611662e-01 3.60218212e-02 -2.79057771e-01\\n-3.37158412e-01 -7.15076208e-01 -1.06256425e-01 -7.18494654e-02\\n2.57016011e-02 -1.88628733e-02 3.10433745e-01 3.01956683e-01\\n2.21182570e-01 5.68175549e-03 1.32828474e-01 9.08930302e-01\\n-1.96331874e-01 1.98670663e-02 -7.71393441e-03 4.39201623e-01\\n2.66786758e-02 -2.46281981e-01 3.55188400e-01 3.32521081e-01\\n3.98515463e-02 -2.87895262e-01 -1.40692741e-01 1.18540943e-01\\n-8.13064054e-02 -2.50040650e-01 -4.47571754e-01 4.01631534e-01\\n-5.59104197e-02 -3.82852018e-01 5.80591917e-01 -1.49704218e-02\\n1.44920781e-01 -1.95709556e-01 -9.14238766e-02 -1.14982143e-01\\n1.27150387e-01 1.73118591e-01 2.98465006e-02 1.51056759e-02\\n-3.18475276e-01 -1.86753318e-01 -2.56250620e-01 -4.79933135e-02\\n-2.68640310e-01 4.11803901e-01 -1.33990586e-01 -1.46340415e-01\\n3.20837498e-01 -1.45542443e-01 -2.99591124e-01 4.51312423e-01\\n-1.02879189e-01 -1.01027444e-01 8.49661976e-03 4.04606223e-01\\n-2.96354949e-01 1.62089974e-01 -2.28302479e-02 -4.15693104e-01\\n4.89489704e-01 -5.08041643e-02 -9.25617572e-03 5.85887767e-03\\n2.68584907e-01 -5.64731658e-02 1.13961428e-01 1.10013202e-01\\n-7.46925533e-01 2.05857426e-01 -2.99774744e-02 6.47832602e-02\\n1.01645365e-01 -2.11973228e-02 5.61715901e-01 -2.67359823e-01\\n-9.64637399e-02 -2.03056574e-01 -2.29629397e-01 -1.72231153e-01\\n-2.23611683e-01 2.41424683e-02 4.04588282e-01 -3.51689905e-01\\n-8.71918947e-02 9.25695449e-02 -5.21928191e-01 -2.22333848e-01\\n-1.65140599e-01 1.93033114e-01 2.76066571e-01 2.08562136e-01\\n-2.86134005e-01 -5.01437664e-01 1.68071929e-02 -4.80697244e-01\\n-1.29399329e-01 1.26776978e-01 -1.44325584e-01 4.70583662e-02\\n3.97809483e-02 8.65317285e-02 -2.42027611e-01 1.40861413e-02\\n-3.10616076e-01 -5.20778541e-03 1.46430328e-01 9.37623084e-02\\n1.78942502e-01 9.55171883e-02 -3.41007590e-01 4.25902605e-01\\n-1.21985711e-01 7.14845300e-01 9.37000066e-02 -6.87866688e-01\\n4.45264995e-01 6.15007639e-01 -8.32524151e-04 -5.22736907e-01\\n8.59574080e-01 -3.89872015e-01 -1.23316176e-01 2.20034212e-01\\n-4.67379868e-01 -2.04989061e-01 1.93395495e-01 -3.42955977e-01\\n-2.18238682e-01 6.82741404e-01 2.06239253e-01 2.79475570e-01\\n2.42790908e-01 -2.41475821e-01 -8.78192112e-02 1.18884847e-01\\n-1.99934721e-01 -3.35704684e-01 -4.58944082e-01 -4.46644053e-02\\n-8.43228847e-02 -3.87640506e-01 -3.59113049e-03 -5.47983646e-01\\n-7.01359510e-02 -2.85246670e-01 5.85510805e-02 2.53617436e-01\\n2.88158834e-01 -1.07170954e-01 1.28562897e-01 1.00407302e-02\\n-2.87427217e-01 -6.40394807e-01 5.80714867e-02 4.78657670e-02\\n2.98324913e-01 1.41319811e-01 4.86830696e-02 1.45219356e-01\\n-4.21842635e-02 5.98069787e-01 -4.12827760e-01 -2.28340060e-01\\n7.23405257e-02 6.98399842e-02 -1.01957403e-01 -4.79738750e-02\\n2.29019046e-01 2.80903310e-01 -3.66281211e-01 1.58332273e-01\\n-2.83897579e-01 1.16952267e-02 3.83291543e-01 5.76225631e-02\\n-1.03777170e-01 -3.39173496e-01 -2.17351243e-01 7.36750290e-02\\n-5.66741526e-01 -2.92441368e-01 1.83423460e-01 1.80575594e-01\\n1.71114445e-01 -4.13333401e-02 2.59165287e-01 -4.86990362e-02\\n-3.41019392e-01 -4.05753464e-01 1.24298155e-01 2.22978741e-01\\n2.63237301e-02 -3.36475298e-03 4.52119447e-02 -5.36467791e-01\\n-2.48188829e+00 7.85219520e-02 -1.18475594e-02 -9.82554033e-02\\n3.07876289e-01 -8.55706781e-02 -8.79981667e-02 1.01506431e-02\\n-4.67441052e-01 7.92015642e-02 -3.10824454e-01 -3.26058716e-01\\n7.89732113e-02 9.02246237e-02 2.01924622e-01 1.97807644e-02\\n-1.60633743e-01 -3.64493608e-01 5.46896569e-02 3.78157020e-01\\n-9.36601907e-02 -6.97075248e-01 1.95206866e-01 -2.06763536e-01\\n3.20534915e-01 1.41952857e-01 -4.56909209e-01 -2.07273245e-01\\n-3.41205090e-01 -3.02655101e-01 1.24217838e-01 -3.90627980e-01\\n-1.07618451e-01 2.11928278e-01 2.78403252e-01 5.28788939e-02\\n7.39757866e-02 -4.11585420e-01 -8.63629133e-02 -5.36580682e-01\\n1.60470635e-01 -5.27852297e-01 -8.33108351e-02 -1.23676457e-01\\n7.91242599e-01 -1.05762511e-01 1.66914254e-01 2.38038406e-01\\n8.54494423e-02 3.80013168e-01 1.68680042e-01 6.87090307e-02\\n-1.76705003e-01 -3.88859391e-01 -1.24609828e-01 -2.22830340e-01\\n3.03601801e-01 6.22459531e-01 -2.01547831e-01 -2.11238578e-01\\n-4.94279861e-02 -1.13650329e-01 -7.15984583e-01 -2.17597574e-01\\n-1.31451577e-01 -6.81305677e-02 -6.10427856e-01 -3.04470688e-01\\n5.06750681e-03 -2.22039297e-01 -1.77767575e-02 8.21896315e-01\\n-4.81288910e-01 -1.27176374e-01 -4.85077612e-02 -5.03491640e-01\\n3.56350601e-01 -4.02850211e-01 3.52946296e-02 -5.58663495e-02\\n-3.22295606e-01 -5.35560727e-01 1.91964626e-01 3.33730355e-02\\n1.03961535e-01 -3.13841373e-01 -2.76895724e-02 -3.79646301e-01\\n-3.68857533e-01 -5.78027844e-01 4.07614797e-01 1.47311330e-01\\n4.02638018e-01 8.41324776e-02 1.04301319e-01 -1.31242260e-01\\n2.61280745e-01 1.89854652e-01 9.66012999e-02 -2.65808821e-01\\n1.07359469e-01 -1.26699321e-02 5.32254577e-01 -2.18555123e-01\\n-3.28736715e-02 2.81389654e-02 -3.00247639e-01 2.07408480e-02\\n2.36194059e-02 8.39301422e-02 -2.72555090e-02 -3.07861328e-01\\n3.03385973e-01 -2.36406267e-01 1.00457236e-01 7.42449611e-02\\n5.07685505e-02 6.40259326e-01 -1.36890719e-02 -2.96718985e-01\\n-2.13718176e-01 3.79791319e-01 6.97991624e-03 -2.77193666e-01\\n1.91347003e-02 9.82096121e-02 -3.45803201e-01 2.50712484e-01\\n5.86071610e-02 -1.72310725e-01 -2.86427140e-01 5.66873178e-02\\n-3.03193718e-01 2.87834853e-01 2.73239851e-01 3.02359819e-01\\n-2.60871649e-01 -3.42498481e-01 -1.43479928e-01 4.42345500e-01\\n3.82398069e-01 1.96156815e-01 2.04745919e-01 -3.05308402e-01\\n9.85153168e-02 3.70981276e-01 -8.95058662e-02 3.23548555e-01\\n-1.93556488e-01 -8.63525271e-03 -4.70659971e-01 -2.47499496e-01\\n-3.43874365e-01 -2.95479327e-01 3.04496825e-01 3.88104975e-01\\n1.00817353e-01 -1.97061762e-01 6.98339343e-02 -4.01460588e-01\\n3.01824570e-01 2.24672675e-01 2.78110743e-01 -3.18264263e-03\\n-2.12903783e-01 7.60145903e-01 4.95729297e-02 -6.84433803e-02\\n8.71081352e-02 -3.22130769e-02 -2.50670910e-01 -2.48286098e-01\\n9.05192643e-02 -5.52165031e-01 -3.55697870e-01 5.11308253e-01\\n7.54418224e-02 -2.96924919e-01 -1.85742944e-01 3.81201386e-01\\n5.93147613e-03 -1.13518104e-01 -1.71170354e-01 1.11547768e-01\\n1.82311013e-01 2.48405505e-02 2.56972849e-01 -5.77492118e-01\\n4.81822453e-02 -8.07079375e-02 2.15251073e-01 4.60442126e-01\\n6.17659241e-02 -1.40849799e-02 -3.96825850e-01 -3.82223397e-01\\n2.61422187e-01 -1.20779887e-01 5.67430817e-02 6.79491460e-03\\n-4.23998609e-02 -2.34470665e-01 -3.82789850e-01 1.49799645e-01\\n-1.08190261e-01 -2.89712071e-01 -1.90536663e-01 1.66775525e-01\\n2.09501058e-01 4.23453888e-03 -5.50093293e-01 -2.88947999e-01\\n-1.58106625e-01 1.93713278e-01 -4.33786958e-02 -4.23162341e-01\\n-7.35912751e-03 -1.31652936e-01 -5.53546250e-01 2.83875942e-01\\n-1.15396291e-01 -1.44187838e-01 2.90813059e-01 -6.14260919e-02\\n-1.45987034e-01 -1.75757349e-01 1.66905209e-01 1.70598298e-01\\n-2.79904962e-01 -2.72356093e-01 -1.09784506e-01 -7.50319302e-01\\n2.31985673e-01 -1.79974943e-01 -1.36926234e-01 2.47590214e-01\\n1.44959867e-01 -8.47737432e-01 -2.81981789e-02 -3.51557806e-02\\n-4.15872149e-02 -1.08306736e-01 -2.97942400e-01 -3.60341072e-01\\n1.88647851e-01 2.98499595e-02 1.86299950e-01 2.66827583e-01\\n-3.24826360e-01 3.50115776e-01 -1.63529590e-01 -5.95295094e-02\\n1.14686333e-01 -4.38195705e-01 3.35826516e-01 -4.05177653e-01\\n-2.33751938e-01 -1.58398956e-01 -1.46460295e-01 -3.10499340e-01\\n-2.04065055e-01 -1.65390432e-01 -2.03085750e-01 4.59843725e-02\\n3.60766411e-01 2.19513476e-03 -2.52138615e-01 -1.58766493e-01\\n2.73846090e-01 -2.29012355e-01 2.15433925e-01 -1.61596298e-01\\n3.11880652e-02 -1.87858403e-01 1.22183934e-03 2.55314410e-01\\n1.20783404e-01 -2.37280145e-01 3.82095069e-01 -5.39723933e-01\\n-5.31245053e-01 -2.66796462e-02 1.68584093e-01 -1.36082739e-01\\n4.35275286e-01 -3.74710053e-01 -1.70460925e-01 4.82203603e-01\\n7.29043484e-02 6.12219982e-03 4.18551505e-01 -3.97491157e-01\\n-2.09333509e-01 1.63863674e-01 -3.99607241e-01 1.93790436e-01\\n7.51308262e-01 3.62087578e-01 2.58520953e-02 2.22431332e-01\\n4.95855138e-03 1.64091989e-01 3.33375990e-01 6.46231920e-02\\n1.19703844e-01 1.65906265e-01 3.51426452e-01 -3.05862963e-01\\n-2.74645358e-01 -4.20168042e-04 -1.27942711e-01 -2.91398168e-01\\n5.14018416e-01 2.91541100e-01 -4.78274584e-01 -2.32945487e-01\\n-1.89964548e-01 -4.08878177e-03 2.96094596e-01 3.07504255e-02\\n3.04530896e-02 1.51658863e-01 3.68120819e-01 -4.52038422e-02\\n6.22645020e-02 5.17324328e-01 4.71297912e-02 -2.14374572e-01\\n-3.30490589e-01 1.47188783e-01 6.48699477e-02 4.25095797e-01\\n5.39490208e-02 3.91915500e-01 -4.82826829e-02 1.55732155e-01\\n-1.41831219e-01 2.46662274e-02 6.44592196e-02 -1.30825177e-01\\n-1.41736001e-01 2.21100539e-01 2.01558292e-01 4.39204961e-01\\n5.07578373e-01 5.00967383e-01 2.18115643e-01 2.51558376e-03\\n5.15514493e-01 4.94697690e-01 4.24764246e-01 -5.24234623e-02\\n2.91975774e-02 6.29625618e-02 -1.28203239e-02 2.84622777e-02\\n3.69149685e-01 2.08649606e-01 9.06033814e-02 9.07156289e-01\\n2.42310524e-01 4.47250992e-01 5.23406446e-01 -4.98723030e-01\\n-3.74662876e-01 -2.53628008e-03 4.03031111e-01 -5.62860250e-01\\n-1.05003431e-01 -8.55161771e-02 5.83845712e-02 1.61441296e-01\\n-2.95660853e-01 -3.66350040e-02 -6.52897656e-02 2.90814579e-01\\n1.12193540e-01 -7.38110244e-02 -1.52578816e-01 1.17978677e-01\\n-2.60110885e-01 -1.61791578e-01 -5.00850916e-01 -3.36037695e-01\\n-4.47054625e-01 -1.85329109e-01 -2.57674083e-02 1.00367386e-02\\n1.79492719e-02 -1.65376797e-01 1.99737221e-01 -1.09691340e-02\\n5.77859521e-01 -2.67868102e-01 -1.38407469e-01 -2.31462479e-01\\n5.25919437e-01 2.30033308e-01 5.42341113e-01 -1.27677575e-01\\n1.08313262e-02 -4.23326880e-01 -1.79315448e-01 2.51365993e-02\\n9.70965400e-02 1.51231304e-01 4.65523824e-02 4.40123379e-01\\n-2.04064324e-01 -3.36268768e-02 3.16305682e-02 3.20813358e-01\\n-2.78688788e-01 3.01793609e-02 -7.19959140e-02 -5.04226759e-02\\n-9.13985148e-02 8.77118781e-02 -3.10290396e-01 2.50814915e-01\\n-5.91894500e-02 -6.35081768e-01 2.48365790e-01 -1.56630874e-02\\n-2.68759251e-01 -1.31524116e-01 5.77500701e-01 2.05051094e-01\\n-3.08491439e-02 -1.47888869e-01 9.37148333e-02 2.59473115e-01\\n1.02441013e-01 2.75669992e-01 -3.93415213e-01 -2.91762561e-01\\n-3.83897066e-01 9.31471959e-02 -2.82130897e-01 7.43618328e-03\\n6.20297529e-02 5.94205499e-01 1.50216296e-02 4.52903770e-02\\n6.08782291e-01 -1.96345031e-01 -1.72456682e-01 -4.11166191e-01\\n-1.57634676e-01 -2.51504600e-01 -1.23404920e-01 6.95163012e-03\\n1.29820973e-01 -1.68730915e-01 -2.03990757e-01 -4.34988976e-01\\n2.73905694e-02 -2.02042356e-01 7.43188858e-02 -1.08718477e-01]]',\n", + " 'job_description': 'The Paul Scherrer Institute PSI is the largest research institute for natural and engineering sciences within Switzerland. We perform cutting-edge research in the fields of matter and materials, energy and environment and human health. By performing fundamental and applied research, we work on sustainable solutions for major challenges facing society, science and economy. PSI is committed to the training of future generations. Therefore, about one quarter of our staff are post-docs, post-graduates or apprentices. Altogether, PSI employs 2100 people. The Swiss Light Source (SLS) is one of the most advanced radiation sources worldwide. The SLS Macromolecular Crystallography team operates two high performance undulator beamlines as well as a state-of-the-art superbending magnet beamline for Macromolecular Crystallography. The focus is on methods development in Macromolecular Crystallography including advanced beamline instrumentations, novel data collection methods for experimental phasing, in situ serial crystallography, and time-resolved crystallography. The team is also involved in the development and user operation of serial femtosecond crystallography (SFX) instruments at the Swiss X-Ray free-electron laser facility Swiss X-Ray free-electron laser facility (SwissFEL) Alvra and Bernina end stations, and in the design of the new SFX Cristallina end station. We are looking for a Beamline Scientist Serial Femtosecond Crystallography Your tasks You will lead the development and user operation of the SFX instruments at the SwissFEL. In addition, you will contribute to time-resolved serial crystallography development at the macromolecular crystallography beamlines of the SLS and SLS 2.0 Your main tasks are: Lead the design, implementation and commissioning of the SFX instrument in the Cristallina-MX end station at the SwissFEL Further develop and commission the current SFX instruments at the Alvra and Bernina end stations of the SwissFEL Develop new concepts and implement advanced methods focused on experimental control and online data analysis Support academic and industrial users Publish in peer-reviewed scientific journals and present your results at international conferences Supervise assigned personnel, and mentor PhD students and postdoctoral fellows Your profile You hold a PhD degree in biology, chemistry or physics and have substantial experience in macromolecular crystallography and beamline instrumentation at storage rings or XFELs Experience in experimental control and data analysis, especially in high throughput applications You are a good team player with fine communication skills, sense of responsibility, and very good command in spoken and written English; knowledge of German is an advantage We offer Our institution is based on an interdisciplinary, innovative and dynamic collaboration. You will profit from a systematic training on the job, in addition to personal development possibilities and our pronounced vocational training culture. If you wish to optimally combine work and family life or other personal interests, we are able to support you with our modern employment conditions and the on-site infrastructure. This is a Tenure Track position. The employment contract will initially be limited to 3 years. For further information please contact Dr Meitian Wang, phone +41 56 310 41 75 or Dr Bill Pedrini, phone +41 56 310 33 71. Please submit your application online by 30 November 2019 (including list of publications and addresses of referees) for the position as a Beamline Scientist (index no. 6121-00). Paul Scherrer Institut, Human Resources Management, Elke Baumann, 5232 Villigen PSI, Switzerland',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Positivity\", \"Collaboration\", \"Infrastructure\", \"Supervision\", \"Written English\", \"Operations\", \"Presentations\", \"Innovation\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Economy\", \"Resource Management\", \"Sustainability\", \"Indexer\", \"Employment Contracts\", \"Institutional Research\", \"Commissioning\", \"High Performance Computing\", \"Vienna Development Methods\", \"Laser\", \"Journals\", \"X-Rays\", \"Industrialization\", \"Survey Data Collection\", \"Naturalization\", \"Track (Rail Transport)\", \"Instrumentation\", \"Source (Game Engine)\", \"Limiter\", \"Experimentation\", \"DR-DOS\", \"Academic Support Services\", \"Crystallography\", \"Human Resource Management\", \"Storages\", \"Electronics\", \"Biology\", \"High Throughput Screening\", \"Personalization\", \"Survey Data Analysis\", \"Applied Research\", \"Physics\", \"Humanism\", \"Serializer\", \"Chemistry\", \"Peer Review\", \"Additives\", \"Personality Development\", \"S/SL Programming Language\", \"Data Analysis\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Amharic', 'Slovak', 'Welsh', 'Pashto']\"},\n", + " {'company_id': '78',\n", + " 'job_title': 'python software engineer',\n", + " 'location': 'Ecublens',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.83854505e-01 3.13536018e-01 4.22254711e-01 3.44365053e-02\\n4.65702027e-01 -2.22730830e-01 5.41637130e-02 3.56434554e-01\\n-4.34068441e-02 -4.36030000e-01 -1.64858475e-02 -1.34045780e-01\\n5.05928732e-02 8.50647688e-02 1.05993062e-01 3.68707150e-01\\n2.89231479e-01 1.16412111e-01 -1.73810720e-01 3.55999857e-01\\n1.94137946e-01 -2.04991162e-01 1.48378909e-01 6.91550195e-01\\n4.17710066e-01 4.06444147e-02 -7.38515556e-02 -9.26300585e-02\\n-2.40960449e-01 -2.58311301e-01 2.96355516e-01 -8.26480985e-02\\n1.37014529e-02 -2.94709831e-01 1.00075617e-01 4.72450033e-02\\n-2.92439312e-01 6.23716004e-02 -1.22555047e-01 1.43531516e-01\\n-4.23669010e-01 -2.48998210e-01 -1.45149454e-02 4.47185040e-02\\n-2.87419587e-01 -3.76777261e-01 -4.35665064e-02 -2.11596657e-02\\n1.54236898e-01 1.02737240e-01 -4.06005830e-01 2.72632867e-01\\n-1.83327883e-01 -2.78033435e-01 2.66389161e-01 6.01276040e-01\\n8.39586332e-02 -3.88004154e-01 -4.53456998e-01 -3.02583277e-01\\n1.22131824e-01 -1.10317320e-01 8.38165805e-02 -2.27188751e-01\\n2.21157342e-01 1.12012766e-01 3.58807817e-02 3.92592728e-01\\n-7.54998982e-01 -1.71705246e-01 -2.17439070e-01 3.84816132e-03\\n-3.67293835e-01 -5.32518402e-02 -3.43586773e-01 -1.75129980e-01\\n-9.15751383e-02 3.99368107e-01 8.88368934e-02 4.82066423e-02\\n-1.44171953e-01 2.73338735e-01 -2.94052929e-01 2.80525893e-01\\n8.89399946e-02 3.07182252e-01 2.92147160e-01 3.36172462e-01\\n-3.79227877e-01 4.27910030e-01 2.01296017e-01 -2.18055949e-01\\n1.99569240e-01 1.31854713e-01 3.72218281e-01 -5.68479076e-02\\n8.93755034e-02 1.24701537e-01 -2.86539167e-01 3.40909779e-01\\n2.41709575e-01 -3.76927644e-01 -4.63990122e-03 -8.93799663e-02\\n-5.57769723e-02 9.71650556e-02 1.47829913e-02 2.13050053e-01\\n-2.42960364e-01 5.10131419e-01 1.41508564e-01 -1.51766762e-01\\n-2.71893531e-01 -4.69466954e-01 -1.60336271e-01 1.18879199e-01\\n5.43652624e-02 1.97682679e-01 2.12093249e-01 2.34369531e-01\\n1.21746019e-01 7.16879368e-02 1.19382657e-01 8.08339715e-01\\n-1.12368919e-01 5.78540005e-02 -2.38146588e-01 2.88646162e-01\\n1.25378698e-01 -2.04947263e-01 1.52810946e-01 2.55510211e-01\\n2.24832911e-02 -7.21717328e-02 -2.09090948e-01 1.99924842e-01\\n-8.68414901e-03 -2.16348439e-01 -2.94800460e-01 1.22627586e-01\\n-1.25011384e-01 -4.01160389e-01 5.59230268e-01 -3.76495384e-02\\n1.09912604e-01 -4.21210751e-02 1.42728211e-02 -1.98151078e-02\\n-1.17887765e-01 3.02445650e-01 9.79868621e-02 7.90295824e-02\\n-2.59168088e-01 -2.52759248e-01 -2.00077608e-01 6.34471253e-02\\n-2.82681406e-01 1.40626594e-01 -1.19020663e-01 -8.49884972e-02\\n2.75136799e-01 5.82743287e-02 -3.45815182e-01 2.88975745e-01\\n-1.51949316e-01 -4.40673009e-02 -2.55139600e-02 2.97942609e-01\\n-9.65181887e-02 2.21694544e-01 -4.46106717e-02 -6.24480322e-02\\n4.88128573e-01 1.73573375e-01 1.56886697e-01 5.01425639e-02\\n4.58676159e-01 -6.02609776e-02 1.34521931e-01 1.49736390e-01\\n-6.17692649e-01 3.02045256e-01 -1.07444696e-01 -2.24348813e-01\\n2.31781472e-02 -8.98709744e-02 2.03081921e-01 -2.41018176e-01\\n8.84831622e-02 -9.58148614e-02 -3.56079489e-01 -2.04897404e-01\\n-1.94516689e-01 -4.39879345e-03 4.89132971e-01 -4.05715287e-01\\n-5.64642325e-02 3.32567662e-01 -4.73960340e-01 1.48255816e-02\\n2.20368221e-01 2.10675478e-01 1.03842326e-01 1.90437973e-01\\n-1.99413195e-01 -5.07555842e-01 1.07281804e-01 -4.04630840e-01\\n-3.09696853e-01 7.83817321e-02 -2.45411694e-01 3.36472481e-01\\n1.33485854e-01 -5.40559134e-03 -1.60929933e-01 1.71383381e-01\\n-1.06812216e-01 -1.08879551e-01 2.67731786e-01 2.45865099e-02\\n2.18638629e-01 5.67065291e-02 -3.61529559e-01 4.16100174e-01\\n-1.90633252e-01 5.84218800e-01 1.44300342e-01 -8.43032062e-01\\n4.33352262e-01 2.36040980e-01 -3.46538164e-02 -3.34052742e-01\\n6.46217287e-01 -2.86919773e-01 -4.32270952e-02 1.71872094e-01\\n-3.76946330e-01 -3.46421778e-01 2.00288013e-01 -1.49988279e-01\\n-1.63399935e-01 4.79662716e-01 1.55881541e-02 1.12495720e-01\\n1.42329723e-01 -1.79428622e-01 -1.74207557e-02 1.80392757e-01\\n-3.51361483e-02 -2.71079093e-01 -5.08884251e-01 2.38020681e-02\\n-2.32987758e-02 -4.49971855e-01 -2.23834217e-01 -4.62566137e-01\\n-2.79075444e-01 -3.99096906e-01 -1.75621539e-01 1.49052367e-01\\n3.37494165e-01 2.24078804e-01 -7.67990276e-02 7.93152768e-03\\n-6.72702119e-02 -5.67534029e-01 4.88837482e-03 -4.41446481e-03\\n3.20021987e-01 2.73139566e-01 1.27957031e-01 5.06691448e-02\\n3.76954973e-02 6.24832332e-01 -2.70586848e-01 -8.64854231e-02\\n1.83450818e-01 1.85280025e-01 -2.99990606e-02 -1.83927700e-01\\n1.05380177e-01 2.90925980e-01 -2.75966674e-01 -1.50427513e-03\\n-1.05112188e-01 2.71822289e-02 2.59410679e-01 2.85334140e-02\\n-3.23628634e-01 -3.07909578e-01 -1.82162285e-01 2.30234683e-01\\n-4.82012987e-01 -8.35859999e-02 6.38418853e-01 1.15988553e-01\\n2.03159153e-01 9.22499523e-02 1.44464552e-01 -7.35452548e-02\\n-2.45179325e-01 -2.01752543e-01 2.51730591e-01 8.61008763e-02\\n9.74621549e-02 8.73875394e-02 4.05845903e-02 -6.13074005e-01\\n-3.60807538e+00 -1.56459346e-01 1.59213051e-01 -3.36877286e-01\\n1.79116026e-01 -1.19283952e-01 2.88836025e-02 -3.15272063e-02\\n-2.82874703e-01 -3.17993085e-03 -1.37448549e-01 -3.91491987e-02\\n1.26683444e-01 3.10841918e-01 1.61530107e-01 3.38875532e-01\\n2.01024801e-01 -1.64875492e-01 -1.00166760e-01 3.43691409e-01\\n-1.83085755e-01 -5.74825048e-01 1.61550462e-01 1.90665182e-02\\n3.25571239e-01 1.62230074e-01 -3.62847686e-01 -3.47967148e-02\\n-2.70251632e-01 -2.16401741e-01 1.85651660e-01 -2.51749694e-01\\n-8.45417604e-02 3.59161496e-01 1.12812229e-01 -6.74937516e-02\\n1.78500786e-01 -3.93139094e-01 -3.38029116e-02 -3.93471897e-01\\n5.20180278e-02 -8.35730135e-01 -6.24690428e-02 -6.72424734e-02\\n6.25159740e-01 -2.67437100e-01 1.13958977e-01 4.40572738e-04\\n2.33763054e-01 1.01217367e-01 -1.22215204e-01 -6.17421865e-02\\n-1.53872639e-01 -2.02363983e-01 -1.33112594e-01 -1.29501626e-01\\n5.53237319e-01 5.48809409e-01 -2.95008898e-01 4.54086997e-03\\n6.68706149e-02 -2.37182125e-01 -5.36164582e-01 -2.79586166e-01\\n-2.14452714e-01 -1.12541631e-01 -5.18542886e-01 -4.15151387e-01\\n-1.73022687e-01 -6.47204146e-02 -8.97274539e-02 5.21756947e-01\\n-2.47729301e-01 -3.68129253e-01 4.64192107e-02 -4.40942675e-01\\n1.98812142e-01 -2.70047709e-02 -1.11793010e-02 -1.37700275e-01\\n-2.11662158e-01 -3.82933289e-01 1.29433945e-02 8.46709982e-02\\n-1.07657589e-01 -1.49050757e-01 1.63339913e-01 -1.92669198e-01\\n-3.22787195e-01 -4.57881808e-01 4.27879244e-01 5.29456809e-02\\n3.18697482e-01 1.07264444e-01 3.26580584e-01 4.55382392e-02\\n3.42633724e-01 -2.13378370e-01 6.16228469e-02 -4.71835017e-01\\n1.15533210e-01 1.15101479e-01 4.58314747e-01 -2.57812977e-01\\n-3.58812809e-02 7.24732429e-02 -2.74093181e-01 -7.23180547e-02\\n3.68877649e-01 2.67448407e-02 1.04110397e-01 -1.06102906e-01\\n2.57055342e-01 -1.59591660e-01 -1.79497167e-01 1.49396151e-01\\n9.73035991e-02 5.10731757e-01 -2.12335773e-02 -3.74474496e-01\\n-9.95678902e-02 4.66497332e-01 -1.40816107e-01 -1.85114164e-02\\n-2.35039204e-01 8.24710354e-02 -1.86436296e-01 3.14074129e-01\\n-9.48823150e-03 -2.07338765e-01 -2.73957610e-01 -1.26650408e-01\\n-2.05142617e-01 2.24996924e-01 2.16780052e-01 5.91512695e-02\\n-1.25494425e-03 -4.32422042e-01 6.62727430e-02 1.65055782e-01\\n2.74168909e-01 2.78098136e-01 1.35948092e-01 -2.87630498e-01\\n1.33550828e-02 2.43893713e-01 -2.04039201e-01 1.11436613e-01\\n-2.34048039e-01 9.60922539e-02 -5.17248631e-01 -3.18022549e-01\\n-2.13809520e-01 -2.78456986e-01 1.61215328e-02 2.21385404e-01\\n8.64495263e-02 -2.35156249e-02 3.51036293e-03 -4.66592968e-01\\n2.45225117e-01 6.08302318e-02 1.36826560e-01 8.60461965e-02\\n8.88402611e-02 4.51788723e-01 -8.68314132e-02 -1.59263566e-01\\n-8.59555379e-02 4.01085280e-02 -1.88010469e-01 -9.62855145e-02\\n-7.38373538e-03 -4.68632251e-01 -1.14006937e-01 3.44908863e-01\\n1.94163173e-01 -2.32397109e-01 -2.09345773e-01 2.27193311e-01\\n8.26890618e-02 -3.23692143e-01 -2.03930363e-01 7.55390674e-02\\n3.40344608e-01 -7.84023665e-04 2.89408833e-01 -4.20174003e-01\\n-7.36906901e-02 1.24970227e-02 -1.80752456e-01 3.45428377e-01\\n9.49521810e-02 7.33099058e-02 -1.41062096e-01 -1.29876301e-01\\n3.53113502e-01 -1.62955701e-01 -4.63835560e-02 -4.86105122e-02\\n7.83211663e-02 -1.43355429e-01 -3.79651517e-01 -2.24196464e-02\\n-2.48414110e-02 -1.53878495e-01 3.46394628e-02 4.58384790e-02\\n-1.85313579e-02 4.18657809e-02 -4.40943092e-01 -2.55837977e-01\\n-2.90215909e-01 -3.97109240e-02 8.72222036e-02 -4.25135970e-01\\n-2.07857698e-01 -2.07643844e-02 -5.89752436e-01 2.67387033e-01\\n-1.28892243e-01 2.63465513e-02 1.04684927e-01 -1.21683162e-02\\n-2.39343122e-01 -2.81182714e-02 1.64795190e-01 2.60770917e-01\\n-2.07734257e-01 -2.74755001e-01 -2.96298005e-02 -1.03120303e+00\\n1.45582184e-01 -2.06318814e-02 -1.34849623e-01 1.13084719e-01\\n-9.35699567e-02 -5.67853570e-01 2.21977323e-01 -4.50070322e-01\\n-1.47491470e-01 -2.02272390e-03 -2.42225289e-01 -4.41374600e-01\\n-1.51963599e-04 -4.14062943e-03 -3.82462919e-01 2.97317028e-01\\n-3.00246716e-01 3.64383548e-01 -1.08668976e-01 2.25383919e-02\\n-2.42492314e-02 -3.32234651e-01 1.26525208e-01 -4.52324629e-01\\n-4.13053393e-01 -2.16503426e-01 -3.87033463e-01 -2.15564027e-01\\n-4.28158417e-02 -2.75769413e-01 -2.12677270e-01 1.41234204e-01\\n1.39678448e-01 1.05996445e-01 -2.92705558e-02 -2.59992808e-01\\n1.08309500e-01 -5.43522537e-01 -1.42402817e-02 -7.26744384e-02\\n-8.74239206e-02 5.03421575e-02 2.64104515e-01 1.02759607e-01\\n1.30421966e-01 -3.30535173e-01 3.40338916e-01 -2.55461752e-01\\n-2.57084906e-01 -8.68986025e-02 1.17111415e-01 5.35987131e-02\\n3.45667720e-01 -4.11615372e-01 -4.32775393e-02 2.52515644e-01\\n7.85239413e-02 7.06172064e-02 1.99472725e-01 -1.50284052e-01\\n-9.70525220e-02 1.09580219e-01 -3.26428950e-01 1.37482524e-01\\n7.09143519e-01 1.03468791e-01 1.16612241e-01 1.50718242e-01\\n1.71337456e-01 3.82334620e-01 5.51352859e-01 -4.27995101e-02\\n-7.22283572e-02 2.64805973e-01 4.33636270e-02 -4.65714633e-01\\n-6.87800348e-02 1.68755874e-02 -2.25771651e-01 -3.16154778e-01\\n7.46669710e-01 3.73340458e-01 -3.34144413e-01 -2.64604747e-01\\n-2.47089371e-01 -2.23196134e-01 1.16633154e-01 -1.49449691e-01\\n-3.17115337e-02 -1.68722704e-01 5.26809275e-01 -1.67585760e-02\\n2.11080477e-01 4.33066398e-01 -2.71808058e-01 -3.54930669e-01\\n-3.51133943e-02 1.73847899e-01 1.28463507e-01 3.66318852e-01\\n-2.22672075e-01 2.62082011e-01 -8.09992254e-02 1.94859326e-01\\n-1.65854111e-01 2.90295482e-02 1.60784200e-01 2.21153170e-01\\n1.85064569e-01 1.13407731e-01 5.00552952e-01 4.06333834e-01\\n3.13801408e-01 4.24546182e-01 3.14721853e-01 3.74882631e-02\\n3.93097371e-01 5.12624502e-01 2.83737212e-01 6.56319261e-02\\n-3.28865498e-02 1.57031193e-01 2.19195411e-01 -2.55202726e-02\\n2.65230447e-01 3.04799825e-01 1.24868512e-01 7.49586582e-01\\n3.33848506e-01 3.84398848e-01 7.34807909e-01 -5.14755130e-01\\n-3.87509376e-01 -3.92927825e-02 4.82603043e-01 -3.43237072e-01\\n-7.95091093e-02 1.77127302e-01 -1.56568274e-01 2.67745614e-01\\n-4.33659941e-01 -2.52876759e-01 -3.26214768e-02 1.54378757e-01\\n2.83774566e-02 -1.05004989e-01 -2.42276981e-01 4.77619208e-02\\n-6.95840120e-02 -1.89622626e-01 -4.33167309e-01 -1.03496782e-01\\n-1.59179807e-01 -5.13687246e-02 -9.06260312e-02 -7.85004348e-02\\n-1.38599440e-01 -3.72130215e-01 -6.94615766e-02 -1.03127230e-02\\n2.95885712e-01 -9.11673084e-02 -1.77479744e-01 -5.82132721e-03\\n2.40863100e-01 9.08658132e-02 5.77560484e-01 3.58492173e-02\\n4.12605554e-02 -2.59109288e-01 -2.01846078e-01 8.82450119e-02\\n2.38397285e-01 4.86583933e-02 -1.08193234e-03 4.18534130e-01\\n-3.78507942e-01 -2.44811326e-01 -1.38382660e-02 2.83928692e-01\\n-3.53988439e-01 -2.63351918e-04 2.02052714e-03 2.84852564e-01\\n8.40892792e-02 9.21496823e-02 -1.97487384e-01 -6.34175465e-02\\n-1.44567922e-01 -4.39394772e-01 2.08622217e-01 -1.78502742e-02\\n-1.92697421e-01 1.19683444e-01 1.63583606e-01 1.55272827e-01\\n-2.27259085e-01 -8.24973136e-02 -8.80286172e-02 1.21255040e-01\\n1.30779624e-01 3.41004401e-01 -9.22361240e-02 -4.18915153e-01\\n-2.82891780e-01 2.63603508e-01 -1.00076646e-01 1.80406496e-01\\n3.69230434e-02 3.82384449e-01 6.24729954e-02 2.07829341e-01\\n3.36590588e-01 3.82261761e-02 -1.60713851e-01 -2.62553692e-01\\n-1.18662544e-01 -1.93601504e-01 1.00766523e-02 -8.17293301e-02\\n1.66552082e-01 -2.93026596e-01 -8.24030340e-02 -1.35522947e-01\\n-1.77249268e-01 -3.40951324e-01 1.90074984e-02 -1.59024447e-01]]',\n", + " 'job_description': \"What we are looking for To accelerate projects and growth, Nanolive is looking for strengthening its development team with a highly self-motivated, enthusiastic, result oriented Python Software Engineer. Mission and activities Implement advanced statistical tools related to Nanolive Core Technology and Quantitative biology applicationsPrepare test protocols, run tests and analyse resultsDocument work results with Python notebooks or similar reports Required Master’s degree in Computer Science, Mathematics, Engineering or related area.Experience in Python scientific coding & djangoExperience in big data managementExperience in software industrialization and deploymentExperience with CI/CD, source management An Asset Experienceof unit testingKnowledge of hdf5, java programming, image analysis Key asset of the candidate Have a team player spirit, a quick perception, and a resourceful and fast-learning mindsetHave a strong sense of commitment and responsibility to respect planning and qualityHave a high analytical capacity and an adaptable, autonomous, rigorous and service-oriented mindsetHave effective communication in English (both written & oral – including technical documentation) What we offer You will get the opportunity to work in a fast-growing scale-up environment with highly motivated, competent and experienced individuals, and make a real difference for our customers. You will be working with a cutting-edge technology and facing the exclusive challenge of making it accessible to a wide audience by implementing creative solutions. Interested? Please visit our website, then click on “Apply Now” and fill your application including your cover letter and CV. We do not accept any recruitment agencies. Job Types: Full-time, Permanent Experience: Python: 1 year (Preferred) Education: Master's (Preferred) \",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Adaptability\", \"Resourcefulness\", \"Planning\", \"Communications\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Scale (Map)\", \"Tooling\", \"Accessioning\", \"Activism\", \"Industrial Software\", \"Programming (Music)\", \"Python (Programming Language)\", \"Biology\", \"Service-Oriented Modeling\", \"Agile Edge Technologies\", \"Computer Science\", \"Image Analysis\", \"Statistics\", \"Source (Game Engine)\", \"Analytics\", \"Big Data\", \"Technical Documentation\", \"Software Engineering\"]',\n", + " 'languages': \"['English', 'Malayalam', 'Ossetian', 'Urdu']\"},\n", + " {'company_id': '92',\n", + " 'job_title': 'product specialist - preclinical software',\n", + " 'location': 'Pratteln',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.41236180e-01 2.90319145e-01 4.68818903e-01 -9.23457518e-02\\n5.66722870e-01 -4.17652465e-02 -3.56336087e-02 3.46196562e-01\\n3.00159715e-02 -3.08371961e-01 -3.29736546e-02 -3.26030612e-01\\n1.48460746e-01 2.54644424e-01 -4.24939804e-02 4.34395999e-01\\n3.37981522e-01 1.26956776e-01 -1.75786436e-01 2.45356038e-01\\n1.81513168e-02 -1.67816430e-01 2.34795898e-01 7.89804459e-01\\n3.97713900e-01 -2.32347809e-02 -1.05665080e-01 -6.33461997e-02\\n-1.60741121e-01 -1.71358630e-01 5.27925313e-01 -1.99466757e-02\\n-1.54859722e-01 -3.14400315e-01 7.80410245e-02 1.13540187e-01\\n-2.80140907e-01 -6.28394634e-02 -1.53352886e-01 1.40269026e-01\\n-6.47592664e-01 -2.66026974e-01 -9.40905064e-02 8.47475231e-02\\n-3.34530920e-01 -3.29408914e-01 5.53082451e-02 -7.76224285e-02\\n1.67329133e-01 1.71046063e-01 -4.49607134e-01 1.66265577e-01\\n-3.25467885e-01 -2.84837902e-01 2.95220584e-01 6.41033173e-01\\n5.08179255e-02 -3.86479795e-01 -5.68061709e-01 -3.14716160e-01\\n1.74129382e-01 -4.79413718e-02 -3.23455818e-02 -3.15818429e-01\\n3.74750853e-01 1.35440528e-01 5.28140143e-02 3.19644034e-01\\n-8.42938304e-01 -1.09258085e-01 -1.88590288e-01 -6.64544106e-02\\n-2.67158985e-01 9.89961624e-03 -2.77759373e-01 -2.08844185e-01\\n-1.38790771e-01 4.15404975e-01 5.56623116e-02 -1.50841763e-02\\n-1.65076584e-01 2.79891521e-01 -3.14373672e-01 3.39975476e-01\\n1.75061300e-01 2.81090587e-01 2.64529854e-01 2.20599443e-01\\n-2.87707150e-01 4.69859570e-01 2.49250501e-01 -3.26760292e-01\\n2.66165137e-01 -1.60747021e-02 3.26063842e-01 -1.10008880e-01\\n1.84474319e-01 3.96711901e-02 -3.22044462e-01 3.55394065e-01\\n2.18067840e-01 -2.12915629e-01 3.70260552e-02 -4.53471430e-02\\n1.65863335e-02 -6.41060174e-02 1.65947020e-01 1.94752991e-01\\n-4.16675478e-01 4.18574452e-01 1.44840509e-01 -2.24833727e-01\\n-8.82302150e-02 -4.61693347e-01 -1.60161436e-01 1.52758211e-01\\n1.95015734e-03 1.63820744e-01 1.07539549e-01 7.15142936e-02\\n2.36166805e-01 -1.06738776e-01 5.16195111e-02 8.20751667e-01\\n-1.39197648e-01 6.94318563e-02 -2.30538666e-01 3.61465096e-01\\n1.60673708e-01 -1.96954340e-01 2.19268352e-01 1.60646111e-01\\n-9.38709080e-02 -8.41007829e-02 -1.73420042e-01 3.82595897e-01\\n4.05185558e-02 -2.65480280e-01 -2.89069951e-01 1.88551471e-01\\n-6.08726814e-02 -2.97211200e-01 5.47578216e-01 -1.34295329e-01\\n6.16129600e-02 -1.78153425e-01 -2.31506862e-03 -2.20270455e-02\\n-1.34399533e-01 1.75396591e-01 1.65797025e-01 6.03906363e-02\\n-2.85318613e-01 -2.52690494e-01 -9.86328870e-02 7.81935453e-03\\n-2.96563983e-01 1.36996150e-01 -1.80051327e-01 -1.38085485e-01\\n2.83705920e-01 7.10104108e-02 -2.61219949e-01 2.21112803e-01\\n-1.29115090e-01 -4.96139228e-02 -7.42911994e-02 2.80305326e-01\\n-2.75938630e-01 2.36028209e-01 -6.36880025e-02 -1.94869161e-01\\n5.58151722e-01 -3.05296965e-02 2.15724230e-01 3.32269296e-02\\n3.27327669e-01 -6.85470849e-02 2.49059379e-01 1.81374013e-01\\n-6.19416952e-01 3.66627216e-01 -1.52457982e-01 -1.06910378e-01\\n1.90078408e-01 -1.44409597e-01 3.54053676e-01 -2.57481694e-01\\n9.33321789e-02 -1.21398635e-01 -2.80310214e-01 -3.45704138e-01\\n-1.78863674e-01 -3.40287685e-02 3.07799697e-01 -3.73375386e-01\\n-9.49840173e-02 2.42244601e-01 -4.94794905e-01 -2.72151947e-01\\n1.81298330e-01 2.77989566e-01 1.07822105e-01 2.12005049e-01\\n-2.67193109e-01 -4.33954716e-01 1.90990478e-01 -4.75398183e-01\\n-1.27627894e-01 9.74676609e-02 -1.63165629e-01 2.17331663e-01\\n-3.00837439e-02 6.02189675e-02 -1.34491056e-01 1.13878042e-01\\n-2.24483415e-01 -2.96750274e-02 1.38052091e-01 -5.24428934e-02\\n1.69936776e-01 1.46973401e-01 -3.14377785e-01 4.33021069e-01\\n-2.36965179e-01 5.27099967e-01 4.71851081e-02 -1.09638453e+00\\n4.55236375e-01 3.79381835e-01 8.58560950e-02 -3.83684218e-01\\n7.20253706e-01 -3.48269701e-01 -1.48789242e-01 5.56652769e-02\\n-4.50578064e-01 -2.59066522e-01 2.37096444e-01 -2.13534772e-01\\n-2.42498323e-01 5.72614312e-01 5.66710308e-02 1.98284373e-01\\n2.63031125e-01 -2.06195593e-01 -9.12628323e-02 1.36586085e-01\\n-1.66414395e-01 -3.14506173e-01 -5.98668218e-01 -1.28232792e-01\\n-6.26697466e-02 -3.74196649e-01 -1.92491770e-01 -4.52266276e-01\\n-1.84717983e-01 -3.07367295e-01 -3.62683386e-02 1.25330046e-01\\n2.41897121e-01 1.36977166e-01 -4.77643497e-02 1.28264099e-01\\n-1.52111486e-01 -5.72612762e-01 3.63987312e-02 1.13705680e-01\\n3.11079651e-01 2.68742919e-01 1.15773961e-01 1.22746974e-01\\n7.63054937e-03 5.74436784e-01 -3.21661830e-01 -2.32951015e-01\\n1.61837205e-01 1.84737727e-01 6.71269372e-02 -6.42310381e-02\\n2.06276909e-01 2.92135149e-01 -1.89365357e-01 7.48000666e-02\\n-1.53152734e-01 -2.54523214e-02 3.12078714e-01 1.21913083e-01\\n-2.51913160e-01 -1.58904463e-01 -1.60549045e-01 1.11034438e-01\\n-5.08551478e-01 -1.89358413e-01 4.03058946e-01 -4.48963158e-02\\n5.95425926e-02 1.54752895e-01 1.74113512e-01 -1.03809685e-03\\n-3.13960373e-01 -2.60382056e-01 2.46689737e-01 1.04118034e-01\\n2.88166776e-02 9.54283178e-02 4.65270355e-02 -5.76100171e-01\\n-3.05432415e+00 -2.47175038e-01 5.52850701e-02 -2.27834955e-01\\n3.77492189e-01 -2.53612757e-01 1.17268167e-01 2.82918308e-02\\n-4.61560547e-01 1.34097055e-01 -4.38342467e-02 -8.94619226e-02\\n2.06331909e-01 1.52879611e-01 1.25963196e-01 1.45902306e-01\\n2.03863084e-02 -2.35907033e-01 2.40214355e-02 3.73251021e-01\\n-1.31283209e-01 -6.99433446e-01 2.30796337e-01 1.09518990e-02\\n2.59216726e-01 2.37477928e-01 -5.91582656e-01 -4.81126606e-02\\n-2.64471263e-01 -2.47499496e-01 1.01105012e-01 -2.92708308e-01\\n-1.52469844e-01 2.34721750e-01 2.34890997e-01 -9.73203182e-02\\n4.88628894e-02 -4.27352488e-01 -1.34496212e-01 -4.66077954e-01\\n1.79880589e-01 -7.87260652e-01 1.50660295e-02 -5.96798584e-02\\n6.47072315e-01 -2.11035937e-01 7.33514801e-02 1.08368084e-01\\n1.49367884e-01 1.55379802e-01 1.87394187e-01 4.70388532e-02\\n-2.93936372e-01 -2.71456659e-01 -4.94870022e-02 -1.80771366e-01\\n4.53548431e-01 4.45369363e-01 -2.40923464e-01 -1.34767517e-02\\n3.70594189e-02 -2.00335830e-01 -6.43863559e-01 -2.02807933e-01\\n-1.23539269e-01 -6.67786300e-02 -6.79483533e-01 -3.58735472e-01\\n-2.19045505e-01 -1.45952150e-01 -1.46569815e-02 6.15537465e-01\\n-3.48911196e-01 -3.35577130e-01 -5.46068773e-02 -6.07149839e-01\\n3.29453588e-01 -1.24562748e-01 -8.70473683e-03 -2.61351585e-01\\n-2.21393973e-01 -2.73619324e-01 1.35207146e-01 1.30115692e-02\\n-7.73050077e-03 -2.94414103e-01 2.72318460e-02 -2.01653138e-01\\n-3.44254613e-01 -5.95703423e-01 4.04787391e-01 1.75976694e-01\\n4.80892420e-01 1.30705416e-01 2.73006618e-01 -4.89520542e-02\\n2.76696801e-01 1.03536181e-01 2.32754163e-02 -4.81830835e-01\\n1.57766137e-02 5.88140637e-02 5.99879384e-01 -2.52358407e-01\\n-4.29520160e-02 -5.48180267e-02 -3.77218783e-01 -8.75121653e-02\\n3.14200521e-01 -1.67970031e-01 1.49244294e-01 -1.78529218e-01\\n2.16544390e-01 -2.99259752e-01 -1.41383275e-01 6.15706965e-02\\n7.34815001e-02 7.03947127e-01 -4.29884121e-02 -3.96385312e-01\\n-1.24017030e-01 5.36005080e-01 -3.76713611e-02 -1.89417601e-02\\n-1.81841284e-01 6.42269477e-02 -3.07847381e-01 3.53685558e-01\\n3.57882828e-02 -9.97645706e-02 -2.46962011e-01 -1.04008161e-01\\n-2.00272858e-01 3.01968783e-01 2.38865972e-01 2.00720623e-01\\n-1.81205310e-02 -3.58551085e-01 -1.51374504e-01 2.64122427e-01\\n1.83315873e-01 4.08937752e-01 2.23230869e-01 -2.08229631e-01\\n9.00992565e-03 2.98316270e-01 -9.84220654e-02 2.84117669e-01\\n-1.24116063e-01 2.50775576e-01 -5.77524364e-01 -2.26405069e-01\\n-2.79812992e-01 -2.81492829e-01 2.09600627e-01 3.59326929e-01\\n2.57427990e-01 -1.04996741e-01 -3.41524445e-02 -5.40265203e-01\\n2.01001272e-01 8.43514800e-02 1.67679042e-01 6.96230531e-02\\n6.64825886e-02 6.20321631e-01 -4.25532088e-03 -1.54301718e-01\\n-2.98099741e-02 5.46312034e-02 -1.25024289e-01 -8.52171183e-02\\n1.97442826e-02 -5.10105968e-01 -1.82496816e-01 4.24987525e-01\\n1.36418283e-01 -1.68541238e-01 -1.99241474e-01 3.47902566e-01\\n1.55603532e-02 -2.35988528e-01 -3.30263436e-01 8.61595385e-03\\n4.40368831e-01 1.14850968e-01 3.01565289e-01 -6.38768554e-01\\n-1.81759242e-02 -4.07677740e-02 1.09443665e-01 3.95688474e-01\\n6.63183406e-02 -7.02548772e-04 -2.40801483e-01 -1.70762584e-01\\n3.43879640e-01 -9.45673212e-02 -3.16042379e-02 5.47040254e-02\\n1.10958137e-01 -1.97015524e-01 -3.66111547e-01 6.79327697e-02\\n1.44685451e-02 -2.40357772e-01 -1.30340569e-02 2.10021287e-01\\n1.03559315e-01 1.30700931e-01 -5.57247877e-01 -1.24307737e-01\\n-1.46306559e-01 2.24174321e-01 -6.62564114e-02 -5.34228146e-01\\n2.08634567e-02 -8.16479474e-02 -6.27481580e-01 2.53940344e-01\\n-6.26832247e-02 -1.54147536e-01 1.66639626e-01 -7.34204501e-02\\n-3.47485095e-01 -1.07499398e-01 1.27088025e-01 1.64875433e-01\\n-2.24140018e-01 -2.92828679e-01 -8.52679312e-02 -9.98834252e-01\\n1.61549687e-01 -6.22524507e-02 -1.03856340e-01 2.35304683e-01\\n7.15738237e-02 -6.71869397e-01 2.24896505e-01 -3.41781080e-01\\n-1.85046613e-01 -4.84870449e-02 -2.47522876e-01 -3.52721840e-01\\n8.70035142e-02 1.01530962e-02 -1.67791694e-01 2.78187692e-01\\n-2.55334944e-01 4.73080397e-01 -1.16868265e-01 5.80164902e-02\\n5.94448075e-02 -2.94115335e-01 1.95320338e-01 -2.80452460e-01\\n-5.00358820e-01 -1.41624987e-01 -4.02969241e-01 -2.75825560e-01\\n-1.25201538e-01 -2.63486445e-01 -1.18998230e-01 9.71369967e-02\\n3.90923709e-01 -8.01141001e-03 -2.27863804e-01 -1.18037961e-01\\n1.22868650e-01 -4.72276628e-01 6.44065142e-02 -5.86490259e-02\\n6.40667975e-02 -1.07901827e-01 3.12192082e-01 1.06208593e-01\\n1.87864840e-01 -3.72850478e-01 4.30174798e-01 -3.68719012e-01\\n-3.95097286e-01 -1.34036019e-01 5.21657765e-02 -1.27120689e-02\\n4.62632090e-01 -4.89726245e-01 -1.92438483e-01 2.91215986e-01\\n4.97106649e-02 5.16386963e-02 2.45956913e-01 -3.00750196e-01\\n-1.33681566e-01 2.08136052e-01 -4.81870770e-01 1.46243244e-01\\n7.36215353e-01 1.17799714e-01 1.85424075e-01 1.53745860e-01\\n1.05588660e-01 1.81233451e-01 5.41279912e-01 -1.00047126e-01\\n-1.53822467e-01 3.76902461e-01 1.02789871e-01 -5.83520770e-01\\n-2.19591543e-01 -8.88781622e-02 -2.07525596e-01 -5.31996012e-01\\n6.70110047e-01 3.42069000e-01 -3.68149310e-01 -1.37957528e-01\\n-2.85643458e-01 -1.78617150e-01 1.69482529e-01 -7.79995769e-02\\n6.32206947e-02 1.73296724e-02 4.28825736e-01 -9.10877436e-02\\n3.78224224e-01 5.39284587e-01 -1.18567228e-01 -3.45023006e-01\\n-8.49296898e-03 2.36933216e-01 4.98025231e-02 3.67129803e-01\\n-9.56572071e-02 3.15325588e-01 -7.26283118e-02 1.76652014e-01\\n-2.04078645e-01 -2.29342114e-02 1.27721339e-01 4.82517369e-02\\n1.11746714e-01 1.26809284e-01 5.67301214e-01 3.77317607e-01\\n3.69036525e-01 3.64863962e-01 3.62920642e-01 2.13109478e-02\\n6.41618848e-01 5.60789168e-01 3.06158721e-01 5.74386567e-02\\n5.98285720e-03 1.43182710e-01 9.94853526e-02 7.05905259e-02\\n3.88389528e-01 3.75024140e-01 7.89907351e-02 8.80754530e-01\\n2.03281358e-01 3.54392767e-01 7.64046788e-01 -5.08702040e-01\\n-2.37442940e-01 5.78153059e-02 4.53920066e-01 -4.18236315e-01\\n1.46451816e-02 1.54308513e-01 -1.66453674e-01 1.74687192e-01\\n-4.32583988e-01 -2.73530126e-01 -4.54448722e-02 1.63447604e-01\\n1.10739008e-01 -1.68307006e-01 -8.80681574e-02 1.73683375e-01\\n-2.05804944e-01 -2.21955836e-01 -4.44325268e-01 -1.61756992e-01\\n-1.70715705e-01 -1.01643704e-01 -9.78280455e-02 -1.24371216e-01\\n-2.97053576e-01 -2.91949153e-01 -4.74195257e-02 -4.72845361e-02\\n3.47535044e-01 -1.54852197e-01 -5.99856228e-02 -1.38944760e-01\\n4.86571610e-01 1.52548760e-01 4.97602046e-01 -6.16845712e-02\\n1.50039569e-01 -3.05339038e-01 -1.92212015e-01 1.41560704e-01\\n1.98608413e-01 5.95956109e-03 -2.04618126e-02 3.66302967e-01\\n-2.24097788e-01 -1.07699960e-01 3.79665568e-02 3.40706855e-01\\n-3.43427092e-01 -6.89847469e-02 -1.09495625e-01 5.90764023e-02\\n-1.95106119e-03 1.25781789e-01 -2.18631774e-01 2.25808974e-02\\n-1.31311983e-01 -3.88595939e-01 2.35820234e-01 -1.12303726e-01\\n-2.89228737e-01 -2.37815902e-02 3.13339174e-01 3.05543602e-01\\n-1.81422740e-01 8.48787278e-03 -2.04124957e-01 1.62539214e-01\\n1.13118701e-01 2.36490965e-01 -1.83568254e-01 -3.13529670e-01\\n-2.87322700e-01 1.42046392e-01 -1.52944729e-01 9.69607458e-02\\n8.79425853e-02 4.77454960e-01 5.50093278e-02 7.58895352e-02\\n5.18808842e-01 -2.17739552e-01 -2.67346710e-01 -4.30566519e-01\\n-1.45898923e-01 -2.89213628e-01 -1.66083410e-01 -1.13029540e-01\\n2.25474715e-01 -2.85954416e-01 -5.95154688e-02 -3.37856412e-01\\n-1.27866745e-01 -3.71786416e-01 -6.93245605e-03 -6.75079301e-02]]',\n", + " 'job_description': \"PDS Life sciences is a leading global provider of software solutions and services dedicated to life science and pharmaceutical preclinical research. Our unique products and outsourced services accelerate the development and regulatory submission of biopharma products. For more than 30 years, we have developed software by scientists, for scientists - a hallmark that is unrivaled in our field. For that reason, eight of the world’s top 10 pharma companies have relied on PDS software, as do industry-leading CROs, chemical companies, universities and regulatory agencies. Over the past several years, PDS has undergone many changes and is now competing in new fast-growth segments of our markets. We are still nimble with a rewarding start-up culture that allows you to make an immediate impact on the business. With business offices in New Jersey, Switzerland and Tokyo, we think globally, but act locally and now we have an exciting opportunity for a Product Specialist located in our Pratteln Basel office. PDS Life Sciences is searching for a motivated person to join a global leader in Preclinical LIMS Software Solutions as a Preclinical Product Specialist. Are you looking for an exciting new opportunity to become a key subject matter expert in the development of preclinical software? Join our team of scientists and software development experts in this unique opportunity. PDS prides itself on its reputation to create solutions For Scientists By Scientists. Job Description: Responsible for a full range of activities which ensure operational effectiveness and excellence in product implementation and optimization with customers.Responsible for creating/maintaining training materialsResponsible for providing first level support to existing customers as requiredResponsible for providing consulting services to customers as requiredAssists the Validation team during the customer’s OQ ProcessAssists with internal acceptance testing (OQ) Assisting with writing Test Scripts Assists with functional specifications development Assists with writing user stories and test specifications Assisting with updates to user manuals and release notes Provides suggestions for product improvement Some domestic travel and infrequent international travel needed Duties as directed by manager(s) Requirements: Degree in life sciences, Biology, Toxicology, Pathology, Animal Science or other related field 1-3 years’ laboratory experience in a preclinical research facility (CRO, pharmaceutical industry)Knowledge of Laboratory Information Management System(s) (LIMS) a plusGxP knowledge a plusHigh level of communication, organization and intercultural skillsGood knowledge of IT technology and IT methodologyMust be fluent in EnglishExcellent writing skillsStrong attention to detailAbility to work in a team and independentlyCustomer service orientation skills a plusAble to travel (approximately 10%... domestic and international) Job Type: Full-time Salary: CHF70,000.00 to CHF80,000.00 /year Experience: Biological Lab: 1 year (Preferred) Education: Bachelor's (Preferred) \",\n", + " 'soft_skills': '[\"Research\", \"Writing\", \"Service-Orientation\", \"Management\", \"Operations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"User Story\", \"Life Sciences\", \"PD 5500 Standard\", \"Outsourcing\", \"Animal Science\", \"Industrialization\", \"Activism\", \"Maintainability\", \"Levelling\", \"Business Office Procedures\", \"Toxicology\", \"Productivity Improvement\", \"Localization\", \"Functional Specification\", \"Patentable Subject Matter\", \"Release Notes\", \"Biology\", \"Management Systems\", \"Personalization\", \"Information Management\", \"Laboratory Information Management Systems\", \"Validations\", \"Pharmaceuticals\", \"Pathology\", \"Software Development\", \"Community Organizing\", \"Test Script\", \"Job Descriptions\", \"Acceptance and Commitment Therapy (ACT)\", \"Acceptance Testing\"]',\n", + " 'languages': \"['English', 'Dutch', 'Luba-Katanga']\"},\n", + " {'company_id': '51',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Publishing',\n", + " 'website': 'www.frontiersin.org',\n", + " 'jobdescription_embedded': '[[-3.23620260e-01 1.65432483e-01 5.47806978e-01 -9.65909287e-03\\n5.04691005e-01 -1.45443231e-01 -1.68182068e-02 3.73564124e-01\\n-1.41375095e-01 -2.55717307e-01 -1.63371891e-01 -3.02160978e-01\\n-3.07451673e-02 1.00709498e-01 7.07954466e-02 3.89789879e-01\\n2.98010319e-01 7.77123943e-02 -1.99934587e-01 3.57004225e-01\\n2.15718716e-01 1.70266069e-02 4.30273786e-02 7.14776516e-01\\n4.52711970e-01 -2.04108581e-02 -9.44484323e-02 -1.08742341e-03\\n-2.32649595e-01 -2.60220081e-01 3.91138554e-01 6.62056878e-02\\n-4.85408343e-02 -2.89379120e-01 1.45596102e-01 3.25471908e-02\\n-2.81610548e-01 -9.93527398e-02 -5.85513674e-02 1.15260646e-01\\n-3.89131010e-01 -1.89934582e-01 -1.30890161e-01 5.77544682e-02\\n-2.29421124e-01 -3.14038038e-01 -1.00636892e-02 3.17899249e-02\\n7.32482225e-02 2.48574093e-02 -5.81554472e-01 3.34173322e-01\\n-1.95960939e-01 -3.63358319e-01 2.90703595e-01 6.10002398e-01\\n-9.26823169e-03 -4.20875132e-01 -3.95973414e-01 -3.41955006e-01\\n5.40865362e-02 -4.61537801e-02 9.87069756e-02 -2.61458337e-01\\n3.47255349e-01 -1.58766359e-02 -4.24101837e-02 3.69343579e-01\\n-7.52086937e-01 -1.23136498e-01 -1.59443542e-01 -4.50584218e-02\\n-3.62983227e-01 -4.35134433e-02 -2.62905478e-01 -1.15757331e-01\\n-4.09901068e-02 3.70094001e-01 7.49101490e-02 7.64602348e-02\\n-1.53311819e-01 2.60333002e-01 -1.41948298e-01 3.52964729e-01\\n2.48547167e-01 2.87942410e-01 1.60191029e-01 3.21800560e-01\\n-2.95165956e-01 3.67222488e-01 1.03354774e-01 -3.09045851e-01\\n3.03145021e-01 2.54780166e-02 4.78841871e-01 -4.43191603e-02\\n5.89889586e-02 9.58938301e-02 -2.81749189e-01 2.38329083e-01\\n1.68482825e-01 -2.65582353e-01 -8.22274238e-02 -1.49876224e-02\\n-1.50991455e-01 4.43655327e-02 -2.63195671e-03 1.12853512e-01\\n-2.91430414e-01 3.52151752e-01 1.50968745e-01 -1.96673810e-01\\n-7.41392672e-02 -5.65136611e-01 -1.05935276e-01 3.96694914e-02\\n1.20681226e-01 3.01773220e-01 1.32640362e-01 2.21806511e-01\\n1.37880832e-01 -3.48036662e-02 2.37931564e-01 8.56292009e-01\\n2.93570571e-02 6.53645396e-02 -2.25084320e-01 3.63558412e-01\\n1.09175593e-01 -3.85137737e-01 2.54658312e-01 1.23366833e-01\\n2.32598558e-03 -1.46580011e-01 -1.52304113e-01 3.13179225e-01\\n-1.18868135e-01 -2.82121181e-01 -3.27698112e-01 1.47605032e-01\\n-6.81117103e-02 -3.70158851e-01 5.29176652e-01 1.82845294e-02\\n1.76340371e-01 -1.22635946e-01 -6.16876036e-03 -1.58654988e-01\\n-1.32940367e-01 1.99952528e-01 4.54030260e-02 1.69180214e-01\\n-3.41237843e-01 -2.72817850e-01 -1.95173651e-01 2.93573141e-01\\n-3.71046275e-01 1.62922591e-01 -4.96223383e-02 -1.58326417e-01\\n2.79333711e-01 -2.03351248e-02 -3.47462416e-01 2.22208947e-01\\n-1.36852175e-01 -9.27618369e-02 -6.38279319e-02 3.59472275e-01\\n-1.99447125e-01 1.77148879e-01 4.24892968e-03 -1.05568759e-01\\n5.87178290e-01 1.40826046e-01 1.81951404e-01 1.85155850e-02\\n2.76644528e-01 -2.43610218e-02 1.97085261e-01 2.08757252e-01\\n-7.59136677e-01 2.15457231e-01 -1.08531356e-01 -1.84313685e-01\\n5.95834292e-02 -5.55676669e-02 2.91484594e-01 -3.21903884e-01\\n3.24487872e-02 -1.08091742e-01 -3.61806333e-01 -2.40661040e-01\\n-2.61542976e-01 1.81745868e-02 4.38810766e-01 -3.92342150e-01\\n-3.19991335e-02 1.84231162e-01 -4.70170736e-01 -9.95009392e-02\\n5.63114621e-02 1.59401149e-01 1.12422839e-01 2.14885727e-01\\n-1.94653541e-01 -5.30927122e-01 -2.43488438e-02 -3.52199763e-01\\n-4.33190435e-01 7.52772093e-02 -3.96642089e-01 2.91794896e-01\\n2.23210171e-01 6.18438236e-02 -6.18833564e-02 8.95115808e-02\\n-2.41694093e-01 -4.79392968e-02 1.16851941e-01 7.35366717e-03\\n2.67348021e-01 5.27810752e-02 -3.49978626e-01 4.41888094e-01\\n-1.77379161e-01 5.59392571e-01 2.06028372e-01 -8.24701130e-01\\n5.40869832e-01 3.12987328e-01 -3.39220762e-02 -4.07472193e-01\\n6.51117027e-01 -3.14576924e-01 -4.27126288e-02 1.10485256e-01\\n-3.41662019e-01 -3.52510303e-01 3.13591927e-01 -2.83939779e-01\\n-1.98362321e-01 5.65555930e-01 2.03474224e-01 8.24658275e-02\\n3.12163711e-01 -1.33935273e-01 -1.00574270e-01 1.66883096e-01\\n-1.03483379e-01 -3.25571597e-01 -3.55585843e-01 2.20346414e-02\\n-1.27732545e-01 -3.97267580e-01 -1.60839900e-01 -4.21703756e-01\\n-1.15043268e-01 -4.06756043e-01 -7.73856789e-02 3.30611467e-01\\n2.19520569e-01 6.77385852e-02 2.23435462e-04 -9.29842703e-03\\n-8.30927193e-02 -5.18940091e-01 -8.29912797e-02 -4.73280512e-02\\n4.13527489e-01 1.73696131e-01 8.66399705e-02 -2.73247808e-02\\n-9.62332636e-03 6.14185333e-01 -3.32279563e-01 -2.53139704e-01\\n1.73606724e-01 1.17107414e-01 -4.06417623e-03 -1.54564604e-01\\n1.08964033e-02 2.80226052e-01 -2.24829555e-01 7.51984715e-02\\n-1.71627164e-01 1.03015732e-02 2.86375374e-01 8.56194049e-02\\n-2.02701032e-01 -1.79032832e-01 6.79061487e-02 3.15019429e-01\\n-4.58204627e-01 -1.99522644e-01 5.48496723e-01 2.24034607e-01\\n1.19595662e-01 1.05544880e-01 1.62443548e-01 -6.61340579e-02\\n-1.50072068e-01 -2.09361345e-01 2.30658501e-01 9.92927402e-02\\n2.02541411e-01 8.80833492e-02 -5.60785718e-02 -6.23536825e-01\\n-3.16979003e+00 -1.86775967e-01 3.27786654e-02 -1.95791587e-01\\n1.59112796e-01 -1.34312049e-01 5.60030565e-02 -7.23799467e-02\\n-3.76877785e-01 1.02252819e-01 -2.48728991e-01 -1.07845411e-01\\n1.03419885e-01 2.99970329e-01 2.71668851e-01 2.44458169e-01\\n8.91170353e-02 -2.24427491e-01 1.34254806e-02 3.42730939e-01\\n-2.08115786e-01 -5.85654438e-01 1.49542376e-01 1.23668276e-02\\n2.77389765e-01 1.73639148e-01 -2.91748732e-01 -1.50888592e-01\\n-3.11033368e-01 -2.17754006e-01 7.77131924e-03 -2.67796427e-01\\n-1.24385461e-01 2.85731196e-01 2.01798335e-01 -2.31783129e-02\\n6.69709593e-02 -4.03130054e-01 -7.37714395e-02 -3.62459302e-01\\n1.26456887e-01 -5.74353218e-01 -1.72074400e-02 -1.02758668e-01\\n6.97864830e-01 -2.90143967e-01 2.23118752e-01 1.38400659e-01\\n1.14546739e-01 1.45780265e-01 2.23210156e-02 1.90953426e-02\\n-2.73965061e-01 -2.05903128e-01 -1.47767723e-01 -2.31625095e-01\\n5.44678986e-01 4.05652583e-01 -1.63281500e-01 -3.38711776e-03\\n7.64856040e-02 -2.34418094e-01 -3.78105998e-01 -4.55883026e-01\\n-2.23505586e-01 -1.69414908e-01 -7.09790826e-01 -4.93211120e-01\\n-1.01940088e-01 -1.16907962e-01 -9.27609354e-02 4.96109903e-01\\n-2.61199892e-01 -3.33940059e-01 -7.98101351e-02 -4.91935790e-01\\n2.50751138e-01 -1.07392155e-01 4.39548269e-02 -1.50725722e-01\\n-2.48350620e-01 -5.00371099e-01 7.17161447e-02 3.97429839e-02\\n-1.67816907e-01 -3.53487462e-01 2.36469228e-02 -2.57019192e-01\\n-3.42294991e-01 -5.64785004e-01 4.17617738e-01 8.16207826e-02\\n3.14737797e-01 1.33658588e-01 2.77174681e-01 5.47087267e-02\\n2.22186863e-01 -3.56181674e-02 1.21544421e-01 -4.62775767e-01\\n4.07396629e-02 3.81776206e-02 4.66597527e-01 -2.73326010e-01\\n8.92255753e-02 1.10370018e-01 -2.70808786e-01 -1.05110034e-01\\n3.77222836e-01 -1.94731969e-02 2.39385627e-02 -1.38955191e-01\\n3.29614878e-01 -3.33715379e-01 -1.48851782e-01 1.59556806e-01\\n1.64208878e-02 6.29700541e-01 -5.61287999e-02 -3.50058258e-01\\n-2.68224478e-01 4.50883329e-01 -1.00336425e-01 -4.40170243e-02\\n-8.05671811e-02 1.38604850e-01 -2.00660139e-01 9.08940509e-02\\n1.01137301e-02 -2.33601272e-01 -3.21560681e-01 -1.43357188e-01\\n-1.45922512e-01 2.38126561e-01 2.48324037e-01 7.92580843e-02\\n-1.15023106e-01 -4.05751795e-01 -7.42079020e-02 2.24842682e-01\\n2.28087932e-01 3.55925918e-01 2.09924355e-01 -1.98415399e-01\\n-1.05614364e-02 3.22105259e-01 -4.94190343e-02 2.99835086e-01\\n-2.48321414e-01 1.32740393e-01 -5.27489841e-01 -2.69231886e-01\\n-1.85111701e-01 -3.44432294e-01 2.31833458e-01 2.63935804e-01\\n1.10579006e-01 4.91882376e-02 6.23443387e-02 -4.81034815e-01\\n3.15678120e-01 2.88462695e-02 2.64380097e-01 6.44250065e-02\\n2.05427799e-02 5.65230787e-01 -7.78614506e-02 -3.14238369e-02\\n-1.72415018e-01 -4.03944999e-02 -1.51559934e-01 -1.63338393e-01\\n2.08600089e-02 -4.38177109e-01 -1.51188016e-01 3.59754860e-01\\n1.01780027e-01 -2.78949738e-01 -2.53652662e-01 2.68811464e-01\\n3.65119725e-02 -3.48602325e-01 -1.62747353e-01 8.90160352e-02\\n3.56554210e-01 1.62038684e-01 3.01494122e-01 -4.84773219e-01\\n6.85238242e-02 -6.25320151e-03 -7.91508257e-02 5.12995362e-01\\n6.39363676e-02 -4.30298299e-02 -1.91633880e-01 -2.03577459e-01\\n3.82396996e-01 -6.47144243e-02 -6.45050704e-02 -1.96774676e-02\\n7.36241043e-02 -2.87759721e-01 -4.20034260e-01 3.51770334e-02\\n1.99882556e-02 -2.94351697e-01 8.98229033e-02 4.82170619e-02\\n-1.59686320e-02 1.40773281e-01 -5.86805582e-01 -2.72610754e-01\\n-2.28592545e-01 -5.70670441e-02 4.86582816e-02 -4.17476356e-01\\n-4.54618596e-02 -9.49505195e-02 -5.97147703e-01 2.08436444e-01\\n-1.69567138e-01 -5.27002029e-02 1.33236900e-01 -4.33763936e-02\\n-3.48582953e-01 -4.62219752e-02 2.54445285e-01 2.16704980e-01\\n-2.44743451e-01 -2.42058292e-01 1.46664798e-01 -1.01773190e+00\\n9.09140110e-02 4.72458079e-03 -8.56475532e-02 1.47448480e-01\\n-5.55325150e-02 -6.62070334e-01 9.24239159e-02 -4.22755748e-01\\n-4.88925353e-02 -4.46581542e-02 -2.82679111e-01 -3.84262949e-01\\n1.18092313e-01 1.21551203e-02 -2.58042753e-01 4.26241398e-01\\n-3.45735073e-01 2.46939600e-01 -1.81680307e-01 6.53380826e-02\\n8.45739245e-03 -2.34786540e-01 8.29503685e-02 -2.74647266e-01\\n-3.75164598e-01 -1.10909812e-01 -2.79862106e-01 -1.91920131e-01\\n-9.69739817e-03 -1.66262656e-01 -1.92562908e-01 6.84735999e-02\\n3.46227348e-01 8.26583058e-02 -6.86542392e-02 -2.63727039e-01\\n4.00895029e-02 -3.58503640e-01 7.16762617e-02 -1.71385556e-01\\n-5.71516566e-02 -5.93046844e-02 1.63507596e-01 1.14501871e-01\\n1.63626790e-01 -3.44101429e-01 3.69428158e-01 -3.32228243e-01\\n-3.41807604e-01 -4.70149145e-02 1.24053106e-01 1.73103996e-02\\n3.66282463e-01 -4.41138268e-01 1.14867128e-02 4.13039237e-01\\n1.16150424e-01 1.06417485e-01 3.77014160e-01 -1.29735276e-01\\n-1.78737327e-01 2.60883749e-01 -4.02148306e-01 -4.70731333e-02\\n7.59097099e-01 1.21579580e-01 1.41547620e-02 1.78122506e-01\\n9.43285972e-02 2.64794469e-01 5.11714339e-01 -8.38906690e-02\\n-9.95272025e-02 2.88725525e-01 1.03639916e-01 -5.53333580e-01\\n-1.25835225e-01 -5.79989105e-02 -1.42845571e-01 -3.06955844e-01\\n6.47354007e-01 3.50905269e-01 -3.84233594e-01 -2.29736000e-01\\n-6.76969066e-02 -1.39093533e-01 2.47056156e-01 -6.59322143e-02\\n4.31413651e-02 -8.25019926e-03 4.83063161e-01 -1.31079063e-01\\n1.61263391e-01 4.95075524e-01 -1.47687972e-01 -2.07649529e-01\\n-6.84743375e-02 1.10798985e-01 4.16051187e-02 4.27471995e-01\\n-1.97387636e-01 3.78600478e-01 3.55290212e-02 2.99282577e-02\\n-2.44724900e-02 9.79919434e-02 1.48927033e-01 6.68599308e-02\\n2.78640658e-01 1.18765578e-01 3.35627645e-01 4.37491685e-01\\n2.62404740e-01 4.69391942e-01 2.79026598e-01 7.93944374e-02\\n4.31390285e-01 5.15699089e-01 4.75666046e-01 1.37933478e-01\\n1.56198721e-03 -8.99512507e-03 1.03070743e-01 -1.07463121e-01\\n3.79752696e-01 2.34324723e-01 1.32710025e-01 8.24950755e-01\\n3.74107659e-01 3.85940552e-01 6.63528323e-01 -6.60792887e-01\\n-3.61078799e-01 9.60889459e-02 5.44209838e-01 -3.67819369e-01\\n-2.31635757e-03 2.98896432e-01 -1.92460984e-01 2.55515188e-01\\n-4.86708462e-01 -2.34412253e-01 -8.72043669e-02 -4.91743758e-02\\n-7.85126090e-02 -1.37448713e-01 -2.38438129e-01 1.44272596e-01\\n-8.27772766e-02 -1.57265827e-01 -5.26360512e-01 -1.30208641e-01\\n-1.85009658e-01 -1.06008559e-01 -1.01573907e-01 -1.02737948e-01\\n-2.55844206e-01 -2.90049255e-01 -1.27558947e-01 -2.42334288e-02\\n2.19865948e-01 -2.26348996e-01 -6.82573169e-02 -2.01967090e-01\\n3.08085918e-01 1.86506599e-01 5.08746564e-01 -1.78434774e-02\\n1.28120676e-01 -2.96473026e-01 -2.03225017e-01 7.84814656e-02\\n2.32179135e-01 8.51059109e-02 4.56133112e-02 3.44617993e-01\\n-1.99825615e-01 -1.26985595e-01 1.62222400e-01 3.74641240e-01\\n-4.23205227e-01 1.84925385e-02 -7.16514513e-03 1.56717062e-01\\n2.43495256e-02 2.22087264e-01 -2.51316786e-01 3.46892476e-02\\n-1.84435457e-01 -5.49358368e-01 2.81348139e-01 -9.92960781e-02\\n-1.12073302e-01 1.65197462e-01 2.24849612e-01 1.85496926e-01\\n-2.19552204e-01 -7.77656883e-02 -8.10285583e-02 2.21970424e-01\\n4.88741249e-02 2.54761010e-01 -1.95738494e-01 -2.89558232e-01\\n-2.18244046e-01 2.14415789e-01 -2.03575104e-01 2.08239257e-01\\n-5.54334521e-02 3.71965170e-01 5.47456518e-02 1.24660820e-01\\n3.69822264e-01 7.83464909e-02 -1.84343308e-01 -1.90978542e-01\\n-2.50606656e-01 -3.30570877e-01 1.16118919e-02 3.65510583e-02\\n1.78353846e-01 -3.13494980e-01 1.52242184e-02 -2.52051294e-01\\n-1.78945258e-01 -3.51709485e-01 3.80060077e-03 7.93921202e-03]]',\n", + " 'job_description': \"Frontiers is a fast-growing open-access academic publisher with headquarters in Lausanne Switzerland, employing over 500 people. In the last 3 years, Frontiers has massively invested in data acquisition and modeling, leading to the deployment of sophisticated data products to further accelerate its business. We are looking for a Data Scientist to join our data science team in Lausanne. Your main focus will be developing state-of-the-art machine learning algorithms for a variety of applications (e.g. computer vision, NLP, recommendations systems) to improve our editorial workflow. You will contribute to the “full-stack” of data science, from experimentation to deployment in production. You will work together with product owners, machine-learning engineers and data engineers in order to build machine learning products that can advance Frontiers’ business. We are a diverse team of people from over 30 different countries with offices in Lausanne, Madrid, London, Seattle and Beijing. We are smart, hungry, and fast moving; operating in small teams, with freedom for independent work and fast decision making. Responsibilities Development, optimization and evaluation of machine learning models and pipelines Technological review of data science solutions and communication to management Proactive identification of opportunities for potential products within Frontiers Requirements Degree in Computer Science, Statistics or similar Demonstrable experience in data modeling and machine learning prototype development Proficiency in Python, including its scientific/statistical/NLP/Computer vision packages (e.g. NumPy, SciPy, scikit-learn, spaCy, OpenCV) Experience with SQL Experience with deep learning frameworks (e.g. PyTorch, Keras, Tensorflow) Willingness to share and adopt best work practices on a common codebase Fluency in English and strong communication skills Familiarity with big data platforms (e.g. Spark, Azure Databricks) is a plus Familiarity with deployment tools (e.g. Docker, Flask) is a plus Expertise in the field of scientometrics is a plus Benefits: 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Proactivity\", \"Management\", \"Communications\", \"Operations\", \"Decision Making\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Codebase\", \"Computer Science\", \"Data Modeling\", \"Statistics\", \"OpenCV\", \"Machine Learning\", \"Open Access\", \"Scikit-learn (Machine Learning Library)\", \"Recommender Systems\", \"Data Engineering\", \"Prototype (Manufacturing)\", \"NumPy\", \"Scheme (Programming Language)\", \"Activism\", \"Computer Vision\", \"Python (Programming Language)\", \"Yoga\", \"E (Programming Language)\", \"Experimentation\", \"Flask (Web Framework)\", \"Keras (Neural Network Library)\", \"Pipelining\", \"Investments\", \"Machine Learning Methods\", \"Professional Development Programs\", \"Data Science\", \"SpaCy (NLP Software)\", \"Docker (Software)\", \"Machine Learning Algorithms\", \"TensorFlow\", \"Deep Learning\", \"Big Data\", \"Data Acquisition\", \"Azure Databricks\", \"E-Tools\", \"Data Management Platforms\", \"SciPy\", \"PyTorch (Machine Learning Library)\", \"Workflows\", \"SQL (Programming Language)\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Marshallese', 'Flemish', 'Malay']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software back-end engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.71552032e-01 2.91270584e-01 3.82932365e-01 -6.69109868e-03\\n3.55228841e-01 -2.36295044e-01 2.26878119e-03 3.73446047e-01\\n-7.57382885e-02 -2.04707831e-01 -3.22159790e-02 -2.29785040e-01\\n-3.30118656e-01 -6.83388487e-02 1.30850390e-01 4.15461659e-01\\n2.63428152e-01 1.37489960e-01 -2.57047325e-01 3.84930313e-01\\n2.22024724e-01 -7.94562511e-03 -2.06433833e-01 6.13091886e-01\\n4.15168166e-01 6.67720009e-03 -1.12058461e-01 7.38009950e-03\\n-3.43387604e-01 -2.87937373e-01 3.34174991e-01 7.63941417e-03\\n-1.57293066e-01 -3.32568496e-01 5.75951636e-02 9.28215086e-02\\n-1.49799198e-01 8.00929070e-02 1.27713457e-01 1.74960107e-01\\n-3.93162608e-01 -3.42083246e-01 1.08727805e-01 8.67118537e-02\\n-1.47588775e-01 -1.52126253e-01 2.10592359e-01 9.10648331e-02\\n-2.10765786e-02 -3.92282307e-02 -6.59780800e-01 3.43442112e-01\\n-8.31183717e-02 -2.07812771e-01 2.16222495e-01 4.91686881e-01\\n4.11508940e-02 -5.77887833e-01 -3.88974547e-01 -2.97275513e-01\\n2.31454279e-02 -1.32889286e-01 3.95712890e-02 -1.05743386e-01\\n3.91338438e-01 -1.82317849e-02 -4.78573702e-02 4.16116089e-01\\n-8.47215474e-01 -6.76593408e-02 -1.85629666e-01 -4.92557592e-04\\n-4.70055312e-01 5.79526927e-03 -2.32034683e-01 -1.14024647e-01\\n-3.29488441e-02 3.36776853e-01 -1.81190353e-02 2.23107822e-02\\n-1.55476764e-01 3.64888161e-01 -2.63778642e-02 2.41699785e-01\\n4.27926391e-01 1.31522655e-01 2.00191230e-01 2.82205403e-01\\n-3.44663799e-01 3.55268836e-01 1.06206812e-01 -2.61881053e-01\\n2.20112368e-01 6.26756251e-02 5.29973447e-01 6.86371550e-02\\n-5.19335903e-02 2.03620479e-01 -2.35724568e-01 2.06270605e-01\\n4.91508283e-02 -4.36996609e-01 1.66943334e-02 4.89583462e-02\\n-2.12178469e-01 5.97290578e-04 -6.27001747e-02 2.48238236e-01\\n-2.20404372e-01 4.37218487e-01 3.19672555e-01 -1.38408870e-01\\n-3.07972301e-02 -5.30560970e-01 -1.10544503e-01 -5.11436462e-02\\n-1.35645494e-01 1.19996652e-01 2.81457543e-01 4.55717333e-02\\n2.29059979e-01 6.89450949e-02 1.90196216e-01 8.30775797e-01\\n-4.81531629e-03 1.43571213e-01 -1.09598301e-01 3.17951143e-01\\n2.34613374e-01 -2.92001992e-01 2.36804947e-01 3.17300707e-01\\n1.80220842e-01 -1.24423750e-01 -2.22232983e-01 1.42850056e-01\\n-2.20663503e-01 -1.41652822e-01 -3.27037811e-01 2.30795220e-02\\n-2.36305907e-01 -3.40515554e-01 4.23087716e-01 1.79520994e-01\\n3.51594478e-01 5.37443794e-02 9.51535162e-03 -1.89058054e-02\\n-1.16214804e-01 4.00311351e-01 -5.94490506e-02 3.61276656e-01\\n-3.22990745e-01 -1.89081177e-01 -1.81312338e-01 2.26882532e-01\\n-3.92700918e-02 6.78772926e-02 -8.64418522e-02 -1.64703727e-01\\n3.33705008e-01 6.17516739e-03 -3.46669644e-01 3.09836566e-01\\n4.64579090e-03 -2.21798107e-01 -2.48315468e-01 2.84495652e-01\\n1.46735425e-03 1.85809314e-01 4.42082658e-02 -2.35127211e-01\\n5.95170021e-01 2.13921338e-01 1.51697561e-01 -1.10353552e-01\\n3.08895916e-01 -2.26111159e-01 3.89481217e-01 1.00061595e-01\\n-5.22963941e-01 3.20854336e-01 3.63583281e-03 -9.48745906e-02\\n-6.19910732e-02 -6.23289542e-03 3.94909829e-01 -4.06044781e-01\\n5.53050917e-03 -1.39790267e-01 -4.68294382e-01 -2.78005540e-01\\n-4.05888945e-01 8.81420448e-02 4.97142404e-01 -2.70147741e-01\\n-1.03628926e-01 2.27419496e-01 -4.37061489e-01 -1.60997108e-01\\n2.11786717e-01 5.25522418e-02 3.59879546e-02 5.48441522e-02\\n-1.07693158e-01 -5.52978516e-01 -3.83146703e-02 -4.12344992e-01\\n-4.95637387e-01 -3.90525423e-02 -2.60240853e-01 2.45997369e-01\\n6.05285913e-02 4.61989269e-02 -2.68846571e-01 1.62094191e-01\\n-3.56144667e-01 -4.94657271e-02 1.77361831e-01 8.39198604e-02\\n7.48449983e-03 -4.85855900e-02 -3.68663698e-01 3.33473414e-01\\n-3.12864661e-01 6.86015606e-01 1.62761614e-01 -8.00490975e-01\\n5.09792209e-01 2.72990912e-01 9.67471153e-02 -4.08024341e-01\\n3.85270149e-01 -3.59974176e-01 2.11722385e-02 1.32646307e-01\\n-2.51146883e-01 -2.08991200e-01 3.66078168e-01 -2.22752526e-01\\n-2.28856921e-01 5.99907577e-01 1.60703599e-01 -1.00016877e-01\\n2.43155837e-01 -3.12022746e-01 4.54199240e-02 7.11110905e-02\\n-4.94847409e-02 -2.09228575e-01 -3.13219726e-01 9.92925763e-02\\n-5.45884483e-02 -5.07564366e-01 -1.58324882e-01 -2.00389817e-01\\n-2.44116247e-01 -4.81824845e-01 -2.66392827e-01 4.89725292e-01\\n1.97891027e-01 1.73390254e-01 2.32866406e-02 2.11820845e-02\\n-2.95376331e-02 -6.54248714e-01 -3.60433422e-02 -1.55964505e-03\\n5.41053236e-01 2.92158574e-01 9.50837657e-02 -2.00500414e-01\\n5.22423442e-03 5.12299895e-01 -3.55726033e-01 -4.05372113e-01\\n1.20549180e-01 1.05580322e-01 -7.22159371e-02 -2.10635707e-01\\n1.00136381e-02 4.09225345e-01 -1.87066749e-01 1.82405710e-02\\n-2.51781464e-01 -4.46655117e-02 3.96122158e-01 -3.20786759e-02\\n-3.65153044e-01 -1.97646201e-01 2.50058211e-02 3.15762997e-01\\n-4.66854125e-01 -1.97033182e-01 5.36266327e-01 3.61193776e-01\\n2.29305580e-01 8.84390697e-02 1.61574215e-01 -6.51850998e-02\\n-1.32268608e-01 -3.56735647e-01 1.42277256e-01 1.72209576e-01\\n9.17599201e-02 1.47943720e-02 -1.60055235e-01 -6.15658522e-01\\n-3.21531630e+00 -2.12728217e-01 1.22804336e-01 -2.98083454e-01\\n2.13541210e-01 -3.50307524e-02 -9.24410447e-02 -4.93167713e-02\\n-2.67344326e-01 1.39072552e-01 -2.37250715e-01 -1.90550774e-01\\n1.06130071e-01 2.89520502e-01 1.82777897e-01 2.16425985e-01\\n1.48011312e-01 -3.38041574e-01 -1.27020434e-01 4.07761693e-01\\n-3.02785262e-02 -5.47685266e-01 1.55806541e-01 -2.80483644e-02\\n2.99305737e-01 2.25676537e-01 -3.96532953e-01 -1.09443136e-01\\n-1.26231849e-01 -2.47124657e-01 9.73018538e-03 -2.28223816e-01\\n-1.61810681e-01 3.40885431e-01 2.88150832e-03 -8.12282115e-02\\n6.85799941e-02 -3.54570776e-01 -1.27157778e-01 -4.48255777e-01\\n3.03039718e-02 -5.81036568e-01 1.05025560e-01 -2.21932739e-01\\n6.88779414e-01 -2.38863349e-01 1.40365764e-01 1.66100726e-01\\n1.89708382e-01 1.54716283e-01 -1.99603364e-01 3.39167267e-02\\n-3.83035690e-01 -2.34601557e-01 -6.61461800e-02 -1.97902307e-01\\n4.41991895e-01 5.26856661e-01 -1.59432009e-01 -1.15105910e-02\\n6.83370307e-02 -4.25648957e-01 -3.10858637e-01 -4.61101264e-01\\n-1.10442527e-01 -1.97666124e-01 -7.28578150e-01 -4.36597466e-01\\n-1.48746774e-01 -1.11884661e-01 -1.67722151e-01 5.20081401e-01\\n-4.28153574e-01 -3.76730144e-01 1.77470669e-01 -6.19699836e-01\\n2.83889603e-02 -2.09998652e-01 1.58616647e-01 -1.32310525e-01\\n-2.86271602e-01 -5.62087953e-01 1.07411735e-01 -6.34800494e-02\\n-2.95787632e-01 -2.19763026e-01 -2.46233828e-02 -2.41134852e-01\\n-2.13767067e-01 -4.15614277e-01 4.44184095e-01 3.52122486e-02\\n3.48372221e-01 1.15963683e-01 2.33315155e-01 1.90185934e-01\\n3.27564895e-01 -1.04253747e-01 1.51733905e-01 -3.84352356e-01\\n1.77130848e-01 5.07899560e-02 5.77076316e-01 -3.53925884e-01\\n3.07852533e-02 1.02570504e-01 -3.12118649e-01 -6.47103712e-02\\n4.78083432e-01 1.02319084e-01 -7.60655850e-02 -2.71291705e-04\\n3.63896132e-01 -4.82758850e-01 -2.48481452e-01 2.63567328e-01\\n5.22926860e-02 5.45598626e-01 -7.35057378e-03 -4.49981332e-01\\n-2.76595652e-01 4.24551576e-01 -7.38812685e-02 -7.87267014e-02\\n-9.80214626e-02 7.38268495e-02 -9.36382562e-02 1.02683939e-01\\n1.34772748e-01 -1.73409685e-01 -2.71898299e-01 -5.14883772e-02\\n-1.07444510e-01 1.02417774e-01 2.56944835e-01 -1.68367010e-02\\n-7.96495080e-02 -2.56493777e-01 -1.84047312e-01 9.48862806e-02\\n1.70557544e-01 2.59262651e-01 1.08699098e-01 -2.05751419e-01\\n4.59911749e-02 2.83028573e-01 -9.88159180e-02 1.23980112e-01\\n-2.19104975e-01 6.04601689e-02 -5.67805111e-01 -9.60743502e-02\\n-1.41311049e-01 -3.29733670e-01 1.67957515e-01 2.87787825e-01\\n1.22639768e-01 7.49320388e-02 1.90897379e-02 -5.88104963e-01\\n4.85986233e-01 3.86591405e-02 1.84442759e-01 1.57832965e-01\\n8.49223733e-02 3.86732548e-01 5.59855625e-02 -2.46757865e-02\\n-2.88682759e-01 -7.09388852e-02 -2.12403029e-01 -2.41041854e-01\\n8.88784826e-02 -3.76955807e-01 -1.01718135e-01 4.93554741e-01\\n1.21331379e-01 -2.55023152e-01 -2.16292471e-01 3.44459981e-01\\n1.91898480e-01 -2.48215914e-01 -1.69099540e-01 -2.30740774e-02\\n1.64175734e-01 8.49669054e-02 2.47845650e-01 -2.99475521e-01\\n-1.13549232e-01 -3.72391082e-02 -9.62547436e-02 4.02917773e-01\\n1.77824914e-01 -5.58110476e-02 -2.50293285e-01 -1.96637750e-01\\n4.55981255e-01 -5.52653037e-02 -9.05464590e-02 -1.80311352e-01\\n1.19824909e-01 -1.72574267e-01 -4.25881386e-01 -7.99653679e-03\\n-2.82678157e-02 -1.03793480e-01 8.86163563e-02 -8.37067794e-03\\n4.46492061e-02 5.08746058e-02 -2.72957027e-01 -2.69796610e-01\\n-3.08599532e-01 -2.72410512e-01 1.09905988e-01 -3.47291589e-01\\n-5.94342500e-02 1.25488238e-02 -4.83871609e-01 1.98036402e-01\\n-4.84319150e-01 -3.25461216e-02 8.49067494e-02 1.88526034e-01\\n-4.10423994e-01 -8.27222466e-02 5.83636202e-02 1.80127323e-01\\n-3.97754490e-01 -3.04423094e-01 7.42776021e-02 -8.80911291e-01\\n2.44409680e-01 1.25364274e-01 -3.83193344e-02 -6.24485426e-02\\n1.27528906e-02 -6.39937639e-01 1.18093662e-01 -4.30548936e-01\\n1.36846855e-01 2.44638212e-02 -1.14779845e-01 -3.13872814e-01\\n9.81192812e-02 -3.01212609e-01 -3.76202196e-01 3.32452834e-01\\n-4.69170123e-01 3.62234920e-01 7.22761452e-02 3.16124111e-02\\n1.70641560e-02 -3.60128194e-01 1.34400517e-01 -3.56733531e-01\\n-4.46172118e-01 -2.00980604e-01 -3.27178180e-01 -1.92323342e-01\\n-2.00275946e-02 -1.21833265e-01 -2.67280459e-01 1.20325729e-01\\n2.30594710e-01 1.47440016e-01 -8.54876861e-02 -2.68745542e-01\\n1.25888065e-01 -4.56336677e-01 -9.20768827e-02 -2.98691243e-01\\n-3.92760225e-02 -7.81482235e-02 1.98152348e-01 -1.35454759e-01\\n-6.43529138e-03 -3.14422220e-01 4.48826969e-01 -3.90015244e-01\\n-2.53161818e-01 -5.69062717e-02 8.35730731e-02 -3.96893024e-02\\n7.21535310e-02 -6.21991098e-01 1.28632396e-01 3.00864995e-01\\n4.32584248e-02 8.93807262e-02 1.70158774e-01 4.39386666e-02\\n-1.15548633e-01 2.51294792e-01 -5.33888400e-01 7.29920790e-02\\n7.34216094e-01 1.88444138e-01 -4.53827903e-02 2.05532685e-01\\n1.80256173e-01 3.46677691e-01 6.25255048e-01 -1.58300735e-02\\n-6.36261851e-02 1.95396304e-01 -8.11186060e-03 -5.56946039e-01\\n-7.40337968e-02 -2.21901406e-02 -1.26143485e-01 -2.40240976e-01\\n6.87060058e-01 4.04825062e-01 -4.13822025e-01 -2.91439056e-01\\n3.61502692e-02 -9.95048881e-02 1.95578024e-01 -5.24000861e-02\\n4.81917225e-02 -1.43123582e-01 6.63339198e-01 2.29177531e-02\\n2.12729827e-01 5.21273911e-01 -2.16799572e-01 -3.60699326e-01\\n-1.31314471e-01 1.21853605e-01 1.46436349e-01 4.64680225e-01\\n-9.96639132e-02 1.42780274e-01 -1.70964241e-01 -9.87535343e-03\\n5.24808615e-02 3.65480453e-01 1.88426703e-01 5.98822944e-02\\n2.25514665e-01 2.62132864e-02 2.09612682e-01 4.40072298e-01\\n1.51625708e-01 5.62719107e-01 2.43154541e-01 9.69170108e-02\\n2.98865467e-01 5.84474385e-01 4.25144553e-01 1.06067978e-01\\n4.63227916e-04 1.30929381e-01 1.26784027e-01 -1.55534642e-02\\n5.67120492e-01 3.01957577e-01 3.11675012e-01 8.11192989e-01\\n3.56013745e-01 3.20000678e-01 8.16168189e-01 -6.44952953e-01\\n-4.14494336e-01 1.56656414e-01 5.79559267e-01 -8.77263844e-02\\n-1.00557365e-01 2.27869898e-01 -3.03167403e-01 2.77273148e-01\\n-4.44567323e-01 -4.58748937e-02 -7.66223716e-03 5.48736602e-02\\n1.57649234e-01 2.79718284e-02 -1.81998238e-01 1.28152013e-01\\n-1.78937778e-01 -2.04069078e-01 -3.17970604e-01 -1.29812643e-01\\n-2.28384390e-01 -8.92306194e-02 -3.68082039e-02 -1.11019917e-01\\n-1.62650570e-01 -4.25846338e-01 -1.39929235e-01 -6.24607392e-02\\n2.56200671e-01 -1.11240223e-01 -5.44522069e-02 -1.22756742e-01\\n1.21525697e-01 3.49149644e-01 5.09233117e-01 -7.22431093e-02\\n2.27792561e-03 -8.86761472e-02 -3.47578973e-01 9.58653316e-02\\n1.05713233e-02 5.99187315e-02 1.71711832e-01 3.97532582e-01\\n-3.25093776e-01 3.96073759e-02 7.60146305e-02 2.94799089e-01\\n-3.76254261e-01 -1.27146795e-01 -6.88758567e-02 2.37431064e-01\\n3.66044864e-02 1.65688723e-01 -2.88238704e-01 1.48570761e-01\\n-2.71678150e-01 -4.97985840e-01 3.86771530e-01 -8.33091810e-02\\n-2.14117393e-01 3.84571582e-01 2.27011263e-01 2.31966868e-01\\n-2.88752824e-01 -1.02611370e-01 3.28605585e-02 3.17585021e-01\\n3.31836864e-02 4.34862018e-01 -6.68492541e-02 -1.53409272e-01\\n-2.56073743e-01 3.44886363e-01 -1.47571176e-01 5.51983938e-02\\n-1.33935079e-01 3.75227064e-01 -6.68831393e-02 6.00299649e-02\\n2.49299124e-01 -3.56536247e-02 -2.53164083e-01 -2.66369313e-01\\n-3.13599885e-01 -2.52270013e-01 1.04922302e-01 8.08849111e-02\\n1.73435137e-01 -3.68906528e-01 -6.80530630e-03 -9.99413431e-02\\n-1.09519497e-01 -1.98148310e-01 -1.26212746e-01 1.66497573e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: - Design and enhance an intuitive, easy-to-use API (used by our own front-end and by third-party applications) - Collaborate closely with fellow engineers, data scientists, and business people - Contribute your ideas to our product development and system architecture Requirements: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with web development, API design, and third-party integration - Advanced knowledge of relational databases - Some experience with the technologies we’re using is a plus: - Python, Django, Flask, SQLAlchemy, Pytest - PostgreSQL, PostGIS - JavaScript, Angular, HTML5, CSS3, Bootstrap - Git, Bitbucket, CircleCI - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Are comfortable working in English and German; you have a great read, good spoken command of it. Benötigte Skills Englisch JavaScript Angular HTML5 CSS3 Bootstrap PostgreSQL Python',\n", + " 'soft_skills': '[\"Collaboration\", \"Integration\"]',\n", + " 'hard_skills': '[\"Bitbucket\", \"Control Systems\", \"MSC Software\", \"Test-Driven Development (TDD)\", \"Agility\", \"Circleci\", \"API Design\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Data Engineering\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"HTML5\", \"Systems Architecture\", \"Web Development\", \"Flask (Web Framework)\", \"Software Engineering\", \"Django (Web Framework)\", \"Object-Oriented Programming (OOP)\", \"Bootstrap (Front-End Framework)\", \"JavaScript (Programming Language)\", \"SQLAlchemy\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Structures\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Relational Databases\", \"Algorithms\", \"Git Flow\", \"Application Programming Interface (API)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'java software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.57583886e-01 2.24278361e-01 6.10608578e-01 -1.32473692e-01\\n5.40641129e-01 -2.66387910e-01 8.89475271e-03 4.58861977e-01\\n-1.72101825e-01 -3.97874653e-01 -8.91604796e-02 -2.91676521e-01\\n-8.50128308e-02 1.08348310e-01 1.90760925e-01 3.06241989e-01\\n2.47287810e-01 1.53054461e-01 -1.96567520e-01 3.35067272e-01\\n1.45332381e-01 -1.12508059e-01 -7.27547472e-03 7.02277780e-01\\n4.61279154e-01 2.71470379e-02 -1.81327716e-01 8.36401954e-02\\n-2.35679656e-01 -3.43126655e-01 4.10136104e-01 5.15991859e-02\\n-1.31657824e-01 -2.32896119e-01 1.05538338e-01 6.84699789e-02\\n-2.18084857e-01 -3.67332511e-02 -2.30334215e-02 2.25426018e-01\\n-5.01278996e-01 -1.63770318e-01 1.30645633e-01 6.71180561e-02\\n-1.26623824e-01 -2.61265814e-01 6.97741583e-02 -1.47142988e-02\\n1.72037661e-01 -2.97129825e-02 -6.49174213e-01 3.30680430e-01\\n-1.55511528e-01 -2.63963342e-01 2.68973827e-01 4.72108305e-01\\n-4.33117971e-02 -4.72319245e-01 -3.66739392e-01 -3.31185967e-01\\n2.78378241e-02 -7.84204528e-02 6.00680336e-02 -2.67986476e-01\\n3.97579104e-01 7.72539079e-02 -2.74479538e-02 5.11141241e-01\\n-8.47846448e-01 1.67120546e-02 -1.65963203e-01 -2.01355200e-02\\n-2.79158711e-01 -4.66028079e-02 -1.80689424e-01 -1.19035348e-01\\n-1.13500163e-01 4.33825254e-01 4.05250527e-02 1.67095691e-01\\n-1.50328681e-01 3.01293820e-01 -1.80330515e-01 2.73952365e-01\\n2.92767763e-01 3.08838934e-01 1.68060079e-01 2.75948644e-01\\n-4.49267596e-01 3.06172073e-01 1.29521906e-01 -2.80103236e-01\\n3.08810920e-01 1.29945800e-01 4.92417008e-01 2.91899834e-02\\n1.26032025e-01 1.16703376e-01 -2.09692717e-01 2.45438933e-01\\n3.06585014e-01 -2.21688688e-01 -1.63578391e-02 -7.32325576e-03\\n-1.04856305e-01 9.18223113e-02 -5.71673140e-02 2.61083424e-01\\n-2.53644526e-01 5.49844742e-01 6.22525327e-02 -1.51834682e-01\\n-6.30524307e-02 -6.14064991e-01 -7.06819668e-02 9.67485309e-02\\n6.90301135e-03 2.34434962e-01 2.93787748e-01 2.27627635e-01\\n2.80523807e-01 1.67687774e-01 1.23844877e-01 8.71379435e-01\\n-1.82832405e-01 9.04105231e-02 -2.78920680e-01 3.73587191e-01\\n1.80734247e-01 -2.07606792e-01 2.95285702e-01 2.73443729e-01\\n1.04889244e-01 -8.28641951e-02 -1.67222515e-01 3.88706326e-01\\n-3.12034157e-03 -1.65013686e-01 -2.57144272e-01 6.45506606e-02\\n-3.01792145e-01 -5.02516091e-01 5.44718802e-01 6.26810715e-02\\n2.46172652e-01 8.28823298e-02 5.09679615e-02 9.72435251e-03\\n-1.11060306e-01 2.47699976e-01 -9.23224241e-02 2.67207742e-01\\n-2.26901218e-01 -1.86406955e-01 -3.44459444e-01 2.10952193e-01\\n-1.94614425e-01 1.52743965e-01 7.67313689e-03 -1.09751500e-01\\n3.48649651e-01 5.49802324e-03 -2.35884979e-01 3.92635882e-01\\n-1.60011068e-01 -7.97309354e-02 -8.07939023e-02 1.72748089e-01\\n-7.33570755e-02 2.08269522e-01 -5.12530096e-02 -1.99508652e-01\\n5.30699611e-01 2.09235191e-01 1.67233557e-01 -1.24382891e-03\\n3.02465677e-01 -9.44857597e-02 1.60577103e-01 2.96599604e-02\\n-7.74726152e-01 3.57794464e-01 9.02968086e-03 -1.97710410e-01\\n-2.40483936e-02 4.89026718e-02 3.22064966e-01 -3.60242337e-01\\n3.90120037e-02 -1.09087110e-01 -4.32024777e-01 -3.24579269e-01\\n-2.91374266e-01 2.05730181e-02 5.21267474e-01 -4.00459617e-01\\n-1.88750923e-01 1.21945046e-01 -5.36569834e-01 8.41926709e-02\\n2.73975492e-01 1.45664349e-01 4.63981889e-02 9.78739560e-02\\n-9.55403820e-02 -5.65264702e-01 1.01441719e-01 -4.49343890e-01\\n-3.34717840e-01 1.56051546e-01 -3.32833171e-01 1.59459874e-01\\n1.13084018e-01 5.55495638e-03 -1.48442328e-01 1.43238753e-01\\n-1.96646258e-01 -1.05383925e-01 1.46250531e-01 1.19363889e-01\\n4.66866642e-01 3.92461829e-02 -4.67435658e-01 5.82722247e-01\\n-2.25528777e-01 5.99116564e-01 2.35894561e-01 -9.59693789e-01\\n4.82131422e-01 3.71363550e-01 1.48339868e-01 -3.19856167e-01\\n6.29062474e-01 -3.06101829e-01 -3.23906057e-02 8.90640467e-02\\n-4.93299723e-01 -3.05044800e-01 1.90983251e-01 -1.27752498e-01\\n-2.36862689e-01 5.44315636e-01 8.07897523e-02 5.43228053e-02\\n3.09236169e-01 -1.60474315e-01 -1.26948327e-01 3.25009264e-02\\n-8.38085935e-02 -3.34769607e-01 -4.15257961e-01 1.26669094e-01\\n-1.25170767e-01 -5.50664842e-01 -2.15689465e-02 -3.51278663e-01\\n-2.71888644e-01 -3.93545747e-01 -2.41604358e-01 4.65740472e-01\\n1.58422768e-01 6.64536431e-02 7.47429505e-02 5.78101538e-02\\n-1.86671585e-01 -5.68167865e-01 4.53361645e-02 1.48970649e-01\\n4.26604778e-01 1.72204286e-01 4.92882468e-02 -6.85800239e-02\\n-9.20698866e-02 6.17161632e-01 -3.84079069e-01 -1.71341613e-01\\n4.82404903e-02 1.28838614e-01 -8.05882514e-02 -3.45155559e-02\\n4.02178541e-02 3.69528681e-01 -2.97649592e-01 -1.45858210e-02\\n-2.42435172e-01 1.22509353e-01 3.80285054e-01 -4.77877595e-02\\n-4.00515109e-01 -2.42902219e-01 -1.05139568e-01 2.32550383e-01\\n-5.29595256e-01 -1.70521870e-01 6.26755953e-01 1.90487877e-01\\n1.26379415e-01 1.48844153e-01 2.16809675e-01 -1.03928514e-01\\n-1.66048914e-01 -3.39489549e-01 1.83162794e-01 1.21256530e-01\\n1.33968458e-01 1.19143903e-01 -9.55008939e-02 -5.60689390e-01\\n-3.42344046e+00 -2.39997104e-01 1.67549223e-01 -3.20032984e-01\\n1.46800205e-01 -2.19089493e-01 3.13191414e-02 -1.23652548e-01\\n-1.85080037e-01 8.42759535e-02 -1.28616914e-01 -1.73912361e-01\\n1.78927839e-01 1.99459776e-01 1.23740532e-01 2.49317273e-01\\n2.23415017e-01 -1.33193567e-01 3.32326964e-02 2.85424203e-01\\n-2.34543428e-01 -6.23800755e-01 2.13373452e-01 -1.33986175e-01\\n3.30299973e-01 3.47469807e-01 -2.91469574e-01 -1.33075312e-01\\n-1.52270198e-01 -3.00877184e-01 9.87958685e-02 -2.66842902e-01\\n-6.67360565e-03 3.50001693e-01 9.53909531e-02 -8.19347203e-02\\n1.62400961e-01 -3.30659777e-01 -6.44750819e-02 -3.84279698e-01\\n2.10682005e-01 -5.68385720e-01 -7.26196468e-02 -5.35071008e-02\\n8.01595747e-01 -3.73670071e-01 1.61102027e-01 2.02670902e-01\\n1.19603641e-01 2.72307217e-01 1.10587738e-02 -2.03825563e-01\\n-2.92967081e-01 -2.54518807e-01 5.74550815e-02 -2.10433111e-01\\n4.81725276e-01 5.25332153e-01 -2.15332612e-01 6.45343512e-02\\n9.51613262e-02 -2.67256469e-01 -4.68601495e-01 -4.69010770e-01\\n-2.03330263e-01 -2.50050813e-01 -6.21195197e-01 -5.24641514e-01\\n-1.80896204e-02 -2.04285845e-01 -1.45651698e-01 6.63150966e-01\\n-2.77416438e-01 -4.18004483e-01 -6.61919042e-02 -4.88435388e-01\\n1.46508873e-01 -1.57860979e-01 -1.22777857e-01 -1.40238583e-01\\n-2.35778838e-01 -4.86413300e-01 -2.80342400e-02 9.30318888e-03\\n-1.70999244e-01 -2.64476478e-01 1.17607556e-01 -2.74324179e-01\\n-3.43522936e-01 -4.97430861e-01 5.32748282e-01 4.64134552e-02\\n3.52548718e-01 6.05197437e-02 2.32776672e-01 1.96070179e-01\\n3.41220170e-01 -2.76282161e-01 1.35229342e-02 -3.96473050e-01\\n1.98206753e-01 -1.70233604e-02 5.56876004e-01 -1.55463874e-01\\n1.56599268e-01 1.46961689e-01 -1.49105847e-01 -2.65505373e-01\\n3.74508858e-01 6.98375702e-02 1.09697461e-01 -2.43835911e-01\\n3.70247096e-01 -3.38080436e-01 -3.80105317e-01 1.75932795e-01\\n-9.13916603e-02 6.44052148e-01 -6.21827394e-02 -3.98258924e-01\\n-2.20207095e-01 5.83137810e-01 -1.32708713e-01 -1.29001111e-01\\n-2.18515709e-01 1.03773534e-01 -1.84651583e-01 1.87637970e-01\\n1.05787858e-01 -1.42905623e-01 -2.34073803e-01 -8.59974846e-02\\n-3.47021855e-02 1.72941983e-01 2.49844164e-01 1.05177071e-02\\n9.54391882e-02 -4.10854250e-01 -9.24184918e-02 1.65698677e-01\\n2.36222535e-01 3.29858273e-01 9.73102823e-02 -1.40055329e-01\\n-9.37038586e-02 2.91175365e-01 -1.75197363e-01 1.75014988e-01\\n-2.01614231e-01 4.50126342e-02 -4.46310073e-01 -2.99648821e-01\\n-2.21855998e-01 -3.37423831e-01 -1.04301898e-02 1.09562039e-01\\n3.50798219e-02 9.86902416e-02 -1.22194523e-02 -4.31680053e-01\\n2.63424724e-01 -2.93281977e-03 3.24295431e-01 1.97017312e-01\\n-5.85931167e-02 4.81887072e-01 9.85051692e-03 -1.68752149e-02\\n-1.14188395e-01 6.37781769e-02 -2.12607101e-01 -1.69618189e-01\\n-3.37427221e-02 -4.13840383e-01 -5.98542579e-02 4.40601289e-01\\n1.20637789e-01 -3.84090811e-01 -2.78004616e-01 1.58101082e-01\\n-3.38055007e-02 -3.79125088e-01 -1.87674120e-01 1.76028647e-02\\n3.53184938e-01 3.64386216e-02 2.67181337e-01 -5.67322731e-01\\n-2.40153447e-02 6.06786348e-02 -5.43791689e-02 5.30635655e-01\\n7.94282258e-02 -2.64340062e-02 -1.40363812e-01 -3.73206735e-01\\n2.75253862e-01 -1.81798264e-01 2.71342136e-03 -1.91415489e-01\\n5.78765757e-02 -1.91194728e-01 -4.30463880e-01 9.47066769e-02\\n-1.20195381e-01 -1.97345063e-01 -1.00383554e-02 -1.10037394e-01\\n1.28113870e-02 8.55104923e-02 -5.22974193e-01 -3.40321243e-01\\n-3.75218987e-01 -1.36259794e-01 8.72427225e-03 -3.40312690e-01\\n3.80098224e-02 7.86961913e-02 -6.10029101e-01 2.69160658e-01\\n-3.51555824e-01 -1.90250054e-02 1.95648685e-01 3.75189856e-02\\n-4.43506300e-01 2.99211536e-02 2.37376034e-01 2.38107502e-01\\n-4.26049471e-01 -2.94054478e-01 6.88863546e-02 -1.05952585e+00\\n1.68002829e-01 -1.82837900e-02 9.42894723e-03 9.42927226e-02\\n2.72770203e-03 -5.96114576e-01 1.11601770e-01 -3.04830909e-01\\n3.42156366e-02 -3.88490111e-02 -2.66441762e-01 -4.86245155e-01\\n3.69999409e-02 -6.02515116e-02 -2.97504127e-01 3.25485736e-01\\n-4.79360372e-01 3.11842769e-01 -3.43450122e-02 7.73108527e-02\\n-1.19152948e-01 -2.94846177e-01 1.19015217e-01 -4.17509913e-01\\n-4.01873678e-01 -1.60769135e-01 -2.82100290e-01 -2.19216838e-01\\n2.73652915e-02 -2.20999643e-01 -3.92215289e-02 1.66129991e-01\\n2.81601399e-01 6.46452382e-02 -9.92305651e-02 -3.05598080e-01\\n1.90013528e-01 -4.92806882e-01 -1.84919387e-02 -1.99532181e-01\\n-8.59614611e-02 -7.06908107e-02 1.34359270e-01 3.09030451e-02\\n5.18640690e-02 -4.61079270e-01 3.47921878e-01 -3.82179558e-01\\n-2.88794219e-01 -9.04683769e-03 4.36630473e-02 1.43059000e-01\\n2.72067726e-01 -5.45432448e-01 5.42921908e-02 3.90583038e-01\\n1.40932888e-01 2.18462422e-02 3.15219194e-01 1.47120990e-02\\n-5.35729676e-02 3.30026537e-01 -3.97946328e-01 1.11142218e-01\\n7.23168433e-01 1.97301209e-01 3.01393624e-02 2.18443334e-01\\n2.66600341e-01 4.12593305e-01 4.83061522e-01 -5.21094771e-03\\n3.72509547e-02 3.10118258e-01 1.46340996e-01 -7.00845063e-01\\n-3.45321521e-02 3.51000904e-06 -2.53404707e-01 -2.32473060e-01\\n6.99832916e-01 3.81607503e-01 -3.86612773e-01 -1.96372911e-01\\n-2.25604028e-01 -1.91897944e-01 1.48289829e-01 -1.98129028e-01\\n1.91521928e-01 -6.81058392e-02 4.98257279e-01 6.99881688e-02\\n2.91142613e-01 5.60273588e-01 -2.00168639e-01 -3.82358938e-01\\n-1.75074711e-01 9.17116627e-02 3.61310467e-02 3.82802635e-01\\n-1.48656413e-01 2.39627823e-01 7.68905580e-02 2.05974072e-01\\n-8.36420283e-02 1.98483497e-01 6.49647787e-02 7.32829943e-02\\n1.43256813e-01 5.69299832e-02 2.48082027e-01 4.36084986e-01\\n2.99941689e-01 5.98405302e-01 3.51424456e-01 1.60797238e-01\\n4.58824277e-01 5.06752849e-01 3.79154474e-01 1.69674128e-01\\n-9.54269320e-02 9.48182419e-02 -9.80877038e-03 -9.86820906e-02\\n3.83263320e-01 2.84612358e-01 1.10103093e-01 9.56705511e-01\\n4.68186408e-01 2.81715065e-01 7.83853412e-01 -5.84079981e-01\\n-4.61227208e-01 -3.10950503e-02 4.12851751e-01 -3.56342793e-01\\n-1.12012103e-01 9.01244730e-02 -1.96246818e-01 2.92169422e-01\\n-4.62409914e-01 -7.29872808e-02 -5.34939393e-02 7.95590430e-02\\n1.78047851e-01 -4.43895645e-02 -3.40434492e-01 -1.83744311e-01\\n-2.56870270e-01 -8.13818946e-02 -4.77654159e-01 -3.79056185e-02\\n-2.52517223e-01 -2.76095837e-01 -1.86661422e-01 -1.44891188e-01\\n-1.35957487e-02 -4.37088102e-01 -1.52315408e-01 8.73189047e-02\\n3.51048410e-01 -1.05664022e-01 -6.36203587e-02 -1.28768042e-01\\n2.88004637e-01 3.01429033e-01 5.00274122e-01 -9.48877037e-02\\n7.36109912e-02 -9.37480628e-02 -1.85977116e-01 7.53349364e-02\\n1.09136917e-01 1.11559808e-01 -2.09253817e-03 3.97442669e-01\\n-3.82200241e-01 -1.68757334e-01 7.99579769e-02 4.40565467e-01\\n-4.37371194e-01 -1.25770405e-01 7.78131038e-02 2.90759116e-01\\n1.28357157e-01 1.73150063e-01 -3.54894847e-01 5.46495467e-02\\n-2.68999010e-01 -5.13819516e-01 3.45636040e-01 -1.09166019e-01\\n-8.25389698e-02 5.99216558e-02 3.03997487e-01 1.59141764e-01\\n-1.88917920e-01 -1.03359103e-01 1.25873491e-01 2.11416766e-01\\n1.26016781e-01 3.47677231e-01 -2.63669252e-01 -2.25019798e-01\\n-2.77623743e-01 2.68201560e-01 -3.32442760e-01 1.74849391e-01\\n-1.55298963e-01 3.42802942e-01 1.53565735e-01 1.28540710e-01\\n1.73937172e-01 -4.52347361e-02 -1.25829980e-01 -2.02888966e-01\\n-3.53951782e-01 -2.95110673e-01 8.25848579e-02 -2.93367654e-02\\n1.67923048e-01 -4.18692261e-01 -4.70832735e-02 -6.47504330e-02\\n-2.66997725e-01 -2.90285826e-01 -9.46866497e-02 -1.43150270e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Java Software Engineer. This role is a permanent position based in Zürich or Bern Canton depending on candidate preference. Your role: Develop sophisticated web / JEE applications. Develop software & enterprise architectures. Design technical solutions in collaboration with customers. Making cost estimates. Contribute to the further development of software development within the business. Your Skills: Experienced in the development of solutions based on Java technologies / open source frameworks. Good knowledge in the following areas: JAVA frameworks for dependency injection O / R mapping & access control (Spring, Hibernate) JAVA application server (Tomcat, JBoss, WebSphere or WildFly) Spring & Vaadin JAVA Web technologies (JSF and PrimeFaces ) Client-side JavaScript UI technologies (Angular 2, React) JAVA UI technologies (JavaFX) Cloud technologies (Docker, Openshift, Kubernetes) Database technologies (Oracle, MySQL, Maria DB) Experience in agile software development is advantageous. Your Profile: Higher education in Computer Science. Self-driven, self-motivation, open-minded & solution-oriented. Cooperative, quality-focused & both customer & team-oriented. Analytical, conceptual & in possession of a quick understanding. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Team Oriented\", \"Cooperation\", \"Collaboration\", \"Positivity\"]',\n", + " 'hard_skills': '[\"MySQL\", \"OpenShift\", \"Kubernetes\", \"Computer Science\", \"Analytics\", \"Mobile Application Software\", \"Higher Education\", \"Vaadin\", \"Hibernate (Java)\", \"Primefaces\", \"WildFly (JBoss AS)\", \"Application Servers\", \"Software Engineering\", \"React.js\", \"Agile Software Development\", \"Open Source Technology\", \"Docker (Software)\", \"Conceptualization\", \"Enterprise Architecture\", \"Java Application Server\", \"Java Collections Framework\", \"Project-Based Solutions\", \"Access Controls\", \"Dependency Injection\", \"Cost Estimation\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"JavaFX\", \"Receivables\", \"Angular (Web Framework)\", \"Technical Solution Design\", \"Java Web Services\", \"Software Development\", \"Mapping\", \"Java (Programming Language)\", \"Apache Tomcat\", \"JSF 2\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Slovak', 'Cree', 'Telugu']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'business application analyst (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.95008665e-01 3.99013340e-01 4.29643035e-01 6.23621792e-02\\n6.08087063e-01 6.52238876e-02 1.04930684e-01 1.14952393e-01\\n7.00906217e-02 -2.68205762e-01 -1.38870880e-01 -1.20139062e-01\\n-5.62866032e-02 -7.93280452e-02 1.21173106e-01 4.18069065e-01\\n3.15848827e-01 -5.43995164e-02 -3.28657031e-03 2.79873222e-01\\n-5.72428331e-02 8.00456665e-03 2.15325020e-02 5.92675447e-01\\n4.05653894e-01 1.20013863e-01 -3.50275636e-02 1.12025894e-01\\n-2.48493224e-01 -3.62214535e-01 3.75085354e-01 3.69461626e-02\\n-2.33532578e-01 -3.03215653e-01 6.88816160e-02 1.64522588e-01\\n-1.85275301e-01 1.21623948e-02 -1.24451324e-01 3.28230113e-03\\n-4.66755688e-01 -2.48992056e-01 -4.48130071e-02 -1.80105090e-01\\n-3.70480001e-01 -2.55145013e-01 2.06496492e-01 -2.15973467e-01\\n3.28031704e-02 2.48962641e-02 -5.00505447e-01 3.85336757e-01\\n-2.19557941e-01 -1.46872059e-01 3.15424025e-01 6.28724456e-01\\n1.65173799e-01 -5.98815799e-01 -4.74887490e-01 -3.30780447e-01\\n1.29434094e-01 -1.59070551e-01 1.68393940e-01 -2.64650136e-02\\n4.71206695e-01 -2.15121865e-01 -2.69760732e-02 2.99594939e-01\\n-6.15362763e-01 -1.15436874e-02 -5.40289640e-01 1.83903314e-02\\n-3.03136885e-01 5.53766713e-02 -4.26471055e-01 -2.40658224e-01\\n-6.99507166e-03 4.13340658e-01 1.20811388e-02 7.35970587e-02\\n-1.71227008e-01 3.18997502e-01 -1.79942995e-01 1.24712914e-01\\n2.69173622e-01 2.31143702e-02 4.02183950e-01 2.32091874e-01\\n-4.57810193e-01 5.29850721e-01 3.74625385e-01 -3.48989129e-01\\n2.59545594e-01 1.34253064e-02 2.31121942e-01 2.04598159e-01\\n1.49972821e-02 2.93230921e-01 -1.39868483e-02 9.22784302e-03\\n7.95998573e-02 -6.44016117e-02 -2.07560703e-01 -9.70576480e-02\\n-5.49077168e-02 -2.28717700e-01 6.58551455e-02 1.34303480e-01\\n-4.52967733e-01 4.46573734e-01 8.08416307e-02 -2.33199641e-01\\n-5.34538068e-02 -3.31894696e-01 -1.15534864e-01 -1.13618165e-01\\n-1.22120567e-01 9.63859782e-02 2.09814861e-01 3.08730274e-01\\n2.74116784e-01 6.90218508e-02 1.88973278e-01 7.02065170e-01\\n6.16038144e-02 1.22587457e-01 -8.43458250e-03 2.99832821e-01\\n5.18384874e-02 -2.89068192e-01 1.17042631e-01 2.91722059e-01\\n-2.23484665e-01 -6.48168400e-02 -3.67855966e-01 1.77600279e-01\\n-1.94459617e-01 -1.14878140e-01 -2.18792319e-01 2.13929236e-01\\n-2.00481564e-01 -6.06310368e-01 3.66872668e-01 -5.05070537e-02\\n9.99847203e-02 -1.49258733e-01 3.67650762e-03 -2.67140083e-02\\n-2.41359979e-01 3.47323537e-01 1.75061330e-01 3.08430970e-01\\n-2.97674477e-01 -2.55726039e-01 -9.77141187e-02 3.67457777e-01\\n-1.13222837e-01 8.72353166e-02 -5.40520310e-01 -2.04681039e-01\\n3.79402757e-01 2.12867528e-01 -5.21773994e-01 2.86651731e-01\\n-5.87734487e-03 -9.59016234e-02 -1.91565380e-01 4.30359900e-01\\n3.59341130e-02 -4.29353565e-02 -4.49364595e-02 -1.73897684e-01\\n5.46396017e-01 1.60005078e-01 1.95677131e-01 -7.37396628e-02\\n3.58966947e-01 -1.32059127e-01 2.50623226e-01 -6.79093227e-03\\n-5.72852254e-01 4.15170729e-01 -1.74482450e-01 3.14541906e-03\\n-6.03997782e-02 -3.82388160e-02 5.31919897e-01 -3.52441043e-01\\n2.11916752e-02 -2.08766580e-01 -4.14281428e-01 -4.38057303e-01\\n-1.38663471e-01 -3.98902483e-02 4.54661429e-01 -4.58312869e-01\\n5.53567521e-03 1.29119918e-01 -5.71516037e-01 -1.85264051e-01\\n4.02185559e-01 1.87568933e-01 2.13938653e-01 1.50399074e-01\\n-9.81053412e-02 -4.81393695e-01 1.11682698e-01 -5.46461701e-01\\n-3.75030160e-01 2.44040415e-01 -2.47653693e-01 6.63139895e-02\\n1.80318117e-01 -6.35833014e-03 -3.96272466e-02 1.30210929e-02\\n-3.61765027e-01 -5.96959107e-02 2.44559735e-01 -5.10137081e-02\\n1.82738453e-01 1.76333308e-01 -2.88261354e-01 6.08550787e-01\\n-2.95774102e-01 3.35119009e-01 1.87874585e-01 -9.53545034e-01\\n4.56823647e-01 1.94832981e-01 -3.92278694e-02 -3.21594030e-01\\n2.93811142e-01 -3.59783113e-01 5.99214900e-03 1.76124096e-01\\n-1.87629536e-01 -1.09368242e-01 2.09992945e-01 -1.58685684e-01\\n-3.12051386e-01 6.60686314e-01 1.05416395e-01 1.07662939e-02\\n2.86886156e-01 -1.42430902e-01 -3.27407420e-01 -4.90555428e-02\\n-3.45832944e-01 -1.50670335e-01 -5.37451744e-01 1.14824072e-01\\n-2.77052037e-02 -5.12728751e-01 -1.22580498e-01 -5.49357653e-01\\n-2.18824804e-01 -4.69523907e-01 -2.82027304e-01 2.13616759e-01\\n6.35256767e-02 1.39032960e-01 -1.55497581e-01 2.79446207e-02\\n-4.28187400e-02 -6.23596072e-01 -2.66356803e-02 1.49163604e-01\\n2.00827986e-01 4.23853099e-01 1.98534369e-01 -2.79200673e-01\\n3.93205695e-02 5.08246005e-01 -4.05801445e-01 -3.40488493e-01\\n3.75211567e-01 1.54240757e-01 -6.00795001e-02 -1.78934500e-01\\n2.73097940e-02 2.95856416e-01 -1.80580080e-01 5.62755466e-02\\n1.25635564e-01 -9.06742215e-02 2.75325835e-01 -2.66111314e-01\\n-2.56982237e-01 -1.17668010e-01 -1.43375665e-01 3.09205562e-01\\n-5.11835814e-01 -3.01409364e-01 6.02433622e-01 1.83108971e-01\\n-4.19602580e-02 3.06000352e-01 1.99281752e-01 7.44044175e-03\\n-3.36609691e-01 -1.70412421e-01 2.61179686e-01 1.76363379e-01\\n1.30626291e-01 -4.54344749e-02 -3.01077724e-01 -5.49743652e-01\\n-3.55569029e+00 -2.82751650e-01 5.50696328e-02 -2.48541459e-01\\n1.85145915e-01 -4.22971770e-02 2.74901390e-01 -2.18013488e-02\\n-2.70694554e-01 7.35134333e-02 -2.01510012e-01 -8.64264816e-02\\n-3.46118249e-02 3.53509903e-01 1.68244332e-01 1.43488690e-01\\n1.93885267e-02 -2.96424508e-01 1.26230046e-01 4.56099212e-01\\n-1.37910172e-01 -8.56148124e-01 7.47311115e-02 -7.26257861e-02\\n1.17508277e-01 1.38784558e-01 -4.04958606e-01 -1.12103790e-01\\n-3.46385002e-01 -1.60494342e-01 6.99183345e-02 -1.60134003e-01\\n-2.52299368e-01 2.49085829e-01 1.06362417e-01 -8.64721388e-02\\n-3.53455804e-02 -3.59373569e-01 -2.24601962e-02 -6.53341055e-01\\n3.26970555e-02 -6.95949554e-01 1.48876294e-01 3.61051299e-02\\n4.64770705e-01 -1.56582966e-02 2.45510906e-01 1.63776100e-01\\n1.69339389e-01 2.33648822e-01 1.70241073e-01 -8.08064919e-03\\n-3.03983480e-01 -2.80499369e-01 -1.99072599e-01 -2.36861020e-01\\n6.57795072e-01 1.94023579e-01 -1.99919999e-01 3.74202840e-02\\n-4.98504452e-02 -3.43164265e-01 -4.75379229e-01 -4.13300067e-01\\n-1.74542099e-01 1.01825230e-01 -6.86987460e-01 -4.31307584e-01\\n-2.44460553e-01 -1.73468426e-01 -1.26737446e-01 6.47513747e-01\\n-4.35722947e-01 -2.20222995e-01 -2.16420054e-01 -5.94370723e-01\\n2.52624780e-01 -8.20131153e-02 8.62736106e-02 -1.86010838e-01\\n-3.27403426e-01 -3.50784421e-01 1.98355496e-01 -2.75172293e-03\\n-2.44776979e-01 1.02648735e-02 1.77890003e-01 -1.08397275e-01\\n-3.86105478e-01 -3.74359012e-01 4.77235377e-01 4.26571816e-03\\n4.57176685e-01 6.10954463e-02 3.10741782e-01 1.59194395e-02\\n5.06574988e-01 -8.55695084e-02 9.16682854e-02 -5.37249565e-01\\n2.93198694e-02 6.69127926e-02 6.19441628e-01 -1.38995737e-01\\n-1.60193462e-02 4.74740826e-02 -2.56839752e-01 -2.49762386e-02\\n5.38749158e-01 -1.63856179e-01 1.38494700e-01 -3.35919678e-01\\n2.67729521e-01 -4.32539463e-01 -3.34229290e-01 6.38738275e-02\\n7.81847909e-02 7.43538260e-01 1.29113436e-01 -3.38600814e-01\\n-2.58372545e-01 3.27801645e-01 -1.52215630e-01 -7.24039972e-02\\n-2.09616601e-01 1.41601801e-01 -2.36046284e-01 2.61437654e-01\\n1.76726252e-01 3.02040782e-02 -2.80137837e-01 3.49889025e-02\\n-1.48878694e-01 1.18181966e-01 2.62158394e-01 1.75832957e-01\\n3.65262851e-03 -2.22498298e-01 -6.84153587e-02 1.14416696e-01\\n2.34426767e-01 3.24253023e-01 2.33186617e-01 -3.89072716e-01\\n2.86060870e-02 1.03369638e-01 -2.36514941e-01 2.98341453e-01\\n-1.03237309e-01 2.26938367e-01 -5.21813989e-01 -2.76915312e-01\\n-2.54761577e-01 -2.65493602e-01 2.29397453e-02 4.41016793e-01\\n1.09912843e-01 -2.51434445e-01 1.10836118e-01 -5.09543180e-01\\n3.66670161e-01 -5.71772903e-02 2.26971194e-01 4.31929063e-03\\n-1.36781614e-02 7.32295930e-01 7.96074718e-02 -2.41586313e-01\\n-5.31088933e-02 1.55605733e-01 -2.05185592e-01 -3.17513853e-01\\n3.06285396e-02 -3.52946162e-01 -1.32428646e-01 4.91699934e-01\\n7.55733997e-02 3.69209722e-02 -1.30102739e-01 4.33190167e-01\\n-6.32488281e-02 -2.58107305e-01 -2.31630683e-01 -1.81962162e-01\\n2.35331021e-02 7.26722330e-02 2.61114061e-01 -5.45908093e-01\\n3.81588191e-02 -1.29535586e-01 1.75660253e-01 4.11845297e-01\\n1.14919640e-01 1.88628212e-02 1.49087429e-01 -1.69886172e-01\\n5.05914688e-01 2.76735544e-01 -1.43848300e-01 -8.47352445e-02\\n1.94630563e-01 -2.57028848e-01 -3.90511125e-01 -3.60201709e-02\\n-9.97323319e-02 -1.41303703e-01 1.43579289e-01 2.12300956e-01\\n1.71816796e-01 3.36324200e-02 -4.70748782e-01 -1.37881815e-01\\n-4.19336766e-01 8.37518796e-02 -2.39282846e-01 -8.23341370e-01\\n6.73615187e-02 -3.51095833e-02 -6.13993406e-01 2.21830845e-01\\n-6.80322275e-02 1.18058249e-01 1.02512687e-01 1.82622120e-01\\n-1.90888226e-01 -3.03844094e-01 2.23368987e-01 -1.36131853e-01\\n-3.05934250e-01 -3.46114695e-01 2.39739753e-02 -9.21545088e-01\\n2.76762545e-01 7.67990723e-02 -1.86048716e-01 3.07146758e-02\\n1.19301431e-01 -7.44753361e-01 3.17702353e-01 -2.37914801e-01\\n-1.33371681e-01 1.43889353e-01 -3.11614990e-01 -3.48008454e-01\\n1.53147981e-01 1.45591050e-03 -1.91140026e-01 2.88545072e-01\\n-3.08448493e-01 6.43162549e-01 2.17807382e-01 1.92919865e-01\\n2.00574994e-01 -2.33969927e-01 -1.39634572e-02 -3.33765209e-01\\n-4.21945453e-01 -2.28561282e-01 -1.99784607e-01 -2.11759627e-01\\n-5.40009476e-02 -1.53570965e-01 -1.05935186e-01 -1.13392070e-01\\n4.73212868e-01 3.49675536e-01 -2.36959338e-01 4.88043763e-02\\n-3.90611514e-02 -2.73881495e-01 2.26684019e-01 -2.59959221e-01\\n-6.96395934e-02 -2.72628725e-01 4.93727446e-01 -1.14674158e-01\\n2.04172567e-01 -1.64891273e-01 6.67558193e-01 -1.67972893e-01\\n-3.62935126e-01 -1.09879233e-01 1.50007069e-01 4.50675115e-02\\n2.88204223e-01 -6.10142827e-01 5.38021401e-02 3.56592685e-01\\n9.64097083e-02 5.85207455e-02 3.72008562e-01 -1.59248084e-01\\n-2.30890840e-01 2.10392445e-01 -6.78520679e-01 1.51378185e-01\\n7.01343715e-01 2.80828059e-01 1.27947688e-01 1.64826989e-01\\n5.65739870e-02 1.68446481e-01 5.30752659e-01 7.68702477e-02\\n-2.02321798e-01 5.14730573e-01 1.92759395e-01 -7.11550891e-01\\n-3.36884797e-01 -1.59894601e-01 -3.37813422e-03 -2.42597044e-01\\n6.20835900e-01 1.33443847e-01 -4.70507681e-01 -3.80021691e-01\\n-3.76374185e-01 -2.80495912e-01 3.32177192e-01 5.52777313e-02\\n1.24651492e-01 -1.00803256e-01 5.91643929e-01 -3.90242860e-02\\n3.01796436e-01 4.75176245e-01 -1.80343539e-02 -1.34569585e-01\\n-5.11511564e-02 2.42801830e-01 1.28010020e-01 3.61895084e-01\\n-5.64892739e-02 1.49931237e-01 3.91129851e-02 1.27426535e-01\\n-3.17187309e-01 -5.31696826e-02 2.20459417e-01 -1.27257854e-02\\n1.10019527e-01 2.12586641e-01 5.36637545e-01 3.36952329e-01\\n2.47376382e-01 4.84607428e-01 3.80346388e-01 -2.83900667e-02\\n4.39093977e-01 6.83360755e-01 1.82947829e-01 -1.08023643e-01\\n1.34323090e-02 1.19458131e-01 1.03729367e-01 -3.07833347e-02\\n4.12101150e-01 5.54117441e-01 9.07534659e-02 7.66765833e-01\\n3.47824782e-01 3.59968692e-01 5.83235145e-01 -5.53700447e-01\\n-1.98314428e-01 5.60754687e-02 5.19675672e-01 -2.61983693e-01\\n1.31907567e-01 1.67795941e-01 -2.51441777e-01 2.32583821e-01\\n-4.59881693e-01 -2.24262774e-01 -5.18954396e-02 -1.45882815e-01\\n2.27639586e-01 -1.86824724e-02 4.49294001e-02 1.42247528e-01\\n-3.87051068e-02 -2.37777084e-01 -2.11852521e-01 -3.39132100e-01\\n-3.74523491e-01 5.73425647e-03 8.44365954e-02 -6.97888136e-02\\n-6.77605197e-02 -2.72388935e-01 -7.20749199e-02 -1.55324727e-01\\n2.70112395e-01 -1.10158734e-01 -3.34998935e-01 -1.07086696e-01\\n1.45143438e-02 3.06369156e-01 9.21783447e-01 -1.77824765e-01\\n1.66461051e-01 -1.78993165e-01 -1.86832607e-01 -2.54484080e-02\\n1.61697477e-01 1.01951584e-01 -2.91782729e-02 6.06689692e-01\\n-2.57903636e-01 -4.82439697e-02 1.52224541e-01 2.31140733e-01\\n-2.43201107e-01 1.32235307e-02 -5.22389561e-02 5.44080250e-02\\n4.37594205e-03 1.22165650e-01 -1.84865832e-01 3.06754448e-02\\n-2.30701506e-01 -6.49197519e-01 2.72451490e-01 -1.19080722e-01\\n-2.70071149e-01 -9.45970863e-02 2.54023075e-01 4.36552346e-01\\n-8.99736732e-02 -1.55729830e-01 -8.55943188e-02 1.97303742e-01\\n1.10036470e-01 3.79391223e-01 -2.18155861e-01 -1.33596122e-01\\n-2.61167705e-01 4.08169508e-01 7.51660541e-02 1.51080757e-01\\n-7.55340159e-02 3.85382116e-01 2.61615179e-02 2.32520312e-01\\n1.59027353e-01 -2.20937565e-01 -3.69323730e-01 -3.04829597e-01\\n-4.35190201e-01 -1.16633028e-02 1.11955486e-01 -8.50889459e-02\\n2.64335275e-01 -2.27494001e-01 -6.81183934e-02 -2.76735246e-01\\n-2.44057477e-01 -4.49558347e-01 -1.16036996e-01 1.09312750e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Manages the maintenance of key Applications - Ensure a proper functional and technical support to the business departments on IS applications - Supervise end users in order to ensure a proper understanding of internal Business Processes (Trading, Shipping, Finance, Legal, Cross-functions) - Provide support to Trading and Operations team in their usage and ramp-up on the Application (training, coaching, change management) - Supervise end users application’s usage in order to guarantee the efficient use of the software - Coach and Train new comers in the understanding of our processes and a proper usage of the applications related to the function of the employee. - Perform review on application usage and data quality and trigger necessary training or process improvements - Define and Implement Projects for new requirements and/or evolution of the applications - Manage the continuous improvement of our Business processes: - Help in ensuring the defined IS applications matches the business requirements of internal departments - Review Processes supported by IS systems and work in coordination with the functional departments to propose processes/Systems changes. - Specify and implement necessary system changes - Manage the testing phases and ensuring quality performance with the external developers involved in various IS improvement projects - Lead Change Management with the users whilst implementing change - Get user-feedback and trigger necessary tasks or subprojects to reach a balance between Processes, Controls, user satisfaction and capability/cost efficiency of the IS Solution - Follow-up on processes implemented, new and existing, and ensure continuous improvement - Identify user needs for reporting and implement them once specified and approved - With the support and in relation with the Business Process Owners, review the processes defined by each BPO and ensure our Operating Model is updated - Manage specific and ad-hoc IS/IT Projects - Gather Requirements and Objectives of the Project - Manage the different Project Phases from Requirements till post-support implementation - Ensure a proper handover and transition of Project deliverables to the employees (Training, support of employees on requests) Profile required: Educational Background / Qualifications: - Degree in Computer science with experience in project management - Secondary Education in cross functional areas Technical Skills: - CRM Systems (SalesForce, Oracle) - Good knowledge of Reporting systems and Business Intelligence tools (IBM Cognos, Quickview,..) - General understanding of main ERP functionalities (SAP) - Scripting language (SQL, JavaScript, any other scripting languages) - First experience on Mobility and Mobile Apps development Experience required: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in the current Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs - Proven capabilities in coaching, training and development Competency profile: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Good experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs Interpersonal competencies / communication - Service-oriented - Communication capability with specialists and non-specialists (oral and written) - Listening skills - Ability to manage diversity and complexity of processes - Negotiation/conflict resolution skills - Reactivity - Time management skills - English professional. Good German. Any other language is a plus Benötigte Skills Englisch Projektleitung Qualitätssicherung CRM ERP Oracle Cognos SAP SQL JavaScript Requirements Engineering Schulung Strategie',\n", + " 'soft_skills': '[\"Negotiation\", \"Professionalism\", \"Supervision\", \"Management\", \"Listening Skills\", \"Operations\", \"Training And Development\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Data Quality\", \"QuickView\", \"Business Intelligence Tools\", \"Ad Hoc Testing\", \"Computer Science\", \"Customer Relationship Management (CRM) Software\", \"Asynchronous Serial Communication\", \"Process Automation Systems\", \"Reactivity\", \"Process Improvements\", \"Performance Review\", \"Mobile App\", \"SAP Sybase SQL\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Secondary Education\", \"Dashboard\", \"Business Intelligence\", \"Mobility\", \"Process Control\", \"Business Requirements\", \"MFG/Pro (ERP)\", \"Cross-Functional Coordination\", \"Finance\", \"Business Process\", \"SAP Functional\", \"Specific Performance\", \"Requirements Engineering\", \"JavaScript (Programming Language)\", \"Continuous Improvement Process\", \"Implement Projects\", \"Adapter Scripting Language\", \"User Feedback\", \"Project Management\", \"Scripting\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Diversity Management\", \"SQL (Programming Language)\", \"Technical Support\", \"International Business\", \"Conflict Resolution\", \"Change Management\"]',\n", + " 'languages': \"['English', 'Welsh', 'Swedish']\"},\n", + " {'company_id': '62',\n", + " 'job_title': 'project manager for training, media and communication in global logistics',\n", + " 'location': 'Chuang-li',\n", + " 'industry': 'Industrial Manufacturing',\n", + " 'website': 'www.hilti.com',\n", + " 'jobdescription_embedded': '[[-8.40743482e-02 2.58469582e-01 4.16815966e-01 1.25929350e-02\\n5.25840521e-01 -4.37766649e-02 6.82556182e-02 3.49865973e-01\\n-3.04325055e-02 -5.84392428e-01 6.65341020e-02 -2.43442863e-01\\n6.04313426e-02 1.90676123e-01 9.68776345e-02 4.08527315e-01\\n2.18765289e-01 3.15529779e-02 -1.17172852e-01 2.58254617e-01\\n-9.10764784e-02 -1.76381901e-01 1.24905832e-01 8.89787197e-01\\n5.35619736e-01 2.36047674e-02 -8.25883169e-03 -5.04554808e-02\\n-4.91807461e-02 -2.50231594e-01 4.02163744e-01 -2.47387923e-02\\n-2.00507849e-01 -4.89541411e-01 2.22342759e-02 3.68701220e-02\\n-1.77508354e-01 6.31671958e-03 -1.87721014e-01 -2.37870365e-02\\n-5.00963748e-01 -1.42871737e-01 -1.82981253e-01 -9.55498517e-02\\n-3.27548385e-01 -2.47066766e-01 -5.44267222e-02 -1.70721129e-01\\n2.64375567e-01 8.61753225e-02 -3.87723863e-01 1.68585360e-01\\n-2.77408302e-01 -2.51319766e-01 2.35492259e-01 6.27697170e-01\\n7.52717853e-02 -2.72130907e-01 -5.95689476e-01 -2.91512430e-01\\n7.22421557e-02 -8.94315392e-02 1.04437888e-01 -2.63986290e-01\\n2.67910421e-01 -1.17426589e-02 1.33359894e-01 2.38874361e-01\\n-7.09236264e-01 -7.22351670e-02 -3.96133125e-01 -6.82128370e-02\\n-1.88037276e-01 -1.27517879e-01 -4.06178176e-01 -1.82262927e-01\\n-2.00772136e-01 3.20278764e-01 6.62821382e-02 7.70666301e-02\\n-2.02604800e-01 2.43933365e-01 -3.11103344e-01 3.83765846e-01\\n1.22821629e-01 3.08580846e-01 3.48467886e-01 3.74795198e-01\\n-2.84400076e-01 5.80680907e-01 1.45527065e-01 -3.97300065e-01\\n2.54285604e-01 2.56191075e-01 3.40148509e-01 -1.44673660e-01\\n3.74658763e-01 1.15751639e-01 -1.87879384e-01 3.88455272e-01\\n3.38469505e-01 -4.37917769e-01 9.33118612e-02 -2.69454837e-01\\n9.19012055e-02 -4.58682738e-02 2.30888546e-01 -5.29355891e-02\\n-3.71519268e-01 3.04514289e-01 -1.14691807e-02 -3.32168221e-01\\n-2.91482568e-01 -2.65040040e-01 1.50209479e-03 1.62847880e-02\\n1.85857154e-02 1.65778130e-01 1.42384112e-01 2.07206890e-01\\n2.15507865e-01 5.03542386e-02 6.61029965e-02 7.21781969e-01\\n-9.59540159e-02 -1.84900127e-02 -2.87707657e-01 2.67805934e-01\\n-5.99117056e-02 -4.39930201e-01 2.51819193e-01 1.57360122e-01\\n-1.54183269e-01 -2.43988141e-01 -3.31923962e-01 2.80689329e-01\\n1.93541616e-01 -1.67974412e-01 -2.09094420e-01 2.41716415e-01\\n1.62506849e-01 -4.10672843e-01 6.62356615e-01 1.84774771e-02\\n2.15192571e-01 -1.06828630e-01 2.73401849e-03 -2.51844466e-01\\n-4.85691503e-02 2.82341465e-02 2.29909584e-01 1.99484497e-01\\n-1.29276142e-01 -2.53016144e-01 -1.76325053e-01 1.07140020e-01\\n-5.49397469e-01 1.33622602e-01 -2.17098117e-01 -1.30049452e-01\\n2.50664830e-01 -1.57037064e-01 -2.30589613e-01 2.03706145e-01\\n-1.58311218e-01 5.42772040e-02 1.34539939e-02 3.83579254e-01\\n-2.44279265e-01 2.14494213e-01 -3.25616822e-02 5.47887832e-02\\n6.81307793e-01 1.94693595e-01 1.63947463e-01 -1.02098383e-01\\n2.31734470e-01 1.83363661e-01 2.75991224e-02 1.71739459e-01\\n-6.47551417e-01 2.79080927e-01 -1.19871460e-01 -2.90313691e-01\\n1.43057227e-01 -1.17326573e-01 2.32743233e-01 -2.03488186e-01\\n-5.06606102e-02 4.53841537e-02 -2.34795064e-01 -2.78241724e-01\\n-1.51226208e-01 -2.09548146e-01 3.23209405e-01 -5.77496409e-01\\n-7.30032772e-02 1.97642505e-01 -4.72325265e-01 -1.51119947e-01\\n9.62095112e-02 1.61083505e-01 1.42574251e-01 1.53789192e-01\\n-1.16691470e-01 -4.07331228e-01 2.22442560e-02 -3.25153828e-01\\n-2.25879967e-01 1.03323936e-01 -3.07513893e-01 5.74217401e-02\\n7.71653131e-02 -2.36525051e-02 1.31734051e-02 9.59394053e-02\\n-1.18316106e-01 3.75229195e-02 1.96893699e-03 -7.56179541e-02\\n4.56498235e-01 8.43281299e-02 -2.49041766e-01 3.31880331e-01\\n-2.04901218e-01 4.67329443e-01 1.05082523e-02 -8.05799842e-01\\n4.15321052e-01 2.78056383e-01 5.18802553e-02 -3.10032487e-01\\n4.04965281e-01 -2.08444640e-01 -5.92219569e-02 -4.08325344e-04\\n-3.76921296e-01 -2.62250185e-01 1.04717463e-01 -2.47086346e-01\\n-2.11388618e-01 3.61531019e-01 -1.24819539e-01 2.65242338e-01\\n1.76396802e-01 -1.52056098e-01 -5.67691363e-02 7.62480311e-03\\n-1.01702638e-01 -1.06743872e-01 -5.67107141e-01 -1.48717940e-01\\n-9.30724815e-02 -2.35699311e-01 -1.28617585e-01 -5.58523774e-01\\n-2.03244328e-01 -3.98762137e-01 -1.35912657e-01 1.33407190e-02\\n3.23684692e-01 5.33060841e-02 -1.17308073e-01 6.17803186e-02\\n-1.08587161e-01 -6.29146039e-01 5.15846163e-02 1.26124740e-01\\n3.77395570e-01 2.07045555e-01 2.20774740e-01 3.84604111e-02\\n9.90462825e-02 5.46254754e-01 -2.32597291e-01 -1.92428708e-01\\n2.06738725e-01 1.78939059e-01 1.58438459e-01 -1.97715014e-01\\n2.98980679e-02 2.06530586e-01 -3.94860208e-01 1.95623767e-02\\n1.55059248e-01 -1.99543126e-02 4.17134285e-01 -4.39672433e-02\\n-3.22034687e-01 -1.18730247e-01 -1.37025416e-02 7.95559287e-02\\n-5.45453846e-01 -2.97409385e-01 7.49153376e-01 1.33132815e-01\\n-3.45483720e-02 1.73544973e-01 -5.47120348e-03 1.17789224e-01\\n-2.64169455e-01 -1.67102486e-01 4.16701972e-01 9.25823152e-02\\n1.11929893e-01 1.23912819e-01 -2.91907527e-02 -5.62133372e-01\\n-3.94764233e+00 -2.21454591e-01 1.80969238e-01 -1.81031197e-01\\n2.53551215e-01 -1.42856836e-01 1.13700882e-01 -3.54639478e-02\\n-2.13742614e-01 7.69787505e-02 -1.80049315e-01 -9.10034925e-02\\n2.98240036e-02 2.01403201e-01 1.53158903e-01 3.01327735e-01\\n1.75809562e-01 -1.53357267e-01 7.94503372e-03 4.18291956e-01\\n-1.44939274e-01 -6.75106347e-01 2.44357184e-01 3.86985093e-02\\n2.07101688e-01 2.43951932e-01 -4.12645280e-01 -9.45634022e-02\\n-3.33640009e-01 -1.82919443e-01 7.93724656e-02 -2.75510192e-01\\n-1.87589139e-01 1.76081941e-01 2.25857407e-01 -1.78290501e-01\\n6.95392638e-02 -4.86219704e-01 -2.33247787e-01 -5.57718277e-01\\n1.28402740e-01 -5.32841563e-01 -1.63864374e-01 -2.34032068e-02\\n6.86088443e-01 -1.97434127e-01 2.12084472e-01 -2.54952833e-02\\n2.22779550e-02 1.29567474e-01 2.43963659e-01 1.63500637e-01\\n-1.31249905e-01 -3.08083117e-01 -1.07815385e-01 -1.04557678e-01\\n5.79446673e-01 3.23098987e-01 -4.66593094e-02 -7.38661885e-02\\n5.29460274e-02 -1.61190808e-01 -5.19420564e-01 -2.08581209e-01\\n-1.26669779e-01 -1.59519970e-01 -6.36324763e-01 -4.52374220e-01\\n-1.60976708e-01 -2.79710531e-01 -9.40341577e-02 5.71674764e-01\\n-3.10929418e-01 -2.44900167e-01 -1.69763267e-01 -4.39508677e-01\\n3.75844210e-01 -7.57706538e-02 3.02525554e-02 -2.03929782e-01\\n-2.18563676e-01 -3.87130737e-01 5.51697016e-02 1.14703119e-01\\n8.12435895e-03 -2.79399157e-01 1.87582463e-01 -5.83585724e-02\\n-2.33685344e-01 -5.00634670e-01 3.65390092e-01 1.67401075e-01\\n1.53983906e-01 1.68915793e-01 3.45447600e-01 -1.61245897e-01\\n2.19978124e-01 6.26730397e-02 -2.18038931e-01 -4.35719252e-01\\n-7.95871392e-03 -1.12998739e-01 2.88545251e-01 5.66942990e-03\\n-2.69833282e-02 -1.45034138e-02 -2.01553047e-01 -6.13385998e-02\\n3.99099529e-01 -9.10937488e-02 2.10542917e-01 6.01239428e-02\\n1.29313022e-01 -1.40563592e-01 -1.03979647e-01 -6.82359412e-02\\n-5.41637801e-02 5.46680391e-01 6.97013438e-02 -3.32642347e-01\\n-1.10638216e-02 5.62430859e-01 -4.88555729e-02 3.40930462e-01\\n-2.90427327e-01 4.43888977e-02 -2.28580385e-01 2.62806803e-01\\n-7.70779252e-02 -1.76226318e-01 -1.06690668e-01 -1.54645875e-01\\n-6.73477724e-02 2.71901786e-01 1.67708233e-01 1.47525668e-01\\n9.11052898e-03 -2.92391121e-01 -1.27843246e-01 1.95279688e-01\\n2.65807360e-01 5.91725051e-01 1.84523180e-01 -2.05751956e-01\\n-7.67403170e-02 2.82037854e-01 -2.63195753e-01 2.51173735e-01\\n-2.92140335e-01 2.47334033e-01 -4.97321904e-01 -2.43594617e-01\\n-4.20798004e-01 -4.55444515e-01 1.33028090e-01 3.27022016e-01\\n1.11824915e-01 -1.92242235e-01 1.73050493e-01 -4.78143394e-01\\n1.37256801e-01 2.05488786e-01 9.57686007e-02 1.73359513e-01\\n1.06840869e-02 5.20275474e-01 6.38638530e-03 -1.94139704e-01\\n-1.74674451e-01 1.43114805e-01 -6.24279603e-02 -1.31330520e-01\\n9.93070379e-03 -6.07772827e-01 -1.80330142e-01 4.01308715e-01\\n1.54932499e-01 -1.62273854e-01 -1.38392806e-01 4.12985086e-01\\n-2.34765001e-02 -2.85152435e-01 -2.99318463e-01 -8.95058513e-02\\n2.84278005e-01 7.00266212e-02 2.85052121e-01 -4.21257734e-01\\n-1.10147506e-01 -6.06728010e-02 -1.76553000e-02 4.35293674e-01\\n3.07011977e-03 9.49329585e-02 -1.16761863e-01 -1.28300652e-01\\n3.17327321e-01 1.20570939e-02 -5.44656403e-02 3.04063261e-02\\n1.75823092e-01 -2.05140948e-01 -3.69727254e-01 1.97816283e-01\\n2.79976912e-02 -3.33476126e-01 -3.11218482e-02 2.29069769e-01\\n4.03233208e-02 1.76239967e-01 -6.39955282e-01 -2.23328933e-01\\n-3.68789375e-01 8.23318399e-03 2.99215261e-02 -6.71709299e-01\\n-4.04630378e-02 -2.07612827e-01 -4.10776556e-01 3.43104839e-01\\n6.34002611e-02 -2.35280588e-01 2.28734717e-01 1.14739686e-01\\n-2.38524601e-01 -4.79914322e-02 -2.55090408e-02 1.89372674e-01\\n-2.51750112e-01 -2.28531092e-01 -2.58771069e-02 -1.04859900e+00\\n2.40671605e-01 1.63684651e-01 -1.40454948e-01 1.21072985e-01\\n-2.36333907e-01 -5.74760556e-01 1.61852688e-01 -2.78525472e-01\\n-2.44845301e-01 -7.42048845e-02 -2.55428582e-01 -3.58862489e-01\\n9.23467875e-02 8.73806924e-02 -2.32250512e-01 4.52167392e-01\\n-2.54099667e-01 3.05973887e-01 -2.51253486e-01 5.38473204e-02\\n-2.23680437e-02 -3.16661716e-01 1.51145816e-01 -3.03030133e-01\\n-4.84323025e-01 -1.80845141e-01 -3.14035684e-01 -1.72937632e-01\\n-1.64167099e-02 -4.22721803e-01 -1.31323412e-01 3.66606824e-02\\n4.01354581e-01 8.46928805e-02 -2.46287227e-01 -2.68915147e-01\\n-2.20570248e-04 -5.02850175e-01 9.30902064e-02 -6.18607551e-03\\n-9.14471895e-02 -2.32242167e-01 3.36830258e-01 1.05769739e-01\\n3.40727031e-01 -3.48002017e-01 3.25387418e-01 -4.50710773e-01\\n-2.30001152e-01 -6.25995323e-02 2.32579429e-02 -4.34126332e-02\\n2.73882389e-01 -5.20508349e-01 -1.20421767e-01 2.66817212e-01\\n1.73854098e-01 -8.51445049e-02 3.24640393e-01 -1.77047774e-01\\n-1.28683537e-01 5.24109721e-01 -3.35807651e-01 1.87891781e-01\\n7.71039724e-01 4.58810255e-02 2.22254276e-01 2.90707409e-01\\n2.35723257e-01 3.84947002e-01 3.53067577e-01 -1.05397254e-01\\n-1.06983423e-01 3.25383604e-01 1.71505153e-01 -5.50171137e-01\\n4.29351665e-02 7.34012127e-02 -1.00883245e-01 -3.77746075e-01\\n6.61653340e-01 3.28182697e-01 -4.88130629e-01 -1.97904333e-02\\n-2.12527037e-01 -2.63930142e-01 2.65029728e-01 -7.83672631e-02\\n-4.02277224e-02 -1.92227811e-02 3.97215724e-01 -3.30482349e-02\\n3.18275034e-01 5.40801764e-01 -2.46287823e-01 -3.21044952e-01\\n-1.06650002e-01 3.03066045e-01 -6.22306094e-02 6.77918434e-01\\n-2.86907792e-01 3.26790154e-01 -3.37926298e-03 1.22265533e-01\\n-1.48329409e-02 2.38707870e-01 2.32175916e-01 1.27275273e-01\\n1.68684274e-01 1.46489263e-01 6.15396261e-01 3.49223256e-01\\n3.92903328e-01 2.98387706e-01 3.06499422e-01 1.14283830e-01\\n3.29346895e-01 4.15820837e-01 3.07956100e-01 -3.50653417e-02\\n2.65976656e-02 -1.27079263e-02 2.82396376e-01 7.64356926e-03\\n3.31102073e-01 4.95255589e-01 -1.16407536e-02 8.13368917e-01\\n3.81755292e-01 3.30624819e-01 6.30647540e-01 -6.30690098e-01\\n-2.15685636e-01 1.46872848e-02 3.83711755e-01 -4.11241919e-01\\n1.76732212e-01 2.50810206e-01 -1.34737775e-01 1.66641891e-01\\n-3.53505015e-01 -3.70308578e-01 -2.35846695e-02 1.63096651e-01\\n-7.22845942e-02 -4.17674065e-01 -1.20729670e-01 1.65907383e-01\\n6.19453378e-02 -7.16656297e-02 -4.13753211e-01 -1.23452649e-01\\n-2.19013140e-01 4.36485335e-02 -1.54438496e-01 1.04949269e-02\\n-1.48485333e-01 -1.88259929e-01 3.02355010e-02 -5.32700345e-02\\n1.56755939e-01 -5.27805276e-03 1.26039423e-02 -7.82055855e-02\\n3.42981815e-01 1.35030523e-01 4.55368638e-01 1.24912597e-02\\n4.63825725e-02 -1.82033420e-01 -1.86582953e-01 2.30203599e-01\\n3.48383963e-01 1.30817536e-02 -4.37957495e-02 1.54901505e-01\\n-8.08587968e-02 -2.76071846e-01 2.65143335e-01 2.46993884e-01\\n-4.08186436e-01 1.74535476e-02 -1.52755722e-01 2.31162786e-01\\n2.76306085e-02 1.86376497e-01 -9.97461155e-02 2.46973168e-02\\n-1.50751829e-01 -4.15521204e-01 1.17535584e-01 -8.24429616e-02\\n-1.69555515e-01 1.32224895e-02 3.77371758e-01 3.35330486e-01\\n-2.99781621e-01 3.06778345e-02 -1.12416171e-01 1.21003404e-01\\n-1.14030302e-01 1.70745701e-01 -1.28754660e-01 -2.81391144e-01\\n-3.28848183e-01 1.49257451e-01 -4.51760553e-02 1.01898402e-01\\n4.68550436e-02 2.63695002e-01 1.40488725e-02 4.00250629e-02\\n3.89912277e-01 -9.32000726e-02 -1.88357100e-01 -1.33996591e-01\\n-2.88251102e-01 7.23837093e-02 -6.42600060e-02 -1.68910474e-01\\n2.40446597e-01 -3.39556009e-01 -1.02752298e-02 -1.25127956e-01\\n-5.28026633e-02 -3.32377017e-01 1.13458291e-01 -1.24936044e-01]]',\n", + " 'job_description': \"You will work in Global Logistics business development and derive and define from our strategy and future business potentials concrete project opportunities in the field of trainings, digital media and communication. You can drive, lead and implement global logistics projects with focus on competencies and trainings. You design and create digital media supported communication materials to strengthen our offering in transfer of knowledge and communication in an effective, target group-oriented approach. Who is Hilti? If you’re new to the industry, you might not have heard of us. We provide leading-edge tools, technologies, software and services for the global construction sector. We have a proud heritage, built over 75 years, and a worldwide reputation for pioneering products and exceptional service. With some 29,000 people in more than 120 countries, which we’re looking to expand, we’re a great place for you to show us your worth, step up to new challenges and grow your career. What does the role involve? You lead and drive project execution within global logistics where design tasks play a key role. You drive the learning experience of your stakeholders through training program and platform design. You ensure proper implementation including hand-over and trainings to the end users. You know which methods contribute to understanding a communicative problem in all its complexity. You formulate precise communication goals and define the working steps necessary to achieve a specific goal. Out of the box thinking and creativity helps to find innovative solutions. You design required film and picture material to serve your stakeholders requirements. After a sound analysis and fact base of the as-is situation you define the required steps to achieve the targeted solution. You manage the change with different stakeholder groups and communicate regularly to our management team. Our department drives overarching, cross-functional initiatives in a global set-up and it’s your opportunity to be part of this. What do we offer? Show us what you’re made of and we’ll offer you opportunities to move around the business – to work abroad, experience different job functions and tackle different markets. It’s a great way to find the right match for your ambitions and achieve the exciting career you’re after. We have a very thorough people review process, unlike any we know of in any other business. We screen everyone in the company in a yearly career performance matching process. It means we can pair talent with opportunities - developing our people in their current roles or challenging them to work in new ways or in new places. It’s how we find the right fit and further our teams personally and professionally. Additionally, we offer you a competitive salary and a wide range of benefits, these may include day care for your kids or a free in-house gym. Why should you apply? Within this role you have a unique chance to connect with many people in a wide variety of roles across our global organisation. Hilti's unique company culture stands for an ambitious but caring working environment. If you are looking to develop your career with a global player and international innovation driver and want to be part of a great, international team, we strongly appreciate your application. What you need is: A University degree ideally in Supply Chain or Media related Arts and Design Excellent networking and interpersonal communication skills Experience in project management, film production, photography and interactive design Ideally functional expertise in logistics and/or communications Fluent in English any other language a clear benefit\",\n", + " 'soft_skills': '[\"Professionalism\", \"Construction\", \"Interpersonal Communications\", \"Management\", \"Communications\", \"Distributed Team Management\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Stakeholder Requirements\", \"Global Logistics\", \"Supply Chain\", \"Industrialization\", \"European Training Programs\", \"Films\", \"Digital Media\", \"Idealization\", \"Executable\", \"Hostile Work Environment\", \"TARGET 3001!\", \"Cross-Functional Coordination\", \"Logistics\", \"Personalization\", \"Product Photography\", \"Project Management\", \"Interactive Design\", \"Additives\", \"Derivatives\", \"Media Relations\", \"Business Development\"]',\n", + " 'languages': \"['English', 'Macedonian']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'embedded software engineer',\n", + " 'location': 'Baden',\n", + " 'industry': 'Electrical & Electronic Manufacturing',\n", + " 'website': 'www.abb.com',\n", + " 'jobdescription_embedded': '[[ 9.44455937e-02 8.19157958e-02 5.63502014e-01 -5.08848056e-02\\n3.50969344e-01 -2.76040912e-01 1.35221630e-01 4.39686060e-01\\n-7.29296496e-03 -5.64344585e-01 1.68385301e-02 -3.31927925e-01\\n-7.71635994e-02 3.30822080e-01 7.84534141e-02 4.18443978e-01\\n2.33627394e-01 2.24189907e-01 -5.43862756e-04 3.76309365e-01\\n3.00296783e-01 -1.11178532e-01 3.19490731e-01 7.81470060e-01\\n5.00186384e-01 -6.43389253e-03 -2.03709714e-02 -7.39227235e-02\\n-1.69755980e-01 -1.86947197e-01 4.51649994e-01 -6.46332875e-02\\n-4.97290678e-02 -3.76096576e-01 1.77508175e-01 -1.00913970e-02\\n-3.07140112e-01 -3.19499522e-01 -4.56102341e-02 1.97524652e-01\\n-6.06874764e-01 -3.33050638e-01 1.42538724e-02 9.72480476e-02\\n-1.78674817e-01 -3.15128088e-01 4.44012880e-02 1.24002632e-03\\n1.55759931e-01 4.79675159e-02 -3.24427664e-01 2.61151373e-01\\n-8.45210701e-02 -1.46565199e-01 1.67618081e-01 5.33854008e-01\\n-1.25312686e-01 -3.62050444e-01 -5.42131126e-01 -3.03777784e-01\\n1.04489349e-01 -3.23164687e-02 6.64573982e-02 -3.28283191e-01\\n1.78316414e-01 1.38283700e-01 6.71447292e-02 3.86733562e-01\\n-8.10554385e-01 -7.17492104e-02 -2.34958604e-01 -1.59622386e-01\\n-1.70426518e-01 -1.31457970e-01 -2.15910524e-01 -1.86017692e-01\\n-3.30140442e-01 4.40005094e-01 1.24550775e-01 -3.98064889e-02\\n-1.28412932e-01 3.68464947e-01 -2.82093316e-01 3.35493565e-01\\n1.45991147e-01 2.73889422e-01 6.49796352e-02 1.82568297e-01\\n-2.84798414e-01 6.21928215e-01 -3.85314934e-02 -2.73899406e-01\\n1.80488214e-01 1.93990231e-01 4.08272952e-01 -3.46982121e-01\\n2.69452423e-01 -1.48110688e-01 -4.16598380e-01 3.68031174e-01\\n2.74698526e-01 -2.59090900e-01 2.07451329e-01 -1.32720396e-01\\n-1.69383287e-02 6.57975227e-02 1.89303588e-02 3.90754826e-02\\n-1.10728025e-01 3.34800750e-01 1.19307578e-01 -5.96255511e-02\\n-1.52843833e-01 -3.19730073e-01 -2.44778022e-02 3.54123637e-02\\n1.69239059e-01 7.44370222e-02 1.27002433e-01 4.07956056e-02\\n3.29249859e-01 -6.86074421e-02 -1.40775423e-02 7.91250110e-01\\n-4.14038412e-02 3.44226435e-02 -3.03046018e-01 1.90383583e-01\\n-1.24875885e-02 -3.24122757e-01 4.27497447e-01 2.57954508e-01\\n-2.78365482e-02 -3.52918565e-01 -2.17592463e-01 4.37834114e-01\\n1.41081452e-01 -1.64363578e-01 8.35175347e-03 2.56889999e-01\\n-2.13042516e-02 -3.59973967e-01 6.68168604e-01 1.41048953e-01\\n1.97151482e-01 -8.83003175e-02 1.03019504e-02 -2.09597439e-01\\n-3.99627313e-02 1.15589567e-01 -4.47824486e-02 -9.88535509e-02\\n-2.02743039e-01 -1.84443504e-01 -1.99140027e-01 -1.85560465e-01\\n-3.06696892e-01 2.15332791e-01 -1.45277334e-03 1.16878739e-02\\n1.73185199e-01 -2.29488052e-02 -1.53873354e-01 3.33860338e-01\\n-1.91176489e-01 9.26422924e-02 8.44702572e-02 2.14684725e-01\\n-3.33916724e-01 1.40199840e-01 -1.45089298e-01 -2.95139104e-01\\n6.12009406e-01 1.40692964e-01 1.04293779e-01 1.08021639e-01\\n2.85288215e-01 -2.04046932e-03 -7.12855160e-02 2.24155709e-01\\n-6.95347726e-01 3.54402214e-01 -1.69917084e-02 -2.34084100e-01\\n2.01069131e-01 -9.71908644e-02 2.08226830e-01 -9.05465111e-02\\n1.25118181e-01 -3.41816922e-04 -3.44321370e-01 -1.58369228e-01\\n-6.73106685e-02 -1.87789146e-02 2.63772607e-01 -4.01616484e-01\\n-2.58740604e-01 5.88964298e-02 -3.81265372e-01 -1.76473528e-01\\n8.97735134e-02 1.54854015e-01 1.68160468e-01 1.23055570e-01\\n-2.55390167e-01 -2.80643344e-01 2.48652622e-02 -2.87167042e-01\\n-9.85697377e-03 -1.03435092e-01 -3.42951089e-01 1.04550891e-01\\n1.34153083e-01 2.18130695e-03 -1.66670367e-01 -4.54536900e-02\\n-7.90764242e-02 -1.09120041e-01 -7.47692510e-02 3.42213288e-02\\n2.22355321e-01 7.39929453e-02 -3.76479417e-01 2.46167049e-01\\n4.24047932e-02 6.74152911e-01 -3.15958913e-03 -6.32288039e-01\\n2.51921892e-01 4.10951376e-01 1.63629986e-02 -3.94905686e-01\\n6.04256809e-01 -2.03794643e-01 -4.64639515e-02 7.96079412e-02\\n-5.78041494e-01 -4.00112897e-01 2.23781183e-01 -2.65668094e-01\\n-1.62301823e-01 2.95313567e-01 6.50481731e-02 2.27765158e-01\\n8.82459208e-02 -1.86405927e-01 -3.94323654e-03 3.95162813e-02\\n3.00392527e-02 -3.59372228e-01 -4.80258614e-01 -2.26390854e-01\\n-1.08292773e-01 -1.85057580e-01 -6.70908093e-02 -5.54728091e-01\\n-1.72343016e-01 -3.20154458e-01 -1.11754857e-01 2.23503318e-02\\n3.53846848e-01 -1.61104873e-01 7.61720017e-02 -2.01956201e-02\\n-1.27225384e-01 -5.95888853e-01 4.19439524e-02 1.51977643e-01\\n4.34980184e-01 9.41428021e-02 1.58808127e-01 7.91271999e-02\\n3.08799557e-02 7.31841266e-01 -5.17323986e-02 1.35452384e-02\\n3.36634845e-01 1.63595289e-01 2.91258637e-02 -7.08558634e-02\\n1.95284531e-01 2.73507267e-01 -3.05921912e-01 -8.49243030e-02\\n-1.47697851e-01 -3.53786610e-02 3.74224454e-01 8.98819044e-02\\n-2.78714418e-01 -1.27261341e-01 -9.57526565e-02 -5.27788140e-02\\n-4.67785060e-01 -8.71129483e-02 5.62344134e-01 1.77540407e-01\\n1.99571848e-01 2.15717405e-01 1.30024254e-01 3.50807831e-02\\n-9.59059000e-02 -2.74598867e-01 1.31242633e-01 1.92393079e-01\\n1.42739356e-01 1.58372849e-01 8.66615251e-02 -4.77718532e-01\\n-3.21362376e+00 -1.27706468e-01 3.26143615e-02 -2.68081337e-01\\n2.05809757e-01 -3.82707305e-02 7.37870336e-02 2.11014859e-02\\n-2.93290764e-01 1.11339755e-01 -1.72796607e-01 -2.04338148e-01\\n3.88372153e-01 8.05683434e-02 1.24325275e-01 2.46699095e-01\\n2.55205095e-01 -2.48132244e-01 -1.07070617e-01 3.39558244e-01\\n-2.23342210e-01 -6.05645299e-01 1.08856656e-01 -9.45410728e-02\\n4.60526258e-01 1.76293656e-01 -2.54504383e-01 -2.29922578e-01\\n-1.65887669e-01 -1.37719348e-01 1.15290739e-01 -3.51856679e-01\\n-1.59016680e-02 2.42202967e-01 1.70210123e-01 -7.53217414e-02\\n1.73121825e-01 -3.95802498e-01 -1.84000269e-01 -3.22794557e-01\\n8.42883363e-02 -4.82069016e-01 -9.83572453e-02 -5.14811054e-02\\n7.75866330e-01 -3.32187623e-01 1.04762517e-01 1.16812140e-01\\n7.87405148e-02 2.11078182e-01 2.33645082e-01 1.43218964e-01\\n-7.97652751e-02 -4.58181322e-01 -1.20451055e-01 -1.96667109e-03\\n3.83032233e-01 6.11046851e-01 -1.33877143e-01 -1.93955660e-01\\n7.84833804e-02 -1.36416361e-01 -3.51072460e-01 -9.84001756e-02\\n-1.37892693e-01 -2.94640511e-01 -6.61565542e-01 -3.89979810e-01\\n-4.98056822e-02 -9.31452215e-02 -2.25687966e-01 5.78052580e-01\\n-3.16207737e-01 -2.44107723e-01 -3.19399349e-02 -3.02168846e-01\\n3.49516004e-01 -2.80135125e-02 3.74437869e-02 -2.39450470e-01\\n-2.09895670e-01 -3.71009320e-01 -2.48589981e-02 1.29967764e-01\\n8.83619562e-02 -2.92860776e-01 2.01229677e-01 -8.56387392e-02\\n-3.23801994e-01 -4.06084776e-01 2.40027636e-01 1.90647408e-01\\n2.10866034e-01 1.81887999e-01 2.46568084e-01 -1.08552910e-01\\n1.01922199e-01 4.67082523e-02 -5.03175519e-02 -3.43639135e-01\\n7.68815577e-02 5.68023324e-02 3.76061589e-01 -1.56299278e-01\\n-4.53602336e-02 4.25811764e-03 -2.26291105e-01 -1.34856224e-01\\n2.04281479e-01 -1.97058305e-01 8.05095062e-02 -4.54995558e-02\\n2.25895807e-01 -1.75859019e-01 3.35132740e-02 -1.32233098e-01\\n8.30542892e-02 5.35013199e-01 -9.71869752e-02 -2.91745096e-01\\n-1.09304696e-01 4.72423226e-01 -3.31872627e-02 -8.99708495e-02\\n-2.45047897e-01 -4.56154011e-02 -2.69466490e-01 2.54187733e-01\\n-3.05677764e-03 -2.20200762e-01 -2.15338156e-01 -1.99912146e-01\\n-1.98552936e-01 3.01215798e-01 2.15023547e-01 1.47305392e-02\\n-1.15542058e-02 -6.41823530e-01 -1.27334923e-01 3.29276323e-01\\n1.98866010e-01 5.29311478e-01 5.62018678e-02 -1.49173990e-01\\n5.27883396e-02 4.30156589e-01 -1.45481661e-01 1.85976923e-01\\n-2.19328642e-01 9.48670357e-02 -3.97800267e-01 -2.93729365e-01\\n-3.20212513e-01 -3.63587707e-01 5.07303476e-02 2.90860862e-01\\n2.12402880e-01 2.30785441e-02 1.42129272e-01 -4.96962368e-01\\n1.86539158e-01 1.45900780e-02 1.97389245e-01 1.61676094e-01\\n6.99649286e-03 5.04018247e-01 7.32800290e-02 -2.58128405e-01\\n-7.83297867e-02 -8.96098763e-02 -1.92659065e-01 6.46668896e-02\\n3.63535993e-02 -5.02627850e-01 -1.32412851e-01 5.23041010e-01\\n1.11213453e-01 -4.58703339e-01 -1.41389631e-02 2.75449008e-01\\n-3.86839621e-02 -2.23374858e-01 -3.79868358e-01 9.73156020e-02\\n3.35787833e-01 -1.24054300e-02 3.97544742e-01 -4.82110023e-01\\n1.87838823e-02 4.01211604e-02 -1.09320797e-01 3.96244347e-01\\n-1.34764379e-03 -9.03705359e-02 -3.43555748e-01 -3.56148869e-01\\n3.28660697e-01 -3.49560380e-01 -1.68091938e-01 1.48189038e-01\\n-9.82989818e-02 -5.67697026e-02 -5.49072087e-01 5.75330928e-02\\n2.58149467e-02 -2.37905443e-01 -7.42336363e-02 2.20078424e-01\\n6.35638684e-02 1.33077085e-01 -5.31428874e-01 -3.21336210e-01\\n-2.04310462e-01 6.72797710e-02 2.32783869e-01 -4.82693374e-01\\n-9.54718217e-02 -1.19405188e-01 -4.76042122e-01 1.44646332e-01\\n-7.67546520e-02 -2.05383465e-01 2.89014608e-01 -6.78008795e-02\\n-2.32997820e-01 1.08635791e-01 -7.49682337e-02 3.77301484e-01\\n-2.78715938e-01 -3.62616211e-01 -7.87638053e-02 -9.38132584e-01\\n1.04415484e-01 4.44545090e-04 -1.22815266e-01 2.24401146e-01\\n-2.10810497e-01 -6.81899428e-01 7.30247721e-02 -2.38315985e-01\\n-7.75491819e-02 -1.98459625e-01 -1.47122890e-01 -6.17725074e-01\\n9.21134949e-02 3.67256626e-02 -2.69750655e-01 4.78108823e-01\\n-1.57720134e-01 2.34296352e-01 -2.26533115e-01 -1.31450146e-02\\n-1.79156929e-01 -3.71780127e-01 3.11059862e-01 -5.66659153e-01\\n-3.47285718e-01 -6.33208081e-02 -4.06613290e-01 -2.90342480e-01\\n-2.55671024e-01 -2.17174739e-01 -1.48582747e-02 1.42903924e-01\\n2.50248790e-01 3.47621419e-04 -2.03440398e-01 -3.05097580e-01\\n1.36327922e-01 -6.15627408e-01 6.71369806e-02 4.54327799e-02\\n-1.80895597e-01 -9.97001976e-02 1.11819811e-01 1.29602730e-01\\n2.22770259e-01 -5.11447251e-01 8.74531493e-02 -5.91291428e-01\\n-3.03895891e-01 1.13610886e-01 4.38556708e-02 1.03639066e-02\\n3.44823927e-01 -3.51157576e-01 -1.19346000e-01 2.50242084e-01\\n1.16898037e-01 5.75972125e-02 2.25279734e-01 3.98896858e-02\\n-8.93052816e-02 2.18623236e-01 -1.11724257e-01 1.80145100e-01\\n8.07665169e-01 -3.82628664e-02 1.16244428e-01 2.39452764e-01\\n7.68164769e-02 2.05941901e-01 3.17413390e-01 9.55351628e-03\\n-1.07600510e-01 2.07584918e-01 1.65418819e-01 -4.05929059e-01\\n1.09308343e-02 7.45122880e-02 -8.57119858e-02 -3.43335658e-01\\n5.62768221e-01 5.83105683e-01 -4.34369296e-01 -8.02773908e-02\\n-2.01161817e-01 -1.32535130e-01 -1.46283492e-01 -1.08907737e-01\\n5.08581549e-02 -3.35581861e-02 4.59822893e-01 -1.18309528e-01\\n1.98013857e-01 4.46396947e-01 -1.28376156e-01 -2.63805896e-01\\n-1.29928187e-01 2.46007517e-01 -1.36377230e-01 2.99094707e-01\\n-1.86225832e-01 4.51189786e-01 3.33295646e-03 -7.89308269e-03\\n3.44015472e-02 1.43721476e-01 -5.31604923e-02 1.64403096e-01\\n2.57151723e-02 2.34947771e-01 4.47311908e-01 2.78538823e-01\\n3.43313724e-01 2.46951282e-01 2.01369703e-01 2.73908973e-01\\n4.32493299e-01 3.41295451e-01 3.28536987e-01 1.80722520e-01\\n-1.66969493e-01 -1.67034850e-01 2.23061427e-01 -1.02027925e-02\\n2.74556816e-01 3.16698849e-01 8.14201385e-02 8.30318570e-01\\n2.16436699e-01 4.17690068e-01 7.69516468e-01 -5.66127598e-01\\n-3.51016462e-01 -1.21938698e-01 3.46753716e-01 -3.02452326e-01\\n-2.77351458e-02 6.54722974e-02 8.17182958e-02 1.91140622e-01\\n-3.84580553e-01 -2.14866295e-01 -7.41764009e-02 4.19903427e-01\\n-1.29716927e-02 -3.57169569e-01 -1.46903768e-01 1.48658946e-01\\n-1.55098394e-01 4.79572453e-03 -6.50560617e-01 -5.31746494e-03\\n-3.07356194e-02 -2.35623032e-01 -2.00663209e-01 -1.61033690e-01\\n8.27816315e-03 -3.17662925e-01 2.50534546e-02 -1.25128021e-02\\n2.05654472e-01 2.26222705e-02 -6.37163445e-02 -1.22207463e-01\\n3.95160764e-01 1.18295871e-01 4.28587854e-01 -5.12531251e-02\\n2.27269307e-01 -2.57274747e-01 -1.91123277e-01 7.90884495e-02\\n3.91663879e-01 3.40597369e-02 -5.86856119e-02 1.36408791e-01\\n-1.55783832e-01 -5.58848307e-02 9.23187286e-02 1.72170177e-01\\n-4.31719422e-01 1.47555500e-01 -1.45519406e-01 1.19274996e-01\\n1.65213689e-01 1.08521074e-01 -1.65876150e-01 -4.70097130e-03\\n-1.69363707e-01 -3.52916181e-01 6.09842241e-02 -8.54521021e-02\\n-2.09128663e-01 6.20565936e-02 2.18479842e-01 2.39659548e-01\\n-2.32759282e-01 1.37871429e-01 -6.60920143e-02 5.27954213e-02\\n1.25214398e-01 1.65092751e-01 -2.77583569e-01 -4.04194832e-01\\n-2.70463765e-01 4.47819419e-02 -2.66466200e-01 7.59509951e-02\\n1.09994300e-01 4.21287537e-01 1.20219663e-01 -1.25737451e-02\\n4.97084409e-01 -2.33047187e-01 -1.74440071e-01 -1.36895373e-01\\n-2.20770702e-01 -1.71705157e-01 -1.18277475e-01 3.76205035e-02\\n7.50041977e-02 -3.03812832e-01 4.59756411e-04 -2.19658047e-01\\n2.19671056e-02 -2.26559922e-01 1.80308178e-01 -3.30553919e-01]]',\n", + " 'job_description': 'Our global R&D team in Substation Automation area within the Power Grids currently has an opening for an Embedded Software Developer. Do you combine an excellent understanding of software engineering with the ability to improve your skills continuously as technology evolves? Imagine what we could achieve together. Join us!Your responsibilitiesYour backgroundMore about usBring your very own sense of pride and purpose as you help us drive forward the Fourth Industrial Revolution – creating a sustainable future for our planet, and your career. Join ABB and harness the power of our diverse global network, as you collaborate with and learn from our world-class teams. Above all, challenge yourself every day. Let’s write the future, together. It is an exciting time to join ABB Power Grids. ABB and Hitachi have signed an agreement to create a joint venture (JV). By combining ABB Power Grids’ with Hitachi’s complementary strengths, we plan to form a new and stronger global leader in the power sector. ABB Power Grids and Hitachi will have more than 230 years of combined heritage and experience. Together, we will be well-positioned to shape the future of energy, with pioneering technologies, as the partner of choice for enabling a stronger, smarter and greener grid. The transaction is expected to be completed by the first half of 2020, subject to regulatory approvals. Join us on this exciting journey. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Tamara Hofmann Talent Partner Phone: +41 79 627 53 03 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer',\n", + " 'soft_skills': '[\"Collaboration\", \"Writing\", \"Planning\"]',\n", + " 'hard_skills': '[\"Automation\", \"Tooling\", \"Imagine (3D Modeling Software)\", \"Receivables\", \"Library For WWW In Perl\", \"Component Object Model (COM)\", \"Sustainability\", \"Embedded Software\", \"Joint Ventures\", \"Software Engineering\", \"Industrialization\"]',\n", + " 'languages': \"['English', 'Zulu']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.88269430e-01 2.94415712e-01 4.65653837e-01 3.20367999e-02\\n4.92364705e-01 -2.39974439e-01 4.56440225e-02 4.08633798e-01\\n-6.60782233e-02 -3.07340473e-01 -4.99879420e-02 -3.57966393e-01\\n-9.61383581e-02 5.20589724e-02 1.92756921e-01 5.40300012e-01\\n1.87373698e-01 1.09871030e-01 -1.71182752e-01 2.59725928e-01\\n1.42362937e-01 -1.25704765e-01 -1.36242777e-01 6.12491786e-01\\n4.32368129e-01 1.18007004e-01 -1.07605234e-01 7.32942373e-02\\n-3.29941064e-01 -3.53537619e-01 3.49485755e-01 1.35626510e-01\\n-1.16302557e-01 -2.76263446e-01 2.23853681e-02 1.38314828e-01\\n-2.66342759e-01 1.49740279e-01 -1.62441775e-01 2.28874490e-01\\n-5.21949828e-01 -3.80610555e-01 1.24726042e-01 5.69287576e-02\\n-2.30980337e-01 -5.01978517e-01 7.23628253e-02 -3.05285007e-02\\n1.09335929e-01 6.63760398e-03 -4.89709556e-01 3.88951659e-01\\n-3.05253148e-01 -8.65540206e-02 2.22193271e-01 6.54473662e-01\\n1.17712185e-01 -6.19670570e-01 -3.76711220e-01 -2.44475782e-01\\n1.50301576e-01 -1.77701354e-01 -9.41498484e-03 -2.03335077e-01\\n5.17016411e-01 -4.54563851e-04 6.75522164e-02 3.42320621e-01\\n-7.57416010e-01 5.64196780e-02 -3.46332759e-01 9.00896564e-02\\n-4.55955803e-01 1.02034509e-01 -4.42752272e-01 -1.41146794e-01\\n-9.41302851e-02 3.13929319e-01 -4.72511426e-02 -3.22457924e-02\\n-1.46124184e-01 2.57565498e-01 -2.47943297e-01 1.48762167e-01\\n4.10624862e-01 1.33050188e-01 1.75440699e-01 4.01848853e-01\\n-4.85546678e-01 4.60051149e-01 2.22902313e-01 -2.23825961e-01\\n1.53370634e-01 1.62705094e-01 4.68522191e-01 1.93209842e-01\\n-1.46002352e-01 2.39386395e-01 -7.94379115e-02 3.35381895e-01\\n2.51808047e-01 -3.22899401e-01 -2.33118404e-02 -3.80338654e-02\\n-1.08537808e-01 -7.96778575e-02 2.23216135e-02 3.32087636e-01\\n-2.49405578e-02 4.29585963e-01 6.98812976e-02 -2.82362998e-01\\n3.15989330e-02 -6.76843107e-01 -2.32206449e-01 -5.72673269e-02\\n-8.31612796e-02 9.41125154e-02 2.68918991e-01 1.88929692e-01\\n1.42619118e-01 1.22361168e-01 1.45803049e-01 9.84593272e-01\\n-3.56659815e-02 1.46662146e-01 -3.42771411e-01 3.87273967e-01\\n2.31375441e-01 -1.02947369e-01 9.60003957e-02 2.71409214e-01\\n1.70765609e-01 -1.14817403e-01 -2.57995903e-01 2.82744199e-01\\n-1.83053941e-01 -1.74135938e-01 -3.14179838e-01 6.30063266e-02\\n-3.00478548e-01 -4.43784714e-01 5.34118712e-01 1.70564398e-01\\n1.72401741e-01 -6.15626872e-02 -7.76170567e-02 -7.75335729e-02\\n-5.96762970e-02 3.84190351e-01 1.36616379e-02 1.66177511e-01\\n-4.02474284e-01 -2.59148717e-01 -2.29905739e-01 3.73752713e-01\\n-5.01178838e-02 1.80127993e-01 -1.03990331e-01 -1.56563133e-01\\n3.36988568e-01 1.71260595e-01 -4.13469106e-01 1.93749726e-01\\n3.04330755e-02 -3.78943592e-01 -1.17401466e-01 3.68799865e-01\\n-2.40738094e-02 2.79067218e-01 -9.15336683e-02 -1.95646629e-01\\n5.87581933e-01 1.51379406e-01 2.17097074e-01 -1.96243688e-01\\n2.55245507e-01 -8.68586376e-02 2.38740906e-01 1.34917200e-01\\n-5.91969073e-01 5.58868766e-01 -2.94694286e-02 -2.50663590e-02\\n1.24925524e-01 1.57795876e-01 4.20997888e-01 -3.48696798e-01\\n-6.63081408e-02 -1.84676439e-01 -4.95259345e-01 -4.02716339e-01\\n-3.63201350e-01 1.06723115e-01 3.83304536e-01 -4.68432069e-01\\n-1.38331056e-01 3.06237906e-01 -6.14820957e-01 3.45885679e-02\\n2.12301895e-01 1.15671493e-01 1.21694863e-01 7.94289932e-02\\n-1.76821858e-01 -6.52069092e-01 1.13280021e-01 -4.75694895e-01\\n-4.46079373e-01 1.16742484e-01 -3.05171400e-01 2.74726480e-01\\n8.47948343e-02 1.32256150e-01 -1.17063478e-01 1.30361006e-01\\n-4.11757946e-01 8.03957954e-02 2.72610307e-01 2.37280726e-01\\n4.01941359e-01 -7.23059326e-02 -5.88317811e-01 4.64930117e-01\\n-1.68919563e-01 4.97859657e-01 3.22472930e-01 -8.22564006e-01\\n5.97204208e-01 1.51202470e-01 -8.07265937e-03 -3.30127418e-01\\n5.56988657e-01 -4.04959708e-01 -5.25767021e-02 2.07152545e-01\\n-3.21261585e-01 -1.85271740e-01 1.76528409e-01 -1.33488148e-01\\n-3.00491065e-01 5.81469536e-01 2.31704623e-01 2.19702050e-02\\n3.97684693e-01 -2.90044606e-01 -1.78917259e-01 -5.47224469e-02\\n-1.72405824e-01 -1.83843717e-01 -2.90238708e-01 1.16904005e-01\\n-6.23293184e-02 -6.24746144e-01 -2.48198256e-01 -3.72073293e-01\\n-2.36780941e-01 -3.40866953e-01 -2.02594623e-01 4.03384119e-01\\n-1.69117358e-02 1.97999984e-01 9.64366198e-02 1.79960020e-02\\n-1.31307647e-01 -7.31711149e-01 -1.81940123e-01 9.58087966e-02\\n4.74857628e-01 3.06269854e-01 2.04044715e-01 -2.15230018e-01\\n5.43423258e-02 5.20833135e-01 -3.91076326e-01 -5.10909975e-01\\n8.04083869e-02 8.38253573e-02 -2.09352896e-02 -4.89137657e-02\\n1.06654584e-01 3.47636938e-01 -1.47396967e-01 7.50367418e-02\\n-2.24379916e-02 -6.17144965e-02 2.97782183e-01 7.78684095e-02\\n-3.70039821e-01 -3.71601492e-01 -2.07914226e-02 3.22257519e-01\\n-5.85093915e-01 -1.73515260e-01 5.93572378e-01 2.70621628e-01\\n1.01286247e-01 6.59207925e-02 2.50757813e-01 -2.79402465e-01\\n-2.15501592e-01 -1.99446365e-01 1.39222890e-01 1.30496740e-01\\n1.39067909e-02 1.92791484e-02 -1.46118179e-01 -4.49922264e-01\\n-3.26628208e+00 -1.83848679e-01 1.29504561e-01 -2.57297575e-01\\n2.93382823e-01 -1.19348779e-01 1.17003702e-01 -9.17301793e-03\\n-3.43547434e-01 -2.31638812e-02 -1.62096292e-01 -8.59299004e-02\\n9.27341953e-02 3.08395326e-01 1.35128096e-01 2.46906385e-01\\n7.40614980e-02 -3.62794608e-01 -1.66733041e-01 4.27620411e-01\\n-3.01885102e-02 -7.50591338e-01 -2.08644569e-03 5.48664331e-02\\n1.69532642e-01 9.09391567e-02 -5.13134539e-01 -9.71382391e-03\\n-1.28732964e-01 -2.87581205e-01 1.40282854e-01 -2.65846550e-01\\n-7.02532455e-02 2.08129898e-01 1.53679892e-01 -1.83512464e-01\\n-9.56930500e-03 -1.07265070e-01 1.67970583e-01 -4.52375710e-01\\n1.61412619e-02 -6.52698815e-01 4.20273244e-02 3.07864919e-02\\n7.38025486e-01 -3.98148507e-01 1.42608374e-01 1.42954201e-01\\n1.07787035e-01 1.38841912e-01 -2.98916493e-02 -2.72784233e-02\\n-4.30978686e-01 -3.60739470e-01 -1.67954788e-01 -1.83997095e-01\\n5.14927328e-01 5.80702424e-01 -1.72071397e-01 6.79594576e-02\\n1.09852158e-01 -4.39544380e-01 -3.35568398e-01 -6.08719170e-01\\n-2.26582527e-01 -9.81216431e-02 -8.28376353e-01 -6.36689603e-01\\n-2.30126157e-01 -1.85489673e-02 -8.43982399e-02 4.40272421e-01\\n-3.63685220e-01 -5.73580086e-01 8.03272426e-02 -6.34262264e-01\\n1.28704607e-01 -2.09271654e-01 1.21051632e-01 -1.17246836e-01\\n-2.66701639e-01 -5.48058629e-01 1.66525021e-01 -2.36293226e-02\\n-9.25231725e-02 -3.40342559e-02 3.14600430e-02 -2.32290566e-01\\n-2.99544483e-01 -5.13821840e-01 4.36507612e-01 6.16393834e-02\\n4.35568750e-01 2.38425359e-01 3.52417886e-01 4.17936258e-02\\n4.15293515e-01 -1.38938040e-01 2.15083629e-01 -3.43741506e-01\\n1.20799124e-01 1.11079076e-02 6.40127301e-01 -3.06822687e-01\\n7.86329284e-02 2.39339143e-01 -1.57358259e-01 -6.36452213e-02\\n3.96684915e-01 5.40778413e-02 -2.96583008e-02 -1.58676744e-01\\n3.87061626e-01 -5.05089402e-01 -3.75695884e-01 2.03914136e-01\\n7.48626888e-02 6.22667253e-01 -3.44784409e-02 -4.05052185e-01\\n-2.28026584e-01 4.73160416e-01 -1.11095876e-01 -1.32100478e-01\\n-2.11307898e-01 7.26202279e-02 -9.08297524e-02 3.71532977e-01\\n5.89091592e-02 -1.60640642e-01 -2.34678239e-01 -8.17123279e-02\\n1.31652385e-01 1.71306983e-01 2.64088392e-01 6.39370177e-03\\n-4.95412461e-02 -1.86557814e-01 -9.97203887e-02 1.47302657e-01\\n3.20441782e-01 3.59083414e-01 1.70089215e-01 -2.62004346e-01\\n4.19486174e-03 1.98775649e-01 -2.35620216e-01 1.57035351e-01\\n-1.54587030e-01 5.32341339e-02 -5.76328695e-01 -2.40192547e-01\\n-1.85274109e-01 -2.75353342e-01 1.83276311e-01 3.45907241e-01\\n2.13971525e-01 -1.92787685e-02 2.79673748e-02 -5.24753749e-01\\n3.62661719e-01 -5.39995497e-03 1.44009039e-01 1.66412532e-01\\n3.58638889e-03 5.68999708e-01 2.19895821e-02 -9.74650458e-02\\n-1.15681797e-01 8.82823765e-02 -3.18924010e-01 -2.56032735e-01\\n1.30526051e-01 -3.14962476e-01 -6.52428642e-02 4.95611578e-01\\n1.57210216e-01 -1.39663652e-01 -2.36905754e-01 9.80673209e-02\\n8.05183798e-02 -2.15315253e-01 -2.70868212e-01 8.39223936e-02\\n1.57498688e-01 2.17461273e-01 2.35859647e-01 -3.01899046e-01\\n-1.97961573e-02 -1.52016887e-02 -8.28664452e-02 4.38381135e-01\\n1.49015188e-01 1.34544492e-01 -9.36422944e-02 -7.01053068e-02\\n5.55711865e-01 -1.10828727e-02 -1.04761655e-02 -7.94074908e-02\\n1.32688716e-01 -2.13220030e-01 -3.96389753e-01 -8.32196251e-02\\n-4.39364389e-02 -2.43469998e-01 4.50570509e-02 3.65874432e-02\\n-1.93033516e-02 -1.21232029e-02 -4.89858806e-01 -2.89203376e-01\\n-3.50638598e-01 -1.77833036e-01 -6.83412142e-03 -3.03559899e-01\\n7.37999827e-02 3.67550831e-03 -5.26130676e-01 3.60974431e-01\\n-2.69663036e-01 1.18405014e-01 1.03282526e-01 2.15934843e-01\\n-3.17366451e-01 -1.06024392e-01 1.38342336e-01 1.96118608e-01\\n-4.12399411e-01 -2.06632197e-01 -1.37588352e-01 -8.35273504e-01\\n1.09795474e-01 -2.02095881e-02 -5.46226762e-02 1.26306331e-02\\n-9.51614901e-02 -6.41413450e-01 1.32072583e-01 -4.08385307e-01\\n-1.87089548e-01 4.98459004e-02 -1.47300452e-01 -4.85029340e-01\\n8.89711753e-02 -3.22291739e-02 -3.26668173e-01 3.39644670e-01\\n-5.87148488e-01 3.29909474e-01 5.32525927e-02 -5.65984240e-03\\n5.43242842e-02 -2.47889578e-01 1.93650723e-01 -2.83480674e-01\\n-4.01788175e-01 -2.56651103e-01 -4.11701262e-01 -2.06531197e-01\\n7.36939311e-02 -3.21049303e-01 -2.27502972e-01 1.33325294e-01\\n2.93392479e-01 1.10224262e-01 3.08118667e-02 -1.98137075e-01\\n9.04416740e-02 -3.98728043e-01 1.08537883e-01 -5.09829760e-01\\n3.66253331e-02 -1.47239700e-01 2.38342732e-01 -1.32043272e-01\\n-3.13957371e-02 -3.19389880e-01 5.13188839e-01 -9.96211618e-02\\n-3.63722235e-01 -1.12524793e-01 4.93032821e-02 -1.85008142e-02\\n2.54790604e-01 -3.77825648e-01 3.78271192e-02 2.35134497e-01\\n6.29791990e-02 9.69918370e-02 2.15945154e-01 -7.78869390e-02\\n-1.52547985e-01 2.24341705e-01 -6.00901484e-01 1.60096258e-01\\n6.97119534e-01 1.90966219e-01 1.19050197e-01 1.90383464e-01\\n1.40702561e-01 4.29484576e-01 5.86250424e-01 6.00471124e-02\\n-3.44946831e-02 3.65413249e-01 3.89545970e-02 -4.59372997e-01\\n-1.16598956e-01 -9.56146717e-02 -2.64635921e-01 -3.34165961e-01\\n6.02541625e-01 4.70442206e-01 -3.92377406e-01 -4.59040672e-01\\n-1.25688002e-01 -1.74879730e-01 2.52172202e-01 6.23230077e-03\\n2.97981538e-02 -1.98150590e-01 6.18046880e-01 2.23093834e-02\\n2.39663437e-01 5.54432690e-01 -1.12897284e-01 -3.42652708e-01\\n-6.25952706e-02 1.14304714e-01 1.21803008e-01 3.25528234e-01\\n-1.30162194e-01 2.47227207e-01 -1.27884209e-01 1.84263319e-01\\n-1.72431171e-01 4.45892476e-02 2.58114755e-01 -6.52618334e-02\\n2.65697539e-01 1.07856952e-01 3.36658925e-01 5.02422273e-01\\n1.07916109e-01 5.28823495e-01 2.42764458e-01 9.28311273e-02\\n2.83513486e-01 5.70623457e-01 4.19378012e-01 1.44155234e-01\\n1.51990866e-02 -3.81157808e-02 1.08616546e-01 3.67246047e-02\\n3.12347233e-01 3.23816121e-01 1.06659077e-01 9.35589433e-01\\n3.23552191e-01 2.40449160e-01 8.18321705e-01 -7.09024608e-01\\n-3.49416822e-01 8.47360864e-03 5.07838666e-01 -3.73273492e-01\\n-2.07140177e-01 9.39184725e-02 -4.60854501e-01 2.19281718e-01\\n-5.40825546e-01 -8.59108269e-02 8.75860155e-02 -5.14688389e-03\\n-3.84437367e-02 -5.14600705e-03 -1.45537660e-01 -2.62594912e-02\\n-1.79057494e-01 -2.16343343e-01 -3.51240128e-01 -3.36673349e-01\\n-3.89728695e-01 -6.03612587e-02 -9.58376080e-02 -8.10959786e-02\\n-8.04964900e-02 -4.85166192e-01 -1.81779921e-01 1.45714119e-01\\n5.73406875e-01 -3.41155261e-01 -1.04799578e-02 -1.19274989e-01\\n8.88882652e-02 3.12621593e-01 5.99316657e-01 2.29373854e-02\\n9.64188054e-02 -1.22467466e-01 -2.70515412e-01 -4.99280468e-02\\n6.98246881e-02 3.98938358e-02 1.61720231e-01 5.11642456e-01\\n-3.64882261e-01 -6.47068322e-02 1.11164786e-01 3.86735111e-01\\n-3.48130554e-01 -1.22803524e-01 3.41155119e-02 3.76313865e-01\\n2.98823360e-02 6.34424686e-02 -2.63587207e-01 2.58080095e-01\\n-3.08461338e-01 -4.07713860e-01 4.67306405e-01 -2.12988108e-01\\n-6.47220090e-02 2.10495219e-01 2.34960943e-01 2.31564343e-01\\n-2.05114931e-01 -3.25790830e-02 -1.02772698e-01 3.21424782e-01\\n3.66750825e-03 5.37799299e-01 -2.01844692e-01 -3.96722555e-02\\n-3.85987490e-01 3.28774035e-01 -1.04661807e-01 1.19756602e-01\\n-6.99125901e-02 3.29342991e-01 -4.32736985e-02 7.71732256e-02\\n2.62525737e-01 2.51134075e-02 -3.44168723e-01 -3.03609818e-01\\n-1.20019034e-01 -2.24394307e-01 2.33965442e-01 -7.28315338e-02\\n1.13918729e-01 -3.42948467e-01 -8.61774758e-02 -7.15436563e-02\\n-2.23539948e-01 -4.78280008e-01 -1.65433869e-01 -2.22498905e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Your profile: Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English and German Benötigte Skills SQL Server ETL Python Python Englisch',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Cloud Services\", \"Front End (Software Engineering)\", \"Dimensional Modeling\", \"Data Warehousing\", \"Python Server Pages\", \"Back End (Software Engineering)\", \"SQL Server Integration Services (SSIS)\", \"Python (Programming Language)\", \"Maintainability\", \"Computer Science\", \"AWS Directory Service\", \"Analytics\", \"Microsoft SQL Servers\", \"Big Data\", \"End Systems\", \"Extract Transform Load (ETL)\", \"Adapter Scripting Language\"]',\n", + " 'languages': \"['English', 'Venda']\"},\n", + " {'company_id': '50',\n", + " 'job_title': 'software engineer javascript - electron',\n", + " 'location': 'Lausanne',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.16984361e-01 2.47328326e-01 4.60690200e-01 -3.80829582e-03\\n4.87593353e-01 -2.68072516e-01 8.08769986e-02 2.64659286e-01\\n1.61599770e-01 -3.96945119e-01 6.94409311e-02 -2.25233674e-01\\n-1.61666527e-01 7.16917813e-02 1.57274976e-01 3.59286427e-01\\n2.89349854e-01 7.53144771e-02 -1.98476180e-01 4.11089778e-01\\n9.10920650e-02 -1.32271528e-01 2.36991700e-02 6.71722054e-01\\n3.67895424e-01 -6.82418644e-02 -2.14523859e-02 -1.44821107e-01\\n-2.87555277e-01 -1.81710750e-01 3.87989283e-01 5.53557798e-02\\n-5.61316609e-02 -4.68790889e-01 8.26489627e-02 1.18044794e-01\\n-1.47008866e-01 1.06756628e-01 -1.54238110e-02 2.88446635e-01\\n-5.19205689e-01 -3.14793885e-01 1.94545373e-01 5.22180535e-02\\n-2.40611762e-01 -3.24620247e-01 1.10267892e-01 -6.39113411e-02\\n5.65126128e-02 2.42470242e-02 -3.89719546e-01 3.32597494e-01\\n-2.75146514e-01 -2.31190830e-01 3.01180601e-01 5.92786551e-01\\n8.60205963e-02 -5.83757043e-01 -4.46018606e-01 -4.07138616e-01\\n1.05363883e-01 -6.14329576e-02 4.36731353e-02 -2.68622667e-01\\n1.64465219e-01 8.96117464e-03 4.09288928e-02 3.73042405e-01\\n-7.71875322e-01 -1.45588517e-02 -1.62073240e-01 3.62619311e-02\\n-2.59667784e-01 -1.56469345e-01 -2.63043940e-01 3.48353758e-02\\n-9.27758366e-02 4.04197216e-01 3.31437141e-02 2.98860334e-02\\n-2.82013893e-01 2.92782843e-01 -1.22094467e-01 4.14290249e-01\\n2.26899236e-01 8.18269029e-02 3.69244456e-01 3.71543169e-01\\n-5.04046440e-01 4.09329832e-01 2.61473119e-01 -3.45394373e-01\\n3.04668427e-01 1.35600030e-01 4.78092402e-01 5.79328090e-02\\n6.85956627e-02 1.99669063e-01 -1.72991455e-01 2.25648314e-01\\n2.85468102e-01 -2.79792368e-01 -2.10790709e-03 -1.17031604e-01\\n9.76025127e-03 5.87621555e-02 -2.86973454e-02 2.74083495e-01\\n-2.63338655e-01 4.75749433e-01 9.23206955e-02 -1.29403532e-01\\n-2.28634030e-01 -4.34640646e-01 -6.38407469e-02 -3.48960273e-02\\n-6.01267908e-03 1.13618001e-01 2.93628037e-01 1.01091713e-01\\n6.83554038e-02 3.98610458e-02 7.18107671e-02 8.95993471e-01\\n-9.97973606e-02 1.75446525e-01 -2.75549322e-01 3.02362978e-01\\n1.39838517e-01 -2.20115304e-01 1.64899975e-01 2.04838097e-01\\n7.92315155e-02 -1.10137433e-01 -2.89252758e-01 3.39985430e-01\\n-8.26392248e-02 -2.26362675e-01 -2.82664239e-01 1.50429577e-01\\n-2.11454719e-01 -5.34839988e-01 6.05862439e-01 1.40454605e-01\\n2.02780113e-01 -3.25939357e-02 9.98170376e-02 -7.15177581e-02\\n-1.56599164e-01 3.27252388e-01 8.38044956e-02 2.10411549e-01\\n-3.46827447e-01 -2.58362055e-01 -2.54080772e-01 2.81304687e-01\\n-2.82904685e-01 1.27986267e-01 -1.12628475e-01 -4.90492471e-02\\n3.24771255e-01 1.43401921e-01 -4.09493178e-01 2.07560822e-01\\n3.64974141e-02 1.06685586e-01 -7.93958008e-02 3.68882567e-01\\n-2.47049242e-01 1.52841642e-01 1.77369080e-03 -9.59287956e-02\\n6.60194278e-01 1.89219490e-01 2.03718841e-01 -1.29405418e-02\\n3.48510474e-01 -1.05178162e-01 1.67732030e-01 9.72393975e-02\\n-5.59597790e-01 2.83899873e-01 -6.15893826e-02 -7.45582432e-02\\n1.61689594e-01 -6.56509995e-02 2.49162346e-01 -3.12815130e-01\\n-8.86580795e-02 -3.10372949e-01 -3.38151902e-01 -3.45325708e-01\\n-3.32324296e-01 -1.68456566e-02 5.51559567e-01 -4.54664230e-01\\n-2.06233919e-01 3.39147866e-01 -5.15813649e-01 -6.68930858e-02\\n2.94150025e-01 1.43077657e-01 1.34460509e-01 1.78093165e-01\\n-1.84689194e-01 -5.90401769e-01 2.09511518e-01 -3.94358099e-01\\n-3.72225970e-01 9.92313176e-02 -3.23168039e-01 1.99441552e-01\\n1.34515855e-02 1.28358245e-01 -1.11713298e-01 1.51010096e-01\\n-2.74894059e-01 -1.39553383e-01 1.64458394e-01 8.39664042e-02\\n1.53742909e-01 -2.44655162e-02 -4.16840911e-01 4.92656529e-01\\n-2.84584701e-01 5.51777959e-01 1.68906569e-01 -1.00097179e+00\\n4.38948750e-01 1.92848623e-01 -1.62233442e-01 -3.35709214e-01\\n4.42121625e-01 -4.00379002e-01 9.81585309e-03 1.21614471e-01\\n-1.55655682e-01 -3.16591114e-01 1.92220986e-01 -1.57167971e-01\\n-2.92347044e-01 6.02918983e-01 1.30972207e-01 1.42911673e-01\\n2.28936940e-01 -3.14608276e-01 -1.30989611e-01 -1.35281552e-02\\n-1.08695008e-01 -1.58863664e-01 -4.98564959e-01 6.50189966e-02\\n2.73016281e-03 -4.63766992e-01 -9.62938666e-02 -3.54545832e-01\\n-2.45752513e-01 -4.40001249e-01 -3.11814308e-01 2.08316505e-01\\n2.14735508e-01 2.10002229e-01 -8.39423090e-02 8.83655697e-02\\n-1.73518300e-01 -6.63348913e-01 2.68893093e-02 1.84902430e-01\\n4.66085285e-01 3.59491587e-01 8.73700753e-02 -6.97378516e-02\\n1.20485835e-02 5.87421060e-01 -3.12461793e-01 -1.94899768e-01\\n1.49408579e-01 1.09702587e-01 2.80579589e-02 -1.99345678e-01\\n1.11310825e-01 5.23705900e-01 -1.84226438e-01 5.12134619e-02\\n4.66163494e-02 -1.59853935e-01 4.32887137e-01 -6.33104593e-02\\n-3.97349715e-01 -3.28812331e-01 -5.16835526e-02 1.57020032e-01\\n-5.44940293e-01 -2.17102870e-01 6.18588686e-01 1.80390954e-01\\n2.43462533e-01 1.95605338e-01 2.63834804e-01 -1.30215988e-01\\n-2.64377534e-01 -2.53432006e-01 1.79646716e-01 6.39385730e-02\\n1.98577404e-01 1.75295115e-01 -1.19914547e-01 -7.02425957e-01\\n-3.07003021e+00 -1.36040241e-01 1.49187088e-01 -3.09070349e-01\\n5.50686829e-02 -2.00229019e-01 -3.22225131e-02 -9.00149941e-02\\n-3.45073581e-01 5.20896800e-02 -9.11865383e-02 -6.14099279e-02\\n4.34269123e-02 2.21733853e-01 1.00709438e-01 9.85089540e-02\\n1.59025460e-01 -1.29781649e-01 -1.09124132e-01 3.51755738e-01\\n-1.68738872e-01 -5.36181688e-01 1.48150370e-01 1.02083357e-02\\n3.38299781e-01 2.17580259e-01 -4.01134193e-01 -1.55760884e-01\\n-1.73380449e-01 -1.81903750e-01 1.14815474e-01 -2.37456322e-01\\n-1.68774500e-01 2.88195401e-01 5.44258431e-02 -6.77648783e-02\\n1.57867223e-01 -3.37007284e-01 -1.00821115e-01 -4.38146204e-01\\n8.42749774e-02 -6.83093369e-01 6.65058941e-03 -8.09046179e-02\\n5.86494505e-01 -3.92720014e-01 1.93776578e-01 1.22755587e-01\\n2.25612402e-01 1.37519509e-01 -4.31953818e-02 2.84514595e-02\\n-4.16152626e-01 -2.58888811e-01 -9.36979726e-02 -1.21094331e-01\\n6.62016869e-01 4.33622599e-01 -2.52848566e-01 -8.90492126e-02\\n1.31818764e-02 -3.73630464e-01 -3.77596021e-01 -2.67544270e-01\\n-1.23406455e-01 -2.20760658e-01 -5.63392103e-01 -3.80340248e-01\\n-2.00155929e-01 -1.14884526e-02 -1.28494143e-01 7.78153121e-01\\n-2.83503830e-01 -2.70865351e-01 7.41136372e-02 -5.21069765e-01\\n6.68309256e-02 -1.52217478e-01 3.16018015e-02 -2.29842335e-01\\n-3.04683149e-01 -4.70074952e-01 6.51771426e-02 4.49224077e-02\\n-2.67719477e-01 -7.20729828e-02 1.31475374e-01 -5.37025854e-02\\n-2.40662932e-01 -3.82742345e-01 4.08334970e-01 1.03325598e-01\\n2.25683242e-01 5.07460423e-02 4.23877180e-01 1.06237503e-03\\n3.85524869e-01 -1.39866978e-01 8.25928524e-02 -4.32771534e-01\\n1.19701825e-01 1.07950002e-01 6.12856567e-01 -1.86873198e-01\\n1.13904439e-02 2.12520659e-01 -1.84825376e-01 -8.64824131e-02\\n3.96646410e-01 4.68606241e-02 5.30983582e-02 -2.08287954e-01\\n2.71222115e-01 -2.78652012e-01 -2.23458499e-01 2.89867502e-02\\n1.43857330e-01 6.73935473e-01 -7.79244080e-02 -3.74739140e-01\\n-1.81756362e-01 4.72727865e-01 -2.58567572e-01 -2.14481860e-01\\n-2.09033966e-01 9.96449292e-02 -1.38533697e-01 3.01110297e-01\\n-2.99443342e-02 -1.30604878e-01 -3.11401606e-01 -1.20983437e-01\\n-1.20461702e-01 2.73498714e-01 1.88145876e-01 -9.42462683e-03\\n-7.57297501e-02 -3.36187899e-01 -8.71223435e-02 1.65335327e-01\\n1.44711792e-01 2.64719725e-01 1.22458756e-01 -2.42398992e-01\\n-6.40826821e-02 2.94860691e-01 -2.56375551e-01 1.77914664e-01\\n-3.61854136e-01 2.38189846e-02 -5.64908803e-01 -2.25544348e-01\\n-1.78597718e-01 -4.69179690e-01 -4.38483693e-02 3.85635853e-01\\n7.48370588e-02 2.37769913e-02 6.99562132e-02 -5.81194520e-01\\n3.45479310e-01 5.62986806e-02 1.99924543e-01 1.22870184e-01\\n-1.25300940e-02 5.21078348e-01 1.66819189e-02 -1.19722322e-01\\n-2.19763309e-01 5.87157607e-02 -1.83466062e-01 -2.70245492e-01\\n6.59055859e-02 -5.11168599e-01 -8.94808322e-02 3.98130536e-01\\n8.99154097e-02 -2.86901861e-01 -2.06030890e-01 1.75973430e-01\\n3.17826346e-02 -2.28518620e-01 -1.93754286e-01 -5.41976914e-02\\n2.71290421e-01 1.13633089e-02 2.53194094e-01 -3.86509001e-01\\n2.63030678e-02 6.24104924e-02 -9.37760323e-02 5.05959630e-01\\n8.67090821e-02 9.53999758e-02 -2.38585979e-01 -6.89462721e-02\\n4.42473173e-01 -1.44382492e-02 -1.02754589e-03 -6.23494610e-02\\n8.09553266e-02 -1.82391942e-01 -5.34317195e-01 1.11188151e-01\\n7.31943399e-02 -1.23662427e-01 6.21760823e-02 1.29745901e-01\\n5.05409986e-02 3.49212363e-02 -4.32053626e-01 -2.52123386e-01\\n-2.84409881e-01 -1.24557734e-01 1.77319512e-01 -5.06900907e-01\\n-8.67056027e-02 1.14911534e-02 -5.10100603e-01 1.67585030e-01\\n-1.40648559e-01 -1.01001129e-01 1.33004218e-01 1.77821293e-02\\n-2.83589602e-01 -1.40907511e-01 1.19096428e-01 2.04352111e-01\\n-2.31966853e-01 -3.59862715e-01 7.18338937e-02 -9.49804187e-01\\n1.50645852e-01 5.29109240e-02 -1.85262650e-01 2.66557503e-02\\n-1.69065475e-01 -8.28825593e-01 2.18786657e-01 -4.41792965e-01\\n-1.76108629e-02 3.22476551e-02 -1.92668214e-01 -4.30712640e-01\\n3.54483724e-02 -1.38740525e-01 -3.46884936e-01 3.58093500e-01\\n-4.05479282e-01 4.44563270e-01 -7.17559829e-02 2.55626626e-02\\n2.17006709e-02 -2.33418167e-01 1.87738299e-01 -4.36710060e-01\\n-3.86021405e-01 -1.27527043e-01 -4.08952147e-01 -3.22280645e-01\\n-5.47178984e-02 -1.98090896e-01 -1.53779030e-01 2.41343632e-01\\n3.42161179e-01 1.37568355e-01 -2.63713673e-02 -3.33576262e-01\\n4.61857580e-03 -5.46018898e-01 -2.28937492e-02 -1.72043920e-01\\n1.89963952e-02 -6.59265742e-02 7.03580976e-02 -2.18595937e-02\\n-2.62241159e-03 -3.22152436e-01 4.95053679e-01 -2.25646734e-01\\n-2.97927618e-01 -1.55594021e-01 -1.68976858e-02 5.57310134e-03\\n2.21843317e-01 -4.20982987e-01 1.70520730e-02 2.13474542e-01\\n1.20399334e-01 1.25198998e-03 1.75928682e-01 -1.83131583e-02\\n8.57932214e-03 6.24902844e-02 -3.35361898e-01 1.41968250e-01\\n7.41594315e-01 3.52552049e-02 4.94780838e-02 1.82384670e-01\\n1.24809414e-01 4.85684842e-01 5.23619950e-01 -7.81468004e-02\\n-1.55109525e-01 2.20729530e-01 2.78808251e-02 -5.39772630e-01\\n-9.08242762e-02 2.75702514e-02 -2.15274036e-01 -2.58071780e-01\\n5.96438706e-01 4.18965131e-01 -3.18432331e-01 -2.76196361e-01\\n-6.34936765e-02 -1.42010525e-01 1.91059843e-01 -3.12325973e-02\\n4.18535657e-02 -2.72309128e-02 5.86416483e-01 -5.81058264e-02\\n3.13183606e-01 5.73815703e-01 -1.97425291e-01 -4.44959998e-01\\n-8.29540789e-02 3.04298729e-01 1.11568041e-01 4.03736055e-01\\n-2.54313529e-01 2.94784904e-01 -5.83625585e-02 6.84980154e-02\\n-9.39929783e-02 1.40189052e-01 1.11439131e-01 8.48587751e-02\\n1.78242907e-01 1.98641643e-02 5.81739306e-01 4.75910366e-01\\n2.74134010e-01 4.08336252e-01 2.64992446e-01 -2.15851553e-02\\n4.42332476e-01 5.94704032e-01 4.46243525e-01 7.14097470e-02\\n6.84871804e-03 1.38607219e-01 9.82580930e-02 -7.98280984e-02\\n3.36412996e-01 4.14020658e-01 9.79866982e-02 8.68765414e-01\\n3.16779554e-01 2.56117463e-01 7.56189823e-01 -6.99035287e-01\\n-3.20901334e-01 -2.09675021e-02 4.62622046e-01 -1.60190627e-01\\n-1.08261831e-01 1.78128019e-01 -2.16427624e-01 2.82039672e-01\\n-3.77715051e-01 -1.34102494e-01 7.36189187e-02 1.99536473e-01\\n-4.06759270e-02 -7.54856616e-02 -2.61872649e-01 5.20264432e-02\\n-2.44342238e-01 -1.23691022e-01 -4.12283212e-01 -6.74104616e-02\\n-1.77591473e-01 -7.07603469e-02 -7.32911676e-02 -8.03401545e-02\\n-8.44757110e-02 -5.59031844e-01 -1.59675717e-01 -7.58429393e-02\\n3.94403756e-01 -1.72692046e-01 -1.13487430e-01 -2.46830374e-01\\n1.83891520e-01 2.16649681e-01 6.61592603e-01 7.54659325e-02\\n4.09996547e-02 -3.14098120e-01 -2.57685393e-01 8.80814046e-02\\n6.05154969e-02 1.24365196e-01 2.27700435e-02 4.48763907e-01\\n-3.46452594e-01 -2.27796789e-02 1.10161468e-01 3.74919593e-01\\n-4.02372777e-01 -1.13916636e-01 -1.47083551e-01 2.39988059e-01\\n1.73752695e-01 2.24646986e-01 -1.43700778e-01 4.26136218e-02\\n-2.18796313e-01 -5.21755278e-01 4.21288639e-01 -9.56290588e-02\\n-2.28566378e-01 6.92903697e-02 7.14899525e-02 1.93465650e-01\\n-1.99437886e-01 -5.82605675e-02 -7.64628425e-02 2.60631084e-01\\n-6.78495085e-03 3.43266100e-01 -9.45562869e-02 -2.27547258e-01\\n-1.89396024e-01 1.46091804e-01 -1.29217923e-01 9.11255628e-02\\n-2.33365148e-02 3.07112068e-01 7.91931003e-02 9.92485285e-02\\n2.95175403e-01 1.12718396e-01 -2.10318327e-01 -2.53449202e-01\\n-1.79807454e-01 -1.99405625e-01 -9.46371332e-02 -9.20641124e-02\\n1.64653271e-01 -3.04555833e-01 -6.15240484e-02 -1.50633171e-01\\n-1.95748568e-01 -2.82617152e-01 -9.10217911e-02 -1.04441129e-01]]',\n", + " 'job_description': 'Software Engineer JavaScript - Electron Starting date: as soon as possible YOUR ROLE: To grow our software engineering team, we are seeking a full stack web developer who will be responsible for defining, designing, implementing, testing and supporting our desktop Electron based application. This application will create added value outputs for our customers. You have a strong knowledge of HTML5/CSS/JavaScript technologies, love TypeScript even more and want to use it to build a cutting edge desktop application. You are familiar with terms like unit tests, integration tests, regression tests and stress tests. You know when good is “good enough” and where to take a closer look. RESPONSIBILITIES: Define, architecture, build, maintain and document our Electron based desktop application Write robust, stable, reliable and maintainable code within committed time frames Develop for testability, ensure software quality, and contribute to test automation/CI infrastructure development and maintenance. Contribute to end-to-end test in typical customer scenarios as well as stress and scale scenarios Deliver fixes for defects and regressions Integrate Flyability low level APIs in the Electron application YOUR PROFILE: 3+ years experienced full stack web developer BS/MS degree in Computer Science or related disciplines Highly Proficient in ES8+ JavaScript, HTML5, CSS You have a passion for building products with great UX Experience with Node.js and Webpack Know how to create a RESTful APIs, including secure authentication Strong knowledge and experience with modern database technologies Familiar with agile methodologies You have excellent communication skills and like challenging the status quo Previous experience of Electron based app development is a major plus Prefer TypeScript over JavaScript is a major plus Experience with one of the following JavaScript frameworks is a plus: Vue.js, React.js, Angular.js or other Experience with other programming language like C++ or Java is a plus Previous experience writing C++/node wrapper is a plus Previous experience with subscription system is a plus 3D graphics (three.js/WebGL/OpenGL) programming experience is a plus In addition to your passion for high tech products, and your motivation to work in a challenging and innovative environment, you can be represented by the following traits: Team player, willing to collaborate with multicultural people from various horizons Passion for web technologies Problem-solving mindset, hands-on, proactive and willing to take ownership Strong commitment to quality, architecture and documentation Flexible and self-motivated with a strong desire to learn Sensitive to the user’s point of view, willing to improve the overall user experience Fluent in English, French would be a plus',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Self-Motivation\", \"Writing\", \"Collaboration\", \"Proactivity\", \"Infrastructure\", \"Problem Solving\", \"Reliability\", \"Integration\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Secure Password Authentication\", \"KM Programming Language\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Value-Added Services\", \"Unit Testing\", \"Computer Science\", \"Vue.js\", \"JavaScript Engine\", \"TypeScript\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Node.js\", \"Maintainability\", \"HTML5\", \"High Tech Manufacturing\", \"Test Automation\", \"Web Development\", \"Software Engineering\", \"React.js\", \"Software Quality (SQA/SQC)\", \"Webpack\", \"Agile Methodology\", \"Three.js\", \"Electronics\", \"Testability\", \"WebGL\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Cardiac Stress Tests\", \"Angular (Web Framework)\", \"3D Graphic Design\", \"Additives\", \"User Experience\", \"Maintaining Code\", \"Java (Programming Language)\", \"Joint Test Action (IEEE Standards)\", \"OpenGL\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Assamese']\"},\n", + " {'company_id': '78',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Ecublens',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.33694956e-01 3.10694486e-01 4.18160260e-01 2.11881120e-02\\n5.00443697e-01 -1.94497660e-01 1.55600877e-02 3.68219316e-01\\n-5.10560069e-03 -4.21176910e-01 -1.71631239e-02 -1.40576616e-01\\n2.05046013e-02 5.14465123e-02 1.00804456e-01 4.40635741e-01\\n2.66335875e-01 1.03887580e-01 -1.78714707e-01 3.87045324e-01\\n1.99175939e-01 -1.87521607e-01 1.27502203e-01 6.93333447e-01\\n4.92713183e-01 -2.11830791e-02 -7.92485103e-02 -5.25545701e-02\\n-2.31206372e-01 -2.70013183e-01 3.10707182e-01 -5.74332699e-02\\n2.15872210e-02 -2.99329877e-01 1.26689702e-01 6.63633347e-02\\n-2.88466960e-01 9.91255492e-02 -1.12298958e-01 1.70360520e-01\\n-4.55864787e-01 -2.54954934e-01 -4.65565622e-02 2.24263333e-02\\n-3.10011983e-01 -3.62532288e-01 -3.89026776e-02 -6.13107905e-02\\n1.89088270e-01 7.77875111e-02 -4.44443345e-01 2.64167577e-01\\n-1.99776679e-01 -2.33396560e-01 2.95734167e-01 6.23479247e-01\\n4.50934917e-02 -4.20679539e-01 -4.89458710e-01 -2.78634846e-01\\n1.16557688e-01 -1.16639726e-01 6.18355535e-02 -2.42787793e-01\\n2.31323600e-01 8.86910409e-02 1.85002424e-02 4.35410947e-01\\n-7.84092247e-01 -1.91704020e-01 -2.07681894e-01 1.23402951e-02\\n-4.06007141e-01 -3.22623886e-02 -3.86694640e-01 -1.56241968e-01\\n-1.01129234e-01 4.20151114e-01 4.80038337e-02 1.50772352e-02\\n-1.61528647e-01 2.81036943e-01 -3.04915220e-01 2.73584455e-01\\n1.02941796e-01 2.79036343e-01 2.70860821e-01 3.73432189e-01\\n-3.85613143e-01 4.36079144e-01 2.41754726e-01 -2.32633501e-01\\n1.76205307e-01 1.06240548e-01 4.02684838e-01 -3.40732709e-02\\n5.77798896e-02 1.65189445e-01 -2.88379312e-01 2.76702106e-01\\n2.82096684e-01 -3.95611554e-01 7.87914172e-03 -8.94999653e-02\\n-6.25511557e-02 8.40330943e-02 -1.40251601e-02 2.31189877e-01\\n-2.59275526e-01 5.51684439e-01 1.46659464e-01 -1.37547225e-01\\n-2.28251547e-01 -5.54201663e-01 -1.58757374e-01 5.78126982e-02\\n7.47821108e-02 2.12494642e-01 2.19253793e-01 2.26380914e-01\\n1.16370395e-01 2.24813446e-02 9.47291628e-02 8.04549098e-01\\n-1.16630517e-01 9.60807726e-02 -2.40479290e-01 3.10207963e-01\\n1.13190107e-01 -1.79855525e-01 1.54276356e-01 2.36554399e-01\\n3.56984660e-02 -9.47168022e-02 -2.18061045e-01 2.29521587e-01\\n-6.06105588e-02 -2.31227845e-01 -2.83477813e-01 1.18313588e-01\\n-8.22055563e-02 -4.50509131e-01 5.74952066e-01 2.31584758e-02\\n1.53814897e-01 -4.48159203e-02 -2.24550851e-02 -8.20790709e-04\\n-7.56019875e-02 3.03169787e-01 9.13372710e-02 1.23072930e-01\\n-3.03916544e-01 -2.50226796e-01 -2.05550730e-01 5.83877154e-02\\n-3.36428940e-01 1.21093690e-01 -1.49086595e-01 -8.47567096e-02\\n2.71635681e-01 2.08488125e-02 -3.83767873e-01 2.71044642e-01\\n-1.30235463e-01 -8.42409208e-02 -3.11831720e-02 2.99951226e-01\\n-1.61675259e-01 2.33679801e-01 -6.71690926e-02 -1.30883873e-01\\n5.50217986e-01 2.00362459e-01 1.86730698e-01 5.74072637e-02\\n4.16112304e-01 -7.64654353e-02 1.65985912e-01 1.46445289e-01\\n-6.16053522e-01 2.94797331e-01 -1.32572711e-01 -2.28586271e-01\\n7.21781477e-02 -7.12005943e-02 2.70072997e-01 -2.85197854e-01\\n1.02354713e-01 -1.22964345e-01 -3.76513153e-01 -2.02733293e-01\\n-2.33798623e-01 -9.22281202e-03 4.65564877e-01 -4.22957778e-01\\n-1.76289026e-02 3.41121376e-01 -4.72027391e-01 -2.33024880e-02\\n2.61357486e-01 2.06141934e-01 1.31217614e-01 1.74730763e-01\\n-1.67744666e-01 -5.34387946e-01 1.35052264e-01 -4.33909267e-01\\n-3.29078257e-01 9.94107500e-02 -2.26713926e-01 3.33410501e-01\\n1.11036092e-01 -1.82715862e-03 -1.51139751e-01 1.67970553e-01\\n-1.18425325e-01 -1.10447332e-01 2.83209413e-01 3.28941941e-02\\n2.14923769e-01 6.44942671e-02 -3.72515410e-01 4.12083060e-01\\n-1.71891153e-01 6.03396297e-01 1.51938602e-01 -8.25392425e-01\\n4.90812927e-01 2.63826311e-01 -4.59370501e-02 -3.21155071e-01\\n6.44851744e-01 -2.84966499e-01 -7.32831145e-03 1.82045624e-01\\n-3.86190504e-01 -3.75351101e-01 2.37068579e-01 -1.66365340e-01\\n-1.99741721e-01 4.85785127e-01 4.40158285e-02 1.30692467e-01\\n1.79745406e-01 -1.60787553e-01 -3.98576073e-02 1.52663261e-01\\n-5.35914041e-02 -2.94805288e-01 -5.18397212e-01 9.26941931e-02\\n-3.32034752e-03 -4.76196647e-01 -2.17280313e-01 -4.25665081e-01\\n-2.85543621e-01 -4.39662457e-01 -1.57982692e-01 1.62631392e-01\\n3.31044137e-01 2.13499740e-01 -7.93696195e-02 -1.45712877e-02\\n-6.71145394e-02 -5.73744237e-01 1.61153320e-02 -3.42152314e-03\\n3.32856089e-01 2.50352800e-01 1.27441794e-01 4.36256528e-02\\n-2.19522528e-02 6.58323348e-01 -2.66560346e-01 -7.67623484e-02\\n1.85713053e-01 1.61428437e-01 -4.22756560e-03 -1.84829593e-01\\n1.29164323e-01 3.03757608e-01 -3.01778555e-01 3.38381715e-02\\n-9.51857269e-02 2.57780049e-02 2.92345256e-01 1.55617343e-02\\n-3.14502805e-01 -2.91422993e-01 -1.84992716e-01 1.99362904e-01\\n-5.02870262e-01 -1.22930110e-01 6.11743093e-01 1.40754446e-01\\n2.12122321e-01 1.37849808e-01 1.78483725e-01 -5.49887866e-02\\n-2.52730638e-01 -2.37880677e-01 2.72285432e-01 1.19225636e-01\\n1.00995198e-01 1.08278088e-01 3.67361568e-02 -6.45773768e-01\\n-3.37454438e+00 -1.89724252e-01 1.42814428e-01 -3.38577360e-01\\n1.43696800e-01 -1.30025804e-01 7.90460850e-04 5.75618772e-03\\n-3.24257165e-01 -6.59538507e-02 -1.53357282e-01 -8.79887938e-02\\n1.11312129e-01 2.64822900e-01 2.32304096e-01 2.98638642e-01\\n1.27467379e-01 -1.62867710e-01 -9.62174162e-02 3.77242118e-01\\n-2.11324051e-01 -5.81725299e-01 1.73958287e-01 6.06971495e-02\\n3.06207120e-01 1.59802139e-01 -3.38576555e-01 -5.65338843e-02\\n-2.50230163e-01 -2.47252196e-01 1.56811714e-01 -2.66218424e-01\\n-9.78930295e-02 3.70669335e-01 1.11472450e-01 -3.69110554e-02\\n1.24919102e-01 -3.92606795e-01 -1.68069433e-02 -3.88697505e-01\\n3.36455740e-03 -8.20426643e-01 -1.06883690e-01 -7.53684193e-02\\n6.40119731e-01 -2.71099359e-01 1.90349251e-01 3.63641493e-02\\n1.95785105e-01 1.30269691e-01 -1.12082675e-01 -2.06818786e-02\\n-1.78427428e-01 -2.77495384e-01 -1.03456229e-01 -9.79371369e-02\\n5.67298770e-01 5.69631875e-01 -2.69044399e-01 8.01320001e-03\\n8.58934447e-02 -2.63506502e-01 -5.48892736e-01 -3.06886792e-01\\n-2.30444178e-01 -9.26887095e-02 -5.49840808e-01 -4.26731259e-01\\n-1.73887193e-01 -8.43783766e-02 -9.15077925e-02 5.37236929e-01\\n-2.44740486e-01 -3.07523429e-01 2.18364410e-02 -4.46015954e-01\\n2.17726916e-01 -5.78427985e-02 5.55722602e-02 -1.57294363e-01\\n-2.49102935e-01 -4.09702212e-01 5.71653396e-02 4.89288606e-02\\n-1.03141606e-01 -1.70892045e-01 1.20945215e-01 -2.24966794e-01\\n-3.17171067e-01 -5.10713279e-01 4.32295084e-01 4.87467349e-02\\n3.29036176e-01 1.11190058e-01 3.36199135e-01 -2.32616439e-03\\n3.67397785e-01 -2.11079836e-01 8.26304704e-02 -4.73270059e-01\\n1.30975902e-01 1.23217061e-01 4.57422286e-01 -2.57095784e-01\\n-2.90559363e-02 7.17845038e-02 -3.32812697e-01 -1.39272260e-02\\n3.24670821e-01 -9.72553063e-03 8.99634138e-02 -1.17377803e-01\\n2.99210072e-01 -1.75929055e-01 -1.96166590e-01 1.49432853e-01\\n1.25814483e-01 5.53664744e-01 -2.02456564e-02 -3.95146817e-01\\n-1.58705860e-01 4.65312690e-01 -1.28688559e-01 -1.64453685e-02\\n-2.20121115e-01 1.04714744e-01 -1.52595073e-01 3.03967416e-01\\n-1.62819047e-02 -2.08631858e-01 -3.24698567e-01 -8.55872259e-02\\n-2.00148061e-01 2.88713664e-01 2.10529864e-01 8.84781405e-03\\n-2.34209150e-02 -4.25555855e-01 4.88475226e-02 2.26361573e-01\\n3.02192241e-01 2.84149259e-01 1.32213458e-01 -3.12475771e-01\\n-2.65542488e-03 2.49389172e-01 -2.19128251e-01 1.43899396e-01\\n-2.30714470e-01 1.13670349e-01 -5.54150343e-01 -3.49009186e-01\\n-1.89482644e-01 -3.14781696e-01 5.19638248e-02 2.31541350e-01\\n9.33595821e-02 -3.79794538e-02 3.64829339e-02 -4.96978492e-01\\n2.50132710e-01 8.91704634e-02 1.41821250e-01 1.04199350e-01\\n6.50435165e-02 4.86761510e-01 -7.43257999e-02 -1.51026547e-01\\n-8.15386027e-02 8.31517857e-03 -2.52564102e-01 -1.61107272e-01\\n2.35367175e-02 -4.73139077e-01 -1.57440469e-01 4.31908786e-01\\n1.75614521e-01 -2.24854723e-01 -2.10265309e-01 2.33494282e-01\\n1.08112328e-01 -3.23333591e-01 -2.15742409e-01 7.69484714e-02\\n3.64243120e-01 2.84955073e-02 3.17728549e-01 -4.48985428e-01\\n-2.92366315e-02 -8.68766103e-03 -1.67075247e-01 3.85697901e-01\\n9.01811421e-02 6.34265393e-02 -1.42284945e-01 -1.18283749e-01\\n4.05384213e-01 -2.07938403e-01 -3.12987890e-04 -3.71236634e-03\\n7.22786337e-02 -1.72924995e-01 -4.16090906e-01 -3.35295871e-03\\n-2.77986359e-02 -1.46082133e-01 6.18476830e-02 6.88482150e-02\\n1.95526797e-02 2.18948331e-02 -4.36302602e-01 -2.52694368e-01\\n-2.61161715e-01 -5.27560525e-02 8.58162493e-02 -4.58270907e-01\\n-2.03491196e-01 -4.92448779e-03 -5.92003286e-01 2.99318612e-01\\n-1.66229084e-01 1.24176955e-02 1.36493877e-01 1.25456434e-02\\n-2.27434918e-01 -6.18282631e-02 1.50179550e-01 2.79138029e-01\\n-2.83006787e-01 -2.85566092e-01 -5.33556268e-02 -1.08658040e+00\\n1.17247723e-01 -1.71513241e-02 -1.50322318e-01 1.47311568e-01\\n-5.30583151e-02 -6.02376044e-01 1.81220829e-01 -4.92458552e-01\\n-1.17195107e-01 -2.31137616e-03 -2.27269471e-01 -4.26067472e-01\\n2.71027815e-02 6.99616503e-04 -3.77176076e-01 3.43522787e-01\\n-3.14913243e-01 3.73485088e-01 -8.71398374e-02 2.94337738e-02\\n-6.90276967e-03 -3.24979097e-01 1.40533581e-01 -4.38480079e-01\\n-4.09763217e-01 -2.08348125e-01 -3.62754285e-01 -2.31102183e-01\\n-1.69482473e-02 -2.97968119e-01 -1.93098947e-01 1.07559025e-01\\n1.68603167e-01 1.07703343e-01 -1.24213314e-02 -2.61103392e-01\\n1.42630473e-01 -5.54382861e-01 1.18775908e-02 -1.13759488e-01\\n-1.04505032e-01 9.37627908e-03 2.58785665e-01 1.09534644e-01\\n1.62994713e-01 -3.25260311e-01 3.87850344e-01 -2.82961816e-01\\n-2.96962291e-01 -1.11226268e-01 1.57088652e-01 2.77211051e-02\\n3.73301774e-01 -4.14922833e-01 -4.56987023e-02 2.81111509e-01\\n3.69533338e-02 3.61954235e-02 2.27839813e-01 -1.51926070e-01\\n-1.39332205e-01 1.41031131e-01 -3.47362369e-01 1.36559248e-01\\n7.64166594e-01 1.19722612e-01 1.56051457e-01 1.89553708e-01\\n2.05733135e-01 3.62886488e-01 5.64511836e-01 -5.12254164e-02\\n-1.73758976e-02 3.16232383e-01 5.70267364e-02 -5.05842447e-01\\n-9.85049382e-02 -2.23243665e-02 -2.16953263e-01 -3.45784515e-01\\n7.71083236e-01 4.01447922e-01 -3.67944747e-01 -2.82530814e-01\\n-2.55333722e-01 -1.92200005e-01 1.42441377e-01 -1.16522320e-01\\n-9.79781989e-03 -1.26149982e-01 5.14795363e-01 -3.24882604e-02\\n2.08125204e-01 3.93640727e-01 -2.60371715e-01 -3.43324125e-01\\n1.63293071e-02 1.88208476e-01 1.11930065e-01 4.07239705e-01\\n-2.15424418e-01 2.83919811e-01 -1.22542873e-01 1.88305587e-01\\n-1.27313986e-01 1.96085144e-02 1.89664289e-01 1.68041557e-01\\n1.80253655e-01 1.08201332e-01 4.59819973e-01 4.03178215e-01\\n2.92060554e-01 4.58663821e-01 3.07962656e-01 -1.35585456e-03\\n3.76005560e-01 5.67339182e-01 3.34267914e-01 8.10878128e-02\\n-5.83318770e-02 1.47555828e-01 1.75408408e-01 -5.63990604e-03\\n3.17342997e-01 3.03035587e-01 1.17216766e-01 7.82497466e-01\\n3.29421192e-01 3.70164484e-01 7.33907044e-01 -5.39341152e-01\\n-3.96218210e-01 -3.00336406e-02 5.11527240e-01 -3.55568469e-01\\n-6.71447963e-02 1.90549448e-01 -1.98653817e-01 3.30384016e-01\\n-4.94013518e-01 -2.87787050e-01 -4.27875258e-02 1.15459569e-01\\n-1.06900260e-02 -9.41596478e-02 -2.70226032e-01 4.06322256e-02\\n-1.03962436e-01 -2.38350481e-01 -4.39694673e-01 -1.43574566e-01\\n-1.89686015e-01 -7.99104199e-02 -9.22728628e-02 -4.60672863e-02\\n-1.92324534e-01 -3.46632600e-01 -5.92208356e-02 -2.77661178e-02\\n3.29893082e-01 -1.22675225e-01 -1.51904777e-01 -3.79742756e-02\\n2.40926623e-01 1.20706424e-01 6.16295457e-01 3.35358083e-02\\n4.00059335e-02 -2.89301723e-01 -2.29083687e-01 1.22933194e-01\\n2.12325722e-01 6.46721423e-02 2.37110034e-02 4.38026875e-01\\n-3.71639788e-01 -2.26398498e-01 2.32170895e-03 2.69654214e-01\\n-3.83572161e-01 -1.58126410e-02 -8.60816706e-03 2.86389381e-01\\n9.71846208e-02 1.35595635e-01 -2.06738442e-01 1.67916343e-02\\n-1.40680835e-01 -5.05075216e-01 2.39574060e-01 -2.87663825e-02\\n-2.16864496e-01 7.66880587e-02 2.03975469e-01 1.66094288e-01\\n-2.24961445e-01 -1.08198360e-01 -8.59026983e-02 1.07447505e-01\\n1.05783455e-01 3.37293684e-01 -1.13268092e-01 -3.77458513e-01\\n-3.05585086e-01 2.97581404e-01 -1.55567721e-01 1.88475400e-01\\n2.21482329e-02 3.81440490e-01 2.80639566e-02 1.98177546e-01\\n3.36726397e-01 3.79857793e-02 -1.58774555e-01 -2.81602234e-01\\n-1.30580917e-01 -2.01127902e-01 -5.71283454e-04 -6.60051405e-02\\n1.24478027e-01 -3.39486122e-01 -9.33265388e-02 -1.62183732e-01\\n-1.76691249e-01 -3.75046730e-01 -1.39651662e-02 -1.21429220e-01]]',\n", + " 'job_description': \"What we are looking for To accelerate projects and growth, Nanolive is looking for strengthening its development team with a highly self-motivated, enthusiastic, result oriented Python Data Scientist. Mission and activities Implement advanced statistical and data analysis tools related to Nanolive Core Technology and Quantitative biology applicationsImplement environment development and architecture in PythonValidate proofs of concepts through modelling and simulationPrepare test protocols, run tests and analyse resultsDocument work results with Python notebooks or similar reports Required Master’s or PhD degree in Computational Science, Mathematics, Engineering or related area.Experience in Python scientific codingExperience in big data managementStrong background in Mathematics, Physics or Biology An Asset Experience with CI/CD, source management & djangoKnowledge of unit testingKnowledge of hdf5, java programming, image analysis Key asset of the candidate Have a team player spirit, a quick perception, and a resourceful and fast-learning mindsetHave a strong sense of commitment and responsibility to respect planning and qualityHave a high analytical capacity and an adaptable, autonomous, rigorous and service-oriented mindsetHave effective communication in English (both written & oral – including technical documentation) What we offer You will get the opportunity to work in a fast-growing scale-up environment with highly motivated, competent and experienced individuals, and make a real difference for our customers. You will be working with a cutting-edge technology and facing the exclusive challenge of making it accessible to a wide audience by implementing creative solutions. Interested? Please visit our website, then click on “Apply Now” and fill your application including your cover letter and CV. We do not accept any recruitment agencies. Job Types: Full-time, Permanent Experience: python: 1 year (Preferred)Big Data management: 1 year (Preferred) Education: Master's (Required) \",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Adaptability\", \"Resourcefulness\", \"Planning\", \"Management\", \"Communications\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Computational Science And Engineering\", \"Integrated Development Environments\", \"Accessioning\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Data Management\", \"Statistics\", \"Mathematical Sciences\", \"Scale (Map)\", \"Activism\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"Source (Game Engine)\", \"Image Analysis\", \"Mathematical Physics\", \"Biology\", \"Service-Oriented Modeling\", \"Big Data\", \"Technical Documentation\", \"Survey Data Analysis\"]',\n", + " 'languages': \"['English', 'Navaho', 'Kwanyama', 'Sango', 'Aymara']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'clinical data manager basel or geneva',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.43991524e-01 2.85242081e-01 4.62841421e-01 1.99227966e-02\\n6.94778085e-01 -1.56374216e-01 -7.59084746e-02 1.50286024e-02\\n5.05998619e-02 -1.37084067e-01 -1.70611352e-01 -2.42785543e-01\\n9.61267203e-02 2.86597311e-01 7.53745288e-02 5.25513709e-01\\n2.94130743e-01 -5.45377210e-02 1.08797222e-01 1.44836098e-01\\n1.73172504e-01 -2.29952484e-01 2.33992785e-02 6.59537077e-01\\n2.34644532e-01 3.31432372e-02 -6.26116619e-02 9.01515931e-02\\n-2.85675704e-01 -2.41672039e-01 3.67392004e-01 2.34722719e-02\\n-1.82812825e-01 -2.20582113e-01 1.07994050e-01 2.53953129e-01\\n-2.81879961e-01 1.81317627e-01 -1.64238185e-01 9.83854234e-02\\n-5.59793353e-01 -2.30555341e-01 -1.83942273e-01 1.12524278e-01\\n-2.75563776e-01 -3.16240877e-01 1.90194637e-01 -5.93483075e-02\\n7.46725053e-02 1.95476666e-01 -4.01438028e-01 3.37381840e-01\\n-3.65407586e-01 -1.92945853e-01 2.48925090e-01 6.68023884e-01\\n2.27749571e-02 -5.62040210e-01 -4.73960578e-01 -1.66202620e-01\\n2.16018468e-01 -1.36847913e-01 2.58068919e-01 -1.81460470e-01\\n6.21001124e-01 1.05747078e-02 8.36017430e-02 2.23694384e-01\\n-7.34925508e-01 -8.04408491e-02 -4.59232450e-01 1.92541823e-01\\n-3.12643141e-01 2.86907852e-02 -2.72306353e-01 -1.79490075e-01\\n8.86017829e-03 3.69777441e-01 -1.13286907e-02 7.51171783e-02\\n-1.45151496e-01 2.43034124e-01 -4.43607152e-01 1.58863217e-01\\n1.64208710e-01 1.99453920e-01 3.68345737e-01 1.90089166e-01\\n-4.38287526e-01 5.21513939e-01 3.22225720e-01 -2.01658845e-01\\n1.44146711e-01 3.10911201e-02 2.88483679e-01 2.15209424e-01\\n1.18635893e-01 2.26299971e-01 -2.08588079e-01 1.84245616e-01\\n2.48034269e-01 -9.89875197e-02 7.35347122e-02 -1.37142660e-02\\n-7.26549849e-02 -1.37058675e-01 -4.22883220e-02 1.68245763e-01\\n-4.90313053e-01 5.16932786e-01 1.24919415e-01 -1.90424472e-01\\n-9.07356516e-02 -6.33006215e-01 -1.13292560e-01 7.78622106e-02\\n1.33692950e-01 1.16609551e-01 2.01029211e-01 3.94601226e-01\\n1.52685434e-01 5.66840218e-03 1.85538381e-01 8.39418590e-01\\n3.97037640e-02 1.53781861e-01 -5.02934828e-02 3.58043671e-01\\n3.98553386e-02 -8.32296908e-02 1.22385502e-01 3.30494642e-01\\n7.59462500e-03 -8.83786455e-02 -2.45989323e-01 2.48671383e-01\\n-2.93969195e-02 -2.80551851e-01 -1.40869290e-01 2.13118821e-01\\n-9.49339569e-02 -5.82999468e-01 4.00984645e-01 -1.06919222e-01\\n-1.66371893e-02 -1.10226132e-01 -1.43751323e-01 -7.64359385e-02\\n-1.96759835e-01 3.83854747e-01 3.14922988e-01 2.38380551e-01\\n-8.52784961e-02 -2.70943433e-01 -5.82807511e-03 2.85016030e-01\\n-3.11144173e-01 2.15279520e-01 -2.86216736e-01 -2.07359523e-01\\n3.63047540e-01 2.24028230e-01 -5.08489609e-01 2.97018409e-01\\n-1.40469253e-01 -9.07349214e-02 -7.43367970e-02 2.68487185e-01\\n-1.86008930e-01 6.90419674e-02 -1.41885430e-01 -2.04294160e-01\\n4.57140297e-01 6.93022609e-02 4.04542446e-01 -7.60114416e-02\\n3.82873714e-01 -2.39880294e-01 2.40438998e-01 -6.37419708e-03\\n-6.32399678e-01 4.23590124e-01 -1.40339285e-01 -3.78642023e-01\\n1.96472377e-01 -5.69182336e-02 7.35688031e-01 -3.04093361e-01\\n1.96409877e-02 -1.71883389e-01 -3.87986451e-01 -4.11036313e-01\\n-1.57277256e-01 -4.04928923e-02 3.81637245e-01 -4.38128829e-01\\n1.15155801e-01 2.42897272e-01 -6.37879550e-01 -2.27662355e-01\\n4.03003663e-01 3.83745372e-01 2.77280450e-01 1.09831855e-01\\n-9.21756104e-02 -5.95725298e-01 1.56497106e-01 -4.99341547e-01\\n-2.09607646e-01 1.26900375e-01 -2.64266253e-01 1.58621699e-01\\n-7.94810578e-02 4.68174033e-02 -1.80619117e-02 -7.98789263e-02\\n-1.40006408e-01 -3.36812101e-02 1.94172919e-01 1.05493609e-03\\n2.38649607e-01 -6.65402925e-03 -4.55217302e-01 5.65480471e-01\\n-2.95842975e-01 5.26448846e-01 7.06462711e-02 -8.10075760e-01\\n5.73327363e-01 3.54858458e-01 1.76080596e-02 -2.80160666e-01\\n7.49042153e-01 -3.18258435e-01 -4.09599394e-02 2.21206501e-01\\n-3.18006575e-01 -9.74004939e-02 2.30929255e-01 -1.65839583e-01\\n-2.68872082e-01 6.41820133e-01 2.96116471e-01 -1.95247740e-01\\n3.97757947e-01 -7.02481568e-02 -2.33029008e-01 3.74110192e-02\\n-2.51232505e-01 -1.65776253e-01 -4.83463883e-01 1.64276689e-01\\n-9.49009955e-02 -5.29884160e-01 -1.94603384e-01 -2.80688375e-01\\n-1.50118589e-01 -5.32343328e-01 -2.69235969e-01 8.83164555e-02\\n1.40855700e-01 1.74065739e-01 -4.53316160e-02 -1.54996598e-02\\n-8.93952474e-02 -7.29703069e-01 -2.04617046e-02 2.21978262e-01\\n1.98321998e-01 3.97939086e-01 2.90494204e-01 -9.57923532e-02\\n-3.25236879e-02 4.76933718e-01 -4.66469646e-01 -3.40668559e-01\\n2.60797322e-01 -2.89258193e-02 -7.89960846e-02 -6.87651634e-02\\n2.39370823e-01 7.32663870e-02 -2.76594944e-02 1.44459739e-01\\n-6.50832951e-02 -8.98641907e-03 2.39415199e-01 -2.91253142e-02\\n-1.66654781e-01 -2.77279973e-01 -2.28702635e-01 3.56883496e-01\\n-5.37678123e-01 -3.31992179e-01 3.38003397e-01 -5.43923452e-02\\n-1.05007298e-01 2.57273674e-01 2.37705439e-01 8.61702710e-02\\n-2.08313033e-01 -2.65642881e-01 3.73123586e-01 1.02593966e-01\\n1.95756301e-01 1.50899678e-01 -1.47900641e-01 -5.18822134e-01\\n-3.34511948e+00 -2.23232001e-01 -3.24563384e-02 -2.66675144e-01\\n3.40113223e-01 -4.05545160e-02 1.74479514e-01 -7.94104338e-02\\n-4.05725598e-01 3.23300287e-02 -2.54473716e-01 -2.65368342e-01\\n1.39018670e-01 1.92189306e-01 1.67110592e-01 1.47056475e-01\\n-1.10449046e-01 -3.76231492e-01 1.32936493e-01 4.31121290e-01\\n-6.03756458e-02 -8.87272239e-01 2.20471919e-02 -3.99244167e-02\\n1.17329106e-01 2.24200577e-01 -5.40385246e-01 2.28383131e-02\\n-3.71105969e-01 -2.61468321e-01 2.42476165e-01 -2.34382123e-01\\n-8.94613266e-02 3.43135178e-01 7.82296285e-02 -1.11272469e-01\\n-4.39702682e-02 -2.19443947e-01 -6.35450408e-02 -6.38985753e-01\\n1.43641055e-01 -7.31969595e-01 -1.12251610e-01 -8.04253221e-02\\n5.42788029e-01 -1.57395065e-01 2.91407943e-01 1.91379979e-01\\n3.96642126e-02 2.78113782e-01 2.79004335e-01 -1.67768255e-01\\n-2.71148235e-01 -1.84950799e-01 -2.11008251e-01 -1.42331868e-01\\n4.41909611e-01 3.39518428e-01 -4.23727274e-01 -2.13734657e-02\\n1.49357945e-01 -3.71392548e-01 -5.97635984e-01 -4.29301381e-01\\n-2.84049124e-01 -1.71122625e-02 -6.17903590e-01 -4.80762899e-01\\n-2.62747467e-01 4.78429198e-02 -2.68748663e-02 6.42070353e-01\\n-4.54377532e-01 -2.67116249e-01 -8.31938088e-02 -5.98228931e-01\\n3.53126198e-01 -2.58495510e-01 -1.19884685e-01 -2.16239929e-01\\n-3.05990636e-01 -3.84515464e-01 3.14616561e-01 1.22261904e-02\\n-2.20107287e-01 2.15363484e-02 4.13176604e-02 -1.37258098e-01\\n-4.72058982e-01 -6.68276548e-01 3.23135018e-01 6.34032190e-02\\n3.98526311e-01 1.06272697e-02 2.35594749e-01 -9.62028205e-02\\n5.76973975e-01 4.73464206e-02 1.03742599e-01 -4.88671929e-01\\n6.39932975e-03 8.08084756e-02 6.08229399e-01 -2.88537264e-01\\n-1.20463416e-01 -5.94639257e-02 -3.46711457e-01 -2.59306040e-02\\n2.83980906e-01 -1.78130597e-01 1.16233438e-01 -1.72940567e-01\\n3.53730738e-01 -5.15026808e-01 -2.33856916e-01 8.97527188e-02\\n2.19969749e-01 7.62103617e-01 -3.58014964e-02 -2.51166582e-01\\n-1.16652772e-01 3.05541158e-01 -2.47056156e-01 -5.98620251e-02\\n6.14076331e-02 3.38256881e-02 -2.41877645e-01 3.62324297e-01\\n1.24148935e-01 -5.75802401e-02 -2.60719180e-01 -1.08963298e-02\\n-5.72028942e-03 1.17650755e-01 2.88622737e-01 9.04601961e-02\\n-1.55539587e-01 -2.61169016e-01 3.89409102e-02 2.43159056e-01\\n2.59655178e-01 3.22957754e-01 2.11727351e-01 -2.37514496e-01\\n4.42053750e-02 2.03031152e-01 -2.90793896e-01 3.48428965e-01\\n-2.33299464e-01 8.26958641e-02 -5.94675422e-01 -1.80958271e-01\\n-3.39999825e-01 -1.97839379e-01 1.12401277e-01 2.21900567e-01\\n2.85651833e-01 -1.55798629e-01 1.02211609e-01 -5.99561810e-01\\n7.78692886e-02 -2.76846066e-02 1.87687129e-01 -3.39956395e-02\\n-2.05637008e-01 7.43264675e-01 -4.01754305e-03 -2.14604869e-01\\n1.11887895e-01 3.48549783e-02 -3.41538966e-01 -1.99666128e-01\\n1.55028030e-01 -3.01452279e-01 -2.04494298e-01 4.20735955e-01\\n2.26981223e-01 -8.77599716e-02 -1.09028429e-01 5.89897573e-01\\n-1.33005381e-01 -4.42201912e-01 -1.62344158e-01 -9.43928659e-02\\n1.98327243e-01 2.98030555e-01 1.96244121e-01 -5.27809322e-01\\n-2.27807574e-02 2.05028262e-02 1.77317441e-01 3.76372546e-01\\n-3.30027267e-02 1.15023896e-01 -5.28581329e-02 -2.49843210e-01\\n4.24578160e-01 7.79389814e-02 -1.27210338e-02 1.08806983e-01\\n1.72877267e-01 -2.23753452e-01 -3.51405859e-01 -7.43783489e-02\\n-2.67295875e-02 -3.09420764e-01 -9.42020863e-02 2.17390567e-01\\n1.00680195e-01 -8.02527219e-02 -4.42603409e-01 -1.61944747e-01\\n-4.88623798e-01 4.84581478e-02 5.41466475e-03 -5.53890586e-01\\n-5.29806241e-02 -1.41253114e-01 -3.85298550e-01 3.19706678e-01\\n2.04246402e-01 3.85264084e-02 1.37003377e-01 1.10713132e-01\\n-2.64749467e-01 -2.32030392e-01 1.95986509e-01 -8.30853283e-02\\n-4.22221065e-01 -1.49623424e-01 5.26328832e-02 -9.84155715e-01\\n8.36564675e-02 -5.80758378e-02 -2.53389597e-01 -1.11918092e-01\\n-1.56964719e-01 -4.53259826e-01 3.69443446e-01 -4.75871891e-01\\n-2.58214891e-01 2.70690005e-02 -3.03208321e-01 -2.68926829e-01\\n1.25821054e-01 2.94281654e-02 -2.02830881e-01 3.22806984e-01\\n-1.85926408e-01 6.67708874e-01 -5.71764708e-02 -7.44123459e-02\\n2.42068052e-01 -2.14179486e-01 3.05773675e-01 -1.23978928e-01\\n-4.99888450e-01 -1.91364676e-01 -2.58343935e-01 -8.46970156e-02\\n-3.67670618e-02 -1.77624542e-02 -6.06328398e-02 5.22985402e-03\\n4.72709626e-01 9.58673581e-02 -5.51297292e-02 -4.61797938e-02\\n-1.52590685e-03 -4.69712257e-01 1.50790960e-01 -3.05667639e-01\\n-1.40802190e-02 -1.41537145e-01 3.34254086e-01 2.21996643e-02\\n2.07272768e-01 -3.46563518e-01 7.39099622e-01 -1.76643223e-01\\n-4.06165719e-01 -2.20175505e-01 8.79630446e-02 2.39010751e-01\\n2.59124696e-01 -4.86553252e-01 -1.31546423e-01 3.80332202e-01\\n9.97922793e-02 3.65450568e-02 3.69998157e-01 -1.85572743e-01\\n-3.75818193e-01 1.51572093e-01 -5.34952998e-01 1.81514710e-01\\n8.10283422e-01 4.04320270e-01 1.59186810e-01 1.57550499e-01\\n1.88397035e-01 2.81127512e-01 5.42297184e-01 -1.65500075e-01\\n-1.07364386e-01 4.83080626e-01 1.73528463e-01 -4.39520717e-01\\n-9.33992416e-02 2.64368281e-02 6.10203370e-02 -4.91919607e-01\\n6.79621279e-01 1.81240976e-01 -5.33401728e-01 -4.34063613e-01\\n-3.60523134e-01 -1.70290306e-01 3.37384760e-01 -5.92264347e-03\\n1.54716000e-01 -1.69077873e-01 5.17231286e-01 -7.08082542e-02\\n2.11393386e-01 3.47954988e-01 -1.24384671e-01 -1.81492254e-01\\n1.74927458e-01 1.70893773e-01 3.52808833e-01 2.71994919e-01\\n-5.64906225e-02 8.71762261e-02 -1.32278323e-01 1.97109997e-01\\n-3.30084592e-01 -7.81590790e-02 1.89297467e-01 -1.28401682e-01\\n-4.09535803e-02 1.93087101e-01 4.28501904e-01 3.92036110e-01\\n2.99284428e-01 3.43642175e-01 2.16933876e-01 -1.08793423e-01\\n5.08146107e-01 5.90662062e-01 1.32862478e-01 5.35267107e-02\\n3.90827805e-02 1.96098223e-01 2.46114656e-02 3.32112461e-02\\n2.35788137e-01 3.21358860e-01 4.24374044e-02 7.69451618e-01\\n1.34213984e-01 3.18054616e-01 6.03440762e-01 -4.80277777e-01\\n-3.36176157e-01 1.02937296e-01 5.55460215e-01 -4.60631371e-01\\n8.16015378e-02 1.45286247e-01 -1.56125188e-01 2.38037705e-01\\n-6.61642671e-01 -1.33144855e-01 -3.35047767e-02 -3.94031629e-02\\n1.99811012e-01 -1.93622410e-01 -1.45663098e-01 7.73173720e-02\\n-6.92285970e-02 -1.31202370e-01 -2.96579659e-01 -4.51391697e-01\\n-2.76918590e-01 -1.29647493e-01 -9.19156671e-02 -3.10691148e-02\\n9.65477526e-02 -2.08516523e-01 -1.36616677e-01 -2.66307071e-02\\n3.06058347e-01 -2.85867810e-01 -1.40565276e-01 -9.29473191e-02\\n4.26739544e-01 1.63342565e-01 7.02730894e-01 -1.16476759e-01\\n6.83375299e-02 -1.71918422e-01 -1.69342861e-01 5.36286831e-03\\n1.66072026e-01 9.80730653e-02 4.02236097e-02 5.93285441e-01\\n-3.23686242e-01 -1.76464409e-01 1.09354302e-01 3.16734225e-01\\n-3.84919703e-01 -1.83929317e-02 5.54715768e-02 2.50932891e-02\\n-4.05071378e-02 6.97254911e-02 -3.34505260e-01 -1.40933990e-01\\n-2.33710200e-01 -4.82871175e-01 2.41333619e-01 -1.23346433e-01\\n-3.39529723e-01 -1.13958620e-01 5.70202470e-01 3.43593925e-01\\n-3.81726883e-02 -8.65434855e-02 -1.55017436e-01 7.46369883e-02\\n7.97446519e-02 3.58048677e-01 -1.92373782e-01 -2.03921288e-01\\n-4.24902022e-01 2.36916468e-01 -1.28424108e-01 2.55955994e-01\\n7.19210207e-02 3.83944631e-01 -1.55547619e-01 2.18073830e-01\\n3.66450667e-01 -1.65159777e-01 -2.92505741e-01 -4.39564705e-01\\n-1.74445257e-01 -7.92542920e-02 1.46334410e-01 -7.29630142e-02\\n1.74720407e-01 -3.97605479e-01 -1.52007505e-01 -2.94425905e-01\\n-2.23125577e-01 -4.01335359e-01 -5.22471294e-02 2.59413198e-03]]',\n", + " 'job_description': 'For one of our clients, we are lookinf for a Clinical Data Manager Reporting to the Head of Clinical Data Management, the selected candidate will collaborate with the team with the objective of making clinical data, coming from different sites, available for the analysis and decisions of our Clinical Science and Medical professionals. Key responsibilities Lead and coordinate all data management activities from study start up through database lock and perform vendor oversight for outsourced activities. Lead the development and revision of Data Management Documentation, such as Case Report Form (pCRF or eCRF), Study Validation Plan (SVP), Data Management Plan (DMP), Data Validation Plan (DVP), Data Management Report (DMR), EDC specifications, reports, throughout the lifecycle of the project and ensures compliance with established SOPs, GCP and international regulatory guidelines. Develop Data Transfer Agreement (DTA) between XXXXXX and vendors and reconcile data within the Clinical Database. Develop test scripts and execution logs for User Acceptance Testing (UAT), coordinate UAT of eCRF build and validation documents. Provide Clinical Data Management support to Clinical Operations, Project Management, Drug Safety, Clinical Science and Biostatistics team. Provide input and review clinical documents such as Protocols, Clinical Study Reports, Laboratory Analysis Plan and Statistical Analysis Plan. Provide training on study trial tools and create user guides. Assist in definition and design of CDISC compliant data listings, summary table validation, data specifications and/or process data transfers in preparation for statistical review. Coordinate the archiving / filing in TMF of study databases and CDM related documents. Assist in reconciling AE/SAE data in Safety database and/or other Data Collaborate with IT and Clinical Database Developers (DBD) to address Clinical application requests and/or changes to Clinical database systems, support development and implementation of new technologies. Participate in Clinical Trial Meetings, conference calls and/or meetings with vendors. Develop, revise and maintain standard operating procedures and working instructions Coaching and mentoring of other CDM staff and newcomers Skills and competencies Strong Clinical Data Management experience is required, gained in pharmaceutical industry, CRO or Life Science related industry. Ability to coordinate the data management activities with the project team, prioritize multiple tasks and manage time efficiently. Detail oriented, solution oriented with excellent organizational and communication skills. Knowledge of CDISC standards. Knowledge of RDBMS, clinical database applications, SQL, SAS, Excel, Access, VBA. Fluent in English is required. Working knowledge of Good Clinical Practices, Clinical research, Clinical trial process and related regulatory requirements and terminology. Understanding of the research environment and good knowledge of global regulatory requirements such as ICH GCP and CFR 21 part 11',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Professionalism\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Planning\", \"Time Management\", \"Operations\", \"Detail Oriented\", \"Prioritization\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Clinical Document Architecture\", \"Database Application\", \"Tooling\", \"Accessioning\", \"Clinical Laboratory Science\", \"Data Validation\", \"Life Sciences\", \"Data Management\", \"Statistics\", \"SAS (Software)\", \"Clinical Trials\", \"System Support\", \"Standard Operating Procedure\", \"Outsourcing\", \"Database Development\", \"Statistical Coupling Analysis\", \"Industrialization\", \"Case Report Forms\", \"Good Clinical Practices (GCP)\", \"File Archiver\", \"Activism\", \"Maintainability\", \"Executable\", \"Clinical Practices\", \"Validation Master Plan\", \"Data Management Plan\", \"Biostatistics\", \"User Guide\", \"Clinical Research\", \"Activity Manager\", \"Revisions\", \"Clinical Data Warehouse\", \"Clinical Data Management\", \"Database Systems\", \"Validations\", \"Pharmaceuticals\", \"Instructing\", \"Locks\", \"Clinical Study Reports\", \"Google Cloud Platform (GCP)\", \"Data Transfer Object\", \"Project Management\", \"Test Script\", \"Industrial Relations\", \"Title 47 CFR Part 15\", \"Electronic Data Capture (EDC)\", \"Data Processing\", \"SQL (Programming Language)\", \"Regulatory Requirements\", \"Acceptance Testing\"]',\n", + " 'languages': \"['English', 'Telugu']\"},\n", + " {'company_id': '17',\n", + " 'job_title': 'data science manager f/m switzerland',\n", + " 'location': 'Switzerland',\n", + " 'industry': 'Consulting',\n", + " 'website': 'www.axxiome.com',\n", + " 'jobdescription_embedded': '[[-2.45921910e-01 3.64944696e-01 5.66830039e-01 -4.42552194e-03\\n6.07137740e-01 -3.58532816e-02 -7.13070855e-04 2.29102582e-01\\n-8.79856385e-03 -4.23271626e-01 -1.12019163e-02 -2.79152483e-01\\n1.17464408e-01 1.81373224e-01 2.31768861e-02 4.22521472e-01\\n2.09838718e-01 3.76365110e-02 -1.79761857e-01 4.03860956e-01\\n2.34120376e-02 -1.44892216e-01 2.07821861e-01 7.00868130e-01\\n4.20755804e-01 -2.49336548e-02 -4.27808836e-02 -4.32553031e-02\\n-2.81308353e-01 -2.11954385e-01 5.24052203e-01 2.60045230e-02\\n-1.87911510e-01 -2.90406376e-01 1.07913442e-01 3.05315405e-02\\n-2.64642119e-01 -9.09706503e-02 -1.89330533e-01 1.44601107e-01\\n-4.73985076e-01 -1.82331115e-01 -1.06650069e-02 -2.91811861e-03\\n-3.76790941e-01 -5.17107308e-01 -1.25920102e-01 -1.00769050e-01\\n1.08134978e-01 9.05703604e-02 -4.54427838e-01 1.93579257e-01\\n-2.60035336e-01 -2.59526730e-01 2.71923423e-01 7.75269151e-01\\n-2.98850853e-02 -4.39171314e-01 -5.32690525e-01 -3.93370718e-01\\n1.47971913e-01 -7.26859272e-02 7.86159933e-02 -3.06278467e-01\\n2.78093457e-01 -3.30605730e-03 3.75598557e-02 2.43363649e-01\\n-7.56314635e-01 -1.50222898e-01 -3.26991111e-01 4.13803719e-02\\n-3.66385281e-01 -1.05629474e-01 -4.33392674e-01 -2.40224093e-01\\n-1.23682141e-01 4.59726006e-01 1.06721871e-01 -3.25710848e-02\\n-2.64199972e-01 2.76415229e-01 -3.26216042e-01 2.17330575e-01\\n1.81030706e-01 3.17788005e-01 3.44060987e-01 3.91795516e-01\\n-3.28861833e-01 4.00029361e-01 2.92857468e-01 -3.70870233e-01\\n2.56032765e-01 1.52590707e-01 3.01409543e-01 -1.02013722e-02\\n1.69352084e-01 1.29102111e-01 -1.88280120e-01 3.37971598e-01\\n2.92865813e-01 -2.53491759e-01 1.13441981e-02 -1.18685320e-01\\n7.98881799e-02 -4.54057828e-02 1.68322399e-02 1.24850497e-01\\n-3.90109837e-01 2.84585595e-01 -4.44836654e-02 -3.66795272e-01\\n-1.00431263e-01 -4.57162291e-01 -1.06918573e-01 -8.01978409e-02\\n-5.70156518e-03 1.87075034e-01 1.78632349e-01 2.35677660e-01\\n2.10754246e-01 -5.03677428e-02 1.70380592e-01 8.76710653e-01\\n-8.34595039e-03 4.89493869e-02 -3.32669228e-01 4.18295622e-01\\n7.65853748e-03 -1.90081030e-01 1.90014482e-01 1.06433108e-01\\n-1.29714862e-01 -5.53015508e-02 -3.17486405e-01 3.26737285e-01\\n-5.01306206e-02 -2.85634041e-01 -1.82487592e-01 1.18685432e-01\\n-2.42170654e-02 -4.91118252e-01 6.07552648e-01 -2.95297876e-02\\n1.18727639e-01 -2.52901286e-01 5.49544487e-03 -1.00099713e-01\\n-1.47795305e-03 1.36073396e-01 1.42462879e-01 1.10068917e-01\\n-2.93086052e-01 -2.61587262e-01 -9.45952386e-02 2.04275176e-01\\n-3.72313261e-01 5.68338484e-03 -2.17546254e-01 -6.04286306e-02\\n2.10390940e-01 1.22314103e-01 -4.67245340e-01 1.52860612e-01\\n-7.63912871e-02 -6.53198585e-02 -6.28637057e-03 4.08639252e-01\\n-3.66601586e-01 2.10801393e-01 -6.10959157e-02 -1.05927579e-01\\n6.28257394e-01 1.36030614e-01 3.37295145e-01 1.67331984e-03\\n2.35847265e-01 -6.34730384e-02 1.65461987e-01 2.23834157e-01\\n-5.79585254e-01 4.36830193e-01 -8.55116397e-02 -1.90968633e-01\\n1.48631006e-01 -8.61020237e-02 3.19376707e-01 -2.54164547e-01\\n1.09994173e-01 -1.79887325e-01 -2.81099111e-01 -3.52362216e-01\\n-9.43516865e-02 -4.85175848e-02 3.22893560e-01 -5.07194817e-01\\n-7.61729479e-03 2.63135016e-01 -5.76938748e-01 -2.25446984e-01\\n1.20687030e-01 2.38363579e-01 7.45931938e-02 2.11705700e-01\\n-1.76185995e-01 -5.34414768e-01 1.38204321e-01 -4.11061585e-01\\n-2.34608501e-01 1.61183521e-01 -2.93112636e-01 1.30785525e-01\\n4.76591624e-02 2.24735159e-02 -1.05475865e-01 6.95926100e-02\\n-3.24384570e-01 -1.61868110e-02 1.67739503e-02 7.41715729e-02\\n3.55591476e-01 1.47779748e-01 -4.31447506e-01 5.21407366e-01\\n-1.65915996e-01 3.91414404e-01 1.80935234e-01 -1.00179696e+00\\n4.41542685e-01 3.47838730e-01 6.50071129e-02 -3.69515121e-01\\n5.59662938e-01 -3.95547062e-01 -2.96869520e-02 1.25100851e-01\\n-3.11068058e-01 -2.29845583e-01 2.32175797e-01 -2.63683528e-01\\n-2.66220629e-01 5.03459215e-01 -2.03863233e-02 1.43936604e-01\\n3.03789854e-01 -2.84333766e-01 -2.92014003e-01 -1.28883198e-01\\n-2.25134090e-01 -2.67191052e-01 -6.82415664e-01 2.43814290e-03\\n-9.48423892e-02 -4.56080288e-01 -9.62660015e-02 -4.14302230e-01\\n-1.35782093e-01 -3.27197075e-01 -1.55999899e-01 4.64870185e-02\\n2.03237012e-01 1.12335689e-01 -1.31886184e-01 -2.83232890e-02\\n2.26668492e-02 -6.32648706e-01 -8.35290700e-02 1.24586798e-01\\n3.28894079e-01 2.66649902e-01 1.72872901e-01 4.07448635e-02\\n3.69883366e-02 6.54320240e-01 -2.93933392e-01 -2.73528099e-01\\n2.35190347e-01 1.35438293e-01 -6.35076314e-02 -1.96907341e-01\\n7.97661915e-02 2.46569231e-01 -2.67043054e-01 -1.50392763e-03\\n8.39423537e-02 -5.40301390e-02 3.38879973e-01 1.77628547e-02\\n-1.90582663e-01 -2.03127712e-01 -6.51058555e-02 1.30328491e-01\\n-5.84850669e-01 -2.64413476e-01 6.32897258e-01 1.34088337e-01\\n9.50071029e-03 2.51613736e-01 2.29802251e-01 1.88265294e-02\\n-3.66359562e-01 -2.13709712e-01 3.07417035e-01 8.39281529e-02\\n1.96068406e-01 6.11872748e-02 5.12848124e-02 -5.77519417e-01\\n-3.24799728e+00 -1.69826210e-01 1.06522381e-01 -2.25405872e-01\\n3.08175147e-01 -1.89206302e-01 1.63121253e-01 4.45353314e-02\\n-4.54820126e-01 1.42139625e-02 -9.49461311e-02 -1.37367144e-01\\n5.78579307e-02 1.89332396e-01 8.62061977e-02 1.91817939e-01\\n1.42997324e-01 -1.68550238e-01 7.36394152e-02 3.95097315e-01\\n-8.34486261e-02 -7.82853246e-01 1.66983396e-01 1.36964232e-01\\n1.21752001e-01 1.05963036e-01 -4.65968609e-01 -1.36122018e-01\\n-3.57103407e-01 -2.17097014e-01 1.21184766e-01 -2.82251537e-01\\n-1.90611392e-01 2.12878883e-01 2.40197480e-01 -6.95260763e-02\\n2.69690920e-02 -3.47148955e-01 -5.56462631e-02 -5.26130319e-01\\n8.72342363e-02 -6.10046625e-01 1.80049986e-03 -6.27218187e-02\\n7.39886522e-01 -2.77540952e-01 1.94530487e-01 1.91638410e-01\\n1.06656328e-01 1.63295954e-01 1.92849159e-01 6.54033944e-02\\n-2.34414548e-01 -3.04287136e-01 -1.06991798e-01 -1.35043666e-01\\n6.06157124e-01 3.87201041e-01 -1.21685475e-01 4.22015078e-02\\n1.07443072e-01 -2.14714855e-01 -5.31587601e-01 -2.41496980e-01\\n-1.90920800e-01 -1.38890103e-01 -7.47319221e-01 -5.13473034e-01\\n-1.52645022e-01 -1.69929966e-01 -1.20133206e-01 6.72429919e-01\\n-1.25722989e-01 -2.56621331e-01 -1.95590854e-01 -4.87632364e-01\\n3.40316892e-01 -1.53406411e-01 7.67541304e-02 -1.80450037e-01\\n-1.68858439e-01 -3.90759051e-01 1.63518235e-01 -4.90865484e-02\\n-9.50010121e-02 -9.49073732e-02 6.59806374e-03 -1.33534163e-01\\n-3.63709539e-01 -5.95687926e-01 3.92257780e-01 8.04415345e-02\\n4.33541536e-01 8.36967230e-02 4.16038752e-01 -4.92727235e-02\\n3.91176701e-01 -6.91211596e-02 -1.48355290e-01 -4.93212640e-01\\n-6.06559515e-02 9.93431583e-02 5.32403588e-01 -2.09267661e-01\\n4.22511026e-02 -8.34257901e-03 -1.90606460e-01 -5.67713603e-02\\n3.45819980e-01 -8.13398361e-02 1.63348898e-01 -7.88199306e-02\\n2.25743979e-01 -2.68304437e-01 -1.04395591e-01 8.70596319e-02\\n7.67047983e-04 6.03134334e-01 -6.25669211e-02 -3.56460929e-01\\n-4.75177765e-02 4.08956170e-01 -4.37586159e-02 -1.00416765e-01\\n-3.08997571e-01 -2.62237713e-02 -2.88998842e-01 4.15641457e-01\\n-8.36860985e-02 -1.96044520e-01 -2.42734015e-01 -1.15270570e-01\\n-8.46666247e-02 3.39749098e-01 2.38535404e-01 2.01701581e-01\\n-3.77592780e-02 -4.09201711e-01 -1.04267605e-01 1.88862771e-01\\n2.72506565e-01 3.84476304e-01 2.52921373e-01 -2.66126782e-01\\n7.01435935e-03 2.31164202e-01 -3.12745273e-01 2.70031601e-01\\n-1.71409488e-01 2.28548393e-01 -7.02564120e-01 -2.83752441e-01\\n-2.08915830e-01 -3.24911743e-01 2.07820892e-01 4.84418899e-01\\n2.14780331e-01 -8.35779980e-02 1.30925566e-01 -5.00762582e-01\\n2.89361715e-01 1.76102281e-01 1.22894250e-01 3.34063694e-02\\n-7.21575618e-02 8.39317024e-01 2.67627873e-02 -1.64550453e-01\\n1.71246715e-02 3.88621166e-03 -2.45666057e-01 -2.18836084e-01\\n4.54920530e-02 -5.34934044e-01 -1.49418220e-01 5.12873352e-01\\n1.72530025e-01 -1.44415632e-01 -1.38982147e-01 2.46456265e-01\\n1.22482069e-02 -2.55173147e-01 -2.92161405e-01 5.41106947e-02\\n3.45119476e-01 2.08441824e-01 2.88472503e-01 -5.93923628e-01\\n2.30947826e-02 -5.04769832e-02 4.61579151e-02 4.76999313e-01\\n8.36529136e-02 1.59786820e-01 -8.18593726e-02 -1.12589180e-01\\n5.34571588e-01 -5.26609458e-02 -1.31717294e-01 9.87673700e-02\\n1.06258601e-01 -1.84308559e-01 -3.16501886e-01 6.96009547e-02\\n5.76907173e-02 -3.07378501e-01 -6.59161657e-02 2.06394672e-01\\n3.99399847e-02 5.78490570e-02 -6.52556181e-01 -2.13704571e-01\\n-3.81309569e-01 4.25295159e-02 4.56301644e-02 -6.49009824e-01\\n6.15077205e-02 -1.15735121e-01 -5.84666252e-01 3.19792658e-01\\n1.10377073e-01 -1.85834795e-01 1.54304832e-01 4.23192978e-04\\n-2.16205731e-01 -2.47395664e-01 1.75002486e-01 2.98761457e-01\\n-2.44280308e-01 -2.60217011e-01 -4.22296152e-02 -9.04650927e-01\\n1.16268277e-01 6.54700696e-02 -8.91539603e-02 2.45658457e-01\\n6.58497214e-04 -7.33578205e-01 2.82283366e-01 -3.81602824e-01\\n-2.09483862e-01 -5.65385260e-02 -2.51575977e-01 -4.11636323e-01\\n1.18698716e-01 3.70347053e-02 -2.05585554e-01 4.49339628e-01\\n-3.05426568e-01 5.05944610e-01 -1.73813432e-01 3.70150656e-02\\n1.34803578e-01 -2.33847052e-01 9.02599767e-02 -2.93336451e-01\\n-4.29284632e-01 -2.21725553e-01 -2.75201023e-01 -3.27438116e-01\\n-1.66207999e-01 -2.50342637e-01 -7.11620376e-02 1.43014807e-02\\n4.78029847e-01 2.18206286e-01 -1.06679216e-01 -1.48405358e-01\\n1.47682920e-01 -4.79291230e-01 2.66344696e-01 -1.88953221e-01\\n-1.12153590e-03 -1.21023074e-01 2.01207161e-01 1.29752934e-01\\n1.83702007e-01 -3.42673153e-01 4.05458778e-01 -3.06599140e-01\\n-3.56773376e-01 -1.80469215e-01 7.36860558e-02 2.57491227e-02\\n3.50551903e-01 -3.83217722e-01 -1.26342922e-01 3.16002071e-01\\n8.86447430e-02 1.28272325e-02 2.90792197e-01 -1.86736703e-01\\n-1.81795321e-02 3.06658030e-01 -5.24818480e-01 2.60160446e-01\\n8.48055899e-01 1.10449523e-01 2.42968410e-01 2.89506137e-01\\n2.52098680e-01 2.30567485e-01 3.99969548e-01 -9.57072824e-02\\n-2.05243990e-01 3.93826306e-01 7.53218457e-02 -4.83305424e-01\\n-1.09464027e-01 -1.73052430e-01 -2.26075500e-01 -4.59894568e-01\\n5.80006897e-01 3.13304365e-01 -3.13438594e-01 -2.22106159e-01\\n-2.80672997e-01 -9.55687389e-02 3.41950446e-01 -2.10532285e-02\\n-4.04935032e-02 -9.00340267e-03 5.80752373e-01 -1.76937386e-01\\n3.75622749e-01 5.29786289e-01 -2.13048786e-01 -3.02188903e-01\\n-6.72305599e-02 2.84235120e-01 9.90334079e-02 4.56026256e-01\\n-1.88996643e-01 2.73309767e-01 6.46158233e-02 2.06541523e-01\\n-2.26517797e-01 2.90215742e-02 2.25946650e-01 9.79579613e-02\\n1.49736643e-01 5.40722013e-02 5.74282885e-01 3.40536207e-01\\n2.84645557e-01 3.55635285e-01 3.58910799e-01 5.27420491e-02\\n5.05891562e-01 5.76545477e-01 3.40940446e-01 1.43006518e-01\\n-2.32622474e-02 6.61864057e-02 9.19683054e-02 -2.67255381e-02\\n1.70390472e-01 5.23409128e-01 1.00115307e-01 8.55834246e-01\\n3.27121615e-01 3.83333921e-01 6.89056873e-01 -6.68171346e-01\\n-2.98700750e-01 2.68845912e-02 5.15031815e-01 -4.69754308e-01\\n4.44980338e-02 1.96003169e-01 -2.65809357e-01 1.55805796e-01\\n-5.26422739e-01 -2.39244461e-01 1.97987724e-03 6.03208318e-02\\n-4.44223732e-02 -1.33598968e-01 -1.68413088e-01 2.28887111e-01\\n-1.31252766e-01 -1.42758027e-01 -3.60055506e-01 -1.09288201e-01\\n-2.75815457e-01 3.34134996e-02 -9.96145308e-02 4.40237001e-02\\n-1.06014490e-01 -2.81776607e-01 -1.68639589e-02 -1.39402419e-01\\n3.60379785e-01 -6.96187615e-02 -1.12020478e-01 -2.50156727e-02\\n2.43043721e-01 1.32869542e-01 6.48293138e-01 1.78837478e-02\\n8.48599896e-02 -2.50000209e-01 -1.40357256e-01 6.23552762e-02\\n2.28759289e-01 2.34695189e-02 -3.91375320e-03 3.76838803e-01\\n-2.33588368e-01 -2.61357486e-01 7.96170682e-02 1.75206900e-01\\n-4.07878757e-01 -4.38190587e-02 -1.18612051e-01 8.47824514e-02\\n-1.34902820e-03 1.98414788e-01 -3.02337587e-01 2.15135142e-02\\n-5.74270822e-02 -4.99403059e-01 3.29176903e-01 -1.74990714e-01\\n-1.49460539e-01 1.25245526e-02 2.70362228e-01 1.41746044e-01\\n-2.46404469e-01 8.99055600e-02 -1.87737614e-01 1.59438118e-01\\n-6.67132884e-02 2.97512829e-01 -1.98901206e-01 -2.20736310e-01\\n-3.31923842e-01 1.41132772e-01 -9.16024297e-02 1.81684241e-01\\n3.55431437e-02 4.12354469e-01 7.65552893e-02 4.04589027e-02\\n3.89421374e-01 -1.51551468e-02 -2.70998240e-01 -2.18103588e-01\\n-2.26548940e-01 -1.72021717e-01 -1.16660625e-01 -9.22714770e-02\\n2.63544202e-01 -2.78902918e-01 -6.21061912e-03 -2.97500670e-01\\n-2.16268674e-01 -5.27362585e-01 1.41717307e-02 -1.07467048e-01]]',\n", + " 'job_description': 'OUR COMPANY Our mission is to deliver solutions to the financial services industry, driving business and technology change through proven global expertise. Axxiome is a name synonymous with quality and value for financial services organizations that are looking to improve or build upon their IT operations. With offices and subsidiaries in many countries across 4 continents, Axxiome excels in transforming legacy banking and insurance platforms to modern solutions and is considered a leader in implementation and integration of digitization initiatives across the globe. In Cooperation with the Business Engineering Institute St.Gallen AG (BEI AG) we are building up a Data Science team for financial services. Innovation based on science and projects will lead us to success. BEI AG is the leading company for turning knowledge gained from research and science into practice-oriented consulting and innovative solutions. Join our team as DATA SCIENCE MANAGER F/M SWITZERLAND JOB DESCRIPTION As Data Science Manager you will manage a team of 3-5 highly educated and experienced data science analysts and developers, collaborate with the BEI AG and be responsible with your team for innovation and accurate data collection, processing, modelling and analysis to drive business. Lead data science projects end to end and coordinate functional teams/developers of 3-5 employees Mine, analyze customer data to drive optimization and improvement of products, marketing techniques and business strategy with your team Develop/use predictive statistics behavioral or other models by machine learning and/or traditional statist. modeling techniques to increase and optimize customer experience and revenue generation Develop data models, algorithms, tools and methods Applied knowledge of the configuration options of modules within or across packages to functional solutions using detailed knowledge of package capabilities to meet business requirements Create showcases how BI data can help to facilitate and drive business decisions focused on Financial Services Industries Connect findings to business initiatives and approach customer at various management levels to create opportunities REQUIREMENTS Master’s degree in engineering, computer science, physics, math or economics Familiar with the principles of modelling 5 years of experience Project Management SQL database management and maintenance skills Several years developing sustainable customer relations Fluent in German and English ADDITIONAL AS A PLUS Machine Learning, AI Python; R and/or SPSS knowledge or equivalent tools WE OFFER Unleash your potential in an international company with flat hierarchies. Enjoy a maximum of personal freedom. A structured onboarding process ensure that our new hires get familiar with Axxiome, receive right tools and feel seen and accountable. An attractive salary model with performance-based bonuses, a generous home office regulation, a company car for private use and other benefits of a modern consulting company round off our offer to you. As a top performer, you also participate directly in the company’s success through an investment model. To ensure that your knowledge is always “state-of-the-art”, you regularly take part in internal and external training courses. An intensive training and a regular coaching enable you to reach your personal goals. YOUR APPLICATION Please apply online with your complete set of documents, including your desired salary and your possible starting date at recruiting.dach@axxiome.com. For any questions please don’t hesitate to contact Hardy Schwarzer, Recruiting Manager Europe at Axxiome (hardy.schwarzer@axxiome.com, +49 151 27 655 588).',\n", + " 'soft_skills': '[\"Research\", \"Cooperation\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Management\", \"Accountability\", \"Operations\", \"Integration\", \"Innovation\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Technological Change\", \"Business Strategies\", \"Financial Services\", \"Sustainable Development\", \"Service Level Management\", \"Onboarding\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Customer Data Integration\", \"Performance Based Contracting\", \"Process Modeling\", \"Statistical Modeling\", \"SQL Plan Management\", \"Investments\", \"Machine Learning Methods\", \"Data Science\", \"Business Requirements\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Personalization\", \"Physics\", \"Receivables\", \"Service Innovation\", \"Modulation\", \"Economics\", \"Product Marketing\", \"Banking\", \"Project Management\", \"Algorithms\", \"Customer Experience\", \"Service Industries\", \"Additives\", \"Data Collection\", \"Job Descriptions\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"New Hire Orientations\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '114',\n", + " 'job_title': 'internship aircraft data analytics (all genders)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'job_description': 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " 'languages': \"['English', 'Swedish', 'Marathi', 'Ganda', 'Sinhalese']\"},\n", + " {'company_id': '88',\n", + " 'job_title': 'embedded software / firmware engineer',\n", + " 'location': 'Novazzano',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.13615626e-01 3.17603946e-01 4.27932680e-01 -1.25628533e-02\\n4.90105957e-01 -2.43438557e-01 -1.54078931e-01 2.02477500e-01\\n4.33974117e-02 -3.79182458e-01 -1.06364094e-01 -1.07854694e-01\\n-9.39297900e-02 3.13575529e-02 1.66416869e-01 5.32419205e-01\\n1.97336540e-01 -2.97122821e-02 -1.78777009e-01 3.57035637e-01\\n2.01637655e-01 -6.21538907e-02 1.81951001e-01 7.39068508e-01\\n2.49216363e-01 4.96998876e-02 8.57981592e-02 -5.09540699e-02\\n-1.93515807e-01 -2.18473032e-01 3.70928347e-01 7.80771312e-04\\n-1.92874700e-01 -2.83852786e-01 1.98007628e-01 1.08621575e-01\\n-2.56384790e-01 -2.98345443e-02 9.53033392e-04 1.88259110e-01\\n-5.22574425e-01 -3.78825158e-01 1.54568151e-01 1.98277049e-02\\n-1.99459121e-01 -1.97073326e-01 2.41436049e-01 -1.25941247e-01\\n-1.67161168e-03 1.33093903e-02 -5.10663688e-01 2.57662266e-01\\n-1.85914695e-01 -9.40051973e-02 3.70991021e-01 5.84934533e-01\\n1.39318453e-02 -6.26290083e-01 -3.18143487e-01 -2.61174589e-01\\n-1.01508172e-02 -4.69355285e-02 -3.85899357e-02 -1.76207855e-01\\n4.30924803e-01 -4.79861535e-02 -1.45215131e-02 2.38672793e-01\\n-7.43308008e-01 -8.91094431e-02 -3.01801592e-01 1.41941145e-01\\n-2.70113200e-01 -9.48204175e-02 -8.91206637e-02 -2.17152372e-01\\n-4.84045446e-02 4.73446190e-01 1.08767003e-01 5.89200705e-02\\n-1.54117346e-01 2.45117933e-01 -1.83999330e-01 3.04542422e-01\\n3.64919037e-01 1.90130368e-01 1.78765997e-01 2.30319157e-01\\n-4.90135700e-01 4.82555211e-01 1.40564606e-01 -2.70800740e-01\\n2.28467628e-01 2.37322196e-01 3.72663826e-01 1.34433731e-01\\n-3.04082409e-02 1.75479487e-01 -2.18265370e-01 3.20110232e-01\\n2.02055991e-01 -8.26829821e-02 5.71785383e-02 -7.60381073e-02\\n-5.45725785e-02 -1.39089838e-01 -8.04027691e-02 2.53518462e-01\\n-3.86491567e-01 3.19884717e-01 2.03466788e-01 -1.90679535e-01\\n-4.82671522e-03 -5.67386329e-01 -1.84879079e-01 -1.10986479e-01\\n3.95083800e-02 1.81810409e-01 4.02116239e-01 1.43526614e-01\\n2.64169514e-01 1.40972883e-01 1.27205506e-01 9.40545738e-01\\n2.71296520e-02 6.75052702e-02 -1.77686766e-01 4.00302112e-01\\n1.11154333e-01 -1.96357012e-01 6.27346113e-02 3.73464465e-01\\n8.85079354e-02 -1.71951801e-01 -2.27159813e-01 3.81341398e-01\\n-1.83499366e-01 -1.83863550e-01 -2.95124829e-01 2.10124746e-01\\n-1.94515944e-01 -5.07162750e-01 5.38344145e-01 8.02005678e-02\\n1.73450232e-01 6.77218009e-03 -1.95334122e-01 -1.35974467e-01\\n-1.13445953e-01 2.91479647e-01 -1.37274504e-01 1.35638729e-01\\n-2.15806961e-01 -1.18195236e-01 -2.18589589e-01 1.61318243e-01\\n-9.39082876e-02 1.42454669e-01 -1.69721991e-01 -1.60035044e-01\\n1.88406393e-01 -2.93005612e-02 -4.66676623e-01 3.11927915e-01\\n7.52880275e-02 -1.19047865e-01 1.15923965e-02 2.12985978e-01\\n-2.60096043e-02 2.28089020e-01 1.01668008e-01 -2.29837924e-01\\n4.53271389e-01 -1.93684120e-02 1.13036066e-01 -5.64340986e-02\\n2.70376444e-01 -2.48045549e-01 1.04951061e-01 2.20495954e-01\\n-6.11997426e-01 3.40168178e-01 -7.45792910e-02 -8.40912387e-02\\n6.02940246e-02 3.47783864e-02 5.13315380e-01 -2.81815708e-01\\n-1.90750867e-01 -2.14558065e-01 -4.37251568e-01 -3.57132137e-01\\n-1.22602016e-01 1.04225010e-01 3.65291327e-01 -3.25048864e-01\\n-8.10481515e-03 1.88891798e-01 -5.28185129e-01 -7.52027482e-02\\n1.89279214e-01 1.47062317e-01 1.97137594e-01 5.52048087e-02\\n-1.12083293e-01 -4.50272977e-01 -9.11734649e-04 -4.60650265e-01\\n-3.83177787e-01 -1.59306917e-02 -2.07977116e-01 8.40752348e-02\\n6.59514964e-02 4.39317003e-02 -4.75919992e-02 -5.83197698e-02\\n-3.46631825e-01 -1.01401277e-01 3.47464770e-01 2.04043072e-02\\n1.66993752e-01 -2.64409427e-02 -3.22962970e-01 5.55691957e-01\\n-1.98424384e-01 6.23353720e-01 9.12558585e-02 -8.80992115e-01\\n5.08653164e-01 2.73281366e-01 6.18680473e-03 -4.41968709e-01\\n5.85278809e-01 -3.82349670e-01 -3.43779922e-02 1.61146745e-01\\n-2.69647151e-01 -1.46287277e-01 3.04615110e-01 -1.68651342e-01\\n-2.58253783e-01 7.50985920e-01 3.16121988e-02 2.32393760e-02\\n2.45293498e-01 -2.91727006e-01 -1.10613793e-01 -3.18405330e-02\\n-8.50957353e-03 -1.38805136e-01 -4.52556640e-01 5.06341495e-02\\n-3.68159190e-02 -4.85896945e-01 -1.13366991e-01 -4.72997546e-01\\n-2.09320381e-01 -3.68603706e-01 -2.42011860e-01 2.70866752e-01\\n4.90001217e-02 9.03357491e-02 6.28236085e-02 -1.12989359e-01\\n-4.36357930e-02 -6.52041733e-01 -1.03172332e-01 1.25165254e-01\\n4.10856873e-01 1.89809501e-01 9.67685506e-02 -2.07927562e-02\\n-8.65276437e-03 4.08555806e-01 -3.35262716e-01 -2.02630028e-01\\n1.38800189e-01 1.65642664e-01 -2.30085198e-02 -5.85364290e-02\\n1.93177819e-01 3.92142951e-01 -1.63369477e-01 1.76578686e-02\\n-1.78787872e-01 2.61949927e-01 3.41409445e-01 -1.20622367e-01\\n-2.78005302e-01 -2.31522307e-01 9.59087163e-03 2.48363614e-01\\n-5.69014072e-01 -1.46737233e-01 5.21248281e-01 2.69822627e-01\\n1.42906040e-01 9.90066454e-02 3.09970558e-01 -1.80262238e-01\\n-2.06849173e-01 -1.56655833e-01 1.77267700e-01 2.69904763e-01\\n1.34267524e-01 -1.36507687e-03 -9.25226137e-02 -5.05831718e-01\\n-3.35974598e+00 -7.78948069e-02 1.26412779e-01 -2.20854715e-01\\n2.46262729e-01 -1.48269773e-01 1.13978095e-01 3.93725038e-02\\n-2.57997483e-01 4.14314866e-03 -2.96879202e-01 2.77396590e-02\\n6.70287684e-02 1.86882660e-01 7.61982873e-02 1.15807585e-01\\n-1.72087643e-02 -3.65535885e-01 7.94063136e-03 2.93128252e-01\\n-4.43775281e-02 -7.50760913e-01 5.23510389e-02 -7.76177496e-02\\n1.52237520e-01 2.04464234e-02 -4.84314531e-01 -3.67103145e-02\\n-1.79086909e-01 -2.76567042e-01 7.47754648e-02 -1.45245999e-01\\n-1.87711492e-01 2.72608548e-01 9.96245667e-02 -6.91403896e-02\\n1.54967010e-01 -2.69678950e-01 -4.99216653e-02 -4.76781845e-01\\n1.54059142e-01 -6.01470232e-01 4.26412411e-02 -4.18870449e-02\\n5.55779457e-01 -2.07746297e-01 1.67691574e-01 2.37433195e-01\\n1.88324586e-01 2.23544717e-01 -1.16171036e-02 1.45912180e-02\\n-1.62799433e-01 -2.22819641e-01 3.45742442e-02 -1.86524421e-01\\n3.80082846e-01 4.36799288e-01 -1.63528994e-01 6.59017032e-03\\n3.02480590e-02 -2.36541495e-01 -5.63062847e-01 -4.45505798e-01\\n-2.79537767e-01 -2.31425930e-03 -8.35139036e-01 -3.32142889e-01\\n-6.37628213e-02 -1.25564247e-01 -2.28101730e-01 6.11906111e-01\\n-2.85325021e-01 -4.34123427e-01 1.00644715e-01 -5.21095276e-01\\n1.68804392e-01 -2.28059471e-01 8.91194958e-03 -1.51878625e-01\\n-3.55547607e-01 -3.85782301e-01 1.64432928e-01 3.02778799e-02\\n-2.42166772e-01 -1.15629420e-01 4.56676539e-03 -3.60858917e-01\\n-1.85024723e-01 -4.20315981e-01 3.43158305e-01 6.58821762e-02\\n1.87560439e-01 -2.60717310e-02 4.07299787e-01 -1.05985843e-01\\n3.66322458e-01 1.23444587e-01 3.09603103e-03 -4.04457241e-01\\n8.08022842e-02 5.73125519e-02 5.07592618e-01 -3.81816834e-01\\n-8.06697533e-02 2.83759773e-01 -1.69347823e-01 -8.64818543e-02\\n3.89604837e-01 -1.89869814e-02 4.74369228e-02 -2.22536966e-01\\n2.22102553e-01 -4.84652758e-01 -2.61584282e-01 6.94676265e-02\\n1.12537995e-01 7.12387204e-01 7.03076273e-02 -5.36348224e-01\\n-3.19597840e-01 4.31444585e-01 -5.23735993e-02 -1.01119079e-01\\n-2.02145025e-01 1.56548887e-01 -2.76135087e-01 2.80552685e-01\\n-2.09145844e-02 -2.13371053e-01 -2.89409310e-01 -4.18318994e-03\\n-9.78080630e-02 2.68653929e-01 2.13753060e-01 1.90209374e-02\\n-1.28258258e-01 -2.23560676e-01 -1.60319090e-01 1.35719597e-01\\n2.59728760e-01 2.09842116e-01 2.52726465e-01 -3.06646585e-01\\n1.02880977e-01 3.18875015e-01 -2.41391823e-01 2.74829686e-01\\n-2.31854632e-01 3.23471688e-02 -4.37294692e-01 -1.71337560e-01\\n-2.11366117e-01 -3.13611507e-01 9.01343897e-02 3.96325946e-01\\n1.59915239e-01 -9.06231031e-02 1.07103899e-01 -6.48653567e-01\\n3.88436824e-01 5.63523732e-02 1.53864384e-01 1.26992971e-01\\n1.00376919e-01 5.80158591e-01 -4.45190165e-03 -1.81093350e-01\\n-6.70662969e-02 -5.60314097e-02 -3.02075744e-01 -3.18605483e-01\\n9.90825146e-02 -4.07604486e-01 -6.63771629e-02 4.77536231e-01\\n1.30792663e-01 -2.52824575e-01 -1.65807709e-01 2.46659562e-01\\n1.63359791e-01 -1.71207651e-01 -1.53131187e-01 1.59657598e-02\\n1.42545924e-01 -7.09341466e-02 1.96353734e-01 -4.10430908e-01\\n-7.10747093e-02 -1.19179197e-01 -3.12241563e-03 4.44491684e-01\\n2.41926059e-01 1.41502544e-01 -1.22594148e-01 -1.28999636e-01\\n4.64510769e-01 -7.33023509e-02 -1.46394610e-01 -1.90454423e-01\\n4.65387963e-02 -1.71441019e-01 -3.97646517e-01 1.09348238e-01\\n-9.04715806e-02 -8.20900649e-02 4.25095297e-02 2.04721801e-02\\n1.04630195e-01 -3.88379730e-02 -4.11793411e-01 -3.66126776e-01\\n-3.46227676e-01 3.11534357e-04 4.11169901e-02 -4.62630808e-01\\n-2.50173304e-02 8.08892399e-02 -6.07332170e-01 2.06717402e-01\\n-1.11323714e-01 6.35536909e-02 2.20514342e-01 1.36409163e-01\\n-3.37913424e-01 -1.03530116e-01 1.65066216e-02 1.20304063e-01\\n-1.67234808e-01 -8.78458172e-02 -7.15491027e-02 -1.16939998e+00\\n1.96219653e-01 7.32894838e-02 -1.05154008e-01 2.68162731e-02\\n-1.35187224e-01 -7.81627834e-01 5.28430790e-02 -2.31267601e-01\\n1.85298324e-02 -1.77148189e-02 -2.30370224e-01 -3.99369836e-01\\n9.22446102e-02 4.85526584e-03 -1.76725328e-01 3.77589226e-01\\n-5.61588228e-01 3.97005945e-01 -9.22150910e-02 7.64394477e-02\\n-4.26446134e-03 -1.62273139e-01 2.70926148e-01 -3.46793920e-01\\n-3.14043045e-01 -1.51008025e-01 -3.29169899e-01 -3.18077236e-01\\n-1.35447949e-01 -2.57869601e-01 -1.29413709e-01 1.40353441e-01\\n2.79273242e-01 1.03060819e-01 -4.92629185e-02 -2.54885942e-01\\n8.99574161e-02 -2.47070059e-01 6.05689250e-02 -2.84231812e-01\\n1.26314655e-01 -6.92555383e-02 1.32175133e-01 -2.36125980e-02\\n1.42273977e-01 -2.55191028e-01 5.54597735e-01 -2.46380955e-01\\n-4.13167983e-01 -3.35914418e-02 5.44341393e-02 8.94631445e-02\\n3.02655637e-01 -3.98012996e-01 1.18419021e-01 1.95767596e-01\\n1.04228340e-01 -1.00291474e-02 3.66578281e-01 -1.58633292e-01\\n-2.16297567e-01 1.56728551e-01 -4.74798471e-01 -1.41962152e-02\\n6.86935365e-01 1.75731689e-01 2.19123513e-01 7.13868886e-02\\n1.59895584e-01 3.11452806e-01 4.90792006e-01 -8.43182653e-02\\n-5.37714995e-02 1.51669502e-01 9.22257751e-02 -4.77616012e-01\\n-2.90272117e-01 -2.51314223e-01 -1.32028759e-01 -2.19231978e-01\\n5.31454444e-01 3.47626001e-01 -2.64559060e-01 -2.33002067e-01\\n-1.08870707e-01 -7.23061711e-02 2.23448753e-01 -1.15844913e-01\\n9.57976189e-03 -7.18130246e-02 5.05025029e-01 1.99624300e-02\\n3.01606625e-01 5.88312387e-01 -2.33808592e-01 -4.92363185e-01\\n-4.18100879e-02 1.80526033e-01 8.66459161e-02 3.05853486e-01\\n-5.52699640e-02 2.99046814e-01 -4.30786936e-03 1.46482661e-01\\n-2.32413694e-01 3.99071686e-02 1.22281820e-01 1.45327836e-01\\n8.51866454e-02 9.13102850e-02 2.11871356e-01 5.18447161e-01\\n2.73576409e-01 4.72106427e-01 2.94362187e-01 5.15267029e-02\\n3.41447145e-01 5.03679454e-01 3.21332157e-01 1.82144061e-01\\n3.32080610e-02 1.81557000e-01 1.59525424e-02 -1.58420429e-02\\n3.30299973e-01 3.05504203e-01 2.46051654e-01 8.15553606e-01\\n3.69960785e-01 3.26444268e-01 8.58832181e-01 -6.30624890e-01\\n-4.16969836e-01 8.03778470e-02 5.02247334e-01 -5.13933241e-01\\n-4.16544117e-02 1.09219208e-01 -1.41629636e-01 3.11378032e-01\\n-3.59295219e-01 -2.00052947e-01 -1.08525135e-01 -5.22813350e-02\\n3.81500311e-02 -1.87376574e-01 -2.31756940e-01 -5.76272644e-02\\n-2.90530950e-01 -1.68902457e-01 -3.06070447e-01 -1.97270662e-01\\n-3.44917446e-01 -8.99145678e-02 -7.88704231e-02 7.76850339e-03\\n-8.81865695e-02 -3.70745838e-01 -1.56380743e-01 -5.72847575e-02\\n3.04666132e-01 -1.63572207e-01 -8.70613307e-02 -2.35739201e-01\\n2.10646361e-01 2.01737583e-01 5.65600753e-01 1.18469894e-01\\n1.74891397e-01 -1.21805683e-01 -1.12904519e-01 7.36565189e-03\\n5.47935776e-02 1.43977404e-01 1.94167525e-01 4.57959384e-01\\n-4.14447665e-01 -8.32151398e-02 2.11560056e-01 3.87843221e-01\\n-2.57223994e-01 -2.03888148e-01 -1.10551700e-01 1.33483514e-01\\n2.99808681e-02 2.17544101e-02 -2.46060103e-01 4.70941551e-02\\n-2.05596983e-01 -7.01582074e-01 4.40840304e-01 -1.81198820e-01\\n-9.23837721e-02 2.02917904e-01 5.75891495e-01 2.57588953e-01\\n-1.62014306e-01 1.95842683e-02 6.29364625e-02 3.36315125e-01\\n-1.97805669e-02 3.32437903e-01 -2.87119001e-01 -7.47981295e-02\\n-2.95398295e-01 2.61865586e-01 -1.98986098e-01 2.37158388e-01\\n5.60664982e-02 3.99855912e-01 6.40698299e-02 5.39857335e-02\\n2.11699948e-01 -1.23724967e-01 -2.03969374e-01 -3.10359120e-01\\n-2.73683697e-01 -1.18881196e-01 -3.63972150e-02 -8.16555843e-02\\n2.15899736e-01 -3.69622737e-01 -3.57220136e-03 -1.08101241e-01\\n-4.87410203e-02 -2.81445950e-01 -2.10505068e-01 3.23460698e-02]]',\n", + " 'job_description': '– ref. “PE_EmbeddedSW_2019” He/she will be part of the embedded software design team, defining the design specification, coding and testing embedded software for complex low power, RF IoT devices. Main responsibilities Develop low level drivers, protocol stacks and low power applications software for both, RTOS and embedded Linux based platforms Promote new technologies, proactively looking at innovative protocols and solutions Qualifications University degree in Computer Science or Electronics Engineering or equivalent discipline Proven experience in architecture definition and software development in C/C++ for embedded applications Knowledge of IoT technologies and application protocols for embedded systems – such as CoAP, MQTT, LWM2M and data models Good knowledge of microcontrollers, in particular Cortex-M microcontrollers and peripherals Experience with embedded Linux platforms, such as RPI and BBB Experience with radio networking protocols such as 802.15.4, 6LoWPAN, IPv6, TCP-IP, ZigBee, Bluetooth Good knowledge of low power design techniques Experience in debugging and validating complex embedded systems and protocol stacks Ability to read schematics and debug at PCB level using typical lab equipment if needed Knowledge and experience on software engineering methodologies: lifecycle, quality assurance and testing techniques, continuous integration and continuous deployment technologies, Agile scrum methodology Knowledge of RF and IoT platforms Knowledge of embedded OS and embedded Linux platforms Proficient understanding of code versioning tools, such as Git Soft skills Flexibility, ability to prioritise activities and efficiently manage time, meeting deadlines Problem solving approach and ability to manage pressure Able to work cross-functionally in dynamic and international environments Effective communication in English (both written & oral – including technical documentation) If you want to employ your talent with us, have a look at our open positions and apply for the one that best fits your profile by writing to recruitment@pdxeng.ch. All job opportunities are intended for Paradox Engineering’s offices in Novazzano (Ticino, Switzerland). We offer Swiss Labour contracts and remuneration in line with candidates’ experience.',\n", + " 'soft_skills': '[\"Writing\", \"Proactivity\", \"Problem Solving\", \"Communications\", \"Innovation\", \"Quality Assurance\", \"Time Management\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Enterprise Application Software\", \"Computer Science\", \"Continuous Integration\", \"Scholastic READ 180\", \"Cortex M\", \"IPv6\", \"Activism\", \"Electronic Engineering\", \"Linux\", \"Message Queuing Telemetry Transport (MQTT)\", \"M (Programming Language)\", \"Wireless Application Protocol (WAP)\", \"Design Specifications\", \"Levelling\", \"Agile Edge Technologies\", \"Scrum (Software Development)\", \"TCP/IP\", \"Embedding\", \"Remuneration\", \"Software Engineering\", \"C (Programming Language)\", \"6LoWPAN\", \"Embedded Systems\", \"Technical Documentation\", \"Power Supply Design\", \"Software Design\", \"Validations\", \"Software Development\", \"Radio Link Protocols\", \"Bluetooth\", \"Git Flow\", \"Embedded Software\", \"Zigbee\", \"Debugging\", \"Protocol Stack\"]',\n", + " 'languages': \"['English', 'Thai']\"},\n", + " {'company_id': '12',\n", + " 'job_title': 'software engineer (frontend)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.78922907e-01 3.55448157e-01 4.88102317e-01 -3.51948030e-02\\n4.67797935e-01 -1.70703396e-01 9.27720815e-02 3.92824143e-01\\n-9.62727610e-03 -4.02688235e-01 -1.11521326e-01 -2.64397591e-01\\n-2.05018103e-01 -2.62584928e-02 1.57824904e-01 3.75637710e-01\\n2.70717621e-01 1.05991788e-01 -2.43489340e-01 4.56669450e-01\\n1.17389515e-01 -1.64541304e-01 4.27792780e-02 6.05228186e-01\\n3.81771863e-01 -2.08762567e-02 -8.39423016e-03 -2.77622156e-02\\n-2.54470646e-01 -3.36419642e-01 4.04787600e-01 5.57277426e-02\\n-8.66845772e-02 -3.84343773e-01 1.30399317e-01 1.63941905e-01\\n-1.92733854e-01 6.47729859e-02 -1.13592103e-01 2.38667086e-01\\n-5.13946176e-01 -3.20402056e-01 2.06290632e-01 3.03195193e-02\\n-2.63389856e-01 -3.28499317e-01 7.42018446e-02 -4.36670892e-02\\n1.01065589e-02 1.13035850e-01 -4.92823809e-01 3.52665365e-01\\n-2.70722836e-01 -2.29886189e-01 3.88456643e-01 6.40526116e-01\\n1.36341257e-02 -6.05229735e-01 -4.04989541e-01 -3.45802486e-01\\n-1.74601153e-02 -9.23213437e-02 1.73901226e-02 -2.34383360e-01\\n2.93811738e-01 -5.82932793e-02 -3.41405384e-02 3.49083990e-01\\n-8.06545794e-01 -1.52956560e-01 -1.89421639e-01 -6.29523695e-02\\n-4.40919906e-01 -9.89280343e-02 -3.38117957e-01 -1.31155118e-01\\n-4.48256433e-02 3.63102943e-01 2.05049571e-02 -3.76158990e-02\\n-1.03467852e-01 2.99938053e-01 -2.16447189e-01 3.67752254e-01\\n3.30257565e-01 1.62808686e-01 1.71647936e-01 3.90070766e-01\\n-3.05149883e-01 4.56653208e-01 1.89734340e-01 -2.82773584e-01\\n2.82818168e-01 8.21557492e-02 5.44450700e-01 1.33719757e-01\\n3.96797769e-02 2.36074895e-01 -2.61114866e-01 1.99121818e-01\\n1.85450792e-01 -3.06542814e-01 1.52592734e-02 -6.99026976e-03\\n5.35986992e-03 6.42567128e-02 -4.35438892e-03 3.05716723e-01\\n-3.23275238e-01 4.05633360e-01 1.99510828e-01 -2.36179158e-01\\n-1.18824065e-01 -5.46549737e-01 -1.18428402e-01 2.07686257e-02\\n-7.03419223e-02 1.99784756e-01 2.27878883e-01 2.04501018e-01\\n2.36695766e-01 7.16216862e-02 1.08540505e-01 9.47432756e-01\\n3.31168552e-03 9.92044508e-02 -2.72871792e-01 3.65683109e-01\\n1.81012377e-01 -2.36323521e-01 1.83069065e-01 2.71910012e-01\\n1.38166547e-01 -8.54842588e-02 -2.05078989e-01 4.07163829e-01\\n-1.03497222e-01 -1.63003862e-01 -3.49696130e-01 1.57956332e-01\\n-1.67962402e-01 -4.24092263e-01 5.85016191e-01 1.20792881e-01\\n2.30834678e-01 3.30699198e-02 -4.78492044e-02 -9.25175026e-02\\n-1.32876277e-01 2.91427910e-01 -4.10104655e-02 1.62246585e-01\\n-3.56431812e-01 -1.89583585e-01 -2.65788436e-01 3.63306820e-01\\n-1.64262444e-01 1.05906136e-01 -1.18803665e-01 -1.26820743e-01\\n3.34083170e-01 9.33930352e-02 -3.40233237e-01 2.19756141e-01\\n-4.81734984e-02 4.12173942e-03 -1.54276520e-01 4.10689265e-01\\n-1.18096903e-01 2.35731348e-01 3.20759416e-02 -1.69868499e-01\\n6.06490552e-01 2.21001655e-01 7.45974109e-02 -1.89875394e-01\\n3.84249568e-01 -1.49615973e-01 2.71877080e-01 1.55050084e-01\\n-5.64137459e-01 2.75998265e-01 -8.36666524e-02 2.20207926e-02\\n3.58547047e-02 -9.20107737e-02 3.56237322e-01 -3.28862280e-01\\n-1.36724621e-01 -2.19927773e-01 -3.73622268e-01 -2.61899710e-01\\n-3.98012221e-01 -5.86396083e-02 4.82442200e-01 -3.61741662e-01\\n-1.85132310e-01 3.51507008e-01 -4.94710028e-01 -6.37531206e-02\\n2.44943678e-01 2.33882636e-01 5.77834249e-02 9.62779522e-02\\n-1.96045280e-01 -5.62014580e-01 1.08679384e-01 -4.11072731e-01\\n-4.01271552e-01 5.74265942e-02 -2.94659376e-01 2.36572996e-01\\n7.98545480e-02 1.48096785e-01 -1.09918378e-01 1.22838929e-01\\n-2.53579497e-01 -6.03199750e-02 1.33814022e-01 1.28411576e-01\\n1.96500659e-01 -1.60635356e-02 -4.23595995e-01 4.24498945e-01\\n-2.11646780e-01 5.89651704e-01 2.00502202e-01 -8.95950258e-01\\n5.73925853e-01 2.92546481e-01 -1.33032784e-01 -3.46242756e-01\\n4.63493288e-01 -2.81891704e-01 -1.09126163e-03 1.84285998e-01\\n-2.22881570e-01 -3.19260478e-01 3.01764965e-01 -2.17959687e-01\\n-3.13490868e-01 5.16770422e-01 1.30831748e-01 -8.50890484e-03\\n3.05247217e-01 -2.79850066e-01 -5.35130650e-02 2.79267319e-02\\n-1.15611523e-01 -9.45947468e-02 -3.61089766e-01 1.10834375e-01\\n-1.03269994e-01 -4.66271281e-01 -1.41084641e-01 -3.98525447e-01\\n-2.96719044e-01 -5.30869067e-01 -2.77024269e-01 3.44659269e-01\\n1.32252604e-01 2.28231996e-01 2.20924430e-02 -1.23448891e-03\\n-1.23933747e-01 -7.44655490e-01 -1.10830069e-01 9.61943641e-02\\n3.31979662e-01 2.80724525e-01 1.49593741e-01 -1.20860273e-02\\n5.65661490e-03 4.57743287e-01 -2.28030473e-01 -1.47788197e-01\\n6.63646981e-02 1.09343946e-01 5.12040108e-02 -1.38613358e-01\\n4.43690792e-02 4.29511249e-01 -2.57224202e-01 7.64143392e-02\\n-1.54677451e-01 -4.06077206e-02 3.94137114e-01 -3.32218148e-02\\n-4.17912364e-01 -1.94282860e-01 7.72332251e-02 2.31991246e-01\\n-5.99252105e-01 -2.01512456e-01 6.38359070e-01 1.79156944e-01\\n2.10216656e-01 1.84793636e-01 2.93368310e-01 -1.11161239e-01\\n-9.29565951e-02 -2.29346082e-01 2.30499804e-01 1.29533485e-01\\n1.03708282e-01 1.50776982e-01 -1.81928188e-01 -6.59106493e-01\\n-3.30501652e+00 -2.12112293e-01 2.57875174e-01 -2.55741686e-01\\n9.49615017e-02 -6.19515330e-02 -1.90068521e-02 -1.39448568e-01\\n-2.59523332e-01 1.74383745e-02 -8.90106931e-02 -8.21046904e-02\\n-1.45371975e-02 3.31775457e-01 1.14749618e-01 2.13930920e-01\\n1.26423717e-01 -2.49267906e-01 -2.90117916e-02 3.58675241e-01\\n-1.44142836e-01 -6.64317131e-01 1.96043685e-01 2.46282257e-02\\n2.20226631e-01 1.68360099e-01 -3.82827610e-01 -1.98850736e-01\\n-1.34301871e-01 -1.49265423e-01 1.09297700e-01 -2.42078200e-01\\n-2.25767896e-01 2.41257355e-01 1.28610536e-01 -3.13541405e-02\\n1.09000705e-01 -2.83460170e-01 1.26731535e-02 -3.97939414e-01\\n8.47425163e-02 -6.30286098e-01 -4.25320864e-03 -1.04424566e-01\\n6.64433658e-01 -3.33851337e-01 1.09902717e-01 1.62779272e-01\\n9.26153585e-02 1.47065148e-01 1.00370990e-02 6.48986399e-02\\n-2.43596047e-01 -1.94930300e-01 -2.68069599e-02 -9.52583104e-02\\n4.95012999e-01 5.27192831e-01 -1.85347617e-01 -1.36851193e-02\\n3.09094172e-02 -3.79243821e-01 -4.65794116e-01 -3.64159077e-01\\n-1.42165020e-01 -1.69476599e-01 -7.75138557e-01 -4.75094140e-01\\n-1.06478117e-01 -7.11980239e-02 -2.02330485e-01 6.38430119e-01\\n-3.03299546e-01 -3.73731166e-01 1.94707140e-02 -5.02759993e-01\\n1.39587715e-01 -2.39000201e-01 1.33444846e-01 -1.49044290e-01\\n-2.98530787e-01 -4.97581601e-01 6.83359131e-02 1.15239266e-02\\n-2.22240955e-01 -1.49615258e-01 8.76732245e-02 -1.38306245e-01\\n-2.27306008e-01 -4.64726180e-01 4.54068214e-01 1.49758577e-01\\n2.30911538e-01 7.38290846e-02 4.33404267e-01 1.29351139e-01\\n3.81670713e-01 -1.58384547e-01 -1.84710342e-02 -4.38052088e-01\\n1.05294704e-01 -8.44452158e-02 6.20211184e-01 -2.41563350e-01\\n7.60696679e-02 2.56425053e-01 -2.30598375e-01 -9.12607536e-02\\n4.18525726e-01 9.38687697e-02 -6.19958043e-02 -1.84219137e-01\\n3.17593843e-01 -2.38526911e-01 -1.61275819e-01 1.01525433e-01\\n5.54845855e-02 6.68446004e-01 -4.29223701e-02 -4.51189518e-01\\n-2.93660939e-01 5.39456964e-01 -9.34294909e-02 -4.58560698e-02\\n-8.25249180e-02 7.91256353e-02 -1.17044725e-01 2.97098339e-01\\n1.17495373e-01 -2.28234842e-01 -3.40609848e-01 -9.42004174e-02\\n-7.37800673e-02 2.58564085e-01 2.72915989e-01 9.47997794e-02\\n-8.03504810e-02 -2.10542321e-01 -1.38925165e-01 1.52696207e-01\\n1.27516836e-01 2.61971623e-01 1.56818226e-01 -2.83674657e-01\\n1.34788929e-02 3.37328315e-01 -3.53877008e-01 1.57746673e-01\\n-3.01743269e-01 6.85129687e-02 -5.65846682e-01 -2.25872025e-01\\n-1.93249166e-01 -4.43850040e-01 2.00943694e-01 3.10309112e-01\\n1.21174924e-01 3.85396443e-02 8.72906744e-02 -5.51306605e-01\\n3.93148661e-01 1.25574991e-01 1.50422081e-01 1.62287757e-01\\n-2.07547117e-02 4.90954012e-01 3.14802453e-02 -1.45233274e-01\\n-1.76747471e-01 -3.27166333e-03 -1.15450978e-01 -2.55162984e-01\\n4.97839935e-02 -4.80956852e-01 -1.31804839e-01 3.44045341e-01\\n6.22132756e-02 -3.13989043e-01 -3.16055447e-01 1.64222851e-01\\n4.91249040e-02 -2.78783202e-01 -1.58229530e-01 -6.99101239e-02\\n2.29877695e-01 7.41120502e-02 3.24746907e-01 -4.50890541e-01\\n1.70710795e-02 -4.06720787e-02 -1.24081835e-01 5.78812003e-01\\n9.37142819e-02 9.70870629e-02 -2.33463109e-01 -8.07855651e-02\\n3.71065050e-01 -1.16233323e-02 -8.50457028e-02 -2.30395436e-01\\n7.27652833e-02 -2.09904909e-01 -4.42491353e-01 -5.20256869e-02\\n-2.71695219e-02 -2.14853421e-01 3.84062007e-02 1.20354816e-01\\n5.18461503e-02 6.28214926e-02 -5.24341822e-01 -3.81905973e-01\\n-2.99018919e-01 -6.44295588e-02 1.07040808e-01 -4.03912932e-01\\n-1.20974354e-01 2.56382395e-02 -5.17824709e-01 2.20881298e-01\\n-2.62708694e-01 -8.74553099e-02 9.04018730e-02 6.25457615e-02\\n-3.85046691e-01 -1.71938747e-01 6.04259372e-02 1.84546605e-01\\n-2.38561183e-01 -3.01425278e-01 1.79628003e-03 -9.73869085e-01\\n1.46615118e-01 -9.89611726e-03 -9.11089405e-02 8.09409469e-02\\n-1.20665215e-01 -6.94028735e-01 1.68348640e-01 -4.64141011e-01\\n-3.80818397e-02 1.43982232e-01 -1.90838486e-01 -5.22742093e-01\\n1.61216825e-01 -5.75895794e-02 -3.73812079e-01 4.22220379e-01\\n-4.78931367e-01 3.47566962e-01 -7.36224949e-02 1.42886579e-01\\n4.86982707e-03 -3.25738102e-01 8.64106715e-02 -4.85417485e-01\\n-3.81422788e-01 -1.39931768e-01 -3.49498898e-01 -2.56977767e-01\\n2.61707045e-03 -2.44352669e-01 -1.92040801e-01 1.07397720e-01\\n3.04328263e-01 7.89873227e-02 1.76774971e-02 -3.00457209e-01\\n3.81981321e-02 -4.31241632e-01 1.49818763e-01 -2.65903175e-01\\n-1.50644304e-02 -4.82627563e-02 1.31531999e-01 1.31294569e-02\\n1.31699309e-01 -2.97244489e-01 4.77939457e-01 -2.57500231e-01\\n-3.12052876e-01 -8.52251872e-02 3.07801254e-02 -1.23529911e-01\\n2.46413007e-01 -4.79605854e-01 1.08726315e-01 2.95331478e-01\\n1.33364528e-01 6.28307536e-02 2.62253970e-01 -7.97557756e-02\\n-4.73396108e-02 2.08961412e-01 -3.91412258e-01 6.17673621e-02\\n7.49656558e-01 9.31150913e-02 1.21268883e-01 6.88883364e-02\\n1.22154683e-01 4.00165260e-01 5.49427509e-01 -5.40848263e-02\\n-1.27538070e-01 2.68180013e-01 4.76519652e-02 -5.60504735e-01\\n-8.64585266e-02 -9.63782705e-03 -2.54406691e-01 -2.67033070e-01\\n6.14805222e-01 3.67003560e-01 -3.69655490e-01 -2.54054308e-01\\n-6.96756989e-02 -2.84299165e-01 1.76220238e-01 -8.20616856e-02\\n8.88836221e-04 -8.71996656e-02 5.51236033e-01 -1.67109370e-02\\n2.85067320e-01 4.29125637e-01 -1.95513934e-01 -4.58275348e-01\\n-4.01689224e-02 2.76612133e-01 9.57520381e-02 4.37745452e-01\\n-1.40753403e-01 2.08457083e-01 -3.05032525e-02 9.51060951e-02\\n-1.09410845e-01 1.61342233e-01 1.25883102e-01 1.45913079e-01\\n2.74403840e-01 -3.48217599e-02 4.67480332e-01 5.44867456e-01\\n2.68328577e-01 5.21563292e-01 2.81905860e-01 -2.50274651e-02\\n4.08552676e-01 6.24021053e-01 5.64436674e-01 1.98118195e-01\\n-2.79348698e-02 2.08998054e-01 7.27418661e-02 -9.30695310e-02\\n3.59967500e-01 3.88077199e-01 1.77123383e-01 9.12606955e-01\\n3.72257262e-01 3.11306894e-01 7.89697468e-01 -7.02055097e-01\\n-3.73968661e-01 -1.08235124e-02 5.04804969e-01 -2.39846572e-01\\n-9.43948925e-02 1.58365071e-01 -2.50876576e-01 2.64156193e-01\\n-5.61132789e-01 -1.77727878e-01 -1.02137499e-01 9.70658958e-02\\n6.58167079e-02 -3.79927754e-02 -1.81985423e-01 9.08017717e-03\\n-1.70794129e-01 -1.00028887e-01 -4.07123238e-01 -8.93212780e-02\\n-2.94101000e-01 -1.21426687e-01 -1.80248410e-01 -5.68395294e-02\\n-1.33289039e-01 -4.18637037e-01 -1.54207796e-01 1.02372905e-02\\n3.56526703e-01 -1.57676116e-01 -1.50807872e-01 -1.87103927e-01\\n1.99290231e-01 2.13615775e-01 4.96453613e-01 1.10436473e-02\\n1.83816791e-01 -2.14351565e-01 -2.13810146e-01 4.96212281e-02\\n1.86507151e-01 1.00986630e-01 3.24017629e-02 4.28416759e-01\\n-3.06897193e-01 -5.89341633e-02 4.98863757e-02 3.41522276e-01\\n-3.88958842e-01 -1.43921629e-01 -1.36662304e-01 2.91213661e-01\\n5.25037311e-02 7.37457126e-02 -1.62694737e-01 -5.60752023e-03\\n-1.70936346e-01 -5.53949058e-01 3.92576993e-01 -2.40571141e-01\\n-2.77313031e-02 1.95851520e-01 1.89989224e-01 1.58554196e-01\\n-2.19413921e-01 -4.42927441e-04 -8.90174657e-02 2.70325691e-01\\n2.43269317e-02 3.12974840e-01 -2.21448317e-01 -2.17067912e-01\\n-2.34445170e-01 2.99326956e-01 -1.82680622e-01 7.19675645e-02\\n1.90522317e-02 3.16149265e-01 1.32012397e-01 3.20912711e-02\\n3.94970089e-01 1.50531214e-02 -2.03942940e-01 -2.17166722e-01\\n-1.77158162e-01 -2.91779071e-01 2.22502258e-02 9.04712081e-03\\n1.53742775e-01 -2.69261390e-01 -5.39068617e-02 -8.58788490e-02\\n-1.45702839e-01 -4.24641967e-01 -1.44201264e-01 4.17050943e-02]]',\n", + " 'job_description': \"aiai! Join our agile engineering team and help us build our new Software as a Service platform for AI, Chatbots and business automation. Your Role Create stunning, highly interactive interfaces without losing focus on accessibility Find and solve user experience problems Design and implement code with a focus on robustness, scalability, reliability and performance Participate in DevOps strategy, including automation efforts and monitoring improvements Challenge our product and user experience designers Ensure high quality of our software products with Unit-, Integration- and End-to-End-Tests Work together in small, highly motivated, interdisciplinary teams and bring Machine Learning, Natural Language Processing and Chatbots to the cloud Turn our customers into fans You're offering these qualifications BS/MS degree in Computer Science, similar technical field of study or equivalent practical experience Very good knowledge of JavaScript, CSS3 and HTML5. Experience with Typescript is a plus. Good knowledge of Browser APIs Experience with one or more modern JavaScript frameworks including but not limited to: Vuejs, React or Angular Good knowledge of REST API architectures. You are feeling confident in working with one of the following languages: Python, Go, Java, Ruby or PHP An interest or understanding of at least one of the following: DevOps, Data Visualization, Software Architecture, User Experience Design or Interaction Design Very good communication (written and spoken) in German and English Valid work permission for Switzerland or Swiss/EU citizenship We're offering these benefits 6 weeks paid holiday Work in an agile environment The chance to solve very interesting challenges with cutting edge technologies Boost your skills and work with a highly skilled team \",\n", + " 'soft_skills': '[\"Written Communication\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Automation\", \"Accessioning\", \"Agility\", \"Natural Language Processing\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Computer Science\", \"Machine Learning\", \"Interaction Design\", \"TypeScript\", \"Ruby (Programming Language)\", \"Python (Programming Language)\", \"Business Process Automation\", \"HTML5\", \"Agile Edge Technologies\", \"SARS Software Products\", \"Limiter\", \"PHP (Scripting Language)\", \"React.js\", \"Data Visualization\", \"Software as a Service (SaaS)\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Scalability\", \"User Experience Design (UX)\", \"JavaScript Frameworks\", \"Angular (Web Framework)\", \"Chatbot\", \"Experience Design\", \"User Experience\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Chuang', 'Yiddish', 'Guarani', 'Mongolian']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'supply chain data analyst (m/f)',\n", + " 'location': 'Reinach',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.28764436e-01 2.81232744e-01 5.46897054e-01 2.39168555e-02\\n4.87601131e-01 -6.08971901e-02 4.35195379e-02 4.44313020e-01\\n4.20789011e-02 -4.31067914e-01 -1.91733837e-02 -3.02204907e-01\\n3.51779163e-02 1.44612134e-01 8.17054585e-02 4.81249332e-01\\n1.42991006e-01 1.65683970e-01 -1.51579052e-01 3.48072678e-01\\n2.09333420e-01 -2.18113601e-01 7.05627799e-02 7.14393258e-01\\n4.98119146e-01 -6.37528971e-02 -1.55709073e-01 -1.68627456e-01\\n-2.36410141e-01 -3.39036733e-01 4.54381227e-01 5.54485712e-03\\n-1.61002666e-01 -4.03046042e-01 1.40599489e-01 9.48599353e-02\\n-2.53681690e-01 -4.97404113e-02 -1.01542100e-01 1.12951100e-01\\n-6.37218893e-01 -2.34703541e-01 -4.95794192e-02 9.76033881e-02\\n-2.75957376e-01 -2.97132343e-01 -5.73506653e-02 -2.48469338e-01\\n2.09559321e-01 8.78555998e-02 -5.83139241e-01 3.46242964e-01\\n-1.92888424e-01 -2.47145981e-01 1.82381585e-01 7.37409353e-01\\n1.74885569e-03 -4.08297062e-01 -5.97543061e-01 -3.69059891e-01\\n1.30141020e-01 -9.84064490e-02 4.46544914e-03 -2.91452259e-01\\n3.14586639e-01 -7.59287998e-02 1.18152283e-01 2.99740523e-01\\n-8.21612120e-01 4.24459465e-02 -2.43652329e-01 -1.28605068e-01\\n-2.57679760e-01 1.08537858e-03 -4.34394687e-01 -5.57115339e-02\\n-2.08737388e-01 4.20561612e-01 8.39779153e-03 -4.25238200e-02\\n-2.47895733e-01 2.11780921e-01 -3.11896324e-01 2.68603921e-01\\n2.55449712e-01 1.98734924e-01 2.60259956e-01 3.08454037e-01\\n-2.94404984e-01 4.71016556e-01 1.89391658e-01 -2.19466552e-01\\n2.33851194e-01 5.03624640e-02 3.70529205e-01 -5.71726635e-02\\n1.81744277e-01 7.04566017e-02 -3.35229099e-01 2.67888129e-01\\n3.17238927e-01 -2.22069517e-01 1.02975346e-01 -1.64164007e-01\\n-1.49377957e-02 -1.03025148e-02 8.76927897e-02 2.58724988e-01\\n-2.09802106e-01 4.20759737e-01 1.89734448e-03 -1.35146201e-01\\n-1.74052626e-01 -5.28820217e-01 -8.59992057e-02 -4.80410531e-02\\n1.60068527e-01 2.23622769e-01 6.08341135e-02 1.92289785e-01\\n2.59475261e-01 -1.01211637e-01 1.17319666e-01 8.31721067e-01\\n-6.45617917e-02 9.63801742e-02 -3.02544653e-01 2.67725468e-01\\n3.75905149e-02 -3.39066982e-01 1.97602138e-01 1.97701111e-01\\n-5.33101559e-02 -2.25135505e-01 -2.48776421e-01 3.21419805e-01\\n-5.57252504e-02 -1.77175358e-01 -2.28699103e-01 1.72681823e-01\\n5.63719012e-02 -3.40610832e-01 6.64120913e-01 3.98432277e-02\\n1.32725552e-01 -7.50221461e-02 -1.22490590e-02 -9.61322710e-02\\n-1.06725395e-02 1.79952651e-01 1.79459795e-01 3.62738930e-02\\n-2.68734813e-01 -3.02008092e-01 -1.64258212e-01 7.36802816e-02\\n-4.23053592e-01 1.65526420e-01 -1.21396191e-01 -6.75761551e-02\\n2.78499693e-01 4.19373624e-02 -2.49632671e-01 2.97974378e-01\\n-1.41237676e-01 -3.93906608e-02 4.55705635e-02 2.84124881e-01\\n-3.14811349e-01 2.40439937e-01 -2.54387408e-02 -3.44077051e-02\\n7.52553821e-01 1.05511174e-01 1.48284167e-01 1.14828460e-01\\n2.93795794e-01 5.58137558e-02 1.14752688e-01 1.48557410e-01\\n-5.69136381e-01 4.73231554e-01 -4.47113849e-02 -2.88504273e-01\\n2.22794443e-01 -1.48736566e-01 4.33844626e-01 -2.50106335e-01\\n2.28771213e-02 -1.69143304e-01 -2.93767840e-01 -3.18153739e-01\\n-2.34207004e-01 -1.10197656e-01 3.52335513e-01 -4.39643592e-01\\n-9.36490600e-04 1.63303152e-01 -5.21103859e-01 -1.30809531e-01\\n1.29113913e-01 2.10481793e-01 8.03400502e-02 1.64008901e-01\\n-1.90959945e-01 -5.11997581e-01 8.97692814e-02 -3.57128710e-01\\n-1.53712615e-01 3.38476859e-02 -3.04998785e-01 1.74673602e-01\\n4.24587950e-02 1.28055185e-01 -1.76694050e-01 1.17558837e-01\\n-2.09624678e-01 -1.46156833e-01 1.21898748e-01 7.49668106e-02\\n2.79185772e-01 1.01576991e-01 -3.90949100e-01 3.76045018e-01\\n-5.54475524e-02 5.68349957e-01 1.51172772e-01 -8.86357725e-01\\n4.50291276e-01 3.85232896e-01 3.96634787e-02 -3.25285345e-01\\n6.29735053e-01 -2.68870085e-01 -8.96312576e-03 4.72313650e-02\\n-3.16972762e-01 -3.50511998e-01 2.52959728e-01 -1.60521537e-01\\n-2.51252055e-01 3.79714221e-01 8.93100277e-02 1.67644322e-01\\n1.32343069e-01 -1.42613187e-01 -1.01433136e-01 7.99286813e-02\\n3.45585681e-02 -1.71544179e-01 -5.02561510e-01 2.48241201e-02\\n-4.21282239e-02 -3.21013868e-01 -1.97903425e-01 -4.85130757e-01\\n-2.10628092e-01 -3.01327229e-01 -2.10874513e-01 2.04483166e-01\\n2.27844417e-01 1.74164772e-01 4.02374417e-02 2.43239030e-02\\n-1.67955235e-01 -6.98134124e-01 -1.54068723e-01 1.07779369e-01\\n4.76227850e-01 2.11453319e-01 9.91025642e-02 -8.23631138e-02\\n4.25253585e-02 6.67702913e-01 -2.53969908e-01 -2.76519090e-01\\n1.98636383e-01 9.62556750e-02 9.65693519e-02 -1.41181692e-01\\n2.12047502e-01 2.67475277e-01 -1.65507913e-01 4.79277819e-02\\n-8.59688371e-02 -1.05508476e-01 2.92466730e-01 2.52837837e-01\\n-2.43043512e-01 -2.84316599e-01 -2.12770537e-01 1.23170137e-01\\n-5.74210823e-01 -2.54680693e-01 5.92390418e-01 1.73833504e-01\\n2.73764312e-01 7.55974799e-02 2.24692807e-01 -6.36000112e-02\\n-1.12850189e-01 -2.61527121e-01 3.19875062e-01 8.92695114e-02\\n1.15731575e-01 1.03525646e-01 -2.16320753e-02 -7.25295603e-01\\n-3.27209759e+00 -1.11953765e-01 1.50066778e-01 -3.59969288e-01\\n2.60609955e-01 -1.66682899e-01 2.60204852e-01 -3.09241191e-02\\n-3.12038511e-01 -2.02162750e-03 -2.92299986e-01 -4.30052206e-02\\n2.04030737e-01 3.22853595e-01 1.60819396e-01 2.29965597e-01\\n2.82271177e-01 -3.15553367e-01 -1.09316343e-02 4.90758866e-01\\n-1.21117197e-01 -5.89842916e-01 1.51041910e-01 1.05359126e-03\\n1.07691906e-01 3.04127365e-01 -2.27182627e-01 -1.27798691e-01\\n-3.33106369e-01 -1.59168601e-01 5.12171537e-02 -3.88463527e-01\\n-2.79219300e-01 1.52779073e-01 1.59717977e-01 -1.93177477e-01\\n4.75535206e-02 -3.68068784e-01 -4.44069803e-02 -4.07263398e-01\\n8.41399878e-02 -6.56183958e-01 1.09731378e-02 -5.49196126e-03\\n8.02021205e-01 -1.69993043e-01 4.20183726e-02 1.01977661e-02\\n1.73705950e-01 1.39366120e-01 1.21844284e-01 6.92329183e-02\\n-9.09658521e-02 -3.29167902e-01 -6.29113391e-02 -1.46915123e-01\\n6.48227155e-01 5.49666941e-01 -1.49214417e-01 -7.62293413e-02\\n9.93361771e-02 -2.69035906e-01 -4.49173868e-01 -2.40427703e-01\\n-2.68591613e-01 -2.68768042e-01 -6.07945263e-01 -4.18401539e-01\\n-2.39425659e-01 -1.21046744e-01 -2.51357079e-01 4.87106442e-01\\n-2.59714514e-01 -2.86263704e-01 -3.08411662e-02 -4.93256301e-01\\n2.96392053e-01 -1.07400380e-01 5.76469265e-02 -2.59572327e-01\\n-1.98630437e-01 -4.93678153e-01 7.52078295e-02 1.73591208e-02\\n-8.65768716e-02 -1.93008080e-01 -8.44383985e-02 -8.81933272e-02\\n-3.58855933e-01 -5.97592890e-01 3.56970996e-01 1.54431000e-01\\n4.20752168e-01 9.87725481e-02 3.29500854e-01 2.99395644e-03\\n4.27996010e-01 -1.14249796e-01 -5.82283512e-02 -4.23470199e-01\\n1.68414935e-02 9.54959318e-02 6.00186944e-01 -3.13914150e-01\\n-2.82981321e-02 2.43159290e-02 -2.70642787e-01 -1.07605867e-01\\n2.73641914e-01 -9.68947187e-02 1.29640445e-01 -1.43695295e-01\\n2.67815471e-01 -3.61983865e-01 -2.72105694e-01 5.84241189e-02\\n-1.14795491e-02 6.01922214e-01 -8.08509141e-02 -3.19103092e-01\\n-6.83792233e-02 3.77756953e-01 -1.30633220e-01 -7.82845169e-03\\n-1.91623122e-01 -8.88505131e-02 -1.71746343e-01 3.28968585e-01\\n4.02713707e-03 -2.05643654e-01 -2.07608745e-01 -1.50207385e-01\\n-6.16584010e-02 4.11203861e-01 8.44620019e-02 1.98279396e-02\\n6.85963482e-02 -4.37513918e-01 -1.02881067e-01 2.94618636e-01\\n1.43739805e-01 4.91804570e-01 3.27605568e-02 -2.03892916e-01\\n-1.44536898e-01 3.18509638e-01 -3.17675769e-01 2.08907351e-01\\n-3.14779729e-01 1.43567502e-01 -4.50716794e-01 -2.25893617e-01\\n-2.50616372e-01 -4.42676306e-01 1.63771242e-01 3.86209577e-01\\n1.75867990e-01 1.12641938e-01 -7.38131851e-02 -4.64854598e-01\\n1.87239066e-01 8.19955245e-02 1.32542700e-01 1.35177106e-01\\n-1.00389585e-01 5.13187528e-01 -1.66302919e-02 -1.45746425e-01\\n-7.90596753e-02 8.47329125e-02 -2.49137819e-01 -2.06960186e-01\\n2.15650439e-01 -5.14498472e-01 -1.01562209e-01 5.59331775e-01\\n3.36833298e-01 -2.60551423e-01 -2.66562879e-01 2.39882037e-01\\n1.52954273e-02 -3.40122819e-01 -3.17193776e-01 9.36554745e-02\\n2.36116081e-01 1.74736917e-01 3.93770725e-01 -3.95841867e-01\\n-3.53140011e-02 -6.94602802e-02 -1.21473633e-01 3.71100724e-01\\n-1.86036844e-02 1.47500172e-01 -2.55385607e-01 -1.71865851e-01\\n4.99527097e-01 8.17651227e-02 -2.09141858e-02 5.35607599e-02\\n2.15555593e-01 -2.07020655e-01 -4.41368908e-01 5.85991330e-02\\n-1.09863123e-02 -2.94837296e-01 4.42870613e-03 1.47256032e-01\\n-2.04709563e-02 8.18594769e-02 -6.33789480e-01 -2.86462963e-01\\n-2.85009295e-01 -8.55261907e-02 9.16512012e-02 -5.34546316e-01\\n-1.14497222e-01 -2.65090447e-02 -5.22750556e-01 2.18540177e-01\\n-1.62362635e-01 -1.44343823e-02 2.27588624e-01 6.51002303e-02\\n-2.38904789e-01 -5.66478930e-02 1.55980766e-01 3.59089673e-01\\n-3.25781494e-01 -2.18924433e-01 -4.40066680e-02 -1.05469048e+00\\n6.98417351e-02 -4.28832248e-02 -1.07498176e-01 2.22774476e-01\\n-1.60633221e-01 -6.48294091e-01 1.29321679e-01 -3.86240840e-01\\n-2.17909515e-01 -1.24346064e-02 -1.27707899e-01 -4.53269213e-01\\n1.18007258e-01 4.10855301e-02 -3.19887191e-01 3.24435651e-01\\n-2.94510871e-01 3.81644309e-01 -1.04961015e-01 1.96778163e-01\\n-4.59882617e-02 -2.11096138e-01 2.48012096e-01 -4.07824934e-01\\n-3.94221961e-01 -1.62064403e-01 -3.68471950e-01 -1.82444930e-01\\n-3.10555864e-02 -3.27453583e-01 -1.64478287e-01 2.13548705e-01\\n5.27119637e-01 1.31892070e-01 -2.52060033e-02 -2.18212396e-01\\n9.63703915e-02 -6.80909097e-01 6.71873614e-02 2.86784079e-02\\n-1.71318114e-01 -6.94778860e-02 3.03647697e-01 8.99076909e-02\\n1.36590913e-01 -3.75100285e-01 3.97345841e-01 -4.19959962e-01\\n-2.76993155e-01 -6.96432889e-02 9.00200233e-02 8.38690065e-03\\n3.54267150e-01 -4.22304958e-01 -6.00282066e-02 2.38856852e-01\\n4.43377048e-02 2.03104958e-01 3.57050508e-01 -1.06125183e-01\\n-1.25015080e-01 2.60633647e-01 -4.33169276e-01 3.24030742e-02\\n8.50722373e-01 1.63823798e-01 7.51696602e-02 2.55658448e-01\\n1.93099126e-01 2.63304532e-01 4.22858655e-01 -3.04937661e-02\\n-1.53546736e-01 2.60877639e-01 -4.24936861e-02 -6.44675136e-01\\n3.65843512e-02 -1.98049787e-02 -1.74176350e-01 -2.94283628e-01\\n6.34519577e-01 3.55780274e-01 -4.74421173e-01 -3.20709735e-01\\n-1.23765759e-01 -6.85335845e-02 1.31463200e-01 -4.83045280e-02\\n-1.81025378e-02 -3.17654386e-02 3.95299375e-01 -6.25251979e-02\\n2.31280953e-01 5.23020566e-01 -2.28155807e-01 -2.67665058e-01\\n-3.25174779e-02 1.23930693e-01 -6.35954877e-03 4.64194626e-01\\n-1.74738348e-01 2.77220070e-01 -5.03048487e-02 7.74902180e-02\\n-9.64803100e-02 7.93015286e-02 8.77303630e-02 1.47348702e-01\\n1.42649159e-01 1.72113106e-01 5.94327867e-01 5.24532080e-01\\n2.27448955e-01 3.83944601e-01 3.43459815e-01 2.46498659e-02\\n4.62378174e-01 4.60709125e-01 3.11339021e-01 1.37289464e-01\\n2.53534503e-02 4.65814508e-02 1.52491257e-01 -5.76507635e-02\\n4.30147469e-01 4.19286102e-01 1.33034512e-01 7.84353971e-01\\n7.58600309e-02 2.92487860e-01 7.04769373e-01 -6.32447302e-01\\n-4.42493916e-01 7.70544540e-03 6.05489135e-01 -4.83824819e-01\\n-9.39632803e-02 1.78962216e-01 -1.78773373e-01 1.81127816e-01\\n-5.38589239e-01 -3.89146745e-01 -2.61195153e-02 1.23999573e-01\\n-7.77707025e-02 -1.66761696e-01 -1.54550359e-01 1.13589913e-01\\n3.58011536e-02 1.79079175e-02 -5.03724158e-01 -8.94336700e-02\\n-8.75824690e-02 -8.19132626e-02 -1.24801084e-01 -1.60023376e-01\\n-7.78837875e-02 -2.92164654e-01 5.34609705e-02 5.16755208e-02\\n2.84003705e-01 -5.19138314e-02 6.38652174e-03 1.71714295e-02\\n2.28366554e-01 1.11782677e-01 5.60524583e-01 -9.85085890e-02\\n7.16386884e-02 -1.07680649e-01 -2.15105012e-01 1.67366683e-01\\n1.61797330e-01 3.88299860e-02 1.48115782e-02 3.01574111e-01\\n-1.89686805e-01 -2.88532019e-01 1.04793906e-01 3.36473018e-01\\n-4.96872932e-01 8.46881568e-02 -1.13916643e-01 1.55542821e-01\\n1.19470850e-01 1.64155975e-01 -2.55628884e-01 -2.87215523e-02\\n-2.07679495e-01 -4.05460387e-01 1.89282626e-01 -5.09027168e-02\\n-1.74691170e-01 3.91284674e-02 2.00842097e-01 1.08325310e-01\\n-1.83323845e-01 9.02697295e-02 -1.92071542e-01 2.42557213e-01\\n6.31390437e-02 2.44066209e-01 -8.26845914e-02 -3.41219455e-01\\n-2.56906986e-01 1.24575324e-01 -7.39657283e-02 2.08857790e-01\\n4.03286107e-02 3.50092351e-01 -5.89012774e-03 -1.63358040e-02\\n5.40917933e-01 1.10420570e-01 -2.30183333e-01 -3.66632402e-01\\n-2.57155389e-01 -2.49119163e-01 1.22341822e-04 -7.09325895e-02\\n1.26313761e-01 -4.68478382e-01 -1.05692431e-01 -3.30885977e-01\\n-1.90472573e-01 -3.49994332e-01 -1.05137248e-02 -1.15497708e-01]]',\n", + " 'job_description': 'Discover your own perfect formula for job satisfaction Our facility in Reinach is currently looking for a Supply Chain Data Analyst (m/f) Endress+Hauser is a global leader in measurement instrumentation, services and solutions for industrial process engineering. Despite employing over 14,000 people worldwide, we have remained a family company, and are proud of our close-knit working environment. There are always two sides to working with us - the professional and the personal. Together they add up to a more rewarding career, day in and day out. Role+Responsibilities Collect, analyze and interpret data from various systems (SAP, Data Warehouse, Transport Management System) for supply chain analytics Define new data collection approaches and improve existing ones Analyze patterns and trends in the data for supply chain improvements Visualize and report your derived findings Maintain supply chain master data and assure data quality Qualification+Profile Degree in Mathematics, Computer Science, Statistics or Economics Experience in data models and reporting packages Ability to analyze large datasets and create comprehensive reports An analytical mind with focus on problem-solving, attention to detail Strong verbal and written communication skills Strong knowledge of English Programming skills and experience with SQL, Oracle, Python, SAP BW, SAP analytics cloud, SAP HANA, Data lakes, Tableau Benefits + Perks You will find the security of working for an international family-owned company You will have a wide range of training opportunities You will get flexible working time You will come across a broad range of options for the reconciliation of family and working life Contact us + Apply If this position sounds appealing to you, we would like to hear from you. Please send your CV to Beatrice Jacob and state your salary expectations and earliest possible start date via our job portal at www.endress.com/career',\n", + " 'soft_skills': '[\"Professionalism\", \"Written Communication\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Oracle SQL Developer\", \"Data Quality\", \"Tableau (Business Intelligence Software)\", \"Programming (Music)\", \"Computer Science\", \"Collections\", \"Analytics\", \"SAP HANA\", \"Statistics\", \"Supply Chain\", \"Survey Data Collection\", \"Visualization\", \"Computational Mathematics\", \"Industrial Processes\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Maintainability\", \"Python (Programming Language)\", \"Instrumentation\", \"Transport Management Systems\", \"Dataset\", \"SAP Project System\", \"Library For WWW In Perl\", \"Logical Data Models\", \"Management Systems\", \"Personalization\", \"Reconciliation\", \"Appeals\", \"Economics\", \"Data Lakes\", \"Derivatives\", \"Process Engineering\"]',\n", + " 'languages': \"['English', 'Igbo']\"},\n", + " {'company_id': '86',\n", + " 'job_title': 'full stack web application engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Security Services',\n", + " 'website': 'www.open-systems.com',\n", + " 'jobdescription_embedded': '[[-3.17957133e-01 3.46389115e-01 3.89491558e-01 -3.21595445e-02\\n5.47099888e-01 -2.52057105e-01 1.19775601e-01 4.27356750e-01\\n-2.69577876e-02 -4.45008129e-01 -1.14103749e-01 -2.02499047e-01\\n-8.60764459e-02 6.90063164e-02 1.94518670e-01 3.55485588e-01\\n3.41190726e-01 1.12909868e-01 -1.41569227e-01 4.89856005e-01\\n4.27033752e-02 -1.30995095e-01 4.85031717e-02 7.52265155e-01\\n4.26227689e-01 -3.18181980e-03 -8.98265168e-02 2.08703224e-02\\n-2.44165137e-01 -2.73249954e-01 3.26298892e-01 -1.04821555e-01\\n-7.59880915e-02 -4.93569523e-01 7.06598237e-02 6.10551722e-02\\n-2.48633206e-01 -9.26238373e-02 -1.26214534e-01 2.20894963e-01\\n-5.46437979e-01 -2.03694150e-01 9.57597792e-02 -4.09916788e-02\\n-1.17594033e-01 -3.00222963e-01 1.58938259e-01 -7.88319390e-03\\n1.69749066e-01 8.69346112e-02 -5.74281931e-01 2.77996898e-01\\n-2.53192782e-01 -2.76665032e-01 4.04574513e-01 5.27458131e-01\\n-1.04940504e-01 -4.91359204e-01 -4.40244555e-01 -3.21139395e-01\\n4.49523218e-02 -3.41433920e-02 1.06954977e-01 -4.54942495e-01\\n2.10506827e-01 1.47364080e-01 9.09315422e-02 4.18028682e-01\\n-7.96747327e-01 -1.23051666e-01 -2.11931065e-01 4.83873719e-03\\n-3.40003461e-01 -1.12704732e-01 -2.32655272e-01 -7.71910250e-02\\n-1.51445717e-01 3.14400613e-01 -8.78645480e-02 8.16881210e-02\\n-2.42152691e-01 4.06859607e-01 -1.96380913e-01 3.39642167e-01\\n2.24399850e-01 1.33446842e-01 1.50234178e-01 3.55518043e-01\\n-3.76299322e-01 5.47876894e-01 2.43909862e-02 -1.90546989e-01\\n2.35892311e-01 2.05133080e-01 4.93840456e-01 -1.20741732e-01\\n2.72940546e-01 1.05226330e-01 -3.37884486e-01 3.16735029e-01\\n2.26761714e-01 -2.65390307e-01 2.74141170e-02 -1.15541853e-01\\n1.60161871e-02 1.23560103e-02 7.36827776e-02 1.89412162e-01\\n-2.96290547e-01 4.35608566e-01 2.17686459e-01 -2.42853463e-01\\n-1.70292541e-01 -4.95200157e-01 -6.64721355e-02 9.77687687e-02\\n1.03903778e-01 4.13565561e-02 1.20665722e-01 4.76577319e-02\\n2.13716090e-01 7.07028359e-02 1.28067777e-01 7.54609525e-01\\n-3.33775617e-02 -4.79815081e-02 -1.86167181e-01 2.25350335e-01\\n9.84847844e-02 -3.47499192e-01 1.01765737e-01 2.47770607e-01\\n1.35233268e-01 -1.61645174e-01 -2.70701975e-01 4.28736508e-01\\n-4.04644310e-02 -1.50215998e-01 -3.39992046e-01 3.33525509e-01\\n-2.42999941e-02 -3.92903835e-01 6.74369037e-01 1.46597683e-01\\n2.44624674e-01 4.66031842e-02 1.14331000e-01 -1.14503413e-01\\n-1.13514826e-01 2.12754190e-01 3.90690453e-02 1.81982353e-01\\n-3.00874203e-01 -2.41636962e-01 -2.58203894e-01 1.78066298e-01\\n-3.48155260e-01 2.64073014e-01 -4.20289263e-02 -1.06782876e-01\\n3.09588611e-01 5.90845523e-03 -3.68086725e-01 3.67620319e-01\\n-1.05782501e-01 1.15263246e-01 -5.34173846e-02 3.71192694e-01\\n-1.09338857e-01 3.00737083e-01 -2.18968000e-02 7.64149101e-03\\n5.54143012e-01 1.35591924e-01 1.07178427e-01 -9.01777484e-03\\n3.05944234e-01 1.64379794e-02 7.41080418e-02 2.71832701e-02\\n-7.85640955e-01 1.17021069e-01 -4.26308140e-02 -2.20000520e-01\\n9.34198424e-02 -2.02861633e-02 2.75185525e-01 -3.19841266e-01\\n-9.91580412e-02 -1.09273158e-01 -4.28054124e-01 -2.76276737e-01\\n-1.65073320e-01 -9.06704646e-03 3.69913608e-01 -4.40424442e-01\\n-1.96099818e-01 1.81671157e-01 -5.52416444e-01 -3.07945460e-02\\n2.31437281e-01 1.81865767e-01 1.43393546e-01 7.64940903e-02\\n-1.46329716e-01 -5.71325958e-01 -5.29930890e-02 -4.36371535e-01\\n-3.22329074e-01 1.02476284e-01 -3.54254812e-01 1.97251499e-01\\n7.99020454e-02 3.46084908e-02 -6.43852875e-02 7.43075758e-02\\n-1.01185657e-01 -4.43144664e-02 7.26245195e-02 1.54840918e-02\\n2.52201259e-01 4.69018854e-02 -3.78696471e-01 4.77530539e-01\\n-9.12952051e-02 5.21065533e-01 5.06401509e-02 -7.02111542e-01\\n6.05801105e-01 4.07491505e-01 -7.68442750e-02 -4.45064068e-01\\n5.72859585e-01 -2.93170631e-01 -6.84666485e-02 1.18993104e-01\\n-4.61221486e-01 -3.32666427e-01 2.01899692e-01 -2.62311399e-01\\n-2.69756168e-01 4.33777541e-01 4.47497107e-02 1.28752500e-01\\n3.09070170e-01 -2.55755067e-01 -1.89371314e-02 1.10282086e-01\\n2.56098453e-02 -1.69690162e-01 -4.68102574e-01 -3.34036872e-02\\n-1.05558939e-01 -5.02024770e-01 -2.28240520e-01 -3.52649599e-01\\n-2.10032925e-01 -2.88501769e-01 -2.20751137e-01 2.11570054e-01\\n3.58125597e-01 1.27706051e-01 -3.27368937e-02 1.53566003e-01\\n-1.69241130e-01 -7.30481029e-01 4.84158099e-02 1.21620789e-01\\n3.93260062e-01 1.35030329e-01 7.89637640e-02 -1.39907718e-01\\n4.03648354e-02 6.60474122e-01 -2.35167861e-01 -1.80679515e-01\\n1.87646702e-01 1.55477181e-01 -2.75418647e-02 -1.48216262e-01\\n1.15306802e-01 3.75697494e-01 -3.03794801e-01 3.99204195e-02\\n-6.01590239e-02 -9.78769436e-02 4.65614825e-01 -1.12096399e-01\\n-3.48604530e-01 -1.94803149e-01 -3.80763076e-02 1.13495745e-01\\n-5.19424558e-01 -1.92997321e-01 5.56229889e-01 1.84489548e-01\\n1.76611036e-01 1.79377154e-01 2.69371003e-01 -5.38812615e-02\\n-1.92319259e-01 -4.49233204e-01 1.52706459e-01 1.85660064e-01\\n3.87645885e-02 1.49512947e-01 -1.10662237e-01 -6.07183337e-01\\n-3.13286400e+00 -1.14501432e-01 1.86877415e-01 -2.77484596e-01\\n1.41552925e-01 3.03500071e-02 9.89959165e-02 -9.19869691e-02\\n-2.32641295e-01 -2.02264069e-04 -2.08785906e-01 -1.63579240e-01\\n2.25899354e-01 2.19554275e-01 6.82780892e-02 1.44386515e-01\\n2.50501931e-01 -3.54680568e-01 -7.91747048e-02 3.53798985e-01\\n-2.09628493e-01 -6.58907890e-01 1.65987730e-01 -1.23932049e-01\\n2.65876293e-01 3.29649925e-01 -3.39721620e-01 -1.53539389e-01\\n-1.12494364e-01 -1.77220985e-01 1.70867324e-01 -2.61521429e-01\\n-1.54491186e-01 2.21460700e-01 2.02100933e-01 -6.65310472e-02\\n1.61021203e-01 -3.54507089e-01 -2.28864610e-01 -4.85336155e-01\\n2.00379089e-01 -5.86918950e-01 -8.24745521e-02 -1.90911263e-01\\n6.94261730e-01 -1.94824278e-01 1.19847812e-01 6.07037507e-02\\n1.37646064e-01 2.34228656e-01 4.71794605e-02 9.07998309e-02\\n-1.04215816e-01 -3.03033203e-01 1.19026634e-03 -1.60643101e-01\\n5.68521082e-01 3.81689638e-01 -1.87572062e-01 -1.93162709e-01\\n1.54592827e-01 -3.23764056e-01 -3.34773690e-01 -1.68628871e-01\\n-4.69333120e-02 -2.53888488e-01 -7.32491434e-01 -3.33992243e-01\\n-1.54034451e-01 -1.60925210e-01 -1.10497199e-01 7.51931727e-01\\n-3.79072875e-01 -3.37486833e-01 -9.05068964e-03 -6.13309205e-01\\n2.02447772e-01 -2.41526768e-01 -1.35589652e-02 -2.76897520e-01\\n-2.04679877e-01 -4.70768780e-01 2.75579141e-03 7.46099651e-02\\n-7.73346275e-02 -2.33702704e-01 1.10456750e-01 -9.95911732e-02\\n-2.12389037e-01 -5.48683405e-01 4.08601940e-01 1.95013434e-01\\n2.26209521e-01 1.32945120e-01 2.82616109e-01 -9.96729136e-02\\n3.22639108e-01 -6.87282532e-02 -5.49646765e-02 -3.37978899e-01\\n1.62868485e-01 -1.87516194e-02 4.86517251e-01 -2.40476042e-01\\n-5.25436476e-02 2.78704077e-01 -2.48368323e-01 -1.22600950e-01\\n3.76673907e-01 -1.46528380e-02 -3.22154677e-03 -1.90073922e-01\\n3.27841878e-01 -4.24081594e-01 -1.61813736e-01 1.64856791e-01\\n9.25865248e-02 6.25278652e-01 1.81071293e-02 -4.38238144e-01\\n-1.64067969e-01 4.84205157e-01 8.74420181e-02 1.19034842e-01\\n-1.66575283e-01 1.06102586e-01 -1.69412151e-01 1.84004202e-01\\n1.41489848e-01 -1.84998080e-01 -2.53216773e-01 -7.63335004e-02\\n-1.14709005e-01 3.59787464e-01 2.77822167e-01 1.42149165e-01\\n-5.74641638e-02 -5.22582889e-01 -1.23194441e-01 1.99648932e-01\\n1.24138914e-01 4.82731998e-01 2.92330747e-03 -2.09343746e-01\\n-8.60012770e-02 4.03038114e-01 -1.07682832e-01 1.96464971e-01\\n-2.66828775e-01 1.09435424e-01 -5.08722842e-01 -2.24511251e-01\\n-3.19141299e-01 -3.28222126e-01 3.56741622e-02 3.48222464e-01\\n1.85456514e-01 -8.73688981e-03 2.66966093e-02 -3.44979525e-01\\n2.54003346e-01 1.94488287e-01 1.06250808e-01 1.61319092e-01\\n-5.43124117e-02 4.48600531e-01 3.42440605e-02 -2.58526772e-01\\n-1.44315124e-01 -2.37494670e-02 -2.26721421e-01 -1.31833866e-01\\n1.33627787e-01 -5.76189935e-01 -1.45383716e-01 3.22851747e-01\\n6.84645995e-02 -2.83004224e-01 -1.33953989e-01 2.10355148e-01\\n2.06986605e-03 -2.95229852e-01 -2.95636714e-01 2.90269870e-02\\n2.89142996e-01 2.67953780e-02 3.43758136e-01 -3.94800007e-01\\n-7.77711421e-02 3.00285202e-02 -5.75258024e-02 3.75425071e-01\\n-7.86335394e-02 3.03283446e-02 -2.51882166e-01 -1.72195703e-01\\n4.29914951e-01 -7.52227604e-02 -1.11945435e-01 7.81935230e-02\\n9.73584801e-02 -1.50054157e-01 -4.91888344e-01 1.19270407e-01\\n-1.38712302e-01 -7.83049166e-02 3.04556955e-02 6.15339205e-02\\n7.04397559e-02 1.09279469e-01 -5.24496675e-01 -2.09913269e-01\\n-2.54649192e-01 -3.27235572e-02 1.90025628e-01 -4.69346881e-01\\n-9.09959227e-02 -5.52273057e-02 -6.18522227e-01 2.38586769e-01\\n-3.16056460e-01 -6.06192090e-02 2.37740174e-01 8.90933052e-02\\n-3.04333270e-01 -1.04371428e-01 1.79925412e-02 2.74827629e-01\\n-3.92499000e-01 -3.11261356e-01 2.42314041e-02 -9.76937711e-01\\n2.94974208e-01 -1.00287952e-01 -1.79324657e-01 3.25834900e-02\\n-1.41378924e-01 -6.97744191e-01 2.50876881e-02 -2.79181689e-01\\n-1.15042403e-01 -3.51326726e-02 -2.04039142e-01 -3.63788098e-01\\n3.21779400e-02 -1.82736635e-01 -3.40582192e-01 3.87623101e-01\\n-3.33451599e-01 2.37268642e-01 -9.60848853e-02 7.21412599e-02\\n-1.30347461e-02 -3.10815781e-01 1.09990388e-01 -4.08573955e-01\\n-4.00553018e-01 -2.61758447e-01 -3.02531093e-01 -2.63614774e-01\\n-4.73727919e-02 -3.47075433e-01 -2.57021468e-02 1.62009239e-01\\n2.27930993e-01 -9.98363458e-03 -8.04812312e-02 -3.19451869e-01\\n8.27896819e-02 -4.75351155e-01 6.36880398e-02 -1.48393465e-02\\n-1.86869642e-03 -1.08936422e-01 8.40525925e-02 1.62282929e-01\\n2.52297789e-01 -3.55913818e-01 2.94258505e-01 -4.25280601e-01\\n-2.90224582e-01 -6.83074817e-02 -1.05769441e-01 -1.29082110e-02\\n3.00846905e-01 -4.91198272e-01 2.23449785e-02 3.73590678e-01\\n1.12625800e-01 8.67099017e-02 1.77705556e-01 -6.49443045e-02\\n-1.02254115e-01 2.86103904e-01 -3.14258784e-01 1.36403978e-01\\n7.75529206e-01 9.81408805e-02 6.92448067e-03 3.12625974e-01\\n1.22414492e-01 4.13226575e-01 4.88337934e-01 3.52014933e-04\\n-1.44282743e-01 1.94699198e-01 1.14453651e-01 -5.26063681e-01\\n-8.14016014e-02 6.43597320e-02 -2.09092230e-01 -3.36164057e-01\\n6.69802368e-01 4.14263695e-01 -4.57418740e-01 -2.41373301e-01\\n-1.38956279e-01 -1.81377560e-01 1.06757239e-01 -6.73089921e-02\\n-1.37804328e-02 -1.14203028e-01 5.01829922e-01 -5.63766435e-03\\n1.72867507e-01 5.98401845e-01 -9.26457644e-02 -4.24071789e-01\\n-1.02994695e-01 2.27244094e-01 1.31103089e-02 4.98054624e-01\\n-1.60583213e-01 2.41314918e-01 2.11817026e-02 1.59914345e-01\\n-1.04281180e-01 1.72808826e-01 5.19606620e-02 1.77664697e-01\\n7.32279867e-02 1.83608159e-01 5.06464124e-01 4.42793936e-01\\n3.00168693e-01 4.43760365e-01 2.35433146e-01 2.29846947e-02\\n5.31396151e-01 4.08648819e-01 4.97671515e-01 1.52437434e-01\\n6.08255565e-02 2.06853241e-01 2.17744365e-01 7.78767839e-02\\n3.70430946e-01 2.86156893e-01 8.90241712e-02 8.81004512e-01\\n3.42060626e-01 2.25520417e-01 7.98166037e-01 -6.52752697e-01\\n-3.75869304e-01 3.90703119e-02 4.31025714e-01 -4.74906176e-01\\n-5.58187664e-02 5.70952892e-02 -1.24275073e-01 3.14276159e-01\\n-5.57963073e-01 -2.32347578e-01 -5.93300611e-02 2.17000827e-01\\n1.49198808e-02 -2.02581167e-01 -2.23299891e-01 3.47343013e-02\\n-1.26407027e-01 -1.38148353e-01 -4.44794595e-01 -1.67534888e-01\\n-2.28633046e-01 -6.33168966e-02 -8.13389570e-02 -2.03161627e-01\\n5.84210306e-02 -3.88770878e-01 -4.07264195e-02 -9.29877236e-02\\n2.98769116e-01 -4.53008562e-02 -6.50997739e-03 -9.11024120e-03\\n3.44113141e-01 2.25517541e-01 6.37861669e-01 1.69867147e-02\\n7.08297417e-02 -2.75487095e-01 -2.02902600e-01 1.60759270e-01\\n5.29393815e-02 1.78294584e-01 6.96251616e-02 2.16959298e-01\\n-3.35007817e-01 -1.98974237e-01 1.43792942e-01 3.77561033e-01\\n-4.76269126e-01 -2.31554881e-02 -9.83069241e-02 2.37876683e-01\\n3.16139683e-02 1.14257373e-01 -1.43238261e-01 -2.60084327e-02\\n-1.63131550e-01 -5.09828031e-01 3.25618684e-01 -4.60752398e-02\\n-9.06016901e-02 6.81380779e-02 3.07196707e-01 2.04111695e-01\\n-2.25322306e-01 5.73124625e-02 7.86416158e-02 7.46644512e-02\\n1.10234201e-01 3.60729367e-01 -8.97766650e-02 -3.19468617e-01\\n-2.96407491e-01 1.87342674e-01 -1.46991193e-01 -4.61427383e-02\\n-3.37555222e-02 3.37481409e-01 -5.64520098e-02 9.76285711e-02\\n3.58092904e-01 -4.46299836e-02 -2.66143739e-01 -2.66801000e-01\\n-1.53056338e-01 -2.55317211e-01 -4.51381430e-02 -3.47080268e-02\\n1.95612729e-01 -4.55677122e-01 -1.10574611e-01 -9.88458768e-02\\n-2.49608960e-02 -2.35832348e-01 -2.35158112e-02 -1.15717314e-01]]',\n", + " 'job_description': 'Join our team of web application developers and face the challenge of making IT security visible, understandable, and beautiful. As a Web Application Engineer, you will extend and improve the Mission Control Portal and thus help our customers to better manage and understand their global network security setups. Together with service engineers, UI designers, and product owners you discuss, shape, specify, and implement solutions that emphasise the value of strong IT security services, ease the operation of thousands of devices deployed across the planet, and provide intelligent insights into security-relevant data and processes. As part of the Mission Control team, you share operational duties with your colleagues. We expect you to bring the following skills to the table: ETH, university, or FH degree in Computer Science Experience in web application development on the client side (JavaScript, CSS3, HTML5, React) and the server side (Java, Spring) Familiarity with SQL and relational databases Basic knowledge of build and deployment environments (Atlassian Bamboo, Maven, Tomcat) Fluent in English and preferably German Furthermore, we expect basic knowledge and a high motivation to participate a coached training program in these areas: Knowledge of Linux operating systems Understanding networking in general and the major internet protocols Knowledge of network security concepts and practices You will join one of our small development teams that works with agile methods. The team will rely on you to focus on its goals and efforts as a team player while being able to work independently. At Open Systems we are passionate about what we do. We work in an environment in which innovative solutions, rapid development times, creativity and open communication are practiced and continuously fostered. The pursuit of technical advancement is at the center of our attention. You will be based at our office in Zurich (CH) and will get the opportunity to work out of our office in Redwood City (US) for a few months. We look forward to receiving your complete online application (letter of motivation, CV, diplomas/reference letters/transcript of records. Compress your application into two attachments). For further questions and inquiries about applications, please feel free to contact Helena Grimm at +41 58 100 10 10.',\n", + " 'soft_skills': '[\"Management\", \"Communications\", \"Operations\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Agility\", \"Computer Science\", \"Compression\", \"Internet Protocols\", \"Atlassian Bamboo\", \"European Training Programs\", \"Rapid Application Development\", \"Linux\", \"HTML5\", \"Server-Side\", \"React.js\", \"Operating Systems\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Network Security\", \"Small Business Development\", \"Receivables\", \"Relational Databases\", \"Centering\", \"Network Security Services\", \"Java (Programming Language)\", \"Inquiry\", \"SQL (Programming Language)\", \"Web Application Development\", \"Apache Tomcat\", \"Controllability\", \"Open Systems SnapVault\"]',\n", + " 'languages': \"['English', 'Polish', 'Nepali']\"},\n", + " {'company_id': '95',\n", + " 'job_title': 'software engineer python',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Investment Banking & Asset Management',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.66524321e-01 2.36480415e-01 4.88435745e-01 5.09883910e-02\\n4.25920516e-01 -6.75612763e-02 -4.10967097e-02 4.44127142e-01\\n4.95000556e-02 -4.54217851e-01 2.97759436e-02 -1.67527705e-01\\n-1.87981855e-02 -1.10482806e-02 -2.85293870e-02 3.19970071e-01\\n3.13170373e-01 7.39108771e-02 -1.67363048e-01 3.72895718e-01\\n1.52327478e-01 5.72269037e-03 1.53119594e-01 7.13517368e-01\\n4.55829859e-01 -5.61857522e-02 -3.51604596e-02 7.21043795e-02\\n-7.37817362e-02 -2.15559617e-01 5.10402381e-01 -2.40190253e-02\\n-1.25872523e-01 -3.50732684e-01 6.93624541e-02 -8.81827697e-02\\n-1.86496809e-01 -5.46120293e-02 -8.39772262e-03 3.77979875e-02\\n-4.07773614e-01 -4.05121371e-02 -5.20944819e-02 2.57673915e-02\\n-2.96334445e-01 -3.38255286e-01 2.45367046e-02 -2.11097468e-02\\n1.26130924e-01 4.80977856e-02 -3.70255768e-01 2.85416245e-01\\n-1.42219201e-01 -1.06501222e-01 2.12706506e-01 5.53136230e-01\\n-5.66586889e-02 -2.93749690e-01 -6.57931268e-01 -3.78655732e-01\\n1.76998347e-01 -9.53267962e-02 7.73403645e-02 -1.87133044e-01\\n2.87533313e-01 -2.21116357e-02 1.95820071e-02 1.95578665e-01\\n-6.52497172e-01 5.28518856e-03 -2.35582560e-01 -1.87617868e-01\\n-3.30770016e-01 -2.26804137e-01 -2.70517975e-01 -1.10039450e-01\\n-9.24303681e-02 3.00017357e-01 1.72820732e-01 1.04541808e-01\\n-1.58879310e-01 1.57025963e-01 -1.68214768e-01 3.21748734e-01\\n2.06259310e-01 1.76667511e-01 2.51468420e-01 2.90166616e-01\\n-3.14084411e-01 4.79007661e-01 1.19219922e-01 -3.93711090e-01\\n2.92196870e-01 5.67649901e-02 4.01883811e-01 -1.28766581e-01\\n2.02912688e-01 7.65633136e-02 -3.17119420e-01 3.06331873e-01\\n1.57889545e-01 -4.26098347e-01 4.27730009e-03 -1.50043041e-01\\n5.08419015e-02 -1.43463816e-03 1.82068467e-01 9.93697792e-02\\n-3.16408575e-01 4.18032348e-01 7.23801479e-02 -2.32697845e-01\\n-1.50211692e-01 -3.41120899e-01 -7.42211416e-02 -5.85581437e-02\\n2.23242976e-02 1.84804708e-01 1.85397461e-01 2.29694277e-01\\n1.38999358e-01 -2.78477627e-03 9.20521095e-02 6.62667274e-01\\n-3.15797403e-02 1.99884977e-02 -3.02146435e-01 2.61989117e-01\\n7.74926990e-02 -4.56153750e-01 3.03276300e-01 1.72436088e-01\\n-9.00331661e-02 -1.17050514e-01 -1.50599509e-01 2.58681059e-01\\n9.10268426e-02 -1.27656639e-01 -1.60832390e-01 1.32838607e-01\\n-2.06696242e-03 -3.69673431e-01 6.19563580e-01 1.72626019e-01\\n1.38548419e-01 -1.00680679e-01 -5.84435686e-02 -1.85810685e-01\\n-3.61086428e-02 1.30312085e-01 1.28693487e-02 1.35236666e-01\\n-1.77529201e-01 -1.80174172e-01 -1.91014796e-01 1.28278166e-01\\n-3.53432804e-01 4.10672799e-02 -1.45788431e-01 -1.19998947e-01\\n2.40744635e-01 -1.90002084e-01 -2.34248623e-01 2.76450932e-01\\n-1.78823136e-02 -5.05503640e-02 6.39600828e-02 3.36982787e-01\\n-1.76703572e-01 2.28857175e-01 -1.30377024e-01 -9.42343771e-02\\n6.62523150e-01 1.32100716e-01 1.90637380e-01 2.09693843e-03\\n1.88691616e-01 -1.51264686e-02 1.26116410e-01 1.35834575e-01\\n-6.93646431e-01 3.20394754e-01 -9.92077142e-02 -1.97006986e-01\\n5.59916720e-04 -1.83330357e-01 2.01296091e-01 -2.56752551e-01\\n4.89158221e-02 1.29177691e-02 -2.81314701e-01 -1.45572960e-01\\n-1.17893264e-01 5.49475849e-03 3.55781168e-01 -4.78741884e-01\\n-8.80204886e-02 1.87150061e-01 -4.25298929e-01 -7.39632174e-02\\n1.71834290e-01 1.11586578e-01 8.69168639e-02 1.87063202e-01\\n-1.21958286e-01 -3.84866804e-01 5.81893548e-02 -3.15982670e-01\\n-2.93863773e-01 9.22991335e-02 -3.06171238e-01 2.13916674e-01\\n1.89885944e-01 -9.57719535e-02 -1.25006005e-01 2.01981023e-01\\n-7.95995444e-02 -7.37470239e-02 1.47779971e-01 1.61737204e-02\\n2.47402832e-01 1.09708287e-01 -3.41233552e-01 3.77945274e-01\\n-1.28295317e-01 4.95419621e-01 7.88466185e-02 -7.96863675e-01\\n3.62104297e-01 2.86986470e-01 -5.21058403e-03 -3.46735507e-01\\n5.33676386e-01 -2.72672832e-01 3.19559984e-02 -2.95088440e-02\\n-3.69093329e-01 -2.91846007e-01 2.17782438e-01 -2.14898199e-01\\n-2.21480519e-01 3.79446030e-01 -1.13313772e-01 1.12736471e-01\\n5.66802919e-02 -2.41934285e-01 -5.09686954e-02 -5.68926334e-05\\n-1.35635540e-01 -2.15326235e-01 -5.57866335e-01 -1.84251875e-01\\n-8.53716861e-03 -3.55286658e-01 -9.05093998e-02 -4.52167869e-01\\n-1.91774771e-01 -3.73968393e-01 -1.40338123e-01 1.59719348e-01\\n2.09952563e-01 1.46329641e-01 -8.02908540e-02 3.58250551e-03\\n-2.35633641e-01 -4.25835401e-01 -4.95496541e-02 9.65694189e-02\\n3.90583515e-01 1.65351450e-01 1.26881629e-01 6.14367574e-02\\n1.09257571e-01 5.13871074e-01 -2.16265559e-01 -1.75646573e-01\\n1.35462299e-01 2.71413863e-01 1.00605458e-01 -8.92553627e-02\\n2.08151117e-02 4.09880877e-01 -1.76051959e-01 -1.14491805e-02\\n-8.82147700e-02 -7.78484419e-02 4.50092107e-01 8.81233066e-03\\n-3.08207870e-01 -1.53613046e-01 -2.30726432e-02 9.53463987e-02\\n-5.18439949e-01 -1.86328858e-01 6.55912519e-01 2.43758455e-01\\n1.95056334e-01 1.37259960e-01 6.19039088e-02 2.01890897e-02\\n-5.90553917e-02 -1.81395620e-01 3.16654652e-01 5.18563539e-02\\n1.84908658e-01 -9.37069952e-02 -1.39329890e-02 -4.95430648e-01\\n-3.96297097e+00 -2.01698452e-01 9.65561271e-02 -1.60854876e-01\\n2.01696008e-01 -1.07142441e-01 3.06199305e-02 -8.17290321e-02\\n-2.98057050e-01 7.43874758e-02 -1.39107421e-01 -1.77205458e-01\\n1.17584355e-01 1.85476437e-01 2.88762510e-01 2.81220675e-01\\n1.58846736e-01 -2.05097213e-01 -4.78320532e-02 2.77138710e-01\\n-2.62195289e-01 -4.20578301e-01 2.54301965e-01 2.61987746e-02\\n3.00091296e-01 3.92993778e-01 -2.28702173e-01 -2.18405992e-01\\n-3.32386076e-01 -1.15053356e-01 -1.64243095e-02 -2.41100878e-01\\n-1.97872445e-01 1.87287495e-01 2.39498436e-01 -1.63626373e-01\\n1.79896325e-01 -5.10852695e-01 -1.79848820e-01 -2.74103165e-01\\n-4.61832471e-02 -4.97804761e-01 2.63463445e-02 -1.05492719e-01\\n6.95494890e-01 -2.69977748e-01 1.38487309e-01 1.30820386e-02\\n1.41751647e-01 1.42479837e-01 1.09177291e-01 1.18867189e-01\\n-1.31268710e-01 -2.19973087e-01 -5.81679866e-03 -1.51850179e-01\\n4.95833129e-01 5.01726866e-01 -5.50014153e-02 -6.29506484e-02\\n-7.63391703e-02 -2.06968293e-01 -3.96796376e-01 -2.78061926e-01\\n5.43978363e-02 -1.73286274e-01 -4.42974448e-01 -3.68398070e-01\\n-1.38676062e-01 -1.22788310e-01 -1.15603566e-01 3.46086144e-01\\n-1.90185964e-01 -3.19064438e-01 -1.18321769e-01 -3.02026749e-01\\n1.49741739e-01 -5.85458837e-02 1.46711886e-01 -1.07005358e-01\\n-1.12792425e-01 -4.94814038e-01 -7.87488520e-02 -1.26430020e-02\\n-6.25668615e-02 -5.17611265e-01 7.18413740e-02 -1.26572937e-01\\n-3.51406336e-01 -3.42792064e-01 4.27952528e-01 1.58343211e-01\\n2.92053550e-01 7.35495538e-02 1.92187250e-01 9.29680467e-02\\n2.42085248e-01 -2.09956437e-01 -6.52197748e-02 -4.28102195e-01\\n1.13753691e-01 1.29677877e-02 3.56757641e-01 -1.39725700e-01\\n5.95265180e-02 -4.74153273e-02 -1.96044385e-01 1.08044177e-01\\n3.51226360e-01 -7.46629536e-02 1.26048654e-01 -9.89988893e-02\\n2.28379756e-01 -1.74221754e-01 -8.06893706e-02 -8.21441934e-02\\n-1.20985508e-02 4.78411973e-01 1.85648389e-02 -4.04103279e-01\\n-1.63658038e-01 4.16564524e-01 -3.50516737e-02 7.55141228e-02\\n-2.73788035e-01 9.54674631e-02 -1.58852607e-01 1.05109513e-01\\n5.19702956e-02 -1.16043687e-01 -2.46563852e-01 -1.48928374e-01\\n-8.38022213e-03 2.41752774e-01 2.39010498e-01 1.70416176e-01\\n-4.66609299e-02 -4.84040946e-01 -3.39100510e-02 1.03743151e-01\\n2.23296911e-01 3.54030848e-01 9.99640450e-02 -1.43432915e-01\\n-5.38823530e-02 2.99958050e-01 -1.42372385e-01 2.04950690e-01\\n-1.67644218e-01 4.60833423e-02 -4.80412751e-01 -3.05830777e-01\\n-1.91224143e-01 -3.04509580e-01 1.25635996e-01 1.78347692e-01\\n1.01358786e-01 -4.71056625e-02 3.66861969e-02 -3.68680596e-01\\n3.60507727e-01 -2.23484002e-02 1.68992192e-01 2.87386417e-01\\n8.05964023e-02 4.78129297e-01 -2.06412114e-02 -2.41654545e-01\\n-2.58198738e-01 6.82896674e-02 -7.50630498e-02 -9.59449485e-02\\n-1.13021538e-01 -4.63119566e-01 -9.00463760e-02 2.91628897e-01\\n8.54387432e-02 -1.79054305e-01 -1.80885807e-01 2.93220252e-01\\n-3.52848060e-02 -2.82161146e-01 -1.89196676e-01 9.93866473e-02\\n3.19101930e-01 4.50062975e-02 3.40891242e-01 -4.57236171e-01\\n-8.12024437e-03 3.75672989e-03 4.27433364e-02 3.87720585e-01\\n1.43703163e-01 3.08227204e-02 2.50835866e-02 -1.03445567e-01\\n4.27705050e-01 4.25322168e-03 -1.47609338e-01 -2.18114220e-02\\n-1.22298999e-02 -2.64833808e-01 -4.12210643e-01 4.53993864e-02\\n1.54387634e-02 -1.87523454e-01 2.00271189e-01 2.26405501e-01\\n1.36943072e-01 1.86846346e-01 -6.23575687e-01 -3.11281234e-01\\n-2.72688270e-01 -7.46220127e-02 -1.61298007e-01 -5.98822951e-01\\n-5.26227653e-02 -1.60619378e-01 -5.12833834e-01 2.23620832e-01\\n-1.99773207e-01 -2.26917550e-01 2.89636683e-02 -2.64805946e-02\\n-2.26892859e-01 -1.72381550e-02 9.05376524e-02 1.92729682e-01\\n-1.90054402e-01 -3.08356494e-01 7.98863545e-02 -9.16494668e-01\\n2.44754165e-01 1.26115948e-01 -1.62654698e-01 1.56000525e-01\\n-5.11898920e-02 -5.43724835e-01 1.10677451e-01 -3.30279768e-01\\n-9.59731117e-02 -1.11055508e-01 -2.14255750e-01 -3.05696964e-01\\n1.29173636e-01 9.90917236e-02 -2.72180349e-01 3.67248654e-01\\n-2.41569310e-01 3.36164087e-01 -1.18225470e-01 1.89681709e-01\\n-2.55045556e-02 -2.50614882e-01 4.90682162e-02 -4.63509172e-01\\n-4.42663938e-01 -4.78289686e-02 -2.93956161e-01 -1.82729542e-01\\n-9.15682167e-02 -3.26429129e-01 -1.58199131e-01 7.88173266e-03\\n3.55013162e-01 1.11321256e-01 -2.15878040e-01 -1.99778080e-01\\n-1.01027749e-02 -4.35269386e-01 7.28160366e-02 -1.24450058e-01\\n-1.72532007e-01 -1.55117095e-01 1.75995022e-01 6.04557730e-02\\n9.23057869e-02 -4.38449442e-01 2.12705374e-01 -4.12990004e-01\\n-1.77700371e-01 3.52775455e-02 1.51766941e-01 -4.27182987e-02\\n3.10191214e-01 -5.31695306e-01 -1.33148372e-01 3.60731542e-01\\n1.92156658e-01 1.22936994e-01 2.48510137e-01 -1.05112694e-01\\n-3.10276225e-02 3.32370639e-01 -3.26704979e-01 2.87546311e-02\\n6.60951138e-01 1.40558146e-02 1.14590161e-01 1.53540939e-01\\n1.36091426e-01 2.02475622e-01 3.73074532e-01 3.98870967e-02\\n-8.17203596e-02 2.78016865e-01 1.23049542e-01 -5.34187078e-01\\n8.56103152e-02 1.60398185e-02 -1.50920987e-01 -3.59249055e-01\\n5.27325094e-01 4.54573154e-01 -3.76812160e-01 -1.04736984e-01\\n-1.46930024e-01 -2.46222705e-01 7.52527863e-02 -8.53082389e-02\\n9.06618014e-02 -6.35242537e-02 3.80300224e-01 -5.05376495e-02\\n1.65290058e-01 5.25279045e-01 -2.02532679e-01 -1.49422392e-01\\n-7.49496296e-02 2.19272479e-01 1.31069452e-01 5.99074841e-01\\n-3.24672759e-01 3.49253654e-01 -2.16777883e-02 6.12939894e-02\\n-3.00563476e-03 1.96641952e-01 1.00822523e-01 1.38888687e-01\\n8.75716805e-02 2.34785248e-02 3.80474001e-01 3.27680051e-01\\n2.96373785e-01 3.49088460e-01 3.61197770e-01 1.22052357e-02\\n3.88095617e-01 5.43448329e-01 3.94161463e-01 7.96898007e-02\\n-1.15765408e-01 -2.32097395e-02 1.70684323e-01 5.45985699e-02\\n2.82389969e-01 4.28620130e-01 8.55596513e-02 7.31409192e-01\\n4.40824747e-01 3.43957067e-01 5.53978682e-01 -5.11166513e-01\\n-2.70876199e-01 9.49715823e-02 3.81921858e-01 -3.81199539e-01\\n-3.34283784e-02 2.62156010e-01 -2.39329025e-01 1.35472953e-01\\n-3.01012158e-01 -2.94908226e-01 -1.06197625e-01 1.01720273e-01\\n1.75570138e-02 -1.36717066e-01 -1.36007130e-01 2.07784176e-01\\n2.53596287e-02 -8.24529231e-02 -5.03892303e-01 -8.20760205e-02\\n-2.29820579e-01 -9.45581198e-02 -8.84789973e-02 -1.06933825e-01\\n-1.95553243e-01 -2.04667881e-01 -7.68022984e-02 -1.68210238e-01\\n1.08764410e-01 -2.25887850e-01 -1.02291167e-01 -1.50993258e-01\\n2.05251634e-01 1.72239333e-01 5.04531920e-01 5.80869466e-02\\n7.53936470e-02 -1.64148331e-01 -1.98206425e-01 2.27361530e-01\\n2.38725513e-01 7.71717280e-02 -3.20064127e-02 1.33442372e-01\\n-1.87769115e-01 -1.63739294e-01 1.48616225e-01 2.12877229e-01\\n-4.14592385e-01 1.82784513e-01 -4.59128544e-02 2.10533783e-01\\n4.82537746e-02 1.78980842e-01 -1.49310291e-01 7.29679316e-02\\n-9.19225067e-02 -3.82822752e-01 1.59175247e-01 4.10398394e-02\\n-5.37545420e-02 6.67795166e-02 2.44416818e-01 1.56278715e-01\\n-3.75526816e-01 -1.17589928e-01 -3.56263891e-02 7.25727156e-02\\n7.34297633e-02 2.33798921e-01 -1.78920031e-01 -2.84998477e-01\\n-1.60907775e-01 1.63124755e-01 -1.81693763e-01 9.81738716e-02\\n4.39910591e-02 3.35243493e-01 4.85722870e-02 1.18394889e-01\\n2.44057685e-01 2.95635611e-02 -2.14248627e-01 -1.78363383e-01\\n-3.35088402e-01 -1.35779217e-01 -6.89581875e-03 -1.33991510e-01\\n2.15163946e-01 -2.76667833e-01 -3.22432965e-02 -2.22511459e-02\\n-9.53167826e-02 -2.80633450e-01 1.29376590e-01 -8.89542606e-03]]',\n", + " 'job_description': \"Start: As soon as possible Location: Zürich, Switzerland, 100% YOUR ROLE: Develop the back-end for our core technology, which allows us to build investment strategies and forecast models on different asset classes and sell products to our customers. Develop tools for our internal teams (sales, support, operations, finance) to more efficiently run the business, and work closely with our mobile and UI-focused team members to integrate their front-ends with our backend services. Continuously improve and maintain systems to ensure we have high performance, up-time, and strong security in place. WHAT WE OFFER: AI leader: we offer a position at the top of the food chain when it comes to artificial intelligence, especially deep and machine learning in financial services. Modern way of working: we use the latest technologies and offer lots time flexibility to individual team members (it matters ‘what’ you do not ‘when’ in the day). Beautiful office in Zürich, Switzerland: a large open space with a great view on river Limmat to work, interact and socialize with other team members - very close to the train station. International start-up atmosphere: the company languages German and English – our team and Investors are very diversified and work internationally from Switzerland to Germany, from Singapore to Boston. Work with direct impact: Exciting backend challenges to solve that will have very direct impact on our product. Very little red tape. If you like to get things done using the latest in tech rather than talking about it, you'll feel right at home. You work directly with the CTO and other decision makers in the team (very little hierarchy). Great place to work: we are a business with strong values & beliefs - a great, warm-hearted team is waiting for you. Great team: we are very selective – and only hire the best chess players, cyclists or e-sports champions! ;-) WHO YOU ARE: Python is your language: Backend software developer with broad back-end programming skills in Python (Python is really a MUST!) You will also shape the whole architecture of services and data stores that you will eventually own and you have deep and machine learning skills. The ideal degree: Computer Science or related field Innovation: You thrive in a collaborative environment for Innovation involving different stakeholders and subject matter experts. Some financial knowledge would be great. Curiosity is key: We like to learn new, fail fast and explore new territories - so do you? The answer is ‘yes’. Entrepreneurial and Team player: you want to tackle something and write your own story and you have an entrepreneurial team driven mindset - then you'll find a team of like-minded people. HOW YOU APPLY: Interested? Then please send your CV to careers@privatealpha.ch including a short motivation letter /E-mail why you are the person who should take on this role. THE PRIVATE ALPHA TECHNOLOGY TEAM & YOUR IMPACT Private Alpha is a start-up based in Meggen and Zurich, Switzerland. The company revolutionizes how asset management decisions are made. The company is a leader in AI for investments in Switzerland and Germany. As a team member of the technology team, you will work very directly with our CTO and our other teams (product, growth, sales, support, etc.) to improve the experience for our end-customers as well as for our internal users of our technology. WHO WE ARE, THE PRIVATE ALPHA COMPANY: Private Alpha is building the next generation of decision making in asset management based on our AI platform “Caesar”. The technology is a multi-staged combination of financial market indicators for ideal asset allocation while formulating new investment insights through the use of AI. Private Alpha is a founder-owned company with strong investors that has recently won the prestigious award of most innovative FinTech at the Finanzsymposium Alpbach. The company was founded in 2017 and has two mutual funds run under its name. Friendship, respect and ‘radical transparency’ are key elements of the company culture. More insights on our company and our team can be found on LinkedIn and of course on our website.\",\n", + " 'soft_skills': '[\"Decisiveness\", \"Collaboration\", \"Operations\", \"Integration\", \"Decision Making\", \"Innovation\", \"Socialization\", \"Curiosity\", \"Sales\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Tooling\", \"Operations Support Systems\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Machine Learning\", \"High Performance Computing\", \"Staging\", \"Mutual Fund\", \"Financial Services\", \"Open Space Technology\", \"Customer Development\", \"Python (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Investment Strategy\", \"Financial Market\", \"Investments\", \"Mobility\", \"Asset Classes\", \"Personalization\", \"Artificial Intelligence\", \"Transparency (Human-Computer Interaction)\", \"Asset Management\", \"Front End (Software Engineering)\", \"Indicators (Measuring Device)\", \"Back End (Software Engineering)\", \"Software Development\", \"Forecasting\", \"Operational Data Store\", \"Asset Allocation\", \"Custom Backend\", \"Food Chain\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'backend software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.68327808e-01 2.88997918e-01 6.06209219e-01 -1.18065082e-01\\n4.61353898e-01 -2.79566705e-01 7.50198439e-02 4.28451777e-01\\n-1.58580139e-01 -2.87194103e-01 -2.10660934e-01 -2.72109240e-01\\n-1.37108624e-01 9.40895546e-03 1.53204575e-01 2.60017008e-01\\n2.57712096e-01 1.21481925e-01 -1.62172824e-01 4.43335295e-01\\n2.33582944e-01 -1.39597714e-01 1.08493857e-01 6.06525242e-01\\n3.80916178e-01 9.60881822e-03 -1.27347082e-01 9.18973088e-02\\n-2.61318266e-01 -2.73511469e-01 3.99808526e-01 3.77342515e-02\\n-8.78955573e-02 -2.30336711e-01 1.55127779e-01 9.41094980e-02\\n-2.15945572e-01 -2.35115481e-03 4.33648527e-02 1.71556205e-01\\n-3.73487383e-01 -1.12922370e-01 1.63579941e-01 -1.36431656e-03\\n-2.41777763e-01 -3.52599442e-01 4.46980149e-02 6.44589067e-02\\n6.15909882e-02 7.36622438e-02 -4.74797219e-01 3.69488060e-01\\n-1.98842198e-01 -3.80044729e-01 3.65636736e-01 5.87664545e-01\\n-1.07382186e-01 -5.70897222e-01 -3.34469855e-01 -2.81527370e-01\\n8.64449367e-02 -1.29588485e-01 7.31378719e-02 -2.28471428e-01\\n4.44571137e-01 -8.72097537e-03 -3.77082662e-03 4.10772771e-01\\n-8.64040077e-01 5.08061936e-03 -1.70115456e-01 -3.21726575e-02\\n-3.73025209e-01 -2.57173367e-02 -3.23153585e-01 -1.73933387e-01\\n-8.27575624e-02 4.31260318e-01 7.22060800e-02 8.91933069e-02\\n-7.62688220e-02 2.19301626e-01 -2.03739002e-01 2.56991655e-01\\n3.01228940e-01 3.37567061e-01 1.31325901e-01 2.85300761e-01\\n-4.42526639e-01 3.93509746e-01 1.14144124e-01 -2.46793181e-01\\n1.89402610e-01 1.53402239e-01 4.70462143e-01 5.87971769e-02\\n1.15000069e-01 1.37756944e-01 -2.70295143e-01 2.40788281e-01\\n2.77749300e-01 -2.87898332e-01 -6.59379736e-03 9.61506274e-03\\n-6.64371327e-02 1.09183431e-01 2.55597420e-02 3.92554194e-01\\n-2.82758534e-01 5.14594257e-01 9.37813222e-02 -2.04922810e-01\\n-4.42726649e-02 -5.63912630e-01 -2.10898891e-01 1.54786989e-01\\n3.14938277e-02 2.44438633e-01 1.77832797e-01 2.39199728e-01\\n2.63069302e-01 1.63956717e-01 2.47681737e-01 9.33508754e-01\\n-2.59676725e-02 1.13026448e-01 -3.09538215e-01 4.57743257e-01\\n1.80468932e-01 -2.24663854e-01 1.55328155e-01 4.17303503e-01\\n2.02290535e-01 -1.13016382e-01 -2.17786938e-01 3.57313931e-01\\n-4.30432335e-02 -2.50421107e-01 -3.48022252e-01 9.58674997e-02\\n-1.98610812e-01 -5.66681921e-01 5.73545754e-01 -1.67847630e-02\\n1.51973382e-01 5.46261072e-02 1.22360587e-02 -1.52171645e-02\\n-1.41737074e-01 2.72479087e-01 5.89947775e-02 2.25164756e-01\\n-3.75803977e-01 -2.02913851e-01 -3.90461504e-01 2.86622733e-01\\n-2.25339010e-01 5.58157451e-02 -1.22700140e-01 -1.19432516e-01\\n3.21349621e-01 1.14045676e-03 -2.90985346e-01 2.45440900e-01\\n-1.39948502e-01 -1.41925737e-01 -5.24953268e-02 2.75240391e-01\\n-1.39101326e-01 1.77781016e-01 -8.11469629e-02 -2.61955261e-01\\n4.12588924e-01 1.84827298e-01 1.17103763e-01 -8.33474472e-02\\n4.63825166e-01 -5.35347536e-02 1.57370105e-01 3.18978094e-02\\n-7.63570845e-01 3.44249696e-01 -1.84003841e-02 -1.01598725e-01\\n5.98603301e-02 -2.29223520e-02 3.53295416e-01 -3.07866007e-01\\n3.61402892e-02 -1.64382547e-01 -3.99395585e-01 -1.81458369e-01\\n-2.37607017e-01 1.52610959e-02 4.95529443e-01 -4.28265035e-01\\n-1.83287010e-01 1.56793758e-01 -5.71393073e-01 1.24039918e-01\\n3.01369280e-01 1.85224459e-01 5.15987203e-02 9.95253175e-02\\n-1.59553856e-01 -5.89149356e-01 5.02219498e-02 -3.32661778e-01\\n-3.06385934e-01 1.68171793e-01 -2.94974059e-01 2.44996890e-01\\n8.30432549e-02 1.69385318e-03 -6.00557178e-02 7.01684654e-02\\n-9.94642675e-02 -1.44814000e-01 1.84070185e-01 4.44244742e-02\\n4.06670272e-01 -6.10865839e-03 -3.67002904e-01 5.32256365e-01\\n-2.31230214e-01 4.70968097e-01 1.21119067e-01 -9.13913667e-01\\n5.22341192e-01 3.22603881e-01 6.75142705e-02 -3.21495056e-01\\n7.45306611e-01 -2.73526639e-01 -4.15825248e-02 1.84918866e-01\\n-4.03890759e-01 -3.21176022e-01 1.39324412e-01 -1.42630279e-01\\n-2.66070247e-01 4.50370997e-01 1.34058818e-01 7.37231737e-03\\n3.57046634e-01 -2.25002587e-01 -8.83537531e-02 1.00415245e-01\\n-1.20597236e-01 -2.72231787e-01 -3.11556011e-01 9.88311768e-02\\n-4.80967686e-02 -5.74735761e-01 -1.63506225e-01 -4.42186207e-01\\n-2.02995673e-01 -3.68985444e-01 -2.82697052e-01 3.83587301e-01\\n9.35961008e-02 1.77720845e-01 -4.48016785e-02 -1.14523955e-01\\n-3.02070618e-01 -5.63760519e-01 -8.21181983e-02 7.09232837e-02\\n4.04101133e-01 1.59430340e-01 7.87272602e-02 -7.06966296e-02\\n-1.43905999e-02 5.67039073e-01 -1.78538799e-01 -2.01156989e-01\\n1.03219962e-02 1.79591447e-01 -1.26545932e-02 -8.27154890e-02\\n9.46710780e-02 4.18526053e-01 -2.12220341e-01 6.54221773e-02\\n-2.90187031e-01 5.00434488e-02 3.17655087e-01 -7.31947124e-02\\n-2.53063530e-01 -3.62677634e-01 -5.17979823e-02 1.88844219e-01\\n-5.51630557e-01 -2.16484249e-01 6.19187295e-01 9.02175829e-02\\n1.91296101e-01 1.82551846e-01 1.95665792e-01 -1.11417122e-01\\n-1.23006687e-01 -2.01893151e-01 1.74750775e-01 4.14525010e-02\\n7.01304823e-02 1.25836655e-01 -1.24822013e-01 -5.76592326e-01\\n-3.46865940e+00 -1.86945155e-01 1.36885941e-01 -3.78501296e-01\\n1.64032862e-01 -1.73046589e-01 3.60679775e-02 -1.51348785e-01\\n-2.05243349e-01 1.06528111e-01 -1.19571552e-01 -1.39325619e-01\\n1.66370466e-01 3.48478138e-01 1.78151652e-01 2.67233759e-01\\n1.61532760e-01 -2.29102060e-01 3.73738818e-02 3.41159791e-01\\n-1.52989179e-01 -6.02138638e-01 2.24274322e-01 -9.44571570e-02\\n2.64645666e-01 3.46599728e-01 -3.03624690e-01 -1.73201144e-01\\n-1.94857746e-01 -2.08534718e-01 6.43190295e-02 -1.88253388e-01\\n-6.87035099e-02 3.11124027e-01 1.22598618e-01 -1.60351135e-02\\n2.13391259e-01 -3.00468564e-01 -2.59814115e-04 -3.16053361e-01\\n1.40052095e-01 -6.29313767e-01 -8.58654156e-02 -1.25998989e-01\\n7.40383089e-01 -3.88225108e-01 1.16962701e-01 9.65248793e-02\\n9.27407071e-02 1.85301989e-01 -4.89689261e-02 -1.73253447e-01\\n-2.87009358e-01 -2.15564802e-01 8.88479427e-02 -2.06358761e-01\\n4.62702364e-01 6.47468269e-01 -1.78069368e-01 1.50283789e-02\\n3.95312309e-02 -3.35549891e-01 -5.12294292e-01 -4.56082255e-01\\n-2.45431900e-01 -1.82093188e-01 -6.96725547e-01 -5.55258930e-01\\n-3.84508669e-02 -9.40430537e-02 -7.71226361e-02 4.48249161e-01\\n-2.73056537e-01 -4.11426961e-01 -1.22927666e-01 -3.86893153e-01\\n1.19078316e-01 -8.72609988e-02 -7.04295486e-02 -1.32839546e-01\\n-1.78682536e-01 -4.74731982e-01 -8.42205528e-03 1.34627707e-02\\n-1.39610991e-01 -2.09434614e-01 1.83133125e-01 -2.64224648e-01\\n-3.54165941e-01 -5.46211302e-01 4.95102257e-01 5.61935827e-04\\n2.76502430e-01 1.29186332e-01 2.44543716e-01 1.62630409e-01\\n3.38046610e-01 -2.92971611e-01 2.87834853e-02 -4.07739133e-01\\n1.81251779e-01 5.90993054e-02 5.09459615e-01 -2.53139466e-01\\n9.79114920e-02 1.10175148e-01 -2.73484439e-01 -2.37962514e-01\\n3.29564631e-01 1.94693524e-02 6.30313829e-02 -2.45685250e-01\\n3.71804148e-01 -3.51171732e-01 -3.04073930e-01 1.71011895e-01\\n-1.19597446e-02 5.79581499e-01 -4.97663729e-02 -3.91280711e-01\\n-2.91612834e-01 4.82215077e-01 -1.86549217e-01 -6.92917109e-02\\n-1.74866185e-01 1.10460587e-01 -1.65665343e-01 3.84258151e-01\\n-6.41236687e-03 -1.13032922e-01 -3.11131388e-01 -5.22827245e-02\\n1.27433147e-02 2.64315963e-01 2.83614844e-01 6.88557401e-02\\n-4.31510955e-02 -3.79523844e-01 3.36594996e-03 9.08987448e-02\\n1.71203405e-01 2.27931410e-01 5.99666983e-02 -9.11394134e-02\\n-4.13663313e-02 3.33448201e-01 -2.20026270e-01 2.27947310e-01\\n-2.59243399e-01 3.54401097e-02 -4.98915434e-01 -3.44104648e-01\\n-2.07727909e-01 -2.24626243e-01 4.05816548e-02 2.32940614e-01\\n1.22448355e-01 7.42861629e-02 3.66267450e-02 -4.76045430e-01\\n3.12157840e-01 4.10615727e-02 3.38361561e-01 2.77562976e-01\\n-2.31675673e-02 4.29138869e-01 -1.35364961e-02 -8.54480565e-02\\n-2.12282464e-01 1.38602806e-02 -2.18544066e-01 -1.98667884e-01\\n7.59970695e-02 -4.86538589e-01 1.58778206e-02 4.04897124e-01\\n1.43267632e-01 -4.25572604e-01 -2.06929415e-01 1.45361155e-01\\n4.13133129e-02 -4.66165125e-01 -2.38365948e-01 7.03494325e-02\\n3.98678511e-01 1.63738370e-01 3.83017719e-01 -5.28811395e-01\\n-2.16578059e-02 7.78789893e-02 -9.66671631e-02 4.85743940e-01\\n1.40074072e-02 -3.56043950e-02 -1.16098508e-01 -2.68980265e-01\\n3.52431923e-01 -1.31707594e-01 -6.25412241e-02 -1.14546679e-01\\n1.59151182e-01 -1.16093598e-01 -3.21345627e-01 -7.24060610e-02\\n-2.99962200e-02 -1.40279800e-01 6.26468807e-02 5.38310818e-02\\n5.68054579e-02 1.20631941e-01 -4.90609497e-01 -3.43117833e-01\\n-2.93188334e-01 -1.92923650e-01 2.04099901e-03 -3.68119776e-01\\n-2.82553546e-02 7.39053860e-02 -5.17039776e-01 2.16564387e-01\\n-2.38065749e-01 -4.24684398e-02 2.04412535e-01 -3.07449717e-02\\n-4.33966905e-01 -1.19449779e-01 2.01248869e-01 2.08823383e-01\\n-2.88899869e-01 -2.27872744e-01 -8.65897462e-02 -9.95375931e-01\\n2.07183704e-01 -1.70551091e-02 -3.88392136e-02 5.66780455e-02\\n-8.11761171e-02 -4.90155816e-01 1.40106559e-01 -4.79933023e-01\\n-6.53837398e-02 2.07819324e-02 -1.68692857e-01 -3.99694532e-01\\n6.23343932e-03 6.13960139e-02 -3.30146134e-01 4.16458368e-01\\n-4.62131917e-01 2.92982429e-01 -3.81348655e-02 1.25258356e-01\\n-1.40487090e-01 -2.42994070e-01 1.00351505e-01 -4.23113972e-01\\n-4.12195861e-01 -1.01482287e-01 -2.52108037e-01 -1.20835088e-01\\n-4.47262861e-02 -2.43404090e-01 -1.44951731e-01 1.01637445e-01\\n3.04557949e-01 1.53311655e-01 -1.53362332e-02 -1.99366018e-01\\n1.31030425e-01 -3.91856879e-01 -2.24049501e-02 -2.53464848e-01\\n-5.28498031e-02 -1.07909217e-01 1.62510201e-01 6.31745681e-02\\n3.95297110e-02 -3.84163022e-01 2.95165330e-01 -1.97696134e-01\\n-2.48864457e-01 -1.03712184e-02 1.16109617e-01 2.02564187e-02\\n3.36526334e-01 -4.84454989e-01 -2.47405120e-03 3.22664708e-01\\n1.54902548e-01 9.77049917e-02 3.07357788e-01 -7.42007345e-02\\n-8.61361474e-02 2.75153965e-01 -3.72012407e-01 -1.54213300e-02\\n7.90158689e-01 1.73470184e-01 1.09216809e-01 2.08470672e-01\\n1.63767278e-01 3.89509976e-01 4.56749767e-01 2.80808657e-02\\n-2.77963243e-02 3.47490191e-01 3.17817219e-02 -6.14006042e-01\\n8.73947982e-03 6.17221259e-02 -3.00297469e-01 -2.08753690e-01\\n6.90516591e-01 4.45410132e-01 -3.21076304e-01 -2.46532977e-01\\n-1.38305962e-01 -1.94235414e-01 1.31659240e-01 -2.51473427e-01\\n2.91094538e-02 -1.74326658e-01 5.06649673e-01 1.69214997e-02\\n1.75738797e-01 5.18010497e-01 -2.36081511e-01 -3.63523573e-01\\n2.32048184e-02 2.06012785e-01 1.24282300e-01 4.55320984e-01\\n-1.63492396e-01 1.74027234e-01 -4.31713909e-02 1.62019923e-01\\n-6.00065850e-02 1.16881132e-01 1.82405740e-01 1.37424842e-01\\n1.83379784e-01 3.96294929e-02 3.13010871e-01 4.66241986e-01\\n3.08455944e-01 5.12843788e-01 2.86065012e-01 7.70760104e-02\\n4.68179137e-01 5.29082417e-01 4.15864348e-01 2.69772589e-01\\n-6.60016611e-02 8.09479654e-02 1.01443172e-01 -6.90962449e-02\\n3.38700712e-01 3.13004196e-01 1.12593584e-01 9.15974140e-01\\n4.22800362e-01 2.97852516e-01 7.88711488e-01 -5.73331118e-01\\n-4.46357489e-01 -7.02971518e-02 4.54125136e-01 -3.99061769e-01\\n-1.76951751e-01 5.58977276e-02 -2.73145676e-01 2.29593486e-01\\n-5.08739471e-01 -1.33746654e-01 -5.06053306e-02 -6.24685138e-02\\n1.64495438e-01 -2.70922966e-02 -2.58715540e-01 -1.45168319e-01\\n-2.07898974e-01 -7.99618810e-02 -4.58698660e-01 -9.63251367e-02\\n-1.43159389e-01 -1.44687548e-01 -1.64897352e-01 -1.56510562e-01\\n-6.37447760e-02 -4.32255685e-01 -2.01115564e-01 7.86937550e-02\\n2.78765082e-01 -1.47380814e-01 -4.93810736e-02 -2.05579594e-01\\n1.73270151e-01 2.42304444e-01 4.62734818e-01 -6.47141635e-02\\n1.79656878e-01 -1.53713629e-01 -1.60682648e-01 6.90017641e-02\\n1.88315809e-01 1.37117192e-01 1.17216818e-03 4.32948977e-01\\n-3.93562376e-01 -1.30646646e-01 -1.97206885e-02 3.85259926e-01\\n-4.18970197e-01 -3.13655138e-02 8.89051184e-02 3.05212379e-01\\n-8.58512428e-03 2.53908709e-02 -2.54325032e-01 7.50071406e-02\\n-2.62162000e-01 -5.42051136e-01 3.26056808e-01 -1.67049617e-01\\n-8.64984691e-02 1.32053167e-01 1.66498497e-01 1.09068498e-01\\n-1.96051463e-01 -7.97802955e-02 3.83930504e-02 1.55215353e-01\\n2.21985161e-01 2.43247643e-01 -2.31960833e-01 -3.08756441e-01\\n-3.19108069e-01 2.00245649e-01 -2.94405490e-01 1.67595819e-01\\n-1.00553609e-01 3.42696279e-01 1.54900625e-01 1.70761749e-01\\n2.93891668e-01 -3.86449806e-02 -1.86069071e-01 -2.65285492e-01\\n-2.76596814e-01 -3.12223881e-01 1.38605013e-01 1.16383269e-01\\n1.67722225e-01 -3.55169415e-01 -3.41846459e-02 -7.86806867e-02\\n-1.88007742e-01 -3.66304874e-01 -9.92920548e-02 -1.36310518e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Backend Software Engineer. The role is a permanent position based in Zürich Canton. Your Role: Design & implement code with focus on robustness, scalability, reliability & performance. Participate in DevOps strategy, including automation efforts, monitoring improvements & transition to microservices. Work together in small & motivated interdisciplinary teams & bring Machine Learning, Natural Language Processing & Chatbots to the cloud. Ensure high quality of software products with Unit, Integration & End-to-End Tests. Your Skills & Experience: Very good experience with one or more general purpose programming languages including but not limited to: Python, JavaScript, Java 8+ (Spring, Hibernate/JPA), Ruby or Go. Sound knowledge of relational databases (SQL). Good knowledge of micro-service & REST API architectures. An interest or understanding of at least one of the following: DevOps, Software Architecture, Machine Learning & Natural Language Processing, Business Intelligence & Data Warehouse- Your Profile: University Degree in Computer Science or equivalent practical experience. Enthusiastic to work within an Agile environment & with cutting edge technologies. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Positivity\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Data Warehouse Systems\", \"Automation\", \"KM Programming Language\", \"Agility\", \"Natural Language Processing\", \"Computer Science\", \"Machine Learning\", \"Hibernate (Java)\", \"Ruby (Programming Language)\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"SARS Software Products\", \"Limiter\", \"Microservices\", \"Java 8\", \"Software Engineering\", \"Business Intelligence\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Scalability\", \"Receivables\", \"Chatbot\", \"Relational Databases\", \"Application Programming Interface (API)\", \"Custom Backend\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Greek', 'Uzbek']\"},\n", + " {'company_id': '115',\n", + " 'job_title': 'software engineer iptiq emea l&h',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Agencies & Brokerages',\n", + " 'website': 'www.swissre.com',\n", + " 'jobdescription_embedded': '[[-0.16013445 0.22569531 0.6324923 0.0093284 0.5381161 -0.15063666\\n0.02804223 0.22192875 0.0804841 -0.5566739 -0.05377465 -0.22114146\\n-0.0635557 0.15569699 0.07420799 0.4024698 0.35071748 0.04559055\\n-0.17357785 0.36030537 -0.05258026 -0.13976526 0.17141452 0.8126224\\n0.39405257 -0.05420893 0.02658164 0.0669645 -0.18605134 -0.16940922\\n0.61019754 0.04421813 -0.26045662 -0.49868867 0.14402446 0.1133811\\n-0.3265548 -0.07206324 -0.19434878 0.1366287 -0.5640813 -0.20671928\\n-0.00484867 -0.11940594 -0.2566663 -0.4276902 -0.09391475 -0.12914988\\n0.21712852 0.09122949 -0.5167943 0.13234454 -0.43572438 -0.18555266\\n0.3473823 0.64281857 -0.01877485 -0.51746744 -0.58717346 -0.31216794\\n0.05296207 -0.14169925 0.04470246 -0.3586021 0.20672527 0.00513785\\n-0.06634439 0.32732528 -0.78683954 -0.10825328 -0.3622216 -0.12849367\\n-0.39812824 -0.13340186 -0.39907455 -0.10162166 -0.24909116 0.43582568\\n0.132881 0.05161656 -0.17402288 0.3722129 -0.34263194 0.48173034\\n0.28077042 0.26178318 0.2645293 0.407089 -0.39901644 0.60142374\\n0.28084603 -0.39879245 0.2519967 0.14626864 0.35663164 0.0199902\\n0.3638214 0.05232989 -0.21968359 0.35149288 0.37217534 -0.1669535\\n-0.05630765 -0.30762923 0.00977344 -0.01739726 0.05714284 0.09921033\\n-0.3436755 0.35215402 0.07392196 -0.2615611 -0.20392063 -0.38403392\\n-0.12568156 0.1104831 -0.03981927 0.130726 0.15037507 0.09968171\\n0.2939635 0.05092125 0.0480513 0.8383652 -0.06602217 -0.00972072\\n-0.3147748 0.41917026 0.09688261 -0.25703558 0.22176698 0.17896798\\n-0.21078846 -0.18107401 -0.29519355 0.42146087 0.00450771 -0.22707087\\n-0.27705064 0.23537846 0.02504312 -0.40808925 0.653803 0.00907745\\n0.17120449 -0.0867567 0.14699079 -0.06369095 -0.01400576 0.06371022\\n0.09028128 0.02925777 -0.15305611 -0.24966249 -0.2782688 0.15637854\\n-0.35522842 0.25771683 -0.20717666 -0.09271187 0.1781751 0.03062406\\n-0.2981939 0.18425421 -0.12160124 0.05446175 0.06502359 0.48255816\\n-0.21363288 0.08157681 0.05503492 -0.16622514 0.5736625 0.17721191\\n0.26463193 0.03931585 0.30628657 0.03197074 0.03622271 0.10854442\\n-0.77321416 0.3573644 -0.02368134 -0.09357305 0.06378625 -0.23908003\\n0.15491968 -0.2522272 -0.14073934 -0.09421994 -0.43916798 -0.2532613\\n-0.06951328 -0.21427104 0.3185327 -0.64268804 -0.06692332 0.20854887\\n-0.6760795 -0.16730264 0.15824308 0.30428874 0.03057984 0.09509704\\n-0.22778475 -0.49636096 0.06770271 -0.49541703 -0.30820942 0.12206858\\n-0.3004557 0.09221523 0.09849553 0.04281051 -0.10593906 0.01366595\\n-0.19553773 -0.03658759 0.09230068 0.01350832 0.24786624 0.12695242\\n-0.32523236 0.4795437 -0.21530142 0.48865807 0.06208376 -1.0141566\\n0.6021327 0.31790122 -0.06770398 -0.29719913 0.41510794 -0.3965518\\n-0.05750413 0.12294842 -0.3778852 -0.2775185 0.15396163 -0.28327\\n-0.24703422 0.34905678 -0.01761276 0.13682309 0.30852357 -0.21486424\\n-0.243568 -0.01676573 -0.14107007 -0.22038767 -0.7448733 -0.14908151\\n-0.12331474 -0.3887121 -0.12026404 -0.54146755 -0.1858001 -0.33976147\\n-0.25853744 0.09848069 0.16770257 0.0632818 -0.0815158 0.09296314\\n-0.09039203 -0.68518585 -0.06439137 0.1128249 0.22259352 0.18818715\\n0.11566081 0.06957845 0.07998963 0.66875434 -0.18705809 -0.1860685\\n0.24124813 0.28704306 0.00799356 -0.10846223 0.09541228 0.33870882\\n-0.3641743 -0.01941412 0.10707999 0.06003562 0.5392841 -0.07175145\\n-0.42407453 -0.01981154 -0.07469543 0.10141239 -0.64646316 -0.1165273\\n0.69823015 0.1545197 0.10505688 0.2405594 0.08883108 -0.03347543\\n-0.25282767 -0.19056109 0.4210915 0.12550277 0.14556864 0.18055618\\n0.05195802 -0.6311406 -3.081627 -0.1283467 0.11716287 -0.07776258\\n0.24527021 -0.20968121 0.13600793 -0.20074566 -0.31327087 0.01506016\\n-0.05316637 -0.17916 0.18526715 0.11917259 0.02193177 0.28071046\\n0.25740469 -0.1015265 0.05021273 0.26707208 -0.12241758 -0.81380516\\n0.1583159 0.00816396 0.17814791 0.05138441 -0.37223655 -0.13103151\\n-0.35106757 -0.10924783 0.07986216 -0.40065467 -0.08894084 0.13866593\\n0.22593346 -0.15557577 0.08142647 -0.42611378 -0.2775317 -0.53003216\\n0.20126998 -0.51322544 0.17369011 -0.09812284 0.61196804 -0.34422588\\n0.17633726 0.10492297 0.15324688 0.22975972 0.23025535 0.05007998\\n-0.24972597 -0.33091235 -0.1701434 -0.10267623 0.61977315 0.36141425\\n-0.10096284 0.10670355 0.05966059 -0.2331739 -0.5349126 -0.22021344\\n-0.04346237 -0.08657146 -0.6467296 -0.51393414 -0.24589428 -0.12970239\\n-0.08622187 0.6962105 -0.26699084 -0.20531073 -0.1463249 -0.5831491\\n0.4802823 -0.19844246 0.06776978 -0.29828995 -0.17425182 -0.5371694\\n0.13849473 0.04670556 0.02974892 -0.16454256 0.19963542 -0.02383537\\n-0.2708159 -0.5471761 0.3928965 0.2516849 0.3171095 0.12576966\\n0.24436723 -0.12214725 0.22957903 0.01402971 -0.21181291 -0.37168694\\n0.0811003 0.07606825 0.3674984 -0.05019451 -0.09716113 0.1549606\\n-0.2530123 -0.1372352 0.3550142 -0.14896688 0.10341606 -0.12537394\\n0.2873585 -0.23056783 -0.17599878 -0.0532253 0.06095642 0.6800467\\n0.06081703 -0.43761712 0.03754508 0.54194343 0.08056065 0.03575584\\n-0.23201953 0.04096289 -0.22721481 0.34851074 0.01121191 -0.22587857\\n-0.17866373 -0.19733056 -0.13480324 0.345998 0.21853667 0.12043013\\n0.02644263 -0.31951317 -0.14485547 0.24324805 0.19145188 0.54552203\\n0.24733266 -0.2751147 0.04460098 0.35668653 -0.21056437 0.23678058\\n-0.34104759 0.14459226 -0.5142007 -0.21468142 -0.2582834 -0.4393332\\n0.15578938 0.36023808 0.0912687 -0.15416221 0.0912361 -0.5028437\\n0.24647024 0.31486398 0.13142335 0.18981326 -0.01143549 0.82554036\\n-0.02524091 -0.2450667 -0.1700413 -0.01808267 -0.22026308 -0.19436356\\n0.0131777 -0.6058825 -0.08199731 0.39627188 0.10237826 -0.21943909\\n-0.23501423 0.32967526 -0.00364209 -0.12037507 -0.3365658 -0.04569908\\n0.43356857 0.04168545 0.27158183 -0.5670419 -0.01895915 -0.02852984\\n0.10061146 0.6469649 0.11711884 0.08525299 -0.16700143 -0.24209073\\n0.33992875 -0.11298209 -0.20078577 0.05365457 0.1889652 -0.05202819\\n-0.3996982 0.10855186 -0.1001902 -0.2913378 0.05911896 0.2432932\\n0.01971641 0.14239292 -0.6830838 -0.3055412 -0.25487846 0.16684622\\n-0.00665429 -0.59992397 -0.01541862 -0.14597997 -0.45903403 0.2310698\\n-0.04988953 -0.30240905 0.2864958 0.13950919 -0.3069916 -0.10557632\\n0.1367812 0.22697711 -0.30555403 -0.2837118 -0.11507441 -0.95683044\\n0.28167176 0.07258306 -0.25268692 0.27544135 -0.03730151 -0.7137953\\n0.10189239 -0.3025553 -0.20895764 0.0165339 -0.26404715 -0.36059865\\n0.06258297 -0.01737979 -0.15570256 0.43387073 -0.38439894 0.4781201\\n-0.2735098 0.0352231 0.02533549 -0.31223714 0.17834967 -0.43766588\\n-0.39671534 -0.2996428 -0.36842722 -0.34175605 -0.01124634 -0.44870952\\n-0.09127378 -0.06817497 0.56492937 0.13606751 -0.1400832 -0.19298841\\n0.0139726 -0.44665563 0.04117493 -0.14176124 -0.09738734 -0.19947115\\n0.21778451 0.13756384 0.28400087 -0.47293845 0.3367325 -0.33220202\\n-0.34243086 -0.23844784 0.09158944 0.2176717 0.36617756 -0.47864392\\n-0.01937048 0.28571653 0.17911117 -0.02081473 0.27840793 -0.17211673\\n-0.01493381 0.27509218 -0.30517408 0.24044263 0.6775731 0.08980174\\n0.2403217 0.27485448 0.26281542 0.29313517 0.42540127 -0.00516532\\n-0.03439115 0.28897023 0.12682307 -0.41001284 -0.069356 -0.0820428\\n-0.08815394 -0.38286322 0.7096766 0.40364543 -0.42673922 -0.11556775\\n-0.2956983 -0.3125646 0.13663779 -0.05662314 -0.10298808 0.05792071\\n0.38164866 -0.14711449 0.2562728 0.62503755 -0.36950028 -0.27002478\\n-0.16774127 0.30325148 -0.01144586 0.44140142 -0.2789078 0.40553102\\n0.09945858 0.13423295 -0.1858715 0.03612029 0.06808963 0.12924291\\n0.30012578 -0.06560097 0.4541993 0.4227412 0.32304925 0.38507473\\n0.34188455 0.08855829 0.5232739 0.6083925 0.44842845 0.11167987\\n0.10293694 0.07394881 0.15695551 0.03637059 0.2800699 0.5044471\\n0.01594558 0.8973056 0.32786474 0.29364562 0.6607263 -0.7320093\\n-0.3230073 -0.02565218 0.4902855 -0.41587403 0.1842958 0.23208293\\n-0.18154085 0.28503093 -0.37801886 -0.26306102 0.07145222 0.27663648\\n0.08543089 -0.19616826 -0.13253435 0.12097526 -0.2487054 -0.14608598\\n-0.36596775 -0.06776987 -0.29512188 -0.01710189 -0.04259263 -0.16281095\\n-0.04752951 -0.2427069 -0.0629724 -0.02904047 0.3292541 -0.11305804\\n-0.10725418 -0.09259688 0.2707351 0.03973428 0.5765066 0.05632727\\n0.07062726 -0.20020807 -0.19021964 0.15924925 0.16616696 0.10787661\\n0.02068041 0.32434893 -0.20018832 -0.23230952 0.27139422 0.28753123\\n-0.3172104 -0.02308438 -0.21542422 0.12829441 -0.02174878 0.22059989\\n-0.22172804 -0.11814848 -0.10398397 -0.50562686 0.39507186 -0.29421997\\n-0.15330392 -0.08005292 0.29164767 0.3118668 -0.28548992 0.05173009\\n-0.06569502 0.08745544 0.13454048 0.24019808 -0.24229437 -0.16081002\\n-0.23639451 0.13946804 -0.12286778 0.21028614 0.19049786 0.39571697\\n0.22189674 0.0309509 0.40308183 -0.05175998 -0.22418468 -0.18241107\\n-0.27678344 -0.04288498 -0.08565736 -0.15285426 0.18129054 -0.36927295\\n-0.1356483 -0.233388 -0.0831958 -0.41842946 -0.08858338 -0.03124702]]',\n", + " 'job_description': 'About iptiQ

Become a part of a growing and dynamic entrepreneurial team within the established Swiss Re Group. iptiQ is a start-up unit, established to provide innovative protection solutions directly to consumers. Our team delivers the coordination, infrastructure and competences that are key to driving forward this new business; working closely with our partners and clients. Our mission is to reduce the protection gap by simplifying life insurance and making it more accessible to people. Our motto is \"now life is easier for everyone\". For us this means making life insurance easier to sell, to buy and to trust. About the Role You will join a team of software engineers for the technology platform within the iptiQ EMEA Technology & Operations department. This is a rare opportunity to join a new business unit within an established company; combining the dynamic spirit of a startup with the backing of Swiss Re\\'s strong organisation. As a software engineer, you will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a distributed infrastructure by designing, implementing and testing simple, scalable, reliable and configurable solutions. Your responsibilities include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability Optimise applications and components to maximize configurability, speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications End-to-end responsibility on the applications implemented, including automated testing, monitoring, identifying issues or bottlenecks and delivering improvements of the platform We are looking forward to working with you as a software engineer. You will report directly to the Head of Digital Innovation of iptiQ EMEA. About the Team iptiQ is a unit within the newly built Swiss Re Life Capital; established to deliver white-label life insurance solutions to be sold through partners, directly to consumers. iptiQ is young, motivated and technology driven team, organised to provide creative solutions for life insurance distributors across Europe that engage with consumers in non-traditional ways. Through our strong operational infrastructure, creative thinking, insurance know-how and ecommerce competences we want to drive the digitalization of the life insurance business in Europe. About you Qualifications: Proven software development capabilities, i.e. 5+ years hands-on experience as a full-stack developer. Experienced in the following languages and frameworks: Mandatory: Enterprise Java Desirable: JavaScript, TypeScript, Docker, React Optional: Camunda, Kafka, RestAssured, WireMock, OpenShift, AWS Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality over time You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience in the design of data-models for relational and NoSQL data stores Experience in test-drive-development (TDD) and in the automated testing of APIs and user interfaces About you: Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Open to pair programming and XP techniques Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long-term vision the adoption of new technologies Master’s degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re',\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Leadership\", \"Coordinating\", \"Collaboration\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Camunda\", \"Performance Improvement\", \"OpenShift\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Accessioning\", \"Computer Science\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Automated Testing Framework\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"TypeScript\", \"Scale (Map)\", \"New Business Development\", \"Wiremock\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Test Automation\", \"Library\", \"Iterators\", \"Software Engineering\", \"Micro Channel Architecture\", \"React.js\", \"Message Passing\", \"Docker (Software)\", \"Concurrent Versions System (Software)\", \"Business Process\", \"Life Insurance Sales\", \"Equalization\", \"Digitization\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Scalability\", \"Information Technology Operations\", \"White Labelling\", \"Software Development\", \"Algorithms\", \"Java Enterprise Edition\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Pair Programming\", \"User Interface\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Kazakh']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Chiasso',\n", + " 'industry': 'Film Production & Distribution',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.49113762e-02 2.25809559e-01 4.35572803e-01 5.77770174e-04\\n4.61737454e-01 -1.15751214e-01 1.21711008e-01 2.72541702e-01\\n2.24733315e-02 -4.34859872e-01 -1.28242224e-01 -2.39422381e-01\\n-1.68810505e-02 3.28723341e-04 5.52006848e-02 3.64305705e-01\\n2.49415517e-01 -3.55191417e-02 -1.98698819e-01 4.39852417e-01\\n1.53827161e-01 -5.48881926e-02 6.41000420e-02 7.02970088e-01\\n4.44946140e-01 3.81440297e-03 -1.94675773e-02 -5.98828457e-02\\n-2.06658423e-01 -3.26164782e-01 3.83245587e-01 -3.83081101e-02\\n3.06007117e-02 -3.34446728e-01 5.10303415e-02 2.15339847e-02\\n-1.34959370e-01 -8.62915814e-03 5.92968008e-03 1.24371067e-01\\n-4.02711272e-01 -1.14270061e-01 2.60383897e-02 2.62732059e-02\\n-1.95927069e-01 -3.17969322e-01 1.19843021e-01 -1.03730440e-01\\n1.49330661e-01 -1.06803805e-01 -4.42810416e-01 3.63990217e-01\\n-1.89340264e-01 -2.42581278e-01 3.55360746e-01 6.60886228e-01\\n4.20951247e-02 -5.13620317e-01 -5.33503652e-01 -2.86360204e-01\\n1.74719393e-02 -3.64855938e-02 4.38041985e-04 -8.82946923e-02\\n2.44203359e-01 1.44442469e-02 5.32935262e-02 2.75131881e-01\\n-6.65630937e-01 -2.91808993e-02 -2.26767689e-01 1.15828663e-02\\n-3.21959376e-01 -1.46487892e-01 -3.14660132e-01 -9.55613106e-02\\n8.68744776e-03 5.01364231e-01 1.11725636e-01 -1.84947625e-02\\n-2.18013644e-01 1.40736446e-01 -2.99022257e-01 2.11689875e-01\\n2.16919363e-01 1.06588259e-01 3.16890299e-01 3.55043054e-01\\n-4.21436667e-01 4.22536284e-01 1.31850958e-01 -3.90472859e-01\\n2.82573819e-01 7.71765932e-02 5.00961959e-01 1.44945860e-01\\n9.74948704e-02 2.24601209e-01 -1.52598724e-01 2.50848740e-01\\n2.14889914e-01 -1.24983229e-01 -1.33175582e-01 -6.33741617e-02\\n1.06601194e-02 -9.46538374e-02 1.21469572e-02 1.29542530e-01\\n-3.45732450e-01 5.21431923e-01 1.60915524e-01 -2.43679747e-01\\n-5.60138375e-02 -4.30148542e-01 -1.11420490e-01 -1.71810776e-01\\n-3.14691514e-02 1.88544199e-01 1.05323270e-01 1.74692079e-01\\n9.70947146e-02 3.54553796e-02 1.00991711e-01 8.79508972e-01\\n-8.60355049e-02 9.39842612e-02 -2.68965542e-01 2.48763591e-01\\n9.68818814e-02 -3.28381419e-01 2.47085363e-01 1.55388147e-01\\n-1.08907104e-01 -8.28243792e-02 -2.35764116e-01 2.67831296e-01\\n-1.44738585e-01 -2.24609554e-01 -2.49967963e-01 1.76568449e-01\\n-1.12158895e-01 -3.43233347e-01 5.18296778e-01 7.64077604e-02\\n3.52042690e-02 -3.44098695e-02 -1.16150431e-01 -1.16001487e-01\\n-1.41178221e-01 1.77253783e-01 8.10268223e-02 1.36628643e-01\\n-3.01983804e-01 -2.97192603e-01 -2.35803023e-01 2.28848696e-01\\n-3.67536306e-01 4.50374894e-02 -2.38668382e-01 -1.39512360e-01\\n3.56663883e-01 9.07185376e-02 -4.07724857e-01 3.12865317e-01\\n5.74905202e-02 4.70938534e-02 -1.24317057e-01 2.79781878e-01\\n-1.42416835e-01 2.52542287e-01 -3.71186770e-02 -1.94411017e-02\\n6.94741905e-01 2.09489167e-01 1.29594117e-01 -3.92291769e-02\\n3.45826924e-01 -5.17290533e-02 1.67313755e-01 1.00875601e-01\\n-5.82794666e-01 2.33127907e-01 -1.14827201e-01 -8.66967663e-02\\n2.05891401e-01 -1.45047933e-01 1.63398176e-01 -3.17783028e-01\\n3.17019448e-02 -1.42058916e-02 -3.56613219e-01 -3.54514271e-01\\n-2.14240044e-01 -5.12485579e-03 3.91557634e-01 -3.10413003e-01\\n-3.65303904e-02 2.27096468e-01 -5.34308851e-01 -8.00540224e-02\\n3.34767401e-01 2.21091449e-01 2.02621326e-01 2.05701560e-01\\n-8.30954760e-02 -4.48688388e-01 8.27258080e-02 -4.26472545e-01\\n-2.97475040e-01 1.91812918e-01 -2.96631396e-01 2.42648154e-01\\n5.80460578e-02 -7.83631019e-03 -1.99615732e-01 9.86563191e-02\\n-1.40382260e-01 -1.23158604e-01 1.27111197e-01 2.30110250e-02\\n2.11109638e-01 1.76399082e-01 -3.93578559e-01 4.60187674e-01\\n-1.89712286e-01 4.37685668e-01 6.28916472e-02 -9.21872675e-01\\n5.21513224e-01 2.17979237e-01 -7.52495006e-02 -3.45027626e-01\\n4.56723154e-01 -2.57734627e-01 1.63933545e-01 1.15954436e-01\\n-3.11615258e-01 -3.03101450e-01 2.58042991e-01 -1.96891814e-01\\n-2.56974429e-01 5.11971831e-01 9.73193720e-02 1.19868398e-01\\n2.01596111e-01 -6.75798133e-02 -1.99971706e-01 1.41404033e-01\\n-6.87638000e-02 -1.37844145e-01 -5.20411491e-01 6.49190992e-02\\n-1.26504034e-01 -4.34375584e-01 -1.49221152e-01 -5.30810833e-01\\n-2.86877632e-01 -4.51384693e-01 -2.03154951e-01 2.14078099e-01\\n2.02273667e-01 2.07759708e-01 -1.37022376e-01 1.74408630e-02\\n-4.33533043e-02 -6.43820584e-01 2.66052783e-04 1.38769835e-01\\n3.90707433e-01 1.71877787e-01 5.17912284e-02 -4.14657481e-02\\n-6.89766333e-02 5.37056029e-01 -4.73360270e-01 -1.10061362e-01\\n2.01019764e-01 1.40829697e-01 5.74577823e-02 -2.53187567e-01\\n-4.98538837e-04 1.91970825e-01 -2.54619628e-01 1.69565856e-01\\n1.08665768e-02 -5.59319928e-02 2.97970414e-01 -1.75266229e-02\\n-3.90742362e-01 -2.27305368e-01 -2.38285605e-02 2.65093952e-01\\n-5.96930027e-01 -2.05497846e-01 7.31360674e-01 9.60297287e-02\\n8.84768963e-02 1.26899272e-01 3.12753797e-01 -9.50303078e-02\\n-1.92081451e-01 -1.92622229e-01 3.06027532e-01 1.69365734e-01\\n1.79745793e-01 6.47982806e-02 -1.68590397e-01 -7.25288272e-01\\n-3.46152663e+00 -1.55546024e-01 1.82604253e-01 -2.23889008e-01\\n1.83801726e-01 -1.25249147e-01 1.05760351e-01 -1.12668902e-01\\n-2.90277541e-01 5.31129874e-02 -3.47990870e-01 -1.81026421e-02\\n1.59646228e-01 3.37478578e-01 1.34105623e-01 2.09645480e-01\\n1.65201381e-01 -1.81944236e-01 -3.63935530e-03 2.83455253e-01\\n-2.59377748e-01 -5.91504335e-01 2.39498436e-01 3.98090482e-02\\n2.67119288e-01 2.49517247e-01 -3.90929699e-01 -9.36735719e-02\\n-1.57730058e-01 -1.91653967e-01 7.42151886e-02 -1.83659077e-01\\n-1.23045631e-01 3.65723312e-01 2.33973533e-01 -2.31821220e-02\\n7.67990053e-02 -4.82322723e-01 -4.33679000e-02 -3.39384437e-01\\n6.60354793e-02 -7.26410568e-01 1.40737295e-02 -1.21863455e-01\\n5.78427315e-01 -1.72003657e-01 1.62750229e-01 5.86128458e-02\\n2.16893733e-01 1.30257979e-01 -4.09711711e-03 7.54161030e-02\\n-1.99047506e-01 -1.65934324e-01 -8.92325938e-02 -3.65489796e-02\\n5.72809815e-01 4.95695353e-01 -2.42709056e-01 -1.65264606e-01\\n-9.69658121e-02 -2.91380525e-01 -4.98110622e-01 -2.73972780e-01\\n-2.14730710e-01 -2.21536875e-01 -7.30839133e-01 -3.95480394e-01\\n-2.23783702e-01 -1.14699796e-01 -2.15485588e-01 7.08717704e-01\\n-2.62600660e-01 -3.26202422e-01 -2.64388956e-02 -3.33169609e-01\\n5.83702251e-02 -1.07271090e-01 7.04472363e-02 -7.07824975e-02\\n-2.12862179e-01 -3.90626848e-01 1.66928858e-01 2.47192271e-02\\n-2.51512259e-01 -2.63897955e-01 1.59211457e-01 -5.15863709e-02\\n-2.61391819e-01 -4.26261932e-01 4.04754102e-01 1.03886813e-01\\n1.99834660e-01 -1.97163876e-02 3.99401635e-01 1.66104138e-02\\n2.89314866e-01 -1.76774234e-01 4.02138978e-02 -4.06390846e-01\\n1.22198008e-01 1.84565075e-02 6.82155609e-01 -2.07949728e-01\\n1.23464838e-01 8.10787007e-02 -3.17939132e-01 -2.62195896e-02\\n3.82545412e-01 -5.99236898e-02 3.49111445e-02 -2.26549864e-01\\n2.64004827e-01 -3.17264974e-01 -2.77918071e-01 6.80610631e-03\\n1.00186206e-01 7.19029963e-01 -2.46658958e-02 -4.64920759e-01\\n-2.56991148e-01 3.69181335e-01 -6.83801100e-02 -1.75895885e-01\\n-2.06528798e-01 1.28168672e-01 -2.89696753e-01 8.35099071e-02\\n1.01251557e-01 3.91453505e-04 -2.88101792e-01 -1.12076893e-01\\n-1.23720698e-01 2.67035365e-01 2.51824737e-01 2.11991258e-02\\n-3.92286293e-02 -4.28929627e-01 -5.78403994e-02 2.19259977e-01\\n8.26181471e-02 2.74936169e-01 1.37484312e-01 -2.99289256e-01\\n-4.87832613e-02 2.73431093e-01 -1.69514373e-01 1.27810374e-01\\n-2.40944475e-01 1.31605998e-01 -5.18564880e-01 -3.14465463e-01\\n-3.06264400e-01 -3.74721795e-01 2.05584057e-02 4.08720046e-01\\n6.88058957e-02 -3.14771011e-02 3.06842830e-02 -4.21326667e-01\\n2.70342886e-01 -3.67282070e-02 2.62333751e-01 9.52514336e-02\\n1.23665944e-01 5.83797753e-01 -8.50426406e-03 -2.21412688e-01\\n-8.87182653e-02 -1.71836931e-04 -3.07975680e-01 -1.20137542e-01\\n3.87229770e-02 -4.21077192e-01 -4.35593203e-02 4.11308706e-01\\n1.95795849e-01 -2.18307391e-01 -1.24449864e-01 2.47268081e-01\\n-6.49782121e-02 -3.23171020e-01 -2.03858018e-01 -1.23279080e-01\\n4.03922737e-01 -4.11291867e-02 3.07485700e-01 -4.31482524e-01\\n9.91183706e-03 -1.38714194e-01 -9.88192260e-02 4.85061347e-01\\n1.04926020e-01 1.08190238e-01 -7.85610005e-02 -2.12684087e-03\\n5.47457218e-01 -1.11562535e-02 -7.78115466e-02 4.22950946e-02\\n1.17879659e-01 -2.26505905e-01 -5.58343053e-01 8.58392566e-02\\n9.34343133e-03 -1.53606474e-01 2.00214032e-02 1.43296897e-01\\n9.62457284e-02 2.45285481e-02 -5.87873459e-01 -2.78815746e-01\\n-3.87847960e-01 -5.88585921e-02 9.36212242e-02 -6.67056322e-01\\n-1.19546682e-01 1.59116331e-02 -5.41291773e-01 2.90991068e-01\\n-1.33855522e-01 -8.22847560e-02 1.17895097e-01 3.16627473e-02\\n-2.70731509e-01 -1.71020001e-01 1.36903763e-01 8.52297693e-02\\n-2.96634585e-01 -1.34892449e-01 1.68764099e-01 -9.38175440e-01\\n2.07491785e-01 1.44135915e-02 -1.51175693e-01 4.41511609e-02\\n-9.38320532e-02 -6.61740720e-01 2.03051120e-01 -3.99923474e-01\\n-8.19095448e-02 -3.58373672e-03 -2.10438713e-01 -4.30373728e-01\\n5.29158339e-02 -1.04155213e-01 -3.52182567e-01 3.59753549e-01\\n-3.14473391e-01 3.47001702e-01 5.95577285e-02 1.21746823e-01\\n1.10632122e-01 -2.99949408e-01 -1.42693799e-02 -4.20880616e-01\\n-5.30931950e-01 -9.65519175e-02 -2.84130722e-01 -1.11856796e-01\\n6.83050901e-02 -3.42622638e-01 -1.54158682e-01 7.33633935e-02\\n3.13072324e-01 1.42792270e-01 -6.34566471e-02 -2.89023340e-01\\n-5.87716699e-02 -5.18379569e-01 4.92795631e-02 4.93704528e-03\\n-1.91200506e-02 -8.69298950e-02 3.79038393e-01 7.09760785e-02\\n1.81711465e-01 -3.60419035e-01 5.60872674e-01 -3.34105998e-01\\n-2.89579809e-01 -7.89756998e-02 -4.65806276e-02 1.65632874e-01\\n3.45170736e-01 -4.48269844e-01 -9.34465881e-03 3.32729071e-01\\n1.56000644e-01 8.05622637e-02 3.54043365e-01 -1.50596559e-01\\n-1.24718353e-01 2.13257447e-01 -3.53846163e-01 1.96341425e-01\\n7.22616732e-01 -4.29451428e-02 6.69564232e-02 1.24142379e-01\\n7.99880549e-02 2.46518299e-01 5.89167237e-01 -1.22367740e-01\\n-1.72826484e-01 4.14311409e-01 7.43979067e-02 -6.05821133e-01\\n-1.24811575e-01 -1.88255161e-02 -8.50793868e-02 -2.91561306e-01\\n5.99032104e-01 3.71947706e-01 -3.35168898e-01 -2.24807799e-01\\n-1.27652794e-01 -1.63496673e-01 6.00381829e-02 2.08037868e-02\\n1.22432470e-01 3.38933468e-02 5.57466626e-01 -5.04856482e-02\\n1.77082866e-01 4.67105746e-01 -1.21727169e-01 -3.82690072e-01\\n-1.04550198e-01 1.67632848e-01 7.77603239e-02 4.02920395e-01\\n-1.32308692e-01 2.08966002e-01 9.45289582e-02 6.91292360e-02\\n-5.93440309e-02 -4.31737378e-02 9.49291065e-02 1.02117039e-01\\n1.08671270e-01 1.12267599e-01 5.06119668e-01 4.51601952e-01\\n4.21046644e-01 4.56188470e-01 2.97055185e-01 3.95316929e-02\\n5.92457056e-01 7.16416538e-01 3.15798342e-01 1.54960006e-01\\n-7.67525136e-02 4.46541160e-02 1.15493819e-01 -1.43792816e-02\\n4.13044751e-01 4.23596621e-01 9.67985913e-02 7.46523321e-01\\n4.25756931e-01 2.76604116e-01 5.55792451e-01 -6.48511171e-01\\n-3.47402215e-01 1.10264093e-01 5.07477283e-01 -2.12123364e-01\\n6.58451170e-02 1.86530322e-01 -7.30625242e-02 6.47648647e-02\\n-4.63651180e-01 -3.84337783e-01 -3.23074274e-02 -3.99322063e-03\\n1.16976634e-01 -1.60842150e-01 -2.59224355e-01 1.41552404e-01\\n-5.65461032e-02 -1.25368714e-01 -4.64714885e-01 -4.64317724e-02\\n-2.27404356e-01 -3.03152781e-02 -1.20108061e-01 -9.98287946e-02\\n-6.73717186e-02 -2.99113870e-01 -2.28377730e-01 1.04130106e-03\\n1.92984179e-01 -1.61319077e-01 -1.46177843e-01 -1.58860222e-01\\n2.20492631e-01 1.84427351e-01 5.91194868e-01 -1.21135972e-01\\n8.69734287e-02 -3.85303974e-01 -2.26724938e-01 1.42835662e-01\\n2.50737309e-01 5.09545542e-02 2.62620207e-02 4.52395678e-01\\n-3.74933362e-01 -1.22513033e-01 1.28318444e-01 3.42838019e-01\\n-3.99582028e-01 -1.26500465e-02 -1.52608559e-01 1.36314109e-01\\n1.34025410e-01 1.66410446e-01 -1.25721425e-01 -1.19099826e-01\\n-1.30834758e-01 -5.27086854e-01 2.98909128e-01 -3.64877358e-02\\n-1.23877816e-01 -4.77618724e-03 1.81524813e-01 1.78562135e-01\\n-2.70299673e-01 -2.14739833e-02 -1.66518360e-01 1.52228400e-01\\n1.69387404e-02 2.93833613e-01 -3.09932679e-01 -2.03564212e-01\\n-1.72245994e-01 2.20776394e-01 -6.66820481e-02 1.40829548e-01\\n-1.72022656e-02 3.55600417e-01 1.93950996e-01 1.63458973e-01\\n4.38086212e-01 1.02202877e-01 -1.20563470e-01 -1.33919522e-01\\n-3.05767685e-01 -2.27477521e-01 -1.80692822e-02 -6.03313372e-03\\n1.59319818e-01 -3.35456908e-01 -1.29765067e-02 -1.49638087e-01\\n-2.90399879e-01 -2.81302482e-01 -1.15495041e-01 2.28939857e-03]]',\n", + " 'job_description': 'Job Description We are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you don’t feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios You’ll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! Blog: https://technology.lastminute.com/ Twitter: https://twitter.com/lastminute_tech/ Qualifications null Additional Information null',\n", + " 'soft_skills': '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Job Descriptions\", \"Vert.x\", \"Extreme Programming\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '70',\n", + " 'job_title': 'blockchain engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.68468460e-01 1.95393801e-01 4.78372335e-01 6.75854832e-02\\n4.87819761e-01 -2.82376140e-01 -2.54423451e-02 3.55114311e-01\\n-4.72318605e-02 -4.13300365e-01 1.08802542e-02 -2.17324018e-01\\n-8.63056108e-02 1.96554944e-01 1.50316522e-01 2.86524832e-01\\n2.80053586e-01 1.19370423e-01 -2.13149682e-01 3.43104661e-01\\n1.08419441e-01 -1.43764347e-01 8.43892172e-02 7.31656373e-01\\n5.02883852e-01 1.18845157e-01 -8.51071849e-02 -6.51941374e-02\\n-2.00312302e-01 -1.17461666e-01 4.12943602e-01 -5.08855991e-02\\n1.39200501e-02 -4.22871172e-01 8.63478854e-02 8.00476968e-02\\n-2.75455445e-01 -3.40935774e-02 -1.72808006e-01 6.71390668e-02\\n-5.16399801e-01 -2.47503713e-01 6.95148483e-02 1.02146737e-01\\n-2.13476911e-01 -3.08765799e-01 -1.20800585e-02 -1.02312997e-01\\n2.01180547e-01 -1.14113867e-01 -5.64438999e-01 2.59424984e-01\\n-3.22751343e-01 -2.16957435e-01 3.38575631e-01 5.00837743e-01\\n4.50727064e-03 -5.11066973e-01 -5.08156300e-01 -3.34673554e-01\\n3.30006294e-02 -1.46670029e-01 7.78580038e-03 -4.02091473e-01\\n1.60111576e-01 6.53976947e-02 2.23203283e-02 3.62454116e-01\\n-8.19269180e-01 -2.16271039e-02 -1.65190935e-01 -8.58361796e-02\\n-2.21615225e-01 -1.38777211e-01 -4.41558629e-01 -7.51838610e-02\\n-1.93957537e-01 3.55459452e-01 2.50686556e-02 9.97776389e-02\\n-1.84704602e-01 2.92569965e-01 -2.09179953e-01 5.54519832e-01\\n1.63094535e-01 1.71547756e-01 2.99889207e-01 3.01817238e-01\\n-4.17024523e-01 5.24201453e-01 1.23840585e-01 -2.44275928e-01\\n2.06258327e-01 1.25662357e-01 4.22664255e-01 -8.36619176e-03\\n2.46818751e-01 5.20144776e-02 -2.67222583e-01 2.46677428e-01\\n2.78042644e-01 -2.61716634e-01 -8.61731172e-03 -2.30660141e-01\\n3.63985822e-02 1.24001391e-02 3.13709229e-02 1.80315226e-01\\n-1.92323804e-01 3.92479241e-01 2.65232980e-01 -1.30896226e-01\\n-1.37121320e-01 -3.56515795e-01 -8.72644968e-03 1.14346676e-01\\n-6.79602940e-03 1.68162644e-01 1.66851059e-01 1.06791712e-01\\n1.98243946e-01 1.72827840e-02 1.67909209e-02 7.68485010e-01\\n-1.80048585e-01 1.87098558e-04 -3.54871064e-01 2.75915623e-01\\n1.04191199e-01 -2.87925333e-01 1.62882894e-01 2.11060390e-01\\n-8.03618599e-03 -1.44614473e-01 -2.52845973e-01 3.23427349e-01\\n-5.77862859e-02 -1.90861061e-01 -3.16779524e-01 1.63235545e-01\\n-4.22011986e-02 -4.35643405e-01 6.77681088e-01 1.72786817e-01\\n1.70842141e-01 4.74997424e-02 9.18760970e-02 -1.04974009e-01\\n-1.21745706e-01 2.43502468e-01 1.68498661e-02 1.42088905e-01\\n-2.97266066e-01 -2.48426914e-01 -2.20340118e-01 5.31079359e-02\\n-3.53875995e-01 1.63790390e-01 -4.93040793e-02 -5.10825180e-02\\n2.07125947e-01 2.91259754e-02 -2.09692597e-01 2.98948228e-01\\n-4.38979305e-02 7.54645932e-03 5.21159805e-02 3.19464803e-01\\n-1.56767979e-01 2.43637636e-01 -3.64555307e-02 -4.13924642e-02\\n6.12645805e-01 1.75754026e-01 2.14743182e-01 -6.57452270e-02\\n2.77105480e-01 -3.88757735e-02 1.49376586e-01 3.11876778e-02\\n-6.45414054e-01 2.59329230e-01 5.70899993e-02 -1.21646412e-01\\n1.19097285e-01 -2.98014693e-02 1.75929904e-01 -3.05881202e-01\\n-2.00935407e-04 -1.84454009e-01 -2.73383349e-01 -2.74596423e-01\\n-2.00708032e-01 -1.27511369e-02 3.98670256e-01 -3.94281983e-01\\n-2.26214174e-02 2.51627117e-01 -4.86678213e-01 -8.65713507e-02\\n2.12565795e-01 1.01392210e-01 6.82993084e-02 1.20017014e-01\\n-1.50982037e-01 -4.38944727e-01 1.46156415e-01 -3.56577694e-01\\n-3.26340854e-01 -3.60354297e-02 -3.87990326e-01 2.26337209e-01\\n8.21759552e-02 -1.03959262e-01 -6.09193295e-02 1.40267029e-01\\n-1.43070221e-01 -6.58371001e-02 8.95720348e-02 -2.09132116e-02\\n4.23394650e-01 9.02603641e-02 -3.58470291e-01 4.84389424e-01\\n-2.22347751e-01 6.42471850e-01 1.22036740e-01 -8.54788780e-01\\n4.86847222e-01 4.51029271e-01 -2.22205501e-02 -4.25716311e-01\\n4.57362264e-01 -3.08423281e-01 -8.47894475e-02 9.03135762e-02\\n-4.43624824e-01 -4.21901405e-01 1.91134706e-01 -2.32254505e-01\\n-2.03272209e-01 4.67373133e-01 -2.38604899e-02 8.68854448e-02\\n2.02216119e-01 -2.87575275e-01 -8.46838579e-02 1.26395568e-01\\n-3.71113792e-03 -2.67661542e-01 -4.99800414e-01 -1.36312723e-01\\n-1.33690327e-01 -4.62134868e-01 -6.19769655e-02 -4.29999679e-01\\n-2.10538030e-01 -3.86619866e-01 -3.01822841e-01 9.19876099e-02\\n3.20785791e-01 1.02381416e-01 -3.63909230e-02 8.68297368e-02\\n-9.50479656e-02 -5.93751550e-01 4.63519432e-02 1.04387574e-01\\n5.26489019e-01 2.06089199e-01 1.50072441e-01 5.47099113e-02\\n5.22938147e-02 6.47151351e-01 -2.19208062e-01 -1.75553992e-01\\n1.53151587e-01 1.64307430e-01 7.20725507e-02 -2.12647468e-01\\n1.11584969e-01 4.12869960e-01 -4.19233263e-01 2.04858575e-02\\n-5.99975586e-02 1.84085835e-02 4.28330779e-01 1.48830870e-02\\n-3.37903947e-01 -2.15078473e-01 -9.55346897e-02 1.69807807e-01\\n-5.44620335e-01 -2.22011834e-01 5.47935486e-01 2.34720781e-01\\n1.78123236e-01 1.63674012e-01 1.93995818e-01 4.80238460e-02\\n-2.29804918e-01 -1.87871486e-01 1.75484166e-01 4.52531390e-02\\n9.24961567e-02 1.30912811e-01 -2.06056125e-02 -5.81556797e-01\\n-3.30706358e+00 -1.41556427e-01 2.85968393e-01 -2.57712066e-01\\n2.61773556e-01 -1.12077564e-01 2.05858843e-03 -4.84175496e-02\\n-1.88750342e-01 5.94708286e-02 -1.70638084e-01 -1.68995157e-01\\n1.42115250e-01 1.41707420e-01 1.11504219e-01 1.97914764e-01\\n2.55341053e-01 -1.98245332e-01 -4.48364811e-03 3.02295744e-01\\n-2.51424015e-01 -6.43631041e-01 1.70472294e-01 -5.69942258e-02\\n3.16867918e-01 2.33767211e-01 -3.82321060e-01 -1.67208433e-01\\n-2.35652789e-01 -1.97018191e-01 3.73924002e-02 -2.90840000e-01\\n-5.28034940e-02 2.56689250e-01 1.42779082e-01 -1.19503327e-01\\n7.36161023e-02 -4.03617293e-01 -2.17268869e-01 -5.09667456e-01\\n1.83405012e-01 -5.96939921e-01 -4.73246463e-02 -4.95985746e-02\\n6.87128425e-01 -4.26640600e-01 1.34064451e-01 3.02347168e-02\\n2.26175830e-01 1.46187767e-01 -1.42032728e-02 9.99262277e-03\\n-2.39632025e-01 -2.68486410e-01 -2.79213060e-02 -1.63060337e-01\\n5.58497250e-01 3.98272485e-01 -2.43545681e-01 2.37644929e-02\\n1.01063572e-01 -3.05014789e-01 -3.93647701e-01 -1.66734576e-01\\n-1.12146735e-01 -3.05227906e-01 -5.07612646e-01 -3.61538738e-01\\n-2.28629515e-01 -1.67111933e-01 -1.12317868e-01 5.80709994e-01\\n-3.56066585e-01 -3.25975925e-01 1.08223118e-01 -5.23435771e-01\\n3.02419871e-01 -1.03284545e-01 2.00624764e-02 -2.58486599e-01\\n-2.29125813e-01 -4.98199642e-01 4.29933593e-02 2.20644604e-02\\n-5.02996892e-02 -2.52692878e-01 1.22303784e-01 1.23431534e-03\\n-2.47908100e-01 -5.17464042e-01 3.56322497e-01 1.28059655e-01\\n2.67838597e-01 1.49527460e-01 3.65741640e-01 -9.96899158e-02\\n2.44188562e-01 -5.37273139e-02 -3.33115645e-03 -3.20107847e-01\\n1.05933622e-01 9.40497667e-02 4.21075284e-01 -1.29508510e-01\\n-1.43303787e-02 1.95101112e-01 -2.33309075e-01 -5.84666282e-02\\n3.40079635e-01 5.71669266e-02 9.72953290e-02 -1.47836089e-01\\n2.82720089e-01 -2.05758214e-01 -1.22505061e-01 -5.17642545e-03\\n1.01435564e-01 5.96137822e-01 4.20606546e-02 -3.03145856e-01\\n-7.29568452e-02 6.55649185e-01 -6.28896654e-02 1.03956975e-01\\n-2.74326473e-01 9.81071889e-02 -1.38935447e-01 2.50987560e-01\\n3.80088371e-04 -2.72463024e-01 -1.98690802e-01 -1.62705302e-01\\n-2.13397786e-01 2.28916928e-01 1.92228884e-01 8.48888680e-02\\n-1.81680508e-02 -5.15264213e-01 -1.28227204e-01 1.66177288e-01\\n1.22475505e-01 5.21942496e-01 7.60065690e-02 -2.09310502e-01\\n-8.67229607e-03 3.51030737e-01 -9.00594667e-02 1.10057876e-01\\n-2.94403017e-01 1.10745274e-01 -4.67044026e-01 -1.88935280e-01\\n-2.47998461e-01 -4.90912855e-01 7.85784200e-02 3.07555497e-01\\n1.60013929e-01 2.38027684e-02 9.16237310e-02 -4.92324710e-01\\n2.67835557e-01 1.36283562e-01 1.60886288e-01 6.61901459e-02\\n2.35196743e-02 4.99020576e-01 -1.12882657e-02 -1.02792159e-01\\n-2.74634600e-01 1.29077211e-01 -2.12125927e-01 -1.42922103e-01\\n4.41108271e-02 -5.47638774e-01 -9.05696824e-02 3.47084314e-01\\n1.17797136e-01 -2.01226801e-01 -1.87169597e-01 1.99218735e-01\\n-5.37028862e-03 -2.27552533e-01 -3.25852424e-01 7.24395514e-02\\n3.08488071e-01 4.19133976e-02 3.38949263e-01 -4.31137204e-01\\n-1.87176652e-03 -5.40392590e-04 -8.25907513e-02 4.36573118e-01\\n1.12554058e-01 9.97819975e-02 -2.30789095e-01 -1.69748172e-01\\n3.39253455e-01 -2.28998616e-01 -3.45900469e-02 -8.98252279e-02\\n1.53048232e-01 -1.73386857e-01 -4.55334187e-01 7.99139217e-02\\n4.48237434e-02 -1.51555300e-01 2.40246635e-02 1.12471528e-01\\n1.18461609e-01 9.49100703e-02 -5.37375331e-01 -2.11600646e-01\\n-2.50731826e-01 -2.68278439e-02 1.41972110e-01 -4.82788414e-01\\n-4.90715867e-03 -5.16138412e-02 -5.70338726e-01 2.55860388e-01\\n-3.17929924e-01 -5.40298931e-02 2.64292926e-01 7.54520819e-02\\n-4.19753909e-01 -2.34023947e-02 -5.72428154e-03 3.57419938e-01\\n-2.14723289e-01 -3.12200963e-01 -2.44567301e-02 -1.00946927e+00\\n2.07625613e-01 9.04109329e-03 -2.04298750e-01 6.27626851e-02\\n-9.48740095e-02 -6.10953152e-01 1.06858745e-01 -3.29203516e-01\\n-1.13993071e-01 -6.23001084e-02 -1.51381016e-01 -4.09142077e-01\\n-6.19939677e-02 -3.57124433e-02 -3.21311414e-01 5.05554140e-01\\n-3.08322251e-01 3.16997349e-01 -1.63451836e-01 1.11554004e-01\\n-6.61440790e-02 -2.62815684e-01 1.82336122e-01 -2.66103297e-01\\n-2.35126540e-01 -2.72533685e-01 -3.71606112e-01 -3.66248041e-01\\n-6.66420069e-03 -2.91379094e-01 -5.25111295e-02 1.03590369e-01\\n3.46656442e-01 5.27842119e-02 -1.97942063e-01 -3.68014067e-01\\n1.18761137e-01 -6.21708274e-01 7.21290559e-02 6.34662714e-03\\n-1.21091539e-03 -8.30972791e-02 1.98669359e-01 7.04494193e-02\\n2.07859546e-01 -4.96362567e-01 1.61100447e-01 -3.94922853e-01\\n-3.40922922e-01 -6.16677999e-02 -9.32552293e-02 -2.56164838e-02\\n2.67969668e-01 -5.62462449e-01 -7.58905262e-02 3.19182247e-01\\n2.20162898e-01 -2.55330396e-03 1.84652716e-01 -6.89972490e-02\\n-1.40212104e-02 3.05106342e-01 -2.63114899e-01 7.62887970e-02\\n7.01447606e-01 6.83224620e-03 5.79826236e-02 2.85430223e-01\\n1.50823981e-01 3.89735818e-01 5.13810933e-01 -6.74651861e-02\\n-1.32071644e-01 2.64412433e-01 6.90038949e-02 -5.98099828e-01\\n-8.99822190e-02 6.96351938e-03 -2.12367147e-01 -3.43214810e-01\\n6.98986769e-01 4.31712210e-01 -5.08289754e-01 -2.73067564e-01\\n-9.54403803e-02 -2.23634765e-01 1.31500199e-01 -1.93551425e-02\\n1.61141809e-02 -1.71140298e-01 4.59723830e-01 -7.64352409e-03\\n2.71493435e-01 5.71604908e-01 -2.14388937e-01 -3.39131743e-01\\n-5.01285067e-05 2.77896076e-01 -4.43701968e-02 3.85925025e-01\\n-2.60398299e-01 2.93353736e-01 -4.84673157e-02 1.37485534e-01\\n-2.27613561e-02 1.40965745e-01 8.91220942e-02 1.28761277e-01\\n1.64892420e-01 9.17982757e-02 5.01211405e-01 3.91287029e-01\\n3.25791478e-01 4.08050358e-01 2.84480572e-01 1.24355145e-01\\n4.12808031e-01 5.25912404e-01 3.72525066e-01 2.01204605e-02\\n3.02687120e-02 1.57103255e-01 1.43210307e-01 -1.31073408e-02\\n2.85085768e-01 3.88511449e-01 1.32097295e-02 8.46806228e-01\\n3.23682427e-01 2.35111833e-01 6.71892405e-01 -6.81996763e-01\\n-3.17397386e-01 -9.82349217e-02 4.67956901e-01 -3.36551517e-01\\n-3.84304672e-02 1.28085241e-01 -1.75123677e-01 2.61269599e-01\\n-3.29592764e-01 -1.59790650e-01 4.37929109e-02 2.17978209e-01\\n-2.80238483e-02 -1.49725288e-01 -2.66877204e-01 2.40686350e-02\\n-1.12662025e-01 -1.36445180e-01 -4.49849218e-01 -1.06007829e-01\\n-2.12841228e-01 -7.74007961e-02 -8.63549635e-02 -1.27512977e-01\\n-6.45768270e-02 -4.17522699e-01 -7.05076456e-02 4.98949513e-02\\n2.43879855e-01 -2.94604972e-02 1.60356518e-02 -1.55310646e-01\\n2.67724156e-01 2.14495361e-01 5.61511457e-01 6.49298355e-02\\n3.14930477e-03 -1.66564777e-01 -2.47696981e-01 2.10431531e-01\\n7.07891881e-02 4.42199335e-02 6.24577049e-03 2.12231398e-01\\n-1.98495671e-01 -1.33692339e-01 1.89599201e-01 4.17255402e-01\\n-4.65088487e-01 -1.13009494e-02 -1.05703510e-01 2.32315972e-01\\n1.23387814e-01 1.84252188e-01 -9.26252529e-02 5.24913147e-02\\n-1.81660488e-01 -3.36255163e-01 2.27604270e-01 -4.30321917e-02\\n-2.56600022e-01 8.80173147e-02 2.47832268e-01 2.50911057e-01\\n-3.06455374e-01 6.20137081e-02 -8.59209225e-02 1.35680974e-01\\n1.24824561e-01 3.32288206e-01 -1.81135491e-01 -3.49710584e-01\\n-2.54808426e-01 7.73721039e-02 -2.11469531e-01 6.10313155e-02\\n4.06336188e-02 4.13315892e-01 5.84489554e-02 -3.64887193e-02\\n3.90878409e-01 2.72648949e-02 -2.27666810e-01 -1.72454670e-01\\n-1.09700538e-01 -1.30315378e-01 -7.73871168e-02 -5.33822440e-02\\n1.35982931e-01 -3.59940261e-01 -8.73657912e-02 -4.92828228e-02\\n-9.82103050e-02 -2.88429379e-01 -7.06435740e-03 -6.98495060e-02]]',\n", + " 'job_description': \"The Company Lykke Business is part of the Lykke Ecosystem. It is an innovative, fair and trusted partner committed to reshaping entire business models with cutting edge blockchain technology. Our teams are busy building the future of identity, financial markets, commerce, security infrastructure and more. Our Leadership team has led some of the most innovative production blockchain implementations in the world. The Role We’re looking for a talented Blockchain Engineer with a strong C# background to join our international distributed team. The successful employee will have at least 2-3 years technical experience, and will be responsible for developing, enhancing and maintaining applications and smart contracts together with other team members. Your tasks: Develop quality applications, components and modules using C# (we're using .NET Core) Develop smart contracts Test applications and smart contracts to ensure that they meet the requirements specified Work under an agile scrum methodology Skills & Requirements: Self-motivation and an ability to work autonomously are a must. To be successful in the role, you should ideally possess the following attributes: Strong understanding of blockchain technologies including Ethereum Strong programming skills, including C#, Solidity and JavaScript Experience with the following frameworks and technologies will be a plus: Truffle OpenZeppelin Node.js SQL Databases (MS SQL, Azure SQL) NO SQL Databases (Azure Storage, MongoDB, CosmosDB) Docker and Kubernetes What awaits you: This is an exciting opportunity for a self-motivated individual who is keen to join the growing blockchain ecosystem. The successful candidate will become part of a highly motivated team and enjoy a friendly environment where remote work and flexible working hours are embraced, and a can-do and enterprising spirit is cultivated. We have big plans, and want you to be a key part of those! If you are someone who thrives in a fast-paced environment where being self-directed, determined, and resilient are requirements, we’re looking forward to receiving your application.\",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Friendliness\", \"Resilience\", \"Team Motivation\", \"Distributed Team Management\", \"Team Leadership\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Agility\", \"Programming (Music)\", \"Hyper SQL Database (HSQLDB)\", \"Blockchain\", \"Infrastructure Security\", \"Application Testing\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"Scrum (Software Development)\", \"Product Innovation\", \"Financial Market\", \"Docker (Software)\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Azure Blob Storage\", \"Self-Directed Learning\", \"Ethereum\", \"Receivables\", \"Modulation\", \"SQL Azure\", \"Business Model\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Cultivator\"]',\n", + " 'languages': \"['English', 'Korean', 'Maltes', 'Limburgish', 'Mongolian']\"},\n", + " {'company_id': '145',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Argovia',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.varian.com',\n", + " 'jobdescription_embedded': '[[-6.19051345e-02 2.23809808e-01 3.77727032e-01 -1.40341846e-02\\n4.36400533e-01 -1.93047285e-01 1.66181818e-01 4.62623447e-01\\n2.18171254e-02 -5.70284069e-01 -5.47202863e-02 -2.18292356e-01\\n-8.23639110e-02 1.07243277e-01 1.33008942e-01 4.45098698e-01\\n2.52567559e-01 1.12891711e-01 -2.07773387e-01 3.88301581e-01\\n6.40700758e-02 -1.59709617e-01 3.82796563e-02 8.18270266e-01\\n4.19291675e-01 -2.83275172e-03 -1.33975565e-01 -7.66897276e-02\\n-1.98966995e-01 -3.73720199e-01 3.97122502e-01 -3.06620430e-02\\n-3.53687815e-02 -3.10346633e-01 1.44295797e-01 2.18290575e-02\\n-2.07458287e-01 2.06766576e-02 -1.28369004e-01 2.46458575e-01\\n-5.09799421e-01 -1.93040997e-01 -3.93022858e-02 -5.77651113e-02\\n-1.98354721e-01 -3.52962524e-01 -4.29547951e-02 -1.25301033e-02\\n1.59999371e-01 1.26293987e-01 -4.56239462e-01 2.96637595e-01\\n-2.18936503e-01 -3.10797691e-01 3.19550693e-01 6.11211717e-01\\n-7.16329142e-02 -4.23881590e-01 -5.41440427e-01 -3.12958300e-01\\n2.58810166e-02 -8.72627273e-02 8.81620049e-02 -3.74840736e-01\\n2.19725683e-01 1.10441037e-01 8.09637532e-02 3.45258355e-01\\n-7.83293307e-01 -1.78706750e-01 -2.85338968e-01 -1.10670000e-01\\n-2.03725561e-01 -1.91734046e-01 -2.96925515e-01 -1.18050620e-01\\n-2.18303382e-01 3.73763412e-01 3.21039073e-02 3.28219198e-02\\n-1.93060443e-01 2.61463374e-01 -2.33669266e-01 3.31179410e-01\\n2.65250057e-01 2.65267372e-01 2.23909453e-01 3.57913852e-01\\n-3.20149660e-01 4.17466968e-01 9.39447060e-02 -2.92053252e-01\\n2.12166488e-01 2.14759424e-01 5.07212937e-01 -1.05090447e-01\\n2.28230730e-01 6.97586462e-02 -3.80716234e-01 2.82739937e-01\\n2.63293862e-01 -2.51291364e-01 1.31841123e-01 -1.59610078e-01\\n6.44806623e-02 9.60504711e-02 8.32091942e-02 4.68361601e-02\\n-2.38525227e-01 4.18227524e-01 1.30770311e-01 -2.64154762e-01\\n-1.40862927e-01 -4.51302439e-01 -7.79878050e-02 1.14234343e-01\\n8.38440955e-02 1.44823536e-01 2.20479161e-01 8.32772851e-02\\n1.80476651e-01 -5.13989590e-02 4.45933901e-02 7.54391313e-01\\n-1.31563678e-01 7.30469227e-02 -3.33929747e-01 1.76681161e-01\\n6.82354793e-02 -3.55887681e-01 2.20263481e-01 2.12145552e-01\\n-3.37241888e-02 -1.18309438e-01 -2.43699297e-01 4.11115825e-01\\n8.99417847e-02 -2.04994321e-01 -2.42856935e-01 1.78263351e-01\\n3.08504049e-03 -5.03665864e-01 6.91271424e-01 2.92589646e-02\\n2.48471931e-01 -2.12667007e-02 7.10081384e-02 -3.16120237e-02\\n-8.11973028e-03 1.05657034e-01 2.00559840e-01 -1.40654771e-02\\n-2.58301198e-01 -3.12648833e-01 -2.04233676e-01 1.24557748e-01\\n-3.54256064e-01 1.69771746e-01 -4.75472100e-02 -2.93016294e-03\\n2.93254286e-01 6.35590963e-03 -2.64663070e-01 2.45483398e-01\\n-1.46545604e-01 9.40890759e-02 -5.43725714e-02 3.09407651e-01\\n-1.93029895e-01 2.70644844e-01 -5.71352392e-02 -2.71626655e-02\\n7.03028977e-01 1.52634174e-01 7.56502599e-02 -5.30628525e-02\\n3.20812762e-01 4.59968932e-02 1.79240480e-01 1.26080573e-01\\n-6.81949317e-01 2.40007803e-01 -1.44257888e-01 -2.53743619e-01\\n1.75748646e-01 -8.31371844e-02 2.08529472e-01 -3.24490041e-01\\n-1.12240918e-01 -2.16935892e-02 -2.75911540e-01 -3.50687951e-01\\n-2.11603671e-01 -5.93915172e-02 3.72637123e-01 -3.63240570e-01\\n-1.14702292e-01 1.89016402e-01 -4.80212003e-01 -3.53415008e-03\\n1.05358899e-01 2.27164522e-01 1.13652885e-01 1.70938343e-01\\n-1.68370098e-01 -4.63308275e-01 8.53173211e-02 -4.34184611e-01\\n-2.63931423e-01 9.13070515e-02 -3.48996997e-01 1.99189350e-01\\n7.59472698e-02 8.93558860e-02 -1.40828937e-01 9.02831629e-02\\n-1.60108536e-01 -9.38417241e-02 -3.59690972e-02 -2.63382047e-02\\n1.31465882e-01 8.00487585e-03 -3.67677540e-01 4.40679491e-01\\n-7.58004487e-02 4.84245688e-01 7.46898204e-02 -7.55133092e-01\\n4.71182257e-01 3.71321917e-01 -2.30512172e-02 -4.41640466e-01\\n5.09036839e-01 -2.44831100e-01 -1.22985631e-01 1.04106024e-01\\n-3.84826988e-01 -3.92508864e-01 2.50629932e-01 -2.38448858e-01\\n-2.79916286e-01 3.08033764e-01 5.05701900e-02 1.47781298e-01\\n1.49418846e-01 -9.90435183e-02 -2.11040373e-03 4.40473408e-02\\n9.06787664e-02 -1.27682269e-01 -4.95719016e-01 -9.27683115e-02\\n-7.24465474e-02 -3.66644770e-01 -8.83476958e-02 -4.45811242e-01\\n-1.95732564e-01 -4.11035866e-01 -2.73662865e-01 1.87959954e-01\\n2.67109990e-01 1.06550559e-01 4.80799042e-02 1.56393927e-02\\n-9.67728794e-02 -7.14310586e-01 4.72441427e-02 1.29183576e-01\\n4.76394117e-01 1.46124691e-01 -1.79211039e-03 -3.49180326e-02\\n7.91769922e-02 6.65879190e-01 -3.03834617e-01 -1.51239350e-01\\n1.57427862e-01 1.91515759e-01 8.04590434e-02 -1.58442602e-01\\n1.38004586e-01 3.26720238e-01 -2.85673201e-01 7.82303661e-02\\n-4.98117916e-02 -2.35565286e-02 3.73280078e-01 -4.54107672e-02\\n-4.22941446e-01 -2.50718981e-01 -1.36065856e-01 -2.02492252e-02\\n-5.58721185e-01 -1.27812833e-01 5.82499325e-01 1.54448554e-01\\n2.08465829e-01 1.37783483e-01 2.22538680e-01 -1.86023284e-02\\n-1.64326534e-01 -2.67969698e-01 2.24581838e-01 4.13470268e-02\\n1.86244741e-01 1.31837055e-01 -5.63574024e-02 -6.44176126e-01\\n-3.42675591e+00 -1.40493110e-01 1.49335831e-01 -2.40450040e-01\\n2.34372541e-01 -5.20308428e-02 2.54074663e-01 -3.26240472e-02\\n-3.47976536e-01 -2.30737980e-02 -8.00630152e-02 -6.66800514e-02\\n2.02332050e-01 2.24695489e-01 1.30736426e-01 1.50843203e-01\\n3.11153293e-01 -2.79829234e-01 -1.36982411e-01 3.73772413e-01\\n-1.43773779e-01 -5.95322013e-01 1.30888283e-01 7.20803514e-02\\n3.08980614e-01 2.95025527e-01 -3.60756963e-01 -1.41418185e-02\\n-2.28443831e-01 -1.53815642e-01 5.65927587e-02 -2.32003123e-01\\n-1.82803631e-01 1.57912269e-01 1.78849101e-01 -1.51809886e-01\\n9.93154123e-02 -3.79102230e-01 -1.06419735e-01 -4.23455566e-01\\n1.86578676e-01 -6.68026745e-01 -1.02202401e-01 -1.05853684e-01\\n7.72332966e-01 -2.25147173e-01 2.27826163e-01 -3.25366086e-03\\n1.82527155e-01 1.27701014e-01 7.34136775e-02 4.78709266e-02\\n-1.69970304e-01 -2.22631276e-01 3.55224833e-02 -1.47418693e-01\\n5.90386808e-01 4.17490065e-01 -2.63108253e-01 -1.22895777e-01\\n8.66316557e-02 -1.99856862e-01 -4.15202498e-01 -1.19595885e-01\\n-1.95943117e-01 -1.62509531e-01 -6.32236958e-01 -4.60444897e-01\\n-2.25776985e-01 -1.45664111e-01 -1.18890926e-01 8.01176488e-01\\n-3.25459987e-01 -3.72208863e-01 1.41753340e-02 -4.23251569e-01\\n2.39459917e-01 -2.22117618e-01 1.19567975e-01 -2.00784713e-01\\n-2.10524067e-01 -4.07863915e-01 8.85375366e-02 1.05540954e-01\\n-4.70485650e-02 -2.13901147e-01 2.02927813e-01 -6.49816841e-02\\n-2.92883992e-01 -4.28552598e-01 3.27874482e-01 1.50528044e-01\\n1.94045052e-01 1.87466249e-01 3.77337575e-01 4.61283699e-02\\n2.88764477e-01 2.78802253e-02 4.23989818e-02 -4.04044747e-01\\n5.65041043e-02 -7.53071671e-03 5.46575963e-01 -2.56786585e-01\\n-4.04184498e-02 1.05093881e-01 -3.95375282e-01 -1.57784387e-01\\n3.94620121e-01 -7.13024214e-02 7.79878572e-02 -1.41737014e-01\\n2.97933102e-01 -2.18452558e-01 -1.38576031e-01 -2.84769246e-03\\n1.46004841e-01 5.89523792e-01 -1.03604510e-01 -4.27862078e-01\\n-6.02160841e-02 4.40088958e-01 -3.62040028e-02 2.66031533e-01\\n-6.93737417e-02 3.99331190e-02 -1.35588318e-01 2.30085477e-01\\n9.60702077e-03 -1.62512109e-01 -1.68109655e-01 -1.56932637e-01\\n-1.12189427e-01 3.71553153e-01 1.76513582e-01 7.02599064e-02\\n-6.20615147e-02 -3.52750242e-01 -2.26519123e-01 2.71380305e-01\\n1.88409418e-01 4.08812851e-01 8.34701806e-02 -2.21568167e-01\\n-1.06666451e-02 4.34670448e-01 -2.35793710e-01 2.06491143e-01\\n-2.30906710e-01 1.70160845e-01 -3.97220194e-01 -1.76364839e-01\\n-3.28525662e-01 -4.69216496e-01 1.10041261e-01 3.52864504e-01\\n4.25268374e-02 3.32015157e-02 2.27678474e-02 -4.32758272e-01\\n1.44905180e-01 2.23310068e-01 1.81920871e-01 9.41202641e-02\\n-4.45765331e-02 4.22997713e-01 -2.15715244e-02 -1.82548255e-01\\n-2.59437889e-01 5.58669455e-02 -1.35348856e-01 -2.02564318e-02\\n1.53666705e-01 -5.56855738e-01 -6.15715683e-02 3.74330282e-01\\n6.61150441e-02 -3.00900042e-01 -9.67792794e-02 2.83310175e-01\\n5.75825833e-02 -3.70946199e-01 -2.75105864e-01 -1.14896828e-02\\n3.52942228e-01 2.04697922e-02 2.85356402e-01 -4.97603744e-01\\n-4.17070873e-02 -1.51359886e-02 -1.75125569e-01 3.40960115e-01\\n-7.32143968e-02 -1.38682062e-02 -2.27091759e-01 -9.46134031e-02\\n4.35124099e-01 -7.70500824e-02 -8.69204476e-02 5.84979057e-02\\n8.36682022e-02 -2.70383358e-01 -4.77980614e-01 4.47380310e-03\\n1.52210360e-02 -2.46860474e-01 3.04904189e-02 1.75612032e-01\\n7.71720614e-03 1.67775095e-01 -5.99797189e-01 -1.95308596e-01\\n-2.41540790e-01 -4.46128547e-02 1.67734444e-01 -4.67031687e-01\\n-5.72519340e-02 -4.45629768e-02 -5.14864624e-01 2.67005295e-01\\n-1.87731907e-01 -1.31884202e-01 2.22982988e-01 -7.46260583e-02\\n-2.86601305e-01 -2.78615635e-02 3.58147621e-02 2.89609700e-01\\n-1.53467640e-01 -3.19211751e-01 -1.22640006e-01 -9.69182312e-01\\n2.11302161e-01 4.93915658e-03 -6.10336624e-02 8.28779638e-02\\n-1.67469159e-01 -6.55389190e-01 1.21443860e-01 -3.67105961e-01\\n-8.58141705e-02 -1.86484456e-01 -1.94323853e-01 -4.24718231e-01\\n2.89580002e-02 -6.66416809e-02 -4.09955859e-01 3.22648913e-01\\n-2.63287425e-01 3.19880009e-01 -1.96254104e-01 1.06179588e-01\\n-8.07733759e-02 -3.62405151e-01 1.15657248e-01 -5.13754070e-01\\n-4.11345094e-01 -1.97170198e-01 -2.58108675e-01 -3.05555582e-01\\n-1.13185443e-01 -3.25967818e-01 -9.98986438e-02 2.42138147e-01\\n2.74886131e-01 4.94712852e-02 -8.41187239e-02 -2.86423564e-01\\n3.83117720e-02 -5.76020658e-01 3.79743017e-02 2.86732288e-03\\n-8.99192467e-02 -1.56229481e-01 1.08371712e-01 1.80575892e-01\\n2.57547885e-01 -4.38588381e-01 3.05570751e-01 -4.09507066e-01\\n-2.57537305e-01 -1.23804472e-02 3.35521065e-02 5.98320253e-02\\n3.92850667e-01 -5.25567651e-01 -9.93468016e-02 3.14466119e-01\\n9.28419158e-02 1.26023695e-01 2.13206336e-01 -8.95332247e-02\\n-1.24858238e-01 3.78621340e-01 -2.52148777e-01 1.27089903e-01\\n6.40203178e-01 9.64948460e-02 1.02745488e-01 2.36187518e-01\\n1.48223534e-01 4.32617873e-01 4.30310577e-01 -6.22925609e-02\\n-1.10516548e-01 2.88782746e-01 7.92500004e-02 -4.19815779e-01\\n-7.62072504e-02 1.36457503e-01 -1.59554228e-01 -3.21209371e-01\\n6.04258657e-01 5.10133445e-01 -4.47064072e-01 -2.42787391e-01\\n-1.59943342e-01 -1.82783499e-01 1.49825573e-01 -2.19271928e-02\\n-6.40360638e-02 -1.10977910e-01 4.77722377e-01 -9.67247039e-03\\n1.85170069e-01 5.16971767e-01 -1.67066827e-01 -2.86485285e-01\\n-3.62705812e-02 3.04229856e-01 -8.69823024e-02 5.18900812e-01\\n-1.49199530e-01 2.10024029e-01 2.10246164e-02 9.61648375e-02\\n-3.49113494e-02 1.30785316e-01 7.64887854e-02 1.49120703e-01\\n1.13568604e-01 2.07578972e-01 5.43067038e-01 4.88696992e-01\\n3.48208159e-01 3.62545639e-01 1.83902368e-01 1.40576527e-01\\n4.77726370e-01 4.35412377e-01 4.62036341e-01 1.52298287e-01\\n1.92517154e-02 4.91023511e-02 1.66059241e-01 -8.34274739e-02\\n3.17929745e-01 2.94777095e-01 2.15468053e-02 7.94405878e-01\\n3.05599988e-01 2.21731827e-01 6.44549549e-01 -5.97927451e-01\\n-2.89927423e-01 -4.40224297e-02 5.26176155e-01 -4.14630324e-01\\n4.63907421e-02 1.22942284e-01 -1.15793347e-01 2.82276720e-01\\n-4.43751156e-01 -2.45067984e-01 3.46285962e-02 9.91992876e-02\\n-3.22346874e-02 -2.69848526e-01 -1.87090978e-01 8.31070691e-02\\n-1.33444428e-01 -9.65618342e-02 -5.34595609e-01 -9.97988805e-02\\n-1.55962840e-01 -5.88978864e-02 -9.98019278e-02 -1.61630988e-01\\n-3.25339437e-02 -3.12433571e-01 2.43476834e-02 3.28414477e-02\\n1.22000605e-01 -1.54085293e-01 4.11295071e-02 -6.18786924e-02\\n3.39769840e-01 1.76135346e-01 5.49326003e-01 -1.36982026e-02\\n1.26961261e-01 -2.79514760e-01 -1.58429399e-01 2.07800731e-01\\n1.51075676e-01 8.49278271e-02 9.99814197e-02 2.30352834e-01\\n-2.86293864e-01 -2.04641908e-01 2.65345033e-02 3.97207290e-01\\n-4.39399838e-01 6.91773593e-02 -1.10686667e-01 2.05407068e-01\\n1.24894805e-01 1.35976255e-01 -1.59158573e-01 -1.23784006e-01\\n-1.39007151e-01 -3.78997803e-01 2.10911632e-01 -1.41031723e-02\\n-1.89340219e-01 8.03237185e-02 2.02123672e-01 3.72412533e-01\\n-1.56026512e-01 -3.69975604e-02 -9.56250131e-02 1.61186859e-01\\n2.70681959e-02 2.71852314e-01 -3.48080136e-02 -3.98473173e-01\\n-3.22610557e-01 1.54331222e-01 -2.11616307e-01 2.48909788e-03\\n2.19093077e-02 1.99191466e-01 -2.11749319e-02 -2.73124967e-03\\n3.74597460e-01 -6.76662698e-02 -2.30115682e-01 -2.74733067e-01\\n-1.70839027e-01 -1.46823615e-01 1.20798470e-02 -5.92725873e-02\\n1.10362411e-01 -3.20710540e-01 -1.18725363e-03 -1.55505478e-01\\n-1.70225814e-01 -2.13022575e-01 -4.32575792e-02 -9.27769691e-02]]',\n", + " 'job_description': \"We're driving toward the ultimate victory: a world without the fear of cancer. As a Software Engineer you will be collaborating with a talented, experienced team, providing best-in-class solutions for complex problems. This position involves all software engineering activities from analysis and design through coding and testing of data integration components, as well as maintenance and support during the product life cycle. Specific Responsibilities Analyze, design develop, and maintain connectivity services and the DICOM Import/Export application Investigate escalated customer issues Desired Qualifications Master’s degree in Computer Science / Electrical Engineering or related field 5 years professional work experience in object-oriented programming and test-driven design Cybersecurity skills as a programmer Service API skills (e.g. RESTful) Self-motivated and able to work well in a team environment. Strong problem analysis and solving capability. C# skills welcome DICOM skills welcome SQL skills welcome Excellent communication and teamwork skills, fluency in English You are analytical, communicative and focused. You work structured and have an eye for details. In addition, you can express your ideas and research in written form. You are used to working independently, open to discussing ideas and solutions with your colleagues. You thrive in an international work environment and in cultivating your contacts with partners in Europe and overseas. You’re just one click away from the most impactful work you’ll ever do. Apply now and join our mission to help save lives. Someone, somewhere, will be glad you did. We look forward to receiving your application and CV. www.varian.com/ch/daettwil #LI-OSS1 We're unleashing the power of technology and human ingenuity to achieve new victories in the fight against cancer. Join us and have a global impact.\",\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Self-Motivation\", \"Research\", \"Professionalism\", \"Collaboration\", \"Investigation\", \"Communications\"]',\n", + " 'hard_skills': '[\"Test-Driven Development (TDD)\", \"Computer Science\", \"Analytics\", \"Pentaho Data Integration\", \"Life Cycle Assessment\", \"Activism\", \"Import/Export Logistics\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Hostile Work Environment\", \"Software Engineering\", \"Library For WWW In Perl\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Structural Work\", \"Receivables\", \"Humanism\", \"Cybersecurity Compliance\", \"Additives\", \"Cancer\", \"Eyes\", \"Application Programming Interface (API)\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"Cultivator\", \"Dicom\"]',\n", + " 'languages': \"['English', 'Amharic', 'Northern Sami', 'Albanian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data systems engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Financial Analytics & Research',\n", + " 'website': 'www.msci.com',\n", + " 'jobdescription_embedded': '[[-2.60954827e-01 2.30167165e-01 4.89781052e-01 7.73578370e-03\\n5.77957988e-01 -4.70237574e-03 1.81176122e-02 4.37544614e-01\\n-1.01420045e-01 -3.37166160e-01 -4.23684120e-02 -2.52674460e-01\\n2.45848950e-03 5.54076396e-02 1.29162595e-01 4.84801292e-01\\n2.50441521e-01 1.00949310e-01 -2.27572680e-01 3.35609496e-01\\n1.57288879e-01 -2.10521013e-01 1.71379447e-01 6.68238580e-01\\n4.78940874e-01 -1.84074454e-02 -1.03338294e-01 -1.26966953e-01\\n-3.52600574e-01 -3.31519693e-01 4.72143859e-01 -1.38572287e-02\\n-1.23099402e-01 -2.54388601e-01 1.76957011e-01 -7.03690723e-02\\n-2.91455328e-01 -6.09623268e-02 5.32634370e-02 1.28683254e-01\\n-4.74885732e-01 -1.59514278e-01 -1.13965869e-01 3.44431885e-02\\n-1.42328441e-01 -2.37396866e-01 1.74945861e-01 -6.97839186e-02\\n1.51579663e-01 1.29282281e-01 -3.79247963e-01 1.12373061e-01\\n-2.24098831e-01 -2.42608488e-01 4.00136441e-01 5.94307482e-01\\n6.80403365e-03 -5.27922750e-01 -5.05874276e-01 -3.82617712e-01\\n1.68281674e-01 -1.95326790e-01 1.81151554e-01 -2.26570442e-01\\n3.39323670e-01 9.37924609e-02 8.88840556e-02 2.86705792e-01\\n-8.22512209e-01 -1.72006756e-01 -1.92659363e-01 -9.49183777e-02\\n-2.64013886e-01 -1.40300304e-01 -2.73998439e-01 -6.98461831e-02\\n-1.64249465e-01 4.50373143e-01 -2.22838372e-02 1.79614216e-01\\n-1.08411901e-01 3.05310100e-01 -2.83141911e-01 3.74445319e-01\\n3.32952291e-02 1.67312905e-01 2.90169775e-01 2.65705824e-01\\n-2.53544450e-01 4.74345952e-01 1.57274678e-01 -1.45639285e-01\\n3.29319984e-01 5.36911115e-02 3.10047030e-01 -5.22075966e-02\\n1.88973412e-01 2.60992674e-03 -1.39244229e-01 3.07156801e-01\\n1.93166643e-01 -2.66058624e-01 3.64463665e-02 -7.60478303e-02\\n-1.01403445e-01 -1.07953670e-02 1.22589611e-01 2.98349351e-01\\n-2.28007272e-01 4.13742930e-01 1.84518278e-01 -8.47880393e-02\\n-8.66883397e-02 -5.66732526e-01 -7.30175525e-02 6.04260378e-02\\n3.08196321e-02 7.93479905e-02 2.25183934e-01 1.43796757e-01\\n2.70122051e-01 2.15441249e-02 4.94919457e-02 6.98111832e-01\\n-8.03366527e-02 3.87868695e-02 -1.39929891e-01 2.05394775e-01\\n1.28563978e-02 -3.10743481e-01 1.61426142e-02 2.55797058e-01\\n-2.30882335e-02 -4.53655832e-02 -1.79876089e-01 2.97518551e-01\\n-1.90598458e-01 -3.15790355e-01 -1.22904159e-01 1.09709717e-01\\n-3.16270851e-02 -4.62865561e-01 4.00723934e-01 -1.24293724e-02\\n1.03961326e-01 -1.45414859e-01 3.71823572e-02 -5.78674935e-02\\n-7.35857487e-02 3.70161772e-01 1.21126808e-01 7.76205286e-02\\n-7.68972114e-02 -1.88366055e-01 -2.69892991e-01 -7.61390403e-02\\n-1.79494992e-01 1.17062472e-01 -1.70260862e-01 -8.66223276e-02\\n2.90869802e-01 5.61691076e-02 -3.17482769e-01 3.85877490e-01\\n-7.67549053e-02 9.63283703e-02 -1.54928938e-01 2.41402209e-01\\n-6.92453161e-02 2.21187219e-01 -6.03424683e-02 -1.45085171e-01\\n6.93868697e-01 1.57940134e-01 1.65913001e-01 1.57189682e-01\\n2.67479330e-01 -3.85347567e-02 1.00015000e-01 1.63309187e-01\\n-7.18533397e-01 3.81083846e-01 -3.33274528e-02 4.40285131e-02\\n1.61134556e-01 -6.48487508e-02 1.06371924e-01 -2.51986593e-01\\n1.37952760e-01 -1.67187959e-01 -2.77618527e-01 -3.96366566e-01\\n-1.84161067e-01 7.13660941e-03 3.08128566e-01 -4.32311177e-01\\n-3.43261361e-02 2.30058372e-01 -4.86939520e-01 -7.81829804e-02\\n1.73818111e-01 1.03981994e-01 2.04886973e-01 1.22892439e-01\\n-1.00254014e-01 -3.69355470e-01 1.75242007e-01 -3.28738391e-01\\n-2.38565654e-01 6.00329451e-02 -2.66127437e-01 2.56380290e-01\\n-1.55227948e-02 6.44364133e-02 -8.82604942e-02 1.45240933e-01\\n-1.40094608e-01 -1.90227494e-01 1.49048775e-01 -1.04944524e-03\\n2.52858073e-01 7.68799931e-02 -4.22021270e-01 3.55969697e-01\\n-2.12167710e-01 5.98011076e-01 -3.45825665e-02 -8.26237321e-01\\n3.87494564e-01 2.65419304e-01 -4.72658873e-03 -3.45760405e-01\\n5.84303021e-01 -2.01670423e-01 1.16849318e-01 8.76247659e-02\\n-3.05694014e-01 -2.34583482e-01 3.18256259e-01 -2.00457200e-01\\n-2.56184906e-01 5.15115440e-01 1.53430626e-01 1.51340172e-01\\n3.49000632e-03 -6.69490993e-02 -7.49845058e-02 1.63927615e-01\\n-1.73049029e-02 -1.65882289e-01 -5.28407872e-01 -3.58102843e-02\\n-9.31794569e-02 -3.94680053e-01 -7.74748027e-02 -4.12597656e-01\\n-8.28688517e-02 -2.81269729e-01 -1.69281632e-01 3.86905447e-02\\n3.10910404e-01 1.47587895e-01 2.50898208e-03 6.48742542e-02\\n-1.48759842e-01 -6.74434602e-01 2.58094426e-02 1.37439147e-01\\n2.53613859e-01 1.87125444e-01 1.37402892e-01 -3.72642241e-02\\n-2.84953583e-02 6.46196485e-01 -2.63657033e-01 -1.42989471e-03\\n2.14734152e-01 2.03995213e-01 3.49928364e-02 -8.54707360e-02\\n2.73245629e-02 1.68852165e-01 -2.82093167e-01 1.37345418e-01\\n-8.54998827e-02 -2.03707125e-02 3.58599961e-01 -5.31007014e-02\\n-4.05755758e-01 -1.43557012e-01 -1.28240392e-01 9.67087895e-02\\n-4.30379659e-01 -1.85243621e-01 6.12233520e-01 2.01234952e-01\\n1.02975190e-01 2.15541184e-01 1.27522528e-01 6.77738786e-02\\n-1.73129767e-01 -2.89521486e-01 2.64053673e-01 3.73969898e-02\\n1.08565696e-01 7.86288306e-02 -3.72575298e-02 -7.19407976e-01\\n-3.34136796e+00 -9.56420004e-02 1.56800047e-01 -2.83602923e-01\\n1.50752053e-01 -1.63948178e-01 3.42537388e-02 -4.55816053e-02\\n-2.87655473e-01 7.02979192e-02 -1.54571459e-01 -1.59423023e-01\\n2.92138487e-01 2.76583076e-01 9.50954556e-02 1.96674570e-01\\n2.03978360e-01 -3.14332157e-01 -1.31275533e-02 3.41309875e-01\\n-3.01324934e-01 -6.67162061e-01 1.70391724e-01 -5.36948368e-02\\n3.00948471e-01 3.75938803e-01 -2.76414424e-01 -2.01152816e-01\\n-2.26076588e-01 -2.88199425e-01 6.11520782e-02 -1.21306323e-01\\n-6.20190315e-02 3.03485304e-01 1.26699939e-01 -1.03643075e-01\\n-3.39763332e-03 -4.56274778e-01 -1.99340209e-01 -4.97938812e-01\\n1.25745863e-01 -7.38937795e-01 -1.60817072e-01 -9.93724614e-02\\n6.32057369e-01 -1.71470538e-01 9.45303217e-02 2.79260650e-02\\n1.80141941e-01 1.20986484e-01 4.62707467e-02 3.69136781e-02\\n-2.83627540e-01 -9.89761204e-02 -6.91730306e-02 4.59738001e-02\\n5.44023216e-01 4.32071507e-01 -3.96562934e-01 -1.13213561e-01\\n8.51117000e-02 -2.41284281e-01 -3.47980320e-01 -1.45862788e-01\\n-1.65199324e-01 -1.86082542e-01 -6.73641026e-01 -3.98597032e-01\\n-2.50327736e-02 -1.12258479e-01 -9.89997759e-02 5.61696053e-01\\n-1.67348862e-01 -3.44960213e-01 -1.72775105e-01 -4.52582806e-01\\n1.96803153e-01 -9.40942243e-02 -9.58063379e-02 -2.29209393e-01\\n-1.62514374e-01 -1.97323620e-01 1.01230919e-01 1.37716848e-02\\n-6.12491369e-02 -2.38523275e-01 1.47896469e-01 -1.16656773e-01\\n-3.49870145e-01 -4.83314067e-01 3.80160123e-01 4.25772890e-02\\n3.20887893e-01 1.54549390e-01 1.92643002e-01 -8.89541674e-03\\n2.17909530e-01 -9.43683386e-02 1.14073887e-01 -3.48426133e-01\\n1.97960973e-01 9.58138406e-02 5.58415830e-01 -2.49107555e-01\\n3.33048515e-02 1.56832695e-01 -1.77858397e-01 -1.31916314e-01\\n2.40522772e-01 -5.64162582e-02 1.02877758e-01 -2.19308823e-01\\n3.01423907e-01 -4.65762913e-01 -2.07626998e-01 -4.33490276e-02\\n1.32642493e-01 6.83965862e-01 -6.24847822e-02 -1.94399163e-01\\n-1.11955047e-01 3.63513917e-01 -1.21220753e-01 -1.27095640e-01\\n-3.08714211e-01 8.76391605e-02 -1.77170560e-01 3.19404125e-01\\n8.13857093e-02 -9.44776684e-02 -1.53254941e-01 -7.97076523e-02\\n-2.09588155e-01 2.26398334e-01 2.00731978e-01 7.72258416e-02\\n3.76302600e-02 -3.30454677e-01 -1.53676778e-01 2.41966993e-01\\n2.19537541e-01 3.97563159e-01 6.48827553e-02 -2.09105939e-01\\n-5.66604920e-02 2.95738518e-01 -1.61289111e-01 1.84062928e-01\\n-2.21198246e-01 1.03478663e-01 -5.96313953e-01 -2.49287039e-01\\n-1.77678272e-01 -1.58353075e-01 1.01324439e-01 4.62234914e-01\\n1.19565278e-01 1.61144312e-03 -1.10707209e-01 -4.62905020e-01\\n1.21459328e-01 -8.59414786e-02 1.98052108e-01 -4.08110619e-02\\n-5.08223101e-02 5.20575821e-01 2.19136104e-02 -1.69921845e-01\\n-1.71282604e-01 1.09148599e-01 -2.54489094e-01 -7.39410445e-02\\n4.65569273e-02 -4.97110158e-01 -8.94262642e-02 3.69453669e-01\\n1.72569200e-01 -1.76930547e-01 -7.17700645e-02 2.85092652e-01\\n-4.09956351e-02 -3.06384653e-01 -2.67858565e-01 -4.15186677e-03\\n2.65071660e-01 -1.48911968e-01 3.40478152e-01 -4.34094608e-01\\n-2.79249847e-02 -5.59915639e-02 -6.97911829e-02 2.84871101e-01\\n1.54336886e-02 -1.65541675e-02 -2.77250204e-02 -1.06251270e-01\\n3.76342028e-01 -2.19735950e-01 -7.29244873e-02 1.90537632e-01\\n1.88147977e-01 -1.53027132e-01 -6.05810821e-01 -2.80591305e-02\\n-1.23907655e-01 -9.87903103e-02 -1.00216363e-02 7.26678371e-02\\n-3.40604931e-02 8.13342631e-02 -5.14082551e-01 -1.96522638e-01\\n-3.07126641e-01 -6.96683256e-03 7.43681639e-02 -4.99419987e-01\\n-2.50115961e-01 -2.49533970e-02 -5.06177962e-01 2.00890213e-01\\n-1.34367675e-01 -4.51769978e-02 1.83645889e-01 2.11655516e-02\\n-2.25460768e-01 -1.21001281e-01 9.48336199e-02 2.09167451e-01\\n-1.92813054e-01 -1.48190469e-01 -5.97960651e-02 -1.11043143e+00\\n6.84764236e-02 1.61726810e-02 -2.84956455e-01 -3.75660062e-02\\n2.94017419e-02 -6.59944773e-01 2.31133252e-01 -3.08595747e-01\\n-1.67358547e-01 1.29430015e-02 -2.69928902e-01 -3.88326049e-01\\n1.62187755e-01 -4.38269936e-02 -3.25591862e-01 2.93834567e-01\\n-2.16191262e-01 4.68618542e-01 -8.50015134e-02 5.32585718e-02\\n-4.37267721e-02 -2.64412135e-01 1.04664773e-01 -3.85986030e-01\\n-3.96685213e-01 -6.71595931e-02 -3.23081195e-01 -1.23782203e-01\\n-1.08896814e-01 -3.13710451e-01 -1.26017526e-01 1.78939346e-02\\n2.42861688e-01 1.40155643e-01 -4.83591519e-02 -1.28824726e-01\\n-6.17012307e-02 -6.19222879e-01 2.54223645e-02 -1.00025505e-01\\n-1.97199360e-02 -2.68218637e-01 3.63855541e-01 5.95049784e-02\\n1.11376986e-01 -3.60960335e-01 4.36872125e-01 -4.06386375e-01\\n-3.30877721e-01 -1.52034298e-01 1.14320189e-01 6.64194971e-02\\n2.90107518e-01 -5.06019413e-01 3.85881588e-02 3.87284756e-01\\n-1.50547057e-01 5.14175883e-03 4.07868564e-01 -1.16421424e-01\\n-1.30217969e-01 1.22561388e-01 -3.98503274e-01 1.08655922e-01\\n7.20093727e-01 1.98098853e-01 -3.57962400e-02 2.06900716e-01\\n3.60875912e-02 1.71833575e-01 4.60537851e-01 4.50354256e-02\\n-1.46604836e-01 1.93522319e-01 2.51940638e-02 -6.82711303e-01\\n-7.54247084e-02 2.57002935e-02 -1.60544753e-01 -3.98817956e-01\\n7.29457319e-01 3.68559927e-01 -3.41810316e-01 -2.82909095e-01\\n-1.63585171e-01 -8.92771259e-02 2.41130501e-01 -1.82656854e-01\\n1.76116183e-01 -1.47575215e-01 4.81769234e-01 -3.16919461e-02\\n3.09871614e-01 4.67903197e-01 -1.05709724e-01 -2.12711215e-01\\n-8.16512853e-02 2.47556657e-01 -4.14035320e-02 4.00542557e-01\\n-1.43828735e-01 1.85986996e-01 -9.79861361e-04 1.04085624e-01\\n-1.68252483e-01 -1.42302047e-02 -1.09707817e-01 2.30500758e-01\\n1.66635606e-02 1.59945503e-01 5.25302172e-01 3.77244264e-01\\n3.36716861e-01 3.62779140e-01 4.00120527e-01 9.30688083e-02\\n5.21131277e-01 4.05512154e-01 2.70837098e-01 4.07630485e-03\\n-2.87877787e-02 1.85326129e-01 1.87534615e-01 5.17853461e-02\\n4.29592341e-01 2.97687829e-01 4.01020534e-02 7.47164965e-01\\n1.67239785e-01 2.01802507e-01 5.99924564e-01 -5.59717357e-01\\n-3.12084705e-01 -1.83200315e-01 4.56246197e-01 -3.25096667e-01\\n8.02274272e-02 1.55370519e-01 -2.27411035e-02 1.58377796e-01\\n-5.77781320e-01 -3.45700741e-01 7.18094688e-03 2.19098538e-01\\n1.70403779e-01 -2.12279558e-01 -2.24467814e-01 1.46288633e-01\\n-1.08499773e-01 -7.79954866e-02 -4.59461302e-01 -2.46832848e-01\\n-1.91410437e-01 6.10161349e-02 -1.29413037e-02 -9.17117968e-02\\n-7.57745355e-02 -2.15769142e-01 2.83371899e-02 -2.97098863e-03\\n2.35817522e-01 -6.63258284e-02 -5.56613430e-02 -7.88358599e-03\\n3.92358601e-01 1.42654210e-01 5.28750241e-01 -7.89464414e-02\\n1.36065632e-01 -1.77556694e-01 -1.68134511e-01 1.10678226e-01\\n2.29738727e-01 -4.50308472e-02 7.24313082e-03 3.32892001e-01\\n-3.92644525e-01 -2.45694786e-01 1.50185935e-02 3.00235331e-01\\n-4.26147640e-01 1.97829287e-02 1.64892361e-01 2.24182501e-01\\n1.27021104e-01 1.41861603e-01 -3.23069245e-01 -7.26903602e-02\\n-1.27123058e-01 -3.49780619e-01 1.80713609e-01 6.65706396e-02\\n-2.80265152e-01 1.26035452e-01 3.80165875e-01 2.10281268e-01\\n-1.18383810e-01 5.12843914e-02 -2.08732858e-01 1.03002563e-01\\n1.93587616e-01 1.69337809e-01 -1.15071006e-01 -3.30473334e-01\\n-2.14798361e-01 2.10309163e-01 -1.20565638e-01 1.71763465e-01\\n4.52692956e-02 2.45327309e-01 6.02112189e-02 -4.87631448e-02\\n5.11050761e-01 -1.26617491e-01 -1.57686576e-01 -2.24531531e-01\\n-1.29754767e-01 -3.22528571e-01 -9.79791358e-02 -1.58760622e-01\\n2.87655175e-01 -4.37817842e-01 -4.03296165e-02 -3.55174094e-01\\n-2.03665599e-01 -3.12948078e-01 -2.16732752e-02 3.60090509e-02]]',\n", + " 'job_description': 'Position Overview We are building cutting-edge software to identify and analyze the exposure to climate change of publicly traded companies. Its our goal to alert investors of the climate risk profiles of companies and to tackle climate change at the roots. Our mission is a big one and were looking for talented people to join us. We are looking for a sharp, energetic and organized person with a positive attitude to extend our existing IT team. Carbon Delta is growing and changing at a fast pace, and as a member of our IT team, you will have a fast learning curve, and will discuss your best fit with the team. Scope of Responsibility configuration and addition of new software services,executing on big data management tasks,enhance and maintain our existing IT infrastructure e.g. for servers or storage,plan and schedule upgrades and maintenance of hardware and software,provide technical support to your co-workers,and develop system monitoring to verify the integrity and availability of all hardware, server resources, systems and key processes Specific Knowledge/Skills Linux and Windows systemsPython, Django, Nginx, Postgres, RedisKVM, Docker, AzureAnsible, git Desired Experience & Qualification Deeply enjoy technical IT challengesFast learnerFlexible to adapt to new challengesHave outstanding communication and interpersonal abilitiesLove to organize and coordinateAre multi-tasker and able to prioritizeHave good written and verbal communication skills in both English and German,Would like to join a dedicated, technically savvy and enthusiastic teamShould have a Swiss work permit Due to the great number of applications we receive for each of our open vacancies, we are unable to respond on an individual basis. To all recruitment agencies: MSCI does not accept unsolicited CVs/Resumes. Please do not forward CVs/Resumes to any MSCI employee, location or website. MSCI is not responsible for any fees related to unsolicited CVs/Resumes. MSCI Inc. is an equal opportunity employer committed to diversifying its workforce. It is the policy of the Firm to ensure equal employment opportunity without discrimination or harassment on the basis of race, color, religion, creed, age, sex, gender, gender identity, sexual orientation, national origin, citizenship, disability, marital and civil partnership/union status, pregnancy (including unlawful discrimination on the basis of a legally protected pregnancy/maternity leave), veteran status, or any other characteristic protected by law',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Adaptability\", \"Energetic\", \"Planning\", \"Scheduling\", \"Communications\", \"Integration\", \"Positive Mental Attitude\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Carbonation\", \"Knowledge Process Outsourcing\", \"Data Management\", \"Resource Management Systems\", \"Cardiac Risk Profile\", \"IT Infrastructure\", \"Linux\", \"Climate Change Mitigation\", \"Maintainability\", \"E (Programming Language)\", \"Nginx\", \"Executable\", \"Technical Support\", \"Django (Web Framework)\", \"Docker (Software)\", \"Process Specification\", \"Maternity\", \"Storages\", \"Equalization\", \"Personalization\", \"Big Data\", \"Systems Development\", \"Receivables\", \"Additives\", \"Git Flow\", \"Coloring\", \"Software Plus Services\", \"Patient Monitoring Systems\", \"Technical Savvy\"]',\n", + " 'languages': \"['English', 'Yoruba', 'Moldovan', 'Albanian', 'Kikuyu']\"},\n", + " {'company_id': '85',\n", + " 'job_title': 'data architect',\n", + " 'location': 'Gland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.26959467e-01 1.85585111e-01 5.45626521e-01 3.39563489e-02\\n6.05104625e-01 -1.55945927e-01 -5.37235290e-02 4.24137056e-01\\n-5.30420169e-02 -5.59546590e-01 -1.57581978e-02 -2.86776245e-01\\n-5.89047931e-02 9.32528079e-02 5.75805977e-02 2.80804247e-01\\n3.88394356e-01 1.43583134e-01 -9.13108140e-02 3.20280671e-01\\n5.94274700e-02 -1.31324381e-01 1.52759761e-01 7.03490376e-01\\n3.10784996e-01 -8.45882148e-02 -7.22268149e-02 5.77587634e-04\\n-2.45001525e-01 -1.74896002e-01 4.48014498e-01 -3.46912369e-02\\n-1.57767504e-01 -2.71948814e-01 8.71570483e-02 3.99834849e-02\\n-2.42521822e-01 -9.74186361e-02 -8.12924951e-02 1.48576885e-01\\n-4.59864229e-01 -1.95110619e-01 -3.96016799e-02 -5.01302406e-02\\n-3.24364960e-01 -3.57881427e-01 -3.16568501e-02 -2.28019431e-02\\n9.56756026e-02 8.54479074e-02 -5.36936462e-01 2.38055050e-01\\n-1.99533910e-01 -2.21855000e-01 2.34013036e-01 5.99914074e-01\\n-2.44867913e-02 -4.06157315e-01 -4.65729982e-01 -3.00640345e-01\\n1.24723166e-01 -1.22358456e-01 6.82379380e-02 -3.77022266e-01\\n3.32380861e-01 -4.05879021e-02 7.21967267e-03 2.54423797e-01\\n-7.77008295e-01 -4.93215546e-02 -2.31322765e-01 -5.22023030e-02\\n-3.57683539e-01 -6.64442480e-02 -3.12843800e-01 -1.17946438e-01\\n-1.10407673e-01 4.06963170e-01 7.18101263e-02 4.32074182e-02\\n-1.70039251e-01 2.63334036e-01 -3.27968091e-01 3.85194957e-01\\n1.93057135e-01 3.37805033e-01 2.32159615e-01 3.35622936e-01\\n-3.29601169e-01 4.71874207e-01 2.34640896e-01 -4.50010121e-01\\n3.10019374e-01 1.37526333e-01 3.99491757e-01 -4.38049585e-02\\n2.71545976e-01 9.92244780e-02 -2.90837228e-01 3.54413271e-01\\n2.94723004e-01 -3.33072484e-01 1.83103047e-02 -1.06500126e-01\\n5.83395213e-02 -4.96790968e-02 4.33552787e-02 2.60357320e-01\\n-3.44801664e-01 3.47575396e-01 5.78447022e-02 -2.11462051e-01\\n-1.71496123e-01 -3.47067535e-01 3.26017961e-02 1.16494820e-01\\n1.51388720e-02 1.90461129e-01 2.49866068e-01 1.05192959e-01\\n1.49268001e-01 1.29982442e-01 1.51803225e-01 8.51687312e-01\\n-8.68032500e-02 4.15343679e-02 -2.65343249e-01 3.88893545e-01\\n7.08726794e-02 -3.76771450e-01 1.20396271e-01 2.16989189e-01\\n5.10175601e-02 -1.58679336e-01 -1.41127795e-01 3.45115006e-01\\n2.40389984e-02 -1.14366800e-01 -2.55188614e-01 2.10665166e-01\\n-5.46168350e-02 -4.10077661e-01 7.07121968e-01 8.35343599e-02\\n1.55393839e-01 -1.27902791e-01 6.13957196e-02 -2.36900002e-01\\n-1.40697092e-01 2.70074844e-01 5.60046826e-03 2.39884168e-01\\n-3.12298775e-01 -2.64583856e-01 -1.81241050e-01 2.10325718e-01\\n-4.61188495e-01 4.53567877e-02 -4.94401902e-02 -8.25300142e-02\\n2.68959701e-01 7.40253776e-02 -2.56187797e-01 2.12850749e-01\\n-1.14951335e-01 -3.87190245e-02 -7.79033452e-03 2.76621759e-01\\n-2.04776049e-01 3.02411556e-01 2.49807052e-02 -7.02316761e-02\\n5.05224228e-01 1.69686064e-01 2.43805707e-01 -1.77225936e-02\\n3.24320078e-01 -1.16108671e-01 1.89941395e-02 1.23341739e-01\\n-6.79099321e-01 3.61986428e-01 -4.96737100e-02 -2.85153985e-01\\n8.32508653e-02 -1.20971110e-02 2.66953468e-01 -1.44139379e-01\\n4.12601754e-02 -2.23777562e-01 -2.75624454e-01 -3.58167648e-01\\n-1.31995499e-01 -9.53156501e-02 4.23225611e-01 -4.70424384e-01\\n-1.00450605e-01 2.67721057e-01 -5.02433300e-01 -9.89936143e-02\\n1.55907154e-01 2.53715187e-01 1.34184793e-01 8.81372988e-02\\n-1.40274107e-01 -4.55875278e-01 8.61041248e-02 -4.16475832e-01\\n-1.91778719e-01 9.50427353e-02 -2.87170172e-01 1.53199196e-01\\n4.96030971e-02 2.07985006e-02 -2.47636810e-03 1.23869956e-01\\n-2.04422146e-01 -8.67343098e-02 1.45801067e-01 5.86524643e-02\\n4.68432724e-01 -1.38773452e-02 -4.06342119e-01 5.09587109e-01\\n-2.20423728e-01 3.40664625e-01 1.99102491e-01 -9.58584666e-01\\n4.62812364e-01 2.41617903e-01 -5.22376038e-02 -3.77645195e-01\\n5.55359244e-01 -3.39550883e-01 -6.08056709e-02 8.15979093e-02\\n-3.78406376e-01 -2.32332528e-01 2.17163503e-01 -2.05676824e-01\\n-2.22324386e-01 4.81574208e-01 -6.59446418e-03 1.56902209e-01\\n2.46098310e-01 -2.17403084e-01 -7.20052719e-02 -8.23026896e-02\\n-2.23928094e-01 -2.56638527e-01 -5.83865523e-01 -2.83847600e-02\\n-1.19565770e-01 -4.77976650e-01 -8.72339830e-02 -4.06859905e-01\\n-1.44480139e-01 -3.08676720e-01 -1.34061366e-01 1.74950525e-01\\n2.72640109e-01 6.58057630e-02 -3.62581685e-02 -1.05888210e-02\\n-6.85257763e-02 -5.43224216e-01 -1.28565550e-01 1.04586363e-01\\n4.47411388e-01 2.00259328e-01 1.34049207e-01 -2.20327452e-03\\n1.40092060e-01 5.44225454e-01 -1.12721696e-01 -2.45586902e-01\\n1.35898918e-01 2.21717715e-01 -5.98804280e-02 -9.36221480e-02\\n1.20501041e-01 3.52077842e-01 -2.01258823e-01 -1.70007870e-02\\n5.04829288e-02 -5.85053004e-02 4.24077034e-01 -7.15166032e-02\\n-2.34046638e-01 -1.92782283e-01 -3.70404273e-02 1.17795125e-01\\n-5.40806174e-01 -2.15985298e-01 5.61462104e-01 2.01966360e-01\\n8.77510086e-02 1.50305018e-01 1.28643885e-01 5.30742556e-02\\n-2.04402238e-01 -1.72198206e-01 2.37726241e-01 -1.45782232e-02\\n1.33992821e-01 1.39474139e-01 3.03623006e-02 -4.82385933e-01\\n-3.65689182e+00 -2.17225552e-01 1.09935775e-01 -2.38370389e-01\\n1.57136500e-01 -1.90947667e-01 7.06102997e-02 -8.49857554e-03\\n-2.47175068e-01 6.77997321e-02 -1.75542355e-01 -1.04899883e-01\\n1.17573455e-01 2.20172614e-01 1.22330606e-01 2.83023328e-01\\n1.20821074e-01 -1.52050063e-01 9.81768966e-03 3.40487629e-01\\n-2.25600421e-01 -6.33613825e-01 2.34256834e-01 -5.10381758e-02\\n2.86565095e-01 2.20938817e-01 -4.87181395e-01 -7.05512986e-02\\n-2.80877680e-01 -1.46693781e-01 1.51599586e-01 -2.69574732e-01\\n-1.71713322e-01 2.51290262e-01 1.49916470e-01 -1.12803563e-01\\n1.67625010e-01 -3.31464112e-01 -1.86671674e-01 -3.63117993e-01\\n1.81667298e-01 -6.02525651e-01 -1.26378521e-01 -5.43828346e-02\\n7.10578203e-01 -4.08134937e-01 2.08737344e-01 -1.31398551e-02\\n1.15536131e-01 1.28852472e-01 1.71796665e-01 -2.02913769e-02\\n-3.15004736e-01 -2.87341446e-01 2.42213272e-02 -2.09831223e-01\\n5.88578224e-01 4.87223625e-01 -9.82524008e-02 2.44502313e-02\\n1.02758966e-03 -2.44175777e-01 -4.18914855e-01 -3.29705209e-01\\n-6.33451119e-02 -1.76176876e-01 -6.20183408e-01 -3.24209034e-01\\n-4.99209948e-02 -2.64289081e-01 -5.50799146e-02 5.51924348e-01\\n-1.96045786e-01 -3.79968762e-01 -1.11754462e-01 -4.98668551e-01\\n3.72878253e-01 -1.41630962e-01 2.97269784e-03 -1.97399944e-01\\n-2.46819228e-01 -3.88384044e-01 1.42496288e-01 4.05891947e-02\\n-8.61663744e-02 -1.84298337e-01 1.56764448e-01 -5.81060536e-02\\n-3.51182014e-01 -4.48128909e-01 4.42874402e-01 7.20234141e-02\\n2.92768091e-01 1.33885309e-01 4.37437177e-01 5.02319597e-02\\n2.86487073e-01 -6.64279908e-02 -1.13959849e-01 -3.96884859e-01\\n5.32958396e-02 -3.16987634e-02 3.55283201e-01 -1.75551221e-01\\n6.98002204e-02 5.57822771e-02 -1.49906099e-01 -9.76474062e-02\\n3.08081359e-01 -6.02369495e-02 1.18858688e-01 -9.25181359e-02\\n2.03153744e-01 -2.62320250e-01 -1.41195461e-01 1.08382568e-01\\n-1.77268554e-02 5.23164034e-01 -3.39981318e-02 -2.86376476e-01\\n-1.66751668e-01 4.34576571e-01 -3.64531353e-02 8.32443982e-02\\n-1.94131002e-01 6.28325716e-02 -2.59017110e-01 3.52153689e-01\\n-6.80536963e-04 -1.16850421e-01 -2.38515273e-01 -9.53974351e-02\\n-1.12213567e-01 2.34908730e-01 2.69449532e-01 1.15753710e-01\\n4.01595235e-02 -3.87199134e-01 -7.02132434e-02 1.97189733e-01\\n2.97677159e-01 5.41889608e-01 1.99013278e-01 -7.89970905e-02\\n-4.93506230e-02 4.03309882e-01 -2.76965439e-01 2.66108245e-01\\n-2.65887320e-01 1.91045523e-01 -5.63682318e-01 -2.36865044e-01\\n-2.36690074e-01 -3.68271440e-01 1.67935774e-01 3.08545589e-01\\n1.93632513e-01 -1.00110710e-01 4.32363227e-02 -3.41073126e-01\\n2.68774360e-01 6.20842427e-02 2.13986412e-01 1.46586746e-01\\n-3.91582400e-03 5.82137644e-01 -3.68144922e-02 -8.39338526e-02\\n-1.12781346e-01 8.07562247e-02 -7.35053718e-02 -2.67687708e-01\\n-7.56375268e-02 -5.92806935e-01 -1.73749655e-01 3.05922389e-01\\n1.30189747e-01 -2.51520574e-01 -2.17959076e-01 2.65842915e-01\\n-9.02624130e-02 -2.10742295e-01 -2.56337404e-01 1.78571213e-02\\n4.28334773e-01 2.28980392e-01 2.91158557e-01 -5.72223544e-01\\n-1.55284077e-01 1.30839691e-01 4.78042811e-02 4.45907384e-01\\n7.44125396e-02 7.10915551e-02 -3.42796110e-02 -2.19178855e-01\\n3.72113943e-01 -1.77247882e-01 -1.65002421e-01 -5.19655161e-02\\n2.80996580e-02 -2.03483969e-01 -4.19769347e-01 1.46650463e-01\\n2.77346633e-02 -2.31144071e-01 6.96433783e-02 9.21656042e-02\\n7.88364708e-02 4.91004102e-02 -5.40481448e-01 -2.46248275e-01\\n-3.21554363e-01 -2.04072092e-02 -5.00875711e-03 -4.72395480e-01\\n-3.75322253e-02 -1.52734537e-02 -5.10069489e-01 2.20498502e-01\\n-1.28554761e-01 -1.10466614e-01 1.07282341e-01 -5.97559325e-02\\n-2.43912935e-01 -6.25356659e-02 1.34809464e-01 2.23447397e-01\\n-2.06007928e-01 -3.22677940e-01 5.07332273e-02 -1.00123668e+00\\n1.44783586e-01 9.66250226e-02 -1.91126361e-01 1.35203421e-01\\n-3.81120294e-02 -5.88949323e-01 1.32115394e-01 -3.33227515e-01\\n-9.02548656e-02 -9.64929610e-02 -2.40156412e-01 -4.53762531e-01\\n8.33714530e-02 5.61530553e-02 -3.36240113e-01 4.28298205e-01\\n-3.44702005e-01 3.84987772e-01 -1.61926836e-01 7.36631304e-02\\n9.26335230e-02 -2.30298609e-01 1.69032454e-01 -3.48049641e-01\\n-3.99106920e-01 -2.09772050e-01 -3.50904882e-01 -3.46295357e-01\\n-8.42668116e-02 -3.91998768e-01 -1.12279184e-01 9.68847424e-04\\n3.35234165e-01 8.36318508e-02 -2.15749770e-01 -2.41622031e-01\\n5.25874607e-02 -3.99399281e-01 2.95056961e-02 -3.45171094e-02\\n-8.57998729e-02 -1.51747674e-01 1.91959172e-01 9.96999443e-02\\n7.15580508e-02 -3.75161916e-01 3.54967535e-01 -2.21317112e-01\\n-3.22383642e-01 -1.24641150e-01 3.58742252e-02 1.13703668e-01\\n3.58011186e-01 -4.26163673e-01 7.49724656e-02 3.52810919e-01\\n2.33830839e-01 9.98689085e-02 1.50147974e-01 -6.65601939e-02\\n-2.86589116e-02 3.04174989e-01 -2.65399963e-01 9.18338373e-02\\n7.84099877e-01 5.02346978e-02 1.82636559e-01 2.08582029e-01\\n1.87070444e-01 2.78064281e-01 3.06016326e-01 6.57563098e-03\\n-1.64317906e-01 3.11114967e-01 1.01092279e-01 -4.95650530e-01\\n7.01944903e-02 -1.41385078e-01 -1.98138103e-01 -3.55826914e-01\\n5.55670381e-01 3.98149759e-01 -4.25234318e-01 -1.87287197e-01\\n-1.47492185e-01 -1.82940811e-01 2.04250246e-01 -5.55424280e-02\\n-1.20563135e-02 -1.55506834e-01 4.03699040e-01 -9.39343348e-02\\n2.61003941e-01 5.06759882e-01 -2.01805353e-01 -2.68972486e-01\\n-1.03064932e-01 2.07742110e-01 8.78320858e-02 5.27607977e-01\\n-2.54912138e-01 3.26455057e-01 -7.58094043e-02 1.86837345e-01\\n-6.29956573e-02 9.34925973e-02 1.43880859e-01 8.85814428e-02\\n2.14524508e-01 1.00339368e-01 3.98836315e-01 4.06579167e-01\\n2.28397071e-01 4.06621933e-01 3.96598727e-01 4.66578752e-02\\n4.17634130e-01 5.18793702e-01 3.49751592e-01 1.24530487e-01\\n-9.08402801e-02 -2.97809243e-02 5.72429337e-02 -4.50264663e-03\\n2.17811584e-01 3.59422326e-01 1.37136616e-02 8.76299500e-01\\n4.04174507e-01 2.33507425e-01 7.47595668e-01 -5.62973619e-01\\n-3.03399324e-01 -3.23097780e-02 3.85947108e-01 -4.07934129e-01\\n-1.84307061e-02 9.77430567e-02 -1.96492076e-01 2.59549141e-01\\n-4.22770113e-01 -2.09420741e-01 -1.02139488e-01 1.70546651e-01\\n-1.55957527e-02 -1.97322205e-01 -2.15798482e-01 6.36097342e-02\\n-2.56009828e-02 -5.54470718e-02 -4.01049674e-01 -4.74738628e-02\\n-2.12462202e-01 -1.38401136e-01 -1.45880237e-01 -3.37801129e-02\\n-8.19974095e-02 -3.22862178e-01 -1.26683861e-01 -4.94351313e-02\\n2.98602998e-01 -1.18570000e-01 -3.51657867e-02 -1.61988229e-01\\n2.83176750e-01 1.98692352e-01 4.86365736e-01 1.10180810e-01\\n1.54946446e-01 -2.28791982e-01 -1.31068513e-01 6.48721606e-02\\n1.57221943e-01 7.41381347e-02 -1.05674397e-02 2.51281559e-01\\n-2.80478984e-01 -1.35317326e-01 4.80526984e-02 2.82038152e-01\\n-4.19973850e-01 8.47353414e-03 -2.25774050e-02 1.27559304e-01\\n4.95847724e-02 1.69391736e-01 -1.79412141e-01 -1.79095082e-02\\n-1.91139311e-01 -4.60211992e-01 2.95223236e-01 -1.50710762e-01\\n-6.59837574e-02 -5.96475117e-02 1.71879962e-01 1.85563564e-01\\n-2.31385738e-01 4.06700931e-02 -3.94193456e-02 1.61757693e-01\\n3.00249681e-02 2.38011852e-01 -1.86747342e-01 -2.63392091e-01\\n-3.38201970e-01 1.50394648e-01 -1.37869179e-01 1.05552524e-01\\n1.92314945e-02 3.33986282e-01 6.93315417e-02 6.29573390e-02\\n2.74678260e-01 -3.27123329e-02 -1.88454747e-01 -2.37737119e-01\\n-2.23285139e-01 -1.92054898e-01 1.35266525e-03 -1.05301365e-01\\n2.26198196e-01 -3.87380958e-01 -7.66208619e-02 -1.71389416e-01\\n-4.70124483e-02 -3.42719615e-01 7.48951584e-02 -1.58928663e-01]]',\n", + " 'job_description': 'We are looking for talents... We are expanding our Data Intelligence Practice in Gland and Zurich and we are looking for dynamic and passionate Data Architects with experience in Large-scale transformation, mass migrations, complex application architectures, multi-cloud Data Lakes, Artificial Intelligence, Data Science and Big Data to name a few. We will be starting very soon our interviews so if you want to be part of our successful story of growth, apply now! Your background: Master Degree in Computer Science or another technical field. 5-10 years in a Data Architect role. Experience as a hands-on technical practitioner/specialist in client facing roles in large enterprises. Demonstrated client facing consulting skills, including building strong client relationships. Excellent verbal, presentation and written communications skills. Strong team skills including the ability to lead and be a team player. Knowledge on Datawarehouse and Big-Data architecture. Knowledge in Advanced Analytics Azure ML, ML Server, BOT framework, Cognitive Services, Azure Databricks, as well as, PowerBI. Learn, learn, and learn by staying up-to-date on all technical developments related to Data Intelligence and Cloud. Fluent English and/or French CH/EU citizenship required What you will do... Are you looking to work with innovative technologies, challenging projects and to join a team of passionate people? Then OSB is where you belong. You will… Architecting and implementing big data solutions that meet customer needs for scalability, reliability, security and performance;; Creating functional design specifications, implementing solutions, and assisting with other project deliverables as required. Keeping abreast of emerging Cloud technology trends and their impact on Cloud solutions.. Why OSB is for you... One Step Beyond is one of the fastest-growing start-up companies in Switzerland. In less than 2 years we have passed the 40 OSBers with an ambition to grow locally and internationally. We are a Native Cloud Consulting company helping organizations embrace Cloud technology that includes Microsoft, AWS, Google, etc. The cloud journey at OSB starts with the Cloud Strategy to then move to the execution that usually covers topics like Modern Workplace, Artificial Intelligence, Machine Learning, SaaS solutions or Blockchain most often multi-cloud. Our approach is to be technology agnostic to always try to find the best solutions comparing various technologies and approaches. We invest part of our time in “Beyond the Cloud” initiatives where our team investigates emerging technologies. Are you looking to grow your career in the Consulting business with the opportunity to work for large organizations but always staying ahead of new technologies? Then let’s discuss as at OSB we are not \"just the usual consulting company\".',\n", + " 'soft_skills': '[\"Investigation\", \"Reliability\", \"Presentations\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Blockchain\", \"Computer Science\", \"Analytics\", \"Machine Learning\", \"Functional Design\", \"Scale (Map)\", \"Intelligence Data Handling\", \"Azure Cognitive Services\", \"Design Specifications\", \"Executable\", \"Microsoft Modern Workplace\", \"Localization\", \"Investments\", \"Applications Architecture\", \"Data Science\", \"Service Delivery Framework\", \"Artificial Intelligence\", \"Scalability\", \"Learning With Errors\", \"Big Data\", \"Azure Databricks\", \"Transformation (Genetics)\", \"Data Lakes\", \"Emerging Technologies\", \"Cloud-Native Architecture\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Vietnamese', 'Uzbek', 'Herero']\"},\n", + " {'company_id': '105',\n", + " 'job_title': 'backend engineer (golang) (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.smallpdf.com',\n", + " 'jobdescription_embedded': '[[-6.82032555e-02 2.19999552e-01 5.21439850e-01 -8.65903124e-02\\n4.72986251e-01 -2.35543504e-01 7.40684429e-03 3.84785414e-01\\n-9.16572586e-02 -4.33151186e-01 -2.31015608e-02 -4.25794780e-01\\n-7.40003288e-02 1.29385337e-01 -1.59085337e-02 3.18082511e-01\\n3.01796824e-01 1.12471402e-01 -2.60325581e-01 3.60066533e-01\\n2.34320998e-01 -5.44881001e-02 1.32510543e-01 7.39464581e-01\\n3.99427980e-01 -5.11745885e-02 -3.47075947e-02 -4.86372150e-02\\n-2.00322583e-01 -2.03341410e-01 4.41235721e-01 -2.91730203e-02\\n1.89792421e-02 -3.88810039e-01 1.20231621e-01 2.30424255e-02\\n-2.14019522e-01 -2.01827943e-01 -1.86246149e-02 2.85180360e-01\\n-4.09456432e-01 -2.63451844e-01 5.00774086e-02 -1.30556887e-02\\n-2.36729369e-01 -3.60389054e-01 9.28594247e-02 -3.36944312e-02\\n2.04566091e-01 6.44522011e-02 -4.41068619e-01 3.33315253e-01\\n-1.89480767e-01 -9.32106376e-02 3.39069217e-01 6.02033019e-01\\n-6.27382323e-02 -4.49664921e-01 -5.92020512e-01 -2.52273738e-01\\n2.74442099e-02 -8.94681364e-02 -5.12706973e-02 -3.45091015e-01\\n2.10953236e-01 8.69945064e-02 4.17328030e-02 4.15648580e-01\\n-7.45295405e-01 -1.01955377e-01 -1.28648281e-01 -1.67734891e-01\\n-3.34729582e-01 -1.22126535e-01 -1.27409026e-01 -8.46048892e-02\\n-1.79331273e-01 4.84157443e-01 2.21155271e-01 -3.54076619e-03\\n-2.13394508e-01 3.47287118e-01 -2.61354327e-01 3.80707920e-01\\n2.94055611e-01 9.92921889e-02 1.20371237e-01 2.97873318e-01\\n-4.04980421e-01 4.17991221e-01 2.39948422e-01 -3.53601456e-01\\n3.12452763e-01 9.02904794e-02 5.69881439e-01 -3.87384519e-02\\n1.00608226e-02 1.20079368e-01 -2.64361441e-01 3.58135790e-01\\n3.53445411e-01 -1.80391937e-01 6.01425245e-02 -9.68503021e-03\\n3.11035546e-03 -5.72640337e-02 1.39548540e-01 2.93708563e-01\\n-2.26172045e-01 4.57688302e-01 1.82593569e-01 -2.22622722e-01\\n-2.13219091e-01 -5.02295911e-01 -6.35024682e-02 -1.09330252e-01\\n9.16810706e-02 8.88086259e-02 2.87648469e-01 9.46028605e-02\\n1.53541446e-01 -4.63129729e-02 1.93849877e-01 8.99928749e-01\\n-8.62501636e-02 -3.11325025e-02 -3.34946662e-01 3.14263940e-01\\n7.91077688e-02 -2.47264653e-01 2.66701043e-01 2.34146401e-01\\n1.44409994e-02 -1.66711435e-01 -2.16718450e-01 3.47822666e-01\\n-9.26150158e-02 -2.09399983e-01 -3.17319870e-01 1.64231107e-01\\n-1.11368522e-01 -2.01005191e-01 4.90044355e-01 2.20915899e-01\\n1.19359367e-01 1.88962016e-02 -7.03376532e-02 -2.10913554e-01\\n-1.66466802e-01 1.20420337e-01 2.90143839e-03 9.31987241e-02\\n-2.98627317e-01 -1.98113874e-01 -2.12766320e-01 1.93617955e-01\\n-2.85072297e-01 3.64289768e-02 -3.22600119e-02 -7.49293342e-02\\n3.24392736e-01 2.83166356e-02 -2.76673794e-01 2.57301539e-01\\n7.31909834e-03 7.90333897e-02 -4.77185696e-02 3.23268801e-01\\n-1.91725507e-01 1.67315349e-01 -2.61430740e-02 -8.92599821e-02\\n6.38113976e-01 1.75565317e-01 1.10356361e-01 5.89940101e-02\\n3.02765757e-01 -1.15985081e-01 1.37043327e-01 1.62356615e-01\\n-6.17488921e-01 3.23068351e-01 -4.16052900e-02 6.24674633e-02\\n9.42560732e-02 -5.43147996e-02 2.45221615e-01 -2.48047248e-01\\n1.19298100e-01 -1.18207417e-01 -3.84562373e-01 -3.20205480e-01\\n-1.05742231e-01 -7.73098832e-03 3.62723082e-01 -4.11645085e-01\\n-2.12827474e-01 2.01173097e-01 -4.61825788e-01 -6.27744421e-02\\n2.00477794e-01 1.92224294e-01 2.11903661e-01 1.43459037e-01\\n-2.62146413e-01 -4.76770997e-01 4.39092554e-02 -4.05939907e-01\\n-3.21332365e-01 3.51062305e-02 -3.25956047e-01 2.78232753e-01\\n9.74083543e-02 9.37658846e-02 -2.51090795e-01 1.73802257e-01\\n-1.70116574e-01 -8.64340886e-02 1.43545985e-01 9.98924002e-02\\n1.55501008e-01 5.96730150e-02 -4.79867011e-01 4.11087543e-01\\n-2.66302675e-01 5.32961071e-01 1.52257875e-01 -8.97100866e-01\\n4.59340006e-01 3.57138664e-01 -1.37560681e-01 -4.03719008e-01\\n5.09573817e-01 -3.50793332e-01 2.81120576e-02 9.32338387e-02\\n-2.98390508e-01 -3.30598831e-01 3.00451487e-01 -2.05480903e-01\\n-1.92368984e-01 4.58151966e-01 1.28391430e-01 1.33520454e-01\\n2.28824154e-01 -1.63856074e-01 -1.25675455e-01 2.50187237e-02\\n-6.58833981e-02 -2.12137535e-01 -4.46765631e-01 -5.42763658e-02\\n-9.71166790e-02 -4.75988746e-01 -2.82302424e-02 -5.36061049e-01\\n-2.39875346e-01 -3.58321071e-01 -1.87064454e-01 2.16319442e-01\\n3.26180160e-01 6.87868223e-02 -1.97866876e-02 4.20669951e-02\\n-2.29415476e-01 -5.39133072e-01 6.25130311e-02 1.92208380e-01\\n4.34868574e-01 2.15212211e-01 1.40968421e-02 2.32712533e-02\\n-8.86682421e-03 6.44919991e-01 -1.38846621e-01 -6.39252365e-02\\n5.59994541e-02 2.64627993e-01 1.09364986e-01 -1.73465714e-01\\n1.36381658e-02 3.66092741e-01 -1.57746226e-01 2.84510292e-02\\n-1.27393473e-02 -1.62359774e-01 3.91579837e-01 1.17934629e-01\\n-3.65199566e-01 -2.12041914e-01 -6.62797242e-02 1.03315771e-01\\n-4.84792948e-01 -1.58757120e-01 5.81823766e-01 1.62003487e-01\\n1.71120912e-01 9.83198062e-02 2.72095263e-01 -5.31134382e-02\\n-2.52521425e-01 -2.42397144e-01 1.96158901e-01 1.21800289e-01\\n1.08961776e-01 1.27080008e-01 -7.05470666e-02 -7.40553677e-01\\n-3.07847953e+00 -1.09116621e-01 9.88526419e-02 -2.56575227e-01\\n1.79191362e-02 -1.83744490e-01 5.03624491e-02 -1.16608426e-01\\n-3.31931204e-01 5.00684939e-02 -1.12848766e-01 -8.08660462e-02\\n2.43242070e-01 1.74921721e-01 9.79962349e-02 2.50185311e-01\\n1.61074340e-01 -1.28338590e-01 -1.03262559e-01 1.70068681e-01\\n-2.43117914e-01 -5.70012867e-01 2.77679235e-01 -6.34934828e-02\\n3.49923402e-01 2.10566640e-01 -2.61619568e-01 -2.04979137e-01\\n-2.66928703e-01 -1.40063554e-01 2.07070634e-02 -2.39513516e-01\\n-7.90130049e-02 1.89604640e-01 1.56907454e-01 -1.46349743e-01\\n2.13425949e-01 -5.10275185e-01 -2.21925884e-01 -4.60793465e-01\\n6.97765723e-02 -7.50240743e-01 2.84209680e-02 -1.69591561e-01\\n7.51741588e-01 -4.03304458e-01 1.01026423e-01 -6.75505539e-03\\n2.15165064e-01 1.46826237e-01 1.41149595e-01 -1.61519963e-02\\n-1.75067648e-01 -2.41486207e-01 -1.34317741e-01 -1.63520262e-01\\n5.82599819e-01 6.72258794e-01 -1.32189035e-01 -6.45605028e-02\\n5.71728731e-03 -2.31515363e-01 -4.86215293e-01 -3.02039891e-01\\n-1.78164691e-01 -3.20030123e-01 -5.86721599e-01 -4.60395306e-01\\n-1.91461205e-01 -9.71381366e-03 -1.85374171e-01 7.16153085e-01\\n-2.29291037e-01 -3.31873089e-01 -7.08615482e-02 -5.10424018e-01\\n1.88157201e-01 -1.60421506e-01 3.34258704e-03 -8.06323588e-02\\n-3.14345866e-01 -4.13969964e-01 -9.81163606e-03 -1.56712368e-01\\n-1.70607477e-01 -4.33450222e-01 4.63282950e-02 -1.17674150e-01\\n-1.88001826e-01 -3.87843668e-01 3.80222797e-01 1.37875184e-01\\n2.94017315e-01 1.01558290e-01 3.55299592e-01 8.37367177e-02\\n2.52137244e-01 -1.77723423e-01 8.57793018e-02 -3.47265303e-01\\n2.07226560e-01 8.39322656e-02 6.13395214e-01 -2.57877231e-01\\n1.18808098e-01 4.21733446e-02 -2.97924995e-01 -8.11859407e-03\\n3.38425636e-01 1.94550268e-02 -8.84827750e-04 -2.32841775e-01\\n3.21706682e-01 -3.61155778e-01 -2.35404342e-01 -5.31986617e-02\\n2.68400222e-01 5.66987872e-01 -6.57440424e-02 -4.91257787e-01\\n-2.09834471e-01 4.24164623e-01 -4.23381254e-02 -3.14639449e-01\\n-1.80289850e-01 1.84377864e-01 -2.35643446e-01 1.70463458e-01\\n8.94050896e-02 -1.01788253e-01 -3.50004077e-01 -1.20688811e-01\\n1.95211153e-02 3.50617796e-01 2.14891553e-01 1.53533742e-01\\n5.11903092e-02 -5.10393500e-01 -4.25917543e-02 2.33422175e-01\\n1.15577810e-01 2.61234850e-01 1.65176049e-01 -1.96823210e-01\\n6.84050545e-02 3.73435110e-01 -1.88080102e-01 1.49944514e-01\\n-2.66280890e-01 8.25849026e-02 -5.24332166e-01 -3.46135020e-01\\n-2.70655215e-01 -3.57893318e-01 1.43268421e-01 3.16217750e-01\\n7.76838064e-02 -4.20921072e-02 7.40121976e-02 -4.34999913e-01\\n3.07942837e-01 -8.06798190e-02 1.69359490e-01 1.68700665e-01\\n2.67784484e-02 5.21999002e-01 1.04577161e-01 -1.66247487e-01\\n-1.37557924e-01 -5.70035679e-03 -1.85115889e-01 -1.35672003e-01\\n-1.18726641e-01 -3.59902143e-01 -1.66541293e-01 5.02412260e-01\\n1.02719806e-01 -2.10290045e-01 -9.72216576e-02 3.30030441e-01\\n-9.15254056e-02 -1.64582148e-01 -1.46854043e-01 -6.29026890e-02\\n3.04071218e-01 7.43821822e-03 3.10952842e-01 -4.15836126e-01\\n2.65534036e-02 8.17134976e-02 -1.34243116e-01 6.08855069e-01\\n1.58943925e-02 -5.17104380e-03 -1.12391636e-01 -2.34387696e-01\\n5.52568734e-01 -6.03970438e-02 -2.01960038e-02 6.17537908e-02\\n2.81645358e-03 -1.80006295e-01 -5.40690184e-01 1.04682334e-01\\n2.20858399e-02 -1.71147481e-01 7.60659277e-02 1.70295969e-01\\n1.63231090e-01 9.96183604e-02 -5.91966391e-01 -2.68716484e-01\\n-3.20793360e-01 1.56783201e-02 -7.10053975e-03 -4.77407902e-01\\n2.35627592e-03 -1.37902170e-01 -5.27522445e-01 2.96274722e-01\\n-2.95964777e-01 -4.94314842e-02 1.44860238e-01 -5.40893897e-02\\n-2.53601521e-01 -7.32333586e-02 1.45605281e-01 2.47943044e-01\\n-2.38115847e-01 -3.21477175e-01 2.04330504e-01 -8.63952756e-01\\n2.08730221e-01 -1.47906775e-02 -1.46130264e-01 1.97695911e-01\\n-1.18184481e-02 -8.23263884e-01 1.32568851e-01 -2.93051422e-01\\n-4.22562622e-02 -6.23918278e-03 -2.18303502e-01 -4.85000789e-01\\n1.28850728e-01 -2.53590830e-02 -3.00814331e-01 2.90901273e-01\\n-3.51346523e-01 3.44051003e-01 -8.71331543e-02 1.14377305e-01\\n1.98345006e-01 -3.14744562e-01 6.77873269e-02 -5.32747030e-01\\n-5.12402475e-01 -1.82805896e-01 -2.85969526e-01 -2.92676061e-01\\n-3.90335172e-02 -1.84295490e-01 -9.36451331e-02 9.10610780e-02\\n4.02367949e-01 1.38348371e-01 -9.10672545e-02 -2.03523263e-01\\n2.87485439e-02 -5.36540627e-01 1.07771978e-01 -6.46100705e-03\\n-6.75484166e-02 -1.86345518e-01 1.58216864e-01 1.52590394e-01\\n1.92342065e-02 -3.89373332e-01 4.47525471e-01 -3.36055517e-01\\n-3.06542337e-01 -1.19537666e-01 1.78256687e-02 -3.46176960e-02\\n3.64082903e-01 -3.33361179e-01 7.68999616e-03 3.24659348e-01\\n1.82376295e-01 1.02678753e-01 2.28069574e-01 -6.53140545e-02\\n-1.05443913e-02 2.92872757e-01 -3.81840914e-01 1.12644963e-01\\n7.42448092e-01 -8.01041350e-03 1.10970475e-01 2.11962327e-01\\n6.76054284e-02 1.22932836e-01 4.86337006e-01 3.30054834e-02\\n-1.85769483e-01 2.69394815e-01 1.12656891e-01 -5.00322938e-01\\n-1.55087322e-01 -8.07639863e-03 -2.73795933e-01 -5.33170879e-01\\n5.66396475e-01 4.94188815e-01 -4.00233388e-01 -2.46146366e-01\\n-2.44201228e-01 -1.09952681e-01 4.06706855e-02 -5.01048602e-02\\n9.35924426e-02 -1.25580966e-01 4.47326034e-01 -4.73805405e-02\\n2.06277996e-01 4.93438303e-01 -1.65537417e-01 -3.52472901e-01\\n-1.32159770e-01 1.13935180e-01 2.62330435e-02 3.80014896e-01\\n-2.54371583e-01 3.77615213e-01 -2.81185210e-02 1.26704231e-01\\n-2.23418325e-01 1.35742560e-01 -2.69087404e-02 -6.52380213e-02\\n1.02817580e-01 6.96604177e-02 3.81392032e-01 4.79319036e-01\\n4.31528658e-01 4.12011534e-01 1.67002037e-01 -3.28439064e-02\\n6.10129833e-01 6.45244539e-01 3.88135046e-01 1.86308905e-01\\n-1.14976302e-01 4.23002690e-02 2.63863392e-02 -2.77687572e-02\\n3.70263577e-01 2.62478769e-01 1.44107118e-02 9.02565718e-01\\n4.00827587e-01 2.10702986e-01 4.35235232e-01 -5.40422022e-01\\n-2.79992908e-01 1.05556352e-02 4.99967575e-01 -4.24879134e-01\\n-1.14769138e-01 3.17645296e-02 -1.45947084e-01 1.13110274e-01\\n-3.70484859e-01 -2.17822924e-01 -3.51154208e-02 1.42038256e-01\\n-1.95038714e-03 -1.89433366e-01 -1.85011044e-01 3.93977724e-02\\n-2.08753720e-01 -1.40075684e-01 -4.71393257e-01 5.79361171e-02\\n-2.03131244e-01 -9.65416059e-02 -5.88907339e-02 -1.73853964e-01\\n-7.35427141e-02 -3.98241252e-01 -7.25910217e-02 -1.24516092e-01\\n2.12491721e-01 -2.14646846e-01 -7.43422583e-02 -2.59087414e-01\\n1.45040169e-01 1.89346939e-01 6.06501043e-01 1.30218625e-01\\n1.22446246e-01 -4.38830435e-01 -2.54959136e-01 1.37799591e-01\\n1.90084592e-01 1.58819690e-01 5.61140068e-02 2.59092838e-01\\n-2.48959899e-01 7.54178315e-02 1.40985519e-01 4.06763732e-01\\n-4.35636669e-01 1.10753790e-01 -1.89146280e-01 1.37781516e-01\\n2.08423316e-01 1.76207513e-01 -2.59276539e-01 1.01416551e-01\\n-2.16352284e-01 -4.27206516e-01 3.29995722e-01 -6.51073530e-02\\n-1.38386257e-03 1.95122156e-02 1.36364475e-01 8.45823362e-02\\n-2.37990469e-01 -3.51820476e-02 -1.37472332e-01 2.64489800e-01\\n1.65760919e-01 2.79269964e-01 -3.20247293e-01 -2.16819599e-01\\n-1.63795575e-01 2.19370767e-01 -9.74259451e-02 2.18969677e-02\\n3.88430431e-02 3.54745865e-01 -1.94028355e-02 3.52453962e-02\\n5.13705373e-01 3.70805264e-02 -1.98480785e-01 -1.58425108e-01\\n-2.10410401e-01 -3.66583377e-01 2.40572859e-02 -4.36119772e-02\\n1.82070062e-01 -4.18408841e-01 4.62703109e-02 -5.09650782e-02\\n-2.12733611e-01 -3.19931179e-01 -2.20053811e-02 -1.28458858e-01]]',\n", + " 'job_description': 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 25 million users worldwide work with documents. We love open-source and using the latest technologies to scale our distributed application to process millions of files every day. As a backend engineer at Smallpdf, you will not only contribute to our backend but also to our infrastructure and tooling. You will work in a cross-functional development team that includes experienced frontend engineers and designers. Our Backend Stack: Golang AWS Docker Ansible Terraform Full stack on Stackshare Responsibilities: Develop new features for Smallpdf Manage and automate our infrastructure that spans across more than 100 machines Analyze and monitor our application to spot problems Help designing our architecture Requirements Golang Experience Work independently and take responsibility and ownership of your work Ability to quickly learn new technologies 5+ years of experience with software development Good programming skills Good knowledge of linux Fluent in English (German is useful but not necessary) Full-time position Permanently based in Zurich (or willing to move) Swiss or EU passport holder (or other permit that allows you to work in Switzerland) Nice to Have: Experience with DevOps tools such as Docker Ansible Terraform Experience scaling (micro-) webservices to millions of users Experience with AWS Benefits The chance to personally impact a successful & rapidly growing startup Tricky challenges scaling a high-traffic web application Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich Do you like the job please apply here: https://apply.workable.com/smallpdf/j/A136D70A95/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Positivity\", \"Management\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Automation\", \"Tooling\", \"Nice (Unix Utility)\", \"Programming (Music)\", \"Scale (Map)\", \"Component Object Model (COM)\", \"Linux\", \"Machining\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Terraform\", \"Cross-Functional Coordination\", \"Personalization\", \"Web Traffic\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Software Development\", \"Ansible\", \"User Experience\", \"Custom Backend\", \"DevOps\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '114',\n", + " 'job_title': 'internship aircraft data analytics (all genders)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'job_description': 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.99787438e-01 3.88680488e-01 5.12711525e-01 3.34221646e-02\\n4.54908907e-01 -2.50785351e-01 1.49808303e-01 3.00734907e-01\\n-2.86636548e-03 -2.15177655e-01 -1.06541082e-01 -8.39200616e-02\\n-2.87547499e-01 -5.84743433e-02 2.21543759e-01 4.31679159e-01\\n3.42504054e-01 1.46747127e-01 -1.75969169e-01 4.20372099e-01\\n4.90603223e-02 -6.73034322e-03 -7.80840367e-02 5.52242875e-01\\n3.49670857e-01 -6.43901201e-03 -1.83283389e-01 -1.80383157e-02\\n-4.25572097e-01 -2.34121859e-01 2.85047859e-01 3.41164581e-02\\n-1.33114725e-01 -3.40724826e-01 2.60876380e-02 1.26151681e-01\\n-1.29233494e-01 1.65084302e-02 8.77343267e-02 1.28169432e-01\\n-4.83868301e-01 -3.83685738e-01 1.53332040e-01 1.00188509e-01\\n-2.10774645e-01 -1.85202271e-01 1.22674018e-01 3.70131433e-02\\n-6.68280721e-02 5.81257790e-02 -5.98498702e-01 2.83816487e-01\\n-1.82257771e-01 -2.59702325e-01 2.49934539e-01 5.60541570e-01\\n4.20425050e-02 -5.72159886e-01 -3.80833298e-01 -5.07479846e-01\\n-1.13961418e-04 -1.12598442e-01 1.33307502e-01 -1.07137881e-01\\n3.74992460e-01 -4.02879715e-02 -7.49126226e-02 4.38863665e-01\\n-8.96657705e-01 -1.07015312e-01 -1.77587092e-01 5.21622822e-02\\n-3.81578445e-01 9.39661544e-03 -2.80032039e-01 -4.99533862e-02\\n-1.17990144e-01 2.48122662e-01 -5.28157130e-02 9.56756249e-02\\n-1.81293577e-01 3.39145392e-01 1.41700553e-02 3.84177595e-01\\n3.47767651e-01 1.01955116e-01 2.40130469e-01 4.31879580e-01\\n-3.46908748e-01 4.11575824e-01 4.86100093e-02 -1.42896831e-01\\n3.05578560e-01 1.04223222e-01 4.78840798e-01 1.42097116e-01\\n3.64462622e-02 4.36429381e-02 -1.84361637e-01 1.31565973e-01\\n6.08636849e-02 -3.27105135e-01 4.58396226e-02 -1.60474572e-02\\n-3.15216303e-01 3.74880917e-02 -6.77751154e-02 2.85185039e-01\\n-2.79100984e-01 4.21636581e-01 2.35542253e-01 -1.42628476e-01\\n-1.57544374e-01 -4.75515395e-01 8.42341781e-03 -6.61245510e-02\\n5.75380363e-02 1.71618685e-01 2.12906227e-01 4.91724610e-02\\n3.29758614e-01 8.36819634e-02 1.36942148e-01 7.86839664e-01\\n-4.75108735e-02 8.89957771e-02 -1.80678979e-01 3.23428392e-01\\n2.50919491e-01 -2.88401634e-01 1.13073424e-01 2.74792612e-01\\n1.08794272e-01 -1.93136092e-02 -2.65237212e-01 3.20282191e-01\\n-2.25227967e-01 -1.19276516e-01 -3.13488215e-01 8.17107633e-02\\n-2.79159248e-01 -6.79297566e-01 5.07513463e-01 6.32417053e-02\\n3.71895939e-01 -7.29863495e-02 8.64674151e-02 6.97518066e-02\\n-2.78555211e-02 5.35677195e-01 7.58694336e-02 3.35297495e-01\\n-3.05055201e-01 -2.18531176e-01 -2.88143426e-01 3.43006700e-01\\n-1.92731574e-01 9.72019807e-02 -3.81274298e-02 -1.85649529e-01\\n1.71033576e-01 1.29542172e-01 -4.10371065e-01 2.67585278e-01\\n-1.79185838e-01 -6.35369420e-02 -1.01988934e-01 3.84791076e-01\\n-1.25150591e-01 1.33049145e-01 4.23233062e-02 -1.80492565e-01\\n4.85362947e-01 3.32791954e-01 1.30045354e-01 5.00894478e-03\\n3.88805419e-01 -2.76434392e-01 2.97124326e-01 1.27877772e-01\\n-7.05352187e-01 2.91676700e-01 8.22362024e-03 -1.54678956e-01\\n7.96267763e-02 1.81053244e-02 3.77083719e-01 -4.36537296e-01\\n-3.32233272e-02 -3.29103887e-01 -3.92924011e-01 -2.84194767e-01\\n-4.58156049e-01 7.29164630e-02 5.59028327e-01 -2.80488044e-01\\n-1.08930491e-01 1.64860755e-01 -5.33682346e-01 -1.17259488e-01\\n2.31352314e-01 1.09148003e-01 -2.32329480e-02 6.81808442e-02\\n-7.22167045e-02 -6.45712376e-01 8.18541870e-02 -4.43125904e-01\\n-4.95913595e-01 -4.88432683e-02 -2.91843653e-01 2.04655990e-01\\n3.36373178e-03 1.42852128e-01 -5.43188900e-02 7.86321238e-02\\n-3.01442057e-01 -1.94961637e-01 1.16675444e-01 8.68747011e-02\\n2.03810498e-01 -1.49582610e-01 -4.21693891e-01 4.12802130e-01\\n-3.09151530e-01 6.79318249e-01 2.81088471e-01 -8.70909393e-01\\n5.09479344e-01 3.27425748e-01 3.78732313e-03 -2.84561902e-01\\n3.34590554e-01 -3.46746087e-01 -7.82738179e-02 2.34951362e-01\\n-1.68779835e-01 -2.13370055e-01 2.60542691e-01 -2.88275510e-01\\n-3.36816162e-01 5.75696826e-01 1.97128579e-01 -1.43515542e-02\\n3.54744822e-01 -3.31361383e-01 -8.99749175e-02 7.56918639e-02\\n-1.57534108e-01 -2.58451253e-01 -3.19242507e-01 1.42208964e-01\\n8.06331076e-03 -4.13040191e-01 -1.05667368e-01 -2.83001363e-01\\n-1.57621861e-01 -4.24920291e-01 -2.87701905e-01 4.05744284e-01\\n1.88426435e-01 1.18277818e-01 -1.21309973e-01 1.11325243e-02\\n-1.10778905e-01 -6.76431835e-01 4.55302931e-02 1.20679781e-01\\n5.74198961e-01 3.53124380e-01 9.49393660e-02 -8.38986337e-02\\n-1.74233280e-02 4.80774134e-01 -3.46836507e-01 -3.98785591e-01\\n1.65391088e-01 3.99755463e-02 -4.15221155e-02 -1.99157968e-01\\n5.87486774e-02 4.34695721e-01 -1.32105768e-01 5.62235489e-02\\n-1.69933930e-01 -4.34655026e-02 3.03651512e-01 -2.08776310e-01\\n-2.82493591e-01 -2.10192546e-01 -8.77952576e-03 2.55711466e-01\\n-4.15756941e-01 -2.18705222e-01 5.19347727e-01 2.70714790e-01\\n3.15051615e-01 1.66559502e-01 2.45240495e-01 -1.85489044e-01\\n-1.42113104e-01 -4.96911079e-01 7.90381953e-02 1.61846653e-01\\n1.09909035e-01 7.37418085e-02 -1.52373195e-01 -5.70682526e-01\\n-2.94324613e+00 -1.10809505e-01 1.51190683e-01 -2.90163577e-01\\n1.27602488e-01 -1.07621089e-01 -9.85765532e-02 -5.64506203e-02\\n-2.05774531e-01 1.55145153e-01 -2.83037752e-01 -1.33160740e-01\\n5.27099259e-02 3.74246508e-01 1.01945475e-01 1.46669805e-01\\n1.64357826e-01 -2.49142736e-01 -1.18696459e-01 3.58268172e-01\\n-6.68476224e-02 -6.56991184e-01 1.38739929e-01 -3.40082161e-02\\n2.39793539e-01 2.15252027e-01 -3.80507499e-01 -1.32219017e-01\\n-4.02002223e-02 -2.25430027e-01 4.08227295e-02 -1.31443486e-01\\n-2.10785657e-01 3.99372548e-01 -5.77266235e-03 -4.83675365e-04\\n5.05557144e-03 -3.05415660e-01 -1.52519211e-01 -4.62284356e-01\\n1.34858549e-01 -5.89831531e-01 -3.04082036e-02 -1.72808021e-01\\n4.85518783e-01 -3.09554338e-01 1.25503793e-01 1.08046539e-01\\n1.79840043e-01 1.05049111e-01 -1.24708079e-01 5.14650065e-03\\n-3.96099329e-01 -3.04176003e-01 3.10058035e-02 -2.01345876e-01\\n5.99612474e-01 3.06411266e-01 -2.39533260e-01 -5.46262898e-02\\n3.09009939e-01 -4.13551539e-01 -2.82964498e-01 -4.47592497e-01\\n-1.02171615e-01 -2.76327133e-01 -6.97009563e-01 -4.49805349e-01\\n-1.55987412e-01 -2.75129844e-02 -2.11054370e-01 7.05121100e-01\\n-3.51936519e-01 -3.39003444e-01 7.65312910e-02 -7.07638979e-01\\n4.04674858e-02 -2.65802860e-01 -4.94637638e-02 -1.66820273e-01\\n-3.45270008e-01 -4.83403891e-01 1.32178709e-01 -9.00022127e-03\\n-2.48095021e-01 -1.01937771e-01 7.26139471e-02 -1.47772521e-01\\n-2.21987009e-01 -3.15323263e-01 5.51963985e-01 1.35870188e-01\\n3.67600948e-01 4.97722887e-02 3.87265325e-01 5.14497496e-02\\n4.29017484e-01 -1.96116790e-01 1.76878035e-01 -4.52693492e-01\\n1.87160775e-01 1.46473929e-01 6.63503230e-01 -2.68291831e-01\\n1.16697907e-01 2.92421907e-01 -2.46145919e-01 -3.87510322e-02\\n4.61821318e-01 1.35693252e-01 -9.20522287e-02 -9.91980061e-02\\n3.31150025e-01 -5.05827606e-01 -2.26326525e-01 1.44774139e-01\\n1.58808678e-01 8.79238188e-01 2.78992634e-02 -4.37269837e-01\\n-2.86092758e-01 4.83073026e-01 -2.42408618e-01 -1.98687967e-02\\n-2.81737894e-02 1.38927311e-01 -2.61011478e-02 2.00034812e-01\\n-1.15942638e-02 -1.82831407e-01 -2.53135502e-01 -1.70219213e-01\\n5.24250232e-03 8.94784257e-02 1.38937756e-01 1.13857510e-02\\n-1.19031183e-02 -2.52594620e-01 -2.52161294e-01 7.42999092e-02\\n1.93140641e-01 2.18119249e-01 4.06354330e-02 -2.58527994e-01\\n-8.34369734e-02 3.07861418e-01 -1.91760272e-01 2.72607535e-01\\n-2.24449322e-01 3.56591679e-02 -5.80585480e-01 -1.09115519e-01\\n-1.62448838e-01 -3.69611084e-01 9.88844633e-02 2.30859637e-01\\n2.23811820e-01 6.39791340e-02 7.84875527e-02 -5.90556383e-01\\n4.12032783e-01 7.85621256e-02 7.13188052e-02 9.74066928e-03\\n-1.14741117e-01 3.85012716e-01 5.70096448e-02 4.70630862e-02\\n-2.59257764e-01 9.80976373e-02 -1.94565281e-01 -3.30283761e-01\\n1.47083968e-01 -4.42808539e-01 -1.70220971e-01 3.83516610e-01\\n1.68483406e-01 -3.09311986e-01 -1.30253673e-01 1.49976447e-01\\n2.50777096e-01 -4.05796707e-01 -8.16257969e-02 -8.38466212e-02\\n1.62272945e-01 1.14473738e-02 2.63564438e-01 -3.91524673e-01\\n-8.89681727e-02 -7.08295330e-02 -3.50106061e-02 3.09285045e-01\\n1.17080413e-01 5.06239617e-03 -1.59913063e-01 -1.24797203e-01\\n4.40937489e-01 3.63734812e-02 1.99766196e-02 -9.18133035e-02\\n1.27462745e-01 -2.45001644e-01 -5.79759836e-01 -8.40048045e-02\\n2.05185171e-03 -1.27858534e-01 1.65123835e-01 5.85729405e-02\\n7.55448118e-02 6.15827553e-02 -3.74145687e-01 -1.89364091e-01\\n-1.95206881e-01 -2.72158235e-01 2.26625711e-01 -4.27939564e-01\\n-1.32393762e-01 3.23188975e-02 -5.34779012e-01 4.03654315e-02\\n-3.07216495e-01 -6.51762635e-02 6.36674911e-02 5.03017716e-02\\n-4.18840647e-01 -1.34662166e-01 -1.62633732e-02 1.86304107e-01\\n-3.28659594e-01 -3.90024185e-01 1.16264686e-01 -1.07834268e+00\\n1.07944861e-01 1.70327261e-01 -9.38545242e-02 -6.35712817e-02\\n-1.06335506e-01 -6.03880703e-01 1.98819339e-01 -5.22711217e-01\\n5.73578253e-02 4.29222584e-02 -2.24314690e-01 -2.83157438e-01\\n1.44145757e-01 -1.61291301e-01 -4.76190150e-01 3.61006916e-01\\n-4.13230479e-01 3.58289570e-01 1.93434451e-02 3.04508209e-02\\n-4.30615172e-02 -2.59114623e-01 1.17919222e-01 -2.78860509e-01\\n-4.62303549e-01 -1.16533473e-01 -4.11942542e-01 -1.85845792e-01\\n5.30865788e-02 -8.76148343e-02 -1.29997686e-01 1.52270839e-01\\n2.36377850e-01 2.21895054e-01 -7.30814263e-02 -2.21643880e-01\\n1.21444710e-01 -3.65290046e-01 -1.95311550e-02 -2.87568271e-01\\n-5.65160029e-02 -7.58037791e-02 2.81818181e-01 -6.01227097e-02\\n5.28819859e-02 -3.34945798e-01 4.30148840e-01 -2.89816767e-01\\n-3.27629149e-01 -1.36574969e-01 4.12847474e-02 -2.27427669e-02\\n1.70887306e-01 -6.48625493e-01 1.25836432e-01 2.79436290e-01\\n8.67089406e-02 7.36026317e-02 2.34564394e-01 -3.72098386e-02\\n4.41464260e-02 7.45565668e-02 -4.99303043e-01 5.26763760e-02\\n7.64101446e-01 2.76514798e-01 -1.21437453e-01 2.71814197e-01\\n1.07413113e-01 4.32371169e-01 4.95338827e-01 -1.01882100e-01\\n-3.75609808e-02 1.80847526e-01 2.77970098e-02 -6.54942274e-01\\n-2.32824191e-01 1.08990856e-01 -1.88157171e-01 -2.11990446e-01\\n6.92263663e-01 2.68545836e-01 -3.71630460e-01 -3.08023751e-01\\n-2.31907833e-02 -6.97829202e-02 2.42627740e-01 -6.79927394e-02\\n1.81809403e-02 -1.16729192e-01 5.57809174e-01 8.97161588e-02\\n3.05483162e-01 5.68135738e-01 -1.42414331e-01 -4.22796339e-01\\n-1.35092854e-01 2.70414382e-01 1.29718319e-01 4.17801708e-01\\n-1.29547626e-01 5.76308332e-02 -6.18746085e-03 1.23684872e-02\\n-1.02868244e-01 3.36921513e-01 1.35770440e-01 1.06349245e-01\\n3.19107533e-01 -4.22131680e-02 3.67348701e-01 4.27003473e-01\\n7.67504126e-02 5.37790835e-01 2.68729597e-01 2.64209453e-02\\n2.92664498e-01 5.71823716e-01 3.74563605e-01 1.04903579e-01\\n-2.64029689e-02 3.02820742e-01 1.91343099e-01 -8.86297673e-02\\n5.17580450e-01 3.58687252e-01 3.96968096e-01 8.29537332e-01\\n2.80321866e-01 3.83646607e-01 8.01386833e-01 -6.76360130e-01\\n-2.58799255e-01 -6.14168718e-02 5.73191524e-01 -1.29796937e-01\\n-1.88400313e-01 1.84459448e-01 -2.81503648e-01 4.09835845e-01\\n-4.95754510e-01 -1.13069482e-01 2.34370250e-02 5.65399565e-02\\n3.50160412e-02 2.62797233e-02 -3.27942252e-01 3.91642600e-02\\n-2.51078993e-01 -1.71720043e-01 -4.06690896e-01 -2.13636532e-01\\n-2.92580336e-01 2.44008657e-02 -5.91381975e-02 -7.04076961e-02\\n-2.13120952e-01 -4.87040043e-01 -8.53844211e-02 -4.65814676e-03\\n3.24034899e-01 -1.04784705e-01 1.11053465e-02 -2.02405989e-01\\n1.58589751e-01 4.15374756e-01 5.73277235e-01 -1.69319198e-01\\n6.11902550e-02 -1.33756250e-01 -3.27597141e-01 1.40047699e-01\\n1.45732928e-02 -2.76225954e-02 1.90883949e-01 4.71753776e-01\\n-2.60424048e-01 -5.25301173e-02 1.61214888e-01 3.57157409e-01\\n-3.78179282e-01 -1.37177497e-01 -1.14143416e-01 2.26376668e-01\\n8.58233497e-02 1.34727195e-01 -2.92938828e-01 -9.92484912e-02\\n-2.41253883e-01 -5.13619900e-01 3.84589821e-01 -1.46470234e-01\\n-2.58731097e-01 3.30743015e-01 1.81713611e-01 2.44200975e-01\\n-2.09108278e-01 -7.32990876e-02 7.86402151e-02 3.20835739e-01\\n8.17249268e-02 3.81279618e-01 -1.44462287e-01 -2.46618703e-01\\n-2.57069796e-01 3.19232285e-01 -1.79601297e-01 1.28266349e-01\\n-1.27613410e-01 2.99779952e-01 -1.94051152e-03 1.32326305e-01\\n2.41435647e-01 2.25244481e-02 -2.70891935e-01 -2.75985330e-01\\n-1.65368527e-01 -2.67843246e-01 6.09235987e-02 -1.97763555e-02\\n2.54702091e-01 -2.36386135e-01 -3.21555100e-02 -1.47397175e-01\\n-8.98539871e-02 -2.38863349e-01 -1.75644532e-01 6.26370087e-02]]',\n", + " 'job_description': \"Job Informationen Your Tasks: - Use newest technologies such as Docker, React, and JSONiq - Work in a productive and agile development environment using the latest technology for continuous integration and releases - Work on web application products, web application frameworks, and/or web UI components - Work on C++/C#/Java/Javascript/JSONiq codebases - Work in Linux/bash or Windows environments - Work on customer projects, but also contribute to our vision - Work on REST API implementation, documentation, or test environments - Support customers - Help create new opportunities and support sales processes Qualifications: - Master's or PhD in Computer Science with a strong track record - Knowledge of the essentials of database systems, such as data warehouses and NoSQL databases (including document stores, column stores, or graph databases—any of those is beneficial) - Excellent command of at least one object-oriented programming language, such as C++, Java, or C# - Good command of at least one functional language, such as Scala, Haskell, F#, CAML, XQuery, or JSONiq - Good degree of familiarity with basic web technologies, such as Javascript, CSS, HTML, XML, JSON, etc. - Knowledge of XBRL is a major asset - Familiarity or experience with software development methodologies such as scrum, continuous integration, test-driven development, etc. - Fluent English, both spoken and written; additional languages are an asset - Good entrepreneurial spirit is essential: openness, motivation, autonomy, communication, team spirit, initiative, respect, courage, honesty, and integrity Benötigte Skills OO-Design / Analyse C++ C# JAVA JSON\",\n", + " 'soft_skills': '[\"Communications\", \"Integration\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Codebase\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Agility\", \"Development Environment\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Application Frameworks\", \"Object Oriented Programming Language\", \"Continuous Integration\", \"Customer Support Analyst\", \"C++ (Programming Language)\", \"Haskell (Programming Language)\", \"Scala (Programming Language)\", \"Linux\", \"Track (Rail Transport)\", \"Scrum (Software Development)\", \"Sales Process\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"XBRL (Extensible Business Reporting Language)\", \"Web Application Frameworks\", \"Help Desk Support\", \"React.js\", \"Docker (Software)\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"F# (Programming Language)\", \"Software Development Methodologies\", \"Bash (Scripting Language)\", \"Clinical Data Warehouse\", \"Windows Preinstallation Environments\", \"Database Systems\", \"Graph Database\", \"Software Development\", \"Test Environment Management\", \"XQuery\", \"Additives\", \"Java (Programming Language)\", \"Web UI\", \"Application Programming Interface (API)\", \"Extensible Markup Language (XML)\", \"JSON\", \"Object-Oriented Programming (OOP)\", \"RESTful API\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data analyst (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.11146176e-01 2.39136994e-01 2.90398657e-01 6.72261640e-02\\n4.67736870e-01 -9.18641686e-02 3.97096761e-02 3.05283010e-01\\n-3.36161889e-02 -3.97795141e-01 1.86883882e-02 -2.00990930e-01\\n-2.05021411e-01 -2.35511735e-02 -6.09298535e-02 3.74364942e-01\\n3.14212054e-01 1.27775088e-01 -6.98458254e-02 3.12407762e-01\\n1.45176515e-01 4.35345173e-02 -1.98234499e-01 6.25866890e-01\\n4.50871587e-01 -1.47546995e-02 -1.56236291e-02 1.13502875e-01\\n-2.38367617e-01 -2.32878581e-01 3.74210626e-01 2.20305279e-01\\n-1.62239343e-01 -3.08662742e-01 -9.92584676e-02 1.70678794e-01\\n-5.39318696e-02 8.47874209e-02 -2.23041736e-02 1.64997160e-01\\n-4.43314523e-01 -1.50232136e-01 -4.09958661e-02 1.29467383e-01\\n-2.19754845e-01 -2.51332641e-01 1.42236307e-01 -1.28595188e-01\\n2.61874795e-01 5.05346768e-02 -5.89948416e-01 4.53012794e-01\\n-2.18548268e-01 -1.04258947e-01 1.92739040e-01 5.31125367e-01\\n6.16231486e-02 -4.91898745e-01 -4.69496667e-01 -2.60333568e-01\\n1.46780655e-01 -1.56618625e-01 2.47780476e-02 -3.58066887e-01\\n4.70109582e-01 9.63611081e-02 1.18217655e-01 2.74166346e-01\\n-7.71098852e-01 2.31758263e-02 -3.16714168e-01 1.75135082e-03\\n-4.54640388e-01 -7.57691935e-02 -3.10515761e-01 1.04245499e-01\\n-1.58402070e-01 3.70413184e-01 1.12624932e-02 2.32621282e-02\\n-1.45271048e-01 2.29412317e-01 -2.66939670e-01 2.36535490e-01\\n2.75408685e-01 7.42758662e-02 1.51272535e-01 2.91059673e-01\\n-4.29618418e-01 4.08743739e-01 2.19384152e-02 -2.38176927e-01\\n2.33093336e-01 2.21849307e-01 3.86615813e-01 1.24891602e-01\\n1.73213035e-01 1.52267575e-01 -2.33110532e-01 3.92894864e-01\\n2.57550716e-01 -4.08816308e-01 6.20822236e-02 -1.45078123e-01\\n9.10583436e-02 -8.66806731e-02 3.43637615e-02 1.48119822e-01\\n-2.32768223e-01 4.60640490e-01 1.36696815e-01 -1.41709283e-01\\n-6.29564077e-02 -4.81269240e-01 -1.62305698e-01 -3.27140689e-02\\n7.92074353e-02 4.39742059e-02 1.67982981e-01 2.54728466e-01\\n2.62138724e-01 6.84838220e-02 1.69045091e-01 7.56495953e-01\\n-1.26601845e-01 1.12024628e-01 -1.41819611e-01 3.01273346e-01\\n2.21235931e-01 -2.70826876e-01 2.78461546e-01 4.53133732e-01\\n1.90669015e-01 -1.73137933e-01 -2.82631457e-01 2.21721619e-01\\n-1.44065320e-01 -9.34531391e-02 -3.91228259e-01 1.36929303e-01\\n2.69087613e-01 -3.57735693e-01 6.72580719e-01 1.49582848e-01\\n2.45194852e-01 7.80583099e-02 -1.55788623e-02 -1.30698770e-01\\n-4.36149128e-02 2.64012069e-01 1.34398162e-01 3.10557485e-01\\n-2.63451964e-01 -1.91503137e-01 -1.76833093e-01 8.09168667e-02\\n-4.48427796e-01 7.21118152e-02 -9.89824533e-02 -2.68950202e-02\\n2.14500323e-01 -2.85551287e-02 -3.70262802e-01 1.00155491e-02\\n-8.70728195e-02 -1.81526154e-01 1.52622461e-01 4.11153823e-01\\n-9.36509855e-03 2.46026963e-01 -1.35904059e-01 -5.58928922e-02\\n7.83346057e-01 1.72828659e-01 1.17035866e-01 -2.60019824e-02\\n3.52899522e-01 -3.27306613e-02 2.50832081e-01 1.74996436e-01\\n-7.91738033e-01 3.01586330e-01 -5.47335446e-02 -3.43929827e-01\\n2.41265878e-01 8.60665664e-02 4.28674698e-01 -4.01118368e-01\\n1.48426099e-02 -2.10689008e-01 -3.43077928e-01 -2.08893120e-01\\n-4.12101448e-01 -7.70077705e-02 3.63120854e-01 -3.92112583e-01\\n-1.26116022e-01 1.61451533e-01 -5.51733792e-01 -1.62621871e-01\\n8.11881199e-02 4.88931276e-02 1.87472507e-01 1.75200582e-01\\n-4.73893993e-02 -6.77190542e-01 -1.61201674e-02 -4.77974623e-01\\n-5.38287342e-01 1.16164260e-01 -4.74248141e-01 3.79593611e-01\\n1.23104841e-01 -2.29068901e-02 -2.15525210e-01 2.24809483e-01\\n-2.39478484e-01 -2.39135846e-02 9.75539014e-02 5.92561439e-02\\n1.82818696e-01 5.38635775e-02 -4.57788795e-01 3.51053119e-01\\n-1.28339663e-01 5.41842461e-01 1.60109580e-01 -6.45862103e-01\\n5.85337758e-01 2.81759024e-01 -5.23681045e-02 -3.67121845e-01\\n5.14721453e-01 -2.45323122e-01 -1.36794776e-01 3.26134078e-02\\n-3.29582632e-01 -3.10149074e-01 1.65862188e-01 5.08003943e-02\\n-2.42900312e-01 5.14442205e-01 1.48581460e-01 7.98721611e-03\\n2.41281405e-01 -2.76104212e-01 -2.72475537e-02 2.36466959e-01\\n-1.76059365e-01 -2.04537705e-01 -3.59438539e-01 -8.69369209e-02\\n-6.31464422e-02 -4.35637712e-01 -7.06826448e-02 -3.22943330e-01\\n-2.48178348e-01 -3.95703912e-01 -3.32487941e-01 4.96108174e-01\\n2.13452309e-01 1.44497991e-01 2.19330117e-02 3.61012085e-03\\n-1.15730695e-01 -7.52296329e-01 2.15175860e-02 1.27884224e-01\\n4.23383772e-01 2.19577149e-01 1.08746946e-01 -2.23259747e-01\\n1.15951747e-01 6.33750677e-01 -4.12900329e-01 -4.04958874e-01\\n8.42166096e-02 2.42692947e-01 -1.09316796e-01 -1.01274751e-01\\n3.74676869e-03 5.04493177e-01 -2.80864596e-01 6.11973070e-02\\n-7.58251175e-02 -2.68021524e-01 3.58317584e-01 -1.20434061e-01\\n-2.82962710e-01 -2.45179549e-01 -2.45533884e-01 1.78346798e-01\\n-5.27869880e-01 -4.23619866e-01 3.87473166e-01 2.88734734e-01\\n1.86963141e-01 3.50037329e-02 1.02335550e-01 -4.64270711e-02\\n-1.57854274e-01 -4.39671606e-01 2.50005364e-01 1.52343020e-01\\n6.13475889e-02 2.33513087e-01 -1.95682943e-01 -5.73676109e-01\\n-3.49422789e+00 -6.75360784e-02 2.13890582e-01 -2.54013956e-01\\n2.12645367e-01 4.69190069e-02 7.90548399e-02 -1.11705221e-01\\n-3.43133509e-01 1.22256674e-01 -2.37963364e-01 -2.34372005e-01\\n-3.24390344e-02 4.20925260e-01 1.61963359e-01 6.78747147e-02\\n2.07169950e-01 -2.55124152e-01 -1.45022094e-01 3.11259210e-01\\n-1.39891416e-01 -4.61999357e-01 6.88784420e-02 -4.90603000e-02\\n1.85138121e-01 3.43550116e-01 -1.98736668e-01 -1.55047953e-01\\n-2.49702513e-01 -2.97027469e-01 1.72101911e-02 -2.60298371e-01\\n-1.39920339e-01 2.30585366e-01 1.44387588e-01 1.01313949e-01\\n-6.12024665e-02 -3.14160198e-01 -6.77473843e-02 -5.13232589e-01\\n-4.88445498e-02 -3.88827294e-01 -3.11686601e-02 -1.89167485e-01\\n7.96588957e-01 -1.73933059e-01 1.31757602e-01 5.66122532e-02\\n1.86294615e-01 1.30174458e-01 7.95167387e-02 5.70563860e-02\\n-1.87310830e-01 -1.92057058e-01 -2.69195378e-01 -2.04498693e-01\\n6.55414701e-01 2.99004734e-01 -1.74768910e-01 -1.14557110e-01\\n2.02871352e-01 -4.24003184e-01 -3.15629900e-01 -2.77638942e-01\\n-9.69398096e-02 -2.74193108e-01 -4.93626118e-01 -3.56409341e-01\\n-1.75905108e-01 -3.78155485e-02 -1.10586822e-01 5.74131727e-01\\n-3.95922482e-01 -3.69004101e-01 -2.52287053e-02 -4.76713926e-01\\n1.79998487e-01 -2.77745962e-01 2.28470340e-02 -4.69184443e-02\\n-3.60951602e-01 -6.40597463e-01 -1.33063942e-01 -6.86763898e-02\\n-1.69955894e-01 -3.69998127e-01 -4.64197919e-02 -1.25331938e-01\\n-4.13509786e-01 -7.01379120e-01 3.71452808e-01 3.18277925e-02\\n2.77836591e-01 2.33947918e-01 2.59112298e-01 7.26864636e-02\\n4.94323790e-01 -1.10832341e-01 3.34795713e-02 -3.13854486e-01\\n6.31374940e-02 -1.89838409e-01 6.00906670e-01 -2.14308321e-01\\n-1.43257463e-02 5.43035530e-02 -2.88209081e-01 -1.76593103e-02\\n3.35261792e-01 -4.51940298e-02 6.09509535e-02 -1.37918174e-01\\n4.07751232e-01 -2.84172863e-01 -2.38206550e-01 2.26504251e-01\\n8.88334662e-02 5.83834469e-01 8.97526965e-02 -3.04954678e-01\\n-9.16488841e-02 4.44887698e-01 -2.00251624e-01 -4.79343049e-02\\n-1.48604453e-01 1.67129170e-02 -1.38177127e-01 2.52459079e-01\\n7.11158812e-02 -1.89010307e-01 -7.25988001e-02 -2.97308490e-02\\n-4.05714177e-02 2.88314700e-01 2.54718333e-01 -1.05478473e-01\\n-1.06964335e-02 -1.98784798e-01 -9.49203745e-02 1.21635526e-01\\n2.06361264e-01 3.38137209e-01 6.96667433e-02 -2.31046945e-01\\n-1.68194458e-01 3.03568035e-01 4.44073826e-02 2.44361777e-02\\n-1.92213088e-01 8.31995904e-02 -4.74086881e-01 -2.16079816e-01\\n-3.15263063e-01 -3.54919076e-01 2.37229243e-01 2.40904644e-01\\n1.36307985e-01 -2.25260202e-02 1.29438326e-01 -5.55113852e-01\\n2.18901113e-01 2.41248056e-01 2.08037421e-01 5.78624681e-02\\n-1.57106131e-01 3.58365804e-01 -6.48141950e-02 -1.53316185e-01\\n-1.52344659e-01 1.53613091e-01 -1.76706254e-01 -1.65021494e-01\\n2.33898431e-01 -4.29733545e-01 -1.07338585e-01 4.52064395e-01\\n2.15695009e-01 -1.56864017e-01 -3.44151855e-01 2.93253422e-01\\n-1.32898182e-01 -2.37496436e-01 -2.68674761e-01 -1.11861162e-01\\n1.70387059e-01 1.13470405e-01 1.85515732e-01 -2.20539033e-01\\n-8.65486041e-02 4.12845165e-02 -1.63014472e-01 3.14923882e-01\\n3.07883285e-02 -6.74817115e-02 -3.19910228e-01 -6.12908341e-02\\n4.40704405e-01 7.67102838e-03 -5.92696741e-02 -8.13967586e-02\\n1.94043547e-01 -2.70835936e-01 -4.43066657e-01 -3.19895800e-03\\n-3.60884927e-02 -2.51245588e-01 -4.75164205e-02 2.03575760e-01\\n-1.11812867e-01 1.17998362e-01 -5.84350884e-01 -2.75305152e-01\\n-4.60165620e-01 -3.09753537e-01 2.93318257e-02 -2.59893268e-01\\n7.34278336e-02 -1.64992779e-01 -4.57648486e-01 1.76786691e-01\\n-2.39894867e-01 -5.06835207e-02 1.40728399e-01 1.23337083e-01\\n-3.51873070e-01 -2.61124432e-01 2.81367507e-02 1.68059170e-01\\n-3.21979046e-01 -1.81134939e-01 8.52563977e-02 -8.83151948e-01\\n1.40701473e-01 3.83930728e-02 -1.60850376e-01 -3.55063006e-03\\n-1.63479403e-01 -5.42055547e-01 1.95036083e-03 -5.38012087e-01\\n-8.35062563e-02 1.22421332e-01 -2.37064302e-01 -2.10910305e-01\\n1.84065998e-01 -1.50267959e-01 -4.04174268e-01 4.15074587e-01\\n-2.71812558e-01 4.20973003e-01 -1.73982680e-01 1.04589418e-01\\n-6.80067912e-02 -1.81918353e-01 4.02636938e-02 -2.39861324e-01\\n-4.48657870e-01 -2.48203337e-01 -1.94506347e-01 -1.20701671e-01\\n1.56704098e-01 -4.47014183e-01 -6.41594082e-02 1.65948048e-01\\n3.35748494e-01 6.74316064e-02 -6.04099967e-02 -8.26721340e-02\\n1.63759202e-01 -6.51322722e-01 -5.36895804e-02 -2.14780778e-01\\n-8.72551128e-02 -6.94406480e-02 2.19604433e-01 6.30603731e-03\\n2.03320086e-01 -2.10058764e-01 3.88966173e-01 -4.42216754e-01\\n-1.75246209e-01 1.17239505e-01 7.84682333e-02 -1.87138811e-01\\n1.87136471e-01 -5.00908196e-01 1.68356467e-02 4.43145037e-01\\n1.45313323e-01 2.06638202e-02 1.32052138e-01 5.64344712e-02\\n-1.09408908e-01 2.68779397e-01 -2.59354949e-01 9.61166695e-02\\n6.03839278e-01 2.77027667e-01 1.16187841e-01 1.03234105e-01\\n1.24363542e-01 2.59936631e-01 4.98579562e-01 1.73416823e-01\\n1.98958255e-02 1.88118875e-01 1.11507840e-01 -4.11275744e-01\\n1.81703977e-02 1.41565993e-01 -2.49772146e-01 -2.42393494e-01\\n5.63166380e-01 4.73994672e-01 -6.61361516e-01 -2.61521369e-01\\n-5.62981702e-02 -1.01802915e-01 4.04787481e-01 4.12870385e-02\\n-1.20411702e-02 -1.45893574e-01 4.82355952e-01 -5.69226071e-02\\n-5.45800570e-03 4.72445220e-01 -7.99961537e-02 -9.88873094e-02\\n-3.49095240e-02 2.28066310e-01 6.70130253e-02 6.20501220e-01\\n-1.72415584e-01 2.73590624e-01 -1.94834247e-01 -1.59259641e-03\\n-7.86950514e-02 1.40784889e-01 2.50235498e-01 1.97083335e-02\\n2.09688634e-01 3.72091979e-02 3.98986816e-01 5.09649038e-01\\n4.81452644e-02 4.27708000e-01 2.37353697e-01 -1.38520095e-02\\n3.19628447e-01 5.18140674e-01 2.48830721e-01 1.79288089e-01\\n-5.46329245e-02 2.34286606e-01 1.31370991e-01 -5.62561564e-02\\n4.93212581e-01 3.49074483e-01 6.64937645e-02 8.27935815e-01\\n2.76108474e-01 4.11038131e-01 5.29971719e-01 -5.89560151e-01\\n-2.87481576e-01 2.62181938e-01 5.14390290e-01 -2.24307090e-01\\n-1.83915887e-02 8.86418819e-02 -2.49171734e-01 3.58812451e-01\\n-4.94286478e-01 -1.42611936e-01 5.19214571e-03 1.49646103e-01\\n3.65920514e-02 -1.87115803e-01 -3.37863564e-01 -5.69242164e-02\\n-8.12890530e-02 1.14821516e-01 -4.45865571e-01 -2.48538092e-01\\n-2.85956979e-01 -7.40103945e-02 -5.68135306e-02 -1.03276350e-01\\n1.20315842e-01 -3.10691357e-01 -4.02096696e-02 -2.27799919e-02\\n3.91716212e-01 -2.66793311e-01 -1.35580033e-01 -9.92377102e-02\\n2.05038175e-01 3.00713867e-01 5.45770109e-01 -1.16883837e-01\\n6.89519048e-02 -1.42826974e-01 -1.73881114e-01 8.33186507e-02\\n1.43051641e-02 1.29887804e-01 1.29729494e-01 2.14920774e-01\\n-2.70766467e-01 -2.13403910e-01 1.92004085e-01 3.33850175e-01\\n-4.80226636e-01 -6.80399314e-02 -1.25760242e-01 2.23670140e-01\\n-2.79381480e-02 1.29504248e-01 -2.66258895e-01 1.70314372e-01\\n-2.64819741e-01 -3.20332706e-01 3.34748477e-01 -3.92053574e-02\\n-4.73633558e-02 1.37564570e-01 3.22856426e-01 1.63980454e-01\\n-1.50034964e-01 -6.38918132e-02 -8.22629109e-02 2.60850549e-01\\n-1.00972950e-01 3.52459103e-01 -1.36665376e-02 -3.84961545e-01\\n-2.29706496e-01 2.25182116e-01 -8.39608833e-02 1.11901775e-01\\n-1.02839261e-01 3.37843090e-01 -2.22788919e-02 5.00880219e-02\\n4.07228440e-01 1.11921400e-01 -3.06955397e-01 -2.50825197e-01\\n-2.12032944e-01 -6.51813298e-02 3.31513770e-02 5.26088141e-02\\n2.28047259e-02 -3.78458411e-01 -1.68757498e-01 -1.24368958e-01\\n-7.51227140e-02 -2.64934540e-01 -5.47827929e-02 8.86953324e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Our Requirements: You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization. You are always curious to try out new tools and libraries for the analysis and visualisation of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills SQL MySQL NoSQL Python Python',\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Proactivity\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Python Server Pages\", \"NoSQL\", \"Tooling\", \"Accessioning\", \"Advising\", \"Agility\", \"Statistics\", \"Machine Learning\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Dataset\", \"Data Visualization\", \"Machine Learning Methods\", \"Machine Learning Algorithms\", \"Scalability\", \"Electronic Data Processing\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Corsican', 'Portuguese', 'Javanese']\"},\n", + " {'company_id': '119',\n", + " 'job_title': 'database engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.20975100e-01 3.31103057e-01 4.70755935e-01 -1.95247605e-01\\n5.77714682e-01 -1.13337353e-01 6.08497560e-02 5.19751430e-01\\n-1.07258186e-01 -3.00200671e-01 -1.37486890e-01 -2.78690457e-01\\n-2.70901006e-02 -6.92348275e-03 8.78744125e-02 3.75383258e-01\\n3.39582801e-01 1.46115214e-01 -1.12793058e-01 3.51523459e-01\\n1.93994254e-01 -7.74465725e-02 9.23144743e-02 6.02107406e-01\\n5.24787128e-01 5.80808185e-02 -5.59134707e-02 -1.09901510e-01\\n-4.54412788e-01 -4.27330345e-01 5.87014198e-01 -3.26303579e-02\\n4.45826761e-02 -1.42850906e-01 1.39603287e-01 -5.27804531e-02\\n-1.98991850e-01 -2.13811278e-01 -1.65293679e-01 2.04368174e-01\\n-4.54901189e-01 -1.14412948e-01 3.45300771e-02 6.96369857e-02\\n-2.12178931e-01 -4.11561549e-01 1.87091395e-01 -5.93959130e-02\\n2.06382617e-01 1.77657992e-01 -4.71304476e-01 2.88921207e-01\\n-3.05169284e-01 -1.74003825e-01 4.70773876e-01 7.03273654e-01\\n-1.29070714e-01 -6.34591222e-01 -5.46461761e-01 -2.74270147e-01\\n2.61789620e-01 -1.58867031e-01 1.42904267e-01 -3.08122009e-01\\n2.87409514e-01 1.95219487e-01 1.13764204e-01 3.18075627e-01\\n-8.32440495e-01 -3.74555662e-02 -2.66310841e-01 -1.91794764e-02\\n-3.84853274e-01 -2.24027727e-02 -2.37290904e-01 1.14127863e-02\\n-1.20607495e-01 4.21901613e-01 -8.34502652e-02 8.82587656e-02\\n-9.66982916e-02 2.49092847e-01 -2.66199172e-01 3.49167109e-01\\n1.48409143e-01 7.55926371e-02 8.47907364e-02 2.82886773e-01\\n-2.58221120e-01 4.40734595e-01 2.56769657e-01 -2.52138168e-01\\n1.78258345e-01 9.95309874e-02 4.15538639e-01 -2.69203018e-02\\n1.09394751e-01 1.96203832e-02 -1.89602315e-01 3.37628514e-01\\n3.24339569e-01 -1.09681368e-01 6.62792847e-03 -8.34405348e-02\\n-6.55780584e-02 -1.64378546e-02 5.98318949e-02 2.78562099e-01\\n-2.14364693e-01 5.64371169e-01 1.31338924e-01 -1.54747367e-01\\n-1.12938099e-02 -6.85800612e-01 -8.56071562e-02 -8.02856162e-02\\n6.34073094e-02 3.59586850e-02 1.84595734e-01 2.64549404e-01\\n3.21342379e-01 -1.24180131e-01 1.31067127e-01 7.53150105e-01\\n7.74250226e-03 1.81699283e-02 -1.79646626e-01 2.59835660e-01\\n-2.02473998e-02 -2.09481910e-01 2.21969217e-01 2.03542784e-01\\n-1.12804919e-02 -7.22033381e-02 -2.32993200e-01 2.95291454e-01\\n-1.84093252e-01 -3.71824652e-01 -3.15884292e-01 1.72238663e-01\\n-9.19578001e-02 -3.60431969e-01 4.27557141e-01 6.80601224e-02\\n1.47571892e-01 -1.16997041e-01 2.25842055e-02 -6.12978041e-02\\n1.93745121e-02 2.87616849e-01 8.94724727e-02 -2.66900472e-02\\n-1.90230221e-01 -2.64949381e-01 -2.94142991e-01 7.18815625e-02\\n-1.58230081e-01 5.93176633e-02 -4.63017933e-02 -1.49602711e-01\\n4.01696414e-01 1.22753032e-01 -3.89773101e-01 2.55663782e-01\\n4.16161343e-02 1.29930362e-01 -1.69531718e-01 3.10307831e-01\\n-1.08515888e-01 1.78443953e-01 -8.86691660e-02 -3.04826260e-01\\n6.52832329e-01 7.40394369e-02 -4.67814552e-03 9.05548111e-02\\n2.04482451e-01 -4.24092561e-02 2.60112494e-01 -7.17075616e-02\\n-7.58951604e-01 3.83844435e-01 -1.00144977e-02 4.07901779e-02\\n2.12016538e-01 -2.58133933e-02 2.00027227e-01 -3.44744742e-01\\n1.81971535e-01 -4.22325060e-02 -3.97945255e-01 -4.10223275e-01\\n-1.60542503e-01 -9.94833708e-02 4.35568333e-01 -4.47708040e-01\\n-2.01711163e-01 1.30983487e-01 -5.89194536e-01 -4.43756767e-02\\n2.32134193e-01 1.88139960e-01 2.81080067e-01 2.81498194e-01\\n-8.99927765e-02 -4.40479666e-01 2.45185331e-01 -5.23442090e-01\\n-8.07445794e-02 2.00558007e-01 -3.21473718e-01 3.52334708e-01\\n4.69057374e-02 2.62135845e-02 -1.70775697e-01 8.00004900e-02\\n-1.84550479e-01 -4.30135094e-02 1.17278717e-01 1.22237347e-01\\n2.35224694e-01 1.25505909e-01 -5.11937678e-01 4.67557669e-01\\n-5.61823845e-02 5.95318139e-01 4.57723178e-02 -8.26171577e-01\\n4.14968491e-01 3.68540466e-01 -2.23312750e-02 -4.51378465e-01\\n6.64818466e-01 -2.96850592e-01 5.33863865e-02 1.76074281e-01\\n-3.89715374e-01 -3.04116309e-01 2.42173433e-01 -1.94101021e-01\\n-3.96293521e-01 5.52240014e-01 1.60334647e-01 1.83980554e-01\\n1.56003013e-01 -2.68250555e-02 -2.74763465e-01 4.23031636e-02\\n-6.27671108e-02 -1.80743456e-01 -4.75151241e-01 3.43753002e-03\\n-2.48334967e-02 -5.51352203e-01 -1.56966507e-01 -5.17431438e-01\\n-2.56539494e-01 -3.02716523e-01 -8.36052224e-02 1.16343237e-01\\n2.53781289e-01 3.16997729e-02 4.86488678e-02 1.08464129e-01\\n-2.27160379e-01 -6.30086184e-01 8.56279284e-02 1.77027002e-01\\n3.22045475e-01 1.53501406e-01 9.71179530e-02 -1.53599441e-01\\n-1.63145632e-01 7.45727181e-01 -3.26834947e-01 -5.20183519e-02\\n1.97844803e-01 2.45038077e-01 3.41633186e-02 -7.92514235e-02\\n8.47858489e-02 2.49819845e-01 -2.73613751e-01 1.97373137e-01\\n2.07646079e-02 -1.35732934e-01 2.11754799e-01 9.15213749e-02\\n-3.46211106e-01 -3.81502211e-01 -1.68437988e-01 1.57076105e-01\\n-5.74098825e-01 -2.37172589e-01 7.07537949e-01 2.12500945e-01\\n7.71264881e-02 2.60100543e-01 3.68138701e-01 -1.37673885e-01\\n-1.22738272e-01 -2.86316603e-01 1.78309396e-01 1.58890933e-01\\n1.45993516e-01 1.22765765e-01 -1.61473304e-01 -6.50121689e-01\\n-2.48001170e+00 -1.05853984e-02 1.19186811e-01 -3.96464199e-01\\n2.56766289e-01 -9.97513458e-02 1.31397486e-01 -7.92740211e-02\\n-2.62161851e-01 -2.56790072e-02 -2.00499102e-01 -2.45050311e-01\\n3.37216347e-01 2.25140125e-01 1.16996661e-01 1.53571799e-01\\n9.95214805e-02 -3.34998637e-01 -6.75863326e-02 3.60406101e-01\\n-2.91601270e-01 -6.21438920e-01 1.95369825e-01 -1.06876798e-01\\n3.52735370e-01 4.26362127e-01 -4.01168644e-01 -2.34160736e-01\\n-1.39234245e-01 -1.66069344e-01 1.63870722e-01 -2.65311003e-01\\n-6.42548800e-02 2.49747187e-01 1.99189886e-01 -8.02391693e-02\\n6.50330931e-02 -3.64395201e-01 -3.67120607e-04 -5.14470458e-01\\n9.79989842e-02 -7.59679854e-01 -4.35400866e-02 -1.17499925e-01\\n7.29610085e-01 -2.50727028e-01 2.04557385e-02 2.78964955e-02\\n1.84166804e-01 2.23949090e-01 1.40930014e-03 1.30183892e-02\\n-3.26630712e-01 -2.01651618e-01 -1.60248756e-01 -8.95381998e-03\\n5.20919323e-01 5.14502943e-01 -2.68887818e-01 -7.96316937e-02\\n5.38013503e-02 -4.07204807e-01 -4.13622230e-01 -3.32688361e-01\\n-1.57979026e-01 -3.15395653e-01 -7.48214900e-01 -4.74197119e-01\\n6.18743058e-03 -1.29094139e-01 -9.14848298e-02 6.30522132e-01\\n-2.65695304e-01 -2.00793922e-01 -4.71368879e-02 -4.76096123e-01\\n9.17959437e-02 -3.47742438e-02 9.52767730e-02 -2.20430821e-01\\n-1.24083996e-01 -3.33527386e-01 5.39277270e-02 3.36296819e-02\\n-1.18433625e-01 -1.77461490e-01 1.98304161e-01 -9.92225111e-02\\n-3.93855512e-01 -6.08086646e-01 4.32050437e-01 1.51057094e-01\\n3.95971179e-01 2.27903709e-01 1.62472993e-01 5.79074621e-02\\n3.19745988e-01 -3.10527325e-01 2.10403070e-01 -4.17263567e-01\\n2.58253574e-01 2.18425989e-01 6.96792960e-01 -3.51521254e-01\\n1.08613104e-01 1.06250949e-01 -2.97296345e-01 -1.50973931e-01\\n1.89605147e-01 -2.80616637e-02 1.59980193e-01 -3.80168080e-01\\n3.53869200e-01 -4.08080637e-01 -3.51696461e-01 -4.35397848e-02\\n8.66406262e-02 5.85671365e-01 1.11787356e-02 -3.73434991e-01\\n-1.24537244e-01 3.60720962e-01 -2.27123126e-02 -2.90382534e-01\\n-4.26543176e-01 -3.37148719e-02 -2.95823127e-01 1.36576593e-01\\n1.06962830e-01 -2.47776359e-02 -2.36516088e-01 -8.41833428e-02\\n-1.65951297e-01 3.57403755e-01 1.87855482e-01 1.40064061e-01\\n-3.94791085e-03 -3.49197358e-01 3.04616448e-02 2.04366162e-01\\n1.23125151e-01 3.05269390e-01 -5.21282814e-02 -2.36922443e-01\\n-5.07534705e-02 3.50030929e-01 -1.86778992e-01 1.62322193e-01\\n-1.85518607e-01 8.25550035e-02 -5.06058037e-01 -4.19317603e-01\\n-2.19737440e-01 -2.33199865e-01 6.69419616e-02 4.17778134e-01\\n1.57472283e-01 -2.09402014e-02 1.89230358e-03 -3.42324048e-01\\n3.06155086e-01 -9.02212262e-02 2.20889688e-01 1.33629009e-01\\n-1.45283081e-02 4.40574080e-01 2.93611921e-02 -2.13030323e-01\\n-1.44972205e-02 5.63488342e-02 -3.94984841e-01 -5.42825609e-02\\n1.90873779e-02 -3.90034229e-01 -1.42158017e-01 5.55266798e-01\\n1.18490951e-02 -1.96390480e-01 -6.49183244e-02 1.95458010e-01\\n-6.23130724e-02 -3.11125636e-01 -3.12494487e-01 -4.67217615e-04\\n2.90067494e-01 -3.42666954e-02 3.87823015e-01 -5.20088315e-01\\n1.65448904e-01 -8.95490646e-02 -9.75331813e-02 4.04846609e-01\\n7.46485963e-02 -5.04547777e-03 -1.01776123e-01 -2.68569708e-01\\n4.17622685e-01 -2.69596249e-01 -9.61347297e-02 2.64897764e-01\\n1.46735162e-01 -1.80085465e-01 -5.79551935e-01 -3.61166410e-02\\n-1.60754666e-01 -3.44886594e-02 -8.02488327e-02 7.00053796e-02\\n5.16117476e-02 2.42796298e-02 -5.86193204e-01 -2.55034924e-01\\n-2.47302160e-01 5.20222932e-02 -6.74834708e-03 -5.28262615e-01\\n-6.28230337e-04 1.65009703e-02 -6.96749449e-01 2.69149125e-01\\n-1.54897556e-01 5.53345829e-02 3.10384631e-01 -8.96355286e-02\\n-3.63123000e-01 -3.02403551e-02 2.63348192e-01 1.59298688e-01\\n-2.90326566e-01 -1.84110239e-01 -9.35707018e-02 -9.66439188e-01\\n1.79369211e-01 -1.29817486e-01 -1.05577976e-01 1.24053098e-01\\n-3.63651402e-02 -8.52683127e-01 1.80697963e-01 -2.76365221e-01\\n-6.74772114e-02 7.61537477e-02 -2.49893174e-01 -5.67864716e-01\\n1.11955233e-01 -1.03463776e-01 -1.86834604e-01 2.34781280e-01\\n-2.88092554e-01 3.59687150e-01 2.47425456e-02 6.81925565e-02\\n4.20759581e-02 -4.53139305e-01 8.34510550e-02 -5.00769198e-01\\n-4.17620957e-01 -5.53507768e-02 -2.71096647e-01 -9.71766189e-02\\n-1.31646944e-02 -4.00176585e-01 -4.71250862e-02 1.65999383e-01\\n2.36258239e-01 2.79901363e-02 -8.43396336e-02 1.02232575e-01\\n-5.57436422e-02 -6.34718299e-01 7.66110048e-02 -1.29079849e-01\\n4.43085805e-02 -1.84150159e-01 2.93539941e-01 3.47195379e-02\\n1.02848336e-01 -4.38484132e-01 3.98160219e-01 -5.05447268e-01\\n-4.84720826e-01 4.75587964e-04 7.31567368e-02 -1.00966819e-01\\n3.07092965e-01 -4.41011876e-01 -6.95581436e-02 4.04843062e-01\\n-4.55658212e-02 2.06463076e-02 2.20782623e-01 -3.46543044e-02\\n-1.37421370e-01 1.85898989e-01 -4.91658270e-01 1.37946293e-01\\n7.69906402e-01 2.19138175e-01 1.16558604e-01 2.39998400e-01\\n2.99183242e-02 2.21444130e-01 5.70495903e-01 2.02698782e-02\\n-2.53797829e-01 3.67909282e-01 8.04398283e-02 -6.97358608e-01\\n-9.26927328e-02 7.16676116e-02 -2.65937030e-01 -4.70936000e-01\\n6.69618070e-01 4.84663874e-01 -2.98335046e-01 -4.90057915e-01\\n-2.83647269e-01 -2.21722618e-01 5.70726916e-02 -2.65350156e-02\\n2.47380421e-01 -1.61446661e-01 5.39672732e-01 6.59724176e-02\\n2.42740214e-01 3.50360632e-01 -1.09016992e-01 -2.49825746e-01\\n-5.07432111e-02 1.07320294e-01 -1.07629731e-01 3.20314199e-01\\n-1.00190364e-01 2.59497434e-01 1.21346258e-01 1.38152122e-01\\n-1.75048485e-01 -1.99732766e-01 -3.59209627e-02 1.98077381e-01\\n-7.49664381e-02 2.78517932e-01 3.38985175e-01 3.94317985e-01\\n4.05577272e-01 4.73240793e-01 3.30040097e-01 1.01060674e-01\\n6.40843272e-01 5.13722599e-01 3.81022215e-01 3.13090563e-01\\n-1.52192023e-02 -6.66396245e-02 1.15108276e-02 2.55104542e-01\\n3.52333695e-01 1.61691785e-01 -1.80426538e-02 8.85829270e-01\\n3.28897834e-01 1.81608945e-01 6.79846466e-01 -5.70728362e-01\\n-2.73036659e-01 -9.69539061e-02 4.23756987e-01 -5.01040637e-01\\n-1.85211189e-02 1.28530141e-03 -9.21126530e-02 1.22361958e-01\\n-6.01361156e-01 -3.35597366e-01 -8.77689049e-02 2.02269837e-01\\n7.74818584e-02 -1.02901384e-01 -1.68632120e-01 -6.00243621e-02\\n-2.60817528e-01 -2.46326625e-01 -5.24348795e-01 -2.31036782e-01\\n-2.34318554e-01 -1.67602301e-01 5.39790429e-02 -1.65793464e-01\\n-9.75718498e-02 -3.83426964e-01 -5.17599992e-02 1.55167673e-02\\n3.76217693e-01 -1.49388582e-01 -3.43047678e-02 -7.11671710e-02\\n3.27311039e-01 2.68828869e-01 8.00580978e-01 -5.98889813e-02\\n8.61534197e-03 -2.33462557e-01 -8.52878764e-02 7.43729919e-02\\n2.13523284e-01 1.28366664e-04 7.35494569e-02 4.93371427e-01\\n-4.21595246e-01 -2.19593927e-01 4.70047705e-02 3.31216276e-01\\n-5.12659550e-01 -6.18970320e-02 -3.24829482e-02 2.05558911e-01\\n1.94443449e-01 1.43123001e-01 -2.91909099e-01 1.24780402e-01\\n-1.21417843e-01 -4.61528927e-01 2.27030650e-01 -2.27327570e-02\\n-1.74432442e-01 -5.34701422e-02 2.75779158e-01 1.23642422e-01\\n-1.21167004e-01 -3.27971689e-02 -4.74823602e-02 1.98152065e-01\\n1.78780660e-01 2.80799329e-01 -2.78823555e-01 -2.71773547e-01\\n-2.15043291e-01 2.94597417e-01 -1.31561652e-01 1.32185981e-01\\n1.76740494e-02 3.86754781e-01 2.12946996e-01 2.05204301e-02\\n4.65153635e-01 -6.73596188e-02 -1.17068507e-01 -3.40481490e-01\\n-2.16703176e-01 -3.91630590e-01 -6.63601309e-02 -1.96817398e-01\\n2.28895754e-01 -4.18754697e-01 -9.66417938e-02 -1.27981782e-01\\n-2.49003112e-01 -3.84074688e-01 -1.55337229e-01 1.33112473e-02]]',\n", + " 'job_description': 'As part of the Database team at an established Swiss investment bank you will be working on internal enterprise platforms. You will join a German speaking cooperative team that is currently looking for an enthusiastic teammate who is proactive and keen to learn. About our client Our client is an established Swiss investment bank. On behalf of our client, Swisslinx is currently looking for a Database Engineer. This is a permanent role based in Zurich. Your mission Operation and maintenance of Microsoft SQL Server and Oracle Database in a highly automated environment Performance tuning and troubleshooting in collaboration with application managers and infrastructure teams Cooperate in the implementation of application projects Automation of processes in the database environment On call work every five weeks for a week Your background Technical degree or training in computer science or other equivalent field woth emphasis on computer science Minimum of 2 years of professional experience working with databases Oracle / Unix and Windows / SQL Server Knowledge of scripting languages (Perl, Power Shell) is an advantage Conceptual and analytical skills as well as willingness to learn and improve¨ Communicative personality with good cooperation skills Proactive and resilient attitude Good German (B1 minimum) and English language skills Whatâs on offer Work for an established Swiss company Modern and pleasant working environment Competitive bonus scheme and benefits If you think of yourself as a highly motivated, ambitious person, please apply via the portal or per email: katia.kosa@swisslinx.com. For further information, do not hesitate to contact us: +41 (0)58 268 10 40.By applying for this position, I consent to the Swisslinx Group of companies: storing my personal information (including name, contact details, Identification and CV information etc.) on their internal or external servers for the purpose of informing me of potential employment opportunities using my personal information or supplying it to third parties upon express consent for the purpose of informing me of potential job opportunities transferring where applicable my personal information to a country outside the EEA/EFTA I also hereby agree to the Swisslinx privacy policy (http://www.swisslinx.com/en/legal/privacy-policy) and Terms of Use (http://www.swisslinx.com/en/legal/disclaimer)',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Cooperation\", \"Collaboration\", \"Proactivity\", \"Infrastructure\", \"Willingness To Learn\", \"Management\", \"Resilience\", \"Communications\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"Document Enterprise Platform\", \"Automation\", \"Computer Science\", \"Perl (Programming Language)\", \"Oracle Databases\", \"Investment Banking\", \"Scheme (Programming Language)\", \"Component Object Model (COM)\", \"Hostile Work Environment\", \"Conceptualization\", \"Library For WWW In Perl\", \"Personalization\", \"Adapter Scripting Language\", \"Oracle Autonomous Database\", \"Performance Tuning\", \"Database Engines\", \"Unix\", \"Microsoft SQL Servers\", \"EN 1993 Building Codes\"]',\n", + " 'languages': \"['English', 'Zulu', 'Hausa']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer - taxes',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-3.69951166e-02 3.45655143e-01 5.60230494e-01 -2.01081280e-02\\n5.78713179e-01 -2.12621808e-01 7.13859275e-02 3.79410565e-01\\n-2.42336839e-02 -3.44944984e-01 -5.74245676e-02 -1.59090847e-01\\n5.23505062e-02 4.15152162e-02 1.74907237e-01 3.38404357e-01\\n2.32827455e-01 8.80177021e-02 -9.49313641e-02 3.25852275e-01\\n1.88456148e-01 -4.39948365e-02 2.05075055e-01 6.88480616e-01\\n4.75102782e-01 9.44360197e-02 -4.73223180e-02 -2.45390348e-02\\n-3.37344348e-01 -3.72952640e-01 5.56296229e-01 4.50348333e-02\\n-5.76497130e-02 -2.91209400e-01 1.02531739e-01 3.64651904e-02\\n-2.53574252e-01 -1.56636745e-01 -9.05244499e-02 1.37901172e-01\\n-3.54086697e-01 -7.31291398e-02 -1.04610704e-01 9.99441296e-02\\n-2.70950675e-01 -4.12356943e-01 -5.51906899e-02 -7.17565715e-02\\n2.01436818e-01 6.10465184e-03 -4.55271214e-01 3.09073687e-01\\n-2.92493254e-01 -2.69567907e-01 2.88108617e-01 6.46703362e-01\\n-1.41725942e-01 -4.88470614e-01 -5.54893613e-01 -3.33868563e-01\\n1.59027591e-01 -9.81261656e-02 4.52614985e-02 -2.88404167e-01\\n2.73688912e-01 1.26266629e-01 1.02508061e-01 3.46181482e-01\\n-7.47558713e-01 -7.60607943e-02 -2.27238506e-01 -9.26762074e-02\\n-4.51047719e-01 -1.60531789e-01 -2.75464445e-01 -1.07895099e-01\\n-2.03859776e-01 4.34002727e-01 9.45216343e-02 2.67187729e-02\\n-1.01273164e-01 2.62687385e-01 -2.48466820e-01 3.20880890e-01\\n2.18258023e-01 1.79043949e-01 1.35816514e-01 3.18818897e-01\\n-2.47190401e-01 4.94730026e-01 1.06638417e-01 -2.80595809e-01\\n2.12317199e-01 1.09491944e-01 4.01029766e-01 -1.34464785e-01\\n1.46761626e-01 1.56938471e-02 -1.57695800e-01 2.90287614e-01\\n2.15313673e-01 -2.50335902e-01 4.65375818e-02 -1.15100279e-01\\n6.24584146e-02 4.55168486e-02 6.11910373e-02 1.70499325e-01\\n-2.91251898e-01 3.88525009e-01 9.97244790e-02 -2.46347293e-01\\n-1.23230122e-01 -4.91174072e-01 -1.24831416e-01 -8.95828158e-02\\n5.65288886e-02 1.68358579e-01 1.25181213e-01 1.86435252e-01\\n2.24045843e-01 -4.00470644e-02 2.03932956e-01 7.36032009e-01\\n7.49399513e-03 4.62784395e-02 -2.79876590e-01 3.02567899e-01\\n4.08514440e-02 -3.48581880e-01 2.43274122e-01 2.02553391e-01\\n-2.51317825e-02 -1.03995623e-02 -2.53941834e-01 2.65766740e-01\\n-1.23367563e-01 -2.57098496e-01 -1.58791065e-01 1.86874047e-01\\n-3.95756811e-02 -3.68234932e-01 5.22305608e-01 1.15929343e-01\\n1.12085957e-02 -1.31378859e-01 -1.08377904e-01 -1.08402289e-01\\n-5.64403459e-02 2.01673925e-01 8.01543146e-02 9.62845832e-02\\n-2.49680430e-01 -2.50143588e-01 -1.66850075e-01 1.04903139e-01\\n-2.79451370e-01 5.24946526e-02 -1.98810458e-01 -1.24544606e-01\\n2.23019004e-01 2.31654812e-02 -3.13400090e-01 2.47353166e-01\\n-1.16952881e-02 -1.67472754e-02 -1.31113119e-02 3.11052620e-01\\n-2.09411979e-01 2.11392432e-01 -1.23666100e-01 -1.21146508e-01\\n6.67195141e-01 1.01902232e-01 1.47004157e-01 2.33114623e-02\\n1.30074933e-01 -1.94097944e-02 1.51412591e-01 1.83593541e-01\\n-7.13611662e-01 3.52525890e-01 -4.87337783e-02 -1.44028351e-01\\n1.80180013e-01 -3.08852829e-02 2.19073623e-01 -2.66101241e-01\\n1.64769128e-01 -1.04989603e-01 -3.79963458e-01 -2.87437886e-01\\n-6.55080825e-02 1.53513700e-02 2.95921087e-01 -4.55361992e-01\\n-1.09440476e-01 3.17423344e-01 -4.63497728e-01 -1.59679592e-01\\n8.92490447e-02 2.01704860e-01 1.04925446e-01 2.30177388e-01\\n-2.25713164e-01 -4.01371181e-01 1.29678950e-01 -3.69636536e-01\\n-2.78756887e-01 4.42835279e-02 -2.86222309e-01 2.43840829e-01\\n4.30407748e-02 -2.34687421e-02 -1.60412550e-01 1.68125600e-01\\n-2.41217017e-01 -3.93397808e-02 5.57865873e-02 1.83352195e-02\\n3.27253103e-01 1.08457014e-01 -3.58237565e-01 3.57521087e-01\\n-1.30506426e-01 4.88535583e-01 4.39491048e-02 -8.68222594e-01\\n4.41113710e-01 3.23666453e-01 1.27051035e-02 -4.61118579e-01\\n6.69676006e-01 -3.17752749e-01 6.99751079e-02 1.28272638e-01\\n-4.49667782e-01 -3.83786052e-01 2.87580162e-01 -1.40270948e-01\\n-3.06006819e-01 4.11239892e-01 -3.48374695e-02 2.37221643e-01\\n1.66262448e-01 -1.98834524e-01 -1.25287801e-01 5.72368726e-02\\n-8.06577802e-02 -1.41752198e-01 -5.32241940e-01 -1.25490963e-01\\n-1.62854850e-01 -4.59709942e-01 -9.92025286e-02 -4.19222951e-01\\n-2.13731200e-01 -3.03757429e-01 -1.28771558e-01 1.12169556e-01\\n2.82974124e-01 1.53644606e-01 2.69080698e-02 -2.22780686e-02\\n1.81081146e-03 -6.99046552e-01 -1.70395672e-02 1.40919626e-01\\n4.10831749e-01 1.72452524e-01 1.19957469e-01 2.20967345e-02\\n9.68115330e-02 6.62361622e-01 -2.12963969e-01 -1.67775363e-01\\n1.44008815e-01 1.35973901e-01 6.17856309e-02 -7.53875226e-02\\n-4.45068255e-02 3.19290817e-01 -2.92737991e-01 2.45755017e-02\\n-1.10676929e-01 2.09890585e-03 4.54198062e-01 1.77935101e-02\\n-2.47854233e-01 -1.23551197e-01 -5.22314571e-02 1.69405445e-01\\n-5.87227583e-01 -2.10668266e-01 6.42023087e-01 2.17890054e-01\\n7.53060877e-02 1.79661870e-01 2.11588800e-01 -9.98500362e-03\\n-1.21951260e-01 -1.94618195e-01 2.64971644e-01 1.42501555e-02\\n2.19792753e-01 7.17970580e-02 -1.39897138e-01 -6.06924117e-01\\n-3.29479361e+00 -8.82915556e-02 1.09095693e-01 -2.73006946e-01\\n2.34146714e-01 -1.65900290e-01 2.29277611e-01 -3.96455824e-02\\n-2.93157190e-01 2.20349170e-02 -1.44111991e-01 -1.13465168e-01\\n2.54835576e-01 1.93013906e-01 9.50707868e-02 2.42019355e-01\\n2.07070321e-01 -2.97793955e-01 -1.30655821e-02 3.42681706e-01\\n-2.09378928e-01 -6.55908585e-01 2.04252467e-01 2.25470774e-02\\n2.17609465e-01 2.96048999e-01 -3.34026217e-01 -1.59448773e-01\\n-2.50045002e-01 -1.91597149e-01 2.73943730e-02 -3.09720814e-01\\n-1.55555204e-01 3.32004845e-01 2.32173949e-01 -1.46822006e-01\\n1.23034693e-01 -4.23497319e-01 -3.10417339e-02 -4.36987072e-01\\n1.40336096e-01 -6.03923917e-01 6.37416542e-03 -1.39846563e-01\\n7.51282930e-01 -3.33728313e-01 1.25664085e-01 1.44118696e-01\\n2.12537736e-01 1.20487474e-01 1.27959460e-01 1.71464495e-02\\n-1.65199161e-01 -2.69790649e-01 -2.04993367e-01 -8.18311498e-02\\n4.45428789e-01 4.78111267e-01 -1.88569605e-01 2.63199955e-03\\n4.56902012e-02 -2.69530833e-01 -3.32527876e-01 -1.91325575e-01\\n-1.21785566e-01 -2.58732200e-01 -7.20323145e-01 -5.64240515e-01\\n-1.39419258e-01 -2.53028363e-01 -1.42126963e-01 6.02528870e-01\\n-2.27586016e-01 -2.75160789e-01 -1.46686718e-01 -4.55412567e-01\\n2.85076886e-01 -1.23943016e-01 -3.58915105e-02 -1.68259576e-01\\n-9.94041860e-02 -3.81339729e-01 8.46914873e-02 -4.28443663e-02\\n-6.66216575e-03 -3.14173877e-01 8.83404911e-02 -2.95992158e-02\\n-3.26587856e-01 -5.94688058e-01 4.40588892e-01 9.83212367e-02\\n3.69544208e-01 1.27080098e-01 1.90202475e-01 8.45181197e-02\\n2.18577147e-01 -1.33115321e-01 -7.05248564e-02 -3.15957189e-01\\n1.01943351e-01 8.90210643e-02 5.43614089e-01 -2.96951294e-01\\n-2.82835029e-02 8.44120756e-02 -1.99600995e-01 8.43055174e-03\\n2.37977967e-01 -7.91839957e-02 1.66683737e-02 -9.03165713e-02\\n2.30992258e-01 -2.91430354e-01 -1.53484046e-01 2.70495582e-02\\n2.64248438e-03 4.55236435e-01 2.66428869e-02 -3.93409908e-01\\n-7.88372010e-02 3.65331352e-01 7.14963675e-02 -5.37737533e-02\\n-2.42067546e-01 -2.85004918e-03 -2.92126358e-01 3.09423417e-01\\n1.00868709e-01 -1.01762034e-01 -1.92996308e-01 -9.35619920e-02\\n-1.27290815e-01 3.39463532e-01 2.72396326e-01 1.54111758e-01\\n1.57700926e-02 -4.26059991e-01 -7.63534307e-02 1.89522207e-01\\n1.91104084e-01 4.22139943e-01 1.51736274e-01 -1.72707587e-01\\n5.95854782e-02 2.89742887e-01 -1.60266906e-01 2.00557947e-01\\n-2.21819401e-01 1.03353120e-01 -5.77568173e-01 -2.44985282e-01\\n-2.11932361e-01 -3.62053394e-01 1.75356388e-01 3.83611232e-01\\n1.75234109e-01 1.55492956e-02 6.36831298e-02 -4.97183859e-01\\n2.61801481e-01 1.19642094e-02 1.93924174e-01 1.33040592e-01\\n-3.71299684e-05 5.37993789e-01 -1.40993930e-02 -2.42739365e-01\\n-1.64872482e-01 9.33868438e-02 -2.10129008e-01 -1.07016712e-01\\n4.21185717e-02 -4.36296284e-01 -8.98144916e-02 3.91320229e-01\\n5.73896170e-02 -2.63004184e-01 -4.56380621e-02 2.13908762e-01\\n-1.05628774e-01 -3.38185579e-01 -2.74703324e-01 1.34671986e-01\\n3.58775020e-01 1.16775051e-01 2.76881367e-01 -4.36510682e-01\\n-3.51449251e-02 -8.40595737e-02 -1.36033297e-02 3.65587234e-01\\n1.57467365e-01 3.31209116e-02 -5.86318448e-02 -2.35338598e-01\\n4.38659906e-01 -1.16057433e-01 -1.40816391e-01 2.01712191e-01\\n5.02230525e-02 -1.38896525e-01 -4.28875506e-01 1.56025290e-02\\n-3.50617543e-02 -1.78522170e-01 -3.39262187e-02 1.48156792e-01\\n2.20859703e-02 1.21168137e-01 -6.34493351e-01 -2.48929098e-01\\n-3.19484323e-01 4.10557799e-02 1.70104504e-02 -6.08769059e-01\\n-3.38591188e-02 -6.21672645e-02 -6.55009389e-01 2.45657593e-01\\n-7.61635080e-02 -1.49740502e-01 2.00906888e-01 3.36974487e-02\\n-2.43646950e-01 -1.05158620e-01 1.18634097e-01 2.96207011e-01\\n-2.70151913e-01 -1.27451494e-01 -7.76243955e-02 -1.01477098e+00\\n2.26748347e-01 -7.58480001e-03 -1.87050670e-01 1.60530001e-01\\n-1.16258442e-01 -6.28124475e-01 1.53057396e-01 -4.07594323e-01\\n-1.61295950e-01 -4.23905328e-02 -2.53373146e-01 -4.12045300e-01\\n8.05107504e-02 -6.04819506e-05 -2.60975659e-01 3.73160541e-01\\n-3.15223813e-01 3.81642729e-01 -1.38292477e-01 1.47337854e-01\\n4.79638837e-02 -2.77433038e-01 9.82578769e-02 -3.75810146e-01\\n-3.30354512e-01 -1.86240762e-01 -2.96361089e-01 -1.62786722e-01\\n2.77641378e-02 -3.10156763e-01 -9.57624093e-02 -3.18254232e-02\\n2.98890710e-01 5.29303737e-02 -1.87460452e-01 -2.48638153e-01\\n9.13327783e-02 -5.73361814e-01 1.45304307e-01 -9.64584425e-02\\n-1.00128025e-01 -9.27492678e-02 2.45453179e-01 1.69633582e-01\\n1.69175386e-01 -4.48225319e-01 2.81603485e-01 -4.39213037e-01\\n-2.82277226e-01 7.25593045e-03 2.80451588e-02 -5.47081903e-02\\n3.43179643e-01 -4.94536102e-01 -6.43737838e-02 4.99978185e-01\\n4.11997512e-02 1.38114765e-01 2.42351264e-01 -6.43621385e-02\\n-1.67087838e-01 3.62065136e-01 -4.24952507e-01 1.79231584e-01\\n7.29371786e-01 1.44141719e-01 1.12156764e-01 1.90790191e-01\\n1.71227545e-01 2.31625080e-01 4.90581512e-01 3.36684361e-02\\n-1.53425246e-01 3.07749867e-01 5.16249090e-02 -5.47651052e-01\\n-3.97713222e-02 1.93007290e-04 -2.69419223e-01 -3.98431480e-01\\n6.12705827e-01 4.90368545e-01 -3.83640140e-01 -2.64176756e-01\\n-2.04941541e-01 -2.12765649e-01 8.35994035e-02 -1.49813779e-02\\n2.53417548e-02 -9.52918679e-02 5.02837241e-01 -1.51598677e-01\\n1.65027380e-01 5.04213810e-01 -8.51858482e-02 -2.59528726e-01\\n-4.41176742e-02 1.34843305e-01 4.05715331e-02 5.02608061e-01\\n-2.18451515e-01 2.07932532e-01 1.21991605e-01 1.70661226e-01\\n-8.40038434e-02 -4.29004803e-02 1.52677417e-01 1.46115527e-01\\n1.61297917e-02 6.83871657e-02 4.16963279e-01 3.85436177e-01\\n3.12853873e-01 4.31114912e-01 2.91184604e-01 6.34451956e-02\\n5.51274657e-01 5.13934255e-01 3.42959881e-01 1.70437232e-01\\n-1.62711799e-01 8.49794596e-04 1.96958691e-01 -1.87542848e-03\\n3.19007277e-01 3.10599148e-01 2.75106914e-02 8.47202539e-01\\n3.33353907e-01 3.18626493e-01 6.55432761e-01 -5.91719508e-01\\n-4.20968831e-01 -4.35312949e-02 4.82966840e-01 -4.20319855e-01\\n4.74783629e-02 1.78930014e-01 -2.89573669e-01 1.18146233e-01\\n-5.54744422e-01 -2.29898453e-01 -3.68408337e-02 3.80045176e-02\\n8.13268274e-02 -1.67084754e-01 -1.50439218e-01 1.88644052e-01\\n-4.62715514e-02 -1.44491643e-01 -5.52000284e-01 -2.17371896e-01\\n-2.16592282e-01 -5.31742573e-02 -5.80829196e-02 -1.33203059e-01\\n-5.55398539e-02 -3.23277831e-01 -9.04628932e-02 1.07647441e-02\\n3.15549225e-01 -3.61801982e-02 -6.97765797e-02 -8.65507573e-02\\n2.10235745e-01 1.84579462e-01 5.56110978e-01 -9.92185175e-02\\n1.45937517e-01 -2.29621902e-01 -1.96239024e-01 1.37797743e-01\\n1.57844856e-01 6.17010742e-02 -4.26600967e-03 2.96170324e-01\\n-2.97316641e-01 -2.34688699e-01 1.40724316e-01 2.85915822e-01\\n-4.23482805e-01 5.93751296e-02 -1.15961999e-01 1.07776701e-01\\n1.07134640e-01 1.60300091e-01 -3.09100002e-01 1.32198408e-02\\n-1.34267464e-01 -4.32812870e-01 3.02577555e-01 -1.66335136e-01\\n-1.05731949e-01 1.34063452e-01 2.65380323e-01 1.46236002e-01\\n-2.33838663e-01 5.00505567e-02 -1.87936813e-01 2.97005568e-02\\n-2.01564915e-02 3.31174433e-01 -2.11917818e-01 -3.31489176e-01\\n-2.08182216e-01 2.32414663e-01 -1.07730284e-01 1.34615511e-01\\n3.61810327e-02 3.60778868e-01 8.23390037e-02 -2.73905694e-04\\n5.04121244e-01 1.05119132e-01 -3.08903933e-01 -2.00668782e-01\\n-2.63254225e-01 -2.13006213e-01 -1.25692308e-01 -4.06870991e-02\\n2.23074764e-01 -3.31324905e-01 -4.16135229e-03 -2.19056427e-01\\n-2.10560128e-01 -3.19706559e-01 3.99379022e-02 -1.04404412e-01]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team The Taxes & Exchange of Information (TAXI) team is a dynamic team of Business Analysts and Software Developers located in Zurich. We follow an agile process, working closely together as a team but also interact with other related teams and clients to develop new product features and maintain existing ones in live use. The team is the owner of functionality around Swiss Taxes, Withholding Taxes, US QI and FATCA Reporting, Automatic Exchange of Information (CRS), Generic Tax Statements for offshore clients (including capital gain calculation), Anti Money Laundering and other highly flexible Tax Reporting Tools used by our clients. This job represents a unique opportunity to advance your development skills, but also to acquire banking know how on a top level. You are encouraged to acquire more detailed and interdisciplinary knowledge about other areas in our banking system, becoming an expert of our core banking software and the corresponding business processes in the industry. Your mission Analyze, design and develop new features for functionality within the team’s responsibility Analyze and resolve software defects, improve and optimize existing functionality Improve quality of our functionality via automated testing and code reviews What you need University degree in Computer Science, Information Technology, Mathematics, Physics Engineering or similar Strong software engineering skills, understanding of software development processes and best practices Strong analytical and problem-solving skills and high standards of quality Team oriented and good communication skills (English) to closely collaborate with customers and colleagues globally You will get extra points for the following Knowledge in Oracle database architecture and PL/SQL is a plus Experience in working with agile methodologies German language skills are a plus Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Don’t be shy – apply! Avaloq Evolution AG Michelle Hiestand, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland careers@avaloq.com www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Writing\", \"Team Oriented\", \"Professionalism\", \"Collaboration\", \"Problem Solving\", \"Communications\", \"Information Technology\", \"Positivity\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Interactivity\", \"Computer Science\", \"Analytics\", \"Oracle Databases\", \"Automated Testing Framework\", \"Good Agricultural Practices\", \"Anti Money Laundering\", \"Physics Engine\", \"Industrialization\", \"Wealth Management\", \"Offshoring\", \"Calculations\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"Levelling\", \"Software Engineering\", \"Capital Gains\", \"Mathematical Physics\", \"Agile Methodology\", \"Business Process\", \"Library For WWW In Perl\", \"Withholding Tax\", \"Code Review\", \"Business Correspondence\", \"Banking Software\", \"Banking\", \"Software Development\", \"Quality Improvement\", \"New Product Development\", \"EN 1993 Building Codes\", \"Agile Unified Process\", \"Reporting Tools\"]',\n", + " 'languages': \"['English', 'Tigrinya', 'Ewe', 'Church Slavonic']\"},\n", + " {'company_id': '113',\n", + " 'job_title': 'database specialist (devops)',\n", + " 'location': 'Allschwil',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-2.21629173e-01 3.51055294e-01 5.05267501e-01 1.18262760e-01\\n6.38019383e-01 -1.01799287e-01 1.33608365e-02 2.76150197e-01\\n-4.03008424e-02 -3.46214682e-01 -8.52028355e-02 -2.40979016e-01\\n-3.00033521e-02 5.81459142e-03 7.81021733e-03 4.60274458e-01\\n3.19128931e-01 4.53145057e-02 -1.34454384e-01 3.56937468e-01\\n6.16429299e-02 -9.24826786e-02 2.27725089e-01 7.43774772e-01\\n3.92673194e-01 4.19839658e-02 -9.49965697e-03 6.26118258e-02\\n-3.00799072e-01 -2.54942685e-01 4.22128409e-01 -2.93480717e-02\\n-1.02659807e-01 -3.71596992e-01 1.07033588e-01 3.63783464e-02\\n-1.77193061e-01 1.35531425e-02 -1.20578311e-01 1.20428458e-01\\n-4.14840460e-01 -1.93503901e-01 -1.09855467e-02 5.42598357e-03\\n-3.51396054e-01 -3.41566354e-01 2.69865594e-03 -6.83298558e-02\\n1.12695165e-01 -6.09535873e-02 -4.17772830e-01 3.59378695e-01\\n-3.65660250e-01 -1.18052267e-01 4.12555873e-01 6.69190347e-01\\n7.50916600e-02 -4.66887653e-01 -4.67214227e-01 -3.80778372e-01\\n1.75623566e-01 -9.56601202e-02 7.41594955e-02 -2.60692865e-01\\n3.24577957e-01 -4.10459787e-02 6.63110241e-02 2.68235952e-01\\n-6.48706019e-01 -8.79003033e-02 -3.05865943e-01 -1.38641847e-02\\n-3.63038808e-01 -8.27358663e-02 -4.00437027e-01 -1.48351803e-01\\n-9.42021981e-02 3.54292959e-01 2.24006139e-02 8.10145773e-03\\n-1.82575539e-01 2.75400609e-01 -2.13815585e-01 3.50243390e-01\\n2.39694789e-01 1.15466274e-01 3.85124356e-01 3.94593954e-01\\n-3.68749082e-01 4.19387579e-01 2.50435323e-01 -2.67988980e-01\\n2.72510648e-01 2.57330458e-03 3.37528199e-01 9.52129215e-02\\n2.76866648e-02 8.34188834e-02 -8.44586790e-02 2.55422026e-01\\n1.94873154e-01 -2.83389211e-01 -1.51098028e-01 -1.15273602e-01\\n2.26611421e-02 -1.71444952e-01 6.58626556e-02 2.24550873e-01\\n-3.37050587e-01 4.73765880e-01 1.22472666e-01 -2.51505792e-01\\n-3.61690223e-02 -5.65726876e-01 -1.32268399e-01 -9.94566754e-02\\n-8.59177858e-02 1.12329833e-01 1.93511680e-01 3.13945174e-01\\n2.39498243e-01 -1.19714513e-01 1.36231050e-01 7.73925185e-01\\n-4.73320745e-02 7.45970756e-02 -1.84984326e-01 3.59553158e-01\\n1.01801110e-02 -3.09622318e-01 2.14154869e-01 1.80369988e-01\\n-8.48452896e-02 3.20389830e-02 -1.40360281e-01 2.74115711e-01\\n-5.84994704e-02 -2.55801439e-01 -2.89122522e-01 1.31770015e-01\\n-1.45069718e-01 -5.19979239e-01 4.72908407e-01 4.49520983e-02\\n9.83820930e-02 -1.15136959e-01 -1.00151477e-02 -6.30827323e-02\\n-2.26361863e-02 2.20046386e-01 1.75632447e-01 1.07546911e-01\\n-2.97908783e-01 -2.81033427e-01 -2.11630017e-01 1.93925753e-01\\n-2.47077301e-01 1.07669652e-01 -1.99815288e-01 -1.43131822e-01\\n2.79471427e-01 1.20126285e-01 -5.43374240e-01 2.89191723e-01\\n-1.09231792e-01 -9.97397602e-02 -1.33237123e-01 4.28939521e-01\\n-1.56789288e-01 1.99264675e-01 -4.58718501e-02 -9.22909677e-02\\n5.80593348e-01 9.21433568e-02 1.48296684e-01 -3.45613919e-02\\n3.56731981e-01 -1.04390316e-01 1.76500678e-01 1.46277875e-01\\n-6.67370260e-01 3.57120395e-01 -1.37445241e-01 -2.56091785e-02\\n1.72017127e-01 -8.20191205e-02 4.57576871e-01 -3.31384420e-01\\n1.30478479e-02 -2.12369725e-01 -2.95065641e-01 -4.24093962e-01\\n-2.57632256e-01 -9.81778204e-02 4.08200800e-01 -4.00384247e-01\\n-1.48879915e-01 2.77111977e-01 -5.61296821e-01 -5.76710999e-02\\n2.00339511e-01 3.34574401e-01 1.99223444e-01 1.70863047e-01\\n-5.34708798e-02 -5.36837816e-01 1.28689826e-01 -4.86899465e-01\\n-3.83091897e-01 2.03433588e-01 -3.88229638e-01 1.97994903e-01\\n1.52929991e-01 4.22280729e-02 -1.30433410e-01 4.65176441e-02\\n-2.94609845e-01 9.50609799e-03 2.01399565e-01 8.43048021e-02\\n3.15009058e-01 1.14106603e-01 -4.97842878e-01 5.63679099e-01\\n-2.01272905e-01 5.56879759e-01 1.76251084e-01 -9.52857375e-01\\n5.74285567e-01 4.52440977e-01 -6.04739748e-02 -2.83134848e-01\\n5.80223322e-01 -2.97672689e-01 9.23622921e-02 7.19048232e-02\\n-2.53997743e-01 -1.97578624e-01 2.21234933e-01 -9.74571034e-02\\n-2.80291378e-01 5.31999707e-01 4.45505157e-02 9.45860222e-02\\n1.86144024e-01 -2.12344676e-01 -2.62913734e-01 1.73345823e-02\\n-2.34838888e-01 -2.08484933e-01 -5.14300585e-01 2.35711355e-02\\n-9.29111540e-02 -4.71425623e-01 -2.26326123e-01 -5.06492734e-01\\n-1.74050570e-01 -3.77630085e-01 -1.43745139e-01 1.49846688e-01\\n1.61658242e-01 1.04459576e-01 -1.01332068e-01 1.24571249e-01\\n-1.06837757e-01 -6.45931065e-01 -2.82109957e-02 4.80521359e-02\\n3.47964317e-01 3.27732742e-01 1.82763770e-01 -4.73226234e-02\\n2.68210098e-02 5.92691839e-01 -4.38774496e-01 -1.67595342e-01\\n2.35447586e-01 1.05166167e-01 -1.19639328e-02 -1.04286872e-01\\n5.39473593e-02 3.68830115e-01 -2.09700763e-01 8.10507312e-03\\n6.58780783e-02 3.29981558e-02 3.98972571e-01 -3.77697200e-02\\n-2.85653353e-01 -2.73397654e-01 -2.02915035e-02 2.96222031e-01\\n-5.33287168e-01 -3.40967596e-01 6.29128397e-01 2.38196000e-01\\n1.09747082e-01 1.88914970e-01 3.34026724e-01 -1.85570568e-02\\n-1.40943453e-01 -2.56969452e-01 2.84072995e-01 8.36907923e-02\\n2.35466510e-01 2.02198830e-02 -1.25899732e-01 -6.22702599e-01\\n-3.22854924e+00 -6.20628074e-02 8.40189084e-02 -2.63080686e-01\\n1.96491420e-01 -6.20883554e-02 1.72800481e-01 -3.37070897e-02\\n-4.19271111e-01 2.60505322e-02 -2.94447303e-01 -1.84843913e-01\\n1.33670107e-01 3.09675127e-01 1.69268295e-01 1.25264421e-01\\n1.68156251e-01 -3.20696861e-01 1.77230116e-03 3.70315313e-01\\n-8.54482949e-02 -7.17421412e-01 1.70154661e-01 3.82644013e-02\\n2.04995483e-01 2.07935035e-01 -4.53262836e-01 -1.28619164e-01\\n-2.97975004e-01 -1.84477180e-01 1.21778108e-01 -2.26665780e-01\\n-1.18539222e-01 2.47131109e-01 1.83210567e-01 -1.20658517e-01\\n4.39720713e-02 -4.09950793e-01 7.44160078e-03 -4.67203915e-01\\n5.13603091e-02 -6.66235745e-01 1.69091180e-01 -5.66680953e-02\\n6.20448649e-01 -2.87556767e-01 1.39225721e-01 1.15109831e-01\\n1.96142688e-01 1.70109332e-01 1.27564952e-01 6.73147291e-02\\n-2.46444091e-01 -1.80312485e-01 -1.75561965e-01 -1.92979217e-01\\n5.95670402e-01 2.50608683e-01 -1.38076380e-01 -9.08095948e-03\\n1.56564955e-02 -3.16022158e-01 -4.38112915e-01 -3.01851302e-01\\n-2.43053317e-01 -1.58318907e-01 -6.73852861e-01 -5.72096407e-01\\n-1.33285716e-01 -1.11364178e-01 -1.76170409e-01 5.91026545e-01\\n-3.31824958e-01 -3.49011570e-01 -9.56333652e-02 -5.09308398e-01\\n2.85354793e-01 -1.78240076e-01 2.53555384e-02 -1.59365013e-01\\n-1.76147312e-01 -3.99315894e-01 1.59299344e-01 1.92013569e-02\\n-1.69801936e-01 -2.47375727e-01 9.18467268e-02 -1.32431090e-01\\n-3.32467645e-01 -4.89793748e-01 5.27260780e-01 8.72293860e-02\\n4.05263513e-01 1.33562520e-01 3.46306533e-01 4.94000735e-03\\n3.14892679e-01 -1.31183311e-01 1.14157580e-01 -5.22596061e-01\\n6.59671500e-02 1.10997744e-01 6.33706868e-01 -2.35261098e-01\\n9.76634622e-02 6.24952875e-02 -1.79982454e-01 -6.21374324e-02\\n3.17863077e-01 7.05922395e-02 1.20407850e-01 -1.93389758e-01\\n3.07581097e-01 -4.19857532e-01 -2.67578363e-01 7.94110969e-02\\n1.59294069e-01 6.53479517e-01 -1.01019196e-01 -3.91667902e-01\\n-1.47634909e-01 4.86773521e-01 -5.41872755e-02 -9.12138373e-02\\n-1.73665285e-01 1.75653800e-01 -2.53399640e-01 3.01299840e-01\\n9.87287760e-02 -1.26418412e-01 -3.07479113e-01 -9.17556062e-02\\n-5.43168224e-02 2.74520874e-01 2.10313305e-01 1.90992564e-01\\n-3.23374607e-02 -3.89847249e-01 -8.11638907e-02 1.46820158e-01\\n1.53821826e-01 3.16722125e-01 1.38582170e-01 -3.43104899e-01\\n3.49027030e-02 2.48041496e-01 -1.48090675e-01 2.17820793e-01\\n-1.12040408e-01 1.43708259e-01 -6.53729260e-01 -2.82655299e-01\\n-1.94795012e-01 -2.26225093e-01 5.58278225e-02 2.45235473e-01\\n1.76557630e-01 -2.84765400e-02 1.31965093e-02 -4.04004753e-01\\n4.06089664e-01 -5.80830425e-02 1.89201400e-01 1.05512895e-01\\n-9.47658252e-03 7.15641320e-01 2.76583061e-02 -2.86098540e-01\\n-1.12567134e-01 4.77534495e-02 -1.84447274e-01 -2.27880999e-01\\n6.47322461e-02 -3.51427674e-01 -1.73484832e-01 4.42162991e-01\\n1.51203498e-01 -1.36835873e-01 -1.57478273e-01 2.21023381e-01\\n-2.93393433e-02 -2.40786344e-01 -2.82821417e-01 4.74000871e-02\\n2.47788504e-01 6.56807944e-02 3.07327151e-01 -4.78753507e-01\\n6.30297214e-02 -1.46224320e-01 1.23199724e-01 4.64651018e-01\\n1.98537856e-01 1.23419918e-01 -2.17709783e-02 -2.20453992e-01\\n4.36482400e-01 7.48200417e-02 -1.27123386e-01 8.86408985e-02\\n7.56553859e-02 -2.85125554e-01 -4.97471064e-01 3.25695537e-02\\n-6.20501004e-02 -1.65162608e-01 1.85488284e-01 1.21636532e-01\\n1.29897401e-01 3.28669250e-02 -6.69897377e-01 -1.87718093e-01\\n-3.73038232e-01 1.26751274e-01 -4.15185280e-02 -5.96203089e-01\\n-1.07634827e-01 -2.02940442e-02 -6.59462154e-01 2.54183263e-01\\n-6.84229210e-02 -3.19866203e-02 7.57576674e-02 8.29596445e-03\\n-3.20236981e-01 -1.68030292e-01 2.57312119e-01 5.77080362e-02\\n-3.17427099e-01 -2.42647082e-01 1.54451970e-02 -1.04283738e+00\\n1.85530484e-01 -3.50937285e-02 -1.27189174e-01 1.30267292e-01\\n-7.10264605e-04 -8.14352691e-01 1.52499720e-01 -4.02544230e-01\\n-1.67053297e-01 -2.88234130e-02 -2.33500779e-01 -4.58254963e-01\\n7.57605731e-02 -2.72575002e-02 -1.52952790e-01 3.47417623e-01\\n-3.21920156e-01 3.86313379e-01 -8.51767734e-02 6.07542545e-02\\n7.79158697e-02 -2.98684478e-01 4.74901907e-02 -3.73607248e-01\\n-4.38094705e-01 -1.84958890e-01 -2.64453977e-01 -2.63250083e-01\\n-2.52470113e-02 -2.88695395e-01 -1.23973347e-01 3.53032425e-02\\n3.46445143e-01 1.46735892e-01 -1.26964495e-01 -1.43130749e-01\\n2.38393899e-02 -4.57602441e-01 2.68920183e-01 -1.60758719e-01\\n-1.79780163e-02 -1.69361800e-01 3.83071125e-01 -6.97162515e-03\\n1.99263588e-01 -3.94759506e-01 5.49968719e-01 -2.18504146e-01\\n-4.17035818e-01 -1.69636458e-01 1.02602683e-01 1.55503768e-02\\n2.15556830e-01 -4.78502989e-01 -1.34214953e-01 2.96336055e-01\\n9.32275876e-02 1.11726590e-01 3.58028978e-01 -1.79886252e-01\\n-1.03986681e-01 1.70662612e-01 -5.46999633e-01 8.49941969e-02\\n7.74375141e-01 1.66594803e-01 1.35821372e-01 4.59623039e-02\\n6.00789972e-02 2.53479838e-01 5.66726923e-01 -8.97147059e-02\\n-1.47054955e-01 3.75418693e-01 9.42421332e-02 -6.03301644e-01\\n-1.93042949e-01 -6.25707060e-02 -7.47216716e-02 -4.76640493e-01\\n5.52248836e-01 3.28002304e-01 -3.33323419e-01 -3.41665477e-01\\n-2.05048025e-01 -1.18827537e-01 2.10193202e-01 3.37882489e-02\\n1.44332215e-01 -1.89322665e-01 4.92031157e-01 -2.38805450e-02\\n3.04279089e-01 4.80418980e-01 -2.23561242e-01 -3.31427395e-01\\n-8.33137855e-02 1.59117401e-01 1.05903335e-01 4.28295314e-01\\n-1.15010999e-01 2.38267154e-01 9.68317017e-02 1.30421609e-01\\n-3.47229630e-01 -1.18136190e-01 1.07670449e-01 3.50331180e-02\\n4.91447710e-02 8.53943899e-02 4.54626560e-01 4.07587230e-01\\n3.81283194e-01 4.19060141e-01 2.75823742e-01 -2.00284217e-02\\n5.95641971e-01 5.71206570e-01 3.35548520e-01 1.28747523e-01\\n-1.04015339e-02 1.20058000e-01 1.40788004e-01 2.49215104e-02\\n3.86389792e-01 3.66437554e-01 1.31175771e-01 9.18718100e-01\\n2.63106912e-01 3.64930838e-01 7.04167485e-01 -6.44713998e-01\\n-2.81328052e-01 9.31991786e-02 4.93181825e-01 -4.42482501e-01\\n1.75366178e-02 1.28953248e-01 -2.48012498e-01 1.61904663e-01\\n-5.05342245e-01 -2.56688744e-01 -2.53601652e-02 8.84938166e-02\\n3.17163803e-02 -8.32212269e-02 -1.21480525e-01 2.03955039e-01\\n-1.31659731e-01 -1.43104047e-01 -3.87008816e-01 -2.35884488e-01\\n-2.54936516e-01 -6.71830848e-02 -3.74516435e-02 -1.26769707e-01\\n-1.17008053e-01 -2.62353361e-01 -5.22936098e-02 -2.05557588e-02\\n2.88901150e-01 -1.34044096e-01 -7.39191994e-02 -1.95719972e-01\\n2.35587642e-01 2.32545838e-01 7.16427028e-01 -7.04785138e-02\\n1.36884630e-01 -2.44226828e-01 -1.61389962e-01 2.05334444e-02\\n1.53919250e-01 -3.91046666e-02 -8.28764983e-04 4.11200643e-01\\n-2.72701830e-01 -1.54815972e-01 7.39392266e-02 3.39608550e-01\\n-3.45297128e-01 -1.08373305e-02 -7.35293701e-02 8.43833312e-02\\n1.18863387e-02 1.14998318e-01 -2.24859104e-01 9.62040722e-02\\n-1.84260070e-01 -5.54804564e-01 3.10518622e-01 -2.47360289e-01\\n-1.13714263e-01 -3.35567258e-02 2.20117033e-01 2.01406211e-01\\n-2.55737692e-01 8.83527398e-02 -1.46639079e-01 1.46311060e-01\\n5.25678694e-02 4.28875744e-01 -2.73783475e-01 -1.88229695e-01\\n-2.71586776e-01 2.04715326e-01 -6.02524802e-02 4.89975065e-02\\n-4.30177562e-02 4.41746444e-01 1.40567958e-01 1.19387440e-01\\n4.91982996e-01 4.13853815e-03 -2.72361100e-01 -3.41053933e-01\\n-1.54788256e-01 -1.15021415e-01 2.85966638e-02 -9.95744020e-02\\n3.06358904e-01 -3.30768287e-01 -8.98708254e-02 -2.22869694e-01\\n-2.61587709e-01 -4.23883408e-01 -5.14808781e-02 1.42157506e-02]]',\n", + " 'job_description': 'Swiss AviationSoftware is a 100% subsidiary of Swiss International Air Lines and successfully develops and distributes the software package AMOS which manages the maintenance, engineering and logistics requirements of modern airlines. In order to strengthen our leading market position we are looking for dedicated employees who would like to work in a fascinating international environment with more than 180 customers from all over the world. We are looking for a skilled Database Specialist to be responsible for the further support and development of the interface between our application server and the database systems PostgreSQL, Oracle and SAP ASE. Do you want to be part of a product development team? Do you want to be responsible for optimizing the database access layer and give the development teams tips and tricks about data security, data access, and data modeling? Then help us to continue the success story of AMOS and apply. Tasks Responsible for the communication between the AMOS application server (JDBC) and database system Planning and control of the database usage Definition of the system requirements Support the application development in terms of database design, usage and operation Research new database features and transfer them into development standards Definition of the database maintenance to ensure information accuracy and best performance Comply with the full application life-cycle Work in agile development teams Perform code-reviews and write automated tests Requirements Successfully completed a degree/diploma in software engineering, computer science, or related discipline Strong foundation in DBMS systems (PostgreSQL, Oracle, SAP ASE) and the standard database features Strong foundation in Java and SQL Strong object oriented modelling and analysis skills Significant experience/interest in writing enterprise applications Knowledge of Agile Development principles Excellent organization, communication and interpersonal skills Strong customer orientation, ability to make pragmatic compromises to make progress Fluency in English, German language skills are an advantage What we offer Working in an open and cooperative environment with a motivated and friendly team Good professional and personal development opportunities Active participation in the continuous improvement of processes International work environment with people from around the globe Excellent working conditions in pleasant surroundings: brand new office spaces and ergonomic office furniture, lounge zone, terrace, coffee & break room Ideal work-life balance and different sport possibilities (e.g. squash, soccer, ice skating – partially supported by company) Child allowance and the possibility of home office Fringe benefits: discount on flights, annual TNW abo, discount offers for hotels and hire cars, advantageous credit card conditions, and more',\n", + " 'soft_skills': '[\"Writing\", \"Cooperation\", \"Professionalism\", \"Planning\", \"Management\", \"Friendliness\", \"Communications\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"System Requirements\", \"Computer Science\", \"Data Modeling\", \"Life Cycle Assessment\", \"Branding\", \"Maintenance Engineering\", \"Credit Card Applications\", \"Activism\", \"Apex Data Loader\", \"PostgreSQL\", \"Layering\", \"Operations Research\", \"Application Servers\", \"Test Automation\", \"E (Programming Language)\", \"Hostile Work Environment\", \"Database Design\", \"Software Engineering\", \"JDBC Driver\", \"Ergonomics\", \"Logistics\", \"Continuous Improvement Process\", \"Object-Oriented Design\", \"Transferable Skills Analysis\", \"Office Space Planning\", \"Code Review\", \"Database Systems\", \"Community Organizing\", \"Remote Database Access\", \"New Database Manager (NDBM)\", \"Personality Development\", \"Java (Programming Language)\", \"Database Abstraction Layer\", \"SQL (Programming Language)\", \"Agile Product Development\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Cornish']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer (perfomance engineering)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-1.82906210e-01 2.52426744e-01 4.35905248e-01 4.00441661e-02\\n6.18332028e-01 -6.66051209e-02 -5.60500361e-02 3.74677479e-01\\n-2.12279838e-02 -3.41936886e-01 -1.22641459e-01 -1.43844545e-01\\n-4.83607873e-02 3.17012481e-02 1.32659391e-01 3.50069255e-01\\n1.67590097e-01 6.86599836e-02 -9.21582952e-02 2.53600419e-01\\n1.24319188e-01 -5.05499961e-03 1.72717988e-01 6.70853317e-01\\n3.27433825e-01 9.28516164e-02 -7.33415931e-02 -3.40637565e-02\\n-3.21717530e-01 -2.35052809e-01 4.20188397e-01 1.07428022e-01\\n-1.06599212e-01 -3.13745379e-01 1.00218140e-01 8.96744523e-03\\n-2.40329057e-01 -1.03079125e-01 -4.43820842e-02 1.22378163e-01\\n-4.12883431e-01 -1.90165445e-01 1.81480683e-02 8.87348801e-02\\n-2.48983935e-01 -3.52931350e-01 5.14226146e-02 -1.11755818e-01\\n1.27683252e-01 -7.15960860e-02 -5.56132615e-01 3.06931198e-01\\n-3.09140891e-01 -1.73025370e-01 3.43795091e-01 5.64562023e-01\\n-5.63143156e-02 -4.68926519e-01 -4.58973140e-01 -2.57725060e-01\\n8.24214742e-02 -1.51263878e-01 2.18041409e-02 -3.10291916e-01\\n2.84862190e-01 9.20081809e-02 1.07123800e-01 3.27784508e-01\\n-7.33363986e-01 -1.16322666e-01 -1.99419379e-01 -4.98958379e-02\\n-3.45357090e-01 -1.01916187e-01 -2.15091616e-01 -1.09312095e-01\\n-1.67629421e-01 4.55749065e-01 7.34335184e-02 6.24479689e-02\\n-4.61146384e-02 2.88452834e-01 -1.04743071e-01 3.84398609e-01\\n2.34534442e-01 1.26523226e-01 1.25417262e-01 3.09586704e-01\\n-3.80819142e-01 4.17543352e-01 9.00044888e-02 -2.84624308e-01\\n1.71290219e-01 1.10908389e-01 2.75148243e-01 2.73980200e-02\\n5.58708236e-02 6.55611083e-02 -1.25195652e-01 2.30264291e-01\\n1.51971862e-01 -2.32006371e-01 1.20319624e-03 -1.73625246e-01\\n3.47839706e-02 -4.40125726e-02 -3.64483483e-02 1.27246350e-01\\n-2.15813071e-01 3.89259011e-01 1.18292384e-01 -2.16095269e-01\\n-1.33088306e-02 -5.76294601e-01 -8.22655559e-02 -1.12718061e-01\\n-8.00809562e-02 4.04755659e-02 2.44155884e-01 1.42227948e-01\\n3.29833806e-01 7.18303118e-03 1.99982822e-01 8.25950205e-01\\n-1.06709590e-02 3.35207954e-02 -2.33677045e-01 3.34085822e-01\\n8.66844729e-02 -2.31046155e-01 1.14587776e-01 3.08848202e-01\\n-1.57712027e-02 -2.04050986e-04 -1.79856256e-01 2.61582404e-01\\n-1.45300388e-01 -1.97018653e-01 -2.65887588e-01 1.67411789e-01\\n-7.77277052e-02 -3.75383139e-01 4.79981124e-01 1.65114492e-01\\n1.37653127e-01 -1.33229569e-01 -1.05670262e-02 -1.25942349e-01\\n-1.27623603e-02 1.38970897e-01 4.19580042e-02 9.25963148e-02\\n-3.13922286e-01 -2.63045073e-01 -1.82897925e-01 9.34671685e-02\\n-1.64646983e-01 6.32658228e-02 -1.93777099e-01 -6.53774068e-02\\n2.83849865e-01 8.44993666e-02 -3.73850703e-01 2.75878727e-01\\n6.50979578e-02 -9.36596543e-02 9.22660169e-04 3.45211357e-01\\n-1.68675706e-01 2.18734026e-01 -1.21198930e-01 -1.90360829e-01\\n5.44629931e-01 6.68403357e-02 1.18452765e-01 1.18599483e-03\\n1.80529311e-01 -9.38426331e-02 1.98187143e-01 1.40543550e-01\\n-7.50633776e-01 3.61937553e-01 -1.01284102e-01 -6.78293407e-02\\n1.34873256e-01 4.16774154e-02 2.87886530e-01 -2.58184940e-01\\n1.19437978e-01 -1.58639416e-01 -4.11644101e-01 -3.27273905e-01\\n-8.56337398e-02 8.58755857e-02 2.60414094e-01 -4.29878384e-01\\n-1.54058546e-01 1.97101831e-01 -4.39113289e-01 -1.34870857e-01\\n5.70569336e-02 2.53222018e-01 1.21243417e-01 1.10961601e-01\\n-1.45248547e-01 -4.19172466e-01 1.25692934e-01 -4.81229842e-01\\n-3.37245166e-01 6.99787661e-02 -2.52700657e-01 2.09231079e-01\\n3.63427885e-02 -3.05636227e-02 -1.07160300e-01 1.11595854e-01\\n-3.06079417e-01 -4.14347425e-02 1.32139683e-01 -5.22187585e-03\\n2.11292833e-01 6.58922568e-02 -3.95417184e-01 4.21134055e-01\\n-1.43385276e-01 5.25637865e-01 1.11078955e-01 -8.07902157e-01\\n5.47369957e-01 3.36285651e-01 -4.76442650e-02 -3.97759885e-01\\n5.06787419e-01 -3.76066655e-01 9.69695374e-02 3.98267359e-02\\n-4.18794334e-01 -3.04711044e-01 2.64676958e-01 -1.05315506e-01\\n-3.05579305e-01 4.78654772e-01 3.08696236e-02 1.39491796e-01\\n1.29494637e-01 -2.96534240e-01 -2.19724268e-01 -3.34689803e-02\\n-6.61336333e-02 -2.19065815e-01 -5.59328079e-01 -4.46764007e-02\\n-1.34951428e-01 -5.02842844e-01 -2.04459563e-01 -3.73497725e-01\\n-1.93803132e-01 -2.67122746e-01 -1.81590125e-01 2.09313214e-01\\n1.80988684e-01 1.30612910e-01 -4.24767546e-02 5.52331191e-03\\n3.51571813e-02 -6.35633290e-01 -2.08201297e-02 1.17870599e-01\\n4.20489669e-01 1.85242996e-01 1.24665514e-01 -4.49036993e-02\\n-3.00083626e-02 6.40026331e-01 -2.18150526e-01 -2.35985890e-01\\n1.66727081e-01 1.96801424e-01 4.57610488e-02 -1.12095885e-01\\n1.94272697e-02 3.52477908e-01 -2.61198282e-01 4.70939353e-02\\n-9.34519395e-02 1.89260598e-02 4.15669829e-01 7.29280338e-03\\n-2.72885382e-01 -1.72239184e-01 -6.21135980e-02 1.77671090e-01\\n-6.36457920e-01 -1.88840657e-01 5.18195152e-01 2.63589650e-01\\n8.22546631e-02 1.72427610e-01 2.25390017e-01 -5.68012074e-02\\n-1.95789382e-01 -2.00649381e-01 2.88451582e-01 8.79841074e-02\\n1.61821321e-01 4.35318016e-02 -1.62693232e-01 -5.71499228e-01\\n-3.32182097e+00 -7.43211955e-02 1.36232436e-01 -3.00448239e-01\\n2.83079565e-01 -1.18301339e-01 1.97242051e-01 2.45199595e-02\\n-3.19365144e-01 1.56622138e-02 -2.48847410e-01 -1.39874339e-01\\n1.37211323e-01 2.43583083e-01 6.29089475e-02 1.55944243e-01\\n1.51348323e-01 -2.36049086e-01 3.17667834e-02 3.30897570e-01\\n-2.12765902e-01 -7.44360149e-01 1.74080178e-01 -2.99876053e-02\\n9.81430784e-02 2.45850295e-01 -3.78827870e-01 -9.85301808e-02\\n-1.76162526e-01 -2.93792844e-01 -2.51630228e-02 -2.91633993e-01\\n-1.27501443e-01 3.24314207e-01 1.65517241e-01 -1.75156191e-01\\n6.15783893e-02 -4.33426857e-01 -6.68391734e-02 -5.60596824e-01\\n1.72423586e-01 -5.76216698e-01 1.13584138e-01 -1.61047742e-01\\n6.77630901e-01 -2.64965236e-01 9.73110497e-02 1.99335694e-01\\n2.10377946e-01 2.12960020e-01 1.27197966e-01 -1.38053810e-03\\n-1.91605151e-01 -3.23553294e-01 -1.63478151e-01 -1.48815066e-01\\n4.55905825e-01 3.63674313e-01 -1.78330645e-01 5.63401915e-02\\n5.49814515e-02 -2.69376665e-01 -3.10229212e-01 -2.62473941e-01\\n-1.45475477e-01 -1.93988606e-01 -6.91344976e-01 -4.09093797e-01\\n-1.06185958e-01 -1.62578538e-01 -2.05638111e-01 5.86471796e-01\\n-2.54025131e-01 -3.72232854e-01 -8.05504695e-02 -5.12746811e-01\\n2.49118909e-01 -2.17977419e-01 3.75922839e-03 -2.32915163e-01\\n-1.38840884e-01 -3.75329107e-01 1.62459016e-01 -2.73201354e-02\\n-2.11275462e-02 -2.21997246e-01 2.94896923e-02 -9.93119404e-02\\n-2.66580462e-01 -5.45547545e-01 4.10613328e-01 1.41014665e-01\\n3.25743288e-01 1.63330972e-01 3.04599077e-01 7.58913606e-02\\n2.44403452e-01 -7.62296766e-02 -6.89132810e-02 -2.86915809e-01\\n4.42095436e-02 4.56812093e-03 5.23878455e-01 -2.22920313e-01\\n-7.88356140e-02 1.65655985e-01 -2.26394743e-01 -1.09976046e-01\\n2.31734931e-01 -7.12035457e-03 4.04772162e-02 -1.39973566e-01\\n3.15469503e-01 -4.20084834e-01 -1.86696425e-01 8.41410831e-02\\n4.27170210e-02 5.34485102e-01 6.48826286e-02 -4.32866454e-01\\n-1.90379858e-01 4.04676586e-01 1.00964323e-01 -1.97258487e-01\\n-1.06048614e-01 5.78763112e-02 -2.27246806e-01 2.03266099e-01\\n1.09661669e-01 -2.05240890e-01 -2.36547321e-01 -9.76693779e-02\\n-1.13868862e-01 3.34006846e-01 2.78854698e-01 1.31321549e-01\\n5.92407119e-03 -3.74855459e-01 -1.34338275e-01 2.05060184e-01\\n1.91550806e-01 4.30685252e-01 1.65522337e-01 -1.84750810e-01\\n-1.33565851e-02 3.06640983e-01 -9.11113620e-02 2.16731921e-01\\n-8.62888172e-02 9.25924480e-02 -5.74526966e-01 -1.68714449e-01\\n-1.98114231e-01 -2.99016863e-01 7.27392286e-02 4.04763788e-01\\n1.98461980e-01 -5.18546253e-02 4.12180126e-02 -4.33755845e-01\\n3.55989069e-01 5.04327379e-02 2.53204882e-01 7.11234957e-02\\n-2.26804651e-02 5.90403080e-01 3.87650728e-02 -2.72218823e-01\\n-1.60132110e-01 3.56945139e-03 -2.93466568e-01 -1.24100067e-01\\n1.58891320e-01 -3.35114270e-01 -6.03329204e-02 4.27231133e-01\\n7.91163966e-02 -2.09654123e-01 -8.66507590e-02 2.98464507e-01\\n-7.73144187e-04 -1.94057360e-01 -2.04013065e-01 7.55109936e-02\\n3.45185995e-01 9.14732292e-02 2.19782323e-01 -3.83998632e-01\\n-8.98507312e-02 -8.91985223e-02 -2.22079386e-03 4.32574511e-01\\n1.55355945e-01 1.69319902e-02 8.88213515e-03 -1.92968294e-01\\n4.80021745e-01 -5.44891618e-02 -1.26232535e-01 7.53369778e-02\\n7.14635178e-02 -1.38318285e-01 -4.42413211e-01 1.23987578e-01\\n-7.71246701e-02 -1.51369914e-01 -3.89634557e-02 9.29887816e-02\\n1.96417347e-01 6.02713861e-02 -5.23251712e-01 -2.00599283e-01\\n-2.48105153e-01 1.51178008e-02 -2.03983914e-02 -4.82365519e-01\\n5.25247082e-02 -1.99063662e-02 -6.26957536e-01 2.45546848e-01\\n-1.51236147e-01 -5.53638972e-02 2.10748449e-01 9.72626954e-02\\n-3.08041781e-01 -1.51383355e-01 1.39995202e-01 1.84972689e-01\\n-2.48583332e-01 -8.12129453e-02 -6.39055893e-02 -9.97332692e-01\\n1.86777517e-01 -2.99378596e-02 -1.05862789e-01 6.87408820e-02\\n-1.14370128e-02 -6.71852410e-01 8.56250376e-02 -4.11477059e-01\\n-2.15059519e-01 -8.81532803e-02 -2.36681059e-01 -3.67729306e-01\\n3.16065028e-02 -4.62576095e-03 -2.14798570e-01 3.57513994e-01\\n-3.20864201e-01 4.08830971e-01 -2.87946723e-02 1.49627492e-01\\n1.03627443e-01 -2.56902486e-01 6.43411651e-02 -3.75277996e-01\\n-3.22752714e-01 -1.81625664e-01 -2.35591710e-01 -2.08758488e-01\\n-1.34823676e-02 -2.90603459e-01 -4.92686033e-02 -4.30301093e-02\\n3.36467922e-01 1.38462245e-01 -1.73561141e-01 -2.23576337e-01\\n1.42735153e-01 -5.01639605e-01 2.25415066e-01 -9.87363532e-02\\n-3.57767530e-02 -4.87068407e-02 2.26304293e-01 3.43708210e-02\\n2.40737945e-01 -3.93269390e-01 3.72271329e-01 -3.71705443e-01\\n-2.81993866e-01 -6.16615564e-02 6.44923151e-02 2.02106610e-02\\n2.86768883e-01 -5.08924365e-01 -5.20206802e-02 2.91113764e-01\\n1.91317245e-01 1.29833981e-01 2.35679179e-01 -9.12204236e-02\\n-1.22966722e-01 2.19099745e-01 -4.60500836e-01 1.27355933e-01\\n7.68839777e-01 1.34144679e-01 9.14192498e-02 1.83421552e-01\\n1.91008896e-01 2.63511181e-01 4.52782184e-01 1.25928894e-01\\n-1.48008063e-01 3.24581027e-01 3.10449172e-02 -5.49304783e-01\\n-2.07398295e-01 4.71845036e-03 -2.23829448e-01 -3.45799983e-01\\n5.52416205e-01 3.74740362e-01 -4.55725580e-01 -2.37776950e-01\\n-1.71137691e-01 -1.47999540e-01 1.24585249e-01 -4.92168851e-02\\n3.50584239e-02 -1.46508321e-01 5.28742909e-01 -8.87319222e-02\\n2.13684782e-01 5.02661228e-01 -9.52716321e-02 -2.46469155e-01\\n-7.94355273e-02 7.19781443e-02 6.44859448e-02 4.61834878e-01\\n-7.46099502e-02 1.87599376e-01 1.33792102e-01 1.62923977e-01\\n-1.57176659e-01 -7.18753338e-02 1.15339324e-01 1.29159003e-01\\n3.08452472e-02 8.43125954e-02 3.24442267e-01 3.80784780e-01\\n2.79051423e-01 4.26031917e-01 2.96214491e-01 9.21487063e-02\\n4.87705618e-01 5.66652834e-01 3.38803440e-01 7.98304752e-02\\n-1.09472722e-01 -1.51512166e-02 1.51067197e-01 -2.10038684e-02\\n3.13648313e-01 3.90332460e-01 1.55750170e-01 8.46462011e-01\\n3.79553765e-01 3.06424677e-01 6.55691922e-01 -5.45875549e-01\\n-4.46979672e-01 5.48456572e-02 4.31498170e-01 -5.02558827e-01\\n6.41077831e-02 7.27732182e-02 -2.74487674e-01 2.24715799e-01\\n-4.83207643e-01 -1.77759111e-01 -1.53125487e-02 2.29564495e-02\\n7.20159113e-02 -5.32005653e-02 -2.33477324e-01 1.91231653e-01\\n-8.31475034e-02 -1.40289009e-01 -4.62929130e-01 -2.01198533e-01\\n-2.19056666e-01 -1.26235232e-01 -4.58631553e-02 -1.57139957e-01\\n2.23914701e-02 -2.52237260e-01 -4.45623063e-02 -6.76153377e-02\\n3.58685851e-01 -4.40594032e-02 -7.23078251e-02 -1.39536753e-01\\n1.62420347e-01 2.89018691e-01 5.61424792e-01 -3.99986878e-02\\n2.18173429e-01 -1.77561104e-01 -1.29024178e-01 1.90070927e-01\\n1.64823174e-01 7.02724233e-02 9.11395028e-02 3.58130097e-01\\n-3.22331548e-01 -1.26360029e-01 1.46549672e-01 3.33824337e-01\\n-4.06458318e-01 7.52300844e-02 -7.14453161e-02 3.36534381e-02\\n7.34089017e-02 1.59032196e-01 -3.39396238e-01 3.80647443e-02\\n-2.02962875e-01 -5.01476943e-01 3.72704476e-01 -1.51289687e-01\\n-1.14431329e-01 6.58288524e-02 3.03476512e-01 1.24572039e-01\\n-2.26069018e-01 6.84862807e-02 -8.82444531e-02 1.02965131e-01\\n6.51698001e-03 3.57171148e-01 -2.81416684e-01 -2.23405391e-01\\n-1.74177721e-01 2.40599453e-01 -4.90417741e-02 1.30889475e-01\\n-7.32454360e-02 4.10667628e-01 8.69260877e-02 -3.72624444e-03\\n3.99324119e-01 -5.34545556e-02 -3.12475502e-01 -2.62066454e-01\\n-3.13230902e-01 -1.75911576e-01 -1.08885475e-01 -4.76184562e-02\\n2.05915064e-01 -3.98730546e-01 -5.65956086e-02 -1.39209375e-01\\n-1.85753092e-01 -3.37754339e-01 -7.65628740e-02 -7.95166716e-02]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team As a member of the performance engineering team you will be part of an agile team of Software and Performance Engineers located in Zurich. In your new role you are analysing performance problems, implementing optimisations and developing core features for the Avaloq Banking Suite. You will design new features regarding system performance, optimise existing functionality and write technical documentation. Furthermore, you will analyse and fix problems on database and lower software layers (Oracle and OS). Your mission Development and maintenance of the UNIX/Linux scripting layer, which provides administration and configuration services, support for Oracle RAC and Exadata, cloning and anonymization utilities Development and maintenance of the Background Processes framework which enables the scheduling and execution of asynchronous operations and provides an API to control and monitor external systems connecting to the Avaloq Banking Suite, such as gateways to financial services providers and adapters for E-Banking services What you need BSc/MSc degree in Computer or Nature Science Experience with Oracle Databases, Oracle PL/SQL and UNIX/Linux shell scripting Sound knowledge of relational database technologies Solid understanding of modern software engineering principles and design Strong analytical, abstract thinking and problem-solving skills as well as the ability to work under pressure while performing customer support activities and urgent production issues You will get extra points for the following Oracle Certified Professional German skills Experience in agile processes and events as well as in the financial industry Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Manegg Don’t be shy – apply! Avaloq Evolution AG Michelle Hiestand, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online.',\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Problem Solving\", \"Communications\", \"Scheduling\", \"Operations\", \"Positivity\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"MSC Software\", \"Customer Support\", \"Agility\", \"Shell Script\", \"Analytics\", \"Oracle Databases\", \"Industrialization\", \"Wealth Management\", \"Financial Services\", \"Natural Sciences\", \"Oracle Exadata\", \"Activism\", \"Technical Writing\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Layering\", \"Financial Information eXchange (FIX) Protocol\", \"Linux\", \"E (Programming Language)\", \"Background Process\", \"Adapters\", \"Performance Engineering\", \"Executable\", \"Software Engineering\", \"Academic Support Services\", \"Library For WWW In Perl\", \"Cloning (Biology)\", \"Banking Services\", \"Oracle Rac\", \"Technical Documentation\", \"Service Provider\", \"Relational Databases\", \"Banking\", \"Software Modernization\", \"Scripting\", \"Unix\", \"Application Programming Interface (API)\", \"Abstractions\", \"EN 1993 Building Codes\", \"Performance Systems Analysis\", \"Controllability\", \"Agile Unified Process\"]',\n", + " 'languages': \"['English', 'Slovenian', 'Chinese', 'Maori', 'Sundanese']\"},\n", + " {'company_id': '40',\n", + " 'job_title': 'director data solutions (data science, analytics, bi)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.epam.com',\n", + " 'jobdescription_embedded': '[[-3.63576472e-01 3.57174784e-01 5.07355809e-01 -5.48212882e-03\\n5.64902782e-01 -1.19120434e-01 -2.35726312e-02 9.34738442e-02\\n-6.98652416e-02 -3.91176641e-01 -1.88871220e-01 -2.82527417e-01\\n-3.73633429e-02 1.24194644e-01 1.59064069e-01 5.19433975e-01\\n1.78467378e-01 2.64663640e-02 -1.10854633e-01 4.56562936e-01\\n1.39203668e-03 -2.45336741e-01 -3.10287029e-02 8.10639977e-01\\n4.50094044e-01 -2.30896268e-02 -1.04203254e-01 -1.07893810e-01\\n-2.68140197e-01 -2.60504425e-01 3.83764803e-01 -8.66251811e-03\\n-1.37470037e-01 -4.10729587e-01 1.52139425e-01 1.95020616e-01\\n-2.65017360e-01 3.57901789e-02 -1.82937056e-01 1.61129028e-01\\n-6.02907658e-01 -3.46736491e-01 9.21063870e-02 9.60852392e-03\\n-3.54666591e-01 -3.43335092e-01 3.75835225e-03 -7.57036507e-02\\n1.07695475e-01 6.56459928e-02 -5.31843722e-01 3.21593881e-01\\n-3.86054009e-01 -3.17948818e-01 3.79210651e-01 7.03781605e-01\\n2.37147808e-01 -6.08083248e-01 -4.50720906e-01 -4.28188950e-01\\n-4.05985303e-02 -8.18517245e-03 1.01541199e-01 -2.91344702e-01\\n2.54490733e-01 -6.88513070e-02 -4.16915417e-02 4.31582749e-01\\n-8.37191463e-01 -1.11519285e-01 -3.46323788e-01 1.49987414e-02\\n-3.73601586e-01 8.21090937e-02 -4.87527013e-01 -1.49978161e-01\\n-2.49165408e-02 5.47002792e-01 -4.06412408e-03 6.16804548e-02\\n-2.45684981e-01 3.56585741e-01 -2.66190618e-01 2.92696953e-01\\n3.90459269e-01 2.66707301e-01 4.12747204e-01 4.33283806e-01\\n-4.92573231e-01 4.92667913e-01 2.37961337e-01 -3.69400442e-01\\n2.23092467e-01 1.89509273e-01 4.09380972e-01 2.49189973e-01\\n1.15164340e-01 2.40416646e-01 -1.36352330e-01 1.13388419e-01\\n2.60390848e-01 -2.41345167e-01 6.99251890e-04 -1.43603370e-01\\n9.35209468e-02 -4.57718223e-02 -3.96828428e-02 9.69252661e-02\\n-3.46354514e-01 3.51971835e-01 1.24566942e-01 -3.42785060e-01\\n-2.26371184e-01 -5.47077239e-01 -3.79174948e-02 2.06458718e-02\\n-1.29408985e-01 2.18585640e-01 1.61656931e-01 4.34981324e-02\\n2.24770606e-01 -2.13504359e-02 7.98708722e-02 9.60955918e-01\\n-2.85473987e-02 6.37478083e-02 -1.11079186e-01 4.03968930e-01\\n2.07094014e-01 -2.02397063e-01 1.40799105e-01 1.69696689e-01\\n-1.25749648e-01 -1.20663397e-01 -2.78630793e-01 5.03458798e-01\\n-1.29321799e-01 -1.00997604e-01 -1.73379511e-01 1.81229249e-01\\n-6.25076070e-02 -4.86429155e-01 7.68918395e-01 -3.29318047e-02\\n1.69656605e-01 -4.41816561e-02 3.22743580e-02 -3.76124270e-02\\n-2.57316232e-01 2.66678154e-01 9.70636308e-02 2.68386364e-01\\n-2.98201054e-01 -2.65694052e-01 -1.03485934e-01 2.58003533e-01\\n-2.76387453e-01 4.26306576e-02 -2.10560083e-01 -1.17770478e-01\\n2.27768123e-01 2.19993636e-01 -4.84100312e-01 2.88047910e-01\\n-1.05338834e-01 -1.01922177e-01 -6.26790673e-02 2.17401415e-01\\n-1.89853683e-01 1.48522496e-01 -2.53829546e-02 -4.45276946e-02\\n6.12195373e-01 2.09691718e-01 4.70938206e-01 2.14108601e-02\\n3.34042132e-01 -1.62109628e-01 1.72921091e-01 1.33339286e-01\\n-5.25081635e-01 2.93162525e-01 -7.18049146e-03 -2.31386930e-01\\n1.01210251e-01 -6.15820885e-02 4.18209672e-01 -3.00219595e-01\\n-6.76040575e-02 -2.58910656e-01 -5.28843760e-01 -4.17608559e-01\\n-1.58833474e-01 -3.16899270e-02 3.28903764e-01 -4.63445902e-01\\n-6.60011843e-02 2.39427358e-01 -5.53481519e-01 -3.14814031e-01\\n2.22031474e-01 4.00162876e-01 1.49216279e-01 6.07748069e-02\\n-1.25214204e-01 -6.95024788e-01 1.68055277e-02 -4.47393239e-01\\n-3.60933781e-01 3.86893563e-02 -3.88820797e-01 -5.54974005e-02\\n-1.64673448e-01 8.65983777e-03 -5.38832918e-02 3.11082136e-02\\n-3.77855808e-01 9.47088003e-03 5.43735810e-02 8.83491412e-02\\n2.42242381e-01 1.12591743e-01 -3.25078785e-01 5.18395245e-01\\n-2.73491830e-01 5.08152246e-01 2.55798817e-01 -1.04347563e+00\\n6.59130096e-01 2.37191960e-01 3.88494832e-03 -2.07685888e-01\\n3.99278671e-01 -5.56560874e-01 -1.73200630e-02 1.20178558e-01\\n-3.30115408e-01 -3.39684188e-01 2.27272734e-01 -2.89476454e-01\\n-3.77326965e-01 6.34552717e-01 8.64861459e-02 3.03729791e-02\\n4.13930535e-01 -3.42465878e-01 -2.04319745e-01 -9.85281616e-02\\n-1.66472077e-01 -1.98359847e-01 -6.89279616e-01 2.25726128e-01\\n-1.66356787e-01 -5.60674965e-01 -2.13929117e-01 -4.91146982e-01\\n-3.31083715e-01 -4.39136207e-01 -2.17616439e-01 1.29038215e-01\\n1.51739269e-01 1.54084891e-01 -1.59278855e-01 6.49946257e-02\\n3.74720171e-02 -6.73535645e-01 -2.01205164e-02 1.81192458e-01\\n5.21772861e-01 3.69460076e-01 1.37424290e-01 -2.55502835e-02\\n1.23238660e-01 5.39965749e-01 -3.08118582e-01 -3.47381353e-01\\n1.81600809e-01 6.14861026e-02 3.82358357e-02 -1.66817367e-01\\n1.77254289e-01 2.27516368e-01 -3.53161871e-01 -1.88353751e-02\\n2.57616192e-02 1.09940022e-01 4.14108992e-01 -7.76331350e-02\\n-2.35931784e-01 -6.69090673e-02 -8.80983099e-02 1.81121036e-01\\n-6.01407766e-01 -1.34985387e-01 6.14408374e-01 1.07549787e-01\\n3.46593671e-02 2.35933483e-01 1.51577964e-01 -4.73943725e-03\\n-2.77936578e-01 -1.54392630e-01 2.82979578e-01 1.29780471e-01\\n2.03095466e-01 7.97969103e-02 -5.81552088e-02 -6.02149248e-01\\n-2.97816086e+00 -2.81738997e-01 1.38198525e-01 -2.70932466e-01\\n2.25718349e-01 -1.55048937e-01 8.40033516e-02 2.43536737e-02\\n-3.42454553e-01 -2.55234633e-02 -7.55898207e-02 -1.11436181e-01\\n-2.63342634e-02 1.97255343e-01 8.47201347e-02 2.72916138e-01\\n1.07790291e-01 -2.31523409e-01 8.72166157e-02 3.98979962e-01\\n-1.39599398e-01 -8.17559123e-01 3.93783078e-02 -3.57803106e-02\\n1.52733803e-01 9.52988118e-02 -5.42426229e-01 2.52403729e-02\\n-2.21357301e-01 -2.44864747e-01 2.12800801e-01 -2.89952457e-01\\n-2.63011187e-01 2.26683915e-01 9.78436694e-02 -1.25880152e-01\\n-1.89698152e-02 -3.89568150e-01 -9.47977379e-02 -5.65385401e-01\\n1.31657943e-01 -7.09523439e-01 4.92211767e-02 -3.07822879e-02\\n6.54996514e-01 -2.33662158e-01 1.43406644e-01 1.22723475e-01\\n1.35282665e-01 1.40361741e-01 1.87812418e-01 8.63178670e-02\\n-3.36443871e-01 -4.18039620e-01 5.72222956e-02 -2.18425006e-01\\n5.05375743e-01 3.48818183e-01 -2.01309383e-01 1.84819072e-01\\n1.88191488e-01 -3.08060467e-01 -4.79638159e-01 -3.44857305e-01\\n-1.51427597e-01 -3.90247218e-02 -8.73349607e-01 -4.38417047e-01\\n-2.77842760e-01 -2.76912153e-01 -1.69310749e-01 8.50647092e-01\\n-2.97605246e-01 -2.81954885e-01 -4.14744094e-02 -6.17894888e-01\\n4.37255383e-01 -1.71161547e-01 1.76777970e-02 -3.90037715e-01\\n-3.04340273e-01 -3.96138370e-01 2.37718731e-01 -5.20069785e-02\\n-3.10413688e-01 -3.28659043e-02 -1.65836737e-02 -2.82137215e-01\\n-3.40690196e-01 -4.71457005e-01 4.43808556e-01 3.56596299e-02\\n3.54390472e-01 2.52752472e-02 5.49847245e-01 -1.56850934e-01\\n4.03702825e-01 1.08992420e-01 -1.20433256e-01 -3.60562086e-01\\n-3.26997153e-02 2.92951651e-02 4.31577444e-01 -1.31469563e-01\\n3.98666039e-02 7.82681927e-02 -3.19005877e-01 4.40836400e-02\\n4.67709392e-01 -5.21735251e-02 8.88154060e-02 -3.96437794e-02\\n1.90095633e-01 -3.98876369e-01 -2.53088355e-01 1.80650160e-01\\n5.49509041e-02 8.47169518e-01 -1.21224644e-02 -4.27707314e-01\\n-2.20542908e-01 5.09986520e-01 3.09595652e-02 3.30880731e-02\\n-1.82330251e-01 1.72347605e-01 -3.05428833e-01 3.95853102e-01\\n1.01552248e-01 -1.54656112e-01 -2.58326709e-01 -1.72562785e-02\\n-1.40908092e-01 1.60292566e-01 1.99239299e-01 9.85759571e-02\\n-9.71991569e-03 -2.70168662e-01 -9.52287018e-02 2.83263028e-01\\n2.27325499e-01 5.30076444e-01 3.25276077e-01 -3.02395105e-01\\n9.08860564e-03 3.59911501e-01 -3.44047666e-01 4.29008007e-01\\n-2.24601761e-01 1.68019399e-01 -7.50843108e-01 -2.40666986e-01\\n-2.11343855e-01 -4.35440540e-01 8.60272050e-02 3.91547948e-01\\n2.22142518e-01 -1.29694402e-01 1.12035275e-01 -5.35770059e-01\\n2.52620637e-01 1.60501391e-01 1.57536358e-01 1.16571665e-01\\n1.89170819e-02 8.03890705e-01 3.34171914e-02 -2.73917437e-01\\n-8.35716501e-02 -1.12008698e-01 -1.69415355e-01 -2.98059821e-01\\n9.15458128e-02 -5.76527953e-01 -1.92599267e-01 4.95775580e-01\\n2.59527802e-01 -2.03906626e-01 -1.56955212e-01 4.00443196e-01\\n9.20535251e-02 -1.63568810e-01 -3.04475069e-01 2.07472444e-02\\n3.46435726e-01 2.22282410e-01 2.07079500e-01 -4.57917213e-01\\n7.59734511e-02 -1.87164042e-02 7.40832984e-02 5.10385811e-01\\n1.19772963e-01 1.73176035e-01 -1.33135423e-01 -1.08106695e-01\\n6.23073220e-01 -3.57004032e-02 -1.26348913e-01 -1.15352079e-01\\n6.24154918e-02 -2.11699843e-01 -4.13245767e-01 1.77062064e-01\\n-2.40097865e-02 -2.91811019e-01 -3.72824371e-02 8.21652859e-02\\n8.49321485e-02 -4.34110686e-02 -5.12257695e-01 -2.21369326e-01\\n-3.50958109e-01 8.81518945e-02 1.05297498e-01 -5.80127895e-01\\n1.06579503e-02 1.40259610e-02 -6.48246050e-01 2.72065580e-01\\n-2.96669994e-02 -5.63102886e-02 1.17539451e-01 2.62004256e-01\\n-1.98571980e-01 -1.58961296e-01 -5.69470599e-02 1.83247149e-01\\n-3.90571833e-01 -2.99286127e-01 -1.75035447e-02 -9.34062004e-01\\n1.71853587e-01 4.22835574e-02 -8.56328458e-02 2.07117945e-01\\n-5.90059310e-02 -7.98907340e-01 1.95966721e-01 -3.88288200e-01\\n-1.21175379e-01 9.82125327e-02 -2.54017830e-01 -4.51754510e-01\\n1.59220204e-01 -1.10466540e-01 -3.37890506e-01 3.76402617e-01\\n-4.57002968e-01 3.71221989e-01 -5.05173951e-02 1.06210209e-01\\n1.26843914e-01 -1.97136894e-01 1.61136359e-01 -1.57656342e-01\\n-4.97511506e-01 -3.45713317e-01 -4.75287974e-01 -3.89881462e-01\\n-2.83112992e-02 -2.24066168e-01 -9.84957963e-02 -6.42958581e-02\\n5.02590120e-01 1.45264044e-01 -1.26494780e-01 -3.33817512e-01\\n8.38093534e-02 -4.59947467e-01 9.15330350e-02 -1.88771158e-01\\n1.44005820e-01 -1.86749101e-01 2.21076518e-01 8.69511515e-02\\n2.67118096e-01 -3.71050954e-01 5.65755606e-01 -2.12933272e-01\\n-4.30961728e-01 -2.27934867e-01 1.18013928e-02 3.93436179e-02\\n4.40360397e-01 -4.04491425e-01 1.28662929e-01 2.76422024e-01\\n1.65384710e-01 -5.06761596e-02 1.80182651e-01 -2.21774384e-01\\n-1.85506806e-01 2.66259015e-01 -5.72373748e-01 2.21453711e-01\\n8.73465538e-01 6.74107745e-02 8.12394693e-02 2.64265060e-01\\n2.05502063e-01 3.32948625e-01 5.54694653e-01 -1.85809255e-01\\n-3.73299271e-02 3.71729910e-01 5.94576448e-02 -5.00359714e-01\\n-1.31443113e-01 -2.26514846e-01 -8.33870173e-02 -3.87444139e-01\\n6.19335592e-01 2.95332998e-01 -5.06209493e-01 -1.62708551e-01\\n-1.52464896e-01 -1.78997070e-01 4.44298476e-01 5.68569116e-02\\n-2.18178272e-01 1.29952803e-01 5.14284611e-01 -9.06663239e-02\\n5.07833958e-01 5.09405673e-01 -1.50221258e-01 -2.76394367e-01\\n-1.01828560e-01 2.35024661e-01 9.29994434e-02 3.31323534e-01\\n-8.53290781e-02 2.42065117e-01 4.02137935e-02 1.16411746e-01\\n-6.93861693e-02 7.96105266e-02 2.03276500e-01 5.57515770e-04\\n3.37550342e-01 4.46677841e-02 4.34267879e-01 4.32017863e-01\\n1.36831060e-01 4.14835811e-01 3.73750865e-01 -7.88264349e-03\\n3.76029909e-01 7.24507511e-01 3.35191429e-01 1.08177342e-01\\n1.50184901e-02 1.72399312e-01 1.07857168e-01 -6.51382208e-02\\n2.26049751e-01 4.18588281e-01 2.70249337e-01 8.94623458e-01\\n3.61055255e-01 3.82852554e-01 8.54125142e-01 -7.14063406e-01\\n-4.31648016e-01 -2.99029201e-02 6.46532059e-01 -4.24276710e-01\\n1.77340001e-01 1.83080971e-01 -1.69395387e-01 4.18025792e-01\\n-4.67446864e-01 -2.29021832e-01 5.58743440e-02 -1.22290947e-01\\n-5.06795943e-03 -1.37165979e-01 -8.23666900e-02 9.55618024e-02\\n-2.17605338e-01 -2.50391006e-01 -2.72849858e-01 -1.47425115e-01\\n-2.85533369e-01 6.34590536e-02 -3.36760394e-02 -9.75857452e-02\\n-1.67869851e-01 -3.55607152e-01 -1.75099179e-01 -8.56222883e-02\\n4.62106764e-01 -1.07539520e-01 -1.98552281e-01 -1.37285903e-01\\n2.61022866e-01 2.62023568e-01 6.33481145e-01 1.13468617e-01\\n1.51598603e-01 -2.82794178e-01 -2.37514406e-01 1.56066239e-01\\n1.21818386e-01 1.07063122e-01 2.46666297e-02 4.25145686e-01\\n-2.42717028e-01 -1.44384369e-01 4.34923954e-02 2.01778218e-01\\n-3.31542850e-01 -1.17973886e-01 -1.69854075e-01 1.13670230e-02\\n-7.16096312e-02 3.01677704e-01 -1.82160527e-01 4.24347892e-02\\n-1.76178515e-01 -6.07760906e-01 4.85590965e-01 -2.50517309e-01\\n-2.42493987e-01 -6.80154040e-02 3.62749308e-01 2.90805757e-01\\n-1.79727092e-01 5.68774715e-02 -9.17389244e-02 1.02060691e-01\\n4.40541506e-02 4.12335694e-01 -1.80485606e-01 -8.48594904e-02\\n-3.53601456e-01 3.13965261e-01 -5.67597374e-02 1.32554322e-01\\n2.00751312e-02 4.86556530e-01 3.36720236e-02 2.44152397e-02\\n3.67322087e-01 1.62006635e-03 -3.23244572e-01 -3.76704454e-01\\n-2.98058152e-01 -7.05660507e-02 1.00875124e-02 -5.33213019e-02\\n1.50426149e-01 -3.56803864e-01 -1.04211606e-02 -3.09646189e-01\\n-1.04591265e-01 -4.94546026e-01 -1.97232664e-01 -8.55736807e-02]]',\n", + " 'job_description': 'Join us at one of the fastest growing Platform Software Engineering Organizations in the world! With over twenty years’ experience of crafting market leading software, our business has been rapidly evolving and is now a global player in solving business challenges and developing tailor made cutting edge solutions. These challenges require a highly skilled workforce imagining, designing, engineering, and delivering software, through to business consulting services & customer experiences, which are changing the world around us. Within EPAM we establish a consultancy branch to help top-tier clients solve their most complex business and technology issues and to advise them on new technologies. As a Big Data Solution Architect, you will be responsible for conducting activities associated with selling core business consulting capabilities to leading organizations from different branches. Responsibilities Drive European Big Data Projects and provide technical guidance and solutions Develop proposals for implementation and design of scalable big data architecture Participate in customer workshops and presentation of the proposed solutions Design, implement, and deploy high-performance, custom applications at scale on Hadoop Define and develop network infrastructure solutions to enable partners and clients to scale NoSQL and relational database architecture for growing demands and traffic Define common business and development processes, platform and tools usage for data acquisition, storage, transformation, and analysis Develop roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning Review and audit of existing solution, design and system architecture Perform profiling, troubleshooting of existing solutions Create technical documentation Drive new business and get involved in pre-sales activities whilst overseeing and managing Big Data Architects and remote team members who are involved in key projects Requirements Solid experience in a Technical Leadership role Experience of driving large scale Big Data Architecture projects Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra Hands on experience of knowledge of programming and scripting languages such as Java, Python, Scala Experience with big data solutions developed in large cloud computing infrastructures such as Amazon Web Services, Elastic MapReduce or Pivotal Cloud Foundry Experience in client-driven large-scale implementation projects Data Science and Analytics experience is a plus (Machine Learning, Recommendation Engines, Search Personalization) Technical team leading and team management experience, deep understanding of Agile (Scrum), RUP programming process Strong experience in applications design, development and maintenance Solid knowledge of design patterns and refactoring concepts Practical expertise in performance tuning and optimization, bottleneck problems analysis Experience in Object-Oriented Analysis and Design Fluent oral and written English We offer Experience exchange with colleagues all around the world Competitive compensation depending on experience and skills Regular assessments and salary reviews Develop integration modules for interacting with new systems and applications Opportunities for self-realization Friendly team and enjoyable working environment Corporate and social events',\n", + " 'soft_skills': '[\"Leadership\", \"Troubleshooting (Problem Solving)\", \"Infrastructure\", \"Friendliness\", \"Management\", \"Integration\", \"Presentations\", \"Imagination\", \"Team Management\", \"Socialization\", \"Written English\", \"Consulting\"]',\n", + " 'hard_skills': '[\"NoSQL\", \"Tooling\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Performance Profiling\", \"Agility\", \"Apache Zookeeper\", \"Joint Application Design (JAD)\", \"Interactivity\", \"Analytics\", \"Project Architecture\", \"Machine Learning\", \"High Performance Computing\", \"Distributed Design Patterns\", \"Scale (Map)\", \"Application Development Languages\", \"Development Review\", \"Scala (Programming Language)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Python (Programming Language)\", \"Apache Mahout\", \"MongoDB\", \"Object-Oriented Analysis And Design\", \"Levelling\", \"Scrum (Software Development)\", \"Limiter\", \"Systems Architecture\", \"Apache Oozie\", \"Network Infrastructure\", \"Apache Flume\", \"Software Engineering\", \"Project Implementation\", \"NetApp Data Storage\", \"Recommendation Engine\", \"Data Science\", \"Web Services\", \"Customer Relationship Building\", \"Storages\", \"Apache Hive\", \"Personalization\", \"Cloud Foundry\", \"Develop Networks\", \"Scalability\", \"Big Data\", \"Amazon Web Services\", \"Predictive Modeling\", \"Technical Documentation\", \"Data Acquisition\", \"Adapter Scripting Language\", \"Auditing\", \"Transformation (Genetics)\", \"Civil Engineering Design\", \"Modulation\", \"Pre-Sales Engineering\", \"Performance Tuning\", \"Proposal Development\", \"Relational Databases\", \"Solution Design\", \"Customer Experience\", \"Apache HBase\", \"AWS Elastic MapReduce (EMR)\", \"Java (Programming Language)\", \"Cloud Computing\", \"Process Driven Development\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '115',\n", + " 'job_title': 'backend software engineer for iptiq emea p&c',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Insurance Agencies & Brokerages',\n", + " 'website': 'www.swissre.com',\n", + " 'jobdescription_embedded': '[[-1.51607335e-01 2.45700851e-01 5.71299732e-01 4.21508439e-02\\n5.47416329e-01 -1.59287214e-01 -3.46607268e-02 2.49995232e-01\\n4.47569564e-02 -5.64005554e-01 -3.09100077e-02 -2.73756176e-01\\n-1.55617520e-01 7.43689314e-02 1.28326714e-01 5.27891755e-01\\n3.57368231e-01 6.98308200e-02 -1.72142819e-01 4.35592949e-01\\n6.27982244e-03 -1.40930757e-01 5.72162420e-02 7.86320627e-01\\n3.96925211e-01 -3.37414071e-02 -4.83073890e-02 -1.80194154e-03\\n-2.76713967e-01 -1.84191778e-01 5.40569782e-01 4.71941195e-02\\n-2.48609483e-01 -5.41587353e-01 1.29495695e-01 1.21562771e-01\\n-2.14085653e-01 -7.96991810e-02 -1.70730978e-01 1.45557150e-01\\n-5.21042585e-01 -2.40828693e-01 -1.19071640e-02 -1.18121207e-01\\n-2.12115049e-01 -4.30957049e-01 2.39199027e-04 -1.01336256e-01\\n1.51791707e-01 6.14694990e-02 -5.03482044e-01 1.75401777e-01\\n-3.11641276e-01 -1.63465053e-01 3.40275019e-01 6.12610102e-01\\n3.72616574e-02 -5.89699626e-01 -5.19559443e-01 -3.46681595e-01\\n2.01193392e-02 -1.55878305e-01 1.31854326e-01 -3.45781684e-01\\n2.26804391e-01 -3.06797773e-03 -3.30993049e-02 3.56631339e-01\\n-7.48796403e-01 -5.61239310e-02 -2.76137501e-01 -6.57028519e-03\\n-3.51451337e-01 -8.54304135e-02 -3.96596462e-01 -1.35090426e-01\\n-1.73384756e-01 4.97799933e-01 5.18363528e-02 5.38194738e-02\\n-1.72606051e-01 3.76287282e-01 -2.27606595e-01 5.04966378e-01\\n2.99681634e-01 2.04901561e-01 3.53502095e-01 4.53148961e-01\\n-4.12867457e-01 5.42658091e-01 2.02847391e-01 -3.73002917e-01\\n2.50773400e-01 1.86028242e-01 4.22769696e-01 4.58819829e-02\\n2.43803024e-01 7.17079192e-02 -1.47466838e-01 3.20022345e-01\\n2.57693321e-01 -2.10487992e-01 -5.09887598e-02 -2.71403998e-01\\n-2.26936322e-02 2.54654512e-03 9.37806070e-02 1.23303540e-01\\n-2.83563733e-01 3.92254889e-01 5.35078049e-02 -2.80434072e-01\\n-1.54238239e-01 -4.39132601e-01 -3.73535082e-02 -2.39585638e-02\\n-3.55188176e-02 2.55148947e-01 2.25412637e-01 8.42405632e-02\\n2.41174310e-01 1.07006706e-01 5.93280420e-02 8.43412459e-01\\n-6.20268798e-03 -3.21134776e-02 -2.92062670e-01 3.62573266e-01\\n7.63421357e-02 -3.17435592e-01 2.79244602e-01 1.94348395e-01\\n-2.00742841e-01 -1.88946709e-01 -2.94854790e-01 4.66094911e-01\\n-2.52451058e-02 -2.70842493e-01 -2.60526985e-01 1.56662136e-01\\n7.92032406e-02 -4.89735723e-01 6.84454858e-01 7.17296749e-02\\n1.68903977e-01 -7.14911819e-02 1.08660772e-01 -1.14922643e-01\\n-7.60371387e-02 9.44318324e-02 4.58407998e-02 1.40101999e-01\\n-1.80131972e-01 -2.17888832e-01 -2.11512744e-01 1.79843843e-01\\n-4.03750479e-01 2.45457649e-01 -1.89657360e-01 -9.94548798e-02\\n2.52676576e-01 9.19565707e-02 -3.15387964e-01 2.55572796e-01\\n-8.97467583e-02 8.15720484e-03 1.86879635e-02 4.01351511e-01\\n-1.95168734e-01 6.87448084e-02 8.25260766e-04 -1.96216777e-01\\n6.70043766e-01 2.61465043e-01 2.06621528e-01 6.73682392e-02\\n3.95032972e-01 -4.18851152e-02 3.40355933e-02 1.34208024e-01\\n-7.06217647e-01 3.68079007e-01 -5.14578447e-02 -8.74001831e-02\\n5.46051972e-02 -4.45525423e-02 2.10410863e-01 -2.72858799e-01\\n-5.63940443e-02 -1.54990345e-01 -3.97879362e-01 -2.44130164e-01\\n-1.69587210e-01 -1.80972487e-01 3.64111960e-01 -6.05951667e-01\\n-1.14200369e-01 2.85567760e-01 -6.68980241e-01 -1.59817696e-01\\n1.52009562e-01 2.24529460e-01 1.81540653e-01 1.11764856e-01\\n-2.06065565e-01 -5.30062973e-01 -1.11364797e-02 -5.69816232e-01\\n-3.49971771e-01 5.44129610e-02 -3.49038780e-01 6.89770803e-02\\n5.81736118e-02 6.10862300e-02 -1.25391319e-01 1.19754393e-02\\n-1.36266589e-01 -3.47451344e-02 1.21357404e-01 4.25939411e-02\\n2.65452474e-01 5.27256355e-02 -3.26346517e-01 4.77183431e-01\\n-2.29264617e-01 5.70963979e-01 1.21736772e-01 -1.00509179e+00\\n5.85437655e-01 3.58790159e-01 -1.01564661e-01 -3.15641820e-01\\n3.17170918e-01 -4.15061057e-01 -4.31151576e-02 1.64486498e-01\\n-3.25988591e-01 -2.50679672e-01 1.84413105e-01 -2.64790028e-01\\n-3.05539548e-01 4.23391670e-01 4.23845463e-02 1.42683476e-01\\n2.96188712e-01 -2.29181707e-01 -2.31676966e-01 1.65705830e-02\\n-1.75288200e-01 -2.55442142e-01 -6.99486732e-01 4.60998639e-02\\n-1.14344880e-01 -4.82824206e-01 -7.32759237e-02 -4.98251528e-01\\n-1.46104693e-01 -4.10333812e-01 -2.40190282e-01 1.12137184e-01\\n2.13270932e-01 9.14745778e-02 -1.29924864e-01 -3.09933126e-02\\n2.01663934e-02 -7.00964689e-01 -5.94696309e-03 1.02839254e-01\\n3.74797970e-01 1.32841855e-01 9.76127759e-02 3.58268432e-02\\n1.15872577e-01 6.72438443e-01 -2.34618783e-01 -2.10130006e-01\\n2.08724231e-01 2.64791667e-01 2.58660931e-02 -1.60817921e-01\\n3.05834897e-02 3.11138421e-01 -3.02934200e-01 -1.18448213e-03\\n5.02564088e-02 3.90601568e-02 4.59220827e-01 -1.14960298e-01\\n-4.22099233e-01 -5.55464178e-02 -9.98506416e-03 1.00901648e-01\\n-7.05993295e-01 -1.47137925e-01 7.00239360e-01 1.77009597e-01\\n1.23192295e-01 1.90565437e-01 5.12596518e-02 -6.19042665e-02\\n-3.36743832e-01 -2.54050046e-01 3.45681518e-01 1.64667219e-01\\n2.12107912e-01 1.08523108e-01 2.97815856e-02 -6.53734207e-01\\n-2.96928358e+00 -1.94780499e-01 1.37721986e-01 -1.28120512e-01\\n1.27507553e-01 -1.70227081e-01 5.63224070e-02 -8.29518214e-02\\n-2.55149364e-01 1.19226445e-02 -6.39807805e-02 -1.54268891e-01\\n1.17435344e-01 1.13361835e-01 1.34498805e-01 2.37024307e-01\\n2.50927776e-01 -1.24392226e-01 4.23465855e-02 2.44113877e-01\\n-1.31829381e-01 -8.28639865e-01 2.01336920e-01 3.85021940e-02\\n2.30335027e-01 1.11758836e-01 -4.44711566e-01 -1.34559482e-01\\n-3.23703766e-01 -1.92273781e-01 2.59722173e-02 -3.45683277e-01\\n-1.18936643e-01 2.00283542e-01 1.87649086e-01 -7.99838752e-02\\n8.28027874e-02 -3.81826401e-01 -3.03422064e-01 -5.07337928e-01\\n8.24332833e-02 -6.71792865e-01 7.75821730e-02 -2.03144222e-01\\n5.72810590e-01 -2.17529297e-01 2.23930269e-01 1.19926929e-01\\n1.26079857e-01 1.99299574e-01 1.52441457e-01 9.11917537e-02\\n-2.76066005e-01 -3.35463345e-01 -1.03997886e-01 -1.44256145e-01\\n6.24363899e-01 3.26365411e-01 -2.17629801e-02 5.32800555e-02\\n1.41887307e-01 -1.96928799e-01 -5.22651911e-01 -2.12304950e-01\\n-6.34393021e-02 -1.35689989e-01 -6.88690782e-01 -5.08009076e-01\\n-2.22282708e-01 -8.03410783e-02 -1.87203109e-01 7.38792241e-01\\n-2.69677222e-01 -1.89316869e-01 -9.69721824e-02 -6.09651506e-01\\n3.91033947e-01 -1.64330423e-01 5.76500669e-02 -2.51962543e-01\\n-2.16293544e-01 -5.39816141e-01 8.98807272e-02 1.34898908e-02\\n-3.99983414e-02 -2.47507975e-01 1.19101197e-01 -1.18828356e-01\\n-2.73174405e-01 -4.76839840e-01 4.02263522e-01 2.26547837e-01\\n3.05459380e-01 1.73775733e-01 3.36529911e-01 -5.57742566e-02\\n2.55649805e-01 -1.92559641e-02 -1.89690650e-01 -3.25314164e-01\\n1.39680326e-01 8.31988007e-02 3.54917705e-01 -1.34529799e-01\\n-1.22191742e-01 1.20385304e-01 -2.48277068e-01 -9.30234641e-02\\n4.11407650e-01 -1.05201475e-01 5.34394346e-02 -8.42848569e-02\\n3.60394597e-01 -2.84647226e-01 -1.71526939e-01 2.44031455e-02\\n9.84324589e-02 7.68158793e-01 -5.58939017e-03 -5.24926305e-01\\n1.18317567e-02 5.55643141e-01 9.24163684e-03 1.06751174e-02\\n-3.16886902e-01 1.05011672e-01 -2.51011759e-01 3.11813265e-01\\n1.13789886e-02 -1.80304289e-01 -2.08910257e-01 -2.19813764e-01\\n-1.74070269e-01 2.21201599e-01 2.46137515e-01 1.27475619e-01\\n-2.11120062e-02 -3.21910262e-01 -2.00424045e-01 2.49503508e-01\\n2.17861995e-01 4.82915819e-01 2.19339967e-01 -2.42882714e-01\\n-2.17846297e-02 3.27325761e-01 -1.56466872e-01 1.49184167e-01\\n-2.85380065e-01 1.20912708e-01 -5.34851074e-01 -2.26842359e-01\\n-2.31371552e-01 -3.94340336e-01 1.85542971e-01 4.00716305e-01\\n1.29319355e-01 -1.42921120e-01 1.82845831e-01 -4.70712543e-01\\n3.13165516e-01 2.96505928e-01 6.77503571e-02 1.51993483e-01\\n3.59634310e-02 7.26995587e-01 1.41285229e-02 -2.37567574e-01\\n-1.36250168e-01 -5.21105193e-02 -2.30557352e-01 -2.33205393e-01\\n4.86279763e-02 -5.67141891e-01 -1.25840366e-01 4.14481312e-01\\n5.88311441e-02 -2.83619344e-01 -3.22829664e-01 2.45125219e-01\\n5.49949184e-02 -1.34644657e-01 -2.48466015e-01 -6.68199211e-02\\n4.28889245e-01 -1.04629792e-01 2.66903758e-01 -5.28803825e-01\\n5.76970093e-02 -5.18402420e-02 8.69944245e-02 5.62788904e-01\\n1.44799650e-01 1.29055366e-01 -9.65894759e-02 -1.86028093e-01\\n4.47029442e-01 -8.16727281e-02 -1.73637822e-01 4.33749333e-02\\n1.59072548e-01 -1.88954622e-01 -4.18685973e-01 8.80020037e-02\\n-1.26815930e-01 -1.92775324e-01 5.35170734e-02 1.92247659e-01\\n4.43729423e-02 1.28883183e-01 -6.84196293e-01 -3.06600809e-01\\n-2.64415205e-01 6.82324171e-02 7.87351578e-02 -5.64081311e-01\\n1.37114814e-02 -1.26930326e-01 -5.97811222e-01 2.47712940e-01\\n-2.21192390e-02 -2.26999164e-01 2.62781024e-01 1.14665180e-01\\n-2.72057712e-01 -1.39947653e-01 1.45706441e-02 1.53290555e-01\\n-3.28228235e-01 -3.67780328e-01 -7.27485642e-02 -1.07193446e+00\\n2.25077853e-01 1.47885740e-01 -2.19207317e-01 2.59622931e-01\\n-5.94061539e-02 -7.99730062e-01 4.55757938e-02 -3.83859366e-01\\n-7.41356015e-02 -2.41216943e-02 -2.48026133e-01 -3.44804168e-01\\n1.00986212e-01 5.09668663e-02 -2.06268176e-01 4.35465693e-01\\n-4.18261558e-01 3.78620923e-01 -2.08440125e-01 8.04942548e-02\\n7.31090456e-02 -3.64128858e-01 9.13885608e-02 -4.15105283e-01\\n-4.14787710e-01 -3.36221993e-01 -3.67865145e-01 -3.05270970e-01\\n-3.15383524e-02 -5.04256546e-01 -5.12754917e-02 -1.08980350e-02\\n4.78007495e-01 2.24641651e-01 -1.37601987e-01 -2.90719271e-01\\n-3.88187319e-02 -4.48888600e-01 -1.50886178e-03 -1.48260236e-01\\n-7.53376558e-02 -2.36101285e-01 2.12596506e-01 1.41000703e-01\\n1.67472482e-01 -4.29942071e-01 4.02122855e-01 -2.61439055e-01\\n-3.32473546e-01 -2.36470938e-01 4.54503596e-02 7.02080354e-02\\n2.95249760e-01 -4.96690899e-01 -2.72229593e-03 2.65036881e-01\\n2.38607287e-01 -2.41885986e-02 2.81740010e-01 -9.40708667e-02\\n9.59842931e-03 2.71147907e-01 -3.35410416e-01 2.15242654e-01\\n5.97622633e-01 1.17543370e-01 1.61616325e-01 1.95294216e-01\\n2.08071470e-01 2.82338947e-01 5.33342242e-01 -2.03958657e-02\\n-9.53450799e-04 3.20085645e-01 1.23949036e-01 -4.19393659e-01\\n-7.51649141e-02 -1.06877126e-01 -8.01247805e-02 -3.45256776e-01\\n7.05132365e-01 4.47373152e-01 -3.37100178e-01 -1.10133410e-01\\n-2.72297800e-01 -1.98818237e-01 2.10725039e-01 -4.95266467e-02\\n-7.95061886e-02 1.15052342e-01 4.89127755e-01 -1.14399776e-01\\n2.45970488e-01 5.72366297e-01 -2.94472724e-01 -2.63495028e-01\\n-2.15922967e-01 3.08524549e-01 2.59994641e-02 4.65615124e-01\\n-2.61387885e-01 3.02861780e-01 1.30239576e-01 1.64290771e-01\\n-2.39229113e-01 1.53996617e-01 8.62301067e-02 1.52675718e-01\\n3.51831257e-01 -7.26979226e-02 4.23496485e-01 4.77612317e-01\\n3.31548274e-01 4.07338709e-01 4.06877995e-01 5.42258695e-02\\n5.01626194e-01 5.56577444e-01 5.29224038e-01 1.18944295e-01\\n7.49630481e-02 9.72353369e-02 1.84845626e-01 2.36443616e-02\\n2.87443548e-01 5.45897841e-01 1.04046673e-01 8.42569947e-01\\n3.72719526e-01 3.46872628e-01 6.95742011e-01 -7.36663818e-01\\n-3.64543170e-01 -3.96736562e-02 5.49128413e-01 -3.17222297e-01\\n1.33364141e-01 1.55748993e-01 -1.49561867e-01 2.36745656e-01\\n-4.29289550e-01 -2.32609928e-01 3.15140411e-02 1.58049643e-01\\n1.15368053e-01 -2.16189295e-01 -2.00409368e-01 2.03507170e-01\\n-2.21010342e-01 -1.21603936e-01 -3.85199457e-01 -7.55350813e-02\\n-2.26084024e-01 -3.12810093e-02 7.77518190e-03 -1.56865671e-01\\n-9.85272080e-02 -2.70421267e-01 -1.40903935e-01 -8.31648260e-02\\n3.84521157e-01 -1.18471131e-01 -1.19114116e-01 -1.15869805e-01\\n2.73873448e-01 1.70746401e-01 5.60358405e-01 -1.93594024e-03\\n1.10007524e-01 -1.85535356e-01 -1.53566033e-01 1.86564520e-01\\n2.14750424e-01 6.70564473e-02 3.20854485e-02 3.44990492e-01\\n-2.08808005e-01 -1.58831000e-01 2.20954776e-01 2.57213444e-01\\n-3.36503953e-01 -3.82269397e-02 -2.01983526e-01 9.50355455e-02\\n5.96063510e-02 2.46583730e-01 -2.47002587e-01 -6.63466230e-02\\n-1.17401727e-01 -6.07196689e-01 3.90233815e-01 -3.57466161e-01\\n-1.40969843e-01 -5.50134256e-02 2.76421249e-01 3.49114597e-01\\n-2.89102852e-01 4.72083874e-02 -1.62901469e-02 7.42716640e-02\\n5.01377285e-02 2.60579735e-01 -3.17225426e-01 -2.50775605e-01\\n-3.19044083e-01 2.03708112e-01 -1.09380811e-01 1.43182650e-01\\n8.52500722e-02 4.42883044e-01 2.20652685e-01 2.83812545e-02\\n3.43937576e-01 5.49533404e-03 -2.42628515e-01 -1.54690981e-01\\n-3.12048793e-01 -1.30345121e-01 -1.26126364e-01 -6.13558106e-02\\n1.60341278e-01 -2.96005070e-01 -7.62861073e-02 -2.50045031e-01\\n-1.88376456e-01 -3.98542941e-01 -9.68363881e-02 -7.16263428e-02]]',\n", + " 'job_description': \"About iptiQ EMEA P&C

iptiQ EMEA Property & Casualty is a newly built unit within Swiss Re Life Capital, established to deliver digital-native and creative solutions for Property & Casualty (P&C) clients and partners across Europe that engage with consumers in non-traditional ways. About the role As a Backend Software Engineer you will have an unusual and great opportunity to join us: a diverse and motivated team, committed to delivering value and creative services together with our clients and partners in the primary insurance space. Responsibilities You will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a high-traffic distributed infrastructure by designing, implementing and testing simple, scalable and reliable solutions. This will include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability End-to-end responsibility on the applications implemented, including monitoring, identifying issues or bottlenecks and delivering improvements of the platform Optimise applications and components to maximize speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications About the team We put the consumers' needs at the center of what we do, seek to become a digital champion and believe in data based learning. We use the Swiss Re network to access state of the art technologies and capabilities, combine it with local expertise and an innovative mind-set, constantly questioning current ways of offering insurance. Our aim is to drive the digitalization of the P&C insurance business in Europe, combining insurance know-how and e-commerce competencies, as well as the dynamic spirit of a start-up with the backing of Swiss Re. Do you enjoy thinking ahead and identifying new opportunities or anticipate future challenges? Do you like driving complex, multi-functional projects in an agile way? Do you enjoy pushing borders and have a passion for the latest technologies? About you Proven software development capabilities (5+ years hands-on experience) in any modern language (Java/Kotlin/Scala/C++/C#/Go/Python…) ***we are working in Java environment*** Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality overtime You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience designing data-models for relational and NoSQL data stores Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long term vision the adoption of new technologies Master’s or PhD degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re\",\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Leadership\", \"Collaboration\", \"Infrastructure\", \"Team Motivation\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Performance Improvement\", \"NoSQL\", \"Accessioning\", \"Agility\", \"Capitalization\", \"Computer Science\", \"Collections\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"Scale (Map)\", \"Activity-Based Learning\", \"Streamlines\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Prototyping\", \"Maintainability\", \"Library\", \"Iterators\", \"Micro Channel Architecture\", \"Message Passing\", \"Concurrent Versions System (Software)\", \"E-Commerce\", \"Business Process\", \"Equalization\", \"C# (Programming Language)\", \"Digitization\", \"Performance Metric\", \"Scalability\", \"Java Runtime Environment\", \"Experience Design\", \"Software Development\", \"Centering\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Kotlin\", \"Adoptions\", \"RESTful API\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English', 'Ido', 'Hindi', 'Chamorro', 'Luba-Katanga']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'java software engineer (trade & investment industry)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.07997069e-01 2.71493018e-01 5.81448197e-01 -1.59785822e-01\\n5.95430672e-01 -1.83989257e-01 -4.44065556e-02 4.01443958e-01\\n-1.83074832e-01 -2.76829362e-01 -1.98167786e-01 -2.13587329e-01\\n-3.85244712e-02 2.05516014e-02 1.33885384e-01 2.63136685e-01\\n2.72846282e-01 1.42083138e-01 -2.01178864e-01 2.99661219e-01\\n2.13179693e-01 -8.30361471e-02 1.00194871e-01 6.17456794e-01\\n5.13524294e-01 -8.74288162e-05 -1.09176755e-01 1.21137835e-01\\n-2.81737953e-01 -3.02767634e-01 4.92780566e-01 1.52808828e-02\\n-1.14980273e-01 -2.12051153e-01 1.77509665e-01 -1.67227015e-02\\n-2.00571463e-01 -5.96622303e-02 4.62090457e-03 1.59409210e-01\\n-4.50257510e-01 2.95964535e-02 6.94676787e-02 1.57455564e-01\\n-2.57336050e-01 -3.24124426e-01 1.42135620e-01 -1.47686861e-02\\n4.75722328e-02 3.90400514e-02 -5.36183655e-01 3.72811556e-01\\n-2.40281150e-01 -3.30967247e-01 3.44957322e-01 5.05808353e-01\\n-9.40243900e-02 -5.31372070e-01 -3.61098051e-01 -3.74363065e-01\\n1.86227724e-01 -8.19879249e-02 1.35126784e-01 -3.22184235e-01\\n4.43649203e-01 -6.20293878e-02 5.49346628e-03 4.42594677e-01\\n-9.19638336e-01 -2.33739745e-02 -1.14261433e-01 -6.53537735e-02\\n-3.91936243e-01 -1.00792013e-01 -2.18538091e-01 -4.88774963e-02\\n-1.15467601e-01 4.78044868e-01 -3.79081210e-03 1.53089970e-01\\n-1.29923105e-01 2.21422270e-01 -2.18510166e-01 3.26532990e-01\\n2.13340640e-01 2.83659697e-01 1.71255395e-01 2.86598116e-01\\n-3.72018367e-01 4.68351513e-01 1.30656272e-01 -2.69375116e-01\\n1.66513994e-01 1.12929076e-01 4.55543786e-01 -1.87387178e-03\\n1.35446578e-01 6.89652786e-02 -2.46838927e-01 1.83317050e-01\\n2.41293281e-01 -2.87747920e-01 3.70693244e-02 2.24925019e-02\\n-1.22209422e-01 1.00086510e-01 6.47761226e-02 3.58535856e-01\\n-2.91765153e-01 4.33401108e-01 1.39891535e-01 -2.69043177e-01\\n-1.74241196e-02 -6.16032422e-01 -7.45536312e-02 1.10003233e-01\\n5.75732738e-02 1.59366101e-01 2.38207772e-01 3.03742200e-01\\n3.18367273e-01 4.66612726e-02 2.42165983e-01 8.67508650e-01\\n-5.00150435e-02 3.87841202e-02 -1.95406899e-01 3.90115947e-01\\n1.39301807e-01 -2.47587815e-01 2.43341386e-01 4.01863664e-01\\n1.23488098e-01 -1.35056581e-02 -1.57252625e-01 3.44985217e-01\\n-4.75350767e-02 -2.52450109e-01 -2.43839189e-01 3.30109261e-02\\n-1.34452730e-01 -5.41684687e-01 5.97400486e-01 6.34615496e-02\\n1.60602748e-01 -6.21774308e-02 1.52860498e-02 -1.53189838e-01\\n-9.62666646e-02 2.82598794e-01 2.94436160e-02 8.48164335e-02\\n-2.71946102e-01 -1.18174501e-01 -3.05280834e-01 1.00666024e-01\\n-1.66945949e-01 -6.38676882e-02 -1.39714658e-01 -7.06473738e-02\\n3.34962785e-01 -1.43361334e-02 -2.39031941e-01 2.77483165e-01\\n-1.09741226e-01 -1.17468908e-01 -7.29272664e-02 2.47523829e-01\\n-1.72797427e-01 1.72968537e-01 -9.58040878e-02 -1.69858158e-01\\n6.27738297e-01 1.74716160e-01 1.75696269e-01 1.73189752e-02\\n2.24308759e-01 -6.02296703e-02 2.26805255e-01 7.93364495e-02\\n-8.53331566e-01 3.30197990e-01 4.37565260e-02 -1.36784464e-01\\n1.13479495e-01 7.05453102e-03 2.90446371e-01 -4.03887987e-01\\n1.56017438e-01 -2.45620102e-01 -3.69374603e-01 -2.71420926e-01\\n-2.82670885e-01 1.47687737e-02 4.20210600e-01 -5.01214206e-01\\n-9.69523191e-02 7.78333470e-02 -5.21781206e-01 1.36726839e-03\\n1.80250853e-01 1.72566652e-01 9.98427197e-02 1.19547136e-01\\n-6.28567934e-02 -5.36092103e-01 1.53275207e-01 -3.40696245e-01\\n-2.59122074e-01 1.40982747e-01 -3.71774346e-01 3.10497552e-01\\n-9.34011303e-04 -2.29593040e-03 -3.07022668e-02 1.07245453e-01\\n-1.98432669e-01 -1.19936720e-01 9.43303779e-02 1.28760219e-01\\n3.65847439e-01 4.51289453e-02 -3.69863778e-01 5.92650890e-01\\n-2.85719067e-01 5.63080788e-01 1.14903837e-01 -8.54288936e-01\\n5.01074672e-01 3.55065465e-01 1.51168317e-01 -3.47291440e-01\\n7.60201812e-01 -2.26485923e-01 -1.00838736e-01 5.36476672e-02\\n-5.09676278e-01 -3.10811639e-01 2.37251833e-01 -1.77537680e-01\\n-3.16445172e-01 5.65726578e-01 1.25809342e-01 -2.33931504e-02\\n2.60271907e-01 -1.47324115e-01 -1.59478337e-01 4.50410955e-02\\n-1.38279244e-01 -2.37838909e-01 -3.36636782e-01 3.98214906e-02\\n-6.92140087e-02 -5.07633030e-01 -7.24471062e-02 -4.12681311e-01\\n-1.97447851e-01 -3.12829226e-01 -2.01547310e-01 3.06387573e-01\\n1.60016775e-01 1.36799574e-01 8.72558281e-02 -2.15283800e-02\\n-3.02306622e-01 -5.12979686e-01 -1.41309453e-02 1.55545026e-01\\n3.41824472e-01 2.17020348e-01 9.59326401e-02 -5.41585907e-02\\n-2.88391151e-02 6.22576892e-01 -2.36075848e-01 -2.01403573e-01\\n1.69380993e-01 1.70269936e-01 6.26991689e-02 -1.07554168e-01\\n7.96168149e-02 3.73671740e-01 -2.67800242e-01 2.52849758e-02\\n-2.50221193e-01 3.38912569e-02 3.31454247e-01 -6.69719502e-02\\n-2.14489818e-01 -2.54290164e-01 -8.72186869e-02 2.54121333e-01\\n-5.22685170e-01 -2.33238548e-01 5.34146965e-01 2.31605247e-01\\n1.52258411e-01 1.92046881e-01 2.30247125e-01 -1.26328021e-01\\n-1.54321998e-01 -2.68528551e-01 2.16946647e-01 1.04536936e-01\\n1.60217226e-01 1.54661700e-01 -1.56948179e-01 -5.46011627e-01\\n-3.25702453e+00 -2.21038640e-01 2.08590671e-01 -4.11288947e-01\\n2.29660198e-01 -1.79955944e-01 3.18232365e-02 -1.42988473e-01\\n-2.00560972e-01 1.33109381e-02 -1.48443565e-01 -1.65662870e-01\\n1.85593084e-01 1.88209668e-01 1.49156600e-01 2.02702567e-01\\n1.79947078e-01 -2.14688063e-01 3.50614078e-02 3.28466117e-01\\n-2.73460537e-01 -6.09355927e-01 2.55817115e-01 2.71148677e-03\\n2.65117019e-01 4.33849871e-01 -3.11776489e-01 -1.49494365e-01\\n-1.98414728e-01 -3.29774886e-01 5.10012992e-02 -1.77159935e-01\\n-4.05712686e-02 4.06524926e-01 2.03101188e-01 -4.01660837e-02\\n1.29604161e-01 -3.48383009e-01 3.38737890e-02 -4.32152361e-01\\n2.17690423e-01 -4.69175965e-01 -6.23980202e-02 -1.38590291e-01\\n8.13747048e-01 -4.02616739e-01 1.45061105e-01 1.27734736e-01\\n1.06800355e-01 2.10777923e-01 4.75400575e-02 -1.32290244e-01\\n-3.36042464e-01 -1.86079100e-01 9.19160470e-02 -1.99960887e-01\\n3.94881040e-01 5.22353232e-01 -1.92702040e-01 5.73023036e-03\\n1.03054047e-01 -3.03175002e-01 -3.96549433e-01 -3.92134756e-01\\n-1.87749520e-01 -3.08846354e-01 -5.87787449e-01 -4.82632875e-01\\n-5.42762019e-02 -1.25978082e-01 -1.17548369e-01 5.02939403e-01\\n-2.43563756e-01 -4.77920771e-01 -1.69105574e-01 -4.98926252e-01\\n1.85648665e-01 -1.15087196e-01 -1.23189941e-01 -2.84715533e-01\\n-1.60485551e-01 -4.51691419e-01 -5.92231750e-03 -1.22047953e-01\\n-1.53646827e-01 -3.27555746e-01 1.58138946e-01 -2.51421809e-01\\n-3.81294131e-01 -6.02349877e-01 3.82458121e-01 5.12810573e-02\\n2.71342635e-01 6.27465993e-02 1.21326171e-01 1.90936476e-01\\n3.10019225e-01 -2.87883610e-01 9.71045047e-02 -4.24930453e-01\\n1.97411686e-01 4.47879434e-02 6.31277263e-01 -3.07622373e-01\\n1.11268476e-01 1.02020517e-01 -2.23331943e-01 -1.94375888e-01\\n2.92230904e-01 1.21706619e-03 4.91972491e-02 -3.28746676e-01\\n3.69442374e-01 -3.45921069e-01 -3.06262493e-01 1.58500046e-01\\n3.01242457e-03 5.49569488e-01 -3.70646715e-02 -3.18781614e-01\\n-2.00006470e-01 5.02118886e-01 -1.48745462e-01 -1.65820166e-01\\n-1.84718236e-01 1.13321915e-01 -2.04120293e-01 3.15334022e-01\\n1.22930676e-01 -1.14667498e-01 -2.05208793e-01 -1.35922834e-01\\n2.50117369e-02 2.76776344e-01 2.68130988e-01 6.15060627e-02\\n2.40528937e-02 -2.80214518e-01 1.71346124e-02 1.59853294e-01\\n2.41718322e-01 2.69262850e-01 1.86531246e-02 -1.75274536e-01\\n-3.90929468e-02 3.10538083e-01 -1.89180806e-01 2.45492280e-01\\n-1.62411690e-01 8.62074047e-02 -6.09717071e-01 -2.77680725e-01\\n-2.49167353e-01 -2.94593871e-01 7.74359629e-02 1.05941840e-01\\n1.13134846e-01 7.60403275e-03 -2.51356419e-02 -4.62147057e-01\\n2.39586622e-01 1.57740209e-02 3.01600695e-01 1.68682724e-01\\n-1.40204448e-02 4.72402036e-01 -6.15615621e-02 2.21950542e-02\\n-1.80735454e-01 9.61361378e-02 -1.74565166e-01 -2.14087978e-01\\n1.91961434e-02 -4.70343471e-01 -2.13615354e-02 4.73220468e-01\\n1.54089540e-01 -3.44465613e-01 -2.26803109e-01 1.76173940e-01\\n2.90190838e-02 -3.89121681e-01 -2.34947249e-01 -3.61530408e-02\\n3.38768274e-01 6.22863434e-02 3.63549799e-01 -5.15252769e-01\\n3.69226299e-02 6.52786344e-02 -3.67808864e-02 4.00043100e-01\\n-1.27075659e-03 -5.11460565e-02 -4.81655523e-02 -2.78637588e-01\\n3.57009798e-01 -2.07562491e-01 -6.13678917e-02 -6.34675771e-02\\n1.85005814e-01 -1.27843365e-01 -4.46809530e-01 -5.44265173e-02\\n-2.13641822e-02 -1.76650867e-01 4.28966805e-02 1.72662884e-02\\n1.66453406e-01 9.63558406e-02 -4.60519224e-01 -3.34416628e-01\\n-3.39812130e-01 -1.73896194e-01 1.35332486e-02 -3.56287420e-01\\n2.58547459e-02 5.79664446e-02 -5.24960220e-01 1.76273644e-01\\n-2.39259273e-01 1.70525592e-02 1.49962962e-01 -4.61819246e-02\\n-4.66351181e-01 1.00623937e-02 1.81274116e-01 2.38576025e-01\\n-3.30875844e-01 -1.98161125e-01 -4.87643741e-02 -1.08942616e+00\\n2.34838724e-01 -1.89734101e-02 -2.52455212e-02 9.21640918e-02\\n-1.51070625e-01 -6.06678307e-01 1.65609553e-01 -4.13203299e-01\\n-7.17041790e-02 -4.99499477e-02 -2.37654850e-01 -3.86604071e-01\\n9.72810909e-02 -1.50546217e-02 -3.14601719e-01 4.16068286e-01\\n-4.11795288e-01 4.16137516e-01 2.78882831e-02 8.31585303e-02\\n-8.00056458e-02 -1.80119470e-01 -3.56668569e-02 -4.14791971e-01\\n-4.25944656e-01 -1.02271803e-01 -2.56853461e-01 -1.27138704e-01\\n-2.61719413e-02 -2.40393922e-01 -7.35557601e-02 -2.81327069e-02\\n3.50241631e-01 1.20197363e-01 -1.11886576e-01 -2.09438369e-01\\n1.03178717e-01 -4.47728574e-01 8.93576145e-02 -2.64389098e-01\\n-7.85191283e-02 -1.60788432e-01 1.28001794e-01 8.73314142e-02\\n6.26413226e-02 -4.90126073e-01 1.98412761e-01 -2.97399372e-01\\n-2.90372550e-01 3.75618599e-02 1.45758554e-01 4.57505211e-02\\n3.35943848e-01 -5.97316265e-01 -6.48602983e-03 4.75671560e-01\\n8.04977864e-02 2.05764472e-02 2.72438794e-01 -9.58873611e-03\\n-1.25806510e-01 3.70408535e-01 -4.58577394e-01 -7.91533589e-02\\n7.99042225e-01 2.00370908e-01 9.33672786e-02 2.85891920e-01\\n1.65322512e-01 2.61306852e-01 4.42724973e-01 1.20006770e-01\\n1.70014966e-02 3.39651018e-01 4.21677018e-03 -6.30807996e-01\\n4.64295708e-02 1.61210261e-03 -2.58775085e-01 -3.76791507e-01\\n7.25384355e-01 4.13079292e-01 -3.38006347e-01 -2.74556249e-01\\n-2.35424072e-01 -1.38003409e-01 1.85801819e-01 -1.56228125e-01\\n6.69806078e-02 -7.88090676e-02 5.01174808e-01 -5.77876857e-03\\n2.78493017e-01 5.45730770e-01 -2.17684388e-01 -3.15038890e-01\\n-1.65894851e-02 9.41753760e-02 1.62644535e-02 4.83644992e-01\\n-9.37905610e-02 1.79200590e-01 3.49050239e-02 1.07405439e-01\\n2.54548248e-02 1.14561588e-01 1.28037825e-01 1.25580534e-01\\n1.13950208e-01 7.52655230e-03 1.98447481e-01 4.25031990e-01\\n2.92316198e-01 4.91759479e-01 3.91194105e-01 3.15347873e-02\\n4.98853266e-01 5.16909719e-01 3.29930842e-01 1.63069591e-01\\n-9.44739580e-02 5.74367642e-02 7.52014294e-02 -2.21744739e-02\\n2.72962242e-01 2.49209255e-01 9.63768736e-02 9.07246053e-01\\n4.11299139e-01 2.37936959e-01 7.42306769e-01 -5.98914742e-01\\n-4.00211394e-01 -2.64788195e-02 3.95068228e-01 -4.27377373e-01\\n-1.09400943e-01 6.77484050e-02 -1.77307099e-01 2.66318113e-01\\n-4.50107306e-01 -1.22388877e-01 1.16017452e-02 9.07753706e-02\\n1.54870242e-01 2.47633103e-02 -2.81760722e-01 -6.02776557e-02\\n-1.77631438e-01 -1.17812842e-01 -4.59562272e-01 -1.56335741e-01\\n-2.15565398e-01 -2.82099187e-01 -1.87335610e-01 -1.36126205e-01\\n-1.29400492e-01 -3.72103184e-01 -7.74654672e-02 2.89113652e-02\\n1.99649423e-01 -1.16397537e-01 -3.63300927e-02 -2.11628601e-01\\n3.13893020e-01 2.53305972e-01 3.90481889e-01 -8.68993476e-02\\n8.86711180e-02 -1.56069383e-01 -1.99807674e-01 1.06122054e-01\\n1.93565145e-01 1.20453149e-01 -6.29366376e-03 3.83871615e-01\\n-3.89157742e-01 -2.07806394e-01 9.39257294e-02 3.54678214e-01\\n-5.08037388e-01 -1.00584820e-01 3.30101252e-02 2.45319501e-01\\n4.32307310e-02 1.16589703e-01 -3.34304243e-01 6.83211386e-02\\n-2.37132281e-01 -4.74549860e-01 3.00552130e-01 -1.19882397e-01\\n-7.67530352e-02 1.76528841e-01 2.52952337e-01 1.99135378e-01\\n-1.21021979e-01 -9.69005451e-02 -3.95405367e-02 1.74260810e-01\\n1.52742669e-01 2.81706154e-01 -1.71588600e-01 -2.76368648e-01\\n-2.73181260e-01 2.85304159e-01 -3.11419219e-01 1.83875114e-01\\n-9.70125571e-02 3.59673500e-01 1.25148773e-01 1.21744826e-01\\n3.03740859e-01 -7.28292614e-02 -1.53412461e-01 -2.62224138e-01\\n-2.18251452e-01 -2.75559515e-01 7.74684995e-02 -4.42614332e-02\\n1.90829322e-01 -4.26401138e-01 2.19009332e-02 -1.20092414e-01\\n-2.91376650e-01 -2.53624320e-01 -5.18372431e-02 -1.32372469e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Java Software Engineer (Trade & Investment Industry). This role is permanent position based in Zurich. Your Role: Further develop a trading infrastructure (e.g. refinement of execution logic, adaptation of risk check tools or implementation of new investment strategies). Continuously adapt automation processes (in the areas of reporting, fund cash management & customer settlements, etc…). Act as an interface for outsourced IT services / providers & counterparties. Provide support in all areas of IT including the website & colleagues in the field of hardware & software. Hold responsibility for Data (including data collection, transfer & backup). Your Skills: At least 3+ years of professional Java Software Engineering experience. Strong experience in Web Application Development & JavaScript. Ideally experienced in the majority of the following technologies: TypeScript, React & Twitter Bootstrap. Kubernetes on the Google Cloud. Matlab & Excel. Maven, Jenkins & Nexus. MySQL, Kafka, Kibana & ElasticSearch. Jira, Confluence & GitHub. Experience within the Trade & Investment Industry is considered a plus. Your Profile: Completed University Degree in Computer Science or similar. Highly motivated, entrepreneurial, & team-oriented. Willing to work within a small team. Fluent German & English (spoken & written), Swiss-German is considered advantageous. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Adaptability\", \"Team Oriented\", \"Positivity\", \"Infrastructure\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"MySQL\", \"Tooling\", \"Jenkins\", \"Kibana\", \"Computer Science\", \"MATLAB\", \"Cash Management\", \"Outsourcing\", \"Document Process Automation\", \"Industrialization\", \"Survey Data Collection\", \"TypeScript\", \"E (Programming Language)\", \"Investment Strategy\", \"Idealization\", \"Refinement\", \"Executable\", \"Software Engineering\", \"Investments\", \"React.js\", \"Github\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Settlement\", \"Google Cloud\", \"Receivables\", \"Atlassian Confluence\", \"Service Provider\", \"JIRA Studio\", \"Java (Programming Language)\", \"Web Application Development\", \"Acceptance and Commitment Therapy (ACT)\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Nepali']\"},\n", + " {'company_id': '109',\n", + " 'job_title': 'software engineer (backend / scala)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.starmind.ai',\n", + " 'jobdescription_embedded': '[[-1.01592772e-01 1.46345213e-01 5.37268758e-01 -1.85465291e-02\\n4.86281574e-01 -1.95392415e-01 3.54091674e-02 4.79321897e-01\\n4.29899152e-03 -5.16053200e-01 7.88678229e-02 -3.12507689e-01\\n-2.04483479e-01 2.45580077e-01 1.52318880e-01 3.90131503e-01\\n2.62056649e-01 2.23478884e-01 -1.90335944e-01 5.64888477e-01\\n1.47807240e-01 -1.10005494e-03 1.26096860e-01 7.48302102e-01\\n3.55393380e-01 -9.10661966e-02 -7.97895566e-02 -4.76140231e-02\\n-2.27066517e-01 -2.62611151e-01 3.94330919e-01 4.17556278e-02\\n-1.38219282e-01 -5.20477474e-01 5.32875769e-02 -1.20180354e-01\\n-3.18828791e-01 -1.66273415e-01 1.18842749e-02 3.21675688e-01\\n-5.89863062e-01 -3.28459978e-01 4.91509773e-02 -2.49100849e-02\\n-2.74906754e-01 -3.53901088e-01 5.68371601e-02 7.24043250e-02\\n2.18781233e-01 9.49345082e-02 -5.11161506e-01 1.75020918e-01\\n-2.29602754e-01 -2.57567048e-01 2.75579065e-01 5.95202208e-01\\n6.27733022e-02 -4.49782610e-01 -5.94296098e-01 -3.31569552e-01\\n5.96662164e-02 -8.75356793e-02 3.11096422e-02 -4.39027846e-01\\n1.17199063e-01 6.28247634e-02 1.08436413e-01 4.08104032e-01\\n-8.07177424e-01 -3.23682241e-02 -1.33790836e-01 -4.37766686e-03\\n-3.60410035e-01 -9.91170034e-02 -2.12163642e-01 -7.88381547e-02\\n-1.06401928e-01 4.92927194e-01 2.16912538e-01 2.57097408e-02\\n-1.51845038e-01 3.28070104e-01 -2.88987488e-01 4.66203332e-01\\n2.43202031e-01 2.57313907e-01 2.35819548e-01 2.95859396e-01\\n-4.92730081e-01 4.68427896e-01 4.67154104e-03 -3.00951689e-01\\n3.25496703e-01 1.34005442e-01 6.06081009e-01 -7.84594789e-02\\n1.65896356e-01 2.68891342e-02 -3.93056363e-01 3.55220407e-01\\n2.41682827e-01 -3.18989575e-01 6.59884885e-02 -1.19958088e-01\\n-2.24109050e-02 -4.10314277e-02 2.94833127e-02 1.55626938e-01\\n-2.08356991e-01 4.23844874e-01 2.15916693e-01 -1.89219102e-01\\n-1.58167109e-01 -4.66886610e-01 -6.75717741e-03 1.48491152e-02\\n5.27691729e-02 7.94817358e-02 2.42189303e-01 2.09244154e-02\\n1.70905232e-01 1.39971614e-01 1.92118272e-01 8.60782385e-01\\n-9.31746066e-02 4.61167395e-02 -2.31625363e-01 2.09068507e-01\\n1.58201396e-01 -2.77244508e-01 3.08872104e-01 2.15313762e-01\\n-4.13790569e-02 -2.24666253e-01 -1.70478046e-01 4.40101206e-01\\n-5.16360477e-02 -1.99897215e-01 -2.68994570e-01 1.82696536e-01\\n-3.12485546e-03 -3.44063342e-01 6.02642119e-01 1.66013092e-01\\n2.19718307e-01 -1.17163230e-02 -3.05571854e-02 -1.92381173e-01\\n-1.90384656e-01 1.99950814e-01 -4.77342382e-02 1.10204883e-01\\n-2.41426572e-01 -2.89075911e-01 -1.57240525e-01 9.32126716e-02\\n-3.55347753e-01 9.32442918e-02 2.16317475e-02 -1.02280630e-02\\n2.16879413e-01 4.50542122e-02 -1.71092838e-01 1.69636264e-01\\n-1.73625395e-01 3.10414657e-03 6.93574026e-02 2.80952632e-01\\n-1.85683757e-01 1.52774900e-01 1.16246622e-02 -1.65895626e-01\\n6.92867637e-01 2.59127498e-01 2.15406984e-01 -4.28879354e-03\\n3.88493180e-01 -4.01352793e-02 7.96003342e-02 1.36562020e-01\\n-7.25314438e-01 2.42253482e-01 -6.94688633e-02 -2.47732252e-01\\n1.08878464e-01 -7.48626813e-02 2.80924529e-01 -2.16145426e-01\\n7.58454204e-02 -1.31078228e-01 -3.60759377e-01 -2.68607557e-01\\n-1.36345118e-01 3.06593999e-02 4.69052553e-01 -4.78536189e-01\\n-2.30089962e-01 1.04937457e-01 -3.86444271e-01 -1.45288229e-01\\n1.49325505e-01 4.40653712e-02 1.10591680e-01 3.84815261e-02\\n-2.28225172e-01 -5.19182563e-01 -9.08824205e-02 -4.75937843e-01\\n-3.30707848e-01 -2.21429728e-02 -3.73344272e-01 1.99006498e-01\\n-1.10129472e-02 -4.89406958e-02 -1.56791091e-01 1.33202523e-01\\n-2.00512499e-01 -1.76506229e-02 -3.34951803e-02 5.95170632e-02\\n1.60303563e-01 5.19279856e-03 -3.29752445e-01 3.03460062e-01\\n-1.88630879e-01 7.16224253e-01 9.75493118e-02 -8.72159898e-01\\n5.30349910e-01 3.91817361e-01 -1.01227224e-01 -4.69050288e-01\\n4.00333285e-01 -2.80178398e-01 -5.19776084e-02 1.03815682e-01\\n-3.57189864e-01 -3.17788303e-01 3.05527985e-01 -2.04057187e-01\\n-2.25126147e-01 5.05400896e-01 1.01094224e-01 7.28609562e-02\\n2.39053249e-01 -3.07462186e-01 -1.38761744e-01 -1.90826971e-02\\n-4.22417074e-02 -3.54048669e-01 -5.74415088e-01 -2.09795740e-02\\n-1.44112676e-01 -4.42410856e-01 -8.16909671e-02 -2.89924800e-01\\n-1.74869061e-01 -4.22599941e-01 -2.88130641e-01 3.09342653e-01\\n3.30315799e-01 3.03872060e-02 -1.46436254e-02 8.75263736e-02\\n-4.28903624e-02 -6.75730407e-01 3.21364775e-02 1.52448758e-01\\n5.42307556e-01 1.59353703e-01 1.93116397e-01 -6.34506643e-02\\n1.09284885e-01 5.76383710e-01 -1.52219668e-01 -2.01958776e-01\\n1.46285787e-01 2.26308987e-01 2.98066251e-02 -9.61002260e-02\\n7.01019391e-02 3.82476836e-01 -3.03788304e-01 1.36588022e-01\\n5.15522808e-02 -1.11081079e-01 4.37712193e-01 -4.49661165e-03\\n-3.14648211e-01 -1.09113775e-01 -1.32104889e-01 6.90852553e-02\\n-5.89970231e-01 -1.52853385e-01 5.24646163e-01 2.25616291e-01\\n1.79402635e-01 9.62046236e-02 7.04067796e-02 -3.91841531e-02\\n-2.97360599e-01 -2.38561571e-01 2.64715701e-01 1.21378325e-01\\n7.25327730e-02 2.35078007e-01 -4.03854698e-02 -5.73226929e-01\\n-3.09675789e+00 -2.10511282e-01 1.63361788e-01 -2.80453116e-01\\n1.90829918e-01 -1.16107695e-01 2.26672776e-02 -1.21202692e-01\\n-2.64878005e-01 9.03697610e-02 -1.35131821e-01 -1.41378194e-01\\n1.78539887e-01 1.77586198e-01 8.08706582e-02 2.29520798e-01\\n1.89861581e-01 -1.50476769e-01 -1.28892496e-01 3.55302870e-01\\n-2.25118488e-01 -5.94068050e-01 1.92100406e-01 -1.01203725e-01\\n3.05534959e-01 3.23108763e-01 -3.82083058e-01 -1.30135983e-01\\n-8.30230936e-02 -8.12996626e-02 -3.62685658e-02 -2.52022266e-01\\n-1.05728149e-01 2.54303217e-01 1.76003337e-01 -4.52123359e-02\\n1.96068138e-01 -3.72125685e-01 -1.95342153e-01 -4.87771749e-01\\n1.54136345e-01 -5.68830013e-01 -1.65685769e-02 -1.95770770e-01\\n7.83108473e-01 -3.57984126e-01 6.71539903e-02 2.03771442e-01\\n1.99687719e-01 1.06508173e-01 4.43027094e-02 2.26407871e-02\\n-1.82020724e-01 -2.42913336e-01 -1.19659640e-01 -2.31995255e-01\\n4.77405429e-01 5.43347359e-01 -5.27781062e-02 -1.17795967e-01\\n1.45652398e-01 -2.41697684e-01 -3.80468965e-01 -2.53293574e-01\\n-5.20366542e-02 -3.86639535e-01 -6.11094654e-01 -3.78037035e-01\\n-1.34541929e-01 -1.93728238e-01 -2.32995361e-01 6.38571143e-01\\n-4.68071580e-01 -3.43100369e-01 4.99086902e-02 -4.34467375e-01\\n2.07718179e-01 -1.87772274e-01 -4.61313576e-02 -1.63079128e-01\\n-2.79258668e-01 -5.01625717e-01 -2.07061432e-02 -5.76271676e-02\\n-2.93333054e-01 -3.77884924e-01 1.43134296e-01 -1.43888429e-01\\n-2.78346837e-01 -4.97152865e-01 3.43537688e-01 5.30824028e-02\\n2.46926859e-01 1.30962193e-01 4.09258842e-01 -2.95389742e-02\\n3.95200998e-01 -4.55493033e-02 -7.20627904e-02 -2.50732660e-01\\n1.63641274e-01 -3.44522670e-02 5.26709199e-01 -2.90968090e-01\\n-8.42539147e-02 9.40553248e-02 -2.26453900e-01 -1.27718467e-02\\n3.73174071e-01 -8.94157290e-02 2.44535394e-02 -1.21028095e-01\\n2.85696745e-01 -2.57033706e-01 -1.33979633e-01 5.98250404e-02\\n1.29245326e-01 5.81819355e-01 -5.75977974e-02 -4.57154214e-01\\n-2.56663978e-01 4.96184945e-01 -1.48743898e-01 -1.13269798e-02\\n-1.81087494e-01 1.02908477e-01 -1.64037481e-01 2.80715942e-01\\n3.69275846e-02 -1.91258252e-01 -2.37365723e-01 -1.94443733e-01\\n-8.09618086e-02 3.44523281e-01 2.07460076e-01 -2.89000385e-03\\n2.95759067e-02 -3.44005466e-01 -9.94288996e-02 1.14229329e-01\\n1.93747908e-01 5.32907784e-01 1.14090011e-01 -1.56560257e-01\\n-9.62035805e-02 4.05209363e-01 -1.12731338e-01 1.25691652e-01\\n-3.04350674e-01 9.47219208e-02 -4.92928445e-01 -2.69566923e-01\\n-2.89163053e-01 -4.58217144e-01 2.38848716e-01 2.03071356e-01\\n1.72875032e-01 -1.14277173e-02 1.95235722e-02 -3.76547396e-01\\n2.52887130e-01 1.60868451e-01 5.58341146e-02 1.65358096e-01\\n4.82037365e-02 4.94607389e-01 1.04185984e-01 -2.00958520e-01\\n-1.00874275e-01 -1.14069216e-01 -1.92048937e-01 -4.44742218e-02\\n9.08128731e-03 -5.44169188e-01 -8.28657597e-02 3.66267830e-01\\n1.54534206e-01 -3.55858773e-01 -2.21891940e-01 2.40925789e-01\\n-8.13351944e-03 -4.49038856e-02 -2.39188552e-01 -9.15807411e-02\\n2.66833305e-01 4.89237905e-02 3.20107996e-01 -4.55914438e-01\\n-1.39290877e-02 1.14867426e-01 -1.49374843e-01 5.63300133e-01\\n1.81853846e-02 -7.66406208e-02 -2.73340821e-01 -1.45501524e-01\\n3.72203261e-01 -1.80963039e-01 -1.18388608e-01 3.11823562e-02\\n9.00389999e-02 -1.25571176e-01 -5.26849866e-01 1.20336995e-01\\n6.13314733e-02 -1.66980013e-01 -1.48605928e-03 1.50407866e-01\\n2.35719517e-01 1.72581792e-01 -5.33189416e-01 -2.79105008e-01\\n-2.78773963e-01 -2.16753781e-02 1.32314920e-01 -4.08448815e-01\\n2.24328339e-02 -6.92937970e-02 -5.82949758e-01 1.46968037e-01\\n-2.84546733e-01 -2.22495168e-01 1.92495525e-01 8.89166668e-02\\n-4.01122689e-01 -5.15243635e-02 7.46391118e-02 2.60076255e-01\\n-2.80338168e-01 -3.74192446e-01 9.06283706e-02 -9.23850536e-01\\n1.79949835e-01 2.33401150e-01 -1.49744704e-01 1.45443261e-01\\n-1.20567098e-01 -6.24237180e-01 3.27122100e-02 -3.32167745e-01\\n-8.02329481e-02 -3.79030481e-02 -2.68051088e-01 -4.17655945e-01\\n4.49228808e-02 -9.90569293e-02 -2.81741977e-01 4.89167392e-01\\n-2.83333182e-01 2.83649474e-01 -1.23424649e-01 2.12460421e-02\\n-1.07515194e-02 -2.97657132e-01 1.26188591e-01 -4.53281164e-01\\n-4.70287323e-01 -1.50162429e-01 -3.96312326e-01 -3.46329212e-01\\n3.49154919e-02 -2.93182045e-01 -9.68781412e-02 8.94234776e-02\\n2.45425314e-01 3.38064395e-02 -4.44300808e-02 -3.83389473e-01\\n1.15585543e-01 -4.91107583e-01 4.66251001e-03 -2.28872281e-02\\n-9.43247229e-02 -9.67839956e-02 2.09604383e-01 8.39657858e-02\\n5.20742498e-02 -3.25619698e-01 3.24006438e-01 -4.62584347e-01\\n-1.36492342e-01 -1.03310019e-01 -5.42838126e-02 7.68677518e-03\\n2.72884548e-01 -4.90212083e-01 1.11373022e-01 3.66794586e-01\\n2.28798583e-01 2.07098555e-02 1.47431299e-01 -8.08860362e-03\\n8.91943648e-02 3.17483276e-01 -2.44612664e-01 1.83751941e-01\\n7.56403208e-01 7.05065876e-02 2.08007634e-01 2.11778313e-01\\n1.64527521e-01 2.76939958e-01 5.29630423e-01 3.65676396e-02\\n-1.11593813e-01 2.25845069e-01 7.44274110e-02 -3.29431355e-01\\n-4.32447083e-02 6.44464940e-02 -1.81195080e-01 -4.26550627e-01\\n6.61536455e-01 5.24586260e-01 -4.23484385e-01 -6.81020841e-02\\n-1.68979198e-01 -1.82760507e-01 1.29070371e-01 -1.19855002e-01\\n-2.71885023e-02 -3.81243676e-02 3.70101869e-01 -9.69858542e-02\\n1.95880085e-01 5.05422711e-01 -2.34471917e-01 -3.08380663e-01\\n-3.57881226e-02 1.80588111e-01 3.59825268e-02 4.81322169e-01\\n-2.67880142e-01 3.28370750e-01 3.73038948e-02 -4.77436557e-03\\n-4.07827571e-02 3.03682327e-01 9.37933549e-02 1.19647764e-01\\n1.87807053e-01 -4.05810177e-02 3.96618515e-01 3.52554440e-01\\n2.70712376e-01 4.57622290e-01 3.03380251e-01 1.05678059e-01\\n4.37485248e-01 5.44675469e-01 3.47415626e-01 1.81498662e-01\\n-7.11984634e-02 1.05193838e-01 1.90369815e-01 2.53982283e-02\\n3.85665596e-01 2.97067165e-01 6.70256764e-02 8.93379927e-01\\n3.26372087e-01 2.96457678e-01 7.60143936e-01 -6.73693717e-01\\n-4.17139232e-01 1.25916094e-01 4.78806943e-01 -3.58049184e-01\\n-2.67572328e-03 1.57845527e-01 -7.78794438e-02 2.06649989e-01\\n-3.22836757e-01 -2.60353237e-01 -5.12662455e-02 2.46540904e-01\\n-4.48986888e-03 -2.42807418e-01 -2.43269742e-01 9.84040573e-02\\n-1.83556288e-01 -4.69758138e-02 -4.45957065e-01 -3.42766158e-02\\n-1.35572985e-01 -1.82775125e-01 -1.12609021e-01 1.12332660e-03\\n-1.01386726e-01 -4.88645077e-01 2.37312168e-03 -2.39620116e-02\\n2.90467799e-01 -1.44320756e-01 -7.22163096e-02 -1.30499646e-01\\n2.40881294e-01 2.39693820e-01 4.73568916e-01 6.47980422e-02\\n1.15294993e-01 -1.95644736e-01 -2.81158566e-01 2.52895117e-01\\n1.60206437e-01 -6.92643225e-04 -4.89055272e-03 5.57079092e-02\\n-2.06084460e-01 -4.36699018e-02 1.22255623e-01 2.40773767e-01\\n-4.19613421e-01 -6.80414811e-02 -1.65815398e-01 2.05291912e-01\\n2.02806249e-01 2.86103010e-01 -2.69605637e-01 4.86027598e-02\\n-1.97464973e-01 -4.74047244e-01 2.87992418e-01 -1.85843229e-01\\n-9.44706053e-02 8.01906660e-02 2.99003482e-01 1.81002676e-01\\n-3.27223063e-01 -1.31131709e-02 -8.75360966e-02 2.08992139e-01\\n1.59212090e-02 2.36179203e-01 -2.41378069e-01 -3.32659841e-01\\n-2.06421629e-01 1.98722810e-01 -1.27391621e-01 1.25863776e-01\\n-1.34928599e-02 4.15549695e-01 1.69683546e-01 3.06750983e-02\\n4.99918550e-01 -8.33742842e-02 -2.45009214e-01 -2.51426101e-01\\n-2.19856188e-01 -2.61714727e-01 -1.76903278e-01 5.47724962e-02\\n8.49267095e-02 -4.52093095e-01 7.50330277e-03 -1.28159732e-01\\n-1.37255564e-02 -2.86284357e-01 3.57561707e-02 -9.12884697e-02]]',\n", + " 'job_description': 'At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology\\'s computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people\\'s advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from Airbnb, Twitter, Salesforce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! ( //player.vimeo.com/video/331165939?title=0&byline=0 ) The Mission Our engineering team is looking for passionate collaborative engineers to design, implement and expand the SaaS platform for our self learning AI technology. The teams work across the stack shipping end user-focused products and APIs (https://docs.starmind.com/api/v1 ( https://docs.starmind.com/api/v1 )) following reactive programming principles. We\\'re constantly innovating our growing platform using the latest open source technologies such as Akka / Akka Http / Akka Cluster and Streams, Kafka, Node.js, Docker and Kubernetes. What You Will Do Be part of an agile development team to contribute at the core of our products and services Work closely together with various stakeholders, designers and the AI team to develop and ship new features to help build a great product Continuously stay on top of current trends in tech to incorporate it into product development and to share with your teammates. Drive our development process by contributing innovative ideas and improve our existing stack. Who You Are You are an expert in Scala (preferably) or Java / Kotlin (experience in other OO or functional programming languages such as Haskell is a plus) You keep up to date with the latest developments in your industry and contribute back to your team REST, GraphQL APIs, Streams and Cats are what makes you smile while coding : -) You have good knowledge of relational databases You have a solid understanding of testing, continuous integration and deployment practices You have a strong desire to work with an agile software development process in small teams, supporting and unblocking your teammates You see the benefits developing with isolated Linux Docker environments and feel confident fiddling with the CLI You have a healthy balance between \"get things done\" and technical debt and you\\'re able to communicate this proactively The Bounty A dynamic, young company where input is welcomed and acted upon A challenging and exciting vision within an innovative and multi-cultural environment High level of personal responsibility and independence Flexible working hours, home office and occasional remote work We strongly believe in team chemistry and team work. We prioritize having fun while building up a great company. If this sounds like you, let\\'s solve the riddle and apply (written in English or German) - We are very excited to meet you. -------------------------------------------------------------------------------------------------------------------------------- ',\n", + " 'soft_skills': '[\"Collaboration\", \"Proactivity\", \"Communications\", \"Innovation\", \"Prioritization\"]',\n", + " 'hard_skills': '[\"Corporate Communications\", \"Programming (Music)\", \"Acting\", \"Continuous Integration\", \"Industrialization\", \"Reactivity\", \"Continuity Tests\", \"Haskell (Programming Language)\", \"Scala (Programming Language)\", \"Component Object Model (COM)\", \"Node.js\", \"Linux\", \"GraphQL\", \"Technical Debt\", \"Open Source Technology\", \"Agile Software Development\", \"Docker (Software)\", \"Personalization\", \"Human Intelligence\", \"Continuous Production\", \"High-Level Architecture\", \"Akka (Toolkit)\", \"Functional Programming\", \"Humanism\", \"Chemistry\", \"Akka.net\", \"Vimeo\", \"Relational Databases\", \"Software Development\", \"Application Programming Interface (API)\", \"Agile Product Development\", \"Process Driven Development\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '44',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Lucerne',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.eteaminc.com',\n", + " 'jobdescription_embedded': '[[-3.22804481e-01 2.70976543e-01 5.50958633e-01 2.08118975e-01\\n6.63675904e-01 -1.04325473e-01 -3.90734226e-02 2.01102018e-01\\n-2.97926329e-02 -3.52422476e-01 -1.16358221e-01 -2.92432159e-01\\n-1.89296216e-01 4.56891619e-02 5.26155755e-02 4.53551114e-01\\n3.78325582e-01 8.00151974e-02 -1.20225444e-01 2.91532665e-01\\n1.27327800e-01 -1.82676867e-01 2.85511911e-02 7.43576407e-01\\n4.29593414e-01 -1.88660808e-03 -8.59136060e-02 5.91424853e-02\\n-2.86721915e-01 -1.22639902e-01 4.36593652e-01 2.15787999e-02\\n-1.49155796e-01 -3.34228009e-01 1.35512143e-01 2.15444610e-01\\n-2.21267879e-01 6.46889135e-02 -1.35110870e-01 1.37845352e-01\\n-4.66008842e-01 -2.03800827e-01 -9.91208106e-03 1.19807154e-01\\n-3.66004407e-01 -3.93550634e-01 -1.87600590e-02 -1.00118011e-01\\n1.32501870e-02 7.93761946e-03 -5.51936924e-01 3.28865916e-01\\n-3.69585872e-01 -1.79926068e-01 2.62678742e-01 6.62797093e-01\\n7.64294118e-02 -6.44956887e-01 -4.30040598e-01 -3.64012212e-01\\n9.82911214e-02 -1.96052641e-01 1.26743883e-01 -3.75684768e-01\\n4.21485662e-01 -1.82850808e-02 3.61598842e-03 2.08140969e-01\\n-7.79993534e-01 5.25975302e-02 -4.23705459e-01 7.29759037e-02\\n-3.58829290e-01 4.08367366e-02 -4.88614827e-01 -1.22691348e-01\\n-1.28128141e-01 4.15832043e-01 -1.10591903e-01 1.95555255e-01\\n-3.10919046e-01 2.50175834e-01 -2.97719896e-01 3.11578214e-01\\n2.20004275e-01 1.83021098e-01 2.91256726e-01 3.50742579e-01\\n-4.29371119e-01 5.75888872e-01 2.71131337e-01 -3.13786089e-01\\n2.10097700e-01 2.78307796e-01 3.34239841e-01 1.96563467e-01\\n1.50110468e-01 1.77803248e-01 -1.70218199e-01 1.69109911e-01\\n2.88739562e-01 -2.37382099e-01 1.10939577e-01 -1.68924257e-01\\n-1.04111768e-01 -9.83487964e-02 5.19021787e-03 3.38149250e-01\\n-4.52620625e-01 4.30009723e-01 5.29680811e-02 -1.29777625e-01\\n-6.77758902e-02 -4.89970237e-01 -4.63426150e-02 4.74180989e-02\\n-3.47892870e-03 1.04510047e-01 2.22230464e-01 1.67011589e-01\\n2.43199050e-01 2.17419416e-02 1.61366254e-01 8.19422364e-01\\n-8.49089101e-02 4.83259819e-02 -2.18084961e-01 3.59952271e-01\\n1.48104414e-01 -1.48150325e-01 1.85562134e-01 2.31549710e-01\\n-1.00962818e-02 -5.28181940e-02 -3.57915759e-01 3.79369825e-01\\n-1.56056106e-01 -1.60326734e-01 -1.71355352e-01 1.91961393e-01\\n-7.50783235e-02 -6.53168619e-01 7.37035751e-01 -7.29087815e-02\\n1.47584781e-01 -1.14738017e-01 1.12937085e-01 -2.68377289e-02\\n-2.60483716e-02 2.64611840e-01 2.12381020e-01 2.24872828e-01\\n-3.30786407e-01 -3.02878350e-01 -1.44296914e-01 2.21810922e-01\\n-4.54581201e-01 1.12956107e-01 -1.58394367e-01 -1.39845312e-01\\n2.24366739e-01 2.12262869e-01 -4.44899857e-01 1.87893271e-01\\n-8.99126902e-02 -2.16310024e-01 -4.09938358e-02 4.04234886e-01\\n-1.97784796e-01 1.85288787e-01 -3.27840634e-02 -5.15706167e-02\\n5.55175126e-01 2.51878023e-01 2.85140812e-01 -2.40681041e-02\\n3.45292091e-01 -1.11137569e-01 1.97207272e-01 2.20071953e-02\\n-6.86179340e-01 5.55032134e-01 -3.37283909e-02 -1.64428651e-01\\n1.72991857e-01 9.84727964e-03 4.51936871e-01 -3.91395032e-01\\n-4.19355296e-02 -2.58963317e-01 -4.10766989e-01 -4.12213475e-01\\n-2.59580702e-01 -1.38087660e-01 2.55825996e-01 -4.60929513e-01\\n-9.84781701e-03 1.94335356e-01 -7.18451619e-01 -1.86728120e-01\\n3.28121126e-01 2.72420257e-01 1.25313103e-01 1.94839127e-02\\n-1.61619484e-03 -7.04892993e-01 9.67220217e-02 -4.32120800e-01\\n-3.03031147e-01 1.75471112e-01 -3.77180755e-01 1.73058629e-01\\n-5.52049689e-02 3.87522578e-02 -6.06845096e-02 6.22071177e-02\\n-3.16604227e-01 2.03606430e-02 1.26596361e-01 5.65752238e-02\\n4.25346136e-01 1.78600311e-01 -4.30831432e-01 6.48142099e-01\\n-3.35050941e-01 4.89290625e-01 1.86804622e-01 -8.48323941e-01\\n7.04136252e-01 2.02476025e-01 3.77465636e-02 -2.89799273e-01\\n4.83431458e-01 -3.55519623e-01 -1.20496407e-01 1.54853523e-01\\n-2.64490753e-01 -2.38653690e-01 1.66495681e-01 -1.92536622e-01\\n-3.53998989e-01 7.05392122e-01 1.02364779e-01 1.75745636e-02\\n2.65128553e-01 -3.07522058e-01 -1.87810093e-01 2.59193573e-02\\n-2.52481997e-01 -2.31466532e-01 -6.05818927e-01 1.09744407e-01\\n-4.75125946e-02 -4.79581296e-01 -1.18744463e-01 -4.02179331e-01\\n-2.55046338e-01 -3.08804333e-01 -3.30770075e-01 9.10559744e-02\\n1.53494298e-01 1.09362751e-01 -1.27675906e-01 -7.00829923e-02\\n-2.16303058e-02 -6.75706804e-01 -8.96773934e-02 1.25732452e-01\\n4.05845046e-01 3.68694127e-01 2.13143706e-01 -1.17224015e-01\\n1.17900200e-01 6.91832781e-01 -4.00885344e-01 -2.91038811e-01\\n1.89065948e-01 5.34340926e-02 -7.71863237e-02 -2.04617292e-01\\n1.50546163e-01 3.18525374e-01 -2.66646743e-01 2.55678911e-02\\n-5.41968197e-02 -8.18011984e-02 3.93274248e-01 -8.27129036e-02\\n-1.32782310e-01 -2.84217715e-01 -1.82094783e-01 2.24454507e-01\\n-5.08277535e-01 -2.62692928e-01 5.64736724e-01 2.28685200e-01\\n1.43901825e-01 2.33327538e-01 2.01404989e-01 5.45353293e-02\\n-3.44830602e-01 -3.99571717e-01 2.83187807e-01 8.45934749e-02\\n1.98991410e-02 1.73662782e-01 1.84740424e-02 -5.71191788e-01\\n-3.04117966e+00 -4.28970493e-02 1.95683956e-01 -2.00199634e-01\\n2.45879963e-01 -2.24175110e-01 -9.93972737e-03 6.62345663e-02\\n-3.34257245e-01 1.26821743e-02 -2.20631987e-01 -1.75977916e-01\\n6.47863299e-02 2.68860340e-01 1.41878545e-01 1.13885589e-01\\n2.13111788e-01 -2.19556913e-01 7.45937526e-02 3.84026676e-01\\n-1.66236043e-01 -8.78837287e-01 3.83228362e-02 -8.16711113e-02\\n1.88218862e-01 1.59766197e-01 -4.85653639e-01 -9.68823284e-02\\n-2.85087377e-01 -3.29970598e-01 1.22790374e-01 -3.10963869e-01\\n-1.70585930e-01 2.93865174e-01 2.19953567e-01 -7.42740482e-02\\n-2.64682285e-02 -2.30028555e-01 3.73262540e-02 -5.43920100e-01\\n1.40351951e-01 -6.92755222e-01 -3.55868861e-02 -4.88450751e-02\\n7.14915156e-01 -2.61588067e-01 2.54371405e-01 3.68404463e-02\\n2.20365763e-01 6.78984672e-02 1.88757300e-01 -1.29032731e-02\\n-2.47222841e-01 -2.20801592e-01 5.37994504e-03 -1.48758143e-01\\n7.23064661e-01 4.80240643e-01 -2.34120101e-01 3.35332006e-03\\n1.12175599e-01 -4.35595274e-01 -3.71380121e-01 -3.62698257e-01\\n-2.88116902e-01 -8.13841075e-02 -6.84185207e-01 -4.58100796e-01\\n-1.93869919e-01 -9.91103649e-02 -5.44613302e-02 6.70150697e-01\\n-3.44971269e-01 -2.08195657e-01 -2.79129408e-02 -6.16148114e-01\\n3.52813601e-01 -2.10658878e-01 8.87694303e-03 -2.80505508e-01\\n-1.93808615e-01 -5.41147113e-01 2.16687649e-01 -7.44064525e-02\\n-1.08039439e-01 -6.09309413e-02 6.81008399e-02 -2.86092497e-02\\n-4.03871328e-01 -6.16406202e-01 3.46659064e-01 1.15698859e-01\\n4.40575004e-01 8.10641274e-02 4.60290432e-01 -1.29984975e-01\\n4.48715001e-01 -1.61349475e-02 2.95275357e-02 -4.25032407e-01\\n4.87965085e-02 -3.57210860e-02 5.03805041e-01 -1.31346494e-01\\n2.10564211e-02 1.55939206e-01 -3.15104723e-01 -9.30858552e-02\\n3.89641047e-01 -8.51828158e-02 1.46778375e-01 -7.49871507e-02\\n3.22840154e-01 -4.59797323e-01 -2.16098055e-01 1.41986400e-01\\n1.21620394e-01 7.54049957e-01 -5.91242686e-04 -3.22640091e-01\\n-5.87886162e-02 4.35911894e-01 -1.31527990e-01 1.10172853e-02\\n-1.67470261e-01 -1.62779540e-03 -2.08184853e-01 4.26375985e-01\\n2.26394739e-03 -2.08200201e-01 -2.17951924e-01 -7.93430358e-02\\n-1.03022642e-01 2.56857932e-01 1.83291048e-01 -2.36384682e-02\\n1.69812851e-02 -3.12368900e-01 -8.78665596e-02 2.48241782e-01\\n3.12063932e-01 4.96076822e-01 1.47448361e-01 -2.85837442e-01\\n-3.15102041e-02 3.66342366e-01 -1.62103370e-01 2.51696020e-01\\n-2.13180214e-01 1.96920469e-01 -7.34495759e-01 -2.17333913e-01\\n-3.12784314e-01 -3.71911198e-01 1.38041615e-01 4.62128103e-01\\n1.31726384e-01 -9.58946496e-02 1.42473772e-01 -5.04918039e-01\\n2.28117570e-01 1.05097882e-01 2.19683677e-01 -3.30319768e-03\\n-1.86621219e-01 7.68585920e-01 -2.07979083e-02 -1.61296844e-01\\n-1.19609162e-01 1.11395746e-01 -2.65946656e-01 -2.35937029e-01\\n2.11917102e-01 -5.61431229e-01 -1.86098263e-01 4.35013503e-01\\n2.93762803e-01 -1.26219243e-01 -2.14586824e-01 3.25508237e-01\\n-1.76407471e-02 -2.82803416e-01 -3.25930357e-01 -8.28770846e-02\\n3.16408455e-01 2.07512140e-01 2.46340171e-01 -4.49448049e-01\\n-4.42487746e-02 -8.62344503e-02 5.97872809e-02 3.61498535e-01\\n4.16174009e-02 1.13910630e-01 -9.72329974e-02 -1.61783800e-01\\n6.18084848e-01 7.50742704e-02 -1.75565809e-01 8.31825584e-02\\n1.80485353e-01 -2.44884849e-01 -4.42679018e-01 2.45549344e-02\\n-5.97868301e-03 -2.43695304e-01 3.30000743e-03 1.72228724e-01\\n3.58976312e-02 -6.04041368e-02 -5.02973080e-01 -1.14056960e-01\\n-3.48311335e-01 1.31206848e-02 7.90611729e-02 -5.45471907e-01\\n-6.68735383e-03 -2.14182846e-02 -4.53115761e-01 2.16835782e-01\\n-5.89233711e-02 -2.74032354e-02 2.95243055e-01 1.27099499e-01\\n-2.03920335e-01 -1.85925901e-01 1.32569939e-01 2.33393312e-01\\n-3.84144902e-01 -2.99668431e-01 -9.57289338e-03 -1.04195428e+00\\n1.21139549e-01 5.80179095e-02 -2.68456787e-01 1.66838616e-02\\n-1.68470219e-02 -6.75628960e-01 1.48446649e-01 -4.87612784e-01\\n-1.90345645e-01 5.83026670e-02 -2.70547628e-01 -2.34211221e-01\\n1.06267080e-01 -4.80937213e-02 -3.53007913e-01 3.75008166e-01\\n-3.35924357e-01 3.55726659e-01 -1.56110987e-01 5.38591146e-02\\n4.13609669e-02 -5.33411279e-02 1.73721343e-01 -1.81655869e-01\\n-3.86033893e-01 -3.16095382e-01 -3.43081176e-01 -2.01990724e-01\\n-3.94138917e-02 -3.42269242e-01 -8.26354399e-02 2.06765868e-02\\n5.63965261e-01 1.45050734e-01 -1.52274698e-01 -1.23451509e-01\\n1.47062242e-01 -5.81141233e-01 3.41057144e-02 -1.58979252e-01\\n-5.52830808e-02 -2.20477641e-01 2.77230322e-01 6.15456514e-02\\n2.15082973e-01 -4.79138732e-01 5.81376195e-01 -2.88843632e-01\\n-4.74791735e-01 -1.98658913e-01 -2.13715155e-02 1.15963891e-01\\n2.53657341e-01 -4.35331851e-01 9.48357731e-02 2.85515755e-01\\n1.05797499e-01 -3.07497960e-02 2.24884897e-01 -1.47878647e-01\\n-8.62577111e-02 1.28878176e-01 -3.82315010e-01 1.17522955e-01\\n9.19055223e-01 2.66992092e-01 1.34974971e-01 2.62356967e-01\\n1.71070620e-01 2.76140571e-01 4.24219429e-01 -1.63008437e-01\\n-2.32844576e-02 3.45086277e-01 9.46443677e-02 -4.66607571e-01\\n-1.05483852e-01 -1.39638960e-01 -1.09349027e-01 -2.83937454e-01\\n6.90353513e-01 3.34583461e-01 -4.32711512e-01 -4.58117813e-01\\n-2.44369820e-01 -1.18108086e-01 3.99348438e-01 4.60328758e-02\\n-7.19634518e-02 -1.13380879e-01 4.51827675e-01 6.88977726e-03\\n3.21085572e-01 5.59466481e-01 -2.15392426e-01 -2.97259867e-01\\n-5.76043315e-02 3.22080255e-01 5.18005379e-02 4.12191242e-01\\n-2.70679533e-01 1.94218844e-01 -1.29968777e-01 1.10963225e-01\\n-1.58858553e-01 2.15369612e-02 1.56054199e-01 5.76272607e-02\\n2.88325340e-01 1.61272407e-01 5.06486893e-01 4.75357860e-01\\n1.81291178e-01 2.96672493e-01 3.33723247e-01 -1.45049989e-02\\n4.81492937e-01 6.60584688e-01 2.35194579e-01 6.28722459e-02\\n1.12917759e-01 9.86921415e-02 7.53389373e-02 -7.08222687e-02\\n2.72889823e-01 4.30071414e-01 3.44900042e-02 8.90929937e-01\\n2.42698923e-01 3.83027643e-01 7.09475517e-01 -7.51072943e-01\\n-3.92587006e-01 -1.11543752e-01 6.10179722e-01 -3.98497850e-01\\n1.68686762e-01 1.29175276e-01 -2.14012101e-01 4.04663801e-01\\n-5.29262424e-01 -2.67472714e-01 3.58056277e-02 7.77015835e-02\\n4.55004126e-02 -7.06565082e-02 -2.50670612e-01 -8.94935243e-03\\n-1.01367138e-01 -1.64094478e-01 -2.41318703e-01 -2.57379264e-01\\n-2.68373817e-01 9.80970860e-02 -5.90761974e-02 -1.06966369e-01\\n1.29748195e-01 -3.52318943e-01 -1.07255906e-01 -6.25448860e-03\\n3.43124449e-01 -8.91294032e-02 -1.42582342e-01 -2.84530185e-02\\n2.31965497e-01 1.44275337e-01 6.84066653e-01 -1.17205679e-02\\n8.10807943e-02 -1.15317188e-01 -1.71817988e-01 7.10282177e-02\\n3.00357193e-02 6.16302416e-02 6.34646341e-02 3.20236087e-01\\n-3.50193977e-01 -3.40861261e-01 8.95513371e-02 2.26358503e-01\\n-4.33573425e-01 -1.69807583e-01 -6.29360452e-02 4.72783335e-02\\n-1.48959935e-01 9.06267762e-03 -2.28016242e-01 -1.15639865e-01\\n-2.19456658e-01 -5.21588922e-01 3.43620569e-01 -1.93058342e-01\\n-2.59514153e-01 -5.65836579e-02 3.29142928e-01 2.55465329e-01\\n-2.61662543e-01 4.86305505e-02 -8.36994424e-02 1.10155225e-01\\n2.85570212e-02 3.14200878e-01 -5.93752116e-02 -1.88082710e-01\\n-3.93381745e-01 2.36148641e-01 -1.10711314e-01 2.47128949e-01\\n-2.02643536e-02 4.45945323e-01 -8.27778131e-02 -7.90638477e-02\\n4.18869287e-01 6.32362738e-02 -3.04170221e-01 -2.87418842e-01\\n-1.43590540e-01 3.40298750e-02 5.18666506e-02 -1.12994656e-01\\n1.53051019e-01 -3.14471841e-01 -2.14158520e-01 -2.60996372e-01\\n-1.55040268e-02 -3.90009403e-01 -1.52835637e-01 -1.13530040e-01]]',\n", + " 'job_description': \" Duration: 6 months Job Overview A Data Engineer to join our growing team of analytics experts in F1 platform in Finance .The hire will be responsible for expanding and optimizing our data and data pipeline architecture, as well as optimizing data flow and collection for cross functional teams. The ideal candidate is an experienced data pipeline builder and data wrangler who enjoys optimizing data systems and building them from the ground up. The Data Engineer will support our software developers, data architects and data analysts and will ensure optimal data delivery architecture is consistent throughout ongoing projects. They must be self-directed and comfortable supporting the data needs of multiple teams, systems and products. The right candidate will be excited by the prospect of optimizing or even re-designing our company's data architecture to support our next generation of products and data initiatives. This is NOT a leadership role but a hands on role, which is focused on L3 Production Support, solution implementation, following robust governance and assuring best practices are followed in a timely fashion. We are looking for a candidate with 5+ years of experience in a Data Engineer role, who has attained a Graduate degree in Computer Science, Statistics, Informatics, Information Systems or another quantitative field. Experience supporting and working with cross-functional teams in a dynamic environment. Responsibilities for Data Engineer Create and maintain optimal data pipeline architecture, Assemble large, complex data sets that meet functional / non-functional business requirements. Identify, design, and implement internal process improvements: automating manual processes, optimizing data delivery, re-designing infrastructure for greater scalability, etc. Work closely with the infrastructure team for optimal extraction, transformation, and loading of data from a wide variety of data sources using SQL , Sqoop , Rest API . file based and Kafka . Qualifications for Data Engineer Candidate must be from Java background and experienced working in big data platform. Advanced working SQL knowledge and experience working with relational databases, query authoring (SQL) as well as working familiarity with a variety of databases. Experience building and optimizing 'big data' data pipelines, architectures and data sets. Experience performing root cause analysis on internal and external data and processes to answer specific business questions and identify opportunities for improvement. Strong analytic skills related to working with unstructured datasets. Build processes supporting data transformation, data structures, metadata, dependency and workload management. A successful history of manipulating, processing and extracting value from large disconnected datasets. Working knowledge of message queuing, stream processing, and highly scalable 'big data' data stores. Must have experience in operating in an agile and Devops environment. Must have experience setting up Continues Integration and deployment process. Technical Skills Experience with java and big data tools: Hadoop, Spark, Kafka, etc. Experience with relational SQL and NoSQL databases Experience with bash scripting, GIT SVN , Jenkins and deployment tools like Nolio. Experience with object-oriented/object function scripting languages: Python, Java, C++, Scala, etc. \",\n", + " 'soft_skills': '[\"Analytical Skills\", \"Leadership\", \"Governance\", \"Infrastructure\", \"Management\", \"Operations\"]',\n", + " 'hard_skills': '[\"Data Architecture\", \"Automation\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"Agility\", \"Computer Science\", \"Analytics\", \"Collections\", \"Statistics\", \"Metadata\", \"Good Agricultural Practices\", \"Informatics\", \"Continuous Integration\", \"Data Engineering\", \"Process Improvements\", \"Scala (Programming Language)\", \"SQL (Programming Language)\", \"Database Queries\", \"Apex Data Loader\", \"Build Process\", \"Python (Programming Language)\", \"Maintainability\", \"External Data Representation\", \"Microsoft Message Queuing\", \"Object Oriented Project Management\", \"Objective Function\", \"Dataset\", \"Root Cause Analysis\", \"Process Optimization\", \"Minimum Data Set\", \"Data Processing Systems\", \"Stream Processing\", \"Business Requirements\", \"Sqoop\", \"Finance\", \"Production Support\", \"Scalability\", \"Evolution-Data Optimized\", \"Self-Directed Learning\", \"Big Data\", \"Bash (Scripting Language)\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"Data Structures\", \"Relational Databases\", \"Software Development\", \"Scripting\", \"Git Flow\", \"Operational Data Store\", \"Amazon Data Pipeline\", \"RESTful API\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"Data-Flow Analysis\", \"Source Data\", \"DevOps\", \"Information Systems\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'bi data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.53228360e-01 2.70658046e-01 3.72768700e-01 2.32876036e-02\\n4.73175436e-01 -3.48142348e-02 4.43848148e-02 1.15612105e-01\\n-1.16222799e-01 -4.17315096e-01 -8.69316757e-02 -2.73754179e-01\\n1.28849840e-03 -3.55053544e-02 9.30351615e-02 5.92164755e-01\\n2.60430247e-01 -7.29921386e-02 -1.43462941e-01 2.80759007e-01\\n1.13043152e-01 3.26854386e-03 -3.74928024e-03 6.28054202e-01\\n5.01266658e-01 -4.86189499e-02 -1.39927864e-01 8.10021942e-04\\n-2.83568472e-01 -2.93907404e-01 4.30700213e-01 1.90417618e-01\\n-2.04507038e-01 -1.39725327e-01 1.74223661e-01 2.21280828e-01\\n-2.68112808e-01 -2.18087304e-02 -4.55917045e-02 1.86636239e-01\\n-3.85784835e-01 -1.55839011e-01 -9.36613530e-02 -2.32908335e-02\\n-3.20058405e-01 -4.34260011e-01 7.72188464e-03 -1.49482802e-01\\n1.44545674e-01 3.55114006e-02 -4.73832309e-01 3.59030306e-01\\n-2.00130537e-01 -9.85864550e-02 1.77193940e-01 7.32493639e-01\\n1.67759985e-01 -4.77290511e-01 -3.17661017e-01 -2.89300948e-01\\n9.07400995e-02 -1.19298771e-01 1.74425706e-01 -2.26449937e-01\\n4.98205721e-01 -6.78268895e-02 -3.81489769e-02 3.00187409e-01\\n-7.68963575e-01 -7.00643808e-02 -5.04122317e-01 2.91034747e-02\\n-5.01514077e-01 7.15237260e-02 -4.92114902e-01 -2.41598397e-01\\n-9.69854221e-02 4.31301624e-01 -7.54776236e-04 6.35031760e-02\\n-1.80004895e-01 1.99867979e-01 -2.94893831e-01 2.20430288e-02\\n3.28274995e-01 2.59656787e-01 3.95150661e-01 2.70732582e-01\\n-6.38971746e-01 3.42817813e-01 3.59557033e-01 -3.76106590e-01\\n2.06228048e-01 9.56357196e-02 3.87821704e-01 1.75026238e-01\\n8.30380395e-02 2.68665910e-01 -9.66925621e-02 1.91437840e-01\\n2.54116654e-01 -1.83228984e-01 8.51040483e-02 -1.88241843e-02\\n-8.70741010e-02 -8.95733014e-02 -5.79835381e-03 2.88229942e-01\\n-3.43010694e-01 4.16385770e-01 8.14998224e-02 -2.59376943e-01\\n-3.81637141e-02 -6.87244773e-01 -1.66088745e-01 -4.76081930e-02\\n1.15614906e-01 3.20919931e-01 2.44868383e-01 3.19793552e-01\\n1.23230316e-01 1.56525541e-02 2.46658728e-01 9.02533233e-01\\n-9.97713581e-02 -1.64314806e-02 -2.10395560e-01 3.40982646e-01\\n1.42285347e-01 -2.10636824e-01 1.73530221e-01 1.20349862e-01\\n-8.79385024e-02 -1.56978935e-01 -3.71599793e-01 2.74278283e-01\\n-1.30815074e-01 -2.65477896e-01 -2.89545596e-01 1.94819599e-01\\n-1.87495843e-01 -5.32740116e-01 5.44590294e-01 -5.73449694e-02\\n1.75886855e-01 -1.19878463e-01 -1.06123216e-01 -8.35998356e-02\\n-7.90378358e-03 3.60378236e-01 1.56662241e-01 1.28044128e-01\\n-2.99494803e-01 -1.87499851e-01 -2.57826865e-01 3.22055310e-01\\n-2.90916920e-01 1.32908911e-01 -1.75493628e-01 -1.21953040e-01\\n2.12183386e-01 1.91341430e-01 -4.55967247e-01 2.18885571e-01\\n-3.78394686e-02 -4.14544851e-01 -9.25633982e-02 3.14621240e-01\\n-1.06092975e-01 1.59478530e-01 3.93269882e-02 -2.10023180e-01\\n6.58689678e-01 1.77641690e-01 2.58259654e-01 -5.77402720e-03\\n2.99216777e-01 -1.64266557e-01 2.54867494e-01 2.27145433e-01\\n-6.34104550e-01 4.94597346e-01 -1.26761124e-01 -2.15432465e-01\\n1.33578300e-01 7.28269517e-02 3.40186566e-01 -3.48915160e-01\\n5.40970527e-02 -1.18215978e-01 -2.79675275e-01 -4.62359458e-01\\n-2.73962826e-01 3.77700776e-02 3.60140741e-01 -4.67349023e-01\\n-1.37247844e-04 2.08999634e-01 -5.79505682e-01 -1.12369411e-01\\n1.40620053e-01 1.06221452e-01 1.42737046e-01 1.49640828e-01\\n-3.07473484e-02 -5.86120248e-01 1.15899861e-01 -5.32399535e-01\\n-5.11916637e-01 1.25192210e-01 -3.36365521e-01 1.50416896e-01\\n1.24839276e-01 -2.12065247e-03 -5.94098158e-02 1.74330920e-02\\n-3.43664169e-01 9.19923410e-02 2.26174876e-01 1.34943873e-01\\n2.85620898e-01 4.26782586e-04 -5.14031053e-01 5.94782293e-01\\n-8.50423574e-02 4.16900337e-01 2.88964182e-01 -8.67767692e-01\\n5.86152196e-01 1.95046276e-01 3.36433575e-03 -2.13917971e-01\\n5.46193063e-01 -4.40207541e-01 -9.72985700e-02 1.34471223e-01\\n-2.14618921e-01 -1.26227528e-01 3.53284240e-01 -2.60725081e-01\\n-2.35744625e-01 6.07929289e-01 2.53834784e-01 9.04533640e-02\\n2.70213723e-01 -1.63830236e-01 -1.53978139e-01 9.26084723e-03\\n-2.45364785e-01 -2.94786930e-01 -4.19255883e-01 2.03323528e-01\\n-4.52609435e-02 -6.03720069e-01 -1.23750344e-01 -4.40782875e-01\\n-1.46846250e-01 -5.26806056e-01 -1.16202109e-01 1.96450397e-01\\n1.34346977e-01 2.13879466e-01 -4.76987697e-02 -9.98176932e-02\\n-7.73174465e-02 -6.28006101e-01 -1.48752034e-01 6.10618070e-02\\n2.97779292e-01 2.08184659e-01 4.93663885e-02 -1.61685050e-01\\n1.02630436e-01 5.51344812e-01 -4.14876670e-01 -3.80076528e-01\\n1.93800062e-01 1.24731466e-01 -7.70380124e-02 -1.92057908e-01\\n3.93449664e-02 3.08688074e-01 -1.55558065e-01 8.78534093e-02\\n1.32499426e-03 -2.24874653e-02 2.43748799e-01 -6.96774796e-02\\n-1.56302974e-01 -2.43592918e-01 -1.29262045e-01 3.52161646e-01\\n-5.56369126e-01 -2.64301002e-01 5.63510239e-01 2.27051988e-01\\n9.67496913e-03 2.09785208e-01 2.58457601e-01 -3.07648852e-02\\n-3.40321511e-01 -1.82721943e-01 2.76718825e-01 1.93721816e-01\\n7.55183920e-02 7.43258968e-02 -2.20464677e-01 -5.67996740e-01\\n-3.22865629e+00 -2.60756671e-01 6.79577067e-02 -2.21046045e-01\\n1.48255363e-01 -1.12439327e-01 2.59291112e-01 7.14767026e-04\\n-4.06779885e-01 -4.62556779e-02 -2.23362058e-01 -2.77923793e-01\\n-6.68968558e-02 3.28433931e-01 1.13421194e-01 1.72604516e-01\\n1.63818523e-01 -3.59675407e-01 -3.41632254e-02 3.86368424e-01\\n-9.93242338e-02 -7.51867235e-01 1.35493904e-01 1.21474370e-01\\n1.52030066e-01 6.80882111e-02 -4.24672902e-01 1.07145958e-01\\n-3.92278373e-01 -3.53824794e-01 1.78911939e-01 -3.06274831e-01\\n-1.72367081e-01 2.88237333e-01 2.45024964e-01 -8.34199637e-02\\n2.41492521e-02 -3.03867221e-01 6.55318797e-02 -4.45800692e-01\\n-2.70029828e-02 -5.56141138e-01 8.39379355e-02 -3.98967825e-02\\n6.77500308e-01 -1.95858553e-01 2.54096955e-01 8.68168399e-02\\n6.62599206e-02 2.14271918e-01 1.82832345e-01 -4.65994664e-02\\n-2.73569524e-01 -3.90054047e-01 -1.02325946e-01 -1.63536936e-01\\n6.92936778e-01 4.17754084e-01 -1.48398563e-01 1.31508522e-02\\n2.11819187e-01 -2.71905661e-01 -4.16272610e-01 -5.36243260e-01\\n-2.54071862e-01 -2.26704907e-02 -6.66085005e-01 -4.29336309e-01\\n-1.85868084e-01 -1.29400954e-01 -1.47370428e-01 6.07124209e-01\\n-2.90617198e-01 -3.93245727e-01 -4.32111360e-02 -4.55879390e-01\\n2.45771781e-01 -2.02962205e-01 6.72194883e-02 -7.86241889e-02\\n-3.40574950e-01 -4.59473073e-01 2.78422803e-01 7.10601406e-03\\n-1.77404940e-01 5.95858833e-03 8.65333378e-02 -2.51872510e-01\\n-5.12572050e-01 -4.32808965e-01 3.62796605e-01 -5.05743660e-02\\n3.10365438e-01 2.58443266e-01 3.72476995e-01 1.07943118e-01\\n4.53540742e-01 -1.56242803e-01 8.21441263e-02 -4.13175642e-01\\n3.95852551e-02 -1.36093237e-02 6.08008921e-01 -2.34309658e-01\\n9.98863652e-02 1.32685602e-01 -1.96180299e-01 -7.82083347e-02\\n4.91394341e-01 -7.70625919e-02 1.17645510e-01 -1.58099815e-01\\n3.70597988e-01 -5.24517119e-01 -1.21796981e-01 1.86487123e-01\\n1.19355015e-01 6.83457375e-01 -7.52740800e-02 -3.20829004e-01\\n-1.83054760e-01 3.36958498e-01 -1.44581884e-01 -1.28140852e-01\\n-1.70624539e-01 1.28681749e-01 -2.20058873e-01 2.75959462e-01\\n-7.07440358e-03 -1.05151728e-01 -3.54495734e-01 -1.22068062e-01\\n-4.47599106e-02 2.49797940e-01 3.32913190e-01 3.78427748e-03\\n-8.40368420e-02 -2.53089964e-01 -4.66842540e-02 1.28166005e-01\\n4.56225365e-01 3.40315908e-01 1.76328421e-01 -4.15773034e-01\\n-3.67604801e-03 1.90446928e-01 -3.33119333e-01 2.76958287e-01\\n-2.60525286e-01 1.75694779e-01 -4.85705703e-01 -2.54875481e-01\\n-1.94325507e-01 -3.37078631e-01 1.75718918e-01 3.11123610e-01\\n9.88812745e-02 -1.48659438e-01 1.01342008e-01 -3.57318461e-01\\n3.01570922e-01 1.45463973e-01 1.81790292e-01 9.54792872e-02\\n-9.44710057e-03 6.25425458e-01 6.30111247e-02 -1.02025285e-01\\n-2.28634644e-02 -5.66679798e-03 -2.93178499e-01 -3.33782166e-01\\n-1.61816310e-02 -3.59228283e-01 -1.67028993e-01 5.06924748e-01\\n1.77710012e-01 -3.27696018e-02 -2.39065662e-01 3.00631344e-01\\n-2.99783908e-02 -3.38450044e-01 -2.21683457e-01 1.31161138e-02\\n2.45895833e-01 1.06536202e-01 1.87416598e-01 -4.22279537e-01\\n-4.82878387e-02 -8.55379552e-03 -3.01977694e-02 4.43715066e-01\\n1.28790736e-01 2.03533098e-01 6.42684475e-02 -1.65238231e-01\\n6.62732124e-01 -1.08859167e-01 -1.48690671e-01 1.54254079e-01\\n7.05323294e-02 -3.85887712e-01 -3.56273711e-01 -1.30366400e-01\\n-5.17591201e-02 -2.84208685e-01 9.29800570e-02 1.57265499e-01\\n2.44512707e-02 -7.83881769e-02 -6.98582828e-01 -2.69669771e-01\\n-4.73319620e-01 -3.72208953e-02 9.01945755e-02 -5.96462965e-01\\n2.37215888e-02 -1.71058103e-01 -6.33846760e-01 3.80458415e-01\\n2.32115332e-02 7.28861466e-02 6.69282824e-02 2.85018254e-02\\n-8.00337717e-02 -2.43994549e-01 2.29558691e-01 7.85629451e-02\\n-2.49394238e-01 -1.12628661e-01 -4.64711525e-02 -1.01357830e+00\\n1.84528217e-01 1.10707313e-01 -1.21861808e-01 1.04131103e-01\\n1.04629593e-02 -6.43559217e-01 1.41930521e-01 -4.19385642e-01\\n-8.74566883e-02 2.03275550e-02 -1.74127474e-01 -4.82494801e-01\\n1.09424472e-01 9.19790417e-02 -2.15138555e-01 4.66689199e-01\\n-3.76365483e-01 4.10226047e-01 5.01902923e-02 8.28878954e-02\\n7.08239153e-02 -2.65420943e-01 1.86969280e-01 -1.36667565e-01\\n-4.56583261e-01 -1.75961137e-01 -3.01494449e-01 -2.85150379e-01\\n7.69020841e-02 -3.35408121e-01 -1.58017904e-01 -3.54286693e-02\\n3.16636950e-01 2.16917828e-01 -1.11085631e-01 -1.86213672e-01\\n2.53517460e-02 -5.24657190e-01 2.74236381e-01 -3.68653059e-01\\n-6.53515309e-02 -3.09636354e-01 2.58104116e-01 -8.52045789e-02\\n1.10435925e-01 -1.66787058e-01 5.70003390e-01 -1.52468100e-01\\n-2.95944601e-01 -1.71802640e-01 1.65557384e-01 7.27623254e-02\\n3.74397367e-01 -3.87340844e-01 -1.05555281e-01 1.89525619e-01\\n1.07502259e-01 3.74748260e-02 2.95131981e-01 -2.38281488e-01\\n-3.11751664e-01 3.42509538e-01 -6.36243165e-01 1.43761918e-01\\n7.24829376e-01 2.96205163e-01 1.66736186e-01 1.33321762e-01\\n1.87946707e-01 1.74384728e-01 4.89029080e-01 3.66707928e-02\\n-2.92516109e-02 4.12857622e-01 1.21821314e-01 -4.87001777e-01\\n-1.40967324e-01 -8.47460851e-02 -5.50161973e-02 -3.62195730e-01\\n6.05088592e-01 3.57440472e-01 -3.33940268e-01 -4.14918780e-01\\n-1.62353963e-01 -5.85589698e-03 4.53592181e-01 7.60280266e-02\\n-3.53816003e-02 -1.60972714e-01 5.34460485e-01 -7.32716694e-02\\n2.86559492e-01 5.02710462e-01 -8.72613043e-02 -1.85953230e-01\\n-7.50138909e-02 2.60431826e-01 1.77844837e-01 5.74238062e-01\\n-1.46492958e-01 1.75502628e-01 -2.46840063e-02 2.01083258e-01\\n-2.27619126e-01 -3.34830806e-02 2.99778759e-01 -4.10391986e-02\\n2.22419694e-01 1.45205051e-01 3.06440473e-01 4.43235517e-01\\n2.81697541e-01 3.13682050e-01 2.26316959e-01 -7.87229165e-02\\n3.40201676e-01 7.08303750e-01 3.70781332e-01 1.54780135e-01\\n9.65367854e-02 1.27955168e-01 1.05973661e-01 -3.54117416e-02\\n2.32480869e-01 4.07727540e-01 1.20915715e-02 8.74057770e-01\\n3.07803124e-01 4.07227129e-01 5.77730000e-01 -6.95044458e-01\\n-3.61613959e-01 5.99026419e-02 5.80835164e-01 -4.37778831e-01\\n-3.55232321e-02 1.08495735e-01 -1.41744226e-01 1.43411323e-01\\n-5.45357585e-01 -2.74120748e-01 3.76421250e-02 -1.56770453e-01\\n1.86608523e-01 -1.32998109e-01 -1.45200649e-02 2.13955373e-01\\n-1.86401129e-01 -1.78530738e-01 -4.11384493e-01 -1.76619112e-01\\n-3.82446468e-01 -3.20035182e-02 7.38992728e-03 -6.58867508e-02\\n-1.01631969e-01 -2.29573816e-01 -3.76530774e-02 4.70507108e-02\\n3.14588785e-01 -2.18461037e-01 -2.37818196e-01 -8.21798295e-02\\n1.06251061e-01 2.98102289e-01 6.08632267e-01 -8.71866941e-02\\n1.58220723e-01 -1.31576151e-01 -2.21334159e-01 8.17595199e-02\\n1.24775149e-01 4.37059030e-02 7.04651698e-02 5.76302648e-01\\n-3.15513909e-01 -1.98665679e-01 9.54628363e-02 2.85883218e-01\\n-4.67840493e-01 7.46951103e-02 3.03468741e-02 1.46805018e-01\\n6.91654757e-02 2.57251322e-01 -1.99670821e-01 4.85974737e-02\\n-1.70472085e-01 -7.00539052e-01 3.80490154e-01 -1.94243684e-01\\n-2.26387396e-01 2.49131769e-02 2.84959793e-01 2.51800209e-01\\n-2.36095876e-01 -1.89648807e-01 -1.89967677e-01 2.18987748e-01\\n7.25260898e-02 3.75641406e-01 -3.51635963e-01 -1.51973754e-01\\n-3.30530971e-01 2.64453828e-01 4.96981181e-02 1.94040373e-01\\n-3.05700097e-02 2.88163900e-01 2.40110010e-02 2.41249487e-01\\n2.95158386e-01 4.76887152e-02 -2.26107016e-01 -2.16257960e-01\\n-1.31464288e-01 -1.30648002e-01 9.99225378e-02 -1.00234084e-01\\n1.82936624e-01 -3.19637805e-01 -1.38220578e-01 -3.49026084e-01\\n-3.70797694e-01 -5.28683782e-01 -5.35152629e-02 -1.35008693e-01]]',\n", + " 'job_description': 'Job Informationen Your tasks: Continuously and proactively identify drivers of performance and business insights by BI tools, analyze impacts of taken actions to give deep analytical insight to the different stakeholders Define, implement and measure process KPIs and conduct process performance measurement cycles Design standard report portfolio with optimal layouts for management and operational teams to enable data-based decision making Implement statistical forecast models and compute technical budgets Compute and measure business cases for new ideas and projects Define aligned commercial data model. Lead and/or push the HD needs in the different BI relevant projects (e.g. CCM project) Functional leadership of project members in role of project leader Continuously update analytical and methodical skills Your profile: University degree (Master) in mathematics, information technology, engineering, economics or similar Relevant working experience in commercially applied analytics, econometrical modeling and statistical software (e.g. R, python) Experience in reporting/visualization software, ideally Tableau Experience in data warehousing and in relational as well as unstructured data environments Proven SQL skills High project management skills and profound experience in workshop management Good written and verbal communication skills and ability to work in cross cultural environments Excellent conceptual capabilities, able to analytically break-down and solve complex problems with high focus on implementation Written and spoken fluency in English, and preferably also in German Proven team player as well as ability to work independently and unsupervised Willingness to travel (mostly between the groups Hubs) Benötigte Skills Business Intelligence Python Python R SQL Englisch Reisetaetigkeit Projektleitung',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Leadership\", \"Proactivity\", \"Management\", \"Operations\", \"Decision Making\", \"Information Technology\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Engineering Economics\", \"Analytics\", \"Statistics\", \"Visualization\", \"Data Warehousing\", \"SQL (Programming Language)\", \"Statistical Software\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Idealization\", \"Performance Measurement\", \"Business Intelligence\", \"Unstructured Data\", \"Conceptualization\", \"Budgeting\", \"Layout Optimization\", \"Logical Data Models\", \"R (Programming Language)\", \"Econometric Modeling\", \"Cross-Cultural Studies\", \"Forecasting\", \"Project Management\", \"Commercialization\", \"Business Case\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer application framework 80-100%',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-1.38273299e-01 2.87755728e-01 5.54463685e-01 -7.89426081e-03\\n5.55581212e-01 -1.15915179e-01 6.84729442e-02 3.51902515e-01\\n-1.10367537e-02 -3.52897584e-01 -4.75258008e-02 -1.86945513e-01\\n-1.89395808e-02 2.88173333e-02 1.01893395e-01 3.15285981e-01\\n2.32014522e-01 1.36371285e-01 -1.30550429e-01 2.88902909e-01\\n1.48151129e-01 -2.29120925e-02 2.24251106e-01 7.00022876e-01\\n4.82816964e-01 3.70246209e-02 -6.05696291e-02 -2.93427296e-02\\n-2.86100626e-01 -2.58671373e-01 5.16586721e-01 8.64480212e-02\\n-1.28873259e-01 -3.64261597e-01 2.68727187e-02 -1.10842856e-02\\n-3.46311390e-01 -1.30607516e-01 -9.63586271e-02 1.73514932e-01\\n-3.64723295e-01 -1.67548582e-01 -1.23065434e-01 4.77714837e-02\\n-2.59312600e-01 -3.72619420e-01 -6.58757761e-02 -1.06333941e-01\\n1.78094402e-01 -5.57616279e-02 -4.85783756e-01 2.71259278e-01\\n-2.90288895e-01 -1.85301602e-01 2.22278148e-01 6.68231249e-01\\n-4.34990712e-02 -3.77749473e-01 -5.37635326e-01 -2.99678236e-01\\n1.41215727e-01 -1.01260215e-01 3.88627537e-02 -2.84696579e-01\\n2.29394361e-01 1.04779698e-01 1.08476475e-01 3.72858733e-01\\n-7.96289146e-01 -4.30939607e-02 -2.00616553e-01 -5.57391793e-02\\n-3.20775598e-01 -1.11318573e-01 -2.45476276e-01 -1.74544379e-01\\n-1.78993911e-01 4.60415244e-01 8.36129785e-02 8.62803124e-03\\n-1.75282195e-01 3.12097371e-01 -1.53716102e-01 3.91107470e-01\\n1.55054048e-01 1.86444715e-01 1.61679789e-01 3.15738201e-01\\n-3.55225682e-01 5.09462476e-01 7.01233596e-02 -3.21098655e-01\\n1.70544207e-01 6.15616627e-02 3.94158810e-01 -3.87429409e-02\\n7.94839859e-02 3.15051936e-02 -1.26400501e-01 3.10513288e-01\\n1.82541400e-01 -2.55095005e-01 3.80042605e-02 -1.70093089e-01\\n2.77834181e-02 -8.95043369e-03 -3.02245840e-02 1.17102414e-01\\n-2.29790524e-01 3.68329108e-01 5.55984862e-02 -2.45195627e-01\\n-1.00300230e-01 -5.64314008e-01 -6.23275563e-02 -7.75097385e-02\\n5.82525432e-02 1.25520930e-01 1.26106411e-01 2.39601448e-01\\n2.73205012e-01 1.90176126e-02 1.60155863e-01 6.69777930e-01\\n-2.46780105e-02 4.47492069e-03 -2.86204427e-01 3.57005179e-01\\n4.17362824e-02 -3.00949782e-01 2.23349318e-01 2.55833715e-01\\n-5.95372766e-02 -9.99837667e-02 -2.17078716e-01 3.26070040e-01\\n-1.91153176e-02 -2.43783608e-01 -2.78579652e-01 2.00619563e-01\\n-7.56111145e-02 -3.79696488e-01 4.88838851e-01 1.70256615e-01\\n1.88770413e-01 -9.73684713e-02 -1.19060688e-02 -7.67802596e-02\\n-5.72979487e-02 1.01061232e-01 3.13686132e-02 1.01227693e-01\\n-2.65297532e-01 -3.08722675e-01 -2.23060384e-01 8.39825198e-02\\n-2.26403296e-01 1.23955578e-01 -1.07349820e-01 -3.33474651e-02\\n2.48614207e-01 6.88126544e-03 -3.25920641e-01 3.01950365e-01\\n-3.30567323e-02 -8.99833534e-03 1.01191953e-01 3.72540325e-01\\n-1.85672149e-01 1.51705787e-01 -7.23388419e-02 -2.30719864e-01\\n5.72191834e-01 1.32911831e-01 8.03753734e-02 4.48034927e-02\\n1.51004404e-01 1.44014526e-02 1.48792490e-01 1.13734789e-01\\n-7.75650084e-01 3.86743426e-01 -9.75602046e-02 -1.60448015e-01\\n1.49152458e-01 -8.41695145e-02 2.71072060e-01 -1.68727458e-01\\n1.02989487e-01 -1.13288485e-01 -3.27210069e-01 -3.15071911e-01\\n-2.19576322e-02 5.79457404e-03 3.02874774e-01 -4.69877869e-01\\n-1.54559076e-01 2.89203346e-01 -4.38468844e-01 -5.84359542e-02\\n1.19683705e-01 1.89227566e-01 1.32532567e-01 1.18998446e-01\\n-2.12152049e-01 -3.68010581e-01 6.13485202e-02 -3.82528931e-01\\n-2.70977020e-01 -1.47275638e-03 -2.77693927e-01 2.46533245e-01\\n1.17571950e-01 -6.33373186e-02 -6.92158267e-02 1.15657233e-01\\n-1.57005370e-01 -1.63327418e-02 7.81629309e-02 -4.91488772e-03\\n3.52782220e-01 -1.63083393e-02 -4.06139970e-01 3.53981316e-01\\n-1.67821318e-01 5.32294273e-01 1.74106926e-01 -8.16291988e-01\\n4.62538362e-01 4.09254789e-01 -6.17959760e-02 -4.30448920e-01\\n5.82773209e-01 -3.06598365e-01 -1.82453748e-02 6.14972934e-02\\n-4.01310563e-01 -2.61851132e-01 1.93454012e-01 -1.51092455e-01\\n-2.25953028e-01 4.05689836e-01 -4.00624890e-03 1.61617428e-01\\n1.21346615e-01 -2.89103508e-01 -1.92167416e-01 -1.98535789e-02\\n-1.01712368e-01 -1.93971530e-01 -5.27311742e-01 -1.32193223e-01\\n-1.29379675e-01 -4.72580314e-01 -9.42598507e-02 -3.96205246e-01\\n-1.77029923e-01 -2.06852928e-01 -9.96840745e-02 2.02387601e-01\\n2.03230590e-01 1.05365269e-01 -2.36061495e-02 1.09440468e-01\\n-5.23642860e-02 -6.18069470e-01 3.77774946e-02 1.85805783e-01\\n4.11658138e-01 1.88189104e-01 1.05119832e-01 -6.77421838e-02\\n3.32493298e-02 7.45300531e-01 -1.33908957e-01 -1.97028250e-01\\n2.00982824e-01 1.32788748e-01 4.28100303e-02 -1.11113168e-01\\n1.80451118e-03 3.14230800e-01 -2.96928257e-01 2.79304874e-03\\n-7.81481992e-03 -1.61931105e-02 4.26268220e-01 4.21479829e-02\\n-2.64898539e-01 -9.42052230e-02 -8.19195360e-02 1.87522352e-01\\n-6.00113094e-01 -2.54846871e-01 5.97451150e-01 2.16903970e-01\\n5.20106256e-02 1.11149676e-01 1.82509035e-01 3.51613294e-03\\n-1.93476960e-01 -1.64605483e-01 2.58002341e-01 3.00725345e-02\\n1.72422931e-01 -1.51500637e-02 -9.18130651e-02 -5.14204562e-01\\n-3.35622096e+00 -1.63567275e-01 7.79481903e-02 -2.67684877e-01\\n2.70302802e-01 -1.77100837e-01 1.85198829e-01 -7.89941698e-02\\n-2.11331651e-01 4.54040579e-02 -2.82750517e-01 -1.40611604e-01\\n1.61711589e-01 1.82543427e-01 5.07678948e-02 1.49612442e-01\\n9.19030234e-02 -2.92015582e-01 1.21553643e-02 3.35533053e-01\\n-1.69637308e-01 -6.79307342e-01 1.57476097e-01 3.76132503e-02\\n2.14172587e-01 2.25301489e-01 -3.67257535e-01 -1.16482347e-01\\n-2.07625777e-01 -2.78943628e-01 1.31078884e-02 -3.58343661e-01\\n-1.48125097e-01 2.69722879e-01 2.37703398e-01 -1.75972492e-01\\n1.26580670e-01 -4.57638711e-01 -1.00809135e-01 -5.11167109e-01\\n1.91104919e-01 -6.12208128e-01 5.54144755e-02 -1.00510284e-01\\n7.08829999e-01 -3.40575218e-01 1.00435816e-01 1.65816382e-01\\n2.03736410e-01 1.53406292e-01 1.56337976e-01 -3.36327069e-02\\n-1.74086213e-01 -3.24465215e-01 -9.97988284e-02 -8.21223408e-02\\n4.25224513e-01 3.97322685e-01 -1.68422937e-01 8.55315924e-02\\n6.71281219e-02 -2.65000939e-01 -3.56881469e-01 -2.17421636e-01\\n-1.23896554e-01 -3.14893007e-01 -6.96699679e-01 -4.63148147e-01\\n-1.72815412e-01 -2.34709203e-01 -1.91978425e-01 5.38206398e-01\\n-2.78701812e-01 -3.20859969e-01 -1.33413717e-01 -4.51709777e-01\\n3.33022922e-01 -1.53675243e-01 4.10000309e-02 -1.53944343e-01\\n-1.85941800e-01 -4.30374920e-01 2.54016351e-02 -5.54592609e-02\\n-4.37332038e-03 -2.77075380e-01 9.21046883e-02 -6.93303943e-02\\n-3.13694090e-01 -4.95240599e-01 3.92009526e-01 4.74073328e-02\\n3.15733492e-01 1.35380626e-01 2.65357852e-01 3.71247120e-02\\n1.92722440e-01 -1.03749260e-01 -8.67616311e-02 -2.99365968e-01\\n5.29151969e-02 1.75539777e-02 4.98013020e-01 -2.28466108e-01\\n2.55658617e-03 1.17498092e-01 -1.93382338e-01 -5.84129319e-02\\n2.51751930e-01 -5.35873063e-02 5.77185676e-02 -1.34613261e-01\\n2.90714860e-01 -2.55263597e-01 -1.26494721e-01 2.92047728e-02\\n2.59835366e-02 5.07986128e-01 -2.43468513e-03 -3.82800400e-01\\n-8.08161199e-02 3.66509020e-01 7.45339468e-02 -1.45225316e-01\\n-1.83006600e-01 8.39193985e-02 -2.17867434e-01 2.39261657e-01\\n5.15408777e-02 -1.64540127e-01 -2.29773447e-01 -1.82121903e-01\\n-1.08271368e-01 2.98775941e-01 3.22215527e-01 1.09329663e-01\\n1.53602019e-01 -4.44152415e-01 -7.34024867e-02 7.91218802e-02\\n2.84286112e-01 3.97128284e-01 1.91652060e-01 -1.39215425e-01\\n-3.97816710e-02 2.69526422e-01 -1.74826443e-01 1.96339339e-01\\n-2.21781775e-01 8.22695866e-02 -5.58695555e-01 -2.56037623e-01\\n-1.59120634e-01 -3.90545487e-01 1.22377343e-01 3.42870682e-01\\n1.40801102e-01 -1.84223766e-03 1.89321861e-02 -4.57275093e-01\\n2.88402259e-01 6.42053410e-02 2.29534492e-01 8.58455673e-02\\n-1.84554607e-02 5.61042428e-01 1.62543394e-02 -1.79336697e-01\\n-1.31682813e-01 9.88753587e-02 -1.69198573e-01 -1.41539291e-01\\n1.27405729e-02 -3.71570319e-01 -1.26448467e-01 4.11238492e-01\\n8.17497522e-02 -2.77443200e-01 -7.41037875e-02 2.97010750e-01\\n-1.13847084e-01 -2.91001797e-01 -1.52642891e-01 1.53028831e-01\\n3.70776355e-01 1.10724024e-01 2.89724916e-01 -3.92672926e-01\\n-1.02335669e-01 -2.55021472e-02 -3.68471071e-02 4.27778333e-01\\n1.59778193e-01 -2.27624308e-02 -4.26833145e-02 -2.13100642e-01\\n4.61593091e-01 -1.84153840e-02 -7.85872042e-02 1.91462576e-01\\n6.75358698e-02 -1.53065979e-01 -4.50243682e-01 3.04173641e-02\\n6.63888529e-02 -2.39680350e-01 -2.20124647e-02 1.70551419e-01\\n1.39198795e-01 8.03344101e-02 -7.16826737e-01 -2.08054557e-01\\n-3.30649734e-01 -5.91741176e-03 2.47826595e-02 -5.19831538e-01\\n2.10495456e-03 -1.13316998e-01 -6.50403380e-01 3.30286503e-01\\n-1.60954162e-01 -1.30969658e-01 1.40842006e-01 3.89543511e-02\\n-2.80531913e-01 -3.93950529e-02 1.05912283e-01 2.49199778e-01\\n-2.90803313e-01 -1.24873683e-01 -4.07810062e-02 -1.01631951e+00\\n1.91796139e-01 4.11838070e-02 -9.21229124e-02 1.14617661e-01\\n-6.13707351e-03 -5.94015241e-01 9.94793624e-02 -3.29686642e-01\\n-2.61476696e-01 -1.23567693e-01 -2.25346312e-01 -3.79162490e-01\\n5.18245213e-02 9.82635468e-02 -1.31938979e-01 3.37846428e-01\\n-2.96242625e-01 4.77020830e-01 -1.43288046e-01 1.38059199e-01\\n5.30842654e-02 -2.63816446e-01 9.62098315e-02 -4.05801147e-01\\n-2.93627292e-01 -1.65735304e-01 -2.97372341e-01 -2.05642775e-01\\n-7.35597238e-02 -3.09970230e-01 -1.64156914e-01 2.66325884e-02\\n3.20716918e-01 1.47752553e-01 -1.89612404e-01 -2.52616256e-01\\n2.03697205e-01 -4.70825404e-01 2.58582145e-01 -1.30281612e-01\\n-1.42143101e-01 -1.20861411e-01 1.93868414e-01 6.79805428e-02\\n1.11656278e-01 -3.88162374e-01 2.20317066e-01 -3.91603768e-01\\n-2.92018712e-01 -1.03343338e-01 -2.65877764e-03 1.83103345e-02\\n3.24648619e-01 -4.34348047e-01 -4.57664728e-02 3.40545237e-01\\n1.66408002e-01 1.67666376e-01 2.70226002e-01 -1.14989400e-01\\n-9.81541798e-02 3.50530237e-01 -4.48177457e-01 1.50898606e-01\\n7.52198815e-01 1.41661942e-01 5.20799719e-02 2.50617087e-01\\n2.25755587e-01 2.14501858e-01 4.35126930e-01 1.04345866e-01\\n-1.01131074e-01 2.92828143e-01 2.62429267e-02 -4.61645782e-01\\n-7.12860152e-02 8.39600689e-04 -2.53942728e-01 -3.26342165e-01\\n5.91432989e-01 4.71831292e-01 -4.47428703e-01 -1.73880979e-01\\n-2.87123531e-01 -2.43999347e-01 5.16952462e-02 -5.39358482e-02\\n3.65191549e-02 -8.65401402e-02 4.94822294e-01 -1.00307070e-01\\n1.72979355e-01 5.26022196e-01 -1.37886599e-01 -2.93863803e-01\\n-7.97559917e-02 1.45789206e-01 -2.21098810e-02 5.04659414e-01\\n-1.87479019e-01 2.46961057e-01 1.47062510e-01 1.36397749e-01\\n-1.15569815e-01 3.75028281e-03 1.80923611e-01 1.17790774e-01\\n6.11785837e-02 8.44303742e-02 3.00855100e-01 3.56787562e-01\\n2.85775274e-01 3.76253217e-01 3.20327252e-01 1.50867611e-01\\n4.18718457e-01 5.19121706e-01 3.24094772e-01 9.17147323e-02\\n-1.01765350e-01 4.82655689e-03 1.78552255e-01 -2.58451011e-02\\n2.71547049e-01 3.67018402e-01 -1.10868737e-02 8.92138124e-01\\n3.87509882e-01 3.05710256e-01 6.43296957e-01 -5.97209752e-01\\n-4.10342485e-01 1.43775186e-02 3.83509666e-01 -3.93961608e-01\\n-2.63388604e-02 7.66617432e-02 -3.26835215e-01 1.79850996e-01\\n-4.87463355e-01 -2.09911868e-01 -5.33080846e-02 8.91814977e-02\\n1.38712702e-02 -8.63197818e-02 -2.45540172e-01 2.01887026e-01\\n-8.44345987e-02 -1.11882605e-01 -4.65583175e-01 -1.37784675e-01\\n-1.64606795e-01 -1.68378860e-01 1.46062756e-02 -9.51543823e-02\\n1.42295687e-02 -2.64233381e-01 -5.38926609e-02 6.24569505e-03\\n3.03685158e-01 -3.19231674e-02 -2.34521572e-02 -1.19935766e-01\\n2.13262051e-01 2.56157428e-01 6.11778259e-01 4.20768708e-02\\n1.34981886e-01 -1.90793008e-01 -1.83237538e-01 1.39544114e-01\\n1.32489577e-01 7.87343085e-02 3.68271470e-02 2.73792982e-01\\n-2.88671643e-01 -1.62073001e-01 2.16903105e-01 3.77520978e-01\\n-4.50663269e-01 9.90733430e-02 -9.30561125e-02 1.39128730e-01\\n1.12349756e-01 1.96363434e-01 -2.53986448e-01 4.36829291e-02\\n-1.68973282e-01 -4.76932734e-01 3.08549970e-01 -6.22392334e-02\\n-1.11431010e-01 5.04356362e-02 2.09884092e-01 1.28027290e-01\\n-2.92463154e-01 2.63274834e-02 -3.94295789e-02 9.88065451e-02\\n3.44387703e-02 3.32657993e-01 -2.48527974e-01 -2.94403315e-01\\n-2.20518678e-01 1.67468518e-01 -1.14233404e-01 1.34271413e-01\\n6.58756634e-03 3.51202190e-01 8.29012990e-02 6.29732460e-02\\n4.24099088e-01 -5.92073007e-03 -2.75072098e-01 -2.10236654e-01\\n-2.38847494e-01 -2.27773279e-01 -4.84563634e-02 -1.15021616e-01\\n2.87293017e-01 -3.59749645e-01 -1.00651443e-01 -8.34365636e-02\\n-1.59396157e-01 -3.40648502e-01 6.11006729e-02 -7.27929696e-02]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team Application Framework - The Application Framework Team is mainly responsible for the software framework used in the Avaloq Banking Suite (ABS) for the management of static data and technical business process execution. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Our frameworks process several millions of transactions (e.g. payments) each day and maintain all the static data of our customers. Your mission Drive the future architecture of Avaloq’s search engine Drive and enhance the core frameworks of Avaloq’s current and future products Understand the architectural big picture, support and consult our stakeholders – customers as well as internal business teams Constant self-development What you need University degree in Computer Science (ETH/University) or equivalent experience Solid understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Understanding of relational databases Strong communication abilities and customer-centric Proficient English language skills You will get extra points for the following Experience in PL/SQL and Java/JEE Basic understanding of framework development Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zürich Don’t be shy – apply! Avaloq Evolution AG Alina Tauscher, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Management\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Tooling\", \"Computer Science\", \"Search Engine Submission\", \"Analytics\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Wealth Management\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Executable\", \"Software Engineering\", \"Static Data\", \"Agile Methodology\", \"Business Process\", \"Eclipse Process Framework\", \"Library For WWW In Perl\", \"Banking\", \"Relational Databases\", \"SQL And Java (SQLJ)\", \"Software Modernization\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " 'languages': \"['English', 'Kazakh']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'graduate software engineer (f/m/d)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Food & Beverage Shops',\n", + " 'website': 'www.miacar.ch',\n", + " 'jobdescription_embedded': '[[-1.19583175e-01 2.86539495e-01 4.76057231e-01 -1.15727633e-01\\n4.17969763e-01 -1.97364539e-01 3.42510790e-02 5.64405441e-01\\n-1.70870069e-02 -4.59781438e-01 1.96895208e-02 -3.72487038e-01\\n-6.42487854e-02 1.22317590e-01 9.58525389e-02 4.54896092e-01\\n2.36393154e-01 2.33860388e-01 -2.20972016e-01 3.64538103e-01\\n1.40239030e-01 -1.80585951e-01 1.10236108e-01 7.52131045e-01\\n4.45855349e-01 2.54153162e-02 -8.78150091e-02 -2.13037822e-02\\n-2.73982733e-01 -2.46433243e-01 5.10401368e-01 4.79951873e-03\\n2.00614650e-02 -4.18545157e-01 1.25363141e-01 4.91248146e-02\\n-1.67006582e-01 -5.23090065e-02 -9.75537896e-02 2.58246511e-01\\n-6.18890822e-01 -2.78462082e-01 1.18321188e-01 6.27088025e-02\\n-2.59423286e-01 -3.89691621e-01 4.21248935e-03 -1.58948272e-01\\n1.74228400e-01 5.95890963e-03 -4.08497602e-01 2.83396214e-01\\n-3.44840825e-01 -2.91438699e-01 2.53828585e-01 6.28719926e-01\\n-8.38712901e-02 -4.39590544e-01 -5.94896376e-01 -3.45739067e-01\\n1.21828474e-01 -9.45104659e-02 -4.66839895e-02 -5.30573845e-01\\n2.01036930e-01 1.05101869e-01 1.89508479e-02 3.99949610e-01\\n-7.43384778e-01 -1.55981645e-01 -1.46603942e-01 -1.27718568e-01\\n-2.06896707e-01 -1.14298522e-01 -2.44998172e-01 -1.24431275e-01\\n-1.30063102e-01 4.74571586e-01 7.74803832e-02 -1.24461524e-01\\n-2.36031264e-01 4.48316276e-01 -1.59344584e-01 5.12197495e-01\\n2.01711446e-01 3.00997257e-01 1.75872907e-01 3.48357141e-01\\n-3.90891552e-01 5.49449861e-01 1.23376623e-01 -3.77924830e-01\\n2.42258236e-01 7.82513991e-02 5.02169549e-01 -1.94489241e-01\\n1.06224157e-01 7.90664032e-02 -3.40426624e-01 4.04949367e-01\\n2.04945639e-01 -2.68138528e-01 1.31727874e-01 -1.20113708e-01\\n-2.80685741e-02 5.05104363e-02 2.89237499e-02 2.75072873e-01\\n-1.91378802e-01 3.94906580e-01 2.68258244e-01 -2.38564685e-01\\n-2.20984638e-01 -5.25800705e-01 -5.13884053e-02 3.36940363e-02\\n1.07184552e-01 1.24529570e-01 8.34331885e-02 -7.92623777e-03\\n2.81383932e-01 -1.25661835e-01 9.10368487e-02 7.93693900e-01\\n-3.22509706e-02 2.55097933e-02 -2.56207973e-01 3.17413300e-01\\n1.52010247e-01 -2.76668012e-01 2.09054604e-01 1.43907577e-01\\n2.99591981e-02 -1.81428134e-01 -2.04833239e-01 4.84443486e-01\\n-6.42271712e-02 -2.65718281e-01 -3.47824544e-01 1.26957074e-01\\n-1.30446851e-01 -2.89142400e-01 6.58058286e-01 1.77883282e-01\\n1.71319962e-01 -2.62738075e-02 4.60977852e-02 -1.38173357e-01\\n-1.20146789e-01 1.86634406e-01 1.00517944e-01 3.34720053e-02\\n-4.06893641e-01 -1.82250977e-01 -2.10901842e-01 6.29438534e-02\\n-3.55259389e-01 1.21514328e-01 -7.58993030e-02 -4.89118174e-02\\n2.47262567e-01 6.44266531e-02 -2.53502637e-01 2.28740200e-01\\n-1.18140809e-01 -1.58067681e-02 5.50452136e-02 3.45092922e-01\\n-2.32706457e-01 2.17469007e-01 -1.82862654e-02 -7.30819404e-02\\n5.53231120e-01 1.18064545e-01 8.29051509e-02 -4.74615656e-02\\n4.13413256e-01 -5.21940775e-02 5.64197917e-03 2.09396064e-01\\n-6.23429120e-01 3.20047498e-01 -1.12714469e-02 -2.17590928e-02\\n1.67556956e-01 -1.14068709e-01 3.60218704e-01 -3.05569798e-01\\n3.75771075e-02 -1.87948152e-01 -4.20851618e-01 -2.64991969e-01\\n-2.26186693e-01 3.92525457e-02 3.87320697e-01 -3.18454325e-01\\n-2.48746395e-01 1.35397628e-01 -4.55585122e-01 -7.53269792e-02\\n6.08633868e-02 2.61979312e-01 7.18994215e-02 1.19255140e-01\\n-3.08484465e-01 -5.48476517e-01 4.72812168e-02 -3.41136485e-01\\n-3.17728668e-01 1.31445244e-01 -2.48175472e-01 2.63092309e-01\\n4.89322394e-02 7.67622143e-02 -1.64553374e-01 1.94238737e-01\\n-1.69653073e-01 1.52155226e-02 4.78722192e-02 3.24349329e-02\\n1.66284040e-01 6.13287576e-02 -4.50053424e-01 3.26733053e-01\\n-8.96285176e-02 5.49665749e-01 9.60469916e-02 -1.01394010e+00\\n4.36462730e-01 4.59852755e-01 3.91398668e-02 -4.12744761e-01\\n5.88551641e-01 -2.77938366e-01 2.05036737e-02 1.01839319e-01\\n-4.29253221e-01 -3.60720158e-01 2.53562838e-01 -1.52469710e-01\\n-2.52070695e-01 3.68935943e-01 6.26891926e-02 1.04346558e-01\\n1.44063801e-01 -3.05669427e-01 -1.52747035e-01 1.31278202e-01\\n-1.22844093e-02 -2.16225296e-01 -5.48781157e-01 -7.08767027e-02\\n-3.57223600e-02 -4.39470023e-01 -1.13124356e-01 -3.63005251e-01\\n-2.39526331e-01 -3.21491092e-01 -1.28283635e-01 2.71445990e-01\\n4.14297849e-01 1.07662462e-01 1.21631287e-01 -1.09383613e-02\\n-6.61569238e-02 -6.03772283e-01 -6.74744397e-02 1.43161193e-01\\n4.31548864e-01 3.00599366e-01 1.08162602e-02 8.97024721e-02\\n-1.95389073e-02 7.26932704e-01 -1.28639176e-01 -2.14964747e-01\\n1.70937821e-01 1.97683066e-01 3.14479657e-02 -1.11889817e-01\\n9.93512422e-02 4.14722353e-01 -2.92401880e-01 9.64932144e-02\\n-1.68589130e-01 4.97535150e-03 4.64624614e-01 2.17599154e-01\\n-3.56907845e-01 -1.13911167e-01 -1.31346092e-01 1.45066706e-02\\n-6.62294209e-01 -2.54648119e-01 5.38691103e-01 2.35987201e-01\\n2.68391699e-01 8.13746303e-02 1.97481111e-01 -1.48054987e-01\\n-1.74555942e-01 -2.42284358e-01 2.35597640e-01 1.85122967e-01\\n1.42286301e-01 7.07853585e-02 5.05928397e-02 -6.44900441e-01\\n-3.01524234e+00 -1.35828614e-01 2.34799668e-01 -2.51506835e-01\\n1.73888892e-01 -1.05320737e-01 5.07703349e-02 -1.49952516e-01\\n-2.88332552e-01 4.94260453e-02 -1.57701001e-01 -1.37839347e-01\\n1.71779081e-01 1.80079088e-01 1.40320227e-01 1.59045056e-01\\n2.13591799e-01 -1.74125195e-01 -1.03555672e-01 3.76456648e-01\\n-1.06458060e-01 -6.36080384e-01 2.45579898e-01 -6.05975054e-02\\n2.16315538e-01 2.66289979e-01 -2.94771731e-01 -3.54355760e-02\\n-2.24674836e-01 -1.41966954e-01 4.81301174e-02 -3.07170779e-01\\n-1.88715145e-01 1.89953536e-01 1.85729474e-01 -5.73654287e-02\\n1.74272239e-01 -3.83148223e-01 -1.25991002e-01 -3.18131447e-01\\n2.22193331e-01 -6.43416405e-01 -1.27425075e-01 -1.64878130e-01\\n8.65147948e-01 -3.62816870e-01 2.59192251e-02 1.69650484e-02\\n2.32712209e-01 1.26177669e-01 1.70694098e-01 -3.48463133e-02\\n-6.00855947e-02 -2.89246678e-01 3.26802358e-02 -7.84933046e-02\\n4.44695711e-01 4.53344315e-01 -8.37304071e-02 -6.60024956e-02\\n6.68990240e-02 -2.38519177e-01 -4.62292314e-01 -1.14460826e-01\\n-1.49721637e-01 -3.09581518e-01 -5.97775340e-01 -3.24345171e-01\\n-2.28583395e-01 -9.35359821e-02 -1.22799240e-01 6.36817396e-01\\n-3.07841063e-01 -2.93665022e-01 -6.31364360e-02 -5.40741682e-01\\n1.94167048e-01 -1.45472899e-01 5.59872352e-02 -1.87817365e-01\\n-2.52781868e-01 -5.69725454e-01 1.80512406e-02 -3.12984660e-02\\n-8.21506679e-02 -3.39528054e-01 -4.23782468e-02 -1.56898469e-01\\n-2.77899832e-01 -5.81501067e-01 4.27079618e-01 2.21594661e-01\\n3.27683687e-01 1.73009098e-01 4.02628362e-01 -2.17996426e-02\\n2.74073690e-01 -1.56997725e-01 -1.72499716e-02 -4.08999354e-01\\n8.60510021e-02 5.09130992e-02 5.84005177e-01 -2.46567592e-01\\n-8.18904431e-04 1.61258981e-01 -1.86808959e-01 -1.51595354e-01\\n2.80662358e-01 1.30463289e-02 7.26327524e-02 -1.94038957e-01\\n2.91452616e-01 -2.59659469e-01 -1.80961341e-01 8.22151303e-02\\n5.90481758e-02 5.54426789e-01 -9.52659696e-02 -4.78462487e-01\\n-1.11807004e-01 4.36697423e-01 -1.54987518e-02 -1.04974158e-01\\n-3.42090577e-02 1.91289503e-02 -1.42105624e-01 3.55427206e-01\\n7.23148510e-02 -2.08551213e-01 -3.20464641e-01 -2.12570712e-01\\n-1.61376640e-01 4.01446283e-01 2.35333800e-01 1.01449743e-01\\n1.32898604e-02 -4.94850814e-01 -1.71814024e-01 2.22182348e-01\\n1.89758345e-01 4.72373515e-01 6.86740726e-02 -1.93909734e-01\\n-9.67517048e-02 4.97566551e-01 -2.01320112e-01 1.69489995e-01\\n-1.89996779e-01 1.09436557e-01 -5.05450785e-01 -2.18155697e-01\\n-1.54886842e-01 -5.07041812e-01 1.11381374e-01 3.57134134e-01\\n2.21117243e-01 1.21371061e-01 -5.85470945e-02 -4.63210851e-01\\n3.44523132e-01 1.63740724e-01 9.42939371e-02 2.18948275e-01\\n-6.49673045e-02 5.92483759e-01 1.44601483e-02 -1.82654694e-01\\n-4.75435667e-02 -1.25137903e-02 -1.23728961e-01 -1.25884280e-01\\n1.61587730e-01 -4.79965717e-01 -1.14921302e-01 3.88439447e-01\\n8.76669362e-02 -4.10682917e-01 -2.93355584e-01 1.58128023e-01\\n-4.87466641e-02 -1.57914519e-01 -1.92880541e-01 1.13314800e-01\\n4.11885053e-01 8.03370401e-02 3.80327910e-01 -4.78367835e-01\\n-1.54557377e-01 -6.36592507e-02 -2.51060814e-01 5.46234369e-01\\n1.84363350e-01 1.01532415e-01 -3.67821842e-01 -2.14819416e-01\\n4.62514758e-01 -1.66024223e-01 -2.33468246e-02 -5.98542243e-02\\n4.86896150e-02 -1.74939886e-01 -4.48714912e-01 1.06052294e-01\\n4.02206518e-02 -3.05649489e-01 4.33157459e-02 9.62695703e-02\\n2.13541925e-01 1.93284884e-01 -5.32754838e-01 -2.98446119e-01\\n-1.76570609e-01 6.60525286e-04 6.50514364e-02 -4.72296298e-01\\n-1.52059663e-02 -6.22800924e-02 -6.22111976e-01 1.73800200e-01\\n-2.59042233e-01 -1.61745459e-01 1.16943255e-01 9.14948583e-02\\n-4.57662851e-01 -6.93401182e-03 2.24890877e-02 3.01161021e-01\\n-2.77208149e-01 -3.66617531e-01 -1.07425768e-02 -1.00379109e+00\\n1.76259533e-01 -7.09713101e-02 -1.35190427e-01 2.43439913e-01\\n9.16012563e-03 -6.21394634e-01 1.42315379e-03 -3.38716298e-01\\n-1.32034674e-01 6.22090651e-03 -1.12983167e-01 -4.33292657e-01\\n9.38077122e-02 -1.38310995e-03 -2.32058465e-01 5.25181711e-01\\n-2.83825547e-01 3.50005358e-01 -1.45236209e-01 2.39909127e-01\\n-3.14190495e-03 -2.99050868e-01 1.79394200e-01 -4.60691631e-01\\n-4.05967265e-01 -1.57000065e-01 -3.43088299e-01 -2.29510412e-01\\n-6.28480762e-02 -2.67071098e-01 -2.14909926e-01 1.53019860e-01\\n3.12112391e-01 9.73448977e-02 -1.56503707e-01 -3.18749130e-01\\n1.26397565e-01 -4.23649520e-01 1.70921057e-01 -3.97104882e-02\\n-1.34749860e-01 -1.07638195e-01 2.28622273e-01 1.74037844e-01\\n1.06498972e-01 -4.74747300e-01 3.38321418e-01 -3.82098347e-01\\n-3.30687195e-01 -1.19414896e-01 -2.52510458e-02 -1.14668548e-01\\n3.86767983e-01 -5.12346268e-01 -6.50297478e-02 3.44056606e-01\\n9.46068540e-02 2.08319828e-01 2.82320112e-01 -1.98634807e-02\\n-5.84645011e-02 2.28364766e-01 -2.92623311e-01 1.44736171e-01\\n7.79846370e-01 1.05107255e-01 1.17461905e-01 1.68973163e-01\\n1.42384276e-01 1.94779754e-01 4.66333002e-01 3.68566029e-02\\n-2.05001056e-01 1.95251510e-01 -7.49639347e-02 -5.28831422e-01\\n-1.02342349e-02 -2.05090921e-02 -3.30652952e-01 -3.93281460e-01\\n6.84391081e-01 4.76735711e-01 -4.48911399e-01 -1.24456681e-01\\n-1.15282699e-01 -1.74629673e-01 5.97907752e-02 -2.83874571e-02\\n2.38684323e-02 -1.06755681e-01 5.63582003e-01 -2.01870408e-02\\n2.63815016e-01 4.53272432e-01 -3.12757134e-01 -3.93832326e-01\\n-5.73938936e-02 1.15327924e-01 -6.37650862e-02 4.45472986e-01\\n-2.63900459e-01 3.11249316e-01 -4.90891114e-02 1.72640473e-01\\n-1.00035660e-01 1.06147535e-01 4.27524261e-02 1.55299217e-01\\n1.08361043e-01 9.46153104e-02 4.38003510e-01 5.56897283e-01\\n3.92727315e-01 4.55936015e-01 2.28569344e-01 8.65553170e-02\\n5.67220449e-01 4.56421107e-01 3.16680551e-01 2.38121971e-01\\n-2.80564441e-03 6.71941862e-02 1.99097648e-01 -3.51124589e-04\\n3.43205154e-01 2.48450339e-01 1.68193176e-01 8.63867581e-01\\n1.84724107e-01 2.09637851e-01 6.92038655e-01 -5.88298202e-01\\n-3.03123415e-01 -1.91579945e-02 3.85139704e-01 -4.15609688e-01\\n-1.82039157e-01 1.38147190e-01 -2.34456554e-01 1.42984852e-01\\n-4.65275079e-01 -2.41406828e-01 -1.16552107e-01 2.53528178e-01\\n-1.18937790e-01 -1.65267706e-01 -2.17611805e-01 1.06018350e-01\\n-1.69396177e-01 -9.31952074e-02 -4.74380821e-01 -4.31855069e-03\\n-1.82721660e-01 -2.01083079e-01 -1.18958525e-01 -2.41331667e-01\\n-1.05747819e-01 -4.90128279e-01 -3.85883898e-02 1.36224669e-03\\n2.04767704e-01 -9.82780978e-02 2.10783444e-02 -1.89152941e-01\\n3.04891586e-01 2.24264875e-01 5.50061464e-01 -4.60522287e-02\\n9.63636860e-02 -3.28923017e-01 -3.16072643e-01 1.87890276e-01\\n1.63141116e-01 3.88803519e-02 -1.97183271e-03 2.63293475e-01\\n-2.35788360e-01 -4.44035828e-02 6.77402457e-03 3.61411810e-01\\n-5.06630599e-01 2.18405258e-02 -2.14234635e-01 1.53182298e-01\\n9.61227193e-02 1.08869828e-01 -2.06460342e-01 6.68522194e-02\\n-2.09805667e-01 -3.96511048e-01 2.07910240e-01 -5.45218810e-02\\n-8.66686553e-02 8.81678089e-02 1.11686595e-01 7.83984587e-02\\n-3.70114088e-01 -2.71451790e-02 -1.09926080e-02 2.53908962e-01\\n4.86997329e-02 3.26120794e-01 -1.74463302e-01 -3.18139493e-01\\n-1.33937404e-01 1.50855780e-01 -1.53921485e-01 8.26874524e-02\\n6.17588311e-02 3.55197549e-01 1.05360970e-01 -9.29605216e-02\\n4.99503076e-01 8.24360400e-02 -8.12405050e-02 -3.03757101e-01\\n-1.37327865e-01 -2.95563966e-01 -1.51233390e-01 -8.54848698e-02\\n1.79440498e-01 -3.76806438e-01 -4.39279303e-02 -9.20795947e-02\\n-2.94222683e-02 -3.42573494e-01 9.55150556e-03 -1.90878332e-01]]',\n", + " 'job_description': 'Together we build the future of last mile delivery and grocery shopping. Backed by a major Swiss venture fund, MIACAR successfully launched in the region of Bern and we are now growing our company at high speed. Join us in becoming the category king in Switzerland and help us giving our customers what they really want: More time for the beautiful things in life. Graduate Software Engineer (f/m/d) As a Software Engineer you will be responsible for developing state-of-the-art mobile and web applications that delight our customers. These will be your tasks Contribute to developing MIACAR\\'s scalable, reliable, and secure grocery delivery platform (this includes web and mobile applications for our customers as well as our logistics operations) Take pride in working on projects to successful completion involving a wide variety of technologies and systems Assure quality via testing, validating data, monitoring and implementing best practices Deliver high quality software and user experience within an Agile development environment You\\'re offering these qualifications Solid understanding of Computer Science concepts, algorithms and data structures 2+ years of experience with a modern statically typed programming language (Typescript, Haskell, C++, Java, Scala, or similar) Knowledge of version control techniques using git Interest in functional programming We\\'re offering these benefits Be a key player in the most ambitious Swiss online food story Highly motivated, dynamic and international team Fame and glory for what you will have built No bulls**t, down to earth, yet high caliber work environment Sounds like you? Submit your application for MIACAR and be a \"Hero of the first hour\"! We are looking forward to hearing from you. Contact: MIACAR AG Helen Krähenbühl MIACAR is backed by the Migros group. For more job offerings, please visit: migros-gruppe.jobs',\n", + " 'soft_skills': '[\"Typing\", \"Quality Assurance\", \"Operations\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Agility\", \"KM Programming Language\", \"Development Environment\", \"Data Validation\", \"Computer Science\", \"Good Agricultural Practices\", \"Mobile Application Software\", \"TypeScript\", \"Haskell (Programming Language)\", \"Software Quality Management\", \"Version Control\", \"M (Programming Language)\", \"Hostile Work Environment\", \"Quality Management Systems\", \"Software Engineering\", \"Test Data Generation\", \"Mobility\", \"Logistics\", \"Scalability\", \"Functional Programming\", \"Foods\", \"Data Structures\", \"Algorithms\", \"Git Flow\", \"User Experience\", \"Java (Programming Language)\"]',\n", + " 'languages': \"['English', 'Hindi']\"},\n", + " {'company_id': '41',\n", + " 'job_title': 'software engineer (100%) – web and data science',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.65671992e-01 1.45940229e-01 3.86579961e-01 -5.96222728e-02\\n4.40720975e-01 -1.17932484e-01 -5.53719737e-02 5.01133442e-01\\n-6.70614690e-02 -3.90774101e-01 -2.40968078e-01 -3.33446920e-01\\n-2.98712663e-02 4.49025333e-02 4.81980816e-02 3.25744450e-01\\n4.09833908e-01 5.76693937e-03 -1.84553653e-01 2.21736267e-01\\n1.58151448e-01 7.42802769e-03 6.68215826e-02 7.74974823e-01\\n4.26653177e-01 3.95111814e-02 -8.13630000e-02 8.06319192e-02\\n-1.23878241e-01 -1.93758741e-01 4.81303036e-01 -4.36533578e-02\\n-5.75363971e-02 -2.78646976e-01 1.52562439e-01 1.53269842e-01\\n-1.69085369e-01 -1.44976303e-01 1.58054326e-02 1.32952496e-01\\n-3.66461992e-01 -1.98856890e-01 -1.35921940e-01 -2.06342489e-02\\n-2.50288725e-01 -3.20023537e-01 1.66707382e-01 7.32310712e-02\\n1.94391698e-01 1.21158890e-01 -5.73420227e-01 3.27536047e-01\\n-1.59305811e-01 -2.10323647e-01 2.62402833e-01 5.85820317e-01\\n-4.31489646e-02 -3.49614322e-01 -4.45077181e-01 -3.20531785e-01\\n-3.72604914e-02 8.26465804e-03 2.51845773e-02 -3.39872897e-01\\n4.32266474e-01 7.68900961e-02 -1.74692422e-02 4.08467025e-01\\n-7.77748108e-01 -1.19041376e-01 -1.80832863e-01 -3.07215638e-02\\n-4.31059688e-01 -9.34521481e-02 -2.04030812e-01 -3.37942868e-01\\n3.92130949e-03 3.90388906e-01 4.84944806e-02 1.46399632e-01\\n-1.26081616e-01 3.08380604e-01 -1.73809811e-01 2.64557004e-01\\n2.00204268e-01 2.24971503e-01 1.22631535e-01 2.03790337e-01\\n-4.58802283e-01 3.04537326e-01 1.20717525e-01 -3.34799170e-01\\n2.20548585e-01 1.06594443e-01 4.94277716e-01 -2.64986046e-02\\n1.33682892e-01 1.20210752e-01 -2.74110585e-01 2.19658196e-01\\n1.65380284e-01 -2.70546913e-01 6.74144253e-02 1.08242229e-01\\n-1.60465941e-01 6.08422644e-02 -1.85638703e-02 1.67464122e-01\\n-4.69229460e-01 3.80220354e-01 1.42995641e-01 -2.04860896e-01\\n-5.75360730e-02 -5.27833998e-01 -5.02122864e-02 7.55536705e-02\\n1.28539905e-01 2.48511523e-01 1.00582331e-01 2.20322356e-01\\n1.80671632e-01 -1.19153254e-01 1.77313268e-01 8.00523818e-01\\n-1.65828735e-01 4.92043868e-02 -1.09462552e-01 2.98142612e-01\\n1.40939914e-02 -4.12092865e-01 3.59669060e-01 2.41447479e-01\\n6.60205856e-02 -9.69279334e-02 -1.92451924e-01 3.51833910e-01\\n-5.27645983e-02 -1.07739866e-01 -2.72441983e-01 2.93499619e-01\\n-6.37685955e-02 -3.98500741e-01 5.46387792e-01 -3.29662189e-02\\n1.38507351e-01 -1.19825944e-01 -1.50499977e-02 -1.06342621e-01\\n-1.75223872e-03 1.77395970e-01 -1.65576115e-02 1.13179833e-01\\n-2.77129471e-01 -2.60744929e-01 -2.11151257e-01 2.11403474e-01\\n-2.17946619e-01 1.65860862e-01 -1.15631759e-01 -7.70363733e-02\\n3.89654279e-01 -1.46581009e-02 -3.62541020e-01 2.69966841e-01\\n-1.63040996e-01 -7.66931847e-02 -1.56875193e-01 2.75265068e-01\\n-1.57152399e-01 1.70637965e-01 -8.45586434e-02 -2.88989067e-01\\n6.04902506e-01 9.84405205e-02 7.97428861e-02 2.04659179e-02\\n3.77252936e-01 -1.16546281e-01 2.71022826e-01 1.23651460e-01\\n-8.31082702e-01 3.86215389e-01 -7.69033059e-02 -1.41677290e-01\\n5.73826246e-02 -9.23963487e-02 3.63402575e-01 -3.26572210e-01\\n-4.28737048e-03 -6.35979474e-02 -4.10261333e-01 -3.56522679e-01\\n-2.93922603e-01 1.17526241e-02 3.80106091e-01 -4.41879064e-01\\n-1.07742257e-01 2.29473859e-01 -4.35201019e-01 -5.65388687e-02\\n1.20207965e-01 1.47222951e-01 2.17267781e-01 1.16263881e-01\\n-1.37646094e-01 -5.49800515e-01 -4.99382168e-02 -4.79152948e-01\\n-2.49541163e-01 1.10701770e-01 -3.63124132e-01 2.43841216e-01\\n1.00868732e-01 -9.69737396e-03 -1.25990167e-01 6.72070533e-02\\n-1.80060863e-01 1.93080287e-02 2.23223478e-01 9.92939174e-02\\n2.69773066e-01 2.12840606e-02 -3.51220042e-01 5.13492465e-01\\n-2.67470479e-01 5.66492081e-01 1.12878934e-01 -7.32331932e-01\\n5.85182548e-01 3.70277882e-01 2.30081119e-02 -4.11384702e-01\\n6.64948702e-01 -3.22872043e-01 -1.39720738e-01 2.16031119e-01\\n-5.10149181e-01 -2.79087454e-01 2.25954041e-01 -2.85820723e-01\\n-1.71467245e-01 5.68640590e-01 1.11486539e-01 5.34686446e-03\\n1.91207111e-01 -2.09477827e-01 -5.11966310e-02 2.03552753e-01\\n-5.67220896e-02 -3.04019392e-01 -4.41351265e-01 6.44363463e-03\\n-1.00489557e-01 -5.02600849e-01 -2.21974134e-01 -4.52862322e-01\\n-1.32305488e-01 -3.67884755e-01 -8.69197994e-02 3.19357514e-01\\n1.78226694e-01 1.15841031e-02 5.40474430e-02 -1.46193001e-02\\n-2.18150109e-01 -4.65944588e-01 5.52844405e-02 -4.87956665e-02\\n3.54325950e-01 2.22053930e-01 5.17959297e-02 7.71746412e-03\\n1.20537810e-01 5.90416431e-01 -4.31589901e-01 -2.04296216e-01\\n1.92698970e-01 1.77802205e-01 -1.65455453e-02 -9.36991945e-02\\n6.47983104e-02 1.84358478e-01 -2.80127943e-01 6.28573596e-02\\n-1.97841823e-01 6.18828088e-03 3.12159479e-01 -3.37022841e-02\\n-1.72033250e-01 -2.81366050e-01 -2.01874048e-01 2.41755426e-01\\n-4.15241957e-01 -1.46145418e-01 5.02776742e-01 1.94308281e-01\\n1.26098216e-01 9.35502499e-02 1.64956897e-01 -5.51386178e-02\\n-2.27688760e-01 -2.75434315e-01 1.64273471e-01 2.11716086e-01\\n9.52063203e-02 1.16905600e-01 7.06956442e-03 -5.39504468e-01\\n-3.16318107e+00 -1.43631786e-01 8.27458352e-02 -2.16717392e-01\\n1.96872801e-01 -1.81011736e-01 7.57007673e-02 -1.56750932e-01\\n-3.19366306e-01 8.51342082e-03 -2.65844643e-01 -2.52728224e-01\\n2.42721364e-01 3.00038517e-01 2.11652458e-01 1.78828925e-01\\n6.91802874e-02 -2.70938516e-01 -3.27821411e-02 3.37593853e-01\\n-2.02352136e-01 -6.36483133e-01 1.80496231e-01 -1.10360548e-01\\n2.89911449e-01 2.12548465e-01 -3.64683986e-01 -1.52064413e-01\\n-3.71091872e-01 -2.66302556e-01 1.55196354e-01 -3.94480646e-01\\n-1.90219581e-02 3.70257854e-01 2.72065759e-01 -8.62296000e-02\\n1.26356497e-01 -3.15278769e-01 -8.34692791e-02 -4.33622539e-01\\n9.70664546e-02 -6.00667834e-01 3.41655426e-02 -1.36053458e-01\\n6.46572888e-01 -2.92690754e-01 2.10369080e-01 -6.23375773e-02\\n1.25545070e-01 1.81514800e-01 7.08480626e-02 2.23776102e-02\\n-2.35551387e-01 -1.89410746e-01 -2.88651381e-02 -2.43645459e-01\\n4.85781610e-01 5.86879492e-01 -2.45114237e-01 5.31861279e-03\\n1.39248502e-02 -3.06160778e-01 -4.03995007e-01 -4.26138461e-01\\n-1.84742033e-01 -2.08667144e-01 -5.83256066e-01 -3.99220407e-01\\n4.32866812e-02 -8.51115957e-03 -1.75034963e-02 5.42504251e-01\\n-3.46156836e-01 -3.08009803e-01 -7.46407062e-02 -5.06666541e-01\\n1.90752119e-01 -1.30440563e-01 3.77066061e-02 -1.53395131e-01\\n-2.05087990e-01 -5.11045337e-01 -2.26585865e-02 -6.74601644e-02\\n-7.92954639e-02 -3.09072286e-01 1.44901365e-01 -2.73926258e-01\\n-3.10961783e-01 -4.97012854e-01 3.87421727e-01 7.26928636e-02\\n2.68800616e-01 1.60214692e-01 1.13335781e-01 -4.80764695e-02\\n1.84253618e-01 -7.91472644e-02 7.70884603e-02 -3.75289261e-01\\n1.73179924e-01 -3.24712358e-02 4.67437983e-01 -2.92596370e-01\\n9.26188082e-02 9.33798477e-02 -2.40125269e-01 -9.63956937e-02\\n3.16478431e-01 2.82150581e-02 5.46283498e-02 -2.18946502e-01\\n3.16442132e-01 -3.99932027e-01 -1.06561989e-01 1.22343890e-01\\n7.86487013e-04 5.63141465e-01 -9.13602859e-02 -3.18641096e-01\\n-2.43854791e-01 4.75256920e-01 -3.92867178e-02 -6.24148473e-02\\n-2.72917636e-02 6.82791173e-02 -2.72959262e-01 8.36367439e-03\\n1.05782643e-01 -1.77339256e-01 -3.27258199e-01 -6.63473010e-02\\n-4.37629186e-02 2.60152191e-01 3.49061579e-01 1.23251729e-01\\n-4.43817750e-02 -3.90107691e-01 4.30728868e-02 2.38825619e-01\\n2.05731302e-01 4.10272509e-01 1.64604485e-01 -2.82640755e-01\\n1.16258956e-01 4.40718293e-01 -1.38385400e-01 2.99130321e-01\\n-2.55757272e-01 2.94040069e-02 -4.51910585e-01 -2.76521027e-01\\n-3.08819771e-01 -2.09950149e-01 2.33417332e-01 2.39462256e-01\\n6.02208003e-02 -7.66653344e-02 2.06329226e-02 -2.36203387e-01\\n2.68072933e-01 3.77498157e-02 2.47298986e-01 1.95489034e-01\\n7.02776536e-02 5.05241871e-01 6.19248040e-02 -4.02613468e-02\\n-1.11321114e-01 9.74437874e-03 -1.82372719e-01 -2.55358249e-01\\n2.59953812e-02 -4.51805174e-01 -1.71005443e-01 3.30977261e-01\\n8.71234760e-02 -2.15608418e-01 -1.51789695e-01 3.16470623e-01\\n2.74791047e-02 -2.69510776e-01 -1.83940381e-01 4.27336209e-02\\n3.36368263e-01 1.95188791e-01 2.39873916e-01 -5.45838594e-01\\n2.16232799e-02 8.71053934e-02 6.00444637e-02 3.49319577e-01\\n7.42349587e-03 4.74575683e-02 -2.14556947e-01 -3.09754163e-01\\n3.78174186e-01 -1.18754230e-01 -7.81170204e-02 2.21334770e-02\\n-5.10758124e-02 -1.01043999e-01 -4.98390257e-01 6.23926409e-02\\n-7.73448050e-02 -1.69122234e-01 2.25923546e-02 3.02437153e-02\\n1.88040107e-01 1.60920154e-03 -5.90171278e-01 -2.60729134e-01\\n-2.39859760e-01 1.21823907e-01 -6.59736991e-03 -4.12824333e-01\\n-3.31509188e-02 -1.43836319e-01 -5.90028405e-01 2.51630843e-01\\n-3.01294565e-01 2.14015245e-02 1.66689724e-01 -2.85166893e-02\\n-2.90737748e-01 -1.66129358e-02 2.14256197e-01 1.43998519e-01\\n-3.52507979e-01 -2.76134938e-01 1.63707078e-01 -9.68044043e-01\\n2.28630215e-01 -4.89335358e-02 -2.76113488e-03 5.22096828e-02\\n5.19602746e-02 -6.59997046e-01 6.40762374e-02 -3.23857099e-01\\n3.16361152e-02 -5.28077185e-02 -1.89562067e-01 -3.75486195e-01\\n1.65075988e-01 2.86792889e-02 -2.53136873e-01 4.25950587e-01\\n-3.73569787e-01 2.23947644e-01 -6.23741485e-02 8.54542851e-02\\n-9.47628915e-03 -2.60334611e-01 1.60610527e-01 -3.55486512e-01\\n-3.97661686e-01 -1.08092077e-01 -2.31303632e-01 -2.40255073e-01\\n2.04730574e-02 -3.08231413e-01 -1.32807940e-01 1.14467770e-01\\n2.77534485e-01 -2.14315578e-03 -1.54656783e-01 -2.02471212e-01\\n6.36121482e-02 -4.14339721e-01 6.53293878e-02 -9.79014263e-02\\n-1.74235195e-01 -5.83656654e-02 1.44413859e-01 1.49172083e-01\\n1.79759547e-01 -2.99676359e-01 4.11857545e-01 -4.19254601e-01\\n-3.48256886e-01 9.24141146e-03 2.44993679e-02 7.12200850e-02\\n4.10732448e-01 -4.47869778e-01 -1.06420852e-02 4.83556926e-01\\n1.58661678e-01 4.26347740e-02 3.35807711e-01 -1.40962273e-01\\n-6.75651282e-02 3.55195940e-01 -4.03500348e-01 8.11336488e-02\\n7.59608150e-01 1.82093397e-01 1.61473811e-01 1.83877945e-01\\n8.28263089e-02 2.08341986e-01 4.96791363e-01 -6.81689978e-02\\n-4.55492884e-02 2.34692231e-01 1.66272134e-01 -4.87056762e-01\\n-3.79559584e-02 -7.23590404e-02 -1.19591534e-01 -3.12258154e-01\\n6.38360381e-01 2.92919099e-01 -3.86653483e-01 -2.76258111e-01\\n-1.80285275e-01 -8.55756849e-02 1.83038861e-01 -1.20801419e-01\\n-1.20878769e-02 -1.25445127e-01 3.60706985e-01 -1.79722719e-02\\n3.25670779e-01 5.15507519e-01 -1.36967659e-01 -2.27989957e-01\\n-1.24316573e-01 1.55378118e-01 -2.40206271e-02 4.30340767e-01\\n-1.24636143e-01 3.93962950e-01 -2.61003356e-02 7.84785450e-02\\n-7.83978105e-02 6.78520948e-02 1.60332724e-01 1.56171434e-02\\n1.71123862e-01 2.25997478e-01 2.28904232e-01 4.57809508e-01\\n4.19697940e-01 4.20207202e-01 2.50340521e-01 1.02351159e-02\\n5.12344360e-01 5.60570955e-01 3.82814586e-01 5.80348261e-02\\n-1.36158187e-02 6.44954741e-02 2.43339259e-02 3.39429080e-02\\n3.61855984e-01 2.38496885e-01 7.39051476e-02 8.66282940e-01\\n3.72847259e-01 3.94555718e-01 7.58402288e-01 -5.22506416e-01\\n-3.68315160e-01 -9.77809355e-03 4.80227858e-01 -3.72988820e-01\\n-2.26168558e-02 4.76302467e-02 -1.46486595e-01 2.68404514e-01\\n-4.04040635e-01 -1.36018753e-01 -3.36954966e-02 5.21584116e-02\\n8.01622570e-02 -6.15493730e-02 -1.92121118e-01 -5.70904277e-02\\n-2.76259631e-01 -2.42562056e-01 -4.39272940e-01 -2.10140608e-02\\n-2.95146763e-01 -1.82361647e-01 -6.06999770e-02 -1.34291872e-01\\n-1.40891895e-01 -3.11350852e-01 -6.07098565e-02 -7.84874409e-02\\n2.48353630e-01 -2.02380747e-01 -1.92393035e-01 -1.98216036e-01\\n3.09174687e-01 1.87624231e-01 5.69564581e-01 3.12692448e-02\\n5.37515357e-02 -1.99505210e-01 -2.62128711e-01 5.34336045e-02\\n1.47601604e-01 6.16584383e-02 1.04133293e-01 2.15175718e-01\\n-3.02895337e-01 -1.61912888e-01 2.15130210e-01 2.95713663e-01\\n-4.23356444e-01 -7.45199993e-03 -3.20259519e-02 2.60154426e-01\\n9.83207449e-02 9.41179097e-02 -2.00363994e-01 1.09424725e-01\\n-1.80405974e-01 -6.02317691e-01 2.75040656e-01 -1.84674039e-02\\n-7.90801942e-02 -3.01857069e-02 2.44553834e-01 1.65890366e-01\\n-1.48469836e-01 -7.37166107e-02 -5.72709739e-03 1.91942930e-01\\n1.08315811e-01 3.56584936e-01 -2.70975500e-01 -3.18293184e-01\\n-2.75185645e-01 2.19380870e-01 -2.39802092e-01 7.16267228e-02\\n-7.55953044e-02 4.12379742e-01 2.35632937e-02 1.06797941e-01\\n3.06158900e-01 -2.49416716e-02 -1.43308297e-01 -2.47206077e-01\\n-1.26511961e-01 -2.64839530e-01 4.24703807e-02 -3.16180363e-02\\n1.42942041e-01 -3.56728315e-01 -1.51308179e-01 -2.08909661e-01\\n-9.97731909e-02 -2.28749037e-01 8.07694867e-02 4.54790238e-03]]',\n", + " 'job_description': 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer (100%) – Web and Data ScienceYour mission : The Distributed Information Systems Laboratory (LSIR) headed by Prof. Karl Aberer at EPFL in Lausanne is currently looking for a software engineer with experience in Web development and Data Science. If you are interested in being at the crossroad of Web technologies, Machine learning and Computational Journalism, this job is for you. You will join our research team. Our goal is to develop a web platform to collect news articles from all around the world and to analyze the media landscape in real-time. You will be in charge of the Web platform development and will help us integrating some of the algorithms developed by our researchers. Interest in the field of journalism is a plus. Main duties and responsibilities include : Participate in the development and optimization of the platform in close collaboration with research staff. Support research staff to the transition of research prototypes into production-grade software tools. Implement best practices for sustainable and maintainable software development. Your profile : Master’s degree in computer science or equivalent. Ideally, at least 2 years of experience in software development. Fluent English in speech and writing Skills required Experience in web application development (Full-stack). Expertise in Python. Experience in managing and processing large-scale datasets. Effective team player. Skills preferred Experience in front-end and with at least one Javascript framework (e.g., Node.js, React, or Angular). Experience with at least one Machine/Deep Learning framework (e.g., scikit-learn, PyTorch, or Tensorflow). Experience with at least one Natural Language Processing framework (e.g., SpaCy, NLTK). We offer : A young, dynamic and interdisciplinary team Collaboration with strategic external partners and with advanced scientists Start date : Immediatly Term of employment : Fixed-term (CDD) Duration : 1 year, renewable Contact : For additional information, please contact J. Rappaz: jeremie.rappaz@epfl.ch Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " 'soft_skills': '[\"Research\", \"Writing\", \"Team Effectiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Integration\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Real Time Data\", \"Tooling\", \"Natural Language Processing\", \"Sustainability\", \"Computer Science\", \"Collections\", \"Good Agricultural Practices\", \"Web Application Development\", \"Scikit-learn (Machine Learning Library)\", \"Educational Research\", \"Scale (Map)\", \"Landscaping\", \"Python (Programming Language)\", \"Node.js\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Machining\", \"Web Development\", \"Dataset\", \"Software Engineering\", \"React.js\", \"Data Science\", \"SpaCy (NLP Software)\", \"Therapeutic Support Staff\", \"TensorFlow\", \"Deep Learning\", \"JavaScript Frameworks\", \"NLTK (NLP Analysis)\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Digital Learning Technology\", \"Software Development\", \"Algorithms\", \"Additives\", \"PyTorch (Machine Learning Library)\", \"Journalism\", \"Web Platforms\", \"Information Systems\"]',\n", + " 'languages': \"['English', 'Czech', 'Akan', 'Wolof']\"},\n", + " {'company_id': '42',\n", + " 'job_title': 'data science course developer and instructor',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.31003404e-01 2.87446916e-01 4.94195759e-01 6.79244250e-02\\n5.64721525e-01 -1.02165639e-01 4.63781841e-02 4.17711139e-01\\n-7.86895026e-03 -1.81509703e-01 -1.69008210e-01 -1.56376541e-01\\n3.87024619e-02 9.05360281e-02 1.98915392e-01 4.50523078e-01\\n2.97633052e-01 -7.17932507e-02 -1.61911964e-01 3.28495532e-01\\n-1.14688650e-03 -7.13254437e-02 -6.84413910e-02 6.87404990e-01\\n4.78520870e-01 2.86109541e-02 -3.75124589e-02 1.10322885e-01\\n-1.47137582e-01 -2.81869173e-01 3.99212688e-01 3.04904729e-02\\n-1.61513850e-01 -2.38729075e-01 9.89310518e-02 2.52619147e-01\\n-2.68172622e-01 -4.40887362e-02 -6.21260703e-02 1.07455179e-01\\n-4.28696990e-01 -9.98428613e-02 -8.82593393e-02 -2.95048654e-02\\n-3.36095423e-01 -4.59531635e-01 1.23026274e-01 -1.03290364e-01\\n6.20834529e-04 3.56055982e-02 -5.44778466e-01 4.39761668e-01\\n-1.35730311e-01 -3.23014051e-01 3.48975986e-01 5.84638894e-01\\n7.79360309e-02 -5.13422489e-01 -3.21158171e-01 -3.31188142e-01\\n6.59009721e-03 5.93345836e-02 1.15059242e-01 -3.75322759e-01\\n4.96265441e-01 8.32695663e-02 -4.39235568e-02 3.97756755e-01\\n-7.78272510e-01 -2.35683382e-01 -3.41741920e-01 1.29232705e-01\\n-3.44521642e-01 2.37830169e-03 -3.91830802e-01 -2.45640427e-01\\n1.63414627e-02 3.84141773e-01 -6.83548227e-02 4.40262854e-02\\n-1.23958021e-01 2.64283866e-01 -1.14724994e-01 2.09460616e-01\\n3.27660590e-01 3.17478418e-01 2.95925975e-01 2.99240679e-01\\n-3.36664617e-01 3.62148643e-01 1.13312185e-01 -2.17115283e-01\\n1.24307819e-01 2.11683840e-01 4.31248993e-01 1.87687218e-01\\n1.50911048e-01 1.53862894e-01 -2.32318550e-01 1.65267810e-01\\n1.69952616e-01 -2.85433382e-01 1.50708668e-02 -2.91850828e-02\\n-6.49369285e-02 2.32493188e-02 4.04293649e-02 1.53170526e-01\\n-5.29954433e-01 4.79164362e-01 3.15189660e-02 -1.90203995e-01\\n-8.29056203e-02 -5.52888751e-01 -8.88060406e-02 1.47114713e-02\\n4.15727496e-02 2.62016594e-01 7.30043054e-02 3.13638538e-01\\n1.30986143e-02 -1.51458740e-01 2.40085617e-01 7.60027170e-01\\n-1.57077052e-02 1.18302830e-01 -1.73196539e-01 4.49522197e-01\\n4.53876257e-02 -3.54664773e-01 2.35938966e-01 1.83367893e-01\\n1.85337484e-01 -1.62932038e-01 -3.32049310e-01 2.12812752e-01\\n-1.30193219e-01 -3.13953817e-01 -3.05071682e-01 3.67583811e-01\\n-9.63264704e-02 -5.59503555e-01 5.49102426e-01 -1.52608782e-01\\n1.64712220e-01 -1.32861838e-01 -2.31593736e-02 3.95092741e-02\\n-1.56337053e-01 3.02273095e-01 1.50976658e-01 1.20659783e-01\\n-2.98055291e-01 -3.08659792e-01 -1.96123838e-01 2.65830427e-01\\n-3.97287637e-01 2.62330770e-01 -1.97699696e-01 -1.30176604e-01\\n2.88997024e-01 -6.02837205e-02 -4.32466149e-01 2.54582226e-01\\n-7.92892277e-02 -1.96949750e-01 -1.07964709e-01 3.17084491e-01\\n-1.42670602e-01 3.16312104e-01 -2.24624202e-03 -1.57518834e-01\\n4.68530953e-01 5.68536371e-02 1.38920397e-01 -1.02147304e-01\\n2.06417650e-01 -5.25677670e-03 2.32270628e-01 3.01019233e-02\\n-6.43658340e-01 4.09293622e-01 -1.09456345e-01 -2.97767371e-01\\n-4.08874303e-02 -1.50237292e-01 3.31880569e-01 -3.79536033e-01\\n4.65717167e-04 -1.45743906e-01 -3.56840432e-01 -3.50888908e-01\\n-2.01974750e-01 -1.14973783e-01 4.52212751e-01 -4.27399337e-01\\n9.45922360e-02 2.22599894e-01 -5.37195325e-01 -1.23387374e-01\\n2.97544003e-01 8.47045630e-02 6.77325875e-02 2.33672291e-01\\n-7.03923553e-02 -5.14224112e-01 -4.27636094e-02 -4.16508973e-01\\n-2.77256638e-01 7.71398544e-02 -3.21874738e-01 1.69385105e-01\\n1.93832219e-02 -1.50709487e-02 -9.84589159e-02 6.42232150e-02\\n-1.65622771e-01 4.97380123e-02 9.71125215e-02 -5.45912758e-02\\n2.30918497e-01 1.93136297e-02 -1.97713226e-01 4.39587384e-01\\n-2.11931899e-01 5.41410089e-01 1.45848036e-01 -8.10549021e-01\\n5.28569579e-01 2.77768672e-01 -4.51245718e-02 -2.41261035e-01\\n7.39533186e-01 -3.20774376e-01 -1.63611829e-01 1.56835362e-01\\n-4.16375458e-01 -3.16235721e-01 1.60609156e-01 -3.13360482e-01\\n-2.06963629e-01 6.12386465e-01 1.25713557e-01 2.32652530e-01\\n4.03849721e-01 -1.11201078e-01 -1.04214594e-01 2.36096784e-01\\n-2.40118563e-01 -2.02499196e-01 -4.21709120e-01 -7.41359293e-02\\n-7.04286620e-02 -4.49054301e-01 -3.17267209e-01 -4.42634791e-01\\n-2.91957378e-01 -3.96939814e-01 -6.42217696e-02 2.50998020e-01\\n2.07913980e-01 2.01460689e-01 1.54263079e-02 6.43064827e-02\\n-1.18345097e-01 -6.37192667e-01 -5.80030754e-02 -9.48312357e-02\\n2.17214629e-01 2.88922399e-01 1.09871648e-01 -2.80857608e-02\\n7.18850642e-02 5.33952177e-01 -4.43083733e-01 -3.52276981e-01\\n1.43731043e-01 -3.41168158e-02 -1.34080365e-01 -2.08319008e-01\\n1.28986448e-01 2.80030161e-01 -3.40612769e-01 9.30138007e-02\\n-1.54915869e-01 1.20617636e-01 3.02432775e-01 7.27178603e-02\\n-1.25599757e-01 -2.00926438e-01 -8.47024284e-03 3.65366161e-01\\n-4.12218034e-01 -3.61807942e-01 5.99732041e-01 7.80156255e-02\\n1.18444875e-01 4.18116376e-02 2.26424098e-01 -2.46811528e-02\\n-3.18066865e-01 -1.72062218e-01 1.90257668e-01 1.89887315e-01\\n1.10512070e-01 2.02621102e-01 -6.62798136e-02 -6.14492416e-01\\n-3.18385983e+00 -8.61737430e-02 -1.67051069e-02 -1.92723364e-01\\n2.39218771e-01 -1.29859582e-01 8.22698027e-02 -1.07965037e-01\\n-4.14822221e-01 -2.70293895e-02 -2.17805147e-01 -2.28288263e-01\\n8.19297358e-02 3.85564774e-01 2.39353925e-01 1.86116964e-01\\n8.12619403e-02 -3.68545115e-01 8.30439329e-02 4.98793602e-01\\n-9.36334580e-02 -7.01775908e-01 6.26224130e-02 6.69893250e-02\\n2.83887416e-01 3.23210418e-01 -5.26340306e-01 -2.38852426e-01\\n-3.12092900e-01 -2.80221283e-01 2.10756958e-01 -3.86381745e-01\\n-1.72962710e-01 4.48824584e-01 9.95500535e-02 4.05636504e-02\\n5.87340295e-02 -2.62101620e-01 -6.64476901e-02 -4.69732016e-01\\n-3.31405997e-02 -6.56451523e-01 -5.14652692e-02 -3.78488936e-02\\n6.86620593e-01 -2.11389363e-01 3.25228274e-01 5.51153086e-02\\n7.28892758e-02 1.39639884e-01 -2.61269584e-02 9.90545750e-02\\n-2.92601109e-01 -2.81413078e-01 -7.97173157e-02 -1.76129609e-01\\n5.94293475e-01 4.62888837e-01 -1.74475625e-01 -9.64998156e-02\\n2.02523828e-01 -2.70842910e-01 -5.52999735e-01 -4.25574601e-01\\n-2.45930806e-01 -1.98182940e-01 -7.88998723e-01 -5.10514379e-01\\n-5.61938658e-02 -1.18425049e-01 4.63105626e-02 4.43936169e-01\\n-3.89748812e-01 -1.80228293e-01 8.12264532e-03 -5.86206794e-01\\n2.84453034e-01 -1.44447714e-01 5.68003207e-02 -1.34094924e-01\\n-2.32928395e-01 -5.02791464e-01 7.84028023e-02 1.07144251e-01\\n-1.11958057e-01 -6.18842505e-02 1.16104342e-01 -2.17904970e-01\\n-3.98076981e-01 -6.96210086e-01 4.54196572e-01 1.61440179e-01\\n1.34510443e-01 1.35202885e-01 2.07859769e-01 7.85832107e-02\\n3.90064806e-01 2.54892502e-02 1.38828993e-01 -4.29984510e-01\\n2.47982219e-02 -3.06629743e-02 4.02588964e-01 -1.94618955e-01\\n-2.06989963e-02 6.78396598e-03 -2.51226455e-01 6.94036065e-03\\n4.17739093e-01 -9.44852158e-02 1.74487412e-01 -1.45302534e-01\\n1.39832675e-01 -2.54261374e-01 -1.97133183e-01 1.78750902e-01\\n-2.44119726e-02 6.37957454e-01 4.84285727e-02 -2.96111226e-01\\n-1.83989078e-01 4.06624973e-01 -1.03491440e-01 1.06324360e-01\\n-1.14361838e-01 1.07965115e-02 -1.13639295e-01 2.26097092e-01\\n6.32814690e-03 -2.29853064e-01 -1.67530030e-01 -1.03326030e-01\\n-1.67624801e-01 3.45799804e-01 3.06102186e-01 7.44168386e-02\\n-1.31888464e-01 -4.19050545e-01 6.11352101e-02 2.02490836e-01\\n2.27408141e-01 3.46232533e-01 2.17084378e-01 -2.62052476e-01\\n1.57809108e-01 2.41022632e-01 -2.24834099e-01 3.58709395e-01\\n-3.27698976e-01 1.40017599e-01 -4.59648341e-01 -3.53705525e-01\\n-1.59235373e-01 -3.21067572e-01 2.04159558e-01 3.19351524e-01\\n9.36602131e-02 -1.24226846e-01 1.36843532e-01 -5.41144371e-01\\n3.42686653e-01 2.55275778e-02 2.30696529e-01 7.25103468e-02\\n-1.55540816e-02 5.59400797e-01 -1.03322394e-01 -3.79271992e-02\\n-1.06634706e-01 4.86414880e-02 -2.10675210e-01 -3.90113890e-01\\n5.61406016e-02 -4.34974164e-01 -7.01125711e-02 3.43674898e-01\\n1.24531008e-01 -1.02742791e-01 -2.14574218e-01 1.47091269e-01\\n1.29260905e-02 -4.60658789e-01 -2.65020430e-01 1.03339208e-02\\n3.30072194e-01 2.72616327e-01 1.80884808e-01 -4.21812057e-01\\n-3.45458612e-02 1.31012034e-02 -3.48735079e-02 3.44659895e-01\\n8.04558992e-02 7.84783624e-03 -2.75114387e-01 -2.66711593e-01\\n4.26875234e-01 -7.12953135e-02 1.60423405e-02 1.33486569e-01\\n1.16424210e-01 -3.65866244e-01 -3.21741432e-01 1.17537603e-02\\n3.60114798e-02 -2.38814622e-01 3.28370482e-02 -2.55134702e-03\\n-4.12586592e-02 -1.92796066e-03 -5.01938939e-01 -1.73700452e-01\\n-2.62251377e-01 2.47539151e-02 -4.25445922e-02 -4.84438837e-01\\n-1.03477359e-01 -8.45399201e-02 -4.78408545e-01 3.24578911e-01\\n-7.54589364e-02 -4.08388488e-03 2.66001642e-01 6.85392320e-03\\n-2.75628924e-01 -1.97211534e-01 1.45273089e-01 1.68522149e-01\\n-3.61477971e-01 -1.93662807e-01 -1.88592784e-02 -9.13697183e-01\\n2.30780602e-01 7.34619796e-04 -1.30102113e-01 1.14888728e-01\\n9.00049880e-03 -6.27413511e-01 2.22236872e-01 -4.12425697e-01\\n-4.07999456e-02 -2.87149735e-02 -2.23103702e-01 -2.82468796e-01\\n6.39857650e-02 6.13548942e-02 -1.07640043e-01 4.35628623e-01\\n-4.00332510e-01 3.74657094e-01 8.19728971e-02 1.06386468e-02\\n-1.59918904e-01 -2.67904371e-01 5.36289960e-02 -2.39711642e-01\\n-3.67745280e-01 -1.97629690e-01 -1.61681235e-01 -1.51367560e-01\\n-1.62558127e-02 -3.10942918e-01 -1.54078826e-01 1.17232010e-01\\n2.54405946e-01 6.74248785e-02 -1.74289107e-01 -1.56861693e-01\\n9.81979668e-02 -3.45012128e-01 -5.12079746e-02 -2.54509568e-01\\n-1.13212653e-02 -2.04012573e-01 2.25431740e-01 5.33511117e-03\\n1.44774482e-01 -3.43914270e-01 4.25892055e-01 -3.54899168e-01\\n-3.81795228e-01 -3.53643000e-02 1.31507635e-01 -8.38504732e-02\\n2.15190947e-01 -4.23771977e-01 -5.41227385e-02 3.39055508e-01\\n-2.85973027e-02 -8.61832686e-03 2.21703887e-01 -2.31929719e-01\\n-2.18692869e-01 1.73777089e-01 -3.89788270e-01 1.94179967e-01\\n8.58984709e-01 2.69429833e-01 1.48479342e-01 1.45986468e-01\\n1.14385545e-01 3.34845066e-01 4.85574484e-01 -7.07897451e-03\\n-1.16384089e-01 3.96379948e-01 2.58972526e-01 -4.79876667e-01\\n-1.34310648e-01 6.23641536e-04 -1.68905511e-01 -2.82857746e-01\\n6.90891862e-01 2.92142093e-01 -2.81745821e-01 -4.34327185e-01\\n-1.75447688e-01 -2.91182548e-01 2.97718614e-01 3.33137065e-03\\n1.02814306e-02 -7.26098344e-02 4.79893923e-01 3.35310400e-03\\n1.25662729e-01 5.35032868e-01 -1.41155511e-01 -3.38911176e-01\\n8.04195926e-03 2.44172409e-01 4.27544042e-02 4.43400502e-01\\n-2.36339092e-01 4.19066727e-01 -7.80524313e-02 2.27583759e-03\\n1.07888654e-02 8.14306587e-02 3.95104021e-01 7.91760236e-02\\n2.06190109e-01 2.54388928e-01 4.74944651e-01 4.31850851e-01\\n1.58284724e-01 4.55922425e-01 2.55144954e-01 3.37174833e-02\\n3.56650561e-01 4.56913739e-01 3.33302408e-01 -3.67294401e-02\\n5.12746796e-02 3.48897129e-02 1.58293694e-01 1.08111128e-01\\n2.48586968e-01 2.12416649e-01 7.25527704e-02 9.13609803e-01\\n3.57241154e-01 3.72504264e-01 7.28808343e-01 -7.61793256e-01\\n-3.27026904e-01 5.32085150e-02 5.70715249e-01 -4.33401942e-01\\n1.28699243e-01 1.84380561e-01 -1.05722584e-01 2.93921590e-01\\n-5.10548830e-01 -2.21536309e-01 1.84942968e-04 2.96176821e-02\\n-1.20779239e-02 -9.69720483e-02 -1.42002270e-01 6.79766014e-02\\n-1.47011489e-01 -2.78763354e-01 -3.97299111e-01 -2.41472989e-01\\n-1.20626703e-01 -1.28143042e-01 -5.78667969e-02 7.42304139e-04\\n-2.61438608e-01 -1.76344335e-01 -1.73801705e-01 -1.02797128e-01\\n3.96288931e-01 -1.09615475e-01 -1.73398629e-01 -7.74025172e-02\\n4.07509685e-01 1.36152208e-01 6.84605718e-01 -6.96344748e-02\\n5.31440899e-02 -8.30524415e-02 -2.20333874e-01 5.32005429e-02\\n7.67487437e-02 1.05184637e-01 8.83577615e-02 3.42193663e-01\\n-2.16098249e-01 -2.27679521e-01 1.33761302e-01 2.99429834e-01\\n-3.77693832e-01 -9.13020372e-02 -2.64691301e-02 1.78979427e-01\\n-4.85778861e-02 1.48235008e-01 -2.30030924e-01 1.14248127e-01\\n-9.73087400e-02 -6.75089240e-01 2.55484819e-01 -4.51960899e-02\\n-1.62146091e-01 2.38817662e-01 2.58304209e-01 3.01353931e-01\\n-9.96685475e-02 -5.06766327e-02 -1.98560376e-02 1.02724440e-01\\n8.07037354e-02 3.17278266e-01 -1.60176188e-01 -3.63899529e-01\\n-2.77845025e-01 1.61062956e-01 -1.36460155e-01 1.73935249e-01\\n-1.15606241e-01 3.75124216e-01 8.20528418e-02 2.34001011e-01\\n3.11237812e-01 2.16130167e-03 -2.31036037e-01 -2.60388970e-01\\n-2.55011141e-01 -2.74485201e-01 -9.32161957e-02 2.63668932e-02\\n1.97524130e-01 -2.90817380e-01 -2.17477620e-01 -4.10406113e-01\\n-8.84455368e-02 -3.03146005e-01 -1.63367447e-02 2.11844333e-02]]',\n", + " 'job_description': 'The EPFL Extension School is looking for a Data Science Course Developer and Instructor to join our team. Here’s what you’ll get to do in this role: Develop data science and advanced analytics activities, including applications of mathematical modeling, statistical analysis and machine learning techniques (through exercises, public posts, capstone project guidance); Guide learners in acquiring hands-on data science experience using Python (NumPy, Pandas, Scipy, Scikit-Learn, Matplotlib, Seaborn); Apply technical expertise and leadership skills to design, develop, manage and grade learner projects using real-world large datasets and relational databases; Design and lead workshops and hackathons, and participate in conferences to promote the EPFL Extension School, data science and digital skills to a wide audience; Collaborate with partners from academia and the private sector to identify opportunities for development of new courses and workshops as well as learner course projects and capstone projects; Manage additional course development and other activities to support the growth of the EPFL Extension School The audience for the EPFL Extension School courses extends to a large, general public and the knowledge level of the learners will range from novice (no prior experience with Python and/or in data science) to intermediate (strong familiarity, possibly but not necessarily university or post-graduate level knowledge) to advanced (practitioners in the field, seeking to learn specific skills). The course developer should be able to adapt his/her approach and output accordingly. We expect a solid, demonstrable and practical background in all domains of data science relevant to beginner- and intermediate-level learners. In particular, we expect you to be have extensive hands-on experience with the most common tools, methods, and applications of all stages of the data science pipeline (i.e. data mining, data cleaning, data analysis, data visualisation), using Python. You will have advanced knowledge of Python and all relevant data science libraries. You will also have a proven ability to explain basic and difficult concepts in data/data science clearly and effectively to a wide audience. The ideal candidate also has experience with a variety of methods / models / tools relevant to data analytics, statistics and/or machine learning. Additional required qualifications: Background in computer science, data science, statistics, the physical sciences or other quantitative field (academic or equivalent professional experience); Previous experience with data science projects; Previous teaching/TA experience; Excellent communications and relationship management / « people » skills; Excellent written verbal presentation skills and the ability to communicate both to business and technical audiences, with a wide variety of skills / skill levels; Strong organisational skills; Good team player; Self-starter, capable of autonomous time management and work; Ability to rapidly and independently acquire new skills Fluent English, both written and spoken; Comfortable with developer tools: git, the command line, code editors, etc.; Previous experience in time series analysis, natural language processing, or advanced statistics a plus; Start-up experience a plus.',\n", + " 'soft_skills': '[\"Leadership\", \"Adaptability\", \"Professionalism\", \"Collaboration\", \"Self Starter\", \"Management\", \"Communications\", \"Presentations\", \"Teaching\", \"Time Management\", \"Relationship Management\"]',\n", + " 'hard_skills': '[\"Matplotlib\", \"Tooling\", \"Qualitative Data Analysis\", \"Natural Language Processing\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Physical Science\", \"Scikit-learn (Machine Learning Library)\", \"Staging\", \"Activism\", \"NumPy\", \"Apex Data Loader\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Levelling\", \"Course Development\", \"Library\", \"Apple Developer Tools\", \"Dataset\", \"Line Coding (Telecommunication)\", \"Pipelining\", \"Alexa Skills Kit\", \"Code Editor\", \"Data Science\", \"Time Series\", \"Cleaned Data\", \"Management Development\", \"Relational Databases\", \"Mathematical Modeling\", \"Additives\", \"Command-Line Interface\", \"Git Flow\", \"SciPy\", \"Digital Skills\", \"Pandas (Python Package)\", \"Seaborn\"]',\n", + " 'languages': \"['English', 'Dutch', 'Volapük']\"},\n", + " {'company_id': '38',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.03343868e-01 2.30763748e-01 5.38993478e-01 4.34119478e-02\\n5.34979820e-01 -3.87130156e-02 -4.73924242e-02 2.99967110e-01\\n5.45151979e-02 -4.72891748e-01 -3.38513441e-02 -2.34363019e-01\\n-3.71357948e-02 1.22097448e-01 2.06475183e-01 5.27176976e-01\\n2.40563542e-01 1.57984551e-02 -9.60903391e-02 4.04276520e-01\\n1.24177679e-01 -1.25039771e-01 1.65932745e-01 7.62462139e-01\\n5.29685259e-01 -8.97750445e-03 -1.24191806e-01 -4.64070216e-02\\n-2.87370294e-01 -2.17502296e-01 5.09112000e-01 -1.38884196e-02\\n-1.59409046e-01 -2.75068492e-01 9.88993719e-02 1.18097454e-01\\n-2.40171224e-01 -1.03529440e-02 -4.62151542e-02 1.98938057e-01\\n-5.37210405e-01 -1.83637619e-01 -1.04602285e-01 -1.73897892e-02\\n-2.81807959e-01 -3.76029849e-01 -1.03991032e-02 -7.30309933e-02\\n4.46095839e-02 9.46762040e-02 -5.20715833e-01 3.41190279e-01\\n-1.78565487e-01 -2.86245823e-01 1.94672897e-01 7.81848311e-01\\n-6.73715547e-02 -4.83343661e-01 -5.43830872e-01 -3.55475992e-01\\n6.82389885e-02 -1.03316627e-01 1.20132297e-01 -3.13315928e-01\\n2.56372482e-01 -7.92228281e-02 -3.25507075e-02 2.17792124e-01\\n-7.56444931e-01 -1.46264017e-01 -2.32868388e-01 1.22063048e-01\\n-3.37095857e-01 6.25872314e-02 -3.81291270e-01 -9.43925902e-02\\n-9.64849815e-02 4.85821396e-01 8.87235813e-03 3.02395243e-02\\n-2.51084000e-01 2.62842774e-01 -1.56530038e-01 2.78546005e-01\\n1.88077927e-01 2.25880608e-01 2.82864809e-01 4.12221372e-01\\n-3.45938176e-01 3.23628724e-01 1.46459535e-01 -3.64160955e-01\\n2.53715008e-01 1.53682172e-01 4.33273703e-01 9.38322768e-03\\n1.52849674e-01 7.00151250e-02 -2.55638897e-01 2.77255595e-01\\n2.14355350e-01 -4.02089208e-01 1.07306987e-01 -1.08542912e-01\\n4.83603477e-02 -3.14614624e-02 8.09155032e-02 1.45625159e-01\\n-3.34811091e-01 3.45012963e-01 9.47378501e-02 -1.91496909e-01\\n-1.03878319e-01 -5.78423202e-01 2.09226320e-03 6.21747449e-02\\n1.69600055e-01 3.47162873e-01 1.45100474e-01 1.73138872e-01\\n1.79351330e-01 -3.73074263e-02 2.26460546e-01 7.75896430e-01\\n-5.87454215e-02 1.09416865e-01 -2.26481706e-01 2.88228422e-01\\n1.37839764e-01 -3.48483711e-01 2.24569038e-01 1.06233917e-01\\n-9.72716063e-02 -1.62953645e-01 -2.27057829e-01 2.29367316e-01\\n-1.48686722e-01 -3.13442111e-01 -2.09349230e-01 2.24907875e-01\\n1.07625842e-01 -3.90913725e-01 6.48622394e-01 -2.25769859e-02\\n1.28989398e-01 -1.60373926e-01 -1.19314983e-01 -1.03887036e-01\\n-6.55472353e-02 2.31716350e-01 9.95418355e-02 1.43068016e-01\\n-2.36593410e-01 -2.74164379e-01 -1.92878976e-01 9.17827189e-02\\n-5.07121801e-01 1.41971961e-01 -1.28286719e-01 -5.80766685e-02\\n2.16732055e-01 1.30471557e-01 -3.74847740e-01 1.70343876e-01\\n-1.88910753e-01 -1.12336844e-01 4.73561250e-02 3.87542367e-01\\n-3.26294988e-01 2.43841320e-01 6.55612256e-03 -1.10927440e-01\\n6.92139864e-01 2.11853623e-01 2.66393989e-01 2.04083491e-02\\n2.68992305e-01 -7.00954795e-02 8.40476602e-02 1.90958872e-01\\n-5.65881014e-01 2.81723291e-01 -1.62538618e-01 -2.79493868e-01\\n1.63718700e-01 -9.16426331e-02 4.11607772e-01 -3.17451298e-01\\n-7.04959966e-03 -1.48183599e-01 -2.82437176e-01 -3.07242721e-01\\n-1.23239353e-01 -4.47026864e-02 3.73835117e-01 -4.41698372e-01\\n-1.04132816e-02 2.62968272e-01 -4.99885499e-01 -1.78865910e-01\\n1.24962807e-01 1.68164492e-01 2.20379427e-01 1.63153321e-01\\n-1.49005428e-01 -5.92436850e-01 1.52511112e-02 -4.19609368e-01\\n-2.74719924e-01 5.10507487e-02 -3.20439607e-01 1.53898492e-01\\n2.49173902e-02 1.21990308e-01 -9.90692154e-02 7.39639346e-03\\n-1.45518035e-01 -2.58275270e-02 5.90835735e-02 8.38483572e-02\\n3.89136314e-01 8.13181847e-02 -4.09939945e-01 4.84633327e-01\\n-2.12312192e-01 6.25264525e-01 1.24346152e-01 -9.80473638e-01\\n6.03938639e-01 2.57790625e-01 -7.54845962e-02 -2.96940148e-01\\n4.95682538e-01 -3.28293592e-01 -2.50406321e-02 1.40372217e-01\\n-3.13391507e-01 -2.89684147e-01 2.86162943e-01 -2.45242536e-01\\n-2.09089339e-01 4.86634016e-01 1.18346840e-01 1.36726320e-01\\n2.51162916e-01 -2.08349466e-01 -1.09957770e-01 -1.47282276e-02\\n-6.36356100e-02 -1.83957636e-01 -6.79240525e-01 1.62515659e-02\\n-2.06544250e-01 -4.28036094e-01 -8.14266726e-02 -3.42492938e-01\\n-1.99275434e-01 -4.22752440e-01 -7.85707012e-02 1.07396990e-01\\n2.85738617e-01 4.50169966e-02 -6.88309968e-02 -1.73347015e-02\\n-9.23098624e-03 -6.72113478e-01 -9.80941206e-02 1.58549115e-01\\n4.23470438e-01 2.36782342e-01 1.86994627e-01 -4.48385850e-02\\n1.52598917e-01 5.64646721e-01 -2.90545642e-01 -2.69818246e-01\\n2.44540215e-01 7.58445039e-02 -4.31387424e-02 -1.99641079e-01\\n1.43902540e-01 1.33284569e-01 -2.58983791e-01 1.82899870e-02\\n-2.67209746e-02 -1.08145542e-01 4.16582584e-01 -6.53029829e-02\\n-1.60018533e-01 -1.34350806e-01 -8.05444196e-02 1.10381968e-01\\n-5.20404458e-01 -2.84330100e-01 5.72608829e-01 1.55429363e-01\\n1.86988324e-01 1.18153542e-01 1.17237493e-01 -1.54355513e-02\\n-2.30902433e-01 -2.05100387e-01 2.86329567e-01 1.00271851e-01\\n1.55057907e-01 1.26079127e-01 1.06383944e-02 -7.20139861e-01\\n-3.44800234e+00 -1.82609260e-01 4.30243351e-02 -1.96099296e-01\\n1.95774332e-01 -1.48200765e-01 5.49846441e-02 -2.05202941e-02\\n-3.28661978e-01 -6.08064514e-03 -1.72436684e-01 -1.58486858e-01\\n3.62683386e-02 1.83919847e-01 1.77659392e-01 2.68530309e-01\\n1.29694968e-01 -2.15548575e-01 -5.68717271e-02 4.37355548e-01\\n-1.49075866e-01 -6.16673946e-01 1.91888273e-01 1.10642478e-01\\n2.67340422e-01 2.81551063e-01 -4.76889908e-01 -5.68605810e-02\\n-2.46072859e-01 -1.89359590e-01 8.92390236e-02 -2.98651874e-01\\n-3.07158023e-01 2.21285135e-01 1.28742963e-01 -9.79780592e-03\\n6.51369542e-02 -4.29293752e-01 -1.93411380e-01 -3.96880031e-01\\n7.00733140e-02 -6.37853026e-01 -5.56009859e-02 -2.32573241e-01\\n6.48625255e-01 -2.07555249e-01 2.29414165e-01 9.05872881e-03\\n1.34549215e-01 4.07421812e-02 1.09364912e-02 4.42888215e-03\\n-1.85166627e-01 -2.84320414e-01 -5.82451448e-02 -1.26468763e-01\\n5.89282155e-01 3.98808688e-01 -6.92917481e-02 -4.39435914e-02\\n1.47232845e-01 -2.30870485e-01 -5.42497396e-01 -2.31308341e-01\\n-1.60647899e-01 -1.15518063e-01 -5.98265529e-01 -3.24230373e-01\\n-1.47600383e-01 -2.45622486e-01 -1.31393686e-01 6.13225281e-01\\n-2.78479934e-01 -2.55971283e-01 -1.35177180e-01 -4.87251073e-01\\n2.98640102e-01 -2.43487999e-01 1.75515171e-02 -2.28454083e-01\\n-3.08400631e-01 -4.75210547e-01 1.01907417e-01 5.80981225e-02\\n-1.68490678e-01 -1.61768049e-01 6.26888312e-03 -1.62818938e-01\\n-3.71261150e-01 -5.65067768e-01 3.76451552e-01 5.54502234e-02\\n2.87895203e-01 6.31127357e-02 4.25403416e-01 -8.10361207e-02\\n3.75872374e-01 -3.48828770e-02 -1.11873597e-02 -3.89423788e-01\\n1.18140824e-01 9.08161998e-02 5.27094364e-01 -2.68927664e-01\\n1.90385170e-02 -3.35797668e-05 -2.53355294e-01 1.25018701e-01\\n4.00337219e-01 -5.45716584e-02 7.79160485e-02 -2.56094635e-02\\n2.34904900e-01 -2.86127806e-01 -7.24384040e-02 8.38469863e-02\\n5.98106235e-02 7.43247092e-01 -6.52511939e-02 -3.21561068e-01\\n-1.81491941e-01 3.96404177e-01 -7.91395307e-02 1.20543212e-01\\n-2.03741252e-01 5.26347756e-02 -2.22391814e-01 3.08321863e-01\\n1.28396992e-02 -2.62069553e-01 -1.93990469e-01 -1.79392695e-01\\n-1.71351105e-01 3.48474145e-01 2.73936212e-01 7.98977241e-02\\n-4.12340909e-02 -3.73255998e-01 -9.65191200e-02 2.32484221e-01\\n2.36619368e-01 4.33709383e-01 1.66129589e-01 -2.33165488e-01\\n-6.02655485e-02 3.04455936e-01 -3.14703584e-01 2.45226040e-01\\n-2.79060721e-01 1.51490450e-01 -5.53827107e-01 -3.14107418e-01\\n-2.38843292e-01 -4.02781725e-01 2.66242951e-01 4.66194034e-01\\n2.34550923e-01 -3.20919603e-02 3.68824936e-02 -4.01094377e-01\\n2.46412605e-01 1.23772793e-01 1.39846355e-01 1.02486245e-01\\n-5.85739538e-02 6.21647954e-01 -3.02647129e-02 -6.69649988e-02\\n6.69175200e-03 -2.60228328e-02 -2.16520414e-01 -2.27943569e-01\\n1.20660909e-01 -4.60824877e-01 -2.15061098e-01 3.52002770e-01\\n1.62245959e-01 -2.07402229e-01 -2.13199899e-01 2.96611488e-01\\n1.54158995e-02 -3.48368824e-01 -1.56249791e-01 3.02210450e-02\\n3.39117289e-01 1.60919815e-01 4.06444311e-01 -4.95779157e-01\\n4.41726949e-03 -6.86247349e-02 -6.38718531e-02 3.20025444e-01\\n6.74214959e-02 1.46527588e-01 -2.14669406e-01 -1.43222302e-01\\n5.86831510e-01 -8.58149454e-02 -1.09388560e-01 1.20669849e-01\\n6.21372685e-02 -2.31922582e-01 -4.20078635e-01 1.10732280e-01\\n2.08665319e-02 -2.74237394e-01 -8.93482864e-02 1.23018801e-01\\n1.33224249e-01 7.95503706e-03 -6.00904703e-01 -1.77618414e-01\\n-2.46541262e-01 -1.24588655e-02 6.86416253e-02 -5.38020313e-01\\n-1.23260379e-01 -1.48033977e-01 -5.83821714e-01 1.96651459e-01\\n-4.02568281e-02 -1.76495910e-01 1.91098973e-01 -1.31880408e-02\\n-1.61894828e-01 -1.07534558e-01 3.25636789e-02 2.03372359e-01\\n-3.55641127e-01 -2.94837594e-01 4.73181531e-02 -1.00536239e+00\\n1.54831737e-01 2.31558830e-01 -2.15233818e-01 1.73128635e-01\\n-1.30525738e-01 -7.24637866e-01 2.07911938e-01 -3.98372769e-01\\n-1.35630697e-01 -1.97347388e-01 -2.23729491e-01 -3.53678495e-01\\n1.29845485e-01 2.77230814e-02 -3.50977927e-01 3.65032017e-01\\n-2.00580746e-01 3.48097801e-01 -6.32193238e-02 3.48044410e-02\\n8.07574913e-02 -2.04395056e-01 1.29091650e-01 -1.71415567e-01\\n-3.61894071e-01 -2.25210398e-01 -3.50763321e-01 -3.31488639e-01\\n-4.83489297e-02 -3.56270432e-01 -1.22437119e-01 1.23067573e-01\\n3.67484093e-01 1.23033345e-01 -1.08701333e-01 -2.82381922e-01\\n5.29918894e-02 -4.41964149e-01 2.59627029e-03 -8.37394819e-02\\n-1.12422422e-01 -1.03708744e-01 2.01126456e-01 1.30498931e-01\\n2.22310692e-01 -3.30033958e-01 5.16164184e-01 -3.22866023e-01\\n-2.88791299e-01 -1.13699548e-01 7.13948980e-02 -2.86400691e-02\\n3.49663764e-01 -3.80113661e-01 -1.22857526e-01 3.57985884e-01\\n5.56704886e-02 1.17764287e-01 2.28677183e-01 -1.25039518e-01\\n-1.44594312e-01 2.08710432e-01 -3.47990990e-01 1.46066338e-01\\n8.58892322e-01 1.94254965e-01 4.54286672e-03 1.63686037e-01\\n1.82376876e-01 2.70020843e-01 4.68955785e-01 -6.62302226e-02\\n-1.05469622e-01 2.50506431e-01 2.16680951e-03 -5.09775877e-01\\n4.29906361e-02 -9.70313475e-02 -1.44155771e-01 -4.28741783e-01\\n6.95365906e-01 2.81730115e-01 -3.87791812e-01 -2.00902045e-01\\n-1.25765711e-01 -1.32133171e-01 3.21253628e-01 1.71411373e-02\\n-4.07167748e-02 -1.88163556e-02 4.65991288e-01 -1.06553853e-01\\n2.35197514e-01 5.22611737e-01 -7.12134838e-02 -1.95413053e-01\\n-5.78605980e-02 2.71702111e-01 1.15357876e-01 5.55390179e-01\\n-2.26667404e-01 3.05121839e-01 -2.77492907e-02 1.14857983e-02\\n-1.45579338e-01 4.80127484e-02 2.20011339e-01 1.41912729e-01\\n1.88839644e-01 1.57106966e-01 4.43282783e-01 4.10943627e-01\\n2.02149630e-01 3.39008719e-01 3.82430017e-01 2.48419587e-03\\n3.67669463e-01 5.26082754e-01 3.51263911e-01 1.82386249e-01\\n7.02510402e-02 1.87211633e-01 1.64228886e-01 -2.75378507e-02\\n3.37155372e-01 3.99722606e-01 1.72077432e-01 7.55692363e-01\\n2.10361362e-01 3.92354727e-01 7.19956040e-01 -6.97514713e-01\\n-3.52785289e-01 5.96530624e-02 5.91005683e-01 -3.72862190e-01\\n6.57504946e-02 2.13819697e-01 -1.45916030e-01 2.33916909e-01\\n-6.23194933e-01 -2.83223033e-01 -7.62025416e-02 8.73444602e-02\\n-7.09280074e-02 -2.69449949e-01 -2.40030959e-01 2.17971206e-01\\n-3.53029743e-02 -1.22371718e-01 -3.37026238e-01 -1.70222163e-01\\n-1.27067745e-01 -6.04245439e-02 -7.36331865e-02 -2.87338793e-02\\n-1.31561309e-01 -2.19521314e-01 -7.96688497e-02 -1.25363886e-01\\n3.39101136e-01 -1.01144299e-01 -9.03323740e-02 -8.32718685e-02\\n2.82446116e-01 1.32077485e-01 4.87239152e-01 -7.30038062e-03\\n1.78945690e-01 -2.17060119e-01 -1.62933826e-01 1.06201150e-01\\n2.20534787e-01 -1.87682062e-02 1.15030715e-02 3.27968180e-01\\n-2.92840838e-01 -2.74773717e-01 1.22440085e-01 1.99164167e-01\\n-3.87138903e-01 -2.13555619e-02 -9.11058486e-02 1.97499231e-01\\n4.55599390e-02 2.95288444e-01 -2.16878295e-01 -2.00727303e-02\\n-8.38285685e-02 -5.03587782e-01 2.03642949e-01 2.16289982e-03\\n-2.94709623e-01 -1.47831887e-02 3.58099073e-01 1.31506920e-01\\n-3.29994977e-01 -2.94567980e-02 -1.17542207e-01 6.90163970e-02\\n8.11603814e-02 2.86071718e-01 -1.23395130e-01 -3.46197993e-01\\n-2.84858912e-01 1.57085583e-01 -2.50125080e-02 1.50009379e-01\\n4.36485000e-02 4.55555677e-01 -2.82361582e-02 1.96897149e-01\\n3.77941638e-01 1.08558245e-01 -2.24067509e-01 -2.88678646e-01\\n-2.03996092e-01 -1.60455674e-01 -1.09643020e-01 -8.79208148e-02\\n8.09622258e-02 -3.78949165e-01 -9.10735503e-02 -1.95933908e-01\\n-1.41849011e-01 -4.18155074e-01 7.02059418e-02 -8.77872258e-02]]',\n", + " 'job_description': 'Are you curious, confident and would you like to be part of creating a new data platform from start? Furthermore, do you want to work with world’s biggest Language Company in the world? Then please read on! We are looking for a Data Scientist to be based in our headquarters in Zurich, Switzerland. EF International Language Campuses is building a new data platform and is looking for new T-profiles, combining general and in-depth technology skills, to join the team to build the future of data processing at EF. The role Work with large complex data sets to solve difficult, non-routine analysis problems applying advanced analytical methods as needed Conduct end-to-end analysis including data gathering and requirements specification, processing, analysis, ongoing deliverables and presentations Make business recommendations with effective presentations of findings at multiple levels of stakeholders through use of visual displays of quantitative information Collaborate with business customers to understand needs, recommend strategy enhancements and deploy predictive analytics across multiple platforms Develop, consult on, deploy and analyse testing strategies to leverage learnings for future business endeavours Present technical issues to non-technical audiences You will work in a highly international company with development offices in Zurich, London, Shanghai, Boston and Bangalore Your profile You are curious and want to stay on top of new technologies You have an entrepreneurial drive and focus on progress and results You are a team-player and have an agile mind-set You are hands-on with an attention to details and quality Requirements Bachelor / Master / PhD degree in Math, Statistics, Physics, CS, or other quantitative disciplines Experience articulating business questions, using mathematical techniques to arrive at an answer using available data, and translating technical/analysis results into business recommendations Extensive experience with programming/analytical tools (Python, R, Julia, etc.) Experience cleaning and processing data (structured, unstructured) Experience with data visualization tools (Qlik, PowerBI, D3, etc.) Experience with data querying tools (SQL, DB2, Hive, Pig etc.) Excellent communication (written and verbal), presentation, and facilitation skills Ability to manage multiple goals and deadlines Fluency English About Us EF Education First is a global education company focusing on language, academic, cultural exchange, and educational travel programs. We are 52,000 staff, faculty and teachers, working in over 612 offices and schools across 52 countries, and having a global presence in 116 countries. While we continue to grow, we strive to stay small so as to ensure agility, smart thinking and a fun place to work. For the past 53 years, EF has grown to include a range of programs that give students of all ages the freedom and confidence to explore the world through language, travel and education. EF is committed to safeguarding and promoting the welfare of children and young adults and expects all staff and volunteers to share this commitment. References will be followed up and will ask specifically whether there is any reason that the applicant should not be engaged in situations where they have responsibility for, or substantial access to, persons under 18. Upon interview all gaps in CVs must be explained satisfactorily and proof of identity and, where applicable, qualifications will be required. Appropriate suitability checks and Garda Vetting will be conducted prior to confirmation of appointment.',\n", + " 'soft_skills': '[\"Collaboration\", \"Management\", \"Articulation\", \"Presentations\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Julia (Programming Language)\", \"Tooling\", \"Agility\", \"Programming (Music)\", \"Analytics\", \"Scholastic READ 180\", \"Visualization\", \"Requirements Specifications\", \"Python (Programming Language)\", \"Levelling\", \"D3.js\", \"Test Strategy\", \"Process Analysis\", \"DB2 SQL\", \"Technical Translation\", \"Data Visualization\", \"Apache Hive\", \"Personalization\", \"Cultural Exchange\", \"R (Programming Language)\", \"Young Adult Literature\", \"Electronic Data Processing\", \"Statistical Physics\", \"Technical Analysis\", \"Data Structures\", \"Predictive Analytics\", \"Data Management Platforms\", \"Data Processing\"]',\n", + " 'languages': \"['English', 'Tigrinya']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'backend software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.96146512e-01 2.25685984e-01 3.81386131e-01 6.31073164e-03\\n5.44051468e-01 -2.66359210e-01 9.79871210e-03 3.68729413e-01\\n-2.57958770e-01 -3.63048911e-01 -4.27846722e-02 -2.44650826e-01\\n-1.89992860e-01 7.98621103e-02 1.31351292e-01 3.88559461e-01\\n2.86206812e-01 1.14335604e-01 -2.94916004e-01 3.70017171e-01\\n5.59200607e-02 -2.97922634e-06 -3.94451544e-02 7.66554117e-01\\n3.45010400e-01 -1.57250445e-02 -1.05865642e-01 4.27433215e-02\\n-2.50761896e-01 -2.51972258e-01 3.91722500e-01 9.16388854e-02\\n-6.79150671e-02 -2.71345764e-01 7.47358724e-02 2.99406657e-03\\n-1.73540786e-01 3.67118083e-02 -3.28949690e-02 1.02406882e-01\\n-3.89293969e-01 -3.86299521e-01 -1.31230317e-02 8.90230536e-02\\n-2.07433581e-01 -2.27711007e-01 6.55482039e-02 -6.68610036e-02\\n9.57257301e-02 -3.67352106e-02 -5.76359332e-01 3.58721346e-01\\n-3.02708954e-01 -2.23158300e-01 3.07890981e-01 4.61729437e-01\\n8.36970378e-03 -5.25690913e-01 -3.13287854e-01 -2.96148419e-01\\n-6.46865815e-02 -2.27823809e-01 6.36532456e-02 -2.82713115e-01\\n2.77987897e-01 -6.69266284e-02 1.76805593e-02 3.48076642e-01\\n-8.05531442e-01 -1.11406527e-01 -2.55701691e-01 -1.67581066e-02\\n-3.27168614e-01 -1.13382816e-01 -2.97376007e-01 -8.67974013e-02\\n-2.49279151e-03 2.98043609e-01 2.22778530e-03 4.50644307e-02\\n-1.84759200e-01 3.27564687e-01 -8.17147568e-02 1.87909037e-01\\n2.71823198e-01 1.37041613e-01 1.96846083e-01 3.55800182e-01\\n-3.99252176e-01 4.74914730e-01 6.22444972e-02 -2.50799268e-01\\n2.52674788e-01 1.17200777e-01 5.10781288e-01 7.12232888e-02\\n-1.94422137e-02 1.98808089e-01 -2.40859404e-01 1.83766812e-01\\n1.71783924e-01 -3.66276562e-01 7.25136651e-03 -1.45601839e-01\\n-1.04529589e-01 6.37285784e-02 9.36795250e-02 3.36586028e-01\\n-2.25237370e-01 4.13727045e-01 2.51422554e-01 -1.96289316e-01\\n-6.28880039e-02 -4.50352252e-01 -1.46044105e-01 -5.16299391e-03\\n-1.47846431e-01 1.73527420e-01 3.10440302e-01 1.35391027e-01\\n2.32913375e-01 5.63149787e-02 2.12322995e-01 1.00176609e+00\\n-5.54031990e-02 7.29359314e-02 -2.05411926e-01 2.46166497e-01\\n2.39893049e-01 -2.51254976e-01 1.67283967e-01 3.81592065e-01\\n1.24794915e-01 -2.59980410e-02 -2.27838188e-01 4.07280207e-01\\n-2.19630346e-01 9.61505715e-03 -4.11413938e-01 1.15846552e-01\\n-1.34364828e-01 -4.82871950e-01 6.40055299e-01 2.36462861e-01\\n2.59038001e-01 1.04006231e-01 5.25620468e-02 -1.34524792e-01\\n-5.92462122e-02 2.71504462e-01 5.36241904e-02 2.06059739e-01\\n-3.08684468e-01 -1.45982787e-01 -1.20966882e-01 2.70433098e-01\\n-2.19325796e-01 6.27185628e-02 -9.34070647e-02 -9.61261839e-02\\n2.77041972e-01 1.88584568e-03 -3.76766801e-01 1.64261207e-01\\n-1.43390864e-01 -2.16381237e-01 -1.38773814e-01 3.73514354e-01\\n-2.87047643e-02 2.76391625e-01 3.41875032e-02 -5.18735051e-02\\n5.54426432e-01 1.27705857e-01 8.06537420e-02 -5.00559509e-02\\n2.73152024e-01 -1.25188500e-01 2.98683941e-01 1.25220373e-01\\n-6.48123622e-01 2.48765215e-01 4.50515142e-03 -1.50381878e-01\\n4.97784019e-02 1.08504236e-01 2.25529596e-01 -3.15021932e-01\\n-1.19738221e-01 -1.59779355e-01 -3.98117065e-01 -2.34913692e-01\\n-3.39261681e-01 1.02690987e-01 3.87645006e-01 -2.83121347e-01\\n-2.73953099e-02 3.61904688e-02 -4.11414802e-01 -1.12460248e-01\\n1.21409439e-01 2.20011428e-01 -7.40451680e-04 9.41236019e-02\\n-5.17403968e-02 -6.24350309e-01 -3.07392571e-02 -5.67003191e-01\\n-6.13892853e-01 6.51752353e-02 -3.42500508e-01 2.11026967e-01\\n-2.21276321e-02 6.84335306e-02 -1.22847997e-01 2.22263083e-01\\n-2.89490104e-01 1.62976068e-02 1.55959263e-01 1.54940382e-01\\n1.63378343e-01 -5.18211611e-02 -5.00666440e-01 4.99712616e-01\\n-2.51869828e-01 5.72678685e-01 2.04769090e-01 -7.59468317e-01\\n6.22770548e-01 2.10076243e-01 -1.54065583e-02 -4.32466447e-01\\n4.36771423e-01 -3.70565772e-01 -5.43131083e-02 6.75043166e-02\\n-2.75733978e-01 -2.70287097e-01 3.29187512e-01 -2.45832354e-01\\n-3.28681290e-01 5.30238688e-01 1.78291693e-01 4.64592949e-02\\n2.40959570e-01 -3.21133345e-01 -7.51918852e-02 1.33497074e-01\\n-6.52342066e-02 -1.81331709e-01 -3.61952662e-01 1.13359563e-01\\n-1.38990909e-01 -5.04113317e-01 -1.07806183e-01 -4.39256847e-01\\n-1.59562483e-01 -3.12495440e-01 -2.96111971e-01 4.28421110e-01\\n1.62175849e-01 1.31733015e-01 9.25084502e-02 -7.87500571e-03\\n-1.09921664e-01 -7.13658750e-01 -9.95457917e-02 8.01472589e-02\\n5.26105702e-01 1.61516771e-01 2.26015765e-02 -5.90045042e-02\\n-1.09903337e-02 4.90845084e-01 -3.22321862e-01 -4.08838034e-01\\n7.56429657e-02 2.12865382e-01 3.95328552e-02 -1.46358341e-01\\n5.99788390e-02 4.18535233e-01 -2.21491531e-01 8.05787966e-02\\n-1.20871782e-01 -1.07351147e-01 3.83747309e-01 1.01165185e-02\\n-3.32630038e-01 -2.19757631e-01 -6.85275868e-02 1.28504485e-01\\n-5.46890259e-01 -1.45852864e-01 5.15477300e-01 2.78362602e-01\\n2.34046727e-01 2.41533622e-01 2.57811844e-01 -1.21555634e-01\\n-1.60838127e-01 -3.27941120e-01 1.52987689e-01 1.83056548e-01\\n1.36702657e-02 1.16857871e-01 -1.61256477e-01 -5.82535803e-01\\n-3.53865886e+00 -5.25070764e-02 2.33940259e-01 -2.33232975e-01\\n2.22787201e-01 1.93664432e-02 -2.11348711e-03 -2.77434513e-02\\n-3.89675677e-01 2.73402091e-02 -2.74592936e-01 -1.61136702e-01\\n7.54935816e-02 2.99658746e-01 7.66612887e-02 1.68919444e-01\\n1.46122158e-01 -2.01155603e-01 -1.75282300e-01 2.98287570e-01\\n-1.26963273e-01 -6.89685702e-01 1.76773161e-01 2.60658702e-03\\n1.78158760e-01 2.33466223e-01 -3.10038984e-01 -5.44228815e-02\\n-1.00545384e-01 -2.86617875e-01 -1.20354727e-01 -1.95067689e-01\\n-2.18074247e-01 2.56595016e-01 1.47746578e-01 -7.74799958e-02\\n-4.11737561e-02 -2.97930509e-01 -1.16281152e-01 -4.83958364e-01\\n1.30276039e-01 -6.21900797e-01 -1.19844405e-02 -8.96313488e-02\\n7.17292249e-01 -2.75509953e-01 2.14505062e-01 -2.74955179e-03\\n1.12558760e-01 1.26052022e-01 -3.29398587e-02 -1.33748259e-02\\n-1.94945335e-01 -2.86627859e-01 1.36436755e-02 -1.69811055e-01\\n4.45547312e-01 4.89085972e-01 -2.04414487e-01 2.03414517e-03\\n1.39567658e-01 -3.45959991e-01 -2.43075639e-01 -2.90258735e-01\\n-1.47194445e-01 -2.39982158e-01 -6.97500825e-01 -4.12387908e-01\\n-1.01254918e-01 -9.95859951e-02 -2.19648242e-01 6.51868820e-01\\n-2.63530791e-01 -5.37128031e-01 5.46800494e-02 -5.96572042e-01\\n7.01377019e-02 -2.20030382e-01 7.46550113e-02 -1.37784168e-01\\n-2.57477760e-01 -5.15490830e-01 2.98223142e-02 -9.03870165e-02\\n-1.69783309e-01 -1.73673272e-01 -9.51103419e-02 -2.12532490e-01\\n-2.91603178e-01 -3.11852276e-01 3.59889954e-01 1.92676261e-01\\n2.99908549e-01 1.62064180e-01 3.21541339e-01 1.10873409e-01\\n1.86296135e-01 -3.91465910e-02 7.89720044e-02 -2.77826399e-01\\n1.43261954e-01 -1.19530253e-01 6.85186267e-01 -2.48210818e-01\\n-6.71043480e-03 2.73477644e-01 -1.67891324e-01 -1.31178796e-01\\n4.39723670e-01 2.57814024e-02 4.08895500e-03 -1.92016259e-01\\n3.92300397e-01 -5.71952701e-01 -2.36913264e-01 1.18917905e-01\\n1.06494457e-01 7.50011206e-01 6.28736243e-02 -3.96635413e-01\\n-3.91471565e-01 5.61642945e-01 -1.34723172e-01 -8.79992545e-02\\n-1.52301759e-01 1.86250597e-01 -1.59833223e-01 1.28825203e-01\\n1.33469969e-01 -2.56227314e-01 -1.27534226e-01 -7.03896657e-02\\n-6.91740960e-02 1.35372534e-01 2.89200723e-01 9.54434276e-02\\n-6.79581165e-02 -3.19717824e-01 -2.44971946e-01 1.60366073e-01\\n1.46037072e-01 3.29782337e-01 1.54318437e-01 -2.69396722e-01\\n-1.55062735e-01 2.95448422e-01 -1.22497998e-01 1.88510805e-01\\n-1.00630008e-01 4.53787856e-02 -4.60060000e-01 -1.58033416e-01\\n-2.07865193e-01 -3.84061694e-01 1.03902020e-01 3.87394041e-01\\n8.14171210e-02 -1.85729917e-02 1.08406998e-01 -4.39084888e-01\\n4.03984547e-01 1.12623937e-01 2.16721550e-01 8.09297040e-02\\n4.04496081e-02 3.99033725e-01 -6.57609403e-02 -9.03673097e-02\\n-1.71036452e-01 2.01591365e-02 -2.70080090e-01 -1.84027478e-01\\n5.80558591e-02 -3.99814934e-01 -9.87318978e-02 4.24282700e-01\\n1.16935588e-01 -2.35709593e-01 -2.62416065e-01 1.97747558e-01\\n1.11613661e-01 -2.33696416e-01 -1.56210333e-01 -1.32447407e-01\\n2.14814186e-01 4.21500988e-02 2.73926854e-01 -3.72478634e-01\\n-1.63674355e-01 4.51076822e-03 -9.82293263e-02 4.54779059e-01\\n1.24669820e-02 9.87216681e-02 -2.08241060e-01 -1.51800901e-01\\n3.84840637e-01 -1.35899052e-01 -4.86892499e-02 -4.65612710e-02\\n7.25345984e-02 -1.06761351e-01 -4.60397601e-01 2.46398039e-02\\n-3.00988816e-02 -7.92926401e-02 6.58417046e-02 -5.11334501e-02\\n1.80184379e-01 8.64026025e-02 -4.99750733e-01 -3.37446243e-01\\n-3.93075258e-01 -1.58610314e-01 1.84359282e-01 -2.58413464e-01\\n6.51117507e-03 -1.44290239e-01 -6.21417046e-01 2.01031253e-01\\n-3.91525120e-01 4.89966944e-02 1.47439882e-01 9.22599509e-02\\n-3.18078399e-01 8.34538136e-03 8.11690316e-02 1.94992110e-01\\n-1.56328559e-01 -1.06334642e-01 -6.84863031e-02 -1.00273967e+00\\n2.39501759e-01 -2.39953492e-02 -5.01109473e-02 -2.35969573e-03\\n-4.75207251e-03 -7.04596817e-01 6.74694628e-02 -3.24622959e-01\\n7.24786334e-03 4.78375182e-02 -1.91196188e-01 -3.15906167e-01\\n1.29918709e-01 -1.55668318e-01 -2.76734680e-01 3.40826094e-01\\n-4.97100681e-01 1.56361789e-01 9.99132637e-03 1.24302238e-01\\n3.90209779e-02 -3.28728914e-01 1.79683551e-01 -3.74637753e-01\\n-3.78247947e-01 -1.76550090e-01 -2.22631887e-01 -3.12925160e-01\\n4.49395999e-02 -3.48209918e-01 -2.08637148e-01 1.06192246e-01\\n3.15708786e-01 6.72188699e-02 -1.36586234e-01 -2.93032825e-01\\n-7.12274387e-02 -4.72314179e-01 2.50363618e-01 -1.86917022e-01\\n5.63730560e-02 -3.71665731e-02 2.40359381e-01 1.33037359e-01\\n4.64835353e-02 -3.87725025e-01 3.88629586e-01 -3.53516430e-01\\n-2.89711386e-01 3.33548291e-03 3.25403772e-02 4.99740206e-02\\n2.57377356e-01 -6.23883665e-01 7.37987971e-03 2.18040749e-01\\n9.32115689e-02 6.99808225e-02 2.58332789e-01 5.80880418e-03\\n-1.15301207e-01 2.25950524e-01 -2.87278354e-01 8.67727995e-02\\n7.54065871e-01 1.61999524e-01 9.46024284e-02 1.52283698e-01\\n1.48484573e-01 3.84318531e-01 5.36778271e-01 2.17558220e-02\\n4.64519346e-03 2.22276032e-01 -6.29292568e-03 -4.94863868e-01\\n-1.00053661e-01 -6.29699528e-02 -1.61775336e-01 -2.98902482e-01\\n5.68166614e-01 4.07394856e-01 -4.23182547e-01 -2.71510661e-01\\n6.65159822e-02 -7.59990439e-02 3.11885595e-01 3.58162075e-02\\n3.34598981e-02 -1.87891349e-01 5.13635039e-01 -1.16528012e-02\\n2.79682100e-01 6.27047002e-01 -1.38059944e-01 -4.31816071e-01\\n-1.30976960e-01 1.85184613e-01 6.16035014e-02 5.02908170e-01\\n-1.11100718e-01 2.22501397e-01 -5.89813069e-02 1.21240998e-02\\n9.24969558e-03 2.38774836e-01 1.73292637e-01 1.14967421e-01\\n1.82844222e-01 6.59905225e-02 2.92303056e-01 6.04145467e-01\\n1.31791711e-01 5.43202102e-01 3.58735502e-01 6.58187419e-02\\n2.88298935e-01 6.31099224e-01 4.47781831e-01 2.47161061e-01\\n6.90274835e-02 1.94426149e-01 9.28051025e-02 -1.40974417e-01\\n4.09494728e-01 3.35055977e-01 2.37639770e-01 8.94953966e-01\\n3.76655608e-01 2.06508011e-01 7.90702522e-01 -6.95942461e-01\\n-3.39136571e-01 1.22824386e-01 4.27526295e-01 -2.06764847e-01\\n-1.12134710e-01 6.62854463e-02 -1.89896703e-01 3.23662549e-01\\n-4.59862262e-01 -9.07356143e-02 1.61180925e-02 -4.31619436e-02\\n6.76198900e-02 -5.55598699e-02 -1.57312319e-01 -3.97852995e-02\\n-1.96500078e-01 -7.31067955e-02 -2.48670623e-01 -1.65038571e-01\\n-3.46983284e-01 5.32180024e-03 -1.46576539e-01 -2.05453575e-01\\n-7.81072304e-02 -4.58009094e-01 -7.53434598e-02 7.55573288e-02\\n3.09527397e-01 -7.06459209e-02 2.18218714e-02 -8.75489786e-02\\n1.97565377e-01 3.58882308e-01 5.26761174e-01 -1.00220099e-01\\n1.62169889e-01 -1.11063801e-01 -2.30599523e-01 3.94183025e-02\\n2.00516265e-03 6.67308981e-04 9.63001996e-02 3.67192984e-01\\n-3.16834986e-01 -4.78394330e-02 5.36589772e-02 3.52561891e-01\\n-3.81102294e-01 -1.05050661e-01 -1.42782465e-01 2.84201324e-01\\n1.79798547e-02 1.44495070e-01 -2.83834726e-01 -3.74649279e-02\\n-2.04619929e-01 -4.52179700e-01 4.31283027e-01 -2.28166133e-01\\n-1.03941590e-01 2.60026276e-01 3.07673335e-01 1.97034329e-01\\n-2.89613932e-01 4.43160348e-02 -1.08998358e-01 2.99963772e-01\\n2.98879622e-03 4.13744360e-01 -2.30122894e-01 -1.20121427e-01\\n-2.34736517e-01 2.24266812e-01 -1.74272120e-01 1.34532943e-01\\n-1.23346359e-01 2.68748790e-01 2.04904929e-01 -7.65443668e-02\\n3.33752960e-01 1.11883422e-02 -2.88367152e-01 -1.34824961e-01\\n-1.43094748e-01 -1.96044683e-01 1.22624626e-02 -4.52133603e-02\\n2.08444059e-01 -3.33552301e-01 -4.24384251e-02 8.19940120e-03\\n-4.23172973e-02 -3.11812639e-01 -1.73182979e-01 5.89172244e-02]]',\n", + " 'job_description': \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting large scale micro-service based distributed systems with high transaction volume. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: a Bachelor's or higher degree in technical field of study or equivalent practical experience hands-on experience with highly concurrent production grade systems knowledge of at least one modern programming language, such as Go, Java, C++ and Scala, etc. excellent troubleshooting and creative problem-solving abilities excellent written and oral communication and interpersonal skills Ideally: experience with systems for automating deployment, scaling and management of containerised applications, such as Kubernetes and Mesos experience with big data technologies, such as Kafka, Spark, Storm, Flink and Cassandra experience with encryption and cryptography standards Benötigte Skills JAVA Python Englisch Scala Kryptografie / Verschlüsselung Go\",\n", + " 'soft_skills': '[\"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Scale (Map)\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Flink\", \"Apache Cassandra\", \"KM Programming Language\", \"Encryption\", \"Cryptography\", \"Python (Programming Language)\", \"Maintainability\", \"Location-Based Services\", \"Java (Programming Language)\", \"Idealization\", \"Big Data\", \"Apache Mesos\"]',\n", + " 'languages': \"['English', 'Bambara']\"},\n", + " {'company_id': '127',\n", + " 'job_title': 'software developer/devops engineer',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.79464602e-01 2.83842206e-01 4.32112038e-01 -1.00324735e-01\\n5.33078432e-01 -1.73618779e-01 -1.52223721e-01 4.19416130e-01\\n-1.45017251e-01 -3.03699583e-01 -1.04994282e-01 -2.60173768e-01\\n-1.43293232e-01 1.81950599e-01 7.96944425e-02 4.16553766e-01\\n3.46023202e-01 5.54476380e-02 -1.65452421e-01 3.39596689e-01\\n9.71518457e-02 -7.41897374e-02 -2.95279995e-02 7.51191378e-01\\n3.40693116e-01 3.60643193e-02 -6.12074137e-02 3.74694876e-02\\n-1.72964886e-01 -1.97237477e-01 4.07169700e-01 8.59297439e-03\\n-9.94161814e-02 -3.10695171e-01 1.41966045e-01 8.88439640e-02\\n-2.31730729e-01 -3.43627222e-02 -4.92328741e-02 1.54999971e-01\\n-5.10822654e-01 -2.05332667e-01 2.50285082e-02 2.10643858e-02\\n-2.61815727e-01 -2.56458074e-01 2.33076289e-01 1.57963969e-02\\n1.68109462e-02 6.35271743e-02 -6.01317286e-01 2.60986149e-01\\n-2.41310000e-01 -2.79591978e-01 4.12263215e-01 4.90929574e-01\\n3.68725359e-02 -4.82857406e-01 -4.80296463e-01 -3.86672854e-01\\n-3.69389839e-02 -5.63385636e-02 5.55322766e-02 -2.62381911e-01\\n4.90444332e-01 1.42244026e-01 4.86027151e-02 3.64097983e-01\\n-8.07240009e-01 -1.17384583e-01 -2.17118204e-01 4.93935868e-02\\n-4.00651753e-01 -7.39978552e-02 -2.24744201e-01 -2.38124713e-01\\n-5.23601472e-02 2.84378797e-01 -3.73999216e-02 1.13156356e-01\\n-1.38443843e-01 3.14956784e-01 -1.52378976e-01 3.55061114e-01\\n2.48809427e-01 1.75584108e-01 2.41388589e-01 3.23400140e-01\\n-4.39177632e-01 3.68693173e-01 1.30051628e-01 -3.46206963e-01\\n2.69517899e-01 6.30239174e-02 4.41256940e-01 9.70664620e-02\\n1.73473030e-01 1.56235248e-01 -2.54614145e-01 2.26049468e-01\\n1.87795997e-01 -2.24112585e-01 -9.52708721e-03 -1.08309016e-01\\n-1.74971856e-02 3.51912454e-02 1.13494471e-02 1.90057844e-01\\n-3.92811716e-01 3.65047216e-01 1.66555285e-01 -2.79298306e-01\\n-1.01940468e-01 -5.54690897e-01 -1.35695159e-01 1.47188678e-01\\n1.02047091e-02 -4.35269251e-03 1.42388672e-01 1.20734043e-01\\n2.30692253e-01 -1.14065614e-02 1.53334558e-01 8.57003689e-01\\n-1.11099370e-01 -6.62105605e-02 -1.50400996e-01 2.69138813e-01\\n1.06983401e-01 -3.20981115e-01 1.95703894e-01 3.06491733e-01\\n1.23683475e-01 -1.04964972e-01 -2.51470089e-01 3.84828269e-01\\n-1.39680794e-02 -2.49035478e-01 -3.52663994e-01 2.88842529e-01\\n-1.16512850e-01 -4.62270319e-01 5.31063080e-01 -1.40916035e-02\\n2.09940895e-01 -6.15639575e-02 1.27249993e-02 -8.26895088e-02\\n-7.46292397e-02 1.62108302e-01 6.68128431e-02 2.31477350e-01\\n-3.50668788e-01 -2.26819634e-01 -1.62615985e-01 1.73846588e-01\\n-2.43928879e-01 1.47735655e-01 -9.57861245e-02 -1.50595874e-01\\n3.85887325e-01 1.32020153e-02 -3.29258233e-01 2.15796590e-01\\n-2.32726224e-02 1.40277669e-02 -1.27234012e-01 3.76423717e-01\\n-1.56677157e-01 2.44462982e-01 -7.89805353e-02 -1.40639246e-01\\n5.60129881e-01 4.64583002e-02 1.32265538e-01 -4.20021862e-02\\n3.53185952e-01 -1.44227058e-01 2.94140488e-01 2.87204273e-02\\n-6.99119329e-01 2.00795114e-01 -1.15089677e-02 -1.68672234e-01\\n1.91144552e-02 3.15187797e-02 3.78782630e-01 -3.28442395e-01\\n-5.77069912e-03 -1.80638567e-01 -3.80641013e-01 -3.36305350e-01\\n-2.72626340e-01 7.71208480e-02 4.11807865e-01 -3.61342609e-01\\n-1.38937742e-01 1.64126873e-01 -5.61672747e-01 -1.95011571e-01\\n2.22838432e-01 2.12021202e-01 1.06377326e-01 1.06371827e-01\\n-1.30819038e-01 -7.07461596e-01 3.88835222e-02 -5.06973803e-01\\n-2.66308933e-01 1.27991676e-01 -3.85339975e-01 2.01113269e-01\\n2.72567198e-03 -4.64076363e-02 -1.20951965e-01 1.35125816e-01\\n-3.57031167e-01 -6.55578077e-02 1.24569707e-01 7.23154657e-03\\n2.66686618e-01 1.18325010e-01 -2.78889358e-01 5.18720984e-01\\n-1.51762247e-01 4.87868905e-01 1.15129873e-01 -7.99149632e-01\\n5.06944418e-01 4.05216575e-01 1.00936443e-01 -3.38933617e-01\\n5.95276296e-01 -3.06399256e-01 -7.81174749e-02 1.33428276e-01\\n-4.45213914e-01 -2.47816056e-01 2.42479160e-01 -2.84113765e-01\\n-2.40015641e-01 5.69057465e-01 6.78901225e-02 3.44162621e-02\\n3.70559931e-01 -3.43470663e-01 -1.57107383e-01 1.34557664e-01\\n-1.09013282e-01 -3.20514381e-01 -5.48024118e-01 7.58840889e-03\\n-6.39639646e-02 -5.18943429e-01 -2.07080960e-01 -3.74051273e-01\\n-1.17819875e-01 -2.61833787e-01 -2.10105300e-01 3.62776309e-01\\n1.64972544e-01 9.95036066e-02 -1.11495130e-01 -1.48087498e-02\\n-1.11330859e-01 -6.02296710e-01 7.99088031e-02 -7.07482770e-02\\n4.16953802e-01 1.74963355e-01 1.44379199e-01 -9.94058251e-02\\n4.69598174e-02 6.02424502e-01 -3.62517357e-01 -3.15214694e-01\\n5.98334074e-02 1.01062544e-01 -3.07451282e-02 -4.64696996e-02\\n1.55632883e-01 2.99742132e-01 -2.74719536e-01 9.58754867e-03\\n-2.61927009e-01 2.94026881e-02 3.88387024e-01 -1.09960839e-01\\n-2.08484665e-01 -2.45711356e-01 -1.25462234e-01 2.09994555e-01\\n-4.86043364e-01 -2.19527707e-01 4.00307953e-01 2.01103494e-01\\n1.65323824e-01 1.50955513e-01 2.46531501e-01 -4.49586362e-02\\n-2.93476790e-01 -3.75669569e-01 2.46291667e-01 2.07147896e-01\\n1.17415905e-01 1.37192145e-01 -1.17500588e-01 -5.48532307e-01\\n-2.95971894e+00 -1.83544829e-01 2.09105983e-01 -2.94929028e-01\\n2.95069039e-01 -8.80652517e-02 6.43018112e-02 -9.03702527e-02\\n-3.66998345e-01 -2.19861660e-02 -1.51461050e-01 -2.30737746e-01\\n7.76297823e-02 3.11000943e-01 1.40502885e-01 7.74404928e-02\\n6.10563383e-02 -2.23519802e-01 4.12002057e-02 2.76947588e-01\\n-1.39350832e-01 -7.13903069e-01 1.97508544e-01 -1.17521748e-01\\n2.42447063e-01 3.00263822e-01 -4.43940639e-01 -1.74741119e-01\\n-2.41806135e-01 -2.17974693e-01 1.35723561e-01 -3.02654207e-01\\n-1.05285972e-01 2.93526828e-01 1.90208405e-01 -6.38388246e-02\\n5.45207858e-02 -3.80258799e-01 -1.00464173e-01 -5.70289254e-01\\n2.15484425e-01 -5.81566215e-01 -2.07766816e-02 -1.62599266e-01\\n6.52249813e-01 -2.83655643e-01 1.70264781e-01 1.39111087e-01\\n2.12851346e-01 2.12966532e-01 5.32277077e-02 8.11298415e-02\\n-2.58918464e-01 -3.08156431e-01 -3.48505005e-02 -2.93131113e-01\\n5.50741553e-01 4.61072206e-01 -2.06994534e-01 -5.91572635e-02\\n1.33481473e-01 -3.59127313e-01 -4.41250235e-01 -2.85691261e-01\\n-1.82144552e-01 -1.61260724e-01 -6.10117316e-01 -3.67786348e-01\\n-9.42144841e-02 -8.70551988e-02 -9.11066607e-02 6.92519248e-01\\n-3.29033136e-01 -3.40736330e-01 2.37641856e-04 -6.64864361e-01\\n9.59281847e-02 -2.54156858e-01 7.69339800e-02 -2.29244962e-01\\n-2.17527211e-01 -4.82519865e-01 1.15825519e-01 -7.45242760e-02\\n-1.78468481e-01 -3.25853318e-01 1.08175650e-02 -2.51990974e-01\\n-1.96736485e-01 -5.48918843e-01 3.72074485e-01 1.48789287e-01\\n3.73227239e-01 1.87235728e-01 2.79792160e-01 -3.02228220e-02\\n2.54057199e-01 4.59913686e-02 9.88337398e-03 -3.86143684e-01\\n1.88594133e-01 1.14771081e-02 5.47572374e-01 -1.66220039e-01\\n2.96973977e-02 8.48369226e-02 -2.26786375e-01 -1.48161247e-01\\n3.19172084e-01 1.02132276e-01 2.18638480e-02 -1.70794219e-01\\n3.89539719e-01 -4.40902352e-01 -1.26275241e-01 2.00770795e-01\\n5.52972071e-02 6.58028841e-01 -2.82517858e-02 -3.75799567e-01\\n-2.05240190e-01 5.18371403e-01 -2.56127436e-02 -4.25358750e-02\\n-1.33260954e-02 1.73665404e-01 -1.70200586e-01 1.80013210e-01\\n5.73165119e-02 -1.86277002e-01 -2.49783397e-01 -6.61584362e-02\\n-1.48735046e-01 2.85254598e-01 2.93299198e-01 2.44024932e-01\\n-1.16569683e-01 -3.83201182e-01 -2.85960361e-02 2.89929777e-01\\n2.57171869e-01 3.86809230e-01 1.94505975e-01 -1.84552908e-01\\n1.75652262e-02 4.56595480e-01 -1.22101367e-01 2.24289775e-01\\n-1.16304055e-01 8.74356851e-02 -5.44228673e-01 -1.73254400e-01\\n-3.28137040e-01 -2.58567512e-01 1.12727463e-01 3.15514147e-01\\n1.60010561e-01 -7.87907988e-02 6.16073422e-02 -3.67726862e-01\\n2.38641381e-01 5.87384030e-02 2.11930692e-01 1.08427174e-01\\n-1.09139048e-01 6.21277094e-01 -2.24795006e-03 -7.43742585e-02\\n-1.74894944e-01 -2.39029899e-02 -2.77645767e-01 -1.93252295e-01\\n1.73775434e-01 -3.89436454e-01 -2.07965761e-01 4.34971213e-01\\n1.01803944e-01 -1.34763241e-01 -1.73997581e-01 2.98828721e-01\\n7.53267407e-02 -2.92674392e-01 -2.51752853e-01 1.52706280e-02\\n2.88858354e-01 5.22003956e-02 2.55306214e-01 -4.96981680e-01\\n-2.43663490e-02 8.59514773e-02 3.03198397e-03 4.87323463e-01\\n9.92832407e-02 9.22194868e-03 -2.22706690e-01 -3.04161131e-01\\n3.21964383e-01 -1.68119222e-01 -1.09340131e-01 -1.27167925e-01\\n2.82439459e-02 -1.68987274e-01 -3.97098422e-01 2.43679024e-02\\n-7.73934498e-02 -1.80419490e-01 -3.11975088e-02 1.43067110e-02\\n1.52887195e-01 8.38807821e-02 -5.19711375e-01 -1.86701715e-01\\n-2.16770500e-01 6.33195639e-02 1.38425454e-03 -4.57324743e-01\\n6.11239001e-02 -2.38374416e-02 -5.88806391e-01 2.53286242e-01\\n-1.98784441e-01 -1.34626543e-02 1.98355883e-01 -2.64220275e-02\\n-4.68545556e-01 -1.45779237e-01 1.85521960e-01 1.87078834e-01\\n-3.57208908e-01 -2.97613323e-01 4.85920571e-02 -1.01244283e+00\\n1.84459805e-01 -1.00726582e-01 -1.08461224e-01 1.06752977e-01\\n8.33938494e-02 -7.05569327e-01 8.56838599e-02 -3.74308467e-01\\n7.96690490e-03 7.38189220e-02 -1.86574161e-01 -3.33493531e-01\\n8.04249793e-02 -1.07934795e-01 -2.09191173e-01 4.48658288e-01\\n-4.95503545e-01 2.88990736e-01 -1.00149788e-01 1.84606463e-02\\n3.80047821e-02 -3.09451640e-01 1.40777111e-01 -3.11106473e-01\\n-4.45842415e-01 -2.32447758e-01 -2.52126813e-01 -3.59331548e-01\\n1.49969095e-02 -2.66236484e-01 -1.26821190e-01 9.85354632e-02\\n2.88066506e-01 -2.61946879e-02 -1.87840790e-01 -1.99190393e-01\\n1.01761848e-01 -4.49593842e-01 7.18361288e-02 -6.34766072e-02\\n-7.85707906e-02 -1.43621266e-01 1.96336821e-01 9.59303603e-02\\n1.56136155e-01 -3.50980699e-01 5.22612035e-01 -3.55244815e-01\\n-3.67753178e-01 -7.64256045e-02 8.10516179e-02 9.19122249e-05\\n2.32312262e-01 -6.32257760e-01 -4.24426049e-02 3.90425235e-01\\n1.98571473e-01 3.51112187e-02 2.09758952e-01 -1.38035923e-01\\n3.45931426e-02 2.34450147e-01 -3.78846109e-01 1.51710004e-01\\n8.60364676e-01 1.53342605e-01 1.11291498e-01 2.38088757e-01\\n1.43503010e-01 2.92027563e-01 4.70402002e-01 -1.01451188e-01\\n-9.96608213e-02 2.55892038e-01 1.27410740e-01 -4.64461803e-01\\n-1.49891108e-01 -3.20105441e-02 -3.26732025e-02 -2.76313812e-01\\n6.63094521e-01 3.74243796e-01 -4.39209104e-01 -2.98540115e-01\\n-9.46564302e-02 -9.35236514e-02 2.88884550e-01 -9.35423300e-02\\n3.17315720e-02 -1.61417529e-01 3.99939597e-01 -2.02047452e-02\\n2.87503719e-01 5.67472577e-01 -1.85363308e-01 -3.40382695e-01\\n-1.88358366e-01 2.11724550e-01 4.71704975e-02 4.14248049e-01\\n-1.35417372e-01 2.13033155e-01 -6.92164898e-02 1.60799921e-01\\n-1.27928734e-01 1.89417899e-01 1.10304348e-01 4.84235287e-02\\n1.76691562e-01 1.45349264e-01 3.92406464e-01 4.45726275e-01\\n3.51103306e-01 5.12184501e-01 2.88963407e-01 6.21488243e-02\\n4.97187972e-01 5.38665295e-01 4.61984068e-01 1.49902813e-02\\n-5.86419441e-02 1.42226398e-01 1.02813341e-01 -6.79232925e-02\\n3.92337084e-01 3.19057763e-01 1.72066718e-01 9.48411703e-01\\n3.15637648e-01 3.77954245e-01 7.00901747e-01 -5.57419777e-01\\n-2.96507418e-01 4.93867546e-02 4.84636217e-01 -4.10603940e-01\\n4.03327048e-02 8.18898976e-02 -1.46891564e-01 2.50466168e-01\\n-4.81334478e-01 -8.51175860e-02 -7.72630423e-03 1.47542777e-02\\n1.13921218e-01 -6.86585903e-02 -2.05023959e-01 -3.61171700e-02\\n-2.37343386e-01 -2.38486335e-01 -4.15512323e-01 -2.30404183e-01\\n-2.07346380e-01 -5.66824265e-02 -6.47140965e-02 -2.03935444e-01\\n-7.41475523e-02 -3.64882052e-01 1.55933276e-02 4.50794399e-03\\n3.67774487e-01 -1.26594782e-01 -1.42232239e-01 -1.57701463e-01\\n3.66457641e-01 3.15999508e-01 6.45007014e-01 -1.37276053e-01\\n1.12441916e-03 -1.48463711e-01 -2.45164111e-01 1.32254258e-01\\n4.05558348e-02 1.10500783e-01 1.27781808e-01 2.70691603e-01\\n-2.60735869e-01 -7.96389952e-02 9.80343968e-02 3.37681592e-01\\n-3.72343540e-01 -7.44422525e-02 -9.19867232e-02 1.41576648e-01\\n-8.61211494e-03 1.26920596e-01 -2.72234917e-01 1.08799830e-01\\n-1.92291602e-01 -5.42582452e-01 4.57042933e-01 -1.73048288e-01\\n-1.46631479e-01 5.58332838e-02 3.87549132e-01 2.38362715e-01\\n-2.10598439e-01 1.38804317e-02 2.54046787e-02 2.02264711e-01\\n4.19618003e-02 3.42434466e-01 -1.46258548e-01 -3.06128860e-01\\n-3.53459865e-01 1.87223077e-01 -1.78792700e-01 1.49589665e-02\\n-1.48575693e-01 4.48938221e-01 -3.82950641e-02 2.97433771e-02\\n4.22491163e-01 -1.06343828e-01 -1.57129675e-01 -2.92525560e-01\\n-2.40106285e-01 -2.33014241e-01 -1.22865215e-02 -9.53219086e-03\\n2.36855507e-01 -3.65250289e-01 -1.29179686e-01 -2.96051323e-01\\n4.29405198e-02 -2.48092234e-01 8.75145942e-03 3.60321738e-02]]',\n", + " 'job_description': 'Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum’s scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master’s degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit/ For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Dutch']\"},\n", + " {'company_id': '9',\n", + " 'job_title': 'software engineer backend (m/w)',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.09588939e-01 3.53977472e-01 3.76809657e-01 -7.97372609e-02\\n3.86109412e-01 -2.18868315e-01 -4.56952713e-02 4.92449939e-01\\n-1.11506663e-01 -3.70523840e-01 -6.71701431e-02 -2.23877981e-01\\n-1.67698145e-01 5.79392575e-02 1.56673595e-01 3.58065605e-01\\n2.99305230e-01 1.31248459e-01 -2.14176953e-01 3.80015284e-01\\n8.25560838e-02 -8.59833360e-02 -2.83666942e-02 6.63735986e-01\\n3.03802878e-01 2.84423213e-02 -3.44149023e-02 -8.46213102e-02\\n-2.82238454e-01 -2.07219303e-01 3.54496300e-01 5.60077094e-03\\n-6.89964443e-02 -3.42943102e-01 9.19430554e-02 7.56266713e-02\\n-1.47413090e-01 3.53634655e-02 -2.36538257e-02 1.34321436e-01\\n-4.47326750e-01 -2.01077312e-01 2.11073399e-01 -2.72567337e-03\\n-1.31350085e-01 -3.98559481e-01 2.36390904e-01 -4.78912555e-02\\n1.13416471e-01 -1.35085965e-02 -6.85292482e-01 1.62851706e-01\\n-3.02356482e-01 -2.05522880e-01 4.12076473e-01 4.54081088e-01\\n5.75623102e-02 -4.85956311e-01 -4.84751880e-01 -3.34775031e-01\\n8.47035721e-02 -8.94995704e-02 9.58922505e-02 -3.74082088e-01\\n3.49215090e-01 1.19355589e-01 2.36970205e-02 3.73585284e-01\\n-8.09799850e-01 -5.26394472e-02 -1.97598115e-01 -3.75514068e-02\\n-4.56857324e-01 -2.21681312e-01 -2.82854706e-01 -3.14322151e-02\\n-1.06122546e-01 3.22846234e-01 -7.73782358e-02 6.90491349e-02\\n-1.70771867e-01 3.56611311e-01 -1.88694984e-01 4.72818404e-01\\n2.36417904e-01 1.88856408e-01 2.21740007e-01 3.82991165e-01\\n-3.92668724e-01 3.93701613e-01 2.18303025e-01 -2.79927939e-01\\n3.19552273e-01 4.04363163e-02 4.26905215e-01 2.52112560e-02\\n2.23859206e-01 1.09575085e-01 -2.54584134e-01 2.31614262e-01\\n2.15045586e-01 -2.50346452e-01 -1.31427601e-01 -1.45237774e-01\\n-3.65283340e-03 -2.59867101e-03 8.69962946e-03 2.37902790e-01\\n-1.93462595e-01 4.75418568e-01 2.51735002e-01 -1.21296667e-01\\n-1.05807282e-01 -5.26170552e-01 -9.73739401e-02 5.48740551e-02\\n-6.80509433e-02 4.88583595e-02 2.33428657e-01 1.22526482e-01\\n2.53239810e-01 6.17773682e-02 7.50501826e-02 8.69464695e-01\\n-8.79050121e-02 4.22566533e-02 -1.90922767e-01 3.82644087e-01\\n7.15236813e-02 -3.31572294e-01 8.63230154e-02 3.62228423e-01\\n1.20909728e-01 -1.52072728e-01 -1.78286970e-01 2.95595109e-01\\n-4.96928059e-02 -1.64546043e-01 -3.03301692e-01 8.57781693e-02\\n-1.41552716e-01 -5.21402597e-01 5.25555432e-01 8.79097655e-02\\n2.10065573e-01 6.48114234e-02 1.07701160e-01 -1.24945618e-01\\n-1.83591738e-01 1.93015814e-01 3.16089652e-02 2.11641788e-01\\n-2.81513840e-01 -2.94532567e-01 -2.26535931e-01 1.29564390e-01\\n-1.77221492e-01 1.18093163e-01 -6.23493381e-02 -1.13362864e-01\\n4.00769413e-01 5.84406070e-02 -3.93608004e-01 2.75057971e-01\\n-1.35527030e-02 7.91321620e-02 -1.57444581e-01 3.32714617e-01\\n5.11568934e-02 2.57208169e-01 8.17857832e-02 -7.16295317e-02\\n5.13015926e-01 5.89297712e-02 2.36508265e-01 -4.69877049e-02\\n3.98690253e-01 -1.14578038e-01 1.89958602e-01 5.21120355e-02\\n-6.23266220e-01 2.27140695e-01 -1.29885599e-02 -5.92732094e-02\\n1.01415418e-01 -5.70460281e-04 2.64854670e-01 -2.73588777e-01\\n8.12515691e-02 -1.38104349e-01 -4.48479056e-01 -3.08784008e-01\\n-2.87749738e-01 1.76270548e-02 4.56205338e-01 -3.95314127e-01\\n-1.41020164e-01 1.69671863e-01 -5.19107938e-01 -6.58958480e-02\\n2.44297341e-01 2.50703007e-01 1.05452664e-01 1.21496439e-01\\n-2.02490240e-01 -5.41628778e-01 6.07674569e-02 -4.79461104e-01\\n-4.31516707e-01 1.82647467e-01 -3.28045070e-01 1.81617320e-01\\n1.43425971e-01 -9.41272527e-02 -1.13464572e-01 7.02138469e-02\\n-2.49530360e-01 -1.33739248e-01 1.74917653e-01 9.55125391e-02\\n2.93781549e-01 -5.27568050e-02 -3.58724773e-01 5.17399967e-01\\n-1.64891437e-01 4.62800086e-01 7.47939125e-02 -8.52720559e-01\\n5.30289710e-01 4.17294741e-01 6.39415234e-02 -4.50185597e-01\\n5.95183194e-01 -3.10093790e-01 -5.67182302e-02 1.76095709e-01\\n-4.07054991e-01 -4.27787662e-01 2.47389525e-01 -1.25406101e-01\\n-2.52051502e-01 5.25710285e-01 5.02705090e-02 7.90504962e-02\\n2.63428062e-01 -3.12214673e-01 -1.89260647e-01 6.56605065e-02\\n-1.24992117e-01 -1.63137004e-01 -5.51456153e-01 6.42404780e-02\\n-6.81491867e-02 -5.13618588e-01 -1.45569310e-01 -3.61825168e-01\\n-2.03439265e-01 -3.91297013e-01 -3.26193660e-01 3.58578384e-01\\n1.61247373e-01 1.29636303e-01 -6.57431856e-02 1.28453150e-01\\n-1.29621506e-01 -5.99448323e-01 8.05152878e-02 1.30839869e-01\\n4.30480033e-01 1.23595923e-01 1.14451595e-01 -7.00612962e-02\\n-7.57485703e-02 5.73696971e-01 -3.06785762e-01 -2.34990969e-01\\n1.15763508e-01 2.11738825e-01 -1.06323715e-02 -1.43066451e-01\\n1.04536064e-01 3.24733496e-01 -3.21196645e-01 -4.10941467e-02\\n-1.43590420e-01 -2.91470364e-02 3.71725380e-01 -1.81908756e-01\\n-4.28511560e-01 -2.84574598e-01 -9.74958614e-02 1.76387012e-01\\n-5.44603467e-01 -2.27220550e-01 6.02471948e-01 2.76421964e-01\\n1.18041478e-01 1.94053158e-01 2.71325976e-01 -9.24557671e-02\\n-2.65710652e-01 -3.86517137e-01 2.88857937e-01 1.84291735e-01\\n1.37646988e-01 1.31242454e-01 -1.91350833e-01 -5.97491264e-01\\n-3.23715281e+00 -1.15003020e-01 2.48236299e-01 -2.41898566e-01\\n2.34865636e-01 -3.49950232e-02 9.82355773e-02 -4.53094244e-02\\n-2.67676234e-01 -3.48431319e-02 -1.99626416e-01 -1.26414761e-01\\n9.47018936e-02 3.65055621e-01 9.24764946e-02 1.63285449e-01\\n2.35818177e-01 -2.32232571e-01 7.57715479e-03 2.78240949e-01\\n-2.02137455e-01 -6.94799840e-01 1.78741083e-01 -1.16198801e-01\\n2.09937811e-01 3.84085059e-01 -2.76781678e-01 -1.25744343e-01\\n-1.59148708e-01 -2.15365320e-01 8.64176452e-02 -2.73608834e-01\\n-8.86897519e-02 1.92434788e-01 1.26364231e-01 -5.02105951e-02\\n7.23450407e-02 -3.90691012e-01 -1.41346902e-01 -5.60883105e-01\\n1.56694010e-01 -6.19566202e-01 8.97517651e-02 -1.65568754e-01\\n7.13032365e-01 -3.52395564e-01 5.41938432e-02 7.51003101e-02\\n1.73547879e-01 1.80168658e-01 -2.19061337e-02 1.23705296e-02\\n-3.22736800e-01 -3.54511946e-01 -8.05425420e-02 -2.66410023e-01\\n5.63354909e-01 4.19682980e-01 -2.48007834e-01 -3.39332931e-02\\n1.78986996e-01 -2.24188119e-01 -4.33510900e-01 -3.15909088e-01\\n-1.48620009e-01 -1.67560950e-01 -6.60619140e-01 -4.26278859e-01\\n-1.04835935e-01 -1.49283409e-01 -8.74210000e-02 7.15258658e-01\\n-3.07278872e-01 -3.85980248e-01 1.75549816e-02 -6.92957997e-01\\n1.69897854e-01 -2.14151651e-01 4.77288701e-02 -1.97633356e-01\\n-2.03085423e-01 -4.49166805e-01 3.89887504e-02 2.47536637e-02\\n-1.87829986e-01 -9.82045978e-02 8.72114301e-02 -1.13026634e-01\\n-2.75799125e-01 -5.53627670e-01 4.70937490e-01 1.54341623e-01\\n3.19041699e-01 1.69533432e-01 2.44624689e-01 -5.14727123e-02\\n3.97006959e-01 -5.11348397e-02 -6.32585883e-02 -4.03755069e-01\\n2.26712242e-01 8.70319605e-02 5.69442451e-01 -2.22122848e-01\\n2.43532844e-02 2.93975025e-01 -1.68566391e-01 -1.47208825e-01\\n4.66594398e-01 1.46925142e-02 8.75635818e-02 -2.32631937e-01\\n4.12977993e-01 -5.26539385e-01 -2.73449451e-01 2.03315839e-01\\n7.43526816e-02 6.20340049e-01 -1.21451903e-03 -4.36850518e-01\\n-1.50859818e-01 6.08619213e-01 -4.66704555e-02 -5.92083409e-02\\n-1.71394408e-01 1.64263368e-01 -1.66789517e-01 1.80495754e-01\\n1.04756765e-01 -1.66501135e-01 -2.85801381e-01 -7.95282423e-02\\n-7.58536905e-02 2.26842567e-01 1.56926945e-01 1.39817253e-01\\n-3.83481048e-02 -4.09494877e-01 -9.36418623e-02 1.27841875e-01\\n2.34541148e-01 4.52518046e-01 -1.40752690e-02 -2.23636061e-01\\n-3.01932842e-02 3.35671335e-01 -1.27867222e-01 1.83084950e-01\\n-2.32367977e-01 1.53489783e-01 -4.73929852e-01 -2.92540550e-01\\n-2.79559016e-01 -3.39252383e-01 -1.16810773e-03 2.38654613e-01\\n2.07027152e-01 1.63934287e-02 9.26687047e-02 -4.51065332e-01\\n2.44798183e-01 4.85716648e-02 2.10684657e-01 1.63453460e-01\\n7.79469460e-02 5.20148396e-01 -3.54029797e-02 -1.74611300e-01\\n-2.14245260e-01 1.46214180e-02 -2.46277764e-01 -1.10298149e-01\\n1.11780711e-01 -4.87949759e-01 -1.43235832e-01 3.88653129e-01\\n1.14982188e-01 -1.66046306e-01 -2.55609989e-01 1.82679668e-01\\n6.69051753e-03 -2.69823492e-01 -2.38607332e-01 9.91296116e-03\\n2.70472854e-01 4.08974551e-02 2.92255193e-01 -4.06071097e-01\\n-3.60555761e-02 2.41898671e-02 -3.37772332e-02 4.38061535e-01\\n1.60126671e-01 -4.90090623e-03 -1.53987750e-01 -1.99865669e-01\\n4.15145010e-01 -1.45158798e-01 -1.09175518e-01 -4.97223362e-02\\n1.60733119e-01 -1.64842680e-01 -4.35482979e-01 5.91527186e-02\\n-1.86189398e-01 -1.21297650e-01 1.32337153e-01 -4.63738199e-03\\n7.87262842e-02 1.23606093e-01 -5.11792243e-01 -2.25079089e-01\\n-3.12994987e-01 -6.02369010e-02 1.15266196e-01 -5.36304295e-01\\n4.07283660e-03 2.28858609e-02 -6.21369123e-01 2.09775418e-01\\n-2.09053442e-01 -5.88272363e-02 1.64252281e-01 1.22789100e-01\\n-4.07638580e-01 -6.40896931e-02 9.16406140e-02 2.15890318e-01\\n-3.46147209e-01 -3.15475821e-01 -6.20566569e-02 -1.05058849e+00\\n1.97028711e-01 -1.41107932e-01 -2.64688641e-01 4.49682698e-02\\n1.85613683e-03 -6.71989620e-01 5.24471514e-02 -3.37515563e-01\\n-8.42871591e-02 1.18729517e-01 -2.64562547e-01 -4.26228821e-01\\n9.89981815e-02 -1.25239104e-01 -3.32172215e-01 4.63592678e-01\\n-5.05871892e-01 3.00040126e-01 -4.50361781e-02 9.09817517e-02\\n-7.43934885e-02 -4.00205731e-01 1.50269806e-01 -4.20744747e-01\\n-5.04953861e-01 -2.21894041e-01 -3.48518521e-01 -2.79601127e-01\\n8.39479640e-02 -3.63103926e-01 -8.99961814e-02 1.45294532e-01\\n2.70731360e-01 8.78804848e-02 -6.07641041e-02 -1.47595122e-01\\n7.47060552e-02 -4.82307881e-01 3.56825553e-02 -6.93390593e-02\\n-6.77431561e-03 -1.29935756e-01 2.44944811e-01 7.23651648e-02\\n1.36398122e-01 -3.64098936e-01 4.48227257e-01 -2.95706004e-01\\n-3.81368726e-01 -6.48868531e-02 5.98115027e-02 -2.00187598e-04\\n2.21697047e-01 -6.67186618e-01 -2.56842896e-02 3.96792412e-01\\n1.84273988e-01 1.21751996e-02 1.18582964e-01 -6.15130626e-02\\n1.27690267e-02 2.98362881e-01 -4.12272006e-01 8.37142020e-02\\n7.85624146e-01 1.09577581e-01 6.75976882e-03 2.25301832e-01\\n9.99752507e-02 3.36705416e-01 5.17287791e-01 -3.19842957e-02\\n-1.05091095e-01 3.12191099e-01 8.27515572e-02 -6.58817947e-01\\n-1.54512107e-01 2.76920479e-02 -1.53029546e-01 -2.98763275e-01\\n6.85680270e-01 3.71039033e-01 -3.88709873e-01 -2.31683359e-01\\n-1.06425442e-01 -1.40825063e-01 2.67355412e-01 -8.34991261e-02\\n2.50079092e-02 -1.81745961e-01 5.01077592e-01 8.33394900e-02\\n3.11581939e-01 5.27889848e-01 -1.69223011e-01 -3.54060262e-01\\n-8.34070742e-02 1.12947732e-01 3.70981544e-02 3.41636181e-01\\n-1.45053893e-01 1.80296868e-01 -2.33031474e-02 2.19070077e-01\\n-1.91727579e-01 9.31735486e-02 -8.22807942e-03 1.77548468e-01\\n1.82012275e-01 8.27697292e-02 4.63144898e-01 3.39797169e-01\\n3.20627600e-01 5.61908960e-01 2.78198332e-01 1.41125888e-01\\n4.92009610e-01 4.79488701e-01 5.00399947e-01 9.56353396e-02\\n1.51317543e-03 1.36053205e-01 1.47854343e-01 -3.41123603e-02\\n4.35661644e-01 4.09750640e-01 1.55200481e-01 8.77741933e-01\\n2.31613830e-01 3.12919527e-01 7.15448976e-01 -6.67473197e-01\\n-3.44301283e-01 1.24895893e-01 4.03651059e-01 -4.43001390e-01\\n-4.13868539e-02 8.50534886e-02 -2.07440451e-01 2.44275540e-01\\n-5.27294219e-01 -1.37676135e-01 -1.80673730e-02 1.15240984e-01\\n5.43654598e-02 -6.07110560e-02 -2.46413648e-01 -1.94499809e-02\\n-1.55377597e-01 -1.19439907e-01 -3.55133384e-01 -1.04684137e-01\\n-1.47682443e-01 -9.00456160e-02 -5.53277992e-02 -1.54165640e-01\\n-1.62107591e-02 -4.26176608e-01 -1.77523434e-01 4.41393964e-02\\n3.80702049e-01 3.94175341e-03 7.15221912e-02 -1.28922880e-01\\n2.45743945e-01 3.62213939e-01 6.21322811e-01 -6.13933913e-02\\n1.47941127e-01 -2.88176119e-01 -1.56848311e-01 1.40819401e-01\\n1.07798681e-01 7.40610212e-02 8.40305462e-02 3.53829861e-01\\n-3.36206228e-01 -7.48514384e-02 1.82488695e-01 4.57779020e-01\\n-3.93527806e-01 -4.89911325e-02 -7.02601150e-02 1.60846427e-01\\n8.22223127e-02 1.46882579e-01 -2.57787228e-01 1.27619103e-01\\n-2.86425412e-01 -4.97772187e-01 4.37390059e-01 -1.76774055e-01\\n-3.99529785e-02 7.34976456e-02 3.12458992e-01 1.91788912e-01\\n-2.25058958e-01 -4.58106399e-02 4.65021469e-02 2.58296281e-01\\n5.60588576e-02 3.32565218e-01 -2.31827855e-01 -1.51168138e-01\\n-2.81095624e-01 1.79059610e-01 -1.15645371e-01 6.17654026e-02\\n-8.25238004e-02 3.97589296e-01 9.61149707e-02 4.20853123e-02\\n3.95510256e-01 6.57555610e-02 -2.39014030e-01 -1.87476799e-01\\n-2.81010628e-01 -2.81814039e-01 -1.84999555e-02 4.88361518e-04\\n2.02127323e-01 -3.93764436e-01 -1.19642779e-01 -1.46853864e-01\\n-7.59425461e-02 -3.28372210e-01 -8.23235810e-02 5.68337776e-02]]',\n", + " 'job_description': 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customized solutions based on Python (Django) and/or PHP Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of Python or PHP Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Modern technologies such as DevOps, Containers, CI/CD are no foreign words. Willingness to assume responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " 'soft_skills': '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Python (Programming Language)\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Hosting\", \"Django (Web Framework)\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"Functional Programming\", \"Additives\", \"Rust (Programming Language)\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Gaelic']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.88429624e-01 1.98583737e-01 4.23475713e-01 1.82951957e-01\\n6.04900897e-01 -1.18279234e-01 -2.03081205e-01 3.64629149e-01\\n3.46712098e-02 -4.40724462e-01 -3.31022963e-02 -3.14529419e-01\\n-9.01315287e-02 5.02066910e-02 -5.02935611e-02 3.59344751e-01\\n3.67627680e-01 7.54890665e-02 -1.39250651e-01 3.57062072e-01\\n3.43481824e-02 -6.97322488e-02 1.80957884e-01 7.95656264e-01\\n2.98042953e-01 -1.16255090e-01 -8.54918733e-02 6.87133074e-02\\n-1.80363178e-01 -1.75483465e-01 4.29032385e-01 8.67326707e-02\\n-2.11392596e-01 -4.58809465e-01 6.91199154e-02 1.77373588e-01\\n-1.58668861e-01 -3.34640034e-02 -8.88730586e-02 1.04851618e-01\\n-5.17855048e-01 -2.43672878e-01 -1.94103152e-01 1.63487084e-02\\n-2.56109715e-01 -2.77911812e-01 1.19478285e-01 -4.85466346e-02\\n1.80046245e-01 1.38918266e-01 -5.33979833e-01 2.59514928e-01\\n-1.72233954e-01 -2.80555397e-01 2.87880749e-01 6.73805118e-01\\n6.10212386e-02 -4.11208272e-01 -5.89036107e-01 -3.71870399e-01\\n9.93701369e-02 -1.45639345e-01 6.26409203e-02 -3.69822890e-01\\n3.18945646e-01 4.79151085e-02 3.21598165e-02 2.98366576e-01\\n-7.89336860e-01 -1.32052019e-01 -2.59705752e-01 -5.94116822e-02\\n-4.64408815e-01 -8.70198160e-02 -2.05505207e-01 -1.03601567e-01\\n-1.64293081e-01 4.01377916e-01 1.35993242e-01 1.56736195e-01\\n-1.97466999e-01 3.09929162e-01 -1.08983524e-01 3.87615591e-01\\n1.63092569e-01 2.07932964e-01 1.87060937e-01 2.84121513e-01\\n-4.51928377e-01 4.44125414e-01 9.17320848e-02 -2.86035717e-01\\n3.39263260e-01 2.50265121e-01 3.72756511e-01 3.22554447e-02\\n2.88709700e-01 1.39379740e-01 -2.68914253e-01 4.27684605e-01\\n1.93647861e-01 -4.65027273e-01 3.70719396e-02 -1.23815440e-01\\n2.71027777e-02 -2.09795758e-02 1.18731678e-01 8.57883021e-02\\n-3.76653045e-01 4.08035636e-01 1.32654756e-01 -2.18823493e-01\\n-1.41579807e-01 -4.02292907e-01 -1.15498729e-01 -2.74306629e-02\\n-6.28863508e-03 1.14811644e-01 2.07974762e-01 8.88045803e-02\\n1.89713255e-01 2.26841494e-02 1.31103829e-01 7.79900134e-01\\n-9.19464827e-02 2.29460187e-02 -1.81933567e-01 3.64344031e-01\\n1.70638189e-01 -3.52228582e-01 2.40809292e-01 1.67695194e-01\\n2.30580904e-02 -1.51865333e-01 -2.42640376e-01 3.56357574e-01\\n-5.51771522e-02 -1.36377007e-01 -2.96466202e-01 1.61872908e-01\\n1.07995398e-01 -3.63866866e-01 6.49746060e-01 5.16096912e-02\\n2.15570971e-01 -1.14791282e-01 2.92915758e-02 -2.07340017e-01\\n-8.01957026e-02 2.32288226e-01 4.47496325e-02 2.99881339e-01\\n-3.13973814e-01 -2.50618756e-01 -1.67838678e-01 1.48434564e-01\\n-4.98181313e-01 1.34253725e-01 -1.63754985e-01 -5.92838600e-02\\n1.32413059e-01 -1.49993030e-02 -2.93919832e-01 1.48342505e-01\\n-2.19867304e-01 -8.92306119e-03 2.50411946e-02 2.74959683e-01\\n-2.67944604e-01 2.15192169e-01 -4.90611605e-03 -1.47452820e-02\\n6.29520535e-01 2.01777279e-01 2.49850050e-01 -7.58167822e-03\\n2.97119856e-01 -7.60359988e-02 1.28523797e-01 1.99007332e-01\\n-7.04479754e-01 3.41924518e-01 -6.38386142e-03 -1.88399687e-01\\n1.47952884e-01 -9.50368494e-02 2.98026025e-01 -2.93984145e-01\\n9.67463758e-03 -7.68316984e-02 -4.62446928e-01 -2.23728985e-01\\n-2.75179833e-01 -1.70573127e-02 3.76333326e-01 -5.46413124e-01\\n-1.18796624e-01 1.89847127e-01 -5.22299767e-01 -1.52322307e-01\\n5.67739569e-02 1.67434007e-01 1.37937203e-01 -1.26448162e-02\\n-1.58748493e-01 -5.34458876e-01 4.03631181e-02 -4.25987989e-01\\n-2.61071205e-01 8.61648247e-02 -2.59991169e-01 2.27802008e-01\\n-2.89184810e-03 4.44850810e-02 -9.92481709e-02 6.02122061e-02\\n-2.42737561e-01 -9.31348503e-02 1.53449476e-01 4.13637720e-02\\n3.75846356e-01 5.51709272e-02 -3.43426228e-01 4.65168178e-01\\n-3.50253552e-01 6.02663398e-01 1.26904577e-01 -8.30854416e-01\\n5.80330312e-01 2.76893437e-01 -8.15743357e-02 -3.57017130e-01\\n4.58799303e-01 -4.13399905e-01 -5.20821474e-03 1.66370288e-01\\n-4.09931928e-01 -2.70665824e-01 2.71393657e-01 -2.46527061e-01\\n-3.22143346e-01 6.30041301e-01 5.98559007e-02 5.77126928e-02\\n2.57399172e-01 -2.07901031e-01 -1.62551269e-01 -1.53340539e-02\\n-1.70107096e-01 -2.33841330e-01 -6.24514043e-01 -6.82121441e-02\\n-1.41546249e-01 -4.43393677e-01 -1.58732638e-01 -4.34173167e-01\\n-2.20677331e-01 -3.28077704e-01 -2.74508923e-01 1.72392055e-01\\n2.65678167e-01 1.26799017e-01 -4.56807539e-02 7.81246945e-02\\n-1.01587892e-01 -6.32973611e-01 -1.68525185e-02 1.51149556e-01\\n3.47340912e-01 1.90080151e-01 1.44686446e-01 2.59971409e-03\\n1.48129910e-01 6.64408445e-01 -3.29274654e-01 -3.21291476e-01\\n8.61536264e-02 2.80172765e-01 -8.10412690e-02 -1.36325061e-01\\n2.22767830e-01 4.19375867e-01 -2.58678198e-01 1.94884948e-02\\n3.93413827e-02 -2.70908065e-02 3.12490761e-01 -2.07878072e-02\\n-2.53939092e-01 -2.51328707e-01 -3.87673192e-02 1.42291442e-01\\n-5.44385731e-01 -1.98399529e-01 5.19523740e-01 1.40723765e-01\\n1.11953020e-01 1.04060054e-01 1.68583483e-01 3.61770508e-03\\n-2.71368444e-01 -3.29952240e-01 2.68432945e-01 1.20747171e-01\\n7.75021240e-02 6.46435097e-02 8.28349218e-02 -6.87111914e-01\\n-3.30407262e+00 -1.71930954e-01 2.02260360e-01 -1.64086282e-01\\n1.78155467e-01 -2.22340822e-01 6.32198453e-02 -6.37120306e-02\\n-3.18570167e-01 7.59409443e-02 -1.46557778e-01 -1.77360415e-01\\n8.65380764e-02 1.94717795e-01 2.26436749e-01 1.81306228e-01\\n1.82480693e-01 -8.11837018e-02 -4.19288315e-03 3.75504345e-01\\n-2.23508447e-01 -6.22583449e-01 1.80904835e-01 1.41312163e-02\\n2.61846393e-01 2.24492252e-01 -2.50124246e-01 -5.18424548e-02\\n-2.39827022e-01 -2.12106824e-01 4.51090448e-02 -2.85704523e-01\\n-1.36054844e-01 2.90936291e-01 3.29243183e-01 -9.02833790e-02\\n2.52094753e-02 -3.29681277e-01 -2.24715695e-01 -4.00100350e-01\\n3.97180989e-02 -6.19463384e-01 -3.24749500e-02 -2.72314280e-01\\n6.74962342e-01 -2.46959761e-01 1.14707135e-01 -1.67439487e-02\\n1.84859768e-01 2.13072553e-01 2.03018412e-01 3.75383161e-02\\n-1.77529678e-01 -2.25940973e-01 -9.60286483e-02 -1.46943957e-01\\n5.52915096e-01 4.60177362e-01 -1.72459289e-01 1.65214725e-02\\n6.81450665e-02 -1.54102787e-01 -4.47540343e-01 -2.89045066e-01\\n-1.04265667e-01 -3.18057775e-01 -5.37276149e-01 -3.78263116e-01\\n-1.34283856e-01 -1.29943952e-01 -7.08092675e-02 6.88403308e-01\\n-3.14828575e-01 -3.14015359e-01 -3.82952020e-02 -4.46423888e-01\\n2.86891848e-01 -1.68531954e-01 -2.68515814e-02 -8.56998414e-02\\n-2.40316167e-01 -4.66826916e-01 2.45728623e-02 -1.22726701e-01\\n-1.32415667e-01 -3.01519066e-01 4.03790846e-02 -1.16923980e-01\\n-3.57324630e-01 -4.51437056e-01 4.32183355e-01 9.40583572e-02\\n3.63667309e-01 1.04860872e-01 3.95384371e-01 -1.84562951e-02\\n3.24187219e-01 -8.84497364e-04 -1.31552443e-01 -3.86131406e-01\\n4.77729999e-02 -2.79481392e-02 4.40293431e-01 -2.55808830e-01\\n-1.45862717e-02 9.70536768e-02 -3.27170700e-01 2.40220614e-02\\n2.77355015e-01 1.62564032e-02 9.60907787e-02 -1.26853824e-01\\n2.93614596e-01 -2.88604379e-01 -2.13362053e-01 5.83545305e-02\\n1.40569121e-01 7.28971183e-01 2.83783339e-02 -3.86949748e-01\\n-2.14778125e-01 4.32309449e-01 -5.51320389e-02 -3.49988304e-02\\n-1.39775991e-01 1.60014629e-01 -2.80635744e-01 1.41878828e-01\\n-3.57838832e-02 -8.19600672e-02 -2.91420519e-01 -9.03920159e-02\\n-5.92990145e-02 3.60120565e-01 1.70873165e-01 9.08401236e-02\\n-8.28190148e-02 -3.85383785e-01 -1.35001197e-01 2.15703234e-01\\n3.28125447e-01 4.94062632e-01 2.10825935e-01 -1.94372728e-01\\n-4.38519865e-02 4.53651160e-01 -2.01023981e-01 1.15158148e-01\\n-2.57664859e-01 2.00610340e-01 -6.25755548e-01 -2.11565450e-01\\n-3.03273439e-01 -4.14990455e-01 2.31352359e-01 3.79889280e-01\\n1.63083687e-01 -5.73794544e-02 1.12048559e-01 -4.79715586e-01\\n2.72475064e-01 2.33182400e-01 1.44110098e-01 -1.61357317e-02\\n1.79289225e-02 6.33740067e-01 6.68886900e-02 -1.77954674e-01\\n-1.39051691e-01 7.68963024e-02 -5.10016941e-02 -2.42452711e-01\\n1.06987551e-01 -5.95722020e-01 -2.04349965e-01 3.80669743e-01\\n1.96615398e-01 -3.14215243e-01 -2.50706285e-01 3.10253263e-01\\n-2.54265429e-03 -2.29488179e-01 -2.39486665e-01 -1.19683042e-01\\n3.96375120e-01 9.53125358e-02 2.63043195e-01 -4.96156275e-01\\n-1.86428830e-01 3.09792664e-02 -8.35147034e-03 3.76741081e-01\\n1.75751690e-02 1.00763030e-01 -5.63400201e-02 -9.66192633e-02\\n5.07474661e-01 4.09154706e-02 -1.30498379e-01 -4.12117094e-02\\n1.49561614e-01 -1.09006159e-01 -5.24051309e-01 1.25220209e-01\\n4.54301760e-02 -2.69800037e-01 1.51892267e-02 2.16481760e-01\\n1.75233588e-01 1.08305074e-01 -6.51356518e-01 -1.75470546e-01\\n-3.45530629e-01 -9.99106318e-02 1.42639011e-01 -5.25156379e-01\\n8.39736219e-03 -1.16491310e-01 -5.69075167e-01 1.32365420e-01\\n-2.41503209e-01 -1.36286825e-01 1.11986257e-01 5.64111862e-03\\n-2.76751488e-01 -2.25120857e-01 3.48017621e-03 2.92190760e-01\\n-3.65601569e-01 -3.12202126e-01 8.93553123e-02 -1.03620231e+00\\n1.77130565e-01 -3.00842151e-03 -9.45256352e-02 1.30194396e-01\\n-9.40877870e-02 -7.07087398e-01 7.58455545e-02 -4.12557065e-01\\n-1.91171750e-01 -5.82695082e-02 -3.06775004e-01 -1.91936001e-01\\n2.16335729e-01 -3.54591943e-02 -3.92707407e-01 4.14931506e-01\\n-2.95460582e-01 3.28543782e-01 -1.41424060e-01 6.40782416e-02\\n2.17395439e-03 -2.01965272e-01 8.48638713e-02 -3.93716514e-01\\n-4.50954229e-01 -2.80952930e-01 -2.97854125e-01 -2.03546599e-01\\n-7.31886104e-02 -3.14401448e-01 -1.78091396e-02 7.27895498e-02\\n4.02165473e-01 1.89771831e-01 -1.60586879e-01 -2.85020977e-01\\n9.57611799e-02 -5.04237890e-01 9.62570310e-02 -1.63360052e-02\\n-6.52600378e-02 -1.79258913e-01 1.50355294e-01 1.84127271e-01\\n1.91707715e-01 -3.96205574e-01 3.70218635e-01 -4.34058607e-01\\n-3.22905183e-01 -1.00351803e-01 -5.16195372e-02 1.35785500e-02\\n3.72032970e-01 -4.67646658e-01 3.16159315e-02 3.61619055e-01\\n1.80674568e-01 2.57222056e-02 2.24107385e-01 -1.18851684e-01\\n-1.51188793e-02 3.10117781e-01 -3.00640523e-01 6.55708537e-02\\n8.72666895e-01 4.20163684e-02 7.86495805e-02 2.17268884e-01\\n1.50069073e-01 2.91687608e-01 4.82769787e-01 2.16742307e-02\\n-1.04057036e-01 2.88720876e-01 8.32005143e-02 -5.11483967e-01\\n-2.23820042e-02 -7.07458556e-02 -1.33308440e-01 -4.29232001e-01\\n6.61328554e-01 3.50179970e-01 -6.15570307e-01 -1.80379570e-01\\n-1.53254464e-01 -1.75628155e-01 2.62225181e-01 -8.67972448e-02\\n-3.11884843e-02 -3.71223614e-02 4.28674132e-01 -1.07194647e-01\\n2.78546423e-01 5.49401820e-01 -2.29430541e-01 -3.33517790e-01\\n-5.63202761e-02 2.90435523e-01 1.39085636e-01 4.94012386e-01\\n-2.90235519e-01 2.49559969e-01 -5.25460169e-02 1.11588001e-01\\n-1.82662308e-01 2.60656685e-01 1.66221187e-01 1.06202960e-01\\n2.35790983e-01 4.43155281e-02 5.50771892e-01 5.46389163e-01\\n3.06035668e-01 4.85229701e-01 3.77146512e-01 -3.43686491e-02\\n5.57884216e-01 5.74662328e-01 3.33008200e-01 1.36371017e-01\\n-2.27391341e-04 2.00355768e-01 1.18588567e-01 -3.18369269e-02\\n3.99259716e-01 5.15224874e-01 8.03955495e-02 9.08952057e-01\\n4.17786151e-01 2.95784891e-01 6.83504879e-01 -6.65569425e-01\\n-2.90313303e-01 -4.44085570e-03 4.20362055e-01 -4.17078435e-01\\n-9.16199237e-02 1.24885507e-01 -2.34120563e-01 2.43046910e-01\\n-3.99488568e-01 -2.33658969e-01 5.48731908e-02 1.22577302e-01\\n9.95319337e-03 -1.76870450e-01 -2.62214929e-01 1.09910205e-01\\n-1.32925727e-03 -1.28251202e-02 -3.90288800e-01 -9.36507806e-02\\n-3.04343283e-01 -7.60904253e-02 -1.13473728e-01 -1.23712622e-01\\n-4.71565388e-02 -4.06034172e-01 -1.34943509e-02 -1.02940209e-01\\n1.71482638e-01 -1.43575594e-01 -6.59537539e-02 -1.31834328e-01\\n3.60157251e-01 1.78650662e-01 5.14416993e-01 7.50147030e-02\\n2.09285349e-01 -3.44306082e-01 -1.80910021e-01 2.13830918e-01\\n9.65255201e-02 4.07230146e-02 1.14702983e-02 3.13850105e-01\\n-2.39596620e-01 -1.49007052e-01 1.99193373e-01 2.96756953e-01\\n-4.16912347e-01 2.49593034e-02 -1.29148498e-01 1.29698068e-01\\n7.49038830e-02 1.40120104e-01 -2.16383904e-01 -7.80963674e-02\\n-2.47371644e-01 -4.90736991e-01 3.00567418e-01 -1.39332786e-01\\n-1.59559902e-02 1.55718541e-02 3.08467448e-01 2.73821026e-01\\n-2.61679411e-01 -7.85439368e-03 -4.06198800e-02 1.44031033e-01\\n-5.04076667e-03 2.21064001e-01 -1.31533191e-01 -3.20389599e-01\\n-2.73151636e-01 2.28696525e-01 -1.32139415e-01 9.22981128e-02\\n2.58937012e-02 3.68632615e-01 -6.86414987e-02 4.47538160e-02\\n4.31382239e-01 2.66966987e-02 -2.29474261e-01 -2.61173248e-01\\n-2.45649621e-01 -3.27400006e-02 -7.22273067e-02 -1.51843235e-01\\n2.19008878e-01 -3.26671988e-01 -6.45876229e-02 -5.07754050e-02\\n-7.89334103e-02 -2.83684820e-01 -1.49782058e-02 -1.75832555e-01]]',\n", + " 'job_description': \"Unit8 is looking for Data Engineer to join our team. You will build tools and infrastructure to help our client solve problem that directly impact their business - be it operations, finance, manufacturing or R&D. You will have opportunity to work with world-class experts who previously worked for companies like Google, Amazon, Palantir or Microsoft. We're looking to expand our engineering team in Lausanne, Zurich (Switzerland) and Krakow (Poland). What You’ll Do Design, build, maintain, and troubleshoot data pipelines and processing systems that are relied on for both production and analytics applications, using tools like Spark or Airflow. Use best practices in continuous integration and delivery. Help drive optimization, testing and tooling to improve data quality. Collaborate with other software engineers, ML experts and stakeholders, taking learning and leadership opportunities that will arise every single day. Work in multi-functional agile teams to continuously experiment, iterate and deliver on new product objectives. RequirementsWho You Are You know how to work with high volume heterogeneous data, preferably with distributed systems such as Hadoop. You know how to write distributed services in Python or Java or Scala. You are knowledgeable about data modeling, data access, and data storage techniques. You appreciate agile software processes, data-driven development, reliability, and responsible experimentation. You understand the value of teamwork. You are willing to travel up to 20% of your time. BenefitsWhat We Offer Work with cutting edge technology on projects that matter Challenging work close to a customer inside an experienced 10x engineering team Tailor-made mentorship program Dedicated budget for training 10% of the time for self-development Yearly bonus based on the performance of the company A package of shares Who We AreUnit8 is a Swiss-based startup focused on solving problems of big industries like chemical, pharma, automotive and finance. Our team comprised of world-class experts in ML and Software Engineering who previously worked for silicon companies like Google, Amazon, Palantir or Microsoft. We work with some of the biggest companies in the world to solve the problems that directly affect their business. Apart from that, Unit8 dedicate a part of resources and time on things that deeply matter to us - that includes collaboration on pro-bono and engineering for good cases.\",\n", + " 'soft_skills': '[\"Complex Problem Solving\", \"Leadership\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Mentorship\", \"Infrastructure\", \"Operations\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Data Quality\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Data Modeling\", \"Build Tools\", \"Analytic Applications\", \"Silicone\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Data Engineering\", \"Industrialization\", \"Apache Airflow\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Maintainability\", \"Agile Edge Technologies\", \"Data Pipeline\", \"Experimentation\", \"Iterators\", \"Transaction Processing Systems\", \"Software Engineering\", \"Building Design\", \"NetApp Data Storage\", \"Budgeting\", \"Finance\", \"Logical Data Models\", \"Close Work Orders\", \"Resourcing\", \"Agile Model Driven Development\", \"Java (Programming Language)\", \"New Product Development\", \"Process Driven Development\", \"Agile Unified Process\"]',\n", + " 'languages': \"['English', 'Serbian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.51825631e-01 2.60474980e-01 4.06874985e-01 3.90913012e-03\\n4.12762940e-01 -1.23509467e-01 4.15141247e-02 1.99809834e-01\\n-5.73633872e-02 -3.32715869e-01 -8.14895481e-02 -2.22888529e-01\\n-1.08683847e-01 -8.90786946e-02 6.65177479e-02 4.58354712e-01\\n2.12481126e-01 1.29846826e-01 -1.25317678e-01 2.87066758e-01\\n1.07233323e-01 -2.88710091e-02 -3.41112688e-02 6.10245287e-01\\n4.81369436e-01 -2.63749976e-02 -1.07174106e-01 -1.31487604e-02\\n-2.51145959e-01 -2.75283664e-01 4.13886905e-01 6.83189109e-02\\n-1.65120408e-01 -2.11267978e-01 1.40884995e-01 1.06072046e-01\\n-2.27530733e-01 1.44333303e-01 -6.86841607e-02 2.22526193e-01\\n-3.98599684e-01 -2.54618526e-01 5.05172424e-02 -5.64737916e-02\\n-3.44995409e-01 -2.60444105e-01 -1.10870227e-02 6.98255468e-03\\n1.07521668e-01 3.31220776e-02 -4.24388617e-01 3.93952191e-01\\n-1.72791839e-01 -1.72602102e-01 2.19175339e-01 6.53271139e-01\\n6.78159148e-02 -5.71692646e-01 -3.86664540e-01 -3.44647557e-01\\n4.50987592e-02 -9.91723314e-02 1.18895866e-01 -1.65271431e-01\\n5.11818767e-01 -1.23031735e-01 -1.26418531e-01 3.62204283e-01\\n-7.39447236e-01 -2.74331332e-03 -3.33312154e-01 -5.51505797e-02\\n-3.76908571e-01 1.02122463e-02 -4.44090396e-01 -5.12092002e-02\\n-1.20048098e-01 4.02851760e-01 1.38234887e-02 1.47980705e-01\\n-1.34200513e-01 2.04484105e-01 -2.23475248e-01 2.54216611e-01\\n3.05090219e-01 1.64455652e-01 3.44829649e-01 2.42483169e-01\\n-4.02494699e-01 3.94097179e-01 2.37292767e-01 -3.18601221e-01\\n2.69708216e-01 6.48515150e-02 3.89104009e-01 1.75005004e-01\\n3.66164111e-02 1.09661408e-01 -1.35631844e-01 2.48268828e-01\\n1.88856825e-01 -2.47985587e-01 4.59713377e-02 -1.31332695e-01\\n-8.80389065e-02 3.35684046e-02 3.75377722e-02 2.09851697e-01\\n-1.90073296e-01 4.02840495e-01 1.58524260e-01 -2.16959044e-01\\n-1.32938072e-01 -5.41697264e-01 -2.07490698e-01 -6.17225468e-02\\n7.55854100e-02 2.19490096e-01 2.24812925e-01 1.64613068e-01\\n1.12234317e-01 3.60421627e-03 1.60512492e-01 7.86299706e-01\\n9.62958671e-03 -5.54945506e-03 -2.67482549e-01 3.42391551e-01\\n1.83584869e-01 -2.69618630e-01 2.08376229e-01 1.88845098e-01\\n6.77909032e-02 -1.02915347e-01 -3.08481932e-01 2.69387037e-01\\n-1.52751639e-01 -2.27202863e-01 -2.46799976e-01 9.60297585e-02\\n-1.13200359e-01 -5.01638114e-01 5.74499190e-01 3.83302309e-02\\n2.43318319e-01 -1.86638422e-02 3.16164158e-02 -1.32968292e-01\\n-1.04667917e-01 3.02572399e-01 5.87792173e-02 1.64582431e-01\\n-1.81787014e-01 -2.48159960e-01 -1.69674158e-01 3.35976124e-01\\n-2.33164728e-01 1.25408575e-01 -1.30628213e-01 -1.41185045e-01\\n2.35079348e-01 1.84523135e-01 -3.36098671e-01 1.39131725e-01\\n-4.33384813e-02 -2.79624462e-01 -9.41888094e-02 3.25221926e-01\\n-1.79208934e-01 2.02472001e-01 8.78532082e-02 -1.27766788e-01\\n6.38435960e-01 2.56646931e-01 2.92353541e-01 2.13959310e-02\\n1.52816474e-01 -1.13505729e-01 2.73565948e-01 1.16688170e-01\\n-6.16993725e-01 4.35447454e-01 -7.00093508e-02 -2.90477931e-01\\n9.86669511e-02 9.27900076e-02 3.29949647e-01 -3.07409734e-01\\n-1.34536298e-02 -1.50021210e-01 -3.96039814e-01 -3.82384896e-01\\n-2.97211349e-01 2.81291287e-02 3.56320262e-01 -4.55654114e-01\\n-4.96302024e-02 2.05018222e-01 -5.30018330e-01 -1.18802428e-01\\n1.44493997e-01 9.29223821e-02 8.33150670e-02 1.02669440e-01\\n-1.24997087e-01 -6.28048241e-01 1.10602073e-01 -4.84517217e-01\\n-5.12431026e-01 2.80219689e-02 -3.27802420e-01 1.89743251e-01\\n1.26870364e-01 5.79458438e-02 -1.10783301e-01 1.41091600e-01\\n-2.75790840e-01 -4.83251251e-02 1.58106983e-01 1.96318284e-01\\n2.21045732e-01 -2.85191424e-02 -4.48545605e-01 5.79974473e-01\\n-1.11586012e-01 4.94819164e-01 2.65643537e-01 -9.00029421e-01\\n5.06973147e-01 1.69948176e-01 7.97947776e-03 -3.21403414e-01\\n4.01795536e-01 -3.76653045e-01 3.63695109e-03 1.09997049e-01\\n-1.96758896e-01 -1.43344507e-01 2.97089636e-01 -2.28747949e-01\\n-1.85660958e-01 5.00354826e-01 1.56889275e-01 -2.66454206e-03\\n2.98233360e-01 -2.06315815e-01 -1.24548070e-01 -1.02669075e-02\\n-1.44548327e-01 -1.95586964e-01 -3.82662416e-01 1.58996433e-01\\n-7.86734223e-02 -4.84353006e-01 -8.73262659e-02 -4.72779334e-01\\n-1.16279885e-01 -4.15782481e-01 -1.42055020e-01 2.38905191e-01\\n8.57087448e-02 2.13840440e-01 1.10041238e-02 -5.72525058e-03\\n-5.48504144e-02 -6.91962421e-01 -1.62524998e-01 9.88482684e-03\\n5.10468781e-01 2.04337016e-01 9.47710201e-02 -7.04658628e-02\\n5.84301539e-02 5.51369786e-01 -3.94084901e-01 -3.39456797e-01\\n1.02381475e-01 1.21447504e-01 4.20704260e-02 -8.44804421e-02\\n2.01594774e-02 3.26476187e-01 -1.15393169e-01 6.01187162e-02\\n-1.07294798e-01 9.18031484e-03 3.79638135e-01 -2.72027794e-02\\n-3.50476861e-01 -2.48713583e-01 -8.75295140e-03 2.79276311e-01\\n-4.78896528e-01 -2.76080102e-01 6.66689992e-01 3.53838354e-01\\n1.72114864e-01 2.69477487e-01 1.88976288e-01 -1.05627529e-01\\n-3.06986183e-01 -1.38842985e-01 2.64395922e-01 5.07715084e-02\\n1.79934829e-01 6.87500313e-02 -9.37601998e-02 -5.51650047e-01\\n-3.45617294e+00 -1.59167334e-01 6.00946583e-02 -2.69181520e-01\\n2.22532228e-01 -1.19356267e-01 2.26290971e-01 -1.07640155e-01\\n-3.52591455e-01 1.63185075e-02 -2.38639116e-01 -1.54561669e-01\\n-2.47431025e-02 2.80270457e-01 1.48224413e-01 1.76661178e-01\\n8.34619701e-02 -2.41139367e-01 -6.48709983e-02 3.45764905e-01\\n-5.38675450e-02 -6.52972996e-01 1.25706375e-01 1.62342906e-01\\n2.28207782e-01 9.39554051e-02 -3.68526787e-01 2.16445373e-03\\n-3.19679767e-01 -2.95057744e-01 9.68569592e-02 -2.52098739e-01\\n-1.75540447e-01 1.82250366e-01 1.21507123e-01 -1.99820533e-01\\n-3.66200693e-03 -2.52440810e-01 1.59284158e-03 -4.46149945e-01\\n-9.71083995e-03 -5.48551023e-01 1.31949224e-02 -4.83073853e-02\\n6.27601206e-01 -2.24560305e-01 2.26770341e-01 5.16676456e-02\\n1.40765026e-01 1.36780426e-01 6.56074584e-02 1.35411620e-02\\n-3.66673350e-01 -4.08929765e-01 -2.62509007e-02 -9.66215059e-02\\n6.38189673e-01 4.30419713e-01 -1.71735585e-01 4.97675277e-02\\n1.77173004e-01 -3.06105733e-01 -4.05683547e-01 -4.12492245e-01\\n-1.63999006e-01 -1.37768731e-01 -6.63295805e-01 -4.54915971e-01\\n-1.86964288e-01 -1.10862769e-01 -1.82278544e-01 5.10123312e-01\\n-2.72231877e-01 -4.30654615e-01 5.24025485e-02 -5.82034886e-01\\n2.29737967e-01 -1.78951398e-01 6.68383241e-02 -8.81958529e-02\\n-3.17720562e-01 -4.36096460e-01 1.10377043e-01 1.37527386e-04\\n-1.57818541e-01 -5.13851345e-02 3.10337692e-02 -2.56302059e-01\\n-3.82413656e-01 -4.09794241e-01 3.85798901e-01 -4.93684560e-02\\n3.07307214e-01 1.62749335e-01 3.46961230e-01 -1.23518417e-02\\n3.30809325e-01 -9.38806459e-02 1.22044422e-01 -4.36575681e-01\\n5.88232428e-02 5.99186197e-02 5.30385435e-01 -1.94078073e-01\\n1.38182849e-01 1.99168697e-01 -2.35549599e-01 -1.52561143e-02\\n4.38397706e-01 2.93889996e-02 1.51043683e-01 -8.27541947e-02\\n3.21023911e-01 -4.90401089e-01 -2.41959542e-01 9.52189416e-02\\n3.98007743e-02 6.27971530e-01 1.22550717e-02 -3.19577575e-01\\n-2.19403937e-01 4.94724840e-01 -1.41357496e-01 2.92669167e-03\\n-2.26926267e-01 7.22688213e-02 -1.24678515e-01 3.19668949e-01\\n-2.93432847e-02 -1.32108867e-01 -2.33987346e-01 -1.50121361e-01\\n-1.90603379e-02 1.68865800e-01 3.31338465e-01 4.37973477e-02\\n-4.29568486e-03 -2.61072934e-01 -1.45804599e-01 1.30059779e-01\\n2.15383098e-01 3.09285879e-01 2.19826281e-01 -2.33421117e-01\\n8.64105579e-03 1.80046409e-01 -2.62194335e-01 3.33031684e-01\\n-2.35327572e-01 1.49751469e-01 -4.21157002e-01 -1.95989326e-01\\n-1.43557996e-01 -4.04698461e-01 2.13273093e-01 2.74257511e-01\\n4.02743034e-02 -3.12148705e-02 2.34329477e-02 -4.95411426e-01\\n3.43155980e-01 1.47206247e-01 9.97711048e-02 1.83086798e-01\\n-3.53230610e-02 5.60517550e-01 -6.76355734e-02 -5.54673225e-02\\n-7.39993826e-02 -9.27753672e-02 -2.23753348e-01 -2.72373199e-01\\n-7.40292249e-03 -3.91076952e-01 -1.23958036e-01 5.02334833e-01\\n1.34085983e-01 -4.93663624e-02 -2.04096958e-01 2.16150358e-01\\n4.30973731e-02 -2.40580007e-01 -1.54961780e-01 2.27288101e-02\\n1.69617802e-01 1.44615844e-01 2.80243039e-01 -1.89721644e-01\\n-4.20743078e-02 2.86255460e-02 -6.38674572e-02 3.52844536e-01\\n1.01636231e-01 3.22218478e-01 -9.34881717e-02 -2.06299379e-01\\n6.11861289e-01 -5.66385947e-02 -5.39067276e-02 2.34690774e-02\\n6.22447804e-02 -3.97749394e-01 -3.83638471e-01 -2.45415941e-02\\n-3.19145247e-02 -1.99975058e-01 1.67137936e-01 1.04846403e-01\\n-4.85431850e-02 9.38702282e-03 -5.34934759e-01 -3.33273679e-01\\n-3.90988827e-01 -1.03051923e-01 1.07925296e-01 -4.55331475e-01\\n-1.08745925e-01 -5.02521768e-02 -6.04119301e-01 2.27425337e-01\\n-1.45630702e-01 -8.17643572e-03 6.49053752e-02 1.02700450e-01\\n-2.54541695e-01 -1.35008797e-01 7.72136450e-02 1.52527645e-01\\n-2.81220585e-01 -1.59214705e-01 -7.41408616e-02 -9.39887762e-01\\n1.47070691e-01 1.54017136e-01 -6.54764026e-02 1.71024829e-01\\n-6.76990971e-02 -5.90289056e-01 1.89387321e-01 -4.63828146e-01\\n3.67790752e-04 -1.42353857e-02 -1.91268787e-01 -4.46040869e-01\\n1.01977892e-01 1.03938334e-01 -2.80991137e-01 4.55224127e-01\\n-3.94144893e-01 3.41177791e-01 -9.19238850e-03 4.80700098e-02\\n-9.44248342e-04 -1.75338417e-01 1.51999325e-01 -1.99774384e-01\\n-4.05616432e-01 -2.71523982e-01 -4.00357276e-01 -1.99043810e-01\\n7.20948130e-02 -2.80739278e-01 -2.77766258e-01 1.38193101e-01\\n3.83717149e-01 2.13652223e-01 -1.71549916e-01 -2.23110259e-01\\n-2.52121016e-02 -4.94314730e-01 2.09761068e-01 -3.30540717e-01\\n-1.26056790e-01 -1.46898553e-01 2.22121134e-01 -7.53607601e-02\\n4.37708832e-02 -3.27965051e-01 4.96296585e-01 -1.99786767e-01\\n-3.84689242e-01 -1.52160496e-01 1.13038793e-01 -6.71877386e-03\\n2.90878177e-01 -4.57247913e-01 -8.59604925e-02 2.40713045e-01\\n3.13264430e-02 3.02072684e-03 2.21206695e-01 -5.71260564e-02\\n-1.72777936e-01 2.29112029e-01 -5.92693686e-01 4.41704430e-02\\n6.93508029e-01 2.16440737e-01 9.44155976e-02 1.93545997e-01\\n1.89588726e-01 3.29721212e-01 5.19270420e-01 -3.85815129e-02\\n-2.60146689e-02 3.30117077e-01 -7.49609992e-02 -5.14422357e-01\\n-1.64178293e-02 -6.90113381e-02 -1.46261796e-01 -3.30333859e-01\\n5.92500806e-01 3.05447727e-01 -3.70984644e-01 -3.96625876e-01\\n-5.24157435e-02 -7.65533820e-02 3.15376908e-01 5.88367991e-02\\n9.59437564e-02 -1.77370578e-01 6.23382568e-01 4.11120337e-03\\n2.58878380e-01 4.99415427e-01 -2.23764181e-01 -3.27023894e-01\\n-3.81400771e-02 2.28636205e-01 9.58997533e-02 5.82797706e-01\\n-1.99544638e-01 2.48014122e-01 -2.51014950e-03 1.51223525e-01\\n-1.37478128e-01 1.39519379e-01 3.23196352e-01 7.43699893e-02\\n2.74971843e-01 4.86505069e-02 3.13049614e-01 4.54655409e-01\\n1.14561625e-01 4.06999350e-01 2.44747743e-01 -5.01292385e-03\\n2.92616934e-01 6.24267757e-01 3.98849845e-01 2.05520838e-01\\n9.15469304e-02 1.31170824e-01 -8.34355224e-03 -9.42473114e-02\\n2.98534840e-01 3.63581330e-01 1.83475420e-01 7.57415354e-01\\n2.66097486e-01 3.45554709e-01 6.67964816e-01 -7.07788646e-01\\n-3.71760726e-01 4.05201204e-02 5.45309544e-01 -3.66362095e-01\\n-6.98391050e-02 2.18890563e-01 -3.62161100e-01 2.31792539e-01\\n-5.56723416e-01 -2.26506144e-01 -2.06937846e-02 -2.61557549e-01\\n6.94031343e-02 -1.30092293e-01 -1.64267972e-01 9.55166444e-02\\n-1.88375145e-01 -1.78112999e-01 -2.52038866e-01 -1.61634296e-01\\n-2.69474834e-01 -4.02885936e-02 8.35449202e-04 -1.53247252e-01\\n-2.40387172e-01 -3.31419140e-01 -1.43797219e-01 7.97109082e-02\\n4.36672419e-01 -1.66872621e-01 -2.01521680e-01 -2.22005159e-01\\n1.24346927e-01 2.99951226e-01 6.31840527e-01 -6.47152215e-02\\n6.95404634e-02 -3.65861580e-02 -2.26565167e-01 7.69360876e-03\\n1.27081364e-01 -4.97558825e-02 3.76648381e-02 4.27637070e-01\\n-2.92656422e-01 -1.74525827e-01 1.70096651e-01 2.28486598e-01\\n-4.26923245e-01 -2.30515897e-02 6.63986895e-03 3.15136075e-01\\n5.69084622e-02 2.79291004e-01 -2.14494243e-01 1.42237037e-01\\n-8.87006223e-02 -5.13788521e-01 4.24557716e-01 -9.82723460e-02\\n-1.92426711e-01 1.37909681e-01 2.61321843e-01 2.21965134e-01\\n-2.44948596e-01 -1.62650615e-01 -1.03462324e-01 2.05686703e-01\\n-4.68646847e-02 3.96594554e-01 -1.62942603e-01 -1.18335366e-01\\n-2.76485860e-01 2.85828888e-01 -4.31293733e-02 2.23143354e-01\\n-2.43220050e-02 3.19200069e-01 5.32066412e-02 4.72373590e-02\\n1.79505885e-01 8.35023224e-02 -1.89960346e-01 -2.98485667e-01\\n-2.84553051e-01 -2.47325543e-02 7.51628205e-02 -9.05780494e-02\\n1.64595917e-01 -3.51225585e-01 -7.36308098e-02 -2.48227671e-01\\n-2.13619977e-01 -4.37639117e-01 -1.83824167e-01 -1.47303781e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Define and build data management infrastructure of our development platform with special focus on efficient data pipelines for usage in production environments Study, evaluate and select appropriate infrastructure and tooling Define data management processes and best practices for the full data lifecycle Work with clients to model data landscapes, define data pipelines and curate data for usage in data-driven use cases and services Mentor and educate team members and customers Your profile: Minimum qualifications Master’s degree in Computer Science or equivalent subject Very strong analytical skills with a mindset to make things “as simple as possible, but not simpler” Profound experience with relational databases and very good command of SQL Experience with data pipelines and ETL Experience with BigData platforms (e.g. Spark, Hadoop) Experience with data preparation and data scraping for machine learning models and their deployment to production Programming experience (e.g. Python, R, Java, PL/SQL, etc.) Strong interest in banking and financial services industry Open, curious, team-oriented personality with persistency and tenacity High sense of ownership and quality Excellent communication skills, both towards customers and peers Ability to think ahead, work independently and set priorities Very strong command of English, good command of German (verbal and written) Willingness to travel (mostly within Switzerland, occasionally EU/UK) Benötigte Skills SQL ETL Python Python R JAVA PL/SQL PLSQL Englisch Reisetaetigkeit',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Team Oriented\", \"Infrastructure\", \"Persistence\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Python Server Pages\", \"Tooling\", \"Programming (Music)\", \"Data Scraping\", \"Computer Science\", \"Data Management\", \"Data Modeling\", \"Good Agricultural Practices\", \"Financial Services\", \"Landscaping\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Pipeline\", \"Management Process\", \"Extract Transform Load (ETL)\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Personalization\", \"R (Programming Language)\", \"Data Curation\", \"Banking\", \"Relational Databases\", \"Service Industries\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Serbian', 'Sinhalese']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Chiasso',\n", + " 'industry': 'Film Production & Distribution',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.10012941e-01 2.50470519e-01 4.47021544e-01 7.62318075e-03\\n4.62903321e-01 -1.23481639e-01 1.25570491e-01 2.44325876e-01\\n3.67624722e-02 -4.38723087e-01 -1.22936435e-01 -2.46223420e-01\\n-9.11628082e-03 -9.29438695e-03 5.71359470e-02 3.63453090e-01\\n2.53457546e-01 -3.03699821e-02 -2.00233787e-01 4.40562785e-01\\n1.52866721e-01 -6.13864996e-02 6.80958107e-02 6.93907142e-01\\n4.41830158e-01 -4.54013608e-03 -2.18034536e-02 -7.38844723e-02\\n-2.11520836e-01 -3.17640036e-01 3.76719534e-01 -3.89324762e-02\\n2.38037594e-02 -3.50452602e-01 4.59056944e-02 1.72284432e-02\\n-1.31245151e-01 3.04484181e-03 1.87065490e-02 1.28031567e-01\\n-3.92087758e-01 -1.23583615e-01 8.59400630e-03 2.02191919e-02\\n-2.11099193e-01 -3.12084407e-01 1.07930720e-01 -1.05607897e-01\\n1.37010172e-01 -1.06115431e-01 -4.44776684e-01 3.70078236e-01\\n-1.88915402e-01 -2.33930528e-01 3.48369181e-01 6.47744775e-01\\n4.44919392e-02 -5.04125237e-01 -5.12717426e-01 -2.86719531e-01\\n2.40827035e-02 -4.05313857e-02 1.82288419e-02 -8.89614522e-02\\n2.47844741e-01 1.33271776e-02 4.70391214e-02 2.86254257e-01\\n-6.57482862e-01 -4.78459150e-02 -2.32855380e-01 2.18541101e-02\\n-3.31831217e-01 -1.59573227e-01 -3.10385317e-01 -9.38830227e-02\\n2.28110701e-03 5.07326484e-01 1.03619002e-01 -1.55620920e-02\\n-2.12682113e-01 1.42840058e-01 -3.02678108e-01 2.16910616e-01\\n2.14599013e-01 1.06917620e-01 3.28376353e-01 3.62879217e-01\\n-4.29095685e-01 4.19654220e-01 1.63889796e-01 -3.97462189e-01\\n2.85219610e-01 7.79108405e-02 5.06142735e-01 1.44823343e-01\\n1.04369193e-01 2.29737878e-01 -1.33120790e-01 2.49118775e-01\\n2.01877475e-01 -1.39971942e-01 -1.34994239e-01 -7.79017806e-02\\n1.54902413e-03 -1.09885558e-01 -1.25419423e-02 1.33354589e-01\\n-3.39495599e-01 5.18693030e-01 1.54752046e-01 -2.36832231e-01\\n-5.49510121e-02 -4.15887833e-01 -1.02557279e-01 -1.75335348e-01\\n-2.74720285e-02 1.83461428e-01 1.22072347e-01 1.80916414e-01\\n1.14876524e-01 3.59974988e-02 1.27981812e-01 8.67739558e-01\\n-6.35130405e-02 9.16547477e-02 -2.57079810e-01 2.48824105e-01\\n9.98084694e-02 -3.10137630e-01 2.39390135e-01 1.40937150e-01\\n-1.06097065e-01 -8.28493237e-02 -2.39718884e-01 2.44963765e-01\\n-1.51680335e-01 -2.31603056e-01 -2.40500540e-01 1.64550528e-01\\n-1.08818166e-01 -3.25645804e-01 5.18735170e-01 7.27473125e-02\\n3.66622433e-02 -4.17074934e-02 -1.15242466e-01 -1.17945679e-01\\n-1.40849769e-01 1.97806969e-01 7.46065453e-02 1.45685196e-01\\n-2.95734733e-01 -2.95975894e-01 -2.32712477e-01 2.36166328e-01\\n-3.67443323e-01 4.33284156e-02 -2.53742278e-01 -1.26388326e-01\\n3.40133667e-01 1.00808889e-01 -4.23965037e-01 3.15503776e-01\\n5.73892519e-02 2.17308700e-02 -1.33384109e-01 2.85237551e-01\\n-1.41019940e-01 2.38344729e-01 -2.95608807e-02 -1.35206189e-02\\n6.92211628e-01 2.09686011e-01 1.11002862e-01 -3.18190008e-02\\n3.71634990e-01 -7.82537311e-02 1.72736987e-01 1.14630967e-01\\n-5.93129814e-01 2.24569887e-01 -1.18505806e-01 -9.42846090e-02\\n2.02682167e-01 -1.19505987e-01 1.60792902e-01 -3.26074064e-01\\n5.23647219e-02 -1.01331547e-02 -3.60718668e-01 -3.64175647e-01\\n-1.95972383e-01 -1.50333550e-02 3.98813546e-01 -3.07920992e-01\\n-3.43605727e-02 2.31086165e-01 -5.43899894e-01 -8.85231569e-02\\n3.18682313e-01 2.07243979e-01 2.02752739e-01 2.08226055e-01\\n-7.87236691e-02 -4.28158104e-01 8.77275765e-02 -4.39233780e-01\\n-3.03926557e-01 1.84423953e-01 -2.90903538e-01 2.32999921e-01\\n7.16643184e-02 -1.77714974e-05 -1.92187011e-01 8.58783573e-02\\n-1.13346770e-01 -1.35578021e-01 1.41854897e-01 1.08108968e-02\\n2.08949238e-01 1.68700024e-01 -3.94689441e-01 4.46140021e-01\\n-2.10058153e-01 4.28580642e-01 6.09100796e-02 -9.37987447e-01\\n5.27969003e-01 1.96625203e-01 -9.08250809e-02 -3.48471373e-01\\n4.60195720e-01 -2.70923495e-01 1.78242415e-01 1.25302896e-01\\n-2.97267973e-01 -2.76605546e-01 2.57663995e-01 -1.89104229e-01\\n-2.61997879e-01 5.23096919e-01 1.05462879e-01 1.14958160e-01\\n1.95214182e-01 -6.62928373e-02 -1.90549254e-01 1.30824298e-01\\n-7.01125786e-02 -1.71031818e-01 -5.09049892e-01 9.39098448e-02\\n-1.20466843e-01 -4.30068314e-01 -1.43864408e-01 -5.29655814e-01\\n-2.89729059e-01 -4.62442875e-01 -2.12303102e-01 2.20529452e-01\\n2.05937028e-01 2.11702973e-01 -1.40874177e-01 2.23908909e-02\\n-4.60025221e-02 -6.28447890e-01 3.22187692e-03 1.30759418e-01\\n3.92721951e-01 1.89028352e-01 6.16211966e-02 -4.76873741e-02\\n-5.26029132e-02 5.38343430e-01 -4.85375404e-01 -1.02256849e-01\\n2.07169130e-01 1.30829886e-01 4.88320440e-02 -2.56732821e-01\\n4.77302819e-05 1.95507467e-01 -2.53248215e-01 1.70020670e-01\\n3.37195694e-02 -5.72493635e-02 2.94688165e-01 -3.88828143e-02\\n-3.89996946e-01 -2.29939967e-01 -1.79155078e-02 2.80436128e-01\\n-5.88391066e-01 -2.05896407e-01 7.22771227e-01 9.18255672e-02\\n6.50228709e-02 1.25886798e-01 3.01764339e-01 -6.77710250e-02\\n-2.13477463e-01 -1.87686026e-01 3.08631450e-01 1.79099128e-01\\n1.90205395e-01 6.14645258e-02 -1.62507772e-01 -7.37720311e-01\\n-3.44775796e+00 -1.91172779e-01 1.76672369e-01 -2.24034429e-01\\n1.84050381e-01 -1.20466061e-01 9.53514427e-02 -1.09181389e-01\\n-2.83488125e-01 5.99379018e-02 -3.43893468e-01 -3.17648426e-02\\n1.45940855e-01 3.44773591e-01 1.46317691e-01 2.20983759e-01\\n1.50097072e-01 -1.77730531e-01 7.39100575e-03 2.95644373e-01\\n-2.61173785e-01 -5.95391393e-01 2.54958451e-01 4.96640354e-02\\n2.76129901e-01 2.40309894e-01 -4.16081727e-01 -9.39517245e-02\\n-1.87265128e-01 -1.88248605e-01 6.85101599e-02 -1.65217102e-01\\n-1.21384442e-01 3.62184346e-01 2.48463124e-01 -1.76614001e-02\\n8.69665295e-02 -4.95112658e-01 -5.13296798e-02 -3.55179727e-01\\n7.31112882e-02 -7.18506813e-01 1.79983713e-02 -1.26108527e-01\\n5.50911784e-01 -1.72152013e-01 1.72777236e-01 7.36195296e-02\\n2.33043879e-01 1.37694985e-01 -2.97690555e-03 8.18728432e-02\\n-2.08410203e-01 -1.64473727e-01 -9.43721533e-02 -5.95708974e-02\\n5.65099955e-01 4.93477792e-01 -2.35337570e-01 -1.61434025e-01\\n-9.77121294e-02 -2.89260358e-01 -4.93865967e-01 -2.83251077e-01\\n-2.01496512e-01 -2.13037342e-01 -7.29650795e-01 -3.96988511e-01\\n-2.21128583e-01 -8.86087269e-02 -2.25295991e-01 7.05511212e-01\\n-2.62344748e-01 -3.25369298e-01 -2.24544778e-02 -3.19504797e-01\\n5.94823509e-02 -1.12579823e-01 7.60319829e-02 -7.04938099e-02\\n-2.35558450e-01 -3.85741532e-01 1.73618004e-01 2.10461896e-02\\n-2.41451666e-01 -2.65895873e-01 1.46236315e-01 -6.88198581e-02\\n-2.62146860e-01 -4.36277568e-01 4.11964834e-01 1.00677773e-01\\n2.13773400e-01 -8.84544849e-03 4.00483191e-01 2.55469549e-02\\n2.98367441e-01 -1.84673995e-01 5.19332252e-02 -4.18981552e-01\\n1.27792761e-01 2.41414905e-02 6.68128669e-01 -2.00941101e-01\\n1.22046746e-01 8.20060670e-02 -3.10632676e-01 -2.17405520e-02\\n3.95080686e-01 -6.14599846e-02 3.98053080e-02 -2.19420254e-01\\n2.52758324e-01 -3.18713725e-01 -2.80584276e-01 5.47411852e-03\\n1.15285553e-01 7.10785270e-01 -1.69613324e-02 -4.53787863e-01\\n-2.59640664e-01 3.60180259e-01 -8.74342620e-02 -1.95133209e-01\\n-2.17105061e-01 1.32989019e-01 -2.80065060e-01 8.25791135e-02\\n9.76574719e-02 8.70897807e-03 -2.90812433e-01 -1.18685216e-01\\n-1.32323727e-01 2.59659529e-01 2.65245289e-01 1.84636116e-02\\n-1.98791884e-02 -4.13618624e-01 -4.06362638e-02 2.10191756e-01\\n1.06387123e-01 2.69592583e-01 1.47949070e-01 -3.09367061e-01\\n-3.87316979e-02 2.70249963e-01 -1.61175370e-01 1.22753806e-01\\n-2.54008949e-01 1.34274036e-01 -5.28644502e-01 -3.26742232e-01\\n-2.99596965e-01 -3.67729068e-01 1.40982997e-02 4.03252006e-01\\n5.83771132e-02 -5.59020191e-02 3.25823314e-02 -4.28824067e-01\\n2.75585234e-01 -3.23800258e-02 2.45673612e-01 9.68115777e-02\\n1.17397442e-01 5.80042124e-01 1.19286850e-02 -2.32902691e-01\\n-9.16453823e-02 -5.84164076e-03 -3.08908492e-01 -1.20897010e-01\\n2.11256575e-02 -4.19384241e-01 -5.78539446e-02 4.17571425e-01\\n1.93481386e-01 -2.00555071e-01 -1.21428184e-01 2.53280342e-01\\n-7.32681528e-02 -3.08266789e-01 -1.98888183e-01 -1.42246336e-01\\n3.98349404e-01 -4.24597152e-02 2.99416929e-01 -4.40168142e-01\\n3.85698769e-03 -1.20824561e-01 -8.17181244e-02 4.82242882e-01\\n9.03292447e-02 9.30096731e-02 -6.00879043e-02 4.23767604e-03\\n5.61940134e-01 -2.26192474e-02 -7.89087862e-02 4.15842608e-02\\n1.31305724e-01 -2.16246307e-01 -5.49400568e-01 7.76759461e-02\\n2.11669784e-02 -1.59281999e-01 3.95505540e-02 1.52924970e-01\\n9.10619944e-02 1.88257359e-02 -5.72728336e-01 -2.69188702e-01\\n-3.86804700e-01 -6.63298294e-02 9.15820077e-02 -6.65654063e-01\\n-1.15531310e-01 1.94864161e-02 -5.37414730e-01 2.85714805e-01\\n-1.34082735e-01 -8.65770578e-02 8.66236016e-02 2.66879164e-02\\n-2.71023601e-01 -1.83643997e-01 1.38369665e-01 7.02836439e-02\\n-2.98597574e-01 -1.48576126e-01 1.79574877e-01 -9.39351082e-01\\n1.98692918e-01 3.17853093e-02 -1.48597896e-01 4.58805785e-02\\n-6.66105375e-02 -6.60189509e-01 2.14171246e-01 -4.10021335e-01\\n-8.38513523e-02 -3.78951035e-03 -2.16160208e-01 -4.28993344e-01\\n6.69576079e-02 -7.70870000e-02 -3.60684782e-01 3.49363804e-01\\n-3.14594358e-01 3.67190003e-01 5.86253330e-02 1.05138928e-01\\n1.09997109e-01 -3.06649148e-01 -3.99776287e-02 -4.06819642e-01\\n-5.40746808e-01 -8.80865157e-02 -2.89883316e-01 -1.19079255e-01\\n6.20841756e-02 -3.32511544e-01 -1.45653754e-01 5.27217984e-02\\n2.95580089e-01 1.62493378e-01 -6.35830015e-02 -2.88838208e-01\\n-5.77366650e-02 -5.09525597e-01 4.12790850e-02 7.86661357e-03\\n-1.22106746e-02 -1.00146905e-01 3.86836737e-01 5.51682189e-02\\n1.74759194e-01 -3.57936442e-01 5.59384763e-01 -3.30532551e-01\\n-2.88161874e-01 -8.81625041e-02 -4.28027548e-02 1.49170950e-01\\n3.39139372e-01 -4.26507115e-01 -2.70741675e-02 3.27434003e-01\\n1.53594956e-01 9.05248299e-02 3.36502850e-01 -1.47999644e-01\\n-1.27233207e-01 1.97953060e-01 -3.61297190e-01 2.09337264e-01\\n7.11478710e-01 -4.82371859e-02 5.61578982e-02 1.18219934e-01\\n8.48385766e-02 2.30178833e-01 6.17283463e-01 -1.18414551e-01\\n-1.69422269e-01 4.13275808e-01 7.91588649e-02 -6.13373756e-01\\n-1.20063111e-01 -7.75925815e-03 -8.71705711e-02 -2.88340867e-01\\n5.99007308e-01 3.78376871e-01 -3.44215155e-01 -2.44394675e-01\\n-1.40219122e-01 -1.60340875e-01 7.03253672e-02 2.84910873e-02\\n1.30121291e-01 2.98768729e-02 5.67786098e-01 -8.22214931e-02\\n1.71368569e-01 4.61361170e-01 -1.17683873e-01 -3.79283994e-01\\n-1.03428736e-01 1.79372966e-01 9.40807238e-02 3.99562150e-01\\n-1.46710813e-01 2.08850533e-01 1.02987394e-01 7.45752305e-02\\n-7.22869933e-02 -4.52621579e-02 1.06191769e-01 7.38420561e-02\\n1.16560459e-01 1.07244954e-01 5.04447401e-01 4.31542933e-01\\n4.00300741e-01 4.53484833e-01 3.04671258e-01 1.19413100e-02\\n5.91943562e-01 7.32437491e-01 3.23637128e-01 1.51883885e-01\\n-8.27608183e-02 5.83784245e-02 1.13580018e-01 9.21359286e-04\\n4.00977731e-01 4.25269485e-01 8.27398300e-02 7.59780526e-01\\n4.40533578e-01 2.89181948e-01 5.50154865e-01 -6.40766740e-01\\n-3.46369147e-01 1.08832687e-01 5.07788539e-01 -2.19588935e-01\\n6.81672990e-02 1.80244774e-01 -5.94211593e-02 7.11943954e-02\\n-4.75390851e-01 -3.69595319e-01 -3.29450630e-02 2.20857561e-03\\n1.25821665e-01 -1.57366082e-01 -2.72083104e-01 1.53144300e-01\\n-5.56357093e-02 -1.35593921e-01 -4.62019503e-01 -6.21635914e-02\\n-2.14661196e-01 -3.49476039e-02 -1.13270804e-01 -9.83854383e-02\\n-6.86635226e-02 -3.02266419e-01 -2.24063158e-01 4.84197540e-03\\n1.90172717e-01 -1.76232904e-01 -1.63900495e-01 -1.51675224e-01\\n2.25549817e-01 1.98618487e-01 5.85257173e-01 -1.18914410e-01\\n9.39056277e-02 -3.71392995e-01 -2.28455395e-01 1.35586649e-01\\n2.29180649e-01 4.77072932e-02 2.39419267e-02 4.63004887e-01\\n-3.55399609e-01 -1.12099037e-01 1.29001975e-01 3.28360319e-01\\n-3.93815547e-01 -7.02106208e-03 -1.50103256e-01 1.46630272e-01\\n1.33815676e-01 1.71488792e-01 -1.37916759e-01 -9.00065601e-02\\n-1.40100434e-01 -5.20996690e-01 3.12228352e-01 -3.54125425e-02\\n-1.16210610e-01 2.34234333e-03 1.85509741e-01 1.99718326e-01\\n-2.79738724e-01 -2.30321120e-02 -1.68226153e-01 1.43030733e-01\\n4.91208732e-02 2.88100481e-01 -3.06857765e-01 -2.05781162e-01\\n-1.92017049e-01 2.26385653e-01 -6.21558353e-02 1.45950302e-01\\n-1.30987801e-02 3.68991464e-01 1.69430822e-01 1.70710325e-01\\n4.22643721e-01 8.54823887e-02 -1.24446549e-01 -1.45083398e-01\\n-3.09533983e-01 -2.41282701e-01 -2.54385658e-02 -8.20061751e-03\\n1.59541160e-01 -3.19271326e-01 -3.46607044e-02 -1.34387702e-01\\n-2.85385549e-01 -2.86997914e-01 -1.14202261e-01 8.40340462e-03]]',\n", + " 'job_description': 'Job DescriptionWe are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you dont feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios Youll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! -Blog: https://technology.lastminute.com/ -Twitter: https://twitter.com/lastminute_tech/Qualifications null Additional Information null',\n", + " 'soft_skills': '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Vert.x\", \"Extreme Programming\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '31',\n", + " 'job_title': 'report specialist (data model - data.one / controlling)',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.25119507e-01 8.17296654e-02 4.75452662e-01 -4.57868166e-02\\n4.19818580e-01 -1.04036637e-01 1.34177998e-01 2.97945648e-01\\n-1.21588849e-01 -3.26886237e-01 4.67494056e-02 -3.42348874e-01\\n5.22543304e-02 1.05158746e-01 -5.45630790e-02 4.21756685e-01\\n2.05081731e-01 1.78786427e-01 -1.47596404e-01 2.74296910e-01\\n2.82686442e-01 -2.65080005e-01 2.36876994e-01 4.95839745e-01\\n4.31182474e-01 2.98775341e-02 -2.05575721e-03 3.25127281e-02\\n-3.16102564e-01 -4.02572900e-01 5.12588620e-01 9.98925641e-02\\n-1.26051903e-01 -1.54986337e-01 1.66265279e-01 8.81956704e-03\\n-1.60408869e-01 -4.30136696e-02 -3.58815701e-03 1.38989374e-01\\n-4.83927667e-01 -1.45400450e-01 -6.59676343e-02 -1.45794556e-01\\n-2.63517767e-01 -4.15705889e-01 7.43594691e-02 -1.41728129e-02\\n7.72370622e-02 2.07193289e-02 -5.07877469e-01 3.57519329e-01\\n-3.25596541e-01 -1.26780763e-01 2.07479626e-01 6.20237470e-01\\n-2.61015207e-01 -5.87778151e-01 -4.78216708e-01 -1.73907265e-01\\n2.15861350e-01 -2.90848106e-01 5.14248013e-02 -2.26675153e-01\\n3.67293298e-01 2.17011906e-02 6.91262539e-03 4.98481512e-01\\n-6.29028022e-01 -3.68082710e-02 -2.66227573e-01 -5.21527603e-02\\n-1.94457784e-01 -1.34328604e-01 -1.72393799e-01 -7.59694204e-02\\n-1.92938969e-01 4.48388904e-01 9.09083709e-02 7.86131397e-02\\n-7.08912686e-02 2.18386009e-01 -3.40767711e-01 1.94131777e-01\\n1.46489173e-01 2.05094919e-01 1.56100363e-01 1.71552643e-01\\n-2.12246895e-01 6.12757206e-01 3.40252429e-01 -2.96824306e-01\\n5.95959201e-02 -1.69138163e-02 4.10388082e-01 -1.78385973e-01\\n4.37658951e-02 -4.01632860e-03 -1.78431273e-01 2.68595517e-01\\n2.19346523e-01 -2.45952487e-01 1.41088530e-01 -1.94230322e-02\\n-6.33862093e-02 -8.14903378e-02 -1.98960360e-02 3.64594012e-01\\n-1.27840176e-01 4.87882197e-01 1.11782655e-01 -1.21525869e-01\\n2.04876848e-02 -5.97794056e-01 -2.18537420e-01 3.48105542e-02\\n1.77411720e-01 8.21160600e-02 5.85173704e-02 2.87171632e-01\\n1.59698173e-01 5.01017347e-02 1.57881096e-01 6.98797345e-01\\n-2.84742145e-03 1.49418086e-01 -8.05258602e-02 3.13565731e-01\\n6.70404062e-02 -2.49112681e-01 1.85600534e-01 2.51727283e-01\\n2.60673277e-02 -1.98142573e-01 -1.59571037e-01 1.90080673e-01\\n-8.38894024e-02 -1.91082716e-01 -1.62855297e-01 1.86677650e-01\\n-1.26657009e-01 -3.18315029e-01 5.41479051e-01 6.16897009e-02\\n1.43709779e-01 1.00808600e-02 -1.30385816e-01 -1.82990074e-01\\n-3.31558622e-02 2.76975363e-01 8.41366649e-02 -3.49429029e-04\\n1.83873344e-02 -1.79673195e-01 -2.26587176e-01 -4.80349250e-02\\n-1.86663225e-01 1.37206987e-01 -2.22942188e-01 -1.12273946e-01\\n5.03137946e-01 4.75715362e-02 -1.50686622e-01 2.93811053e-01\\n5.94460778e-02 7.08826929e-02 -1.00459561e-01 3.57521981e-01\\n-4.06455025e-02 1.46811441e-01 -1.73040122e-01 -2.19505951e-01\\n5.97164512e-01 7.09445626e-02 1.52518898e-01 9.08023044e-02\\n2.67396271e-01 -1.04380613e-02 4.25968543e-02 1.03357755e-01\\n-6.92473114e-01 4.63571221e-01 -1.06400385e-01 -2.49347836e-01\\n1.04804508e-01 -9.16299000e-02 2.39334494e-01 -3.95060867e-01\\n6.62657842e-02 -1.43846786e-02 -3.34883720e-01 -2.65495896e-01\\n6.18168525e-02 -3.99862789e-02 3.56621057e-01 -4.17067945e-01\\n-4.11277898e-02 1.58342525e-01 -4.39974815e-01 5.29200025e-02\\n2.88446486e-01 1.68907374e-01 2.81745493e-01 1.55254349e-01\\n-1.37071714e-01 -3.55300933e-01 3.80256288e-02 -3.14727873e-01\\n1.23672010e-02 2.47758046e-01 -3.04155380e-01 3.07503611e-01\\n6.06116615e-02 6.15633987e-02 -1.96092620e-01 6.20562993e-02\\n4.11489196e-02 -8.37136582e-02 2.69458115e-01 8.78892187e-03\\n2.73510307e-01 1.18763395e-01 -3.42997104e-01 3.89796764e-01\\n-1.31342009e-01 4.87222254e-01 4.44708727e-02 -6.26985967e-01\\n3.68440121e-01 2.31989130e-01 -2.58964766e-02 -3.12917739e-01\\n6.43969953e-01 -2.13615060e-01 3.19836438e-02 1.26654789e-01\\n-3.82118165e-01 -2.63270527e-01 5.87361716e-02 -3.52757692e-01\\n-2.29015440e-01 5.35241187e-01 1.55194759e-01 9.94040370e-02\\n6.71650842e-02 -8.22241902e-02 -7.81099573e-02 1.09575130e-01\\n5.86935394e-02 -1.88650578e-01 -5.20494878e-01 -3.40065248e-02\\n-5.34411892e-02 -3.74672353e-01 -8.81594047e-02 -3.46321762e-01\\n-2.45186463e-01 -2.39187822e-01 -3.60243320e-02 6.72907531e-02\\n1.25554442e-01 1.98840648e-01 1.01027615e-01 1.04281224e-01\\n-3.13410342e-01 -5.72093189e-01 -1.99471172e-02 1.38688803e-01\\n2.92901248e-01 9.08770189e-02 1.33507594e-01 -1.59680054e-01\\n-2.35787239e-02 6.17864311e-01 -2.21300140e-01 -1.57352388e-02\\n1.85899243e-01 2.18938217e-01 1.71602562e-01 -8.88934731e-02\\n1.33885711e-01 1.53315887e-01 1.10288141e-02 1.42469972e-01\\n3.12612741e-03 -1.40243858e-01 2.99757063e-01 -5.85593283e-02\\n-2.06748202e-01 -3.88803929e-01 -3.45895946e-01 1.14543490e-01\\n-4.85015631e-01 -1.75469771e-01 5.55829167e-01 6.96739033e-02\\n5.70364203e-03 3.11277926e-01 2.25486472e-01 -6.30392879e-02\\n-1.82556078e-01 -1.45755529e-01 2.85941809e-01 1.80132180e-01\\n-7.17617720e-02 9.98124629e-02 -1.65643737e-01 -5.46387136e-01\\n-3.82287645e+00 -1.47379398e-01 -5.52464509e-03 -4.06610072e-01\\n3.33110511e-01 -1.28473073e-01 2.90154070e-01 -5.36772273e-02\\n-1.78628951e-01 -2.80204657e-02 -4.98984344e-02 -1.24896035e-01\\n2.22341463e-01 1.47422627e-01 1.75097868e-01 4.05243456e-01\\n1.52597234e-01 -3.84450704e-01 -2.06567943e-02 3.66045177e-01\\n-2.29017690e-01 -5.98092198e-01 2.52634138e-01 -4.19550240e-02\\n2.85055161e-01 3.02909911e-01 -4.59258080e-01 4.42867614e-02\\n-2.99988717e-01 -1.93942472e-01 1.18897878e-01 -3.36513340e-01\\n4.40913774e-02 1.34687617e-01 1.70701057e-01 -1.18515000e-01\\n1.24307908e-01 -2.30261579e-01 -1.34593830e-01 -4.62908715e-01\\n-4.82969023e-02 -5.39837718e-01 -3.13606597e-02 1.32062659e-03\\n6.74695551e-01 -2.44371369e-01 7.36206546e-02 -6.85774088e-02\\n2.03874350e-01 2.95811713e-01 4.50821854e-02 -1.72503427e-01\\n-1.59017399e-01 -2.02915519e-01 -8.15362334e-02 -3.09169330e-02\\n3.74997616e-01 6.23771727e-01 -3.62632483e-01 -1.53531700e-01\\n6.17780760e-02 -3.64223808e-01 -4.63305712e-01 -3.10357571e-01\\n-1.03789434e-01 -1.84965134e-01 -6.37293279e-01 -4.62479681e-01\\n-1.30009577e-01 -8.76208544e-02 -7.29476288e-02 3.53935897e-01\\n-3.77743185e-01 -4.71830875e-01 -1.40914470e-01 -3.48875672e-01\\n2.98031807e-01 7.91057572e-02 1.24557711e-01 -1.73568204e-01\\n-2.41144910e-01 -3.47097397e-01 9.00551081e-02 4.02975222e-03\\n1.21871696e-03 -4.85602207e-02 2.41844654e-01 -2.44461820e-01\\n-4.85590786e-01 -4.25055802e-01 2.45598450e-01 -7.64952749e-02\\n3.05879653e-01 3.30665819e-02 7.80329034e-02 -1.17368817e-01\\n3.69979411e-01 -3.33373070e-01 1.66100502e-01 -2.81108230e-01\\n1.18521996e-01 7.09378570e-02 4.89725292e-01 -3.57012093e-01\\n8.19294602e-02 -1.84666943e-02 -3.66131246e-01 6.02259184e-04\\n3.04387480e-01 -2.06367612e-01 1.87571570e-01 -3.38744879e-01\\n3.69909972e-01 -2.84713387e-01 -2.72264004e-01 6.66050315e-02\\n3.55185159e-02 5.11834323e-01 9.82084349e-02 -3.08612347e-01\\n-1.06595948e-01 4.05138314e-01 -2.08627105e-01 -1.13661133e-01\\n-3.52482080e-01 -2.96414457e-02 -2.65709519e-01 1.85057431e-01\\n8.03125743e-03 -5.91334980e-03 -3.45769227e-01 -1.05608799e-01\\n-2.19269276e-01 2.98034608e-01 3.39207977e-01 7.55533427e-02\\n6.02764124e-03 -1.94743514e-01 7.07101449e-02 1.45102218e-01\\n5.51741533e-02 2.91190118e-01 -1.28281384e-03 2.06884462e-02\\n1.11952610e-03 2.59599507e-01 -1.63524240e-01 1.49572372e-01\\n-2.03070149e-01 8.34550187e-02 -3.27810466e-01 -4.18912143e-01\\n-1.84639260e-01 -1.70302168e-01 -9.03251246e-02 3.18992525e-01\\n2.56783664e-01 -1.02500498e-01 -2.50506811e-02 -2.98250407e-01\\n1.29516348e-01 -5.90546094e-02 2.05861643e-01 2.20728755e-01\\n-2.20624264e-02 4.38368976e-01 1.71892881e-01 -1.59902975e-01\\n-1.13861971e-01 -6.30355477e-02 -3.32198411e-01 -2.34089196e-02\\n-5.39220776e-03 -3.29054624e-01 -3.58321667e-02 4.37983662e-01\\n1.51632503e-01 -2.28649333e-01 -1.11852750e-01 4.35770005e-01\\n-1.64813668e-01 -3.11346322e-01 -2.04003066e-01 1.08577892e-01\\n2.78874367e-01 1.44889221e-01 3.38827431e-01 -4.75011349e-01\\n1.15252621e-01 -5.87808974e-02 -1.69820085e-01 4.01836544e-01\\n-1.11007020e-01 7.24424198e-02 -1.23228021e-01 -1.55766681e-01\\n3.68384391e-01 -8.84340182e-02 4.30168770e-02 3.39945167e-01\\n8.08892399e-02 1.35536501e-02 -3.85404348e-01 3.43506150e-02\\n-3.17491032e-02 -3.20899263e-02 -4.16854434e-02 1.44856319e-01\\n-8.71672183e-02 -1.16824070e-02 -5.25742471e-01 -1.97916061e-01\\n-3.97368878e-01 1.55158073e-01 -6.35814574e-03 -5.14515579e-01\\n-9.42626372e-02 -9.61007550e-02 -4.21151102e-01 2.99530506e-01\\n7.82616138e-02 1.38130918e-01 2.14673713e-01 -9.45240632e-02\\n-1.25438109e-01 1.88868850e-01 1.95379540e-01 4.81183119e-02\\n-2.27698371e-01 -5.04473858e-02 -1.23740070e-01 -8.74879658e-01\\n1.04950957e-01 1.10371104e-02 -1.62471682e-01 5.94913475e-02\\n-7.59907812e-02 -5.72740853e-01 1.41591415e-01 -2.42249727e-01\\n-2.14781404e-01 -9.26003382e-02 -6.60485253e-02 -5.09054244e-01\\n-2.51859389e-02 7.26720542e-02 -1.40108019e-01 2.79927492e-01\\n-2.28024587e-01 4.33173567e-01 -1.00698404e-01 1.45759001e-01\\n-7.35339001e-02 -2.70166665e-01 1.94200873e-01 -4.51548964e-01\\n-2.66389996e-01 -3.86697315e-02 -3.03812176e-01 1.02478944e-01\\n-1.46498056e-02 -2.96976537e-01 -1.82021724e-03 1.95539996e-01\\n3.65542710e-01 3.08462270e-02 -3.74710299e-02 1.24880662e-02\\n-3.72406207e-02 -4.45675135e-01 -4.01471481e-02 -6.23727441e-02\\n-2.41013407e-03 -2.05242649e-01 -3.87418009e-02 -1.00910261e-01\\n1.67073354e-01 -4.91580665e-01 4.13805425e-01 -3.55185181e-01\\n-3.37655962e-01 -1.56197166e-02 5.52233458e-02 4.22697663e-02\\n3.24508756e-01 -3.06072176e-01 -2.70886302e-01 3.05551678e-01\\n-2.01143771e-02 1.84457898e-02 3.94261211e-01 -4.17163319e-05\\n-3.11415911e-01 1.96547180e-01 -3.32900584e-01 1.10647902e-01\\n6.10299289e-01 1.05308540e-01 1.17889389e-01 2.29184940e-01\\n4.19340059e-02 1.29571155e-01 4.41435754e-01 -2.81282756e-02\\n-2.43679360e-01 3.84647548e-01 2.22505331e-02 -5.87102830e-01\\n-4.24193181e-02 4.46640924e-02 -3.28150928e-01 -2.85377771e-01\\n5.91233730e-01 3.51738632e-01 -3.54915828e-01 -3.58076364e-01\\n-2.30241805e-01 -2.21236393e-01 -2.30014190e-01 -2.28345133e-02\\n1.76668763e-01 -8.11873600e-02 5.48510849e-01 1.94233600e-02\\n3.49019207e-02 4.11412656e-01 -1.52474746e-01 -1.51964441e-01\\n1.77911799e-02 1.60060525e-01 6.79340884e-02 4.00483459e-01\\n-1.68418497e-01 3.98120224e-01 -4.56312634e-02 1.47726566e-01\\n-1.04366198e-01 -6.18232004e-02 -1.43377949e-02 1.95789620e-01\\n-7.44087771e-02 4.12455559e-01 3.48134905e-01 3.30090046e-01\\n3.96527231e-01 3.46858412e-01 1.62904590e-01 3.75843942e-02\\n7.23760605e-01 4.13027585e-01 3.51242214e-01 2.84883618e-01\\n-8.75889435e-02 -3.79842520e-02 -2.28159428e-02 2.53702670e-01\\n2.06511170e-01 2.35419288e-01 -1.75568581e-01 6.07075632e-01\\n2.62670934e-01 1.91291049e-01 4.61347878e-01 -4.17233229e-01\\n-2.87611693e-01 -2.50315480e-02 3.81020546e-01 -4.00964826e-01\\n-1.79247707e-02 5.21606803e-02 -5.13036512e-02 8.91088620e-02\\n-5.70092976e-01 -1.46194264e-01 -7.09187984e-02 1.15818746e-01\\n1.46236643e-01 -5.60551286e-02 -6.85518458e-02 -6.82648644e-02\\n-1.46356791e-01 -1.52378961e-01 -4.00799096e-01 -1.99916154e-01\\n-2.51809299e-01 -2.55450964e-01 2.04109997e-02 -1.69776440e-01\\n3.82385962e-02 -2.73497343e-01 -1.66449279e-01 -1.88320782e-02\\n2.57554561e-01 -1.62482247e-01 -9.83320251e-02 4.24150471e-03\\n3.80413532e-01 1.34504646e-01 5.98731995e-01 -4.68926784e-03\\n9.41349484e-04 -3.25036198e-01 -3.63122895e-02 -5.22180088e-02\\n4.25876886e-01 4.25714776e-02 7.29194731e-02 4.63141024e-01\\n-4.42859948e-01 -2.89858669e-01 9.79142189e-02 2.54570395e-01\\n-5.70715725e-01 3.81177338e-03 1.92422912e-01 1.49660155e-01\\n1.94715150e-02 1.41538292e-01 -2.17711374e-01 -9.26676169e-02\\n-2.55530834e-01 -4.76769418e-01 1.06684215e-01 1.89488798e-01\\n-2.55955189e-01 -4.34510969e-02 3.59715641e-01 1.52797922e-01\\n-9.49709937e-02 -5.90479635e-02 -4.29890640e-02 2.03117743e-01\\n1.47516921e-01 7.53174499e-02 -1.97582945e-01 -2.55628794e-01\\n-3.76073420e-01 2.41380468e-01 -2.25037098e-01 2.41238475e-01\\n6.81691319e-02 -2.55144015e-03 1.87051341e-01 1.22922055e-01\\n3.66383404e-01 -8.64518881e-02 -8.92237201e-02 -3.07821572e-01\\n-2.73998827e-01 -2.90129393e-01 3.28818932e-02 -1.78229690e-01\\n1.05165482e-01 -4.45940912e-01 -1.18563101e-01 -9.89066511e-02\\n-2.03019276e-01 -3.56948078e-01 5.07307388e-02 -1.26902331e-02]]',\n", + " 'job_description': 'LocationBaselContract typetemporary contract For our pharma client in Basel we are looking for a Report Specialist (Data Model/Cost Controlling) - 100% Tasks & Responsibilities: Ensure reporting implementation of Regulatory Affairs and Medical Affairs shift in data.one by: Check Actual deliveries of all countries against target status Communicate with country Controllers to ensure implementation of target status Document and track implementation status in each country Support countries with technical questions Must Haves: Strong knowledge of data model - data.one Follow-up with Controllers having different cultural background (i.e. worldwide) Proficiency with Excel and the use of databases Excellent communication skills Good organizational skills Start date : ASAP Duration: 3 months with exention opportunities Location: Basel Are you interested to work in this challenging position? Florence Wespiser, MSP Consultant, is looking forward to receiving your complete profile. Please send an e-mail to florence.wespiser@coopers.ch By sending us your CV per E-Mail you are giving us your consent to the processing of your personal data according to our Data Privacy Policy.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Communications\", \"Organizational Skills\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Health Data Specialists\", \"Cost Control\", \"TARGET 3001!\", \"Medical Affairs\", \"Logical Data Models\", \"Track (Rail Transport)\", \"Personalization\", \"E (Programming Language)\", \"Data Modeling\", \"Data Privacy Laws\", \"Receivables\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Korean', 'Tibetan', 'Malayalam']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data preparation expert (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'job_description': 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " 'soft_skills': '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " 'hard_skills': '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'Tagalog', 'Fijian', 'Limburgish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data ingenieur',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.73539215e-01 2.95446873e-01 3.41366827e-01 3.93180214e-02\\n4.40420538e-01 -1.47717759e-01 -5.48443720e-02 2.30844498e-01\\n-8.91414285e-02 -4.39024776e-01 1.05183357e-02 -9.85265374e-02\\n-2.43622586e-01 -5.89660660e-04 -1.47397863e-02 4.74850059e-01\\n2.80426443e-01 6.34839982e-02 -1.43790379e-01 3.84318888e-01\\n1.05363093e-01 -3.25387642e-02 -2.00483307e-01 8.03782105e-01\\n3.08296889e-01 -3.17984521e-02 2.24749073e-02 9.14418623e-02\\n-6.67959005e-02 -1.43164203e-01 3.64695042e-01 1.60059065e-01\\n-1.00824147e-01 -3.22888434e-01 1.22831404e-01 2.00250655e-01\\n-1.94558889e-01 6.35166764e-02 -1.37775987e-01 7.37599581e-02\\n-3.76453847e-01 -1.73091054e-01 -8.04219916e-02 3.95079516e-02\\n-1.57729849e-01 -2.51143217e-01 1.44618124e-01 -2.24684939e-01\\n2.97256261e-01 4.46853787e-03 -6.94204330e-01 3.18485349e-01\\n-2.28280187e-01 -1.62220791e-01 2.34000966e-01 4.64561015e-01\\n5.01000471e-02 -4.63844717e-01 -4.39903587e-01 -3.53651315e-01\\n-1.08716330e-02 -5.98834120e-02 -2.82261074e-02 -3.53043616e-01\\n3.16754729e-01 3.56427347e-03 8.99656042e-02 2.43225127e-01\\n-8.23725402e-01 -1.05068073e-01 -4.20428991e-01 -2.26258989e-02\\n-4.38156933e-01 -5.65539226e-02 -3.59581858e-01 2.61795521e-02\\n-7.72417337e-02 2.87032902e-01 4.55488116e-02 6.78809881e-02\\n-2.35347003e-01 2.70585775e-01 -2.93253362e-01 3.29408884e-01\\n2.76014954e-01 1.38341695e-01 2.38590196e-01 3.69926006e-01\\n-5.02795100e-01 4.07005459e-01 4.97104935e-02 -2.92263478e-01\\n2.34251171e-01 2.25896820e-01 4.27680135e-01 2.05386490e-01\\n1.81894228e-01 1.50503382e-01 -2.51848787e-01 3.50331217e-01\\n2.39382461e-01 -4.51936007e-01 4.24619950e-02 -2.21537635e-01\\n1.52646035e-01 -8.92313197e-02 5.49507774e-02 1.02773488e-01\\n-3.34391266e-01 4.40531641e-01 1.65045276e-01 -1.65558740e-01\\n-1.39052868e-01 -5.76995373e-01 -9.55668762e-02 -2.39929892e-02\\n-2.56161001e-02 2.14993089e-01 1.74376845e-01 2.35086322e-01\\n1.71372846e-01 6.88543022e-02 5.23202829e-02 8.91119480e-01\\n-1.43159017e-01 -1.57657713e-02 -1.82234228e-01 2.13842094e-01\\n1.70693681e-01 -3.74809951e-01 3.11169416e-01 3.57347637e-01\\n1.67213112e-01 -1.85709864e-01 -2.94184357e-01 2.98517853e-01\\n2.02898104e-02 -9.60549787e-02 -3.80438834e-01 2.33673573e-01\\n4.12185639e-02 -5.39134681e-01 7.73584545e-01 1.40000045e-01\\n3.27907830e-01 8.81463066e-02 2.57994700e-02 -8.59297886e-02\\n3.52902198e-03 1.23795435e-01 -5.53409755e-02 3.36271733e-01\\n-2.23474592e-01 -1.77447617e-01 -9.64029431e-02 1.90260187e-01\\n-4.62801039e-01 2.66632259e-01 -1.32285237e-01 -1.45230874e-01\\n1.87922180e-01 -2.94205658e-02 -3.24101150e-01 1.10768579e-01\\n-1.26643166e-01 -1.52376890e-01 8.02242681e-02 5.69777429e-01\\n-7.82675371e-02 2.43639350e-01 -1.51042221e-02 -8.74454230e-02\\n7.25178540e-01 1.66858494e-01 -1.07229850e-03 -6.43134788e-02\\n3.50875914e-01 3.57049294e-02 2.90560871e-01 9.05217603e-02\\n-6.39829993e-01 3.67502570e-01 1.42371282e-02 -1.98851094e-01\\n8.54345784e-02 2.50803903e-02 3.50216717e-01 -4.67205524e-01\\n-1.24535322e-01 -1.13375433e-01 -2.95392036e-01 -1.33079529e-01\\n-3.10479373e-01 -1.50215775e-01 4.03197229e-01 -2.97243237e-01\\n-1.56392843e-01 1.65585518e-01 -6.80798471e-01 -1.17076978e-01\\n1.95750073e-01 1.22090451e-01 8.98842216e-02 6.79821372e-02\\n-5.84428012e-02 -6.84136391e-01 -1.17838711e-01 -5.61434746e-01\\n-4.79235709e-01 -1.62391197e-02 -4.43102211e-01 3.12348336e-01\\n9.61948857e-02 2.23491900e-02 -2.70209312e-01 1.73036739e-01\\n-3.16214174e-01 2.91104000e-02 2.20800668e-01 1.30040003e-02\\n3.07837993e-01 5.19551933e-02 -3.73211861e-01 3.93969983e-01\\n-1.10023595e-01 6.05572820e-01 2.04976350e-01 -6.67174816e-01\\n5.68976700e-01 4.10228640e-01 -1.32097639e-02 -3.06244224e-01\\n4.71904486e-01 -3.28421414e-01 -1.11632749e-01 5.80066219e-02\\n-3.02488774e-01 -4.29130524e-01 1.21426813e-01 -1.13919549e-01\\n-3.05754006e-01 5.60343683e-01 1.06565334e-01 2.19404157e-02\\n3.08832675e-01 -3.60765815e-01 -1.36797220e-01 2.37932205e-01\\n-1.19924918e-01 -2.33903900e-01 -4.15719062e-01 -3.11465207e-02\\n-7.49295428e-02 -4.38354939e-01 -1.42351896e-01 -3.94857258e-01\\n-1.94070101e-01 -3.19405705e-01 -4.09768730e-01 4.61869001e-01\\n1.85869917e-01 9.61013809e-02 -9.09118578e-02 -1.33323530e-02\\n-1.00047491e-01 -8.27483296e-01 4.93074320e-02 4.75524329e-02\\n4.48125720e-01 1.53993413e-01 7.36384690e-02 -1.83055058e-01\\n7.37257004e-02 6.65648341e-01 -4.05947179e-01 -3.05492789e-01\\n3.27343158e-02 1.57261103e-01 -2.55504027e-02 -4.86530960e-02\\n1.07461832e-01 4.97097760e-01 -3.26111466e-01 8.08469281e-02\\n-1.97301358e-01 -1.11661203e-01 3.29602003e-01 -1.07117631e-01\\n-3.10849756e-01 -2.20599413e-01 -6.18796982e-02 3.00643623e-01\\n-5.62083840e-01 -3.92843187e-01 4.34898883e-01 2.90442258e-01\\n2.31254756e-01 1.32649526e-01 1.95963055e-01 -5.02265617e-02\\n-2.53306299e-01 -4.08284217e-01 2.67852932e-01 1.85309544e-01\\n8.72170553e-02 1.72761410e-01 -4.57098894e-02 -6.49209142e-01\\n-3.35005069e+00 -1.19049266e-01 1.95204079e-01 -1.42373562e-01\\n2.34189317e-01 2.28987448e-02 4.00891975e-02 -8.33868012e-02\\n-3.62264037e-01 8.28131512e-02 -1.28010809e-01 -2.70860106e-01\\n-1.12116292e-01 3.58870476e-01 1.30933970e-01 2.05565602e-01\\n2.01939940e-01 -3.27510476e-01 -5.64833544e-02 3.45400125e-01\\n-1.45829007e-01 -6.70550108e-01 5.40195368e-02 -1.53561831e-02\\n2.53562301e-01 3.77783775e-01 -3.13458294e-01 -1.30594134e-01\\n-3.04139614e-01 -1.88112676e-01 -4.13720001e-04 -3.99223834e-01\\n-1.23340622e-01 2.06579968e-01 2.54610330e-01 5.58344275e-02\\n-2.98778922e-03 -3.05615544e-01 -9.70033854e-02 -5.04232526e-01\\n3.41190351e-03 -4.49428767e-01 1.86609123e-02 -1.19894370e-01\\n6.79200590e-01 -1.91292331e-01 1.84738591e-01 1.52017057e-01\\n1.70434773e-01 1.63962543e-01 3.62524390e-02 1.06787182e-01\\n-9.38766524e-02 -2.97862411e-01 -1.19559780e-01 -2.31664062e-01\\n7.04229474e-01 5.14253438e-01 -6.92761242e-02 -2.63523054e-03\\n1.08825430e-01 -3.91366541e-01 -4.67752814e-01 -3.18818301e-01\\n-9.39716697e-02 -2.29888588e-01 -6.51591003e-01 -4.13950711e-01\\n-1.85595721e-01 -4.32047024e-02 -2.12076157e-01 5.42313576e-01\\n-3.38225871e-01 -3.48974556e-01 2.69715283e-02 -5.62692642e-01\\n1.61460757e-01 -2.43679285e-01 1.53686360e-01 -3.89631204e-02\\n-2.38289446e-01 -6.71593368e-01 -1.06749736e-01 -1.78200170e-01\\n-1.30260393e-01 -3.03197592e-01 -1.18988305e-01 -5.86845353e-02\\n-2.56225020e-01 -6.05665445e-01 3.79024357e-01 1.43792480e-01\\n2.94720531e-01 1.84704378e-01 4.59055811e-01 -8.26915428e-02\\n4.23558921e-01 4.58418652e-02 -7.91794136e-02 -3.60442162e-01\\n-5.48459366e-02 -7.40971416e-02 4.52599943e-01 -1.13543294e-01\\n1.53942466e-01 1.17062114e-01 -2.18255490e-01 -3.83212119e-02\\n3.62344861e-01 4.19153161e-02 -4.17718217e-02 -1.44397959e-01\\n4.22746927e-01 -2.72830397e-01 -2.31825694e-01 1.60845831e-01\\n1.15813628e-01 6.28076434e-01 1.86652504e-02 -4.49732155e-01\\n-2.33861983e-01 5.65137684e-01 -1.11333020e-01 6.58415928e-02\\n-9.03046578e-02 1.49235427e-01 -1.35980144e-01 1.95091501e-01\\n-9.82831270e-02 -2.44395882e-01 -1.49072662e-01 -1.22328259e-01\\n-1.10931545e-01 3.91953558e-01 2.35398397e-01 6.10994501e-03\\n-1.11531682e-01 -2.95550257e-01 -1.54909506e-01 1.46287695e-01\\n2.94560939e-01 4.09787089e-01 1.78593561e-01 -3.12423974e-01\\n-7.02138990e-02 3.77872974e-01 -1.01519451e-02 9.31342468e-02\\n-2.08368748e-01 4.09455299e-02 -3.92957956e-01 -2.46942624e-01\\n-3.59082162e-01 -4.25442368e-01 2.39385858e-01 3.73319775e-01\\n8.39539096e-02 -3.97312529e-02 2.85563558e-01 -5.47754049e-01\\n4.19133395e-01 2.72235364e-01 1.17853925e-01 1.09099276e-01\\n-1.24561578e-01 5.02645969e-01 -7.49223679e-02 -1.08004563e-01\\n-2.52406061e-01 1.05447508e-02 -1.95723534e-01 -2.71729171e-01\\n1.70587212e-01 -6.02116942e-01 -1.91897884e-01 4.44209516e-01\\n2.45881185e-01 -2.02954754e-01 -3.22783262e-01 2.50395596e-01\\n-5.23507297e-02 -3.28757972e-01 -2.32960701e-01 -1.76553190e-01\\n1.73108369e-01 1.33014014e-02 2.78843582e-01 -2.93195784e-01\\n-5.48861660e-02 -4.37954850e-02 -3.27146351e-02 5.07661879e-01\\n1.77467212e-01 5.08969948e-02 -2.54120320e-01 -1.10497549e-01\\n5.29563785e-01 -8.29265043e-02 -1.36750340e-02 -1.43619433e-01\\n1.45741969e-01 -2.30486944e-01 -4.08401132e-01 8.31735954e-02\\n-3.91913131e-02 -1.56264216e-01 -9.30302888e-02 1.48367554e-01\\n-1.03273369e-01 7.85977989e-02 -7.10077345e-01 -3.36266488e-01\\n-4.08053666e-01 -1.86203495e-01 2.09359936e-02 -3.18180740e-01\\n1.15589714e-02 -6.17773943e-02 -5.33395767e-01 3.53105187e-01\\n-3.28015059e-01 -7.26068690e-02 1.17504291e-01 1.76224634e-01\\n-4.20059055e-01 -1.74938381e-01 -4.77401055e-02 2.87048846e-01\\n-3.99624974e-01 -2.75250167e-01 4.49762493e-03 -9.77015793e-01\\n1.42093718e-01 6.76126555e-02 -2.14485288e-01 5.88524789e-02\\n-1.42176464e-01 -5.97350597e-01 -3.74841020e-02 -5.06289542e-01\\n-2.76711397e-02 2.12920353e-01 -2.74026603e-01 -8.27496871e-02\\n1.76449582e-01 -1.70337725e-02 -3.88304412e-01 3.80793124e-01\\n-3.33709151e-01 2.41502866e-01 -1.98908761e-01 1.61453217e-01\\n-5.55104762e-02 -1.27174959e-01 7.43299574e-02 -2.05290601e-01\\n-4.01791364e-01 -2.92716295e-01 -2.03706503e-01 -1.25526950e-01\\n7.93420374e-02 -3.92119318e-01 -1.65071607e-01 1.69550125e-02\\n3.70709479e-01 8.66900459e-02 -1.10151120e-01 -2.79189885e-01\\n1.13218136e-01 -5.50931931e-01 -3.59931495e-03 -2.49128968e-01\\n-6.20403215e-02 -9.75676626e-02 2.24061534e-01 8.71564671e-02\\n2.17803076e-01 -3.08463454e-01 4.82191592e-01 -4.08337027e-01\\n-2.46548027e-01 -4.72327955e-02 4.22134995e-02 -1.22209042e-01\\n1.28084630e-01 -4.84935492e-01 -2.40670261e-03 3.19071472e-01\\n4.58413996e-02 -8.80386010e-02 2.65195668e-01 -5.87772876e-02\\n5.09641804e-02 2.46959642e-01 -2.27597073e-01 1.25412136e-01\\n7.23162532e-01 1.03838801e-01 3.38800512e-02 1.74701512e-01\\n1.91928566e-01 3.41389924e-01 5.37623644e-01 5.94294816e-02\\n4.50938381e-02 2.90370047e-01 1.37288779e-01 -3.51034641e-01\\n-2.80057173e-02 1.58480443e-02 -2.50718445e-01 -2.66983002e-01\\n7.02537000e-01 4.61657256e-01 -5.05702734e-01 -2.70402133e-01\\n-3.14138494e-02 -2.01632008e-01 3.57618004e-01 5.21320701e-02\\n1.47703802e-02 -3.18478309e-02 5.02444267e-01 -1.48917615e-01\\n6.63390383e-02 6.09450161e-01 -2.44767696e-01 -3.23840827e-01\\n-5.24812154e-02 2.82150477e-01 5.42860888e-02 5.81487775e-01\\n-2.77523935e-01 3.18400472e-01 -3.25301811e-02 -2.94691208e-03\\n1.19819464e-02 2.43483633e-01 2.22774833e-01 3.47710103e-02\\n2.87638277e-01 -3.39678638e-02 3.22743118e-01 6.37781262e-01\\n8.24697763e-02 3.68883431e-01 2.42546946e-01 1.49033964e-01\\n3.51512939e-01 5.71332753e-01 3.89838547e-01 1.88696101e-01\\n1.60439685e-02 2.80597359e-01 1.32400841e-01 -1.03801303e-01\\n3.83920342e-01 3.97256941e-01 9.42822918e-02 8.88749540e-01\\n3.38519901e-01 4.03219104e-01 5.19377470e-01 -7.30246723e-01\\n-3.18686038e-01 2.07738429e-01 5.71277797e-01 -2.21303478e-01\\n-2.68598981e-02 1.79136291e-01 -2.70904154e-01 2.96401203e-01\\n-4.99009192e-01 -1.91606760e-01 4.54262830e-03 9.40883979e-02\\n-6.65409490e-02 -1.88375816e-01 -2.88819104e-01 -7.96906054e-02\\n-1.59726128e-01 -3.83828394e-02 -3.83251727e-01 -1.96621731e-01\\n-2.81151384e-01 -9.25636012e-03 -1.77532867e-01 -1.97292909e-01\\n5.14329709e-02 -3.68404061e-01 -6.41435608e-02 7.43891373e-02\\n3.96721900e-01 -1.96322531e-01 -1.47753030e-01 -1.43119931e-01\\n1.71592310e-01 3.70279372e-01 5.63981056e-01 -5.77464662e-02\\n1.34021595e-01 -9.81474966e-02 -2.07689196e-01 1.38016596e-01\\n-9.37613845e-03 4.72647473e-02 1.47420689e-01 1.93972245e-01\\n-2.21584007e-01 -1.64701194e-01 2.09619597e-01 3.02007616e-01\\n-4.17190611e-01 -1.25701442e-01 -2.01619834e-01 2.83955842e-01\\n-3.84229496e-02 1.66154966e-01 -1.89610735e-01 1.00306846e-01\\n-1.40607163e-01 -4.21521395e-01 4.70354974e-01 -1.07023336e-01\\n-4.63431776e-02 2.26062387e-01 4.34537768e-01 1.93338960e-01\\n-3.22088212e-01 -3.84056941e-02 -4.56718132e-02 2.38319427e-01\\n-8.59484002e-02 3.83177549e-01 -2.02118486e-01 -3.81131172e-01\\n-2.67352015e-01 1.53150648e-01 -2.25777149e-01 1.22528940e-01\\n-9.30396840e-03 3.44943106e-01 1.03135789e-02 5.86238913e-02\\n4.39161271e-01 6.83616400e-02 -2.40586132e-01 -1.51674092e-01\\n-2.48169482e-01 -7.94871524e-02 9.09963921e-02 -7.05700042e-03\\n8.89195278e-02 -3.81218761e-01 -2.01335952e-01 -6.06442541e-02\\n1.93256270e-02 -2.59877086e-01 -2.84286719e-02 1.12730607e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: You build prototypes, you set up automatic benchmarking procedures and you assess the scalability and robustness of different machine learning methods. You optimise the use of available CPU and GPU resources for training machine learning models on large datasets on platforms such as AWS and Azure. You work with our engineers to ensure that new models can be seamlessly integrated into our applications and reliably deployed on production systems. You actively share your know-how with our other data scientists (which already includes specialists in areas such as natural language processing, recurrent neural networks and mathematics) and in turn you learn from their ideas and expertise. Requirements: You can produce scalable, reliable and easy-to-understand code in Scala, Java and/or Python. You have deployed machine learning models in production, having tested their robustness and scalability in different environments. You are familiar with a wide range of machine learning approaches, in particular deep learning models. You are passionate about the newest neural network architectures, but you also remain pragmatic and recognise that a simpler traditional machine learning model might work just as well for many use cases. You enjoy solving mathematical problems. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills Scala JAVA Python Python',\n", + " 'soft_skills': '[\"Proactivity\", \"Communications\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Graphics Processing Unit (GPU)\", \"Agility\", \"Natural Language Processing\", \"Scala (Programming Language)\", \"Activism\", \"Python (Programming Language)\", \"Prototyping\", \"Dataset\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Benchmarking\", \"Scalability\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Resourcing\", \"Java (Programming Language)\", \"Network Architecture\"]',\n", + " 'languages': \"['English', 'Kirghiz', 'Zulu']\"},\n", + " {'company_id': '85',\n", + " 'job_title': 'data architect',\n", + " 'location': 'Gland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.26959467e-01 1.85585111e-01 5.45626521e-01 3.39563489e-02\\n6.05104625e-01 -1.55945927e-01 -5.37235290e-02 4.24137056e-01\\n-5.30420169e-02 -5.59546590e-01 -1.57581978e-02 -2.86776245e-01\\n-5.89047931e-02 9.32528079e-02 5.75805977e-02 2.80804247e-01\\n3.88394356e-01 1.43583134e-01 -9.13108140e-02 3.20280671e-01\\n5.94274700e-02 -1.31324381e-01 1.52759761e-01 7.03490376e-01\\n3.10784996e-01 -8.45882148e-02 -7.22268149e-02 5.77587634e-04\\n-2.45001525e-01 -1.74896002e-01 4.48014498e-01 -3.46912369e-02\\n-1.57767504e-01 -2.71948814e-01 8.71570483e-02 3.99834849e-02\\n-2.42521822e-01 -9.74186361e-02 -8.12924951e-02 1.48576885e-01\\n-4.59864229e-01 -1.95110619e-01 -3.96016799e-02 -5.01302406e-02\\n-3.24364960e-01 -3.57881427e-01 -3.16568501e-02 -2.28019431e-02\\n9.56756026e-02 8.54479074e-02 -5.36936462e-01 2.38055050e-01\\n-1.99533910e-01 -2.21855000e-01 2.34013036e-01 5.99914074e-01\\n-2.44867913e-02 -4.06157315e-01 -4.65729982e-01 -3.00640345e-01\\n1.24723166e-01 -1.22358456e-01 6.82379380e-02 -3.77022266e-01\\n3.32380861e-01 -4.05879021e-02 7.21967267e-03 2.54423797e-01\\n-7.77008295e-01 -4.93215546e-02 -2.31322765e-01 -5.22023030e-02\\n-3.57683539e-01 -6.64442480e-02 -3.12843800e-01 -1.17946438e-01\\n-1.10407673e-01 4.06963170e-01 7.18101263e-02 4.32074182e-02\\n-1.70039251e-01 2.63334036e-01 -3.27968091e-01 3.85194957e-01\\n1.93057135e-01 3.37805033e-01 2.32159615e-01 3.35622936e-01\\n-3.29601169e-01 4.71874207e-01 2.34640896e-01 -4.50010121e-01\\n3.10019374e-01 1.37526333e-01 3.99491757e-01 -4.38049585e-02\\n2.71545976e-01 9.92244780e-02 -2.90837228e-01 3.54413271e-01\\n2.94723004e-01 -3.33072484e-01 1.83103047e-02 -1.06500126e-01\\n5.83395213e-02 -4.96790968e-02 4.33552787e-02 2.60357320e-01\\n-3.44801664e-01 3.47575396e-01 5.78447022e-02 -2.11462051e-01\\n-1.71496123e-01 -3.47067535e-01 3.26017961e-02 1.16494820e-01\\n1.51388720e-02 1.90461129e-01 2.49866068e-01 1.05192959e-01\\n1.49268001e-01 1.29982442e-01 1.51803225e-01 8.51687312e-01\\n-8.68032500e-02 4.15343679e-02 -2.65343249e-01 3.88893545e-01\\n7.08726794e-02 -3.76771450e-01 1.20396271e-01 2.16989189e-01\\n5.10175601e-02 -1.58679336e-01 -1.41127795e-01 3.45115006e-01\\n2.40389984e-02 -1.14366800e-01 -2.55188614e-01 2.10665166e-01\\n-5.46168350e-02 -4.10077661e-01 7.07121968e-01 8.35343599e-02\\n1.55393839e-01 -1.27902791e-01 6.13957196e-02 -2.36900002e-01\\n-1.40697092e-01 2.70074844e-01 5.60046826e-03 2.39884168e-01\\n-3.12298775e-01 -2.64583856e-01 -1.81241050e-01 2.10325718e-01\\n-4.61188495e-01 4.53567877e-02 -4.94401902e-02 -8.25300142e-02\\n2.68959701e-01 7.40253776e-02 -2.56187797e-01 2.12850749e-01\\n-1.14951335e-01 -3.87190245e-02 -7.79033452e-03 2.76621759e-01\\n-2.04776049e-01 3.02411556e-01 2.49807052e-02 -7.02316761e-02\\n5.05224228e-01 1.69686064e-01 2.43805707e-01 -1.77225936e-02\\n3.24320078e-01 -1.16108671e-01 1.89941395e-02 1.23341739e-01\\n-6.79099321e-01 3.61986428e-01 -4.96737100e-02 -2.85153985e-01\\n8.32508653e-02 -1.20971110e-02 2.66953468e-01 -1.44139379e-01\\n4.12601754e-02 -2.23777562e-01 -2.75624454e-01 -3.58167648e-01\\n-1.31995499e-01 -9.53156501e-02 4.23225611e-01 -4.70424384e-01\\n-1.00450605e-01 2.67721057e-01 -5.02433300e-01 -9.89936143e-02\\n1.55907154e-01 2.53715187e-01 1.34184793e-01 8.81372988e-02\\n-1.40274107e-01 -4.55875278e-01 8.61041248e-02 -4.16475832e-01\\n-1.91778719e-01 9.50427353e-02 -2.87170172e-01 1.53199196e-01\\n4.96030971e-02 2.07985006e-02 -2.47636810e-03 1.23869956e-01\\n-2.04422146e-01 -8.67343098e-02 1.45801067e-01 5.86524643e-02\\n4.68432724e-01 -1.38773452e-02 -4.06342119e-01 5.09587109e-01\\n-2.20423728e-01 3.40664625e-01 1.99102491e-01 -9.58584666e-01\\n4.62812364e-01 2.41617903e-01 -5.22376038e-02 -3.77645195e-01\\n5.55359244e-01 -3.39550883e-01 -6.08056709e-02 8.15979093e-02\\n-3.78406376e-01 -2.32332528e-01 2.17163503e-01 -2.05676824e-01\\n-2.22324386e-01 4.81574208e-01 -6.59446418e-03 1.56902209e-01\\n2.46098310e-01 -2.17403084e-01 -7.20052719e-02 -8.23026896e-02\\n-2.23928094e-01 -2.56638527e-01 -5.83865523e-01 -2.83847600e-02\\n-1.19565770e-01 -4.77976650e-01 -8.72339830e-02 -4.06859905e-01\\n-1.44480139e-01 -3.08676720e-01 -1.34061366e-01 1.74950525e-01\\n2.72640109e-01 6.58057630e-02 -3.62581685e-02 -1.05888210e-02\\n-6.85257763e-02 -5.43224216e-01 -1.28565550e-01 1.04586363e-01\\n4.47411388e-01 2.00259328e-01 1.34049207e-01 -2.20327452e-03\\n1.40092060e-01 5.44225454e-01 -1.12721696e-01 -2.45586902e-01\\n1.35898918e-01 2.21717715e-01 -5.98804280e-02 -9.36221480e-02\\n1.20501041e-01 3.52077842e-01 -2.01258823e-01 -1.70007870e-02\\n5.04829288e-02 -5.85053004e-02 4.24077034e-01 -7.15166032e-02\\n-2.34046638e-01 -1.92782283e-01 -3.70404273e-02 1.17795125e-01\\n-5.40806174e-01 -2.15985298e-01 5.61462104e-01 2.01966360e-01\\n8.77510086e-02 1.50305018e-01 1.28643885e-01 5.30742556e-02\\n-2.04402238e-01 -1.72198206e-01 2.37726241e-01 -1.45782232e-02\\n1.33992821e-01 1.39474139e-01 3.03623006e-02 -4.82385933e-01\\n-3.65689182e+00 -2.17225552e-01 1.09935775e-01 -2.38370389e-01\\n1.57136500e-01 -1.90947667e-01 7.06102997e-02 -8.49857554e-03\\n-2.47175068e-01 6.77997321e-02 -1.75542355e-01 -1.04899883e-01\\n1.17573455e-01 2.20172614e-01 1.22330606e-01 2.83023328e-01\\n1.20821074e-01 -1.52050063e-01 9.81768966e-03 3.40487629e-01\\n-2.25600421e-01 -6.33613825e-01 2.34256834e-01 -5.10381758e-02\\n2.86565095e-01 2.20938817e-01 -4.87181395e-01 -7.05512986e-02\\n-2.80877680e-01 -1.46693781e-01 1.51599586e-01 -2.69574732e-01\\n-1.71713322e-01 2.51290262e-01 1.49916470e-01 -1.12803563e-01\\n1.67625010e-01 -3.31464112e-01 -1.86671674e-01 -3.63117993e-01\\n1.81667298e-01 -6.02525651e-01 -1.26378521e-01 -5.43828346e-02\\n7.10578203e-01 -4.08134937e-01 2.08737344e-01 -1.31398551e-02\\n1.15536131e-01 1.28852472e-01 1.71796665e-01 -2.02913769e-02\\n-3.15004736e-01 -2.87341446e-01 2.42213272e-02 -2.09831223e-01\\n5.88578224e-01 4.87223625e-01 -9.82524008e-02 2.44502313e-02\\n1.02758966e-03 -2.44175777e-01 -4.18914855e-01 -3.29705209e-01\\n-6.33451119e-02 -1.76176876e-01 -6.20183408e-01 -3.24209034e-01\\n-4.99209948e-02 -2.64289081e-01 -5.50799146e-02 5.51924348e-01\\n-1.96045786e-01 -3.79968762e-01 -1.11754462e-01 -4.98668551e-01\\n3.72878253e-01 -1.41630962e-01 2.97269784e-03 -1.97399944e-01\\n-2.46819228e-01 -3.88384044e-01 1.42496288e-01 4.05891947e-02\\n-8.61663744e-02 -1.84298337e-01 1.56764448e-01 -5.81060536e-02\\n-3.51182014e-01 -4.48128909e-01 4.42874402e-01 7.20234141e-02\\n2.92768091e-01 1.33885309e-01 4.37437177e-01 5.02319597e-02\\n2.86487073e-01 -6.64279908e-02 -1.13959849e-01 -3.96884859e-01\\n5.32958396e-02 -3.16987634e-02 3.55283201e-01 -1.75551221e-01\\n6.98002204e-02 5.57822771e-02 -1.49906099e-01 -9.76474062e-02\\n3.08081359e-01 -6.02369495e-02 1.18858688e-01 -9.25181359e-02\\n2.03153744e-01 -2.62320250e-01 -1.41195461e-01 1.08382568e-01\\n-1.77268554e-02 5.23164034e-01 -3.39981318e-02 -2.86376476e-01\\n-1.66751668e-01 4.34576571e-01 -3.64531353e-02 8.32443982e-02\\n-1.94131002e-01 6.28325716e-02 -2.59017110e-01 3.52153689e-01\\n-6.80536963e-04 -1.16850421e-01 -2.38515273e-01 -9.53974351e-02\\n-1.12213567e-01 2.34908730e-01 2.69449532e-01 1.15753710e-01\\n4.01595235e-02 -3.87199134e-01 -7.02132434e-02 1.97189733e-01\\n2.97677159e-01 5.41889608e-01 1.99013278e-01 -7.89970905e-02\\n-4.93506230e-02 4.03309882e-01 -2.76965439e-01 2.66108245e-01\\n-2.65887320e-01 1.91045523e-01 -5.63682318e-01 -2.36865044e-01\\n-2.36690074e-01 -3.68271440e-01 1.67935774e-01 3.08545589e-01\\n1.93632513e-01 -1.00110710e-01 4.32363227e-02 -3.41073126e-01\\n2.68774360e-01 6.20842427e-02 2.13986412e-01 1.46586746e-01\\n-3.91582400e-03 5.82137644e-01 -3.68144922e-02 -8.39338526e-02\\n-1.12781346e-01 8.07562247e-02 -7.35053718e-02 -2.67687708e-01\\n-7.56375268e-02 -5.92806935e-01 -1.73749655e-01 3.05922389e-01\\n1.30189747e-01 -2.51520574e-01 -2.17959076e-01 2.65842915e-01\\n-9.02624130e-02 -2.10742295e-01 -2.56337404e-01 1.78571213e-02\\n4.28334773e-01 2.28980392e-01 2.91158557e-01 -5.72223544e-01\\n-1.55284077e-01 1.30839691e-01 4.78042811e-02 4.45907384e-01\\n7.44125396e-02 7.10915551e-02 -3.42796110e-02 -2.19178855e-01\\n3.72113943e-01 -1.77247882e-01 -1.65002421e-01 -5.19655161e-02\\n2.80996580e-02 -2.03483969e-01 -4.19769347e-01 1.46650463e-01\\n2.77346633e-02 -2.31144071e-01 6.96433783e-02 9.21656042e-02\\n7.88364708e-02 4.91004102e-02 -5.40481448e-01 -2.46248275e-01\\n-3.21554363e-01 -2.04072092e-02 -5.00875711e-03 -4.72395480e-01\\n-3.75322253e-02 -1.52734537e-02 -5.10069489e-01 2.20498502e-01\\n-1.28554761e-01 -1.10466614e-01 1.07282341e-01 -5.97559325e-02\\n-2.43912935e-01 -6.25356659e-02 1.34809464e-01 2.23447397e-01\\n-2.06007928e-01 -3.22677940e-01 5.07332273e-02 -1.00123668e+00\\n1.44783586e-01 9.66250226e-02 -1.91126361e-01 1.35203421e-01\\n-3.81120294e-02 -5.88949323e-01 1.32115394e-01 -3.33227515e-01\\n-9.02548656e-02 -9.64929610e-02 -2.40156412e-01 -4.53762531e-01\\n8.33714530e-02 5.61530553e-02 -3.36240113e-01 4.28298205e-01\\n-3.44702005e-01 3.84987772e-01 -1.61926836e-01 7.36631304e-02\\n9.26335230e-02 -2.30298609e-01 1.69032454e-01 -3.48049641e-01\\n-3.99106920e-01 -2.09772050e-01 -3.50904882e-01 -3.46295357e-01\\n-8.42668116e-02 -3.91998768e-01 -1.12279184e-01 9.68847424e-04\\n3.35234165e-01 8.36318508e-02 -2.15749770e-01 -2.41622031e-01\\n5.25874607e-02 -3.99399281e-01 2.95056961e-02 -3.45171094e-02\\n-8.57998729e-02 -1.51747674e-01 1.91959172e-01 9.96999443e-02\\n7.15580508e-02 -3.75161916e-01 3.54967535e-01 -2.21317112e-01\\n-3.22383642e-01 -1.24641150e-01 3.58742252e-02 1.13703668e-01\\n3.58011186e-01 -4.26163673e-01 7.49724656e-02 3.52810919e-01\\n2.33830839e-01 9.98689085e-02 1.50147974e-01 -6.65601939e-02\\n-2.86589116e-02 3.04174989e-01 -2.65399963e-01 9.18338373e-02\\n7.84099877e-01 5.02346978e-02 1.82636559e-01 2.08582029e-01\\n1.87070444e-01 2.78064281e-01 3.06016326e-01 6.57563098e-03\\n-1.64317906e-01 3.11114967e-01 1.01092279e-01 -4.95650530e-01\\n7.01944903e-02 -1.41385078e-01 -1.98138103e-01 -3.55826914e-01\\n5.55670381e-01 3.98149759e-01 -4.25234318e-01 -1.87287197e-01\\n-1.47492185e-01 -1.82940811e-01 2.04250246e-01 -5.55424280e-02\\n-1.20563135e-02 -1.55506834e-01 4.03699040e-01 -9.39343348e-02\\n2.61003941e-01 5.06759882e-01 -2.01805353e-01 -2.68972486e-01\\n-1.03064932e-01 2.07742110e-01 8.78320858e-02 5.27607977e-01\\n-2.54912138e-01 3.26455057e-01 -7.58094043e-02 1.86837345e-01\\n-6.29956573e-02 9.34925973e-02 1.43880859e-01 8.85814428e-02\\n2.14524508e-01 1.00339368e-01 3.98836315e-01 4.06579167e-01\\n2.28397071e-01 4.06621933e-01 3.96598727e-01 4.66578752e-02\\n4.17634130e-01 5.18793702e-01 3.49751592e-01 1.24530487e-01\\n-9.08402801e-02 -2.97809243e-02 5.72429337e-02 -4.50264663e-03\\n2.17811584e-01 3.59422326e-01 1.37136616e-02 8.76299500e-01\\n4.04174507e-01 2.33507425e-01 7.47595668e-01 -5.62973619e-01\\n-3.03399324e-01 -3.23097780e-02 3.85947108e-01 -4.07934129e-01\\n-1.84307061e-02 9.77430567e-02 -1.96492076e-01 2.59549141e-01\\n-4.22770113e-01 -2.09420741e-01 -1.02139488e-01 1.70546651e-01\\n-1.55957527e-02 -1.97322205e-01 -2.15798482e-01 6.36097342e-02\\n-2.56009828e-02 -5.54470718e-02 -4.01049674e-01 -4.74738628e-02\\n-2.12462202e-01 -1.38401136e-01 -1.45880237e-01 -3.37801129e-02\\n-8.19974095e-02 -3.22862178e-01 -1.26683861e-01 -4.94351313e-02\\n2.98602998e-01 -1.18570000e-01 -3.51657867e-02 -1.61988229e-01\\n2.83176750e-01 1.98692352e-01 4.86365736e-01 1.10180810e-01\\n1.54946446e-01 -2.28791982e-01 -1.31068513e-01 6.48721606e-02\\n1.57221943e-01 7.41381347e-02 -1.05674397e-02 2.51281559e-01\\n-2.80478984e-01 -1.35317326e-01 4.80526984e-02 2.82038152e-01\\n-4.19973850e-01 8.47353414e-03 -2.25774050e-02 1.27559304e-01\\n4.95847724e-02 1.69391736e-01 -1.79412141e-01 -1.79095082e-02\\n-1.91139311e-01 -4.60211992e-01 2.95223236e-01 -1.50710762e-01\\n-6.59837574e-02 -5.96475117e-02 1.71879962e-01 1.85563564e-01\\n-2.31385738e-01 4.06700931e-02 -3.94193456e-02 1.61757693e-01\\n3.00249681e-02 2.38011852e-01 -1.86747342e-01 -2.63392091e-01\\n-3.38201970e-01 1.50394648e-01 -1.37869179e-01 1.05552524e-01\\n1.92314945e-02 3.33986282e-01 6.93315417e-02 6.29573390e-02\\n2.74678260e-01 -3.27123329e-02 -1.88454747e-01 -2.37737119e-01\\n-2.23285139e-01 -1.92054898e-01 1.35266525e-03 -1.05301365e-01\\n2.26198196e-01 -3.87380958e-01 -7.66208619e-02 -1.71389416e-01\\n-4.70124483e-02 -3.42719615e-01 7.48951584e-02 -1.58928663e-01]]',\n", + " 'job_description': 'We are looking for talents... We are expanding our Data Intelligence Practice in Gland and Zurich and we are looking for dynamic and passionate Data Architects with experience in Large-scale transformation, mass migrations, complex application architectures, multi-cloud Data Lakes, Artificial Intelligence, Data Science and Big Data to name a few. We will be starting very soon our interviews so if you want to be part of our successful story of growth, apply now! Your background: Master Degree in Computer Science or another technical field. 5-10 years in a Data Architect role. Experience as a hands-on technical practitioner/specialist in client facing roles in large enterprises. Demonstrated client facing consulting skills, including building strong client relationships. Excellent verbal, presentation and written communications skills. Strong team skills including the ability to lead and be a team player. Knowledge on Datawarehouse and Big-Data architecture. Knowledge in Advanced Analytics Azure ML, ML Server, BOT framework, Cognitive Services, Azure Databricks, as well as, PowerBI. Learn, learn, and learn by staying up-to-date on all technical developments related to Data Intelligence and Cloud. Fluent English and/or French CH/EU citizenship required What you will do... Are you looking to work with innovative technologies, challenging projects and to join a team of passionate people? Then OSB is where you belong. You will… Architecting and implementing big data solutions that meet customer needs for scalability, reliability, security and performance;; Creating functional design specifications, implementing solutions, and assisting with other project deliverables as required. Keeping abreast of emerging Cloud technology trends and their impact on Cloud solutions.. Why OSB is for you... One Step Beyond is one of the fastest-growing start-up companies in Switzerland. In less than 2 years we have passed the 40 OSBers with an ambition to grow locally and internationally. We are a Native Cloud Consulting company helping organizations embrace Cloud technology that includes Microsoft, AWS, Google, etc. The cloud journey at OSB starts with the Cloud Strategy to then move to the execution that usually covers topics like Modern Workplace, Artificial Intelligence, Machine Learning, SaaS solutions or Blockchain most often multi-cloud. Our approach is to be technology agnostic to always try to find the best solutions comparing various technologies and approaches. We invest part of our time in “Beyond the Cloud” initiatives where our team investigates emerging technologies. Are you looking to grow your career in the Consulting business with the opportunity to work for large organizations but always staying ahead of new technologies? Then let’s discuss as at OSB we are not \"just the usual consulting company\".',\n", + " 'soft_skills': '[\"Investigation\", \"Reliability\", \"Presentations\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Blockchain\", \"Computer Science\", \"Analytics\", \"Machine Learning\", \"Functional Design\", \"Scale (Map)\", \"Intelligence Data Handling\", \"Azure Cognitive Services\", \"Design Specifications\", \"Executable\", \"Microsoft Modern Workplace\", \"Localization\", \"Investments\", \"Applications Architecture\", \"Data Science\", \"Service Delivery Framework\", \"Artificial Intelligence\", \"Scalability\", \"Learning With Errors\", \"Big Data\", \"Azure Databricks\", \"Transformation (Genetics)\", \"Data Lakes\", \"Emerging Technologies\", \"Cloud-Native Architecture\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '102',\n", + " 'job_title': 'data engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.robertwalters.com',\n", + " 'jobdescription_embedded': '[[-3.69240314e-01 8.25279877e-02 4.91174340e-01 -8.14468637e-02\\n4.39075351e-01 -2.59894431e-01 1.08117752e-01 4.42793339e-01\\n-1.29006039e-02 -2.21820161e-01 -1.11764878e-01 -3.46410513e-01\\n3.82579044e-02 1.88376933e-01 1.42550454e-01 3.87582600e-01\\n3.24492037e-01 8.68002847e-02 -2.41615415e-01 3.03820312e-01\\n7.33862519e-02 -1.92458019e-01 1.04501899e-02 5.67554653e-01\\n5.09980440e-01 3.85048613e-02 -5.28866909e-02 4.88218740e-02\\n-2.86617905e-01 -2.13553339e-01 4.07707930e-01 -7.75738806e-03\\n-1.74949616e-01 -2.43239209e-01 -2.87563782e-02 3.63004394e-02\\n-9.17406008e-02 -5.80493137e-02 -2.32187226e-01 1.50015563e-01\\n-5.16039729e-01 -4.32223529e-01 6.05612919e-02 1.88062310e-01\\n-3.61154497e-01 -4.52994496e-01 -2.24923361e-02 -1.28107816e-01\\n1.56975076e-01 1.21473804e-01 -5.52773178e-01 5.16897440e-01\\n-3.28382015e-01 -3.29085082e-01 2.34204695e-01 7.44919598e-01\\n6.68055490e-02 -5.67464232e-01 -4.49748307e-01 -3.07602376e-01\\n1.28797784e-01 -1.05079904e-01 -3.27876620e-02 -3.29013437e-01\\n2.58923858e-01 5.65505028e-02 3.23734991e-02 4.74667639e-01\\n-9.46887016e-01 -2.08655745e-02 -3.92103791e-01 -8.98579508e-02\\n-7.63695613e-02 -2.71036364e-02 -4.35818046e-01 -1.99281469e-01\\n-9.98111144e-02 3.66229266e-01 5.51985623e-03 2.55612023e-02\\n-2.49248818e-01 3.81793588e-01 -2.52502412e-01 3.90147835e-01\\n2.25170612e-01 2.25819886e-01 1.64574474e-01 2.83999294e-01\\n-3.49378407e-01 5.91016293e-01 2.62454599e-01 -3.40145677e-01\\n1.22616664e-01 1.90349996e-01 3.58295411e-01 1.93632245e-01\\n1.19423456e-01 1.77830189e-01 -1.17937751e-01 2.77026951e-01\\n4.14565653e-01 -4.21201766e-01 2.00246368e-02 -6.19453080e-02\\n-1.44699827e-01 1.83656125e-03 1.45882025e-01 2.49355152e-01\\n-1.68656945e-01 3.71681005e-01 7.77733102e-02 -2.91046947e-01\\n9.79752466e-02 -5.00715256e-01 -1.92763239e-01 -9.94219538e-03\\n-3.09221111e-02 1.51602447e-01 2.32413709e-02 1.75464928e-01\\n1.82368442e-01 -9.10306126e-02 3.19169872e-02 9.06018913e-01\\n-1.62834436e-01 1.60859853e-01 -2.55465746e-01 4.82394278e-01\\n3.65963280e-02 -3.08085859e-01 2.89399147e-01 8.57370272e-02\\n-1.28514627e-02 -1.37735412e-01 -3.06986302e-01 4.68420506e-01\\n-1.23031072e-01 -2.40614563e-01 -3.76867175e-01 2.40593895e-01\\n-1.45341277e-01 -4.81125623e-01 6.94297433e-01 -4.25317436e-02\\n2.93819904e-01 7.18387440e-02 -3.35147940e-02 1.09219998e-01\\n-1.16232067e-01 2.59424686e-01 1.61119401e-01 3.90311368e-02\\n-3.80033821e-01 -1.99606299e-01 -2.26258412e-01 2.48691201e-01\\n-3.04851562e-01 1.48026451e-01 -1.19070835e-01 -5.28749637e-02\\n3.63795847e-01 7.07269683e-02 -4.21763450e-01 2.84870386e-01\\n-7.16133714e-02 1.26203494e-02 -1.35152161e-01 2.22982615e-01\\n-2.49662444e-01 3.71707886e-01 -7.46834353e-02 -1.62973374e-01\\n6.31901920e-01 1.79023117e-01 1.27076954e-01 -1.92455918e-01\\n2.05039203e-01 1.50246611e-02 2.82670289e-01 8.74235947e-03\\n-5.76988459e-01 5.77274323e-01 8.00961480e-02 -3.62565964e-02\\n1.31659001e-01 -1.58827946e-01 2.79630303e-01 -3.37808341e-01\\n-1.71705693e-01 -7.68935084e-02 -3.57631236e-01 -3.71480584e-01\\n-3.98912698e-01 -1.60966754e-01 3.51980805e-01 -5.92204332e-01\\n-1.15984946e-01 1.47292793e-01 -6.94108427e-01 -3.90457958e-02\\n3.79650533e-01 5.97690009e-02 1.25385270e-01 2.49188349e-01\\n-7.30868354e-02 -5.69591284e-01 1.96737736e-01 -5.03612638e-01\\n-2.61735320e-01 1.83000907e-01 -2.41609454e-01 2.58737057e-01\\n1.21974787e-02 1.15283407e-01 -8.84649605e-02 1.64380625e-01\\n-2.57929474e-01 1.23197976e-02 1.49216354e-01 7.02007413e-02\\n3.75430167e-01 4.47768904e-02 -3.95253450e-01 4.68276441e-01\\n-1.77164346e-01 6.51994050e-01 2.37045184e-01 -9.41641271e-01\\n4.30420101e-01 3.86938542e-01 -2.22837422e-02 -3.35657001e-01\\n6.22202337e-01 -4.11555946e-01 -2.55740225e-01 1.85853124e-01\\n-4.10764307e-01 -2.41395324e-01 1.20760888e-01 -1.47041410e-01\\n-3.14059198e-01 6.41126454e-01 8.66300166e-02 1.03188545e-01\\n2.68038988e-01 -2.27926910e-01 -1.11606024e-01 8.50964058e-03\\n-1.20851956e-01 -2.73170412e-01 -5.17953157e-01 -6.10137917e-02\\n-4.92346212e-02 -5.31678259e-01 -2.43596941e-01 -3.87654454e-01\\n-2.97718436e-01 -3.48096311e-01 -9.66810063e-02 1.40077755e-01\\n2.61486441e-01 2.07811981e-01 7.43704289e-02 7.26435408e-02\\n-1.68329492e-01 -5.96635401e-01 3.81935760e-02 9.25624892e-02\\n4.07238305e-01 3.13320696e-01 4.26565669e-02 1.26552610e-02\\n1.59102291e-01 6.05940461e-01 -5.42859614e-01 -4.28777367e-01\\n2.65189856e-01 1.14223011e-01 1.42616229e-02 -2.85975605e-01\\n2.08352283e-01 3.53475600e-01 -2.87568897e-01 1.15516424e-01\\n3.82988229e-02 -1.90840811e-02 3.18307340e-01 2.20453829e-01\\n-2.95485467e-01 -4.60772365e-01 -1.32605851e-01 1.99360758e-01\\n-5.42560339e-01 -2.34567016e-01 5.63095748e-01 1.27885014e-01\\n9.43219140e-02 2.82934636e-01 3.53706986e-01 -1.25921980e-01\\n-2.05265597e-01 -9.71540958e-02 1.25345737e-01 1.75501317e-01\\n-2.05488969e-02 1.06356412e-01 -2.36835014e-02 -5.97698867e-01\\n-3.04537058e+00 -1.11750372e-01 1.53187677e-01 -1.77589059e-01\\n2.46047720e-01 -2.62942314e-01 -4.22593439e-03 -5.31064197e-02\\n-3.67481142e-01 -3.43310572e-02 -1.58565044e-01 -5.02117649e-02\\n2.79857516e-01 1.70414746e-01 5.01893423e-02 2.07946002e-01\\n9.91830304e-02 -3.02427709e-01 1.48815373e-02 4.32165027e-01\\n-1.35586068e-01 -6.13655031e-01 1.18142068e-01 -1.14492625e-01\\n3.72311562e-01 2.26920635e-01 -6.28906131e-01 -1.30676880e-01\\n-2.61219114e-01 -3.51524591e-01 9.90687683e-02 -3.19350392e-01\\n-8.49257633e-02 2.38111585e-01 1.38117835e-01 -5.17274141e-02\\n2.10168883e-01 -2.74930149e-01 6.48810249e-03 -4.06912386e-01\\n9.22796428e-02 -7.78051853e-01 -4.57377778e-03 7.00837001e-02\\n8.47651482e-01 -3.33411098e-01 1.35327116e-01 1.00539345e-03\\n1.75501794e-01 2.34811381e-02 -5.58712333e-02 2.58948356e-02\\n-2.96528161e-01 -2.22639069e-01 -5.51448092e-02 -5.27355634e-02\\n5.56573629e-01 6.04797423e-01 -2.10573778e-01 -7.92994630e-03\\n5.03490772e-03 -3.90890926e-01 -4.43472683e-01 -3.75228852e-01\\n-1.34297282e-01 -1.73222393e-01 -6.30488336e-01 -3.76986712e-01\\n-2.00325802e-01 -5.92841096e-02 3.38628963e-02 5.17028153e-01\\n-3.20278496e-01 -4.54628080e-01 4.91282754e-02 -6.50902867e-01\\n2.83607721e-01 4.01125252e-02 1.65570542e-01 -2.10148931e-01\\n-2.08284259e-01 -6.25866592e-01 6.11026324e-02 1.59246139e-02\\n-1.02232650e-01 -1.29592821e-01 1.92116246e-01 -5.08912280e-02\\n-4.47158694e-01 -5.67521036e-01 3.35128903e-01 1.88271970e-01\\n3.57883453e-01 2.70942956e-01 1.78484857e-01 -8.19721296e-02\\n3.33459556e-01 -2.29541108e-01 1.68070987e-01 -4.68866616e-01\\n-1.07093222e-01 1.76562686e-02 4.21825290e-01 -1.05930820e-01\\n1.42581211e-02 1.58526078e-01 -2.63683200e-01 -1.31640941e-01\\n3.71041089e-01 7.31290430e-02 1.58227757e-01 -2.94220090e-01\\n2.49974340e-01 -1.83012262e-01 -2.83738881e-01 2.00685225e-02\\n-4.58043702e-02 7.52873778e-01 -3.57089341e-02 -2.33635828e-01\\n-1.47344217e-01 4.05440360e-01 -1.23900034e-01 -1.33360520e-01\\n-2.97999382e-01 7.44065642e-02 -1.65027201e-01 1.17701374e-01\\n-2.65431013e-02 -1.76033884e-01 -1.74560517e-01 -3.44776437e-02\\n-6.59584254e-02 3.36652368e-01 1.79248646e-01 1.17356203e-01\\n-1.49229556e-01 -1.68255821e-01 1.06160425e-01 1.52614608e-01\\n1.13357365e-01 4.04965907e-01 -5.30397035e-02 -3.61947894e-01\\n-6.38192426e-03 2.67998606e-01 -1.98803574e-01 1.59754753e-01\\n-1.18419252e-01 7.22104609e-02 -5.21541059e-01 -9.00286064e-02\\n-1.73611239e-01 -4.03191656e-01 1.04705997e-01 2.99585462e-01\\n6.16946220e-02 -6.16030544e-02 -5.56084746e-03 -5.43981612e-01\\n3.44774365e-01 1.44660071e-01 1.91595122e-01 1.85645342e-01\\n9.85863581e-02 6.46382093e-01 9.32209641e-02 -1.44844264e-01\\n-7.15427101e-02 1.38203114e-01 -1.60976112e-01 -1.97612703e-01\\n-3.59524675e-02 -4.38107967e-01 -9.09141824e-02 4.59769309e-01\\n2.16785371e-01 -1.42289534e-01 -1.53489828e-01 1.51401520e-01\\n1.67063192e-01 -2.85538405e-01 -2.51075476e-01 2.07387462e-01\\n3.03312838e-01 1.76931575e-01 1.66444331e-01 -3.34908217e-01\\n1.16699815e-01 -5.99436350e-02 -3.19329426e-02 4.00114626e-01\\n5.52689172e-02 8.10881555e-02 -3.10386151e-01 -1.70473322e-01\\n4.47864205e-01 -1.20368242e-01 1.02191949e-02 -9.47455317e-02\\n1.21399492e-01 -9.88917500e-02 -3.88200611e-01 -1.73262078e-02\\n6.73961267e-02 -1.66287690e-01 -3.07188295e-02 2.22887564e-02\\n-6.97165355e-02 8.39978233e-02 -5.55479765e-01 -1.45383850e-01\\n-3.19203943e-01 -1.24511970e-02 -2.40216311e-02 -4.02724534e-01\\n-2.93622725e-02 -4.79101501e-02 -5.91854036e-01 3.09091866e-01\\n-2.45220408e-01 7.09153116e-02 1.43204525e-01 3.54842581e-02\\n-2.91385025e-01 -1.09686986e-01 2.30921805e-01 2.70083815e-01\\n-4.37682152e-01 -3.74605626e-01 -7.58123770e-02 -8.43400478e-01\\n7.97160417e-02 7.05200359e-02 3.56022529e-02 1.84208810e-01\\n-7.22778440e-02 -7.36995459e-01 1.95281148e-01 -3.85950476e-01\\n-1.12499490e-01 1.57817140e-01 -1.21935330e-01 -5.77650726e-01\\n7.19749136e-03 -5.23175895e-02 -3.03457439e-01 3.51405919e-01\\n-4.47346359e-01 4.70710754e-01 1.15978811e-02 9.89015102e-02\\n6.55442551e-02 -2.69383490e-01 2.15770558e-01 -4.35787439e-01\\n-3.01557153e-01 -2.28800222e-01 -4.12436515e-01 -2.26584911e-01\\n7.16811717e-02 -2.72909164e-01 -2.49867991e-01 2.91146934e-01\\n3.36367160e-01 6.77164271e-02 -1.96278304e-01 -1.40293375e-01\\n9.66690108e-02 -6.28951967e-01 -8.10428858e-02 -3.45174670e-01\\n1.27673475e-02 -1.89390689e-01 2.53704280e-01 9.43263154e-03\\n-5.09825535e-02 -5.16686440e-01 3.55138719e-01 -1.84811935e-01\\n-4.14885342e-01 -2.85570249e-02 -4.58882935e-02 -8.85541737e-02\\n3.52662504e-01 -3.84442478e-01 -8.65319148e-02 3.37665141e-01\\n2.97105834e-02 -5.82179846e-03 1.46150365e-01 -1.64327249e-01\\n-5.83229810e-02 2.75725156e-01 -2.73209512e-01 6.86290637e-02\\n7.35783935e-01 8.20402279e-02 1.96759775e-01 1.93554014e-01\\n7.23883212e-02 6.84811532e-01 4.66410697e-01 1.96852525e-05\\n-9.12774354e-02 4.57006127e-01 3.31962965e-02 -6.45995140e-01\\n4.94029187e-03 9.72336903e-02 -3.24362963e-01 -4.38717097e-01\\n6.42769217e-01 5.05809546e-01 -4.11734581e-01 -3.73307616e-01\\n-4.15916517e-02 -2.61462599e-01 1.01649202e-01 -9.41994637e-02\\n4.94386703e-02 -1.51041806e-01 4.94082779e-01 1.26020029e-01\\n2.82762051e-01 5.56713820e-01 -2.17469290e-01 -2.74312615e-01\\n-8.92571956e-02 3.12633127e-01 2.19900194e-05 4.21211421e-01\\n-1.09959774e-01 3.37148130e-01 -6.02169447e-02 4.98960353e-02\\n-1.63255379e-01 1.24646962e-01 2.24700108e-01 -1.28953131e-02\\n1.22753046e-01 2.51483887e-01 5.08446455e-01 5.58867514e-01\\n3.33869934e-01 3.82212788e-01 3.05241525e-01 -2.85167377e-02\\n5.87329447e-01 5.51419437e-01 4.99584943e-01 8.79136175e-02\\n1.87435865e-01 -7.92128071e-02 8.22473913e-02 2.82038182e-01\\n2.55124360e-01 3.38618636e-01 1.76435679e-01 9.76337910e-01\\n4.11718339e-01 3.39573652e-01 9.17758465e-01 -6.99731290e-01\\n-4.69203502e-01 -1.09365188e-01 3.75902653e-01 -4.35338497e-01\\n-1.73421487e-01 5.12854718e-02 -3.03368539e-01 2.32427806e-01\\n-3.91536474e-01 -2.40698233e-01 4.70994748e-02 2.40797609e-01\\n3.24683227e-02 -1.06977649e-01 -1.60973072e-01 1.24271929e-01\\n-1.36761367e-01 -1.29743770e-01 -5.04181027e-01 -2.21394375e-01\\n-2.28577644e-01 -2.33825266e-01 -1.32123470e-01 -4.22072634e-02\\n-2.11774945e-01 -3.69155914e-01 -2.03979090e-01 8.96567665e-03\\n3.68860573e-01 -1.83114663e-01 -1.22481093e-01 -2.20666572e-01\\n2.69309878e-01 2.53335923e-01 5.33374310e-01 3.50270495e-02\\n-9.90169868e-02 -2.64434367e-01 -2.56926030e-01 5.80486469e-02\\n1.80510178e-01 1.00967146e-01 -1.86418649e-02 4.72050220e-01\\n-2.79831648e-01 -1.43928662e-01 1.94978625e-01 3.72866988e-01\\n-4.82679248e-01 4.60712351e-02 -1.13081839e-02 2.25041091e-01\\n1.63797706e-01 1.86475858e-01 -2.10605159e-01 8.51506144e-02\\n-1.85691059e-01 -3.70014280e-01 3.67387235e-01 -4.17417586e-02\\n-2.70970970e-01 2.91785412e-02 2.86757737e-01 3.41690451e-01\\n-2.81337500e-01 -1.67826250e-01 -1.55289918e-01 1.83858752e-01\\n1.80897731e-02 3.08114976e-01 -2.24041209e-01 -2.26730615e-01\\n-2.63909638e-01 1.42573684e-01 -2.19681978e-01 1.35659665e-01\\n-9.44996253e-03 3.24079543e-01 9.65003520e-02 2.04437196e-01\\n3.27318549e-01 -7.35462606e-02 -2.52505839e-01 -4.74324644e-01\\n-6.42108470e-02 -2.88562030e-01 -9.16094482e-02 -3.51239368e-02\\n2.10844904e-01 -4.13383812e-01 -1.10539921e-01 -4.69673015e-02\\n-1.54880226e-01 -3.86361837e-01 -1.16001265e-02 -1.44560263e-01]]',\n", + " 'job_description': 'A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform. Data Engineer (m/f) Zurich Key Responsibilities: Drive and develop a new Data platform, and the future of Data processing for the firm Ensure delivery is meeting the highest quality and standards With a strong track record in Data engineering / Science you have: Profile: Experience designing and implementing Data technologies Strong in Java, Python and SQL programming languages Skilled in Docker and Kubernetes, AWS, Shell scripting Strong team player and leader with excellent interpersonal skills Fluency in English required, other languages are a plus Apply for the Data Engineer (m/f) position if you believe this is your next challenge. A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform.',\n", + " 'soft_skills': '[\"Positivity\"]',\n", + " 'hard_skills': '[\"Docker (Software)\", \"Kubernetes\", \"Experience Design\", \"KM Programming Language\", \"Python (Programming Language)\", \"Shell Script\", \"M (Programming Language)\", \"Track (Rail Transport)\", \"Data Storage Technologies\", \"Java (Programming Language)\", \"Electronic Data Processing\", \"SQL (Programming Language)\", \"Data Engineering\"]',\n", + " 'languages': \"['English', 'Indonesian', 'Latin']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'junior software engineer (java/.net)',\n", + " 'location': 'Bern',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.58827543e-01 2.78695405e-01 4.78867859e-01 -1.40555575e-01\\n4.73880589e-01 -2.29799300e-01 1.18673015e-02 5.41712344e-01\\n-1.29821241e-01 -4.76364672e-01 -1.58624187e-01 -1.81938067e-01\\n4.80378605e-02 7.95653313e-02 2.17752740e-01 3.67459863e-01\\n4.41360325e-01 7.91803077e-02 -2.36952901e-01 2.59149373e-01\\n8.82902965e-02 -9.55050960e-02 2.38359142e-02 7.61771441e-01\\n3.76127362e-01 -8.69915858e-02 2.29717679e-02 3.41004245e-02\\n-1.39177978e-01 -2.78147906e-01 4.10465032e-01 -4.33184467e-02\\n-1.17008306e-01 -2.25145057e-01 1.31188542e-01 1.38856128e-01\\n-1.25351340e-01 -5.25613613e-02 -1.53748631e-01 4.86257859e-02\\n-5.14377654e-01 -2.02427134e-01 -2.05447972e-02 -1.84176508e-02\\n-2.09004015e-01 -3.33692968e-01 1.72833309e-01 -1.39994975e-02\\n1.31572768e-01 -9.98403784e-03 -4.73160774e-01 2.33639076e-01\\n-1.81318372e-01 -1.78376257e-01 3.14814419e-01 5.54818749e-01\\n-3.95433977e-02 -4.44730997e-01 -3.76411676e-01 -2.83830196e-01\\n3.44227068e-02 -9.47789662e-03 1.22087888e-01 -2.85488904e-01\\n3.67980450e-01 -7.87562970e-03 9.07403044e-03 3.48818094e-01\\n-8.14982414e-01 -1.68173745e-01 -2.94127077e-01 -6.67742416e-02\\n-3.78268152e-01 -7.66451210e-02 -4.20350105e-01 -2.10033372e-01\\n-1.07887097e-01 2.65489012e-01 5.23711927e-02 2.09682733e-02\\n-1.86930656e-01 3.08594942e-01 -1.73784181e-01 3.63948613e-01\\n2.48869896e-01 3.63521367e-01 1.64428174e-01 2.72433609e-01\\n-3.77314508e-01 4.13331836e-01 1.41549259e-01 -3.45169276e-01\\n2.43585914e-01 1.02383338e-01 4.17286038e-01 4.24816944e-02\\n2.50019222e-01 1.57336622e-01 -2.64836699e-01 3.02274495e-01\\n2.93807298e-01 -2.79321969e-01 -2.38636043e-02 -9.86920949e-03\\n-5.60049936e-02 2.31792517e-02 -6.16665813e-04 1.17856622e-01\\n-3.47929269e-01 4.11345243e-01 1.00593649e-01 -2.85953283e-01\\n-5.89340702e-02 -5.28664768e-01 -1.35897920e-01 -3.37957442e-02\\n-6.15946315e-02 2.11408257e-01 2.33356938e-01 2.40028992e-01\\n1.73432574e-01 -7.98824802e-02 1.34229273e-01 7.63626695e-01\\n-8.75543430e-02 -7.15625882e-02 -3.16814929e-01 3.73807162e-01\\n-2.67740134e-02 -4.11100835e-01 2.59840757e-01 2.11753845e-01\\n1.16921723e-01 -1.25389710e-01 -2.14210510e-01 3.41955751e-01\\n3.45799513e-02 -1.71745077e-01 -3.71429801e-01 2.30877593e-01\\n-1.22679412e-01 -3.75482708e-01 5.65133452e-01 7.24253282e-02\\n1.81915075e-01 3.86341778e-03 -4.98558767e-03 -1.22229494e-01\\n-3.95373395e-03 1.60084143e-01 6.99667186e-02 1.24577120e-01\\n-2.30207920e-01 -2.21925631e-01 -2.30002046e-01 3.13030601e-01\\n-3.64954174e-01 1.97183296e-01 -1.34738863e-01 -2.07204714e-01\\n2.64092565e-01 -1.13843828e-02 -2.69747227e-01 2.82127708e-01\\n-3.53487544e-02 1.22332918e-02 -1.36799812e-01 3.96395475e-01\\n-2.09637105e-01 3.49883676e-01 5.23413643e-02 -2.85093896e-02\\n5.61599016e-01 8.99781883e-02 2.71654595e-02 -2.03372002e-01\\n2.06880957e-01 -2.98014246e-02 1.15183085e-01 6.57073855e-02\\n-6.60079360e-01 3.07879359e-01 -9.49652120e-02 -1.27565965e-01\\n9.22757983e-02 -6.22084215e-02 1.81700677e-01 -3.32530349e-01\\n-9.13730934e-02 -2.39496194e-02 -3.23593050e-01 -1.28294677e-01\\n-3.21318537e-01 -1.14021793e-01 3.54481518e-01 -4.49458659e-01\\n-2.99405996e-02 2.49697998e-01 -5.77152431e-01 -2.73775402e-02\\n1.21829838e-01 1.55680776e-01 9.72019136e-02 2.03857154e-01\\n-2.03631241e-02 -5.92750371e-01 4.81511131e-02 -4.10569489e-01\\n-2.38378733e-01 1.76799178e-01 -2.41349548e-01 2.00967252e-01\\n1.55110434e-01 7.11145550e-02 -1.30593866e-01 1.42261624e-01\\n-2.02240467e-01 7.53328204e-02 2.06379533e-01 5.90732023e-02\\n3.36558282e-01 -2.42210203e-03 -3.62746119e-01 4.73185003e-01\\n-1.79395214e-01 4.32618946e-01 8.20220932e-02 -7.40790486e-01\\n4.99322742e-01 3.16077262e-01 1.87335107e-02 -2.89647877e-01\\n7.35326290e-01 -2.16304600e-01 -1.00801133e-01 3.21742892e-02\\n-5.23423493e-01 -3.58700395e-01 1.92116454e-01 -2.96618879e-01\\n-2.33964980e-01 4.45686579e-01 1.65504087e-02 1.98386401e-01\\n2.95771122e-01 -1.97146222e-01 -5.09892814e-02 1.61430672e-01\\n-1.64429456e-01 -2.37755612e-01 -3.73731345e-01 -7.80293196e-02\\n-4.40856926e-02 -3.88676941e-01 -2.37136006e-01 -5.08576810e-01\\n-2.19527751e-01 -3.54987919e-01 -1.41787678e-01 2.72372574e-01\\n1.58604011e-01 8.70653242e-02 1.32660553e-01 4.78086174e-02\\n-2.08709374e-01 -5.99440336e-01 1.99819263e-02 -8.94805416e-03\\n2.47664079e-01 1.52464449e-01 7.94050545e-02 5.17726168e-02\\n3.41715738e-02 6.48942888e-01 -3.20831656e-01 -1.91042066e-01\\n1.09203830e-01 1.48161173e-01 1.04698956e-01 -3.97733003e-02\\n5.07630408e-02 3.09694499e-01 -3.20202678e-01 -9.60228369e-02\\n-2.18024597e-01 -3.28182168e-02 4.66330886e-01 -1.81492523e-03\\n-2.81329036e-01 -2.52997398e-01 1.24677047e-02 2.45771989e-01\\n-4.65997130e-01 -2.84224808e-01 6.24197304e-01 1.23508401e-01\\n1.34853527e-01 1.71850488e-01 2.86073506e-01 -7.81232268e-02\\n-1.75063163e-01 -1.45206824e-01 1.15165994e-01 1.11263581e-01\\n2.11658254e-01 8.14656988e-02 -1.33688629e-01 -5.13552487e-01\\n-3.52109337e+00 -1.17624223e-01 2.69350410e-01 -1.77220568e-01\\n2.68861860e-01 2.68066535e-03 6.19634688e-02 -1.62257150e-01\\n-4.13883030e-01 4.62229177e-02 -1.27573296e-01 -2.28280216e-01\\n8.44606683e-02 3.29648674e-01 1.57195091e-01 3.08645725e-01\\n1.29263967e-01 -2.22141087e-01 -1.22946640e-02 3.62971544e-01\\n-1.39546975e-01 -6.86518013e-01 1.83385700e-01 2.85891108e-02\\n2.96255052e-01 2.73318321e-01 -4.13080931e-01 -1.90542772e-01\\n-2.95050502e-01 -1.80301338e-01 1.26884058e-01 -3.64466250e-01\\n-3.32780965e-02 3.19563150e-01 2.83203334e-01 -6.28919676e-02\\n1.33865908e-01 -2.76239842e-01 -4.78464812e-02 -4.32089269e-01\\n6.00930601e-02 -5.00135064e-01 -7.45047629e-02 -5.60372248e-02\\n7.28386939e-01 -3.76320213e-01 2.14657098e-01 1.32776007e-01\\n9.21246503e-03 1.30457014e-01 3.32576558e-02 7.75809363e-02\\n-1.70795739e-01 -3.18200201e-01 -9.86755341e-02 -1.54593468e-01\\n5.84324300e-01 5.08086622e-01 -1.61577046e-01 5.21287620e-02\\n1.53204089e-03 -2.86226988e-01 -5.30879080e-01 -2.80238062e-01\\n-1.05648682e-01 -2.30384082e-01 -6.41126037e-01 -5.36254942e-01\\n-3.83740999e-02 -1.15055107e-01 -4.74285781e-02 5.37634552e-01\\n-2.52482742e-01 -3.95210832e-01 -1.65556222e-02 -5.78961492e-01\\n1.98314011e-01 -1.45615041e-01 8.62899870e-02 -1.42745286e-01\\n-1.24511473e-01 -5.49315929e-01 2.70422958e-02 4.75546084e-02\\n-2.47622523e-02 -2.47174740e-01 1.22326352e-01 -1.49212986e-01\\n-2.52571464e-01 -5.40702343e-01 3.74891996e-01 1.36767313e-01\\n2.08872885e-01 1.40689880e-01 2.40576521e-01 1.01999514e-01\\n1.67921364e-01 -9.52362344e-02 -3.61311324e-02 -4.44859505e-01\\n8.95510316e-02 -1.04696140e-01 3.82164299e-01 -3.26634869e-02\\n6.03698343e-02 2.00049117e-01 -1.46399140e-01 -1.01913661e-01\\n3.26237798e-01 1.08943908e-02 1.12008460e-01 -2.20066637e-01\\n3.19959432e-01 -2.72757381e-01 -1.28581539e-01 -1.83506012e-02\\n4.90713445e-03 5.74966431e-01 -7.06424713e-02 -3.90848041e-01\\n-1.47595271e-01 6.00507021e-01 -6.79052100e-02 -3.97872925e-02\\n-1.17952898e-01 7.98804238e-02 -2.74480075e-01 5.67922881e-03\\n-3.06092072e-02 -2.11964339e-01 -2.54958183e-01 -1.58343881e-01\\n-2.52743382e-02 2.50926197e-01 2.46412784e-01 1.84663594e-01\\n-1.68434650e-01 -4.49379891e-01 -5.07851020e-02 2.13145614e-01\\n2.47640848e-01 4.30739164e-01 1.75509617e-01 -3.08284581e-01\\n9.53409970e-02 2.99105197e-01 -1.54446036e-01 2.29702756e-01\\n-2.52739400e-01 7.84975961e-02 -4.36804354e-01 -2.90216118e-01\\n-2.59949058e-01 -3.24193925e-01 1.25374228e-01 1.87814057e-01\\n6.76294044e-02 1.33603681e-02 1.14257529e-01 -4.02388960e-01\\n3.39951277e-01 5.46802655e-02 1.78838268e-01 2.34859586e-01\\n-1.44989258e-02 5.66608250e-01 -2.93977652e-02 -2.72655915e-02\\n-2.06471995e-01 1.31502539e-01 -1.16314121e-01 -1.70047715e-01\\n-1.53268073e-02 -4.18426305e-01 -1.25635967e-01 3.95572037e-01\\n-1.51341744e-02 -1.98892385e-01 -1.84293345e-01 1.33103088e-01\\n-1.24523873e-02 -4.26679999e-01 -1.68256223e-01 4.72400412e-02\\n3.17882925e-01 1.31157205e-01 2.37877235e-01 -4.51426506e-01\\n-4.36960720e-02 -8.59291479e-02 -9.19071771e-03 5.38052976e-01\\n9.78387520e-02 2.43968032e-02 -1.85595438e-01 -3.31986129e-01\\n3.40757281e-01 -2.35036463e-01 -4.49520610e-02 -9.49716642e-02\\n1.09524071e-01 -2.29051903e-01 -3.94466668e-01 1.12901796e-02\\n-2.28889715e-02 -1.57082766e-01 4.99600731e-02 -5.62684201e-02\\n5.32312579e-02 1.14234164e-01 -6.65734053e-01 -3.08978528e-01\\n-3.15116107e-01 -1.32280253e-02 3.26039875e-03 -4.10727203e-01\\n-1.57596990e-02 -1.82145894e-01 -5.69393694e-01 3.07676047e-01\\n-2.93911099e-01 -1.48574477e-02 1.86498404e-01 4.93605547e-02\\n-4.61528271e-01 -1.57485783e-01 1.40986159e-01 2.44371355e-01\\n-2.01365843e-01 -2.32848778e-01 3.08321370e-03 -1.03073108e+00\\n2.20900252e-01 -1.38987526e-01 -7.84655735e-02 8.88724849e-02\\n-8.37963969e-02 -7.31486976e-01 8.10461566e-02 -3.53159219e-01\\n-1.50128268e-02 -3.72301266e-02 -1.43916145e-01 -4.17995423e-01\\n5.00536673e-02 -1.84866600e-02 -2.48600647e-01 3.91701728e-01\\n-3.62792760e-01 2.24280521e-01 -1.86300918e-01 5.38041890e-02\\n-9.67377126e-02 -3.68721902e-01 7.33922124e-02 -3.73454690e-01\\n-3.44112813e-01 -1.37546062e-01 -2.37962887e-01 -2.54413038e-01\\n1.16084358e-02 -3.28658849e-01 -6.08670749e-02 9.40840244e-02\\n2.77582705e-01 2.66999863e-02 -1.74799994e-01 -2.48681396e-01\\n6.78614751e-02 -3.78883272e-01 1.66547179e-01 -2.07185209e-01\\n6.27262667e-02 -1.06813110e-01 3.06599170e-01 7.80118108e-02\\n1.21283166e-01 -4.46942568e-01 3.80641311e-01 -2.89954752e-01\\n-3.20932388e-01 5.85157536e-02 4.20724303e-02 -1.23140395e-01\\n3.69675606e-01 -5.54781973e-01 -2.06679776e-02 4.28485304e-01\\n8.46811384e-02 5.97820766e-02 3.17055672e-01 -7.15464577e-02\\n-1.09568961e-01 4.51631516e-01 -3.66588026e-01 9.77575928e-02\\n7.44794071e-01 1.27400473e-01 2.58273005e-01 1.80481389e-01\\n1.57584041e-01 4.34243172e-01 4.23174053e-01 -4.54297960e-02\\n4.08817418e-02 3.91179770e-01 1.07984982e-01 -5.50856769e-01\\n5.44481678e-03 7.19335973e-02 -2.54584849e-01 -2.51239806e-01\\n6.41991615e-01 4.47902858e-01 -3.08286816e-01 -3.16318631e-01\\n-1.60260692e-01 -1.67772382e-01 2.61525780e-01 -7.24956840e-02\\n1.73292905e-01 -1.90510035e-01 4.76444274e-01 7.25093633e-02\\n2.79668629e-01 5.98666668e-01 -1.68798998e-01 -4.63422179e-01\\n-6.67553768e-02 2.49895677e-01 -5.61951799e-03 5.59397578e-01\\n-1.99815243e-01 3.07910413e-01 -3.81668541e-03 9.51393619e-02\\n-7.72468969e-02 2.07414761e-01 1.83281481e-01 9.25850868e-02\\n1.99795917e-01 1.58821672e-01 4.23609674e-01 4.99398202e-01\\n3.23253930e-01 4.63131130e-01 2.66349792e-01 4.53740209e-02\\n4.42332268e-01 4.39093471e-01 6.10854387e-01 1.24034561e-01\\n2.70760749e-02 1.35199070e-01 -3.34587088e-03 -2.65484080e-02\\n3.17961782e-01 3.41834605e-01 -2.74997614e-02 9.60237682e-01\\n4.50954556e-01 3.41277361e-01 6.73647583e-01 -6.31285608e-01\\n-2.82306641e-01 1.83541942e-02 4.15009975e-01 -3.90704185e-01\\n-1.07998855e-01 8.41566995e-02 -2.38736510e-01 2.20124871e-01\\n-3.84852022e-01 -3.00646037e-01 -5.36313877e-02 8.61279517e-02\\n2.65489910e-02 -1.19192466e-01 -2.08627075e-01 -1.65807530e-02\\n-1.76002905e-01 -1.24855906e-01 -5.09822190e-01 -1.34648541e-02\\n-2.38185540e-01 -2.20769331e-01 -1.34820342e-01 -1.33086696e-01\\n-1.20534085e-01 -2.65057206e-01 -9.40930173e-02 3.00957412e-02\\n1.81991190e-01 -1.37859479e-01 -1.01571336e-01 -2.45375454e-01\\n3.61819506e-01 2.96767086e-01 5.06321073e-01 -1.22618140e-03\\n1.05124742e-01 -2.19792813e-01 -3.25285435e-01 1.08996965e-01\\n6.82698861e-02 7.99415112e-02 4.71303686e-02 3.68025988e-01\\n-1.77926347e-01 -1.64311856e-01 1.06142387e-01 3.94598186e-01\\n-4.38350856e-01 5.98285422e-02 -8.29191133e-02 3.12816650e-01\\n4.62172218e-02 7.52945840e-02 -1.42926052e-01 2.19236463e-02\\n-5.24606146e-02 -5.29077649e-01 3.10505122e-01 -1.89693198e-01\\n-7.29181617e-02 1.79550022e-01 2.31941864e-01 2.65209377e-01\\n-2.43209913e-01 -3.36528458e-02 -7.77457729e-02 1.48966402e-01\\n2.96344887e-02 2.88941920e-01 -3.16526979e-01 -1.69977471e-01\\n-2.23189056e-01 1.41295016e-01 -3.24264973e-01 8.26542974e-02\\n-4.16963585e-02 3.40689451e-01 6.85338825e-02 7.51652122e-02\\n4.13419455e-01 -6.90255836e-02 -1.82402045e-01 -1.72046363e-01\\n-2.15069085e-01 -1.78717017e-01 2.70129666e-02 -1.14340223e-01\\n2.40369633e-01 -3.34704936e-01 -1.08840436e-01 -2.16799378e-01\\n-9.73969996e-02 -3.66852075e-01 4.89581600e-02 -9.68382210e-02]]',\n", + " 'job_description': 'Drucken Share Bewerben For our locations Zurich, Bern, Lausanne, Geneva and Granada, we are looking for Junior Software Engineers (Java/.Net). In this role Develop innovative web and mobile applications, using state-of-the-art tools and agile methodologies. Work closely with a multidisciplinary team of business analysts, architects and developers. Be involved in the complete project lifecycle, from requirements analysis to final delivery. What we offer A dynamic work environment with a young and highly motivated team. Ample opportunities to expand your knowledge and experience by working on a broad range of exciting projects, customers and technologies. Attractive prospects for career and personal development through training and coaching. A flat hierarchy and a culture of collaboration across all disciplines. The chance to make a difference in peoples’ life by building great software. About your profile You hold a MSc or BSc from a leading university or institute of technology. You already have some experience in developing Java or .Net applications from internships or course-related activities. You are passionate about technology and software engineering. You are familiar with the fundamentals of underlying technologies such as web-based user interfaces, relational and non-relational databases, application security, and communication protocols. You have a good command of English and either French or German (depending on working location). For Zurich and Bern you have very good language skills in German and English. For Lausanne and Geneva you have very good language skills in French and English. For Granada you have very good language skills in English.',\n", + " 'soft_skills': '[\"Collaboration\", \"Innovation\", \"Team Motivation\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Database Application\", \"Tooling\", \"Hostile Work Environment\", \"Relational Databases\", \"Requirements Analysis\", \"Agile Methodology\", \"Application Security\", \"Personality Development\", \"Communications Protocols\", \"Java (Programming Language)\", \"Mobile Application Software\", \"User Interface\", \"Software Engineering\", \"Finalization\"]',\n", + " 'languages': \"['English', 'South Ndebele', 'Welsh', 'Aymara', 'Indonesian']\"},\n", + " {'company_id': '1',\n", + " 'job_title': 'full stack software engineer',\n", + " 'location': 'Neuchâtel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.57387906e-01 2.24195898e-01 4.99606431e-01 7.67015666e-03\\n4.39205438e-01 -1.57651961e-01 1.62919555e-02 2.65592307e-01\\n7.57750422e-02 -5.09545028e-01 -1.28488429e-03 -2.34035105e-01\\n-1.36220977e-01 9.99910831e-02 9.62357596e-02 3.91497105e-01\\n4.33110178e-01 9.11655128e-02 -1.86837465e-01 3.61069202e-01\\n9.07389969e-02 -2.13403106e-01 -2.18327977e-02 7.80924439e-01\\n4.35213625e-01 2.85370983e-02 -1.80516448e-02 -6.72442168e-02\\n-1.89708650e-01 -2.32839704e-01 4.24221277e-01 -2.34960504e-02\\n-6.04972318e-02 -4.63003486e-01 6.75984658e-04 8.46491158e-02\\n-1.33285031e-01 1.73889995e-01 -3.61849405e-02 1.55229151e-01\\n-5.41841626e-01 -3.32599163e-01 2.60884240e-02 3.07021011e-03\\n-1.41364798e-01 -2.91115910e-01 6.25893474e-02 3.99509296e-02\\n1.43256754e-01 4.80507836e-02 -4.74243581e-01 2.86845058e-01\\n-2.92383611e-01 -2.12280035e-01 2.52686083e-01 4.88089323e-01\\n7.45727196e-02 -5.12309074e-01 -5.83395600e-01 -3.71003330e-01\\n-9.40715671e-02 -1.00202873e-01 9.56310332e-02 -2.97852039e-01\\n2.98183799e-01 1.14422236e-02 1.03572812e-02 3.35094213e-01\\n-8.43954563e-01 8.42064619e-03 -2.03350395e-01 -6.37425110e-02\\n-2.80253857e-01 -1.89941585e-01 -2.98184484e-01 -3.52415778e-02\\n-1.45451844e-01 3.86997133e-01 1.25142768e-01 1.36410326e-01\\n-2.01436341e-01 2.76433319e-01 -1.79879740e-01 4.77862537e-01\\n2.18596831e-01 9.53932032e-02 3.49596262e-01 3.13006997e-01\\n-3.50769341e-01 4.72714603e-01 8.32425803e-02 -2.67810434e-01\\n2.54730910e-01 1.15154423e-01 4.81665850e-01 2.85611581e-03\\n1.23618796e-01 1.57140419e-01 -2.56619781e-01 2.50683784e-01\\n2.49171734e-01 -2.85317004e-01 6.73409365e-03 -1.31749257e-01\\n-3.23067680e-02 1.95298083e-02 6.55323416e-02 1.42661870e-01\\n-4.27030414e-01 4.57454562e-01 2.19374508e-01 -2.28910401e-01\\n-1.59789339e-01 -3.83001745e-01 -1.17790073e-01 9.39503908e-02\\n-1.60202701e-02 6.38229847e-02 2.23725945e-01 6.88795745e-02\\n1.96974635e-01 2.60264110e-02 -5.22742048e-04 8.85874748e-01\\n-1.40524998e-01 9.57306996e-02 -2.51644611e-01 2.53697485e-01\\n1.50980324e-01 -2.89986312e-01 2.80801773e-01 2.16312230e-01\\n1.39132887e-02 -1.18245423e-01 -1.95549756e-01 3.32219392e-01\\n-7.19487816e-02 -1.09254085e-01 -2.73653954e-01 2.20479891e-01\\n-1.51173472e-02 -4.65274721e-01 6.94707155e-01 1.68074474e-01\\n2.55161643e-01 4.93885428e-02 1.21857539e-01 -8.68645608e-02\\n-1.27081886e-01 2.56290913e-01 7.76379332e-02 2.72442311e-01\\n-2.18108118e-01 -3.20613831e-01 -2.21017212e-01 2.23724842e-01\\n-3.53618503e-01 1.75051764e-01 -1.28394797e-01 -1.41465947e-01\\n3.30577046e-01 1.05536059e-02 -2.87803292e-01 2.10825711e-01\\n-1.01773039e-01 3.64506356e-02 -7.72139207e-02 2.71981359e-01\\n-1.02155492e-01 2.14078188e-01 9.22173262e-04 -6.45145699e-02\\n5.64561486e-01 2.84836173e-01 2.79161423e-01 -1.23067670e-01\\n3.45087260e-01 -5.11676781e-02 1.63405091e-01 8.21002498e-02\\n-6.31040514e-01 3.10869873e-01 -3.68727036e-02 -1.76589251e-01\\n1.34969518e-01 -6.52770475e-02 3.25856805e-01 -2.57157922e-01\\n-5.15967123e-02 -1.62426069e-01 -3.76122057e-01 -3.22656900e-01\\n-2.83604413e-01 2.77144164e-02 4.97196406e-01 -4.26776201e-01\\n-8.15059394e-02 2.91484952e-01 -5.68268538e-01 -1.38173819e-01\\n2.32215762e-01 1.47685558e-01 1.01201661e-01 7.15292692e-02\\n-1.90153286e-01 -6.05410337e-01 8.48772302e-02 -4.52759802e-01\\n-4.09371853e-01 3.98010090e-02 -3.53863716e-01 1.78142220e-01\\n7.17044398e-02 1.07615422e-02 -8.54406655e-02 1.63991392e-01\\n-1.66344672e-01 -1.10204682e-01 8.21704417e-02 6.00692928e-02\\n1.95020586e-01 2.53835693e-02 -3.49418581e-01 4.34643269e-01\\n-2.08886564e-01 6.72649145e-01 8.37124288e-02 -8.90098214e-01\\n5.02213538e-01 3.19890678e-01 -6.48893192e-02 -3.48706692e-01\\n4.43045735e-01 -2.83987701e-01 -8.49256199e-03 1.15177333e-01\\n-3.37654531e-01 -2.92428941e-01 2.31472522e-01 -1.71367258e-01\\n-2.20631361e-01 4.41119671e-01 1.76952966e-02 9.16481018e-03\\n1.95702165e-01 -2.80308783e-01 -4.14756462e-02 1.09346136e-01\\n-4.77231741e-02 -1.89879775e-01 -4.89079297e-01 1.88513100e-03\\n-8.47586989e-02 -4.07218874e-01 -1.30039483e-01 -3.47180545e-01\\n-2.41055876e-01 -3.97242963e-01 -3.49088669e-01 2.96143562e-01\\n2.25147307e-01 2.32551634e-01 -4.04355973e-02 7.44869709e-02\\n-1.01113021e-01 -7.65807092e-01 -5.17901964e-02 9.09530818e-02\\n4.55614984e-01 2.97814310e-01 1.09813064e-01 -7.03129247e-02\\n4.47022766e-02 5.63230157e-01 -3.85134876e-01 -2.58236289e-01\\n9.64315012e-02 1.24445297e-01 8.34759995e-02 -1.69341728e-01\\n9.87809896e-02 3.20158005e-01 -2.26465285e-01 2.07710825e-03\\n-3.88338137e-03 -5.48758395e-02 4.54785943e-01 -7.30495080e-02\\n-4.50373381e-01 -2.26587906e-01 -8.99599567e-02 1.95765853e-01\\n-5.35101414e-01 -1.89487040e-01 5.62533021e-01 2.48954564e-01\\n2.91302830e-01 1.00056246e-01 1.67688861e-01 -6.92145973e-02\\n-1.73061445e-01 -3.14185739e-01 3.40069145e-01 1.11251567e-02\\n1.78322166e-01 1.65916294e-01 -3.08023635e-02 -6.76074743e-01\\n-3.35571814e+00 -1.75105125e-01 1.85038835e-01 -2.31760085e-01\\n2.18316182e-01 -1.25741452e-01 1.93209387e-02 -1.32110715e-01\\n-2.53572494e-01 5.47187626e-02 -1.86318964e-01 -8.39887932e-02\\n9.73737389e-02 1.58159584e-01 1.00809872e-01 2.19976634e-01\\n2.05799997e-01 -1.63726091e-01 1.10146916e-02 2.65741378e-01\\n-1.71532810e-01 -6.55061483e-01 9.83048826e-02 -8.91530812e-02\\n3.22667509e-01 1.62748769e-01 -3.84980142e-01 -6.11835346e-02\\n-2.69997835e-01 -1.82673231e-01 8.05810913e-02 -2.59896189e-01\\n-1.40804008e-01 2.03420699e-01 1.01352841e-01 -9.51327831e-02\\n8.59824568e-02 -3.63885522e-01 -1.81158930e-01 -5.00918269e-01\\n1.52946234e-01 -5.53841233e-01 -4.17119972e-02 -1.15888700e-01\\n5.94747305e-01 -3.25078219e-01 1.89875484e-01 1.09403998e-01\\n2.83114880e-01 1.29362851e-01 1.23972818e-02 2.62861364e-02\\n-2.21838564e-01 -1.69493467e-01 -5.30149117e-02 -1.88615918e-01\\n5.25774539e-01 4.56460774e-01 -2.93390125e-01 -4.37667966e-02\\n3.56705412e-02 -3.41640472e-01 -4.32385027e-01 -2.23129198e-01\\n-7.13311061e-02 -2.52163529e-01 -5.77911139e-01 -4.77157831e-01\\n-3.09571266e-01 -1.10365443e-01 -1.26469702e-01 6.62187338e-01\\n-3.23219568e-01 -3.27766478e-01 6.65277019e-02 -5.28533757e-01\\n2.30842918e-01 -1.96435735e-01 4.32930477e-02 -2.52803147e-01\\n-2.27631286e-01 -5.73321760e-01 6.24423847e-02 -1.82968341e-02\\n-1.73961565e-01 -1.79617852e-01 6.78169578e-02 -6.17943071e-02\\n-2.32531011e-01 -4.19756383e-01 3.89647216e-01 1.04346447e-01\\n2.93228269e-01 5.08284681e-02 2.81928509e-01 -4.79459763e-02\\n3.37367564e-01 -8.83976743e-02 -1.13041550e-02 -3.93449515e-01\\n1.54537633e-01 2.55006105e-02 5.09475887e-01 -1.81696236e-01\\n-1.32874712e-01 1.52365863e-01 -2.80296147e-01 -9.98495892e-02\\n4.27709907e-01 5.98356500e-02 2.41100192e-02 -1.26159042e-01\\n3.05627704e-01 -2.97293186e-01 -2.31893986e-01 1.07932895e-01\\n8.20666179e-02 6.54827118e-01 -2.06933096e-02 -3.98156404e-01\\n-9.41035450e-02 4.97114569e-01 -7.45334774e-02 6.69855997e-02\\n-1.63031146e-01 1.21430025e-01 -1.41673610e-01 2.03504503e-01\\n5.81516325e-02 -1.41184911e-01 -2.12617084e-01 -7.58793280e-02\\n-1.01767808e-01 2.25126356e-01 1.97094828e-01 6.11173064e-02\\n-9.18186009e-02 -2.76917189e-01 -1.15591481e-01 2.20494658e-01\\n1.40025735e-01 4.62708712e-01 1.79113910e-01 -2.61307478e-01\\n6.93134218e-02 3.74970138e-01 -1.66973844e-01 1.88028678e-01\\n-3.06800246e-01 3.88154015e-02 -5.07762194e-01 -1.43216029e-01\\n-2.85385489e-01 -3.75269949e-01 1.11975931e-01 2.98156142e-01\\n5.36708087e-02 -3.08389924e-02 2.81339567e-02 -4.94714230e-01\\n1.57665610e-01 1.08285412e-01 1.70852378e-01 1.00113593e-01\\n3.32198851e-02 4.90703076e-01 -1.01132318e-03 -1.47146970e-01\\n-1.85693353e-01 3.55091654e-02 -6.82287887e-02 -1.82798803e-01\\n6.06072955e-02 -4.86986220e-01 -5.72313331e-02 3.16250741e-01\\n1.40899912e-01 -2.36131623e-01 -2.40024000e-01 3.50003898e-01\\n4.15401310e-02 -2.47017115e-01 -2.62290299e-01 -2.24967618e-02\\n2.62715280e-01 6.07578978e-02 2.16465384e-01 -3.89911056e-01\\n-8.42264965e-02 4.31800932e-02 -1.22739203e-01 3.84100348e-01\\n2.32975967e-02 1.01430684e-01 -2.31943935e-01 -1.55882329e-01\\n3.36307049e-01 -5.94463050e-02 -4.67284583e-02 -1.03555344e-01\\n5.76151237e-02 -1.34188741e-01 -5.22286177e-01 7.44893253e-02\\n1.70206986e-02 -1.74265087e-01 5.33537157e-02 1.05105408e-01\\n4.18187976e-02 1.32741690e-01 -4.79712486e-01 -2.69251585e-01\\n-2.44657099e-01 -1.28393084e-01 1.26296237e-01 -4.95894432e-01\\n-1.22612000e-01 -1.00875467e-01 -4.81908411e-01 1.76894516e-01\\n-2.77513266e-01 -1.07725382e-01 8.95582885e-02 6.33658022e-02\\n-2.83998668e-01 -2.77838148e-02 -2.29592547e-02 2.75934875e-01\\n-2.86846757e-01 -3.39762658e-01 5.56057990e-02 -9.45985317e-01\\n2.27170900e-01 6.89734519e-02 -2.22424865e-01 -3.26718669e-03\\n-1.74108610e-01 -6.05216146e-01 1.30950481e-01 -4.37011421e-01\\n-1.50994360e-01 -2.34844610e-02 -2.72105157e-01 -2.97714859e-01\\n5.47038652e-02 -1.74721032e-01 -3.68130445e-01 3.76134336e-01\\n-4.05940771e-01 4.43874866e-01 -1.76401973e-01 -4.87243757e-04\\n-2.13410147e-02 -2.63319880e-01 2.02112824e-01 -2.84823000e-01\\n-4.09996748e-01 -2.83034474e-01 -3.78045678e-01 -3.00968587e-01\\n1.11076590e-02 -2.72479594e-01 -1.63361132e-01 2.23125428e-01\\n4.18927550e-01 9.21448693e-02 -8.02528784e-02 -3.98536235e-01\\n-5.82518913e-02 -5.93117774e-01 1.74098760e-02 -5.26624545e-02\\n-7.54604787e-02 -9.09532756e-02 1.88905656e-01 1.10775791e-01\\n1.42395273e-01 -3.75263512e-01 3.93059671e-01 -3.88286471e-01\\n-2.79299974e-01 -7.92382509e-02 -2.73861047e-02 9.36259404e-02\\n2.00426802e-01 -5.31054139e-01 9.77144539e-02 3.01199764e-01\\n1.98462456e-01 2.97670960e-02 1.91203266e-01 -4.87900116e-02\\n-6.87882900e-02 2.27988616e-01 -2.98012584e-01 1.73090607e-01\\n6.54144347e-01 1.17388286e-01 6.31652772e-02 2.00194702e-01\\n1.16988398e-01 5.49446702e-01 5.94745517e-01 -2.47914586e-02\\n-9.24794599e-02 2.57767141e-01 8.51211250e-02 -4.79619801e-01\\n-3.72260362e-02 2.76423022e-02 -1.47639990e-01 -3.80314529e-01\\n7.14551330e-01 3.98576140e-01 -5.47404170e-01 -2.21336380e-01\\n-1.39679372e-01 -1.44555777e-01 2.00027853e-01 -7.04430044e-02\\n-3.39897536e-03 -6.29096925e-02 4.53113943e-01 -4.72913310e-02\\n2.08166152e-01 5.66115141e-01 -2.64952809e-01 -3.55567753e-01\\n-6.86679780e-02 3.62269878e-01 1.28274396e-01 4.08249676e-01\\n-1.98487312e-01 2.37037778e-01 -9.02682822e-03 6.05885573e-02\\n-1.00118443e-01 2.36629352e-01 8.07779133e-02 5.46400510e-02\\n2.47341186e-01 -1.67429149e-02 5.54966450e-01 4.74361002e-01\\n2.85025418e-01 4.20415431e-01 2.60521919e-01 4.21388745e-02\\n4.95278329e-01 6.49276495e-01 3.93783748e-01 7.72576332e-02\\n-1.11409156e-02 2.25496292e-01 1.70007914e-01 -3.44147757e-02\\n4.10633206e-01 4.40927386e-01 1.74155027e-01 8.08846772e-01\\n3.07304114e-01 3.02230656e-01 6.50846004e-01 -6.49663210e-01\\n-3.64356220e-01 -1.44418124e-02 5.23085117e-01 -2.48269573e-01\\n-4.11868766e-02 1.91694826e-01 -1.47834703e-01 3.07997227e-01\\n-3.73023361e-01 -1.27811998e-01 5.36306575e-02 9.21958461e-02\\n3.12214810e-02 -1.92565531e-01 -2.81669199e-01 5.60958087e-02\\n-1.00570589e-01 -1.80167913e-01 -3.31927955e-01 -9.69945937e-02\\n-2.72232592e-01 -2.60736402e-02 -7.23853558e-02 -1.15812071e-01\\n-1.85444765e-02 -3.97107005e-01 -1.34550244e-01 4.04467285e-02\\n3.69552046e-01 -1.67248875e-01 -9.58922058e-02 -1.34342164e-01\\n3.30228537e-01 1.68335885e-01 6.05117857e-01 7.68281966e-02\\n2.46731695e-02 -1.63395479e-01 -2.68286645e-01 1.74666971e-01\\n6.18755706e-02 1.51143685e-01 3.52012813e-02 2.19240040e-01\\n-2.01913804e-01 -1.46688879e-01 2.26790637e-01 3.25612247e-01\\n-3.89241725e-01 -7.37448260e-02 -1.58750713e-01 2.35728651e-01\\n8.98588151e-02 1.61781490e-01 -1.91177696e-01 4.34755534e-03\\n-1.86707377e-01 -4.07727838e-01 3.17683667e-01 -8.36183280e-02\\n-1.94343850e-01 9.68216807e-02 2.67825663e-01 2.44757056e-01\\n-1.58445179e-01 -5.56182899e-02 -5.41100129e-02 1.26169488e-01\\n6.32203966e-02 3.55454206e-01 -1.05133086e-01 -2.34796911e-01\\n-2.68025041e-01 1.81693420e-01 -1.99103922e-01 3.76326554e-02\\n-1.00589730e-01 2.89726645e-01 3.90762649e-02 6.35280684e-02\\n3.77216518e-01 5.01380265e-02 -2.76796132e-01 -2.48932004e-01\\n-2.78387010e-01 -1.10995561e-01 -7.88599625e-03 8.55033547e-02\\n1.08557038e-01 -3.86286855e-01 -5.02902046e-02 -1.17031999e-01\\n-1.29941404e-01 -2.66808242e-01 -3.83708254e-02 -3.63659114e-02]]',\n", + " 'job_description': 'We are seeking a Full Stack Software Engineer to develop software for our portable medical diagnostics system. The candidate will join a multi-disciplinary team dedicated to developing high-quality products. The ideal candidate is a team player, likes overcoming difficult challenges, enjoys learning new skills, and has a “hands-on” problem solving approach. This is an outstanding opportunity for a self-motivated individual to make a key contribution and increase their responsibilities in a high-growth start-up environment. You will build software used by medical professionals and patients. We have build our platform on a modern stack, including Node.js, React, Redux, GraphQL. As a team, we embrace collaboration and independent responsibility: you’ll be supported in your work, and you’ll have the freedom to make your own decisions. This role is for someone who wants to apply their computer science knowledge to have a meaningful impact on personalised medicine and life sciences. We are looking for someone to grow with the organization as a core member of the team. Job responsibilities: As part of the 1Drop Diagnostics team, the candidate will develop software for a distributed portable medical diagnostics system: Provide architecture and design for the overall application according to the requirements Inspire our users with a beautiful and intuitive UI/UX design Develop new features and functionality in collaboration with team members Maintain best practices relating to design, implementation, documentation, testing, and deployment. Ensure an easy-to-read and robust code base and good test coverage. Monitor and optimize code performance Provide integration with external services Provide technical leadership Assess current development processes and recommend changes as needed Our ideal candidate: Minimum 2 years’ experience working in a team with a modern web stack (Node.js, Django, Rails, React, etc.) building high-performance web applications Proficient in modern JavaScript (especially promises), Python, Ruby/Ruby on Rails Passion for front-end engineering and design Desire to push our stack forward. Currently, we use Angular, Redux, and React, GraphQL on the front end, Node.js, Postgres and Rabbitmq on the back end Deep knowledge of the building blocks of the web: HTTP, headers, cookies, caching Knowledge and experience using dev ops (continuous integration: Maven, Jenkins, Git) Open, objective, opinionated. Having technology preferences but happy to use frameworks and tools that get the job done efficiently and with scale in mind Nice to have skills and experience: Interest in personalised medicine, biology, laboratory science Experience with machine learning and image processing Passion for making in your spare time: electronics, robots, art, bikes, cars, anything! Experience with Android or iOS development Experience working with a quality system in a regulated industry ',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Leadership\", \"Decisiveness\", \"Collaboration\", \"Professionalism\", \"Problem Solving\", \"Integration\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Tooling\", \"Jenkins\", \"Nice (Unix Utility)\", \"Clinical Laboratory Science\", \"Computer Science\", \"Life Sciences\", \"High Performance Computing\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Scholastic READ 180\", \"Scale (Map)\", \"Ruby (Programming Language)\", \"Android (Operating System)\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"GraphQL\", \"IOS Development\", \"Quality Management Systems\", \"Software Engineering\", \"React.js\", \"Django (Web Framework)\", \"Threading Building Blocks\", \"Machine Learning Methods\", \"Front-End Engineering\", \"Image Processing\", \"RabbitMQ\", \"Product Quality (QA/QC)\", \"React Redux\", \"Apache Maven\", \"Electronics\", \"Biology\", \"JavaScript (Programming Language)\", \"Robotics\", \"Ruby On Rails\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Http Headers\", \"Software Development\", \"Service Provider\", \"Diagnostic Medical Sonography\", \"Git Flow\", \"Documentation Based Coding\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Portuguese', 'Panjabi', 'Chechen']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'embedded c++ software engineer',\n", + " 'location': 'Argovia',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.28433421e-01 2.83800691e-01 6.33915722e-01 -1.78634495e-01\\n5.39020002e-01 -3.36250365e-01 6.18693605e-02 3.50471020e-01\\n-7.10186884e-02 -3.54706466e-01 -1.74907476e-01 -2.11526304e-01\\n-9.95143130e-02 4.14948240e-02 1.44126892e-01 3.07880491e-01\\n2.99018383e-01 8.96476954e-02 -1.44576609e-01 3.54188442e-01\\n2.68983066e-01 -1.06261246e-01 1.31449848e-01 6.80427611e-01\\n3.26738596e-01 4.70369793e-02 -4.60847206e-02 1.59742296e-01\\n-2.50792265e-01 -3.15738320e-01 3.22002202e-01 -1.88197382e-02\\n-1.56722188e-01 -2.02449366e-01 9.01135653e-02 3.54674384e-02\\n-2.25774884e-01 3.02493162e-02 4.97582592e-02 1.35087311e-01\\n-3.64428759e-01 -2.31375441e-01 1.10086657e-01 -6.57876655e-02\\n-1.91520810e-01 -3.74891162e-01 5.34251742e-02 1.54175824e-02\\n1.33457497e-01 3.06025743e-02 -3.08697760e-01 4.29379880e-01\\n-2.13567898e-01 -2.57574588e-01 2.82620788e-01 5.16020358e-01\\n-5.81523664e-02 -5.58755100e-01 -3.11011344e-01 -2.14066491e-01\\n1.49219289e-01 -1.04092278e-01 7.29059502e-02 -2.60019720e-01\\n4.82323080e-01 2.15871483e-02 -8.75292625e-03 2.87231207e-01\\n-7.70939112e-01 -2.97951270e-02 -2.14138210e-01 4.92615402e-02\\n-2.69597352e-01 -1.78969763e-02 -1.71551317e-01 -1.08788617e-01\\n-1.45132795e-01 4.40129548e-01 1.38669759e-01 1.37510031e-01\\n-4.95421961e-02 1.91691786e-01 -2.06324264e-01 2.22782061e-01\\n2.85600394e-01 2.98755765e-01 1.22878239e-01 2.50821173e-01\\n-3.89812648e-01 4.43323404e-01 1.48270443e-01 -2.45784834e-01\\n1.55818790e-01 2.37349123e-01 4.09518898e-01 4.22994047e-02\\n1.23376392e-01 9.40941647e-02 -1.87994063e-01 2.51849562e-01\\n2.98664182e-01 -2.55997926e-01 4.81074676e-03 6.54120445e-02\\n-8.02418739e-02 1.01241786e-02 -3.76035161e-02 3.63168985e-01\\n-4.17028069e-01 5.32698572e-01 -7.96160381e-03 -1.28235638e-01\\n4.30529155e-02 -6.28311574e-01 -2.03172490e-01 7.82053992e-02\\n-1.81007723e-03 5.45773357e-02 2.48085499e-01 2.82290280e-01\\n2.03134596e-01 1.23822674e-01 2.10894838e-01 9.86788034e-01\\n-2.25828122e-02 1.95756823e-01 -1.78452313e-01 4.59622473e-01\\n1.73260570e-01 -2.30558112e-01 2.27671489e-01 4.52559143e-01\\n1.71795160e-01 -1.16756052e-01 -1.33527979e-01 2.48957768e-01\\n-3.83067951e-02 -2.56491303e-01 -2.53842205e-01 1.90527380e-01\\n-1.25883251e-01 -5.89017451e-01 5.86031079e-01 4.97433692e-02\\n7.57842213e-02 4.33128327e-02 -6.19511977e-02 -7.17294887e-02\\n-1.44944251e-01 1.76976144e-01 8.22115839e-02 9.14429501e-02\\n-3.51145148e-01 -1.74420819e-01 -3.71995151e-01 1.66720226e-01\\n-2.54291981e-01 8.60551447e-02 -1.11995898e-01 -1.00853324e-01\\n2.36959651e-01 -2.71535553e-02 -3.96469057e-01 3.48099649e-01\\n-8.03437233e-02 -3.56233194e-02 -2.82146148e-02 2.88996488e-01\\n-8.83134902e-02 1.99030668e-01 -1.10869899e-01 -1.88610107e-01\\n3.79173994e-01 1.58160299e-01 8.91948417e-02 -6.74522519e-02\\n3.43650758e-01 -2.61498857e-02 8.30162019e-02 -2.52666343e-02\\n-8.15940619e-01 4.24162418e-01 -1.70750711e-02 -9.35131311e-02\\n5.52144228e-03 -2.17773635e-02 3.21559012e-01 -3.61311913e-01\\n6.65487945e-02 -1.76721483e-01 -3.44664007e-01 -2.30164394e-01\\n-1.99938595e-01 -8.17781966e-03 4.66814369e-01 -4.13906038e-01\\n-1.49052903e-01 1.12112194e-01 -5.38332105e-01 1.61192104e-01\\n3.38802099e-01 2.04717040e-01 2.57980943e-01 1.52376816e-01\\n-1.29490107e-01 -5.06538332e-01 3.04553583e-02 -3.55656892e-01\\n-2.97343463e-01 1.70748323e-01 -2.47116402e-01 2.33990937e-01\\n1.79551721e-01 -7.68691348e-03 -9.27392989e-02 -3.30867805e-03\\n-1.53524086e-01 -1.21811941e-01 2.10250795e-01 6.13110289e-02\\n3.45731229e-01 -4.94562685e-02 -3.23100448e-01 5.71458280e-01\\n-2.19040707e-01 4.19847786e-01 6.44316524e-02 -8.19191635e-01\\n4.59880859e-01 3.33465219e-01 5.42193875e-02 -3.76955301e-01\\n7.01029181e-01 -2.66211987e-01 -1.03540562e-01 1.94682166e-01\\n-4.12295789e-01 -2.49587297e-01 1.17122680e-01 -6.70905486e-02\\n-2.83816338e-01 4.94197756e-01 1.32125109e-01 7.79995546e-02\\n2.35521883e-01 -1.75491020e-01 -1.75365642e-01 -1.14681176e-03\\n-1.25734836e-01 -3.06762069e-01 -3.31499130e-01 1.03825867e-01\\n-2.85401102e-02 -5.48044503e-01 -9.67832357e-02 -4.42876756e-01\\n-2.12768346e-01 -3.55495423e-01 -2.72539377e-01 2.52298743e-01\\n1.18782647e-01 1.00615039e-01 6.52704760e-02 -9.68820751e-02\\n-3.01340014e-01 -5.49830675e-01 2.49984693e-02 1.15947574e-01\\n3.16684127e-01 1.62267193e-01 1.89710036e-02 -5.14201783e-02\\n4.44855075e-03 6.63841128e-01 -1.92240447e-01 -2.12481782e-01\\n8.82792249e-02 2.30699867e-01 -3.59785147e-02 -9.96194407e-02\\n1.37030154e-01 3.83554220e-01 -1.85891986e-01 4.48949970e-02\\n-1.82216585e-01 4.51208092e-02 2.88214743e-01 -1.36769652e-01\\n-2.40017131e-01 -3.82843882e-01 -8.07627663e-02 1.07503720e-01\\n-5.38244605e-01 -2.05664426e-01 5.71824491e-01 1.56202257e-01\\n1.42702460e-01 1.17312402e-01 2.65082389e-01 -1.84468552e-01\\n-1.69798672e-01 -9.33347419e-02 1.12396643e-01 7.14631602e-02\\n4.12950255e-02 1.38561651e-01 -1.49420395e-01 -5.27378559e-01\\n-3.50507236e+00 -1.14133649e-01 5.79554476e-02 -3.30120802e-01\\n1.81312278e-01 -1.57222182e-01 7.08583370e-02 -9.66312438e-02\\n-2.36728773e-01 6.52545020e-02 -1.78822264e-01 -1.36458546e-01\\n1.99731067e-01 2.08037272e-01 9.82021615e-02 1.94051802e-01\\n1.35492131e-01 -2.21733466e-01 -1.84385218e-02 3.17551523e-01\\n-1.14467166e-01 -5.32933831e-01 2.14331567e-01 -1.01963326e-01\\n3.24740142e-01 3.29029381e-01 -3.42188150e-01 -9.57525820e-02\\n-1.99341059e-01 -2.78295010e-01 3.41204964e-02 -1.99339688e-01\\n-2.46953070e-02 3.69957864e-01 1.20396130e-01 -1.27388481e-02\\n2.36453936e-01 -3.24682593e-01 4.56906147e-02 -3.27549428e-01\\n1.67174712e-01 -5.59851646e-01 -8.31977800e-02 -9.68518555e-02\\n5.99866509e-01 -3.87498289e-01 1.60631239e-01 1.92121252e-01\\n6.83304518e-02 2.55310148e-01 6.12892620e-02 -1.65842786e-01\\n-1.36378258e-01 -2.19628200e-01 -4.88314917e-03 -2.33214110e-01\\n3.63233298e-01 6.52706444e-01 -2.15781659e-01 -9.96714607e-02\\n-3.82380262e-02 -3.55498254e-01 -5.41756630e-01 -4.27337825e-01\\n-1.73982471e-01 -1.10364236e-01 -6.65824175e-01 -4.67487693e-01\\n-1.15721680e-01 -1.14774451e-01 -8.58013481e-02 4.10427809e-01\\n-1.81438282e-01 -3.81029010e-01 -7.03048557e-02 -3.50005478e-01\\n7.06800148e-02 -1.30912155e-01 -5.85656986e-02 -1.15818635e-01\\n-1.77744329e-01 -4.48256046e-01 2.95500550e-02 4.52475771e-02\\n-1.27806023e-01 -2.05350921e-01 1.95867211e-01 -2.43503764e-01\\n-2.64017642e-01 -4.62816238e-01 4.72209632e-01 1.48906698e-03\\n3.56957227e-01 5.22785597e-02 2.17943907e-01 5.98901659e-02\\n3.62339199e-01 -2.39116907e-01 1.07705407e-01 -4.01276737e-01\\n1.81415752e-01 8.37729797e-02 5.67245126e-01 -1.69396266e-01\\n-3.70191745e-02 9.10851657e-02 -1.93963408e-01 -1.45988151e-01\\n2.85134494e-01 -7.23942593e-02 8.41377825e-02 -4.28165138e-01\\n2.92338550e-01 -4.22561377e-01 -2.38714069e-01 1.19867243e-01\\n1.04501903e-01 6.01891637e-01 -1.08066655e-03 -3.74050736e-01\\n-2.28009582e-01 3.79262328e-01 -1.94812819e-01 -1.70733213e-01\\n-1.90741628e-01 8.17329139e-02 -3.14837247e-01 2.75991440e-01\\n-2.67412011e-02 -2.98363473e-02 -3.19977432e-01 -4.78463024e-02\\n6.61473274e-02 2.54173577e-01 2.47520044e-01 1.45302698e-01\\n1.88556146e-02 -3.65112722e-01 -2.11988389e-02 8.15870464e-02\\n1.89037308e-01 2.40460590e-01 8.40763003e-02 -1.64467141e-01\\n2.04309411e-02 3.36773962e-01 -9.68240425e-02 2.71660239e-01\\n-2.06773236e-01 9.14297327e-02 -4.53723282e-01 -3.67636085e-01\\n-2.16123655e-01 -1.78860724e-01 -1.04994699e-01 2.98157960e-01\\n9.89428237e-02 -3.67642976e-02 4.06952612e-02 -4.09063011e-01\\n2.62071520e-01 -2.12296639e-02 2.61974841e-01 2.05172285e-01\\n-5.99016100e-02 5.55333853e-01 4.71055359e-02 -1.74346894e-01\\n-1.98169261e-01 1.17390223e-01 -2.03149781e-01 -1.20898336e-01\\n1.85418837e-02 -3.56675744e-01 -3.25325467e-02 3.57393175e-01\\n1.06972635e-01 -3.89072537e-01 -6.25909120e-02 3.01125318e-01\\n8.05768520e-02 -4.11367327e-01 -1.89900219e-01 7.30234459e-02\\n2.93910265e-01 -3.90980439e-03 2.77724475e-01 -4.47771460e-01\\n2.24705078e-02 3.88565548e-02 -5.22622429e-02 4.18771863e-01\\n1.28139080e-02 -5.71447462e-02 -7.10191429e-02 -2.90025443e-01\\n2.80762672e-01 -1.28526226e-01 -6.53350577e-02 -8.17710459e-02\\n1.72963008e-01 -1.24809131e-01 -3.98507923e-01 8.78012460e-03\\n-6.90002367e-02 -5.11021502e-02 7.45286196e-02 -1.47194415e-02\\n7.99602270e-02 8.00486431e-02 -4.67562854e-01 -2.93140441e-01\\n-2.50585288e-01 -1.59029290e-01 2.59294212e-02 -3.90652388e-01\\n3.00317053e-02 -2.66944487e-02 -5.35912812e-01 2.67678171e-01\\n-2.69338906e-01 6.75514936e-02 2.18764707e-01 2.84709428e-02\\n-4.46686655e-01 -1.84435442e-01 2.14141771e-01 1.88673332e-01\\n-2.47588038e-01 -1.68189839e-01 -9.81839597e-02 -1.04709041e+00\\n3.06426793e-01 -6.33917451e-02 -1.01985127e-01 1.21544152e-01\\n-1.20568283e-01 -6.26050234e-01 8.57298225e-02 -4.13252085e-01\\n-1.00614451e-01 -1.49875339e-02 -2.38643572e-01 -3.98722202e-01\\n-2.83432938e-02 3.43034230e-02 -2.01497883e-01 3.57982546e-01\\n-4.22159731e-01 3.86440337e-01 -5.65341264e-02 3.16583551e-02\\n-1.71221972e-01 -2.21855760e-01 7.08112195e-02 -5.40367782e-01\\n-3.45280826e-01 -1.54359028e-01 -1.79634154e-01 -1.46865696e-01\\n-1.13110654e-01 -1.75628528e-01 -1.39088452e-01 1.60523932e-02\\n1.87968925e-01 1.33474991e-01 -8.16908106e-02 -2.01927856e-01\\n1.29431143e-01 -3.81974339e-01 -7.66769145e-03 -2.25014433e-01\\n2.51045842e-02 -1.77515507e-01 1.70466989e-01 -3.03018343e-04\\n9.87488329e-02 -4.01008338e-01 3.97766799e-01 -1.88991487e-01\\n-2.92879462e-01 1.02180161e-01 4.79772016e-02 7.53536895e-02\\n3.57520193e-01 -3.95414799e-01 1.10221513e-01 2.92540908e-01\\n1.13467745e-01 1.12192407e-01 2.77721047e-01 -3.64876129e-02\\n-1.72207966e-01 2.38991588e-01 -3.93743992e-01 8.59974250e-02\\n7.32881427e-01 2.97189057e-01 1.58212021e-01 1.98865160e-01\\n1.37176216e-01 3.69927585e-01 4.75132555e-01 6.58161044e-02\\n2.54429244e-02 3.43930602e-01 1.48603290e-01 -4.97131199e-01\\n1.14491684e-02 9.88937393e-02 -3.17505777e-01 -1.44827485e-01\\n6.66551888e-01 4.91154224e-01 -2.71417469e-01 -2.81774104e-01\\n-1.67884424e-01 -1.89721093e-01 1.27269432e-01 -2.13991731e-01\\n1.51702031e-01 -1.62050515e-01 4.47599441e-01 3.09262984e-02\\n9.18053612e-02 5.02451062e-01 -2.47647077e-01 -3.13656896e-01\\n-1.37542840e-03 1.86178103e-01 8.89784843e-02 3.57871026e-01\\n-1.20338134e-01 1.59948587e-01 -8.52698740e-03 2.14388952e-01\\n-1.72230750e-01 9.49594304e-02 1.60680637e-01 5.09544797e-02\\n8.36217254e-02 9.10788327e-02 2.14982271e-01 4.36046630e-01\\n2.54125178e-01 4.25276756e-01 1.74210683e-01 2.78347898e-02\\n3.91543746e-01 4.93211806e-01 3.12494814e-01 2.18564793e-01\\n-5.16255945e-02 2.27069929e-02 2.10860893e-02 -3.27918492e-02\\n2.91653186e-01 2.70179361e-01 7.11899623e-02 8.53200436e-01\\n4.39373076e-01 3.03306848e-01 7.65148759e-01 -5.56690991e-01\\n-3.87017161e-01 -3.83014716e-02 4.16081369e-01 -3.88589352e-01\\n-1.10108614e-01 -2.64652669e-02 -1.67632952e-01 2.33385071e-01\\n-4.33764011e-01 -2.59843558e-01 -1.19761944e-01 4.60198373e-02\\n1.29545003e-01 -1.68486107e-02 -2.99336761e-01 -1.67779967e-01\\n-2.39868730e-01 -1.56157747e-01 -4.80226755e-01 -1.36668593e-01\\n-1.60112023e-01 -2.05837473e-01 -2.10229024e-01 -1.34707659e-01\\n-1.21074924e-02 -4.04343307e-01 -1.50747716e-01 1.32015934e-02\\n2.08595172e-01 -1.88118473e-01 -9.82663929e-02 -1.66224003e-01\\n1.83278844e-01 1.78857848e-01 5.96804202e-01 3.92737985e-02\\n1.35834053e-01 -2.04810753e-01 -9.05457288e-02 5.02281338e-02\\n1.04900390e-01 2.15764537e-01 5.34457527e-02 4.86155838e-01\\n-4.31596845e-01 -1.22395642e-01 -3.90695035e-03 4.49645370e-01\\n-3.89831394e-01 2.88339853e-02 -3.62098254e-02 1.90990627e-01\\n4.92876917e-02 1.62523501e-02 -2.19567522e-01 3.00055277e-02\\n-2.95063466e-01 -5.91871738e-01 2.66060144e-01 -9.38896760e-02\\n-1.34660274e-01 1.39257926e-02 1.84611619e-01 1.63028345e-01\\n-2.26682484e-01 -1.00893877e-01 1.76355511e-01 1.16851568e-01\\n2.35383123e-01 3.20811391e-01 -2.54373908e-01 -1.80279464e-01\\n-2.78867334e-01 2.42230162e-01 -3.61404300e-01 1.94596037e-01\\n-1.12791874e-01 3.12070161e-01 9.98944789e-02 1.26493871e-01\\n3.19472939e-01 -1.18930086e-01 -1.55731246e-01 -2.04266027e-01\\n-2.57170141e-01 -1.96373388e-01 2.19955202e-02 -5.13605494e-03\\n2.05219075e-01 -3.65293950e-01 -9.23338234e-02 -3.75380516e-02\\n-1.17860779e-01 -3.92964602e-01 -4.78049144e-02 -1.81852803e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for an Embedded C++ Software Engineer. This role is permanent position based in Aargau Canton. Your role: Concept, design & develop multitasking real-time / embedded software with C ++ 11 under QNX. Help shape the architecture, specification & implementation of embedded software for a future generations of Laser Tracker systems. Design & implementation unit & system tests. Create development & troubleshooting tools. Collaborate in agile SW development process with various interdisciplinary teams & cooperate closely also with application testers. Your Skills: Strong knowledge in the development of embedded software with C ++ in real-time applications. Experienced with modern real-time operating systems (QNX, RT Linux etc.). Ideally experienced in planning & implementing software tests (unit, integration & system tests). Knowledge of current design methods (design patterns, UML, TDD, etc.) is desirable. Skills & experience in Python is considered advantageous. Your Profile: Completed University Degree in Electrical Engineering or Computer Science. Dynamic, up for big challenges & comfortable in high-tech environments. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Positivity\", \"Cooperation\", \"Planning\", \"Multitasking\", \"Integration\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Test-Driven Development (TDD)\", \"Agility\", \"Real-Time Application Interface (RTAI)\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"Collaboration Tools\", \"Distributed Design Patterns\", \"Embedded C++\", \"QNX (Software)\", \"Web Design Concepts\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Linux\", \"High Tech Manufacturing\", \"Idealization\", \"Software Engineering\", \"Operating Systems\", \"Design Methods\", \"C (Programming Language)\", \"Electrical Engineering\", \"Laser Tracker\", \"Receivables\", \"Systems Design\", \"Software Testing\", \"Embedded Software\", \"Real-Time Operating Systems\", \"System Testing\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Nyanja', 'Latvian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data analytics consultant (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.24657977e-01 2.66480863e-01 4.03708637e-01 5.52951731e-02\\n4.74771887e-01 -1.88399032e-01 -5.48370555e-02 2.70024627e-01\\n-1.03801742e-01 -2.47027114e-01 -6.18684962e-02 -2.31567279e-01\\n-2.09308133e-01 -4.63474020e-02 1.93037182e-01 4.56488281e-01\\n1.97904155e-01 5.74505627e-02 -2.20258549e-01 3.89666051e-01\\n1.63357392e-01 1.68488510e-02 -5.21437824e-02 6.25772059e-01\\n3.44795674e-01 7.12243170e-02 -5.07170185e-02 1.14482321e-01\\n-3.25625151e-01 -2.13749915e-01 3.71888340e-01 1.21615261e-01\\n-1.33393362e-01 -3.26863378e-01 5.64361028e-02 1.36270598e-01\\n-1.32316202e-01 2.17972212e-02 1.11082233e-01 1.48086190e-01\\n-4.13106233e-01 -3.52661520e-01 -2.38295645e-02 4.10655774e-02\\n-2.46083573e-01 -2.19602853e-01 8.51807073e-02 -2.13733166e-01\\n1.32484317e-01 -1.27748907e-01 -7.90116251e-01 3.89926761e-01\\n-8.52794871e-02 -2.30224311e-01 2.80786991e-01 5.43365300e-01\\n1.86808974e-01 -4.82637227e-01 -3.03831816e-01 -3.11922431e-01\\n-1.15718395e-01 -1.55567974e-01 -2.11600773e-02 -8.23215023e-02\\n3.23412627e-01 -6.71108812e-02 3.64408642e-02 4.35833871e-01\\n-6.98343813e-01 -1.50606349e-01 -3.16619515e-01 -3.00216582e-02\\n-3.55540067e-01 6.46120012e-02 -2.14444488e-01 -1.37788743e-01\\n-1.48012256e-02 3.30956072e-01 6.90950379e-02 3.67540829e-02\\n-1.81379065e-01 3.09748471e-01 -7.75800347e-02 1.22237265e-01\\n4.30342048e-01 1.94445644e-02 7.48123676e-02 3.52303624e-01\\n-4.62808579e-01 3.33887339e-01 1.53335541e-01 -2.11710230e-01\\n2.03079537e-01 1.42713949e-01 4.58510756e-01 1.43581778e-01\\n-1.50686800e-02 1.88764468e-01 -6.81302845e-02 9.75959226e-02\\n9.87182334e-02 -2.88198709e-01 -1.22820996e-02 -9.86896306e-02\\n-8.05200562e-02 -1.10864028e-01 -1.04244873e-01 2.25199148e-01\\n-2.51758993e-01 4.45553511e-01 1.97088525e-01 -9.71271843e-02\\n-9.38720331e-02 -5.47962129e-01 -2.04556026e-02 -1.35943323e-01\\n-1.44117447e-02 1.78458765e-01 2.28875130e-01 9.69114304e-02\\n2.11405694e-01 6.05333149e-02 2.32737660e-01 8.63802791e-01\\n-6.67311698e-02 2.47384697e-01 -8.11904967e-02 3.47638994e-01\\n2.14432195e-01 -2.41179988e-01 1.88662812e-01 2.77329832e-01\\n1.43474355e-01 -7.40473941e-02 -2.07542092e-01 1.10111997e-01\\n-2.92777389e-01 -5.58331385e-02 -2.46758729e-01 1.21852063e-01\\n-8.34833756e-02 -4.62628633e-01 5.17256677e-01 1.01963870e-01\\n2.34594867e-01 -8.92134979e-02 -7.63500556e-02 -6.70153499e-02\\n-1.25044286e-01 3.44033271e-01 7.76981413e-02 3.65115821e-01\\n-2.85364807e-01 -2.27430657e-01 -1.68392539e-01 2.59311646e-01\\n-8.93594399e-02 1.50160834e-01 -2.12526381e-01 -2.41358802e-01\\n2.56768703e-01 7.45351017e-02 -4.18954402e-01 2.32971057e-01\\n-9.20282528e-02 -3.01516235e-01 -8.54056776e-02 3.36219639e-01\\n-1.25438124e-01 8.16780105e-02 -1.27540961e-01 -2.10439190e-01\\n5.98792195e-01 1.12959936e-01 1.31542116e-01 -1.06392866e-02\\n3.54528815e-01 -1.48461834e-01 3.67590606e-01 1.16971314e-01\\n-4.75283265e-01 3.85634720e-01 -6.12980053e-02 -1.53823882e-01\\n1.14497095e-01 -7.87231475e-02 3.67246538e-01 -2.63791889e-01\\n7.69605190e-02 -2.29905203e-01 -2.89583474e-01 -3.69110137e-01\\n-3.05458188e-01 -2.28647999e-02 3.73175144e-01 -2.58599192e-01\\n-1.33389667e-01 1.84824601e-01 -4.97243762e-01 -2.12856382e-01\\n2.39376411e-01 1.54149234e-01 1.22257195e-01 8.42629373e-02\\n-1.48538440e-01 -5.13383806e-01 7.67424412e-04 -4.56170738e-01\\n-4.49278057e-01 1.07531317e-01 -2.43529588e-01 1.38666883e-01\\n-8.45465157e-03 1.04444429e-01 -1.45213395e-01 1.39669552e-01\\n-3.42880726e-01 -1.21268956e-02 3.17491710e-01 9.17394534e-02\\n2.27917522e-01 -2.81389691e-02 -4.64619279e-01 3.63580823e-01\\n-2.97530562e-01 6.29668653e-01 2.93676436e-01 -8.58507395e-01\\n6.00406170e-01 2.47421920e-01 -4.38355729e-02 -3.21073115e-01\\n3.82413089e-01 -4.54510212e-01 1.03202961e-01 2.18986854e-01\\n-1.93023339e-01 -2.24297047e-01 2.77094245e-01 -1.42519474e-01\\n-2.75209337e-01 7.15729058e-01 1.09935798e-01 -8.38741660e-03\\n2.78249890e-01 -3.47871870e-01 -1.49277955e-01 -7.54205137e-02\\n-1.26123473e-01 -1.58880651e-01 -3.62710267e-01 4.18873169e-02\\n-5.21921292e-02 -4.43924874e-01 -1.22550637e-01 -3.51599455e-01\\n-2.17439190e-01 -3.58710617e-01 -1.66120365e-01 5.53501368e-01\\n1.72732040e-01 1.48655728e-01 -5.10472991e-02 6.27181157e-02\\n2.13016793e-02 -6.77679121e-01 2.63570119e-02 1.56139031e-01\\n4.29497540e-01 4.26235378e-01 1.20211363e-01 -1.07222706e-01\\n7.20579773e-02 4.58310872e-01 -3.24849933e-01 -4.69362676e-01\\n1.20948359e-01 2.46170700e-01 -8.75075161e-02 -1.43778250e-01\\n3.06717213e-02 4.14513260e-01 -1.52548745e-01 7.98515230e-02\\n-5.09621985e-02 -3.37596647e-02 2.88310885e-01 -8.51243883e-02\\n-2.59129792e-01 -2.48084888e-01 -1.07206732e-01 4.17353839e-01\\n-4.55096900e-01 -2.95699924e-01 4.93359119e-01 2.67585516e-01\\n1.04166932e-01 9.87610891e-02 1.59669712e-01 -9.46748778e-02\\n-2.41889521e-01 -2.06641480e-01 7.19374493e-02 1.14903308e-01\\n1.54794693e-01 1.68604553e-01 -1.65888637e-01 -5.79622149e-01\\n-3.57280254e+00 -1.66369483e-01 9.40934345e-02 -2.50164032e-01\\n1.32519946e-01 -1.60074592e-01 1.77748222e-02 1.24993268e-04\\n-3.09931993e-01 3.48519422e-02 -2.51087934e-01 -9.68015194e-02\\n-5.01769446e-02 3.70906234e-01 1.95662305e-01 1.30219638e-01\\n6.29047602e-02 -2.94956833e-01 -5.97659871e-02 4.51221347e-01\\n-5.71054071e-02 -5.97080767e-01 6.10559136e-02 -2.70614754e-02\\n9.41013396e-02 1.93160430e-01 -2.95033067e-01 -5.33003360e-02\\n-1.59602582e-01 -2.92092144e-01 5.40809594e-02 -1.85575441e-01\\n-2.31511936e-01 3.23763251e-01 1.83153190e-02 2.51424741e-02\\n1.71084553e-02 -3.45862359e-01 4.83627245e-03 -4.63196993e-01\\n1.83083434e-02 -6.50673568e-01 1.10113822e-01 -1.29478052e-01\\n6.19499981e-01 -1.71883479e-01 1.64680645e-01 8.25170428e-02\\n1.52414739e-01 1.44183725e-01 -7.42539540e-02 9.23693925e-02\\n-4.04316783e-01 -3.39711070e-01 -1.52906194e-01 -2.12636232e-01\\n4.92860794e-01 4.52050358e-01 -1.94139645e-01 3.94274406e-02\\n6.12214394e-02 -3.68301123e-01 -3.59432876e-01 -4.59352970e-01\\n-1.79410696e-01 -1.05310522e-01 -7.82973528e-01 -3.89842480e-01\\n-1.07847266e-01 -7.40328655e-02 -1.48246467e-01 5.17379999e-01\\n-4.25732076e-01 -3.02365601e-01 -3.11661046e-02 -5.76998055e-01\\n1.75453022e-01 -2.50924259e-01 1.18869089e-01 -1.08758770e-01\\n-4.28882420e-01 -5.45945108e-01 1.35436788e-01 -6.39963374e-02\\n-2.73836553e-01 -1.25771627e-01 -5.42873964e-02 -1.50473699e-01\\n-3.71174812e-01 -4.78934616e-01 4.55827057e-01 5.81516586e-02\\n4.04190063e-01 5.25167659e-02 3.52820516e-01 5.40281273e-02\\n3.69563937e-01 -1.42850906e-01 1.54164925e-01 -4.40472364e-01\\n-1.50377881e-02 -7.27538094e-02 6.17186785e-01 -3.37619066e-01\\n-7.98815920e-04 1.43601045e-01 -3.87742221e-01 4.51690145e-02\\n4.33017135e-01 6.97335377e-02 -2.84609534e-02 3.85080650e-02\\n3.04149210e-01 -4.39139873e-01 -2.51772523e-01 2.29168221e-01\\n6.25483692e-02 7.46959448e-01 1.53785080e-01 -3.98818523e-01\\n-2.73576587e-01 4.42720085e-01 -1.05279423e-01 -2.92515010e-01\\n-3.94287659e-03 9.64050665e-02 -1.08432928e-02 1.80245802e-01\\n1.91943049e-01 -1.39023125e-01 -3.10651004e-01 -1.01574868e-01\\n-1.01671368e-01 1.81781232e-01 2.54396319e-01 1.73916332e-02\\n-1.77484378e-01 -1.45373225e-01 -8.15279111e-02 1.51666939e-01\\n3.41565043e-01 2.77526647e-01 2.30214342e-01 -2.56547749e-01\\n-1.24195844e-01 2.80876309e-01 -1.46120146e-01 2.03659862e-01\\n-2.31511772e-01 -1.23045258e-02 -6.38915658e-01 -1.40853032e-01\\n-1.16785087e-01 -4.06442106e-01 9.80072320e-02 4.51995403e-01\\n1.47926375e-01 -1.41804880e-02 1.21987112e-01 -6.75949872e-01\\n4.65204954e-01 9.30783618e-03 2.94393063e-01 -4.22049537e-02\\n-7.24454271e-03 6.48691297e-01 8.38677883e-02 -1.06787130e-01\\n-1.78073332e-01 2.57070380e-04 -2.71783113e-01 -3.21119547e-01\\n1.33974046e-01 -3.62626970e-01 -1.67959645e-01 4.62886989e-01\\n2.16455862e-01 -1.96468338e-01 -2.68126875e-01 3.86032373e-01\\n7.36291260e-02 -1.16419293e-01 -1.72267541e-01 -1.54097095e-01\\n9.05091688e-02 8.18365887e-02 2.11391598e-01 -3.84197831e-01\\n-9.24029648e-02 7.25724502e-03 -1.02481991e-01 4.45573270e-01\\n2.33765647e-01 2.17196345e-03 -1.19219415e-01 -1.12279281e-01\\n4.77678895e-01 7.39159212e-02 -1.02440808e-02 -1.83209047e-01\\n5.34331761e-02 -1.61599129e-01 -5.43467045e-01 1.27441689e-01\\n2.26400066e-02 -2.07771003e-01 3.99081334e-02 1.26956865e-01\\n9.48517025e-02 -9.55117643e-02 -5.11640429e-01 -1.34313524e-01\\n-2.96207964e-01 -1.97169781e-01 8.34421720e-03 -4.40010995e-01\\n-6.08646013e-02 -4.08985317e-02 -4.74269569e-01 1.62010312e-01\\n-2.57994533e-01 3.95236127e-02 5.61214499e-02 1.12782247e-01\\n-3.13135445e-01 -5.62288091e-02 1.23703495e-01 6.55236319e-02\\n-3.24727982e-01 -2.33877331e-01 1.73838958e-01 -8.67197335e-01\\n3.66364270e-02 3.81748080e-02 -1.72619909e-01 -9.84981060e-02\\n5.09737171e-02 -6.12470865e-01 1.71933293e-01 -3.79230201e-01\\n9.28858295e-02 1.66427702e-01 -1.86153516e-01 -2.71243542e-01\\n2.15185702e-01 -1.49369046e-01 -3.39394897e-01 2.85160750e-01\\n-4.36540067e-01 3.83276671e-01 3.44243012e-02 6.58520982e-02\\n1.13638245e-01 -2.98370063e-01 1.09630808e-01 -2.60959774e-01\\n-2.95403719e-01 -1.32792309e-01 -2.43005142e-01 -2.14576960e-01\\n-3.28693986e-02 -1.14346907e-01 -1.46675602e-01 -2.34769657e-02\\n3.62576395e-01 1.58618227e-01 -1.49778306e-01 -2.91960686e-01\\n1.44143686e-01 -5.20475268e-01 6.45340383e-02 -2.89951175e-01\\n-1.07838638e-01 -7.67017528e-02 2.47558981e-01 -1.26879007e-01\\n1.26984835e-01 -2.13296577e-01 5.36207199e-01 -2.71530777e-01\\n-3.28695238e-01 -6.12852275e-02 3.49014215e-02 -3.84226814e-02\\n1.45297498e-01 -4.34249490e-01 1.83019135e-02 2.99251199e-01\\n1.45913318e-01 9.08420235e-02 1.94602937e-01 -5.16849495e-02\\n-1.87211692e-01 1.62376866e-01 -5.14262378e-01 2.72320230e-02\\n8.45109284e-01 1.74166545e-01 -1.88028179e-02 7.97598660e-02\\n1.03486285e-01 3.03225011e-01 4.88733262e-01 9.46431905e-02\\n-9.45596248e-02 2.97458827e-01 6.29310310e-02 -5.90335131e-01\\n-1.95201412e-01 -6.40738904e-02 -2.71086156e-01 -1.44361332e-01\\n6.54626906e-01 2.24897325e-01 -4.58670229e-01 -3.24929148e-01\\n1.16491746e-02 -1.60545275e-01 2.98054814e-01 8.12950823e-03\\n2.10847072e-02 -3.35726552e-02 6.36160612e-01 -2.31563225e-02\\n2.61216104e-01 5.44154286e-01 -1.10226095e-01 -2.91567653e-01\\n-1.62452802e-01 9.10881311e-02 1.26755029e-01 4.64957565e-01\\n-7.12975785e-02 2.72732407e-01 -2.02512503e-01 7.26963133e-02\\n-1.18712701e-01 7.99069926e-02 2.48465434e-01 5.95515445e-02\\n1.82864115e-01 7.30946735e-02 3.22981149e-01 4.45086271e-01\\n1.89001605e-01 5.21294594e-01 3.20597351e-01 -2.69004740e-02\\n2.99621433e-01 5.52624345e-01 3.13479841e-01 6.10632785e-02\\n-3.02685029e-03 3.77092673e-03 9.80772898e-02 -1.11338317e-01\\n3.85266244e-01 3.71054232e-01 2.88722426e-01 8.35137248e-01\\n3.64108801e-01 3.88806522e-01 7.95281351e-01 -5.88144183e-01\\n-3.81724179e-01 1.15902364e-01 5.69804192e-01 -2.04880893e-01\\n-6.41120672e-02 2.11715668e-01 -2.93586552e-01 2.35258982e-01\\n-5.24780571e-01 -7.65886232e-02 1.76971741e-02 6.62062541e-02\\n-4.10882719e-02 -6.88370615e-02 -1.65670261e-01 1.30968988e-01\\n-4.51544002e-02 -1.46040648e-01 -2.52888113e-01 -2.47479752e-01\\n-2.92161196e-01 -2.50979420e-02 -1.05498269e-01 -7.72482157e-02\\n-1.63930118e-01 -3.22964728e-01 -6.78818896e-02 -3.20950150e-02\\n3.67162138e-01 -1.40736431e-01 -8.80448148e-02 -1.65193886e-01\\n8.57414156e-02 2.88050681e-01 5.27825534e-01 -1.40973955e-01\\n8.29792172e-02 -1.48120806e-01 -2.58663028e-01 -2.51262728e-03\\n1.08489074e-01 -2.15140264e-02 -2.49596089e-02 4.46018040e-01\\n-3.16060275e-01 4.38817777e-03 1.35541677e-01 3.45733911e-01\\n-2.97989905e-01 -1.62548140e-01 -3.05953622e-02 3.23237240e-01\\n1.05832316e-01 1.03430137e-01 -3.05554956e-01 1.42218113e-01\\n-3.03837776e-01 -4.88143593e-01 4.49125469e-01 -1.28925666e-02\\n-1.08090669e-01 1.81858748e-01 2.93287784e-01 1.43092990e-01\\n-2.14891031e-01 -4.72267233e-02 8.67531914e-03 2.99586505e-01\\n-1.38621971e-01 4.08703804e-01 -1.55412972e-01 -2.81231105e-01\\n-1.68482393e-01 4.46332932e-01 -3.94569971e-02 2.08324715e-01\\n-1.63493440e-01 4.95885223e-01 -5.15786409e-02 2.33150601e-01\\n1.93566099e-01 1.43851181e-02 -2.34564513e-01 -2.67272592e-01\\n-2.88735032e-01 -1.77177429e-01 -2.57319380e-02 -6.86217891e-03\\n7.91436583e-02 -3.60711247e-01 -7.28069469e-02 -1.54376984e-01\\n-2.17273921e-01 -3.21390837e-01 -7.60798082e-02 9.48940292e-02]]',\n", + " 'job_description': 'Job Informationen Your role: - You are taking part in advising our clients on leveraging their big data analytics clusters - You will implement and execute data analytics programs - You will create and maintain predictive statistical models - You will prepare and give trainings for external and internal staff on how to best use the cluster and on how to implement business applications leveraging the cluster resources Your skills: - Minimum of 2 years of Big Data experience and minimum of 3 years of programming experience - Must have a University Degree in Computer Science or Statistics / Mathematical Engineering - Experienced in collecting, tracking and documenting business requirements - Experienced in problem parallelization is a plus - Experienced in data analytics, modelling, mining - Experienced concurrent algorithm design - Experienced in applying supervised and unsupervised machine learning methods - Familiarity with Storage and Network Design for Big Data Analytics Clusters a plus - Background and familiarity with IT infrastructure methodologies, processes, and practices including ITSM and ITIL is a plus Your tools: - Know-how of Python, R, Java, C++ and shell scripting - Know-how of any of the tools matplotlib, pandas, numpy, MongoDB, Hive, ElasticSearch, Cassandra, RapidMiner, OpenMPI, Tableau, Qlik is a plus Benötigte Skills ITIL Python Machine Learning JAVA C++ Shell-Scripts',\n", + " 'soft_skills': '[\"Supervision\"]',\n", + " 'hard_skills': '[\"Tableau (Business Intelligence Software)\", \"Tooling\", \"Matplotlib\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Shell Script\", \"RapidMiner\", \"Computer Science\", \"Analytics\", \"Collections\", \"Prediction\", \"Machine Learning\", \"Mathematical Statistics\", \"Network Security Design\", \"IT Infrastructure\", \"NumPy\", \"Python (Programming Language)\", \"Maintainability\", \"MongoDB\", \"Tracking (Commercial Airline Flight)\", \"Executable\", \"Statistical Modeling\", \"Machine Learning Methods\", \"Business Requirements\", \"Storages\", \"Apache Hive\", \"R (Programming Language)\", \"Big Data\", \"Resourcing\", \"Algorithm Design\", \"Java (Programming Language)\", \"Pandas (Python Package)\", \"Elasticsearch\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '55',\n", + " 'job_title': 'software engineer – infrastructure',\n", + " 'location': 'Lugano',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.00879031e-01 2.93186873e-01 3.91317397e-01 -1.03268325e-01\\n4.78794605e-01 -1.63716614e-01 -1.24025993e-01 2.78238416e-01\\n-6.44701272e-02 -3.18700671e-01 -7.58499131e-02 -1.74116194e-01\\n-1.89848706e-01 1.01615131e-01 1.67488351e-01 3.75592083e-01\\n7.28601813e-02 1.78860985e-02 -1.73786789e-01 4.24716145e-01\\n2.16276094e-01 2.71240622e-02 -1.07081458e-01 6.44125879e-01\\n3.15437347e-01 5.05755246e-02 -5.42306490e-02 -5.84535860e-02\\n-3.49566609e-01 -1.99953839e-01 2.56783605e-01 6.70977086e-02\\n1.96225531e-02 -3.30467224e-01 1.08449347e-01 2.42889076e-02\\n-2.29073167e-01 -5.94328903e-02 -3.90555374e-02 2.29642987e-01\\n-3.40409666e-01 -4.15655464e-01 5.97661510e-02 8.12869519e-02\\n-1.48136511e-01 -2.05082506e-01 7.47181177e-02 -3.82940099e-02\\n5.89827774e-04 -8.48522335e-02 -6.36883378e-01 3.25887978e-01\\n-1.50449380e-01 -2.98596263e-01 2.88268328e-01 5.38708150e-01\\n1.01485834e-01 -5.24987757e-01 -1.54847637e-01 -2.85892755e-01\\n-1.14543185e-01 -3.50345345e-03 4.57349531e-02 -1.50619000e-01\\n3.75841975e-01 7.53906788e-03 1.35511905e-03 5.05759835e-01\\n-7.84257889e-01 -9.27326009e-02 -1.27454743e-01 8.22741687e-02\\n-3.21160525e-01 1.42420497e-04 -1.32573649e-01 -5.03220595e-02\\n-2.40474250e-02 3.39716822e-01 3.41495313e-02 2.46226862e-02\\n-1.69638231e-01 2.87897348e-01 1.65269598e-02 2.04493821e-01\\n4.02450442e-01 2.36347482e-01 7.48850852e-02 3.92977804e-01\\n-3.39092374e-01 3.55543703e-01 2.47102734e-02 -1.09525576e-01\\n1.88436851e-01 2.02240899e-01 5.58090806e-01 2.57104754e-01\\n-7.99437333e-03 1.26798749e-01 -2.11416706e-01 2.19073489e-01\\n1.39928490e-01 -2.47061670e-01 3.79527397e-02 -2.11745803e-03\\n-1.67742223e-01 -7.72309601e-02 -9.44179222e-02 4.14851397e-01\\n-2.27359101e-01 2.94415325e-01 2.77031094e-01 -1.16150575e-02\\n-4.84739244e-02 -6.33450627e-01 -6.82621896e-02 -6.77805319e-02\\n9.44998041e-02 2.23461345e-01 2.79766053e-01 1.96791470e-01\\n1.20394945e-01 2.21997783e-01 2.04271674e-01 1.04545474e+00\\n-3.14405672e-02 1.30599171e-01 -1.79279611e-01 2.89214373e-01\\n2.56017148e-01 -2.04995364e-01 1.33666202e-01 3.32151592e-01\\n2.34139726e-01 -1.66957349e-01 -1.12822250e-01 3.86550277e-01\\n-1.50696322e-01 -8.32101330e-02 -3.40334445e-01 8.20770711e-02\\n-3.26552123e-01 -4.50612068e-01 4.32520688e-01 1.72729358e-01\\n2.65590787e-01 7.00112954e-02 -1.12124145e-01 -5.71813285e-02\\n-1.32182136e-01 4.17161673e-01 -1.36189863e-01 2.00398117e-01\\n-3.94227594e-01 -2.32892543e-01 -2.65055507e-01 3.24277580e-01\\n1.94085333e-02 2.17623770e-01 -2.80663036e-02 -1.22584902e-01\\n3.84874254e-01 -1.05298301e-02 -4.64051157e-01 1.62944660e-01\\n-7.85158500e-02 -2.75155514e-01 -1.40553564e-01 1.35943472e-01\\n-1.63567178e-02 1.68804660e-01 -3.54842730e-02 -2.26342067e-01\\n4.01549637e-01 9.38663911e-03 2.06304863e-02 -1.38568610e-01\\n3.02643180e-01 -1.90038607e-01 2.58602947e-01 2.33357385e-01\\n-7.79680669e-01 2.28618413e-01 1.83338230e-03 -2.30762839e-01\\n-6.24184161e-02 6.95198402e-02 4.03260529e-01 -3.76663059e-01\\n4.90600877e-02 -8.83588344e-02 -5.29202044e-01 -3.57074797e-01\\n-3.48177403e-01 4.85689677e-02 4.90368754e-01 -2.28337407e-01\\n-1.97726265e-01 1.56603396e-01 -4.55536842e-01 -6.93446994e-02\\n1.95589215e-01 4.90938239e-02 5.23668975e-02 -1.92485955e-02\\n-1.23538025e-01 -6.17735505e-01 -1.30851611e-01 -4.73395258e-01\\n-4.96935308e-01 9.46354792e-02 -2.57593751e-01 2.05382109e-01\\n9.74708796e-02 8.88068452e-02 3.13008651e-02 7.31329471e-02\\n-2.58341074e-01 -1.69609636e-01 2.72056669e-01 1.95337325e-01\\n3.00849140e-01 -3.00326869e-02 -3.81042659e-01 3.68223310e-01\\n-1.41485795e-01 6.92153692e-01 2.43943647e-01 -7.69371688e-01\\n6.31583691e-01 2.05738083e-01 6.82776570e-02 -5.04139245e-01\\n3.87583196e-01 -3.35701734e-01 1.33027285e-01 2.38910377e-01\\n-2.80704081e-01 -2.22749725e-01 2.28209972e-01 -1.55083522e-01\\n-3.29826891e-01 5.61209142e-01 1.56247288e-01 -1.28462151e-01\\n3.26708049e-01 -3.72736812e-01 3.36158983e-02 1.22877941e-01\\n-2.56286263e-02 -2.63898283e-01 -2.63618708e-01 1.44047424e-01\\n-9.48781222e-02 -5.00595927e-01 -1.52707145e-01 -2.55044729e-01\\n-1.97757691e-01 -3.34501833e-01 -1.93009913e-01 6.02746010e-01\\n7.68776983e-02 2.11635008e-01 1.11528002e-01 -4.46646959e-02\\n-1.07868664e-01 -6.05864823e-01 -1.57366246e-01 2.32590437e-02\\n4.55449015e-01 1.69754624e-01 2.43884269e-02 -1.47687703e-01\\n-1.59047142e-01 4.01418388e-01 -4.28975642e-01 -3.23695570e-01\\n1.07912615e-01 6.90169856e-02 -7.20065981e-02 -7.71670565e-02\\n1.73102003e-02 2.38392562e-01 -1.88736975e-01 1.10893138e-01\\n-2.04206035e-01 3.82827297e-02 2.22324267e-01 -5.50262891e-02\\n-2.91198194e-01 -4.14358139e-01 3.97748388e-02 3.50211859e-01\\n-5.15438914e-01 1.82694849e-02 5.84305644e-01 3.86929184e-01\\n2.27325216e-01 1.33536994e-01 2.65554458e-01 -2.44909897e-01\\n-3.12612474e-01 -3.36751431e-01 1.46923047e-02 3.15787226e-01\\n1.04217216e-01 2.15013735e-02 -1.71257675e-01 -6.16138995e-01\\n-3.46713924e+00 -1.93301052e-01 2.10031301e-01 -2.07476407e-01\\n1.69475362e-01 -1.26025841e-01 -1.88950039e-02 -3.53714600e-02\\n-2.33969301e-01 -2.87974030e-02 -3.69860321e-01 -8.93848613e-02\\n-2.42614243e-02 4.09246206e-01 1.66151851e-01 2.65335411e-01\\n7.07896501e-02 -1.83095276e-01 -1.39254153e-01 3.00904304e-01\\n-1.94392174e-01 -6.19301975e-01 1.11721240e-01 -6.54913187e-02\\n2.41897032e-01 9.04766396e-02 -4.36451584e-01 -7.91861266e-02\\n-1.65939137e-01 -1.55749217e-01 -2.86726677e-03 -2.13719219e-01\\n-7.01692402e-02 2.79045135e-01 1.80733837e-02 5.08422144e-02\\n1.14969879e-01 -1.59121975e-01 3.51332538e-02 -4.39557374e-01\\n-6.27788827e-02 -4.98567462e-01 -3.39253470e-02 -1.71872228e-01\\n6.59773350e-01 -3.86580676e-01 1.53439745e-01 8.71985853e-02\\n2.36954257e-01 2.12036982e-01 -2.15092361e-01 2.88824667e-03\\n-2.06664979e-01 -2.81206608e-01 1.96247753e-02 -2.78526068e-01\\n3.92579943e-01 6.37125134e-01 -2.56244302e-01 3.20588686e-02\\n1.38102338e-01 -2.77370691e-01 -3.24303627e-01 -5.99954844e-01\\n-2.45553732e-01 -1.67872697e-01 -8.09775829e-01 -4.80559677e-01\\n-9.27682668e-02 5.57722151e-02 -2.77839214e-01 5.80034375e-01\\n-4.61603671e-01 -5.49676895e-01 5.37728257e-02 -6.60362124e-01\\n-1.48893967e-02 -2.39232764e-01 6.95940033e-02 -1.50372148e-01\\n-2.75305599e-01 -4.36389297e-01 1.79174632e-01 -2.66638640e-02\\n-2.32112467e-01 -7.29342997e-02 2.64724847e-02 -4.31868285e-01\\n-3.33787382e-01 -2.96306759e-01 3.55388194e-01 1.82731822e-01\\n2.57711589e-01 1.22675538e-01 3.77857834e-01 4.52391468e-02\\n3.50659311e-01 -1.07281409e-01 1.37129828e-01 -3.18001330e-01\\n2.20700189e-01 -1.83648709e-02 5.41036308e-01 -3.50027502e-01\\n6.09605946e-02 3.58645976e-01 -2.61133105e-01 -1.08122624e-01\\n4.89372790e-01 7.29590505e-02 -2.53005847e-02 -1.19581163e-01\\n3.83681297e-01 -6.37967885e-01 -2.56187499e-01 3.02944511e-01\\n6.42761439e-02 5.80740988e-01 1.77910313e-01 -4.58288223e-01\\n-3.97374719e-01 4.02542263e-01 -1.14063472e-01 -2.51584977e-01\\n7.01158047e-02 2.22222611e-01 -2.47803312e-02 1.56336799e-01\\n1.49435177e-01 -2.45852709e-01 -3.88448298e-01 -3.64366956e-02\\n-2.88377376e-03 1.35575101e-01 1.75859213e-01 -1.34832412e-01\\n-1.03112653e-01 -1.22031204e-01 -3.78820710e-02 3.63153294e-02\\n2.02119753e-01 2.13538945e-01 1.67728022e-01 -3.20858240e-01\\n1.06952675e-01 2.63561010e-01 -1.07260503e-01 1.80178538e-01\\n-1.90651059e-01 -3.21749039e-02 -3.79539311e-01 -3.60461771e-01\\n-2.92769372e-02 -2.89781660e-01 4.04551104e-02 2.00645357e-01\\n1.21491902e-01 -2.21123779e-03 2.21114308e-02 -5.50375700e-01\\n4.33755368e-01 2.21633743e-02 1.70349032e-01 1.90832749e-01\\n1.01743355e-01 5.09069443e-01 8.50913823e-02 -3.16508114e-02\\n-1.28230691e-01 -1.78902075e-01 -2.77893186e-01 -3.07526469e-01\\n6.95318282e-02 -3.47837031e-01 -6.79813325e-02 4.49735999e-01\\n9.83924344e-02 -3.83342206e-01 -1.76466197e-01 3.50526214e-01\\n2.00574055e-01 -1.81934759e-01 -7.84528032e-02 6.54289722e-02\\n2.51233399e-01 1.86822750e-02 2.19002098e-01 -3.69453162e-01\\n-3.07673905e-02 9.28495377e-02 -7.56931677e-02 4.58273828e-01\\n3.47311378e-01 3.89679009e-03 -2.08536431e-01 -1.76302195e-01\\n4.58923221e-01 -1.23154871e-01 -5.91280498e-03 -2.05564216e-01\\n4.69516702e-02 -1.32719114e-01 -4.13890392e-01 1.62447691e-01\\n5.50124086e-02 -8.15157220e-02 8.06250274e-02 -8.07496235e-02\\n1.36916637e-01 -2.86610387e-02 -4.20104235e-01 -2.98656136e-01\\n-3.37828279e-01 -1.96709454e-01 1.80388913e-01 -2.43398353e-01\\n2.01923400e-02 8.52477700e-02 -6.56238735e-01 1.99699700e-01\\n-2.64420927e-01 1.25517324e-01 7.42155686e-02 1.42937839e-01\\n-3.03225577e-01 7.98135400e-02 5.34233153e-02 3.85028943e-02\\n-4.53491926e-01 -1.94671988e-01 2.70261150e-02 -9.74631250e-01\\n6.65682331e-02 -7.66236261e-02 9.40824393e-03 1.14252483e-02\\n-3.37707587e-02 -5.66168427e-01 1.99193791e-01 -4.40826386e-01\\n5.04017062e-02 1.68569401e-01 -1.71417952e-01 -4.21216071e-01\\n4.89115417e-02 -1.16364248e-01 -2.85581082e-01 4.42956597e-01\\n-5.01606703e-01 1.50286421e-01 1.17784612e-01 -2.47211792e-02\\n7.88761377e-02 -3.69431317e-01 2.02608258e-01 -2.65531957e-01\\n-4.03134644e-01 -1.08709678e-01 -3.43860686e-01 -1.39599085e-01\\n1.24647722e-01 -2.48197094e-01 -2.75886297e-01 1.18766770e-01\\n1.85462266e-01 1.42471671e-01 3.56539823e-02 -2.15658531e-01\\n1.34770572e-01 -2.79345363e-01 8.64735246e-02 -1.25774384e-01\\n-6.48249164e-02 1.20532081e-01 1.17231280e-01 -1.51869193e-01\\n3.61631177e-02 -2.31839910e-01 5.80160201e-01 -2.75261730e-01\\n-3.89089018e-01 -4.63009402e-02 2.69977842e-02 2.59587876e-02\\n3.00831139e-01 -4.15258884e-01 7.68277934e-03 2.38041312e-01\\n1.35940179e-01 -4.23567295e-02 2.50154495e-01 -1.02111273e-01\\n-6.99340552e-02 5.91482520e-02 -4.61507529e-01 5.96984252e-02\\n7.70102501e-01 1.17011242e-01 -3.14755850e-02 2.10223675e-01\\n8.15835297e-02 4.50068951e-01 4.52602684e-01 -9.18183774e-02\\n-7.12006986e-02 2.26993382e-01 5.87383583e-02 -4.99704361e-01\\n-9.72609445e-02 -2.50003844e-01 -1.67176172e-01 -1.97197720e-01\\n6.97801113e-01 4.70982462e-01 -3.04457128e-01 -2.08735168e-01\\n-7.25482479e-02 -1.89349130e-01 2.06093788e-01 -8.18968266e-02\\n-4.73494381e-02 -2.35091895e-02 5.78519821e-01 -3.08102984e-02\\n3.02670270e-01 4.66560930e-01 -2.38135278e-01 -4.34572309e-01\\n-1.09416001e-01 6.20297752e-02 1.08913675e-01 3.00506949e-01\\n-2.07963195e-02 3.11317265e-01 1.28179276e-02 9.26745385e-02\\n6.71412284e-03 6.13207445e-02 1.66868046e-01 -3.61097255e-03\\n2.78235048e-01 1.06410727e-01 1.77996550e-02 5.14176905e-01\\n1.24909259e-01 4.76623207e-01 3.16883922e-01 1.94185615e-01\\n3.43783319e-01 5.46812057e-01 4.46297884e-01 1.82734951e-01\\n5.96060567e-02 -4.68132943e-02 3.98530997e-02 -9.10039544e-02\\n4.55725998e-01 2.51346052e-01 3.44859511e-01 8.16920877e-01\\n3.29367936e-01 2.14782894e-01 7.78392732e-01 -6.70003235e-01\\n-3.85428339e-01 9.29093286e-02 4.82959777e-01 -3.44925046e-01\\n-1.25408113e-01 8.58220458e-02 -2.41764829e-01 1.66485399e-01\\n-5.78623474e-01 -9.24738348e-02 -2.86182649e-02 -9.08896625e-02\\n-8.81325174e-03 -3.48114334e-02 -2.86627918e-01 -1.63740069e-01\\n-1.73640594e-01 -2.34352484e-01 -1.87768996e-01 -1.47904441e-01\\n-2.90678680e-01 -1.45760730e-01 -4.97637577e-02 8.18882789e-03\\n-1.45734906e-01 -4.97592241e-01 -3.21818113e-01 1.17715396e-01\\n4.49432760e-01 -1.57377616e-01 -1.74466502e-02 -1.72294587e-01\\n-7.82589335e-03 3.52455467e-01 5.74620426e-01 -4.30326909e-02\\n1.46646231e-01 -1.62685096e-01 -2.04753563e-01 -1.72511884e-03\\n1.58810183e-01 -8.75630975e-03 6.10316806e-02 4.70520645e-01\\n-3.79225045e-01 2.03973040e-01 1.42406151e-01 2.75100172e-01\\n-4.41362977e-01 -1.60239324e-01 -1.55947730e-03 2.82590985e-01\\n4.11767662e-02 3.16154599e-01 -3.87521476e-01 1.47677600e-01\\n-3.44438523e-01 -5.26079834e-01 5.24405301e-01 -2.34351486e-01\\n-6.83412999e-02 1.53566837e-01 3.28152776e-01 1.14282914e-01\\n-2.03067213e-01 -5.59285916e-02 1.45715505e-01 2.76590496e-01\\n-6.31856248e-02 4.04603094e-01 -3.04258376e-01 -1.08718514e-01\\n-1.91801056e-01 3.90092880e-01 -6.51417673e-02 1.82144478e-01\\n-1.73569724e-01 3.82095128e-01 1.23801269e-01 1.74502939e-01\\n1.27364665e-01 6.34968802e-02 -5.40365130e-02 -2.22627968e-01\\n-2.57311881e-01 -4.27096128e-01 1.71497643e-01 2.96526961e-02\\n1.64752096e-01 -3.71100157e-01 -1.09345570e-01 1.18856607e-02\\n-1.66199088e-01 -3.77908051e-01 -2.34627366e-01 1.25755101e-01]]',\n", + " 'job_description': 'Lugano, Switzerland / Austin, TX Full Time Description Implement internal machine learning software infrastructure Integrate existing open-source tools in order to facilitate ML research Interface our proprietary platform with large data sets and customer platforms Contribute to the our proprietary code base Minimum Qualifications Masters in computer science 2 years in the industry, experience with IT systems Experience with parallel computing architectures “DevOps” Command of C/C++ and Python Knowledge of Unix environment, GNU/Linux Engineering mindset Large data management skills Fluent in written and spoken English Plusses Theoretical knowledge of machine learning methods (deep learning, reinforcement learning, evolutionary computation) Experience of machine learning frameworks (TensorFlow, PyTorch) Experience with containers and orchestration (Docker, Kubernetes, OpenStack) Experience with cluster environments (e.g. SGE, Condor) Experience with GPU programming (Cuda, OpenCL, Metal) Contact E-mail: jobs@nnaisense.com start subject with: [infrastructure engineer] submit both your cover letter and resume in English, PDF format',\n", + " 'soft_skills': '[\"Research\", \"Infrastructure\", \"Integration\"]',\n", + " 'hard_skills': '[\"Kubernetes\", \"Tooling\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Computer Science\", \"Data Management\", \"Machine Learning\", \"Nvidia CUDA\", \"OpenStack\", \"Industrialization\", \"Component Object Model (COM)\", \"Association Rule Learning\", \"E (Programming Language)\", \"OpenCL\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Condor\", \"C (Programming Language)\", \"Metallization\", \"TensorFlow\", \"Deep Learning\", \"Parallel Computing\", \"Clinical Data Management\", \"SliTaz GNU/Linux\", \"PyTorch (Machine Learning Library)\", \"Unix\", \"Documentation Based Coding\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.96860814e-01 3.44887048e-01 4.18311268e-01 6.42987788e-02\\n5.49855947e-01 -1.60632238e-01 -7.60548115e-02 2.33741805e-01\\n3.85293690e-03 -3.85250986e-01 -1.00991771e-01 -2.73914307e-01\\n-8.60051885e-02 5.60852103e-02 1.23740666e-01 4.40712243e-01\\n2.10842565e-01 6.70473510e-03 -7.52684474e-02 3.78748119e-01\\n4.04198393e-02 -1.20572872e-01 -2.10955739e-02 6.54336214e-01\\n3.27865958e-01 -4.52837832e-02 -1.05593726e-01 3.76893021e-02\\n-2.93820888e-01 -1.94786966e-01 3.50330234e-01 3.60151418e-02\\n-1.35590002e-01 -3.07242274e-01 1.52788103e-01 1.99274436e-01\\n-2.34797448e-01 3.43347415e-02 -1.69399083e-01 1.40004277e-01\\n-4.76627588e-01 -1.83501318e-01 8.29791743e-03 5.43206558e-02\\n-4.30294186e-01 -3.49034727e-01 9.95754451e-02 -1.81845233e-01\\n3.66332196e-02 6.48680553e-02 -5.33586919e-01 3.09596747e-01\\n-2.28925571e-01 -2.48519540e-01 3.49494070e-01 6.64280176e-01\\n1.17803238e-01 -4.88737762e-01 -3.91648233e-01 -3.63320202e-01\\n-4.55902666e-02 -1.13983192e-01 3.27034444e-02 -2.60845512e-01\\n4.11702573e-01 -1.43740445e-01 2.91686114e-02 2.89151549e-01\\n-8.67187321e-01 -1.14951365e-01 -4.15841609e-01 7.68027594e-03\\n-4.90776718e-01 1.97851080e-02 -3.89639020e-01 -1.84735030e-01\\n-2.03368515e-02 4.76683944e-01 -2.18808297e-02 1.53994739e-01\\n-1.93965256e-01 2.92768687e-01 -3.28353584e-01 2.08600566e-01\\n3.39791447e-01 1.58946797e-01 1.72966585e-01 2.85977483e-01\\n-4.48067993e-01 3.26938391e-01 3.01893115e-01 -2.35333920e-01\\n2.83533931e-01 1.43122420e-01 2.94796169e-01 1.95423141e-01\\n1.10316023e-01 2.62607336e-01 -1.41405299e-01 1.97389156e-01\\n1.77302569e-01 -2.11973563e-01 -5.77723011e-02 -1.51757509e-01\\n4.66307215e-02 -1.21968903e-01 2.33216006e-02 2.01474980e-01\\n-3.48602384e-01 2.91850716e-01 1.18034214e-01 -1.54592186e-01\\n-9.68825817e-02 -4.61926162e-01 -6.63943663e-02 -4.83498536e-02\\n3.31327245e-02 2.76550680e-01 2.49577552e-01 1.99359983e-01\\n2.08295792e-01 1.71896014e-02 1.77252889e-01 9.28946495e-01\\n-6.68200031e-02 2.05227554e-01 -2.60475755e-01 3.75699133e-01\\n2.15705931e-01 -2.50339955e-01 1.58410624e-01 2.42954895e-01\\n8.20262358e-03 -1.29366100e-01 -2.53765494e-01 3.23635042e-01\\n-1.97265580e-01 -1.58971861e-01 -2.35874146e-01 1.43298998e-01\\n-1.32214040e-01 -5.58442056e-01 5.85828841e-01 3.11824419e-02\\n7.42080212e-02 -7.46050179e-02 -8.57746378e-02 -4.10121605e-02\\n-1.85835615e-01 3.00886959e-01 4.28445674e-02 2.43591174e-01\\n-2.85249054e-01 -2.76624262e-01 -9.27137882e-02 2.80250311e-01\\n-2.50699013e-01 2.23866235e-02 -2.20246643e-01 -1.09423146e-01\\n3.43225181e-01 1.69671595e-01 -4.59755123e-01 1.78900361e-01\\n-4.18040380e-02 -3.04155052e-01 -2.19227076e-02 3.29643071e-01\\n-1.41281307e-01 2.50280350e-01 -5.20857498e-02 -6.49947897e-02\\n5.89169621e-01 2.31374398e-01 2.89622128e-01 -2.26045446e-03\\n2.75445729e-01 -1.53110206e-01 2.59232163e-01 1.00722864e-01\\n-5.21611035e-01 4.42454338e-01 -1.14062294e-01 -1.69909835e-01\\n1.13117598e-01 3.67181115e-02 4.13286358e-01 -2.63497382e-01\\n-7.07108453e-02 -1.98499203e-01 -3.56016397e-01 -3.78715783e-01\\n-2.90088266e-01 -3.64230312e-02 3.65426838e-01 -4.69793051e-01\\n-8.84761009e-03 2.49416679e-01 -6.12476766e-01 -1.58732265e-01\\n1.95361480e-01 2.30769902e-01 8.49370733e-02 1.05911754e-02\\n-1.00727543e-01 -6.15024865e-01 7.96834826e-02 -4.60210770e-01\\n-3.49452645e-01 8.61413553e-02 -2.44263411e-01 5.97687773e-02\\n-1.60614122e-03 6.56268820e-02 -1.20289892e-01 1.67419553e-01\\n-4.15087909e-01 4.28542979e-02 1.74081236e-01 1.29645616e-01\\n3.52620065e-01 5.09687811e-02 -4.16413695e-01 5.42360187e-01\\n-1.77880958e-01 4.42510903e-01 2.65277028e-01 -8.83127034e-01\\n5.55521905e-01 2.30198085e-01 -9.16575715e-02 -2.63767302e-01\\n4.45501894e-01 -4.54591215e-01 -5.40335961e-02 7.24373534e-02\\n-2.35520020e-01 -2.41464645e-01 3.15704733e-01 -1.13929532e-01\\n-2.59803593e-01 6.78429484e-01 1.02698766e-01 1.46381631e-01\\n3.78542066e-01 -2.83877075e-01 -1.76055610e-01 -5.64239174e-02\\n-1.50965393e-01 -1.40857562e-01 -5.81143856e-01 1.23960361e-01\\n-1.10634290e-01 -5.12252092e-01 -7.80403093e-02 -5.08696556e-01\\n-2.25422829e-01 -2.84876466e-01 -2.59731680e-01 2.96742439e-01\\n1.92434937e-01 1.74000308e-01 -1.05507866e-01 -4.82587367e-02\\n1.97027866e-02 -6.91412091e-01 -5.02098352e-02 7.15362057e-02\\n4.32042360e-01 2.59835809e-01 2.61846900e-01 -8.58775452e-02\\n1.63848355e-01 4.10003364e-01 -3.58777672e-01 -4.43524987e-01\\n1.27500042e-01 9.73021537e-02 -4.79912274e-02 -1.67048678e-01\\n1.34975895e-01 4.04518425e-01 -2.28389919e-01 1.31865010e-01\\n3.94292101e-02 -3.70270871e-02 3.49040776e-01 -2.57066917e-02\\n-2.43934885e-01 -2.26500019e-01 -8.27875957e-02 2.37687081e-01\\n-5.93317926e-01 -3.17269415e-01 4.88442451e-01 2.47317463e-01\\n8.97993967e-02 2.22598076e-01 2.77755946e-01 -1.23002328e-01\\n-2.06953898e-01 -9.76430625e-02 2.68041551e-01 1.71976075e-01\\n1.31365255e-01 1.24579370e-01 -1.80519164e-01 -5.35281420e-01\\n-3.50417495e+00 -1.75089076e-01 1.43602312e-01 -2.29981154e-01\\n2.04089463e-01 -1.85537279e-01 2.12182850e-01 2.53077671e-02\\n-3.28020453e-01 -8.48561078e-02 -1.88551605e-01 -1.03937112e-01\\n4.07386757e-03 2.98340470e-01 1.08108923e-01 1.88793227e-01\\n1.36490390e-01 -1.91399798e-01 3.84088070e-03 4.26874876e-01\\n-9.22174305e-02 -6.96362674e-01 -2.55561713e-02 3.61620747e-02\\n1.48184657e-01 6.73779026e-02 -4.15742129e-01 -3.92589383e-02\\n-3.21821988e-01 -3.23158115e-01 1.86734870e-01 -2.35624462e-01\\n-2.44609118e-01 2.20956743e-01 1.81667164e-01 -1.17119715e-01\\n-1.62027944e-02 -2.33508959e-01 2.42001936e-02 -5.44063151e-01\\n8.13470855e-02 -5.98324299e-01 8.88843164e-02 -5.79190031e-02\\n6.72810674e-01 -2.52187073e-01 2.44479910e-01 9.77295414e-02\\n1.59578815e-01 2.52789617e-01 1.10288128e-01 5.62349260e-02\\n-3.28595877e-01 -3.20659429e-01 -1.31877035e-01 -2.53720462e-01\\n5.78959882e-01 4.40056324e-01 -1.70335010e-01 6.36792406e-02\\n9.78659373e-03 -3.37250173e-01 -5.06300986e-01 -3.50638479e-01\\n-2.08132833e-01 -8.52709711e-02 -6.69044137e-01 -3.54889631e-01\\n-8.23016539e-02 -1.18027486e-01 -5.46901338e-02 6.62365854e-01\\n-3.13018799e-01 -3.51793170e-01 3.96526530e-02 -5.07278740e-01\\n3.19762141e-01 -2.42803395e-01 6.55853376e-02 -2.58750886e-01\\n-3.28336746e-01 -4.62177157e-01 1.94543123e-01 -3.54599766e-02\\n-2.66761065e-01 -1.32800430e-01 5.46680465e-02 -1.52359337e-01\\n-3.96212727e-01 -6.26075149e-01 4.42959160e-01 3.95017713e-02\\n3.61081600e-01 6.05906993e-02 3.98483485e-01 -6.88349605e-02\\n3.56861442e-01 -9.98112038e-02 -1.31054252e-01 -4.97816831e-01\\n-1.97644290e-02 5.73071130e-02 5.34489989e-01 -2.34072521e-01\\n1.79413199e-01 9.32373255e-02 -1.95057124e-01 3.07738613e-02\\n4.13011312e-01 1.68356635e-02 8.14857408e-02 -6.31378358e-03\\n2.66395926e-01 -5.47979355e-01 -2.69027323e-01 1.55107424e-01\\n1.08892009e-01 7.03123152e-01 8.41865316e-03 -4.54086185e-01\\n-2.29289770e-01 4.41076189e-01 -6.45007417e-02 -1.18308276e-01\\n-2.19390437e-01 6.81811348e-02 -2.17581362e-01 2.63548553e-01\\n6.64121285e-02 -1.17072552e-01 -2.45330110e-01 -1.29564121e-01\\n-5.84770665e-02 3.63042742e-01 2.81433463e-01 1.61634088e-02\\n-7.70878568e-02 -2.21706539e-01 -3.57245468e-02 2.05241695e-01\\n2.32138753e-01 3.97327662e-01 1.66679710e-01 -3.01004171e-01\\n2.78272890e-02 3.06736737e-01 -3.17709178e-01 3.02906156e-01\\n-1.89054146e-01 1.42882586e-01 -6.38502955e-01 -1.44051403e-01\\n-2.66994298e-01 -4.27788824e-01 3.30012947e-01 3.58485937e-01\\n1.79589659e-01 -7.01749548e-02 6.38324022e-02 -5.05131185e-01\\n3.73124063e-01 1.12982221e-01 1.53083429e-01 7.08051994e-02\\n2.80801230e-03 6.69723630e-01 -1.77098811e-02 -1.62208453e-01\\n-6.04958236e-02 -1.97706092e-02 -2.60907173e-01 -3.42045695e-01\\n2.55826283e-02 -4.81955439e-01 -2.02252090e-01 4.90829349e-01\\n2.33723909e-01 -4.75820377e-02 -3.21290106e-01 1.33100957e-01\\n4.35751788e-02 -1.92549407e-01 -2.90783107e-01 -2.42837332e-02\\n2.01531097e-01 2.00762242e-01 2.64001667e-01 -4.20604885e-01\\n-3.78113724e-02 5.16359285e-02 -2.20098253e-02 4.36224848e-01\\n4.84443493e-02 2.14425087e-01 -6.25033826e-02 -1.04120679e-01\\n6.13250196e-01 -1.28150564e-02 -1.69442758e-01 -1.19935304e-01\\n7.93749243e-02 -1.61210597e-01 -4.15824413e-01 5.83286397e-02\\n-2.43440513e-02 -3.14145714e-01 8.84527341e-02 1.02038935e-01\\n1.09011732e-01 -5.32904565e-02 -5.95097363e-01 -1.72616392e-01\\n-3.80835503e-01 -6.19084686e-02 4.15815078e-02 -5.36376238e-01\\n3.89634334e-02 1.94169749e-02 -5.49118102e-01 2.83013165e-01\\n-1.59557611e-01 2.34637130e-02 3.27658169e-02 1.00415193e-01\\n-2.10372925e-01 -1.04411289e-01 1.39792547e-01 1.90717608e-01\\n-2.65638351e-01 -1.59193531e-01 4.23223004e-02 -9.18339968e-01\\n1.52262151e-01 7.36924708e-02 -1.32943735e-01 1.04808800e-01\\n3.55764218e-02 -7.74015486e-01 1.29943520e-01 -3.92476737e-01\\n-6.33490160e-02 1.50974005e-01 -2.50673473e-01 -3.95439118e-01\\n2.08995610e-01 3.50915939e-02 -4.07000482e-01 4.15662140e-01\\n-5.61714411e-01 3.19586158e-01 8.56264532e-02 7.89562017e-02\\n8.55175704e-02 -2.07664788e-01 1.59763098e-01 -2.32482165e-01\\n-3.70378107e-01 -2.01556742e-01 -2.06207275e-01 -3.23712707e-01\\n-8.40868428e-03 -3.26630116e-01 -1.08477421e-01 2.01712493e-02\\n4.21023816e-01 1.32078126e-01 -9.07460302e-02 -2.76236713e-01\\n6.86943457e-02 -4.73630935e-01 1.35386229e-01 -2.70865858e-01\\n-1.13083154e-03 -1.17591299e-01 2.10089207e-01 2.35687066e-02\\n2.07215667e-01 -3.16815883e-01 6.22050405e-01 -2.76310802e-01\\n-3.45916152e-01 -1.43903702e-01 6.32182583e-02 7.51021132e-02\\n2.37726122e-01 -3.78808647e-01 5.21192588e-02 2.72124439e-01\\n9.57002863e-02 7.74144009e-03 2.59716749e-01 -1.75252408e-01\\n-1.14230126e-01 1.79250881e-01 -5.00780165e-01 1.60120592e-01\\n8.63532364e-01 8.99323672e-02 2.56249458e-01 1.37095362e-01\\n1.20234236e-01 2.59131551e-01 4.77859616e-01 1.57975741e-02\\n-8.44413191e-02 2.87263215e-01 5.32845482e-02 -4.52349544e-01\\n-1.33555338e-01 -1.50623873e-01 -1.66257456e-01 -2.96008676e-01\\n6.02666676e-01 2.33034328e-01 -3.36251676e-01 -4.54831868e-01\\n-7.99099877e-02 -1.00721851e-01 4.06935215e-01 1.51048526e-02\\n-1.40468761e-01 -1.76450998e-01 4.19293970e-01 -6.43341243e-02\\n3.23634148e-01 5.25896311e-01 -1.65244415e-01 -2.80985773e-01\\n-1.03312410e-01 2.46023715e-01 1.93510264e-01 4.52180237e-01\\n-1.55434579e-01 1.74752906e-01 -1.07079193e-01 1.43060103e-01\\n-1.89065054e-01 -8.78895074e-03 3.01000088e-01 6.83068782e-02\\n2.19076112e-01 6.77633360e-02 4.65387374e-01 5.59907198e-01\\n1.90063655e-01 5.31919301e-01 3.54384571e-01 -1.32503854e-02\\n3.20093125e-01 6.66606545e-01 3.78609300e-01 1.04473203e-01\\n-3.07683758e-02 1.38937786e-01 6.82053268e-02 -7.74407685e-02\\n2.82814741e-01 3.94464582e-01 2.25611493e-01 8.85194421e-01\\n3.46412063e-01 3.44777614e-01 7.24910855e-01 -6.45051658e-01\\n-4.96049970e-01 9.21939537e-02 6.03345633e-01 -4.64121521e-01\\n5.40326983e-02 1.62939936e-01 -2.49493226e-01 2.17103228e-01\\n-5.56812644e-01 -2.11038455e-01 4.21759440e-03 1.22597618e-02\\n1.01786721e-02 -9.87417027e-02 -9.09411311e-02 1.19228959e-01\\n-1.19134754e-01 -1.98214710e-01 -2.97854602e-01 -1.21630073e-01\\n-2.32164294e-01 -5.52714802e-02 -1.02314711e-01 -2.53677312e-02\\n-2.29588710e-02 -3.22520316e-01 -6.94573820e-02 6.73100026e-03\\n3.18767995e-01 -2.02134550e-01 -2.14769408e-01 -7.11566284e-02\\n1.59569532e-01 2.47494087e-01 5.84787607e-01 5.20478673e-02\\n1.97300874e-02 -1.49446592e-01 -1.87031940e-01 3.72363031e-02\\n6.18296191e-02 1.31450161e-01 7.60812964e-03 3.67187589e-01\\n-2.83870757e-01 -2.00773999e-01 1.73787057e-01 2.05903783e-01\\n-3.76042515e-01 -1.09815635e-01 -4.55926470e-02 2.24547386e-01\\n1.80376992e-02 1.47408113e-01 -2.86194414e-01 1.76045194e-01\\n-2.14229807e-01 -5.73754609e-01 4.62805003e-01 -2.06788361e-01\\n-1.24913402e-01 7.54182637e-02 3.20095986e-01 2.22538635e-01\\n-2.22011238e-01 -3.66530903e-02 -1.39946029e-01 2.69055218e-01\\n-8.69691595e-02 3.73143971e-01 -2.42382780e-01 -2.33777374e-01\\n-2.87254810e-01 3.02292496e-01 2.91829240e-02 1.88529760e-01\\n-2.78444849e-02 4.86935914e-01 -3.09117362e-02 1.36623368e-01\\n3.12452167e-01 3.34689692e-02 -2.60901988e-01 -3.44393373e-01\\n-2.40466744e-01 -8.69643986e-02 6.19944409e-02 -2.59186383e-02\\n1.95385382e-01 -3.49411130e-01 -1.29450992e-01 -2.11682081e-01\\n-1.64196745e-01 -4.55375612e-01 -9.15977806e-02 2.57502776e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Responsible for delivering projects in the Big Data (Engineer and Analytics) field A key position as Big Data Ingenieur, where you are designing and building an analytics platform using state of the art Big Data technologies and provide services to enable Data Scientists to build advanced analytics models You are taking an active part of our transformation into a more data and analytical insights driven bank Within the highly motivated team, you collaborate closely with business teams to understand data and functional requirements You design and build data pipelines to ingest, integrate, standardize, clean and publish data You are responsible for defining and crafting integration patterns with downstream applications You provide input into overall IT architecture of the solution, including technical environment configuration, data modelling, data integration, data presentation, information security and other IT architecture related topics You support Data Scientist in their day-to-day work on a variety of topics, including tools and data analysis methods You operationalize analytical models developed by the Data Scientists to embed them into the bank’s business processes Your profile: A university degree or equivalent education in IT or another technical specialization, ideally with focus on Data Management You have proven work experience of at least two years as a Data Engineer using Big Data technologies Experience with Hadoop based analytical solutions, ideally on Cloudera distribution, as well as practical skills in creating data processing pipelines using Spark, Scala, Python or similar tools Good knowledge of SQL, Hive and Impala databases Ideally experience with Jupyter Notebook, Hue, other end user tools If you already had experience with Tableau, Splunk or an agile work environment you have an advantage You are able to work in a dynamic environment, be comfortable with changing priorities and tight deadlines, manage you own workload with minimum supervision You build strong collaborative relationships with colleagues in IT and business groups Excellent verbal and written communication skills in English and German Benötigte Skills Scala Python Python Englisch Security Datawarehouse',\n", + " 'soft_skills': '[\"Collaboration\", \"Management\", \"Supervision\", \"Team Motivation\", \"Integration\", \"Positivity\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Information Presentation Facility\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Agility\", \"Analytics\", \"Data Management\", \"Data Modeling\", \"Data Engineering\", \"Scala (Programming Language)\", \"Activism\", \"Apex Data Loader\", \"Functional Requirement\", \"Information Security Management\", \"Jupyter Notebook\", \"Data Pipeline\", \"Idealization\", \"Splunk\", \"Hostile Work Environment\", \"Pipelining\", \"Operationalization\", \"Business Process\", \"Apache Hive\", \"Electronic Data Processing\", \"Big Data\", \"Survey Data Analysis\", \"Transformation (Genetics)\", \"Service Provider\", \"Banking\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Icelandic', 'Sardinian', 'Swedish', 'Bambara']\"},\n", + " {'company_id': '44',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.12801331e-01 3.16512048e-01 4.18633461e-01 -7.91569278e-02\\n5.23473918e-01 -2.02009022e-01 1.43224448e-02 3.96541834e-01\\n-2.95258015e-02 -3.80351514e-01 -1.71148345e-01 -2.60764986e-01\\n-1.86775640e-01 3.46598998e-02 2.29364529e-01 4.35211420e-01\\n2.13361993e-01 7.31811300e-02 -2.71519899e-01 3.62178653e-01\\n6.76888525e-02 -9.00769681e-02 3.08419261e-02 7.49629259e-01\\n3.51514131e-01 1.39445933e-02 7.99249671e-03 -1.12452928e-03\\n-3.08921933e-01 -2.86021382e-01 2.84034193e-01 -1.54524837e-02\\n-1.17725946e-01 -3.36671174e-01 1.80350006e-01 3.94491404e-02\\n-1.42310113e-01 -6.50811344e-02 -2.96018068e-02 1.36475191e-01\\n-4.86237645e-01 -2.83786476e-01 2.09684446e-01 8.14381912e-02\\n-7.68273175e-02 -3.60551596e-01 1.40205085e-01 -1.42227501e-01\\n1.89237390e-02 -6.57460168e-02 -4.99913871e-01 3.54694098e-01\\n-2.39417732e-01 -1.58044338e-01 3.51311326e-01 5.19925475e-01\\n-1.20911978e-01 -6.11969590e-01 -3.13406318e-01 -2.62099057e-01\\n4.18638550e-02 -7.50373229e-02 -1.30443517e-02 -3.59687090e-01\\n3.79999757e-01 7.91939124e-02 -7.55848140e-02 3.19918513e-01\\n-8.10813129e-01 -2.05031931e-01 -2.33121410e-01 4.83161956e-02\\n-3.55063528e-01 -9.04140249e-02 -1.34746566e-01 -1.46796510e-01\\n1.85451377e-02 3.83641899e-01 -1.53264469e-02 3.23173665e-02\\n-1.09364137e-01 3.71241242e-01 -4.62248400e-02 3.77704322e-01\\n3.20841372e-01 1.68776840e-01 1.32807031e-01 3.55924428e-01\\n-3.59836102e-01 4.87569720e-01 7.26686940e-02 -2.88253397e-01\\n1.25274226e-01 2.05301002e-01 5.00716269e-01 1.26226461e-02\\n3.97542417e-02 1.97526187e-01 -3.04165840e-01 2.99141109e-01\\n2.02088848e-01 -1.69397727e-01 6.65759528e-03 -7.11626336e-02\\n-6.61653057e-02 -8.45232680e-02 2.61793938e-02 3.13128084e-01\\n-2.93170273e-01 5.02677441e-01 1.24285914e-01 -7.22864345e-02\\n5.16628325e-02 -5.67255735e-01 -1.40350863e-01 1.53846378e-02\\n-8.00355077e-02 9.77878496e-02 3.32642287e-01 1.70066193e-01\\n2.57896721e-01 4.31124158e-02 9.32393223e-02 9.67842042e-01\\n1.71050604e-03 1.68293089e-01 -2.51748562e-01 4.06392246e-01\\n1.53977498e-01 -3.17053527e-01 1.74288854e-01 3.45592886e-01\\n2.39519402e-01 -1.12963505e-01 -2.27179065e-01 3.27402472e-01\\n-1.98341832e-01 -2.90694505e-01 -3.96096706e-01 1.96666941e-01\\n-2.44850695e-01 -4.90286648e-01 4.87498850e-01 1.40147626e-01\\n2.05087215e-01 1.03209866e-02 -9.43975672e-02 -4.17625979e-02\\n-1.00627251e-01 2.33817548e-01 3.21568996e-02 1.13600150e-01\\n-3.47780794e-01 -1.75770327e-01 -3.02637100e-01 1.32408574e-01\\n-1.58637851e-01 1.71912894e-01 -1.09562412e-01 -1.44348353e-01\\n3.51832122e-01 3.17592826e-03 -5.07710516e-01 3.64246964e-01\\n8.38328060e-03 -2.77027320e-02 -4.36405130e-02 4.02636915e-01\\n-9.95365232e-02 2.98923433e-01 -2.54423991e-02 -6.76289275e-02\\n3.59841526e-01 1.76911224e-02 -2.52633691e-02 -1.65009215e-01\\n3.01501960e-01 -1.43668905e-01 1.70410991e-01 6.89919889e-02\\n-7.37222970e-01 2.55105525e-01 -5.80111742e-02 1.35410186e-02\\n1.21948551e-02 -2.48319414e-02 3.62341821e-01 -3.71194720e-01\\n-1.72665700e-01 -1.85158774e-01 -3.90695781e-01 -3.93356651e-01\\n-3.03242415e-01 -1.41313951e-02 4.49884295e-01 -3.03693563e-01\\n-1.78244039e-01 2.21627623e-01 -5.13013422e-01 7.02287033e-02\\n2.58289307e-01 1.97849259e-01 1.26958489e-01 1.41438901e-01\\n-3.51326987e-02 -5.98378539e-01 7.58757666e-02 -4.24420714e-01\\n-3.60226482e-01 1.34903803e-01 -3.12238276e-01 2.69950598e-01\\n1.49554044e-01 1.00095376e-01 -6.44305274e-02 6.67490140e-02\\n-2.30115294e-01 -6.73026517e-02 1.71835586e-01 6.78511634e-02\\n1.98214769e-01 3.73082533e-02 -4.94558334e-01 4.80509192e-01\\n-2.18076795e-01 4.77721304e-01 8.23358148e-02 -8.05065870e-01\\n5.48103392e-01 3.26535404e-01 3.47400866e-02 -4.32201236e-01\\n6.10359013e-01 -3.83548349e-01 -9.53272209e-02 1.43837258e-01\\n-4.00688887e-01 -3.12934250e-01 1.97759032e-01 -1.26089916e-01\\n-2.75784433e-01 5.80727637e-01 9.97411311e-02 2.69413833e-03\\n2.87883818e-01 -2.82297134e-01 -1.53541237e-01 7.27819875e-02\\n-2.70451121e-02 -2.21376926e-01 -4.47217792e-01 -1.82413007e-03\\n-1.61377676e-02 -5.08080542e-01 -1.74873129e-01 -4.52164561e-01\\n-2.09689453e-01 -3.83565933e-01 -1.85078964e-01 3.29800218e-01\\n2.43226454e-01 1.48317978e-01 1.01001821e-01 9.96082556e-03\\n-1.42926037e-01 -6.03709698e-01 -5.56448624e-02 6.82088509e-02\\n4.28021967e-01 2.43521348e-01 7.49348253e-02 -4.66759428e-02\\n-6.68673441e-02 6.31377578e-01 -3.06268126e-01 -2.56342620e-01\\n8.89747813e-02 1.52975783e-01 -3.74802798e-02 -7.81136826e-02\\n1.56144172e-01 4.08918172e-01 -2.41116136e-01 3.76945175e-02\\n-2.23806977e-01 8.41687992e-02 3.68939638e-01 7.07777450e-04\\n-3.46594244e-01 -2.57924855e-01 -2.69735418e-02 1.82354793e-01\\n-5.86630285e-01 -1.80287495e-01 5.61579823e-01 2.65502125e-01\\n2.08557695e-01 1.54528826e-01 3.47996920e-01 -1.95836157e-01\\n-5.38512878e-02 -1.69183508e-01 1.18805401e-01 2.48434573e-01\\n8.71337280e-02 1.91436857e-02 -1.81508169e-01 -5.99153221e-01\\n-3.05484533e+00 1.10294959e-02 1.36477068e-01 -1.99948147e-01\\n1.39525965e-01 -6.62112907e-02 2.88588461e-02 -1.17691398e-01\\n-2.62980223e-01 6.02071807e-02 -3.20721596e-01 -1.26113206e-01\\n8.52785930e-02 2.04672530e-01 1.25590280e-01 1.42709404e-01\\n2.15302050e-01 -3.65236789e-01 -6.41188771e-02 2.48403624e-01\\n-6.28827065e-02 -7.12549269e-01 1.79696992e-01 -8.72801095e-02\\n2.93931693e-01 2.97597945e-01 -3.60176116e-01 -1.36338770e-01\\n-1.74095780e-01 -2.83319741e-01 1.11630552e-01 -2.43421271e-01\\n-1.40295044e-01 3.74410242e-01 4.93827872e-02 -1.42165184e-01\\n1.41054377e-01 -3.48098963e-01 5.34460805e-02 -4.17488962e-01\\n1.58350185e-01 -5.95151544e-01 1.27165481e-01 -9.31036696e-02\\n6.22393191e-01 -3.27441275e-01 9.71521661e-02 2.07087368e-01\\n1.36256769e-01 2.67784446e-01 -6.76104426e-02 -3.57137341e-03\\n-1.95487037e-01 -2.08670855e-01 -1.30109107e-02 -2.11488754e-01\\n5.04943311e-01 4.60878670e-01 -1.69685796e-01 -3.30233909e-02\\n8.74223039e-02 -3.65866989e-01 -4.38640147e-01 -4.03927565e-01\\n-2.57940143e-01 -1.97407663e-01 -8.23525071e-01 -3.83654982e-01\\n-8.59944522e-02 -7.49429986e-02 -1.59311533e-01 5.48014581e-01\\n-2.91549981e-01 -3.61807287e-01 4.08007912e-02 -5.12999594e-01\\n7.83261284e-02 -2.03186750e-01 7.11726546e-02 -2.37453148e-01\\n-2.17922196e-01 -5.08351088e-01 1.26214266e-01 7.54575729e-02\\n-1.60454854e-01 -1.76717415e-01 7.34414905e-02 -2.33689398e-01\\n-1.70308679e-01 -5.09858668e-01 4.56348330e-01 1.57323986e-01\\n2.63603836e-01 1.53788000e-01 2.11083204e-01 -6.76111970e-03\\n3.25063020e-01 -6.80102259e-02 1.06913075e-01 -4.63090241e-01\\n5.46183102e-02 8.84331390e-02 5.33161044e-01 -1.95888788e-01\\n-3.46129909e-02 2.00686380e-01 -1.66580871e-01 -1.78392231e-01\\n2.72686183e-01 1.22653231e-01 8.36533904e-02 -2.49631599e-01\\n3.34251016e-01 -5.11177361e-01 -2.40285367e-01 1.53864443e-01\\n1.60415947e-01 7.00615287e-01 6.49797218e-03 -4.78652209e-01\\n-2.99368918e-01 3.67539376e-01 3.14667053e-03 -7.26779178e-02\\n-4.08478267e-02 1.43154070e-01 -2.79801160e-01 1.69476718e-01\\n2.17109397e-02 -1.75495341e-01 -2.85740227e-01 -1.06599860e-01\\n-7.87442923e-02 3.19206625e-01 2.99442440e-01 1.19668327e-01\\n-4.11337912e-02 -4.85817999e-01 -1.08940728e-01 1.37533471e-01\\n1.45772815e-01 3.25233519e-01 9.24873874e-02 -3.06976318e-01\\n-5.98290935e-02 4.24621344e-01 -1.02247730e-01 1.36669278e-01\\n-2.22659975e-01 -3.18024606e-02 -5.38682222e-01 -1.71118721e-01\\n-2.39801943e-01 -2.24327132e-01 -4.66067716e-02 3.97736639e-01\\n1.48451328e-01 -7.31302006e-03 7.61822239e-02 -5.14854372e-01\\n4.06590223e-01 2.58336309e-02 2.52168030e-01 1.23999245e-01\\n1.66050624e-02 4.88307595e-01 -5.61133353e-03 -1.70740664e-01\\n-1.57895908e-01 9.37199071e-02 -2.77358770e-01 -2.33088717e-01\\n1.40401438e-01 -2.93494672e-01 -9.65822786e-02 2.91272163e-01\\n4.91943881e-02 -2.76045293e-01 -1.84342369e-01 1.74787879e-01\\n1.16718769e-01 -3.74120444e-01 -2.05214411e-01 4.75183539e-02\\n2.56592423e-01 1.78696364e-02 1.84482783e-01 -4.47677374e-01\\n-6.68130070e-02 -2.09452629e-01 -1.43975437e-01 5.01841247e-01\\n2.16458008e-01 2.91687232e-02 -2.43994996e-01 -2.70706505e-01\\n4.12215650e-01 -8.92977789e-02 -5.60359061e-02 -1.98209986e-01\\n2.95626111e-02 -1.62104219e-01 -3.88458967e-01 4.40001711e-02\\n-5.18975742e-02 -5.11773489e-02 2.22649239e-02 3.13011184e-02\\n1.29123017e-01 7.45195895e-02 -5.29471934e-01 -2.07720190e-01\\n-2.53031343e-01 -1.08118638e-01 1.40799694e-02 -4.06599522e-01\\n5.92197292e-02 -7.43468385e-03 -6.36318207e-01 3.06066871e-01\\n-3.06495547e-01 9.54146758e-02 1.30129576e-01 8.76834095e-02\\n-4.51240152e-01 -1.30911306e-01 1.65414929e-01 1.52794510e-01\\n-2.88830251e-01 -1.08976416e-01 -9.61446315e-02 -1.08853316e+00\\n2.96982944e-01 -9.61849242e-02 -7.25740790e-02 2.27480270e-02\\n-4.63116020e-02 -7.93134034e-01 9.86428708e-02 -3.43419343e-01\\n1.87187120e-02 -2.07975358e-02 -1.08778752e-01 -4.32107568e-01\\n6.74312338e-02 -1.27865180e-01 -2.87211865e-01 2.68414289e-01\\n-4.44613755e-01 3.72799575e-01 -1.56655312e-01 1.28634110e-01\\n-3.51930298e-02 -3.12616080e-01 1.57254413e-01 -4.55645651e-01\\n-3.98627371e-01 -1.27781808e-01 -2.95688212e-01 -1.76665843e-01\\n-5.17622195e-02 -3.53044599e-01 -1.56716421e-01 1.14772148e-01\\n3.16042304e-01 1.14111893e-01 -6.10143542e-02 -2.41039008e-01\\n1.12457089e-01 -2.69582003e-01 3.24008316e-02 -1.21879131e-01\\n1.20718703e-01 -3.03700138e-02 1.75463855e-01 -4.79134964e-03\\n2.41457626e-01 -4.57437903e-01 4.01130646e-01 -3.77908587e-01\\n-4.42508519e-01 2.64437217e-03 4.21154946e-02 3.97810936e-02\\n3.01885575e-01 -4.86610025e-01 1.11247646e-02 2.37946510e-01\\n1.73222974e-01 1.22796781e-01 2.48659536e-01 1.86481662e-02\\n-1.54597655e-01 1.36411369e-01 -3.85708928e-01 9.71544441e-03\\n8.32945168e-01 1.75121665e-01 1.13029771e-01 9.02787372e-02\\n3.18379104e-02 3.77394587e-01 5.02191901e-01 -8.99109989e-03\\n-1.20048493e-01 2.51982510e-01 1.11550167e-01 -4.91380543e-01\\n-2.24850014e-01 -2.65921708e-02 -2.05087617e-01 -1.75069168e-01\\n6.28130555e-01 4.36543196e-01 -2.94996500e-01 -2.88637042e-01\\n-9.96529013e-02 -2.03501254e-01 1.74984753e-01 -5.48226386e-02\\n1.01103045e-01 -2.30957493e-01 6.27895594e-01 6.22641146e-02\\n2.44934604e-01 6.21182382e-01 -1.85486361e-01 -3.99862140e-01\\n-9.16196033e-02 1.68436378e-01 5.53882271e-02 3.10499460e-01\\n-1.42887026e-01 2.84558684e-01 1.68681350e-02 4.10193764e-02\\n-1.99829996e-01 5.01204096e-02 1.52698874e-01 4.43148576e-02\\n1.40622944e-01 2.18024269e-01 3.18108648e-01 5.23011446e-01\\n3.41097444e-01 5.57101846e-01 2.71017879e-01 3.59637737e-02\\n4.87620115e-01 4.76558000e-01 4.54230547e-01 2.08986163e-01\\n-1.76320306e-03 1.02056921e-01 2.16901347e-01 5.01393266e-02\\n4.69051331e-01 2.94091463e-01 1.79922462e-01 9.98627603e-01\\n3.48797649e-01 2.87032545e-01 8.43538225e-01 -6.43991292e-01\\n-3.18332583e-01 5.51734343e-02 4.55668807e-01 -4.48792756e-01\\n-1.03208646e-01 -2.35917289e-02 -1.22589260e-01 2.35548720e-01\\n-4.74328876e-01 -2.55274892e-01 -9.27144364e-02 1.68489486e-01\\n4.89928350e-02 -8.48086700e-02 -2.35221758e-01 5.56751527e-02\\n-2.20822483e-01 -1.62228793e-01 -4.53381389e-01 -1.14544705e-01\\n-2.33592719e-01 -1.03915513e-01 -7.65084699e-02 -1.84562787e-01\\n-3.26370820e-02 -3.98711294e-01 -2.02082708e-01 2.68614795e-02\\n3.79045993e-01 -2.30294168e-01 2.94798687e-02 -1.81650251e-01\\n2.43176535e-01 2.39570662e-01 6.50650203e-01 1.27208696e-04\\n1.63850382e-01 -2.21740499e-01 -2.02035472e-01 9.17099938e-02\\n2.68027466e-02 1.37803748e-01 1.17072977e-01 3.76176268e-01\\n-4.04191136e-01 -2.14482509e-02 1.21888354e-01 5.50979197e-01\\n-3.42247546e-01 -9.31182057e-02 -1.53794706e-01 1.38029650e-01\\n6.04198799e-02 1.23234972e-01 -1.84309915e-01 -2.02576760e-02\\n-2.62405872e-01 -5.71299553e-01 3.52944851e-01 -1.24262683e-01\\n-1.58385515e-01 1.21032149e-01 3.36867213e-01 1.86535716e-01\\n-2.29159430e-01 9.08462738e-04 4.92382459e-02 1.94130823e-01\\n1.63496256e-01 3.55838865e-01 -3.36899340e-01 -2.02272743e-01\\n-1.60276696e-01 2.56040275e-01 -1.89696684e-01 2.15142649e-02\\n-9.00366232e-02 4.16060656e-01 2.68871486e-02 9.36951786e-02\\n3.94507438e-01 -4.32611518e-02 -1.73853770e-01 -2.69220442e-01\\n-1.61375061e-01 -2.79768169e-01 5.43620624e-02 -1.25683665e-01\\n2.65155464e-01 -3.70299548e-01 -8.55093896e-02 -1.29202113e-01\\n-5.75658605e-02 -3.69844526e-01 -1.52958527e-01 4.67682397e-03]]',\n", + " 'job_description': 'We are looking for young, enthusiastic and talented Software Engineer In this position you will be responsible for embedded software development in C++ and other programming languages. You will develop software under different operating systems using provided Application Programming Interfaces (APIs). In dynamic, multicultural environment of our company, you will be part of a team working on projects in the area of Telecommunications, Wireless, Networked Entertainment and Multimedia. In cooperation with leading European companies, you will be developing cutting-edge technology products. Exciting, challenging tasks are waiting for you! As a successful candidate for this position you must be able to demonstrate the following qualifications: 2+ years of experience in software development Strong knowledge of object-oriented (OO) design principles Extensive programming experience in C++ and multi-threading environments Basic computer engineering knowledge (processor and memory organization, stack, calling conventions, interrupt handling, etc.) Good written and verbal communication skills in English Good analytical and problem-solving skills Any of the following qualifications will be a plus: Experience with real-time operating systems (RTOS) and Linux Software design and development process using UML Understanding of embedded software development principles Hands-on experience with hardware debuggers and device-level programming Practical knowledge of MS VS, GCC, STL, Perl, CVS/Subversion, ADS (RealView), Socket API Familiarity with the ARM architecture and assembler Software analysis, review and re-factoring skills We offer: Exciting carrier and professional opportunities in a dynamically developing company with Swiss quality standards and stability Enjoyable working atmosphere in our engineering offices, conveniently located in 5-minute walking distance from Zug railway station. If you are interested in this position, please, send your resume at jobs@epscom.net We are looking forward to your application!',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Cooperation\", \"Professionalism\", \"Problem Solving\", \"Positivity\"]',\n", + " 'hard_skills': '[\"KM Programming Language\", \"Programming (Music)\", \"UML Tool\", \"Analytics\", \"Perl (Programming Language)\", \"C++ (Programming Language)\", \"Linux\", \"Agile Edge Technologies\", \"Process Driven Development\", \"Software Engineering\", \"ARM Architecture\", \"Operating Systems\", \"Multimedia\", \"AD Model Builder (ADMB)\", \"Standard Template Library (STL)\", \"Object-Oriented Design\", \"Wireless Telecommunications\", \"Software Design\", \"Computer Engineering\", \"Wireless Networks\", \"Software Development\", \"Software Business Analysis\", \"Application Programming Interface (API)\", \"Embedded Software\", \"Apache Subversion\", \"Real-Time Operating Systems\", \"Interrupt Handling\", \"Threading (Manufacturing)\"]',\n", + " 'languages': \"['English', 'Dhivehi', 'Occitan', 'Ossetic']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer application framework 80-100%',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-1.38273299e-01 2.87755728e-01 5.54463685e-01 -7.89426081e-03\\n5.55581212e-01 -1.15915179e-01 6.84729442e-02 3.51902515e-01\\n-1.10367537e-02 -3.52897584e-01 -4.75258008e-02 -1.86945513e-01\\n-1.89395808e-02 2.88173333e-02 1.01893395e-01 3.15285981e-01\\n2.32014522e-01 1.36371285e-01 -1.30550429e-01 2.88902909e-01\\n1.48151129e-01 -2.29120925e-02 2.24251106e-01 7.00022876e-01\\n4.82816964e-01 3.70246209e-02 -6.05696291e-02 -2.93427296e-02\\n-2.86100626e-01 -2.58671373e-01 5.16586721e-01 8.64480212e-02\\n-1.28873259e-01 -3.64261597e-01 2.68727187e-02 -1.10842856e-02\\n-3.46311390e-01 -1.30607516e-01 -9.63586271e-02 1.73514932e-01\\n-3.64723295e-01 -1.67548582e-01 -1.23065434e-01 4.77714837e-02\\n-2.59312600e-01 -3.72619420e-01 -6.58757761e-02 -1.06333941e-01\\n1.78094402e-01 -5.57616279e-02 -4.85783756e-01 2.71259278e-01\\n-2.90288895e-01 -1.85301602e-01 2.22278148e-01 6.68231249e-01\\n-4.34990712e-02 -3.77749473e-01 -5.37635326e-01 -2.99678236e-01\\n1.41215727e-01 -1.01260215e-01 3.88627537e-02 -2.84696579e-01\\n2.29394361e-01 1.04779698e-01 1.08476475e-01 3.72858733e-01\\n-7.96289146e-01 -4.30939607e-02 -2.00616553e-01 -5.57391793e-02\\n-3.20775598e-01 -1.11318573e-01 -2.45476276e-01 -1.74544379e-01\\n-1.78993911e-01 4.60415244e-01 8.36129785e-02 8.62803124e-03\\n-1.75282195e-01 3.12097371e-01 -1.53716102e-01 3.91107470e-01\\n1.55054048e-01 1.86444715e-01 1.61679789e-01 3.15738201e-01\\n-3.55225682e-01 5.09462476e-01 7.01233596e-02 -3.21098655e-01\\n1.70544207e-01 6.15616627e-02 3.94158810e-01 -3.87429409e-02\\n7.94839859e-02 3.15051936e-02 -1.26400501e-01 3.10513288e-01\\n1.82541400e-01 -2.55095005e-01 3.80042605e-02 -1.70093089e-01\\n2.77834181e-02 -8.95043369e-03 -3.02245840e-02 1.17102414e-01\\n-2.29790524e-01 3.68329108e-01 5.55984862e-02 -2.45195627e-01\\n-1.00300230e-01 -5.64314008e-01 -6.23275563e-02 -7.75097385e-02\\n5.82525432e-02 1.25520930e-01 1.26106411e-01 2.39601448e-01\\n2.73205012e-01 1.90176126e-02 1.60155863e-01 6.69777930e-01\\n-2.46780105e-02 4.47492069e-03 -2.86204427e-01 3.57005179e-01\\n4.17362824e-02 -3.00949782e-01 2.23349318e-01 2.55833715e-01\\n-5.95372766e-02 -9.99837667e-02 -2.17078716e-01 3.26070040e-01\\n-1.91153176e-02 -2.43783608e-01 -2.78579652e-01 2.00619563e-01\\n-7.56111145e-02 -3.79696488e-01 4.88838851e-01 1.70256615e-01\\n1.88770413e-01 -9.73684713e-02 -1.19060688e-02 -7.67802596e-02\\n-5.72979487e-02 1.01061232e-01 3.13686132e-02 1.01227693e-01\\n-2.65297532e-01 -3.08722675e-01 -2.23060384e-01 8.39825198e-02\\n-2.26403296e-01 1.23955578e-01 -1.07349820e-01 -3.33474651e-02\\n2.48614207e-01 6.88126544e-03 -3.25920641e-01 3.01950365e-01\\n-3.30567323e-02 -8.99833534e-03 1.01191953e-01 3.72540325e-01\\n-1.85672149e-01 1.51705787e-01 -7.23388419e-02 -2.30719864e-01\\n5.72191834e-01 1.32911831e-01 8.03753734e-02 4.48034927e-02\\n1.51004404e-01 1.44014526e-02 1.48792490e-01 1.13734789e-01\\n-7.75650084e-01 3.86743426e-01 -9.75602046e-02 -1.60448015e-01\\n1.49152458e-01 -8.41695145e-02 2.71072060e-01 -1.68727458e-01\\n1.02989487e-01 -1.13288485e-01 -3.27210069e-01 -3.15071911e-01\\n-2.19576322e-02 5.79457404e-03 3.02874774e-01 -4.69877869e-01\\n-1.54559076e-01 2.89203346e-01 -4.38468844e-01 -5.84359542e-02\\n1.19683705e-01 1.89227566e-01 1.32532567e-01 1.18998446e-01\\n-2.12152049e-01 -3.68010581e-01 6.13485202e-02 -3.82528931e-01\\n-2.70977020e-01 -1.47275638e-03 -2.77693927e-01 2.46533245e-01\\n1.17571950e-01 -6.33373186e-02 -6.92158267e-02 1.15657233e-01\\n-1.57005370e-01 -1.63327418e-02 7.81629309e-02 -4.91488772e-03\\n3.52782220e-01 -1.63083393e-02 -4.06139970e-01 3.53981316e-01\\n-1.67821318e-01 5.32294273e-01 1.74106926e-01 -8.16291988e-01\\n4.62538362e-01 4.09254789e-01 -6.17959760e-02 -4.30448920e-01\\n5.82773209e-01 -3.06598365e-01 -1.82453748e-02 6.14972934e-02\\n-4.01310563e-01 -2.61851132e-01 1.93454012e-01 -1.51092455e-01\\n-2.25953028e-01 4.05689836e-01 -4.00624890e-03 1.61617428e-01\\n1.21346615e-01 -2.89103508e-01 -1.92167416e-01 -1.98535789e-02\\n-1.01712368e-01 -1.93971530e-01 -5.27311742e-01 -1.32193223e-01\\n-1.29379675e-01 -4.72580314e-01 -9.42598507e-02 -3.96205246e-01\\n-1.77029923e-01 -2.06852928e-01 -9.96840745e-02 2.02387601e-01\\n2.03230590e-01 1.05365269e-01 -2.36061495e-02 1.09440468e-01\\n-5.23642860e-02 -6.18069470e-01 3.77774946e-02 1.85805783e-01\\n4.11658138e-01 1.88189104e-01 1.05119832e-01 -6.77421838e-02\\n3.32493298e-02 7.45300531e-01 -1.33908957e-01 -1.97028250e-01\\n2.00982824e-01 1.32788748e-01 4.28100303e-02 -1.11113168e-01\\n1.80451118e-03 3.14230800e-01 -2.96928257e-01 2.79304874e-03\\n-7.81481992e-03 -1.61931105e-02 4.26268220e-01 4.21479829e-02\\n-2.64898539e-01 -9.42052230e-02 -8.19195360e-02 1.87522352e-01\\n-6.00113094e-01 -2.54846871e-01 5.97451150e-01 2.16903970e-01\\n5.20106256e-02 1.11149676e-01 1.82509035e-01 3.51613294e-03\\n-1.93476960e-01 -1.64605483e-01 2.58002341e-01 3.00725345e-02\\n1.72422931e-01 -1.51500637e-02 -9.18130651e-02 -5.14204562e-01\\n-3.35622096e+00 -1.63567275e-01 7.79481903e-02 -2.67684877e-01\\n2.70302802e-01 -1.77100837e-01 1.85198829e-01 -7.89941698e-02\\n-2.11331651e-01 4.54040579e-02 -2.82750517e-01 -1.40611604e-01\\n1.61711589e-01 1.82543427e-01 5.07678948e-02 1.49612442e-01\\n9.19030234e-02 -2.92015582e-01 1.21553643e-02 3.35533053e-01\\n-1.69637308e-01 -6.79307342e-01 1.57476097e-01 3.76132503e-02\\n2.14172587e-01 2.25301489e-01 -3.67257535e-01 -1.16482347e-01\\n-2.07625777e-01 -2.78943628e-01 1.31078884e-02 -3.58343661e-01\\n-1.48125097e-01 2.69722879e-01 2.37703398e-01 -1.75972492e-01\\n1.26580670e-01 -4.57638711e-01 -1.00809135e-01 -5.11167109e-01\\n1.91104919e-01 -6.12208128e-01 5.54144755e-02 -1.00510284e-01\\n7.08829999e-01 -3.40575218e-01 1.00435816e-01 1.65816382e-01\\n2.03736410e-01 1.53406292e-01 1.56337976e-01 -3.36327069e-02\\n-1.74086213e-01 -3.24465215e-01 -9.97988284e-02 -8.21223408e-02\\n4.25224513e-01 3.97322685e-01 -1.68422937e-01 8.55315924e-02\\n6.71281219e-02 -2.65000939e-01 -3.56881469e-01 -2.17421636e-01\\n-1.23896554e-01 -3.14893007e-01 -6.96699679e-01 -4.63148147e-01\\n-1.72815412e-01 -2.34709203e-01 -1.91978425e-01 5.38206398e-01\\n-2.78701812e-01 -3.20859969e-01 -1.33413717e-01 -4.51709777e-01\\n3.33022922e-01 -1.53675243e-01 4.10000309e-02 -1.53944343e-01\\n-1.85941800e-01 -4.30374920e-01 2.54016351e-02 -5.54592609e-02\\n-4.37332038e-03 -2.77075380e-01 9.21046883e-02 -6.93303943e-02\\n-3.13694090e-01 -4.95240599e-01 3.92009526e-01 4.74073328e-02\\n3.15733492e-01 1.35380626e-01 2.65357852e-01 3.71247120e-02\\n1.92722440e-01 -1.03749260e-01 -8.67616311e-02 -2.99365968e-01\\n5.29151969e-02 1.75539777e-02 4.98013020e-01 -2.28466108e-01\\n2.55658617e-03 1.17498092e-01 -1.93382338e-01 -5.84129319e-02\\n2.51751930e-01 -5.35873063e-02 5.77185676e-02 -1.34613261e-01\\n2.90714860e-01 -2.55263597e-01 -1.26494721e-01 2.92047728e-02\\n2.59835366e-02 5.07986128e-01 -2.43468513e-03 -3.82800400e-01\\n-8.08161199e-02 3.66509020e-01 7.45339468e-02 -1.45225316e-01\\n-1.83006600e-01 8.39193985e-02 -2.17867434e-01 2.39261657e-01\\n5.15408777e-02 -1.64540127e-01 -2.29773447e-01 -1.82121903e-01\\n-1.08271368e-01 2.98775941e-01 3.22215527e-01 1.09329663e-01\\n1.53602019e-01 -4.44152415e-01 -7.34024867e-02 7.91218802e-02\\n2.84286112e-01 3.97128284e-01 1.91652060e-01 -1.39215425e-01\\n-3.97816710e-02 2.69526422e-01 -1.74826443e-01 1.96339339e-01\\n-2.21781775e-01 8.22695866e-02 -5.58695555e-01 -2.56037623e-01\\n-1.59120634e-01 -3.90545487e-01 1.22377343e-01 3.42870682e-01\\n1.40801102e-01 -1.84223766e-03 1.89321861e-02 -4.57275093e-01\\n2.88402259e-01 6.42053410e-02 2.29534492e-01 8.58455673e-02\\n-1.84554607e-02 5.61042428e-01 1.62543394e-02 -1.79336697e-01\\n-1.31682813e-01 9.88753587e-02 -1.69198573e-01 -1.41539291e-01\\n1.27405729e-02 -3.71570319e-01 -1.26448467e-01 4.11238492e-01\\n8.17497522e-02 -2.77443200e-01 -7.41037875e-02 2.97010750e-01\\n-1.13847084e-01 -2.91001797e-01 -1.52642891e-01 1.53028831e-01\\n3.70776355e-01 1.10724024e-01 2.89724916e-01 -3.92672926e-01\\n-1.02335669e-01 -2.55021472e-02 -3.68471071e-02 4.27778333e-01\\n1.59778193e-01 -2.27624308e-02 -4.26833145e-02 -2.13100642e-01\\n4.61593091e-01 -1.84153840e-02 -7.85872042e-02 1.91462576e-01\\n6.75358698e-02 -1.53065979e-01 -4.50243682e-01 3.04173641e-02\\n6.63888529e-02 -2.39680350e-01 -2.20124647e-02 1.70551419e-01\\n1.39198795e-01 8.03344101e-02 -7.16826737e-01 -2.08054557e-01\\n-3.30649734e-01 -5.91741176e-03 2.47826595e-02 -5.19831538e-01\\n2.10495456e-03 -1.13316998e-01 -6.50403380e-01 3.30286503e-01\\n-1.60954162e-01 -1.30969658e-01 1.40842006e-01 3.89543511e-02\\n-2.80531913e-01 -3.93950529e-02 1.05912283e-01 2.49199778e-01\\n-2.90803313e-01 -1.24873683e-01 -4.07810062e-02 -1.01631951e+00\\n1.91796139e-01 4.11838070e-02 -9.21229124e-02 1.14617661e-01\\n-6.13707351e-03 -5.94015241e-01 9.94793624e-02 -3.29686642e-01\\n-2.61476696e-01 -1.23567693e-01 -2.25346312e-01 -3.79162490e-01\\n5.18245213e-02 9.82635468e-02 -1.31938979e-01 3.37846428e-01\\n-2.96242625e-01 4.77020830e-01 -1.43288046e-01 1.38059199e-01\\n5.30842654e-02 -2.63816446e-01 9.62098315e-02 -4.05801147e-01\\n-2.93627292e-01 -1.65735304e-01 -2.97372341e-01 -2.05642775e-01\\n-7.35597238e-02 -3.09970230e-01 -1.64156914e-01 2.66325884e-02\\n3.20716918e-01 1.47752553e-01 -1.89612404e-01 -2.52616256e-01\\n2.03697205e-01 -4.70825404e-01 2.58582145e-01 -1.30281612e-01\\n-1.42143101e-01 -1.20861411e-01 1.93868414e-01 6.79805428e-02\\n1.11656278e-01 -3.88162374e-01 2.20317066e-01 -3.91603768e-01\\n-2.92018712e-01 -1.03343338e-01 -2.65877764e-03 1.83103345e-02\\n3.24648619e-01 -4.34348047e-01 -4.57664728e-02 3.40545237e-01\\n1.66408002e-01 1.67666376e-01 2.70226002e-01 -1.14989400e-01\\n-9.81541798e-02 3.50530237e-01 -4.48177457e-01 1.50898606e-01\\n7.52198815e-01 1.41661942e-01 5.20799719e-02 2.50617087e-01\\n2.25755587e-01 2.14501858e-01 4.35126930e-01 1.04345866e-01\\n-1.01131074e-01 2.92828143e-01 2.62429267e-02 -4.61645782e-01\\n-7.12860152e-02 8.39600689e-04 -2.53942728e-01 -3.26342165e-01\\n5.91432989e-01 4.71831292e-01 -4.47428703e-01 -1.73880979e-01\\n-2.87123531e-01 -2.43999347e-01 5.16952462e-02 -5.39358482e-02\\n3.65191549e-02 -8.65401402e-02 4.94822294e-01 -1.00307070e-01\\n1.72979355e-01 5.26022196e-01 -1.37886599e-01 -2.93863803e-01\\n-7.97559917e-02 1.45789206e-01 -2.21098810e-02 5.04659414e-01\\n-1.87479019e-01 2.46961057e-01 1.47062510e-01 1.36397749e-01\\n-1.15569815e-01 3.75028281e-03 1.80923611e-01 1.17790774e-01\\n6.11785837e-02 8.44303742e-02 3.00855100e-01 3.56787562e-01\\n2.85775274e-01 3.76253217e-01 3.20327252e-01 1.50867611e-01\\n4.18718457e-01 5.19121706e-01 3.24094772e-01 9.17147323e-02\\n-1.01765350e-01 4.82655689e-03 1.78552255e-01 -2.58451011e-02\\n2.71547049e-01 3.67018402e-01 -1.10868737e-02 8.92138124e-01\\n3.87509882e-01 3.05710256e-01 6.43296957e-01 -5.97209752e-01\\n-4.10342485e-01 1.43775186e-02 3.83509666e-01 -3.93961608e-01\\n-2.63388604e-02 7.66617432e-02 -3.26835215e-01 1.79850996e-01\\n-4.87463355e-01 -2.09911868e-01 -5.33080846e-02 8.91814977e-02\\n1.38712702e-02 -8.63197818e-02 -2.45540172e-01 2.01887026e-01\\n-8.44345987e-02 -1.11882605e-01 -4.65583175e-01 -1.37784675e-01\\n-1.64606795e-01 -1.68378860e-01 1.46062756e-02 -9.51543823e-02\\n1.42295687e-02 -2.64233381e-01 -5.38926609e-02 6.24569505e-03\\n3.03685158e-01 -3.19231674e-02 -2.34521572e-02 -1.19935766e-01\\n2.13262051e-01 2.56157428e-01 6.11778259e-01 4.20768708e-02\\n1.34981886e-01 -1.90793008e-01 -1.83237538e-01 1.39544114e-01\\n1.32489577e-01 7.87343085e-02 3.68271470e-02 2.73792982e-01\\n-2.88671643e-01 -1.62073001e-01 2.16903105e-01 3.77520978e-01\\n-4.50663269e-01 9.90733430e-02 -9.30561125e-02 1.39128730e-01\\n1.12349756e-01 1.96363434e-01 -2.53986448e-01 4.36829291e-02\\n-1.68973282e-01 -4.76932734e-01 3.08549970e-01 -6.22392334e-02\\n-1.11431010e-01 5.04356362e-02 2.09884092e-01 1.28027290e-01\\n-2.92463154e-01 2.63274834e-02 -3.94295789e-02 9.88065451e-02\\n3.44387703e-02 3.32657993e-01 -2.48527974e-01 -2.94403315e-01\\n-2.20518678e-01 1.67468518e-01 -1.14233404e-01 1.34271413e-01\\n6.58756634e-03 3.51202190e-01 8.29012990e-02 6.29732460e-02\\n4.24099088e-01 -5.92073007e-03 -2.75072098e-01 -2.10236654e-01\\n-2.38847494e-01 -2.27773279e-01 -4.84563634e-02 -1.15021616e-01\\n2.87293017e-01 -3.59749645e-01 -1.00651443e-01 -8.34365636e-02\\n-1.59396157e-01 -3.40648502e-01 6.11006729e-02 -7.27929696e-02]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team Application Framework - The Application Framework Team is mainly responsible for the software framework used in the Avaloq Banking Suite (ABS) for the management of static data and technical business process execution. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Our frameworks process several millions of transactions (e.g. payments) each day and maintain all the static data of our customers. Your mission Drive the future architecture of Avaloq’s search engine Drive and enhance the core frameworks of Avaloq’s current and future products Understand the architectural big picture, support and consult our stakeholders – customers as well as internal business teams Constant self-development What you need University degree in Computer Science (ETH/University) or equivalent experience Solid understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Understanding of relational databases Strong communication abilities and customer-centric Proficient English language skills You will get extra points for the following Experience in PL/SQL and Java/JEE Basic understanding of framework development Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zürich Don’t be shy – apply! Avaloq Evolution AG Alina Tauscher, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Management\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Tooling\", \"Computer Science\", \"Search Engine Submission\", \"Analytics\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Wealth Management\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Executable\", \"Software Engineering\", \"Static Data\", \"Agile Methodology\", \"Business Process\", \"Eclipse Process Framework\", \"Library For WWW In Perl\", \"Banking\", \"Relational Databases\", \"SQL And Java (SQLJ)\", \"Software Modernization\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " 'languages': \"['English', 'Nuosu']\"},\n", + " {'company_id': '14',\n", + " 'job_title': 'computer vision researcher/engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.17035726e-01 2.98950672e-01 4.69268471e-01 -8.73681381e-02\\n5.13036072e-01 -2.32685223e-01 -9.23216119e-02 4.52893853e-01\\n-1.51256517e-01 -3.85924488e-01 -1.29038885e-01 -2.83279926e-01\\n-1.48410395e-01 2.11731523e-01 1.44315660e-01 5.19022346e-01\\n2.31461331e-01 5.25986701e-02 -4.14509892e-01 4.25563246e-01\\n2.55281657e-01 -1.20303407e-01 -9.82607622e-03 6.96228087e-01\\n4.30570960e-01 -7.75224641e-02 1.63752076e-04 2.52568841e-01\\n-2.30209127e-01 -2.83672243e-01 4.30388540e-01 4.22238410e-02\\n-4.68100235e-02 -2.93774396e-01 2.47980967e-01 1.41149491e-01\\n-1.38741374e-01 1.42635778e-02 -7.47205615e-02 2.06415877e-01\\n-4.52843755e-01 -2.24439025e-01 6.93554580e-02 6.55850470e-02\\n-2.22362086e-01 -3.77025455e-01 7.77795464e-02 -1.31554663e-01\\n1.09198682e-01 2.04573702e-02 -4.84884441e-01 4.26645041e-01\\n-1.71004355e-01 -2.04200670e-01 2.15091631e-01 7.36515939e-01\\n-1.19348221e-01 -3.94073159e-01 -4.33158308e-01 -3.06488276e-01\\n6.11925498e-02 -6.40015304e-02 -1.07702546e-01 -2.96205521e-01\\n3.42325360e-01 1.88962460e-01 4.67698984e-02 2.44885057e-01\\n-8.20312381e-01 -3.87265794e-02 -2.01706007e-01 4.81296293e-02\\n-2.59279490e-01 -4.51870970e-02 -2.49911875e-01 -4.29616049e-02\\n2.61862669e-02 3.28220397e-01 -2.75706709e-03 -1.13586254e-01\\n-1.00859813e-01 2.41348118e-01 -1.68194652e-01 2.56577075e-01\\n2.52244443e-01 1.02597348e-01 5.05177006e-02 1.80174783e-01\\n-3.43042403e-01 4.66162294e-01 1.04678467e-01 -3.59962553e-01\\n2.50158787e-01 1.63952008e-01 5.99860132e-01 -3.50063369e-02\\n1.71416849e-01 1.54624537e-01 -2.67824054e-01 2.94125438e-01\\n2.07114294e-01 -3.15089941e-01 4.80773933e-02 7.66728446e-02\\n-1.03797056e-01 -9.48329642e-03 -2.62817871e-02 4.90246713e-01\\n-2.91256428e-01 4.74763781e-01 -4.97973477e-03 -2.51572549e-01\\n-1.20243795e-01 -6.41939759e-01 -1.61465555e-01 -3.94092500e-02\\n1.99101400e-02 2.41597831e-01 1.36434957e-01 1.76024035e-01\\n8.19128379e-02 3.46283941e-03 2.54528016e-01 1.07943833e+00\\n-4.74978276e-02 2.19425991e-01 -4.88763899e-02 3.17451477e-01\\n1.09287001e-01 -2.86467463e-01 2.79915065e-01 2.94623494e-01\\n9.02740806e-02 -1.03666246e-01 -2.18871728e-01 2.78379560e-01\\n-1.23671331e-01 -2.19239980e-01 -4.42984939e-01 2.40879551e-01\\n-1.01094805e-01 -5.26074290e-01 6.60579205e-01 6.65918812e-02\\n2.43507117e-01 -5.06290048e-02 -6.31391704e-02 -6.03117421e-02\\n-1.85745612e-01 4.29179281e-01 7.98044950e-02 1.25700444e-01\\n-3.91211689e-01 -2.43832901e-01 -1.88360050e-01 3.13123405e-01\\n-3.10419858e-01 1.55270413e-01 -2.15107098e-01 -9.91766900e-02\\n3.74924511e-01 -4.61854860e-02 -3.30940843e-01 2.53863722e-01\\n-8.42722133e-02 -1.06144980e-01 2.15888750e-02 3.25099051e-01\\n-1.53583959e-01 3.94235909e-01 -8.42127353e-02 -5.27715646e-02\\n6.07145429e-01 -1.24179669e-01 -9.34389886e-03 -2.17889622e-02\\n2.68143266e-01 -2.16556843e-02 2.08569229e-01 9.56408866e-03\\n-6.15173399e-01 3.03072274e-01 -9.67033301e-03 -1.28808171e-01\\n-1.89812426e-02 -1.50770172e-01 4.80305612e-01 -3.94290954e-01\\n-1.03656620e-01 -1.29369423e-01 -3.41768146e-01 -2.32338861e-01\\n-4.65267986e-01 1.07860398e-02 4.69927669e-01 -4.10198182e-01\\n-1.28028333e-01 1.11130029e-01 -5.40956616e-01 1.48593917e-01\\n2.22055227e-01 1.70908511e-01 5.23780510e-02 2.03228280e-01\\n-2.62902051e-01 -6.49345756e-01 2.99616326e-02 -4.17868018e-01\\n-2.92050630e-01 2.26886749e-01 -2.56252736e-01 3.12439144e-01\\n5.93406036e-02 1.57478601e-01 -1.19805880e-01 1.27759382e-01\\n-3.69976193e-01 -3.95558262e-03 1.56628564e-01 8.54282230e-02\\n2.45059311e-01 1.44087344e-01 -5.17318785e-01 4.20909405e-01\\n-1.69872984e-01 6.15544438e-01 1.32037446e-01 -7.80290425e-01\\n5.38011491e-01 2.18913257e-01 2.30872016e-02 -3.81047100e-01\\n6.64608538e-01 -2.96842813e-01 -8.71951208e-02 2.43682057e-01\\n-2.97810018e-01 -3.10044587e-01 3.14329803e-01 -1.78861514e-01\\n-4.45284724e-01 4.51129287e-01 2.24437565e-01 9.74128544e-02\\n3.34185094e-01 -2.74792314e-01 -9.54287946e-02 1.17172360e-01\\n-7.91442096e-02 -1.67034566e-01 -3.99761945e-01 -6.12472594e-02\\n-1.19446352e-01 -5.21925926e-01 -1.49382398e-01 -4.49620903e-01\\n-3.03322017e-01 -4.63432401e-01 -2.10357919e-01 3.39501858e-01\\n1.59859002e-01 2.23609418e-01 2.00472966e-01 -1.04117736e-01\\n-2.74799496e-01 -6.59818649e-01 1.66699700e-02 1.81827545e-01\\n4.61220860e-01 2.76945502e-01 -8.31258073e-02 -9.25879478e-02\\n9.44696367e-02 4.88944143e-01 -3.28413635e-01 -4.01173562e-01\\n1.97374448e-01 2.82761097e-01 1.72042437e-02 -7.39972815e-02\\n1.01915374e-01 4.48483855e-01 -3.16658735e-01 1.60660431e-01\\n-2.44935796e-01 -2.09203623e-02 2.55809188e-01 1.38096631e-01\\n-3.23692560e-01 -3.53398919e-01 -1.27130419e-01 2.08120540e-01\\n-5.86071849e-01 -2.63090163e-01 4.86389399e-01 1.83118522e-01\\n1.36989042e-01 1.27846720e-02 2.20300615e-01 -2.11982086e-01\\n-2.08984479e-01 -2.33670548e-01 9.24206227e-02 1.94163695e-01\\n-1.29334524e-01 1.83267817e-01 -2.30460256e-01 -6.19110167e-01\\n-3.11664462e+00 -8.05686489e-02 2.40369365e-01 -2.57464916e-01\\n1.99845284e-01 -1.67236015e-01 3.68043706e-02 5.56031652e-02\\n-2.45701179e-01 -4.36835177e-02 -1.75640821e-01 -2.28175640e-01\\n1.28585324e-01 4.19824183e-01 2.76018262e-01 2.79499978e-01\\n2.29533911e-01 -3.21284056e-01 -9.32058990e-02 3.88967812e-01\\n-1.05808645e-01 -6.90544009e-01 1.57541066e-01 -1.43830970e-01\\n2.53037781e-01 3.62953514e-01 -3.53361368e-01 -1.16188690e-01\\n-3.64477694e-01 -2.54562140e-01 1.25512600e-01 -2.35596702e-01\\n-2.10525855e-01 3.40823531e-01 2.59610951e-01 9.47993919e-02\\n1.01299398e-01 -2.90804386e-01 2.80938856e-02 -2.79148698e-01\\n4.27221134e-02 -7.32970715e-01 -1.23153806e-01 -1.70238465e-01\\n8.24480593e-01 -3.50483388e-01 1.98953375e-01 6.31885976e-02\\n2.66721308e-01 1.62735790e-01 -5.41404746e-02 -6.59445301e-02\\n-1.78531557e-01 -2.02568889e-01 -1.90270506e-02 -1.12433217e-01\\n5.36185861e-01 6.71329439e-01 -3.21810246e-01 -1.75951824e-01\\n-2.98887957e-02 -3.93124044e-01 -4.28649217e-01 -3.74091953e-01\\n-1.99111849e-01 -1.77761644e-01 -6.82059467e-01 -5.09291708e-01\\n-7.90584087e-02 -1.32311314e-01 -2.54362989e-02 4.18400735e-01\\n-4.89627481e-01 -4.16765243e-01 -1.30961195e-01 -3.26900691e-01\\n1.95419937e-01 -1.70527667e-01 4.63421494e-02 -1.91731706e-01\\n-2.90601790e-01 -6.19742751e-01 5.26644811e-02 -1.45708630e-02\\n-2.85831481e-01 -2.95991361e-01 -2.96030473e-02 -4.06513661e-01\\n-3.60997677e-01 -5.78343451e-01 4.20680821e-01 1.17324822e-01\\n2.53663510e-01 1.04385965e-01 2.01841578e-01 7.37298951e-02\\n4.07099336e-01 -2.18945354e-01 2.16421992e-01 -3.85481030e-01\\n2.07634687e-01 -8.27214643e-02 6.99065685e-01 -3.10044557e-01\\n4.16436829e-02 1.23935632e-01 -3.66222590e-01 -1.06458910e-01\\n3.23459417e-01 4.12419997e-02 2.66173277e-02 -3.91757667e-01\\n2.73531407e-01 -2.50116378e-01 -2.88912386e-01 9.36420783e-02\\n1.11825339e-01 6.94923341e-01 1.44878894e-01 -3.87016922e-01\\n-3.02916229e-01 4.62186098e-01 -1.78337350e-01 -1.24578826e-01\\n-1.62430316e-01 1.35538504e-01 -1.65623412e-01 2.25651890e-01\\n-3.40400338e-02 -1.27599478e-01 -2.11725861e-01 7.47528151e-02\\n-1.09188654e-01 4.49712068e-01 2.95329064e-01 -1.79079473e-02\\n-3.98830883e-02 -2.07589403e-01 -6.11220952e-03 2.19320729e-01\\n1.65379465e-01 2.36312494e-01 1.47323579e-01 -3.26535821e-01\\n2.31359038e-03 4.72231418e-01 -1.08700193e-01 1.65043876e-01\\n-8.77658129e-02 2.39165369e-02 -6.15838110e-01 -2.81858116e-01\\n-2.73304433e-01 -3.98407549e-01 1.80396557e-01 3.29735905e-01\\n2.34193671e-02 -5.51375486e-02 1.15594201e-01 -5.31719387e-01\\n3.51446956e-01 2.19529286e-01 2.89943606e-01 2.12635726e-01\\n-1.27256781e-01 5.19830585e-01 3.24322726e-03 -1.56378657e-01\\n-1.17015727e-01 1.15028493e-01 -2.46449217e-01 -2.13438272e-01\\n4.58797328e-02 -5.15485406e-01 -1.68101877e-01 3.96053702e-01\\n8.75024199e-02 -3.05238426e-01 -2.47520342e-01 2.48687923e-01\\n1.08888954e-01 -2.89398283e-01 -1.31661132e-01 -3.11982073e-02\\n3.66594195e-01 1.37463450e-01 2.14672402e-01 -5.54337919e-01\\n8.16373974e-02 -6.06036074e-02 -8.55693594e-02 5.26099205e-01\\n-1.55361697e-01 1.89293921e-02 -2.65763432e-01 -6.03662804e-02\\n4.94714826e-01 4.60771564e-03 1.00939848e-01 -1.33585691e-01\\n1.76304672e-02 -2.39504904e-01 -4.30469990e-01 1.48568928e-01\\n2.57115886e-02 -1.58681408e-01 -2.69363169e-02 1.01597466e-01\\n-1.56178856e-02 1.10882610e-01 -5.66456199e-01 -2.54446507e-01\\n-3.27419221e-01 -1.65805638e-01 4.71970998e-02 -4.02482361e-01\\n2.33576968e-02 -7.96365319e-04 -3.84800255e-01 2.05773667e-01\\n-1.38961568e-01 1.62390724e-01 2.97419995e-01 6.15580427e-03\\n-3.07163537e-01 -1.99907199e-01 1.97732031e-01 1.45531356e-01\\n-2.87392557e-01 -1.60337299e-01 -3.12978216e-02 -8.58383000e-01\\n1.22250281e-01 -5.62848784e-02 -1.40660793e-01 1.50318161e-01\\n-4.66634743e-02 -8.30350101e-01 -5.12366975e-03 -3.97481889e-01\\n7.47966208e-03 1.12342983e-02 -1.86315775e-01 -3.33870739e-01\\n2.03316540e-01 -6.97739720e-02 -2.82185525e-01 4.02151942e-01\\n-4.75812972e-01 2.96179771e-01 8.45623203e-03 3.39408368e-02\\n8.93906225e-03 -3.35583448e-01 1.17936119e-01 -4.32155669e-01\\n-3.21212411e-01 -1.03260376e-01 -2.06887782e-01 -1.16271682e-01\\n5.66127244e-03 -3.10035229e-01 -1.70412242e-01 1.35172933e-01\\n2.43972912e-01 1.57793611e-03 -7.74960741e-02 -2.41326675e-01\\n7.23817274e-02 -3.22606415e-01 2.72113848e-02 -1.32495180e-01\\n1.55225638e-02 -1.28486738e-01 8.37377086e-02 9.73379463e-02\\n1.17826730e-01 -4.44315046e-01 5.73109567e-01 -3.93524796e-01\\n-3.81249577e-01 2.63941567e-02 9.90944281e-02 -1.55426800e-01\\n4.97506231e-01 -4.34421390e-01 -3.75014804e-02 4.21753705e-01\\n-3.80420010e-03 7.13804811e-02 2.42156461e-01 -9.56681222e-02\\n-1.36319533e-01 1.16548315e-01 -2.54056096e-01 4.72206660e-02\\n8.50503027e-01 2.42869914e-01 2.20126867e-01 6.52963221e-02\\n2.96079069e-02 3.45052540e-01 3.37082207e-01 1.20170182e-02\\n-1.52402250e-02 1.40239865e-01 1.83024973e-01 -4.96655315e-01\\n-5.33501431e-02 -6.94211349e-02 -2.69478858e-01 -2.15938210e-01\\n6.06432021e-01 4.79145616e-01 -3.31203550e-01 -2.85751760e-01\\n4.18289453e-02 -2.83467680e-01 1.81734249e-01 -3.33805382e-02\\n-7.30824703e-03 -5.08453995e-02 5.55789828e-01 -2.62170862e-02\\n4.46782224e-02 5.25467277e-01 -3.12697500e-01 -3.10060531e-01\\n-1.29906146e-03 1.90938666e-01 -2.37996690e-02 3.50738943e-01\\n-1.88606516e-01 4.71172512e-01 -8.88439640e-02 3.75756659e-02\\n-6.07598461e-02 4.88347262e-02 2.34591424e-01 -5.57595529e-02\\n1.27587482e-01 2.25828946e-01 4.35720682e-01 6.12502158e-01\\n2.62493908e-01 5.41456521e-01 4.09565628e-01 2.96458881e-02\\n4.89281863e-01 6.08497739e-01 4.43592668e-01 1.79996565e-01\\n-3.35513093e-02 5.47011830e-02 1.00962996e-01 8.66869166e-02\\n5.50501227e-01 2.92941809e-01 1.17329955e-01 8.56596887e-01\\n4.33871657e-01 1.68664515e-01 6.44136250e-01 -6.90316856e-01\\n-4.56193000e-01 -7.34282052e-03 4.86049205e-01 -2.90933251e-01\\n-1.63291857e-01 8.41208026e-02 -1.85453236e-01 2.05263868e-01\\n-5.16638339e-01 -2.34654471e-01 -9.37795117e-02 1.81813508e-01\\n-1.97025724e-02 -2.60343519e-03 -1.31245568e-01 -2.34506503e-02\\n-1.80504769e-02 -8.03187788e-02 -5.10931611e-01 -1.85944736e-01\\n-3.30880016e-01 -3.24859589e-01 -7.22184703e-02 2.94357762e-02\\n-1.23180218e-01 -3.71969044e-01 -2.60714650e-01 8.44898596e-02\\n3.46218437e-01 -2.25244448e-01 -1.14703789e-01 -1.01280630e-01\\n1.00308761e-01 2.59002388e-01 6.15002155e-01 -3.57006229e-02\\n3.19671421e-03 -1.90056890e-01 -1.52256459e-01 5.67096099e-02\\n4.82882261e-02 6.62369654e-02 1.12943307e-01 4.19781297e-01\\n-4.79844213e-01 -9.58947092e-02 -8.10999796e-02 3.99318367e-01\\n-4.69480544e-01 -2.62536794e-01 -6.26483175e-04 1.70049429e-01\\n3.46633680e-02 8.46292675e-02 -1.98443308e-01 -4.66455780e-02\\n-1.45482197e-01 -5.42486072e-01 3.24805766e-01 -2.59422585e-02\\n-1.50893196e-01 8.07226170e-03 3.42955440e-01 1.82188049e-01\\n-3.40605043e-02 -4.14949097e-02 1.28683997e-02 3.83335680e-01\\n-1.65945645e-02 2.84696907e-01 -1.41138136e-01 -3.75340104e-01\\n-3.48357618e-01 2.42437959e-01 -1.62165910e-01 1.70202568e-01\\n-5.29040322e-02 1.96052790e-01 2.09912583e-02 1.68673500e-01\\n3.43007058e-01 -5.46199270e-02 -1.44290358e-01 -1.23735689e-01\\n-2.22008958e-01 -4.05785382e-01 -1.06713001e-03 -3.23196501e-02\\n1.27133757e-01 -3.18237513e-01 -6.69296011e-02 -1.51215389e-01\\n-1.03771403e-01 -2.42908493e-01 -2.10208684e-01 3.01287975e-02]]',\n", + " 'job_description': 'Your Responsibilities: You will be working on the core computer vision algorithms, focusing on cutting edge problems. You have extensive experience in Computer Vision with specialization in at least one of the following areas: Dense Mapping Design and implement advanced algorithms for reconstructing dense 3D models of large-scale indoor environments using depth sensors. 3D Scene Understanding Design and implement 3D scene segmentation algorithms based on depth, motion or texture data. Machine learning Detecting known objects and use priors to complete un-observed parts of the object. Your Qualifications:Expert knowledge in at least one area listed below: Fluent in C/C++ (programming and debugging) Experience working with OpenCV Knowledge of parallel computing, OpenCL, GPGPU is a plus Knowledge software optimization and embedded programming is a plus Your Education: MS in Computer Science or Electrical Engineering Ph.D. is preferred What we offer: Nice environment to deploy your enthusiasm for computer vision challenges and cutting-edge technologies Highly skilled team of researchers, scientists and engineers Flexible working hours Should you have any further questions, feel free to reach out to: hr@astrivis.com',\n", + " 'soft_skills': '[\"Research\", \"Enthusiasm\"]',\n", + " 'hard_skills': '[\"Nice (Unix Utility)\", \"Programming (Music)\", \"pH Meters\", \"Computer Science\", \"Texturing\", \"OpenCV\", \"Machine Learning\", \"Scale (Map)\", \"Computer Vision\", \"Component Object Model (COM)\", \"Knowledge Management Software\", \"Optimization Software\", \"Agile Edge Technologies\", \"OpenCL\", \"Embedding\", \"C (Programming Language)\", \"Electrical Engineering\", \"3D Modeling\", \"Parallel Computing\", \"Algorithms\", \"Mapping\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Software Plus Services\", \"Debugging\"]',\n", + " 'languages': \"['English', 'Chuvash', 'Georgian', 'Azerbaijani']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'sw engineer (agile mainframe ) m/f',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.26636463e-01 2.10628957e-01 2.84465164e-01 6.37625158e-02\\n5.39467454e-01 -1.21392220e-01 1.15199395e-01 3.36812019e-01\\n-5.75976707e-02 -2.83170789e-01 -9.42050070e-02 -9.40503404e-02\\n-1.01417877e-01 1.34217784e-01 7.30456933e-02 3.74632955e-01\\n1.59113988e-01 9.21894833e-02 3.80891971e-02 3.94355148e-01\\n8.58565569e-02 -4.12746193e-03 -1.67904630e-01 5.46193182e-01\\n3.73073459e-01 9.93920341e-02 -1.68208197e-01 5.40298559e-02\\n-2.41515607e-01 -2.29340911e-01 2.32184663e-01 8.98251683e-02\\n-1.37367249e-01 -3.47499758e-01 -9.35301185e-03 9.20443088e-02\\n-2.42355615e-01 -3.14567164e-02 -3.79332788e-02 2.75066774e-02\\n-3.14715564e-01 -2.59602875e-01 1.46165073e-01 5.58384508e-02\\n-1.64136633e-01 -8.45874995e-02 4.93196994e-02 -1.23905577e-01\\n-5.35298605e-03 1.10124357e-01 -7.59120762e-01 3.96511853e-01\\n-2.83883251e-02 -2.08601192e-01 1.43130943e-01 5.19782245e-01\\n-1.29480559e-05 -5.19415021e-01 -3.98740977e-01 -3.91187429e-01\\n7.99302235e-02 -1.19398490e-01 1.23875648e-01 -2.04913288e-01\\n4.87247437e-01 -3.59987020e-02 1.44062415e-01 4.29173350e-01\\n-8.26709390e-01 6.41477481e-02 -3.16131204e-01 -1.57567561e-02\\n-3.49309742e-01 8.44015256e-02 -2.18329325e-01 -7.70255225e-03\\n-7.39953294e-02 2.97399670e-01 5.82341179e-02 2.05062330e-01\\n-1.58152506e-01 2.63054073e-01 -7.20878318e-02 1.06743373e-01\\n3.79212499e-01 2.27894355e-02 2.25570530e-01 3.19952697e-01\\n-4.09716338e-01 5.18756509e-01 1.11034431e-01 -1.77088246e-01\\n2.16281056e-01 1.45551071e-01 4.65498418e-01 1.42365143e-01\\n1.44715652e-01 1.80644780e-01 -8.20263401e-02 1.85743809e-01\\n1.17970474e-01 -4.24350441e-01 -1.26853868e-01 -1.02573439e-01\\n-1.02459803e-01 -1.53654009e-01 2.90647130e-02 5.64251803e-02\\n-2.48591214e-01 4.20353234e-01 2.81242788e-01 -1.60383865e-01\\n-3.72704268e-02 -3.36907268e-01 -1.37168646e-01 5.34266457e-02\\n-1.20454237e-01 1.32194564e-01 4.01251674e-01 1.72609076e-01\\n2.19232351e-01 2.04841331e-01 1.79426774e-01 9.25525725e-01\\n1.80438012e-02 2.01930195e-01 -1.43018931e-01 2.81188220e-01\\n2.54375815e-01 -4.36652869e-01 1.37831137e-01 3.50209057e-01\\n8.89024511e-02 -1.40290394e-01 -1.39997080e-01 1.91146612e-01\\n-2.49176860e-01 -5.19372411e-02 -3.74173254e-01 9.16089043e-02\\n-1.52514443e-01 -5.42030036e-01 4.55138981e-01 8.92304778e-02\\n4.38752621e-01 1.90353543e-02 1.31884173e-01 -7.81891197e-02\\n-1.59114555e-01 4.40893203e-01 -9.53952596e-02 3.04185927e-01\\n-2.38668233e-01 -2.72479773e-01 -1.76859409e-01 3.32989484e-01\\n-1.05221309e-01 1.64238021e-01 -5.42511642e-02 -1.31401002e-01\\n2.87922651e-01 5.68413250e-02 -3.13029170e-01 7.08925277e-02\\n-1.34358525e-01 -3.02401572e-01 -2.65379548e-02 3.34239483e-01\\n1.27080649e-01 1.30934045e-01 1.70398373e-02 -3.26533318e-01\\n5.93673646e-01 9.44729075e-02 1.96764901e-01 -1.72478259e-01\\n3.72272462e-01 -2.49938056e-01 2.96299487e-01 1.07927948e-01\\n-6.64656281e-01 4.02092278e-01 1.47711471e-01 -2.02493072e-01\\n-2.35233232e-02 -1.40756384e-01 3.21386188e-01 -5.09317756e-01\\n-3.91785763e-02 -9.16757807e-02 -4.23266739e-01 -4.13239837e-01\\n-2.09319562e-01 1.08828619e-01 5.74527740e-01 -3.51246417e-01\\n-1.06323235e-01 2.90360637e-02 -4.30822611e-01 -1.65805876e-01\\n3.29118013e-01 -5.65944053e-02 4.34570089e-02 1.34839952e-01\\n-1.31234184e-01 -4.14747834e-01 -6.97320420e-03 -5.39081931e-01\\n-6.13172770e-01 -1.21600904e-01 -3.44848812e-01 2.12236360e-01\\n1.45456553e-01 -5.31010479e-02 -1.56100288e-01 6.86246008e-02\\n-2.86325276e-01 -8.50514397e-02 7.05847666e-02 -7.61720294e-04\\n2.59246230e-01 -7.64292926e-02 -3.34727615e-01 4.94935423e-01\\n-2.11657420e-01 6.08865976e-01 1.35274231e-01 -8.56843650e-01\\n5.46836376e-01 3.75382811e-01 4.61903075e-03 -4.03340667e-01\\n4.17271405e-01 -4.22482729e-01 -4.51971591e-02 1.25062346e-01\\n-1.42712519e-01 -2.96140760e-01 2.12374896e-01 -6.66801855e-02\\n-3.57976347e-01 5.88667572e-01 1.07419826e-01 1.27955645e-01\\n3.63146335e-01 -1.89560741e-01 -1.21355966e-01 9.28086787e-02\\n-8.11144039e-02 -1.76452875e-01 -2.62960255e-01 -8.66766274e-02\\n-6.93735331e-02 -4.23796684e-01 -1.33136272e-01 -3.98353755e-01\\n-4.12718467e-02 -3.98672402e-01 -4.52825338e-01 4.90612328e-01\\n7.59674385e-02 1.32226944e-01 -8.62541795e-02 -4.33090925e-02\\n3.38962162e-03 -7.40985990e-01 5.02257347e-02 1.29770249e-01\\n5.01134753e-01 3.42237830e-01 1.46174356e-01 -2.11917341e-01\\n2.81733219e-02 4.21723574e-01 -2.94162363e-01 -4.75465745e-01\\n4.91073318e-02 1.45042956e-01 -1.82376161e-01 -1.98923826e-01\\n7.47149885e-02 3.75893414e-01 -1.43509880e-01 1.00021586e-01\\n-1.26340002e-01 -2.51167957e-02 2.60324895e-01 -1.20444164e-01\\n-4.75775123e-01 -2.20304772e-01 -2.44618338e-02 3.15126181e-01\\n-3.94841820e-01 -2.67083287e-01 5.38591921e-01 1.90512076e-01\\n1.94824487e-01 1.42998427e-01 1.81478173e-01 -1.80936813e-01\\n-1.22266807e-01 -3.06919008e-01 3.96946631e-02 5.56218103e-02\\n2.64507104e-02 5.97114563e-02 -1.93702325e-01 -6.56499624e-01\\n-3.70092630e+00 -1.61576048e-01 -1.56681798e-02 -2.59254456e-01\\n2.99491376e-01 -8.34698454e-02 1.09748214e-01 -7.75774717e-02\\n-3.62621784e-01 1.68511733e-01 -2.12015554e-01 1.90964714e-02\\n-4.36212271e-02 1.81211740e-01 9.10189524e-02 1.78071558e-01\\n1.08741164e-01 -3.10175508e-01 -1.22504294e-01 3.01203907e-01\\n-1.70259550e-01 -5.61941922e-01 2.09651254e-02 -5.04408851e-02\\n2.28939712e-01 3.43595922e-01 -2.55892694e-01 -1.17712617e-01\\n-2.12170899e-01 -2.30776757e-01 -5.10789342e-02 -1.40879035e-01\\n-1.20904803e-01 3.25516939e-01 1.01262808e-01 -9.84317735e-02\\n2.13429183e-02 -2.94095129e-01 2.91337799e-02 -4.31746542e-01\\n-1.00104652e-01 -5.01268983e-01 5.83399720e-02 -1.61758557e-01\\n6.47356987e-01 -2.72547066e-01 2.29133531e-01 1.47692531e-01\\n1.97548434e-01 1.24217175e-01 -4.21963036e-02 -7.39524432e-04\\n-2.71803409e-01 -3.82305503e-01 -1.56825632e-01 -2.10828528e-01\\n5.81800640e-01 3.44996393e-01 -2.18962505e-01 3.57047422e-03\\n1.77392453e-01 -3.68026167e-01 -3.32788408e-01 -5.31613231e-01\\n-1.62289307e-01 -2.74633765e-01 -6.07501686e-01 -3.22980255e-01\\n-1.22333713e-01 -3.31974141e-02 -1.05635703e-01 6.09405756e-01\\n-2.62182415e-01 -5.04088879e-01 4.60765325e-02 -5.88038266e-01\\n8.10727403e-02 -1.24908671e-01 1.17259972e-01 1.25569617e-03\\n-4.17048842e-01 -4.64435965e-01 8.78396556e-02 -9.69971344e-03\\n-1.55926019e-01 -7.08667338e-02 1.21562243e-01 -6.78330287e-02\\n-3.51924628e-01 -2.57181853e-01 5.06426334e-01 6.61334097e-02\\n3.95965546e-01 1.13558471e-01 2.38863334e-01 2.00001761e-01\\n3.39263082e-01 -1.03198223e-01 2.54085641e-02 -5.10994256e-01\\n5.30638210e-02 1.51684433e-02 4.72679406e-01 -2.07475722e-01\\n2.57527595e-03 1.28750324e-01 -3.06348264e-01 -1.58437222e-01\\n4.20669198e-01 8.26357380e-02 1.64137959e-01 -1.31204233e-01\\n4.24859136e-01 -3.74789000e-01 -2.60734975e-01 2.05122873e-01\\n-2.81315856e-03 7.75256157e-01 2.44286552e-01 -2.93217450e-01\\n-2.59380281e-01 4.66147840e-01 -2.27562025e-01 -1.16340086e-01\\n-1.38225006e-02 1.06701136e-01 -8.08269829e-02 1.04684032e-01\\n-4.42157723e-02 -2.50644088e-01 -2.42989421e-01 -1.06523260e-01\\n2.03589466e-03 1.21185377e-01 1.12522759e-01 -1.89300328e-02\\n-1.96033075e-01 -2.58265972e-01 -2.13886186e-01 1.26292169e-01\\n3.19900036e-01 2.84289181e-01 1.65915743e-01 -2.33583033e-01\\n3.77939753e-02 1.56703174e-01 -1.30236045e-01 1.52125970e-01\\n-1.87049493e-01 1.50623307e-01 -3.88451397e-01 -2.73037314e-01\\n-1.75591573e-01 -3.19873273e-01 3.71986069e-02 2.58242071e-01\\n8.92357901e-02 -1.72977038e-02 6.17853962e-02 -5.80782712e-01\\n4.16706204e-01 1.05786202e-02 2.26461008e-01 1.12084813e-01\\n1.74365435e-02 3.40805590e-01 3.96405458e-02 -8.64335001e-02\\n-3.53167295e-01 1.17114745e-01 -6.39619604e-02 -1.99290991e-01\\n1.14261724e-01 -4.05909926e-01 -3.05467471e-02 2.33153313e-01\\n1.58405557e-01 -1.44701540e-01 -1.90584511e-01 2.86917359e-01\\n1.02378443e-01 -3.45362931e-01 -2.25436553e-01 -1.84043497e-01\\n1.64277479e-01 2.38892790e-02 2.02500194e-01 -3.36728185e-01\\n4.44756337e-02 9.54504982e-02 -8.68483633e-02 3.41115624e-01\\n2.08435971e-02 -6.68950155e-02 -5.21614589e-02 -2.19686791e-01\\n3.94329101e-01 -3.24801356e-02 -2.20381524e-02 -1.81708947e-01\\n1.65668622e-01 -2.56337702e-01 -5.79712808e-01 -8.96074697e-02\\n-5.33371754e-02 -2.12128818e-01 1.77704185e-01 1.45193085e-01\\n1.18491857e-03 1.75662383e-01 -4.76461977e-01 -2.79815435e-01\\n-3.99352849e-01 -1.82607144e-01 4.35646484e-03 -3.21978122e-01\\n9.21169892e-02 2.77992133e-02 -5.14892220e-01 1.31006062e-01\\n-3.93086582e-01 -4.63564359e-02 2.40267459e-02 2.97676455e-02\\n-4.18975025e-01 1.00628417e-02 9.35334116e-02 8.95410851e-02\\n-3.71560872e-01 -1.90971509e-01 7.47251287e-02 -7.22431600e-01\\n2.29809016e-01 1.52345479e-01 -2.99270507e-02 -4.89394441e-02\\n2.40301080e-02 -5.03880918e-01 2.46576101e-01 -3.53451878e-01\\n1.05643146e-01 -2.94224796e-04 -2.00207949e-01 -3.02336842e-01\\n1.11205854e-01 -1.94624558e-01 -3.00236583e-01 3.77448291e-01\\n-3.19098085e-01 4.67591435e-01 1.47342920e-01 -5.85888475e-02\\n-6.20756149e-02 -2.23317042e-01 1.60522729e-01 -3.57133895e-01\\n-4.22729671e-01 -1.13118291e-01 -3.91600251e-01 -1.09329261e-01\\n-1.67766809e-02 -2.30721906e-01 -1.07825160e-01 4.16142493e-02\\n2.99777567e-01 2.07700774e-01 -1.35300681e-01 -2.16852143e-01\\n1.13270558e-01 -4.34936911e-01 5.04793460e-03 -3.16317916e-01\\n-4.40897979e-02 -9.51865092e-02 1.97396651e-01 -1.59780785e-01\\n1.07489228e-01 -1.74074963e-01 3.79245073e-01 -2.53285855e-01\\n-2.11277202e-01 -1.72474571e-02 1.94452703e-01 -5.20351203e-03\\n2.19588071e-01 -5.60331643e-01 -1.41242445e-01 2.32945606e-01\\n1.11944437e-01 -3.68158780e-02 2.55304664e-01 5.58054969e-02\\n8.40046257e-02 3.05106014e-01 -5.28442562e-01 8.60770121e-02\\n5.67564309e-01 2.29052499e-01 -6.12851121e-02 1.98412493e-01\\n1.48041369e-02 5.97751558e-01 4.93765384e-01 6.74123839e-02\\n-2.27687787e-02 2.82213420e-01 1.51510999e-01 -6.45674169e-01\\n-1.21781655e-01 -1.79824546e-01 -2.10189402e-01 -2.54427433e-01\\n5.74785352e-01 3.63378823e-01 -5.35208583e-01 -2.91092247e-01\\n-6.99249804e-02 -2.49034226e-01 1.70037970e-01 -5.79049699e-02\\n7.31631219e-02 -2.44768590e-01 6.53882742e-01 1.12321135e-02\\n2.24240616e-01 6.07359052e-01 -5.83382994e-02 -2.50914633e-01\\n-1.12359829e-01 7.71462396e-02 1.66421369e-01 2.95562863e-01\\n-5.11290282e-02 2.48052478e-01 -7.53134340e-02 -2.01807395e-02\\n-2.74887495e-02 2.33387321e-01 8.37828144e-02 1.81906193e-01\\n1.48027182e-01 3.12036071e-02 3.89979482e-01 4.12594020e-01\\n1.17707275e-01 5.07520497e-01 2.27609754e-01 2.29477108e-01\\n3.18650872e-01 5.64797580e-01 2.81692654e-01 6.13408685e-02\\n8.22464079e-02 1.48373753e-01 6.84193969e-02 -1.40538529e-01\\n4.22954977e-01 4.43947226e-01 2.46044859e-01 9.08302248e-01\\n3.65534574e-01 2.80616790e-01 7.37166047e-01 -7.06651807e-01\\n-2.81617343e-01 1.21486790e-01 4.82529223e-01 -2.20186427e-01\\n-1.42838493e-01 1.61652744e-01 -2.48693734e-01 3.81675452e-01\\n-4.46367890e-01 -3.31994146e-02 1.61393415e-02 6.77345879e-03\\n1.44996688e-01 -1.05268389e-01 -1.28102064e-01 1.55145973e-01\\n-1.58532813e-01 -1.97255552e-01 -2.94382453e-01 -2.82131404e-01\\n-2.89074123e-01 -7.49421939e-02 -5.33932261e-02 1.88086201e-02\\n8.94927233e-03 -4.60938901e-01 -3.03833131e-02 5.24503328e-02\\n2.91428417e-01 -1.05347574e-01 -1.22994676e-01 -1.65662497e-01\\n7.95127675e-02 3.03836554e-01 4.89766508e-01 -2.00687215e-01\\n1.49067685e-01 -6.69544116e-02 -1.76765859e-01 6.44109249e-02\\n1.62172049e-01 -2.35723648e-02 4.57578711e-02 4.50154513e-01\\n-3.38859379e-01 -3.47833261e-02 2.06382200e-01 2.45431989e-01\\n-3.15121680e-01 -4.02895547e-02 -8.31258148e-02 3.63215774e-01\\n1.77332476e-01 2.15478852e-01 -2.76906550e-01 1.31419636e-02\\n-3.04861944e-02 -4.47059661e-01 3.78581613e-01 -9.31734890e-02\\n-1.89070687e-01 8.00442249e-02 2.43749246e-01 2.15236410e-01\\n-4.89193685e-02 -5.12335263e-03 -1.13563403e-01 3.96782756e-01\\n7.12029114e-02 3.22097212e-01 -1.97272062e-01 -4.78083223e-01\\n-1.90422386e-01 2.93416083e-01 -6.69633672e-02 1.48886636e-01\\n-1.36690557e-01 2.53827482e-01 1.22825794e-01 2.13939518e-01\\n1.64398924e-01 -3.92982662e-02 -3.83275628e-01 -2.61239707e-01\\n-2.89410770e-01 -1.82659477e-01 1.97581828e-01 5.80713619e-04\\n1.02864832e-01 -3.11528921e-01 -1.20212257e-01 -1.40085146e-01\\n-1.84322700e-01 -2.66929448e-01 -2.77319383e-02 1.14538446e-01]]',\n", + " 'job_description': 'Job Informationen REQUIREMENTS: - Ability to design, build and maintain applications using XP practices; - Excellent technical and interpersonal skills; - Able to understand our partners’ requirements and quickly resolve any potential issue both in the project as well as in the productive environment; - Able to communicate to and influence stakeholders; - Work with teams to influence the way they work; - Experience working in an Agile environment; - Expert in the following core technologies: - Operating System: Mainframe-ZOS; - Languages: COBOL, JCL, SQL; - Database: DB2; - Tools: iDZ; - Automated Unit Testing such as xUnit, JUnit or zUnit. - User of /or would like to learn the following technologies: - Test automation tools such as Fitness, JBehave or RSpec; - Experience in specification by example; - Continuous Integration; - Java or other OO languages. Benötigte Skills JAVA SQL JCL',\n", + " 'soft_skills': '[\"Communications\"]',\n", + " 'hard_skills': '[\"Automation\", \"Tooling\", \"Agility\", \"Unit Testing\", \"Junit\", \"Continuous Integration\", \"Maintainability\", \"Test Automation\", \"Building Design\", \"DB2 SQL\", \"Operating Systems\", \"Xunit\", \"Job Control Language (JCL)\", \"SQL And Java (SQLJ)\", \"Jbehave\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Rspec\", \"COBOL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Zulu', 'Navaho', 'Limburgish', 'Malayalam']\"},\n", + " {'company_id': '99',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Eysins',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.quotientsciences.com',\n", + " 'jobdescription_embedded': '[[-1.67283162e-01 4.96382684e-01 4.73285615e-01 -3.95441093e-02\\n7.15354025e-01 -6.18053414e-02 5.90838194e-02 1.80678621e-01\\n-8.27328418e-04 -3.37114483e-01 -2.18784034e-01 -1.58189401e-01\\n1.52623206e-02 5.06034233e-02 2.28409559e-01 5.84479868e-01\\n2.51608580e-01 1.66614223e-02 -1.66437440e-02 4.06785816e-01\\n-6.73558787e-02 -1.67884827e-01 1.20005667e-01 6.37284100e-01\\n3.13242376e-01 -8.12849903e-04 -3.01359948e-02 -5.76268248e-02\\n-3.09288412e-01 -2.74816602e-01 4.40663099e-01 3.29021849e-02\\n-7.83144087e-02 -3.73824924e-01 1.08930394e-01 1.79451630e-01\\n-1.85445324e-01 1.28055304e-01 -1.78126425e-01 2.40898132e-01\\n-5.89650989e-01 -2.64039427e-01 7.97517747e-02 -1.03131890e-01\\n-3.34392726e-01 -3.88217837e-01 1.39606580e-01 -2.31899530e-01\\n1.11341067e-01 2.21235871e-01 -3.84487182e-01 3.55191052e-01\\n-4.07988071e-01 -2.70934194e-01 5.06339848e-01 5.72794139e-01\\n6.15819991e-02 -5.84330261e-01 -4.68150735e-01 -2.88958251e-01\\n1.22681923e-01 -6.50476888e-02 1.47600770e-01 -1.49397805e-01\\n3.15104038e-01 -9.98749509e-02 4.46192436e-02 2.78863698e-01\\n-6.97212040e-01 -1.29439145e-01 -3.69929761e-01 1.14065811e-01\\n-3.49062771e-01 -1.05505243e-01 -3.53100777e-01 -2.25138947e-01\\n-2.79875807e-02 4.16782022e-01 -1.44749507e-01 2.34315917e-02\\n-1.39191240e-01 4.35574681e-01 -2.01017037e-01 1.43315732e-01\\n3.08255732e-01 1.59997836e-01 3.94490868e-01 3.71993899e-01\\n-5.16115129e-01 3.85041445e-01 3.96353811e-01 -2.77292460e-01\\n2.07770273e-01 7.18651116e-02 3.30229253e-01 1.87326372e-01\\n-3.53857465e-02 2.16005147e-01 -2.13451192e-01 1.46659657e-01\\n1.86481237e-01 2.20601987e-02 -1.00690156e-01 6.19195076e-03\\n1.31012267e-03 -3.19163613e-02 -1.72947580e-03 2.76178092e-01\\n-4.15631890e-01 3.80885810e-01 1.95618063e-01 -2.89628297e-01\\n-1.42698929e-01 -5.80824733e-01 -2.10370094e-01 6.33820519e-02\\n-1.20050618e-02 1.27508745e-01 2.09431335e-01 2.51360834e-01\\n2.47809812e-01 -3.90639044e-02 1.85143441e-01 8.57120037e-01\\n2.29593422e-02 6.75428063e-02 -1.07030220e-01 3.60183030e-01\\n1.33770242e-01 -1.98120549e-01 4.20190096e-02 2.35998571e-01\\n-7.21413940e-02 -2.89273611e-03 -2.67424881e-01 3.36799145e-01\\n-1.72741249e-01 -2.47610480e-01 -2.52588511e-01 1.93755463e-01\\n-2.16580793e-01 -4.31534410e-01 4.68430281e-01 -1.90114602e-01\\n6.76211864e-02 -1.70918375e-01 -6.28996268e-02 4.93098721e-02\\n-2.82016397e-01 3.84538829e-01 2.14667886e-01 1.01979077e-01\\n-2.99329340e-01 -2.84333080e-01 -1.77723631e-01 2.62720913e-01\\n-1.51834592e-01 1.86395928e-01 -3.54028583e-01 -1.64308682e-01\\n3.25742811e-01 2.08727509e-01 -5.31035304e-01 3.02797854e-01\\n-1.36172830e-03 -1.84365958e-01 -2.54335344e-01 2.53711253e-01\\n-6.52396157e-02 1.13642119e-01 3.34032183e-03 -1.01220399e-01\\n5.95475554e-01 1.37235850e-01 2.92575777e-01 -1.20846368e-01\\n3.76828909e-01 -1.28077835e-01 2.47321457e-01 6.49513230e-02\\n-6.44647121e-01 4.44469839e-01 -1.82577640e-01 -1.04603253e-01\\n4.25479412e-02 2.02265009e-02 5.31656384e-01 -3.12031657e-01\\n-1.11082554e-01 -2.75638402e-01 -3.28261137e-01 -5.08254468e-01\\n-8.10283944e-02 -4.24229763e-02 3.78612876e-01 -3.64559412e-01\\n-5.32455631e-02 2.15527326e-01 -7.24871457e-01 -7.97624514e-02\\n3.85937512e-01 2.35226005e-01 1.63823038e-01 1.63700417e-01\\n-1.44805267e-01 -6.02992654e-01 1.59879178e-01 -5.34337342e-01\\n-2.90672660e-01 1.37909099e-01 -2.17367843e-01 6.82096481e-02\\n-1.17913559e-02 3.04325819e-02 -4.39064689e-02 4.63327318e-02\\n-2.95871615e-01 -1.32496711e-02 1.52611867e-01 -2.64245179e-02\\n1.01892352e-01 1.13051072e-01 -4.70750362e-01 5.16115248e-01\\n-2.02063397e-01 4.04750526e-01 7.94736594e-02 -9.69350219e-01\\n5.03957987e-01 2.29500964e-01 -1.11463163e-02 -3.07611734e-01\\n5.91374516e-01 -3.56890380e-01 -8.50174204e-02 1.68656290e-01\\n-2.67049938e-01 -1.69523910e-01 2.77892292e-01 -1.67215213e-01\\n-3.24622005e-01 5.91055214e-01 1.15860440e-01 3.96384932e-02\\n3.08249563e-01 -1.01169541e-01 -1.09347917e-01 -4.04855609e-03\\n-8.63071755e-02 -2.03987453e-02 -4.55997586e-01 1.56496204e-02\\n-4.17355932e-02 -5.50188541e-01 -2.11021900e-01 -4.30515110e-01\\n-1.81023523e-01 -4.42410886e-01 -2.66065687e-01 9.48991179e-02\\n4.56364453e-02 1.18560277e-01 4.24885983e-03 1.21486619e-01\\n-2.12956052e-02 -8.45426083e-01 -7.96089992e-02 1.65583566e-01\\n1.92681685e-01 4.71878022e-01 2.18870610e-01 -1.10170893e-01\\n-8.90544280e-02 3.70567292e-01 -3.46888751e-01 -2.09043488e-01\\n2.47652262e-01 4.48090397e-02 -7.02936798e-02 -1.68070421e-01\\n1.14390329e-01 3.30983073e-01 -2.21414745e-01 1.18749730e-01\\n4.06400003e-02 -1.79618075e-02 3.52299511e-01 -1.07650585e-01\\n-3.03789884e-01 -1.78014934e-01 -1.18170142e-01 2.61042535e-01\\n-6.36415780e-01 -1.78278878e-01 5.25998831e-01 6.65154159e-02\\n3.08961291e-02 3.27643275e-01 3.56017798e-01 -7.01261908e-02\\n-3.34032208e-01 -2.03804418e-01 2.29282916e-01 1.38755873e-01\\n1.61493286e-01 -3.57251838e-02 -2.43090749e-01 -6.85398400e-01\\n-3.36590719e+00 -2.27977782e-01 1.61804214e-01 -3.20039481e-01\\n3.04907292e-01 -3.26754376e-02 2.63678521e-01 6.74046725e-02\\n-4.25667435e-01 2.55601481e-02 -1.76507935e-01 -1.29918844e-01\\n6.98243529e-02 3.32497895e-01 9.73022506e-02 9.07275453e-02\\n7.39738420e-02 -3.95802706e-01 7.48599693e-02 4.51745003e-01\\n-1.51159942e-01 -8.91585350e-01 1.35872159e-02 2.97283512e-02\\n1.60224333e-01 1.03656694e-01 -5.86426854e-01 -3.37138437e-02\\n-2.74967313e-01 -1.87939823e-01 8.74861106e-02 -4.47235852e-02\\n-2.94496089e-01 2.28376254e-01 8.54830891e-02 -1.12324983e-01\\n-2.13490855e-02 -2.79905170e-01 -6.16475232e-02 -6.68594241e-01\\n1.27968386e-01 -7.22252607e-01 5.30232862e-03 -3.13416570e-02\\n4.86633956e-01 -9.97365266e-02 2.40852326e-01 1.50363609e-01\\n1.39815211e-01 2.13297471e-01 1.13651454e-01 -8.13508872e-03\\n-1.95934355e-01 -2.19100252e-01 -1.27989277e-01 -8.76261517e-02\\n6.99163318e-01 3.76516491e-01 -3.27294528e-01 -1.84754550e-03\\n6.28733784e-02 -3.56785595e-01 -4.52331334e-01 -2.76319563e-01\\n-2.30234861e-01 3.18514295e-02 -7.09605217e-01 -4.17568296e-01\\n-1.58655375e-01 -2.18184695e-01 -9.87968445e-02 7.75923133e-01\\n-3.75988603e-01 -3.34090531e-01 -9.81640667e-02 -6.01580977e-01\\n1.40054092e-01 -2.70387918e-01 4.93498845e-03 -2.79449672e-01\\n-3.61586243e-01 -3.52262735e-01 3.09144408e-01 8.34799930e-02\\n-2.16312572e-01 9.06404033e-02 1.16812818e-01 -1.15260594e-01\\n-3.89930755e-01 -5.81773877e-01 4.28370357e-01 7.18084946e-02\\n3.61614108e-01 -3.77777740e-02 3.13419729e-01 -3.83485220e-02\\n5.09930313e-01 -1.59920976e-02 8.59928802e-02 -5.62680304e-01\\n-8.70154873e-02 -2.05737203e-02 7.11441338e-01 -2.34437749e-01\\n-4.87223454e-02 1.74908474e-01 -2.07855225e-01 -2.89404392e-01\\n4.85346377e-01 -2.22759005e-02 1.86039239e-01 -3.06634158e-01\\n3.08273584e-01 -4.84438568e-01 -2.25648656e-01 9.60651413e-02\\n7.29645267e-02 7.78930962e-01 2.44732909e-02 -4.17339504e-01\\n-1.43703416e-01 3.12684953e-01 -1.91466644e-01 5.49326204e-02\\n-1.14602178e-01 2.99004167e-02 -1.62621632e-01 3.82111520e-01\\n7.57742673e-02 -1.53777748e-01 -2.65014112e-01 6.90416917e-02\\n-7.91388154e-02 1.61529616e-01 2.57426709e-01 1.59676507e-01\\n-7.79743344e-02 -2.99858272e-01 -1.12044632e-01 1.72875032e-01\\n1.53421715e-01 3.65172386e-01 1.51879251e-01 -3.79622549e-01\\n1.58237927e-02 2.26691976e-01 -2.57052600e-01 3.30407172e-01\\n-1.41537011e-01 1.48903772e-01 -5.12566447e-01 -9.72853824e-02\\n-2.82519251e-01 -2.72215515e-01 6.81637675e-02 3.29897344e-01\\n1.69731855e-01 -1.33052677e-01 1.19581856e-01 -5.29412985e-01\\n2.96477467e-01 1.48529842e-01 1.75442964e-01 1.10479176e-01\\n-5.50859310e-02 6.96975112e-01 -1.19051998e-02 -1.97875157e-01\\n-1.88725302e-03 8.35982114e-02 -2.07555592e-01 -1.98839322e-01\\n1.11030713e-01 -3.98029923e-01 -8.53429921e-03 4.88453090e-01\\n1.61343187e-01 -4.92162742e-02 -1.55689403e-01 3.33499938e-01\\n4.95009050e-02 -2.77789384e-01 -2.44411871e-01 -2.30552368e-02\\n4.43329699e-02 2.95744333e-02 2.91405320e-01 -4.89995062e-01\\n5.18030189e-02 -7.42126107e-02 6.93076029e-02 3.44546229e-01\\n2.35428400e-02 1.20333031e-01 -1.22529328e-01 -1.13325737e-01\\n4.36666250e-01 9.03463215e-02 -7.92455971e-02 -1.70062520e-02\\n1.87160149e-01 -2.65449584e-01 -5.07697880e-01 -3.45288999e-02\\n-1.14432283e-01 -1.71996027e-01 1.13041736e-01 1.51635790e-02\\n1.86537549e-01 2.14096736e-02 -4.26688641e-01 -1.13187924e-01\\n-2.85175920e-01 2.51499843e-02 -1.81716532e-01 -5.95246792e-01\\n-7.07061365e-02 4.16523144e-02 -5.74558139e-01 2.22292379e-01\\n-5.76059008e-03 -3.85601185e-02 1.76665425e-01 2.27065086e-01\\n-2.69160718e-01 -2.66150981e-01 1.50380164e-01 1.52548440e-02\\n-2.77740210e-01 -1.76942214e-01 -3.68021950e-02 -9.36817467e-01\\n2.31606722e-01 -6.28801808e-02 -1.94569543e-01 3.97571847e-02\\n-1.22179888e-01 -7.56654739e-01 2.09525630e-01 -3.79736274e-01\\n-2.27010787e-01 6.01732954e-02 -2.26237684e-01 -3.40690017e-01\\n7.33671710e-02 -1.24778397e-01 -2.90580541e-01 3.12682569e-01\\n-3.61994475e-01 5.77859223e-01 4.40651514e-02 8.52059051e-02\\n1.41486144e-02 -2.04577833e-01 1.49629980e-01 -2.91375935e-01\\n-4.61250693e-01 -7.70405680e-02 -2.75184125e-01 -3.02751869e-01\\n-7.05734566e-02 -1.75870180e-01 -2.23107040e-01 1.50369853e-01\\n4.01551872e-01 7.57903755e-02 -1.26894414e-01 -1.27012551e-01\\n-1.98444575e-02 -3.85478348e-01 1.54525787e-01 -2.57370502e-01\\n1.39345258e-01 -8.13426226e-02 3.94687921e-01 5.22590708e-04\\n2.64045089e-01 -2.67956823e-01 6.32379532e-01 -1.34969652e-01\\n-3.37119460e-01 -1.68911383e-01 1.19579807e-01 1.14029787e-01\\n4.38407272e-01 -4.84939933e-01 2.94002555e-02 2.85366863e-01\\n-1.13274679e-01 3.18405926e-02 2.24106148e-01 -1.83181569e-01\\n-1.61934376e-01 -9.30105988e-03 -6.15322053e-01 2.19566286e-01\\n6.99552119e-01 2.61645257e-01 1.61991939e-01 1.27732232e-01\\n1.01735376e-01 3.68169546e-01 6.19638860e-01 -1.00752927e-01\\n-1.65866062e-01 3.33156466e-01 7.69180432e-02 -5.56725144e-01\\n-2.86869675e-01 4.59007779e-03 -1.54584095e-01 -3.91991764e-01\\n6.35518789e-01 1.88641161e-01 -4.09015238e-01 -3.64251018e-01\\n-2.77176917e-01 -2.79904515e-01 2.76747167e-01 -5.32844290e-03\\n3.55964079e-02 -1.61833435e-01 6.24098659e-01 5.12679070e-02\\n3.42268229e-01 4.98422861e-01 -5.81675135e-02 -3.33056957e-01\\n5.39596900e-02 1.99790031e-01 4.30069258e-03 2.69510180e-01\\n5.29400678e-03 1.61001727e-01 1.95755623e-02 1.97789967e-01\\n-2.26976275e-01 -1.50916949e-01 1.14374436e-01 1.20383270e-01\\n7.07988888e-02 2.09514692e-01 6.24804974e-01 4.26409602e-01\\n2.15460166e-01 3.52721870e-01 2.75899053e-01 2.86861062e-02\\n5.20019054e-01 6.54697418e-01 2.92867571e-01 4.55033174e-03\\n1.26852065e-01 2.82500923e-01 1.35589138e-01 -5.10333804e-04\\n4.33821231e-01 4.51742291e-01 1.26192093e-01 8.27383220e-01\\n7.43306652e-02 3.70451123e-01 7.68658519e-01 -6.19583428e-01\\n-3.18684846e-01 7.70748928e-02 6.30156457e-01 -4.34582114e-01\\n6.87476946e-03 2.27544695e-01 -1.26900107e-01 2.92407632e-01\\n-5.30891657e-01 -1.48756430e-01 3.55412550e-02 -5.42347208e-02\\n2.24938225e-02 -1.57012284e-01 -1.12404890e-01 -2.40950156e-02\\n-1.66813850e-01 -1.49871975e-01 -2.09899873e-01 -3.25569928e-01\\n-2.51107574e-01 1.11149378e-01 -4.22187746e-02 -1.73717663e-01\\n-3.39396968e-02 -3.10252637e-01 -1.27170131e-01 -8.64047259e-02\\n2.56068021e-01 -1.57345891e-01 -1.95944652e-01 -3.99634242e-02\\n1.51886046e-01 1.73659250e-01 7.09538043e-01 -7.05268085e-02\\n1.20836891e-01 -1.66058779e-01 -1.73461422e-01 7.13922083e-02\\n1.63114458e-01 1.64563686e-01 6.52934685e-02 6.67771041e-01\\n-3.23297441e-01 -1.01821534e-01 8.80909488e-02 3.58815104e-01\\n-2.65383244e-01 -2.23928201e-03 -6.07998855e-02 8.19014534e-02\\n-8.21686909e-02 8.73030797e-02 -2.14701787e-01 -2.82162726e-02\\n-1.36687919e-01 -5.65336287e-01 4.02833879e-01 -1.28295660e-01\\n-3.13870877e-01 -6.42627757e-03 3.26349437e-01 3.45629752e-01\\n-1.57253563e-01 -3.78518030e-02 -1.02381997e-01 1.22643121e-01\\n8.03345293e-02 4.92935359e-01 -1.89984858e-01 -2.59463370e-01\\n-3.32633823e-01 2.66296923e-01 3.80577892e-02 1.66840926e-01\\n-8.88827369e-02 2.90821284e-01 7.16807917e-02 6.53435439e-02\\n3.55444521e-01 -1.56623036e-01 -2.89584488e-01 -3.11671942e-01\\n-1.53793246e-01 -1.34443194e-01 1.05127253e-01 -1.44648746e-01\\n2.45508015e-01 -3.53670835e-01 -4.27128226e-02 -2.88287520e-01\\n-1.39551595e-01 -3.97719026e-01 -2.17192456e-01 1.82976108e-02]]',\n", + " 'job_description': 'Quotient is recruiting for a Software Engineer to join the IT department team based in Eysins. The Software Engineer will define, develop, test, analyze and maintain manufacturing software applications in support of the achievement of business requirements. Participate actively in the implementation and support of Manufacturing information systems solutions Participate in the definition, development, and documentation of software’s business requirements, objectives, deliverables, and specifications in collaboration with internal users and departments and as per our project methodology Write, code, install and analyse software programs and applications throughout the full lifecycle of system implementation (from requirements/design through to deployment and support) Design, run and monitor software testing on new and existing programs for the purposes of correcting errors, isolating areas for improvement, and general debugging Develop interface of MES system to ERP, PLC and other 3rd party system Develop and execute software verification plans following quality assurance procedures Develop and maintain IT documentation, user manuals and guidelines as well as train key users to operate new or modified programs Provide support for Manufacturing Software applications (Incident management and problem resolution) and develop further the manufacturing systems support Knowledge base Ensure timely issue identification, resolution, and appropriate escalation Collaborate with suppliers, internal project and IT team, internal management, and customer project teams and management Research, advice and implement technologies for Digital Factory transformation (Industry 4.0) Qualifications Engineering Diploma (EPF/HES or equivalent) in Computer Science, Information Systems, Industrial Engineering or equivalent Minimum 2 years experience on a similar role Programming skills in NET; C# and SQL language and ability to quickly learn new software/applications Must be a team player and an effective communicator, to enable communication with a wide range of stakeholders and cultures Experience of Manufacturing Information systems (Manufacturing Execution Systems, labelling and Enterprise Resource planning) in the medical devices or pharma industry is a strong asset SLDC and validation experience of enterprise applications is considered an asset Ability to work under pressure, meet deadlines and respond flexibly Excellent spoken and written French. Good English required Videos To Watch',\n", + " 'soft_skills': '[\"Writing\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Quality Assurance\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Systems Implementations\", \"Enterprise Application Software\", \"Knowledge Base\", \"Industry 4.0\", \"Programming (Music)\", \"Computer Science\", \"Mobile Application Software\", \"System Support\", \"Industrialization\", \"Enterprise Resource Planning\", \"Activism\", \"Installation\", \"Maintainability\", \"Resource Planning\", \"Software Manufacturing\", \"Executable\", \"Software Engineering\", \"Simatic S5 PLC\", \"Business Requirements\", \"Medical Devices\", \"MFG/Pro (ERP)\", \"C# (Programming Language)\", \"Digitization\", \"Incident Management\", \"Systems Development\", \"Industrial Engineering\", \"Transformation (Genetics)\", \"Factorials\", \"Software Testing\", \"Manufacturing Execution System (MES)\", \"Debugging\", \"Information Systems\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer (fullstack) m/f',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.24605471e-01 2.35792488e-01 3.50674033e-01 2.72700526e-02\\n4.90457684e-01 -2.46626914e-01 -5.21922745e-02 3.01519960e-01\\n-7.77062848e-02 -4.58634794e-01 -4.64866422e-02 -7.19136149e-02\\n1.41388196e-02 1.56943202e-01 7.98797086e-02 2.02310681e-01\\n2.62977749e-01 1.65971562e-01 -1.81603163e-01 2.57941931e-01\\n-5.46078756e-02 -1.21250704e-01 1.67568903e-02 5.81306398e-01\\n1.42599940e-01 7.44664893e-02 -3.12827304e-02 2.98494138e-02\\n-3.49539220e-01 -1.25316903e-01 1.95216924e-01 1.55999428e-02\\n-8.56181681e-02 -3.73535842e-01 -8.48868191e-02 3.22658084e-02\\n-3.81886624e-02 7.70482644e-02 -1.01356395e-01 1.46026403e-01\\n-3.66570562e-01 -3.00119489e-01 2.02613756e-01 3.58491503e-02\\n-1.53632417e-01 -2.05142394e-01 1.55590579e-01 -9.49693471e-03\\n1.75400659e-01 4.54362519e-02 -5.49875081e-01 2.49443144e-01\\n-2.25326911e-01 -2.13893041e-01 3.26802254e-01 3.48924875e-01\\n5.00399359e-02 -4.25346047e-01 -3.57175618e-01 -1.64575070e-01\\n1.68628339e-02 -1.50747091e-01 -8.30788165e-03 -2.38605842e-01\\n4.48649079e-01 8.27829316e-02 5.43667786e-02 3.03924561e-01\\n-8.00301909e-01 5.94547279e-02 -1.60441324e-01 4.94198687e-03\\n-4.36797321e-01 -1.12399012e-01 -1.72479913e-01 -1.62552848e-01\\n-1.19267173e-01 2.83322364e-01 7.66915008e-02 1.30577758e-01\\n-1.46320080e-02 2.90099263e-01 -1.31645635e-01 1.45017684e-01\\n1.76305041e-01 1.88088268e-01 1.51320174e-01 2.94285208e-01\\n-3.80012721e-01 3.94938469e-01 1.71205491e-01 -1.36783183e-01\\n2.23714992e-01 1.90685645e-01 4.23567891e-01 8.00922699e-03\\n3.80187258e-02 2.48215199e-01 -2.20471099e-01 3.00102770e-01\\n1.00541331e-01 -2.80173272e-01 -4.33754548e-02 -6.86982423e-02\\n-1.47362787e-03 -2.08937917e-02 -3.46811339e-02 2.43524253e-01\\n-2.69600511e-01 3.61232311e-01 1.08226396e-01 -1.83949396e-01\\n-4.39675748e-02 -3.62533242e-01 -1.92990795e-01 1.72278076e-01\\n-8.61325935e-02 1.00862779e-01 2.33746082e-01 4.81819138e-02\\n1.80200592e-01 1.63338423e-01 2.32209176e-01 9.50801373e-01\\n-1.44107074e-01 7.49656036e-02 -2.77453333e-01 3.41957659e-01\\n2.92942911e-01 -3.11042964e-01 9.86343846e-02 3.00305426e-01\\n2.07038790e-01 -3.01441345e-02 -1.37751445e-01 2.98282564e-01\\n-5.86738773e-02 -1.18939020e-01 -3.08576375e-01 1.17867090e-01\\n-2.18959987e-01 -2.32117042e-01 4.14739907e-01 1.07232906e-01\\n1.89380676e-01 4.97175455e-02 7.42520317e-02 -1.05704792e-01\\n-1.70774892e-01 2.89947361e-01 -3.90568525e-02 2.93861955e-01\\n-3.68492991e-01 -1.74878746e-01 -1.70071989e-01 2.87071586e-01\\n-1.17349543e-01 1.09323360e-01 -2.00096220e-01 -1.29100814e-01\\n3.46003234e-01 1.30378470e-01 -3.29628259e-01 1.27818942e-01\\n-1.05009310e-01 -1.31713226e-01 -1.12614468e-01 2.20942378e-01\\n-4.32991274e-02 2.29747102e-01 -6.90119267e-02 -8.56924206e-02\\n2.79044092e-01 2.91531552e-02 1.15330711e-01 -7.86843151e-02\\n3.85661066e-01 -1.86259449e-01 1.20102689e-01 1.91183820e-01\\n-5.71777999e-01 3.70674103e-01 -1.12332128e-01 -1.36234075e-01\\n1.03117414e-01 6.66463599e-02 2.82770485e-01 -1.51215926e-01\\n-3.34882401e-02 -1.16774976e-01 -4.89195257e-01 -3.93387437e-01\\n-2.56202698e-01 6.97855130e-02 3.94398838e-01 -4.02268499e-01\\n-1.95884228e-01 2.22033903e-01 -3.36705863e-01 -1.51137169e-02\\n1.18485346e-01 1.49535924e-01 -4.51240763e-02 -2.47501582e-02\\n-2.69324094e-01 -4.84288126e-01 -6.53767511e-02 -3.96606505e-01\\n-4.02603477e-01 1.02688491e-01 -2.88938344e-01 2.31069386e-01\\n9.87272039e-02 -1.42977685e-02 -6.57303855e-02 1.17500544e-01\\n-1.87472165e-01 -9.70985815e-02 1.78337067e-01 4.77569737e-03\\n2.93884814e-01 -6.89004138e-02 -3.36164206e-01 4.38773602e-01\\n-2.33316347e-01 3.33888859e-01 1.38489619e-01 -7.11892784e-01\\n4.80490804e-01 2.72375464e-01 -5.10299997e-03 -3.02045465e-01\\n4.04416144e-01 -3.11632842e-01 -4.48470488e-02 1.55473799e-01\\n-3.53522003e-01 -1.33211508e-01 2.01538861e-01 -7.69464821e-02\\n-2.23029539e-01 5.07081330e-01 8.29666108e-02 -1.78595856e-02\\n3.61967236e-01 -3.53160709e-01 -2.76765861e-02 1.31961212e-01\\n-1.85547024e-01 -1.84699878e-01 -3.48035574e-01 -8.42533708e-02\\n-9.21207368e-02 -4.43612486e-01 -1.88697040e-01 -3.04210335e-01\\n-1.02625571e-01 -1.84355468e-01 -2.48895392e-01 4.71187770e-01\\n2.99641967e-01 1.33694112e-01 -7.07919616e-03 3.63945514e-02\\n-1.01618469e-01 -6.41330242e-01 -7.08548352e-02 1.03563927e-01\\n3.67320567e-01 2.72804916e-01 1.46955535e-01 -4.93881516e-02\\n-3.97910513e-02 3.46663684e-01 -3.45312357e-01 -3.81293714e-01\\n-1.47620831e-02 2.47718692e-01 -1.50401592e-01 -1.56966388e-01\\n1.14186883e-01 3.89926255e-01 -1.30922168e-01 6.47133216e-02\\n-1.97017230e-02 -8.37122649e-02 2.90619195e-01 -1.37548923e-01\\n-4.07833368e-01 -2.78625637e-01 5.17133400e-02 2.40662977e-01\\n-5.29676974e-01 -7.92694539e-02 5.67658901e-01 2.07346544e-01\\n2.02312306e-01 1.88934445e-01 8.16133171e-02 -1.95104122e-01\\n-1.37098268e-01 -2.53854334e-01 9.17403698e-02 1.93501920e-01\\n2.00451747e-01 -2.30468214e-02 -9.60684419e-02 -6.53514802e-01\\n-4.09446764e+00 -1.45639494e-01 7.63313696e-02 -1.76984563e-01\\n2.12446183e-01 -1.20542161e-01 6.93006366e-02 -9.31682438e-02\\n-2.42192000e-01 5.84066734e-02 -1.50894359e-01 2.56798305e-02\\n1.02842592e-01 3.52982014e-01 -4.55155261e-02 2.63725519e-01\\n8.09116066e-02 -1.27480373e-01 -7.22381547e-02 4.14806128e-01\\n-4.58634458e-02 -6.79855108e-01 4.80473563e-02 -9.10020471e-02\\n2.23326907e-01 2.19641536e-01 -3.80964428e-01 3.01166475e-02\\n-1.73336208e-01 -2.34584436e-01 5.39045222e-02 -1.40656754e-01\\n-2.29383856e-01 1.95177913e-01 1.17010005e-01 -1.47003219e-01\\n7.36555532e-02 -1.80208966e-01 8.85467455e-02 -3.55997890e-01\\n1.05586194e-01 -5.14980495e-01 -7.39612281e-02 -1.02456070e-01\\n6.14297092e-01 -3.16156358e-01 1.52301162e-01 1.06118590e-01\\n1.67037949e-01 2.30938181e-01 -7.57253692e-02 -4.37466651e-02\\n-8.73185992e-02 -2.92413861e-01 -1.61585197e-01 -3.14579159e-01\\n5.28667927e-01 5.20147681e-01 -2.28293851e-01 8.84603187e-02\\n4.52497825e-02 -3.88702333e-01 -3.04586023e-01 -3.64276320e-01\\n-1.44583076e-01 -1.86536923e-01 -6.36405349e-01 -4.45421189e-01\\n-7.42380098e-02 -1.86127611e-02 -8.85074362e-02 4.68297511e-01\\n-3.25570017e-01 -6.13113999e-01 8.44143182e-02 -6.71948373e-01\\n1.11391880e-01 -1.25453487e-01 7.18368292e-02 -1.33640245e-01\\n-2.65900314e-01 -4.95505273e-01 1.35090306e-01 6.96742460e-02\\n-1.68579549e-01 -3.01842485e-02 7.77150095e-02 -1.99424371e-01\\n-2.48260573e-01 -3.17580968e-01 3.67707849e-01 -1.11353537e-03\\n2.32096300e-01 1.64909735e-01 2.97640085e-01 4.33797427e-02\\n2.74870157e-01 -7.04641193e-02 2.72777677e-02 -4.30708408e-01\\n6.58744127e-02 -1.31898776e-01 5.12929499e-01 -2.81683475e-01\\n2.01799558e-03 2.55510360e-01 -1.16428398e-01 -1.77420288e-01\\n4.33482558e-01 8.89140889e-02 1.74263511e-02 -7.87025616e-02\\n2.66444713e-01 -4.04224634e-01 -1.99179411e-01 2.27218494e-01\\n-6.12920523e-02 5.23230970e-01 2.74981670e-02 -3.87890726e-01\\n-3.17481548e-01 4.32068378e-01 -6.38035089e-02 -7.05217421e-02\\n9.13174730e-03 1.12511471e-01 -1.70653746e-01 2.50539720e-01\\n2.68412009e-02 -2.06721246e-01 -2.40818709e-01 -5.32387244e-03\\n4.98554558e-02 1.67121962e-01 2.24705413e-01 1.95688643e-02\\n-1.30466923e-01 -2.57297307e-01 -1.05094768e-01 1.25803024e-01\\n1.38037190e-01 3.52362901e-01 6.58268183e-02 -2.44220391e-01\\n-8.52385387e-02 2.55793750e-01 -1.30464196e-01 1.43185034e-01\\n-1.40016869e-01 9.43701193e-02 -3.74488115e-01 -2.32729241e-01\\n-1.90757126e-01 -1.97717294e-01 -3.15865278e-02 2.34731629e-01\\n1.57775998e-01 2.52855942e-02 8.57646689e-02 -4.06255066e-01\\n2.23813280e-01 5.93041927e-02 1.17565893e-01 1.22311167e-01\\n2.45984062e-03 3.97634625e-01 5.50202979e-03 -1.50110096e-01\\n-1.22130118e-01 4.44475748e-03 -1.62203282e-01 -1.57190412e-01\\n4.68857586e-02 -4.25616652e-01 -5.60809858e-02 2.33158410e-01\\n1.14213303e-01 -1.11738741e-01 -2.72326559e-01 2.71634728e-01\\n1.05799906e-01 -2.06222311e-01 -2.01017335e-01 3.38234752e-02\\n2.49744743e-01 6.75658360e-02 2.87110656e-01 -3.93085331e-01\\n-1.36054426e-01 6.60276487e-02 -6.65096119e-02 2.87271440e-01\\n3.58893424e-02 1.23215459e-01 -1.91144764e-01 -1.65244609e-01\\n3.94477099e-01 2.07209066e-02 -1.31112874e-01 -1.52195811e-01\\n-6.23822771e-02 -1.22946173e-01 -4.08657312e-01 7.53349066e-02\\n-1.72873680e-02 -1.94264531e-01 4.65675145e-02 -2.19214782e-02\\n9.78830382e-02 9.40494314e-02 -2.88055748e-01 -1.96976215e-01\\n-3.37254971e-01 -1.78404436e-01 -3.39505784e-02 -2.60993242e-01\\n1.11545175e-01 -4.54428121e-02 -5.12780964e-01 1.52724996e-01\\n-2.96986789e-01 -3.26598436e-02 9.10019428e-02 1.43532991e-01\\n-4.11095917e-01 -6.22439086e-02 1.47069126e-01 2.53865838e-01\\n-2.42980272e-01 -2.55354702e-01 3.12472973e-03 -8.19453955e-01\\n2.30123490e-01 -1.03391834e-01 -8.37849155e-02 -5.33658527e-02\\n-1.07105367e-01 -5.55086493e-01 1.30089879e-01 -4.67314214e-01\\n-6.08804710e-02 -1.86855495e-02 -1.32168889e-01 -2.77468234e-01\\n3.77165340e-02 -1.95552945e-01 -3.38158965e-01 3.50805640e-01\\n-3.94212008e-01 3.74013156e-01 -7.10030273e-02 2.51254141e-02\\n1.51733877e-02 -2.43722439e-01 1.95162758e-01 -2.33255461e-01\\n-4.28392440e-01 -1.21079758e-01 -2.88539350e-01 -1.48490086e-01\\n3.88728902e-02 -2.14048550e-01 -2.73025811e-01 1.63121954e-01\\n2.64159203e-01 1.62821606e-01 -1.24055482e-01 -2.87269533e-01\\n1.01968534e-01 -4.20646250e-01 4.11941344e-03 -2.12983370e-01\\n-7.00106099e-03 2.46367827e-02 3.67615640e-01 -6.56137317e-02\\n6.94840997e-02 -2.75272191e-01 5.09144068e-01 -8.54992494e-02\\n-3.56597036e-01 -1.24356203e-01 -1.29099526e-02 1.17997155e-01\\n2.31095165e-01 -4.13730800e-01 9.39262286e-02 1.97188899e-01\\n1.04093470e-01 4.66152690e-02 1.34095922e-01 5.27140014e-02\\n-1.34677265e-03 1.41863719e-01 -3.30207318e-01 1.19930059e-01\\n6.92589700e-01 7.97097757e-02 1.01137422e-01 2.00868085e-01\\n1.27643138e-01 4.07713473e-01 4.70270187e-01 4.39304598e-02\\n-1.48898199e-01 2.64981866e-01 1.69689357e-01 -2.96786308e-01\\n-5.82247004e-02 -1.99823026e-02 -1.57524377e-01 -2.83756405e-01\\n4.84893709e-01 3.85078847e-01 -4.26022440e-01 -2.86312252e-01\\n3.48963439e-02 -1.46888584e-01 2.95680493e-01 -1.89230502e-01\\n-1.37512079e-02 -3.37664127e-01 4.58775014e-01 5.31211942e-02\\n2.30930835e-01 5.14405727e-01 -1.90611541e-01 -3.37608725e-01\\n-9.04862583e-02 1.88599750e-01 2.00673461e-01 4.19423670e-01\\n-1.10537745e-01 1.44784436e-01 -1.65112749e-01 1.41425759e-01\\n-7.22330138e-02 2.25811079e-01 1.20973565e-01 1.37906671e-01\\n2.01754838e-01 1.84795201e-01 3.96430314e-01 4.93051231e-01\\n2.45534718e-01 4.46048319e-01 2.42097095e-01 1.15484804e-01\\n3.58219445e-01 5.87702632e-01 2.96486467e-01 -6.69525191e-02\\n2.98098661e-02 1.35471553e-01 1.63806483e-01 -1.38408944e-01\\n3.21353674e-01 3.74957591e-01 2.55250692e-01 8.18364322e-01\\n2.68075347e-01 1.70309827e-01 7.30905116e-01 -5.57820201e-01\\n-3.13421577e-01 1.31759383e-02 4.82031107e-01 -2.30523303e-01\\n-8.60635713e-02 2.17911780e-01 -2.44417444e-01 2.20278844e-01\\n-5.35482645e-01 1.03289820e-02 -2.93969382e-02 -7.23026469e-02\\n1.60103604e-01 -7.41779059e-02 -1.88917041e-01 1.23574142e-03\\n-6.79145455e-02 -6.56515639e-03 -3.11970979e-01 -1.59253836e-01\\n-2.31774867e-01 -4.03383607e-03 -9.26175416e-02 -9.16105509e-02\\n1.31659908e-02 -4.72722799e-01 -1.58997834e-01 -3.81107517e-02\\n3.99967700e-01 -6.28668889e-02 -1.87699795e-02 -1.31051421e-01\\n1.20034955e-01 1.74168438e-01 5.42354345e-01 2.66046673e-02\\n5.73972836e-02 -7.12310448e-02 -1.82270437e-01 -6.39045471e-03\\n7.31409043e-02 2.71846652e-02 2.75375620e-02 2.34320655e-01\\n-3.71793270e-01 -2.08537802e-02 1.49314150e-01 3.37141901e-01\\n-2.33530968e-01 -8.51985663e-02 -2.24765353e-02 3.51820856e-01\\n7.03752860e-02 4.55144979e-02 -1.32993087e-01 6.88968077e-02\\n-1.67165384e-01 -4.56075549e-01 3.57999116e-01 -1.71138987e-01\\n5.51913492e-02 9.04867351e-02 1.05975471e-01 1.45606413e-01\\n-1.97752029e-01 5.59895718e-03 -3.21914628e-02 1.63666427e-01\\n-1.20122107e-02 3.86949003e-01 -2.12271377e-01 -1.84116364e-01\\n-1.73825040e-01 1.70030266e-01 4.66979444e-02 -5.69188433e-06\\n-2.00273633e-01 4.17718768e-01 3.34502347e-02 1.67236298e-01\\n1.73760399e-01 7.28849974e-03 -2.31685683e-01 -1.56191319e-01\\n-3.33486497e-01 -1.44333690e-01 1.05485007e-01 4.31993268e-02\\n2.06188917e-01 -3.09337348e-01 -3.71767431e-02 -2.85545527e-03\\n-4.57971357e-02 -2.82329828e-01 -3.94500233e-02 -1.79164838e-02]]',\n", + " 'job_description': 'Job Informationen ABOUT THE POSITION: As a Full Stack Software Engineer at our company, you build scalable, reliable, secure and maintainable software from end to end. You will shape and implement products for our customers as well as our internal tooling. Together with your team, you are going to constantly improve existing features, reliability and scalability of our system. You take the opportunity to mentor your colleagues. REQUIREMENTS: – Experience with service oriented architecture and distributed systems – Experience with relational and document oriented Databases – Experience with Docker, Kubernetes on GCP and/or AWS – Fluency in Python, modern JavaScript and another language – Plus: Experience with React and/or developing SPAs – Bachelor or Master degree in Engineering field Benötigte Skills Python JavaScript Softwarearchitektur',\n", + " 'soft_skills': '[\"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Document-Oriented Databases\", \"Docker (Software)\", \"Tooling\", \"Google Cloud Platform (GCP)\", \"Kubernetes\", \"Python (Programming Language)\", \"Maintainability\", \"JavaScript (Programming Language)\", \"Scalability\", \"Service-Oriented Architecture\", \"Software Engineering\", \"React.js\"]',\n", + " 'languages': \"['English', 'Nyanja']\"},\n", + " {'company_id': '100',\n", + " 'job_title': 'machine learning software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Research & Development',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.22625816e-01 3.33112717e-01 4.52924252e-01 3.52539010e-02\\n5.47838271e-01 -2.28002280e-01 -4.55991998e-02 3.76447380e-01\\n-8.65315795e-02 -3.89616251e-01 -1.97276026e-01 -2.42429733e-01\\n-6.10692427e-02 6.09999672e-02 1.51485503e-01 4.84913617e-01\\n2.86018014e-01 5.01429364e-02 -1.70546263e-01 4.25948262e-01\\n1.52440473e-01 -1.16547421e-01 -4.21427041e-02 7.02703238e-01\\n3.97897035e-01 2.84451880e-02 -9.25158933e-02 -8.14431608e-02\\n-3.22459817e-01 -2.54069686e-01 4.96454418e-01 -2.93471888e-02\\n-7.62540922e-02 -3.94513547e-01 1.69230118e-01 1.29330114e-01\\n-2.46572852e-01 -5.82617000e-02 -9.77169126e-02 2.90166229e-01\\n-4.27152514e-01 -1.96198508e-01 -2.82067284e-02 -2.92064212e-02\\n-2.65888572e-01 -3.69894207e-01 8.80088434e-02 -6.96070641e-02\\n1.70499042e-01 8.48460495e-02 -5.95553875e-01 2.93091565e-01\\n-3.02707642e-01 -2.86939681e-01 3.41132373e-01 6.21420264e-01\\n9.08176154e-02 -5.71678102e-01 -4.96494740e-01 -3.24884951e-01\\n7.03406483e-02 9.75353550e-03 8.61043483e-02 -2.72167832e-01\\n3.07714283e-01 6.11423664e-02 6.87452182e-02 4.06307071e-01\\n-7.75700331e-01 -2.15553865e-01 -1.80246487e-01 1.52545571e-01\\n-3.49744111e-01 -9.42434371e-03 -2.53751338e-01 -1.56496242e-01\\n-1.12890601e-01 4.82029557e-01 -4.96412739e-02 1.22485615e-01\\n-1.47245184e-01 3.42353135e-01 -1.57667965e-01 2.43411422e-01\\n2.42252216e-01 1.89640567e-01 3.09183240e-01 3.39900255e-01\\n-3.73832405e-01 3.77201796e-01 2.10184962e-01 -2.64790326e-01\\n2.48795301e-01 1.47673965e-01 3.98199379e-01 7.19643682e-02\\n1.48380280e-01 1.42484277e-01 -3.09018791e-01 1.70877129e-01\\n1.43355414e-01 -1.86620682e-01 8.37099329e-02 -7.72920549e-02\\n-4.52560745e-03 6.16421103e-02 5.07850498e-02 2.76695848e-01\\n-4.03555274e-01 4.33569670e-01 6.79393709e-02 -2.33502015e-01\\n-1.00413144e-01 -6.80732846e-01 -3.22376713e-02 6.12462200e-02\\n5.32555953e-02 8.80275890e-02 2.36167192e-01 1.87875181e-01\\n2.73943275e-01 -8.78051519e-02 2.61031806e-01 8.17635596e-01\\n-4.72094193e-02 -2.46806070e-02 -2.18415201e-01 3.30004036e-01\\n7.83068985e-02 -2.46936068e-01 2.15660959e-01 1.87187701e-01\\n-2.24956647e-02 -6.70873970e-02 -2.21952885e-01 3.63291711e-01\\n-1.47620559e-01 -2.31677026e-01 -2.61106193e-01 2.65189320e-01\\n-5.98174408e-02 -4.15055931e-01 5.56283593e-01 -4.33514379e-02\\n2.03015715e-01 -1.35415614e-01 2.55813971e-02 -1.40815333e-01\\n-8.98338407e-02 2.52024114e-01 9.21302661e-02 1.23844974e-01\\n-2.89417446e-01 -3.49989027e-01 -2.00177819e-01 1.58439115e-01\\n-2.45057851e-01 1.26774803e-01 -6.29183054e-02 -7.21169040e-02\\n2.74072617e-01 6.64618015e-02 -4.47570652e-01 2.10469663e-01\\n-7.21503794e-02 -8.29077959e-02 -8.59995261e-02 2.75797486e-01\\n-2.93421507e-01 2.53080964e-01 -1.57044441e-01 -1.31311998e-01\\n6.18529856e-01 6.30268902e-02 2.67122507e-01 8.32424909e-02\\n3.32832456e-01 -1.82992935e-01 2.35399798e-01 7.28355795e-02\\n-6.47379160e-01 3.39924604e-01 -6.96159676e-02 -1.76996276e-01\\n1.50788009e-01 -6.52457848e-02 4.02419806e-01 -3.99301708e-01\\n4.23512980e-02 -1.76762283e-01 -3.77013922e-01 -3.90612781e-01\\n-1.38292208e-01 -4.55253012e-03 3.48626733e-01 -3.35274756e-01\\n-1.02410972e-01 1.31237820e-01 -5.66043854e-01 -1.37590781e-01\\n2.25182906e-01 1.69641361e-01 1.34779394e-01 1.64307356e-01\\n-1.70788884e-01 -5.86933851e-01 3.75177041e-02 -5.14832139e-01\\n-3.32851887e-01 1.17516086e-01 -2.80529946e-01 2.38662899e-01\\n-9.71932895e-03 -5.29624112e-02 -7.08406717e-02 1.13725357e-01\\n-3.20554852e-01 -5.60691878e-02 2.03177035e-01 9.17061977e-03\\n2.70829022e-01 1.08943351e-01 -3.45430225e-01 4.56163943e-01\\n-1.87294394e-01 5.38919091e-01 1.47070587e-01 -8.31342936e-01\\n5.59469223e-01 3.13948721e-01 -5.58733344e-02 -3.43235254e-01\\n4.79274243e-01 -4.00877506e-01 -5.58704808e-02 1.51772663e-01\\n-3.87377858e-01 -2.80476034e-01 2.53800601e-01 -2.78361291e-01\\n-2.81463563e-01 5.75637341e-01 9.14451554e-02 1.07370883e-01\\n3.37154686e-01 -1.80153221e-01 -1.20615274e-01 8.44265372e-02\\n-7.07583949e-02 -1.86067492e-01 -5.26866555e-01 2.87042018e-02\\n-4.82162461e-02 -5.52793741e-01 -2.08381623e-01 -3.32626224e-01\\n-1.99947551e-01 -2.82925427e-01 -2.52881765e-01 2.00756013e-01\\n2.04420000e-01 9.10955071e-02 1.83544904e-02 2.61773653e-02\\n-1.15250438e-01 -5.92531860e-01 1.62904970e-02 8.11954439e-02\\n3.75394076e-01 3.38145077e-01 8.01910013e-02 -5.57595566e-02\\n3.50869820e-02 5.96170545e-01 -3.52658510e-01 -2.73097456e-01\\n1.67413682e-01 1.10639408e-01 1.00669228e-02 -1.16643965e-01\\n9.56830382e-02 2.59241343e-01 -2.37467945e-01 9.81889442e-02\\n-6.57907873e-02 -7.92741776e-04 3.36579531e-01 -1.05198823e-01\\n-1.93985954e-01 -1.51368320e-01 -1.36361450e-01 1.82038486e-01\\n-5.21708310e-01 -1.60981879e-01 5.31008303e-01 1.46147728e-01\\n2.23285288e-01 1.87725797e-01 2.13452756e-01 1.77565049e-02\\n-3.58698726e-01 -2.85638541e-01 1.79310322e-01 1.36921391e-01\\n9.31749642e-02 9.06088427e-02 -2.25700848e-02 -6.66758299e-01\\n-2.77519655e+00 -1.10337332e-01 1.66860580e-01 -3.29161227e-01\\n2.17140377e-01 -9.32429284e-02 1.44879431e-01 2.86290012e-02\\n-3.74704540e-01 -4.20185365e-02 -1.38717085e-01 -2.31251165e-01\\n1.41163275e-01 3.19540918e-01 1.53108388e-01 1.79332823e-01\\n1.77289650e-01 -3.01470816e-01 -4.21848670e-02 3.64568651e-01\\n-1.51831150e-01 -7.21845388e-01 1.70545086e-01 -1.09993899e-02\\n2.53006727e-01 3.03034425e-01 -5.17640531e-01 -2.71943510e-02\\n-2.79538572e-01 -2.09871501e-01 8.48889276e-02 -2.38223538e-01\\n-2.32455939e-01 3.75519812e-01 1.09415308e-01 -7.56478831e-02\\n2.76149791e-02 -3.55870277e-01 -1.13731958e-01 -5.31487942e-01\\n1.60500422e-01 -6.68777049e-01 2.65172422e-02 -1.69474214e-01\\n6.86714292e-01 -2.70088643e-01 2.14812130e-01 1.82247490e-01\\n2.10063368e-01 1.25926048e-01 3.93582284e-02 6.15160465e-02\\n-2.85141230e-01 -2.71826684e-01 -1.28897922e-02 -2.36822098e-01\\n5.38971186e-01 4.65720236e-01 -1.80322409e-01 4.98766750e-02\\n2.25087598e-01 -3.34879756e-01 -4.40528959e-01 -2.62675107e-01\\n-1.88246936e-01 -1.56823218e-01 -6.92398310e-01 -4.13495183e-01\\n-1.30033582e-01 -1.74239069e-01 -1.02006376e-01 6.72174275e-01\\n-2.98293412e-01 -2.59953916e-01 -4.24452405e-03 -5.75410008e-01\\n1.99369133e-01 -1.94201767e-01 1.08116962e-01 -2.30487645e-01\\n-2.14138508e-01 -4.74923044e-01 1.33092105e-01 1.00157000e-02\\n-1.93718731e-01 -1.62506729e-01 -1.77620798e-02 -1.71441704e-01\\n-3.43611836e-01 -5.86036921e-01 3.44925344e-01 1.20492041e-01\\n3.96972626e-01 4.69363779e-02 3.34340870e-01 -1.11382455e-02\\n3.60106289e-01 -3.13037038e-02 6.22436777e-03 -3.70883584e-01\\n1.79541141e-01 8.82214960e-03 5.56302130e-01 -2.44292930e-01\\n1.27780493e-02 7.05853626e-02 -2.82580554e-01 -1.36823833e-01\\n3.88727278e-01 -2.23391242e-02 6.19570166e-02 -1.66202426e-01\\n2.05229357e-01 -4.58747149e-01 -1.30375311e-01 1.65230200e-01\\n4.43131179e-02 6.77523375e-01 -4.16008942e-02 -4.21186328e-01\\n-1.83238894e-01 3.16430569e-01 -6.59267008e-02 -8.21967870e-02\\n-7.46318474e-02 9.77431089e-02 -2.15143725e-01 1.91480279e-01\\n3.06648500e-02 -1.66869521e-01 -2.76122332e-01 -7.78544247e-02\\n-1.46408796e-01 3.23852718e-01 2.02291578e-01 1.14144728e-01\\n-5.57592325e-02 -3.83589447e-01 -9.61961821e-02 2.08677620e-01\\n2.09923089e-01 4.64028478e-01 1.69972360e-01 -1.89862594e-01\\n4.54692133e-02 3.93027455e-01 -1.45257831e-01 2.45924011e-01\\n-3.09919655e-01 1.75551698e-01 -5.66761136e-01 -2.70698786e-01\\n-2.71877080e-01 -3.03254485e-01 1.16155580e-01 3.76809895e-01\\n1.51557207e-01 -1.68129764e-02 9.53474641e-02 -3.95244837e-01\\n2.83897728e-01 5.20509332e-02 1.40660033e-01 8.00021589e-02\\n-3.94861028e-02 5.74023128e-01 5.09581864e-02 -2.03370988e-01\\n-7.99093693e-02 -4.69647944e-02 -1.80905282e-01 -3.05113494e-01\\n9.87422466e-02 -4.90737885e-01 -1.66682899e-01 4.42647755e-01\\n1.23492286e-01 -1.92200273e-01 -1.95188433e-01 2.18507081e-01\\n4.89884876e-02 -2.89364845e-01 -3.24387193e-01 4.84060012e-02\\n2.61976510e-01 4.68968824e-02 2.73760647e-01 -5.56879044e-01\\n-1.26709258e-02 -2.56102979e-02 1.69508532e-02 4.04951125e-01\\n2.11294182e-02 6.09982572e-02 -2.00466603e-01 -1.17686883e-01\\n5.97051084e-01 -6.98316693e-02 -5.69114387e-02 6.60267025e-02\\n1.42910182e-01 -1.70416787e-01 -4.80897933e-01 5.22442907e-02\\n-9.41925347e-02 -1.21526226e-01 2.41203755e-02 8.53441432e-02\\n1.65352017e-01 7.04902634e-02 -4.88290489e-01 -1.86702341e-01\\n-2.39456803e-01 -4.94838655e-02 -1.20175853e-02 -4.62429106e-01\\n-4.89787236e-02 -8.33494663e-02 -6.09166503e-01 2.25659162e-01\\n-1.58647880e-01 -3.67948674e-02 2.66746104e-01 3.21435146e-02\\n-2.80413896e-01 -1.56015754e-01 3.99671681e-02 2.17584133e-01\\n-3.43022466e-01 -3.79607767e-01 4.60075289e-02 -9.84329522e-01\\n2.25995094e-01 -6.46049902e-03 -1.35461912e-01 8.05633217e-02\\n-1.11532092e-01 -7.15237141e-01 1.51123598e-01 -4.37641591e-01\\n-8.37169439e-02 8.60385597e-04 -2.95032054e-01 -3.49341452e-01\\n9.68855023e-02 -1.02252796e-01 -3.19345236e-01 3.00913244e-01\\n-3.52333456e-01 3.30781519e-01 -1.37406647e-01 5.24273142e-02\\n2.41376664e-02 -2.55426466e-01 1.65821537e-01 -3.01188260e-01\\n-3.95204961e-01 -1.82450891e-01 -2.64464259e-01 -3.27495158e-01\\n-3.50806713e-02 -2.43990958e-01 -5.17659411e-02 4.33811322e-02\\n3.10863435e-01 1.02716655e-01 -1.78452179e-01 -2.85352111e-01\\n1.33632943e-01 -5.70511639e-01 -2.22930796e-02 -1.45399988e-01\\n-4.52062041e-02 -8.98910612e-02 2.48574048e-01 1.16397277e-01\\n1.99484110e-01 -3.37451100e-01 4.31722999e-01 -3.17148328e-01\\n-4.53984588e-01 -9.11324397e-02 1.61628556e-02 -7.21414685e-02\\n4.94503856e-01 -5.14025092e-01 1.12358173e-02 3.09840083e-01\\n9.26969051e-02 7.03378469e-02 1.99127853e-01 -1.70961887e-01\\n-6.12348840e-02 1.92195103e-01 -5.18261135e-01 9.51326787e-02\\n7.81677723e-01 2.55417377e-01 7.68995956e-02 2.77607024e-01\\n1.71848923e-01 2.76825726e-01 5.24686217e-01 -4.26241495e-02\\n-1.72658205e-01 3.06076884e-01 7.64827803e-02 -5.40473819e-01\\n-1.25483766e-01 -7.31042027e-02 -2.27179766e-01 -3.72928888e-01\\n6.22219682e-01 4.14932251e-01 -3.99217665e-01 -3.26644540e-01\\n-1.48093089e-01 -1.59417361e-01 3.18318754e-01 -5.12758223e-03\\n-8.26226622e-02 -1.35454178e-01 5.07455885e-01 -5.38714230e-02\\n2.61386603e-01 5.18763125e-01 -1.26101211e-01 -2.20936507e-01\\n1.11522172e-02 1.48350596e-01 3.67786735e-02 4.36480582e-01\\n-1.10091247e-01 2.57297754e-01 -5.18040098e-02 1.52721748e-01\\n-7.16182292e-02 1.59994289e-02 1.61852777e-01 3.99362445e-02\\n2.03661323e-01 1.57298073e-01 4.45208907e-01 4.71800357e-01\\n2.51458406e-01 3.51913571e-01 3.50550234e-01 -4.76007760e-02\\n4.34016287e-01 5.76673865e-01 3.27949792e-01 4.88114990e-02\\n-2.60265246e-02 7.43572563e-02 1.71774849e-01 -6.98684603e-02\\n3.24344397e-01 3.14850032e-01 8.33281428e-02 8.50742459e-01\\n3.26270103e-01 2.96025455e-01 7.23702192e-01 -6.68882012e-01\\n-3.68921161e-01 -6.21692613e-02 5.69745362e-01 -4.75773305e-01\\n1.68197826e-02 1.95360571e-01 -2.47300714e-01 3.05866718e-01\\n-5.56423783e-01 -2.41036192e-01 5.85246310e-02 5.73525466e-02\\n6.30852506e-02 -9.89965945e-02 -1.86393410e-01 2.74570175e-02\\n-1.89841211e-01 -2.20061868e-01 -4.27120984e-01 -2.44485974e-01\\n-1.84991062e-01 -1.10259783e-02 -2.54261494e-02 -1.25100255e-01\\n-9.00371149e-02 -3.44134927e-01 3.53669226e-02 -3.55437817e-03\\n4.31756228e-01 -1.11046948e-01 -3.57174650e-02 -1.01246506e-01\\n2.47886434e-01 2.23003209e-01 7.08459020e-01 5.25083579e-03\\n1.87055558e-01 -1.93847880e-01 -2.23856255e-01 1.78687692e-01\\n4.81785052e-02 8.13700259e-04 6.22576363e-02 3.42204988e-01\\n-2.46085942e-01 -1.69233173e-01 -6.31877035e-03 2.71324813e-01\\n-3.84408534e-01 -8.15595090e-02 -1.18171863e-01 1.70702845e-01\\n2.44063996e-02 7.55726248e-02 -2.56600827e-01 9.18196142e-02\\n-1.91799358e-01 -5.53236604e-01 2.88154751e-01 -1.93021111e-02\\n-1.83167726e-01 8.11275020e-02 2.98031867e-01 1.87106013e-01\\n-2.79088080e-01 -4.22731042e-04 -1.05171204e-01 1.05988942e-01\\n2.71354821e-02 4.22138184e-01 -1.19378939e-01 -3.53337407e-01\\n-2.84294158e-01 3.27000320e-01 -9.72331613e-02 1.20505184e-01\\n-5.05857691e-02 4.55280274e-01 -3.35106440e-02 8.38366151e-02\\n3.68311822e-01 1.45928329e-02 -2.13267386e-01 -3.22517574e-01\\n-6.24984279e-02 -1.42991677e-01 -6.39420673e-02 -8.64267126e-02\\n2.01358914e-01 -3.69508922e-01 -5.21335714e-02 -2.95316964e-01\\n-4.65065874e-02 -3.33761066e-01 -6.11328445e-02 -5.82180917e-04]]',\n", + " 'job_description': 'Zurich | HeadquartersStampfenbachstrasse 42 + 41 43 300 54 40 contact@reprisk.com 8006 Zurich, Switzerland www.reprisk.com Machine Learning Software Engineer (Python) Full time position in Zürich, Switzerland Starting date: by agreement About RepRisk Founded in 1998 and headquartered in Switzerland, RepRisk is a pioneer in ESG data science that leverages AI technology and human intelligence to systematically analyze public information and largest and most comprehensive due diligence database on ESG and business conduct risks, with expertise in 20 languages and coverage of 130,000+ public and private companies and 30,000+ corporations have trusted RepRisk for due diligence and risk management across their operations, business relationships, and investments. Learn more at www.reprisk.com and follow on Twitter: www.twitter.com/reprisk. Job Description As a Machine Learning Software Engineer you will be involved in all aspects of the machine learning application development process within RepRisk, including design, implementation and operation. The role will primarily involve development and maintenance of data processing and language analysis solutions, mainly written in Python. There will be frequent opportunities to work on a broad range of technologies from data processing and integration, machine learning and NLP, databases (SQL) to deployment and operation on a Unix environment. You will benefit from working with an experienced team that will offer support and the scope to greatly enhance your technical skills and knowledge and you will profit from an agile development ecosystem using state-of-the-art open-source technologies. We want someone who is keen to contribute ideas, thrives in a rapid development environment, and who can consistently bring innovative solutions to problems. The position reports to the Vice President of Operations Technology. Responsibilities Design, implement, deploy and maintain machine learning algorithms and infrastructure, from training to prediction Public RepRisk AG, October 2019 Create and maintain technical documentation Software testing and quality assurance Evaluate and identify new technologies Candidate Profile mathematics, statistics, or another relevant discipline with a strong foundation in quantiative methods, modeling, and machine learning/AI (or equivalent experience) Extracurricular projects and experiences that demonstrate your interest in data analysis/machine learning and/or software design and implementation Ability to manage large datasets and advanced experience in the corresponding software packages and programming languages (strong skills in Python and SQL are a requirement) Experience working with Docker, web servers and RESTful applications, as well as having familiarity with continuous integration and deployment (CI/CD). Knowledge of Django REST Framework is an advantage. Strong interest in real-world problems and analytical skills to come up with workable solutions A team player who loves to work in a highly diverse team and across functions and geographies You are reliable, curious, open-minded and goal oriented, while striving to deliver operational excellence and superior quality. What We Offer technology with respect to ESG risks in investments An entrepreneurial, international and young work environment A shared mission to drive accountability and responsible behavior of companies, thus creating positive change Long-term employment opportunity at a growing global company Please note that we consider only candidates with valid working permits or passport holders. Public RepRisk AG, October 2019',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Business Operations\", \"Goal Oriented\", \"Infrastructure\", \"Accountability\", \"Operations\", \"Reliability\", \"Integration\", \"Innovation\", \"Quality Assurance\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Servers\", \"Managing Large Accounts\", \"KM Programming Language\", \"Hyper SQL Database (HSQLDB)\", \"Development Environment\", \"Prediction\", \"Machine Learning\", \"Continuous Integration\", \"Mathematical Statistics\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Business Relationship Management\", \"Maintainability\", \"Dataset\", \"Hostile Work Environment\", \"Software Engineering\", \"Investments\", \"Django (Web Framework)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Data Science\", \"Risk Management\", \"Docker (Software)\", \"Library For WWW In Perl\", \"Machine Learning Algorithms\", \"Due Diligence\", \"Human Intelligence\", \"Electronic Data Processing\", \"Operational Excellence\", \"Technical Documentation\", \"Agile Product Development\", \"Information Technology Operations\", \"Software Design\", \"Software Testing\", \"Algorithms\", \"Unix\", \"Job Descriptions\", \"Long-Term Potentiation\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Cree', 'Xhosa', 'Southern Sotho', 'Wolof']\"},\n", + " {'company_id': '66',\n", + " 'job_title': 'sr. software engineer (jee)',\n", + " 'location': 'Sursee',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.59140545e-01 2.14985952e-01 3.99593562e-01 7.47437701e-02\\n5.97911000e-01 -2.91271418e-01 -1.53353848e-02 2.72424370e-01\\n8.65566544e-03 -3.56101155e-01 1.00290766e-02 -2.18779534e-01\\n-2.08245158e-01 1.02874584e-01 2.83053696e-01 4.66352105e-01\\n2.49129981e-01 1.74954772e-01 -2.08015949e-01 4.80245262e-01\\n1.06187262e-01 -1.34192914e-01 -3.24562639e-02 7.48353422e-01\\n2.94979960e-01 -1.74370455e-03 -1.74593985e-01 -1.98903382e-01\\n-4.08579350e-01 -1.41832247e-01 3.23671609e-01 2.61603445e-02\\n-1.68415487e-01 -4.89255846e-01 5.62287308e-02 1.01798244e-01\\n-3.11282456e-01 5.77073917e-02 -8.58186856e-02 1.42956197e-01\\n-6.93300366e-01 -4.19151723e-01 2.14420065e-01 6.40792251e-02\\n-1.28609091e-01 -2.45959461e-01 1.26493365e-01 -6.68771267e-02\\n-2.13176385e-02 8.53607804e-03 -6.65722191e-01 2.67347455e-01\\n-2.80167311e-01 -2.85073161e-01 3.45911980e-01 5.13616323e-01\\n1.92300528e-01 -6.36415601e-01 -3.47609878e-01 -4.26453382e-01\\n-1.15390606e-01 -8.39847922e-02 -5.38811572e-02 -3.64828050e-01\\n2.15325370e-01 1.45649230e-02 2.03194823e-02 3.17851812e-01\\n-7.65799165e-01 -3.32071185e-02 -9.53334793e-02 1.16522629e-02\\n-3.26856583e-01 3.01859304e-02 -3.28330815e-01 -7.84200057e-03\\n-1.07520677e-01 5.00679970e-01 2.37438474e-02 7.71400481e-02\\n-2.02081069e-01 3.24178129e-01 -4.54307348e-02 4.04399991e-01\\n3.19481462e-01 1.58569843e-01 1.74619496e-01 4.41463858e-01\\n-4.83307630e-01 3.96462828e-01 3.69919166e-02 -2.17701629e-01\\n3.06889057e-01 2.24917248e-01 4.19290185e-01 1.05420828e-01\\n2.42398381e-02 2.40396306e-01 -2.78469265e-01 3.66270870e-01\\n1.47189200e-01 -3.65447611e-01 1.21482708e-01 -1.17198296e-01\\n-4.69425879e-02 5.47754467e-02 -2.67522205e-02 1.17511988e-01\\n-2.18609333e-01 4.09478337e-01 1.97810546e-01 -1.28436059e-01\\n-8.48821551e-02 -4.97678995e-01 -6.63976520e-02 1.03133455e-01\\n4.33529392e-02 2.02133581e-01 3.01330388e-01 -9.63915512e-02\\n2.82894164e-01 1.64732821e-02 8.38655606e-02 9.48516071e-01\\n-3.35577875e-02 1.20503291e-01 -1.55044407e-01 3.20303112e-01\\n2.63782680e-01 -1.58164158e-01 1.66031513e-02 3.27381909e-01\\n1.39746591e-01 -1.17424294e-01 -2.18241856e-01 4.19413358e-01\\n-1.55524299e-01 -1.71532661e-01 -2.89140731e-01 9.24619213e-02\\n-6.92198575e-02 -5.05993962e-01 5.92344463e-01 1.45465240e-01\\n2.37012252e-01 6.38825633e-03 1.36477157e-01 -2.94672195e-02\\n-7.24028274e-02 2.77583450e-01 2.96698846e-02 1.83918700e-01\\n-3.43328983e-01 -2.67430574e-01 -1.49654314e-01 1.95940286e-01\\n-3.05878639e-01 1.03185363e-01 1.07147116e-02 -1.50992379e-01\\n1.66214824e-01 1.92711994e-01 -4.03672278e-01 2.12912083e-01\\n-1.14551313e-01 -1.24027066e-01 4.00168002e-02 3.25854540e-01\\n-1.34027928e-01 3.18210632e-01 4.38608639e-02 -1.61071625e-02\\n4.78085190e-01 2.39609182e-01 1.92840144e-01 -4.08564806e-02\\n4.38337266e-01 -2.28527263e-01 2.08125934e-01 2.31889009e-01\\n-6.04985237e-01 1.79358795e-01 -5.31815784e-03 -2.28794843e-01\\n1.67600304e-01 -3.12883779e-02 4.67690080e-01 -2.56510198e-01\\n-8.61563906e-02 -3.42738748e-01 -4.94056970e-01 -2.92866498e-01\\n-3.28362912e-01 2.96565481e-02 3.75261456e-01 -3.02060932e-01\\n-1.45419016e-01 2.97271937e-01 -4.47354585e-01 -1.12804659e-01\\n2.71004200e-01 2.50776619e-01 3.41000780e-02 6.22081617e-03\\n-1.56346336e-01 -6.63615525e-01 -4.07908820e-02 -5.09478390e-01\\n-5.84851563e-01 2.87754741e-02 -3.68840635e-01 1.04534075e-01\\n-8.30786973e-02 9.01416466e-02 -2.85243019e-02 8.63545388e-02\\n-2.44477659e-01 -1.04726650e-01 2.01141298e-01 4.67919819e-02\\n2.61013299e-01 -1.08078822e-01 -3.25344712e-01 4.67303455e-01\\n-3.16353142e-01 6.82672501e-01 2.46882156e-01 -1.09293807e+00\\n6.89088106e-01 2.80120045e-01 -1.19891099e-03 -3.37090075e-01\\n4.11354214e-01 -5.70863664e-01 -2.83778161e-02 4.35246676e-02\\n-2.52764910e-01 -3.70473385e-01 2.75692254e-01 -1.69052377e-01\\n-3.18890750e-01 5.97497880e-01 1.25928938e-01 -4.00718451e-02\\n3.54555547e-01 -3.58050555e-01 -1.19076304e-01 3.45927775e-02\\n-4.87102680e-02 -1.66204497e-01 -4.86148745e-01 1.73715577e-01\\n-5.69110475e-02 -4.74281609e-01 -9.61758941e-02 -3.04102093e-01\\n-2.13119775e-01 -3.06411415e-01 -2.82633156e-01 3.63916665e-01\\n2.34888583e-01 9.22573432e-02 -8.95299390e-02 1.40345782e-01\\n7.92562962e-02 -7.97855914e-01 7.80948848e-02 6.83736503e-02\\n5.69462359e-01 3.38594347e-01 1.68318823e-01 -4.87911552e-02\\n7.75671229e-02 6.01238906e-01 -2.49276847e-01 -2.78023273e-01\\n-3.53451036e-02 3.79000716e-02 -4.00593802e-02 -5.68204187e-02\\n2.43540078e-01 5.28935730e-01 -3.93423289e-01 5.00212125e-02\\n-3.33835594e-02 -3.29537690e-02 3.91057849e-01 -1.70480490e-01\\n-4.30596888e-01 -1.03494570e-01 1.86453220e-02 2.59832114e-01\\n-6.09304607e-01 -1.91358089e-01 5.62231243e-01 1.69317901e-01\\n2.30401680e-01 1.86170399e-01 1.92530319e-01 -1.98338822e-01\\n-1.86776370e-01 -2.93643475e-01 1.93424359e-01 1.10538065e-01\\n1.25486523e-01 1.33014590e-01 3.25820222e-03 -6.78729177e-01\\n-3.02968431e+00 -1.64733008e-01 2.94037789e-01 -2.30525911e-01\\n1.38884202e-01 -1.49873897e-01 -5.53125553e-02 -1.18580991e-02\\n-2.70127773e-01 1.16413645e-01 -1.40688464e-01 -6.88409507e-02\\n1.84081569e-02 3.30921084e-01 2.82745212e-02 1.77129135e-01\\n1.80618092e-01 -2.13503823e-01 -1.19663276e-01 3.52496922e-01\\n-1.30314440e-01 -7.14205444e-01 1.73913524e-01 -3.09373885e-02\\n1.99755281e-01 1.62980571e-01 -4.18903589e-01 -4.94657829e-02\\n-4.82036546e-02 -2.38112494e-01 1.94168687e-02 -2.55795807e-01\\n-2.45681927e-01 2.40613088e-01 9.24154092e-03 -1.05352113e-02\\n7.51384646e-02 -3.71547103e-01 -1.11809686e-01 -5.63753664e-01\\n1.41792938e-01 -6.57378018e-01 -1.91586614e-02 -4.32715677e-02\\n6.03190958e-01 -3.09732854e-01 1.29175141e-01 1.57157898e-01\\n2.33670622e-01 8.49056467e-02 9.03856941e-03 4.64980714e-02\\n-2.06346691e-01 -3.58047932e-01 -1.63211133e-02 -2.49112368e-01\\n4.83281225e-01 3.02857786e-01 -9.96795893e-02 1.09858528e-01\\n3.09875906e-01 -2.84569860e-01 -4.39362824e-01 -3.44064444e-01\\n-1.50141776e-01 -2.52484530e-01 -7.90437281e-01 -2.75485963e-01\\n-1.84734285e-01 -4.34323102e-02 -2.06440732e-01 6.95610762e-01\\n-3.31079632e-01 -3.30904037e-01 1.27264112e-01 -6.63184166e-01\\n2.99937189e-01 -3.04647893e-01 -4.02918365e-03 -3.18165004e-01\\n-3.24599534e-01 -4.74954665e-01 1.60354897e-01 -1.65417902e-02\\n-2.74585545e-01 -1.35358438e-01 -6.78182691e-02 -3.84551100e-02\\n-2.30980143e-01 -4.17516649e-01 4.58189994e-01 1.58557206e-01\\n2.94039875e-01 1.10753559e-01 5.52804947e-01 -7.60128722e-02\\n3.82173836e-01 7.71620721e-02 5.18296380e-03 -3.62911701e-01\\n1.44410823e-02 2.66282149e-02 5.56607366e-01 -2.48109698e-01\\n-8.46340135e-02 2.94083923e-01 -2.95413554e-01 -1.15545578e-01\\n3.85310382e-01 4.81810793e-02 -7.73006380e-02 2.98006134e-03\\n3.19571048e-01 -3.52579892e-01 -2.11414739e-01 1.63416073e-01\\n1.66518345e-01 8.83441269e-01 4.45842743e-04 -3.81531030e-01\\n-2.82961249e-01 6.38796926e-01 -6.13223985e-02 2.19613742e-02\\n-8.97796676e-02 1.52679458e-01 -4.94410731e-02 3.50327492e-01\\n1.32470559e-02 -3.56396735e-01 -2.83354878e-01 -2.27178603e-01\\n-1.46985963e-01 2.32430905e-01 1.48612052e-01 7.43683288e-03\\n-5.49935624e-02 -3.21658283e-01 -1.65663704e-01 1.60599977e-01\\n2.27022886e-01 4.66034681e-01 1.39568686e-01 -1.82106093e-01\\n1.48305367e-03 3.19706917e-01 -2.24734336e-01 2.59605318e-01\\n-3.10565948e-01 1.62956700e-01 -6.24524832e-01 -2.59586841e-01\\n-1.56687498e-01 -4.39807951e-01 5.45527413e-02 3.30551535e-01\\n2.44172513e-01 3.08549814e-02 1.35955766e-01 -6.46464586e-01\\n3.38027030e-01 1.74484611e-01 6.17844984e-02 7.63140153e-03\\n2.49219523e-03 4.21890378e-01 -5.38765863e-02 -1.72121853e-01\\n-1.30897835e-01 -6.54230863e-02 -2.03455210e-01 -2.54353255e-01\\n2.96545535e-01 -5.21669924e-01 -1.13839313e-01 3.11975479e-01\\n1.83707625e-01 -3.88236582e-01 -2.47944444e-01 2.71010965e-01\\n2.10424930e-01 -1.86878219e-01 -2.47602791e-01 -4.84839194e-02\\n2.94839948e-01 -2.07209233e-02 2.92301089e-01 -3.32095921e-01\\n-1.32310743e-04 -4.67430316e-02 -5.07606864e-02 4.57950562e-01\\n2.44528547e-01 1.12880012e-02 -2.91687906e-01 -1.12961292e-01\\n5.32411635e-01 -1.55245647e-01 -9.33347121e-02 -1.86505675e-01\\n8.93089399e-02 -8.39429051e-02 -4.69422072e-01 1.70883864e-01\\n-3.75418440e-02 -2.58899063e-01 -3.00870743e-02 -3.48422714e-02\\n1.49219573e-01 1.23273708e-01 -4.48829979e-01 -2.56764710e-01\\n-2.78885573e-01 -8.74090269e-02 3.19470644e-01 -2.78574347e-01\\n-4.60292287e-02 1.86245963e-02 -5.86488783e-01 2.59166211e-01\\n-3.09428364e-01 -8.54080915e-02 1.97234765e-01 2.00140357e-01\\n-4.47484851e-01 1.55396014e-02 2.37046815e-02 2.45800689e-01\\n-2.58217573e-01 -3.46178681e-01 -6.11793809e-02 -1.08007526e+00\\n1.00250579e-01 3.05740032e-02 -1.96941704e-01 8.01054761e-02\\n-1.61697119e-01 -7.44671047e-01 8.08203593e-02 -4.16147500e-01\\n-3.62664945e-02 5.67052178e-02 -2.57417828e-01 -3.43923420e-01\\n4.32008021e-02 -1.44574605e-02 -3.70647490e-01 4.33134913e-01\\n-4.63282526e-01 3.00051719e-01 -2.10830808e-01 7.14535713e-02\\n6.97714277e-03 -1.87210009e-01 1.47016302e-01 -3.45265985e-01\\n-3.49844754e-01 -2.67215163e-01 -5.37152410e-01 -3.90266031e-01\\n-1.42886769e-02 -3.11907083e-01 -1.15726091e-01 1.05029717e-01\\n2.95390874e-01 2.23784000e-01 -3.37222666e-02 -4.07550573e-01\\n2.78661817e-01 -4.85380322e-01 1.52519392e-02 -2.73122460e-01\\n3.21673490e-02 -1.08061716e-01 1.85616046e-01 4.64729853e-02\\n1.87275410e-01 -3.97490174e-01 5.02618372e-01 -2.67293811e-01\\n-3.87547612e-01 -1.78973258e-01 -2.45054923e-02 5.07123955e-02\\n2.63544053e-01 -5.58651149e-01 4.14139554e-02 1.52039081e-01\\n1.35533512e-01 -3.73425968e-02 1.83417931e-01 -8.13848432e-03\\n1.92759857e-02 1.72055840e-01 -4.66128856e-01 5.41372262e-02\\n8.94944072e-01 1.32951602e-01 -2.55786832e-02 1.03053764e-01\\n2.35550538e-01 4.54222530e-01 5.70481598e-01 -1.04312629e-01\\n9.89628769e-03 2.27908000e-01 -2.06019282e-02 -6.14049196e-01\\n-1.60267964e-01 -1.81636974e-01 -1.76981032e-01 -3.11468810e-01\\n6.84495211e-01 3.26817751e-01 -4.20823067e-01 -1.60921991e-01\\n-1.10746004e-01 -1.48182601e-01 3.04823130e-01 3.67237208e-03\\n-1.08729653e-01 -1.19788669e-01 4.51514691e-01 3.39987851e-03\\n4.53031182e-01 6.18699610e-01 -2.52691299e-01 -4.84011233e-01\\n-1.07165150e-01 2.07058623e-01 1.65678456e-01 3.47062409e-01\\n-1.18496157e-01 1.72558323e-01 -1.17746241e-01 3.52860764e-02\\n-1.60739735e-01 1.93895459e-01 1.28720105e-01 1.15685619e-01\\n3.92618954e-01 -5.90706058e-02 4.10141736e-01 4.08648849e-01\\n9.46822464e-02 4.82899249e-01 2.76164621e-01 1.27298787e-01\\n3.13044548e-01 4.87805218e-01 3.13855708e-01 1.77488640e-01\\n3.68758999e-02 2.11508989e-01 1.34360701e-01 -2.53728449e-01\\n3.80788773e-01 3.25406581e-01 3.77087981e-01 9.25790608e-01\\n2.13581488e-01 3.42635244e-01 9.78252828e-01 -7.21503735e-01\\n-4.88778800e-01 4.26922366e-02 5.66395104e-01 -3.39419037e-01\\n-6.76623872e-03 2.31389597e-01 -1.66323140e-01 3.66537750e-01\\n-4.85446066e-01 -1.89327180e-01 6.38370812e-02 4.61666919e-02\\n-8.29492807e-02 -1.04809284e-01 -2.70108283e-01 1.14919804e-01\\n-1.98394313e-01 -5.23257181e-02 -2.93915629e-01 -9.04433057e-02\\n-1.27969369e-01 -4.28299233e-02 -1.60277158e-01 -3.93470190e-02\\n-1.01959296e-01 -4.81896013e-01 -1.45679355e-01 -4.53921072e-02\\n4.18310374e-01 -5.80909885e-02 1.24395303e-01 -2.32716799e-01\\n2.37782612e-01 2.75281787e-01 4.97156709e-01 -5.77912554e-02\\n2.11122736e-01 -2.34258294e-01 -2.20230788e-01 1.23899087e-01\\n2.72566676e-02 8.48191753e-02 2.38910504e-02 2.95267016e-01\\n-2.75234580e-01 -9.68883932e-02 9.56616551e-02 4.18630183e-01\\n-2.71179110e-01 -2.43866503e-01 -2.71051615e-01 7.09974840e-02\\n1.35059908e-01 1.75600842e-01 -2.32238725e-01 6.27258420e-02\\n-3.11817944e-01 -6.18101597e-01 4.37010646e-01 -2.62267828e-01\\n-1.68230906e-01 2.02680200e-01 4.16226804e-01 2.00393528e-01\\n-2.70699263e-01 1.06937625e-01 -7.24396408e-02 1.65149331e-01\\n5.91270849e-02 4.23454285e-01 -9.66151133e-02 -2.08272070e-01\\n-2.53871173e-01 3.09258908e-01 -1.79275140e-01 5.09080663e-02\\n-6.06958047e-02 5.15875578e-01 -8.73451307e-03 4.27482948e-02\\n3.30507815e-01 1.04264200e-01 -3.69591087e-01 -3.62218678e-01\\n-1.92903012e-01 -1.87381998e-01 5.12942038e-02 -1.42367920e-02\\n5.29789254e-02 -4.38718796e-01 -5.45011135e-03 -2.13688821e-01\\n5.55509217e-02 -3.55192810e-01 -1.37375101e-01 -3.35964784e-02]]',\n", + " 'job_description': 'Want to work on some of the most in-demand & exciting technologies in the IT industry? Come join us at Ishi Systems. At Ishi, we have built an enduring platform for innovation that pursues excellence to create products, systems and solutions that delight our customers and exceed their expectations. Our engineers solve a variety of complex and challenging business problems with cutting edge technology. We actively explore new and emerging technologies in Big Data No-SQL databases, Middleware Messaging platforms, High Availability Architectures, Advanced Analytics, Machine Learning, and contemporary web and mobile user interface frameworks. Do you take pride in writing quality code and building software that is reliable, testable and maintainable? Do you thrive on creating simple and elegant solutions to complex problems? Are you ready to compete head-to-head with some of the top and most fast-paced and innovative organizations in the industry? Mandatory Skills and Experience 5+ years of experience in application development including analysis, design, coding and implementation of large scale enterprise systems Strong Java language skills – core and advanced Extensive OO knowledge, including design patterns Experience in one or more frameworks such as Spring, Hibernate, JBPM, Drools, Quartz, etc Experience with relational databases and solid SQL skills Solid experience with Unix/Linux, including basic shell scripting Strong communication skills and ability to interface with customers Desired Skills and Experience Experience on user interface frameworks and technologies such as AngularJS, Play, JSF, JQuery, JavaScript, etc. Experience with messaging platforms such as RabbitMQ, HornetQ, Kafka, ActiveMQ Experience developing RESTful services and APIs Experience in No-SQL databases such as MongoDB, Hadoop HBase, Couchbase, etc Experience in application server clustering, performance tuning and scalability design Experience working in agile environments using Scrum, Continuous Integration and TDD/BDD practices Additional languages such as Scala, Clojure, Golang, Python, R',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Writing\", \"Reliability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Test-Driven Development (TDD)\", \"Agility\", \"Hyper SQL Database (HSQLDB)\", \"High Availability Clusters\", \"Shell Script\", \"Analytics\", \"Middleware\", \"Distributed Design Patterns\", \"Continuous Integration\", \"Industrialization\", \"Scale (Map)\", \"Hibernate (Java)\", \"Scala (Programming Language)\", \"Activism\", \"Metal Building Software\", \"Python (Programming Language)\", \"Linux\", \"Maintainability\", \"Drools\", \"Agile Edge Technologies\", \"Application Servers\", \"MongoDB\", \"Scrum (Software Development)\", \"Hornetq\", \"Mobility\", \"Machine Learning Methods\", \"Quartz (Graphics Layer)\", \"RabbitMQ\", \"Clojure\", \"JQuery\", \"Testability\", \"Enterprise Planning Systems\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Apache ActiveMQ\", \"Scalability\", \"Production Systems\", \"Big Data\", \"User Experience Design (UX)\", \"Design Codes\", \"Performance Tuning\", \"Relational Databases\", \"Language Experience Approach\", \"Apache HBase\", \"Additives\", \"Unix\", \"Emerging Technologies\", \"SQL (Programming Language)\", \"User Interface\", \"JSF 2\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English', 'Lao', 'Nyanja', 'Kurdish']\"},\n", + " {'company_id': '51',\n", + " 'job_title': 'product manager - ai and data products',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Publishing',\n", + " 'website': 'www.frontiersin.org',\n", + " 'jobdescription_embedded': '[[-4.01236355e-01 2.87015855e-01 4.39394355e-01 9.88470763e-02\\n4.76421744e-01 -8.49938244e-02 8.12596306e-02 1.96090937e-01\\n-5.44392057e-02 -3.98882926e-01 -1.43993914e-01 -1.83753029e-01\\n-1.58108938e-02 6.74094260e-02 7.12079853e-02 4.88142818e-01\\n3.37462604e-01 5.71313240e-02 -1.51247784e-01 4.22992468e-01\\n1.90616958e-02 -1.94834426e-01 1.66388452e-02 6.99739575e-01\\n4.63335603e-01 -2.39662323e-02 -1.27283514e-01 1.99957825e-02\\n-9.95414332e-02 -2.81736702e-01 3.59253168e-01 3.19542661e-02\\n-1.64493620e-02 -3.80350351e-01 5.11729196e-02 4.86332923e-04\\n-2.13148475e-01 1.05989672e-01 -1.30445600e-01 1.47916153e-01\\n-3.90347302e-01 -8.13534111e-02 4.45378758e-02 -6.05453625e-02\\n-2.10255086e-01 -3.25333446e-01 -4.96872887e-02 -9.94873047e-02\\n1.29596829e-01 1.44078150e-01 -4.87961739e-01 3.60232264e-01\\n-3.02495778e-01 -2.53662050e-01 2.48073369e-01 5.93623996e-01\\n-1.20144878e-02 -4.31212902e-01 -4.85820889e-01 -3.77218127e-01\\n7.94182122e-02 -1.94613367e-01 3.01809549e-01 -2.29129255e-01\\n2.32306495e-01 -8.45196377e-03 2.71647312e-02 2.76663184e-01\\n-6.81997895e-01 -5.88912517e-03 -3.52539837e-01 2.59306766e-02\\n-3.33706915e-01 -7.47505501e-02 -4.26799774e-01 -8.30218196e-02\\n-8.17832127e-02 3.17750216e-01 -6.21341355e-03 1.11685812e-01\\n-2.51950979e-01 3.01139683e-01 -1.96993917e-01 3.46933544e-01\\n1.99890330e-01 1.18254408e-01 3.64616752e-01 4.44880366e-01\\n-2.69150972e-01 5.45547247e-01 1.92063272e-01 -2.69803196e-01\\n4.15234923e-01 6.24892935e-02 3.59981000e-01 4.59041819e-02\\n2.37286568e-01 9.39356387e-02 -2.13887066e-01 1.29903585e-01\\n2.19259098e-01 -2.74659574e-01 -1.23549610e-01 -1.37294561e-01\\n-3.56600210e-02 3.83770652e-02 9.17483345e-02 5.29713556e-02\\n-3.93190980e-01 5.02123713e-01 2.44524833e-02 -2.34544352e-01\\n-1.28471926e-01 -3.33001614e-01 -3.69556956e-02 4.90282886e-02\\n-4.89940532e-02 2.34134138e-01 2.10760027e-01 1.50582701e-01\\n2.01021865e-01 2.43503321e-03 1.35461330e-01 7.58145452e-01\\n1.13273785e-01 3.80898975e-02 -2.81135798e-01 2.47894973e-01\\n1.06203891e-01 -4.52317238e-01 2.18564540e-01 -7.90535659e-03\\n-7.65636936e-02 -1.40001550e-01 -2.28940338e-01 3.17973852e-01\\n-1.49007782e-01 -2.08554149e-01 -2.36900389e-01 1.43334866e-01\\n-5.56822941e-02 -6.30265951e-01 6.06806874e-01 -1.55254275e-01\\n2.04922527e-01 -4.62804474e-02 1.22867286e-01 -5.51203452e-02\\n-1.45845383e-01 2.57596195e-01 1.93511814e-01 2.60994345e-01\\n-2.67605782e-01 -2.41002798e-01 -1.36122763e-01 3.00853282e-01\\n-4.27202165e-01 2.15794832e-01 -1.90160215e-01 -1.76130965e-01\\n3.05705965e-01 1.02462947e-01 -4.25817192e-01 2.19044000e-01\\n-1.91495076e-01 -7.52302706e-02 -2.15498894e-01 5.04195273e-01\\n-1.28268316e-01 1.78646192e-01 1.78774506e-01 3.33063118e-02\\n6.84854388e-01 2.60646313e-01 2.54357636e-01 -2.36474220e-02\\n3.34094405e-01 -5.80014288e-03 2.23529413e-01 7.51067251e-02\\n-6.44975364e-01 2.47253329e-01 -6.83541149e-02 -1.42340213e-01\\n4.72327918e-02 -1.70135722e-01 2.29554504e-01 -4.19607043e-01\\n7.31343590e-03 -1.79721415e-01 -3.39367270e-01 -3.66864711e-01\\n-1.68405503e-01 5.69386594e-02 3.96326423e-01 -3.51168394e-01\\n-5.14275357e-02 1.60805777e-01 -5.66573679e-01 -1.56895116e-01\\n2.52493739e-01 1.83577478e-01 2.64259726e-02 2.20267177e-01\\n-1.09668732e-01 -5.41825294e-01 1.04890645e-01 -4.06251609e-01\\n-4.38534677e-01 6.75804615e-02 -3.94131958e-01 1.56423509e-01\\n2.09375471e-01 3.43195274e-02 -1.28100395e-01 1.52730256e-01\\n-1.57520831e-01 3.57151367e-02 1.53335091e-03 1.74084716e-02\\n2.78731763e-01 1.24772131e-01 -3.79303038e-01 4.88689840e-01\\n-1.46320671e-01 3.93800706e-01 5.80356009e-02 -8.56556058e-01\\n5.28268814e-01 2.44959086e-01 -8.48154724e-02 -3.36754918e-01\\n5.09054780e-01 -2.98091918e-01 -1.92236193e-02 1.17055416e-01\\n-1.95416689e-01 -2.59282053e-01 3.28496575e-01 -2.49662966e-01\\n-3.13444316e-01 5.04077196e-01 3.59492227e-02 2.64932156e-01\\n2.16184884e-01 -1.75906017e-01 -1.68327659e-01 1.61577076e-01\\n-1.38973072e-01 -1.67204887e-01 -6.10741854e-01 4.30010222e-02\\n-8.74697417e-02 -3.42068374e-01 -1.22047454e-01 -5.14169157e-01\\n-1.95201442e-01 -4.88301337e-01 -2.15323806e-01 1.43965036e-01\\n1.78504974e-01 1.68033674e-01 -1.35873824e-01 -8.14716965e-02\\n-8.21794197e-03 -7.41325378e-01 5.82537241e-03 1.01975836e-01\\n4.11420643e-01 2.76292443e-01 1.49665609e-01 -8.51111487e-02\\n7.38791376e-02 5.17667234e-01 -3.67874444e-01 -2.28311971e-01\\n2.49442443e-01 6.95261285e-02 -4.83997092e-02 -2.02582717e-01\\n1.38280876e-02 2.01509789e-01 -2.11457953e-01 3.47246900e-02\\n-2.30344851e-03 -9.57287475e-02 4.63504136e-01 -6.06935360e-02\\n-4.31221187e-01 -1.52278781e-01 -1.13882646e-01 2.97894597e-01\\n-5.34587622e-01 -3.28249931e-01 7.18602657e-01 1.83658019e-01\\n1.23673283e-01 2.00187936e-01 1.20248929e-01 -6.64021894e-02\\n-1.97900862e-01 -3.43581796e-01 4.29987103e-01 4.78257686e-02\\n1.71052232e-01 9.85144824e-02 -6.08210228e-02 -7.01202869e-01\\n-3.65674400e+00 -2.28687212e-01 -2.53579132e-02 -2.08647490e-01\\n2.05655426e-01 -1.00015335e-01 1.40217066e-01 -1.01980209e-01\\n-2.38330975e-01 1.73456326e-01 -1.76072881e-01 -1.05937712e-01\\n-1.81968659e-02 2.25988299e-01 2.41594777e-01 1.91380829e-01\\n2.73708105e-01 -2.61488527e-01 -1.71999745e-02 2.63826489e-01\\n-1.53127134e-01 -6.88936949e-01 1.13314345e-01 5.52272499e-02\\n2.67355025e-01 1.86614707e-01 -3.65598202e-01 -1.40844285e-01\\n-3.95124674e-01 -1.31108403e-01 6.81990832e-02 -1.53861254e-01\\n-2.93632686e-01 2.39228666e-01 2.17268124e-01 -1.33394152e-01\\n-1.84806995e-02 -4.68376637e-01 -1.03572816e-01 -3.45144987e-01\\n1.33822322e-01 -6.60131454e-01 7.57426582e-03 -3.37112583e-02\\n6.35620236e-01 -1.21863276e-01 2.78837264e-01 -6.33863453e-03\\n1.55754060e-01 3.80049460e-02 1.31808102e-01 7.40242302e-02\\n-1.40557498e-01 -2.88098007e-01 -2.96449754e-02 -1.53378323e-01\\n7.52657652e-01 2.92451054e-01 -1.48197263e-01 -1.60030007e-01\\n1.04287848e-01 -3.68480653e-01 -4.45929885e-01 -2.26350904e-01\\n-2.14556694e-01 -1.36174992e-01 -6.55618787e-01 -4.63277936e-01\\n-2.36805573e-01 -1.27850443e-01 -5.51923811e-02 6.52110457e-01\\n-1.96535081e-01 -3.11424971e-01 -1.01561025e-01 -4.19152200e-01\\n2.32776359e-01 -1.09636471e-01 3.25425640e-02 -2.36157835e-01\\n-2.63167739e-01 -4.17800069e-01 7.54241571e-02 1.03517123e-01\\n-9.46301967e-02 -1.96282819e-01 1.24833159e-01 -7.48359710e-02\\n-3.68689358e-01 -4.39635903e-01 3.95750582e-01 1.25993297e-01\\n2.91576385e-01 2.33012438e-02 3.30586791e-01 -8.31006281e-03\\n2.39797741e-01 -3.40751410e-02 -1.08806640e-02 -4.96363282e-01\\n4.75334004e-02 1.12056039e-01 5.60755968e-01 -1.29822075e-01\\n-1.08713321e-02 7.60848671e-02 -1.85606450e-01 -1.45961538e-01\\n5.46629548e-01 -6.30770847e-02 5.16788512e-02 1.40532907e-02\\n2.02252537e-01 -3.17024231e-01 -2.08124191e-01 6.45948499e-02\\n6.71973825e-02 7.36087024e-01 -1.59884095e-02 -3.76228154e-01\\n-1.62754938e-01 4.37781185e-01 -6.69209659e-02 1.57638922e-01\\n-1.71262294e-01 1.22721314e-01 -1.80247664e-01 2.77977943e-01\\n8.39399695e-02 -1.67263046e-01 -1.76014960e-01 -1.34624451e-01\\n-1.46271884e-01 2.63368845e-01 2.86168098e-01 1.40139401e-01\\n-9.69307423e-02 -4.46446687e-01 -2.16117203e-01 2.17374980e-01\\n2.24043161e-01 5.17161012e-01 1.99186727e-01 -2.67839551e-01\\n8.02960247e-04 3.04621756e-01 -1.24134190e-01 2.65025437e-01\\n-2.55736709e-01 2.12695926e-01 -5.59670150e-01 -2.11667985e-01\\n-2.42610991e-01 -3.90370101e-01 9.64280665e-02 4.17320013e-01\\n8.79301876e-02 -6.66142330e-02 -6.05605915e-02 -4.26920533e-01\\n2.63435781e-01 9.82398912e-03 1.97889522e-01 9.96484049e-03\\n-6.82526603e-02 6.13374352e-01 -9.89310443e-02 -1.30804762e-01\\n-1.93908393e-01 4.22899686e-02 -8.62748623e-02 -1.28480375e-01\\n8.77488479e-02 -4.42295223e-01 -2.80523021e-02 3.32474947e-01\\n3.15771997e-01 -1.74641520e-01 -1.22721627e-01 2.68373668e-01\\n-2.28046402e-02 -4.74802762e-01 -2.73135722e-01 3.56485136e-03\\n3.01194370e-01 2.58758925e-02 2.69845814e-01 -3.33348691e-01\\n9.43511575e-02 -5.89743853e-02 2.90337913e-02 3.97190601e-01\\n-1.83273815e-02 4.49931063e-02 -4.37064730e-02 -1.21281475e-01\\n4.45687264e-01 -4.44673076e-02 -1.40645295e-01 1.42325126e-02\\n1.81018263e-02 -3.67516041e-01 -6.05409622e-01 -3.56025100e-02\\n-3.16698737e-02 -2.70098209e-01 2.09108382e-01 1.61890775e-01\\n-7.90996850e-02 1.66019112e-01 -5.62680006e-01 -1.81347460e-01\\n-2.81549752e-01 -1.45219624e-01 6.27622306e-02 -6.03503585e-01\\n-2.82929420e-01 -5.30891418e-02 -5.02614975e-01 2.13011369e-01\\n-2.92041469e-02 -1.70365110e-01 1.69536889e-01 7.23993704e-02\\n-1.79092616e-01 -1.92488715e-01 1.15020201e-01 2.22151116e-01\\n-2.27764904e-01 -2.48008877e-01 1.28186703e-01 -1.04188812e+00\\n1.96785599e-01 2.32199371e-01 -2.51621187e-01 -4.95044515e-03\\n-7.05215931e-02 -6.55517757e-01 2.00875849e-01 -3.72523427e-01\\n-8.15366060e-02 -3.23916674e-02 -3.22995305e-01 -2.79101133e-01\\n3.78183275e-02 -2.30744258e-02 -2.68617749e-01 4.14375871e-01\\n-2.75039941e-01 3.29757512e-01 -7.70997033e-02 6.44419342e-02\\n-7.06364959e-02 -1.95181310e-01 4.82499525e-02 -3.06231141e-01\\n-4.66505527e-01 -1.92978233e-01 -3.34116220e-01 -2.14218825e-01\\n-6.28525689e-02 -2.08866358e-01 -1.11021660e-01 1.15985885e-01\\n4.15128469e-01 2.11818218e-01 -1.41719997e-01 -2.84112453e-01\\n-7.20839202e-02 -4.29138571e-01 7.08533078e-02 -1.80122077e-01\\n-9.25066918e-02 -1.97212905e-01 2.57932901e-01 1.76073074e-01\\n1.98054284e-01 -3.36628556e-01 4.07548219e-01 -3.47763866e-01\\n-2.79322267e-01 -1.44766927e-01 1.31175667e-01 1.06199503e-01\\n2.65051365e-01 -5.46744108e-01 -1.09651037e-01 3.05856347e-01\\n3.48362625e-02 7.41115212e-02 2.67413020e-01 -1.53471142e-01\\n-6.23319037e-02 2.47210085e-01 -4.49784815e-01 1.82791740e-01\\n7.90020943e-01 1.77784547e-01 -2.99046878e-02 2.36884147e-01\\n1.39117628e-01 3.40837598e-01 4.81783986e-01 -8.34009796e-02\\n-4.48337607e-02 2.87920892e-01 2.49613300e-02 -6.64794385e-01\\n-1.73200935e-01 -1.25498980e-01 -8.55277479e-03 -3.52936089e-01\\n7.34187067e-01 3.26662749e-01 -3.12185675e-01 -2.80074447e-01\\n-2.10296139e-01 -1.81767076e-01 2.68944502e-01 2.31875256e-02\\n5.24091050e-02 2.87809968e-03 4.91007656e-01 -1.22929141e-02\\n1.75310463e-01 5.01890182e-01 -1.55870348e-01 -2.23255917e-01\\n-8.24373513e-02 2.83650935e-01 2.47816481e-02 4.74993169e-01\\n-2.30437815e-01 1.14461705e-01 1.11486495e-01 9.44469720e-02\\n-1.25120342e-01 1.11952990e-01 6.86803088e-02 1.42307699e-01\\n1.78406909e-01 8.13381970e-02 5.86423993e-01 4.35170054e-01\\n2.51753211e-01 4.20752823e-01 3.38247061e-01 -1.17946398e-02\\n3.94381881e-01 5.43840826e-01 4.66669858e-01 7.01498240e-02\\n1.50371045e-01 2.02910721e-01 1.59822196e-01 -5.84913269e-02\\n3.16915870e-01 3.73158216e-01 7.00212717e-02 7.46483922e-01\\n2.82250375e-01 3.44314635e-01 5.58940053e-01 -7.02206612e-01\\n-3.20451438e-01 -2.47690771e-02 5.77786922e-01 -3.23657990e-01\\n8.41432661e-02 4.06111300e-01 -1.96292236e-01 2.42494315e-01\\n-5.46283484e-01 -2.80415386e-01 -5.09143695e-02 -8.96067694e-02\\n1.01188555e-01 -2.05370769e-01 -1.30367950e-01 1.69513971e-01\\n-7.44356439e-02 -1.77003220e-01 -3.85996610e-01 -1.97853759e-01\\n-1.74220532e-01 2.14480430e-01 -7.65559971e-02 -4.10021767e-02\\n-8.85473490e-02 -2.82710433e-01 -1.10612080e-01 -3.82672548e-02\\n1.92532331e-01 -1.22516438e-01 -1.20310448e-01 6.92449510e-03\\n3.35002005e-01 1.72754407e-01 6.82246149e-01 -4.56843227e-02\\n5.11294156e-02 -2.30215982e-01 -1.91492751e-01 1.26143783e-01\\n2.63198912e-01 2.50240341e-02 7.53227100e-02 2.67022550e-01\\n-2.38535285e-01 -2.47321963e-01 6.54906332e-02 2.49994099e-01\\n-3.38833570e-01 -1.65161956e-03 -8.35850984e-02 1.29003733e-01\\n2.38232315e-04 1.45643473e-01 -1.88595027e-01 -1.25197455e-01\\n5.86594939e-02 -5.24764538e-01 2.74103820e-01 -3.11644189e-02\\n-2.42884099e-01 9.54058617e-02 2.39487037e-01 2.23849922e-01\\n-2.20932320e-01 -3.01560853e-02 -2.02141494e-01 4.99859080e-02\\n9.46204811e-02 2.47816861e-01 -1.06561720e-01 -2.86907256e-01\\n-2.60860264e-01 1.85026392e-01 -2.44647376e-02 2.23192260e-01\\n3.64108607e-02 2.19318539e-01 4.80907038e-02 1.23291895e-01\\n3.67851913e-01 1.19100913e-01 -2.45575979e-01 -1.72853202e-01\\n-2.73651183e-01 -1.54123738e-01 -3.06690894e-02 -5.37598245e-02\\n2.20141023e-01 -2.70026267e-01 -1.72143579e-02 -2.31355876e-01\\n-1.75957277e-01 -2.85332471e-01 -7.51812309e-02 2.13145763e-02]]',\n", + " 'job_description': \"Frontiers, a leading Open Access Publisher and Open Science Platform, is looking for a technical product manager to complement our product management team. In this position, you will take responsibility for one of our data and AI driven products. We seek an enthusiastic team player with great initiative and a get-it-done attitude. You must be able to handle a fast-paced work environment while juggling several different tasks at the same time. You also must have an eye for detail and high standards, with highly developed critical thinking, interpretive and analytical skills, and the ability to communicate product vision across multiple cross-functional teams. Key responsibilities Drive your products within the agile development teams, specifying business requirements, prioritizing user stories, supporting development, setting KPIs, proactively approaching users and stakeholders, collecting feedback and acting on it; Work together with our Data Architecture teams to ensure data quality, consistency and traceability; Discover, define and drive implementation of new product features, or evolving existing ones through working with our Data Sciences and other internal stakeholders; Sette hypotheses, test assumptions and break down complex problems into small steps; Take responsibility for the user experience and collaborate with designers and users to create the most appropriate solutions of our users; Be an expert in your product field, including technologies, competitors, and usage model trends; Work on multiple products simultaneously in a fast-paced, dynamic, and energetic environment; Act as the spokesperson for your products and drive feature adoption. Requirements Minimum three years of working experience, either as a product manager or similar position, ideally with a focus on data products; Good understanding of data architecture in both structured and unstructured data sources; Good understanding of machine learning concepts in general, more specific recommendation algorithms; Good understanding of web technologies and APIs; Experience in defining technical specifications describing requirements for data transfer, transformation and storage, with attention to big data topics, Comfortable in working with machine lear Strong analytical skills and independent, entrepreneurial approach; Working language is English - solid communication skills in English, both written and verbal are an absolute must. Benefits 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Access to the latest equipment and international working environment; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Analytical Skills\", \"Sourcing\", \"Energetic\", \"Collaboration\", \"Proactivity\", \"Communications\", \"Critical Thinking\", \"Socialization\", \"Prioritization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Data Architecture\", \"Production Management\", \"Data Quality\", \"Accessioning\", \"User Story\", \"Product Management\", \"Acting\", \"Collections\", \"Open Access\", \"Scheme (Programming Language)\", \"Activism\", \"Yoga\", \"Machining\", \"Idealization\", \"Development Support\", \"Hostile Work Environment\", \"Machine Learning Methods\", \"Unstructured Data\", \"Traceability\", \"Data Science\", \"Professional Development Programs\", \"Business Requirements\", \"Storages\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Transformation Services\", \"Big Data\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"Data Transfer Object\", \"Statistical Hypothesis Testing\", \"User Experience\", \"Eyes\", \"New Product Development\", \"Agile Product Development\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Nauru', 'Malay', 'Haitian']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.89102158e-01 3.22572649e-01 3.43682468e-01 6.86984956e-02\\n5.92749178e-01 -2.08659664e-01 3.58250663e-02 4.97129470e-01\\n-6.44638464e-02 -4.74946946e-01 4.08643410e-02 -1.71334594e-01\\n-4.37656716e-02 3.71621661e-02 9.63330939e-02 3.08770239e-01\\n3.27503592e-01 1.00457862e-01 -1.66354805e-01 3.98700297e-01\\n4.70567197e-02 -1.38178051e-01 7.65723884e-02 7.60696650e-01\\n3.29879165e-01 -9.28746983e-02 2.15136576e-02 1.48786148e-02\\n-2.31885239e-01 -2.16679290e-01 3.39705944e-01 -4.77201212e-03\\n-1.51294162e-02 -4.01163667e-01 1.43252000e-01 6.09085299e-02\\n-2.27890491e-01 -2.40199491e-02 -1.73015028e-01 1.97291002e-01\\n-4.95481133e-01 -2.22580418e-01 7.31049106e-02 2.06695087e-02\\n-2.15066522e-01 -3.35245550e-01 -2.45206859e-02 -1.57748982e-01\\n1.94759235e-01 9.92480144e-02 -4.51073796e-01 2.69024074e-01\\n-1.57857627e-01 -2.71275252e-01 3.08543473e-01 6.26815498e-01\\n-2.00418588e-02 -4.40695554e-01 -5.36836386e-01 -2.85255522e-01\\n8.42656642e-02 -1.43572450e-01 -5.21124043e-02 -4.12282288e-01\\n2.13429764e-01 5.02175614e-02 9.40253660e-02 3.78435612e-01\\n-8.53928745e-01 -1.84599549e-01 -2.53364265e-01 -4.44404595e-02\\n-2.83261210e-01 -1.10290132e-01 -2.95931309e-01 -4.28773127e-02\\n-4.93649468e-02 3.38409245e-01 -5.90877794e-03 -4.20777723e-02\\n-1.89312875e-01 3.47411633e-01 -2.19343811e-01 3.83478492e-01\\n1.62083507e-01 1.74525753e-01 1.99898571e-01 3.34435761e-01\\n-3.53083938e-01 3.67400438e-01 5.86211607e-02 -2.75407046e-01\\n2.20262066e-01 1.86386153e-01 4.54611123e-01 -2.80420277e-02\\n1.06749378e-01 2.13868350e-01 -3.92062217e-01 4.30869877e-01\\n3.81475031e-01 -3.18168133e-01 4.69988100e-02 -5.77898286e-02\\n7.84902945e-02 1.67840011e-02 5.77942282e-02 1.90533012e-01\\n-3.25671464e-01 4.36684102e-01 1.52655467e-01 -2.08124131e-01\\n-1.16687492e-01 -5.00429213e-01 -1.45758063e-01 1.03334613e-01\\n7.00921193e-02 1.75320417e-01 1.98287010e-01 1.44764081e-01\\n2.14559302e-01 -6.63944855e-02 4.77343313e-02 8.63546908e-01\\n-1.00870907e-01 7.56791830e-02 -3.08605552e-01 2.90285677e-01\\n9.98977646e-02 -2.54350811e-01 1.35866091e-01 3.24197292e-01\\n6.54907301e-02 -1.41169176e-01 -1.38822615e-01 3.66803408e-01\\n2.42236219e-02 -2.41679013e-01 -3.26140016e-01 1.55222863e-01\\n-6.09005839e-02 -4.51751173e-01 6.55838549e-01 1.40631840e-01\\n1.64827034e-01 5.78818470e-02 5.73030412e-02 -5.69413006e-02\\n-1.63425356e-01 2.36143649e-01 3.63350939e-03 1.62799269e-01\\n-3.91333103e-01 -1.68635905e-01 -2.19548643e-01 1.91870764e-01\\n-4.14001912e-01 5.32749519e-02 -4.86575738e-02 -1.20030887e-01\\n2.13349715e-01 4.79401723e-02 -3.53974074e-01 2.24503756e-01\\n-7.99422637e-02 7.30464831e-02 8.44773464e-03 3.74231666e-01\\n-1.76427454e-01 2.79214054e-01 -1.75733864e-02 2.15985291e-02\\n5.81681192e-01 1.58919781e-01 1.43750519e-01 -6.24006651e-02\\n4.13707197e-01 -3.33591625e-02 2.45814204e-01 1.24958865e-01\\n-5.98003685e-01 2.83307970e-01 2.59336410e-03 -4.66932356e-02\\n1.24997407e-01 -7.48808086e-02 2.98284024e-01 -2.37781480e-01\\n-5.32882810e-02 -1.28547683e-01 -3.20108086e-01 -2.75983483e-01\\n-3.16191822e-01 -3.88384536e-02 4.02938873e-01 -3.89291346e-01\\n-1.84234902e-01 2.31036231e-01 -5.79838753e-01 7.57405418e-04\\n2.37409532e-01 2.09100649e-01 1.44448936e-01 3.77837680e-02\\n-1.92949131e-01 -5.76581061e-01 1.26486599e-01 -3.88797134e-01\\n-4.09572899e-01 1.52746230e-01 -2.65641958e-01 2.90792108e-01\\n1.63834050e-01 3.61840278e-02 -1.02389731e-01 1.80362970e-01\\n-2.09097371e-01 -6.09170310e-02 1.03239700e-01 4.64447141e-02\\n2.92184651e-01 -2.99485177e-02 -4.63842064e-01 4.03230727e-01\\n-1.75012752e-01 5.36606967e-01 5.61482348e-02 -8.61993134e-01\\n5.12048662e-01 3.68607163e-01 -7.78630897e-02 -2.82100409e-01\\n5.29697239e-01 -3.58763307e-01 -5.78892305e-02 1.30633846e-01\\n-4.00379688e-01 -4.63921905e-01 2.34218016e-01 -1.21433347e-01\\n-2.52138346e-01 4.32421654e-01 3.87500636e-02 1.04235232e-01\\n2.83055067e-01 -1.92810193e-01 -8.84094015e-02 1.31552950e-01\\n-5.00121191e-02 -1.87601835e-01 -4.12615448e-01 -1.74062133e-01\\n-8.13117176e-02 -5.60195506e-01 -9.19006690e-02 -4.31031317e-01\\n-2.58795887e-01 -2.91581243e-01 -2.44507104e-01 2.44405165e-01\\n3.00125420e-01 2.07948416e-01 -1.06471954e-02 9.41217244e-02\\n-1.33113131e-01 -6.71977639e-01 1.46995122e-02 1.98551238e-01\\n3.14397931e-01 2.92355597e-01 9.92879495e-02 1.97510589e-02\\n-4.36277948e-02 6.11395776e-01 -3.25319767e-01 -1.90594807e-01\\n7.74749517e-02 2.00603947e-01 2.65356340e-03 -9.14986432e-02\\n2.17342481e-01 4.71254587e-01 -3.14771295e-01 3.35379094e-02\\n-1.01441391e-01 -1.20668501e-01 4.31504428e-01 4.04901989e-02\\n-4.19822097e-01 -2.27966368e-01 -1.34825483e-01 1.97618738e-01\\n-5.14842153e-01 -2.42890805e-01 5.50206780e-01 2.17365250e-01\\n1.68024316e-01 6.58915266e-02 3.31592351e-01 -1.05985023e-01\\n-7.17081130e-02 -2.73263007e-01 1.78925306e-01 1.12347141e-01\\n1.01773366e-01 1.49198771e-01 -8.95736367e-02 -6.67877674e-01\\n-3.40427327e+00 -1.23453051e-01 2.77135253e-01 -2.96220213e-01\\n1.18098922e-01 -8.04301277e-02 5.10709500e-03 -7.65916482e-02\\n-3.53036672e-01 -2.71440074e-02 -1.78821564e-01 -9.39929187e-02\\n1.20726004e-01 3.11975926e-01 1.31867751e-01 1.53629094e-01\\n1.79227531e-01 -2.27882341e-01 -3.51826958e-02 3.75247985e-01\\n-1.56780422e-01 -5.70262909e-01 1.48272887e-01 -7.54080191e-02\\n2.79952943e-01 2.96422094e-01 -3.77056092e-01 -6.48013726e-02\\n-2.42913052e-01 -1.44979417e-01 1.84555992e-01 -1.48825243e-01\\n-1.85628921e-01 3.24672729e-01 1.52303696e-01 3.89751978e-03\\n1.35136038e-01 -3.90241951e-01 -1.05719112e-01 -4.07836050e-01\\n1.19719192e-01 -6.53440177e-01 -1.27276003e-01 -5.93451150e-02\\n6.80754721e-01 -3.91052514e-01 1.52327970e-01 4.89618368e-02\\n1.07837066e-01 1.36217833e-01 4.42412263e-03 7.20952377e-02\\n-1.63893029e-01 -1.88572228e-01 -3.67531255e-02 -9.70066711e-02\\n5.59287727e-01 4.63393331e-01 -1.20574407e-01 -7.64947012e-02\\n1.90266746e-03 -4.19158578e-01 -5.18979967e-01 -2.36372352e-01\\n-1.14190236e-01 -3.75748605e-01 -5.38603425e-01 -4.67436731e-01\\n-1.72307074e-01 -2.84735765e-02 -8.87352601e-02 6.40908778e-01\\n-3.14416856e-01 -3.44260871e-01 5.55557944e-02 -5.15688539e-01\\n2.14485392e-01 -1.99642077e-01 -1.65354405e-02 -1.55966640e-01\\n-3.50134224e-01 -4.94431198e-01 -5.75276930e-03 -4.03048880e-02\\n-1.17348514e-01 -2.84547716e-01 8.50421190e-02 -9.62380841e-02\\n-2.38804758e-01 -5.52522302e-01 4.58003640e-01 2.36935228e-01\\n2.94671685e-01 9.25478935e-02 4.33803797e-01 -2.94244830e-02\\n3.87070149e-01 -9.13835987e-02 -8.20490941e-02 -4.75168198e-01\\n-9.01101250e-03 -1.21459793e-02 5.50556958e-01 -2.51636952e-01\\n1.83209591e-02 1.07621066e-01 -2.72569478e-01 -8.92712921e-02\\n3.05585384e-01 8.60859081e-02 -2.17219368e-02 -2.42850915e-01\\n3.86937767e-01 -1.83028385e-01 -2.52983630e-01 1.28757015e-01\\n1.13671571e-01 6.53700590e-01 3.36460955e-02 -4.43137437e-01\\n-1.42225295e-01 5.41446328e-01 1.83623265e-02 -9.17544961e-02\\n-1.63579002e-01 1.15149036e-01 -1.77037731e-01 1.51949599e-01\\n9.27381217e-02 -8.33117962e-02 -2.19866872e-01 -1.21244967e-01\\n-1.15589291e-01 3.11746120e-01 1.00142680e-01 7.01145604e-02\\n-6.82803541e-02 -5.08234859e-01 -1.28546730e-01 2.25481898e-01\\n1.23689227e-01 3.65664780e-01 1.79882243e-01 -3.48038673e-01\\n-4.07255627e-02 3.43279779e-01 -1.33009955e-01 1.18463516e-01\\n-2.94061244e-01 1.42191038e-01 -5.66983998e-01 -2.16531634e-01\\n-2.72350937e-01 -4.73580062e-01 9.00574401e-02 3.07187706e-01\\n1.20158635e-01 8.23580846e-03 1.54008508e-01 -4.86676753e-01\\n3.02419186e-01 2.01116204e-01 2.20532343e-01 1.30261317e-01\\n1.04355570e-02 4.85248536e-01 -4.08104993e-02 -1.69405416e-01\\n-2.37413377e-01 1.73717156e-01 -1.20568082e-01 -2.15614751e-01\\n8.96191970e-02 -4.46402729e-01 -1.36305273e-01 3.11919212e-01\\n9.13098454e-02 -1.75334379e-01 -2.81290799e-01 1.24901235e-01\\n1.77733582e-02 -3.96792680e-01 -2.58859605e-01 -3.88166010e-02\\n3.31468195e-01 8.32816511e-02 3.06448132e-01 -3.98189247e-01\\n-6.95386678e-02 -3.85986008e-02 -1.26990139e-01 4.79964912e-01\\n6.83832541e-02 4.05992419e-02 -2.45811284e-01 -1.47399843e-01\\n3.92803520e-01 -4.07372788e-02 8.05737264e-03 -1.38660356e-01\\n1.00815907e-01 -2.91646540e-01 -5.76804101e-01 5.48911616e-02\\n8.79654754e-03 -1.61694512e-01 -9.58793983e-03 4.99398150e-02\\n1.11470535e-01 1.39742896e-01 -5.87651134e-01 -3.01165879e-01\\n-2.59002030e-01 -1.13334894e-01 7.17857555e-02 -4.02751476e-01\\n1.94065226e-03 -3.93000320e-02 -5.03884733e-01 2.93441981e-01\\n-3.06661218e-01 -2.74443738e-02 5.94434701e-02 6.70292675e-02\\n-4.42892879e-01 -1.49410471e-01 6.85130805e-03 2.62579530e-01\\n-2.31299803e-01 -2.98144698e-01 -8.35620239e-03 -9.78533506e-01\\n1.12062857e-01 -1.38391986e-01 -1.90602630e-01 1.30227163e-01\\n-1.11594066e-01 -7.66904294e-01 7.70014971e-02 -4.23831254e-01\\n-1.09480612e-01 2.77136303e-02 -1.78155780e-01 -3.96050751e-01\\n1.04108267e-01 -4.67281602e-02 -3.75994712e-01 3.17324787e-01\\n-4.02373970e-01 4.30548370e-01 -1.05763279e-01 1.14853121e-01\\n-6.76466078e-02 -3.37308347e-01 8.88355002e-02 -4.53499675e-01\\n-4.58952814e-01 -1.42902657e-01 -3.17048341e-01 -2.16562524e-01\\n-4.70679514e-02 -3.29149067e-01 -1.36875525e-01 8.73699263e-02\\n2.77855098e-01 6.08882904e-02 -8.87329355e-02 -2.30748579e-01\\n1.26305848e-01 -5.17383516e-01 8.54457989e-02 -9.52324122e-02\\n6.88783899e-02 -1.34683624e-01 1.83235601e-01 1.67628780e-01\\n2.16897056e-01 -4.07795638e-01 3.05683672e-01 -2.55069941e-01\\n-3.37445498e-01 -2.94581223e-02 2.05443110e-02 -9.77253541e-02\\n3.67869318e-01 -4.55028176e-01 8.15289766e-02 4.22715455e-01\\n1.35174692e-01 2.31874567e-02 2.34063357e-01 -1.02540761e-01\\n-4.27680537e-02 2.50943691e-01 -2.18028829e-01 1.20252252e-01\\n7.65150249e-01 8.76486674e-02 1.92279875e-01 1.05081812e-01\\n7.75873289e-02 4.91746753e-01 5.26553631e-01 1.11673297e-02\\n-1.12475725e-02 2.69566923e-01 1.51175171e-01 -5.53785741e-01\\n1.87736098e-03 2.10916400e-02 -2.96673566e-01 -2.98183978e-01\\n6.23176038e-01 5.14166594e-01 -4.80758458e-01 -2.30834574e-01\\n-1.10985503e-01 -1.80588260e-01 2.56579489e-01 -1.70540977e-02\\n5.01656011e-02 -2.52146810e-01 4.68752444e-01 -1.70893092e-02\\n2.91347921e-01 5.04788339e-01 -2.01266304e-01 -4.36163902e-01\\n-5.57570830e-02 2.42272690e-01 6.49423851e-03 4.19977367e-01\\n-1.96958572e-01 2.48409212e-01 -1.12001345e-01 1.35546133e-01\\n-1.45791426e-01 1.03251167e-01 1.28817901e-01 6.72832951e-02\\n2.18418181e-01 4.52886075e-02 5.25325418e-01 5.55955529e-01\\n3.54622275e-01 4.35943604e-01 3.39612544e-01 3.76432128e-02\\n4.22105312e-01 5.08259773e-01 3.52312207e-01 1.35431975e-01\\n6.53752452e-03 2.02182055e-01 1.19915195e-01 -1.17612153e-01\\n4.19639379e-01 4.43566322e-01 1.58008561e-01 9.35155213e-01\\n3.11161578e-01 2.67721802e-01 7.23753572e-01 -6.80542946e-01\\n-2.62681186e-01 4.18906137e-02 4.55183804e-01 -3.75722319e-01\\n-1.74890086e-01 5.74589111e-02 -1.44293889e-01 2.68932730e-01\\n-4.09265846e-01 -1.80526927e-01 -3.05157080e-02 2.02174395e-01\\n-1.10508114e-01 -1.87201574e-01 -2.70406097e-01 -1.42553879e-03\\n-1.53703019e-01 -1.12835959e-01 -4.81709242e-01 -3.57812122e-02\\n-2.53656954e-01 -1.37490965e-02 -1.10262230e-01 -7.71029294e-02\\n-5.15156388e-02 -4.24429059e-01 -1.02144532e-01 2.31922809e-02\\n2.51375049e-01 -1.59547374e-01 -6.03739992e-02 -2.26317048e-01\\n2.75582910e-01 2.23700479e-01 5.12707114e-01 8.10625926e-02\\n4.93026860e-02 -3.21511418e-01 -1.84924185e-01 1.76770315e-01\\n-3.30614448e-02 1.20313875e-01 8.11151788e-02 3.81365865e-01\\n-3.59658450e-01 -1.57756791e-01 1.26158029e-01 5.05666256e-01\\n-4.15962398e-01 -5.99429011e-02 -2.17363805e-01 1.96478471e-01\\n1.67586699e-01 1.13166049e-01 -1.50309250e-01 2.08142144e-03\\n-1.48002848e-01 -4.37538445e-01 2.74954736e-01 -4.93658446e-02\\n-1.13676094e-01 1.15721688e-01 2.16775492e-01 1.81813806e-01\\n-2.20195144e-01 1.62313543e-02 -1.33789089e-02 2.45802268e-01\\n7.06153736e-02 4.13320750e-01 -1.82809949e-01 -3.51099581e-01\\n-2.05129609e-01 2.12871283e-01 -1.78027332e-01 5.29427081e-02\\n-7.38736149e-03 3.21941763e-01 1.00707794e-02 7.08279312e-02\\n4.11218345e-01 -9.13877413e-03 -2.07779884e-01 -1.65849954e-01\\n-1.56093091e-01 -2.72005826e-01 -4.59868386e-02 -2.32684389e-02\\n2.07152620e-01 -3.17763269e-01 -4.40726355e-02 -4.98216897e-02\\n-5.48002087e-02 -3.57993126e-01 -1.61693580e-02 -8.79636183e-02]]',\n", + " 'job_description': 'We are looking for a talented Software Engineer who is eager to apply his skills in challenging development projects. You implement the GUI of an RFID card reader in C# and TypeScript; you design a scalable device management platform that runs on Azure and is implemented with Microservices or you port automated test cases to a new test robot for a security critical medical device. These are some example projects that are waiting for you at Greenliff. The ideal candidate is able to independently design, implement and test web applications and mobile apps. You are a great team player and you have firsthand experience working in an agile environment. Test before code, continuous integration and code reviews are some of the practices you consider a prerequisite for any successful development project. And you continuously look at new technologies, methods, and tools to improve software engineering best practices. Specifically, you possess some or all of the following: 3 years of working experience in object-oriented software development with C# or Java Experience with web development and/or experience in low-level software development Open personality and ability to work both independently and in a team Experience with Python and Linux a plus University degree in IT, computer science or similar Strong written and oral communication skills in German and/or English We offer: Challenging projects with cutting edge technologies Flexible working hours and 5 weeks of vacation Continuous education and growth A great work environment in a small and winning team Greenliff is a Digital Product Design Agency. Working at the intersection of strategy, design, and technology we create websites, mobile apps, IoT solutions or entire ecosystems. We lead organizations into their digital future and help them to reach their business goals and delight their customers. We look forward to your application Please apply directly online',\n", + " 'soft_skills': '[\"Verbal Communication Skills\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Test Case\", \"Tooling\", \"Object-Oriented Software Development\", \"Agility\", \"Computer Science\", \"Design Strategies\", \"Device Management\", \"Good Agricultural Practices\", \"Continuous Integration\", \"TypeScript\", \"Mobile App\", \"Python (Programming Language)\", \"Linux\", \"Digital Productions\", \"Agile Edge Technologies\", \"Test Automation\", \"Levelling\", \"Web Development\", \"Hostile Work Environment\", \"Microservices\", \"Software Engineering\", \"Design And Technology\", \"Medical Devices\", \"Product Design\", \"C# (Programming Language)\", \"Digitization\", \"Robotics\", \"Scalability\", \"Code Review\", \"Software Development\", \"Test Environment Management\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Java (Programming Language)\", \"Web Testing\"]',\n", + " 'languages': \"['English', 'Aragonese']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data preparation expert',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'job_description': 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " 'soft_skills': '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " 'hard_skills': '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '12',\n", + " 'job_title': 'life sciences automation software - pharmaceutical process engineer',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.35900736e-01 3.37008059e-01 3.87637317e-01 -7.05266744e-02\\n4.77110714e-01 -1.83392093e-02 -1.04695909e-01 2.08108395e-01\\n-7.68365413e-02 -3.44455898e-01 -7.66173601e-02 -1.98261082e-01\\n4.02548071e-03 8.75034928e-02 3.48262899e-02 4.17140365e-01\\n3.62359345e-01 7.67460316e-02 -1.52891204e-01 1.74007729e-01\\n1.21938467e-01 -2.49350797e-02 2.33157575e-01 5.84687054e-01\\n2.31848329e-01 -4.97772954e-02 -3.27665918e-02 9.58649218e-02\\n-1.06037609e-01 -1.89770162e-01 4.55964327e-01 -8.01572762e-03\\n-2.05779925e-01 -2.64053077e-01 2.58314073e-01 8.04430395e-02\\n-1.14821725e-01 4.18429822e-02 -7.01132864e-02 -6.00183532e-02\\n-5.29095411e-01 -1.17083527e-01 -1.73027039e-01 -6.08884320e-02\\n-3.54867399e-01 -2.75044411e-01 2.77083039e-01 -1.41936019e-01\\n5.44821247e-02 4.80018929e-03 -3.21774185e-01 2.96790034e-01\\n-2.87900627e-01 -7.91225955e-02 2.94244647e-01 5.94793916e-01\\n-4.73852381e-02 -3.51227671e-01 -5.07146955e-01 -1.85227767e-01\\n1.59930110e-01 -1.76268563e-01 2.20607519e-01 -1.80243000e-01\\n5.85755110e-01 -2.09433548e-02 4.84173112e-02 2.05056459e-01\\n-7.75063038e-01 7.83669055e-02 -4.07003611e-01 -1.10483669e-01\\n-2.43425816e-01 -1.32555515e-01 -2.07842827e-01 -1.59221321e-01\\n-1.13043100e-01 3.14516187e-01 -7.76443556e-02 1.67311430e-01\\n-9.34980735e-02 3.59002054e-01 -2.57168859e-01 1.72262058e-01\\n1.68889493e-01 3.39223772e-01 3.65950227e-01 2.35787109e-01\\n-4.53440934e-01 3.98028672e-01 2.91345954e-01 -2.76763409e-01\\n2.00713217e-01 7.01319128e-02 2.65346110e-01 -9.70035568e-02\\n1.63380548e-01 1.63652346e-01 -2.14942127e-01 2.29279846e-01\\n2.46203214e-01 -1.74400985e-01 3.36422697e-02 -5.92457354e-02\\n7.26257637e-03 -1.26922518e-01 1.22091852e-01 2.29399741e-01\\n-3.67215037e-01 4.55704421e-01 2.04881504e-02 -3.18729401e-01\\n5.83496764e-02 -3.88833642e-01 -2.01744720e-01 6.85402155e-02\\n-1.13416612e-01 4.04772907e-02 1.96214363e-01 3.94856364e-01\\n1.23173088e-01 -1.24326117e-01 1.56105712e-01 7.08196044e-01\\n-1.37462020e-01 1.19790927e-01 -1.92502156e-01 4.24439818e-01\\n9.44800004e-02 -3.40727091e-01 2.38640606e-01 2.05428332e-01\\n7.01454133e-02 -7.87964836e-03 -2.52978355e-01 2.63734698e-01\\n-9.89286751e-02 -1.12818137e-01 -3.28700334e-01 1.61666319e-01\\n-1.52712256e-01 -5.06042480e-01 5.31722426e-01 -1.04193896e-01\\n8.01361427e-02 -1.31680816e-01 -1.44371137e-01 -1.50106117e-01\\n-1.15930319e-01 3.40936959e-01 9.23551470e-02 2.06011623e-01\\n-1.86371207e-01 -1.52510181e-01 -9.59331915e-02 1.07779384e-01\\n-2.01470375e-01 1.13683388e-01 -2.81006902e-01 -2.78189778e-01\\n4.20310199e-01 2.30339970e-02 -4.30638909e-01 4.34906304e-01\\n-6.00774325e-02 -2.64419150e-02 -1.42654583e-01 4.13706154e-01\\n-1.98500693e-01 1.27646908e-01 -1.28398508e-01 -1.99127212e-01\\n5.98143756e-01 -2.31324248e-02 1.96196914e-01 -9.34875980e-02\\n3.24581265e-01 -4.87264171e-02 2.81129092e-01 4.06281352e-02\\n-7.59101808e-01 5.73871136e-01 -1.82501748e-01 -5.02617732e-02\\n1.54990237e-02 -1.12970166e-01 3.95037711e-01 -3.71667981e-01\\n-5.77603653e-02 -1.95498377e-01 -1.40281096e-01 -4.11225259e-01\\n-2.89209008e-01 -7.41717368e-02 3.17971706e-01 -4.15709108e-01\\n-3.72756459e-02 1.34817138e-01 -6.46854043e-01 -4.18783277e-02\\n2.56557822e-01 2.22594902e-01 2.67689198e-01 1.68186486e-01\\n-9.41838622e-02 -4.31294680e-01 2.00409919e-01 -4.48696613e-01\\n-1.82614788e-01 2.17416182e-01 -1.58664018e-01 2.93320179e-01\\n1.45262748e-01 -5.80975860e-02 -8.68704319e-02 4.13420759e-02\\n-1.42418355e-01 -9.98504460e-03 3.01778376e-01 2.26116627e-02\\n3.36842746e-01 4.27199565e-02 -4.68735844e-01 5.35052240e-01\\n-2.41843283e-01 4.10130799e-01 5.57327494e-02 -8.04191649e-01\\n4.03941810e-01 2.53817439e-01 1.00686356e-01 -3.04099083e-01\\n6.95228636e-01 -2.20153555e-01 -1.56561762e-01 7.45294392e-02\\n-3.67448986e-01 -7.16382116e-02 8.10698047e-02 -1.96044952e-01\\n-2.43990093e-01 6.74310923e-01 1.36479467e-01 8.86844769e-02\\n2.93387264e-01 -9.43230093e-02 -1.20433778e-01 4.87745851e-02\\n-2.58201718e-01 -1.95503145e-01 -4.75753725e-01 -1.37521133e-01\\n-2.86553968e-02 -4.56405431e-01 -2.25885451e-01 -5.19183278e-01\\n-1.17374532e-01 -3.87320369e-01 -1.82109579e-01 1.18372247e-01\\n7.79131949e-02 9.74435359e-02 -3.19947675e-02 2.39691027e-02\\n-2.34714359e-01 -5.91517448e-01 7.88851827e-03 9.48230326e-02\\n1.52245358e-01 3.05394232e-01 2.01217294e-01 -2.02174261e-02\\n4.69543189e-02 4.20185000e-01 -4.21439469e-01 -3.49502146e-01\\n3.08832467e-01 2.59488910e-01 -5.86671233e-02 -1.02392614e-01\\n1.45525143e-01 3.67267072e-01 -1.59046039e-01 9.59858745e-02\\n3.00354101e-02 -8.20549205e-02 2.57226199e-01 -1.07900016e-01\\n-2.57970750e-01 -3.75264645e-01 -1.61657125e-01 2.03459918e-01\\n-5.08236945e-01 -4.07249391e-01 5.25337577e-01 1.68215781e-01\\n8.63135085e-02 2.08342463e-01 3.05325419e-01 -7.59216249e-02\\n-2.16351449e-01 -2.02726424e-01 1.19926125e-01 1.44405857e-01\\n1.96305871e-01 2.69730892e-02 -1.35280758e-01 -4.89148736e-01\\n-3.80569553e+00 -2.33770192e-01 5.29177338e-02 -1.76676452e-01\\n3.05445910e-01 -1.01419598e-01 2.00123683e-01 -3.33707705e-02\\n-3.42259586e-01 1.69641912e-01 -2.14444339e-01 -2.77497500e-01\\n1.71173215e-01 3.21829319e-01 1.88864052e-01 1.68941945e-01\\n-3.53389829e-02 -3.87438387e-01 3.31928805e-02 4.38828111e-01\\n-1.51994139e-01 -7.06387043e-01 1.94189459e-01 -8.34364146e-02\\n3.20870906e-01 2.25700855e-01 -4.99895602e-01 1.07966512e-02\\n-4.47183013e-01 -1.98696867e-01 4.13718447e-02 -1.80278510e-01\\n-1.33627728e-01 2.53090203e-01 1.69051826e-01 -1.81981310e-01\\n6.54638112e-02 -3.27615380e-01 -6.59165904e-02 -4.74358320e-01\\n-2.27376837e-02 -5.34257770e-01 2.12911777e-02 -8.51384252e-02\\n5.39033949e-01 -2.34739721e-01 1.67432725e-01 6.82324544e-03\\n1.40609115e-01 3.25931042e-01 1.89029843e-01 5.45069613e-02\\n-8.86569619e-02 -1.37966007e-01 -4.78763022e-02 -1.15207851e-01\\n6.12861872e-01 4.62603867e-01 -3.06339234e-01 -6.02365285e-02\\n-1.01854324e-01 -3.34493041e-01 -4.66960430e-01 -3.55866492e-01\\n-1.61076143e-01 3.74984071e-02 -3.54818940e-01 -3.39243203e-01\\n-1.56895518e-01 -9.78421941e-02 2.32039131e-02 5.07143855e-01\\n-4.56389457e-01 -3.96192610e-01 -5.53319119e-02 -4.98949766e-01\\n2.50937074e-01 -1.02742687e-01 -3.58765107e-03 -1.02748379e-01\\n-2.64514148e-01 -4.88921732e-01 1.33445278e-01 1.36371344e-01\\n-1.47419348e-02 -5.49635999e-02 1.27054870e-01 -1.40207499e-01\\n-3.96460384e-01 -4.29396451e-01 4.30402726e-01 1.43854171e-01\\n3.96206439e-01 3.11987028e-02 1.06990971e-01 -5.91254905e-02\\n3.97089362e-01 -1.65298671e-01 1.35071084e-01 -6.07805729e-01\\n-7.62010068e-02 2.33849324e-03 4.72364604e-01 -1.74994558e-01\\n-3.92611250e-02 -4.58306298e-02 -2.03699455e-01 -2.76299752e-02\\n3.86376977e-01 5.03855199e-03 1.70189440e-01 -3.33268762e-01\\n3.49835277e-01 -4.16788220e-01 -1.66385472e-01 1.06250435e-01\\n4.80357036e-02 6.89068794e-01 -3.93514931e-02 -2.14028656e-01\\n-1.44119546e-01 4.18790460e-01 -2.60356992e-01 -2.33221322e-01\\n-1.77833766e-01 8.53324533e-02 -3.31511766e-01 2.27675378e-01\\n6.74506724e-02 4.30931002e-02 -2.42472947e-01 1.32029921e-01\\n-1.31067872e-01 1.36223346e-01 3.21124852e-01 1.75222799e-01\\n-8.49614441e-02 -2.95523465e-01 1.08365707e-01 9.46018398e-02\\n2.43121862e-01 2.52556622e-01 6.62851855e-02 -3.58896017e-01\\n-1.81069598e-04 2.66332507e-01 -1.87538445e-01 2.30481535e-01\\n-7.19343424e-02 1.47041276e-01 -3.79531562e-01 -2.32273370e-01\\n-3.67888510e-01 -2.18961656e-01 1.37755536e-02 2.62616426e-01\\n1.71056241e-01 -1.78842872e-01 -6.67372532e-03 -4.30188954e-01\\n1.93353996e-01 1.44242365e-02 3.06897372e-01 -2.59116106e-02\\n-6.11105859e-02 5.96499205e-01 6.01341017e-03 -1.36708945e-01\\n-1.39636293e-01 1.48894534e-01 -1.11623645e-01 -1.13462634e-01\\n-6.85652196e-02 -3.47403765e-01 -1.52224973e-01 4.35668349e-01\\n1.53003991e-01 -1.25101149e-01 -1.39432609e-01 3.45505625e-01\\n-9.86064523e-02 -3.60586196e-01 -1.16926529e-01 -1.31755173e-01\\n1.25144407e-01 4.84942272e-02 2.80050874e-01 -4.58821297e-01\\n-1.80684719e-02 -7.74527714e-02 1.20074406e-01 2.68468440e-01\\n-4.68331985e-02 8.61335173e-02 -3.93752530e-02 -2.37181738e-01\\n2.92800844e-01 2.53261961e-02 -9.10479724e-02 -1.20365992e-03\\n1.49060398e-01 -2.59549588e-01 -4.27665532e-01 -3.48791294e-03\\n-1.37237720e-02 -2.40145892e-01 1.40754748e-02 1.71184510e-01\\n1.44792840e-01 6.83917925e-02 -5.63574314e-01 -1.83828250e-01\\n-4.66734946e-01 -1.82017200e-02 -2.50535399e-01 -5.81244230e-01\\n1.29216343e-01 -7.29485974e-02 -5.18924594e-01 1.59316719e-01\\n-1.49649046e-02 5.63162342e-02 7.35803396e-02 -1.93694048e-02\\n-2.44499564e-01 -9.94506776e-02 2.16344640e-01 -3.57895903e-03\\n-2.31147766e-01 -2.12244138e-01 -6.70703780e-03 -7.90632606e-01\\n2.18441993e-01 -5.97881265e-02 -9.51610059e-02 2.44452455e-03\\n-8.14541206e-02 -7.11369038e-01 2.02497113e-02 -3.18705201e-01\\n-1.84834853e-01 -3.11227739e-02 -1.97904289e-01 -3.07202011e-01\\n1.49713367e-01 -1.59056447e-02 -1.80658430e-01 2.98000932e-01\\n-3.42872143e-01 5.20026684e-01 -3.26913372e-02 1.00753970e-01\\n2.94172298e-02 -2.84903467e-01 1.92626059e-01 -2.75262237e-01\\n-4.21924174e-01 7.37971067e-03 -4.63548228e-02 -9.62580889e-02\\n-1.77730128e-01 -1.33880883e-01 -2.15865105e-01 -2.01330464e-02\\n4.30182636e-01 5.76029308e-02 -3.65230441e-01 4.22918499e-02\\n-6.83179051e-02 -3.43263328e-01 2.23782510e-01 -1.19987212e-01\\n1.49750840e-02 -1.86788350e-01 3.28836918e-01 -2.88086478e-02\\n1.48401514e-01 -3.78792405e-01 5.29286265e-01 -2.65277296e-01\\n-3.24002057e-01 -1.09089389e-02 1.25425637e-01 1.72105610e-01\\n2.08376244e-01 -5.48600197e-01 -1.45842105e-01 3.94683301e-01\\n-1.39353082e-01 7.72094801e-02 3.37335348e-01 -1.26030117e-01\\n-2.96468884e-01 3.43366951e-01 -3.70943069e-01 1.26323476e-01\\n7.66155124e-01 2.97869205e-01 1.57426223e-01 1.50909483e-01\\n9.78701115e-02 2.19130248e-01 4.14472759e-01 8.67191479e-02\\n-2.47956580e-03 4.09959197e-01 2.12304950e-01 -5.11935234e-01\\n-9.20375884e-02 8.37716982e-02 -4.28258255e-02 -3.33010435e-01\\n6.51448071e-01 2.91549683e-01 -3.09152126e-01 -4.65715557e-01\\n-1.75747633e-01 -2.53882527e-01 2.03139484e-01 -1.06264919e-01\\n2.71128327e-01 -3.19559336e-01 5.12916446e-01 -1.54832546e-02\\n1.46046817e-01 6.07490718e-01 -1.27906486e-01 -2.46206671e-01\\n-1.38618708e-01 1.43004909e-01 1.92742318e-01 5.39087474e-01\\n-2.74954382e-02 1.66665956e-01 -9.03924555e-02 1.08849242e-01\\n-2.17100620e-01 2.15558112e-02 1.80767253e-01 8.29418898e-02\\n-2.93203052e-02 2.21380472e-01 4.46094692e-01 4.39561844e-01\\n4.54562724e-01 3.80093098e-01 2.51114637e-01 1.40891988e-02\\n5.74753344e-01 6.53482318e-01 2.04343006e-01 -3.73096578e-02\\n4.64794263e-02 5.07386401e-02 4.50914651e-02 1.24156706e-01\\n3.56246680e-01 3.96617115e-01 -4.95357141e-02 9.61341977e-01\\n3.39802206e-01 2.67889798e-01 6.14306808e-01 -4.71253604e-01\\n-1.92986280e-01 9.19901952e-02 2.31386885e-01 -3.51424992e-01\\n-3.45250741e-02 1.36980742e-01 -1.79892808e-01 1.27114207e-01\\n-3.72603059e-01 -7.30528161e-02 -1.32524520e-01 1.46416232e-01\\n2.17169657e-01 -1.34445995e-01 -1.89865217e-01 6.24035895e-02\\n-4.53813337e-02 -8.10359865e-02 -4.19992089e-01 -3.22834671e-01\\n-3.35428238e-01 -1.21769592e-01 -1.21298581e-01 -1.26673073e-01\\n-4.23744321e-02 -1.74182475e-01 -1.44999444e-01 -8.28145910e-03\\n1.92868739e-01 -3.57203424e-01 -1.44437298e-01 -1.59521893e-01\\n2.49949634e-01 2.11539388e-01 5.31395078e-01 -2.12436467e-01\\n1.58171393e-02 -1.50130272e-01 -1.11224078e-01 -6.27358779e-02\\n9.84670296e-02 1.19290665e-01 5.90902288e-04 6.31619990e-01\\n-2.66676664e-01 -1.66854739e-01 1.55666009e-01 3.90920520e-01\\n-3.72794449e-01 8.33834112e-02 -1.65653452e-02 1.12757854e-01\\n-3.42956148e-02 -1.19648091e-02 -1.49295285e-01 -2.15393212e-02\\n-1.91543877e-01 -5.27579665e-01 2.23589659e-01 1.19450912e-01\\n-1.42973840e-01 3.67619507e-02 3.22634935e-01 3.53008151e-01\\n-1.72056288e-01 -1.65461212e-01 -1.08141162e-01 2.34560803e-01\\n7.09067732e-02 3.29635501e-01 -3.01170141e-01 -1.60320282e-01\\n-2.77844489e-01 1.29179731e-01 -1.37953997e-01 1.08538315e-01\\n4.55515571e-02 2.81522810e-01 7.35567696e-03 2.25403517e-01\\n2.31338650e-01 -1.94068640e-01 -2.12201595e-01 -2.88739264e-01\\n-1.87573195e-01 1.53266974e-02 9.75074545e-02 -1.87262744e-01\\n3.24655086e-01 -2.59338081e-01 -1.57099605e-01 -1.37268424e-01\\n-1.32700861e-01 -3.39882255e-01 7.54081011e-02 5.77072576e-02]]',\n", + " 'job_description': 'For our Business Unit Automation within the division Life Sciences we are looking for a Pharmaceutical Process Engineer. Job description You will execute projects in the pharmaceutical industry and will take responsibility for engineering and construction of industrial process installations (e.g. CIP, SIP, formulation installations, water treatment systems, etc.). In this position, you will be responsible for: Working out process engineering solutions for and together with our customers in the pharmaceutical industry. Setting-up and delivering project related engineering documents for the different project phases. From conceptual design until construction and commissioning. For example: User requirement specifications Process and design concept Utility and process flow diagrams P&IDs Equipment specifications and datasheets Equipment lists Instrument lists Line lists Process & controls descriptions Start-up and commissioning documentation HAZOP/Risk analysis documentation Process related calculations (dimensioning, capacities, safety valves, etc.) Set-up bid calculations As part of the team, you will work together with the process engineering team members, as well as with related teams such as software, E&I, etc. to elaborate solutions, based on predefined budget and planning. You will follow-up the subcontractors’ performance and documentation. During start-up, you take care of the correct implementation, according to the applicable standards (e.g. cGMP’s) and proposed design. You make sure the content and quality of the design documents is according Agidens standards. You maintain permanent contact with the customer, the senior process engineer, the project leader and the implementation team of subcontractors. Conditions You obtained a bachelor’s degree or master’s degree in engineering or you have equivalent expertise by experience. You are fascinated by the process industry. You have experience with clean piping engineering (design, specs, installation, start-up). You are acquainted with applicable cGMP requirements and guidelines within the pharmaceutical industry. You are analytical, have a hands-on mentality and are a good communicator. You have strong organizational skills and are able to work on different projects simultaneously. You work independently, but also act as a team player within a multi-disciplinary team. You are flexible and willing to work on projects at our customers sites. You have a thorough knowledge of MS Office, (MS Project is an added value). Fluent spoken and written German is a must and profound English skills a desirable plus (French is an added value). You have a drivers licence B. Preferably, you have 2 – 3 years of relevant experience within the pharmaceutical industry. Proposal The possibility to team up with passionate, technology-driven people An environment where you can give free rein to your creativity within a well-defined framework and where intrapreneurship is encouraged A learning environment and potential for career development A culture of respect, flexibility and participative management ',\n", + " 'soft_skills': '[\"Intrapreneurship\", \"Construction\", \"Planning\", \"Management\", \"Communications\", \"Organizational Skills\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Automation\", \"Software Design Documents\", \"Value-Added Services\", \"Life Sciences\", \"Conceptual Design\", \"Commissioning\", \"Analytics\", \"Industrialization\", \"Processing Industry\", \"Requirements Specifications\", \"Valves (Piping)\", \"Strategic Business Unit\", \"Calculations\", \"Installation\", \"Web Design Concepts\", \"Industrial Processes\", \"Maintainability\", \"Business Process Automation\", \"E (Programming Language)\", \"Instrumentation\", \"Executable\", \"Datasheets\", \"Process Flow Diagrams\", \"Risk Analysis\", \"Senior TeleCommunications Engineer\", \"Water Treatment\", \"Budgeting\", \"Document Processing\", \"Project-Based Solutions\", \"Document Engineering\", \"CIP System (Stereochemistry)\", \"Civil Engineering Design\", \"Pharmaceuticals\", \"Bidding\", \"Career Development\", \"Dimensioning\", \"Job Descriptions\", \"Process Engineering\", \"B (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Icelandic', 'Norwegian Bokmål']\"},\n", + " {'company_id': '34',\n", + " 'job_title': 'data engineer- integration specialist',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.darwinrecruitment.com',\n", + " 'jobdescription_embedded': '[[-1.71152711e-01 2.59077072e-01 4.16388363e-01 -7.69490823e-02\\n3.07703286e-01 -1.53559878e-01 -7.82030821e-02 6.06545568e-01\\n-9.96811464e-02 -4.49849963e-01 -3.70184891e-02 -3.95281672e-01\\n2.18868678e-04 2.68662870e-01 1.05228372e-01 3.60706151e-01\\n9.42237824e-02 1.36238515e-01 -1.53818026e-01 2.73653269e-01\\n1.60930231e-01 -1.53849214e-01 5.86205088e-02 6.59312248e-01\\n5.31260967e-01 -1.33440066e-02 3.81680839e-02 5.59298806e-02\\n-9.14216340e-02 -3.84958029e-01 4.66182321e-01 -1.14901580e-01\\n-9.32834595e-02 -3.02908510e-01 1.02725141e-01 4.97190058e-02\\n-1.38793200e-01 -6.46172985e-02 -9.63907465e-02 -4.61775213e-02\\n-5.42719722e-01 -1.75796285e-01 3.49913239e-02 1.04533836e-01\\n-2.08092272e-01 -2.97600001e-01 1.96821660e-01 -9.32275504e-02\\n2.35762671e-01 5.86744919e-02 -6.57733679e-01 3.20011437e-01\\n-3.37387294e-01 -2.81886607e-01 2.68857628e-01 5.47582209e-01\\n-2.38885120e-01 -5.98276556e-01 -6.17879868e-01 -1.52781621e-01\\n1.49108842e-01 -1.04773112e-01 -1.30322680e-01 -3.73982161e-01\\n3.63271475e-01 1.29693989e-02 3.98209924e-03 3.46436352e-01\\n-7.72765577e-01 3.69718415e-03 -1.94843113e-01 -4.26489823e-02\\n-3.95691484e-01 -8.22267160e-02 -3.34651560e-01 -3.94917205e-02\\n-9.75010097e-02 3.51627558e-01 3.07708280e-03 -7.21185356e-02\\n-1.63001403e-01 3.65802437e-01 -2.59205550e-01 4.14705753e-01\\n2.92438954e-01 2.38347486e-01 -1.60492063e-02 3.23879331e-01\\n-2.96081543e-01 3.65939170e-01 2.44429991e-01 -3.96939576e-01\\n1.98881313e-01 -4.96961847e-02 4.86192852e-01 1.90917570e-02\\n2.31540948e-01 1.43980980e-01 -3.09347242e-01 2.71583736e-01\\n3.11403215e-01 -2.34819308e-01 2.66075805e-02 -1.99143007e-01\\n8.03522915e-02 5.36019541e-02 5.70297055e-02 3.20211917e-01\\n-2.19905853e-01 3.64961714e-01 5.51870055e-02 -2.15960443e-01\\n-1.21709511e-01 -4.97700125e-01 -1.47314623e-01 2.38448028e-02\\n1.04547702e-01 1.75815195e-01 1.37472615e-01 1.77860588e-01\\n1.84338465e-01 4.06160615e-02 1.23005964e-01 8.62954199e-01\\n-1.40493020e-01 -4.85756509e-02 -3.02644014e-01 3.52278858e-01\\n4.08373214e-03 -3.17683697e-01 2.32073724e-01 1.85354143e-01\\n9.67782587e-02 -2.92167187e-01 -1.68339521e-01 2.12771177e-01\\n-1.61102831e-01 -2.50082761e-01 -4.17719603e-01 2.84140825e-01\\n-1.93968304e-02 -2.24933863e-01 5.89011550e-01 9.93812606e-02\\n1.43918455e-01 6.50120154e-02 -1.02823339e-01 -1.89952582e-01\\n-1.40138790e-01 1.73803419e-01 -1.52087450e-01 1.11914687e-01\\n-3.69631380e-01 -2.56547004e-01 -2.07811907e-01 1.23547815e-01\\n-3.81246895e-01 1.74268618e-01 -1.49396166e-01 -1.21015057e-01\\n4.18723524e-01 -1.14168108e-01 -1.92640841e-01 2.85447180e-01\\n3.89463478e-03 1.60182819e-01 -2.94134542e-02 3.31345320e-01\\n-2.09844619e-01 3.42099309e-01 -5.87093681e-02 -9.90884304e-02\\n4.61123556e-01 -4.16028872e-02 3.11821159e-02 -1.44320950e-01\\n1.80267513e-01 4.77727577e-02 1.61640018e-01 2.96470542e-02\\n-5.76447666e-01 2.92820543e-01 2.83011026e-03 -4.44330536e-02\\n1.38869613e-01 -1.09063186e-01 2.26032838e-01 -3.13107967e-01\\n-1.15058698e-01 -8.43802840e-02 -3.86595309e-01 -2.35815242e-01\\n-2.64304847e-01 -2.47961506e-02 4.45627809e-01 -4.51278210e-01\\n-1.50272965e-01 1.77549198e-01 -5.53063869e-01 2.85115726e-02\\n2.02007353e-01 1.88385651e-01 1.11805320e-01 1.37542784e-01\\n-2.14490488e-01 -5.15240610e-01 1.38313919e-01 -3.98399085e-01\\n-1.31138995e-01 1.14487171e-01 -3.20616782e-01 3.28259110e-01\\n5.96674718e-02 -6.07159622e-02 -2.03210428e-01 2.17002973e-01\\n-1.94583386e-01 -2.28513647e-02 1.21927317e-02 7.74867684e-02\\n3.51046085e-01 8.74352157e-02 -3.97113502e-01 4.87487793e-01\\n-9.72517580e-02 5.61022043e-01 6.30971491e-02 -7.24981010e-01\\n4.42651629e-01 2.24135548e-01 -2.60363314e-02 -4.42214310e-01\\n7.37344921e-01 -3.53578240e-01 -2.57354435e-02 9.15373862e-02\\n-4.80822742e-01 -4.54613119e-01 2.35634044e-01 -1.05681702e-01\\n-3.39600027e-01 6.64669693e-01 5.60881086e-02 1.02770217e-01\\n3.90459120e-01 -1.41438648e-01 -2.71313816e-01 1.11383684e-02\\n-1.62154774e-03 -2.04542488e-01 -5.03658056e-01 -1.23609461e-01\\n-2.11426005e-01 -5.37865937e-01 -8.59451890e-02 -3.01981121e-01\\n-2.93673068e-01 -4.18274969e-01 -2.18557179e-01 3.03434968e-01\\n2.56226629e-01 8.33931789e-02 5.25989197e-02 1.16491862e-01\\n-1.36298001e-01 -6.16499782e-01 -1.39022484e-01 1.04356579e-01\\n3.87485147e-01 1.47009328e-01 2.20717698e-01 -8.24319292e-03\\n5.19653447e-02 6.59284234e-01 -1.24530181e-01 -2.79130071e-01\\n8.75420049e-02 1.09716922e-01 1.65351629e-01 -1.40226439e-01\\n2.32696638e-01 2.24460766e-01 -2.54679888e-01 3.66223678e-02\\n-7.26814270e-02 -6.23075776e-02 2.37096518e-01 2.25473791e-01\\n-3.57738584e-01 -2.89804310e-01 -4.66789864e-03 2.29147524e-01\\n-5.43385863e-01 -2.11731449e-01 5.60509861e-01 2.57135600e-01\\n1.91551670e-01 1.03575282e-01 3.01382005e-01 -1.68373495e-01\\n-7.41636679e-02 -4.68027219e-02 1.54666334e-01 1.94941923e-01\\n5.35463775e-03 1.36478826e-01 -1.01454929e-01 -6.52415574e-01\\n-3.57114458e+00 -1.81091771e-01 1.75098032e-01 -1.76891774e-01\\n2.09762812e-01 -1.25033170e-01 1.91609666e-01 -7.81676322e-02\\n-2.39875764e-01 -1.18186260e-02 -1.19685285e-01 -5.48293181e-02\\n2.93076366e-01 1.38446823e-01 9.21676382e-02 4.02541876e-01\\n1.44647986e-01 -1.33727863e-01 3.53083648e-02 3.76304746e-01\\n-2.50750005e-01 -5.53826392e-01 2.90468931e-01 -1.22193620e-01\\n2.14311957e-01 3.32665056e-01 -3.38045597e-01 -2.24271432e-01\\n-1.74536571e-01 -1.93988010e-01 6.35813251e-02 -3.65835607e-01\\n-1.51361033e-01 3.22549671e-01 1.36473760e-01 -1.39794812e-01\\n1.41401485e-01 -3.94342273e-01 -1.04952216e-01 -4.17705894e-01\\n1.53309062e-01 -6.32243574e-01 1.04331613e-01 -2.03156590e-01\\n8.53200734e-01 -4.28966671e-01 4.46972437e-02 9.94509235e-02\\n1.00573026e-01 2.20298558e-01 -1.07536204e-02 -3.35286744e-02\\n-1.75350592e-01 -3.27491373e-01 -1.33628860e-01 -9.51188877e-02\\n4.61980820e-01 6.10625505e-01 -9.26939994e-02 -4.79603894e-02\\n-3.33344750e-02 -3.18748981e-01 -4.85259414e-01 -3.57924521e-01\\n-2.40831673e-01 -1.85910046e-01 -5.42941809e-01 -2.47600719e-01\\n-1.17731966e-01 -2.30561182e-01 -1.65783614e-02 4.64619875e-01\\n-2.98643589e-01 -3.83568406e-01 -5.20152412e-02 -4.88804728e-01\\n2.69208968e-01 -2.02176441e-02 6.43556118e-02 -1.77715018e-01\\n-2.54451931e-01 -4.87592310e-01 -2.91238073e-02 -5.68962172e-02\\n-1.44326478e-01 -2.59494007e-01 1.25773564e-01 -1.63720563e-01\\n-1.76599905e-01 -6.29992187e-01 4.37002659e-01 1.76657274e-01\\n2.63926655e-01 2.65365541e-01 1.95337191e-01 3.78716104e-02\\n2.19407961e-01 -1.13971390e-01 1.32613629e-02 -3.46973926e-01\\n1.22808494e-01 1.53354719e-01 4.79417801e-01 -1.91011012e-01\\n5.98169342e-02 6.75777346e-02 -1.73175514e-01 -1.37411550e-01\\n2.59265542e-01 1.31003201e-01 7.45701268e-02 -3.67924899e-01\\n2.85730302e-01 -1.45719960e-01 -3.90911639e-01 5.67408502e-02\\n-3.00275330e-02 3.84301126e-01 5.56175336e-02 -3.56553972e-01\\n-2.18456805e-01 4.64878082e-01 -9.67183784e-02 5.80482138e-03\\n-3.76220316e-01 2.02217009e-02 -2.53675133e-01 2.56576717e-01\\n3.00302096e-02 -1.17799245e-01 -2.47220010e-01 -1.42625064e-01\\n-1.93779752e-01 5.08512259e-01 2.10137904e-01 4.71538231e-02\\n-7.13067576e-02 -4.45461154e-01 1.89565215e-02 2.45256722e-01\\n3.72355618e-02 5.13071835e-01 7.99548551e-02 -1.00087404e-01\\n-2.11351481e-03 3.56467277e-01 -2.14506865e-01 1.95239540e-02\\n-2.90812433e-01 3.85810994e-02 -3.91595900e-01 -3.48725021e-01\\n-2.56689012e-01 -3.59533846e-01 9.44098458e-02 4.29551005e-01\\n1.14345752e-01 -3.59961838e-02 -1.46119017e-02 -3.69988292e-01\\n2.86527306e-01 4.25643921e-02 2.26218149e-01 3.01016629e-01\\n1.10752285e-01 4.54041004e-01 1.21399330e-03 -7.97956735e-02\\n-1.84620574e-01 1.78594366e-01 -3.74453515e-01 -3.03144120e-02\\n-2.53215749e-02 -4.48089182e-01 -6.74633458e-02 6.49542093e-01\\n7.50137046e-02 -1.05809487e-01 -1.12398036e-01 1.64656878e-01\\n-1.19954392e-01 -1.76768601e-01 -2.14816317e-01 1.65701091e-01\\n3.38745445e-01 2.50026554e-01 2.13158056e-01 -3.54856759e-01\\n6.37994111e-02 2.65338533e-02 -1.19101182e-01 5.79667449e-01\\n4.31741495e-03 3.38997096e-02 -2.41813958e-01 -3.23847145e-01\\n3.96056861e-01 -2.58092403e-01 2.18026917e-02 3.34138200e-02\\n2.03289390e-01 -1.98848005e-02 -3.41778845e-01 2.04519629e-01\\n-6.83718026e-02 -2.10227937e-01 2.72059860e-03 1.67500845e-03\\n3.21044736e-02 7.10142702e-02 -5.23663521e-01 -2.65473753e-01\\n-2.54672527e-01 4.74446155e-02 -2.35670492e-01 -3.69100273e-01\\n1.75751925e-01 6.04626536e-03 -5.47858655e-01 2.92723000e-01\\n-4.43570614e-01 5.13261370e-02 3.43256921e-01 1.54637471e-02\\n-4.79452133e-01 -1.53569087e-01 3.15713376e-01 2.87715316e-01\\n-1.84810519e-01 -2.89646864e-01 -5.38413040e-02 -8.56701970e-01\\n2.14650288e-01 3.02038770e-02 -2.22917482e-01 3.19190651e-01\\n-4.79739197e-02 -6.74011171e-01 1.95333496e-01 -2.38905013e-01\\n-1.22451685e-01 9.72420722e-02 -1.21902891e-01 -4.03679490e-01\\n-6.95726275e-02 -8.47254917e-02 -2.79416859e-01 4.38870192e-01\\n-4.42463964e-01 2.58094579e-01 2.78225131e-02 2.07660496e-01\\n6.45043477e-02 -3.17549199e-01 1.32011235e-01 -2.90938467e-01\\n-4.47629452e-01 -1.77552968e-01 -3.10834795e-01 -3.72497439e-01\\n1.16414659e-01 -4.20599431e-01 -1.90796748e-01 3.00982624e-01\\n3.45805973e-01 -2.02822611e-02 -6.38294071e-02 -1.12800695e-01\\n3.80007625e-02 -3.81115437e-01 -4.35052253e-03 6.51416602e-03\\n4.66602203e-03 -2.62069423e-02 1.64008364e-01 5.44666573e-02\\n4.29980643e-02 -5.49723625e-01 4.81602848e-01 -4.19432849e-01\\n-2.26034552e-01 1.48321882e-01 6.61489815e-02 -6.79830313e-02\\n3.00375521e-01 -4.42990571e-01 -3.81285436e-02 4.50935811e-01\\n9.10796449e-02 6.09224513e-02 2.62767851e-01 -1.09767817e-01\\n-1.97908625e-01 3.67509395e-01 -1.70611814e-01 6.05265684e-02\\n1.00304055e+00 -2.14897655e-02 1.52759567e-01 2.00660005e-01\\n-2.71367747e-03 2.86099702e-01 4.34633702e-01 6.14842884e-02\\n-2.87592709e-01 3.42851788e-01 2.36451682e-02 -5.57491839e-01\\n1.14695564e-01 -1.58052653e-01 -3.11109990e-01 -3.18486035e-01\\n6.19558752e-01 4.47231114e-01 -4.82976437e-01 -4.03169841e-01\\n3.42688933e-02 -2.16716722e-01 5.55997789e-02 -1.72905147e-01\\n-5.60181448e-03 -1.27126753e-01 4.95528042e-01 5.90575254e-03\\n1.36339828e-01 5.78903556e-01 -1.76307917e-01 -3.27808827e-01\\n-1.41373482e-02 2.02440858e-01 1.49438875e-02 4.51508373e-01\\n-3.02842945e-01 4.27474082e-01 -3.08692530e-02 3.06025203e-02\\n-6.05713297e-03 1.77992076e-01 1.63033485e-01 -7.65712326e-03\\n5.82543798e-02 1.33077458e-01 4.75843310e-01 5.14430046e-01\\n3.47314268e-01 4.94899482e-01 3.53312284e-01 5.21763675e-02\\n5.89324296e-01 4.74195153e-01 5.31556487e-01 2.81544894e-01\\n-8.26004136e-04 -4.97476161e-02 -7.25944191e-02 2.49072045e-01\\n3.13818574e-01 2.85633951e-01 1.31414562e-01 9.76365209e-01\\n3.52537483e-01 1.07621469e-01 5.64574301e-01 -7.23322093e-01\\n-4.51816350e-01 1.82563961e-02 3.32547188e-01 -4.58691448e-01\\n-1.32507592e-01 1.43136457e-01 -2.49556944e-01 8.90053958e-02\\n-5.20679176e-01 -3.37157100e-01 -2.22249955e-01 1.15480043e-01\\n-4.03826647e-02 -1.64336309e-01 -1.74231663e-01 2.49021873e-02\\n-7.53935501e-02 -9.90563259e-02 -4.07484442e-01 -8.82909149e-02\\n-1.38656214e-01 -2.11207524e-01 -1.59648418e-01 -2.80302852e-01\\n-1.96726218e-01 -3.85229647e-01 -1.78397998e-01 7.49048665e-02\\n2.61339247e-01 -1.63265467e-01 7.31439963e-02 -2.13983566e-01\\n2.66460270e-01 2.88125277e-01 6.53630197e-01 7.52120838e-02\\n-1.51959145e-02 -2.68355548e-01 -5.20428270e-02 1.46590069e-01\\n1.92378685e-01 2.23420739e-01 9.24834982e-02 3.05831671e-01\\n-3.70904326e-01 -2.19675362e-01 2.28623196e-01 4.32577282e-01\\n-5.12547314e-01 -4.74465042e-02 -3.28051262e-02 2.64493316e-01\\n5.41851670e-02 1.94024518e-01 -1.43806279e-01 2.18760341e-01\\n-2.75524944e-01 -4.36684132e-01 2.66590297e-01 -7.59546310e-02\\n-1.63114861e-01 4.99261394e-02 1.72031656e-01 2.33015120e-01\\n-2.28625298e-01 3.31269465e-02 8.48588720e-02 3.57343137e-01\\n1.06185026e-01 2.53543824e-01 -2.83006787e-01 -2.42936566e-01\\n-2.48673037e-01 1.90831870e-02 -1.99501142e-01 1.09577954e-01\\n1.13802224e-01 3.33175004e-01 1.67163208e-01 -6.20649457e-02\\n5.03435433e-01 -3.59351449e-02 -1.20591655e-01 -2.58686870e-01\\n-3.16009045e-01 -3.31941068e-01 -1.00793742e-01 -4.25108857e-02\\n2.06314683e-01 -4.46181953e-01 -1.70381352e-01 -2.34620012e-02\\n-3.42031084e-02 -2.90297925e-01 9.29621831e-02 -7.78390169e-02]]',\n", + " 'job_description': \"Currently, I am working with a leading company in the Zurich area, my client has more than 8 million visits and over 180 million page views each month, my client is recognised as one of the leading Swiss digital companies. At the moment my client needs to bring a highly skilled Data engineer to join on a permanent basis. In regards to the team you will be joining, they have around 80 members of staff spread across two office locations in Switzerland, you will be joining a team of around 20 skilled Data Scientists and Engineers. Your daily tasks will include: Maintaining and extending the data lake and data pipelines Supporting the teams with your data engineering expertise Sharing your know-how and learning from others, mainly by pairing and reviewing each other's code They are looking for you to have experience with technologies such as; Python- at a high level of experience Hands-on experience of AWS (CloudFormation, IAM, Lambda, SNS, SQS, ECS) Exposure to AWS data services (S3, Glue, EMR, Athena, Kinesis) Understanding of ETL pipelines Fluent English is required for this role and any German is seen as a plus This is a great opportunity to get into an extremely exciting company who are really looking to build a successful team. If you would be interested in learning more please apply and I will contact you as soon as possible.\",\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"AWS Kinesis\", \"AWS Identity And Access Management (IAM)\", \"AWS CloudFormation\", \"Pipelining\", \"Python (Programming Language)\", \"Digitization\", \"AWS Elastic MapReduce (EMR)\", \"Maintainability\", \"Data Pipeline\", \"Amazon Simple Notification Service (SNS)\", \"Extract Transform Load (ETL)\", \"Azure Data Lake\", \"Data Engineering\", \"Amazon Athena\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'full-stack software engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " 'job_description': \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " 'soft_skills': '[\"Innovation\", \"Operations\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'director data solutions data science - analytics - bi (56)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.90481567e-01 2.48011351e-01 5.61907411e-01 -5.75898774e-03\\n5.63557088e-01 -1.46655619e-01 -3.73666808e-02 3.17813635e-01\\n-9.91410613e-02 -4.93190706e-01 -3.54826404e-03 -2.87803769e-01\\n4.04535681e-02 1.98618278e-01 1.44345403e-01 3.14964831e-01\\n2.81406164e-01 1.39580369e-01 -1.42618835e-01 3.40266287e-01\\n1.24611117e-01 -1.56572193e-01 1.01084262e-01 8.07796001e-01\\n3.99036646e-01 2.28390237e-03 -7.64889866e-02 1.02383167e-01\\n-1.88484520e-01 -2.64993221e-01 4.36564714e-01 -1.92004628e-02\\n-1.71543986e-01 -3.19798648e-01 9.72965509e-02 1.12656325e-01\\n-2.90534556e-01 -8.11100081e-02 -1.77048266e-01 9.81125608e-03\\n-4.87745166e-01 -1.32726625e-01 -7.75407255e-02 7.51893669e-02\\n-3.30263734e-01 -3.78471613e-01 -5.53231426e-02 -5.89691922e-02\\n1.89367145e-01 5.89841455e-02 -4.83574629e-01 2.95367837e-01\\n-3.03528041e-01 -2.72724599e-01 2.53647804e-01 6.54441178e-01\\n4.25396897e-02 -4.27251399e-01 -4.93742883e-01 -3.84264827e-01\\n8.48643482e-02 -9.87113565e-02 1.26467392e-01 -3.52808326e-01\\n2.73116887e-01 -6.65292516e-02 8.03774372e-02 3.12821567e-01\\n-8.79715919e-01 -6.35638535e-02 -3.06566447e-01 -5.22870459e-02\\n-3.50300491e-01 -5.35989366e-02 -5.02461672e-01 -1.74803823e-01\\n-2.03000680e-01 3.97537827e-01 9.04554576e-02 3.63278762e-02\\n-2.44128436e-01 1.72599360e-01 -3.60824227e-01 2.55076736e-01\\n2.00574353e-01 3.29738855e-01 3.01520288e-01 3.54614317e-01\\n-4.59262311e-01 5.39809942e-01 2.45878369e-01 -4.51266438e-01\\n2.62740076e-01 1.49990141e-01 3.60126913e-01 1.01715893e-01\\n2.64211476e-01 1.02569059e-01 -2.15841576e-01 1.73369572e-01\\n2.77826607e-01 -2.78778076e-01 9.98999365e-03 -1.12100184e-01\\n1.57595724e-01 -8.21139142e-02 3.90068479e-02 1.48083836e-01\\n-3.40529531e-01 2.85022616e-01 -6.60990030e-02 -3.71021271e-01\\n-1.18881457e-01 -4.29201752e-01 -6.08860999e-02 2.06952915e-02\\n1.15376040e-02 2.08292931e-01 2.38206357e-01 2.15247571e-01\\n1.87308490e-01 4.33979221e-02 2.41354764e-01 9.09054875e-01\\n-1.07610025e-01 1.84045937e-02 -3.24661672e-01 3.56444180e-01\\n1.18404076e-01 -2.50088692e-01 1.94784343e-01 1.17457107e-01\\n-7.27698654e-02 -1.35376483e-01 -2.23676622e-01 3.57288420e-01\\n-3.41545828e-02 -1.64083570e-01 -3.09303582e-01 2.05705449e-01\\n-1.04196612e-02 -4.56399322e-01 6.90836549e-01 1.53726637e-02\\n1.96204156e-01 -5.08479699e-02 3.96231748e-02 -2.02659190e-01\\n-1.00551531e-01 1.81573540e-01 3.10975760e-02 2.28642672e-01\\n-2.68327713e-01 -2.46693775e-01 -7.49473274e-02 2.65692949e-01\\n-3.35387409e-01 1.23190582e-01 -1.46794677e-01 -3.36749926e-02\\n1.77561596e-01 4.46026586e-02 -3.00410599e-01 1.63564563e-01\\n-9.28508639e-02 -8.54603797e-02 8.25958028e-02 2.91792095e-01\\n-2.61772275e-01 2.45015115e-01 -4.18765470e-02 1.28305368e-02\\n6.39437437e-01 1.50627732e-01 2.66201198e-01 -9.01235491e-02\\n2.45199978e-01 -4.90171462e-02 1.05829425e-01 1.47109672e-01\\n-7.09755480e-01 3.99899811e-01 -8.16899240e-02 -3.15548599e-01\\n9.03508514e-02 -2.50592530e-02 2.34635830e-01 -2.62744904e-01\\n-1.12964958e-03 -1.46729976e-01 -2.27311060e-01 -3.39776695e-01\\n-9.15857553e-02 -7.87522346e-02 3.60117674e-01 -5.40329218e-01\\n-3.60709652e-02 2.08325535e-01 -4.64177430e-01 -7.16918185e-02\\n9.43851620e-02 2.37491518e-01 3.45786437e-02 1.22261435e-01\\n-5.67072108e-02 -5.58922887e-01 9.51402336e-02 -4.39891696e-01\\n-2.56826520e-01 1.15555212e-01 -3.22532892e-01 8.44767094e-02\\n1.00615770e-01 -6.07031137e-02 -6.06143549e-02 1.37698814e-01\\n-2.99845397e-01 7.64429718e-02 3.17698717e-02 5.30950539e-02\\n3.80247414e-01 1.15503594e-01 -4.04168785e-01 5.36391020e-01\\n-2.09718451e-01 3.87720793e-01 8.76062140e-02 -9.22483563e-01\\n5.33375204e-01 3.40367883e-01 -1.66247785e-02 -2.52256751e-01\\n6.02700233e-01 -3.47107381e-01 -9.70283300e-02 1.11561842e-01\\n-4.31858510e-01 -2.53467619e-01 1.51693583e-01 -1.86570555e-01\\n-2.82148927e-01 5.84991753e-01 2.50667538e-02 1.73154831e-01\\n2.85961270e-01 -2.38268971e-01 -2.10175335e-01 -6.90012425e-02\\n-1.56042203e-01 -2.92927146e-01 -5.37719488e-01 -2.14700885e-02\\n-7.95442164e-02 -4.96266246e-01 -1.24892041e-01 -4.91161704e-01\\n-2.06377894e-01 -3.90549690e-01 -2.38914400e-01 1.12863444e-01\\n2.59018868e-01 1.57412350e-01 -2.00894609e-01 -1.26610100e-02\\n-3.15864794e-02 -6.19452834e-01 -9.10611972e-02 1.15114935e-01\\n4.00264502e-01 1.92143708e-01 7.91407824e-02 -9.26944166e-02\\n1.77724421e-01 5.42523563e-01 -1.23241000e-01 -3.38072896e-01\\n1.37486771e-01 1.56317174e-01 2.65269540e-02 -2.28298038e-01\\n9.61053967e-02 3.91922742e-01 -2.28199601e-01 -5.83680458e-02\\n5.26302494e-02 -7.69373327e-02 3.82126570e-01 -3.86044122e-02\\n-1.72579184e-01 -2.48682261e-01 -5.76650053e-02 1.27825662e-01\\n-5.53541064e-01 -2.45392799e-01 5.54309130e-01 1.52432576e-01\\n2.25962475e-02 2.36100823e-01 9.69252512e-02 2.02512220e-02\\n-2.51804590e-01 -8.74476284e-02 2.46270403e-01 1.11490041e-01\\n2.14496315e-01 1.44690454e-01 -7.66419023e-02 -5.70241153e-01\\n-3.58810186e+00 -2.75296509e-01 9.19485241e-02 -2.57074952e-01\\n2.58307040e-01 -1.87010124e-01 1.05559736e-01 -2.26586238e-02\\n-3.53753567e-01 5.24880514e-02 -3.66987959e-02 -2.12406754e-01\\n1.19048566e-01 1.95591316e-01 5.02188802e-02 3.70430231e-01\\n1.69916794e-01 -1.84839621e-01 5.82702085e-02 3.65325868e-01\\n-1.87921464e-01 -6.95264757e-01 2.34377712e-01 -4.15529422e-02\\n2.38410428e-01 1.82446212e-01 -5.11466324e-01 -6.02885149e-02\\n-3.18716943e-01 -1.84646323e-01 9.24049690e-02 -2.25928068e-01\\n-1.98837578e-01 2.09354162e-01 1.83038175e-01 -1.11690335e-01\\n7.62898847e-02 -3.83996308e-01 -1.15739904e-01 -5.12424707e-01\\n1.59345210e-01 -5.29330254e-01 -9.88451391e-03 -4.75608967e-02\\n7.75390983e-01 -3.78883421e-01 1.26954764e-01 1.65763646e-01\\n5.92099354e-02 1.61232993e-01 1.20479412e-01 -1.26716420e-02\\n-2.88161933e-01 -3.15358698e-01 -9.55502465e-02 -2.74848044e-01\\n6.44145906e-01 4.50397789e-01 -1.18411630e-01 4.43439744e-03\\n9.13475454e-03 -2.45492965e-01 -4.21997666e-01 -3.10094237e-01\\n-1.13692418e-01 -1.03877239e-01 -6.14946306e-01 -3.71634156e-01\\n-1.41997069e-01 -2.58700579e-01 -1.71990469e-02 6.18764281e-01\\n-2.58149058e-01 -3.40463430e-01 -7.84673393e-02 -4.50513750e-01\\n4.15275097e-01 -1.56668007e-01 5.74079305e-02 -1.86023012e-01\\n-2.11378932e-01 -4.50133979e-01 8.33961070e-02 -7.64773339e-02\\n-1.14312433e-01 -1.95191979e-01 1.05109885e-01 -1.85861304e-01\\n-3.58832479e-01 -5.44290304e-01 4.25663292e-01 5.34886196e-02\\n2.73384988e-01 2.00758263e-01 4.18469131e-01 -3.90166268e-02\\n2.94337690e-01 -1.39412075e-01 -1.67756140e-01 -4.67190623e-01\\n1.86611824e-02 -9.44684222e-02 4.12904501e-01 -1.01576604e-01\\n1.14814125e-01 4.80448343e-02 -1.10938221e-01 1.02005564e-02\\n3.59535873e-01 -1.00978106e-01 1.71611562e-01 -1.67393088e-01\\n2.01020941e-01 -2.15414971e-01 -1.50323987e-01 6.58608824e-02\\n7.62703791e-02 6.57764733e-01 4.50925231e-02 -3.29192132e-01\\n-1.47289634e-01 4.74786162e-01 -5.20635061e-02 2.63351649e-02\\n-1.78283364e-01 1.57896608e-01 -3.12665164e-01 2.70926565e-01\\n-4.41581421e-02 -1.38448387e-01 -2.40532845e-01 -1.50403470e-01\\n-3.77163291e-02 3.44454855e-01 2.30186284e-01 8.47492516e-02\\n-3.92998829e-02 -3.48584592e-01 -1.00089088e-01 1.60120741e-01\\n2.17706144e-01 5.03104270e-01 2.18718022e-01 -2.68655568e-01\\n5.68475574e-03 2.84321129e-01 -2.75115371e-01 2.83784151e-01\\n-3.11012536e-01 1.90055251e-01 -5.96908569e-01 -2.48126790e-01\\n-2.55230665e-01 -4.44162309e-01 2.00664058e-01 2.89660841e-01\\n1.49672553e-01 -6.57439381e-02 1.44551188e-01 -3.76701057e-01\\n2.55458295e-01 6.60558045e-02 1.67475566e-01 1.30718663e-01\\n-1.32357143e-02 6.58572257e-01 4.08836547e-03 -1.10146426e-01\\n-1.48528084e-01 1.01033136e-01 -8.62370282e-02 -2.24667013e-01\\n-5.93722686e-02 -5.59516788e-01 -1.83138624e-01 4.90915835e-01\\n1.76508546e-01 -2.03756481e-01 -1.21059105e-01 3.13248485e-01\\n-7.10798204e-02 -2.73466974e-01 -2.61596143e-01 8.17731768e-03\\n2.98589170e-01 2.81290114e-01 2.14378089e-01 -4.99237657e-01\\n2.11715419e-02 1.81080084e-02 7.32676610e-02 5.84279954e-01\\n-5.54007925e-02 1.54899925e-01 -2.11950969e-02 -1.80828720e-01\\n4.94569659e-01 -6.37378991e-02 -1.59963027e-01 1.26576424e-03\\n1.83565676e-01 -2.47886017e-01 -3.90682220e-01 9.73189622e-02\\n7.55012631e-02 -2.77055413e-01 4.36475538e-02 1.64047420e-01\\n1.12974122e-01 3.77913490e-02 -6.44299269e-01 -2.15922996e-01\\n-3.90681624e-01 8.58632848e-02 -1.85696892e-02 -5.22331536e-01\\n9.63127166e-02 -3.71832587e-02 -5.31152427e-01 2.94884831e-01\\n-1.09584212e-01 -1.54384673e-01 1.82037115e-01 7.20598474e-02\\n-3.31972778e-01 -1.41304567e-01 2.13380277e-01 2.67332464e-01\\n-2.30160087e-01 -2.61257350e-01 8.58983845e-02 -9.47955012e-01\\n1.71961889e-01 1.49733871e-01 -1.43660754e-01 1.63695276e-01\\n-8.35219026e-02 -6.92092419e-01 1.23107113e-01 -3.63983035e-01\\n-1.47465676e-01 1.79782659e-02 -2.43666798e-01 -4.34652090e-01\\n5.50126471e-02 7.77423531e-02 -3.11022222e-01 4.80108559e-01\\n-2.98170447e-01 3.48191082e-01 -1.16912827e-01 1.07709199e-01\\n1.40523836e-01 -2.48911262e-01 9.06597152e-02 -3.09079766e-01\\n-4.88408446e-01 -2.30519712e-01 -3.27342391e-01 -3.00951093e-01\\n-5.71914129e-02 -2.98345149e-01 -8.65115691e-03 -2.32954230e-03\\n3.52798998e-01 3.28255370e-02 -2.14656830e-01 -2.96948314e-01\\n3.07595357e-03 -4.57372159e-01 1.85797453e-01 -1.61160961e-01\\n2.37341635e-02 -2.21528947e-01 1.73115134e-01 6.95347413e-02\\n2.10911721e-01 -4.63337272e-01 4.67846096e-01 -2.38648385e-01\\n-2.78991759e-01 -2.01968431e-01 8.20442736e-02 -5.50469570e-02\\n3.44118655e-01 -4.53072131e-01 -2.84103714e-02 3.56042683e-01\\n2.16631413e-01 9.80149135e-02 2.11095333e-01 -1.64393753e-01\\n-1.30256280e-01 4.11327779e-01 -3.61064464e-01 2.07639039e-01\\n7.97506452e-01 5.91552556e-02 2.58478999e-01 2.20239073e-01\\n2.81832933e-01 3.00715715e-01 3.37739468e-01 1.09441299e-03\\n-1.22983962e-01 3.41248691e-01 1.24932423e-01 -4.60469872e-01\\n5.88829555e-02 -1.35565192e-01 -2.40548864e-01 -4.35173869e-01\\n6.96550131e-01 3.71643573e-01 -3.47406209e-01 -1.67860180e-01\\n-2.16064230e-01 -1.48668200e-01 3.32332969e-01 -1.27816662e-01\\n-1.24960449e-02 -1.15751460e-01 4.34667259e-01 -7.30100274e-02\\n3.25805068e-01 5.64557076e-01 -1.72330737e-01 -2.97518373e-01\\n-1.16128288e-01 2.74563909e-01 3.82717028e-02 5.40597081e-01\\n-2.37523019e-01 2.70896494e-01 4.91668582e-02 1.31217510e-01\\n-6.61889017e-02 1.97061658e-01 2.87104607e-01 -5.60903586e-02\\n1.91980004e-01 4.98307981e-02 4.89238262e-01 4.53291893e-01\\n2.08708063e-01 3.62530559e-01 3.58271062e-01 -3.15191634e-02\\n4.00037408e-01 6.19066596e-01 3.87164742e-01 1.71838447e-01\\n1.99247450e-02 2.12918185e-02 1.15717210e-01 -8.29517543e-02\\n2.38439620e-01 4.47844863e-01 -3.89986411e-02 9.14886832e-01\\n4.51753050e-01 2.47322440e-01 7.43920565e-01 -6.34001136e-01\\n-3.50675017e-01 8.20212364e-02 4.52865541e-01 -4.27645862e-01\\n1.00636873e-02 1.29049540e-01 -2.58705497e-01 2.50160456e-01\\n-3.82443398e-01 -2.45569140e-01 -1.87259540e-02 1.02127217e-01\\n-2.37885546e-02 -2.02120602e-01 -1.76286399e-01 1.05287671e-01\\n-2.70462018e-02 -9.27271396e-02 -4.30980951e-01 -6.36741519e-02\\n-2.47218996e-01 -9.56573803e-03 -1.63550884e-01 -2.76552141e-02\\n-1.39460802e-01 -3.00429106e-01 -7.06613734e-02 -3.70951593e-02\\n2.72834301e-01 -1.26618057e-01 -1.05077177e-01 -1.11919567e-01\\n2.79063880e-01 2.24066913e-01 5.44182122e-01 1.00088239e-01\\n9.18842778e-02 -2.70175338e-01 -1.47946119e-01 1.09105691e-01\\n1.54274419e-01 6.37612119e-02 2.60742381e-05 3.57624531e-01\\n-2.48298854e-01 -2.17769310e-01 1.19344436e-01 3.38437051e-01\\n-4.67438042e-01 -1.49795776e-02 -3.53629664e-02 2.46380866e-01\\n1.49721019e-02 2.84201294e-01 -1.82036757e-01 1.36500388e-01\\n-1.33969203e-01 -4.73590553e-01 3.37336898e-01 -1.90785974e-01\\n-9.14325416e-02 -9.40241590e-02 2.20295608e-01 2.49768719e-01\\n-2.50061333e-01 3.29607651e-02 -3.39288563e-02 1.71835512e-01\\n4.65711206e-02 3.06276858e-01 -2.15812534e-01 -2.44893700e-01\\n-3.06402266e-01 1.49833813e-01 -1.37503654e-01 2.07794756e-01\\n-1.70297213e-02 2.69902319e-01 -4.71071452e-02 1.08222194e-01\\n3.32054526e-01 -6.20026179e-02 -2.45276704e-01 -2.48451248e-01\\n-2.07395226e-01 -1.40088797e-01 -2.21620426e-02 -1.02942586e-01\\n2.49350816e-01 -2.96550453e-01 -7.51058608e-02 -1.50019586e-01\\n-1.43605292e-01 -4.44252521e-01 1.07182525e-01 -2.23396242e-01]]',\n", + " 'job_description': 'CONSULTING - BIG dATA SCIENCE - aNALYTICS - BI! With over a billion turnover has our customer become a relevant global player in terms of individual software solutions. She thinks globally, acts locally and supports customers from various industries to develop technology solutions to business results. The consulting specialists are able to find solutions for large, complex projects to generate economies of scale and optimize processes. The worldwide growth continues also in Switzerland and for their Zurich office are we looking for you as: DIRECTOR DATA SOLUTIONS YOUR CHALLENGE You will lead strategic client projects across Europe and help to build out the Big Data Architecture Practice. Develop customer solutions and proposals for implementation and design of scalable big data architecture as well as network infrastructure solutions to enable partners and clients to scale Hadoop, NoSQL and relational database architecture for growing demands and traffic. Build up roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning. Drive new business and get involved in pre-sales activities whilst overseeing and managing remote team members who are involved in key projects. YOUR PROFILE You have a Bachelor, Master or MBA degree or equivalent education with business and IT expertise. You have a deep understanding of the Big Data Architecture, Business Intelligent, Data Science and Analytics and implementing such big projects. Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level. Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra. Know how in agile software development processes and architecture are an additional plus. You are an excellent communicator with the ability to correspond effectively with all levels of Business and IT. You have fun thinking globally, acting locally and work in multi-cultural teams around the globe. You are a problem solver with the ability to effectively prioritize work. You can communicate fluently in English and ideally German. There will be a large degree of travel (around 50%) in order to build on and enhance client relationships. YOUR PERSPECTIVE You get the chance to build a firm in the firm in a globally oriented outsourcing corporation. You can combine your strength and network with the enormous resource and skill set to set new standards in your business stream. You can act as leader while participating in top level engagements and getting first hand updates on technology innovations. You will experience new ways of efficiency and technology improvements. You can expect continuing training and the opportunity to enlarge you network and visibility.',\n", + " 'soft_skills': '[\"Management\", \"Communications\", \"Innovation\", \"Prioritization\", \"Consulting\"]',\n", + " 'hard_skills': '[\"NoSQL\", \"Apache Cassandra\", \"Economy\", \"Apache Zookeeper\", \"Acting\", \"Analytics\", \"Outsourcing\", \"Industrialization\", \"Customer Support Analyst\", \"Perspective (Graphical)\", \"Scale (Map)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Customer Development\", \"Apache Mahout\", \"MongoDB\", \"Levelling\", \"Limiter\", \"Apache Oozie\", \"Idealization\", \"Network Infrastructure\", \"Localization\", \"Apache Flume\", \"Continuous Training\", \"Process Optimization\", \"Machine Learning Methods\", \"Recommendation Engine\", \"Data Science\", \"Agile Software Development\", \"Customer Relationship Building\", \"Business Architecture\", \"Apache Hive\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Technology Solutions\", \"Pre-Sales Engineering\", \"Relational Databases\", \"Software Development\", \"Resourcing\", \"Apache HBase\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Intelligence\"]',\n", + " 'languages': \"['English', 'Thai', 'Samoan', 'Tatar', 'Kanuri']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'junior software engineer medco for the department of information systems',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Healthcare Services & Hospitals',\n", + " 'website': 'www.chuv.ch',\n", + " 'jobdescription_embedded': '[[-3.00035059e-01 3.61983538e-01 4.44360465e-01 -7.17792660e-03\\n5.62070787e-01 -1.37449756e-01 -1.13336578e-01 2.42946625e-01\\n-2.19843201e-02 -4.84850526e-01 -9.91603658e-02 -3.07892561e-01\\n-4.89714779e-02 1.88965708e-01 1.14169598e-01 4.41247940e-01\\n3.86448681e-01 4.34750766e-02 -1.06877811e-01 3.36503685e-01\\n-6.46074489e-02 -1.51778728e-01 4.21410054e-03 8.17152441e-01\\n4.15205777e-01 -4.45732102e-02 -5.73506542e-02 1.49609014e-01\\n-2.30003044e-01 -1.49984866e-01 5.07363498e-01 2.94902641e-02\\n-1.60990119e-01 -3.72379541e-01 1.14553399e-01 2.48411328e-01\\n-3.23082864e-01 -1.17690079e-01 -1.25032410e-01 1.77222803e-01\\n-5.57683289e-01 -3.01134944e-01 -1.02623522e-01 -1.21669605e-01\\n-2.74369895e-01 -3.70370686e-01 9.48063284e-02 -3.09872590e-02\\n8.33352506e-02 1.49189293e-01 -5.47025383e-01 2.15621099e-01\\n-3.89576554e-01 -1.66778952e-01 3.37086499e-01 6.09280050e-01\\n-4.00838852e-02 -4.14307028e-01 -4.87745881e-01 -4.02561933e-01\\n-5.65326326e-02 -2.60696188e-02 4.56933528e-02 -3.86211216e-01\\n4.11144555e-01 9.00602639e-02 -5.72004914e-03 3.85362148e-01\\n-8.06089640e-01 -1.23140171e-01 -3.25153291e-01 1.08123042e-01\\n-4.29066181e-01 -3.10019776e-02 -3.13482702e-01 -2.40982965e-01\\n-6.66429177e-02 3.94444346e-01 -3.24342586e-02 1.19015887e-01\\n-2.39308327e-01 3.82285446e-01 -2.01432556e-01 3.83839250e-01\\n2.69659698e-01 2.43688136e-01 3.10070992e-01 3.65030706e-01\\n-4.57485974e-01 3.77795219e-01 1.28924534e-01 -3.27150077e-01\\n2.27454871e-01 1.09013036e-01 4.74937022e-01 9.19226110e-02\\n1.41731560e-01 1.32084504e-01 -2.91906685e-01 2.95387268e-01\\n2.13811845e-01 -1.99559718e-01 4.51282822e-02 -8.05766135e-02\\n-7.04778358e-03 -4.79073673e-02 -1.68002769e-03 1.65476188e-01\\n-4.13177133e-01 3.36495101e-01 8.56148005e-02 -2.72724450e-01\\n-1.56365946e-01 -5.79533279e-01 1.13614369e-02 1.04003072e-01\\n6.48366064e-02 1.11551940e-01 1.59038499e-01 1.22376904e-01\\n1.81610435e-01 -4.70363833e-02 1.62519693e-01 8.83770227e-01\\n-1.25856802e-01 -3.42019200e-02 -1.34144962e-01 3.06266665e-01\\n8.90472084e-02 -1.88330188e-01 1.54109716e-01 2.90424526e-01\\n-6.58720359e-03 -1.22392751e-01 -2.37822413e-01 4.40019906e-01\\n-1.29727036e-01 -1.90964669e-01 -4.41658556e-01 3.40125471e-01\\n-1.90957069e-01 -4.34564710e-01 5.87118506e-01 -8.26356187e-02\\n1.44019127e-01 -1.57126263e-01 -1.17994323e-02 -8.22910443e-02\\n-1.31153569e-01 2.13340163e-01 2.53410265e-03 2.23886713e-01\\n-3.21313739e-01 -2.24193215e-01 -9.18591917e-02 2.49286920e-01\\n-3.38537425e-01 2.97612160e-01 -7.92742223e-02 -9.15120170e-02\\n2.67795205e-01 1.66635007e-01 -3.66973519e-01 1.85097575e-01\\n-1.18098199e-01 -1.10540226e-01 -6.61244169e-02 4.58446741e-01\\n-1.32654071e-01 2.13160932e-01 -1.42370611e-02 -3.50442648e-01\\n4.66153681e-01 1.19258486e-01 3.25152159e-01 -1.06508927e-02\\n3.21369588e-01 -1.51209190e-01 2.79434800e-01 1.03953734e-01\\n-7.00411677e-01 3.89611870e-01 -7.01834559e-02 -2.13751033e-01\\n3.74336354e-03 -1.02307774e-01 4.65106070e-01 -2.54125476e-01\\n-7.04707354e-02 -1.76333070e-01 -3.54473174e-01 -4.63893920e-01\\n-1.96422324e-01 1.27239637e-02 4.41343784e-01 -4.54905361e-01\\n-7.38131478e-02 3.95377994e-01 -6.31911635e-01 -2.00359508e-01\\n1.88462973e-01 2.50258654e-01 1.38608143e-01 1.72260046e-01\\n-1.21526673e-01 -6.64688766e-01 4.85400110e-02 -5.14919817e-01\\n-3.84826243e-01 1.28575832e-01 -2.86289275e-01 1.26380429e-01\\n8.47453400e-02 2.35035457e-02 -2.82117780e-02 4.67723086e-02\\n-3.38407069e-01 7.21806437e-02 8.54065791e-02 -5.71014024e-02\\n3.07594359e-01 1.76642686e-02 -3.67082477e-01 4.78533149e-01\\n-1.86889499e-01 4.62018341e-01 1.17807738e-01 -8.33056927e-01\\n6.30820274e-01 3.69473755e-01 -3.51999328e-02 -3.68397951e-01\\n5.50363183e-01 -3.31260920e-01 -1.74863935e-01 1.57397926e-01\\n-3.67648214e-01 -1.54682174e-01 2.22167194e-01 -3.21027189e-01\\n-2.22786993e-01 5.83073795e-01 5.71780577e-02 9.26069319e-02\\n4.92103398e-01 -3.75210047e-01 -2.09360927e-01 1.03194222e-01\\n-2.05078959e-01 -3.08929324e-01 -5.16978860e-01 -8.15665424e-02\\n-1.30044356e-01 -4.63237584e-01 -2.11823523e-01 -3.89117658e-01\\n-1.49591237e-01 -2.84421951e-01 -1.72048569e-01 2.19392136e-01\\n2.09453434e-01 1.76951244e-01 -4.40159142e-02 4.42950465e-02\\n-3.55879515e-02 -5.65842628e-01 -4.79751751e-02 -4.41436023e-02\\n3.68573934e-01 2.91733623e-01 1.59429044e-01 5.70160337e-03\\n8.23950544e-02 5.36124110e-01 -4.61518884e-01 -3.59381318e-01\\n1.01671629e-01 5.53791076e-02 -1.06429607e-01 -3.71658839e-02\\n1.75495595e-01 3.03211212e-01 -2.68508077e-01 3.82938161e-02\\n-6.62147161e-03 -2.49507464e-02 3.97147000e-01 -2.67019942e-02\\n-1.86298266e-01 -1.25940621e-01 -1.64433196e-01 2.01995805e-01\\n-5.89219570e-01 -2.65446037e-01 4.29929733e-01 1.01364225e-01\\n1.29170820e-01 1.23921372e-01 1.90388918e-01 3.15314010e-02\\n-4.40045029e-01 -2.82660961e-01 3.08069229e-01 1.00680292e-01\\n8.97761434e-02 1.51667729e-01 -4.76597324e-02 -5.22465229e-01\\n-3.05674839e+00 -1.33334085e-01 8.87885839e-02 -2.47226775e-01\\n2.62427300e-01 -1.38471335e-01 1.00698337e-01 -1.00647137e-01\\n-2.82645464e-01 9.99853387e-03 -2.49801263e-01 -1.97526515e-01\\n9.51256603e-02 2.38607824e-01 7.14064091e-02 3.42387408e-02\\n-4.28449251e-02 -2.37445861e-01 8.61925930e-02 2.84338295e-01\\n-1.19588878e-02 -7.73476720e-01 -7.99035374e-03 -6.77736923e-02\\n1.66918471e-01 1.07998513e-01 -5.96637309e-01 -1.11885183e-02\\n-3.73665035e-01 -2.57558316e-01 1.81780428e-01 -3.07062060e-01\\n-1.16029792e-01 3.24119478e-01 1.99644938e-01 -7.13339224e-02\\n1.07592568e-02 -3.00836176e-01 -2.50040740e-01 -6.59163654e-01\\n1.81183949e-01 -6.06666565e-01 4.16864082e-02 -1.66898653e-01\\n6.59254968e-01 -3.01620901e-01 2.27224231e-01 2.80833453e-01\\n1.59079611e-01 1.81084901e-01 8.84357393e-02 5.14040850e-02\\n-3.00230145e-01 -2.70910293e-01 -1.12118125e-01 -2.42464393e-01\\n6.28367364e-01 3.86322409e-01 -2.13607371e-01 -9.11915749e-02\\n5.81795648e-02 -3.62291068e-01 -5.40301979e-01 -3.53309691e-01\\n-9.79812294e-02 -1.72546476e-01 -6.80168509e-01 -3.93984497e-01\\n-1.15329631e-01 -1.33489698e-01 -4.22258452e-02 6.83342159e-01\\n-4.62741017e-01 -3.29211831e-01 -3.48696522e-02 -6.77632928e-01\\n3.13090861e-01 -3.01966429e-01 6.40542060e-02 -2.69656241e-01\\n-3.30017686e-01 -5.30000091e-01 1.11605957e-01 -1.60983671e-02\\n-1.18153721e-01 -1.72929168e-01 1.19316027e-01 -2.46215776e-01\\n-2.98391908e-01 -5.19364178e-01 4.21613276e-01 1.17969662e-01\\n4.08891916e-01 2.10435301e-01 1.98674455e-01 -6.50608689e-02\\n2.81263173e-01 1.27188697e-01 -1.21781386e-01 -3.06379318e-01\\n1.20233506e-01 2.49918550e-04 4.48907226e-01 -1.80612147e-01\\n-3.68651822e-02 9.57769454e-02 -2.35675395e-01 -5.94640747e-02\\n4.58130121e-01 -1.95846893e-03 4.15652096e-02 -1.36039346e-01\\n3.73819113e-01 -4.26120758e-01 -6.86664283e-02 1.94678307e-01\\n5.42345159e-02 6.63331985e-01 3.32273766e-02 -3.68782341e-01\\n-4.07801978e-02 4.93418753e-01 9.39974189e-03 -1.46046169e-02\\n1.17506348e-02 1.78894326e-01 -1.55298769e-01 1.86173141e-01\\n5.48610091e-02 -1.42134592e-01 -2.42442012e-01 -1.02301627e-01\\n-1.18837364e-01 3.85284543e-01 2.72803813e-01 1.60218194e-01\\n-8.72684121e-02 -3.54359627e-01 -4.65783924e-02 2.44814098e-01\\n2.68395603e-01 4.27361727e-01 3.40087980e-01 -2.69384325e-01\\n2.55174357e-02 3.44860256e-01 -1.09492019e-01 3.39766651e-01\\n-3.40910017e-01 1.18652001e-01 -5.63863516e-01 -1.85167968e-01\\n-3.00910264e-01 -2.88967222e-01 2.42015138e-01 3.21130961e-01\\n1.77178070e-01 -1.05794132e-01 1.37466967e-01 -3.56750786e-01\\n2.11783513e-01 2.57244200e-01 2.29308069e-01 7.26502016e-02\\n-1.41104639e-01 6.73385501e-01 3.93916816e-02 -1.36842236e-01\\n-5.62194027e-02 1.00371763e-02 -1.34719372e-01 -3.12145174e-01\\n6.70060888e-03 -4.76588488e-01 -1.82723984e-01 3.38606715e-01\\n7.09000751e-02 -6.28865585e-02 -2.25250885e-01 3.73426080e-01\\n1.44180655e-03 -2.14185894e-01 -1.87222481e-01 -4.87079173e-02\\n2.22224206e-01 2.33383909e-01 3.10672790e-01 -5.64478755e-01\\n-8.03505778e-02 9.58180428e-02 -2.34673843e-02 5.19917071e-01\\n1.28718913e-01 3.32122222e-02 -3.04744840e-01 -2.07423866e-01\\n3.40077430e-01 -1.72427341e-01 -3.16100828e-02 -1.53439380e-02\\n9.24445689e-02 -1.38993829e-01 -3.89402598e-01 9.97232050e-02\\n-3.07223741e-02 -2.37960964e-01 3.91229019e-02 9.22504142e-02\\n7.53197074e-02 6.09467626e-02 -5.98304629e-01 -1.75097436e-01\\n-1.67163819e-01 7.52256513e-02 -5.99374995e-03 -5.07458866e-01\\n-4.16807830e-02 -1.24140367e-01 -5.65852642e-01 2.58499682e-01\\n-1.31889537e-01 -3.39706466e-02 1.61520645e-01 5.13504781e-02\\n-3.56561035e-01 -2.06277341e-01 1.08612724e-01 1.76079184e-01\\n-3.16559643e-01 -2.75190592e-01 1.10821910e-02 -9.92156863e-01\\n1.66068658e-01 5.48323393e-02 -1.65277869e-01 6.82473630e-02\\n1.22189693e-01 -7.23813951e-01 1.26398414e-01 -3.32096636e-01\\n1.99250299e-02 1.15322858e-01 -2.66815245e-01 -4.15241659e-01\\n1.59988105e-01 -7.03539252e-02 -1.61208257e-01 3.25673491e-01\\n-4.61650848e-01 4.90845561e-01 -1.47288248e-01 -9.86439437e-02\\n4.06275019e-02 -3.34151328e-01 1.58574477e-01 -1.65461212e-01\\n-3.56565952e-01 -2.64601171e-01 -3.01129103e-01 -3.86778891e-01\\n2.22498029e-02 -3.52318168e-01 -4.03638147e-02 7.04466999e-02\\n3.66939306e-01 2.79639494e-02 -1.97493881e-01 -1.52148098e-01\\n7.10444227e-02 -4.28212702e-01 5.56281880e-02 -9.75441039e-02\\n-1.43659674e-02 -1.44667745e-01 2.08054960e-01 3.37411910e-02\\n2.62298256e-01 -2.76447833e-01 5.08225024e-01 -3.22870106e-01\\n-4.10671234e-01 -1.37253508e-01 2.30009109e-02 3.31696197e-02\\n3.99647772e-01 -3.95186067e-01 9.22752470e-02 3.43813777e-01\\n2.53291965e-01 4.65510897e-02 2.42221087e-01 -2.77115941e-01\\n-5.34895808e-02 1.91484585e-01 -3.66234124e-01 2.05553085e-01\\n8.42537761e-01 2.68569946e-01 3.25346708e-01 1.45069271e-01\\n8.08566511e-02 3.27130377e-01 5.21162271e-01 -6.31700009e-02\\n-7.80357793e-02 2.59482086e-01 1.84369728e-01 -3.23108256e-01\\n-1.99285075e-01 -1.75386593e-02 -1.12789690e-01 -3.28607678e-01\\n5.88476658e-01 3.37012053e-01 -3.77013326e-01 -1.77071810e-01\\n-2.16785386e-01 -2.08481610e-01 3.46474409e-01 -3.22753340e-02\\n-9.71568525e-02 -1.09193139e-01 3.21281463e-01 -1.06178910e-01\\n2.38572761e-01 5.76311350e-01 -1.51160553e-01 -4.14378524e-01\\n-4.13754433e-02 3.55348170e-01 6.19533248e-02 4.16227520e-01\\n-1.20524712e-01 3.27054203e-01 1.66101586e-02 1.70951158e-01\\n-1.78174481e-01 -2.53256559e-02 2.83410162e-01 6.12890944e-02\\n2.69634485e-01 2.14625135e-01 3.88987243e-01 4.55691040e-01\\n2.83973783e-01 4.88232315e-01 2.93742806e-01 6.66268123e-03\\n4.98562753e-01 6.02943599e-01 4.30620968e-01 4.51423153e-02\\n1.47982957e-02 2.04432040e-01 8.37302506e-02 4.38843258e-02\\n3.13088387e-01 3.35341692e-01 6.35313690e-02 9.94269311e-01\\n2.51577020e-01 3.27685982e-01 7.13907599e-01 -6.27548814e-01\\n-2.99214512e-01 8.59089792e-02 5.50635397e-01 -4.47144896e-01\\n5.40072210e-02 4.19687778e-02 -2.27692217e-01 3.44874948e-01\\n-5.19270360e-01 -1.09892771e-01 -5.30936718e-02 1.81326270e-01\\n2.41788030e-02 -8.75484869e-02 -1.01246491e-01 2.48785876e-02\\n-1.87385947e-01 -2.25737348e-01 -3.05894077e-01 -1.32087961e-01\\n-3.41794491e-01 -1.53032750e-01 -5.80528937e-03 -1.02582403e-01\\n-1.33049004e-02 -2.74541378e-01 -7.21229166e-02 -3.97043750e-02\\n5.75172544e-01 -2.86352843e-01 -2.08839148e-01 -1.11376718e-01\\n3.12505126e-01 2.99222797e-01 6.61733687e-01 1.14860013e-03\\n-3.48253995e-02 -2.55359024e-01 -2.34566182e-01 6.96792454e-02\\n-8.21093395e-02 9.60538015e-02 4.69930135e-02 2.71116763e-01\\n-1.92358404e-01 -1.12043768e-01 1.16288483e-01 3.07152033e-01\\n-4.12232161e-01 -1.33328766e-01 -2.03985885e-01 1.19059302e-01\\n-3.91247123e-03 2.62317836e-01 -1.94980145e-01 5.64955845e-02\\n-1.57533824e-01 -5.43533564e-01 3.65039676e-01 -1.85788065e-01\\n-1.83677763e-01 -5.59363365e-02 2.66006261e-01 2.66440868e-01\\n-1.77906334e-01 -2.16637440e-02 -3.15545723e-02 2.85058022e-01\\n-9.34405252e-03 3.11616302e-01 -2.23829150e-01 -2.48703182e-01\\n-3.55325818e-01 2.39375353e-01 -4.14124914e-02 1.02587633e-01\\n2.35460699e-04 5.12061715e-01 3.74462493e-02 1.58546656e-01\\n3.61870110e-01 -7.27597475e-02 -2.90184677e-01 -3.13117445e-01\\n-1.83845267e-01 -2.68800318e-01 -5.72934300e-02 -4.00517508e-02\\n3.03331316e-01 -3.99256349e-01 -1.82873636e-01 -3.26407313e-01\\n-5.16338795e-02 -3.46780002e-01 -5.22978529e-02 -3.55726704e-02]]',\n", + " 'job_description': 'The Lausanne University Hospital (CHUV) is one of five Swiss university hospitals. Through its collaboration with the Faculty of Biology and Medicine of the University of Lausanne and the EPFL, CHUV plays a leading role in the areas of medical care, medical research and training. The mission of the Data Science group, wich part of CHUV Department of Information Systems, is to foster the adoption and use of data science and innovative tools in medical informatics within the hospital to significantly improve biomedical research and hospital key processes. To achieve this ambitious goal, one of the core tasks of the group is to develop the necessary IT infrastructure for providing physicians and scientists with the means to smoothly access and use, for their clinical research projects, the massive volume of clinical data that every day is generated within the hospital. Our current and future challenges lie at the intersection of big data, medical informatics, data protection and artifical intelligence. To address these challenges and push the bar furhter, a part of the Data Science Group is specifically focused on projects in Medical Informatics that will explore innovative Tools and technologies for implementing new prototype applications that could potentially be deployed in operational settings. As a Junior Software Engineer within our Data Science team, you will be responsible for : Defining technical and functional specification for new medical informatics applications based on end-users (scientists, physicians and IT experts) requirements and latest technological advances from the research academic community Developing and documenting robust and mature proofs of concept and prototypes of these applications and help in the transition to production environments within the team. In your past experiences, you have shown a proven track record of crafting innovative and elegant software solutions and the capacity to fully document the solutions you have developed. Your are passionate about technology and excited about working in the medical field. Requirements This position requires a university degree in Computer Science or Medical Informatics or equivalent discipline with : Proficiency in at least one object-oriented design development and data-driven development language (JAVA is highly preferable, Go is a plus) Excellent understanding of data structures and algorithms Ability to implement robust prototypes almost ready for deployment in production settings Experience with RESTful JSON APIs and design of micro-services and Web services Experience with relational database management systems and SQL Experience with front-end Framework such as VueJS, WebSockets ans HTML/CSS Experience with DevOps Tools for software deployment and automation using containerization frameworks such as Docker (Kubernetes and Docker Swarm are a plus) Experience with Agile software development as a team and version control (OAuth, OpenID connect, etc.) Oral and written proficiency in French is required to help you interact with end-users and peers on a daily basis. Benefits If you become an employee at the Centre Hospitalier Universitaire Vaudois, we will offer you the following : High social benefits Three days of training per year 25 working days of vacation per year Very good restaurants with preferential rates. ',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Hospitality\", \"Operations\", \"Innovation\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Automation\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Model-Driven Development\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Informatics\", \"Relational Database Management Systems\", \"MASSIVE (Software)\", \"Prototype (Manufacturing)\", \"OAuth\", \"IT Infrastructure\", \"Version Control\", \"DevOps\", \"Prototyping\", \"Docker Swarm\", \"Track (Rail Transport)\", \"Medic\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Functional Specification\", \"Software Engineering\", \"Agile Software Development\", \"Data Science\", \"Web Services\", \"Docker (Software)\", \"Biology\", \"Management Systems\", \"Clinical Research\", \"Object-Oriented Design\", \"Big Data\", \"Community Development\", \"Clinical Data Warehouse\", \"Data Structures\", \"Front End (Software Engineering)\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Medical Research\", \"OpenID\", \"JSON\", \"Database Management Systems\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"SQL (Programming Language)\", \"Software Deployment\", \"Adoptions\", \"Information Systems\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '114',\n", + " 'job_title': 'data scientist operations planning & steering',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Airlines',\n", + " 'website': 'www.swiss.com',\n", + " 'jobdescription_embedded': '[[-1.18040219e-01 3.41364145e-01 4.58301902e-01 -1.48124583e-02\\n4.92912471e-01 -6.12655208e-02 5.86260408e-02 2.64740586e-01\\n-2.39444189e-02 -4.55572486e-01 -7.33047165e-03 -2.37603426e-01\\n3.14964689e-02 -5.13409376e-02 5.75264916e-02 5.60614228e-01\\n2.82505155e-01 2.44873874e-02 -9.98041779e-02 3.51305008e-01\\n1.70087039e-01 5.43550588e-02 2.01948702e-01 6.74133897e-01\\n4.65134263e-01 -6.01612628e-02 -1.09097488e-01 -8.58384222e-02\\n-2.58083045e-01 -3.18527043e-01 4.00862098e-01 -5.62231578e-02\\n-5.91134578e-02 -2.15164721e-01 1.26687855e-01 6.05315492e-02\\n-1.69772625e-01 -5.42637371e-02 -1.19859483e-02 9.29368734e-02\\n-5.19110322e-01 -1.94463685e-01 -3.23933288e-02 -1.82854921e-01\\n-3.13234180e-01 -3.55786979e-01 -3.24309245e-02 -3.46931182e-02\\n7.80491307e-02 1.95759311e-02 -4.06850010e-01 2.73026526e-01\\n-2.16250062e-01 -2.07304239e-01 3.09893012e-01 7.47088313e-01\\n8.16391855e-02 -3.89887273e-01 -4.85496700e-01 -3.54893625e-01\\n1.48816764e-01 -1.03014886e-01 4.24436778e-02 -2.23939657e-01\\n3.88457745e-01 -1.65517628e-03 7.63653778e-04 2.78322399e-01\\n-6.50076985e-01 -1.66754603e-01 -2.79564917e-01 -5.43296486e-02\\n-3.41161311e-01 -4.26038280e-02 -2.88823038e-01 -2.41879836e-01\\n-1.28913134e-01 4.10824955e-01 -2.90191248e-02 2.76665501e-02\\n-1.14710882e-01 2.63696223e-01 -2.26744875e-01 1.88958377e-01\\n2.01550841e-01 2.55893558e-01 2.41365880e-01 3.32796216e-01\\n-3.96611869e-01 3.61400127e-01 2.23566607e-01 -4.66546178e-01\\n1.75810084e-01 8.75512436e-02 3.95467460e-01 -1.22065566e-01\\n4.70747352e-02 1.54874504e-01 -1.37036592e-01 2.69901216e-01\\n1.83413565e-01 -2.67202973e-01 1.34152576e-01 -9.87423360e-02\\n-6.72373176e-03 -8.48616734e-02 6.00789562e-02 1.60808787e-01\\n-4.20994937e-01 3.48681271e-01 5.26979677e-02 -3.30496699e-01\\n-1.46569550e-01 -5.01600385e-01 -7.69219995e-02 -8.85493308e-02\\n1.53424934e-01 2.00226873e-01 2.05419317e-01 2.16080129e-01\\n1.29649058e-01 -4.69310991e-02 1.79917634e-01 7.69847751e-01\\n-5.73460571e-02 2.04889216e-02 -2.12958068e-01 3.33846599e-01\\n-9.27115604e-03 -2.73686618e-01 1.52935416e-01 1.86525613e-01\\n-5.99935725e-02 -1.04376778e-01 -2.02514321e-01 2.78276384e-01\\n-6.10138997e-02 -2.80021131e-01 -1.89607233e-01 2.19367892e-01\\n-1.34576559e-01 -3.72877002e-01 5.65957725e-01 -4.31154482e-02\\n1.00421444e-01 -1.64968967e-01 -1.18992426e-01 -7.65757188e-02\\n-1.00921951e-01 1.77840084e-01 1.87499374e-01 7.10845515e-02\\n-3.31014633e-01 -1.83900207e-01 -1.68883592e-01 2.74156034e-01\\n-2.65628427e-01 3.55432741e-02 -1.93109751e-01 -4.80959229e-02\\n2.75329918e-01 -1.68794896e-02 -3.85444760e-01 1.52970970e-01\\n4.24315706e-02 -2.20271885e-01 -4.82503213e-02 3.41612816e-01\\n-2.28841543e-01 1.84002280e-01 -2.20814552e-02 -1.55086115e-01\\n6.35938168e-01 1.47181422e-01 1.96225151e-01 6.49362653e-02\\n2.22550571e-01 -5.14434874e-02 1.04432076e-01 2.20043138e-01\\n-6.05003238e-01 3.34028363e-01 -2.04169527e-01 -2.01775700e-01\\n1.72288179e-01 -2.01433077e-02 2.21539408e-01 -2.41506636e-01\\n5.37843779e-02 -1.00671068e-01 -2.52109855e-01 -3.52821380e-01\\n-1.07470781e-01 3.74914799e-03 3.66665959e-01 -4.14361358e-01\\n-1.48575362e-02 1.76375210e-01 -5.32408237e-01 -7.83448294e-02\\n2.06297487e-01 2.41206616e-01 2.57937640e-01 1.74285114e-01\\n-5.06646112e-02 -4.59242016e-01 1.28939778e-01 -3.20263326e-01\\n-3.70703697e-01 1.98310181e-01 -2.10647926e-01 2.61545151e-01\\n5.50730489e-02 -2.96230055e-02 -6.42608032e-02 8.63225311e-02\\n-2.51082838e-01 -7.17492178e-02 1.55755788e-01 6.39824495e-02\\n2.13597447e-01 8.87240171e-02 -3.65630925e-01 4.85672534e-01\\n-5.76122850e-02 3.82747114e-01 1.26970008e-01 -9.09347773e-01\\n4.30515349e-01 2.07823008e-01 8.07099044e-03 -2.70931810e-01\\n5.19555390e-01 -2.93723643e-01 4.62077633e-02 6.64696395e-02\\n-2.55649984e-01 -1.96461290e-01 2.89213359e-01 -1.96870759e-01\\n-2.10078984e-01 4.46919382e-01 1.03227958e-01 1.56644434e-01\\n1.72697201e-01 -1.53698966e-01 -1.79344237e-01 -6.32865503e-02\\n-3.67911309e-02 -1.64066494e-01 -4.99135196e-01 9.70012508e-04\\n-6.24308139e-02 -4.65833306e-01 -1.30710736e-01 -4.49804902e-01\\n-1.93431914e-01 -4.37025279e-01 -8.06258246e-02 1.63000077e-01\\n2.22197071e-01 1.27883345e-01 -7.39940032e-02 -3.62572484e-02\\n-1.10872544e-01 -5.22403777e-01 -1.74255967e-01 2.44709160e-02\\n3.88543278e-01 2.96653450e-01 1.51549682e-01 -1.62998680e-02\\n3.29914466e-02 4.94091094e-01 -3.05553377e-01 -1.76720202e-01\\n2.48441428e-01 1.48396745e-01 -3.60709056e-02 -1.09502479e-01\\n6.24118969e-02 2.57691652e-01 -1.49116203e-01 8.53101313e-02\\n-3.40740383e-02 3.03725302e-02 3.92546147e-01 1.65802557e-02\\n-2.55509585e-01 -1.38467267e-01 -4.14830372e-02 1.75632581e-01\\n-4.58711326e-01 -2.86816776e-01 6.39892817e-01 9.93110761e-02\\n1.11239687e-01 1.81266516e-01 2.17242464e-01 -4.85513024e-02\\n-2.17953920e-01 -1.51172578e-01 2.81864524e-01 5.36202639e-02\\n1.18163303e-01 3.41820195e-02 -1.36008650e-01 -5.23110151e-01\\n-3.60946608e+00 -2.10008383e-01 6.59660846e-02 -3.01278949e-01\\n1.34643495e-01 -1.31090119e-01 1.07113197e-01 -2.55335961e-02\\n-3.62667650e-01 -8.27793032e-02 -9.87208411e-02 -1.61758661e-01\\n3.66262980e-02 3.16015184e-01 1.27112553e-01 1.32704735e-01\\n1.00421473e-01 -2.76116997e-01 -5.80717064e-02 4.17944193e-01\\n-5.38984388e-02 -6.51460886e-01 1.95582062e-01 6.29180670e-02\\n1.18884519e-01 2.33456552e-01 -3.57932866e-01 -8.21892396e-02\\n-3.73820007e-01 -2.87961066e-01 1.02704979e-01 -1.92789197e-01\\n-1.50507122e-01 2.77932227e-01 1.43900096e-01 -1.87457144e-01\\n7.78791159e-02 -4.20104891e-01 -2.50326246e-02 -3.78086746e-01\\n2.20937207e-02 -6.19384289e-01 -2.99614295e-02 -2.83323005e-02\\n5.78373075e-01 -2.37927407e-01 2.13490725e-01 7.51463696e-02\\n1.43413424e-01 1.48921058e-01 8.55512917e-02 9.81118530e-02\\n-2.39968121e-01 -3.38736326e-01 -8.53118747e-02 -3.71637456e-02\\n5.42521238e-01 4.25363421e-01 -1.20709494e-01 -7.88330361e-02\\n7.82689527e-02 -2.12874815e-01 -3.73283863e-01 -2.25404829e-01\\n-2.16964066e-01 -5.97997755e-02 -5.82025051e-01 -3.75746667e-01\\n-7.61165395e-02 -1.68504775e-01 -2.04093307e-01 5.81311822e-01\\n-2.62685478e-01 -3.72229636e-01 -5.01756221e-02 -4.16053772e-01\\n1.94365963e-01 -1.92579612e-01 -4.95805778e-03 -1.21633694e-01\\n-2.84875095e-01 -4.08124089e-01 1.10728979e-01 7.69913495e-02\\n-7.83211365e-02 -1.62087142e-01 7.55304843e-02 -1.87441289e-01\\n-2.89227813e-01 -4.51355845e-01 4.16267395e-01 8.46831203e-02\\n3.12367409e-01 1.26606226e-01 3.12344372e-01 6.00175112e-02\\n2.84592390e-01 -2.01314554e-01 4.78149131e-02 -4.25010979e-01\\n1.29906014e-01 5.12530804e-02 5.26117563e-01 -1.75777435e-01\\n1.20698199e-01 2.39304379e-02 -2.37726137e-01 1.13457125e-02\\n3.94846737e-01 -7.71824196e-02 1.28544107e-01 -7.54827857e-02\\n2.42821231e-01 -3.93876135e-01 -1.39915168e-01 -7.19780615e-03\\n1.19857239e-02 6.27549767e-01 -4.04539332e-02 -3.79620641e-01\\n-1.22224748e-01 3.69563878e-01 -1.37859136e-01 -5.43959513e-02\\n-1.65551096e-01 1.07079282e-01 -2.60432392e-01 2.81291425e-01\\n-4.10920754e-03 -9.74137485e-02 -3.33834767e-01 -8.96013826e-02\\n-4.76515740e-02 3.02143216e-01 2.45071128e-01 1.23081103e-01\\n-3.88253890e-02 -3.27226311e-01 -6.05711453e-02 1.65144354e-01\\n3.87460709e-01 3.24559182e-01 1.13672882e-01 -2.70087063e-01\\n1.12171993e-02 2.80729324e-01 -2.70134568e-01 2.50895262e-01\\n-2.26821750e-01 1.47115499e-01 -4.08982754e-01 -2.47678861e-01\\n-1.84027776e-01 -2.66684681e-01 1.30942732e-01 3.14595014e-01\\n1.85804307e-01 -7.67600164e-02 9.62051302e-02 -4.19771820e-01\\n3.27357471e-01 1.98878627e-02 1.39595330e-01 1.21843085e-01\\n8.36844593e-02 5.87035656e-01 -2.42281351e-02 -1.91301048e-01\\n-8.33226964e-02 -1.67841613e-02 -2.18270287e-01 -2.67840087e-01\\n-2.52904445e-02 -3.87331665e-01 -1.43626645e-01 4.25319463e-01\\n6.02337979e-02 -2.70821393e-01 -1.12922713e-01 3.31454366e-01\\n-7.86501840e-02 -3.08848858e-01 -2.10396543e-01 1.17234521e-01\\n2.46695831e-01 5.84373921e-02 3.21146160e-01 -4.82460976e-01\\n-3.86073142e-02 -1.16587549e-01 -3.85565013e-02 3.74753863e-01\\n1.16320349e-01 2.34330729e-01 -4.47029248e-02 -8.76497924e-02\\n4.28609133e-01 -1.11463174e-01 -5.37359305e-02 1.05918929e-01\\n8.14394802e-02 -2.33354032e-01 -3.84143531e-01 -4.37430665e-02\\n-6.05465099e-02 -1.45119086e-01 5.30902892e-02 1.40007317e-01\\n1.15029953e-01 -1.98834483e-02 -5.73975384e-01 -3.12569767e-01\\n-2.01958165e-01 5.91108501e-02 1.79925896e-02 -6.25557899e-01\\n-1.14054918e-01 -1.10122085e-01 -5.68446159e-01 2.39068806e-01\\n-1.42361224e-03 -1.41845137e-01 8.02965313e-02 -2.27567665e-02\\n-2.00192600e-01 -1.03508599e-01 5.85061759e-02 5.88466860e-02\\n-1.69556454e-01 -1.78376824e-01 6.92568794e-02 -8.91747713e-01\\n1.09493434e-01 7.81251639e-02 -1.61103293e-01 8.09106231e-02\\n-1.21420540e-01 -5.63926220e-01 2.34097809e-01 -3.28216016e-01\\n-3.76583822e-02 5.92909940e-02 -1.64909303e-01 -3.53482366e-01\\n1.25790372e-01 7.10569173e-02 -1.90248787e-01 4.00637716e-01\\n-3.13303202e-01 3.50396216e-01 2.75852028e-02 1.33131534e-01\\n5.57432100e-02 -2.37537533e-01 1.61444247e-01 -2.17607692e-01\\n-4.09331411e-01 -1.22004375e-01 -2.79286206e-01 -2.71782458e-01\\n-5.00238836e-02 -2.41139799e-01 -1.92170292e-01 4.58091032e-04\\n2.49765068e-01 1.40949100e-01 -1.97703421e-01 -1.15315534e-01\\n3.60254012e-02 -5.19922972e-01 2.22023293e-01 -1.00759864e-01\\n-1.35016054e-01 -1.73190936e-01 2.75669068e-01 1.41260512e-02\\n1.32808581e-01 -2.33678669e-01 4.61312443e-01 -3.04981291e-01\\n-2.71401227e-01 -7.88175836e-02 6.93139061e-02 3.25747989e-02\\n3.43477279e-01 -3.95458847e-01 -1.01576611e-01 3.39050055e-01\\n-2.64953896e-02 1.56724632e-01 3.13684762e-01 -1.41094089e-01\\n-2.34689385e-01 2.03374371e-01 -4.68264222e-01 1.25785083e-01\\n7.40583360e-01 1.25656307e-01 2.22308725e-01 1.31518707e-01\\n1.31081834e-01 1.89606130e-01 4.28864539e-01 -1.08739041e-01\\n-2.23949611e-01 3.26811790e-01 1.17115900e-01 -6.10152245e-01\\n-6.82257861e-02 7.85052776e-04 -7.77829513e-02 -4.08706665e-01\\n5.35128176e-01 3.39811683e-01 -2.59361446e-01 -2.01119140e-01\\n-1.41013920e-01 -8.69948715e-02 2.09365353e-01 -2.30362825e-02\\n4.23822850e-02 -6.16792962e-02 5.55298090e-01 -7.11787194e-02\\n2.86021948e-01 4.61113214e-01 -9.33268368e-02 -3.19196641e-01\\n-7.24792629e-02 1.59976959e-01 4.40481678e-02 5.04209876e-01\\n-1.90887451e-01 2.91703701e-01 -1.22426748e-02 1.65537924e-01\\n-5.11471108e-02 -7.32508898e-02 2.04319343e-01 8.97556692e-02\\n4.70293835e-02 1.43159434e-01 4.47359145e-01 3.57923657e-01\\n3.17160457e-01 3.59211922e-01 2.76875496e-01 7.63835087e-02\\n4.27546680e-01 5.12756646e-01 2.71817923e-01 1.72711134e-01\\n-4.43446077e-02 -3.52242477e-02 1.14549771e-01 1.04258046e-01\\n2.68646121e-01 3.52616668e-01 1.34846285e-01 7.87171245e-01\\n2.99096107e-01 3.74253392e-01 6.48127377e-01 -6.38934791e-01\\n-3.09442520e-01 1.09019913e-02 4.15979475e-01 -3.60973418e-01\\n4.96568419e-02 8.93433839e-02 -2.35845715e-01 1.28679082e-01\\n-5.15796781e-01 -2.83638656e-01 -7.60965645e-02 5.88786937e-02\\n8.40616971e-02 -1.43331990e-01 -1.23501852e-01 1.88944682e-01\\n-8.49156082e-02 -2.38799989e-01 -3.93284172e-01 -1.31349117e-01\\n-2.93473840e-01 -6.56541437e-02 3.03354673e-02 -8.76329690e-02\\n-5.44164404e-02 -1.98884383e-01 -1.03343755e-01 -9.32644978e-02\\n1.93039417e-01 -1.14610180e-01 -1.34326488e-01 -1.14313647e-01\\n2.24361435e-01 2.28048891e-01 5.57747006e-01 -7.72029385e-02\\n1.52326241e-01 -1.63237780e-01 -1.82844639e-01 9.61039066e-02\\n2.53780782e-01 -1.57856140e-02 -4.35886569e-02 4.63002771e-01\\n-2.19717070e-01 -1.74742132e-01 5.88469654e-02 3.03875387e-01\\n-4.90969658e-01 1.40039176e-02 -1.14509061e-01 6.21541739e-02\\n6.52865171e-02 1.71081141e-01 -1.04353324e-01 6.59059808e-02\\n-2.05112398e-01 -5.03061652e-01 2.41616905e-01 -1.09978862e-01\\n-1.11151487e-01 5.79248965e-02 1.98500186e-01 1.45641506e-01\\n-2.66520470e-01 -3.41722593e-02 -9.32593122e-02 1.76991269e-01\\n3.12119126e-02 2.94100970e-01 -1.62990034e-01 -2.11572111e-01\\n-2.90787637e-01 1.10125333e-01 7.60126859e-04 1.83045611e-01\\n1.70817636e-02 3.41782391e-01 -1.55177265e-02 7.36217275e-02\\n3.32857430e-01 -1.21697057e-02 -1.76586255e-01 -1.98093295e-01\\n-2.31476635e-01 -1.52300045e-01 -7.75761157e-02 -6.31126836e-02\\n2.55643845e-01 -3.11349928e-01 -5.39372712e-02 -2.28299096e-01\\n-1.84759542e-01 -3.63991141e-01 2.86921542e-02 -1.25742614e-01]]',\n", + " 'job_description': 'Help us actively shape and promote the digitalization of the Lufthansa Group! As a team player in our IT to Business Alignment unit, you’ll turn challenges into innovative solutions for our Operations Planning & Steering. You will partner up with our business units and our IT service providers. And you will delight in transforming pain points into appealing apps. So if you’re the type to pour all your passion and your energies into interpreting extensive data, and for whom “that won’t work” or “we’ve tried that already” only makes you more determined, come aboard! Your duties Use statistical data analysis or simulations to develop practical solutions to business problems Develop and improve forecasts in business areas and make adjustments according to market requirements Visualize and interpret analytical results for business and translate analytics into business language Present complex information to internal and external stakeholders Develop strategies and recommend improvements to the overall data collection process including data submission formats and standards to improve data quality Work out project proposals with goals, resources, milestones and costs Leading IT projects up to and including their operational handover Developing test procedures and conducting tests Active collaborations with various organizations within the Lufthansa Group Willingness to travel Your profile University degree (Master, PhD as asset) with a quantitative focus in Mathematics, Statistics, Data Science or similar Relevant working experience in creating and using advanced machine learning algorithms and statistics for regression, classification, simulation, etc. Advanced skills in SQL and in one or more of the following programming languages: R, Python Knowledge in BI Tools for interactive data visualization (e.g. Tableau, QlikView, Shiny) is an asset Highly analytical and conceptual mindset, as well as creativity and innovative ability to stay atop complex situations Proven experience in IT project management (Agile certification an advantage) Experience in requirements engineering An ability to familiarize yourself swiftly and independently with new topic areas Good written and verbal communication skills in German and English and ability to work in cross cultural environments Details Employment level: 80-100% Department: IT to Business Alignment Work place: Zurich, Kloten Starting date: upon agreement Application deadline: November 24, 2019 Contact Head of IT to Business Alignment Flight & Ground Operations: Mr Fredy Wehrli Human Resources: Ms Kerstin Braun Recruiting Support: Tel.: +41 44 564 44 22 You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Hospitality\", \"Operations\", \"Presentations\", \"Innovation\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Data Quality\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Milestones (Project Management)\", \"Analytics\", \"Statistics\", \"Statistical Coupling Analysis\", \"Strategic Business Unit\", \"Activism\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Market Requirements Documents\", \"E (Programming Language)\", \"IBM Personal Computer/AT\", \"Human Resource Management\", \"Data Science\", \"QlikView (Data Analytics Software)\", \"Library For WWW In Perl\", \"Shiny (R Package)\", \"Requirements Engineering\", \"Digitization\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Business Alignment\", \"Acceptance Test Procedures\", \"Survey Data Analysis\", \"Operational Planning\", \"Simulations\", \"Agile Management\", \"Appeals\", \"Project Proposals\", \"Cross-Cultural Studies\", \"Service Provider\", \"Project Management\", \"Data Collection\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"Advanced Business Language\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Southern Sotho', 'Kikuyu', 'Javanese', 'Northern Sami']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Cheseaux-Noréaz',\n", + " 'industry': 'Telecommunications Manufacturing',\n", + " 'website': 'www.nagra.com',\n", + " 'jobdescription_embedded': '[[-1.93390340e-01 2.77924567e-01 5.01804709e-01 1.81110166e-02\\n4.76072967e-01 -9.28495005e-02 -6.60263225e-02 3.26945603e-01\\n-2.16499064e-02 -3.39423329e-01 -1.13672808e-01 -3.34753096e-01\\n-7.95038864e-02 7.88691789e-02 4.40750569e-02 5.63180983e-01\\n2.15001911e-01 3.60997245e-02 -1.84154361e-01 2.96018839e-01\\n1.38408139e-01 -1.25215948e-01 6.02634773e-02 8.01748753e-01\\n4.49488342e-01 3.76719609e-03 -9.87215936e-02 7.30357021e-02\\n-2.39515066e-01 -3.15817535e-01 5.22049665e-01 5.76899238e-02\\n-1.63596541e-01 -3.63487303e-01 1.32173717e-01 1.52533710e-01\\n-2.35982120e-01 -1.51531845e-01 -1.19588375e-01 1.87052414e-01\\n-5.52772522e-01 -2.36624807e-01 -5.25480658e-02 6.54785708e-02\\n-3.17484468e-01 -3.02535892e-01 4.32687774e-02 -1.12842366e-01\\n8.81983414e-02 7.55868852e-03 -5.18114507e-01 2.97081202e-01\\n-2.48329788e-01 -1.87904283e-01 3.33591223e-01 7.38321483e-01\\n2.51295995e-02 -4.86441612e-01 -4.85969454e-01 -3.39033484e-01\\n2.18928251e-02 -1.41875550e-01 1.38466544e-02 -4.12062854e-01\\n3.57018411e-01 4.59606126e-02 -2.31438987e-02 3.20294201e-01\\n-7.86396384e-01 -6.27257153e-02 -3.04109573e-01 -1.52090751e-03\\n-4.21671778e-01 -3.77410464e-02 -4.19388056e-01 -9.10360068e-02\\n-7.36199915e-02 4.05428231e-01 8.64392519e-03 7.50249177e-02\\n-2.30509937e-01 3.35918397e-01 -1.94170743e-01 3.57369065e-01\\n2.51653016e-01 2.16749519e-01 1.47557765e-01 3.76847208e-01\\n-3.69135708e-01 4.87062871e-01 1.31568879e-01 -3.57342720e-01\\n2.68102556e-01 1.06419429e-01 5.21375656e-01 -4.98937368e-02\\n1.94156855e-01 9.61908996e-02 -2.94948786e-01 3.10727984e-01\\n2.42743820e-01 -3.21368456e-01 9.57377031e-02 -1.33614749e-01\\n4.79593426e-02 -2.30195709e-02 9.66019705e-02 1.61783025e-01\\n-3.02450091e-01 5.01802862e-01 1.90279201e-01 -2.10072368e-01\\n-9.68805179e-02 -4.66984987e-01 -1.16213381e-01 -2.52629053e-02\\n-2.88147386e-02 2.58512795e-01 1.48890018e-01 1.52663618e-01\\n2.28011161e-01 -5.32306023e-02 1.16999999e-01 8.33917260e-01\\n-1.68941319e-02 4.49017659e-02 -2.26312667e-01 3.22550654e-01\\n1.63619071e-01 -3.08049709e-01 3.36838305e-01 8.97111148e-02\\n-1.11415293e-02 -1.81943491e-01 -2.75236130e-01 4.04765517e-01\\n-1.84121355e-01 -3.24688911e-01 -3.16918552e-01 2.59879947e-01\\n6.12207092e-02 -3.22569191e-01 6.73745751e-01 -2.25977041e-03\\n1.84849769e-01 -1.61950499e-01 -5.95908687e-02 -1.50294125e-01\\n-8.14361647e-02 2.15271458e-01 1.78827681e-02 1.26426145e-01\\n-3.01731110e-01 -2.58384407e-01 -1.67411223e-01 1.12409666e-01\\n-3.46231550e-01 1.17487475e-01 -3.26148346e-02 -1.38124973e-01\\n2.23375708e-01 5.62720187e-02 -3.76535773e-01 1.75817162e-01\\n-9.93166864e-02 -1.11343704e-01 -5.73932603e-02 3.81676555e-01\\n-1.54532522e-01 2.42482960e-01 -6.27475232e-02 -4.69405651e-02\\n7.06768632e-01 1.40007466e-01 2.09126383e-01 5.31552136e-02\\n2.79631138e-01 -3.73929217e-02 1.90810189e-01 1.86891645e-01\\n-6.77552938e-01 2.83256382e-01 -4.73939329e-02 -1.59995556e-01\\n8.07602406e-02 -1.49943784e-01 3.19896370e-01 -3.64178360e-01\\n2.05223449e-02 -3.78290825e-02 -3.37747335e-01 -3.24886680e-01\\n-1.97796598e-01 -7.78833553e-02 2.83551484e-01 -4.80871499e-01\\n-5.73686771e-02 2.93623477e-01 -5.32530069e-01 -2.17717201e-01\\n7.69181624e-02 2.17666015e-01 1.82104781e-01 1.87638044e-01\\n-9.29015428e-02 -6.46547318e-01 3.05095706e-02 -3.96075398e-01\\n-3.36437047e-01 4.42718156e-02 -3.47922266e-01 2.17511177e-01\\n1.19906016e-01 2.91849487e-02 -1.46870300e-01 8.35912973e-02\\n-3.18597257e-01 7.10360147e-03 4.80577573e-02 1.00083232e-01\\n2.41018087e-01 2.05619231e-01 -4.25904065e-01 4.11185622e-01\\n-2.07626775e-01 6.51127577e-01 1.59364566e-01 -8.70664716e-01\\n6.27516866e-01 2.93895543e-01 -5.87536693e-02 -3.01257491e-01\\n4.96024221e-01 -3.68181825e-01 -6.29264638e-02 8.39697719e-02\\n-3.45402390e-01 -3.73178869e-01 2.67325342e-01 -2.27457896e-01\\n-2.12292194e-01 4.58089650e-01 1.66276857e-01 1.45967424e-01\\n3.13223839e-01 -2.47811377e-01 -4.86939959e-02 9.41152424e-02\\n-5.63932732e-02 -1.94827706e-01 -6.11626387e-01 -2.65978072e-02\\n-1.45259976e-01 -3.90954763e-01 -1.55207306e-01 -3.82913649e-01\\n-2.79125035e-01 -3.92443806e-01 -7.13577569e-02 2.77209073e-01\\n2.72771358e-01 1.16182506e-01 3.57387960e-03 2.87717097e-02\\n-1.32866442e-01 -6.99489713e-01 -2.21442580e-02 9.70575958e-02\\n4.08428192e-01 3.04132819e-01 1.79000333e-01 8.35676491e-03\\n1.22414336e-01 7.05972850e-01 -3.13608378e-01 -3.50304037e-01\\n1.89243823e-01 1.35080785e-01 4.15236950e-02 -6.59190416e-02\\n1.47033677e-01 2.48235822e-01 -2.87692726e-01 7.99555331e-02\\n-1.75016701e-01 -6.94361702e-02 4.41831201e-01 2.69607641e-03\\n-2.70175815e-01 -8.39509070e-02 -1.17887571e-01 1.53057113e-01\\n-4.60989207e-01 -1.41435266e-01 5.70589900e-01 2.46266574e-01\\n1.75112724e-01 2.66720578e-02 6.16339296e-02 -1.11193405e-02\\n-2.76144534e-01 -3.44712049e-01 3.27240616e-01 1.30336449e-01\\n5.75247929e-02 6.09794185e-02 2.96363235e-02 -6.86978579e-01\\n-3.09289837e+00 -1.47160172e-01 2.29708046e-01 -2.42755324e-01\\n2.07509115e-01 -1.33303255e-01 8.39177966e-02 -3.59278917e-02\\n-3.80930483e-01 8.64251330e-02 -1.66980088e-01 -1.91354677e-01\\n1.13399271e-02 1.32937565e-01 2.54045069e-01 2.03568459e-01\\n1.28719211e-01 -2.68744260e-01 1.10798413e-02 3.18819195e-01\\n-1.27474442e-01 -6.43679082e-01 1.74137115e-01 5.21031432e-02\\n1.30385220e-01 1.68659955e-01 -3.60097528e-01 -9.05617252e-02\\n-3.11006248e-01 -2.47617871e-01 7.62161314e-02 -3.37372631e-01\\n-1.42928526e-01 2.63114959e-01 2.64363050e-01 -7.41200149e-02\\n6.29472733e-03 -3.65716815e-01 -1.37773842e-01 -4.71107721e-01\\n7.59378970e-02 -5.51772177e-01 4.75806445e-02 -2.34245449e-01\\n8.15466344e-01 -2.78617293e-01 8.43410715e-02 7.00802356e-02\\n1.89586207e-01 6.12475947e-02 1.24108024e-01 9.06017497e-02\\n-2.21164644e-01 -2.60812104e-01 -7.57719576e-02 -1.94069147e-01\\n5.93221724e-01 4.51687694e-01 -1.61932379e-01 1.74438879e-02\\n1.15954690e-01 -2.62336224e-01 -4.45423245e-01 -3.56919527e-01\\n-9.48811918e-02 -1.39070734e-01 -7.90461540e-01 -5.07189989e-01\\n-9.54942331e-02 -1.18293837e-01 -1.57220513e-01 6.06403589e-01\\n-2.71673024e-01 -2.85654485e-01 -6.84792697e-02 -5.34494638e-01\\n3.21565360e-01 -1.51260018e-01 1.97156280e-01 -1.93328530e-01\\n-2.38721669e-01 -5.45080304e-01 1.25786021e-01 -8.05869401e-02\\n-1.59597561e-01 -3.47625434e-01 -3.21810395e-02 -1.90993547e-01\\n-3.49886656e-01 -6.32096171e-01 3.85454535e-01 1.46352589e-01\\n3.50929320e-01 1.76650107e-01 2.53321201e-01 -7.20813870e-02\\n2.80941397e-01 4.18804586e-03 5.18658459e-02 -3.28548998e-01\\n7.05873668e-02 -2.07814835e-02 5.09122849e-01 -3.17017168e-01\\n3.70138660e-02 7.38022551e-02 -3.11970621e-01 2.96372361e-02\\n4.07189995e-01 -9.29967687e-02 3.61785479e-02 -7.15148151e-02\\n2.96787322e-01 -2.63670802e-01 -1.06369890e-01 1.05328768e-01\\n7.59965628e-02 6.83040440e-01 -1.40000042e-02 -4.26541060e-01\\n-1.21085547e-01 4.62739170e-01 2.10811831e-02 3.10530178e-02\\n-1.87994242e-01 6.26327023e-02 -2.70039380e-01 2.72296906e-01\\n3.62038128e-02 -2.24760011e-01 -1.64340943e-01 -1.27783716e-01\\n-9.55685079e-02 3.50730836e-01 2.58674979e-01 7.14365542e-02\\n-9.79979336e-02 -3.44591916e-01 -1.22558422e-01 2.58416981e-01\\n2.26870358e-01 5.44835687e-01 2.59920806e-01 -2.79921740e-01\\n-6.63616881e-03 3.10074151e-01 -1.92567527e-01 2.72824228e-01\\n-1.86168492e-01 5.69349155e-02 -6.47449613e-01 -1.86156839e-01\\n-2.61200130e-01 -3.86020362e-01 2.66185939e-01 3.50681454e-01\\n1.60606921e-01 -3.71423997e-02 1.14065900e-01 -4.81083572e-01\\n2.93204844e-01 1.24147803e-01 1.90576866e-01 1.69091284e-01\\n-2.90198065e-03 5.77316701e-01 -1.32041007e-01 -2.01213270e-01\\n-2.79412791e-02 -1.08734138e-01 -2.43598938e-01 -1.34481445e-01\\n5.25994822e-02 -5.41100383e-01 -2.08290905e-01 5.25271595e-01\\n1.92522913e-01 -1.61536857e-01 -2.86735773e-01 2.99237072e-01\\n5.29160257e-03 -2.50999212e-01 -2.72839546e-01 -3.55201177e-02\\n3.68459821e-01 2.09577292e-01 2.97717690e-01 -5.02060652e-01\\n-1.10224728e-02 -5.48417009e-02 -1.97186731e-02 4.34965074e-01\\n4.53365371e-02 2.80277673e-02 -1.76783532e-01 -1.05656266e-01\\n5.69832265e-01 -8.32489505e-02 -6.65723979e-02 2.53277868e-02\\n8.70916247e-02 -1.98935166e-01 -4.53278720e-01 1.22513428e-01\\n-7.96661526e-02 -3.06424856e-01 4.50605229e-02 1.25570059e-01\\n2.32759863e-03 1.98925249e-02 -6.41682625e-01 -2.17325240e-01\\n-2.69363523e-01 -5.16636707e-02 7.63184503e-02 -5.36889911e-01\\n-4.05533835e-02 -9.23997909e-02 -6.21217847e-01 2.37880588e-01\\n-2.14674890e-01 -1.32803440e-01 1.74234867e-01 1.41237199e-01\\n-2.39239633e-01 -8.44657943e-02 6.18379861e-02 1.94269776e-01\\n-3.32863331e-01 -2.50441462e-01 -3.34421992e-02 -9.36687350e-01\\n1.97891012e-01 7.59173036e-02 -1.51172087e-01 2.04174906e-01\\n-6.31334037e-02 -7.54140198e-01 7.00052083e-02 -3.83863509e-01\\n1.05138570e-02 3.62985618e-02 -1.82286263e-01 -3.71965140e-01\\n2.47092485e-01 -1.47618540e-02 -2.24826425e-01 4.07891929e-01\\n-3.42553318e-01 2.86887467e-01 -1.23881146e-01 9.29970816e-02\\n5.76946884e-04 -2.37492174e-01 1.81121379e-01 -3.31810206e-01\\n-4.04159427e-01 -2.30873838e-01 -3.36333036e-01 -2.29255021e-01\\n-5.42669967e-02 -3.70674849e-01 -1.04871765e-01 6.71397671e-02\\n4.32558477e-01 5.54564744e-02 -1.23297215e-01 -2.44844496e-01\\n4.49631363e-02 -4.37671423e-01 2.07597390e-04 -8.64563435e-02\\n-3.02169845e-02 -1.06081709e-01 1.12802267e-01 1.12792224e-01\\n2.03269899e-01 -3.88275325e-01 3.91163290e-01 -5.10036707e-01\\n-2.99046218e-01 -1.31033391e-01 6.16677217e-02 -7.44930357e-02\\n4.13323164e-01 -4.16863263e-01 -3.38103846e-02 4.03312147e-01\\n1.38649538e-01 9.60152820e-02 2.46151626e-01 -1.60694107e-01\\n-1.52832061e-01 2.50324816e-01 -4.04224932e-01 5.22971861e-02\\n8.18529963e-01 1.13993064e-01 1.33930326e-01 1.73950702e-01\\n1.40929729e-01 2.05039456e-01 4.76270974e-01 -3.61044742e-02\\n-3.03522386e-02 3.13703775e-01 1.62929371e-02 -4.79430497e-01\\n-6.92121089e-02 -1.16267435e-01 -1.69646084e-01 -4.05548334e-01\\n6.26175165e-01 4.02683735e-01 -3.98757488e-01 -2.02044100e-01\\n-1.34036064e-01 -1.68890834e-01 2.36139208e-01 1.11739207e-02\\n-6.54741675e-02 2.90875211e-02 4.29262280e-01 -1.20581269e-01\\n2.08370730e-01 5.39000750e-01 -1.45645544e-01 -2.49825612e-01\\n-6.82584345e-02 1.93949878e-01 5.13929352e-02 5.56977808e-01\\n-2.64696747e-01 3.74438584e-01 -8.23908448e-02 1.00607641e-01\\n-1.17289603e-01 1.19536594e-01 2.37303466e-01 1.38847664e-01\\n2.20385760e-01 1.11251429e-01 3.74819040e-01 4.64072645e-01\\n2.28355542e-01 4.45784569e-01 3.01491618e-01 8.00138265e-02\\n4.06049728e-01 6.07006073e-01 4.04298246e-01 1.59393221e-01\\n2.30107382e-02 5.83453178e-02 1.21774837e-01 5.12881391e-03\\n4.21329677e-01 3.81233990e-01 1.93578154e-01 8.62824440e-01\\n2.67820001e-01 2.89986759e-01 7.43821263e-01 -7.54431367e-01\\n-3.47673208e-01 5.53575829e-02 5.33375144e-01 -4.02403325e-01\\n1.35910705e-01 6.95232004e-02 -2.16342986e-01 3.56198013e-01\\n-5.84395766e-01 -3.19081247e-01 -3.81721333e-02 4.78594974e-02\\n2.43099611e-02 -1.58870026e-01 -1.85453087e-01 1.48007721e-01\\n-9.29111987e-02 -1.30216300e-01 -4.11887586e-01 -1.82261735e-01\\n-2.63954997e-01 -9.53133553e-02 -1.12770095e-01 -1.14505112e-01\\n-1.19524062e-01 -2.94717431e-01 -1.05689675e-01 -1.19996898e-01\\n2.72717148e-01 -2.19322458e-01 -6.47427887e-02 -1.00277610e-01\\n3.83762538e-01 1.70772836e-01 5.49828649e-01 8.42723995e-04\\n6.09900057e-02 -2.10879982e-01 -1.93820387e-01 3.22846584e-02\\n1.73299983e-01 4.31253053e-02 3.46397460e-02 2.87407547e-01\\n-2.97953278e-01 -1.97812617e-01 1.66939139e-01 2.18815118e-01\\n-4.30949509e-01 2.41664071e-02 -1.03671983e-01 1.76756278e-01\\n9.04382542e-02 1.59854054e-01 -1.94933787e-01 5.76399639e-02\\n-1.98936343e-01 -5.00330567e-01 3.19982827e-01 -8.62606615e-02\\n-1.38657302e-01 9.14874971e-02 3.29050004e-01 1.47112742e-01\\n-3.00496370e-01 9.76476073e-03 -1.19819358e-01 1.36263028e-01\\n4.89122756e-02 2.49621272e-01 -1.50469199e-01 -3.28121036e-01\\n-3.26744318e-01 2.45058388e-01 -8.06309730e-02 4.98420410e-02\\n-1.01201274e-02 4.61749643e-01 9.69566777e-02 6.85540587e-02\\n5.00011802e-01 4.16603871e-02 -2.93963432e-01 -3.27199519e-01\\n-2.19912857e-01 -2.18446314e-01 -8.32550079e-02 -1.41111344e-01\\n1.66932538e-01 -4.11995828e-01 -1.03597417e-01 -1.78580388e-01\\n-6.06318451e-02 -3.55135262e-01 -3.09639033e-02 -7.80791938e-02]]',\n", + " 'job_description': 'Stimulating. Motivating. Challenging. NAGRA, a digital TV division of the Kudelski Group provides security and multiscreen user experience solutions for the monetization of digital media. The company offers content providers and DTV operators worldwide secure, open, integrated platforms and applications over broadcast, broadband and mobile platforms, enabling compelling and personalized viewing experiences. Location: Cheseaux, Switzerland Mission As part of the Kudelski Group’s \"Insight\" initiative, we are developing data analytics products for major telecom operators around the world, powered by state-of-the-art machine learning and probabilistic algorithms. We are looking for a Data Scientist to help us transform raw data into actions and predictions so that our clients can effectively navigate their business. We work on a large spectrum of machine learning applications, including predictive maintenance, uplift prediction, and time series forecasting. Woud you like to join a nimble, focused and fast-moving division within a well-established company? We are a team of techies, data crunchers and business experts who want to make a difference in a fast-changing industry – get in touch! Responsibilities As a member of the team, you will build machine learning workflows to address a wide range of business questions. Your main responsibilities will be to: Apply statistical analysis and visualization techniques to gain actionable insights into large volumes of data from different sources Develop machine learning workflows Work closely with the engineering team and support them in the industrialization of the final workflow Occasionally travel to clients to discuss their data and business needs and to present project results Maintain and develop professional knowledge by attending and presenting at conferences, reading professional publications and testing state-of-the-art tools Requirements / Profile Here is the kind of profile we are looking for: 3+ years work experience Familiar with statistics and machine learning algorithms Experience in deep learning, econometrics, or causal inference is a bonus Curious about the business impact of their workGood Python programming skills, intimate with the Python data science stack Experience with relational databases and Big Data tools like Spark, Presto, Hive, etc. Knowledge of best practices for software development and data organization, and pleasure in working in an open source environment (Github is at the core of our workflow) Likes interacting with people, including clients, and can communicate well even to a non-technical audience Willingness to travel occasionally and assume a client-facing role Good spoken and written English, knowledge of French is a plus Swiss or EU resident Our team promotes integration and is committed to provide equal employment opportunity to all applicants Reference: 11269 Publication Date: 28-10-2019',\n", + " 'soft_skills': '[\"Professionalism\", \"Communications\", \"Written English\", \"Operations\", \"Integration\", \"Presentations\", \"Sourcing\"]',\n", + " 'hard_skills': '[\"Predictive Maintenance\", \"Tooling\", \"Programming (Music)\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Prediction\", \"Machine Learning\", \"Good Agricultural Practices\", \"Industrialization\", \"Statistical Coupling Analysis\", \"Scholastic READ 180\", \"Visualization\", \"Python (Programming Language)\", \"Maintainability\", \"Digital Media\", \"Open Telecom Platforms\", \"Mobility\", \"Machine Learning Methods\", \"Econometrics\", \"Github\", \"Data Science\", \"Time Series\", \"Apache Hive\", \"Equalization\", \"Digitization\", \"Personalization\", \"Big Data\", \"Deep Learning\", \"Finalization\", \"Reference Application\", \"Causal Inference\", \"Raw Data\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Forecasting\", \"User Experience\", \"Integration Platforms\", \"Workflows\", \"Broadcasting\", \"Broadband\"]',\n", + " 'languages': \"['English', 'Pashto', 'Lithuanian', 'Tatar', 'Ewe']\"},\n", + " {'company_id': '62',\n", + " 'job_title': 'software engineer - operation solutions',\n", + " 'location': 'Grenchen',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.91340968e-01 2.03036457e-01 5.38426340e-01 3.72208096e-02\\n5.74043393e-01 -2.89753944e-01 -6.52821586e-02 2.73197621e-01\\n-7.20130056e-02 -3.28280777e-01 -1.55949757e-01 -2.17719153e-01\\n-1.38210461e-01 1.52106257e-02 2.56817460e-01 2.88870156e-01\\n2.71459907e-01 1.19538054e-01 -2.04797849e-01 2.51364887e-01\\n1.25090182e-01 -1.70664936e-01 1.29699901e-01 6.90535963e-01\\n3.39582533e-01 -2.78459694e-02 -4.50939387e-02 9.17675570e-02\\n-2.96406895e-01 -1.44567430e-01 3.39789361e-01 -5.83779961e-02\\n-7.98451677e-02 -2.97836930e-01 1.06212594e-01 8.94083604e-02\\n-2.04502583e-01 8.34680051e-02 -3.59949097e-02 1.20066456e-01\\n-4.23214704e-01 -2.39556566e-01 8.41680467e-02 7.83899277e-02\\n-2.47022018e-01 -2.59608507e-01 8.46966729e-03 -5.19576222e-02\\n1.55556098e-01 1.27397780e-03 -4.76535261e-01 3.53759825e-01\\n-2.20004082e-01 -2.42173374e-01 3.00030947e-01 4.87740278e-01\\n3.41971777e-02 -5.33801556e-01 -3.31683993e-01 -2.52334833e-01\\n1.44162565e-01 -2.07661167e-01 7.85057619e-02 -2.55059510e-01\\n4.11329806e-01 -1.02291130e-01 -1.81144476e-02 2.84027815e-01\\n-7.75342643e-01 -4.20701653e-02 -1.68980688e-01 2.75850762e-02\\n-2.81638622e-01 -1.16157949e-01 -2.34573603e-01 -9.69759524e-02\\n-1.10180087e-01 3.19297045e-01 7.45527968e-02 1.50860816e-01\\n-1.55440912e-01 2.60393620e-01 -1.51225433e-01 2.62723148e-01\\n2.46053383e-01 2.88833708e-01 2.07615942e-01 3.30412984e-01\\n-4.05816972e-01 4.91016895e-01 1.03018731e-01 -3.00505161e-01\\n2.28512213e-01 2.04043657e-01 3.57509583e-01 8.06562379e-02\\n-6.59476891e-02 9.31607485e-02 -2.66989559e-01 1.88974574e-01\\n2.41316274e-01 -3.06503087e-01 -5.90524450e-02 2.56696697e-02\\n-7.47649744e-02 -1.60186104e-02 -7.22765550e-02 3.50184470e-01\\n-3.26893628e-01 3.95014316e-01 1.69030830e-01 -2.07531407e-01\\n-7.64881074e-02 -5.37078679e-01 -1.68753207e-01 1.52255148e-01\\n-1.19586820e-02 2.05144659e-01 4.34928417e-01 3.25380325e-01\\n3.84270459e-01 1.21490143e-01 1.30150393e-01 9.44242299e-01\\n-4.95735779e-02 1.17167644e-01 -2.09232017e-01 4.02302891e-01\\n1.94669545e-01 -2.62564749e-01 8.18037316e-02 3.60250235e-01\\n1.15455963e-01 -7.28202164e-02 -1.26744509e-01 2.83597916e-01\\n-9.26273689e-02 -1.52015328e-01 -2.32087776e-01 1.20138206e-01\\n-1.34180292e-01 -4.78262722e-01 5.45299351e-01 4.71945256e-02\\n1.58264711e-01 -4.92005646e-02 -1.16822034e-01 -8.64856541e-02\\n-1.80821598e-01 3.19471359e-01 1.98566951e-02 2.62666941e-01\\n-3.10018510e-01 -2.64229447e-01 -2.81410933e-01 2.57913083e-01\\n-2.20459864e-01 7.20654428e-02 -1.62193447e-01 -1.63774282e-01\\n3.21524769e-01 9.89319235e-02 -3.85386467e-01 2.86743581e-01\\n-1.90600261e-01 -1.20768070e-01 -3.29508334e-02 3.09103936e-01\\n-9.41144228e-02 1.27656043e-01 2.86610443e-02 -3.01703103e-02\\n4.44278419e-01 1.43279418e-01 1.98540166e-01 -1.34068578e-01\\n2.68233925e-01 -1.18866272e-01 1.36078611e-01 1.07941076e-01\\n-6.72154427e-01 3.27044427e-01 -1.21078327e-01 -1.28174722e-01\\n1.53293937e-01 2.47341152e-02 4.44259137e-01 -2.29118109e-01\\n-1.97009426e-02 -1.71583295e-01 -3.62039208e-01 -3.84048283e-01\\n-2.41875544e-01 -2.19405238e-02 4.09010231e-01 -4.12078053e-01\\n1.54122505e-02 1.72517091e-01 -5.09328246e-01 -1.42419031e-02\\n2.31623247e-01 2.09469095e-01 1.54016182e-01 6.74793348e-02\\n-1.12498850e-01 -5.64905941e-01 1.41351679e-02 -3.18751991e-01\\n-2.78344214e-01 6.09368645e-02 -3.09616029e-01 1.44788355e-01\\n1.85062364e-01 -1.07156802e-02 7.67294988e-02 4.99845706e-02\\n-2.16566399e-01 -9.69406590e-02 1.91327184e-01 7.62947947e-02\\n2.99609154e-01 -5.98267317e-02 -3.75326544e-01 5.28800070e-01\\n-3.08323234e-01 4.51215148e-01 1.97795227e-01 -8.90565217e-01\\n5.46635389e-01 1.94811687e-01 9.98348929e-04 -3.64100516e-01\\n5.71487725e-01 -3.41977745e-01 -5.77295795e-02 1.11923777e-01\\n-3.19336236e-01 -1.42394260e-01 1.99989602e-01 -1.08449779e-01\\n-2.15735093e-01 5.25084257e-01 1.01892576e-01 -5.54264039e-02\\n2.09857017e-01 -2.78669536e-01 -2.12526452e-02 -1.55988534e-03\\n-4.04975265e-02 -1.80769160e-01 -4.13599819e-01 -3.84268560e-03\\n-1.20172419e-01 -4.82204735e-01 -1.71858490e-01 -4.04166073e-01\\n-1.72958270e-01 -3.70794356e-01 -2.86282599e-01 2.59945363e-01\\n2.09842235e-01 1.25225514e-01 2.22583450e-02 -1.09641246e-01\\n-1.97909117e-01 -6.38301849e-01 -7.67032057e-02 1.24942899e-01\\n4.36293572e-01 2.89636552e-01 1.37194842e-01 -3.44236679e-02\\n5.58285564e-02 4.69440639e-01 -2.69659966e-01 -1.81255773e-01\\n1.85699105e-01 1.65561110e-01 -2.73144767e-02 -4.36879061e-02\\n6.74787462e-02 3.59854847e-01 -1.85384080e-01 -6.72199875e-02\\n-7.39591345e-02 2.32603662e-02 3.34764242e-01 -1.21046729e-01\\n-2.71654695e-01 -3.09335023e-01 -9.29699615e-02 2.13093817e-01\\n-5.28435588e-01 -1.77051157e-01 4.15446967e-01 2.44485840e-01\\n9.36592221e-02 1.56329527e-01 2.20845342e-01 -1.06614083e-01\\n-2.16665581e-01 -2.06097722e-01 1.17569514e-01 8.81016441e-03\\n8.39879885e-02 4.51064631e-02 -1.22492582e-01 -4.78192240e-01\\n-3.88405323e+00 -9.65176076e-02 1.13024175e-01 -2.30269894e-01\\n2.24092916e-01 -1.01905599e-01 7.73942247e-02 3.26004811e-02\\n-1.46460861e-01 1.03333548e-01 -2.67672718e-01 -1.15919068e-01\\n7.35870525e-02 1.98107898e-01 1.29017994e-01 1.77111506e-01\\n2.33404383e-01 -2.76460856e-01 -2.41558235e-02 3.19641948e-01\\n-1.51418954e-01 -7.20520616e-01 1.84534684e-01 -1.66656002e-01\\n2.62442976e-01 1.54020205e-01 -3.94844681e-01 -1.31777763e-01\\n-2.76303917e-01 -2.03703269e-01 4.32328582e-02 -1.70098588e-01\\n-1.24402761e-01 3.04178327e-01 1.30336031e-01 -1.28180504e-01\\n1.73566416e-01 -2.65311688e-01 -2.30125673e-02 -3.90349895e-01\\n2.33966470e-01 -5.36379635e-01 7.32443202e-03 5.32933325e-03\\n6.07118011e-01 -3.13859701e-01 1.86450958e-01 8.20596591e-02\\n1.28345415e-01 2.20478058e-01 4.09038318e-03 -1.38676882e-01\\n-2.32212707e-01 -2.01534271e-01 -1.07467109e-02 -2.90109277e-01\\n5.21738887e-01 4.69397068e-01 -2.26024300e-01 5.23331985e-02\\n4.30662036e-02 -2.36652628e-01 -4.16619539e-01 -4.54766542e-01\\n-2.70324469e-01 -5.51715344e-02 -6.60639524e-01 -4.87209380e-01\\n-1.06784545e-01 -9.91923437e-02 -1.31394535e-01 5.23879647e-01\\n-2.66487181e-01 -4.97161239e-01 2.44789384e-02 -4.08976287e-01\\n2.22622752e-01 -2.11980030e-01 -6.20807372e-02 -1.99594706e-01\\n-2.12111533e-01 -4.90067244e-01 1.38476402e-01 1.73566788e-01\\n-1.98564947e-01 -1.01837635e-01 8.11880156e-02 -2.49780387e-01\\n-3.02821040e-01 -4.90394205e-01 4.54733104e-01 9.96408910e-02\\n2.80147314e-01 -4.61336710e-02 3.32552850e-01 1.12994790e-01\\n4.14461166e-01 -1.55738339e-01 6.15635030e-02 -4.58010793e-01\\n9.29335132e-02 -7.96562284e-02 4.84920949e-01 -3.43164235e-01\\n1.73182518e-03 1.74671680e-01 -1.82115480e-01 -1.77882016e-01\\n3.50114256e-01 4.67298776e-02 8.81358087e-02 -1.94734767e-01\\n3.69712740e-01 -4.25157905e-01 -2.37110749e-01 1.33573100e-01\\n1.38775021e-01 6.81563795e-01 2.69877836e-02 -3.63217950e-01\\n-3.04777175e-01 5.01681089e-01 -3.54774967e-02 -4.72964011e-02\\n-1.00159630e-01 1.98888317e-01 -2.18727633e-01 3.60819548e-01\\n1.57112926e-01 -2.08204731e-01 -2.95026213e-01 2.58928514e-04\\n-4.65924339e-03 1.54342368e-01 2.66459465e-01 -2.51540989e-02\\n-5.84039055e-02 -2.09673584e-01 -1.40340580e-02 1.15842432e-01\\n2.50836223e-01 3.58922631e-01 1.96918324e-01 -2.40709618e-01\\n2.99868900e-02 3.22046518e-01 -1.72585398e-01 1.98913425e-01\\n-1.45595267e-01 2.85592992e-02 -4.68443304e-01 -2.51397133e-01\\n-2.04308912e-01 -2.21331626e-01 -2.63435170e-02 2.44268194e-01\\n1.99978232e-01 -4.12411429e-02 4.16833349e-02 -5.64262986e-01\\n3.75853986e-01 1.62488926e-04 2.07672685e-01 1.93002805e-01\\n-3.39839160e-02 5.34348190e-01 1.17102154e-02 -6.68845177e-02\\n-1.09682560e-01 2.03380674e-01 -1.39155626e-01 -1.75251290e-01\\n-4.85803187e-03 -3.74976814e-01 -6.36933148e-02 3.15100461e-01\\n1.15362152e-01 -3.17484736e-01 -1.84879065e-01 3.45750690e-01\\n7.35080466e-02 -2.88473994e-01 -1.94355309e-01 5.21065742e-02\\n2.65097767e-01 4.71228585e-02 2.27587163e-01 -4.32173252e-01\\n-6.46530762e-02 -4.78503713e-03 5.33086881e-02 3.79134178e-01\\n3.74271255e-03 2.46397108e-02 -6.61918148e-02 -2.47240886e-01\\n3.17744970e-01 1.29023604e-02 -9.97813120e-02 -1.46665171e-01\\n9.98842157e-03 -1.65485129e-01 -4.83923167e-01 7.14493170e-02\\n-4.31708768e-02 -1.79106444e-01 9.33281332e-02 5.25090285e-02\\n1.30963340e-01 7.28289085e-03 -4.25907999e-01 -2.35332862e-01\\n-3.40464443e-01 -1.31090030e-01 4.83523794e-02 -3.81289005e-01\\n-1.66975688e-02 -1.16519695e-02 -5.16205490e-01 1.25548318e-01\\n-2.04983592e-01 2.32698377e-02 1.37954861e-01 1.02638200e-01\\n-2.15502322e-01 -9.50891748e-02 1.79975674e-01 1.68144539e-01\\n-3.23904902e-01 -2.32994333e-01 -4.60904576e-02 -9.82431054e-01\\n2.11808026e-01 -4.65137921e-02 -8.33879933e-02 1.35954199e-02\\n-1.67044923e-01 -6.94538355e-01 1.42846882e-01 -4.14295733e-01\\n-1.18084475e-01 -1.26438260e-01 -3.06750834e-01 -3.93905133e-01\\n8.77562352e-03 4.36529331e-03 -3.30400467e-01 2.98450649e-01\\n-4.22881275e-01 4.20779973e-01 -1.86525092e-01 2.73473151e-02\\n-1.87102556e-02 -2.37480685e-01 1.87513739e-01 -2.60531157e-01\\n-3.26656759e-01 -1.49371400e-01 -3.79157037e-01 -2.17180520e-01\\n-1.52174294e-01 -1.00243740e-01 -1.58164829e-01 7.63390213e-02\\n3.16854864e-01 1.79922312e-01 -1.21844821e-01 -2.71072835e-01\\n2.93238275e-02 -2.93543279e-01 2.94869281e-02 -1.82486877e-01\\n5.25985286e-02 -4.45607342e-02 1.93754330e-01 3.72170508e-02\\n2.06291571e-01 -4.12625849e-01 3.62583697e-01 -1.51187301e-01\\n-3.60731572e-01 -2.04209015e-02 1.91978857e-01 1.80265933e-01\\n3.74327689e-01 -4.75786388e-01 3.82378288e-02 2.92010874e-01\\n1.36172473e-01 1.38542056e-01 2.73102283e-01 -1.51861673e-02\\n-1.57658994e-01 1.87046498e-01 -4.09223080e-01 2.63938941e-02\\n6.07087314e-01 1.90558985e-01 9.34864283e-02 1.75301015e-01\\n1.49286672e-01 4.22856301e-01 4.65637624e-01 -8.07851180e-03\\n-3.35692279e-02 2.46516138e-01 7.94173926e-02 -4.78392005e-01\\n-7.91529343e-02 -4.90939394e-02 -1.64675146e-01 -2.70490259e-01\\n6.07476294e-01 3.46973479e-01 -3.89274806e-01 -2.26816207e-01\\n-1.58844590e-01 -1.50349587e-01 2.18428478e-01 -1.28865823e-01\\n6.55491725e-02 -1.03614166e-01 5.27684867e-01 -1.18614994e-02\\n1.66017562e-01 5.66454709e-01 -1.95736289e-01 -2.44550213e-01\\n-2.56450661e-02 2.06723958e-01 1.69054314e-01 2.91546166e-01\\n-1.45316586e-01 2.11620361e-01 -1.79838520e-02 1.22108273e-01\\n-1.82231471e-01 1.07599743e-01 6.75083371e-03 1.21774815e-01\\n2.37551227e-01 1.26054570e-01 3.07889760e-01 5.01655459e-01\\n2.13320881e-01 4.63273942e-01 3.05050343e-01 5.04222363e-02\\n4.37255442e-01 5.67312241e-01 3.95382375e-01 8.78697485e-02\\n-5.15668243e-02 1.36591375e-01 7.22596273e-02 -7.14692026e-02\\n3.13307017e-01 3.62048417e-01 1.20772615e-01 7.90987194e-01\\n2.74385065e-01 2.59547770e-01 8.03190827e-01 -5.58583498e-01\\n-3.72132957e-01 3.51394229e-02 4.19092357e-01 -3.67911994e-01\\n-3.56801413e-02 2.48515084e-02 -2.21181646e-01 2.62768656e-01\\n-4.10812765e-01 -1.40638292e-01 -2.19194740e-02 1.65360644e-02\\n-1.01658264e-02 -8.72952342e-02 -2.90384054e-01 -7.04335421e-02\\n-1.11769103e-01 -6.14358895e-02 -3.41110796e-01 -1.15725368e-01\\n-2.75775403e-01 -1.21999383e-01 -1.52499303e-01 -2.51166597e-02\\n7.24271592e-03 -3.75164896e-01 -1.17433824e-01 2.03544721e-02\\n1.84387490e-01 -2.33435497e-01 -7.60686919e-02 -1.76276878e-01\\n1.91571638e-01 1.74937308e-01 5.33961713e-01 9.73902568e-02\\n2.02272922e-01 -1.02682538e-01 -2.01888233e-01 2.62164921e-02\\n1.10633105e-01 1.22014396e-01 1.22236498e-01 4.40653354e-01\\n-3.38752389e-01 -1.12241007e-01 1.02795646e-01 3.43323350e-01\\n-3.51258695e-01 -3.49196270e-02 -3.98134477e-02 2.56528139e-01\\n3.59729901e-02 1.11744829e-01 -1.57992423e-01 5.70406532e-03\\n-2.54044592e-01 -5.62698603e-01 2.94073254e-01 -1.27599359e-01\\n-1.26803607e-01 -6.46503121e-02 3.64948094e-01 2.17634737e-01\\n-1.91192448e-01 -3.90488468e-02 -2.84770168e-02 2.13213429e-01\\n9.18473527e-02 3.17218274e-01 -2.00292528e-01 -2.01324537e-01\\n-3.08019280e-01 2.22953916e-01 -1.74216658e-01 1.59943372e-01\\n-5.93585148e-02 3.19260210e-01 -1.21511882e-02 8.54316056e-02\\n2.32024834e-01 -7.16763586e-02 -2.01117024e-01 -1.41938969e-01\\n-2.29725331e-01 -1.88037574e-01 1.32346511e-01 -6.57926574e-02\\n2.07639515e-01 -3.80341262e-01 3.09541728e-03 -1.78657435e-02\\n-1.04289912e-01 -3.44408512e-01 -1.45910248e-01 -1.12542883e-01]]',\n", + " 'job_description': '. About the Role… The Operations Solutions Team is looking for a talented Software Engineer that will contribute to our global operations software designed to manufacture HID Global products (RFID credentials, readers, controllers, badge printers, tracking beacon, …) around the world (10+ countries). What you will do… Work on full life-cycle software development of applications used for production and monitoring activities. Work in a collaborative team using Agile methodology. Design and deliver full-stack software applications in C# : provisioning engine, web services, desktop & web front-end, Database Sql & NoSql. Integrate low level API driving hardware encoders (ex. RFID programmers/analyzers, communication devices, barcode scanners, printers, etc.) Keep tight deadlines for software enhancements to match product development schedules. Who we’re looking for…. Must have a strong passion for object-oriented programming, design patterns and SOLID principles. Excellent understanding of software development within the .NET Framework/Core ecosystem. Ability to multi-task and stay organized in a dynamic environment. Knowledge of applied cryptography and RFID industry standards is greatly appreciated. Knowledge of communication interfaces such as I2C, SPI, JTAG, UART is greatly appreciated. Minimum Bachelor degree in Computer Science or Electrical Engineering required. 3+ year experience with software and solution developments, ideally used in industrial application. Good analytical and problem solving skills. Very good French and English language skills. Must be legally eligible to work in Switzerland. Final Application Date: 30th November, 2019 HID Global is an equal opportunities employer',\n", + " 'soft_skills': '[\"Collaboration\", \"Problem Solving\", \"Communications\", \"Scheduling\", \"Operations\", \"Integration\"]',\n", + " 'hard_skills': '[\"Solid Principles\", \"Enterprise Application Software\", \"NoSQL\", \"Industry Standard Architecture\", \"Hyper SQL Database (HSQLDB)\", \"Web Engineering\", \"Computer Science\", \"Analytics\", \"Distributed Design Patterns\", \".NET Framework\", \"Industrialization\", \"Cryptography\", \"Tracking (Commercial Airline Flight)\", \"Levelling\", \"Activity Monitor\", \"Idealization\", \"Barcodes\", \"Software Engineering\", \"Web Services\", \"Agile Methodology\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Equalization\", \"Agile Product Development\", \"Software Design\", \"Finalization\", \"Front End (Software Engineering)\", \"Encodings\", \"Software Development\", \"Application Programming Interface (API)\", \"Object-Oriented Programming (OOP)\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Kannada']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'director data solutions data science - analytics - bi (56)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.90481567e-01 2.48011351e-01 5.61907411e-01 -5.75898774e-03\\n5.63557088e-01 -1.46655619e-01 -3.73666808e-02 3.17813635e-01\\n-9.91410613e-02 -4.93190706e-01 -3.54826404e-03 -2.87803769e-01\\n4.04535681e-02 1.98618278e-01 1.44345403e-01 3.14964831e-01\\n2.81406164e-01 1.39580369e-01 -1.42618835e-01 3.40266287e-01\\n1.24611117e-01 -1.56572193e-01 1.01084262e-01 8.07796001e-01\\n3.99036646e-01 2.28390237e-03 -7.64889866e-02 1.02383167e-01\\n-1.88484520e-01 -2.64993221e-01 4.36564714e-01 -1.92004628e-02\\n-1.71543986e-01 -3.19798648e-01 9.72965509e-02 1.12656325e-01\\n-2.90534556e-01 -8.11100081e-02 -1.77048266e-01 9.81125608e-03\\n-4.87745166e-01 -1.32726625e-01 -7.75407255e-02 7.51893669e-02\\n-3.30263734e-01 -3.78471613e-01 -5.53231426e-02 -5.89691922e-02\\n1.89367145e-01 5.89841455e-02 -4.83574629e-01 2.95367837e-01\\n-3.03528041e-01 -2.72724599e-01 2.53647804e-01 6.54441178e-01\\n4.25396897e-02 -4.27251399e-01 -4.93742883e-01 -3.84264827e-01\\n8.48643482e-02 -9.87113565e-02 1.26467392e-01 -3.52808326e-01\\n2.73116887e-01 -6.65292516e-02 8.03774372e-02 3.12821567e-01\\n-8.79715919e-01 -6.35638535e-02 -3.06566447e-01 -5.22870459e-02\\n-3.50300491e-01 -5.35989366e-02 -5.02461672e-01 -1.74803823e-01\\n-2.03000680e-01 3.97537827e-01 9.04554576e-02 3.63278762e-02\\n-2.44128436e-01 1.72599360e-01 -3.60824227e-01 2.55076736e-01\\n2.00574353e-01 3.29738855e-01 3.01520288e-01 3.54614317e-01\\n-4.59262311e-01 5.39809942e-01 2.45878369e-01 -4.51266438e-01\\n2.62740076e-01 1.49990141e-01 3.60126913e-01 1.01715893e-01\\n2.64211476e-01 1.02569059e-01 -2.15841576e-01 1.73369572e-01\\n2.77826607e-01 -2.78778076e-01 9.98999365e-03 -1.12100184e-01\\n1.57595724e-01 -8.21139142e-02 3.90068479e-02 1.48083836e-01\\n-3.40529531e-01 2.85022616e-01 -6.60990030e-02 -3.71021271e-01\\n-1.18881457e-01 -4.29201752e-01 -6.08860999e-02 2.06952915e-02\\n1.15376040e-02 2.08292931e-01 2.38206357e-01 2.15247571e-01\\n1.87308490e-01 4.33979221e-02 2.41354764e-01 9.09054875e-01\\n-1.07610025e-01 1.84045937e-02 -3.24661672e-01 3.56444180e-01\\n1.18404076e-01 -2.50088692e-01 1.94784343e-01 1.17457107e-01\\n-7.27698654e-02 -1.35376483e-01 -2.23676622e-01 3.57288420e-01\\n-3.41545828e-02 -1.64083570e-01 -3.09303582e-01 2.05705449e-01\\n-1.04196612e-02 -4.56399322e-01 6.90836549e-01 1.53726637e-02\\n1.96204156e-01 -5.08479699e-02 3.96231748e-02 -2.02659190e-01\\n-1.00551531e-01 1.81573540e-01 3.10975760e-02 2.28642672e-01\\n-2.68327713e-01 -2.46693775e-01 -7.49473274e-02 2.65692949e-01\\n-3.35387409e-01 1.23190582e-01 -1.46794677e-01 -3.36749926e-02\\n1.77561596e-01 4.46026586e-02 -3.00410599e-01 1.63564563e-01\\n-9.28508639e-02 -8.54603797e-02 8.25958028e-02 2.91792095e-01\\n-2.61772275e-01 2.45015115e-01 -4.18765470e-02 1.28305368e-02\\n6.39437437e-01 1.50627732e-01 2.66201198e-01 -9.01235491e-02\\n2.45199978e-01 -4.90171462e-02 1.05829425e-01 1.47109672e-01\\n-7.09755480e-01 3.99899811e-01 -8.16899240e-02 -3.15548599e-01\\n9.03508514e-02 -2.50592530e-02 2.34635830e-01 -2.62744904e-01\\n-1.12964958e-03 -1.46729976e-01 -2.27311060e-01 -3.39776695e-01\\n-9.15857553e-02 -7.87522346e-02 3.60117674e-01 -5.40329218e-01\\n-3.60709652e-02 2.08325535e-01 -4.64177430e-01 -7.16918185e-02\\n9.43851620e-02 2.37491518e-01 3.45786437e-02 1.22261435e-01\\n-5.67072108e-02 -5.58922887e-01 9.51402336e-02 -4.39891696e-01\\n-2.56826520e-01 1.15555212e-01 -3.22532892e-01 8.44767094e-02\\n1.00615770e-01 -6.07031137e-02 -6.06143549e-02 1.37698814e-01\\n-2.99845397e-01 7.64429718e-02 3.17698717e-02 5.30950539e-02\\n3.80247414e-01 1.15503594e-01 -4.04168785e-01 5.36391020e-01\\n-2.09718451e-01 3.87720793e-01 8.76062140e-02 -9.22483563e-01\\n5.33375204e-01 3.40367883e-01 -1.66247785e-02 -2.52256751e-01\\n6.02700233e-01 -3.47107381e-01 -9.70283300e-02 1.11561842e-01\\n-4.31858510e-01 -2.53467619e-01 1.51693583e-01 -1.86570555e-01\\n-2.82148927e-01 5.84991753e-01 2.50667538e-02 1.73154831e-01\\n2.85961270e-01 -2.38268971e-01 -2.10175335e-01 -6.90012425e-02\\n-1.56042203e-01 -2.92927146e-01 -5.37719488e-01 -2.14700885e-02\\n-7.95442164e-02 -4.96266246e-01 -1.24892041e-01 -4.91161704e-01\\n-2.06377894e-01 -3.90549690e-01 -2.38914400e-01 1.12863444e-01\\n2.59018868e-01 1.57412350e-01 -2.00894609e-01 -1.26610100e-02\\n-3.15864794e-02 -6.19452834e-01 -9.10611972e-02 1.15114935e-01\\n4.00264502e-01 1.92143708e-01 7.91407824e-02 -9.26944166e-02\\n1.77724421e-01 5.42523563e-01 -1.23241000e-01 -3.38072896e-01\\n1.37486771e-01 1.56317174e-01 2.65269540e-02 -2.28298038e-01\\n9.61053967e-02 3.91922742e-01 -2.28199601e-01 -5.83680458e-02\\n5.26302494e-02 -7.69373327e-02 3.82126570e-01 -3.86044122e-02\\n-1.72579184e-01 -2.48682261e-01 -5.76650053e-02 1.27825662e-01\\n-5.53541064e-01 -2.45392799e-01 5.54309130e-01 1.52432576e-01\\n2.25962475e-02 2.36100823e-01 9.69252512e-02 2.02512220e-02\\n-2.51804590e-01 -8.74476284e-02 2.46270403e-01 1.11490041e-01\\n2.14496315e-01 1.44690454e-01 -7.66419023e-02 -5.70241153e-01\\n-3.58810186e+00 -2.75296509e-01 9.19485241e-02 -2.57074952e-01\\n2.58307040e-01 -1.87010124e-01 1.05559736e-01 -2.26586238e-02\\n-3.53753567e-01 5.24880514e-02 -3.66987959e-02 -2.12406754e-01\\n1.19048566e-01 1.95591316e-01 5.02188802e-02 3.70430231e-01\\n1.69916794e-01 -1.84839621e-01 5.82702085e-02 3.65325868e-01\\n-1.87921464e-01 -6.95264757e-01 2.34377712e-01 -4.15529422e-02\\n2.38410428e-01 1.82446212e-01 -5.11466324e-01 -6.02885149e-02\\n-3.18716943e-01 -1.84646323e-01 9.24049690e-02 -2.25928068e-01\\n-1.98837578e-01 2.09354162e-01 1.83038175e-01 -1.11690335e-01\\n7.62898847e-02 -3.83996308e-01 -1.15739904e-01 -5.12424707e-01\\n1.59345210e-01 -5.29330254e-01 -9.88451391e-03 -4.75608967e-02\\n7.75390983e-01 -3.78883421e-01 1.26954764e-01 1.65763646e-01\\n5.92099354e-02 1.61232993e-01 1.20479412e-01 -1.26716420e-02\\n-2.88161933e-01 -3.15358698e-01 -9.55502465e-02 -2.74848044e-01\\n6.44145906e-01 4.50397789e-01 -1.18411630e-01 4.43439744e-03\\n9.13475454e-03 -2.45492965e-01 -4.21997666e-01 -3.10094237e-01\\n-1.13692418e-01 -1.03877239e-01 -6.14946306e-01 -3.71634156e-01\\n-1.41997069e-01 -2.58700579e-01 -1.71990469e-02 6.18764281e-01\\n-2.58149058e-01 -3.40463430e-01 -7.84673393e-02 -4.50513750e-01\\n4.15275097e-01 -1.56668007e-01 5.74079305e-02 -1.86023012e-01\\n-2.11378932e-01 -4.50133979e-01 8.33961070e-02 -7.64773339e-02\\n-1.14312433e-01 -1.95191979e-01 1.05109885e-01 -1.85861304e-01\\n-3.58832479e-01 -5.44290304e-01 4.25663292e-01 5.34886196e-02\\n2.73384988e-01 2.00758263e-01 4.18469131e-01 -3.90166268e-02\\n2.94337690e-01 -1.39412075e-01 -1.67756140e-01 -4.67190623e-01\\n1.86611824e-02 -9.44684222e-02 4.12904501e-01 -1.01576604e-01\\n1.14814125e-01 4.80448343e-02 -1.10938221e-01 1.02005564e-02\\n3.59535873e-01 -1.00978106e-01 1.71611562e-01 -1.67393088e-01\\n2.01020941e-01 -2.15414971e-01 -1.50323987e-01 6.58608824e-02\\n7.62703791e-02 6.57764733e-01 4.50925231e-02 -3.29192132e-01\\n-1.47289634e-01 4.74786162e-01 -5.20635061e-02 2.63351649e-02\\n-1.78283364e-01 1.57896608e-01 -3.12665164e-01 2.70926565e-01\\n-4.41581421e-02 -1.38448387e-01 -2.40532845e-01 -1.50403470e-01\\n-3.77163291e-02 3.44454855e-01 2.30186284e-01 8.47492516e-02\\n-3.92998829e-02 -3.48584592e-01 -1.00089088e-01 1.60120741e-01\\n2.17706144e-01 5.03104270e-01 2.18718022e-01 -2.68655568e-01\\n5.68475574e-03 2.84321129e-01 -2.75115371e-01 2.83784151e-01\\n-3.11012536e-01 1.90055251e-01 -5.96908569e-01 -2.48126790e-01\\n-2.55230665e-01 -4.44162309e-01 2.00664058e-01 2.89660841e-01\\n1.49672553e-01 -6.57439381e-02 1.44551188e-01 -3.76701057e-01\\n2.55458295e-01 6.60558045e-02 1.67475566e-01 1.30718663e-01\\n-1.32357143e-02 6.58572257e-01 4.08836547e-03 -1.10146426e-01\\n-1.48528084e-01 1.01033136e-01 -8.62370282e-02 -2.24667013e-01\\n-5.93722686e-02 -5.59516788e-01 -1.83138624e-01 4.90915835e-01\\n1.76508546e-01 -2.03756481e-01 -1.21059105e-01 3.13248485e-01\\n-7.10798204e-02 -2.73466974e-01 -2.61596143e-01 8.17731768e-03\\n2.98589170e-01 2.81290114e-01 2.14378089e-01 -4.99237657e-01\\n2.11715419e-02 1.81080084e-02 7.32676610e-02 5.84279954e-01\\n-5.54007925e-02 1.54899925e-01 -2.11950969e-02 -1.80828720e-01\\n4.94569659e-01 -6.37378991e-02 -1.59963027e-01 1.26576424e-03\\n1.83565676e-01 -2.47886017e-01 -3.90682220e-01 9.73189622e-02\\n7.55012631e-02 -2.77055413e-01 4.36475538e-02 1.64047420e-01\\n1.12974122e-01 3.77913490e-02 -6.44299269e-01 -2.15922996e-01\\n-3.90681624e-01 8.58632848e-02 -1.85696892e-02 -5.22331536e-01\\n9.63127166e-02 -3.71832587e-02 -5.31152427e-01 2.94884831e-01\\n-1.09584212e-01 -1.54384673e-01 1.82037115e-01 7.20598474e-02\\n-3.31972778e-01 -1.41304567e-01 2.13380277e-01 2.67332464e-01\\n-2.30160087e-01 -2.61257350e-01 8.58983845e-02 -9.47955012e-01\\n1.71961889e-01 1.49733871e-01 -1.43660754e-01 1.63695276e-01\\n-8.35219026e-02 -6.92092419e-01 1.23107113e-01 -3.63983035e-01\\n-1.47465676e-01 1.79782659e-02 -2.43666798e-01 -4.34652090e-01\\n5.50126471e-02 7.77423531e-02 -3.11022222e-01 4.80108559e-01\\n-2.98170447e-01 3.48191082e-01 -1.16912827e-01 1.07709199e-01\\n1.40523836e-01 -2.48911262e-01 9.06597152e-02 -3.09079766e-01\\n-4.88408446e-01 -2.30519712e-01 -3.27342391e-01 -3.00951093e-01\\n-5.71914129e-02 -2.98345149e-01 -8.65115691e-03 -2.32954230e-03\\n3.52798998e-01 3.28255370e-02 -2.14656830e-01 -2.96948314e-01\\n3.07595357e-03 -4.57372159e-01 1.85797453e-01 -1.61160961e-01\\n2.37341635e-02 -2.21528947e-01 1.73115134e-01 6.95347413e-02\\n2.10911721e-01 -4.63337272e-01 4.67846096e-01 -2.38648385e-01\\n-2.78991759e-01 -2.01968431e-01 8.20442736e-02 -5.50469570e-02\\n3.44118655e-01 -4.53072131e-01 -2.84103714e-02 3.56042683e-01\\n2.16631413e-01 9.80149135e-02 2.11095333e-01 -1.64393753e-01\\n-1.30256280e-01 4.11327779e-01 -3.61064464e-01 2.07639039e-01\\n7.97506452e-01 5.91552556e-02 2.58478999e-01 2.20239073e-01\\n2.81832933e-01 3.00715715e-01 3.37739468e-01 1.09441299e-03\\n-1.22983962e-01 3.41248691e-01 1.24932423e-01 -4.60469872e-01\\n5.88829555e-02 -1.35565192e-01 -2.40548864e-01 -4.35173869e-01\\n6.96550131e-01 3.71643573e-01 -3.47406209e-01 -1.67860180e-01\\n-2.16064230e-01 -1.48668200e-01 3.32332969e-01 -1.27816662e-01\\n-1.24960449e-02 -1.15751460e-01 4.34667259e-01 -7.30100274e-02\\n3.25805068e-01 5.64557076e-01 -1.72330737e-01 -2.97518373e-01\\n-1.16128288e-01 2.74563909e-01 3.82717028e-02 5.40597081e-01\\n-2.37523019e-01 2.70896494e-01 4.91668582e-02 1.31217510e-01\\n-6.61889017e-02 1.97061658e-01 2.87104607e-01 -5.60903586e-02\\n1.91980004e-01 4.98307981e-02 4.89238262e-01 4.53291893e-01\\n2.08708063e-01 3.62530559e-01 3.58271062e-01 -3.15191634e-02\\n4.00037408e-01 6.19066596e-01 3.87164742e-01 1.71838447e-01\\n1.99247450e-02 2.12918185e-02 1.15717210e-01 -8.29517543e-02\\n2.38439620e-01 4.47844863e-01 -3.89986411e-02 9.14886832e-01\\n4.51753050e-01 2.47322440e-01 7.43920565e-01 -6.34001136e-01\\n-3.50675017e-01 8.20212364e-02 4.52865541e-01 -4.27645862e-01\\n1.00636873e-02 1.29049540e-01 -2.58705497e-01 2.50160456e-01\\n-3.82443398e-01 -2.45569140e-01 -1.87259540e-02 1.02127217e-01\\n-2.37885546e-02 -2.02120602e-01 -1.76286399e-01 1.05287671e-01\\n-2.70462018e-02 -9.27271396e-02 -4.30980951e-01 -6.36741519e-02\\n-2.47218996e-01 -9.56573803e-03 -1.63550884e-01 -2.76552141e-02\\n-1.39460802e-01 -3.00429106e-01 -7.06613734e-02 -3.70951593e-02\\n2.72834301e-01 -1.26618057e-01 -1.05077177e-01 -1.11919567e-01\\n2.79063880e-01 2.24066913e-01 5.44182122e-01 1.00088239e-01\\n9.18842778e-02 -2.70175338e-01 -1.47946119e-01 1.09105691e-01\\n1.54274419e-01 6.37612119e-02 2.60742381e-05 3.57624531e-01\\n-2.48298854e-01 -2.17769310e-01 1.19344436e-01 3.38437051e-01\\n-4.67438042e-01 -1.49795776e-02 -3.53629664e-02 2.46380866e-01\\n1.49721019e-02 2.84201294e-01 -1.82036757e-01 1.36500388e-01\\n-1.33969203e-01 -4.73590553e-01 3.37336898e-01 -1.90785974e-01\\n-9.14325416e-02 -9.40241590e-02 2.20295608e-01 2.49768719e-01\\n-2.50061333e-01 3.29607651e-02 -3.39288563e-02 1.71835512e-01\\n4.65711206e-02 3.06276858e-01 -2.15812534e-01 -2.44893700e-01\\n-3.06402266e-01 1.49833813e-01 -1.37503654e-01 2.07794756e-01\\n-1.70297213e-02 2.69902319e-01 -4.71071452e-02 1.08222194e-01\\n3.32054526e-01 -6.20026179e-02 -2.45276704e-01 -2.48451248e-01\\n-2.07395226e-01 -1.40088797e-01 -2.21620426e-02 -1.02942586e-01\\n2.49350816e-01 -2.96550453e-01 -7.51058608e-02 -1.50019586e-01\\n-1.43605292e-01 -4.44252521e-01 1.07182525e-01 -2.23396242e-01]]',\n", + " 'job_description': 'CONSULTING - BIG dATA SCIENCE - aNALYTICS - BI! With over a billion turnover has our customer become a relevant global player in terms of individual software solutions. She thinks globally, acts locally and supports customers from various industries to develop technology solutions to business results. The consulting specialists are able to find solutions for large, complex projects to generate economies of scale and optimize processes. The worldwide growth continues also in Switzerland and for their Zurich office are we looking for you as: DIRECTOR DATA SOLUTIONS YOUR CHALLENGE You will lead strategic client projects across Europe and help to build out the Big Data Architecture Practice. Develop customer solutions and proposals for implementation and design of scalable big data architecture as well as network infrastructure solutions to enable partners and clients to scale Hadoop, NoSQL and relational database architecture for growing demands and traffic. Build up roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning. Drive new business and get involved in pre-sales activities whilst overseeing and managing remote team members who are involved in key projects. YOUR PROFILE You have a Bachelor, Master or MBA degree or equivalent education with business and IT expertise. You have a deep understanding of the Big Data Architecture, Business Intelligent, Data Science and Analytics and implementing such big projects. Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level. Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra. Know how in agile software development processes and architecture are an additional plus. You are an excellent communicator with the ability to correspond effectively with all levels of Business and IT. You have fun thinking globally, acting locally and work in multi-cultural teams around the globe. You are a problem solver with the ability to effectively prioritize work. You can communicate fluently in English and ideally German. There will be a large degree of travel (around 50%) in order to build on and enhance client relationships. YOUR PERSPECTIVE You get the chance to build a firm in the firm in a globally oriented outsourcing corporation. You can combine your strength and network with the enormous resource and skill set to set new standards in your business stream. You can act as leader while participating in top level engagements and getting first hand updates on technology innovations. You will experience new ways of efficiency and technology improvements. You can expect continuing training and the opportunity to enlarge you network and visibility.',\n", + " 'soft_skills': '[\"Management\", \"Communications\", \"Innovation\", \"Prioritization\", \"Consulting\"]',\n", + " 'hard_skills': '[\"NoSQL\", \"Apache Cassandra\", \"Economy\", \"Apache Zookeeper\", \"Acting\", \"Analytics\", \"Outsourcing\", \"Industrialization\", \"Customer Support Analyst\", \"Perspective (Graphical)\", \"Scale (Map)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Customer Development\", \"Apache Mahout\", \"MongoDB\", \"Levelling\", \"Limiter\", \"Apache Oozie\", \"Idealization\", \"Network Infrastructure\", \"Localization\", \"Apache Flume\", \"Continuous Training\", \"Process Optimization\", \"Machine Learning Methods\", \"Recommendation Engine\", \"Data Science\", \"Agile Software Development\", \"Customer Relationship Building\", \"Business Architecture\", \"Apache Hive\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Technology Solutions\", \"Pre-Sales Engineering\", \"Relational Databases\", \"Software Development\", \"Resourcing\", \"Apache HBase\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Intelligence\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '14',\n", + " 'job_title': 'project manager statistical programming and data management 60 - 80%',\n", + " 'location': 'Davos',\n", + " 'industry': 'Healthcare Services & Hospitals',\n", + " 'website': 'www.aofoundation.org',\n", + " 'jobdescription_embedded': '[[-2.91401744e-01 2.67605692e-01 3.83276880e-01 -6.67591020e-02\\n5.62750936e-01 -2.60522459e-02 -3.66341472e-02 2.88305968e-01\\n-1.38670206e-01 -1.88580930e-01 -1.92634478e-01 -2.52487749e-01\\n3.83784994e-04 2.22953051e-01 1.45399451e-01 6.30378604e-01\\n3.88286799e-01 -1.48805499e-01 -1.72022104e-01 2.26434290e-01\\n7.69568160e-02 -1.91762537e-01 8.60446393e-02 7.13544011e-01\\n2.42149442e-01 1.93406120e-02 -1.46173358e-01 -3.83245014e-02\\n-1.88836262e-01 -1.97453976e-01 5.33824682e-01 5.04603758e-02\\n-1.14240572e-01 -3.60044777e-01 1.01506226e-01 2.89934009e-01\\n-2.49174118e-01 -1.60120174e-01 -3.44191492e-02 1.29016787e-01\\n-4.52074945e-01 -3.25501561e-01 -1.71104163e-01 7.56534263e-02\\n-2.26396143e-01 -3.07069153e-01 2.19021559e-01 -6.84086829e-02\\n8.84912834e-02 1.49977013e-01 -4.51880038e-01 3.03015083e-01\\n-2.34923184e-01 -2.22376525e-01 3.02431345e-01 6.29692793e-01\\n1.25123635e-02 -3.86963457e-01 -5.00145495e-01 -3.27858955e-01\\n1.00798912e-01 2.00613346e-02 1.53551772e-01 -3.51403475e-01\\n2.74371654e-01 8.82239193e-02 1.08285278e-01 4.54052329e-01\\n-6.52621269e-01 -2.71030843e-01 -2.63233155e-01 1.23201713e-01\\n-2.81464666e-01 3.08142379e-02 -1.47777319e-01 -2.55653650e-01\\n-3.89441587e-02 2.21953303e-01 2.71467902e-02 9.00605619e-02\\n-9.34015885e-02 3.05199742e-01 -1.29673079e-01 2.67668247e-01\\n1.65778115e-01 2.47303680e-01 2.01376930e-01 2.65277803e-01\\n-3.66864502e-01 3.14353287e-01 8.91996771e-02 -1.88131243e-01\\n2.02381477e-01 5.16365208e-02 3.96354675e-01 -2.17811875e-02\\n6.75506145e-03 3.00628357e-02 -2.65107274e-01 1.61539674e-01\\n1.04173012e-01 -1.77316010e-01 1.27572894e-01 7.39523768e-02\\n-6.26674965e-02 -7.93330744e-02 6.76631331e-02 9.39569920e-02\\n-4.51720655e-01 4.48042363e-01 1.81296077e-02 -2.31559306e-01\\n-1.54971808e-01 -7.44147122e-01 -4.15633619e-02 1.11782216e-01\\n1.38675481e-01 9.55197886e-02 2.02268455e-02 2.25744963e-01\\n1.86054498e-01 -1.49792761e-01 2.06339955e-01 7.04229236e-01\\n-1.22109517e-01 6.84537515e-02 -7.62808323e-03 2.75871158e-01\\n9.31921378e-02 -1.99025065e-01 1.21667475e-01 2.17925638e-01\\n-5.88223338e-05 -1.72476128e-01 -2.77655423e-01 2.31900871e-01\\n-1.04027130e-01 -2.21377343e-01 -1.87420160e-01 3.62821102e-01\\n-5.13335504e-02 -5.39682627e-01 3.75272870e-01 -2.87352465e-02\\n8.72753263e-02 -9.68713984e-02 -1.61800817e-01 -2.37468351e-03\\n-5.82401454e-03 2.35386044e-01 1.93250671e-01 1.42106354e-01\\n-1.94884509e-01 -2.10449681e-01 -1.29096255e-01 1.54681623e-01\\n-2.74743676e-01 1.16471127e-01 -1.64098322e-01 -1.31292388e-01\\n4.43790436e-01 1.42842010e-02 -3.92213345e-01 2.65444785e-01\\n-1.16084956e-01 -9.53706428e-02 -1.01008467e-01 3.34891856e-01\\n-2.87794769e-01 2.43299544e-01 -1.59402117e-01 -3.60295922e-01\\n3.87708664e-01 -4.51686047e-02 3.22357386e-01 -4.52691317e-03\\n3.63671362e-01 -9.04120430e-02 2.69785881e-01 3.22269350e-02\\n-7.79600620e-01 4.45369124e-01 -7.62798414e-02 -2.25515038e-01\\n8.94458145e-02 -1.35715827e-01 5.34712076e-01 -3.32976401e-01\\n4.47996669e-02 -2.00404912e-01 -1.98768005e-01 -3.50253999e-01\\n-1.51003733e-01 5.41663207e-02 3.37022036e-01 -2.88603604e-01\\n-3.01295929e-02 1.46148294e-01 -4.85102892e-01 -1.37684584e-01\\n1.32635057e-01 2.12973773e-01 1.65557548e-01 2.04413727e-01\\n-2.48769701e-01 -4.67324257e-01 3.81778292e-02 -5.45126438e-01\\n-2.57839859e-01 3.12387235e-02 -2.29548916e-01 1.07701331e-01\\n-1.23335578e-01 1.02611929e-01 4.09456231e-02 -3.47643942e-02\\n-2.78721780e-01 9.02538076e-02 1.64812103e-01 -1.24535382e-01\\n2.10917324e-01 1.77610479e-03 -3.65216732e-01 4.50278848e-01\\n-2.23423541e-01 6.43474698e-01 6.81870282e-02 -7.54006803e-01\\n5.28850496e-01 3.63628089e-01 -1.04978532e-02 -2.55749881e-01\\n6.70248270e-01 -3.36981595e-01 -5.21640405e-02 1.09304860e-01\\n-4.41875935e-01 -2.21268713e-01 3.05475473e-01 -3.78942192e-01\\n-2.41493911e-01 5.73336124e-01 2.13107318e-01 4.51967493e-02\\n2.90325463e-01 -1.33839756e-01 -8.63798559e-02 1.11946121e-01\\n-1.80098891e-01 -1.79816574e-01 -4.02405858e-01 -1.39658675e-02\\n-1.42017365e-01 -4.45424020e-01 -2.98718840e-01 -2.98575163e-01\\n-5.96646518e-02 -4.01033878e-01 -1.04487300e-01 8.27069506e-02\\n2.29820967e-01 1.23952657e-01 4.17421162e-02 -4.36191112e-02\\n-1.42488062e-01 -6.35196328e-01 3.82511131e-03 6.37839735e-03\\n2.41860449e-01 3.01144600e-01 1.87955499e-01 6.26795590e-02\\n-1.34477057e-02 4.71843362e-01 -5.23610234e-01 -3.77341926e-01\\n1.75634086e-01 1.22960374e-01 -7.74851739e-02 -1.09727770e-01\\n7.72149861e-02 1.90332711e-01 -1.54714704e-01 1.55786142e-01\\n-1.78997442e-01 7.22035170e-02 2.44502842e-01 -4.54541929e-02\\n-7.95513913e-02 -1.98943600e-01 -9.67414826e-02 2.80173808e-01\\n-3.48818600e-01 -2.58635461e-01 3.02464068e-01 -3.92745771e-02\\n8.17553028e-02 1.51622087e-01 1.39600337e-01 1.20075345e-02\\n-3.08056951e-01 -3.54546666e-01 3.30018133e-01 7.59835392e-02\\n2.10122354e-02 2.17678100e-01 2.69706920e-02 -4.88460332e-01\\n-3.02697754e+00 -9.03637111e-02 -6.56909719e-02 -1.70452744e-01\\n2.91775525e-01 -3.90788317e-02 1.94248781e-01 -1.06766075e-03\\n-4.07333672e-01 2.47167554e-02 -1.30087554e-01 -2.85932213e-01\\n1.20262749e-01 3.23998481e-01 1.26834601e-01 4.12806682e-03\\n-1.02798097e-01 -3.54697943e-01 -2.94512846e-02 4.50008869e-01\\n2.54643988e-02 -8.71508241e-01 5.81232980e-02 3.01214773e-03\\n6.65917248e-02 3.35389286e-01 -4.72701520e-01 4.53300588e-02\\n-4.14943755e-01 -2.02998668e-01 1.41390234e-01 -3.22896838e-01\\n-1.10660538e-01 4.01029289e-01 9.75650176e-02 -7.55330548e-02\\n1.59591567e-02 -2.46656477e-01 -1.76191777e-01 -5.96029401e-01\\n1.56091750e-01 -7.32489347e-01 -2.96745114e-02 -1.83194488e-01\\n6.31673574e-01 -8.47665519e-02 2.40281194e-01 1.36757866e-01\\n1.09936029e-01 1.82914644e-01 1.74358770e-01 1.01355165e-02\\n-2.61125803e-01 -1.01019017e-01 -1.20967537e-01 -2.70486027e-01\\n5.14216840e-01 3.99836481e-01 -2.44885072e-01 -9.29773413e-03\\n2.47077584e-01 -1.40202060e-01 -5.14412701e-01 -3.29157412e-01\\n-2.60408133e-01 -7.83896670e-02 -6.39737844e-01 -4.57074225e-01\\n-8.96873176e-02 -6.46435618e-02 6.99224100e-02 5.46407104e-01\\n-4.29153115e-01 -1.72736406e-01 -7.67019987e-02 -6.44966722e-01\\n3.70246440e-01 -1.95254207e-01 -7.79874325e-02 -2.19898254e-01\\n-1.64666757e-01 -4.72862989e-01 1.56679928e-01 2.53034122e-02\\n-1.10244840e-01 -1.45359531e-01 -9.30733606e-03 -9.19810534e-02\\n-3.60996932e-01 -5.14886618e-01 3.54618132e-01 1.20413855e-01\\n3.52647066e-01 7.71509856e-02 1.52241290e-01 -3.28167379e-02\\n3.60195905e-01 6.91427141e-02 8.71930197e-02 -3.51929784e-01\\n4.87279221e-02 -4.53266576e-02 6.33198559e-01 -2.57217526e-01\\n-1.26034185e-01 2.11202763e-02 -3.04169744e-01 -2.60260589e-02\\n3.89963597e-01 9.54767037e-03 7.58670121e-02 -2.41452545e-01\\n3.75289649e-01 -5.01989365e-01 1.57471262e-02 1.28932521e-01\\n1.03615627e-01 6.83610320e-01 -4.27193288e-03 -2.58961976e-01\\n-1.77405179e-01 3.57820451e-01 -1.14734307e-01 -7.48065114e-03\\n8.15809965e-02 6.18042164e-02 -1.56602696e-01 2.48843104e-01\\n1.34391740e-01 -1.15799263e-01 -1.98144704e-01 -2.26860866e-03\\n-6.04220517e-02 3.14888984e-01 2.86080062e-01 2.09760010e-01\\n-7.49246478e-02 -3.13082635e-01 3.69567573e-02 3.23653668e-01\\n3.27552915e-01 3.41942668e-01 3.82066891e-02 -1.70427039e-01\\n2.36514956e-04 3.37092549e-01 -1.14628859e-01 3.65779996e-01\\n-2.12494016e-01 1.90315485e-01 -4.85858858e-01 -1.67002171e-01\\n-2.76703656e-01 -2.05942631e-01 1.58528268e-01 4.42299128e-01\\n1.59091055e-01 -1.62428364e-01 1.00643717e-01 -3.42108369e-01\\n1.95083857e-01 1.08724490e-01 1.76668614e-01 -9.18349922e-02\\n-1.48758024e-01 5.90660214e-01 1.38275549e-02 -2.52039313e-01\\n1.92947313e-02 -7.68114775e-02 -1.54156655e-01 -1.72931731e-01\\n1.05129197e-01 -3.71041954e-01 -2.25869656e-01 3.31036031e-01\\n1.16167463e-01 -1.09942719e-01 -2.49136388e-01 4.27400738e-01\\n1.97411217e-02 -3.43915403e-01 -1.50683254e-01 -2.34846212e-03\\n2.26629049e-01 8.96380916e-02 1.93003237e-01 -4.92732048e-01\\n-7.53305182e-02 3.51160839e-02 1.13890268e-01 3.56273592e-01\\n2.18029749e-02 2.79173627e-02 -2.01927260e-01 -1.72119111e-01\\n2.34902456e-01 -1.12393305e-01 -9.19371098e-03 2.01684818e-01\\n8.60913992e-02 -2.53148675e-01 -3.90137494e-01 2.23821718e-02\\n-9.80825350e-03 -2.90586531e-01 -1.11671977e-01 1.79111063e-01\\n1.30791083e-01 3.79952975e-02 -5.52115560e-01 -1.67965755e-01\\n-2.78881252e-01 2.29592696e-01 -6.20348193e-02 -4.84057128e-01\\n-1.00841299e-01 -2.36479163e-01 -5.41770339e-01 2.18715191e-01\\n4.53577451e-02 -1.47150755e-02 2.11416468e-01 -5.91850579e-02\\n-3.29816401e-01 -1.10236973e-01 1.46865621e-01 2.12406665e-02\\n-3.33114505e-01 -2.10307524e-01 9.38162860e-03 -9.17793989e-01\\n2.14399062e-02 -7.74432048e-02 4.59045917e-03 9.06479545e-03\\n-5.01760617e-02 -5.40490746e-01 7.81645179e-02 -2.75668591e-01\\n-2.37308919e-01 7.57928714e-02 -2.91976899e-01 -2.14244992e-01\\n1.46474630e-01 1.39664393e-03 -6.60115778e-02 1.74617395e-01\\n-2.09625140e-01 3.73745799e-01 -7.85311610e-02 -8.66364017e-02\\n4.30730879e-02 -3.19264293e-01 1.67593434e-01 -1.67549387e-01\\n-3.54537845e-01 -1.81040466e-01 -1.11202829e-01 -2.13926107e-01\\n-4.01036777e-02 -1.52739286e-01 -4.99631092e-02 4.52270359e-02\\n2.81178653e-01 -1.77456178e-02 -2.11766303e-01 -2.60817111e-02\\n-1.88580304e-02 -3.62250805e-01 2.53443301e-01 -1.17450215e-01\\n9.69004184e-02 -1.10812381e-01 2.48267040e-01 5.61739653e-02\\n2.96476871e-01 -3.51569593e-01 5.69493711e-01 -4.55861509e-01\\n-3.84682834e-01 -1.37211531e-01 5.77935874e-02 6.46300018e-02\\n2.06711203e-01 -5.36158144e-01 -6.99828714e-02 3.45413178e-01\\n3.32962424e-02 5.40469587e-02 4.00743008e-01 -2.14628518e-01\\n-1.62240475e-01 1.83998272e-01 -5.17821014e-01 5.36050387e-02\\n7.74536014e-01 4.21551108e-01 1.37251511e-01 1.46866336e-01\\n2.55274884e-02 2.55105287e-01 4.18712258e-01 -1.73263270e-02\\n-9.99409705e-02 2.78900683e-01 1.96298733e-01 -5.48217714e-01\\n-3.07988644e-01 7.08039328e-02 -3.56900087e-03 -4.56506968e-01\\n5.98015606e-01 3.04672360e-01 -4.02997077e-01 -2.70588934e-01\\n-2.62781888e-01 -1.21000975e-01 3.15591037e-01 -8.59193206e-02\\n5.20897377e-03 5.16665988e-02 5.06585836e-01 -3.23973857e-02\\n2.95345932e-01 4.65425223e-01 -1.09996215e-01 -1.62399083e-01\\n4.35890853e-02 2.66601861e-01 1.80395409e-01 4.32807446e-01\\n-3.79616395e-05 3.55448812e-01 -1.28152460e-01 8.00985098e-02\\n-1.86684072e-01 -9.89712626e-02 1.46409795e-01 -3.02349571e-02\\n-1.23833232e-02 2.39828020e-01 4.08765137e-01 4.92214680e-01\\n3.22033823e-01 3.23157430e-01 1.58545494e-01 -1.36714935e-01\\n5.95612049e-01 4.36714202e-01 2.54029125e-01 -1.09253556e-01\\n1.37685150e-01 1.83381483e-01 2.00255290e-01 1.40732571e-01\\n2.97748685e-01 2.49725997e-01 6.37608245e-02 7.42212892e-01\\n6.00348487e-02 2.70048976e-01 5.51115751e-01 -4.38142002e-01\\n-2.65702069e-01 -3.58943641e-02 4.33730006e-01 -4.20272171e-01\\n6.36755377e-02 1.56458557e-01 -5.96317276e-02 2.06071019e-01\\n-5.74309230e-01 -2.80265659e-02 -2.07985267e-02 3.45859639e-02\\n3.24085876e-02 -4.79708090e-02 -4.42419425e-02 1.02889389e-01\\n-2.54243463e-01 -2.81744808e-01 -3.22281927e-01 -3.51442665e-01\\n-2.29870588e-01 -1.77703410e-01 -7.86852837e-02 -6.29804134e-02\\n5.55321947e-03 -9.93585736e-02 4.28961031e-02 -9.38218385e-02\\n3.98674309e-01 -2.25629658e-01 -1.31150231e-01 -4.48562615e-02\\n4.23750579e-01 7.65279308e-02 6.20419443e-01 -1.37381107e-01\\n7.05907941e-02 -1.33628309e-01 -2.25833416e-01 -1.10053252e-02\\n1.24496147e-01 8.82002860e-02 1.05250314e-01 3.85467976e-01\\n-1.97677359e-01 -2.38287210e-01 -8.57033022e-03 3.44568193e-01\\n-3.24580461e-01 1.19223356e-01 3.73277366e-02 1.04981892e-01\\n3.62823084e-02 -1.96856633e-03 -3.29299688e-01 1.16250776e-02\\n-1.61948115e-01 -6.27887607e-01 1.36458367e-01 -8.63220841e-02\\n-3.15383792e-01 -1.12416744e-02 5.24798691e-01 2.42329970e-01\\n-1.43870264e-01 -1.06115118e-02 -1.78446829e-01 1.09151527e-01\\n-2.74209939e-02 2.18483567e-01 -2.52618402e-01 -3.12364340e-01\\n-1.95966199e-01 2.53825843e-01 -1.41003191e-01 8.46399665e-02\\n-2.49393620e-02 3.66361350e-01 -7.58332014e-02 1.77890643e-01\\n4.29178953e-01 -1.50691703e-01 -2.74034560e-01 -3.16607773e-01\\n-6.28467500e-02 -2.05923706e-01 -3.88447493e-02 -4.33814302e-02\\n1.78928167e-01 -3.62078071e-01 -1.16854161e-01 -3.69281173e-01\\n-1.47759140e-01 -2.43982434e-01 2.60916501e-02 1.20678842e-01]]',\n", + " 'job_description': \"The AO Foundation is a medically guided, not-for-profit organization led by an international group of surgeons specialized in the treatment of trauma and disorders of the musculoskeletal system. Founded in 1958 by a group of visionary surgeons, today, the AO has a global network of 200,000 health care professionals. Each year it offers over 830 educational events around the world, which are supported by nearly 9,000 faculty and are attended by over 58,000 participants. It has 20,000 surgeon members working in the fields of trauma, spine, craniomaxillofacial (CMF), veterinary, and reconstructive surgery. AO Clinical Investigation & Documentation (AOCID) is an institute of the AO Foundation and the provider of choice of the AO Community in clinical research, clinical research education, and health economics. We plan and execute the most pertinent clinical studies, design state-of-the-art clinical research education, and apply health economic techniques to validate current practice in the field of trauma and musculoskeletal disorders—all in compliance with the ICH GCP (E6) guidelines and ISO 14155 standards. We are looking for the following highly motivated person to join our team in Davos, Switzerland. or Dübendorf, Switzerland (near Zurich): Project Manager Statistical Programming and Data Management 60 - 80% In this role you will be required to independently fulfill all tasks related to all phases of AOCID-assigned clinical research projects and to ensure high quality standards for statistical programming and data management and monitoring activities, such as: Creation, validation and management of statistical codes for study-related activities, including monitoring activities (eg, reports, graphs, listings) Database development in electronic data capture (EDC) systems (egm. REDCap) and database validation Development of data validation plans (DVPs), programming of inconsistency reports according to DVP, supporting data cleaning and data clarification activities Set up of data management plans (DMPs) and implementation of codes according to DMPs and statistical analysis plans (SAPs) Development, validation and maintenance of SAS Macros for statistical analysis and monitoring Supporting quality management, development and maintenance of standard operating procedures (SOPs) for statistical programming (validation, documentation) In order to master this challenge, you have: Master of science or bachelor's degree in numerical/computational sciences/mathematics or equivalent Advanced SAS skills (Base SAS, SAS/STAT, SAS/GRAPH, SAS macro language, SQL), preferably additional Stata skills At least three years of experience with programming Basic knowledge of statistics Numerical and analytical skills Attention to detail and reliability Team player Good communication skills (internally and with external stakeholders) Fluent in English (oral and written) We offer An interesting and varied job in an exciting and innovative organization Working in a highly committed international team Modern infrastructure Employment conditions which match the requirements and offer a high degree of flexibility re working hours, location as well as homeoffice If you meet the requirements of this challenging opportunity, please submit your complete online application (motivation letter, CV, recent photograph, certificates, reference letters, etc) through our online application system. Applications received via other channels will not be considered in the process.\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Infrastructure\", \"Planning\", \"Investigation\", \"Management\", \"Communications\", \"Reliability\", \"Innovation\", \"Visionary\"]',\n", + " 'hard_skills': '[\"Health Economics\", \"Programming (Music)\", \"Human Musculoskeletal Systems\", \"Data Validation\", \"Applications Of Artificial Intelligence\", \"Data Management\", \"Statistics\", \"SAS (Software)\", \"Database Development\", \"Standard Operating Procedure\", \"Statistical Coupling Analysis\", \"Clinical Study Design\", \"Activism\", \"Activity Monitor\", \"Medic\", \"Executable\", \"Reconstructive Surgery\", \"Validation Master Plan\", \"SAS/STAT\", \"Data Management Plan\", \"Non-Profit Organization\", \"Personalization\", \"SAS Macros\", \"Clinical Research\", \"Cleaned Data\", \"Management Development\", \"Numerical Computing\", \"Receivables\", \"Clinical Data Management\", \"Validations\", \"Home Health Care\", \"SAS/Base\", \"Planned Unit Development\", \"Google Cloud Platform (GCP)\", \"Graphing\", \"Electronic Data Capture (EDC)\", \"SQL (Programming Language)\", \"Quality Management\"]',\n", + " 'languages': \"['English', 'Kashmiri', 'Manx', 'Tatar']\"},\n", + " {'company_id': '63',\n", + " 'job_title': 'full-stack software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.37852579e-01 1.92481816e-01 4.76745516e-01 6.89489320e-02\\n4.94166434e-01 -1.87736556e-01 -3.66991945e-02 3.56802285e-01\\n3.73897492e-03 -4.62117016e-01 -7.32699931e-02 -2.56241888e-01\\n-2.35611163e-02 5.51019497e-02 1.27621889e-01 3.91661823e-01\\n2.23573625e-01 1.21874616e-01 -1.87689483e-01 3.11112106e-01\\n1.93503603e-01 -7.42717162e-02 1.23072535e-01 7.60851562e-01\\n1.98144808e-01 1.80163495e-02 -1.41208163e-02 -2.55015418e-02\\n-2.54822463e-01 -2.15544075e-01 3.93892497e-01 6.99831694e-02\\n-1.25136569e-01 -4.46849316e-01 1.55285031e-01 -3.87807935e-02\\n-2.29959458e-01 2.97323242e-02 -6.52593300e-02 1.62213624e-01\\n-5.02447665e-01 -2.24529281e-01 1.01802036e-01 -4.06384133e-02\\n-2.05939054e-01 -2.72966802e-01 1.12008162e-01 -1.00906566e-01\\n9.90026742e-02 9.79113020e-03 -4.72856700e-01 1.78247720e-01\\n-2.62817085e-01 -2.34807178e-01 2.85016805e-01 6.07671320e-01\\n1.37680560e-01 -5.04661441e-01 -4.23783302e-01 -2.83108473e-01\\n9.35746282e-02 -1.47779852e-01 2.61833798e-02 -1.50859743e-01\\n2.55857974e-01 -8.10331702e-02 4.06049117e-02 3.65353882e-01\\n-7.22802818e-01 -6.05117902e-02 -1.16698921e-01 6.33459091e-02\\n-2.61123538e-01 -1.14294238e-01 -2.90464491e-01 -1.45253822e-01\\n-8.96136984e-02 3.80310178e-01 1.35493934e-01 -2.27727052e-02\\n-1.74071372e-01 2.80462682e-01 -2.54176825e-01 3.58794242e-01\\n2.59996951e-01 2.19309300e-01 2.09359735e-01 3.32920730e-01\\n-4.27306473e-01 4.33805645e-01 2.19312370e-01 -3.17197859e-01\\n3.19877267e-01 -2.66056079e-02 4.06521440e-01 1.20508939e-01\\n1.17360298e-02 1.55681506e-01 -1.50281996e-01 3.02651823e-01\\n1.62659392e-01 -1.26878411e-01 -2.69789398e-02 -1.02916762e-01\\n8.53830657e-04 -4.85338047e-02 -7.05614612e-02 1.60498440e-01\\n-2.25152835e-01 3.78668368e-01 8.92682225e-02 -1.72310516e-01\\n-1.89386867e-02 -4.80821043e-01 -8.67770389e-02 -4.38903309e-02\\n-9.81876403e-02 1.50372997e-01 2.26024419e-01 1.32284239e-01\\n2.04068527e-01 6.45667985e-02 1.64040387e-01 8.53983641e-01\\n-2.69882921e-02 5.39195500e-02 -2.78122246e-01 3.67868900e-01\\n1.03113949e-01 -2.14487001e-01 2.53318191e-01 1.80057570e-01\\n4.10114974e-03 -1.44437149e-01 -1.78162187e-01 3.09592962e-01\\n2.02615466e-03 -2.20353171e-01 -2.75631368e-01 6.83945864e-02\\n-1.54824302e-01 -3.95124376e-01 4.93016273e-01 1.91297010e-01\\n2.11503386e-01 6.44068643e-02 8.94365832e-02 -1.93621054e-01\\n-1.70219094e-01 2.18665823e-01 -1.62794217e-02 2.20960453e-01\\n-2.28645504e-01 -2.75105625e-01 -2.14781865e-01 1.78096518e-01\\n-1.44290492e-01 1.32012889e-01 -2.44062439e-01 -9.48629156e-02\\n3.18336517e-01 1.43914327e-01 -2.65006423e-01 2.59663790e-01\\n7.49095483e-03 -3.28685753e-02 -1.18604667e-01 2.91707844e-01\\n-1.13721497e-01 1.77446887e-01 -5.47481105e-02 -5.23148738e-02\\n5.27825594e-01 1.38082966e-01 2.59670436e-01 -5.97450174e-02\\n3.44039798e-01 -1.83622271e-01 1.46444455e-01 1.47138804e-01\\n-5.75103283e-01 3.31737667e-01 -3.37280072e-02 -6.86674118e-02\\n1.78571135e-01 -2.77000130e-03 2.66143620e-01 -2.28382155e-01\\n-1.33363316e-02 -1.44219771e-01 -3.84955674e-01 -3.47473949e-01\\n-2.30437979e-01 7.05140037e-03 3.75325501e-01 -4.19490188e-01\\n-8.85730907e-02 2.52147496e-01 -4.53288823e-01 -2.37062182e-02\\n1.31283402e-01 2.65434623e-01 1.81198530e-02 7.78351426e-02\\n-2.94717163e-01 -4.40474123e-01 5.34271486e-02 -4.19280320e-01\\n-3.06449711e-01 9.97605175e-02 -2.61154652e-01 1.67343855e-01\\n1.08701721e-01 4.68307026e-02 -1.65860429e-01 1.37756512e-01\\n-1.34879872e-01 -1.42607450e-01 1.77586347e-01 6.33881167e-02\\n2.78157443e-01 -1.79788005e-02 -3.95095468e-01 4.58435595e-01\\n-2.54243076e-01 5.43924987e-01 2.02144340e-01 -9.75353718e-01\\n4.26045388e-01 2.95744836e-01 -1.36452287e-01 -3.43909651e-01\\n4.43236291e-01 -3.79281551e-01 1.26798049e-01 1.13000952e-01\\n-3.05183083e-01 -2.87501037e-01 2.79879600e-01 -1.19341172e-01\\n-2.53565699e-01 4.89476413e-01 1.66629627e-01 -3.65213603e-02\\n1.47138894e-01 -1.48331791e-01 -1.78978056e-01 -5.33373095e-02\\n-6.77096248e-02 -2.46002778e-01 -4.58116472e-01 6.11675307e-02\\n-1.28993213e-01 -5.17939568e-01 -1.07015625e-01 -4.80470359e-01\\n-1.65360585e-01 -3.56270134e-01 -2.65675843e-01 3.40450078e-01\\n1.72134906e-01 1.75257936e-01 -9.55342725e-02 7.10375234e-02\\n-2.03945953e-02 -6.38535559e-01 -2.21555009e-02 1.91260919e-01\\n3.77389252e-01 1.95139825e-01 8.76516998e-02 -9.87803042e-02\\n-8.92208237e-03 5.04804909e-01 -2.78462380e-01 -1.85860202e-01\\n1.51857927e-01 1.94185898e-01 7.44454190e-02 -1.34056076e-01\\n3.10120378e-02 2.99536765e-01 -1.93557352e-01 3.74302976e-02\\n-3.29278484e-02 -4.93067987e-02 4.07183528e-01 2.51221862e-02\\n-4.59289312e-01 -1.36052579e-01 1.13030851e-01 2.07461938e-01\\n-5.51807344e-01 -1.68175220e-01 5.63317895e-01 1.54667050e-01\\n1.12187713e-01 1.12019211e-01 1.60497636e-01 -1.12338491e-01\\n-8.73646438e-02 -1.50806800e-01 3.90443355e-01 1.93685994e-01\\n2.38164514e-01 4.73350808e-02 -7.68605024e-02 -6.58671558e-01\\n-3.71801686e+00 -2.88655788e-01 1.08894639e-01 -2.51009852e-01\\n2.10402280e-01 -1.16301835e-01 6.93509802e-02 -1.00499481e-01\\n-3.35511178e-01 4.09985594e-02 -1.80505037e-01 -9.34434906e-02\\n2.02078015e-01 2.71513849e-01 9.39002708e-02 2.06939951e-01\\n8.00482035e-02 -1.28558874e-01 2.83349920e-02 2.82403380e-01\\n-1.94526538e-01 -6.65194333e-01 2.82977343e-01 1.77659728e-02\\n1.38889894e-01 1.27932340e-01 -3.47782493e-01 -5.54187931e-02\\n-2.35634521e-01 -2.53504813e-01 1.75082721e-02 -1.82626843e-01\\n-1.55966774e-01 2.10420713e-01 1.63161993e-01 -1.01957500e-01\\n1.07485786e-01 -4.16975707e-01 -1.00937180e-01 -5.06989658e-01\\n1.58374012e-01 -5.89010835e-01 7.08692744e-02 -1.13835953e-01\\n5.64571023e-01 -2.75185436e-01 1.63434103e-01 7.39965588e-02\\n1.01465754e-01 1.74420625e-01 1.12099186e-01 6.83621466e-02\\n-2.88429677e-01 -2.83348829e-01 -9.00465399e-02 -1.93631425e-01\\n5.06767929e-01 4.79765326e-01 -2.10700706e-01 5.19789383e-02\\n4.67431266e-03 -2.40047216e-01 -4.37182397e-01 -2.89251328e-01\\n-1.68751359e-01 -1.23010710e-01 -6.58562541e-01 -3.75495762e-01\\n-2.05346987e-01 -1.04319915e-01 -2.35805631e-01 5.71415544e-01\\n-1.52672961e-01 -4.54865128e-01 -1.85655802e-02 -5.74184120e-01\\n1.58673137e-01 -2.18890309e-01 4.77557369e-02 -1.32281452e-01\\n-2.58664489e-01 -4.31866854e-01 1.28432527e-01 -3.68775539e-02\\n-1.74171701e-01 -2.54943132e-01 1.18802825e-03 -1.57647535e-01\\n-1.94675669e-01 -5.72802722e-01 2.55898327e-01 9.15393084e-02\\n2.58459479e-01 3.95011902e-02 3.83115590e-01 1.28847480e-01\\n2.44616404e-01 -1.29465103e-01 -3.81393917e-02 -4.57192928e-01\\n1.46124780e-01 1.30850729e-02 6.24619424e-01 -1.90415427e-01\\n9.06779319e-02 1.97992459e-01 -2.55348355e-01 -1.57524168e-01\\n3.01163822e-01 7.65243173e-02 4.57211696e-02 -1.88259810e-01\\n3.32989722e-01 -3.58154207e-01 -2.47983932e-01 6.57221898e-02\\n8.76435265e-02 6.10394955e-01 -1.20602414e-01 -4.20170188e-01\\n-2.07214043e-01 4.12596583e-01 -1.80442948e-02 -1.33364856e-01\\n-2.34282479e-01 1.37779623e-01 -1.25682741e-01 2.48620734e-01\\n1.68844126e-02 -1.50574863e-01 -3.05453330e-01 -1.61887258e-01\\n-4.50969972e-02 2.45026931e-01 2.04659432e-01 4.73636761e-02\\n-3.71065848e-02 -3.03837478e-01 -1.35987252e-01 1.42135635e-01\\n1.64157227e-01 4.40166473e-01 1.76644608e-01 -1.76008195e-01\\n3.52288820e-02 3.32226515e-01 -1.41111106e-01 1.20588586e-01\\n-3.24751347e-01 1.24526724e-01 -5.74560523e-01 -2.67898202e-01\\n-1.81792259e-01 -4.27177012e-01 1.51968360e-01 2.47772306e-01\\n7.20667392e-02 -1.97547823e-02 1.09931659e-02 -4.59616870e-01\\n2.50209332e-01 -6.16950877e-02 2.63813287e-01 1.21065103e-01\\n4.97608557e-02 6.04602575e-01 -4.16166559e-02 -1.39065012e-01\\n-1.95071116e-01 2.48267688e-02 -2.42003158e-01 -1.45206124e-01\\n2.03137770e-02 -4.03147757e-01 -9.92456749e-02 4.66795594e-01\\n1.69920653e-01 -2.31702179e-01 -1.57002196e-01 2.69882977e-01\\n-4.68752906e-03 -1.03330083e-01 -1.05542794e-01 6.11794041e-03\\n3.19862872e-01 -6.08565025e-02 2.61837423e-01 -3.88492793e-01\\n-3.52080376e-03 1.03127599e-01 5.68510145e-02 5.24361908e-01\\n8.95215869e-02 1.20210737e-01 -3.01768258e-02 -2.01291859e-01\\n3.90409410e-01 5.43588959e-02 -1.42590463e-01 -1.37556210e-01\\n5.11623807e-02 -1.21933006e-01 -5.09581566e-01 9.84778702e-02\\n3.31526026e-02 -2.90508717e-01 1.32101059e-01 1.58334315e-01\\n1.44546747e-01 2.30890941e-02 -5.91627538e-01 -2.74597019e-01\\n-3.71508896e-01 -5.10022119e-02 1.72518361e-02 -4.56078202e-01\\n4.85183895e-02 -7.87809491e-02 -5.40606380e-01 2.13197619e-01\\n-9.26281959e-02 -1.01314999e-01 2.86369994e-02 5.59156500e-02\\n-3.35233480e-01 -8.47421885e-02 1.70364007e-01 1.70874596e-01\\n-2.41649315e-01 -2.03402743e-01 1.54718965e-01 -1.03835464e+00\\n1.61605760e-01 9.81688686e-03 -2.05178425e-01 6.54219314e-02\\n-1.36239201e-01 -6.95828855e-01 1.08006902e-01 -3.49223375e-01\\n-2.09928006e-01 9.30015929e-04 -1.65199474e-01 -4.54810530e-01\\n1.04843855e-01 6.51352061e-03 -2.72443563e-01 4.23871160e-01\\n-4.21329230e-01 4.06478912e-01 -1.37037039e-01 6.89245835e-02\\n6.57956824e-02 -3.02612782e-01 6.68996572e-02 -4.29249972e-01\\n-3.96517068e-01 -1.48553625e-01 -2.76375502e-01 -3.12008619e-01\\n-9.27017629e-02 -2.26719677e-01 -1.52048752e-01 1.25752270e-01\\n3.40912551e-01 1.09457724e-01 -5.82548417e-02 -3.59186023e-01\\n4.77482378e-02 -3.84974927e-01 2.06652597e-01 -1.63723037e-01\\n-4.98030633e-02 -1.00706063e-01 2.70085514e-01 -5.05533144e-02\\n7.67568052e-02 -3.61078650e-01 5.24552822e-01 -2.66291946e-01\\n-2.42934808e-01 -1.31216109e-01 4.55055237e-02 1.28634140e-01\\n2.42867187e-01 -5.10292172e-01 -4.60683517e-02 2.30854467e-01\\n1.87261224e-01 9.54721570e-02 2.73285300e-01 -8.13805014e-02\\n3.24533060e-02 2.40409240e-01 -4.25726086e-01 2.05006510e-01\\n7.55897999e-01 -8.22953805e-02 8.19242001e-02 6.13346957e-02\\n2.32777178e-01 2.11509511e-01 4.50992942e-01 7.71663412e-02\\n-1.96466058e-01 3.27956855e-01 3.51090096e-02 -6.10212743e-01\\n-1.07946239e-01 -9.71148442e-03 -8.89954492e-02 -2.78653830e-01\\n6.70276165e-01 4.52547371e-01 -4.27509964e-01 -2.02524543e-01\\n-1.84205219e-01 -8.19998458e-02 1.62163317e-01 -9.54478383e-02\\n7.95287639e-02 -1.03703186e-01 4.87111896e-01 -4.96985130e-02\\n2.54223466e-01 5.34734249e-01 -1.94195911e-01 -4.06734109e-01\\n-1.25680752e-02 1.36401907e-01 6.54377863e-02 4.31146502e-01\\n-2.13802382e-01 1.56132504e-01 6.00081049e-02 1.44914672e-01\\n-1.82611078e-01 1.35940105e-01 7.02302754e-02 -2.33750697e-03\\n1.95027202e-01 -9.35085937e-02 4.89319324e-01 4.85916555e-01\\n3.14017445e-01 4.76775646e-01 3.89787316e-01 2.69280393e-02\\n4.69040096e-01 5.80641866e-01 4.08677369e-01 1.52034253e-01\\n6.44644722e-03 6.87669516e-02 6.62577078e-02 -1.18239798e-01\\n2.72386909e-01 4.34831828e-01 4.29737046e-02 8.03259134e-01\\n3.58766496e-01 2.29173079e-01 6.20186090e-01 -5.96403003e-01\\n-4.26644564e-01 6.59095496e-02 4.32300270e-01 -3.00527155e-01\\n-2.05326569e-03 2.09712312e-01 -1.94739044e-01 1.71661720e-01\\n-4.92882669e-01 -1.77397445e-01 -4.07710411e-02 3.70014161e-02\\n-5.31575782e-03 -9.71976668e-02 -2.13944867e-01 1.30673990e-01\\n-4.09523994e-02 -6.94475025e-02 -4.05618697e-01 -3.90393995e-02\\n-1.30115554e-01 -1.25555880e-02 -1.40225098e-01 -2.65075825e-02\\n-9.33794826e-02 -3.85164022e-01 -1.61572695e-01 6.12005591e-02\\n2.94135183e-01 -9.62421671e-02 -3.15154530e-02 -2.02460438e-01\\n2.75860012e-01 2.13777900e-01 5.19962847e-01 -7.25731254e-02\\n1.96107507e-01 -2.12227777e-01 -1.82497397e-01 6.84925839e-02\\n2.29041532e-01 1.32275969e-01 1.48838321e-02 4.02715057e-01\\n-2.75590032e-01 -2.07112320e-02 1.69922784e-01 4.59360600e-01\\n-3.91079366e-01 -2.97778063e-02 -1.05808228e-01 1.96479186e-01\\n1.83938399e-01 1.23658687e-01 -2.43894652e-01 8.52936357e-02\\n-3.01892549e-01 -5.19448459e-01 4.21198517e-01 -2.05963895e-01\\n-4.64572720e-02 7.88899511e-02 1.60999134e-01 2.03357816e-01\\n-2.13781118e-01 8.91238749e-02 -5.50330542e-02 2.49479502e-01\\n4.38817330e-02 3.10542852e-01 -2.41010770e-01 -1.07575811e-01\\n-2.93560535e-01 2.04722613e-01 -1.09883137e-01 1.32329702e-01\\n-8.83692428e-02 2.96811879e-01 3.04344278e-02 9.08828378e-02\\n3.44726324e-01 -4.60191369e-02 -1.78546280e-01 -2.27969617e-01\\n-3.05460870e-01 -2.62535065e-01 -2.57326867e-02 -1.90733019e-02\\n2.31727421e-01 -3.51153255e-01 7.12587610e-02 -5.86213209e-02\\n-2.03934252e-01 -2.91360646e-01 -2.27245577e-02 -4.43667173e-02]]',\n", + " 'job_description': 'Homegate is the leading digital real estate classifieds platform in Switzerland. We help people to make their best real estate decision and bring commercial real estate agencies, owners and potential tenants and buyers together. We count more than 10 million visits from people who use our portal and have more than 190 million page views per month. We are looking for you as a teammate. You’ll help Homegate to grow the business and our engineering-teams to shift our platform to the next level, while driving innovations. Full-Stack Software Engineer Your Responsibilities You will work on rebuilding the Homegate platform using microservices architecture on AWS You will implement, test and deliver new features within a cross-functional agile team You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery You own your solution and will be responsible from development to delivery to operations in a DevOps environment Your Qualification Experienced in JavaScript/Node.js and related web frameworks Experience with frontend frameworks like Angular or Vue.js Familiarity with AWS services like Lambda, DynamoDB, SNS, RDS, S3, CloudWatch and ElasticSearch Familiarity with Java/Spring/Maven Hands on experience designing and implementing RESTfull backend services Practice in clean code, TDD, pair programming, continuous integration and continuous delivery Experience with agile methodologies and pronounced agile mindset A degree in computer science or equivalent practical experience Fluency in English, German is a plus Benefits Flexible working hours and Home-office possibilities Personal development plan and yearly budget for educational courses, conferences etc. Assistance and Support through all aspects of the onboarding process On-site canteen with plentiful selection of fresh food and salad Discounts in many surrounding shops and partner vendors like HP, Allianz, Sunrise, Shell, ... Lots of team activities and regular hackathons We do not accept unsolicited CVs from Third Party Agencies.',\n", + " 'soft_skills': '[\"Innovation\", \"Real Estate\", \"Operations\", \"Decisiveness\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Continuous Delivery\", \"Vue.js\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"Activism\", \"Onboarding\", \"Node.js\", \"Levelling\", \"AWS Directory Service\", \"Amazon Simple Notification Service (SNS)\", \"Microservices\", \"Software Engineering\", \"Amazon DynamoDB\", \"Budgeting\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"Digitization\", \"JavaScript (Programming Language)\", \"Amazon CloudWatch\", \"Foods\", \"Angular (Web Framework)\", \"Planned Unit Development\", \"Experience Design\", \"Pair Programming\", \"Personality Development\", \"Java (Programming Language)\", \"Commercialization\", \"Custom Backend\", \"DevOps\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Albanian', 'Interlingua', 'Manx', 'Moldovan']\"},\n", + " {'company_id': '78',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Ecublens',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.33694956e-01 3.10694486e-01 4.18160260e-01 2.11881120e-02\\n5.00443697e-01 -1.94497660e-01 1.55600877e-02 3.68219316e-01\\n-5.10560069e-03 -4.21176910e-01 -1.71631239e-02 -1.40576616e-01\\n2.05046013e-02 5.14465123e-02 1.00804456e-01 4.40635741e-01\\n2.66335875e-01 1.03887580e-01 -1.78714707e-01 3.87045324e-01\\n1.99175939e-01 -1.87521607e-01 1.27502203e-01 6.93333447e-01\\n4.92713183e-01 -2.11830791e-02 -7.92485103e-02 -5.25545701e-02\\n-2.31206372e-01 -2.70013183e-01 3.10707182e-01 -5.74332699e-02\\n2.15872210e-02 -2.99329877e-01 1.26689702e-01 6.63633347e-02\\n-2.88466960e-01 9.91255492e-02 -1.12298958e-01 1.70360520e-01\\n-4.55864787e-01 -2.54954934e-01 -4.65565622e-02 2.24263333e-02\\n-3.10011983e-01 -3.62532288e-01 -3.89026776e-02 -6.13107905e-02\\n1.89088270e-01 7.77875111e-02 -4.44443345e-01 2.64167577e-01\\n-1.99776679e-01 -2.33396560e-01 2.95734167e-01 6.23479247e-01\\n4.50934917e-02 -4.20679539e-01 -4.89458710e-01 -2.78634846e-01\\n1.16557688e-01 -1.16639726e-01 6.18355535e-02 -2.42787793e-01\\n2.31323600e-01 8.86910409e-02 1.85002424e-02 4.35410947e-01\\n-7.84092247e-01 -1.91704020e-01 -2.07681894e-01 1.23402951e-02\\n-4.06007141e-01 -3.22623886e-02 -3.86694640e-01 -1.56241968e-01\\n-1.01129234e-01 4.20151114e-01 4.80038337e-02 1.50772352e-02\\n-1.61528647e-01 2.81036943e-01 -3.04915220e-01 2.73584455e-01\\n1.02941796e-01 2.79036343e-01 2.70860821e-01 3.73432189e-01\\n-3.85613143e-01 4.36079144e-01 2.41754726e-01 -2.32633501e-01\\n1.76205307e-01 1.06240548e-01 4.02684838e-01 -3.40732709e-02\\n5.77798896e-02 1.65189445e-01 -2.88379312e-01 2.76702106e-01\\n2.82096684e-01 -3.95611554e-01 7.87914172e-03 -8.94999653e-02\\n-6.25511557e-02 8.40330943e-02 -1.40251601e-02 2.31189877e-01\\n-2.59275526e-01 5.51684439e-01 1.46659464e-01 -1.37547225e-01\\n-2.28251547e-01 -5.54201663e-01 -1.58757374e-01 5.78126982e-02\\n7.47821108e-02 2.12494642e-01 2.19253793e-01 2.26380914e-01\\n1.16370395e-01 2.24813446e-02 9.47291628e-02 8.04549098e-01\\n-1.16630517e-01 9.60807726e-02 -2.40479290e-01 3.10207963e-01\\n1.13190107e-01 -1.79855525e-01 1.54276356e-01 2.36554399e-01\\n3.56984660e-02 -9.47168022e-02 -2.18061045e-01 2.29521587e-01\\n-6.06105588e-02 -2.31227845e-01 -2.83477813e-01 1.18313588e-01\\n-8.22055563e-02 -4.50509131e-01 5.74952066e-01 2.31584758e-02\\n1.53814897e-01 -4.48159203e-02 -2.24550851e-02 -8.20790709e-04\\n-7.56019875e-02 3.03169787e-01 9.13372710e-02 1.23072930e-01\\n-3.03916544e-01 -2.50226796e-01 -2.05550730e-01 5.83877154e-02\\n-3.36428940e-01 1.21093690e-01 -1.49086595e-01 -8.47567096e-02\\n2.71635681e-01 2.08488125e-02 -3.83767873e-01 2.71044642e-01\\n-1.30235463e-01 -8.42409208e-02 -3.11831720e-02 2.99951226e-01\\n-1.61675259e-01 2.33679801e-01 -6.71690926e-02 -1.30883873e-01\\n5.50217986e-01 2.00362459e-01 1.86730698e-01 5.74072637e-02\\n4.16112304e-01 -7.64654353e-02 1.65985912e-01 1.46445289e-01\\n-6.16053522e-01 2.94797331e-01 -1.32572711e-01 -2.28586271e-01\\n7.21781477e-02 -7.12005943e-02 2.70072997e-01 -2.85197854e-01\\n1.02354713e-01 -1.22964345e-01 -3.76513153e-01 -2.02733293e-01\\n-2.33798623e-01 -9.22281202e-03 4.65564877e-01 -4.22957778e-01\\n-1.76289026e-02 3.41121376e-01 -4.72027391e-01 -2.33024880e-02\\n2.61357486e-01 2.06141934e-01 1.31217614e-01 1.74730763e-01\\n-1.67744666e-01 -5.34387946e-01 1.35052264e-01 -4.33909267e-01\\n-3.29078257e-01 9.94107500e-02 -2.26713926e-01 3.33410501e-01\\n1.11036092e-01 -1.82715862e-03 -1.51139751e-01 1.67970553e-01\\n-1.18425325e-01 -1.10447332e-01 2.83209413e-01 3.28941941e-02\\n2.14923769e-01 6.44942671e-02 -3.72515410e-01 4.12083060e-01\\n-1.71891153e-01 6.03396297e-01 1.51938602e-01 -8.25392425e-01\\n4.90812927e-01 2.63826311e-01 -4.59370501e-02 -3.21155071e-01\\n6.44851744e-01 -2.84966499e-01 -7.32831145e-03 1.82045624e-01\\n-3.86190504e-01 -3.75351101e-01 2.37068579e-01 -1.66365340e-01\\n-1.99741721e-01 4.85785127e-01 4.40158285e-02 1.30692467e-01\\n1.79745406e-01 -1.60787553e-01 -3.98576073e-02 1.52663261e-01\\n-5.35914041e-02 -2.94805288e-01 -5.18397212e-01 9.26941931e-02\\n-3.32034752e-03 -4.76196647e-01 -2.17280313e-01 -4.25665081e-01\\n-2.85543621e-01 -4.39662457e-01 -1.57982692e-01 1.62631392e-01\\n3.31044137e-01 2.13499740e-01 -7.93696195e-02 -1.45712877e-02\\n-6.71145394e-02 -5.73744237e-01 1.61153320e-02 -3.42152314e-03\\n3.32856089e-01 2.50352800e-01 1.27441794e-01 4.36256528e-02\\n-2.19522528e-02 6.58323348e-01 -2.66560346e-01 -7.67623484e-02\\n1.85713053e-01 1.61428437e-01 -4.22756560e-03 -1.84829593e-01\\n1.29164323e-01 3.03757608e-01 -3.01778555e-01 3.38381715e-02\\n-9.51857269e-02 2.57780049e-02 2.92345256e-01 1.55617343e-02\\n-3.14502805e-01 -2.91422993e-01 -1.84992716e-01 1.99362904e-01\\n-5.02870262e-01 -1.22930110e-01 6.11743093e-01 1.40754446e-01\\n2.12122321e-01 1.37849808e-01 1.78483725e-01 -5.49887866e-02\\n-2.52730638e-01 -2.37880677e-01 2.72285432e-01 1.19225636e-01\\n1.00995198e-01 1.08278088e-01 3.67361568e-02 -6.45773768e-01\\n-3.37454438e+00 -1.89724252e-01 1.42814428e-01 -3.38577360e-01\\n1.43696800e-01 -1.30025804e-01 7.90460850e-04 5.75618772e-03\\n-3.24257165e-01 -6.59538507e-02 -1.53357282e-01 -8.79887938e-02\\n1.11312129e-01 2.64822900e-01 2.32304096e-01 2.98638642e-01\\n1.27467379e-01 -1.62867710e-01 -9.62174162e-02 3.77242118e-01\\n-2.11324051e-01 -5.81725299e-01 1.73958287e-01 6.06971495e-02\\n3.06207120e-01 1.59802139e-01 -3.38576555e-01 -5.65338843e-02\\n-2.50230163e-01 -2.47252196e-01 1.56811714e-01 -2.66218424e-01\\n-9.78930295e-02 3.70669335e-01 1.11472450e-01 -3.69110554e-02\\n1.24919102e-01 -3.92606795e-01 -1.68069433e-02 -3.88697505e-01\\n3.36455740e-03 -8.20426643e-01 -1.06883690e-01 -7.53684193e-02\\n6.40119731e-01 -2.71099359e-01 1.90349251e-01 3.63641493e-02\\n1.95785105e-01 1.30269691e-01 -1.12082675e-01 -2.06818786e-02\\n-1.78427428e-01 -2.77495384e-01 -1.03456229e-01 -9.79371369e-02\\n5.67298770e-01 5.69631875e-01 -2.69044399e-01 8.01320001e-03\\n8.58934447e-02 -2.63506502e-01 -5.48892736e-01 -3.06886792e-01\\n-2.30444178e-01 -9.26887095e-02 -5.49840808e-01 -4.26731259e-01\\n-1.73887193e-01 -8.43783766e-02 -9.15077925e-02 5.37236929e-01\\n-2.44740486e-01 -3.07523429e-01 2.18364410e-02 -4.46015954e-01\\n2.17726916e-01 -5.78427985e-02 5.55722602e-02 -1.57294363e-01\\n-2.49102935e-01 -4.09702212e-01 5.71653396e-02 4.89288606e-02\\n-1.03141606e-01 -1.70892045e-01 1.20945215e-01 -2.24966794e-01\\n-3.17171067e-01 -5.10713279e-01 4.32295084e-01 4.87467349e-02\\n3.29036176e-01 1.11190058e-01 3.36199135e-01 -2.32616439e-03\\n3.67397785e-01 -2.11079836e-01 8.26304704e-02 -4.73270059e-01\\n1.30975902e-01 1.23217061e-01 4.57422286e-01 -2.57095784e-01\\n-2.90559363e-02 7.17845038e-02 -3.32812697e-01 -1.39272260e-02\\n3.24670821e-01 -9.72553063e-03 8.99634138e-02 -1.17377803e-01\\n2.99210072e-01 -1.75929055e-01 -1.96166590e-01 1.49432853e-01\\n1.25814483e-01 5.53664744e-01 -2.02456564e-02 -3.95146817e-01\\n-1.58705860e-01 4.65312690e-01 -1.28688559e-01 -1.64453685e-02\\n-2.20121115e-01 1.04714744e-01 -1.52595073e-01 3.03967416e-01\\n-1.62819047e-02 -2.08631858e-01 -3.24698567e-01 -8.55872259e-02\\n-2.00148061e-01 2.88713664e-01 2.10529864e-01 8.84781405e-03\\n-2.34209150e-02 -4.25555855e-01 4.88475226e-02 2.26361573e-01\\n3.02192241e-01 2.84149259e-01 1.32213458e-01 -3.12475771e-01\\n-2.65542488e-03 2.49389172e-01 -2.19128251e-01 1.43899396e-01\\n-2.30714470e-01 1.13670349e-01 -5.54150343e-01 -3.49009186e-01\\n-1.89482644e-01 -3.14781696e-01 5.19638248e-02 2.31541350e-01\\n9.33595821e-02 -3.79794538e-02 3.64829339e-02 -4.96978492e-01\\n2.50132710e-01 8.91704634e-02 1.41821250e-01 1.04199350e-01\\n6.50435165e-02 4.86761510e-01 -7.43257999e-02 -1.51026547e-01\\n-8.15386027e-02 8.31517857e-03 -2.52564102e-01 -1.61107272e-01\\n2.35367175e-02 -4.73139077e-01 -1.57440469e-01 4.31908786e-01\\n1.75614521e-01 -2.24854723e-01 -2.10265309e-01 2.33494282e-01\\n1.08112328e-01 -3.23333591e-01 -2.15742409e-01 7.69484714e-02\\n3.64243120e-01 2.84955073e-02 3.17728549e-01 -4.48985428e-01\\n-2.92366315e-02 -8.68766103e-03 -1.67075247e-01 3.85697901e-01\\n9.01811421e-02 6.34265393e-02 -1.42284945e-01 -1.18283749e-01\\n4.05384213e-01 -2.07938403e-01 -3.12987890e-04 -3.71236634e-03\\n7.22786337e-02 -1.72924995e-01 -4.16090906e-01 -3.35295871e-03\\n-2.77986359e-02 -1.46082133e-01 6.18476830e-02 6.88482150e-02\\n1.95526797e-02 2.18948331e-02 -4.36302602e-01 -2.52694368e-01\\n-2.61161715e-01 -5.27560525e-02 8.58162493e-02 -4.58270907e-01\\n-2.03491196e-01 -4.92448779e-03 -5.92003286e-01 2.99318612e-01\\n-1.66229084e-01 1.24176955e-02 1.36493877e-01 1.25456434e-02\\n-2.27434918e-01 -6.18282631e-02 1.50179550e-01 2.79138029e-01\\n-2.83006787e-01 -2.85566092e-01 -5.33556268e-02 -1.08658040e+00\\n1.17247723e-01 -1.71513241e-02 -1.50322318e-01 1.47311568e-01\\n-5.30583151e-02 -6.02376044e-01 1.81220829e-01 -4.92458552e-01\\n-1.17195107e-01 -2.31137616e-03 -2.27269471e-01 -4.26067472e-01\\n2.71027815e-02 6.99616503e-04 -3.77176076e-01 3.43522787e-01\\n-3.14913243e-01 3.73485088e-01 -8.71398374e-02 2.94337738e-02\\n-6.90276967e-03 -3.24979097e-01 1.40533581e-01 -4.38480079e-01\\n-4.09763217e-01 -2.08348125e-01 -3.62754285e-01 -2.31102183e-01\\n-1.69482473e-02 -2.97968119e-01 -1.93098947e-01 1.07559025e-01\\n1.68603167e-01 1.07703343e-01 -1.24213314e-02 -2.61103392e-01\\n1.42630473e-01 -5.54382861e-01 1.18775908e-02 -1.13759488e-01\\n-1.04505032e-01 9.37627908e-03 2.58785665e-01 1.09534644e-01\\n1.62994713e-01 -3.25260311e-01 3.87850344e-01 -2.82961816e-01\\n-2.96962291e-01 -1.11226268e-01 1.57088652e-01 2.77211051e-02\\n3.73301774e-01 -4.14922833e-01 -4.56987023e-02 2.81111509e-01\\n3.69533338e-02 3.61954235e-02 2.27839813e-01 -1.51926070e-01\\n-1.39332205e-01 1.41031131e-01 -3.47362369e-01 1.36559248e-01\\n7.64166594e-01 1.19722612e-01 1.56051457e-01 1.89553708e-01\\n2.05733135e-01 3.62886488e-01 5.64511836e-01 -5.12254164e-02\\n-1.73758976e-02 3.16232383e-01 5.70267364e-02 -5.05842447e-01\\n-9.85049382e-02 -2.23243665e-02 -2.16953263e-01 -3.45784515e-01\\n7.71083236e-01 4.01447922e-01 -3.67944747e-01 -2.82530814e-01\\n-2.55333722e-01 -1.92200005e-01 1.42441377e-01 -1.16522320e-01\\n-9.79781989e-03 -1.26149982e-01 5.14795363e-01 -3.24882604e-02\\n2.08125204e-01 3.93640727e-01 -2.60371715e-01 -3.43324125e-01\\n1.63293071e-02 1.88208476e-01 1.11930065e-01 4.07239705e-01\\n-2.15424418e-01 2.83919811e-01 -1.22542873e-01 1.88305587e-01\\n-1.27313986e-01 1.96085144e-02 1.89664289e-01 1.68041557e-01\\n1.80253655e-01 1.08201332e-01 4.59819973e-01 4.03178215e-01\\n2.92060554e-01 4.58663821e-01 3.07962656e-01 -1.35585456e-03\\n3.76005560e-01 5.67339182e-01 3.34267914e-01 8.10878128e-02\\n-5.83318770e-02 1.47555828e-01 1.75408408e-01 -5.63990604e-03\\n3.17342997e-01 3.03035587e-01 1.17216766e-01 7.82497466e-01\\n3.29421192e-01 3.70164484e-01 7.33907044e-01 -5.39341152e-01\\n-3.96218210e-01 -3.00336406e-02 5.11527240e-01 -3.55568469e-01\\n-6.71447963e-02 1.90549448e-01 -1.98653817e-01 3.30384016e-01\\n-4.94013518e-01 -2.87787050e-01 -4.27875258e-02 1.15459569e-01\\n-1.06900260e-02 -9.41596478e-02 -2.70226032e-01 4.06322256e-02\\n-1.03962436e-01 -2.38350481e-01 -4.39694673e-01 -1.43574566e-01\\n-1.89686015e-01 -7.99104199e-02 -9.22728628e-02 -4.60672863e-02\\n-1.92324534e-01 -3.46632600e-01 -5.92208356e-02 -2.77661178e-02\\n3.29893082e-01 -1.22675225e-01 -1.51904777e-01 -3.79742756e-02\\n2.40926623e-01 1.20706424e-01 6.16295457e-01 3.35358083e-02\\n4.00059335e-02 -2.89301723e-01 -2.29083687e-01 1.22933194e-01\\n2.12325722e-01 6.46721423e-02 2.37110034e-02 4.38026875e-01\\n-3.71639788e-01 -2.26398498e-01 2.32170895e-03 2.69654214e-01\\n-3.83572161e-01 -1.58126410e-02 -8.60816706e-03 2.86389381e-01\\n9.71846208e-02 1.35595635e-01 -2.06738442e-01 1.67916343e-02\\n-1.40680835e-01 -5.05075216e-01 2.39574060e-01 -2.87663825e-02\\n-2.16864496e-01 7.66880587e-02 2.03975469e-01 1.66094288e-01\\n-2.24961445e-01 -1.08198360e-01 -8.59026983e-02 1.07447505e-01\\n1.05783455e-01 3.37293684e-01 -1.13268092e-01 -3.77458513e-01\\n-3.05585086e-01 2.97581404e-01 -1.55567721e-01 1.88475400e-01\\n2.21482329e-02 3.81440490e-01 2.80639566e-02 1.98177546e-01\\n3.36726397e-01 3.79857793e-02 -1.58774555e-01 -2.81602234e-01\\n-1.30580917e-01 -2.01127902e-01 -5.71283454e-04 -6.60051405e-02\\n1.24478027e-01 -3.39486122e-01 -9.33265388e-02 -1.62183732e-01\\n-1.76691249e-01 -3.75046730e-01 -1.39651662e-02 -1.21429220e-01]]',\n", + " 'job_description': \"What we are looking for To accelerate projects and growth, Nanolive is looking for strengthening its development team with a highly self-motivated, enthusiastic, result oriented Python Data Scientist. Mission and activities Implement advanced statistical and data analysis tools related to Nanolive Core Technology and Quantitative biology applicationsImplement environment development and architecture in PythonValidate proofs of concepts through modelling and simulationPrepare test protocols, run tests and analyse resultsDocument work results with Python notebooks or similar reports Required Master’s or PhD degree in Computational Science, Mathematics, Engineering or related area.Experience in Python scientific codingExperience in big data managementStrong background in Mathematics, Physics or Biology An Asset Experience with CI/CD, source management & djangoKnowledge of unit testingKnowledge of hdf5, java programming, image analysis Key asset of the candidate Have a team player spirit, a quick perception, and a resourceful and fast-learning mindsetHave a strong sense of commitment and responsibility to respect planning and qualityHave a high analytical capacity and an adaptable, autonomous, rigorous and service-oriented mindsetHave effective communication in English (both written & oral – including technical documentation) What we offer You will get the opportunity to work in a fast-growing scale-up environment with highly motivated, competent and experienced individuals, and make a real difference for our customers. You will be working with a cutting-edge technology and facing the exclusive challenge of making it accessible to a wide audience by implementing creative solutions. Interested? Please visit our website, then click on “Apply Now” and fill your application including your cover letter and CV. We do not accept any recruitment agencies. Job Types: Full-time, Permanent Experience: python: 1 year (Preferred)Big Data management: 1 year (Preferred) Education: Master's (Required) \",\n", + " 'soft_skills': '[\"Self-Motivation\", \"Adaptability\", \"Resourcefulness\", \"Planning\", \"Management\", \"Communications\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Computational Science And Engineering\", \"Integrated Development Environments\", \"Accessioning\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Data Management\", \"Statistics\", \"Mathematical Sciences\", \"Scale (Map)\", \"Activism\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"Source (Game Engine)\", \"Image Analysis\", \"Mathematical Physics\", \"Biology\", \"Service-Oriented Modeling\", \"Big Data\", \"Technical Documentation\", \"Survey Data Analysis\"]',\n", + " 'languages': \"['English', 'Scottish Gaelic']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'junior software engineer (java/.net)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.76593438e-01 3.21061343e-01 4.03711438e-01 -1.54909730e-01\\n4.76513952e-01 -1.61132127e-01 -6.34107143e-02 5.04556894e-01\\n-1.29692452e-02 -4.26526338e-01 -1.08737096e-01 -2.87307113e-01\\n1.52786635e-02 1.04779959e-01 1.56753182e-01 3.73529404e-01\\n2.96232581e-01 6.40516654e-02 -2.92920381e-01 3.61855328e-01\\n1.10292733e-01 -2.81781610e-02 -7.17595033e-03 7.47539461e-01\\n4.39354718e-01 -7.82226969e-04 -1.87227018e-02 5.75900935e-02\\n-1.70399323e-01 -3.42422903e-01 3.79916549e-01 -2.86088493e-02\\n-7.82140791e-02 -2.97521114e-01 1.12556241e-01 1.47341728e-01\\n-2.34570697e-01 -1.30936563e-01 -1.19586334e-01 9.80236679e-02\\n-6.00463450e-01 -2.93426692e-01 1.35056898e-02 -1.18367880e-05\\n-1.63778290e-01 -2.16083169e-01 1.30774364e-01 -2.83112307e-03\\n1.38227075e-01 1.12860583e-01 -5.21316528e-01 3.21882188e-01\\n-2.31303632e-01 -2.55251557e-01 2.84495443e-01 5.33625543e-01\\n-7.16173574e-02 -4.78711963e-01 -4.45660561e-01 -1.76051363e-01\\n7.50497580e-02 -4.51737531e-02 9.01194364e-02 -2.85600156e-01\\n2.99641907e-01 2.80178599e-02 -1.49996644e-02 4.24006343e-01\\n-7.46236205e-01 -1.75578296e-01 -3.49998355e-01 -2.74872873e-02\\n-4.48245823e-01 -7.02249631e-02 -1.97195873e-01 -1.53375819e-01\\n-1.13573454e-01 3.01516026e-01 5.74140390e-03 1.00188702e-01\\n-1.86090022e-01 3.00571471e-01 -1.67472169e-01 1.86562002e-01\\n3.05050313e-01 2.87455022e-01 1.43266201e-01 2.92795092e-01\\n-4.35896456e-01 3.86317909e-01 1.59691140e-01 -2.87642926e-01\\n2.07522348e-01 1.32034257e-01 4.69235361e-01 -5.23699895e-02\\n2.15967342e-01 1.91485554e-01 -2.01259583e-01 3.05229813e-01\\n3.01190615e-01 -3.84763211e-01 1.64472878e-01 3.07833478e-02\\n-1.37119904e-01 8.55882615e-02 2.16900390e-02 1.90158814e-01\\n-3.28246027e-01 4.07780826e-01 2.21121266e-01 -3.04685652e-01\\n-1.29718736e-01 -6.66480780e-01 -7.32659623e-02 -1.70428585e-02\\n-2.85175815e-02 1.27897561e-01 2.77196676e-01 1.64327040e-01\\n2.56691009e-01 -2.67633945e-02 1.64483115e-01 8.07296574e-01\\n-9.64336917e-02 -4.95425798e-02 -2.95183837e-01 3.39900285e-01\\n3.08363773e-02 -2.61030644e-01 2.35901847e-01 2.42364123e-01\\n1.48212940e-01 -1.10651352e-01 -2.29090244e-01 3.75479698e-01\\n4.46081124e-02 -1.80823565e-01 -3.30258936e-01 1.20476186e-01\\n-2.13517293e-01 -2.79216886e-01 4.89615440e-01 1.60519198e-01\\n1.98460773e-01 -5.68582900e-02 3.65851745e-02 -8.44580829e-02\\n2.69353446e-02 2.69249976e-01 -4.39681392e-03 1.76864490e-01\\n-3.37065428e-01 -1.53483197e-01 -1.98424637e-01 2.83370048e-01\\n-2.14515686e-01 1.58995554e-01 -1.10643834e-01 -1.43872246e-01\\n3.12644273e-01 -4.86761667e-02 -2.74190605e-01 2.55970180e-01\\n-3.41466591e-02 -1.73484325e-01 -1.48332879e-01 3.11571896e-01\\n-5.07303029e-02 1.95946977e-01 -2.23618541e-02 -2.12216020e-01\\n5.49118638e-01 2.11593464e-01 1.31275937e-01 -1.23719051e-01\\n2.53553271e-01 -1.11762546e-01 1.08112857e-01 9.51458439e-02\\n-6.92754090e-01 3.82462382e-01 -7.21364394e-02 -4.51747999e-02\\n2.95237917e-02 -3.14199971e-03 1.58689484e-01 -4.37934548e-01\\n-1.01509392e-01 -2.09989399e-02 -4.13660169e-01 -3.50695997e-01\\n-2.60238677e-01 -9.73547995e-02 3.47413570e-01 -4.34822887e-01\\n-2.49801382e-01 1.11400411e-01 -5.16287029e-01 -1.43214478e-03\\n2.43023917e-01 1.55254498e-01 3.05788685e-03 1.04137406e-01\\n-1.92998245e-01 -5.62118709e-01 -1.00180004e-02 -4.78655815e-01\\n-3.73078734e-01 2.51119696e-02 -2.50190169e-01 3.16525012e-01\\n8.29584301e-02 -1.57307778e-02 -1.48086622e-01 1.98652908e-01\\n-1.95372164e-01 9.55756903e-02 1.30578339e-01 7.63072670e-02\\n4.02883917e-01 3.00900973e-02 -3.86655241e-01 3.83924812e-01\\n-1.80618897e-01 4.44632322e-01 1.37830600e-01 -6.77592218e-01\\n5.23817003e-01 2.98845768e-01 1.44963548e-01 -3.40237945e-01\\n6.25833094e-01 -2.88204432e-01 3.34287323e-02 1.09531142e-01\\n-5.59176624e-01 -2.85899580e-01 3.18265200e-01 -2.27341026e-01\\n-2.89171219e-01 5.21973431e-01 1.36654779e-01 6.83352724e-02\\n2.79148728e-01 -2.32345611e-01 -5.02504893e-02 9.15265381e-02\\n-3.63869295e-02 -1.55157834e-01 -3.93900782e-01 -4.17622402e-02\\n-7.24733323e-02 -5.52917302e-01 -2.36311182e-01 -4.20200139e-01\\n-2.97080845e-01 -2.56412953e-01 -2.95083553e-01 3.59753460e-01\\n2.13750780e-01 8.16309825e-02 2.07328513e-01 -7.86259864e-03\\n-1.70908257e-01 -5.74805975e-01 1.65225063e-02 1.51722074e-01\\n3.35795581e-01 1.29875034e-01 1.94907573e-03 6.45203888e-02\\n-1.33454755e-01 6.67776585e-01 -2.54231662e-01 -2.29366407e-01\\n3.84627320e-02 2.12509856e-01 1.26083255e-01 1.29778078e-03\\n5.77241816e-02 2.16965482e-01 -3.69101822e-01 -2.11176090e-02\\n-1.12583831e-01 -4.59927693e-03 4.34970021e-01 1.43109277e-01\\n-2.64632374e-01 -2.35784322e-01 -1.87835880e-02 2.04456151e-01\\n-4.53244746e-01 -1.01141088e-01 6.28460765e-01 1.33806273e-01\\n2.11746842e-01 2.06617191e-01 2.51506358e-01 2.49771611e-03\\n-1.33037522e-01 -3.57031435e-01 1.42204165e-01 1.64547071e-01\\n-7.75716007e-02 4.18425873e-02 -1.52813330e-01 -6.11581981e-01\\n-3.36472869e+00 -2.56216913e-01 2.05678061e-01 -3.26425880e-01\\n2.15815082e-01 -1.36300456e-02 2.09497008e-02 -1.10772513e-01\\n-2.50004888e-01 1.06282808e-01 -1.34167820e-01 -2.69153059e-01\\n1.19905651e-01 1.48137718e-01 3.00269388e-02 3.38315398e-01\\n1.99299827e-01 -2.41929010e-01 -8.58267024e-02 3.00494671e-01\\n-2.40120322e-01 -6.03816092e-01 2.18374535e-01 -4.64849994e-02\\n2.88795650e-01 3.33908528e-01 -3.81697536e-01 -1.57503143e-01\\n-2.12948948e-01 -2.33239755e-01 1.50163546e-01 -4.97783512e-01\\n-1.40359685e-01 4.11130875e-01 2.69195735e-01 -5.28729409e-02\\n6.72517270e-02 -3.49673659e-01 -1.04543120e-01 -3.80943507e-01\\n1.56093225e-01 -5.48174083e-01 -5.57694696e-02 -1.15501300e-01\\n8.36921394e-01 -4.21750963e-01 1.86833367e-01 7.80011937e-02\\n1.02231622e-01 1.61395058e-01 3.91127989e-02 3.49097401e-02\\n-3.18079777e-02 -3.77466470e-01 -5.39919063e-02 -7.77751505e-02\\n4.15653735e-01 6.42293155e-01 -1.29026830e-01 4.10666689e-02\\n7.04821348e-02 -3.55339229e-01 -3.72199893e-01 -3.50926220e-01\\n-1.81724653e-01 -2.18174979e-01 -6.86396599e-01 -4.35020238e-01\\n-5.99314421e-02 -1.34697929e-01 -1.89752221e-01 6.31108761e-01\\n-3.85191530e-01 -4.70457137e-01 -5.30615374e-02 -5.38447738e-01\\n1.43555671e-01 -2.31325835e-01 2.07670368e-02 -1.60858899e-01\\n-2.73448855e-01 -5.03517509e-01 3.26972306e-02 -6.18008003e-02\\n-4.89219762e-02 -2.11286828e-01 4.24452312e-02 -1.86619669e-01\\n-1.93206027e-01 -4.51025516e-01 4.71527994e-01 2.66824722e-01\\n2.85668761e-01 1.41474813e-01 2.55323857e-01 1.15285717e-01\\n1.84483469e-01 -1.92001209e-01 -5.16177714e-02 -1.97040126e-01\\n8.51439387e-02 -6.74655437e-02 4.98368829e-01 -1.85615301e-01\\n1.74439028e-01 7.34840259e-02 -2.10303128e-01 -1.76942408e-01\\n3.25416416e-01 9.85615104e-02 -2.30863504e-02 -2.10182682e-01\\n3.22140723e-01 -3.91988724e-01 -1.92468464e-01 6.27424419e-02\\n-1.36527494e-02 5.78014612e-01 -2.31287163e-02 -4.14380729e-01\\n-2.16797352e-01 4.70710427e-01 -1.03607453e-01 -1.13182977e-01\\n-2.62265533e-01 1.56151906e-01 -2.44738087e-01 4.71158102e-02\\n-8.68418738e-02 -1.96417972e-01 -2.52000451e-01 -1.01529650e-01\\n-7.73783028e-02 2.25697726e-01 2.38756806e-01 1.76380321e-01\\n-3.25264235e-04 -3.66770953e-01 -1.87874451e-01 1.70377865e-01\\n3.21943134e-01 4.69823807e-01 2.05754116e-01 -2.49885038e-01\\n-2.66310689e-03 2.56003737e-01 -2.25298911e-01 7.15818256e-02\\n-9.13015157e-02 1.92744806e-02 -3.89349043e-01 -2.77011424e-01\\n-2.12551922e-01 -3.11367631e-01 4.08733562e-02 2.66829103e-01\\n1.28169924e-01 -6.59903660e-02 1.07980125e-01 -3.24777365e-01\\n4.29364681e-01 1.43635243e-01 2.02647433e-01 2.41164520e-01\\n-1.28094549e-03 4.87680972e-01 4.75352332e-02 1.21705290e-02\\n-1.38825834e-01 -1.71913113e-02 -1.78997889e-01 -1.54518053e-01\\n8.16649273e-02 -3.76050949e-01 -1.10170245e-01 4.68188584e-01\\n-2.24669892e-02 -2.75545359e-01 -7.40914419e-02 2.70236045e-01\\n-6.87100738e-02 -3.55419278e-01 -1.91738263e-01 5.80018051e-02\\n3.23654175e-01 1.16491176e-01 2.84346521e-01 -4.83857572e-01\\n-1.87748626e-01 -4.06076536e-02 -1.21308804e-01 4.89905447e-01\\n8.73986483e-02 9.08572450e-02 -1.26044139e-01 -3.93336356e-01\\n4.24936384e-01 -2.45082140e-01 -1.63571283e-01 4.91313711e-02\\n1.01622261e-01 -1.51712820e-01 -5.06274402e-01 5.72781339e-02\\n-2.26082802e-02 -1.38799265e-01 6.08404982e-04 -1.11833923e-01\\n1.82227880e-01 1.02961227e-01 -5.65874457e-01 -3.36980581e-01\\n-3.38655174e-01 -1.67077050e-01 2.40755323e-02 -3.29987496e-01\\n2.36030594e-02 -2.58733392e-01 -5.54550946e-01 3.28601539e-01\\n-4.26286042e-01 -7.00219162e-03 2.09550813e-01 2.05608800e-01\\n-4.62352902e-01 -1.45468876e-01 1.48451090e-01 2.71940231e-01\\n-3.58108938e-01 -2.69744188e-01 -1.43206306e-02 -9.50020730e-01\\n1.74867406e-01 -5.22723161e-02 -6.43756539e-02 -6.63422002e-03\\n1.79611575e-02 -6.67165339e-01 -1.68787483e-02 -2.08874583e-01\\n-6.40894771e-02 2.16985028e-02 -1.07308805e-01 -3.76201779e-01\\n4.48540300e-02 -1.18227899e-01 -2.48699114e-01 3.91325742e-01\\n-3.37012202e-01 2.13321581e-01 -4.81119752e-02 9.12002027e-02\\n-1.55821890e-01 -2.87184209e-01 1.63515538e-01 -3.69769424e-01\\n-4.63883072e-01 -1.07540436e-01 -2.89779544e-01 -2.29507953e-01\\n1.72873996e-02 -3.12347502e-01 -6.67945296e-02 6.56527877e-02\\n1.63883060e-01 -4.55058552e-02 -4.13291529e-02 -2.44959444e-01\\n3.03288233e-02 -4.01813537e-01 1.74983665e-01 -1.49476305e-01\\n7.65782669e-02 -1.14036866e-01 1.70854881e-01 8.62988755e-02\\n-6.09642919e-03 -4.59550023e-01 3.17811370e-01 -3.46605808e-01\\n-3.15025836e-01 4.31215530e-03 1.03976972e-01 -4.71085683e-02\\n3.86347771e-01 -5.04923761e-01 1.05927400e-01 3.70437562e-01\\n5.89779094e-02 6.01219609e-02 2.96730638e-01 -1.82976690e-03\\n-9.01837870e-02 4.68511671e-01 -3.09239864e-01 2.30682120e-01\\n8.18546891e-01 1.50475845e-01 1.11727335e-01 2.43089959e-01\\n2.11021915e-01 3.61621529e-01 5.19757628e-01 6.64309263e-02\\n-5.40051349e-02 3.13445985e-01 8.08862001e-02 -5.34102678e-01\\n5.98999858e-02 -1.23933665e-01 -3.10005188e-01 -3.35645407e-01\\n6.11220777e-01 5.68055332e-01 -4.47500706e-01 -1.65165246e-01\\n-7.89969340e-02 -1.58537954e-01 1.00487009e-01 -1.92023173e-01\\n-8.22602492e-03 -1.30474493e-01 5.37045240e-01 7.11301267e-02\\n2.90197492e-01 4.91534054e-01 -1.64511874e-01 -4.43735898e-01\\n-1.85743198e-01 2.29479551e-01 8.81615803e-02 4.73395318e-01\\n-1.35520011e-01 2.53864318e-01 -8.35350826e-02 1.94172055e-01\\n8.89730155e-02 2.37372562e-01 5.62381148e-02 8.29307139e-02\\n8.96887332e-02 1.97853982e-01 3.18511665e-01 4.76835132e-01\\n2.62257338e-01 4.93539751e-01 3.69106650e-01 1.44840896e-01\\n3.76099467e-01 5.81250787e-01 5.47044337e-01 1.68123513e-01\\n-6.20140396e-02 9.49617326e-02 -5.14575951e-02 -3.35023925e-02\\n2.55214185e-01 3.66325080e-01 8.98271240e-03 9.29829717e-01\\n4.06665325e-01 1.94113061e-01 6.03087783e-01 -6.15728021e-01\\n-3.81379694e-01 -8.86271149e-03 3.97574782e-01 -3.44745696e-01\\n-1.01260170e-01 7.86595885e-03 -2.01251730e-01 2.65177310e-01\\n-4.67189640e-01 -1.37610495e-01 1.69832502e-02 1.35059208e-01\\n1.70240909e-01 -7.98280314e-02 -2.63140261e-01 -4.07074280e-02\\n-2.55898029e-01 -1.86952397e-01 -4.20287907e-01 4.50580474e-03\\n-3.61526370e-01 -1.69221908e-01 -7.69357458e-02 -1.66921988e-01\\n1.44792069e-02 -3.64602894e-01 -8.29534456e-02 1.27974302e-01\\n2.67222732e-01 -6.47255778e-02 -7.04291686e-02 -7.55188689e-02\\n2.39006802e-01 2.82088369e-01 4.55630034e-01 -6.53474629e-02\\n9.26105082e-02 -8.05288106e-02 -3.27515155e-01 1.14725232e-01\\n1.50283068e-01 1.46232262e-01 1.49276480e-01 3.40471148e-01\\n-3.00007701e-01 -9.04826894e-02 1.87536001e-01 3.56028885e-01\\n-4.38774288e-01 7.20675141e-02 -5.89230619e-02 4.14417088e-01\\n1.48312181e-01 1.08790696e-01 -1.82789579e-01 4.10246328e-02\\n-1.41170785e-01 -4.46988970e-01 2.32626691e-01 -2.02016696e-01\\n-1.54758189e-02 2.35146135e-01 2.74719626e-01 2.60188431e-01\\n-2.81836510e-01 2.05715708e-02 3.21958214e-02 2.69169807e-01\\n9.91170928e-02 3.04218620e-01 -3.92484307e-01 -1.73890188e-01\\n-2.23935038e-01 1.37210250e-01 -2.58660048e-01 4.38885838e-02\\n-5.03137186e-02 2.55316883e-01 -3.00136139e-03 3.49168740e-02\\n2.83447593e-01 -9.33436751e-02 -1.82714626e-01 -1.74732357e-01\\n-3.30901802e-01 -3.04423541e-01 1.59958392e-01 -1.66674152e-01\\n2.56993413e-01 -3.89913112e-01 -1.77325845e-01 -8.62925425e-02\\n-8.61917734e-02 -3.63377959e-01 2.49271430e-02 5.52995950e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client delivers sustainable positive impact to all their client projects. Their experts create, design, develop and operate software-centric solutions. Ihr Aufgabenbereich Develop innovative web and mobile applications, using state-of-the-art tools and agile methodologies. Work closely with a multidisciplinary team of business analysts, architects and developers. Be involved in the complete project lifecycle, from requirements analysis to final delivery. Ihr Profil You hold a MSc or BSc from a leading university or institute of technology. You already have some experience in developing Java or .Net applications from internships or course-related activities. You are passionate about technology and software engineering. You are familiar with the fundamentals of underlying technologies such as web-based user interfaces, relational and non-relational databases, application security, and communication protocols. You have a good command of English and either French or German (depending on working location). Ihre Chance Did you get your attention and you are looking for a new challenge? Then send your complete application documents to jobs@oneagency.ch Ort: Zürich Spezialisierung:Sprachen: Job ID: 7422',\n", + " 'soft_skills': '[\"Innovation\", \"Operations\", \"Positivity\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Database Application\", \"Tooling\", \"Relational Databases\", \"Requirements Analysis\", \"Activism\", \"Agile Methodology\", \"Application Security\", \"Sustainability\", \"Communications Protocols\", \"Java (Programming Language)\", \"Mobile Application Software\", \"User Interface\", \"Software Engineering\", \"Finalization\"]',\n", + " 'languages': \"['English', 'Afrikaans', 'Ojibwa']\"},\n", + " {'company_id': '40',\n", + " 'job_title': 'director data solutions (data science, analytics, bi)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': 'www.epam.com',\n", + " 'jobdescription_embedded': '[[-3.63576472e-01 3.57174784e-01 5.07355809e-01 -5.48212882e-03\\n5.64902782e-01 -1.19120434e-01 -2.35726312e-02 9.34738442e-02\\n-6.98652416e-02 -3.91176641e-01 -1.88871220e-01 -2.82527417e-01\\n-3.73633429e-02 1.24194644e-01 1.59064069e-01 5.19433975e-01\\n1.78467378e-01 2.64663640e-02 -1.10854633e-01 4.56562936e-01\\n1.39203668e-03 -2.45336741e-01 -3.10287029e-02 8.10639977e-01\\n4.50094044e-01 -2.30896268e-02 -1.04203254e-01 -1.07893810e-01\\n-2.68140197e-01 -2.60504425e-01 3.83764803e-01 -8.66251811e-03\\n-1.37470037e-01 -4.10729587e-01 1.52139425e-01 1.95020616e-01\\n-2.65017360e-01 3.57901789e-02 -1.82937056e-01 1.61129028e-01\\n-6.02907658e-01 -3.46736491e-01 9.21063870e-02 9.60852392e-03\\n-3.54666591e-01 -3.43335092e-01 3.75835225e-03 -7.57036507e-02\\n1.07695475e-01 6.56459928e-02 -5.31843722e-01 3.21593881e-01\\n-3.86054009e-01 -3.17948818e-01 3.79210651e-01 7.03781605e-01\\n2.37147808e-01 -6.08083248e-01 -4.50720906e-01 -4.28188950e-01\\n-4.05985303e-02 -8.18517245e-03 1.01541199e-01 -2.91344702e-01\\n2.54490733e-01 -6.88513070e-02 -4.16915417e-02 4.31582749e-01\\n-8.37191463e-01 -1.11519285e-01 -3.46323788e-01 1.49987414e-02\\n-3.73601586e-01 8.21090937e-02 -4.87527013e-01 -1.49978161e-01\\n-2.49165408e-02 5.47002792e-01 -4.06412408e-03 6.16804548e-02\\n-2.45684981e-01 3.56585741e-01 -2.66190618e-01 2.92696953e-01\\n3.90459269e-01 2.66707301e-01 4.12747204e-01 4.33283806e-01\\n-4.92573231e-01 4.92667913e-01 2.37961337e-01 -3.69400442e-01\\n2.23092467e-01 1.89509273e-01 4.09380972e-01 2.49189973e-01\\n1.15164340e-01 2.40416646e-01 -1.36352330e-01 1.13388419e-01\\n2.60390848e-01 -2.41345167e-01 6.99251890e-04 -1.43603370e-01\\n9.35209468e-02 -4.57718223e-02 -3.96828428e-02 9.69252661e-02\\n-3.46354514e-01 3.51971835e-01 1.24566942e-01 -3.42785060e-01\\n-2.26371184e-01 -5.47077239e-01 -3.79174948e-02 2.06458718e-02\\n-1.29408985e-01 2.18585640e-01 1.61656931e-01 4.34981324e-02\\n2.24770606e-01 -2.13504359e-02 7.98708722e-02 9.60955918e-01\\n-2.85473987e-02 6.37478083e-02 -1.11079186e-01 4.03968930e-01\\n2.07094014e-01 -2.02397063e-01 1.40799105e-01 1.69696689e-01\\n-1.25749648e-01 -1.20663397e-01 -2.78630793e-01 5.03458798e-01\\n-1.29321799e-01 -1.00997604e-01 -1.73379511e-01 1.81229249e-01\\n-6.25076070e-02 -4.86429155e-01 7.68918395e-01 -3.29318047e-02\\n1.69656605e-01 -4.41816561e-02 3.22743580e-02 -3.76124270e-02\\n-2.57316232e-01 2.66678154e-01 9.70636308e-02 2.68386364e-01\\n-2.98201054e-01 -2.65694052e-01 -1.03485934e-01 2.58003533e-01\\n-2.76387453e-01 4.26306576e-02 -2.10560083e-01 -1.17770478e-01\\n2.27768123e-01 2.19993636e-01 -4.84100312e-01 2.88047910e-01\\n-1.05338834e-01 -1.01922177e-01 -6.26790673e-02 2.17401415e-01\\n-1.89853683e-01 1.48522496e-01 -2.53829546e-02 -4.45276946e-02\\n6.12195373e-01 2.09691718e-01 4.70938206e-01 2.14108601e-02\\n3.34042132e-01 -1.62109628e-01 1.72921091e-01 1.33339286e-01\\n-5.25081635e-01 2.93162525e-01 -7.18049146e-03 -2.31386930e-01\\n1.01210251e-01 -6.15820885e-02 4.18209672e-01 -3.00219595e-01\\n-6.76040575e-02 -2.58910656e-01 -5.28843760e-01 -4.17608559e-01\\n-1.58833474e-01 -3.16899270e-02 3.28903764e-01 -4.63445902e-01\\n-6.60011843e-02 2.39427358e-01 -5.53481519e-01 -3.14814031e-01\\n2.22031474e-01 4.00162876e-01 1.49216279e-01 6.07748069e-02\\n-1.25214204e-01 -6.95024788e-01 1.68055277e-02 -4.47393239e-01\\n-3.60933781e-01 3.86893563e-02 -3.88820797e-01 -5.54974005e-02\\n-1.64673448e-01 8.65983777e-03 -5.38832918e-02 3.11082136e-02\\n-3.77855808e-01 9.47088003e-03 5.43735810e-02 8.83491412e-02\\n2.42242381e-01 1.12591743e-01 -3.25078785e-01 5.18395245e-01\\n-2.73491830e-01 5.08152246e-01 2.55798817e-01 -1.04347563e+00\\n6.59130096e-01 2.37191960e-01 3.88494832e-03 -2.07685888e-01\\n3.99278671e-01 -5.56560874e-01 -1.73200630e-02 1.20178558e-01\\n-3.30115408e-01 -3.39684188e-01 2.27272734e-01 -2.89476454e-01\\n-3.77326965e-01 6.34552717e-01 8.64861459e-02 3.03729791e-02\\n4.13930535e-01 -3.42465878e-01 -2.04319745e-01 -9.85281616e-02\\n-1.66472077e-01 -1.98359847e-01 -6.89279616e-01 2.25726128e-01\\n-1.66356787e-01 -5.60674965e-01 -2.13929117e-01 -4.91146982e-01\\n-3.31083715e-01 -4.39136207e-01 -2.17616439e-01 1.29038215e-01\\n1.51739269e-01 1.54084891e-01 -1.59278855e-01 6.49946257e-02\\n3.74720171e-02 -6.73535645e-01 -2.01205164e-02 1.81192458e-01\\n5.21772861e-01 3.69460076e-01 1.37424290e-01 -2.55502835e-02\\n1.23238660e-01 5.39965749e-01 -3.08118582e-01 -3.47381353e-01\\n1.81600809e-01 6.14861026e-02 3.82358357e-02 -1.66817367e-01\\n1.77254289e-01 2.27516368e-01 -3.53161871e-01 -1.88353751e-02\\n2.57616192e-02 1.09940022e-01 4.14108992e-01 -7.76331350e-02\\n-2.35931784e-01 -6.69090673e-02 -8.80983099e-02 1.81121036e-01\\n-6.01407766e-01 -1.34985387e-01 6.14408374e-01 1.07549787e-01\\n3.46593671e-02 2.35933483e-01 1.51577964e-01 -4.73943725e-03\\n-2.77936578e-01 -1.54392630e-01 2.82979578e-01 1.29780471e-01\\n2.03095466e-01 7.97969103e-02 -5.81552088e-02 -6.02149248e-01\\n-2.97816086e+00 -2.81738997e-01 1.38198525e-01 -2.70932466e-01\\n2.25718349e-01 -1.55048937e-01 8.40033516e-02 2.43536737e-02\\n-3.42454553e-01 -2.55234633e-02 -7.55898207e-02 -1.11436181e-01\\n-2.63342634e-02 1.97255343e-01 8.47201347e-02 2.72916138e-01\\n1.07790291e-01 -2.31523409e-01 8.72166157e-02 3.98979962e-01\\n-1.39599398e-01 -8.17559123e-01 3.93783078e-02 -3.57803106e-02\\n1.52733803e-01 9.52988118e-02 -5.42426229e-01 2.52403729e-02\\n-2.21357301e-01 -2.44864747e-01 2.12800801e-01 -2.89952457e-01\\n-2.63011187e-01 2.26683915e-01 9.78436694e-02 -1.25880152e-01\\n-1.89698152e-02 -3.89568150e-01 -9.47977379e-02 -5.65385401e-01\\n1.31657943e-01 -7.09523439e-01 4.92211767e-02 -3.07822879e-02\\n6.54996514e-01 -2.33662158e-01 1.43406644e-01 1.22723475e-01\\n1.35282665e-01 1.40361741e-01 1.87812418e-01 8.63178670e-02\\n-3.36443871e-01 -4.18039620e-01 5.72222956e-02 -2.18425006e-01\\n5.05375743e-01 3.48818183e-01 -2.01309383e-01 1.84819072e-01\\n1.88191488e-01 -3.08060467e-01 -4.79638159e-01 -3.44857305e-01\\n-1.51427597e-01 -3.90247218e-02 -8.73349607e-01 -4.38417047e-01\\n-2.77842760e-01 -2.76912153e-01 -1.69310749e-01 8.50647092e-01\\n-2.97605246e-01 -2.81954885e-01 -4.14744094e-02 -6.17894888e-01\\n4.37255383e-01 -1.71161547e-01 1.76777970e-02 -3.90037715e-01\\n-3.04340273e-01 -3.96138370e-01 2.37718731e-01 -5.20069785e-02\\n-3.10413688e-01 -3.28659043e-02 -1.65836737e-02 -2.82137215e-01\\n-3.40690196e-01 -4.71457005e-01 4.43808556e-01 3.56596299e-02\\n3.54390472e-01 2.52752472e-02 5.49847245e-01 -1.56850934e-01\\n4.03702825e-01 1.08992420e-01 -1.20433256e-01 -3.60562086e-01\\n-3.26997153e-02 2.92951651e-02 4.31577444e-01 -1.31469563e-01\\n3.98666039e-02 7.82681927e-02 -3.19005877e-01 4.40836400e-02\\n4.67709392e-01 -5.21735251e-02 8.88154060e-02 -3.96437794e-02\\n1.90095633e-01 -3.98876369e-01 -2.53088355e-01 1.80650160e-01\\n5.49509041e-02 8.47169518e-01 -1.21224644e-02 -4.27707314e-01\\n-2.20542908e-01 5.09986520e-01 3.09595652e-02 3.30880731e-02\\n-1.82330251e-01 1.72347605e-01 -3.05428833e-01 3.95853102e-01\\n1.01552248e-01 -1.54656112e-01 -2.58326709e-01 -1.72562785e-02\\n-1.40908092e-01 1.60292566e-01 1.99239299e-01 9.85759571e-02\\n-9.71991569e-03 -2.70168662e-01 -9.52287018e-02 2.83263028e-01\\n2.27325499e-01 5.30076444e-01 3.25276077e-01 -3.02395105e-01\\n9.08860564e-03 3.59911501e-01 -3.44047666e-01 4.29008007e-01\\n-2.24601761e-01 1.68019399e-01 -7.50843108e-01 -2.40666986e-01\\n-2.11343855e-01 -4.35440540e-01 8.60272050e-02 3.91547948e-01\\n2.22142518e-01 -1.29694402e-01 1.12035275e-01 -5.35770059e-01\\n2.52620637e-01 1.60501391e-01 1.57536358e-01 1.16571665e-01\\n1.89170819e-02 8.03890705e-01 3.34171914e-02 -2.73917437e-01\\n-8.35716501e-02 -1.12008698e-01 -1.69415355e-01 -2.98059821e-01\\n9.15458128e-02 -5.76527953e-01 -1.92599267e-01 4.95775580e-01\\n2.59527802e-01 -2.03906626e-01 -1.56955212e-01 4.00443196e-01\\n9.20535251e-02 -1.63568810e-01 -3.04475069e-01 2.07472444e-02\\n3.46435726e-01 2.22282410e-01 2.07079500e-01 -4.57917213e-01\\n7.59734511e-02 -1.87164042e-02 7.40832984e-02 5.10385811e-01\\n1.19772963e-01 1.73176035e-01 -1.33135423e-01 -1.08106695e-01\\n6.23073220e-01 -3.57004032e-02 -1.26348913e-01 -1.15352079e-01\\n6.24154918e-02 -2.11699843e-01 -4.13245767e-01 1.77062064e-01\\n-2.40097865e-02 -2.91811019e-01 -3.72824371e-02 8.21652859e-02\\n8.49321485e-02 -4.34110686e-02 -5.12257695e-01 -2.21369326e-01\\n-3.50958109e-01 8.81518945e-02 1.05297498e-01 -5.80127895e-01\\n1.06579503e-02 1.40259610e-02 -6.48246050e-01 2.72065580e-01\\n-2.96669994e-02 -5.63102886e-02 1.17539451e-01 2.62004256e-01\\n-1.98571980e-01 -1.58961296e-01 -5.69470599e-02 1.83247149e-01\\n-3.90571833e-01 -2.99286127e-01 -1.75035447e-02 -9.34062004e-01\\n1.71853587e-01 4.22835574e-02 -8.56328458e-02 2.07117945e-01\\n-5.90059310e-02 -7.98907340e-01 1.95966721e-01 -3.88288200e-01\\n-1.21175379e-01 9.82125327e-02 -2.54017830e-01 -4.51754510e-01\\n1.59220204e-01 -1.10466540e-01 -3.37890506e-01 3.76402617e-01\\n-4.57002968e-01 3.71221989e-01 -5.05173951e-02 1.06210209e-01\\n1.26843914e-01 -1.97136894e-01 1.61136359e-01 -1.57656342e-01\\n-4.97511506e-01 -3.45713317e-01 -4.75287974e-01 -3.89881462e-01\\n-2.83112992e-02 -2.24066168e-01 -9.84957963e-02 -6.42958581e-02\\n5.02590120e-01 1.45264044e-01 -1.26494780e-01 -3.33817512e-01\\n8.38093534e-02 -4.59947467e-01 9.15330350e-02 -1.88771158e-01\\n1.44005820e-01 -1.86749101e-01 2.21076518e-01 8.69511515e-02\\n2.67118096e-01 -3.71050954e-01 5.65755606e-01 -2.12933272e-01\\n-4.30961728e-01 -2.27934867e-01 1.18013928e-02 3.93436179e-02\\n4.40360397e-01 -4.04491425e-01 1.28662929e-01 2.76422024e-01\\n1.65384710e-01 -5.06761596e-02 1.80182651e-01 -2.21774384e-01\\n-1.85506806e-01 2.66259015e-01 -5.72373748e-01 2.21453711e-01\\n8.73465538e-01 6.74107745e-02 8.12394693e-02 2.64265060e-01\\n2.05502063e-01 3.32948625e-01 5.54694653e-01 -1.85809255e-01\\n-3.73299271e-02 3.71729910e-01 5.94576448e-02 -5.00359714e-01\\n-1.31443113e-01 -2.26514846e-01 -8.33870173e-02 -3.87444139e-01\\n6.19335592e-01 2.95332998e-01 -5.06209493e-01 -1.62708551e-01\\n-1.52464896e-01 -1.78997070e-01 4.44298476e-01 5.68569116e-02\\n-2.18178272e-01 1.29952803e-01 5.14284611e-01 -9.06663239e-02\\n5.07833958e-01 5.09405673e-01 -1.50221258e-01 -2.76394367e-01\\n-1.01828560e-01 2.35024661e-01 9.29994434e-02 3.31323534e-01\\n-8.53290781e-02 2.42065117e-01 4.02137935e-02 1.16411746e-01\\n-6.93861693e-02 7.96105266e-02 2.03276500e-01 5.57515770e-04\\n3.37550342e-01 4.46677841e-02 4.34267879e-01 4.32017863e-01\\n1.36831060e-01 4.14835811e-01 3.73750865e-01 -7.88264349e-03\\n3.76029909e-01 7.24507511e-01 3.35191429e-01 1.08177342e-01\\n1.50184901e-02 1.72399312e-01 1.07857168e-01 -6.51382208e-02\\n2.26049751e-01 4.18588281e-01 2.70249337e-01 8.94623458e-01\\n3.61055255e-01 3.82852554e-01 8.54125142e-01 -7.14063406e-01\\n-4.31648016e-01 -2.99029201e-02 6.46532059e-01 -4.24276710e-01\\n1.77340001e-01 1.83080971e-01 -1.69395387e-01 4.18025792e-01\\n-4.67446864e-01 -2.29021832e-01 5.58743440e-02 -1.22290947e-01\\n-5.06795943e-03 -1.37165979e-01 -8.23666900e-02 9.55618024e-02\\n-2.17605338e-01 -2.50391006e-01 -2.72849858e-01 -1.47425115e-01\\n-2.85533369e-01 6.34590536e-02 -3.36760394e-02 -9.75857452e-02\\n-1.67869851e-01 -3.55607152e-01 -1.75099179e-01 -8.56222883e-02\\n4.62106764e-01 -1.07539520e-01 -1.98552281e-01 -1.37285903e-01\\n2.61022866e-01 2.62023568e-01 6.33481145e-01 1.13468617e-01\\n1.51598603e-01 -2.82794178e-01 -2.37514406e-01 1.56066239e-01\\n1.21818386e-01 1.07063122e-01 2.46666297e-02 4.25145686e-01\\n-2.42717028e-01 -1.44384369e-01 4.34923954e-02 2.01778218e-01\\n-3.31542850e-01 -1.17973886e-01 -1.69854075e-01 1.13670230e-02\\n-7.16096312e-02 3.01677704e-01 -1.82160527e-01 4.24347892e-02\\n-1.76178515e-01 -6.07760906e-01 4.85590965e-01 -2.50517309e-01\\n-2.42493987e-01 -6.80154040e-02 3.62749308e-01 2.90805757e-01\\n-1.79727092e-01 5.68774715e-02 -9.17389244e-02 1.02060691e-01\\n4.40541506e-02 4.12335694e-01 -1.80485606e-01 -8.48594904e-02\\n-3.53601456e-01 3.13965261e-01 -5.67597374e-02 1.32554322e-01\\n2.00751312e-02 4.86556530e-01 3.36720236e-02 2.44152397e-02\\n3.67322087e-01 1.62006635e-03 -3.23244572e-01 -3.76704454e-01\\n-2.98058152e-01 -7.05660507e-02 1.00875124e-02 -5.33213019e-02\\n1.50426149e-01 -3.56803864e-01 -1.04211606e-02 -3.09646189e-01\\n-1.04591265e-01 -4.94546026e-01 -1.97232664e-01 -8.55736807e-02]]',\n", + " 'job_description': 'Join us at one of the fastest growing Platform Software Engineering Organizations in the world! With over twenty years’ experience of crafting market leading software, our business has been rapidly evolving and is now a global player in solving business challenges and developing tailor made cutting edge solutions. These challenges require a highly skilled workforce imagining, designing, engineering, and delivering software, through to business consulting services & customer experiences, which are changing the world around us. Within EPAM we establish a consultancy branch to help top-tier clients solve their most complex business and technology issues and to advise them on new technologies. As a Big Data Solution Architect, you will be responsible for conducting activities associated with selling core business consulting capabilities to leading organizations from different branches. Responsibilities Drive European Big Data Projects and provide technical guidance and solutions Develop proposals for implementation and design of scalable big data architecture Participate in customer workshops and presentation of the proposed solutions Design, implement, and deploy high-performance, custom applications at scale on Hadoop Define and develop network infrastructure solutions to enable partners and clients to scale NoSQL and relational database architecture for growing demands and traffic Define common business and development processes, platform and tools usage for data acquisition, storage, transformation, and analysis Develop roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning Review and audit of existing solution, design and system architecture Perform profiling, troubleshooting of existing solutions Create technical documentation Drive new business and get involved in pre-sales activities whilst overseeing and managing Big Data Architects and remote team members who are involved in key projects Requirements Solid experience in a Technical Leadership role Experience of driving large scale Big Data Architecture projects Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra Hands on experience of knowledge of programming and scripting languages such as Java, Python, Scala Experience with big data solutions developed in large cloud computing infrastructures such as Amazon Web Services, Elastic MapReduce or Pivotal Cloud Foundry Experience in client-driven large-scale implementation projects Data Science and Analytics experience is a plus (Machine Learning, Recommendation Engines, Search Personalization) Technical team leading and team management experience, deep understanding of Agile (Scrum), RUP programming process Strong experience in applications design, development and maintenance Solid knowledge of design patterns and refactoring concepts Practical expertise in performance tuning and optimization, bottleneck problems analysis Experience in Object-Oriented Analysis and Design Fluent oral and written English We offer Experience exchange with colleagues all around the world Competitive compensation depending on experience and skills Regular assessments and salary reviews Develop integration modules for interacting with new systems and applications Opportunities for self-realization Friendly team and enjoyable working environment Corporate and social events',\n", + " 'soft_skills': '[\"Leadership\", \"Troubleshooting (Problem Solving)\", \"Infrastructure\", \"Friendliness\", \"Management\", \"Integration\", \"Presentations\", \"Imagination\", \"Team Management\", \"Socialization\", \"Written English\", \"Consulting\"]',\n", + " 'hard_skills': '[\"NoSQL\", \"Tooling\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Performance Profiling\", \"Agility\", \"Apache Zookeeper\", \"Joint Application Design (JAD)\", \"Interactivity\", \"Analytics\", \"Project Architecture\", \"Machine Learning\", \"High Performance Computing\", \"Distributed Design Patterns\", \"Scale (Map)\", \"Application Development Languages\", \"Development Review\", \"Scala (Programming Language)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Python (Programming Language)\", \"Apache Mahout\", \"MongoDB\", \"Object-Oriented Analysis And Design\", \"Levelling\", \"Scrum (Software Development)\", \"Limiter\", \"Systems Architecture\", \"Apache Oozie\", \"Network Infrastructure\", \"Apache Flume\", \"Software Engineering\", \"Project Implementation\", \"NetApp Data Storage\", \"Recommendation Engine\", \"Data Science\", \"Web Services\", \"Customer Relationship Building\", \"Storages\", \"Apache Hive\", \"Personalization\", \"Cloud Foundry\", \"Develop Networks\", \"Scalability\", \"Big Data\", \"Amazon Web Services\", \"Predictive Modeling\", \"Technical Documentation\", \"Data Acquisition\", \"Adapter Scripting Language\", \"Auditing\", \"Transformation (Genetics)\", \"Civil Engineering Design\", \"Modulation\", \"Pre-Sales Engineering\", \"Performance Tuning\", \"Proposal Development\", \"Relational Databases\", \"Solution Design\", \"Customer Experience\", \"Apache HBase\", \"AWS Elastic MapReduce (EMR)\", \"Java (Programming Language)\", \"Cloud Computing\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Slovenian', 'Vietnamese', 'Limburgan', 'Quechua']\"},\n", + " {'company_id': '146',\n", + " 'job_title': 'research informatics specialist / database developer',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.92035639e-01 3.86220425e-01 4.07565117e-01 8.03528912e-03\\n6.32743657e-01 -6.34911731e-02 -7.13283420e-02 4.17888403e-01\\n-1.10924430e-01 -2.67973900e-01 -2.15668246e-01 -2.24999040e-01\\n-9.51278023e-04 1.94311887e-01 2.13638898e-02 5.24191022e-01\\n3.97081226e-01 2.47958452e-02 -1.07248932e-01 3.30916762e-01\\n-3.30548957e-02 -1.68005764e-01 5.43207340e-02 7.30952740e-01\\n4.77414966e-01 1.18765853e-01 -9.08243731e-02 1.52303427e-01\\n-2.36850291e-01 -1.90246642e-01 6.12211466e-01 4.22544740e-02\\n-1.71125948e-01 -2.53742903e-01 1.24197781e-01 1.17972992e-01\\n-3.02852035e-01 2.08643265e-02 -1.27807036e-01 1.18052229e-01\\n-4.71843839e-01 -4.90540043e-02 -1.07134253e-01 -2.71139126e-02\\n-3.27699661e-01 -3.40618908e-01 1.17366455e-01 -4.71054167e-02\\n6.90710768e-02 1.71797335e-01 -4.73424822e-01 1.92021430e-01\\n-3.73874724e-01 -2.34061286e-01 4.04410601e-01 5.89383245e-01\\n3.16265188e-02 -4.71717894e-01 -5.09424150e-01 -3.81161511e-01\\n2.28385478e-01 -1.83073759e-01 1.35912448e-01 -2.52667665e-01\\n5.12115121e-01 3.41269709e-02 4.73963618e-02 2.40403667e-01\\n-6.43390477e-01 -1.24668963e-02 -4.20312077e-01 1.01081878e-01\\n-3.72280717e-01 6.65026903e-03 -3.20138752e-01 -1.68002784e-01\\n-7.05576092e-02 3.29363912e-01 -4.67961021e-02 2.12387070e-01\\n-1.43143982e-01 3.14529419e-01 -2.81715214e-01 3.75292838e-01\\n1.05813578e-01 3.01526666e-01 2.72224456e-01 3.28688741e-01\\n-4.53426301e-01 3.88706475e-01 3.16058874e-01 -2.76486754e-01\\n2.24529997e-01 -2.80239657e-02 3.37568879e-01 1.39754236e-01\\n1.06087431e-01 5.16670085e-02 -1.62723333e-01 1.80539846e-01\\n1.53176695e-01 -1.34741887e-01 -8.05682540e-02 -9.32139233e-02\\n-4.99905981e-02 -1.02646619e-01 5.03224507e-03 2.35374361e-01\\n-4.87447083e-01 5.28153777e-01 1.37164682e-01 -3.20052594e-01\\n-5.57706468e-02 -5.34991384e-01 -8.15507248e-02 5.45640998e-02\\n-1.46221695e-03 1.07917473e-01 1.09547734e-01 2.56524563e-01\\n2.01232120e-01 -9.97447595e-02 1.94927514e-01 7.42993057e-01\\n-8.94927606e-03 -3.15624028e-02 -1.27754673e-01 4.22833323e-01\\n1.05754040e-01 -2.77935684e-01 2.38516688e-01 2.70531535e-01\\n-1.10747561e-01 -3.20461616e-02 -2.98808396e-01 2.71524727e-01\\n-1.44061238e-01 -2.87198782e-01 -2.25069404e-01 2.45411485e-01\\n-4.20720428e-02 -6.17655039e-01 5.80290973e-01 -2.36265272e-01\\n8.30746591e-02 -1.94785267e-01 1.74060129e-02 4.85786796e-03\\n-7.14626312e-02 2.16811165e-01 3.11761767e-01 1.50672302e-01\\n-3.49618167e-01 -3.28268707e-01 -1.47762805e-01 1.25419438e-01\\n-2.97836065e-01 2.15642124e-01 -2.47299969e-01 -2.63554692e-01\\n2.65985250e-01 3.12576741e-02 -4.37349588e-01 4.07057822e-01\\n-1.62746698e-01 -1.64087847e-01 -1.62665278e-01 3.89372498e-01\\n-1.47133335e-01 1.18668340e-01 -1.51080815e-02 -1.95698082e-01\\n5.10320187e-01 1.11569718e-01 2.85446465e-01 -2.45336890e-02\\n2.62920111e-01 -4.39264029e-02 2.96611011e-01 -1.20346956e-02\\n-7.55619526e-01 4.03647900e-01 -1.32230565e-01 -3.02851386e-03\\n9.89387482e-02 -6.11633323e-02 3.91752154e-01 -3.68685126e-01\\n5.93978018e-02 -1.13613598e-01 -2.57384956e-01 -3.07930350e-01\\n-2.17450649e-01 -4.75591198e-02 2.67317057e-01 -4.63357925e-01\\n3.08076255e-02 7.05614761e-02 -6.72998428e-01 -2.41917863e-01\\n1.62964970e-01 3.15787524e-01 1.32746041e-01 1.64464712e-01\\n-2.00396538e-01 -5.93012691e-01 1.52644783e-01 -5.27519226e-01\\n-2.55343199e-01 1.46887481e-01 -2.74865657e-01 1.38676345e-01\\n7.65193999e-02 -1.22246176e-01 -4.67924774e-02 4.87401746e-02\\n-3.23771298e-01 6.80467635e-02 1.78153038e-01 -3.27677988e-02\\n1.93350792e-01 1.61667645e-01 -3.45101297e-01 6.10336721e-01\\n-2.34722286e-01 5.17114043e-01 6.95211291e-02 -9.11433578e-01\\n4.65936661e-01 3.82437170e-01 5.16405106e-02 -3.24068964e-01\\n6.77571058e-01 -2.88225681e-01 -1.93932161e-01 1.47908598e-01\\n-4.18695867e-01 -1.96029708e-01 2.54825950e-01 -2.60639518e-01\\n-2.45324969e-01 6.58198357e-01 2.40361132e-02 3.31235453e-02\\n3.30992162e-01 -8.59492123e-02 -2.61031568e-01 2.91988961e-02\\n-2.39218310e-01 -1.56269670e-01 -6.02594733e-01 -1.43831614e-02\\n-9.01639760e-02 -4.59530234e-01 -1.47435337e-01 -4.87467170e-01\\n-6.72112554e-02 -3.69141549e-01 -7.66722262e-02 1.42204165e-01\\n1.34387746e-01 -1.69114247e-02 -1.02727935e-01 4.32174765e-02\\n-1.45980343e-01 -6.59959674e-01 6.32913336e-02 1.54216260e-01\\n2.32403159e-01 3.25814903e-01 1.30412817e-01 -1.54532976e-02\\n9.86851007e-03 6.42103553e-01 -4.37159359e-01 -3.29093039e-01\\n2.30180621e-01 1.67976260e-01 -3.38462591e-02 -1.35272175e-01\\n9.61650312e-02 2.17474550e-01 -3.56469989e-01 1.49102613e-01\\n-1.74457431e-01 5.74883968e-02 3.62328351e-01 -9.27984342e-02\\n-1.94858298e-01 -2.04539910e-01 -1.43770710e-01 1.66022748e-01\\n-5.32681465e-01 -3.40785861e-01 4.24327970e-01 1.16027907e-01\\n-4.28891331e-02 1.95342422e-01 2.04978779e-01 -4.33392189e-02\\n-3.56114537e-01 -2.48807773e-01 3.18668902e-01 1.16901875e-01\\n1.28991544e-01 1.62663698e-01 -5.23301587e-02 -5.25532603e-01\\n-3.00143528e+00 -8.11149329e-02 5.87056689e-02 -1.52209759e-01\\n4.67640817e-01 -9.94954631e-02 1.63779914e-01 9.09677520e-03\\n-4.31080520e-01 5.51628992e-02 -1.56413168e-01 -2.39156723e-01\\n1.52470931e-01 2.35894680e-01 1.73379391e-01 -2.49986891e-02\\n3.53061073e-02 -2.62085617e-01 7.24097937e-02 4.07846153e-01\\n-1.84075743e-01 -8.45931768e-01 8.87604505e-02 -5.61477654e-02\\n1.88608944e-01 2.86653340e-01 -4.49964195e-01 -1.46928579e-01\\n-3.58343184e-01 -2.83690512e-01 8.31647962e-02 -3.19610238e-01\\n-1.91841424e-01 3.52771759e-01 1.83749259e-01 -3.09100226e-02\\n-6.53880686e-02 -2.97655523e-01 -1.14515357e-01 -5.28890073e-01\\n1.48869023e-01 -7.18941808e-01 4.47421893e-03 -2.08917707e-02\\n7.25778759e-01 -1.65718436e-01 1.70224369e-01 -2.34906748e-03\\n1.43155605e-01 2.50931919e-01 2.04535022e-01 -7.27948248e-02\\n-3.44958365e-01 -2.14178950e-01 -1.87148899e-01 -1.52166069e-01\\n6.31017327e-01 2.33937860e-01 -3.17203283e-01 -5.73028922e-02\\n1.46029919e-01 -3.02116811e-01 -5.39647222e-01 -2.58256018e-01\\n-2.53433466e-01 -1.76352859e-02 -6.51888251e-01 -5.76596260e-01\\n-1.20697245e-01 -1.62599146e-01 1.74302775e-02 6.27195716e-01\\n-3.06280226e-01 -2.05531433e-01 -2.29802459e-01 -6.20781779e-01\\n3.44153166e-01 -2.23517522e-01 4.87934500e-02 -2.20480770e-01\\n-2.04871982e-01 -3.97450328e-01 1.27923384e-01 1.02319032e-01\\n-1.27850443e-01 -7.73301274e-02 6.14074692e-02 -2.25047529e-01\\n-4.43062693e-01 -6.31223202e-01 3.76674026e-01 1.33534059e-01\\n4.03230786e-01 1.28668249e-01 2.04534948e-01 -4.48666848e-02\\n3.35637987e-01 1.21953227e-02 -1.85466558e-03 -4.77652013e-01\\n7.23586231e-02 1.05379954e-01 5.61612606e-01 -1.07055150e-01\\n-1.26236528e-02 -8.76735151e-02 -1.58081710e-01 -7.08372146e-02\\n3.22866559e-01 -1.03925169e-01 1.77090451e-01 -2.16778368e-01\\n3.62610102e-01 -3.51175964e-01 -8.92546475e-02 1.71019062e-02\\n7.61184841e-02 6.64808273e-01 -2.38643475e-02 -3.17440569e-01\\n-9.87115800e-02 4.73976254e-01 -1.35813653e-01 1.62610412e-02\\n-2.15995312e-01 4.63198647e-02 -2.06366360e-01 2.84526646e-01\\n9.81974602e-02 -1.90055132e-01 -1.65627807e-01 4.62927781e-02\\n-1.13532946e-01 2.50194669e-01 2.87854522e-01 3.10139775e-01\\n-5.00103384e-02 -3.52158219e-01 -6.88751563e-02 1.91493332e-01\\n2.75877833e-01 4.24932867e-01 1.51266426e-01 -2.95431376e-01\\n-2.42408179e-02 3.72765809e-01 -1.49522215e-01 3.71442735e-01\\n-4.14337963e-02 1.71590090e-01 -5.73871970e-01 -2.19830126e-01\\n-2.93628931e-01 -2.99599111e-01 1.00657299e-01 3.01959634e-01\\n1.42681688e-01 -1.65320545e-01 1.64791197e-03 -3.97616088e-01\\n1.95063531e-01 1.16284773e-01 2.85268515e-01 -5.34179173e-02\\n-3.54737639e-02 7.89307475e-01 2.06754319e-02 -2.21289277e-01\\n-6.51078522e-02 1.09167799e-01 -1.77158594e-01 -8.95838588e-02\\n9.23587605e-02 -4.64552611e-01 -2.01632023e-01 4.20979977e-01\\n1.66213274e-01 5.81009872e-02 -2.50980854e-01 3.68870229e-01\\n-5.35789691e-02 -2.82408774e-01 -2.31910855e-01 1.57501921e-02\\n2.90084124e-01 1.68188840e-01 2.80701280e-01 -6.24492824e-01\\n7.68230781e-02 -2.21016519e-02 1.21226221e-01 3.07293594e-01\\n6.91603050e-02 3.58635113e-02 -5.77671751e-02 -2.29589790e-01\\n3.74822855e-01 6.28692657e-02 -9.16502923e-02 1.84599429e-01\\n1.38396338e-01 -2.10568637e-01 -3.81462097e-01 -1.03998855e-01\\n-1.42742813e-01 -1.95949554e-01 2.87568457e-02 1.05026685e-01\\n1.30197912e-01 3.01684253e-02 -5.25095224e-01 -1.01510882e-01\\n-3.23402196e-01 1.09685160e-01 -1.18329883e-01 -5.96621513e-01\\n-6.72329543e-03 -7.42948949e-02 -5.57068706e-01 2.06260502e-01\\n-3.27496752e-02 4.30084988e-02 2.79854774e-01 -8.23044032e-03\\n-2.56573379e-01 -2.45864391e-01 2.78400779e-01 1.17217578e-01\\n-2.59666502e-01 -2.27197871e-01 -2.10608542e-02 -9.08997118e-01\\n1.69066265e-01 -1.20041400e-01 -2.41821200e-01 1.26147360e-01\\n2.00095311e-01 -6.89906478e-01 1.62727967e-01 -3.65013838e-01\\n-2.37347081e-01 2.40440723e-02 -2.97475636e-01 -2.83253282e-01\\n1.46413416e-01 -4.31427509e-02 -1.09821014e-01 3.24929595e-01\\n-3.51225019e-01 5.00203967e-01 -8.32446590e-02 2.56317910e-02\\n5.84359281e-03 -2.44014978e-01 4.40727547e-02 -2.68578589e-01\\n-3.82785887e-01 -1.39558673e-01 -1.86697692e-01 -2.91899055e-01\\n-2.70579234e-02 -2.13389054e-01 -1.85109437e-01 6.41344935e-02\\n4.34806228e-01 2.72230133e-02 -3.48896205e-01 -4.80761379e-02\\n7.82155842e-02 -3.80838513e-01 1.66475564e-01 -2.26417214e-01\\n-6.24145195e-02 -1.61212787e-01 3.93589377e-01 1.43099517e-01\\n2.81533360e-01 -2.71564871e-01 4.16806489e-01 -3.40347290e-01\\n-4.27438915e-01 -9.51338857e-02 2.13105395e-01 7.43338652e-03\\n2.70239472e-01 -5.73266506e-01 -1.57410681e-01 4.22321856e-01\\n5.30598871e-02 2.70774197e-02 2.80495763e-01 -2.14619666e-01\\n-1.31270438e-01 2.00026140e-01 -4.50578630e-01 6.26445711e-02\\n8.00182939e-01 3.41739506e-01 2.46006101e-01 1.96972042e-01\\n9.73748788e-02 1.49718255e-01 4.81597155e-01 -5.06434478e-02\\n-1.12329654e-01 4.72215950e-01 1.96130931e-01 -4.78939205e-01\\n-2.43596226e-01 5.00988960e-03 -9.80432928e-02 -4.55826223e-01\\n6.24051213e-01 2.32181132e-01 -4.55539137e-01 -3.23730767e-01\\n-2.11984813e-01 -1.40125230e-01 3.78260553e-01 -9.07403007e-02\\n1.16642639e-01 -1.47345185e-01 3.78307909e-01 3.52733880e-02\\n2.29079783e-01 5.33584416e-01 -1.93880126e-01 -2.05068529e-01\\n-3.65419537e-02 2.87173718e-01 6.95160329e-02 2.86004722e-01\\n-1.18750066e-01 2.79392838e-01 5.09326234e-02 1.99830025e-01\\n-2.21859738e-01 -7.81957731e-02 1.25862524e-01 -2.33776122e-03\\n7.08826035e-02 1.89220488e-01 5.02868295e-01 4.28572476e-01\\n3.46468419e-01 4.13705349e-01 2.90815711e-01 -4.12595496e-02\\n4.66197729e-01 5.95798135e-01 3.22512954e-01 -1.35695606e-01\\n4.64709625e-02 1.71017259e-01 9.53719765e-02 3.86827067e-02\\n2.82550544e-01 3.50124359e-01 -6.73515871e-02 8.43158126e-01\\n2.15488732e-01 4.61969733e-01 5.46828628e-01 -5.44191062e-01\\n-2.68077314e-01 8.39621723e-02 5.83870530e-01 -5.50147057e-01\\n9.00392830e-02 1.82498500e-01 -1.93753436e-01 1.67189538e-01\\n-5.03936410e-01 -2.40676224e-01 -9.81894135e-03 3.43457907e-02\\n9.12998170e-02 -9.18445885e-02 -1.48778334e-01 4.07720506e-02\\n-1.94667816e-01 -1.78049907e-01 -3.80007863e-01 -3.52420330e-01\\n-1.49008065e-01 2.58864947e-02 -6.45438861e-03 -1.82302386e-01\\n-7.50437006e-02 -2.01419562e-01 8.68203491e-03 -5.81890531e-03\\n3.04290116e-01 -8.71132463e-02 -1.68301284e-01 -6.46725520e-02\\n4.11005974e-01 2.15405211e-01 7.54752994e-01 -1.96321711e-01\\n5.32417148e-02 -2.12653160e-01 -1.80869758e-01 8.20325911e-02\\n1.02166981e-01 -1.64127015e-02 -1.40687451e-02 4.97121006e-01\\n-2.39564508e-01 -2.51723200e-01 1.82563737e-02 2.92479098e-01\\n-3.72210145e-01 1.40905790e-02 1.85007975e-03 8.52214918e-02\\n-1.49593338e-01 9.29206535e-02 -2.50450671e-01 2.34969705e-03\\n-1.26638994e-01 -5.10983586e-01 2.72343397e-01 -8.10499638e-02\\n-2.83628851e-01 -6.02121018e-02 4.57553983e-01 2.89178908e-01\\n-2.32480898e-01 -9.15726423e-02 -1.50532722e-01 9.83977988e-02\\n1.52644143e-02 3.08106035e-01 -2.15783507e-01 -2.17502892e-01\\n-3.54185820e-01 1.43992126e-01 -1.63750678e-01 2.09484100e-01\\n8.71235877e-03 5.34455657e-01 8.66147429e-02 2.70550177e-02\\n4.19451654e-01 -1.73587218e-01 -3.03788245e-01 -3.08557689e-01\\n-1.94326743e-01 -9.68829244e-02 -4.10973802e-02 -2.21362859e-02\\n2.92244136e-01 -2.53089726e-01 -1.63649052e-01 -4.19357419e-01\\n-7.52192438e-02 -4.50494349e-01 -4.89210635e-02 1.04292445e-02]]',\n", + " 'job_description': 'We are a Life Science and IT service provider that has been successfully carrying out \\'state-of-the-art\\' projects for international customers for more than 25 years. Our consultants mainly work on our customer\\'s premises, integrated in the customer\\'s project team. We pride ourselves on being a dynamic forward thinking organization and we are looking for like-minded individuals that are driven by ambition and highly motivated by challenging jobs, as well as financial incentives. With our attractive compensation and benefits model, this is a great opportunity to maximize your earning potential. The further development of our colleagues and team members as well as an excellent work atmosphere are amongst the top values of our company. Our group \"Research & Lab IT” is seeking professionals with the below mentioned profile. Mission: The objective of the mission is to support the implementation and maintenance of the Corporate Preclinical Database and related systems for the collection, processing, analysis and registration of all chemical and biological information gathered during projects (e.g. ELN, Inventories, Data Analysis and Visualization). Main tasks: Supports scientists in the definition and maintenance of a standardized data organization and related dictionaries and prepares guidelines for chemical and biological data collection, processing, and analysis Participates to the design, development, implementation, support and maintenance of the corporate preclinical database and related systems (ELN, Inventories, Data Analysis and Visualization) Supports the timely submission (including preparation and curation as needed) of the data to local and corporate databases Manages data in the corporate preclinical corporate database and related systems Designs, develops and maintains tools supporting and automating data workflows from collection to analysis. Maintains software and database documentation. Organizes regular trainings and supports discovery and preclinical staff on the corporate preclinical database and related systems Familiarises himself/herself with the resources available in other parts of the organisation and is aware of the strategic importance of his/her project work with respect to goals. Ensures when needed, the validation of software and databases as required by international regulations. Responsible for the security of sensitive data, takes appropriate actions to prevent unauthorised access from outside or within the company. Manages relationships with solution and resource providers Qualification & Experience: Education: Bachelor or Master degree in Computer Science, Biology, or Chemistry Professional Skills & Experience: Has expertise in Computer Science applied to Life Sciences (Chemistry, Biology, Pharmacology) Is at ease with web software development, database management systems (preferably Oracle) and data analysis, independently of platform or language. Is familiar with configuration and customization of commercial research and preclinical data management systems (preferably Dotmatics software suite) Has at least 3 years of practical experience in industry or academic institutions, in charge of a scientific informatics platform/database development and management of research database for Life Science Has experience in web server and database administration Has experience in IT project management Communication & Interpersonal Skills: Writes internal/external reports and software documentation. Communicates effectively with supervisor or any other scientist relevant to the project as needed. Is able to explain his work to non IT specialists Is capable of making oral communications to international standards. Fluency in English is mandatory, French would be an asset Is able to adapt to a research environment: understanding of scientific issues and their specific requirements. Trains collaborators on the usage of scientific software. May supervise the work of external staff (solution vendors). ',\n", + " 'soft_skills': '[\"Research\", \"Writing\", \"Adaptability\", \"Professionalism\", \"Collaboration\", \"Management\", \"Supervision\", \"Communications\", \"Integration\", \"Information Gathering\", \"Relationship Management\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Web Servers\", \"Automation\", \"Pharmacology\", \"Tooling\", \"Accessioning\", \"Computer Science\", \"Life Sciences\", \"Data Management\", \"Collections\", \"Database Development\", \"Informatics\", \"Industrialization\", \"Survey Data Collection\", \"Visualization\", \"Software Suite\", \"Requirements Specifications\", \"Maintainability\", \"E (Programming Language)\", \"Registration\", \"Database Administration\", \"Software Documentation\", \"International Standards\", \"Biology\", \"Management Systems\", \"Corporate Data Management\", \"Electronic Data Processing\", \"Survey Data Analysis\", \"Validations\", \"Systems Design\", \"Chemistry\", \"Service Provider\", \"Software Development\", \"Project Management\", \"Resourcing\", \"Workflows\", \"Curation\", \"Database Management Systems\", \"Commercialization\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Avestan']\"},\n", + " {'company_id': '122',\n", + " 'job_title': 'application scientist, chemical ionization mass spectrometry',\n", + " 'location': 'Thun',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.22071165e-01 3.35994661e-01 4.83776540e-01 -6.40972853e-02\\n6.11253023e-01 -7.13514015e-02 -1.14054918e-01 1.98036522e-01\\n1.12699583e-01 -2.06944034e-01 -1.58244222e-01 -3.54309440e-01\\n2.49078125e-02 2.25402951e-01 7.10181594e-02 6.34336233e-01\\n3.25270057e-01 5.24713621e-02 4.69298139e-02 4.38917756e-01\\n9.60446000e-02 -1.46910578e-01 1.38095424e-01 7.59765983e-01\\n3.24976802e-01 -2.94832662e-02 -4.38018888e-02 1.22776538e-01\\n-1.77218154e-01 -2.16217875e-01 5.02378941e-01 9.38742235e-02\\n-2.22176850e-01 -4.03737217e-01 9.49825048e-02 2.32561350e-01\\n-2.25547686e-01 -2.98123956e-02 -1.24865249e-01 1.93640873e-01\\n-6.83146060e-01 -3.22210491e-01 4.83767800e-02 -6.82667047e-02\\n-2.93613076e-01 -3.39217901e-01 1.45096183e-01 -1.12511292e-01\\n2.76587382e-02 1.45025745e-01 -4.27522898e-01 2.11642951e-01\\n-1.87756449e-01 -2.60515660e-01 3.73523861e-01 8.18408966e-01\\n-2.92102545e-02 -5.68019032e-01 -4.50492203e-01 -2.96409249e-01\\n1.07475119e-02 -1.24969650e-02 8.14223215e-02 -3.71924520e-01\\n4.69474673e-01 4.97827865e-02 -3.50979343e-03 2.19129920e-01\\n-7.30725646e-01 -2.13264644e-01 -3.03966403e-01 1.61905855e-01\\n-4.08347398e-01 4.16619927e-02 -1.48494124e-01 -1.34820372e-01\\n-8.88818949e-02 3.99366617e-01 -8.53884891e-02 8.67198110e-02\\n-3.45002525e-02 3.27037930e-01 -2.68398166e-01 3.53007913e-01\\n2.10795075e-01 1.39860064e-01 2.86855876e-01 2.88504630e-01\\n-2.99485713e-01 4.43927169e-01 1.62827209e-01 -2.95417964e-01\\n2.14850798e-01 4.97248173e-02 3.65435719e-01 -5.71940653e-02\\n1.89987376e-01 1.07137293e-01 -3.54181767e-01 2.38421440e-01\\n2.66428292e-01 -2.44015634e-01 3.65765579e-02 -9.35238600e-02\\n6.67725131e-02 2.26250626e-02 -2.73920931e-02 1.54613601e-02\\n-5.24358511e-01 4.52765703e-01 1.46474883e-01 -2.14989126e-01\\n-5.19621857e-02 -5.93617141e-01 -1.56798974e-01 -1.37796532e-02\\n-6.69724271e-02 8.90561342e-02 4.62685786e-02 1.77838862e-01\\n3.26121300e-01 1.20813958e-02 9.50876772e-02 8.72025311e-01\\n2.41289437e-02 8.79597515e-02 -5.67165613e-02 4.61607456e-01\\n5.15877455e-02 -2.40077183e-01 2.97346979e-01 9.03361440e-02\\n-3.11097074e-02 -1.03263885e-01 -2.22860560e-01 2.63914824e-01\\n-1.02852240e-01 -3.23492259e-01 -2.59753287e-01 3.29096258e-01\\n-1.74353197e-02 -4.56009716e-01 5.22334278e-01 -1.96926221e-01\\n7.77562410e-02 -1.05281353e-01 -5.14109358e-02 -3.26890908e-02\\n-1.44234210e-01 2.15448797e-01 1.81884229e-01 1.24584571e-01\\n-2.91880339e-01 -2.07166284e-01 -1.68662578e-01 7.95932636e-02\\n-2.74402499e-01 2.47937605e-01 -2.39675030e-01 -1.61837593e-01\\n2.73200095e-01 1.93460882e-02 -4.42898840e-01 2.58858263e-01\\n-1.01767957e-01 -1.36146277e-01 -8.04063827e-02 4.65727776e-01\\n-2.59148479e-01 2.08761364e-01 2.87646018e-02 -2.04146594e-01\\n6.17075503e-01 4.15205546e-02 2.51093328e-01 -6.53549582e-02\\n2.86037147e-01 -1.47970736e-01 2.42254108e-01 2.09540769e-01\\n-6.48887277e-01 4.47108328e-01 -8.04359540e-02 -1.30039364e-01\\n3.79298851e-02 -1.66308314e-01 5.29851019e-01 -3.41786265e-01\\n-7.15541467e-02 -1.97946444e-01 -3.24780196e-01 -3.81483734e-01\\n-3.14209044e-01 -8.85766521e-02 3.07037562e-01 -3.65383625e-01\\n5.35375997e-02 1.01774052e-01 -5.69337010e-01 -2.89981008e-01\\n2.08624199e-01 2.59375304e-01 2.13857174e-01 1.68030396e-01\\n-2.40718067e-01 -6.50057316e-01 7.35826194e-02 -5.34984350e-01\\n-7.20526129e-02 8.34865049e-02 -2.83299446e-01 2.65487105e-01\\n7.77441487e-02 -4.36626263e-02 -1.96749061e-01 5.85632250e-02\\n-3.24441493e-01 1.49356484e-01 6.86924532e-02 5.87357320e-02\\n2.13346779e-01 1.27405956e-01 -3.84200364e-01 4.62790132e-01\\n-2.50309169e-01 5.30068517e-01 5.39943501e-02 -9.67972815e-01\\n5.16683519e-01 5.74802756e-01 5.30515127e-02 -4.01740909e-01\\n6.12028360e-01 -4.48840499e-01 -2.18429625e-01 1.43864572e-01\\n-3.92809629e-01 -7.81859681e-02 3.13722670e-01 -3.24343204e-01\\n-2.43544191e-01 6.64350629e-01 1.92120746e-01 2.01540589e-01\\n3.75425965e-01 -1.15122199e-01 -1.61432792e-02 1.35955065e-01\\n-1.45501152e-01 -1.76568642e-01 -5.07044435e-01 -7.47955143e-02\\n-1.20463520e-01 -4.73117054e-01 -8.90543759e-02 -4.81914520e-01\\n-1.58354104e-01 -2.90354818e-01 -7.60099813e-02 7.71325678e-02\\n1.90583169e-01 5.43439649e-02 1.46061212e-01 1.96301639e-02\\n-1.07335329e-01 -7.67278850e-01 1.18593358e-01 -1.57433599e-02\\n2.44572103e-01 2.84206092e-01 1.87653422e-01 8.72246325e-02\\n-1.23348963e-02 5.44273973e-01 -5.19644678e-01 -3.17016423e-01\\n8.69193673e-02 6.35529906e-02 -1.75551996e-01 -1.36884004e-01\\n2.58261323e-01 2.67141849e-01 -2.94593900e-01 1.47626251e-01\\n-1.76367611e-01 3.75982672e-02 3.81409824e-01 -2.53120251e-02\\n-2.25336194e-01 -1.46812513e-01 -1.55685738e-01 6.15317933e-02\\n-4.97732550e-01 -2.56312937e-01 2.71816611e-01 1.56659577e-02\\n1.72362819e-01 2.60542303e-01 2.10443199e-01 -5.83785623e-02\\n-3.64409864e-01 -3.83100927e-01 2.14357316e-01 1.83322728e-01\\n-1.80672258e-02 6.76504672e-02 -1.29908741e-01 -6.54375613e-01\\n-2.79908323e+00 -1.23159684e-01 3.50847542e-02 -1.53656602e-01\\n4.65550214e-01 -1.09387070e-01 1.96244806e-01 -8.46396685e-02\\n-4.14233088e-01 1.64728284e-01 -2.14522690e-01 -2.35280752e-01\\n9.66513455e-02 5.62695563e-02 1.90110996e-01 4.68250588e-02\\n-1.06818303e-02 -4.07430887e-01 1.57529533e-01 4.34014946e-01\\n-5.00358976e-02 -7.59915829e-01 1.07479513e-01 4.87836078e-02\\n2.62701094e-01 2.17019558e-01 -5.97976029e-01 -7.68634379e-02\\n-3.27123761e-01 -2.30037183e-01 1.35682285e-01 -3.72972488e-01\\n-1.75831258e-01 2.31695116e-01 2.41476491e-01 -8.81463103e-03\\n-5.15482426e-02 -3.78988206e-01 -8.20081234e-02 -4.45041806e-01\\n7.43470490e-02 -6.34494662e-01 -3.65943983e-02 -7.86084384e-02\\n6.89913750e-01 -1.32354721e-01 2.04089046e-01 1.17671430e-01\\n1.10012017e-01 2.63050109e-01 2.31961489e-01 7.93322474e-02\\n-1.25771239e-01 -2.11531669e-01 -5.65928556e-02 -1.08543336e-01\\n4.80061769e-01 4.26655352e-01 -1.76116854e-01 -1.07978091e-01\\n1.82572436e-02 -3.59977007e-01 -7.17721581e-01 -4.23244908e-02\\n-3.46820623e-01 -5.78375757e-02 -7.69396186e-01 -3.59955430e-01\\n-6.20905459e-02 -2.11180151e-01 -5.68541884e-02 7.70458937e-01\\n-3.83617759e-01 -2.70362854e-01 -2.83906981e-02 -6.00602150e-01\\n3.28278601e-01 -2.22286701e-01 3.72322947e-02 -7.73643926e-02\\n-3.45586002e-01 -4.55108136e-01 1.48932084e-01 -6.09154254e-03\\n-1.60074204e-01 -2.51260817e-01 1.95340980e-02 -1.94570482e-01\\n-4.47593063e-01 -6.62861228e-01 4.03402686e-01 1.07800528e-01\\n3.88790488e-01 -1.27314180e-02 2.01849699e-01 -9.46250558e-02\\n3.28960717e-01 9.95439813e-02 1.17847554e-01 -4.43078339e-01\\n-3.04384679e-02 -1.22414287e-02 5.69319844e-01 -2.56601453e-01\\n-1.59537066e-02 -6.56263530e-02 -3.97187054e-01 -1.36839375e-01\\n2.84766197e-01 -7.85306543e-02 5.17561734e-02 -1.75073758e-01\\n2.64304042e-01 -2.89100647e-01 5.40050771e-03 1.57532096e-01\\n7.65489414e-02 7.85804272e-01 6.28712997e-02 -3.18475664e-01\\n-8.42032731e-02 3.53727639e-01 -1.08276501e-01 9.22434498e-03\\n4.87649217e-02 -7.09222117e-03 -3.20107073e-01 3.88561428e-01\\n-5.38056307e-02 -9.08005387e-02 -2.26392925e-01 -2.58532651e-02\\n-2.41315290e-01 4.11914945e-01 3.72470349e-01 3.22843254e-01\\n-2.25378826e-01 -3.69885445e-01 -1.32335916e-01 3.15627038e-01\\n1.45535111e-01 3.18097115e-01 2.13341445e-01 -2.45503902e-01\\n1.10960584e-02 3.68367732e-01 -1.77435786e-01 2.88998038e-01\\n-1.31619781e-01 8.66411775e-02 -5.51874220e-01 -1.51292235e-01\\n-3.13471854e-01 -3.47445786e-01 1.79899424e-01 4.33494151e-01\\n1.77767158e-01 -1.51875600e-01 1.64088011e-01 -5.00433564e-01\\n2.39484161e-01 1.53381437e-01 1.93355709e-01 -1.35048945e-02\\n-1.69267833e-01 5.87525427e-01 -1.05123676e-01 -9.58819315e-02\\n5.59639037e-02 -3.30140628e-02 -2.89241403e-01 -3.77500772e-01\\n1.63769469e-01 -5.40195405e-01 -1.60197005e-01 3.98302853e-01\\n1.51308447e-01 -1.69362992e-01 -2.08383128e-01 3.18847239e-01\\n-3.85672152e-02 -2.93277323e-01 -3.83144975e-01 5.28388098e-02\\n3.46008599e-01 1.76176548e-01 2.76199818e-01 -5.93356729e-01\\n1.36092573e-01 -3.31758671e-02 -5.41806966e-02 4.04620796e-01\\n-8.13515484e-02 7.18372390e-02 -4.35290575e-01 -3.05844545e-01\\n3.99080575e-01 -3.93500552e-02 -5.99032752e-02 -1.40683949e-02\\n5.55592403e-02 -2.32374951e-01 -2.94043571e-01 4.44828197e-02\\n-2.51961462e-02 -2.44572848e-01 -2.79224068e-02 1.34612918e-01\\n7.48762265e-02 -3.06981094e-02 -5.54868817e-01 -1.32118642e-01\\n-7.72951692e-02 1.74364805e-01 -2.53934823e-02 -4.29614663e-01\\n-7.62047842e-02 -1.45285934e-01 -4.00995523e-01 2.15944916e-01\\n-6.63143098e-02 -1.86884701e-01 2.11304754e-01 -1.59485079e-02\\n-2.73282498e-01 -2.20773190e-01 1.90122157e-01 1.66708380e-01\\n-3.21528465e-01 -2.35284761e-01 -1.25715539e-01 -8.77228022e-01\\n1.23679921e-01 -8.38333368e-02 -1.15303196e-01 2.43682876e-01\\n1.94252953e-02 -8.22788477e-01 2.11156607e-01 -2.09233195e-01\\n-2.74240002e-02 -8.52119252e-02 -2.64390945e-01 -2.24004343e-01\\n7.98411220e-02 1.93789322e-02 8.32750201e-02 2.76013434e-01\\n-2.44845241e-01 4.74416971e-01 -1.55817166e-01 -9.30967629e-02\\n-9.56344083e-02 -2.40649492e-01 2.41330832e-01 -3.32357526e-01\\n-3.92562091e-01 -1.56487405e-01 -2.26712108e-01 -2.20085114e-01\\n-2.16433525e-01 -1.89405039e-01 -1.64508730e-01 3.49242017e-02\\n4.08531964e-01 5.83917871e-02 -2.20097825e-01 -1.49208412e-01\\n8.54256302e-02 -3.25875998e-01 1.03538074e-01 -1.10601783e-01\\n1.26354754e-01 -5.08532189e-02 1.33721307e-01 2.46858120e-01\\n1.36273786e-01 -3.07841659e-01 3.82927120e-01 -4.35529888e-01\\n-4.98367727e-01 -1.56510159e-01 1.69563949e-01 -1.53531507e-03\\n3.58934402e-01 -3.51289213e-01 -2.13212013e-01 3.15565348e-01\\n-5.50941154e-02 -8.40158984e-02 3.95422101e-01 -2.20634609e-01\\n-2.09009275e-01 1.79741129e-01 -4.30357277e-01 2.04788595e-01\\n8.30743194e-01 3.25510085e-01 1.74998604e-02 1.40910268e-01\\n6.87763542e-02 3.28109562e-01 5.60177028e-01 -5.66273369e-02\\n6.07278338e-03 3.23202938e-01 2.27420866e-01 -4.17084992e-01\\n-1.96479812e-01 -1.53758824e-01 -1.02760829e-03 -4.64945912e-01\\n4.90882397e-01 3.19201469e-01 -2.79180944e-01 -2.14740127e-01\\n-2.88104683e-01 -2.05734491e-01 2.90126204e-01 -3.75250317e-02\\n6.63378611e-02 -5.83293512e-02 5.44876158e-01 -6.81349337e-02\\n1.47334024e-01 5.05152822e-01 -2.01801166e-01 -2.61362076e-01\\n-1.75539464e-01 2.03189760e-01 1.61162660e-01 4.23275590e-01\\n-1.12217359e-01 3.14255595e-01 -1.33299038e-01 1.83682948e-01\\n-1.95814580e-01 8.43852535e-02 1.50031224e-01 -2.68648528e-02\\n-8.52944255e-02 2.45723158e-01 4.08645660e-01 4.48904812e-01\\n4.09840196e-01 3.92711341e-01 2.93104261e-01 2.12088395e-02\\n5.03329754e-01 5.60217023e-01 2.39641666e-01 4.66271304e-02\\n5.99698536e-03 1.61154702e-01 9.89949405e-02 3.42507884e-02\\n4.10280645e-01 2.69631863e-01 1.11378603e-01 9.16861653e-01\\n2.13574246e-01 4.45441425e-01 7.33426094e-01 -6.49558902e-01\\n-3.66797984e-01 5.95637560e-02 4.31729555e-01 -5.58744371e-01\\n3.28731090e-02 1.96207166e-01 1.88608933e-02 2.29131699e-01\\n-5.27038932e-01 -1.88437074e-01 2.89539713e-02 1.14500336e-01\\n1.81479037e-01 -9.59135368e-02 -1.35038614e-01 2.36179009e-01\\n-2.82172322e-01 -2.62147784e-01 -4.30314124e-01 -2.33607978e-01\\n-2.64321178e-01 8.98233149e-03 -3.46091688e-02 -1.02093562e-01\\n-5.33997826e-02 -2.47440755e-01 8.31302404e-02 -6.23095147e-02\\n3.76782954e-01 -1.79653257e-01 -1.76410705e-01 -8.13263729e-02\\n7.08274484e-01 1.16025582e-01 5.89377761e-01 -9.00212824e-02\\n9.20626372e-02 -2.85596848e-01 -2.28821635e-01 1.02161586e-01\\n1.76186681e-01 1.87908232e-01 5.90837048e-03 4.18738365e-01\\n-2.38294661e-01 -6.98183253e-02 4.01096791e-02 3.08326930e-01\\n-2.65782952e-01 -1.15349948e-01 -1.95698112e-01 -6.09375015e-02\\n-3.13130207e-02 1.85329616e-01 -1.64328247e-01 1.20316356e-01\\n3.74259166e-02 -5.07009983e-01 3.77264142e-01 -4.61399332e-02\\n-3.29699874e-01 1.29200742e-02 4.16063130e-01 2.55316556e-01\\n-8.87309909e-02 -3.49061452e-02 -1.18126377e-01 1.64474785e-01\\n2.93811113e-02 3.67938459e-01 -1.11943677e-01 -4.43264812e-01\\n-4.05919790e-01 1.78947031e-01 -2.66234577e-01 1.12964772e-03\\n6.46589026e-02 4.32083786e-01 -2.48052292e-02 8.70360062e-02\\n4.95590389e-01 -1.95871115e-01 -2.87681282e-01 -4.21056271e-01\\n-1.87379614e-01 -2.11080045e-01 -1.12561956e-01 -5.73445633e-02\\n1.99748904e-01 -3.09953570e-01 -2.45363235e-01 -4.99587715e-01\\n8.14421773e-02 -2.94173717e-01 -3.18146124e-03 -3.42493095e-02]]',\n", + " 'job_description': 'Headquartered in Thun, Switzerland, TOFWERK aims to bring the advantages of our time-of-flight technology to new markets and applications. With team members in Switzerland, Germany, China and the United States, we offer a family of end-user research products and custom instrument designs for OEM partners and research laboratories. TOFWERK is seeking an analytical scientist to develop and demonstrate new applications of our chemical ionization (CI) time-of-flight mass spectrometers (TOFMS), with emphasis on the Vocus PTR-TOF. The scientist will work within our Applications Department in support of our Vocus PTR-TOF and API-TOF product teams. He/she will be independently tasked with increasing the breadth and quality of analyses based on these instruments. The scientist will be active in relevant scientific communities in order to stay updated on trends and advances and to engage potential customers and collaborators. As the company’s expert on CI-TOFMS applications, he/she will communicate the capabilities of TOFWERK technology to prospective customers; lead product demonstrations; represent TOFWERK at international scientific meetings; support the Marketing Department in the production of technical promotional material; and formally present data in conference presentations, research reports, application notes, and peer-reviewed publications. He/she will work with other members of the Applications Department to ensure that all analyses at TOFWERK utilize the best available methods and technology. Based on his/her knowledge of the field and use of TOFWERK technology, the application scientist will provide suggestions and feedback to the Software and R&D Departments regarding potential short- and long-term product improvements and developments. Requirements PhD in Analytical Chemistry or related field 4+ years of experience using mass spectrometry for applied research or sample analysis, including method development Ability to work independently in the laboratory, including: experiment design, sample preparation, operation of scientific equipment, and data interpretation Strong background in data analysis, including statistics and spectral interpretation Interest in interacting with customers and prospective customers Confident and effective communicator Willingness to travel up to 30% per year for scientific conferences and customer site visits at European and international locations Fluency in English Desirable Experience and Expertise Use of any of the following: PTR-MS, chemical ionization MS, TOFMS, real-time trace gas analyzers Expertise in any of the following fields: biogenic VOCs, forensics, fragrances, flavors, breath analysis, atmospheric science Experience running and characterizing prototype scientific equipment Familiarity with any of the following: high vacuum systems, ion optics, ion-molecule reaction chemistry Competence in laboratory electronics and use of diagnostic equipment We Offer Exciting projects in state-of-the-art mass spectrometry An open culture that encourages new ideas A creative international team Flexible work times A bright, spacious workplace on the river in beautiful Thun We look forward to receiving your application at jobs@tofwerk.com. Please send all attachments in pdf format.',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Communications\", \"Operations\", \"Presentations\", \"Creativity\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Product Demonstration\", \"Chemical Ionization\", \"Research Reports\", \"Sample Preparation\", \"Data Presentation\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Vienna Development Methods\", \"Prototype (Manufacturing)\", \"Spectrometer\", \"Activism\", \"Mass Spectrometry\", \"Analytical Chemistry\", \"Instrumentation\", \"Vacuum Systems\", \"Productivity Improvement\", \"IText (Free PDF Software)\", \"Atmospheric Sciences\", \"Electronics\", \"Optics\", \"Survey Data Analysis\", \"Applied Research\", \"Receivables\", \"Chemistry\", \"Sample Analysis\", \"Experience Design\", \"Sampling Design\", \"Residual Gas Analyzer\", \"Peer Review\", \"Application Notes\", \"Long-Term Potentiation\", \"User Research\", \"Application Programming Interface (API)\", \"Integrated Product Team\"]',\n", + " 'languages': \"['English', 'Kannada']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'software engineer fullstack (66)',\n", + " 'location': 'Basel, BS',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.52661198e-01 2.91340828e-01 4.71698552e-01 -5.21422885e-02\\n4.27083135e-01 -1.98471665e-01 -2.21223384e-03 4.32452738e-01\\n-6.25165403e-02 -3.49663585e-01 -5.25599532e-03 -2.97615170e-01\\n-1.34053707e-01 8.45072344e-02 1.67076200e-01 4.05939609e-01\\n3.02087337e-01 1.43080398e-01 -2.26444244e-01 4.20307934e-01\\n9.49407965e-02 -3.22934873e-02 1.62525013e-01 6.52309537e-01\\n3.02122772e-01 -7.98991024e-02 -8.19858834e-02 -8.62564221e-02\\n-2.14111686e-01 -3.20390999e-01 4.27318215e-01 3.90289761e-02\\n-2.88709477e-02 -3.44807297e-01 1.41980901e-01 -1.39483251e-04\\n-1.91043332e-01 -6.84119985e-02 -1.91666037e-02 1.73823237e-01\\n-4.90008861e-01 -2.85763085e-01 7.63083175e-02 5.24346996e-03\\n-2.65376985e-01 -2.85741389e-01 7.78749064e-02 -1.35885432e-01\\n1.05810434e-01 7.26194903e-02 -4.53298628e-01 2.43731618e-01\\n-2.41717473e-01 -3.01241577e-01 3.22144598e-01 5.40960550e-01\\n4.48405594e-02 -3.69874924e-01 -5.09716153e-01 -2.81160653e-01\\n7.79912919e-02 -5.45273349e-02 -2.86159646e-02 -3.30859661e-01\\n3.15949082e-01 2.45662574e-02 3.58437635e-02 4.02281195e-01\\n-8.46842527e-01 -6.94765300e-02 -2.36830279e-01 -1.54657662e-01\\n-3.58341873e-01 -9.93641838e-02 -2.44421616e-01 -1.05392799e-01\\n-4.96278740e-02 4.06165659e-01 6.33917674e-02 -1.33027993e-02\\n-1.46803588e-01 2.79519081e-01 -2.08108425e-01 2.95434445e-01\\n2.70761490e-01 1.86769366e-01 3.08466792e-01 3.27461004e-01\\n-4.36358690e-01 4.08703297e-01 2.10934758e-01 -3.18337560e-01\\n3.09903562e-01 6.11575581e-02 4.57084775e-01 2.01437846e-02\\n6.12716600e-02 1.54032975e-01 -2.47241110e-01 3.30733836e-01\\n1.64766535e-01 -2.77547538e-01 -9.12744273e-03 -6.73582777e-02\\n2.13367492e-02 2.09088437e-03 1.47738546e-01 4.27360296e-01\\n-3.34277093e-01 3.79221380e-01 1.01541668e-01 -2.27127448e-01\\n-1.22823931e-01 -4.14688140e-01 -9.03473124e-02 4.16709203e-03\\n3.16045694e-02 1.60141125e-01 2.89132148e-01 1.71167448e-01\\n1.97294593e-01 2.58136019e-02 1.77900344e-01 8.27402413e-01\\n-7.84624442e-02 1.12298682e-01 -2.87299186e-01 2.89795041e-01\\n1.59167230e-01 -2.40541860e-01 2.06541419e-01 2.48482913e-01\\n6.90852404e-02 -8.80433619e-02 -1.78068042e-01 3.68175000e-01\\n-7.14984983e-02 -1.32285282e-01 -3.60561758e-01 1.61023706e-01\\n-2.06426203e-01 -3.99489373e-01 5.09921789e-01 9.01886448e-02\\n2.28715986e-01 -3.55813839e-02 -1.80466324e-02 -1.16511866e-01\\n-1.52005643e-01 2.67807484e-01 3.96129377e-02 2.12820888e-01\\n-3.47638607e-01 -1.97198570e-01 -2.35667393e-01 2.14010462e-01\\n-2.55877376e-01 -8.78204871e-03 -1.99449480e-01 -1.28179371e-01\\n2.73111761e-01 1.04681551e-01 -2.86753237e-01 2.59929299e-01\\n-6.42313510e-02 -6.20915033e-02 -1.04118269e-02 3.20613682e-01\\n-1.77337512e-01 2.91332304e-01 -3.70046943e-02 -1.06444746e-01\\n5.71091056e-01 1.20903522e-01 -5.66534698e-03 -4.98932153e-02\\n4.32716489e-01 -1.19094878e-01 1.58059478e-01 9.52709392e-02\\n-6.99429750e-01 3.27940583e-01 -2.43085567e-02 -1.12970285e-02\\n-2.65937913e-02 -7.30284527e-02 3.39734077e-01 -2.84511268e-01\\n3.26642990e-02 -1.60441324e-01 -2.26372510e-01 -3.06181550e-01\\n-2.45190024e-01 2.17065997e-02 4.10689086e-01 -3.83797646e-01\\n-2.17247099e-01 1.46659121e-01 -5.27814627e-01 -4.22203615e-02\\n2.55421728e-01 1.31116703e-01 9.92372185e-02 1.67340547e-01\\n-1.74087286e-01 -5.74309468e-01 -6.49698079e-04 -4.26307976e-01\\n-3.05759996e-01 1.05884321e-01 -2.82251239e-01 2.53983885e-01\\n1.14717580e-01 4.19587642e-02 -1.27234638e-01 1.38102531e-01\\n-2.61578828e-01 -7.24911317e-02 1.78400561e-01 5.12505975e-03\\n1.30036801e-01 1.16697848e-02 -3.90422791e-01 4.32870567e-01\\n-1.94841355e-01 4.80785489e-01 1.40390515e-01 -9.57356572e-01\\n4.34268117e-01 2.97679454e-01 -2.69513149e-02 -3.33080351e-01\\n5.44360995e-01 -3.12324673e-01 3.11213732e-02 4.15359624e-02\\n-3.45458448e-01 -3.15360308e-01 1.63066477e-01 -1.98660806e-01\\n-2.13674337e-01 6.11923695e-01 1.18149295e-01 5.49802892e-02\\n2.61104345e-01 -2.82495230e-01 -1.04939982e-01 9.56430584e-02\\n-9.97480005e-02 -2.52275765e-01 -4.51018989e-01 -5.46461977e-02\\n-3.68859246e-02 -4.77956355e-01 -1.73334301e-01 -3.74757588e-01\\n-2.32377112e-01 -3.64775956e-01 -2.85064161e-01 3.49901021e-01\\n2.09144205e-01 7.95316175e-02 -1.12674087e-01 7.77264833e-02\\n-1.60462767e-01 -5.54777443e-01 -1.94967594e-02 9.66622233e-02\\n4.04980958e-01 1.75971806e-01 5.41237965e-02 -7.78104663e-02\\n-4.10031117e-02 5.14570832e-01 -2.35636592e-01 -3.24639022e-01\\n1.45159677e-01 2.42801845e-01 -3.69735062e-04 -1.07626230e-01\\n8.75834301e-02 4.04390424e-01 -1.09427318e-01 9.61275771e-02\\n-3.29903997e-02 -1.97526470e-01 3.98960084e-01 -6.15054742e-04\\n-2.66753644e-01 -1.72343493e-01 -5.35078607e-02 1.83588684e-01\\n-5.93308806e-01 -2.40798295e-01 4.90474045e-01 1.38074994e-01\\n1.53479800e-01 1.31292313e-01 2.72800505e-01 -8.65018964e-02\\n-1.71504557e-01 -2.10111022e-01 1.26100659e-01 1.94049999e-01\\n-1.53746158e-02 1.18416145e-01 -1.57734796e-01 -5.75946510e-01\\n-3.28983784e+00 -1.67890966e-01 1.63039684e-01 -3.43851566e-01\\n7.12629855e-02 -1.41559869e-01 4.82230261e-02 -8.54786634e-02\\n-2.79847890e-01 6.56108707e-02 -1.76268578e-01 -1.16412595e-01\\n1.95763171e-01 3.33515346e-01 1.00061640e-01 2.32437968e-01\\n2.28413433e-01 -1.97042793e-01 -2.81939469e-02 2.63993680e-01\\n-1.22500420e-01 -6.54655099e-01 2.01799974e-01 -1.38554171e-01\\n2.63179332e-01 2.26831377e-01 -3.98774326e-01 -9.09645706e-02\\n-2.39750355e-01 -1.54580161e-01 -2.31513903e-02 -2.57851720e-01\\n-1.57912731e-01 2.30240479e-01 1.24586292e-01 -9.52480882e-02\\n1.31351560e-01 -3.13306153e-01 -1.63428083e-01 -4.70422804e-01\\n1.63627028e-01 -6.85592890e-01 4.98620234e-02 -1.36011913e-01\\n6.94096446e-01 -3.21187973e-01 6.94179460e-02 7.03140199e-02\\n1.43370569e-01 1.06555223e-01 2.23999172e-02 -1.34916119e-02\\n-2.35152587e-01 -2.14812934e-01 -7.75521062e-03 -2.30866224e-01\\n5.83833575e-01 4.91643727e-01 -1.22885861e-01 -1.03744097e-01\\n3.54994237e-02 -3.15967619e-01 -4.41259325e-01 -3.36458027e-01\\n-1.52411565e-01 -2.76507318e-01 -5.68648934e-01 -3.70228708e-01\\n-1.34429425e-01 -1.21797487e-01 -2.33954489e-01 5.33569038e-01\\n-3.19306791e-01 -3.83111417e-01 -7.42548471e-03 -5.36993206e-01\\n1.51730508e-01 -1.75762802e-01 4.24854904e-02 -9.90104228e-02\\n-3.15703779e-01 -4.40683544e-01 5.56113161e-02 5.66388480e-03\\n-2.10352406e-01 -2.71799237e-01 7.89190158e-02 -1.99387401e-01\\n-2.70528913e-01 -4.64668810e-01 4.19529378e-01 1.44411489e-01\\n3.43211114e-01 1.36082649e-01 4.33146983e-01 4.71034944e-02\\n3.77308309e-01 -1.06475532e-01 6.83269501e-02 -4.89971876e-01\\n1.90757751e-01 4.72105592e-02 5.68628550e-01 -2.18407810e-01\\n6.24055564e-02 1.25987470e-01 -2.38274872e-01 -1.36404216e-01\\n4.02323186e-01 4.53272685e-02 3.02919298e-02 -2.59161592e-01\\n2.83204705e-01 -3.65843087e-01 -2.52539188e-01 1.40497804e-01\\n7.16386884e-02 6.24479890e-01 -1.62101090e-02 -4.05895948e-01\\n-2.97240853e-01 4.05141920e-01 -1.30117849e-01 -7.35546649e-02\\n-1.73248947e-01 1.25842661e-01 -1.48197606e-01 1.94794223e-01\\n1.14209384e-01 -1.05074316e-01 -2.94743925e-01 -2.42042951e-02\\n-6.89804852e-02 3.61009300e-01 2.23230436e-01 6.76110834e-02\\n-3.09056789e-03 -2.87134349e-01 1.02707975e-01 8.80126134e-02\\n5.00294343e-02 2.94215888e-01 1.18657947e-01 -1.85870543e-01\\n2.26914063e-02 3.50865662e-01 -6.73251301e-02 1.80596620e-01\\n-1.69547617e-01 9.36819799e-03 -4.42869931e-01 -1.87557936e-01\\n-2.49570608e-01 -3.24562967e-01 8.86857137e-02 2.42893904e-01\\n7.96200112e-02 6.94159511e-03 -8.21208507e-02 -4.34365332e-01\\n3.81010652e-01 4.25193757e-02 2.46532768e-01 1.68721050e-01\\n6.62562549e-02 4.85059589e-01 1.81749016e-02 -7.32814074e-02\\n-1.01586856e-01 4.37689275e-02 -1.83770955e-01 -2.19849825e-01\\n-7.14604557e-02 -4.29596484e-01 -7.05733448e-02 4.64751840e-01\\n1.08982868e-01 -2.77075022e-01 -2.45839551e-01 1.73351660e-01\\n-1.77170709e-02 -2.69950181e-01 -2.25081027e-01 -3.58867720e-02\\n1.71453640e-01 1.26780733e-01 2.73966610e-01 -4.77558732e-01\\n8.56664125e-03 5.50842471e-03 -6.34101704e-02 5.05018890e-01\\n3.94870490e-02 6.11993596e-02 -2.02162728e-01 -2.23265499e-01\\n4.37338054e-01 2.72182524e-02 -9.50374827e-02 -1.30024284e-01\\n1.10110760e-01 -1.83376789e-01 -4.33969676e-01 6.14574887e-02\\n1.80661865e-02 -1.74016833e-01 1.40793294e-01 3.89998481e-02\\n1.96289033e-01 1.35578871e-01 -4.89324361e-01 -3.19967031e-01\\n-2.74560273e-01 -3.12390290e-02 -3.51759866e-02 -5.16898334e-01\\n4.21347395e-02 1.27632199e-02 -5.75805306e-01 1.36575907e-01\\n-2.52895564e-01 -7.14417696e-02 1.14865497e-01 -1.09191071e-02\\n-3.94615650e-01 -8.84900987e-02 2.16748312e-01 2.20772699e-02\\n-1.72156245e-01 -3.59519809e-01 1.78249210e-01 -9.19939160e-01\\n2.16029510e-01 7.40602389e-02 -1.43870503e-01 1.10059150e-01\\n-6.86769933e-02 -6.88874662e-01 7.03646690e-02 -3.56125623e-01\\n-1.09355912e-01 -1.39710642e-02 -1.91461653e-01 -4.10730243e-01\\n1.03031881e-01 -8.47137570e-02 -2.89234102e-01 4.26760793e-01\\n-3.60278308e-01 4.57923323e-01 -5.23178205e-02 1.36208728e-01\\n1.73563734e-01 -3.51434827e-01 1.45354331e-01 -4.25059378e-01\\n-5.14502883e-01 -1.27484277e-01 -2.64302641e-01 -2.72145450e-01\\n2.34596506e-02 -2.86607087e-01 -1.25794828e-01 7.00091571e-02\\n3.50913525e-01 6.56246394e-02 -2.27340654e-01 -2.85037577e-01\\n-1.09483190e-02 -3.63316715e-01 5.42797223e-02 -5.57803810e-02\\n-1.27287451e-02 -8.62931311e-02 3.87318879e-01 -4.68068570e-02\\n1.01089060e-01 -3.10760647e-01 3.92743707e-01 -2.80064285e-01\\n-3.43231738e-01 -4.54714373e-02 1.55467123e-01 -4.04416472e-02\\n2.99525619e-01 -5.34754634e-01 4.04175632e-02 2.76358157e-01\\n1.03983894e-01 9.34928209e-02 3.05064321e-01 -7.75863528e-02\\n5.19825146e-03 1.69243142e-01 -3.66903245e-01 1.50199443e-01\\n7.59473026e-01 6.91714734e-02 1.37899220e-01 1.03146322e-01\\n1.20831192e-01 3.56276751e-01 4.68363822e-01 9.02455300e-02\\n-2.55987704e-01 2.90326953e-01 2.07426876e-01 -5.16534328e-01\\n-1.01321682e-01 -3.33618373e-04 -1.89987719e-01 -3.41925651e-01\\n6.58473194e-01 4.62791592e-01 -3.37839305e-01 -2.92513847e-01\\n-1.42086238e-01 -2.10395932e-01 2.05774426e-01 -8.75431225e-02\\n1.02813266e-01 -1.57204568e-01 4.17543828e-01 -7.10886717e-02\\n2.12964296e-01 5.62987447e-01 -2.09338367e-01 -4.04266059e-01\\n-7.02206641e-02 1.91815957e-01 4.27436829e-02 5.31830847e-01\\n-2.45456815e-01 2.61112273e-01 -4.49776575e-02 2.73538698e-02\\n-2.11568624e-01 1.67944625e-01 1.37272403e-01 2.52548978e-02\\n2.29122162e-01 7.14291334e-02 4.42114532e-01 4.97713625e-01\\n3.25682282e-01 4.42290545e-01 2.72404492e-01 -4.65516746e-02\\n4.61910099e-01 6.67540431e-01 3.30091238e-01 1.73180774e-01\\n-5.82228154e-02 3.36642712e-02 1.40343547e-01 3.65000442e-02\\n5.07156134e-01 3.45619142e-01 1.55715555e-01 9.21753526e-01\\n4.01556253e-01 2.96178341e-01 7.00247467e-01 -5.43763161e-01\\n-2.82415211e-01 8.08796585e-02 4.66351718e-01 -3.48771542e-01\\n-2.27893978e-01 1.39800310e-01 -1.47683054e-01 1.66230977e-01\\n-4.04926836e-01 -2.15770900e-01 -6.09422587e-02 2.00098321e-01\\n6.18890412e-02 -5.30508235e-02 -1.83819205e-01 8.87029693e-02\\n-1.61237374e-01 -2.23324835e-01 -4.04815674e-01 -5.08910120e-02\\n-2.10276768e-01 -2.52170246e-02 -1.45304993e-01 -6.40969127e-02\\n-1.84847385e-01 -4.13412511e-01 -1.19285583e-01 -1.16891377e-01\\n3.07207823e-01 -2.34992251e-01 -1.43497035e-01 -1.57286078e-01\\n1.48725495e-01 3.33080471e-01 4.90718514e-01 5.38405031e-04\\n1.23106144e-01 -1.51178136e-01 -2.39027381e-01 1.99679047e-01\\n5.37649989e-02 1.23586729e-01 8.10266286e-02 4.52320158e-01\\n-2.30134025e-01 5.26545644e-02 1.23304233e-01 3.99100006e-01\\n-4.07245249e-01 -7.45904371e-02 -1.07617781e-01 1.79468825e-01\\n1.48988113e-01 6.99768290e-02 -2.47023314e-01 1.16659641e-01\\n-2.35913068e-01 -5.35414755e-01 2.45828897e-01 -2.20704049e-01\\n-5.97756356e-02 7.25758150e-02 2.29903340e-01 1.73440114e-01\\n-2.67747462e-01 -6.69185743e-02 -7.07359016e-02 2.85431266e-01\\n1.12976208e-01 3.36066842e-01 -2.92727232e-01 -2.94228137e-01\\n-1.41258195e-01 1.73309490e-01 -1.25657469e-01 8.59063789e-02\\n-1.21141359e-01 3.70698035e-01 6.33440763e-02 1.08864456e-01\\n3.24026018e-01 -5.05934209e-02 -1.83044434e-01 -2.51925051e-01\\n-2.06059024e-01 -2.38846600e-01 2.82127205e-02 4.22320738e-02\\n2.04465702e-01 -3.07245076e-01 9.18174535e-03 -6.28547966e-02\\n-1.19864434e-01 -2.93938160e-01 -1.45340711e-02 -3.10192853e-02]]',\n", + " 'job_description': 'You will build state of the art apps to support the companies key initiative: increase speed and agility of innovation! Our customer benefits from many years of successful company history and is one of the strongest players in the retail market and strongly growing in the food service provider business. Today, they have operations in many European countries and have recently extended businesses into the US. The company is now building up an internal engineering team with the goal to increase the speed and agility of innovation. For this, we are searching a highly motivated and experienced leader and expert in the role of: Software Engineer - Fullstack 80-100% (F/M) Software engineering for you is more about a clean codebase, paradigms and algorithms than languages, frameworks or platforms. You have chosen your favorite stack, but you are able to get stuff done in any environment you need to and with every change you leave the codebase better off than before. You will be one of the first members of a new software engineering team and will work on many different projects and touch many different systems: from the apps backend (REST webservices) to the demand forecasting service and the cash register. Your key Responsibilities Create new and work on existing systems across a wide range of projects (e.g. a clean and elegant API layer spanning across all legacy systems, backend APIs consumed by the web and mobile apps, production tooling for the machine learning models etc.) Improve and maintain the production environment, for example by adding monitoring and alerting (DevOps) Work closely together with the frontend engineering and data science teams your personality Software development experience in a general-purpose programming language BSc degree in Computer Science, similar technical field of study or equivalent practical experience Ability to quickly get up to speed in any programming language or system if needed Ability to tackle problems outside your comfort zone Excellent spoken and written communication skills in English additional Desirable skills and experiences Experience in any of the following programming languages: Java, C/C++, C#, Python, JavaScript, Rust or Go Experience working with one or more from the following: web application development, Unix/Linux environments, distributed and parallel systems, service oriented architectures, REST APIs, developing large software systems Experience working in teams following an agile software development methodology Basic knowledge of German 9 out of 12 points on “The Joel Test” (https://www.joelonsoftware.com/2000/08/09/the-joel-test-12-steps-to-better-code/) your perspectives This will be one of the few opportunities to play a major role in a key initiative in a large international organization, right from the beginning! You will be a key player to build products for a customer base of more than 5 million people across 5 countries. You will have access to resources of a big corporate but get the freedom of working in an uncomplicated environment. The company does fully support flexible working models e.g. home office, if you wish to benefit from this. Finally, personal development will be supported to develop required skills - and an attractive compensation package, reflecting the importance of this role, will be offered.',\n", + " 'soft_skills': '[\"Innovation\", \"Operations\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Codebase\", \"Accessioning\", \"Agility\", \"KM Programming Language\", \"Computer Science\", \"Consumables\", \"Service-Oriented Architecture\", \"Mobile App\", \"Cash Register\", \"Software Systems\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Layering\", \"Maintainability\", \"E (Programming Language)\", \"Python (Programming Language)\", \"Linux\", \"Software Engineering\", \"Machine Learning Methods\", \"Agile Software Development\", \"Data Science\", \"C (Programming Language)\", \"Library For WWW In Perl\", \"AD Model Builder (ADMB)\", \"International Organizations\", \"C# (Programming Language)\", \"Personalization\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Demand Forecasting\", \"Finalization\", \"Reflectivity\", \"Service Provider\", \"Software Development\", \"Distributed Computing Environment\", \"Language Experience Approach\", \"Algorithms\", \"Additives\", \"Rust (Programming Language)\", \"Resourcing\", \"Personality Development\", \"Food Services\", \"Java (Programming Language)\", \"Unix\", \"Application Programming Interface (API)\", \"Web Application Development\", \"Custom Backend\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Punjabi']\"},\n", + " {'company_id': '82',\n", + " 'job_title': '.net architect (application engineer)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.nicollcurtin.com',\n", + " 'jobdescription_embedded': '[[-2.77217567e-01 2.89839715e-01 5.29598236e-01 -6.21583387e-02\\n3.98836106e-01 -2.10048586e-01 -5.37508726e-02 3.74461085e-01\\n-5.22886664e-02 -3.67497116e-01 -1.33016601e-01 -3.30079228e-01\\n-8.94003212e-02 5.67607321e-02 1.58059210e-01 4.52714711e-01\\n2.89078385e-01 1.62977338e-01 -1.99557692e-01 3.48954409e-01\\n2.14374438e-01 -5.96668832e-02 1.64667815e-02 6.95411623e-01\\n3.58438194e-01 -1.38753755e-02 -1.06783956e-01 -1.45283537e-02\\n-2.37601131e-01 -2.10243940e-01 3.96388948e-01 -5.73602915e-02\\n-1.02193996e-01 -3.54205400e-01 1.31292373e-01 1.35677774e-02\\n-2.48996168e-01 -4.13854606e-02 -1.08379997e-01 8.17748755e-02\\n-5.04058123e-01 -1.90807402e-01 2.02140033e-01 -3.33082303e-02\\n-2.47849777e-01 -3.46525848e-01 1.85244799e-01 -1.09285206e-01\\n7.04950988e-02 1.58888213e-02 -5.11423886e-01 2.62716323e-01\\n-2.79419214e-01 -2.23631516e-01 3.31522048e-01 5.76538682e-01\\n7.48500228e-02 -4.89465594e-01 -4.93222475e-01 -2.60538965e-01\\n1.01410344e-01 -6.14074767e-02 -7.20584474e-04 -2.90649384e-01\\n3.55966657e-01 7.07449242e-02 1.15387999e-02 4.45038348e-01\\n-7.97423840e-01 -3.49497464e-06 -1.90901354e-01 -1.46643864e-02\\n-3.32649171e-01 -1.99640431e-02 -2.85807341e-01 -1.04496881e-01\\n-9.31318402e-02 4.98434544e-01 5.05429469e-02 2.27870177e-02\\n-2.06173658e-01 2.69312978e-01 -2.46594682e-01 2.90955991e-01\\n2.78877109e-01 1.47279680e-01 2.32220307e-01 2.26330683e-01\\n-4.60852057e-01 4.83339429e-01 3.01514506e-01 -3.26901525e-01\\n3.17267835e-01 6.63912073e-02 4.45897102e-01 8.49138424e-02\\n9.12592560e-02 1.70135140e-01 -1.61058068e-01 2.15048507e-01\\n2.32233390e-01 -7.76559934e-02 -9.08861533e-02 -1.00439966e-01\\n-6.06423877e-02 5.72257452e-02 -3.32787745e-02 2.98190415e-01\\n-3.47945541e-01 3.99873644e-01 1.49821907e-01 -2.41778046e-01\\n-1.17385037e-01 -5.75659394e-01 -1.18806787e-01 -1.07952178e-01\\n9.45220664e-02 1.68034315e-01 2.03328252e-01 1.60680458e-01\\n2.07608700e-01 -5.92987007e-03 1.36178255e-01 8.38019073e-01\\n-1.83298811e-02 5.18632382e-02 -1.91096097e-01 2.79196262e-01\\n1.53127238e-01 -2.37827182e-01 2.41155490e-01 2.45672151e-01\\n3.04310750e-02 -1.56097844e-01 -1.41412303e-01 2.82748640e-01\\n-1.46926893e-02 -2.12223142e-01 -2.63675630e-01 1.56362370e-01\\n-2.08994672e-01 -3.76038164e-01 5.33634305e-01 1.43723488e-01\\n1.52815044e-01 5.87506332e-02 4.22104858e-02 -2.12394014e-01\\n-1.44930601e-01 1.97488368e-01 -9.09886882e-02 1.77064925e-01\\n-2.25431696e-01 -2.18595579e-01 -2.82465070e-01 2.55896211e-01\\n-1.09602824e-01 5.30641526e-02 -1.27279654e-01 -1.78324059e-01\\n3.76547813e-01 1.69561401e-01 -3.04954350e-01 2.92908221e-01\\n-2.79672239e-02 -4.43778699e-03 -1.46856561e-01 2.01965362e-01\\n-1.29083127e-01 1.52653113e-01 -1.05005711e-01 -8.17149803e-02\\n5.67761660e-01 1.44170329e-01 2.13210315e-01 1.37130152e-02\\n3.21541667e-01 -7.38379508e-02 1.30998090e-01 4.46136445e-02\\n-6.12304688e-01 3.42696637e-01 -1.36326533e-02 -6.95748329e-02\\n6.13088645e-02 6.62015006e-03 3.65833342e-01 -2.34029308e-01\\n-2.92289481e-02 -1.23286918e-01 -5.03494263e-01 -3.73512089e-01\\n-1.94451943e-01 1.78960375e-02 4.10926580e-01 -4.68375593e-01\\n-1.07612960e-01 1.82187200e-01 -5.32036483e-01 -7.86114782e-02\\n3.24092776e-01 2.54331678e-01 1.79609835e-01 1.21466823e-01\\n-2.16724947e-01 -5.80973983e-01 5.80464900e-02 -4.91349787e-01\\n-2.43896455e-01 1.33783162e-01 -3.00331920e-01 1.43070579e-01\\n8.44848976e-02 -2.94395015e-02 -1.24519967e-01 1.26152849e-02\\n-2.87266403e-01 -6.52124807e-02 1.85165823e-01 1.13828383e-01\\n2.77876288e-01 1.16151214e-01 -3.87622386e-01 5.59955776e-01\\n-2.44481862e-01 4.24633741e-01 1.35565922e-01 -9.82336819e-01\\n5.15408576e-01 3.23481590e-01 -6.15634024e-02 -3.53396446e-01\\n5.20220399e-01 -3.09124082e-01 4.71989252e-02 1.00925267e-01\\n-4.20706719e-01 -2.55177498e-01 2.53580183e-01 -2.44351059e-01\\n-2.36173257e-01 5.60709238e-01 9.19784009e-02 -1.44727463e-02\\n2.65014708e-01 -2.22925141e-01 -2.79210269e-01 -2.00354420e-02\\n-1.14960738e-01 -1.50883541e-01 -5.48880219e-01 7.26100653e-02\\n-8.39713961e-02 -5.89317203e-01 -8.41096789e-03 -4.35290724e-01\\n-3.07334661e-01 -3.43949705e-01 -3.13119918e-01 2.81962544e-01\\n1.22720972e-01 9.95305181e-02 9.27858113e-04 4.54771072e-02\\n-1.46370009e-01 -5.65563619e-01 5.05978940e-03 1.34829059e-01\\n3.65357995e-01 2.17861474e-01 9.22503769e-02 -1.05313018e-01\\n-7.01914430e-02 5.71117222e-01 -2.35626519e-01 -1.18002579e-01\\n1.47160739e-01 1.35923818e-01 1.14199042e-01 -8.87939259e-02\\n1.18692778e-01 3.28659624e-01 -1.96035653e-01 1.60392616e-02\\n-1.37071684e-01 -3.99413407e-02 3.38175833e-01 -3.15334424e-02\\n-3.36391538e-01 -1.82481647e-01 -6.70583397e-02 2.59411961e-01\\n-5.93362391e-01 -1.54179797e-01 5.27554870e-01 1.66673377e-01\\n7.36620426e-02 1.86633185e-01 2.23418862e-01 -1.64477199e-01\\n-1.77820653e-01 -2.71499276e-01 2.08930984e-01 1.98075846e-01\\n1.01527400e-01 3.02180871e-02 -1.97187543e-01 -6.02563083e-01\\n-3.12314677e+00 -2.38485590e-01 1.24076970e-01 -3.26017857e-01\\n2.52547175e-01 -1.23909064e-01 1.33848414e-01 -8.05420354e-02\\n-1.94138542e-01 -5.27137183e-02 -1.58113405e-01 -1.26786768e-01\\n2.41080046e-01 2.20932394e-01 2.99642384e-02 3.00314903e-01\\n1.15839787e-01 -1.15487956e-01 2.01753806e-02 2.46437147e-01\\n-2.45266616e-01 -6.84551418e-01 2.23525509e-01 -1.65344492e-01\\n2.19794139e-01 2.58904010e-01 -4.34040487e-01 -1.30635411e-01\\n-2.67108202e-01 -1.99804485e-01 2.15588912e-01 -3.16179335e-01\\n-8.40368941e-02 2.40635186e-01 1.95138320e-01 -1.87197179e-01\\n1.69326007e-01 -2.69676656e-01 -3.59480828e-02 -5.97270906e-01\\n1.15368396e-01 -6.14643931e-01 1.64939687e-02 -1.40377313e-01\\n6.88034773e-01 -3.50832373e-01 1.46292642e-01 1.75526738e-01\\n1.25824973e-01 2.55853832e-01 8.54886174e-02 -5.67090176e-02\\n-2.72885472e-01 -2.77194560e-01 2.06445809e-02 -1.47642374e-01\\n4.76229936e-01 5.62881947e-01 -1.46868274e-01 5.20715229e-02\\n7.95199648e-02 -3.02151144e-01 -5.04585326e-01 -3.11107337e-01\\n-2.09103987e-01 -1.88513637e-01 -6.64752305e-01 -4.12698716e-01\\n-1.74641266e-01 -1.78623885e-01 -1.76352710e-01 5.92804313e-01\\n-2.39332527e-01 -3.41497689e-01 4.49308082e-02 -5.57951629e-01\\n1.55020803e-01 -1.07408836e-01 4.26449738e-02 -2.18824670e-01\\n-2.07561135e-01 -5.36308229e-01 3.67159657e-02 -6.94933757e-02\\n-2.67566711e-01 -1.76807970e-01 2.49444344e-03 -2.21316606e-01\\n-2.63881803e-01 -5.33197463e-01 4.03519303e-01 6.64024502e-02\\n3.39802682e-01 -1.02575263e-02 3.43940526e-01 2.86048763e-02\\n3.62918705e-01 -1.54797494e-01 -3.45398858e-02 -5.02829671e-01\\n1.77574560e-01 3.29826809e-02 6.14766181e-01 -1.93672463e-01\\n1.72873154e-01 1.86916187e-01 -1.89391270e-01 -1.03334218e-01\\n4.00124609e-01 -8.09469298e-02 9.14266631e-02 -3.41966093e-01\\n2.57915318e-01 -4.29205269e-01 -3.14281613e-01 8.76969546e-02\\n2.72443574e-02 5.84875941e-01 -2.14010924e-02 -3.99705231e-01\\n-2.49953613e-01 4.32854414e-01 -7.14806765e-02 -1.57312989e-01\\n-2.77764678e-01 1.26202017e-01 -2.45527729e-01 1.09274760e-01\\n3.70225683e-02 -1.12720288e-01 -3.45913023e-01 -1.15454033e-01\\n-6.65118322e-02 2.64274269e-01 2.32080609e-01 5.49479760e-02\\n4.36759219e-02 -3.45446885e-01 -2.91243792e-02 1.55392662e-01\\n1.79067954e-01 3.95247698e-01 1.01968288e-01 -1.44869477e-01\\n5.63337617e-02 3.13773364e-01 -2.64748216e-01 1.82911918e-01\\n-2.27240220e-01 4.24392968e-02 -4.97517824e-01 -3.50392997e-01\\n-2.20052972e-01 -3.55409324e-01 1.14473263e-02 2.68516481e-01\\n1.91935554e-01 -3.03233471e-02 -8.71386286e-03 -3.77004057e-01\\n3.36553276e-01 -3.53182182e-02 1.78840607e-01 2.99249947e-01\\n1.41576119e-02 5.27564764e-01 8.78939629e-02 -9.69001427e-02\\n-1.57673135e-01 -5.08276522e-02 -2.03856468e-01 -1.64021224e-01\\n-3.61196138e-02 -4.46404666e-01 -1.44621566e-01 5.51428497e-01\\n1.01355083e-01 -2.47274190e-01 -1.35976300e-01 3.47578198e-01\\n-5.95543496e-02 -2.25179508e-01 -1.57106087e-01 8.12450871e-02\\n2.34312505e-01 1.05171189e-01 2.99806416e-01 -4.54858243e-01\\n3.73479202e-02 7.90832117e-02 1.39875151e-02 4.94530261e-01\\n2.27570627e-02 1.15397371e-01 -8.22222829e-02 -2.10305631e-01\\n5.03323972e-01 -3.27784978e-02 -6.87714517e-02 -4.27686572e-02\\n2.12472454e-02 -1.12760931e-01 -4.28208739e-01 1.51037142e-01\\n-1.00389473e-01 -1.66945368e-01 5.74455895e-02 6.34007808e-03\\n1.33678958e-01 -8.10811967e-02 -4.36889678e-01 -2.35758379e-01\\n-2.61078179e-01 2.81127542e-02 1.47237862e-02 -5.06286979e-01\\n7.31407255e-02 8.45121872e-03 -5.82967043e-01 2.05949515e-01\\n-1.97520211e-01 -1.41316075e-02 2.27952600e-01 6.15042970e-02\\n-3.47082824e-01 -4.36731651e-02 1.31267041e-01 1.28905147e-01\\n-3.39042217e-01 -2.62759358e-01 5.07930182e-02 -9.30846870e-01\\n1.74998194e-01 6.46764785e-02 -1.66542187e-01 1.96967900e-01\\n-9.46890339e-02 -7.88984358e-01 1.23689979e-01 -2.46961564e-01\\n-9.28981826e-02 5.96119314e-02 -1.87026590e-01 -4.55363154e-01\\n7.63675496e-02 -5.88563755e-02 -2.10556492e-01 4.29137945e-01\\n-4.08343971e-01 3.41481656e-01 -1.88295897e-02 9.72604156e-02\\n9.85986963e-02 -2.76109129e-01 1.30148202e-01 -3.74515861e-01\\n-4.80869412e-01 -1.77518964e-01 -3.10600787e-01 -2.60231525e-01\\n-4.57592728e-03 -2.15607852e-01 -7.92593062e-02 5.41015975e-02\\n3.57603192e-01 1.25793755e-01 -1.31388441e-01 -2.83445835e-01\\n6.78100437e-02 -4.69229817e-01 -6.54403865e-03 -8.36777166e-02\\n-6.60712598e-03 -1.36913314e-01 2.22917691e-01 3.28016132e-02\\n6.50621578e-02 -3.86251211e-01 4.86753821e-01 -2.58070648e-01\\n-3.63768518e-01 -8.87080878e-02 3.17337993e-03 7.87198469e-02\\n4.06503409e-01 -4.53147262e-01 1.01086497e-01 2.91560948e-01\\n1.37429550e-01 1.24963291e-01 2.47452408e-01 -3.97056974e-02\\n-6.60928264e-02 3.41745198e-01 -4.49073464e-01 1.66784659e-01\\n7.42813945e-01 9.00458470e-02 1.02633566e-01 2.13283733e-01\\n1.81365788e-01 2.92551041e-01 4.93894488e-01 -9.63796675e-03\\n-1.23556010e-01 3.14446658e-01 8.86442438e-02 -5.77770412e-01\\n-6.69974387e-02 -1.23356745e-01 -1.29978433e-01 -3.16283524e-01\\n7.24717915e-01 4.14954275e-01 -3.03804666e-01 -2.52922475e-01\\n-1.80499956e-01 -2.49354452e-01 1.41829088e-01 -9.42508653e-02\\n1.35817721e-01 -1.15158036e-01 5.42182028e-01 -2.68965717e-02\\n2.84201622e-01 4.94620562e-01 -2.09708005e-01 -3.57113242e-01\\n2.55594170e-03 1.33693159e-01 8.16435516e-02 3.53101045e-01\\n-1.98533759e-01 1.77288562e-01 6.95429882e-03 2.12473571e-01\\n-1.07025005e-01 1.59705207e-01 1.18317388e-01 5.97991310e-02\\n1.91205993e-01 1.32693097e-01 3.75690162e-01 4.47382450e-01\\n3.49317074e-01 4.64439362e-01 2.85251558e-01 5.68868741e-02\\n4.94922072e-01 5.79240620e-01 3.81327897e-01 1.99248075e-01\\n-6.74284101e-02 1.23412542e-01 -4.78872582e-02 2.93649063e-02\\n3.62714946e-01 3.78441960e-01 9.73686948e-02 8.32124770e-01\\n4.12132025e-01 3.06999952e-01 6.85521185e-01 -5.92316389e-01\\n-4.14855599e-01 -7.51778707e-02 4.87463385e-01 -3.59731644e-01\\n-4.10791524e-02 8.01490843e-02 -1.78361520e-01 2.37033859e-01\\n-4.85165298e-01 -2.36780196e-01 -8.55031237e-02 -3.06255138e-03\\n1.57862574e-01 -8.27828348e-02 -1.93816066e-01 -2.03804988e-02\\n-1.96688548e-01 -3.13517898e-01 -3.83992702e-01 2.59355232e-02\\n-2.43775755e-01 -1.10308021e-01 -2.78232861e-02 -1.65099889e-01\\n1.85390498e-04 -4.03036028e-01 -1.53969288e-01 -2.23245583e-02\\n3.80933523e-01 -4.75059189e-02 -7.62616843e-02 -1.90238044e-01\\n2.09217742e-01 3.09424758e-01 6.44819140e-01 9.43049565e-02\\n1.03286356e-01 -1.70240343e-01 -1.51899070e-01 1.87878743e-01\\n1.39828250e-01 1.95411965e-01 7.45359361e-02 4.17257577e-01\\n-3.70632738e-01 -7.85729736e-02 1.10942736e-01 3.66848797e-01\\n-4.76186126e-01 -1.38986290e-01 -1.16103232e-01 8.67759585e-02\\n1.19415671e-01 1.59099504e-01 -2.34309822e-01 9.44793969e-02\\n-2.61694938e-01 -5.78681350e-01 4.56476241e-01 -2.17924029e-01\\n-1.41498059e-01 -2.35618819e-02 2.54864603e-01 1.47714794e-01\\n-2.61840641e-01 1.37775391e-03 3.22075523e-02 2.95709223e-01\\n1.53881639e-01 4.50879782e-01 -2.36738846e-01 -1.60464436e-01\\n-3.15469325e-01 2.23806173e-01 -1.85190797e-01 1.44029886e-01\\n-1.43987924e-01 3.65717113e-01 -6.74144039e-03 7.96795413e-02\\n2.51578927e-01 -1.80527419e-02 -2.61691600e-01 -2.57143795e-01\\n-3.74999255e-01 -3.46408308e-01 7.12673292e-02 -1.27944008e-01\\n1.93469241e-01 -4.29118484e-01 -5.97622618e-02 -7.79252797e-02\\n-1.65972903e-01 -3.37188184e-01 -4.81122322e-02 -2.61205453e-02]]',\n", + " 'job_description': 'Location: Zurich – Switzerland Job type: Permanent Salary range: up to 150.000 CHF (depends on your expertise) One of our Zurich based Swiss clients is currently seeking a .NET Architect who will be part of a team of .NET, SharePoint and web application developers responsible for a portfolio of applications in various life-cycle phases from inception to decommissioning. Responsibilities: You will architect, design and deliver new solutions in close collaboration with the internal customer and the relevant IT business domains as well as maintain and improve established applications running on different cloud platforms. Your main tasks will be to: Interact with customers from all domains within the company Define and review the architecture of new solutions Lead small to medium-sized projects, sometimes several in parallel Collaborate with internal and third-party resources on the business and technical side Support customers with business analysis, producing requirements and design artefacts Deliver software development projects on time, within budget and in high quality Deploy solutions to various environments (Development, Test, Production) Requirements: Experienced in dealing with demanding customers and strict governance Well-versed in the architecture of modern web applications based on Microsoft technology Adapt in agile development frameworks like SCRUM using AzureDevOps (VSTS) Extensive cloud know-how (ideally Azure) for Continuous Integration/Deployment (CI/CD) Skilled in web technologies like HTML, CSS, JavaScript/TypeScript and frameworks (Angular 7) Experienced in server-side services in .NET using Visual Studio, including newest .NET Core Adapt database design skills and implementations on MS SQL Practical knowledge in front-end design, data visualisation and workflow processes Fluent in English, written and spoken Good to have: Experience with SharePoint 2013/2016 apps development as well as platform improvements are an advantage German language For more information on this .NET Architect PERMANENT job in Zurich, please send your CV to mark.csepe@nicollcurtin.com or alternatively, you can call me on +41 44 578 5327. Please note that while we are grateful for all job applications, only the most suitable will be contacted. Thank you very much for your interest.',\n", + " 'soft_skills': '[\"Collaboration\", \"Written English\", \"Governance\", \"Adaptability\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Integrated Development Environments\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Life Cycle Assessment\", \"Continuous Integration\", \"Customer Support Analyst\", \"TypeScript\", \"Alternators\", \"Component Object Model (COM)\", \"Maintainability\", \"Scrum (Software Development)\", \"Idealization\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Server-Side\", \"Database Design\", \"Microsoft Visual Studio\", \"Product Testing\", \"Budgeting\", \"Front End Design\", \"JavaScript (Programming Language)\", \"Business Analysis\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Software Development\", \"Resourcing\", \"Scaled Agile Framework\", \"Customer Demand Planning\", \"Workflows\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Product Requirements\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.87018558e-01 2.62790650e-01 4.84370828e-01 5.65015674e-02\\n4.95228618e-01 -7.14628771e-02 -4.45722900e-02 2.29910731e-01\\n3.16278683e-03 -4.67078447e-01 2.34412067e-02 -1.45032898e-01\\n-7.85728022e-02 2.29453482e-02 1.49031103e-01 4.50796783e-01\\n4.03130531e-01 5.81657663e-02 -2.45680995e-02 3.79181862e-01\\n9.08872485e-02 -7.18505532e-02 -1.73262674e-02 7.14751184e-01\\n5.00305176e-01 -8.50291401e-02 -1.74031422e-01 8.46053958e-02\\n-2.11665243e-01 -2.65711218e-01 4.89607513e-01 5.26698455e-02\\n-1.78832307e-01 -3.12509269e-01 1.42940804e-01 1.09932616e-01\\n-3.53809625e-01 1.09138444e-01 -1.12645671e-01 1.79193407e-01\\n-4.79448378e-01 -1.52716696e-01 -5.24639077e-02 -1.78945847e-02\\n-4.63240176e-01 -3.82047862e-01 -3.17757018e-02 -1.14930704e-01\\n1.80845514e-01 1.00812934e-01 -4.92571265e-01 2.83448339e-01\\n-2.94942647e-01 -2.42738008e-01 2.11405560e-01 6.73529446e-01\\n7.39359334e-02 -4.43832368e-01 -5.00347495e-01 -4.35070395e-01\\n1.50842711e-01 -1.59714922e-01 8.56454149e-02 -3.02620977e-01\\n3.20919126e-01 -8.75428170e-02 5.05382009e-02 2.71595359e-01\\n-6.95656538e-01 5.79138584e-02 -2.89474815e-01 8.40731412e-02\\n-4.41827804e-01 8.10688734e-02 -4.96987015e-01 -5.41949384e-02\\n-8.14164430e-02 4.47041243e-01 4.32299152e-02 1.13513574e-01\\n-1.51918620e-01 2.91128427e-01 -3.97967994e-01 3.60817164e-01\\n2.52997488e-01 1.13967836e-01 3.32117021e-01 3.32032621e-01\\n-4.80027497e-01 5.41969657e-01 3.18811417e-01 -3.79932433e-01\\n2.04327270e-01 1.08398467e-01 3.97260666e-01 1.98462680e-01\\n2.10382745e-01 1.28192201e-01 -2.43399873e-01 2.48623163e-01\\n2.53265142e-01 -1.97024718e-01 -4.22308184e-02 -1.92427576e-01\\n1.20634563e-01 -3.96730080e-02 1.03949241e-01 1.59911886e-01\\n-2.54418939e-01 3.32704186e-01 1.28121421e-01 -1.08612649e-01\\n-1.34354249e-01 -4.21632916e-01 -4.88093160e-02 1.05022844e-02\\n3.50227915e-02 2.35844791e-01 1.83234736e-01 2.13628918e-01\\n1.60608873e-01 1.30243212e-01 1.81658626e-01 8.20287168e-01\\n-7.53031671e-02 4.55096923e-02 -1.82220578e-01 2.43975878e-01\\n1.76228583e-01 -3.51454288e-01 2.32578918e-01 2.33466357e-01\\n-1.06941111e-01 -2.63206065e-01 -3.42116535e-01 3.98094147e-01\\n-4.25924882e-02 -1.26708031e-01 -2.77030081e-01 2.47825772e-01\\n-6.57393783e-02 -4.78697568e-01 6.36573911e-01 7.31100664e-02\\n1.94283128e-01 3.34346369e-02 5.49321063e-03 -8.48056078e-02\\n-1.19356498e-01 3.13592046e-01 8.44040662e-02 9.78462249e-02\\n-3.21126372e-01 -2.71897942e-01 -2.50280768e-01 1.04133047e-01\\n-3.42602462e-01 1.75242484e-01 -1.68729961e-01 -3.87697406e-02\\n1.64649621e-01 2.11816840e-02 -3.19322646e-01 2.01137438e-01\\n-1.43027961e-01 -2.11283341e-01 2.30815895e-02 4.09038991e-01\\n-1.20129175e-01 2.12754697e-01 4.75316755e-02 -6.03567399e-02\\n6.55906975e-01 2.72461146e-01 3.08596075e-01 -6.33337721e-02\\n1.94544151e-01 -4.97832485e-02 1.16500773e-01 1.30674303e-01\\n-6.53613448e-01 3.15068811e-01 -1.11108005e-01 -2.17268571e-01\\n8.15218017e-02 -4.51544486e-02 3.02738637e-01 -2.61901617e-01\\n5.55997901e-02 -1.59935296e-01 -3.47842276e-01 -2.64477134e-01\\n-2.10771158e-01 -6.71768785e-02 4.35598433e-01 -5.88019192e-01\\n8.60315338e-02 1.56214520e-01 -4.85228300e-01 -1.90070316e-01\\n1.47227883e-01 5.74153215e-02 1.52253255e-01 1.82843611e-01\\n-1.68452680e-01 -5.92767537e-01 2.32608154e-01 -4.30430055e-01\\n-3.81963044e-01 8.52880031e-02 -3.27997595e-01 1.94562733e-01\\n3.14283222e-02 -1.09618381e-01 -1.61703393e-01 5.49438782e-02\\n-2.42870778e-01 -3.65384892e-02 7.03099668e-02 1.41151816e-01\\n2.84305274e-01 5.14078550e-02 -3.18377256e-01 5.59235215e-01\\n-1.33370072e-01 4.82009470e-01 2.05154508e-01 -9.44568932e-01\\n4.92913783e-01 1.20449468e-01 -1.64191008e-01 -3.73962522e-01\\n4.76290941e-01 -3.40915561e-01 -1.65231675e-01 7.06228837e-02\\n-2.47006744e-01 -2.43057907e-01 2.71649122e-01 -2.10424393e-01\\n-2.70646662e-01 5.04853129e-01 1.07559793e-01 1.56167999e-01\\n2.51115024e-01 -1.75179183e-01 -1.84980154e-01 1.32504441e-02\\n-1.70787171e-01 -1.86189771e-01 -5.18563390e-01 9.53221843e-02\\n-8.99697766e-02 -5.34628570e-01 -7.29088485e-02 -4.88227755e-01\\n-1.50759876e-01 -3.81311446e-01 -1.35275409e-01 1.66550368e-01\\n1.85105771e-01 1.46135911e-01 -3.55250686e-02 -2.53697094e-02\\n-4.96067107e-02 -6.71058238e-01 -1.27098307e-01 8.58006179e-02\\n4.11959261e-01 1.97341293e-01 1.55876011e-01 -1.13760024e-01\\n2.85732865e-01 5.69348812e-01 -2.70705938e-01 -4.02996153e-01\\n1.74361736e-01 7.49193579e-02 -1.12530040e-02 -2.12153301e-01\\n1.18688390e-01 3.55177581e-01 -2.70727664e-01 4.30949405e-02\\n1.45200063e-02 -7.90123418e-02 3.88696879e-01 8.32263529e-02\\n-2.17001349e-01 -2.13093281e-01 -1.83314964e-01 1.19714729e-01\\n-5.95067918e-01 -2.66887397e-01 6.12141609e-01 2.19292223e-01\\n1.11547582e-01 1.50773183e-01 1.64598539e-01 7.29226274e-03\\n-2.41420925e-01 -3.99667025e-02 3.30092430e-01 1.02053784e-01\\n1.04864277e-01 6.34805709e-02 -1.10372894e-01 -5.27250111e-01\\n-3.49918509e+00 -1.86699510e-01 1.45538315e-01 -3.11240256e-01\\n2.77192622e-01 -1.15822218e-01 1.95405945e-01 -1.14276454e-01\\n-3.59651387e-01 -9.88936871e-02 -2.41814882e-01 -1.24922425e-01\\n1.45729825e-01 1.34170428e-01 1.92309275e-01 1.99971795e-01\\n2.13537246e-01 -2.03018561e-01 -3.49065326e-02 3.74420822e-01\\n-7.31047466e-02 -6.40844464e-01 9.65114981e-02 7.78760612e-02\\n1.70935810e-01 5.47246635e-02 -4.00103420e-01 -1.52063623e-01\\n-2.27440238e-01 -2.38294199e-01 4.46301959e-02 -2.05593497e-01\\n-1.54299304e-01 1.17693290e-01 2.15146452e-01 -1.37234449e-01\\n6.55892789e-02 -2.76214153e-01 -7.39595294e-02 -3.95650297e-01\\n6.40425831e-02 -5.78782260e-01 3.30595747e-02 -5.38194776e-02\\n6.91279948e-01 -1.67431369e-01 2.05288678e-01 -1.44046703e-02\\n7.88142607e-02 1.33377105e-01 8.23362693e-02 -3.79568106e-03\\n-3.10304910e-01 -4.07715589e-01 -1.68326110e-01 -1.68722302e-01\\n6.64076328e-01 4.18242097e-01 -2.25637659e-01 -1.00537047e-01\\n4.65914756e-02 -3.33988160e-01 -4.71619815e-01 -2.22566843e-01\\n-2.17880964e-01 -1.10055983e-01 -6.15973234e-01 -4.20766950e-01\\n-1.19438954e-01 -1.76342279e-01 -1.40307724e-01 5.99196434e-01\\n-2.58876681e-01 -3.77593547e-01 -4.53560203e-02 -3.31817418e-01\\n3.28757346e-01 -1.58357576e-01 1.07058279e-01 -2.21695647e-01\\n-4.24703032e-01 -4.56008255e-01 5.64830378e-02 -2.88960785e-02\\n-1.61012724e-01 -1.69487908e-01 4.29077186e-02 -1.84264019e-01\\n-4.54087049e-01 -5.08217096e-01 3.76435310e-01 -1.47216797e-01\\n3.04129750e-01 1.55662537e-01 3.79576474e-01 6.28399923e-02\\n2.90161133e-01 1.13861123e-02 -1.65219847e-02 -3.34918827e-01\\n1.47305652e-01 8.05802941e-02 6.50428236e-01 -2.14297011e-01\\n3.26011069e-02 3.49388644e-02 -1.85436830e-01 -2.03209147e-02\\n4.14038330e-01 -2.02263325e-01 2.18434170e-01 -1.32506639e-01\\n3.17521781e-01 -2.96642721e-01 -1.82554543e-01 1.16321154e-01\\n5.04915453e-02 5.83705902e-01 -3.07918712e-02 -4.06120807e-01\\n-1.52551129e-01 3.32152754e-01 -2.35682577e-01 1.69914253e-02\\n-3.77646089e-01 6.80886954e-02 -2.34908789e-01 3.62705141e-01\\n4.82622860e-03 -9.05239955e-02 -2.27338985e-01 -2.80054301e-01\\n-2.52985153e-02 3.82852465e-01 2.27443367e-01 -2.63440851e-02\\n-4.80799899e-02 -2.26811141e-01 -1.12443395e-01 1.44623801e-01\\n2.79392093e-01 4.66914892e-01 1.39012188e-01 -2.66904116e-01\\n-7.53899291e-02 3.14006239e-01 -3.39513659e-01 2.80908167e-01\\n-3.43595386e-01 1.20423682e-01 -5.34195125e-01 -2.07130432e-01\\n-2.69177020e-01 -4.97220099e-01 2.83666730e-01 3.89316201e-01\\n3.97446416e-02 -9.96811464e-02 9.20929387e-02 -3.62926841e-01\\n2.39512980e-01 1.91693813e-01 1.42325029e-01 1.18561551e-01\\n2.09425520e-02 6.37884676e-01 -6.12768941e-02 -2.10173815e-01\\n-1.37676999e-01 1.18817672e-01 -2.87767947e-01 -2.43686229e-01\\n-8.07721093e-02 -5.63978493e-01 -8.51650462e-02 4.09803689e-01\\n1.82244301e-01 -1.21554203e-01 -1.96113542e-01 2.61902571e-01\\n-6.56381026e-02 -2.15349644e-01 -2.48035267e-01 7.11072758e-02\\n2.00243354e-01 7.62431920e-02 3.30393553e-01 -4.35705066e-01\\n-4.42033587e-03 1.28926292e-01 -9.61426422e-02 4.80944663e-01\\n3.28532560e-03 1.12552725e-01 -7.46102333e-02 -1.27134547e-01\\n4.81844962e-01 4.66144420e-02 -1.48863763e-01 2.90249232e-02\\n1.26544431e-01 -2.14879408e-01 -3.54991406e-01 3.89944529e-04\\n1.66686699e-02 -1.93925232e-01 5.75323366e-02 2.07905665e-01\\n6.23656660e-02 5.59509173e-02 -5.85761011e-01 -2.27803841e-01\\n-3.31945747e-01 -6.41709268e-02 1.95956379e-01 -5.30103743e-01\\n-1.50092989e-01 -1.43133318e-02 -5.16337693e-01 1.87122330e-01\\n-4.78649512e-02 2.23373827e-02 1.54751137e-01 9.37879011e-02\\n-9.88371968e-02 -2.28561625e-01 2.28904441e-01 2.26014629e-01\\n-2.76064515e-01 -1.61339119e-01 -3.49665210e-02 -9.93677080e-01\\n2.60059118e-01 1.89886972e-01 -2.93134749e-01 1.64345115e-01\\n2.10690815e-02 -6.34835601e-01 1.67405024e-01 -3.82757187e-01\\n-1.50545701e-01 -7.51426304e-03 -2.22365737e-01 -4.31700408e-01\\n5.24930656e-02 6.66765347e-02 -1.83398277e-01 4.24416363e-01\\n-3.25276226e-01 3.10214162e-01 8.85223597e-02 5.60957827e-02\\n3.15741263e-02 -2.05776736e-01 8.91626105e-02 -3.22096944e-01\\n-3.87834221e-01 -3.58436614e-01 -3.57961208e-01 -3.93983334e-01\\n7.62001262e-04 -4.11852807e-01 -1.95396274e-01 2.59278882e-02\\n4.25747901e-01 1.24760047e-01 -1.40744999e-01 -3.58818769e-01\\n7.54674897e-02 -5.38769007e-01 1.28063649e-01 -3.07711989e-01\\n-9.86071303e-02 -1.90828472e-01 2.91152388e-01 1.00441083e-01\\n1.54188946e-01 -2.35401541e-01 4.46903795e-01 -3.43252838e-01\\n-2.25485310e-01 -1.14401534e-01 2.49985293e-01 3.09888665e-02\\n2.65857011e-01 -4.26427931e-01 -7.72912279e-02 3.10622215e-01\\n1.22864217e-01 8.62107947e-02 1.94351137e-01 -2.24707663e-01\\n-1.19246818e-01 2.28468359e-01 -3.54896009e-01 2.04259858e-01\\n7.75683045e-01 1.07028909e-01 1.80673555e-01 1.76774830e-01\\n8.93589631e-02 2.23281771e-01 5.36424398e-01 1.14867855e-02\\n-9.73608792e-02 2.75751054e-01 1.17799425e-02 -3.55318725e-01\\n-1.25693968e-02 -1.30831748e-01 -9.80305523e-02 -2.96048164e-01\\n6.27217710e-01 4.29112524e-01 -3.30575347e-01 -3.83231401e-01\\n-1.56274542e-01 -1.37291998e-01 2.44909540e-01 1.08147614e-01\\n1.35780545e-03 -1.01999208e-01 4.80567306e-01 -8.95733312e-02\\n1.75356314e-01 4.97408569e-01 -1.98922396e-01 -2.56918669e-01\\n6.26240447e-02 2.91105807e-01 -5.63238189e-02 5.53678334e-01\\n-2.83362687e-01 3.21722835e-01 7.95120001e-02 9.96009037e-02\\n-1.65802211e-01 -1.46606080e-02 3.42603952e-01 1.23080969e-01\\n2.20478073e-01 3.29124033e-02 4.64192420e-01 4.73648608e-01\\n1.86136812e-01 4.73429650e-01 3.09388459e-01 -8.06790963e-03\\n2.08425477e-01 6.33738756e-01 3.75471741e-01 1.41821966e-01\\n4.12914790e-02 5.60642444e-02 1.05031826e-01 2.14857571e-02\\n2.75964350e-01 3.60108614e-01 1.14466950e-01 8.44450474e-01\\n2.82715768e-01 3.25512826e-01 7.04381227e-01 -7.04646289e-01\\n-4.04966742e-01 1.47195105e-02 6.07197881e-01 -4.31804925e-01\\n-2.95219887e-02 2.10179463e-01 -2.67541677e-01 2.44841784e-01\\n-5.03162682e-01 -3.10021043e-01 -6.04984611e-02 3.19326238e-04\\n5.48759662e-02 -2.39338785e-01 -1.32619321e-01 1.52881145e-01\\n-4.40830290e-02 -4.68892753e-02 -3.81141365e-01 -1.08870707e-01\\n-2.74463117e-01 -8.59094188e-02 3.15647162e-02 -7.73016363e-02\\n-1.95661157e-01 -4.16083753e-01 -1.38009265e-01 -1.06742112e-02\\n2.15738207e-01 -1.44944757e-01 -1.77337587e-01 -6.62202165e-02\\n2.35435575e-01 2.04775795e-01 6.88123405e-01 1.09979182e-01\\n7.64895082e-02 -1.30030096e-01 -2.08528832e-01 1.65005669e-01\\n1.00251123e-01 3.05445921e-02 -8.43950454e-03 3.02694559e-01\\n-2.89447814e-01 -1.84940591e-01 3.13915648e-02 2.55964309e-01\\n-5.13837814e-01 5.80943972e-02 -7.85986409e-02 2.22446382e-01\\n1.26922093e-02 3.32587421e-01 -1.25920326e-01 1.30321994e-01\\n-8.05323645e-02 -4.30001497e-01 3.66479933e-01 -1.47306427e-01\\n-2.30360523e-01 5.42453937e-02 2.01186970e-01 2.71063387e-01\\n-2.73645073e-01 -8.94198045e-02 -1.53999373e-01 2.05149844e-01\\n2.24770177e-02 2.18519092e-01 -1.32797137e-01 -2.55409986e-01\\n-3.17207783e-01 1.44487962e-01 -7.70623088e-02 2.32485548e-01\\n5.19480333e-02 3.86689544e-01 1.78385541e-01 6.63684607e-02\\n3.98666203e-01 -3.17284688e-02 -2.98818529e-01 -2.30783150e-01\\n-2.05363408e-01 -7.44481683e-02 -7.32258782e-02 1.32661304e-02\\n1.47603258e-01 -3.15225720e-01 -2.29926761e-02 -2.36715123e-01\\n-1.73129871e-01 -3.59223396e-01 -6.28776103e-02 -1.47057503e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Contribute to methodology and technology decisions and ensure that the team is continuously on top of latest trends to help evolve the platform Liaise with other functions involved in data generation, ingestion, storage and processing Get hands-on with working with the data to really understand what it means Continuously enhance our growing suite of tools and platforms that our data scientists are depending upon Be a key resource with how we will extend our technical infrastructure to incorporate cloud technologies Work very closely with the data science team, business users and fellow technology colleagues on a daily basis. Ideal candidates will be involved in designing and building the infra for a new analytics platform which is then to be used to monitor and optimize the consumption of balance sheet capacity, capital, liquidity and funding and manage the risk exposure of the consolidated balance sheet Your profile: Degree in Computer Science or Financial Engineering Strong knowledge of Python with an additional working knowledge of Java being a distinct advantage Practical knowledge of how to implement CI/CD pipelines with TeamCity, Jenkins, Bamboo etc Good analytical skills and mathematical fluency (e.g. a growing interested in R, Scala, NoSQL, Spark etc.) Good understanding of data storage, cloud computing, interfaces, visualization and streaming data Entrepreneur at heart who is continuously looking for ways to improve and enhance the systems around you Highly numerate with logical analytical thought process and attention to details Reliable when working independently, with sound judgment for when to escalate issues Critical thinker who communicates clearly and enjoys the challenges of a fast-paced environment Committed team player with good interpersonal skills, enthusiasm and output vision Someone who actively keeps up-to-date with technology Keen to work with both structured and unstructured data - we have lots of it Benötigte Skills Python Python JAVA R Scala NoSQL',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Decisiveness\", \"Infrastructure\", \"Management\", \"Communications\", \"Enthusiasm\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"Capitalization\", \"Balance Sheet\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Atlassian Bamboo\", \"Visualization\", \"Scala (Programming Language)\", \"Activism\", \"Optical Data Storage\", \"Python (Programming Language)\", \"Financial Engineering\", \"E (Programming Language)\", \"Cloud Storage\", \"Pipelining\", \"Unstructured Data\", \"Data Science\", \"Consolidation\", \"Storages\", \"R (Programming Language)\", \"Teamcity\", \"Resourcing\", \"Liquidation\", \"Additives\", \"Java (Programming Language)\", \"Cloud Computing\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English', 'Hiri Motu', 'Occitan']\"},\n", + " {'company_id': '75',\n", + " 'job_title': '.net software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.26071709e-01 3.50536972e-01 4.43049341e-01 -6.00995608e-02\\n4.40838099e-01 -9.09960791e-02 1.41270429e-01 1.64904892e-01\\n3.09199281e-03 -2.91167289e-01 -1.74425870e-01 -1.50007039e-01\\n-6.64450135e-03 -3.99732552e-02 1.27556086e-01 3.85261118e-01\\n4.12829012e-01 1.66202988e-02 -1.39825940e-01 2.48754621e-01\\n5.91092631e-02 2.56466754e-02 1.96477082e-02 5.81444383e-01\\n4.18029547e-01 -8.38148594e-03 -3.52266915e-02 1.67149976e-01\\n-2.17727140e-01 -3.39448303e-01 3.57129723e-01 -9.37960446e-02\\n-1.82485044e-01 -2.12177798e-01 4.81510460e-02 7.94045106e-02\\n-1.34372413e-01 -4.71911617e-02 -1.10350875e-03 3.85697000e-02\\n-3.24790657e-01 -1.30632475e-01 -3.08777113e-02 -2.78758467e-03\\n-3.22404295e-01 -2.16213942e-01 1.22665688e-01 -1.46625131e-01\\n1.32419243e-02 -7.94864520e-02 -5.55124700e-01 5.04525185e-01\\n-9.13616344e-02 -1.01791322e-01 2.76070118e-01 4.52665746e-01\\n2.74663623e-02 -4.55996573e-01 -3.85684103e-01 -2.33598441e-01\\n2.23396510e-01 -1.74590424e-02 1.45916581e-01 -1.22401536e-01\\n4.41546947e-01 -5.19472584e-02 -8.02446082e-02 4.58125085e-01\\n-6.85298562e-01 -2.04643488e-01 -4.27355677e-01 -5.50975986e-02\\n-4.10874009e-01 -8.79569352e-02 -2.55874634e-01 -1.83247939e-01\\n1.21095050e-02 3.12921137e-01 -8.93749148e-02 3.64606269e-02\\n-1.71338499e-01 2.13456765e-01 -1.19543321e-01 1.19962059e-02\\n2.61209399e-01 2.00066850e-01 3.33329678e-01 2.55462080e-01\\n-3.36915791e-01 3.64462823e-01 3.49968523e-01 -3.05881977e-01\\n2.39204645e-01 -2.30225846e-02 4.21389997e-01 1.43471494e-01\\n5.22746295e-02 2.24392086e-01 -4.59528491e-02 7.99491480e-02\\n1.18991531e-01 -2.20377788e-01 -3.75204459e-02 -4.58629569e-03\\n-7.70470127e-02 -2.04314291e-02 1.32779945e-02 2.83747464e-01\\n-4.46603328e-01 4.06398386e-01 1.36193365e-01 -3.13821048e-01\\n-4.12639268e-02 -4.44282144e-01 -2.06691220e-01 -3.68810743e-02\\n-7.10071698e-02 2.02122822e-01 2.19994754e-01 2.47193933e-01\\n2.45307416e-01 -1.18045285e-01 2.93819398e-01 7.03786790e-01\\n-1.47377392e-02 1.61380023e-02 -1.44923776e-01 4.32601243e-01\\n1.11831531e-01 -3.37955922e-01 2.02076226e-01 2.06392452e-01\\n6.36414066e-02 -3.39176366e-03 -2.31862590e-01 1.81786582e-01\\n-1.67408794e-01 -1.84905514e-01 -3.87550801e-01 2.22015157e-01\\n-2.47997701e-01 -4.42764133e-01 3.62570882e-01 -9.71785709e-02\\n1.23583563e-01 -1.96889997e-01 -9.12897885e-02 -4.07977402e-02\\n-8.88392329e-02 3.52014869e-01 5.32582887e-02 1.85378522e-01\\n-2.40313992e-01 -2.49996111e-01 -1.07463665e-01 4.29187477e-01\\n-1.05660923e-01 6.59078732e-02 -2.83964127e-01 -1.90039203e-01\\n3.50126266e-01 1.63177356e-01 -3.35717887e-01 3.35633039e-01\\n-2.07789131e-02 -2.66473979e-01 -2.35377610e-01 2.76285410e-01\\n-1.05534837e-01 2.24357754e-01 2.85940319e-02 -2.09103495e-01\\n5.60186565e-01 1.95843115e-01 2.09332392e-01 -1.02567449e-01\\n4.12260354e-01 -1.85521662e-01 2.61004180e-01 -2.70100348e-02\\n-6.63289070e-01 4.20371532e-01 -1.72114462e-01 -8.68022218e-02\\n1.72273125e-02 -1.21529419e-02 4.04311150e-01 -3.15624148e-01\\n-5.27543668e-03 -1.82412237e-01 -2.55319864e-01 -4.56979781e-01\\n-2.24544659e-01 -2.67092995e-02 3.77110243e-01 -2.63141364e-01\\n-2.14466564e-02 1.87411144e-01 -5.31888783e-01 -1.37402236e-01\\n3.06120306e-01 2.04659164e-01 9.42620263e-02 2.22667322e-01\\n2.17365734e-02 -4.38825428e-01 1.12067632e-01 -5.21833956e-01\\n-4.03385192e-01 8.46826583e-02 -2.25745082e-01 2.77504683e-01\\n2.73307189e-02 -6.05854951e-02 -2.95157731e-02 2.17199489e-01\\n-3.28717560e-01 5.47944568e-03 1.95052803e-01 5.74968457e-02\\n1.33400321e-01 5.70197292e-02 -3.32879692e-01 5.06170154e-01\\n-1.39739886e-01 2.94153005e-01 9.32924077e-02 -8.68681967e-01\\n4.71947134e-01 2.12423846e-01 8.34934562e-02 -1.98800325e-01\\n5.79411149e-01 -3.15943539e-01 2.25398131e-03 5.10894731e-02\\n-3.45144868e-01 -1.52553320e-01 2.90780514e-01 -1.90226421e-01\\n-2.26984441e-01 6.29331470e-01 1.33130237e-01 8.44765455e-02\\n2.66949832e-01 -1.25044391e-01 -1.62028909e-01 5.40707074e-02\\n-1.94844842e-01 -1.74659878e-01 -4.29295212e-01 1.67675223e-02\\n-4.76788990e-02 -4.97271210e-01 -2.11692214e-01 -4.92319822e-01\\n-1.77972749e-01 -4.18106496e-01 -1.96397051e-01 3.13836575e-01\\n1.80415019e-01 1.34594008e-01 1.40504017e-02 -7.54168332e-02\\n-1.64666563e-01 -4.83242482e-01 -7.09440634e-02 -2.31010467e-02\\n2.68264145e-01 4.17642325e-01 1.05295658e-01 -8.54006410e-02\\n-4.12604660e-02 4.31466281e-01 -4.23927605e-01 -2.70131379e-01\\n2.57134706e-01 1.94950610e-01 -3.97450030e-02 -7.55017102e-02\\n-7.15904264e-03 3.97466481e-01 -1.20723240e-01 5.76361306e-02\\n-1.27519816e-02 -5.14602773e-02 4.37715560e-01 -7.79927596e-02\\n-1.30505532e-01 -1.55663058e-01 -1.29079148e-01 3.96241963e-01\\n-4.35450375e-01 -3.34480375e-01 5.40011585e-01 1.78581312e-01\\n7.18208998e-02 2.15942755e-01 4.00034070e-01 -3.63397188e-02\\n-2.02457577e-01 -1.65933385e-01 6.91595525e-02 1.21294200e-01\\n8.61124247e-02 -7.02161994e-03 -2.56749004e-01 -4.80327904e-01\\n-3.62103391e+00 -1.82599887e-01 1.07445382e-01 -2.81659544e-01\\n2.57586330e-01 -9.74241178e-03 2.06100255e-01 -8.15973058e-03\\n-3.26460570e-01 9.09857154e-02 -2.44975910e-01 -1.79595500e-01\\n1.57830581e-01 3.12200576e-01 1.63923398e-01 1.30310923e-01\\n1.10074375e-02 -2.92320788e-01 1.42591773e-02 4.42436129e-01\\n-1.08473562e-02 -7.22514451e-01 1.29517555e-01 -3.31157707e-02\\n2.36562148e-01 2.39990026e-01 -4.29671943e-01 -4.75435257e-02\\n-3.33984375e-01 -2.19218671e-01 1.55893862e-01 -2.43458167e-01\\n-1.61484733e-01 3.95932227e-01 1.55926988e-01 -1.47744313e-01\\n9.26106586e-04 -3.71171027e-01 -7.87642878e-03 -5.26830852e-01\\n6.66625127e-02 -6.02407098e-01 8.16130638e-02 -4.87344116e-02\\n5.53498149e-01 -2.14265481e-01 2.10584477e-01 6.24291860e-02\\n1.73736736e-01 2.50507742e-01 7.09346670e-04 -2.04115752e-02\\n-3.73170555e-01 -2.09045425e-01 -1.45122230e-01 -1.74783111e-01\\n5.29895425e-01 3.23274523e-01 -1.86397016e-01 -2.45598257e-02\\n-1.05883807e-01 -3.50391924e-01 -4.78191465e-01 -3.86484385e-01\\n-2.52956718e-01 -7.67470524e-02 -5.57642519e-01 -3.72048587e-01\\n-1.23724252e-01 -1.28343523e-01 -7.18085617e-02 6.05875850e-01\\n-3.02976787e-01 -3.87737721e-01 1.17270768e-01 -5.45458972e-01\\n2.01812163e-01 -2.75060207e-01 1.54082313e-01 -1.11229300e-01\\n-2.79459119e-01 -4.39333290e-01 9.47967991e-02 6.85414970e-02\\n-9.48966891e-02 -8.73175710e-02 3.89870442e-02 -1.65828183e-01\\n-4.29171026e-01 -4.78950024e-01 5.28657854e-01 2.12822687e-02\\n3.28423679e-01 1.40624605e-02 2.08951741e-01 2.59355366e-01\\n2.96725810e-01 -1.87652752e-01 2.63342500e-01 -4.74346399e-01\\n8.15582648e-02 -7.07224302e-04 6.55160666e-01 -2.05302075e-01\\n2.86204200e-02 -3.99109907e-03 -2.11790577e-01 -7.16993138e-02\\n5.53110600e-01 8.77730999e-05 1.15490586e-01 -2.41589084e-01\\n2.70266384e-01 -4.62705910e-01 -1.81419387e-01 1.34127691e-01\\n-9.86096337e-02 5.94761074e-01 9.84352157e-02 -3.16706628e-01\\n-1.70073673e-01 2.43806094e-01 -1.38177365e-01 -1.30351901e-01\\n-1.41231924e-01 2.17937231e-01 -2.61599004e-01 1.15338609e-01\\n1.07750162e-01 -4.48333435e-02 -3.19229841e-01 -7.29542971e-02\\n-1.30306199e-01 2.05499187e-01 3.58600795e-01 1.08369574e-01\\n4.26418595e-02 -3.04630101e-01 -3.64989080e-02 1.23679064e-01\\n3.47962409e-01 1.95491940e-01 5.52723743e-02 -3.81055862e-01\\n-3.81202549e-02 2.51705170e-01 -2.45468348e-01 1.91966474e-01\\n-1.41120598e-01 1.65872946e-01 -4.26892251e-01 -3.39196436e-02\\n-2.48518229e-01 -3.34451139e-01 1.73504781e-02 2.83886075e-01\\n1.89374566e-01 -8.20591748e-02 -3.58624719e-02 -3.88235003e-01\\n3.98833841e-01 -1.67733356e-02 1.80653036e-01 1.36206567e-01\\n8.32339898e-02 5.98621190e-01 -4.74508330e-02 -4.38555926e-02\\n-1.29440799e-01 7.19273761e-02 -1.90075889e-01 -2.61825264e-01\\n6.29043058e-02 -2.75921911e-01 -1.68052744e-02 4.36026454e-01\\n5.33233583e-02 -8.70278180e-02 -9.77064520e-02 2.71107972e-01\\n-1.96964908e-02 -3.46750975e-01 -1.85786262e-01 1.54849645e-02\\n1.22160934e-01 1.31882861e-01 1.76751867e-01 -4.66855675e-01\\n-7.71015808e-02 -5.71095198e-02 6.44654557e-02 3.83196801e-01\\n1.14067040e-01 8.30810294e-02 -2.61542033e-02 -2.64602065e-01\\n4.25827920e-01 -8.03609267e-02 -1.82428509e-01 1.08795725e-02\\n7.70963803e-02 -3.70292395e-01 -4.10954863e-01 -1.64944708e-01\\n-8.40781182e-02 -1.87974975e-01 1.85226634e-01 2.83220559e-02\\n1.51775494e-01 -3.62619981e-02 -4.79228139e-01 -1.60511404e-01\\n-3.46246094e-01 8.43244269e-02 -1.54995769e-01 -5.93956769e-01\\n1.24665545e-02 -5.60120605e-02 -5.86022258e-01 2.86593884e-01\\n-2.64240831e-01 -3.21961381e-03 2.77455896e-02 7.26450458e-02\\n-3.32307279e-01 -7.16139823e-02 2.03996658e-01 -2.68650297e-02\\n-2.42919415e-01 -1.85080588e-01 1.14998862e-01 -9.48742747e-01\\n2.09361196e-01 3.12664658e-02 -1.17322147e-01 3.40018831e-02\\n1.51093455e-03 -6.35039330e-01 2.19732881e-01 -3.77874047e-01\\n1.70578212e-02 8.86068121e-02 -1.77558482e-01 -2.63965338e-01\\n1.20032519e-01 -1.06961615e-01 -2.15121508e-01 3.01325172e-01\\n-3.96660000e-01 4.90828574e-01 5.49385399e-02 1.09649539e-01\\n2.97608189e-02 -2.74376988e-01 9.58173424e-02 -3.04379493e-01\\n-4.92636949e-01 -1.05127014e-01 -2.08957762e-01 -2.34914869e-01\\n6.14242069e-02 -1.48061186e-01 -2.06520796e-01 -6.97211027e-02\\n2.95973063e-01 3.03829238e-02 -2.81012684e-01 -9.94304419e-02\\n1.48731124e-04 -3.03971827e-01 1.40229449e-01 -1.68977365e-01\\n-3.55142877e-02 -1.22655861e-01 2.70333678e-01 -5.04530035e-02\\n1.70569584e-01 -2.90632725e-01 4.34551924e-01 -1.72094330e-01\\n-3.48349899e-01 -5.39716631e-02 5.19366637e-02 9.58978161e-02\\n2.88963944e-01 -5.28372884e-01 -3.03560346e-02 3.25936526e-01\\n-6.70888275e-02 1.54335305e-01 2.62928009e-01 -1.33482769e-01\\n-2.39975169e-01 2.20181450e-01 -5.84503531e-01 5.35563119e-02\\n7.34529257e-01 1.82252929e-01 1.68395564e-01 1.02336675e-01\\n1.35477021e-01 3.23189199e-01 5.09037554e-01 -2.31267698e-02\\n-9.90474746e-02 3.16427410e-01 1.99039698e-01 -5.89628696e-01\\n-1.27246648e-01 -8.99323449e-02 -1.62333533e-01 -3.18595290e-01\\n5.85276425e-01 3.00415158e-01 -2.65147716e-01 -4.72125113e-01\\n7.59237632e-03 -2.13347673e-01 1.57547817e-01 -4.39372398e-02\\n8.43312219e-02 -2.24767759e-01 6.25858009e-01 1.04381358e-02\\n1.19623870e-01 4.37936008e-01 -1.15323672e-02 -3.04998785e-01\\n-9.66249704e-02 6.70695007e-02 1.41826898e-01 4.59671855e-01\\n-4.20624241e-02 6.25601113e-02 -7.20985979e-02 9.84506384e-02\\n-8.72196481e-02 -4.29622084e-02 2.16947332e-01 7.05870762e-02\\n3.33784968e-02 2.04543352e-01 2.69015282e-01 4.52662081e-01\\n3.12951863e-01 4.87195730e-01 2.32122302e-01 4.84317401e-03\\n3.41680050e-01 6.03938878e-01 3.29337835e-01 9.27194357e-02\\n-6.31495565e-02 8.15367103e-02 5.36111742e-03 5.19880764e-02\\n4.37217116e-01 2.46717140e-01 7.62564167e-02 8.21254909e-01\\n3.35786909e-01 3.33085835e-01 7.65032232e-01 -4.59459126e-01\\n-3.57846826e-01 1.26306668e-01 5.02533615e-01 -3.23555976e-01\\n8.14179629e-02 1.63814172e-01 -2.29065940e-01 2.36308262e-01\\n-4.72173840e-01 -1.78858072e-01 -7.45962188e-03 -1.22786082e-01\\n2.38143533e-01 -4.77332324e-02 -1.24973126e-01 8.95215571e-02\\n-1.47233427e-01 -2.85193533e-01 -4.21184540e-01 -2.86689609e-01\\n-3.02887470e-01 -5.94498776e-02 6.69393092e-02 -1.78892419e-01\\n-1.08099960e-01 -2.52784640e-01 -3.34921032e-02 -9.44059063e-03\\n2.69672513e-01 -1.23253785e-01 -1.73376426e-01 -1.11867510e-01\\n9.72316936e-02 2.78140187e-01 6.52463734e-01 -1.43164113e-01\\n2.18894836e-02 -6.11226223e-02 -2.25569114e-01 4.13057767e-02\\n3.90872434e-02 9.22849476e-02 7.60477781e-02 6.69669807e-01\\n-4.41145122e-01 -1.80359855e-01 1.16227172e-01 4.22697902e-01\\n-3.40290457e-01 1.14305384e-01 -8.59222114e-02 1.68251425e-01\\n6.30783364e-02 7.04837441e-02 -2.17238784e-01 6.18465729e-02\\n-1.15720771e-01 -6.08902931e-01 3.31917375e-01 -1.08403765e-01\\n-2.06208721e-01 5.25140427e-02 1.84958845e-01 3.23514372e-01\\n-2.99755663e-01 -7.55286142e-02 -9.88555253e-02 3.26974452e-01\\n1.18164882e-01 4.12459135e-01 -2.28857562e-01 -2.03464210e-01\\n-2.23592177e-01 2.66510159e-01 7.34925866e-02 1.28970712e-01\\n-1.62651658e-01 3.85698348e-01 -2.67810710e-02 2.27136746e-01\\n1.82801023e-01 -4.93438058e-02 -2.76194304e-01 -3.13555151e-01\\n-1.33200794e-01 -1.56399027e-01 1.95779383e-01 -8.66467357e-02\\n2.46485949e-01 -2.91856855e-01 -1.83637306e-01 -3.09928030e-01\\n-2.08246514e-01 -3.16870958e-01 -1.30496118e-02 1.12075299e-01]]',\n", + " 'job_description': 'Job Informationen In this role you will be responsible for the development of new applications as well as application changes, from design and development to testing, and last but not least for the support. This position includes not only software development, but also analysis of the requirements and specification design. In more detail your area of duties will be: Software Design and Development (In cooperation with the Business Experts): - Studying information needs, system flows, data usage and work processes - Investigating problem areas - Producing the required documentation (screen layout, business rules and other documentation) - Developing software solutions - Solutions Testing, Installation and Support: - Defining and executing unit and regression tests, as well as user support during acceptance tests - Preparing the installation of the solutions - Producing the required documentation - Providing second level support Operations Improvements: - Conducting systems analysis and recommending changes About you: As a Software Engineer you have at least four years experience in designing and developing software solutions, bringing along the following experience/profile: - Proficiency in .NET programming (C#), Web development (Angular, TypeScript, Web Services, WebAPI), databases (SQL Server, TRANSACT-SQL, Oracle), data modeling, and performance tuning of both .NET and T-SQL code ) - Strong analytical and problem solving skills - Excellent communication and language skills in English (proficient verbal and in writing), as you will interact with the IT and the Business community on a daily basis (as well as German) - High motivation and capable of working in a challenging international environment in across location teams - Ability to work effectively both within a team and also independently - Driven towards finding solutions and being responsive - Experience in the insurance or reinsurance business is a plus - A university degree or equivalent (e.g. Fachhochschule) in Computer Science Benötigte Skills Versicherung Englisch Konzeptionell / Analytisch .NET C# Angular SQL Server Transact-SQL Oracle Support Test Softwarearchitektur',\n", + " 'soft_skills': '[\"Writing\", \"Cooperation\", \"Investigation\", \"Problem Solving\", \"Communications\"]',\n", + " 'hard_skills': '[\"Operations Support Systems\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Analytics\", \"Data Modeling\", \"Regression Testing\", \"Solution Deployment Descriptor\", \"TypeScript\", \"SQL (Programming Language)\", \"Installation\", \"E (Programming Language)\", \"Design Specifications\", \"Levelling\", \"Web Development\", \"Executable\", \"Reinsurance\", \"Software Engineering\", \"Transact-SQL\", \"Web Services\", \"C# (Programming Language)\", \"Acceptance Test Procedures\", \"Installation Testing\", \"Software Design\", \"Angular (Web Framework)\", \"Performance Tuning\", \"Software Development\", \"Business Communication\", \"Data Flow Diagram\", \"Systems Analysis\", \"Microsoft SQL Servers\", \"Data-Flow Analysis\"]',\n", + " 'languages': \"['English', 'Chuang', 'Latin', 'Arabic']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'junior software engineer medco for the department of information systems',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Healthcare Services & Hospitals',\n", + " 'website': 'www.chuv.ch',\n", + " 'jobdescription_embedded': '[[-3.00035059e-01 3.61983538e-01 4.44360465e-01 -7.17792660e-03\\n5.62070787e-01 -1.37449756e-01 -1.13336578e-01 2.42946625e-01\\n-2.19843201e-02 -4.84850526e-01 -9.91603658e-02 -3.07892561e-01\\n-4.89714779e-02 1.88965708e-01 1.14169598e-01 4.41247940e-01\\n3.86448681e-01 4.34750766e-02 -1.06877811e-01 3.36503685e-01\\n-6.46074489e-02 -1.51778728e-01 4.21410054e-03 8.17152441e-01\\n4.15205777e-01 -4.45732102e-02 -5.73506542e-02 1.49609014e-01\\n-2.30003044e-01 -1.49984866e-01 5.07363498e-01 2.94902641e-02\\n-1.60990119e-01 -3.72379541e-01 1.14553399e-01 2.48411328e-01\\n-3.23082864e-01 -1.17690079e-01 -1.25032410e-01 1.77222803e-01\\n-5.57683289e-01 -3.01134944e-01 -1.02623522e-01 -1.21669605e-01\\n-2.74369895e-01 -3.70370686e-01 9.48063284e-02 -3.09872590e-02\\n8.33352506e-02 1.49189293e-01 -5.47025383e-01 2.15621099e-01\\n-3.89576554e-01 -1.66778952e-01 3.37086499e-01 6.09280050e-01\\n-4.00838852e-02 -4.14307028e-01 -4.87745881e-01 -4.02561933e-01\\n-5.65326326e-02 -2.60696188e-02 4.56933528e-02 -3.86211216e-01\\n4.11144555e-01 9.00602639e-02 -5.72004914e-03 3.85362148e-01\\n-8.06089640e-01 -1.23140171e-01 -3.25153291e-01 1.08123042e-01\\n-4.29066181e-01 -3.10019776e-02 -3.13482702e-01 -2.40982965e-01\\n-6.66429177e-02 3.94444346e-01 -3.24342586e-02 1.19015887e-01\\n-2.39308327e-01 3.82285446e-01 -2.01432556e-01 3.83839250e-01\\n2.69659698e-01 2.43688136e-01 3.10070992e-01 3.65030706e-01\\n-4.57485974e-01 3.77795219e-01 1.28924534e-01 -3.27150077e-01\\n2.27454871e-01 1.09013036e-01 4.74937022e-01 9.19226110e-02\\n1.41731560e-01 1.32084504e-01 -2.91906685e-01 2.95387268e-01\\n2.13811845e-01 -1.99559718e-01 4.51282822e-02 -8.05766135e-02\\n-7.04778358e-03 -4.79073673e-02 -1.68002769e-03 1.65476188e-01\\n-4.13177133e-01 3.36495101e-01 8.56148005e-02 -2.72724450e-01\\n-1.56365946e-01 -5.79533279e-01 1.13614369e-02 1.04003072e-01\\n6.48366064e-02 1.11551940e-01 1.59038499e-01 1.22376904e-01\\n1.81610435e-01 -4.70363833e-02 1.62519693e-01 8.83770227e-01\\n-1.25856802e-01 -3.42019200e-02 -1.34144962e-01 3.06266665e-01\\n8.90472084e-02 -1.88330188e-01 1.54109716e-01 2.90424526e-01\\n-6.58720359e-03 -1.22392751e-01 -2.37822413e-01 4.40019906e-01\\n-1.29727036e-01 -1.90964669e-01 -4.41658556e-01 3.40125471e-01\\n-1.90957069e-01 -4.34564710e-01 5.87118506e-01 -8.26356187e-02\\n1.44019127e-01 -1.57126263e-01 -1.17994323e-02 -8.22910443e-02\\n-1.31153569e-01 2.13340163e-01 2.53410265e-03 2.23886713e-01\\n-3.21313739e-01 -2.24193215e-01 -9.18591917e-02 2.49286920e-01\\n-3.38537425e-01 2.97612160e-01 -7.92742223e-02 -9.15120170e-02\\n2.67795205e-01 1.66635007e-01 -3.66973519e-01 1.85097575e-01\\n-1.18098199e-01 -1.10540226e-01 -6.61244169e-02 4.58446741e-01\\n-1.32654071e-01 2.13160932e-01 -1.42370611e-02 -3.50442648e-01\\n4.66153681e-01 1.19258486e-01 3.25152159e-01 -1.06508927e-02\\n3.21369588e-01 -1.51209190e-01 2.79434800e-01 1.03953734e-01\\n-7.00411677e-01 3.89611870e-01 -7.01834559e-02 -2.13751033e-01\\n3.74336354e-03 -1.02307774e-01 4.65106070e-01 -2.54125476e-01\\n-7.04707354e-02 -1.76333070e-01 -3.54473174e-01 -4.63893920e-01\\n-1.96422324e-01 1.27239637e-02 4.41343784e-01 -4.54905361e-01\\n-7.38131478e-02 3.95377994e-01 -6.31911635e-01 -2.00359508e-01\\n1.88462973e-01 2.50258654e-01 1.38608143e-01 1.72260046e-01\\n-1.21526673e-01 -6.64688766e-01 4.85400110e-02 -5.14919817e-01\\n-3.84826243e-01 1.28575832e-01 -2.86289275e-01 1.26380429e-01\\n8.47453400e-02 2.35035457e-02 -2.82117780e-02 4.67723086e-02\\n-3.38407069e-01 7.21806437e-02 8.54065791e-02 -5.71014024e-02\\n3.07594359e-01 1.76642686e-02 -3.67082477e-01 4.78533149e-01\\n-1.86889499e-01 4.62018341e-01 1.17807738e-01 -8.33056927e-01\\n6.30820274e-01 3.69473755e-01 -3.51999328e-02 -3.68397951e-01\\n5.50363183e-01 -3.31260920e-01 -1.74863935e-01 1.57397926e-01\\n-3.67648214e-01 -1.54682174e-01 2.22167194e-01 -3.21027189e-01\\n-2.22786993e-01 5.83073795e-01 5.71780577e-02 9.26069319e-02\\n4.92103398e-01 -3.75210047e-01 -2.09360927e-01 1.03194222e-01\\n-2.05078959e-01 -3.08929324e-01 -5.16978860e-01 -8.15665424e-02\\n-1.30044356e-01 -4.63237584e-01 -2.11823523e-01 -3.89117658e-01\\n-1.49591237e-01 -2.84421951e-01 -1.72048569e-01 2.19392136e-01\\n2.09453434e-01 1.76951244e-01 -4.40159142e-02 4.42950465e-02\\n-3.55879515e-02 -5.65842628e-01 -4.79751751e-02 -4.41436023e-02\\n3.68573934e-01 2.91733623e-01 1.59429044e-01 5.70160337e-03\\n8.23950544e-02 5.36124110e-01 -4.61518884e-01 -3.59381318e-01\\n1.01671629e-01 5.53791076e-02 -1.06429607e-01 -3.71658839e-02\\n1.75495595e-01 3.03211212e-01 -2.68508077e-01 3.82938161e-02\\n-6.62147161e-03 -2.49507464e-02 3.97147000e-01 -2.67019942e-02\\n-1.86298266e-01 -1.25940621e-01 -1.64433196e-01 2.01995805e-01\\n-5.89219570e-01 -2.65446037e-01 4.29929733e-01 1.01364225e-01\\n1.29170820e-01 1.23921372e-01 1.90388918e-01 3.15314010e-02\\n-4.40045029e-01 -2.82660961e-01 3.08069229e-01 1.00680292e-01\\n8.97761434e-02 1.51667729e-01 -4.76597324e-02 -5.22465229e-01\\n-3.05674839e+00 -1.33334085e-01 8.87885839e-02 -2.47226775e-01\\n2.62427300e-01 -1.38471335e-01 1.00698337e-01 -1.00647137e-01\\n-2.82645464e-01 9.99853387e-03 -2.49801263e-01 -1.97526515e-01\\n9.51256603e-02 2.38607824e-01 7.14064091e-02 3.42387408e-02\\n-4.28449251e-02 -2.37445861e-01 8.61925930e-02 2.84338295e-01\\n-1.19588878e-02 -7.73476720e-01 -7.99035374e-03 -6.77736923e-02\\n1.66918471e-01 1.07998513e-01 -5.96637309e-01 -1.11885183e-02\\n-3.73665035e-01 -2.57558316e-01 1.81780428e-01 -3.07062060e-01\\n-1.16029792e-01 3.24119478e-01 1.99644938e-01 -7.13339224e-02\\n1.07592568e-02 -3.00836176e-01 -2.50040740e-01 -6.59163654e-01\\n1.81183949e-01 -6.06666565e-01 4.16864082e-02 -1.66898653e-01\\n6.59254968e-01 -3.01620901e-01 2.27224231e-01 2.80833453e-01\\n1.59079611e-01 1.81084901e-01 8.84357393e-02 5.14040850e-02\\n-3.00230145e-01 -2.70910293e-01 -1.12118125e-01 -2.42464393e-01\\n6.28367364e-01 3.86322409e-01 -2.13607371e-01 -9.11915749e-02\\n5.81795648e-02 -3.62291068e-01 -5.40301979e-01 -3.53309691e-01\\n-9.79812294e-02 -1.72546476e-01 -6.80168509e-01 -3.93984497e-01\\n-1.15329631e-01 -1.33489698e-01 -4.22258452e-02 6.83342159e-01\\n-4.62741017e-01 -3.29211831e-01 -3.48696522e-02 -6.77632928e-01\\n3.13090861e-01 -3.01966429e-01 6.40542060e-02 -2.69656241e-01\\n-3.30017686e-01 -5.30000091e-01 1.11605957e-01 -1.60983671e-02\\n-1.18153721e-01 -1.72929168e-01 1.19316027e-01 -2.46215776e-01\\n-2.98391908e-01 -5.19364178e-01 4.21613276e-01 1.17969662e-01\\n4.08891916e-01 2.10435301e-01 1.98674455e-01 -6.50608689e-02\\n2.81263173e-01 1.27188697e-01 -1.21781386e-01 -3.06379318e-01\\n1.20233506e-01 2.49918550e-04 4.48907226e-01 -1.80612147e-01\\n-3.68651822e-02 9.57769454e-02 -2.35675395e-01 -5.94640747e-02\\n4.58130121e-01 -1.95846893e-03 4.15652096e-02 -1.36039346e-01\\n3.73819113e-01 -4.26120758e-01 -6.86664283e-02 1.94678307e-01\\n5.42345159e-02 6.63331985e-01 3.32273766e-02 -3.68782341e-01\\n-4.07801978e-02 4.93418753e-01 9.39974189e-03 -1.46046169e-02\\n1.17506348e-02 1.78894326e-01 -1.55298769e-01 1.86173141e-01\\n5.48610091e-02 -1.42134592e-01 -2.42442012e-01 -1.02301627e-01\\n-1.18837364e-01 3.85284543e-01 2.72803813e-01 1.60218194e-01\\n-8.72684121e-02 -3.54359627e-01 -4.65783924e-02 2.44814098e-01\\n2.68395603e-01 4.27361727e-01 3.40087980e-01 -2.69384325e-01\\n2.55174357e-02 3.44860256e-01 -1.09492019e-01 3.39766651e-01\\n-3.40910017e-01 1.18652001e-01 -5.63863516e-01 -1.85167968e-01\\n-3.00910264e-01 -2.88967222e-01 2.42015138e-01 3.21130961e-01\\n1.77178070e-01 -1.05794132e-01 1.37466967e-01 -3.56750786e-01\\n2.11783513e-01 2.57244200e-01 2.29308069e-01 7.26502016e-02\\n-1.41104639e-01 6.73385501e-01 3.93916816e-02 -1.36842236e-01\\n-5.62194027e-02 1.00371763e-02 -1.34719372e-01 -3.12145174e-01\\n6.70060888e-03 -4.76588488e-01 -1.82723984e-01 3.38606715e-01\\n7.09000751e-02 -6.28865585e-02 -2.25250885e-01 3.73426080e-01\\n1.44180655e-03 -2.14185894e-01 -1.87222481e-01 -4.87079173e-02\\n2.22224206e-01 2.33383909e-01 3.10672790e-01 -5.64478755e-01\\n-8.03505778e-02 9.58180428e-02 -2.34673843e-02 5.19917071e-01\\n1.28718913e-01 3.32122222e-02 -3.04744840e-01 -2.07423866e-01\\n3.40077430e-01 -1.72427341e-01 -3.16100828e-02 -1.53439380e-02\\n9.24445689e-02 -1.38993829e-01 -3.89402598e-01 9.97232050e-02\\n-3.07223741e-02 -2.37960964e-01 3.91229019e-02 9.22504142e-02\\n7.53197074e-02 6.09467626e-02 -5.98304629e-01 -1.75097436e-01\\n-1.67163819e-01 7.52256513e-02 -5.99374995e-03 -5.07458866e-01\\n-4.16807830e-02 -1.24140367e-01 -5.65852642e-01 2.58499682e-01\\n-1.31889537e-01 -3.39706466e-02 1.61520645e-01 5.13504781e-02\\n-3.56561035e-01 -2.06277341e-01 1.08612724e-01 1.76079184e-01\\n-3.16559643e-01 -2.75190592e-01 1.10821910e-02 -9.92156863e-01\\n1.66068658e-01 5.48323393e-02 -1.65277869e-01 6.82473630e-02\\n1.22189693e-01 -7.23813951e-01 1.26398414e-01 -3.32096636e-01\\n1.99250299e-02 1.15322858e-01 -2.66815245e-01 -4.15241659e-01\\n1.59988105e-01 -7.03539252e-02 -1.61208257e-01 3.25673491e-01\\n-4.61650848e-01 4.90845561e-01 -1.47288248e-01 -9.86439437e-02\\n4.06275019e-02 -3.34151328e-01 1.58574477e-01 -1.65461212e-01\\n-3.56565952e-01 -2.64601171e-01 -3.01129103e-01 -3.86778891e-01\\n2.22498029e-02 -3.52318168e-01 -4.03638147e-02 7.04466999e-02\\n3.66939306e-01 2.79639494e-02 -1.97493881e-01 -1.52148098e-01\\n7.10444227e-02 -4.28212702e-01 5.56281880e-02 -9.75441039e-02\\n-1.43659674e-02 -1.44667745e-01 2.08054960e-01 3.37411910e-02\\n2.62298256e-01 -2.76447833e-01 5.08225024e-01 -3.22870106e-01\\n-4.10671234e-01 -1.37253508e-01 2.30009109e-02 3.31696197e-02\\n3.99647772e-01 -3.95186067e-01 9.22752470e-02 3.43813777e-01\\n2.53291965e-01 4.65510897e-02 2.42221087e-01 -2.77115941e-01\\n-5.34895808e-02 1.91484585e-01 -3.66234124e-01 2.05553085e-01\\n8.42537761e-01 2.68569946e-01 3.25346708e-01 1.45069271e-01\\n8.08566511e-02 3.27130377e-01 5.21162271e-01 -6.31700009e-02\\n-7.80357793e-02 2.59482086e-01 1.84369728e-01 -3.23108256e-01\\n-1.99285075e-01 -1.75386593e-02 -1.12789690e-01 -3.28607678e-01\\n5.88476658e-01 3.37012053e-01 -3.77013326e-01 -1.77071810e-01\\n-2.16785386e-01 -2.08481610e-01 3.46474409e-01 -3.22753340e-02\\n-9.71568525e-02 -1.09193139e-01 3.21281463e-01 -1.06178910e-01\\n2.38572761e-01 5.76311350e-01 -1.51160553e-01 -4.14378524e-01\\n-4.13754433e-02 3.55348170e-01 6.19533248e-02 4.16227520e-01\\n-1.20524712e-01 3.27054203e-01 1.66101586e-02 1.70951158e-01\\n-1.78174481e-01 -2.53256559e-02 2.83410162e-01 6.12890944e-02\\n2.69634485e-01 2.14625135e-01 3.88987243e-01 4.55691040e-01\\n2.83973783e-01 4.88232315e-01 2.93742806e-01 6.66268123e-03\\n4.98562753e-01 6.02943599e-01 4.30620968e-01 4.51423153e-02\\n1.47982957e-02 2.04432040e-01 8.37302506e-02 4.38843258e-02\\n3.13088387e-01 3.35341692e-01 6.35313690e-02 9.94269311e-01\\n2.51577020e-01 3.27685982e-01 7.13907599e-01 -6.27548814e-01\\n-2.99214512e-01 8.59089792e-02 5.50635397e-01 -4.47144896e-01\\n5.40072210e-02 4.19687778e-02 -2.27692217e-01 3.44874948e-01\\n-5.19270360e-01 -1.09892771e-01 -5.30936718e-02 1.81326270e-01\\n2.41788030e-02 -8.75484869e-02 -1.01246491e-01 2.48785876e-02\\n-1.87385947e-01 -2.25737348e-01 -3.05894077e-01 -1.32087961e-01\\n-3.41794491e-01 -1.53032750e-01 -5.80528937e-03 -1.02582403e-01\\n-1.33049004e-02 -2.74541378e-01 -7.21229166e-02 -3.97043750e-02\\n5.75172544e-01 -2.86352843e-01 -2.08839148e-01 -1.11376718e-01\\n3.12505126e-01 2.99222797e-01 6.61733687e-01 1.14860013e-03\\n-3.48253995e-02 -2.55359024e-01 -2.34566182e-01 6.96792454e-02\\n-8.21093395e-02 9.60538015e-02 4.69930135e-02 2.71116763e-01\\n-1.92358404e-01 -1.12043768e-01 1.16288483e-01 3.07152033e-01\\n-4.12232161e-01 -1.33328766e-01 -2.03985885e-01 1.19059302e-01\\n-3.91247123e-03 2.62317836e-01 -1.94980145e-01 5.64955845e-02\\n-1.57533824e-01 -5.43533564e-01 3.65039676e-01 -1.85788065e-01\\n-1.83677763e-01 -5.59363365e-02 2.66006261e-01 2.66440868e-01\\n-1.77906334e-01 -2.16637440e-02 -3.15545723e-02 2.85058022e-01\\n-9.34405252e-03 3.11616302e-01 -2.23829150e-01 -2.48703182e-01\\n-3.55325818e-01 2.39375353e-01 -4.14124914e-02 1.02587633e-01\\n2.35460699e-04 5.12061715e-01 3.74462493e-02 1.58546656e-01\\n3.61870110e-01 -7.27597475e-02 -2.90184677e-01 -3.13117445e-01\\n-1.83845267e-01 -2.68800318e-01 -5.72934300e-02 -4.00517508e-02\\n3.03331316e-01 -3.99256349e-01 -1.82873636e-01 -3.26407313e-01\\n-5.16338795e-02 -3.46780002e-01 -5.22978529e-02 -3.55726704e-02]]',\n", + " 'job_description': 'The Lausanne University Hospital (CHUV) is one of five Swiss university hospitals. Through its collaboration with the Faculty of Biology and Medicine of the University of Lausanne and the EPFL, CHUV plays a leading role in the areas of medical care, medical research and training. The mission of the Data Science group, wich part of CHUV Department of Information Systems, is to foster the adoption and use of data science and innovative tools in medical informatics within the hospital to significantly improve biomedical research and hospital key processes. To achieve this ambitious goal, one of the core tasks of the group is to develop the necessary IT infrastructure for providing physicians and scientists with the means to smoothly access and use, for their clinical research projects, the massive volume of clinical data that every day is generated within the hospital. Our current and future challenges lie at the intersection of big data, medical informatics, data protection and artifical intelligence. To address these challenges and push the bar furhter, a part of the Data Science Group is specifically focused on projects in Medical Informatics that will explore innovative Tools and technologies for implementing new prototype applications that could potentially be deployed in operational settings. As a Junior Software Engineer within our Data Science team, you will be responsible for : Defining technical and functional specification for new medical informatics applications based on end-users (scientists, physicians and IT experts) requirements and latest technological advances from the research academic community Developing and documenting robust and mature proofs of concept and prototypes of these applications and help in the transition to production environments within the team. In your past experiences, you have shown a proven track record of crafting innovative and elegant software solutions and the capacity to fully document the solutions you have developed. Your are passionate about technology and excited about working in the medical field. Requirements This position requires a university degree in Computer Science or Medical Informatics or equivalent discipline with : Proficiency in at least one object-oriented design development and data-driven development language (JAVA is highly preferable, Go is a plus) Excellent understanding of data structures and algorithms Ability to implement robust prototypes almost ready for deployment in production settings Experience with RESTful JSON APIs and design of micro-services and Web services Experience with relational database management systems and SQL Experience with front-end Framework such as VueJS, WebSockets ans HTML/CSS Experience with DevOps Tools for software deployment and automation using containerization frameworks such as Docker (Kubernetes and Docker Swarm are a plus) Experience with Agile software development as a team and version control (OAuth, OpenID connect, etc.) Oral and written proficiency in French is required to help you interact with end-users and peers on a daily basis. Benefits If you become an employee at the Centre Hospitalier Universitaire Vaudois, we will offer you the following : High social benefits Three days of training per year 25 working days of vacation per year Very good restaurants with preferential rates. ',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Hospitality\", \"Operations\", \"Innovation\", \"Socialization\"]',\n", + " 'hard_skills': '[\"Automation\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Model-Driven Development\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Informatics\", \"Relational Database Management Systems\", \"MASSIVE (Software)\", \"Prototype (Manufacturing)\", \"OAuth\", \"IT Infrastructure\", \"Version Control\", \"DevOps\", \"Prototyping\", \"Docker Swarm\", \"Track (Rail Transport)\", \"Medic\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Functional Specification\", \"Software Engineering\", \"Agile Software Development\", \"Data Science\", \"Web Services\", \"Docker (Software)\", \"Biology\", \"Management Systems\", \"Clinical Research\", \"Object-Oriented Design\", \"Big Data\", \"Community Development\", \"Clinical Data Warehouse\", \"Data Structures\", \"Front End (Software Engineering)\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Medical Research\", \"OpenID\", \"JSON\", \"Database Management Systems\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"SQL (Programming Language)\", \"Software Deployment\", \"Adoptions\", \"Information Systems\", \"Java Scripting Languages\"]',\n", + " 'languages': \"['English', 'Nauru']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'programmer/ data science support (m/f) - 80%',\n", + " 'location': 'Basel',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.69559181e-01 2.61045039e-01 5.42519391e-01 -5.19233719e-02\\n5.73635876e-01 -1.75223008e-01 1.42872229e-01 5.47711968e-01\\n-1.49483308e-01 -3.14195931e-01 -9.71150696e-02 -2.80745804e-01\\n-5.10975625e-03 1.65138632e-01 7.38712028e-02 3.29974532e-01\\n2.57073194e-01 1.21915787e-01 -2.08528116e-01 3.22041720e-01\\n1.70315459e-01 -5.16750924e-02 2.15614945e-01 5.23017287e-01\\n4.37158197e-01 -2.26848647e-02 -5.94062358e-02 -1.19069122e-01\\n-2.85818309e-01 -2.79750973e-01 3.46649140e-01 -2.99130045e-02\\n-8.70705172e-02 -3.56072038e-01 2.88980501e-03 1.15294307e-02\\n-2.02563867e-01 -9.24908146e-02 -1.03959823e-02 1.12045050e-01\\n-3.99036109e-01 -2.78011531e-01 -6.99840998e-03 1.20948842e-02\\n-2.23054960e-01 -3.23620081e-01 4.56904024e-02 -8.19536373e-02\\n2.38736629e-01 -1.08799655e-02 -4.92464870e-01 3.84508371e-01\\n-2.17007533e-01 -3.33131164e-01 2.51089334e-01 6.32812142e-01\\n1.32363047e-02 -4.16864097e-01 -4.95691597e-01 -2.41715416e-01\\n1.56577259e-01 -1.36390507e-01 -3.19536626e-02 -2.44558737e-01\\n2.92316526e-01 1.42921150e-01 1.13413528e-01 3.46918553e-01\\n-7.33965993e-01 -4.56308499e-02 -2.03697920e-01 -1.03590615e-01\\n-2.48784602e-01 -3.24511491e-02 -2.79180169e-01 -1.09781079e-01\\n-8.13184232e-02 4.25945759e-01 7.12032244e-02 3.46262753e-03\\n-8.56100619e-02 2.86568940e-01 -1.51810765e-01 2.98519999e-01\\n2.66303480e-01 1.64818302e-01 6.28362447e-02 2.85928935e-01\\n-4.04340386e-01 3.96595925e-01 2.30243042e-01 -2.06571236e-01\\n2.05661267e-01 1.27953410e-01 4.77838993e-01 -5.30673489e-02\\n7.70454705e-02 9.09551606e-02 -2.75196165e-01 2.83835948e-01\\n1.07133336e-01 -2.86202669e-01 -4.04351540e-02 -1.13105968e-01\\n7.63121061e-03 -4.14532498e-02 8.66433606e-02 2.87331671e-01\\n-2.96275556e-01 5.19915879e-01 1.16746739e-01 -1.44542679e-01\\n-6.07493967e-02 -4.39251155e-01 -1.08514898e-01 -7.86080658e-02\\n1.03083931e-01 1.18938640e-01 1.74530551e-01 1.76006839e-01\\n3.53795618e-01 -4.17325273e-02 1.86267495e-01 8.00958335e-01\\n-8.35233368e-03 2.06699297e-01 -3.00938994e-01 2.67021954e-01\\n9.40238982e-02 -1.82002157e-01 1.24620430e-01 2.84927279e-01\\n6.12312593e-02 -4.72794473e-03 -8.46888348e-02 1.66716695e-01\\n-1.30873427e-01 -2.09762424e-01 -2.59347469e-01 1.32891521e-01\\n-7.88737088e-02 -2.57980108e-01 4.35365498e-01 6.72961995e-02\\n5.06005995e-02 2.92364527e-02 2.98433900e-02 5.16179577e-02\\n-1.50774702e-01 3.22195649e-01 3.02110277e-02 5.48875034e-02\\n-2.82821149e-01 -2.09953636e-01 -3.23273689e-01 -6.94895862e-03\\n-1.30527616e-01 4.30440344e-02 -1.40676603e-01 -9.75936130e-02\\n2.64813006e-01 1.99664645e-02 -3.12710434e-01 4.04200733e-01\\n2.19235220e-03 -2.83689145e-02 -7.41820559e-02 2.66578704e-01\\n-5.74858375e-02 2.59814113e-01 -8.23077857e-02 -1.31990656e-01\\n5.05799115e-01 -2.15233471e-02 -2.62188111e-02 -4.64327857e-02\\n3.96781087e-01 -7.18103349e-02 1.77392751e-01 1.30902916e-01\\n-6.40940428e-01 2.85164058e-01 -4.20664623e-02 -1.06860586e-01\\n1.75538555e-01 -6.35072216e-02 3.85438353e-01 -2.56160587e-01\\n1.82692066e-01 -6.12594420e-03 -4.68635619e-01 -3.67841691e-01\\n-1.63509533e-01 -1.14069656e-01 3.80764425e-01 -3.36363763e-01\\n-1.66630387e-01 8.75090212e-02 -4.05517995e-01 3.32829244e-02\\n2.90465802e-01 1.78733528e-01 1.05847955e-01 1.38064787e-01\\n-2.13794723e-01 -3.49654526e-01 1.87972382e-01 -2.99215347e-01\\n-1.69602990e-01 1.66425571e-01 -2.08925709e-01 2.64979154e-01\\n1.81014344e-01 -6.25934154e-02 -1.29213616e-01 8.04973207e-03\\n-5.87571710e-02 -9.19925645e-02 2.28851020e-01 3.14909406e-02\\n1.87288523e-01 -2.16550864e-02 -3.79277349e-01 4.62352127e-01\\n-1.93898380e-01 6.02391958e-01 6.46469444e-02 -9.40138519e-01\\n4.41719562e-01 3.05685431e-01 2.04894543e-02 -2.92578965e-01\\n6.16035938e-01 -2.84800082e-01 5.47714680e-02 9.40331221e-02\\n-3.94646257e-01 -3.31888109e-01 1.70989558e-01 -4.70160581e-02\\n-2.36498311e-01 4.84345973e-01 8.76298323e-02 6.06664941e-02\\n9.57808122e-02 -2.22869202e-01 -1.86219424e-01 8.61550421e-02\\n7.47404471e-02 -2.26348668e-01 -4.30374801e-01 -5.15934154e-02\\n-6.20339178e-02 -3.83331120e-01 -2.18496710e-01 -3.41895312e-01\\n-3.65211666e-01 -3.40019256e-01 -1.97324216e-01 1.96142510e-01\\n1.60420030e-01 5.39122336e-02 6.36644810e-02 1.60047218e-01\\n-1.51293576e-01 -5.04827797e-01 9.13019329e-02 2.14705750e-01\\n3.98680866e-01 1.81740731e-01 3.04496363e-02 5.51700965e-02\\n-8.48451778e-02 6.71570718e-01 -1.77370533e-01 -1.40297905e-01\\n2.00412825e-01 2.99488425e-01 1.48102017e-02 -1.67427436e-01\\n1.18504316e-01 3.21542799e-01 -1.54790223e-01 2.05655098e-01\\n-1.19753577e-01 2.09084414e-02 2.43226901e-01 4.82034460e-02\\n-2.89709657e-01 -2.03726515e-01 -1.91518083e-01 1.54055953e-01\\n-4.73538905e-01 -2.28871688e-01 5.89874029e-01 8.72442722e-02\\n8.71996135e-02 9.91741046e-02 2.54528403e-01 -6.36037588e-02\\n-1.05949089e-01 -3.09775740e-01 1.57138392e-01 9.38181579e-02\\n1.15508707e-02 1.62044168e-01 -1.56841025e-01 -6.62468731e-01\\n-3.50264668e+00 -1.57750204e-01 7.17371255e-02 -2.68244207e-01\\n2.68046975e-01 -2.36085445e-01 2.05025017e-01 -2.07913946e-02\\n-2.02054650e-01 1.16239227e-01 -2.67856568e-01 -1.35206744e-01\\n2.28944927e-01 3.40003788e-01 6.49405178e-03 2.51488596e-01\\n1.77406251e-01 -2.19866812e-01 -5.85528053e-02 3.48811984e-01\\n-1.65424749e-01 -5.20501733e-01 2.81273991e-01 -4.02567051e-02\\n3.27050209e-01 4.29545105e-01 -2.75370926e-01 -1.17527418e-01\\n-1.09366521e-01 -2.06329063e-01 2.01657712e-01 -2.47290939e-01\\n-1.12287365e-01 3.12663108e-01 1.60509109e-01 -7.41810054e-02\\n1.41327783e-01 -5.29600322e-01 -1.34378657e-01 -3.55879635e-01\\n1.83680817e-01 -7.41602480e-01 -4.79431963e-03 2.37614126e-03\\n7.31937647e-01 -3.50656658e-01 4.62759063e-02 1.14367023e-01\\n2.23921061e-01 1.88386276e-01 4.25716303e-02 -2.93453000e-02\\n-1.51794910e-01 -2.49134392e-01 -5.57363629e-02 -6.52535260e-02\\n4.31551784e-01 5.07369220e-01 -2.11863145e-01 8.27106461e-03\\n1.66721612e-01 -1.38316602e-01 -4.27338153e-01 -3.73184592e-01\\n-2.45091781e-01 -3.17767799e-01 -6.76983356e-01 -3.97260159e-01\\n-1.19645819e-01 -1.57112554e-01 -1.84190094e-01 3.91172469e-01\\n-2.42083982e-01 -3.48317742e-01 -3.87924276e-02 -3.33766192e-01\\n1.40076846e-01 1.09588457e-02 -7.20779598e-02 -2.23218873e-01\\n-2.81568110e-01 -4.11793023e-01 -2.79626790e-02 6.95841387e-02\\n-8.75670612e-02 -2.33418986e-01 4.79355678e-02 -6.62015155e-02\\n-3.27448517e-01 -5.08184910e-01 4.58720684e-01 1.16785966e-01\\n4.00476277e-01 1.36209190e-01 2.40951926e-01 1.34643272e-01\\n3.12567264e-01 -2.47941270e-01 2.66792458e-02 -4.71571624e-01\\n1.16266206e-01 9.16449353e-03 5.59624851e-01 -2.56389081e-01\\n1.99515931e-03 8.12223330e-02 -2.51877517e-01 -1.41523287e-01\\n2.92765617e-01 -1.72457304e-02 2.18308955e-01 -2.50974983e-01\\n2.25334942e-01 -2.50393450e-01 -3.39879662e-01 2.09343527e-02\\n1.54555872e-01 5.43740451e-01 1.74582098e-02 -3.80020529e-01\\n-2.87530094e-01 4.26547617e-01 -2.07242206e-01 -1.12821490e-01\\n-3.56357098e-01 7.33850151e-02 -2.10485220e-01 1.63525477e-01\\n-1.54642453e-02 -4.94578071e-02 -2.38461822e-01 -1.73267499e-01\\n-1.61419302e-01 2.41700232e-01 2.18712926e-01 3.46433818e-02\\n1.52585402e-01 -4.36194181e-01 -3.44422981e-02 7.53684938e-02\\n1.44002408e-01 2.56624132e-01 4.16669138e-02 -1.53528824e-01\\n-1.01806212e-03 2.27999210e-01 -8.80449116e-02 1.05122931e-01\\n-2.43456647e-01 1.34414107e-01 -4.31117445e-01 -3.62720400e-01\\n-2.43829682e-01 -2.10965201e-01 -6.89298511e-02 2.78716683e-01\\n2.30407342e-01 -7.77033791e-02 -8.78668278e-02 -5.22052884e-01\\n3.34861100e-01 -5.65334111e-02 1.90578148e-01 1.43789068e-01\\n1.21636942e-01 3.59480709e-01 5.80476783e-02 -1.44563079e-01\\n-9.27148759e-02 8.31906870e-02 -1.59935772e-01 -6.08359538e-02\\n8.06473345e-02 -4.16505367e-01 -1.24211408e-01 4.64099556e-01\\n1.82102531e-01 -2.44245932e-01 -2.13420033e-01 2.72017390e-01\\n3.12703401e-02 -3.62795502e-01 -2.72004664e-01 -1.47969881e-02\\n2.91681647e-01 6.18082434e-02 3.02771360e-01 -4.25682724e-01\\n-5.09558385e-03 -7.37296864e-02 -6.51836172e-02 4.34307694e-01\\n8.92547444e-02 -9.57039595e-02 -7.29712397e-02 -2.33184561e-01\\n3.82072628e-01 -4.68664691e-02 -3.54509316e-02 -3.82856466e-02\\n9.44935530e-02 -5.13739586e-02 -4.34929341e-01 1.06125011e-03\\n-7.39746541e-02 -3.69003177e-01 2.43522078e-02 9.03518796e-02\\n1.51525259e-01 1.18993938e-01 -4.34937388e-01 -2.32588843e-01\\n-4.17502046e-01 -1.85799718e-01 -6.65295795e-02 -4.70479012e-01\\n-5.96743040e-02 4.17221822e-02 -5.89449406e-01 1.33043408e-01\\n-2.68843830e-01 -3.94336879e-02 1.83014214e-01 -1.57001764e-02\\n-4.20196533e-01 -1.29450887e-01 1.20374054e-01 7.48296157e-02\\n-2.50387102e-01 -1.48632959e-01 4.73291203e-02 -1.01826227e+00\\n1.69331878e-01 -7.56412148e-02 -1.19695023e-01 1.28890544e-01\\n-4.08417992e-02 -5.30741334e-01 1.68627098e-01 -3.02677006e-01\\n-3.13305944e-01 -1.13266230e-01 -2.57058978e-01 -5.31323612e-01\\n7.08769858e-02 7.74386749e-02 -2.51126230e-01 2.67384976e-01\\n-3.23223263e-01 4.46502954e-01 2.89931409e-02 1.22006893e-01\\n-4.98275533e-02 -3.16053182e-01 3.13113108e-02 -5.51318526e-01\\n-4.13637400e-01 -7.06232414e-02 -2.91413933e-01 -1.11475408e-01\\n1.97787192e-02 -1.95635259e-01 -9.02907029e-02 5.58687598e-02\\n1.88760564e-01 1.58019036e-01 1.93215348e-02 -1.58110902e-01\\n1.74831331e-01 -6.10993922e-01 -2.91324407e-02 -2.66821422e-02\\n-1.75215490e-02 -1.07206263e-01 3.46325934e-01 5.62866628e-02\\n1.33578300e-01 -3.36930424e-01 3.26041371e-01 -3.95532966e-01\\n-2.82947332e-01 -1.03897728e-01 -1.43822925e-02 -1.90414004e-02\\n4.36966419e-01 -5.25637865e-01 3.30386721e-02 1.79084182e-01\\n3.57898623e-02 4.40014116e-02 2.58653700e-01 -2.01891754e-02\\n-1.78549930e-01 2.21666709e-01 -4.71326292e-01 8.77693519e-02\\n7.45355308e-01 1.19806975e-01 1.14133827e-01 1.54601410e-01\\n1.56324595e-01 2.52127022e-01 4.39371616e-01 -3.45676541e-02\\n-1.70427799e-01 2.88810760e-01 5.38588353e-02 -6.93008661e-01\\n6.78328937e-03 6.48628101e-02 -3.10047776e-01 -3.78391713e-01\\n7.11907029e-01 3.98961246e-01 -3.09499472e-01 -1.81525901e-01\\n-3.24246943e-01 -2.68769801e-01 6.51824921e-02 -1.76272452e-01\\n1.31830409e-01 -7.76034966e-02 5.01379073e-01 -3.15096788e-02\\n3.34305167e-01 4.74057347e-01 -2.82085627e-01 -2.25963771e-01\\n-1.39362039e-02 4.03376743e-02 1.00596718e-01 3.51312995e-01\\n-5.87005503e-02 2.34526485e-01 -1.57851037e-02 2.03820631e-01\\n-1.10200256e-01 1.59019139e-02 3.88498716e-02 -5.23046255e-02\\n1.04269981e-01 8.05894881e-02 6.15327716e-01 2.53196776e-01\\n3.58386964e-01 4.32132602e-01 3.34582210e-01 6.42120615e-02\\n5.59861064e-01 4.41677213e-01 2.45480642e-01 1.34995341e-01\\n5.61291054e-02 5.86763211e-02 1.26304463e-01 4.12375741e-02\\n3.18288386e-01 3.36260140e-01 2.84704231e-02 9.10725772e-01\\n3.37712348e-01 3.09503317e-01 5.87512612e-01 -4.98412520e-01\\n-3.38098049e-01 -7.85477832e-03 4.13627356e-01 -3.67102951e-01\\n-6.27095252e-02 8.89910311e-02 -6.79995194e-02 1.35750145e-01\\n-3.77390772e-01 -1.78885475e-01 -9.30633023e-02 2.09513754e-01\\n8.29699859e-02 -1.87860638e-01 -2.45456874e-01 5.96090779e-03\\n-1.29184738e-01 -4.73713949e-02 -4.16860819e-01 -9.01618525e-02\\n-6.71485439e-02 -2.71332860e-01 -1.96409330e-01 -9.96501222e-02\\n-5.47715537e-02 -3.18350732e-01 -9.65505466e-02 -1.46008292e-02\\n2.33853787e-01 -2.32009888e-02 4.96165976e-02 -1.44123480e-01\\n3.21401536e-01 2.35773399e-01 5.17751694e-01 -2.33540758e-02\\n2.60680646e-01 -2.69019067e-01 -1.34609401e-01 1.40931562e-01\\n1.56894565e-01 1.02525009e-02 5.16251363e-02 4.09296632e-01\\n-3.22130501e-01 -1.26402259e-01 1.53372973e-01 4.42921460e-01\\n-3.94530982e-01 -7.64973536e-02 -5.67400493e-02 1.92955613e-01\\n8.60839039e-02 8.53603333e-02 -3.55850339e-01 7.70744979e-02\\n-2.81288654e-01 -3.80233735e-01 2.18698695e-01 -6.21601045e-02\\n-1.00984126e-01 -1.35791479e-02 2.59958327e-01 2.11997464e-01\\n-2.14227021e-01 -9.65067372e-03 -9.41812545e-02 4.65984121e-02\\n1.99218988e-01 3.02736729e-01 -2.76144505e-01 -2.79398412e-01\\n-1.86256424e-01 2.50352621e-01 -1.39549315e-01 7.01435283e-02\\n5.17217629e-03 3.56534421e-01 2.24303119e-02 1.68227211e-01\\n4.28202271e-01 -2.15557992e-01 -1.66514173e-01 -3.09013516e-01\\n-3.04064721e-01 -3.36886525e-01 -1.09070856e-02 -1.24030970e-01\\n1.13476910e-01 -3.18715453e-01 -1.44572891e-02 -1.33754620e-02\\n-1.14702627e-01 -3.43547970e-01 -9.17008612e-03 -1.23789934e-02]]',\n", + " 'job_description': \"For our client we are currently looking for aYour challenges•Use of programming experience to establish tailor-made software solutions based on different programming languages•Support for operational requirements of specific parts of the business, like troubleshooting and system migration•Responsible for system administration activities•Create all important documentation•Track, Troubleshoot and resolve system related problems•Apply and write suitable testing procedures and scriptsYour skills•Experience in at least one of these programming languages (HTML, CSS, JavaScript, Python, .NET, MS Office)•Background in Frameworks/Applications as React, VS code, Git, Svelte•Excellent communication skills•Experience in dynamic environment•Fluent spoken and written EnglishYour horizonsWe offer you a nice challenge at one of the world's leading companies. Spring Professional provides one of the most comprehensive benefits package in the industry to contract employees! Don't miss it! Next to a fix salary you will gain from nice fringe benefits offered by our client.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactInformation Technology A406, looks forward to answer your questions by phone +41 58 233 4580.You can apply directly online.Please mention reference JN -112019-297967 in your application.JN -112019-297967\",\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Communications\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"System Administration\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Programming (Music)\", \"Project-Based Solutions\", \"Python (Programming Language)\", \"Git Flow\", \"Cascading Style Sheets (CSS)\", \"Financial Information eXchange (FIX) Protocol\", \"JavaScript (Programming Language)\", \"HyperText Markup Language (HTML)\", \"Web Application Frameworks\", \"Industrialization\", \"React.js\"]',\n", + " 'languages': \"['English', 'Welsh', 'Flemish', 'Sango']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'embedded c++ software engineer',\n", + " 'location': 'Argovia',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.28433421e-01 2.83800691e-01 6.33915722e-01 -1.78634495e-01\\n5.39020002e-01 -3.36250365e-01 6.18693605e-02 3.50471020e-01\\n-7.10186884e-02 -3.54706466e-01 -1.74907476e-01 -2.11526304e-01\\n-9.95143130e-02 4.14948240e-02 1.44126892e-01 3.07880491e-01\\n2.99018383e-01 8.96476954e-02 -1.44576609e-01 3.54188442e-01\\n2.68983066e-01 -1.06261246e-01 1.31449848e-01 6.80427611e-01\\n3.26738596e-01 4.70369793e-02 -4.60847206e-02 1.59742296e-01\\n-2.50792265e-01 -3.15738320e-01 3.22002202e-01 -1.88197382e-02\\n-1.56722188e-01 -2.02449366e-01 9.01135653e-02 3.54674384e-02\\n-2.25774884e-01 3.02493162e-02 4.97582592e-02 1.35087311e-01\\n-3.64428759e-01 -2.31375441e-01 1.10086657e-01 -6.57876655e-02\\n-1.91520810e-01 -3.74891162e-01 5.34251742e-02 1.54175824e-02\\n1.33457497e-01 3.06025743e-02 -3.08697760e-01 4.29379880e-01\\n-2.13567898e-01 -2.57574588e-01 2.82620788e-01 5.16020358e-01\\n-5.81523664e-02 -5.58755100e-01 -3.11011344e-01 -2.14066491e-01\\n1.49219289e-01 -1.04092278e-01 7.29059502e-02 -2.60019720e-01\\n4.82323080e-01 2.15871483e-02 -8.75292625e-03 2.87231207e-01\\n-7.70939112e-01 -2.97951270e-02 -2.14138210e-01 4.92615402e-02\\n-2.69597352e-01 -1.78969763e-02 -1.71551317e-01 -1.08788617e-01\\n-1.45132795e-01 4.40129548e-01 1.38669759e-01 1.37510031e-01\\n-4.95421961e-02 1.91691786e-01 -2.06324264e-01 2.22782061e-01\\n2.85600394e-01 2.98755765e-01 1.22878239e-01 2.50821173e-01\\n-3.89812648e-01 4.43323404e-01 1.48270443e-01 -2.45784834e-01\\n1.55818790e-01 2.37349123e-01 4.09518898e-01 4.22994047e-02\\n1.23376392e-01 9.40941647e-02 -1.87994063e-01 2.51849562e-01\\n2.98664182e-01 -2.55997926e-01 4.81074676e-03 6.54120445e-02\\n-8.02418739e-02 1.01241786e-02 -3.76035161e-02 3.63168985e-01\\n-4.17028069e-01 5.32698572e-01 -7.96160381e-03 -1.28235638e-01\\n4.30529155e-02 -6.28311574e-01 -2.03172490e-01 7.82053992e-02\\n-1.81007723e-03 5.45773357e-02 2.48085499e-01 2.82290280e-01\\n2.03134596e-01 1.23822674e-01 2.10894838e-01 9.86788034e-01\\n-2.25828122e-02 1.95756823e-01 -1.78452313e-01 4.59622473e-01\\n1.73260570e-01 -2.30558112e-01 2.27671489e-01 4.52559143e-01\\n1.71795160e-01 -1.16756052e-01 -1.33527979e-01 2.48957768e-01\\n-3.83067951e-02 -2.56491303e-01 -2.53842205e-01 1.90527380e-01\\n-1.25883251e-01 -5.89017451e-01 5.86031079e-01 4.97433692e-02\\n7.57842213e-02 4.33128327e-02 -6.19511977e-02 -7.17294887e-02\\n-1.44944251e-01 1.76976144e-01 8.22115839e-02 9.14429501e-02\\n-3.51145148e-01 -1.74420819e-01 -3.71995151e-01 1.66720226e-01\\n-2.54291981e-01 8.60551447e-02 -1.11995898e-01 -1.00853324e-01\\n2.36959651e-01 -2.71535553e-02 -3.96469057e-01 3.48099649e-01\\n-8.03437233e-02 -3.56233194e-02 -2.82146148e-02 2.88996488e-01\\n-8.83134902e-02 1.99030668e-01 -1.10869899e-01 -1.88610107e-01\\n3.79173994e-01 1.58160299e-01 8.91948417e-02 -6.74522519e-02\\n3.43650758e-01 -2.61498857e-02 8.30162019e-02 -2.52666343e-02\\n-8.15940619e-01 4.24162418e-01 -1.70750711e-02 -9.35131311e-02\\n5.52144228e-03 -2.17773635e-02 3.21559012e-01 -3.61311913e-01\\n6.65487945e-02 -1.76721483e-01 -3.44664007e-01 -2.30164394e-01\\n-1.99938595e-01 -8.17781966e-03 4.66814369e-01 -4.13906038e-01\\n-1.49052903e-01 1.12112194e-01 -5.38332105e-01 1.61192104e-01\\n3.38802099e-01 2.04717040e-01 2.57980943e-01 1.52376816e-01\\n-1.29490107e-01 -5.06538332e-01 3.04553583e-02 -3.55656892e-01\\n-2.97343463e-01 1.70748323e-01 -2.47116402e-01 2.33990937e-01\\n1.79551721e-01 -7.68691348e-03 -9.27392989e-02 -3.30867805e-03\\n-1.53524086e-01 -1.21811941e-01 2.10250795e-01 6.13110289e-02\\n3.45731229e-01 -4.94562685e-02 -3.23100448e-01 5.71458280e-01\\n-2.19040707e-01 4.19847786e-01 6.44316524e-02 -8.19191635e-01\\n4.59880859e-01 3.33465219e-01 5.42193875e-02 -3.76955301e-01\\n7.01029181e-01 -2.66211987e-01 -1.03540562e-01 1.94682166e-01\\n-4.12295789e-01 -2.49587297e-01 1.17122680e-01 -6.70905486e-02\\n-2.83816338e-01 4.94197756e-01 1.32125109e-01 7.79995546e-02\\n2.35521883e-01 -1.75491020e-01 -1.75365642e-01 -1.14681176e-03\\n-1.25734836e-01 -3.06762069e-01 -3.31499130e-01 1.03825867e-01\\n-2.85401102e-02 -5.48044503e-01 -9.67832357e-02 -4.42876756e-01\\n-2.12768346e-01 -3.55495423e-01 -2.72539377e-01 2.52298743e-01\\n1.18782647e-01 1.00615039e-01 6.52704760e-02 -9.68820751e-02\\n-3.01340014e-01 -5.49830675e-01 2.49984693e-02 1.15947574e-01\\n3.16684127e-01 1.62267193e-01 1.89710036e-02 -5.14201783e-02\\n4.44855075e-03 6.63841128e-01 -1.92240447e-01 -2.12481782e-01\\n8.82792249e-02 2.30699867e-01 -3.59785147e-02 -9.96194407e-02\\n1.37030154e-01 3.83554220e-01 -1.85891986e-01 4.48949970e-02\\n-1.82216585e-01 4.51208092e-02 2.88214743e-01 -1.36769652e-01\\n-2.40017131e-01 -3.82843882e-01 -8.07627663e-02 1.07503720e-01\\n-5.38244605e-01 -2.05664426e-01 5.71824491e-01 1.56202257e-01\\n1.42702460e-01 1.17312402e-01 2.65082389e-01 -1.84468552e-01\\n-1.69798672e-01 -9.33347419e-02 1.12396643e-01 7.14631602e-02\\n4.12950255e-02 1.38561651e-01 -1.49420395e-01 -5.27378559e-01\\n-3.50507236e+00 -1.14133649e-01 5.79554476e-02 -3.30120802e-01\\n1.81312278e-01 -1.57222182e-01 7.08583370e-02 -9.66312438e-02\\n-2.36728773e-01 6.52545020e-02 -1.78822264e-01 -1.36458546e-01\\n1.99731067e-01 2.08037272e-01 9.82021615e-02 1.94051802e-01\\n1.35492131e-01 -2.21733466e-01 -1.84385218e-02 3.17551523e-01\\n-1.14467166e-01 -5.32933831e-01 2.14331567e-01 -1.01963326e-01\\n3.24740142e-01 3.29029381e-01 -3.42188150e-01 -9.57525820e-02\\n-1.99341059e-01 -2.78295010e-01 3.41204964e-02 -1.99339688e-01\\n-2.46953070e-02 3.69957864e-01 1.20396130e-01 -1.27388481e-02\\n2.36453936e-01 -3.24682593e-01 4.56906147e-02 -3.27549428e-01\\n1.67174712e-01 -5.59851646e-01 -8.31977800e-02 -9.68518555e-02\\n5.99866509e-01 -3.87498289e-01 1.60631239e-01 1.92121252e-01\\n6.83304518e-02 2.55310148e-01 6.12892620e-02 -1.65842786e-01\\n-1.36378258e-01 -2.19628200e-01 -4.88314917e-03 -2.33214110e-01\\n3.63233298e-01 6.52706444e-01 -2.15781659e-01 -9.96714607e-02\\n-3.82380262e-02 -3.55498254e-01 -5.41756630e-01 -4.27337825e-01\\n-1.73982471e-01 -1.10364236e-01 -6.65824175e-01 -4.67487693e-01\\n-1.15721680e-01 -1.14774451e-01 -8.58013481e-02 4.10427809e-01\\n-1.81438282e-01 -3.81029010e-01 -7.03048557e-02 -3.50005478e-01\\n7.06800148e-02 -1.30912155e-01 -5.85656986e-02 -1.15818635e-01\\n-1.77744329e-01 -4.48256046e-01 2.95500550e-02 4.52475771e-02\\n-1.27806023e-01 -2.05350921e-01 1.95867211e-01 -2.43503764e-01\\n-2.64017642e-01 -4.62816238e-01 4.72209632e-01 1.48906698e-03\\n3.56957227e-01 5.22785597e-02 2.17943907e-01 5.98901659e-02\\n3.62339199e-01 -2.39116907e-01 1.07705407e-01 -4.01276737e-01\\n1.81415752e-01 8.37729797e-02 5.67245126e-01 -1.69396266e-01\\n-3.70191745e-02 9.10851657e-02 -1.93963408e-01 -1.45988151e-01\\n2.85134494e-01 -7.23942593e-02 8.41377825e-02 -4.28165138e-01\\n2.92338550e-01 -4.22561377e-01 -2.38714069e-01 1.19867243e-01\\n1.04501903e-01 6.01891637e-01 -1.08066655e-03 -3.74050736e-01\\n-2.28009582e-01 3.79262328e-01 -1.94812819e-01 -1.70733213e-01\\n-1.90741628e-01 8.17329139e-02 -3.14837247e-01 2.75991440e-01\\n-2.67412011e-02 -2.98363473e-02 -3.19977432e-01 -4.78463024e-02\\n6.61473274e-02 2.54173577e-01 2.47520044e-01 1.45302698e-01\\n1.88556146e-02 -3.65112722e-01 -2.11988389e-02 8.15870464e-02\\n1.89037308e-01 2.40460590e-01 8.40763003e-02 -1.64467141e-01\\n2.04309411e-02 3.36773962e-01 -9.68240425e-02 2.71660239e-01\\n-2.06773236e-01 9.14297327e-02 -4.53723282e-01 -3.67636085e-01\\n-2.16123655e-01 -1.78860724e-01 -1.04994699e-01 2.98157960e-01\\n9.89428237e-02 -3.67642976e-02 4.06952612e-02 -4.09063011e-01\\n2.62071520e-01 -2.12296639e-02 2.61974841e-01 2.05172285e-01\\n-5.99016100e-02 5.55333853e-01 4.71055359e-02 -1.74346894e-01\\n-1.98169261e-01 1.17390223e-01 -2.03149781e-01 -1.20898336e-01\\n1.85418837e-02 -3.56675744e-01 -3.25325467e-02 3.57393175e-01\\n1.06972635e-01 -3.89072537e-01 -6.25909120e-02 3.01125318e-01\\n8.05768520e-02 -4.11367327e-01 -1.89900219e-01 7.30234459e-02\\n2.93910265e-01 -3.90980439e-03 2.77724475e-01 -4.47771460e-01\\n2.24705078e-02 3.88565548e-02 -5.22622429e-02 4.18771863e-01\\n1.28139080e-02 -5.71447462e-02 -7.10191429e-02 -2.90025443e-01\\n2.80762672e-01 -1.28526226e-01 -6.53350577e-02 -8.17710459e-02\\n1.72963008e-01 -1.24809131e-01 -3.98507923e-01 8.78012460e-03\\n-6.90002367e-02 -5.11021502e-02 7.45286196e-02 -1.47194415e-02\\n7.99602270e-02 8.00486431e-02 -4.67562854e-01 -2.93140441e-01\\n-2.50585288e-01 -1.59029290e-01 2.59294212e-02 -3.90652388e-01\\n3.00317053e-02 -2.66944487e-02 -5.35912812e-01 2.67678171e-01\\n-2.69338906e-01 6.75514936e-02 2.18764707e-01 2.84709428e-02\\n-4.46686655e-01 -1.84435442e-01 2.14141771e-01 1.88673332e-01\\n-2.47588038e-01 -1.68189839e-01 -9.81839597e-02 -1.04709041e+00\\n3.06426793e-01 -6.33917451e-02 -1.01985127e-01 1.21544152e-01\\n-1.20568283e-01 -6.26050234e-01 8.57298225e-02 -4.13252085e-01\\n-1.00614451e-01 -1.49875339e-02 -2.38643572e-01 -3.98722202e-01\\n-2.83432938e-02 3.43034230e-02 -2.01497883e-01 3.57982546e-01\\n-4.22159731e-01 3.86440337e-01 -5.65341264e-02 3.16583551e-02\\n-1.71221972e-01 -2.21855760e-01 7.08112195e-02 -5.40367782e-01\\n-3.45280826e-01 -1.54359028e-01 -1.79634154e-01 -1.46865696e-01\\n-1.13110654e-01 -1.75628528e-01 -1.39088452e-01 1.60523932e-02\\n1.87968925e-01 1.33474991e-01 -8.16908106e-02 -2.01927856e-01\\n1.29431143e-01 -3.81974339e-01 -7.66769145e-03 -2.25014433e-01\\n2.51045842e-02 -1.77515507e-01 1.70466989e-01 -3.03018343e-04\\n9.87488329e-02 -4.01008338e-01 3.97766799e-01 -1.88991487e-01\\n-2.92879462e-01 1.02180161e-01 4.79772016e-02 7.53536895e-02\\n3.57520193e-01 -3.95414799e-01 1.10221513e-01 2.92540908e-01\\n1.13467745e-01 1.12192407e-01 2.77721047e-01 -3.64876129e-02\\n-1.72207966e-01 2.38991588e-01 -3.93743992e-01 8.59974250e-02\\n7.32881427e-01 2.97189057e-01 1.58212021e-01 1.98865160e-01\\n1.37176216e-01 3.69927585e-01 4.75132555e-01 6.58161044e-02\\n2.54429244e-02 3.43930602e-01 1.48603290e-01 -4.97131199e-01\\n1.14491684e-02 9.88937393e-02 -3.17505777e-01 -1.44827485e-01\\n6.66551888e-01 4.91154224e-01 -2.71417469e-01 -2.81774104e-01\\n-1.67884424e-01 -1.89721093e-01 1.27269432e-01 -2.13991731e-01\\n1.51702031e-01 -1.62050515e-01 4.47599441e-01 3.09262984e-02\\n9.18053612e-02 5.02451062e-01 -2.47647077e-01 -3.13656896e-01\\n-1.37542840e-03 1.86178103e-01 8.89784843e-02 3.57871026e-01\\n-1.20338134e-01 1.59948587e-01 -8.52698740e-03 2.14388952e-01\\n-1.72230750e-01 9.49594304e-02 1.60680637e-01 5.09544797e-02\\n8.36217254e-02 9.10788327e-02 2.14982271e-01 4.36046630e-01\\n2.54125178e-01 4.25276756e-01 1.74210683e-01 2.78347898e-02\\n3.91543746e-01 4.93211806e-01 3.12494814e-01 2.18564793e-01\\n-5.16255945e-02 2.27069929e-02 2.10860893e-02 -3.27918492e-02\\n2.91653186e-01 2.70179361e-01 7.11899623e-02 8.53200436e-01\\n4.39373076e-01 3.03306848e-01 7.65148759e-01 -5.56690991e-01\\n-3.87017161e-01 -3.83014716e-02 4.16081369e-01 -3.88589352e-01\\n-1.10108614e-01 -2.64652669e-02 -1.67632952e-01 2.33385071e-01\\n-4.33764011e-01 -2.59843558e-01 -1.19761944e-01 4.60198373e-02\\n1.29545003e-01 -1.68486107e-02 -2.99336761e-01 -1.67779967e-01\\n-2.39868730e-01 -1.56157747e-01 -4.80226755e-01 -1.36668593e-01\\n-1.60112023e-01 -2.05837473e-01 -2.10229024e-01 -1.34707659e-01\\n-1.21074924e-02 -4.04343307e-01 -1.50747716e-01 1.32015934e-02\\n2.08595172e-01 -1.88118473e-01 -9.82663929e-02 -1.66224003e-01\\n1.83278844e-01 1.78857848e-01 5.96804202e-01 3.92737985e-02\\n1.35834053e-01 -2.04810753e-01 -9.05457288e-02 5.02281338e-02\\n1.04900390e-01 2.15764537e-01 5.34457527e-02 4.86155838e-01\\n-4.31596845e-01 -1.22395642e-01 -3.90695035e-03 4.49645370e-01\\n-3.89831394e-01 2.88339853e-02 -3.62098254e-02 1.90990627e-01\\n4.92876917e-02 1.62523501e-02 -2.19567522e-01 3.00055277e-02\\n-2.95063466e-01 -5.91871738e-01 2.66060144e-01 -9.38896760e-02\\n-1.34660274e-01 1.39257926e-02 1.84611619e-01 1.63028345e-01\\n-2.26682484e-01 -1.00893877e-01 1.76355511e-01 1.16851568e-01\\n2.35383123e-01 3.20811391e-01 -2.54373908e-01 -1.80279464e-01\\n-2.78867334e-01 2.42230162e-01 -3.61404300e-01 1.94596037e-01\\n-1.12791874e-01 3.12070161e-01 9.98944789e-02 1.26493871e-01\\n3.19472939e-01 -1.18930086e-01 -1.55731246e-01 -2.04266027e-01\\n-2.57170141e-01 -1.96373388e-01 2.19955202e-02 -5.13605494e-03\\n2.05219075e-01 -3.65293950e-01 -9.23338234e-02 -3.75380516e-02\\n-1.17860779e-01 -3.92964602e-01 -4.78049144e-02 -1.81852803e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for an Embedded C++ Software Engineer. This role is permanent position based in Aargau Canton. Your role: Concept, design & develop multitasking real-time / embedded software with C ++ 11 under QNX. Help shape the architecture, specification & implementation of embedded software for a future generations of Laser Tracker systems. Design & implementation unit & system tests. Create development & troubleshooting tools. Collaborate in agile SW development process with various interdisciplinary teams & cooperate closely also with application testers. Your Skills: Strong knowledge in the development of embedded software with C ++ in real-time applications. Experienced with modern real-time operating systems (QNX, RT Linux etc.). Ideally experienced in planning & implementing software tests (unit, integration & system tests). Knowledge of current design methods (design patterns, UML, TDD, etc.) is desirable. Skills & experience in Python is considered advantageous. Your Profile: Completed University Degree in Electrical Engineering or Computer Science. Dynamic, up for big challenges & comfortable in high-tech environments. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Positivity\", \"Cooperation\", \"Planning\", \"Multitasking\", \"Integration\", \"Troubleshooting (Problem Solving)\"]',\n", + " 'hard_skills': '[\"Real Time Data\", \"Test-Driven Development (TDD)\", \"Agility\", \"Real-Time Application Interface (RTAI)\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"Collaboration Tools\", \"Distributed Design Patterns\", \"Embedded C++\", \"QNX (Software)\", \"Web Design Concepts\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Linux\", \"High Tech Manufacturing\", \"Idealization\", \"Software Engineering\", \"Operating Systems\", \"Design Methods\", \"C (Programming Language)\", \"Electrical Engineering\", \"Laser Tracker\", \"Receivables\", \"Systems Design\", \"Software Testing\", \"Embedded Software\", \"Real-Time Operating Systems\", \"System Testing\", \"Process Driven Development\"]',\n", + " 'languages': \"['English', 'Czech', 'Turkmen', 'Bislama', 'Norwegian']\"},\n", + " {'company_id': '94',\n", + " 'job_title': 'saas & open-data development engineers',\n", + " 'location': 'Rolle',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.84736553e-02 2.41919011e-01 6.12432182e-01 1.17697574e-01\\n6.16215467e-01 -6.42231181e-02 -1.31970704e-01 5.38616717e-01\\n-1.32668704e-01 -3.84660423e-01 3.77689451e-02 -3.60987097e-01\\n-6.04589283e-02 2.30093494e-01 1.72765180e-01 4.34548855e-01\\n1.83192998e-01 3.63055579e-02 -1.65740162e-01 2.67881513e-01\\n1.02243528e-01 -4.69515361e-02 3.48026693e-01 7.76968122e-01\\n3.32396507e-01 -1.38146371e-01 -6.98562413e-02 6.62104115e-02\\n-2.60016054e-01 -8.67173597e-02 4.17284906e-01 1.27730161e-01\\n-3.32209557e-01 -4.02919441e-01 1.16316535e-01 5.55696450e-02\\n-2.37498611e-01 -1.31318599e-01 -2.92957388e-02 1.12921357e-01\\n-5.80412507e-01 -3.28383714e-01 -8.09447616e-02 6.74306750e-02\\n-3.46572906e-01 -2.44941428e-01 9.31661949e-03 -1.86708309e-02\\n1.03522837e-01 1.03569023e-01 -5.14847040e-01 1.23196423e-01\\n-1.12720743e-01 -3.01769853e-01 2.20641196e-01 6.71360672e-01\\n6.81209117e-02 -4.06091511e-01 -4.51120973e-01 -3.24904770e-01\\n9.17415917e-02 -1.12229757e-01 6.13092072e-02 -3.56677771e-01\\n3.03087562e-01 -5.87963350e-02 1.64652560e-02 1.93191841e-01\\n-6.93414032e-01 2.38288473e-02 -2.33804762e-01 -1.47518933e-01\\n-3.15329462e-01 6.18902817e-02 -2.97626495e-01 -2.42492035e-01\\n-1.44667029e-01 4.33701217e-01 1.31305158e-01 1.11019388e-01\\n-1.50597528e-01 2.47312263e-01 -1.04015507e-01 3.70837659e-01\\n1.78832054e-01 3.69158030e-01 2.23606929e-01 3.22638959e-01\\n-3.73376667e-01 4.07187790e-01 1.23610720e-01 -2.65248090e-01\\n2.37748519e-01 1.79369792e-01 2.60767937e-01 -3.19731198e-02\\n1.99742496e-01 -3.80939171e-02 -3.38774532e-01 2.55127251e-01\\n1.66170642e-01 -4.89973366e-01 1.56059548e-01 -1.37409851e-01\\n-2.91071110e-03 -9.35484562e-03 5.29987477e-02 1.72150329e-01\\n-3.07736784e-01 3.31511438e-01 -9.75141581e-03 -1.83410212e-01\\n-6.16281517e-02 -4.30995047e-01 -1.41203254e-01 5.74008711e-02\\n4.13490981e-02 2.14751825e-01 2.29491144e-01 1.36725515e-01\\n2.72884190e-01 4.15500924e-02 2.00089261e-01 8.26575220e-01\\n-1.01523191e-01 1.22595973e-01 -2.15934291e-01 2.78273314e-01\\n1.04444064e-01 -3.02430749e-01 2.50487655e-01 2.11041972e-01\\n-4.98010106e-02 -9.42349657e-02 -2.13046059e-01 2.54772991e-01\\n2.46972758e-02 -2.07937703e-01 -2.51234353e-01 1.31882638e-01\\n6.11384101e-02 -4.97514218e-01 5.43788254e-01 8.31065923e-02\\n1.56877622e-01 -1.19561953e-02 -6.43652305e-02 -9.73375663e-02\\n-2.58714594e-02 2.39994973e-01 1.08834561e-02 1.40085697e-01\\n-2.57190377e-01 -1.34198502e-01 -2.20970795e-01 -5.64923510e-02\\n-4.84618783e-01 1.74180657e-01 -2.61870492e-03 -9.50599611e-02\\n2.02970713e-01 -4.20724228e-02 -2.46544674e-01 3.05305272e-01\\n-2.90376037e-01 -1.57171533e-01 1.00669160e-01 3.03827971e-01\\n-3.33609164e-01 1.24858879e-01 -4.12712581e-02 -2.41804451e-01\\n4.68797714e-01 1.51310444e-01 3.22709411e-01 5.13660572e-02\\n2.20861048e-01 -7.63877109e-02 1.25798220e-02 2.25749254e-01\\n-6.80219054e-01 3.12701553e-01 9.46367458e-02 -2.03057796e-01\\n2.09997013e-01 -9.98928025e-02 2.42035434e-01 -2.14426339e-01\\n1.05195731e-01 -1.19733736e-01 -3.10576200e-01 -2.43693173e-01\\n-2.50029624e-01 -1.11449482e-02 3.08066875e-01 -5.88151038e-01\\n-8.85183588e-02 -6.81326771e-03 -4.59642947e-01 -1.65356681e-01\\n8.05867016e-02 2.61000484e-01 8.85389671e-02 -6.61543459e-02\\n-1.77584067e-01 -4.06854153e-01 4.10916144e-03 -3.55987817e-01\\n-1.66966155e-01 -2.51327865e-02 -3.42965454e-01 1.76653370e-01\\n5.54593652e-02 -3.25680003e-02 -9.56261456e-02 -9.40824579e-03\\n-2.53544331e-01 7.96341375e-02 1.03581689e-01 6.38189167e-02\\n3.22969556e-01 1.15117999e-02 -2.08913103e-01 5.06031156e-01\\n-1.80207267e-01 6.66844666e-01 1.73181459e-01 -8.14377546e-01\\n4.54653323e-01 2.86863357e-01 -1.07230963e-02 -2.92135686e-01\\n6.37848198e-01 -3.75582367e-01 -8.85041524e-03 1.87342823e-01\\n-3.45231771e-01 -2.83567667e-01 1.51937395e-01 -2.25106969e-01\\n-2.58491546e-01 5.26574135e-01 1.42717451e-01 1.70898438e-01\\n2.14334786e-01 -3.03610891e-01 -6.75523803e-02 -8.32155868e-02\\n-1.54264092e-01 -3.83195549e-01 -5.73028982e-01 -6.55015782e-02\\n-1.25790730e-01 -3.36801231e-01 -1.47425279e-01 -4.62748349e-01\\n-9.27001834e-02 -4.03450519e-01 -2.65678197e-01 1.94546476e-01\\n2.13997319e-01 1.17348842e-01 -4.25942205e-02 1.22979367e-02\\n-9.76544321e-02 -6.76535070e-01 -8.29224885e-02 5.83552606e-02\\n4.43315655e-01 1.14559479e-01 2.77244925e-01 -1.28652334e-01\\n1.65955558e-01 6.53477192e-01 -1.71655521e-01 -3.07079434e-01\\n1.43087879e-01 2.78428346e-01 1.68222748e-02 -2.66479850e-02\\n3.05576324e-01 2.89223909e-01 -2.62924641e-01 2.34096106e-02\\n-1.91415884e-02 1.05153278e-01 2.40348488e-01 1.25994071e-01\\n-2.08174571e-01 -2.31274411e-01 7.44361654e-02 2.25542650e-01\\n-4.92674112e-01 -2.38332406e-01 5.76628327e-01 1.89323768e-01\\n1.72084689e-01 1.17254898e-01 1.26011491e-01 -1.54321223e-01\\n-6.75572753e-02 -1.61565736e-01 3.12038869e-01 1.21914983e-01\\n1.64828986e-01 4.59882095e-02 5.60047068e-02 -5.16435623e-01\\n-3.68510103e+00 -2.04643905e-01 1.15050748e-01 -1.39377043e-01\\n2.25725040e-01 -1.56521946e-01 1.81444034e-01 6.03725575e-02\\n-2.73012012e-01 8.79794806e-02 -3.70080732e-02 -2.01254904e-01\\n2.38678962e-01 1.67655721e-01 1.16300568e-01 3.35585594e-01\\n1.83759972e-01 -2.25459978e-01 -2.91225165e-02 4.49460089e-01\\n-1.60301223e-01 -7.04077303e-01 1.49113461e-01 9.12655378e-04\\n2.50079185e-01 1.75658807e-01 -2.26983413e-01 -1.39011815e-01\\n-1.59145996e-01 -2.46197671e-01 3.44767347e-02 -3.23523790e-01\\n-1.21446028e-01 3.80035192e-01 1.86080128e-01 -6.75055906e-02\\n9.49894413e-02 -3.48343015e-01 -2.33039573e-01 -3.63653660e-01\\n5.97209223e-02 -5.22657275e-01 2.36434229e-02 -5.33922091e-02\\n6.37204826e-01 -3.07620466e-01 2.31776059e-01 1.63289651e-01\\n1.16568752e-01 1.62227869e-01 1.37857303e-01 -4.81144451e-02\\n-1.36183485e-01 -3.80989969e-01 -4.40786481e-02 -2.41421148e-01\\n5.02203763e-01 4.73702669e-01 -9.83978510e-02 8.17500278e-02\\n8.24889317e-02 -1.00262851e-01 -4.55879271e-01 -3.48340064e-01\\n-1.40129134e-01 -1.73357055e-01 -6.14194393e-01 -3.46351296e-01\\n-7.30605051e-02 -2.31972501e-01 -1.35276854e-01 4.15082425e-01\\n-2.48057410e-01 -4.22986895e-01 -1.10082425e-01 -4.02447820e-01\\n4.98986453e-01 -8.01795423e-02 -8.19751695e-02 -1.77903876e-01\\n-3.06175083e-01 -4.51508850e-01 7.00418726e-02 5.60297556e-02\\n-1.37117594e-01 -2.48543158e-01 8.51005539e-02 -1.93365633e-01\\n-2.53347397e-01 -5.42094886e-01 4.91929710e-01 1.91351861e-01\\n3.88246030e-01 2.44157195e-01 3.35294843e-01 4.24858630e-02\\n2.36765862e-01 -1.30596459e-02 6.96509182e-02 -5.09429812e-01\\n-9.48905386e-03 1.50178969e-01 3.84478986e-01 -2.33487189e-01\\n-7.02647343e-02 5.68344593e-02 -2.13667691e-01 -8.05243030e-02\\n2.36583889e-01 -8.08320493e-02 1.11165784e-01 -1.00594193e-01\\n1.90627620e-01 -4.13162857e-01 -8.43930915e-02 1.21284667e-02\\n1.70217544e-01 6.26987398e-01 2.14895941e-02 -2.68700600e-01\\n-2.38965496e-01 6.31770074e-01 -1.30366474e-01 5.45745008e-02\\n-1.47044957e-01 8.67952630e-02 -2.01769859e-01 3.55974704e-01\\n-2.22864635e-02 -1.99969009e-01 -1.95707530e-01 -9.51852873e-02\\n-7.49362037e-02 2.82125622e-01 2.48614430e-01 8.22490677e-02\\n-3.91706564e-02 -4.08989966e-01 -7.48946741e-02 1.64007694e-01\\n2.83557922e-01 4.55308974e-01 6.03033565e-02 -1.59257561e-01\\n6.31423220e-02 3.57733667e-01 -2.71562994e-01 3.77787858e-01\\n-1.64666668e-01 1.26144394e-01 -6.03301287e-01 -3.17716330e-01\\n-3.47856581e-01 -2.79778987e-01 1.10520743e-01 2.84208000e-01\\n2.91715264e-01 -1.45216689e-01 1.40227275e-02 -4.95666593e-01\\n2.70140141e-01 7.16601461e-02 2.20344976e-01 1.04493171e-01\\n-5.39024696e-02 5.85934341e-01 1.65063702e-02 -6.02708682e-02\\n-2.38422398e-03 6.71600597e-03 -2.37283304e-01 -1.66704476e-01\\n5.08234948e-02 -4.92127687e-01 -2.53342599e-01 3.41810942e-01\\n1.59900710e-01 -4.24070001e-01 -2.68969983e-01 2.13717654e-01\\n7.50737786e-02 -2.27821589e-01 -3.24028492e-01 -6.61231298e-03\\n4.42440689e-01 1.45678639e-01 3.13613474e-01 -4.67149824e-01\\n-1.12178195e-02 7.18855634e-02 6.64622039e-02 4.66007918e-01\\n5.51713025e-03 -1.26265669e-02 -3.20396274e-02 -3.17635536e-01\\n4.47322935e-01 -1.50988325e-01 -1.68358177e-01 -3.33357863e-02\\n4.13880013e-02 -1.05511412e-01 -2.82702744e-01 6.04886040e-02\\n-1.16127856e-01 -3.03594172e-01 -6.26671612e-02 2.03018695e-01\\n1.83796227e-01 -2.95599774e-02 -5.65331638e-01 -3.25130701e-01\\n-2.91991740e-01 -2.10357551e-02 -2.09628493e-02 -3.67239952e-01\\n5.04770912e-02 -9.24000815e-02 -5.30682743e-01 2.08150864e-01\\n-1.51941746e-01 -7.75992721e-02 1.04340725e-01 9.44974422e-02\\n-3.33798975e-01 -1.01228140e-01 1.33059815e-01 2.66825765e-01\\n-3.21399778e-01 -3.43650460e-01 -6.54718503e-02 -7.51138926e-01\\n1.62022933e-01 8.36727098e-02 -1.15217365e-01 1.95982754e-01\\n-1.19607836e-01 -6.26854956e-01 6.60106540e-02 -2.65399069e-01\\n-2.20683664e-01 -2.26165712e-01 -3.15830946e-01 -3.78129840e-01\\n5.39277904e-02 6.49655312e-02 -2.36118942e-01 5.56347489e-01\\n-3.81152928e-01 2.56314486e-01 -7.96183646e-02 4.68397513e-02\\n1.72613356e-02 -2.08499610e-01 2.12732181e-01 -4.15350348e-01\\n-3.55430871e-01 -8.42158422e-02 -3.39894950e-01 -3.17642242e-01\\n-1.93699718e-01 -2.35852674e-01 8.16843566e-03 -7.09362775e-02\\n3.32020283e-01 1.07818626e-01 -1.32470295e-01 -2.26608410e-01\\n1.38176680e-01 -3.49356353e-01 1.51823595e-01 -4.59957086e-02\\n-8.19065049e-02 -1.00773856e-01 1.95760444e-01 6.50079250e-02\\n1.43086642e-01 -3.80741417e-01 2.65167475e-01 -4.40859646e-01\\n-3.23772490e-01 -2.09869534e-01 4.87224460e-02 -1.52072906e-02\\n1.62997901e-01 -5.91819942e-01 5.11376821e-02 1.73154294e-01\\n1.80089161e-01 -3.11979856e-02 3.00230235e-01 -8.87090936e-02\\n-1.05823286e-01 3.49404603e-01 -2.96149760e-01 4.22173403e-02\\n7.77066231e-01 1.09981678e-01 1.27380446e-01 2.90766448e-01\\n4.59263921e-02 1.73994601e-01 3.73097211e-01 9.55682322e-02\\n-8.30591545e-02 2.24705219e-01 1.89638421e-01 -4.55141872e-01\\n-1.00246727e-01 -4.87681068e-02 -1.74890444e-01 -5.11940002e-01\\n6.68703973e-01 3.47757995e-01 -4.26182002e-01 -2.17257574e-01\\n-1.64822757e-01 -1.07148722e-01 2.54087269e-01 -1.47430524e-01\\n-2.87761502e-02 -8.11498165e-02 4.20388699e-01 -3.27016115e-02\\n4.01613861e-01 5.60621262e-01 -1.66709617e-01 -1.95246652e-01\\n-9.10776332e-02 1.88937187e-01 1.67197540e-01 3.59142512e-01\\n-2.30399117e-01 4.22232628e-01 4.30427678e-02 1.42647967e-01\\n-6.48752749e-02 2.64208585e-01 8.52646455e-02 1.48579031e-01\\n1.23587020e-01 4.66456935e-02 4.33193743e-01 4.59638149e-01\\n2.26324245e-01 3.98176759e-01 3.37446034e-01 1.55141249e-01\\n3.14384997e-01 3.97590697e-01 2.74339944e-01 1.04928561e-01\\n7.24257603e-02 3.88792157e-02 1.23805352e-01 -5.80965504e-02\\n2.13122964e-01 4.22387719e-01 1.36452481e-01 8.81558657e-01\\n2.89816082e-01 2.85555631e-01 7.15859413e-01 -6.31844938e-01\\n-3.64297390e-01 -4.20741476e-02 4.30441201e-01 -4.68447536e-01\\n-1.09320067e-01 8.48481655e-02 -7.84363598e-02 2.46285096e-01\\n-4.01375502e-01 -1.64868042e-01 -2.24386752e-02 1.56669080e-01\\n-3.50819714e-02 -2.72874743e-01 -1.08179636e-01 1.21395297e-01\\n-6.77747205e-02 3.43343541e-02 -4.33771253e-01 -2.11069316e-01\\n-1.99396610e-01 -2.85828531e-01 -3.34845006e-01 -5.63718416e-02\\n-1.00726865e-01 -3.20283741e-01 -3.81402075e-02 -2.51298565e-02\\n2.81315476e-01 -3.21915485e-02 -7.25777224e-02 -1.84683770e-01\\n3.78435820e-01 1.55084729e-01 5.29626906e-01 -1.17577322e-01\\n2.12729409e-01 -1.15181141e-01 -1.74979821e-01 3.32621597e-02\\n1.71367526e-01 5.24305478e-02 -4.40387763e-02 2.06716865e-01\\n-2.54046082e-01 -1.07604459e-01 1.70961127e-01 1.84873760e-01\\n-4.32809472e-01 8.43826309e-02 -9.10341218e-02 1.38509825e-01\\n6.28625508e-03 1.02476016e-01 -2.58667499e-01 2.93790270e-02\\n-2.50913560e-01 -5.01246333e-01 3.05110931e-01 -3.14081937e-01\\n-7.71127418e-02 1.12704739e-01 3.78800213e-01 3.17042619e-01\\n-1.24185815e-01 8.15732330e-02 -4.62666750e-02 6.35132119e-02\\n3.96923572e-02 1.50955692e-01 -1.87291533e-01 -2.22348362e-01\\n-4.00322109e-01 9.14957225e-02 -1.98645294e-01 7.54148886e-02\\n4.54623438e-02 4.27334279e-01 1.41853422e-01 3.90491746e-02\\n3.97987515e-01 -1.40597627e-01 -2.23483115e-01 -2.70711303e-01\\n-2.68504232e-01 -6.37652203e-02 -1.10278949e-01 -5.43282293e-02\\n1.98959157e-01 -2.56295085e-01 -3.69881354e-02 -1.92600414e-01\\n-4.39222865e-02 -3.32336396e-01 6.70754462e-02 -1.82466760e-01]]',\n", + " 'job_description': \"You have hands-on experience developing, deploying or managing operating cloud-based services SAAS applications. You have been exposed to one or several IAAS & PAAS infrastructures such as AWS, GE-Digital Predix, IBM-BlueMix/Watson, VMware... You are experienced in finding and structuring and collecting different data streams (weather, finance, industrial signals, social events). You strongly believe automated machine learning and artificial intelligence coupled with big data can change the game in many industrial sectors. You worked open-data correlations with industrial signals, weather, events, calendar, financial markets, economic indicators. You applied it to real use case in operations and markets, for energy, utilities, industry, retail, transport or freight sectors. You cooperate with leading partners like GE - Digital, IBM-Analytics, Cisco-IOT with Industry leader customers in EU & US & Asia, like Arcelor, EDF, ALPIQ, ELIOR, METRO... Predictive Layer will bring you a unique opportunity to develop, deploy, or operate leading-edge predictive services for different customers worldwide, on different markets: Energy, Industry, retail, Catering, Transport and many more... At Predictive Layer, We cultivate a team-based environment where we strive for personal growth and a substantial contribution from all our team members. If you desire a career where you can drive innovation while working in an dynamic environment where innovative thinking, creativity and motivation are recognized and rewarded, then come and join us! Back to opportunities Send us your resume - Let's meet! careers@predictivelayer.com Position reference: #2017-OOE-003\",\n", + " 'soft_skills': '[\"Cooperation\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Innovation\", \"Socialization\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Automation\", \"Collections\", \"Analytics\", \"Data Streaming\", \"Prediction\", \"Industrialization\", \"IBM Bluemix\", \"Energy Market\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Component Object Model (COM)\", \"Layering\", \"Weathering\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Cloud Operations\", \"Predix\", \"Financial Market\", \"Machine Learning Methods\", \"Finance\", \"Digitization\", \"Personalization\", \"Cisco Networking\", \"Location-Based Services\", \"Artificial Intelligence\", \"Big Data\", \"Coupling\", \"Operations Management\", \"Economic Indicators\", \"Cultivator\"]',\n", + " 'languages': \"['English', 'Pushto', 'Venda', 'Northern Sami']\"},\n", + " {'company_id': '17',\n", + " 'job_title': 'data science manager f/m switzerland',\n", + " 'location': 'Switzerland',\n", + " 'industry': 'Consulting',\n", + " 'website': 'www.axxiome.com',\n", + " 'jobdescription_embedded': '[[-2.45921910e-01 3.64944696e-01 5.66830039e-01 -4.42552194e-03\\n6.07137740e-01 -3.58532816e-02 -7.13070855e-04 2.29102582e-01\\n-8.79856385e-03 -4.23271626e-01 -1.12019163e-02 -2.79152483e-01\\n1.17464408e-01 1.81373224e-01 2.31768861e-02 4.22521472e-01\\n2.09838718e-01 3.76365110e-02 -1.79761857e-01 4.03860956e-01\\n2.34120376e-02 -1.44892216e-01 2.07821861e-01 7.00868130e-01\\n4.20755804e-01 -2.49336548e-02 -4.27808836e-02 -4.32553031e-02\\n-2.81308353e-01 -2.11954385e-01 5.24052203e-01 2.60045230e-02\\n-1.87911510e-01 -2.90406376e-01 1.07913442e-01 3.05315405e-02\\n-2.64642119e-01 -9.09706503e-02 -1.89330533e-01 1.44601107e-01\\n-4.73985076e-01 -1.82331115e-01 -1.06650069e-02 -2.91811861e-03\\n-3.76790941e-01 -5.17107308e-01 -1.25920102e-01 -1.00769050e-01\\n1.08134978e-01 9.05703604e-02 -4.54427838e-01 1.93579257e-01\\n-2.60035336e-01 -2.59526730e-01 2.71923423e-01 7.75269151e-01\\n-2.98850853e-02 -4.39171314e-01 -5.32690525e-01 -3.93370718e-01\\n1.47971913e-01 -7.26859272e-02 7.86159933e-02 -3.06278467e-01\\n2.78093457e-01 -3.30605730e-03 3.75598557e-02 2.43363649e-01\\n-7.56314635e-01 -1.50222898e-01 -3.26991111e-01 4.13803719e-02\\n-3.66385281e-01 -1.05629474e-01 -4.33392674e-01 -2.40224093e-01\\n-1.23682141e-01 4.59726006e-01 1.06721871e-01 -3.25710848e-02\\n-2.64199972e-01 2.76415229e-01 -3.26216042e-01 2.17330575e-01\\n1.81030706e-01 3.17788005e-01 3.44060987e-01 3.91795516e-01\\n-3.28861833e-01 4.00029361e-01 2.92857468e-01 -3.70870233e-01\\n2.56032765e-01 1.52590707e-01 3.01409543e-01 -1.02013722e-02\\n1.69352084e-01 1.29102111e-01 -1.88280120e-01 3.37971598e-01\\n2.92865813e-01 -2.53491759e-01 1.13441981e-02 -1.18685320e-01\\n7.98881799e-02 -4.54057828e-02 1.68322399e-02 1.24850497e-01\\n-3.90109837e-01 2.84585595e-01 -4.44836654e-02 -3.66795272e-01\\n-1.00431263e-01 -4.57162291e-01 -1.06918573e-01 -8.01978409e-02\\n-5.70156518e-03 1.87075034e-01 1.78632349e-01 2.35677660e-01\\n2.10754246e-01 -5.03677428e-02 1.70380592e-01 8.76710653e-01\\n-8.34595039e-03 4.89493869e-02 -3.32669228e-01 4.18295622e-01\\n7.65853748e-03 -1.90081030e-01 1.90014482e-01 1.06433108e-01\\n-1.29714862e-01 -5.53015508e-02 -3.17486405e-01 3.26737285e-01\\n-5.01306206e-02 -2.85634041e-01 -1.82487592e-01 1.18685432e-01\\n-2.42170654e-02 -4.91118252e-01 6.07552648e-01 -2.95297876e-02\\n1.18727639e-01 -2.52901286e-01 5.49544487e-03 -1.00099713e-01\\n-1.47795305e-03 1.36073396e-01 1.42462879e-01 1.10068917e-01\\n-2.93086052e-01 -2.61587262e-01 -9.45952386e-02 2.04275176e-01\\n-3.72313261e-01 5.68338484e-03 -2.17546254e-01 -6.04286306e-02\\n2.10390940e-01 1.22314103e-01 -4.67245340e-01 1.52860612e-01\\n-7.63912871e-02 -6.53198585e-02 -6.28637057e-03 4.08639252e-01\\n-3.66601586e-01 2.10801393e-01 -6.10959157e-02 -1.05927579e-01\\n6.28257394e-01 1.36030614e-01 3.37295145e-01 1.67331984e-03\\n2.35847265e-01 -6.34730384e-02 1.65461987e-01 2.23834157e-01\\n-5.79585254e-01 4.36830193e-01 -8.55116397e-02 -1.90968633e-01\\n1.48631006e-01 -8.61020237e-02 3.19376707e-01 -2.54164547e-01\\n1.09994173e-01 -1.79887325e-01 -2.81099111e-01 -3.52362216e-01\\n-9.43516865e-02 -4.85175848e-02 3.22893560e-01 -5.07194817e-01\\n-7.61729479e-03 2.63135016e-01 -5.76938748e-01 -2.25446984e-01\\n1.20687030e-01 2.38363579e-01 7.45931938e-02 2.11705700e-01\\n-1.76185995e-01 -5.34414768e-01 1.38204321e-01 -4.11061585e-01\\n-2.34608501e-01 1.61183521e-01 -2.93112636e-01 1.30785525e-01\\n4.76591624e-02 2.24735159e-02 -1.05475865e-01 6.95926100e-02\\n-3.24384570e-01 -1.61868110e-02 1.67739503e-02 7.41715729e-02\\n3.55591476e-01 1.47779748e-01 -4.31447506e-01 5.21407366e-01\\n-1.65915996e-01 3.91414404e-01 1.80935234e-01 -1.00179696e+00\\n4.41542685e-01 3.47838730e-01 6.50071129e-02 -3.69515121e-01\\n5.59662938e-01 -3.95547062e-01 -2.96869520e-02 1.25100851e-01\\n-3.11068058e-01 -2.29845583e-01 2.32175797e-01 -2.63683528e-01\\n-2.66220629e-01 5.03459215e-01 -2.03863233e-02 1.43936604e-01\\n3.03789854e-01 -2.84333766e-01 -2.92014003e-01 -1.28883198e-01\\n-2.25134090e-01 -2.67191052e-01 -6.82415664e-01 2.43814290e-03\\n-9.48423892e-02 -4.56080288e-01 -9.62660015e-02 -4.14302230e-01\\n-1.35782093e-01 -3.27197075e-01 -1.55999899e-01 4.64870185e-02\\n2.03237012e-01 1.12335689e-01 -1.31886184e-01 -2.83232890e-02\\n2.26668492e-02 -6.32648706e-01 -8.35290700e-02 1.24586798e-01\\n3.28894079e-01 2.66649902e-01 1.72872901e-01 4.07448635e-02\\n3.69883366e-02 6.54320240e-01 -2.93933392e-01 -2.73528099e-01\\n2.35190347e-01 1.35438293e-01 -6.35076314e-02 -1.96907341e-01\\n7.97661915e-02 2.46569231e-01 -2.67043054e-01 -1.50392763e-03\\n8.39423537e-02 -5.40301390e-02 3.38879973e-01 1.77628547e-02\\n-1.90582663e-01 -2.03127712e-01 -6.51058555e-02 1.30328491e-01\\n-5.84850669e-01 -2.64413476e-01 6.32897258e-01 1.34088337e-01\\n9.50071029e-03 2.51613736e-01 2.29802251e-01 1.88265294e-02\\n-3.66359562e-01 -2.13709712e-01 3.07417035e-01 8.39281529e-02\\n1.96068406e-01 6.11872748e-02 5.12848124e-02 -5.77519417e-01\\n-3.24799728e+00 -1.69826210e-01 1.06522381e-01 -2.25405872e-01\\n3.08175147e-01 -1.89206302e-01 1.63121253e-01 4.45353314e-02\\n-4.54820126e-01 1.42139625e-02 -9.49461311e-02 -1.37367144e-01\\n5.78579307e-02 1.89332396e-01 8.62061977e-02 1.91817939e-01\\n1.42997324e-01 -1.68550238e-01 7.36394152e-02 3.95097315e-01\\n-8.34486261e-02 -7.82853246e-01 1.66983396e-01 1.36964232e-01\\n1.21752001e-01 1.05963036e-01 -4.65968609e-01 -1.36122018e-01\\n-3.57103407e-01 -2.17097014e-01 1.21184766e-01 -2.82251537e-01\\n-1.90611392e-01 2.12878883e-01 2.40197480e-01 -6.95260763e-02\\n2.69690920e-02 -3.47148955e-01 -5.56462631e-02 -5.26130319e-01\\n8.72342363e-02 -6.10046625e-01 1.80049986e-03 -6.27218187e-02\\n7.39886522e-01 -2.77540952e-01 1.94530487e-01 1.91638410e-01\\n1.06656328e-01 1.63295954e-01 1.92849159e-01 6.54033944e-02\\n-2.34414548e-01 -3.04287136e-01 -1.06991798e-01 -1.35043666e-01\\n6.06157124e-01 3.87201041e-01 -1.21685475e-01 4.22015078e-02\\n1.07443072e-01 -2.14714855e-01 -5.31587601e-01 -2.41496980e-01\\n-1.90920800e-01 -1.38890103e-01 -7.47319221e-01 -5.13473034e-01\\n-1.52645022e-01 -1.69929966e-01 -1.20133206e-01 6.72429919e-01\\n-1.25722989e-01 -2.56621331e-01 -1.95590854e-01 -4.87632364e-01\\n3.40316892e-01 -1.53406411e-01 7.67541304e-02 -1.80450037e-01\\n-1.68858439e-01 -3.90759051e-01 1.63518235e-01 -4.90865484e-02\\n-9.50010121e-02 -9.49073732e-02 6.59806374e-03 -1.33534163e-01\\n-3.63709539e-01 -5.95687926e-01 3.92257780e-01 8.04415345e-02\\n4.33541536e-01 8.36967230e-02 4.16038752e-01 -4.92727235e-02\\n3.91176701e-01 -6.91211596e-02 -1.48355290e-01 -4.93212640e-01\\n-6.06559515e-02 9.93431583e-02 5.32403588e-01 -2.09267661e-01\\n4.22511026e-02 -8.34257901e-03 -1.90606460e-01 -5.67713603e-02\\n3.45819980e-01 -8.13398361e-02 1.63348898e-01 -7.88199306e-02\\n2.25743979e-01 -2.68304437e-01 -1.04395591e-01 8.70596319e-02\\n7.67047983e-04 6.03134334e-01 -6.25669211e-02 -3.56460929e-01\\n-4.75177765e-02 4.08956170e-01 -4.37586159e-02 -1.00416765e-01\\n-3.08997571e-01 -2.62237713e-02 -2.88998842e-01 4.15641457e-01\\n-8.36860985e-02 -1.96044520e-01 -2.42734015e-01 -1.15270570e-01\\n-8.46666247e-02 3.39749098e-01 2.38535404e-01 2.01701581e-01\\n-3.77592780e-02 -4.09201711e-01 -1.04267605e-01 1.88862771e-01\\n2.72506565e-01 3.84476304e-01 2.52921373e-01 -2.66126782e-01\\n7.01435935e-03 2.31164202e-01 -3.12745273e-01 2.70031601e-01\\n-1.71409488e-01 2.28548393e-01 -7.02564120e-01 -2.83752441e-01\\n-2.08915830e-01 -3.24911743e-01 2.07820892e-01 4.84418899e-01\\n2.14780331e-01 -8.35779980e-02 1.30925566e-01 -5.00762582e-01\\n2.89361715e-01 1.76102281e-01 1.22894250e-01 3.34063694e-02\\n-7.21575618e-02 8.39317024e-01 2.67627873e-02 -1.64550453e-01\\n1.71246715e-02 3.88621166e-03 -2.45666057e-01 -2.18836084e-01\\n4.54920530e-02 -5.34934044e-01 -1.49418220e-01 5.12873352e-01\\n1.72530025e-01 -1.44415632e-01 -1.38982147e-01 2.46456265e-01\\n1.22482069e-02 -2.55173147e-01 -2.92161405e-01 5.41106947e-02\\n3.45119476e-01 2.08441824e-01 2.88472503e-01 -5.93923628e-01\\n2.30947826e-02 -5.04769832e-02 4.61579151e-02 4.76999313e-01\\n8.36529136e-02 1.59786820e-01 -8.18593726e-02 -1.12589180e-01\\n5.34571588e-01 -5.26609458e-02 -1.31717294e-01 9.87673700e-02\\n1.06258601e-01 -1.84308559e-01 -3.16501886e-01 6.96009547e-02\\n5.76907173e-02 -3.07378501e-01 -6.59161657e-02 2.06394672e-01\\n3.99399847e-02 5.78490570e-02 -6.52556181e-01 -2.13704571e-01\\n-3.81309569e-01 4.25295159e-02 4.56301644e-02 -6.49009824e-01\\n6.15077205e-02 -1.15735121e-01 -5.84666252e-01 3.19792658e-01\\n1.10377073e-01 -1.85834795e-01 1.54304832e-01 4.23192978e-04\\n-2.16205731e-01 -2.47395664e-01 1.75002486e-01 2.98761457e-01\\n-2.44280308e-01 -2.60217011e-01 -4.22296152e-02 -9.04650927e-01\\n1.16268277e-01 6.54700696e-02 -8.91539603e-02 2.45658457e-01\\n6.58497214e-04 -7.33578205e-01 2.82283366e-01 -3.81602824e-01\\n-2.09483862e-01 -5.65385260e-02 -2.51575977e-01 -4.11636323e-01\\n1.18698716e-01 3.70347053e-02 -2.05585554e-01 4.49339628e-01\\n-3.05426568e-01 5.05944610e-01 -1.73813432e-01 3.70150656e-02\\n1.34803578e-01 -2.33847052e-01 9.02599767e-02 -2.93336451e-01\\n-4.29284632e-01 -2.21725553e-01 -2.75201023e-01 -3.27438116e-01\\n-1.66207999e-01 -2.50342637e-01 -7.11620376e-02 1.43014807e-02\\n4.78029847e-01 2.18206286e-01 -1.06679216e-01 -1.48405358e-01\\n1.47682920e-01 -4.79291230e-01 2.66344696e-01 -1.88953221e-01\\n-1.12153590e-03 -1.21023074e-01 2.01207161e-01 1.29752934e-01\\n1.83702007e-01 -3.42673153e-01 4.05458778e-01 -3.06599140e-01\\n-3.56773376e-01 -1.80469215e-01 7.36860558e-02 2.57491227e-02\\n3.50551903e-01 -3.83217722e-01 -1.26342922e-01 3.16002071e-01\\n8.86447430e-02 1.28272325e-02 2.90792197e-01 -1.86736703e-01\\n-1.81795321e-02 3.06658030e-01 -5.24818480e-01 2.60160446e-01\\n8.48055899e-01 1.10449523e-01 2.42968410e-01 2.89506137e-01\\n2.52098680e-01 2.30567485e-01 3.99969548e-01 -9.57072824e-02\\n-2.05243990e-01 3.93826306e-01 7.53218457e-02 -4.83305424e-01\\n-1.09464027e-01 -1.73052430e-01 -2.26075500e-01 -4.59894568e-01\\n5.80006897e-01 3.13304365e-01 -3.13438594e-01 -2.22106159e-01\\n-2.80672997e-01 -9.55687389e-02 3.41950446e-01 -2.10532285e-02\\n-4.04935032e-02 -9.00340267e-03 5.80752373e-01 -1.76937386e-01\\n3.75622749e-01 5.29786289e-01 -2.13048786e-01 -3.02188903e-01\\n-6.72305599e-02 2.84235120e-01 9.90334079e-02 4.56026256e-01\\n-1.88996643e-01 2.73309767e-01 6.46158233e-02 2.06541523e-01\\n-2.26517797e-01 2.90215742e-02 2.25946650e-01 9.79579613e-02\\n1.49736643e-01 5.40722013e-02 5.74282885e-01 3.40536207e-01\\n2.84645557e-01 3.55635285e-01 3.58910799e-01 5.27420491e-02\\n5.05891562e-01 5.76545477e-01 3.40940446e-01 1.43006518e-01\\n-2.32622474e-02 6.61864057e-02 9.19683054e-02 -2.67255381e-02\\n1.70390472e-01 5.23409128e-01 1.00115307e-01 8.55834246e-01\\n3.27121615e-01 3.83333921e-01 6.89056873e-01 -6.68171346e-01\\n-2.98700750e-01 2.68845912e-02 5.15031815e-01 -4.69754308e-01\\n4.44980338e-02 1.96003169e-01 -2.65809357e-01 1.55805796e-01\\n-5.26422739e-01 -2.39244461e-01 1.97987724e-03 6.03208318e-02\\n-4.44223732e-02 -1.33598968e-01 -1.68413088e-01 2.28887111e-01\\n-1.31252766e-01 -1.42758027e-01 -3.60055506e-01 -1.09288201e-01\\n-2.75815457e-01 3.34134996e-02 -9.96145308e-02 4.40237001e-02\\n-1.06014490e-01 -2.81776607e-01 -1.68639589e-02 -1.39402419e-01\\n3.60379785e-01 -6.96187615e-02 -1.12020478e-01 -2.50156727e-02\\n2.43043721e-01 1.32869542e-01 6.48293138e-01 1.78837478e-02\\n8.48599896e-02 -2.50000209e-01 -1.40357256e-01 6.23552762e-02\\n2.28759289e-01 2.34695189e-02 -3.91375320e-03 3.76838803e-01\\n-2.33588368e-01 -2.61357486e-01 7.96170682e-02 1.75206900e-01\\n-4.07878757e-01 -4.38190587e-02 -1.18612051e-01 8.47824514e-02\\n-1.34902820e-03 1.98414788e-01 -3.02337587e-01 2.15135142e-02\\n-5.74270822e-02 -4.99403059e-01 3.29176903e-01 -1.74990714e-01\\n-1.49460539e-01 1.25245526e-02 2.70362228e-01 1.41746044e-01\\n-2.46404469e-01 8.99055600e-02 -1.87737614e-01 1.59438118e-01\\n-6.67132884e-02 2.97512829e-01 -1.98901206e-01 -2.20736310e-01\\n-3.31923842e-01 1.41132772e-01 -9.16024297e-02 1.81684241e-01\\n3.55431437e-02 4.12354469e-01 7.65552893e-02 4.04589027e-02\\n3.89421374e-01 -1.51551468e-02 -2.70998240e-01 -2.18103588e-01\\n-2.26548940e-01 -1.72021717e-01 -1.16660625e-01 -9.22714770e-02\\n2.63544202e-01 -2.78902918e-01 -6.21061912e-03 -2.97500670e-01\\n-2.16268674e-01 -5.27362585e-01 1.41717307e-02 -1.07467048e-01]]',\n", + " 'job_description': 'OUR COMPANY Our mission is to deliver solutions to the financial services industry, driving business and technology change through proven global expertise. Axxiome is a name synonymous with quality and value for financial services organizations that are looking to improve or build upon their IT operations. With offices and subsidiaries in many countries across 4 continents, Axxiome excels in transforming legacy banking and insurance platforms to modern solutions and is considered a leader in implementation and integration of digitization initiatives across the globe. In Cooperation with the Business Engineering Institute St.Gallen AG (BEI AG) we are building up a Data Science team for financial services. Innovation based on science and projects will lead us to success. BEI AG is the leading company for turning knowledge gained from research and science into practice-oriented consulting and innovative solutions. Join our team as DATA SCIENCE MANAGER F/M SWITZERLAND JOB DESCRIPTION As Data Science Manager you will manage a team of 3-5 highly educated and experienced data science analysts and developers, collaborate with the BEI AG and be responsible with your team for innovation and accurate data collection, processing, modelling and analysis to drive business. Lead data science projects end to end and coordinate functional teams/developers of 3-5 employees Mine, analyze customer data to drive optimization and improvement of products, marketing techniques and business strategy with your team Develop/use predictive statistics behavioral or other models by machine learning and/or traditional statist. modeling techniques to increase and optimize customer experience and revenue generation Develop data models, algorithms, tools and methods Applied knowledge of the configuration options of modules within or across packages to functional solutions using detailed knowledge of package capabilities to meet business requirements Create showcases how BI data can help to facilitate and drive business decisions focused on Financial Services Industries Connect findings to business initiatives and approach customer at various management levels to create opportunities REQUIREMENTS Master’s degree in engineering, computer science, physics, math or economics Familiar with the principles of modelling 5 years of experience Project Management SQL database management and maintenance skills Several years developing sustainable customer relations Fluent in German and English ADDITIONAL AS A PLUS Machine Learning, AI Python; R and/or SPSS knowledge or equivalent tools WE OFFER Unleash your potential in an international company with flat hierarchies. Enjoy a maximum of personal freedom. A structured onboarding process ensure that our new hires get familiar with Axxiome, receive right tools and feel seen and accountable. An attractive salary model with performance-based bonuses, a generous home office regulation, a company car for private use and other benefits of a modern consulting company round off our offer to you. As a top performer, you also participate directly in the company’s success through an investment model. To ensure that your knowledge is always “state-of-the-art”, you regularly take part in internal and external training courses. An intensive training and a regular coaching enable you to reach your personal goals. YOUR APPLICATION Please apply online with your complete set of documents, including your desired salary and your possible starting date at recruiting.dach@axxiome.com. For any questions please don’t hesitate to contact Hardy Schwarzer, Recruiting Manager Europe at Axxiome (hardy.schwarzer@axxiome.com, +49 151 27 655 588).',\n", + " 'soft_skills': '[\"Research\", \"Cooperation\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Management\", \"Accountability\", \"Operations\", \"Integration\", \"Innovation\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Technological Change\", \"Business Strategies\", \"Financial Services\", \"Sustainable Development\", \"Service Level Management\", \"Onboarding\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Customer Data Integration\", \"Performance Based Contracting\", \"Process Modeling\", \"Statistical Modeling\", \"SQL Plan Management\", \"Investments\", \"Machine Learning Methods\", \"Data Science\", \"Business Requirements\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Personalization\", \"Physics\", \"Receivables\", \"Service Innovation\", \"Modulation\", \"Economics\", \"Product Marketing\", \"Banking\", \"Project Management\", \"Algorithms\", \"Customer Experience\", \"Service Industries\", \"Additives\", \"Data Collection\", \"Job Descriptions\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"New Hire Orientations\"]',\n", + " 'languages': \"['English', 'Chinese', 'Xhosa']\"},\n", + " {'company_id': '105',\n", + " 'job_title': 'frontend engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.smallpdf.com',\n", + " 'jobdescription_embedded': '[[-4.26356867e-02 2.17359364e-01 5.42060494e-01 -5.14482819e-02\\n4.81459022e-01 -2.47155696e-01 7.70751685e-02 3.83561611e-01\\n-7.61580393e-02 -4.18908447e-01 -1.47926528e-02 -3.62792462e-01\\n-9.29435715e-02 1.75257578e-01 5.87201007e-02 3.43884677e-01\\n2.85040706e-01 1.12520024e-01 -2.44654283e-01 3.55138689e-01\\n2.96462566e-01 -1.12063155e-01 4.66714986e-02 6.95091784e-01\\n4.14578646e-01 -9.51050743e-02 -5.16524464e-02 -1.53855786e-01\\n-3.06625158e-01 -2.67285466e-01 4.19684708e-01 -3.26246917e-02\\n-5.62880151e-02 -4.05230820e-01 8.40772465e-02 1.87225621e-02\\n-2.44043529e-01 -2.15876698e-01 1.30531646e-03 2.38969445e-01\\n-4.90683615e-01 -2.87727356e-01 5.78819215e-02 3.12983468e-02\\n-1.71726957e-01 -3.27531070e-01 9.79775041e-02 4.48192917e-02\\n1.39299437e-01 1.00150913e-01 -4.11611140e-01 3.32246542e-01\\n-1.69229612e-01 -1.15801483e-01 2.90452182e-01 6.70354784e-01\\n-9.36756283e-02 -4.22827065e-01 -5.80516756e-01 -3.08450162e-01\\n2.99962107e-02 -3.33176479e-02 1.19138407e-02 -3.35483313e-01\\n1.98844135e-01 4.93469238e-02 4.88317460e-02 3.76933247e-01\\n-7.37324536e-01 -1.93130281e-02 -1.10173628e-01 -1.39085770e-01\\n-3.13379079e-01 -1.41722351e-01 -1.62129253e-01 3.04854731e-03\\n-1.78818852e-01 5.11358202e-01 1.83843821e-01 -2.78426670e-02\\n-1.79097503e-01 3.18047345e-01 -2.55310148e-01 4.11038995e-01\\n2.70241320e-01 1.02049403e-01 1.28908843e-01 2.37064034e-01\\n-4.04838055e-01 4.03564245e-01 1.47431359e-01 -3.30602348e-01\\n3.22148353e-01 1.34906963e-01 5.89837074e-01 -4.91536483e-02\\n-1.25817992e-02 9.04181078e-02 -2.64334738e-01 3.74347538e-01\\n3.87403011e-01 -2.54816055e-01 6.95309713e-02 1.44624673e-02\\n-5.47078513e-02 1.01057934e-02 5.37022054e-02 2.35129207e-01\\n-2.19720095e-01 4.60387707e-01 1.73691243e-01 -2.33808652e-01\\n-1.58658758e-01 -5.13279378e-01 -2.34095473e-02 -9.95451063e-02\\n9.82712954e-02 1.65316582e-01 3.00291359e-01 9.77112427e-02\\n1.21364690e-01 -6.02424480e-02 1.44502446e-01 9.19503272e-01\\n-2.13861391e-02 7.77891278e-02 -3.45812917e-01 3.09157729e-01\\n9.89619419e-02 -2.78476208e-01 2.78817922e-01 2.51963079e-01\\n3.02748755e-03 -2.06331581e-01 -2.00654373e-01 4.03390080e-01\\n-9.07253474e-02 -2.23988771e-01 -3.14446628e-01 1.52227238e-01\\n-1.31628722e-01 -1.65394217e-01 5.24711311e-01 2.20738813e-01\\n1.42920539e-01 -7.70501138e-05 -4.84240428e-02 -2.27333203e-01\\n-1.34954140e-01 1.90372914e-01 7.96317030e-03 -2.91291215e-02\\n-2.73840815e-01 -1.82257190e-01 -2.31048837e-01 2.48168379e-01\\n-2.95537531e-01 6.79955706e-02 -1.19695021e-03 -5.39408959e-02\\n3.48537564e-01 6.86229020e-02 -2.60308057e-01 2.64624238e-01\\n7.56696938e-03 6.12249412e-02 -3.24984938e-02 2.76003182e-01\\n-2.10690260e-01 1.41476572e-01 -2.11646385e-03 -1.18105561e-01\\n6.54830158e-01 2.10145786e-01 5.75211570e-02 6.11898899e-02\\n2.63660371e-01 -1.11128248e-01 1.06344171e-01 1.75692439e-01\\n-6.41887426e-01 3.22313249e-01 -1.90654937e-02 -2.39929333e-02\\n1.06223367e-01 -1.27983047e-02 2.35499501e-01 -2.43631989e-01\\n7.41604492e-02 -1.60515472e-01 -3.47899497e-01 -1.97039917e-01\\n-1.32735893e-01 -7.07565993e-02 4.51854765e-01 -4.44653243e-01\\n-2.42387190e-01 2.59660482e-01 -5.44767261e-01 -4.57545780e-02\\n2.09263057e-01 1.56340107e-01 2.84527063e-01 1.48632616e-01\\n-2.29241788e-01 -5.04425168e-01 9.28275883e-02 -3.99338365e-01\\n-2.84851521e-01 5.91068342e-02 -3.40003043e-01 2.53648698e-01\\n1.00188352e-01 1.11372367e-01 -2.81086862e-01 1.71657622e-01\\n-1.33932665e-01 -1.12761721e-01 9.37261209e-02 1.16183348e-01\\n1.72252297e-01 6.48344457e-02 -4.69846815e-01 3.62570107e-01\\n-2.30470419e-01 5.88052511e-01 1.18322209e-01 -8.95061910e-01\\n4.94688183e-01 3.44649494e-01 -1.68681607e-01 -3.31332892e-01\\n5.15646040e-01 -2.96523988e-01 3.98536213e-02 7.43760392e-02\\n-2.61296332e-01 -3.14898998e-01 3.64714861e-01 -1.98250696e-01\\n-1.84726387e-01 4.64992583e-01 1.29337892e-01 1.29057586e-01\\n2.37109184e-01 -1.58043653e-01 -1.24909297e-01 8.42152685e-02\\n-7.01201558e-02 -2.43604600e-01 -4.35638428e-01 -1.59778371e-02\\n-1.41154110e-01 -4.40238506e-01 -4.38202098e-02 -4.69277173e-01\\n-2.20354408e-01 -3.67773533e-01 -2.15932161e-01 2.33749807e-01\\n3.10926527e-01 8.61162171e-02 -4.12216689e-03 7.19740242e-03\\n-1.65765360e-01 -6.07746184e-01 3.99390096e-03 1.37362525e-01\\n4.34966385e-01 2.36092687e-01 -2.04690211e-02 3.99171142e-03\\n3.68867093e-03 6.31656706e-01 -1.33606359e-01 -7.18556941e-02\\n7.91895539e-02 1.94614589e-01 1.23932563e-01 -1.86552376e-01\\n1.88707076e-02 3.37208122e-01 -1.74811974e-01 2.81678289e-02\\n-3.52268144e-02 -1.93276927e-01 3.54825288e-01 1.42324686e-01\\n-3.76785338e-01 -1.49863258e-01 -4.03830856e-02 1.29352152e-01\\n-5.58953047e-01 -1.92380756e-01 6.17369831e-01 1.80110350e-01\\n1.66266620e-01 1.34725064e-01 2.16193751e-01 -4.14935276e-02\\n-1.70880750e-01 -2.46176451e-01 1.72394395e-01 9.20567513e-02\\n1.29354030e-01 1.71144351e-01 -7.78340474e-02 -7.20774829e-01\\n-3.02696419e+00 -1.69447660e-01 1.64873064e-01 -2.11554483e-01\\n-1.61197223e-03 -1.83458030e-01 4.44901250e-02 -1.10294193e-01\\n-3.23799729e-01 5.16319685e-02 -6.99989498e-02 -1.51402518e-01\\n2.33764619e-01 1.97024450e-01 4.59666066e-02 3.15534860e-01\\n1.85523376e-01 -1.60471156e-01 -1.25477344e-01 2.40527421e-01\\n-2.77908683e-01 -5.25492549e-01 2.93127030e-01 -7.69200027e-02\\n3.93592626e-01 1.10759802e-01 -3.07077080e-01 -2.26663485e-01\\n-2.79753417e-01 -1.39607966e-01 2.97660362e-02 -2.51405686e-01\\n-1.09302349e-01 1.80793703e-01 1.78204492e-01 -1.37538731e-01\\n2.59157240e-01 -4.86818045e-01 -3.26527536e-01 -4.66840833e-01\\n8.80545601e-02 -6.75537109e-01 2.21512839e-02 -1.72708139e-01\\n7.93677747e-01 -4.94511038e-01 1.74503118e-01 7.58543760e-02\\n2.46737212e-01 7.37583861e-02 1.04516990e-01 -9.84922238e-03\\n-1.76882342e-01 -2.22224280e-01 -1.65907398e-01 -1.24548778e-01\\n5.32761872e-01 5.98090053e-01 -1.05982184e-01 -5.15023172e-02\\n3.98262925e-02 -2.32019320e-01 -4.56047893e-01 -3.11501563e-01\\n-1.23848878e-01 -3.12325180e-01 -6.19879246e-01 -4.80381727e-01\\n-2.37374187e-01 -2.99166180e-02 -2.52804726e-01 7.38435268e-01\\n-2.61857003e-01 -3.40022802e-01 -2.18061991e-02 -5.30470192e-01\\n1.82726920e-01 -1.58571959e-01 4.85256314e-02 -1.53433368e-01\\n-3.88786972e-01 -4.27916050e-01 -1.78475548e-02 -6.47812113e-02\\n-1.85336962e-01 -3.86098593e-01 6.90961108e-02 -1.22954682e-01\\n-2.22198427e-01 -4.14396673e-01 4.20592993e-01 1.13168724e-01\\n2.30245173e-01 1.16653182e-01 3.04527223e-01 1.01878628e-01\\n2.95006633e-01 -1.64352849e-01 -4.38155793e-02 -2.86876976e-01\\n2.44866550e-01 1.16625212e-01 5.95448017e-01 -2.78884768e-01\\n4.80130874e-02 6.87559545e-02 -2.44557679e-01 -2.33721696e-02\\n3.35198134e-01 2.76131053e-02 -1.03772663e-01 -2.13947028e-01\\n2.68056065e-01 -2.69518793e-01 -2.41763443e-01 -1.17048975e-02\\n2.79169172e-01 5.85196376e-01 -6.94288090e-02 -4.91421729e-01\\n-1.98517337e-01 4.67280716e-01 -7.77068734e-02 -2.47461155e-01\\n-1.93125218e-01 1.23044305e-01 -2.74590850e-01 1.27820253e-01\\n5.46145029e-02 -1.30986243e-01 -4.22641724e-01 -2.16225550e-01\\n-4.15990828e-03 3.54080647e-01 2.53307343e-01 1.47672594e-01\\n9.53674968e-03 -5.08051634e-01 -9.97868106e-02 2.11298048e-01\\n1.02997646e-01 3.36050928e-01 1.33977756e-01 -1.54583320e-01\\n5.15170656e-02 3.32957923e-01 -1.75241008e-01 1.43952206e-01\\n-3.40252429e-01 1.20022282e-01 -5.15146017e-01 -3.25636208e-01\\n-2.17854962e-01 -3.94147724e-01 1.63017347e-01 2.23630354e-01\\n1.21833198e-01 1.38728432e-02 6.95391074e-02 -4.55082774e-01\\n3.00341964e-01 -3.16870399e-02 1.86063543e-01 1.80934131e-01\\n4.78222556e-02 4.69653845e-01 1.12590663e-01 -1.72039807e-01\\n-1.60782307e-01 -4.56978418e-02 -1.62538409e-01 -1.16983600e-01\\n-7.65185207e-02 -4.47909921e-01 -1.96309328e-01 5.07844746e-01\\n5.47904000e-02 -2.56419778e-01 -5.11841141e-02 3.41776311e-01\\n-6.51571676e-02 -1.71711653e-01 -8.86672661e-02 -3.84895131e-02\\n2.92488426e-01 3.59644480e-02 2.86019772e-01 -4.21014547e-01\\n7.02790692e-02 6.54388219e-02 -8.98997560e-02 6.42010212e-01\\n-2.50126608e-02 7.58225052e-03 -1.59198403e-01 -2.16151804e-01\\n5.30328333e-01 -1.18230805e-01 -1.57720353e-02 3.83238941e-02\\n4.56224941e-02 -1.38759941e-01 -5.34839809e-01 1.18696570e-01\\n7.06395134e-02 -1.22500226e-01 3.48810703e-02 1.38549313e-01\\n1.86418787e-01 1.02284044e-01 -5.34944713e-01 -3.15698534e-01\\n-2.81562775e-01 -4.09017466e-02 2.22971514e-02 -4.47195977e-01\\n-8.83192290e-03 -1.84076563e-01 -4.92877126e-01 2.96114266e-01\\n-2.23012596e-01 -6.69644549e-02 1.77550778e-01 -1.52256126e-02\\n-2.52854258e-01 -6.93797395e-02 1.62339911e-01 2.81103849e-01\\n-2.40171671e-01 -3.66645962e-01 1.68111414e-01 -8.54814291e-01\\n1.81317464e-01 6.14535697e-02 -1.83936939e-01 1.73092872e-01\\n-9.64080393e-02 -7.69380033e-01 1.19291037e-01 -3.40814888e-01\\n-1.90931763e-02 -4.40369621e-02 -1.90907493e-01 -5.51337242e-01\\n1.21280506e-01 -1.74905825e-02 -2.94490904e-01 3.46234411e-01\\n-2.82669514e-01 3.43858838e-01 -3.77558395e-02 1.15316696e-01\\n1.50045782e-01 -3.20816875e-01 7.28359371e-02 -5.25180936e-01\\n-4.36110467e-01 -1.72565967e-01 -3.54540348e-01 -3.14469576e-01\\n-1.87959187e-02 -1.48561597e-01 -1.50251994e-02 1.18796960e-01\\n3.57951671e-01 1.46575332e-01 -6.07330985e-02 -3.01587433e-01\\n-9.17130802e-03 -5.48538089e-01 1.19791981e-02 -6.01466298e-02\\n-3.27033810e-02 -1.08909249e-01 1.23886704e-01 1.24658689e-01\\n-2.53379662e-02 -4.16364372e-01 4.12447333e-01 -4.29993182e-01\\n-2.72186756e-01 -1.09541789e-01 -6.33095484e-03 -2.47128177e-02\\n3.12206268e-01 -3.61054778e-01 1.02273608e-02 3.67910296e-01\\n1.68739051e-01 1.72914833e-01 2.24339306e-01 -2.46951785e-02\\n1.51762720e-02 3.16061378e-01 -2.83781290e-01 9.12732109e-02\\n7.32344687e-01 -6.43279478e-02 1.25934094e-01 1.49296865e-01\\n8.04644823e-02 2.23277465e-01 5.20833075e-01 2.39329860e-02\\n-1.70112059e-01 2.47473210e-01 1.05645001e-01 -5.92863321e-01\\n-4.95322533e-02 2.27696411e-02 -2.68524468e-01 -4.98389393e-01\\n5.77039182e-01 4.72070992e-01 -3.78883392e-01 -2.15172797e-01\\n-2.35220402e-01 -1.88715443e-01 2.09268425e-02 -5.15931584e-02\\n1.06485188e-01 -9.55188647e-02 4.95313108e-01 -8.12276825e-02\\n2.23100528e-01 5.06278872e-01 -1.78636491e-01 -3.66078079e-01\\n-1.09578617e-01 1.57138929e-01 7.24354982e-02 3.87416899e-01\\n-2.70480365e-01 3.56068730e-01 -2.57838480e-02 1.12834960e-01\\n-1.69545963e-01 1.81436419e-01 1.28029156e-02 -4.25392129e-02\\n1.24429092e-01 4.67251576e-02 3.76551211e-01 4.23538595e-01\\n4.15591359e-01 4.23245519e-01 1.69085264e-01 -6.29788861e-02\\n6.06733799e-01 6.10048175e-01 4.34010714e-01 2.57893533e-01\\n-1.05141290e-01 4.41681668e-02 5.62633481e-03 1.42182233e-02\\n3.03674459e-01 3.16523194e-01 -8.69757403e-03 8.80585134e-01\\n3.50955695e-01 2.16461644e-01 5.12291551e-01 -6.01212859e-01\\n-3.22058737e-01 5.06694280e-02 5.27052045e-01 -3.23927611e-01\\n-1.81411549e-01 8.42813700e-02 -1.81037962e-01 1.01448156e-01\\n-4.14314598e-01 -2.44046807e-01 -3.42161283e-02 1.73092961e-01\\n7.17791840e-02 -1.95260778e-01 -2.24474832e-01 9.94745046e-02\\n-2.33754501e-01 -1.25018612e-01 -5.29336095e-01 1.27337381e-01\\n-1.90800324e-01 -1.90402061e-01 -8.49710405e-02 -1.14995398e-01\\n-1.18122794e-01 -4.26183611e-01 -1.06715366e-01 -1.22525126e-01\\n2.84286171e-01 -1.94852024e-01 -4.19794582e-02 -2.32974783e-01\\n1.49049222e-01 2.84637243e-01 5.23172855e-01 9.19648409e-02\\n8.47783983e-02 -3.57522756e-01 -2.50506252e-01 1.48564354e-01\\n1.81228220e-01 1.70128286e-01 2.60742810e-02 3.01527172e-01\\n-2.16837287e-01 5.73847666e-02 9.37110335e-02 3.80991787e-01\\n-4.79477644e-01 6.14154488e-02 -2.06676453e-01 1.43909633e-01\\n2.57612020e-01 2.01875240e-01 -2.61800170e-01 8.53309333e-02\\n-1.99946001e-01 -4.23904121e-01 3.04566056e-01 -8.63096565e-02\\n-3.57200243e-02 4.99662943e-02 1.28981411e-01 1.13556460e-01\\n-2.84328401e-01 -6.86825886e-02 -8.50870386e-02 2.41473511e-01\\n2.12153226e-01 3.13087791e-01 -3.16514820e-01 -2.86024600e-01\\n-1.86461270e-01 1.87176913e-01 -1.66381896e-01 6.69556856e-02\\n1.70782227e-02 3.39607239e-01 3.10208127e-02 7.02763125e-02\\n4.41980451e-01 4.97865044e-02 -2.11667866e-01 -1.50598556e-01\\n-2.66024113e-01 -3.77244651e-01 4.27110732e-04 -5.80797344e-02\\n1.13955222e-01 -4.43898141e-01 -3.84360855e-03 -9.13604945e-02\\n-2.07513228e-01 -3.37287456e-01 3.88290937e-04 -1.68185696e-01]]',\n", + " 'job_description': 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 20 million users worldwide work with documents. Our team enjoys open-source, adopting the latest technologies and solving tricky frontend challenges to create outstanding user interfaces. As a Frontend Engineer at Smallpdf, you will work closely with the team to improve and extend our product. What you will do: Team up with our designers and developers to create great user experiences and reliable interfaces Work closely with our team to tie the front-end to our back-end infrastructure Implement new features and improve existing ones We use the latest technologies, including: ES6 Webpack React Redux Redux-Saga Check our stack via https://stackshare.io/smallpdf/frontend Requirements 3+ years of experience in developing web-based user interfaces Outstanding skills in Javascript (including some knowledge in Node.js) An obsession for interactions, animations, and visual details CSS, TDD, Git and Linux experience Experience with React is a plus Can excel independently and have a sense of ownership for your own work Fluent English Based in Zurich or willing to relocate Swiss or EU passport holder (or other permits that allow you to work in Switzerland) Benefits The chance to personally impact a successful & rapidly growing startup Opportunity to solve tricky frontend challenges using modern technologies Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich If you like the job apply here please: https://apply.workable.com/smallpdf/j/62E4A9510C/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Visualization\", \"Component Object Model (COM)\", \"Node.js\", \"Linux\", \"Web Development\", \"React.js\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"React Redux\", \"Webpack\", \"Animations\", \"Personalization\", \"JavaScript (Programming Language)\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Language Experience Approach\", \"Git Flow\", \"User Experience\", \"User Interface\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Yoruba', 'Fijian', 'Dhivehi', 'Kanuri']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'c#/c++/python software engineer (machine learning)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.93112397e-01 2.76993454e-01 4.92223561e-01 3.42632048e-02\\n6.42038167e-01 -1.70579538e-01 -2.11510528e-03 2.95063674e-01\\n-2.16714665e-01 -2.27882534e-01 -7.26365969e-02 -3.20287079e-01\\n-8.75073522e-02 7.78775811e-02 2.31837690e-01 4.20437485e-01\\n3.01373005e-01 7.33160451e-02 -1.56790912e-01 3.89016151e-01\\n2.72461325e-01 -4.19317819e-02 -3.10068931e-02 5.45357883e-01\\n4.30955380e-01 3.95432375e-02 -8.26435909e-02 1.65666237e-01\\n-3.70938003e-01 -1.67808726e-01 3.43073279e-01 -3.96495033e-03\\n-3.50094698e-02 -1.72537968e-01 8.43503997e-02 7.26385117e-02\\n-2.61139423e-01 8.37660655e-02 2.17419863e-02 2.62432903e-01\\n-2.41624251e-01 -2.63716340e-01 1.46882042e-01 4.43590097e-02\\n-3.17359388e-01 -3.32624584e-01 -1.01415224e-01 -5.34266746e-03\\n1.53266445e-01 -8.51824284e-02 -5.70278406e-01 4.90823805e-01\\n-9.76071358e-02 -3.72763515e-01 1.44253105e-01 7.20310688e-01\\n-4.58696038e-02 -4.71788079e-01 -2.79114693e-01 -3.49925071e-01\\n1.58798471e-01 -1.38724297e-01 3.64518538e-02 -2.35490397e-01\\n4.39103186e-01 4.57336158e-02 -5.05668996e-03 4.31522518e-01\\n-7.01392114e-01 8.80151838e-02 -1.85126886e-01 1.40523955e-01\\n-3.74686241e-01 3.73319834e-02 -3.81958157e-01 -3.71489488e-02\\n-3.88773717e-02 3.87165993e-01 -4.33914512e-02 5.57110757e-02\\n-9.58388671e-02 2.26998419e-01 -1.35457560e-01 1.66321695e-01\\n3.64505619e-01 3.42216164e-01 1.47968337e-01 5.18526196e-01\\n-5.41358709e-01 2.78979421e-01 1.32350802e-01 -2.97637224e-01\\n2.69251287e-01 1.69332832e-01 4.18165624e-01 2.37587690e-01\\n-2.74782497e-02 1.98606566e-01 -1.37318134e-01 9.44235101e-02\\n7.17410296e-02 -3.25662971e-01 1.25100985e-02 3.70110050e-02\\n-1.44729525e-01 -4.71752435e-02 -1.11040510e-01 4.52604085e-01\\n-2.24880144e-01 3.99958760e-01 3.62990727e-03 -2.67740518e-01\\n-6.19661845e-02 -6.90855563e-01 -1.62362576e-01 3.58507223e-02\\n-5.75124621e-02 1.70467198e-01 3.65175873e-01 2.64852762e-01\\n2.21766889e-01 3.92351635e-02 2.46399477e-01 1.15081906e+00\\n2.99625974e-02 1.77347422e-01 -3.04667920e-01 4.79626447e-01\\n3.08634371e-01 2.11172039e-03 7.90033862e-02 3.05213153e-01\\n1.32920578e-01 -6.64933398e-02 -7.84109160e-02 1.39058277e-01\\n-1.65680841e-01 -1.33007631e-01 -1.48339853e-01 -5.64897992e-03\\n-3.35461944e-01 -6.32025421e-01 6.93757892e-01 3.26561630e-02\\n1.06911473e-01 -1.98106065e-01 -2.25893520e-02 7.23064840e-02\\n-6.83765411e-02 3.22952777e-01 1.44540355e-01 2.21080527e-01\\n-4.65140253e-01 -2.63223588e-01 -3.15163046e-01 4.02703166e-01\\n-1.31134689e-01 5.35284579e-02 -1.49985582e-01 -7.63798133e-02\\n3.24644268e-01 -1.75641775e-02 -3.33491445e-01 3.46920103e-01\\n-7.90918991e-02 -3.94470423e-01 1.63302049e-02 2.95061707e-01\\n-2.32732296e-01 1.97421774e-01 -7.04498589e-02 -3.50995809e-01\\n4.92776215e-01 4.88528982e-02 1.61172315e-01 -1.54270366e-01\\n3.23401093e-01 -1.32222354e-01 2.63603002e-01 2.36801028e-01\\n-5.68935513e-01 3.44074637e-01 -1.00693114e-01 -1.02718577e-01\\n2.23157629e-01 1.44499481e-01 4.79260117e-01 -1.92107946e-01\\n1.80296097e-02 -3.14610094e-01 -4.17981356e-01 -4.11941916e-01\\n-3.51664692e-01 -6.10116161e-02 3.24744165e-01 -3.41245711e-01\\n-3.47643346e-02 1.08026229e-01 -5.23900390e-01 3.12384479e-02\\n2.33394027e-01 2.11120084e-01 -3.07753379e-03 1.38309643e-01\\n-9.96967703e-02 -5.96714199e-01 1.23808891e-01 -4.65844303e-01\\n-4.37148720e-01 2.87717432e-02 -2.76039898e-01 1.08143680e-01\\n1.41488627e-01 2.34599188e-02 -7.82593191e-02 7.79877156e-02\\n-4.14419234e-01 -1.36891738e-01 2.07767546e-01 1.94850504e-01\\n3.32132071e-01 -2.71140546e-01 -4.51851904e-01 5.23020744e-01\\n-1.73754528e-01 5.01401901e-01 3.44227523e-01 -9.31012034e-01\\n5.56109667e-01 2.14151308e-01 6.24020882e-02 -3.55453253e-01\\n5.63346922e-01 -4.46866453e-01 -3.71730439e-02 2.10495621e-01\\n-1.89134583e-01 -1.65003747e-01 2.81173229e-01 -2.73419227e-02\\n-4.47729707e-01 5.94069839e-01 1.51018828e-01 -4.19044495e-02\\n3.21229786e-01 -2.73992360e-01 -1.87989712e-01 -2.11861476e-01\\n-1.60135135e-01 -3.08773011e-01 -4.30488616e-01 1.37604415e-01\\n-5.41779362e-02 -5.61917186e-01 -2.14913890e-01 -3.55732918e-01\\n-9.05518755e-02 -4.87426817e-01 -2.13137090e-01 4.30112243e-01\\n1.84771925e-01 7.90248811e-02 -3.48418653e-02 -1.06014177e-01\\n-1.77613683e-02 -4.51593637e-01 -2.00063765e-01 5.92931248e-02\\n6.05291665e-01 3.68489355e-01 5.74145801e-02 -1.90416053e-02\\n1.56650797e-01 6.13010049e-01 -2.61714458e-01 -4.43101376e-01\\n2.00727150e-01 1.58493787e-01 -1.41176641e-01 -1.43948883e-01\\n5.21547571e-02 4.95592266e-01 -2.52299249e-01 -3.24202306e-03\\n-1.96460649e-01 1.53220017e-02 2.24506393e-01 3.52609879e-03\\n-1.11901999e-01 -3.18543255e-01 -4.27447334e-02 3.70438635e-01\\n-5.10247231e-01 -2.97820300e-01 5.78950107e-01 2.05976963e-01\\n1.06419042e-01 -9.08912998e-03 3.80959451e-01 -9.47711840e-02\\n-3.18148255e-01 -3.17597836e-01 1.09158084e-01 4.06201743e-02\\n9.15191099e-02 8.64126608e-02 -3.83854844e-02 -3.72658521e-01\\n-3.66919827e+00 -2.08468273e-01 8.38653818e-02 -2.81001776e-01\\n1.66111633e-01 -1.30322635e-01 -1.89061657e-01 1.83292314e-01\\n-3.47556472e-01 -1.19800456e-02 -3.33726227e-01 -5.97489718e-03\\n6.32525012e-02 3.45968306e-01 1.50879651e-01 1.00045063e-01\\n2.31223986e-01 -2.07184464e-01 -1.35074407e-01 5.79428136e-01\\n-1.95387453e-01 -6.11396730e-01 9.81731713e-02 -8.30544010e-02\\n1.36568591e-01 2.14787558e-01 -4.25493836e-01 1.10111861e-02\\n-2.21908420e-01 -4.30708766e-01 8.02976936e-02 -2.89357156e-01\\n-2.01565310e-01 4.97082531e-01 7.71032721e-02 -3.49077769e-02\\n3.00752316e-02 -3.39424372e-01 5.16183563e-02 -2.75456518e-01\\n7.86392167e-02 -7.17992246e-01 -7.72197694e-02 4.26140726e-02\\n8.61383617e-01 -4.59401906e-01 2.72209853e-01 1.79776326e-01\\n1.62700623e-01 1.07094564e-01 -9.38765928e-02 -3.08756288e-02\\n-3.37990642e-01 -4.08394545e-01 -1.35858968e-01 -1.70363545e-01\\n4.66936678e-01 3.89480948e-01 -3.12499940e-01 8.91562738e-03\\n1.93044856e-01 -2.64964491e-01 -3.75929236e-01 -5.71550906e-01\\n-2.53535420e-01 -1.68601155e-01 -6.98175788e-01 -6.35981858e-01\\n-2.54297167e-01 -4.18213308e-02 -1.44793078e-01 5.51631808e-01\\n-2.56913513e-01 -4.44924504e-01 -1.41852766e-01 -4.44388747e-01\\n2.01809987e-01 -2.67004371e-01 -3.12018152e-02 -2.11231157e-01\\n-3.99913669e-01 -5.57216406e-01 2.59088278e-01 7.83223882e-02\\n-2.64458358e-01 -6.02975953e-04 9.07902569e-02 -3.30267489e-01\\n-4.11558270e-01 -3.66036206e-01 5.45874000e-01 7.93808773e-02\\n4.61648583e-01 1.77656636e-01 3.30455154e-01 3.52006078e-01\\n4.74436581e-01 -1.38882935e-01 1.25547886e-01 -4.85495329e-01\\n-2.55215969e-02 9.55058560e-02 5.57391584e-01 -2.49974206e-01\\n7.39667714e-02 1.17296651e-01 -2.00860456e-01 -1.51321501e-01\\n4.31543618e-01 6.30931137e-03 2.61769872e-02 -1.46322995e-01\\n4.02855933e-01 -3.35016996e-01 -2.22305462e-01 2.00887263e-01\\n4.11133468e-02 6.14040673e-01 4.86803055e-02 -3.86929959e-01\\n-3.41621965e-01 4.12037909e-01 -2.40852296e-01 -5.07192202e-02\\n-7.41118416e-02 6.66555911e-02 -8.34762678e-02 3.51738125e-01\\n1.65910404e-02 -2.85248339e-01 -3.13854158e-01 1.61938369e-02\\n1.92918405e-02 3.93213443e-02 3.01701099e-01 -5.92322275e-02\\n-4.80673984e-02 -2.28039339e-01 -3.40486094e-02 1.05559140e-01\\n5.97061872e-01 2.32489556e-01 1.59011766e-01 -2.28997022e-01\\n-9.65437200e-03 1.90598950e-01 -1.83227897e-01 3.14763665e-01\\n-1.83184221e-01 1.77261680e-01 -6.72925770e-01 -4.34175640e-01\\n-8.13711137e-02 -2.63806105e-01 3.29722539e-02 3.71272206e-01\\n1.46509469e-01 -1.83334257e-02 -1.11593530e-02 -6.63682222e-01\\n4.85861450e-01 4.65988293e-02 2.88212240e-01 1.18781194e-01\\n3.23336571e-03 6.43613517e-01 8.15772116e-02 -1.50796428e-01\\n-1.62325636e-01 9.63434204e-02 -2.02261195e-01 -3.00196707e-01\\n7.60274529e-02 -3.93480539e-01 -2.24661782e-01 3.89207482e-01\\n2.10050419e-01 -2.89228767e-01 -2.82017589e-01 2.94363081e-01\\n1.30480900e-01 -3.55320960e-01 -1.58804849e-01 2.12058932e-01\\n3.67298931e-01 3.31431389e-01 8.91285203e-03 -4.10225958e-01\\n9.21407342e-02 2.66943164e-02 -2.71587279e-02 3.73034656e-01\\n1.66790023e-01 -1.82103906e-02 -5.80278859e-02 -1.69781551e-01\\n4.89357889e-01 -1.37192430e-02 -9.86241028e-02 -1.49851784e-01\\n1.19060762e-02 -2.45856643e-01 -3.20087463e-01 1.65023338e-02\\n5.36215939e-02 -2.43467480e-01 2.91712023e-02 1.69196472e-01\\n-6.22595921e-02 -9.51955616e-02 -3.32612157e-01 -3.26634437e-01\\n-5.06726563e-01 -2.50204116e-01 8.16685483e-02 -2.84202337e-01\\n-1.19560286e-02 2.54749991e-02 -4.99149263e-01 1.98163122e-01\\n-1.63681358e-01 -1.37528749e-02 9.68734026e-02 -1.09502032e-01\\n-2.99439847e-01 -1.82755515e-01 2.80210763e-01 2.91161329e-01\\n-3.88082802e-01 -1.64800346e-01 -2.10505426e-02 -8.07056844e-01\\n7.11317058e-04 -6.90776706e-02 -1.23619050e-01 3.51600233e-04\\n8.44649971e-02 -5.55475295e-01 3.80033284e-01 -5.59305429e-01\\n-7.06439614e-02 -1.35144014e-02 -2.45653465e-01 -4.52459663e-01\\n1.60185173e-01 -6.70149103e-02 -3.09665531e-01 3.30242008e-01\\n-4.80208993e-01 4.10413206e-01 8.96358863e-03 1.02517875e-02\\n7.97201172e-02 -3.61136556e-01 1.79732472e-01 -1.13680094e-01\\n-3.03354442e-01 -2.00634837e-01 -4.11587179e-01 -1.47562817e-01\\n-2.23134443e-01 -5.22293672e-02 -2.96606243e-01 -6.57303631e-03\\n2.60561973e-01 1.41304597e-01 -9.21496004e-02 -2.09514886e-01\\n2.37843215e-01 -5.40693343e-01 1.96395069e-02 -3.98853213e-01\\n-9.55977365e-02 -1.15620725e-01 2.37159133e-01 3.33553366e-02\\n3.93835492e-02 -3.00088227e-01 4.47715610e-01 -1.14152871e-01\\n-3.90530735e-01 -3.08494456e-02 1.94468230e-01 1.21691160e-01\\n2.70845294e-01 -3.52301449e-01 -4.02841941e-02 2.26664990e-01\\n8.52903873e-02 1.95753530e-01 3.68561625e-01 1.00308293e-02\\n-2.34743536e-01 1.98384374e-01 -4.43188906e-01 8.91323462e-02\\n7.13130534e-01 2.06691399e-01 1.09216467e-01 1.53789952e-01\\n2.14320764e-01 3.61826718e-01 4.90207285e-01 1.13227181e-02\\n-3.34464274e-02 4.50215518e-01 7.86216930e-02 -5.92285395e-01\\n1.49200941e-02 -1.72554851e-01 -1.56296507e-01 -1.25592753e-01\\n4.73073035e-01 4.68487293e-01 -3.85393590e-01 -2.43817419e-01\\n-8.48503858e-02 -4.42804256e-03 4.12756830e-01 9.06915870e-03\\n2.03662105e-02 6.17116839e-02 5.86361468e-01 -8.95997062e-02\\n2.35010087e-01 6.09750569e-01 -2.34052360e-01 -2.00185582e-01\\n-6.33458272e-02 1.80512276e-02 1.99213415e-01 2.98758000e-01\\n-9.70214307e-02 2.48033211e-01 1.85327213e-02 1.03757590e-01\\n-1.10848770e-01 -1.95246972e-02 2.29128078e-01 -8.23669583e-02\\n1.75298005e-01 8.99047703e-02 1.78178921e-01 3.55724841e-01\\n1.02944665e-01 5.04170656e-01 2.84641981e-01 -1.53780403e-03\\n2.74990439e-01 5.48077524e-01 2.89394110e-01 2.25715250e-01\\n6.94509819e-02 1.40436264e-02 2.45492309e-02 -1.22773992e-02\\n1.92008689e-01 3.53962004e-01 2.14647055e-01 9.79651451e-01\\n4.42511380e-01 3.53421211e-01 7.06436992e-01 -6.49439871e-01\\n-4.68792796e-01 3.53603996e-02 5.80333531e-01 -2.30941936e-01\\n-1.63415313e-01 2.76218802e-02 -2.90513307e-01 1.11833483e-01\\n-5.83295047e-01 -2.01193541e-02 1.21563552e-02 -1.82474721e-02\\n-1.06463313e-01 -6.23168284e-03 -2.93119758e-01 3.61803360e-02\\n-1.00165829e-01 -1.22578647e-02 -4.06143695e-01 -3.04052770e-01\\n-2.30595559e-01 -1.46788731e-01 -1.36443034e-01 4.96575497e-02\\n-9.06742364e-02 -3.11901033e-01 -1.71947211e-01 1.35697857e-01\\n4.19050753e-01 -2.05030143e-01 -7.03667551e-02 -2.20522180e-01\\n-6.85346965e-03 3.07208002e-01 5.89590132e-01 -1.16100222e-01\\n1.97559595e-01 -2.39646628e-01 -1.94241658e-01 7.53690116e-03\\n8.12006518e-02 -2.88174860e-02 1.86197441e-02 7.05693662e-01\\n-4.28495526e-01 -2.04107031e-01 -5.80375157e-02 3.85444969e-01\\n-4.01256144e-01 2.56217327e-02 2.91381851e-02 1.21905118e-01\\n-7.30662644e-02 1.67366996e-01 -3.14151913e-01 2.10981295e-02\\n-3.89374882e-01 -4.96164888e-01 4.15004820e-01 -2.31707111e-01\\n-8.57435092e-02 1.12030491e-01 3.03717554e-01 2.24826604e-01\\n-1.30032048e-01 -8.45822468e-02 -1.31629303e-01 3.42964649e-01\\n-1.09149545e-01 4.03468609e-01 -2.34294176e-01 -1.77607566e-01\\n-2.80292898e-01 2.49166027e-01 -1.45157233e-01 2.22440794e-01\\n-2.08656818e-01 3.40195715e-01 1.54547011e-02 7.62364194e-02\\n1.16438173e-01 5.06092757e-02 -3.44826460e-01 -1.73947260e-01\\n-1.92740887e-01 -3.71713728e-01 8.59138295e-02 1.21583402e-01\\n1.46260709e-01 -3.15748990e-01 4.77702543e-02 -1.62684917e-01\\n-2.52648801e-01 -5.16583860e-01 -1.42148972e-01 -6.85354918e-02]]',\n", + " 'job_description': 'Job Informationen Your profile: • Data processing: parsing, filtering, piping, indexing querying data efficiently • Experience in Pipeline development • Expertise in full-stack data science tools including data wrangling/munging, iterative and batch analysis • Knowledge of image processing, computer vision & geometric analysis • Data mining and statistical modeling background • Experience automated model training • Strategic data analysis and research: statistical tests, propagation of error, Identifying clusters and outliers • Building training/testing and validating datasets • SQL/ NO-SQL, C#, Python, C++ • Knowledge of agile development principles and experience in project methodologies. • MS or BSc in Software Engineering or equivalent experience. • Good team player and ambition to actively form a great company. • Azure or comparable cloud platform experience and large scaling web applications is a plus. • Fluent in English and German. • Understanding of CNC Manufacturing/CAD is a plus Benötigte Skills SQL NoSQL C# .NET Python Python C++ CAD',\n", + " 'soft_skills': '[\"Research\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Automation\", \"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Propagator\", \"Computer Numerical Control (CNC)\", \"C++ (Programming Language)\", \"Activism\", \"Computer Vision\", \"Python (Programming Language)\", \"Cloud Platform System\", \"Dataset\", \"Iterators\", \"Statistical Modeling\", \"Pipelining\", \"Software Engineering\", \"Physician Data Query\", \"Image Processing\", \"Data Science\", \"Indexing\", \"Data Wrangling\", \"C# (Programming Language)\", \"Outliers\", \"Electronic Data Processing\", \"Agile Product Development\", \"Java Data Mining\", \"Validations\", \"Statistical Hypothesis Testing\", \"Parsing\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data preparation expert',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'job_description': 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " 'soft_skills': '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " 'hard_skills': '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'Ido', 'French', 'Sundanese', 'Bosnian']\"},\n", + " {'company_id': '116',\n", + " 'job_title': 'full-stack software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.36740351e-01 2.88936019e-01 5.10208249e-01 1.44284032e-03\\n4.70957875e-01 -1.39022276e-01 -1.09604280e-02 3.85283589e-01\\n1.17760301e-02 -5.42707086e-01 -4.41441610e-02 -3.45162809e-01\\n-8.51533040e-02 2.01667964e-01 3.61580178e-02 3.31683517e-01\\n4.37809408e-01 1.28416851e-01 -1.27002075e-01 3.50799769e-01\\n6.54001236e-02 -1.88190579e-01 -9.09784250e-03 8.65439653e-01\\n3.71540129e-01 -5.91914617e-02 -1.10496208e-01 1.71588995e-02\\n-2.15263575e-01 -2.40220428e-01 4.33525562e-01 4.29515615e-02\\n-1.70200810e-01 -4.19960916e-01 6.11342639e-02 4.35761586e-02\\n-2.11427405e-01 6.67328984e-02 -8.47061947e-02 6.20165132e-02\\n-4.99509603e-01 -2.04048812e-01 7.12506548e-02 -9.74359959e-02\\n-1.90708697e-01 -3.25748801e-01 9.18297321e-02 3.39630321e-02\\n1.89653501e-01 -6.93693012e-03 -4.73086894e-01 2.40528017e-01\\n-2.26929337e-01 -1.68782979e-01 2.70750821e-01 5.36220253e-01\\n1.21692223e-02 -4.12523180e-01 -4.66061652e-01 -3.05633426e-01\\n6.37141392e-02 -8.20945650e-02 1.84677616e-01 -3.15301955e-01\\n4.01196122e-01 1.68232173e-02 -1.72114968e-02 2.68393070e-01\\n-6.75586462e-01 -3.85808386e-02 -3.37628007e-01 2.89283376e-02\\n-3.20351720e-01 -1.95934147e-01 -3.75873744e-01 -8.53928030e-02\\n-1.45761400e-01 4.00271297e-01 1.26400173e-01 1.21805623e-01\\n-2.74021566e-01 3.07712436e-01 -2.18901783e-01 4.40495074e-01\\n2.08199471e-01 2.62404591e-01 3.14336091e-01 3.30210477e-01\\n-4.58958417e-01 4.25645173e-01 1.39923021e-01 -2.32432425e-01\\n3.81427556e-01 1.09482855e-01 3.08440149e-01 -7.24775791e-02\\n2.10132927e-01 1.07721016e-01 -1.83054447e-01 2.72777855e-01\\n1.78626820e-01 -2.91383028e-01 -5.12484089e-02 -1.08245328e-01\\n2.33571790e-02 5.30383401e-02 3.49978618e-02 1.72841027e-01\\n-3.41686189e-01 4.68909860e-01 1.88141346e-01 -2.33332932e-01\\n-2.14018375e-01 -4.53672349e-01 -4.98792082e-02 5.92030473e-02\\n-2.80785635e-02 1.04893766e-01 2.93634236e-01 1.10680066e-01\\n2.29387373e-01 4.19082716e-02 4.50956151e-02 8.75518620e-01\\n-6.11162111e-02 5.32259122e-02 -3.08237195e-01 3.60507995e-01\\n1.07064709e-01 -2.90008187e-01 1.08443975e-01 2.24845588e-01\\n8.34799558e-03 -1.12637565e-01 -2.69115329e-01 4.19014692e-01\\n3.17200571e-02 -2.17936993e-01 -2.49858886e-01 1.49574310e-01\\n-4.43070047e-02 -4.84749317e-01 6.10840023e-01 8.19865614e-02\\n2.27659583e-01 -7.98174441e-02 1.40729502e-01 -1.55077294e-01\\n-1.22981578e-01 2.34592497e-01 6.55905679e-02 1.94221258e-01\\n-2.54552364e-01 -3.03793013e-01 -2.25468665e-01 1.34403884e-01\\n-3.36865008e-01 2.09267557e-01 -8.32896158e-02 -8.91502351e-02\\n2.90592968e-01 4.62634042e-02 -3.34347486e-01 2.60780096e-01\\n-1.07751086e-01 2.58502066e-02 -1.24109536e-01 3.77673388e-01\\n-1.68899775e-01 1.53479815e-01 1.05851017e-01 -1.59236323e-02\\n5.56878924e-01 3.04227710e-01 1.89586431e-01 -4.87767905e-02\\n3.47013950e-01 -1.31681859e-01 -8.29139166e-03 1.19794980e-01\\n-6.71812415e-01 3.65017354e-01 -6.21266998e-02 -1.40731335e-01\\n3.27942818e-02 -1.07224986e-01 2.52086014e-01 -2.92773306e-01\\n-5.69693893e-02 -1.84647530e-01 -3.93494517e-01 -2.33491927e-01\\n-2.18553513e-01 -2.08394416e-02 3.38352740e-01 -4.48163718e-01\\n-6.94795772e-02 2.25898534e-01 -6.12091482e-01 -5.42385206e-02\\n2.09354982e-01 2.10308507e-01 5.87331355e-02 1.33425102e-01\\n-8.86202082e-02 -5.57947993e-01 9.65655595e-02 -4.85117853e-01\\n-3.69276136e-01 6.00739568e-02 -3.70473206e-01 1.81543082e-01\\n1.25944883e-01 -1.02324374e-02 -1.18141189e-01 9.45614129e-02\\n-1.39630884e-01 -5.09480126e-02 1.37375534e-01 4.46327589e-03\\n3.28241289e-01 5.65517470e-02 -4.17358994e-01 4.15330023e-01\\n-3.31370413e-01 4.27606463e-01 3.46104503e-02 -9.13778901e-01\\n4.89763916e-01 3.75711739e-01 -1.98173858e-02 -3.50116909e-01\\n5.22423863e-01 -2.77704418e-01 -2.86553241e-02 8.91416669e-02\\n-3.18199992e-01 -2.20564902e-01 2.31708705e-01 -2.81772256e-01\\n-2.45263651e-01 4.36373740e-01 -3.50914598e-02 4.30968255e-02\\n1.92479521e-01 -2.38515586e-01 -9.43953693e-02 6.87598288e-02\\n-1.71053559e-01 -2.34763503e-01 -5.62543869e-01 -4.00280952e-02\\n-6.69408739e-02 -4.71346051e-01 -1.24020010e-01 -4.86626387e-01\\n-1.44189775e-01 -4.34940219e-01 -3.04029971e-01 2.77935505e-01\\n2.38900289e-01 9.17146653e-02 -9.42810252e-02 9.06355530e-02\\n-1.62413910e-01 -5.85484982e-01 7.03520030e-02 1.32536024e-01\\n4.45864916e-01 2.11284801e-01 1.26100570e-01 -3.11783701e-02\\n8.82027522e-02 6.60116911e-01 -2.89805591e-01 -1.85823396e-01\\n1.19278438e-01 9.60551426e-02 2.19868328e-02 -1.20992944e-01\\n9.39789116e-02 3.68779957e-01 -2.67930925e-01 -1.06702268e-01\\n-1.18275508e-02 -1.80686377e-02 5.04866183e-01 -9.72471237e-02\\n-4.06755209e-01 -1.73089221e-01 -5.12495860e-02 2.26473257e-01\\n-5.56308270e-01 -1.89918384e-01 5.51368475e-01 2.59510696e-01\\n1.32375568e-01 1.40564382e-01 8.70226622e-02 2.04924457e-02\\n-2.31066555e-01 -3.08905751e-01 3.52212429e-01 1.02767691e-01\\n1.89066380e-01 1.75251737e-01 -4.04737666e-02 -6.75059199e-01\\n-3.40967226e+00 -2.01241538e-01 2.09748000e-01 -2.46826857e-01\\n2.16397673e-01 -6.56762272e-02 1.89040452e-02 -1.45118624e-01\\n-3.09769481e-01 1.35826379e-01 -2.37879172e-01 -1.61732435e-01\\n1.03105493e-01 2.07215667e-01 1.36013448e-01 1.76817715e-01\\n1.26359150e-01 -2.08871037e-01 3.42192650e-02 2.73370087e-01\\n-2.13377506e-01 -6.77313447e-01 1.97376981e-01 -5.81447259e-02\\n3.15868229e-01 2.07531199e-01 -4.36815023e-01 -6.69796020e-02\\n-2.85739571e-01 -2.28000373e-01 7.61417150e-02 -3.00430030e-01\\n-1.76613301e-01 2.32892066e-01 1.92033142e-01 -8.08389932e-02\\n1.49599701e-01 -3.85734767e-01 -1.29262716e-01 -5.28546095e-01\\n2.44615749e-01 -5.43723583e-01 -1.18618272e-03 -1.68722197e-02\\n6.86967909e-01 -3.03983092e-01 2.45672226e-01 8.54234621e-02\\n1.00820690e-01 1.43282652e-01 1.53626323e-01 7.45085441e-03\\n-2.34429196e-01 -2.04747647e-01 -2.68241726e-02 -2.21321210e-01\\n6.24599874e-01 3.10442179e-01 -1.86813563e-01 1.82755291e-03\\n7.26748407e-02 -3.09982479e-01 -4.17418897e-01 -2.77092636e-01\\n-6.57478198e-02 -2.24812090e-01 -6.13985896e-01 -4.31001991e-01\\n-1.93804950e-01 -1.14196524e-01 5.80548635e-03 6.90795779e-01\\n-2.62466997e-01 -3.59359562e-01 -1.06077464e-02 -5.64706504e-01\\n1.73633873e-01 -2.75465190e-01 8.77901018e-02 -2.63682425e-01\\n-2.75769174e-01 -4.68846947e-01 6.78497031e-02 2.87254211e-02\\n-1.10324316e-01 -1.58274725e-01 1.59933791e-01 -7.39654452e-02\\n-2.80938506e-01 -5.06939411e-01 4.46500361e-01 2.17222556e-01\\n2.71905392e-01 1.26392663e-01 2.64322311e-01 -4.56996821e-02\\n3.05157840e-01 -5.70856854e-02 -2.20005214e-03 -3.59343261e-01\\n1.66066170e-01 5.04597016e-02 4.51569498e-01 -1.13846190e-01\\n-8.80367681e-02 1.92972124e-01 -1.94459170e-01 -7.28246570e-02\\n3.82784337e-01 -2.54122466e-02 6.23605624e-02 -5.14514484e-02\\n3.36190611e-01 -4.64257061e-01 -1.34301156e-01 5.70408590e-02\\n6.48126528e-02 6.75967693e-01 -9.34863836e-02 -4.00493741e-01\\n-1.00382149e-01 5.64456105e-01 -1.05479017e-01 1.69555500e-01\\n-7.35493898e-02 1.83787867e-01 -2.56730914e-01 2.61159837e-01\\n2.66033337e-02 -2.73479581e-01 -2.71240771e-01 -1.69229090e-01\\n-2.08444726e-02 1.37145698e-01 2.91563392e-01 1.74123049e-01\\n-1.41047211e-02 -5.03307700e-01 -1.36685222e-01 1.38747200e-01\\n3.06091934e-01 5.23442626e-01 1.72555685e-01 -1.68839380e-01\\n6.93225116e-03 3.08856189e-01 -1.73113570e-01 1.87969476e-01\\n-3.09356570e-01 8.88591930e-02 -5.05954802e-01 -2.20919758e-01\\n-2.55099028e-01 -4.00430679e-01 1.06888995e-01 2.11233661e-01\\n1.05712682e-01 -2.83712894e-03 7.30367005e-03 -4.26047027e-01\\n3.04126590e-01 1.19466469e-01 2.67004371e-01 1.52870253e-01\\n-7.31991976e-02 5.00665784e-01 2.40842905e-03 -1.16174109e-01\\n-2.50390947e-01 3.70733961e-02 -8.87313411e-02 -1.00936234e-01\\n6.24461472e-02 -4.98292506e-01 -7.74929374e-02 3.27490538e-01\\n1.06020667e-01 -2.81790078e-01 -1.39857665e-01 3.17956805e-01\\n-5.64069860e-02 -2.20248252e-01 -1.53585047e-01 -5.14464751e-02\\n2.88666904e-01 9.04315114e-02 2.25640118e-01 -4.37493682e-01\\n-5.79810850e-02 1.01225793e-01 -4.76296321e-02 5.06426752e-01\\n1.88762881e-02 -2.68945694e-02 -9.40996334e-02 -2.04098225e-01\\n3.84778500e-01 -6.45892322e-02 -1.20668970e-01 -6.22128136e-02\\n6.39826134e-02 -2.45407805e-01 -5.15367508e-01 3.67570035e-02\\n-4.08199355e-02 -1.51119903e-01 1.03615984e-01 1.47184432e-01\\n8.86435285e-02 1.73694581e-01 -5.16552746e-01 -3.33969533e-01\\n-4.30056334e-01 -8.58183131e-02 4.08211686e-02 -5.23886323e-01\\n-6.93643391e-02 -1.34944141e-01 -5.22669435e-01 2.85624504e-01\\n-1.44522846e-01 -2.00143307e-01 8.25720355e-02 1.29217759e-01\\n-3.29916745e-01 -1.71915621e-01 1.09989122e-01 2.64256924e-01\\n-2.77180612e-01 -3.55215430e-01 7.82245398e-02 -9.41297770e-01\\n2.69872844e-01 3.89224850e-02 -2.19330221e-01 5.20620681e-02\\n-1.02437213e-01 -5.86140394e-01 1.50188535e-01 -3.41452479e-01\\n-1.33883700e-01 -8.58023614e-02 -2.56937534e-01 -2.93597758e-01\\n5.89186735e-02 -5.64202257e-02 -3.78251046e-01 4.79708612e-01\\n-3.33109856e-01 3.75019997e-01 -1.77408457e-01 6.16113432e-02\\n-7.09157288e-02 -2.87820518e-01 6.92311078e-02 -4.03293312e-01\\n-4.38619137e-01 -1.63953960e-01 -3.28303218e-01 -2.98244059e-01\\n-4.70093638e-02 -3.20540667e-01 -1.09205157e-01 8.15660805e-02\\n2.77207971e-01 1.19911984e-01 -1.09990172e-01 -2.65349984e-01\\n-2.65522487e-03 -4.47856784e-01 8.49087909e-02 -1.30007327e-01\\n-6.09392822e-02 -1.74887180e-01 1.14001319e-01 1.43072024e-01\\n1.14375539e-01 -3.69152904e-01 3.17152709e-01 -2.47948781e-01\\n-2.78696269e-01 -8.69773179e-02 8.16574916e-02 9.08271447e-02\\n2.30152443e-01 -6.16543412e-01 -1.54089537e-02 3.62740517e-01\\n2.23376185e-01 1.52197778e-01 2.20323175e-01 -3.75681035e-02\\n-1.43476650e-02 3.67671728e-01 -3.53258908e-01 5.23263887e-02\\n7.32144117e-01 1.65160626e-01 1.55463278e-01 1.66766018e-01\\n2.37071037e-01 3.06367099e-01 5.43894351e-01 -1.08211875e-01\\n-2.48075910e-02 2.46920392e-01 7.70304725e-02 -5.98681748e-01\\n-6.85349666e-03 1.13660172e-02 -1.31626889e-01 -3.87467921e-01\\n6.14091277e-01 3.43626559e-01 -4.49733377e-01 -1.51396409e-01\\n-1.45479068e-01 -1.52044415e-01 2.55351812e-01 -1.49774477e-01\\n3.03411633e-02 -1.50188267e-01 3.75721157e-01 -7.21335858e-02\\n2.81254262e-01 6.15337253e-01 -1.86249077e-01 -3.82315069e-01\\n-9.47420970e-02 1.60734877e-01 5.85579649e-02 4.88299072e-01\\n-2.35143989e-01 1.80441111e-01 -2.21584737e-03 1.29839480e-01\\n-9.97863114e-02 2.16585070e-01 5.42820618e-02 9.17304084e-02\\n1.92728013e-01 -4.01682816e-02 4.13136244e-01 4.64922249e-01\\n2.70145297e-01 4.73954678e-01 3.32143396e-01 1.44126207e-01\\n3.96509796e-01 5.44604480e-01 4.67287987e-01 2.50936067e-03\\n1.09223366e-01 1.97611615e-01 1.08504049e-01 -1.29404768e-01\\n3.23847800e-01 5.05049944e-01 4.73525189e-02 9.42971349e-01\\n3.32332313e-01 3.61887276e-01 6.63132966e-01 -6.57797396e-01\\n-3.65146756e-01 9.13480073e-02 4.67324018e-01 -3.34599465e-01\\n3.66582721e-02 1.28194422e-01 -1.59682468e-01 2.62174666e-01\\n-4.47905242e-01 -1.74026787e-01 -6.46511391e-02 1.76049173e-02\\n1.40838102e-01 -1.77267253e-01 -3.12929422e-01 5.39978854e-02\\n-8.60357583e-02 -9.92091894e-02 -4.42659378e-01 7.26443436e-03\\n-2.01812893e-01 -3.08579914e-02 -1.48738146e-01 -1.06477462e-01\\n-3.34910005e-02 -3.45303893e-01 -1.05920061e-01 4.60610949e-02\\n2.44338006e-01 -1.22206815e-01 -1.02738798e-01 -1.16229735e-01\\n3.20758343e-01 1.46888778e-01 5.04078269e-01 1.97907723e-02\\n6.83466494e-02 -1.10020250e-01 -2.19985068e-01 9.38115641e-02\\n2.02994674e-01 6.98486194e-02 1.67999715e-02 2.82869279e-01\\n-2.51916468e-01 -1.28604114e-01 7.31897950e-02 3.71181905e-01\\n-3.59662473e-01 1.03703633e-01 -9.87626389e-02 2.05444261e-01\\n1.01128571e-01 1.75954789e-01 -1.72576457e-01 -5.03009520e-02\\n-1.79152295e-01 -4.53082740e-01 2.36307442e-01 -8.19632560e-02\\n-1.01331376e-01 8.64242017e-02 2.99064249e-01 2.90064335e-01\\n-2.60892004e-01 -1.20533388e-02 1.58325676e-03 7.84169510e-02\\n6.71723112e-02 3.82858694e-01 -1.82950497e-01 -1.91660553e-01\\n-3.57300758e-01 1.70380026e-01 -1.95643470e-01 9.07348692e-02\\n-6.28202558e-02 3.33029717e-01 9.82337072e-02 9.12209302e-02\\n3.34678054e-01 2.81345099e-04 -3.35966825e-01 -1.57876998e-01\\n-2.43858546e-01 -1.63695738e-01 3.55748571e-02 -4.06361520e-02\\n2.57630855e-01 -3.70055825e-01 -3.36659104e-02 -2.58131325e-01\\n-1.37659132e-01 -3.75395656e-01 4.36342619e-02 -1.26448929e-01]]',\n", + " 'job_description': 'Swiss Startup Tech (SSUT) is an entity of a group of marvelous product innovators, who support companies of all sizes in building innovative solutions. Our company offers the full life-cycle of products development: ideation, design & prototyping, validation, scaling and maintenance. Responsibilities Build lean, scalable and secure applications based on modern technology stacks and well defined architecture. You write high quality, testable and efficient code by using best software development practices and state-of-the-art technologies. Represent the software development team, lead engineering initiatives, and provide feedback in planning and product channels. Partner with product, design, marketing, and branding to ensure projects are well-defined and successfully executed. Work closely with product managers, designers, QA and their leaders to ensure a cohesive user experience across all products. Assist in shaping the workflows of product development taking into consideration frontend and backend principles. Requirements Passionate about digital products delivering high quality secure applications. Eager to learn new technologies and doing quick proof of concepts. Ability to think out of the box of the happy path and incorporate the visibility of edge and corner cases into the software development process. Excellent organizational, decision making and communications skills. Comfortable to present to any audience and work with minimum supervision. Experience in the development, testing and deployment of scalable solutions via Docker on cloud infrastructure like AWS or Google Cloud. Proficiency with frontend programming languages such as HTML, CSS, JavaScript. Knowledge of multiple back-end languages (e.g. Python, Java, Scala) and JavaScript frameworks (e.g. React, Angular, Node.js). Familiarity with database technology like MySQL, PostgreSQL, MongoDB or ElasticSearch. Fluent English and German speaker and based in Zürich, Switzerland. What we offer An environment of growth: we thrive to create a safe environment for innovation, experimentation and self-development. We support our culture to improve current and develop new skills. Authenticity and transparency: a drama-free working environment, where you are valued as a contributor and acknowledge as part of the company. We emphasize your involvement at any stage of the development. Culture driven company: the most valuable asset of our company is our team. We spend a lot of hours together in and outside of the office and build strong relationships. Great location: You will work in our modern offices in the heart of Zürich. There will be a need to travel for meetings with customers, conferences, presentations and other activities. We seek individuals that can make the difference. We believe in rewarding success and offer a competitive package, including the possibility to participate in our share option plan. Are you the perfect match for this role? If so, please send your CV to: hr@ssut.ch',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Writing\", \"Presentations\", \"Ideation\", \"Planning\", \"Supervision\", \"Decision Making\", \"Innovation\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Production Management\", \"MySQL\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Life Cycle Assessment\", \"Branding\", \"Staging\", \"Scala (Programming Language)\", \"Authentications\", \"Activism\", \"PostgreSQL\", \"Python (Programming Language)\", \"Node.js\", \"Prototyping\", \"MongoDB\", \"E (Programming Language)\", \"Product Innovation\", \"Experimentation\", \"HyperText Markup Language (HTML)\", \"Executable\", \"Design Management\", \"React.js\", \"Docker (Software)\", \"Product Design\", \"Application Security\", \"Testability\", \"Pathing\", \"JavaScript (Programming Language)\", \"Scalability\", \"Sage SAFE X3\", \"Google Cloud\", \"JavaScript Frameworks\", \"Transparency (Human-Computer Interaction)\", \"Validations\", \"Angular (Web Framework)\", \"Digital Product Management\", \"Back End (Software Engineering)\", \"Software Development\", \"User Experience\", \"Workflows\", \"Custom Backend\", \"Java (Programming Language)\", \"Cloud Infrastructure\", \"Agile Product Development\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Chuang']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data preparation expert',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'job_description': 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " 'soft_skills': '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " 'hard_skills': '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'Quechua', 'Bambara', 'Ossetic', 'Twi']\"},\n", + " {'company_id': '46',\n", + " 'job_title': 'data centre engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.20992708e-01 3.24868619e-01 4.44623590e-01 -2.06698015e-01\\n5.61702907e-01 1.67399067e-02 2.03571469e-01 3.12604904e-01\\n1.14555821e-01 -2.30956271e-01 -2.95724452e-01 -1.45734802e-01\\n5.05553670e-02 4.16085795e-02 1.42657623e-01 4.23656821e-01\\n2.54625171e-01 1.47843584e-02 -6.55927509e-02 3.09122294e-01\\n1.01366960e-01 -1.19018257e-01 8.50919113e-02 6.65079415e-01\\n3.42924058e-01 -2.08120011e-02 9.75979790e-02 1.13722198e-02\\n-1.84017792e-01 -3.39858294e-01 4.39586669e-01 -6.86746761e-02\\n-1.32881835e-01 -3.33626121e-01 2.41054073e-01 8.20413232e-02\\n-2.09021419e-01 -1.68739520e-02 -1.91325113e-01 3.92315648e-02\\n-4.56807166e-01 -1.14604466e-01 4.69977669e-02 -1.44372091e-01\\n-3.71216565e-01 -2.73618490e-01 2.98053086e-01 -1.46605492e-01\\n1.93083301e-01 1.60194710e-01 -5.39988935e-01 3.01620752e-01\\n-3.19422901e-01 -2.94975251e-01 5.10386229e-01 6.02502227e-01\\n-3.05275898e-04 -7.01068997e-01 -3.71223271e-01 -1.88572586e-01\\n2.71705817e-02 -9.85296667e-02 9.80837792e-02 -8.92247334e-02\\n3.16859275e-01 -1.32081792e-01 2.01097038e-03 5.28337955e-01\\n-6.43169582e-01 -6.33321702e-02 -4.45892006e-01 -5.80698922e-02\\n-2.13415369e-01 1.14282221e-01 -4.74503547e-01 -2.62505710e-01\\n-6.29425496e-02 2.97526747e-01 -7.97732025e-02 1.71661079e-01\\n-1.18019126e-01 2.56952465e-01 -3.35049480e-01 2.62095660e-01\\n2.78805941e-01 1.02468014e-01 1.92153186e-01 1.66629449e-01\\n-4.03576285e-01 7.38112450e-01 4.63144541e-01 -1.77040055e-01\\n2.04118043e-01 8.59789848e-02 2.22872660e-01 1.59763366e-01\\n1.27131179e-01 1.92020372e-01 5.99381141e-03 2.29666912e-04\\n2.64624745e-01 1.79403722e-02 -9.34911892e-02 -1.64213777e-01\\n-7.91446865e-02 -2.81473016e-03 6.64469451e-02 2.00658217e-01\\n-3.72400999e-01 2.67220229e-01 1.39930248e-01 -3.18461388e-01\\n-1.59120008e-01 -3.24656099e-01 -1.11221485e-01 -1.13852412e-01\\n-1.11029960e-01 1.44244403e-01 1.79076102e-02 2.01138005e-01\\n2.60806829e-01 1.03999078e-01 5.79782352e-02 8.42487335e-01\\n-3.85027528e-02 -6.95801079e-02 -2.16275722e-01 3.70730489e-01\\n-5.77730127e-03 -2.21464545e-01 1.08441778e-01 2.45696455e-01\\n-1.86597273e-01 -2.59543478e-01 -3.63568813e-01 3.21496487e-01\\n-1.18903227e-01 -1.72197476e-01 -2.46539921e-01 2.43533224e-01\\n-1.48266852e-01 -4.79707330e-01 4.82727468e-01 -5.92029579e-02\\n8.48442614e-02 -1.10106930e-01 -3.79019693e-05 3.55553813e-02\\n-6.20178739e-03 3.51581961e-01 1.33339778e-01 -3.18575427e-02\\n-1.07156508e-01 -2.32200533e-01 -2.80870885e-01 1.46157727e-01\\n3.24593335e-02 1.44052923e-01 -4.17244673e-01 -1.08726621e-01\\n3.85440767e-01 4.97285165e-02 -3.66288632e-01 3.56455773e-01\\n1.84417531e-01 -4.29348387e-02 -1.81535304e-01 1.49954826e-01\\n-1.16695359e-04 2.36736104e-01 -4.01337855e-02 -1.40929922e-01\\n6.24371946e-01 1.46069244e-01 2.31020704e-01 -7.24323019e-02\\n1.91886440e-01 -5.51386252e-02 1.29945368e-01 -1.40682291e-02\\n-6.11488104e-01 4.65296596e-01 -3.25219370e-02 -7.29846731e-02\\n1.36024877e-01 -5.82411792e-03 2.14516282e-01 -3.57889801e-01\\n-2.76079122e-02 -5.04417941e-02 -3.44033509e-01 -4.76003021e-01\\n-2.26885807e-02 -1.34410188e-01 1.86202839e-01 -4.56571281e-01\\n2.06874358e-03 1.26872778e-01 -4.57212448e-01 -5.69727421e-02\\n3.54857564e-01 1.66321099e-01 1.37243718e-01 2.25789651e-01\\n-8.55193064e-02 -3.49118888e-01 1.90711051e-01 -4.64240402e-01\\n-1.32682085e-01 7.75582716e-02 -2.49923304e-01 1.98378433e-02\\n-1.89537536e-02 3.98312919e-02 -1.02702670e-01 4.85904552e-02\\n-2.53891677e-01 -1.55262008e-01 3.92053202e-02 -8.82065743e-02\\n2.24479303e-01 2.34798998e-01 -2.63095379e-01 5.07711053e-01\\n-1.83350369e-01 3.81080300e-01 6.01966586e-03 -7.20307767e-01\\n4.24280107e-01 1.86561704e-01 1.23244980e-02 -2.94792384e-01\\n4.53267604e-01 -2.96398431e-01 1.17267378e-01 1.88871510e-02\\n-3.34912449e-01 -2.02146210e-02 2.43802950e-01 -1.83349505e-01\\n-2.80408859e-01 5.88341713e-01 1.80868283e-02 1.09298013e-01\\n1.90496162e-01 -3.36814933e-02 -1.97486252e-01 4.95056920e-02\\n-8.80986899e-02 -2.21439116e-02 -4.73396003e-01 -6.57928139e-02\\n-8.16168711e-02 -4.97412443e-01 -8.66268203e-02 -6.85619056e-01\\n-2.47249797e-01 -3.03445399e-01 -2.51491725e-01 1.43816218e-01\\n-3.78490351e-02 1.19386360e-01 -3.09882145e-02 6.85982779e-02\\n-1.36105865e-01 -6.85061991e-01 -8.01299326e-03 6.79907128e-02\\n1.99871972e-01 1.97040305e-01 1.58675492e-01 -1.33471563e-01\\n1.07989442e-02 4.95000303e-01 -2.80969262e-01 -1.73517212e-01\\n2.71584749e-01 2.02667147e-01 1.13012411e-01 -1.47868484e-01\\n1.32153437e-01 2.64528215e-01 -3.26294065e-01 3.05351596e-02\\n4.96717282e-02 7.51984939e-02 3.15145642e-01 -1.27876252e-01\\n-4.00357902e-01 -1.46592468e-01 -8.45369026e-02 1.19746655e-01\\n-5.31511903e-01 -2.43515335e-02 4.39352810e-01 2.38416597e-01\\n-3.59681658e-02 3.28629941e-01 2.08434686e-01 -3.68503183e-02\\n-2.25980595e-01 -7.79229030e-02 1.20354466e-01 1.89528957e-01\\n-5.91190830e-02 8.82301256e-02 -3.06917548e-01 -7.19935954e-01\\n-3.67594314e+00 -1.12381116e-01 1.75884247e-01 -2.27007076e-01\\n4.04413551e-01 -9.98565108e-02 3.79922926e-01 7.81878158e-02\\n-3.22409332e-01 -3.08159627e-02 -2.04330444e-01 -1.40322268e-01\\n3.32918972e-01 1.88908741e-01 8.24078396e-02 2.49415144e-01\\n2.64598001e-02 -3.97464931e-01 2.27922410e-01 3.73837560e-01\\n-3.19178700e-01 -7.36998320e-01 1.67706132e-01 -7.14538023e-02\\n1.21241175e-01 9.32772234e-02 -5.23654699e-01 -3.66293937e-02\\n-2.04351619e-01 -2.44992539e-01 2.23208100e-01 -2.21065760e-01\\n-8.99085402e-02 1.40657857e-01 1.37605861e-01 -1.14235766e-01\\n-2.94447187e-02 -2.44475365e-01 -4.49468382e-02 -7.68135726e-01\\n5.89522645e-02 -5.65950096e-01 -9.49528441e-02 -4.10118699e-02\\n6.01877391e-01 -1.01314165e-01 1.37759060e-01 -1.07751355e-01\\n9.30629522e-02 2.41365522e-01 1.12298779e-01 1.45285383e-01\\n-2.63603657e-01 -3.25437903e-01 -7.21056610e-02 -8.31322223e-02\\n5.68651319e-01 3.79927188e-01 -4.65950549e-01 2.72869971e-03\\n-1.22071005e-01 -2.76108623e-01 -5.45160472e-01 -1.80649400e-01\\n-2.34067068e-01 1.62110150e-01 -7.07921565e-01 -2.82714754e-01\\n-9.99909639e-02 -2.50131696e-01 -4.89306152e-02 4.86768872e-01\\n-2.37586051e-01 -3.45522076e-01 -1.42306477e-01 -6.06279552e-01\\n4.44346130e-01 -6.18551373e-02 1.56405732e-01 -3.47408980e-01\\n-2.07678065e-01 -2.95815915e-01 1.38386652e-01 3.34735252e-02\\n-9.58454311e-02 -6.84963763e-02 8.63185823e-02 -1.38075471e-01\\n-3.59072596e-01 -5.86493552e-01 2.79859543e-01 7.74228424e-02\\n2.08769441e-01 1.41370863e-01 2.12922454e-01 1.12980502e-02\\n2.99592584e-01 -2.45005097e-02 9.83945280e-02 -3.55856538e-01\\n-6.89715743e-02 -2.60696840e-02 5.05209148e-01 -2.39443317e-01\\n9.72434208e-02 1.46529987e-01 -2.74268687e-01 -1.18378751e-01\\n2.93351650e-01 -2.23989919e-01 3.12173188e-01 -2.98116624e-01\\n2.45002553e-01 -3.65975231e-01 -3.34370494e-01 -2.41183396e-02\\n4.43742462e-02 5.83759367e-01 1.00142039e-01 -2.95338154e-01\\n-1.73483342e-01 2.94335037e-01 -3.46422642e-02 9.91996229e-02\\n-4.30163980e-01 -2.82405578e-02 -3.47431034e-01 2.63600320e-01\\n1.26142189e-01 -1.38548240e-01 -2.37378985e-01 -6.22682087e-02\\n-1.13407321e-01 2.97553122e-01 2.44797215e-01 7.06003979e-02\\n-6.73439279e-02 -2.24718019e-01 -9.53003168e-02 2.75603205e-01\\n1.09810531e-01 3.39868993e-01 1.16863534e-01 -2.59342134e-01\\n3.95490937e-02 1.41051844e-01 -3.06910217e-01 1.62998080e-01\\n-1.18638128e-01 1.47596076e-01 -5.45356512e-01 -1.84702083e-01\\n-2.16028884e-01 -3.72006148e-01 1.30186722e-01 4.52358186e-01\\n-2.24302597e-02 -2.03651801e-01 8.53662267e-02 -3.70809227e-01\\n2.26514742e-01 7.99310878e-02 1.08852006e-01 1.68566033e-01\\n4.81652543e-02 6.31120920e-01 -1.09053209e-01 -1.35200918e-01\\n-1.40370622e-01 -1.58051122e-03 -3.95264864e-01 -1.91366836e-01\\n-6.29185094e-03 -4.56136644e-01 4.50522732e-03 5.95702171e-01\\n1.59040406e-01 2.83155963e-02 1.36070162e-01 3.85688692e-01\\n-1.37359928e-02 -4.20102216e-02 -2.66277254e-01 1.16483152e-01\\n2.23654643e-01 2.09650751e-02 2.55407035e-01 -4.15736258e-01\\n1.46293670e-01 -5.34290411e-02 1.29845470e-01 3.60866219e-01\\n-3.01853996e-02 1.87387303e-01 -7.20390603e-02 -1.31535783e-01\\n4.51385915e-01 -6.54133782e-02 -9.06833410e-02 1.34642109e-01\\n2.11314842e-01 -1.32941514e-01 -3.39931607e-01 9.25652310e-02\\n-1.53027371e-01 -1.79714546e-01 8.66961256e-02 3.25545147e-02\\n3.54019180e-03 3.45192570e-03 -4.45268750e-01 -1.44551948e-01\\n-3.26949328e-01 2.60383725e-01 -2.02441350e-01 -6.96382046e-01\\n-1.40338577e-02 6.71015978e-02 -4.92353946e-01 2.64773130e-01\\n-7.66382292e-02 9.06192958e-02 1.66481182e-01 1.44609421e-01\\n-1.99086547e-01 -1.94678605e-01 2.52672762e-01 5.97272478e-02\\n-2.38344982e-01 -1.10085398e-01 -8.84047225e-02 -9.74414825e-01\\n1.87760174e-01 1.19790137e-02 -7.76776448e-02 1.13395445e-01\\n-8.81322324e-02 -7.38363206e-01 2.93696880e-01 -1.29906714e-01\\n-8.54780301e-02 1.35368869e-01 -1.21535540e-01 -3.92318517e-01\\n7.13851079e-02 2.84709353e-02 -1.45143434e-01 2.94810981e-01\\n-3.21252733e-01 3.73886317e-01 3.44846733e-02 4.07734737e-02\\n7.91742001e-03 -2.35158399e-01 7.68799782e-02 -4.66818631e-01\\n-3.90069902e-01 -1.75546423e-01 -1.66483521e-01 -2.53097773e-01\\n2.10644584e-02 -4.21779752e-01 -2.75838263e-02 9.88264009e-02\\n3.88392955e-01 3.93786915e-02 -5.44545762e-02 -8.17874521e-02\\n-1.09014504e-01 -3.92766893e-01 1.28825694e-01 -2.17944682e-01\\n1.51625395e-01 -1.85886785e-01 3.07374597e-01 -4.13127653e-02\\n3.25106204e-01 -2.95887083e-01 5.36980033e-01 -3.19379807e-01\\n-3.22525620e-01 -1.43264204e-01 1.33226901e-01 8.97722393e-02\\n3.82051915e-01 -4.85767931e-01 -1.67253297e-02 2.61806399e-01\\n-4.99421731e-02 -4.21272367e-02 3.75573844e-01 -3.38228345e-01\\n-2.53730595e-01 6.84244260e-02 -4.78008956e-01 2.60893375e-01\\n4.90229666e-01 1.69238955e-01 2.80877143e-01 1.80539608e-01\\n-6.63809255e-02 1.68181852e-01 3.38057458e-01 -1.28881663e-01\\n-1.59039959e-01 4.24895495e-01 3.80028002e-02 -6.40325665e-01\\n-1.43105865e-01 -2.63907880e-01 -1.21160537e-01 -2.52472550e-01\\n6.79355919e-01 2.05923975e-01 -3.15716326e-01 -3.91189665e-01\\n-1.93810731e-01 -2.80402511e-01 8.83146524e-02 3.37027349e-02\\n7.49644125e-03 -9.00202468e-02 5.41021109e-01 6.35374635e-02\\n3.18035275e-01 5.48332870e-01 -1.07328892e-01 -1.89855635e-01\\n1.58851850e-03 3.20116341e-01 -1.67953491e-01 3.51078421e-01\\n6.85634390e-02 2.92062312e-01 -4.61906455e-02 1.35271624e-01\\n-3.67310345e-02 -1.13375902e-01 1.00393958e-01 1.25861317e-01\\n-1.19673312e-01 2.56306708e-01 4.81333435e-01 4.64992344e-01\\n2.14798316e-01 3.36963028e-01 3.28334361e-01 7.83311427e-02\\n5.74850202e-01 6.67642534e-01 3.58128965e-01 5.36153167e-02\\n1.82366893e-01 1.31619200e-02 1.66190714e-02 1.53566594e-03\\n2.41993040e-01 4.50434387e-01 -1.27912806e-02 6.59261405e-01\\n1.94247454e-01 1.72496736e-01 5.75656235e-01 -5.13949454e-01\\n-4.03470457e-01 -2.03149110e-01 4.86505866e-01 -4.74104732e-01\\n1.93211913e-01 1.59332588e-01 -7.50615727e-03 3.39663118e-01\\n-5.07510424e-01 -2.07057089e-01 8.10246542e-02 -1.29740685e-01\\n1.40014097e-01 -1.88831493e-01 -3.58851328e-02 -7.21131917e-04\\n-1.56315446e-01 -1.56389311e-01 -2.94426352e-01 -2.51997322e-01\\n-3.41350526e-01 6.94555119e-02 -1.11559771e-01 -5.82171008e-02\\n-9.69594643e-02 -1.34011596e-01 -1.30870834e-01 7.83628523e-02\\n2.54105866e-01 -1.52538747e-01 -1.65034801e-01 -7.04521164e-02\\n2.46929064e-01 2.89245751e-02 6.04466021e-01 1.05081405e-02\\n6.89821839e-02 -4.67571244e-03 -1.24993986e-02 1.37999713e-01\\n3.58548254e-01 2.61919379e-01 4.46083099e-02 5.13837337e-01\\n-3.38287830e-01 -1.75180569e-01 1.31053075e-01 3.67902517e-01\\n-4.11561877e-01 -1.78137776e-02 5.27100787e-02 1.73103094e-01\\n-5.69220185e-02 -1.85620897e-02 -1.54638961e-01 -7.36809708e-03\\n-1.03106506e-01 -4.16724861e-01 4.85487074e-01 -1.93980247e-01\\n-3.74499291e-01 -2.29139552e-01 4.05710548e-01 4.65710521e-01\\n-7.01933727e-02 1.25290185e-01 -1.69794530e-01 8.58192295e-02\\n5.86466826e-02 9.83409062e-02 -2.16114819e-01 -9.97687280e-02\\n-3.41423601e-01 3.04073513e-01 -9.08160135e-02 2.61446118e-01\\n1.22249559e-01 2.20867783e-01 1.15949877e-01 4.79177199e-02\\n3.41100335e-01 -3.07290733e-01 -2.09567770e-01 -2.60127783e-01\\n-3.00317675e-01 -8.11325237e-02 1.12716630e-01 -1.97108611e-01\\n2.32551321e-01 -3.97126079e-01 -1.08622387e-01 -3.00310940e-01\\n-1.48808002e-01 -2.20378175e-01 -1.74243838e-01 -4.26888745e-03]]',\n", + " 'job_description': 'ExcelRedstone designs, installs, supports and enhances IT infrastructure, networks and connectivity for enterprise‐level clients across the UK and EMEA. Our services, processes and tools are built around a unique business vision which emphasizes the life cycle role of IT infrastructure – an understanding that far from being static installations, infrastructures should continually evolve to drive improved business performance. This role will be working as part of the Data Centre Operations team to deliver support activities and input to project related tasks within the Data Centre and ensure that all work carried out complies with agreed standards, providing an operational interface to physical security teams assisting in the proactive management of the site’s security. The DC Engineer will provide an interface to the customer, advising them of any operational issues with the infrastructure and acting as a point of contact to address the customer requirements including being first line of support for incident and recovery duties, contribution to BAU activity to rack, install and decommission devices. Candidates will be fluent in German and English and have worked in a similar role previously. Required Skills / Experience Ideally the candidate will have worked previously in a Data Centre support role.Network patching experience (copper and fibre) install and break/ fixKnowledge of copper termination and previous infrastructure installationsChange management processesUnderstanding of criticality of support in a financial sectorDemonstration of good listening, oral and written communication required.An ability to assimilate technical details required for project delivery in ashort time frame and in pressurised environmentAbility to manage prioritise workload effectivelyTroubleshooting, ability to diagnose potential issues impacting programme and offer resolutionFluent in German and English Job Types: Full-time, Permanent Language: English (Required)German (Required) ',\n", + " 'soft_skills': '[\"Proactivity\", \"Infrastructure\", \"Management\", \"Operations\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Business Performance Management\", \"Logistics Support Activity\", \"Tooling\", \"IT Infrastructure\", \"Installation\", \"Advising\", \"Activism\", \"Acting\", \"Idealization\", \"Physical Security\", \"Life Cycle Assessment\", \"Customer Requirements Analysis\"]',\n", + " 'languages': \"['English', 'German', 'Sinhalese']\"},\n", + " {'company_id': '44',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.12801331e-01 3.16512048e-01 4.18633461e-01 -7.91569278e-02\\n5.23473918e-01 -2.02009022e-01 1.43224448e-02 3.96541834e-01\\n-2.95258015e-02 -3.80351514e-01 -1.71148345e-01 -2.60764986e-01\\n-1.86775640e-01 3.46598998e-02 2.29364529e-01 4.35211420e-01\\n2.13361993e-01 7.31811300e-02 -2.71519899e-01 3.62178653e-01\\n6.76888525e-02 -9.00769681e-02 3.08419261e-02 7.49629259e-01\\n3.51514131e-01 1.39445933e-02 7.99249671e-03 -1.12452928e-03\\n-3.08921933e-01 -2.86021382e-01 2.84034193e-01 -1.54524837e-02\\n-1.17725946e-01 -3.36671174e-01 1.80350006e-01 3.94491404e-02\\n-1.42310113e-01 -6.50811344e-02 -2.96018068e-02 1.36475191e-01\\n-4.86237645e-01 -2.83786476e-01 2.09684446e-01 8.14381912e-02\\n-7.68273175e-02 -3.60551596e-01 1.40205085e-01 -1.42227501e-01\\n1.89237390e-02 -6.57460168e-02 -4.99913871e-01 3.54694098e-01\\n-2.39417732e-01 -1.58044338e-01 3.51311326e-01 5.19925475e-01\\n-1.20911978e-01 -6.11969590e-01 -3.13406318e-01 -2.62099057e-01\\n4.18638550e-02 -7.50373229e-02 -1.30443517e-02 -3.59687090e-01\\n3.79999757e-01 7.91939124e-02 -7.55848140e-02 3.19918513e-01\\n-8.10813129e-01 -2.05031931e-01 -2.33121410e-01 4.83161956e-02\\n-3.55063528e-01 -9.04140249e-02 -1.34746566e-01 -1.46796510e-01\\n1.85451377e-02 3.83641899e-01 -1.53264469e-02 3.23173665e-02\\n-1.09364137e-01 3.71241242e-01 -4.62248400e-02 3.77704322e-01\\n3.20841372e-01 1.68776840e-01 1.32807031e-01 3.55924428e-01\\n-3.59836102e-01 4.87569720e-01 7.26686940e-02 -2.88253397e-01\\n1.25274226e-01 2.05301002e-01 5.00716269e-01 1.26226461e-02\\n3.97542417e-02 1.97526187e-01 -3.04165840e-01 2.99141109e-01\\n2.02088848e-01 -1.69397727e-01 6.65759528e-03 -7.11626336e-02\\n-6.61653057e-02 -8.45232680e-02 2.61793938e-02 3.13128084e-01\\n-2.93170273e-01 5.02677441e-01 1.24285914e-01 -7.22864345e-02\\n5.16628325e-02 -5.67255735e-01 -1.40350863e-01 1.53846378e-02\\n-8.00355077e-02 9.77878496e-02 3.32642287e-01 1.70066193e-01\\n2.57896721e-01 4.31124158e-02 9.32393223e-02 9.67842042e-01\\n1.71050604e-03 1.68293089e-01 -2.51748562e-01 4.06392246e-01\\n1.53977498e-01 -3.17053527e-01 1.74288854e-01 3.45592886e-01\\n2.39519402e-01 -1.12963505e-01 -2.27179065e-01 3.27402472e-01\\n-1.98341832e-01 -2.90694505e-01 -3.96096706e-01 1.96666941e-01\\n-2.44850695e-01 -4.90286648e-01 4.87498850e-01 1.40147626e-01\\n2.05087215e-01 1.03209866e-02 -9.43975672e-02 -4.17625979e-02\\n-1.00627251e-01 2.33817548e-01 3.21568996e-02 1.13600150e-01\\n-3.47780794e-01 -1.75770327e-01 -3.02637100e-01 1.32408574e-01\\n-1.58637851e-01 1.71912894e-01 -1.09562412e-01 -1.44348353e-01\\n3.51832122e-01 3.17592826e-03 -5.07710516e-01 3.64246964e-01\\n8.38328060e-03 -2.77027320e-02 -4.36405130e-02 4.02636915e-01\\n-9.95365232e-02 2.98923433e-01 -2.54423991e-02 -6.76289275e-02\\n3.59841526e-01 1.76911224e-02 -2.52633691e-02 -1.65009215e-01\\n3.01501960e-01 -1.43668905e-01 1.70410991e-01 6.89919889e-02\\n-7.37222970e-01 2.55105525e-01 -5.80111742e-02 1.35410186e-02\\n1.21948551e-02 -2.48319414e-02 3.62341821e-01 -3.71194720e-01\\n-1.72665700e-01 -1.85158774e-01 -3.90695781e-01 -3.93356651e-01\\n-3.03242415e-01 -1.41313951e-02 4.49884295e-01 -3.03693563e-01\\n-1.78244039e-01 2.21627623e-01 -5.13013422e-01 7.02287033e-02\\n2.58289307e-01 1.97849259e-01 1.26958489e-01 1.41438901e-01\\n-3.51326987e-02 -5.98378539e-01 7.58757666e-02 -4.24420714e-01\\n-3.60226482e-01 1.34903803e-01 -3.12238276e-01 2.69950598e-01\\n1.49554044e-01 1.00095376e-01 -6.44305274e-02 6.67490140e-02\\n-2.30115294e-01 -6.73026517e-02 1.71835586e-01 6.78511634e-02\\n1.98214769e-01 3.73082533e-02 -4.94558334e-01 4.80509192e-01\\n-2.18076795e-01 4.77721304e-01 8.23358148e-02 -8.05065870e-01\\n5.48103392e-01 3.26535404e-01 3.47400866e-02 -4.32201236e-01\\n6.10359013e-01 -3.83548349e-01 -9.53272209e-02 1.43837258e-01\\n-4.00688887e-01 -3.12934250e-01 1.97759032e-01 -1.26089916e-01\\n-2.75784433e-01 5.80727637e-01 9.97411311e-02 2.69413833e-03\\n2.87883818e-01 -2.82297134e-01 -1.53541237e-01 7.27819875e-02\\n-2.70451121e-02 -2.21376926e-01 -4.47217792e-01 -1.82413007e-03\\n-1.61377676e-02 -5.08080542e-01 -1.74873129e-01 -4.52164561e-01\\n-2.09689453e-01 -3.83565933e-01 -1.85078964e-01 3.29800218e-01\\n2.43226454e-01 1.48317978e-01 1.01001821e-01 9.96082556e-03\\n-1.42926037e-01 -6.03709698e-01 -5.56448624e-02 6.82088509e-02\\n4.28021967e-01 2.43521348e-01 7.49348253e-02 -4.66759428e-02\\n-6.68673441e-02 6.31377578e-01 -3.06268126e-01 -2.56342620e-01\\n8.89747813e-02 1.52975783e-01 -3.74802798e-02 -7.81136826e-02\\n1.56144172e-01 4.08918172e-01 -2.41116136e-01 3.76945175e-02\\n-2.23806977e-01 8.41687992e-02 3.68939638e-01 7.07777450e-04\\n-3.46594244e-01 -2.57924855e-01 -2.69735418e-02 1.82354793e-01\\n-5.86630285e-01 -1.80287495e-01 5.61579823e-01 2.65502125e-01\\n2.08557695e-01 1.54528826e-01 3.47996920e-01 -1.95836157e-01\\n-5.38512878e-02 -1.69183508e-01 1.18805401e-01 2.48434573e-01\\n8.71337280e-02 1.91436857e-02 -1.81508169e-01 -5.99153221e-01\\n-3.05484533e+00 1.10294959e-02 1.36477068e-01 -1.99948147e-01\\n1.39525965e-01 -6.62112907e-02 2.88588461e-02 -1.17691398e-01\\n-2.62980223e-01 6.02071807e-02 -3.20721596e-01 -1.26113206e-01\\n8.52785930e-02 2.04672530e-01 1.25590280e-01 1.42709404e-01\\n2.15302050e-01 -3.65236789e-01 -6.41188771e-02 2.48403624e-01\\n-6.28827065e-02 -7.12549269e-01 1.79696992e-01 -8.72801095e-02\\n2.93931693e-01 2.97597945e-01 -3.60176116e-01 -1.36338770e-01\\n-1.74095780e-01 -2.83319741e-01 1.11630552e-01 -2.43421271e-01\\n-1.40295044e-01 3.74410242e-01 4.93827872e-02 -1.42165184e-01\\n1.41054377e-01 -3.48098963e-01 5.34460805e-02 -4.17488962e-01\\n1.58350185e-01 -5.95151544e-01 1.27165481e-01 -9.31036696e-02\\n6.22393191e-01 -3.27441275e-01 9.71521661e-02 2.07087368e-01\\n1.36256769e-01 2.67784446e-01 -6.76104426e-02 -3.57137341e-03\\n-1.95487037e-01 -2.08670855e-01 -1.30109107e-02 -2.11488754e-01\\n5.04943311e-01 4.60878670e-01 -1.69685796e-01 -3.30233909e-02\\n8.74223039e-02 -3.65866989e-01 -4.38640147e-01 -4.03927565e-01\\n-2.57940143e-01 -1.97407663e-01 -8.23525071e-01 -3.83654982e-01\\n-8.59944522e-02 -7.49429986e-02 -1.59311533e-01 5.48014581e-01\\n-2.91549981e-01 -3.61807287e-01 4.08007912e-02 -5.12999594e-01\\n7.83261284e-02 -2.03186750e-01 7.11726546e-02 -2.37453148e-01\\n-2.17922196e-01 -5.08351088e-01 1.26214266e-01 7.54575729e-02\\n-1.60454854e-01 -1.76717415e-01 7.34414905e-02 -2.33689398e-01\\n-1.70308679e-01 -5.09858668e-01 4.56348330e-01 1.57323986e-01\\n2.63603836e-01 1.53788000e-01 2.11083204e-01 -6.76111970e-03\\n3.25063020e-01 -6.80102259e-02 1.06913075e-01 -4.63090241e-01\\n5.46183102e-02 8.84331390e-02 5.33161044e-01 -1.95888788e-01\\n-3.46129909e-02 2.00686380e-01 -1.66580871e-01 -1.78392231e-01\\n2.72686183e-01 1.22653231e-01 8.36533904e-02 -2.49631599e-01\\n3.34251016e-01 -5.11177361e-01 -2.40285367e-01 1.53864443e-01\\n1.60415947e-01 7.00615287e-01 6.49797218e-03 -4.78652209e-01\\n-2.99368918e-01 3.67539376e-01 3.14667053e-03 -7.26779178e-02\\n-4.08478267e-02 1.43154070e-01 -2.79801160e-01 1.69476718e-01\\n2.17109397e-02 -1.75495341e-01 -2.85740227e-01 -1.06599860e-01\\n-7.87442923e-02 3.19206625e-01 2.99442440e-01 1.19668327e-01\\n-4.11337912e-02 -4.85817999e-01 -1.08940728e-01 1.37533471e-01\\n1.45772815e-01 3.25233519e-01 9.24873874e-02 -3.06976318e-01\\n-5.98290935e-02 4.24621344e-01 -1.02247730e-01 1.36669278e-01\\n-2.22659975e-01 -3.18024606e-02 -5.38682222e-01 -1.71118721e-01\\n-2.39801943e-01 -2.24327132e-01 -4.66067716e-02 3.97736639e-01\\n1.48451328e-01 -7.31302006e-03 7.61822239e-02 -5.14854372e-01\\n4.06590223e-01 2.58336309e-02 2.52168030e-01 1.23999245e-01\\n1.66050624e-02 4.88307595e-01 -5.61133353e-03 -1.70740664e-01\\n-1.57895908e-01 9.37199071e-02 -2.77358770e-01 -2.33088717e-01\\n1.40401438e-01 -2.93494672e-01 -9.65822786e-02 2.91272163e-01\\n4.91943881e-02 -2.76045293e-01 -1.84342369e-01 1.74787879e-01\\n1.16718769e-01 -3.74120444e-01 -2.05214411e-01 4.75183539e-02\\n2.56592423e-01 1.78696364e-02 1.84482783e-01 -4.47677374e-01\\n-6.68130070e-02 -2.09452629e-01 -1.43975437e-01 5.01841247e-01\\n2.16458008e-01 2.91687232e-02 -2.43994996e-01 -2.70706505e-01\\n4.12215650e-01 -8.92977789e-02 -5.60359061e-02 -1.98209986e-01\\n2.95626111e-02 -1.62104219e-01 -3.88458967e-01 4.40001711e-02\\n-5.18975742e-02 -5.11773489e-02 2.22649239e-02 3.13011184e-02\\n1.29123017e-01 7.45195895e-02 -5.29471934e-01 -2.07720190e-01\\n-2.53031343e-01 -1.08118638e-01 1.40799694e-02 -4.06599522e-01\\n5.92197292e-02 -7.43468385e-03 -6.36318207e-01 3.06066871e-01\\n-3.06495547e-01 9.54146758e-02 1.30129576e-01 8.76834095e-02\\n-4.51240152e-01 -1.30911306e-01 1.65414929e-01 1.52794510e-01\\n-2.88830251e-01 -1.08976416e-01 -9.61446315e-02 -1.08853316e+00\\n2.96982944e-01 -9.61849242e-02 -7.25740790e-02 2.27480270e-02\\n-4.63116020e-02 -7.93134034e-01 9.86428708e-02 -3.43419343e-01\\n1.87187120e-02 -2.07975358e-02 -1.08778752e-01 -4.32107568e-01\\n6.74312338e-02 -1.27865180e-01 -2.87211865e-01 2.68414289e-01\\n-4.44613755e-01 3.72799575e-01 -1.56655312e-01 1.28634110e-01\\n-3.51930298e-02 -3.12616080e-01 1.57254413e-01 -4.55645651e-01\\n-3.98627371e-01 -1.27781808e-01 -2.95688212e-01 -1.76665843e-01\\n-5.17622195e-02 -3.53044599e-01 -1.56716421e-01 1.14772148e-01\\n3.16042304e-01 1.14111893e-01 -6.10143542e-02 -2.41039008e-01\\n1.12457089e-01 -2.69582003e-01 3.24008316e-02 -1.21879131e-01\\n1.20718703e-01 -3.03700138e-02 1.75463855e-01 -4.79134964e-03\\n2.41457626e-01 -4.57437903e-01 4.01130646e-01 -3.77908587e-01\\n-4.42508519e-01 2.64437217e-03 4.21154946e-02 3.97810936e-02\\n3.01885575e-01 -4.86610025e-01 1.11247646e-02 2.37946510e-01\\n1.73222974e-01 1.22796781e-01 2.48659536e-01 1.86481662e-02\\n-1.54597655e-01 1.36411369e-01 -3.85708928e-01 9.71544441e-03\\n8.32945168e-01 1.75121665e-01 1.13029771e-01 9.02787372e-02\\n3.18379104e-02 3.77394587e-01 5.02191901e-01 -8.99109989e-03\\n-1.20048493e-01 2.51982510e-01 1.11550167e-01 -4.91380543e-01\\n-2.24850014e-01 -2.65921708e-02 -2.05087617e-01 -1.75069168e-01\\n6.28130555e-01 4.36543196e-01 -2.94996500e-01 -2.88637042e-01\\n-9.96529013e-02 -2.03501254e-01 1.74984753e-01 -5.48226386e-02\\n1.01103045e-01 -2.30957493e-01 6.27895594e-01 6.22641146e-02\\n2.44934604e-01 6.21182382e-01 -1.85486361e-01 -3.99862140e-01\\n-9.16196033e-02 1.68436378e-01 5.53882271e-02 3.10499460e-01\\n-1.42887026e-01 2.84558684e-01 1.68681350e-02 4.10193764e-02\\n-1.99829996e-01 5.01204096e-02 1.52698874e-01 4.43148576e-02\\n1.40622944e-01 2.18024269e-01 3.18108648e-01 5.23011446e-01\\n3.41097444e-01 5.57101846e-01 2.71017879e-01 3.59637737e-02\\n4.87620115e-01 4.76558000e-01 4.54230547e-01 2.08986163e-01\\n-1.76320306e-03 1.02056921e-01 2.16901347e-01 5.01393266e-02\\n4.69051331e-01 2.94091463e-01 1.79922462e-01 9.98627603e-01\\n3.48797649e-01 2.87032545e-01 8.43538225e-01 -6.43991292e-01\\n-3.18332583e-01 5.51734343e-02 4.55668807e-01 -4.48792756e-01\\n-1.03208646e-01 -2.35917289e-02 -1.22589260e-01 2.35548720e-01\\n-4.74328876e-01 -2.55274892e-01 -9.27144364e-02 1.68489486e-01\\n4.89928350e-02 -8.48086700e-02 -2.35221758e-01 5.56751527e-02\\n-2.20822483e-01 -1.62228793e-01 -4.53381389e-01 -1.14544705e-01\\n-2.33592719e-01 -1.03915513e-01 -7.65084699e-02 -1.84562787e-01\\n-3.26370820e-02 -3.98711294e-01 -2.02082708e-01 2.68614795e-02\\n3.79045993e-01 -2.30294168e-01 2.94798687e-02 -1.81650251e-01\\n2.43176535e-01 2.39570662e-01 6.50650203e-01 1.27208696e-04\\n1.63850382e-01 -2.21740499e-01 -2.02035472e-01 9.17099938e-02\\n2.68027466e-02 1.37803748e-01 1.17072977e-01 3.76176268e-01\\n-4.04191136e-01 -2.14482509e-02 1.21888354e-01 5.50979197e-01\\n-3.42247546e-01 -9.31182057e-02 -1.53794706e-01 1.38029650e-01\\n6.04198799e-02 1.23234972e-01 -1.84309915e-01 -2.02576760e-02\\n-2.62405872e-01 -5.71299553e-01 3.52944851e-01 -1.24262683e-01\\n-1.58385515e-01 1.21032149e-01 3.36867213e-01 1.86535716e-01\\n-2.29159430e-01 9.08462738e-04 4.92382459e-02 1.94130823e-01\\n1.63496256e-01 3.55838865e-01 -3.36899340e-01 -2.02272743e-01\\n-1.60276696e-01 2.56040275e-01 -1.89696684e-01 2.15142649e-02\\n-9.00366232e-02 4.16060656e-01 2.68871486e-02 9.36951786e-02\\n3.94507438e-01 -4.32611518e-02 -1.73853770e-01 -2.69220442e-01\\n-1.61375061e-01 -2.79768169e-01 5.43620624e-02 -1.25683665e-01\\n2.65155464e-01 -3.70299548e-01 -8.55093896e-02 -1.29202113e-01\\n-5.75658605e-02 -3.69844526e-01 -1.52958527e-01 4.67682397e-03]]',\n", + " 'job_description': 'We are looking for young, enthusiastic and talented Software Engineer In this position you will be responsible for embedded software development in C++ and other programming languages. You will develop software under different operating systems using provided Application Programming Interfaces (APIs). In dynamic, multicultural environment of our company, you will be part of a team working on projects in the area of Telecommunications, Wireless, Networked Entertainment and Multimedia. In cooperation with leading European companies, you will be developing cutting-edge technology products. Exciting, challenging tasks are waiting for you! As a successful candidate for this position you must be able to demonstrate the following qualifications: 2+ years of experience in software development Strong knowledge of object-oriented (OO) design principles Extensive programming experience in C++ and multi-threading environments Basic computer engineering knowledge (processor and memory organization, stack, calling conventions, interrupt handling, etc.) Good written and verbal communication skills in English Good analytical and problem-solving skills Any of the following qualifications will be a plus: Experience with real-time operating systems (RTOS) and Linux Software design and development process using UML Understanding of embedded software development principles Hands-on experience with hardware debuggers and device-level programming Practical knowledge of MS VS, GCC, STL, Perl, CVS/Subversion, ADS (RealView), Socket API Familiarity with the ARM architecture and assembler Software analysis, review and re-factoring skills We offer: Exciting carrier and professional opportunities in a dynamically developing company with Swiss quality standards and stability Enjoyable working atmosphere in our engineering offices, conveniently located in 5-minute walking distance from Zug railway station. If you are interested in this position, please, send your resume at jobs@epscom.net We are looking forward to your application!',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Cooperation\", \"Professionalism\", \"Problem Solving\", \"Positivity\"]',\n", + " 'hard_skills': '[\"KM Programming Language\", \"Programming (Music)\", \"UML Tool\", \"Analytics\", \"Perl (Programming Language)\", \"C++ (Programming Language)\", \"Linux\", \"Agile Edge Technologies\", \"Process Driven Development\", \"Software Engineering\", \"ARM Architecture\", \"Operating Systems\", \"Multimedia\", \"AD Model Builder (ADMB)\", \"Standard Template Library (STL)\", \"Object-Oriented Design\", \"Wireless Telecommunications\", \"Software Design\", \"Computer Engineering\", \"Wireless Networks\", \"Software Development\", \"Software Business Analysis\", \"Application Programming Interface (API)\", \"Embedded Software\", \"Apache Subversion\", \"Real-Time Operating Systems\", \"Interrupt Handling\", \"Threading (Manufacturing)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'banking specialist for asset data sourcing team',\n", + " 'location': 'Adliswil',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-2.46648371e-01 8.40683132e-02 6.47704542e-01 -7.06468597e-02\\n6.19640470e-01 -5.38111031e-02 -3.63511965e-02 3.84877384e-01\\n-6.13008104e-02 -4.01195377e-01 -1.42198307e-02 -2.03774601e-01\\n1.12571791e-01 2.64073491e-01 9.96969938e-02 2.46304229e-01\\n2.19860658e-01 1.54651463e-01 -5.96921109e-02 2.01621294e-01\\n1.18103422e-01 -1.53022796e-01 2.80736476e-01 6.63044631e-01\\n3.71157259e-01 1.51067646e-02 -7.86950737e-02 8.43321159e-02\\n-2.15574294e-01 -2.29256257e-01 5.06317496e-01 1.06468648e-01\\n-1.29997075e-01 -3.17014813e-01 1.55546933e-01 -3.81376930e-02\\n-2.88641810e-01 -5.75769655e-02 -1.44087479e-01 3.39276604e-02\\n-3.74132097e-01 -6.93628788e-02 -8.77526179e-02 1.88347414e-01\\n-3.69932562e-01 -3.58926922e-01 1.49138868e-02 -5.09441085e-02\\n1.34066105e-01 2.53248475e-02 -3.40091616e-01 2.79569924e-01\\n-2.69609779e-01 -3.26773494e-01 2.32046083e-01 6.58977687e-01\\n-5.22730015e-02 -4.38886076e-01 -4.45773840e-01 -3.30799073e-01\\n2.35520154e-01 -1.92735210e-01 9.59709361e-02 -2.97118157e-01\\n2.74405450e-01 8.00230261e-03 1.20419011e-01 2.77295470e-01\\n-7.57271409e-01 8.14732388e-02 -1.42944902e-01 -1.47838332e-02\\n-2.80732393e-01 -8.56808424e-02 -3.44099998e-01 -2.43293911e-01\\n-1.90903291e-01 3.90035778e-01 1.19309984e-01 9.58102271e-02\\n-1.22891203e-01 1.80712208e-01 -3.04186076e-01 3.50787193e-01\\n6.04168102e-02 3.32013488e-01 2.27561519e-01 1.91242114e-01\\n-2.89909571e-01 6.80834413e-01 2.05130935e-01 -3.76868933e-01\\n1.97110489e-01 9.68485326e-02 2.06479803e-01 -1.13175966e-01\\n2.18146116e-01 3.53431050e-03 -1.62738323e-01 2.54714131e-01\\n2.27403730e-01 -2.70096183e-01 3.40539664e-02 -1.04736589e-01\\n1.41931139e-02 1.64740048e-02 1.33529399e-02 1.68210045e-01\\n-2.18523964e-01 3.42262864e-01 4.91616279e-02 -2.70316720e-01\\n-6.84090257e-02 -4.31853354e-01 -8.65514427e-02 -6.77133352e-02\\n6.17499836e-03 1.34906620e-01 8.14604610e-02 1.65389001e-01\\n1.93133488e-01 3.00543867e-02 1.97843432e-01 8.37093949e-01\\n-1.48729784e-02 -3.75920907e-02 -2.11325228e-01 3.84233683e-01\\n6.33893609e-02 -2.43830979e-01 1.47479236e-01 2.07457080e-01\\n-9.83946100e-02 -1.33134335e-01 -2.84978122e-01 2.75941908e-01\\n-5.74419275e-02 -2.81221181e-01 -2.50318229e-01 1.39585197e-01\\n-8.80067125e-02 -4.80451852e-01 5.15599966e-01 6.91191927e-02\\n1.25683010e-01 -1.03904687e-01 -5.39002102e-03 -1.11581534e-01\\n-3.27925719e-02 1.75799876e-01 5.75377829e-02 8.89677033e-02\\n-2.80123323e-01 -1.83305070e-01 -1.97043955e-01 -3.75093333e-02\\n-3.87607276e-01 4.64359224e-02 -2.12277949e-01 -4.56675291e-02\\n2.24290252e-01 2.49792635e-02 -2.86823213e-01 1.95464820e-01\\n-7.04059228e-02 6.69704238e-03 -1.66506115e-02 3.89373362e-01\\n-2.15914235e-01 2.15044007e-01 -5.95957339e-02 -9.99350473e-02\\n5.09244680e-01 9.25352275e-02 2.00519085e-01 5.91132091e-03\\n1.56187311e-01 -4.37062941e-02 9.61402953e-02 7.64782950e-02\\n-7.47786224e-01 4.34609890e-01 -7.79770489e-04 -1.49048984e-01\\n1.46683052e-01 1.87183451e-03 1.83335319e-01 -2.40116775e-01\\n1.72063708e-01 -9.47191939e-02 -3.15730333e-01 -3.10053200e-01\\n-3.72614861e-02 -1.83657054e-02 2.48972654e-01 -5.17140985e-01\\n3.41007672e-02 1.85059354e-01 -4.40160900e-01 -1.73932761e-01\\n1.23282284e-01 2.39198804e-01 1.40462741e-02 1.31112099e-01\\n-2.31310531e-01 -3.47739041e-01 9.29064006e-02 -3.83815140e-01\\n-1.76903397e-01 4.88628894e-02 -3.28096926e-01 2.34765694e-01\\n4.18616198e-02 -9.54655111e-02 -1.82711799e-02 4.71006036e-02\\n-2.35426888e-01 6.54326798e-03 5.29332198e-02 -2.95037907e-02\\n4.10459816e-01 6.94635734e-02 -3.31434041e-01 4.74965841e-01\\n-1.96126863e-01 4.74295884e-01 5.27208485e-02 -9.26093280e-01\\n3.65673006e-01 2.61092961e-01 5.71451634e-02 -4.59950000e-01\\n6.45746708e-01 -3.51696253e-01 -8.57789516e-02 1.51056662e-01\\n-4.69294548e-01 -2.65459239e-01 2.97294229e-01 -1.69146582e-01\\n-3.09421033e-01 4.63334233e-01 1.01595834e-01 8.37331042e-02\\n1.54330999e-01 -2.21791416e-01 -1.89323395e-01 -6.83706030e-02\\n-1.97534516e-01 -2.80544430e-01 -6.17206335e-01 -8.99599716e-02\\n-9.31529403e-02 -4.27643239e-01 -1.19171776e-01 -4.38501537e-01\\n-1.74254775e-01 -3.09849918e-01 -2.04470456e-01 5.74285537e-02\\n1.86274618e-01 8.64165947e-02 -1.41394474e-02 2.60825120e-02\\n-4.38382700e-02 -5.66135764e-01 -2.81866901e-02 1.07095048e-01\\n3.42921793e-01 7.73109049e-02 1.36080101e-01 7.61560909e-03\\n1.45567313e-01 7.43997753e-01 -8.21147859e-02 -1.94624618e-01\\n2.61089385e-01 2.18745500e-01 5.55167645e-02 -8.29208940e-02\\n1.68494359e-01 2.93530434e-01 -2.91955382e-01 3.03021930e-02\\n-1.77157540e-02 -5.38289454e-03 4.17656839e-01 2.73761549e-03\\n-2.20882192e-01 -2.02173755e-01 3.27316709e-02 1.46339685e-01\\n-5.86391807e-01 -2.52660424e-01 5.11378586e-01 2.18938559e-01\\n-5.66958636e-03 2.65915275e-01 1.23419084e-01 -3.64043452e-02\\n-2.10972622e-01 -1.50980875e-01 3.60902935e-01 7.34940842e-02\\n2.03357935e-01 4.10521366e-02 -7.58752301e-02 -5.75444758e-01\\n-3.55480886e+00 -1.55666932e-01 7.76460161e-03 -2.49241218e-01\\n3.15165669e-01 -1.95138082e-01 2.33304217e-01 -4.56463881e-02\\n-3.30811024e-01 1.13729276e-01 -1.36300102e-01 -2.24511951e-01\\n3.26126724e-01 1.02653161e-01 1.11123577e-01 2.51464814e-01\\n1.41091213e-01 -2.77278036e-01 1.01157360e-01 3.32540810e-01\\n-1.75159320e-01 -7.90203810e-01 1.77850425e-01 6.80197729e-03\\n2.39764929e-01 2.39827096e-01 -3.87954444e-01 -1.16127513e-01\\n-2.93637067e-01 -2.18633905e-01 -2.04818677e-02 -2.96672165e-01\\n-4.23028879e-02 2.45305210e-01 2.49314323e-01 -1.91371679e-01\\n5.09701967e-02 -3.03747714e-01 -7.89971650e-02 -5.46766877e-01\\n2.34568313e-01 -5.91254830e-01 -2.49051619e-02 -8.27342197e-02\\n7.16954052e-01 -3.59905213e-01 1.48955256e-01 1.03407472e-01\\n1.32076591e-01 1.42691135e-01 1.65358782e-01 -7.32796490e-02\\n-2.44380087e-01 -2.82395840e-01 -1.71258152e-01 -1.66695789e-01\\n4.77622449e-01 4.44532722e-01 -2.62760639e-01 4.47850041e-02\\n4.43682186e-02 -2.86803365e-01 -3.52415472e-01 -2.59366959e-01\\n-1.04122087e-01 -1.24199890e-01 -5.32551587e-01 -5.37462056e-01\\n-1.16581172e-01 -1.26851857e-01 -2.13046633e-02 4.25822973e-01\\n-1.98019847e-01 -4.05182481e-01 -1.76587537e-01 -4.56676900e-01\\n3.72479558e-01 -4.94155772e-02 2.58599315e-02 -1.53941199e-01\\n-1.23174272e-01 -4.71592337e-01 1.62052795e-01 -5.88417053e-03\\n-1.00216821e-01 -1.93405330e-01 1.99273050e-01 -1.28692046e-01\\n-4.33713496e-01 -5.74727535e-01 2.77511895e-01 1.10979555e-02\\n3.37826222e-01 1.83455825e-01 1.79889381e-01 -3.19403484e-02\\n1.93877906e-01 -3.87703925e-02 6.15329482e-02 -4.18070763e-01\\n-4.20245342e-02 4.31864336e-03 5.05872369e-01 -1.79113269e-01\\n8.18325281e-02 8.29805806e-02 -8.81239623e-02 -7.65033588e-02\\n2.83053517e-01 -1.40246257e-01 2.20193565e-01 -2.27751076e-01\\n2.78513759e-01 -2.54444361e-01 -9.88413543e-02 -1.26841543e-02\\n7.11710826e-02 4.39178914e-01 6.44589961e-02 -2.09887773e-01\\n-6.74736276e-02 4.44230616e-01 -1.35510671e-03 -1.21706642e-01\\n-3.29016119e-01 4.28113751e-02 -3.18882793e-01 4.39728141e-01\\n-8.35918728e-03 -2.37061605e-01 -2.43030399e-01 -1.67483866e-01\\n-1.15562767e-01 2.86450148e-01 3.65762591e-01 1.56672120e-01\\n3.88512947e-02 -4.00768757e-01 -5.69746606e-02 1.27518758e-01\\n2.08256930e-01 4.84257698e-01 4.92029525e-02 -1.62035018e-01\\n-5.20101748e-02 2.01496154e-01 -2.61388987e-01 2.84892917e-01\\n-9.21199024e-02 1.40554100e-01 -5.16074836e-01 -2.49655023e-01\\n-2.87908643e-01 -3.36801887e-01 5.41051701e-02 3.42822611e-01\\n1.59986511e-01 -1.04538053e-01 -2.39738300e-02 -3.91532838e-01\\n3.02872539e-01 3.87217365e-02 1.77957997e-01 3.43372002e-02\\n-3.66652347e-02 6.02821946e-01 -3.56917605e-02 -2.13962138e-01\\n-9.88411605e-02 1.31284311e-01 -1.59408599e-01 -3.44115756e-02\\n1.99270584e-02 -4.49114889e-01 -1.43026844e-01 4.07083243e-01\\n1.77315846e-01 -2.44006798e-01 -6.01502284e-02 3.23756516e-01\\n-1.17133312e-01 -2.08129540e-01 -1.72732487e-01 6.52208105e-02\\n4.40668046e-01 1.31663397e-01 2.69772500e-01 -4.23635393e-01\\n4.78021018e-02 9.91960838e-02 4.40567359e-02 4.80223179e-01\\n-2.80739851e-02 -3.67609970e-02 -1.07847340e-02 -2.95050681e-01\\n3.98558944e-01 -2.39099041e-02 -1.38613656e-01 2.12849692e-01\\n2.73544211e-02 -1.45090893e-01 -3.29770267e-01 1.72717795e-02\\n2.20228359e-02 -2.66773880e-01 -5.64959657e-04 2.12869272e-01\\n9.81582776e-02 1.04123116e-01 -5.27846277e-01 -2.63828218e-01\\n-4.62236911e-01 8.71015489e-02 7.82755017e-02 -4.98994172e-01\\n5.69451898e-02 -1.06728941e-01 -5.66275835e-01 2.48335630e-01\\n-1.02786710e-02 -1.19939715e-01 1.69860572e-01 1.64488107e-02\\n-2.64875442e-01 3.32223624e-02 2.41914257e-01 2.44239777e-01\\n-3.29255104e-01 -6.72864988e-02 -9.69993994e-02 -9.29876924e-01\\n3.03357899e-01 6.21748157e-02 -9.94342268e-02 2.19043180e-01\\n-9.00675505e-02 -6.39838576e-01 1.31256774e-01 -3.52953613e-01\\n-2.92709351e-01 -1.30341098e-01 -1.73027664e-01 -4.17243898e-01\\n7.14336783e-02 1.68641672e-01 -9.57129747e-02 4.68796670e-01\\n-1.93818137e-01 4.20485556e-01 -1.37352899e-01 7.53303394e-02\\n8.75213668e-02 -2.45064020e-01 6.38361201e-02 -3.49721074e-01\\n-2.94677019e-01 -1.33730367e-01 -3.00069600e-01 -1.71128586e-01\\n-1.04200020e-01 -3.22524399e-01 -1.21172979e-01 4.26757000e-02\\n3.83553743e-01 8.09428245e-02 -1.88437834e-01 -1.62130788e-01\\n1.29822001e-01 -4.50269133e-01 2.02790305e-01 -1.40054241e-01\\n-4.99545336e-02 -1.21505514e-01 1.50140002e-01 2.52620187e-02\\n1.08910799e-01 -4.82825071e-01 2.98425496e-01 -3.08848351e-01\\n-3.31389219e-01 -1.67763472e-01 6.69352040e-02 2.71496251e-02\\n2.67646939e-01 -4.23640996e-01 -1.46267116e-01 2.75276154e-01\\n1.42659381e-01 1.01740599e-01 2.75887400e-01 -9.01566222e-02\\n-1.29634112e-01 3.72688711e-01 -3.45085770e-01 1.85968667e-01\\n8.11822832e-01 1.34150520e-01 2.06349298e-01 2.67301500e-01\\n2.61658818e-01 2.27521405e-01 3.59090984e-01 6.43799379e-02\\n-1.05386943e-01 3.73851061e-01 5.97496890e-02 -4.70680863e-01\\n-2.30090898e-02 -6.66520670e-02 -1.63762793e-01 -4.02028412e-01\\n6.76596999e-01 3.76488000e-01 -3.44214529e-01 -2.62013078e-01\\n-2.68846631e-01 -1.64932013e-01 8.90515372e-02 -1.04303740e-01\\n6.03773072e-02 -1.87468037e-01 3.90162140e-01 -6.01508170e-02\\n2.00873122e-01 5.09402335e-01 -1.75594568e-01 -3.03343683e-01\\n8.84671882e-03 2.48300016e-01 8.20089430e-02 5.22682369e-01\\n-2.53806591e-01 2.45948866e-01 6.12605140e-02 1.41221672e-01\\n-7.29291588e-02 9.18878838e-02 1.44223288e-01 1.51003078e-01\\n1.03907712e-01 5.64208329e-02 3.90816689e-01 3.54449421e-01\\n2.29327917e-01 3.89226317e-01 3.20732951e-01 1.57360449e-01\\n4.97819066e-01 5.20538628e-01 3.03491682e-01 9.50522069e-03\\n-3.88861448e-03 -8.36974308e-02 1.65974572e-01 2.50453353e-02\\n2.05038533e-01 3.27608943e-01 -4.84132878e-02 8.59740376e-01\\n3.35814476e-01 3.21648270e-01 6.89066172e-01 -6.19233012e-01\\n-4.12851632e-01 -3.46267335e-02 4.40060169e-01 -3.92425597e-01\\n-3.62447673e-03 1.75956041e-01 -1.95166335e-01 2.02797338e-01\\n-4.22050893e-01 -1.92500636e-01 -1.33568356e-02 -3.16246301e-02\\n-4.89482284e-02 -6.22023419e-02 -1.51026592e-01 1.78108454e-01\\n-1.23927400e-01 -1.15644291e-01 -4.62634325e-01 -2.40619764e-01\\n-9.94157195e-02 -1.24832787e-01 -9.94983763e-02 -5.05153127e-02\\n-6.59739301e-02 -3.27484220e-01 -6.94544911e-02 -8.45572129e-02\\n2.17577338e-01 -7.89618399e-03 -6.37203231e-02 -1.28655359e-01\\n2.91991234e-01 2.00499117e-01 6.25085533e-01 -1.52251255e-02\\n1.17349334e-01 -1.85513124e-01 -1.72725812e-01 3.13205607e-02\\n2.80748099e-01 4.62723002e-02 -1.22373300e-02 3.62902284e-01\\n-3.84581089e-01 -2.17611462e-01 2.26520494e-01 2.78219283e-01\\n-5.19956529e-01 1.37065053e-01 -7.98860099e-03 9.68392640e-02\\n1.04423426e-02 2.11636648e-01 -3.40693802e-01 -4.20318358e-03\\n-1.10536411e-01 -5.05388916e-01 2.83024341e-01 -1.75167605e-01\\n-1.18513405e-01 9.38572735e-03 2.44278640e-01 3.24519724e-01\\n-1.56521708e-01 -2.06026738e-03 -1.92913294e-01 1.32050309e-02\\n2.39327010e-02 1.15656704e-01 -1.61467716e-01 -1.90456033e-01\\n-2.76440471e-01 5.52208461e-02 -1.05687134e-01 1.42813608e-01\\n6.08249009e-02 3.11246574e-01 1.22352354e-01 1.00563459e-01\\n4.05563831e-01 -1.20621569e-01 -1.99881852e-01 -2.47887090e-01\\n-2.84472913e-01 -1.06974378e-01 -5.95223382e-02 -1.14750117e-01\\n2.56508797e-01 -2.91687638e-01 1.51753100e-02 -2.41869450e-01\\n-2.03866631e-01 -3.29605579e-01 8.94092992e-02 -2.33986899e-01]]',\n", + " 'job_description': \"Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team As part of our Global Asset Hub, the Asset Data Sourcing team is responsible for interfacing to data vendors (SIX FI, Bloomberg, etc.), data integration and delivery of up-to-date and validated instrument data (reference and market and corporate actions data) using a highly standardized approach. Your mission Business support for all data feed and data integration relevant aspects as part of our Asset Hub service. Executing and monitoring daily operation of Asset Master Data in line with agreed SLA's. Act as single point of contact toward clients, data vendors (e.g. SIX FI, Bloomberg, WM Datenservice etc.) and internal stakeholders in all Master Data relevant topics. Supporting internal business analysts for complex client requirements and improvement initiatives etc. Depending on your personal qualifications and aspirations further tasks can be added in relation with the expansion of our Asset Hub services. What you need Proven banking background with focus on back office administration. At least 3 years’ service experience with financial instruments and a master data environment as a business specialist (e.g. Valorenzentrale of a bank). Fluent in German and English (Italian and French would be a plus). sound knowledge of MS Office tools. Distinct client and service orientation. Eager to learn and take on new challenges. You will get extra points for the following Knowledge of the Avaloq Core Banking System. Knowledge of file handling tools (e.g. Filezilla, Total Commander) Knowledge of the EDM Solution Data Source (aka ProDB) Temenos. Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Bioggio Don’t be shy – apply!\",\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Operations\", \"Service-Orientation\"]',\n", + " 'hard_skills': '[\"Reference Data\", \"Business Support Systems\", \"Tooling\", \"Pentaho Data Integration\", \"Office Administration\", \"Data Integration\", \"Wealth Management\", \"File Handling\", \"Financial Instrument\", \"Data Feed\", \"Instrumentation\", \"E (Programming Language)\", \"Total Commander\", \"Executable\", \"Knowledge-Based Systems\", \"AD Model Builder (ADMB)\", \"Personalization\", \"Acceptance and Commitment Therapy (ACT)\", \"Validations\", \"E-Tools\", \"Banking\", \"FileZilla\", \"Bloomberg Terminal\", \"International Business\", \"Source Data\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '97',\n", + " 'job_title': 'paid internship in information technology / business analysis - 6 months (m/f)',\n", + " 'location': 'Geneva',\n", + " 'industry': '',\n", + " 'website': 'www.pg.com',\n", + " 'jobdescription_embedded': '[[-9.31522921e-02 2.31941432e-01 5.36660373e-01 5.34399077e-02\\n6.94439888e-01 -8.13762546e-02 6.62378818e-02 3.26145828e-01\\n-1.12608269e-01 -3.69935185e-01 3.64051312e-02 -2.48723254e-01\\n1.09189451e-01 1.46269202e-01 8.54134932e-02 3.89964938e-01\\n4.61725742e-01 5.92709482e-02 -1.45790875e-01 3.14531177e-01\\n1.43064812e-01 -6.87748268e-02 1.70968845e-01 7.12481558e-01\\n5.82637668e-01 -3.13143395e-02 -4.27993014e-02 1.07626043e-01\\n-1.65265426e-01 -2.66508907e-01 5.14545798e-01 1.68767292e-02\\n-1.84240475e-01 -2.34215572e-01 5.42227775e-02 8.65881443e-02\\n-2.57911056e-01 -1.40806258e-01 -7.56352693e-02 1.76309019e-01\\n-4.93966073e-01 -1.29305795e-01 -1.55841738e-01 7.53242895e-02\\n-3.89258981e-01 -4.28603053e-01 -5.32816499e-02 -2.63175853e-02\\n1.17571473e-01 6.56449646e-02 -4.01026011e-01 3.59218538e-01\\n-1.17664024e-01 -3.00781161e-01 2.21398026e-01 7.40995824e-01\\n-2.16078404e-02 -4.44438338e-01 -5.02912402e-01 -4.00972784e-01\\n1.54340893e-01 -6.79686219e-02 1.72329694e-01 -3.64452004e-01\\n4.12550181e-01 8.94374475e-02 -6.05907664e-02 2.34173402e-01\\n-7.58675337e-01 -9.05441344e-02 -3.66713166e-01 -4.71538156e-02\\n-3.05083632e-01 -2.89225988e-02 -4.07378018e-01 -1.72672778e-01\\n-1.01135507e-01 4.18657720e-01 3.05007901e-02 9.27167833e-02\\n-9.08069983e-02 2.05872193e-01 -3.00760746e-01 2.65853137e-01\\n1.59806550e-01 3.43896329e-01 2.90823281e-01 3.35317373e-01\\n-3.11813265e-01 3.88930023e-01 1.53899252e-01 -3.77237499e-01\\n2.53843069e-01 2.34399527e-01 4.73659754e-01 -1.48777291e-02\\n2.54593104e-01 1.19978629e-01 -2.75294870e-01 2.74144650e-01\\n2.11161524e-01 -3.52601707e-01 1.04881063e-01 1.25735793e-02\\n-1.10545442e-01 -1.10177569e-01 1.52279168e-01 9.59993750e-02\\n-4.34963942e-01 4.54199195e-01 -4.91569042e-02 -2.88061380e-01\\n-4.84038591e-02 -4.19547498e-01 -5.17915152e-02 -4.10511047e-02\\n1.24099672e-01 2.76623428e-01 1.62327617e-01 3.07276458e-01\\n1.62714615e-01 -6.64959624e-02 1.73047557e-01 7.83663392e-01\\n2.64105964e-02 9.05479491e-02 -2.21366778e-01 2.87354290e-01\\n1.64400693e-03 -3.60234678e-01 3.52492452e-01 1.91821635e-01\\n-6.60820454e-02 -1.20609179e-01 -3.49202126e-01 2.63943017e-01\\n-1.22070625e-01 -2.89990902e-01 -2.00482279e-01 2.77284384e-01\\n-3.54555808e-02 -5.13663352e-01 6.13953471e-01 -9.70494971e-02\\n9.53728333e-02 -2.10683942e-01 -3.87861244e-02 -6.17821142e-02\\n-9.37421918e-02 1.48719251e-01 1.88873664e-01 1.16289631e-01\\n-2.29598045e-01 -1.27226382e-01 -1.87284991e-01 1.68545663e-01\\n-6.18140817e-01 8.70787799e-02 -1.39012337e-01 -9.92077142e-02\\n3.03132653e-01 -8.15986469e-02 -3.16681981e-01 3.78382415e-01\\n-1.29961640e-01 -1.16897315e-01 -2.90523693e-02 4.15536851e-01\\n-2.23974079e-01 2.43791640e-01 -4.49244231e-02 -8.82148296e-02\\n6.53666377e-01 1.63376361e-01 2.15049058e-01 -1.48121966e-03\\n1.82690531e-01 -9.67084989e-03 1.41630828e-01 2.06885308e-01\\n-7.00775743e-01 3.17976743e-01 -1.73795521e-01 -1.82977736e-01\\n8.75700265e-02 -1.33288473e-01 2.64275312e-01 -3.14549685e-01\\n5.61109632e-02 -5.14486507e-02 -2.71140158e-01 -3.31531167e-01\\n-2.16799125e-01 -6.91834539e-02 3.48062694e-01 -5.18355012e-01\\n7.80652612e-02 2.25596458e-01 -6.09233618e-01 -1.27135277e-01\\n2.18461171e-01 1.25178248e-01 1.38835669e-01 2.68118739e-01\\n-1.12328306e-01 -5.27871847e-01 1.19323984e-01 -3.39074671e-01\\n-2.22472161e-01 1.30744874e-01 -3.34596872e-01 1.51622593e-01\\n1.32178217e-01 3.52715142e-05 -4.82527539e-02 4.71356809e-02\\n-1.77710012e-01 8.19198340e-02 4.13370430e-02 7.73137137e-02\\n3.31574649e-01 7.49986544e-02 -3.34111452e-01 4.26742673e-01\\n-1.80401057e-01 3.28061104e-01 1.40454382e-01 -9.08507228e-01\\n4.41399336e-01 2.32862353e-01 8.63452405e-02 -1.83602244e-01\\n7.10392058e-01 -2.33413875e-01 -1.43664211e-01 1.54212207e-01\\n-3.09251010e-01 -2.82217383e-01 1.26918852e-01 -2.92364836e-01\\n-3.00200343e-01 5.42809129e-01 1.09532170e-01 2.79902518e-01\\n2.12848157e-01 -1.16718665e-01 -1.91678256e-01 5.27246445e-02\\n-2.46205181e-01 -2.30635703e-01 -6.31407142e-01 1.87831912e-02\\n-9.61954370e-02 -3.97538036e-01 -1.19626433e-01 -4.60452020e-01\\n-2.53206193e-01 -3.81199837e-01 -2.92619038e-02 -3.18829529e-02\\n3.86178434e-01 1.74310535e-01 -5.00617251e-02 -7.36162812e-02\\n-1.64871857e-01 -5.65014482e-01 -1.46691665e-01 1.24471039e-01\\n3.31172854e-01 1.29259467e-01 1.21913522e-01 -3.97674590e-02\\n1.73264593e-01 6.75605118e-01 -2.68430889e-01 -2.80152857e-01\\n2.05229610e-01 1.34207875e-01 -5.94588071e-02 -2.14296192e-01\\n-5.37828542e-04 3.22471082e-01 -2.57141531e-01 8.15577507e-02\\n-2.25727614e-02 3.73041183e-02 2.63974398e-01 9.45889577e-02\\n-7.18154535e-02 -2.19836637e-01 -7.48574287e-02 2.85847157e-01\\n-4.20214534e-01 -3.92373383e-01 7.39919960e-01 1.16203181e-01\\n-2.31230222e-02 1.56371430e-01 1.92801446e-01 1.23263877e-02\\n-1.72476441e-01 -2.12011993e-01 2.90297449e-01 1.05165347e-01\\n1.53592303e-01 1.81066617e-01 3.86862084e-02 -4.90678012e-01\\n-3.50266457e+00 -2.33174890e-01 9.35696661e-02 -2.15384915e-01\\n1.79882511e-01 -1.87892571e-01 9.91945416e-02 -4.56335545e-02\\n-3.09886754e-01 8.36942196e-02 -2.13266596e-01 -1.66745514e-01\\n1.48380846e-01 2.58699149e-01 1.26486748e-01 2.94882298e-01\\n1.92414388e-01 -1.93776309e-01 -6.32474124e-02 4.98285115e-01\\n-1.15054138e-01 -6.17814779e-01 1.59184963e-01 1.00721851e-01\\n3.01620722e-01 1.61308900e-01 -3.98348033e-01 -1.84044182e-01\\n-2.88190663e-01 -2.70670712e-01 1.80748969e-01 -2.89738417e-01\\n-1.90850079e-01 3.97423327e-01 2.29458109e-01 -7.57929124e-03\\n1.41181290e-01 -3.63380730e-01 -1.78281218e-01 -2.22061992e-01\\n4.59094904e-03 -7.03427672e-01 -1.51325226e-01 3.99147272e-02\\n7.28295565e-01 -2.72668183e-01 2.55305767e-01 9.45096090e-02\\n4.82925922e-02 8.21098685e-02 1.32881477e-01 -6.83073103e-02\\n-1.26975536e-01 -2.01453462e-01 -7.52066970e-02 -5.68272397e-02\\n5.71587265e-01 4.50107545e-01 -1.06105432e-01 -1.62348777e-01\\n4.95955460e-02 -2.51148909e-01 -4.40577805e-01 -3.70168746e-01\\n-2.09089205e-01 -2.37852007e-01 -7.81853497e-01 -5.33299029e-01\\n-8.23084861e-02 -1.36391357e-01 -4.85339388e-02 5.30186892e-01\\n-2.23377377e-01 -2.51144260e-01 -1.99310035e-01 -2.93680131e-01\\n3.19450110e-01 -6.76033199e-02 -1.11869529e-01 -1.42532051e-01\\n-2.14436859e-01 -3.84340823e-01 -5.37916794e-02 6.27003759e-02\\n-1.16544761e-01 -2.53695220e-01 1.94270998e-01 -8.93009081e-02\\n-5.10726929e-01 -4.99701113e-01 4.48306262e-01 1.67901024e-01\\n2.81038105e-01 1.74310505e-01 2.87729532e-01 9.70171243e-02\\n2.81931669e-01 -1.56313583e-01 -5.96766919e-03 -4.34302568e-01\\n1.39569119e-02 6.23884425e-02 4.79661226e-01 -2.27781460e-01\\n5.95352128e-02 -1.06515802e-01 -1.68830425e-01 -1.04858270e-02\\n4.40315902e-01 -1.63768396e-01 1.97613657e-01 -1.90281123e-01\\n1.48161009e-01 -2.11126953e-01 -1.90195560e-01 -1.32090729e-02\\n7.47820586e-02 6.42724574e-01 2.30307765e-02 -2.77330101e-01\\n-1.14368796e-01 3.94207537e-01 -2.38049716e-01 -2.60466617e-03\\n-3.52952540e-01 -4.45059873e-02 -2.90423036e-01 2.60637045e-01\\n-5.03300503e-02 -8.56817327e-03 -1.80948317e-01 -1.77439556e-01\\n-1.30305201e-01 2.57137537e-01 2.71632493e-01 1.26767665e-01\\n2.60318816e-03 -3.70704591e-01 3.78122255e-02 1.53575420e-01\\n3.23745370e-01 2.90768534e-01 1.72710896e-01 -2.36587167e-01\\n-5.28960079e-02 2.87525535e-01 -2.70681530e-01 2.70607501e-01\\n-2.33500049e-01 2.07659453e-01 -6.58171117e-01 -2.82479554e-01\\n-2.99591959e-01 -2.88083136e-01 1.86155692e-01 3.08358729e-01\\n2.13092878e-01 -1.21945433e-01 9.68520045e-02 -4.93189096e-01\\n2.27551043e-01 1.05125429e-02 3.05297613e-01 1.35556728e-01\\n-1.01758592e-01 6.49571657e-01 -3.36723514e-02 -1.76901966e-01\\n-3.40744518e-02 1.13605179e-01 -1.65567055e-01 -1.78325564e-01\\n-6.90184534e-02 -5.56734562e-01 -1.84640050e-01 2.77882338e-01\\n1.67252302e-01 -2.52154350e-01 -3.02525699e-01 1.69424474e-01\\n-8.91204327e-02 -4.91872907e-01 -1.96702182e-01 -6.65437654e-02\\n3.92442346e-01 1.42487824e-01 2.59906769e-01 -5.89478850e-01\\n6.33733124e-02 -7.15395510e-02 -4.54309918e-02 3.51431787e-01\\n1.98937096e-02 3.99407931e-03 -3.14613022e-02 -1.00746363e-01\\n4.36546087e-01 -7.34281391e-02 -1.37537211e-01 1.10572658e-01\\n1.11155130e-01 -2.92712271e-01 -3.52537811e-01 -1.07441694e-02\\n-2.34364178e-02 -2.15476543e-01 -2.26887763e-02 1.47804230e-01\\n-5.68154678e-02 3.03109176e-02 -5.96932411e-01 -1.75172627e-01\\n-2.79220641e-01 -4.79159616e-02 6.80803657e-02 -5.74802041e-01\\n-1.03304297e-01 -2.95035485e-02 -5.69253564e-01 2.82846630e-01\\n-2.32090652e-02 -9.91946459e-02 1.51879340e-01 -4.76821288e-02\\n-2.01772138e-01 -1.21592715e-01 1.43163219e-01 2.12083608e-01\\n-2.83105761e-01 -2.30033994e-01 -2.06189789e-02 -9.57039237e-01\\n2.10062772e-01 1.03767812e-01 -2.09596813e-01 8.90175849e-02\\n5.70998117e-02 -6.43228948e-01 2.33036146e-01 -4.02447999e-01\\n-1.50785148e-01 -1.99092701e-01 -2.96405375e-01 -3.92141759e-01\\n9.20423120e-02 1.38174474e-01 -2.54593939e-01 4.46118027e-01\\n-2.96930999e-01 3.88859153e-01 -4.42396179e-02 6.60456195e-02\\n2.67149433e-02 -2.04669788e-01 -2.17296630e-02 -3.29952300e-01\\n-5.00913382e-01 -1.27638549e-01 -2.73250639e-01 -8.30763653e-02\\n-1.02229908e-01 -2.25466639e-01 -1.68719798e-01 -7.67799318e-02\\n3.52937609e-01 1.33612230e-01 -1.33549303e-01 -1.67588174e-01\\n-3.89771052e-02 -4.17780936e-01 1.14672437e-01 -7.45631605e-02\\n-5.91568351e-02 -2.00201362e-01 2.31691912e-01 1.70737520e-01\\n1.69360906e-01 -3.77776176e-01 4.01391506e-01 -4.50145781e-01\\n-3.25641304e-01 -1.00196913e-01 8.75299573e-02 5.71315512e-02\\n3.90111744e-01 -4.47943926e-01 -1.25222616e-02 4.50302660e-01\\n-2.90957615e-02 7.10466653e-02 3.86981189e-01 -1.77334577e-01\\n-2.04100311e-01 3.68507624e-01 -2.89241999e-01 1.35130346e-01\\n8.06007564e-01 1.75841421e-01 2.46946558e-01 1.71437383e-01\\n5.38416319e-02 2.11458594e-01 4.55165684e-01 1.17626432e-02\\n-1.11604862e-01 3.44322026e-01 1.21276222e-01 -5.25951624e-01\\n4.34273370e-02 -3.64569388e-03 -1.28895938e-01 -3.24531257e-01\\n7.05867171e-01 3.84829521e-01 -3.29763472e-01 -2.91385770e-01\\n-2.44969100e-01 -2.04285696e-01 2.05166519e-01 -1.61460992e-02\\n5.23002893e-02 1.46265076e-02 5.48364282e-01 -7.96160251e-02\\n2.08537966e-01 4.54345196e-01 -2.62167037e-01 -2.39226848e-01\\n-6.42538741e-02 2.06298009e-01 5.70551492e-03 5.51275969e-01\\n-2.71672934e-01 3.79733026e-01 8.15567560e-03 1.36110231e-01\\n-2.19406813e-01 2.28214823e-02 2.88816661e-01 1.02618322e-01\\n1.06758565e-01 1.75611272e-01 5.11602938e-01 3.54925603e-01\\n3.42231899e-01 4.08135593e-01 3.45105469e-01 -1.47379674e-02\\n4.46163654e-01 4.20133650e-01 2.20274776e-01 1.18262418e-01\\n1.06507428e-02 -5.88733610e-03 1.82495296e-01 1.38327330e-01\\n2.20670819e-01 3.38591099e-01 -3.50038484e-02 8.31225872e-01\\n3.88145447e-01 2.89048314e-01 6.25732780e-01 -6.89114332e-01\\n-2.27710694e-01 -7.12179989e-02 4.93533343e-01 -3.83837402e-01\\n-1.68838277e-02 1.62933424e-01 -9.80254263e-02 1.82222083e-01\\n-4.96838003e-01 -2.82110721e-01 -1.16917677e-01 1.54566437e-01\\n1.77878793e-02 -2.30137855e-01 -2.28889927e-01 7.99848512e-02\\n5.70174120e-02 -3.16511542e-02 -4.86961484e-01 -1.30800068e-01\\n-2.79261261e-01 -1.16569936e-01 -7.27092475e-02 -2.75717508e-02\\n-1.93497017e-01 -2.95426786e-01 -1.62635744e-01 -1.04599379e-01\\n2.00104252e-01 -1.82742402e-01 -2.42972881e-01 -5.36885858e-02\\n3.85409772e-01 9.38629955e-02 5.68898618e-01 -8.07134211e-02\\n1.21091679e-01 -2.25958854e-01 -1.57083303e-01 4.25663479e-02\\n1.77779406e-01 -6.20375155e-03 -3.38458829e-02 4.25258160e-01\\n-2.63084292e-01 -2.47410253e-01 4.30845562e-03 2.22303778e-01\\n-4.91685778e-01 1.73722580e-02 -2.42955834e-02 2.31791034e-01\\n9.21972394e-02 2.15233624e-01 -1.89280450e-01 -2.11584438e-02\\n-1.15887895e-01 -5.35772741e-01 1.24686301e-01 -2.79692542e-02\\n-1.44804776e-01 9.55819935e-02 1.69434488e-01 3.12004983e-01\\n-1.80969417e-01 -1.41157717e-01 -1.19460270e-01 8.41509998e-02\\n7.40103200e-02 2.06793547e-01 -1.66515470e-01 -3.20549399e-01\\n-2.96910942e-01 2.37690613e-01 -1.10421315e-01 2.54428059e-01\\n-2.71666329e-02 3.40817273e-01 1.59171999e-01 2.19367430e-01\\n3.48234057e-01 6.80659637e-02 -1.76025152e-01 -1.78719819e-01\\n-1.56961501e-01 -2.64150739e-01 -5.28653190e-02 -1.21269673e-01\\n2.38282055e-01 -2.55924433e-01 -7.12118298e-02 -2.72256553e-01\\n-1.98315263e-01 -4.27879453e-01 4.18229029e-02 -1.41002581e-01]]',\n", + " 'job_description': 'Do you love diving into data sets? Would you enjoy telling stories and helping others see the benefit of data-based decision-making? We are passionate about understanding data and want more people who know how to use that data in the best way to guide our decisions. Are you up for the challenge? Then apply to one of P&G IT internship: we are looking for interns (F/M) in Geneva (CH) Special Notice: If you are a female student or a recent graduate passionate about business and technology, interested in using IT to transform the way people work and make business decisions and are interested in joining the Future Female Leaders in Information Technology event on November 25th in Geneva, please continue your application here. Apply before October 27th. As an intern your Project will include:• Leading and improving the analytical program, influencing the data strategy and structure for your business unit / category / region together with consumer research group. • Delivering regular analytic updates and insights, for example Market & Share performance of our product portfolio, identifying key growth opportunities or make strategies real, while using advanced analytic techniques. • Building analytic capabilities to grow organizations knowledge. • Discovering and inventing next-generation business analytic tools for our category analysts and business partners, owning our new applications from design-thinking up to user adoption.• Developing in-depth business, analytical and systems knowledge to improve or build analytical solutions, approaches and foremost business recommendations. • Collaborating with multi-functional teams (Consumer Research, Finance, Marketing, IT etc.)• Answering business questions and propose solution for business problems by applying machine learning techniques and automatizing analysis of consumer touch point information or other deep learning data, exploring their patterns and recommending marketing activities. Requirements: • You are doing a Bachelor or Master Degree in a quantitative field (Operation Research, Computer Science, Engineering, Applied Math, Statistics, Analytics etc); Possibly a minor in Economics or Business Management• You are comfortable working with diverse business scenarios, handling multiple priorities and have a business & consultancy mind-set, while technically (data) savvy.• Passion to try new things, learn quickly and work well with diverse backgrounds• Excellent interpersonal skills, self-motivated, dynamic and can-do attitude• Have enthusiasm and curiosity about the intersection of business, technology and data• English required (written and oral) Due to legal restrictions, immigration sponsorship is available only for EU/EFTA nationalities. All candidate with non EU/EFTA nationalities are encouraged to check out opportunities in countries where they can obtain a work permit. P&G is committed to providing equal opportunities in employment. We value diversity and we do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status. ',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Research\", \"Decisiveness\", \"Collaboration\", \"Enthusiasm\", \"Decision Making\", \"Information Technology\", \"Curiosity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Business Analytics\", \"Disabilities\", \"Tooling\", \"Data Explorers\", \"Diving\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Consumables\", \"Business Partnering\", \"Strategic Business Unit\", \"Analytical Techniques\", \"Activism\", \"M (Programming Language)\", \"Operations Research\", \"Knowledge-Based Systems\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Finance\", \"Equalization\", \"Deep Learning\", \"Design Thinking\", \"Economics\", \"Coloring\", \"Business Technologies\", \"Adoptions\"]',\n", + " 'languages': \"['English', 'Swati', 'Aragonese']\"},\n", + " {'company_id': '109',\n", + " 'job_title': 'data scientist (analytics)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.starmind.ai',\n", + " 'jobdescription_embedded': '[[-2.10179746e-01 1.94211572e-01 4.47810352e-01 7.11169317e-02\\n4.75101680e-01 -1.05349049e-01 1.71992742e-02 3.98088157e-01\\n-2.30169017e-02 -5.11718750e-01 7.56235421e-02 -2.83988595e-01\\n-1.85230911e-01 1.26160175e-01 2.60654427e-02 3.76901388e-01\\n2.39219233e-01 1.66433752e-01 -1.64665177e-01 4.03719902e-01\\n6.82031959e-02 -1.23662595e-02 4.69312072e-04 7.99202323e-01\\n4.52678859e-01 -5.14311492e-02 -5.81164770e-02 4.51204516e-02\\n-1.91704780e-01 -2.37781882e-01 4.67107028e-01 1.29429162e-01\\n-1.99123085e-01 -4.70910579e-01 -3.30480784e-02 5.50191179e-02\\n-2.50130266e-01 -8.57802406e-02 -5.99808469e-02 1.74275488e-01\\n-5.78484654e-01 -1.90715224e-01 -1.04086816e-01 8.43295828e-02\\n-2.80406743e-01 -3.33820581e-01 6.04574196e-02 2.06429362e-02\\n2.40011171e-01 7.22111315e-02 -5.37037671e-01 3.08836520e-01\\n-2.53518373e-01 -2.28790194e-01 2.30259091e-01 6.09373450e-01\\n6.41611144e-02 -3.96829188e-01 -5.92023313e-01 -2.99331665e-01\\n1.26928598e-01 -2.16440961e-01 5.64881526e-02 -4.84487444e-01\\n3.02383959e-01 4.54939082e-02 1.68502033e-01 2.86692649e-01\\n-7.07299292e-01 -1.54409632e-02 -2.36068189e-01 -8.47047567e-02\\n-4.60173845e-01 -4.59526964e-02 -3.45182002e-01 -2.48257481e-02\\n-1.54969990e-01 4.45691019e-01 7.67012537e-02 9.96287912e-03\\n-1.86111555e-01 3.12287122e-01 -3.07298243e-01 4.16275740e-01\\n1.97299033e-01 2.38001123e-01 1.79564059e-01 3.68592858e-01\\n-4.59829003e-01 4.30814475e-01 8.08612332e-02 -3.01364750e-01\\n3.06849778e-01 2.17004538e-01 4.63233650e-01 -2.33492181e-02\\n2.48216003e-01 6.17225543e-02 -3.62661004e-01 4.80409831e-01\\n3.23345959e-01 -4.47050422e-01 7.52894059e-02 -2.52340853e-01\\n1.33517101e-01 -4.06849869e-02 1.21368274e-01 1.29612103e-01\\n-2.82538176e-01 4.16292667e-01 2.06427872e-01 -1.66058794e-01\\n-1.18123874e-01 -3.88204098e-01 -2.27980241e-02 -9.65153519e-03\\n1.14265755e-01 9.73291248e-02 1.85215503e-01 7.00136125e-02\\n2.59798765e-01 1.67647064e-01 1.60188615e-01 8.25629354e-01\\n-9.63142812e-02 2.89463867e-02 -2.09348053e-01 2.80466080e-01\\n1.89862311e-01 -3.49973232e-01 3.00333560e-01 2.63654202e-01\\n5.76562509e-02 -1.60088286e-01 -2.74979770e-01 3.48088205e-01\\n-1.37138873e-01 -1.65909871e-01 -3.56268048e-01 2.07551032e-01\\n2.50931025e-01 -3.54777217e-01 7.02439666e-01 1.09080330e-01\\n2.14200258e-01 -1.49468314e-02 5.35254218e-02 -2.13143051e-01\\n-1.21867314e-01 1.56842902e-01 5.52795045e-02 1.73762649e-01\\n-2.93830097e-01 -1.87693939e-01 -1.30972311e-01 5.32020442e-02\\n-5.78639627e-01 1.16341837e-01 -1.43634155e-04 -1.13525558e-02\\n1.67789310e-01 -5.14701083e-02 -3.08998555e-01 7.22464696e-02\\n-1.95161492e-01 -1.12387687e-01 1.67239934e-01 4.42371845e-01\\n-1.58010542e-01 2.87146419e-01 2.40565613e-02 -8.20622593e-02\\n7.88658977e-01 2.06482381e-01 2.10094750e-01 4.71047871e-03\\n3.19060683e-01 9.82624292e-03 1.50462583e-01 2.64285922e-01\\n-7.66696811e-01 2.24359229e-01 -9.21086743e-02 -2.98248351e-01\\n1.69284493e-01 -5.46119586e-02 3.13757896e-01 -2.64960140e-01\\n1.08908117e-01 -1.23104624e-01 -3.11451107e-01 -2.40551606e-01\\n-3.41877222e-01 -1.28749665e-02 3.58161598e-01 -4.83628213e-01\\n-1.18165538e-01 1.74724907e-01 -4.99271095e-01 -1.72453731e-01\\n1.00684166e-01 7.62574077e-02 1.35376096e-01 1.17276490e-01\\n-1.45077333e-01 -6.31760240e-01 -2.76954491e-02 -3.99203956e-01\\n-4.77119029e-01 6.05513379e-02 -4.18557227e-01 3.05402398e-01\\n7.10128322e-02 -1.20502442e-01 -1.78107440e-01 2.30716959e-01\\n-2.54188061e-01 8.04420337e-02 1.49276182e-02 4.55989689e-02\\n1.75669566e-01 7.05859736e-02 -3.80026639e-01 3.31154436e-01\\n-8.17083046e-02 6.78580821e-01 8.06134045e-02 -7.87013173e-01\\n5.94534278e-01 3.05935383e-01 -7.68897533e-02 -4.81723517e-01\\n5.56069195e-01 -2.29369015e-01 -1.89763397e-01 2.91056968e-02\\n-3.97436827e-01 -4.08761621e-01 2.73921907e-01 -5.71240149e-02\\n-2.05789596e-01 4.73918676e-01 1.10384524e-01 1.47889242e-01\\n2.53278315e-01 -3.11583638e-01 -1.28919750e-01 1.26212656e-01\\n-6.04721084e-02 -2.50511438e-01 -5.87294340e-01 -7.72306025e-02\\n-1.99988768e-01 -3.08492422e-01 -6.03672080e-02 -3.58885109e-01\\n-1.89634860e-01 -3.80856961e-01 -2.33501524e-01 3.06740940e-01\\n2.92243481e-01 8.06134567e-02 -1.22002319e-01 6.37357235e-02\\n2.66681202e-02 -7.78093159e-01 -2.43456531e-02 8.75557885e-02\\n5.14803529e-01 1.88636243e-01 2.23282859e-01 -7.33380467e-02\\n1.30144402e-01 6.51920974e-01 -1.97757870e-01 -3.17990124e-01\\n1.66064978e-01 3.08942735e-01 -2.14497242e-02 -1.34855613e-01\\n7.25394785e-02 4.26286757e-01 -3.86969805e-01 8.80723000e-02\\n4.14319038e-02 -2.09634185e-01 4.36686635e-01 -4.37591597e-02\\n-3.27730954e-01 -1.15854472e-01 -1.94023311e-01 9.71607342e-02\\n-5.63966274e-01 -3.78041863e-01 5.32606244e-01 2.39405975e-01\\n2.10919052e-01 5.64445630e-02 3.23486105e-02 -2.33842209e-02\\n-2.35300094e-01 -3.13792646e-01 3.14882666e-01 1.14036284e-01\\n9.17684957e-02 1.97435349e-01 3.54253761e-02 -6.28795326e-01\\n-3.45707703e+00 -1.40250266e-01 2.66815454e-01 -1.74149483e-01\\n1.18733853e-01 -2.24343985e-02 4.15387098e-03 -1.41916215e-01\\n-3.16568702e-01 7.11792558e-02 -1.43641040e-01 -2.30840474e-01\\n5.55182472e-02 2.49967009e-01 1.21269159e-01 1.39162913e-01\\n2.33872563e-01 -1.97353989e-01 -9.31975469e-02 2.96579003e-01\\n-1.92320481e-01 -5.83225429e-01 1.63121238e-01 -1.32989911e-02\\n1.93724096e-01 2.93803692e-01 -1.54656455e-01 -2.48165220e-01\\n-2.07820937e-01 -2.17830285e-01 6.53106123e-02 -2.76642561e-01\\n-1.56589165e-01 3.15363616e-01 2.55629003e-01 4.53668274e-02\\n5.58210015e-02 -3.89792979e-01 -1.80715233e-01 -4.64159369e-01\\n3.54249813e-02 -5.17889500e-01 1.66600384e-02 -1.99917495e-01\\n8.24899256e-01 -2.76604742e-01 1.46714419e-01 9.83523726e-02\\n2.15099514e-01 4.38738987e-02 1.14830293e-01 6.81909323e-02\\n-1.61824286e-01 -2.23032728e-01 -1.95522845e-01 -1.36374190e-01\\n6.10514045e-01 3.66834551e-01 -3.70142311e-02 -1.12815261e-01\\n1.70202836e-01 -2.26860926e-01 -4.04349864e-01 -2.30926380e-01\\n-9.46606845e-02 -2.99577475e-01 -5.26724339e-01 -3.45891416e-01\\n-1.07495070e-01 -1.42220378e-01 -1.62838548e-01 5.81643462e-01\\n-4.00863796e-01 -3.24613065e-01 -1.02602258e-01 -4.29318726e-01\\n2.85477668e-01 -2.08131433e-01 -2.74303518e-02 -1.73406973e-01\\n-3.50050002e-01 -5.66657543e-01 -2.20690109e-02 -7.50655681e-02\\n-1.60913914e-01 -4.17465508e-01 1.39559964e-02 -7.89035857e-02\\n-2.75966078e-01 -5.95266819e-01 3.95969659e-01 8.97488445e-02\\n2.76108086e-01 2.31478781e-01 3.34949255e-01 2.43235826e-02\\n3.84296954e-01 -3.48085389e-02 -1.04335777e-01 -2.52733678e-01\\n7.90352970e-02 6.24209642e-05 4.70604599e-01 -3.00321668e-01\\n-3.01844254e-02 7.38041550e-02 -2.16567382e-01 6.17171451e-03\\n3.73950481e-01 -5.70871271e-02 3.21425423e-02 -9.31534469e-02\\n3.58094007e-01 -2.15443060e-01 -9.59355980e-02 1.39634430e-01\\n1.64284959e-01 5.48558414e-01 2.22381204e-04 -4.10339385e-01\\n-5.49609214e-02 5.39321661e-01 -1.71384424e-01 4.04147245e-02\\n-2.52790809e-01 6.71408698e-03 -1.73354775e-01 3.31684709e-01\\n2.29939688e-02 -2.67501891e-01 -1.50031552e-01 -1.64433479e-01\\n-1.29732117e-01 3.56378138e-01 2.89455205e-01 -9.87644494e-03\\n5.33621423e-02 -3.33533257e-01 -1.46737382e-01 2.02087820e-01\\n2.87780106e-01 4.85582888e-01 1.42497241e-01 -2.30159491e-01\\n-1.54986531e-01 3.27715755e-01 -3.05212103e-02 6.83273375e-02\\n-2.77411401e-01 9.84354913e-02 -5.60426474e-01 -2.45150685e-01\\n-3.40586960e-01 -4.57471818e-01 3.09908420e-01 2.96390802e-01\\n1.93297327e-01 -2.79567353e-02 1.68242715e-02 -4.84814733e-01\\n2.53559619e-01 2.29311198e-01 8.67401734e-02 9.65577886e-02\\n-1.83367599e-02 4.81751442e-01 -1.77990459e-02 -1.51028335e-01\\n-6.13336265e-02 4.96961474e-02 -1.62863940e-01 -1.28857881e-01\\n1.36013746e-01 -5.56048393e-01 -1.21822193e-01 4.01461422e-01\\n1.78361565e-01 -2.41204500e-01 -3.50371778e-01 2.38098100e-01\\n-7.46901482e-02 -1.38120472e-01 -3.01481009e-01 -7.78522938e-02\\n3.64065111e-01 6.05226010e-02 2.70697415e-01 -3.44998896e-01\\n-1.00081660e-01 3.53457332e-02 -1.76378191e-01 4.54855680e-01\\n-2.79353037e-02 -6.55786097e-02 -2.75551766e-01 -1.15903333e-01\\n3.84312302e-01 -1.62750870e-01 -7.71391690e-02 2.01012418e-02\\n1.44687697e-01 -2.52256334e-01 -4.08395171e-01 5.50485030e-02\\n-2.44182274e-02 -2.89785624e-01 -4.54139113e-02 2.05413848e-01\\n3.20607126e-02 1.79573059e-01 -6.64706588e-01 -2.79706538e-01\\n-3.47172827e-01 -1.57855153e-01 1.35471314e-01 -3.32170874e-01\\n1.11616030e-02 -1.51936859e-01 -5.85460424e-01 2.02037826e-01\\n-2.33857602e-01 -1.67000219e-01 1.52982950e-01 1.88255444e-01\\n-2.88002372e-01 -2.15857163e-01 7.07886815e-02 3.00652683e-01\\n-3.01800817e-01 -3.06582063e-01 3.27955782e-02 -9.49103117e-01\\n1.51237726e-01 1.06959537e-01 -2.73427993e-01 1.29867047e-01\\n-1.25954658e-01 -5.67539513e-01 -2.70187901e-03 -4.66065466e-01\\n-7.62172639e-02 4.26074117e-03 -2.75106043e-01 -2.68526882e-01\\n1.25605613e-01 -3.63534875e-02 -3.38201106e-01 5.90385437e-01\\n-2.39713579e-01 2.97159076e-01 -2.00981051e-01 6.32197931e-02\\n-4.05335166e-02 -2.06939816e-01 4.79787141e-02 -3.77410114e-01\\n-4.50367928e-01 -2.79206514e-01 -3.24430555e-01 -2.88720042e-01\\n7.29513168e-02 -4.49980557e-01 -9.38795656e-02 1.27719730e-01\\n3.08707356e-01 3.52661163e-02 -6.69995993e-02 -3.36333185e-01\\n1.20317079e-01 -6.10910594e-01 -1.00885108e-02 -3.98753732e-02\\n-1.88447028e-01 -6.01781756e-02 1.39500916e-01 6.99954331e-02\\n2.14711025e-01 -1.92881435e-01 2.83252746e-01 -5.04460454e-01\\n-1.41100675e-01 6.52415305e-03 6.14316985e-02 -1.26327246e-01\\n1.57054693e-01 -5.10943055e-01 3.32886241e-02 4.04096216e-01\\n1.84172601e-01 7.86176044e-03 1.84053227e-01 -9.64846089e-02\\n1.38454735e-02 3.60264897e-01 -2.45273083e-01 7.34435469e-02\\n7.05817223e-01 1.05272770e-01 1.81264430e-01 1.20723128e-01\\n1.86774805e-01 2.46158153e-01 5.45635581e-01 4.24904302e-02\\n-7.89920539e-02 2.18962252e-01 3.06327436e-02 -4.10098195e-01\\n-1.86287947e-02 4.25301977e-02 -2.49770403e-01 -4.11494434e-01\\n6.35590732e-01 4.15606707e-01 -5.70702791e-01 -1.08167760e-01\\n-1.22683778e-01 -8.49220827e-02 2.85244644e-01 -3.27986740e-02\\n-9.70615149e-02 -2.50389948e-02 4.42076862e-01 -1.58618227e-01\\n1.66108638e-01 4.65281546e-01 -1.79365739e-01 -2.17780143e-01\\n-8.96031857e-02 2.29684085e-01 2.10076999e-02 6.10326648e-01\\n-2.15045214e-01 3.84999216e-01 -4.10412960e-02 3.08759734e-02\\n-7.95201883e-02 2.24118471e-01 2.07123190e-01 1.27009720e-01\\n3.00675213e-01 -1.00370824e-01 4.99070823e-01 4.32720244e-01\\n1.68665707e-01 4.49966490e-01 3.20463508e-01 1.01850949e-01\\n3.92724097e-01 5.18780708e-01 3.37164134e-01 1.85537606e-01\\n-2.94519439e-02 1.85228959e-01 1.93825006e-01 -4.55904901e-02\\n4.29522157e-01 3.75671625e-01 5.81753589e-02 8.86701941e-01\\n3.31846833e-01 4.05257344e-01 7.13368833e-01 -6.92930818e-01\\n-4.08669174e-01 2.39533588e-01 5.05235851e-01 -3.08072239e-01\\n3.77252102e-02 1.59508780e-01 -1.69029504e-01 2.58641511e-01\\n-4.29258943e-01 -2.63436735e-01 -1.86553225e-02 2.78958142e-01\\n-5.74850589e-02 -2.66052961e-01 -2.77419329e-01 1.05503559e-01\\n-2.24513933e-02 4.01349887e-02 -4.79153514e-01 -1.60319269e-01\\n-2.52722114e-01 -1.18680969e-01 -1.19232081e-01 -9.07109380e-02\\n3.99960987e-02 -3.42873454e-01 1.81955472e-02 -3.69969048e-02\\n2.98058689e-01 -1.79092824e-01 -1.20981731e-01 -1.38574302e-01\\n2.70347595e-01 2.77954906e-01 4.83906150e-01 -1.87783390e-02\\n9.00344551e-02 -2.30700612e-01 -2.22805068e-01 1.74296543e-01\\n1.16220593e-01 2.99101267e-02 1.43809114e-02 1.35847509e-01\\n-1.87098280e-01 -2.41374403e-01 2.00182676e-01 3.00834507e-01\\n-4.77595150e-01 -4.74525802e-02 -1.81763530e-01 1.72846913e-01\\n1.10419430e-01 2.42714167e-01 -1.92542121e-01 1.40764371e-01\\n-2.17416227e-01 -3.97935569e-01 2.40891814e-01 -1.31820142e-01\\n-9.15689915e-02 1.11068368e-01 3.31274390e-01 1.43759787e-01\\n-2.63186932e-01 -4.85299528e-03 -1.56927884e-01 2.31594503e-01\\n-3.17130610e-02 2.27894485e-01 -1.29941285e-01 -4.01979715e-01\\n-1.83858126e-01 1.13327384e-01 -1.76448286e-01 1.18976891e-01\\n1.83977336e-02 3.92277896e-01 1.29125327e-01 2.79327072e-02\\n5.19391060e-01 1.68753807e-02 -2.69162893e-01 -2.31084645e-01\\n-1.80346817e-01 -1.44831434e-01 -1.77088588e-01 2.68146582e-02\\n1.62462294e-01 -3.55977535e-01 -8.23326260e-02 -1.59328684e-01\\n-1.95772126e-02 -3.44549417e-01 7.99285024e-02 -3.76709290e-02]]',\n", + " 'job_description': \"At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology's computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people's advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from AirBnB, Twitter, SalesForce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! What You Will Do You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Who You Are You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization (for example using matplotlib or Grafana). You are always curious to try out new tools and libraries for the analysis and visualization of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. The Bounty A dynamic, young company where input is welcomed and acted upon High level of personal responsibility and independence A challenging and exciting mission within an innovative and multi-cultural environment The opportunity to work with some of the smartest and most innovative people in the market If this sounds like you, let’s solve the riddle and apply (written in English or German) - We’re very excited to meet you.\",\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Proactivity\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MySQL\", \"NoSQL\", \"Matplotlib\", \"Accessioning\", \"Advising\", \"Corporate Communications\", \"Tooling\", \"Agility\", \"Acting\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Levelling\", \"Data Visualization\", \"Machine Learning Methods\", \"Personalization\", \"Machine Learning Algorithms\", \"Scalability\", \"Human Intelligence\", \"Electronic Data Processing\", \"Humanism\", \"Grafana\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'full-stack software engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " 'job_description': \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " 'soft_skills': '[\"Innovation\", \"Operations\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Letzeburgesch', 'Herero', 'Malagasy']\"},\n", + " {'company_id': '54',\n", + " 'job_title': 'devops engineer, genedata biologics',\n", + " 'location': 'Basel',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.genedata.com',\n", + " 'jobdescription_embedded': '[[-1.69523150e-01 3.19825441e-01 4.08377171e-01 -1.59712415e-02\\n5.68628192e-01 -9.49690565e-02 -7.24607557e-02 3.66208315e-01\\n-4.60393503e-02 -4.28351879e-01 -3.31419744e-02 -2.50325799e-01\\n-7.22204745e-02 1.58022121e-01 1.21643066e-01 4.33333069e-01\\n3.59716475e-01 1.38958231e-01 -1.41149908e-01 3.54331344e-01\\n1.16978735e-02 -1.60774738e-01 5.42537011e-02 8.68497312e-01\\n2.75335133e-01 1.45401573e-02 -1.62993923e-01 -7.04530030e-02\\n-2.31061846e-01 -1.64121673e-01 4.84606564e-01 9.13866237e-03\\n-1.27304882e-01 -3.87431860e-01 1.09087497e-01 7.55339116e-02\\n-2.90875196e-01 -2.20784545e-02 -1.77963927e-01 1.17137887e-01\\n-5.03516197e-01 -2.82112539e-01 3.95090133e-02 -2.49374267e-02\\n-2.76795298e-01 -2.60850579e-01 1.13234401e-01 -4.90063578e-02\\n2.46764243e-01 1.06271856e-01 -6.41632140e-01 9.54470411e-02\\n-3.92902613e-01 -2.03401476e-01 3.48890334e-01 6.76024795e-01\\n4.53432351e-02 -4.12259459e-01 -5.74603975e-01 -3.81613165e-01\\n-2.14871932e-02 -1.28638238e-01 -1.21168774e-02 -3.35526526e-01\\n2.85394818e-01 5.93488924e-02 9.51724499e-02 2.60312736e-01\\n-8.69517267e-01 -7.31318593e-02 -2.48408496e-01 -1.49784712e-02\\n-3.99319410e-01 1.59207620e-02 -3.48359823e-01 -1.14956886e-01\\n-2.00684562e-01 4.74097431e-01 4.55482230e-02 1.49114236e-01\\n-2.45470256e-01 3.21167827e-01 -2.38628417e-01 4.13461566e-01\\n2.34357372e-01 1.85906395e-01 2.36392260e-01 4.26935554e-01\\n-4.62065816e-01 4.72172439e-01 2.21478701e-01 -2.21754551e-01\\n2.32138008e-01 7.60732293e-02 3.30681264e-01 6.98821023e-02\\n1.65382236e-01 1.01575285e-01 -2.56095648e-01 2.76887953e-01\\n2.30976701e-01 -2.64768928e-01 5.61213121e-03 -1.44538015e-01\\n5.45544215e-02 -1.10821761e-02 2.10196767e-02 2.20088348e-01\\n-3.16050082e-01 3.71842891e-01 1.59433722e-01 -2.42536128e-01\\n-1.86201334e-01 -5.27682900e-01 -8.50154459e-02 1.02491066e-01\\n-1.05620902e-02 8.97506252e-05 2.21573114e-01 1.11803263e-02\\n3.18246007e-01 9.34616178e-02 6.69263303e-02 8.76152396e-01\\n-1.71973258e-01 -1.71828438e-02 -2.84300238e-01 2.41001695e-01\\n1.28416359e-01 -2.50951648e-01 1.52597442e-01 1.32525474e-01\\n-1.71166211e-02 1.18869869e-02 -2.56879926e-01 3.75991374e-01\\n1.03284232e-02 -1.94217950e-01 -2.47745812e-01 3.03407133e-01\\n-8.46239477e-02 -4.44703221e-01 5.85891724e-01 1.35878790e-02\\n1.47686258e-01 -1.38425946e-01 8.04063305e-02 -2.54765227e-02\\n-5.11916205e-02 1.79073185e-01 6.37496486e-02 1.63923562e-01\\n-3.39504004e-01 -3.48111272e-01 -1.78644717e-01 1.23850949e-01\\n-2.72248209e-01 1.78822011e-01 -3.27588432e-02 -1.18826777e-01\\n2.56015062e-01 1.27487481e-01 -3.06014478e-01 1.57511771e-01\\n-1.56176478e-01 -2.81034745e-02 -7.35240337e-03 3.73016775e-01\\n-2.00857997e-01 1.60982519e-01 -4.83869947e-02 -1.05689779e-01\\n5.22619963e-01 1.68064788e-01 2.05680311e-01 -6.08065166e-03\\n3.26771230e-01 -8.01899731e-02 2.63964891e-01 6.32661358e-02\\n-6.86229527e-01 3.83514404e-01 2.94585060e-03 -1.77081466e-01\\n1.46837503e-01 -9.34691131e-02 3.69692981e-01 -3.09130073e-01\\n9.42510664e-02 -1.38732284e-01 -4.37074184e-01 -4.01054084e-01\\n-1.81613237e-01 -3.19040716e-02 3.44761431e-01 -4.89618987e-01\\n-1.55983686e-01 1.90277025e-01 -5.17658710e-01 -1.88104272e-01\\n1.76180184e-01 2.99023360e-01 1.38880163e-01 3.95734422e-02\\n-2.26868361e-01 -6.40342236e-01 5.20347580e-02 -5.40531456e-01\\n-2.17988387e-01 5.90698645e-02 -4.13146973e-01 1.92284137e-01\\n-2.23988779e-02 7.04785287e-02 -8.37423801e-02 7.38143474e-02\\n-3.72117341e-01 -1.39347106e-01 7.83644468e-02 3.05564664e-02\\n3.03632915e-01 6.64602220e-02 -3.07497501e-01 4.77437377e-01\\n-1.93293378e-01 5.23281038e-01 2.01012239e-01 -8.90274763e-01\\n5.66449642e-01 4.49444413e-01 -4.81768185e-03 -4.37739789e-01\\n5.28448462e-01 -4.74673837e-01 -1.03414550e-01 8.89598355e-02\\n-3.82881224e-01 -2.53200322e-01 1.85828611e-01 -1.85699940e-01\\n-2.41217613e-01 5.36592484e-01 -5.31897619e-02 1.22261703e-01\\n3.63249660e-01 -3.70205611e-01 -1.10581309e-01 1.94475800e-03\\n-2.10986547e-02 -2.90621281e-01 -5.64029157e-01 -4.57195640e-02\\n-7.24885762e-02 -4.23884928e-01 -1.44336700e-01 -4.21934664e-01\\n-1.26473099e-01 -2.77486354e-01 -2.64028639e-01 1.71844274e-01\\n2.14582264e-01 3.01922504e-02 -1.10108688e-01 1.08907156e-01\\n1.01692555e-02 -7.27389514e-01 9.57744867e-02 1.35612622e-01\\n4.09266233e-01 2.26215854e-01 1.89594090e-01 -1.01695418e-01\\n1.44564763e-01 6.04518414e-01 -2.81608939e-01 -3.42316628e-01\\n1.03332669e-01 1.82519436e-01 1.06046526e-02 -9.40589979e-02\\n1.84142053e-01 2.90192544e-01 -3.21844876e-01 3.32640037e-02\\n-4.79082018e-02 -8.91682953e-02 3.91070455e-01 -1.10669136e-01\\n-3.82619083e-01 -1.83560997e-01 -1.18094712e-01 5.58090247e-02\\n-6.13374770e-01 -2.07464233e-01 4.34046239e-01 1.14938281e-01\\n1.53022677e-01 2.36911938e-01 1.66698262e-01 2.57026441e-02\\n-3.07152778e-01 -3.37706268e-01 3.22429717e-01 1.36915356e-01\\n1.10930718e-01 2.86263637e-02 -5.16535752e-02 -6.58324599e-01\\n-2.94787788e+00 -1.13596104e-01 1.55140787e-01 -2.68149793e-01\\n4.23849642e-01 -1.01496845e-01 1.56961530e-01 3.38395797e-02\\n-2.26592660e-01 2.16750465e-02 -6.64617643e-02 -1.17585056e-01\\n8.07621777e-02 2.02082783e-01 3.52854803e-02 1.51310563e-01\\n1.45469487e-01 -2.87697434e-01 5.91152571e-02 3.17447037e-01\\n-1.35505766e-01 -7.96962500e-01 1.88196644e-01 -5.28429709e-02\\n1.84746236e-01 2.01750100e-01 -5.27199149e-01 -8.77359882e-02\\n-1.97188050e-01 -1.70902252e-01 1.84279121e-02 -3.15267026e-01\\n-1.75675586e-01 1.82019949e-01 2.47381270e-01 -1.45268992e-01\\n-3.07186581e-02 -3.58940303e-01 -1.28393680e-01 -6.49040103e-01\\n2.59566069e-01 -7.25894213e-01 2.77758017e-02 -1.91367775e-01\\n6.65437818e-01 -2.75763273e-01 2.77564730e-02 9.88833010e-02\\n2.61541367e-01 1.76414967e-01 1.13582619e-01 2.15509683e-02\\n-2.31556833e-01 -3.33618730e-01 -1.23900972e-01 -3.02786499e-01\\n5.92054844e-01 5.12880743e-01 -2.06457883e-01 8.91586617e-02\\n7.66231120e-02 -3.57572079e-01 -4.83876497e-01 -2.51234233e-01\\n-1.15615904e-01 -1.29324615e-01 -6.97894454e-01 -4.43426609e-01\\n-2.24776328e-01 -1.03771590e-01 -1.23413235e-01 7.26536989e-01\\n-3.59957755e-01 -3.65983427e-01 -5.80110252e-02 -6.78676486e-01\\n3.52647483e-01 -2.47136682e-01 5.68761304e-02 -3.23621809e-01\\n-2.39675656e-01 -3.83464158e-01 1.98912114e-01 -6.74836263e-02\\n-8.32306668e-02 -2.07519516e-01 -4.63842601e-02 -1.47503972e-01\\n-2.30184972e-01 -5.09384632e-01 5.01326859e-01 1.71006441e-01\\n4.67567086e-01 1.60499007e-01 3.92027318e-01 -1.00192137e-01\\n2.98035622e-01 8.46222192e-02 -9.56611037e-02 -3.56285751e-01\\n1.73924029e-01 1.13965817e-01 4.96148139e-01 -1.86498225e-01\\n2.65002064e-03 1.29890129e-01 -2.96549976e-01 -1.68262899e-01\\n3.06311429e-01 7.31500089e-02 -1.15258366e-01 -8.87201279e-02\\n3.74505043e-01 -4.39236015e-01 -1.52918696e-01 1.48669571e-01\\n1.28851488e-01 6.88226461e-01 -2.10308153e-02 -4.55970675e-01\\n-9.83574465e-02 5.23547292e-01 3.82679291e-02 4.81955670e-02\\n-1.07181355e-01 8.68616998e-02 -1.44232571e-01 3.35872412e-01\\n4.05211858e-02 -2.31066555e-01 -3.20666611e-01 -1.04577422e-01\\n-7.07095563e-02 3.99901092e-01 6.57235086e-02 1.71039283e-01\\n1.94352940e-02 -3.90448689e-01 -1.85824871e-01 2.68064499e-01\\n1.37210995e-01 5.10089874e-01 1.44069463e-01 -2.07786769e-01\\n1.27427187e-02 4.02851552e-01 -2.08572417e-01 3.29023868e-01\\n-1.65273160e-01 1.23706207e-01 -5.59564531e-01 -2.06682444e-01\\n-3.34111184e-01 -3.55124176e-01 1.57965004e-01 3.57743979e-01\\n1.94206730e-01 -2.51299646e-02 4.80717160e-02 -3.92621815e-01\\n2.09711015e-01 2.00897247e-01 9.55500379e-02 3.12888958e-02\\n-5.29631451e-02 6.57721221e-01 3.23811807e-02 -1.92982942e-01\\n-1.16225630e-01 5.25392368e-02 -1.84131548e-01 -1.14621937e-01\\n2.23191649e-01 -5.27357459e-01 -1.49204820e-01 4.74297851e-01\\n9.38007459e-02 -1.14794165e-01 -1.49673715e-01 3.27015877e-01\\n6.37401342e-02 -1.77546769e-01 -3.96411419e-01 2.68395469e-02\\n3.33310187e-01 9.21128988e-02 3.22574437e-01 -5.36340415e-01\\n-2.91029643e-02 4.87420112e-02 7.38196075e-02 4.60687846e-01\\n2.19637901e-02 -2.15530805e-02 -1.32633284e-01 -1.55590519e-01\\n4.62777555e-01 -3.72105464e-03 -1.00493520e-01 -4.53177616e-02\\n7.67569989e-02 -1.24546908e-01 -4.76082414e-01 5.17511554e-02\\n-4.20186371e-02 -1.91390350e-01 -5.41892536e-02 1.72158703e-01\\n1.55116335e-01 8.76512975e-02 -5.55608451e-01 -1.64522350e-01\\n-1.74549773e-01 1.38918832e-01 2.39093155e-02 -4.96697724e-01\\n7.27561209e-03 -2.43933462e-02 -6.17063820e-01 2.54291773e-01\\n-2.33470827e-01 -5.64701557e-02 2.41642654e-01 4.68929261e-02\\n-2.94498593e-01 -9.77524146e-02 1.47781312e-01 3.06969166e-01\\n-2.67386794e-01 -3.80507767e-01 -5.44847921e-02 -9.69862342e-01\\n1.22737214e-01 -7.90049955e-02 -1.99114531e-01 1.92134291e-01\\n6.50363117e-02 -7.41300941e-01 1.89023435e-01 -3.76494527e-01\\n-1.97161078e-01 2.91096698e-02 -3.17306697e-01 -3.17908257e-01\\n1.66587859e-01 -1.33196592e-01 -2.88195312e-01 3.48298669e-01\\n-3.39055449e-01 3.33755374e-01 -1.27165705e-01 4.14873064e-02\\n1.73163205e-01 -2.78643727e-01 1.99293107e-01 -3.32616031e-01\\n-4.33565497e-01 -2.82114834e-01 -3.86240929e-01 -4.26141918e-01\\n-6.16344586e-02 -3.24924529e-01 -7.15945959e-02 -1.05166808e-02\\n3.72518063e-01 1.52537031e-02 -1.75773308e-01 -2.52748489e-01\\n1.44567475e-01 -5.36238730e-01 1.26344442e-01 -6.13016635e-02\\n-4.55752611e-02 -8.04835558e-02 3.27935874e-01 9.76392329e-02\\n2.84355104e-01 -3.07380259e-01 4.32286590e-01 -2.37394571e-01\\n-3.94829959e-01 -2.45231315e-01 1.72596481e-02 3.73986922e-02\\n3.19693595e-01 -5.05958796e-01 -6.56296983e-02 3.21973532e-01\\n2.77238131e-01 2.13909764e-02 1.15014136e-01 -2.02715784e-01\\n4.80063893e-02 1.85811490e-01 -5.17018437e-01 1.25343591e-01\\n8.29329133e-01 1.13384418e-01 9.07536075e-02 2.62059003e-01\\n9.46845561e-02 3.20416510e-01 5.42597294e-01 -5.31152114e-02\\n-1.66910067e-01 3.73732090e-01 1.42731696e-01 -4.30932164e-01\\n-2.80078888e-01 3.38966586e-02 -2.20240861e-01 -5.17871976e-01\\n6.49480700e-01 3.91274929e-01 -5.03449917e-01 -2.61304379e-01\\n-1.82487726e-01 -1.08475082e-01 2.88784266e-01 -1.67719841e-01\\n-4.73861173e-02 -1.14523217e-01 3.66246521e-01 -2.38902103e-02\\n2.72657275e-01 6.03528917e-01 -5.82956448e-02 -3.80357176e-01\\n-1.36785328e-01 1.49857789e-01 4.37492058e-02 3.66552532e-01\\n-1.14739865e-01 1.75508738e-01 4.97278199e-02 2.25173786e-01\\n-2.79858649e-01 1.22312024e-01 5.75552583e-02 6.91215694e-02\\n1.65868253e-01 1.04539692e-01 5.77757418e-01 4.72931981e-01\\n2.81918913e-01 4.73100662e-01 2.80699372e-01 5.18417880e-02\\n4.94774133e-01 5.43698668e-01 4.09346581e-01 1.77940018e-02\\n-1.52973197e-02 1.87120229e-01 1.25025660e-01 -2.97119953e-02\\n3.76255244e-01 4.01301026e-01 1.44196153e-01 9.29425299e-01\\n2.27006346e-01 3.47128659e-01 7.18745470e-01 -5.71046770e-01\\n-3.85482609e-01 3.09947133e-02 6.50817633e-01 -5.86200237e-01\\n6.00607879e-02 7.66484439e-02 -2.67559409e-01 1.98509902e-01\\n-5.09359181e-01 -2.18710139e-01 6.67666271e-02 1.15288764e-01\\n-2.33700965e-02 -8.68032649e-02 -1.47720233e-01 1.34418473e-01\\n-1.29581600e-01 -2.12148011e-01 -4.32810158e-01 -1.93697363e-01\\n-2.10570648e-01 6.46115690e-02 -6.80867583e-02 -2.24780500e-01\\n3.40802670e-02 -3.48901033e-01 9.93169993e-02 1.37158064e-02\\n4.18153763e-01 -8.58591422e-02 -3.14194709e-03 -3.03081013e-02\\n3.09955537e-01 2.11959928e-01 6.69453025e-01 3.56251970e-02\\n1.81093216e-01 -2.59902269e-01 -2.53749311e-01 2.10558414e-01\\n1.00429058e-01 7.98162669e-02 4.53711972e-02 2.86670268e-01\\n-2.27514058e-01 -1.34462893e-01 8.05089548e-02 2.75910228e-01\\n-3.54013383e-01 -6.96183890e-02 -1.14449874e-01 7.83801526e-02\\n8.61885250e-02 1.94722205e-01 -2.19921917e-01 7.18716383e-02\\n-1.76585138e-01 -4.37105119e-01 4.08015549e-01 -2.16989905e-01\\n-1.57977670e-01 -3.21622491e-02 4.04590786e-01 2.10182548e-01\\n-3.23165059e-01 5.33735007e-02 -9.20294821e-02 2.10100710e-01\\n4.23870832e-02 2.55110741e-01 -2.21111506e-01 -3.59550834e-01\\n-3.04808259e-01 2.57264793e-01 -3.44090760e-02 5.70381880e-02\\n-3.38903069e-02 4.98192042e-01 4.76068631e-02 -3.05652507e-02\\n5.36664009e-01 -1.87651306e-01 -3.24882090e-01 -3.15354407e-01\\n-1.81762889e-01 -1.97047099e-01 -1.28536746e-01 -4.99667674e-02\\n2.14765519e-01 -3.67096156e-01 -1.18522085e-01 -1.96574420e-01\\n4.29852679e-03 -3.50048751e-01 -3.63499187e-02 -9.89696681e-02]]',\n", + " 'job_description': 'The Position We are looking for a qualified DevOps Engineer who is managing the deployment and customization of our successful Genedata Biopharma platform. Thousands of scientists across the globe work with our highly innovative platform in order to develop new, groundbreaking treatments for the most severe diseases. As part of a professional and dedicated engineering team, you will enable these scientists to fulfill their mission. Genedata’s Biopharma platform represents the very backbone of the data capturing and analysis workflows of the most important biopharma and biotech companies. It is installed either on premises or hosted in the cloud and constantly interoperates with numerous instruments and customer IT systems. As DevOps Engineer, you ensure the smooth and continuous running of this central piece of infrastructure and you configure the system to adapt it to customer specific needs. The focus of your responsibilities will be on our enterprise platforms Genedata Biologics® and Genedata Bioprocess®. This full-time position is based at our head offices in Basel, Switzerland. A part time employment (80-100%) is also an option. Key Responsibilities Manage the deployment of products, upgrades and customizations Develop customer specific configurations in SQL Use web services and scripts to integrate with customer IT systems Monitor, analyze, and tune the performance of installations Implement schedules for system backups and archive operations Develop automatic packaging and deployment procedures Administer Biopharma Platform installations in the cloud Consult and support customers with the migration of legacy data Document and communicate your work within the team and to other stakeholders Your Profile BSc or MSc in computer science, or related fields, or comparable on-the-job experience Good understanding of Linux systems Fluency in shell scripting and / or other scripting languages Experience with SQL and relational database systems Oracle DBA experience is an advantage Knowledge of cloud environments such as AWS or Azure is a plus Experience with web application servers, like Apache and Tomcat, is desirable Strong interpersonal skills and the motivation to learn continuously Good written and verbal communication and presentation skills in English The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Biopharma Platform As the market leader in biopharma R&D digitalization, our platform enables biopharma companies to develop the next generation of innovative medicines. It is uniquely designed to digitalize and streamline biopharma discovery, development and manufacturing processes and dramatically improve overall productivity, with the goal of identifying and developing novel therapeutics to address unmet medical needs. The award-winning Genedata Biopharma platform is used across the globe to achieve operational excellence by boosting the efficiency, throughput, and quality of biopharma R&D. It supports the entire end-to-end R&D workflow, from screening, protein engineering and optimization, expression, purification, characterization, analytics and QC, and developability assessment to upstream and downstream process development and drug formulation. The Genedata platform serves as an enterprise IT system that is at the core of complex biopharma discovery and development processes. Our customer base includes large biopharma and biotech companies, technology providers and contract research and manufacturing organizations. Genedata Biologics is a web application with an HTML/JavaScript-based presentation layer, a Java business-logic layer and an Oracle RDBMS-backed persistence layer. It is widely configurable, scalable, and extendable by third-party plug-ins. Are You Interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Legal authorization to work in the United States on a full-time basis for any employer is required. Genedata is an Equal Opportunity Employer.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Adaptability\", \"Professionalism\", \"Management\", \"Scheduling\", \"Communications\", \"Operations\", \"Integration\", \"Presentations\", \"Innovation\", \"Positivity\", \"Persistence\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Document Enterprise Platform\", \"MSC Software\", \"Shell Script\", \"Computer Science\", \"Life Sciences\", \"Business Workflow Analysis\", \"Collections\", \"Analytics\", \"Data Capture (SQL)\", \"Downstream Processing\", \"Informatics\", \"Customer Support Analyst\", \"Authorization (Computing)\", \"Streamlines\", \"Clinical Research Informatics\", \"Installation\", \"Bioprocess\", \"Customer Development\", \"Linux\", \"Layering\", \"Contract Research Organization\", \"Instrumentation\", \"Application Servers\", \"Medic\", \"HyperText Markup Language (HTML)\", \"System Monitoring\", \"System Monitor\", \"Web Services\", \"Presentation Layer\", \"Apache Tomcat\", \"Biology\", \"Boosting\", \"Digitization\", \"Equalization\", \"JavaScript (Programming Language)\", \"Scalability\", \"Operational Excellence\", \"Adapter Scripting Language\", \"Archives\", \"Database Systems\", \"Pharmaceuticals\", \"Throughput\", \"Protein Engineering\", \"Process Development\", \"Relational Databases\", \"Language Experience Approach\", \"Scripting\", \"Workflows\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"DevOps\", \"Process Driven Development\", \"Business Logic\", \"Manufacturing Processes\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'bi data scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.53228360e-01 2.70658046e-01 3.72768700e-01 2.32876036e-02\\n4.73175436e-01 -3.48142348e-02 4.43848148e-02 1.15612105e-01\\n-1.16222799e-01 -4.17315096e-01 -8.69316757e-02 -2.73754179e-01\\n1.28849840e-03 -3.55053544e-02 9.30351615e-02 5.92164755e-01\\n2.60430247e-01 -7.29921386e-02 -1.43462941e-01 2.80759007e-01\\n1.13043152e-01 3.26854386e-03 -3.74928024e-03 6.28054202e-01\\n5.01266658e-01 -4.86189499e-02 -1.39927864e-01 8.10021942e-04\\n-2.83568472e-01 -2.93907404e-01 4.30700213e-01 1.90417618e-01\\n-2.04507038e-01 -1.39725327e-01 1.74223661e-01 2.21280828e-01\\n-2.68112808e-01 -2.18087304e-02 -4.55917045e-02 1.86636239e-01\\n-3.85784835e-01 -1.55839011e-01 -9.36613530e-02 -2.32908335e-02\\n-3.20058405e-01 -4.34260011e-01 7.72188464e-03 -1.49482802e-01\\n1.44545674e-01 3.55114006e-02 -4.73832309e-01 3.59030306e-01\\n-2.00130537e-01 -9.85864550e-02 1.77193940e-01 7.32493639e-01\\n1.67759985e-01 -4.77290511e-01 -3.17661017e-01 -2.89300948e-01\\n9.07400995e-02 -1.19298771e-01 1.74425706e-01 -2.26449937e-01\\n4.98205721e-01 -6.78268895e-02 -3.81489769e-02 3.00187409e-01\\n-7.68963575e-01 -7.00643808e-02 -5.04122317e-01 2.91034747e-02\\n-5.01514077e-01 7.15237260e-02 -4.92114902e-01 -2.41598397e-01\\n-9.69854221e-02 4.31301624e-01 -7.54776236e-04 6.35031760e-02\\n-1.80004895e-01 1.99867979e-01 -2.94893831e-01 2.20430288e-02\\n3.28274995e-01 2.59656787e-01 3.95150661e-01 2.70732582e-01\\n-6.38971746e-01 3.42817813e-01 3.59557033e-01 -3.76106590e-01\\n2.06228048e-01 9.56357196e-02 3.87821704e-01 1.75026238e-01\\n8.30380395e-02 2.68665910e-01 -9.66925621e-02 1.91437840e-01\\n2.54116654e-01 -1.83228984e-01 8.51040483e-02 -1.88241843e-02\\n-8.70741010e-02 -8.95733014e-02 -5.79835381e-03 2.88229942e-01\\n-3.43010694e-01 4.16385770e-01 8.14998224e-02 -2.59376943e-01\\n-3.81637141e-02 -6.87244773e-01 -1.66088745e-01 -4.76081930e-02\\n1.15614906e-01 3.20919931e-01 2.44868383e-01 3.19793552e-01\\n1.23230316e-01 1.56525541e-02 2.46658728e-01 9.02533233e-01\\n-9.97713581e-02 -1.64314806e-02 -2.10395560e-01 3.40982646e-01\\n1.42285347e-01 -2.10636824e-01 1.73530221e-01 1.20349862e-01\\n-8.79385024e-02 -1.56978935e-01 -3.71599793e-01 2.74278283e-01\\n-1.30815074e-01 -2.65477896e-01 -2.89545596e-01 1.94819599e-01\\n-1.87495843e-01 -5.32740116e-01 5.44590294e-01 -5.73449694e-02\\n1.75886855e-01 -1.19878463e-01 -1.06123216e-01 -8.35998356e-02\\n-7.90378358e-03 3.60378236e-01 1.56662241e-01 1.28044128e-01\\n-2.99494803e-01 -1.87499851e-01 -2.57826865e-01 3.22055310e-01\\n-2.90916920e-01 1.32908911e-01 -1.75493628e-01 -1.21953040e-01\\n2.12183386e-01 1.91341430e-01 -4.55967247e-01 2.18885571e-01\\n-3.78394686e-02 -4.14544851e-01 -9.25633982e-02 3.14621240e-01\\n-1.06092975e-01 1.59478530e-01 3.93269882e-02 -2.10023180e-01\\n6.58689678e-01 1.77641690e-01 2.58259654e-01 -5.77402720e-03\\n2.99216777e-01 -1.64266557e-01 2.54867494e-01 2.27145433e-01\\n-6.34104550e-01 4.94597346e-01 -1.26761124e-01 -2.15432465e-01\\n1.33578300e-01 7.28269517e-02 3.40186566e-01 -3.48915160e-01\\n5.40970527e-02 -1.18215978e-01 -2.79675275e-01 -4.62359458e-01\\n-2.73962826e-01 3.77700776e-02 3.60140741e-01 -4.67349023e-01\\n-1.37247844e-04 2.08999634e-01 -5.79505682e-01 -1.12369411e-01\\n1.40620053e-01 1.06221452e-01 1.42737046e-01 1.49640828e-01\\n-3.07473484e-02 -5.86120248e-01 1.15899861e-01 -5.32399535e-01\\n-5.11916637e-01 1.25192210e-01 -3.36365521e-01 1.50416896e-01\\n1.24839276e-01 -2.12065247e-03 -5.94098158e-02 1.74330920e-02\\n-3.43664169e-01 9.19923410e-02 2.26174876e-01 1.34943873e-01\\n2.85620898e-01 4.26782586e-04 -5.14031053e-01 5.94782293e-01\\n-8.50423574e-02 4.16900337e-01 2.88964182e-01 -8.67767692e-01\\n5.86152196e-01 1.95046276e-01 3.36433575e-03 -2.13917971e-01\\n5.46193063e-01 -4.40207541e-01 -9.72985700e-02 1.34471223e-01\\n-2.14618921e-01 -1.26227528e-01 3.53284240e-01 -2.60725081e-01\\n-2.35744625e-01 6.07929289e-01 2.53834784e-01 9.04533640e-02\\n2.70213723e-01 -1.63830236e-01 -1.53978139e-01 9.26084723e-03\\n-2.45364785e-01 -2.94786930e-01 -4.19255883e-01 2.03323528e-01\\n-4.52609435e-02 -6.03720069e-01 -1.23750344e-01 -4.40782875e-01\\n-1.46846250e-01 -5.26806056e-01 -1.16202109e-01 1.96450397e-01\\n1.34346977e-01 2.13879466e-01 -4.76987697e-02 -9.98176932e-02\\n-7.73174465e-02 -6.28006101e-01 -1.48752034e-01 6.10618070e-02\\n2.97779292e-01 2.08184659e-01 4.93663885e-02 -1.61685050e-01\\n1.02630436e-01 5.51344812e-01 -4.14876670e-01 -3.80076528e-01\\n1.93800062e-01 1.24731466e-01 -7.70380124e-02 -1.92057908e-01\\n3.93449664e-02 3.08688074e-01 -1.55558065e-01 8.78534093e-02\\n1.32499426e-03 -2.24874653e-02 2.43748799e-01 -6.96774796e-02\\n-1.56302974e-01 -2.43592918e-01 -1.29262045e-01 3.52161646e-01\\n-5.56369126e-01 -2.64301002e-01 5.63510239e-01 2.27051988e-01\\n9.67496913e-03 2.09785208e-01 2.58457601e-01 -3.07648852e-02\\n-3.40321511e-01 -1.82721943e-01 2.76718825e-01 1.93721816e-01\\n7.55183920e-02 7.43258968e-02 -2.20464677e-01 -5.67996740e-01\\n-3.22865629e+00 -2.60756671e-01 6.79577067e-02 -2.21046045e-01\\n1.48255363e-01 -1.12439327e-01 2.59291112e-01 7.14767026e-04\\n-4.06779885e-01 -4.62556779e-02 -2.23362058e-01 -2.77923793e-01\\n-6.68968558e-02 3.28433931e-01 1.13421194e-01 1.72604516e-01\\n1.63818523e-01 -3.59675407e-01 -3.41632254e-02 3.86368424e-01\\n-9.93242338e-02 -7.51867235e-01 1.35493904e-01 1.21474370e-01\\n1.52030066e-01 6.80882111e-02 -4.24672902e-01 1.07145958e-01\\n-3.92278373e-01 -3.53824794e-01 1.78911939e-01 -3.06274831e-01\\n-1.72367081e-01 2.88237333e-01 2.45024964e-01 -8.34199637e-02\\n2.41492521e-02 -3.03867221e-01 6.55318797e-02 -4.45800692e-01\\n-2.70029828e-02 -5.56141138e-01 8.39379355e-02 -3.98967825e-02\\n6.77500308e-01 -1.95858553e-01 2.54096955e-01 8.68168399e-02\\n6.62599206e-02 2.14271918e-01 1.82832345e-01 -4.65994664e-02\\n-2.73569524e-01 -3.90054047e-01 -1.02325946e-01 -1.63536936e-01\\n6.92936778e-01 4.17754084e-01 -1.48398563e-01 1.31508522e-02\\n2.11819187e-01 -2.71905661e-01 -4.16272610e-01 -5.36243260e-01\\n-2.54071862e-01 -2.26704907e-02 -6.66085005e-01 -4.29336309e-01\\n-1.85868084e-01 -1.29400954e-01 -1.47370428e-01 6.07124209e-01\\n-2.90617198e-01 -3.93245727e-01 -4.32111360e-02 -4.55879390e-01\\n2.45771781e-01 -2.02962205e-01 6.72194883e-02 -7.86241889e-02\\n-3.40574950e-01 -4.59473073e-01 2.78422803e-01 7.10601406e-03\\n-1.77404940e-01 5.95858833e-03 8.65333378e-02 -2.51872510e-01\\n-5.12572050e-01 -4.32808965e-01 3.62796605e-01 -5.05743660e-02\\n3.10365438e-01 2.58443266e-01 3.72476995e-01 1.07943118e-01\\n4.53540742e-01 -1.56242803e-01 8.21441263e-02 -4.13175642e-01\\n3.95852551e-02 -1.36093237e-02 6.08008921e-01 -2.34309658e-01\\n9.98863652e-02 1.32685602e-01 -1.96180299e-01 -7.82083347e-02\\n4.91394341e-01 -7.70625919e-02 1.17645510e-01 -1.58099815e-01\\n3.70597988e-01 -5.24517119e-01 -1.21796981e-01 1.86487123e-01\\n1.19355015e-01 6.83457375e-01 -7.52740800e-02 -3.20829004e-01\\n-1.83054760e-01 3.36958498e-01 -1.44581884e-01 -1.28140852e-01\\n-1.70624539e-01 1.28681749e-01 -2.20058873e-01 2.75959462e-01\\n-7.07440358e-03 -1.05151728e-01 -3.54495734e-01 -1.22068062e-01\\n-4.47599106e-02 2.49797940e-01 3.32913190e-01 3.78427748e-03\\n-8.40368420e-02 -2.53089964e-01 -4.66842540e-02 1.28166005e-01\\n4.56225365e-01 3.40315908e-01 1.76328421e-01 -4.15773034e-01\\n-3.67604801e-03 1.90446928e-01 -3.33119333e-01 2.76958287e-01\\n-2.60525286e-01 1.75694779e-01 -4.85705703e-01 -2.54875481e-01\\n-1.94325507e-01 -3.37078631e-01 1.75718918e-01 3.11123610e-01\\n9.88812745e-02 -1.48659438e-01 1.01342008e-01 -3.57318461e-01\\n3.01570922e-01 1.45463973e-01 1.81790292e-01 9.54792872e-02\\n-9.44710057e-03 6.25425458e-01 6.30111247e-02 -1.02025285e-01\\n-2.28634644e-02 -5.66679798e-03 -2.93178499e-01 -3.33782166e-01\\n-1.61816310e-02 -3.59228283e-01 -1.67028993e-01 5.06924748e-01\\n1.77710012e-01 -3.27696018e-02 -2.39065662e-01 3.00631344e-01\\n-2.99783908e-02 -3.38450044e-01 -2.21683457e-01 1.31161138e-02\\n2.45895833e-01 1.06536202e-01 1.87416598e-01 -4.22279537e-01\\n-4.82878387e-02 -8.55379552e-03 -3.01977694e-02 4.43715066e-01\\n1.28790736e-01 2.03533098e-01 6.42684475e-02 -1.65238231e-01\\n6.62732124e-01 -1.08859167e-01 -1.48690671e-01 1.54254079e-01\\n7.05323294e-02 -3.85887712e-01 -3.56273711e-01 -1.30366400e-01\\n-5.17591201e-02 -2.84208685e-01 9.29800570e-02 1.57265499e-01\\n2.44512707e-02 -7.83881769e-02 -6.98582828e-01 -2.69669771e-01\\n-4.73319620e-01 -3.72208953e-02 9.01945755e-02 -5.96462965e-01\\n2.37215888e-02 -1.71058103e-01 -6.33846760e-01 3.80458415e-01\\n2.32115332e-02 7.28861466e-02 6.69282824e-02 2.85018254e-02\\n-8.00337717e-02 -2.43994549e-01 2.29558691e-01 7.85629451e-02\\n-2.49394238e-01 -1.12628661e-01 -4.64711525e-02 -1.01357830e+00\\n1.84528217e-01 1.10707313e-01 -1.21861808e-01 1.04131103e-01\\n1.04629593e-02 -6.43559217e-01 1.41930521e-01 -4.19385642e-01\\n-8.74566883e-02 2.03275550e-02 -1.74127474e-01 -4.82494801e-01\\n1.09424472e-01 9.19790417e-02 -2.15138555e-01 4.66689199e-01\\n-3.76365483e-01 4.10226047e-01 5.01902923e-02 8.28878954e-02\\n7.08239153e-02 -2.65420943e-01 1.86969280e-01 -1.36667565e-01\\n-4.56583261e-01 -1.75961137e-01 -3.01494449e-01 -2.85150379e-01\\n7.69020841e-02 -3.35408121e-01 -1.58017904e-01 -3.54286693e-02\\n3.16636950e-01 2.16917828e-01 -1.11085631e-01 -1.86213672e-01\\n2.53517460e-02 -5.24657190e-01 2.74236381e-01 -3.68653059e-01\\n-6.53515309e-02 -3.09636354e-01 2.58104116e-01 -8.52045789e-02\\n1.10435925e-01 -1.66787058e-01 5.70003390e-01 -1.52468100e-01\\n-2.95944601e-01 -1.71802640e-01 1.65557384e-01 7.27623254e-02\\n3.74397367e-01 -3.87340844e-01 -1.05555281e-01 1.89525619e-01\\n1.07502259e-01 3.74748260e-02 2.95131981e-01 -2.38281488e-01\\n-3.11751664e-01 3.42509538e-01 -6.36243165e-01 1.43761918e-01\\n7.24829376e-01 2.96205163e-01 1.66736186e-01 1.33321762e-01\\n1.87946707e-01 1.74384728e-01 4.89029080e-01 3.66707928e-02\\n-2.92516109e-02 4.12857622e-01 1.21821314e-01 -4.87001777e-01\\n-1.40967324e-01 -8.47460851e-02 -5.50161973e-02 -3.62195730e-01\\n6.05088592e-01 3.57440472e-01 -3.33940268e-01 -4.14918780e-01\\n-1.62353963e-01 -5.85589698e-03 4.53592181e-01 7.60280266e-02\\n-3.53816003e-02 -1.60972714e-01 5.34460485e-01 -7.32716694e-02\\n2.86559492e-01 5.02710462e-01 -8.72613043e-02 -1.85953230e-01\\n-7.50138909e-02 2.60431826e-01 1.77844837e-01 5.74238062e-01\\n-1.46492958e-01 1.75502628e-01 -2.46840063e-02 2.01083258e-01\\n-2.27619126e-01 -3.34830806e-02 2.99778759e-01 -4.10391986e-02\\n2.22419694e-01 1.45205051e-01 3.06440473e-01 4.43235517e-01\\n2.81697541e-01 3.13682050e-01 2.26316959e-01 -7.87229165e-02\\n3.40201676e-01 7.08303750e-01 3.70781332e-01 1.54780135e-01\\n9.65367854e-02 1.27955168e-01 1.05973661e-01 -3.54117416e-02\\n2.32480869e-01 4.07727540e-01 1.20915715e-02 8.74057770e-01\\n3.07803124e-01 4.07227129e-01 5.77730000e-01 -6.95044458e-01\\n-3.61613959e-01 5.99026419e-02 5.80835164e-01 -4.37778831e-01\\n-3.55232321e-02 1.08495735e-01 -1.41744226e-01 1.43411323e-01\\n-5.45357585e-01 -2.74120748e-01 3.76421250e-02 -1.56770453e-01\\n1.86608523e-01 -1.32998109e-01 -1.45200649e-02 2.13955373e-01\\n-1.86401129e-01 -1.78530738e-01 -4.11384493e-01 -1.76619112e-01\\n-3.82446468e-01 -3.20035182e-02 7.38992728e-03 -6.58867508e-02\\n-1.01631969e-01 -2.29573816e-01 -3.76530774e-02 4.70507108e-02\\n3.14588785e-01 -2.18461037e-01 -2.37818196e-01 -8.21798295e-02\\n1.06251061e-01 2.98102289e-01 6.08632267e-01 -8.71866941e-02\\n1.58220723e-01 -1.31576151e-01 -2.21334159e-01 8.17595199e-02\\n1.24775149e-01 4.37059030e-02 7.04651698e-02 5.76302648e-01\\n-3.15513909e-01 -1.98665679e-01 9.54628363e-02 2.85883218e-01\\n-4.67840493e-01 7.46951103e-02 3.03468741e-02 1.46805018e-01\\n6.91654757e-02 2.57251322e-01 -1.99670821e-01 4.85974737e-02\\n-1.70472085e-01 -7.00539052e-01 3.80490154e-01 -1.94243684e-01\\n-2.26387396e-01 2.49131769e-02 2.84959793e-01 2.51800209e-01\\n-2.36095876e-01 -1.89648807e-01 -1.89967677e-01 2.18987748e-01\\n7.25260898e-02 3.75641406e-01 -3.51635963e-01 -1.51973754e-01\\n-3.30530971e-01 2.64453828e-01 4.96981181e-02 1.94040373e-01\\n-3.05700097e-02 2.88163900e-01 2.40110010e-02 2.41249487e-01\\n2.95158386e-01 4.76887152e-02 -2.26107016e-01 -2.16257960e-01\\n-1.31464288e-01 -1.30648002e-01 9.99225378e-02 -1.00234084e-01\\n1.82936624e-01 -3.19637805e-01 -1.38220578e-01 -3.49026084e-01\\n-3.70797694e-01 -5.28683782e-01 -5.35152629e-02 -1.35008693e-01]]',\n", + " 'job_description': 'Job Informationen Your tasks: Continuously and proactively identify drivers of performance and business insights by BI tools, analyze impacts of taken actions to give deep analytical insight to the different stakeholders Define, implement and measure process KPIs and conduct process performance measurement cycles Design standard report portfolio with optimal layouts for management and operational teams to enable data-based decision making Implement statistical forecast models and compute technical budgets Compute and measure business cases for new ideas and projects Define aligned commercial data model. Lead and/or push the HD needs in the different BI relevant projects (e.g. CCM project) Functional leadership of project members in role of project leader Continuously update analytical and methodical skills Your profile: University degree (Master) in mathematics, information technology, engineering, economics or similar Relevant working experience in commercially applied analytics, econometrical modeling and statistical software (e.g. R, python) Experience in reporting/visualization software, ideally Tableau Experience in data warehousing and in relational as well as unstructured data environments Proven SQL skills High project management skills and profound experience in workshop management Good written and verbal communication skills and ability to work in cross cultural environments Excellent conceptual capabilities, able to analytically break-down and solve complex problems with high focus on implementation Written and spoken fluency in English, and preferably also in German Proven team player as well as ability to work independently and unsupervised Willingness to travel (mostly between the groups Hubs) Benötigte Skills Business Intelligence Python Python R SQL Englisch Reisetaetigkeit Projektleitung',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Leadership\", \"Proactivity\", \"Management\", \"Operations\", \"Decision Making\", \"Information Technology\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Engineering Economics\", \"Analytics\", \"Statistics\", \"Visualization\", \"Data Warehousing\", \"SQL (Programming Language)\", \"Statistical Software\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Idealization\", \"Performance Measurement\", \"Business Intelligence\", \"Unstructured Data\", \"Conceptualization\", \"Budgeting\", \"Layout Optimization\", \"Logical Data Models\", \"R (Programming Language)\", \"Econometric Modeling\", \"Cross-Cultural Studies\", \"Forecasting\", \"Project Management\", \"Commercialization\", \"Business Case\"]',\n", + " 'languages': \"['English', 'Italian', 'Oriya', 'Kurdish']\"},\n", + " {'company_id': '77',\n", + " 'job_title': 'backend engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.nanos.ai',\n", + " 'jobdescription_embedded': '[[-9.93610993e-02 1.67789996e-01 4.53946531e-01 -4.33472060e-02\\n3.97099793e-01 -8.52692872e-02 -6.75937310e-02 4.87816244e-01\\n-2.92915013e-02 -4.29475784e-01 -4.19181585e-02 -2.24508286e-01\\n-1.58719450e-01 7.35269561e-02 6.80728406e-02 3.37462664e-01\\n2.93862671e-01 1.14449501e-01 -2.80677438e-01 4.04118955e-01\\n1.58727437e-01 -5.37589714e-02 1.67795599e-01 6.62032604e-01\\n3.95197421e-01 -8.29496980e-03 3.43314558e-02 5.85573614e-02\\n-2.33463258e-01 -2.32918441e-01 4.72242475e-01 1.03322580e-01\\n-8.68875533e-02 -3.84176552e-01 2.06842005e-01 1.89335048e-02\\n-2.15945989e-01 3.69436480e-03 -7.42332265e-02 1.17948353e-01\\n-5.74157476e-01 -3.09221327e-01 3.62171121e-02 1.07915699e-01\\n-3.34808350e-01 -3.53398681e-01 2.05551028e-01 -1.37847975e-01\\n1.53530762e-01 -8.17515701e-03 -5.20347357e-01 2.95845091e-01\\n-2.46081278e-01 -2.41051972e-01 3.11416626e-01 5.09739339e-01\\n-2.22356264e-02 -4.50727820e-01 -5.97427249e-01 -3.33517134e-01\\n1.43634647e-01 -1.19620651e-01 -1.27497166e-01 -3.92209053e-01\\n2.57025510e-01 4.68364023e-02 4.64968719e-02 3.28114271e-01\\n-7.61563778e-01 -7.61777386e-02 -1.62835613e-01 -6.68030083e-02\\n-3.27059209e-01 -1.38065577e-01 -1.83207244e-01 -6.96963593e-02\\n-4.74140309e-02 3.65187526e-01 1.03470743e-01 1.68163963e-02\\n-1.77551493e-01 2.92631447e-01 -1.46124169e-01 4.21709836e-01\\n1.84524983e-01 1.65821776e-01 1.81653857e-01 3.62514436e-01\\n-4.02314186e-01 4.46734488e-01 1.23997286e-01 -3.47076833e-01\\n2.75705218e-01 4.25050594e-02 5.10777116e-01 -4.22319248e-02\\n2.47302696e-01 9.91449505e-02 -3.00741196e-01 3.56822342e-01\\n3.86728644e-01 -2.75420010e-01 -3.19507793e-02 -2.07951948e-01\\n5.92964217e-02 -4.89717871e-02 7.00124651e-02 2.07829863e-01\\n-2.40344733e-01 4.18751538e-01 1.79867670e-01 -2.58241653e-01\\n-6.40562028e-02 -4.53900754e-01 -7.83777386e-02 1.26154125e-02\\n-3.00932024e-02 2.75136326e-02 1.36330724e-01 3.57848182e-02\\n2.58927643e-01 6.93315733e-03 1.20945476e-01 7.90590584e-01\\n-1.60239726e-01 1.37875648e-02 -2.76214004e-01 2.78311789e-01\\n5.85818365e-02 -2.99628019e-01 3.10229361e-01 2.31225163e-01\\n7.68230706e-02 -1.86602294e-01 -1.83852077e-01 2.41406307e-01\\n-3.03763933e-02 -2.41855353e-01 -3.09810102e-01 1.83313295e-01\\n-2.37987079e-02 -3.21837872e-01 5.82641959e-01 1.25421286e-01\\n1.63445517e-01 -3.25146131e-02 -8.17322433e-02 -1.56428277e-01\\n-1.68062270e-01 1.17449835e-01 -1.35939687e-01 2.27486789e-01\\n-2.95050532e-01 -2.54602969e-01 -2.30339304e-01 1.12504788e-01\\n-3.80494475e-01 1.77756503e-01 -1.31885380e-01 -9.95028913e-02\\n3.86159599e-01 4.66080010e-02 -2.94564277e-01 3.20560664e-01\\n1.29130334e-02 1.82437539e-01 -6.53957352e-02 3.10995996e-01\\n-1.70663327e-01 2.82760084e-01 -2.77612498e-03 -5.06778546e-02\\n6.72044396e-01 1.30839825e-01 1.19194672e-01 -7.98331723e-02\\n3.36308748e-01 -2.27463320e-02 6.77945167e-02 5.27473688e-02\\n-6.10567093e-01 2.09911019e-01 8.34482908e-02 2.49728262e-02\\n9.98687521e-02 -2.32785389e-01 1.33428439e-01 -3.28318834e-01\\n-1.33248735e-02 -1.32945970e-01 -4.93339956e-01 -3.23858976e-01\\n-2.95524955e-01 1.87272150e-02 4.87178683e-01 -4.37209547e-01\\n-8.87565464e-02 2.40891457e-01 -5.03076911e-01 -7.79272765e-02\\n2.31710881e-01 2.13704571e-01 1.30593598e-01 1.35977760e-01\\n-1.37220412e-01 -4.88527179e-01 9.51480716e-02 -4.17858899e-01\\n-1.73858568e-01 1.04147375e-01 -2.83767343e-01 2.72220433e-01\\n9.98983830e-02 -1.82821676e-02 -1.71559989e-01 1.29017696e-01\\n-2.57252276e-01 -8.56996477e-02 1.80805579e-01 -2.89463624e-03\\n3.02316546e-01 2.92098708e-02 -3.82030219e-01 3.90898168e-01\\n-1.66776031e-01 6.02536738e-01 9.25745815e-02 -9.14494336e-01\\n5.30719519e-01 3.66088927e-01 -5.37202433e-02 -4.26744968e-01\\n5.31409204e-01 -2.52824366e-01 6.69408515e-02 8.64332616e-02\\n-4.73934621e-01 -3.76606286e-01 2.13932663e-01 -1.72838017e-01\\n-2.70933896e-01 5.25604129e-01 -4.38920315e-03 3.70949954e-02\\n1.89967722e-01 -2.15081096e-01 -4.56902012e-02 9.50350538e-02\\n-6.82128817e-02 -2.00226575e-01 -5.01076698e-01 -7.01187775e-02\\n-1.00035466e-01 -4.49627489e-01 -3.65002677e-02 -3.06704432e-01\\n-2.36146808e-01 -3.22404265e-01 -1.26409680e-01 3.03303719e-01\\n2.55712569e-01 1.27298787e-01 -1.65854534e-03 1.08707532e-01\\n-2.43446410e-01 -6.08066797e-01 7.09840655e-02 1.20301448e-01\\n3.74828935e-01 2.12943196e-01 1.51690319e-01 7.70428702e-02\\n-1.01540208e-01 6.69360757e-01 -2.86712945e-01 -8.44555497e-02\\n1.47202089e-01 2.23723650e-01 7.55906850e-02 -1.79548591e-01\\n1.10325627e-01 3.52039754e-01 -2.86453068e-01 6.60493970e-02\\n-8.30903724e-02 -8.07230026e-02 3.72221291e-01 9.00535733e-02\\n-3.56203794e-01 -2.72459805e-01 -7.89736137e-02 1.87788531e-01\\n-5.07830918e-01 -1.43112600e-01 6.34681046e-01 1.70296341e-01\\n2.17873305e-01 9.47361588e-02 2.95363963e-01 -1.19377337e-01\\n-1.62438259e-01 -3.08462560e-01 3.27627569e-01 2.08017498e-01\\n8.72275010e-02 1.28923297e-01 -5.47885336e-02 -6.39599502e-01\\n-3.28828382e+00 -1.46801472e-01 2.00160772e-01 -2.74898946e-01\\n1.44616514e-01 -1.10349439e-01 1.59068145e-02 -1.40658304e-01\\n-2.03158945e-01 4.45600636e-02 -1.25753075e-01 -1.03959687e-01\\n1.72426045e-01 1.71444044e-01 1.23367466e-01 2.24291444e-01\\n2.54876196e-01 -1.79509789e-01 -3.11288796e-02 3.27679992e-01\\n-1.76567003e-01 -5.64411879e-01 2.87557006e-01 -9.01716277e-02\\n3.47678930e-01 3.41422915e-01 -3.38940531e-01 -2.00842753e-01\\n-1.69263959e-01 -9.48775262e-02 7.46974051e-02 -2.49065369e-01\\n-5.82792014e-02 2.78075069e-01 2.14028686e-01 -9.17554200e-02\\n1.47685111e-01 -4.26787287e-01 -1.04663379e-01 -4.21290278e-01\\n1.35233685e-01 -5.80724239e-01 5.16032353e-02 -2.00618535e-01\\n6.94020271e-01 -3.15359414e-01 9.43393353e-03 8.71808827e-02\\n1.95157081e-01 2.42143691e-01 7.92423189e-02 4.49310467e-02\\n-2.08649158e-01 -1.96706563e-01 -1.43625559e-02 -1.22779764e-01\\n4.76427197e-01 5.95577121e-01 -2.01984197e-01 -1.94135338e-01\\n-1.20051540e-02 -2.80892432e-01 -4.83817101e-01 -3.18551332e-01\\n-1.33718461e-01 -3.89633000e-01 -5.66331506e-01 -3.79042923e-01\\n-8.80559608e-02 -1.90143853e-01 -1.68654859e-01 6.33704901e-01\\n-2.84728944e-01 -3.50746334e-01 2.24245917e-02 -4.43110406e-01\\n1.24902338e-01 -9.76853222e-02 2.21271589e-02 -2.36163735e-01\\n-7.97046348e-02 -5.84255934e-01 -2.53726058e-02 -7.04826415e-02\\n-1.69805095e-01 -3.95438313e-01 4.82539013e-02 -8.12280849e-02\\n-2.24114001e-01 -5.71472645e-01 4.34624434e-01 1.76221013e-01\\n3.93158466e-01 -3.40591930e-02 3.51325750e-01 -1.39260471e-01\\n3.03481877e-01 -1.38209552e-01 -2.51237806e-02 -3.69425952e-01\\n1.70535222e-01 6.76486418e-02 4.44016516e-01 -1.89696670e-01\\n3.59313078e-02 1.25170469e-01 -3.02818030e-01 -1.23331919e-01\\n3.02495539e-01 1.14759356e-01 1.51264101e-01 -2.69826889e-01\\n3.49503815e-01 -2.59722263e-01 -2.67762244e-01 1.22446544e-01\\n1.29940450e-01 4.95402753e-01 -3.68406586e-02 -4.27085042e-01\\n-1.45981163e-01 4.91905838e-01 -1.73765361e-01 -2.06378564e-01\\n-2.72872686e-01 1.22658104e-01 -2.17794791e-01 1.18387848e-01\\n4.69069816e-02 -1.43414110e-01 -2.76620716e-01 -1.51994258e-01\\n-2.02153653e-01 3.19839180e-01 2.47814059e-01 8.56968760e-02\\n-4.24604192e-02 -4.43561226e-01 -2.39462405e-02 2.54370600e-01\\n8.47622305e-02 3.86034846e-01 1.46849066e-01 -1.79819271e-01\\n-9.09223557e-02 4.14612740e-01 -7.16713741e-02 5.65404817e-02\\n-2.01421648e-01 -2.45091654e-02 -5.12343884e-01 -2.54233301e-01\\n-2.67604679e-01 -3.08503628e-01 7.01154917e-02 3.44767839e-01\\n1.67837441e-01 -8.18632916e-02 4.01608050e-02 -4.82600212e-01\\n3.82953286e-01 7.73230493e-02 2.21294224e-01 1.87643766e-01\\n1.43851951e-01 5.80110550e-01 4.31292243e-02 -1.04034625e-01\\n-1.07805520e-01 6.08604178e-02 -2.51589656e-01 -8.61296728e-02\\n3.14704329e-02 -4.11448956e-01 -9.63072777e-02 3.16217124e-01\\n8.78617540e-02 -2.28364393e-01 -2.24662006e-01 1.82632089e-01\\n4.13233787e-02 -1.95096701e-01 -2.26152301e-01 4.35877815e-02\\n2.90571660e-01 -6.31550252e-02 3.21785897e-01 -3.70037347e-01\\n-1.05793104e-01 2.88109854e-02 -1.40410870e-01 5.37156701e-01\\n1.45299375e-01 -1.50084626e-02 -2.07966313e-01 -1.54579833e-01\\n3.81847590e-01 -1.90109789e-01 -1.26229703e-01 -3.24403867e-02\\n9.71914381e-02 -1.62216991e-01 -5.62439084e-01 2.04670995e-01\\n-2.26722881e-02 -9.22845751e-02 -3.04775909e-02 3.92030068e-02\\n4.41796146e-02 1.66674465e-01 -5.45425177e-01 -2.41216898e-01\\n-2.62619853e-01 -5.11997491e-02 -7.09929615e-02 -5.20227015e-01\\n2.30319966e-02 -7.31063336e-02 -5.19117713e-01 1.89804673e-01\\n-2.76289642e-01 -2.36336067e-02 1.59806728e-01 1.23812668e-02\\n-3.71587217e-01 -7.02594966e-02 6.96415231e-02 2.57402003e-01\\n-3.93426001e-01 -2.82079995e-01 6.16872907e-02 -1.01133490e+00\\n2.46242970e-01 3.28487940e-02 -1.84355170e-01 1.32151559e-01\\n-7.72657841e-02 -7.54749060e-01 1.16941273e-01 -2.45404780e-01\\n-1.90269127e-01 1.26908123e-02 -1.92829281e-01 -4.24370259e-01\\n2.51797959e-04 -1.06082968e-02 -2.78553963e-01 2.79644907e-01\\n-4.00225043e-01 4.13082480e-01 -1.26112312e-01 1.79848120e-01\\n-4.22977097e-02 -2.52883375e-01 8.00915137e-02 -3.74139488e-01\\n-4.96198416e-01 -1.75489813e-01 -3.20817947e-01 -1.99880153e-01\\n8.30135643e-02 -3.52957964e-01 -8.41379464e-02 5.65927997e-02\\n3.96766961e-01 4.96545583e-02 -1.82666898e-01 -2.67882705e-01\\n5.36458604e-02 -5.08981586e-01 -3.88099961e-02 1.10900715e-01\\n-1.28652211e-02 -1.20556548e-01 2.59435833e-01 7.22169280e-02\\n7.96886608e-02 -5.08349657e-01 4.57321346e-01 -4.08288926e-01\\n-2.65217304e-01 -7.93791413e-02 -2.17683706e-02 -9.67163499e-03\\n2.35950992e-01 -5.16537309e-01 1.09831274e-01 3.80640417e-01\\n9.90145802e-02 2.02300251e-02 3.19205761e-01 -8.11272860e-03\\n-6.95799291e-02 2.23343998e-01 -3.13239098e-01 6.20982908e-02\\n8.15948963e-01 -6.40997812e-02 7.42106289e-02 2.13306651e-01\\n5.85321710e-02 2.53138691e-01 5.73716760e-01 4.57107276e-02\\n-1.50479317e-01 2.90243328e-01 7.76106864e-02 -5.71407318e-01\\n3.97871584e-02 -2.65571773e-02 -3.24665904e-01 -3.09560865e-01\\n6.66166425e-01 4.27953929e-01 -4.06144977e-01 -2.80682087e-01\\n-1.77397411e-02 -2.31618419e-01 7.37597495e-02 -1.16672695e-01\\n8.66719484e-02 -6.46298528e-02 4.65079099e-01 -7.25083426e-02\\n2.06392005e-01 5.35153687e-01 -2.22982496e-01 -3.86543244e-01\\n-1.38666332e-01 2.13527262e-01 7.44567066e-02 4.73716140e-01\\n-1.74348354e-01 3.21345448e-01 -2.79660113e-02 5.78216910e-02\\n-1.51948094e-01 1.73177093e-01 3.65324989e-02 1.17573053e-01\\n1.54443994e-01 2.39516459e-02 4.20435131e-01 4.18534696e-01\\n4.38679755e-01 4.58841354e-01 3.26630473e-01 8.17675702e-03\\n7.27507591e-01 5.97143471e-01 4.36305583e-01 1.70520097e-01\\n-6.62052482e-02 1.26602612e-02 4.36070077e-02 3.71709391e-02\\n4.28101629e-01 3.44461352e-01 1.62424892e-01 8.56793284e-01\\n4.35278982e-01 2.20243618e-01 6.81294501e-01 -6.41433954e-01\\n-3.52632433e-01 -5.67904767e-03 3.74184370e-01 -3.02653104e-01\\n-1.48134530e-02 1.36322156e-01 -6.16818741e-02 2.14248031e-01\\n-3.51553023e-01 -2.02767223e-01 -1.54429376e-02 2.68943131e-01\\n-1.47019178e-02 -7.89708495e-02 -1.84003487e-01 7.79078752e-02\\n-2.06681237e-01 -1.60926014e-01 -4.11987007e-01 -7.43745118e-02\\n-2.06466690e-01 -1.52855679e-01 -1.58408478e-01 -2.21374601e-01\\n-1.77253157e-01 -3.33148122e-01 -1.01506785e-01 -1.60256699e-02\\n3.16570699e-01 -2.25720257e-01 -4.21670265e-02 -2.23581091e-01\\n2.93309689e-01 1.87360689e-01 4.62730646e-01 5.91990873e-02\\n1.67365253e-01 -3.03859144e-01 -2.60319263e-01 1.86627552e-01\\n1.93616286e-01 1.45036250e-01 2.53738575e-02 2.69729257e-01\\n-3.62243056e-01 -1.50744110e-01 2.65604079e-01 3.76549006e-01\\n-3.95782948e-01 2.39452291e-02 -1.50481716e-01 2.40539551e-01\\n3.58745605e-02 1.04924597e-01 -2.00678661e-01 -1.76874408e-03\\n-1.73636839e-01 -5.14753163e-01 3.49185944e-01 -1.18349016e-01\\n-2.31975894e-02 5.70320860e-02 3.05385411e-01 6.33793175e-02\\n-2.41767704e-01 1.94561034e-02 -6.75720908e-03 1.93816975e-01\\n2.05875218e-01 2.51239151e-01 -2.90455550e-01 -2.00694889e-01\\n-1.99528456e-01 1.10300615e-01 -2.38858029e-01 6.66600317e-02\\n1.41682737e-02 3.72138739e-01 1.41189769e-01 -2.97317803e-02\\n4.86623615e-01 -3.18099856e-02 -1.00332372e-01 -2.15976655e-01\\n-3.13839972e-01 -3.20134878e-01 -1.04718879e-01 -1.41013771e-01\\n2.13397115e-01 -3.93651515e-01 -1.20920800e-02 -8.08006078e-02\\n-1.93688393e-01 -2.40513042e-01 7.95801431e-02 -9.03673321e-02]]',\n", + " 'job_description': 'Who are we? Nanos is an online platform that makes placing paid advertisements a straightforward process accessible to any small & micro business around the world. We are a privately owned Swiss startup based in Zurich - a dynamic fast-growing team of software engineers, UX designers, business experts and machine learning engineers. Who are we looking for? As part of our growth we are building a fully distributed engineering team, for which we are looking for a Backend Engineer with a minimum of 3 years professional experience. From a cultural point of view, we expect you to bring in a plus with you as we are an inclusive company that thrives from the diversity its employees bring in. As a Backend Engineer, we expect you to be a problem solver before being a code writer. What will you do if you join us? As a backend engineer and being a part of our distributed development team you will be working on different parts of the Nanos platform (Frontend, Backend, Mobile app, Server infrastructure.., etc), where you will be expected to: - Architect and maintain distributed systems, focusing on reliability, security, and scalability - Design and develop highly scalable APIs and services that are used by web and mobile clients Requirements What skills do we expect you to have? With the exponentially growing number of frameworks and languages in software engineering we do not expect you to be an expert in all technologies used at Nanos but we do expect you to be a fast learner and an engineer with a critical and open mindset. Being a part of a rapidly moving industry, we are looking for engineers, who are not afraid to build fast, fail fast and learn from their mistakes. If you decide to join us you might be working on projects with technologies and languages such as: Node.js, MongoDB, Python, PostgreSQL CI/CD: Git, GitHub, Docker, Kubernetes, Jenkins, GitOps Our working language is English and we expect all candidates to be fluent in English. Benefits What are we to offer you? We would be more than happy to hear from you and look forward to have you joining our team where you should expect following benefits and culture: A competitive salary Generous stock option plan 25 vacation days per year Flexible working hours Free choice of hardware Regular experimental time to work on your own ideas Office within 5 min walking distance from Zurich HB Office shut down between Christmas and New Year (to be compensated by working a couple of extra minutes per day over the year, i.e. 15 min in 2018) A very multicultural team Regular team events and parties One ski retreat per year A fully-equipped kitchen and a dining area Big open terrace and a bbq space Free coffee/fruits and soft drinks ',\n", + " 'soft_skills': '[\"Infrastructure\", \"Planning\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Advertisement\", \"Kubernetes\", \"Accessioning\", \"Jenkins\", \"Machine Learning\", \"Industrialization\", \"Mobile App\", \"PostgreSQL\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"E (Programming Language)\", \"Experimentation\", \"Software Engineering\", \"Mobility\", \"Github\", \"Docker (Software)\", \"Scalability\", \"Distributed Development\", \"Incentive Stock Option\", \"Git Flow\", \"Custom Backend\"]',\n", + " 'languages': \"['English', 'Malay', 'Wolof', 'French', 'Castilian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data-scientist (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.40152931e-01 3.86857748e-01 5.64359128e-01 -2.11751889e-02\\n5.54279625e-01 -1.63345739e-01 8.50075483e-02 2.85801649e-01\\n-3.76474373e-02 -5.54479174e-02 -1.44540608e-01 -1.84721932e-01\\n-2.62196749e-01 4.99920137e-02 1.32289350e-01 2.33172685e-01\\n1.58298552e-01 3.37551162e-02 -2.00104654e-01 2.64585495e-01\\n2.19596922e-01 1.25990853e-01 -1.09996960e-01 4.01760072e-01\\n5.46991765e-01 1.61381468e-01 -1.36757001e-01 -1.80698056e-02\\n-4.98854041e-01 -2.56293982e-01 3.28164220e-01 2.21461561e-02\\n-1.20518483e-01 -2.22280085e-01 7.23956674e-02 1.45944118e-01\\n-5.06033078e-02 -3.68830152e-02 5.55988960e-02 1.71215087e-01\\n-2.97935605e-01 -4.56979364e-01 1.41224936e-01 2.29650602e-01\\n-2.85194546e-01 -2.00274214e-01 1.35143027e-01 -4.82744947e-02\\n-1.51948510e-02 3.70995700e-02 -5.63241899e-01 4.89709705e-01\\n-1.49933442e-01 -6.77251890e-02 1.95805326e-01 6.01548493e-01\\n4.99456637e-02 -5.25512815e-01 -3.35858405e-01 -3.07429612e-01\\n6.16649762e-02 -5.57514876e-02 5.63354753e-02 -5.57723641e-02\\n4.32600886e-01 -1.48729766e-02 -1.09990217e-01 2.74718851e-01\\n-8.80553484e-01 -1.14383459e-01 -1.93149999e-01 2.52000224e-02\\n-4.41496849e-01 -1.77736413e-02 -2.55491406e-01 -1.24470219e-02\\n-3.37315612e-02 2.71823734e-01 -7.09322318e-02 4.32927944e-02\\n-4.53397781e-02 2.10033804e-01 1.86909050e-01 9.43847448e-02\\n3.73895824e-01 1.78202763e-02 1.69350192e-01 2.70833582e-01\\n-3.52352083e-01 2.22590700e-01 7.09624067e-02 -1.39725119e-01\\n1.20169386e-01 1.84005037e-01 5.02978861e-01 1.69806376e-01\\n-1.07638590e-01 2.06321537e-01 -6.44789934e-02 1.52450874e-01\\n6.54472262e-02 -4.50722843e-01 8.96276683e-02 4.15015109e-02\\n-3.19580555e-01 -2.93784738e-02 -1.67375907e-01 4.35275763e-01\\n-1.66115314e-01 4.56024289e-01 1.86219901e-01 -1.26863614e-01\\n-1.68066379e-03 -6.12200677e-01 -1.97938517e-01 4.51373355e-03\\n1.08503766e-01 2.57463962e-01 1.84028685e-01 1.19537130e-01\\n2.59141326e-01 2.53390875e-02 3.48010331e-01 8.49952519e-01\\n8.84517133e-02 1.57709688e-01 -1.69604719e-01 2.90805101e-01\\n2.41121724e-01 -3.45354259e-01 1.15146138e-01 2.49930933e-01\\n2.49397457e-01 -5.86976670e-02 -2.67600089e-01 1.69004709e-01\\n-3.35313052e-01 -6.14808276e-02 -3.26871365e-01 1.58660654e-02\\n-1.79879606e-01 -3.56965065e-01 4.54950660e-01 1.08459435e-01\\n1.42103940e-01 -2.45781094e-01 -1.64333567e-01 1.99629497e-02\\n-4.53888699e-02 6.04526997e-01 1.70497820e-01 2.21151114e-01\\n-3.72813970e-01 -2.56987154e-01 -9.55166519e-02 4.24931049e-01\\n-1.13859408e-01 9.36642736e-02 -1.35311276e-01 -6.69946820e-02\\n3.42485458e-01 2.50424981e-01 -3.80189478e-01 8.42056423e-03\\n-6.88624755e-02 -3.49844128e-01 -1.17121041e-01 2.12348938e-01\\n-2.05416873e-01 3.07477713e-01 -1.10336468e-01 -2.32545137e-01\\n6.20077789e-01 1.79984674e-01 2.87256446e-02 -6.40292913e-02\\n3.37507546e-01 -2.44132459e-01 4.76876795e-01 1.08316153e-01\\n-7.14825094e-01 4.00258809e-01 -8.84041265e-02 -1.55841663e-01\\n1.20750554e-01 1.38183773e-01 4.21810329e-01 -3.99443835e-01\\n3.65177765e-02 -2.59250194e-01 -3.78098339e-01 -3.59057665e-01\\n-4.69978660e-01 3.65988165e-02 3.24910462e-01 -3.98469478e-01\\n-1.56003699e-01 1.82488099e-01 -5.13722956e-01 -1.80485725e-01\\n1.50686160e-01 1.41126454e-01 1.48002312e-01 -1.87028609e-02\\n-4.21703141e-03 -5.18174708e-01 1.61556065e-01 -3.90420020e-01\\n-4.62925225e-01 2.65932400e-02 -2.82992333e-01 2.27540731e-01\\n8.48521851e-03 1.53380468e-01 -6.08720630e-02 1.59824595e-01\\n-3.83660883e-01 -6.29642606e-02 1.41159892e-01 2.37722665e-01\\n2.03175426e-01 -9.30899531e-02 -5.42539358e-01 3.62999290e-01\\n-2.58662403e-01 6.36967063e-01 2.63173550e-01 -6.27083242e-01\\n5.96495271e-01 2.46704638e-01 7.88443610e-02 -2.80443132e-01\\n4.55006272e-01 -2.74801672e-01 -3.99831273e-02 2.15862975e-01\\n-2.01305538e-01 -9.64623243e-02 3.02819371e-01 -1.49912253e-01\\n-2.55634457e-01 5.52354932e-01 2.35565096e-01 6.08248264e-02\\n3.03173721e-01 -3.40120256e-01 -5.42415166e-03 2.45603058e-03\\n-1.05307549e-01 -1.40772894e-01 -2.21211314e-01 5.04703335e-02\\n-5.70334382e-02 -4.16276962e-01 -1.30620286e-01 -2.45847449e-01\\n-1.04631685e-01 -3.88742387e-01 -1.25641122e-01 3.58455479e-01\\n1.54326916e-01 1.28081709e-01 1.13788553e-01 -7.78047740e-02\\n-5.50397187e-02 -6.50845766e-01 -1.78422377e-01 7.45280087e-02\\n4.39558864e-01 2.83264756e-01 1.33801937e-01 -1.35133415e-01\\n2.99210846e-02 4.10754770e-01 -5.45337379e-01 -4.24741238e-01\\n1.16312183e-01 1.01509728e-01 -1.09301448e-01 -2.16209784e-01\\n-1.17579661e-01 3.29327285e-01 -3.43568735e-02 1.83735117e-02\\n-1.42083645e-01 -1.88273385e-01 2.82436669e-01 -8.59018341e-02\\n-1.36066794e-01 -3.22769880e-01 -1.55979916e-01 3.59314978e-01\\n-4.20063674e-01 -2.98837990e-01 4.06595170e-01 1.24043554e-01\\n2.04832420e-01 1.54067010e-01 2.52507567e-01 -2.21021116e-01\\n-1.89200059e-01 -2.91250974e-01 1.83087785e-03 1.50031880e-01\\n-1.03188632e-02 4.30557169e-02 -2.08979428e-01 -5.84156990e-01\\n-3.37948895e+00 -1.00038342e-01 1.05876349e-01 -3.68365377e-01\\n2.51434267e-01 -1.14177331e-01 -2.26618089e-02 6.96711615e-02\\n-2.25777477e-01 1.01283662e-01 -2.26554036e-01 -1.61212265e-01\\n2.72118300e-03 5.09050429e-01 6.56062365e-02 9.85770524e-02\\n9.75739285e-02 -2.89559364e-01 -2.33657181e-01 4.64905202e-01\\n6.44931337e-03 -5.89152515e-01 1.41642883e-01 4.41695452e-02\\n2.16367587e-01 3.25013995e-01 -3.86159569e-01 -1.14399225e-01\\n-1.23523489e-01 -3.32075030e-01 -2.57252455e-02 -9.82949138e-02\\n-1.77133203e-01 3.48181874e-01 5.68890050e-02 2.06964500e-02\\n-3.98425721e-02 -2.32585177e-01 -1.94989629e-02 -3.83502424e-01\\n1.54957769e-03 -5.08120179e-01 -5.56375533e-02 -2.61963814e-01\\n7.04859316e-01 -2.19223484e-01 1.78735346e-01 1.00847393e-01\\n1.45437509e-01 9.13299993e-02 -1.19658165e-01 1.22601591e-01\\n-3.87456983e-01 -1.97301835e-01 -8.87915641e-02 -1.21025428e-01\\n4.16066140e-01 5.17527580e-01 -2.77378559e-01 -3.45542245e-02\\n1.38546288e-01 -4.11158115e-01 -7.50019625e-02 -5.13732433e-01\\n-2.59068787e-01 -2.34122500e-01 -6.43472791e-01 -3.41152966e-01\\n-1.01255707e-01 4.41092476e-02 -2.53071249e-01 5.10619283e-01\\n-4.62224871e-01 -5.29713035e-01 7.89511576e-02 -5.87168992e-01\\n6.97103217e-02 -2.31797859e-01 1.55059367e-01 -1.98234990e-01\\n-3.41397882e-01 -4.81898695e-01 1.97562039e-01 -7.64110833e-02\\n-1.26015544e-01 -1.26156092e-01 -8.22402760e-02 -2.57017821e-01\\n-2.70676672e-01 -4.14699286e-01 3.89312953e-01 3.31114866e-02\\n2.88290024e-01 1.20081998e-01 3.32133621e-01 1.32175371e-01\\n3.92266423e-01 -2.70836502e-01 2.52457708e-01 -3.41349840e-01\\n1.32015243e-01 -2.35268641e-02 6.92016482e-01 -3.84745777e-01\\n4.28930707e-02 1.46060780e-01 -3.31004530e-01 1.30572738e-02\\n4.11143988e-01 1.65985316e-01 -2.31660884e-02 -1.39493316e-01\\n3.06265473e-01 -6.99199498e-01 -1.43724427e-01 2.36657381e-01\\n6.16923012e-02 7.43351758e-01 2.10648519e-03 -3.30366135e-01\\n-2.90578693e-01 4.07710224e-01 -2.90386677e-01 -3.46108556e-01\\n-1.77614123e-01 3.28793190e-02 -6.89375177e-02 1.40922368e-01\\n9.36853066e-02 -1.57641545e-01 -3.29660743e-01 -9.83027965e-02\\n9.45907980e-02 1.29115433e-01 3.42749089e-01 2.69576367e-02\\n-1.82803035e-01 -1.31840378e-01 -1.43108875e-01 1.49730369e-01\\n2.39536375e-01 1.45028502e-01 5.09625226e-02 -3.04062515e-01\\n-8.94153863e-02 2.38905728e-01 -1.13587223e-01 1.95596412e-01\\n-1.28791407e-01 2.13153157e-02 -5.34991443e-01 -1.34505913e-01\\n1.73471756e-02 -1.85938418e-01 1.68719664e-01 3.35350096e-01\\n2.44830951e-01 8.30947682e-02 6.99205548e-02 -5.61019182e-01\\n3.99993271e-01 7.17108790e-03 3.62041481e-02 1.21041581e-01\\n-7.79594034e-02 4.00058389e-01 8.19663256e-02 1.39041934e-02\\n-5.06288335e-02 -3.19084488e-02 -2.94358552e-01 -3.16757530e-01\\n1.68573171e-01 -2.25850999e-01 -1.92843869e-01 4.35822785e-01\\n3.47292311e-02 -2.21330881e-01 -1.27670825e-01 1.61196843e-01\\n2.76164502e-01 -2.94274569e-01 -1.08555883e-01 -1.96797624e-02\\n8.86153504e-02 1.52969778e-01 2.85445571e-01 -2.76232988e-01\\n-4.18971442e-02 -8.45313743e-02 -1.95644066e-01 2.35355198e-01\\n1.10124663e-01 4.20086384e-02 -2.33908087e-01 -1.36608735e-01\\n5.07328451e-01 1.70550793e-01 7.78609589e-02 5.02872132e-02\\n1.75333828e-01 -3.02655101e-01 -4.79303718e-01 -1.52252227e-01\\n4.58093137e-02 -1.71378866e-01 4.33273315e-02 3.55976075e-02\\n8.17560330e-02 -8.98997039e-02 -4.32744086e-01 -2.15124294e-01\\n-1.37004077e-01 -2.48981088e-01 6.35693967e-02 -2.24558651e-01\\n-1.00511700e-01 -8.30622017e-02 -5.34694135e-01 4.26946171e-02\\n-2.82079160e-01 7.80676678e-02 1.08579271e-01 5.08486032e-02\\n-2.38745868e-01 -1.63135901e-01 1.03625499e-01 9.67741311e-02\\n-2.92306691e-01 -2.99069852e-01 7.14236423e-02 -8.59343767e-01\\n4.94412147e-03 3.79296625e-03 5.41890524e-02 -1.40833676e-01\\n-2.94086635e-02 -6.90011382e-01 2.66617864e-01 -4.95983601e-01\\n-2.37460695e-02 1.10979855e-01 -1.30929679e-01 -3.08179855e-01\\n3.11801583e-01 -1.72295824e-01 -3.71792853e-01 3.42551827e-01\\n-3.92808676e-01 2.39902049e-01 1.89362839e-01 4.22363244e-02\\n4.76108752e-02 -2.60275900e-01 1.36009946e-01 -1.12400167e-01\\n-3.75986040e-01 -1.19924292e-01 -2.79425502e-01 -1.65138841e-01\\n1.47457585e-01 -1.22716822e-01 -1.60393089e-01 1.57250330e-01\\n2.96426505e-01 1.25346288e-01 -9.16753784e-02 1.36035290e-02\\n9.15301219e-02 -4.31458682e-01 1.31564096e-01 -3.08859676e-01\\n-5.77675067e-02 9.14888158e-02 2.08364442e-01 -7.42360353e-02\\n-2.28577908e-02 -1.97931930e-01 5.47385275e-01 -2.45735154e-01\\n-3.76464665e-01 -4.39463072e-02 4.66175191e-03 -7.17428848e-02\\n1.97554618e-01 -4.51644123e-01 3.07491533e-02 3.19156408e-01\\n-5.18260710e-02 7.86872506e-02 1.99633256e-01 -2.84378347e-03\\n-1.39998689e-01 -1.35180326e-02 -5.69482148e-01 7.80524537e-02\\n7.94845879e-01 2.53013879e-01 3.41227800e-02 1.65758416e-01\\n1.58468634e-01 3.72777939e-01 5.26812792e-01 -5.97630851e-02\\n-2.18201607e-01 2.44983882e-01 -7.62373954e-03 -5.61581552e-01\\n-1.32000566e-01 8.47434974e-04 -2.65801311e-01 -3.07733893e-01\\n5.33343375e-01 3.18420976e-01 -3.47865820e-01 -3.72991621e-01\\n7.66191706e-02 -1.20570749e-01 3.00915718e-01 -2.63529527e-03\\n4.48522419e-02 -1.38788909e-01 6.62567735e-01 1.04516875e-02\\n2.37100780e-01 5.20235956e-01 1.60330720e-02 -3.78140658e-01\\n-9.93191898e-02 6.75549954e-02 1.60315990e-01 4.25393403e-01\\n-5.64666651e-02 1.36269212e-01 -2.26875678e-01 -1.07680112e-01\\n-1.11730307e-01 1.53982267e-01 2.57352054e-01 1.61221158e-02\\n3.30734968e-01 1.94610074e-01 3.11010659e-01 4.69546318e-01\\n1.15267634e-02 4.67072129e-01 2.27059931e-01 -4.58172373e-02\\n3.31745923e-01 6.03534281e-01 4.04119462e-01 1.54238120e-01\\n1.07991658e-02 9.12709832e-02 6.00442514e-02 -4.91234194e-03\\n4.15282905e-01 3.96080345e-01 3.55869412e-01 7.47924566e-01\\n2.60155320e-01 3.20422322e-01 7.33133674e-01 -6.48251653e-01\\n-4.11292762e-01 5.21633886e-02 5.22581279e-01 -1.40540078e-01\\n-1.61527500e-01 3.51454727e-02 -1.70680076e-01 1.85795859e-01\\n-6.21964812e-01 9.90042556e-03 8.23291317e-02 -2.58142431e-03\\n-3.43191884e-02 5.44497222e-02 -2.61832297e-01 4.16719951e-02\\n-2.02608690e-01 -1.48629233e-01 -3.82326931e-01 -2.71676928e-01\\n-4.20055002e-01 -7.33061284e-02 -8.24888274e-02 -3.89096923e-02\\n-1.19455002e-01 -3.11603367e-01 -8.79641771e-02 7.87033662e-02\\n3.97335887e-01 -2.37249091e-01 -7.69334435e-02 -1.83379233e-01\\n7.71632567e-02 3.02834481e-01 4.52553391e-01 -2.42218167e-01\\n1.40554637e-01 -1.06377482e-01 -3.11025590e-01 -3.51653546e-02\\n5.71132787e-02 -5.77717926e-03 1.25537947e-01 5.72487414e-01\\n-2.97436327e-01 4.81967777e-02 9.52238217e-03 3.14644516e-01\\n-4.02669251e-01 -1.04992650e-01 1.21219777e-01 2.13559121e-01\\n5.33733107e-02 1.51447132e-01 -3.50127161e-01 1.43569291e-01\\n-2.81346619e-01 -4.29895699e-01 4.98593301e-01 -1.42713800e-01\\n-1.34281993e-01 2.71864444e-01 2.11686626e-01 2.03009218e-01\\n-2.11123660e-01 -1.13683783e-01 -9.07000229e-02 3.51472408e-01\\n-7.31450040e-03 4.56066757e-01 -2.01008052e-01 -3.12674552e-01\\n-1.69694349e-01 2.36393750e-01 -1.09224215e-01 7.13696480e-02\\n-2.67092764e-01 3.68595958e-01 -4.72509973e-02 1.20998770e-01\\n2.53593236e-01 -9.74214356e-03 -2.31407747e-01 -2.27564275e-01\\n-1.87766477e-01 -4.21232134e-01 8.12575668e-02 8.63488093e-02\\n1.66095942e-01 -2.41341606e-01 -1.08485825e-01 -1.55781671e-01\\n-2.01535612e-01 -3.58665466e-01 -9.71867368e-02 1.40134916e-01]]',\n", + " 'job_description': 'Job Informationen Tasks: Extract data from databases, write scripts to parse, clean, combine, and process them Create dashboards and visualizations of processed data, identify trends, anomalies Investigate data problems, identify patterns Draw inferences and conclusions, communicate results through reports, charts, or tables Define and implement KPIs in conjunction with the business team Basic Qualifications: University degree in Computer Science, Electrical Engineering, or Math/Physics Masters or PhD degree is a plus SQL and database experience is a must, with Hive/Hadoop a plus Good programming skills with at least one high-level language such as Python, Java, or C/C++ Good knowledge of data structures, algorithms, and statistics Knowledge of Unix shell scripting Knowledge of Machine Learning would be a plus Fluent in English (both spoken and written), additional languages are a plus 5+ years relevant experience Benötigte Skills FH Universität ETH Master SQL Python C++ Python JAVA Shell-Scripts Englisch',\n", + " 'soft_skills': '[\"Communications\", \"Investigation\"]',\n", + " 'hard_skills': '[\"Programming (Music)\", \"Shell Script\", \"Computer Science\", \"Statistics\", \"Unix Shell\", \"Visualization\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Data Extraction\", \"Dashboard\", \"Machine Learning Methods\", \"Script Writing\", \"C (Programming Language)\", \"Apache Hive\", \"Electrical Engineering\", \"High-Level Architecture\", \"Drawing\", \"Physics\", \"Data Structures\", \"Algorithms\", \"Additives\", \"Scripting\", \"Java (Programming Language)\", \"Parsing\", \"Data Processing\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Norwegian']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.96860814e-01 3.44887048e-01 4.18311268e-01 6.42987788e-02\\n5.49855947e-01 -1.60632238e-01 -7.60548115e-02 2.33741805e-01\\n3.85293690e-03 -3.85250986e-01 -1.00991771e-01 -2.73914307e-01\\n-8.60051885e-02 5.60852103e-02 1.23740666e-01 4.40712243e-01\\n2.10842565e-01 6.70473510e-03 -7.52684474e-02 3.78748119e-01\\n4.04198393e-02 -1.20572872e-01 -2.10955739e-02 6.54336214e-01\\n3.27865958e-01 -4.52837832e-02 -1.05593726e-01 3.76893021e-02\\n-2.93820888e-01 -1.94786966e-01 3.50330234e-01 3.60151418e-02\\n-1.35590002e-01 -3.07242274e-01 1.52788103e-01 1.99274436e-01\\n-2.34797448e-01 3.43347415e-02 -1.69399083e-01 1.40004277e-01\\n-4.76627588e-01 -1.83501318e-01 8.29791743e-03 5.43206558e-02\\n-4.30294186e-01 -3.49034727e-01 9.95754451e-02 -1.81845233e-01\\n3.66332196e-02 6.48680553e-02 -5.33586919e-01 3.09596747e-01\\n-2.28925571e-01 -2.48519540e-01 3.49494070e-01 6.64280176e-01\\n1.17803238e-01 -4.88737762e-01 -3.91648233e-01 -3.63320202e-01\\n-4.55902666e-02 -1.13983192e-01 3.27034444e-02 -2.60845512e-01\\n4.11702573e-01 -1.43740445e-01 2.91686114e-02 2.89151549e-01\\n-8.67187321e-01 -1.14951365e-01 -4.15841609e-01 7.68027594e-03\\n-4.90776718e-01 1.97851080e-02 -3.89639020e-01 -1.84735030e-01\\n-2.03368515e-02 4.76683944e-01 -2.18808297e-02 1.53994739e-01\\n-1.93965256e-01 2.92768687e-01 -3.28353584e-01 2.08600566e-01\\n3.39791447e-01 1.58946797e-01 1.72966585e-01 2.85977483e-01\\n-4.48067993e-01 3.26938391e-01 3.01893115e-01 -2.35333920e-01\\n2.83533931e-01 1.43122420e-01 2.94796169e-01 1.95423141e-01\\n1.10316023e-01 2.62607336e-01 -1.41405299e-01 1.97389156e-01\\n1.77302569e-01 -2.11973563e-01 -5.77723011e-02 -1.51757509e-01\\n4.66307215e-02 -1.21968903e-01 2.33216006e-02 2.01474980e-01\\n-3.48602384e-01 2.91850716e-01 1.18034214e-01 -1.54592186e-01\\n-9.68825817e-02 -4.61926162e-01 -6.63943663e-02 -4.83498536e-02\\n3.31327245e-02 2.76550680e-01 2.49577552e-01 1.99359983e-01\\n2.08295792e-01 1.71896014e-02 1.77252889e-01 9.28946495e-01\\n-6.68200031e-02 2.05227554e-01 -2.60475755e-01 3.75699133e-01\\n2.15705931e-01 -2.50339955e-01 1.58410624e-01 2.42954895e-01\\n8.20262358e-03 -1.29366100e-01 -2.53765494e-01 3.23635042e-01\\n-1.97265580e-01 -1.58971861e-01 -2.35874146e-01 1.43298998e-01\\n-1.32214040e-01 -5.58442056e-01 5.85828841e-01 3.11824419e-02\\n7.42080212e-02 -7.46050179e-02 -8.57746378e-02 -4.10121605e-02\\n-1.85835615e-01 3.00886959e-01 4.28445674e-02 2.43591174e-01\\n-2.85249054e-01 -2.76624262e-01 -9.27137882e-02 2.80250311e-01\\n-2.50699013e-01 2.23866235e-02 -2.20246643e-01 -1.09423146e-01\\n3.43225181e-01 1.69671595e-01 -4.59755123e-01 1.78900361e-01\\n-4.18040380e-02 -3.04155052e-01 -2.19227076e-02 3.29643071e-01\\n-1.41281307e-01 2.50280350e-01 -5.20857498e-02 -6.49947897e-02\\n5.89169621e-01 2.31374398e-01 2.89622128e-01 -2.26045446e-03\\n2.75445729e-01 -1.53110206e-01 2.59232163e-01 1.00722864e-01\\n-5.21611035e-01 4.42454338e-01 -1.14062294e-01 -1.69909835e-01\\n1.13117598e-01 3.67181115e-02 4.13286358e-01 -2.63497382e-01\\n-7.07108453e-02 -1.98499203e-01 -3.56016397e-01 -3.78715783e-01\\n-2.90088266e-01 -3.64230312e-02 3.65426838e-01 -4.69793051e-01\\n-8.84761009e-03 2.49416679e-01 -6.12476766e-01 -1.58732265e-01\\n1.95361480e-01 2.30769902e-01 8.49370733e-02 1.05911754e-02\\n-1.00727543e-01 -6.15024865e-01 7.96834826e-02 -4.60210770e-01\\n-3.49452645e-01 8.61413553e-02 -2.44263411e-01 5.97687773e-02\\n-1.60614122e-03 6.56268820e-02 -1.20289892e-01 1.67419553e-01\\n-4.15087909e-01 4.28542979e-02 1.74081236e-01 1.29645616e-01\\n3.52620065e-01 5.09687811e-02 -4.16413695e-01 5.42360187e-01\\n-1.77880958e-01 4.42510903e-01 2.65277028e-01 -8.83127034e-01\\n5.55521905e-01 2.30198085e-01 -9.16575715e-02 -2.63767302e-01\\n4.45501894e-01 -4.54591215e-01 -5.40335961e-02 7.24373534e-02\\n-2.35520020e-01 -2.41464645e-01 3.15704733e-01 -1.13929532e-01\\n-2.59803593e-01 6.78429484e-01 1.02698766e-01 1.46381631e-01\\n3.78542066e-01 -2.83877075e-01 -1.76055610e-01 -5.64239174e-02\\n-1.50965393e-01 -1.40857562e-01 -5.81143856e-01 1.23960361e-01\\n-1.10634290e-01 -5.12252092e-01 -7.80403093e-02 -5.08696556e-01\\n-2.25422829e-01 -2.84876466e-01 -2.59731680e-01 2.96742439e-01\\n1.92434937e-01 1.74000308e-01 -1.05507866e-01 -4.82587367e-02\\n1.97027866e-02 -6.91412091e-01 -5.02098352e-02 7.15362057e-02\\n4.32042360e-01 2.59835809e-01 2.61846900e-01 -8.58775452e-02\\n1.63848355e-01 4.10003364e-01 -3.58777672e-01 -4.43524987e-01\\n1.27500042e-01 9.73021537e-02 -4.79912274e-02 -1.67048678e-01\\n1.34975895e-01 4.04518425e-01 -2.28389919e-01 1.31865010e-01\\n3.94292101e-02 -3.70270871e-02 3.49040776e-01 -2.57066917e-02\\n-2.43934885e-01 -2.26500019e-01 -8.27875957e-02 2.37687081e-01\\n-5.93317926e-01 -3.17269415e-01 4.88442451e-01 2.47317463e-01\\n8.97993967e-02 2.22598076e-01 2.77755946e-01 -1.23002328e-01\\n-2.06953898e-01 -9.76430625e-02 2.68041551e-01 1.71976075e-01\\n1.31365255e-01 1.24579370e-01 -1.80519164e-01 -5.35281420e-01\\n-3.50417495e+00 -1.75089076e-01 1.43602312e-01 -2.29981154e-01\\n2.04089463e-01 -1.85537279e-01 2.12182850e-01 2.53077671e-02\\n-3.28020453e-01 -8.48561078e-02 -1.88551605e-01 -1.03937112e-01\\n4.07386757e-03 2.98340470e-01 1.08108923e-01 1.88793227e-01\\n1.36490390e-01 -1.91399798e-01 3.84088070e-03 4.26874876e-01\\n-9.22174305e-02 -6.96362674e-01 -2.55561713e-02 3.61620747e-02\\n1.48184657e-01 6.73779026e-02 -4.15742129e-01 -3.92589383e-02\\n-3.21821988e-01 -3.23158115e-01 1.86734870e-01 -2.35624462e-01\\n-2.44609118e-01 2.20956743e-01 1.81667164e-01 -1.17119715e-01\\n-1.62027944e-02 -2.33508959e-01 2.42001936e-02 -5.44063151e-01\\n8.13470855e-02 -5.98324299e-01 8.88843164e-02 -5.79190031e-02\\n6.72810674e-01 -2.52187073e-01 2.44479910e-01 9.77295414e-02\\n1.59578815e-01 2.52789617e-01 1.10288128e-01 5.62349260e-02\\n-3.28595877e-01 -3.20659429e-01 -1.31877035e-01 -2.53720462e-01\\n5.78959882e-01 4.40056324e-01 -1.70335010e-01 6.36792406e-02\\n9.78659373e-03 -3.37250173e-01 -5.06300986e-01 -3.50638479e-01\\n-2.08132833e-01 -8.52709711e-02 -6.69044137e-01 -3.54889631e-01\\n-8.23016539e-02 -1.18027486e-01 -5.46901338e-02 6.62365854e-01\\n-3.13018799e-01 -3.51793170e-01 3.96526530e-02 -5.07278740e-01\\n3.19762141e-01 -2.42803395e-01 6.55853376e-02 -2.58750886e-01\\n-3.28336746e-01 -4.62177157e-01 1.94543123e-01 -3.54599766e-02\\n-2.66761065e-01 -1.32800430e-01 5.46680465e-02 -1.52359337e-01\\n-3.96212727e-01 -6.26075149e-01 4.42959160e-01 3.95017713e-02\\n3.61081600e-01 6.05906993e-02 3.98483485e-01 -6.88349605e-02\\n3.56861442e-01 -9.98112038e-02 -1.31054252e-01 -4.97816831e-01\\n-1.97644290e-02 5.73071130e-02 5.34489989e-01 -2.34072521e-01\\n1.79413199e-01 9.32373255e-02 -1.95057124e-01 3.07738613e-02\\n4.13011312e-01 1.68356635e-02 8.14857408e-02 -6.31378358e-03\\n2.66395926e-01 -5.47979355e-01 -2.69027323e-01 1.55107424e-01\\n1.08892009e-01 7.03123152e-01 8.41865316e-03 -4.54086185e-01\\n-2.29289770e-01 4.41076189e-01 -6.45007417e-02 -1.18308276e-01\\n-2.19390437e-01 6.81811348e-02 -2.17581362e-01 2.63548553e-01\\n6.64121285e-02 -1.17072552e-01 -2.45330110e-01 -1.29564121e-01\\n-5.84770665e-02 3.63042742e-01 2.81433463e-01 1.61634088e-02\\n-7.70878568e-02 -2.21706539e-01 -3.57245468e-02 2.05241695e-01\\n2.32138753e-01 3.97327662e-01 1.66679710e-01 -3.01004171e-01\\n2.78272890e-02 3.06736737e-01 -3.17709178e-01 3.02906156e-01\\n-1.89054146e-01 1.42882586e-01 -6.38502955e-01 -1.44051403e-01\\n-2.66994298e-01 -4.27788824e-01 3.30012947e-01 3.58485937e-01\\n1.79589659e-01 -7.01749548e-02 6.38324022e-02 -5.05131185e-01\\n3.73124063e-01 1.12982221e-01 1.53083429e-01 7.08051994e-02\\n2.80801230e-03 6.69723630e-01 -1.77098811e-02 -1.62208453e-01\\n-6.04958236e-02 -1.97706092e-02 -2.60907173e-01 -3.42045695e-01\\n2.55826283e-02 -4.81955439e-01 -2.02252090e-01 4.90829349e-01\\n2.33723909e-01 -4.75820377e-02 -3.21290106e-01 1.33100957e-01\\n4.35751788e-02 -1.92549407e-01 -2.90783107e-01 -2.42837332e-02\\n2.01531097e-01 2.00762242e-01 2.64001667e-01 -4.20604885e-01\\n-3.78113724e-02 5.16359285e-02 -2.20098253e-02 4.36224848e-01\\n4.84443493e-02 2.14425087e-01 -6.25033826e-02 -1.04120679e-01\\n6.13250196e-01 -1.28150564e-02 -1.69442758e-01 -1.19935304e-01\\n7.93749243e-02 -1.61210597e-01 -4.15824413e-01 5.83286397e-02\\n-2.43440513e-02 -3.14145714e-01 8.84527341e-02 1.02038935e-01\\n1.09011732e-01 -5.32904565e-02 -5.95097363e-01 -1.72616392e-01\\n-3.80835503e-01 -6.19084686e-02 4.15815078e-02 -5.36376238e-01\\n3.89634334e-02 1.94169749e-02 -5.49118102e-01 2.83013165e-01\\n-1.59557611e-01 2.34637130e-02 3.27658169e-02 1.00415193e-01\\n-2.10372925e-01 -1.04411289e-01 1.39792547e-01 1.90717608e-01\\n-2.65638351e-01 -1.59193531e-01 4.23223004e-02 -9.18339968e-01\\n1.52262151e-01 7.36924708e-02 -1.32943735e-01 1.04808800e-01\\n3.55764218e-02 -7.74015486e-01 1.29943520e-01 -3.92476737e-01\\n-6.33490160e-02 1.50974005e-01 -2.50673473e-01 -3.95439118e-01\\n2.08995610e-01 3.50915939e-02 -4.07000482e-01 4.15662140e-01\\n-5.61714411e-01 3.19586158e-01 8.56264532e-02 7.89562017e-02\\n8.55175704e-02 -2.07664788e-01 1.59763098e-01 -2.32482165e-01\\n-3.70378107e-01 -2.01556742e-01 -2.06207275e-01 -3.23712707e-01\\n-8.40868428e-03 -3.26630116e-01 -1.08477421e-01 2.01712493e-02\\n4.21023816e-01 1.32078126e-01 -9.07460302e-02 -2.76236713e-01\\n6.86943457e-02 -4.73630935e-01 1.35386229e-01 -2.70865858e-01\\n-1.13083154e-03 -1.17591299e-01 2.10089207e-01 2.35687066e-02\\n2.07215667e-01 -3.16815883e-01 6.22050405e-01 -2.76310802e-01\\n-3.45916152e-01 -1.43903702e-01 6.32182583e-02 7.51021132e-02\\n2.37726122e-01 -3.78808647e-01 5.21192588e-02 2.72124439e-01\\n9.57002863e-02 7.74144009e-03 2.59716749e-01 -1.75252408e-01\\n-1.14230126e-01 1.79250881e-01 -5.00780165e-01 1.60120592e-01\\n8.63532364e-01 8.99323672e-02 2.56249458e-01 1.37095362e-01\\n1.20234236e-01 2.59131551e-01 4.77859616e-01 1.57975741e-02\\n-8.44413191e-02 2.87263215e-01 5.32845482e-02 -4.52349544e-01\\n-1.33555338e-01 -1.50623873e-01 -1.66257456e-01 -2.96008676e-01\\n6.02666676e-01 2.33034328e-01 -3.36251676e-01 -4.54831868e-01\\n-7.99099877e-02 -1.00721851e-01 4.06935215e-01 1.51048526e-02\\n-1.40468761e-01 -1.76450998e-01 4.19293970e-01 -6.43341243e-02\\n3.23634148e-01 5.25896311e-01 -1.65244415e-01 -2.80985773e-01\\n-1.03312410e-01 2.46023715e-01 1.93510264e-01 4.52180237e-01\\n-1.55434579e-01 1.74752906e-01 -1.07079193e-01 1.43060103e-01\\n-1.89065054e-01 -8.78895074e-03 3.01000088e-01 6.83068782e-02\\n2.19076112e-01 6.77633360e-02 4.65387374e-01 5.59907198e-01\\n1.90063655e-01 5.31919301e-01 3.54384571e-01 -1.32503854e-02\\n3.20093125e-01 6.66606545e-01 3.78609300e-01 1.04473203e-01\\n-3.07683758e-02 1.38937786e-01 6.82053268e-02 -7.74407685e-02\\n2.82814741e-01 3.94464582e-01 2.25611493e-01 8.85194421e-01\\n3.46412063e-01 3.44777614e-01 7.24910855e-01 -6.45051658e-01\\n-4.96049970e-01 9.21939537e-02 6.03345633e-01 -4.64121521e-01\\n5.40326983e-02 1.62939936e-01 -2.49493226e-01 2.17103228e-01\\n-5.56812644e-01 -2.11038455e-01 4.21759440e-03 1.22597618e-02\\n1.01786721e-02 -9.87417027e-02 -9.09411311e-02 1.19228959e-01\\n-1.19134754e-01 -1.98214710e-01 -2.97854602e-01 -1.21630073e-01\\n-2.32164294e-01 -5.52714802e-02 -1.02314711e-01 -2.53677312e-02\\n-2.29588710e-02 -3.22520316e-01 -6.94573820e-02 6.73100026e-03\\n3.18767995e-01 -2.02134550e-01 -2.14769408e-01 -7.11566284e-02\\n1.59569532e-01 2.47494087e-01 5.84787607e-01 5.20478673e-02\\n1.97300874e-02 -1.49446592e-01 -1.87031940e-01 3.72363031e-02\\n6.18296191e-02 1.31450161e-01 7.60812964e-03 3.67187589e-01\\n-2.83870757e-01 -2.00773999e-01 1.73787057e-01 2.05903783e-01\\n-3.76042515e-01 -1.09815635e-01 -4.55926470e-02 2.24547386e-01\\n1.80376992e-02 1.47408113e-01 -2.86194414e-01 1.76045194e-01\\n-2.14229807e-01 -5.73754609e-01 4.62805003e-01 -2.06788361e-01\\n-1.24913402e-01 7.54182637e-02 3.20095986e-01 2.22538635e-01\\n-2.22011238e-01 -3.66530903e-02 -1.39946029e-01 2.69055218e-01\\n-8.69691595e-02 3.73143971e-01 -2.42382780e-01 -2.33777374e-01\\n-2.87254810e-01 3.02292496e-01 2.91829240e-02 1.88529760e-01\\n-2.78444849e-02 4.86935914e-01 -3.09117362e-02 1.36623368e-01\\n3.12452167e-01 3.34689692e-02 -2.60901988e-01 -3.44393373e-01\\n-2.40466744e-01 -8.69643986e-02 6.19944409e-02 -2.59186383e-02\\n1.95385382e-01 -3.49411130e-01 -1.29450992e-01 -2.11682081e-01\\n-1.64196745e-01 -4.55375612e-01 -9.15977806e-02 2.57502776e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: Responsible for delivering projects in the Big Data (Engineer and Analytics) field A key position as Big Data Ingenieur, where you are designing and building an analytics platform using state of the art Big Data technologies and provide services to enable Data Scientists to build advanced analytics models You are taking an active part of our transformation into a more data and analytical insights driven bank Within the highly motivated team, you collaborate closely with business teams to understand data and functional requirements You design and build data pipelines to ingest, integrate, standardize, clean and publish data You are responsible for defining and crafting integration patterns with downstream applications You provide input into overall IT architecture of the solution, including technical environment configuration, data modelling, data integration, data presentation, information security and other IT architecture related topics You support Data Scientist in their day-to-day work on a variety of topics, including tools and data analysis methods You operationalize analytical models developed by the Data Scientists to embed them into the bank’s business processes Your profile: A university degree or equivalent education in IT or another technical specialization, ideally with focus on Data Management You have proven work experience of at least two years as a Data Engineer using Big Data technologies Experience with Hadoop based analytical solutions, ideally on Cloudera distribution, as well as practical skills in creating data processing pipelines using Spark, Scala, Python or similar tools Good knowledge of SQL, Hive and Impala databases Ideally experience with Jupyter Notebook, Hue, other end user tools If you already had experience with Tableau, Splunk or an agile work environment you have an advantage You are able to work in a dynamic environment, be comfortable with changing priorities and tight deadlines, manage you own workload with minimum supervision You build strong collaborative relationships with colleagues in IT and business groups Excellent verbal and written communication skills in English and German Benötigte Skills Scala Python Python Englisch Security Datawarehouse',\n", + " 'soft_skills': '[\"Collaboration\", \"Management\", \"Supervision\", \"Team Motivation\", \"Integration\", \"Positivity\", \"Written Communication\"]',\n", + " 'hard_skills': '[\"Information Presentation Facility\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Agility\", \"Analytics\", \"Data Management\", \"Data Modeling\", \"Data Engineering\", \"Scala (Programming Language)\", \"Activism\", \"Apex Data Loader\", \"Functional Requirement\", \"Information Security Management\", \"Jupyter Notebook\", \"Data Pipeline\", \"Idealization\", \"Splunk\", \"Hostile Work Environment\", \"Pipelining\", \"Operationalization\", \"Business Process\", \"Apache Hive\", \"Electronic Data Processing\", \"Big Data\", \"Survey Data Analysis\", \"Transformation (Genetics)\", \"Service Provider\", \"Banking\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Kongo', 'Maltes']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data analyst (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.11146176e-01 2.39136994e-01 2.90398657e-01 6.72261640e-02\\n4.67736870e-01 -9.18641686e-02 3.97096761e-02 3.05283010e-01\\n-3.36161889e-02 -3.97795141e-01 1.86883882e-02 -2.00990930e-01\\n-2.05021411e-01 -2.35511735e-02 -6.09298535e-02 3.74364942e-01\\n3.14212054e-01 1.27775088e-01 -6.98458254e-02 3.12407762e-01\\n1.45176515e-01 4.35345173e-02 -1.98234499e-01 6.25866890e-01\\n4.50871587e-01 -1.47546995e-02 -1.56236291e-02 1.13502875e-01\\n-2.38367617e-01 -2.32878581e-01 3.74210626e-01 2.20305279e-01\\n-1.62239343e-01 -3.08662742e-01 -9.92584676e-02 1.70678794e-01\\n-5.39318696e-02 8.47874209e-02 -2.23041736e-02 1.64997160e-01\\n-4.43314523e-01 -1.50232136e-01 -4.09958661e-02 1.29467383e-01\\n-2.19754845e-01 -2.51332641e-01 1.42236307e-01 -1.28595188e-01\\n2.61874795e-01 5.05346768e-02 -5.89948416e-01 4.53012794e-01\\n-2.18548268e-01 -1.04258947e-01 1.92739040e-01 5.31125367e-01\\n6.16231486e-02 -4.91898745e-01 -4.69496667e-01 -2.60333568e-01\\n1.46780655e-01 -1.56618625e-01 2.47780476e-02 -3.58066887e-01\\n4.70109582e-01 9.63611081e-02 1.18217655e-01 2.74166346e-01\\n-7.71098852e-01 2.31758263e-02 -3.16714168e-01 1.75135082e-03\\n-4.54640388e-01 -7.57691935e-02 -3.10515761e-01 1.04245499e-01\\n-1.58402070e-01 3.70413184e-01 1.12624932e-02 2.32621282e-02\\n-1.45271048e-01 2.29412317e-01 -2.66939670e-01 2.36535490e-01\\n2.75408685e-01 7.42758662e-02 1.51272535e-01 2.91059673e-01\\n-4.29618418e-01 4.08743739e-01 2.19384152e-02 -2.38176927e-01\\n2.33093336e-01 2.21849307e-01 3.86615813e-01 1.24891602e-01\\n1.73213035e-01 1.52267575e-01 -2.33110532e-01 3.92894864e-01\\n2.57550716e-01 -4.08816308e-01 6.20822236e-02 -1.45078123e-01\\n9.10583436e-02 -8.66806731e-02 3.43637615e-02 1.48119822e-01\\n-2.32768223e-01 4.60640490e-01 1.36696815e-01 -1.41709283e-01\\n-6.29564077e-02 -4.81269240e-01 -1.62305698e-01 -3.27140689e-02\\n7.92074353e-02 4.39742059e-02 1.67982981e-01 2.54728466e-01\\n2.62138724e-01 6.84838220e-02 1.69045091e-01 7.56495953e-01\\n-1.26601845e-01 1.12024628e-01 -1.41819611e-01 3.01273346e-01\\n2.21235931e-01 -2.70826876e-01 2.78461546e-01 4.53133732e-01\\n1.90669015e-01 -1.73137933e-01 -2.82631457e-01 2.21721619e-01\\n-1.44065320e-01 -9.34531391e-02 -3.91228259e-01 1.36929303e-01\\n2.69087613e-01 -3.57735693e-01 6.72580719e-01 1.49582848e-01\\n2.45194852e-01 7.80583099e-02 -1.55788623e-02 -1.30698770e-01\\n-4.36149128e-02 2.64012069e-01 1.34398162e-01 3.10557485e-01\\n-2.63451964e-01 -1.91503137e-01 -1.76833093e-01 8.09168667e-02\\n-4.48427796e-01 7.21118152e-02 -9.89824533e-02 -2.68950202e-02\\n2.14500323e-01 -2.85551287e-02 -3.70262802e-01 1.00155491e-02\\n-8.70728195e-02 -1.81526154e-01 1.52622461e-01 4.11153823e-01\\n-9.36509855e-03 2.46026963e-01 -1.35904059e-01 -5.58928922e-02\\n7.83346057e-01 1.72828659e-01 1.17035866e-01 -2.60019824e-02\\n3.52899522e-01 -3.27306613e-02 2.50832081e-01 1.74996436e-01\\n-7.91738033e-01 3.01586330e-01 -5.47335446e-02 -3.43929827e-01\\n2.41265878e-01 8.60665664e-02 4.28674698e-01 -4.01118368e-01\\n1.48426099e-02 -2.10689008e-01 -3.43077928e-01 -2.08893120e-01\\n-4.12101448e-01 -7.70077705e-02 3.63120854e-01 -3.92112583e-01\\n-1.26116022e-01 1.61451533e-01 -5.51733792e-01 -1.62621871e-01\\n8.11881199e-02 4.88931276e-02 1.87472507e-01 1.75200582e-01\\n-4.73893993e-02 -6.77190542e-01 -1.61201674e-02 -4.77974623e-01\\n-5.38287342e-01 1.16164260e-01 -4.74248141e-01 3.79593611e-01\\n1.23104841e-01 -2.29068901e-02 -2.15525210e-01 2.24809483e-01\\n-2.39478484e-01 -2.39135846e-02 9.75539014e-02 5.92561439e-02\\n1.82818696e-01 5.38635775e-02 -4.57788795e-01 3.51053119e-01\\n-1.28339663e-01 5.41842461e-01 1.60109580e-01 -6.45862103e-01\\n5.85337758e-01 2.81759024e-01 -5.23681045e-02 -3.67121845e-01\\n5.14721453e-01 -2.45323122e-01 -1.36794776e-01 3.26134078e-02\\n-3.29582632e-01 -3.10149074e-01 1.65862188e-01 5.08003943e-02\\n-2.42900312e-01 5.14442205e-01 1.48581460e-01 7.98721611e-03\\n2.41281405e-01 -2.76104212e-01 -2.72475537e-02 2.36466959e-01\\n-1.76059365e-01 -2.04537705e-01 -3.59438539e-01 -8.69369209e-02\\n-6.31464422e-02 -4.35637712e-01 -7.06826448e-02 -3.22943330e-01\\n-2.48178348e-01 -3.95703912e-01 -3.32487941e-01 4.96108174e-01\\n2.13452309e-01 1.44497991e-01 2.19330117e-02 3.61012085e-03\\n-1.15730695e-01 -7.52296329e-01 2.15175860e-02 1.27884224e-01\\n4.23383772e-01 2.19577149e-01 1.08746946e-01 -2.23259747e-01\\n1.15951747e-01 6.33750677e-01 -4.12900329e-01 -4.04958874e-01\\n8.42166096e-02 2.42692947e-01 -1.09316796e-01 -1.01274751e-01\\n3.74676869e-03 5.04493177e-01 -2.80864596e-01 6.11973070e-02\\n-7.58251175e-02 -2.68021524e-01 3.58317584e-01 -1.20434061e-01\\n-2.82962710e-01 -2.45179549e-01 -2.45533884e-01 1.78346798e-01\\n-5.27869880e-01 -4.23619866e-01 3.87473166e-01 2.88734734e-01\\n1.86963141e-01 3.50037329e-02 1.02335550e-01 -4.64270711e-02\\n-1.57854274e-01 -4.39671606e-01 2.50005364e-01 1.52343020e-01\\n6.13475889e-02 2.33513087e-01 -1.95682943e-01 -5.73676109e-01\\n-3.49422789e+00 -6.75360784e-02 2.13890582e-01 -2.54013956e-01\\n2.12645367e-01 4.69190069e-02 7.90548399e-02 -1.11705221e-01\\n-3.43133509e-01 1.22256674e-01 -2.37963364e-01 -2.34372005e-01\\n-3.24390344e-02 4.20925260e-01 1.61963359e-01 6.78747147e-02\\n2.07169950e-01 -2.55124152e-01 -1.45022094e-01 3.11259210e-01\\n-1.39891416e-01 -4.61999357e-01 6.88784420e-02 -4.90603000e-02\\n1.85138121e-01 3.43550116e-01 -1.98736668e-01 -1.55047953e-01\\n-2.49702513e-01 -2.97027469e-01 1.72101911e-02 -2.60298371e-01\\n-1.39920339e-01 2.30585366e-01 1.44387588e-01 1.01313949e-01\\n-6.12024665e-02 -3.14160198e-01 -6.77473843e-02 -5.13232589e-01\\n-4.88445498e-02 -3.88827294e-01 -3.11686601e-02 -1.89167485e-01\\n7.96588957e-01 -1.73933059e-01 1.31757602e-01 5.66122532e-02\\n1.86294615e-01 1.30174458e-01 7.95167387e-02 5.70563860e-02\\n-1.87310830e-01 -1.92057058e-01 -2.69195378e-01 -2.04498693e-01\\n6.55414701e-01 2.99004734e-01 -1.74768910e-01 -1.14557110e-01\\n2.02871352e-01 -4.24003184e-01 -3.15629900e-01 -2.77638942e-01\\n-9.69398096e-02 -2.74193108e-01 -4.93626118e-01 -3.56409341e-01\\n-1.75905108e-01 -3.78155485e-02 -1.10586822e-01 5.74131727e-01\\n-3.95922482e-01 -3.69004101e-01 -2.52287053e-02 -4.76713926e-01\\n1.79998487e-01 -2.77745962e-01 2.28470340e-02 -4.69184443e-02\\n-3.60951602e-01 -6.40597463e-01 -1.33063942e-01 -6.86763898e-02\\n-1.69955894e-01 -3.69998127e-01 -4.64197919e-02 -1.25331938e-01\\n-4.13509786e-01 -7.01379120e-01 3.71452808e-01 3.18277925e-02\\n2.77836591e-01 2.33947918e-01 2.59112298e-01 7.26864636e-02\\n4.94323790e-01 -1.10832341e-01 3.34795713e-02 -3.13854486e-01\\n6.31374940e-02 -1.89838409e-01 6.00906670e-01 -2.14308321e-01\\n-1.43257463e-02 5.43035530e-02 -2.88209081e-01 -1.76593103e-02\\n3.35261792e-01 -4.51940298e-02 6.09509535e-02 -1.37918174e-01\\n4.07751232e-01 -2.84172863e-01 -2.38206550e-01 2.26504251e-01\\n8.88334662e-02 5.83834469e-01 8.97526965e-02 -3.04954678e-01\\n-9.16488841e-02 4.44887698e-01 -2.00251624e-01 -4.79343049e-02\\n-1.48604453e-01 1.67129170e-02 -1.38177127e-01 2.52459079e-01\\n7.11158812e-02 -1.89010307e-01 -7.25988001e-02 -2.97308490e-02\\n-4.05714177e-02 2.88314700e-01 2.54718333e-01 -1.05478473e-01\\n-1.06964335e-02 -1.98784798e-01 -9.49203745e-02 1.21635526e-01\\n2.06361264e-01 3.38137209e-01 6.96667433e-02 -2.31046945e-01\\n-1.68194458e-01 3.03568035e-01 4.44073826e-02 2.44361777e-02\\n-1.92213088e-01 8.31995904e-02 -4.74086881e-01 -2.16079816e-01\\n-3.15263063e-01 -3.54919076e-01 2.37229243e-01 2.40904644e-01\\n1.36307985e-01 -2.25260202e-02 1.29438326e-01 -5.55113852e-01\\n2.18901113e-01 2.41248056e-01 2.08037421e-01 5.78624681e-02\\n-1.57106131e-01 3.58365804e-01 -6.48141950e-02 -1.53316185e-01\\n-1.52344659e-01 1.53613091e-01 -1.76706254e-01 -1.65021494e-01\\n2.33898431e-01 -4.29733545e-01 -1.07338585e-01 4.52064395e-01\\n2.15695009e-01 -1.56864017e-01 -3.44151855e-01 2.93253422e-01\\n-1.32898182e-01 -2.37496436e-01 -2.68674761e-01 -1.11861162e-01\\n1.70387059e-01 1.13470405e-01 1.85515732e-01 -2.20539033e-01\\n-8.65486041e-02 4.12845165e-02 -1.63014472e-01 3.14923882e-01\\n3.07883285e-02 -6.74817115e-02 -3.19910228e-01 -6.12908341e-02\\n4.40704405e-01 7.67102838e-03 -5.92696741e-02 -8.13967586e-02\\n1.94043547e-01 -2.70835936e-01 -4.43066657e-01 -3.19895800e-03\\n-3.60884927e-02 -2.51245588e-01 -4.75164205e-02 2.03575760e-01\\n-1.11812867e-01 1.17998362e-01 -5.84350884e-01 -2.75305152e-01\\n-4.60165620e-01 -3.09753537e-01 2.93318257e-02 -2.59893268e-01\\n7.34278336e-02 -1.64992779e-01 -4.57648486e-01 1.76786691e-01\\n-2.39894867e-01 -5.06835207e-02 1.40728399e-01 1.23337083e-01\\n-3.51873070e-01 -2.61124432e-01 2.81367507e-02 1.68059170e-01\\n-3.21979046e-01 -1.81134939e-01 8.52563977e-02 -8.83151948e-01\\n1.40701473e-01 3.83930728e-02 -1.60850376e-01 -3.55063006e-03\\n-1.63479403e-01 -5.42055547e-01 1.95036083e-03 -5.38012087e-01\\n-8.35062563e-02 1.22421332e-01 -2.37064302e-01 -2.10910305e-01\\n1.84065998e-01 -1.50267959e-01 -4.04174268e-01 4.15074587e-01\\n-2.71812558e-01 4.20973003e-01 -1.73982680e-01 1.04589418e-01\\n-6.80067912e-02 -1.81918353e-01 4.02636938e-02 -2.39861324e-01\\n-4.48657870e-01 -2.48203337e-01 -1.94506347e-01 -1.20701671e-01\\n1.56704098e-01 -4.47014183e-01 -6.41594082e-02 1.65948048e-01\\n3.35748494e-01 6.74316064e-02 -6.04099967e-02 -8.26721340e-02\\n1.63759202e-01 -6.51322722e-01 -5.36895804e-02 -2.14780778e-01\\n-8.72551128e-02 -6.94406480e-02 2.19604433e-01 6.30603731e-03\\n2.03320086e-01 -2.10058764e-01 3.88966173e-01 -4.42216754e-01\\n-1.75246209e-01 1.17239505e-01 7.84682333e-02 -1.87138811e-01\\n1.87136471e-01 -5.00908196e-01 1.68356467e-02 4.43145037e-01\\n1.45313323e-01 2.06638202e-02 1.32052138e-01 5.64344712e-02\\n-1.09408908e-01 2.68779397e-01 -2.59354949e-01 9.61166695e-02\\n6.03839278e-01 2.77027667e-01 1.16187841e-01 1.03234105e-01\\n1.24363542e-01 2.59936631e-01 4.98579562e-01 1.73416823e-01\\n1.98958255e-02 1.88118875e-01 1.11507840e-01 -4.11275744e-01\\n1.81703977e-02 1.41565993e-01 -2.49772146e-01 -2.42393494e-01\\n5.63166380e-01 4.73994672e-01 -6.61361516e-01 -2.61521369e-01\\n-5.62981702e-02 -1.01802915e-01 4.04787481e-01 4.12870385e-02\\n-1.20411702e-02 -1.45893574e-01 4.82355952e-01 -5.69226071e-02\\n-5.45800570e-03 4.72445220e-01 -7.99961537e-02 -9.88873094e-02\\n-3.49095240e-02 2.28066310e-01 6.70130253e-02 6.20501220e-01\\n-1.72415584e-01 2.73590624e-01 -1.94834247e-01 -1.59259641e-03\\n-7.86950514e-02 1.40784889e-01 2.50235498e-01 1.97083335e-02\\n2.09688634e-01 3.72091979e-02 3.98986816e-01 5.09649038e-01\\n4.81452644e-02 4.27708000e-01 2.37353697e-01 -1.38520095e-02\\n3.19628447e-01 5.18140674e-01 2.48830721e-01 1.79288089e-01\\n-5.46329245e-02 2.34286606e-01 1.31370991e-01 -5.62561564e-02\\n4.93212581e-01 3.49074483e-01 6.64937645e-02 8.27935815e-01\\n2.76108474e-01 4.11038131e-01 5.29971719e-01 -5.89560151e-01\\n-2.87481576e-01 2.62181938e-01 5.14390290e-01 -2.24307090e-01\\n-1.83915887e-02 8.86418819e-02 -2.49171734e-01 3.58812451e-01\\n-4.94286478e-01 -1.42611936e-01 5.19214571e-03 1.49646103e-01\\n3.65920514e-02 -1.87115803e-01 -3.37863564e-01 -5.69242164e-02\\n-8.12890530e-02 1.14821516e-01 -4.45865571e-01 -2.48538092e-01\\n-2.85956979e-01 -7.40103945e-02 -5.68135306e-02 -1.03276350e-01\\n1.20315842e-01 -3.10691357e-01 -4.02096696e-02 -2.27799919e-02\\n3.91716212e-01 -2.66793311e-01 -1.35580033e-01 -9.92377102e-02\\n2.05038175e-01 3.00713867e-01 5.45770109e-01 -1.16883837e-01\\n6.89519048e-02 -1.42826974e-01 -1.73881114e-01 8.33186507e-02\\n1.43051641e-02 1.29887804e-01 1.29729494e-01 2.14920774e-01\\n-2.70766467e-01 -2.13403910e-01 1.92004085e-01 3.33850175e-01\\n-4.80226636e-01 -6.80399314e-02 -1.25760242e-01 2.23670140e-01\\n-2.79381480e-02 1.29504248e-01 -2.66258895e-01 1.70314372e-01\\n-2.64819741e-01 -3.20332706e-01 3.34748477e-01 -3.92053574e-02\\n-4.73633558e-02 1.37564570e-01 3.22856426e-01 1.63980454e-01\\n-1.50034964e-01 -6.38918132e-02 -8.22629109e-02 2.60850549e-01\\n-1.00972950e-01 3.52459103e-01 -1.36665376e-02 -3.84961545e-01\\n-2.29706496e-01 2.25182116e-01 -8.39608833e-02 1.11901775e-01\\n-1.02839261e-01 3.37843090e-01 -2.22788919e-02 5.00880219e-02\\n4.07228440e-01 1.11921400e-01 -3.06955397e-01 -2.50825197e-01\\n-2.12032944e-01 -6.51813298e-02 3.31513770e-02 5.26088141e-02\\n2.28047259e-02 -3.78458411e-01 -1.68757498e-01 -1.24368958e-01\\n-7.51227140e-02 -2.64934540e-01 -5.47827929e-02 8.86953324e-02]]',\n", + " 'job_description': 'Job Informationen Responsibilities: You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Our Requirements: You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization. You are always curious to try out new tools and libraries for the analysis and visualisation of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills SQL MySQL NoSQL Python Python',\n", + " 'soft_skills': '[\"Communications\", \"Writing\", \"Proactivity\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Python Server Pages\", \"NoSQL\", \"Tooling\", \"Accessioning\", \"Advising\", \"Agility\", \"Statistics\", \"Machine Learning\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Dataset\", \"Data Visualization\", \"Machine Learning Methods\", \"Machine Learning Algorithms\", \"Scalability\", \"Electronic Data Processing\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Moldavian']\"},\n", + " {'company_id': '19',\n", + " 'job_title': 'business analyst / data reporting analyst (12 months)',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.badenochandclark.com',\n", + " 'jobdescription_embedded': '[[-1.79447964e-01 2.86513597e-01 3.78280342e-01 -2.52302792e-02\\n5.23037195e-01 -4.39867601e-02 1.07963197e-01 1.88472569e-01\\n3.64018185e-03 -1.77003235e-01 -1.16828956e-01 -1.56377643e-01\\n1.23066761e-01 1.10456981e-01 3.66958790e-02 2.43615508e-01\\n1.60540745e-01 9.84025747e-03 6.47908151e-02 1.68786317e-01\\n5.93287311e-03 -1.11650005e-01 1.48235813e-01 4.86619204e-01\\n3.59321296e-01 1.37858927e-01 6.13245973e-03 1.70798793e-01\\n-3.00801188e-01 -3.84835720e-01 3.54195267e-01 2.01949803e-03\\n-6.02771118e-02 -1.00105315e-01 1.80523708e-01 1.01075403e-01\\n-1.84611067e-01 -3.56411152e-02 -3.41986597e-01 5.62147163e-02\\n-3.67301047e-01 -2.25158840e-01 8.40446651e-02 1.07689060e-01\\n-3.61527801e-01 -4.26999658e-01 7.65583850e-03 -1.74954802e-01\\n7.30290189e-02 -2.74822935e-02 -4.31555897e-01 5.72074771e-01\\n-6.18249550e-02 -2.42737904e-01 1.69356346e-01 7.53475428e-01\\n-9.31170732e-02 -5.36102772e-01 -4.83433634e-01 -3.40537399e-01\\n1.40936688e-01 -1.21580213e-01 9.95273367e-02 -1.76851541e-01\\n4.56898600e-01 -3.28019075e-02 -2.81006843e-02 4.22163516e-01\\n-8.03729117e-01 4.83148508e-02 -3.93989563e-01 5.32990918e-02\\n-3.13263863e-01 -5.95775582e-02 -4.49890435e-01 -1.25881016e-01\\n7.73999318e-02 3.77115577e-01 2.27430724e-02 5.50630987e-02\\n-3.08774952e-02 1.65760577e-01 -1.95615023e-01 1.05399773e-01\\n2.02926010e-01 2.03124762e-01 2.88049221e-01 1.16219565e-01\\n-2.80824333e-01 6.01850569e-01 2.02562630e-01 -2.39281014e-01\\n1.68768361e-01 6.56339750e-02 1.99672967e-01 1.47776872e-01\\n5.46500944e-02 2.90995479e-01 -1.63763583e-01 -7.23394286e-03\\n1.73894256e-01 -1.82802409e-01 1.26790553e-01 2.11890653e-01\\n2.87969969e-02 -8.77602026e-02 -2.94250418e-02 1.76427811e-01\\n-3.42990190e-01 3.81165504e-01 8.58354941e-02 -3.00373346e-01\\n-8.74687359e-02 -5.11184454e-01 -2.80624866e-01 -9.67374013e-04\\n-2.29975441e-03 2.90555120e-01 8.12232345e-02 2.39082918e-01\\n1.52077362e-01 -3.52145918e-02 2.26108268e-01 8.17757010e-01\\n-1.07728578e-01 9.11479220e-02 -1.36031702e-01 2.96075553e-01\\n6.74189776e-02 -1.66092947e-01 1.48379281e-01 2.79533625e-01\\n-1.80734918e-02 -5.44398725e-02 -2.34303802e-01 2.02209681e-01\\n-5.01310676e-02 -2.36210644e-01 -1.65947855e-01 2.82227755e-01\\n-2.25580186e-01 -5.20489275e-01 5.02682447e-01 -3.05873808e-02\\n-5.64028099e-02 -1.43078700e-01 -1.44485667e-01 1.34463027e-01\\n-3.54818016e-01 3.45102966e-01 1.15729131e-01 1.48845881e-01\\n-1.74660623e-01 -2.50556529e-01 -9.66675878e-02 2.17695028e-01\\n-1.55031636e-01 -7.90180042e-02 -3.38122904e-01 -6.76972568e-02\\n4.15137976e-01 1.84618622e-01 -3.64699185e-01 3.25970829e-01\\n-5.67893684e-03 -1.37583405e-01 -9.04831365e-02 2.31672168e-01\\n-2.21214101e-01 1.96571946e-01 -7.53042055e-03 -1.17221840e-01\\n4.72782195e-01 -1.59867648e-02 2.95181572e-01 -3.89898121e-02\\n2.40365192e-01 -7.10021779e-02 2.91095644e-01 6.47232309e-02\\n-5.59601128e-01 5.08148670e-01 -4.22367863e-02 -1.11897491e-01\\n1.90278307e-01 -5.51753007e-02 3.22251320e-01 -3.07474464e-01\\n2.67082863e-02 -2.42116302e-01 -4.04859990e-01 -3.95043224e-01\\n-2.46727824e-01 -3.35375518e-02 2.68744558e-01 -4.85565692e-01\\n-4.74129207e-02 2.68589318e-01 -3.79583687e-01 -1.63264245e-01\\n2.87868679e-01 1.67457893e-01 1.29416466e-01 2.00379536e-01\\n-2.87217926e-02 -4.83435333e-01 2.23927572e-01 -2.69724935e-01\\n-2.35910401e-01 1.57709554e-01 -3.57469708e-01 1.16177246e-01\\n1.38788922e-02 1.37156367e-01 7.29781389e-02 9.75961462e-02\\n-3.02005023e-01 2.46177185e-02 2.35425934e-01 1.35837570e-01\\n3.10936153e-01 -5.35634570e-02 -6.04386151e-01 5.33624709e-01\\n-2.62489676e-01 3.67109418e-01 2.78009176e-01 -9.87781286e-01\\n4.74844813e-01 1.93025380e-01 8.84967148e-02 -3.10760200e-01\\n5.00050843e-01 -4.00166512e-01 -2.14452576e-02 2.27060229e-01\\n-4.42638367e-01 -1.47331268e-01 1.61286905e-01 -1.04410000e-01\\n-1.80344388e-01 5.61402082e-01 1.33853242e-01 9.91680250e-02\\n4.20857936e-01 -1.99699596e-01 -1.06992245e-01 8.66940990e-02\\n-1.56068981e-01 -1.61890432e-01 -4.28281099e-01 5.71010187e-02\\n-3.76300998e-02 -6.11685991e-01 -1.21742666e-01 -4.78099525e-01\\n-1.79104134e-01 -4.76762831e-01 5.09565771e-02 2.25373104e-01\\n1.69011772e-01 3.64121139e-01 1.48785144e-01 -9.81002301e-03\\n-1.75922900e-01 -4.58695114e-01 -2.00001910e-01 2.79803053e-02\\n2.25790948e-01 3.56179833e-01 1.05902404e-01 -9.52719972e-02\\n3.23290154e-02 4.50105309e-01 -4.00761127e-01 -3.56638789e-01\\n1.77089289e-01 1.02263331e-01 -1.17568575e-01 -1.31632611e-01\\n9.51088741e-02 3.26985210e-01 -1.74194857e-01 4.89463285e-02\\n-3.24247517e-02 -8.39256570e-02 2.73472458e-01 1.69478536e-01\\n-7.94007182e-02 -3.69514108e-01 -2.46041507e-01 2.27990508e-01\\n-5.50941527e-01 -2.07169741e-01 6.27860546e-01 3.70220020e-02\\n2.38483157e-02 2.49987736e-01 3.30519170e-01 -4.47511151e-02\\n-1.48024842e-01 -5.04610613e-02 1.84374809e-01 4.63402048e-02\\n1.79263532e-01 -1.23944618e-01 -2.05785289e-01 -4.31265235e-01\\n-3.82345748e+00 -2.37853855e-01 8.38528946e-03 -3.23485851e-01\\n3.34893316e-01 -1.86766714e-01 1.98685557e-01 4.80176974e-03\\n-3.88040930e-01 7.09176362e-02 -2.14593917e-01 -5.91906719e-02\\n1.47860363e-01 2.96976894e-01 1.40410528e-01 1.92919388e-01\\n3.64181511e-02 -3.55620980e-01 5.69503233e-02 6.10241592e-01\\n4.56366353e-02 -5.85422039e-01 5.12554795e-02 1.36476364e-02\\n2.49701932e-01 2.39266425e-01 -5.48366904e-01 1.27559423e-01\\n-2.14705646e-01 -1.52021423e-01 2.50717312e-01 -1.38931066e-01\\n-2.23664492e-01 3.66090387e-01 1.12147838e-01 -2.74968058e-01\\n-7.47967660e-02 -2.78496593e-01 6.25014827e-02 -3.66465151e-01\\n5.84763549e-02 -6.89744771e-01 -1.51568642e-02 6.15755841e-02\\n7.53514409e-01 -2.14701176e-01 -3.41823399e-02 5.94192781e-02\\n9.42350402e-02 1.76014543e-01 7.42624849e-02 -2.68461239e-02\\n-3.98580641e-01 -1.96517274e-01 -3.04441210e-02 -1.53660610e-01\\n5.72291195e-01 5.27032077e-01 -3.28242928e-01 1.11337334e-01\\n6.18564850e-03 -4.15609807e-01 -3.84610981e-01 -3.85089666e-01\\n-2.49663681e-01 -1.71138451e-01 -6.50625169e-01 -3.59248310e-01\\n-1.60473123e-01 -5.17408997e-02 -2.45564263e-02 4.80474681e-01\\n-3.61089170e-01 -4.96081382e-01 -5.85700236e-02 -4.47964966e-01\\n3.11138511e-01 8.44782218e-03 1.51607916e-01 -2.54973471e-01\\n-3.26525792e-02 -3.52097899e-01 2.27948263e-01 -1.01223901e-01\\n-2.23179236e-01 6.68369979e-02 1.37232289e-01 -1.21751614e-01\\n-5.92266500e-01 -3.95283848e-01 4.90656346e-01 3.97154093e-02\\n3.53644818e-01 3.55451442e-02 3.10108155e-01 8.62584859e-02\\n4.71841931e-01 -1.82342410e-01 1.61080033e-01 -5.17873883e-01\\n-1.69079363e-01 -3.44438851e-02 6.24815643e-01 -3.94805998e-01\\n1.10711619e-01 -7.09360614e-02 -2.88931459e-01 -4.69189137e-02\\n4.41389650e-01 1.50716126e-01 1.74193487e-01 -2.07240745e-01\\n2.28843480e-01 -2.60108918e-01 -1.66172534e-01 1.99841276e-01\\n-3.96028161e-02 5.88227391e-01 5.02866656e-02 -2.11246580e-01\\n-2.31310904e-01 2.05297559e-01 -1.80164084e-01 -8.58338028e-02\\n-2.97455817e-01 -7.83023238e-02 -2.26405978e-01 3.26463103e-01\\n2.44622499e-01 8.20319820e-03 -2.21336097e-01 -8.83117691e-02\\n-2.07985453e-02 1.87398642e-01 3.36110294e-01 7.45715275e-02\\n-6.11592270e-02 -2.56895781e-01 1.07190430e-01 6.39265552e-02\\n1.16159186e-01 1.83561996e-01 2.48504370e-01 -3.23051214e-01\\n-1.25082329e-01 2.35793829e-01 -1.74454644e-01 4.28740144e-01\\n-2.66444162e-02 9.57143307e-02 -5.57745397e-01 -1.56848997e-01\\n-4.79826182e-02 -2.44115338e-01 3.72839533e-02 2.98033148e-01\\n2.27383822e-01 -5.31803742e-02 6.42925426e-02 -5.76798558e-01\\n3.85453939e-01 -3.30672227e-02 1.39274985e-01 9.76253152e-02\\n2.33924836e-02 6.32334530e-01 6.05191477e-03 -1.63641140e-01\\n-3.14447023e-02 7.51770064e-02 -2.66621321e-01 -4.41862673e-01\\n6.07072711e-02 -4.75761026e-01 -2.22540498e-02 3.63111049e-01\\n1.81556076e-01 -8.70961621e-02 -2.19172522e-01 2.27332607e-01\\n3.37250419e-02 -3.54016751e-01 -2.36719176e-01 4.22450788e-02\\n1.31261423e-01 3.63891333e-01 2.32850164e-01 -3.99513811e-01\\n4.55313548e-02 -3.74723040e-02 -6.26824796e-02 3.08538437e-01\\n1.03530824e-01 1.36945680e-01 -5.08185588e-02 -1.15562119e-01\\n4.75477099e-01 1.34763613e-01 -6.02653660e-02 1.57717112e-02\\n3.37953903e-02 -3.51102829e-01 -2.88163245e-01 -1.21159852e-01\\n9.21381712e-02 -1.34353504e-01 -1.79528818e-02 5.12474626e-02\\n1.37731368e-02 -6.68863133e-02 -5.01317263e-01 -1.18263118e-01\\n-4.31833833e-01 5.67185655e-02 -8.45667422e-02 -5.92443466e-01\\n-2.86650229e-02 -1.88161875e-03 -4.93100852e-01 2.95232832e-01\\n-7.43206888e-02 7.78554082e-02 4.61509675e-02 -2.98132561e-02\\n-1.53095961e-01 6.40368611e-02 1.42173529e-01 1.10467613e-01\\n-2.21525043e-01 -1.40895665e-01 -1.42281592e-01 -8.05950820e-01\\n1.29074499e-01 -1.06157668e-01 6.53684586e-02 5.33133075e-02\\n-3.02237831e-02 -5.96297622e-01 3.97450298e-01 -3.41821551e-01\\n-1.51420146e-01 3.36673558e-02 -1.48308724e-01 -4.32565868e-01\\n1.32750183e-01 -1.08858822e-02 -1.65658936e-01 1.83259889e-01\\n-4.61298317e-01 5.66463292e-01 1.45389348e-01 1.28471255e-01\\n5.90197481e-02 -2.50723392e-01 1.81468695e-01 -2.74273485e-01\\n-3.82361442e-01 -1.00349039e-01 -3.16599786e-01 -1.72128946e-01\\n5.98513661e-03 -2.04512894e-01 -2.15887293e-01 -2.44455356e-02\\n3.38393867e-01 1.82298958e-01 -1.56005874e-01 3.13355103e-02\\n-4.53301296e-02 -4.25848007e-01 1.54717356e-01 -3.09440434e-01\\n-1.32581545e-02 5.56762293e-02 2.41662741e-01 -1.12793734e-02\\n1.14576772e-01 -3.58322799e-01 4.30131644e-01 -7.51067847e-02\\n-3.77872825e-01 -1.01864740e-01 6.99023753e-02 3.70124355e-02\\n4.48780358e-01 -2.86038786e-01 -1.94360435e-01 2.40406349e-01\\n5.28100459e-03 -1.26312999e-02 2.86157429e-01 -2.65679270e-01\\n-1.98193312e-01 1.12103857e-01 -6.68836474e-01 5.41669019e-02\\n8.29128444e-01 2.97334939e-01 1.23079397e-01 2.08550781e-01\\n4.92648780e-02 3.27136666e-01 4.21858579e-01 -1.04956008e-01\\n-1.30371302e-01 3.55230600e-01 4.64940909e-03 -4.98115391e-01\\n-3.78226861e-02 -1.11547895e-01 -2.33693182e-01 -2.76444614e-01\\n4.56688493e-01 2.52651125e-01 -3.06375682e-01 -3.61967474e-01\\n-2.60609686e-01 -2.62768477e-01 1.55433849e-01 -2.04093885e-02\\n-3.30317090e-03 -1.14950955e-01 5.27261972e-01 -2.17144936e-02\\n2.91509390e-01 4.09600198e-01 2.89852777e-03 -1.42964423e-01\\n7.64954761e-02 -3.08327004e-02 1.11728601e-01 4.61607307e-01\\n-1.05199881e-01 2.53091097e-01 -2.24804267e-01 1.27687737e-01\\n-7.97299743e-02 -2.40048662e-01 3.57468426e-01 5.44891506e-02\\n2.16060411e-02 3.16668332e-01 4.10334229e-01 4.57841247e-01\\n1.89883783e-01 3.60983878e-01 3.34938139e-01 -9.93659124e-02\\n4.49739873e-01 6.19798481e-01 1.67783245e-01 -1.14274595e-03\\n3.96640878e-03 -5.41739725e-02 1.72108814e-01 5.73606454e-02\\n1.80596843e-01 4.06760365e-01 3.15790147e-01 7.21908927e-01\\n2.12902308e-01 2.68739909e-01 7.25085855e-01 -5.02357066e-01\\n-3.48658502e-01 -6.16497472e-02 4.61556435e-01 -4.53032583e-01\\n-2.10545678e-02 2.21332818e-01 -2.16402039e-01 2.77074516e-01\\n-4.97462153e-01 -5.70986979e-02 7.76898265e-02 -1.04012355e-01\\n5.29463030e-03 2.11837981e-02 7.25727975e-02 -1.05989370e-02\\n-7.82664791e-02 -1.77470788e-01 -4.49151754e-01 -1.62497446e-01\\n-4.16453093e-01 -9.29199830e-02 1.34463340e-01 -5.13309753e-03\\n-5.14638191e-03 -2.92696655e-01 -2.80720770e-01 1.06601762e-02\\n3.47201884e-01 -2.61216730e-01 -1.59626499e-01 -1.02625616e-01\\n1.41307488e-01 4.21132594e-02 6.91192925e-01 8.87836218e-02\\n-6.75674230e-02 -1.16487429e-01 -2.19772965e-01 2.17119101e-02\\n2.65140951e-01 -9.10831615e-03 1.27793010e-02 5.54995537e-01\\n-5.11393666e-01 -2.46941581e-01 -5.05839735e-02 2.04331741e-01\\n-4.76027250e-01 -2.02723928e-02 5.05624525e-02 9.82761756e-02\\n-5.39331278e-03 1.41570508e-01 -1.76183462e-01 -7.76995048e-02\\n-2.35859647e-01 -4.25747633e-01 3.07181001e-01 -1.38100892e-01\\n-2.51954466e-01 -2.11835895e-02 1.64482266e-01 2.21234351e-01\\n-6.94177533e-03 -4.66861241e-02 -1.89152792e-01 1.57294214e-01\\n-5.01038693e-03 4.68749732e-01 -2.15497732e-01 -3.14329654e-01\\n-1.56051069e-01 2.72342145e-01 1.11733809e-01 8.74738768e-02\\n1.13007568e-01 3.55376273e-01 3.07971332e-03 2.32641101e-01\\n2.02669129e-01 -4.11921553e-02 -2.72424698e-01 -4.22279924e-01\\n-1.58111200e-01 -1.82517305e-01 7.56660178e-02 -1.30299345e-01\\n6.55403286e-02 -2.96532482e-01 -2.69160569e-02 -1.69599801e-01\\n-3.18693727e-01 -4.59334642e-01 -1.11941770e-01 -6.70792162e-02]]',\n", + " 'job_description': 'For one of our client we are looking for a Business analyst / Data reporting analyst (12 months ) Position responsibilities As part of the Middle Office/Business analysis team, your main duties will be: Reporting: Gather business requirement and define relevant reporting Design and develop reports/dashboards on Spotfire Process/business: Requirement analysis Business process modelling Development of Robotic Process Automation (RPA) Projects : Gather requirements from business units : Meet with traders, back office, accounting team Coordinate developments Create and execute test plans Software administration : Administration backup of core business software Position qualification Strong knowledge of reporting software (Spotfire, Power BI) and SQL programming Strong quantitative and analytic skills Strong knowledge of Robotic Process Automation (UIPath) Strong writing skills Knowledge of corporate finance Proactive and self-starter Fluency in French and good English language skills Experience A graduate degree (preferably a Master’s degree in Information System) 2-5 years’ experience as a business analyst in the financial industry is required',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Writing\", \"Coordinating\", \"Self Starter\", \"Proactivity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Programming (Music)\", \"Industrialization\", \"Middle Office\", \"Strategic Business Unit\", \"Corporate Finance\", \"Microsoft Office Accounting\", \"UiPath (RPA Software)\", \"Executable\", \"Process Modeling\", \"Dashboard\", \"Robotic Process Automation\", \"Power BI\", \"Business Requirements\", \"Business Process Modeling\", \"Spotfire (Data Analytics Software)\", \"Business Process\", \"Remote Administration Software\", \"Business Analysis\", \"Independent Analyst Platform\", \"Test Planning\", \"Requirements Analysis\", \"Business Software\", \"Report Designer\", \"SQL (Programming Language)\", \"Information Systems\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '34',\n", + " 'job_title': 'data engineer- integration specialist',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.darwinrecruitment.com',\n", + " 'jobdescription_embedded': '[[-1.71152711e-01 2.59077072e-01 4.16388363e-01 -7.69490823e-02\\n3.07703286e-01 -1.53559878e-01 -7.82030821e-02 6.06545568e-01\\n-9.96811464e-02 -4.49849963e-01 -3.70184891e-02 -3.95281672e-01\\n2.18868678e-04 2.68662870e-01 1.05228372e-01 3.60706151e-01\\n9.42237824e-02 1.36238515e-01 -1.53818026e-01 2.73653269e-01\\n1.60930231e-01 -1.53849214e-01 5.86205088e-02 6.59312248e-01\\n5.31260967e-01 -1.33440066e-02 3.81680839e-02 5.59298806e-02\\n-9.14216340e-02 -3.84958029e-01 4.66182321e-01 -1.14901580e-01\\n-9.32834595e-02 -3.02908510e-01 1.02725141e-01 4.97190058e-02\\n-1.38793200e-01 -6.46172985e-02 -9.63907465e-02 -4.61775213e-02\\n-5.42719722e-01 -1.75796285e-01 3.49913239e-02 1.04533836e-01\\n-2.08092272e-01 -2.97600001e-01 1.96821660e-01 -9.32275504e-02\\n2.35762671e-01 5.86744919e-02 -6.57733679e-01 3.20011437e-01\\n-3.37387294e-01 -2.81886607e-01 2.68857628e-01 5.47582209e-01\\n-2.38885120e-01 -5.98276556e-01 -6.17879868e-01 -1.52781621e-01\\n1.49108842e-01 -1.04773112e-01 -1.30322680e-01 -3.73982161e-01\\n3.63271475e-01 1.29693989e-02 3.98209924e-03 3.46436352e-01\\n-7.72765577e-01 3.69718415e-03 -1.94843113e-01 -4.26489823e-02\\n-3.95691484e-01 -8.22267160e-02 -3.34651560e-01 -3.94917205e-02\\n-9.75010097e-02 3.51627558e-01 3.07708280e-03 -7.21185356e-02\\n-1.63001403e-01 3.65802437e-01 -2.59205550e-01 4.14705753e-01\\n2.92438954e-01 2.38347486e-01 -1.60492063e-02 3.23879331e-01\\n-2.96081543e-01 3.65939170e-01 2.44429991e-01 -3.96939576e-01\\n1.98881313e-01 -4.96961847e-02 4.86192852e-01 1.90917570e-02\\n2.31540948e-01 1.43980980e-01 -3.09347242e-01 2.71583736e-01\\n3.11403215e-01 -2.34819308e-01 2.66075805e-02 -1.99143007e-01\\n8.03522915e-02 5.36019541e-02 5.70297055e-02 3.20211917e-01\\n-2.19905853e-01 3.64961714e-01 5.51870055e-02 -2.15960443e-01\\n-1.21709511e-01 -4.97700125e-01 -1.47314623e-01 2.38448028e-02\\n1.04547702e-01 1.75815195e-01 1.37472615e-01 1.77860588e-01\\n1.84338465e-01 4.06160615e-02 1.23005964e-01 8.62954199e-01\\n-1.40493020e-01 -4.85756509e-02 -3.02644014e-01 3.52278858e-01\\n4.08373214e-03 -3.17683697e-01 2.32073724e-01 1.85354143e-01\\n9.67782587e-02 -2.92167187e-01 -1.68339521e-01 2.12771177e-01\\n-1.61102831e-01 -2.50082761e-01 -4.17719603e-01 2.84140825e-01\\n-1.93968304e-02 -2.24933863e-01 5.89011550e-01 9.93812606e-02\\n1.43918455e-01 6.50120154e-02 -1.02823339e-01 -1.89952582e-01\\n-1.40138790e-01 1.73803419e-01 -1.52087450e-01 1.11914687e-01\\n-3.69631380e-01 -2.56547004e-01 -2.07811907e-01 1.23547815e-01\\n-3.81246895e-01 1.74268618e-01 -1.49396166e-01 -1.21015057e-01\\n4.18723524e-01 -1.14168108e-01 -1.92640841e-01 2.85447180e-01\\n3.89463478e-03 1.60182819e-01 -2.94134542e-02 3.31345320e-01\\n-2.09844619e-01 3.42099309e-01 -5.87093681e-02 -9.90884304e-02\\n4.61123556e-01 -4.16028872e-02 3.11821159e-02 -1.44320950e-01\\n1.80267513e-01 4.77727577e-02 1.61640018e-01 2.96470542e-02\\n-5.76447666e-01 2.92820543e-01 2.83011026e-03 -4.44330536e-02\\n1.38869613e-01 -1.09063186e-01 2.26032838e-01 -3.13107967e-01\\n-1.15058698e-01 -8.43802840e-02 -3.86595309e-01 -2.35815242e-01\\n-2.64304847e-01 -2.47961506e-02 4.45627809e-01 -4.51278210e-01\\n-1.50272965e-01 1.77549198e-01 -5.53063869e-01 2.85115726e-02\\n2.02007353e-01 1.88385651e-01 1.11805320e-01 1.37542784e-01\\n-2.14490488e-01 -5.15240610e-01 1.38313919e-01 -3.98399085e-01\\n-1.31138995e-01 1.14487171e-01 -3.20616782e-01 3.28259110e-01\\n5.96674718e-02 -6.07159622e-02 -2.03210428e-01 2.17002973e-01\\n-1.94583386e-01 -2.28513647e-02 1.21927317e-02 7.74867684e-02\\n3.51046085e-01 8.74352157e-02 -3.97113502e-01 4.87487793e-01\\n-9.72517580e-02 5.61022043e-01 6.30971491e-02 -7.24981010e-01\\n4.42651629e-01 2.24135548e-01 -2.60363314e-02 -4.42214310e-01\\n7.37344921e-01 -3.53578240e-01 -2.57354435e-02 9.15373862e-02\\n-4.80822742e-01 -4.54613119e-01 2.35634044e-01 -1.05681702e-01\\n-3.39600027e-01 6.64669693e-01 5.60881086e-02 1.02770217e-01\\n3.90459120e-01 -1.41438648e-01 -2.71313816e-01 1.11383684e-02\\n-1.62154774e-03 -2.04542488e-01 -5.03658056e-01 -1.23609461e-01\\n-2.11426005e-01 -5.37865937e-01 -8.59451890e-02 -3.01981121e-01\\n-2.93673068e-01 -4.18274969e-01 -2.18557179e-01 3.03434968e-01\\n2.56226629e-01 8.33931789e-02 5.25989197e-02 1.16491862e-01\\n-1.36298001e-01 -6.16499782e-01 -1.39022484e-01 1.04356579e-01\\n3.87485147e-01 1.47009328e-01 2.20717698e-01 -8.24319292e-03\\n5.19653447e-02 6.59284234e-01 -1.24530181e-01 -2.79130071e-01\\n8.75420049e-02 1.09716922e-01 1.65351629e-01 -1.40226439e-01\\n2.32696638e-01 2.24460766e-01 -2.54679888e-01 3.66223678e-02\\n-7.26814270e-02 -6.23075776e-02 2.37096518e-01 2.25473791e-01\\n-3.57738584e-01 -2.89804310e-01 -4.66789864e-03 2.29147524e-01\\n-5.43385863e-01 -2.11731449e-01 5.60509861e-01 2.57135600e-01\\n1.91551670e-01 1.03575282e-01 3.01382005e-01 -1.68373495e-01\\n-7.41636679e-02 -4.68027219e-02 1.54666334e-01 1.94941923e-01\\n5.35463775e-03 1.36478826e-01 -1.01454929e-01 -6.52415574e-01\\n-3.57114458e+00 -1.81091771e-01 1.75098032e-01 -1.76891774e-01\\n2.09762812e-01 -1.25033170e-01 1.91609666e-01 -7.81676322e-02\\n-2.39875764e-01 -1.18186260e-02 -1.19685285e-01 -5.48293181e-02\\n2.93076366e-01 1.38446823e-01 9.21676382e-02 4.02541876e-01\\n1.44647986e-01 -1.33727863e-01 3.53083648e-02 3.76304746e-01\\n-2.50750005e-01 -5.53826392e-01 2.90468931e-01 -1.22193620e-01\\n2.14311957e-01 3.32665056e-01 -3.38045597e-01 -2.24271432e-01\\n-1.74536571e-01 -1.93988010e-01 6.35813251e-02 -3.65835607e-01\\n-1.51361033e-01 3.22549671e-01 1.36473760e-01 -1.39794812e-01\\n1.41401485e-01 -3.94342273e-01 -1.04952216e-01 -4.17705894e-01\\n1.53309062e-01 -6.32243574e-01 1.04331613e-01 -2.03156590e-01\\n8.53200734e-01 -4.28966671e-01 4.46972437e-02 9.94509235e-02\\n1.00573026e-01 2.20298558e-01 -1.07536204e-02 -3.35286744e-02\\n-1.75350592e-01 -3.27491373e-01 -1.33628860e-01 -9.51188877e-02\\n4.61980820e-01 6.10625505e-01 -9.26939994e-02 -4.79603894e-02\\n-3.33344750e-02 -3.18748981e-01 -4.85259414e-01 -3.57924521e-01\\n-2.40831673e-01 -1.85910046e-01 -5.42941809e-01 -2.47600719e-01\\n-1.17731966e-01 -2.30561182e-01 -1.65783614e-02 4.64619875e-01\\n-2.98643589e-01 -3.83568406e-01 -5.20152412e-02 -4.88804728e-01\\n2.69208968e-01 -2.02176441e-02 6.43556118e-02 -1.77715018e-01\\n-2.54451931e-01 -4.87592310e-01 -2.91238073e-02 -5.68962172e-02\\n-1.44326478e-01 -2.59494007e-01 1.25773564e-01 -1.63720563e-01\\n-1.76599905e-01 -6.29992187e-01 4.37002659e-01 1.76657274e-01\\n2.63926655e-01 2.65365541e-01 1.95337191e-01 3.78716104e-02\\n2.19407961e-01 -1.13971390e-01 1.32613629e-02 -3.46973926e-01\\n1.22808494e-01 1.53354719e-01 4.79417801e-01 -1.91011012e-01\\n5.98169342e-02 6.75777346e-02 -1.73175514e-01 -1.37411550e-01\\n2.59265542e-01 1.31003201e-01 7.45701268e-02 -3.67924899e-01\\n2.85730302e-01 -1.45719960e-01 -3.90911639e-01 5.67408502e-02\\n-3.00275330e-02 3.84301126e-01 5.56175336e-02 -3.56553972e-01\\n-2.18456805e-01 4.64878082e-01 -9.67183784e-02 5.80482138e-03\\n-3.76220316e-01 2.02217009e-02 -2.53675133e-01 2.56576717e-01\\n3.00302096e-02 -1.17799245e-01 -2.47220010e-01 -1.42625064e-01\\n-1.93779752e-01 5.08512259e-01 2.10137904e-01 4.71538231e-02\\n-7.13067576e-02 -4.45461154e-01 1.89565215e-02 2.45256722e-01\\n3.72355618e-02 5.13071835e-01 7.99548551e-02 -1.00087404e-01\\n-2.11351481e-03 3.56467277e-01 -2.14506865e-01 1.95239540e-02\\n-2.90812433e-01 3.85810994e-02 -3.91595900e-01 -3.48725021e-01\\n-2.56689012e-01 -3.59533846e-01 9.44098458e-02 4.29551005e-01\\n1.14345752e-01 -3.59961838e-02 -1.46119017e-02 -3.69988292e-01\\n2.86527306e-01 4.25643921e-02 2.26218149e-01 3.01016629e-01\\n1.10752285e-01 4.54041004e-01 1.21399330e-03 -7.97956735e-02\\n-1.84620574e-01 1.78594366e-01 -3.74453515e-01 -3.03144120e-02\\n-2.53215749e-02 -4.48089182e-01 -6.74633458e-02 6.49542093e-01\\n7.50137046e-02 -1.05809487e-01 -1.12398036e-01 1.64656878e-01\\n-1.19954392e-01 -1.76768601e-01 -2.14816317e-01 1.65701091e-01\\n3.38745445e-01 2.50026554e-01 2.13158056e-01 -3.54856759e-01\\n6.37994111e-02 2.65338533e-02 -1.19101182e-01 5.79667449e-01\\n4.31741495e-03 3.38997096e-02 -2.41813958e-01 -3.23847145e-01\\n3.96056861e-01 -2.58092403e-01 2.18026917e-02 3.34138200e-02\\n2.03289390e-01 -1.98848005e-02 -3.41778845e-01 2.04519629e-01\\n-6.83718026e-02 -2.10227937e-01 2.72059860e-03 1.67500845e-03\\n3.21044736e-02 7.10142702e-02 -5.23663521e-01 -2.65473753e-01\\n-2.54672527e-01 4.74446155e-02 -2.35670492e-01 -3.69100273e-01\\n1.75751925e-01 6.04626536e-03 -5.47858655e-01 2.92723000e-01\\n-4.43570614e-01 5.13261370e-02 3.43256921e-01 1.54637471e-02\\n-4.79452133e-01 -1.53569087e-01 3.15713376e-01 2.87715316e-01\\n-1.84810519e-01 -2.89646864e-01 -5.38413040e-02 -8.56701970e-01\\n2.14650288e-01 3.02038770e-02 -2.22917482e-01 3.19190651e-01\\n-4.79739197e-02 -6.74011171e-01 1.95333496e-01 -2.38905013e-01\\n-1.22451685e-01 9.72420722e-02 -1.21902891e-01 -4.03679490e-01\\n-6.95726275e-02 -8.47254917e-02 -2.79416859e-01 4.38870192e-01\\n-4.42463964e-01 2.58094579e-01 2.78225131e-02 2.07660496e-01\\n6.45043477e-02 -3.17549199e-01 1.32011235e-01 -2.90938467e-01\\n-4.47629452e-01 -1.77552968e-01 -3.10834795e-01 -3.72497439e-01\\n1.16414659e-01 -4.20599431e-01 -1.90796748e-01 3.00982624e-01\\n3.45805973e-01 -2.02822611e-02 -6.38294071e-02 -1.12800695e-01\\n3.80007625e-02 -3.81115437e-01 -4.35052253e-03 6.51416602e-03\\n4.66602203e-03 -2.62069423e-02 1.64008364e-01 5.44666573e-02\\n4.29980643e-02 -5.49723625e-01 4.81602848e-01 -4.19432849e-01\\n-2.26034552e-01 1.48321882e-01 6.61489815e-02 -6.79830313e-02\\n3.00375521e-01 -4.42990571e-01 -3.81285436e-02 4.50935811e-01\\n9.10796449e-02 6.09224513e-02 2.62767851e-01 -1.09767817e-01\\n-1.97908625e-01 3.67509395e-01 -1.70611814e-01 6.05265684e-02\\n1.00304055e+00 -2.14897655e-02 1.52759567e-01 2.00660005e-01\\n-2.71367747e-03 2.86099702e-01 4.34633702e-01 6.14842884e-02\\n-2.87592709e-01 3.42851788e-01 2.36451682e-02 -5.57491839e-01\\n1.14695564e-01 -1.58052653e-01 -3.11109990e-01 -3.18486035e-01\\n6.19558752e-01 4.47231114e-01 -4.82976437e-01 -4.03169841e-01\\n3.42688933e-02 -2.16716722e-01 5.55997789e-02 -1.72905147e-01\\n-5.60181448e-03 -1.27126753e-01 4.95528042e-01 5.90575254e-03\\n1.36339828e-01 5.78903556e-01 -1.76307917e-01 -3.27808827e-01\\n-1.41373482e-02 2.02440858e-01 1.49438875e-02 4.51508373e-01\\n-3.02842945e-01 4.27474082e-01 -3.08692530e-02 3.06025203e-02\\n-6.05713297e-03 1.77992076e-01 1.63033485e-01 -7.65712326e-03\\n5.82543798e-02 1.33077458e-01 4.75843310e-01 5.14430046e-01\\n3.47314268e-01 4.94899482e-01 3.53312284e-01 5.21763675e-02\\n5.89324296e-01 4.74195153e-01 5.31556487e-01 2.81544894e-01\\n-8.26004136e-04 -4.97476161e-02 -7.25944191e-02 2.49072045e-01\\n3.13818574e-01 2.85633951e-01 1.31414562e-01 9.76365209e-01\\n3.52537483e-01 1.07621469e-01 5.64574301e-01 -7.23322093e-01\\n-4.51816350e-01 1.82563961e-02 3.32547188e-01 -4.58691448e-01\\n-1.32507592e-01 1.43136457e-01 -2.49556944e-01 8.90053958e-02\\n-5.20679176e-01 -3.37157100e-01 -2.22249955e-01 1.15480043e-01\\n-4.03826647e-02 -1.64336309e-01 -1.74231663e-01 2.49021873e-02\\n-7.53935501e-02 -9.90563259e-02 -4.07484442e-01 -8.82909149e-02\\n-1.38656214e-01 -2.11207524e-01 -1.59648418e-01 -2.80302852e-01\\n-1.96726218e-01 -3.85229647e-01 -1.78397998e-01 7.49048665e-02\\n2.61339247e-01 -1.63265467e-01 7.31439963e-02 -2.13983566e-01\\n2.66460270e-01 2.88125277e-01 6.53630197e-01 7.52120838e-02\\n-1.51959145e-02 -2.68355548e-01 -5.20428270e-02 1.46590069e-01\\n1.92378685e-01 2.23420739e-01 9.24834982e-02 3.05831671e-01\\n-3.70904326e-01 -2.19675362e-01 2.28623196e-01 4.32577282e-01\\n-5.12547314e-01 -4.74465042e-02 -3.28051262e-02 2.64493316e-01\\n5.41851670e-02 1.94024518e-01 -1.43806279e-01 2.18760341e-01\\n-2.75524944e-01 -4.36684132e-01 2.66590297e-01 -7.59546310e-02\\n-1.63114861e-01 4.99261394e-02 1.72031656e-01 2.33015120e-01\\n-2.28625298e-01 3.31269465e-02 8.48588720e-02 3.57343137e-01\\n1.06185026e-01 2.53543824e-01 -2.83006787e-01 -2.42936566e-01\\n-2.48673037e-01 1.90831870e-02 -1.99501142e-01 1.09577954e-01\\n1.13802224e-01 3.33175004e-01 1.67163208e-01 -6.20649457e-02\\n5.03435433e-01 -3.59351449e-02 -1.20591655e-01 -2.58686870e-01\\n-3.16009045e-01 -3.31941068e-01 -1.00793742e-01 -4.25108857e-02\\n2.06314683e-01 -4.46181953e-01 -1.70381352e-01 -2.34620012e-02\\n-3.42031084e-02 -2.90297925e-01 9.29621831e-02 -7.78390169e-02]]',\n", + " 'job_description': \"Currently, I am working with a leading company in the Zurich area, my client has more than 8 million visits and over 180 million page views each month, my client is recognised as one of the leading Swiss digital companies. At the moment my client needs to bring a highly skilled Data engineer to join on a permanent basis. In regards to the team you will be joining, they have around 80 members of staff spread across two office locations in Switzerland, you will be joining a team of around 20 skilled Data Scientists and Engineers. Your daily tasks will include: Maintaining and extending the data lake and data pipelines Supporting the teams with your data engineering expertise Sharing your know-how and learning from others, mainly by pairing and reviewing each other's code They are looking for you to have experience with technologies such as; Python- at a high level of experience Hands-on experience of AWS (CloudFormation, IAM, Lambda, SNS, SQS, ECS) Exposure to AWS data services (S3, Glue, EMR, Athena, Kinesis) Understanding of ETL pipelines Fluent English is required for this role and any German is seen as a plus This is a great opportunity to get into an extremely exciting company who are really looking to build a successful team. If you would be interested in learning more please apply and I will contact you as soon as possible.\",\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"AWS Kinesis\", \"AWS Identity And Access Management (IAM)\", \"AWS CloudFormation\", \"Pipelining\", \"Python (Programming Language)\", \"Digitization\", \"AWS Elastic MapReduce (EMR)\", \"Maintainability\", \"Data Pipeline\", \"Amazon Simple Notification Service (SNS)\", \"Extract Transform Load (ETL)\", \"Azure Data Lake\", \"Data Engineering\", \"Amazon Athena\"]',\n", + " 'languages': \"['English', 'Bulgarian']\"},\n", + " {'company_id': '10',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.adnovum.ch',\n", + " 'jobdescription_embedded': '[[-1.95624158e-01 3.97409528e-01 5.07171333e-01 -4.06459570e-02\\n5.41350424e-01 -8.11445639e-02 7.53710493e-02 3.58455390e-01\\n-3.10194045e-02 -5.43209136e-01 -1.87547192e-01 -1.59705579e-01\\n7.89334401e-02 1.13280721e-01 1.94852591e-01 3.26767713e-01\\n4.62987572e-01 7.56500736e-02 3.62817454e-03 3.83732766e-01\\n-1.62129730e-01 -9.87617448e-02 1.34480879e-01 6.40779495e-01\\n3.55763644e-01 -6.63058320e-03 4.31952588e-02 1.95201710e-01\\n-1.69206694e-01 -2.27221057e-01 3.46927643e-01 1.05911903e-02\\n-2.97944099e-01 -3.87432247e-01 -1.45010026e-05 1.29607841e-01\\n-2.42596522e-01 -5.24028204e-02 -2.67326087e-01 -1.58433039e-02\\n-4.46291417e-01 -2.01589301e-01 4.42150049e-02 -1.79851949e-01\\n-1.79206029e-01 -3.21800798e-01 1.82369471e-01 -1.13667451e-01\\n2.50975862e-02 4.72655185e-02 -4.30564284e-01 2.53324062e-01\\n-3.65517229e-01 -1.60606518e-01 3.87259394e-01 5.59639513e-01\\n-1.88216809e-02 -5.02482116e-01 -4.32932138e-01 -2.39122108e-01\\n6.77069798e-02 5.77977858e-02 6.16381504e-02 -4.02935296e-01\\n3.95106882e-01 -7.13882595e-03 6.12844415e-02 3.46813172e-01\\n-7.82036722e-01 -1.11264586e-01 -3.94327670e-01 6.17695414e-02\\n-4.45784539e-01 -9.46496725e-02 -3.18790168e-01 -1.40831918e-01\\n-7.18333498e-02 2.78311759e-01 -5.31314164e-02 1.69110179e-01\\n-1.93873212e-01 4.05293345e-01 -1.11126892e-01 2.41512299e-01\\n2.11167693e-01 2.15905383e-01 3.33343178e-01 3.32163930e-01\\n-2.75249958e-01 4.72428232e-01 2.29435265e-01 -2.92683333e-01\\n3.56134921e-01 1.88539982e-01 4.00257349e-01 -1.86471045e-02\\n3.63188028e-01 1.57960311e-01 -2.94262588e-01 3.16787750e-01\\n2.10242912e-01 -2.16880009e-01 -1.53617248e-01 -1.52181879e-01\\n1.06247939e-01 -4.00558710e-02 1.53568670e-01 6.42814860e-02\\n-5.40712059e-01 3.17350656e-01 4.25663637e-03 -4.39264148e-01\\n-1.80099253e-02 -4.20830518e-01 -1.94832996e-01 1.09065272e-01\\n-1.27117842e-01 -1.78300459e-02 1.61055312e-01 2.81734705e-01\\n2.96234101e-01 2.08901186e-02 7.77569041e-02 6.87539816e-01\\n-1.42687380e-01 -7.21321180e-02 -9.09945667e-02 2.80803591e-01\\n8.90855268e-02 -4.26961750e-01 1.82805791e-01 2.67846197e-01\\n1.29560689e-02 -6.07539155e-02 -2.09661439e-01 2.44960114e-01\\n6.67836592e-02 -1.25187263e-01 -3.06900293e-01 2.84918934e-01\\n-1.10217661e-01 -4.37027723e-01 5.40440679e-01 -9.84745994e-02\\n1.05262004e-01 -3.44979875e-02 1.76990386e-02 -1.61867276e-01\\n-9.46249720e-03 5.13485782e-02 6.31012097e-02 2.84552068e-01\\n-2.72600949e-01 -1.43201530e-01 -1.93577111e-01 2.96319813e-01\\n-1.85642079e-01 2.29487836e-01 -3.83103758e-01 -1.16362981e-01\\n3.21503192e-01 -1.34444818e-01 -3.00263554e-01 2.76550680e-01\\n-1.20592952e-01 1.00659430e-01 -1.09035082e-01 4.46274400e-01\\n4.15161140e-02 2.09956050e-01 -2.23392639e-02 -1.41820863e-01\\n4.69897777e-01 7.85709023e-02 1.45230621e-01 -1.70136049e-01\\n2.47340381e-01 7.07232654e-02 1.35360375e-01 -1.52775897e-02\\n-9.03002203e-01 2.34042764e-01 -1.06187217e-01 -1.31816819e-01\\n7.46678784e-02 -1.00906678e-01 2.55571693e-01 -3.59913737e-01\\n-3.09356362e-01 -5.98081499e-02 -3.36733460e-01 -4.95625228e-01\\n-1.90093324e-01 -1.57889247e-01 4.08337146e-01 -5.14456928e-01\\n-1.30040959e-01 1.57178730e-01 -7.05170453e-01 -8.26142132e-02\\n2.94075102e-01 1.77711561e-01 1.54172167e-01 9.45387259e-02\\n-1.30368426e-01 -6.33772254e-01 2.52397954e-02 -5.54250419e-01\\n-1.56634346e-01 1.66506395e-01 -3.99333686e-01 1.42835215e-01\\n1.17151611e-01 -1.63288504e-01 -1.04410527e-02 8.61984789e-02\\n-2.59264022e-01 6.96199611e-02 6.56216815e-02 -4.76955809e-02\\n4.74010140e-01 4.35532629e-02 -3.22253406e-01 4.16309327e-01\\n-2.20494866e-01 3.30039501e-01 6.24361373e-02 -6.50266886e-01\\n4.96558398e-01 3.21802765e-01 1.07861534e-02 -2.39032403e-01\\n5.10881364e-01 -3.56151015e-01 -1.79238841e-01 3.99765857e-02\\n-5.18438697e-01 -1.97887138e-01 -8.43936298e-03 -2.31724203e-01\\n-2.69446611e-01 6.06323123e-01 -1.00959159e-01 2.81071048e-02\\n4.66097504e-01 -2.12304890e-01 -1.53426036e-01 5.58594130e-02\\n-1.20743968e-01 -1.42654479e-01 -5.19885480e-01 -2.44537219e-01\\n-7.60620534e-02 -4.52454776e-01 -1.96117774e-01 -4.48424816e-01\\n-1.74352661e-01 -1.13148250e-01 -2.29993418e-01 1.56282708e-01\\n1.11307472e-01 4.63168323e-02 -3.59596498e-02 1.52980998e-01\\n-2.17158958e-01 -6.15378201e-01 -5.00781648e-03 5.57754934e-02\\n1.17143959e-01 1.67028829e-01 1.74357638e-01 -1.17288947e-01\\n-5.97898057e-03 5.61891913e-01 -3.81898165e-01 -2.19329491e-01\\n1.87622890e-01 8.11487809e-02 4.72141020e-02 -8.01655352e-02\\n1.80726364e-01 2.85143465e-01 -2.65156418e-01 7.41504431e-02\\n1.91574264e-02 -4.95185377e-03 4.13127631e-01 -2.15063453e-01\\n-2.16969445e-01 -1.84668198e-01 1.15098841e-02 1.87303782e-01\\n-5.22225201e-01 -2.81741589e-01 5.12124121e-01 4.57480364e-02\\n1.70271516e-01 3.96027952e-01 2.18809143e-01 -5.99434413e-02\\n-2.29900107e-01 -2.69758075e-01 2.54665107e-01 1.44434601e-01\\n8.19870010e-02 5.17033339e-02 -2.48508155e-01 -5.01990139e-01\\n-3.73741245e+00 -1.69829369e-01 1.93886802e-01 -8.66274312e-02\\n3.20012122e-01 1.24837577e-04 1.10940278e-01 -1.63704202e-01\\n-9.60515365e-02 6.13048710e-02 -2.45151937e-01 -1.96209326e-01\\n4.60789017e-02 1.98648751e-01 -7.37502202e-02 1.55523524e-01\\n1.81890652e-01 -2.25274503e-01 3.96934561e-02 2.60546356e-01\\n-7.54942074e-02 -7.34942734e-01 1.48128420e-01 -4.17279154e-02\\n2.77780980e-01 2.98262835e-01 -5.44760764e-01 -7.52332509e-02\\n-2.81963140e-01 -1.14054412e-01 9.17405784e-02 -3.89748901e-01\\n-1.13525487e-01 2.45817378e-01 1.76462010e-01 -1.95382237e-01\\n-4.85088676e-03 -1.55170932e-01 -4.23069112e-02 -5.38104355e-01\\n1.44984946e-01 -4.23481464e-01 9.92596895e-03 -1.04317732e-01\\n6.58848822e-01 -3.74893039e-01 8.49266425e-02 1.08089656e-01\\n1.22379780e-01 3.44221443e-01 1.83680534e-01 5.41547649e-02\\n-1.18564516e-01 -3.35045964e-01 -1.05374746e-01 -2.29010463e-01\\n6.47573769e-01 2.96443701e-01 -2.25249454e-01 8.94729272e-02\\n4.30189185e-02 -3.75931382e-01 -4.93100256e-01 -2.45927736e-01\\n-1.47599861e-01 -6.20698743e-02 -7.65075743e-01 -4.23622251e-01\\n-1.40338719e-01 -1.36029586e-01 4.94882017e-02 6.91641331e-01\\n-4.57934827e-01 -4.45010036e-01 -1.33881465e-01 -5.73298395e-01\\n2.76140660e-01 -1.53949559e-01 8.61736462e-02 -2.09675625e-01\\n-7.28234425e-02 -4.19816941e-01 4.59864140e-02 1.26932159e-01\\n-6.11431487e-02 -1.13501020e-01 1.34266838e-01 -1.93334091e-02\\n-2.73179561e-01 -4.89091426e-01 3.33182782e-01 1.02330655e-01\\n3.38543296e-01 4.35405411e-02 1.34716466e-01 1.42232096e-02\\n1.95962787e-01 -9.32971109e-03 -2.95996457e-01 -3.60452890e-01\\n5.86061291e-02 -9.68666375e-02 3.30863744e-01 -5.01703024e-02\\n4.16423678e-02 1.69599220e-01 -1.15280233e-01 -1.74085096e-01\\n4.76422697e-01 1.34312762e-02 7.50607029e-02 -2.62095004e-01\\n1.69395149e-01 -3.08273464e-01 -2.30495766e-01 7.52963349e-02\\n-1.26745686e-01 5.76520503e-01 9.31925103e-02 -3.09095651e-01\\n-1.10085808e-01 5.36023021e-01 1.61138978e-02 6.40568733e-02\\n-1.78747341e-01 1.21696383e-01 -3.32444042e-01 1.21629395e-01\\n-3.74581702e-02 -1.01423480e-01 -1.52004421e-01 1.67065987e-03\\n-5.64004779e-02 1.94245100e-01 3.62157464e-01 1.93723932e-01\\n3.54437158e-02 -3.65789801e-01 -6.51486078e-03 5.68960309e-02\\n2.69350708e-01 5.12906611e-01 2.18058273e-01 -2.60197908e-01\\n-2.96228100e-02 2.86592603e-01 -1.91321090e-01 1.04290463e-01\\n-1.56939536e-01 1.49414435e-01 -3.53981167e-01 -1.75616622e-01\\n-3.89933556e-01 -2.26607218e-01 1.83177982e-02 2.86728173e-01\\n1.60088092e-01 -1.69027686e-01 6.76730350e-02 -3.05084616e-01\\n3.07842433e-01 1.85946599e-01 2.05674753e-01 2.41451606e-01\\n-9.06339809e-02 5.01223266e-01 -5.94297089e-02 -1.80611566e-01\\n-1.70813486e-01 1.76880643e-01 -7.35193118e-02 -1.48713067e-01\\n8.11968371e-02 -5.29519558e-01 -1.36745140e-01 2.39613071e-01\\n4.86317538e-02 -1.41108623e-02 -1.69857025e-01 2.49989271e-01\\n-8.25471058e-02 -3.16823393e-01 -2.92034388e-01 -1.13830082e-02\\n2.13950217e-01 2.02135608e-01 2.74918973e-01 -4.14322227e-01\\n-6.34821057e-02 -6.65557906e-02 1.31719545e-01 4.69626516e-01\\n-4.74022925e-02 5.66381812e-02 -1.48473442e-01 -2.82566190e-01\\n4.03746963e-01 -5.34192733e-02 -1.76694453e-01 -5.31154275e-02\\n7.85092860e-02 -3.77384350e-02 -2.76284754e-01 7.40090981e-02\\n-1.52061716e-01 -1.59391850e-01 2.88550686e-02 1.68561060e-02\\n1.32478476e-01 1.21951967e-01 -5.28629899e-01 -2.07124755e-01\\n-3.09237152e-01 3.44422720e-02 -2.03306437e-01 -5.35484731e-01\\n1.37280509e-01 -1.45939156e-01 -5.39872587e-01 2.81580299e-01\\n-2.25011960e-01 -1.00715496e-01 1.68772504e-01 1.50281981e-01\\n-4.27882403e-01 -9.54971984e-02 1.41966119e-01 1.88962862e-01\\n-4.18896228e-01 -1.88078880e-01 -6.64666072e-02 -8.23264062e-01\\n2.95560300e-01 -1.29990652e-01 -5.45138493e-03 4.89177965e-02\\n-1.31034717e-01 -5.87537587e-01 1.11939467e-01 -1.64533958e-01\\n-1.05697572e-01 8.67673457e-02 -1.85601771e-01 -3.03874016e-01\\n7.26094693e-02 -1.73494980e-01 -1.19071417e-01 2.35415936e-01\\n-4.70925927e-01 2.73304254e-01 -2.33205333e-01 2.94341054e-02\\n5.51923625e-02 -2.63867110e-01 1.08813308e-01 -1.68278635e-01\\n-4.77744430e-01 -2.24186108e-01 -1.20687574e-01 -2.15005577e-01\\n-4.40847166e-02 -4.31432575e-01 -1.40312118e-02 2.49734018e-02\\n3.42152476e-01 -1.86173040e-02 -2.45851651e-01 -1.22430079e-01\\n3.35471444e-02 -2.64644295e-01 1.14545450e-02 -3.15855406e-02\\n1.04539298e-01 -3.95798981e-02 2.40147948e-01 5.25263511e-02\\n3.02339226e-01 -3.38018298e-01 4.12936062e-01 -3.26547056e-01\\n-2.99328417e-01 -1.20408893e-01 -1.03438273e-03 9.94906668e-03\\n3.48492384e-01 -5.65469265e-01 2.16063019e-02 4.17885035e-01\\n5.90350665e-02 1.31136701e-02 1.96933493e-01 -2.06139255e-02\\n-3.91580611e-02 4.00822908e-01 -2.68910855e-01 1.51081681e-01\\n8.05222929e-01 1.23100244e-01 2.22835556e-01 2.39065811e-01\\n6.61984310e-02 4.55249518e-01 3.76264066e-01 -3.29954438e-02\\n-2.69405190e-02 3.62387568e-01 1.92488596e-01 -4.58240986e-01\\n8.92967451e-03 2.65243258e-02 -1.76343262e-01 -2.24504188e-01\\n6.40138268e-01 3.59989643e-01 -3.65842313e-01 -2.83531159e-01\\n-1.71031818e-01 -3.97459388e-01 2.82339364e-01 -6.89230859e-02\\n2.07787883e-02 -2.04716727e-01 4.02844995e-01 1.19541027e-02\\n1.80359051e-01 7.35158503e-01 -2.34106705e-01 -3.34822744e-01\\n-1.52588636e-01 2.95565993e-01 1.04012579e-01 4.59747642e-01\\n-1.08243853e-01 2.77069926e-01 1.27821257e-02 5.54686785e-02\\n-7.73639008e-02 1.47383735e-01 1.73800305e-01 1.46056980e-01\\n2.30573535e-01 3.30295533e-01 5.34503043e-01 4.98811692e-01\\n3.04300189e-01 3.67333174e-01 2.31833622e-01 9.10304561e-02\\n5.18943369e-01 4.31326002e-01 4.51881647e-01 5.73795326e-02\\n1.44129721e-02 2.46286616e-01 1.24434501e-01 4.62027341e-02\\n2.63589889e-01 4.34119821e-01 -1.06435297e-02 9.17801201e-01\\n3.97906274e-01 2.60819077e-01 6.05717063e-01 -7.42412508e-01\\n-1.63220003e-01 9.56422612e-02 3.73246938e-01 -3.71888280e-01\\n5.20412959e-02 1.56332329e-01 -1.44453868e-01 2.95470715e-01\\n-4.40726310e-01 -2.19140649e-01 2.57894546e-02 1.62777096e-01\\n1.63460687e-01 -4.18730378e-02 -1.47528782e-01 -6.64786920e-02\\n-7.76151791e-02 -3.76542322e-02 -3.44924062e-01 -1.83253124e-01\\n-2.71405041e-01 -2.09814999e-02 -4.12860177e-02 -2.38330677e-01\\n8.82498696e-02 -3.12943548e-01 -5.40300012e-02 -2.07890019e-01\\n3.62136245e-01 -1.68464601e-01 -4.36339229e-02 3.95724317e-03\\n3.03939849e-01 2.41475508e-01 6.91587865e-01 -1.04941487e-01\\n1.04229458e-01 -8.08869898e-02 -1.64956421e-01 1.22152209e-01\\n4.13262360e-02 1.95013985e-01 1.27756938e-01 2.95504242e-01\\n-2.36357883e-01 -2.22418547e-01 2.53336102e-01 2.69581676e-01\\n-3.67388129e-01 -1.55440171e-03 -7.16302916e-02 1.96484342e-01\\n-1.05625711e-01 1.21191286e-01 -6.69479445e-02 1.74651649e-02\\n-8.62853602e-02 -5.46514571e-01 3.23153853e-01 -1.94367453e-01\\n-1.37836905e-02 -7.64152333e-02 3.71804714e-01 3.08940917e-01\\n-1.64258018e-01 3.89989913e-02 -1.03479110e-01 1.03970937e-01\\n1.27854899e-01 3.61236781e-01 -2.60132492e-01 -1.70172587e-01\\n-2.23325595e-01 1.31388679e-01 -5.96998036e-02 -8.69416818e-02\\n-8.74217525e-02 3.96499157e-01 1.15623929e-01 2.07069650e-01\\n2.53376275e-01 -1.53874323e-01 -2.12854162e-01 -1.77685454e-01\\n-2.93299466e-01 -3.35060735e-03 6.77606091e-02 -9.50272605e-02\\n2.36362293e-01 -4.38735336e-01 -2.61465132e-01 -1.96449637e-01\\n3.37974578e-02 -4.40327674e-01 9.80812684e-03 5.00930659e-02]]',\n", + " 'job_description': \"That's your role You will, together with an international team, develop and support individual mobile and web applications for our customers. Your main working language with our customers will be German. We look for Software Engineers for our locations in Bern and in Zurich. Depending on your qualifications, past experience and project, you will be involved in the analysis, specification and implementation of technical requirements in one of the following disciplines: Application development You implement the functional requirements of our customers with a broad spectrum of technologies and development processes. Integration Your focus is on quality attributes (non-functional requirements). You get the developed solutions up and running (deployment, technical architecture, etc.) and connect them to the customer's systems. By operating at the interface between customers and highly qualified development teams, you will gain a deeper insight into the broader interrelationships in the software development process and benefit from the extensive experience of our application development, integration and security specialists.\",\n", + " 'soft_skills': '[\"Operations\", \"Integration\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Web Applications\", \"Process Development\", \"Software Development\", \"Functional Requirement\", \"Software Engineering\", \"Process Integration\", \"Mobility\"]',\n", + " 'languages': \"['English', 'Nyanja', 'Ossetian', 'Northern Sami', 'Gaelic']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'junior data-scientist (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.65259391e-01 2.37471595e-01 4.02921498e-01 1.00243151e-01\\n4.03606445e-01 -2.84495324e-01 5.22616357e-02 2.92965204e-01\\n-6.68480694e-02 -3.47696990e-01 -1.38469741e-01 -2.65816092e-01\\n-1.49815634e-01 1.45849427e-02 -4.01442274e-02 3.89594674e-01\\n2.18470454e-01 9.74991247e-02 -4.37254608e-02 3.25632930e-01\\n1.81184068e-01 -1.25458285e-01 -1.57004997e-01 7.08373964e-01\\n4.39376473e-01 3.98021676e-02 -8.90317783e-02 1.05163857e-01\\n-2.12917149e-01 -1.11826278e-01 4.44480598e-01 1.41342506e-01\\n-1.13332547e-01 -2.81599075e-01 8.90250504e-02 9.67258215e-02\\n-2.39634782e-01 4.57551219e-02 5.07330671e-02 9.06079784e-02\\n-3.82302314e-01 -2.56410003e-01 -1.10499486e-01 -3.68735217e-03\\n-9.31458771e-02 -2.26927370e-01 1.52826801e-01 4.39070351e-03\\n1.07097767e-01 -7.23425597e-02 -6.30154312e-01 3.55206311e-01\\n-2.56618470e-01 -1.98945343e-01 1.73552498e-01 4.54097092e-01\\n8.23455676e-02 -4.97449309e-01 -5.19702494e-01 -2.60333955e-01\\n3.05381287e-02 -2.00251862e-01 6.28850162e-02 -1.77313492e-01\\n3.98115993e-01 2.79472023e-02 6.15051985e-02 4.02017355e-01\\n-7.28873968e-01 7.41557823e-03 -2.63501316e-01 -4.84086648e-02\\n-4.30597782e-01 -8.93377960e-02 -1.20950200e-01 -5.96159995e-02\\n-1.27885327e-01 2.70291537e-01 1.03023320e-01 1.40650839e-01\\n-1.70349151e-01 3.02430868e-01 -7.06722513e-02 2.56429732e-01\\n3.21581066e-01 1.75991148e-01 2.81737357e-01 3.24973732e-01\\n-4.89475518e-01 4.25270587e-01 -1.50225824e-02 -3.34316194e-01\\n3.03237975e-01 1.16709329e-01 4.48259056e-01 5.99275343e-02\\n8.83978680e-02 8.29369128e-02 -1.57754958e-01 1.40945390e-01\\n1.86626792e-01 -4.05217469e-01 -9.57964733e-02 -3.45108733e-02\\n-1.46836758e-01 1.01107834e-02 5.66654541e-02 8.18052068e-02\\n-3.83570760e-01 4.67964560e-01 2.32737124e-01 -2.30423406e-01\\n-7.10786730e-02 -4.45096463e-01 -7.42365271e-02 7.62551725e-02\\n-3.62130404e-02 1.73038617e-03 3.35518599e-01 1.45967498e-01\\n1.32403955e-01 2.93680821e-02 6.45787418e-02 7.67333925e-01\\n-1.38512803e-02 1.48196429e-01 -1.33719325e-01 2.53971666e-01\\n1.76519722e-01 -4.10493076e-01 2.78548479e-01 4.15549308e-01\\n6.17337637e-02 -1.20927528e-01 -1.78697869e-01 1.86371520e-01\\n-5.07205315e-02 -9.44609344e-02 -3.12949806e-01 7.79691339e-02\\n-2.44871303e-02 -3.45233411e-01 6.34652555e-01 1.47559732e-01\\n2.92232275e-01 5.22346348e-02 6.16950653e-02 -5.70451990e-02\\n-4.04910706e-02 2.30516970e-01 3.09516694e-02 2.42248103e-01\\n-3.53409648e-01 -1.98094949e-01 -1.25594482e-01 2.58810282e-01\\n-1.63262054e-01 2.34451756e-01 -1.02877468e-01 -6.26270175e-02\\n2.31362343e-01 4.11764123e-02 -3.43174934e-01 2.84666866e-01\\n8.91182199e-02 -1.65422589e-01 -1.30116776e-01 3.59108597e-01\\n4.61961962e-02 1.18675932e-01 -5.63206784e-02 -2.24686936e-01\\n6.92797542e-01 2.54175246e-01 1.21430248e-01 -5.56592420e-02\\n4.50366318e-01 -1.50836751e-01 2.12357536e-01 1.33042827e-01\\n-6.79938853e-01 3.56312841e-01 -1.29048126e-02 -1.50303781e-01\\n-3.19864936e-02 5.99157158e-03 2.69934326e-01 -4.61429715e-01\\n6.45606918e-03 -8.65569189e-02 -4.53485250e-01 -2.32634664e-01\\n-2.33120561e-01 1.62114874e-02 3.45313311e-01 -4.74464864e-01\\n-1.29196629e-01 1.55474290e-01 -5.26848435e-01 -1.73454657e-01\\n2.03691453e-01 1.28180295e-01 2.25429609e-01 1.29713953e-01\\n-2.86477525e-02 -4.43474978e-01 -2.34237462e-02 -5.23890615e-01\\n-4.57848549e-01 -1.17869889e-02 -3.08330685e-01 3.78769606e-01\\n1.54169202e-01 -9.41331405e-03 -2.89833963e-01 1.67355582e-01\\n-1.91053510e-01 -1.01237044e-01 1.78767517e-01 8.32180977e-02\\n1.53405204e-01 1.36301341e-02 -4.04747248e-01 3.55580211e-01\\n-2.25095466e-01 5.46011329e-01 2.31024727e-01 -7.32230246e-01\\n5.74651301e-01 3.48143429e-01 2.07070895e-02 -4.09685999e-01\\n4.73898530e-01 -3.27840418e-01 3.63477729e-02 1.85083807e-01\\n-3.49963963e-01 -3.38657081e-01 1.90444514e-01 -1.44300908e-01\\n-3.23285162e-01 5.11384249e-01 1.08282998e-01 8.71376917e-02\\n1.48188993e-01 -2.82800883e-01 6.10570982e-02 1.45225093e-01\\n-7.57299289e-02 -2.24193722e-01 -3.63301039e-01 -4.95508052e-02\\n-2.18269620e-02 -3.97020608e-01 -1.81401312e-01 -3.76587272e-01\\n-1.54027864e-01 -4.16910112e-01 -4.01245415e-01 4.10874486e-01\\n1.52734071e-01 2.89439484e-02 9.42164063e-02 2.42756754e-02\\n-8.22035149e-02 -6.66109085e-01 7.62750357e-02 5.69109991e-02\\n4.83015925e-01 1.79649577e-01 -2.92398874e-02 -1.36256456e-01\\n2.00605895e-02 6.46065176e-01 -3.02666903e-01 -4.36799318e-01\\n1.42087817e-01 1.98449224e-01 9.02390946e-03 -1.90455452e-01\\n2.39054160e-03 4.17563230e-01 -1.84093431e-01 1.57943424e-02\\n-2.09399968e-01 -7.40374625e-02 4.56414938e-01 -4.05411050e-02\\n-3.62800658e-01 -2.12435156e-01 -3.84178460e-02 1.91970006e-01\\n-5.10101199e-01 -2.35967934e-01 4.69315648e-01 2.65499353e-01\\n1.52784169e-01 1.12834655e-01 9.30865631e-02 1.44220725e-01\\n-1.98500738e-01 -3.55066508e-01 1.59675568e-01 1.02170616e-01\\n9.58727077e-02 2.72374731e-02 -1.09751344e-01 -7.05892682e-01\\n-3.57860398e+00 -1.54456064e-01 1.17296532e-01 -3.58474612e-01\\n1.57040104e-01 8.60425830e-03 1.75232008e-01 -1.40169248e-01\\n-3.67234439e-01 1.12563841e-01 -2.73984879e-01 -2.06158653e-01\\n7.84678832e-02 1.99624792e-01 2.62721181e-01 2.44374588e-01\\n2.89620131e-01 -3.38543862e-01 -8.31254274e-02 3.22546363e-01\\n-1.89086691e-01 -5.33013940e-01 1.56328768e-01 -8.07926357e-02\\n3.78168613e-01 2.36845106e-01 -3.02280843e-01 -6.91014752e-02\\n-3.36892247e-01 -3.28467816e-01 7.63467103e-02 -3.27701390e-01\\n-1.06256440e-01 1.78985268e-01 1.40661627e-01 -1.19899362e-01\\n4.04418372e-02 -4.33135271e-01 -5.54569028e-02 -4.21407878e-01\\n1.09078303e-01 -5.13788640e-01 6.36009648e-02 -1.57931134e-01\\n6.95812464e-01 -2.97442794e-01 2.68545449e-01 1.59259781e-01\\n1.96441963e-01 1.76789165e-01 5.63376211e-02 6.63564131e-02\\n-8.24726969e-02 -3.57424796e-01 -6.62016049e-02 -1.17699362e-01\\n5.42770445e-01 5.21977425e-01 -3.21123719e-01 -5.21274768e-02\\n8.28349143e-02 -3.39454353e-01 -2.71534413e-01 -3.85348678e-01\\n-5.05540669e-02 -4.16322611e-02 -6.14069104e-01 -4.93425310e-01\\n-3.02970201e-01 -7.09245279e-02 -1.46553800e-01 6.60475373e-01\\n-3.67950350e-01 -4.86978084e-01 4.62493412e-02 -5.35368860e-01\\n-2.33992692e-02 -2.45249316e-01 1.64906070e-01 -7.92293847e-02\\n-3.86970997e-01 -5.95680892e-01 -2.39894707e-02 -1.20241150e-01\\n-1.54713750e-01 -2.55245835e-01 1.55582979e-01 -3.65699567e-02\\n-3.07641327e-01 -3.54601860e-01 4.15111959e-01 1.21851481e-01\\n3.56321335e-01 1.89730749e-01 2.18801945e-01 1.54360786e-01\\n2.89261252e-01 9.22313891e-03 5.01034781e-02 -3.27154517e-01\\n9.12655592e-02 -2.59304605e-02 4.55766946e-01 -2.09569559e-01\\n-6.88465759e-02 7.36388937e-02 -3.07366729e-01 -1.92095235e-01\\n3.97151887e-01 2.92154141e-02 6.84614927e-02 -1.41952738e-01\\n4.20645714e-01 -2.76961416e-01 -1.63110688e-01 1.76148131e-01\\n8.92080739e-03 5.69060981e-01 5.61799332e-02 -4.54283863e-01\\n-1.40724540e-01 4.72900361e-01 -1.35789603e-01 -5.21575995e-02\\n8.16516578e-02 1.59935027e-01 -2.29043782e-01 4.82896678e-02\\n-1.62993316e-02 -2.80953765e-01 -2.22062886e-01 -9.15302783e-02\\n2.40725428e-02 1.02243997e-01 2.53852516e-01 2.19810177e-02\\n-1.28540620e-01 -2.88948596e-01 -1.95365593e-01 1.83673859e-01\\n2.45797560e-01 4.44608182e-01 1.13275096e-01 -1.45817235e-01\\n-9.22705010e-02 3.28213841e-01 -3.68295051e-02 1.32626116e-01\\n-1.91138089e-01 1.81276709e-01 -4.41945881e-01 -2.07546085e-01\\n-1.39557451e-01 -2.81789333e-01 1.43330291e-01 2.63030827e-01\\n9.53998193e-02 -3.55446674e-02 9.50289518e-02 -5.05297959e-01\\n3.64702284e-01 1.42178252e-01 2.39070311e-01 1.43523350e-01\\n3.79263423e-02 5.00493348e-01 4.00093049e-02 -1.58896729e-01\\n-3.99316192e-01 -7.93984458e-02 -1.11482248e-01 -1.33338869e-01\\n1.23052225e-01 -4.30563211e-01 -7.57423937e-02 2.88160175e-01\\n6.41240627e-02 -2.46326774e-01 -1.88240066e-01 4.27504361e-01\\n5.40549457e-02 -2.18872935e-01 -2.79368877e-01 -4.71048057e-02\\n3.06162477e-01 -1.15522444e-01 1.47318408e-01 -4.01239514e-01\\n-9.33479220e-02 6.45447001e-02 -2.84312088e-02 3.69291037e-01\\n1.59423083e-01 2.35275198e-02 -9.28477794e-02 -1.65495470e-01\\n4.37572420e-01 -2.25587916e-02 -9.69065428e-02 -1.55799881e-01\\n1.39202788e-01 -2.56935745e-01 -5.01692176e-01 5.93043044e-02\\n1.95458364e-02 -7.32901692e-02 9.97361988e-02 9.54829752e-02\\n4.90863882e-02 5.54760285e-02 -4.27533090e-01 -2.42149517e-01\\n-3.19615841e-01 -2.33973026e-01 -6.58251047e-02 -3.48971188e-01\\n-1.42133189e-02 -7.45663643e-02 -5.57183385e-01 2.73410231e-01\\n-3.88336629e-01 -5.00232615e-02 1.06363766e-01 1.16150804e-01\\n-3.62644225e-01 -6.84799775e-02 1.04726546e-01 2.18035460e-01\\n-3.36113334e-01 -2.87639201e-01 4.60156538e-02 -9.57406104e-01\\n1.70239821e-01 8.76221061e-02 -1.07657909e-01 5.42641059e-02\\n-1.63819513e-03 -4.52206135e-01 1.18598230e-01 -4.35451180e-01\\n9.50971805e-03 -8.01053867e-02 -2.58931994e-01 -2.85081565e-01\\n4.24206778e-02 -2.59201527e-01 -3.68386358e-01 3.84738505e-01\\n-3.13146204e-01 3.70339304e-01 -8.41901824e-02 6.82748109e-02\\n2.14676391e-02 -2.43325233e-01 1.67327106e-01 -5.71973741e-01\\n-4.01841313e-01 -2.72359997e-01 -3.27504039e-01 -2.40148768e-01\\n-9.89156403e-03 -3.05033743e-01 -2.41536587e-01 9.60338265e-02\\n2.73960263e-01 1.72606826e-01 -2.42198825e-01 -2.49932870e-01\\n1.65913831e-02 -6.25581741e-01 -4.21068594e-02 -2.32592821e-01\\n-7.67148957e-02 -1.54345244e-01 5.62568270e-02 -4.58587781e-02\\n7.54598528e-02 -5.04122555e-01 3.11357588e-01 -4.24329668e-01\\n-2.00700343e-01 8.13712832e-03 2.19845563e-01 8.46769512e-02\\n2.97267556e-01 -5.95009923e-01 -5.79856597e-02 3.08384418e-01\\n2.34660968e-01 8.14508572e-02 2.49725834e-01 1.62725411e-02\\n-1.08683653e-01 3.41774851e-01 -3.14241529e-01 1.34723827e-01\\n5.91243804e-01 6.94597065e-02 -1.14463463e-01 1.98782101e-01\\n2.70590574e-01 3.58612359e-01 5.90449989e-01 9.28065032e-02\\n4.15862612e-02 2.86983401e-01 6.43214732e-02 -4.33481634e-01\\n-8.49271566e-03 3.03755663e-02 -1.56749398e-01 -2.07867876e-01\\n5.57246685e-01 5.11646628e-01 -6.33273780e-01 -1.81267932e-01\\n-1.18068896e-01 -2.21558914e-01 1.81693301e-01 -2.89348364e-02\\n5.24213351e-02 -1.35913014e-01 5.39654374e-01 1.67307239e-02\\n7.00709149e-02 5.47003567e-01 -1.78729877e-01 -2.22354069e-01\\n-5.52947223e-02 7.47394785e-02 7.27902502e-02 4.99995947e-01\\n-6.96820095e-02 1.92893177e-01 -1.30753741e-01 7.53141716e-02\\n7.35032931e-02 3.09915215e-01 6.63059354e-02 1.23925850e-01\\n1.85047567e-01 3.80894691e-02 3.28887641e-01 4.27067935e-01\\n2.13729516e-01 4.70866084e-01 3.06196243e-01 9.29939970e-02\\n3.70843947e-01 6.15273774e-01 4.82394636e-01 -1.00984117e-02\\n-7.74666369e-02 -2.83566732e-02 1.39895871e-01 -1.17272839e-01\\n3.33040178e-01 4.18442249e-01 7.43177757e-02 8.05904925e-01\\n4.13264871e-01 2.60098010e-01 6.52689040e-01 -6.50068641e-01\\n-2.80000687e-01 9.07276720e-02 4.24983650e-01 -1.18952602e-01\\n-7.96879008e-02 1.52733222e-01 -2.36040607e-01 3.10547143e-01\\n-5.33010364e-01 -4.20841500e-02 2.41075903e-02 9.64438990e-02\\n2.44837597e-01 -5.09312637e-02 -2.05003366e-01 1.40806571e-01\\n-1.82958841e-01 -8.03655535e-02 -4.05690342e-01 -1.37749106e-01\\n-2.54208595e-01 -1.34888753e-01 -6.43124580e-02 -1.56268910e-01\\n1.78459305e-02 -3.27132881e-01 1.87085848e-02 8.74587744e-02\\n2.55218774e-01 -1.36147022e-01 -1.16964810e-01 -1.30390555e-01\\n2.34537989e-01 3.22108567e-01 4.19020355e-01 -8.30409229e-02\\n9.47498530e-02 -1.58502638e-01 -2.52952605e-01 1.81522489e-01\\n1.04169264e-01 4.05840836e-02 6.30686954e-02 2.25942880e-01\\n-2.13793829e-01 -4.27678674e-02 1.62121281e-01 4.09961969e-01\\n-3.88063490e-01 1.48173422e-01 -4.39369120e-02 3.11749399e-01\\n4.87943441e-02 1.76556975e-01 -2.56209075e-01 -3.74992788e-02\\n-2.42193148e-01 -5.11981249e-01 3.20799470e-01 -6.31775111e-02\\n-1.34411916e-01 1.51678413e-01 1.59209400e-01 3.32274228e-01\\n-2.56847143e-01 -4.02567089e-02 -8.80651269e-03 1.46502361e-01\\n-6.76369369e-02 2.87486404e-01 -1.24705561e-01 -3.13114911e-01\\n-2.28602156e-01 2.45329753e-01 -1.40167087e-01 5.90375289e-02\\n-1.95922107e-01 3.12457383e-01 6.56343922e-02 6.26347885e-02\\n3.17683429e-01 -9.38898977e-03 -2.17722446e-01 -1.97292104e-01\\n-3.64258289e-01 -1.21989205e-01 1.43814981e-01 8.17646086e-02\\n1.65961280e-01 -4.60202575e-01 -9.60230604e-02 -2.33497858e-01\\n-8.55634734e-02 -2.00792432e-01 7.28481337e-02 2.38590837e-02]]',\n", + " 'job_description': 'Job Informationen RESPONSIBILITIES: - work closely with other engineering team members, our product team members, and other stakeholders. - implement, test & document new climate change risk computations. - control the data quality at all computational steps. - employ agile development and rapid prototyping techniques. - promote best engineering practices to ensure quality assurance. - promote best team communication practices and train employees. - anticipate problems/opportunities and adapt to new challenges. OUR TECHNOLOGY STACK: - git - Python 3 - Django - PostgreSQL - Celery - UNIX - YouTrack YOU: - have experience in data manipulation and software development, particularly Python. - are interested in modern web technologies. Experience with Django is a big plus. - are a strong logical thinker. - interested in data quality management and project management. - have a Swiss work permit. - love to organize, communicate and collaborate. - would like to join a dedicated, technically savvy and enthusiastic team. - enjoy all aspects of a start-up environment. Benötigte Skills UNIX PostgreSQL Python Test Junior Konzeptionell / Analytisch',\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Quality Assurance\", \"Adaptability\"]',\n", + " 'hard_skills': '[\"Django (Web Framework)\", \"Integrated Product Team\", \"Data Quality\", \"Software Development\", \"Project Management\", \"PostgreSQL\", \"Data Manipulation\", \"Python (Programming Language)\", \"Climate Change Mitigation\", \"Git Flow\", \"YouTrack\", \"Community Organizing\", \"Unix\", \"Rapid Prototyping\", \"Agile Product Development\", \"Controllability\", \"Technical Savvy\", \"Quality Management\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '39',\n", + " 'job_title': 'elca data science program',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.27562314e-01 1.75768003e-01 3.85745257e-01 -7.53846839e-02\\n5.38861632e-01 -2.51454681e-01 4.17747423e-02 5.36658525e-01\\n3.81771624e-02 -2.98006207e-01 -7.10759871e-03 -2.27944583e-01\\n1.30849138e-01 1.35768011e-01 1.82235181e-01 2.98342913e-01\\n3.84591103e-01 7.95879066e-02 -1.23500988e-01 1.95772827e-01\\n7.62329251e-02 -8.74279365e-02 2.04567969e-01 6.82323217e-01\\n3.22815716e-01 7.79936090e-02 6.95775449e-02 1.14692524e-01\\n-3.37259211e-02 -2.66537964e-01 4.28345561e-01 2.61810236e-02\\n1.00309122e-02 -1.73531741e-01 2.64845073e-01 1.63979352e-01\\n-1.59840643e-01 -7.60877579e-02 -1.08794995e-01 7.93671682e-02\\n-4.45542425e-01 -2.21016780e-01 -2.75060870e-02 3.25853676e-02\\n-3.65276963e-01 -4.52949136e-01 5.46473153e-02 -2.08344400e-01\\n8.59058872e-02 2.30437964e-01 -4.23375756e-01 3.53380144e-01\\n-2.35676676e-01 -2.82671869e-01 3.38012546e-01 7.86176980e-01\\n-9.42078680e-02 -3.83360565e-01 -5.52750885e-01 -3.20124894e-01\\n1.82023212e-01 -4.01928127e-02 -6.48616254e-02 -3.12977165e-01\\n2.85388231e-01 -9.32922494e-03 1.41257942e-01 2.57811636e-01\\n-8.43277276e-01 -1.80191860e-01 -4.02188957e-01 2.76947170e-02\\n-2.91458458e-01 -6.01925328e-02 -2.85194606e-01 -1.49467051e-01\\n-7.11406115e-03 3.98861140e-01 -3.74504691e-03 -1.53381243e-01\\n-8.54882151e-02 1.86304986e-01 -3.93803507e-01 2.76427358e-01\\n1.27678707e-01 2.70666212e-01 7.57733360e-02 1.79807708e-01\\n-3.28062773e-01 4.34601575e-01 1.85756370e-01 -3.30000222e-01\\n2.18365088e-01 9.62103531e-02 4.50032860e-01 3.48845981e-02\\n1.12253182e-01 6.65424988e-02 -2.16973290e-01 3.77761245e-01\\n3.25054348e-01 -2.92762369e-01 -1.60984229e-02 3.44012268e-02\\n-5.47720939e-02 1.98701844e-02 5.01208268e-02 2.47358128e-01\\n-3.09037387e-01 3.69017094e-01 -3.58633674e-03 -3.15332502e-01\\n-1.67191014e-01 -5.22809386e-01 -1.11273341e-01 2.71982793e-02\\n7.11524859e-02 1.87204018e-01 2.88483929e-02 2.36338481e-01\\n1.11737493e-02 -1.13308534e-01 1.32486612e-01 8.07621419e-01\\n-4.74676117e-02 1.49766773e-01 -2.27576226e-01 3.00051123e-01\\n-5.80943609e-03 -3.50307673e-01 2.43161425e-01 1.35783866e-01\\n4.67739999e-02 -1.32521093e-01 -7.93495849e-02 1.88242823e-01\\n-1.28798515e-01 -2.93433696e-01 -3.22662622e-01 2.49826819e-01\\n-2.12557018e-01 -5.11169434e-01 6.02558196e-01 -2.76755709e-02\\n9.61310714e-02 -1.34348780e-01 -1.13826171e-01 -1.50893359e-02\\n-1.72396943e-01 2.28392318e-01 5.84853534e-03 8.76622126e-02\\n-3.04617167e-01 -1.74957186e-01 -2.27134317e-01 2.22366661e-01\\n-3.13327283e-01 2.00080946e-01 -2.18198717e-01 -1.21069647e-01\\n4.13008392e-01 2.14103106e-02 -3.15402776e-01 2.02593252e-01\\n-5.28723607e-03 6.42187940e-03 -7.97987655e-02 2.44553477e-01\\n-3.38586658e-01 2.81435639e-01 -4.42826971e-02 -9.93093103e-02\\n5.80310524e-01 -3.09660751e-02 1.08882226e-02 -2.00092643e-01\\n1.93153247e-01 -3.97330383e-03 2.02402204e-01 1.00976035e-01\\n-5.78831673e-01 4.50500757e-01 -1.21698685e-01 1.87891722e-02\\n1.25278100e-01 -9.38358381e-02 1.97817504e-01 -2.46286884e-01\\n-4.98281652e-03 -8.32304955e-02 -2.21465796e-01 -1.86311513e-01\\n-3.66478711e-01 -6.53567538e-02 4.86956984e-01 -5.33530831e-01\\n-4.79687005e-02 3.13143134e-01 -6.37983143e-01 9.32804495e-03\\n2.15964586e-01 1.41884327e-01 1.50035203e-01 2.65402764e-01\\n-1.92584366e-01 -4.73628312e-01 1.77162096e-01 -4.02756870e-01\\n-1.11032732e-01 2.03411520e-01 -4.63165939e-02 3.34762156e-01\\n3.42245698e-02 8.81424248e-02 -1.60127640e-01 1.08104773e-01\\n-2.62903750e-01 9.57508162e-02 2.48826101e-01 7.18571395e-02\\n3.75048757e-01 3.21291350e-02 -4.17964756e-01 4.54304844e-01\\n-1.07150599e-01 4.01570857e-01 7.82042071e-02 -8.62355530e-01\\n3.71580213e-01 3.56425762e-01 1.34811476e-02 -4.17693824e-01\\n7.36369848e-01 -2.86124110e-01 -6.49637952e-02 1.82200000e-01\\n-4.29362476e-01 -3.40327024e-01 2.36117303e-01 -2.74252206e-01\\n-2.93458134e-01 6.84120178e-01 5.75060956e-02 3.39342475e-01\\n3.83405596e-01 -1.34769022e-01 -1.02041401e-01 1.44116342e-01\\n-1.64158911e-01 -1.96026340e-01 -3.79023969e-01 -2.08258733e-01\\n-1.19920619e-01 -4.76532906e-01 -2.28801966e-01 -5.61732411e-01\\n-2.15592355e-01 -4.26924467e-01 1.01385843e-02 1.41913205e-01\\n3.61537546e-01 2.37011701e-01 -3.34170349e-02 -4.76956069e-02\\n-1.40942812e-01 -6.84605896e-01 -8.48695561e-02 5.14720529e-02\\n2.58899689e-01 1.98256522e-01 4.95762080e-02 7.28322938e-02\\n3.24767232e-02 3.87693435e-01 -4.70132649e-01 -2.36376509e-01\\n2.23842889e-01 1.70034692e-01 -1.11203063e-02 -4.26593572e-02\\n4.17948924e-02 3.04820687e-01 -3.60211939e-01 1.29343688e-01\\n-5.00070788e-02 -4.54837233e-02 2.37266406e-01 3.01346660e-01\\n-1.33880898e-01 -3.97678643e-01 5.94804324e-02 2.29138806e-01\\n-4.43317950e-01 -3.87407124e-01 5.97324789e-01 5.19956462e-02\\n8.27252865e-02 2.45182008e-01 4.07271504e-01 -8.98790061e-02\\n-1.50041476e-01 -9.14386511e-02 9.53440741e-02 1.41815454e-01\\n1.64860949e-01 1.87754110e-01 -1.16683766e-01 -4.79350418e-01\\n-3.61804533e+00 -1.00510046e-01 8.24420825e-02 -2.05609202e-01\\n2.56524175e-01 -2.18045503e-01 6.85637221e-02 -7.02482238e-02\\n-3.59288633e-01 -6.12580590e-02 -9.11240056e-02 -1.43289506e-01\\n1.01301178e-01 4.85678464e-01 2.31829479e-01 2.96039999e-01\\n7.38686249e-02 -3.17311913e-01 -7.27382153e-02 5.50531685e-01\\n-1.91064045e-01 -5.88228643e-01 1.93726867e-01 2.01323768e-03\\n2.54793227e-01 3.82781416e-01 -5.26190996e-01 -1.10985033e-01\\n-2.48881817e-01 -1.78665057e-01 1.93074629e-01 -1.48387656e-01\\n-1.32625759e-01 3.47259820e-01 2.41692394e-01 -8.73849448e-03\\n1.66910470e-01 -2.61830032e-01 -3.94550823e-02 -2.81519502e-01\\n-5.26826305e-04 -7.49136448e-01 -1.70608297e-01 -6.91307709e-02\\n7.86375880e-01 -2.29314417e-01 1.44447386e-01 1.67760607e-02\\n4.72893454e-02 9.02187452e-02 -6.98800609e-02 6.09022602e-02\\n-2.66703516e-01 -2.94724435e-01 -1.93239614e-01 -2.34644916e-02\\n5.33748388e-01 5.66570342e-01 -1.34499192e-01 -2.07712442e-01\\n-1.31277904e-01 -3.38422805e-01 -5.87358654e-01 -3.26151937e-01\\n-2.42800832e-01 -1.75613567e-01 -5.26299715e-01 -4.52828109e-01\\n-6.78696707e-02 -6.81885406e-02 4.53031100e-02 5.49311638e-01\\n-3.46342742e-01 -3.50743890e-01 -6.43805116e-02 -4.80344474e-01\\n2.14185148e-01 -1.34917945e-01 7.72950202e-02 -6.62983507e-02\\n-2.33931765e-01 -4.05611247e-01 1.71940662e-02 5.75805530e-02\\n-1.19641975e-01 -2.32792646e-01 2.17311189e-01 -2.06647575e-01\\n-3.78884107e-01 -6.52003586e-01 3.86352956e-01 4.85046990e-02\\n2.83688009e-01 1.82688624e-01 2.96811432e-01 4.96671461e-02\\n3.07722747e-01 -1.74080417e-01 -2.56455969e-02 -5.29622376e-01\\n6.93832636e-02 5.12939296e-04 5.78639328e-01 -2.84755528e-01\\n1.57300353e-01 2.02110857e-02 -1.93477571e-01 5.36904763e-03\\n1.94507197e-01 8.60887766e-02 8.91363323e-02 -3.78223836e-01\\n1.30342051e-01 -1.04535177e-01 -1.55500367e-01 8.46154466e-02\\n4.69330326e-03 6.04101002e-01 -1.65395793e-02 -2.94107914e-01\\n-1.12728968e-01 4.53076243e-01 -4.52782251e-02 -2.02534944e-01\\n-2.68997282e-01 -1.27234403e-03 -2.17528015e-01 1.01420723e-01\\n-6.66281860e-03 -1.10313073e-01 -3.02951604e-01 -1.20034523e-01\\n-1.00403279e-01 4.71399933e-01 1.94233209e-01 1.29402176e-01\\n-1.05411313e-01 -2.51053452e-01 3.22418511e-02 1.75440535e-01\\n1.29880250e-01 2.94724137e-01 9.74326506e-02 -2.47959211e-01\\n-6.40300941e-03 2.18777150e-01 -3.32655549e-01 1.90394148e-01\\n-2.77570099e-01 8.18191767e-02 -4.26380873e-01 -3.50005358e-01\\n-2.51541495e-01 -3.59279215e-01 1.55466348e-01 2.68635511e-01\\n9.11565870e-02 -7.56492466e-02 1.41258210e-01 -4.77524489e-01\\n2.89443731e-01 8.93007591e-02 1.57998189e-01 1.65727586e-01\\n4.42664735e-02 5.96590221e-01 -1.93441045e-02 -7.45112523e-02\\n-4.73227762e-02 1.24320664e-01 -2.15539008e-01 -3.20937365e-01\\n6.18394930e-03 -4.88382876e-01 -1.94986150e-01 4.28578049e-01\\n3.23258191e-02 -2.24571899e-01 -2.30158985e-01 -5.64724253e-03\\n4.15677428e-02 -4.15307224e-01 -1.64710194e-01 2.36559622e-02\\n3.32984298e-01 2.02211782e-01 3.53325635e-01 -4.48929250e-01\\n1.11508012e-01 4.78628576e-02 -5.42596355e-02 4.86448765e-01\\n9.54429507e-02 1.69885188e-01 -2.53407776e-01 -1.14678770e-01\\n3.40496361e-01 -2.03805774e-01 5.90866357e-02 1.75412036e-02\\n6.86914846e-02 -1.83759540e-01 -3.65029126e-01 7.57057965e-02\\n2.33901143e-02 -1.23538606e-01 -1.82880610e-02 9.40757245e-02\\n8.98023546e-02 2.34193187e-02 -6.70311272e-01 -2.19245881e-01\\n-2.41545171e-01 4.85136770e-02 2.65738592e-02 -5.30459821e-01\\n-5.13198674e-02 -5.61236255e-02 -5.28185904e-01 3.68840307e-01\\n1.87304209e-03 9.75797884e-03 2.45671317e-01 -1.35242507e-01\\n-4.13762867e-01 -1.39497042e-01 2.41009176e-01 2.53397971e-01\\n-1.42315567e-01 -2.24531665e-01 -9.80765745e-02 -9.71109450e-01\\n1.18901342e-01 -1.23209678e-01 -1.25208452e-01 1.19554728e-01\\n3.14119980e-02 -7.20696986e-01 1.71749264e-01 -3.37866604e-01\\n-1.05420478e-01 2.27898713e-02 -2.22937971e-01 -5.47621965e-01\\n5.07765682e-03 5.07517755e-02 -2.62608349e-01 3.66537184e-01\\n-3.13053191e-01 3.75860393e-01 3.77718210e-02 1.18736178e-01\\n8.14891905e-02 -3.88248891e-01 1.23256430e-01 -2.64324874e-01\\n-2.53849685e-01 -6.14459738e-02 -1.36694118e-01 -1.82016343e-01\\n5.25886891e-03 -3.49987984e-01 -2.04951614e-01 1.09725274e-01\\n2.36193269e-01 -5.76109327e-02 -1.63712695e-01 -8.95962045e-02\\n-1.32328784e-02 -3.41251671e-01 1.12397559e-01 -2.23647818e-01\\n2.74732728e-02 -7.13201761e-02 2.59198427e-01 1.02023207e-01\\n3.40187624e-02 -4.45985079e-01 4.29548442e-01 -2.66596258e-01\\n-3.67034227e-01 1.69956908e-02 1.81129146e-02 -1.32056355e-01\\n2.71915555e-01 -3.23558956e-01 -1.56983539e-01 3.77039969e-01\\n2.58607715e-02 5.54441027e-02 3.33232224e-01 -1.93069726e-01\\n-7.45400861e-02 1.75947562e-01 -2.57623494e-01 8.11523572e-02\\n8.87438536e-01 7.27657601e-02 2.91504145e-01 -8.08807439e-04\\n3.18810306e-02 2.99495786e-01 4.48062986e-01 9.19603035e-02\\n-1.36797979e-01 3.64653200e-01 1.96445778e-01 -5.42837143e-01\\n5.10001443e-02 8.87235105e-02 -2.31183916e-01 -3.23859423e-01\\n5.49758315e-01 4.32714790e-01 -1.89571649e-01 -3.55552226e-01\\n-1.00282319e-01 -3.41858864e-01 1.14817291e-01 -8.99456590e-02\\n1.72485992e-01 -1.16593383e-01 5.49813092e-01 8.36055428e-02\\n2.54741848e-01 3.87960225e-01 -1.74738228e-01 -4.64237124e-01\\n-1.10814936e-01 2.09436461e-01 6.18675947e-02 4.51807439e-01\\n-2.02112451e-01 4.85010564e-01 -8.68679732e-02 9.87124890e-02\\n-1.28217205e-01 -1.49393052e-01 2.69397825e-01 1.47871763e-01\\n2.93993354e-02 1.73883036e-01 6.73452795e-01 5.68780780e-01\\n4.18836117e-01 4.95445192e-01 2.17178866e-01 -5.39094731e-02\\n5.48864901e-01 5.29124618e-01 4.75591838e-01 1.35218516e-01\\n1.24927172e-02 -3.55058685e-02 4.05744538e-02 1.63218156e-01\\n3.04372072e-01 2.80554742e-01 -2.27124840e-02 7.60935664e-01\\n3.34214687e-01 2.37479791e-01 6.75716877e-01 -6.41901076e-01\\n-2.78410465e-01 -4.29420127e-03 4.41207945e-01 -3.94764304e-01\\n-2.22495735e-01 1.74669549e-01 -2.49235734e-01 8.22156817e-02\\n-5.03545582e-01 -2.19902471e-01 -8.61272290e-02 2.33891249e-01\\n-1.31532848e-01 -9.31122899e-02 -5.44556528e-02 1.23937272e-01\\n-1.08730569e-01 -2.93386132e-01 -5.14881492e-01 -7.81542659e-02\\n-1.90153196e-01 -1.98888138e-01 -1.79355383e-01 4.06051427e-02\\n-2.30978504e-01 -2.92059124e-01 -1.80285618e-01 -9.25961602e-03\\n2.99799353e-01 -1.07208230e-01 -1.56794310e-01 -1.08440332e-01\\n3.23752493e-01 2.34590501e-01 4.58584130e-01 1.05373105e-02\\n-4.32602726e-02 -3.53218287e-01 -1.31593764e-01 7.83054754e-02\\n2.28627384e-01 3.19646522e-02 1.10327220e-02 3.96888584e-01\\n-2.60737598e-01 -8.30419809e-02 6.44620135e-02 3.14841062e-01\\n-4.89970714e-01 -6.68966472e-02 7.68304663e-03 4.03115124e-01\\n7.73999617e-02 1.85292348e-01 -1.67584449e-01 6.72553405e-02\\n-4.16915640e-02 -4.52302128e-01 2.67468274e-01 -6.02861978e-02\\n-9.41103045e-03 7.25296289e-02 1.95146754e-01 2.04866976e-01\\n-2.05205187e-01 -6.18208162e-02 -8.00065249e-02 1.92741826e-01\\n5.80133907e-02 3.16281170e-01 -2.80494571e-01 -4.13446009e-01\\n-2.23303095e-01 8.62563103e-02 -1.10087134e-01 1.44151077e-01\\n9.65426862e-03 3.33849877e-01 4.51238006e-02 8.36540982e-02\\n3.89106542e-01 -8.17313194e-02 -6.22094013e-02 -2.59390652e-01\\n-1.84951425e-01 -2.78275877e-01 -8.89367536e-02 -3.79599035e-02\\n2.17834771e-01 -2.81014979e-01 -1.71533898e-01 -1.35948285e-01\\n-1.84048623e-01 -3.04433614e-01 9.52267125e-02 -1.34434521e-01]]',\n", + " 'job_description': 'Are you about to graduate and would like to become a data science professional? Come join ELCA’s competitive Data Science Program! In this role You will actively participate in innovative data science projects with our main clients in Switzerland. Examples of areas you might work on: Natural Language Processing and Predictive Maintenance. You will learn through concrete projects, work closely with our clients and become a data science professional You will develop your skillset in a highly sought-after field and get exposure to what the market needs You will actively participate in knowledge and experience sharing meetings with the team What we offer A permanent contract with a three-year artificial intelligence program in which participants will integrate several industrial projects in the data science and data engineering fields Relevant trainings will be offered as part of the curriculum A very pleasant working environment in a dynamic and highly motivated data science team Coaching by our data science lead experts About your profile You are a strong fresh master’s graduate in the data science, computer science, communication systems or equivalent fields, or you have a master’s degree in one of these fields and have one or two years of professional / research experience. You have successfully taken at least one machine learning and data analysis courses Certifications from renowned online courses such as Stanford’s are valid Minimum required GPA in the relevant courses >= 5/6 Minimum required GPA in projects (semester and Master thesis) >= 5/6 Your team spirit is amongst your strongest qualities Your location base: Lausanne but you must be willing to travel to Geneva or Bern on a regular basis You must submit your diplomas and grades with your application Fluency in English and in either French or German',\n", + " 'soft_skills': '[\"Innovation\", \"Integration\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Machine Learning Methods\", \"Predictive Maintenance\", \"Research Experiences\", \"Data Science\", \"Activism\", \"Natural Language Processing\", \"Online Course Development\", \"Data Engineering\", \"Science Communication\", \"Computer Science\", \"Artificial Intelligence\", \"Survey Data Analysis\", \"Communications Systems\", \"Industrialization\"]',\n", + " 'languages': \"['English', 'Avaric', 'Dzongkha', 'Bambara', 'Malay']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'frontend software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.43801951e-01 3.04664254e-01 6.32743299e-01 -1.06854185e-01\\n4.87646967e-01 -2.94332951e-01 1.37239993e-01 4.09365863e-01\\n-1.33238286e-01 -3.56336474e-01 -2.24073231e-01 -2.67607152e-01\\n-1.73421398e-01 -1.65297184e-02 1.58311233e-01 3.00390780e-01\\n2.43403271e-01 1.44851759e-01 -2.55714178e-01 4.28972721e-01\\n2.42723554e-01 -1.86964929e-01 9.50703546e-02 5.76076448e-01\\n3.83632153e-01 -2.23678350e-02 -1.11208186e-01 6.76733553e-02\\n-2.63309926e-01 -2.87610650e-01 3.82483006e-01 3.96078378e-02\\n-8.19155276e-02 -2.22560436e-01 1.16582423e-01 1.13863595e-01\\n-1.85603410e-01 7.42620975e-02 8.44285116e-02 1.89040542e-01\\n-4.33212280e-01 -1.54293746e-01 1.94546625e-01 2.53879912e-02\\n-2.00338975e-01 -3.59630615e-01 1.54013216e-01 3.79333273e-02\\n7.86461122e-03 4.20111977e-02 -4.49298412e-01 4.35314059e-01\\n-2.44344100e-01 -3.19771439e-01 3.44188362e-01 4.96258706e-01\\n-7.52473101e-02 -5.75018942e-01 -3.32102001e-01 -2.76812732e-01\\n8.35676640e-02 -1.13145269e-01 1.08216917e-02 -2.46394187e-01\\n3.95850658e-01 -3.73902395e-02 -3.24440114e-02 3.42593312e-01\\n-8.24520886e-01 -4.61890548e-02 -8.15943182e-02 -5.02635576e-02\\n-3.56309593e-01 -8.91486555e-02 -2.78530985e-01 -7.97300786e-02\\n-6.72791079e-02 4.35228765e-01 5.31020202e-02 1.01261988e-01\\n-4.80471738e-02 2.09807634e-01 -2.23933533e-01 2.58239895e-01\\n2.86724955e-01 2.87712127e-01 1.56051919e-01 3.17852765e-01\\n-3.89625192e-01 3.67842674e-01 1.07566535e-01 -2.56553113e-01\\n2.19558507e-01 1.66036516e-01 5.07274926e-01 8.86929706e-02\\n1.23818286e-01 1.35711119e-01 -2.77809113e-01 1.92265809e-01\\n2.95913875e-01 -2.67591089e-01 -6.01857454e-02 1.50686374e-03\\n-1.02634490e-01 1.48752585e-01 3.09704617e-02 4.00002033e-01\\n-3.63573134e-01 5.50787508e-01 5.30914105e-02 -1.88348621e-01\\n-8.77909660e-02 -5.89384437e-01 -1.46080494e-01 7.05716014e-02\\n-1.59091235e-03 2.19215795e-01 2.22090781e-01 2.78352380e-01\\n2.13592902e-01 1.28292114e-01 2.19606489e-01 9.76525366e-01\\n-8.13614391e-03 1.68957770e-01 -2.98416585e-01 4.30756897e-01\\n1.79662675e-01 -1.61552578e-01 1.73958346e-01 3.86855185e-01\\n2.21547693e-01 -8.41523632e-02 -2.01957777e-01 3.88921052e-01\\n-4.67790179e-02 -1.76123872e-01 -3.01546842e-01 7.16145039e-02\\n-1.89139768e-01 -5.41219413e-01 5.52438200e-01 -5.47197163e-02\\n1.31550983e-01 -2.79712095e-03 8.38311091e-02 -7.29104504e-02\\n-1.10243000e-01 2.19828591e-01 9.28632617e-02 1.70638025e-01\\n-3.88084859e-01 -1.17299490e-01 -3.32506239e-01 2.75336057e-01\\n-2.47070029e-01 3.32584903e-02 -7.94696435e-02 -1.27175570e-01\\n3.14349025e-01 1.09427553e-02 -3.79735708e-01 2.84850091e-01\\n-6.10045791e-02 -6.20872481e-03 -1.11755677e-01 3.23184818e-01\\n-9.22076404e-02 1.77571297e-01 -4.94115949e-02 -2.02411741e-01\\n4.89685237e-01 2.26220265e-01 7.89776370e-02 -8.01711231e-02\\n4.24850643e-01 -7.94461221e-02 2.01090068e-01 4.37354818e-02\\n-7.58640707e-01 3.11667621e-01 -1.39512811e-02 -6.31640628e-02\\n6.05637208e-02 -1.55173857e-02 3.46240401e-01 -3.54552984e-01\\n3.38032469e-02 -2.36295685e-01 -3.71773392e-01 -1.76953062e-01\\n-2.94272006e-01 -3.23535688e-02 5.24507642e-01 -3.77155125e-01\\n-2.33510673e-01 2.61284113e-01 -5.84904253e-01 1.23110324e-01\\n3.76459092e-01 2.04874784e-01 9.40305367e-02 1.13221556e-01\\n-1.51271015e-01 -5.84072769e-01 5.95615394e-02 -2.79976964e-01\\n-3.67600173e-01 2.14894667e-01 -3.18532825e-01 2.35562891e-01\\n6.41163066e-02 1.94361899e-02 -1.22367151e-01 4.52882424e-02\\n-6.91927224e-02 -1.61303461e-01 1.63659945e-01 9.49499607e-02\\n3.55067730e-01 1.15357516e-02 -3.92337620e-01 5.37651181e-01\\n-2.80301720e-01 4.49732989e-01 7.67051652e-02 -9.28619862e-01\\n5.61919868e-01 3.03219020e-01 -2.25417945e-03 -3.27105433e-01\\n7.41088569e-01 -1.76696926e-01 -3.78212444e-02 9.15189087e-02\\n-3.30762118e-01 -3.21820408e-01 1.65192142e-01 -1.69345096e-01\\n-2.79167682e-01 4.68448430e-01 1.25834018e-01 8.84476956e-03\\n3.09192091e-01 -2.11579978e-01 -1.03458501e-01 1.00971460e-01\\n-1.34844914e-01 -1.83686912e-01 -2.71868020e-01 1.99572384e-01\\n-6.28494024e-02 -5.03302038e-01 -7.61559531e-02 -4.17537630e-01\\n-2.47925207e-01 -4.04432118e-01 -3.28459144e-01 3.64781797e-01\\n6.41399324e-02 1.67227149e-01 -2.01479774e-02 -3.44765484e-02\\n-3.06393266e-01 -6.05937719e-01 -9.42266360e-03 6.97250366e-02\\n3.48016918e-01 1.94253027e-01 8.61977637e-02 -4.40157065e-03\\n-6.90550804e-02 5.47477841e-01 -1.86131120e-01 -7.46162683e-02\\n5.36040775e-02 1.27117351e-01 2.97708693e-03 -1.31852210e-01\\n6.62158206e-02 3.89276296e-01 -1.96360454e-01 7.17203692e-02\\n-2.51857132e-01 -4.73562954e-03 3.51131737e-01 -1.84828892e-01\\n-3.22470635e-01 -2.77242512e-01 -2.88707986e-02 2.15663433e-01\\n-5.23462713e-01 -2.49919802e-01 5.71616352e-01 6.69655949e-02\\n2.01716214e-01 2.07158372e-01 1.63657576e-01 -1.10455036e-01\\n-1.75105438e-01 -2.53246993e-01 1.94511250e-01 3.79163921e-02\\n7.58373663e-02 2.38392204e-01 -1.43427923e-01 -5.57461560e-01\\n-3.45653987e+00 -2.25666970e-01 1.86047971e-01 -3.36251587e-01\\n7.00988621e-02 -1.47015452e-01 6.90668123e-03 -1.93146244e-01\\n-2.10117951e-01 8.50557089e-02 -8.93044993e-02 -1.01415537e-01\\n1.44926786e-01 3.60226423e-01 1.25128806e-01 2.24543124e-01\\n2.46724069e-01 -2.12469190e-01 -1.60791855e-02 2.99557716e-01\\n-1.87855884e-01 -5.45831025e-01 2.29288086e-01 -8.83627981e-02\\n2.65760899e-01 3.09721678e-01 -2.78742075e-01 -2.30839252e-01\\n-1.58001900e-01 -2.69436747e-01 1.02886036e-01 -1.63943514e-01\\n-8.95713568e-02 3.51781338e-01 1.37632161e-01 3.41867246e-02\\n2.20362857e-01 -3.24611902e-01 -7.53170811e-03 -3.51345241e-01\\n1.83259487e-01 -6.36673331e-01 -9.77046639e-02 -6.26446977e-02\\n6.90920115e-01 -4.21544909e-01 1.66997343e-01 1.50235176e-01\\n3.30949277e-02 1.58933327e-01 4.01655631e-03 -1.41147330e-01\\n-2.34966487e-01 -9.68385786e-02 1.22521207e-01 -1.23688608e-01\\n4.98103350e-01 5.62780976e-01 -1.81868166e-01 -4.86278348e-02\\n4.54834774e-02 -3.43240976e-01 -5.55224240e-01 -4.01442021e-01\\n-2.09729284e-01 -1.74427956e-01 -6.87663376e-01 -4.98480767e-01\\n-9.20046642e-02 -8.34719017e-02 -1.51804775e-01 5.00657082e-01\\n-2.32320890e-01 -3.91327560e-01 -1.08151510e-01 -4.09400463e-01\\n8.35784003e-02 -1.33228272e-01 -8.58193561e-02 -1.87371656e-01\\n-2.60247469e-01 -4.48980391e-01 -1.76314842e-02 1.76579524e-02\\n-1.91700548e-01 -1.77976459e-01 2.26227239e-01 -2.10897431e-01\\n-3.25205952e-01 -5.00921071e-01 4.78591770e-01 7.38535002e-02\\n2.22961545e-01 4.62902188e-02 2.65757531e-01 1.47438198e-01\\n4.02132869e-01 -2.89034396e-01 2.61781756e-02 -3.97225767e-01\\n1.57539845e-01 2.99648885e-02 5.43606579e-01 -1.82741091e-01\\n1.01705551e-01 1.53669327e-01 -2.19955817e-01 -2.06989959e-01\\n3.66716594e-01 -9.56741814e-03 -6.24971930e-03 -2.58969367e-01\\n3.19528371e-01 -2.31769368e-01 -2.86979288e-01 1.17017388e-01\\n4.30772826e-02 6.12422585e-01 -1.25633210e-01 -4.02901888e-01\\n-2.83803374e-01 5.15229106e-01 -2.44643807e-01 -4.03778553e-02\\n-1.55504405e-01 9.79435965e-02 -1.52472943e-01 4.13491160e-01\\n3.01932693e-02 -1.27418920e-01 -3.31271142e-01 -7.97156394e-02\\n-9.86396428e-03 2.52371848e-01 2.48351723e-01 3.10363453e-02\\n3.62005457e-02 -3.30272496e-01 1.13976048e-02 1.26186326e-01\\n1.16379850e-01 2.38886192e-01 7.78713450e-02 -1.11604109e-01\\n1.58764236e-02 3.23369950e-01 -1.98942050e-01 2.32020885e-01\\n-3.07196796e-01 7.37151057e-02 -5.21885633e-01 -3.67267668e-01\\n-2.04657614e-01 -2.90399194e-01 4.11370546e-02 2.34135315e-01\\n4.64561544e-02 8.91952664e-02 5.51664121e-02 -5.27570486e-01\\n3.27942342e-01 2.99620889e-02 3.35274488e-01 2.24702343e-01\\n-8.56683329e-02 4.26490039e-01 1.11473091e-02 -4.56508063e-02\\n-2.06100315e-01 -9.10685398e-03 -1.18240699e-01 -1.50980845e-01\\n3.49591486e-02 -4.51719105e-01 9.14148334e-03 3.86673868e-01\\n1.17207356e-01 -4.02205378e-01 -1.71762869e-01 1.66221425e-01\\n4.59441617e-02 -4.57251161e-01 -1.88928947e-01 -5.79261892e-02\\n2.96822876e-01 5.87357171e-02 3.75135988e-01 -4.53877985e-01\\n3.44254114e-02 7.55259693e-02 -1.32735431e-01 5.19874215e-01\\n-9.91509389e-03 -3.10055390e-02 -1.42054632e-01 -1.46375626e-01\\n3.32684636e-01 -1.88540444e-01 -2.48413458e-02 -2.24708706e-01\\n1.58014745e-01 -1.02950245e-01 -4.02268678e-01 -5.88706657e-02\\n-4.73555364e-02 -1.19916372e-01 3.53110395e-02 4.61347289e-02\\n1.23074185e-02 1.55632466e-01 -4.13900733e-01 -3.32708895e-01\\n-2.98696280e-01 -2.09041804e-01 3.25650536e-02 -3.01105917e-01\\n-9.53198522e-02 1.60517432e-02 -4.52231854e-01 2.25786626e-01\\n-2.19426394e-01 -4.66946438e-02 2.33442560e-01 -4.49880166e-03\\n-3.93165290e-01 -1.45927593e-01 1.77311108e-01 1.85487777e-01\\n-2.56884485e-01 -3.08755308e-01 -3.71140726e-02 -1.00964475e+00\\n1.91837221e-01 3.18966061e-02 -5.32261208e-02 5.84800206e-02\\n-1.04599707e-01 -4.88487303e-01 1.79084688e-01 -4.79246765e-01\\n-1.89336687e-02 5.72432950e-02 -2.75062859e-01 -4.35738415e-01\\n1.29951507e-01 2.88638677e-02 -3.48432690e-01 3.54824126e-01\\n-4.38770413e-01 3.69435012e-01 -9.79853328e-03 9.60118100e-02\\n-1.49828270e-01 -2.13677898e-01 1.90632045e-02 -5.57851315e-01\\n-3.83823156e-01 -1.39461309e-01 -2.30905145e-01 -8.86255577e-02\\n-3.19140963e-02 -1.78702071e-01 -1.21432841e-01 6.83760643e-02\\n3.03821564e-01 1.54794127e-01 -4.55648405e-03 -2.35956207e-01\\n1.11210026e-01 -4.54432607e-01 3.42675089e-03 -2.62609214e-01\\n-6.00495860e-02 -1.54683068e-01 1.19809948e-01 5.12874313e-02\\n4.77147140e-02 -3.60932678e-01 3.97173166e-01 -1.87284261e-01\\n-2.80867785e-01 -1.21304784e-02 8.52919742e-02 -6.75825449e-03\\n2.64998823e-01 -4.96838540e-01 3.36437970e-02 3.11138511e-01\\n1.11213841e-01 6.81063384e-02 2.94738203e-01 1.16124917e-02\\n-9.44410115e-02 2.47866094e-01 -3.30190033e-01 1.86626129e-02\\n8.07536364e-01 1.33659720e-01 7.19944611e-02 1.22543737e-01\\n1.44484341e-01 3.96527201e-01 4.74688798e-01 1.46047417e-02\\n-2.55955588e-02 3.46837610e-01 4.66072857e-02 -6.59245312e-01\\n2.38841753e-02 9.74366441e-02 -3.04243892e-01 -1.71175569e-01\\n6.68884516e-01 4.03843433e-01 -2.77912319e-01 -2.67787248e-01\\n-1.39360696e-01 -2.37171486e-01 1.17529452e-01 -2.00883836e-01\\n4.92978394e-02 -1.16019040e-01 5.15603006e-01 3.39487568e-02\\n1.91352636e-01 4.34989542e-01 -2.35057622e-01 -3.64696860e-01\\n5.38216643e-02 2.38192663e-01 1.30360231e-01 4.22230750e-01\\n-1.14630468e-01 1.61176547e-01 -2.72663031e-02 1.14847228e-01\\n-5.05996533e-02 9.24516618e-02 1.33905962e-01 1.23801336e-01\\n2.47624397e-01 -4.44815680e-02 3.21778059e-01 4.37996805e-01\\n2.96047181e-01 5.01949847e-01 2.95685589e-01 -2.06836406e-02\\n4.21792120e-01 5.83679557e-01 4.44633812e-01 2.17041448e-01\\n-7.84374103e-02 1.38526753e-01 6.06900454e-02 -9.23720747e-02\\n3.00854653e-01 3.34515542e-01 5.65134324e-02 9.05631900e-01\\n4.58139539e-01 3.03264439e-01 7.76284575e-01 -5.56237817e-01\\n-4.08237040e-01 -6.20390624e-02 3.79456937e-01 -2.58509487e-01\\n-1.43472716e-01 1.11741900e-01 -2.36429468e-01 2.29159817e-01\\n-5.64016402e-01 -1.61455452e-01 -9.30906758e-02 4.58429195e-02\\n1.29583761e-01 1.09015782e-04 -2.58392811e-01 -1.26261950e-01\\n-2.36580938e-01 -1.07916035e-01 -4.67174560e-01 -6.66528121e-02\\n-1.24037370e-01 -2.03172103e-01 -2.42561489e-01 -1.53923452e-01\\n-7.20133185e-02 -4.55406696e-01 -2.31256619e-01 8.55654851e-02\\n2.26094693e-01 -1.40586123e-01 -1.13998033e-01 -2.30453283e-01\\n1.62722051e-01 2.27043793e-01 4.00586665e-01 -2.83472314e-02\\n1.44287497e-01 -1.79343432e-01 -1.28128871e-01 1.09226324e-01\\n1.70309037e-01 1.39437631e-01 2.16879509e-02 4.12476629e-01\\n-3.69327962e-01 -1.40135646e-01 -9.13431048e-02 3.91230971e-01\\n-3.95795941e-01 -1.18618861e-01 -9.08085611e-03 2.82943606e-01\\n1.13024621e-03 -1.01299565e-02 -1.94153279e-01 1.48456590e-03\\n-2.53991306e-01 -5.22776186e-01 3.40421945e-01 -1.36357695e-01\\n-1.06421113e-01 1.51928708e-01 1.13459170e-01 1.22526787e-01\\n-1.60754144e-01 -4.52131219e-02 3.16221011e-03 1.74417213e-01\\n1.70530573e-01 3.08026761e-01 -2.25807786e-01 -2.57296294e-01\\n-2.71178693e-01 1.81210577e-01 -3.56217831e-01 1.58377409e-01\\n-8.41408372e-02 3.28796089e-01 1.32899806e-01 9.62934643e-02\\n2.93193847e-01 -1.07784905e-02 -1.37998313e-01 -1.77868083e-01\\n-2.46417835e-01 -2.89227158e-01 1.10608093e-01 8.62277225e-02\\n1.86433226e-01 -3.70826900e-01 -2.08479818e-02 -7.51478001e-02\\n-1.56641558e-01 -3.55135292e-01 -9.04970914e-02 -8.62726271e-02]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a Frontend Software Engineer. The role is a permanent position based in Zürich Canton. Your Role: Create attractive & highly interactive interfaces without losing focus on accessibility. Find & solve user experience problems. Design & implement code with a focus on robustness, scalability, reliability & performance. Participate in DevOps strategy, including automation efforts & monitoring improvements. Challenge product & user experience designers. Ensure high quality of software products with Unit, Integration & End-to-End Tests. Work in small & motivated interdisciplinary teams & bring Machine Learning, Natural Language Processing & Chatbots to the cloud. Your Skills & Experience: Very good experience in & knowledge of JavaScript, CSS3 & HTML5. Good knowledge of Browser APIs & REST API architectures. Experienced with one or more modern JavaScript frameworks including but not limited to Vuejs, React or Angular. Confident in working with one of the following languages: Python, Go, Java, Ruby or PHP. An interest in or understanding of at least one of the following: DevOps, Data Visualization, Software Architecture, User Experience Design or Interaction Design. Any Typescript experience is considered advantageous. Your Profile: University Degree in Computer Science or equivalent practical experience. Enthusiastic to work within an Agile environment & with cutting edge technologies. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Positivity\", \"Reliability\", \"Integration\"]',\n", + " 'hard_skills': '[\"Automation\", \"Accessioning\", \"Agility\", \"Natural Language Processing\", \"Interactivity\", \"Computer Science\", \"Machine Learning\", \"Interaction Design\", \"TypeScript\", \"Ruby (Programming Language)\", \"Python (Programming Language)\", \"HTML5\", \"Agile Edge Technologies\", \"SARS Software Products\", \"Limiter\", \"Software Engineering\", \"PHP (Scripting Language)\", \"React.js\", \"Data Visualization\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Scalability\", \"User Experience Design (UX)\", \"JavaScript Frameworks\", \"Receivables\", \"Angular (Web Framework)\", \"Chatbot\", \"Experience Design\", \"User Experience\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Central Khmer', 'Ossetian', 'Kyrgyz', 'Hausa']\"},\n", + " {'company_id': '65',\n", + " 'job_title': 'internship in software engineering',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Venture Capital & Private Equity',\n", + " 'website': 'www.investiere.ch',\n", + " 'jobdescription_embedded': '[[-1.34337008e-01 1.63646415e-01 5.36213756e-01 -8.01078528e-02\\n5.42521477e-01 -1.00907318e-01 -9.42225754e-03 4.80246872e-01\\n-7.36143216e-02 -4.75178659e-01 9.17065609e-03 -2.05954865e-01\\n7.83101320e-02 1.36848420e-01 1.07726656e-01 2.70896733e-01\\n2.88107067e-01 1.29904479e-01 -1.59375340e-01 1.76806614e-01\\n1.99277341e-01 -1.48189917e-01 1.86817139e-01 7.22412407e-01\\n5.48068941e-01 -5.50843626e-02 -4.24359478e-02 -4.42284718e-02\\n-1.93588898e-01 -3.04115504e-01 4.47946876e-01 -7.01969862e-02\\n-8.25247914e-02 -3.96388829e-01 9.71253067e-02 -4.03905325e-02\\n-1.91450372e-01 -9.99890268e-02 -1.76792905e-01 1.99802920e-01\\n-6.17486417e-01 -2.04826638e-01 2.84638442e-02 9.48825926e-02\\n-2.84893036e-01 -3.41554403e-01 1.11690335e-01 -7.62473121e-02\\n2.65813798e-01 2.58713812e-02 -4.52398270e-01 2.56151646e-01\\n-1.63122237e-01 -2.06633508e-01 3.55508685e-01 6.24765813e-01\\n-3.37766297e-02 -4.36281174e-01 -5.57289064e-01 -2.85065502e-01\\n7.34069943e-02 -1.67526931e-01 5.05903289e-02 -3.39640141e-01\\n3.12954605e-01 5.91142699e-02 1.02274247e-01 3.26941907e-01\\n-8.92845809e-01 -3.66910622e-02 -1.94773734e-01 -4.84204292e-02\\n-2.63017803e-01 -1.19995676e-01 -2.60107160e-01 -8.28199089e-03\\n-8.90427381e-02 5.21384537e-01 7.25836679e-02 3.73426452e-02\\n-1.51157573e-01 2.88798392e-01 -3.23880792e-01 4.41498101e-01\\n8.45139697e-02 2.59786844e-01 1.40834361e-01 2.41163090e-01\\n-3.10629010e-01 3.97966504e-01 1.50540158e-01 -3.07049900e-01\\n2.75296479e-01 6.13732338e-02 4.41681057e-01 9.26104933e-02\\n1.04586169e-01 3.35003473e-02 -2.75862992e-01 3.41921002e-01\\n2.99706340e-01 -2.36870155e-01 7.86397755e-02 -1.69480726e-01\\n-3.43083180e-02 1.83355846e-02 7.81609677e-03 1.50317430e-01\\n-3.01395625e-01 4.52977240e-01 1.86836869e-01 -9.37541872e-02\\n-1.76229194e-01 -5.49221873e-01 -9.83577874e-03 -2.09357515e-02\\n1.19718025e-02 1.55485585e-01 2.15038836e-01 1.40489504e-01\\n1.31163657e-01 6.92061558e-02 1.48857981e-01 8.44469488e-01\\n-1.14525452e-01 4.58277203e-02 -2.46382222e-01 3.07828069e-01\\n2.03332454e-02 -2.98745811e-01 1.98079988e-01 2.95082152e-01\\n2.58437321e-02 -7.74823874e-02 -1.56687558e-01 4.13819522e-01\\n-2.92064678e-02 -2.24598393e-01 -3.03157091e-01 1.34789035e-01\\n-1.29112639e-02 -3.60426575e-01 6.17812991e-01 1.36699080e-01\\n1.89158157e-01 1.04470160e-02 8.19882452e-02 -2.23682478e-01\\n-1.28406942e-01 2.24445134e-01 -4.15785536e-02 6.90870211e-02\\n-2.66860336e-01 -1.76316708e-01 -2.79011160e-01 1.47194639e-01\\n-3.00567687e-01 2.14299373e-02 -1.95612665e-02 -5.84186651e-02\\n3.13555241e-01 1.50806233e-01 -2.03662470e-01 3.87626112e-01\\n-3.62312272e-02 1.29218176e-01 2.95628197e-02 2.11626485e-01\\n-2.48146668e-01 3.21363211e-01 -1.40236020e-01 -1.84681881e-02\\n5.72188973e-01 1.29853804e-02 2.10156381e-01 8.96748453e-02\\n2.74574071e-01 -1.06913365e-01 8.07373002e-02 1.08396962e-01\\n-6.12612605e-01 2.81096786e-01 1.86051689e-02 -1.24053828e-01\\n9.94442850e-02 -8.51314813e-02 2.27947250e-01 -2.56508350e-01\\n7.50555098e-02 -1.19216450e-01 -3.35309774e-01 -3.03479314e-01\\n-2.33170182e-01 -1.82270017e-02 4.71142024e-01 -4.94881332e-01\\n-1.36893615e-01 3.29573303e-01 -4.80622560e-01 -1.02106199e-01\\n2.95023113e-01 2.11810127e-01 1.64180592e-01 8.50532874e-02\\n-2.09493905e-01 -4.96632636e-01 1.05139606e-01 -3.52494866e-01\\n-2.42749199e-01 1.09366380e-01 -2.96872765e-01 3.63404244e-01\\n4.34414521e-02 -7.24572502e-03 -3.19042355e-02 1.99488297e-01\\n-1.35283336e-01 -7.88929984e-02 9.14442763e-02 1.18360162e-01\\n3.10803503e-01 5.53547665e-02 -5.02469897e-01 4.89664137e-01\\n-1.75774321e-01 5.92771232e-01 9.53852460e-02 -8.88040245e-01\\n4.17485714e-01 3.15697700e-01 -6.61279336e-02 -3.38652402e-01\\n5.83724618e-01 -1.56624094e-01 2.47379392e-02 6.26120269e-02\\n-5.49846768e-01 -4.14981276e-01 2.05314547e-01 -2.14727327e-01\\n-2.08273262e-01 4.58074391e-01 8.10602307e-02 5.62296323e-02\\n2.48760134e-01 -2.03495979e-01 -1.72855452e-01 4.70590219e-02\\n-8.22422132e-02 -2.35783070e-01 -5.54661453e-01 -1.03056423e-01\\n-1.45573720e-01 -5.38740754e-01 -6.52554184e-02 -4.14454699e-01\\n-2.34221742e-01 -3.37592781e-01 -8.40818658e-02 1.76153556e-01\\n3.37151378e-01 1.50845692e-01 4.62369435e-02 1.54242501e-01\\n-9.46516544e-02 -5.29070199e-01 -8.69205371e-02 1.47679478e-01\\n3.28064263e-01 1.77751467e-01 6.29430190e-02 4.40707654e-02\\n-1.19085908e-02 6.83524489e-01 -1.52305201e-01 -8.43667090e-02\\n1.57351404e-01 2.05439836e-01 1.37507930e-01 -1.55841514e-01\\n1.38513878e-01 2.98108131e-01 -3.48469079e-01 1.17704444e-01\\n-1.18397802e-01 8.86833481e-03 2.82785475e-01 1.28608063e-01\\n-3.26086938e-01 -2.70682812e-01 -1.67983398e-01 6.02825768e-02\\n-5.09099543e-01 -2.26683125e-01 6.74059868e-01 2.19456688e-01\\n2.14915588e-01 2.05150455e-01 1.49083301e-01 -1.05556354e-01\\n-3.34455892e-02 -2.05017060e-01 1.63019806e-01 4.36320938e-02\\n1.85219616e-01 1.12400040e-01 -6.57394752e-02 -5.94675720e-01\\n-3.14523864e+00 -1.43387973e-01 1.96698308e-01 -3.32020462e-01\\n8.72940943e-02 -1.91424355e-01 -9.66249779e-03 -1.26701280e-01\\n-2.70908654e-01 -7.53519610e-02 -2.60375977e-01 -1.76407441e-01\\n1.58801392e-01 1.22986138e-01 1.01718768e-01 2.42066026e-01\\n7.89324045e-02 -1.25840247e-01 5.14420457e-02 3.03308457e-01\\n-3.31856400e-01 -5.31662762e-01 2.61339903e-01 -5.34521267e-02\\n3.03692728e-01 3.14413279e-01 -3.88557583e-01 -1.69544399e-01\\n-2.30757475e-01 -2.53103584e-01 2.36717761e-01 -2.33345538e-01\\n-7.30268732e-02 2.89472669e-01 2.27129698e-01 -8.91174302e-02\\n2.14254722e-01 -4.57100064e-01 -7.73837939e-02 -4.50518996e-01\\n1.87759161e-01 -6.81079388e-01 -1.26299918e-01 -1.21217497e-01\\n7.36948609e-01 -4.18577075e-01 6.69073611e-02 1.17754966e-01\\n1.71761319e-01 1.38715103e-01 1.29446445e-03 1.28638409e-02\\n-2.84309834e-01 -2.83133566e-01 -4.33252528e-02 2.00033374e-02\\n3.67738038e-01 5.75577438e-01 -1.98566332e-01 1.21205440e-02\\n6.87287152e-02 -3.32145393e-01 -3.67791295e-01 -3.10723722e-01\\n-1.20364316e-01 -3.97466272e-01 -6.12538457e-01 -3.25920820e-01\\n-6.97302669e-02 -1.77819103e-01 -1.24055736e-01 5.45546293e-01\\n-1.76778600e-01 -3.20795417e-01 -4.13102619e-02 -5.75784445e-01\\n2.87172556e-01 -1.27772182e-01 -9.56566408e-02 -2.21723154e-01\\n-3.24751407e-01 -3.98359776e-01 2.70145983e-02 -3.98050882e-02\\n-1.21716686e-01 -2.83581167e-01 7.19328299e-02 -1.70839414e-01\\n-3.10252786e-01 -6.31471217e-01 4.40282434e-01 7.02010542e-02\\n2.80810028e-01 9.55578312e-02 2.60536611e-01 -6.87211305e-02\\n2.42604718e-01 -2.68958479e-01 -6.52277265e-07 -3.32351893e-01\\n1.82696238e-01 5.81100807e-02 4.50256348e-01 -2.72843838e-01\\n2.85012405e-02 7.54184797e-02 -2.46181697e-01 -1.05317116e-01\\n2.15433270e-01 6.00500777e-02 1.15887806e-01 -2.51849830e-01\\n2.70699978e-01 -1.96424022e-01 -1.93127617e-01 -4.00374318e-03\\n5.47083989e-02 5.44419348e-01 1.10143051e-02 -3.64890695e-01\\n-1.06160134e-01 5.00124753e-01 -6.40140846e-02 -8.48398060e-02\\n-2.39083543e-01 9.56038907e-02 -2.95583069e-01 2.04401523e-01\\n-5.91227226e-03 -2.21146524e-01 -2.38888547e-01 -2.72728890e-01\\n-1.11058436e-01 3.20618957e-01 2.71947205e-01 7.02581033e-02\\n5.20772152e-02 -4.27505642e-01 4.30637971e-02 2.73428380e-01\\n7.89303854e-02 4.13618475e-01 6.57725856e-02 -1.79144055e-01\\n-2.37990506e-02 3.81010681e-01 -1.75012067e-01 1.99344561e-01\\n-3.21334183e-01 8.81612077e-02 -5.92005968e-01 -2.86629707e-01\\n-2.37683490e-01 -4.54205722e-01 6.13500066e-02 1.91203609e-01\\n2.38448307e-01 1.60973016e-02 3.13769318e-02 -4.61979538e-01\\n3.33905935e-01 -1.18792057e-02 2.92176276e-01 1.51993543e-01\\n4.02166918e-02 5.08290291e-01 -3.24870832e-02 -8.53091180e-02\\n-1.44991085e-01 5.89203462e-02 -3.08907390e-01 -1.15894563e-01\\n1.33956419e-02 -5.02786875e-01 -1.20861754e-01 4.49983835e-01\\n7.93771744e-02 -2.36958295e-01 -1.07669875e-01 2.22693935e-01\\n-4.38144729e-02 -2.34239161e-01 -1.49595827e-01 7.38606825e-02\\n4.10497874e-01 1.36834145e-01 3.14824939e-01 -4.39443350e-01\\n1.06498436e-03 2.84343809e-02 -1.56899214e-01 5.09854436e-01\\n5.75984418e-02 1.21802893e-02 -1.32647365e-01 -2.61771411e-01\\n3.48148316e-01 -1.82851076e-01 -4.36378866e-02 8.46027024e-03\\n6.55370802e-02 -1.41125754e-01 -5.26596010e-01 8.47164243e-02\\n-1.13346977e-02 -5.39075173e-02 3.01400274e-02 7.26367608e-02\\n1.64747268e-01 6.92630187e-02 -5.38010001e-01 -2.67275244e-01\\n-3.52776587e-01 1.01353042e-02 6.34088144e-02 -4.35367286e-01\\n-3.99925560e-02 -3.15161012e-02 -6.45430803e-01 2.46040687e-01\\n-2.63495594e-01 -1.06394216e-01 1.58297211e-01 -1.00343162e-02\\n-3.32590818e-01 -3.58649017e-03 1.48737177e-01 2.89066315e-01\\n-3.57840002e-01 -2.20583826e-01 5.87247573e-02 -1.02470171e+00\\n2.00929537e-01 -6.18829802e-02 -2.01624155e-01 1.71437025e-01\\n-9.55330655e-02 -7.66089439e-01 1.35085911e-01 -3.58011931e-01\\n-8.60535800e-02 -1.68887079e-02 -1.95505828e-01 -5.76224804e-01\\n6.09557424e-03 8.03248137e-02 -2.68829286e-01 4.37949985e-01\\n-2.61651725e-01 4.15718496e-01 -1.36057679e-02 7.08136931e-02\\n3.38980965e-02 -3.28646690e-01 2.10948102e-02 -4.07981217e-01\\n-3.86089385e-01 -1.44698501e-01 -3.96761060e-01 -1.55249178e-01\\n3.76804732e-02 -3.53774995e-01 -1.02801286e-01 5.79404011e-02\\n3.25441480e-01 3.48982727e-03 -8.20470676e-02 -2.88783193e-01\\n9.44731012e-02 -6.42296314e-01 3.12745832e-02 -7.62304291e-03\\n-4.56989035e-02 -8.25515985e-02 2.25617751e-01 8.93498287e-02\\n1.28522798e-01 -5.04110754e-01 3.39483589e-01 -3.32809806e-01\\n-4.07107323e-01 -3.06565426e-02 7.29789883e-02 4.38170582e-02\\n3.48695606e-01 -4.07504886e-01 -4.87037972e-02 4.40224320e-01\\n1.71396583e-01 1.37261376e-01 2.32798263e-01 -7.57163716e-03\\n-8.79372805e-02 2.96312243e-01 -3.55780154e-01 1.55977279e-01\\n8.41415763e-01 6.46742061e-03 1.51879057e-01 2.41049856e-01\\n1.54904887e-01 3.32360327e-01 5.17850041e-01 1.95554532e-02\\n-1.72292084e-01 2.87881196e-01 4.60712314e-02 -6.26506150e-01\\n-8.61246325e-03 -1.17018253e-01 -2.70727515e-01 -4.20624137e-01\\n6.58684433e-01 4.38828439e-01 -4.68059182e-01 -2.26072028e-01\\n-1.59305856e-01 -2.33720064e-01 -3.99751496e-03 -1.49832666e-01\\n1.09964140e-01 -7.81664029e-02 3.92222792e-01 -6.14410453e-02\\n3.38254601e-01 4.71006423e-01 -1.90288618e-01 -2.86478251e-01\\n-4.73232493e-02 9.09509659e-02 -2.37055458e-02 4.31943655e-01\\n-2.34474108e-01 3.77940714e-01 4.02450711e-02 1.41926274e-01\\n-7.27563724e-02 1.47303164e-01 9.62411761e-02 8.22771639e-02\\n1.09053999e-01 5.01225144e-02 3.75123292e-01 4.37098891e-01\\n3.62140298e-01 5.10423779e-01 3.86602223e-01 1.59495492e-02\\n5.38423955e-01 5.48714399e-01 3.41917664e-01 2.23887354e-01\\n-8.09940472e-02 1.24369994e-01 -5.33232689e-02 -4.23859106e-03\\n3.10577095e-01 3.57037246e-01 6.26696274e-02 9.31097627e-01\\n4.33853209e-01 2.12539271e-01 6.76587105e-01 -6.63434446e-01\\n-3.80192310e-01 1.44151514e-02 4.48774368e-01 -3.88812721e-01\\n-6.17304742e-02 6.15526028e-02 -1.33545130e-01 2.76637316e-01\\n-4.52169538e-01 -3.20276678e-01 -1.27807751e-01 1.70570552e-01\\n-6.55955635e-03 -1.55866891e-01 -3.17582577e-01 1.06215030e-01\\n-1.49328306e-01 -8.40213373e-02 -5.84760249e-01 3.19982097e-02\\n-2.40489498e-01 -2.45308101e-01 -6.52740970e-02 -1.35858208e-01\\n-7.38448724e-02 -4.07880783e-01 -1.86275229e-01 -6.45738840e-02\\n3.96742105e-01 -6.03547916e-02 -3.25962752e-02 -2.03806683e-01\\n2.81600535e-01 2.74856031e-01 5.57233870e-01 4.64226045e-02\\n6.83269352e-02 -2.95181006e-01 -1.99035034e-01 1.87840447e-01\\n2.18090951e-01 6.57629818e-02 -3.39774899e-02 3.17122161e-01\\n-3.13661903e-01 -1.38562053e-01 1.39029622e-01 4.26600844e-01\\n-5.33683360e-01 -1.84046440e-02 -1.31847396e-01 2.21183315e-01\\n2.27309942e-01 2.20703796e-01 -1.94886655e-01 5.31799123e-02\\n-1.13080122e-01 -4.14816380e-01 1.96838170e-01 -5.39342873e-02\\n-7.94884786e-02 -4.22132798e-02 2.11815596e-01 1.38256833e-01\\n-2.05662549e-01 1.78105421e-02 -4.19876352e-02 1.18581720e-01\\n1.43464744e-01 3.51034313e-01 -3.01953584e-01 -2.62854010e-01\\n-1.74047977e-01 1.55249164e-01 -2.71763206e-01 1.27591789e-01\\n-1.13803893e-02 3.09970796e-01 1.22065231e-01 6.65671676e-02\\n3.88472497e-01 -9.30234641e-02 -1.26690954e-01 -2.01170176e-01\\n-2.57375419e-01 -2.97722250e-01 2.83939969e-02 -1.79986775e-01\\n3.11180413e-01 -4.61371869e-01 -6.99892491e-02 -3.73740681e-02\\n-1.80731103e-01 -3.39927375e-01 7.06555024e-02 -1.86157867e-01]]',\n", + " 'job_description': 'If you are looking for a very motivating startup work environment and team, if you would like to contribute to the growth of a disruptive VC platform and if you are hands-on, then this could be the perfect internship opportunity and work environment for you. We already are one of the most innovative startup investment platforms in Europe. We are now looking to grow the next level digital infrastructure for startup investments, building a service platform and network for a large community of entrepreneurs, private and institutional investors. investiere.ch is an online investment platform that offers private and institutional investors direct and professional access to startup investments. Having successfully closed more than 70 financing rounds, investiere.ch is one of the most active venture capital investors in Switzerland. As a intern in our tech team you will: Develop secure and reliable Scala web-services for our platform (scala/PlayFramework, MongoDB, MySQL, Redis and ElasticSearch, graphQL) Develop frontend applications (Angular 1.x & 5, Ionic) Support in administration of servers / cloud services Write tests for services and frontend features that you build (e.g. Postman, unit tests, etc) Find out more about our IT team. Requirements You are the right candidate for this position if most of the following skills match your profile: University Bachelor or Master degree with excellent credentials in computer science Java or Scala development Frontend experience or interest: Javascript / HTML / CSS Eager to learn and experience new technologies Ability to work independently with high attention to detail Strong command of English, our work language Entrepreneurially minded and very strong team player Benefits Dynamic and challenging startup environment Flexibility with work locations and hours Frequent team events and more Has your interest been piqued? Meet our experienced investiere team at our offices in Zurich and Geneva. The work location for this position is Zurich. If you have any further questions, just give us a call (+41 41 545 94 94). Please send your CV and cover letter using the application form below. Applications will be processed within two working days.',\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Infrastructure\", \"Communications\", \"Reliability\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Playframework\", \"MySQL\", \"Cascading Style Sheets (CSS)\", \"Postman\", \"Unit Testing\", \"Computer Science\", \"Scala (Programming Language)\", \"Activism\", \"Venture Capital\", \"MongoDB\", \"E (Programming Language)\", \"Levelling\", \"GraphQL\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Investments\", \"Cloud Services\", \"Web Services\", \"Finance\", \"Digitization\", \"JavaScript (Programming Language)\", \"Redis\", \"Angular (Web Framework)\", \"Investing Online\", \"Java (Programming Language)\", \"Elasticsearch\"]',\n", + " 'languages': \"['English', 'Uzbek']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.98537320e-01 1.82536557e-01 4.83016789e-01 6.47843117e-03\\n5.74284613e-01 -3.20066303e-01 2.13279459e-03 3.36275995e-01\\n-6.35888204e-02 -4.78607655e-01 -1.82581559e-01 -2.07063958e-01\\n-4.00696509e-02 6.72112452e-03 2.08714798e-01 3.32861930e-01\\n2.90153265e-01 7.38406405e-02 -2.44413614e-01 2.56612241e-01\\n1.05945118e-01 -2.50994563e-01 -1.15782423e-02 6.59977436e-01\\n2.64276326e-01 9.76595655e-02 -2.39956789e-02 2.99768206e-02\\n-2.80445069e-01 -2.07627535e-01 4.61051583e-01 -1.06067238e-02\\n-1.08157255e-01 -2.94038564e-01 1.13506876e-01 5.76489866e-02\\n-1.64153546e-01 5.91346920e-02 -3.30487639e-02 2.64352381e-01\\n-3.36114317e-01 -3.57813388e-01 1.95259765e-01 2.06434373e-02\\n-1.76009536e-01 -3.14012378e-01 1.06339410e-01 -5.87069802e-02\\n5.73417395e-02 -3.43986601e-02 -4.94467467e-01 4.10176992e-01\\n-4.14724946e-01 -2.67818391e-01 3.67432207e-01 5.40421307e-01\\n-7.32612610e-03 -5.46653628e-01 -2.21725881e-01 -2.21916214e-01\\n6.54163510e-02 -1.87959954e-01 1.18679749e-02 -1.43447101e-01\\n3.99990499e-01 -1.85497366e-02 2.35003792e-02 3.63814145e-01\\n-6.84000492e-01 -4.71017063e-02 -8.77553299e-02 9.32252482e-02\\n-3.37832987e-01 -5.48555925e-02 -2.41863325e-01 -2.24038959e-01\\n-9.21598636e-03 3.34392518e-01 4.74638753e-02 9.88902710e-03\\n-1.24372669e-01 3.11918408e-01 -2.16457516e-01 2.42250755e-01\\n3.14056247e-01 2.30015576e-01 2.55578578e-01 3.60632449e-01\\n-4.12065417e-01 5.10064185e-01 1.98013306e-01 -2.21169114e-01\\n3.26370716e-01 2.06902593e-01 4.21120644e-01 1.76448971e-01\\n-3.74695621e-02 1.08427487e-01 -9.41153541e-02 2.74558097e-01\\n1.96800932e-01 -2.21396863e-01 -9.32746828e-02 -5.93157299e-02\\n-1.53862491e-01 3.68395485e-02 -9.26046297e-02 3.30757707e-01\\n-2.50797689e-01 2.75013924e-01 1.93937838e-01 -2.17515141e-01\\n-8.34478065e-02 -5.55366755e-01 -1.58299997e-01 1.10321268e-01\\n-3.83047909e-02 2.78044224e-01 3.60865891e-01 1.41462311e-01\\n9.32965502e-02 1.12336919e-01 1.09714702e-01 9.64387357e-01\\n1.16418591e-02 2.65835244e-02 -2.45948002e-01 3.47458452e-01\\n2.09862694e-01 -1.94194511e-01 -4.71854657e-02 3.38875234e-01\\n7.61854947e-02 -5.53649738e-02 -8.01011175e-02 3.30337524e-01\\n-1.63348898e-01 -1.35672554e-01 -3.03840816e-01 4.34463620e-02\\n-2.65066296e-01 -4.06223387e-01 5.89365304e-01 1.02145828e-01\\n1.75066799e-01 1.37792835e-02 -4.20702482e-03 -1.38557598e-01\\n-8.17202777e-02 4.07146752e-01 -4.52864878e-02 1.56181246e-01\\n-2.83170700e-01 -2.54836857e-01 -3.34488481e-01 3.31911922e-01\\n2.17306912e-02 1.18393309e-01 -3.17076683e-01 -5.23022823e-02\\n3.69359225e-01 9.84171778e-02 -4.21004474e-01 1.96518034e-01\\n-1.26088643e-02 -1.09344751e-01 -1.44772977e-01 2.43942201e-01\\n-5.21762148e-02 3.22949409e-01 4.11147773e-02 -1.81718186e-01\\n3.89100790e-01 5.26100323e-02 1.44777507e-01 -1.45918220e-01\\n2.53667682e-01 -1.40406817e-01 1.40059233e-01 1.05455890e-01\\n-5.52720785e-01 2.62710631e-01 -5.58368973e-02 6.65826201e-02\\n4.76083811e-03 9.33085531e-02 3.37668538e-01 -2.64783174e-01\\n-1.64912388e-01 -1.79906920e-01 -4.46244836e-01 -4.51490343e-01\\n-2.12753832e-01 4.21895795e-02 3.29531968e-01 -4.13937241e-01\\n-3.45237479e-02 2.66146690e-01 -4.85947549e-01 -4.25344985e-03\\n2.56013185e-01 1.28828496e-01 9.89159346e-02 3.94746847e-02\\n-2.07260668e-01 -4.64576453e-01 2.96539105e-02 -4.30355638e-01\\n-4.92323637e-01 8.32479633e-03 -2.31929466e-01 1.06695607e-01\\n-5.76692401e-03 2.79983878e-02 -3.14122848e-02 1.18051238e-01\\n-2.55195111e-01 -4.33877259e-02 3.14236194e-01 9.89395455e-02\\n4.38748628e-01 -9.58007872e-02 -4.48159993e-01 4.40472990e-01\\n-2.94422925e-01 5.16500354e-01 1.76867470e-01 -9.15103614e-01\\n5.24980903e-01 3.15782875e-01 -4.01179381e-02 -4.87662345e-01\\n4.68250245e-01 -3.64928186e-01 5.56476675e-02 1.65752649e-01\\n-3.74214947e-01 -1.62833422e-01 3.01764369e-01 -6.35260865e-02\\n-3.27452600e-01 6.57808244e-01 3.48575301e-02 1.70899779e-02\\n2.81134993e-01 -2.48116851e-01 -3.31727378e-02 -6.64385334e-02\\n-3.14183086e-02 -1.55569732e-01 -3.85848850e-01 1.60399824e-02\\n-6.99910671e-02 -5.20701945e-01 -2.06781983e-01 -4.22484845e-01\\n-1.00534581e-01 -2.73229837e-01 -3.09352309e-01 2.82750785e-01\\n6.74207276e-03 2.12619320e-01 8.12161118e-02 -1.83993466e-02\\n-5.74056171e-02 -7.47939825e-01 -1.76941618e-01 4.38044257e-02\\n4.29586172e-01 2.02542186e-01 1.66174576e-01 -1.17572755e-01\\n8.78299121e-04 3.46119940e-01 -1.84714407e-01 -3.26953351e-01\\n1.41114563e-01 1.97178632e-01 3.09389569e-02 -5.75653911e-02\\n7.62431622e-02 3.42697173e-01 -2.20754102e-01 -6.30254447e-02\\n-4.49056961e-02 1.52347684e-01 3.46838176e-01 -1.45569623e-01\\n-4.38302666e-01 -1.78850874e-01 1.70037895e-02 2.15065256e-01\\n-6.01989269e-01 -1.25578970e-01 5.82328975e-01 2.25238070e-01\\n2.65707038e-02 2.01904848e-01 2.53953934e-01 -1.26585945e-01\\n-2.21432805e-01 -1.78276598e-01 1.54475560e-02 1.31797776e-01\\n1.49237156e-01 6.56195059e-02 -1.70196548e-01 -5.73634803e-01\\n-4.03029490e+00 -1.44529983e-01 1.53676584e-01 -2.01273412e-01\\n2.12803826e-01 -1.59739256e-01 9.00361240e-02 -6.23508506e-02\\n-1.91139460e-01 7.01315841e-03 -1.29263595e-01 -8.83432701e-02\\n1.48825437e-01 2.78995097e-01 1.80491228e-02 2.13484004e-01\\n5.08575290e-02 -2.78639108e-01 2.05225181e-02 2.17002273e-01\\n-1.68795079e-01 -6.90491438e-01 1.45036519e-01 -9.58024114e-02\\n2.44503364e-01 1.02925003e-01 -5.10889649e-01 -3.26142535e-02\\n-2.54280716e-01 -3.42061311e-01 8.29475746e-02 -2.06784099e-01\\n-1.43178567e-01 2.84672529e-01 1.10043190e-01 -2.12535530e-01\\n1.22475632e-01 -1.94694430e-01 -8.15918371e-02 -4.20272648e-01\\n1.08572260e-01 -5.43807864e-01 5.16790226e-02 -7.71863982e-02\\n6.80485427e-01 -4.04876560e-01 2.40429983e-01 1.33132219e-01\\n2.25297123e-01 1.54863268e-01 -6.51757047e-02 8.68937839e-03\\n-2.68053681e-01 -2.94532299e-01 -7.78787509e-02 -2.27560565e-01\\n4.69158173e-01 5.39355576e-01 -1.69112027e-01 1.48839563e-01\\n8.53642225e-02 -2.56535858e-01 -2.96269238e-01 -4.01972681e-01\\n-1.48908377e-01 -1.34742111e-01 -6.87057018e-01 -5.02115607e-01\\n-1.86188444e-01 -1.14066616e-01 -1.39448702e-01 5.15981019e-01\\n-1.50517091e-01 -6.78100407e-01 -5.52229509e-02 -6.21999979e-01\\n1.10562630e-01 -2.08994791e-01 -2.09445297e-03 -1.78978294e-01\\n-2.00522453e-01 -4.72474098e-01 1.34989992e-01 1.01992242e-01\\n-8.81452560e-02 -3.41819562e-02 8.70817378e-02 -1.99945986e-01\\n-2.24237368e-01 -3.97232860e-01 3.91027093e-01 -1.38344020e-01\\n2.66140193e-01 1.53070733e-01 3.94379199e-01 1.63249657e-01\\n2.32014760e-01 -5.14718853e-02 3.82582583e-02 -3.94292146e-01\\n8.84731591e-04 -4.73969579e-02 4.57056403e-01 -3.26330543e-01\\n4.50625233e-02 2.83230394e-01 -9.72067192e-02 -1.57813847e-01\\n3.99946153e-01 7.03589395e-02 -1.00138020e-02 -1.82383448e-01\\n3.01428318e-01 -3.55229169e-01 -2.72115409e-01 9.51426178e-02\\n-1.42035596e-02 5.91227531e-01 5.60152344e-02 -3.80559474e-01\\n-3.46152723e-01 5.31307399e-01 7.46355131e-02 -4.57227752e-02\\n-1.26996368e-01 1.14173159e-01 -2.62579709e-01 3.14869761e-01\\n1.67373449e-01 -3.93767208e-01 -3.42284143e-01 2.35891752e-02\\n2.25970559e-02 1.22788846e-01 3.01025420e-01 1.71091989e-01\\n-6.89556971e-02 -1.72639921e-01 -1.37773275e-01 1.21478729e-01\\n2.85747468e-01 3.15864652e-01 1.71888098e-01 -6.49893805e-02\\n2.82136649e-02 1.70068294e-01 -2.16902331e-01 2.03040570e-01\\n-3.29516411e-01 1.61927566e-02 -4.13563043e-01 -2.21294254e-01\\n-2.03436352e-02 -2.50725150e-01 5.10952100e-02 3.33982497e-01\\n2.94279605e-01 3.04850540e-03 -1.20502166e-01 -5.62512159e-01\\n4.36842978e-01 1.92044917e-02 7.42982402e-02 1.37538359e-01\\n1.17054008e-01 4.39183086e-01 1.07161831e-02 -8.42839628e-02\\n-2.31649220e-01 4.58668657e-02 -2.17774168e-01 -1.59789324e-01\\n6.33877739e-02 -3.70770425e-01 -7.01439306e-02 2.97563583e-01\\n1.97493099e-02 -2.41073132e-01 -1.49941951e-01 1.69557780e-01\\n1.27985090e-01 -1.67003229e-01 -1.52156159e-01 1.47578552e-01\\n2.44886249e-01 9.92739797e-02 2.15031341e-01 -3.73862684e-01\\n-1.02223173e-01 1.02549056e-02 5.23219025e-03 3.66132647e-01\\n1.07597575e-01 2.04152659e-01 -1.11216322e-01 -1.27096921e-01\\n3.55866581e-01 -1.97610125e-01 -1.81901772e-02 -7.74246082e-02\\n7.06682801e-02 -1.05082080e-01 -3.86302114e-01 8.63693580e-02\\n-2.13524476e-02 -1.16258971e-01 5.49413860e-02 3.67627442e-02\\n4.87141758e-02 -2.82433107e-02 -5.15625298e-01 -3.24647069e-01\\n-4.21891272e-01 -5.43020330e-02 2.83868387e-02 -2.71964401e-01\\n-1.05073541e-01 -2.98742522e-02 -6.21779680e-01 2.44963199e-01\\n-6.45844340e-02 3.39291804e-02 2.38755941e-01 1.76950172e-02\\n-2.87282765e-01 -3.33908312e-02 2.18252391e-01 1.96900412e-01\\n-2.02510968e-01 -1.22217037e-01 2.87178848e-02 -9.80428159e-01\\n2.05257550e-01 -4.60056588e-02 -5.04289642e-02 -8.53659734e-02\\n-1.50604755e-01 -6.68942451e-01 1.34497494e-01 -3.17023039e-01\\n-7.20788762e-02 3.43927229e-03 -1.77257255e-01 -4.10203606e-01\\n-4.35335413e-02 -2.91057881e-02 -1.93505049e-01 3.49258691e-01\\n-4.44994777e-01 3.30079287e-01 -1.02182612e-01 4.04884405e-02\\n3.73532549e-02 -2.57757425e-01 2.06228510e-01 -1.55885696e-01\\n-2.40281597e-01 -2.68715471e-01 -3.83865744e-01 -2.70162821e-01\\n-2.26285718e-02 -3.43800515e-01 -1.49064258e-01 1.33518040e-01\\n2.23503262e-01 6.64024726e-02 -5.52210696e-02 -4.14539307e-01\\n4.25115265e-02 -3.17338437e-01 -2.79108826e-02 -3.16884041e-01\\n1.29001722e-01 -5.57370298e-02 2.22665906e-01 -1.21223871e-02\\n7.60296509e-02 -3.64458829e-01 4.86104995e-01 -6.79643154e-02\\n-3.16000402e-01 -4.53257039e-02 9.12007615e-02 9.10797343e-02\\n2.37092525e-01 -4.49339151e-01 -9.73637216e-04 1.68558076e-01\\n1.49761304e-01 1.90500006e-01 2.10958466e-01 1.27927121e-02\\n-9.71032828e-02 1.68618977e-01 -4.08451706e-01 -1.46500720e-03\\n6.72720492e-01 1.08801350e-01 5.56162782e-02 1.34975389e-01\\n1.99506059e-01 4.11258280e-01 5.39189816e-01 -6.39542425e-03\\n-1.49746254e-01 2.65565842e-01 -4.89013419e-02 -5.26653647e-01\\n-5.29648848e-02 -1.30407423e-01 -2.24539071e-01 -2.94556081e-01\\n6.23434961e-01 3.85874033e-01 -2.63712615e-01 -2.64935642e-01\\n-7.15424642e-02 -2.65344054e-01 1.95004240e-01 -1.72504410e-01\\n1.14449020e-02 -2.73777962e-01 5.21051407e-01 6.19623959e-02\\n2.59590179e-01 6.27873898e-01 -1.53918162e-01 -4.26169544e-01\\n-6.32150024e-02 2.58598596e-01 1.19489610e-01 3.30165446e-01\\n-7.65283257e-02 3.03682148e-01 2.12835670e-02 1.85272738e-01\\n-3.14746499e-02 1.47282586e-01 1.51685432e-01 4.19707522e-02\\n2.07583144e-01 8.38855579e-02 3.20871174e-01 4.86230344e-01\\n1.88270912e-01 5.12723565e-01 2.95097202e-01 3.89398523e-02\\n3.94963622e-01 6.20458186e-01 5.33149123e-01 1.38513222e-01\\n-4.90034409e-02 1.07220821e-01 1.21002622e-01 -9.04278159e-02\\n2.18514219e-01 3.54834706e-01 2.15217516e-01 7.79069483e-01\\n3.77883613e-01 1.43314078e-01 8.62382889e-01 -5.61069608e-01\\n-4.91596133e-01 -3.22388001e-02 5.07212877e-01 -2.09393337e-01\\n-8.94301310e-02 9.63053554e-02 -3.47544193e-01 6.14712052e-02\\n-4.93655920e-01 -6.50714487e-02 8.73269141e-02 -1.34749338e-02\\n1.84317287e-02 -7.99305737e-02 -1.64651856e-01 1.18955029e-02\\n-1.54148445e-01 -5.53906560e-02 -3.40296596e-01 -1.49306998e-01\\n-3.09357494e-01 -5.26649319e-02 -9.16729644e-02 -6.44418895e-02\\n-1.18314050e-01 -3.33809465e-01 -1.67845935e-01 8.61013681e-02\\n4.53340292e-01 -7.28504807e-02 -2.99596284e-02 -1.42891645e-01\\n1.24345280e-01 2.81200588e-01 4.42842931e-01 3.69012170e-02\\n1.45500466e-01 -2.23104462e-01 -1.34819373e-01 6.89583495e-02\\n1.65087998e-01 -4.79487553e-02 6.27845153e-02 3.99087340e-01\\n-3.61631900e-01 -2.26991270e-02 1.11573935e-01 4.50805753e-01\\n-3.39043409e-01 -5.10786921e-02 -7.01958239e-02 3.41050863e-01\\n7.17131123e-02 1.27977282e-01 -2.44364947e-01 5.42269088e-02\\n-1.25561625e-01 -5.03545403e-01 4.89573807e-01 -2.69872844e-01\\n2.48278100e-02 2.22883567e-01 3.59769881e-01 1.64678633e-01\\n-1.58830568e-01 1.31060362e-01 -1.24092691e-01 2.30564624e-01\\n5.60972281e-02 4.10050511e-01 -4.02186036e-01 -1.14537954e-01\\n-1.93224415e-01 2.17033863e-01 -9.79767516e-02 8.09265003e-02\\n-1.99511275e-02 2.45411903e-01 1.34148091e-01 1.14031389e-01\\n1.59876794e-01 -1.06640168e-01 -2.06813112e-01 -2.36271948e-01\\n-2.30552480e-01 -2.82380760e-01 6.82737082e-02 -2.32968815e-02\\n2.80702949e-01 -4.14063931e-01 -5.91797829e-02 -5.69770746e-02\\n-1.21566765e-01 -3.80272597e-01 -1.35904759e-01 -8.62931758e-02]]',\n", + " 'job_description': 'our teams in Zurich and Lausanne areas. Responsibilities Help us implement security software and solutions that will power customers’ IT infrastructures Apply agile development methodologies to write high quality code that meets security, availability and performance goals Provide support to your different stakeholders Qualifications Basic Bachelor/Master’s degree in Technology/Computer Science Excellent knowledge in German and English (written and spoken) Two+ years’ experience working on projects Knowledge of Public Key Infrastructures and X.509 Strong coding skills in Java Preferred Demonstrate proficiency in one or more of: AWS, Synology, Docker, Playframework, Scala, JCE, HSM, PKCS, ASN.1, JPA/Hibernate, VueJS, asynchronous programming Full stack experience and UX design Ability to meet Swiss Government security screening requirements (background checks) Excellent team player Strong communication skills We offer a competitive benefits package and the opportunity to work in a growing and challenging software company.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Writing\", \"Governance\", \"Written English\"]',\n", + " 'hard_skills': '[\"Playframework\", \"Docker (Software)\", \"Scala (Programming Language)\", \"Hibernate (Java)\", \"IT Infrastructure\", \"X.509\", \"Programming (Music)\", \"Security Software\", \"Public Key Infrastructure\", \"Computer Science\", \"Java (Programming Language)\", \"Software Development Methodologies\", \"Synology\", \"Agile Product Development\", \"Public Key Cryptography Standards (PKCS)\"]',\n", + " 'languages': \"['English', 'Kikuyu', 'Spanish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'data-scientist',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.40152931e-01 3.86857748e-01 5.64359128e-01 -2.11751889e-02\\n5.54279625e-01 -1.63345739e-01 8.50075483e-02 2.85801649e-01\\n-3.76474373e-02 -5.54479174e-02 -1.44540608e-01 -1.84721932e-01\\n-2.62196749e-01 4.99920137e-02 1.32289350e-01 2.33172685e-01\\n1.58298552e-01 3.37551162e-02 -2.00104654e-01 2.64585495e-01\\n2.19596922e-01 1.25990853e-01 -1.09996960e-01 4.01760072e-01\\n5.46991765e-01 1.61381468e-01 -1.36757001e-01 -1.80698056e-02\\n-4.98854041e-01 -2.56293982e-01 3.28164220e-01 2.21461561e-02\\n-1.20518483e-01 -2.22280085e-01 7.23956674e-02 1.45944118e-01\\n-5.06033078e-02 -3.68830152e-02 5.55988960e-02 1.71215087e-01\\n-2.97935605e-01 -4.56979364e-01 1.41224936e-01 2.29650602e-01\\n-2.85194546e-01 -2.00274214e-01 1.35143027e-01 -4.82744947e-02\\n-1.51948510e-02 3.70995700e-02 -5.63241899e-01 4.89709705e-01\\n-1.49933442e-01 -6.77251890e-02 1.95805326e-01 6.01548493e-01\\n4.99456637e-02 -5.25512815e-01 -3.35858405e-01 -3.07429612e-01\\n6.16649762e-02 -5.57514876e-02 5.63354753e-02 -5.57723641e-02\\n4.32600886e-01 -1.48729766e-02 -1.09990217e-01 2.74718851e-01\\n-8.80553484e-01 -1.14383459e-01 -1.93149999e-01 2.52000224e-02\\n-4.41496849e-01 -1.77736413e-02 -2.55491406e-01 -1.24470219e-02\\n-3.37315612e-02 2.71823734e-01 -7.09322318e-02 4.32927944e-02\\n-4.53397781e-02 2.10033804e-01 1.86909050e-01 9.43847448e-02\\n3.73895824e-01 1.78202763e-02 1.69350192e-01 2.70833582e-01\\n-3.52352083e-01 2.22590700e-01 7.09624067e-02 -1.39725119e-01\\n1.20169386e-01 1.84005037e-01 5.02978861e-01 1.69806376e-01\\n-1.07638590e-01 2.06321537e-01 -6.44789934e-02 1.52450874e-01\\n6.54472262e-02 -4.50722843e-01 8.96276683e-02 4.15015109e-02\\n-3.19580555e-01 -2.93784738e-02 -1.67375907e-01 4.35275763e-01\\n-1.66115314e-01 4.56024289e-01 1.86219901e-01 -1.26863614e-01\\n-1.68066379e-03 -6.12200677e-01 -1.97938517e-01 4.51373355e-03\\n1.08503766e-01 2.57463962e-01 1.84028685e-01 1.19537130e-01\\n2.59141326e-01 2.53390875e-02 3.48010331e-01 8.49952519e-01\\n8.84517133e-02 1.57709688e-01 -1.69604719e-01 2.90805101e-01\\n2.41121724e-01 -3.45354259e-01 1.15146138e-01 2.49930933e-01\\n2.49397457e-01 -5.86976670e-02 -2.67600089e-01 1.69004709e-01\\n-3.35313052e-01 -6.14808276e-02 -3.26871365e-01 1.58660654e-02\\n-1.79879606e-01 -3.56965065e-01 4.54950660e-01 1.08459435e-01\\n1.42103940e-01 -2.45781094e-01 -1.64333567e-01 1.99629497e-02\\n-4.53888699e-02 6.04526997e-01 1.70497820e-01 2.21151114e-01\\n-3.72813970e-01 -2.56987154e-01 -9.55166519e-02 4.24931049e-01\\n-1.13859408e-01 9.36642736e-02 -1.35311276e-01 -6.69946820e-02\\n3.42485458e-01 2.50424981e-01 -3.80189478e-01 8.42056423e-03\\n-6.88624755e-02 -3.49844128e-01 -1.17121041e-01 2.12348938e-01\\n-2.05416873e-01 3.07477713e-01 -1.10336468e-01 -2.32545137e-01\\n6.20077789e-01 1.79984674e-01 2.87256446e-02 -6.40292913e-02\\n3.37507546e-01 -2.44132459e-01 4.76876795e-01 1.08316153e-01\\n-7.14825094e-01 4.00258809e-01 -8.84041265e-02 -1.55841663e-01\\n1.20750554e-01 1.38183773e-01 4.21810329e-01 -3.99443835e-01\\n3.65177765e-02 -2.59250194e-01 -3.78098339e-01 -3.59057665e-01\\n-4.69978660e-01 3.65988165e-02 3.24910462e-01 -3.98469478e-01\\n-1.56003699e-01 1.82488099e-01 -5.13722956e-01 -1.80485725e-01\\n1.50686160e-01 1.41126454e-01 1.48002312e-01 -1.87028609e-02\\n-4.21703141e-03 -5.18174708e-01 1.61556065e-01 -3.90420020e-01\\n-4.62925225e-01 2.65932400e-02 -2.82992333e-01 2.27540731e-01\\n8.48521851e-03 1.53380468e-01 -6.08720630e-02 1.59824595e-01\\n-3.83660883e-01 -6.29642606e-02 1.41159892e-01 2.37722665e-01\\n2.03175426e-01 -9.30899531e-02 -5.42539358e-01 3.62999290e-01\\n-2.58662403e-01 6.36967063e-01 2.63173550e-01 -6.27083242e-01\\n5.96495271e-01 2.46704638e-01 7.88443610e-02 -2.80443132e-01\\n4.55006272e-01 -2.74801672e-01 -3.99831273e-02 2.15862975e-01\\n-2.01305538e-01 -9.64623243e-02 3.02819371e-01 -1.49912253e-01\\n-2.55634457e-01 5.52354932e-01 2.35565096e-01 6.08248264e-02\\n3.03173721e-01 -3.40120256e-01 -5.42415166e-03 2.45603058e-03\\n-1.05307549e-01 -1.40772894e-01 -2.21211314e-01 5.04703335e-02\\n-5.70334382e-02 -4.16276962e-01 -1.30620286e-01 -2.45847449e-01\\n-1.04631685e-01 -3.88742387e-01 -1.25641122e-01 3.58455479e-01\\n1.54326916e-01 1.28081709e-01 1.13788553e-01 -7.78047740e-02\\n-5.50397187e-02 -6.50845766e-01 -1.78422377e-01 7.45280087e-02\\n4.39558864e-01 2.83264756e-01 1.33801937e-01 -1.35133415e-01\\n2.99210846e-02 4.10754770e-01 -5.45337379e-01 -4.24741238e-01\\n1.16312183e-01 1.01509728e-01 -1.09301448e-01 -2.16209784e-01\\n-1.17579661e-01 3.29327285e-01 -3.43568735e-02 1.83735117e-02\\n-1.42083645e-01 -1.88273385e-01 2.82436669e-01 -8.59018341e-02\\n-1.36066794e-01 -3.22769880e-01 -1.55979916e-01 3.59314978e-01\\n-4.20063674e-01 -2.98837990e-01 4.06595170e-01 1.24043554e-01\\n2.04832420e-01 1.54067010e-01 2.52507567e-01 -2.21021116e-01\\n-1.89200059e-01 -2.91250974e-01 1.83087785e-03 1.50031880e-01\\n-1.03188632e-02 4.30557169e-02 -2.08979428e-01 -5.84156990e-01\\n-3.37948895e+00 -1.00038342e-01 1.05876349e-01 -3.68365377e-01\\n2.51434267e-01 -1.14177331e-01 -2.26618089e-02 6.96711615e-02\\n-2.25777477e-01 1.01283662e-01 -2.26554036e-01 -1.61212265e-01\\n2.72118300e-03 5.09050429e-01 6.56062365e-02 9.85770524e-02\\n9.75739285e-02 -2.89559364e-01 -2.33657181e-01 4.64905202e-01\\n6.44931337e-03 -5.89152515e-01 1.41642883e-01 4.41695452e-02\\n2.16367587e-01 3.25013995e-01 -3.86159569e-01 -1.14399225e-01\\n-1.23523489e-01 -3.32075030e-01 -2.57252455e-02 -9.82949138e-02\\n-1.77133203e-01 3.48181874e-01 5.68890050e-02 2.06964500e-02\\n-3.98425721e-02 -2.32585177e-01 -1.94989629e-02 -3.83502424e-01\\n1.54957769e-03 -5.08120179e-01 -5.56375533e-02 -2.61963814e-01\\n7.04859316e-01 -2.19223484e-01 1.78735346e-01 1.00847393e-01\\n1.45437509e-01 9.13299993e-02 -1.19658165e-01 1.22601591e-01\\n-3.87456983e-01 -1.97301835e-01 -8.87915641e-02 -1.21025428e-01\\n4.16066140e-01 5.17527580e-01 -2.77378559e-01 -3.45542245e-02\\n1.38546288e-01 -4.11158115e-01 -7.50019625e-02 -5.13732433e-01\\n-2.59068787e-01 -2.34122500e-01 -6.43472791e-01 -3.41152966e-01\\n-1.01255707e-01 4.41092476e-02 -2.53071249e-01 5.10619283e-01\\n-4.62224871e-01 -5.29713035e-01 7.89511576e-02 -5.87168992e-01\\n6.97103217e-02 -2.31797859e-01 1.55059367e-01 -1.98234990e-01\\n-3.41397882e-01 -4.81898695e-01 1.97562039e-01 -7.64110833e-02\\n-1.26015544e-01 -1.26156092e-01 -8.22402760e-02 -2.57017821e-01\\n-2.70676672e-01 -4.14699286e-01 3.89312953e-01 3.31114866e-02\\n2.88290024e-01 1.20081998e-01 3.32133621e-01 1.32175371e-01\\n3.92266423e-01 -2.70836502e-01 2.52457708e-01 -3.41349840e-01\\n1.32015243e-01 -2.35268641e-02 6.92016482e-01 -3.84745777e-01\\n4.28930707e-02 1.46060780e-01 -3.31004530e-01 1.30572738e-02\\n4.11143988e-01 1.65985316e-01 -2.31660884e-02 -1.39493316e-01\\n3.06265473e-01 -6.99199498e-01 -1.43724427e-01 2.36657381e-01\\n6.16923012e-02 7.43351758e-01 2.10648519e-03 -3.30366135e-01\\n-2.90578693e-01 4.07710224e-01 -2.90386677e-01 -3.46108556e-01\\n-1.77614123e-01 3.28793190e-02 -6.89375177e-02 1.40922368e-01\\n9.36853066e-02 -1.57641545e-01 -3.29660743e-01 -9.83027965e-02\\n9.45907980e-02 1.29115433e-01 3.42749089e-01 2.69576367e-02\\n-1.82803035e-01 -1.31840378e-01 -1.43108875e-01 1.49730369e-01\\n2.39536375e-01 1.45028502e-01 5.09625226e-02 -3.04062515e-01\\n-8.94153863e-02 2.38905728e-01 -1.13587223e-01 1.95596412e-01\\n-1.28791407e-01 2.13153157e-02 -5.34991443e-01 -1.34505913e-01\\n1.73471756e-02 -1.85938418e-01 1.68719664e-01 3.35350096e-01\\n2.44830951e-01 8.30947682e-02 6.99205548e-02 -5.61019182e-01\\n3.99993271e-01 7.17108790e-03 3.62041481e-02 1.21041581e-01\\n-7.79594034e-02 4.00058389e-01 8.19663256e-02 1.39041934e-02\\n-5.06288335e-02 -3.19084488e-02 -2.94358552e-01 -3.16757530e-01\\n1.68573171e-01 -2.25850999e-01 -1.92843869e-01 4.35822785e-01\\n3.47292311e-02 -2.21330881e-01 -1.27670825e-01 1.61196843e-01\\n2.76164502e-01 -2.94274569e-01 -1.08555883e-01 -1.96797624e-02\\n8.86153504e-02 1.52969778e-01 2.85445571e-01 -2.76232988e-01\\n-4.18971442e-02 -8.45313743e-02 -1.95644066e-01 2.35355198e-01\\n1.10124663e-01 4.20086384e-02 -2.33908087e-01 -1.36608735e-01\\n5.07328451e-01 1.70550793e-01 7.78609589e-02 5.02872132e-02\\n1.75333828e-01 -3.02655101e-01 -4.79303718e-01 -1.52252227e-01\\n4.58093137e-02 -1.71378866e-01 4.33273315e-02 3.55976075e-02\\n8.17560330e-02 -8.98997039e-02 -4.32744086e-01 -2.15124294e-01\\n-1.37004077e-01 -2.48981088e-01 6.35693967e-02 -2.24558651e-01\\n-1.00511700e-01 -8.30622017e-02 -5.34694135e-01 4.26946171e-02\\n-2.82079160e-01 7.80676678e-02 1.08579271e-01 5.08486032e-02\\n-2.38745868e-01 -1.63135901e-01 1.03625499e-01 9.67741311e-02\\n-2.92306691e-01 -2.99069852e-01 7.14236423e-02 -8.59343767e-01\\n4.94412147e-03 3.79296625e-03 5.41890524e-02 -1.40833676e-01\\n-2.94086635e-02 -6.90011382e-01 2.66617864e-01 -4.95983601e-01\\n-2.37460695e-02 1.10979855e-01 -1.30929679e-01 -3.08179855e-01\\n3.11801583e-01 -1.72295824e-01 -3.71792853e-01 3.42551827e-01\\n-3.92808676e-01 2.39902049e-01 1.89362839e-01 4.22363244e-02\\n4.76108752e-02 -2.60275900e-01 1.36009946e-01 -1.12400167e-01\\n-3.75986040e-01 -1.19924292e-01 -2.79425502e-01 -1.65138841e-01\\n1.47457585e-01 -1.22716822e-01 -1.60393089e-01 1.57250330e-01\\n2.96426505e-01 1.25346288e-01 -9.16753784e-02 1.36035290e-02\\n9.15301219e-02 -4.31458682e-01 1.31564096e-01 -3.08859676e-01\\n-5.77675067e-02 9.14888158e-02 2.08364442e-01 -7.42360353e-02\\n-2.28577908e-02 -1.97931930e-01 5.47385275e-01 -2.45735154e-01\\n-3.76464665e-01 -4.39463072e-02 4.66175191e-03 -7.17428848e-02\\n1.97554618e-01 -4.51644123e-01 3.07491533e-02 3.19156408e-01\\n-5.18260710e-02 7.86872506e-02 1.99633256e-01 -2.84378347e-03\\n-1.39998689e-01 -1.35180326e-02 -5.69482148e-01 7.80524537e-02\\n7.94845879e-01 2.53013879e-01 3.41227800e-02 1.65758416e-01\\n1.58468634e-01 3.72777939e-01 5.26812792e-01 -5.97630851e-02\\n-2.18201607e-01 2.44983882e-01 -7.62373954e-03 -5.61581552e-01\\n-1.32000566e-01 8.47434974e-04 -2.65801311e-01 -3.07733893e-01\\n5.33343375e-01 3.18420976e-01 -3.47865820e-01 -3.72991621e-01\\n7.66191706e-02 -1.20570749e-01 3.00915718e-01 -2.63529527e-03\\n4.48522419e-02 -1.38788909e-01 6.62567735e-01 1.04516875e-02\\n2.37100780e-01 5.20235956e-01 1.60330720e-02 -3.78140658e-01\\n-9.93191898e-02 6.75549954e-02 1.60315990e-01 4.25393403e-01\\n-5.64666651e-02 1.36269212e-01 -2.26875678e-01 -1.07680112e-01\\n-1.11730307e-01 1.53982267e-01 2.57352054e-01 1.61221158e-02\\n3.30734968e-01 1.94610074e-01 3.11010659e-01 4.69546318e-01\\n1.15267634e-02 4.67072129e-01 2.27059931e-01 -4.58172373e-02\\n3.31745923e-01 6.03534281e-01 4.04119462e-01 1.54238120e-01\\n1.07991658e-02 9.12709832e-02 6.00442514e-02 -4.91234194e-03\\n4.15282905e-01 3.96080345e-01 3.55869412e-01 7.47924566e-01\\n2.60155320e-01 3.20422322e-01 7.33133674e-01 -6.48251653e-01\\n-4.11292762e-01 5.21633886e-02 5.22581279e-01 -1.40540078e-01\\n-1.61527500e-01 3.51454727e-02 -1.70680076e-01 1.85795859e-01\\n-6.21964812e-01 9.90042556e-03 8.23291317e-02 -2.58142431e-03\\n-3.43191884e-02 5.44497222e-02 -2.61832297e-01 4.16719951e-02\\n-2.02608690e-01 -1.48629233e-01 -3.82326931e-01 -2.71676928e-01\\n-4.20055002e-01 -7.33061284e-02 -8.24888274e-02 -3.89096923e-02\\n-1.19455002e-01 -3.11603367e-01 -8.79641771e-02 7.87033662e-02\\n3.97335887e-01 -2.37249091e-01 -7.69334435e-02 -1.83379233e-01\\n7.71632567e-02 3.02834481e-01 4.52553391e-01 -2.42218167e-01\\n1.40554637e-01 -1.06377482e-01 -3.11025590e-01 -3.51653546e-02\\n5.71132787e-02 -5.77717926e-03 1.25537947e-01 5.72487414e-01\\n-2.97436327e-01 4.81967777e-02 9.52238217e-03 3.14644516e-01\\n-4.02669251e-01 -1.04992650e-01 1.21219777e-01 2.13559121e-01\\n5.33733107e-02 1.51447132e-01 -3.50127161e-01 1.43569291e-01\\n-2.81346619e-01 -4.29895699e-01 4.98593301e-01 -1.42713800e-01\\n-1.34281993e-01 2.71864444e-01 2.11686626e-01 2.03009218e-01\\n-2.11123660e-01 -1.13683783e-01 -9.07000229e-02 3.51472408e-01\\n-7.31450040e-03 4.56066757e-01 -2.01008052e-01 -3.12674552e-01\\n-1.69694349e-01 2.36393750e-01 -1.09224215e-01 7.13696480e-02\\n-2.67092764e-01 3.68595958e-01 -4.72509973e-02 1.20998770e-01\\n2.53593236e-01 -9.74214356e-03 -2.31407747e-01 -2.27564275e-01\\n-1.87766477e-01 -4.21232134e-01 8.12575668e-02 8.63488093e-02\\n1.66095942e-01 -2.41341606e-01 -1.08485825e-01 -1.55781671e-01\\n-2.01535612e-01 -3.58665466e-01 -9.71867368e-02 1.40134916e-01]]',\n", + " 'job_description': 'Job Informationen Tasks: Extract data from databases, write scripts to parse, clean, combine, and process them Create dashboards and visualizations of processed data, identify trends, anomalies Investigate data problems, identify patterns Draw inferences and conclusions, communicate results through reports, charts, or tables Define and implement KPIs in conjunction with the business team Basic Qualifications: University degree in Computer Science, Electrical Engineering, or Math/Physics Masters or PhD degree is a plus SQL and database experience is a must, with Hive/Hadoop a plus Good programming skills with at least one high-level language such as Python, Java, or C/C++ Good knowledge of data structures, algorithms, and statistics Knowledge of Unix shell scripting Knowledge of Machine Learning would be a plus Fluent in English (both spoken and written), additional languages are a plus 5+ years relevant experience Benötigte Skills FH Universität ETH Master SQL Python C++ Python JAVA Shell-Scripts Englisch',\n", + " 'soft_skills': '[\"Communications\", \"Investigation\"]',\n", + " 'hard_skills': '[\"Programming (Music)\", \"Shell Script\", \"Computer Science\", \"Statistics\", \"Unix Shell\", \"Visualization\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Data Extraction\", \"Dashboard\", \"Machine Learning Methods\", \"Script Writing\", \"C (Programming Language)\", \"Apache Hive\", \"Electrical Engineering\", \"High-Level Architecture\", \"Drawing\", \"Physics\", \"Data Structures\", \"Algorithms\", \"Additives\", \"Scripting\", \"Java (Programming Language)\", \"Parsing\", \"Data Processing\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English', 'Cree', 'Assamese', 'Malayalam', 'Swahili']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'experienced scientific software engineer',\n", + " 'location': 'Basel',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.64273340e-01 3.68838400e-01 4.66704160e-01 -1.50639862e-01\\n4.08001870e-01 -2.23041460e-01 4.91896598e-03 2.87507862e-01\\n2.98553314e-02 -2.73613036e-01 -6.46872744e-02 -3.12534004e-01\\n-2.76921719e-01 9.68874469e-02 2.76365399e-01 5.03006220e-01\\n2.42117718e-01 1.42463475e-01 -1.67280123e-01 3.11315447e-01\\n1.27350330e-01 4.25752848e-02 -4.21808176e-02 6.17155135e-01\\n4.27795529e-01 -1.18572591e-02 -1.18337780e-01 1.19457031e-02\\n-4.08349276e-01 -3.08406413e-01 3.19034576e-01 4.99837510e-02\\n-5.76443225e-02 -2.93539375e-01 -6.54292852e-02 1.09967701e-01\\n-3.13498646e-01 -1.74303502e-02 7.80495331e-02 3.18298072e-01\\n-4.94104654e-01 -3.83815348e-01 3.43878455e-02 1.14832923e-01\\n-1.76374599e-01 -1.79703087e-01 -5.90193532e-02 1.68536797e-01\\n6.15467988e-02 -5.53567009e-03 -5.08318424e-01 3.40673625e-01\\n-3.52868065e-02 -2.78459817e-01 1.47703499e-01 5.98171413e-01\\n-9.71533209e-02 -5.29280007e-01 -3.49869281e-01 -2.52368987e-01\\n1.27534613e-01 -2.57970225e-02 1.23639576e-01 -7.65136704e-02\\n3.51216048e-01 5.73487096e-02 -1.09512396e-01 4.45851684e-01\\n-6.92933977e-01 -2.41256163e-01 -8.78153741e-02 -7.38906953e-03\\n-3.52034479e-01 3.07396520e-02 -1.75922349e-01 -1.33563444e-01\\n-7.17360824e-02 3.19236159e-01 6.29763529e-02 3.70591246e-02\\n-9.74175557e-02 3.04618180e-01 -2.15156097e-02 1.39272094e-01\\n3.49219561e-01 2.19156906e-01 1.55204639e-01 3.13900769e-01\\n-5.16703069e-01 2.86724120e-01 1.43885434e-01 -2.62188733e-01\\n1.47872284e-01 -2.96124108e-02 6.17488086e-01 1.33297876e-01\\n-2.26680599e-02 1.24935783e-01 -1.66402906e-01 2.70051032e-01\\n1.63559869e-01 -3.30074042e-01 1.76356629e-01 -2.59722676e-02\\n-2.70302832e-01 5.50275445e-02 -1.43620327e-01 1.97273478e-01\\n-2.59799361e-01 3.32554370e-01 4.06771839e-01 -1.51012123e-01\\n-1.17355600e-01 -6.38774693e-01 -1.53565153e-01 1.07850790e-01\\n9.68764573e-02 2.39336371e-01 4.37201470e-01 1.65387735e-01\\n2.25493282e-01 1.56036451e-01 2.73557335e-01 1.01979053e+00\\n-5.53805716e-02 4.65318933e-02 -3.50173086e-01 2.51548737e-01\\n2.08330095e-01 -1.38557270e-01 1.57953024e-01 3.43453735e-01\\n1.78608701e-01 -1.59187511e-01 -1.21914446e-01 2.47518912e-01\\n-8.67121145e-02 -2.18402103e-01 -3.43399614e-01 1.07025243e-01\\n-3.43892187e-01 -3.87873322e-01 4.19747323e-01 2.26625562e-01\\n1.87707618e-01 -9.82284397e-02 -1.07488044e-01 -8.14048350e-02\\n1.12694604e-02 3.88930976e-01 -5.34302592e-02 1.49485543e-01\\n-3.34268779e-01 -1.64145157e-01 -2.37290412e-01 3.55832964e-01\\n-3.64586115e-02 2.18677074e-01 1.04337279e-02 -1.17965713e-01\\n2.73892671e-01 2.77383700e-02 -2.07336813e-01 1.68496490e-01\\n-2.50366200e-02 -4.67124552e-01 -1.17162310e-01 2.21734479e-01\\n-1.63939148e-01 1.04296044e-01 6.06007921e-03 -4.14454103e-01\\n4.61286038e-01 2.01133087e-01 3.16947103e-01 -2.14577645e-01\\n2.92492300e-01 -2.78029352e-01 2.32096627e-01 1.57446817e-01\\n-6.51048660e-01 2.09693193e-01 -6.93268925e-02 -2.00388715e-01\\n9.76875871e-02 1.05144493e-01 3.84873569e-01 -2.87150681e-01\\n7.99239352e-02 -1.03112020e-01 -4.82285708e-01 -3.60038310e-01\\n-2.09696755e-01 1.75099485e-02 5.14017999e-01 -2.23665625e-01\\n-1.67779654e-01 1.22063339e-01 -4.28982377e-01 -1.52787820e-01\\n1.81355372e-01 9.64144841e-02 -4.20782268e-02 -4.95249853e-02\\n-2.90076673e-01 -6.44508004e-01 3.62469777e-02 -6.27785683e-01\\n-5.85341930e-01 1.91995036e-02 -2.84834117e-01 2.99355149e-01\\n7.18461722e-02 4.43452857e-02 -1.90078393e-01 1.10121302e-01\\n-2.47500286e-01 4.34831008e-02 1.12659343e-01 2.88401335e-01\\n2.22901314e-01 -1.19438633e-01 -4.79573041e-01 3.70849490e-01\\n-1.94067046e-01 7.13388026e-01 2.69761473e-01 -7.46741891e-01\\n5.50466478e-01 2.22033903e-01 1.38382807e-01 -3.44669342e-01\\n5.02348542e-01 -4.24995273e-01 5.63892573e-02 1.93465486e-01\\n-3.00352305e-01 -1.62222236e-01 3.77905190e-01 -1.67901382e-01\\n-1.61365896e-01 5.47144413e-01 1.58486590e-01 -1.00029923e-01\\n2.93573141e-01 -3.99435490e-01 1.71944145e-02 -4.01654877e-02\\n-8.48371983e-02 -3.29084426e-01 -3.25613171e-01 1.96348310e-01\\n-6.74897060e-02 -5.91689765e-01 -8.17949176e-02 -2.29939267e-01\\n-2.68502027e-01 -3.67432773e-01 -2.73493767e-01 5.07370889e-01\\n1.77783236e-01 1.04200408e-01 2.41798609e-01 -8.49143043e-02\\n-2.73747630e-02 -5.66949904e-01 -1.62773386e-01 1.94330495e-02\\n5.79958618e-01 1.99667230e-01 4.38068844e-02 9.28662568e-02\\n-9.56667960e-02 4.99466717e-01 -2.75643587e-01 -3.79948646e-01\\n-5.39966375e-02 1.16181508e-01 1.74861178e-02 -4.30052876e-02\\n2.34006457e-02 2.66025722e-01 -4.49584350e-02 2.88020745e-02\\n-1.81056112e-01 1.25662282e-01 4.02539134e-01 -1.67414099e-02\\n-2.25022033e-01 -1.47840694e-01 -6.91341087e-02 2.37536386e-01\\n-6.17024064e-01 -1.56357884e-01 4.89724785e-01 1.75772175e-01\\n2.36660972e-01 1.39914081e-01 3.58136088e-01 -1.62651524e-01\\n-1.84482053e-01 -1.60860136e-01 7.51317665e-02 1.28270179e-01\\n8.62604678e-02 -4.11479101e-02 -1.65124655e-01 -4.80568022e-01\\n-3.23556066e+00 -2.63024360e-01 1.26402333e-01 -2.76329339e-01\\n1.45995528e-01 -6.65341318e-02 -3.75132449e-02 -3.71702462e-02\\n-2.47444123e-01 1.47971049e-01 -2.04697132e-01 -1.99696228e-01\\n5.64442575e-02 1.10745594e-01 6.93537518e-02 3.33059639e-01\\n1.65135905e-01 -1.53528467e-01 -1.95129141e-01 3.14809740e-01\\n-1.49997440e-03 -4.89264786e-01 2.52580136e-01 6.90291682e-03\\n2.06082746e-01 1.35914341e-01 -3.75831157e-01 -7.28968233e-02\\n-2.36530468e-01 -2.39869952e-01 1.11464851e-01 -2.07636371e-01\\n-1.21150352e-01 3.80201638e-01 1.96387455e-01 -4.68575098e-02\\n4.98598926e-02 -2.69577086e-01 -1.86080500e-01 -3.82249147e-01\\n1.43145874e-01 -6.08281255e-01 -3.72788198e-02 -1.49595991e-01\\n7.46698320e-01 -4.95126009e-01 7.79736787e-02 2.48939514e-01\\n1.65418625e-01 2.03983068e-01 -2.20104054e-01 -1.32693112e-01\\n-2.07255721e-01 -3.14832509e-01 2.71170121e-02 -2.46782273e-01\\n2.29823843e-01 6.83246374e-01 -1.37167275e-01 8.61452147e-03\\n1.26627982e-01 -2.82022774e-01 -3.96318555e-01 -4.76756662e-01\\n-2.03848407e-01 -2.61368573e-01 -6.91728652e-01 -5.32276154e-01\\n-1.15754165e-01 4.90097776e-02 -3.13588798e-01 5.84893227e-01\\n-3.71930569e-01 -4.97375488e-01 7.03294948e-02 -4.60003257e-01\\n1.37590142e-02 -4.08759922e-01 -2.38229055e-02 -8.58294219e-02\\n-2.50052184e-01 -4.81161088e-01 1.17372148e-01 -4.58536297e-02\\n-8.97716209e-02 -2.25120887e-01 -1.27572864e-01 -3.61406147e-01\\n-2.72447795e-01 -1.63967013e-01 4.43631828e-01 1.58796892e-01\\n4.13904548e-01 1.88601837e-01 2.35466585e-01 2.35769108e-01\\n3.39626998e-01 -2.32404560e-01 1.24190457e-01 -3.60730857e-01\\n1.96514949e-01 3.83338332e-02 6.95144951e-01 -3.23246717e-01\\n1.98744208e-01 7.16081262e-02 -1.88616738e-01 -1.11279830e-01\\n4.18309957e-01 1.53992265e-01 -1.02200404e-01 -8.00052509e-02\\n4.14027929e-01 -6.00139439e-01 -2.14560583e-01 1.59925103e-01\\n4.58724275e-02 5.82868516e-01 2.08478775e-02 -3.77571851e-01\\n-3.53276163e-01 3.88011485e-01 -2.51690626e-01 -1.97833925e-01\\n-2.04892263e-01 2.24738374e-01 -3.54707502e-02 2.42277607e-01\\n1.56847481e-02 -2.20184252e-01 -4.48458910e-01 -1.55792624e-01\\n-3.20052193e-03 4.35695499e-02 2.68926680e-01 8.83418769e-02\\n-3.63037363e-02 -2.67682463e-01 -2.15239331e-01 9.92216244e-02\\n4.00518239e-01 1.56495854e-01 2.05413371e-01 -2.00982496e-01\\n-2.09641289e-02 1.69215500e-01 -3.78578492e-02 9.95214581e-02\\n-1.16155192e-01 -6.93437606e-02 -3.91758531e-01 -2.14845374e-01\\n-5.13453083e-03 -2.75796622e-01 4.04754505e-02 2.86122948e-01\\n2.42687017e-01 8.27113986e-02 6.73352927e-02 -4.10727292e-01\\n4.37172860e-01 9.52525064e-02 4.11106385e-02 2.23249674e-01\\n2.91828047e-02 5.78487933e-01 -1.07492926e-02 1.32550761e-01\\n-1.31629556e-01 -1.32999092e-01 -2.38456339e-01 -1.39958277e-01\\n-1.34673603e-02 -2.81011879e-01 -1.16364658e-01 3.38333368e-01\\n1.39400735e-03 -3.17832142e-01 -1.46472052e-01 2.72117704e-01\\n6.24312945e-02 -3.40824783e-01 -1.04184926e-01 2.51449078e-01\\n1.58282951e-01 1.54076770e-01 2.95582950e-01 -4.55221742e-01\\n-1.81993157e-01 3.26002277e-02 -2.14145213e-01 5.43193340e-01\\n1.97194248e-01 1.45024866e-01 -1.56653732e-01 -4.27611411e-01\\n4.49069321e-01 -1.94906026e-01 -5.82855009e-02 -8.05654377e-02\\n4.26335819e-02 -4.68970276e-02 -4.61632013e-01 4.30615842e-02\\n7.11981282e-02 -2.25410059e-01 -1.20930739e-01 -8.20839554e-02\\n1.80946305e-01 3.61339115e-02 -3.88354987e-01 -3.41585696e-01\\n-1.08563237e-01 -2.33468190e-01 5.39127924e-02 -2.38616467e-01\\n-1.45712299e-02 -1.11367092e-01 -5.84951341e-01 2.75380850e-01\\n-4.80907381e-01 4.78816554e-02 -5.30484654e-02 1.40696183e-01\\n-4.01809931e-01 -1.14832893e-01 1.23600706e-01 2.29649290e-01\\n-3.29733580e-01 -2.50939876e-01 6.21192865e-02 -8.13626051e-01\\n5.51848784e-02 6.44840375e-02 -6.55249581e-02 -9.06772017e-02\\n2.29342598e-02 -4.55292195e-01 1.41791999e-01 -3.82217586e-01\\n7.74985775e-02 -1.53471092e-02 -1.08618073e-01 -4.27261263e-01\\n1.66748598e-01 -9.98948067e-02 -2.14777172e-01 4.56088096e-01\\n-3.82535219e-01 1.53122455e-01 1.73842356e-01 5.66106178e-02\\n1.82145126e-02 -3.20217013e-01 3.00374597e-01 -1.65599301e-01\\n-4.52819079e-01 -7.66447634e-02 -4.85278785e-01 -2.06463441e-01\\n9.82960463e-02 -2.11278647e-02 -2.65430778e-01 8.21008310e-02\\n2.30240047e-01 1.07952215e-01 -7.65745118e-02 -4.39036995e-01\\n1.22989081e-01 -5.07589936e-01 5.01692854e-02 -2.87458867e-01\\n-1.25776023e-01 5.88829741e-02 2.50598546e-02 -5.71124256e-02\\n-1.09899268e-01 -1.63156524e-01 4.36658472e-01 -2.68247366e-01\\n-3.64089072e-01 1.73417013e-02 1.93136483e-02 1.27628250e-02\\n1.99044883e-01 -5.80789566e-01 -5.67217208e-02 2.33017191e-01\\n-4.56158519e-02 7.84133524e-02 2.50744432e-01 1.31227868e-02\\n-1.18935540e-01 2.45440468e-01 -4.31291342e-01 2.39067703e-01\\n6.88865304e-01 1.97859600e-01 6.05323277e-02 1.83645308e-01\\n2.69787788e-01 3.59083533e-01 6.07909203e-01 -1.76345035e-02\\n-8.41528177e-02 4.04035747e-01 8.97925347e-03 -3.96405995e-01\\n-4.19695266e-02 -2.19725668e-01 -3.34650129e-01 -4.18939382e-01\\n6.76613927e-01 3.93430173e-01 -3.90617251e-01 -1.42107174e-01\\n-1.08941167e-03 1.48561159e-02 2.44110897e-01 -1.68797553e-01\\n2.05973629e-02 -1.08119115e-01 6.64920330e-01 2.44575776e-02\\n2.98504114e-01 5.37003279e-01 -2.02751547e-01 -4.12292838e-01\\n-2.29367778e-01 1.12943046e-01 2.44946465e-01 3.82901579e-01\\n-1.58273861e-01 2.87752450e-01 -9.74010602e-02 1.62713453e-01\\n-3.99940945e-02 2.25850329e-01 6.10635504e-02 7.29301421e-04\\n1.57701135e-01 1.54847935e-01 2.83843148e-02 4.70430285e-01\\n1.71000540e-01 4.83428866e-01 2.35634521e-01 8.35908875e-02\\n3.38939786e-01 5.71043491e-01 4.95515436e-01 3.29514831e-01\\n-3.10578812e-02 9.50514451e-02 -1.66439578e-01 -7.38444030e-02\\n3.49621236e-01 2.30457678e-01 2.50061601e-01 8.59168470e-01\\n3.28648925e-01 2.84041077e-01 7.52436519e-01 -5.08944392e-01\\n-5.12400210e-01 9.45152640e-02 4.62131202e-01 -2.66809911e-01\\n-2.47440144e-01 5.87327294e-02 -2.73325473e-01 1.33814082e-01\\n-4.91229355e-01 7.61281177e-02 3.20637897e-02 -1.41049907e-01\\n9.34150890e-02 -3.85181792e-02 -3.26377958e-01 -4.39021774e-02\\n-4.00262237e-01 -1.79135934e-01 -3.59146625e-01 -3.88991758e-02\\n-3.40092480e-01 -1.95937961e-01 -1.65750876e-01 -1.35168985e-01\\n-1.64244339e-01 -4.43538576e-01 -1.26944795e-01 2.18687892e-01\\n3.83110702e-01 -2.40443632e-01 -5.48219830e-02 -1.52704805e-01\\n1.02477223e-01 4.23938304e-01 5.04985452e-01 -1.17374271e-01\\n6.98051229e-02 -5.60450219e-02 -3.79201502e-01 3.32984328e-02\\n5.24616912e-02 6.08726311e-03 4.50422317e-02 4.91681367e-01\\n-3.11371773e-01 7.31105208e-02 8.86684284e-02 3.47843200e-01\\n-4.58484173e-01 -1.07724089e-02 -7.33639374e-02 3.83203030e-01\\n1.67123437e-01 3.11582863e-01 -3.42474997e-01 2.08423868e-01\\n-1.85230583e-01 -4.07012761e-01 3.78397048e-01 -1.31602690e-01\\n-8.59120563e-02 3.04622531e-01 3.04965138e-01 1.33339643e-01\\n-3.38212997e-01 -3.23959030e-02 4.14357297e-02 4.57491249e-01\\n8.49841684e-02 4.19626087e-01 -2.93024540e-01 -1.72567651e-01\\n-2.46828496e-01 2.31233865e-01 -2.44935170e-01 1.49898127e-01\\n-1.52880043e-01 3.56522202e-01 1.28415331e-01 1.01179816e-01\\n1.61144629e-01 2.54791696e-02 -1.41038731e-01 -2.72119880e-01\\n-2.39985868e-01 -4.34708685e-01 1.91171914e-01 -1.82193667e-02\\n6.73230290e-02 -3.01253527e-01 -7.36237988e-02 -1.61033213e-01\\n-2.76806653e-01 -4.48089659e-01 -8.21117833e-02 -7.84694776e-03]]',\n", + " 'job_description': 'Über unseren Kunden Our client ia an agile drug discovery company Ihr Aufgabenbereich Design and develop professional and intelligent scientific software in Java Use and contribute to a rich framework of cheminformatics classes and GUI components Gather requirements from drug designers and turn them into creative and innovative solutions Ihr Profil Master of Computer Science, Master of Chemistry or equivalent Expert in Java (OOP, design patterns, algorithms and data structures) Substantial experience in Java client development (Swing, JavaFX) A more than basic understanding of chemistry, molecules and reactions Good working knowledge in relational databases (Oracle, SQL, JDBC) Broad technology background (C, C++, Git, HTML5, REST, JSON, LDAP, Linux, Windows, OSX, etc) Being fluent in English (German is a plus) Self-motivated learner, cross-platform thinking, good team-player Ihre Chance Send your application to jobs@oneagency.ch Ort: Basel Spezialisierung: HTML C# / C++ / C Linux Sprachen: Deutsch Englisch Job ID: 5514',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Innovation\", \"Creativity\", \"Professionalism\"]',\n", + " 'hard_skills': '[\"Oracle SQL Developer\", \"Agility\", \"Computer Science\", \"Distributed Design Patterns\", \"Linux\", \"HTML5\", \"Cheminformatics\", \"HyperText Markup Language (HTML)\", \"JDBC Driver\", \"C (Programming Language)\", \"C# (Programming Language)\", \"Ldap Client\", \"JavaFX\", \"Swing (Dance)\", \"Data Structures\", \"Chemistry\", \"Relational Databases\", \"Drug Discovery\", \"Algorithms\", \"Git Flow\", \"Java (Programming Language)\", \"JSON\", \"Object-Oriented Programming (OOP)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '15',\n", + " 'job_title': 'data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.98998433e-02 1.97152644e-01 4.99470174e-01 -1.87371280e-02\\n5.57983756e-01 -4.58676927e-02 2.19857134e-02 2.63412774e-01\\n5.93734831e-02 -3.48637283e-01 9.23671760e-03 -2.26297766e-01\\n-4.41474877e-02 1.25425667e-01 1.01614155e-01 3.50094080e-01\\n2.28653610e-01 1.43700704e-01 -1.61327466e-01 2.42487073e-01\\n2.60273933e-01 -2.27474153e-01 1.46380231e-01 7.42537141e-01\\n3.51047695e-01 7.53103048e-02 -1.22040108e-01 -8.72733742e-02\\n-2.35802457e-01 -2.19702959e-01 4.60112602e-01 2.73665488e-02\\n-1.78154372e-02 -3.69986176e-01 1.52367219e-01 4.63702492e-02\\n-3.02975923e-01 -2.78775506e-02 -7.84548894e-02 2.49695569e-01\\n-6.48348093e-01 -2.75886148e-01 -2.66547129e-02 4.19582352e-02\\n-2.34154552e-01 -2.63983905e-01 -3.10796387e-02 -7.76615739e-02\\n8.40050429e-02 8.83230641e-02 -5.07604837e-01 2.41512030e-01\\n-1.24171391e-01 -2.28536963e-01 2.48472199e-01 6.91273987e-01\\n-4.50681038e-02 -4.41353738e-01 -5.37199080e-01 -3.11479896e-01\\n8.33623931e-02 -1.95348561e-01 6.43659532e-02 -2.55740345e-01\\n2.96868801e-01 2.51846164e-02 1.24646239e-01 3.39337111e-01\\n-6.92676008e-01 -9.81176551e-03 -2.06226423e-01 7.86596071e-03\\n-2.53300458e-01 -8.06198344e-02 -2.65956372e-01 -1.03259161e-01\\n-1.63169637e-01 5.04333436e-01 1.56563893e-01 -2.13129390e-02\\n-6.97189122e-02 2.04713434e-01 -2.66840726e-01 2.91900247e-01\\n1.95358247e-01 2.55060107e-01 1.41678452e-01 2.92000473e-01\\n-3.24760646e-01 4.51508760e-01 8.28409120e-02 -2.80482441e-01\\n2.31827781e-01 6.45272881e-02 4.46475387e-01 -7.59381279e-02\\n9.55346152e-02 8.09905306e-02 -2.48376578e-01 2.68496335e-01\\n2.35486105e-01 -2.48794243e-01 7.69232213e-02 -8.61431807e-02\\n-1.40916556e-01 -5.14186770e-02 -4.72015655e-03 2.14406341e-01\\n-1.84699848e-01 3.66772532e-01 2.04026341e-01 -5.82609437e-02\\n-1.51278481e-01 -5.49873054e-01 1.88134611e-02 5.32678403e-02\\n6.83155656e-02 2.22340986e-01 1.91423163e-01 7.53043741e-02\\n1.86959937e-01 5.27589358e-02 1.90087140e-01 8.44816625e-01\\n2.61658803e-02 1.23406202e-01 -2.85340935e-01 2.81537175e-01\\n1.05313189e-01 -1.68594822e-01 1.16564445e-01 1.91351876e-01\\n8.37723389e-02 -9.97206122e-02 -2.76905566e-01 3.22454602e-01\\n-7.89886340e-02 -2.12458119e-01 -1.41082928e-01 2.16886789e-01\\n-7.93813765e-02 -3.31747264e-01 5.10200918e-01 1.48076490e-01\\n1.31854162e-01 -5.91597967e-02 8.79621319e-03 -1.36009589e-01\\n-1.59676716e-01 1.80109471e-01 5.42135425e-02 1.47959471e-01\\n-3.39210600e-01 -2.66746342e-01 -2.66191065e-01 1.06226690e-01\\n-3.05226713e-01 9.95913744e-02 -5.22824898e-02 -8.04561824e-02\\n2.76378810e-01 1.74293458e-01 -2.94111192e-01 2.37864852e-01\\n-8.44585299e-02 -1.09393433e-01 1.25585094e-01 3.02391976e-01\\n-2.31247544e-01 1.81893796e-01 1.20371310e-02 -1.93199307e-01\\n5.66395700e-01 1.66991785e-01 2.37456560e-01 9.21028107e-02\\n2.88263500e-01 -6.08759522e-02 1.05367444e-01 2.27070495e-01\\n-5.73513687e-01 3.11017722e-01 -1.05044939e-01 -7.21694678e-02\\n1.82422280e-01 -6.32762685e-02 3.83740097e-01 -3.05233240e-01\\n1.57807574e-01 -1.17152251e-01 -3.57045382e-01 -2.67231077e-01\\n-1.65865228e-01 1.71132118e-01 3.61724347e-01 -4.38111156e-01\\n-2.45524123e-02 3.20603430e-01 -4.49311018e-01 -1.78323194e-01\\n1.68470204e-01 1.88515052e-01 1.43587887e-01 8.76417011e-02\\n-2.38418832e-01 -4.36608940e-01 -2.54167058e-03 -3.21836710e-01\\n-3.00735235e-01 5.79095706e-02 -2.60441244e-01 2.78234243e-01\\n5.49001098e-02 6.52710944e-02 -1.32333368e-01 1.48784906e-01\\n-1.94907054e-01 -5.45627922e-02 1.67649865e-01 2.76614223e-02\\n2.20458657e-01 7.26060793e-02 -3.43278468e-01 3.71006191e-01\\n-1.22606680e-01 5.54795384e-01 1.31609350e-01 -8.16452086e-01\\n4.77201194e-01 2.66264230e-01 -1.40279502e-01 -3.60791326e-01\\n5.56011319e-01 -2.08606049e-01 4.72614579e-02 1.61297396e-01\\n-3.17924023e-01 -3.60303968e-01 3.37640136e-01 -1.41066924e-01\\n-2.24926263e-01 4.85480428e-01 1.72831804e-01 1.30888209e-01\\n1.59585848e-01 -2.51462340e-01 -1.17638201e-01 3.39746214e-02\\n-1.53288677e-01 -2.30060682e-01 -5.00312567e-01 -2.85034962e-02\\n-1.40911520e-01 -3.92224193e-01 -7.19712824e-02 -3.09450299e-01\\n-2.25271046e-01 -3.30438226e-01 -1.03796020e-01 1.81441441e-01\\n3.11140209e-01 2.38120362e-01 1.24966754e-02 8.45534634e-03\\n-1.26339896e-02 -6.34600580e-01 -8.67870599e-02 8.32965896e-02\\n3.69247437e-01 1.30257577e-01 1.44248337e-01 4.63810451e-02\\n-4.26720902e-02 5.18113732e-01 -1.74384668e-01 -1.52194649e-01\\n1.39776304e-01 1.27821162e-01 8.16736668e-02 -6.81443959e-02\\n1.47215068e-01 3.12286437e-01 -2.22207084e-01 9.18604061e-02\\n-9.47456062e-02 -4.78177592e-02 3.32185388e-01 4.27488200e-02\\n-3.00677687e-01 -2.40568906e-01 -1.16933428e-01 1.17763579e-01\\n-4.97554302e-01 -2.18924999e-01 4.79001731e-01 1.79978967e-01\\n1.86108798e-01 1.39620975e-01 1.27440870e-01 -1.33280292e-01\\n-1.72111884e-01 -2.58254677e-01 3.32453758e-01 2.68188287e-02\\n1.86541125e-01 1.00505784e-01 -1.40593783e-03 -5.70831895e-01\\n-3.43930721e+00 -1.65340841e-01 1.24765515e-01 -2.75352001e-01\\n1.88078478e-01 -1.52135253e-01 7.20741153e-02 1.50343459e-02\\n-2.77613133e-01 5.70858717e-02 -5.00585400e-02 -9.10519809e-02\\n1.16038486e-01 1.80958629e-01 1.49729788e-01 2.29187727e-01\\n7.46175274e-02 -2.11780906e-01 -4.57385108e-02 3.57682198e-01\\n-3.16253662e-01 -6.25500679e-01 1.54034004e-01 -7.84544945e-02\\n1.74763709e-01 1.97557971e-01 -3.36236060e-01 -1.76586166e-01\\n-2.41786540e-01 -2.16673508e-01 7.88787380e-02 -2.43224978e-01\\n-1.20544150e-01 3.38597059e-01 1.77966803e-01 -2.47339476e-02\\n1.11569829e-01 -2.90177077e-01 5.41986723e-04 -4.14874434e-01\\n9.85726193e-02 -6.58646047e-01 -6.86026737e-02 -1.47949070e-01\\n6.62897587e-01 -3.05703431e-01 1.22703440e-01 6.12274371e-02\\n2.06132039e-01 1.19932771e-01 4.71950769e-02 -8.91026780e-02\\n-2.39108741e-01 -2.38231212e-01 -8.04287642e-02 -6.82279766e-02\\n3.29306543e-01 5.55606902e-01 -1.41079843e-01 -1.01776652e-01\\n-3.85066979e-02 -3.50557536e-01 -4.77627426e-01 -3.50319862e-01\\n-9.72887576e-02 -1.90136760e-01 -6.05422676e-01 -4.35974300e-01\\n-1.58704817e-01 -1.14522755e-01 -7.50512406e-02 5.06284535e-01\\n-2.83337206e-01 -3.42575222e-01 -1.72541335e-01 -5.07660031e-01\\n2.49455258e-01 -1.48055673e-01 -7.63515681e-02 -2.82965839e-01\\n-3.32825184e-01 -4.41049308e-01 1.95053592e-01 3.88801955e-02\\n-1.13154590e-01 -2.56487221e-01 6.71961308e-02 -2.27691740e-01\\n-3.09614331e-01 -4.63464409e-01 3.23200345e-01 5.41589968e-02\\n2.99706787e-01 1.30259842e-01 3.71802628e-01 -3.51815447e-02\\n3.12345922e-01 -9.61680785e-02 6.74147159e-02 -3.34052265e-01\\n7.97658637e-02 4.60403524e-02 4.11679924e-01 -3.23985666e-01\\n-3.62232290e-02 1.71932250e-01 -3.28969419e-01 -3.26989926e-02\\n2.89494783e-01 -9.97728482e-02 -1.23855107e-01 -1.44535854e-01\\n3.90606403e-01 -3.52675945e-01 -1.79764166e-01 6.33004233e-02\\n1.44868657e-01 4.92709488e-01 2.34151129e-02 -3.45968008e-01\\n-2.04053819e-01 3.97915274e-01 -7.78415129e-02 -1.48245245e-01\\n-8.86551812e-02 -2.49728188e-03 -2.12938026e-01 3.16476256e-01\\n-1.77277252e-02 -1.79964960e-01 -2.90927500e-01 -1.78654149e-01\\n-8.60887468e-02 3.54264438e-01 2.16819718e-01 4.51311760e-04\\n-1.32116392e-01 -3.00597429e-01 -2.19884798e-01 2.64676422e-01\\n1.64699480e-01 3.21614355e-01 1.40138313e-01 -1.95295036e-01\\n-2.37670150e-02 2.58300990e-01 -1.36433095e-01 1.72529817e-01\\n-2.48085856e-01 3.23181525e-02 -5.37817240e-01 -4.53125745e-01\\n-1.39257535e-01 -3.71102333e-01 1.85846046e-01 3.53551596e-01\\n2.64122963e-01 6.88541157e-04 -7.74141215e-03 -5.03653347e-01\\n2.46722594e-01 -1.52597893e-02 1.61403954e-01 6.18723258e-02\\n-4.11908515e-02 6.14995658e-01 1.61009490e-01 -1.54791683e-01\\n-8.38213041e-02 7.44742947e-03 -2.00097844e-01 -5.44463545e-02\\n1.46256775e-01 -3.91793877e-01 -1.51044086e-01 4.78571475e-01\\n1.16849549e-01 -3.17656100e-01 -1.38495415e-01 2.61488706e-01\\n-2.01293789e-02 -2.65987962e-01 -2.15953991e-01 5.71088158e-02\\n2.97512233e-01 1.60917565e-01 3.70271653e-01 -4.22141343e-01\\n1.48862042e-02 4.91659604e-02 -1.52740777e-01 4.59558755e-01\\n3.32085118e-02 -1.00646392e-02 -2.21461520e-01 -8.65842104e-02\\n3.60315889e-01 -8.66901129e-02 3.67928483e-02 1.07094266e-01\\n-1.62132233e-02 -1.87189251e-01 -5.38501203e-01 5.40643185e-02\\n-3.55087519e-02 -2.22213075e-01 -1.66446492e-02 2.31658742e-01\\n1.52707584e-02 3.75772780e-03 -5.79141438e-01 -2.82765359e-01\\n-1.65417030e-01 7.92880580e-02 1.15879089e-01 -4.19070035e-01\\n-1.13906212e-01 -3.97933498e-02 -5.43984115e-01 2.10181311e-01\\n-6.32139966e-02 -2.52097193e-02 1.64730832e-01 7.40281269e-02\\n-1.58122644e-01 -2.38359757e-02 1.15754612e-01 2.27616131e-01\\n-1.98546410e-01 -1.89981088e-01 3.97958932e-03 -9.69584465e-01\\n7.49571174e-02 -5.12979068e-02 -2.74407089e-01 3.77369151e-02\\n1.05678476e-02 -6.32331550e-01 6.70341551e-02 -4.01552588e-01\\n-7.78725445e-02 -5.10341302e-03 -2.73104459e-01 -2.77397186e-01\\n5.93604259e-02 9.77364853e-02 -3.69456828e-01 3.73389304e-01\\n-2.99965501e-01 3.83564740e-01 -6.55236393e-02 8.77982825e-02\\n8.50875601e-02 -3.14839125e-01 1.07931159e-01 -3.36971015e-01\\n-3.05370301e-01 -1.69857129e-01 -4.21980828e-01 -2.52053857e-01\\n-3.55787426e-02 -1.91765055e-01 -8.08241516e-02 5.34649231e-02\\n2.66178697e-01 4.46977764e-02 2.62324773e-02 -2.94415295e-01\\n-1.94731727e-03 -4.60829198e-01 1.39008075e-01 -1.31950289e-01\\n-9.15825367e-02 -1.54787511e-01 1.04006410e-01 5.43554313e-02\\n1.82314485e-01 -3.46424013e-01 4.80115563e-01 -3.19533885e-01\\n-2.44878531e-01 -9.55470800e-02 8.56073759e-03 9.55415890e-02\\n2.69538105e-01 -3.72755468e-01 2.56780535e-02 2.82279313e-01\\n1.89144269e-01 1.64526016e-01 3.31392378e-01 -4.78386953e-02\\n-7.00033307e-02 1.08433641e-01 -3.79010141e-01 6.60397038e-02\\n7.49648869e-01 1.58139348e-01 1.25816986e-01 1.14973873e-01\\n6.65250719e-02 1.15810171e-01 5.54963112e-01 1.29024267e-01\\n-1.49597526e-01 2.38715529e-01 1.48169762e-02 -5.24714589e-01\\n-1.65051237e-01 -8.94706845e-02 -1.98826209e-01 -3.94835591e-01\\n6.80251420e-01 3.73314798e-01 -4.93509024e-01 -1.49980471e-01\\n-1.29828855e-01 -9.19738412e-02 7.96814784e-02 -1.76913321e-01\\n-1.93392299e-02 -4.90420163e-02 4.50672626e-01 -8.11112002e-02\\n2.46962354e-01 3.41357142e-01 -7.36927837e-02 -2.48386577e-01\\n-5.01758754e-02 2.33399808e-01 9.60875675e-02 3.45379740e-01\\n-1.58916712e-01 3.44303370e-01 3.47258970e-02 1.89217180e-01\\n-9.04791132e-02 5.18768579e-02 3.88155989e-02 1.05042011e-01\\n5.69801107e-02 3.80215123e-02 3.77773523e-01 4.59079593e-01\\n2.90616691e-01 4.31438059e-01 3.01439136e-01 4.86432910e-02\\n4.27714586e-01 4.63314265e-01 3.30575436e-01 1.76705062e-01\\n-7.51924813e-02 9.05373991e-02 2.66333111e-02 2.87195314e-02\\n4.16210324e-01 3.12305629e-01 1.05562702e-01 7.69239187e-01\\n2.18980998e-01 1.88183337e-01 6.16315246e-01 -5.62968791e-01\\n-3.85516107e-01 -8.84358212e-02 5.47951818e-01 -3.74285072e-01\\n2.72122137e-02 1.02708444e-01 -1.94500014e-01 1.39071584e-01\\n-5.39252520e-01 -2.29361415e-01 -1.54878385e-02 1.25321329e-01\\n-6.19567707e-02 -1.31734788e-01 -2.02776849e-01 5.79915754e-02\\n-6.53996691e-02 -9.16827321e-02 -3.84773493e-01 -1.12982392e-01\\n-2.63507336e-01 -1.24508485e-01 -1.06767878e-01 -1.03236005e-01\\n-2.13398971e-02 -3.14800441e-01 -9.55086872e-02 1.65221598e-02\\n3.30449432e-01 -1.56356573e-01 -1.24725811e-01 -4.95006405e-02\\n3.12073350e-01 1.38101891e-01 5.02904177e-01 6.18027970e-02\\n7.78317377e-02 -3.44437838e-01 -2.45629191e-01 1.18237786e-01\\n2.95107663e-01 9.48463082e-02 3.10304239e-02 3.80618721e-01\\n-2.21369207e-01 -1.61770299e-01 1.02590494e-01 2.90005982e-01\\n-5.21793008e-01 3.65752019e-02 -5.89083470e-02 2.20316574e-01\\n1.47336632e-01 1.66876733e-01 -1.72704577e-01 2.20828410e-02\\n-2.61339217e-01 -4.60745931e-01 1.87247515e-01 -7.49568790e-02\\n-1.58283606e-01 1.56375453e-01 2.99991578e-01 7.89559186e-02\\n-1.93863139e-01 -1.25433318e-02 2.76581501e-03 2.26015866e-01\\n9.03900936e-02 2.26390019e-01 -2.52003312e-01 -3.00219715e-01\\n-2.56502569e-01 1.70084387e-01 -1.65290222e-01 1.68460369e-01\\n-1.93015039e-02 2.79036134e-01 2.67824288e-02 5.35682514e-02\\n3.64560634e-01 4.41920618e-03 -1.21809565e-01 -3.01301807e-01\\n-2.14202970e-01 -4.11552042e-01 -7.04973564e-02 7.54717737e-02\\n1.45527303e-01 -4.11020845e-01 -9.77766421e-03 -1.98590174e-01\\n-1.80508822e-01 -3.55517030e-01 7.10508823e-02 -8.82288218e-02]]',\n", + " 'job_description': 'Ava is a digital health company with offices in Zurich, San Francisco, Belgrade and Makati that aims to advance women’s reproductive health by bringing together artificial intelligence and clinical research. Our wearable device, smart app and proprietary predictive algorithms empower women by giving them unique clinically researched insights and personalized data about their menstrual cycle, fertile window, and pregnancy delivered in a way that’s convenient and non-invasive. Ava was voted Best of Baby Tech at CES 2017, named a Women’s Health “Editors’ Choice” product and has been honoured as the best Swiss startup in 2017 and 2018. Our current key markets include USA, Germany, Switzerland and UK. Would you like to join us on our challenging adventure? Responsibilities: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements About you: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Would you like to contribute to a highly motivated team, with a lot of space for your own initiatives? If yes, please apply online or send your complete application to recruiting(at)avawomen.com. We appreciate that you share our excitement for Ava. Please be aware that only complete applications (CV and motivation letter) can be considered. Ava – Revolutionizing women’s health Moritz Ritter, System Architect and Data Engineering Manager Should you not hear back from us within 3 weeks your application has unfortunately not been successful for the respective role.',\n", + " 'soft_skills': '[\"Research\", \"Team Motivation\"]',\n", + " 'hard_skills': '[\"Non-Invasive Monitoring\", \"Storage Area Network (SAN)\", \"Automation\", \"Data Quality\", \"MySQL\", \"Tooling\", \"Computer Science\", \"Prediction\", \"Fertilizers\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Reproductive Health Care\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Smart Device\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Data Science\", \"Virtual Computing\", \"Personalization\", \"Artificial Intelligence\", \"Clinical Research\", \"Digital Health Technologies\", \"Big Data\", \"Scalability\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Algorithms\", \"Scripting\", \"Git Flow\", \"Wearables\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " 'languages': \"['English', 'Zulu', 'Kwanyama']\"},\n", + " {'company_id': '49',\n", + " 'job_title': 'software engineer (full time\\xa0and internship)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'job_description': 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " 'soft_skills': '[\"Writing\", \"Planning\"]',\n", + " 'hard_skills': '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " 'languages': \"['English', 'Valencian']\"},\n", + " {'company_id': '4',\n", + " 'job_title': 'product manager telecommunication solutions for railway',\n", + " 'location': 'Bern',\n", + " 'industry': 'Electrical & Electronic Manufacturing',\n", + " 'website': 'www.abb.com',\n", + " 'jobdescription_embedded': '[[ 1.20637417e-02 1.04530908e-01 5.41997492e-01 -7.03959763e-02\\n3.77606332e-01 -2.75133789e-01 1.06981851e-01 4.33052331e-01\\n-4.81357006e-03 -4.69263554e-01 -5.66322803e-02 -2.97891736e-01\\n-3.26516777e-02 2.88772523e-01 1.12226166e-01 3.97952586e-01\\n2.97778308e-01 1.86051786e-01 -8.69907159e-03 3.03668976e-01\\n2.17061430e-01 -9.03425068e-02 3.48070413e-01 7.74514139e-01\\n4.93026674e-01 5.26818149e-02 8.62484146e-03 -5.77490814e-02\\n-1.35788456e-01 -1.87131271e-01 4.50369000e-01 -1.06034726e-01\\n-8.34701806e-02 -3.31377298e-01 1.51634201e-01 3.53005975e-02\\n-2.58515984e-01 -2.87172914e-01 -7.87074044e-02 1.50731817e-01\\n-5.65640628e-01 -3.16717207e-01 -4.35833121e-03 7.84003362e-02\\n-2.35842779e-01 -3.06826144e-01 1.36698661e-02 3.47906500e-02\\n1.58165410e-01 1.19445190e-01 -3.76044631e-01 2.64950871e-01\\n-1.94110885e-01 -1.44575909e-01 2.24537149e-01 5.61384201e-01\\n-1.29448965e-01 -3.51935267e-01 -5.68184733e-01 -3.19218695e-01\\n8.97492692e-02 -3.22802886e-02 8.23674873e-02 -3.21200371e-01\\n2.60157794e-01 1.56274155e-01 1.56393833e-02 3.77697498e-01\\n-8.02993715e-01 -8.89490098e-02 -2.52462655e-01 -1.50172174e-01\\n-2.07945198e-01 -1.19556859e-01 -2.08732799e-01 -2.18342245e-01\\n-3.13325822e-01 4.20311660e-01 6.13317080e-02 -7.22463336e-03\\n-1.42755583e-01 3.30254406e-01 -2.55414993e-01 4.09586638e-01\\n1.16967559e-01 2.82531768e-01 8.17025453e-02 1.92756608e-01\\n-2.45023385e-01 6.23656869e-01 2.23595779e-02 -2.49092683e-01\\n1.95977017e-01 1.80111662e-01 4.38535780e-01 -2.94496089e-01\\n2.78921753e-01 -1.44745305e-01 -3.72150004e-01 3.31375986e-01\\n2.71601647e-01 -2.78696448e-01 2.06796989e-01 -1.50745466e-01\\n-3.42011056e-03 5.92783242e-02 4.75832857e-02 2.77765598e-02\\n-1.69230387e-01 3.47854108e-01 1.03055410e-01 -1.10813998e-01\\n-1.44363016e-01 -3.06813508e-01 -1.15453950e-04 4.31471989e-02\\n1.62480786e-01 8.25018063e-02 1.19701877e-01 7.35161379e-02\\n3.22219074e-01 -5.38070314e-02 3.25802676e-02 7.00914204e-01\\n-6.76110312e-02 6.28681201e-03 -2.90540963e-01 1.77802786e-01\\n-5.16548082e-02 -3.03770393e-01 3.44602138e-01 2.18928501e-01\\n-4.75804992e-02 -2.83101857e-01 -2.42892995e-01 4.13913608e-01\\n1.41758069e-01 -2.12063491e-01 -7.12188855e-02 3.15541178e-01\\n-3.56956460e-02 -3.73022437e-01 6.83748245e-01 8.77120793e-02\\n2.30621606e-01 -7.61779472e-02 7.25507438e-02 -2.28766873e-01\\n-3.94716486e-02 7.41756111e-02 -1.63788665e-02 -4.56641242e-02\\n-1.85502902e-01 -1.81490555e-01 -2.00827464e-01 -1.50127634e-01\\n-2.78856009e-01 2.37346187e-01 -6.92261085e-02 -3.30161601e-02\\n1.83151379e-01 -4.93745543e-02 -1.62464142e-01 3.08697701e-01\\n-1.63342953e-01 1.03529200e-01 2.60535162e-02 2.20214888e-01\\n-3.02512556e-01 1.65716514e-01 -8.50942060e-02 -3.04607451e-01\\n5.31976402e-01 1.41594976e-01 1.19924851e-01 5.69658428e-02\\n2.41272628e-01 -9.86604951e-03 -5.07528707e-02 1.83744818e-01\\n-7.71718621e-01 3.40367317e-01 -5.22009609e-03 -2.41360530e-01\\n1.72206342e-01 -7.98429921e-02 1.75815567e-01 -1.53100222e-01\\n7.94674233e-02 1.02845700e-02 -3.47541958e-01 -2.20390260e-01\\n-5.39992340e-02 -6.33636191e-02 2.91735768e-01 -4.32690769e-01\\n-2.58907586e-01 1.08769305e-01 -3.74505043e-01 -1.74315512e-01\\n7.89950863e-02 2.06542909e-01 1.16584592e-01 1.43464163e-01\\n-2.60956466e-01 -2.86858529e-01 4.10406962e-02 -2.81304747e-01\\n-2.47471649e-02 -6.81264400e-02 -2.95031190e-01 8.37587640e-02\\n1.03305541e-01 -1.36721367e-02 -1.35665923e-01 -7.22079277e-02\\n-1.24967471e-01 -6.61391914e-02 -6.62996992e-02 3.54511924e-02\\n2.56564051e-01 8.55225399e-02 -3.39000732e-01 3.11196297e-01\\n2.15848368e-02 5.87178648e-01 3.49040632e-03 -6.83113635e-01\\n2.75064409e-01 3.78711432e-01 3.04539371e-02 -3.97189587e-01\\n5.73257387e-01 -1.76107973e-01 -7.89442286e-02 9.84072536e-02\\n-5.69473982e-01 -3.62565458e-01 2.01712221e-01 -3.31943393e-01\\n-1.76014915e-01 3.60872567e-01 3.88071947e-02 2.84167349e-01\\n1.31272569e-01 -2.23457098e-01 -4.44744416e-02 -1.74188782e-02\\n-3.73584367e-02 -2.61823535e-01 -4.33675110e-01 -2.86675900e-01\\n-1.09437577e-01 -2.16041878e-01 -1.36204049e-01 -5.17246842e-01\\n-1.73684597e-01 -2.93769270e-01 -6.04406036e-02 2.92502437e-03\\n3.44840407e-01 -1.31319746e-01 9.08937231e-02 2.01066248e-02\\n-1.38477236e-01 -5.80683410e-01 -3.49248061e-03 1.26672104e-01\\n4.07024682e-01 1.47496283e-01 1.46019369e-01 1.18244186e-01\\n8.41117352e-02 7.18752801e-01 -9.91024226e-02 -5.62417284e-02\\n3.69504899e-01 1.68276846e-01 1.21933464e-02 -5.22477403e-02\\n1.86051875e-01 2.64784127e-01 -2.92608768e-01 -3.40649262e-02\\n-9.17707607e-02 -4.18334417e-02 4.08430696e-01 4.31185514e-02\\n-2.55027801e-01 -1.01522811e-01 -5.84312454e-02 -1.06350772e-01\\n-4.47192073e-01 -1.12387873e-01 5.42932868e-01 1.36849567e-01\\n1.59695387e-01 2.15205476e-01 6.31608814e-02 1.55276312e-02\\n-1.53850809e-01 -2.28086784e-01 1.65630996e-01 2.06469938e-01\\n1.97051913e-01 1.52211189e-01 8.44699070e-02 -4.91171271e-01\\n-3.24922681e+00 -1.05192088e-01 4.16220799e-02 -2.51443475e-01\\n2.42759407e-01 -7.53026083e-02 6.18629865e-02 8.69166479e-03\\n-2.36286357e-01 1.18899010e-01 -1.42622948e-01 -1.87126100e-01\\n3.62270176e-01 8.71167332e-02 9.13455933e-02 2.47381911e-01\\n2.26664305e-01 -2.91981250e-01 -4.77906242e-02 3.08000505e-01\\n-2.00941503e-01 -5.83744884e-01 1.61258861e-01 -6.11670054e-02\\n4.26810414e-01 2.21096426e-01 -2.80321240e-01 -1.80979162e-01\\n-1.14289276e-01 -1.40954420e-01 1.34328455e-01 -3.51031363e-01\\n-4.28953096e-02 2.38735616e-01 1.64594427e-01 -1.25213608e-01\\n1.72241881e-01 -4.12894547e-01 -1.62600651e-01 -4.01310921e-01\\n1.05158105e-01 -5.30804276e-01 -6.85388893e-02 -7.74902180e-02\\n7.21190393e-01 -3.40107411e-01 9.08381790e-02 9.70560312e-02\\n7.12679699e-02 2.15491742e-01 2.34002754e-01 1.21786863e-01\\n-1.66542843e-01 -4.42403376e-01 -9.53297392e-02 -3.80017683e-02\\n4.03075606e-01 5.73559761e-01 -1.49186835e-01 -1.49504259e-01\\n-1.52103938e-02 -1.75189123e-01 -4.35101002e-01 -1.05653375e-01\\n-9.96549278e-02 -2.84578681e-01 -6.47611976e-01 -3.79191726e-01\\n-5.96822016e-02 -1.79860726e-01 -1.70139894e-01 5.28022230e-01\\n-3.09675843e-01 -2.47751683e-01 -3.66113968e-02 -3.56205106e-01\\n3.59250575e-01 -1.58724543e-02 4.53185812e-02 -2.80510783e-01\\n-1.82969227e-01 -3.73487204e-01 8.24833103e-03 1.21793382e-01\\n4.29723114e-02 -2.67553210e-01 2.14956149e-01 -1.43304929e-01\\n-3.01910192e-01 -4.25022572e-01 2.01106206e-01 1.54849663e-01\\n2.47729301e-01 1.92705140e-01 2.27494448e-01 -1.24231912e-01\\n5.15339300e-02 8.92794207e-02 -4.23987620e-02 -4.11629707e-01\\n7.25501031e-02 4.82792929e-02 3.55020940e-01 -1.44482434e-01\\n1.59333963e-02 -9.57230746e-04 -2.02859744e-01 -1.25090167e-01\\n2.03378543e-01 -1.48408607e-01 1.38086706e-01 -5.53007461e-02\\n2.30350927e-01 -1.96210906e-01 1.43801784e-02 -1.12716213e-01\\n4.75059785e-02 5.29955328e-01 -4.09711190e-02 -2.81539857e-01\\n-1.32010549e-01 4.70757514e-01 -9.18619242e-03 1.48599613e-02\\n-2.41138071e-01 -3.02564930e-02 -2.93640137e-01 2.69204170e-01\\n1.39616048e-02 -2.22523972e-01 -2.19711751e-01 -1.75890520e-01\\n-1.54739216e-01 2.95244038e-01 2.45244563e-01 4.20808159e-02\\n-7.12321177e-02 -5.76436162e-01 -8.87356922e-02 3.30441654e-01\\n1.59044132e-01 5.33089578e-01 4.41548787e-02 -1.46841109e-01\\n4.99455296e-02 3.78452808e-01 -1.77490711e-01 2.07794577e-01\\n-2.24608809e-01 6.03468344e-02 -4.55600291e-01 -2.97244728e-01\\n-3.20152700e-01 -3.79033536e-01 1.18316442e-01 3.21511626e-01\\n2.28212520e-01 1.40500348e-02 1.57625720e-01 -4.29286689e-01\\n1.59904629e-01 4.84413095e-03 1.40730098e-01 1.68335587e-01\\n4.15217951e-02 5.22120357e-01 7.28294998e-02 -2.09171578e-01\\n-4.81664650e-02 -7.42790699e-02 -1.50346443e-01 1.29429298e-02\\n1.43211782e-02 -5.36312640e-01 -2.05188945e-01 5.13587892e-01\\n5.48239388e-02 -4.12306279e-01 -4.57025692e-02 3.00991327e-01\\n-3.05303093e-02 -2.81285912e-01 -3.43967110e-01 1.49697512e-01\\n3.23513180e-01 2.58093961e-02 3.82912040e-01 -4.92632926e-01\\n2.67039798e-02 2.49268878e-02 -3.34413834e-02 3.75529289e-01\\n1.23747149e-02 -1.65938698e-02 -3.17631990e-01 -3.43932927e-01\\n3.52395415e-01 -3.98980081e-01 -1.61424860e-01 1.31906018e-01\\n-7.88491592e-02 -6.13126792e-02 -4.86159801e-01 7.47512355e-02\\n2.60413885e-02 -2.34056160e-01 -5.62532172e-02 1.93105727e-01\\n7.56027848e-02 1.05567373e-01 -5.76035082e-01 -2.38476843e-01\\n-1.36504367e-01 1.47651047e-01 1.44452631e-01 -5.29183626e-01\\n-7.06447214e-02 -7.59080574e-02 -5.03308833e-01 1.32147938e-01\\n-1.02569789e-01 -1.48871452e-01 2.59736717e-01 -1.35522813e-01\\n-2.47408792e-01 8.40934291e-02 6.10351982e-03 3.73698533e-01\\n-2.19539002e-01 -3.22783202e-01 -1.18313357e-01 -9.42267835e-01\\n1.21717349e-01 6.42130151e-02 -6.97043911e-02 2.29964867e-01\\n-1.78496331e-01 -6.49172604e-01 7.65876547e-02 -2.24557817e-01\\n-8.78086984e-02 -2.14321151e-01 -1.42622426e-01 -5.55448532e-01\\n3.28021534e-02 1.98511872e-02 -2.34414130e-01 4.41654533e-01\\n-1.84941068e-01 2.35381410e-01 -2.50004679e-01 1.78327505e-02\\n-9.64755118e-02 -3.68573874e-01 2.96292454e-01 -5.15390098e-01\\n-3.40831012e-01 -8.57336298e-02 -3.94007057e-01 -2.84325033e-01\\n-2.03229353e-01 -2.54408509e-01 2.17892304e-02 1.50545821e-01\\n2.67466962e-01 -1.98024954e-03 -2.56908625e-01 -3.04600924e-01\\n9.18384716e-02 -5.59077978e-01 8.62991735e-02 2.18834989e-02\\n-1.55442551e-01 -1.62678957e-01 1.59434900e-01 1.40181690e-01\\n2.21395761e-01 -5.11888385e-01 1.19753234e-01 -5.56259215e-01\\n-3.27312917e-01 6.73308522e-02 2.12632380e-02 -9.15691815e-03\\n3.13814491e-01 -3.90381664e-01 -7.37315416e-02 2.45481551e-01\\n1.26049280e-01 -6.79802103e-03 2.32123345e-01 -3.27883102e-02\\n-8.34382400e-02 2.56452709e-01 -1.92149892e-01 1.45134643e-01\\n7.85362899e-01 3.11112795e-02 1.45902351e-01 2.60339618e-01\\n9.61212441e-02 1.93606794e-01 2.97063053e-01 -4.40052338e-02\\n-1.51425257e-01 2.47617498e-01 1.63456187e-01 -4.25430864e-01\\n2.26202048e-02 4.83532762e-03 -1.06218241e-01 -3.56123477e-01\\n5.37034214e-01 5.16898572e-01 -3.76714528e-01 -9.76618081e-02\\n-2.12797254e-01 -1.73298866e-01 -7.98889324e-02 -9.09035653e-02\\n7.38567933e-02 -7.70612434e-02 4.53314155e-01 -7.57748932e-02\\n2.78370351e-01 4.87555176e-01 -1.21254556e-01 -2.58943021e-01\\n-1.11946858e-01 2.73415923e-01 -1.26755387e-01 3.45644653e-01\\n-1.70314267e-01 4.66293126e-01 -2.30911337e-02 4.86962311e-02\\n7.23836524e-03 1.63465977e-01 -1.72301810e-02 1.74216658e-01\\n3.61930914e-02 2.83308148e-01 4.84611928e-01 2.77550340e-01\\n3.47153068e-01 2.61251539e-01 2.47646406e-01 2.02051669e-01\\n4.60336208e-01 3.86912525e-01 3.05868298e-01 2.03603402e-01\\n-1.04931623e-01 -1.16155215e-01 1.49532989e-01 2.86836978e-02\\n2.66198158e-01 3.06723148e-01 1.03216775e-01 8.22957218e-01\\n2.46286646e-01 4.09825444e-01 7.58571804e-01 -5.39964020e-01\\n-3.13702047e-01 -1.69411704e-01 2.76082128e-01 -3.62670153e-01\\n1.16410796e-02 1.02984361e-01 8.22336823e-02 1.65233433e-01\\n-3.98915112e-01 -2.49068201e-01 -6.66510537e-02 3.82781416e-01\\n-1.19059654e-02 -3.16136837e-01 -9.93572474e-02 1.60959080e-01\\n-1.16541848e-01 -1.08129159e-01 -5.49739718e-01 -1.83353927e-02\\n-4.58061136e-02 -2.93445766e-01 -1.58600420e-01 -1.19818047e-01\\n-6.52226657e-02 -3.09250474e-01 7.85042811e-03 -4.88632284e-02\\n1.77532658e-01 2.96498332e-02 9.01391916e-03 -1.22977540e-01\\n4.42657411e-01 1.33277804e-01 4.46145117e-01 8.52000725e-04\\n1.48613408e-01 -2.40267530e-01 -1.91916123e-01 1.01646833e-01\\n3.69561076e-01 3.35974507e-02 3.02356784e-03 1.95708945e-01\\n-1.41891494e-01 -1.28311127e-01 9.03525501e-02 1.70135736e-01\\n-4.16988254e-01 7.21764714e-02 -5.71287833e-02 9.79626477e-02\\n1.00834802e-01 8.27128515e-02 -1.09634943e-01 -3.66577879e-02\\n-1.38473675e-01 -4.15954381e-01 8.72198865e-02 -9.24989954e-02\\n-2.07887620e-01 3.25677395e-02 2.51713097e-01 2.63861120e-01\\n-2.10357830e-01 1.66369423e-01 -4.88453247e-02 3.20026018e-02\\n1.08222596e-01 1.68567911e-01 -2.73615718e-01 -3.60296547e-01\\n-3.02607894e-01 2.79292800e-02 -2.43913129e-01 2.13522632e-02\\n8.32923502e-02 4.05876607e-01 8.56303275e-02 2.30084285e-02\\n4.01831567e-01 -2.45560244e-01 -1.43134743e-01 -1.73409119e-01\\n-1.87110707e-01 -1.18202612e-01 -1.30363002e-01 -2.10888144e-02\\n1.41395465e-01 -2.88954794e-01 -1.87994316e-02 -2.29077637e-01\\n1.56642194e-03 -1.95236549e-01 1.70705155e-01 -2.69026339e-01]]',\n", + " 'job_description': 'Our competence center in Switzerland is globally responsible for the development of sophisticated telecommunication solutions for mission critical applications. It is part of ABB’s development network with further sites, amongst others, in US, India, and Sweden. We currently have an opening for a Product Manager responsible for Telecommunication Solutions targeted at Railway. In this role, you will oversee the full range of activities generally associated with product management in a highly technical field. Do you have a strong academic background in telecommunications or ITC, complemented by hands-on experience in this field? Are you a proactive professional with the determination and expertise needed to drive our business forward? Let’s write the future. Together.Your responsibilitiesYour backgroundMore about usIt is an exciting time to join ABB Power Grids. ABB and Hitachi have signed an agreement to create a joint venture (JV). By combining ABB Power Grids’ with Hitachi’s complementary strengths, we plan to form a new and stronger global leader in the power sector. ABB Power Grids and Hitachi will have more than 230 years of combined heritage and experience. Together, we will be well-positioned to shape the future of energy, with pioneering technologies, as the partner of choice for enabling a stronger, smarter and greener grid. The transaction is expected to be completed by the first half of 2020, subject to regulatory approvals. Join us on this exciting journey. Bring your very own sense of pride and purpose as you help us drive forward the Fourth Industrial Revolution – creating a sustainable future for our planet, and your career. Join ABB and harness the power of our diverse global network, as you collaborate with and learn from our world-class teams. Above all, challenge yourself every day. Let’s write the future, together. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Tamara Hofmann Talent Partner Phone: +41 79 627 53 03 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer',\n", + " 'soft_skills': '[\"Collaboration\", \"Proactivity\", \"Writing\", \"Planning\"]',\n", + " 'hard_skills': '[\"Production Management\", \"Tooling\", \"TARGET 3001!\", \"Activism\", \"Library For WWW In Perl\", \"Centering\", \"Component Object Model (COM)\", \"Sustainability\", \"Product Management\", \"Develop Networks\", \"Telecommunications\", \"Joint Ventures\", \"Receivables\", \"Industrialization\"]',\n", + " 'languages': \"['English', 'Galician', 'Azerbaijani']\"},\n", + " {'company_id': '49',\n", + " 'job_title': 'software engineer (full time\\xa0and internship)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'job_description': 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " 'soft_skills': '[\"Writing\", \"Planning\"]',\n", + " 'hard_skills': '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " 'languages': \"['English', 'Northern Sami', 'Faroese', 'Dzongkha']\"},\n", + " {'company_id': '33',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Zug',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.31740057e-01 3.83841336e-01 3.88520598e-01 9.01493505e-02\\n5.69051147e-01 -1.93774179e-02 -2.77277566e-02 2.40062594e-01\\n-4.14609239e-02 -4.04899120e-01 -2.18678340e-02 -2.36729100e-01\\n-1.66668862e-01 6.04390837e-02 1.64613537e-02 5.51508069e-01\\n3.32936347e-01 5.15374467e-02 -2.02081770e-01 3.61722797e-01\\n9.06946361e-02 -3.83038223e-02 2.49012243e-02 7.63345063e-01\\n4.38887268e-01 -3.51420715e-02 -5.33361807e-02 1.00199413e-03\\n-2.80133277e-01 -2.08985955e-01 4.39990759e-01 1.29641846e-01\\n-2.73225248e-01 -4.00861859e-01 9.45106298e-02 1.52791634e-01\\n-2.50621766e-01 -2.28036661e-02 -2.08364248e-01 1.75855845e-01\\n-5.07405043e-01 -2.03366786e-01 -7.35197738e-02 7.94046149e-02\\n-3.03650200e-01 -3.94854307e-01 -2.21507102e-02 -5.55398501e-02\\n1.15888432e-01 3.05125490e-02 -5.59681118e-01 3.50520581e-01\\n-1.76704362e-01 -2.44299009e-01 2.27083594e-01 7.45348096e-01\\n8.34212750e-02 -4.51346964e-01 -4.85138565e-01 -4.18850064e-01\\n1.17367849e-01 -1.54844224e-01 1.03915006e-01 -3.65918159e-01\\n4.18708563e-01 1.01348534e-01 5.05817533e-02 2.65770346e-01\\n-8.55449736e-01 -2.46132724e-02 -3.17971170e-01 2.37632077e-02\\n-4.97129142e-01 3.79517190e-02 -4.37287927e-01 -1.09617189e-01\\n-1.00556105e-01 4.63086665e-01 -6.14950210e-02 9.64840204e-02\\n-1.73730582e-01 2.39185005e-01 -2.51612335e-01 3.06809723e-01\\n2.48223647e-01 2.61347115e-01 2.91969061e-01 4.45615858e-01\\n-4.16389406e-01 3.65432173e-01 2.05436409e-01 -3.54369938e-01\\n2.15434626e-01 2.35249579e-01 4.94396478e-01 6.69587925e-02\\n1.83538184e-01 2.34684736e-01 -2.76177645e-01 3.39943111e-01\\n2.44177744e-01 -4.14680243e-01 1.68793008e-01 -1.88867778e-01\\n1.44586749e-02 -1.10206537e-01 2.19486952e-02 1.74954996e-01\\n-4.32953596e-01 4.41440463e-01 4.09918353e-02 -1.13139942e-01\\n-4.88673635e-02 -5.62840462e-01 -6.39704689e-02 -6.94458336e-02\\n7.11462796e-02 2.71225691e-01 1.75913066e-01 3.06327701e-01\\n2.88895637e-01 5.90953119e-02 7.91008621e-02 8.39932561e-01\\n-1.03409149e-01 1.35052383e-01 -1.94681168e-01 3.25212061e-01\\n1.58969373e-01 -2.28346497e-01 2.85536349e-01 2.51807868e-01\\n-4.75126132e-03 -6.89975172e-02 -3.87135148e-01 3.92735720e-01\\n-1.09154150e-01 -2.02860519e-01 -3.17302704e-01 2.48794705e-01\\n-3.27155665e-02 -5.70753574e-01 7.09521174e-01 9.83092263e-02\\n3.19231391e-01 -1.45652682e-01 3.66225950e-02 -1.58439219e-01\\n3.59526686e-02 2.60414362e-01 1.21398672e-01 2.98087001e-01\\n-3.98428559e-01 -1.85543895e-01 -2.08916396e-01 2.59612560e-01\\n-5.04691958e-01 4.33955491e-02 -7.75510073e-02 -8.38255733e-02\\n2.13408887e-01 -3.34959030e-02 -4.22375381e-01 1.88244224e-01\\n-3.89659554e-02 -2.26890683e-01 -1.71860307e-03 4.64120835e-01\\n-2.13334382e-01 2.71520644e-01 -9.20140147e-02 -1.87728658e-01\\n5.75513184e-01 1.28313020e-01 2.23351657e-01 -2.21981462e-02\\n2.77257472e-01 -1.26711369e-01 2.42333099e-01 1.98325634e-01\\n-7.21801400e-01 4.08539712e-01 -8.42515826e-02 -2.48578310e-01\\n8.67656469e-02 -3.30949649e-02 4.35776293e-01 -3.65696311e-01\\n7.69434050e-02 -1.26358762e-01 -3.74889374e-01 -3.45868498e-01\\n-2.87337482e-01 -9.53129902e-02 4.54728365e-01 -4.01665747e-01\\n-7.37496465e-02 2.22432196e-01 -6.70592666e-01 -1.25838846e-01\\n1.39537692e-01 9.72934961e-02 8.60579163e-02 1.22892968e-01\\n-5.85930608e-02 -6.78515196e-01 1.05114013e-01 -4.36183721e-01\\n-3.81090879e-01 1.56023100e-01 -4.03586119e-01 2.07151979e-01\\n1.33078005e-02 -7.03775585e-02 -6.15660138e-02 1.22343652e-01\\n-2.85750359e-01 -2.21778452e-03 1.57190084e-01 4.51003835e-02\\n3.46002728e-01 5.60103953e-02 -4.71218884e-01 5.46639323e-01\\n-1.19051434e-01 6.36803210e-01 2.30810136e-01 -8.39639783e-01\\n6.34929240e-01 1.95981205e-01 7.80294165e-02 -1.89514503e-01\\n6.17358446e-01 -3.01617891e-01 -7.07156807e-02 1.16357163e-01\\n-2.70227969e-01 -3.61416936e-01 1.72733337e-01 -1.94548905e-01\\n-2.72200316e-01 6.25884771e-01 1.30851716e-01 1.54313803e-01\\n2.87665069e-01 -3.04246664e-01 -1.72243431e-01 7.02511445e-02\\n-2.19982117e-01 -2.74131566e-01 -5.83741665e-01 7.20882714e-02\\n-2.30339682e-03 -4.91143167e-01 -1.91088706e-01 -2.82923549e-01\\n-2.79657722e-01 -3.46457571e-01 -2.06610471e-01 2.74395913e-01\\n1.24765113e-01 1.16337195e-01 -7.94815570e-02 -4.48845066e-02\\n-1.16667021e-02 -6.96168661e-01 -1.03367932e-01 1.76476650e-02\\n4.42073107e-01 2.53788561e-01 1.61528051e-01 -1.79200247e-01\\n4.49122488e-02 6.66335642e-01 -3.14476460e-01 -4.58028615e-01\\n1.20803028e-01 1.22861058e-01 -7.46879652e-02 -1.46713972e-01\\n1.42579466e-01 3.72613966e-01 -3.06335330e-01 1.23784855e-01\\n-9.62001681e-02 -4.58716080e-02 3.08141530e-01 -3.78519893e-02\\n-1.56402558e-01 -2.04824358e-01 -1.22278884e-01 2.53921300e-01\\n-5.88541746e-01 -3.46766382e-01 5.70901752e-01 2.06923917e-01\\n1.56762570e-01 -9.77717713e-03 1.48696989e-01 -4.92234230e-02\\n-2.72716403e-01 -4.07749116e-01 2.74351388e-01 1.72845423e-01\\n1.27879485e-01 1.60656318e-01 -4.53833118e-03 -5.51198661e-01\\n-3.01176786e+00 -2.80737102e-01 2.27825433e-01 -1.95393682e-01\\n2.50179589e-01 -1.31430417e-01 4.66487706e-02 -3.51273566e-02\\n-4.06557918e-01 5.05290627e-02 -2.45324671e-01 -1.95813149e-01\\n-1.69342235e-02 3.59182179e-01 2.02832103e-01 1.57028630e-01\\n1.37877524e-01 -2.45381817e-01 3.21537070e-02 3.90868813e-01\\n-9.68522206e-02 -6.92947507e-01 5.33228442e-02 7.48321712e-02\\n1.36218816e-01 1.73951790e-01 -3.97937119e-01 -7.76567161e-02\\n-2.94429988e-01 -2.57610023e-01 6.36806339e-02 -3.69769990e-01\\n-3.06793988e-01 3.42367470e-01 2.03505188e-01 9.04875249e-02\\n3.65311168e-02 -3.10374975e-01 -4.75744158e-02 -4.33347940e-01\\n2.40994804e-02 -6.01849735e-01 -3.17441151e-02 -1.60591826e-02\\n6.75996423e-01 -2.85326570e-01 2.11385220e-01 9.54629779e-02\\n1.32553309e-01 1.67924970e-01 1.48335770e-01 2.60451287e-02\\n-1.68098181e-01 -2.99119353e-01 -6.08941019e-02 -1.52915210e-01\\n6.82875276e-01 4.09561396e-01 -3.44808213e-02 -4.32540290e-03\\n1.86767623e-01 -3.01011980e-01 -3.62313062e-01 -4.46601629e-01\\n-1.54239982e-01 -2.39692658e-01 -6.55350566e-01 -5.84495008e-01\\n-9.40246433e-02 -1.81196272e-01 -1.37150839e-01 5.40568113e-01\\n-2.79041111e-01 -1.57082856e-01 -6.62804395e-02 -6.33137465e-01\\n3.30588460e-01 -1.89685002e-01 3.42931971e-03 -1.47989482e-01\\n-3.03850532e-01 -6.30134404e-01 7.53061399e-02 -3.86513583e-03\\n-1.34396389e-01 -1.37048006e-01 4.69750874e-02 -1.66171134e-01\\n-4.17905986e-01 -5.92188597e-01 4.52835590e-01 7.57044107e-02\\n3.34811807e-01 1.73996180e-01 4.84298646e-01 -2.32164189e-03\\n4.07056838e-01 -1.19319059e-01 -4.89118397e-02 -4.61739540e-01\\n-9.59181227e-03 2.86025517e-02 5.39730906e-01 -1.94478288e-01\\n3.66415940e-02 7.94391036e-02 -2.70131111e-01 1.78764649e-02\\n3.60547870e-01 -2.63513308e-02 1.29879266e-01 -1.16120435e-01\\n3.20789278e-01 -2.51747668e-01 -1.57178894e-01 1.77293122e-01\\n1.36955261e-01 6.62623346e-01 3.44267115e-02 -3.81332517e-01\\n-1.93906128e-01 4.17963773e-01 -2.09448636e-01 -1.54764773e-02\\n-1.50865465e-01 5.12376092e-02 -1.22684486e-01 3.52903068e-01\\n-5.67203797e-02 -1.73752114e-01 -2.47722298e-01 -1.25160202e-01\\n-1.05132893e-01 3.35563004e-01 2.38634676e-01 -1.76989492e-02\\n-2.12259237e-02 -3.32357913e-01 -3.64466161e-02 1.66420221e-01\\n3.02536190e-01 4.01896358e-01 1.83146968e-01 -2.33700991e-01\\n-7.47944489e-02 2.60500848e-01 -1.54690370e-01 2.48066157e-01\\n-2.50464559e-01 1.51238948e-01 -7.60261297e-01 -3.01129013e-01\\n-2.28768408e-01 -3.91695917e-01 2.62549549e-01 3.79336834e-01\\n1.49610162e-01 -1.36430278e-01 1.63892269e-01 -4.74537939e-01\\n2.64205813e-01 1.87781826e-01 1.81331784e-01 -1.31460056e-02\\n-1.38495028e-01 6.25331402e-01 -4.66168560e-02 -1.45523310e-01\\n-1.17173735e-02 5.92412092e-02 -2.68570483e-01 -2.59875298e-01\\n1.09686062e-01 -5.93910813e-01 -2.47241646e-01 4.72642630e-01\\n2.01337039e-01 -1.55827790e-01 -3.67371261e-01 2.24030226e-01\\n-5.69990538e-02 -3.25306296e-01 -2.99901605e-01 -1.05013356e-01\\n3.50306123e-01 1.65842593e-01 2.25846261e-01 -5.45188785e-01\\n-8.00185949e-02 -8.42903852e-02 1.03164650e-02 4.81641591e-01\\n1.29041463e-01 5.42231351e-02 -5.76844551e-02 -1.09202504e-01\\n5.45217633e-01 -5.00847287e-02 -9.71201211e-02 2.72773318e-02\\n1.67395353e-01 -2.70604074e-01 -3.78444374e-01 -1.79260783e-02\\n-3.07460614e-02 -2.85805523e-01 -3.88648659e-02 1.75659344e-01\\n6.34276196e-02 9.07574743e-02 -6.74351871e-01 -2.46081784e-01\\n-3.44470143e-01 -1.16142757e-01 2.67551951e-02 -5.16510963e-01\\n9.77349095e-03 -4.89934944e-02 -5.55762172e-01 2.59080589e-01\\n-1.29695445e-01 -9.28717256e-02 1.93949059e-01 1.27817541e-01\\n-2.86313236e-01 -2.04378784e-01 1.28313467e-01 2.24895626e-01\\n-4.00879025e-01 -2.39822894e-01 -3.97197679e-02 -9.52463567e-01\\n1.30695671e-01 6.83040470e-02 -2.25257322e-01 1.09534092e-01\\n-6.30345717e-02 -5.91425240e-01 9.23365913e-03 -5.40630460e-01\\n-1.51719898e-01 2.96832807e-02 -2.69852221e-01 -2.91257918e-01\\n2.20410213e-01 -3.25182676e-02 -2.70155311e-01 5.15450597e-01\\n-3.50039124e-01 3.50539923e-01 -7.82143027e-02 1.07526571e-01\\n3.91143002e-02 -1.15400329e-01 6.50952235e-02 -2.14828327e-01\\n-3.74180675e-01 -1.97452575e-01 -3.21751714e-01 -1.95422173e-01\\n-4.80181202e-02 -3.39891076e-01 -6.78438172e-02 -3.21220979e-02\\n4.14963365e-01 1.57468542e-01 -1.23699456e-01 -2.31011420e-01\\n2.29703665e-01 -5.17950654e-01 8.75064209e-02 -1.55685544e-01\\n6.24694675e-03 -6.34375066e-02 2.52373040e-01 2.08745804e-02\\n2.16487810e-01 -2.47785792e-01 4.34189141e-01 -4.52936530e-01\\n-3.18048030e-01 -1.09952956e-01 3.22578251e-02 -8.73939097e-02\\n2.24772424e-01 -5.73077798e-01 8.46183151e-02 3.37516069e-01\\n1.67975053e-01 -3.56442779e-02 2.02362299e-01 -1.46065980e-01\\n-9.17073786e-02 3.29261720e-01 -4.62644041e-01 1.32521912e-01\\n8.81247103e-01 2.15897769e-01 2.02935934e-01 1.71922028e-01\\n2.12250710e-01 2.70837814e-01 5.17288923e-01 1.68142654e-02\\n-2.64338329e-02 3.55564862e-01 1.41958952e-01 -5.45615673e-01\\n-5.22987507e-02 -1.42687634e-01 -1.57038271e-01 -3.37648064e-01\\n6.34572864e-01 3.75536859e-01 -4.49386537e-01 -3.21393549e-01\\n-1.87034830e-01 -1.33534253e-01 3.91693622e-01 6.02713339e-02\\n-3.71966697e-03 -3.92546952e-02 5.11405945e-01 -1.07329786e-01\\n3.50676358e-01 5.81836224e-01 -3.45788151e-01 -2.77171671e-01\\n-1.05819844e-01 2.24671647e-01 1.08495034e-01 5.13801455e-01\\n-2.52054036e-01 3.30012441e-01 -7.64205605e-02 1.58708274e-01\\n-1.12257592e-01 3.95384915e-02 3.50812674e-01 -5.63313439e-02\\n2.87568748e-01 1.75433122e-02 3.96342069e-01 4.30582464e-01\\n2.05345750e-01 3.99155885e-01 3.32047105e-01 4.49490547e-03\\n3.02689821e-01 5.92404246e-01 2.72319257e-01 1.64285734e-01\\n5.08420542e-03 1.69470727e-01 1.28025994e-01 6.88756071e-03\\n3.61756921e-01 3.92103791e-01 3.42847854e-02 1.01756120e+00\\n3.70151222e-01 3.56130540e-01 7.13692188e-01 -6.93968773e-01\\n-3.08261395e-01 8.25083181e-02 5.38934886e-01 -4.01319027e-01\\n-8.97774845e-03 1.71003163e-01 -2.87497431e-01 2.32342452e-01\\n-4.75147545e-01 -2.36702278e-01 -5.89376055e-02 7.86310807e-02\\n-2.98446156e-02 -1.29627213e-01 -2.83659220e-01 7.00967014e-03\\n-1.08489163e-01 -4.99796197e-02 -4.10857052e-01 -2.78183699e-01\\n-2.68294573e-01 -9.80531275e-02 -1.80237100e-01 -6.47170097e-02\\n-8.68850797e-02 -3.09663832e-01 -1.15629524e-01 1.62445474e-03\\n3.45668495e-01 -1.93851739e-01 -7.84363747e-02 -3.40798795e-02\\n2.71988332e-01 2.63495386e-01 6.34698629e-01 -8.52950811e-02\\n8.15211013e-02 -1.41116038e-01 -2.18605965e-01 8.48400965e-02\\n-3.69561613e-02 2.00874228e-02 2.90704779e-02 4.91894335e-01\\n-2.16104031e-01 -2.47988895e-01 1.41379401e-01 2.34647766e-01\\n-4.95657802e-01 -1.08028308e-01 -1.59300610e-01 1.38404146e-01\\n2.00346075e-02 9.84896496e-02 -2.09160894e-01 1.16630331e-01\\n-2.03384623e-01 -5.55744886e-01 3.50177079e-01 -1.61123350e-01\\n-1.74947664e-01 1.63236931e-01 3.49527568e-01 1.00635029e-01\\n-2.85518765e-01 -4.97101694e-02 -3.73840630e-02 2.26831153e-01\\n-1.92060880e-02 3.20314705e-01 -1.60825312e-01 -2.58237064e-01\\n-3.25899363e-01 2.46605232e-01 -1.94734499e-01 1.64883345e-01\\n-6.66388869e-02 3.52166653e-01 7.80388564e-02 1.09641984e-01\\n3.51102352e-01 1.38885817e-02 -2.63039649e-01 -2.71945864e-01\\n-2.14012891e-01 -1.07887477e-01 3.79564837e-02 -8.95413682e-02\\n1.68843016e-01 -2.93900579e-01 -1.65006831e-01 -2.54572988e-01\\n-1.29116178e-01 -4.61996377e-01 -4.73354012e-02 -1.41262487e-02]]',\n", + " 'job_description': 'About us We are a professional data consulting and software company from Zug, with a strong focus on Data, Analytics and Artificial Intelligence. We help our clients with deploying proven process frameworks and software tools to ensure effective and efficient data strategy and implementation to the highest data quality standards. As DAI Group, we develop an objective-driven, data-led organisation by embedding analytics in the core of the business and optimise organisations for the future way of working.We help our clients with the latest solutions and techniques in Machine Learning and Automation to deliver the right solution for an efficient business transformation. If you are a wizard in statistics, algorithm theory, computer science, database theory, applied economics or engineering and you would like to work in an environment with startup-spirit, send us your application. Minimum qualifications Master or PhD degree in computer science, physics, applied mathematicsor equivalent practical experience Experience with machine and deep learning systems, statistical data analysis (e.g. linear models, multivariate analysis, stochastic models, sampling methods, etc.) Experience in programming in one or more of the following: Python, R, C/C++or Scala Robust knowledge on Database structures (Oracle, MS SQL) Experience deriving data-driven business insights and effectively communicating actionable recommendations to senior management We are looking for team players with high ethical standards who are willing and able to learn and apply new technologies Preferred qualifications Demonstrated experience with one or more machine learning frameworks: Tensorflow, Keras, Theano, Scikit, etc. Experience with machine learning on large datasets Experience with graph databases and enterprise knowledge graphs Ability to draw conclusions from data and to recommend actions Familiar with context analysis, NLP and word embeddings Experience with working in project environments using agile methodology Demonstrated leadership and self-direction. About the job At DAI group, data drives all of our decision-making. Using analytical methods, you mine through data to identify opportunities for our client to operate more efficiently. Your area of application vary from e.g. solving context related problems with neural networks to optimization of models for customer behaviour with genetic algorithms or reinforcement learning. You will deal with large volume of structured and unstructured data to store, cleanse and train. As a data scientist, you will support the project insights gained from analysing company data. The candidate must have good experience using a variety of data analysis methods, using a variety of data tools, helping building and implementing models. The candidate will have a passion for discovering solutions hidden in large data sets and working with stakeholders to improve business outcomes. Interested? Please send your CV, references and a motivation letter to us.',\n", + " 'soft_skills': '[\"Leadership\", \"Professionalism\", \"Management\", \"Communications\", \"Operations\", \"Decision Making\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Automation\", \"Data Quality\", \"Tooling\", \"Programming (Music)\", \"Context Analysis\", \"Genetic Algorithm\", \"Business Efficiency\", \"Help Authoring Tool\", \"Theano (Software)\", \"Computer Science\", \"Analytics\", \"Knowledge Graph\", \"Statistics\", \"Machine Learning\", \"Database Storage Structures\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Database Theory\", \"Sampling (Statistics)\", \"E (Programming Language)\", \"Machining\", \"Embedding\", \"Dataset\", \"Keras (Neural Network Library)\", \"Word Embedding\", \"Machine Learning Methods\", \"Minimum Data Set\", \"Unstructured Data\", \"Linear Model\", \"C (Programming Language)\", \"Agile Methodology\", \"Eclipse Process Framework\", \"R (Programming Language)\", \"Artificial Intelligence\", \"TensorFlow\", \"Computability Theories\", \"Deep Learning\", \"Multivariate Analysis\", \"Survey Data Analysis\", \"Drawing\", \"Stochastic Modeling\", \"Applied Physics\", \"Recurrent Neural Network (RNN)\", \"Graph Database\", \"Language Experience Approach\", \"Algorithms\", \"Business Transformation\", \"Derivatives\", \"Reinforcement Learning\", \"SQL (Programming Language)\", \"Applied Economics\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Kirghiz', 'Castilian', 'Kurdish']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.94451922e-01 2.88712293e-01 4.79655236e-01 -3.42757665e-02\\n3.94566208e-01 -1.11883506e-01 -3.18306983e-02 2.08265081e-01\\n-1.29073679e-01 -3.08327973e-01 -1.38809383e-01 -2.45947987e-01\\n-3.04558307e-01 2.12930962e-02 1.05452396e-01 3.95390332e-01\\n1.64450854e-01 7.23929852e-02 -2.84079999e-01 3.83422703e-01\\n1.03670388e-01 9.05080959e-02 -1.82524785e-01 6.36543810e-01\\n4.63715613e-01 -4.15222794e-02 -1.37389570e-01 1.21770084e-01\\n-2.58633465e-01 -3.10323417e-01 3.39382261e-01 1.16952978e-01\\n-9.63014513e-02 -1.76837996e-01 1.52718931e-01 1.60977527e-01\\n-2.22446233e-01 3.44941253e-03 -9.63980481e-02 2.30476469e-01\\n-5.72414219e-01 -4.05430108e-01 1.14465104e-02 1.21279676e-02\\n-3.51623356e-01 -1.97628260e-01 1.13612659e-01 1.25464853e-02\\n-6.48280159e-02 2.24587917e-02 -6.76585972e-01 2.87804514e-01\\n-2.37161726e-01 -2.01760456e-01 2.85778284e-01 5.04246533e-01\\n9.09196213e-02 -6.45081043e-01 -2.90141433e-01 -3.29048395e-01\\n3.87550965e-02 -5.28387353e-02 -3.74020711e-02 -2.75560379e-01\\n5.00267506e-01 -8.36459398e-02 -7.19986260e-02 3.51167381e-01\\n-8.81420970e-01 -1.63720608e-01 -2.56699204e-01 4.37843287e-03\\n-4.20008481e-01 4.67912704e-02 -2.85988867e-01 -3.46167907e-02\\n-2.57863831e-02 3.23837310e-01 -4.58000302e-02 1.35441795e-01\\n-2.80385107e-01 3.54673028e-01 -8.97599682e-02 2.56789833e-01\\n4.10343826e-01 1.16488278e-01 1.03198029e-01 3.95931512e-01\\n-4.08828914e-01 3.24235171e-01 1.33849546e-01 -3.14239830e-01\\n1.64336592e-01 2.06909537e-01 5.69321692e-01 2.72098213e-01\\n-1.28106907e-01 2.08425581e-01 -1.50531054e-01 2.47220472e-01\\n1.56453595e-01 -2.82171577e-01 9.99054313e-02 -3.90973128e-02\\n-2.13386729e-01 -3.33606191e-02 -3.39850143e-04 2.97115237e-01\\n-1.65337935e-01 3.04801702e-01 1.80861831e-01 -1.64360270e-01\\n-5.47631681e-02 -5.97316384e-01 -1.18603870e-01 -3.59033979e-02\\n9.75032747e-02 2.10459977e-01 3.05603832e-01 1.16070732e-01\\n1.82708308e-01 9.51646045e-02 1.91930830e-01 9.51175213e-01\\n-3.80824693e-02 -1.92200916e-03 -1.35267884e-01 3.17445934e-01\\n3.04273427e-01 -2.11888149e-01 1.81864515e-01 3.71508211e-01\\n1.73939422e-01 -1.09176725e-01 -3.60840440e-01 5.21579802e-01\\n-2.08924249e-01 -2.58422736e-02 -4.36502695e-01 8.36091936e-02\\n-2.54930317e-01 -4.99556124e-01 6.22847140e-01 1.38894498e-01\\n3.46470267e-01 6.94538583e-04 6.10827701e-03 -1.31122053e-01\\n-1.22452088e-01 3.10157478e-01 -3.63909714e-02 2.84927309e-01\\n-3.26196820e-01 -2.38905832e-01 -1.51871920e-01 3.39236289e-01\\n-9.53172520e-02 1.91311598e-01 -1.23283342e-02 -1.98974162e-01\\n2.82019526e-01 1.46738902e-01 -4.02581304e-01 1.47536069e-01\\n-1.28262475e-01 -3.07639152e-01 -7.97809288e-02 3.16156477e-01\\n-7.77336508e-02 2.09422037e-01 3.22482213e-02 -2.43627682e-01\\n5.90117335e-01 2.12173223e-01 1.23138964e-01 -4.55988050e-02\\n2.81528145e-01 -1.54105708e-01 3.16745400e-01 1.23499252e-01\\n-8.11372221e-01 2.87390828e-01 2.43022684e-02 -8.31407160e-02\\n5.51492311e-02 1.41617820e-01 4.11935240e-01 -4.49855983e-01\\n-1.50264204e-01 -2.51525044e-01 -5.56012809e-01 -3.81326050e-01\\n-4.27273571e-01 3.05585861e-02 4.57227260e-01 -3.24186146e-01\\n-6.29257560e-02 1.38955623e-01 -6.21518612e-01 -1.78946093e-01\\n1.39425904e-01 1.25439584e-01 1.35065034e-01 -5.01265600e-02\\n-4.48589586e-02 -7.39397645e-01 -4.88783345e-02 -5.02204716e-01\\n-6.53059781e-01 -7.08361939e-02 -3.73954058e-01 1.90239295e-01\\n4.69043516e-02 1.19213201e-01 -7.29179010e-02 9.67196822e-02\\n-4.57982510e-01 -3.44630033e-02 2.65330464e-01 1.53048247e-01\\n2.96455473e-01 -1.32059485e-01 -4.32817280e-01 4.60135937e-01\\n-2.08420262e-01 7.38423765e-01 2.72785366e-01 -8.85912895e-01\\n7.96770215e-01 2.60405153e-01 7.33994693e-02 -4.84383225e-01\\n4.43412364e-01 -3.77090782e-01 -2.45502219e-01 2.31780350e-01\\n-2.01599002e-01 -2.10446283e-01 3.07180673e-01 -2.17752069e-01\\n-3.65946293e-01 5.87624431e-01 2.56463140e-01 -4.08534557e-02\\n3.95624995e-01 -4.05463547e-01 -1.22679062e-01 -3.66899162e-03\\n-1.31733507e-01 -2.04089597e-01 -2.35976890e-01 2.44546801e-01\\n-8.06572288e-02 -5.49001634e-01 -1.42320722e-01 -3.35849106e-01\\n-1.21120311e-01 -4.39557821e-01 -2.78865635e-01 5.36614060e-01\\n6.77339286e-02 1.25205204e-01 7.72644058e-02 -7.00883195e-02\\n-1.78527720e-02 -6.56660497e-01 -2.22963706e-01 -1.90416612e-02\\n5.20841122e-01 1.91203967e-01 3.12111732e-02 -1.74477398e-01\\n-2.87167504e-02 5.80697298e-01 -4.67668772e-01 -5.00538766e-01\\n7.26829693e-02 5.11139259e-02 -6.85254335e-02 -1.13346785e-01\\n5.85114732e-02 5.09533107e-01 -2.23222956e-01 3.96335637e-03\\n-1.51398182e-01 -4.18620370e-03 2.16405272e-01 -1.36178639e-02\\n-1.43086076e-01 -2.98319340e-01 -5.57357781e-02 3.00148487e-01\\n-5.47363818e-01 -1.41328484e-01 5.46629012e-01 3.96016061e-01\\n2.53075719e-01 1.52093977e-01 4.37141746e-01 -1.70914561e-01\\n-3.19694579e-01 -3.33840102e-01 -7.46769505e-03 2.92954803e-01\\n5.37281930e-02 2.27364991e-02 -4.46245559e-02 -4.47685122e-01\\n-2.64417005e+00 -2.20171332e-01 3.39664698e-01 -2.79724270e-01\\n1.71791062e-01 -9.73650068e-02 3.49282585e-02 -3.96619961e-02\\n-3.04762125e-01 -4.49918807e-02 -2.30467573e-01 -8.82003307e-02\\n-5.55954240e-02 3.50446045e-01 1.74214244e-01 6.24148473e-02\\n2.12062132e-02 -2.72872537e-01 -1.67676374e-01 3.28157485e-01\\n-2.12868247e-02 -6.56988382e-01 1.81175455e-01 -6.16404489e-02\\n1.27567247e-01 9.20591652e-02 -3.30397964e-01 -2.55830726e-03\\n-1.78009942e-01 -2.97839761e-01 -7.05694454e-03 -2.86754519e-01\\n-1.60239667e-01 2.72332072e-01 1.23715550e-01 -3.47245410e-02\\n2.04550172e-03 -2.10132182e-01 -7.99290314e-02 -5.21965384e-01\\n6.28079996e-02 -5.72821319e-01 1.03689972e-02 -1.48849487e-01\\n6.45066142e-01 -2.85108477e-01 2.08503693e-01 9.32704434e-02\\n1.98064700e-01 1.45452008e-01 1.46923689e-02 6.87651709e-02\\n-4.41084385e-01 -3.72400105e-01 6.85887337e-02 -2.31668875e-01\\n5.66516519e-01 5.58244944e-01 -2.16827184e-01 -2.78893150e-02\\n2.18477264e-01 -3.88503730e-01 -2.93528378e-01 -6.14344537e-01\\n-1.35776356e-01 -1.84180364e-01 -8.50409925e-01 -4.69372958e-01\\n-9.20941979e-02 -1.20046854e-01 -2.34788015e-01 6.63853884e-01\\n-4.44731742e-01 -4.36461955e-01 -1.79541539e-02 -6.59527302e-01\\n1.66962564e-01 -2.32705817e-01 1.33175746e-01 -2.20617995e-01\\n-3.56607467e-01 -4.78635043e-01 1.72063828e-01 -1.73930287e-01\\n-2.34367147e-01 -1.73171848e-01 -5.98391034e-02 -3.67533207e-01\\n-2.63334870e-01 -3.56467009e-01 4.08146352e-01 1.36142522e-01\\n3.70150328e-01 1.05749793e-01 4.46379513e-01 2.48953160e-02\\n4.08709764e-01 -4.55726404e-03 7.35204965e-02 -4.01699752e-01\\n8.94271061e-02 -1.55719779e-02 5.34370422e-01 -2.85878837e-01\\n2.00207993e-01 2.67658055e-01 -2.42420167e-01 -1.25805780e-01\\n4.38407898e-01 9.53997597e-02 -1.71490274e-02 -1.77488118e-01\\n4.60936546e-01 -5.63630939e-01 -2.56460607e-01 2.57032603e-01\\n-4.43182001e-03 7.86784887e-01 1.43650725e-01 -4.37986404e-01\\n-3.11465651e-01 5.77587485e-01 -1.86038107e-01 -1.61490440e-01\\n-3.85091715e-02 1.81653276e-01 -7.83060789e-02 1.73257068e-01\\n5.44332638e-02 -2.49107495e-01 -3.02379429e-01 -8.16930756e-02\\n4.08012383e-02 1.23818658e-01 2.32871264e-01 -1.47342477e-02\\n4.78255562e-02 4.26692190e-03 -2.29151607e-01 6.68174550e-02\\n2.38976747e-01 2.73711354e-01 1.40279889e-01 -2.76432604e-01\\n-1.15706027e-01 3.74457359e-01 -2.18550250e-01 3.18009198e-01\\n-1.33570418e-01 6.35033771e-02 -4.85777318e-01 -2.14799598e-01\\n-1.46649003e-01 -3.34001541e-01 1.96599096e-01 2.65504271e-01\\n1.08771622e-01 -5.36692403e-02 1.31764725e-01 -6.10931754e-01\\n3.85548353e-01 2.32390866e-01 9.74788964e-02 1.36992875e-02\\n1.79423974e-03 5.21565914e-01 1.78289786e-02 -5.21691144e-02\\n-4.05085795e-02 -5.68163097e-02 -2.70531237e-01 -3.98385257e-01\\n1.29216030e-01 -4.65481788e-01 -1.44471183e-01 5.97691238e-01\\n1.08587168e-01 -3.11341226e-01 -3.74130070e-01 2.24345312e-01\\n2.23323554e-01 -2.31927767e-01 -1.75030783e-01 1.34659233e-02\\n1.61347121e-01 8.74023587e-02 2.10210785e-01 -3.02027702e-01\\n-1.07034348e-01 -2.37622038e-02 -1.68131337e-01 4.66236442e-01\\n3.18863392e-01 -3.95301022e-02 -2.07874313e-01 -1.70427769e-01\\n4.47603405e-01 2.11396068e-02 -6.15353100e-02 -9.43835750e-02\\n1.31282315e-01 -2.85846651e-01 -4.10807163e-01 2.24308260e-02\\n-7.08927661e-02 -1.34803385e-01 2.50950027e-02 -8.79950002e-02\\n6.83161542e-02 5.48832603e-02 -3.98496270e-01 -2.92649955e-01\\n-4.74168360e-01 -1.25644013e-01 1.60691187e-01 -3.02253127e-01\\n4.41723093e-02 -1.86971445e-02 -5.64883649e-01 2.44648069e-01\\n-3.00406545e-01 9.72415432e-02 1.32585257e-01 2.00392932e-01\\n-3.27953428e-01 -9.64241028e-02 2.82093068e-03 1.02522038e-01\\n-4.00131375e-01 -1.88460931e-01 -4.08567078e-02 -9.62030709e-01\\n9.28848982e-02 7.41461664e-02 5.67973172e-03 2.80601121e-02\\n-5.26953824e-02 -7.38703668e-01 8.04946646e-02 -3.75326484e-01\\n9.38704833e-02 9.19223651e-02 -2.21614718e-01 -3.20063442e-01\\n2.25402802e-01 -2.81244908e-02 -3.14861119e-01 4.20359999e-01\\n-5.97287118e-01 1.99475527e-01 1.33476540e-01 1.10531770e-01\\n2.73519531e-02 -1.97806925e-01 2.15876669e-01 -1.69721678e-01\\n-3.61009717e-01 -3.81908596e-01 -3.38776469e-01 -1.78632885e-01\\n7.03844279e-02 -2.96655148e-01 -2.18959838e-01 8.37817565e-02\\n4.04608071e-01 1.53595120e-01 -8.02776590e-02 -1.67518005e-01\\n1.11924246e-01 -3.73409152e-01 6.68731853e-02 -3.73279452e-01\\n-1.17954090e-02 -9.16166231e-03 1.89061910e-01 -1.68983251e-01\\n1.40729591e-01 -3.26090932e-01 5.30845582e-01 -2.36775160e-01\\n-4.24316466e-01 -3.77250314e-02 5.06704561e-02 -1.60248729e-03\\n2.29607016e-01 -4.53545332e-01 1.59035563e-01 2.92837143e-01\\n-1.54973892e-02 2.70581082e-03 3.29156697e-01 -4.65531312e-02\\n-6.94853440e-02 1.80897340e-01 -5.46628833e-01 -6.93782568e-02\\n7.71242201e-01 2.30498791e-01 3.53271025e-03 2.58054882e-01\\n1.07105821e-01 4.54410851e-01 5.49854636e-01 -1.45800456e-01\\n2.91179642e-02 1.70138896e-01 7.20451474e-02 -4.99157012e-01\\n-1.67325199e-01 -2.00526893e-01 -2.61443436e-01 -1.92220703e-01\\n5.58028698e-01 3.62255812e-01 -3.51134807e-01 -2.83111781e-01\\n4.76202630e-02 -9.89143997e-02 3.79354805e-01 -6.20207563e-02\\n-1.10904410e-01 2.62609292e-02 5.51997483e-01 3.55934650e-02\\n3.90787899e-01 5.67669630e-01 -2.48128340e-01 -4.47337985e-01\\n-1.63442388e-01 1.34954393e-01 3.16528566e-02 5.20113409e-01\\n-6.83552846e-02 3.15064013e-01 8.26360136e-02 4.53245267e-02\\n-6.40723705e-02 2.58654058e-01 2.49762625e-01 -8.95783585e-03\\n3.15026700e-01 1.12426162e-01 1.52486950e-01 6.34689271e-01\\n4.23303321e-02 4.79032218e-01 3.43819022e-01 1.16139963e-01\\n2.66479403e-01 6.64068162e-01 4.17775035e-01 2.22300068e-01\\n3.14682461e-02 9.27320421e-02 -8.48014932e-03 4.17517535e-02\\n4.39160168e-01 3.21849972e-01 3.06847513e-01 9.26698685e-01\\n2.95355082e-01 3.36329669e-01 8.13102126e-01 -8.00214350e-01\\n-4.07691002e-01 1.81957647e-01 4.78469133e-01 -3.18975359e-01\\n-1.28250793e-01 9.29368064e-02 -2.27630720e-01 3.52482229e-01\\n-4.93876427e-01 -7.05936104e-02 -9.15077794e-03 3.60119119e-02\\n-4.70120534e-02 -4.32914011e-02 -2.62629360e-01 -2.63684131e-02\\n-2.73251355e-01 -1.09856024e-01 -1.55240133e-01 -2.39006758e-01\\n-4.48880225e-01 -8.59628394e-02 -4.06479090e-02 -3.34375426e-02\\n-2.02690795e-01 -4.91483390e-01 -1.87768713e-01 1.05006039e-01\\n4.37146872e-01 -2.43087545e-01 -9.08244848e-02 -2.37111002e-01\\n-5.10944612e-02 3.68373543e-01 6.27204955e-01 -8.62507075e-02\\n1.12266839e-01 -1.14382125e-01 -2.94280767e-01 3.88912717e-03\\n5.71132489e-02 5.93680590e-02 1.90981656e-01 5.07438004e-01\\n-2.96670169e-01 -8.21104571e-02 1.78822696e-01 2.21033871e-01\\n-4.61400658e-01 -1.92521766e-01 -8.72386247e-02 3.23366404e-01\\n4.92102988e-02 2.80926496e-01 -2.94260710e-01 7.82772154e-02\\n-2.98183411e-01 -4.84718919e-01 6.19120181e-01 -1.68109179e-01\\n-8.90398175e-02 2.58658528e-01 3.19241762e-01 2.14343160e-01\\n-2.43808001e-01 -1.15404204e-01 3.30715999e-02 4.36267644e-01\\n-1.48036882e-01 5.27615011e-01 -1.95877090e-01 -2.61826906e-02\\n-2.52834052e-01 2.58946627e-01 -1.67042553e-01 2.18692049e-01\\n-6.48731738e-02 3.39756668e-01 5.18625267e-02 -4.01512310e-02\\n2.41217628e-01 8.69773924e-02 -2.01392874e-01 -2.42401674e-01\\n-2.22477540e-01 -3.69373590e-01 1.76988050e-01 -1.74670406e-02\\n1.57323092e-01 -3.86331558e-01 -6.09693117e-02 -8.81638974e-02\\n-1.56940773e-01 -3.89345735e-01 -3.24429125e-01 1.36613205e-01]]',\n", + " 'job_description': 'Job Informationen Your tasks: Design and build complex data processing pipelines and data-centric systems Build tools and components for data ingestion and data transformation Develop machine learning modules for various forms of data and modalities Systematically work towards strict metrics (performance, resource usage, reliability) Work within a talented and fast-paced team of engineers Your profile: 1-3 years of experience in building large scale distributed systems In-depth understanding of concepts such as algorithms, networking and internet technology Deep knowledge in Scala, Java, or C++ and Python, Bash, or Perl Knowledge of databases and messaging systems (e.g. Couchbase, Kafka) Knowledge of modern architectural patterns e.g. REST, microservices, stream processing Knowledge of a batch processing framework e.g. Spark, Hadoop Experience with version control systems (e.g. Git) and cloud technologies (e.g. AWS) Interest in large scale data mining and machine learning is desirable Knowledge of client-side technologies (e.g. JavaScript, Angular, React) is a plus Bachelor/MSci/PhD degree in Computer Science or equivalent Ability to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala JAVA C++ Python Python Bash Perl Python JavaScript Angular Englisch',\n", + " 'soft_skills': '[\"Communications\", \"Reliability\"]',\n", + " 'hard_skills': '[\"Control Systems\", \"Distributed File Systems\", \"Python Server Pages\", \"Knowledge Process Outsourcing\", \"Computer Science\", \"Perl (Programming Language)\", \"Message Handling Systems\", \"Build Tools\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Version Control\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Transformation\", \"Microservices\", \"Pipelining\", \"React.js\", \"Machine Learning Methods\", \"Stream Processing\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Bash (Scripting Language)\", \"Architectural Patterns\", \"Electronic Data Processing\", \"Data Mining\", \"Java Data Mining\", \"Angular (Web Framework)\", \"Modulation\", \"Batch Processing\", \"Resourcing\", \"Algorithms\", \"Git Flow\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"Data Ingestion\", \"Cloud Technologies\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '57',\n", + " 'job_title': 'software engineer - c# -',\n", + " 'location': 'Switzerland',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.64772525e-01 2.76807666e-01 5.46194911e-01 -1.78663999e-01\\n4.68478411e-01 -3.67524981e-01 2.13195235e-01 4.24296647e-01\\n-8.17956924e-02 -3.46826196e-01 -8.41753632e-02 -2.51772672e-01\\n-5.15617654e-02 7.74513632e-02 1.66734904e-01 3.50251496e-01\\n2.73966372e-01 1.33402050e-01 -1.19294614e-01 3.50635916e-01\\n1.25488773e-01 -1.88268602e-01 1.06664672e-01 6.52806878e-01\\n4.65819895e-01 1.71995386e-01 -8.93028975e-02 1.76807925e-01\\n-3.22892785e-01 -4.05892164e-01 4.49922711e-01 -3.23772915e-02\\n-1.63701605e-02 -1.80861309e-01 1.07690975e-01 -2.16825381e-02\\n-2.20342845e-01 3.58604193e-02 -6.88299313e-02 1.51987419e-01\\n-3.67927074e-01 -8.27801451e-02 1.88268751e-01 1.73914675e-02\\n-1.62085205e-01 -3.88736337e-01 3.21350880e-02 2.72953045e-02\\n2.06000537e-01 -7.25217909e-02 -4.57060367e-01 3.90332669e-01\\n-2.27643147e-01 -3.38814110e-01 2.78182805e-01 5.28079748e-01\\n-1.79176316e-01 -5.28168619e-01 -4.36779261e-01 -2.53170341e-01\\n1.11192584e-01 -1.47335947e-01 6.52952567e-02 -3.25392008e-01\\n3.63916725e-01 1.21677257e-01 3.84149402e-02 4.12340939e-01\\n-7.92021990e-01 4.86693904e-02 -1.72356993e-01 -5.27348481e-02\\n-2.55846977e-01 -1.85274146e-03 -3.00835043e-01 -6.27940223e-02\\n-1.66037589e-01 3.61122310e-01 7.02960789e-02 8.95178095e-02\\n-8.31178948e-02 2.85099059e-01 -2.40625471e-01 2.06431225e-01\\n2.36462727e-01 3.38673294e-01 1.86542690e-01 3.20068479e-01\\n-3.78774911e-01 4.47699934e-01 1.39667645e-01 -2.94265777e-01\\n1.54511184e-01 1.33698612e-01 4.49450403e-01 -1.31222665e-01\\n2.03619108e-01 6.18353151e-02 -1.44870907e-01 3.31225783e-01\\n4.15190190e-01 -3.47663820e-01 -1.30834430e-02 1.53828477e-02\\n-9.94220823e-02 1.11738913e-01 4.40242328e-02 3.78654748e-01\\n-3.41483593e-01 6.03950620e-01 6.48397058e-02 -1.96196616e-01\\n-9.18151438e-02 -6.09495997e-01 -1.88038841e-01 2.33608574e-01\\n7.31805041e-02 1.23094238e-01 2.29253829e-01 2.66499698e-01\\n2.39116833e-01 1.50256321e-01 1.58523396e-01 8.49662542e-01\\n-1.15914233e-01 1.10921077e-01 -2.22229883e-01 3.22688490e-01\\n1.18033417e-01 -2.75813013e-01 2.82118797e-01 3.78131658e-01\\n2.70028561e-01 -6.95153400e-02 -1.71907440e-01 2.30021641e-01\\n-4.69232313e-02 -2.65312552e-01 -2.88292795e-01 1.40812159e-01\\n-1.26930818e-01 -5.38653553e-01 6.02564752e-01 -1.35766976e-02\\n9.69960093e-02 5.26094027e-02 9.28754285e-02 -4.08892892e-02\\n-1.14772782e-01 1.62700683e-01 6.91518337e-02 1.51853070e-01\\n-2.77955979e-01 -1.64611787e-01 -3.96558672e-01 1.60221592e-01\\n-3.11135739e-01 9.29338858e-02 -9.84763801e-02 -4.26849499e-02\\n3.96174192e-01 -2.59645097e-02 -3.10053796e-01 4.06087756e-01\\n-1.36861742e-01 2.58774292e-02 -7.06121400e-02 2.61853069e-01\\n-1.11629792e-01 2.38987461e-01 -1.17291078e-01 -1.73289984e-01\\n4.58959162e-01 1.76410899e-01 6.57794774e-02 -1.09326534e-01\\n3.22030693e-01 -8.28488823e-03 1.17364384e-01 -1.44444825e-02\\n-7.97896385e-01 2.90143281e-01 2.08421275e-02 -1.72247648e-01\\n4.27352563e-02 -7.48733198e-03 2.38961786e-01 -3.94855827e-01\\n5.18858247e-02 -1.10329017e-01 -4.31714267e-01 -2.98168063e-01\\n-1.63815871e-01 -3.86478007e-02 4.68761653e-01 -4.15187210e-01\\n-1.91445023e-01 1.53912604e-01 -5.05179644e-01 1.60727322e-01\\n3.31301987e-01 7.35341460e-02 1.50958598e-01 2.02411324e-01\\n-1.64411455e-01 -5.33879995e-01 1.18832760e-01 -3.45753193e-01\\n-2.75627732e-01 2.47556776e-01 -3.64156008e-01 2.38287598e-01\\n1.75842673e-01 5.26473066e-03 -9.67978537e-02 7.40015209e-02\\n-8.66908059e-02 -1.76804930e-01 1.39113247e-01 3.33025269e-02\\n3.57485324e-01 7.42985085e-02 -4.39482212e-01 5.18254876e-01\\n-2.12392882e-01 4.92733479e-01 1.43184885e-01 -7.15204477e-01\\n4.26402718e-01 3.03109020e-01 5.82604744e-02 -3.93082350e-01\\n7.75869608e-01 -2.18868867e-01 -4.37113009e-02 1.66375831e-01\\n-4.92929488e-01 -4.05358970e-01 1.34233311e-01 -6.94984049e-02\\n-1.76401556e-01 2.92753607e-01 6.89027607e-02 7.50373229e-02\\n3.42305422e-01 -1.15844093e-01 -6.87075406e-02 2.00546429e-01\\n-1.59289241e-02 -2.45919988e-01 -3.21334809e-01 5.66280298e-02\\n-1.12147070e-03 -4.97433752e-01 -7.79797360e-02 -3.98996502e-01\\n-3.25439334e-01 -3.59859675e-01 -1.90680116e-01 2.66619444e-01\\n1.68208852e-01 2.12842062e-01 5.96953295e-02 -2.62240227e-02\\n-3.14053416e-01 -5.87689936e-01 1.45342261e-01 9.52240974e-02\\n3.65111679e-01 1.35929421e-01 -7.67500848e-02 -9.36250761e-02\\n2.55871080e-02 7.23082840e-01 -2.78568506e-01 -1.35427788e-01\\n1.07384250e-01 1.58344641e-01 -1.29187524e-01 -1.55981168e-01\\n2.36039162e-02 2.73294359e-01 -2.34195232e-01 7.72598982e-02\\n-2.07465962e-01 -1.68687720e-02 3.64061475e-01 -1.12549573e-01\\n-4.15923506e-01 -3.30557227e-01 -1.87869281e-01 8.81709978e-02\\n-6.25583768e-01 -1.79380536e-01 6.40591562e-01 1.84573591e-01\\n1.61394641e-01 1.24828577e-01 1.36799574e-01 -7.40003586e-02\\n-1.76300645e-01 -2.08544239e-01 1.49725869e-01 2.95623429e-02\\n9.28895399e-02 1.82370603e-01 -2.04103440e-01 -5.34670472e-01\\n-3.63125753e+00 -7.32215643e-02 1.14097334e-01 -3.17801893e-01\\n1.92422152e-01 -1.09943680e-01 1.52759314e-01 -2.16027200e-01\\n-1.91426009e-01 4.53394018e-02 -2.03591615e-01 -1.33778140e-01\\n2.37194583e-01 1.59861088e-01 1.14355288e-01 2.44193420e-01\\n3.07041854e-01 -3.51387024e-01 -8.75399709e-02 3.09464663e-01\\n-1.34030968e-01 -5.29288471e-01 2.24836752e-01 -7.42031857e-02\\n4.67449039e-01 4.65605497e-01 -2.85995215e-01 -1.63949579e-01\\n-2.06202894e-01 -2.50086904e-01 1.20017789e-01 -2.19647899e-01\\n7.46033415e-02 3.05703998e-01 1.20136544e-01 -9.72689614e-02\\n2.70108521e-01 -3.05010140e-01 1.11409798e-01 -3.59845251e-01\\n1.51722163e-01 -5.77656806e-01 -9.14993286e-02 -5.67101575e-02\\n7.92012751e-01 -3.68912518e-01 8.27970654e-02 1.07330903e-01\\n1.05044074e-01 2.45090514e-01 -2.52676588e-02 -2.16234073e-01\\n-1.48407876e-01 -1.93554997e-01 -5.30797206e-02 -1.57709852e-01\\n5.29696167e-01 6.76983416e-01 -2.57608205e-01 -5.02681024e-02\\n2.27372386e-02 -3.69987518e-01 -4.82042849e-01 -3.24809283e-01\\n-2.72891641e-01 -1.50454849e-01 -5.77311695e-01 -5.68993092e-01\\n-1.64772958e-01 -7.53210336e-02 -7.86887854e-02 5.05571306e-01\\n-2.10601985e-01 -5.18004179e-01 -7.55979121e-02 -4.09390837e-01\\n8.86229239e-03 -1.11434132e-01 -3.86233144e-02 -2.23112047e-01\\n-1.74075082e-01 -5.65183401e-01 1.43261347e-02 9.78479311e-02\\n-9.18411314e-02 -2.05635846e-01 2.66934425e-01 -1.07150026e-01\\n-3.14752668e-01 -5.41592896e-01 4.16086346e-01 1.50812212e-02\\n3.30857545e-01 1.94335595e-01 8.21536258e-02 8.88732150e-02\\n3.61687958e-01 -3.28650564e-01 1.47287831e-01 -3.47437263e-01\\n2.27680549e-01 1.46825120e-01 5.52715659e-01 -1.36403754e-01\\n1.05554879e-01 1.05307229e-01 -2.63496906e-01 -2.54742920e-01\\n2.91109294e-01 4.79927547e-02 1.85718328e-01 -3.41601908e-01\\n4.03735429e-01 -2.93881804e-01 -2.59083569e-01 1.53647199e-01\\n9.14022028e-02 4.39355403e-01 -6.06204160e-02 -3.09012502e-01\\n-7.21433312e-02 4.82919067e-01 -2.21813038e-01 -3.17251086e-02\\n-2.03704923e-01 3.83672006e-02 -2.11111486e-01 3.45580518e-01\\n1.28396703e-02 -1.64716423e-01 -2.36932486e-01 -1.48321554e-01\\n-2.33307537e-02 2.55304009e-01 2.24109426e-01 1.07053094e-01\\n-2.01807134e-02 -4.03046846e-01 1.65094957e-02 1.58550277e-01\\n2.12969854e-01 3.18270892e-01 -7.09916698e-03 -1.24939978e-01\\n-9.06146094e-02 2.88403928e-01 -1.34455144e-01 1.77377835e-01\\n-2.23168194e-01 1.38260368e-02 -3.81300956e-01 -3.34842831e-01\\n-2.66593188e-01 -2.65764505e-01 -1.20762534e-01 2.14595303e-01\\n7.54636377e-02 7.68301710e-02 3.73832472e-02 -4.17604029e-01\\n2.61269033e-01 5.92944510e-02 2.29465827e-01 2.80614376e-01\\n-3.20919640e-02 5.33879399e-01 4.86345328e-02 -5.25516979e-02\\n-1.38815597e-01 1.52299076e-01 -2.69144893e-01 1.67902987e-02\\n1.87067632e-02 -4.15452003e-01 1.27427476e-02 3.16131145e-01\\n5.89536428e-02 -2.89693773e-01 -1.15595989e-01 1.86287045e-01\\n-4.50026803e-02 -5.31428218e-01 -1.98888183e-01 -3.06083146e-03\\n3.07457238e-01 5.11004739e-02 2.70649523e-01 -4.62229252e-01\\n-2.07568388e-02 5.44111431e-02 -1.12164579e-01 4.69469041e-01\\n-6.26220256e-02 -3.91858853e-02 -1.50895745e-01 -3.26610893e-01\\n3.54949206e-01 -2.06756756e-01 3.33874151e-02 -3.09111215e-02\\n1.58977166e-01 -1.04800411e-01 -3.96268159e-01 1.30663896e-02\\n-6.11656867e-02 -2.18216013e-02 3.88470367e-02 -8.45728740e-02\\n-1.09434627e-01 1.69175327e-01 -5.54477572e-01 -2.80432850e-01\\n-2.28204489e-01 -2.01934844e-01 -3.81503515e-02 -3.36068630e-01\\n-2.75622830e-02 4.54678480e-03 -5.61823428e-01 2.57604212e-01\\n-2.42950663e-01 4.13868725e-02 1.85902253e-01 -3.71826030e-02\\n-3.94733220e-01 -1.16791040e-01 1.82782650e-01 2.67799735e-01\\n-4.26501065e-01 -2.85840482e-01 -1.79065987e-01 -1.01120269e+00\\n3.42170954e-01 -1.01692127e-02 -1.61983579e-01 7.43151829e-02\\n-6.42531812e-02 -4.38110530e-01 1.82017937e-01 -4.11552280e-01\\n1.08640259e-02 -4.04396839e-02 -2.23701164e-01 -4.07810837e-01\\n1.00275818e-02 -4.27294336e-02 -3.88590395e-01 3.56478006e-01\\n-3.15937817e-01 3.46748203e-01 -6.53120503e-02 4.59495522e-02\\n-1.14705622e-01 -2.52766013e-01 8.38349611e-02 -5.56684434e-01\\n-3.03688258e-01 -1.28585994e-01 -1.83156386e-01 -1.06610641e-01\\n1.17060021e-02 -2.17513263e-01 -3.52430344e-02 1.97418451e-01\\n1.72093764e-01 1.06367409e-01 -1.08669750e-01 -1.81132883e-01\\n1.56099394e-01 -4.76025224e-01 -1.41031429e-01 -1.44431606e-01\\n-4.40223999e-02 -1.11723728e-01 1.47973135e-01 7.04523697e-02\\n7.12842867e-02 -4.80743527e-01 2.86651909e-01 -2.84896106e-01\\n-2.45153829e-01 1.28622070e-01 1.64929740e-02 1.32092973e-02\\n3.29000294e-01 -3.37832719e-01 -9.96440053e-02 3.72340977e-01\\n8.88073444e-02 3.78702544e-02 2.35822976e-01 -8.81805569e-02\\n-1.49215400e-01 3.30749512e-01 -3.15486938e-01 2.63718404e-02\\n6.98373973e-01 1.90262616e-01 9.02026668e-02 2.58785456e-01\\n2.44782791e-01 4.50480014e-01 4.71764624e-01 8.40917453e-02\\n-4.38632704e-02 3.09083372e-01 5.00782430e-02 -6.15933776e-01\\n7.87890106e-02 2.21341863e-01 -3.74874234e-01 -2.66077548e-01\\n7.13023007e-01 5.54728568e-01 -3.27520937e-01 -3.59730303e-01\\n-2.09611103e-01 -2.02354640e-01 5.48216440e-02 -1.35842815e-01\\n1.85828045e-01 -2.25184500e-01 5.31072676e-01 6.34314269e-02\\n6.73865974e-02 5.11043251e-01 -1.76499322e-01 -3.05498660e-01\\n2.19641998e-02 9.28847119e-02 1.71622951e-02 4.09971327e-01\\n-1.35802403e-01 2.72094071e-01 7.55511671e-02 1.72442526e-01\\n7.27754459e-03 1.07045107e-01 1.70932084e-01 4.37561683e-02\\n1.51494946e-02 1.41690448e-01 3.35461318e-01 4.06946450e-01\\n3.77778471e-01 4.49277699e-01 1.18560247e-01 7.72049651e-02\\n4.98613536e-01 4.22372580e-01 4.29738134e-01 2.41597727e-01\\n-3.64244729e-02 2.07997896e-02 9.60848406e-02 1.38600366e-02\\n3.32520545e-01 2.02445805e-01 3.99532449e-03 8.80671203e-01\\n3.58370930e-01 2.32937127e-01 7.49207735e-01 -5.55444956e-01\\n-4.16938573e-01 -6.04336672e-02 3.95586580e-01 -4.42445785e-01\\n-1.39280140e-01 2.71351300e-02 -1.79536030e-01 2.18659312e-01\\n-4.83717054e-01 -2.11906269e-01 -6.50843978e-02 7.45628849e-02\\n1.55473769e-01 -6.60997108e-02 -2.73886591e-01 -1.77889764e-01\\n-1.19334817e-01 -1.11828156e-01 -5.60436964e-01 -5.93681820e-02\\n-1.50508687e-01 -2.87652850e-01 -1.60729647e-01 -2.29622558e-01\\n9.93097797e-02 -4.38541353e-01 -1.25602707e-01 8.14137831e-02\\n2.10243061e-01 -1.96462572e-01 -1.91207565e-02 -1.63799062e-01\\n1.83577821e-01 2.71562725e-01 5.28674424e-01 8.54550395e-03\\n2.86843013e-02 -2.28329495e-01 -1.57934085e-01 1.20246768e-01\\n1.61668554e-01 1.06884420e-01 4.17200625e-02 3.60063672e-01\\n-4.93261755e-01 -2.28363872e-01 -4.94004367e-03 4.95610327e-01\\n-5.34731805e-01 5.16384728e-02 1.27258927e-01 3.69000763e-01\\n7.84299448e-02 1.09779142e-01 -2.43840501e-01 -1.68955289e-02\\n-2.51476824e-01 -4.49062765e-01 2.29091465e-01 8.06512833e-02\\n-2.37363219e-01 8.01083297e-02 1.43477008e-01 1.26853123e-01\\n-2.99325407e-01 -1.83748484e-01 1.67026483e-02 6.95167556e-02\\n2.28798121e-01 2.74497837e-01 -2.48493433e-01 -3.25102091e-01\\n-2.86812544e-01 2.11732551e-01 -3.20209473e-01 1.08442195e-01\\n-1.02145694e-01 2.75868207e-01 1.14608206e-01 1.62649244e-01\\n2.96929747e-01 7.58127775e-03 -1.00372918e-01 -1.98613197e-01\\n-2.49478415e-01 -2.74205685e-01 1.48216516e-01 -1.29538197e-02\\n1.23021118e-01 -4.64434981e-01 -6.59101009e-02 -7.58287087e-02\\n-1.89195901e-01 -3.49921525e-01 -4.17447165e-02 -1.93490058e-01]]',\n", + " 'job_description': 'We are currently looking on behalf of one of our important clients for a C# Software Engineer. This role is a permanent position based in Zug Canton. Your Role: Support the development of a new software platform for the operation of future machines. Assist in the design & implementation of operating software in C # with the .NET Framework. Actively participate within a motivated Scrum team. Utilize agile development methods & tools (TDD, BDD). Your Skills: Sound software knowledge & experience in C#. Good database experience & know-how (entity framework, SQL server). Interested in GUI programming (WPF), experience in this area is advantageous. Your Profile: Completed Computer science university degree. Innovative, precise, adaptable & dynamic. Self-driven, systematic, time-conscious & a networked mindset. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " 'soft_skills': '[\"Innovation\", \"Adaptability\", \"Operations\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Activism\", \"Programming (Music)\", \"Receivables\", \"C# (Programming Language)\", \"Knowledge Management Software\", \"Scrum (Software Development)\", \"Computer Science\", \"Machining\", \"Microsoft SQL Servers\", \"Agile Product Development\", \"Vienna Development Methods\", \"Entity Framework\", \"Software Engineering\", \".NET Framework\"]',\n", + " 'languages': \"['English', 'Afar']\"},\n", + " {'company_id': '65',\n", + " 'job_title': 'phd student – early stage researcher: mechanoregulation of bone remodeling in type 2 diabetes using hrpqct in vivo patient data',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.61084938e-01 3.28587145e-01 2.76164651e-01 -9.28510427e-02\\n6.49298191e-01 1.35862995e-02 -6.90809637e-03 2.21510023e-01\\n1.81158632e-01 -3.24455231e-01 -9.57857296e-02 -2.59691834e-01\\n-1.89066138e-02 3.70033830e-01 1.45472586e-01 5.93089700e-01\\n3.31340075e-01 -4.95083481e-02 -8.31281841e-02 4.72207069e-01\\n1.16403446e-01 -1.36472121e-01 7.22969994e-02 9.50641692e-01\\n2.37537593e-01 -1.16547465e-01 -5.68534620e-02 1.51059613e-01\\n-1.77686661e-02 -1.78920120e-01 5.08162081e-01 1.52124137e-01\\n-2.97667593e-01 -4.56207186e-01 9.84854251e-02 2.64256805e-01\\n-4.45431948e-01 -2.91401625e-01 -1.11059397e-01 1.64851949e-01\\n-6.21417582e-01 -2.35254303e-01 -2.71845818e-01 6.44758493e-02\\n-2.73518682e-01 -2.36374348e-01 1.24753036e-01 2.70575862e-02\\n1.19366519e-01 2.08162695e-01 -5.02674460e-01 1.23291388e-01\\n-4.39906307e-02 -3.64983618e-01 3.32933575e-01 6.65546894e-01\\n-1.78001702e-01 -3.42661977e-01 -4.19860154e-01 -2.56538212e-01\\n-2.90071368e-02 1.60309337e-02 6.16111495e-02 -4.53401744e-01\\n2.56655633e-01 1.26008630e-01 1.06737182e-01 2.96377838e-01\\n-6.30333662e-01 -2.03433692e-01 -3.29169393e-01 2.44472653e-01\\n-3.08683991e-01 2.42642522e-01 -1.86428204e-01 -1.95883796e-01\\n-7.24531710e-02 3.43621075e-01 1.08725324e-01 -2.30390485e-02\\n-9.71359387e-02 2.16939032e-01 -3.43681455e-01 4.19914246e-01\\n2.34886616e-01 3.50113332e-01 1.71262830e-01 4.40149128e-01\\n-6.26241207e-01 3.20412576e-01 1.25201628e-01 -2.07235649e-01\\n1.77323759e-01 1.40484661e-01 5.14372945e-01 4.61128354e-03\\n2.15050474e-01 8.77649859e-02 -3.88323724e-01 3.41275156e-01\\n2.62315601e-01 -2.42858231e-01 1.17811307e-01 2.61902437e-03\\n-3.54387537e-02 -5.29950000e-02 9.18288454e-02 7.94024915e-02\\n-3.77274513e-01 2.64475465e-01 8.22714120e-02 -3.65181863e-01\\n-2.81330228e-01 -6.48063719e-01 -7.85733387e-02 -5.63287660e-02\\n-4.82087694e-02 8.24040025e-02 8.05607364e-02 2.07443818e-01\\n-1.12539493e-02 1.43703520e-02 1.23929679e-01 9.50008333e-01\\n-2.08234161e-01 -1.31221831e-01 -1.25849634e-01 1.38870567e-01\\n1.70827031e-01 -1.06971957e-01 2.31381238e-01 3.15487832e-01\\n-5.58151007e-02 -4.42804068e-01 -1.79112941e-01 2.30638325e-01\\n-1.85967386e-02 -2.12863773e-01 -1.86659589e-01 3.50769043e-01\\n1.30117849e-01 -5.25954723e-01 6.07167125e-01 2.80802138e-04\\n2.15620399e-02 -2.43595988e-01 -5.20206280e-02 -4.25676331e-02\\n9.66767967e-02 1.40791044e-01 2.10005835e-01 2.71844678e-02\\n-2.25747049e-01 -2.22363442e-01 -1.41907990e-01 1.42674640e-01\\n-3.85888100e-01 2.49722123e-01 -1.54603645e-01 -1.00247271e-01\\n2.46747106e-01 -1.47111058e-01 -2.54387498e-01 2.19288766e-01\\n-1.44485235e-01 -4.40407172e-03 1.01596966e-01 4.29198205e-01\\n-3.34210634e-01 2.58009344e-01 -1.38014644e-01 -3.46726179e-01\\n5.27901173e-01 -1.33448802e-02 2.68023312e-01 7.60085210e-02\\n2.27619499e-01 -3.61681134e-02 1.58852518e-01 2.12480932e-01\\n-7.84036756e-01 3.10781538e-01 8.13880004e-04 -2.27028549e-01\\n1.64633125e-01 -1.42268807e-01 4.55087662e-01 -1.78776667e-01\\n-4.87127267e-02 -1.70869797e-01 -1.57208025e-01 -2.98696995e-01\\n-1.17961317e-05 1.56716518e-02 3.15743208e-01 -3.30238402e-01\\n2.12439224e-02 1.88066036e-01 -4.53880668e-01 -2.45646298e-01\\n-5.06324917e-02 1.26994878e-01 9.38456357e-02 1.83935612e-01\\n-1.01030901e-01 -7.54710913e-01 -3.94705161e-02 -5.88665068e-01\\n-1.29491538e-01 4.57405485e-02 -3.15772206e-01 1.67572889e-02\\n-5.74522950e-02 -6.57691211e-02 -4.53795977e-02 -1.55541115e-03\\n-3.17944407e-01 1.96331829e-01 -1.44837111e-01 -1.41101554e-01\\n1.99678034e-01 5.67492135e-02 -2.48701766e-01 5.06205499e-01\\n-4.23555635e-02 6.48100436e-01 1.13813825e-01 -7.30357766e-01\\n5.80462933e-01 4.66924667e-01 9.31900144e-02 -3.81214410e-01\\n6.22294724e-01 -3.55563760e-01 -9.96731222e-02 6.55058026e-02\\n-3.70983928e-01 -1.20518364e-01 1.34517983e-01 -4.14276004e-01\\n-3.89038801e-01 5.05153477e-01 9.31313634e-02 6.51575327e-02\\n3.76953185e-01 -2.76894957e-01 -8.20210576e-02 2.11545110e-01\\n-4.12440062e-01 -2.57177204e-01 -5.28929114e-01 -1.06125869e-01\\n-1.33419290e-01 -4.23412144e-01 -1.75747111e-01 -4.15494740e-01\\n4.06174473e-02 -2.46146098e-01 -1.30977511e-01 1.43215939e-01\\n1.85931578e-01 8.27737376e-02 -8.45251828e-02 -7.21845627e-02\\n-1.01212174e-01 -6.02093756e-01 -1.41068906e-01 -7.48918280e-02\\n4.25427318e-01 3.51928025e-02 2.49494910e-01 1.55557007e-01\\n-7.74621964e-02 6.27552390e-01 -3.04476440e-01 -4.36766863e-01\\n3.01586129e-02 2.22348675e-01 -2.42346227e-02 2.75372155e-02\\n1.59780771e-01 3.37330133e-01 -4.06057715e-01 -3.62166017e-02\\n-2.38324717e-01 1.13779537e-01 3.09523672e-01 5.60073331e-02\\n-8.41161385e-02 -1.50067329e-01 -1.22973941e-01 2.47111320e-01\\n-5.84987283e-01 -1.82397723e-01 1.57037154e-01 1.41326040e-01\\n2.33085036e-01 9.58670452e-02 1.37113199e-01 -4.19024676e-02\\n-2.17527062e-01 -3.17130178e-01 3.02198887e-01 1.08462170e-01\\n-3.22339311e-02 1.22121245e-01 6.82801902e-02 -6.02351189e-01\\n-2.85117745e+00 5.93179166e-02 1.37583643e-01 -1.15361191e-01\\n4.56877589e-01 -2.30708662e-02 4.11482118e-02 -5.15934452e-03\\n-3.41351897e-01 6.10282756e-02 -2.27149233e-01 -3.89910281e-01\\n9.92292166e-02 1.06226429e-01 5.22809476e-02 -7.45702684e-02\\n7.41493981e-03 -3.20688903e-01 7.15634376e-02 3.47479999e-01\\n-5.98031431e-02 -7.45422125e-01 5.90668470e-02 -5.47338948e-02\\n-3.96353267e-02 8.07445347e-02 -6.11271501e-01 -1.63533106e-01\\n-4.03904319e-01 -1.87875688e-01 5.04123606e-02 -6.13436818e-01\\n3.21242362e-02 2.41304278e-01 2.53080785e-01 8.21770653e-02\\n-1.66876167e-01 -3.00308645e-01 -1.20393664e-01 -5.99188089e-01\\n3.11165676e-02 -5.59059024e-01 -1.19575620e-01 -2.21527830e-01\\n7.66469955e-01 -1.47902101e-01 2.93502301e-01 2.36928374e-01\\n-7.30897635e-02 1.80985630e-01 1.38683781e-01 6.86880201e-02\\n-1.35617405e-01 -1.95889473e-01 5.43150976e-02 -3.30621034e-01\\n4.70763981e-01 3.12588811e-01 -1.76496953e-01 -2.01320037e-01\\n1.35294959e-01 -8.79688710e-02 -6.67126596e-01 -2.44966820e-01\\n-1.08083978e-01 -2.27030978e-01 -7.33378410e-01 -4.36243027e-01\\n-3.79187390e-02 -2.26974964e-01 2.80877501e-02 5.87745428e-01\\n-4.37981308e-01 -1.82717174e-01 -1.04720458e-01 -6.18655443e-01\\n4.13399100e-01 -3.74118030e-01 6.74491078e-02 -2.13746578e-01\\n-1.47823930e-01 -4.48847950e-01 1.29368871e-01 -1.12845033e-01\\n2.92735379e-02 -4.25528824e-01 -5.15560918e-02 -2.37324044e-01\\n-2.84447312e-01 -3.71356308e-01 4.00401533e-01 9.51711759e-02\\n1.87226683e-01 1.10959068e-01 1.18071675e-01 -1.12660803e-01\\n1.25854746e-01 3.11066896e-01 9.35281068e-02 -1.22492261e-01\\n1.37503594e-01 -1.51434168e-01 4.54606265e-01 -2.09972322e-01\\n3.33900005e-02 -3.99553291e-02 -1.86881125e-01 -8.38509873e-02\\n1.78830594e-01 -9.26906541e-02 -5.15444651e-02 -2.31018335e-01\\n4.44370270e-01 -3.42596591e-01 1.81542069e-01 5.00607044e-02\\n6.53216839e-02 5.07696271e-01 1.39248341e-01 -3.03328931e-01\\n-1.46872357e-01 3.74734491e-01 -8.62242579e-02 1.32993430e-01\\n2.82904729e-02 1.41261816e-01 -2.33813196e-01 3.28981638e-01\\n-8.43920186e-02 -2.36202538e-01 -2.43567452e-01 -4.41933274e-02\\n-2.53164649e-01 4.48341727e-01 2.97452182e-01 2.05341324e-01\\n-1.40144795e-01 -3.21907640e-01 -1.93490118e-01 4.64896917e-01\\n3.51755351e-01 2.66030848e-01 3.20448399e-01 -2.56142855e-01\\n1.30316094e-01 3.30595255e-01 -1.96471840e-01 2.52788126e-01\\n-2.50411093e-01 1.11801863e-01 -4.43859816e-01 -2.55618632e-01\\n-4.74757552e-01 -1.71309978e-01 3.85819584e-01 4.09425497e-01\\n2.34281763e-01 -2.31224313e-01 1.92551255e-01 -3.54301631e-01\\n2.04933554e-01 3.27430904e-01 2.41432488e-01 9.17777605e-03\\n-2.66444325e-01 6.33967102e-01 -1.91284884e-02 -2.09098428e-01\\n-1.20462105e-02 -7.53091499e-02 -3.52886260e-01 -2.57586688e-01\\n2.93681379e-02 -5.75502336e-01 -1.58768222e-01 3.50703478e-01\\n1.02242976e-02 -2.30374128e-01 -1.83947295e-01 4.68002856e-01\\n-3.48131061e-02 -2.20827013e-01 -2.99916029e-01 4.25081663e-02\\n3.50501299e-01 6.34225160e-02 2.51878381e-01 -6.65841818e-01\\n5.65611757e-03 4.81096320e-02 1.84341550e-01 5.70549130e-01\\n-1.71361640e-02 -1.24465093e-01 -3.49495053e-01 -2.75277197e-01\\n2.45586738e-01 -5.25507554e-02 4.51037101e-02 1.54164582e-01\\n1.28247678e-01 -1.41811043e-01 -9.09303501e-02 1.51027709e-01\\n9.23011899e-02 -2.88475096e-01 -1.97135374e-01 2.15313196e-01\\n2.07311101e-02 5.10573797e-02 -5.53116560e-01 -3.08149934e-01\\n-8.59047771e-02 2.04420403e-01 6.38841093e-02 -5.12886882e-01\\n-6.72423244e-02 -2.40185559e-01 -5.77669859e-01 3.88313264e-01\\n8.80922377e-03 -9.09276903e-02 2.49724045e-01 -4.78673130e-02\\n-4.13292825e-01 -3.68514836e-01 1.24346502e-01 1.80781066e-01\\n-2.71070033e-01 -4.64349389e-02 -5.43339998e-02 -1.00384665e+00\\n-8.00664537e-03 9.18761492e-02 -9.24835131e-02 1.34709388e-01\\n2.34254263e-02 -5.45975089e-01 6.16194773e-03 -1.87408745e-01\\n-1.36340680e-02 1.05440676e-01 -2.92593181e-01 -1.37602419e-01\\n5.09332195e-02 1.09896854e-01 -2.94827819e-02 3.64978313e-01\\n-1.56485751e-01 2.41762847e-01 -2.52116114e-01 -1.20698847e-01\\n6.45768344e-02 -2.02102229e-01 2.49878049e-01 -7.55651966e-02\\n-2.79168755e-01 -2.24000812e-01 -1.98678702e-01 -3.03685606e-01\\n-1.23382904e-01 -2.56592333e-01 3.85644399e-02 5.51149286e-02\\n3.84173930e-01 -2.19137132e-01 -1.58430427e-01 -1.90816611e-01\\n2.16834292e-01 -3.05792689e-01 1.27230242e-01 -2.03027204e-01\\n-4.04488621e-03 -2.15705097e-01 -4.27992195e-02 2.03782290e-01\\n3.03148508e-01 -2.69393295e-01 3.45122129e-01 -5.52425981e-01\\n-3.32273602e-01 -1.28439620e-01 4.46602181e-02 -4.70814295e-02\\n2.70020127e-01 -4.42331970e-01 -6.16316572e-02 2.61693984e-01\\n2.20926255e-01 -7.24283606e-02 4.53164995e-01 -3.52647364e-01\\n-1.46135271e-01 2.19739288e-01 -2.12063938e-01 2.74295628e-01\\n6.35635018e-01 4.13001627e-01 2.55390555e-01 7.77556896e-02\\n8.50488022e-02 3.01222205e-01 3.55683744e-01 -1.37768593e-03\\n-1.75281912e-02 2.23846480e-01 1.98484123e-01 -3.10332805e-01\\n-2.28675157e-01 -5.44379354e-02 -6.96867332e-02 -2.64990985e-01\\n6.73657298e-01 2.53665566e-01 -3.50987077e-01 2.72557922e-02\\n-2.66683459e-01 -3.22144479e-02 2.89377511e-01 -2.70013548e-02\\n-1.61140561e-02 2.20607728e-01 3.63089800e-01 -2.18365833e-01\\n2.04964548e-01 5.54931879e-01 -6.85661063e-02 -2.03549966e-01\\n-1.02170475e-01 4.58058923e-01 1.85431428e-02 5.09171963e-01\\n-1.37518853e-01 4.85294968e-01 2.01082140e-01 1.81182567e-02\\n3.99593189e-02 8.91623795e-02 2.59618282e-01 -5.45476004e-02\\n1.07334599e-01 1.16664067e-01 1.69964239e-01 4.43341404e-01\\n4.24933493e-01 3.48996162e-01 2.12410212e-01 1.02458283e-01\\n4.63916332e-01 4.24682081e-01 3.86896014e-01 -7.64007717e-02\\n3.15495618e-02 1.12938605e-01 7.18625486e-02 2.72038803e-02\\n3.95092964e-01 2.20636681e-01 2.81954184e-03 8.06094706e-01\\n1.77554280e-01 2.93253362e-01 5.03913224e-01 -5.92058063e-01\\n-2.45988414e-01 1.21644691e-01 5.47745109e-01 -4.31932569e-01\\n1.69809759e-01 9.15464312e-02 3.14895287e-02 2.42416263e-01\\n-3.95929664e-01 -2.71882772e-01 -2.92751677e-02 1.90630317e-01\\n2.47911438e-02 -1.86837018e-01 -1.73255861e-01 -2.92755291e-02\\n-3.48695040e-01 -2.35859185e-01 -4.07738447e-01 -1.91615343e-01\\n-4.59734797e-01 -5.05477190e-02 -1.23921081e-01 -2.37853676e-02\\n8.87342542e-03 -1.22749731e-01 1.36426240e-01 -1.30176293e-02\\n5.29761016e-01 -1.95983544e-01 -1.57551333e-01 -1.19624987e-01\\n4.61156130e-01 3.34240682e-02 5.50945640e-01 -6.39852807e-02\\n-1.90720875e-02 -1.08515240e-01 -3.37603569e-01 2.13397667e-01\\n8.72031450e-02 1.01747707e-01 1.40985668e-01 1.56786501e-01\\n-9.48741660e-02 -1.12475090e-01 3.00998241e-01 3.70730221e-01\\n-3.47086966e-01 1.16772521e-02 -9.10181180e-02 1.40649453e-03\\n-1.20296009e-01 7.01368898e-02 -3.53888631e-01 9.25394371e-02\\n-5.37006781e-02 -5.23194551e-01 3.18812668e-01 -2.67265320e-01\\n-4.32466567e-01 -2.31201109e-03 6.46194220e-01 3.10856938e-01\\n-1.22093856e-01 1.33249193e-01 -1.28152549e-01 2.94523031e-01\\n-6.17559627e-02 1.97734535e-01 -2.49595761e-01 -2.88818419e-01\\n-2.82176256e-01 1.23298079e-01 -2.38412380e-01 1.16936959e-01\\n1.29751891e-01 4.23759699e-01 1.42530710e-01 -3.55143510e-02\\n5.53594887e-01 -1.88345119e-01 -2.18416423e-01 -3.62317026e-01\\n1.07454350e-02 -3.62625390e-01 -1.28734589e-01 -4.46790792e-02\\n1.18773624e-01 -2.75301129e-01 -2.84873784e-01 -4.94203717e-01\\n-1.65761381e-01 -3.01482797e-01 -1.37003541e-01 2.47487221e-02]]',\n", + " 'job_description': '100%, Zurich, temporary The EU-funded Innovative Training Network FIDELIO (www.fidelio-project.eu) aims to train the next generation of scientists in order to tackle the challenges of diabetic bone disease from various angles and with the newest technologies available. Interdisciplinary training and implementation of innovative approaches are key. Within this consortium, we will comprehensively unravel the genetic and environmental mechanisms that contribute to bone fragility in diabetes, identify predictors and clinical markers for patient stratification, decipher the underlying molecular mechanisms of bone fragility in diabetes, and establish potential interventions through a personalised medicine approach. Project background The project will address different aspects of diabetic bone disease from the viewpoints of epidemiology, genetics, miRNAs, microbiome, bone biology, bone biomechanics and microstructure, preclinical and clinical research. It will utilise advanced imaging and computational approaches, diabetes mouse models and access to clinical cohorts and registry data to obtain a comprehensive overview of how these mechanisms combine in diabetes to cause increased fracture risk. With this interdisciplinary approach, we can explore the impact of biological pathways in mouse models and/or humans, and interactions with diet, exercise and other exposures. Collaborations with industry will allow early identification of IP, access to state of the art technologies, and will complement the academic ESR training programme with entrepreneurship and industrial mentoring. This project will be completed at the Institute for Biomechanics, which is a multidisciplinary research unit dedicated to the biomechanical investigation of the musculoskeletal system from macro (organ) to micro (cell) down to nano (molecule) with more than 100 scientists working in the Institute. Professor Müller as the Head of the Laboratory for Bone Biomechanics has pioneered microtomographic imaging (microCT) of biological tissues both in vitro and in vivo, a technology that has been commercialized as a spin-off from ETH Zurich in the mid-1990s and is now successfully used in hundreds of laboratories and companies around the globe for research and development. The research the Laboratory is currently pursuing employs state-of-the-art biomechanical testing and simulation techniques as well as novel bioimaging and visualization strategies for musculoskeletal tissues. Today, these techniques are successfully employed for the quantitative assessment and monitoring of structure function relationships in tissue regeneration, growth and adaptation. These approaches are now often used for precise phenotypic characterization of tissue response in mammalian genetics, mechanobiology as well as tissue engineering and regenerative medicine. More information about the laboratory can be found at www.bone.ethz.ch. Job description Your PhD project: You will develop novel bone imaging and computational methods for mechanobiological bone remodeling studies from bench (supercomputer) to the bedside (clinical computing) in the hospital environment. These approaches will then be used to investigate the effects of diabetes on local mechanoregulation of bone remodeling in T1D and T2D as well as appropriate controls, identifying its relationship to bone fragility, and the biomarkers, which are directly linked to this impairment in mechanoregulation. This will allow to describe alterations in the mechanobiological control of bone remodelling in T2D and identification of novel biomarkers predicting disturbed mechanoregulation in T2D patients using state-of-the-art high-resolution patient imaging and computational modeling. Secondments: You will embark on secondments to other FIDELIO partners (USFD (UK), IBM (CH)) to access experimental models or tools or receive training not available in the home laboratory. This will include training in how HRpQCT imaging is used in clinical practice in Sheffield as well as code optimization at IBM in Zurich. Total secondment time is 4 months. Benefits of working in an ITN: You will be working within our highly international group of more than twenty researchers with experience in a broad range of sciences. You will get in contact with the other members of this international consortium and will benefit from the joint training platform to develop skills necessary for developing a thorough understanding of the mechanisms of Diabetes and the bone metabolism and for obtaining industry skills. Your profile Applicants must hold a MSc or equivalent in the field of biomedical engineering, mechanical engineering, electrical engineering or a related discipline. Applicants must have a solid knowledge of computer modeling and simulation using Python. Experience with imaging and image processing is desired. Strong interest to work with human clinical data is a prerequisite. Applicants can be of any nationality. Applicants must have the ability to understand and express themselves in both written and spoken English to a level that is sufficiently high for them to derive the full benefit from the network training. Applicants must be eligible to enroll on a PhD program at the host institution. In addition: H2020 MSCA Mobility Rule: researchers must not have resided or carried out their main activity (work, studies, etc.) in the country of the host organization (Switzerland) for more than 12 months in the 3 years immediately before the recruitment date. Compulsory national service, short stays such as holidays, and time spent as part of a procedure for obtaining refugee status are not taken into account. H2020 MSCA eligibility criteria: Early Stage Researchers (ESRs) must, at the date of recruitment by the host organization, be in the first four years (full-time equivalent research experience) of their research careers and have not been awarded a doctoral degree. Full-Time Equivalent Research Experience is measured from the date when the researcher obtained the degree entitling him/her to embark on a doctorate (either in the country in which the degree was obtained or in the country in which the researcher is recruited, even if a doctorate was never started or envisaged). ETH Zurich ETH Zurich is one of the world’s leading universities specialising in science and technology. We are renowned for our excellent education, cutting-edge fundamental research and direct transfer of new knowledge into society. Over 30,000 people from more than 120 countries find our university to be a place that promotes independent thinking and an environment that inspires excellence. Located in the heart of Europe, yet forging connections all over the world, we work together to develop solutions for the global challenges of today and tomorrow. Working, teaching and research at ETH Zurich Get connected Interested? We look forward to receiving your online application. Please note that we exclusively accept applications submitted through our online application portal. Applications via email or postal services will not be considered. Planned key dates: Recruitment event in Rome: 25 November 2019 Expected start date: 1 January 2020 Further information about the Laboratory for Bone Biomechanics at the Institute of Biomechanics, ETH Zurich can be found on our website www.bone.ethz.ch. For further information on the job, please contact Dr. Caitlyn Collins, email caitlyn.collins@hest.ethz.ch (no applications).',\n", + " 'soft_skills': '[\"Research\", \"Adaptability\", \"Collaboration\", \"Planning\", \"Investigation\", \"Hospitality\", \"Innovation\", \"Teaching\"]',\n", + " 'hard_skills': '[\"Research Experiences\", \"Tooling\", \"Accessioning\", \"Molecular Mechanics\", \"Human Musculoskeletal Systems\", \"IP Access Controllers\", \"Interactivity\", \"Forging\", \"Prediction\", \"Genetics\", \"Staging\", \"Regenerative Medicine\", \"Mechanicals\", \"Industrialization\", \"Visualization\", \"Metabolism\", \"Activism\", \"Biomechanical Engineering\", \"Alterations\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Python (Programming Language)\", \"Biomechanics\", \"Levelling\", \"Multidisciplinary Research\", \"Experimentation\", \"Bones\", \"Clinical Practices\", \"DR-DOS\", \"Environmentalism\", \"Hosting\", \"Mobility\", \"Entrepreneurship\", \"Image Processing\", \"Short Message Service\", \"Library For WWW In Perl\", \"Biology\", \"Electrical Engineering\", \"Accounting\", \"High Resolution Transmission (HITRAN)\", \"Clinical Research\", \"Supercomputing\", \"Mechanical Engineering\", \"Biomedical Engineering\", \"Tissue Engineering\", \"Simulations\", \"Genetic Epidemiology\", \"Humanism\", \"Imaging\", \"Receivables\", \"Clinical Data Warehouse\", \"Macros\", \"Research And Development\", \"Phenotyping\", \"Additives\", \"Microstructure\", \"Derivatives\", \"Job Descriptions\", \"Commercialization\", \"National Lifeguard Service\", \"Advanced Imaging Technology\", \"Controllability\"]',\n", + " 'languages': \"['English', 'Bengali']\"},\n", + " {'company_id': '28',\n", + " 'job_title': 'software engineer i',\n", + " 'location': 'Winterthur',\n", + " 'industry': 'Other Retail Shops',\n", + " 'website': 'www.vistaprint.com',\n", + " 'jobdescription_embedded': '[[-1.46163195e-01 1.71113238e-01 4.66797113e-01 5.53838871e-02\\n4.20227647e-01 -1.58884525e-01 -4.16147262e-02 4.43766683e-01\\n-9.35825109e-02 -4.80728626e-01 3.88963968e-02 -3.26600105e-01\\n-1.87427670e-01 1.96273729e-01 -5.01057096e-02 3.97745907e-01\\n3.63682806e-01 1.97118402e-01 -2.38805145e-01 4.65820909e-01\\n1.01898275e-02 -1.12345316e-01 1.17634408e-01 8.16184521e-01\\n3.36386561e-01 -1.03825256e-01 -4.96122427e-02 3.22559774e-02\\n-1.65846005e-01 -1.45188764e-01 4.37692285e-01 -7.35012675e-03\\n-1.03962697e-01 -5.24176061e-01 1.44371808e-01 -1.85875632e-02\\n-1.54427648e-01 -1.48249179e-01 -4.67636101e-02 9.60435420e-02\\n-5.56345284e-01 -2.28687197e-01 -5.14186770e-02 -1.10667355e-01\\n-1.59056157e-01 -2.67110348e-01 2.05228120e-01 2.20642649e-02\\n1.77653193e-01 2.84103602e-02 -4.92379516e-01 2.39396155e-01\\n-2.77157366e-01 -2.20015064e-01 3.82644057e-01 5.54207325e-01\\n-2.84191407e-02 -3.71416450e-01 -5.92015922e-01 -3.39071721e-01\\n1.27389058e-01 -1.09641053e-01 4.38997895e-03 -4.94682044e-01\\n2.28655457e-01 -5.28914966e-02 9.05330200e-03 2.37366065e-01\\n-7.60411620e-01 -2.45650802e-02 -2.93206990e-01 -1.24452502e-01\\n-3.05722415e-01 -1.49393260e-01 -2.48755187e-01 8.40157196e-02\\n-1.03683658e-01 2.73417741e-01 9.43994820e-02 8.14713165e-02\\n-2.72129744e-01 3.92516732e-01 -7.83989653e-02 4.98235226e-01\\n2.02485204e-01 1.82302445e-01 1.61621466e-01 3.36640477e-01\\n-2.79509485e-01 4.42804456e-01 1.56671673e-01 -3.79093170e-01\\n4.20166850e-01 7.46823996e-02 4.05205667e-01 -1.57070726e-01\\n3.32912296e-01 1.48751944e-01 -3.49645942e-01 4.09971237e-01\\n2.37364724e-01 -3.21680099e-01 3.88196409e-02 -8.36503804e-02\\n1.37042284e-01 8.06037337e-04 2.34692276e-01 1.99984699e-01\\n-2.47977048e-01 4.56486583e-01 5.93315475e-02 -3.34587216e-01\\n-1.42305672e-01 -3.47569048e-01 2.10649595e-02 8.25375915e-02\\n1.12211853e-01 2.56348215e-02 1.51444256e-01 4.66127880e-02\\n2.65702397e-01 -9.77595896e-03 1.21374466e-01 7.64115214e-01\\n-1.31570399e-01 -5.20777516e-02 -2.55875498e-01 2.36056462e-01\\n7.68154636e-02 -4.45404232e-01 2.55826265e-01 1.72602445e-01\\n2.61351373e-02 -2.49825284e-01 -2.24296823e-01 3.50291431e-01\\n3.92442383e-03 -2.32758462e-01 -2.60556340e-01 2.16243207e-01\\n1.27570748e-01 -3.27882051e-01 5.85680366e-01 8.98332968e-02\\n1.99152604e-01 -6.77931234e-02 1.44166183e-02 -1.99537188e-01\\n-1.36251673e-01 2.06851996e-02 1.24417298e-01 1.70193404e-01\\n-2.26242632e-01 -2.46868432e-01 -1.54425636e-01 5.26138209e-02\\n-5.34411788e-01 1.52389854e-01 -3.67793515e-02 -7.33436495e-02\\n2.76033908e-01 -4.39808369e-02 -3.14819157e-01 2.74012685e-01\\n-1.03526771e-01 1.75809741e-01 -4.66045700e-02 5.16864955e-01\\n-1.85984403e-01 3.08557272e-01 -4.25904244e-02 2.54248492e-02\\n6.64497614e-01 1.32791340e-01 1.16279930e-01 8.52632523e-02\\n3.02793056e-01 -2.63453759e-02 9.30293649e-02 1.10445246e-01\\n-7.53877103e-01 1.70320198e-01 -1.40085248e-02 -1.12650298e-01\\n7.17276111e-02 -1.89993590e-01 1.72430262e-01 -3.34251285e-01\\n-5.46046421e-02 -1.55678064e-01 -2.32859612e-01 -2.45790005e-01\\n-2.67581999e-01 6.62603974e-03 2.78061628e-01 -4.30807233e-01\\n-2.41520762e-01 9.47662294e-02 -5.07410586e-01 -8.43483955e-02\\n5.29079139e-02 2.17538640e-01 1.56447232e-01 8.77121538e-02\\n-1.68018803e-01 -6.52917624e-01 -4.51307818e-02 -3.01991999e-01\\n-2.87665725e-01 7.08874166e-02 -3.79731297e-01 2.71716237e-01\\n1.31506249e-01 3.71458381e-02 -9.51009244e-02 1.01904616e-01\\n-2.52953410e-01 -8.76047164e-02 4.14223671e-02 -6.21991977e-02\\n2.32002690e-01 1.33734271e-01 -4.54527318e-01 4.66908604e-01\\n-1.90215588e-01 4.10596371e-01 7.26781785e-02 -8.59197617e-01\\n5.03208518e-01 3.53125066e-01 -1.18675627e-01 -3.60602021e-01\\n5.39499998e-01 -2.77513832e-01 -1.06742412e-01 8.46317261e-02\\n-3.23545635e-01 -3.45598221e-01 2.02871501e-01 -2.71659613e-01\\n-2.50056356e-01 4.37746704e-01 5.13000116e-02 1.08745754e-01\\n2.86217153e-01 -2.27608815e-01 -8.26942995e-02 9.79934335e-02\\n-5.03054745e-02 -2.11702362e-01 -5.93372941e-01 -2.58419007e-01\\n-8.99068788e-02 -4.10960943e-01 -7.77280629e-02 -4.71552610e-01\\n-7.71067441e-02 -2.96306252e-01 -1.85870215e-01 2.19923317e-01\\n3.17015290e-01 -4.84537333e-04 -1.11927852e-01 1.02281258e-01\\n-3.70614439e-01 -6.18446529e-01 1.49108283e-03 2.00701624e-01\\n3.81382674e-01 1.36111170e-01 1.65045083e-01 -8.82512704e-03\\n8.36737975e-02 6.51987672e-01 -1.68829322e-01 -2.31326655e-01\\n9.19544250e-02 2.57757783e-01 1.40662044e-01 -2.00937808e-01\\n6.87688366e-02 3.87565821e-01 -2.01467216e-01 7.36644864e-02\\n-3.51887681e-02 -1.44185379e-01 4.98791933e-01 -3.11776483e-03\\n-3.67383540e-01 -2.53393590e-01 3.01067671e-03 2.54554898e-02\\n-4.64941442e-01 -1.90199688e-01 5.13863921e-01 1.17186822e-01\\n2.14516491e-01 9.77885425e-02 7.36309290e-02 -2.10194699e-02\\n-1.56468779e-01 -4.03157949e-01 3.45855594e-01 6.27564788e-02\\n1.45954788e-02 1.47687286e-01 1.90193392e-02 -6.55214906e-01\\n-3.37130022e+00 -1.53742388e-01 1.79679394e-01 -1.78142369e-01\\n7.31970742e-02 -1.01995833e-01 8.72071832e-03 -1.63684934e-01\\n-2.66424328e-01 1.68241173e-01 -1.04883589e-01 -2.48137072e-01\\n1.77823544e-01 2.20620424e-01 1.74298391e-01 1.84748322e-01\\n3.69937956e-01 -1.47180319e-01 -1.46352232e-01 2.62711883e-01\\n-1.69852525e-01 -6.24880314e-01 2.54353166e-01 -9.83506441e-02\\n3.58698606e-01 3.42535615e-01 -2.85995305e-01 -2.38133520e-01\\n-3.06007862e-01 -9.82041955e-02 -7.30580539e-02 -2.04237938e-01\\n-1.39559716e-01 1.63379759e-01 2.65420616e-01 -1.32580370e-01\\n7.96079487e-02 -5.63761413e-01 -2.81801462e-01 -4.50056612e-01\\n2.00596407e-01 -5.28283060e-01 -3.61130573e-02 -1.87114328e-01\\n6.77348793e-01 -3.06402564e-01 -2.91271489e-02 -5.46580330e-02\\n1.65745988e-01 1.81888431e-01 2.65515834e-01 4.55128290e-02\\n-1.99648887e-01 -2.46611252e-01 -6.34835139e-02 -2.20695898e-01\\n7.48886287e-01 4.02317047e-01 -2.01095000e-01 -1.98692918e-01\\n7.29349256e-02 -2.64845848e-01 -4.19083923e-01 -1.71127707e-01\\n-3.23032886e-02 -2.44821966e-01 -6.30479753e-01 -2.84272730e-01\\n-1.00029647e-01 -7.38135725e-02 -3.74748819e-02 7.00489044e-01\\n-3.74094367e-01 -3.44807088e-01 7.15085566e-02 -5.07930636e-01\\n2.90222228e-01 -1.48662910e-01 6.23605736e-02 -2.45675027e-01\\n-1.98435098e-01 -3.80778491e-01 -8.03094953e-02 2.91951261e-02\\n-8.15168023e-02 -4.02599156e-01 7.26205185e-02 -6.39408827e-03\\n-2.52889574e-01 -4.11919296e-01 4.70370322e-01 2.63027698e-01\\n2.65995711e-01 1.27306521e-01 3.30470800e-01 -1.84424192e-01\\n2.82639563e-01 -6.17937669e-02 -5.71980402e-02 -3.91812444e-01\\n1.54819742e-01 1.07730925e-02 4.93938088e-01 -1.17999792e-01\\n-3.13853659e-02 1.99143782e-01 -2.66262680e-01 -1.70429021e-01\\n3.61303031e-01 4.81863320e-02 2.02667899e-02 -1.93663031e-01\\n2.19138905e-01 -4.41497445e-01 -1.54725328e-01 -2.18948349e-03\\n2.49586582e-01 6.89431787e-01 -2.96515785e-02 -3.57319236e-01\\n-1.59913257e-01 5.35050035e-01 -9.36878324e-02 3.26596200e-04\\n-1.77487567e-01 2.14881256e-01 -2.57017791e-01 1.80048257e-01\\n1.55093046e-02 -1.08107299e-01 -2.36510128e-01 -1.70655891e-01\\n-7.03066736e-02 3.89132828e-01 1.95733756e-01 1.37950301e-01\\n7.09804446e-02 -5.51052332e-01 -1.55699998e-01 2.28052050e-01\\n1.95938617e-01 5.32758355e-01 1.54826671e-01 -2.61534274e-01\\n-1.12840533e-01 4.63246286e-01 -5.06991446e-02 1.49419650e-01\\n-1.41825914e-01 1.77747697e-01 -5.52128434e-01 -2.98772395e-01\\n-3.89599353e-01 -2.98556477e-01 2.05212206e-01 2.46808082e-01\\n8.19016993e-02 -5.39792851e-02 -4.08087485e-03 -4.28677022e-01\\n1.97892338e-01 1.36802316e-01 1.95591718e-01 7.86393881e-02\\n-8.72688070e-02 4.94079769e-01 -6.15625978e-02 -1.92103252e-01\\n-1.84758395e-01 3.15150432e-02 -7.51470998e-02 -4.27529961e-02\\n2.30865534e-02 -5.60471535e-01 -1.78013757e-01 3.09324920e-01\\n9.01169777e-02 -2.83116668e-01 -2.71349967e-01 2.79075801e-01\\n-4.68657985e-02 -2.19806820e-01 -1.79476231e-01 -1.54685915e-01\\n3.27635050e-01 5.66460267e-02 3.60678196e-01 -4.10839409e-01\\n-9.97240841e-02 3.21704000e-02 -6.36067092e-02 5.11012793e-01\\n-1.07976757e-01 -7.88317323e-02 -2.06011221e-01 -1.02699585e-01\\n4.60814416e-01 -1.36594877e-01 -1.89562261e-01 -1.59287155e-02\\n1.04157135e-01 -2.16106862e-01 -5.71643710e-01 1.62658244e-01\\n-3.05543672e-02 -2.02070534e-01 8.04508552e-02 2.32725978e-01\\n1.10799097e-01 3.08678359e-01 -6.22317910e-01 -1.39753997e-01\\n-1.98766872e-01 -2.47482229e-02 4.02351618e-02 -4.57359940e-01\\n2.60849558e-02 -1.26307324e-01 -4.20103610e-01 1.47347718e-01\\n-2.33219087e-01 -1.93879306e-01 1.80602640e-01 3.51906307e-02\\n-3.49939108e-01 -6.79531097e-02 1.03113078e-01 2.99215704e-01\\n-1.89096361e-01 -3.52712482e-01 1.56677499e-01 -9.17764664e-01\\n2.47833848e-01 2.71572284e-02 -2.23856956e-01 9.61849540e-02\\n-9.34985206e-02 -6.63880169e-01 5.26410714e-02 -2.60578394e-01\\n-2.14202404e-01 -3.36812064e-02 -3.20480227e-01 -2.75421351e-01\\n1.55745998e-01 -8.85835439e-02 -3.56480300e-01 3.40084165e-01\\n-3.59072983e-01 3.23091328e-01 -2.36652255e-01 1.17041871e-01\\n3.43763530e-02 -2.94440836e-01 1.09596096e-01 -3.86905730e-01\\n-5.49110055e-01 -1.00202173e-01 -2.64312327e-01 -3.15054893e-01\\n-7.00882301e-02 -4.41363454e-01 -5.72110340e-02 7.11485818e-02\\n4.59392309e-01 9.05359238e-02 -1.36750177e-01 -1.15451768e-01\\n-3.40788253e-02 -3.56907278e-01 7.26398006e-02 1.02668598e-01\\n1.55519764e-03 -2.54705071e-01 2.27840379e-01 1.46333992e-01\\n2.24907130e-01 -4.68084514e-01 4.59728122e-01 -4.39875633e-01\\n-2.44068474e-01 -1.18797287e-01 7.80999884e-02 7.70549178e-02\\n4.01729137e-01 -5.99281788e-01 1.71531886e-02 3.42174232e-01\\n7.24139363e-02 1.09081909e-01 2.13860571e-01 -1.04013726e-01\\n-2.64692102e-02 3.26163828e-01 -2.27465659e-01 5.56377470e-02\\n9.00749922e-01 2.68053040e-02 3.11019216e-02 3.08011949e-01\\n6.11483008e-02 2.59050012e-01 3.72893602e-01 6.09885603e-02\\n-1.25335023e-01 1.03549264e-01 1.37769356e-01 -6.11167550e-01\\n-9.76096094e-02 6.36188984e-02 -2.06888840e-01 -3.86780292e-01\\n6.89473271e-01 3.39909434e-01 -4.51838195e-01 -1.71708256e-01\\n-9.02317464e-02 -1.39459938e-01 2.26252452e-01 -1.24724448e-01\\n3.35663930e-02 -1.58164620e-01 3.78851444e-01 -5.52224591e-02\\n1.38469979e-01 5.73289633e-01 -1.20453872e-01 -2.27971017e-01\\n-2.06403077e-01 2.23047316e-01 4.02129367e-02 5.60875833e-01\\n-2.52434790e-01 2.79964983e-01 -4.58715186e-02 -6.24481663e-02\\n-1.23097286e-01 2.23904222e-01 -2.52625085e-02 9.86318812e-02\\n2.11927369e-01 1.34724170e-01 5.92066467e-01 5.21487594e-01\\n4.42131042e-01 3.67619157e-01 3.33886266e-01 3.15799788e-02\\n5.75708389e-01 5.75531363e-01 4.01065588e-01 1.16815522e-01\\n9.56380740e-03 1.24359563e-01 1.91399425e-01 -3.76120247e-02\\n4.94591355e-01 3.97900760e-01 7.99099058e-02 8.92578602e-01\\n2.73933440e-01 2.77669877e-01 6.26147389e-01 -6.87067866e-01\\n-2.33810633e-01 1.31422445e-01 3.85027707e-01 -3.28353405e-01\\n-1.01892836e-02 2.12227732e-01 -4.30330001e-02 3.42685163e-01\\n-3.91006351e-01 -1.86587393e-01 -1.16514005e-02 2.82917321e-01\\n5.09776995e-02 -1.85549602e-01 -2.06389755e-01 6.16399758e-02\\n-8.01823437e-02 -1.70412250e-02 -4.63164508e-01 -1.30032539e-01\\n-1.70526147e-01 1.08486246e-02 -7.39396960e-02 -2.48876303e-01\\n9.26301442e-03 -3.29158694e-01 -2.75775213e-02 -1.34276748e-01\\n2.15331644e-01 -2.04877406e-01 -3.29123326e-02 -1.11108474e-01\\n3.42388928e-01 1.87776566e-01 5.76064229e-01 -5.16274944e-03\\n1.88917845e-01 -3.61513942e-01 -2.18449175e-01 1.77374214e-01\\n8.69877785e-02 1.36127338e-01 3.70997563e-02 1.12730145e-01\\n-2.65323937e-01 -8.62435400e-02 2.21350789e-01 3.35069835e-01\\n-3.31674188e-01 2.15536430e-02 -2.03343749e-01 1.09345511e-01\\n-1.65931843e-02 1.16897292e-01 -1.57763332e-01 -6.23464063e-02\\n-1.83033824e-01 -3.81931871e-01 1.95624620e-01 -7.35355169e-02\\n-1.01865284e-01 -2.95328386e-02 2.72893667e-01 1.71196148e-01\\n-2.43883163e-01 -3.51246670e-02 -8.05938989e-02 1.67694569e-01\\n1.23117037e-01 2.18069434e-01 -1.64075896e-01 -3.15004051e-01\\n-1.93215638e-01 1.01955071e-01 -1.14686944e-01 -5.29431030e-02\\n1.21237785e-01 3.54982376e-01 -8.47932398e-02 -3.24981809e-02\\n5.56366026e-01 3.49633768e-02 -2.62598097e-01 -1.38372853e-01\\n-1.42973945e-01 -2.48511657e-01 -1.18724197e-01 -1.47465661e-01\\n2.76193291e-01 -3.24781716e-01 -1.02952160e-01 -8.32249597e-02\\n6.20683730e-02 -2.88561851e-01 1.18765853e-01 -2.90831700e-02]]',\n", + " 'job_description': 'Welcome to Cimpress, the world leader in mass customization. We are audacious, innovative, and growing. Are you ready to work for one of the biggest companies in the Mass Customization industry? Cimpress is, with offices in over 20 countries and counting, a true global company. Our business successfully brings print and mass customization to the 21st century. In our team, we develop software and capabilities to make customized products available to everyone. Our products range from T-Shirts to business cards – you name it, we print it! In total, we are capable of producing over 80 million unique products. Founded in 1995, we are constantly growing and will continue to do so in the future. We are about to disrupt the entire industry, are you ready to join us and contribute? Your role will involve: As a technologist, you’ll be working in a cloud-first environment, while contributing to a series of microservices with a large focus on user interfaces. With a strong attention to detail, you are willing to develop a UI more than just make it functional. As a person with an interest in UI, you see nuances in design, such as unusual spacings, sizes, colors, and inconsistencies in different parts of the same app. As a human, you’ll be working in a fun environment where teams organize events throughout the year (Pizza lunches, Friday afternoon beers, monthly tech talks, video and board games nights), and also make connections outside the office (yes, we love the Swiss mountains). Additionally, being able to work from home and flexible work hours support the needs of ones personal life. To be a bit more specific, you will be responsible for the software development of components that are part of Fulfillment in our Mass Customization Platform. The role is part of a team of cross-functional software engineers that focus in the Fulfillment space. As such we offer business critical APIs with high traffic and focus focus on scalability and resilience as well as prototyping new features and microservices. As the platform is continuously improved, you will see and feel instantly your impact. Understanding the needs of our users and how they experience our applications is a big part of your job. Your responsibilities include everything from implementing new applications and handling data, to debugging and communicating with our users. Being in a small team, you will have a lot of freedom to make your own choices which comes with a lot of responsibility which you should feel comfortable with. About you: Micro-interactions like animations and proper colors is interesting for you. With a feeling for layout, UI composition, and which UI element to use for the job, your designs using our platform components achieve the right harmony and balance.You are able or are willing to learn developing in a cloud-first environment, and deploying and running services in the cloud (we use AWS and their offerings like CloudFront, S3, Lambda, etc.)You have an agile mindset. You are willing to innovate and explore solutions by interpreting the corporate strategy. And you’ll have persistence to stabilize, improve and monitor existing services.You have strong experience in one or more programming languages and remain open to learn new ones (the most of our code is in Node.js but we experiment frequently)Preferably, you have experience in a web framework like React, Vue or Angular (we primarily use Vue)You are able to fluently write and speak in English, and are open to work in a multi-cultural environment. We offer: All you need to get your job done: From a competitive salary to a relocation package, health insurance, above-standard pension contributions, and travel expenses.All you need to become a better technologist: Probably the most challenging and interesting environment in the mass customization and printing industry. Using state-of-the-art software engineering and deployment strategies and tools.All you need to grow: Working with exceptional technologists. And professionals across various roles and disciplines. And responsibility to grow in your team as well as with your team. Equal Opportunity Employer Cimpress is an Equal Employment Opportunity Employer. All qualified candidates will receive consideration for employment without regard to race, color, sex, national or ethnic origin, nationality, age, religion, citizenship, disability, medical condition, sexual orientation, gender identity, gender presentation, legal or preferred name, marital status, pregnancy, family structure, veteran status or any other basis protected by human rights laws or regulations. This list is not exhaustive and, in fact, in many cases we strive to do more than the law requires.',\n", + " 'soft_skills': '[\"Writing\", \"Professionalism\", \"Resilience\", \"Communications\", \"Presentations\", \"Innovation\", \"Persistence\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Tooling\", \"Human Rights Issues\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Vue.js\", \"Web Frameworks\", \"Industrialization\", \"Compositing\", \"Intelligence Data Handling\", \"Node.js\", \"Prototyping\", \"Medic\", \"Business Card Design\", \"Microservices\", \"Software Engineering\", \"React.js\", \"Learning Development\", \"Corporate Strategy\", \"Probability\", \"Cross-Functional Coordination\", \"Animations\", \"Equalization\", \"Personalization\", \"Mass Customization\", \"Scalability\", \"Receivables\", \"Humanism\", \"Angular (Web Framework)\", \"Online Focus Groups\", \"Software Development\", \"Amazon Cloudfront\", \"Coloring\", \"User Interface\", \"Debugging\"]',\n", + " 'languages': \"['English', 'English', 'Danish', 'Tibetan', 'Kuanyama']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software engineer (m/w)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.32771158e-01 3.23575675e-01 3.22079837e-01 2.11038645e-02\\n4.28447992e-01 -8.46897438e-02 -6.14280589e-02 2.52944112e-01\\n-7.71240592e-02 -4.60035145e-01 7.07489923e-02 -1.96435317e-01\\n-1.78112105e-01 -8.70894343e-02 1.49234504e-01 5.19659817e-01\\n1.30023852e-01 6.24674968e-02 -6.89474419e-02 4.44085509e-01\\n9.07824561e-02 -5.03305718e-02 -1.05173320e-01 8.01011920e-01\\n3.50438774e-01 -3.50439884e-02 -1.50030240e-01 9.87674147e-02\\n-2.45800763e-01 -3.04026783e-01 3.85356247e-01 9.66515467e-02\\n-4.94073480e-02 -4.21713650e-01 7.00240061e-02 1.49487287e-01\\n-2.98419803e-01 -5.70223527e-03 -4.43303734e-02 3.14540148e-01\\n-4.76185888e-01 -3.82286489e-01 8.77431855e-02 -8.39554518e-02\\n-2.73328215e-01 -2.70228058e-01 -1.36637434e-01 -3.58960554e-02\\n1.82698742e-01 1.38409203e-02 -6.53364897e-01 3.19564313e-01\\n-5.54208234e-02 -2.65608639e-01 2.20117152e-01 5.59088290e-01\\n2.13892773e-01 -5.63026249e-01 -2.97065943e-01 -3.22461277e-01\\n-1.21113444e-02 -7.90259987e-02 2.29474884e-02 -2.54588515e-01\\n3.62604648e-01 -3.44214551e-02 -5.50057646e-03 4.41134989e-01\\n-7.93977916e-01 -6.65304065e-02 -2.90753692e-01 1.12066105e-01\\n-3.99506778e-01 2.76150443e-02 -4.74426746e-01 -5.71803264e-02\\n-6.50339723e-02 5.21396756e-01 5.91075122e-02 -7.43939308e-03\\n-1.08375654e-01 1.97234809e-01 -1.18143134e-01 1.76221237e-01\\n3.73093277e-01 1.72580466e-01 2.82087952e-01 4.23345745e-01\\n-4.46676701e-01 3.12253535e-01 1.68932348e-01 -3.16638231e-01\\n1.36125520e-01 1.79201022e-01 6.16097927e-01 2.92444676e-01\\n-4.26084027e-02 2.34113351e-01 -1.82206258e-01 2.94912457e-01\\n1.28224760e-01 -3.22535902e-01 3.59990075e-02 -3.49719152e-02\\n-3.56369764e-02 -2.18581297e-02 3.02300155e-02 1.87007338e-01\\n-1.94472402e-01 4.12699461e-01 1.33930504e-01 -1.79334164e-01\\n-8.22932124e-02 -6.31163597e-01 -1.34373516e-01 -5.11797741e-02\\n-1.02793135e-01 2.86621451e-01 3.03357720e-01 1.34482637e-01\\n8.08005258e-02 8.93958956e-02 1.68459520e-01 9.82253253e-01\\n-7.72180706e-02 7.07321614e-02 -2.38974407e-01 2.89491653e-01\\n3.54515731e-01 -2.41681039e-01 1.44744173e-01 2.18987748e-01\\n7.72629231e-02 -1.84187219e-01 -2.27921769e-01 3.50836307e-01\\n-1.30407602e-01 -1.31864026e-01 -2.74684757e-01 2.11499538e-03\\n-2.04148084e-01 -5.28920710e-01 6.04730725e-01 1.27012849e-01\\n2.44040325e-01 -5.61796129e-02 -3.76490131e-02 -9.34772417e-02\\n-8.36838260e-02 1.74382433e-01 -3.01180724e-02 2.45826200e-01\\n-4.03422266e-01 -2.69273341e-01 -1.88620761e-01 3.08993787e-01\\n-1.59166008e-01 1.85574248e-01 -4.02123332e-02 -6.99926019e-02\\n2.64162451e-01 9.58682448e-02 -3.49406540e-01 1.60112053e-01\\n-1.32765770e-01 -3.35921764e-01 -1.21516682e-01 3.20315927e-01\\n-7.10094869e-02 1.42433047e-01 1.83020942e-02 -1.77537426e-01\\n6.77544355e-01 2.71468610e-01 2.04124644e-01 -1.80610970e-01\\n3.40131015e-01 -1.66294858e-01 2.03096256e-01 1.83016315e-01\\n-5.12547612e-01 3.44441116e-01 -2.15425417e-02 -1.65736780e-01\\n6.10829592e-02 8.30597803e-02 4.21715498e-01 -3.53513718e-01\\n1.25296591e-02 -1.66147277e-01 -3.93632889e-01 -3.87479275e-01\\n-2.07493186e-01 8.10356438e-03 4.93143469e-01 -4.30294871e-01\\n-1.18622705e-01 2.99510360e-01 -5.02010465e-01 -1.60760239e-01\\n1.81376800e-01 9.53095779e-02 1.51596904e-01 -2.62368061e-02\\n-6.15368634e-02 -6.44030929e-01 -6.08694181e-02 -5.46753109e-01\\n-5.46886444e-01 -3.70682143e-02 -3.16950917e-01 1.46724552e-01\\n1.07491381e-01 3.35342102e-02 -1.67341709e-01 5.27262464e-02\\n-3.85501444e-01 3.34403254e-02 1.71075776e-01 1.51324078e-01\\n3.25184941e-01 -6.33193851e-02 -4.03964400e-01 4.01005834e-01\\n-2.60051757e-01 5.42895257e-01 2.40626290e-01 -8.45698833e-01\\n6.58155262e-01 2.65417248e-01 -8.84738937e-02 -2.26467952e-01\\n3.50536287e-01 -4.23037708e-01 -3.59490700e-02 1.79078192e-01\\n-2.96971351e-01 -2.95722693e-01 3.29562575e-01 -1.38216436e-01\\n-3.02644074e-01 5.20400822e-01 2.39866853e-01 3.78323197e-02\\n3.38624060e-01 -2.90953726e-01 -1.45004779e-01 -1.50345871e-02\\n-1.29658982e-01 -2.41204768e-01 -3.50444943e-01 1.95962861e-01\\n-3.56839076e-02 -5.94943225e-01 -1.88304707e-01 -2.80902416e-01\\n-1.90194875e-01 -3.66979092e-01 -3.32771063e-01 4.56198812e-01\\n1.44989178e-01 1.76227644e-01 -2.90204026e-02 2.48519629e-02\\n1.12619922e-01 -6.57110274e-01 -1.48633480e-01 3.08304206e-02\\n5.71922243e-01 3.30424309e-01 6.86325654e-02 -1.22720093e-01\\n1.39883310e-01 5.43043494e-01 -3.74155372e-01 -3.88006479e-01\\n6.07419983e-02 4.47508097e-02 -1.06314711e-01 -1.88183933e-01\\n-1.92357216e-03 3.12522650e-01 -2.50745267e-01 3.42481583e-02\\n-8.66321772e-02 5.12787923e-02 2.91952789e-01 -9.81471017e-02\\n-3.59933734e-01 -1.65861428e-01 -3.71611537e-03 3.45752239e-01\\n-5.28455436e-01 -2.32274204e-01 5.20879149e-01 2.88068026e-01\\n2.03717783e-01 1.67829275e-01 2.71252394e-01 -1.05374016e-01\\n-2.67258316e-01 -1.41384318e-01 1.74634099e-01 1.85415179e-01\\n4.12994437e-02 1.64123341e-01 -8.99589211e-02 -6.76442623e-01\\n-3.22283173e+00 -1.65213332e-01 2.10589617e-01 -3.05456519e-01\\n1.78245440e-01 -1.56153724e-01 6.04089946e-02 -4.86874692e-02\\n-4.42327768e-01 -5.32054901e-02 -2.71715462e-01 -1.08623251e-01\\n-1.31011754e-01 2.37731919e-01 7.29682595e-02 2.88561374e-01\\n7.04864711e-02 -2.53304899e-01 -1.10939004e-01 4.20523256e-01\\n-8.88754725e-02 -7.15417922e-01 6.86133131e-02 9.97603387e-02\\n1.42124325e-01 1.10106796e-01 -4.12043214e-01 1.14969105e-01\\n-2.11065620e-01 -2.57921875e-01 1.03344943e-03 -2.66380727e-01\\n-1.57726526e-01 3.40127796e-01 1.37293532e-01 -2.20522806e-02\\n4.00137231e-02 -1.88013166e-01 1.08728498e-01 -5.23898363e-01\\n-1.28307998e-01 -5.89351714e-01 -2.82236058e-02 -1.30385801e-01\\n6.17146432e-01 -3.08652610e-01 2.26161167e-01 2.13282928e-01\\n5.13157509e-02 7.70782158e-02 -3.54103222e-02 7.10783387e-03\\n-4.08289820e-01 -3.61567765e-01 -1.77459400e-02 -3.37245733e-01\\n5.59190750e-01 4.33864683e-01 -1.21879302e-01 7.77162891e-03\\n1.27230659e-01 -3.23641509e-01 -3.79713744e-01 -4.83888090e-01\\n-1.65496305e-01 -2.08638564e-01 -8.43017876e-01 -5.59587121e-01\\n-2.42586046e-01 7.20592029e-03 -1.55099973e-01 6.84438050e-01\\n-3.61629784e-01 -5.16476929e-01 -1.13526331e-02 -5.55763185e-01\\n1.23817816e-01 -2.24447966e-01 1.15944289e-01 -1.74416289e-01\\n-4.46848243e-01 -4.99530137e-01 2.41874456e-01 -4.84364107e-02\\n-2.77655512e-01 -1.80772599e-02 -1.56947621e-03 -2.69827813e-01\\n-3.55094761e-01 -3.92081738e-01 4.10161167e-01 7.36151487e-02\\n3.12595636e-01 2.01257154e-01 4.60317403e-01 7.17918649e-02\\n4.48793143e-01 -6.87518939e-02 -1.12969764e-02 -4.00511712e-01\\n1.65219173e-01 -3.09082028e-02 4.92543459e-01 -2.77522236e-01\\n9.53317285e-02 2.02135533e-01 -3.03460479e-01 -1.46783972e-02\\n5.62721729e-01 -5.70466667e-02 -5.08335978e-02 -3.61850485e-02\\n2.95242935e-01 -4.48523939e-01 -2.87652642e-01 3.00116330e-01\\n1.38880499e-02 7.23209560e-01 -2.26064064e-02 -3.98977339e-01\\n-2.85103440e-01 5.28487742e-01 -1.87839031e-01 -1.44902632e-01\\n-1.54840544e-01 1.68592528e-01 -6.18593022e-02 2.46762633e-01\\n8.09662789e-03 -3.30122799e-01 -2.94705182e-01 -1.86642960e-01\\n-7.81869218e-02 1.48894340e-01 2.03733802e-01 -3.62406783e-02\\n-1.07890375e-01 -1.15412295e-01 -3.02606821e-01 1.55602947e-01\\n3.13823283e-01 3.26663554e-01 3.12385648e-01 -3.77679259e-01\\n1.92490276e-02 2.05863640e-01 -2.20341906e-01 2.63513088e-01\\n-2.88031816e-01 1.43910959e-01 -5.40859163e-01 -2.76224315e-01\\n-2.10433528e-01 -3.53873789e-01 1.37799159e-01 3.43861908e-01\\n7.62189701e-02 -8.79569561e-04 1.05259597e-01 -4.81570899e-01\\n3.82623732e-01 9.87121314e-02 1.94569826e-01 1.27861142e-01\\n1.15318671e-01 5.63545823e-01 9.30358022e-02 -1.42259330e-01\\n-2.32419685e-01 -1.69394925e-01 -3.07754338e-01 -2.50631273e-01\\n9.11021680e-02 -4.45085108e-01 -1.39545634e-01 4.57939625e-01\\n1.76461384e-01 -2.24776089e-01 -2.88547784e-01 3.30854803e-01\\n1.67811528e-01 -2.95660943e-01 -2.51585364e-01 -3.69841605e-02\\n1.53245464e-01 4.72640544e-02 2.94627070e-01 -3.74298871e-01\\n3.07159983e-02 2.87471209e-02 -1.00898251e-01 5.99937260e-01\\n2.51359552e-01 3.06058079e-02 -1.76503748e-01 -9.27447304e-02\\n6.12627447e-01 -2.84990780e-02 -6.72675371e-02 -6.86853528e-02\\n1.01782314e-01 -2.99873382e-01 -5.21072328e-01 1.84393115e-02\\n-8.41496661e-02 -2.22033516e-01 9.42429081e-02 2.07711756e-03\\n2.56550405e-02 1.71182863e-02 -4.15086061e-01 -4.49740291e-01\\n-3.87827158e-01 -1.49130672e-01 2.06654415e-01 -4.17182684e-01\\n-6.48360774e-02 5.75842038e-02 -5.84694505e-01 2.71852255e-01\\n-2.74196535e-01 4.88489531e-02 5.92570528e-02 2.48928860e-01\\n-2.78596669e-01 -7.04363436e-02 -4.91667241e-02 2.18839675e-01\\n-4.03681606e-01 -3.23717684e-01 4.06410173e-02 -8.27127457e-01\\n1.49263427e-01 1.36651859e-01 -1.86433747e-01 7.78386220e-02\\n-9.44809755e-04 -6.35998130e-01 2.09475294e-01 -4.32126313e-01\\n3.65819968e-02 1.98617931e-02 -1.50505513e-01 -3.14826429e-01\\n1.88688755e-01 -9.63194575e-03 -3.90022516e-01 4.74443167e-01\\n-5.30495942e-01 2.48197898e-01 4.78367060e-02 7.58247375e-02\\n7.92486891e-02 -3.05282891e-01 1.34887934e-01 -2.51360148e-01\\n-4.15204316e-01 -2.26260215e-01 -4.13159758e-01 -1.75755903e-01\\n4.81594466e-02 -2.33462662e-01 -9.53705311e-02 1.25544205e-01\\n3.01008493e-01 2.41857320e-01 -7.67108724e-02 -3.94017160e-01\\n1.51887000e-01 -4.74282265e-01 1.94843803e-02 -3.20908606e-01\\n-4.68999259e-02 -1.50185198e-01 1.66657001e-01 -1.71755299e-01\\n1.52233198e-01 -1.79880217e-01 6.19434059e-01 -1.81528702e-01\\n-2.86699057e-01 -1.67552620e-01 1.61399245e-02 1.50878364e-02\\n2.29463756e-01 -4.59013045e-01 9.66397859e-03 2.19766065e-01\\n1.92026109e-01 5.43899424e-02 1.46592289e-01 -4.03624251e-02\\n-2.54280157e-02 1.89142987e-01 -5.58319449e-01 1.46615669e-01\\n7.32634485e-01 4.53247577e-02 5.77360988e-02 1.56172186e-01\\n1.90630123e-01 4.52069402e-01 6.34704471e-01 -7.09303888e-04\\n-2.18145121e-02 2.65557438e-01 3.04066855e-02 -4.44260985e-01\\n-1.66460171e-01 -2.26848334e-01 -1.79455474e-01 -2.98462182e-01\\n5.66974819e-01 4.12166446e-01 -3.90005529e-01 -1.88780248e-01\\n4.69222143e-02 -5.19786105e-02 3.53922397e-01 7.64702559e-02\\n-1.09916247e-01 -3.56483981e-02 5.43048263e-01 -3.51193477e-03\\n3.80765676e-01 5.87606013e-01 -1.27567559e-01 -3.44867855e-01\\n-2.84700487e-02 2.06801474e-01 1.39937997e-01 4.05073404e-01\\n-1.56302720e-01 2.76910782e-01 4.54904847e-02 2.53554173e-02\\n-3.72206531e-02 1.59755051e-01 2.39282370e-01 3.60498242e-02\\n3.23107094e-01 1.21613434e-02 2.46318296e-01 5.43167830e-01\\n2.00530708e-01 4.31431085e-01 2.47552916e-01 1.98286504e-01\\n2.69804925e-01 6.13274693e-01 4.02387112e-01 1.08076043e-01\\n5.25225699e-02 6.28960282e-02 1.26886621e-01 -1.35727376e-01\\n3.57431263e-01 3.99179399e-01 2.13221952e-01 9.50212300e-01\\n3.08432430e-01 3.07941347e-01 7.33944535e-01 -8.28180730e-01\\n-2.83514708e-01 1.41495898e-01 6.16533101e-01 -2.06349060e-01\\n-5.76663576e-02 1.93498597e-01 -2.33924165e-01 3.13546360e-01\\n-5.31943142e-01 -2.35884562e-01 1.62740592e-02 -1.69678926e-02\\n1.29374983e-02 -6.65253475e-02 -2.17781052e-01 1.51064426e-01\\n-1.60624161e-01 -1.65527865e-01 -2.68893987e-01 -1.44846603e-01\\n-3.87791991e-01 -4.25691716e-02 -6.77338317e-02 -1.08303018e-02\\n-1.32121667e-01 -4.65577155e-01 -2.00620919e-01 4.70577888e-02\\n4.70681757e-01 -1.79116860e-01 -1.46525860e-01 -1.93146318e-01\\n4.47265571e-03 3.31226438e-01 6.28223181e-01 7.35087544e-02\\n2.03161657e-01 -1.58458531e-01 -2.39049450e-01 5.79397641e-02\\n1.89758882e-01 -8.42017028e-03 1.28200009e-01 4.24213886e-01\\n-3.13301653e-01 -8.71934667e-02 1.30094886e-01 2.69486070e-01\\n-4.57791090e-01 -1.48240566e-01 -5.81148192e-02 3.34406376e-01\\n5.97886834e-03 3.24914128e-01 -3.07897568e-01 1.81322888e-01\\n-1.66851655e-01 -5.11189997e-01 4.81978774e-01 -1.93455845e-01\\n-1.21979207e-01 2.57710814e-01 1.68983772e-01 1.21297017e-01\\n-2.46108204e-01 -3.99563946e-02 -9.20972303e-02 2.89270997e-01\\n-3.49839665e-02 4.90244478e-01 -2.02553615e-01 -1.74713135e-01\\n-3.91795903e-01 2.53912449e-01 -6.32460490e-02 1.61259428e-01\\n-2.01776400e-01 3.90940279e-01 1.61536694e-01 1.89745039e-01\\n1.84292421e-01 1.53588504e-01 -2.48056233e-01 -2.02077478e-01\\n-1.82787538e-01 -2.53081918e-01 1.07800871e-01 -3.43111269e-02\\n6.59308732e-02 -3.48187774e-01 2.88559310e-02 -2.02361494e-01\\n-2.63630450e-01 -3.82653534e-01 -1.28160104e-01 2.40338184e-02]]',\n", + " 'job_description': 'Job Informationen Your tasks: Create and deploy production-ready machine learning models, life-cycle management Evaluate and assess model quality through metrics and experiments End-to-end responsibility for socio-demographic predictions, audience expansions and interest inference Writing production code with Spark and Scala and creating advanced pipelines with Luigi Working with git on github, various services on AWS, Jira and Confluence with an agile software development culture Your profile: Deep knowledge in Scala, Java or C++ and strong skills in either Python or Bash Expertise in using Spark, Hadoop, etc. for scalable data processing and machine learning Understanding and experience in various machine learning algorithms Experience in applying machine learning and deep learning for real-world applications In-depth understanding of concepts such as algorithms, networking and internet technology Able to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala C++ JAVA Python Python Bash Englisch',\n", + " 'soft_skills': '[\"Communications\", \"Writing\"]',\n", + " 'hard_skills': '[\"Python Server Pages\", \"Luigi (Python Package)\", \"Prediction\", \"Machine Learning\", \"Project Management Life Cycle\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Pipelining\", \"Machine Learning Methods\", \"Github\", \"Agile Software Development\", \"Machine Learning Algorithms\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Deep Learning\", \"Atlassian Confluence\", \"Software Development\", \"Algorithms\", \"Production Code\", \"Git Flow\", \"JIRA Studio\", \"Java (Programming Language)\", \"Data Processing\"]',\n", + " 'languages': \"['English', 'Pashto', 'Yoruba', 'Yoruba', 'Slovak']\"},\n", + " {'company_id': '82',\n", + " 'job_title': 'big data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.nicollcurtin.com',\n", + " 'jobdescription_embedded': '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'job_description': 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " 'soft_skills': '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " 'languages': \"['English', 'Chuang', 'Afrikaans', 'Afar']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'big data developer / data engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.13305146e-01 2.71299779e-01 4.91974533e-01 1.09716458e-02\\n4.47085828e-01 -1.95972487e-01 -2.03588866e-02 3.60220253e-01\\n-9.42673013e-02 -3.77513289e-01 -4.18637991e-02 -4.08910304e-01\\n-9.84633714e-02 1.12357378e-01 1.22280851e-01 4.56036866e-01\\n1.40778139e-01 1.26479054e-02 -1.03770845e-01 3.04614544e-01\\n1.00148164e-01 -2.49326974e-02 1.52731640e-02 6.20482445e-01\\n3.63210440e-01 -2.16439203e-03 -7.98348933e-02 1.44348871e-02\\n-2.49733567e-01 -2.37261131e-01 3.99262369e-01 1.34125024e-01\\n8.96170642e-03 -2.31998995e-01 -4.29387111e-03 7.20303580e-02\\n-2.23404944e-01 -2.00437475e-02 1.16617993e-01 1.35480925e-01\\n-5.37803411e-01 -3.41495425e-01 5.23908436e-02 -1.82214547e-02\\n-3.13154399e-01 -3.01843405e-01 -1.36070222e-01 -5.25425225e-02\\n1.24665149e-01 1.03045665e-02 -5.62831342e-01 3.51507932e-01\\n-1.87235191e-01 -1.28422707e-01 1.50694147e-01 5.74551642e-01\\n1.74829625e-02 -5.70237994e-01 -4.81212765e-01 -1.64685816e-01\\n2.49783695e-01 -1.46360904e-01 -1.45981200e-02 -1.41819417e-01\\n3.39011133e-01 -6.36538342e-02 -8.46178178e-03 3.90687525e-01\\n-5.78047693e-01 -2.53164787e-02 -2.40027711e-01 4.75929007e-02\\n-3.82555753e-01 -3.90650854e-02 -2.29673445e-01 -1.25258401e-01\\n-5.75329475e-02 3.48082691e-01 8.12000707e-02 3.10836658e-02\\n-1.64628968e-01 1.44886926e-01 -2.17482954e-01 2.01885134e-01\\n3.16656262e-01 1.13514602e-01 5.47381155e-02 2.50764728e-01\\n-5.22267878e-01 5.18855274e-01 1.63402662e-01 -3.70459706e-01\\n2.22905174e-01 1.34589931e-03 4.67531174e-01 1.71392649e-01\\n5.86821102e-02 1.53170675e-01 -4.16174643e-02 2.45483622e-01\\n2.14872092e-01 -2.66842395e-01 1.20675325e-01 -1.27172038e-01\\n-1.54851675e-01 5.12567461e-02 8.48541595e-03 2.28704080e-01\\n-3.00283819e-01 2.97029346e-01 3.21345299e-01 -1.79299921e-01\\n-9.35133770e-02 -5.39048016e-01 -8.31153020e-02 -6.10525757e-02\\n-2.51586344e-02 1.50556818e-01 3.48439813e-01 9.62739661e-02\\n1.33496046e-01 1.60291836e-01 2.68686742e-01 1.01474881e+00\\n-2.84270942e-02 1.46096498e-01 -3.90315622e-01 3.60026032e-01\\n1.26150519e-01 -5.62604219e-02 1.71859011e-01 2.78561145e-01\\n8.32821801e-02 -9.84994173e-02 -3.12623531e-02 3.52494478e-01\\n-2.16796082e-02 -1.94563091e-01 -2.11960912e-01 2.13602055e-02\\n-2.47889936e-01 -2.81904697e-01 5.50401568e-01 2.14646012e-01\\n1.26954749e-01 -6.62021264e-02 -1.29778281e-01 -1.50679782e-01\\n-4.30395938e-02 3.02734673e-01 -5.67415692e-02 2.45988399e-01\\n-4.60449427e-01 -1.46553546e-01 -2.52545446e-01 2.74957210e-01\\n-1.12781286e-01 1.10714905e-01 -2.78410129e-02 -5.16946167e-02\\n3.46660942e-01 1.25801906e-01 -2.66999871e-01 1.51487648e-01\\n5.97993769e-02 -4.75971460e-01 -1.49710178e-01 1.56315744e-01\\n-1.15898274e-01 6.98791221e-02 7.48168975e-02 -3.09459805e-01\\n4.91058618e-01 1.81693867e-01 3.13660979e-01 -9.60749090e-02\\n3.06469142e-01 -1.56625375e-01 1.72300398e-01 1.22785471e-01\\n-4.49214548e-01 3.78737241e-01 -9.55578238e-02 -5.33676185e-02\\n1.56286120e-01 1.84495851e-01 3.26256573e-01 -2.85359085e-01\\n-1.29578523e-02 -6.00680485e-02 -4.10680413e-01 -4.47428077e-01\\n-1.34426355e-01 -1.22823291e-01 3.86585325e-01 -4.52493399e-01\\n-1.52417690e-01 5.24924025e-02 -5.23193538e-01 -1.52167931e-01\\n3.10555667e-01 1.54270619e-01 1.31295606e-01 1.28462106e-01\\n-2.48198017e-01 -5.11936367e-01 -7.80843124e-02 -6.02980614e-01\\n-4.47076946e-01 1.50842518e-02 -2.29011670e-01 2.35830367e-01\\n3.07386685e-02 2.42750924e-02 -2.22033635e-01 2.11346403e-01\\n-4.04158860e-01 1.13617912e-01 2.34052598e-01 2.41153821e-01\\n4.27493691e-01 -1.70521960e-02 -4.20815080e-01 4.02815014e-01\\n-1.02143064e-01 6.00399196e-01 2.71262586e-01 -9.07029569e-01\\n5.13866246e-01 1.73698276e-01 4.26884778e-02 -3.96385372e-01\\n5.03105462e-01 -4.00696278e-01 1.27559751e-01 1.50032744e-01\\n-3.91370863e-01 -3.01364779e-01 3.41295540e-01 -5.07303253e-02\\n-2.97531456e-01 6.24243796e-01 1.53920233e-01 -3.09033561e-02\\n3.13670814e-01 -3.06168228e-01 -5.60742244e-02 -1.55975044e-01\\n-4.87797856e-02 -2.63917625e-01 -3.47976118e-01 2.43340075e-01\\n-8.64481255e-02 -5.42271793e-01 -5.08048944e-02 -4.10908818e-01\\n-2.39013270e-01 -2.72896945e-01 -2.84926236e-01 4.86760825e-01\\n1.66680217e-01 7.54800886e-02 9.73448008e-02 -1.30494609e-01\\n1.77311674e-02 -5.62391043e-01 -7.54297525e-02 5.51765114e-02\\n5.61140239e-01 1.44608527e-01 6.54786378e-02 -2.31649796e-03\\n2.23099552e-02 5.39031386e-01 -4.10956413e-01 -3.43125641e-01\\n1.00078419e-01 2.31963933e-01 1.25708148e-01 -5.57438135e-02\\n5.98726720e-02 3.92250180e-01 -1.55031741e-01 8.94498751e-02\\n-1.10949486e-01 -4.54432368e-02 4.57385510e-01 2.05981061e-01\\n-2.28244752e-01 -2.07414359e-01 5.95843568e-02 2.05475599e-01\\n-4.89513785e-01 -2.72505701e-01 5.41526020e-01 2.79342741e-01\\n1.19418800e-01 3.49088430e-01 2.51636475e-01 -1.12806730e-01\\n-2.73165852e-01 -1.98048800e-01 8.74825493e-02 1.86691999e-01\\n-1.04535982e-01 2.83018053e-02 -1.86208129e-01 -5.39325118e-01\\n-3.65252757e+00 -2.08005548e-01 1.26070485e-01 -4.15266007e-01\\n8.24658573e-02 -1.68684185e-01 -2.93667037e-02 2.32942868e-02\\n-2.93749332e-01 -1.27251307e-02 -1.33001849e-01 -9.72242951e-02\\n7.73070082e-02 1.67758718e-01 8.20964798e-02 3.13106239e-01\\n7.27471039e-02 -1.76587686e-01 -1.60775974e-01 2.95252025e-01\\n-1.70411706e-01 -5.55414736e-01 2.02837929e-01 -7.44444653e-02\\n1.96581498e-01 2.17087626e-01 -2.99603999e-01 -4.23235632e-02\\n-3.14701587e-01 -3.65534306e-01 1.39938653e-01 -2.97197819e-01\\n-9.21784565e-02 3.91464502e-01 2.94737101e-01 -1.32482350e-01\\n-3.56717631e-02 -2.63281643e-01 7.04934914e-03 -4.23581213e-01\\n6.48547485e-02 -7.28055537e-01 -5.41012846e-02 -9.42880809e-02\\n7.93142974e-01 -4.87539679e-01 9.93669257e-02 1.84759960e-01\\n1.45523906e-01 1.57491520e-01 -7.30414838e-02 -6.44068792e-02\\n-1.84119090e-01 -5.67069530e-01 -1.38684139e-01 -1.71768188e-01\\n3.22775096e-01 7.19891548e-01 -1.19396448e-01 -2.15098094e-02\\n-2.16499437e-02 -3.81168753e-01 -4.65329140e-01 -4.00470793e-01\\n-3.22418481e-01 -1.28489926e-01 -6.11905932e-01 -4.34394032e-01\\n-9.88628268e-02 3.42035592e-02 -2.27694720e-01 6.91114306e-01\\n-4.33784276e-01 -5.31253040e-01 7.74545176e-03 -4.84096020e-01\\n6.79984242e-02 -3.48756343e-01 9.03712660e-02 -1.20877489e-01\\n-3.45941782e-01 -4.64170635e-01 1.19148113e-01 -5.89168333e-02\\n-1.68298379e-01 -1.94164664e-01 -3.17388177e-02 -3.21238518e-01\\n-3.04582089e-01 -3.70917231e-01 4.29767162e-01 1.23554371e-01\\n5.15813470e-01 2.19684288e-01 4.08937126e-01 1.63334861e-01\\n2.47329041e-01 -2.18658224e-01 -2.93725226e-02 -2.59396732e-01\\n1.24876603e-01 9.89315808e-02 6.50922358e-01 -2.77868241e-01\\n1.01515308e-01 -2.96281315e-02 -1.94938838e-01 8.08224664e-04\\n3.41298699e-01 6.11438639e-02 -4.42984663e-02 -1.51888222e-01\\n2.56941319e-01 -4.63480264e-01 -3.09549898e-01 1.12895831e-01\\n-8.15731511e-02 5.08352458e-01 5.27656823e-02 -4.70951200e-01\\n-2.56094068e-01 4.91847843e-01 1.01715531e-02 -3.75135601e-01\\n-2.65392184e-01 2.09401473e-01 -1.74534470e-01 1.88499153e-01\\n-7.06214607e-02 -1.78053141e-01 -2.67287612e-01 -6.77777678e-02\\n3.73926125e-02 1.65482074e-01 1.87124178e-01 1.37847781e-01\\n1.12520242e-02 -2.23989978e-01 -3.27999085e-01 1.16749704e-01\\n3.10035378e-01 4.28022772e-01 2.41112307e-01 -1.30717427e-01\\n-2.48063523e-02 2.75090992e-01 -1.50210708e-01 1.06546730e-01\\n-6.24994263e-02 -5.91805996e-03 -4.34516221e-01 -3.90198618e-01\\n-1.08423434e-01 -2.79388100e-01 7.66748637e-02 3.38957876e-01\\n2.69690365e-01 -7.35228434e-02 1.52519317e-02 -4.30815279e-01\\n4.66922045e-01 5.02883457e-02 1.38095021e-01 3.40182006e-01\\n4.49700095e-02 6.84462190e-01 -6.35357797e-02 1.40226884e-02\\n-9.70333070e-02 -1.94327787e-01 -3.19157600e-01 -1.49038956e-01\\n1.90072432e-01 -1.95983261e-01 -1.46378785e-01 6.27856016e-01\\n1.17687002e-01 -2.49051183e-01 -1.49197027e-01 3.09166759e-01\\n-1.70914792e-02 -1.49070188e-01 -2.19574019e-01 1.84826881e-01\\n2.08338365e-01 2.38857895e-01 2.61661381e-01 -3.23769122e-01\\n-9.48433653e-02 1.00538284e-01 -1.44971400e-01 4.71805334e-01\\n1.56600222e-01 2.41459265e-01 -2.06551611e-01 -3.55030149e-01\\n5.50453305e-01 -3.51539165e-01 -1.55006289e-01 -4.90157194e-02\\n3.94442072e-03 -1.47778735e-01 -5.04004180e-01 4.03541923e-02\\n-5.21468557e-02 -2.00520560e-01 2.15978026e-02 -2.16396526e-02\\n8.33084062e-02 3.84547152e-02 -5.15770078e-01 -2.88542628e-01\\n-2.60702759e-01 -1.48369931e-02 5.10231443e-02 -4.93001878e-01\\n-3.29982489e-02 -3.02623846e-02 -5.43432593e-01 3.45661134e-01\\n-3.27735990e-01 1.53753743e-01 1.13333404e-01 1.86317995e-01\\n-3.37649971e-01 -9.64356139e-02 1.93899095e-01 1.72470942e-01\\n-2.29835138e-01 -1.53695166e-01 -8.02765340e-02 -8.81084085e-01\\n2.86960900e-02 5.13215996e-02 -9.66957062e-02 7.41850361e-02\\n1.49915546e-01 -4.99045640e-01 9.03551131e-02 -2.82724231e-01\\n3.02100070e-02 1.56013723e-02 -1.00634120e-01 -4.74137306e-01\\n3.71353030e-02 2.18999982e-02 -2.60379225e-01 4.30826932e-01\\n-4.66025978e-01 2.33359188e-01 8.94829780e-02 1.00130677e-01\\n5.47605827e-02 -3.74273330e-01 2.50652790e-01 -2.11885646e-01\\n-3.65844548e-01 -1.81109101e-01 -3.59085083e-01 -3.13374281e-01\\n9.13297608e-02 -2.99694657e-01 -2.07481101e-01 8.98375213e-02\\n2.51099139e-01 9.25889686e-02 -1.69595197e-01 -1.84701845e-01\\n1.88754082e-01 -6.25259519e-01 1.44488975e-01 -1.02732494e-01\\n-1.00349590e-01 -1.95233040e-02 1.67078450e-01 -9.55920517e-02\\n-1.48834825e-01 -2.62522697e-01 5.10663211e-01 -2.05214784e-01\\n-3.48143399e-01 -7.32951537e-02 8.16920400e-02 -9.07087699e-03\\n2.72296309e-01 -3.83866102e-01 6.16234727e-04 2.76739120e-01\\n1.61880806e-01 1.30000174e-01 2.96319366e-01 -6.01133890e-02\\n-2.00290605e-02 3.18570971e-01 -3.66030157e-01 1.05685592e-01\\n8.23610842e-01 2.07408577e-01 2.04660967e-01 1.20604388e-01\\n1.71344578e-01 2.02863753e-01 5.40255308e-01 9.76890326e-02\\n-7.88517017e-03 3.61270130e-01 1.45184109e-02 -5.25092423e-01\\n-5.97347021e-02 -2.19381586e-01 -2.71693736e-01 -3.96620125e-01\\n4.66315061e-01 5.60151696e-01 -3.25137645e-01 -2.44149059e-01\\n8.44833702e-02 -2.35345028e-03 2.22055167e-01 -1.98978558e-01\\n-9.36428532e-02 -1.05284765e-01 5.73568940e-01 1.22620560e-01\\n3.13448906e-01 4.59998876e-01 -1.23825550e-01 -3.99682730e-01\\n-1.97102293e-01 1.68016449e-01 1.38428792e-01 4.00826156e-01\\n1.28055159e-02 3.66333246e-01 -1.32937580e-01 2.11188182e-01\\n-1.31251663e-03 7.89289251e-02 7.51325712e-02 1.11105815e-01\\n1.07911803e-01 2.18782902e-01 2.37698957e-01 4.43110973e-01\\n2.31017128e-01 5.05708575e-01 2.87813723e-01 9.68770385e-02\\n3.70300651e-01 5.84960878e-01 4.21933979e-01 3.30783486e-01\\n-1.12410143e-01 -4.32313979e-02 -2.53629625e-01 -4.08840459e-03\\n2.11778343e-01 3.11102808e-01 2.13676855e-01 8.34570467e-01\\n3.65178227e-01 2.41637111e-01 5.16882241e-01 -5.49507201e-01\\n-5.97806692e-01 6.35111751e-03 4.15731937e-01 -3.93595606e-01\\n-8.09651911e-02 -8.32131878e-03 -4.27165806e-01 2.44583607e-01\\n-5.68036437e-01 -1.81023479e-01 -2.99613774e-02 -9.09918621e-02\\n1.29650310e-01 -5.74795902e-02 -1.31943822e-01 1.08235471e-01\\n-1.56082094e-01 -2.67676294e-01 -3.00258964e-01 -4.74960282e-02\\n-2.60278910e-01 -2.04390153e-01 -1.01166591e-01 -8.35158899e-02\\n-3.01783625e-02 -4.63908046e-01 -2.38416076e-01 2.06503749e-01\\n4.25047249e-01 -1.53560176e-01 -1.24114506e-01 -1.18607774e-01\\n-1.02739753e-02 3.00516874e-01 5.11017084e-01 -1.82087533e-02\\n5.30131608e-02 -1.25386164e-01 -2.56912977e-01 5.13191968e-02\\n1.85028955e-01 4.51542512e-02 6.45688623e-02 3.37251216e-01\\n-2.90362537e-01 -3.98843512e-02 1.43685743e-01 2.54536450e-01\\n-4.83625442e-01 8.48775879e-02 -2.58402824e-02 2.56341249e-01\\n1.08085468e-01 2.95670122e-01 -3.30719262e-01 3.19070339e-01\\n-2.34560639e-01 -4.87091154e-01 3.89472783e-01 -2.85201997e-01\\n4.30302657e-02 5.04213758e-02 2.46148303e-01 1.47031695e-01\\n-3.04527730e-01 6.99813217e-02 3.54562625e-02 4.74824131e-01\\n-1.40869198e-03 3.03757936e-01 -4.00235504e-01 -8.44650045e-02\\n-3.05595577e-01 1.97524041e-01 -3.92276943e-02 2.26091325e-01\\n-1.41756684e-01 2.96635956e-01 1.11110128e-01 5.94221130e-02\\n2.22772390e-01 -3.89642380e-02 -1.66060984e-01 -3.34210694e-01\\n-4.55967337e-01 -1.63601011e-01 5.29720858e-02 -4.91726696e-02\\n1.25144973e-01 -3.83168548e-01 -1.58255816e-01 -1.26264945e-01\\n-1.66520447e-01 -4.05404836e-01 -8.34486336e-02 -9.39890668e-02]]',\n", + " 'job_description': 'About our client Unser Kunde gehört zu den grössten Medienunternehmen der Schweiz. Your responsibilities Developing a high-quality code base for the data pipelines Interacting with the data scientists, business analysts and IT engineers to define data needs & provide solutions Maintenance of the databases, data lakes and data pipeline orchestration Development, provisioning and monitoring of data products …room for own data / engineering projects Your profile At least one year experience in a similar data science environment Well versed in Scala and/or Java Your focus is on developing high-quality software incl. unit & integration tests You have worked with distributed computing technologies like Apache Spark You are open for new technologies and challenges Nice-to-Have: Experience with SQL und noSQL databases Experience with Python You are familiar with cloud computing services like AWS or Google Cloud Knowledge of data science concepts is a strong plus Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 2371',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Apache Spark\", \"NoSQL\", \"Nice (Unix Utility)\", \"Interactivity\", \"Azure Data Lake\", \"Data Engineering\", \"Distributed Computing\", \"Software Quality Management\", \"Integrity Testing\", \"Python (Programming Language)\", \"Data Science\", \"Google Cloud\", \"Project Engineering\", \"Data Lakes\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Cloud Computing\", \"Documentation Based Coding\"]',\n", + " 'languages': \"['English', 'Catalan', 'Telugu', 'Latvian']\"},\n", + " {'company_id': '55',\n", + " 'job_title': 'sports statistician (data collection)',\n", + " 'location': 'Bern',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[ 4.38705273e-02 2.73132533e-01 4.56359893e-01 -1.44988209e-01\\n4.08261806e-01 -2.12239057e-01 2.81246036e-01 6.04110956e-01\\n-1.47184394e-02 -2.84927487e-01 -6.02068156e-02 -2.38204107e-01\\n4.87643071e-02 5.20537868e-02 1.06575906e-01 3.43236595e-01\\n3.39041650e-01 2.20593736e-01 -1.80082634e-01 2.87429363e-01\\n2.77925283e-01 -2.69536562e-02 1.83488458e-01 5.88874280e-01\\n4.83296096e-01 1.76358491e-01 4.97343130e-02 3.45765911e-02\\n-2.69042969e-01 -4.94398683e-01 5.37498057e-01 1.40328994e-02\\n1.89861674e-02 -2.16868296e-01 5.95550351e-02 -1.62727088e-01\\n-1.58000827e-01 -2.01054767e-01 -5.50476164e-02 2.18655452e-01\\n-4.38560277e-01 -2.18989149e-01 6.21851943e-02 3.97520475e-02\\n-1.22135431e-01 -3.62955540e-01 2.42464617e-01 -1.32702619e-01\\n4.93885130e-02 7.94780161e-03 -4.32555705e-01 2.99489319e-01\\n-7.59370029e-02 -3.53152826e-02 2.70963132e-01 6.74042821e-01\\n-1.37565687e-01 -4.94898617e-01 -4.50482368e-01 -2.99889237e-01\\n-6.04718849e-02 9.77480263e-02 6.10069484e-02 -1.62161574e-01\\n3.05662870e-01 2.06026807e-01 1.83647782e-01 5.14796317e-01\\n-5.79928756e-01 -4.40597860e-03 -2.74153471e-01 -2.75246613e-02\\n-2.66782641e-01 -6.99398443e-02 -2.29532048e-01 -9.03735608e-02\\n-2.48151980e-02 3.82037103e-01 1.91615641e-01 -1.60696227e-02\\n-1.87394172e-02 1.80770576e-01 -1.26568303e-01 2.57616580e-01\\n2.85569251e-01 2.69243598e-01 6.74547628e-02 1.14812382e-01\\n-9.80143696e-02 5.30557036e-01 2.60270298e-01 -1.31377369e-01\\n2.50114352e-01 -2.38227677e-02 4.95130718e-01 -1.50450692e-01\\n9.77597982e-02 -5.47967106e-02 -1.66397333e-01 1.15807988e-01\\n2.95331925e-01 -2.49329403e-01 1.86101347e-01 8.70347172e-02\\n-1.66895270e-01 5.32183312e-02 1.01844519e-01 2.50342280e-01\\n-2.07616046e-01 6.66881621e-01 -5.52766658e-02 -2.18523160e-01\\n-3.78284268e-02 -5.62614024e-01 -2.07493320e-01 -1.54301584e-01\\n5.44785634e-02 3.16814184e-01 2.90343203e-02 2.25730464e-01\\n9.86732766e-02 -2.24364586e-02 2.55976796e-01 6.51383102e-01\\n-3.80106382e-02 6.24917597e-02 -2.06704274e-01 1.53056800e-01\\n4.22059298e-02 -2.86504149e-01 3.57810140e-01 1.69535220e-01\\n9.70258936e-02 -1.56055212e-01 -1.35600477e-01 1.62033439e-01\\n-2.21867427e-01 -2.09388062e-01 -2.61077791e-01 3.11030030e-01\\n-2.13229656e-01 -2.36813962e-01 3.21366549e-01 -3.16511691e-02\\n2.16030374e-01 -1.87161043e-01 -2.16662027e-02 -3.44369002e-02\\n-3.09002995e-02 2.71040559e-01 1.03452876e-01 -1.00479029e-01\\n-9.09725726e-02 -2.82291800e-01 -3.20498943e-01 1.32277891e-01\\n-1.37332901e-01 1.26874279e-02 -1.23584002e-01 -1.49074286e-01\\n5.31401157e-01 2.86676809e-02 -2.43145838e-01 3.19003761e-01\\n-2.03371987e-01 5.28299436e-02 -1.85650229e-01 2.56166250e-01\\n-4.96103689e-02 2.02010259e-01 -1.36892065e-01 -2.19741598e-01\\n6.99733794e-01 6.72520399e-02 3.08127198e-02 -7.88611826e-03\\n9.47203785e-02 -9.73203313e-03 1.47720307e-01 1.25371739e-01\\n-7.87160277e-01 2.75375366e-01 7.57753029e-02 7.12938160e-02\\n1.96291283e-01 -2.67030925e-01 2.31741443e-01 -3.33534092e-01\\n5.45267761e-02 -8.17096978e-02 -3.24779242e-01 -2.25765839e-01\\n-3.50039899e-02 -9.58629847e-02 3.97546858e-01 -3.14193517e-01\\n-2.11287454e-01 1.88113540e-01 -3.79242390e-01 -8.91688466e-02\\n2.91984767e-01 8.70958045e-02 1.22901306e-01 3.49673957e-01\\n-3.66513491e-01 -3.30423623e-01 1.11117028e-01 -3.04356396e-01\\n-1.62968561e-01 6.90740049e-02 -2.78150201e-01 3.05703908e-01\\n-2.71874927e-02 -4.55084536e-03 -2.88094997e-01 1.25616238e-01\\n-7.49591812e-02 3.22587267e-02 2.21579522e-01 -3.77192087e-02\\n3.06440383e-01 -1.00486949e-02 -4.19618696e-01 2.08368927e-01\\n-7.18862414e-02 4.06030238e-01 1.07705511e-01 -5.39397597e-01\\n2.65686065e-01 2.73862243e-01 -3.75272892e-02 -3.74531269e-01\\n7.17499673e-01 -2.54255056e-01 1.41135454e-01 -8.98710787e-02\\n-3.67164075e-01 -2.90924549e-01 1.55378044e-01 -2.20927373e-01\\n-2.33269483e-01 4.96159673e-01 1.00930080e-01 1.38192222e-01\\n1.79637492e-01 -5.34924529e-02 1.03264742e-01 1.62322477e-01\\n1.82689764e-02 -1.42102778e-01 -3.88056070e-01 -3.39152336e-01\\n-5.07356599e-02 -4.04557019e-01 -2.77129430e-02 -3.83376926e-01\\n-2.45349944e-01 -2.65982509e-01 1.02269952e-03 9.11585912e-02\\n3.36768627e-01 2.24642217e-01 1.42972291e-01 2.19632834e-02\\n-5.32417774e-01 -6.40655637e-01 -2.62096096e-02 1.10326611e-01\\n1.75605953e-01 2.93850332e-01 1.47453964e-01 -6.43678531e-02\\n-2.41599213e-02 6.27935529e-01 -2.61640698e-01 1.67153049e-02\\n1.50209129e-01 2.16390938e-01 6.68910071e-02 -1.43568262e-01\\n-7.73585290e-02 2.53667027e-01 -1.30450979e-01 6.86488524e-02\\n-1.72763944e-01 -6.22031577e-02 3.22849274e-01 2.48771403e-02\\n-2.85558194e-01 -2.84582794e-01 -1.66549623e-01 1.69623166e-01\\n-3.84649545e-01 -7.76232406e-02 6.28262401e-01 1.27855644e-01\\n1.11945286e-01 2.26669818e-01 3.12370300e-01 -1.32496506e-01\\n-6.21603057e-02 -1.78918764e-01 2.15633884e-01 3.46404277e-02\\n-2.60126609e-02 4.25256565e-02 -1.31724551e-01 -6.63800955e-01\\n-3.35237741e+00 3.94089241e-03 -1.90655347e-02 -2.78659552e-01\\n2.83392131e-01 -2.34904274e-01 1.11903809e-01 -8.17667544e-02\\n-3.70159537e-01 1.85634315e-01 -1.48583099e-01 -1.82908356e-01\\n3.29516709e-01 2.33326763e-01 1.62165970e-01 4.10560578e-01\\n1.63936481e-01 -4.38713849e-01 -7.24433586e-02 2.99517453e-01\\n-2.43733257e-01 -4.99371648e-01 2.56996006e-01 -4.07570302e-02\\n3.74846160e-01 4.32385713e-01 -4.09449637e-01 -2.34504104e-01\\n-3.27980012e-01 -1.91845760e-01 3.71113420e-02 -3.48924726e-01\\n-1.29161850e-01 3.08234304e-01 1.14485458e-01 -2.05970928e-01\\n2.12919772e-01 -3.99065495e-01 -8.65141153e-02 -4.32079107e-01\\n-1.83002040e-01 -5.88439584e-01 -4.51765396e-03 -1.22108489e-01\\n8.09578478e-01 -2.92220324e-01 1.70927435e-01 1.07775100e-01\\n1.30499423e-01 1.37044147e-01 6.03815308e-04 -7.04280064e-02\\n-2.29370117e-01 -8.57263133e-02 -2.58993119e-01 -1.81957081e-01\\n5.35482764e-01 7.12382197e-01 -2.02791452e-01 -9.97142270e-02\\n-4.81484756e-02 -3.66143256e-01 -2.96701193e-01 -3.18065137e-01\\n-2.69624621e-01 -2.75117338e-01 -6.51187241e-01 -4.01103884e-01\\n-3.40979956e-02 6.42073080e-02 2.78844149e-03 2.17220530e-01\\n-2.20900074e-01 -5.16051829e-01 -1.12313606e-01 -4.11276549e-01\\n1.27355501e-01 1.16373762e-01 5.01685441e-02 -4.00911756e-02\\n-1.08131677e-01 -4.55717385e-01 -1.88485794e-02 -1.21553685e-03\\n-4.24726270e-02 -2.81531602e-01 1.49938866e-01 -1.49002910e-01\\n-3.49096566e-01 -4.70078528e-01 3.67539316e-01 1.02702715e-01\\n2.61365443e-01 7.08594844e-02 1.92724988e-02 2.73975909e-01\\n2.32039481e-01 -3.10565531e-01 3.57482821e-01 -2.15800479e-01\\n5.91379255e-02 6.07032776e-02 6.36738956e-01 -2.29637161e-01\\n7.42953569e-02 7.89041296e-02 -2.71592736e-01 -8.16527084e-02\\n3.16026419e-01 -8.75024498e-02 6.39519542e-02 -4.67963785e-01\\n1.44301370e-01 -2.41084084e-01 -1.63071677e-01 -9.58846807e-02\\n1.30142823e-01 4.18790042e-01 7.99682140e-02 -2.80945361e-01\\n-1.72960386e-01 2.80723602e-01 -1.64770275e-01 -1.88303009e-01\\n-2.72102952e-01 5.21387625e-03 -2.26654649e-01 1.69191197e-01\\n3.33226696e-02 -1.54412284e-01 -2.69157380e-01 -9.17643309e-02\\n-3.19907553e-02 3.71799469e-01 2.15447754e-01 1.54115513e-01\\n-4.24734205e-02 -3.24447811e-01 9.74232554e-02 1.67904884e-01\\n2.13635474e-01 1.85468018e-01 7.50456676e-02 -2.09042162e-01\\n-5.55562302e-02 2.30805323e-01 -1.51341915e-01 2.75644809e-01\\n-2.57851124e-01 -2.42028516e-02 -3.15976024e-01 -3.06725025e-01\\n-1.99827135e-01 -2.72375524e-01 2.04533916e-02 2.08513215e-01\\n1.73182532e-01 6.92194104e-02 -1.12546325e-01 -3.77681941e-01\\n2.37114117e-01 -1.56994745e-01 1.96155325e-01 2.87954360e-01\\n7.25605562e-02 3.95985514e-01 6.98136911e-02 -1.74162716e-01\\n-1.97437182e-01 9.37227011e-02 -1.99047908e-01 -1.21802390e-01\\n-3.37855406e-02 -3.83261502e-01 -1.42372057e-01 3.28563154e-01\\n7.74642751e-02 -1.60729036e-01 -4.05632742e-02 8.01045075e-02\\n-1.11362360e-01 -3.95023704e-01 -2.26908594e-01 -1.45832030e-02\\n3.13224375e-01 1.72084332e-01 2.42211178e-01 -4.80326951e-01\\n1.58598766e-01 -8.04883093e-02 -1.22973956e-01 4.99053568e-01\\n1.55089702e-02 -2.64044821e-01 -2.41306797e-01 -2.35684603e-01\\n3.24809939e-01 -9.64755416e-02 -1.45407310e-02 2.20773652e-01\\n7.64855072e-02 -2.94836134e-01 -5.26220381e-01 -1.07270755e-01\\n-1.42327938e-02 -4.97867055e-02 1.39040574e-01 6.33183643e-02\\n-4.37221192e-02 -6.10750169e-03 -6.48360372e-01 -3.48594427e-01\\n-2.27166995e-01 2.02552542e-01 -1.38799176e-01 -4.66756523e-01\\n-1.34817481e-01 -6.15822747e-02 -5.51600158e-01 2.02852309e-01\\n-1.55952498e-01 1.17811605e-01 5.79979979e-02 -8.18227604e-02\\n-2.99324900e-01 5.91863841e-02 3.44082475e-01 1.79212868e-01\\n-1.98133111e-01 -1.82737887e-01 1.08805969e-02 -6.86638653e-01\\n1.15810119e-01 -3.13996561e-02 -2.99032647e-02 1.77029639e-01\\n3.81960645e-02 -6.42374039e-01 2.39631921e-01 -2.39837468e-01\\n-1.72412559e-01 1.08359810e-02 -1.09279051e-01 -4.04753745e-01\\n1.13779552e-01 -6.76573589e-02 -1.80980876e-01 1.73446298e-01\\n-1.91113487e-01 2.42556870e-01 -1.14922442e-01 6.56584576e-02\\n-1.54515401e-01 -3.02452147e-01 9.38630253e-02 -6.00573063e-01\\n-2.14402556e-01 1.95687503e-01 -1.92668185e-01 3.33568901e-02\\n-6.81488365e-02 -1.42357305e-01 -9.06206146e-02 1.96828097e-01\\n3.58105451e-02 -2.80771330e-02 -9.14859250e-02 -2.41824985e-02\\n-5.26962467e-02 -4.81983066e-01 -3.70847508e-02 -1.19182184e-01\\n-1.45993773e-02 -2.84433160e-02 2.34049886e-01 5.35398896e-04\\n8.73426422e-02 -4.35232639e-01 3.99468780e-01 -3.14969301e-01\\n-3.14047486e-01 1.14815690e-01 1.71864912e-01 -4.39469330e-03\\n3.34386915e-01 -1.66459501e-01 -6.93114400e-02 3.39202046e-01\\n-5.53525612e-02 2.44651064e-01 4.24346805e-01 -6.39709309e-02\\n-1.90122217e-01 2.89930493e-01 -2.36898780e-01 1.11978248e-01\\n7.55328298e-01 2.37459112e-02 1.99675292e-01 8.87129381e-02\\n-8.77536461e-03 1.75478309e-01 3.48627359e-01 -2.46440992e-02\\n-1.01478659e-01 1.58378318e-01 1.96661260e-02 -6.82040572e-01\\n-2.81806998e-02 4.96064350e-02 -3.53812397e-01 -3.32648098e-01\\n5.62490761e-01 5.08081436e-01 -2.78761685e-01 -3.09942782e-01\\n-2.80937493e-01 -3.09684128e-01 -2.14009568e-01 -4.92867865e-02\\n2.00952634e-01 -1.94507614e-01 5.23717999e-01 -2.74325092e-03\\n5.55576384e-03 4.81095552e-01 3.84747908e-02 -2.11213753e-01\\n6.30697682e-02 7.89916292e-02 -2.97353715e-02 2.83988446e-01\\n-2.38645658e-01 3.68276983e-01 -1.48915974e-02 -1.12590671e-01\\n-6.79658353e-02 4.28388454e-02 2.33645588e-02 1.34298369e-01\\n-1.76686853e-01 2.83379614e-01 3.93935531e-01 3.80995840e-01\\n4.01187629e-01 2.89426804e-01 2.35323891e-01 7.55224749e-02\\n6.00815475e-01 3.02619547e-01 3.50212187e-01 2.60290861e-01\\n-5.90539761e-02 -4.93116584e-03 1.08019762e-01 5.15892282e-02\\n3.11098814e-01 5.82069419e-02 -1.43118560e-01 7.64477313e-01\\n4.37378198e-01 1.54766694e-01 5.79186678e-01 -6.46853089e-01\\n-3.03763866e-01 -1.90125391e-01 4.42297995e-01 -3.16186190e-01\\n-8.94772559e-02 6.67326376e-02 3.76879834e-02 1.75831005e-01\\n-5.33133030e-01 -2.78022856e-01 -2.20935002e-01 1.16374858e-01\\n1.64149001e-01 -9.78576690e-02 -1.20044269e-01 -5.78674339e-02\\n-1.83457896e-01 -1.69059858e-01 -7.01300800e-01 -4.68546152e-02\\n-2.43107170e-01 -2.37365365e-01 -1.90150226e-03 -1.59700215e-01\\n-1.55088291e-01 -1.68176904e-01 -2.12183744e-01 3.97447944e-02\\n3.72415096e-01 -2.52616048e-01 1.85259245e-02 -2.60451019e-01\\n3.07233542e-01 1.02187708e-01 4.60426241e-01 -1.77461132e-01\\n6.35346621e-02 -2.56247222e-01 -1.95870534e-01 9.12894234e-02\\n3.74264419e-01 3.26761194e-02 1.50063068e-01 4.16640043e-01\\n-3.36274326e-01 -1.42636076e-01 7.63121061e-04 3.89732569e-01\\n-5.19902229e-01 1.01026252e-01 2.49903828e-01 3.01548600e-01\\n2.04409137e-01 2.41378415e-02 -2.78606981e-01 -1.19009629e-01\\n-2.16255441e-01 -4.55185413e-01 2.31536046e-01 2.00554878e-01\\n-2.28330180e-01 2.46692359e-01 2.68063664e-01 8.89910087e-02\\n-2.05821067e-01 3.80013064e-02 -1.90907285e-01 1.27047166e-01\\n1.13381661e-01 2.03032091e-01 -4.01006550e-01 -2.84712166e-01\\n-2.95141757e-01 2.80408025e-01 -1.29397750e-01 1.82448868e-02\\n4.74656299e-02 2.23844454e-01 1.84652060e-01 9.65123624e-02\\n4.96955216e-01 -1.30104348e-01 -2.36703321e-01 -1.56765699e-01\\n-1.13471210e-01 -3.30868095e-01 -2.46754829e-02 -2.13712871e-01\\n9.31640491e-02 -3.79035413e-01 -8.22609365e-02 -8.66857022e-02\\n-3.65658671e-01 -1.92139536e-01 3.97475846e-02 -1.03776036e-02]]',\n", + " 'job_description': 'Job Description Genius Sports Statisticians are responsible for attending Volleyball/Handball events in Bern/Switzerland and reporting all the action directly from the venue using our state-of-the-art Mobile Interface and short key-phrase reports. This is a great part-time position and as such, students are very welcome to apply. No prior reporting knowledge is required, full training included. Job requirements: Good knowledge of the rules of Volleyball/HandballClear and understandable spoken EnglishWillingness to travel to sports venues (driver’s license or travel card is an advantage)Availability to attend sports events, including on weekdays and/or weekends We offer attractive payment and performance-based bonus system. How to apply: Are you ready to join the Genius Sports team? Sign up today at https://www.geniussports.com/statisticians Job Type: Part-time Location: Bern, BE (Preferred) Language: English (Required) ',\n", + " 'soft_skills': '[\"Positivity\"]',\n", + " 'hard_skills': '[\"Library For WWW In Perl\", \"Component Object Model (COM)\", \"Performance-Based Budgeting\", \"Job Descriptions\", \"Licensing\", \"Mobility\"]',\n", + " 'languages': \"['English', 'South Ndebele', 'Tigrinya']\"},\n", + " {'company_id': '28',\n", + " 'job_title': 'system engineer/software architect',\n", + " 'location': 'Basel',\n", + " 'industry': 'Logistics & Supply Chain',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.64869174e-01 3.85053575e-01 3.95698398e-01 -1.61884844e-01\\n6.15215302e-01 -2.24121884e-01 -5.91625869e-02 3.05320650e-01\\n-3.99088534e-03 -2.18617037e-01 -2.53245503e-01 -2.97860265e-01\\n4.53472324e-02 1.81709051e-01 2.01436341e-01 3.89436781e-01\\n3.96493644e-01 8.56631175e-02 -8.66634697e-02 3.60118330e-01\\n4.00876701e-02 -1.21664844e-01 1.81032896e-01 7.44412422e-01\\n3.41352671e-01 7.80267045e-02 -5.35197882e-03 6.63613603e-02\\n-2.70996541e-01 -1.54536918e-01 4.56873298e-01 6.07843604e-03\\n-2.13904783e-01 -3.75642240e-01 9.52754170e-02 8.19151700e-02\\n-3.33104968e-01 -1.05021939e-01 -2.11619124e-01 1.08871780e-01\\n-6.05447412e-01 -2.44151473e-01 -6.46672994e-02 -3.44157312e-03\\n-2.19788477e-01 -3.22445333e-01 2.66956925e-01 -1.34717181e-01\\n1.05084265e-02 1.09221935e-01 -3.96043301e-01 2.95979559e-01\\n-3.82356107e-01 -2.51275003e-01 4.82658744e-01 6.57673299e-01\\n-9.13333371e-02 -4.83925939e-01 -4.63221878e-01 -2.12888658e-01\\n5.41311838e-02 -4.19691717e-03 1.83200493e-01 -3.13319266e-01\\n4.19206232e-01 1.30567953e-01 8.27354118e-02 3.52370292e-01\\n-8.50582778e-01 -1.44268572e-01 -4.30860996e-01 6.75273091e-02\\n-2.65720874e-01 -6.41506985e-02 -2.36563489e-01 -8.22180137e-02\\n-9.45638865e-02 3.57570916e-01 -1.17599651e-01 1.08995847e-01\\n-1.53086722e-01 3.83751482e-01 -2.62345254e-01 3.04271311e-01\\n1.92082971e-01 2.18198463e-01 1.69111550e-01 1.42890722e-01\\n-3.53083193e-01 5.97916961e-01 1.55008569e-01 -1.79157019e-01\\n8.07447135e-02 1.76036358e-01 3.31478059e-01 -4.66765612e-02\\n2.90754195e-02 7.35920444e-02 -2.68406361e-01 1.85877427e-01\\n1.92072868e-01 -1.01937883e-01 2.85527594e-02 -7.66294226e-02\\n-1.24147996e-01 1.22425742e-02 8.92425701e-02 1.85217977e-01\\n-5.47273159e-01 4.36079711e-01 7.77199715e-02 -2.61978745e-01\\n-8.34713355e-02 -5.07926106e-01 -1.41531095e-01 5.99541180e-02\\n-7.02264486e-04 2.98566781e-02 1.81160048e-01 2.59379894e-01\\n3.18550915e-01 -1.35945693e-01 1.46862864e-01 8.06480944e-01\\n9.84775349e-02 1.05211854e-01 -1.32412836e-01 3.33547294e-01\\n4.67183515e-02 -1.97451159e-01 1.60005704e-01 3.66002828e-01\\n1.28862590e-01 -1.46188363e-01 -3.04914415e-01 3.99531364e-01\\n-1.26547679e-01 -2.16420710e-01 -3.40201378e-01 3.18950266e-01\\n-1.77669838e-01 -5.34038186e-01 5.44754922e-01 -2.04864904e-01\\n8.33252519e-02 -7.15524778e-02 2.77477670e-02 8.65424611e-03\\n-1.66720286e-01 3.27372938e-01 1.64200827e-01 6.52088299e-02\\n-2.11612478e-01 -2.72340864e-01 -1.03342980e-01 1.66548669e-01\\n-1.79656655e-01 2.38712326e-01 -2.22866118e-01 -2.92488962e-01\\n3.78706038e-01 5.92276454e-02 -3.92481148e-01 3.49876016e-01\\n-3.56556522e-03 5.96764358e-03 -1.18122123e-01 2.11064637e-01\\n-1.73618287e-01 2.08804816e-01 -3.89121063e-02 -2.95157909e-01\\n4.56267387e-01 3.52419317e-02 6.77510276e-02 -2.87939608e-02\\n3.37804854e-01 -7.72425383e-02 2.84024358e-01 1.22891059e-02\\n-7.77082860e-01 4.29614514e-01 -7.44989365e-02 -1.27571955e-01\\n5.57463020e-02 -9.50217023e-02 5.51868618e-01 -3.72840762e-01\\n-1.35120243e-01 -1.36452764e-01 -3.92439365e-01 -3.58274937e-01\\n-4.47425731e-02 -4.52443771e-02 3.88053477e-01 -2.67103851e-01\\n-3.87561060e-02 2.38074809e-01 -6.50192320e-01 -5.25848456e-02\\n3.09077829e-01 2.49093607e-01 2.55404025e-01 1.12071022e-01\\n-2.06200540e-01 -4.63891029e-01 1.43729940e-01 -4.71947610e-01\\n-1.38347283e-01 1.32529378e-01 -1.29382327e-01 1.26609266e-01\\n-2.22080364e-03 -3.36814746e-02 4.44824360e-02 1.46396942e-02\\n-1.23858079e-01 -3.15994816e-03 2.01081857e-01 -1.10005572e-01\\n1.42837480e-01 1.40549809e-01 -4.24966693e-01 4.68867868e-01\\n-1.68038800e-01 5.10684431e-01 -3.44059095e-02 -7.29941428e-01\\n5.23388147e-01 3.18902522e-01 -3.23811285e-02 -3.07860792e-01\\n7.38788784e-01 -2.76392370e-01 -1.49994299e-01 -1.53828366e-02\\n-4.33088779e-01 -1.22067489e-01 7.73876384e-02 -2.90765792e-01\\n-2.53159910e-01 6.24037743e-01 1.99559070e-02 9.32316408e-02\\n3.68438840e-01 -1.73812270e-01 -3.31029408e-02 3.20851244e-02\\n-7.19114393e-02 -7.74137527e-02 -4.92659420e-01 -6.68328702e-02\\n5.10135526e-03 -4.33945626e-01 -2.30748653e-01 -4.20396268e-01\\n-2.82812238e-01 -2.97468126e-01 -2.56131649e-01 1.58398394e-02\\n8.18292499e-02 5.09434938e-02 6.65379763e-02 5.12356237e-02\\n-2.84336388e-01 -6.12565994e-01 6.94952682e-02 8.03545937e-02\\n1.65271237e-01 3.60740393e-01 1.67129382e-01 -7.55177513e-02\\n-7.06113279e-02 4.58339125e-01 -4.18217301e-01 -2.94527173e-01\\n1.96250424e-01 9.66379195e-02 -3.15619037e-02 -1.56910777e-01\\n1.68093279e-01 3.73768389e-01 -2.01111063e-01 1.08716480e-01\\n-9.93220285e-02 7.57577177e-03 2.93868810e-01 -4.76669408e-02\\n-1.32856071e-01 -2.60889769e-01 -1.72347307e-01 1.75716072e-01\\n-5.87861478e-01 -2.45149016e-01 4.14664984e-01 1.09393876e-02\\n9.63303298e-02 2.19649762e-01 2.84047097e-01 -7.94862211e-02\\n-1.77778155e-01 -2.40439817e-01 2.22191006e-01 1.90363795e-01\\n7.08708838e-02 1.53429896e-01 -7.78603777e-02 -5.29069424e-01\\n-3.10218287e+00 -5.58129102e-02 1.03357799e-01 -3.26296628e-01\\n3.54096204e-01 -2.39558518e-02 2.26915941e-01 -5.40596619e-02\\n-3.15092623e-01 -3.92767712e-02 -2.90794522e-01 -1.63367242e-01\\n2.30480075e-01 1.93930179e-01 1.48243576e-01 1.59528777e-01\\n-2.58781970e-03 -4.33294684e-01 1.52660251e-01 5.24591148e-01\\n-1.28309831e-01 -8.27476680e-01 1.30397454e-01 -1.83230817e-01\\n2.40069836e-01 2.13088453e-01 -6.58737123e-01 -1.18857749e-01\\n-3.60040039e-01 -1.37786567e-01 1.52859956e-01 -2.45584413e-01\\n-1.37622669e-01 3.29576164e-01 1.36215672e-01 -1.50555089e-01\\n4.98056784e-02 -3.35009784e-01 -1.69152748e-02 -5.48381209e-01\\n1.92184612e-01 -6.24221742e-01 -3.72105874e-02 5.81847429e-02\\n6.33084774e-01 -2.58349150e-01 1.88935414e-01 1.30623892e-01\\n1.35097682e-01 2.98577964e-01 1.52410135e-01 -1.82885751e-02\\n-1.71959370e-01 -1.19048126e-01 -2.68210582e-02 -1.53569644e-02\\n4.44261432e-01 4.62099880e-01 -3.61448318e-01 1.62699409e-02\\n4.60620187e-02 -4.05247808e-01 -5.26132286e-01 -2.87476301e-01\\n-2.48122662e-01 -1.38568223e-01 -7.24311471e-01 -4.96111959e-01\\n-3.33344303e-02 -1.71206892e-01 2.54723951e-02 6.56493008e-01\\n-4.13407505e-01 -3.14635247e-01 -7.71198496e-02 -5.79887748e-01\\n2.60536730e-01 -2.02371061e-01 2.08704621e-02 -2.92190611e-01\\n-3.22055221e-01 -4.83182728e-01 1.19439363e-01 4.72301953e-02\\n-4.54657301e-02 -1.78109542e-01 1.26934394e-01 -2.22605601e-01\\n-3.26693445e-01 -5.98624825e-01 4.29630369e-01 1.60852388e-01\\n3.69402468e-01 9.86623950e-03 1.63477659e-01 -7.85086975e-02\\n4.06848639e-01 -7.54683018e-02 6.21357672e-02 -4.50817645e-01\\n5.93472607e-02 -1.62284058e-02 5.21620631e-01 -2.60672867e-01\\n-1.49550915e-01 1.04440287e-01 -3.40401322e-01 -2.86476195e-01\\n3.12563896e-01 -1.30465299e-01 1.79347530e-01 -3.52041215e-01\\n3.53889555e-01 -4.55532223e-01 -1.75880164e-01 1.25415236e-01\\n8.05061962e-03 6.86295152e-01 8.41919407e-02 -2.59276092e-01\\n-1.46516755e-01 3.13674510e-01 -1.65617466e-01 -4.11972664e-02\\n-6.32287636e-02 7.07262009e-02 -2.69979864e-01 2.02941656e-01\\n1.61921289e-02 -8.37342292e-02 -2.66433775e-01 5.51495366e-02\\n-1.23632297e-01 2.99055576e-01 2.36216679e-01 1.54781818e-01\\n-8.67040753e-02 -3.73737127e-01 -7.80064240e-02 2.15084404e-01\\n1.79075584e-01 3.35984975e-01 1.45309627e-01 -3.09314609e-01\\n1.28535815e-02 3.14920515e-01 -1.50677010e-01 3.80227149e-01\\n-1.68435708e-01 1.85947269e-01 -5.19739091e-01 -1.76187962e-01\\n-3.71699125e-01 -2.43437275e-01 2.73417458e-02 2.85264105e-01\\n2.58371383e-01 -9.05599967e-02 1.15254536e-01 -3.56799275e-01\\n1.73525304e-01 1.40361665e-02 2.30654314e-01 1.06450252e-01\\n-8.76034945e-02 6.19401753e-01 9.16437134e-02 -1.60346046e-01\\n-8.11957791e-02 1.01206176e-01 -2.35478416e-01 -2.52147287e-01\\n5.66769205e-02 -4.14083928e-01 -1.13886535e-01 4.25112367e-01\\n5.61673380e-02 -1.93112701e-01 -1.59637421e-01 3.27098280e-01\\n-1.84894120e-03 -3.92847359e-01 -3.03294033e-01 -2.21551824e-02\\n2.29654267e-01 1.25985846e-01 1.97680295e-01 -5.29720068e-01\\n-5.56432158e-02 -3.09507381e-02 3.61575708e-02 3.30998093e-01\\n-1.05458364e-01 3.30092460e-02 -1.93881139e-01 -2.05017164e-01\\n3.04655671e-01 -1.72068067e-02 8.68664496e-03 4.92853858e-02\\n2.29163602e-01 -1.73291251e-01 -4.64716107e-01 -4.04726277e-04\\n2.49639153e-02 -1.37570441e-01 2.11911239e-02 1.30831659e-01\\n1.83223546e-01 -2.75280550e-02 -4.56112951e-01 -1.30765095e-01\\n-1.38897210e-01 3.09622232e-02 -1.40244052e-01 -4.85185593e-01\\n-1.96481552e-02 2.02896949e-02 -4.17062044e-01 1.82161719e-01\\n-8.98496956e-02 1.28096402e-01 2.26002440e-01 -3.26658115e-02\\n-3.50604802e-01 -1.59415588e-01 1.93929851e-01 3.61334272e-02\\n-2.10362688e-01 -2.14254454e-01 -1.02791034e-01 -1.03680825e+00\\n1.81963682e-01 -6.16208315e-02 -1.06655367e-01 1.11283967e-02\\n-6.37259856e-02 -7.02369153e-01 1.42769992e-01 -2.86494166e-01\\n-1.39925227e-01 5.99236460e-03 -2.56741971e-01 -3.73245597e-01\\n1.14952065e-02 -6.35251626e-02 -1.79310709e-01 2.43387446e-01\\n-3.60026687e-01 4.41930562e-01 7.06390664e-03 2.93569285e-02\\n-8.29066709e-02 -2.73284376e-01 2.36928090e-01 -4.39013749e-01\\n-3.40787530e-01 -2.98562199e-02 -2.37686485e-01 -1.15103215e-01\\n-1.40053183e-01 -1.10020742e-01 -6.41185194e-02 9.51182544e-02\\n2.68164366e-01 -1.27478363e-02 -2.07808599e-01 -5.04982397e-02\\n5.28881513e-02 -4.45918471e-01 3.72965038e-02 -1.00606702e-01\\n1.14969753e-01 -1.73272878e-01 2.28564546e-01 8.77075493e-02\\n2.81192243e-01 -4.47528571e-01 4.69597995e-01 -3.74232948e-01\\n-4.39734519e-01 -7.40870237e-02 2.08053589e-01 7.31749311e-02\\n4.34737772e-01 -3.92874777e-01 8.22049975e-02 3.56143713e-01\\n4.37377058e-02 -5.81468735e-03 3.13059866e-01 -1.39606193e-01\\n-2.09762782e-01 1.45497918e-01 -4.49504554e-01 1.08726665e-01\\n7.89816141e-01 2.99680710e-01 2.82287389e-01 1.85462162e-01\\n1.23873249e-01 4.04777288e-01 5.20825744e-01 -4.22151685e-02\\n-1.24668598e-01 3.50881815e-01 2.29308069e-01 -6.10896289e-01\\n-1.61099806e-01 4.07935120e-02 -1.40354365e-01 -2.85620183e-01\\n6.68745577e-01 2.88180947e-01 -3.49370867e-01 -3.70124459e-01\\n-2.29484722e-01 -2.92282224e-01 1.56134516e-01 -1.34401217e-01\\n1.25667095e-01 -2.16266870e-01 5.15216768e-01 1.62349381e-02\\n2.22525224e-01 4.94136363e-01 -1.57527685e-01 -3.62082392e-01\\n8.90139788e-02 2.26670638e-01 2.89467089e-02 3.33144486e-01\\n1.31345615e-02 2.53248215e-01 -9.44105238e-02 1.42196327e-01\\n-1.79708287e-01 -4.01127599e-02 7.81216472e-02 1.13371328e-01\\n-1.05264276e-01 2.57087946e-01 4.92445052e-01 5.02087653e-01\\n3.32474619e-01 4.09037828e-01 3.27697307e-01 -3.98795074e-03\\n5.62847078e-01 5.27502716e-01 2.77374029e-01 1.98822003e-02\\n7.75445066e-03 1.99449122e-01 8.45867693e-02 1.12875961e-01\\n3.48146170e-01 2.99708575e-01 -8.01035091e-02 9.13007677e-01\\n2.43047848e-01 3.33194256e-01 8.28952014e-01 -4.13228244e-01\\n-3.09947014e-01 -3.22558545e-02 4.20696974e-01 -4.85693008e-01\\n2.77587678e-02 -7.54766911e-03 -2.14435207e-03 3.35576653e-01\\n-4.44394112e-01 -1.83571145e-01 -4.64693010e-02 1.59309685e-01\\n1.45616844e-01 -7.73130953e-02 -1.16337933e-01 -5.96936345e-02\\n-1.50155544e-01 -2.88177818e-01 -3.99875462e-01 -2.65676320e-01\\n-2.33817756e-01 -1.99081659e-01 -8.64056572e-02 -4.39577959e-02\\n-5.14082126e-02 -2.40841359e-01 -9.57730412e-02 -1.85979102e-02\\n3.49329472e-01 -1.90309569e-01 -1.31881639e-01 -4.64469902e-02\\n4.34023410e-01 1.60156414e-01 5.81016898e-01 -7.90044367e-02\\n7.26955235e-02 -2.00763360e-01 -1.63430825e-01 7.98969269e-02\\n1.11910231e-01 2.61330128e-01 1.38127565e-01 5.79676390e-01\\n-4.06571746e-01 -1.02163278e-01 4.65744510e-02 4.24302071e-01\\n-3.26603949e-01 -5.71843013e-02 -9.17769447e-02 1.57940418e-01\\n2.15246826e-02 -7.51311565e-03 -1.85659185e-01 -5.03535606e-02\\n-2.21029043e-01 -5.38043976e-01 1.90183327e-01 -7.21130893e-02\\n-3.12439770e-01 8.88086408e-02 4.27280396e-01 3.52957428e-01\\n-1.02815576e-01 3.88366506e-02 3.70280370e-02 1.80198997e-01\\n1.38774306e-01 4.15342003e-01 -2.25425199e-01 -2.85303235e-01\\n-2.75012374e-01 3.11040431e-01 -2.29119837e-01 7.44015127e-02\\n-6.29992187e-02 3.18455935e-01 -1.79302618e-02 9.87311900e-02\\n3.27856779e-01 -2.93308645e-01 -2.58288264e-01 -3.64117146e-01\\n-1.35806084e-01 -1.82923838e-01 9.42546800e-02 -5.10848388e-02\\n2.10453928e-01 -3.90390009e-01 -1.33788094e-01 -2.21708432e-01\\n-1.25293210e-01 -2.46062875e-01 -7.01899156e-02 7.41070230e-03]]',\n", + " 'job_description': 'System Engineer/Software Architect - Basel Jocelyn Blackham is recruiting for a System Engineer/Software Architect to join a company in the Medical Device industry at their site based in Basel on a contract basis for 12 months, with the possibility of extension. This role will sit in the Packaging and Device Development (PDD) department focusing on the development of software as medical device (SaMD) projects using state-of-the-art system engineering practices. This highly interactive role will work with cross-functional teams and support various development activities including system conceptualization, system requirement definition, risk assessment, system verification and clinical validation. The main purpose of the role will be to: Design and implement system engineering approach to support the development and life cycle management of complex products and platforms in the areas of connected drug delivery devices, digital technologies, and SaMD. Demonstrate strong technical know-how at system level and guide the development team to use structured system engineering approach for product development. Utilize the system engineering tool for requirement management and translate user and business needs into system/sub-system requirements. Actively maintain and monitor the traceability from the requirements to the verification activities. Further responsibilities will include: Be the representative of system engineering for the communications with cross-divisional teams, programs, and stakeholders. Author relevant design history files and GMP compliant documentations. In order to be considered for this role, you will be required to have the following qualifications, skills and experience:- Experience with Cloud and IoT architecture and technologies for complex systems. Experience with research, prototypes and PoC activities. Bachelor or more advanced degrees in Biomedical Engineering, Systems Engineering, Electrical Engineering, Computer Science, or other relevant disciplines. Prior experience covering the medical device or SaMD development from concept to commercial launch. Well-versed in medical device or SaMD development, Quality Management System, and regulatory processes (ISO 13485; IEC 60601, 62304, 82304). This is an excellent opportunity to join a leading medical device and pharmaceutical industry. For more information or to apply for this position, please contact Jocelyn Blackham on 0041 (0) 782 516 595 or email jblackham@ckqls.ch. Please could you send any correspondence in English. Please quote reference 46936 in all correspondence.',\n", + " 'soft_skills': '[\"Communications\", \"Research\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Systems Implementations\", \"System Requirements\", \"Systems Engineering\", \"Interactivity\", \"Computer Science\", \"Requirements Management\", \"Project Management Life Cycle\", \"Industrialization\", \"Medical Device Development\", \"Activism\", \"Maintainability\", \"Prototyping\", \"Levelling\", \"Translations\", \"Quality Management Systems\", \"Traceability\", \"Flood Risk Assessments\", \"Conceptualization\", \"Medical Devices\", \"Digital Technology\", \"Electrical Engineering\", \"Management Systems\", \"Biomedical Engineering\", \"Cross-Functional Team Leadership\", \"Validations\", \"Structural Systems\", \"Pharmaceuticals\", \"Dose Verification Systems\", \"Language Experience Approach\", \"Functional Skills Qualification\", \"IEC 60601\", \"Commercialization\", \"Agile Product Development\", \"Quality Management\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '27',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Banks & Building Societies',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.03804046e-01 3.90768409e-01 4.67769086e-01 -8.77881497e-02\\n4.87570196e-01 -7.82477483e-02 4.64432091e-02 2.35845342e-01\\n-3.25662307e-02 -4.09615815e-01 -2.12051362e-01 -1.85173452e-01\\n-3.37314159e-02 2.85892887e-03 8.85701180e-02 3.81983519e-01\\n4.20859516e-01 5.20653501e-02 -1.77889988e-01 2.62596428e-01\\n-2.63112150e-02 -4.84103486e-02 8.93685222e-02 7.05695868e-01\\n3.66484374e-01 -4.07317001e-03 -3.99812683e-02 1.14762597e-02\\n-1.80528551e-01 -2.61936098e-01 4.66465175e-01 -1.29114725e-02\\n-1.05974756e-01 -2.18961939e-01 1.30097687e-01 1.13381878e-01\\n-2.33863339e-01 6.26446605e-02 -1.02193907e-01 8.27504918e-02\\n-4.65156496e-01 -2.15260744e-01 4.61863503e-02 1.69673450e-02\\n-2.73656785e-01 -3.25701177e-01 1.41076788e-01 -9.91059318e-02\\n8.86920840e-02 3.25927138e-02 -3.59828532e-01 3.10147762e-01\\n-3.49230528e-01 -2.51716435e-01 3.94583434e-01 6.66098475e-01\\n6.72818422e-02 -4.92215574e-01 -5.22410512e-01 -2.89230585e-01\\n1.19727992e-01 -1.04853883e-01 7.54880682e-02 -2.38034174e-01\\n3.79000843e-01 -3.68774086e-02 -4.54715006e-02 3.40090334e-01\\n-8.06410789e-01 -5.71128950e-02 -3.42003316e-01 -3.79882194e-03\\n-3.69161308e-01 -9.07453969e-02 -3.28373104e-01 -2.37304121e-01\\n-3.78980525e-02 3.99585336e-01 -3.97136770e-02 7.42971301e-02\\n-2.37833411e-01 3.79690588e-01 -3.01380932e-01 2.51185834e-01\\n2.31715769e-01 2.17698529e-01 3.94593537e-01 2.69670486e-01\\n-4.36338782e-01 4.71198261e-01 3.81378710e-01 -4.01021689e-01\\n2.99861073e-01 7.16661960e-02 2.94071645e-01 1.21090993e-01\\n4.55599129e-02 2.07176715e-01 -4.13994640e-02 1.90927461e-01\\n1.63995117e-01 -6.48481101e-02 -2.65146792e-01 -8.46652389e-02\\n-6.79937154e-02 -6.19099960e-02 5.88375144e-02 2.03558311e-01\\n-3.80781233e-01 3.19268405e-01 1.02467567e-01 -3.65109324e-01\\n-1.19307436e-01 -4.81050342e-01 -1.25744179e-01 2.14220621e-02\\n-1.81125551e-01 8.63118023e-02 1.42853677e-01 2.58707881e-01\\n2.07280636e-01 5.52942790e-03 1.49121359e-01 8.42240810e-01\\n-7.94274062e-02 -1.53379310e-02 -2.76485652e-01 3.84893417e-01\\n1.92834020e-01 -2.95513868e-01 1.66953534e-01 2.49384388e-01\\n-1.41898528e-01 -5.93110956e-02 -2.90096939e-01 4.11847413e-01\\n-1.56909823e-02 -1.91932783e-01 -3.28270495e-01 1.57402813e-01\\n-1.80526137e-01 -4.60175455e-01 5.44894278e-01 -3.37428227e-02\\n1.36734962e-01 -3.38697694e-02 5.79121411e-02 -4.10552025e-02\\n-2.21429914e-01 2.58652300e-01 7.20810443e-02 1.28949702e-01\\n-3.42869103e-01 -1.81787699e-01 -1.25452325e-01 3.38497758e-01\\n-1.09896198e-01 2.09553558e-02 -3.38218451e-01 -1.56369090e-01\\n3.00506532e-01 1.03319228e-01 -3.89633536e-01 2.20915735e-01\\n7.37515092e-03 -1.26083091e-01 -1.28226817e-01 3.30436647e-01\\n-9.45730135e-02 1.55070588e-01 -1.45876808e-02 -9.98046845e-02\\n5.83147407e-01 1.13250047e-01 2.33511329e-01 -1.48835555e-01\\n2.55569845e-01 -1.52248889e-01 1.66610152e-01 6.39637411e-02\\n-5.83862901e-01 3.85710686e-01 -1.21061869e-01 2.62319148e-02\\n4.04232070e-02 -1.21016111e-02 2.68036485e-01 -3.26909959e-01\\n-3.89732793e-02 -2.43426889e-01 -3.64712715e-01 -4.16114688e-01\\n-2.31771350e-01 5.16521670e-02 3.14480543e-01 -4.93528724e-01\\n-3.38866264e-02 2.29032874e-01 -6.23656154e-01 -1.13938093e-01\\n2.31761351e-01 2.02805042e-01 5.63333184e-02 1.31169736e-01\\n-1.32118374e-01 -5.36988318e-01 1.87922508e-01 -4.68224108e-01\\n-3.71509492e-01 1.66688889e-01 -2.32319504e-01 1.73263445e-01\\n1.28264099e-01 -3.09862308e-02 -8.89402330e-02 8.46490860e-02\\n-3.74169827e-01 -4.25389297e-02 1.57298416e-01 3.41132544e-02\\n2.00495511e-01 9.53207090e-02 -3.70331585e-01 5.56046605e-01\\n-1.88224792e-01 2.79402107e-01 1.86127856e-01 -1.11399782e+00\\n4.68504429e-01 3.13605785e-01 5.44302762e-02 -3.44051838e-01\\n5.39809585e-01 -3.31697047e-01 -6.30915090e-02 1.32269770e-01\\n-3.40196490e-01 -2.20591009e-01 2.78031409e-01 -1.85036287e-01\\n-2.89583206e-01 5.84917307e-01 4.77691926e-02 6.45212829e-02\\n3.20092380e-01 -2.39338607e-01 -1.98462546e-01 1.41741522e-02\\n-2.01178432e-01 -1.00232869e-01 -5.33763230e-01 -5.23728207e-02\\n-5.50117418e-02 -5.54126143e-01 -2.14222640e-01 -6.14199102e-01\\n-2.14566529e-01 -3.56247604e-01 -2.63777196e-01 2.28898674e-01\\n1.29156232e-01 1.51986346e-01 -1.00486219e-01 2.60264780e-02\\n-1.07011676e-01 -6.38307750e-01 -7.32773319e-02 1.18817471e-01\\n3.27738136e-01 3.04416984e-01 3.80399115e-02 -6.35404363e-02\\n-7.20551834e-02 4.86990243e-01 -2.95677304e-01 -2.85945177e-01\\n2.74363995e-01 1.24624133e-01 -5.15035093e-02 -1.30820215e-01\\n7.80715942e-02 3.36906612e-01 -2.40326658e-01 -3.75703238e-02\\n5.10542020e-02 -9.25578270e-03 3.81516725e-01 8.74746591e-03\\n-3.02216709e-01 -1.89894408e-01 -5.15234210e-02 2.64405489e-01\\n-5.87001085e-01 -2.12707072e-01 6.60117388e-01 2.66089380e-01\\n6.90679625e-03 2.57129878e-01 2.88240254e-01 -6.67196661e-02\\n-2.29125023e-01 -1.44214928e-01 2.58206844e-01 1.17328785e-01\\n1.82096273e-01 4.88546379e-02 -1.67807341e-01 -5.59000731e-01\\n-3.50456190e+00 -2.27051646e-01 2.08202973e-01 -3.04246664e-01\\n2.53372312e-01 -1.08278304e-01 1.91876993e-01 -4.90713157e-02\\n-2.64295340e-01 -2.56928876e-02 -1.29935309e-01 -1.25814736e-01\\n1.74039871e-01 2.99989998e-01 1.39695248e-02 2.43258417e-01\\n1.36782706e-01 -1.53154761e-01 2.03970186e-02 3.56555462e-01\\n-4.52529266e-02 -7.84795880e-01 1.62590116e-01 -3.57159898e-02\\n1.62149251e-01 1.74659938e-02 -4.31057900e-01 -6.35004044e-02\\n-2.95321792e-01 -2.20802099e-01 1.23770088e-01 -1.49104103e-01\\n-1.79627061e-01 2.00907424e-01 1.39965430e-01 -1.98137999e-01\\n4.84757535e-02 -2.97858715e-01 -6.63966835e-02 -5.24165630e-01\\n2.49262959e-01 -6.58757210e-01 9.06176046e-02 -4.34906930e-02\\n6.34322166e-01 -2.73911119e-01 1.93695098e-01 1.28422379e-01\\n1.93415821e-01 1.77321672e-01 1.49514958e-01 -3.03439610e-03\\n-3.35032463e-01 -3.42313588e-01 -1.05996579e-02 -1.00922011e-01\\n6.47520006e-01 2.78520614e-01 -2.39458829e-01 5.25724776e-02\\n-2.13818606e-02 -2.53913909e-01 -4.61148381e-01 -2.76440054e-01\\n-1.60496026e-01 -4.53968756e-02 -6.99442148e-01 -4.07145858e-01\\n-1.35753185e-01 -1.81316569e-01 -8.11915696e-02 7.43607044e-01\\n-2.19896764e-01 -3.91651213e-01 -1.13684237e-01 -5.66930830e-01\\n1.81098491e-01 -1.69850588e-01 2.75039431e-02 -2.53439754e-01\\n-2.56627977e-01 -3.89817357e-01 1.37756169e-01 9.64485481e-03\\n-1.76757276e-01 -5.65620176e-02 7.32280761e-02 -1.33123338e-01\\n-3.41263175e-01 -4.70330536e-01 4.47685182e-01 7.75322318e-02\\n3.83713365e-01 7.77238309e-02 3.09280843e-01 -3.14922258e-02\\n2.94075549e-01 -6.97753802e-02 -1.73235089e-02 -4.73299772e-01\\n1.25298530e-01 6.32203296e-02 5.97068727e-01 -2.41783768e-01\\n5.08673787e-02 1.72237828e-01 -1.30143434e-01 -1.05525434e-01\\n4.89634752e-01 3.22905257e-02 7.00303391e-02 -2.34990343e-01\\n2.50719965e-01 -5.09002507e-01 -2.58920729e-01 9.37308669e-02\\n4.22939211e-02 6.29909635e-01 -5.00193983e-02 -4.46703672e-01\\n-1.96332157e-01 4.14849043e-01 -5.90387657e-02 -1.45725369e-01\\n-2.64161825e-01 1.03701666e-01 -3.24410617e-01 2.13341534e-01\\n2.78311111e-02 -1.16578788e-01 -2.89350361e-01 -5.92018887e-02\\n-6.37676120e-02 2.14282051e-01 2.73974359e-01 1.53323740e-01\\n1.56883597e-02 -2.90722519e-01 -1.04385540e-02 8.78996402e-02\\n1.78481176e-01 4.22182024e-01 2.35109508e-01 -3.15822065e-01\\n-2.09998339e-02 2.70354152e-01 -2.64137089e-01 2.48385996e-01\\n-1.10622399e-01 6.13665693e-02 -4.60509717e-01 -2.24325269e-01\\n-1.94375932e-01 -3.43253702e-01 8.35158154e-02 3.38662028e-01\\n9.61739048e-02 -1.31071836e-01 -4.18518633e-02 -4.87964720e-01\\n3.29023242e-01 5.29233217e-02 2.60018945e-01 1.50793836e-01\\n5.82220033e-04 6.98550224e-01 3.17230541e-03 -2.35252410e-01\\n-4.26415615e-02 7.78964832e-02 -1.29145354e-01 -2.12308973e-01\\n2.01781467e-03 -5.06595016e-01 -6.14632294e-02 4.72236097e-01\\n1.43387616e-02 -2.06427887e-01 -1.83539301e-01 2.93051451e-01\\n-9.07769054e-03 -2.36076578e-01 -1.40851036e-01 3.21042836e-02\\n1.79151565e-01 1.20031558e-01 3.02308261e-01 -4.28472728e-01\\n-7.28138238e-02 1.57823786e-03 2.21211221e-02 4.42300737e-01\\n1.62282705e-01 1.87535763e-01 4.70180344e-03 -1.40022159e-01\\n4.52322900e-01 8.20135102e-02 -1.98109269e-01 -4.35945429e-02\\n9.77521837e-02 -2.22388268e-01 -4.59461898e-01 2.02564411e-02\\n-1.06711335e-01 -1.54663831e-01 7.07870796e-02 5.52929752e-03\\n1.57346129e-01 8.51361528e-02 -5.52490473e-01 -2.43216082e-01\\n-3.75035822e-01 3.76921259e-02 -8.24845433e-02 -6.22166872e-01\\n6.61400482e-02 -3.46626900e-03 -6.24173701e-01 2.93617368e-01\\n-9.53998864e-02 4.07506339e-03 1.08901881e-01 1.39287218e-01\\n-2.57879496e-01 -1.73907652e-01 1.76795453e-01 1.44949555e-01\\n-2.68176168e-01 -2.57146358e-01 5.49259484e-02 -9.39684093e-01\\n2.83430904e-01 1.42679606e-02 -1.52050465e-01 9.51161385e-02\\n2.79563963e-02 -7.10500598e-01 2.55846113e-01 -4.01708126e-01\\n-1.25617549e-01 8.61931518e-02 -2.53956288e-01 -4.20040190e-01\\n4.53875512e-02 -5.81300855e-02 -3.03170592e-01 3.82353485e-01\\n-4.74330693e-01 4.81081545e-01 5.73964864e-02 1.20966241e-01\\n1.90057248e-01 -1.97504357e-01 2.67975479e-02 -3.06911439e-01\\n-4.97036368e-01 -2.75405288e-01 -2.02862799e-01 -3.59575391e-01\\n-2.62710303e-02 -2.78152287e-01 -2.02199370e-01 1.38330394e-02\\n3.32245708e-01 1.58109933e-01 -1.46111727e-01 -2.12831154e-01\\n-3.04572470e-03 -3.13678443e-01 1.74370408e-01 -2.02957094e-01\\n4.02330384e-02 -1.44340038e-01 3.06579709e-01 5.06446101e-02\\n1.30468190e-01 -3.69112730e-01 4.75309312e-01 -1.63741708e-01\\n-3.38913560e-01 -1.41455650e-01 8.39800090e-02 7.56729767e-02\\n3.14627945e-01 -5.91121078e-01 6.94257468e-02 3.47659469e-01\\n2.90944055e-02 8.04835185e-02 2.68158376e-01 -1.39273971e-01\\n-1.10903807e-01 1.40584588e-01 -5.01240313e-01 2.18151540e-01\\n6.66464090e-01 7.49852508e-02 1.95262119e-01 1.86863691e-01\\n2.01701790e-01 3.20096374e-01 5.13015330e-01 6.13382570e-02\\n-1.42312437e-01 3.26856196e-01 7.44533837e-02 -5.75528502e-01\\n-1.50138080e-01 -9.12020504e-02 -1.70393273e-01 -3.46687496e-01\\n6.51755333e-01 3.66033256e-01 -3.54396939e-01 -3.06159616e-01\\n-2.12369904e-01 -2.11850137e-01 3.04177284e-01 -6.47637695e-02\\n9.48208123e-02 -1.31843403e-01 5.69609165e-01 -4.61567119e-02\\n3.49865377e-01 5.45184851e-01 -2.07545966e-01 -3.22709620e-01\\n-3.56575176e-02 1.85333088e-01 3.63333151e-02 3.61937046e-01\\n-5.57535924e-02 2.15400964e-01 4.50925007e-02 1.95634782e-01\\n-1.57729372e-01 -1.79023705e-02 1.77537173e-01 5.44928163e-02\\n1.21926248e-01 4.00297269e-02 5.35466194e-01 4.90870714e-01\\n2.53744483e-01 4.85611647e-01 2.95513093e-01 7.86431059e-02\\n4.61681604e-01 7.16442108e-01 3.73337686e-01 4.58531976e-02\\n4.86913733e-02 1.07038990e-01 1.14339441e-01 -2.03900598e-03\\n2.95529544e-01 4.59290028e-01 1.14118382e-01 8.28918219e-01\\n3.50034237e-01 2.63442695e-01 7.43815720e-01 -6.84027612e-01\\n-3.18231404e-01 3.24992016e-02 4.80759114e-01 -3.47550154e-01\\n5.37812598e-02 1.76892847e-01 -3.14115793e-01 2.13397101e-01\\n-4.35995698e-01 -9.89361480e-02 -4.85197008e-02 -7.37838596e-02\\n9.04889777e-02 -1.53131485e-01 -1.23386778e-01 4.04317081e-02\\n-9.11652222e-02 -2.25712687e-01 -3.18940163e-01 -1.54745772e-01\\n-3.53496075e-01 -3.01715732e-03 -7.69090094e-03 -1.21485524e-01\\n-7.78919086e-02 -3.67699444e-01 -1.52253151e-01 -3.00908461e-04\\n2.89667517e-01 -9.51254964e-02 -1.77729085e-01 -1.30902007e-01\\n1.68675929e-01 2.60561228e-01 7.08278000e-01 4.87506390e-02\\n7.11908042e-02 -4.17976305e-02 -2.15041518e-01 7.63209462e-02\\n1.35584325e-01 9.81297344e-02 2.62277992e-03 5.09274065e-01\\n-2.51530170e-01 -8.81310180e-02 9.35409218e-02 3.21951330e-01\\n-3.35471511e-01 5.32840490e-02 -8.02944526e-02 1.86750114e-01\\n5.06229475e-02 1.79993495e-01 -2.25691020e-01 9.54378843e-02\\n-5.42874001e-02 -5.05900621e-01 4.70868051e-01 -1.25084698e-01\\n-1.71430796e-01 4.48656976e-02 1.56392992e-01 3.96338940e-01\\n-2.43341744e-01 -7.82990232e-02 -1.14482857e-01 1.52971774e-01\\n9.15328860e-02 4.52844322e-01 -2.54536510e-01 -1.00404203e-01\\n-2.80676812e-01 1.80780619e-01 -2.11960450e-02 1.34971946e-01\\n-7.15983436e-02 3.56249154e-01 1.07109055e-01 1.15570664e-01\\n2.51057893e-01 -2.60895379e-02 -2.25229293e-01 -2.30285615e-01\\n-2.43377358e-01 -1.18941270e-01 2.58340891e-02 -6.87678605e-02\\n3.26687604e-01 -2.70393074e-01 -1.15278289e-02 -1.90212190e-01\\n-2.16400623e-01 -4.26365733e-01 -1.54515609e-01 -4.96382965e-03]]',\n", + " 'job_description': 'As a Software Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, software design and development activities for the Bank’s existing and new applications. You will be responsible for providing the design, development, configuration and maintenance for changes on existing systems and also for introducing new applications and interfaces with other systems. You will be developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Work with experienced engineers to design and develop new modules and/or applications Undertake the technical ownership of Cembra Money Bank’s Applications Integrate with the existing applications portfolio as well as third parties’ software Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 5+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Knowledge of messaging systems, Java applications servers (WAS, JBoss, Tomcat) and relational databases and also working experience with common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " 'hard_skills': '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Executable\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"Operating Systems\", \"Java Application Server\", \"Application Portfolio Management\", \"Finance\", \"Personalization\", \"Production Support\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Modulation\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Custom Backend\", \"Apache Tomcat\"]',\n", + " 'languages': \"['English', 'French', 'Kongo']\"},\n", + " {'company_id': '122',\n", + " 'job_title': 'software support engineer (fr, ch, be, lu)',\n", + " 'location': 'Bern',\n", + " 'industry': 'Internet',\n", + " 'website': 'www.therefore.ca',\n", + " 'jobdescription_embedded': '[[-1.55777916e-01 2.44646162e-01 4.60761309e-01 1.32202441e-02\\n4.27852601e-01 -1.70495957e-01 1.49829969e-01 5.15513301e-01\\n1.98983215e-02 -4.21885222e-01 -5.19852787e-02 -1.41450763e-01\\n1.08371019e-01 1.40827313e-01 1.48692399e-01 3.20744693e-01\\n3.37379754e-01 2.18882591e-01 -2.77064741e-01 3.16944510e-01\\n3.65652815e-02 -2.18486264e-01 2.15076670e-01 7.29440093e-01\\n6.40528560e-01 7.72121176e-02 -5.76715507e-02 -3.02792974e-02\\n-1.67261645e-01 -3.08670282e-01 4.98694271e-01 -1.90470859e-01\\n-9.24927066e-04 -3.46925765e-01 1.92726374e-01 -2.18261052e-02\\n-1.82223916e-01 3.87611613e-02 -1.66576579e-01 -3.89696360e-02\\n-4.63668555e-01 4.78723273e-03 5.43792062e-02 1.40126795e-01\\n-2.63701022e-01 -3.98818225e-01 1.68714151e-01 -4.79045734e-02\\n2.40668774e-01 -7.78185055e-02 -4.32403386e-01 3.02379876e-01\\n-2.62874901e-01 -2.03442186e-01 3.62532794e-01 5.97161591e-01\\n-1.76009998e-01 -5.24223149e-01 -5.56016505e-01 -3.70052040e-01\\n4.12188135e-02 -8.10416564e-02 8.10493007e-02 -3.66510540e-01\\n3.36701870e-01 6.52503967e-03 7.20869824e-02 3.67358863e-01\\n-7.79127002e-01 -8.71852040e-02 -1.78243116e-01 -1.46569267e-01\\n-2.85961360e-01 -1.05965897e-01 -4.65223610e-01 -7.05951080e-02\\n-2.32167542e-01 3.36989522e-01 4.43681702e-02 4.25488763e-02\\n-2.23287359e-01 2.80868798e-01 -2.96769202e-01 4.03848410e-01\\n1.30317986e-01 3.12463105e-01 2.91959375e-01 2.84992367e-01\\n-2.61566848e-01 5.34558535e-01 1.81289077e-01 -2.77079493e-01\\n1.66980848e-01 1.19555704e-01 4.82461423e-01 -1.65927008e-01\\n3.44761342e-01 1.19609637e-02 -3.46580416e-01 2.62116760e-01\\n3.64019126e-01 -3.76346886e-01 -3.39216925e-02 -7.04857260e-02\\n-1.32716056e-02 7.15230405e-02 9.77599844e-02 2.36990616e-01\\n-3.20370823e-01 5.10214806e-01 1.58937022e-01 -2.10255235e-01\\n-1.02614038e-01 -4.79490072e-01 -1.45123899e-01 7.68300071e-02\\n7.35836104e-02 1.55027568e-01 1.18624493e-01 1.56649068e-01\\n2.95725495e-01 -8.91818255e-02 9.39065441e-02 7.83210695e-01\\n-1.21435538e-01 3.67878787e-02 -2.77181089e-01 2.90609628e-01\\n-5.53212650e-02 -4.45692509e-01 3.42103273e-01 8.21334049e-02\\n1.09309316e-01 -4.55162600e-02 -2.49884859e-01 3.15673292e-01\\n-1.30174115e-01 -2.27295280e-01 -3.23884636e-01 2.65941143e-01\\n-1.08012825e-01 -4.24779177e-01 5.74313223e-01 -8.70489515e-03\\n1.31414920e-01 -1.04726419e-01 6.94150403e-02 -1.41446337e-01\\n-7.21814409e-02 1.80480897e-01 1.58814654e-01 6.09865785e-02\\n-2.93721616e-01 -2.93014526e-01 -1.77519724e-01 4.01413217e-02\\n-3.79075408e-01 1.30171672e-01 -1.41121343e-01 -1.07364096e-01\\n3.29733223e-01 -4.92025241e-02 -2.35559657e-01 2.83330590e-01\\n-1.79927528e-01 1.65434480e-01 -7.16299191e-02 3.83954763e-01\\n-2.21877679e-01 3.96518528e-01 -4.04499136e-02 9.56663340e-02\\n6.76679969e-01 9.93323475e-02 7.84072801e-02 -8.71284753e-02\\n2.86113024e-01 5.39272353e-02 1.49278075e-01 4.50444929e-02\\n-7.23957002e-01 4.47063148e-01 -7.98003282e-03 -1.87707260e-01\\n1.24477893e-01 -1.92692965e-01 3.01498324e-01 -4.46159989e-01\\n-8.75811726e-02 -1.12040214e-01 -3.15513253e-01 -2.74277508e-01\\n-2.56920695e-01 -7.10819215e-02 4.11121547e-01 -4.47752416e-01\\n1.60519369e-02 1.90174103e-01 -4.91433293e-01 6.23355061e-02\\n1.83634341e-01 1.73873201e-01 1.19613163e-01 2.14902118e-01\\n-2.48103291e-01 -4.85935003e-01 1.87821820e-01 -3.13208580e-01\\n-1.64551258e-01 1.92917556e-01 -3.24072659e-01 1.91968501e-01\\n8.72255862e-02 -5.17328503e-03 -1.52181029e-01 1.59750775e-01\\n-1.28285363e-01 -3.60016674e-02 9.75285321e-02 6.58773333e-02\\n3.50631207e-01 1.59893259e-01 -4.56033826e-01 4.60074633e-01\\n-7.83750042e-02 4.95820582e-01 6.93663582e-02 -7.54754424e-01\\n3.71111035e-01 3.22362959e-01 5.26960082e-02 -2.76920617e-01\\n6.20774567e-01 -1.62459254e-01 -1.61150321e-01 8.09434056e-02\\n-4.92908686e-01 -3.82737219e-01 1.28633529e-01 -2.28127003e-01\\n-2.61436075e-01 4.18014884e-01 -6.89997971e-02 1.16534978e-01\\n9.93123576e-02 -1.32335052e-02 -5.01167476e-02 1.54149041e-01\\n1.28883839e-01 -1.08230852e-01 -5.53067982e-01 -1.90396294e-01\\n-5.46686091e-02 -3.42771769e-01 -1.40139028e-01 -4.82705384e-01\\n-2.11515889e-01 -2.57839590e-01 -1.76500842e-01 4.25553881e-02\\n2.25386217e-01 1.30591661e-01 7.48763010e-02 9.63162184e-02\\n-2.84399331e-01 -5.51806331e-01 1.71523262e-02 7.57191181e-02\\n2.82134533e-01 2.98980474e-01 9.19542238e-02 1.69313755e-02\\n-3.56942862e-02 7.07063138e-01 -2.29328528e-01 -5.53242490e-02\\n2.03005031e-01 1.49062023e-01 2.66597904e-02 -1.86680034e-01\\n1.18516393e-01 3.93120736e-01 -3.58069867e-01 -5.33777997e-02\\n-9.80035663e-02 -6.69718534e-02 3.41944665e-01 -1.09312292e-02\\n-3.38619858e-01 -2.53083736e-01 -1.36584237e-01 6.18402436e-02\\n-4.44429427e-01 -2.75446624e-01 6.13491178e-01 4.17287499e-02\\n2.40862787e-01 2.02856824e-01 3.04710090e-01 -8.37553367e-02\\n-1.77283898e-01 -2.67449945e-01 1.79336831e-01 1.16035186e-01\\n7.55361766e-02 1.15386561e-01 -8.34488273e-02 -7.06578851e-01\\n-3.31819034e+00 -6.64388435e-03 2.91053116e-01 -3.70115995e-01\\n3.91724676e-01 -1.13145083e-01 1.25320762e-01 -1.43452451e-01\\n-2.81581104e-01 4.65349779e-02 -2.23548323e-01 -1.46493226e-01\\n1.81097135e-01 1.53515056e-01 1.24589272e-01 2.07910448e-01\\n3.20061833e-01 -3.00651908e-01 2.08528601e-02 2.67527580e-01\\n-1.64164424e-01 -5.96459210e-01 2.74880916e-01 2.54488699e-02\\n3.91146839e-01 4.34081852e-01 -3.92175347e-01 -2.18711540e-01\\n-2.81554222e-01 -1.12926178e-01 1.14689030e-01 -2.67343819e-01\\n-1.31848052e-01 2.82149166e-01 1.95411175e-01 -1.98850214e-01\\n1.46193847e-01 -3.91227722e-01 -5.32448851e-02 -3.58703583e-01\\n4.53238338e-02 -5.53824663e-01 -5.09958304e-02 -4.89958078e-02\\n8.69408965e-01 -3.34439516e-01 1.59568086e-01 -1.84388142e-02\\n1.95699498e-01 1.67088166e-01 2.35443395e-02 3.06046177e-02\\n-2.15773329e-01 -1.02752969e-01 -3.46387923e-02 -1.98693335e-01\\n5.75735152e-01 5.06339610e-01 -2.65325695e-01 -1.45466030e-01\\n-8.04520212e-04 -3.09237987e-01 -4.00573015e-01 -1.62762254e-01\\n-2.57487655e-01 -2.56285340e-01 -5.18521130e-01 -4.43848372e-01\\n-1.59129262e-01 -4.00832780e-02 -1.99822243e-02 4.50307041e-01\\n-2.09728003e-01 -3.36250663e-01 -7.73774385e-02 -4.79032636e-01\\n2.31154710e-01 -5.00294520e-03 9.85561237e-02 -2.74619281e-01\\n-1.27426758e-01 -4.41160530e-01 -2.29107887e-02 -4.33109999e-02\\n-9.38500911e-02 -2.79728144e-01 1.26884878e-01 1.51579414e-04\\n-3.05372208e-01 -5.14321208e-01 2.46081099e-01 1.27358735e-01\\n2.56379098e-01 8.40839818e-02 1.76730305e-01 -1.35128302e-02\\n2.33873323e-01 -2.12859794e-01 1.71754435e-01 -4.98271942e-01\\n8.14767629e-02 4.70817871e-02 5.67152262e-01 -1.35044113e-01\\n6.92816675e-02 1.29755944e-01 -2.07630634e-01 -1.19482920e-01\\n3.08001459e-01 1.24092596e-02 3.69739011e-02 -3.37594122e-01\\n2.31122687e-01 -1.89400643e-01 -2.33733818e-01 -7.61996508e-02\\n-3.76102068e-02 5.62368810e-01 3.59796025e-02 -2.86713272e-01\\n-4.68286872e-02 5.41302800e-01 -1.53587937e-01 2.15905026e-01\\n-2.00532809e-01 9.34032425e-02 -2.57418185e-01 1.53681025e-01\\n1.56245120e-02 -1.88835934e-01 -1.49758384e-01 -1.50384843e-01\\n-7.31983781e-02 4.02921557e-01 2.54822731e-01 1.78068131e-01\\n-2.16893032e-02 -5.01081169e-01 -7.49811307e-02 3.08025658e-01\\n7.27852359e-02 4.48885173e-01 -4.23470214e-02 -2.97585338e-01\\n1.10528171e-02 3.36962700e-01 -2.39874691e-01 2.35921398e-01\\n-2.65145659e-01 9.48325843e-02 -5.37121594e-01 -2.13374361e-01\\n-2.14532122e-01 -4.38523293e-01 1.13080211e-01 3.19716394e-01\\n2.64240764e-02 1.57901719e-01 -8.22614655e-02 -3.63574862e-01\\n2.15572625e-01 -3.27014588e-02 1.50314197e-01 3.02456945e-01\\n-4.57534939e-02 4.17071640e-01 -5.65754138e-02 -1.14566550e-01\\n-2.57182539e-01 2.87781686e-01 -1.01788752e-01 -8.15691613e-03\\n1.08806804e-01 -4.32945341e-01 -1.36645526e-01 3.26870590e-01\\n1.92701399e-01 -1.35639012e-01 -1.28477708e-01 1.24875575e-01\\n-9.70412977e-03 -4.50688183e-01 -3.02522779e-01 1.02883670e-02\\n2.98259795e-01 1.17870353e-01 3.37139219e-01 -5.24307489e-01\\n4.03249413e-02 -8.33124667e-02 -1.41711771e-01 4.25192684e-01\\n-2.02756926e-01 2.70504020e-02 -2.26189762e-01 -2.41214797e-01\\n3.72215450e-01 -1.98244564e-02 5.24469502e-02 1.36542097e-01\\n1.26975745e-01 -2.62327373e-01 -4.93684709e-01 1.25261396e-02\\n-4.42339554e-02 -1.16371989e-01 1.23740032e-01 5.96065857e-02\\n-2.50907764e-02 1.08942844e-01 -6.14572883e-01 -1.61966547e-01\\n-2.83434957e-01 2.62255725e-02 -1.36890439e-02 -4.45676088e-01\\n-1.26759961e-01 -1.28122633e-02 -5.03574610e-01 1.92078292e-01\\n-3.51851374e-01 -9.50949863e-02 1.92498401e-01 -7.75506198e-02\\n-3.94652456e-01 -5.88098280e-02 1.32708848e-01 3.25075686e-01\\n-2.16178328e-01 -2.56074458e-01 -4.48262095e-02 -1.04825044e+00\\n2.23646924e-01 -4.47032489e-02 -1.12437055e-01 2.18818843e-01\\n-7.57814199e-02 -7.27118194e-01 1.66086838e-01 -3.01929563e-01\\n-1.63327247e-01 -8.22161883e-02 -1.47352353e-01 -3.61699909e-01\\n1.25090152e-01 2.70729717e-02 -3.36827517e-01 4.17273849e-01\\n-2.03751162e-01 3.06239635e-01 -7.81369954e-02 6.93842024e-02\\n-2.05008313e-01 -2.36555949e-01 1.15896314e-02 -5.73920071e-01\\n-3.03102940e-01 -1.06991373e-01 -2.37361118e-01 -5.74391149e-02\\n-4.24181037e-02 -3.32903117e-01 -8.05178806e-02 2.41500959e-01\\n4.12768304e-01 8.00553709e-03 -1.37136742e-01 -1.83592498e-01\\n2.04979572e-02 -5.49830973e-01 1.41527683e-01 6.76143095e-02\\n-1.28784686e-01 -1.08879484e-01 1.25018701e-01 1.90895230e-01\\n2.66824007e-01 -5.18946528e-01 3.33700031e-01 -3.24654847e-01\\n-4.04191017e-01 3.90954539e-02 2.19617561e-02 -1.05853610e-01\\n4.59242731e-01 -4.79619920e-01 -1.35602862e-01 4.42796022e-01\\n-2.06907652e-02 3.99441943e-02 2.27149636e-01 -1.42135382e-01\\n-1.28183886e-01 2.92446405e-01 -3.81958455e-01 1.46428850e-02\\n7.60540307e-01 1.55388281e-01 1.34212554e-01 1.55132055e-01\\n1.12253889e-01 3.49402755e-01 4.53990459e-01 -7.37201124e-02\\n-1.64760038e-01 3.39403957e-01 -5.71803190e-03 -6.35221541e-01\\n6.55890852e-02 -3.38497534e-02 -3.86990964e-01 -3.71794730e-01\\n6.82123899e-01 4.21101063e-01 -3.60324889e-01 -3.31207067e-01\\n-1.79230854e-01 -2.74212420e-01 1.46484263e-02 -1.17420331e-02\\n5.49856164e-02 -1.70786843e-01 4.64682698e-01 3.66226397e-02\\n1.17425151e-01 5.31530619e-01 -2.17245281e-01 -3.52364182e-01\\n8.84826295e-03 1.54161260e-01 -1.40242547e-01 5.53890407e-01\\n-2.64476389e-01 2.39670157e-01 3.24540841e-03 5.39631806e-02\\n-7.47219771e-02 1.94921255e-01 4.07316200e-02 1.50618702e-01\\n8.86686817e-02 1.67923704e-01 5.28612316e-01 5.21264851e-01\\n3.28501701e-01 4.34492826e-01 3.73809934e-01 -1.23514532e-04\\n5.52590311e-01 4.20426518e-01 4.59228516e-01 1.43709615e-01\\n3.12787555e-02 6.66666776e-02 1.78284287e-01 1.77383535e-02\\n3.86749476e-01 2.68428862e-01 -4.57613207e-02 8.96503031e-01\\n3.72031540e-01 2.09202200e-01 7.44310558e-01 -6.89597189e-01\\n-3.14958423e-01 -6.47929609e-02 4.33343500e-01 -4.82031107e-01\\n-7.06584007e-02 1.27265796e-01 -1.46234989e-01 2.52761006e-01\\n-4.41855252e-01 -4.05184239e-01 -8.39511901e-02 1.60894424e-01\\n-6.51107803e-02 -1.99470833e-01 -1.78317010e-01 -1.27511984e-02\\n-9.79640335e-02 -2.02443972e-01 -5.55700779e-01 -2.58728545e-02\\n-2.66039640e-01 -6.32944405e-02 -1.34583980e-01 -2.58409679e-01\\n-8.22316632e-02 -3.11412454e-01 1.36025976e-02 2.52741780e-02\\n9.96530280e-02 -3.64415608e-02 2.55640410e-02 -1.50882259e-01\\n4.68516022e-01 1.21745020e-01 5.10959148e-01 7.68714249e-02\\n4.14141640e-02 -1.89197019e-01 -1.78109229e-01 2.05753505e-01\\n2.35390767e-01 2.13140510e-02 1.84690788e-01 3.14052165e-01\\n-3.71250272e-01 -3.62805367e-01 5.86790480e-02 4.36567366e-01\\n-5.66225111e-01 -4.04161736e-02 1.71136066e-01 1.73994452e-01\\n1.04999550e-01 8.50558504e-02 -4.57604080e-02 -4.41071503e-02\\n-4.89096902e-02 -3.45571965e-01 2.17098668e-01 1.17173679e-01\\n-1.77350566e-01 5.97769842e-02 1.52673811e-01 2.05181032e-01\\n-1.87648162e-01 -3.07280328e-02 -1.53537810e-01 9.31175277e-02\\n9.87549946e-02 2.27448732e-01 -1.28859013e-01 -3.07745695e-01\\n-2.20803484e-01 8.82185027e-02 -3.15490365e-01 9.08235535e-02\\n-4.25345311e-03 1.89366877e-01 -6.74795285e-02 9.47511792e-02\\n4.62229013e-01 -5.05791269e-02 -1.77264571e-01 -2.50555009e-01\\n-8.83811340e-02 -2.04137564e-01 -3.02797519e-02 -1.70584708e-01\\n2.22457200e-01 -3.67062181e-01 -1.06782697e-01 -1.57961607e-01\\n-1.35396391e-01 -2.68211633e-01 1.30593717e-01 -6.25805035e-02]]',\n", + " 'job_description': \"The Profile: We're looking for a motivated person that loves challenges and the satisfaction that comes along with not only finding a solution, but helping out our customers along the way. The ideal candidate should bring a number of the following qualifications to the table: Bachelor's degree in computer science, engineering, math, or the physical sciences. Communicate effectively in person, on the phone, and electronically while maintaining professionalism. Think with a clear mind and develop clever and useful solutions. Excellent knowledge of Microsoft server and client software. Knowledge of database technology. Knowledge of scripting and SQL is a plus. Intelligence, motivation, and a team player attitude. Native French and fluent English speaking, German is a bonus. The Job:Main responsibilities include: Provide support via phone, web, and email to our resellers and customers. Consult and develop effective relationships with our reseller's technical support staff. Support and advise our reseller’s technical staff in designing the most efficient architecture for complex projects Test Therefore software Assist with creating resources such as Knowledge Base articles This is a home-based contractor position with up to 30% travelling required. As the main goal of this role is to provide support for the French speaking countries, the ideal candidate must be located in France, Belgium or Switzerland. The Rewards: A challenging and diversified job in an internationally oriented, rapidly growing company. A flexible work environment with the freedom to work from anywhere with an internet connection. Technical training and a competitive salary. An international, highly motivated and creative team to support you every step of the way. If these tasks sound like something you would enjoy, we want to hear from you! We look forward to receiving your application at career@therefore.net.\",\n", + " 'soft_skills': '[\"Professionalism\", \"Communications\", \"Creativity\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"Projective Tests\", \"Internet Connection Sharing\", \"Knowledge Base\", \"Advising\", \"Resourcing\", \"Electronics\", \"Scripting\", \"Personalization\", \"Microsoft Servers\", \"Maintainability\", \"Computer Science\", \"Knowledge Management Software\", \"Therapeutic Support Staff\", \"SQL (Programming Language)\", \"Physical Science\", \"Technical Training\", \"Receivables\", \"Technical Support\"]',\n", + " 'languages': \"['English', 'Tswana', 'Church Slavonic', 'Slovenian']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data analyst',\n", + " 'location': 'Saint-Saphorin',\n", + " 'industry': 'Industrial Manufacturing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.78203219e-01 4.10573363e-01 4.10321146e-01 1.62926480e-01\\n6.37564957e-01 -1.82331160e-01 -1.96976494e-02 6.03502728e-02\\n-5.61458431e-02 -2.84735233e-01 -1.58002272e-01 -3.46834332e-01\\n-1.93006232e-01 1.97205082e-01 1.73208825e-02 5.19698143e-01\\n1.69379979e-01 5.34561425e-02 5.66546768e-02 3.60202432e-01\\n4.63851467e-02 -2.11752445e-01 -2.43558854e-01 5.47986507e-01\\n4.20476973e-01 -8.22397023e-02 -1.00505307e-01 1.23134471e-01\\n-3.57691407e-01 -2.44689330e-01 4.74438757e-01 1.50713861e-01\\n-2.43558213e-01 -3.37382227e-01 -2.00163331e-02 2.05043972e-01\\n-2.12776780e-01 -7.56097306e-03 -1.41988114e-01 2.56536394e-01\\n-5.75274527e-01 -1.97023094e-01 -1.34034595e-02 8.61775205e-02\\n-2.63921738e-01 -3.27835262e-01 -1.81994829e-02 -1.64181873e-01\\n2.25925576e-02 2.14003071e-01 -5.63011467e-01 4.74238396e-01\\n-4.07871842e-01 -1.52787536e-01 1.95786282e-01 6.87538743e-01\\n7.71459639e-02 -6.77321553e-01 -4.04784501e-01 -3.10032189e-01\\n2.28308082e-01 -1.81340039e-01 1.71057239e-01 -3.42280984e-01\\n3.93641680e-01 -7.63628855e-02 3.60421650e-02 3.25494289e-01\\n-6.32964492e-01 5.49113937e-02 -4.68719661e-01 9.20014232e-02\\n-5.58770955e-01 9.32862144e-03 -4.32462513e-01 1.34992197e-01\\n-1.17186040e-01 4.50527638e-01 -6.24952428e-02 -1.97244957e-02\\n-2.71735966e-01 2.17634365e-01 -3.46844107e-01 2.24471956e-01\\n3.31344306e-01 -7.51687661e-02 2.48580620e-01 3.63493204e-01\\n-4.54158217e-01 5.51061273e-01 2.69724131e-01 -3.07963490e-01\\n3.16107422e-01 2.17642814e-01 3.57355475e-01 2.36440331e-01\\n1.68288812e-01 1.66231468e-01 -1.36510924e-01 2.67159671e-01\\n1.83453336e-01 -2.39962593e-01 9.44776461e-02 -1.14948452e-01\\n-1.22098744e-01 -6.46585748e-02 7.88774863e-02 2.34587699e-01\\n-3.58615696e-01 3.35993648e-01 1.85066536e-01 -1.23495556e-01\\n-1.89986452e-01 -4.48902726e-01 -1.23173811e-01 1.08883120e-01\\n1.37335211e-01 1.96838900e-01 1.92264631e-01 1.35038748e-01\\n2.69769847e-01 9.97871757e-02 1.11074418e-01 6.56782448e-01\\n1.42826974e-01 2.10240245e-01 4.67675403e-02 3.72879326e-01\\n1.67677164e-01 -1.26973718e-01 2.04099581e-01 2.42396802e-01\\n-3.05164531e-02 -3.28474790e-01 -3.58967036e-01 3.87320220e-01\\n-2.47519583e-01 -1.40017614e-01 -1.90824240e-01 8.70967731e-02\\n6.61941767e-02 -4.29776400e-01 5.30249357e-01 -8.21511894e-02\\n1.13677800e-01 -1.94721092e-02 -1.00896813e-01 -8.77341926e-02\\n-1.03468210e-01 3.53111535e-01 2.26660088e-01 2.83388615e-01\\n-2.56079078e-01 -3.06471288e-01 -1.30239129e-01 2.27351978e-01\\n-3.89325798e-01 1.37983590e-01 -4.09389019e-01 1.11208139e-02\\n3.64194751e-01 2.11239830e-01 -4.79915559e-01 6.16755672e-02\\n-4.85145524e-02 -2.02862233e-01 -2.28459574e-02 4.73535508e-01\\n-8.76591504e-02 1.35484725e-01 -1.42202070e-02 -5.42387851e-02\\n6.38433337e-01 1.20021500e-01 5.07492065e-01 6.76559135e-02\\n2.95100123e-01 -1.88517049e-01 2.04421923e-01 1.10671766e-01\\n-6.16654336e-01 3.13731015e-01 -5.77844940e-02 -1.24128170e-01\\n1.26775950e-01 -1.18863005e-02 5.79209387e-01 -3.26870978e-01\\n-4.00899835e-02 -2.74150670e-01 -4.64226693e-01 -4.78615373e-01\\n-2.53395557e-01 -1.36448190e-01 2.69304901e-01 -5.69624186e-01\\n3.69645096e-02 1.72019988e-01 -6.09456897e-01 -3.30354393e-01\\n2.68875211e-01 2.56881207e-01 2.41241783e-01 6.98186830e-02\\n-1.22625440e-01 -7.36889541e-01 5.64862415e-02 -5.12725890e-01\\n-4.10693556e-01 1.91600043e-02 -2.96050578e-01 1.49434030e-01\\n-1.36104524e-02 5.25000505e-03 -1.11435261e-02 5.95060736e-02\\n-2.58021712e-01 1.12452945e-02 1.10562164e-02 1.94137141e-01\\n2.85038054e-01 8.34066123e-02 -3.85711849e-01 4.85957474e-01\\n-2.34990075e-01 5.57344794e-01 1.48045391e-01 -7.17530906e-01\\n7.04043567e-01 1.12054780e-01 -1.25414580e-01 -2.19661012e-01\\n3.68352264e-01 -4.38399285e-01 -3.56678292e-02 1.42015055e-01\\n-2.19665900e-01 -1.96670994e-01 3.26519459e-01 -5.28543778e-02\\n-3.53586316e-01 6.36979580e-01 1.58896461e-01 -1.02135904e-01\\n2.98758030e-01 -2.53623694e-01 -2.14119986e-01 4.38170619e-02\\n-2.13201702e-01 -4.02080342e-02 -4.69666928e-01 2.36458033e-02\\n-6.28001094e-02 -4.13021147e-01 -4.05590087e-02 -3.32188606e-01\\n-3.14298779e-01 -3.62323016e-01 -3.46308470e-01 1.22490197e-01\\n1.71392635e-01 1.61919966e-01 -1.15643770e-01 -4.06106673e-02\\n2.49790102e-02 -8.26156557e-01 -1.50702268e-01 2.29666010e-01\\n3.55063140e-01 3.37481171e-01 2.04207793e-01 -2.01382518e-01\\n1.53739989e-01 5.01209915e-01 -4.55762267e-01 -3.40685874e-01\\n2.68305510e-01 4.11215099e-03 -1.17774811e-02 -1.46560043e-01\\n7.38636404e-02 1.47221461e-01 -1.41782269e-01 -1.85014436e-03\\n6.57341182e-02 -1.84047312e-01 4.35505420e-01 3.78337549e-03\\n-2.79231280e-01 6.36365963e-03 -2.33094066e-01 1.85873553e-01\\n-4.79121119e-01 -2.76727140e-01 5.56199491e-01 2.34464288e-01\\n1.33747295e-01 1.48087770e-01 1.93314314e-01 4.57661599e-03\\n-3.28296065e-01 -2.89553821e-01 3.08225483e-01 1.95329934e-01\\n-6.30908385e-02 1.25973523e-01 -2.47795597e-01 -6.71810091e-01\\n-3.44965625e+00 -1.97014585e-01 1.08177230e-01 -3.57825041e-01\\n9.97498930e-02 -1.84145123e-01 1.82647690e-01 -2.64808480e-02\\n-2.60647953e-01 -2.80515142e-02 -2.02775657e-01 -1.20961137e-01\\n-1.12706395e-02 2.60662019e-01 1.87821507e-01 2.48891503e-01\\n2.57108569e-01 -2.56343067e-01 -5.74343801e-02 3.60089183e-01\\n-1.24787048e-01 -6.90944850e-01 -6.98172897e-02 5.39559452e-03\\n-4.23781052e-02 2.08017603e-01 -3.14005584e-01 6.28600046e-02\\n-3.40356350e-01 -2.50767261e-01 2.50666171e-01 -2.43069157e-01\\n-2.89983660e-01 6.16076477e-02 1.51375070e-01 -2.67294925e-02\\n-2.75391906e-01 -1.40052631e-01 -1.23443998e-01 -4.59867984e-01\\n3.94487083e-02 -5.02228022e-01 2.22740285e-02 -1.67124718e-01\\n7.04449654e-01 -1.16324641e-01 1.39149562e-01 1.06610745e-01\\n9.52525213e-02 1.40916795e-01 1.09533183e-01 3.15100811e-02\\n-1.80635363e-01 -2.93939710e-01 -1.57464623e-01 -8.47274438e-02\\n7.96404243e-01 3.13447654e-01 -2.20652163e-01 4.00175049e-04\\n2.38038763e-01 -3.97256613e-01 -3.18802655e-01 -3.86632890e-01\\n-3.11677158e-01 -1.28204152e-01 -7.62656689e-01 -3.72923553e-01\\n-2.17939675e-01 -6.26850501e-02 -9.98909548e-02 7.39739895e-01\\n-4.07045841e-01 -3.22163463e-01 -1.76266193e-01 -5.97790062e-01\\n3.03065121e-01 -1.49274632e-01 1.13077953e-01 -3.21628392e-01\\n-4.23236281e-01 -4.64888394e-01 1.11229666e-01 -3.80046628e-02\\n-3.35149378e-01 -2.42637489e-02 3.87786329e-02 -1.31975457e-01\\n-4.71248746e-01 -6.08718216e-01 2.87946850e-01 5.78931272e-02\\n2.37044349e-01 1.01568297e-01 3.34758282e-01 -4.24607433e-02\\n5.03307581e-01 7.31299818e-02 -3.16760354e-02 -2.04381123e-01\\n1.92932025e-01 -1.10563725e-01 6.60276830e-01 -3.55483443e-01\\n-1.42388463e-01 8.42945576e-02 -3.69244307e-01 2.65635867e-02\\n4.80979174e-01 -1.82908833e-01 1.08402818e-01 -9.16458145e-02\\n3.02507043e-01 -5.68179309e-01 -2.26603821e-01 2.28060901e-01\\n8.51342753e-02 7.53758669e-01 5.42594790e-02 -3.15881908e-01\\n9.13509503e-02 3.99221748e-01 -1.05413824e-01 -2.57701762e-02\\n-2.43337139e-01 1.53400714e-03 -1.84777141e-01 4.28462684e-01\\n6.61668181e-02 -1.47141963e-01 -1.76361680e-01 -5.39191589e-02\\n-1.05168656e-01 3.48619670e-01 3.04232568e-01 -5.14623970e-02\\n-4.86709215e-02 -1.31847322e-01 -2.31689095e-01 8.47583860e-02\\n2.01201871e-01 4.48767364e-01 1.92675382e-01 -2.53564835e-01\\n3.62922577e-03 2.28138939e-01 -2.35730082e-01 2.97554910e-01\\n-2.32318044e-01 2.17065454e-01 -6.56366706e-01 -2.69299954e-01\\n-1.69771045e-01 -3.60367060e-01 1.13336436e-01 3.77556354e-01\\n2.73789376e-01 -1.05048776e-01 3.39196324e-02 -5.65310240e-01\\n6.00955039e-02 2.71329850e-01 8.66683125e-02 1.70742214e-01\\n-1.82966128e-01 7.12836981e-01 -2.24203262e-02 -1.88323811e-01\\n-1.05815306e-01 9.32412222e-03 -3.16928059e-01 -3.32231432e-01\\n3.47391397e-01 -4.24125165e-01 -7.09783286e-02 4.57364827e-01\\n3.21713239e-01 -6.42394125e-02 -1.90440997e-01 3.88964385e-01\\n1.48593020e-02 -1.76615417e-01 -5.14062405e-01 5.34015661e-03\\n1.15142964e-01 2.12159500e-01 2.33951449e-01 -3.77940565e-01\\n5.11166640e-02 -2.81086657e-04 4.12022509e-02 3.89008850e-01\\n1.83638427e-02 2.68201560e-01 -1.74983844e-01 -8.35822895e-02\\n6.08786166e-01 5.97252212e-02 -1.01584651e-01 1.45578561e-02\\n2.91622460e-01 -2.31043056e-01 -4.21260267e-01 9.71177034e-03\\n-8.79081041e-02 -4.25100863e-01 1.24208540e-01 2.31116876e-01\\n-7.64257163e-02 -1.57998651e-02 -6.05796337e-01 -2.37568662e-01\\n-4.26165074e-01 -1.52822569e-01 2.40826309e-01 -6.11361980e-01\\n-1.46074370e-01 -1.10043459e-01 -4.05385315e-01 2.30815649e-01\\n7.43319094e-02 3.08281742e-03 3.89139652e-01 3.33025455e-01\\n-7.13793710e-02 -2.45224372e-01 5.59466109e-02 1.84621841e-01\\n-4.28636044e-01 -3.00698429e-01 -1.42660707e-01 -1.09593475e+00\\n4.96388972e-02 -1.89939458e-02 -2.85960585e-01 2.29348764e-02\\n-5.62067479e-02 -6.03702068e-01 1.74502283e-01 -3.08619708e-01\\n-2.11756796e-01 1.28123656e-01 -2.18959570e-01 -3.15656573e-01\\n1.37316853e-01 -1.12772852e-01 -3.07603180e-01 4.28081542e-01\\n-4.02170539e-01 4.58123207e-01 -1.03768878e-01 7.08063319e-02\\n-3.60942609e-03 -6.29797624e-03 1.94573984e-01 -1.05643936e-01\\n-4.44040120e-01 -3.96914095e-01 -4.51228261e-01 -2.30713367e-01\\n1.50147334e-01 -3.27523947e-01 -4.45509553e-02 1.49233863e-01\\n4.94120747e-01 1.93886995e-01 -5.13300784e-02 -9.48479772e-02\\n4.82284538e-02 -5.56291401e-01 1.22909963e-01 -2.37213701e-01\\n4.83620819e-03 -1.37837827e-01 1.27428576e-01 -1.08057661e-02\\n1.09095320e-01 -2.55334109e-01 6.50670111e-01 -2.25946337e-01\\n-3.02127004e-01 -2.41879225e-01 1.75487801e-01 1.28522530e-01\\n3.13030928e-01 -3.30892712e-01 6.06500655e-02 3.81650180e-01\\n1.12422168e-01 -1.26115143e-01 1.13548934e-01 -1.05203159e-01\\n-1.42687231e-01 2.07834914e-01 -2.99093604e-01 1.68144077e-01\\n8.47317338e-01 1.99661046e-01 2.18307972e-01 1.88655540e-01\\n7.19089806e-02 3.08897495e-01 6.74124956e-01 -2.11867303e-01\\n6.32449761e-02 2.80160785e-01 4.07692567e-02 -3.91052902e-01\\n-2.43703499e-02 -2.51043826e-01 4.28106040e-02 -3.59798402e-01\\n6.31435692e-01 3.59109849e-01 -5.22304893e-01 -3.27326715e-01\\n-1.57093167e-01 -1.96054820e-02 4.34597760e-01 1.29612491e-01\\n-2.44181886e-01 1.74330827e-02 5.56493878e-01 -5.66358007e-02\\n2.58049041e-01 3.88998389e-01 -2.06807345e-01 -1.96688890e-01\\n2.42620450e-03 2.95236021e-01 -1.27440039e-02 3.79167825e-01\\n-1.50270358e-01 1.88658163e-01 -1.78693578e-01 -1.62939504e-02\\n-2.64207691e-01 1.80396019e-03 1.28752023e-01 1.63474783e-01\\n2.78536469e-01 1.01140209e-01 4.98468190e-01 4.77330238e-01\\n1.20293692e-01 3.64976138e-01 2.35902816e-01 -1.40036047e-01\\n4.48495328e-01 5.80835104e-01 2.84027010e-01 1.55293614e-01\\n1.76129669e-01 2.55804896e-01 9.45241973e-02 1.14185385e-01\\n3.57888669e-01 4.93856072e-01 2.33668506e-01 6.18678451e-01\\n2.10600227e-01 3.29692423e-01 5.30382335e-01 -7.14465380e-01\\n-4.07869369e-01 2.17380412e-02 5.97936273e-01 -3.00069869e-01\\n1.80181295e-01 1.92688972e-01 -2.37584040e-01 3.11048925e-01\\n-5.90662181e-01 -2.80680716e-01 1.22073486e-01 2.74724793e-02\\n2.05120519e-01 -2.29163915e-01 -1.31266624e-01 1.35789782e-01\\n4.29771021e-02 -1.22002743e-01 -1.29737854e-01 -2.72700012e-01\\n-3.94280761e-01 -3.73433605e-02 1.20850332e-01 8.39081183e-02\\n7.92560726e-02 -3.89070868e-01 -1.43185914e-01 -5.47607839e-02\\n3.58238995e-01 -1.32878482e-01 -2.72181630e-01 -3.06935795e-02\\n2.61498094e-01 1.75768346e-01 6.45962656e-01 -9.45445895e-02\\n4.29560654e-02 -2.54758418e-01 -1.76961526e-01 1.29766837e-01\\n1.89689919e-01 1.10620186e-01 1.39188632e-01 3.90597463e-01\\n-3.94687772e-01 -1.81374937e-01 1.68548405e-01 2.00672492e-01\\n-4.23362434e-01 -9.75956023e-02 -1.12987205e-01 5.43494672e-02\\n-3.19334418e-02 2.36790866e-01 -2.70086378e-01 -1.23325780e-01\\n-2.70656496e-01 -5.96459091e-01 3.54987055e-01 -2.37167880e-01\\n-2.34259933e-01 -1.03615366e-01 3.06745678e-01 3.05704981e-01\\n-5.68228178e-02 4.48519737e-02 -7.75962695e-02 1.38559014e-01\\n5.78743853e-02 3.14962506e-01 5.06294332e-02 -2.53667057e-01\\n-3.53271097e-01 2.83000737e-01 1.40433729e-01 2.25339323e-01\\n-6.81080967e-02 3.19201976e-01 -1.09247245e-01 3.28256786e-02\\n3.54084700e-01 1.14770271e-01 -1.70863450e-01 -2.61343688e-01\\n-2.38305047e-01 -1.80440806e-02 7.18061179e-02 9.47721768e-04\\n5.01910374e-02 -4.28046435e-01 -1.98736235e-01 -3.38709414e-01\\n-6.48183972e-02 -4.42678481e-01 -2.24577725e-01 4.06330898e-02]]',\n", + " 'job_description': 'Supporting the customer on his site you will : Influence the design of data quality standards and governance processes Implement and enforce Data Quality Management practices across Research including metadata, lineage, data access rights and business definitions Perform root cause analysis on critical data quality issues, work with technology and SMEs on defining a solution and help implement the solution Design and report on data quality and usage metrics Complete large scale data analysis, document findings and reconcile across data stores Support the data analysis required to place data into a shared platform for consumption by others, requiring detailed reviews with the business owners and identify the use of data and understand calculations and derivations Partner with technology to understand where data already exists in the shared platform and ensure that data is not duplicated Explore and evaluate new concepts, technologies and industry trends related to data analytics We are looking for someone with the following experience Experience in data quality management Experience with using data profiling tools to query the data, identify anomalies, gaps and issues Experience manipulating and analyzing large-scale data sets, performing root cause analysis, driving data and business requirements Experience in scripting (Python, Perl, JavaScript, Shell) Experience working BI reporting tools is a plus General awareness of data management practices, emerging trends, and issues',\n", + " 'soft_skills': '[\"Research\", \"Governance\"]',\n", + " 'hard_skills': '[\"Quality Management\", \"Data Quality\", \"Tooling\", \"Accessioning\", \"Perl (Programming Language)\", \"Metadata\", \"Analytics\", \"Data Profiling\", \"Law Practice Management\", \"Industrialization\", \"Scale (Map)\", \"Calculations\", \"Python (Programming Language)\", \"Root Cause Analysis\", \"Business Requirements\", \"Enforcement\", \"JavaScript (Programming Language)\", \"Survey Data Analysis\", \"Requirements Analysis\", \"Solution Design\", \"Scripting\", \"Operational Data Store\", \"Derivatives\", \"Data Analysis\", \"Reporting Tools\"]',\n", + " 'languages': \"['English', 'Nauru', 'Punjabi', 'Tatar', 'Avestan']\"},\n", + " {'company_id': '99',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Eysins',\n", + " 'industry': 'Biotech & Pharmaceuticals',\n", + " 'website': 'www.quotientsciences.com',\n", + " 'jobdescription_embedded': '[[-1.67283162e-01 4.96382684e-01 4.73285615e-01 -3.95441093e-02\\n7.15354025e-01 -6.18053414e-02 5.90838194e-02 1.80678621e-01\\n-8.27328418e-04 -3.37114483e-01 -2.18784034e-01 -1.58189401e-01\\n1.52623206e-02 5.06034233e-02 2.28409559e-01 5.84479868e-01\\n2.51608580e-01 1.66614223e-02 -1.66437440e-02 4.06785816e-01\\n-6.73558787e-02 -1.67884827e-01 1.20005667e-01 6.37284100e-01\\n3.13242376e-01 -8.12849903e-04 -3.01359948e-02 -5.76268248e-02\\n-3.09288412e-01 -2.74816602e-01 4.40663099e-01 3.29021849e-02\\n-7.83144087e-02 -3.73824924e-01 1.08930394e-01 1.79451630e-01\\n-1.85445324e-01 1.28055304e-01 -1.78126425e-01 2.40898132e-01\\n-5.89650989e-01 -2.64039427e-01 7.97517747e-02 -1.03131890e-01\\n-3.34392726e-01 -3.88217837e-01 1.39606580e-01 -2.31899530e-01\\n1.11341067e-01 2.21235871e-01 -3.84487182e-01 3.55191052e-01\\n-4.07988071e-01 -2.70934194e-01 5.06339848e-01 5.72794139e-01\\n6.15819991e-02 -5.84330261e-01 -4.68150735e-01 -2.88958251e-01\\n1.22681923e-01 -6.50476888e-02 1.47600770e-01 -1.49397805e-01\\n3.15104038e-01 -9.98749509e-02 4.46192436e-02 2.78863698e-01\\n-6.97212040e-01 -1.29439145e-01 -3.69929761e-01 1.14065811e-01\\n-3.49062771e-01 -1.05505243e-01 -3.53100777e-01 -2.25138947e-01\\n-2.79875807e-02 4.16782022e-01 -1.44749507e-01 2.34315917e-02\\n-1.39191240e-01 4.35574681e-01 -2.01017037e-01 1.43315732e-01\\n3.08255732e-01 1.59997836e-01 3.94490868e-01 3.71993899e-01\\n-5.16115129e-01 3.85041445e-01 3.96353811e-01 -2.77292460e-01\\n2.07770273e-01 7.18651116e-02 3.30229253e-01 1.87326372e-01\\n-3.53857465e-02 2.16005147e-01 -2.13451192e-01 1.46659657e-01\\n1.86481237e-01 2.20601987e-02 -1.00690156e-01 6.19195076e-03\\n1.31012267e-03 -3.19163613e-02 -1.72947580e-03 2.76178092e-01\\n-4.15631890e-01 3.80885810e-01 1.95618063e-01 -2.89628297e-01\\n-1.42698929e-01 -5.80824733e-01 -2.10370094e-01 6.33820519e-02\\n-1.20050618e-02 1.27508745e-01 2.09431335e-01 2.51360834e-01\\n2.47809812e-01 -3.90639044e-02 1.85143441e-01 8.57120037e-01\\n2.29593422e-02 6.75428063e-02 -1.07030220e-01 3.60183030e-01\\n1.33770242e-01 -1.98120549e-01 4.20190096e-02 2.35998571e-01\\n-7.21413940e-02 -2.89273611e-03 -2.67424881e-01 3.36799145e-01\\n-1.72741249e-01 -2.47610480e-01 -2.52588511e-01 1.93755463e-01\\n-2.16580793e-01 -4.31534410e-01 4.68430281e-01 -1.90114602e-01\\n6.76211864e-02 -1.70918375e-01 -6.28996268e-02 4.93098721e-02\\n-2.82016397e-01 3.84538829e-01 2.14667886e-01 1.01979077e-01\\n-2.99329340e-01 -2.84333080e-01 -1.77723631e-01 2.62720913e-01\\n-1.51834592e-01 1.86395928e-01 -3.54028583e-01 -1.64308682e-01\\n3.25742811e-01 2.08727509e-01 -5.31035304e-01 3.02797854e-01\\n-1.36172830e-03 -1.84365958e-01 -2.54335344e-01 2.53711253e-01\\n-6.52396157e-02 1.13642119e-01 3.34032183e-03 -1.01220399e-01\\n5.95475554e-01 1.37235850e-01 2.92575777e-01 -1.20846368e-01\\n3.76828909e-01 -1.28077835e-01 2.47321457e-01 6.49513230e-02\\n-6.44647121e-01 4.44469839e-01 -1.82577640e-01 -1.04603253e-01\\n4.25479412e-02 2.02265009e-02 5.31656384e-01 -3.12031657e-01\\n-1.11082554e-01 -2.75638402e-01 -3.28261137e-01 -5.08254468e-01\\n-8.10283944e-02 -4.24229763e-02 3.78612876e-01 -3.64559412e-01\\n-5.32455631e-02 2.15527326e-01 -7.24871457e-01 -7.97624514e-02\\n3.85937512e-01 2.35226005e-01 1.63823038e-01 1.63700417e-01\\n-1.44805267e-01 -6.02992654e-01 1.59879178e-01 -5.34337342e-01\\n-2.90672660e-01 1.37909099e-01 -2.17367843e-01 6.82096481e-02\\n-1.17913559e-02 3.04325819e-02 -4.39064689e-02 4.63327318e-02\\n-2.95871615e-01 -1.32496711e-02 1.52611867e-01 -2.64245179e-02\\n1.01892352e-01 1.13051072e-01 -4.70750362e-01 5.16115248e-01\\n-2.02063397e-01 4.04750526e-01 7.94736594e-02 -9.69350219e-01\\n5.03957987e-01 2.29500964e-01 -1.11463163e-02 -3.07611734e-01\\n5.91374516e-01 -3.56890380e-01 -8.50174204e-02 1.68656290e-01\\n-2.67049938e-01 -1.69523910e-01 2.77892292e-01 -1.67215213e-01\\n-3.24622005e-01 5.91055214e-01 1.15860440e-01 3.96384932e-02\\n3.08249563e-01 -1.01169541e-01 -1.09347917e-01 -4.04855609e-03\\n-8.63071755e-02 -2.03987453e-02 -4.55997586e-01 1.56496204e-02\\n-4.17355932e-02 -5.50188541e-01 -2.11021900e-01 -4.30515110e-01\\n-1.81023523e-01 -4.42410886e-01 -2.66065687e-01 9.48991179e-02\\n4.56364453e-02 1.18560277e-01 4.24885983e-03 1.21486619e-01\\n-2.12956052e-02 -8.45426083e-01 -7.96089992e-02 1.65583566e-01\\n1.92681685e-01 4.71878022e-01 2.18870610e-01 -1.10170893e-01\\n-8.90544280e-02 3.70567292e-01 -3.46888751e-01 -2.09043488e-01\\n2.47652262e-01 4.48090397e-02 -7.02936798e-02 -1.68070421e-01\\n1.14390329e-01 3.30983073e-01 -2.21414745e-01 1.18749730e-01\\n4.06400003e-02 -1.79618075e-02 3.52299511e-01 -1.07650585e-01\\n-3.03789884e-01 -1.78014934e-01 -1.18170142e-01 2.61042535e-01\\n-6.36415780e-01 -1.78278878e-01 5.25998831e-01 6.65154159e-02\\n3.08961291e-02 3.27643275e-01 3.56017798e-01 -7.01261908e-02\\n-3.34032208e-01 -2.03804418e-01 2.29282916e-01 1.38755873e-01\\n1.61493286e-01 -3.57251838e-02 -2.43090749e-01 -6.85398400e-01\\n-3.36590719e+00 -2.27977782e-01 1.61804214e-01 -3.20039481e-01\\n3.04907292e-01 -3.26754376e-02 2.63678521e-01 6.74046725e-02\\n-4.25667435e-01 2.55601481e-02 -1.76507935e-01 -1.29918844e-01\\n6.98243529e-02 3.32497895e-01 9.73022506e-02 9.07275453e-02\\n7.39738420e-02 -3.95802706e-01 7.48599693e-02 4.51745003e-01\\n-1.51159942e-01 -8.91585350e-01 1.35872159e-02 2.97283512e-02\\n1.60224333e-01 1.03656694e-01 -5.86426854e-01 -3.37138437e-02\\n-2.74967313e-01 -1.87939823e-01 8.74861106e-02 -4.47235852e-02\\n-2.94496089e-01 2.28376254e-01 8.54830891e-02 -1.12324983e-01\\n-2.13490855e-02 -2.79905170e-01 -6.16475232e-02 -6.68594241e-01\\n1.27968386e-01 -7.22252607e-01 5.30232862e-03 -3.13416570e-02\\n4.86633956e-01 -9.97365266e-02 2.40852326e-01 1.50363609e-01\\n1.39815211e-01 2.13297471e-01 1.13651454e-01 -8.13508872e-03\\n-1.95934355e-01 -2.19100252e-01 -1.27989277e-01 -8.76261517e-02\\n6.99163318e-01 3.76516491e-01 -3.27294528e-01 -1.84754550e-03\\n6.28733784e-02 -3.56785595e-01 -4.52331334e-01 -2.76319563e-01\\n-2.30234861e-01 3.18514295e-02 -7.09605217e-01 -4.17568296e-01\\n-1.58655375e-01 -2.18184695e-01 -9.87968445e-02 7.75923133e-01\\n-3.75988603e-01 -3.34090531e-01 -9.81640667e-02 -6.01580977e-01\\n1.40054092e-01 -2.70387918e-01 4.93498845e-03 -2.79449672e-01\\n-3.61586243e-01 -3.52262735e-01 3.09144408e-01 8.34799930e-02\\n-2.16312572e-01 9.06404033e-02 1.16812818e-01 -1.15260594e-01\\n-3.89930755e-01 -5.81773877e-01 4.28370357e-01 7.18084946e-02\\n3.61614108e-01 -3.77777740e-02 3.13419729e-01 -3.83485220e-02\\n5.09930313e-01 -1.59920976e-02 8.59928802e-02 -5.62680304e-01\\n-8.70154873e-02 -2.05737203e-02 7.11441338e-01 -2.34437749e-01\\n-4.87223454e-02 1.74908474e-01 -2.07855225e-01 -2.89404392e-01\\n4.85346377e-01 -2.22759005e-02 1.86039239e-01 -3.06634158e-01\\n3.08273584e-01 -4.84438568e-01 -2.25648656e-01 9.60651413e-02\\n7.29645267e-02 7.78930962e-01 2.44732909e-02 -4.17339504e-01\\n-1.43703416e-01 3.12684953e-01 -1.91466644e-01 5.49326204e-02\\n-1.14602178e-01 2.99004167e-02 -1.62621632e-01 3.82111520e-01\\n7.57742673e-02 -1.53777748e-01 -2.65014112e-01 6.90416917e-02\\n-7.91388154e-02 1.61529616e-01 2.57426709e-01 1.59676507e-01\\n-7.79743344e-02 -2.99858272e-01 -1.12044632e-01 1.72875032e-01\\n1.53421715e-01 3.65172386e-01 1.51879251e-01 -3.79622549e-01\\n1.58237927e-02 2.26691976e-01 -2.57052600e-01 3.30407172e-01\\n-1.41537011e-01 1.48903772e-01 -5.12566447e-01 -9.72853824e-02\\n-2.82519251e-01 -2.72215515e-01 6.81637675e-02 3.29897344e-01\\n1.69731855e-01 -1.33052677e-01 1.19581856e-01 -5.29412985e-01\\n2.96477467e-01 1.48529842e-01 1.75442964e-01 1.10479176e-01\\n-5.50859310e-02 6.96975112e-01 -1.19051998e-02 -1.97875157e-01\\n-1.88725302e-03 8.35982114e-02 -2.07555592e-01 -1.98839322e-01\\n1.11030713e-01 -3.98029923e-01 -8.53429921e-03 4.88453090e-01\\n1.61343187e-01 -4.92162742e-02 -1.55689403e-01 3.33499938e-01\\n4.95009050e-02 -2.77789384e-01 -2.44411871e-01 -2.30552368e-02\\n4.43329699e-02 2.95744333e-02 2.91405320e-01 -4.89995062e-01\\n5.18030189e-02 -7.42126107e-02 6.93076029e-02 3.44546229e-01\\n2.35428400e-02 1.20333031e-01 -1.22529328e-01 -1.13325737e-01\\n4.36666250e-01 9.03463215e-02 -7.92455971e-02 -1.70062520e-02\\n1.87160149e-01 -2.65449584e-01 -5.07697880e-01 -3.45288999e-02\\n-1.14432283e-01 -1.71996027e-01 1.13041736e-01 1.51635790e-02\\n1.86537549e-01 2.14096736e-02 -4.26688641e-01 -1.13187924e-01\\n-2.85175920e-01 2.51499843e-02 -1.81716532e-01 -5.95246792e-01\\n-7.07061365e-02 4.16523144e-02 -5.74558139e-01 2.22292379e-01\\n-5.76059008e-03 -3.85601185e-02 1.76665425e-01 2.27065086e-01\\n-2.69160718e-01 -2.66150981e-01 1.50380164e-01 1.52548440e-02\\n-2.77740210e-01 -1.76942214e-01 -3.68021950e-02 -9.36817467e-01\\n2.31606722e-01 -6.28801808e-02 -1.94569543e-01 3.97571847e-02\\n-1.22179888e-01 -7.56654739e-01 2.09525630e-01 -3.79736274e-01\\n-2.27010787e-01 6.01732954e-02 -2.26237684e-01 -3.40690017e-01\\n7.33671710e-02 -1.24778397e-01 -2.90580541e-01 3.12682569e-01\\n-3.61994475e-01 5.77859223e-01 4.40651514e-02 8.52059051e-02\\n1.41486144e-02 -2.04577833e-01 1.49629980e-01 -2.91375935e-01\\n-4.61250693e-01 -7.70405680e-02 -2.75184125e-01 -3.02751869e-01\\n-7.05734566e-02 -1.75870180e-01 -2.23107040e-01 1.50369853e-01\\n4.01551872e-01 7.57903755e-02 -1.26894414e-01 -1.27012551e-01\\n-1.98444575e-02 -3.85478348e-01 1.54525787e-01 -2.57370502e-01\\n1.39345258e-01 -8.13426226e-02 3.94687921e-01 5.22590708e-04\\n2.64045089e-01 -2.67956823e-01 6.32379532e-01 -1.34969652e-01\\n-3.37119460e-01 -1.68911383e-01 1.19579807e-01 1.14029787e-01\\n4.38407272e-01 -4.84939933e-01 2.94002555e-02 2.85366863e-01\\n-1.13274679e-01 3.18405926e-02 2.24106148e-01 -1.83181569e-01\\n-1.61934376e-01 -9.30105988e-03 -6.15322053e-01 2.19566286e-01\\n6.99552119e-01 2.61645257e-01 1.61991939e-01 1.27732232e-01\\n1.01735376e-01 3.68169546e-01 6.19638860e-01 -1.00752927e-01\\n-1.65866062e-01 3.33156466e-01 7.69180432e-02 -5.56725144e-01\\n-2.86869675e-01 4.59007779e-03 -1.54584095e-01 -3.91991764e-01\\n6.35518789e-01 1.88641161e-01 -4.09015238e-01 -3.64251018e-01\\n-2.77176917e-01 -2.79904515e-01 2.76747167e-01 -5.32844290e-03\\n3.55964079e-02 -1.61833435e-01 6.24098659e-01 5.12679070e-02\\n3.42268229e-01 4.98422861e-01 -5.81675135e-02 -3.33056957e-01\\n5.39596900e-02 1.99790031e-01 4.30069258e-03 2.69510180e-01\\n5.29400678e-03 1.61001727e-01 1.95755623e-02 1.97789967e-01\\n-2.26976275e-01 -1.50916949e-01 1.14374436e-01 1.20383270e-01\\n7.07988888e-02 2.09514692e-01 6.24804974e-01 4.26409602e-01\\n2.15460166e-01 3.52721870e-01 2.75899053e-01 2.86861062e-02\\n5.20019054e-01 6.54697418e-01 2.92867571e-01 4.55033174e-03\\n1.26852065e-01 2.82500923e-01 1.35589138e-01 -5.10333804e-04\\n4.33821231e-01 4.51742291e-01 1.26192093e-01 8.27383220e-01\\n7.43306652e-02 3.70451123e-01 7.68658519e-01 -6.19583428e-01\\n-3.18684846e-01 7.70748928e-02 6.30156457e-01 -4.34582114e-01\\n6.87476946e-03 2.27544695e-01 -1.26900107e-01 2.92407632e-01\\n-5.30891657e-01 -1.48756430e-01 3.55412550e-02 -5.42347208e-02\\n2.24938225e-02 -1.57012284e-01 -1.12404890e-01 -2.40950156e-02\\n-1.66813850e-01 -1.49871975e-01 -2.09899873e-01 -3.25569928e-01\\n-2.51107574e-01 1.11149378e-01 -4.22187746e-02 -1.73717663e-01\\n-3.39396968e-02 -3.10252637e-01 -1.27170131e-01 -8.64047259e-02\\n2.56068021e-01 -1.57345891e-01 -1.95944652e-01 -3.99634242e-02\\n1.51886046e-01 1.73659250e-01 7.09538043e-01 -7.05268085e-02\\n1.20836891e-01 -1.66058779e-01 -1.73461422e-01 7.13922083e-02\\n1.63114458e-01 1.64563686e-01 6.52934685e-02 6.67771041e-01\\n-3.23297441e-01 -1.01821534e-01 8.80909488e-02 3.58815104e-01\\n-2.65383244e-01 -2.23928201e-03 -6.07998855e-02 8.19014534e-02\\n-8.21686909e-02 8.73030797e-02 -2.14701787e-01 -2.82162726e-02\\n-1.36687919e-01 -5.65336287e-01 4.02833879e-01 -1.28295660e-01\\n-3.13870877e-01 -6.42627757e-03 3.26349437e-01 3.45629752e-01\\n-1.57253563e-01 -3.78518030e-02 -1.02381997e-01 1.22643121e-01\\n8.03345293e-02 4.92935359e-01 -1.89984858e-01 -2.59463370e-01\\n-3.32633823e-01 2.66296923e-01 3.80577892e-02 1.66840926e-01\\n-8.88827369e-02 2.90821284e-01 7.16807917e-02 6.53435439e-02\\n3.55444521e-01 -1.56623036e-01 -2.89584488e-01 -3.11671942e-01\\n-1.53793246e-01 -1.34443194e-01 1.05127253e-01 -1.44648746e-01\\n2.45508015e-01 -3.53670835e-01 -4.27128226e-02 -2.88287520e-01\\n-1.39551595e-01 -3.97719026e-01 -2.17192456e-01 1.82976108e-02]]',\n", + " 'job_description': 'Quotient is recruiting for a Software Engineer to join the IT department team based in Eysins. The Software Engineer will define, develop, test, analyze and maintain manufacturing software applications in support of the achievement of business requirements. Participate actively in the implementation and support of Manufacturing information systems solutions Participate in the definition, development, and documentation of software’s business requirements, objectives, deliverables, and specifications in collaboration with internal users and departments and as per our project methodology Write, code, install and analyse software programs and applications throughout the full lifecycle of system implementation (from requirements/design through to deployment and support) Design, run and monitor software testing on new and existing programs for the purposes of correcting errors, isolating areas for improvement, and general debugging Develop interface of MES system to ERP, PLC and other 3rd party system Develop and execute software verification plans following quality assurance procedures Develop and maintain IT documentation, user manuals and guidelines as well as train key users to operate new or modified programs Provide support for Manufacturing Software applications (Incident management and problem resolution) and develop further the manufacturing systems support Knowledge base Ensure timely issue identification, resolution, and appropriate escalation Collaborate with suppliers, internal project and IT team, internal management, and customer project teams and management Research, advice and implement technologies for Digital Factory transformation (Industry 4.0) Qualifications Engineering Diploma (EPF/HES or equivalent) in Computer Science, Information Systems, Industrial Engineering or equivalent Minimum 2 years experience on a similar role Programming skills in NET; C# and SQL language and ability to quickly learn new software/applications Must be a team player and an effective communicator, to enable communication with a wide range of stakeholders and cultures Experience of Manufacturing Information systems (Manufacturing Execution Systems, labelling and Enterprise Resource planning) in the medical devices or pharma industry is a strong asset SLDC and validation experience of enterprise applications is considered an asset Ability to work under pressure, meet deadlines and respond flexibly Excellent spoken and written French. Good English required Videos To Watch',\n", + " 'soft_skills': '[\"Writing\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Quality Assurance\"]',\n", + " 'hard_skills': '[\"Development Testing\", \"Systems Implementations\", \"Enterprise Application Software\", \"Knowledge Base\", \"Industry 4.0\", \"Programming (Music)\", \"Computer Science\", \"Mobile Application Software\", \"System Support\", \"Industrialization\", \"Enterprise Resource Planning\", \"Activism\", \"Installation\", \"Maintainability\", \"Resource Planning\", \"Software Manufacturing\", \"Executable\", \"Software Engineering\", \"Simatic S5 PLC\", \"Business Requirements\", \"Medical Devices\", \"MFG/Pro (ERP)\", \"C# (Programming Language)\", \"Digitization\", \"Incident Management\", \"Systems Development\", \"Industrial Engineering\", \"Transformation (Genetics)\", \"Factorials\", \"Software Testing\", \"Manufacturing Execution System (MES)\", \"Debugging\", \"Information Systems\"]',\n", + " 'languages': \"['English', 'Latvian', 'Lithuanian', 'Tajik', 'Northern Sami']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'software developer/devops engineer 60-100% starting immediately or as per agreement',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.87318110e-01 2.91789472e-01 4.31188583e-01 -8.56497586e-02\\n5.50554872e-01 -1.77667126e-01 -1.81153476e-01 4.18591142e-01\\n-1.41118765e-01 -3.14023614e-01 -1.08434513e-01 -2.64241785e-01\\n-1.60108298e-01 1.53163016e-01 6.70829564e-02 4.40282047e-01\\n3.40453863e-01 5.67928515e-02 -1.71614468e-01 3.23336720e-01\\n1.02806613e-01 -9.64196473e-02 -4.06006500e-02 7.56575286e-01\\n3.62100184e-01 1.48202516e-02 -5.53796291e-02 2.72017196e-02\\n-1.69028550e-01 -1.95795953e-01 4.24424082e-01 1.71294175e-02\\n-1.09756403e-01 -3.16664100e-01 1.61537319e-01 1.11791953e-01\\n-2.37060279e-01 -1.03546232e-02 -3.76902670e-02 1.60510525e-01\\n-5.12383103e-01 -1.93267167e-01 1.45915411e-02 1.42959803e-02\\n-2.79489934e-01 -2.70250201e-01 2.29901269e-01 2.37958580e-02\\n2.33175308e-02 5.69798499e-02 -6.05443358e-01 2.64797658e-01\\n-2.71879137e-01 -2.63937533e-01 4.01578635e-01 4.84519213e-01\\n5.35161905e-02 -4.76649761e-01 -4.92879808e-01 -3.85217905e-01\\n-3.52666825e-02 -7.18578100e-02 3.89909297e-02 -2.73499966e-01\\n5.02170920e-01 1.37555972e-01 5.60406670e-02 3.60494316e-01\\n-8.01566899e-01 -1.07479371e-01 -2.12247014e-01 5.86293414e-02\\n-4.19530869e-01 -1.04820862e-01 -2.29446977e-01 -2.23073408e-01\\n-5.96053377e-02 2.96231508e-01 -3.69271412e-02 9.81291234e-02\\n-1.38414115e-01 3.09551448e-01 -1.51179239e-01 3.57642770e-01\\n2.48925060e-01 1.73266470e-01 2.58680612e-01 3.36884737e-01\\n-4.56089437e-01 3.54018390e-01 1.28624976e-01 -3.47741365e-01\\n2.72112489e-01 6.20779619e-02 4.51661527e-01 9.88357067e-02\\n1.76459432e-01 1.43177837e-01 -2.75089353e-01 2.16527492e-01\\n1.98034912e-01 -2.34888554e-01 -7.76223838e-04 -1.14471316e-01\\n-2.95662023e-02 5.42322136e-02 1.54809458e-02 1.92612082e-01\\n-3.79081279e-01 3.74513745e-01 1.75825447e-01 -2.73818403e-01\\n-1.01332933e-01 -5.78993320e-01 -1.22831173e-01 1.46739170e-01\\n2.04649158e-02 -5.30406088e-03 1.45222217e-01 1.15870684e-01\\n2.24334180e-01 4.39854153e-03 1.36397451e-01 8.49736691e-01\\n-1.23089060e-01 -6.50517419e-02 -1.49911433e-01 2.67448455e-01\\n1.03887878e-01 -3.06839287e-01 2.14043438e-01 3.00301254e-01\\n1.05285630e-01 -9.65064913e-02 -2.45603755e-01 3.91231865e-01\\n-9.10522416e-04 -2.49747306e-01 -3.50262821e-01 2.72334695e-01\\n-1.16192371e-01 -4.62924838e-01 5.35417378e-01 5.94500173e-03\\n2.22213119e-01 -6.12952113e-02 9.75393504e-03 -8.14917535e-02\\n-4.99278158e-02 1.65591896e-01 6.23758510e-02 2.49845311e-01\\n-3.73047531e-01 -2.50737190e-01 -1.74523860e-01 1.78210318e-01\\n-2.58136809e-01 1.52739286e-01 -9.52636153e-02 -1.36618212e-01\\n3.80859077e-01 2.93134227e-02 -3.21646303e-01 2.13435248e-01\\n-3.00743692e-02 1.56142935e-03 -1.25223532e-01 3.85336041e-01\\n-1.58782840e-01 2.32533216e-01 -8.19541365e-02 -1.55077174e-01\\n5.68798423e-01 5.88336065e-02 1.35826081e-01 -3.41330208e-02\\n3.76788825e-01 -1.47953451e-01 2.99568772e-01 3.50088179e-02\\n-6.97408974e-01 2.18423441e-01 -1.39078293e-02 -1.70854092e-01\\n3.10208797e-02 3.42263356e-02 4.09392267e-01 -3.31602275e-01\\n-9.21376050e-05 -1.94397196e-01 -3.72853070e-01 -3.37666452e-01\\n-2.58329719e-01 7.73894712e-02 4.21880007e-01 -3.80115300e-01\\n-1.16501763e-01 1.65301889e-01 -5.59084177e-01 -2.04996750e-01\\n2.11235449e-01 2.25003034e-01 1.26817137e-01 9.17577371e-02\\n-1.38674349e-01 -7.17165709e-01 3.40212882e-02 -5.29017806e-01\\n-2.54450202e-01 1.32091165e-01 -3.92119646e-01 2.19579250e-01\\n1.09882336e-02 -4.72904593e-02 -1.20516382e-01 1.37907594e-01\\n-3.48661184e-01 -6.25367165e-02 1.48148507e-01 3.47936824e-02\\n2.84271419e-01 1.07930340e-01 -2.71239161e-01 5.35039544e-01\\n-1.54739842e-01 4.94785607e-01 1.31897479e-01 -8.04526329e-01\\n5.07906973e-01 4.43602204e-01 8.89478400e-02 -3.37336123e-01\\n5.69540799e-01 -3.01147461e-01 -6.24946766e-02 1.32318974e-01\\n-4.60249662e-01 -2.59566069e-01 2.44656637e-01 -2.77914077e-01\\n-2.35727161e-01 5.57668924e-01 7.49789700e-02 2.86465883e-02\\n3.54128361e-01 -3.61817777e-01 -1.78567231e-01 1.29208982e-01\\n-1.16411954e-01 -3.23868215e-01 -5.43175697e-01 1.83105245e-02\\n-7.25895017e-02 -5.22873938e-01 -2.09462374e-01 -3.61580282e-01\\n-1.21171907e-01 -2.79470801e-01 -2.15028331e-01 3.72170210e-01\\n1.37792170e-01 9.57143679e-02 -1.16027400e-01 -3.25749069e-02\\n-1.03597805e-01 -6.00327849e-01 6.46317750e-02 -7.62615204e-02\\n4.29507524e-01 1.72550350e-01 1.62954018e-01 -6.85341507e-02\\n4.24821973e-02 6.11936092e-01 -3.55240583e-01 -3.18563938e-01\\n7.56022260e-02 1.08517960e-01 -8.05538613e-03 -3.48435640e-02\\n1.53358683e-01 2.83679783e-01 -2.80136943e-01 2.93359160e-04\\n-2.65068829e-01 3.77300568e-02 3.81170571e-01 -1.25991032e-01\\n-2.00369880e-01 -2.47937664e-01 -1.34533331e-01 2.09450424e-01\\n-5.06720483e-01 -2.30727017e-01 4.16215062e-01 2.08025396e-01\\n1.61086842e-01 1.46631077e-01 2.57583529e-01 -3.05785723e-02\\n-2.73961484e-01 -3.76286834e-01 2.59703845e-01 1.94673315e-01\\n1.18294075e-01 1.25228167e-01 -1.08436294e-01 -5.59951186e-01\\n-2.93729639e+00 -1.77619115e-01 2.11666360e-01 -2.89920747e-01\\n2.80518532e-01 -9.52224582e-02 6.85328841e-02 -7.66997561e-02\\n-3.61034989e-01 -3.13492529e-02 -1.61867917e-01 -2.46088997e-01\\n6.44157454e-02 2.88689852e-01 1.49642691e-01 7.89279044e-02\\n7.27260336e-02 -2.17213064e-01 7.11056143e-02 2.76450306e-01\\n-1.47085473e-01 -7.16445208e-01 1.96123138e-01 -1.18124358e-01\\n2.33736783e-01 3.11203688e-01 -4.14957613e-01 -1.66257665e-01\\n-2.57039428e-01 -2.18894243e-01 1.32843792e-01 -3.22713614e-01\\n-1.09991074e-01 3.05664599e-01 2.08565980e-01 -7.47518390e-02\\n5.99676967e-02 -3.68930161e-01 -9.76570398e-02 -5.65621912e-01\\n2.24634141e-01 -5.76452494e-01 -3.91370151e-03 -1.71015441e-01\\n6.65006042e-01 -2.91297406e-01 1.82726577e-01 1.35385662e-01\\n2.31303096e-01 2.02988476e-01 6.48515224e-02 7.25327134e-02\\n-2.54797429e-01 -3.19191754e-01 -2.41924226e-02 -2.85765201e-01\\n5.49647093e-01 4.76489246e-01 -2.08977669e-01 -5.56413084e-02\\n1.48424178e-01 -3.50824773e-01 -4.54944044e-01 -3.19716066e-01\\n-1.86787039e-01 -1.59528390e-01 -6.02613747e-01 -3.77588332e-01\\n-1.11144185e-01 -8.96145999e-02 -9.21295136e-02 7.16021776e-01\\n-3.33794415e-01 -3.24110806e-01 5.17537817e-03 -6.55639291e-01\\n7.62278512e-02 -2.63824970e-01 6.99969530e-02 -2.36851692e-01\\n-2.31593966e-01 -4.92470652e-01 1.22997947e-01 -7.06257299e-02\\n-1.79481894e-01 -3.36754829e-01 3.22761573e-02 -2.54902959e-01\\n-1.84644908e-01 -5.51626325e-01 3.85588646e-01 1.51344895e-01\\n3.84903014e-01 1.87793210e-01 2.89781362e-01 -2.03124825e-02\\n2.71261364e-01 3.76273878e-02 -2.62049958e-03 -3.97569388e-01\\n2.10584551e-01 2.14498322e-02 5.50341487e-01 -1.82782650e-01\\n1.78368874e-02 9.05191600e-02 -2.20640779e-01 -1.51129171e-01\\n3.18200797e-01 9.64162573e-02 1.94250457e-02 -1.74557716e-01\\n4.10951138e-01 -4.19547498e-01 -1.13547973e-01 1.97528839e-01\\n5.34651726e-02 6.41566753e-01 -1.67857111e-02 -3.89339983e-01\\n-2.05366701e-01 5.42307019e-01 -1.11077242e-02 -3.98148559e-02\\n-5.10816649e-03 1.66688740e-01 -1.56590879e-01 1.82058275e-01\\n4.89002243e-02 -1.72223762e-01 -2.58895695e-01 -6.41639531e-02\\n-1.45417899e-01 2.82754540e-01 2.92502046e-01 2.50201762e-01\\n-1.03088312e-01 -3.89020383e-01 -4.35447842e-02 2.98897743e-01\\n2.62479544e-01 3.97856116e-01 1.80709511e-01 -1.73602343e-01\\n2.35672742e-02 4.60401475e-01 -1.22553632e-01 2.26123989e-01\\n-1.48112223e-01 7.70156905e-02 -5.44449151e-01 -1.76110327e-01\\n-3.27874482e-01 -2.81568766e-01 1.20939940e-01 3.09839934e-01\\n1.75294995e-01 -7.26273656e-02 5.76428548e-02 -3.56755018e-01\\n2.43489802e-01 8.83635134e-02 2.07738400e-01 1.25812173e-01\\n-9.34434831e-02 6.11874640e-01 -1.92633569e-02 -7.33592883e-02\\n-1.86909348e-01 -1.23604946e-02 -2.65375733e-01 -1.86913460e-01\\n1.68819994e-01 -3.95074666e-01 -2.10466236e-01 4.37441260e-01\\n1.05115086e-01 -1.55914098e-01 -1.79656982e-01 2.94642508e-01\\n6.36705533e-02 -2.88086116e-01 -2.58867919e-01 2.27771960e-02\\n2.96990991e-01 4.84071895e-02 2.52825230e-01 -5.04959822e-01\\n-3.87022458e-02 9.62376222e-02 1.11653693e-02 4.82677609e-01\\n1.01177104e-01 4.75580106e-03 -1.94290102e-01 -2.97577620e-01\\n3.24753970e-01 -1.71053261e-01 -1.12228245e-01 -1.06714204e-01\\n3.71257886e-02 -1.56514287e-01 -4.09128308e-01 3.04189771e-02\\n-8.75774473e-02 -1.98559880e-01 -2.12248638e-02 3.96063961e-02\\n1.56495839e-01 7.49918595e-02 -5.38079858e-01 -1.80572510e-01\\n-2.11260617e-01 4.53960299e-02 4.73914668e-04 -4.55058873e-01\\n5.21916039e-02 -2.65320726e-02 -5.96360683e-01 2.49133706e-01\\n-2.16501728e-01 -1.72815025e-02 1.95525765e-01 -2.01024115e-02\\n-4.61807728e-01 -1.38845056e-01 1.76314950e-01 1.75923079e-01\\n-3.57330948e-01 -3.15296113e-01 5.33151999e-02 -1.02236998e+00\\n1.91780090e-01 -9.61777866e-02 -1.16622925e-01 1.15673631e-01\\n7.14104846e-02 -6.96519852e-01 8.08185562e-02 -3.65290046e-01\\n-5.79128787e-03 6.44948259e-02 -1.99457601e-01 -3.20395589e-01\\n7.62744322e-02 -1.16553485e-01 -2.10152030e-01 4.63202327e-01\\n-4.96144295e-01 2.81551600e-01 -9.17651951e-02 5.04254699e-02\\n5.49955294e-02 -3.18094879e-01 1.46768942e-01 -3.12892437e-01\\n-4.53601778e-01 -2.32586071e-01 -2.63967574e-01 -3.86464596e-01\\n2.09685136e-02 -2.85497308e-01 -1.30863413e-01 9.20823216e-02\\n2.98231930e-01 -1.91106908e-02 -1.86114684e-01 -2.28986442e-01\\n9.53403413e-02 -4.53365326e-01 7.88550898e-02 -5.20132445e-02\\n-8.07747394e-02 -1.38689891e-01 1.98494166e-01 1.04011580e-01\\n1.51971757e-01 -3.57496649e-01 5.10936260e-01 -3.76024514e-01\\n-3.70997846e-01 -7.93536454e-02 8.58781338e-02 9.27861407e-03\\n2.19826415e-01 -6.54448628e-01 -3.50430086e-02 4.03188586e-01\\n2.05288291e-01 4.40065116e-02 2.04517663e-01 -1.41157478e-01\\n3.06737162e-02 2.29866520e-01 -3.89220595e-01 1.45663664e-01\\n8.67883027e-01 1.54450938e-01 1.05609357e-01 2.38801956e-01\\n1.47309422e-01 2.88691550e-01 4.74720836e-01 -1.02697149e-01\\n-7.43917674e-02 2.56745696e-01 1.39196903e-01 -4.64492112e-01\\n-1.52405024e-01 -3.56659181e-02 -2.19154991e-02 -2.70281553e-01\\n6.73882127e-01 3.77228737e-01 -4.49291468e-01 -3.12332600e-01\\n-9.88477319e-02 -7.93113112e-02 2.72883654e-01 -1.01410180e-01\\n1.26195177e-02 -1.69254273e-01 3.98905456e-01 -2.46471763e-02\\n2.85397083e-01 5.73866546e-01 -1.91057056e-01 -3.46286058e-01\\n-1.87313184e-01 2.07979783e-01 2.93491296e-02 4.31390464e-01\\n-1.44919842e-01 2.01590300e-01 -5.63432872e-02 1.80502191e-01\\n-1.46607757e-01 1.90563813e-01 1.00478768e-01 5.71591109e-02\\n2.05162674e-01 1.31151050e-01 3.90405834e-01 4.27460074e-01\\n3.74838233e-01 5.24707198e-01 2.74959713e-01 4.67869565e-02\\n4.93670940e-01 5.46043575e-01 4.72681075e-01 -1.02610551e-02\\n-8.42719972e-02 1.17959708e-01 1.00726373e-01 -7.90356100e-02\\n4.05645490e-01 3.19476247e-01 1.54250965e-01 9.33255613e-01\\n3.24126899e-01 3.79435778e-01 6.98691249e-01 -5.63847959e-01\\n-2.86700159e-01 5.67018837e-02 4.60928977e-01 -4.21892703e-01\\n4.04282734e-02 7.92097896e-02 -1.67069674e-01 2.26446718e-01\\n-4.92805004e-01 -8.33834186e-02 -3.79050709e-03 2.18010470e-02\\n1.09355494e-01 -4.77372482e-02 -2.17290044e-01 -3.26051340e-02\\n-2.41340756e-01 -2.43086696e-01 -4.19553876e-01 -2.16480732e-01\\n-2.07325071e-01 -7.10473359e-02 -6.01869412e-02 -2.17074305e-01\\n-7.99204633e-02 -3.56071323e-01 2.90904343e-02 3.05220857e-03\\n3.63231272e-01 -1.19046845e-01 -1.43253192e-01 -1.59353733e-01\\n3.66383731e-01 3.20502818e-01 6.39274836e-01 -1.33762375e-01\\n9.07671079e-03 -1.49128616e-01 -2.40885392e-01 1.49054140e-01\\n2.62479801e-02 1.16542861e-01 1.40212059e-01 2.67452806e-01\\n-2.76915550e-01 -8.46120864e-02 1.02654383e-01 3.54872227e-01\\n-3.72790039e-01 -7.65801072e-02 -9.86637399e-02 1.46286160e-01\\n-7.52954371e-03 1.39302641e-01 -2.87257373e-01 1.13631755e-01\\n-1.94109589e-01 -5.63626826e-01 4.52676833e-01 -1.88164040e-01\\n-1.44184843e-01 3.81145217e-02 3.99288416e-01 2.23205343e-01\\n-2.31812239e-01 2.88282707e-03 2.34621409e-02 2.06964642e-01\\n6.44229949e-02 3.45169842e-01 -1.61057010e-01 -2.84343541e-01\\n-3.56081724e-01 1.98329404e-01 -1.88631520e-01 1.26163512e-02\\n-1.43413007e-01 4.23739254e-01 -4.40278165e-02 3.40358168e-02\\n4.14370358e-01 -8.75738040e-02 -1.60119101e-01 -3.00972998e-01\\n-2.28682548e-01 -2.21214429e-01 7.98541121e-03 -1.97812542e-03\\n2.33695775e-01 -3.69636327e-01 -1.46578059e-01 -2.98409998e-01\\n2.15439349e-02 -2.49564201e-01 1.55617930e-02 4.02572230e-02]]',\n", + " 'job_description': \"60-100% Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum's scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master's degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer you The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Ido']\"},\n", + " {'company_id': '64',\n", + " 'job_title': 'back-end software engineer',\n", + " 'location': 'Chiasso',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-3.35816383e-01 6.42856285e-02 6.17190480e-01 -7.22094923e-02\\n6.01747274e-01 -1.70121282e-01 -1.42338872e-01 4.20830846e-01\\n-7.83537850e-02 -5.50096869e-01 -6.17809072e-02 -1.95279032e-01\\n-3.54207829e-02 1.98555112e-01 4.70523201e-02 4.87554282e-01\\n3.15138310e-01 -1.35895789e-01 -5.76310121e-02 1.52816206e-01\\n2.57867668e-02 -6.72990307e-02 -1.52405679e-01 7.77097881e-01\\n8.09336975e-02 6.91256598e-02 1.49383098e-01 1.05123580e-01\\n-2.73855031e-01 -1.59847155e-01 3.74778986e-01 8.82838368e-02\\n-2.52783537e-01 -2.16898084e-01 4.96213734e-02 2.16017172e-01\\n7.00714588e-02 1.37256622e-01 -2.31474325e-01 4.01288241e-01\\n-3.19918811e-01 -3.29550475e-01 5.06536104e-02 2.67343074e-02\\n-9.94760618e-02 -3.21008831e-01 2.20930353e-02 1.92332864e-02\\n2.87635833e-01 4.75739315e-02 -4.03760403e-01 2.56997406e-01\\n-3.03514421e-01 -3.23297024e-01 1.74764901e-01 4.80346471e-01\\n1.17518073e-02 -6.33487940e-01 -2.12561950e-01 -1.40187517e-01\\n-1.03921175e-03 5.20952456e-02 1.38530031e-01 -3.41934979e-01\\n3.09789240e-01 1.08210407e-01 -2.58142632e-02 2.83341438e-01\\n-4.82071251e-01 5.11103496e-02 -3.08139741e-01 -5.73741496e-02\\n-3.32230687e-01 6.14223070e-02 -4.44998205e-01 -2.36588761e-01\\n-2.51418322e-01 4.83292133e-01 -3.58375385e-02 1.45748034e-01\\n-6.45818596e-04 3.61956120e-01 -3.38535644e-02 2.35867634e-01\\n3.65718424e-01 4.82972622e-01 2.27682829e-01 4.58622932e-01\\n-4.51820046e-01 5.38606584e-01 3.09110165e-01 -4.87724245e-01\\n2.39958301e-01 3.49740312e-02 4.59356099e-01 4.28773046e-01\\n2.06471354e-01 2.79183388e-01 -2.39093885e-01 2.40214020e-01\\n1.07594959e-01 1.59498885e-01 -1.08709730e-01 -1.40734790e-02\\n-8.53286460e-02 -1.05843293e-02 -9.43391100e-02 1.63034096e-01\\n-5.38502753e-01 4.00397032e-01 4.99080271e-02 -3.32930267e-01\\n-1.19366810e-01 -5.39647281e-01 -3.50241691e-01 6.20675720e-02\\n4.84277569e-02 2.19983593e-01 9.93627161e-02 7.21137077e-02\\n3.23029160e-01 3.20430920e-02 7.45286644e-02 9.63083029e-01\\n-2.02344194e-01 1.19102322e-01 -2.42441848e-01 2.33480752e-01\\n1.39688775e-01 -3.04558158e-01 1.29850194e-01 3.91483009e-02\\n-8.75324383e-02 -7.72551000e-02 -3.37488025e-01 3.86875659e-01\\n-1.95673347e-01 -2.88348854e-01 -1.73076287e-01 4.63260524e-02\\n-2.48655185e-01 -2.65380979e-01 4.89898950e-01 -1.08684927e-01\\n1.98381674e-03 -9.66975614e-02 -1.58322845e-02 -3.54445390e-02\\n1.00233026e-01 3.44772756e-01 8.34914148e-02 5.36902994e-02\\n-5.11694431e-01 -4.36779797e-01 -3.03783178e-01 2.84493834e-01\\n-6.65749088e-02 2.09763587e-01 -3.01945418e-01 -1.86776165e-02\\n2.31497929e-01 8.79511237e-02 -4.85268354e-01 3.12542588e-01\\n2.17456315e-02 -2.78509766e-01 -2.09885702e-01 2.57758200e-01\\n9.64615867e-02 5.55989668e-02 1.49195805e-01 -2.03833535e-01\\n4.75604445e-01 9.80241075e-02 5.69358543e-02 -9.63634104e-02\\n4.76104945e-01 -1.40179083e-01 2.99713202e-02 2.86981463e-01\\n-6.02345586e-01 3.08412015e-01 -1.04783803e-01 1.07239746e-01\\n1.69108342e-02 1.06040619e-01 9.57944468e-02 -2.98631549e-01\\n8.76503438e-03 -1.96783587e-01 -2.49831021e-01 -4.22178358e-01\\n-2.47870728e-01 -1.42515436e-01 2.93561518e-01 -3.02431524e-01\\n-1.38605401e-01 1.31891131e-01 -3.43666703e-01 -5.58715127e-03\\n6.70685992e-02 2.32487813e-01 -3.87553573e-02 1.99939087e-01\\n-1.97937608e-01 -3.67844909e-01 5.58159761e-02 -3.95254970e-01\\n-3.53695869e-01 2.99876511e-01 -1.95069522e-01 2.55081691e-02\\n1.93304166e-01 -2.35439837e-02 3.10629327e-02 9.49155614e-02\\n-4.24087942e-01 2.68104076e-01 1.88005477e-01 1.91933308e-02\\n3.89228255e-01 -4.01305370e-02 -5.37776589e-01 5.66419125e-01\\n-1.85545653e-01 7.23235667e-01 1.54870406e-01 -8.35480452e-01\\n4.20975983e-01 2.11656854e-01 1.68891773e-01 -3.72700423e-01\\n5.18453121e-01 -4.04182345e-01 -1.38055742e-01 3.59585017e-01\\n-1.65474132e-01 -2.29561940e-01 1.97055191e-01 -7.38615021e-02\\n-4.02299374e-01 4.07181680e-01 5.95144890e-02 1.52975947e-01\\n3.21952641e-01 -2.55502313e-01 -6.85760304e-02 1.56512603e-01\\n-1.27258018e-01 -4.86520566e-02 -5.94821155e-01 -4.18094769e-02\\n4.03789151e-03 -4.26964968e-01 -1.52130336e-01 -6.55867159e-01\\n-2.37718254e-01 -3.17163259e-01 -3.86875808e-01 2.24158987e-01\\n3.11252810e-02 -4.02983539e-02 2.38340721e-01 -1.05310336e-01\\n2.56683342e-02 -4.74429846e-01 -2.14331940e-01 3.58576059e-01\\n2.67352134e-01 1.26342893e-01 -4.54920949e-03 1.92359939e-01\\n-3.28779817e-02 7.15677440e-01 -3.06654721e-01 -2.11589217e-01\\n3.25238347e-01 2.76177317e-01 -2.84643006e-02 -2.05232903e-01\\n1.37561839e-02 -8.08920786e-02 -2.59437621e-01 -1.30957007e-01\\n-1.23784222e-01 1.17745124e-01 3.43038172e-01 -3.54717046e-01\\n-3.65070045e-01 -1.05773032e-01 1.00951627e-01 1.14218324e-01\\n-6.78049862e-01 2.48626582e-02 5.63674212e-01 2.39516795e-01\\n1.70822199e-02 1.64149746e-01 3.76289904e-01 -3.76064718e-01\\n-1.89558700e-01 -2.23128408e-01 3.27466786e-01 3.17862213e-01\\n1.45042881e-01 2.49640960e-02 -1.76913198e-02 -7.57614970e-01\\n-3.75792313e+00 8.57777719e-04 1.12362444e-01 6.27834722e-02\\n2.02862218e-01 -2.43310899e-01 2.39974067e-01 -6.94024339e-02\\n-1.13785654e-01 1.25698835e-01 -9.99290645e-02 -1.24728359e-01\\n1.98647082e-01 1.32987127e-01 -1.04215138e-01 2.45599151e-01\\n1.97095439e-01 -1.52036725e-02 -3.54831256e-02 3.77410263e-01\\n-3.81051097e-03 -7.79102683e-01 2.77841866e-01 4.48227338e-02\\n2.86787182e-01 3.44916135e-02 -6.34835422e-01 1.58861697e-01\\n-2.18517557e-01 -2.87165254e-01 -7.23682567e-02 -3.22762996e-01\\n-1.95776150e-01 1.85507357e-01 2.05212399e-01 -1.46160558e-01\\n1.75211385e-01 -3.13255131e-01 -1.09669194e-01 -4.75046962e-01\\n2.25439921e-01 -5.89710951e-01 1.36708796e-01 -2.19931244e-03\\n6.59722686e-01 -4.25067574e-01 1.64826885e-01 -6.79916888e-02\\n1.35915399e-01 2.61513561e-01 -8.03083554e-02 -1.50689796e-01\\n-1.94884077e-01 -7.38067329e-02 6.27941191e-02 -2.38455102e-01\\n5.38707793e-01 1.94449335e-01 -4.06914234e-01 1.67456612e-01\\n-2.54792999e-02 -8.77490342e-02 -5.09262204e-01 -3.65274519e-01\\n-1.83140188e-01 1.63344309e-01 -7.43462801e-01 -5.17316520e-01\\n-1.13406919e-01 6.25036061e-02 -1.40360063e-02 7.30422437e-01\\n-2.13739216e-01 -5.74570537e-01 -1.10378318e-01 -5.10768533e-01\\n1.81564584e-01 -1.14835590e-01 1.32191211e-01 -2.49310017e-01\\n-3.20150018e-01 -4.15238380e-01 1.92050606e-01 2.55930121e-03\\n-3.35550308e-02 2.43580922e-01 4.32158649e-01 -1.22507177e-01\\n-4.38296467e-01 -4.22423750e-01 2.71958709e-01 2.90999770e-01\\n2.95629054e-01 1.93194017e-01 1.65813416e-01 -1.19192787e-02\\n5.99905476e-02 -7.62789696e-02 1.98687464e-02 -4.34738934e-01\\n8.82581323e-02 -1.21354975e-01 4.44716275e-01 -1.01036422e-01\\n-4.87516485e-02 2.76452243e-01 -7.29969516e-02 -2.06125274e-01\\n6.40399277e-01 -4.88228165e-02 1.61976188e-01 -1.55908853e-01\\n3.42644691e-01 -4.59012300e-01 -1.65247634e-01 1.22318797e-01\\n3.04336734e-02 6.30299747e-01 -1.48535684e-01 -5.98637938e-01\\n-1.30440623e-01 4.68776435e-01 -8.64978731e-02 -1.66776493e-01\\n-4.01799589e-01 2.15608433e-01 -4.09925371e-01 4.26518828e-01\\n1.48650289e-01 -2.96242267e-01 -2.60324746e-01 -1.94575295e-01\\n-1.33279756e-01 4.79072481e-02 3.49059790e-01 1.18741922e-01\\n-7.44105950e-02 -2.40232050e-01 -1.49964169e-01 1.93952754e-01\\n4.64527488e-01 3.73166502e-01 -3.82514447e-02 -2.86761880e-01\\n-9.58099216e-02 1.14247978e-01 -4.08111364e-01 1.69477180e-01\\n-1.87804252e-01 1.43015996e-01 -2.87762344e-01 -6.54500127e-02\\n-1.87959552e-01 -3.73775780e-01 -1.76899150e-01 3.34146976e-01\\n2.38246009e-01 -9.94237587e-02 -7.51638189e-02 -3.51595253e-01\\n3.65375012e-01 2.99315572e-01 1.44145817e-01 3.36403936e-01\\n3.69169600e-02 6.85654461e-01 -3.58373784e-02 -2.25517958e-01\\n-8.60656723e-02 -6.35516420e-02 -1.57183826e-01 5.28525338e-02\\n1.07586302e-01 -5.03348708e-01 -1.30449206e-01 3.70364606e-01\\n1.68821380e-01 -4.05244559e-01 -1.67480186e-01 4.89618242e-01\\n1.84112489e-01 -1.93187609e-01 4.27185977e-03 8.45783763e-03\\n3.04464817e-01 -9.98612680e-03 3.56901258e-01 -6.58673763e-01\\n-2.06787422e-01 -1.92642938e-02 -2.92614281e-01 4.40166354e-01\\n5.27594313e-02 5.67348450e-02 7.24702403e-02 -2.74958313e-01\\n4.33856547e-01 -2.47206792e-01 -2.25697622e-01 -2.28592604e-02\\n1.50242791e-01 -6.49525076e-02 -4.61358309e-01 2.75782254e-02\\n-3.08821738e-01 -2.62774974e-01 2.62675345e-01 4.57146317e-02\\n-4.47132178e-02 1.67790353e-01 -4.14286971e-01 -5.82846761e-01\\n-3.53388101e-01 -1.97387356e-02 -4.27904353e-02 -3.75893861e-01\\n9.08501633e-03 -6.65017366e-02 -8.49630296e-01 2.68503547e-01\\n-2.31322080e-01 -2.09441781e-01 1.14523493e-01 1.77974075e-01\\n-2.29824200e-01 -4.73155640e-02 8.62656981e-02 1.98720217e-01\\n-4.10640806e-01 -3.48075092e-01 -9.64708552e-02 -7.07181334e-01\\n1.71308279e-01 -1.46653831e-01 -1.00649484e-01 9.25418437e-02\\n-6.31624311e-02 -6.06906116e-01 1.50987104e-01 -1.49495289e-01\\n-3.55437666e-01 -1.37379512e-01 -1.01847455e-01 -4.61318463e-01\\n2.53213674e-01 1.75715968e-01 -2.42395282e-01 5.67250311e-01\\n-3.47685486e-01 3.32406044e-01 -1.42352164e-01 8.03012773e-02\\n6.28302619e-02 -3.29185724e-01 2.99085140e-01 -3.40220183e-01\\n-3.08522314e-01 -2.32166409e-01 -3.14598322e-01 -2.98940688e-01\\n6.21512607e-02 -2.22457528e-01 -3.32184464e-01 1.28930286e-01\\n2.80466437e-01 1.80993617e-01 4.31475602e-02 -1.97586969e-01\\n1.39958173e-01 -5.04913449e-01 1.52199402e-01 -1.08957708e-01\\n1.90965921e-01 6.96623698e-02 1.25898793e-03 -1.17911093e-01\\n2.14120112e-02 -2.39685923e-01 5.98533213e-01 -7.34719587e-03\\n-2.78458029e-01 -9.65006649e-02 2.46035252e-02 3.48818451e-01\\n2.61103898e-01 -4.74221855e-01 -2.54945248e-01 4.68349129e-01\\n8.04939792e-02 2.26050392e-01 1.88512772e-01 -2.12967411e-01\\n5.04330024e-02 3.53423767e-02 -3.50023806e-01 3.32645684e-01\\n3.67526323e-01 -3.37785925e-03 1.67977974e-01 2.51543671e-01\\n3.82700227e-02 4.10939723e-01 5.72789252e-01 -3.81168202e-02\\n-5.61047010e-02 3.30875367e-01 -7.79623315e-02 -4.44811285e-01\\n-7.21201524e-02 -1.70582533e-01 -2.69833237e-01 -5.99939585e-01\\n6.71412945e-01 3.72346014e-01 -3.56382817e-01 -2.16919720e-01\\n-9.74410996e-02 -1.05523549e-01 1.89534817e-02 -2.01386437e-01\\n-2.23510250e-01 3.12771276e-02 4.97825235e-01 2.26704292e-02\\n4.34335053e-01 4.09816504e-01 -3.59223396e-01 -1.99229077e-01\\n-2.11354330e-01 1.74170986e-01 8.07771012e-02 2.44595647e-01\\n-5.95522225e-02 2.14293167e-01 1.59969687e-01 1.55956745e-01\\n-2.35917643e-02 -2.31420249e-01 -5.04499003e-02 1.14397049e-01\\n3.52006704e-01 2.71467548e-02 2.73233622e-01 4.14565802e-01\\n2.59487867e-01 3.02392125e-01 3.12215894e-01 1.45298436e-01\\n4.32207942e-01 5.38762093e-01 4.77781028e-01 1.63617626e-01\\n2.24968717e-01 1.60065711e-01 1.63965255e-01 -6.65032789e-02\\n2.15722024e-01 4.54488605e-01 7.15093017e-02 6.38998032e-01\\n1.50694951e-01 2.65595198e-01 7.22460687e-01 -5.68424642e-01\\n-3.66467804e-01 -2.79041752e-02 2.95864046e-01 -1.96140707e-01\\n-2.43677661e-01 6.00007102e-02 -1.06351629e-01 9.87427086e-02\\n-6.03569150e-01 1.14045158e-01 2.79753655e-01 -9.10819024e-02\\n8.78136456e-02 9.09341150e-04 -3.05676073e-01 -3.40464897e-02\\n-1.90240964e-01 -2.73199156e-02 -3.69730622e-01 -2.92600542e-01\\n-2.62211829e-01 -1.65740550e-01 6.06591515e-02 -1.76774293e-01\\n8.94650221e-02 -2.50827253e-01 -2.07122788e-01 1.50647700e-01\\n2.41036505e-01 -9.02146846e-02 -8.19535926e-02 -3.13162468e-02\\n4.52656113e-02 1.90373674e-01 5.75016916e-01 7.95449242e-02\\n2.01677710e-01 -1.53858379e-01 -1.78880811e-01 8.76552239e-02\\n1.73068970e-01 4.31731790e-02 1.90317333e-01 3.86260301e-01\\n-5.74243963e-01 -2.61047959e-01 3.12430486e-02 5.24540722e-01\\n-3.88376117e-01 1.82737380e-01 -3.75962295e-02 2.69468427e-01\\n6.79673031e-02 3.92884500e-02 -3.25483978e-01 -6.94731027e-02\\n-1.36809319e-01 -5.12272358e-01 3.77437890e-01 -4.20546949e-01\\n-6.49380013e-02 -7.67480209e-02 1.24616556e-01 1.85142875e-01\\n-2.75748551e-01 -7.27195740e-02 -7.14258254e-02 3.16397339e-01\\n8.30367059e-02 2.59518534e-01 -3.49409670e-01 -6.62130415e-02\\n-2.81189322e-01 -5.58537468e-02 1.21889357e-02 2.98320875e-03\\n-6.72159195e-02 2.96684772e-01 3.03455323e-01 1.62705213e-01\\n3.82352948e-01 -9.82054397e-02 -3.30381185e-01 -2.31987685e-02\\n2.18656138e-02 -3.77537340e-01 7.63856992e-02 7.39148781e-02\\n2.82662243e-01 -2.27714270e-01 -3.12827788e-02 -2.38592684e-01\\n-1.88624546e-01 -4.33910638e-01 -1.36388570e-01 7.48383403e-02]]',\n", + " 'job_description': 'Il nostro cliente,realtà internazionale, leader nell’E- commerce. Principali responsabilità Designing, writing and testing clean code Create resilient, secure and performant applications Simplifying and improving the infrastructure, focusing on CI/CD Interact with all stakeholders Monitoring, identifying and correcting software defects. Contribute in the R&D Principali caratteristiche richieste Experience as a Software Engineer programming in Object Oriented languages ( Java, Python etc.) Willingness to work inside a team Knowledge of Italian and English Customer orientation',\n", + " 'soft_skills': '[\"Infrastructure\"]',\n", + " 'hard_skills': '[\"Object-Oriented Database\", \"Software Engineering\", \"Python (Programming Language)\"]',\n", + " 'languages': \"['English', 'Inupiaq']\"},\n", + " {'company_id': '69',\n", + " 'job_title': 'embedded software test engineer',\n", + " 'location': 'Lausanne',\n", + " 'industry': 'Computer Hardware & Software',\n", + " 'website': 'www.logitech.com',\n", + " 'jobdescription_embedded': '[[-9.34156105e-02 2.98122793e-01 3.71386051e-01 -1.83055717e-02\\n5.90397239e-01 -1.60107344e-01 1.18267402e-01 3.31731021e-01\\n5.24628982e-02 -3.34263772e-01 1.57871898e-02 -2.09307313e-01\\n-5.77568375e-02 -1.62353013e-02 6.28898665e-02 3.45525384e-01\\n3.67573649e-01 7.47879222e-02 -1.64087489e-01 4.42510694e-01\\n1.05450615e-01 -5.86515814e-02 2.21822294e-03 7.26883888e-01\\n3.38195682e-01 5.02461009e-02 -1.80358160e-02 -9.14717689e-02\\n-2.97953188e-01 -2.29515299e-01 3.99191320e-01 -5.12781963e-02\\n-1.25000745e-01 -3.80140036e-01 4.87980582e-02 -1.97782274e-03\\n-1.99093670e-01 -2.34183320e-03 1.86506007e-02 1.82071730e-01\\n-4.53278422e-01 -3.02952111e-01 3.20097134e-02 3.81033123e-02\\n-1.21122397e-01 -1.49080634e-01 1.87214658e-01 -5.37234843e-02\\n6.37098774e-02 7.35010207e-02 -3.80811900e-01 3.61265212e-01\\n-2.61334270e-01 -2.36605182e-01 3.92642677e-01 5.03224552e-01\\n1.24771804e-01 -4.92687225e-01 -4.51143622e-01 -3.46785635e-01\\n6.43982366e-02 -1.61184818e-02 6.71784207e-02 -3.77343655e-01\\n3.73558432e-01 3.83916982e-02 5.89052327e-02 2.36417577e-01\\n-8.19095135e-01 -8.85771215e-02 -2.59221196e-01 -8.46547037e-02\\n-2.46478438e-01 -1.90470412e-01 -2.75114238e-01 1.19271986e-02\\n-1.62822351e-01 3.21522504e-01 -1.93909034e-02 9.90565419e-02\\n-1.48583204e-01 2.56678313e-01 -1.27578750e-01 3.32987994e-01\\n2.60416090e-01 2.53535300e-01 3.23155910e-01 2.94633120e-01\\n-3.41523319e-01 4.86696899e-01 1.74464639e-02 -2.98157334e-01\\n2.39513054e-01 3.16728741e-01 3.65111560e-01 -4.55448665e-02\\n1.85736850e-01 1.22170597e-01 -2.80880630e-01 2.74416894e-01\\n1.93911940e-01 -3.05613279e-01 9.57019553e-02 4.67313230e-02\\n-9.96071007e-03 -4.49556671e-02 9.92796049e-02 1.99021250e-01\\n-5.10911763e-01 4.66439664e-01 1.84968174e-01 -2.12198034e-01\\n-4.18280922e-02 -3.50147694e-01 -1.17993779e-01 8.10690969e-02\\n4.14687209e-02 4.32058051e-02 2.53297806e-01 1.59330964e-01\\n2.93510437e-01 -6.19664043e-02 4.92197797e-02 7.14738548e-01\\n-9.35745537e-02 1.01830140e-01 -2.18978003e-01 2.81675875e-01\\n1.47764146e-01 -3.25830072e-01 1.09361596e-01 2.29919121e-01\\n6.93171471e-02 -3.90873775e-02 -2.86774576e-01 3.77312839e-01\\n-9.48498547e-02 -1.74859792e-01 -2.26057604e-01 1.95348740e-01\\n7.47624366e-03 -5.05872905e-01 6.28936410e-01 -8.30295905e-02\\n1.38565019e-01 -1.11496955e-01 5.27440794e-02 -4.46768887e-02\\n-1.38333976e-01 3.30088079e-01 1.87044725e-01 2.57665783e-01\\n-2.44536415e-01 -3.03635776e-01 -1.46853060e-01 9.71532613e-02\\n-3.52323681e-01 1.94670469e-01 -1.66279554e-01 -8.53593946e-02\\n2.10085064e-01 -7.11231753e-02 -3.78864229e-01 2.18108982e-01\\n1.91102009e-02 -2.69720587e-03 -3.95303741e-02 2.88794726e-01\\n-1.14175722e-01 2.45603651e-01 -4.60516550e-02 -8.62941667e-02\\n5.63765883e-01 1.96388587e-01 1.14911899e-01 -2.98366621e-02\\n2.97650933e-01 -8.95514339e-02 2.78599888e-01 1.59597933e-01\\n-7.98043728e-01 3.18208784e-01 -5.43581061e-02 -1.44927755e-01\\n1.04831904e-01 -1.33657202e-01 3.21095586e-01 -3.77775997e-01\\n-9.75373238e-02 -1.83907330e-01 -2.88133830e-01 -4.15737778e-01\\n-1.76690489e-01 -3.93798910e-02 2.46640846e-01 -3.85870814e-01\\n-9.83063877e-02 1.42818555e-01 -5.04140913e-01 -1.14022911e-01\\n2.45231256e-01 1.38353333e-01 1.44100726e-01 8.04143399e-02\\n-5.04455119e-02 -5.16178906e-01 8.85182023e-02 -3.44356954e-01\\n-3.11982334e-01 1.01745397e-01 -3.09149981e-01 2.17002243e-01\\n-2.87276208e-02 1.54536357e-02 4.08532657e-02 1.23724550e-01\\n-1.56963930e-01 -6.16095513e-02 1.00043014e-01 -4.09103520e-02\\n1.84916392e-01 7.64070451e-02 -3.15533936e-01 4.36944544e-01\\n-2.72097379e-01 5.04512370e-01 4.61088307e-02 -7.34573960e-01\\n5.44032991e-01 2.74736822e-01 -2.68743653e-03 -3.37996304e-01\\n4.78224158e-01 -2.89989740e-01 1.51831638e-02 1.01259179e-01\\n-3.13224047e-01 -2.32073709e-01 1.94492966e-01 -1.88762471e-01\\n-3.28761816e-01 4.84790862e-01 4.21694592e-02 7.31623471e-02\\n1.83257058e-01 -2.46229604e-01 8.88530612e-02 5.13840616e-02\\n-7.33103529e-02 -1.51238054e-01 -3.74164879e-01 -1.06327489e-01\\n-1.64972860e-02 -3.75170022e-01 -1.45423263e-01 -2.78407305e-01\\n-2.86904186e-01 -4.19337511e-01 -3.17872345e-01 1.94561988e-01\\n2.02014700e-01 1.62793994e-01 -3.37601639e-02 -3.46291699e-02\\n-1.94834635e-01 -6.94058001e-01 3.69634628e-02 1.57506302e-01\\n4.22419369e-01 2.86753356e-01 1.02366939e-01 -9.82573703e-02\\n4.14204970e-02 4.78947878e-01 -3.85837376e-01 -1.70296609e-01\\n1.67161852e-01 1.67026401e-01 -3.43905054e-02 -1.38640478e-01\\n3.04361880e-02 4.04102713e-01 -2.41856933e-01 1.15948558e-01\\n-3.26951295e-02 -4.24490683e-02 4.99991924e-01 -2.33093545e-01\\n-3.14700395e-01 -1.98641732e-01 -4.38342467e-02 1.94209054e-01\\n-5.08604527e-01 -2.38937020e-01 5.24096310e-01 1.98822960e-01\\n1.87700927e-01 1.80365294e-01 2.20984980e-01 -1.71366669e-02\\n-1.72324628e-01 -3.52866203e-01 2.42176145e-01 1.25279889e-01\\n1.01352878e-01 1.43404514e-01 -1.11984879e-01 -6.45070314e-01\\n-3.35766029e+00 -7.50974119e-02 1.44329295e-01 -2.23333508e-01\\n2.31818870e-01 -1.39093608e-01 1.26101047e-01 -4.85440791e-02\\n-3.06486338e-01 1.74139589e-01 -1.72047943e-01 -1.62733331e-01\\n6.97773769e-02 3.71185303e-01 1.28551662e-01 1.01064436e-01\\n1.29346371e-01 -3.65506679e-01 -8.61359760e-02 3.41655612e-01\\n-1.31532222e-01 -6.65489018e-01 1.19218037e-01 -5.20454459e-02\\n2.77141064e-01 3.69961172e-01 -4.25005317e-01 -7.42358863e-02\\n-2.07683623e-01 -1.95931360e-01 9.27617922e-02 -1.71525821e-01\\n-2.21992373e-01 2.06694409e-01 1.77281961e-01 -7.67200515e-02\\n-7.12807849e-03 -3.71478170e-01 -8.07525143e-02 -3.99099290e-01\\n1.75526291e-01 -6.04037702e-01 -9.45696160e-02 -5.88538051e-02\\n6.71798468e-01 -2.69513369e-01 1.87908918e-01 6.66286275e-02\\n1.90628082e-01 1.30377337e-01 6.68745339e-02 1.76048473e-01\\n-2.05381393e-01 -1.05351269e-01 3.28274667e-02 -1.79033816e-01\\n5.90955973e-01 3.54409575e-01 -3.02579373e-01 -7.11542275e-03\\n4.90379110e-02 -3.18085790e-01 -3.09844494e-01 -2.13880256e-01\\n-1.85247928e-01 -2.50413150e-01 -7.27705121e-01 -4.34325159e-01\\n-1.59566239e-01 -1.12527676e-01 -6.37997389e-02 6.50163591e-01\\n-4.51870203e-01 -3.58299464e-01 4.77826633e-02 -5.20035267e-01\\n1.92667708e-01 -1.27578706e-01 4.08517420e-02 -1.57278523e-01\\n-2.50458956e-01 -4.60938543e-01 -4.65954916e-04 8.39208141e-02\\n-1.12611793e-01 -2.17231110e-01 7.47719184e-02 2.58813296e-02\\n-4.01788563e-01 -4.90111053e-01 3.52446645e-01 2.95565873e-01\\n2.52991140e-01 4.55941148e-02 2.74944007e-01 -6.88822533e-04\\n3.74987245e-01 -8.07548761e-02 9.08790827e-02 -3.73791814e-01\\n8.47449824e-02 -7.57027417e-02 5.07707953e-01 -2.19666749e-01\\n-1.25196755e-01 2.00620204e-01 -3.34423453e-01 -1.00801282e-01\\n4.43096459e-01 -1.37260348e-01 5.68853952e-02 -4.80440557e-02\\n2.95572549e-01 -4.03545082e-01 -1.28749743e-01 7.48602077e-02\\n6.32034242e-02 7.66437113e-01 2.59044692e-02 -2.83896774e-01\\n-1.11377642e-01 4.74734068e-01 -1.77679062e-01 8.14085305e-02\\n-4.99611534e-02 -4.52888804e-03 -1.30044073e-01 2.22825199e-01\\n5.94548397e-02 -1.52195007e-01 -2.06532374e-01 -3.70570570e-02\\n-1.06365241e-01 2.89717615e-01 1.18581817e-01 3.77001390e-02\\n-1.41095713e-01 -2.92086780e-01 -1.26092747e-01 1.97994024e-01\\n2.28976205e-01 3.67080569e-01 1.96189955e-01 -2.72648245e-01\\n-2.10663807e-02 3.33359748e-01 -1.30129457e-01 2.91329116e-01\\n-2.36912087e-01 1.37847945e-01 -4.65287954e-01 -7.93198794e-02\\n-3.53871793e-01 -3.71894091e-01 1.79973198e-03 3.70445669e-01\\n1.52520105e-01 -1.44339725e-02 1.21691860e-01 -5.61255634e-01\\n2.02388704e-01 1.25967026e-01 1.75487220e-01 8.16112757e-02\\n-8.11057836e-02 4.41705227e-01 -4.01235744e-02 -1.53670967e-01\\n-2.13937476e-01 4.46166620e-02 -8.37707371e-02 -2.40137041e-01\\n2.38898411e-01 -5.48315823e-01 -2.38762535e-02 2.64493912e-01\\n1.19226433e-01 -3.27358484e-01 -1.76523343e-01 2.95744419e-01\\n1.96045334e-03 -3.54724765e-01 -3.40723634e-01 -7.15418160e-02\\n1.96183622e-01 4.36638705e-02 2.44265035e-01 -4.17963892e-01\\n-9.86169577e-02 -1.13566760e-02 -4.42854054e-02 2.68093526e-01\\n-7.46512562e-02 2.78807059e-02 -3.08953464e-01 -4.77221012e-02\\n3.93294156e-01 3.60303149e-02 -8.04866850e-02 -9.39890146e-02\\n1.92163095e-01 -2.98275739e-01 -6.10272527e-01 -7.03549013e-02\\n6.04974627e-02 -1.97691113e-01 1.12812385e-01 2.14696944e-01\\n7.60841072e-02 1.54709265e-01 -4.89906728e-01 -2.33959451e-01\\n-2.73941249e-01 -1.80059776e-01 7.44773969e-02 -5.09269595e-01\\n-7.67974257e-02 4.52831713e-03 -4.68887031e-01 1.67311877e-01\\n-1.62708014e-01 -6.99296221e-02 1.66711852e-01 5.22940047e-02\\n-3.28465044e-01 -1.59196645e-01 -8.76082778e-02 1.48062810e-01\\n-2.32151210e-01 -2.82478988e-01 -8.72927438e-03 -1.04721880e+00\\n1.95516780e-01 3.00774034e-02 -1.65024042e-01 -4.52637300e-02\\n-2.20215514e-01 -4.72917020e-01 2.12980807e-01 -4.20344502e-01\\n-5.81931584e-02 -3.82410809e-02 -2.85252690e-01 -2.33733475e-01\\n1.71302751e-01 -1.76386073e-01 -4.19903249e-01 3.93476278e-01\\n-3.31600934e-01 3.92938465e-01 -1.88736826e-01 4.04991917e-02\\n-9.36824530e-02 -1.00527234e-01 1.95911199e-01 -4.48448241e-01\\n-4.26281810e-01 -1.33688092e-01 -2.90393442e-01 -1.70614272e-01\\n-7.62985721e-02 -2.64191419e-01 -1.14296913e-01 -1.82606641e-03\\n2.40415454e-01 3.51694301e-02 -1.06558509e-01 -2.15705991e-01\\n6.05319217e-02 -5.58507860e-01 -1.81740429e-03 -2.10329935e-01\\n1.65351257e-02 -1.62637323e-01 1.22612908e-01 -2.37842277e-03\\n2.17064515e-01 -4.44761366e-01 3.83394271e-01 -4.13852811e-01\\n-3.13600153e-01 -9.29081365e-02 -4.10893597e-02 1.00953884e-01\\n3.12143326e-01 -5.58581531e-01 1.29696548e-01 3.75207692e-01\\n2.04471289e-03 1.22316116e-02 2.23230556e-01 -1.07784063e-01\\n-9.80189145e-02 2.03623086e-01 -3.74277502e-01 1.00098915e-01\\n7.09520042e-01 2.12046698e-01 2.06614226e-01 2.65512854e-01\\n1.87752679e-01 4.63841826e-01 4.44652796e-01 -7.35991634e-03\\n-9.74606052e-02 1.45252168e-01 1.21814251e-01 -5.27153134e-01\\n-3.12763527e-02 1.28435403e-01 -1.75775751e-01 -3.40202391e-01\\n6.05235934e-01 4.35827047e-01 -3.98099750e-01 -2.46804997e-01\\n-8.54732171e-02 -2.29142934e-01 2.64218897e-01 -3.83152477e-02\\n1.96511317e-02 -1.02720335e-01 5.27068079e-01 2.89011635e-02\\n2.75349915e-01 5.33577502e-01 -2.14683816e-01 -3.91476989e-01\\n1.96306314e-02 2.81012863e-01 9.29190144e-02 4.96767193e-01\\n-1.19453229e-01 1.40332505e-01 -1.14584699e-01 2.47436520e-02\\n-3.49716656e-02 1.74509153e-01 6.28122538e-02 1.87563032e-01\\n1.49507418e-01 7.39360377e-02 5.34260154e-01 4.25152063e-01\\n2.51576394e-01 3.51941198e-01 2.68792391e-01 6.54010177e-02\\n4.32257056e-01 5.48559070e-01 2.17495650e-01 -4.40778881e-02\\n-2.24149623e-03 1.84910700e-01 2.31132627e-01 -4.39464860e-02\\n4.35392171e-01 3.95131290e-01 -7.00465986e-04 8.15465748e-01\\n3.27355295e-01 2.35047519e-01 7.81482399e-01 -6.34549499e-01\\n-3.18778396e-01 2.41550058e-02 4.27508831e-01 -3.47043633e-01\\n4.14533690e-02 1.48229882e-01 -1.08390167e-01 3.61431956e-01\\n-3.59153211e-01 -2.13680148e-01 6.53633848e-02 1.53371006e-01\\n1.07713699e-01 -2.14654282e-01 -2.72048712e-01 -6.47475943e-02\\n-5.32793999e-02 -9.52077806e-02 -4.62224066e-01 -2.44744122e-01\\n-2.79400110e-01 2.39702128e-03 -7.06181303e-02 -4.37606387e-02\\n-1.62970200e-02 -3.24349195e-01 -8.19704160e-02 -2.07602791e-02\\n1.62718415e-01 -2.30663031e-01 -1.49800494e-01 -8.94402415e-02\\n3.20331812e-01 1.02860935e-01 5.07837713e-01 -8.76626894e-02\\n1.34611219e-01 -1.18993461e-01 -2.70787835e-01 1.11786261e-01\\n-1.08041214e-02 1.28051996e-01 1.12793706e-01 2.77702093e-01\\n-3.21554095e-01 -1.69121504e-01 1.18660182e-01 4.02507603e-01\\n-3.75234395e-01 -7.71309361e-02 -1.10477641e-01 2.26703092e-01\\n1.80890113e-01 8.74002501e-02 -1.71462864e-01 -2.33361479e-02\\n-2.02123746e-01 -5.28358936e-01 2.78569907e-01 5.09867966e-02\\n-1.70817137e-01 1.00278914e-01 2.53464162e-01 2.35750481e-01\\n-1.67150617e-01 1.75601430e-02 -8.04798752e-02 1.29910275e-01\\n3.94184478e-02 3.19144756e-01 -6.89344257e-02 -3.64373565e-01\\n-2.31060654e-01 2.63471723e-01 -1.46234572e-01 5.73140681e-02\\n-6.69301003e-02 2.64949501e-01 -6.10835664e-02 8.15340281e-02\\n3.57650042e-01 -1.72074754e-02 -1.70306027e-01 -2.68814862e-01\\n-1.00353256e-01 -1.19992025e-01 -6.40597716e-02 8.70066043e-03\\n8.31287876e-02 -3.67121726e-01 -8.89711380e-02 -1.76263958e-01\\n-3.27940448e-03 -2.25841776e-01 -8.39996785e-02 3.66403125e-02]]',\n", + " 'job_description': 'The Role: The Embedded Software Test Engineer is responsible for designing, implementing, reviewing and monitoring test automation. Your Contribution: Be Yourself. Be Open. Stay Hungry and Humble. Collaborate. Challenge. Decide and just Do. These are the behaviors you’ll need for success at Logitech. In this role you will: Participate in the development of a test automation framework. Leverage your technical skills to design & implement automation testing infrastructure. Establish formal frameworks, suites, standards and processes. Evaluate and develop new tools and processes to enable development of complex automation unit and integration test suites for our next generation devices. Collaborate with Business Owners, Architects, Firmware engineers to understand technical component requirements, business use cases, customer issues and system performance considerations to improve test effectiveness. Contribute to CI/CD from the testing perspective. Develop and enforce automation testing standards and best practices. Key Qualifications: For consideration, you must bring the following minimum skills and behaviors to our team: 3+ years in embedded software automation. Familiar with development best practices, including feature driven development. Experience with Continuous Integration (CI) processes and tools. Demonstrated programming skills in Python. Experience with using automation tools on Windows/Linux. Service oriented attitude, with strong analytical, problem-solving and conceptual skills. Ability to communicate highly technical concepts to non-technical individuals. In addition, preferable skills and behaviors include: Experience with Raspberry PI. Experience with Artix-7 FPGA design. Experience with CI/CD tools - Git, GitLab, Jenkins, Artifactory,etc. Experience with testing human interface devices. ISTQB certification. Education: BS / MS in Computer Science / Computer Engineering, or an equivalent combination of education and experience. Logitech is the sweet spot for people who are passionate about products, making a mark, and having fun doing it. As a company, we’re small and flexible enough for every person to take initiative and make things happen. But we’re big enough in our portfolio, and reach, for those actions to have a global impact. That’s a pretty sweet spot to be in and we’re always striving to keep it that way. “All qualified applicants will receive consideration for employment without regard to race, sex, color, religion, sexual orientation, gender identity, national origin, protected veteran status, or on the basis of disability.” #LI-ML3',\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Infrastructure\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Disabilities\", \"Automation\", \"Tooling\", \"Jenkins\", \"Programming (Music)\", \"Graphics Device Interface\", \"Field-Programmable Gate Array (FPGA)\", \"Computer Science\", \"Analytics\", \"Business Case Analysis\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Perspective (Graphical)\", \"Integrity Testing\", \"Python (Programming Language)\", \"Linux\", \"Test Automation\", \"Feature-Driven Development (FDD)\", \"Raspberry Pi\", \"Human Interface Guidelines\", \"Business Requirements\", \"Test Engineering\", \"Personalization\", \"Enforcement\", \"Firmware\", \"Test Suite\", \"Service-Oriented Modeling\", \"User Experience Design (UX)\", \"Receivables\", \"Computer Engineering\", \"Additives\", \"Git Flow\", \"Coloring\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Gitlab\", \"Artifactory\", \"Embedded Software\", \"Performance Systems Analysis\"]',\n", + " 'languages': \"['English', 'Polish', 'Chamorro', 'Bengali']\"},\n", + " {'company_id': '37',\n", + " 'job_title': 'data engineer ef education first - associate level',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Education Training Services',\n", + " 'website': 'www.ef.com',\n", + " 'jobdescription_embedded': '[[-7.13831335e-02 2.68712938e-01 5.48830986e-01 -4.31743711e-02\\n5.21940768e-01 -1.67066246e-01 4.45478074e-02 5.89715421e-01\\n-5.27753942e-02 -4.89541143e-01 -9.27176699e-02 -3.03665847e-01\\n-1.92509759e-02 1.33665353e-01 1.40386775e-01 3.85331780e-01\\n2.08407477e-01 1.43563733e-01 -2.08950177e-01 2.60225773e-01\\n1.23485737e-01 -1.18826583e-01 1.69246092e-01 7.96625495e-01\\n4.88331318e-01 -2.07768544e-03 -1.98247842e-02 -9.05586109e-02\\n-2.09431201e-01 -3.23135942e-01 4.59163219e-01 -5.85045330e-02\\n-1.80026218e-01 -3.68967324e-01 5.66360988e-02 -5.88107714e-03\\n-2.51680404e-01 -9.98953283e-02 -6.86669946e-02 1.97209686e-01\\n-4.87213641e-01 -2.98452914e-01 -1.55093381e-02 -4.09873612e-02\\n-3.11148912e-01 -3.80632073e-01 9.77071673e-02 3.67947854e-02\\n1.84638500e-01 1.02800563e-01 -4.32717264e-01 2.44622692e-01\\n-2.51461744e-01 -1.58534482e-01 2.56993383e-01 7.07744896e-01\\n-1.68754887e-02 -4.19182718e-01 -5.87125063e-01 -3.31701249e-01\\n1.58648759e-01 -9.95023400e-02 -1.40892677e-02 -2.77910113e-01\\n3.49790931e-01 2.48045269e-02 1.47327662e-01 2.40685910e-01\\n-6.85154259e-01 -6.83094636e-02 -2.23256782e-01 -2.86017153e-02\\n-2.40029916e-01 -1.45453392e-02 -3.41388822e-01 -9.27574709e-02\\n-1.55565903e-01 4.14132088e-01 4.27225754e-02 -1.30996769e-02\\n-1.47944003e-01 3.20776701e-01 -1.99172065e-01 4.37319696e-01\\n1.98036090e-01 2.80869067e-01 9.07239243e-02 2.61881948e-01\\n-3.86323720e-01 4.56956893e-01 1.30886525e-01 -3.28037798e-01\\n1.64370582e-01 6.92902282e-02 5.18994212e-01 -1.09715328e-01\\n1.11935712e-01 3.95040065e-02 -3.07159930e-01 3.28623056e-01\\n2.26784378e-01 -3.02808225e-01 1.18445635e-01 -9.15177464e-02\\n2.75544617e-02 -7.83294290e-02 1.22149296e-01 1.21135697e-01\\n-2.17962772e-01 3.96692365e-01 -5.71839046e-03 -2.28258803e-01\\n-9.52792987e-02 -5.46339333e-01 -7.99353141e-03 -1.18300999e-02\\n2.09644027e-02 7.82603323e-02 1.58882409e-01 1.96947828e-01\\n2.20907047e-01 -5.27852289e-02 1.53433830e-01 8.20567429e-01\\n-1.15729064e-01 2.87624858e-02 -3.65544707e-01 2.48024285e-01\\n5.38649522e-02 -3.51763725e-01 2.77504981e-01 1.74894050e-01\\n-4.04908918e-02 -1.52767166e-01 -1.86067089e-01 3.18166584e-01\\n-2.15057414e-02 -2.33161837e-01 -2.62625843e-01 2.13937521e-01\\n-5.19695990e-02 -3.47727090e-01 5.54340601e-01 8.26471671e-02\\n1.51873425e-01 -1.00771308e-01 -3.40677500e-02 -1.40321150e-01\\n-8.19023922e-02 3.80302742e-02 1.07732274e-01 -2.86382250e-02\\n-2.45429799e-01 -3.03641230e-01 -2.05550775e-01 6.61794320e-02\\n-2.77993590e-01 1.72421023e-01 -4.15852219e-02 -1.41670808e-01\\n2.59412378e-01 8.86371173e-03 -2.85456747e-01 2.97867745e-01\\n-1.53674692e-01 9.79248341e-03 -6.38451986e-03 3.80456299e-01\\n-2.63276577e-01 2.31363058e-01 -4.08444963e-02 -8.53994563e-02\\n5.64438283e-01 1.03420779e-01 1.14589408e-01 -1.02162883e-01\\n2.54717022e-01 4.62259129e-02 1.11438185e-01 1.44903317e-01\\n-7.10092902e-01 3.07486624e-01 -2.21159942e-02 -5.99461719e-02\\n1.79916009e-01 -1.00868776e-01 3.21888000e-01 -2.41313711e-01\\n6.19043072e-04 -9.98877361e-02 -2.78433561e-01 -2.65704662e-01\\n-1.21995308e-01 -8.79946649e-02 3.59849155e-01 -4.31571662e-01\\n-1.37589857e-01 2.01866716e-01 -4.76746887e-01 7.00860023e-02\\n9.44742784e-02 2.12313682e-01 1.78495303e-01 1.87152803e-01\\n-2.44722024e-01 -3.98013532e-01 1.10801257e-01 -3.03785920e-01\\n-2.17823133e-01 9.22078341e-02 -3.22812676e-01 1.95749447e-01\\n1.14573129e-01 1.41997576e-01 -1.64266780e-01 3.15525122e-02\\n-2.70967871e-01 -8.69031698e-02 1.52310625e-01 -9.12559219e-03\\n2.91625023e-01 6.99107125e-02 -3.57145488e-01 3.76401752e-01\\n-1.16416179e-01 5.27362704e-01 1.80935428e-01 -7.55879104e-01\\n4.55930114e-01 3.08919579e-01 -6.27308413e-02 -4.45452124e-01\\n5.85036278e-01 -2.09046766e-01 -4.08806838e-02 1.03890002e-01\\n-2.90055960e-01 -3.54207128e-01 2.21493304e-01 -1.06751956e-01\\n-2.14926898e-01 4.60274845e-01 4.31803800e-03 7.88214132e-02\\n1.87831357e-01 -1.56073689e-01 -9.34108868e-02 -9.47151519e-03\\n-2.05107816e-02 -1.56666800e-01 -4.77372229e-01 1.83835011e-02\\n-9.34585929e-02 -3.68961811e-01 -2.17227861e-01 -4.25705403e-01\\n-1.97244704e-01 -2.84532070e-01 -4.77311648e-02 1.88150033e-01\\n2.63245136e-01 -4.09824625e-02 9.84308198e-02 1.53723387e-02\\n-1.95845023e-01 -5.91944933e-01 -9.34703127e-02 7.79384524e-02\\n4.63563561e-01 2.23107547e-01 2.14337096e-01 -1.28215423e-03\\n1.50879368e-01 6.77174270e-01 -1.56564161e-01 -2.34799057e-01\\n1.40170127e-01 1.75392359e-01 9.98444855e-02 -1.30685970e-01\\n1.65973976e-01 2.75251418e-01 -2.91769654e-01 5.26739806e-02\\n-4.72565144e-02 -6.11450784e-02 3.45654070e-01 2.33171228e-02\\n-3.07081580e-01 -2.62908190e-01 5.55850156e-02 1.56849995e-02\\n-5.11130691e-01 -1.82921022e-01 5.78301668e-01 1.52453646e-01\\n1.23635463e-01 2.81612352e-02 8.34764242e-02 -1.02098500e-02\\n-5.94204180e-02 -1.54227093e-01 1.86254531e-01 5.52650541e-02\\n6.28160164e-02 1.71710938e-01 -5.18863536e-02 -6.17394626e-01\\n-3.13916326e+00 -1.27605498e-01 8.70268866e-02 -2.23092660e-01\\n2.21001789e-01 -1.28477111e-01 1.82656631e-01 -1.75802112e-02\\n-2.80088276e-01 2.08897870e-02 -1.42730489e-01 -9.79821905e-02\\n1.80087700e-01 1.76493883e-01 1.38014361e-01 3.01599711e-01\\n1.61845759e-01 -3.31117779e-01 -7.37131760e-02 4.71889198e-01\\n-1.47669032e-01 -6.29151940e-01 2.49845803e-01 4.69561033e-02\\n3.49155635e-01 1.54819503e-01 -4.21009243e-01 -1.89997628e-01\\n-2.28841797e-01 -1.95354596e-01 5.11328615e-02 -3.05028796e-01\\n-1.82475403e-01 2.09260032e-01 2.46516287e-01 -2.50196785e-01\\n2.25126401e-01 -4.45908338e-01 -7.02921376e-02 -5.01263738e-01\\n1.05987601e-01 -7.02100515e-01 3.90252061e-02 -9.39371586e-02\\n6.86094284e-01 -2.95523703e-01 9.63675976e-02 7.06995800e-02\\n9.67510790e-02 1.19490810e-01 9.00948569e-02 9.35866684e-02\\n-2.14881793e-01 -3.20908785e-01 -1.07006580e-01 -2.07213044e-01\\n5.64140558e-01 5.15030384e-01 -1.38298288e-01 -9.24741998e-02\\n1.29300535e-01 -2.90203065e-01 -4.80586827e-01 -3.05213213e-01\\n-1.26189753e-01 -9.50096622e-02 -7.49234438e-01 -4.99551147e-01\\n-1.14083238e-01 -1.59414485e-01 -8.46208036e-02 4.93285179e-01\\n-2.55941391e-01 -3.19047481e-01 -9.36704427e-02 -5.97325861e-01\\n3.25245112e-01 -1.13075592e-01 3.44722234e-02 -2.65649736e-01\\n-1.76887959e-01 -4.79935408e-01 1.09366938e-01 5.54132573e-02\\n-1.69700179e-02 -3.43682349e-01 8.82017165e-02 -1.47823736e-01\\n-2.26915210e-01 -6.03165329e-01 4.53798473e-01 1.25047445e-01\\n3.33470970e-01 2.02171013e-01 2.92658865e-01 -3.75372134e-02\\n3.05391252e-01 -2.64529828e-02 6.26453757e-02 -4.04180646e-01\\n9.04138684e-02 1.32592171e-02 4.54954416e-01 -1.53502911e-01\\n-1.97766829e-04 7.95999691e-02 -1.52082741e-01 -1.28754675e-01\\n3.31119746e-01 -9.92281269e-03 7.64469057e-02 -1.14746928e-01\\n2.44977131e-01 -3.09446484e-01 -2.09425151e-01 -6.05222536e-03\\n1.37601197e-01 5.31468451e-01 -3.53007801e-02 -4.13755596e-01\\n-1.79686502e-01 4.08746779e-01 -4.63801250e-02 1.18333444e-01\\n-2.23730862e-01 1.13763496e-01 -2.52912372e-01 2.69637018e-01\\n-2.78718509e-02 -2.26117522e-01 -3.15797627e-01 -1.83173761e-01\\n4.28928882e-02 3.45161378e-01 2.05633178e-01 2.18997508e-01\\n3.32254916e-02 -3.93077731e-01 -6.87589571e-02 2.38591313e-01\\n1.96190283e-01 5.15604436e-01 7.86670074e-02 -1.64035812e-01\\n1.31621305e-02 3.70633841e-01 -2.18468681e-01 2.90395141e-01\\n-2.37421796e-01 1.10710837e-01 -5.13327539e-01 -2.85359085e-01\\n-3.10449094e-01 -3.18995565e-01 1.70534283e-01 3.50027710e-01\\n1.12887070e-01 -6.62314966e-02 1.07193813e-02 -4.18144643e-01\\n2.86941379e-01 5.77094639e-03 1.50794238e-01 2.21258223e-01\\n9.35514048e-02 6.36898577e-01 1.54077202e-01 -2.36396238e-01\\n-1.74863771e-01 1.07087895e-01 -1.36547104e-01 -1.22860111e-02\\n4.81486917e-02 -4.78642851e-01 -1.21583499e-01 4.45488632e-01\\n1.36594296e-01 -1.82137117e-01 -9.58000943e-02 2.59965807e-01\\n-1.27143105e-02 -2.29163289e-01 -1.79696277e-01 6.18980527e-02\\n2.41429090e-01 1.33856624e-01 2.80803919e-01 -4.75254416e-01\\n6.59961207e-03 -7.48020336e-02 -4.07617204e-02 4.58080322e-01\\n2.26680059e-02 1.42067913e-02 -1.06166795e-01 -1.05436996e-01\\n3.73385161e-01 -1.11556262e-01 -8.60560238e-02 5.09797595e-02\\n1.02307603e-01 -2.50768691e-01 -4.23362404e-01 1.13883607e-01\\n-7.35991597e-02 -1.86456949e-01 -6.44132271e-02 1.71926588e-01\\n9.11646113e-02 1.05796441e-01 -5.75231612e-01 -2.11849734e-01\\n-2.14949906e-01 2.62124408e-02 -1.00850143e-01 -4.60794330e-01\\n-3.16246599e-02 -6.07812107e-02 -4.97432351e-01 1.97956875e-01\\n-2.18977720e-01 -4.28529158e-02 2.62351066e-01 2.73256488e-02\\n-3.28045189e-01 -5.87259717e-02 9.93866622e-02 2.53748715e-01\\n-2.47936323e-01 -2.53832012e-01 -7.88784549e-02 -9.66813445e-01\\n8.95514935e-02 4.75212336e-02 -1.68126404e-01 1.61822438e-01\\n-1.59288064e-01 -6.35768652e-01 1.31555945e-01 -3.65607709e-01\\n-2.67166346e-01 -8.22343901e-02 -1.74507141e-01 -4.73198175e-01\\n8.38323683e-02 4.99980301e-02 -2.54873902e-01 3.38549376e-01\\n-2.65259117e-01 2.65541703e-01 -1.41262308e-01 5.54067679e-02\\n2.20962912e-02 -2.62250602e-01 1.55997574e-01 -4.51870441e-01\\n-3.10551822e-01 -1.39656037e-01 -3.19957227e-01 -2.54593998e-01\\n-2.19257604e-02 -2.59118289e-01 -2.23030761e-01 9.88457352e-02\\n2.91177660e-01 8.41098651e-02 -1.15374498e-01 -1.59809843e-01\\n7.46977702e-02 -5.33654332e-01 9.09858048e-02 -1.14166833e-01\\n-5.65610602e-02 -1.65707082e-01 3.12940776e-01 1.77297257e-02\\n1.32765800e-01 -3.61309022e-01 4.66877818e-01 -3.46883267e-01\\n-3.54196429e-01 -6.42637461e-02 6.16060235e-02 -3.88318039e-02\\n3.34254920e-01 -4.38408792e-01 2.62832157e-02 3.56866837e-01\\n1.40200034e-01 1.70936808e-01 2.07970858e-01 -1.75544649e-01\\n-1.86026648e-01 3.39122087e-01 -4.99673784e-01 -1.20304562e-02\\n7.47456789e-01 7.01971054e-02 1.82522744e-01 2.13648006e-01\\n1.30306005e-01 1.94348395e-01 3.93598169e-01 6.85305074e-02\\n-2.08614364e-01 2.77723223e-01 3.75845358e-02 -5.12498677e-01\\n-2.73742285e-02 1.55909555e-02 -2.28356943e-01 -4.58390236e-01\\n6.10684872e-01 4.33689624e-01 -4.65060145e-01 -2.18137279e-01\\n-1.83053926e-01 -2.01842666e-01 1.09394066e-01 -7.99208134e-02\\n9.16358083e-02 -8.99005979e-02 3.86361003e-01 -6.32352754e-02\\n2.21016839e-01 5.28857827e-01 -1.28057778e-01 -2.32101157e-01\\n-5.34384921e-02 1.00591600e-01 -1.40818572e-02 4.34716314e-01\\n-2.29571342e-01 3.48156273e-01 5.59089631e-02 1.51447460e-01\\n-1.54795915e-01 7.38499910e-02 8.48646760e-02 6.97239907e-03\\n8.16447437e-02 1.73018903e-01 4.22664136e-01 3.75741690e-01\\n3.35442483e-01 3.80889952e-01 2.90468633e-01 4.76717688e-02\\n4.38380539e-01 4.09026742e-01 4.32644635e-01 1.39618129e-01\\n3.43482234e-02 9.28358361e-03 1.60197884e-01 6.86306506e-02\\n3.12051982e-01 2.57358909e-01 6.90622255e-02 9.46969986e-01\\n2.44098276e-01 2.37869844e-01 7.52016842e-01 -5.97580492e-01\\n-3.42552543e-01 -1.16324173e-02 4.27714765e-01 -6.05044127e-01\\n-5.65975942e-02 1.65098578e-01 -2.56243080e-01 1.50134608e-01\\n-4.60014254e-01 -3.49378169e-01 -6.31586090e-02 1.92720383e-01\\n-7.96000957e-02 -1.39946938e-01 -2.41793036e-01 1.49368078e-01\\n-6.48017228e-02 -9.06797424e-02 -5.36240458e-01 -1.89643174e-01\\n-9.18619037e-02 -1.68333188e-01 -1.63700432e-01 -1.73725769e-01\\n-2.14935139e-01 -2.39658326e-01 -9.19167418e-03 -3.50553468e-02\\n2.57400453e-01 -1.26432702e-01 7.88807347e-02 -2.17238739e-01\\n3.28027993e-01 2.07587048e-01 5.00584126e-01 -7.60600623e-03\\n1.81865185e-01 -2.44340435e-01 -2.25482523e-01 7.38184080e-02\\n2.28666022e-01 6.88113412e-03 8.66552591e-02 2.78624058e-01\\n-2.00570881e-01 -1.67664587e-01 1.27727315e-01 3.53889376e-01\\n-3.94326687e-01 4.02186811e-02 -2.54571959e-02 2.19157308e-01\\n6.57689795e-02 1.21368185e-01 -1.87020943e-01 1.50549933e-01\\n-2.47281700e-01 -3.92455041e-01 1.66152492e-01 -7.51631558e-02\\n-1.01014964e-01 5.29704690e-02 2.45454937e-01 1.69752434e-01\\n-3.15871954e-01 1.14148818e-01 -6.88738227e-02 1.78047195e-01\\n2.15988066e-02 2.87830561e-01 -2.20087335e-01 -1.90772191e-01\\n-2.95863628e-01 2.28187561e-01 -1.68326214e-01 6.93639368e-02\\n6.39170222e-03 4.02594477e-01 2.28410633e-03 -2.81913187e-02\\n5.03594518e-01 -1.87721044e-01 -2.00153977e-01 -2.87870377e-01\\n-2.18039900e-01 -1.29720658e-01 -7.76425600e-02 -1.31955951e-01\\n2.09464073e-01 -4.49019969e-01 -6.10463805e-02 -1.79197833e-01\\n-1.27301276e-01 -4.15583700e-01 8.53738487e-02 -1.39782622e-01]]',\n", + " 'job_description': 'EF Travel, the flights division of EF Tours, is currently looking for a Data Engineer to join our BI team in Zurich, Switzerland. We are an autonomous and dynamic BI team working on a multitude of technical solutions for EF’s flights department. We provide vital functions in the areas of technical development, business intelligence and innovation and everything we do has a direct impact on our business. We enjoy a fantastic work environment right on the doorstep to the Swiss Alps. As a Data Engineer your main focus will be to provide all the back-end development and architecture for supporting our operational and executive deliveries. We expect you to be forward thinker, innovative and ready for a position where you will get to make an impact from day one. The role Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Requirements Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English About EF Since 1965, we have helped millions of people transform their lives by opening the world through education. Today we are the world’s largest private education company - offering every imaginable way to learn a language, travel abroad, experience another culture, or earn an academic degree. We offer competitive salaries and a multicultural working environment. The position is situated in Zurich, Switzerland and you will be working with people from all over the world. What’s it like to work here? https://vimeo.com/111638911 and https://www.youtube.com/watch?v=fGlnMgNtivw',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Imagination\", \"Problem Solving\", \"Operations\", \"Innovation\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Computer Science\", \"Analytics\", \"Data Engineering\", \"Data Warehousing\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"AWS Directory Service\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Business Intelligence\", \"Cloud Services\", \"Dimensional Modeling\", \"Library For WWW In Perl\", \"SQL Server Integration Services (SSIS)\", \"Big Data\", \"End Systems\", \"Adapter Scripting Language\", \"Front End (Software Engineering)\", \"Technical Solution Design\", \"Back End (Software Engineering)\", \"Vimeo\", \"Business Development\"]',\n", + " 'languages': \"['English', 'Aragonese', 'Sindhi', 'Komi', 'Kalaallisut']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software development engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'job_description': 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " 'soft_skills': '[\"\"]',\n", + " 'hard_skills': '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " 'languages': \"['English', 'Romanian', 'Pali']\"},\n", + " {'company_id': '101',\n", + " 'job_title': 'data engineer (f/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Publishing',\n", + " 'website': 'www.ringier.ch',\n", + " 'jobdescription_embedded': '[[-2.21339568e-01 3.32948804e-01 5.21537483e-01 -1.09061390e-01\\n3.77794385e-01 -8.46463665e-02 4.29063067e-02 2.67413437e-01\\n2.62118727e-02 -4.50310975e-01 1.63530670e-02 -3.19911480e-01\\n3.03424634e-02 1.26190424e-01 -9.65379737e-03 5.62466443e-01\\n9.97163728e-02 1.40056476e-01 -2.16456249e-01 2.88013935e-01\\n1.28198087e-01 -2.53529578e-01 9.98515114e-02 7.82235622e-01\\n4.80163842e-01 3.31212878e-02 -5.84156252e-02 2.12869067e-02\\n-1.98817372e-01 -2.11881116e-01 5.60689509e-01 7.23402128e-02\\n-8.20451230e-02 -2.36414388e-01 1.75992940e-02 1.33445963e-01\\n-2.47076631e-01 -6.09802641e-02 -1.36562198e-01 1.68517709e-01\\n-4.09348309e-01 -3.43740106e-01 -6.23729564e-02 -5.10225259e-02\\n-1.80153161e-01 -3.98119718e-01 -1.35800242e-01 -2.26904154e-02\\n9.06953439e-02 9.57558453e-02 -5.42363107e-01 3.08127731e-01\\n-2.63466150e-01 -1.45057470e-01 1.78189993e-01 6.71485841e-01\\n-5.67081980e-02 -4.23804283e-01 -4.76036668e-01 -2.96951145e-01\\n-1.59935467e-02 -5.41026331e-02 5.50490282e-02 -2.85341114e-01\\n2.62950748e-01 5.54916449e-03 -8.02627504e-02 3.57068032e-01\\n-7.26632953e-01 1.63797103e-02 -2.77980268e-01 -3.76063935e-03\\n-3.10728282e-01 2.38131527e-02 -3.23204637e-01 -1.75947353e-01\\n-1.23259068e-01 4.68127072e-01 1.48459494e-01 2.33665667e-02\\n-2.39144087e-01 2.75524080e-01 -1.81541547e-01 2.96964049e-01\\n2.53156871e-01 1.42507061e-01 2.18049750e-01 3.42153043e-01\\n-2.91039705e-01 2.90715694e-01 2.33685419e-01 -3.95796806e-01\\n2.77512014e-01 1.71331521e-02 3.28621089e-01 -3.50655913e-02\\n1.01223305e-01 1.02785453e-01 -2.07733572e-01 3.33759516e-01\\n3.46130192e-01 -2.29239359e-01 3.00393924e-02 -9.21131596e-02\\n4.71666344e-02 4.02891450e-02 7.65975639e-02 1.01677224e-01\\n-2.47157097e-01 3.11908245e-01 5.86005002e-02 -2.80121654e-01\\n-1.70500040e-01 -5.45684993e-01 -5.40200211e-02 1.31495073e-01\\n4.24584784e-02 1.64773688e-01 2.11145237e-01 1.28846884e-01\\n1.92167252e-01 -6.93221018e-03 1.28653601e-01 8.46912503e-01\\n-2.25401446e-02 9.75135423e-04 -3.51230055e-01 4.01724666e-01\\n9.24467817e-02 -2.96024442e-01 2.49374226e-01 7.74811283e-02\\n-1.03565184e-02 -2.36967742e-01 -3.29737186e-01 3.28192472e-01\\n-5.49943522e-02 -2.22263604e-01 -2.43997648e-01 5.54276928e-02\\n-3.22996452e-02 -2.79397845e-01 4.83805358e-01 1.38968736e-01\\n2.20500335e-01 -9.35575739e-02 2.39511505e-02 -2.21739963e-01\\n-6.05827607e-02 5.29258437e-02 -2.16957219e-02 -2.63793136e-05\\n-2.53477573e-01 -3.24348181e-01 -2.32102200e-01 1.80027336e-01\\n-2.86530375e-01 1.56430796e-01 -1.76612288e-01 -6.24089241e-02\\n2.58253604e-01 -1.28032416e-02 -3.54021847e-01 1.61346987e-01\\n-4.63946126e-02 -1.59522116e-01 -8.39224234e-02 3.92680466e-01\\n-2.41798371e-01 8.21949020e-02 6.32624775e-02 -2.48940170e-01\\n5.12867928e-01 1.13553628e-01 2.48042300e-01 4.16389368e-02\\n8.14519450e-02 -2.68385336e-02 1.06455930e-01 1.80490091e-01\\n-5.87882221e-01 3.81037861e-01 -9.26913545e-02 1.61094661e-03\\n1.39414266e-01 2.02149656e-02 3.24270874e-01 -2.21438572e-01\\n9.95086227e-03 -5.11142313e-02 -2.93721765e-01 -2.45416045e-01\\n-1.96389213e-01 4.72420454e-02 2.38479257e-01 -3.89330626e-01\\n-1.88524589e-01 2.53471255e-01 -5.20789087e-01 -1.37534618e-01\\n5.91073856e-02 1.13632254e-01 2.48622932e-02 9.18915048e-02\\n-2.72554547e-01 -5.33030391e-01 2.17961259e-02 -4.18742955e-01\\n-3.84004474e-01 -7.23593235e-02 -2.89564312e-01 1.83225960e-01\\n1.24636173e-01 1.18714713e-01 -1.68215305e-01 1.03726111e-01\\n-2.43515477e-01 2.58674808e-02 8.64855200e-02 1.74100101e-01\\n3.19960147e-01 9.46213827e-02 -4.64704573e-01 4.43769604e-01\\n-1.17641829e-01 5.16204774e-01 1.92195192e-01 -8.34389508e-01\\n5.05594909e-01 2.70900041e-01 2.21737707e-03 -2.84730107e-01\\n5.47165036e-01 -3.77018034e-01 -2.94009522e-02 5.52583672e-02\\n-3.08404595e-01 -1.93031043e-01 4.16879892e-01 -1.60771072e-01\\n-7.30689913e-02 3.98438036e-01 -9.81977116e-03 9.71471965e-02\\n3.19877446e-01 -2.30406001e-01 -2.66688019e-01 -5.80235757e-02\\n-7.54019842e-02 -9.18973461e-02 -4.55757618e-01 -4.72988598e-02\\n-2.54878372e-01 -4.14622545e-01 -4.37257849e-02 -4.15515095e-01\\n-8.69054720e-02 -2.31602862e-01 -1.20961785e-01 2.38178089e-01\\n8.33043456e-02 4.72117700e-02 8.90766904e-02 3.95443253e-02\\n-7.87479132e-02 -5.71414649e-01 -1.63192019e-01 1.66278347e-01\\n4.14086223e-01 1.55135542e-01 1.40395075e-01 1.41212745e-02\\n5.28006209e-03 6.21639371e-01 -4.23974171e-02 -3.55141282e-01\\n3.87218446e-02 1.90952003e-01 7.65133053e-02 -9.97724757e-02\\n6.13411888e-02 1.09303989e-01 -2.07727134e-01 -1.00893140e-01\\n-4.77455258e-02 -6.10857795e-04 4.09484416e-01 1.16450749e-01\\n-4.55549538e-01 -1.18185245e-01 4.81378213e-02 1.63738593e-01\\n-5.60742378e-01 -9.89570096e-02 5.23481250e-01 2.09725082e-01\\n1.13428019e-01 1.06557295e-01 1.38113052e-01 -7.81810284e-02\\n-3.17570925e-01 -8.90359879e-02 2.18938962e-01 1.45416245e-01\\n1.80541407e-02 3.15226205e-02 6.76288903e-02 -6.89363360e-01\\n-3.49819326e+00 -2.27846429e-01 1.05203032e-01 -2.01431349e-01\\n2.64721036e-01 -8.93038511e-02 1.84095979e-01 6.21491764e-03\\n-3.18670243e-01 1.48661345e-01 -8.73858556e-02 -1.22880444e-01\\n1.32736698e-01 1.71880350e-01 6.28521070e-02 3.90443653e-01\\n1.85975045e-01 -1.68408081e-01 -1.62490785e-01 2.36625612e-01\\n-3.59035432e-02 -6.82243049e-01 2.55661875e-01 6.27539083e-02\\n9.20788497e-02 6.61383495e-02 -2.57303923e-01 -1.68362744e-02\\n-2.34525412e-01 -3.07894498e-01 7.74410963e-02 -4.36295092e-01\\n-2.24128902e-01 1.55274764e-01 2.01178983e-01 -2.20401794e-01\\n-4.14236099e-04 -3.61388564e-01 -2.01708283e-02 -4.00004297e-01\\n1.68936998e-01 -5.08991659e-01 1.82269067e-01 -1.12593308e-01\\n7.25072026e-01 -2.93344438e-01 5.05022518e-02 3.73460129e-02\\n9.59067345e-02 1.66623086e-01 1.65567473e-01 8.96177813e-03\\n-2.02915952e-01 -3.87629747e-01 -6.40903860e-02 -1.35072052e-01\\n5.65366566e-01 4.81709898e-01 -7.94811919e-02 1.85338661e-01\\n6.00569062e-02 -1.72653407e-01 -5.35628676e-01 -3.60222280e-01\\n-1.37306467e-01 -1.46210209e-01 -7.93308854e-01 -4.67688978e-01\\n-1.78539962e-01 -2.24142715e-01 -1.31210640e-01 5.67625344e-01\\n-2.20824108e-01 -4.09496158e-01 -1.31385282e-01 -5.06641746e-01\\n3.77873272e-01 -2.10568205e-01 1.01162210e-01 -2.86374152e-01\\n-3.21356952e-01 -4.38999176e-01 5.07504158e-02 -2.50015948e-02\\n-1.48679510e-01 -1.67705491e-01 -1.07310839e-01 -1.05281472e-01\\n-3.07186276e-01 -4.85450804e-01 3.94733787e-01 1.01615176e-01\\n2.31039777e-01 1.66776702e-01 3.03924650e-01 1.96505878e-02\\n1.21979117e-01 -9.85476449e-02 -1.64920092e-03 -2.58918315e-01\\n7.13613778e-02 -2.23752093e-02 4.94889110e-01 -2.84882039e-01\\n1.34920999e-01 2.05075905e-01 -1.85510904e-01 -1.63400486e-01\\n3.54665458e-01 8.14579427e-03 8.15621093e-02 -5.56912161e-02\\n2.57211804e-01 -5.30502558e-01 -1.14387006e-01 -1.86770819e-02\\n6.47148192e-02 5.99013746e-01 1.51995895e-02 -5.13190150e-01\\n-8.75020474e-02 5.16825795e-01 3.52981798e-02 1.65443926e-03\\n-3.26047868e-01 1.24059571e-03 -3.34650934e-01 3.04876924e-01\\n5.52906580e-02 -2.23642007e-01 -3.15600842e-01 -2.74255782e-01\\n2.59401761e-02 4.03218091e-01 2.55355775e-01 3.71819884e-02\\n2.41028853e-02 -3.09636265e-01 -2.37869725e-01 7.62229264e-02\\n2.45881185e-01 4.01467651e-01 1.59338340e-01 -1.69465333e-01\\n8.06225240e-02 2.17729792e-01 -1.59622937e-01 1.71539590e-01\\n-2.58131862e-01 1.88464731e-01 -5.45787156e-01 -2.59933472e-01\\n-1.59535959e-01 -3.62506598e-01 1.83262199e-01 4.32456434e-01\\n1.03895321e-01 4.91809249e-02 1.58791095e-02 -4.02266711e-01\\n2.35944256e-01 1.53074533e-01 1.31053254e-01 1.87482640e-01\\n7.00065717e-02 6.28255665e-01 1.14772767e-02 -7.40514994e-02\\n-6.04153685e-02 -5.53627200e-02 -1.03521302e-01 -1.64980173e-01\\n6.22061305e-02 -3.83897841e-01 -1.37278780e-01 5.59531629e-01\\n1.39768735e-01 -2.00229481e-01 -1.65402815e-01 2.90638953e-01\\n-7.58429617e-03 -2.01506287e-01 -1.90818951e-01 2.70091176e-01\\n2.99268037e-01 1.17335550e-01 3.60481203e-01 -4.05456126e-01\\n-1.21399440e-01 -1.32686973e-01 -9.54687670e-02 5.01705289e-01\\n5.65772168e-02 1.28658161e-01 -1.40762672e-01 -1.47722796e-01\\n5.14989734e-01 -3.84491384e-02 -6.05077893e-02 6.82774633e-02\\n-2.77409144e-02 -2.18442231e-01 -4.14348871e-01 1.29939198e-01\\n1.02170948e-02 -3.34087849e-01 6.27580285e-02 -3.30391452e-02\\n-7.58014619e-02 1.33947209e-01 -7.91175187e-01 -3.56216729e-01\\n-2.33468816e-01 -1.38440803e-01 5.96513646e-03 -4.12874043e-01\\n-7.22120935e-03 -1.83802828e-01 -6.36002302e-01 3.11743140e-01\\n-1.25684723e-01 -1.38357162e-01 1.74343541e-01 1.51206210e-01\\n-2.63751537e-01 2.81110182e-02 1.17190868e-01 4.20114756e-01\\n-2.60737300e-01 -2.44021773e-01 -6.04926646e-02 -8.67284834e-01\\n2.32983977e-01 7.66754299e-02 -7.96165913e-02 1.75879076e-01\\n-1.22499041e-01 -6.62180483e-01 1.79554671e-01 -2.51656234e-01\\n-1.25518501e-01 -5.74263036e-02 -2.09781066e-01 -3.23630065e-01\\n1.77008227e-01 -4.35232669e-02 -1.90129921e-01 4.34391409e-01\\n-3.88299584e-01 2.41702184e-01 -1.21983975e-01 1.52090266e-01\\n7.09706768e-02 -1.58045590e-01 1.92421094e-01 -4.06230241e-01\\n-3.07778031e-01 -2.29302868e-01 -4.19364899e-01 -3.34486544e-01\\n5.64000476e-03 -3.11356783e-01 -1.79634362e-01 8.79900157e-02\\n3.92881662e-01 1.06424436e-01 -2.88364403e-02 -1.67616844e-01\\n4.42209654e-02 -4.04020041e-01 2.03330442e-01 -2.53501505e-01\\n-6.41944706e-02 -3.25883813e-02 1.36357561e-01 9.43893716e-02\\n5.09853214e-02 -2.65186250e-01 4.62744415e-01 -3.23369384e-01\\n-2.81673342e-01 -9.14836526e-02 1.18595056e-01 -2.26596966e-02\\n4.00288910e-01 -4.48341221e-01 -7.96478614e-02 2.14089558e-01\\n5.02420478e-02 1.17393821e-01 2.11538911e-01 -1.26804635e-01\\n-7.78661594e-02 3.38579804e-01 -5.02718866e-01 7.06494823e-02\\n7.12179959e-01 1.04502358e-01 8.65254626e-02 2.75037646e-01\\n1.82220697e-01 2.96827883e-01 5.16738355e-01 -1.42948136e-01\\n-1.38971820e-01 2.17981204e-01 -8.03170577e-02 -5.22959709e-01\\n-7.29427189e-02 -1.91294402e-01 -2.81325877e-01 -5.02703011e-01\\n7.10753441e-01 3.46759379e-01 -4.23972130e-01 -1.05844356e-01\\n-1.04819857e-01 -7.40377232e-02 2.33235434e-01 -9.89834070e-02\\n-6.25621229e-02 -1.84784830e-02 5.54472804e-01 -6.44599944e-02\\n3.07258725e-01 6.05535626e-01 -2.07907036e-01 -2.68513203e-01\\n1.56353898e-02 1.10986851e-01 2.85401680e-02 3.32397670e-01\\n-1.76442981e-01 4.10660714e-01 -4.02335525e-02 1.08071007e-01\\n-5.73339947e-02 1.64027914e-01 1.35240301e-01 8.85547847e-02\\n2.24580765e-01 4.75905053e-02 2.70630628e-01 4.94093090e-01\\n2.07514599e-01 4.85634655e-01 2.68373430e-01 3.62932496e-02\\n3.92612487e-01 5.46770394e-01 4.75398540e-01 1.58559814e-01\\n1.17776273e-02 8.95350873e-02 1.20444514e-01 -2.74913348e-02\\n2.72965521e-01 4.65625882e-01 9.45105627e-02 8.24150026e-01\\n1.85790762e-01 2.16900796e-01 6.03676021e-01 -6.79473698e-01\\n-3.54104161e-01 4.98929210e-02 4.82910931e-01 -4.15968925e-01\\n5.82246692e-04 2.39228383e-01 -3.25443923e-01 1.47082672e-01\\n-5.64764082e-01 -2.88306057e-01 -5.56352325e-02 -1.02394782e-01\\n-1.60656478e-02 -2.70199716e-01 -1.37667403e-01 1.48254529e-01\\n-6.60370588e-02 -2.06459269e-01 -2.88861722e-01 -2.61035818e-03\\n-2.48195484e-01 -5.73928952e-02 -1.15689360e-01 -6.84211701e-02\\n-4.79101576e-02 -2.95774519e-01 -7.50082955e-02 3.19442637e-02\\n3.44517231e-01 -1.04117833e-01 -2.20882185e-02 -9.18190256e-02\\n2.02205330e-01 2.10693434e-01 4.87831712e-01 5.29205203e-02\\n7.06225857e-02 -1.63221359e-01 -2.34478384e-01 6.76308796e-02\\n2.84108728e-01 8.46684817e-03 1.16170496e-02 2.86618382e-01\\n-2.61181176e-01 -9.51082334e-02 1.40366882e-01 2.12895036e-01\\n-3.98126006e-01 8.96667615e-02 -1.02220945e-01 2.82256633e-01\\n9.66871604e-02 1.24281123e-01 -1.35408431e-01 6.68396130e-02\\n-1.24607794e-01 -3.09622526e-01 3.85038227e-01 -1.89752221e-01\\n-1.61594927e-01 -1.41521264e-02 3.35014999e-01 1.18153639e-01\\n-2.83586919e-01 6.89553320e-02 -1.63958788e-01 2.34817803e-01\\n4.71427105e-02 2.98406303e-01 -3.31572831e-01 -7.19311982e-02\\n-2.96311289e-01 1.41357794e-01 -3.89475152e-02 1.60176635e-01\\n3.74267697e-02 3.71567458e-01 1.02716483e-01 9.39764306e-02\\n4.55278873e-01 -2.90516708e-02 -2.12267444e-01 -1.82375535e-01\\n-1.89192355e-01 -1.43871978e-01 5.38995080e-02 -7.99927488e-02\\n1.91612735e-01 -3.89604568e-01 4.60520685e-02 -1.26068369e-01\\n-1.88084766e-01 -4.25546080e-01 2.95584071e-02 -6.75224289e-02]]',\n", + " 'job_description': \"Your job Analyze data of online customers across Ringier's brands and make user behavior and intent comprehensible for business stakeholders Collaborate within a cross-functional international team to design and implement data engineering solutions Be comfortable with using PySpark based tooling for your daily routine Learn additional skills to design complex data processing and machine learning pipelines Communicate and collaborate with stakeholders in German and English Your profile Proficiency in Python and SQL, possibly Java or Scala Knowledge of PySpark for distributed computation Proven knowledge of development best practices Experience with Agile methodology and problem-centric solution design A pragmatic mindset, not afraid of making mistakes, and learning from them Fluency in German and English Our offer Experienced team of international data engineers Work on state of the art data engineering framework Flexible place of work Bring in your own ideas and be part of the decision making Ringier is a diversified media company with about 7,300 employees across 19 countries. Founded in 1833, Ringier manages leading brands in print, TV, radio, online and mobile media and runs successful print, entertainment and internet businesses. In a history that spans more than 180 years, Ringier stands for a pioneering spirit, independence, freedom of expression and diversity of information. Ringier is a Swiss family-owned business with head offices in Zurich. Susanne Jud HR Manager +41 44 259 6344 www.ringier.com\",\n", + " 'soft_skills': '[\"Collaboration\", \"Decision Making\", \"Communications\", \"Management\"]',\n", + " 'hard_skills': '[\"Tooling\", \"Machine Learning\", \"Branding\", \"Good Agricultural Practices\", \"Data Engineering\", \"Distributed Computing\", \"Scala (Programming Language)\", \"Mobile Media API\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Pipelining\", \"Cross-Functional Coordination\", \"Agile Methodology\", \"Library For WWW In Perl\", \"Lead Management\", \"Electronic Data Processing\", \"Solution Design\", \"Additives\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'ml/python software engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.49163359e-01 3.14084470e-01 3.64707768e-01 5.80333211e-02\\n6.00441873e-01 -1.61262199e-01 2.54132915e-02 3.79365206e-01\\n-8.09688866e-02 -3.43437880e-01 -1.04865693e-01 -1.74497992e-01\\n-1.34012535e-01 1.96796702e-03 1.78543970e-01 5.23628891e-01\\n3.63971889e-01 -6.05085492e-03 -2.53678411e-01 4.05065954e-01\\n1.27595589e-01 -4.35134359e-02 -1.18463583e-01 6.16652250e-01\\n4.56151485e-01 1.09376749e-02 -5.36645837e-02 9.44084674e-02\\n-3.33077997e-01 -2.68804431e-01 4.03615206e-01 3.89328972e-02\\n-7.99723566e-02 -2.19903275e-01 1.28668144e-01 2.00566858e-01\\n-1.43104151e-01 1.24045514e-01 -1.30233347e-01 2.54108608e-01\\n-4.01607245e-01 -2.45199293e-01 4.82799411e-02 9.03225467e-02\\n-2.69676268e-01 -3.72830242e-01 6.17582463e-02 -9.79272649e-02\\n1.06700689e-01 1.06493831e-01 -4.67626363e-01 4.36670631e-01\\n-2.23314658e-01 -2.16320872e-01 3.82229894e-01 6.27578199e-01\\n8.65668505e-02 -5.95980465e-01 -3.57583106e-01 -4.00947183e-01\\n1.17263719e-01 -6.38486817e-02 4.44103964e-02 -2.49254435e-01\\n3.46056908e-01 5.54160625e-02 4.12586890e-02 3.34924877e-01\\n-8.03884804e-01 -1.02498911e-01 -3.57652873e-01 2.66613755e-02\\n-4.20006514e-01 7.30085932e-03 -4.60763305e-01 -1.15383230e-01\\n-4.46291044e-02 3.88534337e-01 -1.56232566e-01 5.86728789e-02\\n-1.54774562e-01 2.90446877e-01 -2.31523022e-01 1.86985716e-01\\n2.85547584e-01 2.08849490e-01 3.19651365e-01 3.82584184e-01\\n-4.06945795e-01 4.03515458e-01 1.91525087e-01 -2.92311072e-01\\n2.88874805e-01 1.50882408e-01 5.15000820e-01 1.43746600e-01\\n7.76596218e-02 1.73361897e-01 -2.52707660e-01 2.12593555e-01\\n1.68757141e-01 -2.93303698e-01 4.04212959e-02 -5.16856909e-02\\n-6.24667071e-02 1.34800952e-02 6.87409639e-02 2.83724785e-01\\n-3.57377619e-01 4.62637126e-01 1.34847790e-01 -2.47979835e-01\\n-3.16451564e-02 -6.53710783e-01 -6.87721074e-02 -4.33219923e-03\\n5.28107919e-02 2.67076284e-01 2.18314350e-01 2.20613971e-01\\n1.36939555e-01 -1.03563771e-01 2.08402023e-01 9.00764406e-01\\n-9.05615613e-02 6.09292723e-02 -2.99578130e-01 2.67138332e-01\\n2.31446728e-01 -3.17714363e-01 1.11569539e-01 2.66914040e-01\\n8.23811144e-02 -5.16546592e-02 -3.40210855e-01 4.34212834e-01\\n-2.26930991e-01 -1.86243832e-01 -3.87408942e-01 1.68894351e-01\\n-2.14440763e-01 -4.85469788e-01 5.88727355e-01 -3.89927737e-02\\n2.05382764e-01 -3.97503823e-02 -3.16950935e-03 -9.18699522e-03\\n-1.34155378e-01 3.56201917e-01 1.60632133e-01 2.04492122e-01\\n-3.90403837e-01 -1.44006923e-01 -1.46925509e-01 2.78628290e-01\\n-2.76517481e-01 1.45484909e-01 -2.09957764e-01 -1.21685170e-01\\n2.32180357e-01 1.95545536e-02 -4.12321687e-01 1.33197412e-01\\n-6.14549629e-02 -3.13329339e-01 -4.00939323e-02 3.46846581e-01\\n-1.06471211e-01 3.23107570e-01 -8.21453482e-02 -1.89909145e-01\\n6.97710454e-01 1.61521852e-01 1.56913519e-01 -3.34444866e-02\\n2.97933578e-01 -5.51402681e-02 3.61384839e-01 1.50010020e-01\\n-6.66416705e-01 3.82043779e-01 -6.98187351e-02 -1.77111655e-01\\n7.23277703e-02 5.08367606e-02 4.42986786e-01 -4.12957400e-01\\n-5.77706248e-02 -2.26478934e-01 -2.61487901e-01 -3.00058633e-01\\n-4.48181212e-01 -1.73914563e-02 3.80759984e-01 -2.94433177e-01\\n-3.34663577e-02 2.25680158e-01 -6.72381639e-01 -8.91905650e-02\\n2.41310060e-01 8.94189402e-02 5.73156737e-02 1.39903337e-01\\n-4.27228026e-02 -6.79016650e-01 1.11169823e-01 -5.45793891e-01\\n-5.41462779e-01 1.22610077e-01 -3.26597184e-01 2.45064348e-01\\n-2.91829580e-03 4.15010937e-02 -8.90819430e-02 2.33325064e-01\\n-3.77438098e-01 -4.03412133e-02 1.74494639e-01 5.38794547e-02\\n2.93211788e-01 4.92796451e-02 -5.31648338e-01 4.55382615e-01\\n-1.02561221e-01 5.28831542e-01 1.84248149e-01 -8.19499969e-01\\n5.77446401e-01 2.26599827e-01 1.97210275e-02 -2.40463838e-01\\n5.92460930e-01 -2.68032163e-01 -9.39456224e-02 1.97791919e-01\\n-2.36410260e-01 -2.80915827e-01 2.73868769e-01 -2.43679374e-01\\n-3.13475519e-01 5.86520374e-01 1.67158589e-01 1.47657588e-01\\n3.63559365e-01 -2.29543507e-01 -9.63465124e-02 1.80801183e-01\\n-1.67004809e-01 -1.84895575e-01 -4.58984822e-01 1.58164334e-02\\n-5.01556247e-02 -4.94101316e-01 -2.47741997e-01 -3.66687626e-01\\n-1.53590381e-01 -4.04171944e-01 -1.30767480e-01 3.53851169e-01\\n1.39713988e-01 1.72469243e-01 3.04310508e-02 -1.21947974e-01\\n-8.89321789e-02 -6.99363708e-01 -1.50943622e-01 1.52132297e-02\\n3.54313552e-01 3.04853112e-01 2.65872423e-02 -1.11676343e-01\\n1.31180221e-02 4.80660796e-01 -4.85657007e-01 -3.44989091e-01\\n1.50084332e-01 2.28906665e-02 -1.24205910e-01 -1.14776492e-01\\n2.74349712e-02 3.48521292e-01 -2.63965428e-01 1.06118590e-01\\n-1.43578634e-01 -3.41413803e-02 3.12321901e-01 -2.53914464e-02\\n-1.98603094e-01 -2.34433383e-01 -9.74772424e-02 2.64567822e-01\\n-5.52591264e-01 -2.81307995e-01 6.02342010e-01 2.73904532e-01\\n2.91618675e-01 1.62670210e-01 2.89248258e-01 -2.06722230e-01\\n-2.57179081e-01 -3.05124968e-01 2.41677418e-01 1.37188211e-01\\n1.36716530e-01 1.48267001e-01 -1.03511304e-01 -5.53967237e-01\\n-3.19049025e+00 -1.47714466e-01 2.58898973e-01 -2.59594589e-01\\n1.91307276e-01 -6.10467680e-02 6.49677888e-02 6.12024404e-02\\n-4.87219572e-01 -8.17801654e-02 -1.51107907e-01 -2.06804618e-01\\n2.84399907e-03 4.64475065e-01 1.89402193e-01 7.79852122e-02\\n1.10592954e-01 -3.29658717e-01 -7.82383978e-02 4.00868744e-01\\n-4.67631668e-02 -7.66878426e-01 -3.14538181e-03 6.38126805e-02\\n2.44748130e-01 2.19557971e-01 -3.93169403e-01 -8.79843161e-02\\n-2.12834567e-01 -2.53127992e-01 1.06562428e-01 -1.57773927e-01\\n-2.58890241e-01 3.19953799e-01 1.25308543e-01 1.63862519e-02\\n3.95528367e-03 -2.44862869e-01 4.03272696e-02 -4.25916821e-01\\n-3.48628126e-03 -6.54769838e-01 -5.95238060e-02 -8.30344111e-02\\n6.62001729e-01 -2.41514027e-01 2.60789484e-01 6.11857101e-02\\n1.60000131e-01 6.24833629e-02 -4.37820293e-02 5.82462773e-02\\n-3.49894434e-01 -2.87439078e-01 -7.39851817e-02 -1.33494705e-01\\n6.97495282e-01 4.72929955e-01 -2.49376982e-01 -7.02775968e-03\\n1.15340911e-01 -4.21354711e-01 -3.09253007e-01 -3.74325961e-01\\n-3.04906368e-01 -1.32483378e-01 -6.81411028e-01 -4.91096318e-01\\n-1.09966114e-01 -9.96744260e-02 -4.88143042e-02 6.33725822e-01\\n-3.36152166e-01 -3.68094683e-01 -3.16020288e-02 -6.04015827e-01\\n1.35022208e-01 -1.97170511e-01 5.32343946e-02 -1.13246493e-01\\n-2.73159862e-01 -4.95556444e-01 1.29036248e-01 6.46906421e-02\\n-1.60349533e-01 -6.06457703e-03 6.25389535e-03 -1.74359873e-01\\n-4.55632448e-01 -5.34360230e-01 3.98889691e-01 1.16429791e-01\\n3.58131826e-01 1.96568459e-01 4.39707607e-01 7.91330114e-02\\n3.11552465e-01 -1.08976096e-01 8.92425925e-02 -4.84478474e-01\\n3.44005711e-02 -4.53140624e-02 7.60304868e-01 -2.68610239e-01\\n-1.48582105e-02 1.56844452e-01 -2.67556340e-01 -1.03180684e-01\\n5.10530949e-01 8.84087980e-02 5.99271879e-02 -1.27759039e-01\\n3.25308919e-01 -4.74685520e-01 -1.99095398e-01 1.82149231e-01\\n7.06362398e-03 7.55147338e-01 1.45299733e-02 -3.40281427e-01\\n-2.04340622e-01 4.57371473e-01 -1.60522580e-01 -6.97832480e-02\\n-9.49543938e-02 3.36248800e-02 -7.46503025e-02 2.33224928e-01\\n1.82913825e-01 -2.57232457e-01 -1.48486048e-01 -6.00426719e-02\\n-3.73654552e-02 2.83716917e-01 1.92880467e-01 5.40270284e-03\\n-1.25262976e-01 -2.67888844e-01 -6.01253025e-02 1.79011583e-01\\n2.94364393e-01 3.20824206e-01 9.55512077e-02 -3.07621121e-01\\n-9.02656019e-02 2.77813524e-01 -2.51340598e-01 2.12392852e-01\\n-1.62709042e-01 1.05196901e-01 -5.69525659e-01 -1.39065564e-01\\n-2.11938262e-01 -4.68668699e-01 2.34923348e-01 3.45501393e-01\\n1.07988693e-01 -4.30891104e-02 1.69325411e-01 -4.88810986e-01\\n3.76997054e-01 1.72509372e-01 1.73130557e-01 9.83407944e-02\\n-1.31362796e-01 4.87289011e-01 -5.90454973e-02 -1.62233725e-01\\n-6.72750324e-02 4.03043292e-02 -2.29303494e-01 -3.49381268e-01\\n1.50444448e-01 -5.01702785e-01 -1.73878044e-01 5.06745696e-01\\n1.81298748e-01 -1.72038704e-01 -3.25680882e-01 1.24446601e-01\\n1.65183514e-01 -4.23293054e-01 -1.98736772e-01 -1.16494782e-02\\n2.59249479e-01 7.86112994e-02 2.34833121e-01 -4.11526918e-01\\n7.61897117e-03 -2.95280479e-02 -1.30555466e-01 3.12307090e-01\\n1.18235610e-01 9.62836593e-02 -2.36173123e-01 -2.79555712e-02\\n4.67645407e-01 -8.50977972e-02 -3.58585678e-02 1.09293526e-02\\n8.43944177e-02 -3.28352779e-01 -4.98702407e-01 -1.23860747e-01\\n-5.51911592e-02 -1.67240396e-01 5.03505440e-03 -4.14620489e-02\\n2.91055953e-03 7.77740628e-02 -5.98726094e-01 -2.75782526e-01\\n-3.85677278e-01 -1.05309337e-01 6.39078692e-02 -3.35774988e-01\\n-1.16239160e-01 -4.74526882e-02 -5.15209734e-01 2.27856413e-01\\n-1.00528404e-01 2.49152929e-02 1.90026924e-01 9.07843038e-02\\n-2.32191175e-01 -2.15933353e-01 1.60465941e-01 1.96255401e-01\\n-2.73414403e-01 -2.11932048e-01 -9.29146856e-02 -1.01274836e+00\\n6.97700307e-02 -9.47854519e-02 -8.85004327e-02 -5.67508861e-02\\n-2.39365827e-02 -6.03027701e-01 1.15964867e-01 -5.75515926e-01\\n-4.04462144e-02 1.05820581e-01 -1.72489449e-01 -3.84050727e-01\\n1.62224710e-01 -1.40869841e-01 -3.45568478e-01 3.85525048e-01\\n-4.83010232e-01 3.25107068e-01 3.05429157e-02 3.50847878e-02\\n-5.32507822e-02 -2.15609044e-01 1.43314496e-01 -2.09454671e-01\\n-3.76134247e-01 -2.30639592e-01 -2.64637202e-01 -2.36364558e-01\\n2.52317209e-02 -3.88619542e-01 -2.00080007e-01 6.05012029e-02\\n2.74724722e-01 4.20605689e-02 -7.73740634e-02 -2.02550843e-01\\n9.96947959e-02 -5.33418238e-01 6.65671825e-02 -3.34227145e-01\\n1.09379403e-02 -5.08236066e-02 3.19845289e-01 5.78781143e-02\\n1.95160970e-01 -3.15323085e-01 5.26247442e-01 -2.70936131e-01\\n-3.60444427e-01 -4.37920801e-02 9.55913439e-02 -5.42933196e-02\\n3.04352552e-01 -5.01784563e-01 3.08299288e-02 3.51767570e-01\\n-2.15863853e-04 1.09622881e-01 2.15972319e-01 -1.22642636e-01\\n-5.80896474e-02 2.80040354e-02 -4.25278127e-01 4.61530574e-02\\n7.91768491e-01 2.91177511e-01 1.49225652e-01 1.23727039e-01\\n1.43600136e-01 3.76013130e-01 4.82864648e-01 -2.75875926e-02\\n-1.45115610e-02 2.56706893e-01 5.04822955e-02 -5.33030033e-01\\n-1.14602663e-01 -6.07077032e-02 -1.76234365e-01 -3.13694805e-01\\n6.14581168e-01 3.80474180e-01 -3.42166752e-01 -4.20128286e-01\\n-4.92065353e-03 -1.82019055e-01 3.50263357e-01 1.15916140e-01\\n-2.92816255e-02 -1.46983117e-01 5.57274103e-01 -1.27387568e-02\\n2.78643787e-01 5.00017464e-01 -1.63258865e-01 -3.39902788e-01\\n-2.01572888e-02 2.43071094e-01 5.60780801e-02 4.09322649e-01\\n-1.28830150e-01 2.85187423e-01 -1.17070928e-01 7.16564208e-02\\n-5.99067882e-02 2.36542597e-02 2.47224167e-01 8.41332451e-02\\n2.19486251e-01 1.42040864e-01 5.11807382e-01 5.71679235e-01\\n8.61040652e-02 4.30042177e-01 3.00014555e-01 2.71577779e-02\\n2.94939846e-01 5.66033840e-01 3.77901465e-01 9.00142416e-02\\n5.89973386e-03 2.31804639e-01 1.91595167e-01 -6.74095452e-02\\n3.49986374e-01 2.95673519e-01 1.71077356e-01 8.65443647e-01\\n2.33237714e-01 3.72581095e-01 7.36130118e-01 -7.80610323e-01\\n-3.31890106e-01 3.46272066e-02 6.75240874e-01 -3.98325831e-01\\n-1.26285717e-01 1.59774736e-01 -2.96309650e-01 3.64302874e-01\\n-5.33288360e-01 -7.09763095e-02 3.83070745e-02 1.96871776e-02\\n1.12540030e-03 -9.16944966e-02 -2.06769988e-01 -1.06821880e-01\\n-2.35700935e-01 -1.66093931e-01 -3.38923931e-01 -2.88850307e-01\\n-3.11545193e-01 -1.37366308e-02 -6.12773262e-02 -1.03624590e-01\\n-1.86534122e-01 -2.92270541e-01 -9.50043052e-02 1.02124386e-01\\n3.91522378e-01 -2.34775990e-01 -4.89131957e-02 -3.04298904e-02\\n1.04435802e-01 2.33500063e-01 6.26181960e-01 -8.06044340e-02\\n1.07824579e-01 -1.68384328e-01 -1.94078282e-01 4.27446030e-02\\n-3.51046957e-03 -3.55074182e-02 1.52000800e-01 4.96149659e-01\\n-3.58974278e-01 -1.53134078e-01 5.40176965e-03 3.59600008e-01\\n-4.53293949e-01 -1.20604150e-01 -6.41102493e-02 2.04001948e-01\\n-4.23039533e-02 1.77045867e-01 -2.60311991e-01 -2.12720577e-02\\n-6.87193796e-02 -5.24123013e-01 4.03015494e-01 -1.02398247e-01\\n-1.70051977e-01 1.83997750e-01 2.21702218e-01 2.52471417e-01\\n-1.59770563e-01 -8.70778412e-02 -1.12682171e-01 2.02126145e-01\\n-8.94699395e-02 4.47417885e-01 -6.15893416e-02 -3.36194068e-01\\n-3.45672905e-01 2.48686954e-01 -1.03860885e-01 1.21401943e-01\\n-1.43946305e-01 3.68736923e-01 -8.79505929e-03 1.15514174e-01\\n3.05641174e-01 1.59734994e-01 -2.08919600e-01 -1.96387544e-01\\n-6.42749742e-02 -1.47936881e-01 3.97927165e-02 1.02228986e-03\\n1.43676177e-01 -3.57327700e-01 -4.04963680e-02 -2.58838892e-01\\n-9.73265097e-02 -3.30183804e-01 -1.81611985e-01 1.20955519e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities Design, implement, deploy and maintain machine learning algorithms and infrastructure, from training to prediction Create and maintain technical documentation Software testing and quality assurance Evaluate and identify new technologies Your profile: A Master’s or Bachelor’s Degree in data science, computer science, econometrics, applied mathematics, statistics, or another relevant discipline with a strong foundation in quantiative methods, modeling, and machine learning/AI (or equivalent experience) Extracurricular projects and experiences that demonstrate your interest in data analysis/machine learning and/or software design and implementation Ability to manage large datasets and advanced experience in the corresponding software packages and programming languages (strong skills in Python and SQL are a requirement) Experience working with Docker, web servers and RESTful applications, as well as having familiarity with continuous integration and deployment (CI/CD). Knowledge of Django REST Framework is an advantage. Strong interest in real-world problems and analytical skills to come up with workable solutions A team player who loves to work in a highly diverse team and across functions and geographies You are reliable, curious, open-minded and goal oriented, while striving to deliver operational excellence and superior quality. Benötigte Skills Machine Learning Python Python Mathematik SQL',\n", + " 'soft_skills': '[\"Analytical Skills\", \"Goal Oriented\", \"Infrastructure\", \"Reliability\", \"Quality Assurance\"]',\n", + " 'hard_skills': '[\"Managing Large Accounts\", \"Web Servers\", \"Python Server Pages\", \"KM Programming Language\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Machine Learning\", \"Continuous Integration\", \"Python (Programming Language)\", \"Maintainability\", \"Dataset\", \"Django (Web Framework)\", \"Machine Learning Methods\", \"Econometrics\", \"Docker (Software)\", \"Machine Learning Algorithms\", \"Operational Excellence\", \"Technical Documentation\", \"Software Design\", \"Applied Mathematics\", \"Software Testing\", \"Algorithms\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " 'languages': \"['English', 'Polish', 'Chichewa']\"},\n", + " {'company_id': '107',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Bern',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.53882533e-01 2.63870209e-01 4.88151789e-01 2.52115559e-02\\n4.95075524e-01 -1.91365361e-01 -1.51760201e-03 3.19536984e-01\\n-4.94922251e-02 -6.43859863e-01 8.34249929e-02 -3.04658920e-01\\n-1.60542279e-01 8.98646042e-02 1.20832138e-02 4.28401291e-01\\n2.84009874e-01 1.29871055e-01 -1.10273458e-01 4.00190949e-01\\n1.95536446e-02 -1.54743165e-01 8.77800733e-02 8.88015628e-01\\n3.95626843e-01 -6.25001639e-02 -5.91580160e-02 -1.08262012e-02\\n-2.20071897e-01 -1.83913097e-01 4.02476549e-01 7.64426291e-02\\n-1.18547112e-01 -4.90477622e-01 1.26052871e-01 1.00940898e-01\\n-1.95412114e-01 -7.06147850e-02 -7.74268359e-02 1.83706075e-01\\n-5.04106998e-01 -2.79322982e-01 -5.80128431e-02 -1.47425652e-01\\n-3.46317977e-01 -4.72057939e-01 -9.46814716e-02 -4.93847728e-02\\n1.77768558e-01 5.41233607e-02 -3.77035081e-01 2.86333025e-01\\n-3.28801185e-01 -1.08754158e-01 3.04627955e-01 6.61425054e-01\\n7.70932995e-04 -3.55781198e-01 -6.35579050e-01 -3.76291156e-01\\n5.28824404e-02 -1.39447182e-01 8.48922208e-02 -4.67091084e-01\\n2.24996597e-01 2.53708251e-02 6.94342330e-02 3.15816283e-01\\n-7.35329866e-01 -4.68109138e-02 -3.86861712e-01 -2.66286075e-01\\n-3.29351753e-01 -1.55688763e-01 -4.03083563e-01 -1.67274192e-01\\n-1.52655989e-01 4.59137082e-01 1.71818584e-01 3.74501646e-02\\n-2.02720970e-01 3.07639003e-01 -3.53897035e-01 4.80775833e-01\\n1.35314167e-01 1.19210973e-01 2.84935266e-01 3.52147341e-01\\n-4.25153852e-01 4.19908643e-01 2.14616179e-01 -4.97510195e-01\\n3.48596275e-01 1.01928800e-01 3.84683728e-01 -9.68960077e-02\\n2.65881360e-01 8.12709183e-02 -2.67805487e-01 4.17369455e-01\\n3.77330065e-01 -3.48778725e-01 1.84264295e-02 -2.30457872e-01\\n1.23268366e-01 -4.26314659e-02 2.09389538e-01 1.76381171e-01\\n-2.06470847e-01 4.15781796e-01 2.64632031e-02 -2.85423815e-01\\n-2.44928405e-01 -2.89042771e-01 6.01315275e-02 4.32465076e-02\\n4.38337103e-02 7.18712509e-02 3.12845588e-01 3.39649245e-02\\n8.35989118e-02 -3.95208858e-02 8.38936642e-02 7.85172105e-01\\n-7.79538229e-02 7.82101974e-03 -4.47693169e-01 3.41467321e-01\\n-2.26825476e-03 -4.01868880e-01 3.49400878e-01 1.82769090e-01\\n-1.63061082e-01 -2.66907036e-01 -1.31818384e-01 3.86667758e-01\\n-1.42407771e-02 -2.64844239e-01 -3.20330292e-01 2.12862596e-01\\n4.73220721e-02 -3.70581448e-01 7.21339941e-01 1.42088950e-01\\n2.06417531e-01 -9.66842026e-02 -1.73619706e-02 -1.30269423e-01\\n-8.99937898e-02 6.02008142e-02 2.18564011e-02 1.74776167e-01\\n-2.20179051e-01 -3.60606551e-01 -2.27905929e-01 1.54578388e-01\\n-5.21892071e-01 2.50174135e-01 -3.70247029e-02 7.59117007e-02\\n3.24722528e-01 -3.32791246e-02 -2.31193885e-01 2.79246658e-01\\n-4.83210310e-02 1.69240311e-03 7.04399794e-02 3.76876891e-01\\n-2.09797546e-01 1.47318229e-01 -3.72700952e-03 -7.05282539e-02\\n6.93809152e-01 2.95297205e-01 2.20294714e-01 -7.59942085e-02\\n3.05949807e-01 5.68782352e-03 4.24804762e-02 1.12591133e-01\\n-6.56593382e-01 3.53900492e-01 -1.89795643e-01 -1.04694016e-01\\n3.84128094e-02 -9.23902020e-02 1.71208829e-01 -1.26848400e-01\\n2.13514697e-02 -1.12590641e-01 -2.55817890e-01 -3.02105635e-01\\n-1.24459989e-01 -8.13156217e-02 3.93843263e-01 -6.24008894e-01\\n-2.84860194e-01 2.68713295e-01 -5.86710453e-01 -6.01960309e-02\\n6.76720142e-02 1.39291584e-01 1.91825464e-01 9.37650651e-02\\n-8.06331187e-02 -4.00122583e-01 1.00973807e-01 -4.88851666e-01\\n-2.63548851e-01 3.69608328e-02 -2.72876531e-01 1.14974663e-01\\n2.18791515e-01 1.69776194e-02 -2.23309904e-01 2.15999484e-01\\n-1.93818286e-01 -8.66953433e-02 9.74141806e-02 -2.73032878e-02\\n2.95683384e-01 2.70511676e-02 -4.41613734e-01 3.36604565e-01\\n-6.30757064e-02 5.37083745e-01 1.93888992e-01 -1.01925671e+00\\n5.47991395e-01 4.40819114e-01 -1.74126089e-01 -3.59045535e-01\\n3.98788840e-01 -3.36818814e-01 -3.38978413e-03 7.40788728e-02\\n-2.49938592e-01 -3.07271719e-01 2.36879677e-01 -5.52120879e-02\\n-2.30720878e-01 3.93204629e-01 -5.54978773e-02 2.98110306e-01\\n1.59084171e-01 -2.08882645e-01 -2.25363642e-01 -5.59524186e-02\\n-6.96942210e-02 -2.05586255e-01 -6.43625677e-01 -4.59931940e-02\\n-1.01485655e-01 -3.80824208e-01 -1.03380501e-01 -5.37949324e-01\\n-2.56865621e-01 -3.81752014e-01 -1.66475356e-01 1.66820049e-01\\n3.20500553e-01 9.20575261e-02 -2.24113852e-01 2.23685056e-02\\n-3.17761600e-02 -5.57120204e-01 -7.55672008e-02 1.85128674e-01\\n4.65644032e-01 2.64052421e-01 6.93866760e-02 1.92111619e-02\\n1.94350541e-01 7.09574282e-01 -2.81212151e-01 -1.71481997e-01\\n1.16309315e-01 2.86556482e-01 7.22967312e-02 -2.74559170e-01\\n9.18500125e-02 3.61092567e-01 -2.66036332e-01 2.79130489e-02\\n2.14210406e-01 -1.10016063e-01 5.05476236e-01 1.80882126e-01\\n-4.86058861e-01 -2.11925209e-01 -4.61526215e-03 4.99481075e-02\\n-5.74764013e-01 -3.19701731e-01 7.61150360e-01 1.95639312e-01\\n1.43551171e-01 9.80133265e-02 9.17920619e-02 6.83723763e-02\\n-1.89725846e-01 -7.12844282e-02 3.81130636e-01 9.25659686e-02\\n2.76741236e-01 1.65001765e-01 9.32647511e-02 -6.44334614e-01\\n-3.45551252e+00 -2.25779206e-01 1.46928594e-01 -2.21555501e-01\\n1.41557120e-02 -9.70263630e-02 9.44638327e-02 -6.48523122e-02\\n-2.57870257e-01 -1.11577280e-01 -1.85125828e-01 -2.06123263e-01\\n1.31072387e-01 9.12004411e-02 1.21209204e-01 2.97994077e-01\\n3.59091341e-01 -1.99420780e-01 -1.32797748e-01 3.14143032e-01\\n-1.93556055e-01 -6.21659040e-01 2.72660017e-01 -1.29404962e-02\\n3.41335535e-01 2.30686396e-01 -3.32105458e-01 -2.19056942e-02\\n-3.23272914e-01 -1.36024445e-01 1.74975842e-02 -2.32862473e-01\\n-2.32666329e-01 1.29432902e-01 2.76067257e-01 -1.87482208e-01\\n2.28838205e-01 -4.49135005e-01 -3.09236467e-01 -4.91229713e-01\\n7.06889331e-02 -6.32802963e-01 1.17977768e-01 -1.34605229e-01\\n7.30880857e-01 -3.08055967e-01 1.49849981e-01 6.62795007e-02\\n9.54193920e-02 1.19146124e-01 1.38838276e-01 4.06356826e-02\\n-1.05373099e-01 -3.32431495e-01 -6.42480329e-03 -1.62651643e-01\\n6.29284620e-01 4.03576314e-01 -1.44742057e-03 -9.84712690e-02\\n2.64923368e-02 -8.94409716e-02 -4.61954057e-01 -2.09969684e-01\\n-4.58606742e-02 -1.60023719e-01 -5.40450096e-01 -4.36236978e-01\\n-1.09342538e-01 -9.03414115e-02 -2.37054586e-01 7.62752771e-01\\n-3.05931687e-01 -2.96098471e-01 -1.63129002e-01 -3.97837162e-01\\n2.16397375e-01 -2.40019321e-01 7.21614286e-02 -1.55167192e-01\\n-3.49289656e-01 -5.08802235e-01 1.99036971e-02 4.41104770e-02\\n-4.18654978e-02 -3.26941490e-01 1.74071670e-01 4.14054953e-02\\n-1.31314591e-01 -4.32870507e-01 3.96806151e-01 2.77308404e-01\\n3.04748267e-01 2.27516592e-01 4.06893492e-01 -1.15204766e-01\\n2.26062298e-01 -1.02394566e-01 -2.12315366e-01 -3.78736198e-01\\n2.62785852e-01 2.12948732e-02 3.78815293e-01 -1.36250257e-01\\n-7.14700669e-03 4.33754325e-02 -2.04050541e-01 -4.79776338e-02\\n3.28391999e-01 3.77594493e-02 1.22812703e-01 -1.10532373e-01\\n2.24379092e-01 -2.22064957e-01 -1.15093954e-01 -3.08391843e-02\\n1.68528065e-01 5.88773847e-01 -8.17123353e-02 -4.66049165e-01\\n3.66925672e-02 5.59873700e-01 1.38987750e-02 1.02317138e-02\\n-3.81661296e-01 1.17189020e-01 -2.35412300e-01 2.53313452e-01\\n5.64771146e-02 -7.40635395e-02 -2.16636777e-01 -2.33264983e-01\\n-9.70379189e-02 3.53404522e-01 2.00292289e-01 1.58193290e-01\\n4.83887717e-02 -3.13593686e-01 -1.39580041e-01 1.95376128e-01\\n2.33314574e-01 4.80746865e-01 1.75433785e-01 -2.38582328e-01\\n-4.37305085e-02 3.92187893e-01 -2.92998701e-01 1.13404959e-01\\n-3.67423624e-01 1.56802788e-01 -4.66665268e-01 -2.05393314e-01\\n-2.33887538e-01 -4.61405188e-01 3.17426503e-01 2.69160450e-01\\n6.03015721e-03 -5.67947924e-02 2.77227294e-02 -3.71841848e-01\\n3.16208601e-01 1.36422247e-01 1.95813686e-01 1.79511651e-01\\n8.07688385e-02 6.26388431e-01 2.15745047e-02 -2.93207407e-01\\n-1.41635790e-01 2.41859406e-02 -8.69227797e-02 -1.13651477e-01\\n-6.74038231e-02 -5.59722960e-01 -2.04083771e-01 3.49065274e-01\\n5.49728349e-02 -2.83138156e-01 -2.41787761e-01 1.90737605e-01\\n-3.74634489e-02 -1.15762591e-01 -1.75566673e-01 -1.20894164e-01\\n4.06905532e-01 3.60121354e-02 2.78101712e-01 -5.67138612e-01\\n-8.16119462e-02 6.70960546e-02 -2.66691465e-02 6.16954803e-01\\n1.52719378e-01 1.71181381e-01 -6.08733520e-02 -1.69211179e-01\\n4.44790065e-01 -1.83104992e-01 -1.57371670e-01 1.11157754e-02\\n6.57287166e-02 -1.87916964e-01 -5.11304259e-01 2.10522607e-01\\n-1.21301170e-02 -1.67917550e-01 8.65280628e-02 2.01023564e-01\\n8.24385285e-02 2.10658699e-01 -6.58967018e-01 -2.79257029e-01\\n-2.39739776e-01 -1.98528823e-02 3.12925354e-02 -6.35992110e-01\\n-5.99507987e-03 -1.02169506e-01 -6.03266478e-01 3.33674908e-01\\n-2.04802513e-01 -1.92775190e-01 1.48515329e-01 2.56663635e-02\\n-2.29973137e-01 -8.04776922e-02 5.38714528e-02 3.41602266e-01\\n-2.71582425e-01 -3.97342116e-01 7.06288069e-02 -9.25776005e-01\\n2.65274942e-01 8.04131776e-02 -2.87768394e-01 1.71060622e-01\\n-5.31795546e-02 -6.11661911e-01 2.12787688e-02 -3.07256699e-01\\n-9.08422098e-02 -9.84050408e-02 -2.42786556e-01 -5.71779132e-01\\n6.98996633e-02 4.46370952e-02 -2.96336532e-01 4.96250927e-01\\n-3.29737961e-01 3.92698318e-01 -1.50972515e-01 1.73954532e-01\\n1.42379522e-01 -4.01118934e-01 1.65726721e-01 -4.75135744e-01\\n-4.10083681e-01 -2.07618475e-01 -2.64792681e-01 -3.86548847e-01\\n7.53257982e-03 -4.47446793e-01 -2.64373496e-02 5.90430647e-02\\n3.11759293e-01 1.93370115e-02 -2.92912126e-01 -3.99468958e-01\\n-4.07404006e-02 -5.44960558e-01 3.26919146e-02 9.37764533e-03\\n-1.28593534e-01 -1.80710047e-01 1.66905507e-01 1.39186963e-01\\n9.48623046e-02 -3.55791628e-01 3.16896021e-01 -4.21569288e-01\\n-2.46348396e-01 -1.25957146e-01 -3.92323695e-02 -3.76347750e-02\\n2.32591793e-01 -3.91628087e-01 -1.78742688e-02 3.41392905e-01\\n1.77282467e-01 7.85549358e-02 1.11283332e-01 -1.74065679e-01\\n4.21367288e-02 3.76791805e-01 -2.24368602e-01 1.49541974e-01\\n8.11785340e-01 -7.20039383e-02 2.70987958e-01 1.75642282e-01\\n1.98514730e-01 3.56576234e-01 3.90084475e-01 1.03055917e-01\\n-1.60264701e-01 3.31005752e-01 9.85882431e-02 -4.25461471e-01\\n1.12960488e-03 7.91680589e-02 -1.97824568e-01 -4.46497828e-01\\n6.43267035e-01 4.03229058e-01 -4.43466485e-01 -2.31295377e-01\\n-6.44478053e-02 -1.77013963e-01 1.74693823e-01 2.28117406e-02\\n-3.62077169e-02 -1.30723119e-01 3.88830602e-01 -7.41923675e-02\\n2.84814656e-01 4.07538235e-01 -2.18046755e-01 -3.46143901e-01\\n-1.75699800e-01 2.49657154e-01 -5.55558428e-02 6.38703704e-01\\n-2.91932046e-01 4.36599374e-01 2.05835532e-02 2.09612787e-01\\n-1.59124345e-01 1.08621567e-01 1.92987651e-01 1.44563854e-01\\n1.60153419e-01 3.06192786e-03 6.33991480e-01 5.28090060e-01\\n4.28275019e-01 4.03945267e-01 2.60501266e-01 -1.91551074e-02\\n4.50926304e-01 5.24837613e-01 4.81180251e-01 1.58700198e-01\\n5.94122335e-03 -1.38010725e-01 9.52039063e-02 1.09087620e-02\\n3.09119821e-01 4.46182668e-01 9.69005078e-02 9.49925780e-01\\n4.04222071e-01 2.27097675e-01 7.02745914e-01 -6.43224716e-01\\n-3.27945948e-01 1.85362976e-02 4.10834700e-01 -4.30204719e-01\\n-3.02460473e-02 9.85682607e-02 -2.18037993e-01 2.30701447e-01\\n-4.19969976e-01 -3.06951046e-01 -1.10715903e-01 2.53356934e-01\\n-8.44430458e-03 -2.85673857e-01 -1.91675782e-01 1.60027057e-01\\n-1.12771122e-02 5.51440232e-02 -4.56332356e-01 2.42415722e-02\\n-1.22894555e-01 -1.46547526e-01 -2.68013962e-02 -1.19746998e-01\\n-7.55117536e-02 -3.61357749e-01 -1.86976753e-02 -9.71690491e-02\\n2.15368509e-01 -1.26774102e-01 -2.79306099e-02 -1.62797049e-01\\n2.70546854e-01 2.73546278e-01 4.97744352e-01 9.49838683e-02\\n2.20688209e-02 -2.80583382e-01 -2.54608691e-01 1.35519534e-01\\n1.02566645e-01 3.86271439e-02 -5.84272891e-02 1.26448467e-01\\n-8.68873000e-02 -1.51174009e-01 9.57989395e-02 3.27482581e-01\\n-4.32885826e-01 1.31235167e-01 -2.92494297e-01 2.20211893e-01\\n1.92556903e-01 1.73581153e-01 -1.34298027e-01 5.92102408e-02\\n-1.77775428e-01 -4.92056698e-01 1.97107419e-01 -1.22082338e-01\\n-3.57148275e-02 -3.86196710e-02 1.62556291e-01 2.31723487e-01\\n-4.11887944e-01 -8.31137300e-02 -4.86118346e-02 8.81717056e-02\\n3.83176282e-02 3.17263782e-01 -1.89348757e-01 -2.72910416e-01\\n-2.70020902e-01 1.18846454e-01 -9.26648453e-02 5.53170294e-02\\n9.18858126e-02 3.86513978e-01 1.22452915e-01 5.97317666e-02\\n3.60442400e-01 2.30836309e-02 -2.20901683e-01 -2.45408416e-01\\n-1.39309898e-01 -5.55524714e-02 -1.33012891e-01 -1.21758364e-01\\n2.50053734e-01 -3.47685099e-01 -4.23611738e-02 -1.12065986e-01\\n-1.11203216e-01 -3.81908476e-01 1.62886828e-01 -1.97558701e-01]]',\n", + " 'job_description': 'You want a job? Then look elsewhere, because we are offering you a mission... Do you want to play a key role in our customer projects enabling our revolutionary new product to solve customer problems and thereby help enterprises to achieve the data literacy of Amazon? Our product, the SPOUD Data-Market is redefining the way enterprises are able to access and integrate business data inside and share it between companies. Be the driving power that gets our crazy integration and analytics projects off the ground. We are looking for a: Software Engineer (100%) We are passionate people with an urge to create, maker nature, proud of things built, and love for everything growing and living. We are a family of pioneers, explorers and city-builders in the area of enterprise big-data. Your Role You will technically lead project teams thereby supporting the project lead and the customer You will work in an interdisciplinary team together with data scientists, designers, engineers and business people You will lead software architecture and design in customer projects You support our customer in their technical vision and inspire and enable them to find pragmatic solutions You see the entrepreneurial vision of SPOUD and align your doings accordingly Your Profile You love working together with customers and take responsibility of your and your teams work You are a do-er, proactive and can anticipate technical and organisational issues because you know... Strong in Software design and architecture 2+ years of relevant experience in software development and the ability to write clean code Know-how in state-of-the-art development frameworks, tools, and methods in your field of expertise You like to work in a start-up environment but you feel comfortable also in the enterprise world You have experience with Java, Go, Kafka, Flink, docker and Rx We Offer A place where you can be happy if you like making a difference! A diversity of unsolved questions on the technological front and the freedom to solve them in your own way A team of experienced start-up enthusiasts who will help you get ahead and will also listen to you A young, dynamic, and non-bureaucratic environment with a lot of flexibility An inspiring workplace with a fantastic team of creative people in the heart of Bern Attention: This is not a regular job – this is a mission where you play an active role, help our customers build their data nirvana and on this path unfold your full potential. So save your seat on this fast-growing rocket ship and be at the Swiss forefront of Innovation in big data! We are looking forward to welcome you to our family (regular BBQs are a must!). Send us your application (CV and motivational letter) in PDF and let’s have a coffee together.',\n", + " 'soft_skills': '[\"Writing\", \"Proactivity\", \"Integration\", \"Innovation\", \"Creativity\", \"Creative Problem-Solving\"]',\n", + " 'hard_skills': '[\"Engine Designs\", \"Apache Flink\", \"Tooling\", \"Accessioning\", \"Resolving Customer Problems\", \"Analytics\", \"Activism\", \"Naturalization\", \"Integrated Data Viewer (IDV)\", \"PHP Development Tools\", \"Software Engineering\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Pathing\", \"Software Architecture\", \"Data Literacy\", \"Big Data\", \"DO-178B/C (Software Considerations in Airborne Systems and Equipment Certification)\", \"Software Design\", \"Software Development\", \"Market Data\", \"Java (Programming Language)\", \"New Product Development\"]',\n", + " 'languages': \"['English', 'Komi', 'Zulu', 'Galician']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'database engineer (m/f)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.70764947e-01 3.80482614e-01 4.18749332e-01 9.27205384e-02\\n5.02905071e-01 -1.98723689e-01 4.03951481e-03 2.72517890e-01\\n-7.10982308e-02 -2.41693258e-01 -6.16132170e-02 -4.16763760e-02\\n-6.36384077e-03 8.13919604e-02 1.72464192e-01 4.24755275e-01\\n3.09276372e-01 5.89461923e-02 1.49260964e-02 2.67620534e-01\\n1.34396106e-01 -1.19489536e-01 1.02892451e-01 5.66048265e-01\\n2.07293138e-01 1.47447407e-01 -9.67616495e-03 7.97666535e-02\\n-3.16824704e-01 -2.92747468e-01 2.82683641e-01 1.20330453e-01\\n-1.92091256e-01 -1.64798424e-01 4.28377353e-02 1.16624087e-02\\n-2.04767510e-01 -1.26587655e-02 1.53321072e-01 -1.62825026e-02\\n-7.53927603e-02 -2.69863933e-01 1.32300509e-02 8.78657494e-03\\n-3.56649160e-01 -1.09220482e-01 -3.92759331e-02 -8.24821293e-02\\n1.47108018e-01 -2.04093084e-01 -6.32436514e-01 4.13603216e-01\\n-9.26709324e-02 -1.77231640e-01 3.14854234e-01 4.34895456e-01\\n3.61038037e-02 -5.12671828e-01 -2.82791048e-01 -9.18632522e-02\\n7.27044046e-02 -2.59977221e-01 -7.81142432e-03 -1.03520207e-01\\n3.98269027e-01 -1.16136126e-01 1.00655770e-02 4.46817130e-01\\n-5.31788588e-01 5.11298887e-03 -3.66952062e-01 5.04493937e-02\\n-4.32678193e-01 -5.12507446e-02 -2.38883883e-01 -1.09187528e-01\\n-5.98026300e-03 2.12750196e-01 8.18139836e-02 6.39620051e-02\\n-9.10167396e-03 1.66780144e-01 2.24938225e-02 -1.10837230e-02\\n2.81920254e-01 6.61859242e-03 2.23566964e-01 2.55997956e-01\\n-2.71070689e-01 4.55642790e-01 2.59188652e-01 -2.53095746e-01\\n2.67622828e-01 1.04668252e-01 2.18283415e-01 3.30537707e-02\\n-4.24923860e-02 1.45234808e-01 1.06808819e-01 9.32760909e-02\\n1.44925386e-01 -2.39109680e-01 -1.01675197e-01 -8.16746056e-02\\n-7.04701245e-02 -1.44837007e-01 -1.09807901e-01 2.35594884e-01\\n-3.08379978e-01 4.09874678e-01 6.56969026e-02 -9.79458764e-02\\n-4.72002244e-03 -3.61802071e-01 -2.64445931e-01 1.86284201e-03\\n-1.78630665e-01 7.06110969e-02 3.05572897e-01 2.49758869e-01\\n2.67743349e-01 2.61802912e-01 2.32880920e-01 8.51773024e-01\\n-3.00463364e-02 9.18525830e-02 -1.36282906e-01 2.82282442e-01\\n1.15949638e-01 -2.05275342e-01 1.68994486e-01 2.20680907e-01\\n-4.16226592e-03 -6.79015834e-03 -1.62871167e-01 -2.66052615e-02\\n-1.38219118e-01 -6.44442290e-02 -1.55478328e-01 1.26214534e-01\\n-2.20614806e-01 -4.67813283e-01 3.02148074e-01 2.73883343e-02\\n2.40259260e-01 -4.35412768e-03 -8.33147168e-02 -1.83054283e-02\\n-1.42258881e-02 4.13970292e-01 -1.34123206e-01 3.03680629e-01\\n-3.32957149e-01 -1.83034033e-01 -2.14656830e-01 2.39048511e-01\\n-7.74940699e-02 1.18667945e-01 -2.69004256e-01 -7.33714774e-02\\n3.60295713e-01 -9.79447458e-03 -3.55655551e-01 3.60418141e-01\\n4.75275181e-02 -3.91682059e-01 -2.15859547e-01 4.15043771e-01\\n4.75670584e-02 1.23827137e-01 -1.22079141e-01 -3.14791292e-01\\n2.76966661e-01 2.07283739e-02 8.99648741e-02 1.86553667e-03\\n3.61201137e-01 -1.90529332e-01 8.28468874e-02 1.08368754e-01\\n-5.52015245e-01 3.80213529e-01 4.21508774e-02 -9.47545096e-03\\n-5.94542585e-02 7.10613802e-02 2.44265020e-01 -2.46711016e-01\\n1.36112705e-01 -1.36641145e-01 -3.25306207e-01 -3.34831506e-01\\n6.34716125e-03 -1.67915085e-03 3.71547312e-01 -3.29468250e-01\\n-1.14514671e-01 1.02617271e-01 -4.32701200e-01 -3.30369547e-02\\n4.20483440e-01 1.87133610e-01 1.17937503e-02 8.82378146e-02\\n-2.04707161e-01 -2.56533653e-01 4.18332294e-02 -5.93345582e-01\\n-2.94325620e-01 8.57808515e-02 -2.85274893e-01 1.93881080e-01\\n1.35875121e-01 -4.42772247e-02 2.36624666e-02 1.16387270e-01\\n-3.64681244e-01 9.72153321e-02 2.91628838e-01 6.92657903e-02\\n3.36356133e-01 -6.75864741e-02 -3.54334563e-01 4.92776603e-01\\n-2.40151539e-01 4.62714523e-01 2.77643442e-01 -6.72637522e-01\\n4.11479950e-01 2.11659446e-01 1.47904783e-01 -1.87863037e-01\\n3.57819527e-01 -4.71898764e-01 1.22086406e-01 2.25684851e-01\\n-2.95098364e-01 -2.13322878e-01 2.18939960e-01 -7.72679597e-02\\n-2.41847530e-01 5.81861377e-01 5.89128993e-02 6.02204353e-02\\n3.18042964e-01 -2.61105657e-01 -1.29103377e-01 -1.53848290e-01\\n-2.09282726e-01 -2.44212970e-01 -3.77224863e-01 2.26704776e-03\\n-7.94857368e-02 -5.46626270e-01 -1.74651027e-01 -4.26742852e-01\\n-1.13773160e-01 -1.70524120e-01 -3.05949360e-01 2.50412017e-01\\n7.74390101e-02 1.18507132e-01 -5.56022301e-02 -1.27137348e-01\\n5.74168041e-02 -4.87553120e-01 -7.69816563e-02 1.57215204e-02\\n3.27196360e-01 2.78806776e-01 7.25970641e-02 -2.99964517e-01\\n1.94517195e-01 3.58133793e-01 -3.79963189e-01 -3.56582224e-01\\n1.17316768e-01 3.08850944e-01 -8.92335549e-02 -1.79890305e-01\\n5.69752045e-02 3.67708921e-01 -1.50463089e-01 1.24846123e-01\\n-6.16659336e-02 9.93803740e-02 3.70127320e-01 -1.85547158e-01\\n-2.72887886e-01 -3.22162509e-01 -1.19921453e-02 3.09700757e-01\\n-3.69176000e-01 -2.07033798e-01 5.75120986e-01 2.99480647e-01\\n-9.41088001e-05 2.63390213e-01 1.92775220e-01 4.18238016e-03\\n-2.67701060e-01 -7.91750252e-02 -7.33833164e-02 8.12797472e-02\\n9.85543653e-02 -7.77804181e-02 -3.17840934e-01 -5.37053287e-01\\n-4.30504608e+00 -3.08360588e-02 -7.73874372e-02 -2.22823381e-01\\n1.52751550e-01 -1.46149963e-01 1.79027617e-01 1.58602655e-01\\n-2.89329588e-01 7.40446076e-02 -2.63787538e-01 -1.10482037e-01\\n1.22622102e-01 3.38531703e-01 1.30481303e-01 3.45031947e-01\\n2.95381516e-01 -3.25298578e-01 7.11191222e-02 3.16688657e-01\\n1.52683314e-02 -7.06119955e-01 5.71307465e-02 -6.11882657e-02\\n4.25201505e-02 3.23242635e-01 -2.60717571e-01 6.00600839e-02\\n-2.43984848e-01 -2.10711211e-01 4.02387828e-02 -2.32252568e-01\\n-1.56914338e-01 3.46349657e-01 3.87219638e-02 -1.79150671e-01\\n1.08784232e-02 -2.71173120e-01 -3.27146538e-02 -4.91972446e-01\\n6.42255768e-02 -5.33955753e-01 1.34940624e-01 1.36563212e-01\\n4.42563266e-01 -2.45066866e-01 1.69967160e-01 2.05120325e-01\\n1.94879889e-01 1.58966720e-01 -4.96476181e-02 -1.37066945e-01\\n-2.65961826e-01 -3.28777641e-01 -2.37413764e-01 -3.46467763e-01\\n4.39812869e-01 3.89918834e-01 -1.11154459e-01 5.05039580e-02\\n-1.05886273e-01 -3.11073333e-01 -2.94818640e-01 -4.59784567e-01\\n-3.06161493e-01 1.66427895e-01 -6.93567276e-01 -4.89499658e-01\\n-2.84662023e-02 -3.44134197e-02 -1.77855670e-01 4.83848572e-01\\n-3.33003134e-01 -4.72433984e-01 -3.17299366e-02 -5.31272769e-01\\n1.13127738e-01 -4.77387421e-02 1.08714901e-01 -8.11626241e-02\\n-2.80820370e-01 -4.56554949e-01 1.21841677e-01 3.96574438e-02\\n-1.46636561e-01 -3.35093439e-02 1.18002884e-01 -1.47341549e-01\\n-4.16376084e-01 -3.04768562e-01 4.85285610e-01 -1.07428515e-02\\n4.35039401e-01 1.46653175e-01 2.52369672e-01 2.60240167e-01\\n2.93618143e-01 -1.33284807e-01 1.89405262e-01 -3.70070457e-01\\n2.24102393e-01 1.66856602e-01 5.76015949e-01 -2.37886101e-01\\n-4.23823856e-02 1.35433361e-01 -1.65749222e-01 -1.09654024e-01\\n5.20451009e-01 7.07869679e-02 5.39543070e-02 -1.62050843e-01\\n2.81815946e-01 -4.87247586e-01 -2.30131328e-01 1.45535156e-01\\n-1.78700546e-03 5.65422177e-01 1.74928382e-01 -3.22919875e-01\\n-1.83554620e-01 3.27672988e-01 3.18201147e-02 -2.20363617e-01\\n-2.68335119e-02 6.36626035e-02 -2.24550009e-01 2.38265187e-01\\n1.56959519e-01 -1.54462367e-01 -2.35577524e-01 -1.54480329e-02\\n-5.94599135e-02 1.81890115e-01 2.69194841e-01 5.72329462e-02\\n-1.64241031e-01 -2.36346021e-01 -1.54765680e-01 1.49112508e-01\\n2.14499846e-01 1.82263434e-01 1.50400668e-01 -8.89383033e-02\\n4.80591655e-02 1.74056262e-01 -7.37534910e-02 1.20663665e-01\\n-1.44387811e-01 1.34751692e-01 -4.79542136e-01 -2.41103455e-01\\n-1.42490268e-01 -1.49614692e-01 -8.03369954e-02 3.60542506e-01\\n2.09526047e-01 -1.28700688e-01 7.41112530e-02 -3.00515503e-01\\n4.33313340e-01 -9.22398120e-02 2.64875293e-01 6.50296733e-02\\n1.29448503e-01 5.66303909e-01 3.41924815e-03 -2.84663171e-01\\n-1.87255308e-01 1.38023511e-01 -3.17382902e-01 -1.25782654e-01\\n6.44829571e-02 -2.62982041e-01 -6.70783315e-03 2.24723488e-01\\n1.88453346e-01 -2.85637025e-02 -8.36273655e-02 2.33084783e-01\\n-8.06129053e-02 -1.33166954e-01 -2.77333379e-01 7.27839395e-02\\n2.40309715e-01 -1.10012293e-03 1.51007280e-01 -3.91991824e-01\\n-5.43580987e-02 -5.22595942e-02 1.96869865e-01 3.62520337e-01\\n1.72606096e-01 1.10475160e-01 5.07885255e-02 -3.66143614e-01\\n4.25003797e-01 9.30979773e-02 -1.49404928e-01 -6.48168772e-02\\n1.07491672e-01 -1.12839855e-01 -3.68518174e-01 4.42494117e-02\\n-7.83619657e-02 -1.66494861e-01 2.31656522e-01 2.77469493e-02\\n8.90479758e-02 -5.20769395e-02 -4.04213935e-01 -1.81027845e-01\\n-2.48201355e-01 6.66322634e-02 -1.35266976e-02 -5.80770552e-01\\n-2.52953842e-02 6.47834390e-02 -5.63979268e-01 2.30325684e-01\\n-2.32393950e-01 1.46712109e-01 1.90329477e-02 3.81421633e-02\\n-2.39439160e-01 -5.31105772e-02 3.74628514e-01 -2.05257703e-02\\n-3.62264395e-01 -1.44534498e-01 -1.16461543e-02 -6.81164026e-01\\n2.10316882e-01 -1.39638126e-01 -2.53788441e-01 -3.59374955e-02\\n7.91927874e-02 -5.53475857e-01 2.19622031e-01 -2.71812916e-01\\n-3.28819528e-02 -8.21738318e-02 -2.49019846e-01 -3.07344526e-01\\n-2.55303774e-02 -1.97017625e-01 -1.10558458e-01 2.45045513e-01\\n-3.72373790e-01 3.70978922e-01 -8.42841528e-03 9.68909562e-02\\n1.45247206e-01 -3.72409821e-01 1.88435882e-01 -3.33387047e-01\\n-2.86380798e-01 -2.09097177e-01 -2.95100987e-01 -1.93460912e-01\\n-4.88442592e-02 -4.07931693e-02 -6.54291362e-02 -2.58242022e-02\\n2.53914565e-01 1.22465208e-01 -3.30628425e-01 -1.50074691e-01\\n7.58033693e-02 -3.46004188e-01 1.59437843e-02 -1.67228520e-01\\n-7.91710895e-03 -2.32482888e-02 2.21467286e-01 -2.49810591e-01\\n6.88032955e-02 -2.70387858e-01 4.86088365e-01 -5.40458672e-02\\n-3.14256907e-01 -1.36600018e-01 9.79795456e-02 6.79384694e-02\\n6.56604245e-02 -4.48888212e-01 -1.30255461e-01 2.36114174e-01\\n2.48830214e-01 1.62899733e-01 2.69786775e-01 -1.16645448e-01\\n-1.54523998e-01 2.31660023e-01 -6.11691236e-01 5.08534871e-02\\n6.47831559e-01 2.14162916e-01 3.35853472e-02 1.50039747e-01\\n-1.41143883e-02 5.00303507e-01 5.02642572e-01 7.12186769e-02\\n-8.07293579e-02 3.23166102e-01 1.79011106e-01 -5.46630263e-01\\n-2.17709124e-01 -2.12556571e-01 5.11331931e-02 -1.28550082e-01\\n5.45960605e-01 3.32146078e-01 -4.05467331e-01 -3.75077903e-01\\n-2.62413695e-02 -1.85728237e-01 -4.94477618e-03 -5.56833632e-02\\n3.87714766e-02 -3.44808370e-01 5.72980762e-01 4.57259715e-02\\n1.50245577e-01 5.87748170e-01 -2.29656659e-02 -1.65700898e-01\\n-4.39063273e-02 -4.48782369e-03 2.24708572e-01 1.71340123e-01\\n3.62066887e-02 2.23898128e-01 -1.05163552e-01 2.57129729e-01\\n-1.87560171e-01 -1.14559837e-01 -2.27715131e-02 8.70154127e-02\\n3.72791220e-03 1.92913145e-01 2.80505449e-01 2.89855689e-01\\n2.70798266e-01 4.72418129e-01 1.51201010e-01 5.04177399e-02\\n4.67858434e-01 4.62481171e-01 3.44654828e-01 -7.07194209e-02\\n9.23467521e-03 -7.29600200e-03 4.87732217e-02 -3.97568271e-02\\n2.54340291e-01 3.70028287e-01 1.45252600e-01 7.61656582e-01\\n2.82434344e-01 2.15063110e-01 6.27487659e-01 -4.68006104e-01\\n-3.14145565e-01 -2.48940401e-02 4.65045631e-01 -4.33412760e-01\\n-3.97228412e-02 -2.92391703e-03 -4.07598048e-01 -1.04498276e-02\\n-4.59011883e-01 -1.26563892e-01 9.05431807e-02 -2.24144384e-01\\n2.02035144e-01 -3.47004347e-02 -1.09594010e-01 2.54878581e-01\\n-7.38227442e-02 -2.25456744e-01 -2.67048150e-01 -2.72668540e-01\\n-3.16334963e-01 -6.18873127e-02 8.93824175e-03 -1.23509131e-01\\n1.33660093e-01 -3.38436037e-01 -4.22289260e-02 7.25715458e-02\\n3.78760368e-01 -8.82091075e-02 -1.45551324e-01 -1.20544843e-01\\n4.87549677e-02 3.06263864e-01 6.65579557e-01 -3.59557047e-02\\n1.01192921e-01 -1.96387209e-02 -1.29716069e-01 -1.00155100e-02\\n1.38584390e-01 4.15863991e-02 7.06940591e-02 5.33690274e-01\\n-4.59870458e-01 -1.96968336e-02 2.66726594e-02 3.53691995e-01\\n-2.90817887e-01 6.57966435e-02 7.97382742e-02 1.02914721e-01\\n7.74745271e-02 5.30694202e-02 -3.04382831e-01 1.58175215e-01\\n-2.37163916e-01 -5.82946837e-01 3.82542759e-01 -7.46670589e-02\\n-8.55535492e-02 -3.75871286e-02 1.85024709e-01 1.84259951e-01\\n-2.99542904e-01 -6.36216104e-02 -1.34176716e-01 2.70591199e-01\\n6.87954295e-03 2.37124860e-01 -3.01606178e-01 -2.38960132e-01\\n-3.22479457e-01 3.13418955e-01 1.21872477e-01 2.27395422e-03\\n-2.45224327e-01 3.77896607e-01 1.26993507e-01 1.76121458e-01\\n7.23407045e-02 -2.43791133e-01 -2.40951732e-01 -2.50291169e-01\\n-3.00154269e-01 -4.04937863e-02 6.60772845e-02 -1.24320529e-01\\n2.27274880e-01 -3.30703080e-01 -2.64657605e-02 -2.14440331e-01\\n-1.69417113e-01 -2.58702189e-01 -2.00911481e-02 -1.78634003e-02]]',\n", + " 'job_description': 'Job Informationen In this role you will be performing the following activities: - Develop and implement Oracle database related solutions - Database Performance-analysis, -tuning and problem monitoring - Keeping the Patch-Level of Databases, Oracle- Cluster ware and Database Machines up to date. - Maintain the availability of our database HA solutions in Dataguard and RAC configurations - rman backup/recovery configuration, execution and monitoring - Administer Linux machines Our requirements: - At least 5 years’ experience in Oracle Database administration and -tuning - Experience in Linux administration - Expert skills in several of these technologies: Oracle RAC, Data Guard, Golden Gate, RMAN, OEM - Work-experience with Oracle ODA - Good communication and documentation skills - Customer Orientation, capability of working independently and flexibility - English and German are mandatory Benötigte Skills Englisch Oracle Linux',\n", + " 'soft_skills': '[\"Communications\"]',\n", + " 'hard_skills': '[\"Oracle Autonomous Database\", \"Oracle Linux\", \"Executable\", \"Database Administration\", \"Linux Administration\", \"Activism\", \"Linux\", \"Maintainability\", \"Machining\", \"Performance Analysis\", \"Oracle Databases\", \"Oracle Rac\", \"Recovery Manager (RMAN)\", \"Guarding\"]',\n", + " 'languages': \"['English', 'Nauru']\"},\n", + " {'company_id': '22',\n", + " 'job_title': 'software engineer, growth team',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.beekeeper.io',\n", + " 'jobdescription_embedded': '[[-3.26576456e-03 7.93167353e-02 4.75420892e-01 1.82045158e-02\\n3.61233920e-01 -1.35588288e-01 -8.32320675e-02 4.20588821e-01\\n-4.75099161e-02 -4.32282090e-01 1.58610284e-01 -4.42588329e-01\\n-2.24586219e-01 9.24412385e-02 2.47830525e-02 4.01810348e-01\\n4.44545090e-01 5.67281060e-02 -1.29696159e-02 3.55324090e-01\\n1.21537797e-01 -1.01944908e-01 1.83644682e-01 7.82013416e-01\\n5.14713705e-01 -9.55303460e-02 -6.86163902e-02 2.64233768e-01\\n2.67566182e-02 -2.47702688e-01 5.98333001e-01 5.71470447e-02\\n-2.17601970e-01 -3.60760331e-01 3.85325328e-02 1.11421160e-01\\n-3.31461608e-01 -1.27403945e-01 8.91256407e-02 1.78423345e-01\\n-6.71439767e-01 -6.29417539e-01 -2.26146787e-01 -2.35034972e-01\\n-3.41912150e-01 -5.39322868e-02 -1.71290949e-01 -8.54104757e-02\\n2.90834665e-01 4.77657653e-02 -5.28764784e-01 1.13443062e-01\\n-8.87008458e-02 -3.27489674e-01 1.96179122e-01 6.90864205e-01\\n3.52157876e-02 -4.95525926e-01 -7.24969089e-01 -1.75578296e-01\\n4.46265787e-02 -1.27647072e-01 -1.41530577e-02 -4.12128925e-01\\n1.88603714e-01 -5.39683700e-02 3.14653069e-02 5.50726950e-01\\n-8.47731948e-01 -5.10891452e-02 -3.57646465e-01 -2.63388425e-01\\n-3.33476186e-01 1.15135483e-01 -1.52796566e-01 -1.45332605e-01\\n-1.57386392e-01 3.90089035e-01 2.77807266e-01 -1.06758550e-02\\n-4.53621149e-01 3.44178200e-01 -1.45526856e-01 4.85958278e-01\\n2.47769743e-01 1.21951140e-01 2.88916677e-01 2.20413893e-01\\n-3.76940787e-01 7.36453056e-01 3.16398963e-02 -3.58551621e-01\\n2.16846839e-01 -7.49198124e-02 3.84394437e-01 2.73943022e-02\\n-2.64576934e-02 1.97657019e-01 -1.73719466e-01 1.95563778e-01\\n6.48017451e-02 -5.08424401e-01 -7.92337060e-02 -5.52001335e-02\\n9.13666859e-02 8.88759643e-02 2.56055713e-01 1.15882009e-01\\n-3.57889891e-01 4.84372795e-01 7.16921762e-02 -1.19767427e-01\\n-2.05117822e-01 -3.25085521e-01 -8.26031864e-02 -9.81548727e-02\\n-1.16349727e-01 1.31780401e-01 2.42488146e-01 -1.26528472e-01\\n9.33175832e-02 6.95838481e-02 1.28684387e-01 7.17562199e-01\\n-9.33585465e-02 2.86299556e-01 -3.09207559e-01 4.18327451e-01\\n-6.41958974e-03 -2.99284518e-01 3.35889250e-01 2.42151201e-01\\n-1.43505380e-01 -3.51869941e-01 -3.17260742e-01 2.20537275e-01\\n-6.28572851e-02 -1.05963133e-01 -4.22708750e-01 1.17405437e-01\\n4.69663143e-02 -3.85675490e-01 6.49407864e-01 1.84825003e-01\\n4.78217393e-01 2.17188120e-01 4.92467619e-02 -1.15904003e-01\\n-6.93552494e-02 1.92949533e-01 -1.59613848e-01 2.23229066e-01\\n-1.41297877e-01 -3.50873232e-01 -1.18953228e-01 7.56064951e-02\\n-3.12820137e-01 3.79461884e-01 -1.46219149e-01 -3.81218940e-02\\n3.72580081e-01 1.53728992e-01 -4.92170155e-02 4.38014835e-01\\n-9.08473879e-03 1.49791270e-01 7.36936629e-02 5.28107762e-01\\n-1.76570788e-01 -4.18091714e-02 5.59897646e-02 -2.53181994e-01\\n7.87301838e-01 4.50907588e-01 -4.11478803e-03 -6.47390485e-02\\n4.89424556e-01 -1.39716312e-01 1.21994559e-02 5.12426943e-02\\n-5.78253508e-01 3.51367116e-01 1.31416321e-01 1.15890674e-01\\n-1.76310778e-01 -3.14279497e-01 7.22391158e-02 -2.74166167e-01\\n-5.78657985e-02 -2.21866041e-01 -5.07667065e-01 6.29264861e-04\\n-1.83593661e-01 7.49228755e-03 5.29774189e-01 -4.89969671e-01\\n-1.87945649e-01 2.63708085e-03 -4.54760253e-01 -1.58575505e-01\\n2.77801156e-01 2.70171702e-01 3.29084814e-01 1.20814919e-01\\n-3.28655094e-01 -3.10165107e-01 -5.96285015e-02 -3.88523161e-01\\n-3.70670199e-01 -1.36434644e-01 -3.42824370e-01 5.12215734e-01\\n3.14145535e-01 5.90466335e-02 -4.48591828e-01 6.69517070e-02\\n-1.06273994e-01 -2.15802789e-01 2.96944201e-01 1.55043930e-01\\n-1.05894923e-01 -1.45272657e-01 -2.66040087e-01 4.04952615e-01\\n-3.79057854e-01 6.49365544e-01 1.01017937e-01 -8.54216218e-01\\n4.82934564e-01 5.29005408e-01 -1.21620618e-01 -5.19423604e-01\\n4.81814831e-01 -4.88919199e-01 1.58493325e-01 1.00987762e-01\\n-3.88763011e-01 -2.72549033e-01 2.40427971e-01 -2.71736264e-01\\n-2.52337992e-01 6.29901230e-01 1.73519596e-01 7.94159807e-03\\n9.06901360e-02 -2.82840759e-01 -1.09382808e-01 -9.37911645e-02\\n-7.71079510e-02 -3.79899323e-01 -5.96348166e-01 -2.69809186e-01\\n-1.10673197e-01 -6.14367843e-01 -1.91425592e-01 -5.78479886e-01\\n-2.63806969e-01 -4.31736648e-01 -4.37709600e-01 1.46734431e-01\\n5.20620763e-01 1.86231300e-01 -6.81757629e-02 9.05086398e-02\\n-2.15485543e-01 -6.33086979e-01 1.06002942e-01 3.21451873e-01\\n4.99256313e-01 3.61655265e-01 9.88155305e-02 -1.52842343e-01\\n1.34059340e-01 8.68588090e-01 -2.32188642e-01 -2.54125386e-01\\n2.61660725e-01 4.18692946e-01 4.16165926e-02 -1.92847639e-01\\n2.43765533e-01 5.09977520e-01 -3.03008169e-01 6.83684796e-02\\n-1.16893098e-01 -2.68083364e-01 3.64181221e-01 1.24738500e-01\\n-3.25065196e-01 -2.55435675e-01 -1.04912765e-01 1.56567812e-01\\n-5.09405792e-01 -1.69240892e-01 5.85292518e-01 1.42769203e-01\\n2.61520505e-01 5.02295233e-02 -3.61185446e-02 1.80191189e-01\\n-1.99471056e-01 -2.83915222e-01 3.28858532e-02 6.19848892e-02\\n-2.38341019e-02 9.73844528e-02 -2.71497145e-02 -7.07210541e-01\\n-2.92089844e+00 -1.54890064e-02 1.43316388e-01 -4.18289781e-01\\n-5.20968065e-03 -1.11758828e-01 1.19968727e-01 -8.42143595e-02\\n-3.04627240e-01 2.17325062e-01 -2.14691237e-01 -6.76598623e-02\\n2.13686809e-01 -1.15365639e-01 2.77725875e-01 3.27028960e-01\\n3.05378854e-01 -1.73211008e-01 -3.04263771e-01 3.22778344e-01\\n-1.77518457e-01 -4.65785295e-01 2.76869416e-01 -1.65281326e-01\\n3.71756136e-01 1.54628828e-01 -2.42447495e-01 -9.87735391e-03\\n-1.48759812e-01 -2.10609481e-01 3.95201519e-02 -3.70646209e-01\\n-1.38188958e-01 3.01911771e-01 1.43629178e-01 -1.29291173e-02\\n1.55036822e-01 -6.70349360e-01 -3.36497992e-01 -4.42918837e-01\\n-4.52432632e-02 -1.05304384e+00 1.15647003e-01 1.39269307e-02\\n6.94219589e-01 -1.75854713e-01 5.37664145e-02 9.04886648e-02\\n-1.73066258e-02 -1.04357265e-01 7.67629743e-02 -1.43911719e-01\\n-4.53496754e-01 -2.48627186e-01 -1.09349966e-01 -1.41179338e-01\\n6.75892711e-01 5.95796704e-01 -2.11800516e-01 -9.02661756e-02\\n-2.69040391e-02 -2.84216046e-01 -6.26941800e-01 -1.78879872e-01\\n-2.15511769e-04 -2.50167906e-01 -6.60916090e-01 -4.23796535e-01\\n-2.46723145e-01 -1.85654789e-01 -1.10830568e-01 4.59751427e-01\\n-2.36107200e-01 -1.98545143e-01 -7.25344196e-02 -6.05073273e-01\\n1.98883832e-01 -1.76777571e-01 8.65589380e-02 -2.26361863e-02\\n-3.63470137e-01 -5.45931041e-01 -9.12000611e-03 -7.56780505e-02\\n-1.93484277e-01 -2.37884551e-01 2.68040508e-01 -5.15565202e-02\\n-3.09754163e-01 -4.82278824e-01 6.01333797e-01 1.63029015e-01\\n3.10932994e-01 -1.11896105e-01 3.25840354e-01 1.14579543e-01\\n3.15856457e-01 -2.01537125e-02 -4.32829857e-02 -3.55150312e-01\\n1.97724551e-01 1.94696799e-01 5.60156345e-01 -2.53853440e-01\\n-1.95055455e-01 2.34153382e-02 -5.61843157e-01 -9.44939405e-02\\n2.37896919e-01 -6.51039705e-02 2.49908686e-01 -3.98258626e-01\\n4.60867345e-01 -1.19584844e-01 -1.99738219e-01 9.99796987e-02\\n8.94545317e-02 6.53261304e-01 5.36743850e-02 -3.81332129e-01\\n-1.78255916e-01 5.04280269e-01 -7.36351684e-02 -2.43404999e-01\\n1.59230500e-01 1.02777153e-01 -2.34031051e-01 1.47330746e-01\\n2.16672644e-01 -8.27938318e-02 -3.32317114e-01 -7.26030767e-02\\n-2.43494987e-01 1.03612825e-01 1.88392535e-01 1.24809183e-01\\n-1.48471102e-01 -3.17979306e-01 -2.70620048e-01 4.28788781e-01\\n1.07077450e-01 4.21838045e-01 8.73714983e-02 -8.32148641e-02\\n-8.21116567e-02 4.33619142e-01 -1.20769076e-01 -3.31713632e-03\\n-3.69538546e-01 1.84778661e-01 -6.77306950e-01 -2.05298483e-01\\n-2.77249105e-02 -5.72673798e-01 2.02447608e-01 4.06501710e-01\\n8.65325630e-02 -1.50555745e-01 5.15803955e-02 -5.72476506e-01\\n2.73157001e-01 2.15510890e-01 4.43797588e-01 2.54752755e-01\\n1.38875246e-01 6.72325194e-01 -1.40780509e-02 -1.78392917e-01\\n-2.27383018e-01 -1.07669406e-01 -1.69660360e-01 -3.84357870e-01\\n-4.91623916e-02 -6.92594647e-01 -4.76337075e-02 3.75640243e-01\\n-3.16562504e-03 -2.87885070e-01 -1.82092905e-01 2.91007072e-01\\n-7.72917420e-02 -2.22774655e-01 -1.90423310e-01 -9.12147015e-02\\n4.85680759e-01 2.30508782e-02 3.25073361e-01 -4.90560740e-01\\n-1.11096740e-01 4.78673987e-02 -4.16602433e-01 5.45745075e-01\\n2.71667838e-01 5.22177629e-02 -4.98104505e-02 -3.87698472e-01\\n4.46463883e-01 1.02352828e-01 -1.39895529e-01 -2.36747548e-01\\n6.76016361e-02 -2.89747149e-01 -3.98894042e-01 1.67928174e-01\\n2.41518557e-01 -2.52371967e-01 2.36691356e-01 1.93164915e-01\\n3.74179155e-01 8.50594789e-02 -4.97183770e-01 -3.92439663e-01\\n-1.91835403e-01 -3.33038867e-02 1.03494123e-01 -6.15997255e-01\\n6.80217221e-02 -1.63860202e-01 -5.79401731e-01 1.48167253e-01\\n-3.23484123e-01 -1.94928437e-01 2.81010807e-01 1.49007410e-01\\n-4.28352654e-01 -2.07452290e-02 1.36774302e-01 1.70386389e-01\\n-3.14856142e-01 -6.32401526e-01 2.01793626e-01 -9.23063695e-01\\n2.51696616e-01 2.37054467e-01 -4.04593766e-01 5.49306534e-02\\n1.63823903e-01 -9.00801778e-01 1.02020271e-01 -2.55118698e-01\\n3.97187658e-02 -9.67074260e-02 -9.84626412e-02 -2.25270331e-01\\n-2.55120713e-02 -3.65545675e-02 -3.02768767e-01 2.98585832e-01\\n-2.79554009e-01 6.21243238e-01 -2.32145607e-01 9.19599757e-02\\n1.14463255e-01 -3.17713261e-01 1.18459091e-01 -8.70741606e-01\\n-4.45907891e-01 -2.87996948e-01 -5.05886614e-01 -3.57107103e-01\\n-1.88799769e-01 -1.37420222e-01 -1.40401900e-01 3.63304093e-02\\n4.20471609e-01 1.44886792e-01 -1.60747319e-01 -1.95271417e-01\\n-2.14418173e-02 -5.23657322e-01 -1.88213870e-01 -1.24371983e-02\\n-7.55573064e-02 -5.30684032e-02 1.50198117e-01 -1.49966732e-01\\n7.82846659e-02 -4.75065112e-01 1.09809905e-01 -4.07020718e-01\\n-2.92787790e-01 -1.31156981e-01 2.88318396e-01 1.35098189e-01\\n2.17686906e-01 -5.93835950e-01 -1.20256759e-01 2.84367144e-01\\n3.82328510e-01 6.51737079e-02 3.66024703e-01 4.29747924e-02\\n-9.75161791e-03 5.22429585e-01 -4.47099745e-01 2.18995273e-01\\n6.66589260e-01 -1.28991976e-01 8.06722343e-02 1.90499261e-01\\n3.95073071e-02 2.15176851e-01 4.16731089e-01 2.51211405e-01\\n-1.25822410e-01 2.78604656e-01 1.20298222e-01 -4.29971695e-01\\n-1.21217333e-02 -3.68702859e-02 -1.15095481e-01 -1.94737434e-01\\n6.37750566e-01 4.89798725e-01 -4.15502906e-01 -6.61773235e-02\\n-2.79729247e-01 -1.03946187e-01 -1.84930675e-02 -1.17714301e-01\\n-4.69808429e-02 1.72385931e-01 6.84639275e-01 1.16116598e-01\\n4.23968196e-01 6.41237915e-01 -1.97072238e-01 -4.22502398e-01\\n-1.33613795e-01 2.78072417e-01 1.11129962e-01 3.16274226e-01\\n-1.65045649e-01 3.24080586e-01 8.86962488e-02 2.92871520e-02\\n-1.89742982e-01 2.97729909e-01 2.05490559e-01 5.88398688e-02\\n-4.53156419e-04 9.34392810e-02 3.90898317e-01 4.71112579e-01\\n5.41396379e-01 4.41723406e-01 3.43481302e-01 9.22940075e-02\\n5.53264141e-01 5.96979976e-01 4.73604620e-01 1.10539541e-01\\n-4.01786566e-02 -2.70450898e-02 5.14076352e-02 -1.28361106e-01\\n3.13729405e-01 5.93488574e-01 1.49589449e-01 9.09877717e-01\\n3.99513781e-01 2.19487876e-01 7.31349111e-01 -4.83376741e-01\\n-2.79941767e-01 2.16995031e-01 3.36971581e-01 -1.15188472e-01\\n-4.55705523e-01 -1.70811489e-02 -3.00111353e-01 9.39653218e-02\\n-1.90340787e-01 -1.21927619e-01 -2.26867512e-01 2.51918077e-01\\n1.32108778e-01 -3.23038816e-01 -2.92844027e-01 3.00338268e-01\\n-9.28212851e-02 -2.01827615e-01 -2.84656286e-01 6.10644445e-02\\n-2.29823351e-01 -3.33221883e-01 -6.86865300e-03 -8.14576745e-02\\n-2.36464202e-01 -4.80007529e-01 6.05236217e-02 6.93922117e-02\\n3.47616017e-01 2.72340588e-02 -1.45883933e-01 -2.16763169e-01\\n3.08957756e-01 3.46369863e-01 6.80261791e-01 2.02832907e-01\\n1.24827266e-01 -2.07953170e-01 -3.05794835e-01 3.69119555e-01\\n4.33714628e-01 5.12704626e-02 -1.26048252e-01 3.13889742e-01\\n-1.50189921e-01 7.80615136e-02 2.13052884e-01 6.01481915e-01\\n-5.20169258e-01 3.22288454e-01 -3.58050674e-01 1.39276937e-01\\n2.83578902e-01 3.46512258e-01 -2.65960962e-01 -4.12887409e-02\\n-1.12091750e-01 -6.79867983e-01 1.51047692e-01 -2.12253958e-01\\n-2.64104933e-01 9.28182453e-02 -6.09761849e-03 3.00146699e-01\\n-7.09469244e-02 -9.42323953e-02 2.05947995e-01 3.70063931e-01\\n-3.90925035e-02 1.91034436e-01 -1.54113621e-01 -2.97648072e-01\\n-2.93753505e-01 2.75388360e-01 -2.07857311e-01 2.48394966e-01\\n6.36276826e-02 3.94563079e-01 1.59804374e-01 1.28996387e-01\\n4.71151829e-01 -1.21012360e-01 -2.78509617e-01 -1.58932030e-01\\n-2.94384480e-01 -3.47311676e-01 -1.69810727e-02 1.40851615e-02\\n2.62279868e-01 -4.45712447e-01 -7.18175620e-02 -2.18636155e-01\\n-2.74273217e-01 -2.44005144e-01 -3.05844955e-02 -2.26104468e-01]]',\n", + " 'job_description': 'We are looking for the most talented and passionate individuals that love to work in demanding and international environments. Our team is passionate, dedicated and highly motivated to tackle the daily challenges of a SaaS start-up. As a Software Engineer in the Growth Team, you will have the opportunity to work on all of our software stacks and learn about state-of-the-art development. The Growth Team is a cross-collaboration team containing engineers, product people, product designers and marketers to work as a fully functioning and highly effective unit. The ideal candidate has a back-end developer profile with no fear of also doing full-stack work. Your job within the team will be to support/build initiatives of finding new innovative solutions and technologies to grow the company and bring it to its next level. Technologies Used: Python, Java, Node.js, Postgres, Elasticsearch, Docker, Vue.js, Objective-C/Swift, Kotlin --------------------- Your Responsibilities --------------------- Build and maintain a scalable backend system to boost Beekeepers Free Trial Services Implement backend requirements for any projects or experiments of the Growth Team Implement product changes at massive scale with rapid data-driven iteration Rapid MVP building together with all stakeholders of the team to really build solutions that have a real impact on metrics and users Responsible for building all the necessary tools and infrastructure to unlock rapid growth Be the leader in the team for any backend related topics ----------------------- What we look for in you ----------------------- 3+ years of experience with a focus on backend technologies Experience making APIs Experience integrating with 3rd party applications Experience with Microservices Experience with AWS Experience with greenfield projects Creativity and out of the box thinking to make things work Interest in Growth Hacking and it\\'s mentality A \"Just get it done\"-mindset Fluent in English ------------ Bonus Points ------------ Track record at Hackathons B2B and SaaS experience We love founders and an entrepreneurial mindset ----------------- What we offer you ----------------- Amazing team with 20+ nationalities across 4 office locations Vibrant company culture with breakfasts, board game nights, crossfit and team events Realize your own ideas in quarterly hackathons and \"20% time\" projects Continuous learning through weekly Bee University talks and support to join conferences Pick the hardware you need for work and we cover your mobile phone bill ------------------------------------------------- Technologies & Frameworks we use at Beekeeper ------------------------------------------------- Java, Python, JavaScript, MySQL, ElasticSearch, RabbitMQ, Docker, Celery, SQLAlchemy, Backbone, Realm, Kubernetes, Vue, Swift, Objective-C, Kotlin, ReactiveX',\n", + " 'soft_skills': '[\"Innovation\", \"Infrastructure\", \"Creativity\", \"Integration\"]',\n", + " 'hard_skills': '[\"MySQL\", \"Technology Readiness Level\", \"Kubernetes\", \"Tooling\", \"Boost (C++ Libraries)\", \"Vue.js\", \"Beekeeping\", \"MASSIVE (Software)\", \"Scale (Map)\", \"Objective-C (Programming Language)\", \"Cross-Functional Collaboration\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"Track (Rail Transport)\", \"ReactiveX\", \"Iterators\", \"Microservices\", \"Software Engineering\", \"Product Engineering\", \"Swift (Programming Language)\", \"Mobile Phones\", \"Docker (Software)\", \"RabbitMQ\", \"Product Design\", \"JavaScript (Programming Language)\", \"Scalability\", \"SQLAlchemy\", \"Growth Hacking\", \"Unlocker\", \"Back End (Software Engineering)\", \"Java (Programming Language)\", \"Custom Backend\", \"Elasticsearch\", \"Kotlin\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '84',\n", + " 'job_title': 'data management software engineer (w/m)',\n", + " 'location': 'Zürich',\n", + " 'industry': 'IT Services',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-4.04619247e-01 2.37983733e-01 5.40266812e-01 -1.12129927e-01\\n4.37007159e-01 -1.66741446e-01 9.36558768e-02 1.43781796e-01\\n-5.95327504e-02 -2.85568804e-01 -8.73139426e-02 -3.11490208e-01\\n-1.39583722e-01 3.46547067e-02 1.82638094e-01 5.57610631e-01\\n2.44249985e-01 3.16596553e-02 -2.86290497e-01 2.62290210e-01\\n8.15777108e-02 2.19135615e-03 -1.83395296e-03 7.27779508e-01\\n4.82069224e-01 -1.06577566e-02 -5.05015664e-02 -9.33204442e-02\\n-2.81174451e-01 -2.42011547e-01 4.95320857e-01 8.96196067e-03\\n-1.20651104e-01 -2.40456611e-01 8.06236491e-02 1.22564416e-02\\n-1.48057103e-01 -1.06481209e-01 1.21796452e-01 1.73215896e-01\\n-4.96022940e-01 -2.60411412e-01 2.62095500e-02 1.38251418e-02\\n-3.01295906e-01 -3.48673105e-01 -1.62118301e-01 3.50100663e-03\\n5.86734824e-02 1.94859207e-02 -5.66971362e-01 3.77061307e-01\\n-3.04460287e-01 -8.67407545e-02 2.38588333e-01 5.48194766e-01\\n4.77187969e-02 -6.60159528e-01 -3.13554347e-01 -2.63900489e-01\\n2.55775660e-01 -7.51654506e-02 1.72610834e-01 -1.17358841e-01\\n2.44545251e-01 -9.78455096e-02 -1.42277703e-01 4.92575258e-01\\n-5.47234476e-01 -2.31302887e-01 -3.20883602e-01 -1.02473021e-01\\n-2.80921131e-01 6.80592237e-03 -2.66840160e-01 -1.10580124e-01\\n-9.71888304e-02 3.42994839e-01 -3.02659478e-02 9.73834097e-03\\n-2.83317894e-01 2.43967295e-01 -5.57391606e-02 2.09963724e-01\\n2.92557299e-01 2.54828036e-01 2.88724452e-01 3.51320118e-01\\n-5.62426984e-01 5.28845251e-01 1.95096627e-01 -4.15902555e-01\\n1.82263881e-01 4.19072211e-02 5.09649217e-01 1.01629868e-01\\n1.08120821e-01 1.42978922e-01 -7.13947639e-02 1.65729195e-01\\n2.17857599e-01 -2.52555430e-01 2.44665697e-01 -8.46438557e-02\\n-2.55009592e-01 9.78587121e-02 5.92012145e-02 2.32916564e-01\\n-3.92669410e-01 3.68564278e-01 3.05657625e-01 -2.71317095e-01\\n-2.13548332e-01 -6.32961214e-01 -1.21821808e-02 -5.68022579e-03\\n-7.13676736e-02 1.82955071e-01 3.73892099e-01 1.40550569e-01\\n2.75219262e-01 -4.41518910e-02 2.56982148e-01 8.66636574e-01\\n1.41872661e-02 1.26892710e-02 -4.14273530e-01 3.25541824e-01\\n1.10272102e-01 -1.38247252e-01 1.38583824e-01 1.94496036e-01\\n4.75180782e-02 -6.52725175e-02 -3.39238822e-01 3.52184981e-01\\n-8.06421489e-02 -2.05381155e-01 -2.65099943e-01 4.25683819e-02\\n-3.20510209e-01 -4.84697640e-01 4.83849496e-01 2.18779724e-02\\n1.63596675e-01 -2.04687044e-01 3.37807052e-02 -8.81746039e-02\\n1.17199585e-01 3.58839929e-01 8.93602595e-02 1.60861626e-01\\n-2.86633253e-01 -1.86741233e-01 -2.15303034e-01 3.45746040e-01\\n-9.84168425e-02 1.60792157e-01 -6.55362234e-02 -9.98022407e-02\\n2.64480740e-01 1.16503663e-01 -3.36339295e-01 2.58920819e-01\\n9.31335315e-02 -3.83129209e-01 -2.39339858e-01 3.04429919e-01\\n-1.87159404e-01 9.06329826e-02 1.20504260e-01 -2.82558709e-01\\n5.19752383e-01 1.43018082e-01 3.21446151e-01 -1.10254951e-01\\n3.34982723e-01 -2.15550095e-01 1.95001960e-01 1.37457967e-01\\n-6.17527902e-01 3.15541923e-01 -7.87449032e-02 -4.68976311e-02\\n1.05896004e-01 6.64212331e-02 2.44559258e-01 -4.23880428e-01\\n5.57942614e-02 -2.21643612e-01 -2.94313461e-01 -5.07443964e-01\\n-1.27429634e-01 -1.25017837e-01 4.02090639e-01 -2.68896610e-01\\n-1.84477210e-01 1.64503783e-01 -4.57849234e-01 -1.02896854e-01\\n2.10981965e-01 1.05404221e-01 2.76525412e-02 1.89035341e-01\\n-1.05318569e-01 -5.74167550e-01 3.17176222e-03 -4.74228531e-01\\n-5.94800651e-01 2.15164591e-02 -1.05155818e-01 2.14459583e-01\\n-2.41729058e-02 3.10297739e-02 -8.35366398e-02 1.39171839e-01\\n-3.50253761e-01 1.09422497e-01 7.46040866e-02 1.94349006e-01\\n2.93067276e-01 -2.10401583e-02 -4.28189695e-01 5.57240784e-01\\n-1.77550480e-01 4.45131987e-01 2.71552801e-01 -8.76573265e-01\\n5.07878959e-01 1.11600816e-01 1.47071555e-01 -3.84725988e-01\\n4.93396819e-01 -4.78541642e-01 1.11739859e-01 1.55768320e-01\\n-3.06489319e-01 -1.61424905e-01 3.56450975e-01 -1.92792878e-01\\n-2.88099974e-01 5.55766046e-01 2.09969431e-01 5.25403954e-02\\n2.23205253e-01 -3.01926821e-01 -4.44831327e-02 -1.43713474e-01\\n-1.59706011e-01 -2.00237438e-01 -4.59070593e-01 2.37458393e-01\\n3.41521055e-02 -6.08120799e-01 -1.42498448e-01 -4.44842309e-01\\n-2.13198870e-01 -3.42192918e-01 -2.08161578e-01 3.53546679e-01\\n2.42999882e-01 1.24524780e-01 1.11621581e-01 -7.79664516e-02\\n-1.20637394e-01 -4.84014243e-01 -2.31873423e-01 1.95983127e-01\\n4.54764992e-01 2.13018864e-01 -9.15084928e-02 5.85114770e-02\\n-4.07321863e-02 6.29579961e-01 -2.68378079e-01 -2.62396902e-01\\n1.45282626e-01 2.31789425e-01 7.99286515e-02 -1.04344845e-01\\n-3.76019627e-04 3.13822210e-01 -7.85001516e-02 4.32799980e-02\\n-6.18564850e-03 3.33624659e-03 5.20001888e-01 3.62874530e-02\\n-1.70965791e-01 -1.37271687e-01 2.88175382e-02 1.97090745e-01\\n-5.59848905e-01 -1.42540261e-01 5.46197951e-01 2.76924551e-01\\n1.55028656e-01 2.68276006e-01 3.25991839e-01 -1.03694253e-01\\n-2.92399228e-01 -2.51350880e-01 1.94376737e-01 9.74271670e-02\\n-9.42894369e-02 -5.86205721e-02 -1.53127804e-01 -3.40821087e-01\\n-2.85217285e+00 -1.88795060e-01 8.91871527e-02 -2.93270886e-01\\n1.11793593e-01 -9.50155631e-02 5.40353321e-02 1.88888106e-02\\n-3.14325631e-01 2.54123181e-01 -1.26362681e-01 -2.08593294e-01\\n9.16382745e-02 1.61194175e-01 9.26532596e-02 1.73650503e-01\\n1.66929603e-01 -1.71514511e-01 -1.51542291e-01 3.25114310e-01\\n-8.72226208e-02 -7.84008026e-01 2.36325994e-01 1.07066128e-02\\n2.11145118e-01 1.19726062e-01 -4.96786267e-01 -3.76782939e-02\\n-3.36528689e-01 -3.32790852e-01 1.26519725e-01 -3.50257486e-01\\n-1.11090176e-01 3.04731518e-01 2.54530996e-01 -1.38892651e-01\\n4.96143885e-02 -4.33304876e-01 -6.62626624e-02 -4.68338072e-01\\n2.27370530e-01 -6.71676695e-01 5.24142049e-02 -1.57562181e-01\\n7.03120589e-01 -3.63721788e-01 1.08109847e-01 4.35707867e-02\\n2.26515263e-01 1.07248716e-01 5.76627254e-03 1.00331218e-03\\n-2.63620168e-01 -3.64444584e-01 7.23023489e-02 -1.44800738e-01\\n3.63338292e-01 5.34996629e-01 -1.85651228e-01 -7.53171090e-03\\n-7.91930314e-03 -2.85261929e-01 -3.88378143e-01 -3.76208991e-01\\n-3.92676264e-01 -1.56235620e-01 -6.93375170e-01 -3.87414664e-01\\n-1.55271247e-01 -1.07208885e-01 -2.15029687e-01 6.76994145e-01\\n-3.23091567e-01 -3.30971569e-01 -5.64591549e-02 -5.44489086e-01\\n1.13336138e-01 -3.74319553e-01 9.50227976e-02 -1.93543166e-01\\n-3.51352990e-01 -5.35526335e-01 2.84751415e-01 -5.11846952e-02\\n-8.59607309e-02 -4.58651856e-02 -5.46038151e-04 -2.23485962e-01\\n-2.80590624e-01 -2.99374610e-01 4.29836422e-01 1.94793969e-01\\n3.72653335e-01 1.76799670e-01 3.39215457e-01 1.62148267e-01\\n2.73224264e-01 -1.83394566e-01 8.96622986e-02 -2.28090391e-01\\n1.13777220e-01 3.39884534e-02 6.75155759e-01 -2.06183940e-01\\n1.39843807e-01 9.27630812e-02 -2.50225365e-01 -7.90078864e-02\\n5.19218922e-01 -5.60257360e-02 8.24456438e-02 -7.16828927e-02\\n3.97831857e-01 -6.23222709e-01 -2.19044089e-01 7.03658462e-02\\n-2.54930090e-02 6.92952991e-01 3.89781594e-03 -4.58891869e-01\\n-2.32829571e-01 3.48263830e-01 -9.64898318e-02 -1.83875874e-01\\n-3.95994991e-01 2.77174264e-01 -2.41616726e-01 3.10650080e-01\\n-1.76558569e-01 -2.08769560e-01 -4.05650616e-01 -1.15276769e-01\\n1.49738509e-02 2.06496015e-01 2.57720381e-01 -7.65000063e-04\\n4.83232215e-02 -2.22599074e-01 -2.77172297e-01 1.79709479e-01\\n4.09779131e-01 3.68144661e-01 1.30963072e-01 -1.97389871e-01\\n-4.37393710e-02 2.51729459e-01 -2.18878135e-01 1.55812651e-01\\n-1.66286543e-01 7.31632859e-02 -4.00317848e-01 -2.74588138e-01\\n-1.69619750e-02 -3.40102255e-01 7.36577734e-02 4.18122441e-01\\n9.39067453e-02 -9.00268331e-02 3.44443768e-02 -3.66995543e-01\\n4.74671423e-01 7.72488341e-02 1.44116610e-01 1.71139553e-01\\n3.50709967e-02 7.12831914e-01 -1.42141372e-01 -4.03422974e-02\\n-1.01996899e-01 -2.06455708e-01 -2.98413903e-01 -1.83103055e-01\\n5.37399873e-02 -2.48847485e-01 -5.99636100e-02 5.33710301e-01\\n6.03590570e-02 -3.34941447e-01 -1.24634756e-02 4.08279240e-01\\n2.58461274e-02 -1.74661115e-01 -2.11270183e-01 1.36494741e-01\\n2.27859169e-01 1.09098926e-01 2.69303143e-01 -3.99424285e-01\\n-2.49650642e-01 1.82069223e-02 -7.86261186e-02 4.70528781e-01\\n1.63750738e-01 2.16054171e-01 -1.42498940e-01 -3.37230057e-01\\n4.91614431e-01 -3.02777261e-01 -2.81928837e-01 8.89430791e-02\\n1.36825651e-01 -1.46780685e-01 -4.68305677e-01 -4.25700322e-02\\n1.25938654e-02 -2.86509663e-01 1.70969367e-01 6.38114437e-02\\n1.44428164e-01 -7.26535404e-03 -5.86546123e-01 -2.51299322e-01\\n-2.54348367e-01 -1.70128066e-02 1.00141779e-01 -5.17459631e-01\\n-6.78743050e-02 -2.26186380e-01 -6.03169024e-01 3.15219253e-01\\n-2.58965820e-01 -5.17338291e-02 8.25141817e-02 1.67500153e-01\\n-3.25172901e-01 -1.97020054e-01 1.64911360e-01 1.29827052e-01\\n-2.44464055e-01 -1.70529023e-01 2.05898136e-02 -9.78021085e-01\\n9.99073982e-02 4.30547968e-02 -1.15357511e-01 -1.54904025e-02\\n-8.92051905e-02 -6.16842747e-01 1.51459068e-01 -2.25688696e-01\\n1.55858826e-02 1.21558681e-01 -1.74848154e-01 -4.15118963e-01\\n1.14509590e-01 -4.48607132e-02 -1.11757629e-01 3.45323801e-01\\n-3.38240057e-01 2.83532441e-01 -1.15263164e-01 7.12145194e-02\\n4.04450260e-02 -2.41171733e-01 2.69744545e-01 -3.17019463e-01\\n-4.24472809e-01 -1.50734916e-01 -4.60670203e-01 -2.84482986e-01\\n7.25717172e-02 -2.55070865e-01 -2.73223966e-01 2.94841938e-02\\n3.70932639e-01 1.77226558e-01 -1.61630258e-01 -2.04684839e-01\\n5.69073744e-02 -4.37787563e-01 2.40399837e-01 -2.60320008e-01\\n-7.59520684e-04 -2.56424040e-01 3.55218127e-02 -3.45481597e-02\\n-4.89706658e-02 -3.05138052e-01 4.13746417e-01 -2.70617336e-01\\n-3.71311367e-01 -1.46093354e-01 5.72561212e-02 1.21661641e-01\\n4.23636138e-01 -4.58766431e-01 2.95110010e-02 1.84038773e-01\\n6.31051585e-02 1.28558025e-01 3.33770335e-01 -1.09484695e-01\\n-1.41081139e-01 3.05547804e-01 -5.24600089e-01 2.37237453e-01\\n7.29221284e-01 2.45229721e-01 7.28756264e-02 2.62991637e-01\\n2.53038913e-01 2.12367058e-01 3.98523778e-01 6.73928438e-03\\n-8.80630836e-02 2.46501848e-01 -1.33792758e-02 -5.46766818e-01\\n-1.59371302e-01 -1.98051453e-01 -2.22146437e-01 -4.31959093e-01\\n5.79992890e-01 3.94977093e-01 -3.29748213e-01 -2.03464001e-01\\n1.03392769e-02 -4.71854322e-02 2.42079481e-01 -1.22004353e-01\\n-8.00133795e-02 9.67349038e-02 6.49829924e-01 6.81088045e-02\\n3.74114037e-01 5.67824483e-01 -1.71621829e-01 -3.62950176e-01\\n-2.26238772e-01 2.73131073e-01 1.12081580e-01 4.49022204e-01\\n-7.55982846e-02 2.46758863e-01 1.81800462e-02 2.28397503e-01\\n7.48162204e-03 -5.31575009e-02 4.60344665e-02 4.39571479e-04\\n1.68793470e-01 1.15588017e-01 1.36030719e-01 3.72072428e-01\\n1.93238571e-01 4.16310579e-01 2.90624470e-01 4.13490459e-02\\n3.95109653e-01 8.31477165e-01 4.60052967e-01 2.18542576e-01\\n6.23000935e-02 -2.00765226e-02 -9.23007354e-02 1.53437881e-02\\n2.89922953e-01 3.11228842e-01 -3.01881172e-02 8.65579605e-01\\n2.89954245e-01 2.57361382e-01 5.90918660e-01 -5.42949975e-01\\n-5.10221243e-01 4.02284265e-02 4.53992575e-01 -3.54481161e-01\\n-5.39796688e-02 9.78207737e-02 -2.55533010e-01 2.75271803e-01\\n-3.95960122e-01 -1.46565646e-01 6.82097152e-02 -1.97503805e-01\\n9.75523442e-02 -2.27495469e-02 -1.88074842e-01 1.75879851e-01\\n-2.64562488e-01 -2.34696865e-01 -1.70675278e-01 -1.10963091e-01\\n-3.21500808e-01 1.37956869e-02 -1.00710325e-01 -5.56597374e-02\\n-8.15834776e-02 -3.74000490e-01 -1.12941198e-01 1.76065519e-01\\n3.51574689e-01 -1.30940035e-01 -7.18945116e-02 -5.37310503e-02\\n1.88916214e-02 2.46333972e-01 5.37510812e-01 -9.72419009e-02\\n1.26664028e-01 -1.12915412e-01 -4.05702323e-01 1.72997769e-02\\n1.33593902e-01 7.45546445e-02 6.65446296e-02 4.03454989e-01\\n-3.97048533e-01 -8.17728117e-02 2.23992869e-01 3.37566942e-01\\n-4.01896626e-01 9.17375088e-02 -2.29286686e-01 1.92628279e-01\\n2.24581107e-01 1.60014763e-01 -3.16188604e-01 8.65127072e-02\\n-2.07978994e-01 -5.02468884e-01 3.69291455e-01 -2.60421067e-01\\n-1.35686085e-01 1.44794315e-01 1.94411069e-01 1.72236651e-01\\n-4.05288428e-01 1.01948716e-01 -1.18795119e-01 3.52785915e-01\\n2.78403722e-02 2.67738551e-01 -2.71615237e-01 -1.68528873e-02\\n-2.70849913e-01 2.13211104e-01 -1.21285208e-01 1.93018094e-01\\n-3.81334983e-02 2.27157235e-01 1.16759017e-01 -4.44551781e-02\\n1.99618146e-01 1.60197970e-02 -2.00895458e-01 -2.73232073e-01\\n-2.25943699e-01 -2.96091080e-01 2.19793394e-01 -2.18684927e-01\\n1.98216841e-01 -4.06210095e-01 -1.91734508e-01 -2.20438987e-01\\n-1.61545664e-01 -3.84984344e-01 -1.62086561e-01 -2.44810116e-02]]',\n", + " 'job_description': 'Über unseren Kunden Our client is a strong brand – more than 1.4 million Swiss customers place their trust in our products and services. Ihr Aufgabenbereich Developing and supporting Data Management Framework application(s) ranging from small integration tools to full-blown applications, over time building up an integrated solution suite enabling Data Management to support the enterprise in becoming even more data driven Contributing to overall data management capability development, spanning various topics like data modeling, metadata management, data standardization and master & reference data management Being part of the development team supporting the Risk Modelling Platform generic components underpinning a range of business critical capital modelling applications Supporting incident resolution; working with the BUs to mitigate associated impacts Ihr Profil University level education, e.g. Computer Science, Computer Engineering, or Engineering Discipline 10+ years of experience in enterprise-grade software development 10+ years of experience with C# .NET framework development High degree of customer focus & end-to-end solution delivery attitude Proficiency in C# and object-oriented programming concepts, enjoys writing clear, maintainable code, tests and documentation Familiarity with enterprise application architecture patterns (concurrency models, unit-of-work etc.), transactional processing, domain driven design, REST APIs and service oriented architecture including solid skills in managing complexity with decoupling and dependency injection Knows how to approach a problem statement, steer the requirements engineering and drive the technical solution design Experience in the data management domain (metadata, master & reference, data quality, etc.) are a plus Has excellent communication skills, both written and oral, able to interact with different management levels Fluent in written & spoken English, German is a plus Ihre Chance Haben wir Ihr Interesse geweckt und Sie sind bereit eine neue Herausforderung anzunehmen? Dann schicken Sie Ihre vollständigen Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C .NET Entwicklung Sprachen: Deutsch Englisch Job ID: 7379',\n", + " 'soft_skills': '[\"Writing\", \"Management\", \"Integration\"]',\n", + " 'hard_skills': '[\"Code Testing\", \"Reference Data\", \"Mitigation\", \"Tooling\", \"Capitalization\", \"Interactivity\", \"Computer Science\", \"Metadata\", \"Data Management\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Build Time\", \"Branding\", \".NET Framework\", \"Service Level Management\", \"E (Programming Language)\", \"Levelling\", \"Applications Architecture\", \"Concurrency Pattern\", \"Programming Concepts\", \"C (Programming Language)\", \"Domain Driven Design\", \"Application Portfolio Management\", \"C# (Programming Language)\", \"Dependency Injection\", \"Solution Delivery\", \"Requirements Engineering\", \"Clinical Data Management\", \"Capability Development\", \"Computer Engineering\", \"Technical Solution Design\", \"Transaction Processing (Business)\", \"Software Development\", \"Solution Design\", \"Metadata Modeling\", \"Maintaining Code\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Chewa']\"},\n", + " {'company_id': '80',\n", + " 'job_title': 'software engineer / software developer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.25367069e-01 2.32250974e-01 5.06567001e-01 -3.08572352e-02\\n5.38056970e-01 -1.08408272e-01 -2.40812823e-02 1.60881981e-01\\n4.34205234e-02 -2.91904867e-01 -2.14868248e-01 -2.16581345e-01\\n-1.15298659e-01 5.15648387e-02 2.66742986e-02 3.83278847e-01\\n3.06102395e-01 2.71346886e-02 -6.74058422e-02 3.92125249e-01\\n2.81417258e-02 -9.31503773e-02 -5.77119514e-02 5.83967149e-01\\n2.64430732e-01 9.47352946e-02 -5.33663295e-02 -4.10202071e-02\\n-3.11393440e-01 -1.79390132e-01 3.07072222e-01 1.23419017e-01\\n-1.27168745e-01 -3.90187591e-01 1.36987880e-01 1.06949173e-01\\n-2.15480745e-01 1.32493526e-02 -9.48492959e-02 9.79602560e-02\\n-5.29760838e-01 -3.24110836e-01 1.52288482e-01 2.27997378e-02\\n-1.94146991e-01 -2.01853797e-01 1.83830202e-01 -1.11657187e-01\\n2.45372951e-02 2.38093957e-02 -5.33806860e-01 3.54550540e-01\\n-4.20291483e-01 -2.47024447e-01 3.81521523e-01 5.96935749e-01\\n1.69312924e-01 -6.64397001e-01 -4.12428617e-01 -2.82069921e-01\\n5.34798726e-02 -6.41626418e-02 9.88345891e-02 -1.96285963e-01\\n3.43531489e-01 1.34739205e-02 -2.21036226e-02 4.34350729e-01\\n-8.26372087e-01 -7.20439404e-02 -2.62500703e-01 1.33338645e-01\\n-3.52257192e-01 -6.25488013e-02 -2.36151934e-01 -2.17267051e-02\\n-2.60160733e-02 3.94523978e-01 8.44941754e-03 1.12511650e-01\\n-1.26457617e-01 3.30614686e-01 -1.41389266e-01 2.90522575e-01\\n3.11808646e-01 3.45171019e-02 3.02065790e-01 2.80326009e-01\\n-4.95883435e-01 4.50023830e-01 1.81527719e-01 -2.11015806e-01\\n2.67653227e-01 1.58400148e-01 4.31469202e-01 1.78276002e-01\\n3.01656872e-02 1.81041181e-01 -1.35731250e-01 4.81240451e-02\\n1.01029329e-01 -7.63979331e-02 -1.94998413e-01 -6.14719130e-02\\n-3.69126052e-02 -1.09417550e-01 -2.68448591e-02 1.85031161e-01\\n-4.15751815e-01 4.12972987e-01 2.20459431e-01 -2.19872743e-01\\n-1.96752381e-02 -4.31497753e-01 -2.18178660e-01 4.53583896e-02\\n-1.14089355e-01 3.48000340e-02 1.87637717e-01 1.06855065e-01\\n2.69330353e-01 7.03730136e-02 8.25046599e-02 7.83579886e-01\\n-1.72811537e-03 6.37024045e-02 -9.77263004e-02 3.78203273e-01\\n2.06835926e-01 -1.85746089e-01 1.33802921e-01 1.87158450e-01\\n-7.54398704e-02 -1.99264847e-02 -2.52931893e-01 3.46191227e-01\\n-1.03875570e-01 -1.28544092e-01 -2.18259960e-01 1.40593365e-01\\n-1.73572809e-01 -4.48526561e-01 4.59843755e-01 -5.11627942e-02\\n1.50587812e-01 -2.82702427e-02 9.14290249e-02 -6.30012676e-02\\n-2.76991069e-01 3.58803034e-01 5.73794395e-02 3.81285369e-01\\n-3.20071816e-01 -2.03894228e-01 -1.51104420e-01 2.85816401e-01\\n-5.67993410e-02 3.12752128e-02 -3.11789513e-01 -1.94346130e-01\\n3.82191598e-01 1.98204935e-01 -4.09960330e-01 2.23371714e-01\\n-4.69688699e-03 -1.26406088e-01 -1.46324620e-01 2.33621150e-01\\n-3.00254114e-02 4.97157536e-02 -4.65934239e-02 -1.97821960e-01\\n5.21380901e-01 2.19704241e-01 2.86892235e-01 -5.03344350e-02\\n4.63541001e-01 -2.00360835e-01 2.53830343e-01 8.34876969e-02\\n-6.59926414e-01 3.12164098e-01 -3.62023823e-02 2.49249861e-02\\n9.88058597e-02 2.55212002e-02 4.41434443e-01 -4.59113181e-01\\n-2.31090225e-02 -2.44792342e-01 -5.09799957e-01 -4.36985701e-01\\n-2.72760272e-01 5.69667667e-03 3.66374701e-01 -3.63009006e-01\\n-7.15652481e-02 7.69126564e-02 -5.78313112e-01 -1.99701443e-01\\n2.76786000e-01 2.33507782e-01 4.84719127e-02 5.50956689e-02\\n-1.26087397e-01 -5.80397725e-01 4.65628244e-02 -5.05747437e-01\\n-4.18906152e-01 8.55193287e-02 -3.53772521e-01 1.46848410e-01\\n-7.76025727e-02 -9.57984477e-03 -4.07023206e-02 8.26761499e-02\\n-3.18360209e-01 -7.91950151e-02 1.88098043e-01 -1.25749223e-02\\n1.75996646e-01 1.04710072e-01 -3.59764487e-01 5.16279340e-01\\n-4.10223782e-01 4.44771528e-01 2.84537114e-02 -9.00931180e-01\\n5.93306780e-01 3.19059312e-01 -1.80207975e-02 -3.05124223e-01\\n2.81832367e-01 -4.46709454e-01 2.84423437e-02 1.40046984e-01\\n-3.46426904e-01 -2.06795186e-01 2.60284930e-01 -1.47883773e-01\\n-3.07594031e-01 6.51092768e-01 1.74471512e-01 -8.70934501e-02\\n3.95143330e-01 -2.32051373e-01 -1.26204520e-01 -1.46357147e-02\\n-1.45927727e-01 -2.24779695e-01 -3.86895150e-01 1.51634291e-01\\n-5.24877794e-02 -5.73804259e-01 -1.66523844e-01 -3.64520848e-01\\n-2.17325807e-01 -4.87938285e-01 -3.82030904e-01 2.64078349e-01\\n1.43892720e-01 1.31490212e-02 -1.02596179e-01 2.85451449e-02\\n-3.85866687e-02 -7.23191559e-01 2.96020545e-02 1.60019368e-01\\n2.99174309e-01 3.47680151e-01 6.09877966e-02 -1.36918709e-01\\n-1.26184955e-01 4.06187952e-01 -4.86289144e-01 -2.75910258e-01\\n2.43408799e-01 1.38998345e-01 -7.85953775e-02 -1.71315610e-01\\n9.97510776e-02 3.87225658e-01 -2.40799725e-01 1.40739679e-01\\n8.61217454e-03 -6.94794133e-02 4.41190898e-01 -1.20681852e-01\\n-2.98859775e-01 -1.84374288e-01 -8.85727629e-02 3.51997852e-01\\n-6.10278606e-01 -1.05335496e-01 4.99201894e-01 2.71051645e-01\\n3.35367620e-02 2.68380404e-01 1.69864804e-01 -7.87977502e-02\\n-3.00894827e-01 -3.42844963e-01 2.15264201e-01 2.46559560e-01\\n1.53311417e-01 5.47563285e-02 -2.60966510e-01 -6.16514444e-01\\n-3.19635248e+00 -2.54849076e-01 9.39714760e-02 -2.75129974e-01\\n2.92342395e-01 -7.83625096e-02 1.90165013e-01 -9.11874101e-02\\n-2.70731717e-01 1.37706280e-01 -1.39492363e-01 -1.54836312e-01\\n1.26148686e-01 3.48634750e-01 1.32829741e-01 1.34852111e-01\\n7.62232319e-02 -1.83864534e-01 1.09308824e-01 3.83179903e-01\\n-1.91640943e-01 -8.20138574e-01 1.41961187e-01 -1.61218792e-01\\n1.14418946e-01 2.60207415e-01 -4.47522104e-01 4.37934548e-02\\n-1.16608992e-01 -1.97983831e-01 7.83405602e-02 -1.90912336e-01\\n-1.06153317e-01 3.67295146e-01 6.71319813e-02 -1.48616403e-01\\n-4.83556762e-02 -3.09311152e-01 -3.14105302e-02 -4.79216218e-01\\n1.60831571e-01 -5.89869380e-01 3.43549848e-02 -1.81524187e-01\\n5.49920917e-01 -1.97550043e-01 2.43693471e-01 1.24246225e-01\\n2.00403571e-01 3.04961890e-01 1.49926156e-01 2.51783114e-02\\n-2.95255601e-01 -2.33592108e-01 -9.32520851e-02 -2.07782090e-01\\n5.10057330e-01 3.42801034e-01 -2.82899499e-01 6.15846589e-02\\n1.05509199e-01 -4.32465076e-01 -3.49967599e-01 -4.00114238e-01\\n-2.04810917e-01 -1.09554261e-01 -6.41308069e-01 -3.42314661e-01\\n-1.92419097e-01 -1.39751062e-01 -1.39713854e-01 7.81497836e-01\\n-4.99107718e-01 -4.06478226e-01 1.19719766e-02 -6.49039507e-01\\n1.34311736e-01 -2.00723842e-01 3.92416567e-02 -2.20356852e-01\\n-2.74089634e-01 -4.32681322e-01 2.38266587e-01 -5.10744527e-02\\n-2.03350902e-01 -1.30662858e-01 1.37163877e-01 -1.10474922e-01\\n-3.25004011e-01 -5.03559589e-01 3.83183658e-01 6.53676614e-02\\n3.79443288e-01 -4.60685343e-02 3.74002546e-01 -3.08435224e-03\\n4.18341905e-01 5.35769947e-03 8.37836415e-04 -4.40748930e-01\\n1.08460613e-01 -7.80043192e-04 6.85197830e-01 -1.45213291e-01\\n-7.33251572e-02 1.66422918e-01 -2.27138698e-01 -1.26563698e-01\\n5.21943092e-01 8.02427679e-02 4.87574078e-02 -2.32082248e-01\\n3.78631949e-01 -4.66825008e-01 -2.49808490e-01 2.43298143e-01\\n3.07569616e-02 7.66757846e-01 5.87910078e-02 -3.79317909e-01\\n-2.39322230e-01 4.22484040e-01 -1.44284099e-01 -2.22330078e-01\\n-6.84434772e-02 8.89778137e-02 -1.66569531e-01 2.62317598e-01\\n1.92808867e-01 -6.19542561e-02 -2.95174927e-01 5.76430261e-02\\n-1.12551764e-01 1.59394085e-01 2.32682347e-01 -1.93992667e-02\\n-2.97703370e-02 -1.88973278e-01 -4.92926911e-02 1.02308780e-01\\n6.34383857e-02 3.42660129e-01 9.22834277e-02 -2.89837658e-01\\n-5.03159240e-02 3.36479247e-01 -1.63570911e-01 2.48487189e-01\\n-1.09791301e-01 1.53684124e-01 -4.97681260e-01 -1.97761148e-01\\n-2.06646606e-01 -2.61339605e-01 -9.56039503e-03 2.80957818e-01\\n2.38016069e-01 -1.30991951e-01 1.41505241e-01 -4.57986057e-01\\n2.10998967e-01 1.33540303e-01 1.96845964e-01 8.18284005e-02\\n-2.32818499e-02 6.10417724e-01 1.68296229e-02 -2.36854240e-01\\n-1.07502878e-01 -1.49121778e-02 -2.66296327e-01 -3.18803549e-01\\n2.08599657e-01 -3.55375320e-01 -1.29596010e-01 4.23504084e-01\\n1.28286421e-01 -2.49834776e-01 -2.20341563e-01 3.37689757e-01\\n7.20431358e-02 -2.66054809e-01 -2.85301507e-01 -7.57950023e-02\\n1.88901111e-01 2.84074582e-02 2.78044939e-01 -5.10914326e-01\\n-2.59949975e-02 -1.36250257e-03 1.28233470e-02 4.67919648e-01\\n5.92767969e-02 1.16734385e-01 -1.09362632e-01 -1.44946769e-01\\n4.66756493e-01 5.64487651e-02 -1.29541904e-01 -2.36113578e-01\\n1.29600883e-01 -2.14544892e-01 -5.09657741e-01 3.54524627e-02\\n-9.93179232e-02 -1.93390831e-01 6.20992705e-02 8.26178119e-02\\n2.19255149e-01 -1.23647209e-02 -3.70475054e-01 -2.29432106e-01\\n-2.92717785e-01 4.74487431e-02 7.45133311e-03 -5.20490587e-01\\n9.94280726e-02 1.09957717e-02 -5.96520185e-01 1.47538424e-01\\n-1.87937438e-01 2.04397347e-02 1.86351404e-01 2.19789654e-01\\n-4.11421955e-01 -1.44278526e-01 1.05830394e-01 -2.53418684e-02\\n-3.67548823e-01 -2.97393560e-01 1.19073883e-01 -9.04114485e-01\\n1.80069685e-01 -2.32574344e-02 -1.43598486e-02 4.94432002e-02\\n-1.74283594e-01 -8.51010084e-01 2.30149403e-01 -4.42614794e-01\\n-1.22168086e-01 1.22216277e-01 -2.64694393e-01 -3.17753255e-01\\n5.61104119e-02 -2.55494803e-01 -2.28791058e-01 3.48264933e-01\\n-3.76855820e-01 4.41550732e-01 4.76682819e-02 4.79381979e-02\\n9.16538537e-02 -1.97563708e-01 1.11187659e-01 -3.14849675e-01\\n-5.80909252e-01 -2.42765695e-01 -3.28522950e-01 -2.76856661e-01\\n3.57050821e-02 -1.69898570e-01 -1.37201637e-01 -2.03566328e-02\\n3.40103388e-01 1.51355609e-01 -1.07614011e-01 -1.19418435e-01\\n9.00743902e-03 -3.87887895e-01 1.13505080e-01 -1.81922019e-01\\n1.32845908e-01 -6.44208789e-02 2.73060441e-01 -4.02797200e-02\\n2.22751677e-01 -3.81638467e-01 5.11491597e-01 -2.05188006e-01\\n-3.99204880e-01 -1.54728606e-01 1.99268796e-02 1.55507624e-01\\n2.95039535e-01 -5.28380215e-01 1.32281214e-01 3.00676048e-01\\n1.33325726e-01 -2.85863616e-02 2.27290079e-01 -7.97762275e-02\\n-9.42666009e-02 8.34190696e-02 -4.76695001e-01 8.37441832e-02\\n7.65801072e-01 1.47023559e-01 6.67895675e-02 2.43416205e-01\\n9.45425183e-02 3.04710776e-01 6.08462870e-01 -2.20967010e-02\\n-4.79199179e-02 3.68747354e-01 1.40219897e-01 -5.51003039e-01\\n-1.57513052e-01 1.40283704e-02 -5.22824004e-02 -3.07890236e-01\\n5.56715369e-01 3.40262890e-01 -4.69048560e-01 -2.96766222e-01\\n-1.63784832e-01 -2.37598673e-01 3.17476928e-01 -8.94988477e-02\\n-3.22447047e-02 -7.29530901e-02 5.63611329e-01 1.02175288e-02\\n3.47252667e-01 4.86710966e-01 -1.28394976e-01 -2.22338080e-01\\n-5.61321862e-02 1.51355475e-01 1.65609211e-01 2.80173838e-01\\n-6.65946305e-03 8.07211623e-02 -7.70445466e-02 6.34441674e-02\\n-1.03609487e-01 9.85604450e-02 8.30701888e-02 6.29035458e-02\\n1.81894064e-01 7.57821649e-02 4.50928271e-01 4.92250979e-01\\n2.58738071e-01 4.01571214e-01 3.03755224e-01 -3.51147726e-02\\n5.26169419e-01 7.39565492e-01 2.28024513e-01 -1.81265268e-02\\n-3.11236437e-02 1.54750019e-01 1.70679808e-01 -3.48967612e-02\\n4.75910842e-01 4.78863269e-01 2.61846662e-01 8.37461352e-01\\n3.58098060e-01 2.95397758e-01 6.88285828e-01 -5.99149883e-01\\n-3.22031736e-01 4.02529985e-02 5.18418431e-01 -2.52522111e-01\\n7.27750435e-02 1.33267000e-01 -1.87212527e-01 2.87318945e-01\\n-4.75213856e-01 -9.70668644e-02 7.00661168e-02 -2.83663347e-03\\n2.02282414e-01 -2.12395936e-03 -9.01820809e-02 9.87307355e-02\\n-1.24142163e-01 -2.20045730e-01 -3.05499405e-01 -2.41163403e-01\\n-3.20979655e-01 2.24437751e-02 3.06546800e-02 -5.41475117e-02\\n5.98864816e-02 -4.07735169e-01 -1.41460359e-01 -5.26651628e-02\\n3.17068607e-01 -1.27478197e-01 -1.20138638e-01 -1.33549035e-01\\n1.58961445e-01 2.76630282e-01 5.96399665e-01 -7.57311732e-02\\n1.43839732e-01 -1.23605192e-01 -2.52382845e-01 1.24179125e-01\\n1.16064355e-01 1.48065016e-01 1.10181764e-01 5.05786598e-01\\n-3.49783927e-01 -3.08969431e-03 1.17976651e-01 3.48172426e-01\\n-2.92092204e-01 -1.11443736e-01 -8.51169676e-02 7.61211365e-02\\n6.36570901e-02 1.03409037e-01 -2.34104171e-01 -1.23966374e-02\\n-2.55150914e-01 -6.30271435e-01 4.23001468e-01 -2.28032708e-01\\n-2.39740252e-01 2.77216733e-02 3.34902197e-01 3.17249089e-01\\n-1.82808474e-01 1.08668581e-03 2.65558250e-02 1.94411993e-01\\n9.44532305e-02 4.17929769e-01 -1.96961850e-01 -2.43791923e-01\\n-2.61333048e-01 2.97854185e-01 -2.83821970e-02 4.48129186e-03\\n-1.24264970e-01 3.66526961e-01 -1.34759983e-02 8.22211877e-02\\n2.26189882e-01 -9.42047685e-02 -2.72495687e-01 -2.70741105e-01\\n-3.08053017e-01 -8.52136984e-02 1.37666106e-01 4.55312245e-02\\n1.49159938e-01 -3.19297612e-01 -6.71045855e-02 -2.13812858e-01\\n-1.91874057e-01 -3.12175632e-01 -1.88196659e-01 7.33174235e-02]]',\n", + " 'job_description': 'Job Description You will be part of our IoT Core feature team, which is responsible for the development and operations of the core software services of our IoT Cloud Platform. We use agile DevOps and SRE practices to provide outstanding service quality and availability to our customers. You will join a team of always curious and enthusiastic Engineers, which are working closely together with the Product Owner to deliver valuable features that enable the digitalisation of the logistics industry. This is a (specialized or full-stack) software engineering position with focus on development and operation of software services. He / She designs, implements, tests and operates high quality software services according to SLAs and OLAs in place and takes co-ownership for team owned software components. The focus of the role will be: Conduct technical requirements analysis based on input from business analysis respectively business requirements engineering, including functional and non-functional requirements (e.g. security, availability, scalability, cost-optimization, …) Create software designs based on result of requirements analysis according to the architectural-, security-, product- and team guidelines Implement software designs using continuous integration and deployment Maintain existing software systems; including fixing bugs, adding new features, refactoring and conducting version upgrades Participate in code reviews as part of the agile software development process and collaborate with other software engineers to integrate code changes (e.g. pull/merge requests) Conduct quality testing on software (unit testing) and software systems (integration and end-to-end testing) Write and maintain technical documentation of software and software systems Operate software systems and collaborate with customer support team and system team to resolve incidents (2nd level support) Participate in agile software development activities (e.g. stand-ups, planning meetings, retrospectives, …) and collaborate with product owner and product management team to coordinate timeline for new features Qualifications Good conceptual skills in developing solution designs, documenting and implementing them Experience in writing JVM based software, primarily in Kotlin and Java. Python and Unix shell know-how is a great plus Experience with at least two of the following tools: Git / DataDog / Prometheus & Grafana / Ansible Experience with at least one of the following approaches to API development: Protobuf & gRPC Rest API (ideally using OpenAPI or Swagger) Experience with at least four of the following systems: Apache Kafka PostgreSQL or other relational database systems DynamoDB Docker Kubernetes AWS ECS / Fargate Elastic Search Linux / Unix Experience with Stream processing (e.g. Kafka Streams, Flink, Spark etc.) is very helpful Fluent in English spoken and written. German is a plus, but not mandatory Additional Information You can choose between either a MacBook Pro or a Microsoft Windows Notebook at a top location right next to the railway station Zurich Hardbrücke. Nexxiot is an equal opportunity employer. Welcoming diversity gives us a competitive advantage in the global marketplace and is an important driver of our success and culture. Our recruitment team is looking forward to receive your CV via our career portal.',\n", + " 'soft_skills': '[\"Writing\", \"Collaboration\", \"Coordinating\", \"Planning\", \"Microsoft Windows\", \"Timelines\", \"Operations\", \"Integration\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Apache Flink\", \"Kubernetes\", \"Tooling\", \"Customer Support\", \"Agility\", \"Product Management\", \"Unit Testing\", \"Unix Shell\", \"Continuous Integration\", \"Industrialization\", \"Activism\", \"Functional Requirement\", \"Software Systems\", \"Python (Programming Language)\", \"PostgreSQL\", \"Maintainability\", \"Linux\", \"E (Programming Language)\", \"Levelling\", \"Idealization\", \"Systems Integration\", \"Apache Kafka\", \"Cloud Platform System\", \"Software Engineering\", \"Amazon DynamoDB\", \"Stream Processing\", \"Agile Software Development\", \"Conceptualization\", \"Full Stack Software Engineering\", \"Docker (Software)\", \"Business Requirements\", \"AD Model Builder (ADMB)\", \"Amazon Marketplace\", \"Logistics\", \"Equalization\", \"Scalability\", \"Business Analysis\", \"Technical Documentation\", \"Code Review\", \"Receivables\", \"Software Design\", \"Service Quality\", \"Database Systems\", \"Stand-Up Comedy\", \"Datadog\", \"Grafana\", \"Java Virtual Machine (JVM)\", \"Software Development\", \"Requirements Analysis\", \"Solution Design\", \"Relational Databases\", \"Ansible\", \"Additives\", \"Git Flow\", \"OpenAPI\", \"Swagger UI\", \"Java (Programming Language)\", \"Job Descriptions\", \"Application Programming Interface (API)\", \"Prometheus (Software)\", \"Unix\", \"Software Plus Services\", \"Kotlin\", \"DevOps\", \"RESTful API\"]',\n", + " 'languages': \"['English', 'Afar', 'Sundanese', 'Luxembourgish', 'Chewa']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software back-end engineer',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.71552032e-01 2.91270584e-01 3.82932365e-01 -6.69109868e-03\\n3.55228841e-01 -2.36295044e-01 2.26878119e-03 3.73446047e-01\\n-7.57382885e-02 -2.04707831e-01 -3.22159790e-02 -2.29785040e-01\\n-3.30118656e-01 -6.83388487e-02 1.30850390e-01 4.15461659e-01\\n2.63428152e-01 1.37489960e-01 -2.57047325e-01 3.84930313e-01\\n2.22024724e-01 -7.94562511e-03 -2.06433833e-01 6.13091886e-01\\n4.15168166e-01 6.67720009e-03 -1.12058461e-01 7.38009950e-03\\n-3.43387604e-01 -2.87937373e-01 3.34174991e-01 7.63941417e-03\\n-1.57293066e-01 -3.32568496e-01 5.75951636e-02 9.28215086e-02\\n-1.49799198e-01 8.00929070e-02 1.27713457e-01 1.74960107e-01\\n-3.93162608e-01 -3.42083246e-01 1.08727805e-01 8.67118537e-02\\n-1.47588775e-01 -1.52126253e-01 2.10592359e-01 9.10648331e-02\\n-2.10765786e-02 -3.92282307e-02 -6.59780800e-01 3.43442112e-01\\n-8.31183717e-02 -2.07812771e-01 2.16222495e-01 4.91686881e-01\\n4.11508940e-02 -5.77887833e-01 -3.88974547e-01 -2.97275513e-01\\n2.31454279e-02 -1.32889286e-01 3.95712890e-02 -1.05743386e-01\\n3.91338438e-01 -1.82317849e-02 -4.78573702e-02 4.16116089e-01\\n-8.47215474e-01 -6.76593408e-02 -1.85629666e-01 -4.92557592e-04\\n-4.70055312e-01 5.79526927e-03 -2.32034683e-01 -1.14024647e-01\\n-3.29488441e-02 3.36776853e-01 -1.81190353e-02 2.23107822e-02\\n-1.55476764e-01 3.64888161e-01 -2.63778642e-02 2.41699785e-01\\n4.27926391e-01 1.31522655e-01 2.00191230e-01 2.82205403e-01\\n-3.44663799e-01 3.55268836e-01 1.06206812e-01 -2.61881053e-01\\n2.20112368e-01 6.26756251e-02 5.29973447e-01 6.86371550e-02\\n-5.19335903e-02 2.03620479e-01 -2.35724568e-01 2.06270605e-01\\n4.91508283e-02 -4.36996609e-01 1.66943334e-02 4.89583462e-02\\n-2.12178469e-01 5.97290578e-04 -6.27001747e-02 2.48238236e-01\\n-2.20404372e-01 4.37218487e-01 3.19672555e-01 -1.38408870e-01\\n-3.07972301e-02 -5.30560970e-01 -1.10544503e-01 -5.11436462e-02\\n-1.35645494e-01 1.19996652e-01 2.81457543e-01 4.55717333e-02\\n2.29059979e-01 6.89450949e-02 1.90196216e-01 8.30775797e-01\\n-4.81531629e-03 1.43571213e-01 -1.09598301e-01 3.17951143e-01\\n2.34613374e-01 -2.92001992e-01 2.36804947e-01 3.17300707e-01\\n1.80220842e-01 -1.24423750e-01 -2.22232983e-01 1.42850056e-01\\n-2.20663503e-01 -1.41652822e-01 -3.27037811e-01 2.30795220e-02\\n-2.36305907e-01 -3.40515554e-01 4.23087716e-01 1.79520994e-01\\n3.51594478e-01 5.37443794e-02 9.51535162e-03 -1.89058054e-02\\n-1.16214804e-01 4.00311351e-01 -5.94490506e-02 3.61276656e-01\\n-3.22990745e-01 -1.89081177e-01 -1.81312338e-01 2.26882532e-01\\n-3.92700918e-02 6.78772926e-02 -8.64418522e-02 -1.64703727e-01\\n3.33705008e-01 6.17516739e-03 -3.46669644e-01 3.09836566e-01\\n4.64579090e-03 -2.21798107e-01 -2.48315468e-01 2.84495652e-01\\n1.46735425e-03 1.85809314e-01 4.42082658e-02 -2.35127211e-01\\n5.95170021e-01 2.13921338e-01 1.51697561e-01 -1.10353552e-01\\n3.08895916e-01 -2.26111159e-01 3.89481217e-01 1.00061595e-01\\n-5.22963941e-01 3.20854336e-01 3.63583281e-03 -9.48745906e-02\\n-6.19910732e-02 -6.23289542e-03 3.94909829e-01 -4.06044781e-01\\n5.53050917e-03 -1.39790267e-01 -4.68294382e-01 -2.78005540e-01\\n-4.05888945e-01 8.81420448e-02 4.97142404e-01 -2.70147741e-01\\n-1.03628926e-01 2.27419496e-01 -4.37061489e-01 -1.60997108e-01\\n2.11786717e-01 5.25522418e-02 3.59879546e-02 5.48441522e-02\\n-1.07693158e-01 -5.52978516e-01 -3.83146703e-02 -4.12344992e-01\\n-4.95637387e-01 -3.90525423e-02 -2.60240853e-01 2.45997369e-01\\n6.05285913e-02 4.61989269e-02 -2.68846571e-01 1.62094191e-01\\n-3.56144667e-01 -4.94657271e-02 1.77361831e-01 8.39198604e-02\\n7.48449983e-03 -4.85855900e-02 -3.68663698e-01 3.33473414e-01\\n-3.12864661e-01 6.86015606e-01 1.62761614e-01 -8.00490975e-01\\n5.09792209e-01 2.72990912e-01 9.67471153e-02 -4.08024341e-01\\n3.85270149e-01 -3.59974176e-01 2.11722385e-02 1.32646307e-01\\n-2.51146883e-01 -2.08991200e-01 3.66078168e-01 -2.22752526e-01\\n-2.28856921e-01 5.99907577e-01 1.60703599e-01 -1.00016877e-01\\n2.43155837e-01 -3.12022746e-01 4.54199240e-02 7.11110905e-02\\n-4.94847409e-02 -2.09228575e-01 -3.13219726e-01 9.92925763e-02\\n-5.45884483e-02 -5.07564366e-01 -1.58324882e-01 -2.00389817e-01\\n-2.44116247e-01 -4.81824845e-01 -2.66392827e-01 4.89725292e-01\\n1.97891027e-01 1.73390254e-01 2.32866406e-02 2.11820845e-02\\n-2.95376331e-02 -6.54248714e-01 -3.60433422e-02 -1.55964505e-03\\n5.41053236e-01 2.92158574e-01 9.50837657e-02 -2.00500414e-01\\n5.22423442e-03 5.12299895e-01 -3.55726033e-01 -4.05372113e-01\\n1.20549180e-01 1.05580322e-01 -7.22159371e-02 -2.10635707e-01\\n1.00136381e-02 4.09225345e-01 -1.87066749e-01 1.82405710e-02\\n-2.51781464e-01 -4.46655117e-02 3.96122158e-01 -3.20786759e-02\\n-3.65153044e-01 -1.97646201e-01 2.50058211e-02 3.15762997e-01\\n-4.66854125e-01 -1.97033182e-01 5.36266327e-01 3.61193776e-01\\n2.29305580e-01 8.84390697e-02 1.61574215e-01 -6.51850998e-02\\n-1.32268608e-01 -3.56735647e-01 1.42277256e-01 1.72209576e-01\\n9.17599201e-02 1.47943720e-02 -1.60055235e-01 -6.15658522e-01\\n-3.21531630e+00 -2.12728217e-01 1.22804336e-01 -2.98083454e-01\\n2.13541210e-01 -3.50307524e-02 -9.24410447e-02 -4.93167713e-02\\n-2.67344326e-01 1.39072552e-01 -2.37250715e-01 -1.90550774e-01\\n1.06130071e-01 2.89520502e-01 1.82777897e-01 2.16425985e-01\\n1.48011312e-01 -3.38041574e-01 -1.27020434e-01 4.07761693e-01\\n-3.02785262e-02 -5.47685266e-01 1.55806541e-01 -2.80483644e-02\\n2.99305737e-01 2.25676537e-01 -3.96532953e-01 -1.09443136e-01\\n-1.26231849e-01 -2.47124657e-01 9.73018538e-03 -2.28223816e-01\\n-1.61810681e-01 3.40885431e-01 2.88150832e-03 -8.12282115e-02\\n6.85799941e-02 -3.54570776e-01 -1.27157778e-01 -4.48255777e-01\\n3.03039718e-02 -5.81036568e-01 1.05025560e-01 -2.21932739e-01\\n6.88779414e-01 -2.38863349e-01 1.40365764e-01 1.66100726e-01\\n1.89708382e-01 1.54716283e-01 -1.99603364e-01 3.39167267e-02\\n-3.83035690e-01 -2.34601557e-01 -6.61461800e-02 -1.97902307e-01\\n4.41991895e-01 5.26856661e-01 -1.59432009e-01 -1.15105910e-02\\n6.83370307e-02 -4.25648957e-01 -3.10858637e-01 -4.61101264e-01\\n-1.10442527e-01 -1.97666124e-01 -7.28578150e-01 -4.36597466e-01\\n-1.48746774e-01 -1.11884661e-01 -1.67722151e-01 5.20081401e-01\\n-4.28153574e-01 -3.76730144e-01 1.77470669e-01 -6.19699836e-01\\n2.83889603e-02 -2.09998652e-01 1.58616647e-01 -1.32310525e-01\\n-2.86271602e-01 -5.62087953e-01 1.07411735e-01 -6.34800494e-02\\n-2.95787632e-01 -2.19763026e-01 -2.46233828e-02 -2.41134852e-01\\n-2.13767067e-01 -4.15614277e-01 4.44184095e-01 3.52122486e-02\\n3.48372221e-01 1.15963683e-01 2.33315155e-01 1.90185934e-01\\n3.27564895e-01 -1.04253747e-01 1.51733905e-01 -3.84352356e-01\\n1.77130848e-01 5.07899560e-02 5.77076316e-01 -3.53925884e-01\\n3.07852533e-02 1.02570504e-01 -3.12118649e-01 -6.47103712e-02\\n4.78083432e-01 1.02319084e-01 -7.60655850e-02 -2.71291705e-04\\n3.63896132e-01 -4.82758850e-01 -2.48481452e-01 2.63567328e-01\\n5.22926860e-02 5.45598626e-01 -7.35057378e-03 -4.49981332e-01\\n-2.76595652e-01 4.24551576e-01 -7.38812685e-02 -7.87267014e-02\\n-9.80214626e-02 7.38268495e-02 -9.36382562e-02 1.02683939e-01\\n1.34772748e-01 -1.73409685e-01 -2.71898299e-01 -5.14883772e-02\\n-1.07444510e-01 1.02417774e-01 2.56944835e-01 -1.68367010e-02\\n-7.96495080e-02 -2.56493777e-01 -1.84047312e-01 9.48862806e-02\\n1.70557544e-01 2.59262651e-01 1.08699098e-01 -2.05751419e-01\\n4.59911749e-02 2.83028573e-01 -9.88159180e-02 1.23980112e-01\\n-2.19104975e-01 6.04601689e-02 -5.67805111e-01 -9.60743502e-02\\n-1.41311049e-01 -3.29733670e-01 1.67957515e-01 2.87787825e-01\\n1.22639768e-01 7.49320388e-02 1.90897379e-02 -5.88104963e-01\\n4.85986233e-01 3.86591405e-02 1.84442759e-01 1.57832965e-01\\n8.49223733e-02 3.86732548e-01 5.59855625e-02 -2.46757865e-02\\n-2.88682759e-01 -7.09388852e-02 -2.12403029e-01 -2.41041854e-01\\n8.88784826e-02 -3.76955807e-01 -1.01718135e-01 4.93554741e-01\\n1.21331379e-01 -2.55023152e-01 -2.16292471e-01 3.44459981e-01\\n1.91898480e-01 -2.48215914e-01 -1.69099540e-01 -2.30740774e-02\\n1.64175734e-01 8.49669054e-02 2.47845650e-01 -2.99475521e-01\\n-1.13549232e-01 -3.72391082e-02 -9.62547436e-02 4.02917773e-01\\n1.77824914e-01 -5.58110476e-02 -2.50293285e-01 -1.96637750e-01\\n4.55981255e-01 -5.52653037e-02 -9.05464590e-02 -1.80311352e-01\\n1.19824909e-01 -1.72574267e-01 -4.25881386e-01 -7.99653679e-03\\n-2.82678157e-02 -1.03793480e-01 8.86163563e-02 -8.37067794e-03\\n4.46492061e-02 5.08746058e-02 -2.72957027e-01 -2.69796610e-01\\n-3.08599532e-01 -2.72410512e-01 1.09905988e-01 -3.47291589e-01\\n-5.94342500e-02 1.25488238e-02 -4.83871609e-01 1.98036402e-01\\n-4.84319150e-01 -3.25461216e-02 8.49067494e-02 1.88526034e-01\\n-4.10423994e-01 -8.27222466e-02 5.83636202e-02 1.80127323e-01\\n-3.97754490e-01 -3.04423094e-01 7.42776021e-02 -8.80911291e-01\\n2.44409680e-01 1.25364274e-01 -3.83193344e-02 -6.24485426e-02\\n1.27528906e-02 -6.39937639e-01 1.18093662e-01 -4.30548936e-01\\n1.36846855e-01 2.44638212e-02 -1.14779845e-01 -3.13872814e-01\\n9.81192812e-02 -3.01212609e-01 -3.76202196e-01 3.32452834e-01\\n-4.69170123e-01 3.62234920e-01 7.22761452e-02 3.16124111e-02\\n1.70641560e-02 -3.60128194e-01 1.34400517e-01 -3.56733531e-01\\n-4.46172118e-01 -2.00980604e-01 -3.27178180e-01 -1.92323342e-01\\n-2.00275946e-02 -1.21833265e-01 -2.67280459e-01 1.20325729e-01\\n2.30594710e-01 1.47440016e-01 -8.54876861e-02 -2.68745542e-01\\n1.25888065e-01 -4.56336677e-01 -9.20768827e-02 -2.98691243e-01\\n-3.92760225e-02 -7.81482235e-02 1.98152348e-01 -1.35454759e-01\\n-6.43529138e-03 -3.14422220e-01 4.48826969e-01 -3.90015244e-01\\n-2.53161818e-01 -5.69062717e-02 8.35730731e-02 -3.96893024e-02\\n7.21535310e-02 -6.21991098e-01 1.28632396e-01 3.00864995e-01\\n4.32584248e-02 8.93807262e-02 1.70158774e-01 4.39386666e-02\\n-1.15548633e-01 2.51294792e-01 -5.33888400e-01 7.29920790e-02\\n7.34216094e-01 1.88444138e-01 -4.53827903e-02 2.05532685e-01\\n1.80256173e-01 3.46677691e-01 6.25255048e-01 -1.58300735e-02\\n-6.36261851e-02 1.95396304e-01 -8.11186060e-03 -5.56946039e-01\\n-7.40337968e-02 -2.21901406e-02 -1.26143485e-01 -2.40240976e-01\\n6.87060058e-01 4.04825062e-01 -4.13822025e-01 -2.91439056e-01\\n3.61502692e-02 -9.95048881e-02 1.95578024e-01 -5.24000861e-02\\n4.81917225e-02 -1.43123582e-01 6.63339198e-01 2.29177531e-02\\n2.12729827e-01 5.21273911e-01 -2.16799572e-01 -3.60699326e-01\\n-1.31314471e-01 1.21853605e-01 1.46436349e-01 4.64680225e-01\\n-9.96639132e-02 1.42780274e-01 -1.70964241e-01 -9.87535343e-03\\n5.24808615e-02 3.65480453e-01 1.88426703e-01 5.98822944e-02\\n2.25514665e-01 2.62132864e-02 2.09612682e-01 4.40072298e-01\\n1.51625708e-01 5.62719107e-01 2.43154541e-01 9.69170108e-02\\n2.98865467e-01 5.84474385e-01 4.25144553e-01 1.06067978e-01\\n4.63227916e-04 1.30929381e-01 1.26784027e-01 -1.55534642e-02\\n5.67120492e-01 3.01957577e-01 3.11675012e-01 8.11192989e-01\\n3.56013745e-01 3.20000678e-01 8.16168189e-01 -6.44952953e-01\\n-4.14494336e-01 1.56656414e-01 5.79559267e-01 -8.77263844e-02\\n-1.00557365e-01 2.27869898e-01 -3.03167403e-01 2.77273148e-01\\n-4.44567323e-01 -4.58748937e-02 -7.66223716e-03 5.48736602e-02\\n1.57649234e-01 2.79718284e-02 -1.81998238e-01 1.28152013e-01\\n-1.78937778e-01 -2.04069078e-01 -3.17970604e-01 -1.29812643e-01\\n-2.28384390e-01 -8.92306194e-02 -3.68082039e-02 -1.11019917e-01\\n-1.62650570e-01 -4.25846338e-01 -1.39929235e-01 -6.24607392e-02\\n2.56200671e-01 -1.11240223e-01 -5.44522069e-02 -1.22756742e-01\\n1.21525697e-01 3.49149644e-01 5.09233117e-01 -7.22431093e-02\\n2.27792561e-03 -8.86761472e-02 -3.47578973e-01 9.58653316e-02\\n1.05713233e-02 5.99187315e-02 1.71711832e-01 3.97532582e-01\\n-3.25093776e-01 3.96073759e-02 7.60146305e-02 2.94799089e-01\\n-3.76254261e-01 -1.27146795e-01 -6.88758567e-02 2.37431064e-01\\n3.66044864e-02 1.65688723e-01 -2.88238704e-01 1.48570761e-01\\n-2.71678150e-01 -4.97985840e-01 3.86771530e-01 -8.33091810e-02\\n-2.14117393e-01 3.84571582e-01 2.27011263e-01 2.31966868e-01\\n-2.88752824e-01 -1.02611370e-01 3.28605585e-02 3.17585021e-01\\n3.31836864e-02 4.34862018e-01 -6.68492541e-02 -1.53409272e-01\\n-2.56073743e-01 3.44886363e-01 -1.47571176e-01 5.51983938e-02\\n-1.33935079e-01 3.75227064e-01 -6.68831393e-02 6.00299649e-02\\n2.49299124e-01 -3.56536247e-02 -2.53164083e-01 -2.66369313e-01\\n-3.13599885e-01 -2.52270013e-01 1.04922302e-01 8.08849111e-02\\n1.73435137e-01 -3.68906528e-01 -6.80530630e-03 -9.99413431e-02\\n-1.09519497e-01 -1.98148310e-01 -1.26212746e-01 1.66497573e-01]]',\n", + " 'job_description': 'Job Informationen Responsibilities: - Design and enhance an intuitive, easy-to-use API (used by our own front-end and by third-party applications) - Collaborate closely with fellow engineers, data scientists, and business people - Contribute your ideas to our product development and system architecture Requirements: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with web development, API design, and third-party integration - Advanced knowledge of relational databases - Some experience with the technologies we’re using is a plus: - Python, Django, Flask, SQLAlchemy, Pytest - PostgreSQL, PostGIS - JavaScript, Angular, HTML5, CSS3, Bootstrap - Git, Bitbucket, CircleCI - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Are comfortable working in English and German; you have a great read, good spoken command of it. Benötigte Skills Englisch JavaScript Angular HTML5 CSS3 Bootstrap PostgreSQL Python',\n", + " 'soft_skills': '[\"Collaboration\", \"Integration\"]',\n", + " 'hard_skills': '[\"Bitbucket\", \"Control Systems\", \"MSC Software\", \"Test-Driven Development (TDD)\", \"Agility\", \"Circleci\", \"API Design\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Data Engineering\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"HTML5\", \"Systems Architecture\", \"Web Development\", \"Flask (Web Framework)\", \"Software Engineering\", \"Django (Web Framework)\", \"Object-Oriented Programming (OOP)\", \"Bootstrap (Front-End Framework)\", \"JavaScript (Programming Language)\", \"SQLAlchemy\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Structures\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Relational Databases\", \"Algorithms\", \"Git Flow\", \"Application Programming Interface (API)\", \"Agile Product Development\"]',\n", + " 'languages': \"['English', 'Greenlandic', 'Akan', 'Chuang', 'Pali']\"},\n", + " {'company_id': '16',\n", + " 'job_title': 'software engineer business data events',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Enterprise Software & Network Solutions',\n", + " 'website': 'www.avaloq.com',\n", + " 'jobdescription_embedded': '[[-1.91104650e-01 2.25271225e-01 5.89884579e-01 1.13143306e-02\\n5.50288737e-01 -1.07360438e-01 -5.49557582e-02 3.53687912e-01\\n-5.68057783e-03 -3.53976190e-01 -6.66690916e-02 -2.06283987e-01\\n-6.52140528e-02 1.13803282e-01 1.33876234e-01 2.86508203e-01\\n2.07377613e-01 1.70513123e-01 -1.35549843e-01 3.60378802e-01\\n1.63065881e-01 -5.70979938e-02 1.39258310e-01 7.63423145e-01\\n4.20967400e-01 9.03721601e-02 -9.48430896e-02 -6.79137558e-02\\n-2.77748376e-01 -2.68304706e-01 5.12581050e-01 1.23132959e-01\\n-8.00701380e-02 -3.92657846e-01 1.00996882e-01 -8.78694355e-02\\n-3.47456396e-01 -5.31649105e-02 -1.13787040e-01 1.70788139e-01\\n-4.25675213e-01 -2.20063150e-01 -3.58525924e-02 3.11442986e-02\\n-2.09038854e-01 -3.25879991e-01 -7.64228478e-02 -1.11904919e-01\\n1.51222244e-01 -5.05765975e-02 -5.80470681e-01 3.11546206e-01\\n-2.55757749e-01 -2.45741457e-01 2.38467842e-01 6.60135031e-01\\n2.61558946e-02 -4.47333366e-01 -5.18018365e-01 -3.61129850e-01\\n3.93479764e-02 -1.96594447e-01 8.89007002e-03 -2.75045574e-01\\n2.06544295e-01 3.66032124e-02 1.11073837e-01 3.36233914e-01\\n-7.84965396e-01 4.05319072e-02 -1.14564031e-01 2.81319004e-02\\n-3.14257711e-01 -1.35130569e-01 -2.72363931e-01 -1.12676941e-01\\n-1.91045240e-01 4.88303721e-01 1.14931889e-01 1.96017101e-02\\n-1.80016637e-01 2.69780278e-01 -1.79371983e-01 4.58454430e-01\\n1.52707130e-01 1.48835257e-01 1.71350271e-01 3.26086402e-01\\n-3.99997622e-01 5.14149487e-01 7.41990209e-02 -2.58566141e-01\\n2.52426803e-01 1.11026600e-01 4.08997983e-01 -7.33221173e-02\\n1.69006810e-02 5.15300259e-02 -1.77071899e-01 2.78317183e-01\\n1.46823570e-01 -3.00002724e-01 3.54490951e-02 -1.45677224e-01\\n6.04247712e-02 5.01459725e-02 -7.75469393e-02 1.61639258e-01\\n-1.89987630e-01 3.40027034e-01 1.63327247e-01 -2.28514254e-01\\n-9.51029733e-02 -5.16787827e-01 -2.75141560e-02 -1.22872874e-01\\n-1.47055313e-02 1.37265921e-01 1.75416514e-01 1.46065950e-01\\n2.39557832e-01 7.83035904e-02 1.60299540e-01 7.38087058e-01\\n-3.60017866e-02 3.23574841e-02 -2.64268339e-01 3.03454995e-01\\n1.14140645e-01 -2.31558070e-01 1.82344019e-01 1.91870868e-01\\n-4.74690422e-02 -6.92424923e-02 -2.42338881e-01 3.71702373e-01\\n-6.89632744e-02 -2.31614977e-01 -2.81543255e-01 1.86241776e-01\\n-5.23010157e-02 -3.81986558e-01 5.18738747e-01 2.29265884e-01\\n2.07297742e-01 -5.44483215e-02 -2.96435840e-02 -7.35451579e-02\\n-7.12790936e-02 1.37056276e-01 -1.88476928e-02 2.33056173e-01\\n-3.00991833e-01 -3.17959428e-01 -1.92559794e-01 6.40818924e-02\\n-2.39642829e-01 1.39869004e-01 -1.01948723e-01 -4.06477377e-02\\n2.17627555e-01 9.05688405e-02 -3.60501289e-01 2.38868505e-01\\n-4.82646376e-02 -5.02809100e-02 9.87699628e-02 3.37118864e-01\\n-2.01765716e-01 1.32161558e-01 -3.44580896e-02 -2.06862450e-01\\n5.96211076e-01 1.82913855e-01 1.48873270e-01 4.11691554e-02\\n2.40312397e-01 1.80903450e-03 1.62605733e-01 9.29873511e-02\\n-6.85128689e-01 3.31892133e-01 -3.04754786e-02 -1.93754464e-01\\n1.33941770e-01 -3.12536582e-02 3.10086012e-01 -2.13648513e-01\\n9.08349603e-02 -1.39696658e-01 -4.08832014e-01 -3.44101250e-01\\n-8.45905095e-02 4.04238701e-02 2.98557580e-01 -4.96244222e-01\\n-1.27827257e-01 2.40074247e-01 -3.67813826e-01 -7.00937882e-02\\n1.75393507e-01 2.18247339e-01 6.67142347e-02 6.55681491e-02\\n-1.71543255e-01 -4.68551904e-01 4.06255499e-02 -4.02587593e-01\\n-3.41322005e-01 -1.10598765e-02 -3.64776671e-01 2.34177515e-01\\n7.88938999e-02 -7.96585605e-02 -6.54369593e-02 9.76237506e-02\\n-2.35238954e-01 -4.31889575e-03 1.03268303e-01 3.79081964e-02\\n3.50548863e-01 7.49245286e-02 -3.95155042e-01 4.32843089e-01\\n-2.21912950e-01 6.24888480e-01 1.80369943e-01 -9.02102113e-01\\n5.07815957e-01 3.26111287e-01 -8.95737857e-02 -4.26269323e-01\\n4.40132976e-01 -4.00146961e-01 4.77322526e-02 1.47844896e-01\\n-3.94989997e-01 -3.08719635e-01 2.63617814e-01 -1.19687527e-01\\n-2.32213289e-01 4.46671426e-01 3.62101197e-02 1.35341182e-01\\n1.68025970e-01 -3.35302800e-01 -2.31776357e-01 -6.63553327e-02\\n-5.92000559e-02 -2.36630082e-01 -5.45124531e-01 -2.08818875e-02\\n-1.14121214e-01 -4.63573337e-01 -5.73052056e-02 -3.57771814e-01\\n-1.95958614e-01 -2.96843797e-01 -1.95162594e-01 2.52563477e-01\\n2.28455871e-01 1.33433253e-01 2.32611932e-02 9.11801606e-02\\n7.98998177e-02 -6.88568413e-01 6.44074157e-02 1.51260346e-01\\n4.40051764e-01 2.16872483e-01 1.01137936e-01 -5.13716526e-02\\n3.75595242e-02 6.97380364e-01 -1.94036990e-01 -2.56647587e-01\\n2.17354685e-01 1.27813190e-01 6.27641156e-02 -1.36421353e-01\\n4.20168713e-02 3.13503861e-01 -3.31564665e-01 2.86704004e-02\\n5.36904298e-03 -1.32174054e-02 4.76532847e-01 5.19754775e-02\\n-3.20547491e-01 -1.40128568e-01 -7.72105604e-02 1.21365681e-01\\n-5.98461986e-01 -2.07316756e-01 5.91568172e-01 2.75702387e-01\\n1.37548074e-01 1.29435316e-01 1.17182925e-01 -2.73123831e-02\\n-2.06086278e-01 -2.09241778e-01 3.43682528e-01 1.04221180e-01\\n2.05713794e-01 3.50228287e-02 -4.31485176e-02 -6.05880499e-01\\n-3.26159954e+00 -1.72538638e-01 7.10092708e-02 -3.31525385e-01\\n2.92069882e-01 -2.25409612e-01 1.15612969e-01 -2.31769234e-02\\n-2.63314247e-01 4.04323563e-02 -1.97155178e-01 -1.45481795e-01\\n1.25695750e-01 1.13246724e-01 9.81977135e-02 1.68032944e-01\\n6.84211403e-02 -2.06251323e-01 3.19968611e-02 3.62278163e-01\\n-2.29932547e-01 -6.88806772e-01 1.25433728e-01 -3.84139828e-03\\n1.63343191e-01 2.02503607e-01 -4.04854208e-01 -8.04904774e-02\\n-1.73921928e-01 -2.12761387e-01 -2.79457420e-02 -3.31653148e-01\\n-1.57393157e-01 2.41190642e-01 1.94800138e-01 -1.35780275e-01\\n6.90654069e-02 -4.63961899e-01 -9.88506004e-02 -5.46691120e-01\\n2.09500492e-01 -6.36404574e-01 2.22675819e-02 -1.18378446e-01\\n7.22521067e-01 -3.03569108e-01 1.22286491e-01 1.64847583e-01\\n2.45710582e-01 1.44990236e-01 6.19171411e-02 -1.50625445e-02\\n-2.28378803e-01 -3.31389904e-01 -1.07836932e-01 -1.36333361e-01\\n4.30780649e-01 4.32378531e-01 -1.48321554e-01 1.44804701e-01\\n7.60335401e-02 -2.98072249e-01 -3.70201468e-01 -2.74137914e-01\\n-1.14738956e-01 -2.53664076e-01 -7.18594551e-01 -4.44676965e-01\\n-1.87793493e-01 -2.12780461e-01 -1.76433980e-01 6.04597092e-01\\n-3.01532626e-01 -3.36729109e-01 -8.74382854e-02 -4.83342826e-01\\n3.53918552e-01 -1.14479214e-01 2.33005565e-02 -1.58610314e-01\\n-1.97149411e-01 -4.85279500e-01 9.53139961e-02 -7.30241239e-02\\n-1.28713965e-01 -2.67821550e-01 4.91779484e-02 -1.89734131e-01\\n-3.04274529e-01 -5.41955471e-01 4.25041050e-01 1.76238194e-02\\n3.30998302e-01 1.35763988e-01 3.45253825e-01 -3.58940512e-02\\n2.41688758e-01 -6.49173930e-02 -8.70448723e-02 -3.63057196e-01\\n3.62509042e-02 9.14106891e-03 4.99241352e-01 -2.33211234e-01\\n-3.31291631e-02 1.43452108e-01 -2.41380394e-01 -3.48432995e-02\\n2.85139501e-01 -3.43421474e-02 7.53200147e-03 -5.68813682e-02\\n3.28804135e-01 -2.67332971e-01 -1.49721906e-01 8.65284428e-02\\n4.50118594e-02 5.36115468e-01 -3.59812006e-03 -3.71129215e-01\\n-1.53250426e-01 4.20760125e-01 8.06491151e-02 -1.01141684e-01\\n-1.81138635e-01 6.02976866e-02 -1.93007469e-01 2.98970878e-01\\n5.51952049e-02 -2.53229469e-01 -2.45458871e-01 -1.40272439e-01\\n-9.29873884e-02 3.54534835e-01 2.86041141e-01 3.38246264e-02\\n4.73956354e-02 -4.30611849e-01 -1.34398818e-01 1.47303715e-01\\n1.70360431e-01 4.68289375e-01 1.69550717e-01 -1.71644449e-01\\n-3.21131870e-02 3.07046771e-01 -1.22439452e-01 2.57191837e-01\\n-2.40871489e-01 6.20918423e-02 -5.70222080e-01 -2.73005158e-01\\n-2.35740721e-01 -3.97317708e-01 9.43351090e-02 3.61744106e-01\\n1.13756292e-01 -1.12383552e-02 7.03416839e-02 -4.67679054e-01\\n3.01416516e-01 7.64930472e-02 1.52636588e-01 7.30635375e-02\\n-6.13627955e-03 6.09745383e-01 -1.69100761e-02 -1.53149337e-01\\n-1.02242999e-01 1.29240826e-02 -1.92491993e-01 -1.70512870e-01\\n9.64803323e-02 -4.72850353e-01 -6.92090243e-02 4.87406850e-01\\n1.09044805e-01 -2.99020588e-01 -1.23628736e-01 3.33748728e-01\\n-4.33416888e-02 -1.97118267e-01 -2.53051400e-01 4.90383580e-02\\n3.63614053e-01 1.87947273e-01 3.04749250e-01 -3.75626981e-01\\n2.95814779e-03 -9.39863361e-03 -4.65635844e-02 4.35519278e-01\\n1.16406664e-01 -9.51788947e-03 -1.23558588e-01 -1.92275301e-01\\n5.08605242e-01 2.75412407e-02 -9.50071141e-02 5.10627404e-02\\n8.42717737e-02 -1.44816548e-01 -4.94374901e-01 9.71820951e-02\\n4.66368869e-02 -2.49552578e-01 -2.14861799e-03 1.58285260e-01\\n1.85644016e-01 7.49705359e-02 -5.95128417e-01 -2.18601316e-01\\n-3.39220345e-01 -3.65379415e-02 1.12151667e-01 -4.76320267e-01\\n-5.33669256e-03 -5.10306507e-02 -6.29264295e-01 2.12740347e-01\\n-1.95973694e-01 -1.43745005e-01 1.53202370e-01 5.08390181e-02\\n-2.86069632e-01 9.45396256e-03 1.35232583e-01 2.59672761e-01\\n-3.07804048e-01 -1.74276307e-01 6.54586032e-03 -9.91381049e-01\\n1.87845469e-01 3.03550698e-02 -1.27887338e-01 1.29680991e-01\\n-4.06414978e-02 -6.92942381e-01 1.17505282e-01 -3.63826752e-01\\n-2.14895338e-01 -9.04371291e-02 -2.52536833e-01 -3.47979546e-01\\n3.94411385e-02 9.59743932e-03 -1.88935935e-01 4.03753489e-01\\n-3.40673715e-01 4.35669065e-01 -1.32329017e-01 1.30729973e-01\\n1.11544088e-01 -2.47792259e-01 1.12777866e-01 -4.38190758e-01\\n-2.82479882e-01 -1.98119223e-01 -3.74101996e-01 -2.95929968e-01\\n-5.98878451e-02 -2.93092579e-01 -1.19012818e-01 6.18605986e-02\\n3.33937556e-01 1.33729905e-01 -1.29205287e-01 -3.62458229e-01\\n1.69575542e-01 -5.40457308e-01 2.30198592e-01 -1.28210127e-01\\n-1.26892716e-01 -6.12140670e-02 2.09212929e-01 8.62802863e-02\\n1.36641920e-01 -3.85998368e-01 2.84716070e-01 -3.66512358e-01\\n-3.15181136e-01 -1.67194635e-01 -5.04035577e-02 1.25146601e-02\\n3.11727792e-01 -4.18432206e-01 -2.14082748e-03 2.74862409e-01\\n2.60538131e-01 8.96861330e-02 2.27151543e-01 -7.66113698e-02\\n-8.83215964e-02 2.94792235e-01 -4.18162882e-01 1.65259093e-01\\n7.60153890e-01 1.09358355e-01 7.60658532e-02 2.85158634e-01\\n2.56973416e-01 2.69388139e-01 5.00717282e-01 4.79386672e-02\\n-1.19028293e-01 2.50033140e-01 1.59221850e-02 -5.21474123e-01\\n-1.09588638e-01 -7.16493130e-02 -1.92833632e-01 -3.23404968e-01\\n6.44350886e-01 4.67520118e-01 -5.06553769e-01 -1.73717499e-01\\n-2.66003728e-01 -1.40803725e-01 1.44920319e-01 -7.50689059e-02\\n1.37838600e-02 -5.97605258e-02 4.68942523e-01 -1.26253605e-01\\n2.14266628e-01 5.31075597e-01 -1.86657637e-01 -3.47286224e-01\\n-1.24417886e-01 1.53236568e-01 -1.95224397e-02 4.33477342e-01\\n-2.21219495e-01 2.33311713e-01 9.33096409e-02 1.77044272e-01\\n-9.86758471e-02 6.94394112e-02 1.35936245e-01 9.52033103e-02\\n1.52097076e-01 1.66829675e-03 3.52826059e-01 3.87930453e-01\\n2.76531160e-01 3.96166533e-01 3.64475697e-01 1.24166861e-01\\n3.91465247e-01 5.62030435e-01 3.07321250e-01 6.72038794e-02\\n-5.79363704e-02 2.63212249e-03 1.57451779e-01 -4.07832377e-02\\n3.35983723e-01 4.08975899e-01 1.33378997e-01 8.72005939e-01\\n3.71215165e-01 3.48622501e-01 7.47449160e-01 -6.23856068e-01\\n-4.46658254e-01 3.16884965e-02 4.78175730e-01 -4.13712263e-01\\n2.49979869e-02 1.53403953e-01 -3.06449413e-01 2.79428363e-01\\n-4.80152488e-01 -1.69091254e-01 2.16486864e-02 1.04581207e-01\\n-3.51752862e-02 -7.25307614e-02 -2.02012464e-01 2.11214930e-01\\n-9.08846632e-02 -1.30395770e-01 -3.91294450e-01 -1.48296446e-01\\n-1.89257085e-01 -1.11438692e-01 1.22827049e-02 -1.00664228e-01\\n-2.56660953e-02 -3.71397108e-01 -7.60997087e-02 -3.88763472e-02\\n3.47960740e-01 -6.50051981e-02 -3.67048234e-02 -9.71247032e-02\\n2.41734654e-01 2.34557673e-01 5.88870406e-01 5.74958287e-02\\n1.06842056e-01 -2.58659005e-01 -2.17410609e-01 1.60957932e-01\\n1.75131649e-01 9.63894874e-02 2.90348418e-02 2.45911419e-01\\n-3.41180503e-01 -1.26341254e-01 1.88839585e-01 3.19260865e-01\\n-4.12410438e-01 -2.25242097e-02 -6.72351345e-02 1.75769627e-01\\n1.10682428e-01 2.09808290e-01 -3.08911473e-01 5.23173064e-02\\n-2.06504524e-01 -4.43239391e-01 3.35786313e-01 -1.11409143e-01\\n-9.95671973e-02 1.97682194e-02 2.82165438e-01 1.20935649e-01\\n-2.67954499e-01 1.45463087e-02 -5.73985651e-02 8.98494869e-02\\n2.59898715e-02 3.76415074e-01 -2.24367201e-01 -2.51332343e-01\\n-2.52039790e-01 2.15256810e-01 -9.52642858e-02 1.63145423e-01\\n-2.35626549e-02 4.01792526e-01 2.37347428e-02 8.10715556e-02\\n3.67659450e-01 -1.90224815e-02 -2.72442818e-01 -2.54267246e-01\\n-2.98907518e-01 -2.08814263e-01 -1.41596138e-01 -7.61095211e-02\\n1.85458571e-01 -3.50936562e-01 -2.29051430e-02 -8.71997774e-02\\n-1.46647722e-01 -3.01208168e-01 -1.66410524e-02 -8.58882442e-02]]',\n", + " 'job_description': 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team The Application Framework Team is mainly responsible for software frameworks used in the Avaloq Banking Suite (ABS) for the business process modelling and data management. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Business Data Events is a newly built, high-volume data streaming platform. It streams all relevant business events from the Avaloq core banking system to a series of microservices. The data streaming platform is designed for high throughput (100 million messages per hour) and for low latency (below 20 ms). Our technology stack is based on Java (Spring Boot), Oracle and PL/SQL, Docker, Kubernetes, Apache Kafka, Google Protocol Buffers, Prometheus, Grafana, Angular and more. Your mission Further develop and optimize the data streaming platform Drive and enhance the core frameworks of Avaloq’s current and future products Participate in architectural design Understand Avaloq’s architectural strategy and translate it to scalable and maintainable solutions Support and consult our stakeholders – customers and internal business teams Constant self-development What you need University degree in Computer Science or equivalent experience Strong software engineering background, including understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Knowledge and hands-on experience in Java Solid understanding of relational databases Strong communication abilities and proficient English language skills You will get extra points for the following Experience with concurrent and distributed systems Experience with Spring Boot Experience with PL/SQL Experience with microservice architectures Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Don’t be shy – apply! Avaloq Evolution AG Kristin Stengel, Talent Acquisition Partner 8027 Zürich www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " 'soft_skills': '[\"Writing\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " 'hard_skills': '[\"PL/SQL\", \"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Low Latency\", \"Spring Boot\", \"Protocol Buffers\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Data Driven Instruction\", \"Wealth Management\", \"Event Data Recorder\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"Architectural Design\", \"Translations\", \"Apache Kafka\", \"Microservices\", \"Software Engineering\", \"Docker (Software)\", \"Agile Methodology\", \"Business Process\", \"High Throughput Screening\", \"Library For WWW In Perl\", \"Scalability\", \"Clinical Data Management\", \"Grafana\", \"Angular (Web Framework)\", \"Business Events\", \"Relational Databases\", \"Banking\", \"Software Modernization\", \"Java (Programming Language)\", \"Prometheus (Software)\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " 'languages': \"['English', 'Oromo', 'Armenian', 'Latin', 'Tsonga']\"},\n", + " {'company_id': '49',\n", + " 'job_title': 'computer vision engineer (full time)',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-4.45199460e-02 2.53578544e-01 4.49163765e-01 2.28471886e-02\\n4.94733632e-01 -2.33720586e-01 -1.89702436e-02 4.78694022e-01\\n6.19066060e-02 -3.51119220e-01 -3.57598402e-02 -1.82676017e-01\\n-1.61978647e-01 -1.28702983e-01 5.14437854e-02 3.33195746e-01\\n3.34007859e-01 7.06753880e-02 -2.46245742e-01 4.04378504e-01\\n1.16974361e-01 -1.54564753e-02 2.36946166e-01 6.25411093e-01\\n2.72680014e-01 3.71392891e-02 4.41225799e-04 1.75664708e-01\\n-3.22847933e-01 -3.01323593e-01 3.22281599e-01 4.16657738e-02\\n-1.01327330e-01 -3.00870955e-01 4.77856817e-03 -1.90298054e-02\\n-2.39199117e-01 3.26819867e-02 2.45515574e-02 2.22641960e-01\\n-3.87051553e-01 -2.53288865e-01 3.00907865e-02 -1.25161028e-02\\n-3.15129280e-01 -3.09946746e-01 8.43016505e-02 3.16130072e-02\\n1.17176823e-01 -7.52130225e-02 -3.69128555e-01 3.82106960e-01\\n-1.56408951e-01 -2.61538506e-01 2.71881998e-01 7.22913682e-01\\n-1.18294202e-01 -4.83134300e-01 -3.20406914e-01 -2.85137713e-01\\n2.71461606e-02 -1.20565645e-01 3.68537405e-03 -1.74719647e-01\\n2.86328614e-01 -1.01646475e-01 -4.87793721e-02 3.49418670e-01\\n-5.83136857e-01 -1.77022085e-01 -2.35288873e-01 2.23267507e-02\\n-3.35034758e-01 -7.94623271e-02 -2.45257244e-01 -2.08972216e-01\\n7.19378516e-02 4.21182364e-01 1.13111377e-01 -4.45759781e-02\\n-5.20855114e-02 2.59793222e-01 -1.52258590e-01 2.23873332e-01\\n1.96307078e-01 1.89774305e-01 8.30917060e-02 3.19306910e-01\\n-2.83086479e-01 3.56181681e-01 1.02036975e-01 -2.72534013e-01\\n2.16717497e-01 1.33559063e-01 5.40299356e-01 1.44855320e-01\\n8.17441288e-03 2.45541751e-01 -1.59091860e-01 3.28688443e-01\\n2.79789805e-01 -3.66657197e-01 2.56633274e-02 -6.21857634e-03\\n-5.77238835e-02 -1.25905424e-01 -2.64480226e-02 3.39684546e-01\\n-2.23558202e-01 3.84542257e-01 1.65653139e-01 -2.73792475e-01\\n6.65982813e-02 -5.32570541e-01 -2.25586891e-01 -6.38000742e-02\\n-3.26991677e-02 1.82771310e-01 3.53375077e-01 1.69033706e-01\\n2.92112112e-01 1.03971250e-01 2.45640278e-01 1.00900280e+00\\n-3.38465869e-02 1.10935979e-01 -2.00798258e-01 3.71562213e-01\\n1.32326692e-01 -1.98088154e-01 2.62485474e-01 3.18401575e-01\\n1.49826214e-01 -1.39433458e-01 -3.32545005e-02 1.84985578e-01\\n-1.38524950e-01 -2.42323712e-01 -3.87332499e-01 2.08865002e-01\\n-2.77592957e-01 -3.22009176e-01 4.71766680e-01 1.92579389e-01\\n1.43880382e-01 -2.25410759e-02 -1.21031672e-01 -1.39741868e-01\\n-2.29313448e-01 1.99384660e-01 3.47096100e-02 3.44619006e-02\\n-3.52455914e-01 -2.61267871e-01 -2.04699442e-01 2.92277664e-01\\n-2.29927823e-01 4.17922772e-02 -1.95326716e-01 -9.22080949e-02\\n2.69412309e-01 1.10551650e-02 -3.61699402e-01 2.79871225e-01\\n-1.13069154e-01 -1.04587138e-01 -6.03620932e-02 3.02542657e-01\\n-1.56907827e-01 3.00584137e-01 5.92649952e-02 -1.32872999e-01\\n5.48436344e-01 7.38824606e-02 -1.98764820e-02 -2.86634862e-01\\n3.99399161e-01 -2.77587827e-02 2.37405866e-01 2.40145013e-01\\n-6.00477278e-01 3.72687370e-01 -1.64264068e-02 -3.04824971e-02\\n1.37578715e-02 -3.92401218e-02 3.18249017e-01 -3.22180450e-01\\n-4.11208011e-02 -2.10812196e-01 -3.25228721e-01 -3.21355820e-01\\n-3.28672558e-01 -4.13750522e-02 3.30580384e-01 -3.09301466e-01\\n-1.98186170e-02 2.07494646e-01 -5.09033322e-01 4.06623408e-02\\n1.40416011e-01 4.46411893e-02 1.37840584e-01 2.01525122e-01\\n-9.87794101e-02 -3.88181746e-01 1.58982560e-01 -3.29851002e-01\\n-5.04849017e-01 1.47050560e-01 -2.11227581e-01 2.18321443e-01\\n7.80130997e-02 9.62084830e-02 -1.19801007e-01 1.13788411e-01\\n-3.57211202e-01 -1.04939491e-01 1.72305793e-01 5.96760884e-02\\n2.38965854e-01 -5.03343754e-02 -4.36227858e-01 3.94812375e-01\\n-1.52534127e-01 5.58346808e-01 7.25155100e-02 -8.92687082e-01\\n4.51715410e-01 2.51279682e-01 -1.57829836e-01 -3.54142547e-01\\n5.43800294e-01 -2.99812734e-01 4.17735353e-02 1.38582900e-01\\n-1.53926834e-01 -1.51991621e-01 3.03331226e-01 -1.30024515e-02\\n-2.72752106e-01 5.76698363e-01 1.05462648e-01 1.30559891e-01\\n2.76257783e-01 -2.12919816e-01 -8.81645381e-02 -1.13807647e-02\\n-8.48008394e-02 -1.99426115e-01 -3.57630044e-01 -4.21588123e-02\\n-1.62616655e-01 -4.31654483e-01 -1.03400253e-01 -4.27842110e-01\\n-2.06631601e-01 -4.31984782e-01 -7.36770779e-02 2.48168021e-01\\n1.93054110e-01 2.41362736e-01 5.66776134e-02 -4.36156690e-02\\n-1.51139393e-01 -6.24638081e-01 -2.24906459e-01 1.08244032e-01\\n4.66832489e-01 2.82690108e-01 9.54642445e-02 5.39352596e-02\\n1.52851149e-01 4.87832516e-01 -2.77142584e-01 -1.60186335e-01\\n9.09691602e-02 2.37037599e-01 -1.11110620e-01 -1.26432404e-01\\n3.61029245e-02 3.70806366e-01 -2.30201423e-01 8.31017718e-02\\n-2.07171682e-02 -1.18608393e-01 3.55936229e-01 4.19586487e-02\\n-3.62822890e-01 -4.29231316e-01 1.60050262e-02 2.50619739e-01\\n-4.81199205e-01 -1.40080467e-01 4.60315287e-01 1.35651052e-01\\n1.74928799e-01 4.40427028e-02 3.46204996e-01 -1.97583869e-01\\n-1.81538984e-01 -1.68765068e-01 7.45366961e-02 1.15490735e-01\\n1.57162115e-01 3.41787674e-02 -6.67351112e-02 -6.28161371e-01\\n-3.86258435e+00 -3.11285146e-02 1.36698753e-01 -1.47151843e-01\\n2.51281470e-01 -9.41805243e-02 -4.46972139e-02 -8.81509855e-02\\n-3.95642281e-01 -2.41343211e-02 -2.26183295e-01 -7.80322254e-02\\n9.50294957e-02 2.81382829e-01 1.94763243e-01 2.36200690e-01\\n8.80523119e-03 -3.29480976e-01 -4.34892289e-02 4.26452577e-01\\n-3.20264958e-02 -5.43991983e-01 1.50532514e-01 -3.08822375e-02\\n3.26255262e-01 1.73929393e-01 -4.81309980e-01 -8.46197978e-02\\n-1.93737566e-01 -7.11372867e-02 1.20116808e-02 -2.97130328e-02\\n-1.67885244e-01 3.70358586e-01 1.30138516e-01 2.47657616e-02\\n1.43762887e-01 -3.16055566e-01 9.86832529e-02 -1.55498996e-01\\n-8.34699348e-02 -5.55564165e-01 -4.97909747e-02 -7.26704970e-02\\n7.11585820e-01 -3.82367671e-01 1.24290012e-01 1.22199275e-01\\n1.68158010e-01 1.43499926e-01 -6.65516928e-02 4.36929753e-03\\n-3.16853404e-01 -4.53005023e-02 -1.10458210e-01 -1.93154469e-01\\n4.53161001e-01 6.22525156e-01 -6.72680214e-02 -1.28996238e-01\\n-2.07481489e-01 -3.53593051e-01 -5.06249368e-01 -3.20028156e-01\\n-4.21099104e-02 -1.20289490e-01 -6.25646651e-01 -5.13421834e-01\\n-3.91868167e-02 -6.94408864e-02 -1.18487090e-01 5.40641487e-01\\n-3.97332072e-01 -5.37346721e-01 1.25258509e-02 -4.10104930e-01\\n8.26385543e-02 -2.27582172e-01 3.42813432e-02 -5.82169928e-02\\n-2.86071897e-01 -5.72278559e-01 4.33632322e-02 -7.65031129e-02\\n-2.38334626e-01 -2.81422615e-01 1.79058202e-02 -2.28815511e-01\\n-2.71001548e-01 -3.79899889e-01 4.24483776e-01 2.69379634e-02\\n3.21651846e-01 1.10860258e-01 4.50338155e-01 2.05272034e-01\\n4.30359572e-01 -2.09826708e-01 1.82010636e-01 -4.29158032e-01\\n1.41185209e-01 -4.48361039e-02 7.12547779e-01 -3.56685400e-01\\n1.34797275e-01 2.15526357e-01 -1.76097199e-01 5.74873835e-02\\n3.92780542e-01 2.20991429e-02 6.66944236e-02 -3.30536425e-01\\n3.85195255e-01 -3.17046106e-01 -2.88834959e-01 6.80068880e-02\\n1.53194830e-01 6.76063418e-01 1.59358587e-02 -3.81790221e-01\\n-2.86345661e-01 2.92706639e-01 -2.20739648e-01 -3.20455939e-01\\n-1.71031862e-01 1.33911252e-01 -2.85784572e-01 1.95194989e-01\\n1.08252317e-01 -1.32694602e-01 -4.19813097e-01 -4.27725650e-02\\n-4.18784618e-02 3.05546492e-01 1.85780734e-01 -1.35406936e-02\\n-1.10184811e-01 -2.75671631e-01 -1.17044114e-01 6.19782992e-02\\n1.82298765e-01 1.05232082e-01 1.91493437e-01 -3.62312198e-01\\n-8.75146687e-02 3.13670903e-01 -1.00928351e-01 1.51601508e-01\\n-2.14225367e-01 1.46357343e-01 -4.89362568e-01 -2.27101684e-01\\n-2.53600806e-01 -3.01161617e-01 1.54393211e-01 3.82084101e-01\\n2.00864047e-01 -5.15386350e-02 1.13881215e-01 -4.57247645e-01\\n4.67183650e-01 2.29351539e-02 1.08549513e-01 2.17056736e-01\\n1.03048593e-01 5.32663643e-01 2.34292805e-01 -2.16075718e-01\\n-1.38247952e-01 6.37295172e-02 -1.01496525e-01 -2.37244308e-01\\n-8.72444659e-02 -3.85549545e-01 -9.32868719e-02 3.06036234e-01\\n-8.15329701e-03 -2.44349629e-01 -2.90359378e-01 1.70173451e-01\\n2.87488382e-02 -2.62194335e-01 -1.03686117e-01 -1.66410312e-01\\n2.17364192e-01 -3.27882990e-02 2.75742173e-01 -5.13686538e-01\\n5.07480912e-02 -5.83109222e-02 -5.68672083e-02 6.01962566e-01\\n1.11192413e-01 -7.02011678e-03 -2.37424716e-01 -8.63251910e-02\\n3.52439761e-01 -2.98311352e-03 -1.02602309e-02 -7.29222596e-02\\n7.35218078e-02 -2.61009842e-01 -4.68447238e-01 1.46815479e-01\\n3.39784957e-02 -1.13305792e-01 5.84859401e-02 1.17662884e-01\\n1.54165640e-01 4.38535362e-02 -5.30452609e-01 -3.91362667e-01\\n-2.29088008e-01 -6.74734637e-02 -2.67062411e-02 -2.65694946e-01\\n-1.07858621e-01 1.37543697e-02 -5.45885682e-01 1.47259146e-01\\n-3.21557224e-01 1.33827562e-02 -1.04352407e-01 -2.79974891e-03\\n-3.12836468e-01 -1.28245473e-01 9.62707773e-02 1.21510096e-01\\n-2.26182163e-01 -2.30573222e-01 -4.09077741e-02 -8.92217696e-01\\n1.48193657e-01 2.38900725e-02 -1.83519810e-01 1.79671749e-01\\n2.52187569e-02 -6.92818880e-01 2.25948632e-01 -4.84109074e-01\\n4.83890111e-03 6.99876547e-02 -2.22794905e-01 -3.92886192e-01\\n1.60767838e-01 3.90486382e-02 -3.01381171e-01 3.73586565e-01\\n-3.71803612e-01 3.29057753e-01 2.48347111e-02 5.71478531e-02\\n6.94408119e-02 -2.78885931e-01 5.08892350e-02 -4.64489728e-01\\n-3.23942274e-01 -9.36911851e-02 -3.27467471e-01 -1.11144111e-01\\n8.59071314e-02 -2.11560383e-01 -2.12508336e-01 4.89425883e-02\\n1.23764604e-01 9.46875736e-02 -9.19894278e-02 -2.50189662e-01\\n-1.73549838e-02 -3.37624073e-01 1.78159446e-01 -2.23119602e-01\\n1.12301886e-01 -1.11918882e-01 1.49207219e-01 -4.00033928e-02\\n8.44645500e-02 -1.40822694e-01 5.16744137e-01 -1.97700441e-01\\n-3.03735316e-01 4.40364107e-02 9.60303470e-02 -1.46501586e-01\\n2.13451371e-01 -3.45829934e-01 3.87047902e-02 4.16482806e-01\\n6.74213916e-02 2.18594596e-01 2.52972096e-01 -1.22400083e-01\\n-9.13984925e-02 5.16748354e-02 -3.60307276e-01 9.44281369e-03\\n7.06054270e-01 1.46783665e-01 2.26836115e-01 -8.88413116e-02\\n1.20893950e-02 3.34818870e-01 5.85955322e-01 7.02136084e-02\\n-1.70974985e-01 2.60516614e-01 5.94239943e-02 -5.52925825e-01\\n1.41504221e-02 -1.08853966e-01 -3.64326149e-01 -2.75977105e-01\\n5.73838294e-01 3.85264307e-01 -2.12329865e-01 -2.55568981e-01\\n-4.15208898e-02 -1.11294009e-01 1.23295330e-01 1.20843891e-02\\n1.67866901e-01 -1.95140839e-01 5.64127505e-01 -9.41439942e-02\\n1.51462823e-01 4.21215355e-01 -1.29115790e-01 -3.01326513e-01\\n-6.17893692e-03 9.62306336e-02 5.58186807e-02 4.52751309e-01\\n-1.69439569e-01 4.07469600e-01 1.59339122e-02 2.40376126e-02\\n-7.52622709e-02 -5.41412346e-02 1.95916906e-01 -1.31267197e-02\\n6.29129708e-02 3.83339189e-02 3.85002762e-01 5.00687718e-01\\n2.23313496e-01 5.34716606e-01 2.48181045e-01 -8.77909269e-03\\n4.65560615e-01 4.94104892e-01 4.03015673e-01 3.15261036e-01\\n1.59293450e-02 3.73637513e-03 1.32865861e-01 -7.85272717e-02\\n3.95679384e-01 3.61040384e-01 1.74423754e-01 8.67026925e-01\\n3.92566919e-01 2.62970239e-01 8.98395717e-01 -5.95559597e-01\\n-2.58518547e-01 1.70654491e-01 4.91918415e-01 -3.00033629e-01\\n-1.77071884e-01 4.92918789e-02 -2.34098464e-01 1.67776331e-01\\n-5.10683060e-01 -6.91286102e-02 -2.03547142e-02 1.76612288e-01\\n-1.23292357e-01 -5.02124615e-02 -2.32744724e-01 1.15238391e-01\\n-1.06125690e-01 -7.65387043e-02 -4.07027394e-01 -1.17635131e-01\\n-3.39241385e-01 -2.01241583e-01 -1.81233317e-01 -2.56495457e-02\\n-1.32792234e-01 -3.26987714e-01 -1.66555688e-01 7.06678852e-02\\n3.37275922e-01 -3.33824456e-01 -1.88584998e-01 -2.72718489e-01\\n1.09660089e-01 2.33440265e-01 4.91702825e-01 1.32453620e-01\\n2.85513043e-01 -2.24573195e-01 -1.01670139e-01 2.39484198e-02\\n1.20291881e-01 -3.13973464e-02 -1.18918959e-02 5.73906660e-01\\n-4.20657009e-01 -3.32704186e-02 6.89393701e-03 4.06244189e-01\\n-4.63596761e-01 -1.14054173e-01 -5.20697869e-02 2.39116535e-01\\n5.26213422e-02 1.94754630e-01 -1.58774540e-01 8.00643191e-02\\n-2.59348154e-01 -5.15514195e-01 2.85791248e-01 -1.63515434e-01\\n-1.46204829e-02 1.58152863e-01 1.99903309e-01 1.27217099e-01\\n-3.98650408e-01 -1.11395895e-01 -3.38161364e-02 3.02660614e-01\\n-4.17651534e-02 2.37414777e-01 -2.98949182e-01 -2.65762389e-01\\n-1.37092426e-01 2.46858373e-01 -2.22899795e-01 1.28374591e-01\\n-7.08974153e-02 3.19888681e-01 3.80670168e-02 1.01382710e-01\\n3.65393966e-01 -5.59828319e-02 -2.25760445e-01 -2.72890389e-01\\n-1.93107709e-01 -2.63907194e-01 -1.49633303e-01 -3.74980457e-02\\n2.03575328e-01 -2.53228992e-01 2.72581559e-02 3.87494713e-02\\n-2.20258504e-01 -3.94114614e-01 -4.06226963e-02 -1.82148926e-02]]',\n", + " 'job_description': 'WHAT YOU DO Develop new algorithms and improve existing algorithms for visual navigation; Test and optimize the algorithms and running them on embedded Linux (with the supports from our Software Engineers) Test the performance of visual navigation on a drone and have fun Support our customers for testing in Europe and China REQUIREMENT Proven experience as a Computer Vision Engineer (Master or PhD degree) Good knowledge on Visual Odometry, SLAM, SfM, Sensor Fusion Strong programming skills in C/C++, Python, MATLAB, Shell script Good at using Linux and Git Fluent speaking and writing in English (fluent German would be a plus); One position requires fluent Chinese in speaking and writing. Strong problem solving skills and knowledge in hands-on working with mechanical and electronical systems Experience in drones is a plus Knowledge on GNSS or machine learning is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones and autonomous vehicles Salary & potentially participation in stock option plan',\n", + " 'soft_skills': '[\"Planning\", \"Writing\", \"Positivity\", \"Problem Solving\"]',\n", + " 'hard_skills': '[\"Programming (Music)\", \"Shell Script\", \"Sensor Fusion\", \"MATLAB\", \"Electronic Systems\", \"GNSS Augmentation\", \"Mechanicals\", \"Visualization\", \"C++ (Programming Language)\", \"Visual Odometry\", \"Computer Vision\", \"Python (Programming Language)\", \"Linux\", \"Embedding\", \"SLAM Algorithms (Simultaneous Localization And Mapping)\", \"Machine Learning Methods\", \"Git (Version Control System)\", \"Incentive Stock Option\", \"Algorithms\", \"Centering\", \"Autonomous Vehicles\"]',\n", + " 'languages': \"['English', 'Corsican', 'Walloon', 'Ewe', 'Kongo']\"},\n", + " {'company_id': '125',\n", + " 'job_title': 'software developer/devops engineer 60-100% starting immediately or as per agreement',\n", + " 'location': 'Basel',\n", + " 'industry': 'Colleges & Universities',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-2.87318110e-01 2.91789472e-01 4.31188583e-01 -8.56497586e-02\\n5.50554872e-01 -1.77667126e-01 -1.81153476e-01 4.18591142e-01\\n-1.41118765e-01 -3.14023614e-01 -1.08434513e-01 -2.64241785e-01\\n-1.60108298e-01 1.53163016e-01 6.70829564e-02 4.40282047e-01\\n3.40453863e-01 5.67928515e-02 -1.71614468e-01 3.23336720e-01\\n1.02806613e-01 -9.64196473e-02 -4.06006500e-02 7.56575286e-01\\n3.62100184e-01 1.48202516e-02 -5.53796291e-02 2.72017196e-02\\n-1.69028550e-01 -1.95795953e-01 4.24424082e-01 1.71294175e-02\\n-1.09756403e-01 -3.16664100e-01 1.61537319e-01 1.11791953e-01\\n-2.37060279e-01 -1.03546232e-02 -3.76902670e-02 1.60510525e-01\\n-5.12383103e-01 -1.93267167e-01 1.45915411e-02 1.42959803e-02\\n-2.79489934e-01 -2.70250201e-01 2.29901269e-01 2.37958580e-02\\n2.33175308e-02 5.69798499e-02 -6.05443358e-01 2.64797658e-01\\n-2.71879137e-01 -2.63937533e-01 4.01578635e-01 4.84519213e-01\\n5.35161905e-02 -4.76649761e-01 -4.92879808e-01 -3.85217905e-01\\n-3.52666825e-02 -7.18578100e-02 3.89909297e-02 -2.73499966e-01\\n5.02170920e-01 1.37555972e-01 5.60406670e-02 3.60494316e-01\\n-8.01566899e-01 -1.07479371e-01 -2.12247014e-01 5.86293414e-02\\n-4.19530869e-01 -1.04820862e-01 -2.29446977e-01 -2.23073408e-01\\n-5.96053377e-02 2.96231508e-01 -3.69271412e-02 9.81291234e-02\\n-1.38414115e-01 3.09551448e-01 -1.51179239e-01 3.57642770e-01\\n2.48925060e-01 1.73266470e-01 2.58680612e-01 3.36884737e-01\\n-4.56089437e-01 3.54018390e-01 1.28624976e-01 -3.47741365e-01\\n2.72112489e-01 6.20779619e-02 4.51661527e-01 9.88357067e-02\\n1.76459432e-01 1.43177837e-01 -2.75089353e-01 2.16527492e-01\\n1.98034912e-01 -2.34888554e-01 -7.76223838e-04 -1.14471316e-01\\n-2.95662023e-02 5.42322136e-02 1.54809458e-02 1.92612082e-01\\n-3.79081279e-01 3.74513745e-01 1.75825447e-01 -2.73818403e-01\\n-1.01332933e-01 -5.78993320e-01 -1.22831173e-01 1.46739170e-01\\n2.04649158e-02 -5.30406088e-03 1.45222217e-01 1.15870684e-01\\n2.24334180e-01 4.39854153e-03 1.36397451e-01 8.49736691e-01\\n-1.23089060e-01 -6.50517419e-02 -1.49911433e-01 2.67448455e-01\\n1.03887878e-01 -3.06839287e-01 2.14043438e-01 3.00301254e-01\\n1.05285630e-01 -9.65064913e-02 -2.45603755e-01 3.91231865e-01\\n-9.10522416e-04 -2.49747306e-01 -3.50262821e-01 2.72334695e-01\\n-1.16192371e-01 -4.62924838e-01 5.35417378e-01 5.94500173e-03\\n2.22213119e-01 -6.12952113e-02 9.75393504e-03 -8.14917535e-02\\n-4.99278158e-02 1.65591896e-01 6.23758510e-02 2.49845311e-01\\n-3.73047531e-01 -2.50737190e-01 -1.74523860e-01 1.78210318e-01\\n-2.58136809e-01 1.52739286e-01 -9.52636153e-02 -1.36618212e-01\\n3.80859077e-01 2.93134227e-02 -3.21646303e-01 2.13435248e-01\\n-3.00743692e-02 1.56142935e-03 -1.25223532e-01 3.85336041e-01\\n-1.58782840e-01 2.32533216e-01 -8.19541365e-02 -1.55077174e-01\\n5.68798423e-01 5.88336065e-02 1.35826081e-01 -3.41330208e-02\\n3.76788825e-01 -1.47953451e-01 2.99568772e-01 3.50088179e-02\\n-6.97408974e-01 2.18423441e-01 -1.39078293e-02 -1.70854092e-01\\n3.10208797e-02 3.42263356e-02 4.09392267e-01 -3.31602275e-01\\n-9.21376050e-05 -1.94397196e-01 -3.72853070e-01 -3.37666452e-01\\n-2.58329719e-01 7.73894712e-02 4.21880007e-01 -3.80115300e-01\\n-1.16501763e-01 1.65301889e-01 -5.59084177e-01 -2.04996750e-01\\n2.11235449e-01 2.25003034e-01 1.26817137e-01 9.17577371e-02\\n-1.38674349e-01 -7.17165709e-01 3.40212882e-02 -5.29017806e-01\\n-2.54450202e-01 1.32091165e-01 -3.92119646e-01 2.19579250e-01\\n1.09882336e-02 -4.72904593e-02 -1.20516382e-01 1.37907594e-01\\n-3.48661184e-01 -6.25367165e-02 1.48148507e-01 3.47936824e-02\\n2.84271419e-01 1.07930340e-01 -2.71239161e-01 5.35039544e-01\\n-1.54739842e-01 4.94785607e-01 1.31897479e-01 -8.04526329e-01\\n5.07906973e-01 4.43602204e-01 8.89478400e-02 -3.37336123e-01\\n5.69540799e-01 -3.01147461e-01 -6.24946766e-02 1.32318974e-01\\n-4.60249662e-01 -2.59566069e-01 2.44656637e-01 -2.77914077e-01\\n-2.35727161e-01 5.57668924e-01 7.49789700e-02 2.86465883e-02\\n3.54128361e-01 -3.61817777e-01 -1.78567231e-01 1.29208982e-01\\n-1.16411954e-01 -3.23868215e-01 -5.43175697e-01 1.83105245e-02\\n-7.25895017e-02 -5.22873938e-01 -2.09462374e-01 -3.61580282e-01\\n-1.21171907e-01 -2.79470801e-01 -2.15028331e-01 3.72170210e-01\\n1.37792170e-01 9.57143679e-02 -1.16027400e-01 -3.25749069e-02\\n-1.03597805e-01 -6.00327849e-01 6.46317750e-02 -7.62615204e-02\\n4.29507524e-01 1.72550350e-01 1.62954018e-01 -6.85341507e-02\\n4.24821973e-02 6.11936092e-01 -3.55240583e-01 -3.18563938e-01\\n7.56022260e-02 1.08517960e-01 -8.05538613e-03 -3.48435640e-02\\n1.53358683e-01 2.83679783e-01 -2.80136943e-01 2.93359160e-04\\n-2.65068829e-01 3.77300568e-02 3.81170571e-01 -1.25991032e-01\\n-2.00369880e-01 -2.47937664e-01 -1.34533331e-01 2.09450424e-01\\n-5.06720483e-01 -2.30727017e-01 4.16215062e-01 2.08025396e-01\\n1.61086842e-01 1.46631077e-01 2.57583529e-01 -3.05785723e-02\\n-2.73961484e-01 -3.76286834e-01 2.59703845e-01 1.94673315e-01\\n1.18294075e-01 1.25228167e-01 -1.08436294e-01 -5.59951186e-01\\n-2.93729639e+00 -1.77619115e-01 2.11666360e-01 -2.89920747e-01\\n2.80518532e-01 -9.52224582e-02 6.85328841e-02 -7.66997561e-02\\n-3.61034989e-01 -3.13492529e-02 -1.61867917e-01 -2.46088997e-01\\n6.44157454e-02 2.88689852e-01 1.49642691e-01 7.89279044e-02\\n7.27260336e-02 -2.17213064e-01 7.11056143e-02 2.76450306e-01\\n-1.47085473e-01 -7.16445208e-01 1.96123138e-01 -1.18124358e-01\\n2.33736783e-01 3.11203688e-01 -4.14957613e-01 -1.66257665e-01\\n-2.57039428e-01 -2.18894243e-01 1.32843792e-01 -3.22713614e-01\\n-1.09991074e-01 3.05664599e-01 2.08565980e-01 -7.47518390e-02\\n5.99676967e-02 -3.68930161e-01 -9.76570398e-02 -5.65621912e-01\\n2.24634141e-01 -5.76452494e-01 -3.91370151e-03 -1.71015441e-01\\n6.65006042e-01 -2.91297406e-01 1.82726577e-01 1.35385662e-01\\n2.31303096e-01 2.02988476e-01 6.48515224e-02 7.25327134e-02\\n-2.54797429e-01 -3.19191754e-01 -2.41924226e-02 -2.85765201e-01\\n5.49647093e-01 4.76489246e-01 -2.08977669e-01 -5.56413084e-02\\n1.48424178e-01 -3.50824773e-01 -4.54944044e-01 -3.19716066e-01\\n-1.86787039e-01 -1.59528390e-01 -6.02613747e-01 -3.77588332e-01\\n-1.11144185e-01 -8.96145999e-02 -9.21295136e-02 7.16021776e-01\\n-3.33794415e-01 -3.24110806e-01 5.17537817e-03 -6.55639291e-01\\n7.62278512e-02 -2.63824970e-01 6.99969530e-02 -2.36851692e-01\\n-2.31593966e-01 -4.92470652e-01 1.22997947e-01 -7.06257299e-02\\n-1.79481894e-01 -3.36754829e-01 3.22761573e-02 -2.54902959e-01\\n-1.84644908e-01 -5.51626325e-01 3.85588646e-01 1.51344895e-01\\n3.84903014e-01 1.87793210e-01 2.89781362e-01 -2.03124825e-02\\n2.71261364e-01 3.76273878e-02 -2.62049958e-03 -3.97569388e-01\\n2.10584551e-01 2.14498322e-02 5.50341487e-01 -1.82782650e-01\\n1.78368874e-02 9.05191600e-02 -2.20640779e-01 -1.51129171e-01\\n3.18200797e-01 9.64162573e-02 1.94250457e-02 -1.74557716e-01\\n4.10951138e-01 -4.19547498e-01 -1.13547973e-01 1.97528839e-01\\n5.34651726e-02 6.41566753e-01 -1.67857111e-02 -3.89339983e-01\\n-2.05366701e-01 5.42307019e-01 -1.11077242e-02 -3.98148559e-02\\n-5.10816649e-03 1.66688740e-01 -1.56590879e-01 1.82058275e-01\\n4.89002243e-02 -1.72223762e-01 -2.58895695e-01 -6.41639531e-02\\n-1.45417899e-01 2.82754540e-01 2.92502046e-01 2.50201762e-01\\n-1.03088312e-01 -3.89020383e-01 -4.35447842e-02 2.98897743e-01\\n2.62479544e-01 3.97856116e-01 1.80709511e-01 -1.73602343e-01\\n2.35672742e-02 4.60401475e-01 -1.22553632e-01 2.26123989e-01\\n-1.48112223e-01 7.70156905e-02 -5.44449151e-01 -1.76110327e-01\\n-3.27874482e-01 -2.81568766e-01 1.20939940e-01 3.09839934e-01\\n1.75294995e-01 -7.26273656e-02 5.76428548e-02 -3.56755018e-01\\n2.43489802e-01 8.83635134e-02 2.07738400e-01 1.25812173e-01\\n-9.34434831e-02 6.11874640e-01 -1.92633569e-02 -7.33592883e-02\\n-1.86909348e-01 -1.23604946e-02 -2.65375733e-01 -1.86913460e-01\\n1.68819994e-01 -3.95074666e-01 -2.10466236e-01 4.37441260e-01\\n1.05115086e-01 -1.55914098e-01 -1.79656982e-01 2.94642508e-01\\n6.36705533e-02 -2.88086116e-01 -2.58867919e-01 2.27771960e-02\\n2.96990991e-01 4.84071895e-02 2.52825230e-01 -5.04959822e-01\\n-3.87022458e-02 9.62376222e-02 1.11653693e-02 4.82677609e-01\\n1.01177104e-01 4.75580106e-03 -1.94290102e-01 -2.97577620e-01\\n3.24753970e-01 -1.71053261e-01 -1.12228245e-01 -1.06714204e-01\\n3.71257886e-02 -1.56514287e-01 -4.09128308e-01 3.04189771e-02\\n-8.75774473e-02 -1.98559880e-01 -2.12248638e-02 3.96063961e-02\\n1.56495839e-01 7.49918595e-02 -5.38079858e-01 -1.80572510e-01\\n-2.11260617e-01 4.53960299e-02 4.73914668e-04 -4.55058873e-01\\n5.21916039e-02 -2.65320726e-02 -5.96360683e-01 2.49133706e-01\\n-2.16501728e-01 -1.72815025e-02 1.95525765e-01 -2.01024115e-02\\n-4.61807728e-01 -1.38845056e-01 1.76314950e-01 1.75923079e-01\\n-3.57330948e-01 -3.15296113e-01 5.33151999e-02 -1.02236998e+00\\n1.91780090e-01 -9.61777866e-02 -1.16622925e-01 1.15673631e-01\\n7.14104846e-02 -6.96519852e-01 8.08185562e-02 -3.65290046e-01\\n-5.79128787e-03 6.44948259e-02 -1.99457601e-01 -3.20395589e-01\\n7.62744322e-02 -1.16553485e-01 -2.10152030e-01 4.63202327e-01\\n-4.96144295e-01 2.81551600e-01 -9.17651951e-02 5.04254699e-02\\n5.49955294e-02 -3.18094879e-01 1.46768942e-01 -3.12892437e-01\\n-4.53601778e-01 -2.32586071e-01 -2.63967574e-01 -3.86464596e-01\\n2.09685136e-02 -2.85497308e-01 -1.30863413e-01 9.20823216e-02\\n2.98231930e-01 -1.91106908e-02 -1.86114684e-01 -2.28986442e-01\\n9.53403413e-02 -4.53365326e-01 7.88550898e-02 -5.20132445e-02\\n-8.07747394e-02 -1.38689891e-01 1.98494166e-01 1.04011580e-01\\n1.51971757e-01 -3.57496649e-01 5.10936260e-01 -3.76024514e-01\\n-3.70997846e-01 -7.93536454e-02 8.58781338e-02 9.27861407e-03\\n2.19826415e-01 -6.54448628e-01 -3.50430086e-02 4.03188586e-01\\n2.05288291e-01 4.40065116e-02 2.04517663e-01 -1.41157478e-01\\n3.06737162e-02 2.29866520e-01 -3.89220595e-01 1.45663664e-01\\n8.67883027e-01 1.54450938e-01 1.05609357e-01 2.38801956e-01\\n1.47309422e-01 2.88691550e-01 4.74720836e-01 -1.02697149e-01\\n-7.43917674e-02 2.56745696e-01 1.39196903e-01 -4.64492112e-01\\n-1.52405024e-01 -3.56659181e-02 -2.19154991e-02 -2.70281553e-01\\n6.73882127e-01 3.77228737e-01 -4.49291468e-01 -3.12332600e-01\\n-9.88477319e-02 -7.93113112e-02 2.72883654e-01 -1.01410180e-01\\n1.26195177e-02 -1.69254273e-01 3.98905456e-01 -2.46471763e-02\\n2.85397083e-01 5.73866546e-01 -1.91057056e-01 -3.46286058e-01\\n-1.87313184e-01 2.07979783e-01 2.93491296e-02 4.31390464e-01\\n-1.44919842e-01 2.01590300e-01 -5.63432872e-02 1.80502191e-01\\n-1.46607757e-01 1.90563813e-01 1.00478768e-01 5.71591109e-02\\n2.05162674e-01 1.31151050e-01 3.90405834e-01 4.27460074e-01\\n3.74838233e-01 5.24707198e-01 2.74959713e-01 4.67869565e-02\\n4.93670940e-01 5.46043575e-01 4.72681075e-01 -1.02610551e-02\\n-8.42719972e-02 1.17959708e-01 1.00726373e-01 -7.90356100e-02\\n4.05645490e-01 3.19476247e-01 1.54250965e-01 9.33255613e-01\\n3.24126899e-01 3.79435778e-01 6.98691249e-01 -5.63847959e-01\\n-2.86700159e-01 5.67018837e-02 4.60928977e-01 -4.21892703e-01\\n4.04282734e-02 7.92097896e-02 -1.67069674e-01 2.26446718e-01\\n-4.92805004e-01 -8.33834186e-02 -3.79050709e-03 2.18010470e-02\\n1.09355494e-01 -4.77372482e-02 -2.17290044e-01 -3.26051340e-02\\n-2.41340756e-01 -2.43086696e-01 -4.19553876e-01 -2.16480732e-01\\n-2.07325071e-01 -7.10473359e-02 -6.01869412e-02 -2.17074305e-01\\n-7.99204633e-02 -3.56071323e-01 2.90904343e-02 3.05220857e-03\\n3.63231272e-01 -1.19046845e-01 -1.43253192e-01 -1.59353733e-01\\n3.66383731e-01 3.20502818e-01 6.39274836e-01 -1.33762375e-01\\n9.07671079e-03 -1.49128616e-01 -2.40885392e-01 1.49054140e-01\\n2.62479801e-02 1.16542861e-01 1.40212059e-01 2.67452806e-01\\n-2.76915550e-01 -8.46120864e-02 1.02654383e-01 3.54872227e-01\\n-3.72790039e-01 -7.65801072e-02 -9.86637399e-02 1.46286160e-01\\n-7.52954371e-03 1.39302641e-01 -2.87257373e-01 1.13631755e-01\\n-1.94109589e-01 -5.63626826e-01 4.52676833e-01 -1.88164040e-01\\n-1.44184843e-01 3.81145217e-02 3.99288416e-01 2.23205343e-01\\n-2.31812239e-01 2.88282707e-03 2.34621409e-02 2.06964642e-01\\n6.44229949e-02 3.45169842e-01 -1.61057010e-01 -2.84343541e-01\\n-3.56081724e-01 1.98329404e-01 -1.88631520e-01 1.26163512e-02\\n-1.43413007e-01 4.23739254e-01 -4.40278165e-02 3.40358168e-02\\n4.14370358e-01 -8.75738040e-02 -1.60119101e-01 -3.00972998e-01\\n-2.28682548e-01 -2.21214429e-01 7.98541121e-03 -1.97812542e-03\\n2.33695775e-01 -3.69636327e-01 -1.46578059e-01 -2.98409998e-01\\n2.15439349e-02 -2.49564201e-01 1.55617930e-02 4.02572230e-02]]',\n", + " 'job_description': \"60-100% Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum's scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master's degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer you The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).\",\n", + " 'soft_skills': '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Church Slavonic', 'Sichuan Yi', 'Amharic']\"},\n", + " {'company_id': '117',\n", + " 'job_title': 'data scientist',\n", + " 'location': 'Lausanne',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.98490053e-01 1.68447852e-01 5.34035742e-01 1.06047787e-01\\n5.86748719e-01 -1.64473459e-01 -1.20681524e-02 3.75144809e-01\\n3.11087854e-02 -4.82621431e-01 1.08029217e-01 -2.64965594e-01\\n-4.24936302e-02 1.79403901e-01 4.39701453e-02 4.36141640e-01\\n1.80472717e-01 8.43676999e-02 -1.63410068e-01 3.29295218e-01\\n1.13052651e-01 -1.84331536e-01 1.54782996e-01 8.92038584e-01\\n4.35893834e-01 2.22152937e-02 -1.08888783e-01 -5.51389158e-03\\n-1.97020054e-01 -1.57019198e-01 5.22132397e-01 2.31429040e-02\\n-2.02051908e-01 -4.68408644e-01 1.68216944e-01 1.09614417e-01\\n-2.70741880e-01 -9.14032832e-02 -5.62994629e-02 2.48039246e-01\\n-6.21851087e-01 -1.67824715e-01 -4.63125668e-02 5.22936247e-02\\n-3.25999469e-01 -3.72982562e-01 -1.35743007e-01 -6.46300837e-02\\n1.58920780e-01 1.82162970e-02 -4.20258880e-01 2.32335225e-01\\n-2.93916643e-01 -3.86448324e-01 2.66541123e-01 7.05900788e-01\\n-5.26017696e-02 -3.64010692e-01 -5.49109697e-01 -3.05890381e-01\\n8.15853179e-02 -1.81274474e-01 7.18047097e-02 -4.93999779e-01\\n1.36774898e-01 3.02586965e-02 6.14990145e-02 3.75392914e-01\\n-8.38087678e-01 -4.62461896e-02 -2.13762134e-01 -1.04728319e-01\\n-3.03522468e-01 -4.99219745e-02 -4.08171833e-01 -5.91531098e-02\\n-3.01084161e-01 4.70264167e-01 5.98923452e-02 -1.35122277e-02\\n-2.37765253e-01 2.84317821e-01 -2.13795438e-01 4.82043564e-01\\n1.57344908e-01 3.31291556e-01 2.78843254e-01 4.06588346e-01\\n-3.29693198e-01 6.00341678e-01 7.40409344e-02 -3.79007518e-01\\n2.68371969e-01 1.87614530e-01 4.32731837e-01 -4.40297574e-02\\n1.86995834e-01 6.54741526e-02 -3.53593290e-01 4.73700464e-01\\n2.86135823e-01 -4.65687990e-01 1.92917854e-01 -1.91417694e-01\\n1.39314681e-01 1.57137141e-02 9.35017243e-02 1.52080506e-01\\n-3.23441148e-01 2.82992095e-01 1.50865227e-01 -2.09911555e-01\\n-2.89470315e-01 -3.91164958e-01 1.15666874e-02 4.93022762e-02\\n1.30984157e-01 1.29873797e-01 1.53342888e-01 1.41196167e-02\\n2.75103807e-01 -2.21970007e-02 8.42160806e-02 7.94201910e-01\\n-8.52690637e-02 3.10839601e-02 -2.84211278e-01 2.55872875e-01\\n2.07810014e-01 -3.15589964e-01 2.48669237e-01 1.86385036e-01\\n-9.52237844e-02 -3.03176194e-01 -2.18086660e-01 4.76966023e-01\\n-7.79461265e-02 -2.07063124e-01 -2.67586976e-01 2.19157845e-01\\n1.32983014e-01 -4.11680341e-01 7.84787714e-01 9.47176069e-02\\n2.39536852e-01 -2.36116424e-02 1.72144517e-01 -2.52073884e-01\\n-1.50427684e-01 1.71814546e-01 1.58970639e-01 1.49749070e-01\\n-3.29409420e-01 -2.72307247e-01 -1.29685476e-01 -4.26201522e-02\\n-6.09343171e-01 1.41062260e-01 -7.84448683e-02 -1.18277241e-02\\n5.69632985e-02 -3.99046801e-02 -2.54334301e-01 1.35922119e-01\\n-1.81844965e-01 -8.05051103e-02 1.08543545e-01 3.46745372e-01\\n-3.40663314e-01 3.27113837e-01 6.50227666e-02 -5.33827022e-02\\n7.32531905e-01 2.69181877e-01 3.42125416e-01 6.00659512e-02\\n2.86090672e-01 -8.14728439e-04 8.44561756e-02 2.68181562e-01\\n-6.65334761e-01 2.67431557e-01 -3.85735631e-02 -2.69177854e-01\\n1.51878506e-01 -6.96610659e-02 2.80838668e-01 -2.71945447e-01\\n1.09034896e-01 -2.01537520e-01 -2.67104089e-01 -2.56473482e-01\\n-2.01278329e-01 2.74221562e-02 2.96878666e-01 -5.33602834e-01\\n-1.66825712e-01 2.11294040e-01 -4.35611427e-01 -1.50216639e-01\\n5.46448827e-02 1.30145490e-01 8.36823136e-02 8.58128667e-02\\n-2.24893093e-01 -5.74182510e-01 6.90102130e-02 -3.57991695e-01\\n-3.83243233e-01 2.26196740e-02 -3.93899381e-01 1.50892377e-01\\n7.20620230e-02 3.22730541e-02 -8.89464468e-02 1.47711128e-01\\n-2.42046684e-01 -7.89298713e-02 -7.71543831e-02 4.56787944e-02\\n2.80799389e-01 7.47262165e-02 -3.62081766e-01 3.89577091e-01\\n-1.42074376e-01 6.33597255e-01 5.39880991e-02 -9.04366970e-01\\n5.91697454e-01 2.82826871e-01 -3.77332680e-02 -4.51708794e-01\\n5.62316239e-01 -2.29422852e-01 -3.87869701e-02 2.16090661e-02\\n-4.02199686e-01 -3.95050228e-01 2.63352156e-01 -2.42722213e-01\\n-2.76190221e-01 3.83899897e-01 3.83671112e-02 2.30598614e-01\\n2.29331478e-01 -3.79312515e-01 -1.15541540e-01 -2.25963816e-03\\n-1.01682216e-01 -2.60021448e-01 -6.44318581e-01 -1.28046274e-01\\n-2.20174879e-01 -4.35055792e-01 -1.72082037e-01 -3.12714815e-01\\n-1.83354825e-01 -3.97215337e-01 -2.05919594e-01 1.03983790e-01\\n4.64447081e-01 1.33211598e-01 -1.33309245e-01 -1.33447405e-02\\n3.50766294e-02 -7.19582558e-01 -1.50310546e-01 1.34287849e-01\\n5.24787664e-01 2.26768404e-01 2.04036921e-01 4.96204160e-02\\n2.40692675e-01 6.74461544e-01 -2.07198635e-01 -3.32440853e-01\\n1.58490211e-01 2.04457343e-01 3.53739783e-03 -2.03716174e-01\\n1.80965483e-01 2.89989710e-01 -3.10778916e-01 5.78088686e-02\\n-1.80166028e-03 -1.15563311e-01 4.36029315e-01 8.43280777e-02\\n-2.41839737e-01 -9.56889614e-02 -6.22347146e-02 5.50791100e-02\\n-5.89935660e-01 -1.93254620e-01 5.09841681e-01 1.66533917e-01\\n2.19324440e-01 4.34344634e-02 8.15409049e-02 -2.48789787e-02\\n-2.67628551e-01 -2.34903574e-01 3.32112432e-01 1.01189539e-01\\n7.25044459e-02 1.55793279e-01 1.51826307e-01 -6.25371635e-01\\n-3.20623994e+00 -1.49784967e-01 1.68044001e-01 -2.80160785e-01\\n1.65643036e-01 -1.01801991e-01 1.34259522e-01 2.15092525e-02\\n-3.50563824e-01 2.48651318e-02 -1.22443222e-01 -1.72080040e-01\\n4.94490005e-02 1.84719846e-01 1.95669681e-01 1.40335456e-01\\n2.42038965e-01 -2.51577318e-01 -1.79296046e-01 3.47900063e-01\\n-1.50240153e-01 -6.05059683e-01 1.86683416e-01 3.17553878e-02\\n1.80850029e-01 1.58773795e-01 -3.26912194e-01 -4.62732427e-02\\n-2.19008893e-01 -2.15007514e-01 1.22700110e-02 -2.68822640e-01\\n-2.24717632e-01 2.18789965e-01 1.58057183e-01 -7.19448552e-02\\n2.81711179e-03 -4.10910755e-01 -2.38027632e-01 -4.60491240e-01\\n9.93805677e-02 -6.00141346e-01 -8.91721174e-02 -1.95648015e-01\\n8.62054229e-01 -2.85229027e-01 1.94139540e-01 4.74047475e-02\\n1.57917485e-01 -7.77313858e-02 1.50879011e-01 5.67601062e-02\\n-2.13472083e-01 -4.05702293e-01 -1.95058677e-02 -1.53746560e-01\\n6.11362994e-01 4.19011056e-01 -1.89428449e-01 -5.66643700e-02\\n2.08604977e-01 -2.03314975e-01 -3.61062944e-01 -1.17042221e-01\\n-1.69410147e-02 -2.99540311e-01 -6.58533394e-01 -3.73089492e-01\\n-1.34791106e-01 -2.24593833e-01 -1.76497772e-01 6.09089017e-01\\n-2.97758639e-01 -3.02233458e-01 -8.96530375e-02 -4.20221031e-01\\n3.65690708e-01 -1.72455221e-01 1.61491111e-02 -3.01233411e-01\\n-2.54266441e-01 -4.54686254e-01 7.82393962e-02 -2.00521480e-03\\n-1.18253559e-01 -2.77457058e-01 6.67528361e-02 -9.85487476e-02\\n-3.17083597e-01 -6.13618672e-01 3.36089909e-01 1.37260824e-01\\n2.82092035e-01 1.04266375e-01 4.27308202e-01 -2.08502412e-01\\n2.58303106e-01 4.92885560e-02 -1.78995162e-01 -2.88959026e-01\\n9.36131328e-02 -1.89439347e-03 5.03188968e-01 -2.86683559e-01\\n-7.22547472e-02 4.08482365e-02 -2.37298369e-01 5.89789078e-03\\n3.58722210e-01 -7.53989816e-02 3.75323109e-02 6.47131205e-02\\n2.84136295e-01 -3.09225082e-01 -4.52344567e-02 7.80943856e-02\\n1.22554593e-01 6.47270083e-01 -2.36292649e-02 -3.75358284e-01\\n-5.43820262e-02 4.90269899e-01 -7.02736378e-02 1.71730682e-01\\n-2.13375509e-01 1.28487516e-02 -1.26006141e-01 4.08423603e-01\\n5.60422204e-02 -3.27795237e-01 -2.40091056e-01 -2.17458859e-01\\n-1.27567679e-01 3.45424205e-01 2.41528869e-01 8.66085291e-02\\n-5.91539666e-02 -3.82090509e-01 -1.91814333e-01 3.11532617e-01\\n2.38167256e-01 6.07097685e-01 2.76135802e-01 -2.52990812e-01\\n-1.65165067e-01 3.57886434e-01 -1.73181459e-01 2.75649965e-01\\n-3.06775212e-01 2.13971138e-01 -7.21015215e-01 -1.63446605e-01\\n-2.72623777e-01 -5.55309415e-01 2.82396287e-01 4.76165920e-01\\n1.85164973e-01 -2.68256553e-02 1.26950622e-01 -5.11545658e-01\\n1.72404706e-01 2.51561522e-01 1.39455095e-01 9.32410955e-02\\n-4.36163917e-02 6.40143991e-01 -1.47140566e-02 -1.92858368e-01\\n-7.69074932e-02 -5.10496125e-02 -1.92039073e-01 -1.69946104e-01\\n1.03745170e-01 -6.42351449e-01 -1.20565593e-01 4.14614916e-01\\n1.91677496e-01 -3.02934855e-01 -2.30394423e-01 2.62013912e-01\\n-1.81987435e-02 -2.33089596e-01 -3.53265166e-01 9.29084122e-02\\n4.17391568e-01 1.69648916e-01 3.08351576e-01 -4.95054424e-01\\n-1.03488266e-01 1.95822418e-02 -1.13396540e-01 4.36611772e-01\\n5.13156876e-03 1.17455177e-01 -2.20528394e-01 -5.19436821e-02\\n5.04881144e-01 -9.73169506e-02 -1.58189476e-01 5.31852208e-02\\n9.87734422e-02 -2.07360879e-01 -3.70632887e-01 1.58462584e-01\\n1.10152006e-01 -2.72187889e-01 3.91138569e-02 3.00333917e-01\\n1.28344983e-01 1.72873646e-01 -6.10368729e-01 -2.51271278e-01\\n-2.37106159e-01 6.37514740e-02 2.44956851e-01 -5.00010371e-01\\n-2.50633229e-02 -1.08812183e-01 -6.01011992e-01 1.98806792e-01\\n-1.77623630e-01 -2.60716617e-01 2.80915648e-01 1.66567385e-01\\n-2.15954244e-01 -1.00538023e-01 -1.63552612e-02 4.31187004e-01\\n-2.57406890e-01 -3.66084754e-01 -2.97625158e-02 -1.05347943e+00\\n1.78860158e-01 1.54210538e-01 -2.16569722e-01 2.40157783e-01\\n-1.06771655e-01 -5.95843077e-01 3.03459018e-02 -4.52450454e-01\\n-1.70776471e-01 -1.47550017e-01 -2.40937576e-01 -3.20262849e-01\\n7.18483031e-02 4.63522002e-02 -3.54259253e-01 6.23313487e-01\\n-1.97199836e-01 2.66138107e-01 -1.66601285e-01 5.13235703e-02\\n6.74048364e-02 -2.28564024e-01 2.75622845e-01 -2.93762088e-01\\n-4.38206345e-01 -3.24746072e-01 -4.06680822e-01 -3.45362902e-01\\n-1.62110135e-01 -4.32901204e-01 -1.23458363e-01 1.42602041e-01\\n3.57138753e-01 1.11862049e-01 -1.00561082e-01 -4.47919190e-01\\n1.80069178e-01 -6.26722932e-01 1.00688308e-01 -7.38652050e-02\\n-1.97166830e-01 -1.08951122e-01 1.67460084e-01 8.84525180e-02\\n2.53220260e-01 -4.23621833e-01 2.16237202e-01 -4.83118892e-01\\n-3.24870735e-01 -1.73149645e-01 4.66404222e-02 2.52885744e-04\\n3.01216811e-01 -4.70385373e-01 -5.24459854e-02 3.46703112e-01\\n2.21672252e-01 3.46441455e-02 2.59166241e-01 -2.22074270e-01\\n-2.77883150e-02 3.37142140e-01 -2.97550499e-01 1.33782133e-01\\n9.80508685e-01 5.79408463e-03 1.57590389e-01 3.33879590e-01\\n1.73465908e-01 3.60501409e-01 4.97638971e-01 -3.62647735e-02\\n-1.30439132e-01 2.44274229e-01 1.09367687e-02 -4.30978417e-01\\n1.35228010e-02 -5.83141707e-02 -1.82679608e-01 -4.98491466e-01\\n6.82632089e-01 3.93440276e-01 -4.67156023e-01 -9.14927423e-02\\n-9.45386887e-02 -4.25627157e-02 1.56919152e-01 -3.31078246e-02\\n-1.62858278e-01 6.22135960e-02 4.24956024e-01 -1.13205925e-01\\n3.39500904e-01 4.99209374e-01 -2.22567901e-01 -3.02963257e-01\\n-3.59921250e-04 2.86644578e-01 -7.77633339e-02 5.80886960e-01\\n-2.50393897e-01 3.82342577e-01 -3.66649665e-02 8.49810094e-02\\n-6.23237193e-02 8.48399252e-02 2.50705659e-01 1.99864551e-01\\n1.95929199e-01 5.08617796e-02 5.55004120e-01 4.31450546e-01\\n1.89251930e-01 3.77211571e-01 3.30564678e-01 1.24150634e-01\\n4.19602394e-01 6.01479769e-01 3.68801951e-01 1.13870010e-01\\n9.81845055e-03 4.36148494e-02 2.53709644e-01 -7.97661245e-02\\n2.91473299e-01 5.21867990e-01 1.68353617e-01 8.84965003e-01\\n2.30840862e-01 3.20075691e-01 6.85470164e-01 -7.34844446e-01\\n-3.85260165e-01 1.75446086e-02 5.25078297e-01 -3.47879291e-01\\n-2.03201063e-02 1.76938742e-01 -1.84120700e-01 3.04136336e-01\\n-5.72602689e-01 -2.78642595e-01 5.69656957e-03 1.44848689e-01\\n-7.09198192e-02 -2.53389299e-01 -2.01469466e-01 2.86206871e-01\\n1.72310136e-02 -1.11196861e-01 -3.79156709e-01 -1.50908515e-01\\n-1.63486823e-01 -7.88276866e-02 -6.63947463e-02 -3.82226743e-02\\n-1.20323971e-01 -3.73594820e-01 -2.05948222e-02 1.45254387e-02\\n2.90173411e-01 -1.22973733e-01 -4.64409702e-02 -8.25230405e-02\\n2.54829764e-01 1.90161332e-01 4.92462516e-01 1.00153014e-01\\n6.48191124e-02 -3.17996979e-01 -2.72515297e-01 2.38044083e-01\\n2.39662200e-01 -5.15776686e-03 -1.20936483e-01 1.59862399e-01\\n-2.02828944e-01 -1.85424566e-01 1.19412929e-01 2.20155999e-01\\n-5.12123287e-01 5.75460568e-02 -1.90062851e-01 7.94272497e-02\\n3.39544900e-02 2.95824349e-01 -1.54211283e-01 -2.94568222e-02\\n-1.61088258e-01 -4.97217685e-01 1.97504610e-01 -1.72420919e-01\\n-2.45600611e-01 5.09801134e-02 2.04261571e-01 1.16024092e-01\\n-2.94619024e-01 8.77607614e-03 -1.22478306e-01 1.52068555e-01\\n-1.43381581e-01 2.22774521e-01 -3.56514901e-02 -2.75545478e-01\\n-2.92736769e-01 1.29977956e-01 -1.19818397e-01 2.06783414e-01\\n8.01312923e-02 3.69586587e-01 5.04262745e-02 4.83560152e-02\\n5.57063341e-01 -4.65005934e-02 -2.53236681e-01 -2.53618389e-01\\n-1.51917458e-01 -1.08010136e-01 -1.65727615e-01 -5.30804787e-03\\n2.03608751e-01 -4.56284881e-01 2.78644115e-02 -1.29650235e-01\\n-6.48330152e-02 -4.08598959e-01 2.67550573e-02 -1.88246176e-01]]',\n", + " 'job_description': 'Headquartered in Switzerland with additional offices in Toronto and London, SwissBorg aims to fundamentally change the way individuals manage their wealth. As a product obsessed team, we believe that advanced technology combined with an intuitive user experience will empower people to invest with more freedom, confidence, and belief. In 2018, we successfully raised funds from over 23,800 global participants who share our vision of a wealth management industry with more community-centric values. We are now working towards the next phase of disruption. In Q4 of 2019, individuals across the globe will have the opportunity to purchase digital assets such as Bitcoin at the best prices, and become members of our ecosystem to unlock first of its kind investment features. Your Mission: Data sits at the heart of what we do, and you’ll play a crucial role in helping our teams to build personalized customer experiences, track metrics, optimize processes, enhance our products, and everything in-between. As a data scientist, you will be one of the first members of our growing world-class data team with an impact across all business lines. We’ll give you the tools and autonomy to build the data structures & solutions that will fundamentally underpin all operations at SwissBorg. If you’re looking to explore uncharted territory in the digital assets space with a team that thinks long term, has an agile mindset, and wants to challenge the old-school money managers let’s chat! What You’ll Be Doing Develop statistical analysis, and models and apply them to solve real problems Build and deploy algorithms for anomaly detection, forecasting and churn prediction based on users behavior Work with our product & marketing teams to guide product & marketing decisions through data-based recommendations Define and report on metrics and KPIs Automate analysis and data pipelines while ensuring our data infrastructure is set up for scale What You Might Look Like Masters or PhD degree in math, statistics, physics, computer science, or related fields Expertise in a variety of data manipulation tools and programming languages (Python, SQL) Strong experience and theoretical knowledge in machine learning, prediction algorithms for classification and study of time series Track record in product analytics and experience to make decisions autonomously Outstanding communications and collaboration skills working cross-functionally Past experience building and working with AWS as well as building and maintaining databases Knowledge of Keras, Tensorflow library, SageMaker, and SDK a plus Benefits Being part of the lifetime opportunity to launch a product at scale Get in on the ground floor as a pioneer in the fast paced fintech/blockchain space Salary and competitive bonus based on our meritocratic system Continuous opportunities to learn, grow fast, and create alongside an experienced team of financial experts, engineers, scientists, designers, and marketing gurus Excellent benefits (health, etc…) Standard 5 weeks vacation Centrally located office in a beautiful historic building.',\n", + " 'soft_skills': '[\"Decisiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Operations\"]',\n", + " 'hard_skills': '[\"AWS SageMaker\", \"Automation\", \"Tooling\", \"Agility\", \"KM Programming Language\", \"Health Care Benefits\", \"Blockchain\", \"Computer Science\", \"Analytics\", \"Prediction\", \"Industrialization\", \"Wealth Management\", \"Scale (Map)\", \"Data Manipulation\", \"Python (Programming Language)\", \"Bitcoin\", \"Track (Rail Transport)\", \"Maintainability\", \"Data Pipeline\", \"Library\", \"Money Management\", \"Keras (Neural Network Library)\", \"Investments\", \"Process Optimization\", \"Machine Learning Methods\", \"Purchasing\", \"Physical Computing\", \"Time Series\", \"Personalization\", \"Digital Assets\", \"TensorFlow\", \"Statistical Physics\", \"Phase (Waves)\", \"Flooring\", \"Unlocker\", \"Data Infrastructure\", \"Data Structures\", \"Data Class\", \"Forecasting\", \"Algorithms\", \"Customer Experience\", \"Additives\", \"User Experience\", \"Anomaly Detection\", \"Long-Term Potentiation\", \"Advanced Imaging Technology\"]',\n", + " 'languages': \"['English', 'Kyrgyz']\"},\n", + " {'company_id': '79',\n", + " 'job_title': 'software engineer',\n", + " 'location': 'Lausanne',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.27125368e-01 2.69796431e-01 4.17574644e-01 -3.17967832e-02\\n4.83829677e-01 -1.13778137e-01 -2.76922137e-02 3.63451660e-01\\n4.44437675e-02 -4.72030997e-01 3.72075923e-02 -2.32883185e-01\\n-1.12275928e-01 1.37887806e-01 1.77891925e-02 4.18281376e-01\\n3.18116277e-01 1.00885138e-01 -2.35578150e-01 3.85061055e-01\\n6.28412440e-02 -3.73546407e-02 5.95503524e-02 8.40175331e-01\\n4.26044524e-01 -5.39949238e-02 -5.21642491e-02 -1.97070390e-02\\n-1.69409543e-01 -1.78653806e-01 4.42288339e-01 7.99887329e-02\\n-1.20155022e-01 -4.12080824e-01 2.01556042e-01 7.70067424e-02\\n-2.42032140e-01 -1.57188997e-02 -9.37162265e-02 1.83398068e-01\\n-4.84614402e-01 -3.01504791e-01 -3.64171863e-02 -3.91334444e-02\\n-3.27743590e-01 -2.89562225e-01 7.69322813e-02 2.73283944e-03\\n1.79332569e-01 8.60685408e-02 -5.76057673e-01 2.94329554e-01\\n-2.15955034e-01 -2.56617248e-01 2.88629860e-01 7.18373597e-01\\n-3.02261040e-02 -3.91337395e-01 -5.48701286e-01 -3.88562024e-01\\n6.84991032e-02 -1.05364665e-01 -1.23068035e-01 -2.70442754e-01\\n3.52411509e-01 -1.34039484e-03 5.00411354e-03 2.18962908e-01\\n-7.62454808e-01 -3.83579507e-02 -2.15778127e-01 -8.82821977e-02\\n-3.00408185e-01 -1.56770140e-01 -2.86247134e-01 -4.56519164e-02\\n-4.33979817e-02 3.56947601e-01 1.21795900e-01 1.45568103e-02\\n-1.29179209e-01 2.39129439e-01 -2.82290131e-01 4.58785951e-01\\n2.61039674e-01 2.98499137e-01 2.10609108e-01 3.17604303e-01\\n-3.42393607e-01 4.47079748e-01 7.25122839e-02 -3.76231939e-01\\n2.52706349e-01 1.69523627e-01 5.09299576e-01 6.57418296e-02\\n1.53163865e-01 1.28526285e-01 -3.52623343e-01 3.69115233e-01\\n2.61332810e-01 -3.42240870e-01 7.21371025e-02 -1.18719876e-01\\n4.09290530e-02 -2.47601308e-02 7.80438632e-02 1.40591562e-01\\n-3.25151563e-01 3.26031804e-01 1.27629861e-01 -2.46098444e-01\\n-1.58357009e-01 -4.64192957e-01 -1.00157022e-01 -1.14761591e-02\\n-6.51744008e-03 8.91322866e-02 1.68724090e-01 1.89422786e-01\\n1.86769798e-01 5.78019768e-02 8.32156911e-02 9.37190294e-01\\n-1.47734612e-01 5.94497845e-02 -2.39961103e-01 3.55431885e-01\\n1.52993426e-01 -3.07093590e-01 3.29629391e-01 3.71128380e-01\\n5.22043183e-03 -1.92387611e-01 -1.32205456e-01 4.27837551e-01\\n-1.35272145e-02 -1.83288515e-01 -3.60302299e-01 2.10205749e-01\\n4.81947511e-03 -5.07851660e-01 6.73386216e-01 1.31254211e-01\\n1.87440962e-01 -7.36279711e-02 2.83509940e-02 -1.24785572e-01\\n-1.40923217e-01 1.33342579e-01 6.55808300e-02 1.81341380e-01\\n-3.90169919e-01 -2.48192489e-01 -1.20238304e-01 1.71853527e-01\\n-4.15171683e-01 1.80331916e-01 -9.90092456e-02 -1.06373169e-01\\n1.64887100e-01 -1.46780238e-01 -3.80777776e-01 2.03693748e-01\\n-1.00807354e-01 -4.56332639e-02 3.36500108e-02 3.85707319e-01\\n-1.89602315e-01 2.17534393e-01 6.40016794e-03 -8.80376920e-02\\n6.51337028e-01 8.83567259e-02 1.37343109e-01 -1.24381837e-02\\n3.02946031e-01 -2.63593346e-03 3.01221251e-01 2.30462432e-01\\n-6.66413665e-01 2.76807725e-01 -3.91891934e-02 -1.15679242e-01\\n1.07693881e-01 -5.41118868e-02 3.59447002e-01 -3.29196632e-01\\n3.02443914e-02 -1.15592584e-01 -4.05837238e-01 -3.10550570e-01\\n-2.68584490e-01 -8.45924020e-02 3.86554480e-01 -3.96316648e-01\\n-1.07548364e-01 2.19480604e-01 -5.72538733e-01 -1.28240854e-01\\n6.84816837e-02 2.11087823e-01 2.52946597e-02 4.40650359e-02\\n-1.67362273e-01 -5.90765119e-01 6.19688109e-02 -4.26929832e-01\\n-4.66481507e-01 5.96868573e-03 -3.13519120e-01 1.96389467e-01\\n1.03956789e-01 1.23915691e-02 -1.25204116e-01 1.30487859e-01\\n-3.25580895e-01 -1.71476468e-01 1.06339201e-01 -4.30818386e-02\\n2.27285534e-01 4.67034169e-02 -3.32406878e-01 4.23940063e-01\\n-1.02332167e-01 5.70000052e-01 1.11352928e-01 -9.23629761e-01\\n5.31007290e-01 3.93530607e-01 9.35020447e-02 -4.68637258e-01\\n5.48740208e-01 -2.63133168e-01 -1.12085827e-01 1.35019183e-01\\n-2.48292387e-01 -2.80383825e-01 3.12511683e-01 -1.57235116e-01\\n-3.56445611e-01 5.52877903e-01 2.80821603e-03 6.69565126e-02\\n2.60662198e-01 -3.64525795e-01 -7.65089542e-02 1.59413740e-02\\n-7.23822266e-02 -2.08545417e-01 -5.21448076e-01 6.03800714e-02\\n-8.44106749e-02 -4.25732017e-01 -1.27059460e-01 -3.87459755e-01\\n-1.61265954e-01 -4.25329477e-01 -1.51374891e-01 3.55106354e-01\\n1.87989146e-01 1.33009881e-01 -4.52037752e-02 -3.25302742e-02\\n-1.21526912e-01 -6.53807998e-01 -1.10407285e-01 8.86134803e-02\\n4.89270031e-01 9.60140899e-02 3.75014395e-02 5.33876978e-02\\n5.46724014e-02 6.16834879e-01 -2.69469142e-01 -2.83430994e-01\\n8.23289901e-02 1.36012077e-01 2.69293077e-02 -7.32678697e-02\\n1.57471478e-01 4.79803562e-01 -3.93870026e-01 6.22980930e-02\\n-1.68149590e-01 -2.12166347e-02 4.12184894e-01 1.35256350e-03\\n-2.60393322e-01 -2.27372825e-01 -6.06820323e-02 1.37051567e-01\\n-6.35373354e-01 -2.14406252e-01 5.31770229e-01 2.72493839e-01\\n1.55950785e-01 5.24377972e-02 1.25261828e-01 -4.18143608e-02\\n-2.61382282e-01 -2.82942176e-01 3.13833892e-01 1.51899964e-01\\n1.25497714e-01 1.12545103e-01 -4.56330366e-02 -5.33087075e-01\\n-3.35048032e+00 -2.34476060e-01 1.32517070e-01 -1.72246382e-01\\n2.04984128e-01 -6.22991845e-02 -4.82984260e-03 -1.16291098e-01\\n-2.78031558e-01 2.24089548e-02 -1.40774935e-01 -8.51548314e-02\\n6.16282746e-02 3.99948359e-01 1.60389319e-01 1.81820780e-01\\n2.02413991e-01 -3.08729291e-01 -4.09073569e-02 3.80825818e-01\\n-1.41960859e-01 -6.16072893e-01 1.56102270e-01 -1.38571590e-01\\n2.72155434e-01 2.08818138e-01 -3.52731794e-01 -1.73523217e-01\\n-3.54202271e-01 -1.34091318e-01 -2.70633046e-02 -2.73291588e-01\\n-1.82371721e-01 2.29317307e-01 1.97630912e-01 -3.91087681e-02\\n7.84590840e-02 -4.54530239e-01 -1.11152433e-01 -3.98788154e-01\\n8.35073218e-02 -6.12578630e-01 -5.34217507e-02 -1.43758923e-01\\n7.43328214e-01 -2.78433472e-01 1.50196761e-01 1.08898908e-01\\n1.52775899e-01 1.22104235e-01 1.07749954e-01 1.03295773e-01\\n-1.54532149e-01 -3.16018045e-01 -5.50422519e-02 -1.37344688e-01\\n5.68219304e-01 5.07999063e-01 -1.42800212e-01 -8.88459757e-02\\n7.66880959e-02 -2.97348619e-01 -5.10873139e-01 -2.84567952e-01\\n-6.15884922e-02 -2.21587867e-01 -6.37431145e-01 -5.35344183e-01\\n-1.92173421e-01 -1.46295875e-01 -2.10131496e-01 6.63031220e-01\\n-4.34666157e-01 -3.08587044e-01 -8.52909535e-02 -5.66821635e-01\\n2.83157378e-01 -2.38477290e-01 4.20639887e-02 -2.34099209e-01\\n-1.84786156e-01 -6.02606535e-01 -5.00374511e-02 -1.07623063e-01\\n-1.84707671e-01 -3.40996027e-01 1.04334638e-01 -2.82849014e-01\\n-2.46498227e-01 -4.74550426e-01 4.57601249e-01 1.59377649e-01\\n3.75579566e-01 1.02776781e-01 3.74861360e-01 -7.69050568e-02\\n3.75745416e-01 -2.00274698e-02 -9.38898027e-02 -4.10633981e-01\\n-3.28884833e-02 7.77692795e-02 5.16483486e-01 -1.86286673e-01\\n2.27885414e-02 1.09988853e-01 -1.90640166e-01 -2.00852379e-03\\n3.89730096e-01 4.79001813e-02 -4.98160347e-03 -1.12250544e-01\\n4.08037335e-01 -2.51025259e-01 -1.01825267e-01 4.41031046e-02\\n1.18889719e-01 5.80628216e-01 2.09363867e-02 -4.80444372e-01\\n-2.12584972e-01 4.51515257e-01 -9.12307203e-02 -1.64137483e-02\\n-1.29420370e-01 1.08257011e-01 -1.09081186e-01 3.34735185e-01\\n5.74554466e-02 -1.82426482e-01 -3.11553478e-01 -9.93346572e-02\\n-4.99378704e-02 3.20447683e-01 1.40783876e-01 1.12598658e-01\\n1.06943510e-02 -3.41552019e-01 -7.57814050e-02 2.00754300e-01\\n3.03460896e-01 4.05339569e-01 1.88629746e-01 -2.47080743e-01\\n-1.35372467e-02 3.86106372e-01 -1.52755111e-01 1.86516121e-01\\n-1.80904508e-01 1.05158418e-01 -5.31035781e-01 -2.36950889e-01\\n-2.79330879e-01 -4.49567318e-01 2.53835261e-01 2.74584025e-01\\n7.39228204e-02 -9.49252397e-02 1.41534954e-01 -4.91943419e-01\\n2.67681032e-01 3.17608833e-01 1.80890977e-01 1.51734740e-01\\n-5.67365959e-02 6.95278645e-01 4.08548936e-02 -2.21086428e-01\\n-7.91571215e-02 5.88726103e-02 -1.84904218e-01 -1.62283882e-01\\n-2.23938003e-03 -6.48231149e-01 -1.59262776e-01 3.91985476e-01\\n7.84540027e-02 -3.61845762e-01 -2.88549781e-01 2.76671588e-01\\n6.92322776e-02 -2.66836464e-01 -1.67234868e-01 -2.11665221e-02\\n2.64133036e-01 5.55333905e-02 2.54965812e-01 -3.98185968e-01\\n-4.52785045e-02 4.79600094e-02 -3.92197035e-02 4.95272696e-01\\n1.40548751e-01 4.82939780e-02 -1.64245695e-01 -8.59399885e-02\\n3.77379239e-01 -7.06671551e-02 -1.05390795e-01 -1.84086919e-01\\n4.72559854e-02 -2.02705517e-01 -3.71087551e-01 9.28018689e-02\\n6.15729950e-02 -1.57487050e-01 -1.10368259e-01 1.94340229e-01\\n1.13102160e-01 2.07162708e-01 -5.82823396e-01 -2.65549123e-01\\n-2.74574578e-01 -1.15897655e-02 9.21869874e-02 -4.84801531e-01\\n1.54531999e-02 -1.19386986e-02 -5.67854404e-01 2.38283589e-01\\n-2.25505203e-01 -1.08398199e-01 1.29771292e-01 7.36161843e-02\\n-3.24669510e-01 -2.42830038e-01 3.58607434e-02 2.43339032e-01\\n-2.70797074e-01 -2.49449611e-01 -3.82365100e-02 -1.00040984e+00\\n1.63464785e-01 2.85817999e-02 -1.64224625e-01 2.10299164e-01\\n-3.47836837e-02 -5.93119204e-01 1.35631517e-01 -4.75747794e-01\\n-5.05542904e-02 3.92902568e-02 -3.51046592e-01 -3.02146673e-01\\n1.54215217e-01 -7.15852305e-02 -3.10165823e-01 4.38527316e-01\\n-4.28242087e-01 3.72191966e-01 -1.91449881e-01 1.32823229e-01\\n9.35819596e-02 -3.14130425e-01 1.08252488e-01 -4.49490428e-01\\n-3.54675591e-01 -2.06948936e-01 -2.97579557e-01 -2.68498152e-01\\n2.31331773e-03 -4.03473347e-01 -3.01789641e-01 1.94169432e-02\\n3.45595628e-01 6.19858578e-02 -1.70190975e-01 -2.08115593e-01\\n1.35171339e-01 -4.79782820e-01 7.48917311e-02 -9.29511487e-02\\n-1.39394432e-01 -1.86717272e-01 2.03681961e-01 8.61908048e-02\\n1.59402311e-01 -3.69390070e-01 4.76673096e-01 -4.72980797e-01\\n-2.82029212e-01 -1.78679135e-02 2.58058496e-03 -7.63224587e-02\\n2.57639110e-01 -5.50302744e-01 1.12418249e-01 4.07317489e-01\\n2.18134612e-01 1.29642114e-02 2.53219515e-01 -1.59164786e-01\\n-2.09615957e-02 2.84936011e-01 -3.57854933e-01 1.54409297e-02\\n7.68869877e-01 1.06699347e-01 1.19543463e-01 1.90335318e-01\\n1.31994784e-01 2.74125665e-01 4.55744207e-01 1.26868607e-02\\n-8.45594630e-02 2.76556194e-01 1.79302901e-01 -4.03651029e-01\\n-7.89493471e-02 -1.45440530e-02 -1.67638719e-01 -2.56118029e-01\\n6.61221087e-01 4.70311224e-01 -3.73909771e-01 -1.84299320e-01\\n-1.31021008e-01 -1.62587881e-01 3.00996840e-01 -2.97108665e-02\\n-2.02810559e-02 -1.57279673e-03 3.60101700e-01 -1.34789839e-01\\n1.75051674e-01 5.27906895e-01 -2.49356419e-01 -3.34768146e-01\\n-5.01428731e-04 3.14254463e-01 -1.69089716e-02 5.31823039e-01\\n-1.87189013e-01 3.76650512e-01 2.87653785e-02 1.13245703e-01\\n-3.90682369e-02 2.07825482e-01 1.70008212e-01 1.62188672e-02\\n2.17348635e-01 -1.75838154e-02 3.64665270e-01 4.79844868e-01\\n2.73565114e-01 4.46380794e-01 3.06071222e-01 4.03758809e-02\\n3.45823705e-01 5.75276971e-01 4.45717961e-01 9.73124504e-02\\n1.36985537e-03 9.24473107e-02 1.56967610e-01 -4.67280224e-02\\n4.53935593e-01 4.00479674e-01 2.60039568e-01 9.10283685e-01\\n3.09452772e-01 3.01196098e-01 7.52448559e-01 -6.74628139e-01\\n-3.50534141e-01 1.12999886e-01 5.09638190e-01 -3.89514089e-01\\n-4.28924486e-02 1.26869678e-01 -2.59671867e-01 2.13427529e-01\\n-4.41465378e-01 -1.82240829e-01 -6.78235218e-02 1.30021393e-01\\n8.80836509e-03 -1.25349253e-01 -1.45963013e-01 -3.06160003e-02\\n-1.31057218e-01 -4.78902869e-02 -3.98667485e-01 -1.79053500e-01\\n-3.23105037e-01 -8.68530422e-02 -1.16847582e-01 -4.84530628e-02\\n-6.97971284e-02 -3.65601301e-01 -1.04942888e-01 8.44910443e-02\\n2.63711751e-01 -1.43990397e-01 -7.49049783e-02 -1.89881906e-01\\n1.54559299e-01 2.46782064e-01 5.05403936e-01 2.45271623e-02\\n1.17151335e-01 -1.13183372e-01 -2.51590520e-01 2.04557240e-01\\n1.24255978e-02 4.33531106e-02 2.74427496e-02 2.86226481e-01\\n-2.17277691e-01 -1.52460366e-01 9.32332128e-02 2.52654701e-01\\n-3.84038329e-01 -1.01764895e-01 -2.03062326e-01 1.69708639e-01\\n-6.85565174e-05 2.13620484e-01 -2.49168038e-01 -7.32086599e-04\\n-2.58284420e-01 -4.21968639e-01 3.57556701e-01 -1.87200338e-01\\n-1.20652474e-01 1.04714677e-01 3.30215126e-01 2.30165273e-01\\n-3.03181231e-01 -5.84395379e-02 -1.58848278e-02 2.80766129e-01\\n-1.51769117e-01 2.95411050e-01 -2.07622990e-01 -2.49111444e-01\\n-1.91986799e-01 2.01232508e-01 -1.88639939e-01 1.19465664e-01\\n6.23605549e-02 4.36593145e-01 1.21072732e-01 2.87248045e-02\\n4.37074542e-01 4.63828910e-04 -1.96431309e-01 -1.89627230e-01\\n-2.49043703e-01 -1.99305564e-01 -1.03700817e-01 7.71300495e-02\\n2.30564624e-01 -3.25194895e-01 4.56860475e-03 -1.26350388e-01\\n-6.62057102e-02 -3.92006218e-01 -5.77960536e-02 5.08145243e-02]]',\n", + " 'job_description': 'Our company Neural Concept uses Deep Learning algorithms to transform the world of Computer Assisted Design (CAD). We help companies speed up their R&D cycles, enhance their product performance and reduce computational costs. Deep Learning and AI have already revolutionised how images, sound and natural language are processed. Therefore, some problems that used to be considered intractable are now easily solvable on a large scale. Yet, Computer Assisted Design (CAD) and geometry processing are still using traditional methods. Our mission is to bring this revolution into the world of CAD using our unique Neural Network technology that can process 3D CAD models. We are working for global leaders in industries ranging from Automotive to Aerospace and with cutting edge sport teams from Sailing to Car-Racing, who trust our technology to ensure they stay ahead of the curve in their fields. Our culture Our company was born in a top notch AI lab at EPFL and the values of research are in our DNA. We are honest, pragmatic and passionate about innovation. We know that the greatest achievements cannot be the product of a single individual and we encourage our employees to strive for the success of the entire team. We work hard but try to enjoy our time at work and cultivate a great atmosphere. We do our best to respect everybody’s private life and are very conscious about work / life balance. Your mission As a Software Engineer, your main responsibilities will include: Developing the backend of our product, including design, implementation and testing of Neural Concept’s APIs Working together with Research Scientists to design and implement efficient algorithms and data structures in the core engine of our product Closely collaborating with Application Engineers to design and implement novel features required by our clients and partners Continuously working on improving stability and reliability of our products and tools Job description: Software Engineer Your profile Requirements: MSc or PhD degree (Computer Science / Math / Physics or other relevant field) Strong background in algorithms and data structures Strong programming experience in Python and / or C++ Familiar with Flask (or similar web frameworks) Familiar with cloud infrastructure stacks (Google Cloud / AWS or equivalent) Familiar with modern database and storage solutions (SQL and NoSQL) Would be a plus: Experience with containers (Docker and Kubernetes) Experience with Machine Learning Experience with modern Deep Learning frameworks (TensorFlow / PyTorch) Experience with GPU programming (ideally CUDA) Experience with CFD methods and simulation software (such as OpenFOAM) You get A competitive Swiss salary A generous equity compensation plan Flexible working hours Access to unlimited computational resources State-of-the-art equipment Stimulating environment with top-level researchers and engineers Comfortable office with open beverages and healthy food To Apply Send an email to: contact@neuralconcept.com Title: Software Engineer Candidate Please attach your CV and links to relevant resources (e.g. your Github)',\n", + " 'soft_skills': '[\"Research\", \"Collaboration\", \"Planning\", \"Reliability\", \"Innovation\"]',\n", + " 'hard_skills': '[\"MSC Software\", \"Kubernetes\", \"Tooling\", \"NoSQL\", \"Graphics Processing Unit (GPU)\", \"Accessioning\", \"Juniper Network Technologies\", \"Natural Language Processing\", \"Programming (Music)\", \"Computer Science\", \"Computer-Assisted Surgery\", \"Docker Container\", \"Web Frameworks\", \"Nvidia CUDA\", \"Industrialization\", \"Notching\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"E (Programming Language)\", \"Levelling\", \"Simulation Software\", \"Idealization\", \"Flask (Web Framework)\", \"Software Engineering\", \"Machine Learning Methods\", \"Github\", \"Beverage Products\", \"Storages\", \"Machine Learning Algorithms\", \"Geometry\", \"TensorFlow\", \"Google Cloud\", \"Deep Learning\", \"OpenFOAM\", \"Physics\", \"Foods\", \"Imaging\", \"Equities\", \"Data Structures\", \"Recurrent Neural Network (RNN)\", \"Resourcing\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Job Descriptions\", \"Sailing\", \"Cloud Infrastructure\", \"Custom Backend\", \"Cultivator\"]',\n", + " 'languages': \"['English']\"},\n", + " {'company_id': '68',\n", + " 'job_title': 'software engineer / kubernetes',\n", + " 'location': 'Zürich',\n", + " 'industry': 'Publishing',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-9.86396894e-02 3.53228837e-01 5.67326486e-01 3.63957249e-02\\n4.11444038e-01 -1.54789671e-01 -1.02825258e-02 3.75273436e-01\\n-1.09489605e-01 -3.61436069e-01 -1.27484068e-01 -2.00840175e-01\\n-2.10987758e-02 9.52819064e-02 9.87729430e-02 3.63007396e-01\\n1.37525052e-01 1.10589705e-01 -1.76684603e-01 2.60704219e-01\\n1.58464849e-01 -8.05613026e-02 1.65607065e-01 6.42816842e-01\\n3.86824906e-01 2.66366173e-02 -4.28315764e-03 3.82334217e-02\\n-2.43231893e-01 -2.74984568e-01 5.35701811e-01 1.72870532e-01\\n-2.02128589e-01 -3.24811488e-01 9.71850902e-02 -1.22270696e-02\\n-1.51039958e-01 -1.66761622e-01 6.61277249e-02 2.59619087e-01\\n-3.99658412e-01 -2.26555467e-01 8.92851651e-02 -2.46167164e-02\\n-2.31960461e-01 -3.20629090e-01 2.11927425e-02 -7.26859942e-02\\n1.23782150e-01 -9.61930528e-02 -5.79135120e-01 3.66553992e-01\\n-2.13437229e-01 -1.46317482e-01 3.15854549e-01 5.32991588e-01\\n-8.24891999e-02 -4.79702652e-01 -3.03395003e-01 -1.51844054e-01\\n6.08861223e-02 -2.08625227e-01 6.65153936e-02 -2.31660664e-01\\n2.91905969e-01 2.14463491e-02 -2.67569907e-02 3.28941286e-01\\n-6.91635668e-01 -1.72613878e-02 -2.27979168e-01 -1.59735546e-01\\n-2.58818299e-01 -1.25708237e-01 -2.01496348e-01 -1.32322893e-01\\n-1.46813557e-01 3.84239137e-01 9.33659896e-02 4.49809916e-02\\n-2.13775635e-01 2.79151410e-01 -1.96597308e-01 3.56353700e-01\\n2.63455778e-01 2.20443532e-01 1.60394460e-01 3.43518764e-01\\n-3.72574925e-01 3.65624726e-01 2.37283453e-01 -2.83255041e-01\\n3.18914801e-01 -7.92915374e-03 4.37403560e-01 1.10671923e-01\\n1.17043637e-01 4.85769100e-02 -1.37978867e-01 1.56821102e-01\\n2.50299215e-01 -1.47155181e-01 1.31804541e-01 -1.30578563e-01\\n-5.54054789e-02 -9.16475281e-02 -6.68351576e-02 3.09340835e-01\\n-2.00602442e-01 4.17501897e-01 2.48793095e-01 -1.57543525e-01\\n-1.23951837e-01 -4.73002315e-01 -1.05028406e-01 5.82843460e-02\\n-3.19957472e-02 1.51362702e-01 2.86295682e-01 2.13342682e-01\\n3.63012284e-01 1.10410206e-01 1.42234713e-01 8.16576838e-01\\n-2.34701131e-02 -8.18513334e-02 -2.53655016e-01 3.18368405e-01\\n9.24840942e-02 -2.44545594e-01 2.32423604e-01 2.95756489e-01\\n5.20852953e-02 -1.06155507e-01 -1.16933405e-01 2.98990518e-01\\n-3.46655138e-02 -2.58636832e-01 -3.16073775e-01 1.20410465e-01\\n-2.43355468e-01 -3.74621838e-01 5.19879162e-01 7.43166730e-02\\n1.84957951e-01 1.51498113e-02 -1.04693070e-01 -1.65667117e-01\\n-3.16648781e-02 1.75257295e-01 -8.08483660e-02 1.76391557e-01\\n-2.46911645e-01 -1.86413556e-01 -2.88301826e-01 1.57823950e-01\\n-7.57721812e-02 9.13605094e-02 -7.45673617e-03 -8.65919814e-02\\n3.65876615e-01 -8.12272355e-03 -2.32298151e-01 3.24595660e-01\\n-1.55297685e-02 -1.49815962e-01 -1.45775735e-01 3.34570229e-01\\n-1.49785161e-01 1.97962001e-01 -3.05489283e-02 -2.20910087e-01\\n4.47093397e-01 -2.68346611e-02 2.07813293e-01 -1.02096079e-02\\n2.94017404e-01 -8.27189609e-02 1.77478179e-01 1.32296905e-01\\n-5.97901762e-01 3.19129705e-01 -1.91639274e-01 2.61017047e-02\\n1.14954583e-01 2.59220749e-02 2.18464747e-01 -2.66264051e-01\\n2.67351028e-02 -7.70545527e-02 -4.03702557e-01 -4.70857352e-01\\n-1.21590711e-01 -7.42204301e-03 3.52233082e-01 -3.32233787e-01\\n-1.27752855e-01 2.14209899e-01 -4.47474450e-01 -6.46150559e-02\\n2.51695156e-01 2.36691028e-01 7.15972260e-02 5.04741967e-02\\n-1.73025236e-01 -3.23829234e-01 1.71359796e-02 -4.16661739e-01\\n-3.24671000e-01 2.22271290e-02 -3.33122373e-01 2.14627117e-01\\n1.39333799e-01 4.43055592e-02 -5.78242131e-02 1.64755136e-01\\n-2.28202790e-01 -1.35058090e-01 1.62339419e-01 1.26342416e-01\\n3.60177249e-01 -8.31727460e-02 -3.43623817e-01 4.77640778e-01\\n-1.58829302e-01 5.72451770e-01 2.00217709e-01 -8.05105031e-01\\n5.52977085e-01 3.03927064e-01 9.23681539e-03 -3.16989899e-01\\n5.90869367e-01 -3.15465957e-01 6.21235296e-02 1.31655172e-01\\n-2.81153172e-01 -3.37243319e-01 2.16755599e-01 -1.75419182e-01\\n-2.91525453e-01 5.46115637e-01 7.20381737e-02 5.03583029e-02\\n9.29163620e-02 -2.61773378e-01 -1.03731371e-01 -8.75549465e-02\\n-7.23192990e-02 -1.76573649e-01 -4.69672233e-01 2.83928346e-02\\n-1.52788594e-01 -4.98112053e-01 -2.16351487e-02 -3.61615479e-01\\n-1.74553543e-01 -3.99190009e-01 -1.37264594e-01 3.72618973e-01\\n2.15542004e-01 1.08110808e-01 7.24827358e-03 -5.01966402e-02\\n-1.70615315e-01 -6.47843242e-01 -1.28515959e-01 1.60230994e-01\\n4.11659837e-01 1.68365851e-01 8.09346884e-02 5.18935621e-02\\n-1.97065831e-03 6.04531646e-01 -1.38802931e-01 -9.09259543e-02\\n1.79975078e-01 1.98866859e-01 -1.18141174e-02 -5.82729839e-02\\n7.97336400e-02 2.74976432e-01 -2.34403461e-01 -4.00242284e-02\\n-1.81422710e-01 3.57470848e-03 4.18841898e-01 9.48151667e-03\\n-3.26967120e-01 -3.05485457e-01 5.26369698e-02 2.41083652e-01\\n-4.54461366e-01 -6.97428957e-02 6.03892624e-01 2.91152775e-01\\n2.18290444e-02 2.36755401e-01 3.11013073e-01 -8.69348049e-02\\n-1.80006817e-01 -1.09573744e-01 9.09840241e-02 9.13751647e-02\\n1.51696369e-01 -5.98091120e-03 -2.18380064e-01 -4.93604749e-01\\n-3.86651587e+00 -1.79341570e-01 1.96873397e-01 -2.62040436e-01\\n1.90999582e-01 -4.90829460e-02 8.46772194e-02 -1.63355526e-02\\n-2.01715946e-01 5.80407046e-02 -1.12979256e-01 -1.12677477e-01\\n1.11043625e-01 1.78158745e-01 1.46073988e-02 2.37694532e-01\\n8.23406056e-02 -2.87258714e-01 -3.24229039e-02 2.40174547e-01\\n-3.00104469e-01 -6.77762747e-01 3.59239101e-01 -1.28383905e-01\\n1.38692573e-01 1.62161693e-01 -2.25758493e-01 -9.42895785e-02\\n-1.14096597e-01 -2.19792783e-01 8.73420835e-02 -1.25576392e-01\\n-1.80443496e-01 3.73502403e-01 1.34097382e-01 -1.18699417e-01\\n2.01839134e-01 -3.84118289e-01 -1.25689730e-01 -4.75600511e-01\\n1.32493392e-01 -5.16155839e-01 1.25955176e-02 -6.98613673e-02\\n7.48347998e-01 -3.70802611e-01 1.74251143e-02 1.54234201e-01\\n1.66155338e-01 3.09762985e-01 2.75816340e-02 -6.56370819e-02\\n-2.20833272e-01 -2.71969855e-01 1.47756403e-02 -2.00067982e-01\\n4.07934874e-01 5.32673240e-01 -2.50871986e-01 -1.21539831e-02\\n2.32154392e-02 -1.82392716e-01 -3.68688613e-01 -3.70543063e-01\\n-5.53291477e-02 -1.24375232e-01 -7.47914195e-01 -3.72815043e-01\\n-7.06396848e-02 -2.29033306e-01 -2.87312776e-01 6.46420538e-01\\n-2.03403503e-01 -4.23287958e-01 -5.42914830e-02 -4.30124909e-01\\n2.05894098e-01 -2.12960109e-01 -2.96743419e-02 -1.40996605e-01\\n-2.05325410e-01 -3.61008078e-01 3.96445245e-02 -3.37753929e-02\\n-1.81393668e-01 -1.50582254e-01 1.48122106e-02 -2.45135501e-01\\n-2.07390621e-01 -5.34297228e-01 3.44224155e-01 1.49384812e-01\\n3.54635149e-01 1.08168744e-01 2.91438520e-01 2.38403276e-01\\n3.10482174e-01 -1.43529698e-01 5.19399904e-02 -3.52669686e-01\\n1.47616312e-01 -3.97958234e-02 4.99625385e-01 -3.03666621e-01\\n2.60145850e-02 2.21558109e-01 -1.82700396e-01 -1.26914948e-01\\n3.01947147e-01 2.81799771e-02 -1.37295090e-02 -2.76748747e-01\\n1.01296894e-01 -3.51991236e-01 -2.81909347e-01 3.14142369e-02\\n1.25688184e-02 5.65383375e-01 -1.74573027e-02 -4.37440842e-01\\n-2.22908393e-01 4.53334332e-01 -8.18141457e-03 -1.00599438e-01\\n-3.21921796e-01 1.25206500e-01 -1.76940545e-01 2.56424189e-01\\n1.02477387e-01 -1.76139981e-01 -1.92849398e-01 -1.35695696e-01\\n-7.08939284e-02 1.59004316e-01 3.02977592e-01 1.69395566e-01\\n-1.11120297e-02 -3.06526214e-01 -9.34800133e-02 1.21854812e-01\\n2.07979739e-01 2.63404042e-01 1.12347476e-01 -6.61246553e-02\\n-5.83111458e-02 3.39883626e-01 -2.42418572e-01 9.73672494e-02\\n-1.68855280e-01 4.45390008e-02 -5.46581745e-01 -3.08295012e-01\\n-1.32315859e-01 -2.99340367e-01 8.98948535e-02 2.51019359e-01\\n2.27855965e-01 -6.55286536e-02 -3.08736358e-02 -4.01280642e-01\\n4.32699710e-01 -6.50226697e-02 2.32101783e-01 2.19520569e-01\\n-1.57424565e-02 5.68058193e-01 5.64253367e-02 -9.45260525e-02\\n-1.57026261e-01 -1.53292995e-02 -2.95301735e-01 4.15496435e-03\\n-4.37271036e-02 -2.51033068e-01 -8.52349773e-02 4.57998425e-01\\n1.87186465e-01 -2.33891904e-01 -1.90754890e-01 2.70599931e-01\\n-3.60190831e-02 -2.10468397e-01 -1.50382176e-01 5.44195250e-02\\n3.34445059e-01 1.43303171e-01 2.68921524e-01 -3.84067535e-01\\n-8.10124446e-03 -9.14625451e-03 -2.20850073e-02 4.29813117e-01\\n2.43724167e-01 3.63999642e-02 6.48201630e-03 -2.69303113e-01\\n3.85994583e-01 -2.20154852e-01 -1.98586956e-01 -8.88039023e-02\\n2.21271776e-02 -1.08325772e-01 -3.97155464e-01 1.12120487e-01\\n-1.78362101e-01 -1.97919130e-01 3.90429087e-02 1.02648075e-04\\n8.82162303e-02 -3.92693281e-02 -4.66547489e-01 -2.58321464e-01\\n-3.53705794e-01 7.90080875e-02 -1.15440011e-01 -4.25542533e-01\\n9.73891318e-02 6.13474064e-02 -5.82636297e-01 2.79635042e-01\\n-2.56400108e-01 -4.65064272e-02 8.05442631e-02 8.18636566e-02\\n-3.36314619e-01 3.08165252e-02 1.78941399e-01 1.88131973e-01\\n-1.99829563e-01 -2.92583674e-01 2.32387111e-02 -1.03392053e+00\\n1.92708880e-01 -6.09105378e-02 -1.82005376e-01 3.64910625e-02\\n-1.28273359e-02 -6.52777791e-01 9.90936607e-02 -2.57608116e-01\\n-1.16646208e-01 5.15502170e-02 -2.37577230e-01 -5.06722331e-01\\n4.24770750e-02 -2.28927415e-02 -2.23666817e-01 3.52656960e-01\\n-3.96853060e-01 1.99562147e-01 -1.21000195e-02 1.34260118e-01\\n5.96545748e-02 -3.34889233e-01 1.46886110e-01 -3.28380436e-01\\n-4.10223722e-01 -1.01043165e-01 -2.94904262e-01 -2.10966185e-01\\n-1.00863352e-01 -3.13403100e-01 -2.65923403e-02 3.67886238e-02\\n3.06757301e-01 8.25990587e-02 -5.05405478e-02 -1.15442790e-01\\n-3.31759378e-02 -3.28601807e-01 1.37318999e-01 3.49960197e-03\\n-4.18374315e-02 -1.02986366e-01 2.08148196e-01 1.75102744e-02\\n1.32077962e-01 -3.43547195e-01 4.02048230e-01 -2.77153075e-01\\n-2.53161788e-01 -1.08336560e-01 5.64804710e-02 4.93663885e-02\\n2.95530796e-01 -5.68853796e-01 7.82246515e-03 4.19337541e-01\\n9.68805552e-02 1.53102741e-01 2.93222010e-01 -7.70132840e-02\\n-1.47469819e-01 2.90416569e-01 -2.96383768e-01 6.81734085e-02\\n6.68422580e-01 9.82751325e-02 1.01533450e-01 2.38755316e-01\\n8.42127353e-02 1.78761452e-01 3.39968354e-01 -3.04497126e-02\\n7.95682240e-03 2.60779887e-01 4.26736102e-03 -5.87939262e-01\\n-4.07676175e-02 -6.26401380e-02 -2.39319101e-01 -3.43370616e-01\\n6.55586720e-01 3.45989883e-01 -3.36533666e-01 -2.86600292e-01\\n-1.52257038e-02 -2.70355910e-01 1.88502416e-01 -9.84065980e-02\\n5.43959588e-02 -6.22875541e-02 4.88136858e-01 8.69847741e-03\\n1.75272822e-01 5.31277418e-01 -1.16050735e-01 -2.81378359e-01\\n-7.58035183e-02 1.01043098e-01 7.33466148e-02 4.78757232e-01\\n-1.00773476e-01 1.98942676e-01 1.10007832e-02 2.04501629e-01\\n-9.61248800e-02 9.33214426e-02 -4.52964604e-02 1.92339271e-01\\n-4.37920094e-02 1.68450192e-01 2.63604522e-01 4.08222944e-01\\n1.56363189e-01 5.42348742e-01 4.16393250e-01 1.56677648e-01\\n4.98144299e-01 3.10483813e-01 4.08534884e-01 2.02082470e-01\\n-2.96968874e-02 7.50399008e-02 -1.98692940e-02 -2.65627243e-02\\n1.71882227e-01 2.81599194e-01 2.12341230e-02 8.37382197e-01\\n3.54153395e-01 1.36229858e-01 5.64457119e-01 -5.40149212e-01\\n-3.59733850e-01 -5.24991862e-02 4.49542642e-01 -4.37585235e-01\\n1.50364721e-02 -1.21384375e-02 -2.65996277e-01 1.44403532e-01\\n-4.72278595e-01 -3.67757194e-02 -1.47116780e-01 -6.82415394e-03\\n1.01224817e-01 -5.94040938e-02 -2.14884415e-01 -2.47477498e-02\\n-1.42620608e-01 -1.85730848e-02 -3.47300500e-01 -1.11910738e-01\\n-2.41236418e-01 -7.17705041e-02 -7.46985003e-02 -1.85892373e-01\\n1.59625895e-02 -3.01559508e-01 -1.28483370e-01 3.00171301e-02\\n2.78268278e-01 -1.04735762e-01 -1.11930825e-01 -9.69903916e-02\\n2.85251409e-01 2.41066620e-01 4.90248948e-01 1.39178401e-02\\n1.52966663e-01 -1.50880069e-01 -1.82258964e-01 -4.34091575e-02\\n1.67298794e-01 1.56000182e-02 4.90716733e-02 4.26151901e-01\\n-3.72452915e-01 -7.92823732e-02 5.32288961e-02 3.45622510e-01\\n-4.28862542e-01 1.31345708e-02 -1.69181935e-02 1.71148688e-01\\n9.63133350e-02 1.60424173e-01 -2.71407425e-01 3.37740071e-02\\n-2.22881481e-01 -4.71496880e-01 3.30331683e-01 -2.32179135e-01\\n1.83764547e-02 5.96662983e-02 1.82329640e-01 9.52501968e-02\\n-2.32505053e-01 1.39892837e-02 6.30552694e-02 2.01587290e-01\\n1.84415430e-02 2.35088319e-01 -3.04267108e-01 -2.25467026e-01\\n-2.89972275e-01 2.08660096e-01 -8.36983249e-02 1.29145160e-01\\n-7.37960916e-03 2.35196725e-01 1.43932834e-01 5.78541607e-02\\n2.99762428e-01 -9.82260555e-02 -2.10702911e-01 -2.30772689e-01\\n-3.73177648e-01 -2.90136158e-01 -8.68161172e-02 -1.79977819e-01\\n1.95918977e-01 -3.98411334e-01 -7.55714029e-02 -2.89538922e-03\\n-1.27865911e-01 -3.52548569e-01 2.43788008e-02 -4.19341400e-02]]',\n", + " 'job_description': 'localsearch is the leading marketing and advertising partner for Swiss SME. We make our customers successful in the digital world. Within our department Products & Platforms we are looking for new colleagues: Software Engineer / Kubernetes We are Virtualizers, Software Engineers, Orchestrators, Coders and offer a highly skilled devops and software engineering team responsibility to provide and enhance services and APIs which are used by many teams and applications or external consumers two completely own managed Kubernetes clusters (on GKE/GCP) a close collaboration with software engineering teams to support them building new features and applications You are a tech enthusiast, cloud surfer, automator, networker and you impress us with a good understanding of mixed architecture of public and private clouds professional experience with Kubernetes, infrastructure as a code and cloud services networking, scripting (Bash), log and systems performance analysis skills a good understanding of web application architectures (web servers, relational/non-relational databases, caching tiers, fault-tolerant design) solid communications – even remotely -, team working and interpersonal skills fluent in English, German is a plus Important: We are only able to consider applicants with a valid permit to reside and work in Switzerland or citizens of EU-27. Direct applications are given priority. We will be happy to answer your questions via our WhatsApp chat +41 79 358 35 76. We, Sylvia Ramona Bertele and Colin Griehl, look forward to receiving your online application!',\n", + " 'soft_skills': '[\"Collaboration\", \"Communications\", \"Infrastructure\", \"Management\"]',\n", + " 'hard_skills': '[\"Web Applications\", \"Web Servers\", \"Advertisement\", \"Kubernetes\", \"Enhanced Messaging Service\", \"Platform Product Management\", \"Fault Tolerant Ethernet\", \"Consumables\", \"Google Kubernetes Engine (GKE)\", \"Private Cloud\", \"Software Engineering\", \"Cloud Services\", \"Applications Architecture\", \"Whatsapp\", \"Digitization\", \"Bash (Scripting Language)\", \"Receivables\", \"Google Cloud Platform (GCP)\", \"Relational Databases\", \"Customer Success\", \"Scripting\", \"Performance Analysis\", \"Network Automation\", \"DevOps\"]',\n", + " 'languages': \"['English', 'Marathi', 'Castilian', 'Irish']\"},\n", + " {'company_id': '97',\n", + " 'job_title': 'paid internship in information technology - data scientist -switzerland, 6 months (m/f)',\n", + " 'location': 'Geneva',\n", + " 'industry': '',\n", + " 'website': 'www.pg.com',\n", + " 'jobdescription_embedded': '[[-1.46625876e-01 2.97089696e-01 5.98815024e-01 5.52584045e-02\\n6.63380027e-01 5.05736098e-03 4.31522243e-02 2.83696324e-01\\n5.46164811e-05 -3.58041972e-01 1.07462779e-02 -2.28334308e-01\\n-3.17019373e-02 2.05632702e-01 1.95266500e-01 5.14388084e-01\\n2.72215247e-01 6.76571280e-02 -1.62535056e-01 4.03577745e-01\\n8.36891234e-02 -1.76670998e-01 1.46190464e-01 7.74135113e-01\\n5.82006931e-01 1.19468421e-02 -1.48957238e-01 3.10910121e-02\\n-2.50926822e-01 -2.35392228e-01 4.49550807e-01 1.04054168e-01\\n-2.38533258e-01 -3.36627632e-01 1.50475189e-01 7.38798529e-02\\n-3.67153525e-01 -7.34119341e-02 -1.45952046e-01 2.00175762e-01\\n-4.50292140e-01 -2.15128899e-01 -9.07714441e-02 2.74249017e-02\\n-3.05803537e-01 -3.77696753e-01 -1.83832064e-01 -4.45742644e-02\\n2.35005468e-02 7.14937001e-02 -3.84729803e-01 3.83611172e-01\\n-9.96154994e-02 -3.55441809e-01 1.70554936e-01 7.75690913e-01\\n3.60512547e-02 -3.82699996e-01 -4.66619432e-01 -3.58019590e-01\\n5.00244498e-02 -1.18224978e-01 2.10219175e-01 -2.97615707e-01\\n2.49363601e-01 -6.19977452e-02 9.08441190e-03 2.49283105e-01\\n-7.74306417e-01 -8.10025558e-02 -3.50942314e-01 -3.44854370e-02\\n-2.63833225e-01 4.28281724e-04 -4.77425992e-01 -1.77426815e-01\\n-4.91471179e-02 4.59216475e-01 1.73763677e-01 8.12058672e-02\\n-1.47140831e-01 1.75030917e-01 -2.15033948e-01 2.82546192e-01\\n1.45197511e-01 3.42268765e-01 2.76879787e-01 3.44273150e-01\\n-3.22444350e-01 3.64846021e-01 2.07499027e-01 -3.66537750e-01\\n3.12495232e-01 1.94600195e-01 4.33068842e-01 -2.06331871e-02\\n1.31348819e-01 9.49978679e-02 -2.88555801e-01 2.75159001e-01\\n1.73106253e-01 -3.75627130e-01 1.27045780e-01 -6.62551075e-02\\n-5.30463196e-02 8.75604525e-03 1.43937515e-02 6.98049143e-02\\n-3.27641428e-01 4.67955828e-01 -2.47577261e-02 -2.06768572e-01\\n-1.28039673e-01 -4.07353073e-01 -6.75275698e-02 -1.35964155e-02\\n-2.02514641e-02 3.33678365e-01 2.09505290e-01 1.76706225e-01\\n9.33874995e-02 -1.10308509e-02 1.15899965e-01 7.80142188e-01\\n-3.72556597e-02 8.78705978e-02 -2.43952289e-01 2.38540158e-01\\n2.13185579e-01 -2.48349726e-01 2.22224861e-01 1.78140461e-01\\n-4.17644083e-02 -1.19771257e-01 -2.71934420e-01 2.26071075e-01\\n-3.93532291e-02 -2.98456430e-01 -1.22461766e-01 2.15724915e-01\\n-3.12453546e-02 -5.93349516e-01 6.23180211e-01 -6.00920711e-03\\n1.74817964e-01 -1.53801233e-01 -8.74667987e-03 -7.88041055e-02\\n-3.92587446e-02 1.78148687e-01 5.46641387e-02 2.29622722e-01\\n-2.64808416e-01 -2.60687411e-01 -1.93305671e-01 1.11035876e-01\\n-5.14232397e-01 1.31877095e-01 -9.71325934e-02 -5.85907474e-02\\n1.97940797e-01 9.89877284e-02 -3.39746445e-01 2.64409065e-01\\n-1.99533522e-01 -1.75205648e-01 5.06825671e-02 4.54981089e-01\\n-2.98453212e-01 1.73153609e-01 3.02604809e-02 -1.45189315e-01\\n5.76241016e-01 2.69048870e-01 2.98345447e-01 5.83518222e-02\\n3.04198146e-01 -5.25966510e-02 9.29361507e-02 1.93861246e-01\\n-5.72419167e-01 3.68082583e-01 -1.84971407e-01 -2.90293515e-01\\n5.90719581e-02 -1.57388046e-01 3.55120540e-01 -2.30196908e-01\\n1.07912645e-01 -1.03712857e-01 -2.83419400e-01 -2.50865996e-01\\n-8.93106982e-02 8.74926895e-03 3.41615915e-01 -5.10797858e-01\\n3.15235667e-02 2.08735704e-01 -4.91805196e-01 -1.11982219e-01\\n1.20349154e-01 1.47516891e-01 8.50317720e-03 6.21916428e-02\\n-1.49881989e-01 -5.08829892e-01 -8.51720572e-03 -4.26416397e-01\\n-2.44404584e-01 5.41032106e-02 -3.79858851e-01 1.46746904e-01\\n8.54083821e-02 -7.63888843e-03 -1.31499872e-01 -1.75580662e-02\\n-2.43993342e-01 2.91733705e-02 4.59788516e-02 4.37083542e-02\\n1.94412410e-01 1.02460295e-01 -3.46118927e-01 4.83212531e-01\\n-2.63057172e-01 5.13956189e-01 1.93336755e-01 -9.28895354e-01\\n4.58037764e-01 1.99196383e-01 -2.73814946e-02 -3.12786549e-01\\n5.66497087e-01 -4.03608382e-01 -5.83759993e-02 2.07428142e-01\\n-2.47247845e-01 -2.88090110e-01 1.97575137e-01 -2.42127806e-01\\n-2.56387502e-01 4.97271359e-01 1.24795869e-01 1.70185894e-01\\n2.17580035e-01 -1.30556300e-01 -1.13175049e-01 9.42278802e-02\\n-2.03288078e-01 -2.46712834e-01 -6.38752759e-01 5.88763282e-02\\n-9.35888365e-02 -3.85042250e-01 -4.00742963e-02 -4.26307529e-01\\n-1.89873621e-01 -4.25766468e-01 -1.52606875e-01 1.03556961e-01\\n3.27954054e-01 1.92350075e-01 -3.72943953e-02 -1.26396656e-01\\n-3.67903337e-02 -6.43004119e-01 -1.35628700e-01 1.07975513e-01\\n4.16285336e-01 1.96093351e-01 1.97558045e-01 -4.68288623e-02\\n2.13901460e-01 6.62105620e-01 -2.02041864e-01 -3.02116960e-01\\n1.94451243e-01 1.33849382e-01 -1.59646291e-02 -1.56211421e-01\\n1.29034147e-01 2.59791553e-01 -2.90636390e-01 7.41391554e-02\\n-4.86015007e-02 4.76026535e-02 3.81776571e-01 1.57405958e-02\\n-2.13094845e-01 -2.35063344e-01 -5.05603068e-02 1.80122048e-01\\n-5.30554771e-01 -2.05156893e-01 6.16245389e-01 6.68901131e-02\\n9.75368321e-02 6.81096315e-02 3.40779871e-02 -1.02391634e-02\\n-1.38622478e-01 -1.73848212e-01 2.88696051e-01 7.95263499e-02\\n1.93889961e-01 1.01825446e-01 8.15253332e-02 -5.93242049e-01\\n-3.59176254e+00 -2.48596728e-01 3.81323993e-02 -1.66917682e-01\\n2.47269541e-01 -2.57904112e-01 8.75673071e-02 2.83037685e-02\\n-3.33868563e-01 1.42402589e-01 -2.11599514e-01 -2.06320465e-01\\n4.32894640e-02 1.23296291e-01 1.65230855e-01 1.99653119e-01\\n1.76120371e-01 -2.06816360e-01 -5.53095788e-02 5.16425669e-01\\n-1.50242686e-01 -6.90240443e-01 1.67507827e-01 7.63816684e-02\\n2.93795586e-01 1.34509757e-01 -3.26899260e-01 -1.29727662e-01\\n-3.15243065e-01 -1.80568129e-01 3.68714780e-02 -2.64436841e-01\\n-1.99155122e-01 3.90549362e-01 1.89543426e-01 -6.54361248e-02\\n1.08399168e-01 -3.96811515e-01 -9.94347185e-02 -3.82092357e-01\\n4.89588119e-02 -6.64116263e-01 -9.30344388e-02 -8.53366628e-02\\n7.15531588e-01 -1.71126708e-01 2.34689236e-01 1.68843389e-01\\n1.12720951e-01 1.33092115e-02 9.35156569e-02 -3.94485667e-02\\n-1.67037755e-01 -2.84408867e-01 -3.53569612e-02 -1.43924683e-01\\n5.60148001e-01 4.11696374e-01 -1.35116488e-01 -1.00722071e-02\\n1.24426112e-01 -1.34410173e-01 -5.08586526e-01 -3.38261008e-01\\n-1.67830929e-01 -1.66109636e-01 -7.41971791e-01 -5.14543295e-01\\n-1.54742867e-01 -1.34314358e-01 -1.57274857e-01 5.45019209e-01\\n-1.79529369e-01 -2.11379528e-01 -1.31653517e-01 -3.18932980e-01\\n3.24488401e-01 -4.58307452e-02 -5.60571104e-02 -1.34983733e-01\\n-2.93032020e-01 -5.28362989e-01 9.22956765e-02 4.87315357e-02\\n-1.90210760e-01 -2.72065759e-01 9.48319808e-02 -1.26954779e-01\\n-4.29644823e-01 -4.69773948e-01 4.69080836e-01 3.71185131e-02\\n2.59852260e-01 1.48498118e-01 3.88921678e-01 -1.08408919e-02\\n3.13204467e-01 -1.18586823e-01 -9.79972631e-03 -4.50827777e-01\\n2.70048492e-02 5.20006120e-02 4.35374081e-01 -2.35581741e-01\\n3.45722511e-02 -1.87900849e-02 -1.83354601e-01 -1.13277789e-03\\n3.81821930e-01 -7.77769387e-02 7.91429132e-02 4.24028225e-02\\n1.55009419e-01 -2.18639731e-01 -9.75505710e-02 4.69379090e-02\\n6.96843788e-02 6.49002552e-01 1.85191315e-02 -3.12850684e-01\\n-1.52622640e-01 3.64467859e-01 -1.74426585e-01 -7.59934541e-03\\n-2.29537308e-01 7.09246397e-02 -2.09646523e-01 3.93172234e-01\\n-1.50768962e-02 -1.90625027e-01 -2.19742730e-01 -2.31166974e-01\\n-1.20229721e-01 2.34180376e-01 3.71145666e-01 7.69891292e-02\\n-6.66841120e-02 -4.48181182e-01 -9.69401672e-02 2.09734321e-01\\n4.07551467e-01 3.46975744e-01 2.39197850e-01 -1.74763530e-01\\n-8.08972791e-02 2.39324912e-01 -2.75705546e-01 2.01958671e-01\\n-2.81147182e-01 9.61922407e-02 -6.47115350e-01 -3.07859242e-01\\n-2.92454481e-01 -3.65987003e-01 2.27803126e-01 4.46995854e-01\\n1.73977375e-01 -8.16863850e-02 1.17244929e-01 -4.70234692e-01\\n2.76065588e-01 5.64550841e-03 1.32812575e-01 6.18906617e-02\\n-1.31162271e-01 6.62208438e-01 -1.61584467e-05 -1.75784975e-01\\n-8.30981582e-02 2.02771183e-02 -2.29303136e-01 -1.55026212e-01\\n-1.04611188e-01 -5.42949975e-01 -1.52880341e-01 3.01126301e-01\\n2.12495103e-01 -2.83316851e-01 -2.26651222e-01 2.04502329e-01\\n-4.88832891e-02 -3.02814096e-01 -2.27337599e-01 -5.23123033e-02\\n4.16536510e-01 8.34350139e-02 2.82918096e-01 -5.33548594e-01\\n4.04903665e-02 -2.21000016e-02 -5.96635342e-02 4.77883399e-01\\n-1.15390830e-02 9.95267630e-02 8.45957268e-03 -1.07848123e-01\\n4.71558869e-01 2.66339630e-02 -1.21857315e-01 8.48133415e-02\\n8.04677680e-02 -2.62561500e-01 -3.85840058e-01 1.08799823e-02\\n7.25580901e-02 -3.01310390e-01 -1.01090008e-02 2.47946113e-01\\n-3.82981636e-02 8.68202746e-03 -5.66247344e-01 -2.37429291e-01\\n-3.27022493e-01 -8.59834254e-02 -8.01572762e-03 -5.54027140e-01\\n-1.54837817e-01 -1.06725030e-01 -5.16012490e-01 2.16088504e-01\\n-2.49270927e-02 -1.53991118e-01 9.96070877e-02 5.65100461e-02\\n-1.35449141e-01 -1.44496113e-01 1.98386222e-01 2.46859506e-01\\n-2.70817250e-01 -2.85278678e-01 3.21337394e-02 -8.64739776e-01\\n1.92481965e-01 1.58444226e-01 -1.06236815e-01 1.45081952e-01\\n-9.26926211e-02 -5.58218122e-01 1.55765414e-01 -4.11275804e-01\\n-1.17287561e-01 -1.42168880e-01 -2.97917366e-01 -4.38430250e-01\\n1.23975128e-01 1.14716120e-01 -2.57658035e-01 4.46679115e-01\\n-3.03191781e-01 3.25460553e-01 -9.80649516e-02 8.86136442e-02\\n7.36139566e-02 -2.16459244e-01 1.51887894e-01 -3.78057718e-01\\n-3.78298789e-01 -1.50157705e-01 -2.87086487e-01 -2.09018663e-01\\n-1.31245881e-01 -1.72453046e-01 -1.40407562e-01 4.29235771e-02\\n3.61408472e-01 2.22641379e-01 -1.67668447e-01 -3.22013438e-01\\n4.70559187e-02 -4.42969680e-01 8.78485888e-02 -8.26380402e-02\\n-1.44174933e-01 -1.02946624e-01 1.53302610e-01 6.86193258e-02\\n1.73456222e-01 -2.84451038e-01 3.90342325e-01 -4.53755200e-01\\n-1.99048325e-01 -1.58408299e-01 4.78072539e-02 5.20601347e-02\\n2.36808002e-01 -4.37245131e-01 2.40360387e-02 3.00536931e-01\\n1.04633503e-01 1.85837209e-01 3.52854908e-01 -1.19050696e-01\\n-1.11401640e-01 2.57135093e-01 -3.34527433e-01 1.61557928e-01\\n8.68196130e-01 1.19382471e-01 1.33350745e-01 2.42692173e-01\\n2.13040769e-01 2.20479786e-01 4.49616879e-01 2.50931010e-02\\n-9.78141949e-02 3.40593398e-01 1.26733139e-01 -4.30560350e-01\\n-6.33596629e-02 -8.00765455e-02 -9.54978541e-02 -3.31881583e-01\\n7.45690346e-01 3.20768327e-01 -3.01714629e-01 -2.01066017e-01\\n-2.35518783e-01 -1.19151413e-01 2.28711292e-01 -3.36469971e-02\\n-2.03638170e-02 1.68020818e-02 4.72643465e-01 -1.11908972e-01\\n2.39745766e-01 5.13241053e-01 -2.08051294e-01 -2.39870399e-01\\n-1.21385135e-01 2.08733857e-01 6.87775910e-02 5.58869839e-01\\n-3.44918430e-01 3.11169803e-01 2.14506872e-02 8.84221196e-02\\n-1.77302390e-01 1.18435226e-01 2.28702664e-01 1.35135904e-01\\n1.52885109e-01 1.33021683e-01 4.85519469e-01 4.08172131e-01\\n2.55011618e-01 4.62241113e-01 3.77689481e-01 9.35338810e-03\\n3.93570542e-01 4.95040715e-01 2.62960136e-01 4.06806581e-02\\n1.72233656e-02 1.14742205e-01 1.69294789e-01 -1.04481116e-01\\n2.74797320e-01 4.19516504e-01 3.12785879e-02 8.27302694e-01\\n3.53839278e-01 3.36508811e-01 6.71891451e-01 -7.20949709e-01\\n-3.90495062e-01 -1.35154407e-02 6.23018861e-01 -3.08391839e-01\\n6.83952495e-02 2.25676432e-01 -1.19365104e-01 2.58398116e-01\\n-5.16853809e-01 -2.27873415e-01 -8.28940421e-02 3.38437445e-02\\n2.53287069e-02 -1.43886864e-01 -2.09054083e-01 1.88411236e-01\\n1.72548406e-02 -6.04042821e-02 -4.04927254e-01 -1.19684309e-01\\n-2.01444566e-01 -3.11949085e-02 -1.80023223e-01 -6.10500202e-02\\n-6.67620301e-02 -2.43953198e-01 -4.77997437e-02 -9.84043628e-02\\n2.43683174e-01 -1.48762807e-01 -2.26418987e-01 -1.12095363e-02\\n2.98861265e-01 4.46163565e-02 5.58758318e-01 -9.53576788e-02\\n1.06483690e-01 -1.55647799e-01 -2.48059124e-01 3.99314985e-03\\n2.13611126e-01 -2.05972996e-02 -1.02880910e-01 3.25925052e-01\\n-3.33385944e-01 -2.61040270e-01 -4.54178080e-05 1.45592868e-01\\n-4.17892188e-01 3.59568745e-02 -6.96446598e-02 2.32273042e-01\\n1.17788985e-01 1.68844461e-01 -2.08954096e-01 -9.81199294e-02\\n-1.19740486e-01 -5.60607910e-01 1.52102232e-01 -4.64368239e-03\\n-2.15597123e-01 5.05738854e-02 2.60670125e-01 1.54831007e-01\\n-2.74442494e-01 -7.44385049e-02 -1.49428099e-01 9.48665440e-02\\n5.17737716e-02 1.21388718e-01 -1.08646825e-01 -2.95511276e-01\\n-2.38656044e-01 2.55911589e-01 -1.62446368e-02 2.86795884e-01\\n5.60653247e-02 3.79945576e-01 6.96440935e-02 2.49366552e-01\\n2.62124538e-01 9.03570801e-02 -2.53754497e-01 -2.08785594e-01\\n-2.16483608e-01 -1.60309911e-01 -1.24970056e-01 -3.94104384e-02\\n2.22455859e-01 -2.52866566e-01 -1.00973621e-02 -2.42963284e-01\\n-2.37086371e-01 -4.39810336e-01 5.09778224e-02 -1.58611730e-01]]',\n", + " 'job_description': 'Do you have passion to transform P&G\\'s brand building while enabling better decision-making through advanced analytics and machine learning; enhance business results and improving consumer\\'s lives every single day? We are looking for Data Scientist Interns (Female or Male) 6-months - Based in Geneva CompensatedYour responsibilities will be:Get into the details on Marketing and Data Science, using artificial intelligence, data visualization and analytic engines, release business building insights, generating plans from our data to serve consumers worldwide in better way. You will learn through from data we generate from 1.5TB individual consumer touchpoints daily, and information on 500MM consumers\\' behaviors. You will answer business questions and propose solution for business problems by applying machine learning techniques and automatize analysis of consumer touch point information or other deep learning data, explore their patterns and recommend marketing activities.You will discover and invent next-generation business analytic tools for our category analysts and business partners, own our new applications from design-thinking up to user adoption.Full-stack development of innovative and creative tailor-made algorithms that will drive real-life business recommendation and activation, using your favorite tools or environment.Team up with technology partners to translate your innovations into robust, scaled, analytic solutions Collaborate actively and effectively with the data science team, other function\\'s partners and senior management to achieve your project\\'s objectives.Participate to P&G\\'s analytic capability program at different levels of skill and seniority To qualify for this role you should possess the following: Doing a Master Degree in a quantitative field (Operation Research, Computer Science, Engineering, Applied Math, Statistics, Analytics, Data Science, Life-science etc)Passion to try new things, learn quickly and work well with diverse backgrounds.Excellent interpersonal skills, self-motivated, dynamic and can-do attitudeEnthusiasm and curiosity about the intersection of business, technology and data.Very good English (written and oral) and you should have knowledge of Business Intelligence Tools such as KNIME, Tableau, SpotfireBig Data Ecosystem: Hadoop, Spark, MapReduce, SQL, HiveScientific Computing: R, Python, C++, Java, ScalaAdvanced Analytical models (Bayesian, Optimization (global, local, stochastic methods), Uncertainty Quantification, etc.) We offer: Competitive compensationOwn your responsibilities and project leadership as of day 1Dynamic, Diverse, Multi-cultural and Flexible working environment\\'Vibrant Living\\' offering on-site: Gym / Yoga / Sports-teams, Hair-Salon, Canteen, Agile workspace design, Flex-work arrangements possible and \"new-hire network activities\"Help with housing, subsidized meals, free public transport in Geneva and access to our company store, are some examples of our benefits.Equal Opportunities for everybody #WeSeeEqual #LikeAGirl #GABLE #P&GJob Location: Geneva, Petit-Lancy Due to legal restrictions, immigration sponsorship is available only for EU/EFTA nationalities. All candidate with non EU/EFTA nationalities are encouraged to check out opportunities in countries where they can obtain a work permit.Further helpful information to make the application process smooth: Just apply via clicking the button belowHave your CV in English ready to attachPlease note individual attachments cannot be larger than 500 KB ',\n", + " 'soft_skills': '[\"Self-Motivation\", \"Leadership\", \"Collaboration\", \"Planning\", \"Management\", \"Decision Making\", \"Innovation\", \"Creativity\", \"Curiosity\"]',\n", + " 'hard_skills': '[\"Business Analytics\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Data Explorers\", \"Agility\", \"Accessioning\", \"Business Intelligence Tools\", \"Computer Science\", \"Life Sciences\", \"Analytics\", \"Consumables\", \"Statistics\", \"Bayesian Modeling\", \"Branding\", \"Business Partnering\", \"KNIME\", \"Activism\", \"MapReduce\", \"Python (Programming Language)\", \"Yoga\", \"Operations Research\", \"Levelling\", \"Translations\", \"Hostile Work Environment\", \"Business Intelligence\", \"Data Visualization\", \"Machine Learning Methods\", \"Data Science\", \"Uncertainty Quantification\", \"Release Engineering\", \"Equalization\", \"R (Programming Language)\", \"Artificial Intelligence\", \"Deep Learning\", \"Design Thinking\", \"Adoptions\", \"Public Transport\", \"Subsidized Housing\", \"Algorithms\", \"Business Technologies\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Touchpoint\", \"New Hire Orientations\"]',\n", + " 'languages': \"['English', 'Western Frisian', 'Gaelic', 'Kannada', 'Tigrinya']\"},\n", + " {'company_id': '96',\n", + " 'job_title': 'study data manager',\n", + " 'location': 'Basel',\n", + " 'industry': 'Staffing & Outsourcing',\n", + " 'website': 'www.proclinical.com',\n", + " 'jobdescription_embedded': '[[-3.31524819e-01 3.49949777e-01 3.49553525e-01 1.24307033e-02\\n6.97148919e-01 -9.62627828e-02 1.81974381e-01 1.72352239e-01\\n-4.15377505e-03 -8.51923078e-02 -1.68325186e-01 -2.97012389e-01\\n-1.93288047e-02 1.24176189e-01 6.58815503e-02 4.42799866e-01\\n2.42713511e-01 -2.34636277e-01 -1.00885622e-01 2.61742353e-01\\n8.82496089e-02 -2.03341305e-01 2.10449845e-03 5.77850223e-01\\n2.42068082e-01 1.70513079e-01 -7.68862069e-02 -1.30269870e-01\\n-1.98968083e-01 -1.84003979e-01 6.44303203e-01 7.42273256e-02\\n-2.21562058e-01 -2.78077602e-01 1.44282147e-01 2.38677099e-01\\n-1.81000695e-01 8.11267644e-02 -3.12911600e-01 2.07597405e-01\\n-6.13135695e-01 -2.67194957e-01 -1.76371112e-01 -5.50515652e-02\\n-2.40509838e-01 -3.54324162e-01 3.91126990e-01 1.75866298e-02\\n4.64228764e-02 1.64468661e-01 -4.11731273e-01 1.69168442e-01\\n-3.04784268e-01 -2.58965641e-01 2.98015356e-01 5.56511164e-01\\n1.07132019e-02 -6.96596026e-01 -4.90444183e-01 -3.93821120e-01\\n-1.69254899e-01 -4.53772433e-02 3.06141078e-01 -1.56291053e-01\\n1.67473137e-01 -1.21470511e-01 1.12709329e-01 2.68504947e-01\\n-5.85149825e-01 -2.22167253e-01 -4.41695184e-01 1.09524563e-01\\n-1.05737843e-01 1.06307290e-01 -2.58596539e-01 -1.74744353e-01\\n6.55366853e-03 3.36392939e-01 7.07046092e-02 1.46935940e-01\\n-2.08653659e-01 3.53976637e-01 -2.89836645e-01 3.14936608e-01\\n1.71420336e-01 3.24643105e-02 2.47908145e-01 2.81910121e-01\\n-4.27637458e-01 4.72710133e-01 3.46086025e-01 -3.05343479e-01\\n2.22024828e-01 1.22975141e-01 2.35915199e-01 4.06875670e-01\\n3.04261386e-01 2.09793881e-01 -1.44505441e-01 -5.92022203e-02\\n2.58431077e-01 -1.15234293e-01 1.15407065e-01 -7.58291334e-02\\n-1.74662560e-01 -1.61325723e-01 7.24471360e-02 6.61937296e-02\\n-4.41393495e-01 4.87661541e-01 1.24370821e-01 -2.57276148e-01\\n-2.49921530e-01 -4.63607371e-01 -2.42998078e-03 -6.13937862e-02\\n-6.61478937e-02 8.46880823e-02 5.03659174e-02 3.22746694e-01\\n2.20522702e-01 -9.51053202e-02 1.68497816e-01 7.15015888e-01\\n-2.11128183e-02 -8.71493295e-02 2.28300914e-02 2.63413757e-01\\n-8.74913782e-02 -1.01526216e-01 1.31414562e-01 2.43878916e-01\\n-3.92640606e-02 -7.50325546e-02 -5.26450276e-01 3.46274137e-01\\n-5.77269308e-02 -2.82661915e-01 -1.78406075e-01 3.63435984e-01\\n5.97716421e-02 -7.46770144e-01 5.50760984e-01 -1.23036519e-01\\n1.47283122e-01 -9.85042825e-02 1.09380871e-01 -1.58711448e-02\\n2.14727856e-02 2.16870070e-01 4.16857451e-01 8.92951116e-02\\n2.69702245e-02 -3.55302423e-01 -1.50722980e-01 1.17154732e-01\\n-2.89504349e-01 2.04615325e-01 -3.00889969e-01 -2.94147372e-01\\n3.24575156e-01 1.65966168e-01 -4.71615732e-01 3.44216466e-01\\n6.40601590e-02 6.90313876e-02 -2.11716980e-01 5.94692588e-01\\n-2.42825091e-01 2.33186092e-02 -9.06814486e-02 -2.09223226e-01\\n6.47827744e-01 -4.16174233e-02 4.41749692e-01 1.26822218e-01\\n1.74598724e-01 -7.74406642e-02 4.12989974e-01 -9.69531462e-02\\n-5.83741665e-01 2.78391063e-01 -1.20173663e-01 -8.95036310e-02\\n3.53684366e-01 -1.54002279e-01 3.88104230e-01 -3.34725440e-01\\n2.30575092e-02 -1.27681971e-01 -5.39506435e-01 -3.29957962e-01\\n5.02196737e-02 -8.02319646e-02 2.77695030e-01 -4.32711542e-01\\n2.76629049e-02 1.87856525e-01 -5.82840800e-01 -3.82362127e-01\\n2.16087162e-01 3.15499663e-01 2.40763381e-01 1.82237029e-01\\n-1.46484271e-01 -6.78692698e-01 1.56474262e-01 -5.18076181e-01\\n-3.90299290e-01 2.03190863e-01 -3.69071007e-01 6.84852246e-04\\n-1.39201671e-01 2.97817230e-01 -1.43972695e-01 -8.89808126e-03\\n-2.19011962e-01 2.96599865e-02 3.88649479e-02 -9.54195261e-02\\n7.52427429e-02 8.70888755e-02 -5.05596697e-01 6.04990065e-01\\n-3.88215572e-01 6.56186819e-01 1.38978139e-01 -6.18200243e-01\\n4.68496382e-01 5.13150811e-01 -1.42343551e-01 -3.10976565e-01\\n4.70276266e-01 -3.89969945e-01 -5.10627627e-02 1.51075989e-01\\n-2.92710066e-01 -1.88154295e-01 1.42030373e-01 -4.24789071e-01\\n-2.80120432e-01 7.24344850e-01 2.29538679e-01 -9.85154286e-02\\n3.86638403e-01 -8.05621445e-02 -1.35033816e-01 -1.67649109e-02\\n-3.49824816e-01 -2.15875357e-01 -6.49724722e-01 4.46765348e-02\\n1.50405541e-02 -4.09716964e-01 -1.44553810e-01 -4.82509255e-01\\n-1.13054365e-02 -3.41841072e-01 -1.82907373e-01 -7.73018152e-02\\n5.09112775e-02 9.76502448e-02 8.29196572e-02 -8.59726220e-04\\n-1.22393079e-01 -7.04892993e-01 1.31307781e-01 2.06306130e-01\\n8.76759365e-02 2.06978142e-01 2.04727724e-01 -2.75974810e-01\\n-1.09916180e-03 7.29109526e-01 -5.90369582e-01 -1.33115381e-01\\n2.69396007e-01 -2.12421585e-02 -7.87583739e-02 -2.01209694e-01\\n1.50591984e-01 2.65952587e-01 -3.42995822e-01 1.82316303e-01\\n5.56464493e-03 -1.29657000e-01 4.58256990e-01 -2.58988380e-01\\n-1.77396953e-01 -1.31125167e-01 -1.46930918e-01 1.38114125e-01\\n-3.45199704e-01 -3.03463697e-01 3.82526398e-01 1.13744577e-02\\n3.45918238e-02 3.12777370e-01 1.39896125e-01 1.37543425e-01\\n-3.93943757e-01 -3.42389941e-01 1.94286197e-01 2.05614388e-01\\n9.31160450e-02 1.36454180e-01 -8.89819413e-02 -6.07586265e-01\\n-2.60808086e+00 -8.00571367e-02 1.33437738e-01 -1.09871343e-01\\n3.91027629e-01 -2.26982906e-02 1.35468364e-01 -7.98570365e-03\\n-5.06961644e-01 1.90136507e-02 -8.16321373e-02 -3.83249640e-01\\n2.12103352e-02 3.08317780e-01 1.35226309e-01 9.12758783e-02\\n-1.25731617e-01 -3.84415150e-01 1.11392312e-01 3.52905422e-01\\n-2.98401356e-01 -7.94328809e-01 1.02313451e-01 3.69797535e-02\\n1.93181157e-01 3.22589934e-01 -5.00702322e-01 -1.34245038e-01\\n-1.74642533e-01 -2.94190228e-01 1.71358883e-01 -2.89869457e-01\\n-2.53457248e-01 5.68370819e-02 -6.65202877e-03 1.18630484e-01\\n-1.63687930e-01 -2.88962960e-01 -1.53128609e-01 -5.43212831e-01\\n2.70789787e-02 -6.77858591e-01 -9.18631032e-02 -2.86679696e-02\\n6.01124883e-01 -3.21475640e-02 3.16317707e-01 5.24176657e-02\\n8.63289908e-02 1.90357044e-01 3.08495224e-01 -2.46811211e-02\\n-3.34919274e-01 -2.25329548e-01 -8.30509514e-02 -4.01019603e-02\\n4.82939482e-01 2.32700646e-01 -3.08049619e-01 -6.66296780e-02\\n1.59188509e-01 -4.13976938e-01 -4.30489957e-01 -1.85080782e-01\\n-6.12040982e-02 4.42692563e-02 -5.77013850e-01 -3.12557667e-01\\n-2.53576487e-01 -1.41150564e-01 -8.57610479e-02 7.80433536e-01\\n-4.76585090e-01 7.58129731e-02 -1.92906067e-01 -5.76383233e-01\\n3.21000636e-01 -2.37415105e-01 1.68366972e-02 -1.53006554e-01\\n-2.23804891e-01 -3.68396044e-01 3.40042889e-01 -4.55976427e-02\\n-1.85459703e-01 -1.02942102e-02 -5.48475683e-02 1.01747632e-01\\n-3.68167669e-01 -4.60964501e-01 1.18382484e-01 5.87089173e-02\\n2.36953527e-01 1.07485622e-01 3.08176279e-01 -3.36951673e-01\\n4.73425150e-01 2.44313002e-01 1.78045660e-01 -3.91600758e-01\\n1.79128312e-02 2.56984122e-02 4.79068637e-01 -7.51007944e-02\\n-1.62735522e-01 5.01831770e-02 -3.71727407e-01 8.69748890e-02\\n1.05293550e-01 -1.49007961e-01 2.42939498e-02 -1.52740926e-01\\n3.57620597e-01 -3.85508478e-01 -4.39854451e-02 -1.95259094e-01\\n1.98363617e-01 8.68182719e-01 -1.25050932e-01 -2.84735799e-01\\n-1.51141137e-01 4.12705988e-01 -1.18386164e-01 -1.16010889e-01\\n-1.28943592e-01 -7.82286748e-02 -2.29302108e-01 1.80424690e-01\\n1.39109507e-01 5.11954203e-02 -1.86409205e-01 -4.55912622e-03\\n-1.89690918e-01 2.94957161e-01 2.80374289e-01 1.41301155e-01\\n-3.37333344e-02 -3.80637407e-01 -1.59803957e-01 3.56929481e-01\\n1.65355325e-01 4.13019776e-01 1.96328670e-01 -3.96638632e-01\\n-5.52940071e-02 2.86819339e-01 -1.55081213e-01 4.81348991e-01\\n-2.64102101e-01 2.83276320e-01 -7.35812008e-01 -2.74355084e-01\\n-2.97408521e-01 -3.16880882e-01 1.82039410e-01 5.58457375e-01\\n1.41611025e-01 -1.74299702e-01 2.90054649e-01 -6.00057721e-01\\n1.02261215e-01 3.13589051e-02 1.22008495e-01 -1.43700004e-01\\n-3.97816181e-01 7.78638482e-01 8.72379541e-02 -1.28028065e-01\\n-6.23687953e-02 -9.13006514e-02 -2.33835638e-01 -3.74368459e-01\\n2.25805908e-01 -3.53459656e-01 -2.89321959e-01 5.23998141e-01\\n9.38236564e-02 -6.97485507e-02 -4.86815758e-02 4.31032360e-01\\n-1.81372091e-02 -2.29624867e-01 -3.86834741e-01 -2.08060145e-01\\n1.15458250e-01 1.71569765e-01 4.41274941e-01 -3.64025623e-01\\n1.75071314e-01 -9.41046029e-02 1.63726419e-01 3.77438277e-01\\n5.39955497e-03 5.54532483e-02 -2.27269351e-01 -2.85315216e-01\\n6.51346087e-01 -1.40881479e-01 -8.28415900e-02 2.81268120e-01\\n1.48548409e-01 -2.90645540e-01 -2.85153091e-01 7.05344379e-02\\n-3.45429629e-02 -2.73450196e-01 -1.69528335e-01 3.44270587e-01\\n2.47345325e-02 -4.07866985e-02 -4.98789340e-01 -9.38662887e-02\\n-3.43793571e-01 1.61649242e-01 -6.66545033e-02 -7.50695288e-01\\n-9.44775045e-02 -1.38604119e-01 -4.66480434e-01 2.78042912e-01\\n-5.59910648e-02 4.82434519e-02 2.17639834e-01 -5.33989407e-02\\n-1.98767453e-01 -3.10306668e-01 1.09349072e-01 1.10686094e-01\\n-3.70696485e-01 -2.10398227e-01 -6.36888891e-02 -8.55894923e-01\\n1.20988645e-01 8.54925066e-03 -1.91059113e-01 1.08581878e-01\\n8.20706859e-02 -7.50076175e-01 3.49353671e-01 -2.06270158e-01\\n-2.04424694e-01 9.80736315e-02 -3.71737152e-01 -2.84324288e-01\\n2.80309975e-01 9.80720371e-02 -2.21868739e-01 2.03347325e-01\\n-2.48651475e-01 4.17223215e-01 -3.79149541e-02 2.00765096e-02\\n1.14542559e-01 -8.88463706e-02 2.34376252e-01 -3.17462862e-01\\n-2.79474616e-01 -1.47920460e-01 -2.98755288e-01 -1.68979079e-01\\n-1.35097474e-01 -2.95600817e-02 3.05388942e-02 4.95139509e-04\\n5.99328160e-01 1.65683374e-01 -1.23354644e-01 -5.36056459e-02\\n1.13171503e-01 -4.78025794e-01 2.61236966e-01 -4.77945864e-01\\n1.25835508e-01 -3.19795221e-01 2.26288676e-01 1.95404246e-01\\n2.16505229e-01 -3.63524139e-01 4.15618479e-01 -3.45379710e-01\\n-5.83816528e-01 -2.88049996e-01 -1.92467362e-01 -1.18353575e-01\\n3.67934048e-01 -5.35579622e-01 -7.83097446e-02 2.98735499e-01\\n4.35884669e-02 -2.12338403e-01 2.94016927e-01 -2.57494777e-01\\n-9.78772417e-02 1.21116698e-01 -4.97018516e-01 2.16785863e-01\\n6.99663877e-01 4.22152460e-01 1.08216599e-01 2.91337878e-01\\n1.03582859e-01 8.83138478e-02 4.14262354e-01 -5.46375141e-02\\n-1.26210198e-01 3.47385645e-01 8.70099291e-02 -5.32845855e-01\\n-2.61877358e-01 1.13784624e-02 -6.09844178e-03 -3.40207130e-01\\n6.47834957e-01 1.35181785e-01 -6.09425604e-01 -2.72691190e-01\\n-3.69432062e-01 -2.45928586e-01 5.65194428e-01 1.80000737e-01\\n5.92014343e-02 1.27139658e-01 4.95284587e-01 7.07792342e-02\\n4.86433148e-01 6.10175371e-01 1.09998882e-02 -1.26827545e-02\\n3.58995311e-02 4.43764329e-01 4.67286110e-02 3.73436242e-01\\n-3.31929252e-02 2.12092221e-01 -4.87201735e-02 2.02450193e-02\\n-1.77657709e-01 -5.62900677e-03 2.14599267e-01 -1.83366463e-02\\n2.83345524e-02 1.73521146e-01 5.98689318e-01 3.07528198e-01\\n2.93187380e-01 1.81946516e-01 2.24820793e-01 -1.60845160e-01\\n6.13187790e-01 6.82398379e-01 2.98348874e-01 -1.31056644e-03\\n2.54011571e-01 3.03886831e-01 8.67110789e-02 -6.21489584e-02\\n2.97892541e-01 4.53082681e-01 -1.96429506e-01 8.15737605e-01\\n2.89435357e-01 3.74689877e-01 4.61982489e-01 -6.48551345e-01\\n-2.35462904e-01 -1.37455329e-01 5.58855534e-01 -4.97563243e-01\\n1.48719832e-01 2.27020115e-01 1.13752913e-02 4.27005231e-01\\n-4.04996186e-01 -2.64273107e-01 1.78188697e-01 3.16504687e-02\\n1.83755130e-01 -1.62961811e-01 -2.75166314e-02 1.30359232e-01\\n-1.38214022e-01 -2.24186748e-01 -2.91271210e-01 -4.62571859e-01\\n-2.24224150e-01 8.36958960e-02 -1.52229220e-01 -8.35377574e-02\\n-3.97115946e-06 -1.98088199e-01 2.03573219e-02 -1.67784840e-01\\n3.61723691e-01 -2.24600807e-01 -2.12027252e-01 -1.54683068e-01\\n4.22200680e-01 2.32697815e-01 8.31992507e-01 -2.29415148e-01\\n1.46350414e-01 -4.88995552e-01 -2.44119525e-01 9.03461426e-02\\n1.68313161e-01 4.13337611e-02 -6.15576841e-02 4.03380156e-01\\n-1.51013762e-01 -1.64926365e-01 3.11780646e-02 9.79315639e-02\\n-4.07636732e-01 -8.44988450e-02 -3.89219075e-02 5.97206391e-02\\n-1.09094620e-01 8.07736889e-02 -2.77116746e-01 -1.09640822e-01\\n-1.01296023e-01 -4.59431112e-01 2.22792849e-01 -6.75464422e-03\\n-4.52793121e-01 -1.59545735e-01 5.71638227e-01 3.44032347e-01\\n-1.60465047e-01 -5.26852496e-02 -3.22000027e-01 -4.71943505e-02\\n6.60941005e-02 3.34231436e-01 -1.30770594e-01 -1.74656734e-01\\n-3.90776277e-01 2.71104932e-01 -1.97165206e-01 6.67630583e-02\\n3.84905338e-01 3.51226777e-01 -1.07813783e-01 8.56804848e-03\\n5.33534229e-01 -1.39734015e-01 -2.54932672e-01 -2.78193057e-01\\n-7.74229094e-02 1.81188434e-03 -1.85680419e-01 -2.17015371e-01\\n6.71564639e-02 -2.41453752e-01 -2.29260743e-01 -4.44967330e-01\\n6.13022111e-02 -3.48518848e-01 -7.74630234e-02 -2.23582871e-02]]',\n", + " 'job_description': 'A leading international healthcare company is seeking to recruit a Study Data Manager to their team in Switzerland. The organisation is a global provider of automated laboratory instruments and solutions that develops, produces, markets, and supports automated workflow solutions that empower laboratories to achieve more. This vacancy is an excellent opportunity to work with a highly prestigious organisation whose historic presence has been a cornerstone in the pharmaceutical industry. Job Responsibilities: Operates as the core representative for Clinical Data Management (CDM) on the study team and to be accountable for the collection, review, and management of data, ensuring deliverables are met. Leads the CDM study team in maintaining oversight of all build, conduct, and close activities for one or more studies, ensuring fit for purpose quality. Leads the CDM study team and maintains oversight of all build, conduct, and close activities for one or more studies, ensuring fit for purpose quality. Implements study conventions, processes, knowledge sharing, and best practices on assigned study(ies). Leads the CDM study team and maintains oversight of all build, conduct, and close activities for multiple or complex studies, ensuring fit for purpose quality. Implements study conventions, processes, knowledge sharing, and best practices on multiple or complex studies. Leads the CDM study team and maintains oversight of all build, conduct, and close activities for one or more studies, ensuring fit for purpose quality. Implements study conventions, processes, knowledge sharing, and best practices on assigned study(ies). Utilizes communication tools. Effectively communicates study goals and status of work, including all requirements to CDM study team and stakeholders. Shares knowledge using relevant forums and communication tools. Effectively communicates study goals and status of work, including all requirements to CDM study team and stakeholders. Leads proactive sharing of knowledge using relevant forums and communication tools. Effectively communicates at the Business Process Owner (BPO) level with the ability to share information with relevant stakeholders. Strategic Agility With direction, manages CDM study deliverables, including timelines, risks, and coordination of cross-functional tasks. Understands study issues and implements corrective action plans, evaluates risk, and implements risk mitigation plan at the study level. Manages CDM study deliverables, including timelines, risks, and coordination of cross-functional tasks. Identifies and escalates study issues appropriately and addresses corrective action plans. Evaluates the impact of risks and develops and implements mitigation plans at the study level. Manages CDM deliverables, including timelines, risks, and coordination of cross functional tasks on multiple or complex studies. Proactively develops solutions to complex problems. Proactively reviews risk and develops contingency plans at the study level. Sets targeted timeframes for deliverables and proactively influences and negotiates positive outcomes for CDM on technical/functional deliverables. Resolves cross-functional problems and proactively identifies process gaps and the piloting of innovative solutions. Proactively develops contingency plans to reduce impact of risks to technical/functional strategies. Receives coaching and mentoring on sub functional activities. Provides timely feedback to individuals and to CDM Management and seeks ongoing feedback for personal. Provides coaching and mentoring on sub functional activities to peer Study Data Managers (SDMs) and associate Study Data Managers (aSDMs). Provides timely feedback to individuals and to CDM. Identifies gaps in Study Data Manager (SDM) knowledge and provides coaching and mentoring on sub functional activities to SDMs and/or raises gaps to Program Data Leader (PDL) and CDM Management. Skills and Requirements: Extensive experience in one or more CDM functions. Ability to apply highly advanced principles, theories, and strategies to one or more sub functions within CDM. Consistent demonstration of ingenuity, creativity, and resourcefulness. Ability to apply advanced principles, theories, and concepts for one or more sub functions within CDM. Grasp of trends in the industry and applies them to work within the organization. In-depth understanding of the business of their sub function and the wider CDM organization. Knowledgeable of theories and principles of CDM and how to apply them within their sub function. To Apply: Please click on the Apply button. Please include a short note outlining why you are interested in the role and why you think you are suitable. In case you have difficulty in applying or if you have any questions, please contact Tom Magenis at +44 203 854 1050 or upload your CV on our website - www.proclinical.com. A full job description is available on request. Proclinical Staffing is a specialist employment agency and recruitment business, providing job opportunities within major pharmaceutical, biopharmaceutical, biotechnology and medical device companies. Proclinical Staffing is an equal opportunity employer. #LI-TM1 #Biometrics',\n", + " 'soft_skills': '[\"Ingenuity\", \"Complex Problem Solving\", \"Negotiation\", \"Coordinating\", \"Proactivity\", \"Resourcefulness\", \"Planning\", \"Management\", \"Accountability\", \"Communications\", \"Timelines\", \"Operations\", \"Innovation\", \"Creativity\", \"Positivity\"]',\n", + " 'hard_skills': '[\"Biometrics\", \"Automation\", \"Mitigation\", \"Outliner\", \"Tooling\", \"Agility\", \"Knowledge Process Outsourcing\", \"Collections\", \"Risk Mitigation\", \"Data Management\", \"Good Agricultural Practices\", \"Industrialization\", \"Biotechnology\", \"Activism\", \"Component Object Model (COM)\", \"Maintainability\", \"Instrumentation\", \"Levelling\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Communication Studies\", \"TARGET 3001!\", \"Medical Devices\", \"Workflow Automation\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Business Process\", \"Equalization\", \"Personalization\", \"Corrective Action Training\", \"Receivables\", \"Pharmaceuticals\", \"Ambulatory Functional Activities\", \"Information Sharing\", \"Job Descriptions\", \"Contingency Plan\", \"Biopharmaceuticals\"]',\n", + " 'languages': \"['English', 'Aymara', 'Avaric', 'Burmese']\"},\n", + " {'company_id': '75',\n", + " 'job_title': 'software development engineer (c/c++) m/f',\n", + " 'location': 'Zürich',\n", + " 'industry': '',\n", + " 'website': '',\n", + " 'jobdescription_embedded': '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'job_description': 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " 'soft_skills': '',\n", + " 'hard_skills': '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " 'languages': \"['English']\"}]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "file = open(\"IT_entry_swiss_jobs_with_embeddings - IT_entry_swiss_jobs_with_embeddings.csv\")\n", + "data = list(csv.DictReader(file))\n", + "data" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['company_id',\n", + " 'job_title',\n", + " 'location',\n", + " 'industry',\n", + " 'website',\n", + " 'jobdescription_embedded',\n", + " 'job_description',\n", + " 'soft_skills',\n", + " 'hard_skills',\n", + " 'languages'],\n", + " ['84',\n", + " 'application engineer - java',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.55808532e-01 3.37073445e-01 4.68456328e-01 5.96076213e-02\\n5.44890523e-01 -1.30339459e-01 -6.62898943e-02 3.29940349e-01\\n-1.33533999e-01 -4.37654316e-01 -9.55163836e-02 -9.86115709e-02\\n-2.44956892e-02 8.97528455e-02 1.91370547e-01 4.12870944e-01\\n3.98574650e-01 4.05492671e-02 -1.95302904e-01 3.74782205e-01\\n4.89123389e-02 -1.11160949e-01 5.33090308e-02 7.80794084e-01\\n4.13207948e-01 1.13232441e-01 -6.04151897e-02 6.60173744e-02\\n-2.10499361e-01 -3.23715150e-01 4.23470140e-01 -2.09919382e-02\\n-1.34444311e-01 -2.64349818e-01 9.52050239e-02 1.19265221e-01\\n-2.31448621e-01 -5.00229672e-02 -1.45653486e-01 1.76977158e-01\\n-4.10124719e-01 -1.29672006e-01 -3.39588299e-02 3.45962495e-02\\n-2.20398188e-01 -3.71905416e-01 6.46123067e-02 -7.94861168e-02\\n1.17574111e-01 3.11294086e-02 -4.69237506e-01 4.03305441e-01\\n-2.40431517e-01 -2.43310541e-01 3.38967860e-01 6.33943081e-01\\n2.96667460e-02 -5.11293590e-01 -4.87605125e-01 -3.44192207e-01\\n7.87505060e-02 -1.29626557e-01 9.30146426e-02 -2.42762446e-01\\n4.47398901e-01 1.04160108e-01 -8.24963972e-02 3.83848429e-01\\n-7.97209024e-01 -1.07523687e-01 -3.29579711e-01 3.70689780e-02\\n-3.70374799e-01 -8.13968852e-02 -3.12633991e-01 -1.14763446e-01\\n-8.15293640e-02 3.55602741e-01 -1.03652045e-01 1.35296375e-01\\n-6.63444549e-02 3.51141989e-01 -1.81835383e-01 2.70721883e-01\\n2.73774385e-01 2.31659353e-01 3.50735873e-01 3.75950336e-01\\n-3.80406201e-01 4.46385920e-01 1.94512874e-01 -2.76750147e-01\\n2.33661681e-01 1.19846925e-01 4.12772179e-01 6.91626519e-02\\n2.01970413e-01 1.45325661e-01 -1.91437185e-01 1.84454829e-01\\n1.30477324e-01 -2.56454110e-01 -6.58136792e-03 -9.07894596e-02\\n4.78952155e-02 -4.00098674e-02 -4.03733477e-02 1.06311999e-01\\n-3.49379867e-01 5.01761436e-01 6.22101501e-02 -3.02358806e-01\\n-8.92782956e-02 -5.99835992e-01 -8.50415826e-02 8.68865922e-02\\n-4.39783782e-02 1.91453785e-01 1.59146443e-01 2.95719832e-01\\n1.90271661e-01 -9.04824436e-02 1.08334050e-01 8.31530809e-01\\n-1.22043923e-01 4.49038930e-02 -2.67735660e-01 2.90029049e-01\\n1.27206907e-01 -2.70772278e-01 1.79501295e-01 2.63166666e-01\\n1.74689665e-03 6.09629638e-02 -3.04220974e-01 3.00966203e-01\\n-7.15184137e-02 -2.06152022e-01 -3.32405835e-01 2.25395441e-01\\n-1.69399813e-01 -5.35365522e-01 5.83341897e-01 -3.82870249e-02\\n2.75041968e-01 -1.18573099e-01 2.17579566e-02 -2.60559805e-02\\n-1.23969451e-01 3.01834524e-01 7.54818618e-02 2.21436217e-01\\n-3.15245390e-01 -1.66647941e-01 -1.93758175e-01 2.47777402e-01\\n-2.97981381e-01 1.46861881e-01 -1.49710953e-01 -1.04214452e-01\\n3.01210731e-01 2.52711959e-02 -4.04339701e-01 3.56099248e-01\\n-6.74385354e-02 -1.64164379e-01 -1.02923870e-01 3.31898332e-01\\n-1.37728736e-01 2.39060670e-01 -1.13384187e-01 -1.24124274e-01\\n6.32526994e-01 7.46572912e-02 2.40839735e-01 -1.07302647e-02\\n2.22918794e-01 -9.25877169e-02 2.69894093e-01 8.15138370e-02\\n-7.03108072e-01 2.74010420e-01 -6.40975982e-02 -2.34274596e-01\\n6.22633584e-02 -4.20332737e-02 3.22813958e-01 -4.21590626e-01\\n-5.65426871e-02 -1.72655284e-01 -2.85524338e-01 -3.58665943e-01\\n-2.36733884e-01 -2.36240551e-02 4.88393277e-01 -4.98519540e-01\\n-5.10029830e-02 1.99642405e-01 -6.13220513e-01 -6.79643303e-02\\n2.18699187e-01 1.64105758e-01 6.95907474e-02 1.90601468e-01\\n-7.42574036e-02 -5.63156486e-01 1.37512803e-01 -4.56095994e-01\\n-3.15934867e-01 1.56589180e-01 -3.28141838e-01 2.17608362e-01\\n8.49500522e-02 -1.23327123e-02 -1.04825869e-01 1.11761570e-01\\n-2.85331249e-01 4.45580557e-02 1.35202497e-01 3.80220972e-02\\n3.29133093e-01 4.05695960e-02 -4.49544370e-01 5.78053594e-01\\n-2.12196633e-01 4.15153384e-01 1.59640163e-01 -9.36754048e-01\\n5.18396258e-01 3.31254005e-01 3.14372852e-02 -3.10493439e-01\\n6.27963066e-01 -3.67640793e-01 -1.48033082e-01 2.36281469e-01\\n-4.27161992e-01 -2.44814724e-01 1.93949476e-01 -2.02260315e-01\\n-2.75662482e-01 6.55525923e-01 1.09605700e-01 1.94541007e-01\\n4.22844380e-01 -1.77056521e-01 -1.06027231e-01 -5.68426475e-02\\n-2.33480513e-01 -2.83239096e-01 -5.74048519e-01 3.81746776e-02\\n-8.32576007e-02 -6.05826735e-01 -2.30568081e-01 -4.92524147e-01\\n-1.92836434e-01 -3.80383462e-01 -1.81332529e-01 2.67955780e-01\\n1.41903698e-01 2.17924520e-01 -2.59663761e-02 -2.82805413e-05\\n-1.04236759e-01 -6.34298444e-01 6.45491295e-03 3.85725275e-02\\n3.33907098e-01 3.68606746e-01 6.91049248e-02 -1.53220534e-01\\n7.54841194e-02 5.43214202e-01 -3.79810214e-01 -3.71833265e-01\\n1.80991501e-01 1.37095332e-01 -8.96518975e-02 -1.18662618e-01\\n1.00606620e-01 3.50473344e-01 -3.23105812e-01 5.36582321e-02\\n-1.40380487e-01 9.02424827e-02 3.43137801e-01 -1.16156861e-01\\n-2.37240762e-01 -2.30305433e-01 -6.20119125e-02 2.76989222e-01\\n-5.26858091e-01 -2.83450663e-01 6.36926591e-01 1.41324237e-01\\n9.57625210e-02 2.04510853e-01 3.18703741e-01 -6.05596676e-02\\n-2.34628364e-01 -2.48275146e-01 2.10501537e-01 1.15231000e-01\\n2.48011678e-01 1.00390658e-01 -7.82887638e-02 -5.29437125e-01\\n-3.07844353e+00 -2.50917226e-01 1.20902330e-01 -2.61083633e-01\\n2.78342307e-01 -1.24349117e-01 1.32776409e-01 1.43680759e-02\\n-4.02289629e-01 5.13123870e-02 -1.07671551e-01 -1.73335433e-01\\n1.48070514e-01 2.33742535e-01 1.60335720e-01 1.71329409e-01\\n2.15245724e-01 -2.29246348e-01 4.06482965e-02 4.06005919e-01\\n-6.58445060e-02 -8.09059501e-01 1.01522341e-01 -3.60648707e-03\\n3.07430267e-01 2.79584885e-01 -4.22020316e-01 -6.92063645e-02\\n-3.40389699e-01 -2.67280400e-01 4.57585379e-02 -2.82098770e-01\\n-1.55224264e-01 4.03723001e-01 1.53713584e-01 -1.74165189e-01\\n1.02423690e-01 -3.70172977e-01 -9.85361114e-02 -4.75336730e-01\\n1.46209925e-01 -6.77501917e-01 -3.63746211e-02 -3.01472694e-02\\n6.60295725e-01 -3.21714073e-01 2.27353185e-01 8.08809549e-02\\n1.93406820e-01 1.98059082e-01 1.02558687e-01 -9.37359408e-03\\n-3.49216551e-01 -2.95364887e-01 -1.17402233e-01 -1.88076094e-01\\n6.45881295e-01 4.75026369e-01 -2.77792782e-01 2.24572215e-02\\n4.18757983e-02 -3.29170465e-01 -4.85821426e-01 -3.31049681e-01\\n-1.85520738e-01 -2.00931773e-01 -6.25781417e-01 -4.96386766e-01\\n-1.67225331e-01 -1.53440312e-01 -5.19684516e-02 7.37138569e-01\\n-2.70267487e-01 -2.81533390e-01 -8.99527594e-02 -5.24616003e-01\\n2.43159264e-01 -1.89375639e-01 -4.52903137e-02 -2.34442040e-01\\n-2.27502540e-01 -5.09904444e-01 1.63961247e-01 6.39593452e-02\\n-1.58689231e-01 -1.05306461e-01 1.59754351e-01 -2.05803767e-01\\n-3.69312346e-01 -5.18929958e-01 5.75707674e-01 6.63628876e-02\\n3.21575999e-01 1.86075434e-01 3.19788098e-01 1.09983027e-01\\n4.29221332e-01 -1.02604628e-01 1.37512162e-02 -5.35878062e-01\\n7.15918392e-02 3.97919342e-02 5.22148609e-01 -1.40084922e-01\\n1.24339759e-02 4.87452000e-03 -1.84229299e-01 -2.08469592e-02\\n4.39739347e-01 6.02326244e-02 1.33663625e-01 -2.71868944e-01\\n2.80583382e-01 -3.50069523e-01 -2.49759808e-01 1.41578719e-01\\n-4.02060151e-02 6.59861267e-01 3.47793438e-02 -2.96816379e-01\\n-1.62126109e-01 4.53513265e-01 -7.98134431e-02 -1.62108783e-02\\n-1.94086432e-01 1.07621238e-01 -2.27464229e-01 2.19464988e-01\\n1.83093138e-02 -9.78198126e-02 -1.91391110e-01 4.86656697e-03\\n-1.51257411e-01 1.95946336e-01 2.46717036e-01 2.09692076e-01\\n-5.34470789e-02 -3.02856624e-01 -7.21270591e-03 1.93470493e-01\\n2.53031969e-01 3.25770289e-01 1.66620940e-01 -2.34616667e-01\\n3.85101140e-02 3.16680670e-01 -1.49006814e-01 2.45270267e-01\\n-2.36596435e-01 8.04373771e-02 -6.37423277e-01 -2.30439693e-01\\n-2.30456978e-01 -3.34649503e-01 -6.83899829e-03 2.91253537e-01\\n4.45786752e-02 -5.21223731e-02 8.56707990e-02 -4.97735322e-01\\n2.78131902e-01 4.10677344e-02 2.26697251e-01 3.00913006e-02\\n-6.06206506e-02 5.89340568e-01 -7.83510059e-02 -2.26526827e-01\\n-1.43483758e-01 1.50425300e-01 -1.28624856e-01 -2.77871430e-01\\n2.21437011e-02 -5.10774732e-01 -1.24284521e-01 3.86217386e-01\\n1.49989963e-01 -2.12735116e-01 -2.60763764e-01 1.82894036e-01\\n-2.10438296e-03 -4.07131851e-01 -2.56571651e-01 -1.91104766e-02\\n3.39273393e-01 1.41859427e-01 2.06782162e-01 -5.00617266e-01\\n-9.58528928e-03 -5.77640384e-02 1.32779256e-02 3.28384459e-01\\n1.16819277e-01 1.23974651e-01 -8.56348872e-02 -2.47029841e-01\\n3.91880929e-01 -5.13763018e-02 -6.37968630e-02 -6.45359531e-02\\n1.15723625e-01 -2.61147946e-01 -4.43698198e-01 -5.20283356e-03\\n-6.28705919e-02 -2.16344774e-01 -2.21439749e-02 5.34471273e-02\\n6.54756948e-02 5.56902997e-02 -6.02025211e-01 -1.81921363e-01\\n-3.93161595e-01 -1.01522189e-02 -1.80128962e-03 -5.54661036e-01\\n2.57067755e-03 -5.91491163e-02 -6.17012143e-01 2.27462009e-01\\n-1.93288505e-01 -7.72827305e-03 1.46137372e-01 2.70685507e-03\\n-3.74308825e-01 -1.38795897e-01 1.30044013e-01 1.26882434e-01\\n-2.59685308e-01 -2.41290480e-01 -1.71773992e-02 -9.16896820e-01\\n2.41099849e-01 -4.47780043e-02 -1.46295428e-01 8.71659443e-03\\n5.96119016e-02 -7.86224246e-01 2.13490158e-01 -4.42587554e-01\\n-7.34034330e-02 -5.32511994e-02 -2.99654871e-01 -4.19603884e-01\\n3.32528539e-02 -4.87955436e-02 -2.67345995e-01 3.14116657e-01\\n-4.43440706e-01 4.77910995e-01 -5.23517281e-02 6.92546889e-02\\n3.75449434e-02 -3.45616579e-01 2.75129788e-02 -3.67159486e-01\\n-3.87125075e-01 -2.75124967e-01 -2.27405623e-01 -3.12143117e-01\\n-5.44109643e-02 -2.16156214e-01 -1.21164486e-01 9.74652767e-02\\n3.21979523e-01 1.05820104e-01 -2.83785611e-01 -2.47695193e-01\\n1.01856500e-01 -4.55958515e-01 9.02074426e-02 -1.49648845e-01\\n-3.45571898e-02 -1.57413781e-01 2.15351492e-01 6.77896887e-02\\n2.28583157e-01 -3.68386686e-01 4.44630802e-01 -2.92355150e-01\\n-3.59969676e-01 -8.22744370e-02 1.13130346e-01 4.51801717e-02\\n2.53296554e-01 -6.18026316e-01 -6.44735321e-02 3.72729301e-01\\n1.04283050e-01 6.92583397e-02 2.28760540e-01 -1.70242697e-01\\n-1.63246632e-01 2.34861016e-01 -4.79902893e-01 1.48090035e-01\\n7.77719855e-01 2.28743553e-01 5.85735962e-02 2.23965555e-01\\n1.58306122e-01 3.82422984e-01 4.55016315e-01 1.49419159e-02\\n-9.50162858e-02 3.85829329e-01 1.96012005e-01 -5.41675091e-01\\n-1.24380015e-01 -9.51157883e-03 -1.40057385e-01 -3.01467419e-01\\n6.94568574e-01 3.71726364e-01 -4.20915484e-01 -3.55089873e-01\\n-2.26755977e-01 -2.35909551e-01 2.98081458e-01 -6.97169602e-02\\n5.14107719e-02 -1.42977446e-01 5.49829006e-01 -1.31223723e-02\\n2.81506836e-01 6.61413014e-01 -1.87012076e-01 -2.85775006e-01\\n-7.63901770e-02 2.90733933e-01 9.05569568e-02 4.20053661e-01\\n-1.76569521e-01 2.53755927e-01 -3.02340109e-02 1.76752418e-01\\n-1.60879016e-01 6.01500645e-02 2.92551577e-01 6.61502779e-03\\n1.34982318e-01 1.12038657e-01 5.60967207e-01 4.95282680e-01\\n2.00496227e-01 5.04207850e-01 3.72471899e-01 -1.62782501e-02\\n4.71184939e-01 5.92214525e-01 3.25640649e-01 2.45483033e-02\\n-2.64912676e-02 1.69008434e-01 2.05812186e-01 5.43586574e-02\\n3.22243929e-01 4.08530116e-01 8.90217051e-02 9.97545362e-01\\n3.87153029e-01 3.19197863e-01 7.53401756e-01 -7.12076545e-01\\n-2.79803216e-01 -1.47552006e-02 4.94328380e-01 -4.31035519e-01\\n-1.32653294e-02 2.12294117e-01 -2.65596122e-01 3.15961719e-01\\n-4.04976249e-01 -7.22043738e-02 -2.86986753e-02 9.25575048e-02\\n1.18286289e-01 -1.01890124e-01 -1.91296682e-01 4.56276685e-02\\n-1.74387008e-01 -2.33241647e-01 -4.21412408e-01 -2.96364427e-01\\n-2.45122820e-01 -6.12163916e-02 -1.05807714e-01 -7.34834746e-02\\n-4.70886268e-02 -3.62323701e-01 -8.82291272e-02 -3.69754508e-02\\n3.59874010e-01 -1.34197772e-01 -7.44640976e-02 -1.35085329e-01\\n3.40849400e-01 2.69734621e-01 7.25262880e-01 -9.86575484e-02\\n6.82408363e-02 -1.93322390e-01 -2.12183774e-01 3.83212455e-02\\n1.16222426e-02 2.72300448e-02 6.09408990e-02 6.09072864e-01\\n-4.38957065e-01 -2.35902786e-01 3.38127762e-02 3.76781821e-01\\n-3.67565483e-01 -1.03730634e-01 -8.06691051e-02 1.36216834e-01\\n5.58694601e-02 1.21972516e-01 -2.23918110e-01 3.74377519e-02\\n-1.55979425e-01 -5.45422792e-01 3.82009685e-01 -1.06562130e-01\\n-1.06963478e-01 1.02384321e-01 2.55640328e-01 3.24659407e-01\\n-2.01840848e-01 -1.92697197e-02 -6.82788491e-02 3.50340195e-02\\n5.35736457e-02 4.43974257e-01 -1.17212661e-01 -2.35562384e-01\\n-3.46341729e-01 2.55334347e-01 -1.38096064e-01 4.98439968e-02\\n-2.76826546e-02 3.61386091e-01 1.17341019e-02 1.87336355e-01\\n1.89934328e-01 8.19223654e-03 -3.49441022e-01 -2.55365729e-01\\n-1.77964300e-01 -8.43334943e-02 -6.15842268e-03 -1.66509047e-01\\n2.88866103e-01 -2.58812249e-01 -1.03354618e-01 -2.33927459e-01\\n-1.81191191e-01 -2.71966875e-01 -6.74397647e-02 -7.69971758e-02]]',\n", + " 'About our client Our client is the world’s leading wholesale providers of reinsurance, insurance and other innovative forms of insurance-based risk transfer. Your responsibilities Our client is hiring an application engineer to work in a team with IT specialists and business analysts to design and develop solutions for global IT projects. The role is focused on maintaining and developing reporting applications for the Finance division. Maintaining, analyzing, designing, documenting, implementing, testing and deploying high-quality applications is within the responsibility of the team and you. You are interested to find out how you can apply your software engineering skills in the area of object-oriented design and analysis. Knowledge in surrounding technologies like J2EE, HTML5, JavaScript and WebSphere Liberty will help you by understanding the bigger picture. You are not afraid to learn other technologies like z/OS mainframe (i.e. JCL, JES, DB2) In addition, providing Level 3 support for ongoing operations is an integral part of the job. You enjoy solving challenging problems and you are equipped with good analytical skills and are highly motivated. You are willing to constantly develop your knowledge of IT methods and tools. You bring in an interest for reinsurance, financial topics, business requirements engineering and solution design. You will cooperate closely with the team lead, team members and internal clients, promoting teamwork within the project and the department across the globe. Your profile Graduates in computer science are preferred. Graduates in mathematics, technical studies, or natural sciences with software engineering experience are also considered. Persons with multiple years with professional experience in software engineering and projects are preferred. Knowledge in all of the following areas is required: Object Oriented Design & Analysis Java (programming language and libraries), J2EE Web services technologies (RESTful) and WebSphere liberty profile SQL and relational database design Creation and maintenance of technical documentation Strong command of German and English The ideal candidate also offers: Experience with data- and compute-intensive applications (batch processing, scheduling) Know-how in HTML5/JavaScript web-application development, Spring, Hibernate, IBM WebSphere Application Server Good analytical skills Cooperative, team-oriented work-style Experience with agile and test-driven and/or test-oriented software development (JUnit/bamboo/Jira) Above average quality awareness Passion to deliver innovative technical solutions which focus on business requirements and system stability Curiosity and open-mindedness; willingness to learn and develop skills on requirements engineering, test case engineering and solution definition and design Innovative, showing a high degree of own initiative Ability to work under pressure Ability to express him-/herself effectively in one-to-one conversations and small groups Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung HTML JavaScript Web JEE/J2EE Agile Hibernate (Framework) Spring (Framework) SQL Sprachen: Deutsch Englisch Job ID: 2085',\n", + " '[\"Analytical Skills\", \"Team Oriented\", \"Teamwork\", \"Cooperation\", \"Willingness To Learn\", \"Integration\", \"Innovation\", \"Curiosity\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Risk-Based Testing\", \"Test Case\", \"Tooling\", \"KM Programming Language\", \"Software Design Documents\", \"Agility\", \"Computer Science\", \"Junit\", \"Atlassian Bamboo\", \"Natural Sciences\", \"Hibernate (Java)\", \"SQL (Programming Language)\", \"Maintainability\", \"z/OS\", \"HTML5\", \"Application Servers\", \"E (Programming Language)\", \"Levelling\", \"Library\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"Reinsurance\", \"DB2 SQL\", \"Web Services\", \"Business Requirements\", \"Finance\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Job Control Language (JCL)\", \"Technical Documentation\", \"IBM Websphere Application Server\", \"Technical Solution Design\", \"Batch Processing\", \"Relational Databases\", \"Software Development\", \"Solution Design\", \"Additives\", \"JIRA Studio\", \"Java (Programming Language)\", \"Spring Framework\", \"Web Application Development\"]',\n", + " \"['English', 'Basque']\"],\n", + " ['123',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.12718710e-01 1.10670008e-01 4.75184590e-01 -3.31541561e-02\\n5.69552958e-01 -1.60082176e-01 -7.25976750e-02 4.56851900e-01\\n-9.39485431e-03 -3.46985042e-01 -8.97977054e-02 -1.99055016e-01\\n-8.65264684e-02 1.58009958e-02 1.02504492e-01 2.59520143e-01\\n3.06469977e-01 1.36347577e-01 -2.48786330e-01 3.25105458e-01\\n1.79310754e-01 -2.32021026e-02 1.37772277e-01 6.70434237e-01\\n4.32870984e-01 -9.26994905e-03 -5.02437763e-02 1.68501791e-02\\n-3.41383606e-01 -2.54121363e-01 3.67121607e-01 8.42692852e-02\\n-7.05615878e-02 -3.59335333e-01 1.45708352e-01 8.81755725e-03\\n-1.51054129e-01 -4.73292582e-02 -2.31389552e-02 1.41306147e-01\\n-4.23853874e-01 -8.47265050e-02 3.57912071e-02 1.68432042e-01\\n-1.48513973e-01 -3.20981532e-01 1.53395742e-01 7.15538859e-02\\n1.64333247e-02 -6.99292794e-02 -5.31052053e-01 2.89238751e-01\\n-2.30182275e-01 -1.60018951e-01 3.27089399e-01 5.50157547e-01\\n-8.36343616e-02 -4.28591281e-01 -3.96054715e-01 -3.07384968e-01\\n5.95142469e-02 -1.71042472e-01 1.51446328e-01 -2.11977735e-01\\n3.31668735e-01 -2.31110733e-02 -3.43213091e-03 2.97998548e-01\\n-7.79415309e-01 -5.81556968e-02 -1.41546845e-01 -1.76338837e-01\\n-3.18232208e-01 -2.24399015e-01 -1.93985447e-01 -4.46574651e-02\\n-1.71832874e-01 3.20438266e-01 -6.34812191e-03 5.26670851e-02\\n-6.86931312e-02 2.12634176e-01 -2.00736940e-01 3.13361734e-01\\n2.52206504e-01 2.17922837e-01 1.51003763e-01 3.45444053e-01\\n-2.80736625e-01 3.58816803e-01 1.37060717e-01 -2.95692831e-01\\n2.77554035e-01 4.61736321e-02 4.52695072e-01 -1.02109641e-01\\n1.33541137e-01 1.27233073e-01 -1.72725827e-01 2.61346072e-01\\n2.25934163e-01 -2.93657184e-01 3.51308547e-02 -1.02400355e-01\\n-1.25162467e-01 3.93865891e-02 1.34616476e-02 3.91661078e-01\\n-2.72497803e-01 3.95819575e-01 1.96953848e-01 -1.68162256e-01\\n-5.27839642e-03 -5.32436013e-01 -6.35794401e-02 -2.85449419e-02\\n2.27576680e-02 1.41635060e-01 2.99577534e-01 1.95003539e-01\\n3.15216422e-01 5.50945289e-02 1.77949935e-01 7.82162249e-01\\n-6.95528388e-02 -1.06485942e-02 -1.83141634e-01 3.71077567e-01\\n9.47134420e-02 -3.52449417e-01 2.07145333e-01 2.55971640e-01\\n8.44329000e-02 -4.29405048e-02 -2.09174842e-01 3.19562584e-01\\n-5.72665446e-02 -1.91153005e-01 -2.65503317e-01 8.97026062e-02\\n-1.28501087e-01 -3.72112185e-01 5.62508404e-01 1.56871960e-01\\n1.82912469e-01 -5.53048588e-02 -3.94426426e-03 -2.21927717e-01\\n-4.68951911e-02 2.87027925e-01 9.74720940e-02 1.88746959e-01\\n-1.85686409e-01 -1.10682644e-01 -2.17966035e-01 1.81002915e-01\\n-2.57769823e-01 7.08091408e-02 -7.26538822e-02 -5.00200726e-02\\n3.62583697e-01 -2.00315248e-02 -2.42031783e-01 2.19914317e-01\\n3.02398708e-02 4.06021476e-02 -1.06041133e-01 3.07472825e-01\\n-2.29071662e-01 2.34056324e-01 -1.36502251e-01 -7.84502849e-02\\n6.44152164e-01 1.61935315e-01 2.14210033e-01 -3.28235291e-02\\n2.50620186e-01 -7.06445798e-02 1.67265102e-01 7.12040365e-02\\n-8.15086186e-01 2.42198512e-01 1.28117274e-03 -1.65778592e-01\\n6.76135942e-02 -5.00779673e-02 1.37460813e-01 -3.51681769e-01\\n4.32248600e-02 -1.54658869e-01 -3.77197415e-01 -2.91289896e-01\\n-3.03335607e-01 -9.16837007e-02 3.07800502e-01 -4.15722877e-01\\n-1.02222636e-01 2.00834513e-01 -5.02035618e-01 3.72994356e-02\\n1.83305636e-01 1.77630514e-01 4.49362583e-02 1.15844019e-01\\n-5.32674938e-02 -5.16095459e-01 6.99020997e-02 -3.28726798e-01\\n-2.88491368e-01 1.62937149e-01 -2.47179538e-01 2.99806535e-01\\n8.17100406e-02 -3.60871688e-03 -5.27518056e-02 2.28180990e-01\\n-1.02618970e-01 -1.21068411e-01 1.88411877e-01 6.55864552e-02\\n2.54900992e-01 7.91452155e-02 -4.36164886e-01 4.37535971e-01\\n-2.04018384e-01 5.89163840e-01 1.02276370e-01 -7.77375340e-01\\n4.37204629e-01 3.24561894e-01 6.48089424e-02 -3.41800421e-01\\n6.36652648e-01 -1.69620857e-01 1.53298108e-02 7.70890489e-02\\n-4.41106647e-01 -3.21914732e-01 2.47038200e-01 -1.36424556e-01\\n-1.91462532e-01 4.89517599e-01 4.56175320e-02 5.19953435e-03\\n1.95847452e-01 -1.99075177e-01 -5.01468070e-02 3.65773179e-02\\n-1.21756531e-01 -2.94013977e-01 -4.61595267e-01 -4.91148829e-02\\n-1.14157505e-01 -4.44583118e-01 -1.26388982e-01 -3.75852644e-01\\n-2.06945211e-01 -3.22829634e-01 -2.07525894e-01 2.34229311e-01\\n2.03865364e-01 1.66954443e-01 -1.32062072e-02 2.37189997e-02\\n-2.29091525e-01 -5.97406268e-01 -2.53920234e-03 8.40099901e-02\\n3.77256215e-01 2.09424272e-01 1.02357976e-01 -1.86912585e-02\\n-1.24870762e-01 6.59388185e-01 -2.65086740e-01 -6.37472123e-02\\n1.81517839e-01 2.24729568e-01 6.41338155e-02 -1.10455289e-01\\n-1.14096198e-02 3.50315392e-01 -2.16362074e-01 1.63446777e-02\\n-1.03627004e-01 -7.60748684e-02 4.34545428e-01 2.02471707e-02\\n-2.71126121e-01 -2.40514025e-01 -4.98008206e-02 2.19685823e-01\\n-4.63799328e-01 -1.55582711e-01 6.35922015e-01 3.00473094e-01\\n2.06713691e-01 2.17857823e-01 1.91894814e-01 -1.05688877e-01\\n-1.28329784e-01 -2.90801406e-01 3.11618835e-01 1.38225809e-01\\n1.68557122e-01 1.23579711e-01 -1.66140854e-01 -5.96358597e-01\\n-3.53283405e+00 -1.64912969e-01 1.76509857e-01 -3.28984261e-01\\n1.09984174e-01 -1.17865667e-01 -1.39584824e-01 -1.46593168e-01\\n-2.26898283e-01 1.09511226e-01 -2.12813944e-01 -2.69764543e-01\\n2.24568531e-01 2.26212189e-01 1.37748510e-01 3.02404076e-01\\n2.31716678e-01 -1.49721682e-01 7.57346908e-03 1.73221111e-01\\n-3.42497349e-01 -5.52999556e-01 2.60361671e-01 -3.25897820e-02\\n3.42976838e-01 4.00614530e-01 -2.75678575e-01 -2.59755522e-01\\n-2.44935572e-01 -2.62971163e-01 2.63636727e-02 -3.30364555e-01\\n-5.86436205e-02 3.28728765e-01 1.46820843e-01 -1.61966845e-01\\n1.91452384e-01 -3.43591660e-01 -5.06713763e-02 -4.04672235e-01\\n8.26874822e-02 -4.13416058e-01 -3.02240681e-02 -5.08640260e-02\\n7.34365463e-01 -4.10922140e-01 1.48562327e-01 1.37132227e-01\\n2.51234561e-01 2.06326500e-01 -3.90384682e-02 -5.87912910e-02\\n-2.58642286e-01 -1.34982914e-01 -8.38747621e-02 -1.50602043e-01\\n4.60600466e-01 5.76390684e-01 -2.07731828e-01 6.07291460e-02\\n1.76067501e-02 -3.20771903e-01 -2.81750977e-01 -2.87910014e-01\\n-1.34599343e-01 -3.14505786e-01 -4.89336461e-01 -3.61866951e-01\\n-4.56856042e-02 -2.04332527e-02 -1.28606603e-01 5.82632720e-01\\n-1.87858805e-01 -4.79950458e-01 -1.34232873e-02 -5.14285147e-01\\n7.88142383e-02 -1.45390570e-01 -4.92166821e-03 -1.79838151e-01\\n-1.04273111e-01 -4.92918193e-01 4.75566126e-02 -2.23151576e-02\\n-1.09107792e-01 -3.50248814e-01 9.56417993e-02 -1.17105290e-01\\n-2.31957301e-01 -5.50469100e-01 3.18325698e-01 1.21233135e-01\\n2.62410462e-01 9.83931795e-02 1.64810479e-01 1.12242542e-01\\n2.45010570e-01 -3.01274002e-01 8.95757303e-02 -3.86696041e-01\\n2.06775680e-01 -3.99843697e-03 5.00576675e-01 -1.94019094e-01\\n6.88759238e-02 1.84414431e-01 -2.64946133e-01 -1.07918791e-01\\n3.15362632e-01 9.43630561e-02 9.17450413e-02 -1.87196746e-01\\n3.37431490e-01 -4.16387230e-01 -2.63860971e-01 6.32998720e-02\\n-3.74885648e-02 5.00317335e-01 -4.79320027e-02 -3.58302653e-01\\n-1.30018353e-01 4.61492151e-01 -9.25939232e-02 -2.08459377e-01\\n-1.70828104e-01 9.59294587e-02 -1.22736216e-01 1.70590743e-01\\n6.15473986e-02 -2.28921279e-01 -3.15639704e-01 -1.64479196e-01\\n-5.71926609e-02 2.15553910e-01 2.34726235e-01 3.35783288e-02\\n3.87717411e-03 -3.30380470e-01 5.35378419e-02 1.25451773e-01\\n1.44117251e-01 3.53448987e-01 2.47955415e-02 -1.14867717e-01\\n-5.18599898e-02 3.18735838e-01 -9.90720019e-02 2.05109492e-01\\n-2.30546817e-01 -1.61895305e-02 -4.45723206e-01 -2.24193379e-01\\n-2.20119506e-01 -3.16136777e-01 6.43201079e-03 1.50462195e-01\\n1.04363553e-01 1.52094662e-02 -4.16187197e-02 -4.36461240e-01\\n3.42555195e-01 -5.38821109e-02 2.80280024e-01 2.12995023e-01\\n-4.33207303e-02 4.08671558e-01 2.05697827e-02 -6.98305443e-02\\n-2.02849299e-01 1.56739622e-01 -1.68497950e-01 -1.07083447e-01\\n1.26849553e-02 -4.49319005e-01 -7.01745003e-02 3.53944868e-01\\n3.42339464e-02 -3.27452809e-01 -1.46854416e-01 1.84733301e-01\\n-3.22363935e-02 -2.91881710e-01 -1.51817352e-01 3.82919461e-02\\n3.42724174e-01 -5.87161630e-03 3.45243305e-01 -3.62602532e-01\\n-1.06267586e-01 2.17560166e-03 -1.12053879e-01 4.87787575e-01\\n4.24789786e-02 5.96854463e-02 -8.26710388e-02 -2.93139279e-01\\n2.55333096e-01 -6.91333115e-02 -9.90862846e-02 3.49178016e-02\\n1.09669901e-01 -1.88418955e-01 -5.21453142e-01 1.75913132e-03\\n2.82762386e-02 -8.56460184e-02 2.51963418e-02 9.83123928e-02\\n1.49539769e-01 9.49136764e-02 -5.79984605e-01 -3.42897534e-01\\n-3.39955539e-01 -9.51370969e-02 6.23938888e-02 -3.32857847e-01\\n-8.20384324e-02 -4.07100394e-02 -5.84246874e-01 2.33391866e-01\\n-1.75940439e-01 -8.40682983e-02 1.27914891e-01 6.68329187e-03\\n-3.36378634e-01 -2.69900472e-03 1.72126234e-01 2.11603746e-01\\n-3.03627610e-01 -2.57374197e-01 1.31622598e-01 -1.01720822e+00\\n2.00547591e-01 6.86768163e-03 -7.49853104e-02 -1.92255732e-02\\n-6.75750747e-02 -5.61195612e-01 5.74049652e-02 -4.01492804e-01\\n-5.64935729e-02 -1.00407088e-02 -1.97284684e-01 -4.66606468e-01\\n8.69494230e-02 -8.38179141e-02 -3.06868583e-01 4.34492677e-01\\n-3.23680937e-01 3.74145329e-01 -4.98623922e-02 7.96938688e-02\\n-3.26891877e-02 -3.11599135e-01 1.26220301e-01 -4.36862916e-01\\n-4.38858747e-01 -8.41317549e-02 -3.09086442e-01 -1.08355090e-01\\n1.16099209e-01 -2.39239082e-01 -9.41130891e-02 4.01942730e-02\\n3.65165949e-01 2.39352472e-02 -1.78526416e-01 -2.86411196e-01\\n5.09746075e-02 -4.74315137e-01 1.22491986e-01 -1.02762833e-01\\n-1.20330654e-01 -3.34377028e-02 7.17092603e-02 7.60539025e-02\\n3.73299271e-02 -4.19745982e-01 3.47955912e-01 -2.89118141e-01\\n-2.87288696e-01 -1.71999671e-02 1.09056465e-01 1.44922482e-02\\n1.73615053e-01 -5.45116782e-01 -1.68892015e-02 3.45015317e-01\\n3.63763534e-02 1.24727800e-01 2.33098254e-01 -1.23717906e-02\\n-5.54527156e-02 3.32082033e-01 -2.59306550e-01 3.03124581e-02\\n7.23120093e-01 3.08251008e-02 4.15100381e-02 2.57384181e-01\\n2.45725945e-01 3.40794504e-01 4.25681174e-01 3.80517505e-02\\n-1.00565404e-01 2.38715172e-01 -3.81433815e-02 -6.82809651e-01\\n8.19775239e-02 4.83994223e-02 -1.99874684e-01 -4.64724243e-01\\n6.90540373e-01 4.51806784e-01 -3.37007135e-01 -2.57907242e-01\\n-7.44212493e-02 -1.16033733e-01 5.76912872e-02 -1.37315720e-01\\n1.42517880e-01 -1.62721321e-01 5.01554251e-01 -3.76961268e-02\\n2.04613194e-01 5.21006644e-01 -2.01255247e-01 -4.09145981e-01\\n-5.56958765e-02 1.45002350e-01 1.00933045e-01 5.46358883e-01\\n-2.09273189e-01 3.04940075e-01 2.73396913e-03 1.46520227e-01\\n-1.44312242e-02 1.79971069e-01 3.59536335e-02 4.67083082e-02\\n1.31515726e-01 -4.02162969e-02 3.46305132e-01 3.83515894e-01\\n3.19380850e-01 4.55225527e-01 3.22439224e-01 3.29549164e-02\\n5.28798938e-01 5.44467866e-01 4.24797446e-01 1.92358255e-01\\n-1.03390820e-01 4.17311341e-02 6.57252669e-02 -1.51358889e-02\\n2.86080688e-01 2.95822740e-01 2.14015823e-02 8.77493799e-01\\n5.03477752e-01 2.13869169e-01 6.34135604e-01 -6.44551873e-01\\n-3.06712121e-01 -9.60781127e-02 3.37035000e-01 -2.63259917e-01\\n-6.30480647e-02 1.02037191e-01 -1.37230366e-01 2.73399770e-01\\n-3.77271861e-01 -1.56726763e-01 -3.40395272e-02 1.51002750e-01\\n7.52778128e-02 -4.60717231e-02 -3.45592111e-01 2.45063044e-02\\n-1.42694175e-01 -1.94053799e-01 -6.03991389e-01 -7.24309087e-02\\n-2.89841473e-01 -2.23297849e-01 -7.52496868e-02 -1.87227726e-01\\n-1.27276093e-01 -3.20762247e-01 -1.43152714e-01 -6.13771612e-03\\n2.46454671e-01 -1.38288751e-01 -3.07585243e-02 -2.84276694e-01\\n2.99108595e-01 1.83433607e-01 4.68343616e-01 -1.13699242e-01\\n1.53801590e-01 -2.25997627e-01 -2.95881897e-01 1.05147555e-01\\n1.57206491e-01 8.77672136e-02 3.04993987e-02 3.56749564e-01\\n-3.33115608e-01 -7.28528202e-02 2.21941471e-01 3.74152452e-01\\n-4.89055097e-01 1.68205034e-02 -2.58056726e-03 2.86537230e-01\\n9.98579636e-02 1.45134419e-01 -2.68062890e-01 3.77636738e-02\\n-2.18111828e-01 -4.93041754e-01 3.00931811e-01 -3.82694229e-02\\n-8.88267979e-02 1.86702445e-01 2.31924757e-01 2.04290092e-01\\n-2.40811303e-01 -5.96433766e-02 -6.66469112e-02 1.98056191e-01\\n1.53466508e-01 3.27050567e-01 -2.28249490e-01 -2.55908400e-01\\n-2.18592197e-01 1.50415406e-01 -3.20769757e-01 1.13673970e-01\\n-1.28965855e-01 2.35460579e-01 1.00536861e-01 8.53970349e-02\\n2.83914268e-01 3.75412740e-02 -1.57884791e-01 -1.76064670e-01\\n-2.19078660e-01 -2.44343072e-01 3.22884656e-02 -1.08290367e-01\\n2.06559792e-01 -3.71505409e-01 -6.91285059e-02 -3.66223454e-02\\n-2.40121603e-01 -3.35044056e-01 -1.07151186e-02 -4.27005515e-02]]',\n", + " 'As a pioneer in Swiss online wealth management we are changing the way people invest their money. Our product is transparent and easy to use, while also suited for the demanding investor, who is looking for individual solutions and full control. Investing with True Wealth saves your time and your money. To help us to further develop our digital wealth management solution and bring it to the next level, we are looking for a Software Engineer. Requirements Your profile: You have a strong foundation as a Software Engineer (engineering degree), with an inclination towards functional concepts, types and good software design You are a team player who writes clean and elegant code and shares our passion of building a great platform. You possess strong skills in at least one typed programming language. Experience with Java and TypeScript is an advantage but not necessarily required. You are interested and might be experienced in web application development, from browsers down to the database. You might have business domain knowledge from finance, trading, or portfolio management You are fluent in English and are based in or around Zurich (we offer help with relocation). German skills are an advantage but not required. You need to hold or be eligible for a work permit in Switzerland (e.g. via Swiss or EU/EFTA citizenship) Benefits We offer: Responsibility, ownership and influence on the further development of our best-in-class roboadvice solution. Flexibility, exposure and opportunities to work across the entire stack, depending on preferences and skills. Backend stack: Java 12, Java EE (CDI, JAX-RS, JMS), jOOQ, Wildfly, Lombok, Gradle, Docker, PostgreSQL. Front-end stack: TypeScript, React, Redux. Competitive salary package, solidly financed growth company. Continuous integration, single command deployments. Office in Zürich (near station Zürich Binz SZU, 2 stops from HB). In your application, please include your full CV as well as references and possibly public samples to previous work, e.g. on GitHub. We do not work with recruitment agencies.',\n", + " '[\"Typing\", \"Writing\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"KM Programming Language\", \"Investment Control\", \"Continuous Integration\", \"Wealth Management\", \"TypeScript\", \"Java EE Application\", \"PostgreSQL\", \"WildFly (JBoss AS)\", \"Gradle\", \"E (Programming Language)\", \"Levelling\", \"Lombok\", \"Software Engineering\", \"Java Message Service (JMS)\", \"Investments\", \"Portfolio Management\", \"Github\", \"Docker (Software)\", \"React Redux\", \"Finance\", \"Experimental Software Engineering\", \"Digitization\", \"Software Design\", \"Front End (Software Engineering)\", \"Software Requirements Specification\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Trade Finance\", \"Web Application Development\", \"Custom Backend\"]',\n", + " \"['English', 'Tagalog', 'Assamese']\"],\n", + " ['75',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.51853904e-01 2.82749176e-01 4.16773558e-01 2.93572042e-02\\n4.61985588e-01 -1.64056927e-01 -3.86512727e-02 3.04083169e-01\\n7.93065801e-02 -5.39510012e-01 3.76780592e-02 -2.52851725e-01\\n-6.72062784e-02 1.02888979e-01 1.32925250e-02 4.28548813e-01\\n3.36443126e-01 1.31367236e-01 -1.97596133e-01 4.02601957e-01\\n7.17061460e-02 -5.96080050e-02 1.26930624e-01 6.98441982e-01\\n3.49849343e-01 -1.09164491e-01 -1.87495220e-02 -3.01221311e-02\\n-1.32925004e-01 -2.71054983e-01 4.65912700e-01 8.99737477e-02\\n-1.22823849e-01 -4.68331605e-01 9.94839817e-02 4.85083908e-02\\n-1.95725054e-01 7.95359015e-02 -6.79348335e-02 1.13579780e-01\\n-6.03635311e-01 -2.64114439e-01 -2.75513697e-02 3.42427082e-02\\n-1.83309406e-01 -2.57113636e-01 1.18164904e-01 -9.80994999e-02\\n1.56996340e-01 2.33045314e-02 -4.71748829e-01 2.52788663e-01\\n-3.41844261e-01 -2.26983979e-01 3.41973901e-01 5.28108180e-01\\n-2.03851182e-02 -4.94283795e-01 -6.58994079e-01 -3.39779377e-01\\n3.00914571e-02 -1.72587752e-01 -2.90854573e-02 -3.07613969e-01\\n2.55332947e-01 -7.03514814e-02 1.19554270e-02 2.49553502e-01\\n-6.81886852e-01 1.81134902e-02 -2.47238889e-01 -1.09319299e-01\\n-3.65392059e-01 -2.38672912e-01 -2.33202964e-01 4.81628478e-02\\n-1.39655590e-01 4.10703480e-01 7.09529892e-02 3.14599462e-02\\n-1.58952117e-01 2.87235975e-01 -3.45203400e-01 3.96860719e-01\\n1.45613164e-01 1.34366691e-01 3.43703419e-01 3.05019617e-01\\n-4.57446992e-01 4.62661028e-01 2.08779007e-01 -4.03823584e-01\\n3.74662608e-01 1.53921038e-01 4.63089406e-01 1.90360881e-02\\n1.37246877e-01 1.47153229e-01 -2.55212933e-01 3.48711252e-01\\n2.79457510e-01 -2.66440183e-01 -3.56807820e-02 -2.13237703e-01\\n8.43477026e-02 -4.87976409e-02 1.49752349e-01 1.47534534e-01\\n-2.37148762e-01 4.15283293e-01 1.49318814e-01 -2.76279449e-01\\n-1.14670306e-01 -3.66054744e-01 -1.42359540e-01 6.95504621e-03\\n4.27637026e-02 1.81085706e-01 1.46180481e-01 1.21656843e-01\\n1.92323208e-01 1.50476381e-01 5.65629527e-02 7.86176801e-01\\n-1.19430579e-01 4.15503681e-02 -3.39550972e-01 2.68115640e-01\\n2.24812061e-01 -3.47362399e-01 2.23471761e-01 1.77440405e-01\\n-9.45480838e-02 -9.25485864e-02 -1.77205503e-01 3.76194477e-01\\n-6.40595425e-03 -1.59389690e-01 -2.66261041e-01 1.31095633e-01\\n6.03977703e-02 -3.25128168e-01 6.37466908e-01 1.78865463e-01\\n2.02598646e-01 3.76355946e-02 -1.92543566e-02 -2.10498214e-01\\n-1.18873179e-01 2.58673608e-01 -5.41237220e-02 1.31135568e-01\\n-2.30271280e-01 -1.43977970e-01 -1.87533647e-01 1.40528113e-01\\n-4.13394272e-01 1.40609473e-01 -2.17305258e-01 -1.29088402e-01\\n2.50678897e-01 1.08649395e-02 -2.74858832e-01 2.09452033e-01\\n-2.48852186e-03 2.19559297e-02 1.27206072e-02 3.51277232e-01\\n-1.60248041e-01 2.08561122e-01 7.06601068e-02 -5.37634864e-02\\n6.80675566e-01 1.12800136e-01 2.85742939e-01 5.92212602e-02\\n3.17470670e-01 -3.89739424e-02 9.55083072e-02 1.93305999e-01\\n-5.91625452e-01 3.98992181e-01 -8.85723680e-02 -1.47099257e-01\\n8.77693295e-02 -6.11826777e-03 2.62965977e-01 -2.56337464e-01\\n-2.87390910e-02 -1.23226069e-01 -3.32620353e-01 -3.06448996e-01\\n-2.28533715e-01 6.26224279e-02 4.07534271e-01 -4.95527178e-01\\n-9.39548165e-02 2.63277024e-01 -5.93906999e-01 -1.09094560e-01\\n1.52626276e-01 1.63263544e-01 1.39021665e-01 9.13143009e-02\\n-2.17890710e-01 -5.61075449e-01 1.02988407e-01 -4.43747342e-01\\n-3.40748221e-01 7.05156103e-02 -2.66900718e-01 2.72048056e-01\\n9.65817496e-02 -4.27995175e-02 -1.15397945e-01 1.44985765e-01\\n-2.77967155e-01 -9.48584974e-02 7.74344653e-02 1.53259793e-02\\n2.19162792e-01 7.28397295e-02 -3.82569253e-01 5.26934683e-01\\n-1.99122563e-01 6.58057332e-01 1.02083795e-01 -9.35929954e-01\\n4.71788108e-01 2.85227984e-01 1.46428235e-02 -3.50296199e-01\\n4.36701715e-01 -3.71808946e-01 -1.97303481e-02 8.42674375e-02\\n-3.22009802e-01 -2.84546852e-01 3.08001131e-01 -1.28479317e-01\\n-2.97352612e-01 5.45129240e-01 3.60197425e-02 -1.75679475e-02\\n2.27491602e-01 -2.35922039e-01 -1.20448001e-01 1.12001151e-02\\n-1.02237865e-01 -2.86956280e-01 -6.16333723e-01 -2.34142523e-02\\n-1.26600355e-01 -4.25326765e-01 -5.03216311e-02 -4.43184674e-01\\n-1.89085156e-01 -4.41163301e-01 -3.11557263e-01 1.62245423e-01\\n2.92577803e-01 2.07104266e-01 -1.46590129e-01 -1.31869689e-02\\n-8.68371949e-02 -8.00820231e-01 -5.97576872e-02 1.93396747e-01\\n4.50607121e-01 9.83140916e-02 1.69954926e-01 3.75439338e-02\\n4.73290756e-02 4.87658352e-01 -3.38964254e-01 -2.08802015e-01\\n1.67273805e-01 2.14505658e-01 3.11082006e-02 -1.59085870e-01\\n1.07689418e-01 4.36079979e-01 -2.90260524e-01 4.89904061e-02\\n7.88347349e-02 -6.43597245e-02 4.33847904e-01 -7.09353238e-02\\n-4.39166069e-01 -1.02428116e-01 -6.27335906e-02 7.00320154e-02\\n-6.32573187e-01 -2.41143867e-01 6.37951851e-01 2.38822937e-01\\n2.70893633e-01 2.08718419e-01 1.27282187e-01 -7.46941715e-02\\n-2.19982117e-01 -2.73872823e-01 3.48563731e-01 1.70646384e-01\\n8.57338384e-02 1.13342285e-01 -1.11812964e-01 -7.05805600e-01\\n-3.47820950e+00 -1.98804468e-01 1.86101571e-01 -1.11582398e-01\\n2.07219243e-01 -1.67883456e-01 1.54417932e-01 -9.51950923e-02\\n-2.63436764e-01 7.86402896e-02 -8.82522017e-02 -1.56386971e-01\\n1.29203692e-01 2.21233070e-01 7.22615197e-02 2.81732500e-01\\n1.92154139e-01 -1.15012646e-01 3.88471782e-03 3.01531971e-01\\n-1.63786590e-01 -6.07062161e-01 2.28397340e-01 -4.34342287e-02\\n2.36585960e-01 2.35726267e-01 -2.93797433e-01 2.18861904e-02\\n-2.35802248e-01 -1.65861815e-01 6.01463094e-02 -1.59181595e-01\\n-1.75091028e-01 1.15330614e-01 1.80915445e-01 -1.35884568e-01\\n6.47971332e-02 -4.60945129e-01 -2.55378455e-01 -3.84763241e-01\\n1.50852859e-01 -5.44501424e-01 3.62265036e-02 -2.03480899e-01\\n6.20627642e-01 -2.44352341e-01 1.73251599e-01 1.21275097e-01\\n1.85098350e-01 1.86248749e-01 1.08163804e-01 4.91858274e-03\\n-2.07442254e-01 -2.21972346e-01 -8.30474794e-02 -1.63111478e-01\\n6.49472713e-01 4.59177822e-01 -1.68107107e-01 -7.88643211e-02\\n-5.11258617e-02 -1.93040326e-01 -4.75074351e-01 -1.87300295e-01\\n-1.23400807e-01 -1.61706984e-01 -4.80531424e-01 -2.54409164e-01\\n-2.68609405e-01 -2.12280691e-01 -1.75548166e-01 7.46642470e-01\\n-3.15946281e-01 -3.43264818e-01 -2.64203623e-02 -4.69152868e-01\\n2.91048855e-01 -2.02012002e-01 -1.95010900e-02 -1.45873651e-01\\n-2.85877943e-01 -4.90522504e-01 3.31342369e-02 5.30523323e-02\\n-1.91990241e-01 -3.06639075e-01 4.34964634e-02 -1.07063971e-01\\n-3.32143009e-01 -3.71124208e-01 4.23328847e-01 1.06154263e-01\\n3.23020756e-01 5.12854680e-02 3.20737720e-01 -5.13671003e-02\\n3.40294063e-01 -1.39954939e-01 -5.14114238e-02 -3.59601706e-01\\n1.36046737e-01 1.06604636e-01 5.39340258e-01 -2.67644823e-01\\n2.10414175e-03 1.62866861e-01 -2.34360531e-01 4.12796736e-02\\n4.24708366e-01 6.10347791e-03 1.58068668e-02 -2.20694304e-01\\n2.79727042e-01 -2.80479670e-01 -2.35966176e-01 1.40757188e-02\\n1.64054513e-01 6.55801415e-01 5.17257042e-02 -4.33965981e-01\\n-1.55180499e-01 5.34448862e-01 -1.12564310e-01 -6.39998727e-03\\n-2.83796251e-01 1.23083383e-01 -2.85772353e-01 1.94969624e-01\\n4.18657437e-02 -4.00091037e-02 -2.14087680e-01 -1.30600810e-01\\n-1.80930585e-01 3.51618588e-01 2.08511949e-01 6.70916066e-02\\n-2.90839653e-02 -3.77563089e-01 -1.54000878e-01 1.35323510e-01\\n1.28875762e-01 3.88641298e-01 1.20460086e-01 -2.31440678e-01\\n-3.21971402e-02 3.17797720e-01 -1.69993967e-01 6.80173859e-02\\n-3.13875556e-01 1.01377822e-01 -5.08502126e-01 -2.37176642e-01\\n-3.34009707e-01 -4.23464894e-01 1.64158046e-01 3.31282526e-01\\n8.72296244e-02 -1.08099701e-02 9.64024812e-02 -4.45768178e-01\\n1.99508876e-01 2.55556464e-01 1.76125169e-01 1.21935293e-01\\n-2.82205939e-02 5.96325278e-01 -2.51528695e-02 -2.42678106e-01\\n-1.10375725e-01 9.41763818e-02 -1.71227440e-01 -1.69492632e-01\\n-3.54252979e-02 -6.48621738e-01 -6.88366890e-02 4.18788552e-01\\n1.51158184e-01 -2.29055062e-01 -2.99994528e-01 2.12338388e-01\\n-5.54261357e-02 -1.88762218e-01 -2.21785814e-01 -1.14051253e-01\\n2.90634662e-01 -8.83075595e-03 3.81739259e-01 -4.30408925e-01\\n-3.01491208e-02 -1.98911764e-02 -1.80951282e-02 5.29432833e-01\\n4.24237028e-02 1.50009066e-01 -1.63405329e-01 -1.04461499e-01\\n4.19922024e-01 -1.01674199e-01 -1.42313182e-01 -1.15013808e-01\\n1.16384551e-01 -1.79293454e-01 -4.57757533e-01 1.61236525e-01\\n-4.98219877e-02 -2.45055735e-01 3.93563136e-02 1.76847845e-01\\n2.85705961e-02 1.77210003e-01 -5.85977316e-01 -3.09019148e-01\\n-2.79632926e-01 -3.51214632e-02 7.65097812e-02 -5.79005301e-01\\n4.16257530e-02 -4.88283336e-02 -5.90527296e-01 1.86759427e-01\\n-2.41516873e-01 -1.70146629e-01 2.03042567e-01 3.89888361e-02\\n-3.29492033e-01 -2.05313504e-01 6.17665052e-02 3.06556255e-01\\n-2.32574672e-01 -2.53132552e-01 7.75419921e-02 -9.53371048e-01\\n1.90906137e-01 9.54288989e-02 -3.10334504e-01 1.78670138e-01\\n-1.54627293e-01 -7.24138200e-01 5.72766177e-02 -3.69606495e-01\\n-1.57847837e-01 1.24574397e-02 -3.04176122e-01 -2.91801900e-01\\n8.70109200e-02 -1.80510432e-02 -3.47374022e-01 4.76854503e-01\\n-3.81352574e-01 4.07257617e-01 -1.39100701e-01 1.22036703e-01\\n5.23300096e-02 -2.71408319e-01 1.53761342e-01 -4.14499789e-01\\n-4.62930620e-01 -1.76415086e-01 -3.55790794e-01 -3.06223154e-01\\n4.54216748e-02 -3.96089464e-01 -1.18459299e-01 7.09598362e-02\\n3.45514774e-01 5.11222295e-02 -9.18194279e-02 -3.07408273e-01\\n-2.15026755e-02 -5.41955769e-01 5.09090312e-02 -2.22967304e-02\\n-5.56794330e-02 -1.05716646e-01 1.37782574e-01 1.12985663e-01\\n2.24092156e-01 -4.28340226e-01 4.43639159e-01 -3.94559532e-01\\n-2.36073971e-01 -1.03887759e-01 -9.96064916e-02 9.55996439e-02\\n2.60862917e-01 -5.47879398e-01 4.66898456e-02 3.85847032e-01\\n1.14773825e-01 -1.03335576e-02 2.00606525e-01 -7.54589140e-02\\n-6.91991001e-02 2.85299271e-01 -2.43440971e-01 1.57291532e-01\\n7.01832533e-01 -8.62964988e-03 1.70788750e-01 9.19229239e-02\\n1.80470973e-01 3.37499559e-01 5.04740238e-01 3.37938741e-02\\n-9.16615278e-02 3.13391626e-01 8.15640315e-02 -5.18981457e-01\\n1.40697360e-02 2.34034657e-02 -1.41112447e-01 -3.74412686e-01\\n6.78396463e-01 4.63988185e-01 -4.67490405e-01 -1.87658161e-01\\n-9.43224505e-02 -1.59375042e-01 2.07372278e-01 -5.82366809e-02\\n-1.21044144e-02 -4.69182059e-02 4.59965110e-01 -6.78498223e-02\\n1.65564567e-01 5.44494271e-01 -1.98038101e-01 -3.94890189e-01\\n-7.32723475e-02 2.60408700e-01 4.62674089e-02 5.24833083e-01\\n-1.87571526e-01 2.18293309e-01 -3.65190767e-03 1.18815124e-01\\n-1.07714504e-01 2.22571850e-01 1.22649245e-01 1.28631055e-01\\n1.48808897e-01 -7.09441677e-02 5.00275671e-01 5.21736264e-01\\n3.58005792e-01 4.50061262e-01 3.55701447e-01 1.89312734e-03\\n5.11802077e-01 6.18422627e-01 3.30358744e-01 1.22138329e-01\\n-4.25996780e-02 1.35074049e-01 1.37377530e-01 -2.76041031e-02\\n4.08031106e-01 5.30717850e-01 1.04869425e-01 8.21499586e-01\\n2.98053443e-01 1.92062169e-01 5.83427191e-01 -6.63905323e-01\\n-3.54664743e-01 1.17606297e-01 4.45459783e-01 -1.90459266e-01\\n1.41929463e-02 2.91706026e-01 -2.39539593e-01 1.92499757e-01\\n-3.73172820e-01 -2.47488365e-01 -5.65836132e-02 2.05047339e-01\\n9.76944268e-02 -2.59885907e-01 -1.94552302e-01 9.29138660e-02\\n-3.61183807e-02 -1.44448793e-02 -4.27614927e-01 -1.32073089e-01\\n-3.66007745e-01 -2.13572476e-02 -1.14219055e-01 -1.36226982e-01\\n1.95898861e-02 -3.82142305e-01 -1.13940388e-01 -7.96011910e-02\\n2.92670757e-01 -1.72758386e-01 -1.28923818e-01 -1.11797474e-01\\n3.07410151e-01 2.39470631e-01 4.92071360e-01 -2.89756805e-03\\n5.05052954e-02 -1.70172215e-01 -2.19500169e-01 1.73954219e-01\\n1.12113662e-01 1.07143834e-01 8.71473271e-03 3.22462559e-01\\n-3.07428360e-01 -1.37744784e-01 2.02674583e-01 2.94773638e-01\\n-3.92947644e-01 -1.08347815e-02 -1.99325487e-01 1.55441180e-01\\n1.31805673e-01 2.28853881e-01 -2.43831605e-01 2.57339720e-02\\n-1.27353847e-01 -3.76329541e-01 3.27784985e-01 -1.11792967e-01\\n-7.83414543e-02 -3.46867517e-02 3.19838881e-01 2.63436258e-01\\n-2.88480997e-01 -5.63640660e-03 -1.20494254e-01 1.73016220e-01\\n2.41902042e-02 3.28594387e-01 -1.62945122e-01 -2.30758190e-01\\n-2.84206599e-01 1.57079533e-01 -7.97383934e-02 1.14925869e-01\\n4.31870557e-02 2.88607180e-01 1.11380100e-01 5.29839620e-02\\n3.60932678e-01 -4.99029458e-03 -1.86879590e-01 -1.58306420e-01\\n-3.00347924e-01 -1.00606903e-01 -1.57361060e-01 -1.21937484e-01\\n1.93071052e-01 -3.57706726e-01 -4.54201810e-02 -5.11227697e-02\\n-1.45837128e-01 -2.51471519e-01 5.99597022e-03 -5.31127527e-02]]',\n", + " 'Although you will be exposed to all the different components, your focus will be one of the applications. You will be working on new features, help define the architecture and make sure our solutions stay maintainable (refactor when necessary). You will mainly be responsible for one of the following components: Desktop Application with NFC (Electron) Mobile Application (React Native with Bluetooth Low Energy) Frontend Applications (VueJS) Backend (Go) Other technologies and tools we are currently using are Python, Solidity and Docker as well as Git with Bitbucket, CI/CD for automated testing and deployment, JIRA, Slack, Confluence and Postgres. As a team we work in sprints, prioritize and define how to implement features together, do code reviews and always try to assist each other. What you will be doing: Developing new features during development sprints, making sure your code is properly tested and documented Reviewing pull requests from your colleagues and discuss how issues can be solved better Helping to define the system architecture Refactoring code to ensure it is maintainable What you bring along: Experience in designing, working on and maintaining software systems The right mindset – you like to take on responsibility, you can work independently, you care about code quality Teamwork skills Very good English skills (German not required) Computer Science background is appreciated, but we value personality and a track record over education Eligibility to work in Switzerland What we can offer: Being part of an ambitious, talented team that delivers unique solutions using the latest IoT and blockchain technologies Interesting, challenging, and diverse roles with lots of autonomy Personal development opportunities which are based on your personal contribution having measurable impact on the organization and its products An open, transparent, and inclusive team culture A fun work environment About Modum Modum is an innovative startup, combining new technologies such as Blockchain, IoT and AI to provide new solutions for our customers. Our current solutions are targeted at customers in the pharmaceutical sector - helping them to improve their supply chain efficiency, gain better insights and automate their processes. We leverage trusted data from our next generation digital monitoring solution to solve real-world challenges. Modum not only collaborates with global technology partners such as SAP and AWS, but also joins up with business partners such as Swiss Post to ensure that their solutions are fit-for-purpose. We are looking for team players and passionate personalities who bring innovative ideas and enthusiasm to everything they do. If this sounds like you, we would love to meet you! Application Process You can apply for the job by sending a short cover letter, your CV, and ideally your Github Repo to careers@modum.io. After collecting the applications and reviewing them, we will decide whether your application meets our criteria. If that is the case, we will invite you for a first interview. This interview focuses on getting to know you, your experiences, strengths, and ambitions. The goal of the first interview is to choose a shortlist of three applicants to go forward with. These three applicants will be invited for a second interview. The second interview consists of two parts: (1) A technical interview and technical challenge. We have several options for the technical challenge and are happy to discuss which suits you best beforehand. (2) You will have a chat with a few members of the team. We value a team fit; we want to make sure that both you and the existing team are happy with the decision and can work productively together. After the assessment of the second interview and your positive feedback, we will make some reference calls. As soon as the decision is made and you have received the job offer, we conclude the process by signing the contract.',\n", + " '[\"Teamwork\", \"Decisiveness\", \"Collaboration\", \"Enthusiasm\", \"Innovation\", \"Prioritization\", \"Positivity\"]',\n", + " '[\"Bitbucket\", \"Automation\", \"Tooling\", \"Code Refactoring\", \"Blockchain\", \"Computer Science\", \"Collections\", \"Automated Testing Framework\", \"Supply Chain\", \"Mobile Application Software\", \"Business Partnering\", \"Software Systems\", \"Python (Programming Language)\", \"React Native\", \"Maintainability\", \"Track (Rail Transport)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Solidity (Programming Language)\", \"Systems Architecture\", \"Idealization\", \"Hostile Work Environment\", \"Slack (Software)\", \"Bluetooth Low Energy (Bluetooth)\", \"Github\", \"Docker (Software)\", \"TARGET 3001!\", \"Electronics\", \"Personalization\", \"Digitization\", \"Code Review\", \"Receivables\", \"Atlassian Confluence\", \"Pharmaceuticals\", \"Git Flow\", \"Personality Development\", \"JIRA Studio\", \"Custom Backend\"]',\n", + " \"['English']\"],\n", + " ['4',\n", + " 'software engineer network management system m/f',\n", + " 'Bern',\n", + " 'Electrical & Electronic Manufacturing',\n", + " 'www.abb.com',\n", + " '[[-1.00095063e-01 1.79666638e-01 4.91430968e-01 -1.08539537e-01\\n3.54067892e-01 -1.54138044e-01 2.08294764e-01 3.63881201e-01\\n-2.24334616e-02 -5.98920405e-01 -3.08517441e-02 -2.12589890e-01\\n3.97444405e-02 2.08572865e-01 1.16825245e-01 3.15799713e-01\\n2.94631451e-01 2.55709916e-01 -1.32803068e-01 3.93163890e-01\\n2.19083354e-01 -1.01245672e-01 1.65381581e-01 6.97421789e-01\\n4.94351357e-01 2.59472034e-03 -1.75915007e-02 -4.93083633e-02\\n-1.05148293e-01 -3.12089354e-01 4.11958396e-01 -7.01484606e-02\\n1.16576523e-01 -3.49363834e-01 8.08832198e-02 -1.01122975e-01\\n-3.07809234e-01 -2.30637506e-01 2.12957207e-02 1.53942481e-01\\n-5.40289938e-01 -2.06222758e-01 -5.67897074e-02 5.88058122e-02\\n-7.26386011e-02 -3.73811543e-01 -2.98722368e-02 5.30256471e-03\\n2.34364852e-01 -8.65526125e-03 -4.76983160e-01 2.68028051e-01\\n-5.64923175e-02 -1.47783026e-01 2.63544112e-01 5.68426430e-01\\n-1.83793195e-02 -4.54532415e-01 -4.60280329e-01 -2.16526121e-01\\n1.11828566e-01 7.28813410e-02 1.18852183e-01 -3.46057028e-01\\n1.34565145e-01 1.14001580e-01 4.62206267e-02 4.40722823e-01\\n-8.23760390e-01 -9.83603969e-02 -2.83725202e-01 -7.21371919e-02\\n-2.19576731e-01 -1.21538170e-01 -2.39618167e-01 -1.16806790e-01\\n-1.73654079e-01 4.29154515e-01 3.31621654e-02 -2.03362182e-02\\n-1.22610830e-01 2.87141174e-01 -2.46824503e-01 3.78438294e-01\\n2.25178376e-01 2.53268749e-01 2.32346728e-01 2.16279596e-01\\n-2.40743026e-01 5.83495796e-01 4.40459810e-02 -3.21433574e-01\\n2.57094979e-01 1.21580072e-01 5.33776343e-01 -2.70912379e-01\\n1.79557979e-01 -6.87507093e-02 -3.18254709e-01 3.58020097e-01\\n2.52790421e-01 -2.23890319e-01 2.29548272e-02 -1.60823792e-01\\n-1.86269395e-02 7.23310784e-02 9.02303532e-02 7.81199038e-02\\n-3.14532906e-01 4.98641491e-01 9.67445299e-02 -1.56267419e-01\\n-2.02511653e-01 -3.88915539e-01 4.88735735e-04 -2.83546727e-02\\n1.62106693e-01 1.31067351e-01 1.23143069e-01 1.84296131e-01\\n2.06064448e-01 8.35895464e-02 1.99829325e-01 7.76443303e-01\\n-3.93271819e-02 3.38425972e-02 -3.48799050e-01 1.68766379e-01\\n3.00956648e-02 -2.84590542e-01 3.19204062e-01 1.23032354e-01\\n-1.60324797e-02 -2.31700465e-01 -2.61035323e-01 2.92648196e-01\\n1.96217541e-02 -2.28057817e-01 -2.42905095e-01 2.54847169e-01\\n-6.81726113e-02 -3.18252921e-01 5.76927722e-01 1.02021933e-01\\n1.29775852e-01 -4.77299467e-02 7.35108554e-02 -1.23854041e-01\\n-1.11279704e-01 1.41051054e-01 5.69898961e-03 -9.17344093e-02\\n-1.36969626e-01 -3.30361485e-01 -3.16347361e-01 6.49555475e-02\\n-2.97974050e-01 1.75984919e-01 -4.61028367e-02 -3.02207172e-02\\n3.06854725e-01 5.06684519e-02 -1.98396102e-01 2.76232630e-01\\n-4.85794917e-02 1.29979074e-01 -3.50366607e-02 2.64002800e-01\\n-1.74307927e-01 9.31669027e-02 -7.17786849e-02 -1.67451650e-01\\n5.76583564e-01 1.76687464e-01 1.19426608e-01 7.20948540e-03\\n1.56453416e-01 -8.03158358e-02 -3.98437455e-02 1.01484127e-01\\n-8.07130456e-01 2.43684530e-01 -3.01648974e-02 -2.17485845e-01\\n1.33745059e-01 -1.60400286e-01 4.58516106e-02 -2.11200774e-01\\n3.71939391e-02 -6.82642311e-03 -4.04971093e-01 -2.08714724e-01\\n-1.73749402e-01 -6.57782406e-02 4.57166940e-01 -4.44006652e-01\\n-2.07848027e-01 1.68724701e-01 -4.80594546e-01 4.65432145e-02\\n1.52285367e-01 1.05522946e-01 1.11942180e-01 2.19161123e-01\\n-2.16768518e-01 -3.44230413e-01 8.43804553e-02 -3.46355081e-01\\n-1.83713287e-01 -3.42827402e-02 -3.52281898e-01 2.61317760e-01\\n1.58395097e-01 8.47702287e-03 -1.29472539e-01 5.38563505e-02\\n-1.82976890e-02 -8.64627287e-02 -1.35216932e-03 5.20679988e-02\\n2.68686563e-01 1.31575055e-02 -4.32930768e-01 2.88911700e-01\\n-5.30029973e-03 5.48125744e-01 2.49523353e-02 -8.18821669e-01\\n3.98492306e-01 3.21886271e-01 -1.01332674e-02 -3.76359940e-01\\n5.73735774e-01 -1.07876085e-01 -5.89519739e-02 1.10272713e-01\\n-5.35988748e-01 -3.87820244e-01 2.65333682e-01 -2.55058050e-01\\n-1.86650798e-01 4.01427835e-01 1.75390214e-01 2.08175793e-01\\n1.65525928e-01 -6.64682090e-02 -2.67729983e-02 9.23458412e-02\\n-2.29952559e-02 -2.98666745e-01 -4.71234232e-01 -1.80751741e-01\\n-1.29359439e-01 -3.56661975e-01 -1.19988032e-01 -4.31827098e-01\\n-1.81882009e-01 -3.77794355e-01 -1.55781493e-01 1.52414665e-01\\n4.42920238e-01 1.27732307e-01 8.58085379e-02 8.41789246e-02\\n-2.06752166e-01 -5.78282177e-01 2.99731009e-02 1.46548837e-01\\n3.96723092e-01 2.16710553e-01 -4.72973427e-03 -8.01234469e-02\\n-1.25261635e-01 7.24277377e-01 -1.75282061e-01 6.50713407e-03\\n2.67269641e-01 1.61030069e-01 1.00771137e-01 -1.26990885e-01\\n-7.96664041e-03 2.71323115e-01 -2.29516357e-01 1.40027434e-03\\n-2.57335138e-02 -9.40800682e-02 3.89331371e-01 1.16826989e-01\\n-3.47413093e-01 -2.05523387e-01 -3.79295088e-02 1.57353163e-01\\n-4.11359221e-01 -1.15439557e-01 7.14216590e-01 2.21297115e-01\\n1.79943457e-01 1.59159079e-01 1.63957223e-01 4.90259193e-02\\n-1.22811325e-01 -2.69508600e-01 1.60366863e-01 4.22977060e-02\\n8.40385482e-02 3.03552985e-01 -3.95095497e-02 -5.20833731e-01\\n-3.18654704e+00 -1.18003869e-02 1.20082542e-01 -3.18920046e-01\\n1.51185751e-01 -1.22352429e-01 1.08153105e-01 -1.92238376e-01\\n-2.95567870e-01 5.94569668e-02 -2.06131399e-01 -2.05847517e-01\\n3.29335183e-01 1.52653411e-01 6.26559928e-02 3.84319186e-01\\n2.75238752e-01 -2.50941247e-01 -1.71456590e-01 2.50773907e-01\\n-2.71575719e-01 -4.79640275e-01 1.83113009e-01 -4.03965116e-02\\n4.04464692e-01 2.20638573e-01 -3.21703404e-01 -1.52276516e-01\\n-2.69164771e-01 -8.06854963e-02 1.90194622e-01 -3.45334232e-01\\n-3.65366489e-02 3.49531680e-01 2.53840923e-01 -1.43267274e-01\\n1.91450164e-01 -4.22160327e-01 -1.11380309e-01 -3.91237348e-01\\n1.89259782e-01 -5.15645087e-01 -2.92189717e-02 -5.97113334e-02\\n6.89837217e-01 -3.39483857e-01 7.38446042e-02 9.91142690e-02\\n1.45970896e-01 2.08572969e-01 1.42803624e-01 -3.01295109e-02\\n-1.97656631e-01 -2.29891524e-01 -2.32132003e-02 -1.06914550e-01\\n5.03844798e-01 5.35647333e-01 -2.07779109e-01 -1.43904299e-01\\n3.31589840e-02 -2.08822906e-01 -4.17375088e-01 -2.25788504e-01\\n-1.25321224e-01 -3.15384299e-01 -6.31411612e-01 -4.34680551e-01\\n-6.97103664e-02 -1.45960525e-01 -1.43904105e-01 5.75490594e-01\\n-2.76791483e-01 -3.35805804e-01 7.73177221e-02 -4.39163715e-01\\n2.40320981e-01 -1.49743021e-01 1.47103099e-02 -1.56655833e-01\\n-1.90356836e-01 -3.18486661e-01 4.98206727e-02 1.19286418e-01\\n-1.87270809e-02 -1.72225624e-01 3.11008126e-01 -9.49198753e-02\\n-3.09503943e-01 -4.26519901e-01 3.31520677e-01 1.65334970e-01\\n2.15824738e-01 1.11958317e-01 1.48817569e-01 -2.21208557e-02\\n1.95760205e-01 -1.81469187e-01 8.21112469e-03 -2.81050563e-01\\n2.16721058e-01 7.27102384e-02 3.72935653e-01 -2.30522886e-01\\n-2.62492914e-02 8.08354095e-02 -2.59889334e-01 -2.27606356e-01\\n3.14876080e-01 -8.91508982e-02 1.20571397e-01 -2.93321520e-01\\n2.61880577e-01 -2.87250817e-01 -1.17931820e-01 -6.99573085e-02\\n6.38444349e-02 5.19927919e-01 -4.33177389e-02 -2.58416265e-01\\n-1.27354041e-01 3.78421485e-01 -7.21855834e-02 7.51882792e-03\\n-1.96243718e-01 1.11493133e-01 -2.24092737e-01 1.67605028e-01\\n-6.42351583e-02 -1.53796256e-01 -1.02492929e-01 -3.11725765e-01\\n-2.54322588e-01 3.69143486e-01 2.68337548e-01 6.35164836e-03\\n-5.30534703e-03 -5.08838058e-01 -2.25421023e-02 1.62297770e-01\\n1.51050285e-01 4.81686860e-01 1.06442019e-01 -1.39896393e-01\\n5.35999499e-02 3.62150460e-01 -1.69597208e-01 1.63537979e-01\\n-3.36095393e-01 7.23135918e-02 -3.49581808e-01 -2.91908294e-01\\n-2.74220675e-01 -3.57455939e-01 1.88028991e-01 3.17958951e-01\\n6.28826767e-02 -6.79490566e-02 -3.32505070e-02 -3.37365746e-01\\n2.75943875e-01 1.33600505e-02 1.81060120e-01 2.04648256e-01\\n-1.15873059e-02 4.47461784e-01 2.68843602e-02 -1.52506784e-01\\n-6.12664670e-02 -1.34142146e-01 -1.38616711e-01 -1.11966796e-01\\n1.29146250e-02 -5.19998908e-01 -8.52834210e-02 4.31318581e-01\\n7.04398900e-02 -3.33677739e-01 -1.00640535e-01 2.37762928e-01\\n-1.31135285e-01 -3.27755898e-01 -2.10823432e-01 2.43827868e-02\\n3.79446149e-01 1.08691484e-01 3.45569223e-01 -4.79690641e-01\\n-2.86553204e-02 -1.48592973e-02 -1.86677590e-01 5.51336348e-01\\n5.17376047e-03 -3.24621908e-02 -3.09906363e-01 -3.32852095e-01\\n4.17822659e-01 -2.65064210e-01 -3.99495363e-02 2.20076412e-01\\n-3.76981609e-02 -2.01383069e-01 -5.84036231e-01 1.56957284e-02\\n-6.87344223e-02 -1.38259426e-01 8.70521963e-02 1.57899931e-01\\n1.80045310e-02 1.36854783e-01 -5.42508185e-01 -3.10806751e-01\\n-2.07965985e-01 7.36256316e-02 1.71980813e-01 -4.60976511e-01\\n-1.05436437e-01 -4.99978401e-02 -4.99325246e-01 2.96023816e-01\\n-9.88508910e-02 -9.37532485e-02 2.45018423e-01 -4.94489074e-02\\n-3.69416058e-01 5.65286987e-02 3.66917849e-02 2.76502430e-01\\n-2.34597534e-01 -1.79618508e-01 5.17121553e-02 -9.27114308e-01\\n2.38636926e-01 -1.61900390e-02 -1.51212394e-01 2.01737583e-02\\n-1.82893321e-01 -5.78924596e-01 8.13960806e-02 -2.89468855e-01\\n-1.54669821e-01 -1.55044034e-01 -2.01753393e-01 -5.36803782e-01\\n2.18888391e-02 -2.84215454e-02 -3.86091739e-01 3.19238573e-01\\n-2.15902075e-01 3.91823381e-01 -1.78844914e-01 -1.94501597e-02\\n-4.42785695e-02 -4.28599477e-01 8.80783722e-02 -4.35472667e-01\\n-3.72173488e-01 -6.06356859e-02 -3.49794716e-01 -2.00233072e-01\\n-7.20259100e-02 -2.47806922e-01 -3.66773941e-02 1.29860505e-01\\n1.46896943e-01 -1.26415249e-02 -1.36393324e-01 -2.62151450e-01\\n-5.82106113e-02 -6.14032507e-01 1.91348214e-02 1.23168141e-01\\n-5.67136444e-02 -1.68592930e-02 6.97464123e-02 6.65579960e-02\\n1.14480019e-01 -5.16492307e-01 1.51064456e-01 -4.81884480e-01\\n-2.80104429e-01 -1.20564215e-02 6.22751229e-02 6.26537055e-02\\n3.53334934e-01 -4.23084468e-01 4.15051775e-03 2.71493584e-01\\n1.36713356e-01 8.90528932e-02 2.71395773e-01 -1.39343739e-03\\n-1.79134011e-01 3.91119838e-01 -2.24143639e-01 1.89900443e-01\\n7.55783617e-01 9.47494060e-02 2.04482168e-01 1.94602102e-01\\n9.44096744e-02 2.58470953e-01 3.93754125e-01 1.28009841e-01\\n-1.93347231e-01 1.42473593e-01 8.64548311e-02 -5.71944416e-01\\n3.59499454e-03 7.93766826e-02 -1.77316755e-01 -3.08378488e-01\\n6.23158038e-01 5.03063917e-01 -3.92879128e-01 -1.54533520e-01\\n-2.00289473e-01 -1.69625461e-01 5.78061678e-02 -1.31321490e-01\\n8.40961635e-02 -9.94076729e-02 5.03156602e-01 -5.50261512e-02\\n1.54459938e-01 3.92557889e-01 -1.17089987e-01 -2.79575855e-01\\n-1.12883084e-01 2.51837820e-01 -6.99338913e-02 2.66279161e-01\\n-1.41335011e-01 4.15277362e-01 1.08308561e-01 6.61911219e-02\\n-4.04085331e-02 3.49543877e-02 -2.79999394e-02 8.31719339e-02\\n-1.77099817e-02 1.63172171e-01 3.97932261e-01 3.46356690e-01\\n4.58977699e-01 3.80818069e-01 3.20949256e-01 1.46492571e-01\\n4.48616326e-01 4.29968864e-01 3.46557945e-01 2.20917836e-01\\n-3.16568166e-02 -1.07177049e-01 7.66809285e-02 3.96562032e-02\\n3.09503376e-01 2.50525951e-01 -1.73205987e-01 8.67862165e-01\\n2.99784452e-01 1.81727037e-01 6.55168176e-01 -5.94400823e-01\\n-3.49224597e-01 -5.53132184e-02 3.78044248e-01 -3.31839621e-01\\n4.91674542e-02 6.66275099e-02 -3.27055603e-02 2.76056975e-01\\n-4.22994524e-01 -3.26343179e-01 -1.28739491e-01 2.93734372e-01\\n1.16489775e-01 -3.27171117e-01 -2.08506629e-01 7.45192841e-02\\n-1.44693047e-01 -2.24984169e-01 -6.16370976e-01 -1.00717552e-01\\n-1.21115014e-01 -2.33057886e-01 -9.89436880e-02 -1.41505137e-01\\n-4.61214818e-02 -3.40842366e-01 -9.20417625e-03 4.26345095e-02\\n3.20105106e-01 4.08588015e-02 -2.03979071e-02 -5.06026484e-02\\n4.39044356e-01 1.58084258e-01 5.30594349e-01 3.46609801e-02\\n9.17763039e-02 -1.47960246e-01 -2.11888745e-01 1.41956747e-01\\n2.65586823e-01 4.77689616e-02 5.21225110e-02 1.63086995e-01\\n-2.06172958e-01 -1.08489424e-01 1.51335463e-01 3.13969493e-01\\n-5.35222769e-01 7.15253055e-02 -5.11602871e-02 2.12805122e-01\\n1.60970524e-01 1.58125058e-01 -1.98025271e-01 -1.33554637e-02\\n-1.13307208e-01 -3.80618691e-01 1.60940588e-01 4.33570854e-02\\n-1.93675026e-01 8.42289403e-02 8.34454745e-02 1.55073002e-01\\n-1.73169702e-01 -4.38272394e-02 2.76978444e-02 8.20288435e-02\\n1.52201355e-01 3.46637428e-01 -2.74331838e-01 -2.81038105e-01\\n-2.53024578e-01 9.18874517e-02 -2.37215430e-01 1.24728397e-01\\n-3.07221394e-02 2.39610523e-01 1.57288939e-01 8.84884149e-02\\n3.67486775e-01 -1.28505751e-01 -1.33426562e-01 -1.45022377e-01\\n-2.57319987e-01 -3.70735466e-01 1.72417816e-02 -1.07652240e-01\\n1.27871588e-01 -3.20919782e-01 -3.70203257e-02 -1.68454930e-01\\n-2.25848764e-01 -3.53260487e-01 2.76855510e-02 -2.44216070e-01]]',\n", + " \"In order to improve our Network Management System User Interface software towards a modern technology stack and state-of-the-art graphical design, we are looking for a driven and passionate front-end developer (m/f) with strong focus on UI/UX aspects. Located in Bern, you will collaborate with team colleagues in Bern as well as work remotely with colleagues in Krakòw (Poland). Are you an open-minded person seeking challenges and willing to take responsibility for the UI development of our products? Let's write the future. Together.Your responsibilitiesYour backgroundMore about usABB is able to offer you an interesting role within a highly motivated team, together with open communication structures. On the basis of a personal, practice-oriented introduction program, you will be given the opportunity to acquire the confidence needed to work independently as well as be a constructive member of an inclusive team within your assigned area. ABB is also able to provide a wealth of opportunity for personal development once you have completed your introduction period, the aim being to assist you in attaining your career goals. Personalized development programs with targeted training measures will help you to enhance your skills on a continuous basis. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Tamara Hofmann Talent Partner Phone: +41 79 627 53 03 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer\",\n", + " '[\"Collaboration\", \"Communications\", \"Writing\", \"Team Motivation\"]',\n", + " '[\"Front End (Software Engineering)\", \"Professional Development Programs\", \"Constructability\", \"Network Management System\", \"TARGET 3001!\", \"Tooling\", \"Library For WWW In Perl\", \"Network Management\", \"Component Object Model (COM)\", \"Management Systems\", \"M (Programming Language)\", \"Graphic Arts\", \"Personalization\", \"Personality Development\", \"User Interface\", \"Receivables\", \"Graphic Design\"]',\n", + " \"['English', 'Chewa', 'Bosnian', 'Yiddish', 'Afrikaans']\"],\n", + " ['84',\n", + " 'application engineer - java',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.55808532e-01 3.37073445e-01 4.68456328e-01 5.96076213e-02\\n5.44890523e-01 -1.30339459e-01 -6.62898943e-02 3.29940349e-01\\n-1.33533999e-01 -4.37654316e-01 -9.55163836e-02 -9.86115709e-02\\n-2.44956892e-02 8.97528455e-02 1.91370547e-01 4.12870944e-01\\n3.98574650e-01 4.05492671e-02 -1.95302904e-01 3.74782205e-01\\n4.89123389e-02 -1.11160949e-01 5.33090308e-02 7.80794084e-01\\n4.13207948e-01 1.13232441e-01 -6.04151897e-02 6.60173744e-02\\n-2.10499361e-01 -3.23715150e-01 4.23470140e-01 -2.09919382e-02\\n-1.34444311e-01 -2.64349818e-01 9.52050239e-02 1.19265221e-01\\n-2.31448621e-01 -5.00229672e-02 -1.45653486e-01 1.76977158e-01\\n-4.10124719e-01 -1.29672006e-01 -3.39588299e-02 3.45962495e-02\\n-2.20398188e-01 -3.71905416e-01 6.46123067e-02 -7.94861168e-02\\n1.17574111e-01 3.11294086e-02 -4.69237506e-01 4.03305441e-01\\n-2.40431517e-01 -2.43310541e-01 3.38967860e-01 6.33943081e-01\\n2.96667460e-02 -5.11293590e-01 -4.87605125e-01 -3.44192207e-01\\n7.87505060e-02 -1.29626557e-01 9.30146426e-02 -2.42762446e-01\\n4.47398901e-01 1.04160108e-01 -8.24963972e-02 3.83848429e-01\\n-7.97209024e-01 -1.07523687e-01 -3.29579711e-01 3.70689780e-02\\n-3.70374799e-01 -8.13968852e-02 -3.12633991e-01 -1.14763446e-01\\n-8.15293640e-02 3.55602741e-01 -1.03652045e-01 1.35296375e-01\\n-6.63444549e-02 3.51141989e-01 -1.81835383e-01 2.70721883e-01\\n2.73774385e-01 2.31659353e-01 3.50735873e-01 3.75950336e-01\\n-3.80406201e-01 4.46385920e-01 1.94512874e-01 -2.76750147e-01\\n2.33661681e-01 1.19846925e-01 4.12772179e-01 6.91626519e-02\\n2.01970413e-01 1.45325661e-01 -1.91437185e-01 1.84454829e-01\\n1.30477324e-01 -2.56454110e-01 -6.58136792e-03 -9.07894596e-02\\n4.78952155e-02 -4.00098674e-02 -4.03733477e-02 1.06311999e-01\\n-3.49379867e-01 5.01761436e-01 6.22101501e-02 -3.02358806e-01\\n-8.92782956e-02 -5.99835992e-01 -8.50415826e-02 8.68865922e-02\\n-4.39783782e-02 1.91453785e-01 1.59146443e-01 2.95719832e-01\\n1.90271661e-01 -9.04824436e-02 1.08334050e-01 8.31530809e-01\\n-1.22043923e-01 4.49038930e-02 -2.67735660e-01 2.90029049e-01\\n1.27206907e-01 -2.70772278e-01 1.79501295e-01 2.63166666e-01\\n1.74689665e-03 6.09629638e-02 -3.04220974e-01 3.00966203e-01\\n-7.15184137e-02 -2.06152022e-01 -3.32405835e-01 2.25395441e-01\\n-1.69399813e-01 -5.35365522e-01 5.83341897e-01 -3.82870249e-02\\n2.75041968e-01 -1.18573099e-01 2.17579566e-02 -2.60559805e-02\\n-1.23969451e-01 3.01834524e-01 7.54818618e-02 2.21436217e-01\\n-3.15245390e-01 -1.66647941e-01 -1.93758175e-01 2.47777402e-01\\n-2.97981381e-01 1.46861881e-01 -1.49710953e-01 -1.04214452e-01\\n3.01210731e-01 2.52711959e-02 -4.04339701e-01 3.56099248e-01\\n-6.74385354e-02 -1.64164379e-01 -1.02923870e-01 3.31898332e-01\\n-1.37728736e-01 2.39060670e-01 -1.13384187e-01 -1.24124274e-01\\n6.32526994e-01 7.46572912e-02 2.40839735e-01 -1.07302647e-02\\n2.22918794e-01 -9.25877169e-02 2.69894093e-01 8.15138370e-02\\n-7.03108072e-01 2.74010420e-01 -6.40975982e-02 -2.34274596e-01\\n6.22633584e-02 -4.20332737e-02 3.22813958e-01 -4.21590626e-01\\n-5.65426871e-02 -1.72655284e-01 -2.85524338e-01 -3.58665943e-01\\n-2.36733884e-01 -2.36240551e-02 4.88393277e-01 -4.98519540e-01\\n-5.10029830e-02 1.99642405e-01 -6.13220513e-01 -6.79643303e-02\\n2.18699187e-01 1.64105758e-01 6.95907474e-02 1.90601468e-01\\n-7.42574036e-02 -5.63156486e-01 1.37512803e-01 -4.56095994e-01\\n-3.15934867e-01 1.56589180e-01 -3.28141838e-01 2.17608362e-01\\n8.49500522e-02 -1.23327123e-02 -1.04825869e-01 1.11761570e-01\\n-2.85331249e-01 4.45580557e-02 1.35202497e-01 3.80220972e-02\\n3.29133093e-01 4.05695960e-02 -4.49544370e-01 5.78053594e-01\\n-2.12196633e-01 4.15153384e-01 1.59640163e-01 -9.36754048e-01\\n5.18396258e-01 3.31254005e-01 3.14372852e-02 -3.10493439e-01\\n6.27963066e-01 -3.67640793e-01 -1.48033082e-01 2.36281469e-01\\n-4.27161992e-01 -2.44814724e-01 1.93949476e-01 -2.02260315e-01\\n-2.75662482e-01 6.55525923e-01 1.09605700e-01 1.94541007e-01\\n4.22844380e-01 -1.77056521e-01 -1.06027231e-01 -5.68426475e-02\\n-2.33480513e-01 -2.83239096e-01 -5.74048519e-01 3.81746776e-02\\n-8.32576007e-02 -6.05826735e-01 -2.30568081e-01 -4.92524147e-01\\n-1.92836434e-01 -3.80383462e-01 -1.81332529e-01 2.67955780e-01\\n1.41903698e-01 2.17924520e-01 -2.59663761e-02 -2.82805413e-05\\n-1.04236759e-01 -6.34298444e-01 6.45491295e-03 3.85725275e-02\\n3.33907098e-01 3.68606746e-01 6.91049248e-02 -1.53220534e-01\\n7.54841194e-02 5.43214202e-01 -3.79810214e-01 -3.71833265e-01\\n1.80991501e-01 1.37095332e-01 -8.96518975e-02 -1.18662618e-01\\n1.00606620e-01 3.50473344e-01 -3.23105812e-01 5.36582321e-02\\n-1.40380487e-01 9.02424827e-02 3.43137801e-01 -1.16156861e-01\\n-2.37240762e-01 -2.30305433e-01 -6.20119125e-02 2.76989222e-01\\n-5.26858091e-01 -2.83450663e-01 6.36926591e-01 1.41324237e-01\\n9.57625210e-02 2.04510853e-01 3.18703741e-01 -6.05596676e-02\\n-2.34628364e-01 -2.48275146e-01 2.10501537e-01 1.15231000e-01\\n2.48011678e-01 1.00390658e-01 -7.82887638e-02 -5.29437125e-01\\n-3.07844353e+00 -2.50917226e-01 1.20902330e-01 -2.61083633e-01\\n2.78342307e-01 -1.24349117e-01 1.32776409e-01 1.43680759e-02\\n-4.02289629e-01 5.13123870e-02 -1.07671551e-01 -1.73335433e-01\\n1.48070514e-01 2.33742535e-01 1.60335720e-01 1.71329409e-01\\n2.15245724e-01 -2.29246348e-01 4.06482965e-02 4.06005919e-01\\n-6.58445060e-02 -8.09059501e-01 1.01522341e-01 -3.60648707e-03\\n3.07430267e-01 2.79584885e-01 -4.22020316e-01 -6.92063645e-02\\n-3.40389699e-01 -2.67280400e-01 4.57585379e-02 -2.82098770e-01\\n-1.55224264e-01 4.03723001e-01 1.53713584e-01 -1.74165189e-01\\n1.02423690e-01 -3.70172977e-01 -9.85361114e-02 -4.75336730e-01\\n1.46209925e-01 -6.77501917e-01 -3.63746211e-02 -3.01472694e-02\\n6.60295725e-01 -3.21714073e-01 2.27353185e-01 8.08809549e-02\\n1.93406820e-01 1.98059082e-01 1.02558687e-01 -9.37359408e-03\\n-3.49216551e-01 -2.95364887e-01 -1.17402233e-01 -1.88076094e-01\\n6.45881295e-01 4.75026369e-01 -2.77792782e-01 2.24572215e-02\\n4.18757983e-02 -3.29170465e-01 -4.85821426e-01 -3.31049681e-01\\n-1.85520738e-01 -2.00931773e-01 -6.25781417e-01 -4.96386766e-01\\n-1.67225331e-01 -1.53440312e-01 -5.19684516e-02 7.37138569e-01\\n-2.70267487e-01 -2.81533390e-01 -8.99527594e-02 -5.24616003e-01\\n2.43159264e-01 -1.89375639e-01 -4.52903137e-02 -2.34442040e-01\\n-2.27502540e-01 -5.09904444e-01 1.63961247e-01 6.39593452e-02\\n-1.58689231e-01 -1.05306461e-01 1.59754351e-01 -2.05803767e-01\\n-3.69312346e-01 -5.18929958e-01 5.75707674e-01 6.63628876e-02\\n3.21575999e-01 1.86075434e-01 3.19788098e-01 1.09983027e-01\\n4.29221332e-01 -1.02604628e-01 1.37512162e-02 -5.35878062e-01\\n7.15918392e-02 3.97919342e-02 5.22148609e-01 -1.40084922e-01\\n1.24339759e-02 4.87452000e-03 -1.84229299e-01 -2.08469592e-02\\n4.39739347e-01 6.02326244e-02 1.33663625e-01 -2.71868944e-01\\n2.80583382e-01 -3.50069523e-01 -2.49759808e-01 1.41578719e-01\\n-4.02060151e-02 6.59861267e-01 3.47793438e-02 -2.96816379e-01\\n-1.62126109e-01 4.53513265e-01 -7.98134431e-02 -1.62108783e-02\\n-1.94086432e-01 1.07621238e-01 -2.27464229e-01 2.19464988e-01\\n1.83093138e-02 -9.78198126e-02 -1.91391110e-01 4.86656697e-03\\n-1.51257411e-01 1.95946336e-01 2.46717036e-01 2.09692076e-01\\n-5.34470789e-02 -3.02856624e-01 -7.21270591e-03 1.93470493e-01\\n2.53031969e-01 3.25770289e-01 1.66620940e-01 -2.34616667e-01\\n3.85101140e-02 3.16680670e-01 -1.49006814e-01 2.45270267e-01\\n-2.36596435e-01 8.04373771e-02 -6.37423277e-01 -2.30439693e-01\\n-2.30456978e-01 -3.34649503e-01 -6.83899829e-03 2.91253537e-01\\n4.45786752e-02 -5.21223731e-02 8.56707990e-02 -4.97735322e-01\\n2.78131902e-01 4.10677344e-02 2.26697251e-01 3.00913006e-02\\n-6.06206506e-02 5.89340568e-01 -7.83510059e-02 -2.26526827e-01\\n-1.43483758e-01 1.50425300e-01 -1.28624856e-01 -2.77871430e-01\\n2.21437011e-02 -5.10774732e-01 -1.24284521e-01 3.86217386e-01\\n1.49989963e-01 -2.12735116e-01 -2.60763764e-01 1.82894036e-01\\n-2.10438296e-03 -4.07131851e-01 -2.56571651e-01 -1.91104766e-02\\n3.39273393e-01 1.41859427e-01 2.06782162e-01 -5.00617266e-01\\n-9.58528928e-03 -5.77640384e-02 1.32779256e-02 3.28384459e-01\\n1.16819277e-01 1.23974651e-01 -8.56348872e-02 -2.47029841e-01\\n3.91880929e-01 -5.13763018e-02 -6.37968630e-02 -6.45359531e-02\\n1.15723625e-01 -2.61147946e-01 -4.43698198e-01 -5.20283356e-03\\n-6.28705919e-02 -2.16344774e-01 -2.21439749e-02 5.34471273e-02\\n6.54756948e-02 5.56902997e-02 -6.02025211e-01 -1.81921363e-01\\n-3.93161595e-01 -1.01522189e-02 -1.80128962e-03 -5.54661036e-01\\n2.57067755e-03 -5.91491163e-02 -6.17012143e-01 2.27462009e-01\\n-1.93288505e-01 -7.72827305e-03 1.46137372e-01 2.70685507e-03\\n-3.74308825e-01 -1.38795897e-01 1.30044013e-01 1.26882434e-01\\n-2.59685308e-01 -2.41290480e-01 -1.71773992e-02 -9.16896820e-01\\n2.41099849e-01 -4.47780043e-02 -1.46295428e-01 8.71659443e-03\\n5.96119016e-02 -7.86224246e-01 2.13490158e-01 -4.42587554e-01\\n-7.34034330e-02 -5.32511994e-02 -2.99654871e-01 -4.19603884e-01\\n3.32528539e-02 -4.87955436e-02 -2.67345995e-01 3.14116657e-01\\n-4.43440706e-01 4.77910995e-01 -5.23517281e-02 6.92546889e-02\\n3.75449434e-02 -3.45616579e-01 2.75129788e-02 -3.67159486e-01\\n-3.87125075e-01 -2.75124967e-01 -2.27405623e-01 -3.12143117e-01\\n-5.44109643e-02 -2.16156214e-01 -1.21164486e-01 9.74652767e-02\\n3.21979523e-01 1.05820104e-01 -2.83785611e-01 -2.47695193e-01\\n1.01856500e-01 -4.55958515e-01 9.02074426e-02 -1.49648845e-01\\n-3.45571898e-02 -1.57413781e-01 2.15351492e-01 6.77896887e-02\\n2.28583157e-01 -3.68386686e-01 4.44630802e-01 -2.92355150e-01\\n-3.59969676e-01 -8.22744370e-02 1.13130346e-01 4.51801717e-02\\n2.53296554e-01 -6.18026316e-01 -6.44735321e-02 3.72729301e-01\\n1.04283050e-01 6.92583397e-02 2.28760540e-01 -1.70242697e-01\\n-1.63246632e-01 2.34861016e-01 -4.79902893e-01 1.48090035e-01\\n7.77719855e-01 2.28743553e-01 5.85735962e-02 2.23965555e-01\\n1.58306122e-01 3.82422984e-01 4.55016315e-01 1.49419159e-02\\n-9.50162858e-02 3.85829329e-01 1.96012005e-01 -5.41675091e-01\\n-1.24380015e-01 -9.51157883e-03 -1.40057385e-01 -3.01467419e-01\\n6.94568574e-01 3.71726364e-01 -4.20915484e-01 -3.55089873e-01\\n-2.26755977e-01 -2.35909551e-01 2.98081458e-01 -6.97169602e-02\\n5.14107719e-02 -1.42977446e-01 5.49829006e-01 -1.31223723e-02\\n2.81506836e-01 6.61413014e-01 -1.87012076e-01 -2.85775006e-01\\n-7.63901770e-02 2.90733933e-01 9.05569568e-02 4.20053661e-01\\n-1.76569521e-01 2.53755927e-01 -3.02340109e-02 1.76752418e-01\\n-1.60879016e-01 6.01500645e-02 2.92551577e-01 6.61502779e-03\\n1.34982318e-01 1.12038657e-01 5.60967207e-01 4.95282680e-01\\n2.00496227e-01 5.04207850e-01 3.72471899e-01 -1.62782501e-02\\n4.71184939e-01 5.92214525e-01 3.25640649e-01 2.45483033e-02\\n-2.64912676e-02 1.69008434e-01 2.05812186e-01 5.43586574e-02\\n3.22243929e-01 4.08530116e-01 8.90217051e-02 9.97545362e-01\\n3.87153029e-01 3.19197863e-01 7.53401756e-01 -7.12076545e-01\\n-2.79803216e-01 -1.47552006e-02 4.94328380e-01 -4.31035519e-01\\n-1.32653294e-02 2.12294117e-01 -2.65596122e-01 3.15961719e-01\\n-4.04976249e-01 -7.22043738e-02 -2.86986753e-02 9.25575048e-02\\n1.18286289e-01 -1.01890124e-01 -1.91296682e-01 4.56276685e-02\\n-1.74387008e-01 -2.33241647e-01 -4.21412408e-01 -2.96364427e-01\\n-2.45122820e-01 -6.12163916e-02 -1.05807714e-01 -7.34834746e-02\\n-4.70886268e-02 -3.62323701e-01 -8.82291272e-02 -3.69754508e-02\\n3.59874010e-01 -1.34197772e-01 -7.44640976e-02 -1.35085329e-01\\n3.40849400e-01 2.69734621e-01 7.25262880e-01 -9.86575484e-02\\n6.82408363e-02 -1.93322390e-01 -2.12183774e-01 3.83212455e-02\\n1.16222426e-02 2.72300448e-02 6.09408990e-02 6.09072864e-01\\n-4.38957065e-01 -2.35902786e-01 3.38127762e-02 3.76781821e-01\\n-3.67565483e-01 -1.03730634e-01 -8.06691051e-02 1.36216834e-01\\n5.58694601e-02 1.21972516e-01 -2.23918110e-01 3.74377519e-02\\n-1.55979425e-01 -5.45422792e-01 3.82009685e-01 -1.06562130e-01\\n-1.06963478e-01 1.02384321e-01 2.55640328e-01 3.24659407e-01\\n-2.01840848e-01 -1.92697197e-02 -6.82788491e-02 3.50340195e-02\\n5.35736457e-02 4.43974257e-01 -1.17212661e-01 -2.35562384e-01\\n-3.46341729e-01 2.55334347e-01 -1.38096064e-01 4.98439968e-02\\n-2.76826546e-02 3.61386091e-01 1.17341019e-02 1.87336355e-01\\n1.89934328e-01 8.19223654e-03 -3.49441022e-01 -2.55365729e-01\\n-1.77964300e-01 -8.43334943e-02 -6.15842268e-03 -1.66509047e-01\\n2.88866103e-01 -2.58812249e-01 -1.03354618e-01 -2.33927459e-01\\n-1.81191191e-01 -2.71966875e-01 -6.74397647e-02 -7.69971758e-02]]',\n", + " 'About our client Our client is the world’s leading wholesale providers of reinsurance, insurance and other innovative forms of insurance-based risk transfer. Your responsibilities Our client is hiring an application engineer to work in a team with IT specialists and business analysts to design and develop solutions for global IT projects. The role is focused on maintaining and developing reporting applications for the Finance division. Maintaining, analyzing, designing, documenting, implementing, testing and deploying high-quality applications is within the responsibility of the team and you. You are interested to find out how you can apply your software engineering skills in the area of object-oriented design and analysis. Knowledge in surrounding technologies like J2EE, HTML5, JavaScript and WebSphere Liberty will help you by understanding the bigger picture. You are not afraid to learn other technologies like z/OS mainframe (i.e. JCL, JES, DB2) In addition, providing Level 3 support for ongoing operations is an integral part of the job. You enjoy solving challenging problems and you are equipped with good analytical skills and are highly motivated. You are willing to constantly develop your knowledge of IT methods and tools. You bring in an interest for reinsurance, financial topics, business requirements engineering and solution design. You will cooperate closely with the team lead, team members and internal clients, promoting teamwork within the project and the department across the globe. Your profile Graduates in computer science are preferred. Graduates in mathematics, technical studies, or natural sciences with software engineering experience are also considered. Persons with multiple years with professional experience in software engineering and projects are preferred. Knowledge in all of the following areas is required: Object Oriented Design & Analysis Java (programming language and libraries), J2EE Web services technologies (RESTful) and WebSphere liberty profile SQL and relational database design Creation and maintenance of technical documentation Strong command of German and English The ideal candidate also offers: Experience with data- and compute-intensive applications (batch processing, scheduling) Know-how in HTML5/JavaScript web-application development, Spring, Hibernate, IBM WebSphere Application Server Good analytical skills Cooperative, team-oriented work-style Experience with agile and test-driven and/or test-oriented software development (JUnit/bamboo/Jira) Above average quality awareness Passion to deliver innovative technical solutions which focus on business requirements and system stability Curiosity and open-mindedness; willingness to learn and develop skills on requirements engineering, test case engineering and solution definition and design Innovative, showing a high degree of own initiative Ability to work under pressure Ability to express him-/herself effectively in one-to-one conversations and small groups Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung HTML JavaScript Web JEE/J2EE Agile Hibernate (Framework) Spring (Framework) SQL Sprachen: Deutsch Englisch Job ID: 2085',\n", + " '[\"Analytical Skills\", \"Team Oriented\", \"Teamwork\", \"Cooperation\", \"Willingness To Learn\", \"Integration\", \"Innovation\", \"Curiosity\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Risk-Based Testing\", \"Test Case\", \"Tooling\", \"KM Programming Language\", \"Software Design Documents\", \"Agility\", \"Computer Science\", \"Junit\", \"Atlassian Bamboo\", \"Natural Sciences\", \"Hibernate (Java)\", \"SQL (Programming Language)\", \"Maintainability\", \"z/OS\", \"HTML5\", \"Application Servers\", \"E (Programming Language)\", \"Levelling\", \"Library\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"Reinsurance\", \"DB2 SQL\", \"Web Services\", \"Business Requirements\", \"Finance\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Job Control Language (JCL)\", \"Technical Documentation\", \"IBM Websphere Application Server\", \"Technical Solution Design\", \"Batch Processing\", \"Relational Databases\", \"Software Development\", \"Solution Design\", \"Additives\", \"JIRA Studio\", \"Java (Programming Language)\", \"Spring Framework\", \"Web Application Development\"]',\n", + " \"['English', 'Spanish', 'Croatian']\"],\n", + " ['109',\n", + " 'data scientist (analytics)',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.starmind.ai',\n", + " '[[-2.10179746e-01 1.94211572e-01 4.47810352e-01 7.11169317e-02\\n4.75101680e-01 -1.05349049e-01 1.71992742e-02 3.98088157e-01\\n-2.30169017e-02 -5.11718750e-01 7.56235421e-02 -2.83988595e-01\\n-1.85230911e-01 1.26160175e-01 2.60654427e-02 3.76901388e-01\\n2.39219233e-01 1.66433752e-01 -1.64665177e-01 4.03719902e-01\\n6.82031959e-02 -1.23662595e-02 4.69312072e-04 7.99202323e-01\\n4.52678859e-01 -5.14311492e-02 -5.81164770e-02 4.51204516e-02\\n-1.91704780e-01 -2.37781882e-01 4.67107028e-01 1.29429162e-01\\n-1.99123085e-01 -4.70910579e-01 -3.30480784e-02 5.50191179e-02\\n-2.50130266e-01 -8.57802406e-02 -5.99808469e-02 1.74275488e-01\\n-5.78484654e-01 -1.90715224e-01 -1.04086816e-01 8.43295828e-02\\n-2.80406743e-01 -3.33820581e-01 6.04574196e-02 2.06429362e-02\\n2.40011171e-01 7.22111315e-02 -5.37037671e-01 3.08836520e-01\\n-2.53518373e-01 -2.28790194e-01 2.30259091e-01 6.09373450e-01\\n6.41611144e-02 -3.96829188e-01 -5.92023313e-01 -2.99331665e-01\\n1.26928598e-01 -2.16440961e-01 5.64881526e-02 -4.84487444e-01\\n3.02383959e-01 4.54939082e-02 1.68502033e-01 2.86692649e-01\\n-7.07299292e-01 -1.54409632e-02 -2.36068189e-01 -8.47047567e-02\\n-4.60173845e-01 -4.59526964e-02 -3.45182002e-01 -2.48257481e-02\\n-1.54969990e-01 4.45691019e-01 7.67012537e-02 9.96287912e-03\\n-1.86111555e-01 3.12287122e-01 -3.07298243e-01 4.16275740e-01\\n1.97299033e-01 2.38001123e-01 1.79564059e-01 3.68592858e-01\\n-4.59829003e-01 4.30814475e-01 8.08612332e-02 -3.01364750e-01\\n3.06849778e-01 2.17004538e-01 4.63233650e-01 -2.33492181e-02\\n2.48216003e-01 6.17225543e-02 -3.62661004e-01 4.80409831e-01\\n3.23345959e-01 -4.47050422e-01 7.52894059e-02 -2.52340853e-01\\n1.33517101e-01 -4.06849869e-02 1.21368274e-01 1.29612103e-01\\n-2.82538176e-01 4.16292667e-01 2.06427872e-01 -1.66058794e-01\\n-1.18123874e-01 -3.88204098e-01 -2.27980241e-02 -9.65153519e-03\\n1.14265755e-01 9.73291248e-02 1.85215503e-01 7.00136125e-02\\n2.59798765e-01 1.67647064e-01 1.60188615e-01 8.25629354e-01\\n-9.63142812e-02 2.89463867e-02 -2.09348053e-01 2.80466080e-01\\n1.89862311e-01 -3.49973232e-01 3.00333560e-01 2.63654202e-01\\n5.76562509e-02 -1.60088286e-01 -2.74979770e-01 3.48088205e-01\\n-1.37138873e-01 -1.65909871e-01 -3.56268048e-01 2.07551032e-01\\n2.50931025e-01 -3.54777217e-01 7.02439666e-01 1.09080330e-01\\n2.14200258e-01 -1.49468314e-02 5.35254218e-02 -2.13143051e-01\\n-1.21867314e-01 1.56842902e-01 5.52795045e-02 1.73762649e-01\\n-2.93830097e-01 -1.87693939e-01 -1.30972311e-01 5.32020442e-02\\n-5.78639627e-01 1.16341837e-01 -1.43634155e-04 -1.13525558e-02\\n1.67789310e-01 -5.14701083e-02 -3.08998555e-01 7.22464696e-02\\n-1.95161492e-01 -1.12387687e-01 1.67239934e-01 4.42371845e-01\\n-1.58010542e-01 2.87146419e-01 2.40565613e-02 -8.20622593e-02\\n7.88658977e-01 2.06482381e-01 2.10094750e-01 4.71047871e-03\\n3.19060683e-01 9.82624292e-03 1.50462583e-01 2.64285922e-01\\n-7.66696811e-01 2.24359229e-01 -9.21086743e-02 -2.98248351e-01\\n1.69284493e-01 -5.46119586e-02 3.13757896e-01 -2.64960140e-01\\n1.08908117e-01 -1.23104624e-01 -3.11451107e-01 -2.40551606e-01\\n-3.41877222e-01 -1.28749665e-02 3.58161598e-01 -4.83628213e-01\\n-1.18165538e-01 1.74724907e-01 -4.99271095e-01 -1.72453731e-01\\n1.00684166e-01 7.62574077e-02 1.35376096e-01 1.17276490e-01\\n-1.45077333e-01 -6.31760240e-01 -2.76954491e-02 -3.99203956e-01\\n-4.77119029e-01 6.05513379e-02 -4.18557227e-01 3.05402398e-01\\n7.10128322e-02 -1.20502442e-01 -1.78107440e-01 2.30716959e-01\\n-2.54188061e-01 8.04420337e-02 1.49276182e-02 4.55989689e-02\\n1.75669566e-01 7.05859736e-02 -3.80026639e-01 3.31154436e-01\\n-8.17083046e-02 6.78580821e-01 8.06134045e-02 -7.87013173e-01\\n5.94534278e-01 3.05935383e-01 -7.68897533e-02 -4.81723517e-01\\n5.56069195e-01 -2.29369015e-01 -1.89763397e-01 2.91056968e-02\\n-3.97436827e-01 -4.08761621e-01 2.73921907e-01 -5.71240149e-02\\n-2.05789596e-01 4.73918676e-01 1.10384524e-01 1.47889242e-01\\n2.53278315e-01 -3.11583638e-01 -1.28919750e-01 1.26212656e-01\\n-6.04721084e-02 -2.50511438e-01 -5.87294340e-01 -7.72306025e-02\\n-1.99988768e-01 -3.08492422e-01 -6.03672080e-02 -3.58885109e-01\\n-1.89634860e-01 -3.80856961e-01 -2.33501524e-01 3.06740940e-01\\n2.92243481e-01 8.06134567e-02 -1.22002319e-01 6.37357235e-02\\n2.66681202e-02 -7.78093159e-01 -2.43456531e-02 8.75557885e-02\\n5.14803529e-01 1.88636243e-01 2.23282859e-01 -7.33380467e-02\\n1.30144402e-01 6.51920974e-01 -1.97757870e-01 -3.17990124e-01\\n1.66064978e-01 3.08942735e-01 -2.14497242e-02 -1.34855613e-01\\n7.25394785e-02 4.26286757e-01 -3.86969805e-01 8.80723000e-02\\n4.14319038e-02 -2.09634185e-01 4.36686635e-01 -4.37591597e-02\\n-3.27730954e-01 -1.15854472e-01 -1.94023311e-01 9.71607342e-02\\n-5.63966274e-01 -3.78041863e-01 5.32606244e-01 2.39405975e-01\\n2.10919052e-01 5.64445630e-02 3.23486105e-02 -2.33842209e-02\\n-2.35300094e-01 -3.13792646e-01 3.14882666e-01 1.14036284e-01\\n9.17684957e-02 1.97435349e-01 3.54253761e-02 -6.28795326e-01\\n-3.45707703e+00 -1.40250266e-01 2.66815454e-01 -1.74149483e-01\\n1.18733853e-01 -2.24343985e-02 4.15387098e-03 -1.41916215e-01\\n-3.16568702e-01 7.11792558e-02 -1.43641040e-01 -2.30840474e-01\\n5.55182472e-02 2.49967009e-01 1.21269159e-01 1.39162913e-01\\n2.33872563e-01 -1.97353989e-01 -9.31975469e-02 2.96579003e-01\\n-1.92320481e-01 -5.83225429e-01 1.63121238e-01 -1.32989911e-02\\n1.93724096e-01 2.93803692e-01 -1.54656455e-01 -2.48165220e-01\\n-2.07820937e-01 -2.17830285e-01 6.53106123e-02 -2.76642561e-01\\n-1.56589165e-01 3.15363616e-01 2.55629003e-01 4.53668274e-02\\n5.58210015e-02 -3.89792979e-01 -1.80715233e-01 -4.64159369e-01\\n3.54249813e-02 -5.17889500e-01 1.66600384e-02 -1.99917495e-01\\n8.24899256e-01 -2.76604742e-01 1.46714419e-01 9.83523726e-02\\n2.15099514e-01 4.38738987e-02 1.14830293e-01 6.81909323e-02\\n-1.61824286e-01 -2.23032728e-01 -1.95522845e-01 -1.36374190e-01\\n6.10514045e-01 3.66834551e-01 -3.70142311e-02 -1.12815261e-01\\n1.70202836e-01 -2.26860926e-01 -4.04349864e-01 -2.30926380e-01\\n-9.46606845e-02 -2.99577475e-01 -5.26724339e-01 -3.45891416e-01\\n-1.07495070e-01 -1.42220378e-01 -1.62838548e-01 5.81643462e-01\\n-4.00863796e-01 -3.24613065e-01 -1.02602258e-01 -4.29318726e-01\\n2.85477668e-01 -2.08131433e-01 -2.74303518e-02 -1.73406973e-01\\n-3.50050002e-01 -5.66657543e-01 -2.20690109e-02 -7.50655681e-02\\n-1.60913914e-01 -4.17465508e-01 1.39559964e-02 -7.89035857e-02\\n-2.75966078e-01 -5.95266819e-01 3.95969659e-01 8.97488445e-02\\n2.76108086e-01 2.31478781e-01 3.34949255e-01 2.43235826e-02\\n3.84296954e-01 -3.48085389e-02 -1.04335777e-01 -2.52733678e-01\\n7.90352970e-02 6.24209642e-05 4.70604599e-01 -3.00321668e-01\\n-3.01844254e-02 7.38041550e-02 -2.16567382e-01 6.17171451e-03\\n3.73950481e-01 -5.70871271e-02 3.21425423e-02 -9.31534469e-02\\n3.58094007e-01 -2.15443060e-01 -9.59355980e-02 1.39634430e-01\\n1.64284959e-01 5.48558414e-01 2.22381204e-04 -4.10339385e-01\\n-5.49609214e-02 5.39321661e-01 -1.71384424e-01 4.04147245e-02\\n-2.52790809e-01 6.71408698e-03 -1.73354775e-01 3.31684709e-01\\n2.29939688e-02 -2.67501891e-01 -1.50031552e-01 -1.64433479e-01\\n-1.29732117e-01 3.56378138e-01 2.89455205e-01 -9.87644494e-03\\n5.33621423e-02 -3.33533257e-01 -1.46737382e-01 2.02087820e-01\\n2.87780106e-01 4.85582888e-01 1.42497241e-01 -2.30159491e-01\\n-1.54986531e-01 3.27715755e-01 -3.05212103e-02 6.83273375e-02\\n-2.77411401e-01 9.84354913e-02 -5.60426474e-01 -2.45150685e-01\\n-3.40586960e-01 -4.57471818e-01 3.09908420e-01 2.96390802e-01\\n1.93297327e-01 -2.79567353e-02 1.68242715e-02 -4.84814733e-01\\n2.53559619e-01 2.29311198e-01 8.67401734e-02 9.65577886e-02\\n-1.83367599e-02 4.81751442e-01 -1.77990459e-02 -1.51028335e-01\\n-6.13336265e-02 4.96961474e-02 -1.62863940e-01 -1.28857881e-01\\n1.36013746e-01 -5.56048393e-01 -1.21822193e-01 4.01461422e-01\\n1.78361565e-01 -2.41204500e-01 -3.50371778e-01 2.38098100e-01\\n-7.46901482e-02 -1.38120472e-01 -3.01481009e-01 -7.78522938e-02\\n3.64065111e-01 6.05226010e-02 2.70697415e-01 -3.44998896e-01\\n-1.00081660e-01 3.53457332e-02 -1.76378191e-01 4.54855680e-01\\n-2.79353037e-02 -6.55786097e-02 -2.75551766e-01 -1.15903333e-01\\n3.84312302e-01 -1.62750870e-01 -7.71391690e-02 2.01012418e-02\\n1.44687697e-01 -2.52256334e-01 -4.08395171e-01 5.50485030e-02\\n-2.44182274e-02 -2.89785624e-01 -4.54139113e-02 2.05413848e-01\\n3.20607126e-02 1.79573059e-01 -6.64706588e-01 -2.79706538e-01\\n-3.47172827e-01 -1.57855153e-01 1.35471314e-01 -3.32170874e-01\\n1.11616030e-02 -1.51936859e-01 -5.85460424e-01 2.02037826e-01\\n-2.33857602e-01 -1.67000219e-01 1.52982950e-01 1.88255444e-01\\n-2.88002372e-01 -2.15857163e-01 7.07886815e-02 3.00652683e-01\\n-3.01800817e-01 -3.06582063e-01 3.27955782e-02 -9.49103117e-01\\n1.51237726e-01 1.06959537e-01 -2.73427993e-01 1.29867047e-01\\n-1.25954658e-01 -5.67539513e-01 -2.70187901e-03 -4.66065466e-01\\n-7.62172639e-02 4.26074117e-03 -2.75106043e-01 -2.68526882e-01\\n1.25605613e-01 -3.63534875e-02 -3.38201106e-01 5.90385437e-01\\n-2.39713579e-01 2.97159076e-01 -2.00981051e-01 6.32197931e-02\\n-4.05335166e-02 -2.06939816e-01 4.79787141e-02 -3.77410114e-01\\n-4.50367928e-01 -2.79206514e-01 -3.24430555e-01 -2.88720042e-01\\n7.29513168e-02 -4.49980557e-01 -9.38795656e-02 1.27719730e-01\\n3.08707356e-01 3.52661163e-02 -6.69995993e-02 -3.36333185e-01\\n1.20317079e-01 -6.10910594e-01 -1.00885108e-02 -3.98753732e-02\\n-1.88447028e-01 -6.01781756e-02 1.39500916e-01 6.99954331e-02\\n2.14711025e-01 -1.92881435e-01 2.83252746e-01 -5.04460454e-01\\n-1.41100675e-01 6.52415305e-03 6.14316985e-02 -1.26327246e-01\\n1.57054693e-01 -5.10943055e-01 3.32886241e-02 4.04096216e-01\\n1.84172601e-01 7.86176044e-03 1.84053227e-01 -9.64846089e-02\\n1.38454735e-02 3.60264897e-01 -2.45273083e-01 7.34435469e-02\\n7.05817223e-01 1.05272770e-01 1.81264430e-01 1.20723128e-01\\n1.86774805e-01 2.46158153e-01 5.45635581e-01 4.24904302e-02\\n-7.89920539e-02 2.18962252e-01 3.06327436e-02 -4.10098195e-01\\n-1.86287947e-02 4.25301977e-02 -2.49770403e-01 -4.11494434e-01\\n6.35590732e-01 4.15606707e-01 -5.70702791e-01 -1.08167760e-01\\n-1.22683778e-01 -8.49220827e-02 2.85244644e-01 -3.27986740e-02\\n-9.70615149e-02 -2.50389948e-02 4.42076862e-01 -1.58618227e-01\\n1.66108638e-01 4.65281546e-01 -1.79365739e-01 -2.17780143e-01\\n-8.96031857e-02 2.29684085e-01 2.10076999e-02 6.10326648e-01\\n-2.15045214e-01 3.84999216e-01 -4.10412960e-02 3.08759734e-02\\n-7.95201883e-02 2.24118471e-01 2.07123190e-01 1.27009720e-01\\n3.00675213e-01 -1.00370824e-01 4.99070823e-01 4.32720244e-01\\n1.68665707e-01 4.49966490e-01 3.20463508e-01 1.01850949e-01\\n3.92724097e-01 5.18780708e-01 3.37164134e-01 1.85537606e-01\\n-2.94519439e-02 1.85228959e-01 1.93825006e-01 -4.55904901e-02\\n4.29522157e-01 3.75671625e-01 5.81753589e-02 8.86701941e-01\\n3.31846833e-01 4.05257344e-01 7.13368833e-01 -6.92930818e-01\\n-4.08669174e-01 2.39533588e-01 5.05235851e-01 -3.08072239e-01\\n3.77252102e-02 1.59508780e-01 -1.69029504e-01 2.58641511e-01\\n-4.29258943e-01 -2.63436735e-01 -1.86553225e-02 2.78958142e-01\\n-5.74850589e-02 -2.66052961e-01 -2.77419329e-01 1.05503559e-01\\n-2.24513933e-02 4.01349887e-02 -4.79153514e-01 -1.60319269e-01\\n-2.52722114e-01 -1.18680969e-01 -1.19232081e-01 -9.07109380e-02\\n3.99960987e-02 -3.42873454e-01 1.81955472e-02 -3.69969048e-02\\n2.98058689e-01 -1.79092824e-01 -1.20981731e-01 -1.38574302e-01\\n2.70347595e-01 2.77954906e-01 4.83906150e-01 -1.87783390e-02\\n9.00344551e-02 -2.30700612e-01 -2.22805068e-01 1.74296543e-01\\n1.16220593e-01 2.99101267e-02 1.43809114e-02 1.35847509e-01\\n-1.87098280e-01 -2.41374403e-01 2.00182676e-01 3.00834507e-01\\n-4.77595150e-01 -4.74525802e-02 -1.81763530e-01 1.72846913e-01\\n1.10419430e-01 2.42714167e-01 -1.92542121e-01 1.40764371e-01\\n-2.17416227e-01 -3.97935569e-01 2.40891814e-01 -1.31820142e-01\\n-9.15689915e-02 1.11068368e-01 3.31274390e-01 1.43759787e-01\\n-2.63186932e-01 -4.85299528e-03 -1.56927884e-01 2.31594503e-01\\n-3.17130610e-02 2.27894485e-01 -1.29941285e-01 -4.01979715e-01\\n-1.83858126e-01 1.13327384e-01 -1.76448286e-01 1.18976891e-01\\n1.83977336e-02 3.92277896e-01 1.29125327e-01 2.79327072e-02\\n5.19391060e-01 1.68753807e-02 -2.69162893e-01 -2.31084645e-01\\n-1.80346817e-01 -1.44831434e-01 -1.77088588e-01 2.68146582e-02\\n1.62462294e-01 -3.55977535e-01 -8.23326260e-02 -1.59328684e-01\\n-1.95772126e-02 -3.44549417e-01 7.99285024e-02 -3.76709290e-02]]',\n", + " \"At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology's computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people's advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from AirBnB, Twitter, SalesForce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! What You Will Do You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Who You Are You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization (for example using matplotlib or Grafana). You are always curious to try out new tools and libraries for the analysis and visualization of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. The Bounty A dynamic, young company where input is welcomed and acted upon High level of personal responsibility and independence A challenging and exciting mission within an innovative and multi-cultural environment The opportunity to work with some of the smartest and most innovative people in the market If this sounds like you, let’s solve the riddle and apply (written in English or German) - We’re very excited to meet you.\",\n", + " '[\"Communications\", \"Writing\", \"Proactivity\", \"Innovation\"]',\n", + " '[\"MySQL\", \"NoSQL\", \"Matplotlib\", \"Accessioning\", \"Advising\", \"Corporate Communications\", \"Tooling\", \"Agility\", \"Acting\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Levelling\", \"Data Visualization\", \"Machine Learning Methods\", \"Personalization\", \"Machine Learning Algorithms\", \"Scalability\", \"Human Intelligence\", \"Electronic Data Processing\", \"Humanism\", \"Grafana\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\"]',\n", + " \"['English', 'Igbo', 'Haitian Creole', 'Ossetian']\"],\n", + " ['75',\n", + " 'data engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.67797947e-01 2.23471791e-01 4.00910944e-01 6.60025477e-02\\n4.51178789e-01 -1.60052434e-01 -4.33489904e-02 3.22025806e-01\\n-4.20162939e-02 -3.31416547e-01 -8.76895636e-02 -2.47032136e-01\\n-2.10814163e-01 -3.71526442e-02 1.36083215e-01 3.43277901e-01\\n2.37768203e-01 4.16596793e-02 -2.08039641e-01 4.03111547e-01\\n1.70221850e-01 -6.05691634e-02 -1.05087072e-01 6.33610129e-01\\n4.41274971e-01 -2.94557642e-02 -1.15809128e-01 1.13996059e-01\\n-2.87302226e-01 -2.54846573e-01 3.05405200e-01 8.84429738e-02\\n-1.69397458e-01 -3.05417150e-01 1.47818867e-02 4.07998487e-02\\n-2.44649887e-01 -1.04152469e-03 4.66951169e-03 6.13861196e-02\\n-3.48051578e-01 -2.23278031e-01 5.07878624e-02 4.31966893e-02\\n-2.82808661e-01 -9.71495435e-02 2.01909672e-02 -2.21097730e-02\\n-1.27192782e-02 -9.23128873e-02 -6.59017086e-01 3.31288338e-01\\n-1.40265882e-01 -1.83420226e-01 1.09576568e-01 5.83908558e-01\\n1.98290544e-03 -4.04767334e-01 -3.87102842e-01 -2.89809257e-01\\n1.35247007e-01 -2.16276467e-01 6.57130778e-02 -1.14801764e-01\\n3.52104306e-01 -9.03733894e-02 -5.35969585e-02 3.61968458e-01\\n-7.29113400e-01 -5.19596972e-02 -2.22733900e-01 -1.88204050e-02\\n-4.34211642e-01 -3.05513880e-04 -3.08144540e-01 -1.21608019e-01\\n2.03670319e-02 3.20350826e-01 -1.70711521e-02 4.30752486e-02\\n-2.22143382e-01 2.90817350e-01 -1.21098213e-01 1.38132423e-01\\n4.09360260e-01 7.93099329e-02 1.71572760e-01 2.89205283e-01\\n-3.67796600e-01 4.06137645e-01 1.76369354e-01 -2.26075575e-01\\n2.64288425e-01 5.71912490e-02 4.61939514e-01 1.89347193e-01\\n-7.30676437e-03 2.42747933e-01 -1.10216148e-01 8.54381695e-02\\n3.98344137e-02 -3.41422319e-01 -1.79002918e-02 -3.56222615e-02\\n-1.43234879e-01 2.21951399e-02 -5.18862456e-02 3.19259286e-01\\n-1.76601782e-01 3.18402827e-01 2.23282218e-01 -1.07775196e-01\\n-7.89660141e-02 -4.68496442e-01 -1.26487955e-01 -1.60033986e-01\\n-4.27119732e-02 2.23144561e-01 2.60704845e-01 1.66987866e-01\\n1.86610654e-01 9.71528515e-02 2.18462631e-01 8.00689101e-01\\n-4.48031165e-03 1.06541850e-01 -1.76476419e-01 3.06832701e-01\\n1.59232616e-01 -2.49827519e-01 1.89750388e-01 2.77458876e-01\\n9.35676396e-02 -1.22085288e-01 -2.16007560e-01 1.58703744e-01\\n-2.15921849e-01 -3.74143310e-02 -2.12726012e-01 2.21460499e-02\\n-2.16539219e-01 -3.57765257e-01 4.19000089e-01 1.11413062e-01\\n2.16552287e-01 -1.34026865e-02 -3.94888717e-04 -1.05093077e-01\\n-8.73542130e-02 3.71256143e-01 -1.46127529e-02 3.37312222e-01\\n-4.18039948e-01 -2.10448310e-01 -7.75991604e-02 2.95682341e-01\\n-1.58863351e-01 1.15588963e-01 -1.65058643e-01 -2.10225061e-01\\n2.78614730e-01 3.46534587e-02 -3.10401320e-01 1.83094785e-01\\n-4.65594083e-02 -4.16222543e-01 -1.58331588e-01 2.98271388e-01\\n-3.29631492e-02 1.27015144e-01 5.26152626e-02 -1.82372928e-01\\n6.29623175e-01 1.92471012e-01 1.07908539e-01 -6.61031678e-02\\n3.19745332e-01 -7.49123245e-02 3.55591238e-01 8.91814604e-02\\n-5.26224732e-01 4.12394524e-01 -1.60990935e-02 -1.69356316e-01\\n2.62306002e-03 2.07843482e-02 3.74766141e-01 -3.27357173e-01\\n9.34685320e-02 -1.73781916e-01 -4.70794380e-01 -2.59786397e-01\\n-2.78950334e-01 3.41511033e-02 3.85021538e-01 -2.75733888e-01\\n-6.48614094e-02 2.46651396e-01 -4.45668548e-01 -1.81318551e-01\\n1.89138517e-01 7.84897953e-02 9.69058350e-02 7.48905689e-02\\n-7.38354847e-02 -5.24585605e-01 -8.26326087e-02 -4.45159078e-01\\n-5.17321527e-01 -3.54410261e-02 -2.24817425e-01 2.42991790e-01\\n1.47308305e-01 9.67766996e-03 -1.88144803e-01 1.77613005e-01\\n-3.54377508e-01 -3.27556469e-02 2.57643461e-01 6.54469803e-02\\n1.75178885e-01 -7.47319357e-03 -3.08972120e-01 3.97107095e-01\\n-2.74316519e-01 6.21097982e-01 2.42447779e-01 -7.90080607e-01\\n5.89994371e-01 2.81308055e-01 9.10473764e-02 -3.89502436e-01\\n3.09972197e-01 -3.85160208e-01 -2.08904687e-03 8.89401585e-02\\n-1.79994002e-01 -1.69516534e-01 3.50803167e-01 -1.60228685e-01\\n-2.77780324e-01 6.41886353e-01 1.03732437e-01 2.53467523e-02\\n2.36841872e-01 -3.64335686e-01 -7.16308281e-02 -2.84800418e-02\\n-9.83648375e-02 -2.47787789e-01 -3.41533661e-01 1.31170645e-01\\n-9.32423621e-02 -4.44773287e-01 -1.49822280e-01 -3.11181307e-01\\n-2.30936065e-01 -4.87669766e-01 -2.25363195e-01 4.50076222e-01\\n1.49685964e-01 1.42613038e-01 -4.96385917e-02 -1.81966685e-02\\n1.36549529e-02 -5.99976838e-01 -7.34489337e-02 9.47304070e-03\\n4.76299405e-01 2.57889718e-01 1.39223829e-01 -1.35562852e-01\\n1.41419232e-01 4.68498826e-01 -3.53928566e-01 -4.09420639e-01\\n2.37768337e-01 1.15763500e-01 -3.72259542e-02 -1.95339158e-01\\n3.34629081e-02 4.10877854e-01 -2.02467889e-01 -1.79471858e-02\\n-1.26893923e-01 -1.49718165e-01 3.47931445e-01 -1.51102534e-02\\n-3.19577783e-01 -1.08347990e-01 -7.27307657e-03 2.72979230e-01\\n-4.49135751e-01 -2.46639520e-01 5.42416453e-01 3.98168892e-01\\n1.36538386e-01 1.27742499e-01 1.12311460e-01 -9.96753201e-02\\n-1.93266422e-01 -3.35938215e-01 8.64637867e-02 2.40367979e-01\\n8.43850821e-02 -3.87400463e-02 -1.90104753e-01 -5.56322873e-01\\n-3.69337487e+00 -1.63776234e-01 1.43786415e-01 -3.81054252e-01\\n2.06410229e-01 -9.68072489e-02 2.62022931e-02 1.11974012e-02\\n-2.63745606e-01 1.15979388e-01 -2.01782152e-01 -7.85088465e-02\\n2.94370651e-02 3.29896450e-01 2.34507173e-01 1.84024155e-01\\n5.95688745e-02 -2.61302769e-01 -5.73425554e-02 3.71333152e-01\\n-5.03593795e-02 -6.14534438e-01 1.24278381e-01 1.87210017e-03\\n1.00997366e-01 1.97617933e-01 -3.10930640e-01 -1.19962715e-01\\n-2.10120022e-01 -2.94915229e-01 -1.51621699e-02 -2.48954877e-01\\n-1.69448391e-01 3.72111082e-01 5.21857999e-02 -4.23500985e-02\\n4.01084833e-02 -3.18437845e-01 -2.54789889e-02 -5.08560956e-01\\n5.85316401e-03 -6.77423179e-01 1.14051089e-01 -9.27477255e-02\\n6.26634777e-01 -2.04441667e-01 2.37691104e-01 1.81015015e-01\\n1.85380176e-01 1.66850746e-01 -1.01600438e-01 4.48440127e-02\\n-2.74803817e-01 -2.88138479e-01 -1.48141071e-01 -1.82555124e-01\\n5.44281840e-01 4.60853070e-01 -1.63479239e-01 -9.73954331e-03\\n-3.04917921e-03 -4.07680035e-01 -2.63288647e-01 -4.65468168e-01\\n-8.13349187e-02 -8.30012262e-02 -6.51311815e-01 -4.02418256e-01\\n-1.22329570e-01 -4.42776456e-02 -2.22788736e-01 5.23384273e-01\\n-3.65139037e-01 -3.91743600e-01 4.20902483e-02 -5.80897868e-01\\n3.78203876e-02 -1.85655683e-01 1.49634540e-01 -1.41371742e-01\\n-3.77738804e-01 -5.68372190e-01 1.20845668e-01 -1.18554734e-01\\n-2.34674156e-01 -2.11344063e-01 -2.36584130e-03 -2.99374372e-01\\n-2.80318290e-01 -4.15226221e-01 3.84455293e-01 -4.92049530e-02\\n3.91524047e-01 1.26609579e-01 2.98707873e-01 2.12086186e-01\\n3.03440601e-01 -4.67665754e-02 1.16511777e-01 -3.29060584e-01\\n2.00413942e-01 -1.85932778e-02 5.43922842e-01 -2.49078721e-01\\n9.82037708e-02 9.41581950e-02 -2.64304966e-01 -2.75364183e-02\\n5.40788710e-01 -3.99653800e-03 1.93808861e-02 -1.64949987e-02\\n3.36027443e-01 -4.08705115e-01 -2.09126711e-01 2.09135607e-01\\n-4.97579798e-02 5.72948873e-01 1.29105657e-01 -5.01892924e-01\\n-2.06853330e-01 4.43669766e-01 -7.59076327e-02 -8.61080289e-02\\n-9.91872475e-02 8.09957460e-02 -7.33947307e-02 1.63370013e-01\\n6.00946061e-02 -2.33655080e-01 -2.95648515e-01 -1.35013804e-01\\n-6.15836978e-02 1.17240466e-01 2.38325015e-01 -5.51117137e-02\\n-1.99102554e-02 -2.01080456e-01 -2.01219350e-01 1.22054115e-01\\n1.74229860e-01 2.68598408e-01 1.90046325e-01 -2.74984509e-01\\n-5.24078496e-02 1.79890126e-01 -1.55673400e-01 1.60794437e-01\\n-2.00274527e-01 5.35562523e-02 -5.16639054e-01 -2.06482917e-01\\n-1.58929572e-01 -3.17928314e-01 1.32115662e-01 2.96791464e-01\\n6.02102131e-02 4.17283326e-02 2.82371119e-02 -5.39916754e-01\\n4.95594025e-01 6.53089806e-02 1.43148392e-01 1.60298675e-01\\n-2.68529961e-03 5.05960226e-01 1.14684761e-01 -6.14009760e-02\\n-1.87138498e-01 2.29834039e-02 -2.01711431e-01 -2.71626443e-01\\n3.46828140e-02 -3.17117035e-01 -1.00121409e-01 4.92019385e-01\\n1.59876660e-01 -1.32024378e-01 -2.25127891e-01 3.72372061e-01\\n1.18085317e-01 -2.40831897e-01 -1.76068798e-01 -2.89492942e-02\\n2.08372012e-01 1.20956302e-01 1.94963142e-01 -2.16614351e-01\\n-2.61022784e-02 -8.70102197e-02 -7.08626071e-03 3.36905390e-01\\n1.94389701e-01 7.35511035e-02 -7.64497519e-02 -1.53016269e-01\\n4.58581030e-01 5.59847839e-02 -6.08831681e-02 -1.65696517e-01\\n9.95559096e-02 -2.62825757e-01 -3.97872299e-01 -1.94238068e-03\\n-5.95389158e-02 -1.01133421e-01 1.60148770e-01 1.25008002e-01\\n3.96537706e-02 1.54154813e-02 -3.90044034e-01 -2.79293269e-01\\n-3.60540301e-01 -1.24080732e-01 8.27158615e-02 -3.56727749e-01\\n-4.55062389e-02 -6.05232306e-02 -4.64224815e-01 2.10935980e-01\\n-4.01233643e-01 4.15407643e-02 7.23638535e-02 1.53081492e-01\\n-2.57607490e-01 -4.27092351e-02 1.08795553e-01 6.51561320e-02\\n-3.54988337e-01 -3.29407960e-01 1.26773909e-01 -9.28427517e-01\\n1.67723745e-01 1.96561769e-01 -3.44602875e-02 -1.55226199e-03\\n1.09036975e-01 -6.36497498e-01 1.61105439e-01 -4.26888585e-01\\n1.05616413e-01 4.05931234e-04 -1.88681155e-01 -2.73973823e-01\\n1.62852600e-01 -1.00772627e-01 -3.52348536e-01 3.87083381e-01\\n-4.61221576e-01 3.51978183e-01 9.38664228e-02 6.84182718e-02\\n7.64034986e-02 -2.53411740e-01 1.75714374e-01 -3.40284735e-01\\n-4.29301560e-01 -2.24903360e-01 -3.30237448e-01 -1.54149592e-01\\n5.38503751e-02 -2.00843215e-01 -2.45545268e-01 7.89161026e-02\\n3.30360889e-01 1.71384543e-01 -1.29133791e-01 -2.18829438e-01\\n1.08130381e-01 -4.95836943e-01 1.16221733e-01 -3.26887399e-01\\n-1.16304263e-01 -5.76153398e-02 3.00758183e-01 -1.56565532e-01\\n5.31830899e-02 -2.81658053e-01 4.26793575e-01 -3.11241955e-01\\n-2.71720976e-01 -4.59338464e-02 1.01968668e-01 -7.16905892e-02\\n1.45672590e-01 -4.57317263e-01 3.12555470e-02 2.70734072e-01\\n1.32438913e-01 6.28941581e-02 2.46170357e-01 -4.05789586e-03\\n-9.49488506e-02 1.78450167e-01 -5.44815004e-01 5.24001531e-02\\n6.91090763e-01 1.69623137e-01 7.48366043e-02 8.68535340e-02\\n1.50660098e-01 2.83188760e-01 5.35532236e-01 2.37548221e-02\\n-3.09827365e-02 2.99476624e-01 9.03341025e-02 -4.79859799e-01\\n-1.52367786e-01 -1.66652322e-01 -8.78164992e-02 -1.97070032e-01\\n6.38488710e-01 3.80464464e-01 -3.72917473e-01 -2.29878083e-01\\n8.21522772e-02 -1.43523201e-01 2.50231743e-01 -3.44545096e-02\\n3.76161039e-02 -7.44454190e-02 5.78416288e-01 2.50652209e-02\\n2.16585264e-01 5.06911218e-01 -1.52659804e-01 -2.96991378e-01\\n-8.45757574e-02 1.06747963e-01 7.21454173e-02 4.76534367e-01\\n-1.40232623e-01 2.59127319e-01 -1.42270356e-01 -7.90941820e-04\\n-3.93212819e-03 2.01537639e-01 2.06707999e-01 1.61194891e-01\\n2.01165214e-01 7.32801035e-02 2.60496020e-01 4.71797585e-01\\n4.63180467e-02 5.54212332e-01 3.23379546e-01 1.28445821e-02\\n2.21289441e-01 5.24292350e-01 3.87407839e-01 1.22009382e-01\\n6.01734519e-02 6.76943213e-02 8.94347578e-02 -1.14824669e-02\\n4.68205124e-01 3.65374535e-01 2.90794611e-01 7.64046490e-01\\n3.87103081e-01 3.75415742e-01 7.26685822e-01 -6.68643713e-01\\n-4.36016977e-01 1.07743621e-01 5.78226507e-01 -1.24268800e-01\\n-9.03415605e-02 1.90058395e-01 -3.47007841e-01 1.80975363e-01\\n-5.37259579e-01 -1.76500216e-01 -3.97830941e-02 -2.05528475e-02\\n-2.32658442e-03 -1.03210472e-03 -1.76454470e-01 1.98495910e-01\\n-1.05690494e-01 -1.38507873e-01 -2.74312347e-01 -1.26081422e-01\\n-2.80884147e-01 -7.93290511e-02 -1.80702824e-02 -6.78007528e-02\\n-1.48820654e-01 -3.68472666e-01 -9.13524479e-02 -1.14657842e-02\\n2.50791430e-01 -4.96716239e-02 -1.89514220e-01 -1.81325763e-01\\n4.97623645e-02 3.23022097e-01 4.71461177e-01 -4.84294556e-02\\n6.59601614e-02 -4.97369952e-02 -2.96217740e-01 3.70041616e-02\\n9.85562876e-02 3.69052812e-02 8.67016017e-02 3.52564514e-01\\n-2.44759515e-01 -1.91772345e-03 1.43200666e-01 1.97785825e-01\\n-3.84503931e-01 -1.36229873e-01 -2.13089678e-02 2.03736588e-01\\n5.80881462e-02 2.01550514e-01 -3.02562445e-01 7.95227364e-02\\n-1.94044858e-01 -5.14495015e-01 4.06036586e-01 -1.99358016e-01\\n-1.55591458e-01 2.89814860e-01 2.14947715e-01 2.28401542e-01\\n-2.76465029e-01 -4.57266569e-02 2.67718732e-02 4.03959721e-01\\n-1.41844347e-01 3.37766737e-01 -9.47164148e-02 -1.59037367e-01\\n-2.48790622e-01 2.94329971e-01 -3.88579653e-03 2.14141756e-01\\n-1.37548029e-01 3.46162856e-01 -5.80042154e-02 2.30532996e-02\\n2.13627920e-01 -1.33272521e-02 -2.56644666e-01 -2.25053698e-01\\n-3.67999971e-01 -1.66745424e-01 8.17715675e-02 3.93622220e-02\\n1.78500384e-01 -3.11841756e-01 -6.43162429e-02 -1.23821184e-01\\n-1.48856580e-01 -2.35033602e-01 -1.34016871e-01 1.90982834e-01]]',\n", + " 'Job Informationen Responsibilities: - Understand real estate market and urban related data - Extract, cleanup, structure and transform complex raw and processed datasets to extract insights from it - Retrieve a wide variety of datasets and integrate them into the data pipeline - Create and maintain an efficient data infrastructure - Continuously provide new ideas to improve our engines and products REQUIREMENTS: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with the ETL and data processing tools we’re using is a strong advantage: - Python, Pandas - Luigi and PySpark - PostgreSQL and PostGIS - Scikit-learn and Tensorflow - Working experience with cloud providers (Google cloud, AWS or Azure) - Advanced knowledge of relational databases - Experience with Docker and Kubernetes orchestration is a strong advantage - Understanding of core machine learning concepts is an advantage - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Comfortable working in English and German; you have a great read, good spoken command of it Benötigte Skills Englisch CLOUD PostgreSQL Python ETL',\n", + " '[\"Real Estate\", \"Integration\"]',\n", + " '[\"Control Systems\", \"MSC Software\", \"Kubernetes\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Product Requirements\", \"Luigi (Python Package)\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Scikit-learn (Machine Learning Library)\", \"Pyspark\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"Data Extraction\", \"Maintainability\", \"Data Pipeline\", \"Urbanization\", \"Dataset\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Machine Learning Methods\", \"Docker (Software)\", \"TensorFlow\", \"Google Cloud\", \"Electronic Data Processing\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Infrastructure\", \"Data Structures\", \"Relational Databases\", \"Algorithms\", \"Pandas (Python Package)\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English', 'Bambara', 'Danish', 'Pushto', 'Bengali']\"],\n", + " ['15',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-9.98998433e-02 1.97152644e-01 4.99470174e-01 -1.87371280e-02\\n5.57983756e-01 -4.58676927e-02 2.19857134e-02 2.63412774e-01\\n5.93734831e-02 -3.48637283e-01 9.23671760e-03 -2.26297766e-01\\n-4.41474877e-02 1.25425667e-01 1.01614155e-01 3.50094080e-01\\n2.28653610e-01 1.43700704e-01 -1.61327466e-01 2.42487073e-01\\n2.60273933e-01 -2.27474153e-01 1.46380231e-01 7.42537141e-01\\n3.51047695e-01 7.53103048e-02 -1.22040108e-01 -8.72733742e-02\\n-2.35802457e-01 -2.19702959e-01 4.60112602e-01 2.73665488e-02\\n-1.78154372e-02 -3.69986176e-01 1.52367219e-01 4.63702492e-02\\n-3.02975923e-01 -2.78775506e-02 -7.84548894e-02 2.49695569e-01\\n-6.48348093e-01 -2.75886148e-01 -2.66547129e-02 4.19582352e-02\\n-2.34154552e-01 -2.63983905e-01 -3.10796387e-02 -7.76615739e-02\\n8.40050429e-02 8.83230641e-02 -5.07604837e-01 2.41512030e-01\\n-1.24171391e-01 -2.28536963e-01 2.48472199e-01 6.91273987e-01\\n-4.50681038e-02 -4.41353738e-01 -5.37199080e-01 -3.11479896e-01\\n8.33623931e-02 -1.95348561e-01 6.43659532e-02 -2.55740345e-01\\n2.96868801e-01 2.51846164e-02 1.24646239e-01 3.39337111e-01\\n-6.92676008e-01 -9.81176551e-03 -2.06226423e-01 7.86596071e-03\\n-2.53300458e-01 -8.06198344e-02 -2.65956372e-01 -1.03259161e-01\\n-1.63169637e-01 5.04333436e-01 1.56563893e-01 -2.13129390e-02\\n-6.97189122e-02 2.04713434e-01 -2.66840726e-01 2.91900247e-01\\n1.95358247e-01 2.55060107e-01 1.41678452e-01 2.92000473e-01\\n-3.24760646e-01 4.51508760e-01 8.28409120e-02 -2.80482441e-01\\n2.31827781e-01 6.45272881e-02 4.46475387e-01 -7.59381279e-02\\n9.55346152e-02 8.09905306e-02 -2.48376578e-01 2.68496335e-01\\n2.35486105e-01 -2.48794243e-01 7.69232213e-02 -8.61431807e-02\\n-1.40916556e-01 -5.14186770e-02 -4.72015655e-03 2.14406341e-01\\n-1.84699848e-01 3.66772532e-01 2.04026341e-01 -5.82609437e-02\\n-1.51278481e-01 -5.49873054e-01 1.88134611e-02 5.32678403e-02\\n6.83155656e-02 2.22340986e-01 1.91423163e-01 7.53043741e-02\\n1.86959937e-01 5.27589358e-02 1.90087140e-01 8.44816625e-01\\n2.61658803e-02 1.23406202e-01 -2.85340935e-01 2.81537175e-01\\n1.05313189e-01 -1.68594822e-01 1.16564445e-01 1.91351876e-01\\n8.37723389e-02 -9.97206122e-02 -2.76905566e-01 3.22454602e-01\\n-7.89886340e-02 -2.12458119e-01 -1.41082928e-01 2.16886789e-01\\n-7.93813765e-02 -3.31747264e-01 5.10200918e-01 1.48076490e-01\\n1.31854162e-01 -5.91597967e-02 8.79621319e-03 -1.36009589e-01\\n-1.59676716e-01 1.80109471e-01 5.42135425e-02 1.47959471e-01\\n-3.39210600e-01 -2.66746342e-01 -2.66191065e-01 1.06226690e-01\\n-3.05226713e-01 9.95913744e-02 -5.22824898e-02 -8.04561824e-02\\n2.76378810e-01 1.74293458e-01 -2.94111192e-01 2.37864852e-01\\n-8.44585299e-02 -1.09393433e-01 1.25585094e-01 3.02391976e-01\\n-2.31247544e-01 1.81893796e-01 1.20371310e-02 -1.93199307e-01\\n5.66395700e-01 1.66991785e-01 2.37456560e-01 9.21028107e-02\\n2.88263500e-01 -6.08759522e-02 1.05367444e-01 2.27070495e-01\\n-5.73513687e-01 3.11017722e-01 -1.05044939e-01 -7.21694678e-02\\n1.82422280e-01 -6.32762685e-02 3.83740097e-01 -3.05233240e-01\\n1.57807574e-01 -1.17152251e-01 -3.57045382e-01 -2.67231077e-01\\n-1.65865228e-01 1.71132118e-01 3.61724347e-01 -4.38111156e-01\\n-2.45524123e-02 3.20603430e-01 -4.49311018e-01 -1.78323194e-01\\n1.68470204e-01 1.88515052e-01 1.43587887e-01 8.76417011e-02\\n-2.38418832e-01 -4.36608940e-01 -2.54167058e-03 -3.21836710e-01\\n-3.00735235e-01 5.79095706e-02 -2.60441244e-01 2.78234243e-01\\n5.49001098e-02 6.52710944e-02 -1.32333368e-01 1.48784906e-01\\n-1.94907054e-01 -5.45627922e-02 1.67649865e-01 2.76614223e-02\\n2.20458657e-01 7.26060793e-02 -3.43278468e-01 3.71006191e-01\\n-1.22606680e-01 5.54795384e-01 1.31609350e-01 -8.16452086e-01\\n4.77201194e-01 2.66264230e-01 -1.40279502e-01 -3.60791326e-01\\n5.56011319e-01 -2.08606049e-01 4.72614579e-02 1.61297396e-01\\n-3.17924023e-01 -3.60303968e-01 3.37640136e-01 -1.41066924e-01\\n-2.24926263e-01 4.85480428e-01 1.72831804e-01 1.30888209e-01\\n1.59585848e-01 -2.51462340e-01 -1.17638201e-01 3.39746214e-02\\n-1.53288677e-01 -2.30060682e-01 -5.00312567e-01 -2.85034962e-02\\n-1.40911520e-01 -3.92224193e-01 -7.19712824e-02 -3.09450299e-01\\n-2.25271046e-01 -3.30438226e-01 -1.03796020e-01 1.81441441e-01\\n3.11140209e-01 2.38120362e-01 1.24966754e-02 8.45534634e-03\\n-1.26339896e-02 -6.34600580e-01 -8.67870599e-02 8.32965896e-02\\n3.69247437e-01 1.30257577e-01 1.44248337e-01 4.63810451e-02\\n-4.26720902e-02 5.18113732e-01 -1.74384668e-01 -1.52194649e-01\\n1.39776304e-01 1.27821162e-01 8.16736668e-02 -6.81443959e-02\\n1.47215068e-01 3.12286437e-01 -2.22207084e-01 9.18604061e-02\\n-9.47456062e-02 -4.78177592e-02 3.32185388e-01 4.27488200e-02\\n-3.00677687e-01 -2.40568906e-01 -1.16933428e-01 1.17763579e-01\\n-4.97554302e-01 -2.18924999e-01 4.79001731e-01 1.79978967e-01\\n1.86108798e-01 1.39620975e-01 1.27440870e-01 -1.33280292e-01\\n-1.72111884e-01 -2.58254677e-01 3.32453758e-01 2.68188287e-02\\n1.86541125e-01 1.00505784e-01 -1.40593783e-03 -5.70831895e-01\\n-3.43930721e+00 -1.65340841e-01 1.24765515e-01 -2.75352001e-01\\n1.88078478e-01 -1.52135253e-01 7.20741153e-02 1.50343459e-02\\n-2.77613133e-01 5.70858717e-02 -5.00585400e-02 -9.10519809e-02\\n1.16038486e-01 1.80958629e-01 1.49729788e-01 2.29187727e-01\\n7.46175274e-02 -2.11780906e-01 -4.57385108e-02 3.57682198e-01\\n-3.16253662e-01 -6.25500679e-01 1.54034004e-01 -7.84544945e-02\\n1.74763709e-01 1.97557971e-01 -3.36236060e-01 -1.76586166e-01\\n-2.41786540e-01 -2.16673508e-01 7.88787380e-02 -2.43224978e-01\\n-1.20544150e-01 3.38597059e-01 1.77966803e-01 -2.47339476e-02\\n1.11569829e-01 -2.90177077e-01 5.41986723e-04 -4.14874434e-01\\n9.85726193e-02 -6.58646047e-01 -6.86026737e-02 -1.47949070e-01\\n6.62897587e-01 -3.05703431e-01 1.22703440e-01 6.12274371e-02\\n2.06132039e-01 1.19932771e-01 4.71950769e-02 -8.91026780e-02\\n-2.39108741e-01 -2.38231212e-01 -8.04287642e-02 -6.82279766e-02\\n3.29306543e-01 5.55606902e-01 -1.41079843e-01 -1.01776652e-01\\n-3.85066979e-02 -3.50557536e-01 -4.77627426e-01 -3.50319862e-01\\n-9.72887576e-02 -1.90136760e-01 -6.05422676e-01 -4.35974300e-01\\n-1.58704817e-01 -1.14522755e-01 -7.50512406e-02 5.06284535e-01\\n-2.83337206e-01 -3.42575222e-01 -1.72541335e-01 -5.07660031e-01\\n2.49455258e-01 -1.48055673e-01 -7.63515681e-02 -2.82965839e-01\\n-3.32825184e-01 -4.41049308e-01 1.95053592e-01 3.88801955e-02\\n-1.13154590e-01 -2.56487221e-01 6.71961308e-02 -2.27691740e-01\\n-3.09614331e-01 -4.63464409e-01 3.23200345e-01 5.41589968e-02\\n2.99706787e-01 1.30259842e-01 3.71802628e-01 -3.51815447e-02\\n3.12345922e-01 -9.61680785e-02 6.74147159e-02 -3.34052265e-01\\n7.97658637e-02 4.60403524e-02 4.11679924e-01 -3.23985666e-01\\n-3.62232290e-02 1.71932250e-01 -3.28969419e-01 -3.26989926e-02\\n2.89494783e-01 -9.97728482e-02 -1.23855107e-01 -1.44535854e-01\\n3.90606403e-01 -3.52675945e-01 -1.79764166e-01 6.33004233e-02\\n1.44868657e-01 4.92709488e-01 2.34151129e-02 -3.45968008e-01\\n-2.04053819e-01 3.97915274e-01 -7.78415129e-02 -1.48245245e-01\\n-8.86551812e-02 -2.49728188e-03 -2.12938026e-01 3.16476256e-01\\n-1.77277252e-02 -1.79964960e-01 -2.90927500e-01 -1.78654149e-01\\n-8.60887468e-02 3.54264438e-01 2.16819718e-01 4.51311760e-04\\n-1.32116392e-01 -3.00597429e-01 -2.19884798e-01 2.64676422e-01\\n1.64699480e-01 3.21614355e-01 1.40138313e-01 -1.95295036e-01\\n-2.37670150e-02 2.58300990e-01 -1.36433095e-01 1.72529817e-01\\n-2.48085856e-01 3.23181525e-02 -5.37817240e-01 -4.53125745e-01\\n-1.39257535e-01 -3.71102333e-01 1.85846046e-01 3.53551596e-01\\n2.64122963e-01 6.88541157e-04 -7.74141215e-03 -5.03653347e-01\\n2.46722594e-01 -1.52597893e-02 1.61403954e-01 6.18723258e-02\\n-4.11908515e-02 6.14995658e-01 1.61009490e-01 -1.54791683e-01\\n-8.38213041e-02 7.44742947e-03 -2.00097844e-01 -5.44463545e-02\\n1.46256775e-01 -3.91793877e-01 -1.51044086e-01 4.78571475e-01\\n1.16849549e-01 -3.17656100e-01 -1.38495415e-01 2.61488706e-01\\n-2.01293789e-02 -2.65987962e-01 -2.15953991e-01 5.71088158e-02\\n2.97512233e-01 1.60917565e-01 3.70271653e-01 -4.22141343e-01\\n1.48862042e-02 4.91659604e-02 -1.52740777e-01 4.59558755e-01\\n3.32085118e-02 -1.00646392e-02 -2.21461520e-01 -8.65842104e-02\\n3.60315889e-01 -8.66901129e-02 3.67928483e-02 1.07094266e-01\\n-1.62132233e-02 -1.87189251e-01 -5.38501203e-01 5.40643185e-02\\n-3.55087519e-02 -2.22213075e-01 -1.66446492e-02 2.31658742e-01\\n1.52707584e-02 3.75772780e-03 -5.79141438e-01 -2.82765359e-01\\n-1.65417030e-01 7.92880580e-02 1.15879089e-01 -4.19070035e-01\\n-1.13906212e-01 -3.97933498e-02 -5.43984115e-01 2.10181311e-01\\n-6.32139966e-02 -2.52097193e-02 1.64730832e-01 7.40281269e-02\\n-1.58122644e-01 -2.38359757e-02 1.15754612e-01 2.27616131e-01\\n-1.98546410e-01 -1.89981088e-01 3.97958932e-03 -9.69584465e-01\\n7.49571174e-02 -5.12979068e-02 -2.74407089e-01 3.77369151e-02\\n1.05678476e-02 -6.32331550e-01 6.70341551e-02 -4.01552588e-01\\n-7.78725445e-02 -5.10341302e-03 -2.73104459e-01 -2.77397186e-01\\n5.93604259e-02 9.77364853e-02 -3.69456828e-01 3.73389304e-01\\n-2.99965501e-01 3.83564740e-01 -6.55236393e-02 8.77982825e-02\\n8.50875601e-02 -3.14839125e-01 1.07931159e-01 -3.36971015e-01\\n-3.05370301e-01 -1.69857129e-01 -4.21980828e-01 -2.52053857e-01\\n-3.55787426e-02 -1.91765055e-01 -8.08241516e-02 5.34649231e-02\\n2.66178697e-01 4.46977764e-02 2.62324773e-02 -2.94415295e-01\\n-1.94731727e-03 -4.60829198e-01 1.39008075e-01 -1.31950289e-01\\n-9.15825367e-02 -1.54787511e-01 1.04006410e-01 5.43554313e-02\\n1.82314485e-01 -3.46424013e-01 4.80115563e-01 -3.19533885e-01\\n-2.44878531e-01 -9.55470800e-02 8.56073759e-03 9.55415890e-02\\n2.69538105e-01 -3.72755468e-01 2.56780535e-02 2.82279313e-01\\n1.89144269e-01 1.64526016e-01 3.31392378e-01 -4.78386953e-02\\n-7.00033307e-02 1.08433641e-01 -3.79010141e-01 6.60397038e-02\\n7.49648869e-01 1.58139348e-01 1.25816986e-01 1.14973873e-01\\n6.65250719e-02 1.15810171e-01 5.54963112e-01 1.29024267e-01\\n-1.49597526e-01 2.38715529e-01 1.48169762e-02 -5.24714589e-01\\n-1.65051237e-01 -8.94706845e-02 -1.98826209e-01 -3.94835591e-01\\n6.80251420e-01 3.73314798e-01 -4.93509024e-01 -1.49980471e-01\\n-1.29828855e-01 -9.19738412e-02 7.96814784e-02 -1.76913321e-01\\n-1.93392299e-02 -4.90420163e-02 4.50672626e-01 -8.11112002e-02\\n2.46962354e-01 3.41357142e-01 -7.36927837e-02 -2.48386577e-01\\n-5.01758754e-02 2.33399808e-01 9.60875675e-02 3.45379740e-01\\n-1.58916712e-01 3.44303370e-01 3.47258970e-02 1.89217180e-01\\n-9.04791132e-02 5.18768579e-02 3.88155989e-02 1.05042011e-01\\n5.69801107e-02 3.80215123e-02 3.77773523e-01 4.59079593e-01\\n2.90616691e-01 4.31438059e-01 3.01439136e-01 4.86432910e-02\\n4.27714586e-01 4.63314265e-01 3.30575436e-01 1.76705062e-01\\n-7.51924813e-02 9.05373991e-02 2.66333111e-02 2.87195314e-02\\n4.16210324e-01 3.12305629e-01 1.05562702e-01 7.69239187e-01\\n2.18980998e-01 1.88183337e-01 6.16315246e-01 -5.62968791e-01\\n-3.85516107e-01 -8.84358212e-02 5.47951818e-01 -3.74285072e-01\\n2.72122137e-02 1.02708444e-01 -1.94500014e-01 1.39071584e-01\\n-5.39252520e-01 -2.29361415e-01 -1.54878385e-02 1.25321329e-01\\n-6.19567707e-02 -1.31734788e-01 -2.02776849e-01 5.79915754e-02\\n-6.53996691e-02 -9.16827321e-02 -3.84773493e-01 -1.12982392e-01\\n-2.63507336e-01 -1.24508485e-01 -1.06767878e-01 -1.03236005e-01\\n-2.13398971e-02 -3.14800441e-01 -9.55086872e-02 1.65221598e-02\\n3.30449432e-01 -1.56356573e-01 -1.24725811e-01 -4.95006405e-02\\n3.12073350e-01 1.38101891e-01 5.02904177e-01 6.18027970e-02\\n7.78317377e-02 -3.44437838e-01 -2.45629191e-01 1.18237786e-01\\n2.95107663e-01 9.48463082e-02 3.10304239e-02 3.80618721e-01\\n-2.21369207e-01 -1.61770299e-01 1.02590494e-01 2.90005982e-01\\n-5.21793008e-01 3.65752019e-02 -5.89083470e-02 2.20316574e-01\\n1.47336632e-01 1.66876733e-01 -1.72704577e-01 2.20828410e-02\\n-2.61339217e-01 -4.60745931e-01 1.87247515e-01 -7.49568790e-02\\n-1.58283606e-01 1.56375453e-01 2.99991578e-01 7.89559186e-02\\n-1.93863139e-01 -1.25433318e-02 2.76581501e-03 2.26015866e-01\\n9.03900936e-02 2.26390019e-01 -2.52003312e-01 -3.00219715e-01\\n-2.56502569e-01 1.70084387e-01 -1.65290222e-01 1.68460369e-01\\n-1.93015039e-02 2.79036134e-01 2.67824288e-02 5.35682514e-02\\n3.64560634e-01 4.41920618e-03 -1.21809565e-01 -3.01301807e-01\\n-2.14202970e-01 -4.11552042e-01 -7.04973564e-02 7.54717737e-02\\n1.45527303e-01 -4.11020845e-01 -9.77766421e-03 -1.98590174e-01\\n-1.80508822e-01 -3.55517030e-01 7.10508823e-02 -8.82288218e-02]]',\n", + " 'Ava is a digital health company with offices in Zurich, San Francisco, Belgrade and Makati that aims to advance women’s reproductive health by bringing together artificial intelligence and clinical research. Our wearable device, smart app and proprietary predictive algorithms empower women by giving them unique clinically researched insights and personalized data about their menstrual cycle, fertile window, and pregnancy delivered in a way that’s convenient and non-invasive. Ava was voted Best of Baby Tech at CES 2017, named a Women’s Health “Editors’ Choice” product and has been honoured as the best Swiss startup in 2017 and 2018. Our current key markets include USA, Germany, Switzerland and UK. Would you like to join us on our challenging adventure? Responsibilities: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements About you: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Would you like to contribute to a highly motivated team, with a lot of space for your own initiatives? If yes, please apply online or send your complete application to recruiting(at)avawomen.com. We appreciate that you share our excitement for Ava. Please be aware that only complete applications (CV and motivation letter) can be considered. Ava – Revolutionizing women’s health Moritz Ritter, System Architect and Data Engineering Manager Should you not hear back from us within 3 weeks your application has unfortunately not been successful for the respective role.',\n", + " '[\"Research\", \"Team Motivation\"]',\n", + " '[\"Non-Invasive Monitoring\", \"Storage Area Network (SAN)\", \"Automation\", \"Data Quality\", \"MySQL\", \"Tooling\", \"Computer Science\", \"Prediction\", \"Fertilizers\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Reproductive Health Care\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Smart Device\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Data Science\", \"Virtual Computing\", \"Personalization\", \"Artificial Intelligence\", \"Clinical Research\", \"Digital Health Technologies\", \"Big Data\", \"Scalability\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Algorithms\", \"Scripting\", \"Git Flow\", \"Wearables\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " \"['English', 'Kuanyama', 'Chechen', 'Sinhalese', 'Mongolian']\"],\n", + " ['14',\n", + " 'embedded software/firmware engineer',\n", + " 'Switzerland',\n", + " 'Staffing & Outsourcing',\n", + " 'www.antal.com',\n", + " '[[-3.64791125e-01 2.35604301e-01 4.71969485e-01 1.80554297e-02\\n5.39171696e-01 -1.95542082e-01 -1.78875089e-01 2.10245162e-01\\n-1.87526606e-02 -3.44100654e-01 -1.69030115e-01 -2.17811584e-01\\n-7.94864744e-02 1.36119023e-01 1.77058026e-01 4.93197948e-01\\n3.49765152e-01 -2.59339921e-02 -2.01735198e-01 4.24154550e-01\\n1.24527872e-01 -7.76181445e-02 7.38352463e-02 7.81326652e-01\\n2.76699573e-01 -6.76936051e-03 1.69829819e-02 2.52978485e-02\\n-9.39062461e-02 -8.16924348e-02 3.74709517e-01 -2.59687360e-02\\n-2.79702991e-01 -2.96822965e-01 1.57859370e-01 1.48010135e-01\\n-3.26411039e-01 -1.31691089e-02 -2.83374116e-02 1.48213416e-01\\n-4.45471346e-01 -3.32943797e-01 9.67813134e-02 8.89158621e-02\\n-2.57128775e-01 -2.46690631e-01 2.34199077e-01 -6.46534562e-02\\n-2.39543542e-02 7.91413411e-02 -4.82465178e-01 2.92345315e-01\\n-2.96543807e-01 -9.89611298e-02 3.30378741e-01 5.23773730e-01\\n-2.27322578e-02 -5.62816918e-01 -2.04089403e-01 -2.65341461e-01\\n-2.97716167e-02 -1.46188423e-01 1.24639638e-01 -3.02302629e-01\\n4.85514790e-01 -2.74156388e-02 -3.13028395e-02 1.99635714e-01\\n-7.01019764e-01 -5.73716499e-02 -3.75533551e-01 1.17233291e-01\\n-3.04249436e-01 -4.05671224e-02 -2.21022367e-01 -3.49774897e-01\\n-4.11346480e-02 4.10214841e-01 4.16097194e-02 2.34134451e-01\\n-1.94619790e-01 3.38297784e-01 -2.08916053e-01 3.91594768e-01\\n3.64200711e-01 2.81927377e-01 2.50573874e-01 3.19408536e-01\\n-5.82788706e-01 4.59729731e-01 2.05597147e-01 -2.17200354e-01\\n2.24644527e-01 1.98142812e-01 3.15830946e-01 1.66756883e-01\\n4.13769111e-02 1.32586032e-01 -2.17561617e-01 1.89555228e-01\\n2.57746667e-01 -1.20111316e-01 -7.73330331e-02 -1.10954389e-01\\n-6.94281235e-02 -1.41527787e-01 -6.26145005e-02 3.03049386e-01\\n-4.30823833e-01 3.25854689e-01 1.72036618e-01 -2.60775834e-01\\n-2.20698491e-02 -5.71766734e-01 -1.73750371e-01 5.22077177e-03\\n-8.23629871e-02 1.16413958e-01 4.58252877e-01 9.59657207e-02\\n2.53067523e-01 1.23408638e-01 1.47227019e-01 1.17144191e+00\\n5.36188148e-02 -3.33091952e-02 -1.58763453e-01 4.49490339e-01\\n1.67096123e-01 -2.19588324e-01 1.13525592e-01 3.45066696e-01\\n4.14089859e-02 -1.77381247e-01 -1.94027454e-01 3.24191421e-01\\n-2.04244763e-01 -2.24161848e-01 -3.38162661e-01 1.76838011e-01\\n-2.93131292e-01 -6.51121557e-01 6.36142790e-01 -8.51559415e-02\\n1.53886288e-01 -4.16529179e-02 -1.06495947e-01 -3.87087502e-02\\n-1.10499009e-01 2.51830488e-01 -6.97547495e-02 8.46128315e-02\\n-2.92066216e-01 -1.15656413e-01 -2.23760560e-01 2.47007802e-01\\n-1.73662037e-01 3.38823706e-01 -1.54645890e-01 -2.14891836e-01\\n1.74105257e-01 -2.38659941e-02 -4.80715513e-01 2.80468732e-01\\n-4.75105345e-02 -2.11292580e-01 -4.34390455e-02 3.48746389e-01\\n-4.77052592e-02 2.12685153e-01 2.60436743e-01 -2.15491682e-01\\n3.81169289e-01 3.74803729e-02 1.33300751e-01 -1.37486354e-01\\n2.91646391e-01 -2.51659662e-01 9.17749256e-02 1.21794060e-01\\n-6.59509897e-01 4.40940410e-01 -2.82989778e-02 -1.07554980e-01\\n-2.60973368e-02 -1.43032735e-02 4.20168191e-01 -2.85492688e-01\\n-2.28034958e-01 -2.54231811e-01 -4.11637813e-01 -3.77540737e-01\\n-2.10496932e-01 8.53881389e-02 3.82713705e-01 -3.39705139e-01\\n-3.47815640e-02 1.08030789e-01 -5.94337344e-01 -8.31927359e-02\\n2.70938396e-01 2.18442917e-01 1.44420415e-01 5.16160652e-02\\n-1.06285192e-01 -5.35475194e-01 -1.40805012e-02 -4.62304980e-01\\n-4.17955041e-01 -6.15397887e-03 -1.70068830e-01 2.69155242e-02\\n1.80623353e-01 -2.42532603e-02 -4.26040255e-02 -8.92019048e-02\\n-4.02105749e-01 -4.63952422e-02 2.84386873e-01 1.57545991e-02\\n2.75238752e-01 -8.57670754e-02 -2.28241533e-01 7.07333148e-01\\n-2.95586854e-01 5.98573148e-01 2.79355217e-02 -8.71396542e-01\\n5.84364712e-01 3.04037482e-01 -1.80043895e-02 -4.33340430e-01\\n6.37233734e-01 -5.10810912e-01 -5.54693341e-02 2.01369867e-01\\n-2.41152242e-01 -9.65440571e-02 3.23653370e-01 -2.60332078e-01\\n-3.75449836e-01 8.57118547e-01 4.70661521e-02 9.50019658e-02\\n3.50469798e-01 -3.41083735e-01 -2.59167492e-01 -1.26558661e-01\\n-6.34051040e-02 -2.65085310e-01 -5.88242888e-01 1.50522202e-01\\n-6.87381774e-02 -4.26958680e-01 -1.99438125e-01 -5.35355985e-01\\n-9.78816971e-02 -4.08903152e-01 -2.22858325e-01 1.72086492e-01\\n6.13049604e-02 8.36960301e-02 -3.99574079e-02 -1.40567556e-01\\n-2.83527039e-02 -6.51600599e-01 -5.45189455e-02 7.85852596e-02\\n5.25270820e-01 1.74011379e-01 1.72430098e-01 2.93439291e-02\\n1.36748523e-01 4.80525970e-01 -3.70947689e-01 -2.50130534e-01\\n1.64340630e-01 1.36160016e-01 -1.25343725e-01 -1.15397930e-01\\n2.54835218e-01 3.36347669e-01 -2.71531314e-01 -8.37729499e-02\\n-1.91104949e-01 2.74278492e-01 3.75206381e-01 -2.04160780e-01\\n-2.46981725e-01 -2.73268789e-01 -6.22625044e-03 2.75074035e-01\\n-5.02475977e-01 -2.28935644e-01 5.32174706e-01 2.17201978e-01\\n4.91102003e-02 1.27877802e-01 3.58378798e-01 -1.67164266e-01\\n-2.79318333e-01 -1.31189883e-01 1.36779010e-01 2.89653212e-01\\n6.61323592e-02 5.78654408e-02 -4.34680246e-02 -5.15647292e-01\\n-3.34313536e+00 -5.46008795e-02 7.30754882e-02 -2.01251745e-01\\n2.90413469e-01 -1.77599207e-01 4.68406919e-03 7.46912509e-02\\n-2.67813921e-01 1.84897948e-02 -1.79881334e-01 3.49999929e-04\\n4.90640998e-02 9.76923928e-02 1.10631481e-01 8.83703381e-02\\n-3.25021595e-02 -3.80333334e-01 9.07407328e-02 2.02639967e-01\\n-6.06642254e-02 -9.02524471e-01 5.56019172e-02 -1.62730202e-01\\n1.98041171e-01 4.52244990e-02 -5.20203888e-01 -1.27515182e-01\\n-2.26453274e-01 -2.43177757e-01 4.83020283e-02 -2.16109037e-01\\n-1.32175878e-01 2.95788825e-01 1.62850961e-01 -8.90884250e-02\\n1.70704797e-01 -3.01534265e-01 -1.26053318e-01 -4.65877444e-01\\n1.22969054e-01 -6.24981284e-01 1.65784553e-01 4.09066565e-02\\n6.00946248e-01 -2.53662586e-01 2.70010531e-01 2.85671949e-01\\n1.52007133e-01 2.53397733e-01 -4.14942112e-03 1.12415869e-02\\n-2.34860659e-01 -2.93641299e-01 -7.46302912e-03 -2.67054766e-01\\n4.68548328e-01 3.86909992e-01 -1.40341431e-01 4.08606650e-03\\n3.60926241e-02 -2.11371869e-01 -5.50354898e-01 -5.06459236e-01\\n-2.02450991e-01 2.88642123e-02 -8.78647625e-01 -4.64969933e-01\\n-3.51625420e-02 -1.62609950e-01 -1.29603446e-01 6.80186093e-01\\n-2.01313734e-01 -4.05100554e-01 1.70283336e-02 -5.35018444e-01\\n2.78037488e-01 -2.02503428e-01 -1.00079224e-01 -1.61996409e-01\\n-2.38131851e-01 -4.50711489e-01 2.25677952e-01 -1.16374418e-02\\n-1.65084079e-01 -8.21192339e-02 1.07194729e-01 -3.79558057e-01\\n-1.83476329e-01 -4.14865226e-01 4.33671355e-01 1.02420591e-01\\n3.24726611e-01 1.28081227e-02 3.48313212e-01 -4.80173640e-02\\n2.94158936e-01 2.81195521e-01 2.21415833e-02 -5.42729557e-01\\n1.19832054e-01 6.68813065e-02 4.17509675e-01 -2.63057798e-01\\n-2.00049505e-02 1.85530022e-01 -1.52386546e-01 -1.58402428e-01\\n4.40607548e-01 -2.23500691e-02 5.51824085e-02 -1.79818749e-01\\n2.78823793e-01 -5.07209659e-01 -1.83919281e-01 4.42895107e-02\\n2.28322297e-01 8.40136409e-01 8.45169649e-02 -4.57175314e-01\\n-2.78004467e-01 5.26588440e-01 5.51684387e-02 -6.05853684e-02\\n-1.52528778e-01 2.09479734e-01 -3.58484238e-01 2.61499971e-01\\n-6.80858642e-02 -3.32794011e-01 -3.35048944e-01 1.02719832e-02\\n-1.10941857e-01 2.32828438e-01 2.20066667e-01 1.50008395e-01\\n-2.55275756e-01 -3.75610352e-01 -1.10558413e-01 1.83674082e-01\\n3.45636994e-01 2.62577981e-01 3.29427481e-01 -3.69617909e-01\\n1.38434857e-01 3.32432240e-01 -2.56357580e-01 3.64700049e-01\\n-2.37891063e-01 1.13808297e-01 -5.58180869e-01 -2.80966520e-01\\n-2.97422618e-01 -2.46953353e-01 -1.54747367e-02 4.95640785e-01\\n1.77563995e-01 -1.13821574e-01 8.58437493e-02 -6.06129885e-01\\n4.23206568e-01 5.97570427e-02 2.81295955e-01 8.56520385e-02\\n7.01912940e-02 6.65721357e-01 1.66187529e-02 -1.49368435e-01\\n-1.16318084e-01 5.91099449e-02 -2.21771628e-01 -3.53031844e-01\\n4.78891097e-02 -4.19352978e-01 -1.09088004e-01 3.77682149e-01\\n1.55587420e-01 -1.93801254e-01 -1.63861081e-01 2.98489332e-01\\n2.16386795e-01 -2.44277984e-01 -2.15445533e-01 5.12141958e-02\\n3.75137776e-01 -1.76006332e-02 1.27966985e-01 -4.97797996e-01\\n2.77306996e-02 -9.18098539e-02 1.55780256e-01 5.15166521e-01\\n2.50645280e-01 4.53402624e-02 -2.65412442e-02 -3.39529723e-01\\n4.26319838e-01 -1.42690286e-01 -1.42111734e-01 -2.15582728e-01\\n3.27062085e-02 -2.00629905e-01 -2.57929087e-01 6.50709569e-02\\n-5.65126985e-02 -1.11280672e-01 5.25511615e-02 1.78325810e-02\\n1.39967546e-01 -2.07116641e-02 -4.50793356e-01 -2.80332595e-01\\n-3.37491691e-01 9.51775014e-02 1.94402058e-02 -4.86491710e-01\\n3.86212990e-02 2.44013518e-02 -5.91827631e-01 2.47493148e-01\\n-1.22304887e-01 2.32703369e-02 2.36864522e-01 1.33344457e-01\\n-3.38937163e-01 -1.56011596e-01 4.76737395e-02 1.27272800e-01\\n-2.25653291e-01 -1.56236455e-01 -6.13449365e-02 -1.09205437e+00\\n2.28027746e-01 1.31659552e-01 -1.59410492e-01 5.66255562e-02\\n3.45505401e-02 -9.07428682e-01 9.55406427e-02 -1.56660125e-01\\n7.23138405e-03 -1.19403519e-01 -2.92131990e-01 -4.01407182e-01\\n2.27075513e-03 7.92753994e-02 -5.27228378e-02 4.69894409e-01\\n-5.17954051e-01 3.28359812e-01 -1.23549186e-01 3.52969617e-02\\n-1.00949869e-01 -1.73653051e-01 2.24451438e-01 -3.16369206e-01\\n-3.86286944e-01 -2.02732682e-01 -3.79412293e-01 -3.92115474e-01\\n-2.49532700e-01 -3.22627902e-01 -7.05890730e-02 8.74299332e-02\\n4.15712506e-01 8.49248618e-02 -1.28914982e-01 -2.14727625e-01\\n8.35352484e-03 -1.42755434e-01 5.66393733e-02 -3.80314767e-01\\n1.74663678e-01 -2.60119289e-01 1.57236338e-01 3.46950851e-02\\n2.06142306e-01 -3.31708431e-01 5.31299591e-01 -2.05803514e-01\\n-4.97041851e-01 -1.38908640e-01 1.71897665e-01 1.01429299e-01\\n2.12537482e-01 -4.37504202e-01 8.72181579e-02 1.49414599e-01\\n1.12858921e-01 -7.67312720e-02 3.58365387e-01 -2.37846494e-01\\n-1.08611383e-01 1.81403652e-01 -4.76249486e-01 -5.53963589e-04\\n7.58428752e-01 1.96628690e-01 1.85369700e-01 1.28715515e-01\\n1.21186852e-01 3.03177267e-01 4.32577640e-01 -1.19893290e-01\\n2.09683739e-02 2.73924232e-01 2.42411122e-01 -4.06206608e-01\\n-3.08002979e-01 -4.03732061e-01 -6.52345940e-02 -2.65617430e-01\\n6.23482227e-01 2.86615521e-01 -1.90809757e-01 -3.16277117e-01\\n-9.07452255e-02 -1.07521392e-01 2.83839643e-01 -1.48190066e-01\\n3.70372161e-02 -6.61671460e-02 4.67778981e-01 -1.61320325e-02\\n3.17492425e-01 7.47802496e-01 -2.67808139e-01 -4.54898447e-01\\n-1.72479257e-01 2.49651611e-01 1.90785646e-01 2.80154556e-01\\n-1.24018721e-01 3.44870448e-01 1.14936061e-01 1.82741597e-01\\n-2.53308594e-01 1.16038106e-01 5.57263605e-02 9.79948193e-02\\n1.50040448e-01 1.30425468e-01 2.80519634e-01 5.47770977e-01\\n1.67853937e-01 5.41124701e-01 3.05330724e-01 7.01658875e-02\\n4.19069558e-01 5.33296168e-01 4.63278562e-01 1.45932019e-01\\n1.45088509e-01 2.37471566e-01 3.90937692e-03 -8.01691487e-02\\n2.31609270e-01 3.28150958e-01 1.81107163e-01 9.41149235e-01\\n4.35359657e-01 4.70433891e-01 8.43372464e-01 -6.80016160e-01\\n-3.62162322e-01 3.21650431e-02 4.81427163e-01 -5.80983341e-01\\n-8.33320618e-03 1.29964262e-01 -9.74154845e-02 3.47607881e-01\\n-3.73378724e-01 -9.60199013e-02 -6.29413277e-02 -5.66087924e-02\\n-5.53391781e-03 -2.07098201e-01 -1.61113337e-01 3.62931676e-02\\n-2.87070781e-01 -1.62600532e-01 -2.44764224e-01 -3.04961473e-01\\n-3.28808129e-01 -1.51042156e-02 -1.02757074e-01 -1.22907618e-02\\n-6.42017648e-02 -2.89272368e-01 -1.34779438e-01 -6.94349334e-02\\n3.34950179e-01 -1.93417281e-01 -1.80985034e-01 -1.99990347e-01\\n3.12360048e-01 2.24716127e-01 6.55642629e-01 1.03447102e-01\\n2.24230558e-01 -2.07486674e-01 -1.59152329e-01 -7.06698969e-02\\n1.18833000e-03 1.16950691e-01 1.04760244e-01 5.11718571e-01\\n-3.77967775e-01 -1.66329905e-01 1.79808214e-01 3.64884645e-01\\n-1.48240611e-01 -1.93344921e-01 -9.90551487e-02 1.06167823e-01\\n-1.30384371e-01 8.49514157e-02 -2.34869733e-01 -5.64724095e-02\\n-1.10463530e-01 -7.99866796e-01 4.32592481e-01 -3.19351882e-01\\n-1.02637276e-01 7.32917339e-02 5.79045475e-01 4.04622257e-01\\n-1.15156144e-01 -3.27799134e-02 -5.44133671e-02 3.22486907e-01\\n1.10216752e-01 2.71607101e-01 -2.96800196e-01 -6.59111664e-02\\n-3.02919269e-01 1.93430617e-01 -2.42365509e-01 2.85773367e-01\\n1.36051074e-01 4.65251714e-01 9.48795527e-02 7.42295086e-02\\n2.18338072e-01 -1.89849198e-01 -2.88973838e-01 -2.71376193e-01\\n-2.51758605e-01 -1.18613914e-01 -5.95018119e-02 -9.49127972e-02\\n3.36745530e-01 -2.18701467e-01 -5.79470061e-02 -2.03072309e-01\\n8.33750702e-03 -3.00823629e-01 -1.42008454e-01 -3.06405649e-02]]',\n", + " 'Our client is a technology company with outstanding competences in data collection systems, radio design and wireless sensor networks. Acknowledged innovator and leading player in the Internet of Things domain, the Company offers a compelling portfolio of platforms delivering consolidated technological excellence for any kinds of Smart City and IoT projects. To support its growth path, is looking for a: EMBEDDED SOFTWARE/FIRMWARE ENGINEER The candidate will be part of the embedded software design team, defining the design specification, coding and testing embedded SW for complex low power, RF IoT devices. Main Responsibilities Develop low level drivers, protocol stacks and low power applications software for both, RTOS and embedded Linux based platforms, promote new technologies, proactively looking at innovative protocols and solution; Qualifications and experiences University degree in Computer Science or Electronics Engineering or equivalent discipline; Proven experience in architecture definition and software development in C/C++ for embedded applications; Knowledge of IoT technologies and application protocols for embedded systems - such as CoAP, MQTT, LWM2M and data model Good knowledge of microcontrollers, in particular Cortex-M microcontrollers and peripherals; Experience with embedded Linux platforms, such as RPI and BBB; Experience with radio networking protocols such as 802.15.4, 6LoWPAN, IPv6, TCP-IP, ZigBee, Bluetooth; Good knowledge of low power design techniques; Experience in debugging and validating complex embedded systems and protocol stack; Ability to read schematics and debug at PCB level using typical lab equipment if needed; Knowledge and experience on software engineering methodologies: lifecycle, quality assurance and testing techniques, continuous integration and continuous deployment technologies, Agile scrum methodology; Skills required Knowledge of RF and IoT platforms; Knowledge of embedded OS and embedded Linux platforms; Flexible, able to prioritise activities and managing time efficiently, meeting the deadlines; Problem solving approach and ability to manage pressure; Able to work cross-functionally in dynamic and international environments; Proficient understanding of code versioning tools, such as Git; Effective communication in English (both written & verbal - including technical documentation); We offer: The opportunity to work in a highly dynamic multinational environment, interacting with different cultures and nationalities; The unique experience of cooperating on very innovative technological projects, sharing knowledge and expertise with high talented professionals; Swiss Labour contract;',\n", + " '[\"Cooperation\", \"Professionalism\", \"Proactivity\", \"Management\", \"Problem Solving\", \"Communications\", \"Innovation\", \"Quality Assurance\", \"Time Management\"]',\n", + " '[\"Tooling\", \"Enterprise Application Software\", \"Interactivity\", \"Computer Science\", \"Data Modeling\", \"Continuous Integration\", \"Survey Data Collection\", \"Scholastic READ 180\", \"Shared Whois Project\", \"Cortex M\", \"IPv6\", \"Electronic Engineering\", \"Linux\", \"Message Queuing Telemetry Transport (MQTT)\", \"Wireless Application Protocol (WAP)\", \"Design Specifications\", \"Levelling\", \"Agile Edge Technologies\", \"Scrum (Software Development)\", \"TCP/IP\", \"Wireless Sensor Networks\", \"Embedding\", \"Software Engineering\", \"Plant Design Systems\", \"Consolidation\", \"C (Programming Language)\", \"6LoWPAN\", \"Embedded Systems\", \"Pathing\", \"Firmware\", \"Technical Documentation\", \"Power Supply Design\", \"Software Design\", \"Trunked Radio Systems\", \"Software Development\", \"Radio Link Protocols\", \"Bluetooth\", \"Git Flow\", \"Internet Of Things (IoT)\", \"Embedded Software\", \"Zigbee\", \"Debugging\", \"Protocol Stack\"]',\n", + " \"['English', 'South Ndebele', 'Tsonga', 'Ganda', 'Swedish']\"],\n", + " ['84',\n", + " 'software engineer - .net developer w/m',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.01657408e-01 2.30316505e-01 5.26042521e-01 -8.72600079e-02\\n4.53993380e-01 -1.98693052e-01 -4.32159677e-02 4.65722531e-01\\n-1.48710459e-01 -3.88769388e-01 -1.91301897e-01 -3.22442859e-01\\n-7.62060061e-02 1.10869899e-01 2.56091684e-01 3.47763777e-01\\n3.33220124e-01 1.18078180e-01 -2.80989975e-01 2.60545522e-01\\n1.94182679e-01 2.88035795e-02 8.21112022e-02 7.07120717e-01\\n3.54223788e-01 4.11188267e-02 -8.30323398e-02 -8.85845050e-02\\n-2.78669566e-01 -2.18544230e-01 3.54387879e-01 -1.13285892e-01\\n9.43706837e-03 -3.22178423e-01 3.10933106e-02 2.85002198e-02\\n-1.44600525e-01 -4.73411791e-02 5.77373095e-02 7.23253414e-02\\n-5.18574059e-01 -2.85762548e-01 9.77040604e-02 1.04219258e-01\\n-1.26700684e-01 -2.94646025e-01 1.31777346e-01 5.10048755e-02\\n-7.62825226e-03 1.76417325e-02 -6.26534224e-01 3.51388305e-01\\n-1.37516931e-01 -1.61844820e-01 2.68187255e-01 5.19277930e-01\\n9.07676667e-02 -4.50406134e-01 -3.79254997e-01 -2.19055891e-01\\n1.39114901e-01 -6.55782670e-02 1.14454091e-01 -1.67829424e-01\\n4.26876605e-01 4.10379702e-03 -1.53040802e-02 3.15018803e-01\\n-6.47643447e-01 -6.51689023e-02 -1.40244767e-01 -9.32807848e-02\\n-3.80440384e-01 -6.90393150e-02 -1.61267996e-01 -1.86128616e-01\\n-1.57983258e-01 3.76804471e-01 2.10373942e-02 6.85177967e-02\\n-1.69157624e-01 2.39717484e-01 -1.01084098e-01 1.99774280e-01\\n2.34521732e-01 3.20394963e-01 1.94464326e-01 3.26440394e-01\\n-4.34007525e-01 4.29572970e-01 1.73872471e-01 -3.14605385e-01\\n2.68397987e-01 8.12376440e-02 4.69510794e-01 -6.63764775e-04\\n-2.89315172e-02 5.91853261e-02 -1.55917436e-01 1.95396334e-01\\n1.83167130e-01 -2.79840797e-01 5.58342924e-03 -4.80667055e-02\\n-1.07893668e-01 7.28609413e-02 -3.61531787e-02 2.64011979e-01\\n-3.36755455e-01 3.47040176e-01 1.94233999e-01 -1.80412635e-01\\n-1.41463339e-01 -6.26322746e-01 -6.01723269e-02 4.15914170e-02\\n8.80032256e-02 1.40708074e-01 3.84188771e-01 1.16005167e-01\\n2.81707048e-01 -7.74355186e-03 2.41218403e-01 9.65571523e-01\\n-4.74150740e-02 1.07582688e-01 -2.76836783e-01 4.63726968e-01\\n1.14230432e-01 -2.82994151e-01 1.59000471e-01 2.51056403e-01\\n8.21049288e-02 -5.54673411e-02 -1.60506502e-01 3.05519760e-01\\n-1.55198360e-02 -1.57149702e-01 -2.81945586e-01 7.26208910e-02\\n-2.24192902e-01 -4.12770182e-01 5.26985168e-01 1.16957948e-01\\n1.21497825e-01 -1.62992656e-01 -6.64501591e-03 -1.71597436e-01\\n-7.73010999e-02 2.91583210e-01 -5.16703166e-03 1.44726664e-01\\n-3.10260117e-01 -1.66110381e-01 -1.79787949e-01 2.85868943e-01\\n-8.10527653e-02 1.28754824e-01 -5.21859489e-02 -1.62502185e-01\\n3.78315240e-01 7.79769644e-02 -3.39269757e-01 2.55399853e-01\\n-1.87735632e-02 -1.86854005e-01 -8.24888498e-02 1.77755430e-01\\n-1.45436704e-01 1.77360132e-01 -2.99099693e-03 -1.59789100e-01\\n4.00778800e-01 1.08157024e-01 2.41037488e-01 -8.32973868e-02\\n3.35556924e-01 -2.23514304e-01 1.19611971e-01 1.30593076e-01\\n-6.25571430e-01 3.50767910e-01 -4.21801992e-02 -2.29649469e-01\\n9.87343118e-02 8.38403329e-02 4.01858002e-01 -2.06678331e-01\\n1.82592683e-02 -2.28926122e-01 -3.76924276e-01 -3.97141963e-01\\n-2.18826801e-01 -2.89369700e-03 3.97470921e-01 -4.26047057e-01\\n-8.48829001e-02 1.33379266e-01 -4.62853640e-01 -5.70487529e-02\\n1.54725134e-01 2.35626012e-01 -3.24324286e-03 7.60859177e-02\\n-1.41524315e-01 -5.09381235e-01 -3.49010644e-03 -4.50809926e-01\\n-4.86829937e-01 5.03723435e-02 -2.36261696e-01 2.75848210e-01\\n7.04765841e-02 -5.20541742e-02 -1.09029301e-01 1.82467371e-01\\n-2.19011903e-01 2.38632932e-02 1.98784277e-01 1.13973178e-01\\n3.25975686e-01 -4.55042906e-03 -4.06870842e-01 5.26638925e-01\\n-2.47084171e-01 4.39072043e-01 1.11540489e-01 -8.62606168e-01\\n5.28003752e-01 2.48369306e-01 3.06366738e-02 -4.21203971e-01\\n6.95800781e-01 -2.86491513e-01 4.32357490e-02 1.74495146e-01\\n-4.44431126e-01 -2.48281032e-01 2.98005164e-01 -1.40056849e-01\\n-2.04928413e-01 6.21417522e-01 1.27516091e-01 -4.95990328e-02\\n1.78120956e-01 -2.57954895e-01 -1.56515077e-01 1.92018244e-02\\n-8.06622505e-02 -3.19092661e-01 -4.05395478e-01 3.80146466e-02\\n-1.01809837e-01 -4.17731792e-01 -2.30812058e-01 -4.69049394e-01\\n-1.55004919e-01 -3.93153608e-01 -2.32734516e-01 4.07873452e-01\\n1.60260320e-01 8.18269253e-02 2.64743790e-02 -1.81194380e-04\\n-1.10518225e-01 -4.83779132e-01 -6.53129295e-02 3.62274945e-02\\n5.01109958e-01 2.79971659e-01 8.92833024e-02 2.73971411e-04\\n-1.14397459e-01 4.87327367e-01 -1.84871808e-01 -2.12629586e-01\\n1.37901425e-01 1.89772755e-01 9.74273309e-03 -8.47181585e-03\\n1.16365952e-02 3.24117631e-01 -1.43951297e-01 -3.57133821e-02\\n-1.18272565e-01 7.76449144e-02 3.41947585e-01 -2.78005321e-02\\n-2.86080629e-01 -1.93823889e-01 8.93855281e-03 3.27466756e-01\\n-5.47079623e-01 -1.95203200e-01 5.30026436e-01 2.14526981e-01\\n1.23824030e-01 2.05431223e-01 2.03975216e-01 -1.29122138e-01\\n-1.45172358e-01 -2.84640193e-01 1.59101963e-01 1.02967583e-01\\n1.81799874e-01 5.56185506e-02 -9.27492827e-02 -5.30307472e-01\\n-3.47864795e+00 -2.21044689e-01 7.52913281e-02 -3.34521145e-01\\n1.27890781e-01 -1.61596462e-01 1.15579637e-02 -7.93188959e-02\\n-2.88460523e-01 1.16560817e-01 -2.06608340e-01 -1.59368202e-01\\n1.86076507e-01 2.10269094e-01 1.30117182e-02 2.95698315e-01\\n2.01134309e-02 -1.17637962e-01 -1.05754500e-02 2.47143000e-01\\n-2.29296297e-01 -7.16016412e-01 2.09988266e-01 -1.09744065e-01\\n1.80342078e-01 3.02353233e-01 -4.32897776e-01 -1.82762668e-01\\n-1.96550995e-01 -2.67577052e-01 1.68055788e-01 -2.68152297e-01\\n-7.09383935e-02 3.81940663e-01 1.73063174e-01 -8.92019570e-02\\n1.43478513e-01 -3.20594817e-01 -3.08055058e-02 -4.85928386e-01\\n1.94170386e-01 -6.12210691e-01 -5.52832037e-02 -2.24623755e-02\\n6.88734412e-01 -3.89870226e-01 2.27409959e-01 1.69976309e-01\\n2.13257432e-01 2.59818673e-01 -3.58176641e-02 -9.12822559e-02\\n-2.17227474e-01 -3.35270166e-01 -3.78949642e-02 -2.29675874e-01\\n4.11398321e-01 6.01249933e-01 -1.26634508e-01 7.15008527e-02\\n1.40247047e-02 -1.86520129e-01 -3.93612623e-01 -3.71801317e-01\\n-2.04945609e-01 -1.79050490e-01 -6.16498411e-01 -3.83029193e-01\\n-1.35347635e-01 -1.33216962e-01 -1.25852257e-01 6.14490092e-01\\n-2.44769752e-01 -4.28459883e-01 5.69914617e-02 -5.85926533e-01\\n1.43331140e-01 -2.82705218e-01 -6.41627163e-02 -1.94557354e-01\\n-3.09480935e-01 -5.03614187e-01 9.93304178e-02 5.06230630e-02\\n-1.18170395e-01 -1.20080650e-01 9.96291414e-02 -3.15063119e-01\\n-2.71412045e-01 -4.22720760e-01 4.33024794e-01 1.73821226e-01\\n3.42947215e-01 1.56143218e-01 2.25925952e-01 2.15346172e-01\\n2.74255693e-01 -1.82794109e-01 1.23248592e-01 -4.69160557e-01\\n1.29776895e-01 6.87053800e-02 4.86953706e-01 -2.07567602e-01\\n-3.05376090e-02 1.39112726e-01 -1.63504586e-01 -1.01614945e-01\\n3.60747784e-01 2.60422993e-02 -3.13207367e-03 -9.00996253e-02\\n3.19215596e-01 -5.20843327e-01 -1.69356793e-01 8.80354941e-02\\n-7.25154653e-02 5.89414954e-01 -5.49721196e-02 -3.76794934e-01\\n-2.66839206e-01 4.94782120e-01 -5.85391708e-02 -1.56812772e-01\\n-1.05907381e-01 2.18588755e-01 -1.65321618e-01 1.30275801e-01\\n-2.15784367e-02 -2.94437289e-01 -3.67575526e-01 -4.00124863e-02\\n-5.17578758e-02 1.65222615e-01 2.54662424e-01 5.76269068e-02\\n-2.38845591e-02 -3.60036224e-01 -1.58335660e-02 9.85415876e-02\\n3.61271858e-01 4.21312064e-01 1.17894366e-01 -1.05998643e-01\\n5.57792410e-02 2.79089570e-01 -1.48224354e-01 2.46851549e-01\\n-1.94381893e-01 1.50626488e-02 -4.15307850e-01 -3.39877933e-01\\n-1.93253696e-01 -3.39001805e-01 2.73951888e-02 2.59762317e-01\\n2.18290761e-01 1.39832934e-02 -1.97436893e-03 -4.34294939e-01\\n3.72914881e-01 -1.42825218e-02 1.90003067e-01 1.57943472e-01\\n7.91264400e-02 5.56112766e-01 1.52871171e-02 1.07662287e-02\\n-1.51287407e-01 -5.66689298e-02 -1.49415433e-01 -1.85012564e-01\\n8.68122429e-02 -2.75461316e-01 -7.65203536e-02 4.16148633e-01\\n8.19613114e-02 -4.18476760e-01 -5.35611957e-02 3.66258353e-01\\n1.63969565e-02 -2.66350508e-01 -1.59743309e-01 1.54506087e-01\\n2.45470434e-01 1.17358617e-01 1.99685410e-01 -4.57636237e-01\\n-8.44222903e-02 8.59304816e-02 8.80188029e-03 4.32779789e-01\\n9.22154933e-02 1.69989437e-01 -7.78091177e-02 -3.54519725e-01\\n3.06295246e-01 -2.19712734e-01 -9.55667049e-02 -5.89797124e-02\\n1.66751444e-02 -1.22725308e-01 -4.78102893e-01 1.26251578e-02\\n-1.00458845e-01 -2.04753175e-01 -3.46274227e-02 7.36821517e-02\\n1.83986962e-01 6.98039215e-03 -4.16574866e-01 -2.69577563e-01\\n-3.43822837e-01 -4.97456305e-02 -1.73592614e-03 -3.06948841e-01\\n2.68069445e-03 -6.63644001e-02 -6.32181644e-01 2.35883236e-01\\n-2.22123325e-01 -2.98697669e-02 1.35699525e-01 3.24799083e-02\\n-4.05016124e-01 -4.21436615e-02 1.90183878e-01 1.27946869e-01\\n-2.61944354e-01 -2.62508035e-01 1.52523324e-01 -1.00188899e+00\\n9.55086276e-02 -2.13378090e-02 -8.59925449e-02 3.44850682e-03\\n-6.64010197e-02 -5.69378734e-01 1.08484477e-01 -3.78643245e-01\\n-7.40260854e-02 -2.36359835e-02 -1.77935869e-01 -3.82951349e-01\\n6.66894987e-02 -7.95539990e-02 -2.78036922e-01 4.15881753e-01\\n-3.99640292e-01 3.00654590e-01 -1.09746747e-01 5.15957139e-02\\n-3.69774527e-03 -2.46386111e-01 1.61697209e-01 -2.61516273e-01\\n-4.01421487e-01 -7.71443620e-02 -3.94240409e-01 -2.76821703e-01\\n3.57873850e-02 -1.53610215e-01 -1.86638400e-01 5.67276217e-02\\n3.73638779e-01 2.47095488e-02 -1.59127712e-01 -2.94166416e-01\\n9.39259678e-02 -4.03371543e-01 1.43163174e-01 -1.32697701e-01\\n-8.23514313e-02 -4.85573411e-02 1.66207984e-01 4.88710515e-02\\n2.04997882e-02 -3.80417973e-01 4.43856895e-01 -2.50555933e-01\\n-3.48599523e-01 9.30380728e-03 3.47732529e-02 1.22084141e-01\\n3.03717852e-01 -6.10043049e-01 8.09883233e-03 3.31897169e-01\\n1.84408203e-01 1.27481028e-01 2.00592205e-01 -6.08587563e-02\\n-2.08650157e-01 3.51026207e-01 -4.32103574e-01 5.26391529e-02\\n7.39688993e-01 1.03679873e-01 4.80277278e-02 2.23765269e-01\\n2.68755585e-01 2.79728711e-01 4.53116268e-01 -6.14792705e-02\\n-1.08761452e-01 2.46584654e-01 4.00902778e-02 -5.60584128e-01\\n-8.19079801e-02 -1.13639809e-01 -2.35606298e-01 -4.45130467e-01\\n5.28547227e-01 4.19264525e-01 -3.58696282e-01 -2.11495176e-01\\n-1.49978608e-01 -1.95933655e-02 2.14915201e-01 -1.91650569e-01\\n2.85303332e-02 -1.09086350e-01 5.22689521e-01 2.33817622e-02\\n3.44725966e-01 5.76641798e-01 -1.00705497e-01 -4.19857830e-01\\n-1.46472007e-01 7.99509585e-02 1.97171360e-01 3.88619274e-01\\n-5.48314080e-02 2.21585870e-01 -4.78931982e-03 1.48326591e-01\\n-4.92946617e-02 1.34689555e-01 1.30722765e-02 3.48390117e-02\\n1.78639799e-01 4.74532433e-02 3.11515361e-01 4.28870976e-01\\n2.12452784e-01 5.22460938e-01 2.77625203e-01 1.18570812e-01\\n4.00064975e-01 6.08640611e-01 3.78539920e-01 1.62183523e-01\\n-6.17025681e-02 1.15506850e-01 -3.20145972e-02 -1.32013381e-01\\n3.20725799e-01 2.34900519e-01 1.06777489e-01 8.96721423e-01\\n4.49434876e-01 3.10035318e-01 8.22513819e-01 -5.25242031e-01\\n-4.49845880e-01 8.07984248e-02 4.30306405e-01 -3.32671404e-01\\n-9.97834131e-02 1.33153394e-01 -2.08684355e-01 2.31077909e-01\\n-4.54648018e-01 -9.72831920e-02 -4.57446463e-02 -3.57262604e-02\\n7.16367364e-02 -1.18041195e-01 -3.09559584e-01 -3.28844264e-02\\n-1.96422726e-01 -1.37569100e-01 -4.35113788e-01 -1.13557264e-01\\n-3.07073414e-01 -1.60342231e-01 -1.84387580e-01 -1.41903803e-01\\n-4.31750268e-02 -3.27618837e-01 -1.70762718e-01 6.36838377e-02\\n3.12531412e-01 -5.77795990e-02 -5.97471707e-02 -2.34154075e-01\\n2.49766469e-01 2.59165406e-01 5.31386673e-01 -3.04018054e-02\\n1.72598854e-01 -1.49280891e-01 -2.80146003e-01 2.45943945e-02\\n1.28066838e-01 4.25493345e-02 1.01034142e-01 4.06463742e-01\\n-3.15971553e-01 -1.21132933e-01 1.78289935e-01 4.70815331e-01\\n-3.65720093e-01 -1.82724502e-02 -5.54929627e-03 2.99797535e-01\\n1.42836750e-01 6.46017864e-02 -2.51224697e-01 1.06767423e-01\\n-3.01643193e-01 -5.51688313e-01 3.36228400e-01 -1.55969128e-01\\n-5.94274607e-03 9.92349982e-02 3.02237481e-01 2.23221362e-01\\n-1.66063339e-01 -6.45069033e-03 -2.30027214e-02 3.03805888e-01\\n1.61926821e-01 3.61758471e-01 -2.70284951e-01 -1.81942612e-01\\n-2.39786342e-01 1.87577620e-01 -2.68125266e-01 1.32000387e-01\\n-1.61910027e-01 3.24789643e-01 4.35116850e-02 1.38164937e-01\\n1.37695134e-01 4.01956551e-02 -2.39966556e-01 -2.63764739e-01\\n-3.34358811e-01 -2.49595091e-01 1.14812411e-01 -1.49073293e-02\\n2.13729322e-01 -3.78666103e-01 -4.26807813e-02 -1.60440341e-01\\n-1.12145901e-01 -2.99565375e-01 6.32503927e-02 -1.10410452e-01]]',\n", + " 'Über unseren Kunden With already 25 000 consultants around the world and revenues of CHF. 2 Bn., our client is already the global leader in innovation and high-tech engineering consulting. In Switzerland, our client employs more than 200 consultants and aims towards large growth. We operate particularly in Life Sciences (Pharma, Biotech, and Medical Devices), Industry (Watches, MEMs), Aerospace, Automotive, Energy, Railways, Finance and Telecoms sectors. Our client deploys activities throughout Switzerland with premises in Zürich, Basel, Lausanne and Geneva. Ihr Aufgabenbereich Detailed requirements analysis, designing, and developing code. Architecture discussion. Coding, testing, debugging, and documenting programs. Revising and updating programs. Integration and deployment scripts. Participating in production support including investigation and fixing bugs. Ihr Profil Education level: Master or Engineering Degree in Software Engineering (EPFL, ETH, HES or equivalent). Requirements: Minimum 7 years of experience in .NET development. Minimum of 4 years of relevant experience with WPF. Proven experience in UI web technologies: HTML, CSS, Javascript. Professional use of programming languages: .NET / C#, ASP.NET, Web Services (WCF), MVC patterns and Web API. Experience with traditional RDBMS databases, such as SQL Server, Oracle SQL, NoSQL. Extensive experience with a common application server (JBoss, IBM Websphere or BEA Weblogic). Microsoft Prism/ MVVM and unity/ IOC grandly appreciated. Experience with Big Data (Hadoop, Teradata) is a plus. Any experience in mobile development (Android, iOS, Xamarin) is a plus. Ability to work with Agile Methodology (Scrum, XP, TFS etc…) Key qualities: You know how to take initiative You like to work in a multidisciplinary team You value knowledge-sharing You must have strong verbal and writing communication capabilities. Ihre Chance Our client offers an exciting tailored career path for your professional and personal development within an international company. You will be accompanied from the beginning with specific coaching and mentoring programs and intensive training on innovation and management in a fast-moving and results driven environment. Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 384',\n", + " '[\"Professionalism\", \"Investigation\", \"Management\", \"Operations\", \"Integration\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Code Testing\", \"NoSQL\", \"ASP.NET\", \"KM Programming Language\", \"Micro Electro-Mechanical Systems (MEMS)\", \"Cascading Style Sheets (CSS)\", \"Life Sciences\", \"Industrialization\", \"IBM WebSphere MQ\", \"Xamarin.ios\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"High Tech Manufacturing\", \"Scrum (Software Development)\", \"Application Servers\", \"Levelling\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Web Services\", \"Medical Devices\", \"Agile Methodology\", \"Finance\", \"Mobile Application Development\", \"Wcf 4\", \"C# (Programming Language)\", \"Pathing\", \"JavaScript (Programming Language)\", \"Production Support\", \"Revisions\", \"Big Data\", \"Android Software Development\", \"SQL Server Reporting Services\", \"Requirements Analysis\", \"Scripting\", \"Prism\", \"Personality Development\", \"Web UI\", \"Application Programming Interface (API)\", \"Debugging\"]',\n", + " \"['English', 'Scottish Gaelic', 'English', 'Wolof', 'French']\"],\n", + " ['105',\n", + " 'backend engineer (golang) (m/f)',\n", + " 'Zürich',\n", + " 'Internet',\n", + " 'www.smallpdf.com',\n", + " '[[-6.82032555e-02 2.19999552e-01 5.21439850e-01 -8.65903124e-02\\n4.72986251e-01 -2.35543504e-01 7.40684429e-03 3.84785414e-01\\n-9.16572586e-02 -4.33151186e-01 -2.31015608e-02 -4.25794780e-01\\n-7.40003288e-02 1.29385337e-01 -1.59085337e-02 3.18082511e-01\\n3.01796824e-01 1.12471402e-01 -2.60325581e-01 3.60066533e-01\\n2.34320998e-01 -5.44881001e-02 1.32510543e-01 7.39464581e-01\\n3.99427980e-01 -5.11745885e-02 -3.47075947e-02 -4.86372150e-02\\n-2.00322583e-01 -2.03341410e-01 4.41235721e-01 -2.91730203e-02\\n1.89792421e-02 -3.88810039e-01 1.20231621e-01 2.30424255e-02\\n-2.14019522e-01 -2.01827943e-01 -1.86246149e-02 2.85180360e-01\\n-4.09456432e-01 -2.63451844e-01 5.00774086e-02 -1.30556887e-02\\n-2.36729369e-01 -3.60389054e-01 9.28594247e-02 -3.36944312e-02\\n2.04566091e-01 6.44522011e-02 -4.41068619e-01 3.33315253e-01\\n-1.89480767e-01 -9.32106376e-02 3.39069217e-01 6.02033019e-01\\n-6.27382323e-02 -4.49664921e-01 -5.92020512e-01 -2.52273738e-01\\n2.74442099e-02 -8.94681364e-02 -5.12706973e-02 -3.45091015e-01\\n2.10953236e-01 8.69945064e-02 4.17328030e-02 4.15648580e-01\\n-7.45295405e-01 -1.01955377e-01 -1.28648281e-01 -1.67734891e-01\\n-3.34729582e-01 -1.22126535e-01 -1.27409026e-01 -8.46048892e-02\\n-1.79331273e-01 4.84157443e-01 2.21155271e-01 -3.54076619e-03\\n-2.13394508e-01 3.47287118e-01 -2.61354327e-01 3.80707920e-01\\n2.94055611e-01 9.92921889e-02 1.20371237e-01 2.97873318e-01\\n-4.04980421e-01 4.17991221e-01 2.39948422e-01 -3.53601456e-01\\n3.12452763e-01 9.02904794e-02 5.69881439e-01 -3.87384519e-02\\n1.00608226e-02 1.20079368e-01 -2.64361441e-01 3.58135790e-01\\n3.53445411e-01 -1.80391937e-01 6.01425245e-02 -9.68503021e-03\\n3.11035546e-03 -5.72640337e-02 1.39548540e-01 2.93708563e-01\\n-2.26172045e-01 4.57688302e-01 1.82593569e-01 -2.22622722e-01\\n-2.13219091e-01 -5.02295911e-01 -6.35024682e-02 -1.09330252e-01\\n9.16810706e-02 8.88086259e-02 2.87648469e-01 9.46028605e-02\\n1.53541446e-01 -4.63129729e-02 1.93849877e-01 8.99928749e-01\\n-8.62501636e-02 -3.11325025e-02 -3.34946662e-01 3.14263940e-01\\n7.91077688e-02 -2.47264653e-01 2.66701043e-01 2.34146401e-01\\n1.44409994e-02 -1.66711435e-01 -2.16718450e-01 3.47822666e-01\\n-9.26150158e-02 -2.09399983e-01 -3.17319870e-01 1.64231107e-01\\n-1.11368522e-01 -2.01005191e-01 4.90044355e-01 2.20915899e-01\\n1.19359367e-01 1.88962016e-02 -7.03376532e-02 -2.10913554e-01\\n-1.66466802e-01 1.20420337e-01 2.90143839e-03 9.31987241e-02\\n-2.98627317e-01 -1.98113874e-01 -2.12766320e-01 1.93617955e-01\\n-2.85072297e-01 3.64289768e-02 -3.22600119e-02 -7.49293342e-02\\n3.24392736e-01 2.83166356e-02 -2.76673794e-01 2.57301539e-01\\n7.31909834e-03 7.90333897e-02 -4.77185696e-02 3.23268801e-01\\n-1.91725507e-01 1.67315349e-01 -2.61430740e-02 -8.92599821e-02\\n6.38113976e-01 1.75565317e-01 1.10356361e-01 5.89940101e-02\\n3.02765757e-01 -1.15985081e-01 1.37043327e-01 1.62356615e-01\\n-6.17488921e-01 3.23068351e-01 -4.16052900e-02 6.24674633e-02\\n9.42560732e-02 -5.43147996e-02 2.45221615e-01 -2.48047248e-01\\n1.19298100e-01 -1.18207417e-01 -3.84562373e-01 -3.20205480e-01\\n-1.05742231e-01 -7.73098832e-03 3.62723082e-01 -4.11645085e-01\\n-2.12827474e-01 2.01173097e-01 -4.61825788e-01 -6.27744421e-02\\n2.00477794e-01 1.92224294e-01 2.11903661e-01 1.43459037e-01\\n-2.62146413e-01 -4.76770997e-01 4.39092554e-02 -4.05939907e-01\\n-3.21332365e-01 3.51062305e-02 -3.25956047e-01 2.78232753e-01\\n9.74083543e-02 9.37658846e-02 -2.51090795e-01 1.73802257e-01\\n-1.70116574e-01 -8.64340886e-02 1.43545985e-01 9.98924002e-02\\n1.55501008e-01 5.96730150e-02 -4.79867011e-01 4.11087543e-01\\n-2.66302675e-01 5.32961071e-01 1.52257875e-01 -8.97100866e-01\\n4.59340006e-01 3.57138664e-01 -1.37560681e-01 -4.03719008e-01\\n5.09573817e-01 -3.50793332e-01 2.81120576e-02 9.32338387e-02\\n-2.98390508e-01 -3.30598831e-01 3.00451487e-01 -2.05480903e-01\\n-1.92368984e-01 4.58151966e-01 1.28391430e-01 1.33520454e-01\\n2.28824154e-01 -1.63856074e-01 -1.25675455e-01 2.50187237e-02\\n-6.58833981e-02 -2.12137535e-01 -4.46765631e-01 -5.42763658e-02\\n-9.71166790e-02 -4.75988746e-01 -2.82302424e-02 -5.36061049e-01\\n-2.39875346e-01 -3.58321071e-01 -1.87064454e-01 2.16319442e-01\\n3.26180160e-01 6.87868223e-02 -1.97866876e-02 4.20669951e-02\\n-2.29415476e-01 -5.39133072e-01 6.25130311e-02 1.92208380e-01\\n4.34868574e-01 2.15212211e-01 1.40968421e-02 2.32712533e-02\\n-8.86682421e-03 6.44919991e-01 -1.38846621e-01 -6.39252365e-02\\n5.59994541e-02 2.64627993e-01 1.09364986e-01 -1.73465714e-01\\n1.36381658e-02 3.66092741e-01 -1.57746226e-01 2.84510292e-02\\n-1.27393473e-02 -1.62359774e-01 3.91579837e-01 1.17934629e-01\\n-3.65199566e-01 -2.12041914e-01 -6.62797242e-02 1.03315771e-01\\n-4.84792948e-01 -1.58757120e-01 5.81823766e-01 1.62003487e-01\\n1.71120912e-01 9.83198062e-02 2.72095263e-01 -5.31134382e-02\\n-2.52521425e-01 -2.42397144e-01 1.96158901e-01 1.21800289e-01\\n1.08961776e-01 1.27080008e-01 -7.05470666e-02 -7.40553677e-01\\n-3.07847953e+00 -1.09116621e-01 9.88526419e-02 -2.56575227e-01\\n1.79191362e-02 -1.83744490e-01 5.03624491e-02 -1.16608426e-01\\n-3.31931204e-01 5.00684939e-02 -1.12848766e-01 -8.08660462e-02\\n2.43242070e-01 1.74921721e-01 9.79962349e-02 2.50185311e-01\\n1.61074340e-01 -1.28338590e-01 -1.03262559e-01 1.70068681e-01\\n-2.43117914e-01 -5.70012867e-01 2.77679235e-01 -6.34934828e-02\\n3.49923402e-01 2.10566640e-01 -2.61619568e-01 -2.04979137e-01\\n-2.66928703e-01 -1.40063554e-01 2.07070634e-02 -2.39513516e-01\\n-7.90130049e-02 1.89604640e-01 1.56907454e-01 -1.46349743e-01\\n2.13425949e-01 -5.10275185e-01 -2.21925884e-01 -4.60793465e-01\\n6.97765723e-02 -7.50240743e-01 2.84209680e-02 -1.69591561e-01\\n7.51741588e-01 -4.03304458e-01 1.01026423e-01 -6.75505539e-03\\n2.15165064e-01 1.46826237e-01 1.41149595e-01 -1.61519963e-02\\n-1.75067648e-01 -2.41486207e-01 -1.34317741e-01 -1.63520262e-01\\n5.82599819e-01 6.72258794e-01 -1.32189035e-01 -6.45605028e-02\\n5.71728731e-03 -2.31515363e-01 -4.86215293e-01 -3.02039891e-01\\n-1.78164691e-01 -3.20030123e-01 -5.86721599e-01 -4.60395306e-01\\n-1.91461205e-01 -9.71381366e-03 -1.85374171e-01 7.16153085e-01\\n-2.29291037e-01 -3.31873089e-01 -7.08615482e-02 -5.10424018e-01\\n1.88157201e-01 -1.60421506e-01 3.34258704e-03 -8.06323588e-02\\n-3.14345866e-01 -4.13969964e-01 -9.81163606e-03 -1.56712368e-01\\n-1.70607477e-01 -4.33450222e-01 4.63282950e-02 -1.17674150e-01\\n-1.88001826e-01 -3.87843668e-01 3.80222797e-01 1.37875184e-01\\n2.94017315e-01 1.01558290e-01 3.55299592e-01 8.37367177e-02\\n2.52137244e-01 -1.77723423e-01 8.57793018e-02 -3.47265303e-01\\n2.07226560e-01 8.39322656e-02 6.13395214e-01 -2.57877231e-01\\n1.18808098e-01 4.21733446e-02 -2.97924995e-01 -8.11859407e-03\\n3.38425636e-01 1.94550268e-02 -8.84827750e-04 -2.32841775e-01\\n3.21706682e-01 -3.61155778e-01 -2.35404342e-01 -5.31986617e-02\\n2.68400222e-01 5.66987872e-01 -6.57440424e-02 -4.91257787e-01\\n-2.09834471e-01 4.24164623e-01 -4.23381254e-02 -3.14639449e-01\\n-1.80289850e-01 1.84377864e-01 -2.35643446e-01 1.70463458e-01\\n8.94050896e-02 -1.01788253e-01 -3.50004077e-01 -1.20688811e-01\\n1.95211153e-02 3.50617796e-01 2.14891553e-01 1.53533742e-01\\n5.11903092e-02 -5.10393500e-01 -4.25917543e-02 2.33422175e-01\\n1.15577810e-01 2.61234850e-01 1.65176049e-01 -1.96823210e-01\\n6.84050545e-02 3.73435110e-01 -1.88080102e-01 1.49944514e-01\\n-2.66280890e-01 8.25849026e-02 -5.24332166e-01 -3.46135020e-01\\n-2.70655215e-01 -3.57893318e-01 1.43268421e-01 3.16217750e-01\\n7.76838064e-02 -4.20921072e-02 7.40121976e-02 -4.34999913e-01\\n3.07942837e-01 -8.06798190e-02 1.69359490e-01 1.68700665e-01\\n2.67784484e-02 5.21999002e-01 1.04577161e-01 -1.66247487e-01\\n-1.37557924e-01 -5.70035679e-03 -1.85115889e-01 -1.35672003e-01\\n-1.18726641e-01 -3.59902143e-01 -1.66541293e-01 5.02412260e-01\\n1.02719806e-01 -2.10290045e-01 -9.72216576e-02 3.30030441e-01\\n-9.15254056e-02 -1.64582148e-01 -1.46854043e-01 -6.29026890e-02\\n3.04071218e-01 7.43821822e-03 3.10952842e-01 -4.15836126e-01\\n2.65534036e-02 8.17134976e-02 -1.34243116e-01 6.08855069e-01\\n1.58943925e-02 -5.17104380e-03 -1.12391636e-01 -2.34387696e-01\\n5.52568734e-01 -6.03970438e-02 -2.01960038e-02 6.17537908e-02\\n2.81645358e-03 -1.80006295e-01 -5.40690184e-01 1.04682334e-01\\n2.20858399e-02 -1.71147481e-01 7.60659277e-02 1.70295969e-01\\n1.63231090e-01 9.96183604e-02 -5.91966391e-01 -2.68716484e-01\\n-3.20793360e-01 1.56783201e-02 -7.10053975e-03 -4.77407902e-01\\n2.35627592e-03 -1.37902170e-01 -5.27522445e-01 2.96274722e-01\\n-2.95964777e-01 -4.94314842e-02 1.44860238e-01 -5.40893897e-02\\n-2.53601521e-01 -7.32333586e-02 1.45605281e-01 2.47943044e-01\\n-2.38115847e-01 -3.21477175e-01 2.04330504e-01 -8.63952756e-01\\n2.08730221e-01 -1.47906775e-02 -1.46130264e-01 1.97695911e-01\\n-1.18184481e-02 -8.23263884e-01 1.32568851e-01 -2.93051422e-01\\n-4.22562622e-02 -6.23918278e-03 -2.18303502e-01 -4.85000789e-01\\n1.28850728e-01 -2.53590830e-02 -3.00814331e-01 2.90901273e-01\\n-3.51346523e-01 3.44051003e-01 -8.71331543e-02 1.14377305e-01\\n1.98345006e-01 -3.14744562e-01 6.77873269e-02 -5.32747030e-01\\n-5.12402475e-01 -1.82805896e-01 -2.85969526e-01 -2.92676061e-01\\n-3.90335172e-02 -1.84295490e-01 -9.36451331e-02 9.10610780e-02\\n4.02367949e-01 1.38348371e-01 -9.10672545e-02 -2.03523263e-01\\n2.87485439e-02 -5.36540627e-01 1.07771978e-01 -6.46100705e-03\\n-6.75484166e-02 -1.86345518e-01 1.58216864e-01 1.52590394e-01\\n1.92342065e-02 -3.89373332e-01 4.47525471e-01 -3.36055517e-01\\n-3.06542337e-01 -1.19537666e-01 1.78256687e-02 -3.46176960e-02\\n3.64082903e-01 -3.33361179e-01 7.68999616e-03 3.24659348e-01\\n1.82376295e-01 1.02678753e-01 2.28069574e-01 -6.53140545e-02\\n-1.05443913e-02 2.92872757e-01 -3.81840914e-01 1.12644963e-01\\n7.42448092e-01 -8.01041350e-03 1.10970475e-01 2.11962327e-01\\n6.76054284e-02 1.22932836e-01 4.86337006e-01 3.30054834e-02\\n-1.85769483e-01 2.69394815e-01 1.12656891e-01 -5.00322938e-01\\n-1.55087322e-01 -8.07639863e-03 -2.73795933e-01 -5.33170879e-01\\n5.66396475e-01 4.94188815e-01 -4.00233388e-01 -2.46146366e-01\\n-2.44201228e-01 -1.09952681e-01 4.06706855e-02 -5.01048602e-02\\n9.35924426e-02 -1.25580966e-01 4.47326034e-01 -4.73805405e-02\\n2.06277996e-01 4.93438303e-01 -1.65537417e-01 -3.52472901e-01\\n-1.32159770e-01 1.13935180e-01 2.62330435e-02 3.80014896e-01\\n-2.54371583e-01 3.77615213e-01 -2.81185210e-02 1.26704231e-01\\n-2.23418325e-01 1.35742560e-01 -2.69087404e-02 -6.52380213e-02\\n1.02817580e-01 6.96604177e-02 3.81392032e-01 4.79319036e-01\\n4.31528658e-01 4.12011534e-01 1.67002037e-01 -3.28439064e-02\\n6.10129833e-01 6.45244539e-01 3.88135046e-01 1.86308905e-01\\n-1.14976302e-01 4.23002690e-02 2.63863392e-02 -2.77687572e-02\\n3.70263577e-01 2.62478769e-01 1.44107118e-02 9.02565718e-01\\n4.00827587e-01 2.10702986e-01 4.35235232e-01 -5.40422022e-01\\n-2.79992908e-01 1.05556352e-02 4.99967575e-01 -4.24879134e-01\\n-1.14769138e-01 3.17645296e-02 -1.45947084e-01 1.13110274e-01\\n-3.70484859e-01 -2.17822924e-01 -3.51154208e-02 1.42038256e-01\\n-1.95038714e-03 -1.89433366e-01 -1.85011044e-01 3.93977724e-02\\n-2.08753720e-01 -1.40075684e-01 -4.71393257e-01 5.79361171e-02\\n-2.03131244e-01 -9.65416059e-02 -5.88907339e-02 -1.73853964e-01\\n-7.35427141e-02 -3.98241252e-01 -7.25910217e-02 -1.24516092e-01\\n2.12491721e-01 -2.14646846e-01 -7.43422583e-02 -2.59087414e-01\\n1.45040169e-01 1.89346939e-01 6.06501043e-01 1.30218625e-01\\n1.22446246e-01 -4.38830435e-01 -2.54959136e-01 1.37799591e-01\\n1.90084592e-01 1.58819690e-01 5.61140068e-02 2.59092838e-01\\n-2.48959899e-01 7.54178315e-02 1.40985519e-01 4.06763732e-01\\n-4.35636669e-01 1.10753790e-01 -1.89146280e-01 1.37781516e-01\\n2.08423316e-01 1.76207513e-01 -2.59276539e-01 1.01416551e-01\\n-2.16352284e-01 -4.27206516e-01 3.29995722e-01 -6.51073530e-02\\n-1.38386257e-03 1.95122156e-02 1.36364475e-01 8.45823362e-02\\n-2.37990469e-01 -3.51820476e-02 -1.37472332e-01 2.64489800e-01\\n1.65760919e-01 2.79269964e-01 -3.20247293e-01 -2.16819599e-01\\n-1.63795575e-01 2.19370767e-01 -9.74259451e-02 2.18969677e-02\\n3.88430431e-02 3.54745865e-01 -1.94028355e-02 3.52453962e-02\\n5.13705373e-01 3.70805264e-02 -1.98480785e-01 -1.58425108e-01\\n-2.10410401e-01 -3.66583377e-01 2.40572859e-02 -4.36119772e-02\\n1.82070062e-01 -4.18408841e-01 4.62703109e-02 -5.09650782e-02\\n-2.12733611e-01 -3.19931179e-01 -2.20053811e-02 -1.28458858e-01]]',\n", + " 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 25 million users worldwide work with documents. We love open-source and using the latest technologies to scale our distributed application to process millions of files every day. As a backend engineer at Smallpdf, you will not only contribute to our backend but also to our infrastructure and tooling. You will work in a cross-functional development team that includes experienced frontend engineers and designers. Our Backend Stack: Golang AWS Docker Ansible Terraform Full stack on Stackshare Responsibilities: Develop new features for Smallpdf Manage and automate our infrastructure that spans across more than 100 machines Analyze and monitor our application to spot problems Help designing our architecture Requirements Golang Experience Work independently and take responsibility and ownership of your work Ability to quickly learn new technologies 5+ years of experience with software development Good programming skills Good knowledge of linux Fluent in English (German is useful but not necessary) Full-time position Permanently based in Zurich (or willing to move) Swiss or EU passport holder (or other permit that allows you to work in Switzerland) Nice to Have: Experience with DevOps tools such as Docker Ansible Terraform Experience scaling (micro-) webservices to millions of users Experience with AWS Benefits The chance to personally impact a successful & rapidly growing startup Tricky challenges scaling a high-traffic web application Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich Do you like the job please apply here: https://apply.workable.com/smallpdf/j/A136D70A95/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " '[\"Infrastructure\", \"Positivity\", \"Management\"]',\n", + " '[\"Web Applications\", \"Automation\", \"Tooling\", \"Nice (Unix Utility)\", \"Programming (Music)\", \"Scale (Map)\", \"Component Object Model (COM)\", \"Linux\", \"Machining\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Terraform\", \"Cross-Functional Coordination\", \"Personalization\", \"Web Traffic\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Software Development\", \"Ansible\", \"User Experience\", \"Custom Backend\", \"DevOps\"]',\n", + " \"['English', 'Oromo', 'Ganda', 'Galician']\"],\n", + " ['99',\n", + " 'software engineer',\n", + " 'Eysins',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.quotientsciences.com',\n", + " '[[-1.67283162e-01 4.96382684e-01 4.73285615e-01 -3.95441093e-02\\n7.15354025e-01 -6.18053414e-02 5.90838194e-02 1.80678621e-01\\n-8.27328418e-04 -3.37114483e-01 -2.18784034e-01 -1.58189401e-01\\n1.52623206e-02 5.06034233e-02 2.28409559e-01 5.84479868e-01\\n2.51608580e-01 1.66614223e-02 -1.66437440e-02 4.06785816e-01\\n-6.73558787e-02 -1.67884827e-01 1.20005667e-01 6.37284100e-01\\n3.13242376e-01 -8.12849903e-04 -3.01359948e-02 -5.76268248e-02\\n-3.09288412e-01 -2.74816602e-01 4.40663099e-01 3.29021849e-02\\n-7.83144087e-02 -3.73824924e-01 1.08930394e-01 1.79451630e-01\\n-1.85445324e-01 1.28055304e-01 -1.78126425e-01 2.40898132e-01\\n-5.89650989e-01 -2.64039427e-01 7.97517747e-02 -1.03131890e-01\\n-3.34392726e-01 -3.88217837e-01 1.39606580e-01 -2.31899530e-01\\n1.11341067e-01 2.21235871e-01 -3.84487182e-01 3.55191052e-01\\n-4.07988071e-01 -2.70934194e-01 5.06339848e-01 5.72794139e-01\\n6.15819991e-02 -5.84330261e-01 -4.68150735e-01 -2.88958251e-01\\n1.22681923e-01 -6.50476888e-02 1.47600770e-01 -1.49397805e-01\\n3.15104038e-01 -9.98749509e-02 4.46192436e-02 2.78863698e-01\\n-6.97212040e-01 -1.29439145e-01 -3.69929761e-01 1.14065811e-01\\n-3.49062771e-01 -1.05505243e-01 -3.53100777e-01 -2.25138947e-01\\n-2.79875807e-02 4.16782022e-01 -1.44749507e-01 2.34315917e-02\\n-1.39191240e-01 4.35574681e-01 -2.01017037e-01 1.43315732e-01\\n3.08255732e-01 1.59997836e-01 3.94490868e-01 3.71993899e-01\\n-5.16115129e-01 3.85041445e-01 3.96353811e-01 -2.77292460e-01\\n2.07770273e-01 7.18651116e-02 3.30229253e-01 1.87326372e-01\\n-3.53857465e-02 2.16005147e-01 -2.13451192e-01 1.46659657e-01\\n1.86481237e-01 2.20601987e-02 -1.00690156e-01 6.19195076e-03\\n1.31012267e-03 -3.19163613e-02 -1.72947580e-03 2.76178092e-01\\n-4.15631890e-01 3.80885810e-01 1.95618063e-01 -2.89628297e-01\\n-1.42698929e-01 -5.80824733e-01 -2.10370094e-01 6.33820519e-02\\n-1.20050618e-02 1.27508745e-01 2.09431335e-01 2.51360834e-01\\n2.47809812e-01 -3.90639044e-02 1.85143441e-01 8.57120037e-01\\n2.29593422e-02 6.75428063e-02 -1.07030220e-01 3.60183030e-01\\n1.33770242e-01 -1.98120549e-01 4.20190096e-02 2.35998571e-01\\n-7.21413940e-02 -2.89273611e-03 -2.67424881e-01 3.36799145e-01\\n-1.72741249e-01 -2.47610480e-01 -2.52588511e-01 1.93755463e-01\\n-2.16580793e-01 -4.31534410e-01 4.68430281e-01 -1.90114602e-01\\n6.76211864e-02 -1.70918375e-01 -6.28996268e-02 4.93098721e-02\\n-2.82016397e-01 3.84538829e-01 2.14667886e-01 1.01979077e-01\\n-2.99329340e-01 -2.84333080e-01 -1.77723631e-01 2.62720913e-01\\n-1.51834592e-01 1.86395928e-01 -3.54028583e-01 -1.64308682e-01\\n3.25742811e-01 2.08727509e-01 -5.31035304e-01 3.02797854e-01\\n-1.36172830e-03 -1.84365958e-01 -2.54335344e-01 2.53711253e-01\\n-6.52396157e-02 1.13642119e-01 3.34032183e-03 -1.01220399e-01\\n5.95475554e-01 1.37235850e-01 2.92575777e-01 -1.20846368e-01\\n3.76828909e-01 -1.28077835e-01 2.47321457e-01 6.49513230e-02\\n-6.44647121e-01 4.44469839e-01 -1.82577640e-01 -1.04603253e-01\\n4.25479412e-02 2.02265009e-02 5.31656384e-01 -3.12031657e-01\\n-1.11082554e-01 -2.75638402e-01 -3.28261137e-01 -5.08254468e-01\\n-8.10283944e-02 -4.24229763e-02 3.78612876e-01 -3.64559412e-01\\n-5.32455631e-02 2.15527326e-01 -7.24871457e-01 -7.97624514e-02\\n3.85937512e-01 2.35226005e-01 1.63823038e-01 1.63700417e-01\\n-1.44805267e-01 -6.02992654e-01 1.59879178e-01 -5.34337342e-01\\n-2.90672660e-01 1.37909099e-01 -2.17367843e-01 6.82096481e-02\\n-1.17913559e-02 3.04325819e-02 -4.39064689e-02 4.63327318e-02\\n-2.95871615e-01 -1.32496711e-02 1.52611867e-01 -2.64245179e-02\\n1.01892352e-01 1.13051072e-01 -4.70750362e-01 5.16115248e-01\\n-2.02063397e-01 4.04750526e-01 7.94736594e-02 -9.69350219e-01\\n5.03957987e-01 2.29500964e-01 -1.11463163e-02 -3.07611734e-01\\n5.91374516e-01 -3.56890380e-01 -8.50174204e-02 1.68656290e-01\\n-2.67049938e-01 -1.69523910e-01 2.77892292e-01 -1.67215213e-01\\n-3.24622005e-01 5.91055214e-01 1.15860440e-01 3.96384932e-02\\n3.08249563e-01 -1.01169541e-01 -1.09347917e-01 -4.04855609e-03\\n-8.63071755e-02 -2.03987453e-02 -4.55997586e-01 1.56496204e-02\\n-4.17355932e-02 -5.50188541e-01 -2.11021900e-01 -4.30515110e-01\\n-1.81023523e-01 -4.42410886e-01 -2.66065687e-01 9.48991179e-02\\n4.56364453e-02 1.18560277e-01 4.24885983e-03 1.21486619e-01\\n-2.12956052e-02 -8.45426083e-01 -7.96089992e-02 1.65583566e-01\\n1.92681685e-01 4.71878022e-01 2.18870610e-01 -1.10170893e-01\\n-8.90544280e-02 3.70567292e-01 -3.46888751e-01 -2.09043488e-01\\n2.47652262e-01 4.48090397e-02 -7.02936798e-02 -1.68070421e-01\\n1.14390329e-01 3.30983073e-01 -2.21414745e-01 1.18749730e-01\\n4.06400003e-02 -1.79618075e-02 3.52299511e-01 -1.07650585e-01\\n-3.03789884e-01 -1.78014934e-01 -1.18170142e-01 2.61042535e-01\\n-6.36415780e-01 -1.78278878e-01 5.25998831e-01 6.65154159e-02\\n3.08961291e-02 3.27643275e-01 3.56017798e-01 -7.01261908e-02\\n-3.34032208e-01 -2.03804418e-01 2.29282916e-01 1.38755873e-01\\n1.61493286e-01 -3.57251838e-02 -2.43090749e-01 -6.85398400e-01\\n-3.36590719e+00 -2.27977782e-01 1.61804214e-01 -3.20039481e-01\\n3.04907292e-01 -3.26754376e-02 2.63678521e-01 6.74046725e-02\\n-4.25667435e-01 2.55601481e-02 -1.76507935e-01 -1.29918844e-01\\n6.98243529e-02 3.32497895e-01 9.73022506e-02 9.07275453e-02\\n7.39738420e-02 -3.95802706e-01 7.48599693e-02 4.51745003e-01\\n-1.51159942e-01 -8.91585350e-01 1.35872159e-02 2.97283512e-02\\n1.60224333e-01 1.03656694e-01 -5.86426854e-01 -3.37138437e-02\\n-2.74967313e-01 -1.87939823e-01 8.74861106e-02 -4.47235852e-02\\n-2.94496089e-01 2.28376254e-01 8.54830891e-02 -1.12324983e-01\\n-2.13490855e-02 -2.79905170e-01 -6.16475232e-02 -6.68594241e-01\\n1.27968386e-01 -7.22252607e-01 5.30232862e-03 -3.13416570e-02\\n4.86633956e-01 -9.97365266e-02 2.40852326e-01 1.50363609e-01\\n1.39815211e-01 2.13297471e-01 1.13651454e-01 -8.13508872e-03\\n-1.95934355e-01 -2.19100252e-01 -1.27989277e-01 -8.76261517e-02\\n6.99163318e-01 3.76516491e-01 -3.27294528e-01 -1.84754550e-03\\n6.28733784e-02 -3.56785595e-01 -4.52331334e-01 -2.76319563e-01\\n-2.30234861e-01 3.18514295e-02 -7.09605217e-01 -4.17568296e-01\\n-1.58655375e-01 -2.18184695e-01 -9.87968445e-02 7.75923133e-01\\n-3.75988603e-01 -3.34090531e-01 -9.81640667e-02 -6.01580977e-01\\n1.40054092e-01 -2.70387918e-01 4.93498845e-03 -2.79449672e-01\\n-3.61586243e-01 -3.52262735e-01 3.09144408e-01 8.34799930e-02\\n-2.16312572e-01 9.06404033e-02 1.16812818e-01 -1.15260594e-01\\n-3.89930755e-01 -5.81773877e-01 4.28370357e-01 7.18084946e-02\\n3.61614108e-01 -3.77777740e-02 3.13419729e-01 -3.83485220e-02\\n5.09930313e-01 -1.59920976e-02 8.59928802e-02 -5.62680304e-01\\n-8.70154873e-02 -2.05737203e-02 7.11441338e-01 -2.34437749e-01\\n-4.87223454e-02 1.74908474e-01 -2.07855225e-01 -2.89404392e-01\\n4.85346377e-01 -2.22759005e-02 1.86039239e-01 -3.06634158e-01\\n3.08273584e-01 -4.84438568e-01 -2.25648656e-01 9.60651413e-02\\n7.29645267e-02 7.78930962e-01 2.44732909e-02 -4.17339504e-01\\n-1.43703416e-01 3.12684953e-01 -1.91466644e-01 5.49326204e-02\\n-1.14602178e-01 2.99004167e-02 -1.62621632e-01 3.82111520e-01\\n7.57742673e-02 -1.53777748e-01 -2.65014112e-01 6.90416917e-02\\n-7.91388154e-02 1.61529616e-01 2.57426709e-01 1.59676507e-01\\n-7.79743344e-02 -2.99858272e-01 -1.12044632e-01 1.72875032e-01\\n1.53421715e-01 3.65172386e-01 1.51879251e-01 -3.79622549e-01\\n1.58237927e-02 2.26691976e-01 -2.57052600e-01 3.30407172e-01\\n-1.41537011e-01 1.48903772e-01 -5.12566447e-01 -9.72853824e-02\\n-2.82519251e-01 -2.72215515e-01 6.81637675e-02 3.29897344e-01\\n1.69731855e-01 -1.33052677e-01 1.19581856e-01 -5.29412985e-01\\n2.96477467e-01 1.48529842e-01 1.75442964e-01 1.10479176e-01\\n-5.50859310e-02 6.96975112e-01 -1.19051998e-02 -1.97875157e-01\\n-1.88725302e-03 8.35982114e-02 -2.07555592e-01 -1.98839322e-01\\n1.11030713e-01 -3.98029923e-01 -8.53429921e-03 4.88453090e-01\\n1.61343187e-01 -4.92162742e-02 -1.55689403e-01 3.33499938e-01\\n4.95009050e-02 -2.77789384e-01 -2.44411871e-01 -2.30552368e-02\\n4.43329699e-02 2.95744333e-02 2.91405320e-01 -4.89995062e-01\\n5.18030189e-02 -7.42126107e-02 6.93076029e-02 3.44546229e-01\\n2.35428400e-02 1.20333031e-01 -1.22529328e-01 -1.13325737e-01\\n4.36666250e-01 9.03463215e-02 -7.92455971e-02 -1.70062520e-02\\n1.87160149e-01 -2.65449584e-01 -5.07697880e-01 -3.45288999e-02\\n-1.14432283e-01 -1.71996027e-01 1.13041736e-01 1.51635790e-02\\n1.86537549e-01 2.14096736e-02 -4.26688641e-01 -1.13187924e-01\\n-2.85175920e-01 2.51499843e-02 -1.81716532e-01 -5.95246792e-01\\n-7.07061365e-02 4.16523144e-02 -5.74558139e-01 2.22292379e-01\\n-5.76059008e-03 -3.85601185e-02 1.76665425e-01 2.27065086e-01\\n-2.69160718e-01 -2.66150981e-01 1.50380164e-01 1.52548440e-02\\n-2.77740210e-01 -1.76942214e-01 -3.68021950e-02 -9.36817467e-01\\n2.31606722e-01 -6.28801808e-02 -1.94569543e-01 3.97571847e-02\\n-1.22179888e-01 -7.56654739e-01 2.09525630e-01 -3.79736274e-01\\n-2.27010787e-01 6.01732954e-02 -2.26237684e-01 -3.40690017e-01\\n7.33671710e-02 -1.24778397e-01 -2.90580541e-01 3.12682569e-01\\n-3.61994475e-01 5.77859223e-01 4.40651514e-02 8.52059051e-02\\n1.41486144e-02 -2.04577833e-01 1.49629980e-01 -2.91375935e-01\\n-4.61250693e-01 -7.70405680e-02 -2.75184125e-01 -3.02751869e-01\\n-7.05734566e-02 -1.75870180e-01 -2.23107040e-01 1.50369853e-01\\n4.01551872e-01 7.57903755e-02 -1.26894414e-01 -1.27012551e-01\\n-1.98444575e-02 -3.85478348e-01 1.54525787e-01 -2.57370502e-01\\n1.39345258e-01 -8.13426226e-02 3.94687921e-01 5.22590708e-04\\n2.64045089e-01 -2.67956823e-01 6.32379532e-01 -1.34969652e-01\\n-3.37119460e-01 -1.68911383e-01 1.19579807e-01 1.14029787e-01\\n4.38407272e-01 -4.84939933e-01 2.94002555e-02 2.85366863e-01\\n-1.13274679e-01 3.18405926e-02 2.24106148e-01 -1.83181569e-01\\n-1.61934376e-01 -9.30105988e-03 -6.15322053e-01 2.19566286e-01\\n6.99552119e-01 2.61645257e-01 1.61991939e-01 1.27732232e-01\\n1.01735376e-01 3.68169546e-01 6.19638860e-01 -1.00752927e-01\\n-1.65866062e-01 3.33156466e-01 7.69180432e-02 -5.56725144e-01\\n-2.86869675e-01 4.59007779e-03 -1.54584095e-01 -3.91991764e-01\\n6.35518789e-01 1.88641161e-01 -4.09015238e-01 -3.64251018e-01\\n-2.77176917e-01 -2.79904515e-01 2.76747167e-01 -5.32844290e-03\\n3.55964079e-02 -1.61833435e-01 6.24098659e-01 5.12679070e-02\\n3.42268229e-01 4.98422861e-01 -5.81675135e-02 -3.33056957e-01\\n5.39596900e-02 1.99790031e-01 4.30069258e-03 2.69510180e-01\\n5.29400678e-03 1.61001727e-01 1.95755623e-02 1.97789967e-01\\n-2.26976275e-01 -1.50916949e-01 1.14374436e-01 1.20383270e-01\\n7.07988888e-02 2.09514692e-01 6.24804974e-01 4.26409602e-01\\n2.15460166e-01 3.52721870e-01 2.75899053e-01 2.86861062e-02\\n5.20019054e-01 6.54697418e-01 2.92867571e-01 4.55033174e-03\\n1.26852065e-01 2.82500923e-01 1.35589138e-01 -5.10333804e-04\\n4.33821231e-01 4.51742291e-01 1.26192093e-01 8.27383220e-01\\n7.43306652e-02 3.70451123e-01 7.68658519e-01 -6.19583428e-01\\n-3.18684846e-01 7.70748928e-02 6.30156457e-01 -4.34582114e-01\\n6.87476946e-03 2.27544695e-01 -1.26900107e-01 2.92407632e-01\\n-5.30891657e-01 -1.48756430e-01 3.55412550e-02 -5.42347208e-02\\n2.24938225e-02 -1.57012284e-01 -1.12404890e-01 -2.40950156e-02\\n-1.66813850e-01 -1.49871975e-01 -2.09899873e-01 -3.25569928e-01\\n-2.51107574e-01 1.11149378e-01 -4.22187746e-02 -1.73717663e-01\\n-3.39396968e-02 -3.10252637e-01 -1.27170131e-01 -8.64047259e-02\\n2.56068021e-01 -1.57345891e-01 -1.95944652e-01 -3.99634242e-02\\n1.51886046e-01 1.73659250e-01 7.09538043e-01 -7.05268085e-02\\n1.20836891e-01 -1.66058779e-01 -1.73461422e-01 7.13922083e-02\\n1.63114458e-01 1.64563686e-01 6.52934685e-02 6.67771041e-01\\n-3.23297441e-01 -1.01821534e-01 8.80909488e-02 3.58815104e-01\\n-2.65383244e-01 -2.23928201e-03 -6.07998855e-02 8.19014534e-02\\n-8.21686909e-02 8.73030797e-02 -2.14701787e-01 -2.82162726e-02\\n-1.36687919e-01 -5.65336287e-01 4.02833879e-01 -1.28295660e-01\\n-3.13870877e-01 -6.42627757e-03 3.26349437e-01 3.45629752e-01\\n-1.57253563e-01 -3.78518030e-02 -1.02381997e-01 1.22643121e-01\\n8.03345293e-02 4.92935359e-01 -1.89984858e-01 -2.59463370e-01\\n-3.32633823e-01 2.66296923e-01 3.80577892e-02 1.66840926e-01\\n-8.88827369e-02 2.90821284e-01 7.16807917e-02 6.53435439e-02\\n3.55444521e-01 -1.56623036e-01 -2.89584488e-01 -3.11671942e-01\\n-1.53793246e-01 -1.34443194e-01 1.05127253e-01 -1.44648746e-01\\n2.45508015e-01 -3.53670835e-01 -4.27128226e-02 -2.88287520e-01\\n-1.39551595e-01 -3.97719026e-01 -2.17192456e-01 1.82976108e-02]]',\n", + " 'Quotient is recruiting for a Software Engineer to join the IT department team based in Eysins. The Software Engineer will define, develop, test, analyze and maintain manufacturing software applications in support of the achievement of business requirements. Participate actively in the implementation and support of Manufacturing information systems solutions Participate in the definition, development, and documentation of software’s business requirements, objectives, deliverables, and specifications in collaboration with internal users and departments and as per our project methodology Write, code, install and analyse software programs and applications throughout the full lifecycle of system implementation (from requirements/design through to deployment and support) Design, run and monitor software testing on new and existing programs for the purposes of correcting errors, isolating areas for improvement, and general debugging Develop interface of MES system to ERP, PLC and other 3rd party system Develop and execute software verification plans following quality assurance procedures Develop and maintain IT documentation, user manuals and guidelines as well as train key users to operate new or modified programs Provide support for Manufacturing Software applications (Incident management and problem resolution) and develop further the manufacturing systems support Knowledge base Ensure timely issue identification, resolution, and appropriate escalation Collaborate with suppliers, internal project and IT team, internal management, and customer project teams and management Research, advice and implement technologies for Digital Factory transformation (Industry 4.0) Qualifications Engineering Diploma (EPF/HES or equivalent) in Computer Science, Information Systems, Industrial Engineering or equivalent Minimum 2 years experience on a similar role Programming skills in NET; C# and SQL language and ability to quickly learn new software/applications Must be a team player and an effective communicator, to enable communication with a wide range of stakeholders and cultures Experience of Manufacturing Information systems (Manufacturing Execution Systems, labelling and Enterprise Resource planning) in the medical devices or pharma industry is a strong asset SLDC and validation experience of enterprise applications is considered an asset Ability to work under pressure, meet deadlines and respond flexibly Excellent spoken and written French. Good English required Videos To Watch',\n", + " '[\"Writing\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Quality Assurance\"]',\n", + " '[\"Development Testing\", \"Systems Implementations\", \"Enterprise Application Software\", \"Knowledge Base\", \"Industry 4.0\", \"Programming (Music)\", \"Computer Science\", \"Mobile Application Software\", \"System Support\", \"Industrialization\", \"Enterprise Resource Planning\", \"Activism\", \"Installation\", \"Maintainability\", \"Resource Planning\", \"Software Manufacturing\", \"Executable\", \"Software Engineering\", \"Simatic S5 PLC\", \"Business Requirements\", \"Medical Devices\", \"MFG/Pro (ERP)\", \"C# (Programming Language)\", \"Digitization\", \"Incident Management\", \"Systems Development\", \"Industrial Engineering\", \"Transformation (Genetics)\", \"Factorials\", \"Software Testing\", \"Manufacturing Execution System (MES)\", \"Debugging\", \"Information Systems\"]',\n", + " \"['English', 'Valencian', 'Albanian']\"],\n", + " ['145',\n", + " 'c++ software engineer',\n", + " 'Zürich',\n", + " 'Aerospace & Defence',\n", + " 'www.veritystudios.com',\n", + " '[[-1.59014553e-01 3.03873777e-01 4.20136034e-01 9.04157944e-03\\n5.37488341e-01 -1.61431819e-01 1.03864595e-02 2.45850876e-01\\n2.68839337e-02 -3.19560707e-01 -8.36889073e-02 -3.46619129e-01\\n-1.36771798e-01 7.22995996e-02 1.42730713e-01 5.38762569e-01\\n1.96443349e-01 7.95913488e-02 -2.58733332e-01 4.68955278e-01\\n5.77662326e-02 -8.69698301e-02 1.24980330e-01 7.25770831e-01\\n3.68847013e-01 5.06829806e-02 -1.38483390e-01 -3.95100601e-02\\n-1.80905819e-01 -1.23619042e-01 4.67145920e-01 -2.29087807e-02\\n-7.49987438e-02 -5.01810312e-01 9.14061144e-02 9.44920257e-02\\n-2.28975087e-01 -6.00676909e-02 -9.11961049e-02 1.24235593e-01\\n-5.25383294e-01 -3.42253864e-01 2.92138662e-02 -7.24991634e-02\\n-2.29615346e-01 -2.64409304e-01 1.45086557e-01 -7.90537596e-02\\n1.73731849e-01 6.35759383e-02 -4.84650135e-01 3.38169396e-01\\n-3.27064872e-01 -2.10456073e-01 3.89829814e-01 6.65574551e-01\\n3.35495174e-02 -5.37150502e-01 -5.28799355e-01 -3.57071459e-01\\n-8.67669731e-02 6.03123009e-03 3.49356011e-02 -3.81744117e-01\\n2.79709101e-01 8.28928128e-03 4.68634181e-02 3.28822970e-01\\n-7.16634631e-01 -1.98418051e-01 -2.00354993e-01 6.13365360e-02\\n-2.14291871e-01 -4.68525030e-02 -3.15927535e-01 -1.06184468e-01\\n-1.34810567e-01 3.62323940e-01 -3.42762619e-02 5.80133609e-02\\n-1.84461832e-01 3.50923657e-01 -1.18408948e-01 4.48253751e-01\\n2.51421183e-01 2.14727059e-01 2.41190642e-01 4.41014588e-01\\n-3.54598433e-01 3.54107380e-01 1.65247887e-01 -3.12762767e-01\\n2.24576250e-01 2.01780528e-01 4.96373355e-01 2.23664939e-02\\n5.35540991e-02 8.40156749e-02 -3.05854321e-01 2.64168054e-01\\n2.17264712e-01 -2.75230885e-01 1.33251399e-01 -1.45568773e-01\\n5.65315187e-02 3.31686884e-02 4.60284911e-02 1.98023245e-01\\n-3.21965575e-01 4.13138330e-01 2.85223663e-01 -2.91862905e-01\\n-2.26965249e-01 -6.07090056e-01 -9.40991119e-02 1.28305331e-01\\n3.55421640e-02 1.26272455e-01 1.85322911e-01 1.57520354e-01\\n2.92466223e-01 -1.91178292e-01 1.30604103e-01 8.81181896e-01\\n-1.03899822e-01 -1.44632906e-03 -7.26981759e-02 2.92382509e-01\\n1.17982060e-01 -2.59292543e-01 9.55405757e-02 2.33013541e-01\\n6.04443774e-02 -7.59885609e-02 -1.92010403e-01 3.11514080e-01\\n-2.12934345e-01 -2.09957004e-01 -3.68047476e-01 3.20789784e-01\\n-1.03731818e-01 -4.32018340e-01 6.74305201e-01 -9.10072327e-02\\n1.78771377e-01 -5.71099594e-02 2.64450666e-02 -7.91083351e-02\\n-1.52101889e-01 1.52517244e-01 1.85045660e-01 9.61411819e-02\\n-3.24539006e-01 -2.24507079e-01 -1.67629465e-01 9.47467014e-02\\n-2.65097469e-01 1.48413017e-01 -1.34500295e-01 -2.11859539e-01\\n1.33881509e-01 1.36580169e-01 -4.91587102e-01 2.01742172e-01\\n-1.72394976e-01 -7.45970011e-02 -1.29319236e-01 4.92416710e-01\\n-1.87292427e-01 2.23804355e-01 9.27935392e-02 -3.96982543e-02\\n6.84168577e-01 1.92760795e-01 1.53599992e-01 -1.15911916e-01\\n4.38116163e-01 -6.11143559e-02 2.30819792e-01 2.16873512e-01\\n-6.74739718e-01 3.02194655e-01 -9.25403461e-03 -8.35418552e-02\\n1.51447028e-01 -1.24217108e-01 3.89713198e-01 -4.13335204e-01\\n-2.64210030e-02 -2.43126541e-01 -2.96218693e-01 -2.70868897e-01\\n-2.71283567e-01 6.56682327e-02 2.94614375e-01 -2.49300241e-01\\n-8.02800134e-02 2.64368773e-01 -5.63948452e-01 -1.39512718e-01\\n1.93344966e-01 1.99096709e-01 9.70217735e-02 1.06578976e-01\\n-1.61237836e-01 -6.74248695e-01 1.87801905e-02 -3.39917958e-01\\n-3.72041225e-01 -4.63143587e-02 -2.88899720e-01 1.48816943e-01\\n2.09799092e-02 5.33569939e-02 -7.43546486e-02 2.23525874e-02\\n-4.26323891e-01 -3.26618180e-03 8.62371922e-02 1.77564286e-03\\n1.77718729e-01 1.39316812e-01 -4.30603266e-01 3.55524361e-01\\n-2.71083355e-01 6.27099574e-01 2.10812688e-03 -9.59008813e-01\\n4.96104717e-01 3.45502377e-01 -5.44648841e-02 -3.20952147e-01\\n4.52602804e-01 -4.79930639e-01 -1.20407067e-01 7.97528327e-02\\n-2.25554883e-01 -2.66895831e-01 3.43606114e-01 -2.58773595e-01\\n-3.36218178e-01 5.53181350e-01 5.46340905e-02 1.60634279e-01\\n2.88383752e-01 -3.32148790e-01 -6.38822690e-02 3.78879234e-02\\n6.25540316e-03 -1.03637472e-01 -5.46739936e-01 -2.87847854e-02\\n-7.75304064e-02 -3.34680676e-01 -1.01409048e-01 -3.80286932e-01\\n-1.50843948e-01 -3.84630293e-01 -2.33132124e-01 1.60581499e-01\\n2.47291043e-01 1.06540069e-01 8.49924982e-02 9.26393047e-02\\n-2.34476812e-02 -6.59592271e-01 2.00217441e-02 1.36902958e-01\\n4.58609551e-01 2.67695367e-01 1.46135777e-01 4.79000360e-02\\n9.30680484e-02 6.19428635e-01 -3.08816552e-01 -2.02744544e-01\\n1.43416166e-01 1.28160655e-01 -3.95089723e-02 -1.01093881e-01\\n1.56499535e-01 3.57874691e-01 -2.88431883e-01 -1.10130478e-02\\n-1.48187533e-01 -2.72360202e-02 4.28748995e-01 -6.21316507e-02\\n-2.79403508e-01 -2.53823698e-01 -9.79816690e-02 3.47997770e-02\\n-5.33209085e-01 -2.12914318e-01 3.57482612e-01 9.98760015e-02\\n2.32495174e-01 1.03246972e-01 1.17818296e-01 -8.21668059e-02\\n-4.26595688e-01 -3.09437841e-01 1.48750126e-01 1.49308890e-01\\n7.40788970e-03 9.59183574e-02 4.76604179e-02 -6.82590902e-01\\n-2.93036938e+00 2.67491527e-02 2.12425023e-01 -2.36928284e-01\\n2.88048536e-01 -2.30525713e-02 1.21396720e-01 -5.03726602e-02\\n-3.73897791e-01 9.78326276e-02 -7.98460543e-02 -1.76291138e-01\\n1.13592148e-02 2.69979656e-01 9.46226865e-02 8.17166418e-02\\n5.22515960e-02 -3.42830718e-01 -1.16946690e-01 3.40881497e-01\\n-4.51768301e-02 -7.65984893e-01 1.91871345e-01 -1.16469748e-01\\n2.42158473e-01 2.46699497e-01 -4.82806504e-01 -1.34013385e-01\\n-2.38753840e-01 -1.17367722e-01 -9.60818678e-03 -2.16299459e-01\\n-2.04528987e-01 1.83697611e-01 1.82129338e-01 -4.32385504e-02\\n7.30579793e-02 -3.99027169e-01 -8.47468749e-02 -4.27565187e-01\\n1.70376480e-01 -6.00896835e-01 1.67764165e-02 -1.94066793e-01\\n6.18235111e-01 -2.63515145e-01 1.14118814e-01 7.73437917e-02\\n1.56531006e-01 1.37543101e-02 1.78664684e-01 1.23023078e-01\\n-1.26235753e-01 -1.94392830e-01 -7.63775706e-02 -2.29212970e-01\\n6.38047397e-01 4.02421951e-01 -1.75277576e-01 -4.09799367e-02\\n3.77210081e-02 -3.15232098e-01 -4.69778329e-01 -2.23376870e-01\\n-8.19963589e-02 -1.93647176e-01 -6.29816771e-01 -3.65158588e-01\\n-2.00364232e-01 -1.16365314e-01 -1.02252692e-01 7.07525849e-01\\n-4.05874819e-01 -3.02315414e-01 8.50597396e-02 -6.06460690e-01\\n2.93879211e-01 -2.77355134e-01 3.20408531e-02 -3.20527375e-01\\n-2.92399555e-01 -5.48112988e-01 8.66106302e-02 -1.12327248e-01\\n-1.90963507e-01 -2.66541362e-01 1.56383403e-02 -1.19578272e-01\\n-2.10963145e-01 -5.68038404e-01 4.07083094e-01 1.63633704e-01\\n3.62480134e-01 2.79569626e-02 4.58326042e-01 -8.06553066e-02\\n3.36671889e-01 4.03785817e-02 9.14684311e-02 -3.16485524e-01\\n-2.45413706e-02 3.89763638e-02 5.91186345e-01 -2.79155374e-01\\n-2.58729840e-03 1.02753714e-01 -2.12692469e-01 -4.65524867e-02\\n3.86766493e-01 -5.07784970e-02 3.75814959e-02 -2.26744682e-01\\n3.59775275e-01 -4.60290194e-01 -1.33958399e-01 7.24326000e-02\\n1.77612588e-01 8.76236677e-01 3.56180966e-02 -3.89140010e-01\\n-1.73645958e-01 5.20150900e-01 -1.09330922e-01 1.01028636e-01\\n-8.55934694e-02 1.00248173e-01 -3.21990013e-01 2.82235980e-01\\n6.39477819e-02 -3.25786114e-01 -2.79859841e-01 -3.34360600e-02\\n-1.41410202e-01 3.41003835e-01 1.64620653e-01 7.85913169e-02\\n-1.16160475e-01 -4.14354146e-01 -1.45252883e-01 3.12588155e-01\\n1.26917362e-01 4.26329672e-01 2.01131448e-01 -3.91867727e-01\\n7.72245601e-02 4.54782844e-01 -1.01191334e-01 2.91804105e-01\\n-1.39071122e-01 1.79487452e-01 -5.39253950e-01 -2.34927356e-01\\n-3.58869553e-01 -4.22988892e-01 1.05905965e-01 4.84050870e-01\\n1.56405836e-01 -3.09247859e-02 1.19239107e-01 -5.33124566e-01\\n4.00083840e-01 2.03899145e-01 6.53666183e-02 8.28189030e-02\\n-5.46992198e-02 5.66829562e-01 3.47331539e-02 -1.75122231e-01\\n-1.60186857e-01 -4.45708409e-02 -1.13529399e-01 -2.57895559e-01\\n2.50851810e-01 -4.79016006e-01 -1.17261425e-01 3.79071057e-01\\n9.89333019e-02 -2.49600396e-01 -2.91133702e-01 2.95446217e-01\\n-1.53109208e-02 -3.17207754e-01 -2.84036577e-01 -1.40519366e-01\\n2.35202193e-01 -6.61763027e-02 2.99646974e-01 -5.16981840e-01\\n3.34050134e-02 -4.79252450e-02 3.35257947e-02 4.07958567e-01\\n-3.43933776e-02 -1.44969165e-01 -3.04799855e-01 -4.62685451e-02\\n4.58921164e-01 4.69461121e-02 -7.06684887e-02 -8.68129432e-02\\n1.70396268e-01 -2.91893750e-01 -4.57197547e-01 8.95398110e-02\\n-1.86751969e-02 -2.05350950e-01 3.19862813e-02 7.19214380e-02\\n1.31657243e-01 2.13803295e-02 -5.67325413e-01 -1.49728581e-01\\n-1.31232619e-01 -4.04464714e-02 5.43550104e-02 -4.08694685e-01\\n-1.15851834e-01 -1.89695396e-02 -6.04654789e-01 1.22516021e-01\\n-2.99931765e-01 -1.57429039e-01 1.87445208e-01 1.23400435e-01\\n-3.60481083e-01 -1.60962284e-01 -6.55811653e-02 2.58306563e-01\\n-2.55343616e-01 -2.83602476e-01 -4.34198976e-02 -9.95717049e-01\\n1.21335045e-01 -3.84837836e-02 -9.32515636e-02 1.60767585e-01\\n-1.32742196e-01 -9.02205884e-01 1.73468411e-01 -3.46720040e-01\\n-5.12810647e-02 1.05172973e-02 -2.52566934e-01 -1.32707089e-01\\n1.69134796e-01 -4.39770259e-02 -3.12299311e-01 4.05391157e-01\\n-2.57542491e-01 2.75019646e-01 -1.82253480e-01 3.66385989e-02\\n-4.98409942e-02 -1.47286296e-01 9.96578857e-02 -3.15191805e-01\\n-3.99465263e-01 -2.49624431e-01 -2.26343483e-01 -2.87872881e-01\\n-1.33660942e-01 -2.26775438e-01 -2.94813454e-01 1.36815220e-01\\n2.97445685e-01 -1.91993937e-02 -6.62438944e-02 -2.84053683e-01\\n8.15426931e-02 -4.37640131e-01 1.18853234e-01 -9.61793214e-02\\n1.01327196e-01 -1.80382311e-01 2.03760251e-01 9.42906439e-02\\n3.47847074e-01 -3.27921987e-01 5.07169247e-01 -3.21812809e-01\\n-3.60280007e-01 -1.30376831e-01 -1.11748930e-02 -1.42909452e-01\\n3.83633733e-01 -4.13318574e-01 3.60995680e-02 2.94052690e-01\\n-2.97330450e-02 6.79653510e-02 2.92792499e-01 -1.49148345e-01\\n2.43475996e-02 5.57293519e-02 -4.03811187e-01 5.55409119e-02\\n7.24176288e-01 2.43063211e-01 5.91266826e-02 1.48684502e-01\\n1.96284000e-02 2.93685049e-01 5.80576956e-01 -1.63717672e-01\\n-1.34419844e-01 1.65789366e-01 1.04760386e-01 -5.90338588e-01\\n-2.13629216e-01 -2.71766484e-02 -2.77890712e-01 -4.06131178e-01\\n6.36844873e-01 3.43655765e-01 -3.87023240e-01 -1.26804754e-01\\n-3.29161296e-03 -1.48861855e-01 3.27145100e-01 3.64118814e-02\\n3.33140306e-02 -4.68363129e-02 4.58690226e-01 -1.91325173e-02\\n3.20183873e-01 5.68645060e-01 -2.00675040e-01 -3.83791357e-01\\n-5.69666289e-02 2.04810590e-01 5.26794195e-02 3.42937291e-01\\n-1.79706439e-01 2.61406004e-01 -8.82699639e-02 -3.43631990e-02\\n-2.04685673e-01 1.54560700e-01 3.49678844e-02 8.30618143e-02\\n1.98008984e-01 8.93341452e-02 4.82273161e-01 5.49919605e-01\\n1.69384107e-01 3.97567868e-01 3.35723281e-01 6.70343041e-02\\n4.42886174e-01 6.05506599e-01 3.77898812e-01 1.28400385e-01\\n1.28477246e-01 2.71487385e-01 2.64310122e-01 -1.00035504e-01\\n5.22435308e-01 4.42583084e-01 1.59315288e-01 8.55651259e-01\\n2.22963974e-01 4.66826797e-01 8.25543284e-01 -6.84002817e-01\\n-3.51933658e-01 8.43482614e-02 4.99767572e-01 -4.07838345e-01\\n2.96916682e-02 1.13362536e-01 -7.18833134e-02 4.02163029e-01\\n-5.92907190e-01 -2.31373727e-01 -5.70935607e-02 1.31987050e-01\\n-8.25094581e-02 -1.40833482e-01 -1.86578184e-01 1.67586267e-01\\n-1.36299029e-01 -2.30184808e-01 -2.74504542e-01 -1.26835749e-01\\n-1.88545555e-01 8.29080716e-02 -1.09147154e-01 -1.17386132e-01\\n1.67900976e-02 -3.00773472e-01 -1.96813885e-02 -1.98854953e-02\\n3.04512203e-01 -1.44697279e-01 -1.38420582e-01 -1.60332501e-01\\n3.17265749e-01 1.38650090e-01 4.45066333e-01 1.19474027e-02\\n2.26769626e-01 -1.75296634e-01 -2.68394649e-01 1.45630047e-01\\n5.27939647e-02 5.10673895e-02 7.75049850e-02 3.34073424e-01\\n-2.46569067e-01 -7.13776350e-02 6.05016723e-02 3.10498178e-01\\n-3.15944254e-01 -9.46441218e-02 -1.79491848e-01 1.04074277e-01\\n1.16122216e-02 2.14196518e-01 -1.22656472e-01 -4.32310998e-02\\n-1.58769861e-01 -4.15511698e-01 3.12509894e-01 -8.01340342e-02\\n-2.59796798e-01 -2.82387510e-02 3.34538460e-01 1.56536564e-01\\n-2.94144511e-01 1.36588559e-01 -1.78364724e-01 2.28852600e-01\\n6.93287700e-04 3.27810675e-01 -6.39480948e-02 -2.64823586e-01\\n-2.22099304e-01 2.29548708e-01 -1.04371443e-01 6.85802847e-02\\n9.05385762e-02 5.22999823e-01 -8.21659416e-02 -7.19054565e-02\\n6.20769918e-01 -3.79451774e-02 -2.77809560e-01 -2.64831513e-01\\n-9.15747732e-02 -1.81097507e-01 -1.18475482e-01 -9.94069874e-02\\n1.95696130e-01 -4.13639069e-01 -5.43571785e-02 -2.41785377e-01\\n4.43092063e-02 -1.98828623e-01 -9.74043161e-02 2.03290060e-02]]',\n", + " \"To complement its growing team, Verity Studios is looking for an experienced and versatile C++ Software Engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software for drone systems requires addressing new and challenging problems such as: (a) designing flexible software systems that can adapt to the requirements of several kinds of scenarios (different type and number of drones, different operating procedures, etc.), (b) defining robust and reliable communication protocols for distributed systems (both on wired and wireless connections), (c) implementing sophisticated algorithms to execute tasks efficiently and reliably, and (d) defining smart interfaces to promptly interact with the drones and the other system components during operation. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deployment Interact with other engineering teams to define and review design documents Design the architecture of system components Define distributed communication protocols and complex state machines. Develop, and maintain general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Creative approach to problem solving Experience in mentoring junior engineers is a plus Good written and spoken English language skills Excellent knowledge of C++ and STL Familiar with GDB and other debugging and program analysis tools Familiarity with libraries such as Boost and Qt is a plus Experience in Python and modern C++ is a plus Experience in promoting new technologies, coding practices, and development guidelines is a plus Benefits. Work in an interdisciplinary, highly-skilled team Create ground-breaking systems, used by some of the world's most prominent stage productions Shape the culture and have a significant impact in a rapidly growing young company\",\n", + " '[\"Adaptability\", \"Professionalism\", \"Problem Solving\", \"Operations\", \"Reliability\", \"Creativity\"]',\n", + " '[\"Distributed File Systems\", \"Tooling\", \"System Requirements\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Staging\", \"Standard Operating Procedure\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"State Machines\", \"Software Systems\", \"Python (Programming Language)\", \"Maintainability\", \"Track (Rail Transport)\", \"Library\", \"Program Analysis\", \"Executable\", \"Software Engineering\", \"Completely Randomized Design\", \"C (Programming Language)\", \"Robotics\", \"Standard Template Library (STL)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Data Structures\", \"Systems Design\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"Qt (Software)\", \"Debugging\", \"Documentation Based Coding\", \"Process Driven Development\"]',\n", + " \"['English', 'Armenian']\"],\n", + " ['4',\n", + " 'business analyst - application support analyst',\n", + " 'Neuchâtel',\n", + " '',\n", + " '',\n", + " '[[-1.66816726e-01 2.85162449e-01 4.95247245e-01 -7.54986182e-02\\n5.17806172e-01 -1.34886459e-01 7.60038346e-02 4.32544142e-01\\n-8.29061940e-02 -4.25131202e-01 -2.95873592e-03 -1.83584690e-01\\n9.61176306e-02 2.15909109e-01 1.05633009e-02 3.52613240e-01\\n2.66447812e-01 1.37014166e-01 -1.48201928e-01 2.16381490e-01\\n1.25430062e-01 -1.72634274e-01 3.35497499e-01 6.12776577e-01\\n4.23927665e-01 3.30772921e-02 -2.56940257e-02 -1.53158531e-01\\n-1.23470135e-01 -2.56299287e-01 3.67050439e-01 -9.53961536e-03\\n-2.50251982e-02 -2.93682307e-01 6.65732324e-02 -5.90753835e-03\\n-1.93510950e-01 -1.60548806e-01 -1.45955786e-01 3.65572944e-02\\n-5.26386201e-01 -3.39580148e-01 -2.28963360e-01 -6.91483840e-02\\n-2.80557990e-01 -3.24102759e-01 -9.15291905e-03 -1.48155108e-01\\n1.82212859e-01 7.26522505e-02 -4.75324601e-01 2.69055218e-01\\n-3.30000103e-01 -2.03725293e-01 2.42885351e-01 6.28940821e-01\\n-2.85409689e-02 -3.79264444e-01 -4.72581893e-01 -2.54332900e-01\\n1.76641077e-01 -2.23826885e-01 3.89919020e-02 -2.20772594e-01\\n2.78967142e-01 2.02960521e-01 1.42488971e-01 3.70038003e-01\\n-7.76884913e-01 -1.40156075e-01 -3.32717627e-01 -2.39798233e-01\\n-1.49233565e-01 -9.14947912e-02 -1.49845034e-01 -1.88158885e-01\\n-9.45164785e-02 4.63348299e-01 1.23411208e-01 8.18541348e-02\\n-4.00788076e-02 2.69109011e-01 -2.31787860e-01 3.21324795e-01\\n8.58864859e-02 2.63024807e-01 1.04690574e-01 1.11424729e-01\\n-2.43329868e-01 4.18507725e-01 2.25649655e-01 -2.40596652e-01\\n2.23352090e-01 1.01557516e-01 3.95808041e-01 -2.47453704e-01\\n2.17678934e-01 2.30605043e-02 -2.61458695e-01 3.84560764e-01\\n2.94863254e-01 -3.24450463e-01 1.01686813e-01 -1.92390114e-01\\n-7.05779865e-02 -3.26319039e-02 9.00029615e-02 9.10945833e-02\\n-2.42432758e-01 4.81475919e-01 6.77301213e-02 -1.03688523e-01\\n-3.28537524e-02 -3.50481927e-01 1.81190129e-02 1.48204993e-03\\n9.13675204e-02 1.26485348e-01 2.01980963e-01 1.82763562e-01\\n2.78376192e-01 -8.81460756e-02 6.53274804e-02 6.54171109e-01\\n-1.05632469e-01 4.24783602e-02 -2.75458485e-01 2.27828890e-01\\n-2.77840551e-02 -1.56604737e-01 1.21966206e-01 1.94903582e-01\\n-2.02449113e-02 -1.33911476e-01 -1.51002795e-01 1.31977484e-01\\n-9.53805074e-02 -2.70285606e-01 -2.16760933e-01 1.45205572e-01\\n-2.02276465e-02 -1.81995362e-01 4.59509641e-01 -9.95344669e-02\\n1.54643893e-01 -6.64847717e-02 4.90071699e-02 -8.27436745e-02\\n-1.04522534e-01 2.26501137e-01 3.14468183e-02 5.26629947e-02\\n-1.86016604e-01 -2.29177713e-01 -2.01230317e-01 -1.15925521e-01\\n-2.18725786e-01 1.46933421e-01 -3.53244133e-02 -1.40077416e-02\\n2.48875499e-01 -3.61084230e-02 -7.27863610e-02 3.78438652e-01\\n6.28798753e-02 5.30594662e-02 4.58895788e-03 2.32622206e-01\\n-1.41313732e-01 2.28673071e-01 -7.18937814e-02 -1.59278110e-01\\n5.01531720e-01 -8.31596851e-02 -3.37360352e-02 2.20002420e-02\\n3.80361110e-01 1.69208460e-02 1.06049635e-01 6.94921240e-02\\n-6.85974836e-01 3.24633330e-01 -6.15523160e-02 -7.24900514e-02\\n1.80995688e-01 -5.40063418e-02 1.82919949e-01 -1.76368594e-01\\n1.16254650e-01 1.08255669e-01 -3.00764263e-01 -3.24148387e-01\\n-4.82118055e-02 -2.70950079e-01 3.17378998e-01 -3.62578064e-01\\n-1.01960555e-01 2.19249845e-01 -4.43402588e-01 3.50450166e-02\\n2.21723080e-01 2.19678774e-01 1.60573512e-01 1.74959153e-01\\n-1.87104136e-01 -1.07577771e-01 2.11339355e-01 -2.92870849e-01\\n-4.04642597e-02 2.01489881e-01 -1.51171640e-01 2.52423763e-01\\n1.80193394e-01 8.58183578e-02 -1.33273408e-01 -3.71211246e-02\\n7.67256096e-02 -1.27010360e-01 2.91456729e-01 2.45403033e-02\\n2.02699035e-01 6.92233145e-02 -3.49474669e-01 3.17839295e-01\\n-1.64470896e-01 5.17099142e-01 1.79933235e-02 -9.06439424e-01\\n2.98671514e-01 2.40180403e-01 9.21225641e-03 -2.06164390e-01\\n6.60073578e-01 -2.37542599e-01 -1.86836775e-02 2.21317619e-01\\n-4.16005880e-01 -3.51475030e-01 2.17292264e-01 -1.60689533e-01\\n-2.04272598e-01 4.95882601e-01 6.34944066e-02 1.67960897e-01\\n2.99192779e-02 7.70038180e-03 -1.76692083e-01 1.43731236e-01\\n6.70351461e-02 -2.26195082e-01 -4.81849194e-01 -2.13338256e-01\\n-9.12654176e-02 -3.93154383e-01 -1.60786033e-01 -4.35936034e-01\\n-2.99532652e-01 -2.26393089e-01 -3.79842259e-02 9.68500972e-02\\n2.70522445e-01 1.19380295e-01 1.02652572e-01 2.36744285e-01\\n-2.17602983e-01 -4.10830438e-01 4.99545895e-02 1.80105016e-01\\n2.03366339e-01 1.63581371e-01 -1.74756907e-02 1.00715175e-01\\n-5.69107533e-02 7.79145777e-01 -1.69867963e-01 1.17225260e-01\\n2.50453949e-01 2.46209681e-01 2.09222510e-02 -1.38754234e-01\\n1.37883991e-01 3.16180587e-01 -3.32972646e-01 3.08759868e-01\\n1.20447921e-02 9.94644165e-02 1.83122978e-01 1.02680460e-01\\n-3.20344627e-01 -2.38243774e-01 -1.52315661e-01 9.39186066e-02\\n-4.23535496e-01 -9.78240296e-02 6.99331999e-01 -5.90619892e-02\\n6.72758743e-02 1.79002061e-01 2.24290609e-01 1.89715829e-02\\n-7.98832476e-02 -1.42766654e-01 1.67589679e-01 1.30283430e-01\\n7.71711171e-02 1.14916414e-01 -2.10767351e-02 -7.03401506e-01\\n-3.66119194e+00 -1.91520050e-01 7.63729215e-02 -2.67383516e-01\\n2.88053155e-01 -2.38004535e-01 6.30816072e-02 3.02737895e-02\\n-2.82982022e-01 2.84561813e-02 -1.82005599e-01 -1.69044077e-01\\n2.74280638e-01 1.47940725e-01 8.84595513e-02 3.70418876e-01\\n8.69562328e-02 -2.43361235e-01 -4.54022363e-02 4.39097166e-01\\n-2.59551674e-01 -5.01000047e-01 3.15047622e-01 3.06553431e-02\\n4.55406636e-01 3.17829907e-01 -2.86230743e-01 -1.84408929e-02\\n-2.13597432e-01 -1.67652160e-01 2.65707254e-01 -2.18014374e-01\\n-1.17986098e-01 3.12351078e-01 1.57812402e-01 -1.49565056e-01\\n1.99206904e-01 -5.47767043e-01 -1.39021069e-01 -4.40096915e-01\\n1.54843882e-01 -6.80866301e-01 -7.54826590e-02 9.22882408e-02\\n6.30724728e-01 -3.05221558e-01 -6.51504621e-02 2.05139779e-02\\n1.68092549e-01 2.16654554e-01 3.85348462e-02 8.41422305e-02\\n-1.09303966e-01 -2.92187899e-01 -8.05607587e-02 -2.65527274e-02\\n4.02626842e-01 4.19412136e-01 -1.93728492e-01 -2.92385668e-02\\n2.37763692e-02 -7.16327429e-02 -5.14202237e-01 -2.44632438e-01\\n-2.33901113e-01 -2.90591866e-01 -5.91090381e-01 -2.97825873e-01\\n-8.16299990e-02 -1.50004745e-01 -1.77371711e-01 3.61755818e-01\\n-2.59540766e-01 -3.28153163e-01 -9.77436230e-02 -3.13551068e-01\\n2.44248971e-01 8.71416405e-02 2.70596631e-02 -1.75347775e-01\\n-3.33077371e-01 -2.62013882e-01 5.40916584e-02 3.51502821e-02\\n7.43630230e-02 -2.43363753e-01 1.34339169e-01 -5.82472086e-02\\n-3.48647982e-01 -4.38914150e-01 3.72188121e-01 1.82587147e-01\\n2.95160979e-01 1.29808903e-01 1.70364648e-01 3.97798568e-02\\n2.68732101e-01 -1.93118274e-01 3.27250399e-02 -4.54264104e-01\\n1.21773429e-01 3.01426500e-02 4.19101030e-01 -2.39311561e-01\\n1.34406894e-01 -6.85461611e-02 -3.17651659e-01 -9.01133940e-02\\n1.73144713e-01 1.64044555e-02 3.10877353e-01 -2.86493987e-01\\n9.10846144e-02 -9.45265517e-02 -3.37682039e-01 -9.01720226e-02\\n3.98449898e-02 5.40296733e-01 1.88922714e-02 -2.44994655e-01\\n-1.95327938e-01 4.30162072e-01 -1.86767906e-01 -1.05130345e-01\\n-4.22023684e-01 1.42143909e-02 -2.52014607e-01 2.62868404e-01\\n-1.59118950e-01 1.02813933e-02 -1.38729379e-01 -2.49796048e-01\\n-3.30721319e-01 2.21400172e-01 1.93553895e-01 6.19933493e-02\\n1.81442440e-01 -4.46847945e-01 -2.18381714e-02 2.21937165e-01\\n2.35554442e-01 3.14708680e-01 8.33338797e-02 -8.71262327e-02\\n-3.45915444e-02 2.58472115e-01 -9.51578617e-02 3.27858049e-03\\n-3.19740862e-01 1.95240930e-01 -3.61432314e-01 -3.58379364e-01\\n-1.91436127e-01 -2.91244745e-01 5.32719046e-02 2.95230061e-01\\n1.79268554e-01 -1.24208011e-01 -5.72530739e-02 -4.92347062e-01\\n2.27682278e-01 -5.71119692e-03 2.34419107e-01 8.71739462e-02\\n1.38690248e-01 4.49256152e-01 7.72836208e-02 -1.18679494e-01\\n-9.27810892e-02 1.10134482e-01 -2.03555584e-01 -1.90139338e-02\\n-8.88487920e-02 -4.82167929e-01 -1.86358348e-01 4.85445172e-01\\n1.02756664e-01 -1.65900752e-01 -1.38045281e-01 2.81440318e-01\\n-2.19744761e-02 -2.87334770e-01 -2.87153959e-01 -9.03102197e-03\\n3.98945391e-01 1.02387711e-01 2.84408033e-01 -4.59530681e-01\\n-3.58351991e-02 -1.12431869e-01 -1.31006092e-01 3.69533986e-01\\n-9.26976837e-03 -1.71559677e-02 -5.80750890e-02 -2.80332834e-01\\n3.09269339e-01 -2.40515903e-01 -1.20958863e-02 1.83207259e-01\\n2.16813069e-02 -7.87165537e-02 -4.90577340e-01 8.22712928e-02\\n-4.84090522e-02 -2.34726727e-01 6.49087131e-02 9.93404239e-02\\n4.13053259e-02 8.31290260e-02 -4.33365464e-01 -1.60270169e-01\\n-2.73173273e-01 -1.48864184e-02 -1.01929843e-01 -4.78242606e-01\\n-1.35987833e-01 -1.06385751e-02 -4.61583883e-01 2.18421265e-01\\n-1.72643021e-01 -2.78825797e-02 1.16837531e-01 -3.33104916e-02\\n-3.43747765e-01 -4.07880358e-02 1.90739334e-01 1.22684263e-01\\n-1.04270823e-01 -1.92071080e-01 3.72905508e-02 -1.04549646e+00\\n1.30296722e-01 -5.25312796e-02 -6.33966699e-02 1.53619871e-01\\n-6.23431951e-02 -4.66623932e-01 1.21072285e-01 -2.26599574e-01\\n-2.59526759e-01 -1.82114974e-01 -1.79347202e-01 -5.78566909e-01\\n1.74562130e-02 1.73893452e-01 -2.43642583e-01 9.91964042e-02\\n-1.80627495e-01 4.67720926e-01 2.90250368e-02 1.34733438e-01\\n-5.92419803e-02 -3.22629094e-01 5.51503785e-02 -5.42692065e-01\\n-3.99296254e-01 -7.62159452e-02 -2.77674198e-01 -7.62889013e-02\\n-4.42121699e-02 -2.38437042e-01 -2.38500629e-02 1.04686610e-01\\n1.33098677e-01 1.38216212e-01 -6.88350797e-02 -3.02352849e-02\\n4.38568145e-02 -5.49843848e-01 7.60013284e-03 1.25216827e-01\\n-6.87079430e-02 -6.15439788e-02 3.10668319e-01 5.94193302e-02\\n1.51098415e-01 -3.42876405e-01 3.04079890e-01 -4.73696858e-01\\n-3.52422208e-01 -1.02299422e-01 1.15718827e-01 3.09767015e-02\\n4.40727264e-01 -3.89883310e-01 -1.77950673e-02 2.15530694e-01\\n-5.26006185e-02 4.49993052e-02 3.74439180e-01 -9.81108323e-02\\n-1.72202095e-01 1.94005996e-01 -3.28821987e-01 1.58162490e-01\\n6.44426525e-01 9.71629992e-02 1.63278416e-01 1.99211195e-01\\n8.51648599e-02 2.57614285e-01 4.42488700e-01 -2.15315223e-02\\n-2.30379656e-01 3.38848710e-01 1.34154290e-01 -7.84104347e-01\\n-7.12086558e-02 5.24897780e-03 -3.45720202e-01 -4.09364492e-01\\n6.32258475e-01 3.74652267e-01 -3.20911914e-01 -2.64206171e-01\\n-2.14571998e-01 -2.93611228e-01 -9.04613882e-02 -8.07626769e-02\\n1.04360253e-01 -5.89491874e-02 5.14246285e-01 -5.77799827e-02\\n2.98325330e-01 3.94017309e-01 -2.33465746e-01 -2.60939300e-01\\n-9.88230407e-02 7.20113888e-02 -3.50659736e-03 4.40833092e-01\\n-2.17162192e-01 3.58903855e-01 -8.39845389e-02 2.06221074e-01\\n2.67525464e-02 -8.42386633e-02 1.27595710e-02 4.33015125e-03\\n-2.67094956e-03 2.48375416e-01 5.03314912e-01 2.64433086e-01\\n4.17895287e-01 3.51910889e-01 2.83470899e-01 1.02277135e-03\\n5.92872977e-01 4.03473586e-01 1.70991674e-01 7.97142535e-02\\n2.95545254e-02 -8.40264745e-03 -1.32184243e-02 8.39368030e-02\\n1.93413943e-01 2.76795000e-01 -4.69836257e-02 8.57254922e-01\\n2.83694625e-01 1.85646594e-01 5.20147920e-01 -4.81117815e-01\\n-3.03524613e-01 -1.04773149e-01 3.16642702e-01 -4.28495944e-01\\n-4.38466556e-02 1.62076697e-01 -4.81925383e-02 1.38399273e-01\\n-2.65730709e-01 -2.46834874e-01 -1.22185603e-01 3.39174837e-01\\n6.21627606e-02 -2.77915150e-01 -3.24637145e-01 5.30817024e-02\\n-3.90307568e-02 -1.64872363e-01 -4.78122920e-01 -3.55879478e-02\\n-1.62898108e-01 -2.85573632e-01 -1.14847891e-01 -7.87149295e-02\\n-1.75909787e-01 -2.35179320e-01 -3.18051800e-02 2.51442962e-03\\n9.02554691e-02 -4.39501815e-02 3.29973735e-02 -1.78352058e-01\\n4.22430009e-01 1.93573773e-01 5.28786302e-01 8.96317437e-02\\n1.22774325e-01 -2.80449748e-01 -7.57336169e-02 9.47676525e-02\\n3.08251590e-01 -5.87870739e-02 4.26246412e-02 4.77853417e-01\\n-3.60689729e-01 -1.48818403e-01 1.36610836e-01 3.36928487e-01\\n-4.77062523e-01 -1.50291482e-02 -2.92839017e-02 1.94664672e-01\\n1.48600787e-01 9.61889699e-02 -2.06270605e-01 -3.70850451e-02\\n-2.19964057e-01 -3.76349926e-01 5.17789945e-02 9.52670947e-02\\n-1.77644908e-01 -2.95919012e-02 1.50312439e-01 2.24202201e-01\\n-1.13957815e-01 8.58803652e-03 -2.93815825e-02 3.66153903e-02\\n1.59092173e-01 2.14664996e-01 -2.48889595e-01 -3.92054886e-01\\n-2.03100368e-01 1.72215775e-01 -1.91089347e-01 7.64004812e-02\\n1.24061391e-01 2.84464210e-01 -2.04099212e-02 1.77199900e-01\\n3.70478779e-01 -1.84260115e-01 -1.40958399e-01 -2.90715069e-01\\n-3.34070265e-01 -2.93073833e-01 1.55471340e-02 -2.60204047e-01\\n2.29036763e-01 -2.44325683e-01 -7.27668405e-02 4.04270813e-02\\n-1.92970902e-01 -3.44104618e-01 9.01933610e-02 -2.75175422e-02]]',\n", + " \"For one of our clients in the Romandie the French speaking part of Switzerland, in Lausanne, we are looking for a Business Analyst - Application Support Analyst who is open-minded and client-oriented, is passionate about his work, who believes in success and has a strong team spirit. Are you looking for you next challenging position? This opportunity is for you!Your challengesYou manage new applications and new functionalities in a manufacturing environment. You are in charge of lifecycle and support in manufacturing and application Level 2.Your skillsExperience in a validated environmentAt least 3-4 years' experienceExperience in application development lifecycle (supply chain)ITSM mandatoryGxP systems and computer validation systemMedical deviceLabelling systems a plusFrench and English mandatoryYour horizonsDo you think you have what it takes to face this challenge ? Don't hesitate to contact me on +41 58 233 27 08 or apply directly on this advert.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactMadame Joanna Fumey, Recruitment Trainee, looks forward to answer your questions by phone +41 58 233 2706.You can apply directly online.JN -072019-296587\",\n", + " '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " '[\"Application Development\", \"Validations\", \"Supply Chain\", \"Customer Support Analyst\", \"Application-Level Gateway\"]',\n", + " \"['English', 'Inupiaq']\"],\n", + " ['19',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.57442186e-02 1.89378172e-01 4.58602995e-01 -1.45687848e-01\\n3.45443606e-01 -2.16841891e-01 8.32162946e-02 3.52371961e-01\\n1.24339201e-02 -4.67337012e-01 -4.36932482e-02 -2.53092408e-01\\n8.15873034e-03 1.78620026e-01 9.19062123e-02 3.34598005e-01\\n1.35245293e-01 6.92561716e-02 -1.29040137e-01 2.71780521e-01\\n9.42296386e-02 -1.08291984e-01 1.08184852e-01 6.58065796e-01\\n4.39737737e-01 -3.50390095e-03 8.25651959e-02 2.36601103e-02\\n-1.88826829e-01 -2.74464101e-01 5.30852914e-01 4.08361554e-02\\n-7.19722211e-02 -3.93924177e-01 1.58049494e-01 2.32869945e-02\\n-2.86376804e-01 -4.16797511e-02 -2.13953450e-01 9.69535857e-02\\n-5.73742211e-01 -1.87130108e-01 7.54973069e-02 -3.84808220e-02\\n-1.87633306e-01 -3.86527628e-01 1.59954488e-01 -1.31412759e-01\\n2.04590514e-01 2.34967042e-02 -5.04115880e-01 1.17434680e-01\\n-2.37346560e-01 -1.75174907e-01 3.21135372e-01 6.29935443e-01\\n-1.07809961e-01 -5.00485003e-01 -6.41662359e-01 -2.75313377e-01\\n2.45443076e-01 -1.71210006e-01 -7.27842301e-02 -2.52907455e-01\\n2.45358676e-01 5.86717995e-03 2.42415704e-02 3.97441804e-01\\n-7.66188264e-01 -9.66802761e-02 -2.71132886e-01 -7.53038973e-02\\n-2.11624309e-01 -2.15147629e-01 -2.74551660e-01 -5.57647413e-03\\n-1.80703193e-01 3.87804180e-01 1.91151038e-01 -2.06853375e-02\\n-1.49018973e-01 3.29754204e-01 -3.67794573e-01 4.48862791e-01\\n1.91973403e-01 1.90802887e-01 1.28035456e-01 3.02774906e-01\\n-3.27059388e-01 5.10012865e-01 2.04714894e-01 -3.37980658e-01\\n1.56661585e-01 7.07613304e-03 4.14200902e-01 6.77157044e-02\\n2.19367087e-01 6.60389513e-02 -1.26968578e-01 3.35014522e-01\\n3.14370960e-01 -2.32037961e-01 6.44790381e-02 -1.41857684e-01\\n8.80630016e-02 5.77951036e-02 2.61894111e-02 1.06465712e-01\\n-1.05310194e-01 3.55973035e-01 1.43131435e-01 -2.12869376e-01\\n-1.89661950e-01 -5.25319874e-01 -1.89525381e-01 -1.21642835e-01\\n3.37628461e-03 1.63508311e-01 1.51153460e-01 1.88049674e-01\\n2.13702902e-01 1.00741565e-01 7.73040652e-02 8.03940892e-01\\n-4.78993095e-02 4.55966499e-03 -3.72107208e-01 4.01805699e-01\\n-5.92889590e-03 -2.37159848e-01 3.18887442e-01 2.98571169e-01\\n-2.32265908e-02 -2.42290705e-01 -1.71685100e-01 3.49982142e-01\\n-3.67573500e-02 -2.24747822e-01 -2.64400572e-01 1.07550569e-01\\n4.39774804e-03 -3.49793196e-01 5.52819133e-01 3.12125832e-01\\n1.17431127e-01 6.35276511e-02 -2.14530956e-02 -2.11070105e-01\\n-1.95397601e-01 1.62346095e-01 -7.65882358e-02 8.91475454e-02\\n-7.25879595e-02 -2.44807556e-01 -2.70162940e-01 2.02972338e-01\\n-2.17410073e-01 1.95208877e-01 -1.24944247e-01 -8.28449875e-02\\n3.81945342e-01 1.78594775e-02 -2.25519925e-01 3.72184724e-01\\n3.40959318e-02 1.39145106e-01 -4.29430306e-02 2.48543113e-01\\n-1.61985934e-01 1.01750031e-01 -7.04445541e-02 -1.29612893e-01\\n5.85227370e-01 5.40453121e-02 2.15280756e-01 -4.69587334e-02\\n2.70395756e-01 8.50804383e-04 1.02759056e-01 7.77248293e-02\\n-6.19488299e-01 3.39358628e-01 -5.55838794e-02 -1.43092033e-02\\n1.46093503e-01 -1.61656946e-01 1.38867214e-01 -2.29362056e-01\\n1.68008003e-02 -7.87989646e-02 -4.11463499e-01 -2.18771070e-01\\n-1.25140309e-01 -1.06575660e-01 3.63091737e-01 -5.42125642e-01\\n-1.41909510e-01 2.78147519e-01 -5.09710848e-01 -5.86142242e-02\\n1.31657004e-01 2.13778183e-01 1.07512318e-01 1.01412848e-01\\n-2.88605869e-01 -4.09494311e-01 1.36799783e-01 -3.72825116e-01\\n-2.24919423e-01 1.21425360e-01 -2.36481696e-01 3.20779920e-01\\n1.80483922e-01 -6.72204494e-02 -1.46790504e-01 1.70296818e-01\\n-1.41987830e-01 -7.51632378e-02 9.93040875e-02 5.33701794e-04\\n2.95052499e-01 5.38034290e-02 -3.59236717e-01 3.52307439e-01\\n-8.59657377e-02 6.35529459e-01 -1.41941216e-02 -9.00925040e-01\\n5.04979610e-01 3.19723397e-01 1.39187276e-02 -3.71123821e-01\\n5.30409276e-01 -2.86310464e-01 9.11581442e-02 1.22200146e-01\\n-4.28514093e-01 -3.71057987e-01 1.31020680e-01 -1.15974046e-01\\n-1.84137508e-01 3.88696700e-01 -2.34523769e-02 1.78008988e-01\\n1.61042050e-01 -1.11734971e-01 -1.68423966e-01 -1.73990037e-02\\n-5.46026193e-02 -1.45172730e-01 -4.74860728e-01 -2.09798235e-02\\n-1.17428936e-01 -4.04468924e-01 -2.93307379e-02 -4.42003250e-01\\n-2.30420664e-01 -4.77646470e-01 -1.02652945e-01 1.89736173e-01\\n2.81514168e-01 1.13948278e-01 -3.21220122e-02 9.14221630e-02\\n-1.57583326e-01 -7.04185903e-01 4.72786278e-02 2.19780728e-01\\n3.34958822e-01 1.87255397e-01 1.04577176e-01 -1.11959754e-02\\n-1.83503442e-02 6.01614475e-01 -2.15519384e-01 -1.07419126e-01\\n1.23987228e-01 1.67821482e-01 1.59569293e-01 -8.35024044e-02\\n-3.11752819e-02 2.22432867e-01 -3.12341928e-01 -6.25094492e-03\\n5.03772534e-02 -1.00405335e-01 3.88597518e-01 9.08679888e-02\\n-4.27372426e-01 -1.29270718e-01 -6.59503564e-02 1.97064579e-01\\n-6.08596206e-01 -2.01407060e-01 7.48643100e-01 1.04797050e-01\\n8.83072615e-02 2.24123687e-01 2.17801899e-01 -1.43636227e-01\\n-1.52145267e-01 -6.77895546e-02 3.23389053e-01 6.21610247e-02\\n1.53736278e-01 1.14279561e-01 -7.33488649e-02 -5.74980557e-01\\n-3.55068779e+00 -1.64703622e-01 1.84271932e-01 -1.85034066e-01\\n1.80901453e-01 -1.00180998e-01 1.17739208e-01 -1.50927275e-01\\n-2.62816548e-01 -5.28686494e-02 -1.35489658e-01 -6.53107762e-02\\n2.06079051e-01 2.48377323e-01 1.13764636e-01 4.30373818e-01\\n1.17208853e-01 -1.57071665e-01 2.68973317e-02 3.14729065e-01\\n-2.97535866e-01 -5.22082031e-01 2.13651210e-01 -1.32526653e-02\\n1.66789129e-01 2.55288512e-01 -3.46194297e-01 -9.10048410e-02\\n-1.27016604e-01 -1.97351754e-01 1.33490548e-01 -2.54421264e-01\\n-1.37043707e-02 2.51917362e-01 1.35722086e-01 -9.21426639e-02\\n1.44268051e-01 -4.84136403e-01 -1.68320924e-01 -4.27092761e-01\\n1.11622274e-01 -6.38089001e-01 -5.79575561e-02 -1.19757831e-01\\n6.98781610e-01 -3.45104188e-01 1.13973171e-01 1.07796200e-01\\n1.01013489e-01 2.08540320e-01 1.13630064e-01 4.95656915e-02\\n-2.87700295e-01 -3.53833109e-01 -9.52672064e-02 2.40692031e-02\\n4.42098856e-01 5.33463299e-01 -2.35440180e-01 -2.54142210e-02\\n-1.15769421e-06 -2.84247547e-01 -5.17201722e-01 -2.51405776e-01\\n-2.10174441e-01 -1.69752970e-01 -6.15881979e-01 -3.97114992e-01\\n-7.88984746e-02 -2.63941288e-01 -2.23394036e-01 6.25844002e-01\\n-2.06623614e-01 -2.57064670e-01 -3.64080369e-02 -4.90673393e-01\\n2.85427868e-01 -1.97943866e-01 1.30878374e-01 -1.43519461e-01\\n-2.74407268e-01 -4.54920530e-01 2.32744161e-02 -3.33823962e-03\\n-1.06337711e-01 -2.36083239e-01 1.63593039e-01 -1.44239888e-01\\n-2.62382567e-01 -6.02244914e-01 3.21909577e-01 9.43948328e-02\\n2.24654660e-01 8.74131992e-02 2.99375296e-01 -1.30910967e-02\\n2.52074867e-01 -1.87841848e-01 -1.35526121e-01 -2.91167527e-01\\n1.19264625e-01 1.72656234e-02 3.94230008e-01 -2.45610863e-01\\n-3.27338614e-02 1.17445350e-01 -2.34751686e-01 -8.47606435e-02\\n1.63389355e-01 -3.95684056e-02 1.69124857e-01 -2.08538428e-01\\n2.82168567e-01 -9.27300900e-02 -2.28529289e-01 5.23281954e-02\\n6.12593256e-02 5.20939171e-01 -1.06351301e-02 -4.41916615e-01\\n-1.17495758e-02 4.38328713e-01 -8.81546959e-02 -1.43787414e-01\\n-2.93178886e-01 8.83530378e-02 -1.90289125e-01 2.24267989e-01\\n-2.91240178e-02 -5.06260805e-02 -3.16101491e-01 -2.98078388e-01\\n-1.07219346e-01 3.41463357e-01 2.44841889e-01 7.98254088e-02\\n5.73271327e-02 -3.68674308e-01 -2.06909375e-03 1.30784526e-01\\n5.05497456e-02 4.16423053e-01 1.82781354e-01 -8.88916925e-02\\n4.20207419e-02 3.35776687e-01 -2.04663292e-01 6.93471283e-02\\n-2.74276704e-01 7.25523606e-02 -5.83320141e-01 -2.98657089e-01\\n-2.15485603e-01 -4.18362111e-01 1.44552931e-01 1.88294783e-01\\n4.96755652e-02 -1.90061331e-02 1.12054683e-01 -4.96090174e-01\\n1.75016552e-01 8.65428224e-02 1.95412472e-01 1.35037586e-01\\n1.70118734e-02 6.25534058e-01 1.06636574e-02 -1.58718303e-01\\n-9.90718529e-02 7.04266131e-02 -3.55482191e-01 -2.00560391e-01\\n-7.14957295e-03 -4.81580049e-01 -3.54342349e-02 4.26313251e-01\\n3.70509215e-02 -2.31378958e-01 -1.70018539e-01 3.04721743e-01\\n-1.37174744e-02 -1.47132412e-01 -1.11989759e-01 9.45148170e-02\\n3.97196591e-01 9.56301689e-02 2.37273112e-01 -4.05986547e-01\\n-1.19029516e-02 5.14404997e-02 -1.19741522e-01 5.58856964e-01\\n2.29226977e-01 3.53131071e-02 -7.31827393e-02 -1.75493017e-01\\n3.19736302e-01 -2.61813253e-01 -1.53956590e-02 -2.99814809e-02\\n2.79348642e-01 -1.27128094e-01 -4.08747017e-01 1.69442773e-01\\n-3.21790352e-02 -1.47803798e-01 3.46264690e-02 1.82499349e-01\\n-3.89207713e-02 9.93467495e-02 -6.64985895e-01 -3.19091648e-01\\n-3.22563142e-01 9.05268826e-03 5.65712946e-03 -4.80576068e-01\\n-1.92757323e-02 -6.36041909e-02 -4.58779812e-01 3.48046005e-01\\n-7.58412182e-02 -6.75795376e-02 1.85382277e-01 9.40430313e-02\\n-2.76519358e-01 -4.20381427e-02 1.14045098e-01 2.48870060e-01\\n-2.24173099e-01 -1.84890062e-01 -3.76539603e-02 -9.95263577e-01\\n1.62934363e-01 1.49770444e-02 -2.04363242e-01 2.07640976e-01\\n-4.41218615e-02 -5.92069209e-01 1.42739028e-01 -3.37589234e-01\\n-2.61765927e-01 4.65812199e-02 -2.29904130e-01 -5.93661010e-01\\n8.68923776e-03 4.75779511e-02 -2.61916935e-01 4.32812899e-01\\n-4.37921315e-01 4.10880923e-01 -1.61196992e-01 6.48207441e-02\\n4.26573530e-02 -3.12212408e-01 8.73913169e-02 -4.55629021e-01\\n-4.13134485e-01 -1.83209226e-01 -3.19873929e-01 -1.79199800e-01\\n1.08958088e-01 -3.76982719e-01 -1.40612975e-01 3.17906663e-02\\n3.50609571e-01 1.21649176e-01 -7.01128691e-02 -3.23399097e-01\\n1.58750117e-02 -5.32752216e-01 1.14305951e-01 -9.10520405e-02\\n-1.80941436e-03 -1.31279498e-01 2.39057496e-01 1.12804748e-01\\n1.22529611e-01 -4.85555768e-01 3.65202576e-01 -3.43379617e-01\\n-2.96050042e-01 -7.89743960e-02 -5.31284325e-02 5.60663976e-02\\n3.44601572e-01 -4.29282725e-01 -4.91534024e-02 3.71201366e-01\\n1.26918122e-01 -8.86475742e-02 2.98863947e-01 -1.57297309e-02\\n-8.59000757e-02 2.79796511e-01 -3.88879031e-01 1.15396433e-01\\n6.70512319e-01 -7.57927671e-02 2.17453286e-01 2.01821133e-01\\n2.34108672e-01 2.73227662e-01 4.88065779e-01 2.38331705e-02\\n-1.37448862e-01 3.61839533e-01 3.96960452e-02 -5.11571527e-01\\n2.63351612e-02 5.05421944e-02 -2.23253846e-01 -2.73406237e-01\\n6.59672201e-01 4.68181789e-01 -4.63041395e-01 -1.42755613e-01\\n-1.42072663e-01 -2.25494310e-01 1.46025568e-01 -1.30116567e-01\\n2.34307088e-02 -7.29178563e-02 4.67162848e-01 -4.82024923e-02\\n1.25718415e-01 3.85010153e-01 -2.90009052e-01 -2.76701629e-01\\n-3.56341489e-02 1.55911893e-01 1.50719639e-02 5.17825067e-01\\n-2.04792798e-01 4.44046021e-01 7.86947377e-04 1.95356041e-01\\n-1.40811846e-01 5.07457228e-03 9.64626968e-02 1.08444966e-01\\n1.23171754e-01 -1.21941734e-02 4.27501470e-01 4.72140640e-01\\n3.59620154e-01 5.14673352e-01 3.17754984e-01 6.47062212e-02\\n4.17997748e-01 5.81712186e-01 4.58585739e-01 2.54909128e-01\\n-4.20142077e-02 2.78132018e-02 7.19104707e-02 5.38849868e-02\\n2.57421196e-01 3.44139099e-01 2.78885867e-02 7.73714185e-01\\n3.99364293e-01 2.87696034e-01 5.40668905e-01 -5.74597895e-01\\n-3.45262378e-01 1.61527824e-02 3.47008169e-01 -4.32356685e-01\\n2.75519472e-02 2.16022134e-01 -1.17366299e-01 1.85706183e-01\\n-4.60349798e-01 -2.14406520e-01 -1.44643962e-01 2.19187915e-01\\n-2.63861194e-02 -1.88618898e-01 -1.99324846e-01 7.89820403e-02\\n-1.90444171e-01 -1.17522910e-01 -4.87956494e-01 -3.54552385e-03\\n-1.89638913e-01 -3.02673072e-01 -1.80147767e-01 -3.55094261e-02\\n-2.01062590e-01 -2.92690456e-01 -2.29442716e-01 6.42129630e-02\\n3.24731708e-01 -1.75561741e-01 -3.83354835e-02 -1.96214318e-01\\n2.83486485e-01 1.28776968e-01 4.99122351e-01 3.21448259e-02\\n5.42231798e-02 -2.67710298e-01 -2.02247620e-01 6.71580732e-02\\n2.80395955e-01 1.35796130e-01 3.23181003e-02 3.95114034e-01\\n-2.29575202e-01 -1.63464442e-01 1.26224726e-01 3.90273929e-01\\n-4.83845234e-01 9.70266908e-02 -1.29094064e-01 1.67544350e-01\\n1.48680508e-01 3.06030422e-01 -2.15587735e-01 8.80230591e-02\\n-1.67847246e-01 -3.67088497e-01 3.34074646e-01 -1.53859198e-01\\n-1.14275441e-01 -2.80836690e-02 1.77481219e-01 2.28390440e-01\\n-2.56042242e-01 2.47418042e-02 5.21527138e-03 1.42531469e-01\\n-7.09108412e-02 2.67526418e-01 -3.03575188e-01 -2.74744451e-01\\n-2.75416255e-01 1.63753912e-01 -1.65979922e-01 2.96007007e-01\\n1.11757308e-01 3.08608264e-01 2.21313253e-01 -1.95499156e-02\\n3.77684683e-01 7.04156328e-03 -6.18286505e-02 -1.84935808e-01\\n-3.29066694e-01 -9.96560231e-02 -6.74964860e-02 -6.32238463e-02\\n1.85466900e-01 -4.43852276e-01 -8.46024007e-02 -6.99994415e-02\\n-2.12609187e-01 -3.41137022e-01 -2.60685924e-02 -8.48833621e-02]]',\n", + " 'About Us B3i is a growing and dynamic business operating in the global insurance market. We are at the forefront of bringing real innovation into the industry through Blockchain / DLT solutions which we believe will transform insurance. Our vision is simply to make insurance more relevant, accessible and affordable. We have a flat management structure with a start-up mentality and are very ambitious; we want determined and enthusiastic people to share our vision and join us on this journey of innovation. What You Will Do You will be developing distributed insurance applications and services using R3 Corda You will work within a highly skilled and motivated engineering team You will bring your perspective on design and engineering helping to create innovative solutions Your code and applications will run on a global distributed network What you will bring on a professional level Strong knowledge of Java or Kotlin development, tooling and ecosystem Strong object-oriented development Some knowledge about Blockchain, distributed ledger and networks Agile software development experience including tools such as JIRA and CI Experience of working on multi-layered projects It would be great if you have R3 Corda development experience and on a personal level Share you knowledge, insight and learning openly Open to feedback and challenges from the team Curious to learn new skills What we offer B3i offers a competitive package including flexible working time and location & sabbatical programme You will work with a great bunch of people who are really making history in central Zurich Corda certification as part of your onboarding To apply for a job please send your CV in English only to jobs@b3i.tech. Please check your spam mailbox as our replies may be there. Disclaimer Notice for recruitment agencies B3i does not accept speculative CVs. We will only review CVs sent with an application for an advertised post. Any unsolicited CVs received will be treated as the property of B3i Services AG and Terms & Conditions associated with the use of such CVs will be considered null and void.',\n", + " '[\"Innovation\", \"Professionalism\", \"Management\", \"Business Operations\"]',\n", + " '[\"Advertisement\", \"Tooling\", \"Accessioning\", \"Object-Oriented Software Development\", \"CAN-SPAM Act\", \"Blockchain\", \"Industrialization\", \"Perspective (Graphical)\", \"Onboarding\", \"Layering\", \"Levelling\", \"Agile Software Development\", \"Corda\", \"Personalization\", \"Receivables\", \"Distributed Development\", \"Software Development\", \"JIRA Studio\", \"Distributed Network Protocol (DNP3)\", \"Java (Programming Language)\", \"Kotlin\"]',\n", + " \"['English', 'Limburgan', 'Haitian Creole']\"],\n", + " ['84',\n", + " 'trade execution analyst / software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.85091037e-01 2.04619199e-01 5.10620415e-01 -6.51040226e-02\\n4.66690749e-01 -5.00187613e-02 6.03383826e-03 3.35154712e-01\\n-5.36593348e-02 -2.98258096e-01 -1.98521569e-01 -1.66453809e-01\\n3.46847624e-02 -1.77067891e-02 1.59308732e-01 4.10886824e-01\\n3.51590037e-01 -8.82257894e-03 -2.13037148e-01 1.64273307e-01\\n7.06671551e-02 -8.84997025e-02 -2.57672882e-03 7.66402900e-01\\n5.10686100e-01 4.71873507e-02 -6.63095489e-02 7.92774558e-02\\n-2.55035430e-01 -2.95039028e-01 4.79567021e-01 5.99750280e-02\\n-6.44854531e-02 -1.86851650e-01 1.36062488e-01 1.36998907e-01\\n-2.28729755e-01 -4.00537923e-02 -6.81936443e-02 1.21841595e-01\\n-3.60534966e-01 -4.91494313e-02 -5.59614273e-03 4.93936874e-02\\n-3.42517227e-01 -4.23602045e-01 -4.48396392e-02 -6.60899058e-02\\n1.17131531e-01 3.09478678e-02 -5.36783695e-01 3.76502812e-01\\n-1.76588088e-01 -1.21841013e-01 2.61932105e-01 5.66472471e-01\\n-1.41027644e-01 -4.91555572e-01 -3.68778050e-01 -3.13987583e-01\\n2.78216690e-01 -1.50731757e-01 1.92742527e-01 -1.35541305e-01\\n3.25613350e-01 -2.82434672e-02 -3.22934352e-02 4.00623381e-01\\n-6.79492116e-01 -1.12575881e-01 -3.74150693e-01 -2.83135641e-02\\n-4.23235893e-01 1.08387806e-02 -4.06733513e-01 -2.57453412e-01\\n-7.36116916e-02 3.28316391e-01 -1.30050614e-01 1.72331616e-01\\n-1.74550623e-01 2.77772456e-01 -6.45328835e-02 1.78385764e-01\\n2.32626155e-01 1.96029186e-01 2.49829948e-01 2.22545534e-01\\n-3.57698500e-01 4.96676534e-01 1.14173062e-01 -3.24850172e-01\\n1.01089098e-01 3.86859253e-02 3.23788583e-01 1.85296461e-02\\n1.81649983e-01 9.13754851e-02 -5.00901863e-02 1.36059105e-01\\n1.36487111e-01 -2.12326050e-01 7.33284578e-02 -8.51624236e-02\\n-1.81328058e-01 7.99628198e-02 6.05327152e-02 8.56052265e-02\\n-4.07944322e-01 4.06187475e-01 1.91584468e-01 -3.11237395e-01\\n-6.04919642e-02 -5.85686326e-01 -1.30609214e-01 7.85060674e-02\\n-1.14688694e-01 1.47299394e-01 2.71155089e-01 2.11723134e-01\\n3.13329816e-01 -2.03918293e-02 3.02944422e-01 8.13995957e-01\\n2.94046421e-02 -7.70315304e-02 -2.63004214e-01 4.11314815e-01\\n5.61612949e-04 -3.37888360e-01 1.64511308e-01 2.41312400e-01\\n7.93804005e-02 -8.48746449e-02 -3.78427058e-01 1.46145672e-01\\n-1.44996509e-01 -2.88919002e-01 -2.42031157e-01 8.06707963e-02\\n-1.95702553e-01 -6.14759028e-01 4.74447578e-01 -7.63664916e-02\\n1.57055378e-01 -2.14279875e-01 8.33180100e-02 -1.37408171e-02\\n3.11715249e-02 3.19720536e-01 1.04770750e-01 -7.29554938e-03\\n-2.41072729e-01 -3.16978991e-01 -2.25428164e-01 2.73526251e-01\\n-1.52940214e-01 1.92718521e-01 -2.18763649e-01 -1.30265921e-01\\n2.63985932e-01 6.14580065e-02 -3.41005027e-01 1.75263375e-01\\n-1.99276675e-02 -3.48124683e-01 -1.87673718e-01 3.09255779e-01\\n-2.33990535e-01 1.59642130e-01 3.25187556e-02 -2.64039129e-01\\n6.08268142e-01 1.96163714e-01 2.57061064e-01 -4.30340208e-02\\n1.68533683e-01 -9.06642377e-02 3.37996453e-01 1.31459599e-02\\n-6.74413681e-01 4.31156278e-01 -7.01845214e-02 -7.69250840e-02\\n7.50271380e-02 8.82152840e-03 2.08242044e-01 -4.74060863e-01\\n8.45821723e-02 -1.01521321e-01 -3.30265135e-01 -3.42248112e-01\\n-1.61084905e-01 -3.51374410e-02 2.69895166e-01 -3.80850554e-01\\n-3.09459418e-02 1.37307763e-01 -5.53083897e-01 -7.68688023e-02\\n1.15812600e-01 1.42038539e-01 1.64584983e-02 1.74061865e-01\\n-1.78126544e-01 -3.95154089e-01 1.36913210e-01 -4.57094908e-01\\n-4.23616469e-01 1.22622997e-02 -3.09059113e-01 1.88693330e-01\\n8.10594670e-03 7.81895965e-02 -7.15234950e-02 1.80484787e-01\\n-2.41270572e-01 3.38823088e-02 1.57842025e-01 8.68855715e-02\\n4.07070071e-01 5.14432751e-02 -3.28591257e-01 5.21053493e-01\\n-1.24146447e-01 4.59934533e-01 1.32628560e-01 -8.03753912e-01\\n4.82357711e-01 2.65952080e-01 1.58730045e-01 -3.91914636e-01\\n5.96842706e-01 -3.58214885e-01 2.70470902e-02 1.29685715e-01\\n-4.18674409e-01 -1.64182395e-01 3.68202478e-01 -2.25729465e-01\\n-2.14274198e-01 5.28696835e-01 6.59118220e-02 1.67495251e-01\\n2.06189439e-01 -1.12585060e-01 -1.09313183e-01 1.40816458e-02\\n-2.34171227e-01 -1.47374019e-01 -4.21732605e-01 6.99210837e-02\\n-7.71759972e-02 -5.26516914e-01 -2.17225313e-01 -5.73644340e-01\\n-1.55633450e-01 -3.29605043e-01 -9.96511355e-02 1.61535934e-01\\n2.45953396e-01 1.57242641e-01 1.38403952e-01 -1.03534713e-01\\n-1.29525021e-01 -5.64915955e-01 -1.19086288e-01 1.14860572e-01\\n3.32521707e-01 1.98567420e-01 6.17011786e-02 1.05935872e-01\\n3.28439698e-02 5.74408352e-01 -3.52464676e-01 -2.53765792e-01\\n1.00516759e-01 2.00311184e-01 -4.89607081e-02 -9.95841399e-02\\n6.10621311e-02 2.96195805e-01 -3.28943640e-01 7.12859631e-02\\n-1.32148489e-01 9.11115259e-02 4.17214066e-01 3.33463177e-02\\n-1.84195608e-01 -1.89345151e-01 -3.77560817e-02 1.97201446e-01\\n-5.19430399e-01 -2.11683735e-01 6.54004693e-01 2.36777827e-01\\n5.77039868e-02 2.32521206e-01 3.01941127e-01 -4.07661498e-02\\n-1.51548117e-01 -2.09388509e-01 2.31950566e-01 5.81699330e-03\\n2.24482152e-03 -1.01773196e-03 -2.40546927e-01 -5.78600883e-01\\n-3.20362926e+00 -9.84428227e-02 1.49676753e-02 -2.90632337e-01\\n3.18107635e-01 -8.93173143e-02 1.98138952e-01 -7.40488991e-02\\n-4.12373543e-01 1.01753466e-01 -1.39111176e-01 -2.04957291e-01\\n1.27219498e-01 9.61417258e-02 1.30995825e-01 1.88647151e-01\\n2.35237584e-01 -3.75540048e-01 -4.57503460e-02 3.54313821e-01\\n-1.15984015e-01 -7.63727188e-01 2.34271213e-01 1.30747199e-01\\n2.71491647e-01 1.80436701e-01 -4.54936624e-01 -1.59032360e-01\\n-3.93359095e-01 -3.21211755e-01 6.02186210e-02 -3.07940274e-01\\n-1.32310331e-01 4.00583118e-01 3.09675694e-01 -1.90407515e-01\\n1.00369409e-01 -4.14575279e-01 -2.08923761e-02 -4.34703231e-01\\n2.00210467e-01 -5.25028944e-01 6.56152070e-02 -1.14343818e-02\\n8.06143284e-01 -2.24760830e-01 2.58111447e-01 1.71134844e-02\\n1.20885402e-01 2.47903317e-01 4.62493971e-02 -6.58731814e-03\\n-2.57738113e-01 -3.36681604e-01 -8.01588893e-02 -6.46628514e-02\\n4.32676703e-01 4.91073161e-01 -1.93123296e-01 3.21533568e-02\\n-1.69212148e-02 -2.98631698e-01 -3.82666826e-01 -2.13263571e-01\\n-3.64790022e-01 -1.11335754e-01 -6.65842831e-01 -4.77787882e-01\\n-3.48119647e-03 -1.34529367e-01 -3.98418605e-02 5.15336931e-01\\n-2.02868536e-01 -3.81557852e-01 -1.61777988e-01 -5.09182870e-01\\n1.75725177e-01 -1.63776159e-01 1.70602351e-01 -1.66642606e-01\\n-1.07740387e-01 -5.25667429e-01 2.77577370e-01 -8.89344364e-02\\n8.06397945e-02 -7.35676289e-02 8.30572769e-02 -1.89501584e-01\\n-3.87787253e-01 -4.56062198e-01 4.00481462e-01 1.30153686e-01\\n3.52179557e-01 1.43929407e-01 1.24443293e-01 1.26359090e-01\\n2.58528441e-01 -1.34195641e-01 2.12415576e-01 -2.86248744e-01\\n9.84282047e-02 4.67083566e-02 5.39514840e-01 -2.77305961e-01\\n1.41736716e-02 1.35723874e-01 -2.06103355e-01 -1.24304436e-01\\n4.47677642e-01 -1.37442062e-02 1.56850561e-01 -1.20916814e-01\\n4.26473200e-01 -5.12115717e-01 -1.69339091e-01 4.64994274e-03\\n-3.76344398e-02 5.50475001e-01 -2.01779921e-02 -3.40297073e-01\\n-1.70277178e-01 2.97896326e-01 -1.34599775e-01 -5.53768547e-03\\n-2.24489167e-01 1.29469067e-01 -2.18793079e-01 2.69609749e-01\\n-8.92545953e-02 -1.64279312e-01 -2.19603688e-01 -1.34439170e-01\\n-8.37295502e-02 2.07883820e-01 3.08331758e-01 1.81467637e-01\\n-1.04592681e-01 -2.46755630e-01 -1.46573991e-01 1.49869487e-01\\n4.13690239e-01 3.87445658e-01 9.49726552e-02 -2.54140049e-01\\n-5.27251028e-02 1.81791559e-01 -1.69128671e-01 2.19278321e-01\\n-8.15106928e-02 6.86012879e-02 -3.87345046e-01 -2.19032288e-01\\n-9.54091996e-02 -3.41391742e-01 1.62065893e-01 4.38725531e-01\\n1.03565261e-01 -4.95192185e-02 8.88967216e-02 -3.87062997e-01\\n5.19858599e-01 1.71518356e-01 1.49904221e-01 9.35500860e-02\\n-4.50994372e-02 6.54482007e-01 -3.06490604e-02 -6.45255893e-02\\n-1.44081146e-01 1.42568192e-02 -2.51248926e-01 -1.75198197e-01\\n1.41937569e-01 -2.67589986e-01 -3.09600011e-02 3.12765300e-01\\n1.22567520e-01 -2.05899507e-01 -4.40888964e-02 2.22731575e-01\\n4.29571886e-03 -3.41325611e-01 -2.23736852e-01 1.61640882e-01\\n2.59109020e-01 5.94939515e-02 2.50276506e-01 -4.82003570e-01\\n-1.38419539e-01 -7.07595348e-02 -3.83368805e-02 3.49112928e-01\\n2.06280947e-02 1.46639317e-01 -1.86279211e-02 -3.60827982e-01\\n3.28966826e-01 -1.78552940e-01 -1.96289316e-01 2.57781774e-01\\n6.48702309e-02 -2.22579136e-01 -4.50625688e-01 -1.73233539e-01\\n2.31833570e-02 -1.44662246e-01 5.53709976e-02 1.01424426e-01\\n4.41935137e-02 1.53817534e-02 -5.32477975e-01 -1.95775241e-01\\n-3.45980018e-01 1.64158475e-02 -1.73674319e-02 -4.88357216e-01\\n-5.32545894e-02 -2.78113842e-01 -5.70401549e-01 3.44835162e-01\\n-2.14842215e-01 -2.33876575e-02 1.55070350e-01 7.86947832e-02\\n-2.18077913e-01 -2.01747239e-01 2.02409267e-01 1.89781085e-01\\n-2.26237610e-01 -2.29827464e-02 -1.66506156e-01 -1.06684673e+00\\n2.61037052e-01 3.60801145e-02 -5.97181916e-02 5.51995188e-02\\n-1.03928018e-02 -6.19252026e-01 1.13831230e-01 -3.31744432e-01\\n-4.07424271e-02 -3.17541324e-02 -2.09674284e-01 -2.97346771e-01\\n4.13273424e-02 -2.77711563e-02 -1.26554653e-01 2.97708064e-01\\n-2.12381095e-01 3.83395791e-01 4.70407121e-02 1.57263819e-02\\n-6.56993762e-02 -2.78127700e-01 9.71797928e-02 -3.63594770e-01\\n-3.65515888e-01 -2.03439847e-01 -2.71228284e-01 -1.05978064e-01\\n-2.58119050e-02 -3.34119737e-01 -1.51612103e-01 6.84462339e-02\\n3.14232856e-01 2.06878960e-01 -1.31940588e-01 -1.40903473e-01\\n-2.83300336e-02 -4.50023293e-01 2.00561300e-01 -4.34217840e-01\\n-3.87459844e-02 -2.88183272e-01 2.49233231e-01 1.31213725e-01\\n6.85437918e-02 -3.43052596e-01 2.89156079e-01 -3.82265508e-01\\n-4.15320903e-01 -1.38648421e-01 2.03164473e-01 3.16549540e-02\\n3.58117580e-01 -5.73195100e-01 -1.84942499e-01 1.97153762e-01\\n-6.12171739e-02 1.06545374e-01 3.55285943e-01 -1.33793727e-01\\n-1.57963291e-01 3.86258066e-01 -4.75795537e-01 1.58828154e-01\\n7.05654800e-01 3.63427132e-01 1.62131209e-02 3.00183564e-01\\n2.14326888e-01 2.52564013e-01 4.74269599e-01 1.52259529e-01\\n-5.35526536e-02 4.30830806e-01 1.98730994e-02 -4.98609692e-01\\n-1.06556356e-01 -1.81897298e-01 -1.81831256e-01 -4.40114945e-01\\n5.97608209e-01 4.33947474e-01 -3.30132455e-01 -3.96458745e-01\\n-5.72309755e-02 -1.45110294e-01 1.60906300e-01 -8.64301994e-02\\n4.88631241e-02 -7.07374141e-02 6.01584315e-01 7.33482093e-02\\n1.90279722e-01 5.67118347e-01 -7.62463287e-02 -2.33186781e-01\\n-6.98002502e-02 2.07382947e-01 7.05677345e-02 5.33635318e-01\\n-7.25472122e-02 2.19578207e-01 3.74375246e-02 2.02917650e-01\\n-7.18566924e-02 -9.70784500e-02 9.69700515e-02 1.33194402e-01\\n1.84285976e-02 1.55825138e-01 2.73249805e-01 4.20784712e-01\\n1.61134005e-01 3.96417558e-01 3.33076298e-01 5.95062785e-02\\n3.16097379e-01 6.15047455e-01 4.03426200e-01 2.96997037e-02\\n5.64875901e-02 9.83387902e-02 7.62199163e-02 4.10121959e-03\\n1.86966836e-01 2.71801502e-01 1.65810920e-02 7.63152957e-01\\n3.20984542e-01 3.53233010e-01 5.90254307e-01 -6.36768401e-01\\n-5.25338888e-01 -1.34675786e-01 5.29405713e-01 -4.16896909e-01\\n-3.05004027e-02 9.68977809e-02 -2.19235510e-01 3.01009625e-01\\n-4.50840116e-01 -6.93343356e-02 6.86305165e-02 -1.84907407e-01\\n1.48467883e-01 -3.39141265e-02 -1.00549042e-01 2.02821091e-01\\n-2.24864602e-01 -2.24029511e-01 -3.63234401e-01 -1.97552636e-01\\n-3.59890372e-01 -6.97920322e-02 1.74952429e-02 -1.45494431e-01\\n-2.26558298e-01 -1.94042861e-01 -4.65176404e-02 6.50496781e-02\\n2.25304917e-01 -1.30500764e-01 -5.94087541e-02 -1.39460623e-01\\n1.88282520e-01 1.58178121e-01 5.80251694e-01 -6.92357942e-02\\n1.02918446e-01 -1.96538400e-02 -2.17148885e-01 2.76337867e-03\\n2.19074667e-01 -1.14220204e-02 2.14086585e-02 4.64861333e-01\\n-3.78046215e-01 -2.45859057e-01 1.50067061e-01 2.57806301e-01\\n-3.82415563e-01 1.65406957e-01 1.67409275e-02 1.60528407e-01\\n9.50772762e-02 7.22917765e-02 -2.31025726e-01 -7.70221949e-02\\n-2.06799638e-02 -5.02159357e-01 3.26048642e-01 -1.23909242e-01\\n-1.67474523e-01 2.80449629e-01 2.37517849e-01 3.16125691e-01\\n-2.58249044e-01 -1.06094673e-03 -1.96823120e-01 3.93233933e-02\\n8.80566910e-02 2.77737677e-01 -2.13389933e-01 -2.72332013e-01\\n-2.45281443e-01 1.80390790e-01 -1.45690382e-01 1.46920875e-01\\n2.67406851e-02 2.22745925e-01 1.49194241e-01 -6.34681666e-03\\n2.85464078e-01 -4.35576662e-02 -3.20757329e-01 -2.23056123e-01\\n-1.54515401e-01 -1.36139601e-01 1.82689652e-01 -1.03024721e-01\\n2.40817755e-01 -2.99376696e-01 -1.60846654e-02 -3.07360917e-01\\n-2.86348581e-01 -2.98439085e-01 -2.56370455e-02 2.50112452e-02]]',\n", + " 'Über unseren Kunden Our client is a leading alternative investment specialist Ihr Aufgabenbereich Your mission is to be the front-line support to the trading desk and foster straight-through processing (STP) of all post-trade activities with the highest degree of accuracy, diligence and speed; Ensure smooth daily processing of trade execution and trade reconciliation. This includes the effective resolution of trade breaks and the potential troubleshooting in a fairly automated process; Act as deputy trader to manage trade execution across global markets; Contribute to the technical development of our portfolio management and execution platform; Contribute on projects to enhance the operational efficiency and reliability of the daily portfolio implementation process in collaboration with internal teams; Maintain and improve system interfaces to both internal and external counterparties (i.e., data and workflow automation) to reduce costs and operational risks; Assure highest data quality for signal generation, performance analysis and reporting. Ihr Profil Pleasant, open-minded and self-motivated team player with genuine interest in financial markets; Bachelor/Master degree in computer science, engineering (Software/Electrical/Electronic) or applied mathematics from a university or a technical college; Strong object oriented language programming skills, preferably C++/C#; Applied knowledge of data modelling, including relational databases (SQL); Solid Excel and VBA skills; 2-3 year of work experience in the financial industry a plus but not required – fresh graduates are welcome to apply; Fast learner, analytical and numerate with an ability to abstract, assess and solve problems; Excellent attention to detail and a proactive response to mistakes; Well-organized / priority-driven with a practical and methodological approach to your work; Fluent in English, other languages a plus. Ihre Chance Schicken Sie Ihre Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C SQL Sprachen: Deutsch Englisch Job ID: 5205',\n", + " '[\"Self-Motivation\", \"Complex Problem Solving\", \"Collaboration\", \"Proactivity\", \"Management\", \"Team Motivation\", \"Reliability\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"Automation\", \"Objective Interface Systems\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Data Modeling\", \"Operational Risk\", \"Industrialization\", \"C++ (Programming Language)\", \"Operational Efficiency\", \"Activism\", \"Maintainability\", \"Signal Generators\", \"E (Programming Language)\", \"Executable\", \"Global Market Access\", \"Financial Market\", \"Portfolio Management\", \"Workflow Automation\", \"C (Programming Language)\", \"Electronics\", \"Experimental Software Engineering\", \"C# (Programming Language)\", \"Reconciliation\", \"Applied Mathematics\", \"Alternative Investments\", \"Relational Databases\", \"Performance Analysis\", \"Abstractions\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " \"['English']\"],\n", + " ['84',\n", + " 'junior software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.55262876e-01 1.89214036e-01 3.44549060e-01 -7.69195780e-02\\n4.18592602e-01 -2.08977953e-01 2.57224757e-02 2.55634874e-01\\n-4.52925600e-02 -3.53813797e-01 -8.81077722e-02 -2.79114902e-01\\n-1.43807575e-01 -2.44296137e-02 1.57099038e-01 5.11675537e-01\\n2.20145375e-01 1.67304929e-03 -2.26128057e-01 3.73971105e-01\\n1.14473306e-01 1.06592640e-01 -1.12827465e-01 7.17247963e-01\\n3.23252827e-01 6.90302700e-02 -3.03562116e-02 -1.16734184e-01\\n-4.23693806e-01 -1.98651627e-01 3.78225416e-01 4.01792563e-02\\n-7.02536153e-03 -1.70849487e-01 5.64118661e-02 1.81276873e-02\\n-2.70528197e-01 -9.54704285e-02 1.01371504e-01 3.00454348e-01\\n-5.13217568e-01 -3.52761358e-01 9.18276086e-02 5.60459122e-02\\n-1.43344626e-01 -3.09452742e-01 -1.05836824e-01 9.47567523e-02\\n4.81250212e-02 -2.71863025e-02 -6.22238457e-01 3.03894401e-01\\n-1.24436498e-01 -1.49405181e-01 2.29628652e-01 5.82089186e-01\\n1.66680589e-01 -6.48099959e-01 -1.92271590e-01 -2.44241491e-01\\n1.79535538e-01 -9.60311443e-02 1.23830363e-01 -8.11342373e-02\\n3.82824600e-01 -1.00362398e-01 -8.71370211e-02 4.72994685e-01\\n-6.62778378e-01 -2.92416275e-01 -2.33791247e-01 1.06339991e-01\\n-3.97578537e-01 -3.71150672e-03 -1.36110902e-01 -1.24107815e-01\\n9.51505359e-03 3.72225195e-01 1.93486046e-02 -3.92104350e-02\\n-1.61090970e-01 2.64987916e-01 -1.19351726e-02 2.24679381e-01\\n3.09042931e-01 1.93915457e-01 1.33999631e-01 2.82996416e-01\\n-5.50996006e-01 4.91969138e-01 -1.11137284e-02 -2.73546040e-01\\n1.39709294e-01 5.11431284e-02 5.58383763e-01 1.55014381e-01\\n-5.79407215e-02 1.70378178e-01 -1.26966745e-01 2.57887661e-01\\n2.14175180e-01 -3.07340682e-01 2.42362320e-01 -3.15097533e-02\\n-2.30397120e-01 1.21702090e-01 -1.01547740e-01 1.93747520e-01\\n-2.59691119e-01 3.35059702e-01 4.39263731e-01 -9.29437280e-02\\n-2.34944094e-02 -7.08233714e-01 -4.72670160e-02 1.27336169e-02\\n-4.79551107e-02 1.23475991e-01 4.07796055e-01 8.86259750e-02\\n2.47003734e-01 4.19759154e-02 1.96916983e-01 9.50223804e-01\\n-3.20947506e-02 6.53805137e-02 -2.99895912e-01 3.50802332e-01\\n2.03741953e-01 -1.45539761e-01 1.57887235e-01 3.59305412e-01\\n1.64077386e-01 -1.37252524e-01 -1.56003296e-01 2.74921715e-01\\n-7.81432763e-02 -2.65200824e-01 -3.80013019e-01 -1.18198283e-02\\n-3.41774791e-01 -4.11148727e-01 4.52955991e-01 2.33861595e-01\\n2.54451782e-01 -1.50650471e-01 3.71941887e-02 -1.50496438e-01\\n2.84135398e-02 4.13671672e-01 -1.61750019e-02 1.50086850e-01\\n-3.72006267e-01 -1.80617765e-01 -2.24925011e-01 2.86673129e-01\\n7.01473281e-02 1.45334736e-01 2.64065024e-02 -2.41191387e-02\\n2.69865513e-01 1.32612035e-01 -2.94186682e-01 1.59966901e-01\\n8.46522301e-02 -4.41027045e-01 -1.55250505e-01 1.50592506e-01\\n2.00762339e-02 1.67588726e-01 1.57676816e-01 -3.21570992e-01\\n5.24753213e-01 1.37997270e-01 2.43225038e-01 -1.72235653e-01\\n4.00319070e-01 -3.11752677e-01 2.41559952e-01 2.14640662e-01\\n-5.67323148e-01 2.63032734e-01 -6.30153418e-02 -1.26002535e-01\\n7.46561363e-02 1.43149510e-01 2.94215590e-01 -3.65732312e-01\\n1.82149541e-02 -1.03223875e-01 -4.21817958e-01 -4.92646068e-01\\n-2.88675308e-01 -8.63927305e-02 4.52058315e-01 -1.48026168e-01\\n-1.01548098e-01 1.03808098e-01 -5.28559327e-01 -1.32599398e-01\\n1.31953821e-01 5.91215231e-02 -1.02274781e-02 1.54111311e-01\\n-1.39417365e-01 -5.77332258e-01 -5.20285368e-02 -5.36674976e-01\\n-7.05175757e-01 -4.52426374e-02 -1.60557166e-01 2.92828351e-01\\n4.74887788e-02 1.76433980e-01 -1.75882772e-01 1.29228473e-01\\n-3.49294990e-01 8.37697983e-02 2.53166765e-01 2.51739681e-01\\n2.91794062e-01 -1.15974873e-01 -5.15609503e-01 4.15840119e-01\\n-7.69026875e-02 6.41953945e-01 2.59859413e-01 -9.16133404e-01\\n5.32103717e-01 2.65005827e-01 1.19243696e-01 -4.54216838e-01\\n4.02707905e-01 -4.34828222e-01 7.00695887e-02 1.81227118e-01\\n-3.90547603e-01 -2.01252446e-01 3.89426142e-01 -1.81867868e-01\\n-2.10445285e-01 6.23144984e-01 3.50130200e-01 -8.60281140e-02\\n2.66078025e-01 -3.56686950e-01 3.78664173e-02 -2.07216088e-02\\n-1.23166949e-01 -2.56855696e-01 -2.42443949e-01 2.72059083e-01\\n-4.36396152e-02 -6.27983034e-01 -1.77594632e-01 -3.16747069e-01\\n-2.27239758e-01 -2.92336434e-01 -2.06475377e-01 5.74999154e-01\\n2.70657867e-01 3.67558300e-02 2.67374068e-01 -7.70120770e-02\\n-4.02734093e-02 -5.82319021e-01 -1.44470260e-01 8.92643258e-02\\n5.53929031e-01 1.05416492e-01 -1.05575182e-01 6.19956525e-03\\n-1.38043985e-01 5.43794453e-01 -3.98018897e-01 -3.43102843e-01\\n4.85247150e-02 1.62358955e-01 -4.34738584e-02 -4.59813103e-02\\n-2.57971641e-02 4.51984644e-01 -1.96249634e-01 8.36041197e-02\\n-2.19880447e-01 4.45506647e-02 4.62670237e-01 6.48086742e-02\\n-1.29522398e-01 -1.25672728e-01 6.53652251e-02 3.13705295e-01\\n-5.64085305e-01 -1.70498788e-01 5.87311506e-01 2.99835354e-01\\n3.09463114e-01 1.48264736e-01 2.14484632e-01 -1.52483091e-01\\n-2.30178118e-01 -3.10160547e-01 9.62354094e-02 1.59710050e-01\\n1.57934390e-02 -5.25498167e-02 -2.31313467e-01 -4.33776498e-01\\n-3.02293682e+00 -1.27292663e-01 1.93493798e-01 -3.56031597e-01\\n4.86587062e-02 -1.54657690e-02 -9.95096862e-02 -1.27339195e-02\\n-3.56213719e-01 1.15763828e-01 -2.43691012e-01 -2.11647168e-01\\n-3.02289124e-03 3.14582169e-01 6.73972592e-02 1.79670870e-01\\n1.26041725e-01 -1.93837628e-01 -2.39290714e-01 2.77250707e-01\\n-1.05869900e-02 -6.70227647e-01 1.99964717e-01 7.11365640e-02\\n2.75192171e-01 1.18577480e-01 -4.91095781e-01 2.83905547e-02\\n-2.53229409e-01 -3.39005649e-01 1.90099001e-01 -3.29528123e-01\\n-8.30835402e-02 3.94065648e-01 2.44577065e-01 -5.52799292e-02\\n1.88961420e-02 -3.39961916e-01 -4.46978956e-02 -3.97331148e-01\\n1.30842328e-01 -6.00773573e-01 -1.04072310e-01 -1.17227703e-01\\n7.89687991e-01 -3.94131571e-01 8.66473317e-02 9.62099954e-02\\n2.04543173e-01 1.12117425e-01 -1.21356703e-01 2.23637070e-03\\n-2.94022202e-01 -3.99195075e-01 6.42507197e-03 -2.44429663e-01\\n1.37603387e-01 6.09883368e-01 -1.94939405e-01 2.47700084e-02\\n1.24100044e-01 -3.28777343e-01 -3.56915921e-01 -4.41940546e-01\\n-3.18652123e-01 -2.60682046e-01 -7.80760527e-01 -5.33544481e-01\\n-8.33222121e-02 -6.00983612e-02 -2.94024050e-01 7.11063325e-01\\n-4.23294425e-01 -4.46229219e-01 4.86045480e-02 -5.38899243e-01\\n8.17005802e-03 -4.49878871e-01 1.18144006e-01 -7.52676576e-02\\n-2.58812994e-01 -5.56745946e-01 2.08113283e-01 -7.18637928e-02\\n-1.94640726e-01 -2.78661344e-02 -1.14729114e-01 -4.43988949e-01\\n-3.31838906e-01 -2.68313855e-01 4.31092620e-01 8.35521892e-02\\n3.33655149e-01 1.94169655e-01 3.96393716e-01 1.75453335e-01\\n2.35967681e-01 -1.51804417e-01 6.62728921e-02 -2.84639448e-01\\n2.21528336e-01 3.09479702e-03 7.27840006e-01 -3.38344127e-01\\n2.62443006e-01 1.82921559e-01 -2.06043929e-01 -1.05532944e-01\\n4.48877335e-01 5.52706160e-02 -1.70072485e-02 1.04441829e-02\\n4.43852514e-01 -6.84629858e-01 -2.39306748e-01 2.07445666e-01\\n-1.40677407e-01 5.68284452e-01 2.66069882e-02 -4.48588967e-01\\n-2.93283641e-01 3.62828612e-01 -1.32450297e-01 -3.61394614e-01\\n-2.02159524e-01 3.27416331e-01 -1.19402118e-01 1.67911187e-01\\n7.94581283e-05 -2.78601170e-01 -3.61593306e-01 -6.30910248e-02\\n-5.73483407e-02 1.09460570e-01 2.91502208e-01 2.14493554e-02\\n-4.76400517e-02 -2.30521262e-01 -4.36654627e-01 6.64431825e-02\\n4.99225050e-01 2.71260411e-01 1.84091151e-01 -2.11277589e-01\\n-8.18520132e-03 2.77502000e-01 -9.78841633e-02 5.78155816e-02\\n-1.88524589e-01 1.12969130e-02 -3.59051824e-01 -2.85884708e-01\\n9.38739181e-02 -2.88262486e-01 4.97464128e-02 3.85215282e-01\\n1.89399004e-01 3.43825072e-02 2.03148127e-01 -4.13982481e-01\\n5.43204784e-01 1.47067562e-01 1.24497749e-01 1.95984110e-01\\n5.95364943e-02 5.58440983e-01 -8.59317258e-02 5.15338257e-02\\n-8.96778777e-02 -2.33733580e-01 -2.28117034e-01 -2.26983353e-01\\n6.78712055e-02 -3.03440064e-01 -2.47309320e-02 5.40414691e-01\\n-2.33991127e-02 -4.00297970e-01 -1.34343445e-01 2.84037441e-01\\n1.22059152e-01 -1.97120249e-01 -1.87629312e-01 1.79097891e-01\\n2.41178140e-01 1.07678443e-01 2.20959961e-01 -4.08896238e-01\\n-3.23516965e-01 6.38834760e-02 -1.51845902e-01 5.20099580e-01\\n2.92249143e-01 2.08062217e-01 -2.59620935e-01 -2.94732839e-01\\n4.90682542e-01 -3.55933607e-01 -1.83228567e-01 -3.62883024e-02\\n1.20664231e-01 -1.61942929e-01 -4.66935694e-01 -9.31041501e-03\\n8.60983059e-02 -2.55765826e-01 2.58495621e-02 -7.22634271e-02\\n9.23121795e-02 1.51958754e-02 -5.61918795e-01 -3.52804959e-01\\n-2.89325178e-01 -1.09872915e-01 2.23598033e-01 -3.20831239e-01\\n1.54265091e-02 -1.82339162e-01 -6.88853562e-01 2.80536562e-01\\n-3.04502130e-01 6.88554794e-02 2.71043517e-02 1.74994737e-01\\n-3.70781600e-01 -9.01938975e-02 6.83867112e-02 1.31818116e-01\\n-2.44441092e-01 -1.19865619e-01 -1.08106092e-01 -1.10531676e+00\\n8.23078901e-02 2.39458382e-02 1.09347478e-02 -1.39759451e-01\\n-2.93725706e-03 -4.68427330e-01 5.24524003e-02 -3.80815327e-01\\n1.27643496e-01 2.70145126e-02 -1.21811196e-01 -4.52335984e-01\\n9.92082506e-02 -2.90316865e-02 -1.91818789e-01 3.87920439e-01\\n-4.13952321e-01 2.54397273e-01 -7.80064762e-02 7.14172348e-02\\n-1.14023119e-01 -3.35655987e-01 2.35397279e-01 -2.75009513e-01\\n-3.53493512e-01 -1.38426885e-01 -4.26587582e-01 -3.08308095e-01\\n1.42384335e-01 -3.27341259e-01 -3.44874948e-01 1.08155392e-01\\n2.04512224e-01 2.13941514e-01 -8.01460370e-02 -3.34701806e-01\\n1.42275214e-01 -5.03445208e-01 1.81189567e-01 -3.09944749e-01\\n-8.97161961e-02 -1.31363079e-01 2.61654332e-02 -1.13708861e-01\\n-8.88040587e-02 -2.06399426e-01 3.81181508e-01 -2.86607504e-01\\n-3.74509960e-01 -2.46382337e-02 4.20276932e-02 4.01793332e-05\\n2.65546620e-01 -5.37869871e-01 7.42315650e-02 1.57572106e-01\\n1.92884095e-02 7.85265565e-02 3.56829107e-01 -7.84728304e-02\\n-1.49073809e-01 2.99147457e-01 -5.49820900e-01 1.73831075e-01\\n7.13210464e-01 2.59685844e-01 -2.27270927e-02 1.12552747e-01\\n3.87475163e-01 2.85754204e-01 5.24279177e-01 7.86959827e-02\\n1.35893584e-03 2.59366453e-01 -2.81022396e-02 -4.44375813e-01\\n-1.16880409e-01 -2.39416927e-01 -2.60874689e-01 -3.01074684e-01\\n4.75827247e-01 5.37877798e-01 -2.84587383e-01 -1.32948935e-01\\n2.95516606e-02 5.17039523e-02 3.31240922e-01 -3.53332646e-02\\n-1.04505725e-01 -1.00191362e-01 7.39393711e-01 6.84009045e-02\\n3.52742195e-01 5.21140993e-01 -1.93332255e-01 -4.33449179e-01\\n-2.42530197e-01 2.13535756e-01 1.69304028e-01 5.01731396e-01\\n1.97240598e-02 2.60160863e-01 -4.43302244e-02 1.88919544e-01\\n1.82041768e-02 -2.59713475e-02 4.87545393e-02 -4.60364632e-02\\n2.48960808e-01 9.73966122e-02 6.19720444e-02 4.39854354e-01\\n1.70564145e-01 4.37493235e-01 2.78624773e-01 1.23751380e-01\\n2.51451522e-01 7.25694954e-01 4.10275191e-01 2.84689546e-01\\n-2.12489311e-02 4.54331487e-02 -5.26681021e-02 -1.61367655e-01\\n3.63145024e-01 1.59305543e-01 2.43439406e-01 8.38385940e-01\\n3.40004832e-01 3.16002071e-01 7.39197433e-01 -6.32387161e-01\\n-4.85225618e-01 1.20619997e-01 4.14657891e-01 -2.98919559e-01\\n-2.08969027e-01 5.25764637e-02 -1.87877133e-01 2.85952836e-01\\n-4.49875146e-01 -9.17257369e-02 5.86711317e-02 -7.77625814e-02\\n1.66451022e-01 1.35615328e-03 -2.26543367e-01 1.52039945e-01\\n-3.04315954e-01 -2.67596722e-01 -2.48278752e-01 -7.22500607e-02\\n-3.28930855e-01 -1.65358201e-01 -1.37296215e-01 -1.00080520e-02\\n-1.01697959e-01 -4.11008328e-01 -1.53249875e-01 1.90371901e-01\\n4.55602258e-01 -1.33512497e-01 -3.32318656e-02 -8.57182592e-02\\n2.62250658e-02 4.60081786e-01 4.89907533e-01 -4.65452997e-03\\n1.92215517e-01 -9.80756432e-02 -3.24672759e-01 -4.02562972e-03\\n5.29017784e-02 -4.54351716e-02 1.61258295e-01 4.29716974e-01\\n-4.07430142e-01 3.23469564e-02 9.42635685e-02 3.74151856e-01\\n-4.06687230e-01 -1.20738067e-01 -8.81178379e-02 2.84325272e-01\\n1.94349036e-01 2.00328648e-01 -3.96377593e-01 2.27273956e-01\\n-2.89191365e-01 -5.79156995e-01 3.76571357e-01 -2.32051998e-01\\n-5.67360893e-02 3.04689229e-01 1.50747344e-01 8.67722780e-02\\n-3.30149204e-01 5.03678694e-02 3.95279974e-02 4.82507527e-01\\n-6.15486782e-03 4.85317916e-01 -3.38482559e-01 -7.59698823e-02\\n-2.05179915e-01 2.37141922e-01 -2.82573670e-01 2.02232614e-01\\n-1.89965263e-01 2.18833447e-01 1.73948064e-01 5.88513492e-03\\n1.70211777e-01 6.80018812e-02 -1.80203527e-01 -2.40395159e-01\\n-2.50497788e-01 -3.71585846e-01 1.84088916e-01 -3.40525024e-02\\n1.75234765e-01 -3.85972798e-01 -9.45245177e-02 -2.18765467e-01\\n-1.75983816e-01 -4.19313997e-01 -1.45772159e-01 3.76436971e-02]]',\n", + " 'Über unseren Kunden Unser Kunde ist ein Finanzdienstleister Ihr Aufgabenbereich Contribution to product development based on Agile and test-driven methodology Evaluation of new technologies including proof of concept implementations Performance analysis and optimization of our distributed, multithreaded calculation cluster Transition of various components to .NET Core/.NET Standard Support future development and client consultants with in-depth technological knowledge Ihr Profil University degree in computer science, mathematics, physics, or related subjec Dedication to sound software architecture and clean code principles Experience in object-oriented programming, ideally using C#/.NET Experience in Web technologies like JavaScript, REST, IIS, and databases Great interpersonal and communication skills Fluency in English (full professional proficiency) Interest in modern best practices and tools for software development Experience in SDLC automation Interest in finance and related Math Experience with Big Data and NoSQL technologies, e.g. MongoDB, Apache SPARK, Druid Ihre Chance Schicken Sie Ihre Bewerbung an jobs@oneagency.ch Ort: Zürich Spezialisierung: JavaScript C# / C++ / C .NET Entwicklung Agile SQL Sprachen: Englisch Job ID: 2765',\n", + " '[\"Communications\", \"Professionalism\", \"Consulting\"]',\n", + " '[\"Apache Spark\", \"Automation\", \"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Good Agricultural Practices\", \"Calculations\", \"MongoDB\", \"E (Programming Language)\", \"Multithreading\", \"Idealization\", \"Object-Oriented Programming (OOP)\", \"Mathematical Physics\", \"C (Programming Language)\", \"Apache Druid\", \"Finance\", \"C# (Programming Language)\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Big Data\", \"Competency-Based Development\", \"Software Development\", \"Performance Analysis\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Agile Product Development\"]',\n", + " \"['English', 'Inupiaq', 'Welsh']\"],\n", + " ['62',\n", + " 'project manager for training, media and communication in global logistics',\n", + " 'Chuang-li',\n", + " 'Industrial Manufacturing',\n", + " 'www.hilti.com',\n", + " '[[-8.40743482e-02 2.58469582e-01 4.16815966e-01 1.25929350e-02\\n5.25840521e-01 -4.37766649e-02 6.82556182e-02 3.49865973e-01\\n-3.04325055e-02 -5.84392428e-01 6.65341020e-02 -2.43442863e-01\\n6.04313426e-02 1.90676123e-01 9.68776345e-02 4.08527315e-01\\n2.18765289e-01 3.15529779e-02 -1.17172852e-01 2.58254617e-01\\n-9.10764784e-02 -1.76381901e-01 1.24905832e-01 8.89787197e-01\\n5.35619736e-01 2.36047674e-02 -8.25883169e-03 -5.04554808e-02\\n-4.91807461e-02 -2.50231594e-01 4.02163744e-01 -2.47387923e-02\\n-2.00507849e-01 -4.89541411e-01 2.22342759e-02 3.68701220e-02\\n-1.77508354e-01 6.31671958e-03 -1.87721014e-01 -2.37870365e-02\\n-5.00963748e-01 -1.42871737e-01 -1.82981253e-01 -9.55498517e-02\\n-3.27548385e-01 -2.47066766e-01 -5.44267222e-02 -1.70721129e-01\\n2.64375567e-01 8.61753225e-02 -3.87723863e-01 1.68585360e-01\\n-2.77408302e-01 -2.51319766e-01 2.35492259e-01 6.27697170e-01\\n7.52717853e-02 -2.72130907e-01 -5.95689476e-01 -2.91512430e-01\\n7.22421557e-02 -8.94315392e-02 1.04437888e-01 -2.63986290e-01\\n2.67910421e-01 -1.17426589e-02 1.33359894e-01 2.38874361e-01\\n-7.09236264e-01 -7.22351670e-02 -3.96133125e-01 -6.82128370e-02\\n-1.88037276e-01 -1.27517879e-01 -4.06178176e-01 -1.82262927e-01\\n-2.00772136e-01 3.20278764e-01 6.62821382e-02 7.70666301e-02\\n-2.02604800e-01 2.43933365e-01 -3.11103344e-01 3.83765846e-01\\n1.22821629e-01 3.08580846e-01 3.48467886e-01 3.74795198e-01\\n-2.84400076e-01 5.80680907e-01 1.45527065e-01 -3.97300065e-01\\n2.54285604e-01 2.56191075e-01 3.40148509e-01 -1.44673660e-01\\n3.74658763e-01 1.15751639e-01 -1.87879384e-01 3.88455272e-01\\n3.38469505e-01 -4.37917769e-01 9.33118612e-02 -2.69454837e-01\\n9.19012055e-02 -4.58682738e-02 2.30888546e-01 -5.29355891e-02\\n-3.71519268e-01 3.04514289e-01 -1.14691807e-02 -3.32168221e-01\\n-2.91482568e-01 -2.65040040e-01 1.50209479e-03 1.62847880e-02\\n1.85857154e-02 1.65778130e-01 1.42384112e-01 2.07206890e-01\\n2.15507865e-01 5.03542386e-02 6.61029965e-02 7.21781969e-01\\n-9.59540159e-02 -1.84900127e-02 -2.87707657e-01 2.67805934e-01\\n-5.99117056e-02 -4.39930201e-01 2.51819193e-01 1.57360122e-01\\n-1.54183269e-01 -2.43988141e-01 -3.31923962e-01 2.80689329e-01\\n1.93541616e-01 -1.67974412e-01 -2.09094420e-01 2.41716415e-01\\n1.62506849e-01 -4.10672843e-01 6.62356615e-01 1.84774771e-02\\n2.15192571e-01 -1.06828630e-01 2.73401849e-03 -2.51844466e-01\\n-4.85691503e-02 2.82341465e-02 2.29909584e-01 1.99484497e-01\\n-1.29276142e-01 -2.53016144e-01 -1.76325053e-01 1.07140020e-01\\n-5.49397469e-01 1.33622602e-01 -2.17098117e-01 -1.30049452e-01\\n2.50664830e-01 -1.57037064e-01 -2.30589613e-01 2.03706145e-01\\n-1.58311218e-01 5.42772040e-02 1.34539939e-02 3.83579254e-01\\n-2.44279265e-01 2.14494213e-01 -3.25616822e-02 5.47887832e-02\\n6.81307793e-01 1.94693595e-01 1.63947463e-01 -1.02098383e-01\\n2.31734470e-01 1.83363661e-01 2.75991224e-02 1.71739459e-01\\n-6.47551417e-01 2.79080927e-01 -1.19871460e-01 -2.90313691e-01\\n1.43057227e-01 -1.17326573e-01 2.32743233e-01 -2.03488186e-01\\n-5.06606102e-02 4.53841537e-02 -2.34795064e-01 -2.78241724e-01\\n-1.51226208e-01 -2.09548146e-01 3.23209405e-01 -5.77496409e-01\\n-7.30032772e-02 1.97642505e-01 -4.72325265e-01 -1.51119947e-01\\n9.62095112e-02 1.61083505e-01 1.42574251e-01 1.53789192e-01\\n-1.16691470e-01 -4.07331228e-01 2.22442560e-02 -3.25153828e-01\\n-2.25879967e-01 1.03323936e-01 -3.07513893e-01 5.74217401e-02\\n7.71653131e-02 -2.36525051e-02 1.31734051e-02 9.59394053e-02\\n-1.18316106e-01 3.75229195e-02 1.96893699e-03 -7.56179541e-02\\n4.56498235e-01 8.43281299e-02 -2.49041766e-01 3.31880331e-01\\n-2.04901218e-01 4.67329443e-01 1.05082523e-02 -8.05799842e-01\\n4.15321052e-01 2.78056383e-01 5.18802553e-02 -3.10032487e-01\\n4.04965281e-01 -2.08444640e-01 -5.92219569e-02 -4.08325344e-04\\n-3.76921296e-01 -2.62250185e-01 1.04717463e-01 -2.47086346e-01\\n-2.11388618e-01 3.61531019e-01 -1.24819539e-01 2.65242338e-01\\n1.76396802e-01 -1.52056098e-01 -5.67691363e-02 7.62480311e-03\\n-1.01702638e-01 -1.06743872e-01 -5.67107141e-01 -1.48717940e-01\\n-9.30724815e-02 -2.35699311e-01 -1.28617585e-01 -5.58523774e-01\\n-2.03244328e-01 -3.98762137e-01 -1.35912657e-01 1.33407190e-02\\n3.23684692e-01 5.33060841e-02 -1.17308073e-01 6.17803186e-02\\n-1.08587161e-01 -6.29146039e-01 5.15846163e-02 1.26124740e-01\\n3.77395570e-01 2.07045555e-01 2.20774740e-01 3.84604111e-02\\n9.90462825e-02 5.46254754e-01 -2.32597291e-01 -1.92428708e-01\\n2.06738725e-01 1.78939059e-01 1.58438459e-01 -1.97715014e-01\\n2.98980679e-02 2.06530586e-01 -3.94860208e-01 1.95623767e-02\\n1.55059248e-01 -1.99543126e-02 4.17134285e-01 -4.39672433e-02\\n-3.22034687e-01 -1.18730247e-01 -1.37025416e-02 7.95559287e-02\\n-5.45453846e-01 -2.97409385e-01 7.49153376e-01 1.33132815e-01\\n-3.45483720e-02 1.73544973e-01 -5.47120348e-03 1.17789224e-01\\n-2.64169455e-01 -1.67102486e-01 4.16701972e-01 9.25823152e-02\\n1.11929893e-01 1.23912819e-01 -2.91907527e-02 -5.62133372e-01\\n-3.94764233e+00 -2.21454591e-01 1.80969238e-01 -1.81031197e-01\\n2.53551215e-01 -1.42856836e-01 1.13700882e-01 -3.54639478e-02\\n-2.13742614e-01 7.69787505e-02 -1.80049315e-01 -9.10034925e-02\\n2.98240036e-02 2.01403201e-01 1.53158903e-01 3.01327735e-01\\n1.75809562e-01 -1.53357267e-01 7.94503372e-03 4.18291956e-01\\n-1.44939274e-01 -6.75106347e-01 2.44357184e-01 3.86985093e-02\\n2.07101688e-01 2.43951932e-01 -4.12645280e-01 -9.45634022e-02\\n-3.33640009e-01 -1.82919443e-01 7.93724656e-02 -2.75510192e-01\\n-1.87589139e-01 1.76081941e-01 2.25857407e-01 -1.78290501e-01\\n6.95392638e-02 -4.86219704e-01 -2.33247787e-01 -5.57718277e-01\\n1.28402740e-01 -5.32841563e-01 -1.63864374e-01 -2.34032068e-02\\n6.86088443e-01 -1.97434127e-01 2.12084472e-01 -2.54952833e-02\\n2.22779550e-02 1.29567474e-01 2.43963659e-01 1.63500637e-01\\n-1.31249905e-01 -3.08083117e-01 -1.07815385e-01 -1.04557678e-01\\n5.79446673e-01 3.23098987e-01 -4.66593094e-02 -7.38661885e-02\\n5.29460274e-02 -1.61190808e-01 -5.19420564e-01 -2.08581209e-01\\n-1.26669779e-01 -1.59519970e-01 -6.36324763e-01 -4.52374220e-01\\n-1.60976708e-01 -2.79710531e-01 -9.40341577e-02 5.71674764e-01\\n-3.10929418e-01 -2.44900167e-01 -1.69763267e-01 -4.39508677e-01\\n3.75844210e-01 -7.57706538e-02 3.02525554e-02 -2.03929782e-01\\n-2.18563676e-01 -3.87130737e-01 5.51697016e-02 1.14703119e-01\\n8.12435895e-03 -2.79399157e-01 1.87582463e-01 -5.83585724e-02\\n-2.33685344e-01 -5.00634670e-01 3.65390092e-01 1.67401075e-01\\n1.53983906e-01 1.68915793e-01 3.45447600e-01 -1.61245897e-01\\n2.19978124e-01 6.26730397e-02 -2.18038931e-01 -4.35719252e-01\\n-7.95871392e-03 -1.12998739e-01 2.88545251e-01 5.66942990e-03\\n-2.69833282e-02 -1.45034138e-02 -2.01553047e-01 -6.13385998e-02\\n3.99099529e-01 -9.10937488e-02 2.10542917e-01 6.01239428e-02\\n1.29313022e-01 -1.40563592e-01 -1.03979647e-01 -6.82359412e-02\\n-5.41637801e-02 5.46680391e-01 6.97013438e-02 -3.32642347e-01\\n-1.10638216e-02 5.62430859e-01 -4.88555729e-02 3.40930462e-01\\n-2.90427327e-01 4.43888977e-02 -2.28580385e-01 2.62806803e-01\\n-7.70779252e-02 -1.76226318e-01 -1.06690668e-01 -1.54645875e-01\\n-6.73477724e-02 2.71901786e-01 1.67708233e-01 1.47525668e-01\\n9.11052898e-03 -2.92391121e-01 -1.27843246e-01 1.95279688e-01\\n2.65807360e-01 5.91725051e-01 1.84523180e-01 -2.05751956e-01\\n-7.67403170e-02 2.82037854e-01 -2.63195753e-01 2.51173735e-01\\n-2.92140335e-01 2.47334033e-01 -4.97321904e-01 -2.43594617e-01\\n-4.20798004e-01 -4.55444515e-01 1.33028090e-01 3.27022016e-01\\n1.11824915e-01 -1.92242235e-01 1.73050493e-01 -4.78143394e-01\\n1.37256801e-01 2.05488786e-01 9.57686007e-02 1.73359513e-01\\n1.06840869e-02 5.20275474e-01 6.38638530e-03 -1.94139704e-01\\n-1.74674451e-01 1.43114805e-01 -6.24279603e-02 -1.31330520e-01\\n9.93070379e-03 -6.07772827e-01 -1.80330142e-01 4.01308715e-01\\n1.54932499e-01 -1.62273854e-01 -1.38392806e-01 4.12985086e-01\\n-2.34765001e-02 -2.85152435e-01 -2.99318463e-01 -8.95058513e-02\\n2.84278005e-01 7.00266212e-02 2.85052121e-01 -4.21257734e-01\\n-1.10147506e-01 -6.06728010e-02 -1.76553000e-02 4.35293674e-01\\n3.07011977e-03 9.49329585e-02 -1.16761863e-01 -1.28300652e-01\\n3.17327321e-01 1.20570939e-02 -5.44656403e-02 3.04063261e-02\\n1.75823092e-01 -2.05140948e-01 -3.69727254e-01 1.97816283e-01\\n2.79976912e-02 -3.33476126e-01 -3.11218482e-02 2.29069769e-01\\n4.03233208e-02 1.76239967e-01 -6.39955282e-01 -2.23328933e-01\\n-3.68789375e-01 8.23318399e-03 2.99215261e-02 -6.71709299e-01\\n-4.04630378e-02 -2.07612827e-01 -4.10776556e-01 3.43104839e-01\\n6.34002611e-02 -2.35280588e-01 2.28734717e-01 1.14739686e-01\\n-2.38524601e-01 -4.79914322e-02 -2.55090408e-02 1.89372674e-01\\n-2.51750112e-01 -2.28531092e-01 -2.58771069e-02 -1.04859900e+00\\n2.40671605e-01 1.63684651e-01 -1.40454948e-01 1.21072985e-01\\n-2.36333907e-01 -5.74760556e-01 1.61852688e-01 -2.78525472e-01\\n-2.44845301e-01 -7.42048845e-02 -2.55428582e-01 -3.58862489e-01\\n9.23467875e-02 8.73806924e-02 -2.32250512e-01 4.52167392e-01\\n-2.54099667e-01 3.05973887e-01 -2.51253486e-01 5.38473204e-02\\n-2.23680437e-02 -3.16661716e-01 1.51145816e-01 -3.03030133e-01\\n-4.84323025e-01 -1.80845141e-01 -3.14035684e-01 -1.72937632e-01\\n-1.64167099e-02 -4.22721803e-01 -1.31323412e-01 3.66606824e-02\\n4.01354581e-01 8.46928805e-02 -2.46287227e-01 -2.68915147e-01\\n-2.20570248e-04 -5.02850175e-01 9.30902064e-02 -6.18607551e-03\\n-9.14471895e-02 -2.32242167e-01 3.36830258e-01 1.05769739e-01\\n3.40727031e-01 -3.48002017e-01 3.25387418e-01 -4.50710773e-01\\n-2.30001152e-01 -6.25995323e-02 2.32579429e-02 -4.34126332e-02\\n2.73882389e-01 -5.20508349e-01 -1.20421767e-01 2.66817212e-01\\n1.73854098e-01 -8.51445049e-02 3.24640393e-01 -1.77047774e-01\\n-1.28683537e-01 5.24109721e-01 -3.35807651e-01 1.87891781e-01\\n7.71039724e-01 4.58810255e-02 2.22254276e-01 2.90707409e-01\\n2.35723257e-01 3.84947002e-01 3.53067577e-01 -1.05397254e-01\\n-1.06983423e-01 3.25383604e-01 1.71505153e-01 -5.50171137e-01\\n4.29351665e-02 7.34012127e-02 -1.00883245e-01 -3.77746075e-01\\n6.61653340e-01 3.28182697e-01 -4.88130629e-01 -1.97904333e-02\\n-2.12527037e-01 -2.63930142e-01 2.65029728e-01 -7.83672631e-02\\n-4.02277224e-02 -1.92227811e-02 3.97215724e-01 -3.30482349e-02\\n3.18275034e-01 5.40801764e-01 -2.46287823e-01 -3.21044952e-01\\n-1.06650002e-01 3.03066045e-01 -6.22306094e-02 6.77918434e-01\\n-2.86907792e-01 3.26790154e-01 -3.37926298e-03 1.22265533e-01\\n-1.48329409e-02 2.38707870e-01 2.32175916e-01 1.27275273e-01\\n1.68684274e-01 1.46489263e-01 6.15396261e-01 3.49223256e-01\\n3.92903328e-01 2.98387706e-01 3.06499422e-01 1.14283830e-01\\n3.29346895e-01 4.15820837e-01 3.07956100e-01 -3.50653417e-02\\n2.65976656e-02 -1.27079263e-02 2.82396376e-01 7.64356926e-03\\n3.31102073e-01 4.95255589e-01 -1.16407536e-02 8.13368917e-01\\n3.81755292e-01 3.30624819e-01 6.30647540e-01 -6.30690098e-01\\n-2.15685636e-01 1.46872848e-02 3.83711755e-01 -4.11241919e-01\\n1.76732212e-01 2.50810206e-01 -1.34737775e-01 1.66641891e-01\\n-3.53505015e-01 -3.70308578e-01 -2.35846695e-02 1.63096651e-01\\n-7.22845942e-02 -4.17674065e-01 -1.20729670e-01 1.65907383e-01\\n6.19453378e-02 -7.16656297e-02 -4.13753211e-01 -1.23452649e-01\\n-2.19013140e-01 4.36485335e-02 -1.54438496e-01 1.04949269e-02\\n-1.48485333e-01 -1.88259929e-01 3.02355010e-02 -5.32700345e-02\\n1.56755939e-01 -5.27805276e-03 1.26039423e-02 -7.82055855e-02\\n3.42981815e-01 1.35030523e-01 4.55368638e-01 1.24912597e-02\\n4.63825725e-02 -1.82033420e-01 -1.86582953e-01 2.30203599e-01\\n3.48383963e-01 1.30817536e-02 -4.37957495e-02 1.54901505e-01\\n-8.08587968e-02 -2.76071846e-01 2.65143335e-01 2.46993884e-01\\n-4.08186436e-01 1.74535476e-02 -1.52755722e-01 2.31162786e-01\\n2.76306085e-02 1.86376497e-01 -9.97461155e-02 2.46973168e-02\\n-1.50751829e-01 -4.15521204e-01 1.17535584e-01 -8.24429616e-02\\n-1.69555515e-01 1.32224895e-02 3.77371758e-01 3.35330486e-01\\n-2.99781621e-01 3.06778345e-02 -1.12416171e-01 1.21003404e-01\\n-1.14030302e-01 1.70745701e-01 -1.28754660e-01 -2.81391144e-01\\n-3.28848183e-01 1.49257451e-01 -4.51760553e-02 1.01898402e-01\\n4.68550436e-02 2.63695002e-01 1.40488725e-02 4.00250629e-02\\n3.89912277e-01 -9.32000726e-02 -1.88357100e-01 -1.33996591e-01\\n-2.88251102e-01 7.23837093e-02 -6.42600060e-02 -1.68910474e-01\\n2.40446597e-01 -3.39556009e-01 -1.02752298e-02 -1.25127956e-01\\n-5.28026633e-02 -3.32377017e-01 1.13458291e-01 -1.24936044e-01]]',\n", + " \"You will work in Global Logistics business development and derive and define from our strategy and future business potentials concrete project opportunities in the field of trainings, digital media and communication. You can drive, lead and implement global logistics projects with focus on competencies and trainings. You design and create digital media supported communication materials to strengthen our offering in transfer of knowledge and communication in an effective, target group-oriented approach. Who is Hilti? If you’re new to the industry, you might not have heard of us. We provide leading-edge tools, technologies, software and services for the global construction sector. We have a proud heritage, built over 75 years, and a worldwide reputation for pioneering products and exceptional service. With some 29,000 people in more than 120 countries, which we’re looking to expand, we’re a great place for you to show us your worth, step up to new challenges and grow your career. What does the role involve? You lead and drive project execution within global logistics where design tasks play a key role. You drive the learning experience of your stakeholders through training program and platform design. You ensure proper implementation including hand-over and trainings to the end users. You know which methods contribute to understanding a communicative problem in all its complexity. You formulate precise communication goals and define the working steps necessary to achieve a specific goal. Out of the box thinking and creativity helps to find innovative solutions. You design required film and picture material to serve your stakeholders requirements. After a sound analysis and fact base of the as-is situation you define the required steps to achieve the targeted solution. You manage the change with different stakeholder groups and communicate regularly to our management team. Our department drives overarching, cross-functional initiatives in a global set-up and it’s your opportunity to be part of this. What do we offer? Show us what you’re made of and we’ll offer you opportunities to move around the business – to work abroad, experience different job functions and tackle different markets. It’s a great way to find the right match for your ambitions and achieve the exciting career you’re after. We have a very thorough people review process, unlike any we know of in any other business. We screen everyone in the company in a yearly career performance matching process. It means we can pair talent with opportunities - developing our people in their current roles or challenging them to work in new ways or in new places. It’s how we find the right fit and further our teams personally and professionally. Additionally, we offer you a competitive salary and a wide range of benefits, these may include day care for your kids or a free in-house gym. Why should you apply? Within this role you have a unique chance to connect with many people in a wide variety of roles across our global organisation. Hilti's unique company culture stands for an ambitious but caring working environment. If you are looking to develop your career with a global player and international innovation driver and want to be part of a great, international team, we strongly appreciate your application. What you need is: A University degree ideally in Supply Chain or Media related Arts and Design Excellent networking and interpersonal communication skills Experience in project management, film production, photography and interactive design Ideally functional expertise in logistics and/or communications Fluent in English any other language a clear benefit\",\n", + " '[\"Professionalism\", \"Construction\", \"Interpersonal Communications\", \"Management\", \"Communications\", \"Distributed Team Management\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Tooling\", \"Stakeholder Requirements\", \"Global Logistics\", \"Supply Chain\", \"Industrialization\", \"European Training Programs\", \"Films\", \"Digital Media\", \"Idealization\", \"Executable\", \"Hostile Work Environment\", \"TARGET 3001!\", \"Cross-Functional Coordination\", \"Logistics\", \"Personalization\", \"Product Photography\", \"Project Management\", \"Interactive Design\", \"Additives\", \"Derivatives\", \"Media Relations\", \"Business Development\"]',\n", + " \"['English']\"],\n", + " ['122',\n", + " 'software support engineer (fr, ch, be, lu)',\n", + " 'Bern',\n", + " 'Internet',\n", + " 'www.therefore.ca',\n", + " '[[-1.55777916e-01 2.44646162e-01 4.60761309e-01 1.32202441e-02\\n4.27852601e-01 -1.70495957e-01 1.49829969e-01 5.15513301e-01\\n1.98983215e-02 -4.21885222e-01 -5.19852787e-02 -1.41450763e-01\\n1.08371019e-01 1.40827313e-01 1.48692399e-01 3.20744693e-01\\n3.37379754e-01 2.18882591e-01 -2.77064741e-01 3.16944510e-01\\n3.65652815e-02 -2.18486264e-01 2.15076670e-01 7.29440093e-01\\n6.40528560e-01 7.72121176e-02 -5.76715507e-02 -3.02792974e-02\\n-1.67261645e-01 -3.08670282e-01 4.98694271e-01 -1.90470859e-01\\n-9.24927066e-04 -3.46925765e-01 1.92726374e-01 -2.18261052e-02\\n-1.82223916e-01 3.87611613e-02 -1.66576579e-01 -3.89696360e-02\\n-4.63668555e-01 4.78723273e-03 5.43792062e-02 1.40126795e-01\\n-2.63701022e-01 -3.98818225e-01 1.68714151e-01 -4.79045734e-02\\n2.40668774e-01 -7.78185055e-02 -4.32403386e-01 3.02379876e-01\\n-2.62874901e-01 -2.03442186e-01 3.62532794e-01 5.97161591e-01\\n-1.76009998e-01 -5.24223149e-01 -5.56016505e-01 -3.70052040e-01\\n4.12188135e-02 -8.10416564e-02 8.10493007e-02 -3.66510540e-01\\n3.36701870e-01 6.52503967e-03 7.20869824e-02 3.67358863e-01\\n-7.79127002e-01 -8.71852040e-02 -1.78243116e-01 -1.46569267e-01\\n-2.85961360e-01 -1.05965897e-01 -4.65223610e-01 -7.05951080e-02\\n-2.32167542e-01 3.36989522e-01 4.43681702e-02 4.25488763e-02\\n-2.23287359e-01 2.80868798e-01 -2.96769202e-01 4.03848410e-01\\n1.30317986e-01 3.12463105e-01 2.91959375e-01 2.84992367e-01\\n-2.61566848e-01 5.34558535e-01 1.81289077e-01 -2.77079493e-01\\n1.66980848e-01 1.19555704e-01 4.82461423e-01 -1.65927008e-01\\n3.44761342e-01 1.19609637e-02 -3.46580416e-01 2.62116760e-01\\n3.64019126e-01 -3.76346886e-01 -3.39216925e-02 -7.04857260e-02\\n-1.32716056e-02 7.15230405e-02 9.77599844e-02 2.36990616e-01\\n-3.20370823e-01 5.10214806e-01 1.58937022e-01 -2.10255235e-01\\n-1.02614038e-01 -4.79490072e-01 -1.45123899e-01 7.68300071e-02\\n7.35836104e-02 1.55027568e-01 1.18624493e-01 1.56649068e-01\\n2.95725495e-01 -8.91818255e-02 9.39065441e-02 7.83210695e-01\\n-1.21435538e-01 3.67878787e-02 -2.77181089e-01 2.90609628e-01\\n-5.53212650e-02 -4.45692509e-01 3.42103273e-01 8.21334049e-02\\n1.09309316e-01 -4.55162600e-02 -2.49884859e-01 3.15673292e-01\\n-1.30174115e-01 -2.27295280e-01 -3.23884636e-01 2.65941143e-01\\n-1.08012825e-01 -4.24779177e-01 5.74313223e-01 -8.70489515e-03\\n1.31414920e-01 -1.04726419e-01 6.94150403e-02 -1.41446337e-01\\n-7.21814409e-02 1.80480897e-01 1.58814654e-01 6.09865785e-02\\n-2.93721616e-01 -2.93014526e-01 -1.77519724e-01 4.01413217e-02\\n-3.79075408e-01 1.30171672e-01 -1.41121343e-01 -1.07364096e-01\\n3.29733223e-01 -4.92025241e-02 -2.35559657e-01 2.83330590e-01\\n-1.79927528e-01 1.65434480e-01 -7.16299191e-02 3.83954763e-01\\n-2.21877679e-01 3.96518528e-01 -4.04499136e-02 9.56663340e-02\\n6.76679969e-01 9.93323475e-02 7.84072801e-02 -8.71284753e-02\\n2.86113024e-01 5.39272353e-02 1.49278075e-01 4.50444929e-02\\n-7.23957002e-01 4.47063148e-01 -7.98003282e-03 -1.87707260e-01\\n1.24477893e-01 -1.92692965e-01 3.01498324e-01 -4.46159989e-01\\n-8.75811726e-02 -1.12040214e-01 -3.15513253e-01 -2.74277508e-01\\n-2.56920695e-01 -7.10819215e-02 4.11121547e-01 -4.47752416e-01\\n1.60519369e-02 1.90174103e-01 -4.91433293e-01 6.23355061e-02\\n1.83634341e-01 1.73873201e-01 1.19613163e-01 2.14902118e-01\\n-2.48103291e-01 -4.85935003e-01 1.87821820e-01 -3.13208580e-01\\n-1.64551258e-01 1.92917556e-01 -3.24072659e-01 1.91968501e-01\\n8.72255862e-02 -5.17328503e-03 -1.52181029e-01 1.59750775e-01\\n-1.28285363e-01 -3.60016674e-02 9.75285321e-02 6.58773333e-02\\n3.50631207e-01 1.59893259e-01 -4.56033826e-01 4.60074633e-01\\n-7.83750042e-02 4.95820582e-01 6.93663582e-02 -7.54754424e-01\\n3.71111035e-01 3.22362959e-01 5.26960082e-02 -2.76920617e-01\\n6.20774567e-01 -1.62459254e-01 -1.61150321e-01 8.09434056e-02\\n-4.92908686e-01 -3.82737219e-01 1.28633529e-01 -2.28127003e-01\\n-2.61436075e-01 4.18014884e-01 -6.89997971e-02 1.16534978e-01\\n9.93123576e-02 -1.32335052e-02 -5.01167476e-02 1.54149041e-01\\n1.28883839e-01 -1.08230852e-01 -5.53067982e-01 -1.90396294e-01\\n-5.46686091e-02 -3.42771769e-01 -1.40139028e-01 -4.82705384e-01\\n-2.11515889e-01 -2.57839590e-01 -1.76500842e-01 4.25553881e-02\\n2.25386217e-01 1.30591661e-01 7.48763010e-02 9.63162184e-02\\n-2.84399331e-01 -5.51806331e-01 1.71523262e-02 7.57191181e-02\\n2.82134533e-01 2.98980474e-01 9.19542238e-02 1.69313755e-02\\n-3.56942862e-02 7.07063138e-01 -2.29328528e-01 -5.53242490e-02\\n2.03005031e-01 1.49062023e-01 2.66597904e-02 -1.86680034e-01\\n1.18516393e-01 3.93120736e-01 -3.58069867e-01 -5.33777997e-02\\n-9.80035663e-02 -6.69718534e-02 3.41944665e-01 -1.09312292e-02\\n-3.38619858e-01 -2.53083736e-01 -1.36584237e-01 6.18402436e-02\\n-4.44429427e-01 -2.75446624e-01 6.13491178e-01 4.17287499e-02\\n2.40862787e-01 2.02856824e-01 3.04710090e-01 -8.37553367e-02\\n-1.77283898e-01 -2.67449945e-01 1.79336831e-01 1.16035186e-01\\n7.55361766e-02 1.15386561e-01 -8.34488273e-02 -7.06578851e-01\\n-3.31819034e+00 -6.64388435e-03 2.91053116e-01 -3.70115995e-01\\n3.91724676e-01 -1.13145083e-01 1.25320762e-01 -1.43452451e-01\\n-2.81581104e-01 4.65349779e-02 -2.23548323e-01 -1.46493226e-01\\n1.81097135e-01 1.53515056e-01 1.24589272e-01 2.07910448e-01\\n3.20061833e-01 -3.00651908e-01 2.08528601e-02 2.67527580e-01\\n-1.64164424e-01 -5.96459210e-01 2.74880916e-01 2.54488699e-02\\n3.91146839e-01 4.34081852e-01 -3.92175347e-01 -2.18711540e-01\\n-2.81554222e-01 -1.12926178e-01 1.14689030e-01 -2.67343819e-01\\n-1.31848052e-01 2.82149166e-01 1.95411175e-01 -1.98850214e-01\\n1.46193847e-01 -3.91227722e-01 -5.32448851e-02 -3.58703583e-01\\n4.53238338e-02 -5.53824663e-01 -5.09958304e-02 -4.89958078e-02\\n8.69408965e-01 -3.34439516e-01 1.59568086e-01 -1.84388142e-02\\n1.95699498e-01 1.67088166e-01 2.35443395e-02 3.06046177e-02\\n-2.15773329e-01 -1.02752969e-01 -3.46387923e-02 -1.98693335e-01\\n5.75735152e-01 5.06339610e-01 -2.65325695e-01 -1.45466030e-01\\n-8.04520212e-04 -3.09237987e-01 -4.00573015e-01 -1.62762254e-01\\n-2.57487655e-01 -2.56285340e-01 -5.18521130e-01 -4.43848372e-01\\n-1.59129262e-01 -4.00832780e-02 -1.99822243e-02 4.50307041e-01\\n-2.09728003e-01 -3.36250663e-01 -7.73774385e-02 -4.79032636e-01\\n2.31154710e-01 -5.00294520e-03 9.85561237e-02 -2.74619281e-01\\n-1.27426758e-01 -4.41160530e-01 -2.29107887e-02 -4.33109999e-02\\n-9.38500911e-02 -2.79728144e-01 1.26884878e-01 1.51579414e-04\\n-3.05372208e-01 -5.14321208e-01 2.46081099e-01 1.27358735e-01\\n2.56379098e-01 8.40839818e-02 1.76730305e-01 -1.35128302e-02\\n2.33873323e-01 -2.12859794e-01 1.71754435e-01 -4.98271942e-01\\n8.14767629e-02 4.70817871e-02 5.67152262e-01 -1.35044113e-01\\n6.92816675e-02 1.29755944e-01 -2.07630634e-01 -1.19482920e-01\\n3.08001459e-01 1.24092596e-02 3.69739011e-02 -3.37594122e-01\\n2.31122687e-01 -1.89400643e-01 -2.33733818e-01 -7.61996508e-02\\n-3.76102068e-02 5.62368810e-01 3.59796025e-02 -2.86713272e-01\\n-4.68286872e-02 5.41302800e-01 -1.53587937e-01 2.15905026e-01\\n-2.00532809e-01 9.34032425e-02 -2.57418185e-01 1.53681025e-01\\n1.56245120e-02 -1.88835934e-01 -1.49758384e-01 -1.50384843e-01\\n-7.31983781e-02 4.02921557e-01 2.54822731e-01 1.78068131e-01\\n-2.16893032e-02 -5.01081169e-01 -7.49811307e-02 3.08025658e-01\\n7.27852359e-02 4.48885173e-01 -4.23470214e-02 -2.97585338e-01\\n1.10528171e-02 3.36962700e-01 -2.39874691e-01 2.35921398e-01\\n-2.65145659e-01 9.48325843e-02 -5.37121594e-01 -2.13374361e-01\\n-2.14532122e-01 -4.38523293e-01 1.13080211e-01 3.19716394e-01\\n2.64240764e-02 1.57901719e-01 -8.22614655e-02 -3.63574862e-01\\n2.15572625e-01 -3.27014588e-02 1.50314197e-01 3.02456945e-01\\n-4.57534939e-02 4.17071640e-01 -5.65754138e-02 -1.14566550e-01\\n-2.57182539e-01 2.87781686e-01 -1.01788752e-01 -8.15691613e-03\\n1.08806804e-01 -4.32945341e-01 -1.36645526e-01 3.26870590e-01\\n1.92701399e-01 -1.35639012e-01 -1.28477708e-01 1.24875575e-01\\n-9.70412977e-03 -4.50688183e-01 -3.02522779e-01 1.02883670e-02\\n2.98259795e-01 1.17870353e-01 3.37139219e-01 -5.24307489e-01\\n4.03249413e-02 -8.33124667e-02 -1.41711771e-01 4.25192684e-01\\n-2.02756926e-01 2.70504020e-02 -2.26189762e-01 -2.41214797e-01\\n3.72215450e-01 -1.98244564e-02 5.24469502e-02 1.36542097e-01\\n1.26975745e-01 -2.62327373e-01 -4.93684709e-01 1.25261396e-02\\n-4.42339554e-02 -1.16371989e-01 1.23740032e-01 5.96065857e-02\\n-2.50907764e-02 1.08942844e-01 -6.14572883e-01 -1.61966547e-01\\n-2.83434957e-01 2.62255725e-02 -1.36890439e-02 -4.45676088e-01\\n-1.26759961e-01 -1.28122633e-02 -5.03574610e-01 1.92078292e-01\\n-3.51851374e-01 -9.50949863e-02 1.92498401e-01 -7.75506198e-02\\n-3.94652456e-01 -5.88098280e-02 1.32708848e-01 3.25075686e-01\\n-2.16178328e-01 -2.56074458e-01 -4.48262095e-02 -1.04825044e+00\\n2.23646924e-01 -4.47032489e-02 -1.12437055e-01 2.18818843e-01\\n-7.57814199e-02 -7.27118194e-01 1.66086838e-01 -3.01929563e-01\\n-1.63327247e-01 -8.22161883e-02 -1.47352353e-01 -3.61699909e-01\\n1.25090152e-01 2.70729717e-02 -3.36827517e-01 4.17273849e-01\\n-2.03751162e-01 3.06239635e-01 -7.81369954e-02 6.93842024e-02\\n-2.05008313e-01 -2.36555949e-01 1.15896314e-02 -5.73920071e-01\\n-3.03102940e-01 -1.06991373e-01 -2.37361118e-01 -5.74391149e-02\\n-4.24181037e-02 -3.32903117e-01 -8.05178806e-02 2.41500959e-01\\n4.12768304e-01 8.00553709e-03 -1.37136742e-01 -1.83592498e-01\\n2.04979572e-02 -5.49830973e-01 1.41527683e-01 6.76143095e-02\\n-1.28784686e-01 -1.08879484e-01 1.25018701e-01 1.90895230e-01\\n2.66824007e-01 -5.18946528e-01 3.33700031e-01 -3.24654847e-01\\n-4.04191017e-01 3.90954539e-02 2.19617561e-02 -1.05853610e-01\\n4.59242731e-01 -4.79619920e-01 -1.35602862e-01 4.42796022e-01\\n-2.06907652e-02 3.99441943e-02 2.27149636e-01 -1.42135382e-01\\n-1.28183886e-01 2.92446405e-01 -3.81958455e-01 1.46428850e-02\\n7.60540307e-01 1.55388281e-01 1.34212554e-01 1.55132055e-01\\n1.12253889e-01 3.49402755e-01 4.53990459e-01 -7.37201124e-02\\n-1.64760038e-01 3.39403957e-01 -5.71803190e-03 -6.35221541e-01\\n6.55890852e-02 -3.38497534e-02 -3.86990964e-01 -3.71794730e-01\\n6.82123899e-01 4.21101063e-01 -3.60324889e-01 -3.31207067e-01\\n-1.79230854e-01 -2.74212420e-01 1.46484263e-02 -1.17420331e-02\\n5.49856164e-02 -1.70786843e-01 4.64682698e-01 3.66226397e-02\\n1.17425151e-01 5.31530619e-01 -2.17245281e-01 -3.52364182e-01\\n8.84826295e-03 1.54161260e-01 -1.40242547e-01 5.53890407e-01\\n-2.64476389e-01 2.39670157e-01 3.24540841e-03 5.39631806e-02\\n-7.47219771e-02 1.94921255e-01 4.07316200e-02 1.50618702e-01\\n8.86686817e-02 1.67923704e-01 5.28612316e-01 5.21264851e-01\\n3.28501701e-01 4.34492826e-01 3.73809934e-01 -1.23514532e-04\\n5.52590311e-01 4.20426518e-01 4.59228516e-01 1.43709615e-01\\n3.12787555e-02 6.66666776e-02 1.78284287e-01 1.77383535e-02\\n3.86749476e-01 2.68428862e-01 -4.57613207e-02 8.96503031e-01\\n3.72031540e-01 2.09202200e-01 7.44310558e-01 -6.89597189e-01\\n-3.14958423e-01 -6.47929609e-02 4.33343500e-01 -4.82031107e-01\\n-7.06584007e-02 1.27265796e-01 -1.46234989e-01 2.52761006e-01\\n-4.41855252e-01 -4.05184239e-01 -8.39511901e-02 1.60894424e-01\\n-6.51107803e-02 -1.99470833e-01 -1.78317010e-01 -1.27511984e-02\\n-9.79640335e-02 -2.02443972e-01 -5.55700779e-01 -2.58728545e-02\\n-2.66039640e-01 -6.32944405e-02 -1.34583980e-01 -2.58409679e-01\\n-8.22316632e-02 -3.11412454e-01 1.36025976e-02 2.52741780e-02\\n9.96530280e-02 -3.64415608e-02 2.55640410e-02 -1.50882259e-01\\n4.68516022e-01 1.21745020e-01 5.10959148e-01 7.68714249e-02\\n4.14141640e-02 -1.89197019e-01 -1.78109229e-01 2.05753505e-01\\n2.35390767e-01 2.13140510e-02 1.84690788e-01 3.14052165e-01\\n-3.71250272e-01 -3.62805367e-01 5.86790480e-02 4.36567366e-01\\n-5.66225111e-01 -4.04161736e-02 1.71136066e-01 1.73994452e-01\\n1.04999550e-01 8.50558504e-02 -4.57604080e-02 -4.41071503e-02\\n-4.89096902e-02 -3.45571965e-01 2.17098668e-01 1.17173679e-01\\n-1.77350566e-01 5.97769842e-02 1.52673811e-01 2.05181032e-01\\n-1.87648162e-01 -3.07280328e-02 -1.53537810e-01 9.31175277e-02\\n9.87549946e-02 2.27448732e-01 -1.28859013e-01 -3.07745695e-01\\n-2.20803484e-01 8.82185027e-02 -3.15490365e-01 9.08235535e-02\\n-4.25345311e-03 1.89366877e-01 -6.74795285e-02 9.47511792e-02\\n4.62229013e-01 -5.05791269e-02 -1.77264571e-01 -2.50555009e-01\\n-8.83811340e-02 -2.04137564e-01 -3.02797519e-02 -1.70584708e-01\\n2.22457200e-01 -3.67062181e-01 -1.06782697e-01 -1.57961607e-01\\n-1.35396391e-01 -2.68211633e-01 1.30593717e-01 -6.25805035e-02]]',\n", + " \"The Profile: We're looking for a motivated person that loves challenges and the satisfaction that comes along with not only finding a solution, but helping out our customers along the way. The ideal candidate should bring a number of the following qualifications to the table: Bachelor's degree in computer science, engineering, math, or the physical sciences. Communicate effectively in person, on the phone, and electronically while maintaining professionalism. Think with a clear mind and develop clever and useful solutions. Excellent knowledge of Microsoft server and client software. Knowledge of database technology. Knowledge of scripting and SQL is a plus. Intelligence, motivation, and a team player attitude. Native French and fluent English speaking, German is a bonus. The Job:Main responsibilities include: Provide support via phone, web, and email to our resellers and customers. Consult and develop effective relationships with our reseller's technical support staff. Support and advise our reseller’s technical staff in designing the most efficient architecture for complex projects Test Therefore software Assist with creating resources such as Knowledge Base articles This is a home-based contractor position with up to 30% travelling required. As the main goal of this role is to provide support for the French speaking countries, the ideal candidate must be located in France, Belgium or Switzerland. The Rewards: A challenging and diversified job in an internationally oriented, rapidly growing company. A flexible work environment with the freedom to work from anywhere with an internet connection. Technical training and a competitive salary. An international, highly motivated and creative team to support you every step of the way. If these tasks sound like something you would enjoy, we want to hear from you! We look forward to receiving your application at career@therefore.net.\",\n", + " '[\"Professionalism\", \"Communications\", \"Creativity\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Projective Tests\", \"Internet Connection Sharing\", \"Knowledge Base\", \"Advising\", \"Resourcing\", \"Electronics\", \"Scripting\", \"Personalization\", \"Microsoft Servers\", \"Maintainability\", \"Computer Science\", \"Knowledge Management Software\", \"Therapeutic Support Staff\", \"SQL (Programming Language)\", \"Physical Science\", \"Technical Training\", \"Receivables\", \"Technical Support\"]',\n", + " \"['English', 'Twi']\"],\n", + " ['113',\n", + " 'full stack java software engineer for product development',\n", + " 'Allschwil',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-1.53163314e-01 3.45958501e-01 4.80312377e-01 4.96129654e-02\\n6.46373272e-01 -9.31278542e-02 7.61816055e-02 3.44816893e-01\\n1.95249282e-02 -4.04568464e-01 -1.02227561e-01 -3.02973330e-01\\n-4.56322432e-02 -1.19540840e-02 3.85900363e-02 4.57073420e-01\\n3.37809205e-01 1.04363449e-01 -2.35546127e-01 2.86029935e-01\\n1.15738235e-01 -1.27417222e-01 2.46822864e-01 7.47106314e-01\\n4.62862313e-01 -4.56334613e-02 -1.63731743e-02 3.91436256e-02\\n-1.98706076e-01 -2.27697745e-01 4.65176314e-01 -7.76805729e-03\\n-7.54578412e-02 -4.04471964e-01 1.66034758e-01 2.70674508e-02\\n-1.66153908e-01 -9.72762890e-03 -8.76198858e-02 1.22800283e-01\\n-4.23082888e-01 -1.59361169e-01 3.43715958e-02 -3.79969738e-02\\n-3.21237832e-01 -3.46769333e-01 1.73331387e-02 -7.47101232e-02\\n1.77837431e-01 -2.12040264e-03 -3.54321182e-01 3.29025447e-01\\n-3.07811081e-01 -2.14984357e-01 3.61850202e-01 7.32660949e-01\\n3.89041938e-02 -4.24984694e-01 -4.92512703e-01 -3.68156970e-01\\n2.00192556e-01 -2.88744848e-02 7.98489377e-02 -2.70854801e-01\\n2.74482489e-01 -4.84471992e-02 7.08866939e-02 2.90425003e-01\\n-6.52612448e-01 -6.39070719e-02 -2.65451163e-01 -1.03721060e-01\\n-3.66779894e-01 -8.06639344e-02 -4.08860236e-01 -1.90988392e-01\\n-6.69812709e-02 3.99656624e-01 6.99374527e-02 -3.55552696e-02\\n-1.36502668e-01 2.40765974e-01 -2.60569870e-01 4.06961948e-01\\n1.98061451e-01 2.21097186e-01 3.08582425e-01 3.56870353e-01\\n-4.11132187e-01 4.25639033e-01 2.91278541e-01 -2.82671958e-01\\n2.82269657e-01 -2.22008694e-02 4.05856639e-01 3.74224037e-02\\n-1.11184735e-02 8.13862905e-02 -2.12045267e-01 2.61964679e-01\\n1.75168380e-01 -2.40970939e-01 -1.06226020e-01 -5.00464998e-02\\n3.09629999e-02 -9.66731980e-02 1.52449638e-01 2.33151689e-01\\n-3.36198926e-01 4.59143519e-01 8.50484818e-02 -2.87678570e-01\\n-6.63793683e-02 -5.16841948e-01 -2.16450438e-01 -7.34679326e-02\\n-6.93383664e-02 1.91711426e-01 1.67964071e-01 2.74309427e-01\\n1.57169223e-01 -1.15172751e-01 9.31906030e-02 8.43087852e-01\\n-1.21463858e-01 8.86573717e-02 -2.79982358e-01 3.62692535e-01\\n1.02803856e-02 -3.58152241e-01 2.72924721e-01 1.84211895e-01\\n-1.09138645e-01 -3.57095450e-02 -1.48241654e-01 3.60044777e-01\\n3.82462074e-03 -2.84275860e-01 -2.44944945e-01 1.32981062e-01\\n-1.26018807e-01 -4.99635190e-01 5.05113125e-01 7.87182525e-02\\n9.38555524e-02 -9.33069438e-02 1.42142596e-03 -3.99601050e-02\\n-1.02378197e-01 1.41383111e-01 1.19847588e-01 3.76872234e-02\\n-2.92920589e-01 -1.98500022e-01 -2.78497040e-01 1.57072470e-01\\n-2.54566163e-01 2.22539119e-02 -1.43810943e-01 -1.63376465e-01\\n2.50473261e-01 4.72176112e-02 -4.70979095e-01 2.71342963e-01\\n-1.16472512e-01 -7.90628120e-02 -1.05237804e-01 4.17008907e-01\\n-2.13933066e-01 2.08580926e-01 -1.23878624e-02 -3.85922343e-02\\n6.40814960e-01 7.73103237e-02 8.90615135e-02 -9.38754156e-02\\n3.58234495e-01 -9.82306302e-02 1.73292756e-01 1.86526567e-01\\n-6.56099975e-01 3.30115438e-01 -1.32244676e-01 -7.07923342e-03\\n1.60361305e-01 -1.46619603e-01 2.85061955e-01 -2.84561068e-01\\n-2.26398632e-02 -2.02879101e-01 -2.85904080e-01 -3.66621524e-01\\n-2.27122173e-01 -6.06604815e-02 3.44562829e-01 -4.57737863e-01\\n-1.56622306e-01 2.52336234e-01 -5.05718768e-01 2.44752932e-02\\n1.61039621e-01 2.83454925e-01 1.49618298e-01 1.94221050e-01\\n-1.37074977e-01 -4.62930888e-01 9.22100618e-02 -4.25722718e-01\\n-3.63900423e-01 1.69494838e-01 -3.02208155e-01 2.60865211e-01\\n1.80144772e-01 2.08197329e-02 -1.85112819e-01 2.26980983e-03\\n-1.99076489e-01 2.95837913e-02 1.58086360e-01 4.52496894e-02\\n2.71338522e-01 9.55792665e-02 -4.14960206e-01 5.17027795e-01\\n-1.84274435e-01 4.76086110e-01 1.46885529e-01 -9.81259525e-01\\n4.76066142e-01 3.95771086e-01 -6.92039728e-02 -2.90738553e-01\\n5.98037124e-01 -2.54431486e-01 4.68310118e-02 9.95763242e-02\\n-2.50004679e-01 -2.06577659e-01 2.11851314e-01 -1.10962681e-01\\n-2.81031102e-01 4.73514646e-01 5.32560460e-02 1.21132247e-01\\n1.76125064e-01 -1.86588719e-01 -2.01758519e-01 1.24924101e-01\\n-1.91084102e-01 -1.45107061e-01 -4.86961246e-01 -5.49963526e-02\\n-1.14940017e-01 -4.88502711e-01 -2.03767985e-01 -5.37756860e-01\\n-1.95237920e-01 -3.50174546e-01 -1.65076599e-01 1.37908071e-01\\n1.76700071e-01 9.60097685e-02 -4.81983982e-02 1.23764947e-01\\n-1.61157325e-01 -6.72060966e-01 -6.99396729e-02 4.07251418e-02\\n3.81361037e-01 2.40420118e-01 1.82238951e-01 7.50546763e-03\\n5.12751890e-03 5.99553466e-01 -3.11003000e-01 -1.38647854e-01\\n1.70814365e-01 2.02813327e-01 7.26821572e-02 -6.41664118e-02\\n1.45022780e-01 3.72314990e-01 -2.06986889e-01 2.11264379e-02\\n-1.00064809e-02 4.04091887e-02 3.78820419e-01 -9.73210111e-03\\n-3.53191257e-01 -2.70962983e-01 1.64302643e-02 2.30280682e-01\\n-5.55343211e-01 -2.27163360e-01 6.43484116e-01 1.92255944e-01\\n1.20767586e-01 2.04065323e-01 3.03046912e-01 -8.50166753e-02\\n-7.94806480e-02 -1.93510428e-01 2.46350124e-01 6.63291812e-02\\n1.88375890e-01 5.02003077e-03 -1.46431550e-01 -6.78383946e-01\\n-3.46461129e+00 -1.04643583e-01 7.40344599e-02 -2.19374895e-01\\n2.33800068e-01 -1.02474444e-01 2.60966033e-01 -8.06682631e-02\\n-3.61276418e-01 8.17953050e-02 -2.26808697e-01 -1.20443277e-01\\n2.05136925e-01 3.24808508e-01 1.84639096e-01 2.77114809e-01\\n2.22943172e-01 -3.17724198e-01 -2.30986457e-02 3.35503817e-01\\n-1.08519673e-01 -6.76443338e-01 2.13204086e-01 6.44621402e-02\\n2.80003637e-01 2.23152146e-01 -3.54767531e-01 -1.33177266e-01\\n-3.14195424e-01 -1.81023911e-01 7.49112964e-02 -2.37771943e-01\\n-1.53723374e-01 2.30833292e-01 2.26552293e-01 -1.41257018e-01\\n9.14531499e-02 -4.33608323e-01 1.60009437e-03 -3.89007211e-01\\n3.09233498e-02 -6.71069145e-01 8.00308213e-02 -8.82456675e-02\\n5.50971091e-01 -2.62424529e-01 8.69421959e-02 5.83611913e-02\\n1.45256668e-01 1.23083472e-01 1.29711807e-01 6.61169738e-02\\n-1.41172230e-01 -1.51783526e-01 -1.19291648e-01 -1.57829106e-01\\n5.77169895e-01 4.02582407e-01 -1.40411511e-01 -4.90478463e-02\\n1.93289556e-02 -2.55401731e-01 -5.12993753e-01 -2.99634337e-01\\n-1.97088689e-01 -1.24736778e-01 -6.80038750e-01 -5.56845307e-01\\n-1.57727346e-01 -1.20029576e-01 -1.17023624e-01 5.13350487e-01\\n-2.55626976e-01 -3.39068651e-01 -6.68958947e-02 -5.23346663e-01\\n3.06307703e-01 -1.32403001e-01 4.02943082e-02 -1.58183739e-01\\n-2.12597921e-01 -3.94796163e-01 -3.06320633e-03 -1.19470451e-02\\n-1.39734969e-01 -2.85733551e-01 1.53049409e-01 -6.65186271e-02\\n-3.11717451e-01 -4.74174410e-01 5.34584999e-01 9.38378647e-02\\n3.15939516e-01 1.70431778e-01 3.39710832e-01 4.76939157e-02\\n2.24869311e-01 -1.51843682e-01 1.28620297e-01 -5.52167058e-01\\n1.99046209e-02 2.89934110e-02 6.39659524e-01 -2.07982332e-01\\n1.17631845e-01 6.02733269e-02 -1.41133010e-01 -1.36399254e-01\\n3.49859178e-01 6.61154911e-02 1.82897508e-01 -2.17768848e-01\\n3.32716435e-01 -3.15891385e-01 -2.28447586e-01 4.60135192e-03\\n2.00065538e-01 6.59612060e-01 -5.77897392e-02 -4.26497281e-01\\n-1.71406388e-01 4.65263337e-01 -9.81196538e-02 1.41334021e-02\\n-2.48584032e-01 2.16614231e-01 -2.70570427e-01 3.26445401e-01\\n7.48366788e-02 -1.13403559e-01 -3.32377464e-01 -1.26705363e-01\\n-1.34826731e-02 3.28725249e-01 2.11554468e-01 1.48665324e-01\\n-9.89829097e-03 -4.29671198e-01 -8.29577446e-02 1.89231947e-01\\n1.26175806e-01 3.15623343e-01 1.19706079e-01 -3.54800284e-01\\n6.00643754e-02 2.98783600e-01 -1.88878328e-01 1.90656379e-01\\n-1.36439711e-01 1.52517959e-01 -5.88105321e-01 -3.46916139e-01\\n-2.49038756e-01 -2.85110682e-01 6.01450689e-02 2.84494281e-01\\n1.21692352e-01 -3.83196995e-02 5.98567771e-03 -3.91707480e-01\\n4.07254457e-01 3.96994911e-02 1.86378583e-01 1.82890430e-01\\n7.89382830e-02 6.42179191e-01 -1.93503518e-02 -2.94281811e-01\\n-2.10854381e-01 8.37750882e-02 -1.43254668e-01 -2.05893889e-01\\n-1.88123703e-03 -4.44069237e-01 -8.86562169e-02 3.72074842e-01\\n1.18633099e-01 -1.93813682e-01 -1.65041760e-01 1.98328584e-01\\n-8.11696053e-02 -2.94681668e-01 -2.72892237e-01 9.96632949e-02\\n2.88808167e-01 2.17613839e-02 3.46698076e-01 -5.16330838e-01\\n1.10231005e-01 -1.28921255e-01 3.96737382e-02 5.23298800e-01\\n1.47512212e-01 1.10427573e-01 2.74716262e-02 -1.72269687e-01\\n4.28212196e-01 1.00768507e-01 -1.03530362e-01 5.50476722e-02\\n5.27741313e-02 -2.55008817e-01 -4.77522343e-01 7.86182471e-03\\n-7.91675039e-03 -1.31084129e-01 1.52061909e-01 1.57053202e-01\\n1.67830870e-01 7.24810436e-02 -7.58585334e-01 -2.06252679e-01\\n-2.59451210e-01 1.03100769e-01 -1.10934831e-01 -5.14525354e-01\\n-9.62283686e-02 -5.88459037e-02 -6.21695578e-01 2.61563897e-01\\n-1.60806611e-01 -1.16007537e-01 4.08232585e-02 2.12570820e-02\\n-3.74709219e-01 -1.69699714e-01 1.93506375e-01 1.32566169e-01\\n-2.81781316e-01 -2.65709817e-01 -9.28634033e-03 -9.96326208e-01\\n1.67078778e-01 -2.85730162e-03 -1.21157207e-01 1.63491383e-01\\n-1.45061556e-02 -7.92238474e-01 1.48730144e-01 -3.82917881e-01\\n-2.15503648e-01 -2.12746002e-02 -1.87243342e-01 -4.63596970e-01\\n5.32534122e-02 3.02580371e-02 -1.81367904e-01 3.41464877e-01\\n-2.99989462e-01 3.43296587e-01 -1.05528966e-01 1.01690561e-01\\n2.58196751e-03 -2.40912229e-01 5.73144965e-02 -4.33545887e-01\\n-4.47768301e-01 -7.52935335e-02 -2.67288327e-01 -2.58242458e-01\\n-8.10937211e-02 -3.13946456e-01 -2.24920318e-01 1.50489826e-02\\n4.16780651e-01 1.61924630e-01 -1.28999114e-01 -1.64790958e-01\\n5.01303235e-03 -4.05673712e-01 2.86412925e-01 -1.30919382e-01\\n2.38757730e-02 -2.14699894e-01 3.16223443e-01 7.59987310e-02\\n2.09139600e-01 -3.73329848e-01 5.09765327e-01 -1.95191696e-01\\n-3.61079514e-01 -1.10824130e-01 1.15455218e-01 -1.13155525e-02\\n2.66495019e-01 -4.66058344e-01 -1.35572031e-01 3.51494700e-01\\n3.09634004e-02 8.53708386e-02 3.92202586e-01 -2.02257276e-01\\n-1.58595696e-01 2.50017524e-01 -4.46899265e-01 8.49972144e-02\\n7.50533402e-01 9.97330695e-02 1.86978996e-01 8.50821733e-02\\n-3.27972369e-03 1.93027169e-01 5.02387047e-01 -4.11191359e-02\\n-1.91403046e-01 3.73791456e-01 6.57521039e-02 -5.76677859e-01\\n-1.49259761e-01 -6.83140978e-02 -9.10222754e-02 -5.04877388e-01\\n5.83330870e-01 3.92018914e-01 -2.85945922e-01 -2.97422737e-01\\n-2.94110149e-01 -1.92240342e-01 1.74850076e-01 2.81789876e-03\\n1.57985881e-01 -1.62254602e-01 4.79511052e-01 -4.24765758e-02\\n2.61991739e-01 4.53701347e-01 -2.78757632e-01 -3.17305714e-01\\n-3.84665169e-02 1.78883731e-01 1.80745423e-02 4.35777068e-01\\n-2.12767199e-01 2.76596069e-01 9.17470902e-02 1.11956604e-01\\n-2.60972589e-01 -4.95556593e-02 1.14374287e-01 8.77545401e-02\\n1.07649840e-01 5.83111234e-02 4.51937705e-01 3.70403916e-01\\n3.79596204e-01 4.40314084e-01 2.80207187e-01 1.61016323e-02\\n5.78643262e-01 5.84255099e-01 3.51202697e-01 1.62435606e-01\\n4.38210294e-02 1.20465010e-01 1.69021785e-01 1.10571980e-02\\n3.96923721e-01 4.03684109e-01 1.05629824e-01 8.98212135e-01\\n2.66578376e-01 2.81456709e-01 6.68624640e-01 -6.50146544e-01\\n-2.79805303e-01 2.54712366e-02 4.60879087e-01 -4.32745367e-01\\n-5.20296954e-02 1.73289284e-01 -2.14327008e-01 1.30578488e-01\\n-4.67944443e-01 -2.77090222e-01 -1.02314577e-01 2.63864826e-02\\n-2.74094641e-02 -1.38882309e-01 -1.12554029e-01 1.78912118e-01\\n-1.16680600e-01 -1.13064237e-01 -3.91412824e-01 -7.31634423e-02\\n-1.96001783e-01 -2.77444627e-02 -1.22542642e-01 -2.05754906e-01\\n-1.15874052e-01 -3.24952066e-01 -1.06884971e-01 1.56433042e-03\\n1.92338869e-01 -1.04804717e-01 -6.98346496e-02 -1.68876454e-01\\n2.68450469e-01 1.32679641e-01 6.36637986e-01 -2.72035170e-02\\n1.56983778e-01 -2.27794543e-01 -1.97969347e-01 4.83374074e-02\\n2.30626494e-01 -1.16594844e-02 -6.75922185e-02 3.18463862e-01\\n-2.26679161e-01 -1.49541184e-01 6.71858191e-02 3.91767502e-01\\n-3.63625705e-01 7.56750582e-03 -6.85633123e-02 1.68148264e-01\\n1.41449468e-02 1.14826232e-01 -1.04034066e-01 8.30607712e-02\\n-1.53913349e-01 -5.46937883e-01 2.69412309e-01 -2.43361786e-01\\n-1.30562007e-01 1.22145051e-02 1.50473371e-01 2.13307336e-01\\n-3.01706553e-01 1.31308943e-01 -1.63266271e-01 1.30513772e-01\\n1.32272616e-01 3.49072963e-01 -2.89044261e-01 -2.46413469e-01\\n-2.21717134e-01 1.86555490e-01 -8.18150416e-02 1.00055322e-01\\n-4.59750183e-03 3.34689707e-01 1.78314701e-01 1.21363208e-01\\n5.63126564e-01 -5.09514613e-03 -2.39189774e-01 -2.65341222e-01\\n-1.81436628e-01 -1.33335114e-01 8.30459446e-02 -4.74097691e-02\\n2.04371735e-01 -3.05493683e-01 -6.46080151e-02 -2.02174991e-01\\n-2.19153166e-01 -4.56935525e-01 -2.61295252e-02 -7.57990777e-02]]',\n", + " \"Swiss AviationSoftware is a 100% subsidiary of Swiss International Air Lines and successfully develops and distributes the software package AMOS which manages the maintenance, engineering and logistics requirements of modern airlines. In order to strengthen our leading market position we are looking for dedicated employees who would like to work in a fascinating international environment with more than 180 customers from all over the world. We are looking for skilled Software Engineers to be responsible for the further development of our Java-based application AMOS. Do you want to be part of a product development team and oversee the full life-cycle? Do you want to develop & maintain a software with more than 5M lines of code, used by airlines from all over the world to ensure the safety of their aircraft's? Then help us to continue the success story of AMOS and apply. Tasks Work closely with customers and their users to understand requirements Implement complex solutions within AMOS in full depth, from database backend until user frontend Go along with the full application life-cycle Work in agile development teams Perform code-reviews and write automated tests Requirements Successfully completed a degree/diploma in software engineering, computer science, or related discipline Strong foundation in Java and SQL Strong object oriented modelling and analysis skills Significant experience/interest in writing enterprise applications Knowledge of Agile Development principles Excellent organization, communication and interpersonal skills Strong customer orientation, ability to make pragmatic compromises to make progress Fluency in English, German language skills are an advantage Airline / MRO know-how desirable What we offer Working in an open and cooperative environment with a motivated and friendly team Good professional and personal development opportunities Active participation in the continuous improvement of processes International work environment with people from around the globe Excellent working conditions in pleasant surroundings: brand new office spaces and ergonomic office furniture, lounge zone, terrace, coffee & break room Ideal work-life balance and different sport possibilities (e.g. squash, soccer, ice skating – partially supported by company) Child allowance and the possibility of home office Fringe benefits: discount on flights, annual TNW abo, discount offers for hotels and hire cars, advantageous credit card conditions, and more\",\n", + " '[\"Writing\", \"Cooperation\", \"Professionalism\", \"Friendliness\", \"Management\", \"Positivity\"]',\n", + " '[\"Computer Science\", \"Life Cycle Assessment\", \"Branding\", \"Maintenance Engineering\", \"Credit Card Applications\", \"M (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Test Automation\", \"Hostile Work Environment\", \"Software Engineering\", \"Java Application Server\", \"Ergonomics\", \"Logistics\", \"Continuous Improvement Process\", \"Object-Oriented Design\", \"Transferable Skills Analysis\", \"Agile Product Development\", \"Office Space Planning\", \"Code Review\", \"Community Organizing\", \"Personality Development\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Custom Backend\"]',\n", + " \"['English', 'Galician', 'Somali', 'Dzongkha']\"],\n", + " ['86',\n", + " 'full stack web application engineer',\n", + " 'Zürich',\n", + " 'Security Services',\n", + " 'www.open-systems.com',\n", + " '[[-3.17957133e-01 3.46389115e-01 3.89491558e-01 -3.21595445e-02\\n5.47099888e-01 -2.52057105e-01 1.19775601e-01 4.27356750e-01\\n-2.69577876e-02 -4.45008129e-01 -1.14103749e-01 -2.02499047e-01\\n-8.60764459e-02 6.90063164e-02 1.94518670e-01 3.55485588e-01\\n3.41190726e-01 1.12909868e-01 -1.41569227e-01 4.89856005e-01\\n4.27033752e-02 -1.30995095e-01 4.85031717e-02 7.52265155e-01\\n4.26227689e-01 -3.18181980e-03 -8.98265168e-02 2.08703224e-02\\n-2.44165137e-01 -2.73249954e-01 3.26298892e-01 -1.04821555e-01\\n-7.59880915e-02 -4.93569523e-01 7.06598237e-02 6.10551722e-02\\n-2.48633206e-01 -9.26238373e-02 -1.26214534e-01 2.20894963e-01\\n-5.46437979e-01 -2.03694150e-01 9.57597792e-02 -4.09916788e-02\\n-1.17594033e-01 -3.00222963e-01 1.58938259e-01 -7.88319390e-03\\n1.69749066e-01 8.69346112e-02 -5.74281931e-01 2.77996898e-01\\n-2.53192782e-01 -2.76665032e-01 4.04574513e-01 5.27458131e-01\\n-1.04940504e-01 -4.91359204e-01 -4.40244555e-01 -3.21139395e-01\\n4.49523218e-02 -3.41433920e-02 1.06954977e-01 -4.54942495e-01\\n2.10506827e-01 1.47364080e-01 9.09315422e-02 4.18028682e-01\\n-7.96747327e-01 -1.23051666e-01 -2.11931065e-01 4.83873719e-03\\n-3.40003461e-01 -1.12704732e-01 -2.32655272e-01 -7.71910250e-02\\n-1.51445717e-01 3.14400613e-01 -8.78645480e-02 8.16881210e-02\\n-2.42152691e-01 4.06859607e-01 -1.96380913e-01 3.39642167e-01\\n2.24399850e-01 1.33446842e-01 1.50234178e-01 3.55518043e-01\\n-3.76299322e-01 5.47876894e-01 2.43909862e-02 -1.90546989e-01\\n2.35892311e-01 2.05133080e-01 4.93840456e-01 -1.20741732e-01\\n2.72940546e-01 1.05226330e-01 -3.37884486e-01 3.16735029e-01\\n2.26761714e-01 -2.65390307e-01 2.74141170e-02 -1.15541853e-01\\n1.60161871e-02 1.23560103e-02 7.36827776e-02 1.89412162e-01\\n-2.96290547e-01 4.35608566e-01 2.17686459e-01 -2.42853463e-01\\n-1.70292541e-01 -4.95200157e-01 -6.64721355e-02 9.77687687e-02\\n1.03903778e-01 4.13565561e-02 1.20665722e-01 4.76577319e-02\\n2.13716090e-01 7.07028359e-02 1.28067777e-01 7.54609525e-01\\n-3.33775617e-02 -4.79815081e-02 -1.86167181e-01 2.25350335e-01\\n9.84847844e-02 -3.47499192e-01 1.01765737e-01 2.47770607e-01\\n1.35233268e-01 -1.61645174e-01 -2.70701975e-01 4.28736508e-01\\n-4.04644310e-02 -1.50215998e-01 -3.39992046e-01 3.33525509e-01\\n-2.42999941e-02 -3.92903835e-01 6.74369037e-01 1.46597683e-01\\n2.44624674e-01 4.66031842e-02 1.14331000e-01 -1.14503413e-01\\n-1.13514826e-01 2.12754190e-01 3.90690453e-02 1.81982353e-01\\n-3.00874203e-01 -2.41636962e-01 -2.58203894e-01 1.78066298e-01\\n-3.48155260e-01 2.64073014e-01 -4.20289263e-02 -1.06782876e-01\\n3.09588611e-01 5.90845523e-03 -3.68086725e-01 3.67620319e-01\\n-1.05782501e-01 1.15263246e-01 -5.34173846e-02 3.71192694e-01\\n-1.09338857e-01 3.00737083e-01 -2.18968000e-02 7.64149101e-03\\n5.54143012e-01 1.35591924e-01 1.07178427e-01 -9.01777484e-03\\n3.05944234e-01 1.64379794e-02 7.41080418e-02 2.71832701e-02\\n-7.85640955e-01 1.17021069e-01 -4.26308140e-02 -2.20000520e-01\\n9.34198424e-02 -2.02861633e-02 2.75185525e-01 -3.19841266e-01\\n-9.91580412e-02 -1.09273158e-01 -4.28054124e-01 -2.76276737e-01\\n-1.65073320e-01 -9.06704646e-03 3.69913608e-01 -4.40424442e-01\\n-1.96099818e-01 1.81671157e-01 -5.52416444e-01 -3.07945460e-02\\n2.31437281e-01 1.81865767e-01 1.43393546e-01 7.64940903e-02\\n-1.46329716e-01 -5.71325958e-01 -5.29930890e-02 -4.36371535e-01\\n-3.22329074e-01 1.02476284e-01 -3.54254812e-01 1.97251499e-01\\n7.99020454e-02 3.46084908e-02 -6.43852875e-02 7.43075758e-02\\n-1.01185657e-01 -4.43144664e-02 7.26245195e-02 1.54840918e-02\\n2.52201259e-01 4.69018854e-02 -3.78696471e-01 4.77530539e-01\\n-9.12952051e-02 5.21065533e-01 5.06401509e-02 -7.02111542e-01\\n6.05801105e-01 4.07491505e-01 -7.68442750e-02 -4.45064068e-01\\n5.72859585e-01 -2.93170631e-01 -6.84666485e-02 1.18993104e-01\\n-4.61221486e-01 -3.32666427e-01 2.01899692e-01 -2.62311399e-01\\n-2.69756168e-01 4.33777541e-01 4.47497107e-02 1.28752500e-01\\n3.09070170e-01 -2.55755067e-01 -1.89371314e-02 1.10282086e-01\\n2.56098453e-02 -1.69690162e-01 -4.68102574e-01 -3.34036872e-02\\n-1.05558939e-01 -5.02024770e-01 -2.28240520e-01 -3.52649599e-01\\n-2.10032925e-01 -2.88501769e-01 -2.20751137e-01 2.11570054e-01\\n3.58125597e-01 1.27706051e-01 -3.27368937e-02 1.53566003e-01\\n-1.69241130e-01 -7.30481029e-01 4.84158099e-02 1.21620789e-01\\n3.93260062e-01 1.35030329e-01 7.89637640e-02 -1.39907718e-01\\n4.03648354e-02 6.60474122e-01 -2.35167861e-01 -1.80679515e-01\\n1.87646702e-01 1.55477181e-01 -2.75418647e-02 -1.48216262e-01\\n1.15306802e-01 3.75697494e-01 -3.03794801e-01 3.99204195e-02\\n-6.01590239e-02 -9.78769436e-02 4.65614825e-01 -1.12096399e-01\\n-3.48604530e-01 -1.94803149e-01 -3.80763076e-02 1.13495745e-01\\n-5.19424558e-01 -1.92997321e-01 5.56229889e-01 1.84489548e-01\\n1.76611036e-01 1.79377154e-01 2.69371003e-01 -5.38812615e-02\\n-1.92319259e-01 -4.49233204e-01 1.52706459e-01 1.85660064e-01\\n3.87645885e-02 1.49512947e-01 -1.10662237e-01 -6.07183337e-01\\n-3.13286400e+00 -1.14501432e-01 1.86877415e-01 -2.77484596e-01\\n1.41552925e-01 3.03500071e-02 9.89959165e-02 -9.19869691e-02\\n-2.32641295e-01 -2.02264069e-04 -2.08785906e-01 -1.63579240e-01\\n2.25899354e-01 2.19554275e-01 6.82780892e-02 1.44386515e-01\\n2.50501931e-01 -3.54680568e-01 -7.91747048e-02 3.53798985e-01\\n-2.09628493e-01 -6.58907890e-01 1.65987730e-01 -1.23932049e-01\\n2.65876293e-01 3.29649925e-01 -3.39721620e-01 -1.53539389e-01\\n-1.12494364e-01 -1.77220985e-01 1.70867324e-01 -2.61521429e-01\\n-1.54491186e-01 2.21460700e-01 2.02100933e-01 -6.65310472e-02\\n1.61021203e-01 -3.54507089e-01 -2.28864610e-01 -4.85336155e-01\\n2.00379089e-01 -5.86918950e-01 -8.24745521e-02 -1.90911263e-01\\n6.94261730e-01 -1.94824278e-01 1.19847812e-01 6.07037507e-02\\n1.37646064e-01 2.34228656e-01 4.71794605e-02 9.07998309e-02\\n-1.04215816e-01 -3.03033203e-01 1.19026634e-03 -1.60643101e-01\\n5.68521082e-01 3.81689638e-01 -1.87572062e-01 -1.93162709e-01\\n1.54592827e-01 -3.23764056e-01 -3.34773690e-01 -1.68628871e-01\\n-4.69333120e-02 -2.53888488e-01 -7.32491434e-01 -3.33992243e-01\\n-1.54034451e-01 -1.60925210e-01 -1.10497199e-01 7.51931727e-01\\n-3.79072875e-01 -3.37486833e-01 -9.05068964e-03 -6.13309205e-01\\n2.02447772e-01 -2.41526768e-01 -1.35589652e-02 -2.76897520e-01\\n-2.04679877e-01 -4.70768780e-01 2.75579141e-03 7.46099651e-02\\n-7.73346275e-02 -2.33702704e-01 1.10456750e-01 -9.95911732e-02\\n-2.12389037e-01 -5.48683405e-01 4.08601940e-01 1.95013434e-01\\n2.26209521e-01 1.32945120e-01 2.82616109e-01 -9.96729136e-02\\n3.22639108e-01 -6.87282532e-02 -5.49646765e-02 -3.37978899e-01\\n1.62868485e-01 -1.87516194e-02 4.86517251e-01 -2.40476042e-01\\n-5.25436476e-02 2.78704077e-01 -2.48368323e-01 -1.22600950e-01\\n3.76673907e-01 -1.46528380e-02 -3.22154677e-03 -1.90073922e-01\\n3.27841878e-01 -4.24081594e-01 -1.61813736e-01 1.64856791e-01\\n9.25865248e-02 6.25278652e-01 1.81071293e-02 -4.38238144e-01\\n-1.64067969e-01 4.84205157e-01 8.74420181e-02 1.19034842e-01\\n-1.66575283e-01 1.06102586e-01 -1.69412151e-01 1.84004202e-01\\n1.41489848e-01 -1.84998080e-01 -2.53216773e-01 -7.63335004e-02\\n-1.14709005e-01 3.59787464e-01 2.77822167e-01 1.42149165e-01\\n-5.74641638e-02 -5.22582889e-01 -1.23194441e-01 1.99648932e-01\\n1.24138914e-01 4.82731998e-01 2.92330747e-03 -2.09343746e-01\\n-8.60012770e-02 4.03038114e-01 -1.07682832e-01 1.96464971e-01\\n-2.66828775e-01 1.09435424e-01 -5.08722842e-01 -2.24511251e-01\\n-3.19141299e-01 -3.28222126e-01 3.56741622e-02 3.48222464e-01\\n1.85456514e-01 -8.73688981e-03 2.66966093e-02 -3.44979525e-01\\n2.54003346e-01 1.94488287e-01 1.06250808e-01 1.61319092e-01\\n-5.43124117e-02 4.48600531e-01 3.42440605e-02 -2.58526772e-01\\n-1.44315124e-01 -2.37494670e-02 -2.26721421e-01 -1.31833866e-01\\n1.33627787e-01 -5.76189935e-01 -1.45383716e-01 3.22851747e-01\\n6.84645995e-02 -2.83004224e-01 -1.33953989e-01 2.10355148e-01\\n2.06986605e-03 -2.95229852e-01 -2.95636714e-01 2.90269870e-02\\n2.89142996e-01 2.67953780e-02 3.43758136e-01 -3.94800007e-01\\n-7.77711421e-02 3.00285202e-02 -5.75258024e-02 3.75425071e-01\\n-7.86335394e-02 3.03283446e-02 -2.51882166e-01 -1.72195703e-01\\n4.29914951e-01 -7.52227604e-02 -1.11945435e-01 7.81935230e-02\\n9.73584801e-02 -1.50054157e-01 -4.91888344e-01 1.19270407e-01\\n-1.38712302e-01 -7.83049166e-02 3.04556955e-02 6.15339205e-02\\n7.04397559e-02 1.09279469e-01 -5.24496675e-01 -2.09913269e-01\\n-2.54649192e-01 -3.27235572e-02 1.90025628e-01 -4.69346881e-01\\n-9.09959227e-02 -5.52273057e-02 -6.18522227e-01 2.38586769e-01\\n-3.16056460e-01 -6.06192090e-02 2.37740174e-01 8.90933052e-02\\n-3.04333270e-01 -1.04371428e-01 1.79925412e-02 2.74827629e-01\\n-3.92499000e-01 -3.11261356e-01 2.42314041e-02 -9.76937711e-01\\n2.94974208e-01 -1.00287952e-01 -1.79324657e-01 3.25834900e-02\\n-1.41378924e-01 -6.97744191e-01 2.50876881e-02 -2.79181689e-01\\n-1.15042403e-01 -3.51326726e-02 -2.04039142e-01 -3.63788098e-01\\n3.21779400e-02 -1.82736635e-01 -3.40582192e-01 3.87623101e-01\\n-3.33451599e-01 2.37268642e-01 -9.60848853e-02 7.21412599e-02\\n-1.30347461e-02 -3.10815781e-01 1.09990388e-01 -4.08573955e-01\\n-4.00553018e-01 -2.61758447e-01 -3.02531093e-01 -2.63614774e-01\\n-4.73727919e-02 -3.47075433e-01 -2.57021468e-02 1.62009239e-01\\n2.27930993e-01 -9.98363458e-03 -8.04812312e-02 -3.19451869e-01\\n8.27896819e-02 -4.75351155e-01 6.36880398e-02 -1.48393465e-02\\n-1.86869642e-03 -1.08936422e-01 8.40525925e-02 1.62282929e-01\\n2.52297789e-01 -3.55913818e-01 2.94258505e-01 -4.25280601e-01\\n-2.90224582e-01 -6.83074817e-02 -1.05769441e-01 -1.29082110e-02\\n3.00846905e-01 -4.91198272e-01 2.23449785e-02 3.73590678e-01\\n1.12625800e-01 8.67099017e-02 1.77705556e-01 -6.49443045e-02\\n-1.02254115e-01 2.86103904e-01 -3.14258784e-01 1.36403978e-01\\n7.75529206e-01 9.81408805e-02 6.92448067e-03 3.12625974e-01\\n1.22414492e-01 4.13226575e-01 4.88337934e-01 3.52014933e-04\\n-1.44282743e-01 1.94699198e-01 1.14453651e-01 -5.26063681e-01\\n-8.14016014e-02 6.43597320e-02 -2.09092230e-01 -3.36164057e-01\\n6.69802368e-01 4.14263695e-01 -4.57418740e-01 -2.41373301e-01\\n-1.38956279e-01 -1.81377560e-01 1.06757239e-01 -6.73089921e-02\\n-1.37804328e-02 -1.14203028e-01 5.01829922e-01 -5.63766435e-03\\n1.72867507e-01 5.98401845e-01 -9.26457644e-02 -4.24071789e-01\\n-1.02994695e-01 2.27244094e-01 1.31103089e-02 4.98054624e-01\\n-1.60583213e-01 2.41314918e-01 2.11817026e-02 1.59914345e-01\\n-1.04281180e-01 1.72808826e-01 5.19606620e-02 1.77664697e-01\\n7.32279867e-02 1.83608159e-01 5.06464124e-01 4.42793936e-01\\n3.00168693e-01 4.43760365e-01 2.35433146e-01 2.29846947e-02\\n5.31396151e-01 4.08648819e-01 4.97671515e-01 1.52437434e-01\\n6.08255565e-02 2.06853241e-01 2.17744365e-01 7.78767839e-02\\n3.70430946e-01 2.86156893e-01 8.90241712e-02 8.81004512e-01\\n3.42060626e-01 2.25520417e-01 7.98166037e-01 -6.52752697e-01\\n-3.75869304e-01 3.90703119e-02 4.31025714e-01 -4.74906176e-01\\n-5.58187664e-02 5.70952892e-02 -1.24275073e-01 3.14276159e-01\\n-5.57963073e-01 -2.32347578e-01 -5.93300611e-02 2.17000827e-01\\n1.49198808e-02 -2.02581167e-01 -2.23299891e-01 3.47343013e-02\\n-1.26407027e-01 -1.38148353e-01 -4.44794595e-01 -1.67534888e-01\\n-2.28633046e-01 -6.33168966e-02 -8.13389570e-02 -2.03161627e-01\\n5.84210306e-02 -3.88770878e-01 -4.07264195e-02 -9.29877236e-02\\n2.98769116e-01 -4.53008562e-02 -6.50997739e-03 -9.11024120e-03\\n3.44113141e-01 2.25517541e-01 6.37861669e-01 1.69867147e-02\\n7.08297417e-02 -2.75487095e-01 -2.02902600e-01 1.60759270e-01\\n5.29393815e-02 1.78294584e-01 6.96251616e-02 2.16959298e-01\\n-3.35007817e-01 -1.98974237e-01 1.43792942e-01 3.77561033e-01\\n-4.76269126e-01 -2.31554881e-02 -9.83069241e-02 2.37876683e-01\\n3.16139683e-02 1.14257373e-01 -1.43238261e-01 -2.60084327e-02\\n-1.63131550e-01 -5.09828031e-01 3.25618684e-01 -4.60752398e-02\\n-9.06016901e-02 6.81380779e-02 3.07196707e-01 2.04111695e-01\\n-2.25322306e-01 5.73124625e-02 7.86416158e-02 7.46644512e-02\\n1.10234201e-01 3.60729367e-01 -8.97766650e-02 -3.19468617e-01\\n-2.96407491e-01 1.87342674e-01 -1.46991193e-01 -4.61427383e-02\\n-3.37555222e-02 3.37481409e-01 -5.64520098e-02 9.76285711e-02\\n3.58092904e-01 -4.46299836e-02 -2.66143739e-01 -2.66801000e-01\\n-1.53056338e-01 -2.55317211e-01 -4.51381430e-02 -3.47080268e-02\\n1.95612729e-01 -4.55677122e-01 -1.10574611e-01 -9.88458768e-02\\n-2.49608960e-02 -2.35832348e-01 -2.35158112e-02 -1.15717314e-01]]',\n", + " 'Join our team of web application developers and face the challenge of making IT security visible, understandable, and beautiful. As a Web Application Engineer, you will extend and improve the Mission Control Portal and thus help our customers to better manage and understand their global network security setups. Together with service engineers, UI designers, and product owners you discuss, shape, specify, and implement solutions that emphasise the value of strong IT security services, ease the operation of thousands of devices deployed across the planet, and provide intelligent insights into security-relevant data and processes. As part of the Mission Control team, you share operational duties with your colleagues. We expect you to bring the following skills to the table: ETH, university, or FH degree in Computer Science Experience in web application development on the client side (JavaScript, CSS3, HTML5, React) and the server side (Java, Spring) Familiarity with SQL and relational databases Basic knowledge of build and deployment environments (Atlassian Bamboo, Maven, Tomcat) Fluent in English and preferably German Furthermore, we expect basic knowledge and a high motivation to participate a coached training program in these areas: Knowledge of Linux operating systems Understanding networking in general and the major internet protocols Knowledge of network security concepts and practices You will join one of our small development teams that works with agile methods. The team will rely on you to focus on its goals and efforts as a team player while being able to work independently. At Open Systems we are passionate about what we do. We work in an environment in which innovative solutions, rapid development times, creativity and open communication are practiced and continuously fostered. The pursuit of technical advancement is at the center of our attention. You will be based at our office in Zurich (CH) and will get the opportunity to work out of our office in Redwood City (US) for a few months. We look forward to receiving your complete online application (letter of motivation, CV, diplomas/reference letters/transcript of records. Compress your application into two attachments). For further questions and inquiries about applications, please feel free to contact Helena Grimm at +41 58 100 10 10.',\n", + " '[\"Management\", \"Communications\", \"Operations\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Agility\", \"Computer Science\", \"Compression\", \"Internet Protocols\", \"Atlassian Bamboo\", \"European Training Programs\", \"Rapid Application Development\", \"Linux\", \"HTML5\", \"Server-Side\", \"React.js\", \"Operating Systems\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Network Security\", \"Small Business Development\", \"Receivables\", \"Relational Databases\", \"Centering\", \"Network Security Services\", \"Java (Programming Language)\", \"Inquiry\", \"SQL (Programming Language)\", \"Web Application Development\", \"Apache Tomcat\", \"Controllability\", \"Open Systems SnapVault\"]',\n", + " \"['English', 'Nauru', 'Portuguese', 'Persian']\"],\n", + " ['46',\n", + " 'data centre engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.20992708e-01 3.24868619e-01 4.44623590e-01 -2.06698015e-01\\n5.61702907e-01 1.67399067e-02 2.03571469e-01 3.12604904e-01\\n1.14555821e-01 -2.30956271e-01 -2.95724452e-01 -1.45734802e-01\\n5.05553670e-02 4.16085795e-02 1.42657623e-01 4.23656821e-01\\n2.54625171e-01 1.47843584e-02 -6.55927509e-02 3.09122294e-01\\n1.01366960e-01 -1.19018257e-01 8.50919113e-02 6.65079415e-01\\n3.42924058e-01 -2.08120011e-02 9.75979790e-02 1.13722198e-02\\n-1.84017792e-01 -3.39858294e-01 4.39586669e-01 -6.86746761e-02\\n-1.32881835e-01 -3.33626121e-01 2.41054073e-01 8.20413232e-02\\n-2.09021419e-01 -1.68739520e-02 -1.91325113e-01 3.92315648e-02\\n-4.56807166e-01 -1.14604466e-01 4.69977669e-02 -1.44372091e-01\\n-3.71216565e-01 -2.73618490e-01 2.98053086e-01 -1.46605492e-01\\n1.93083301e-01 1.60194710e-01 -5.39988935e-01 3.01620752e-01\\n-3.19422901e-01 -2.94975251e-01 5.10386229e-01 6.02502227e-01\\n-3.05275898e-04 -7.01068997e-01 -3.71223271e-01 -1.88572586e-01\\n2.71705817e-02 -9.85296667e-02 9.80837792e-02 -8.92247334e-02\\n3.16859275e-01 -1.32081792e-01 2.01097038e-03 5.28337955e-01\\n-6.43169582e-01 -6.33321702e-02 -4.45892006e-01 -5.80698922e-02\\n-2.13415369e-01 1.14282221e-01 -4.74503547e-01 -2.62505710e-01\\n-6.29425496e-02 2.97526747e-01 -7.97732025e-02 1.71661079e-01\\n-1.18019126e-01 2.56952465e-01 -3.35049480e-01 2.62095660e-01\\n2.78805941e-01 1.02468014e-01 1.92153186e-01 1.66629449e-01\\n-4.03576285e-01 7.38112450e-01 4.63144541e-01 -1.77040055e-01\\n2.04118043e-01 8.59789848e-02 2.22872660e-01 1.59763366e-01\\n1.27131179e-01 1.92020372e-01 5.99381141e-03 2.29666912e-04\\n2.64624745e-01 1.79403722e-02 -9.34911892e-02 -1.64213777e-01\\n-7.91446865e-02 -2.81473016e-03 6.64469451e-02 2.00658217e-01\\n-3.72400999e-01 2.67220229e-01 1.39930248e-01 -3.18461388e-01\\n-1.59120008e-01 -3.24656099e-01 -1.11221485e-01 -1.13852412e-01\\n-1.11029960e-01 1.44244403e-01 1.79076102e-02 2.01138005e-01\\n2.60806829e-01 1.03999078e-01 5.79782352e-02 8.42487335e-01\\n-3.85027528e-02 -6.95801079e-02 -2.16275722e-01 3.70730489e-01\\n-5.77730127e-03 -2.21464545e-01 1.08441778e-01 2.45696455e-01\\n-1.86597273e-01 -2.59543478e-01 -3.63568813e-01 3.21496487e-01\\n-1.18903227e-01 -1.72197476e-01 -2.46539921e-01 2.43533224e-01\\n-1.48266852e-01 -4.79707330e-01 4.82727468e-01 -5.92029579e-02\\n8.48442614e-02 -1.10106930e-01 -3.79019693e-05 3.55553813e-02\\n-6.20178739e-03 3.51581961e-01 1.33339778e-01 -3.18575427e-02\\n-1.07156508e-01 -2.32200533e-01 -2.80870885e-01 1.46157727e-01\\n3.24593335e-02 1.44052923e-01 -4.17244673e-01 -1.08726621e-01\\n3.85440767e-01 4.97285165e-02 -3.66288632e-01 3.56455773e-01\\n1.84417531e-01 -4.29348387e-02 -1.81535304e-01 1.49954826e-01\\n-1.16695359e-04 2.36736104e-01 -4.01337855e-02 -1.40929922e-01\\n6.24371946e-01 1.46069244e-01 2.31020704e-01 -7.24323019e-02\\n1.91886440e-01 -5.51386252e-02 1.29945368e-01 -1.40682291e-02\\n-6.11488104e-01 4.65296596e-01 -3.25219370e-02 -7.29846731e-02\\n1.36024877e-01 -5.82411792e-03 2.14516282e-01 -3.57889801e-01\\n-2.76079122e-02 -5.04417941e-02 -3.44033509e-01 -4.76003021e-01\\n-2.26885807e-02 -1.34410188e-01 1.86202839e-01 -4.56571281e-01\\n2.06874358e-03 1.26872778e-01 -4.57212448e-01 -5.69727421e-02\\n3.54857564e-01 1.66321099e-01 1.37243718e-01 2.25789651e-01\\n-8.55193064e-02 -3.49118888e-01 1.90711051e-01 -4.64240402e-01\\n-1.32682085e-01 7.75582716e-02 -2.49923304e-01 1.98378433e-02\\n-1.89537536e-02 3.98312919e-02 -1.02702670e-01 4.85904552e-02\\n-2.53891677e-01 -1.55262008e-01 3.92053202e-02 -8.82065743e-02\\n2.24479303e-01 2.34798998e-01 -2.63095379e-01 5.07711053e-01\\n-1.83350369e-01 3.81080300e-01 6.01966586e-03 -7.20307767e-01\\n4.24280107e-01 1.86561704e-01 1.23244980e-02 -2.94792384e-01\\n4.53267604e-01 -2.96398431e-01 1.17267378e-01 1.88871510e-02\\n-3.34912449e-01 -2.02146210e-02 2.43802950e-01 -1.83349505e-01\\n-2.80408859e-01 5.88341713e-01 1.80868283e-02 1.09298013e-01\\n1.90496162e-01 -3.36814933e-02 -1.97486252e-01 4.95056920e-02\\n-8.80986899e-02 -2.21439116e-02 -4.73396003e-01 -6.57928139e-02\\n-8.16168711e-02 -4.97412443e-01 -8.66268203e-02 -6.85619056e-01\\n-2.47249797e-01 -3.03445399e-01 -2.51491725e-01 1.43816218e-01\\n-3.78490351e-02 1.19386360e-01 -3.09882145e-02 6.85982779e-02\\n-1.36105865e-01 -6.85061991e-01 -8.01299326e-03 6.79907128e-02\\n1.99871972e-01 1.97040305e-01 1.58675492e-01 -1.33471563e-01\\n1.07989442e-02 4.95000303e-01 -2.80969262e-01 -1.73517212e-01\\n2.71584749e-01 2.02667147e-01 1.13012411e-01 -1.47868484e-01\\n1.32153437e-01 2.64528215e-01 -3.26294065e-01 3.05351596e-02\\n4.96717282e-02 7.51984939e-02 3.15145642e-01 -1.27876252e-01\\n-4.00357902e-01 -1.46592468e-01 -8.45369026e-02 1.19746655e-01\\n-5.31511903e-01 -2.43515335e-02 4.39352810e-01 2.38416597e-01\\n-3.59681658e-02 3.28629941e-01 2.08434686e-01 -3.68503183e-02\\n-2.25980595e-01 -7.79229030e-02 1.20354466e-01 1.89528957e-01\\n-5.91190830e-02 8.82301256e-02 -3.06917548e-01 -7.19935954e-01\\n-3.67594314e+00 -1.12381116e-01 1.75884247e-01 -2.27007076e-01\\n4.04413551e-01 -9.98565108e-02 3.79922926e-01 7.81878158e-02\\n-3.22409332e-01 -3.08159627e-02 -2.04330444e-01 -1.40322268e-01\\n3.32918972e-01 1.88908741e-01 8.24078396e-02 2.49415144e-01\\n2.64598001e-02 -3.97464931e-01 2.27922410e-01 3.73837560e-01\\n-3.19178700e-01 -7.36998320e-01 1.67706132e-01 -7.14538023e-02\\n1.21241175e-01 9.32772234e-02 -5.23654699e-01 -3.66293937e-02\\n-2.04351619e-01 -2.44992539e-01 2.23208100e-01 -2.21065760e-01\\n-8.99085402e-02 1.40657857e-01 1.37605861e-01 -1.14235766e-01\\n-2.94447187e-02 -2.44475365e-01 -4.49468382e-02 -7.68135726e-01\\n5.89522645e-02 -5.65950096e-01 -9.49528441e-02 -4.10118699e-02\\n6.01877391e-01 -1.01314165e-01 1.37759060e-01 -1.07751355e-01\\n9.30629522e-02 2.41365522e-01 1.12298779e-01 1.45285383e-01\\n-2.63603657e-01 -3.25437903e-01 -7.21056610e-02 -8.31322223e-02\\n5.68651319e-01 3.79927188e-01 -4.65950549e-01 2.72869971e-03\\n-1.22071005e-01 -2.76108623e-01 -5.45160472e-01 -1.80649400e-01\\n-2.34067068e-01 1.62110150e-01 -7.07921565e-01 -2.82714754e-01\\n-9.99909639e-02 -2.50131696e-01 -4.89306152e-02 4.86768872e-01\\n-2.37586051e-01 -3.45522076e-01 -1.42306477e-01 -6.06279552e-01\\n4.44346130e-01 -6.18551373e-02 1.56405732e-01 -3.47408980e-01\\n-2.07678065e-01 -2.95815915e-01 1.38386652e-01 3.34735252e-02\\n-9.58454311e-02 -6.84963763e-02 8.63185823e-02 -1.38075471e-01\\n-3.59072596e-01 -5.86493552e-01 2.79859543e-01 7.74228424e-02\\n2.08769441e-01 1.41370863e-01 2.12922454e-01 1.12980502e-02\\n2.99592584e-01 -2.45005097e-02 9.83945280e-02 -3.55856538e-01\\n-6.89715743e-02 -2.60696840e-02 5.05209148e-01 -2.39443317e-01\\n9.72434208e-02 1.46529987e-01 -2.74268687e-01 -1.18378751e-01\\n2.93351650e-01 -2.23989919e-01 3.12173188e-01 -2.98116624e-01\\n2.45002553e-01 -3.65975231e-01 -3.34370494e-01 -2.41183396e-02\\n4.43742462e-02 5.83759367e-01 1.00142039e-01 -2.95338154e-01\\n-1.73483342e-01 2.94335037e-01 -3.46422642e-02 9.91996229e-02\\n-4.30163980e-01 -2.82405578e-02 -3.47431034e-01 2.63600320e-01\\n1.26142189e-01 -1.38548240e-01 -2.37378985e-01 -6.22682087e-02\\n-1.13407321e-01 2.97553122e-01 2.44797215e-01 7.06003979e-02\\n-6.73439279e-02 -2.24718019e-01 -9.53003168e-02 2.75603205e-01\\n1.09810531e-01 3.39868993e-01 1.16863534e-01 -2.59342134e-01\\n3.95490937e-02 1.41051844e-01 -3.06910217e-01 1.62998080e-01\\n-1.18638128e-01 1.47596076e-01 -5.45356512e-01 -1.84702083e-01\\n-2.16028884e-01 -3.72006148e-01 1.30186722e-01 4.52358186e-01\\n-2.24302597e-02 -2.03651801e-01 8.53662267e-02 -3.70809227e-01\\n2.26514742e-01 7.99310878e-02 1.08852006e-01 1.68566033e-01\\n4.81652543e-02 6.31120920e-01 -1.09053209e-01 -1.35200918e-01\\n-1.40370622e-01 -1.58051122e-03 -3.95264864e-01 -1.91366836e-01\\n-6.29185094e-03 -4.56136644e-01 4.50522732e-03 5.95702171e-01\\n1.59040406e-01 2.83155963e-02 1.36070162e-01 3.85688692e-01\\n-1.37359928e-02 -4.20102216e-02 -2.66277254e-01 1.16483152e-01\\n2.23654643e-01 2.09650751e-02 2.55407035e-01 -4.15736258e-01\\n1.46293670e-01 -5.34290411e-02 1.29845470e-01 3.60866219e-01\\n-3.01853996e-02 1.87387303e-01 -7.20390603e-02 -1.31535783e-01\\n4.51385915e-01 -6.54133782e-02 -9.06833410e-02 1.34642109e-01\\n2.11314842e-01 -1.32941514e-01 -3.39931607e-01 9.25652310e-02\\n-1.53027371e-01 -1.79714546e-01 8.66961256e-02 3.25545147e-02\\n3.54019180e-03 3.45192570e-03 -4.45268750e-01 -1.44551948e-01\\n-3.26949328e-01 2.60383725e-01 -2.02441350e-01 -6.96382046e-01\\n-1.40338577e-02 6.71015978e-02 -4.92353946e-01 2.64773130e-01\\n-7.66382292e-02 9.06192958e-02 1.66481182e-01 1.44609421e-01\\n-1.99086547e-01 -1.94678605e-01 2.52672762e-01 5.97272478e-02\\n-2.38344982e-01 -1.10085398e-01 -8.84047225e-02 -9.74414825e-01\\n1.87760174e-01 1.19790137e-02 -7.76776448e-02 1.13395445e-01\\n-8.81322324e-02 -7.38363206e-01 2.93696880e-01 -1.29906714e-01\\n-8.54780301e-02 1.35368869e-01 -1.21535540e-01 -3.92318517e-01\\n7.13851079e-02 2.84709353e-02 -1.45143434e-01 2.94810981e-01\\n-3.21252733e-01 3.73886317e-01 3.44846733e-02 4.07734737e-02\\n7.91742001e-03 -2.35158399e-01 7.68799782e-02 -4.66818631e-01\\n-3.90069902e-01 -1.75546423e-01 -1.66483521e-01 -2.53097773e-01\\n2.10644584e-02 -4.21779752e-01 -2.75838263e-02 9.88264009e-02\\n3.88392955e-01 3.93786915e-02 -5.44545762e-02 -8.17874521e-02\\n-1.09014504e-01 -3.92766893e-01 1.28825694e-01 -2.17944682e-01\\n1.51625395e-01 -1.85886785e-01 3.07374597e-01 -4.13127653e-02\\n3.25106204e-01 -2.95887083e-01 5.36980033e-01 -3.19379807e-01\\n-3.22525620e-01 -1.43264204e-01 1.33226901e-01 8.97722393e-02\\n3.82051915e-01 -4.85767931e-01 -1.67253297e-02 2.61806399e-01\\n-4.99421731e-02 -4.21272367e-02 3.75573844e-01 -3.38228345e-01\\n-2.53730595e-01 6.84244260e-02 -4.78008956e-01 2.60893375e-01\\n4.90229666e-01 1.69238955e-01 2.80877143e-01 1.80539608e-01\\n-6.63809255e-02 1.68181852e-01 3.38057458e-01 -1.28881663e-01\\n-1.59039959e-01 4.24895495e-01 3.80028002e-02 -6.40325665e-01\\n-1.43105865e-01 -2.63907880e-01 -1.21160537e-01 -2.52472550e-01\\n6.79355919e-01 2.05923975e-01 -3.15716326e-01 -3.91189665e-01\\n-1.93810731e-01 -2.80402511e-01 8.83146524e-02 3.37027349e-02\\n7.49644125e-03 -9.00202468e-02 5.41021109e-01 6.35374635e-02\\n3.18035275e-01 5.48332870e-01 -1.07328892e-01 -1.89855635e-01\\n1.58851850e-03 3.20116341e-01 -1.67953491e-01 3.51078421e-01\\n6.85634390e-02 2.92062312e-01 -4.61906455e-02 1.35271624e-01\\n-3.67310345e-02 -1.13375902e-01 1.00393958e-01 1.25861317e-01\\n-1.19673312e-01 2.56306708e-01 4.81333435e-01 4.64992344e-01\\n2.14798316e-01 3.36963028e-01 3.28334361e-01 7.83311427e-02\\n5.74850202e-01 6.67642534e-01 3.58128965e-01 5.36153167e-02\\n1.82366893e-01 1.31619200e-02 1.66190714e-02 1.53566594e-03\\n2.41993040e-01 4.50434387e-01 -1.27912806e-02 6.59261405e-01\\n1.94247454e-01 1.72496736e-01 5.75656235e-01 -5.13949454e-01\\n-4.03470457e-01 -2.03149110e-01 4.86505866e-01 -4.74104732e-01\\n1.93211913e-01 1.59332588e-01 -7.50615727e-03 3.39663118e-01\\n-5.07510424e-01 -2.07057089e-01 8.10246542e-02 -1.29740685e-01\\n1.40014097e-01 -1.88831493e-01 -3.58851328e-02 -7.21131917e-04\\n-1.56315446e-01 -1.56389311e-01 -2.94426352e-01 -2.51997322e-01\\n-3.41350526e-01 6.94555119e-02 -1.11559771e-01 -5.82171008e-02\\n-9.69594643e-02 -1.34011596e-01 -1.30870834e-01 7.83628523e-02\\n2.54105866e-01 -1.52538747e-01 -1.65034801e-01 -7.04521164e-02\\n2.46929064e-01 2.89245751e-02 6.04466021e-01 1.05081405e-02\\n6.89821839e-02 -4.67571244e-03 -1.24993986e-02 1.37999713e-01\\n3.58548254e-01 2.61919379e-01 4.46083099e-02 5.13837337e-01\\n-3.38287830e-01 -1.75180569e-01 1.31053075e-01 3.67902517e-01\\n-4.11561877e-01 -1.78137776e-02 5.27100787e-02 1.73103094e-01\\n-5.69220185e-02 -1.85620897e-02 -1.54638961e-01 -7.36809708e-03\\n-1.03106506e-01 -4.16724861e-01 4.85487074e-01 -1.93980247e-01\\n-3.74499291e-01 -2.29139552e-01 4.05710548e-01 4.65710521e-01\\n-7.01933727e-02 1.25290185e-01 -1.69794530e-01 8.58192295e-02\\n5.86466826e-02 9.83409062e-02 -2.16114819e-01 -9.97687280e-02\\n-3.41423601e-01 3.04073513e-01 -9.08160135e-02 2.61446118e-01\\n1.22249559e-01 2.20867783e-01 1.15949877e-01 4.79177199e-02\\n3.41100335e-01 -3.07290733e-01 -2.09567770e-01 -2.60127783e-01\\n-3.00317675e-01 -8.11325237e-02 1.12716630e-01 -1.97108611e-01\\n2.32551321e-01 -3.97126079e-01 -1.08622387e-01 -3.00310940e-01\\n-1.48808002e-01 -2.20378175e-01 -1.74243838e-01 -4.26888745e-03]]',\n", + " 'ExcelRedstone designs, installs, supports and enhances IT infrastructure, networks and connectivity for enterprise‐level clients across the UK and EMEA. Our services, processes and tools are built around a unique business vision which emphasizes the life cycle role of IT infrastructure – an understanding that far from being static installations, infrastructures should continually evolve to drive improved business performance. This role will be working as part of the Data Centre Operations team to deliver support activities and input to project related tasks within the Data Centre and ensure that all work carried out complies with agreed standards, providing an operational interface to physical security teams assisting in the proactive management of the site’s security. The DC Engineer will provide an interface to the customer, advising them of any operational issues with the infrastructure and acting as a point of contact to address the customer requirements including being first line of support for incident and recovery duties, contribution to BAU activity to rack, install and decommission devices. Candidates will be fluent in German and English and have worked in a similar role previously. Required Skills / Experience Ideally the candidate will have worked previously in a Data Centre support role.Network patching experience (copper and fibre) install and break/ fixKnowledge of copper termination and previous infrastructure installationsChange management processesUnderstanding of criticality of support in a financial sectorDemonstration of good listening, oral and written communication required.An ability to assimilate technical details required for project delivery in ashort time frame and in pressurised environmentAbility to manage prioritise workload effectivelyTroubleshooting, ability to diagnose potential issues impacting programme and offer resolutionFluent in German and English Job Types: Full-time, Permanent Language: English (Required)German (Required) ',\n", + " '[\"Proactivity\", \"Infrastructure\", \"Management\", \"Operations\", \"Written Communication\"]',\n", + " '[\"Business Performance Management\", \"Logistics Support Activity\", \"Tooling\", \"IT Infrastructure\", \"Installation\", \"Advising\", \"Activism\", \"Acting\", \"Idealization\", \"Physical Security\", \"Life Cycle Assessment\", \"Customer Requirements Analysis\"]',\n", + " \"['English']\"],\n", + " ['67',\n", + " 'embedded software engineer (f/m)',\n", + " 'Murten',\n", + " 'Transportation Equipment Manufacturing',\n", + " 'www.johnsonelectric.com',\n", + " '[[-1.90961227e-01 3.02307189e-01 4.06296194e-01 -6.68723360e-02\\n4.88062948e-01 -1.29931673e-01 -4.14050967e-02 3.19163173e-01\\n5.06887361e-02 -5.01810074e-01 -5.40789478e-02 -2.32725516e-01\\n1.52008995e-01 9.47872847e-02 -1.44654801e-02 4.64887470e-01\\n3.06536227e-01 7.90329278e-02 -2.37781256e-01 3.75159115e-01\\n1.28430068e-01 -1.95426092e-01 2.60935843e-01 7.96691060e-01\\n4.09811765e-01 3.69257741e-02 -1.33819748e-02 6.25348166e-02\\n-1.96191207e-01 -2.81508774e-01 3.56964290e-01 1.05894692e-01\\n-1.54242992e-01 -2.78583974e-01 1.84651494e-01 2.07740683e-02\\n-2.71013290e-01 -5.09570874e-02 -2.01163471e-01 2.01297656e-01\\n-6.33528709e-01 -2.58226812e-01 2.06505116e-02 -3.19281407e-02\\n-2.73408294e-01 -3.00876021e-01 -1.69060230e-02 -2.01997429e-01\\n9.24721211e-02 7.68422708e-02 -3.13318193e-01 2.19183460e-01\\n-2.63194889e-01 -1.70613483e-01 2.94630200e-01 6.67803884e-01\\n-1.28769547e-01 -5.34841895e-01 -4.43442971e-01 -2.94140399e-01\\n1.63455829e-01 -3.71833257e-02 1.18426131e-02 -2.92370588e-01\\n4.52990294e-01 -3.66114266e-02 7.53341662e-03 2.19206810e-01\\n-8.21298599e-01 -7.63227195e-02 -3.67438138e-01 -8.96739587e-02\\n-2.99994916e-01 -8.34167525e-02 -3.10748190e-01 -1.61089182e-01\\n-4.88335416e-02 3.95247132e-01 4.08749580e-02 -1.18972361e-02\\n-8.16851035e-02 3.83712023e-01 -1.80956230e-01 3.45944285e-01\\n2.35296115e-01 3.42606008e-01 2.74330467e-01 3.03499579e-01\\n-2.87793934e-01 4.57659751e-01 2.60716438e-01 -3.08894247e-01\\n1.98636845e-01 7.88634345e-02 3.91215831e-01 -4.55623753e-02\\n1.26073867e-01 1.26045197e-01 -3.35921317e-01 3.53835404e-01\\n2.70837873e-01 -6.15093485e-02 -3.31014721e-03 -4.21051867e-02\\n1.37585536e-01 -8.48665163e-02 6.33127093e-02 3.56306612e-01\\n-3.31892699e-01 3.91179264e-01 2.63673931e-01 -2.85293102e-01\\n-8.55711251e-02 -6.02208793e-01 -2.15132996e-01 6.82008639e-02\\n2.67298315e-02 1.87833920e-01 2.28500769e-01 3.34765434e-01\\n3.00334454e-01 -4.41493914e-02 8.94269943e-02 1.00325501e+00\\n-1.19501531e-01 5.70470095e-02 -2.78094500e-01 4.02903706e-01\\n9.10818651e-02 -2.95024753e-01 1.74732834e-01 2.53634483e-01\\n1.39259668e-02 -1.08649328e-01 -1.08147129e-01 3.52419317e-01\\n-1.92297921e-02 -3.38435560e-01 -3.50372970e-01 2.14809105e-01\\n-1.58135861e-01 -3.91921818e-01 5.88610590e-01 -1.18997917e-02\\n2.69849133e-02 -1.01880446e-01 -2.24626809e-01 -5.42246096e-04\\n-2.04154015e-01 2.12246552e-01 1.43845409e-01 -2.62424089e-02\\n-4.15885061e-01 -1.79745212e-01 -2.31407091e-01 6.70922622e-02\\n-2.83756554e-01 1.28806412e-01 -2.46003240e-01 -1.72832966e-01\\n1.55988216e-01 3.80212218e-02 -3.55752885e-01 2.98487544e-01\\n-8.58948007e-02 -2.83149052e-02 1.28702377e-03 3.02462131e-01\\n-1.31129295e-01 3.01771551e-01 5.48027568e-02 -1.76191498e-02\\n6.41328990e-01 -1.15869399e-02 1.31903514e-01 -1.37810588e-01\\n3.45479190e-01 -5.87887950e-02 2.15551853e-01 1.33881286e-01\\n-6.20806158e-01 3.39302331e-01 -1.09885372e-01 1.85314156e-02\\n2.03718662e-01 -1.53167620e-01 3.84192824e-01 -3.64298165e-01\\n-1.98374420e-01 -2.12214187e-01 -2.24477455e-01 -4.42830324e-01\\n-2.53251910e-01 4.61305939e-02 3.43341410e-01 -3.54131043e-01\\n-6.73775421e-03 1.87810525e-01 -5.82899392e-01 -1.35150664e-02\\n2.35326573e-01 2.20955357e-01 1.16064236e-01 2.11745575e-01\\n-1.48247808e-01 -5.69111586e-01 1.67473361e-01 -2.89710581e-01\\n-2.21925914e-01 1.17000945e-01 -1.61162421e-01 2.72040129e-01\\n1.79881409e-01 8.19963366e-02 -1.47823676e-01 1.08851567e-01\\n-3.29741895e-01 -3.16118188e-02 2.76651978e-01 4.94638346e-02\\n2.92307973e-01 1.18307628e-01 -5.31688392e-01 4.19731110e-01\\n-1.67666778e-01 4.47059631e-01 5.73504418e-02 -9.90849435e-01\\n4.04648364e-01 2.83849239e-01 -2.16182438e-03 -4.22434747e-01\\n7.09060967e-01 -3.27431858e-01 -1.68985292e-01 1.06949665e-01\\n-4.05145288e-01 -2.54421651e-01 2.10873261e-01 -1.43575847e-01\\n-2.39792570e-01 5.69451869e-01 6.68326318e-02 1.64712772e-01\\n2.59188920e-01 -2.38842353e-01 -1.74573623e-02 7.02574477e-02\\n3.52103002e-02 -1.90982878e-01 -5.50388634e-01 -9.94304195e-02\\n-3.48700285e-02 -4.86443043e-01 -1.02534711e-01 -4.57274705e-01\\n-1.56547815e-01 -4.10417229e-01 -1.80362556e-02 1.54516622e-01\\n1.95782095e-01 1.73657909e-01 8.53160247e-02 4.81725037e-02\\n-1.99788556e-01 -6.86403453e-01 -8.92486945e-02 2.06969708e-01\\n2.05858499e-01 3.09894234e-01 1.60955414e-01 6.58785645e-03\\n-3.00352164e-02 5.17717361e-01 -2.97698617e-01 -1.52897105e-01\\n1.13592818e-01 1.12453759e-01 5.90052865e-02 -8.20500478e-02\\n1.58035621e-01 3.55347037e-01 -2.05423236e-01 5.67413457e-02\\n-1.56783119e-01 -4.24470007e-03 4.50307131e-01 1.04468479e-03\\n-3.87276053e-01 -3.07423621e-01 -7.09327906e-02 4.36846353e-02\\n-5.94122887e-01 -2.25793973e-01 5.12896717e-01 1.55379862e-01\\n1.20787606e-01 1.20838888e-01 3.79047185e-01 -1.41142786e-01\\n-3.04342419e-01 -1.30401745e-01 1.62844017e-01 8.35645348e-02\\n1.24977566e-01 -2.95533873e-02 -9.95531753e-02 -6.08309329e-01\\n-3.42164803e+00 -1.59348831e-01 2.37612650e-01 -2.09447786e-01\\n3.28545958e-01 -9.76503827e-03 6.65286556e-02 -6.28592595e-02\\n-3.86806071e-01 2.27885079e-02 -2.15409189e-01 -1.65612604e-02\\n1.68207899e-01 2.35099450e-01 2.10695177e-01 1.71636850e-01\\n1.51839748e-01 -2.63511240e-01 4.03143466e-03 3.78517419e-01\\n-2.57659610e-02 -7.59262204e-01 9.42614377e-02 -1.24125242e-01\\n3.42434913e-01 1.16450809e-01 -3.99002671e-01 2.62139887e-02\\n-2.83235401e-01 -1.86734691e-01 9.79823321e-02 -2.18627438e-01\\n-1.68703437e-01 2.86526263e-01 1.72217950e-01 -1.16626844e-01\\n1.00174248e-01 -3.73759627e-01 6.06209934e-02 -3.67037833e-01\\n1.27874777e-01 -6.81309760e-01 9.33917984e-02 -4.66748141e-02\\n6.24529004e-01 -3.26715976e-01 3.89778949e-02 3.69287133e-02\\n1.68674052e-01 2.48131499e-01 1.75386235e-01 1.59588233e-02\\n-1.49192542e-01 -2.19258815e-01 -4.26518880e-02 -1.24521285e-01\\n6.30764842e-01 5.45068860e-01 -1.84482157e-01 -9.75330546e-02\\n-6.74187317e-02 -3.88315856e-01 -6.22515798e-01 -1.56291902e-01\\n-1.69715911e-01 -7.63557404e-02 -6.72043502e-01 -3.70692372e-01\\n-1.66675881e-01 -1.11971706e-01 -1.35520682e-01 5.88076711e-01\\n-4.18146312e-01 -4.71162647e-01 -1.07628554e-01 -3.82494330e-01\\n1.91178694e-01 -3.41911793e-01 2.43808217e-02 -2.10020810e-01\\n-2.65313745e-01 -3.75480026e-01 1.43732712e-01 6.82497621e-02\\n-1.77731320e-01 -1.49461716e-01 1.19898699e-01 -1.94391668e-01\\n-3.07562917e-01 -5.42673767e-01 4.33353812e-01 1.07406914e-01\\n3.35447550e-01 4.32080636e-03 3.07040602e-01 -6.07128814e-02\\n3.49363923e-01 -8.49714428e-02 5.16585223e-02 -5.76069295e-01\\n-2.93318555e-02 -3.22695524e-02 6.48505330e-01 -2.43734702e-01\\n-1.34985112e-02 6.00437708e-02 -2.62069643e-01 -8.96679983e-02\\n4.04733807e-01 9.90126729e-02 1.87540725e-01 -3.58507097e-01\\n2.95328498e-01 -2.96999961e-01 -1.93946227e-01 5.94263598e-02\\n5.39513268e-02 5.98849654e-01 -8.78003314e-02 -4.68858868e-01\\n-1.49342954e-01 4.20889109e-01 -1.59162387e-01 -1.16223775e-01\\n-1.64921984e-01 1.44190490e-01 -2.87395805e-01 3.65324438e-01\\n-1.08885750e-01 -1.49022415e-01 -1.99717373e-01 -7.63671473e-04\\n-1.17215037e-01 3.77919734e-01 1.71796083e-01 9.51740295e-02\\n-4.58433572e-03 -3.42906475e-01 -1.14646606e-01 1.23526469e-01\\n1.73959553e-01 2.64234215e-01 2.15025336e-01 -4.32682246e-01\\n-8.72264244e-03 4.15207565e-01 -1.36777759e-01 1.54917151e-01\\n-2.23749399e-01 3.14459391e-02 -4.41772610e-01 -2.64232218e-01\\n-1.90720707e-01 -3.33520979e-01 7.98260346e-02 4.23902422e-01\\n9.11834687e-02 -3.27152088e-02 -9.04949941e-03 -5.41913033e-01\\n3.10642183e-01 1.42023608e-01 2.78775483e-01 1.45418167e-01\\n3.34162302e-02 6.45285845e-01 7.39174150e-03 -3.25092226e-01\\n-5.40213473e-02 1.55000493e-01 -1.01626165e-01 -2.12483421e-01\\n-2.55088042e-02 -5.59653401e-01 2.94854473e-02 4.46366310e-01\\n1.71795979e-01 -1.87258691e-01 -3.82122099e-01 1.27854094e-01\\n-3.04618981e-02 -2.04606995e-01 -1.74277395e-01 1.42395288e-01\\n2.15008423e-01 3.73210870e-02 2.69615322e-01 -4.53278601e-01\\n-4.18206342e-02 -1.44135460e-01 -4.56157178e-02 4.45241779e-01\\n1.92036495e-01 3.44651826e-02 -3.12050700e-01 -7.98562765e-02\\n2.99255908e-01 -1.06192911e-02 -1.13262229e-01 -1.12120643e-01\\n1.03895485e-01 -2.80288875e-01 -3.87056023e-01 6.21768124e-02\\n-2.91324407e-02 -1.17950439e-01 6.96579590e-02 9.34569538e-02\\n4.36056890e-02 9.54388380e-02 -5.51489651e-01 -2.59554267e-01\\n-2.78128892e-01 5.16062230e-02 -6.27600551e-02 -4.45799440e-01\\n-4.67644073e-02 8.99130851e-03 -5.13172925e-01 2.87693441e-01\\n-2.29372635e-01 -1.45666301e-02 1.87255681e-01 1.29888440e-02\\n-2.92936772e-01 -1.19329624e-01 6.14315607e-02 1.69655114e-01\\n-1.07955754e-01 -1.70851037e-01 -1.31654248e-01 -9.74999130e-01\\n1.56597078e-01 -1.90023661e-01 -1.23213537e-01 1.45622462e-01\\n-5.13601005e-02 -7.89138794e-01 1.91649765e-01 -3.66759926e-01\\n-1.82065085e-01 1.71815488e-03 -1.28186539e-01 -3.58267158e-01\\n3.09510808e-02 -7.64002204e-02 -2.30123848e-01 3.76886398e-01\\n-4.63092655e-01 5.42625785e-01 -1.90823600e-01 1.12717994e-01\\n-8.17193612e-02 -3.47868770e-01 1.70538291e-01 -3.04519117e-01\\n-4.25830215e-01 -1.21715717e-01 -3.04358810e-01 -1.90317124e-01\\n-1.06279731e-01 -3.51909220e-01 -3.34407479e-01 1.74891457e-01\\n2.95697331e-01 1.47530055e-02 -1.24394938e-01 -9.40550566e-02\\n5.29901348e-02 -3.72485608e-01 2.40198836e-01 -7.80478567e-02\\n3.48928161e-02 -1.52525470e-01 2.51150697e-01 2.68437583e-02\\n1.97039559e-01 -3.82035553e-01 5.61174572e-01 -1.63269252e-01\\n-3.80820274e-01 5.74959181e-02 1.95256993e-01 -2.02821232e-02\\n4.78485495e-01 -2.71912426e-01 -1.61266610e-01 2.90761799e-01\\n-2.99461354e-02 1.09233208e-01 2.96043605e-01 -2.53664434e-01\\n-1.21812135e-01 1.70203999e-01 -3.79089504e-01 5.82455508e-02\\n8.18088174e-01 1.49009988e-01 1.73639283e-01 1.38621166e-01\\n9.29844528e-02 2.86619782e-01 4.24452871e-01 -4.75698709e-02\\n-2.02167585e-01 3.10579121e-01 2.84658354e-02 -4.72701341e-01\\n-1.86543375e-01 -7.81176910e-02 -2.61987865e-01 -3.54118705e-01\\n5.82344770e-01 4.21401590e-01 -3.07702839e-01 -2.71254212e-01\\n-6.74889386e-02 -1.62138194e-01 1.60207674e-01 -3.79749872e-02\\n7.68913701e-02 -1.63890094e-01 3.70791316e-01 -5.70078641e-02\\n1.92452475e-01 5.76155305e-01 -2.82243818e-01 -3.75777543e-01\\n-4.34767269e-02 1.67873681e-01 9.23861936e-03 4.95763153e-01\\n-1.63225174e-01 2.86952823e-01 -4.99295741e-02 1.65538952e-01\\n-1.47288010e-01 -1.45947441e-01 1.26144692e-01 1.45024151e-01\\n5.50253652e-02 1.43822283e-01 5.22895098e-01 4.72827971e-01\\n3.90066117e-01 3.89683098e-01 3.33759993e-01 8.71365890e-02\\n5.08806169e-01 6.05666995e-01 2.45628655e-01 1.24336377e-01\\n9.05039459e-02 1.48086652e-01 1.04395993e-01 2.93233572e-03\\n4.74929154e-01 3.37684929e-01 2.31286228e-01 8.82641494e-01\\n2.14082241e-01 3.66024256e-01 8.41270983e-01 -6.49269402e-01\\n-3.39045256e-01 8.40719864e-02 4.70025718e-01 -4.41316783e-01\\n-1.10108405e-01 1.69689044e-01 -7.74159804e-02 1.18369266e-01\\n-4.63924885e-01 -3.00568640e-01 9.45036707e-04 2.15589598e-01\\n1.42992111e-02 -9.68270749e-02 -1.86442494e-01 7.35823140e-02\\n-6.24639466e-02 2.48518623e-02 -4.62100059e-01 -1.69027060e-01\\n-2.83651501e-01 7.52720088e-02 -1.30631015e-01 -1.94579050e-01\\n-3.99970561e-02 -3.18209797e-01 -1.55084416e-01 -2.36814432e-02\\n2.86080420e-01 -2.25669056e-01 -9.79495645e-02 -1.55903876e-01\\n3.09728861e-01 1.38523817e-01 5.54855347e-01 1.93544719e-02\\n6.78714439e-02 -1.98798731e-01 -2.00509354e-01 1.14902307e-03\\n1.25346690e-01 8.13408196e-02 7.02833608e-02 5.02133489e-01\\n-2.77203798e-01 -6.74877465e-02 1.01895735e-03 3.69287848e-01\\n-3.65283489e-01 -9.06420872e-02 -7.71393403e-02 3.95764597e-02\\n-2.04867925e-02 9.67245027e-02 -9.46887210e-02 4.64987569e-02\\n-1.40200675e-01 -4.64148402e-01 2.76971728e-01 -2.81985719e-02\\n-3.05969298e-01 4.82992604e-02 2.54118174e-01 1.42038688e-01\\n-2.62640387e-01 5.34208678e-02 -1.49399206e-01 3.24243546e-01\\n1.17101133e-01 3.89229476e-01 -1.66494593e-01 -2.32480124e-01\\n-2.46149063e-01 9.56749171e-02 -1.32022321e-01 1.38036415e-01\\n1.51663497e-01 3.55728894e-01 1.49867237e-02 1.31649878e-02\\n5.63907921e-01 -8.97426996e-03 -3.30935061e-01 -2.66526461e-01\\n-1.28716171e-01 -2.53580004e-01 -2.91833244e-02 -1.19114995e-01\\n2.46723816e-01 -3.37659180e-01 -8.13891888e-02 -2.52082705e-01\\n-8.35034326e-02 -3.64514858e-01 -7.18393698e-02 -5.51709644e-02]]',\n", + " 'Johnson Electric Group is the definite leader in micro motors, motion subsystems and actuators for automotive and industrial applications. Our motion solutions adjust car seats and headlamps, run vacuum cleaners and power drills as well as 300 other applications worldwide. We are the safe choice for our clients. Due to the expansion of our plant in Murten, Switzerland, and to support our Automotive Products Group team we are looking for an Embedded Software Developer (f/m). Your Responsibilities Analyzing the customer’s requirements and elaborating software specifications for embedded electronic of new actuators products Collaboration for SW FMEAs with different development teams Design and develop the embedded software functionalities Create functional requirement and software validation test plan Perform or monitor the software validation tests Reviewing and releasing the software validation test reports Requirements Engineering Degree in software, electronics, or mechatronics engineering At least a first experience in software engineering Strong knowledge of electronics and C programming for embedded systems Knowledge of Assembler coding is a plus Autonomous and systematic work, able to work under pressure High level in English and German is mandatory, French knowledge is an asset Motivated and team player Benefits An exciting and very dynamic work environment within a young, motivated team Great appreciation of entrepreneurial and out-of-the-box thinking A truly international and multicultural work context If you are interested in this challenging position we are looking forward to receiving your CV in English.',\n", + " '[\"Collaboration\", \"Team Motivation\", \"Positivity\"]',\n", + " '[\"Programming (Music)\", \"Software Validation\", \"Industrialization\", \"Mechatronics\", \"Functional Requirement\", \"M (Programming Language)\", \"Electricity\", \"Actuators\", \"Embedding\", \"Mill Test Report\", \"Hostile Work Environment\", \"Software Engineering\", \"Electronics\", \"Embedded Systems\", \"Requirements Engineering\", \"Drilling\", \"Sage SAFE X3\", \"High-Level Architecture\", \"Receivables\", \"Test Planning\", \"Software Requirements Specification\", \"Embedded Software\", \"Subsystems\"]',\n", + " \"['English', 'Urdu', 'Aragonese', 'Zulu']\"],\n", + " ['75',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.51853904e-01 2.82749176e-01 4.16773558e-01 2.93572042e-02\\n4.61985588e-01 -1.64056927e-01 -3.86512727e-02 3.04083169e-01\\n7.93065801e-02 -5.39510012e-01 3.76780592e-02 -2.52851725e-01\\n-6.72062784e-02 1.02888979e-01 1.32925250e-02 4.28548813e-01\\n3.36443126e-01 1.31367236e-01 -1.97596133e-01 4.02601957e-01\\n7.17061460e-02 -5.96080050e-02 1.26930624e-01 6.98441982e-01\\n3.49849343e-01 -1.09164491e-01 -1.87495220e-02 -3.01221311e-02\\n-1.32925004e-01 -2.71054983e-01 4.65912700e-01 8.99737477e-02\\n-1.22823849e-01 -4.68331605e-01 9.94839817e-02 4.85083908e-02\\n-1.95725054e-01 7.95359015e-02 -6.79348335e-02 1.13579780e-01\\n-6.03635311e-01 -2.64114439e-01 -2.75513697e-02 3.42427082e-02\\n-1.83309406e-01 -2.57113636e-01 1.18164904e-01 -9.80994999e-02\\n1.56996340e-01 2.33045314e-02 -4.71748829e-01 2.52788663e-01\\n-3.41844261e-01 -2.26983979e-01 3.41973901e-01 5.28108180e-01\\n-2.03851182e-02 -4.94283795e-01 -6.58994079e-01 -3.39779377e-01\\n3.00914571e-02 -1.72587752e-01 -2.90854573e-02 -3.07613969e-01\\n2.55332947e-01 -7.03514814e-02 1.19554270e-02 2.49553502e-01\\n-6.81886852e-01 1.81134902e-02 -2.47238889e-01 -1.09319299e-01\\n-3.65392059e-01 -2.38672912e-01 -2.33202964e-01 4.81628478e-02\\n-1.39655590e-01 4.10703480e-01 7.09529892e-02 3.14599462e-02\\n-1.58952117e-01 2.87235975e-01 -3.45203400e-01 3.96860719e-01\\n1.45613164e-01 1.34366691e-01 3.43703419e-01 3.05019617e-01\\n-4.57446992e-01 4.62661028e-01 2.08779007e-01 -4.03823584e-01\\n3.74662608e-01 1.53921038e-01 4.63089406e-01 1.90360881e-02\\n1.37246877e-01 1.47153229e-01 -2.55212933e-01 3.48711252e-01\\n2.79457510e-01 -2.66440183e-01 -3.56807820e-02 -2.13237703e-01\\n8.43477026e-02 -4.87976409e-02 1.49752349e-01 1.47534534e-01\\n-2.37148762e-01 4.15283293e-01 1.49318814e-01 -2.76279449e-01\\n-1.14670306e-01 -3.66054744e-01 -1.42359540e-01 6.95504621e-03\\n4.27637026e-02 1.81085706e-01 1.46180481e-01 1.21656843e-01\\n1.92323208e-01 1.50476381e-01 5.65629527e-02 7.86176801e-01\\n-1.19430579e-01 4.15503681e-02 -3.39550972e-01 2.68115640e-01\\n2.24812061e-01 -3.47362399e-01 2.23471761e-01 1.77440405e-01\\n-9.45480838e-02 -9.25485864e-02 -1.77205503e-01 3.76194477e-01\\n-6.40595425e-03 -1.59389690e-01 -2.66261041e-01 1.31095633e-01\\n6.03977703e-02 -3.25128168e-01 6.37466908e-01 1.78865463e-01\\n2.02598646e-01 3.76355946e-02 -1.92543566e-02 -2.10498214e-01\\n-1.18873179e-01 2.58673608e-01 -5.41237220e-02 1.31135568e-01\\n-2.30271280e-01 -1.43977970e-01 -1.87533647e-01 1.40528113e-01\\n-4.13394272e-01 1.40609473e-01 -2.17305258e-01 -1.29088402e-01\\n2.50678897e-01 1.08649395e-02 -2.74858832e-01 2.09452033e-01\\n-2.48852186e-03 2.19559297e-02 1.27206072e-02 3.51277232e-01\\n-1.60248041e-01 2.08561122e-01 7.06601068e-02 -5.37634864e-02\\n6.80675566e-01 1.12800136e-01 2.85742939e-01 5.92212602e-02\\n3.17470670e-01 -3.89739424e-02 9.55083072e-02 1.93305999e-01\\n-5.91625452e-01 3.98992181e-01 -8.85723680e-02 -1.47099257e-01\\n8.77693295e-02 -6.11826777e-03 2.62965977e-01 -2.56337464e-01\\n-2.87390910e-02 -1.23226069e-01 -3.32620353e-01 -3.06448996e-01\\n-2.28533715e-01 6.26224279e-02 4.07534271e-01 -4.95527178e-01\\n-9.39548165e-02 2.63277024e-01 -5.93906999e-01 -1.09094560e-01\\n1.52626276e-01 1.63263544e-01 1.39021665e-01 9.13143009e-02\\n-2.17890710e-01 -5.61075449e-01 1.02988407e-01 -4.43747342e-01\\n-3.40748221e-01 7.05156103e-02 -2.66900718e-01 2.72048056e-01\\n9.65817496e-02 -4.27995175e-02 -1.15397945e-01 1.44985765e-01\\n-2.77967155e-01 -9.48584974e-02 7.74344653e-02 1.53259793e-02\\n2.19162792e-01 7.28397295e-02 -3.82569253e-01 5.26934683e-01\\n-1.99122563e-01 6.58057332e-01 1.02083795e-01 -9.35929954e-01\\n4.71788108e-01 2.85227984e-01 1.46428235e-02 -3.50296199e-01\\n4.36701715e-01 -3.71808946e-01 -1.97303481e-02 8.42674375e-02\\n-3.22009802e-01 -2.84546852e-01 3.08001131e-01 -1.28479317e-01\\n-2.97352612e-01 5.45129240e-01 3.60197425e-02 -1.75679475e-02\\n2.27491602e-01 -2.35922039e-01 -1.20448001e-01 1.12001151e-02\\n-1.02237865e-01 -2.86956280e-01 -6.16333723e-01 -2.34142523e-02\\n-1.26600355e-01 -4.25326765e-01 -5.03216311e-02 -4.43184674e-01\\n-1.89085156e-01 -4.41163301e-01 -3.11557263e-01 1.62245423e-01\\n2.92577803e-01 2.07104266e-01 -1.46590129e-01 -1.31869689e-02\\n-8.68371949e-02 -8.00820231e-01 -5.97576872e-02 1.93396747e-01\\n4.50607121e-01 9.83140916e-02 1.69954926e-01 3.75439338e-02\\n4.73290756e-02 4.87658352e-01 -3.38964254e-01 -2.08802015e-01\\n1.67273805e-01 2.14505658e-01 3.11082006e-02 -1.59085870e-01\\n1.07689418e-01 4.36079979e-01 -2.90260524e-01 4.89904061e-02\\n7.88347349e-02 -6.43597245e-02 4.33847904e-01 -7.09353238e-02\\n-4.39166069e-01 -1.02428116e-01 -6.27335906e-02 7.00320154e-02\\n-6.32573187e-01 -2.41143867e-01 6.37951851e-01 2.38822937e-01\\n2.70893633e-01 2.08718419e-01 1.27282187e-01 -7.46941715e-02\\n-2.19982117e-01 -2.73872823e-01 3.48563731e-01 1.70646384e-01\\n8.57338384e-02 1.13342285e-01 -1.11812964e-01 -7.05805600e-01\\n-3.47820950e+00 -1.98804468e-01 1.86101571e-01 -1.11582398e-01\\n2.07219243e-01 -1.67883456e-01 1.54417932e-01 -9.51950923e-02\\n-2.63436764e-01 7.86402896e-02 -8.82522017e-02 -1.56386971e-01\\n1.29203692e-01 2.21233070e-01 7.22615197e-02 2.81732500e-01\\n1.92154139e-01 -1.15012646e-01 3.88471782e-03 3.01531971e-01\\n-1.63786590e-01 -6.07062161e-01 2.28397340e-01 -4.34342287e-02\\n2.36585960e-01 2.35726267e-01 -2.93797433e-01 2.18861904e-02\\n-2.35802248e-01 -1.65861815e-01 6.01463094e-02 -1.59181595e-01\\n-1.75091028e-01 1.15330614e-01 1.80915445e-01 -1.35884568e-01\\n6.47971332e-02 -4.60945129e-01 -2.55378455e-01 -3.84763241e-01\\n1.50852859e-01 -5.44501424e-01 3.62265036e-02 -2.03480899e-01\\n6.20627642e-01 -2.44352341e-01 1.73251599e-01 1.21275097e-01\\n1.85098350e-01 1.86248749e-01 1.08163804e-01 4.91858274e-03\\n-2.07442254e-01 -2.21972346e-01 -8.30474794e-02 -1.63111478e-01\\n6.49472713e-01 4.59177822e-01 -1.68107107e-01 -7.88643211e-02\\n-5.11258617e-02 -1.93040326e-01 -4.75074351e-01 -1.87300295e-01\\n-1.23400807e-01 -1.61706984e-01 -4.80531424e-01 -2.54409164e-01\\n-2.68609405e-01 -2.12280691e-01 -1.75548166e-01 7.46642470e-01\\n-3.15946281e-01 -3.43264818e-01 -2.64203623e-02 -4.69152868e-01\\n2.91048855e-01 -2.02012002e-01 -1.95010900e-02 -1.45873651e-01\\n-2.85877943e-01 -4.90522504e-01 3.31342369e-02 5.30523323e-02\\n-1.91990241e-01 -3.06639075e-01 4.34964634e-02 -1.07063971e-01\\n-3.32143009e-01 -3.71124208e-01 4.23328847e-01 1.06154263e-01\\n3.23020756e-01 5.12854680e-02 3.20737720e-01 -5.13671003e-02\\n3.40294063e-01 -1.39954939e-01 -5.14114238e-02 -3.59601706e-01\\n1.36046737e-01 1.06604636e-01 5.39340258e-01 -2.67644823e-01\\n2.10414175e-03 1.62866861e-01 -2.34360531e-01 4.12796736e-02\\n4.24708366e-01 6.10347791e-03 1.58068668e-02 -2.20694304e-01\\n2.79727042e-01 -2.80479670e-01 -2.35966176e-01 1.40757188e-02\\n1.64054513e-01 6.55801415e-01 5.17257042e-02 -4.33965981e-01\\n-1.55180499e-01 5.34448862e-01 -1.12564310e-01 -6.39998727e-03\\n-2.83796251e-01 1.23083383e-01 -2.85772353e-01 1.94969624e-01\\n4.18657437e-02 -4.00091037e-02 -2.14087680e-01 -1.30600810e-01\\n-1.80930585e-01 3.51618588e-01 2.08511949e-01 6.70916066e-02\\n-2.90839653e-02 -3.77563089e-01 -1.54000878e-01 1.35323510e-01\\n1.28875762e-01 3.88641298e-01 1.20460086e-01 -2.31440678e-01\\n-3.21971402e-02 3.17797720e-01 -1.69993967e-01 6.80173859e-02\\n-3.13875556e-01 1.01377822e-01 -5.08502126e-01 -2.37176642e-01\\n-3.34009707e-01 -4.23464894e-01 1.64158046e-01 3.31282526e-01\\n8.72296244e-02 -1.08099701e-02 9.64024812e-02 -4.45768178e-01\\n1.99508876e-01 2.55556464e-01 1.76125169e-01 1.21935293e-01\\n-2.82205939e-02 5.96325278e-01 -2.51528695e-02 -2.42678106e-01\\n-1.10375725e-01 9.41763818e-02 -1.71227440e-01 -1.69492632e-01\\n-3.54252979e-02 -6.48621738e-01 -6.88366890e-02 4.18788552e-01\\n1.51158184e-01 -2.29055062e-01 -2.99994528e-01 2.12338388e-01\\n-5.54261357e-02 -1.88762218e-01 -2.21785814e-01 -1.14051253e-01\\n2.90634662e-01 -8.83075595e-03 3.81739259e-01 -4.30408925e-01\\n-3.01491208e-02 -1.98911764e-02 -1.80951282e-02 5.29432833e-01\\n4.24237028e-02 1.50009066e-01 -1.63405329e-01 -1.04461499e-01\\n4.19922024e-01 -1.01674199e-01 -1.42313182e-01 -1.15013808e-01\\n1.16384551e-01 -1.79293454e-01 -4.57757533e-01 1.61236525e-01\\n-4.98219877e-02 -2.45055735e-01 3.93563136e-02 1.76847845e-01\\n2.85705961e-02 1.77210003e-01 -5.85977316e-01 -3.09019148e-01\\n-2.79632926e-01 -3.51214632e-02 7.65097812e-02 -5.79005301e-01\\n4.16257530e-02 -4.88283336e-02 -5.90527296e-01 1.86759427e-01\\n-2.41516873e-01 -1.70146629e-01 2.03042567e-01 3.89888361e-02\\n-3.29492033e-01 -2.05313504e-01 6.17665052e-02 3.06556255e-01\\n-2.32574672e-01 -2.53132552e-01 7.75419921e-02 -9.53371048e-01\\n1.90906137e-01 9.54288989e-02 -3.10334504e-01 1.78670138e-01\\n-1.54627293e-01 -7.24138200e-01 5.72766177e-02 -3.69606495e-01\\n-1.57847837e-01 1.24574397e-02 -3.04176122e-01 -2.91801900e-01\\n8.70109200e-02 -1.80510432e-02 -3.47374022e-01 4.76854503e-01\\n-3.81352574e-01 4.07257617e-01 -1.39100701e-01 1.22036703e-01\\n5.23300096e-02 -2.71408319e-01 1.53761342e-01 -4.14499789e-01\\n-4.62930620e-01 -1.76415086e-01 -3.55790794e-01 -3.06223154e-01\\n4.54216748e-02 -3.96089464e-01 -1.18459299e-01 7.09598362e-02\\n3.45514774e-01 5.11222295e-02 -9.18194279e-02 -3.07408273e-01\\n-2.15026755e-02 -5.41955769e-01 5.09090312e-02 -2.22967304e-02\\n-5.56794330e-02 -1.05716646e-01 1.37782574e-01 1.12985663e-01\\n2.24092156e-01 -4.28340226e-01 4.43639159e-01 -3.94559532e-01\\n-2.36073971e-01 -1.03887759e-01 -9.96064916e-02 9.55996439e-02\\n2.60862917e-01 -5.47879398e-01 4.66898456e-02 3.85847032e-01\\n1.14773825e-01 -1.03335576e-02 2.00606525e-01 -7.54589140e-02\\n-6.91991001e-02 2.85299271e-01 -2.43440971e-01 1.57291532e-01\\n7.01832533e-01 -8.62964988e-03 1.70788750e-01 9.19229239e-02\\n1.80470973e-01 3.37499559e-01 5.04740238e-01 3.37938741e-02\\n-9.16615278e-02 3.13391626e-01 8.15640315e-02 -5.18981457e-01\\n1.40697360e-02 2.34034657e-02 -1.41112447e-01 -3.74412686e-01\\n6.78396463e-01 4.63988185e-01 -4.67490405e-01 -1.87658161e-01\\n-9.43224505e-02 -1.59375042e-01 2.07372278e-01 -5.82366809e-02\\n-1.21044144e-02 -4.69182059e-02 4.59965110e-01 -6.78498223e-02\\n1.65564567e-01 5.44494271e-01 -1.98038101e-01 -3.94890189e-01\\n-7.32723475e-02 2.60408700e-01 4.62674089e-02 5.24833083e-01\\n-1.87571526e-01 2.18293309e-01 -3.65190767e-03 1.18815124e-01\\n-1.07714504e-01 2.22571850e-01 1.22649245e-01 1.28631055e-01\\n1.48808897e-01 -7.09441677e-02 5.00275671e-01 5.21736264e-01\\n3.58005792e-01 4.50061262e-01 3.55701447e-01 1.89312734e-03\\n5.11802077e-01 6.18422627e-01 3.30358744e-01 1.22138329e-01\\n-4.25996780e-02 1.35074049e-01 1.37377530e-01 -2.76041031e-02\\n4.08031106e-01 5.30717850e-01 1.04869425e-01 8.21499586e-01\\n2.98053443e-01 1.92062169e-01 5.83427191e-01 -6.63905323e-01\\n-3.54664743e-01 1.17606297e-01 4.45459783e-01 -1.90459266e-01\\n1.41929463e-02 2.91706026e-01 -2.39539593e-01 1.92499757e-01\\n-3.73172820e-01 -2.47488365e-01 -5.65836132e-02 2.05047339e-01\\n9.76944268e-02 -2.59885907e-01 -1.94552302e-01 9.29138660e-02\\n-3.61183807e-02 -1.44448793e-02 -4.27614927e-01 -1.32073089e-01\\n-3.66007745e-01 -2.13572476e-02 -1.14219055e-01 -1.36226982e-01\\n1.95898861e-02 -3.82142305e-01 -1.13940388e-01 -7.96011910e-02\\n2.92670757e-01 -1.72758386e-01 -1.28923818e-01 -1.11797474e-01\\n3.07410151e-01 2.39470631e-01 4.92071360e-01 -2.89756805e-03\\n5.05052954e-02 -1.70172215e-01 -2.19500169e-01 1.73954219e-01\\n1.12113662e-01 1.07143834e-01 8.71473271e-03 3.22462559e-01\\n-3.07428360e-01 -1.37744784e-01 2.02674583e-01 2.94773638e-01\\n-3.92947644e-01 -1.08347815e-02 -1.99325487e-01 1.55441180e-01\\n1.31805673e-01 2.28853881e-01 -2.43831605e-01 2.57339720e-02\\n-1.27353847e-01 -3.76329541e-01 3.27784985e-01 -1.11792967e-01\\n-7.83414543e-02 -3.46867517e-02 3.19838881e-01 2.63436258e-01\\n-2.88480997e-01 -5.63640660e-03 -1.20494254e-01 1.73016220e-01\\n2.41902042e-02 3.28594387e-01 -1.62945122e-01 -2.30758190e-01\\n-2.84206599e-01 1.57079533e-01 -7.97383934e-02 1.14925869e-01\\n4.31870557e-02 2.88607180e-01 1.11380100e-01 5.29839620e-02\\n3.60932678e-01 -4.99029458e-03 -1.86879590e-01 -1.58306420e-01\\n-3.00347924e-01 -1.00606903e-01 -1.57361060e-01 -1.21937484e-01\\n1.93071052e-01 -3.57706726e-01 -4.54201810e-02 -5.11227697e-02\\n-1.45837128e-01 -2.51471519e-01 5.99597022e-03 -5.31127527e-02]]',\n", + " 'Although you will be exposed to all the different components, your focus will be one of the applications. You will be working on new features, help define the architecture and make sure our solutions stay maintainable (refactor when necessary). You will mainly be responsible for one of the following components: Desktop Application with NFC (Electron) Mobile Application (React Native with Bluetooth Low Energy) Frontend Applications (VueJS) Backend (Go) Other technologies and tools we are currently using are Python, Solidity and Docker as well as Git with Bitbucket, CI/CD for automated testing and deployment, JIRA, Slack, Confluence and Postgres. As a team we work in sprints, prioritize and define how to implement features together, do code reviews and always try to assist each other. What you will be doing: Developing new features during development sprints, making sure your code is properly tested and documented Reviewing pull requests from your colleagues and discuss how issues can be solved better Helping to define the system architecture Refactoring code to ensure it is maintainable What you bring along: Experience in designing, working on and maintaining software systems The right mindset – you like to take on responsibility, you can work independently, you care about code quality Teamwork skills Very good English skills (German not required) Computer Science background is appreciated, but we value personality and a track record over education Eligibility to work in Switzerland What we can offer: Being part of an ambitious, talented team that delivers unique solutions using the latest IoT and blockchain technologies Interesting, challenging, and diverse roles with lots of autonomy Personal development opportunities which are based on your personal contribution having measurable impact on the organization and its products An open, transparent, and inclusive team culture A fun work environment About Modum Modum is an innovative startup, combining new technologies such as Blockchain, IoT and AI to provide new solutions for our customers. Our current solutions are targeted at customers in the pharmaceutical sector - helping them to improve their supply chain efficiency, gain better insights and automate their processes. We leverage trusted data from our next generation digital monitoring solution to solve real-world challenges. Modum not only collaborates with global technology partners such as SAP and AWS, but also joins up with business partners such as Swiss Post to ensure that their solutions are fit-for-purpose. We are looking for team players and passionate personalities who bring innovative ideas and enthusiasm to everything they do. If this sounds like you, we would love to meet you! Application Process You can apply for the job by sending a short cover letter, your CV, and ideally your Github Repo to careers@modum.io. After collecting the applications and reviewing them, we will decide whether your application meets our criteria. If that is the case, we will invite you for a first interview. This interview focuses on getting to know you, your experiences, strengths, and ambitions. The goal of the first interview is to choose a shortlist of three applicants to go forward with. These three applicants will be invited for a second interview. The second interview consists of two parts: (1) A technical interview and technical challenge. We have several options for the technical challenge and are happy to discuss which suits you best beforehand. (2) You will have a chat with a few members of the team. We value a team fit; we want to make sure that both you and the existing team are happy with the decision and can work productively together. After the assessment of the second interview and your positive feedback, we will make some reference calls. As soon as the decision is made and you have received the job offer, we conclude the process by signing the contract.',\n", + " '[\"Teamwork\", \"Decisiveness\", \"Collaboration\", \"Enthusiasm\", \"Innovation\", \"Prioritization\", \"Positivity\"]',\n", + " '[\"Bitbucket\", \"Automation\", \"Tooling\", \"Code Refactoring\", \"Blockchain\", \"Computer Science\", \"Collections\", \"Automated Testing Framework\", \"Supply Chain\", \"Mobile Application Software\", \"Business Partnering\", \"Software Systems\", \"Python (Programming Language)\", \"React Native\", \"Maintainability\", \"Track (Rail Transport)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Solidity (Programming Language)\", \"Systems Architecture\", \"Idealization\", \"Hostile Work Environment\", \"Slack (Software)\", \"Bluetooth Low Energy (Bluetooth)\", \"Github\", \"Docker (Software)\", \"TARGET 3001!\", \"Electronics\", \"Personalization\", \"Digitization\", \"Code Review\", \"Receivables\", \"Atlassian Confluence\", \"Pharmaceuticals\", \"Git Flow\", \"Personality Development\", \"JIRA Studio\", \"Custom Backend\"]',\n", + " \"['English', 'Esperanto', 'Ido', 'Chinese', 'Amharic']\"],\n", + " ['49',\n", + " 'software engineer (full time\\xa0and internship)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " '[\"Writing\", \"Planning\"]',\n", + " '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " \"['English', 'Kashmiri']\"],\n", + " ['57',\n", + " 'c++ software engineer',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-7.09732175e-02 3.38157743e-01 5.69412589e-01 -1.66195735e-01\\n5.03363073e-01 -3.01427662e-01 1.75213546e-01 3.70859325e-01\\n-7.83256441e-02 -2.46664673e-01 -1.57646611e-01 -3.03183287e-01\\n5.62876789e-03 6.62099272e-02 -1.26478886e-02 2.39175588e-01\\n2.50667125e-01 9.02712196e-02 -3.55700850e-02 3.15962911e-01\\n1.22244105e-01 -1.80169284e-01 1.82521701e-01 6.08436346e-01\\n3.84395033e-01 6.48807585e-02 -4.17304300e-02 1.77186325e-01\\n-3.71910334e-01 -2.49414697e-01 3.38445097e-01 2.71361154e-02\\n-8.20943937e-02 -1.06550813e-01 1.03579707e-01 6.96264580e-02\\n-1.18168078e-01 5.61679527e-03 -1.20069152e-02 1.18433446e-01\\n-3.17988724e-01 -3.88510115e-02 5.55690117e-02 -9.49423462e-02\\n-1.89457342e-01 -4.34882104e-01 1.72983810e-01 -1.38408793e-02\\n1.68975905e-01 6.74046203e-03 -4.02051002e-01 3.97270113e-01\\n-2.45884851e-01 -2.40084037e-01 3.55823487e-01 5.55253744e-01\\n-1.60953432e-01 -5.12569249e-01 -3.80875677e-01 -2.17948869e-01\\n1.98999316e-01 -9.93535966e-02 9.84688699e-02 -2.70786226e-01\\n5.47612369e-01 5.13842106e-02 2.04742793e-02 2.96460122e-01\\n-8.32457960e-01 -6.41157180e-02 -2.64387578e-01 4.21878649e-03\\n-2.92655379e-01 -5.93298115e-02 -2.26857066e-01 -1.03503957e-01\\n-1.53323099e-01 3.48409712e-01 9.06687155e-02 1.47340611e-01\\n-1.17587805e-01 2.76582122e-01 -2.03875452e-01 1.52000129e-01\\n2.29381874e-01 2.89730817e-01 1.74379289e-01 2.97200233e-01\\n-3.86489332e-01 3.74304682e-01 2.04054132e-01 -2.86650628e-01\\n8.01755190e-02 1.59272060e-01 3.63705546e-01 3.62684764e-02\\n1.35509774e-01 1.62389085e-01 -1.91654444e-01 2.69931436e-01\\n2.91916728e-01 -1.95666388e-01 -2.79131491e-04 1.15946010e-01\\n-6.21787496e-02 4.24235053e-02 -2.81650256e-02 3.63688976e-01\\n-3.50429386e-01 6.15135491e-01 -8.23408086e-03 -2.69078583e-01\\n-1.10000521e-02 -6.10791564e-01 -2.57652164e-01 1.81237012e-01\\n1.68635137e-02 8.24483931e-02 2.41279125e-01 3.59629720e-01\\n1.31993130e-01 3.76155339e-02 2.16329694e-01 8.49668324e-01\\n-4.24351916e-02 1.02236137e-01 -2.08468974e-01 4.51132923e-01\\n-6.54511270e-04 -2.06175283e-01 2.21451551e-01 3.37433994e-01\\n2.84688443e-01 -1.47826029e-02 -1.95302218e-01 1.19077034e-01\\n-1.22642443e-02 -2.92544752e-01 -2.10873067e-01 1.03170395e-01\\n-1.50674015e-01 -4.92700398e-01 5.54714978e-01 -9.41199884e-02\\n-1.85997840e-02 -9.93294567e-02 -3.23144048e-02 -3.67662609e-02\\n-7.06116036e-02 2.08919823e-01 1.88044980e-01 1.35086685e-01\\n-2.38285482e-01 -1.98921636e-01 -3.70591074e-01 1.89104423e-01\\n-2.05857292e-01 4.07275781e-02 -1.79840714e-01 -7.07738549e-02\\n3.57758939e-01 -3.48363095e-03 -4.11192566e-01 3.67366552e-01\\n-2.44364031e-02 1.39620313e-02 -1.48562700e-01 3.50601792e-01\\n-1.29940212e-01 1.25663340e-01 -2.14649156e-01 -1.86845005e-01\\n4.12022114e-01 8.69969428e-02 5.65652438e-02 -6.44673035e-02\\n3.80801290e-01 -4.09280919e-02 1.80816814e-01 -1.24844490e-02\\n-7.45515108e-01 4.91572618e-01 -1.15802675e-01 -7.06677660e-02\\n1.08605832e-01 -1.65224038e-02 2.51469672e-01 -3.91017497e-01\\n9.02142376e-02 -1.65424317e-01 -3.62334460e-01 -2.98761606e-01\\n-2.03108400e-01 -4.95236889e-02 4.47920799e-01 -4.45831507e-01\\n-2.30550587e-01 2.09227860e-01 -6.53831244e-01 7.55610913e-02\\n2.74835080e-01 2.23071665e-01 2.28680134e-01 1.34381756e-01\\n-7.68228248e-02 -5.47663271e-01 2.06542522e-01 -3.24063897e-01\\n-1.38182104e-01 3.85766596e-01 -3.39159906e-01 2.95603424e-01\\n8.84369984e-02 -1.77301839e-03 -8.09287429e-02 6.14159815e-02\\n-3.95154990e-02 -1.03483334e-01 2.27816775e-01 1.10397317e-01\\n3.47076684e-01 9.98462737e-02 -4.96411592e-01 5.59874773e-01\\n-2.92814523e-01 3.10681790e-01 6.37387484e-02 -7.51089990e-01\\n3.77447665e-01 3.30954015e-01 1.48659632e-01 -2.68160224e-01\\n7.73407102e-01 -3.19565326e-01 -5.28329983e-02 1.62895218e-01\\n-4.35260147e-01 -3.16700190e-01 1.40023641e-02 -1.69399902e-01\\n-2.32417539e-01 3.85704309e-01 8.64230171e-02 7.80881196e-02\\n3.25217932e-01 -6.22150935e-02 -1.10546313e-01 6.94768131e-02\\n-7.31311291e-02 -2.37902910e-01 -3.68451387e-01 -4.65906002e-02\\n-1.04452353e-02 -5.61057985e-01 -8.47964436e-02 -4.78921413e-01\\n-2.91347444e-01 -3.36811662e-01 -1.63233683e-01 2.08118275e-01\\n1.94671497e-01 1.60794109e-01 4.09917049e-02 -1.99716892e-02\\n-2.99335033e-01 -5.02462029e-01 5.36090061e-02 1.47498637e-01\\n2.51281708e-01 2.03980505e-01 4.22054157e-02 -6.95541874e-02\\n-6.60434067e-02 6.70274615e-01 -2.01055214e-01 -1.46940142e-01\\n-3.76460585e-03 1.62617207e-01 -4.55939323e-02 -7.42059276e-02\\n8.02355334e-02 2.47612044e-01 -1.86861351e-01 1.07859202e-01\\n-1.51607305e-01 2.22057011e-02 2.65803277e-01 -1.85140014e-01\\n-1.95391744e-01 -3.99082899e-01 -1.21437453e-01 8.59106779e-02\\n-6.43157065e-01 -2.97966361e-01 6.43164992e-01 9.01006982e-02\\n1.11956343e-01 2.03367203e-01 3.05121541e-01 -3.84375378e-02\\n-2.15665936e-01 -1.40986040e-01 5.65686598e-02 7.34791979e-02\\n1.06320716e-03 1.12211332e-01 -1.91073298e-01 -5.65127194e-01\\n-3.71490908e+00 -8.42284262e-02 3.70650887e-02 -3.41618747e-01\\n1.89383447e-01 -1.36765510e-01 1.53231695e-01 -1.85825318e-01\\n-2.17697725e-01 7.02979863e-02 -1.67726010e-01 -1.65855244e-01\\n1.74625814e-01 2.86527663e-01 1.79781869e-01 1.85875028e-01\\n2.22490519e-01 -2.46982947e-01 -4.66495939e-02 3.31590384e-01\\n-1.15748435e-01 -4.95856494e-01 2.88909614e-01 -7.28984922e-02\\n4.24282700e-01 4.18521553e-01 -3.12752664e-01 -5.99385239e-02\\n-2.49968469e-01 -2.81520873e-01 6.94794059e-02 -2.31135741e-01\\n1.19230803e-02 3.52023125e-01 1.39246732e-01 -4.35293391e-02\\n1.85426310e-01 -3.30008149e-01 8.10573399e-02 -3.59109998e-01\\n8.89052749e-02 -5.66833138e-01 -1.10328689e-01 -8.17902759e-02\\n6.76092446e-01 -4.41449136e-01 9.53580216e-02 8.16766545e-02\\n1.28804808e-02 3.82314146e-01 1.38155669e-01 -1.44956544e-01\\n-1.81648791e-01 -1.90827489e-01 -3.94645296e-02 -9.17511433e-02\\n5.16309738e-01 6.05411947e-01 -2.64468849e-01 -5.75742535e-02\\n-6.35006800e-02 -3.82591248e-01 -5.13542354e-01 -3.85958135e-01\\n-2.01755837e-01 -1.05279930e-01 -6.57614768e-01 -6.02290034e-01\\n-7.30608180e-02 -3.60642150e-02 -1.81667730e-02 4.59784389e-01\\n-2.84387082e-01 -4.14291739e-01 -1.17366768e-01 -3.45769942e-01\\n-8.66269879e-03 -4.25401740e-02 -7.11327000e-03 -1.30978882e-01\\n-1.10964261e-01 -4.23698992e-01 -1.32555626e-02 -2.22957544e-02\\n-2.16932334e-02 -8.34294483e-02 2.82292873e-01 -9.88085717e-02\\n-3.63528252e-01 -5.51898062e-01 5.16849279e-01 2.43814923e-02\\n3.27961206e-01 7.38934502e-02 5.52722402e-02 8.97952691e-02\\n3.44458044e-01 -3.06690454e-01 8.63191113e-02 -4.41379368e-01\\n9.22682658e-02 1.23509362e-01 5.38387597e-01 -2.19003737e-01\\n1.44410893e-01 -1.31086307e-02 -2.57420123e-01 -1.88688517e-01\\n2.28189155e-01 4.51567098e-02 1.86264053e-01 -3.82516861e-01\\n3.97721410e-01 -3.40743482e-01 -3.19274157e-01 1.51237592e-01\\n8.30971003e-02 5.65653384e-01 -3.65719683e-02 -3.27480555e-01\\n-1.33727506e-01 4.18871701e-01 -2.91787297e-01 -1.89820930e-01\\n-1.54060274e-01 -1.67308711e-02 -2.89922059e-01 3.41024309e-01\\n-1.20500699e-02 -8.93324707e-03 -3.39832634e-01 -9.88469124e-02\\n6.77746236e-02 2.18071595e-01 2.98717409e-01 2.13551402e-01\\n-2.23585665e-02 -4.36499923e-01 9.98084843e-02 1.80773795e-01\\n1.92730665e-01 2.30230361e-01 7.05830976e-02 -1.44523337e-01\\n-4.30233106e-02 3.16218615e-01 -1.17838033e-01 2.04056710e-01\\n-1.72807783e-01 1.41375944e-01 -4.87084597e-01 -3.64977390e-01\\n-2.29792058e-01 -1.37779534e-01 -1.31740883e-01 2.84139544e-01\\n1.40844509e-01 -5.29127382e-02 3.74440588e-02 -4.78909284e-01\\n2.11673126e-01 -6.79193735e-02 3.23600322e-01 2.21084431e-01\\n-8.38968977e-02 5.27400732e-01 4.51515839e-02 -1.15839139e-01\\n-1.96130008e-01 1.81869894e-01 -2.19637066e-01 -1.18917756e-01\\n7.40906075e-02 -3.22605789e-01 -2.56365426e-02 4.08869773e-01\\n1.03238657e-01 -2.81337887e-01 -9.18627307e-02 2.92944759e-01\\n-7.87511393e-02 -5.23124874e-01 -1.78239658e-01 -4.16323282e-02\\n3.46514553e-01 1.01569079e-01 2.71194100e-01 -4.98889446e-01\\n3.29435657e-04 4.00821343e-02 -6.01410232e-02 4.23935533e-01\\n1.52143193e-02 -8.19570720e-02 4.36017588e-02 -2.85225391e-01\\n3.95784289e-01 -7.84137473e-02 2.33857762e-02 2.72822864e-02\\n1.33893818e-01 -1.34013355e-01 -2.81955779e-01 4.54632705e-03\\n-1.36969006e-03 -6.69524223e-02 1.40469614e-02 -1.55775184e-02\\n-1.54695045e-02 9.59223509e-02 -4.72673148e-01 -1.70854628e-01\\n-3.29380959e-01 -2.37619206e-01 -2.06086099e-01 -4.70689088e-01\\n1.32880814e-03 -5.07101975e-02 -4.81077284e-01 3.09559613e-01\\n-1.04970127e-01 8.56461823e-02 1.52704924e-01 -5.55119254e-02\\n-4.64345187e-01 -1.58011109e-01 2.20341131e-01 1.61148056e-01\\n-3.33467990e-01 -1.80342451e-01 -7.53946155e-02 -9.73104000e-01\\n2.55647570e-01 -1.76802590e-01 1.43152243e-02 1.01100408e-01\\n-1.07987173e-01 -4.87050533e-01 2.94101387e-01 -4.53905493e-01\\n-1.76830173e-01 -4.62156944e-02 -2.43273064e-01 -3.61822665e-01\\n2.55707316e-02 2.81040929e-02 -2.31793165e-01 3.33654135e-01\\n-3.31133038e-01 4.19694275e-01 -7.02680945e-02 1.01192951e-01\\n-9.34967697e-02 -1.91763535e-01 6.47913069e-02 -4.65523809e-01\\n-4.65492547e-01 -1.79427601e-02 -1.04338728e-01 3.64179648e-02\\n-9.73015055e-02 -1.43000424e-01 -2.23199911e-02 9.03019980e-02\\n3.29453260e-01 2.16860220e-01 -1.52818426e-01 4.73499931e-02\\n6.92804828e-02 -3.86087060e-01 -1.01768628e-01 -2.50294715e-01\\n9.01508797e-03 -2.09345028e-01 1.06488302e-01 7.17158616e-02\\n2.57702414e-02 -4.66236770e-01 3.72988701e-01 -2.41428897e-01\\n-3.00150990e-01 6.76343814e-02 8.15012455e-02 6.88380823e-02\\n3.70218098e-01 -3.64151716e-01 -1.71970084e-01 3.50667655e-01\\n5.27498312e-02 2.08043214e-02 2.73895055e-01 3.49866673e-02\\n-2.25619689e-01 2.82614082e-01 -4.14498985e-01 7.77151734e-02\\n7.99381614e-01 3.12690258e-01 1.79461390e-01 2.67340004e-01\\n8.50582197e-02 3.29132617e-01 4.06211823e-01 4.98595983e-02\\n-6.35239705e-02 4.33402687e-01 1.27888069e-01 -6.13511682e-01\\n6.95755184e-02 2.79817760e-01 -3.59201193e-01 -2.77816981e-01\\n5.89124799e-01 3.99615794e-01 -2.04645693e-01 -3.04400325e-01\\n-2.52480447e-01 -2.65843332e-01 1.06313065e-01 -1.46142602e-01\\n2.62532324e-01 -2.14799628e-01 5.59733987e-01 -3.08635482e-03\\n8.70050490e-02 4.81774390e-01 -2.22878933e-01 -2.72486746e-01\\n-4.03114930e-02 3.86128649e-02 1.53961763e-01 3.61401439e-01\\n-1.40472785e-01 1.61651582e-01 -8.83950591e-02 1.60398126e-01\\n-1.74581990e-01 9.80342552e-03 1.63590133e-01 5.96705563e-02\\n9.16998014e-02 1.76575184e-01 3.07024986e-01 4.31010813e-01\\n4.12927806e-01 4.01224524e-01 1.34665340e-01 -8.18257313e-03\\n6.43377066e-01 5.76688707e-01 2.90159345e-01 1.59929588e-01\\n-5.65333664e-02 1.82124169e-03 4.37087119e-02 3.07936175e-03\\n2.46759862e-01 3.45551163e-01 4.00373936e-02 8.87750149e-01\\n3.62184703e-01 2.75219530e-01 5.99269688e-01 -4.55938309e-01\\n-2.73753881e-01 -1.62916202e-02 3.13863486e-01 -4.16886896e-01\\n-1.18451662e-01 -4.44373228e-02 -2.54985332e-01 8.45305622e-02\\n-4.69929993e-01 -2.57368475e-01 -7.17122108e-02 -4.40081917e-02\\n1.86646119e-01 -9.26435553e-03 -2.85091251e-01 -1.98288456e-01\\n-1.71021074e-01 -1.04361407e-01 -5.03087103e-01 -3.33930813e-02\\n-1.99138790e-01 -2.23607376e-01 -1.81014612e-01 -2.80942142e-01\\n4.30873968e-02 -3.05964738e-01 -1.35344893e-01 -1.29025811e-02\\n2.20392257e-01 -2.44382381e-01 -1.16202690e-01 -1.34131104e-01\\n1.82139680e-01 1.85270220e-01 5.85613966e-01 -1.01375766e-01\\n6.22815564e-02 -2.20510125e-01 -5.30600622e-02 7.48241171e-02\\n1.99884832e-01 1.36991709e-01 -3.47617157e-02 5.08367836e-01\\n-3.82509112e-01 -1.82324246e-01 -1.05239168e-01 4.39349294e-01\\n-4.45212454e-01 1.28333688e-01 5.73447980e-02 2.10971966e-01\\n-4.51611355e-02 5.26041575e-02 -1.75756499e-01 -1.05525376e-02\\n-3.11809838e-01 -4.81039822e-01 2.77944475e-01 5.49635515e-02\\n-6.68413118e-02 -6.26209080e-02 1.16561964e-01 5.73057607e-02\\n-1.72701880e-01 -1.45538062e-01 7.78361410e-03 4.00392376e-02\\n2.37792924e-01 2.98556209e-01 -2.58527100e-01 -2.92492211e-01\\n-2.36929774e-01 2.45345399e-01 -2.63088137e-01 1.24651805e-01\\n-6.09099716e-02 2.82654375e-01 1.24566913e-01 1.78362355e-01\\n3.99074614e-01 -3.19994427e-02 -7.01547414e-02 -2.10644767e-01\\n-3.58360857e-01 -1.98544115e-01 1.57987013e-01 -1.64607111e-02\\n1.69630855e-01 -3.72725457e-01 -1.23696782e-01 -6.89900890e-02\\n-1.80261239e-01 -4.30131406e-01 -3.85016948e-02 -1.96914226e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a C++ Software Engineer. This role is permanent position based in Bern Canton. Your role: Concept & develop customized software modules for the control of large process plants in cooperation with a sales organization & development department. Analyze & implement requirements (parameterization / configuration) to the plant software. Parameterize & configure customer specific requirements. Implement within a Microsoft environment with C++. Carry out documentation & customer training. Further develop existing products. Conduct software testing activities. Closely cooperation with other departments Your Skills & Experience: 2 to 4 years of professional C ++ Software Development experience. Ideally skilled & experienced in SQL programming. Enthusiastic to get involved in parametrization, configuration & complex software development tasks. Your Profile: University Degree in Computer Science. Conceptual, structured, reliable, analytical & team-oriented. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Team Oriented\", \"Professionalism\", \"Cooperation\", \"Reliability\", \"Positivity\", \"Sales\"]',\n", + " '[\"Programming (Music)\", \"Computer Science\", \"Analytics\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Activism\", \"Custom Software\", \"Customer Development\", \"Idealization\", \"Software Engineering\", \"Conceptualization\", \"Customer Service Training\", \"C (Programming Language)\", \"Receivables\", \"Software Modules\", \"Software Development\", \"Software Testing\", \"SQL (Programming Language)\", \"Controllability\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'Navaho', 'Ojibwa', 'Igbo', 'Chichewa']\"],\n", + " ['145',\n", + " 'software development engineer',\n", + " 'Argovia',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.varian.com',\n", + " '[[-2.17313737e-01 1.76907182e-01 5.03869832e-01 -8.10613185e-02\\n5.77698350e-01 -1.37498632e-01 -5.03855646e-02 3.14932138e-01\\n1.57491583e-02 -3.73382628e-01 -9.06400830e-02 -2.17473552e-01\\n-6.22269697e-02 1.19820759e-01 2.60695964e-01 4.44606870e-01\\n2.85690844e-01 8.38702992e-02 -2.63696969e-01 3.37221265e-01\\n1.06212504e-01 -2.10309938e-01 6.30382523e-02 7.69200921e-01\\n2.37798497e-01 -1.32709108e-02 -1.62328511e-01 -4.45279479e-03\\n-2.79389650e-01 -1.45846263e-01 4.01631206e-01 1.32948831e-02\\n-1.71310395e-01 -4.03694779e-01 1.36894569e-01 1.37233078e-01\\n-2.80121893e-01 4.44021523e-02 -2.16047205e-02 1.69215247e-01\\n-5.64091980e-01 -2.53515005e-01 1.47172809e-02 5.85868442e-03\\n-2.54998028e-01 -2.13531673e-01 7.42013526e-06 -8.31044689e-02\\n7.30631351e-02 4.97071072e-02 -4.97737885e-01 2.04094574e-01\\n-2.56502420e-01 -2.84467489e-01 3.59334320e-01 6.20203555e-01\\n1.40190139e-01 -4.08278197e-01 -4.09758121e-01 -3.30776602e-01\\n5.91702275e-02 -1.14511959e-01 5.18550090e-02 -2.49817550e-01\\n2.97745347e-01 6.23380728e-02 4.73235473e-02 3.17425191e-01\\n-7.77367592e-01 -1.35443330e-01 -1.13761008e-01 -1.70413591e-03\\n-3.02579671e-01 -6.47172779e-02 -2.29686633e-01 -1.29727587e-01\\n-1.18826970e-01 3.88286412e-01 7.43223429e-02 5.49813174e-02\\n-1.57929331e-01 2.78977692e-01 -1.58823848e-01 3.62425357e-01\\n1.79855019e-01 2.64666557e-01 2.71944344e-01 3.69623065e-01\\n-3.10545772e-01 4.20636177e-01 1.29694074e-01 -2.63769686e-01\\n2.47702777e-01 1.13708846e-01 4.30575132e-01 4.21998352e-02\\n8.83518308e-02 5.43828048e-02 -2.94100106e-01 2.39633650e-01\\n1.72983095e-01 -1.77242950e-01 5.36393002e-02 -1.39473200e-01\\n-4.19323705e-02 3.42356563e-02 1.10027031e-04 2.49653175e-01\\n-3.85365099e-01 3.96694154e-01 1.73779592e-01 -1.84084415e-01\\n-1.12463780e-01 -5.25366247e-01 -9.50335339e-02 -1.28843961e-02\\n5.59897125e-02 1.76346928e-01 2.99809933e-01 1.20440476e-01\\n2.53902018e-01 5.76693453e-02 1.85562029e-01 9.93456721e-01\\n-1.29742101e-01 6.74831495e-02 -2.26817250e-01 3.08725834e-01\\n2.28077233e-01 -1.95277959e-01 8.00613388e-02 2.92559117e-01\\n2.16001533e-02 -2.53398195e-02 -2.22479180e-01 3.08615893e-01\\n-6.00639582e-02 -2.63694733e-01 -2.79840738e-01 1.46975890e-01\\n-9.60141271e-02 -4.79561865e-01 5.25030077e-01 -3.20742764e-02\\n1.33302063e-01 -8.26098472e-02 8.02594889e-03 2.98408568e-02\\n-1.13955401e-01 2.87154287e-01 1.38600647e-01 1.39561787e-01\\n-1.85694709e-01 -2.55041301e-01 -1.78397790e-01 1.60134792e-01\\n-2.54636317e-01 1.39403909e-01 -1.62687689e-01 -1.42998964e-01\\n2.93735236e-01 1.18912823e-01 -3.30319554e-01 2.49064445e-01\\n-1.11074820e-01 -1.13554820e-01 -7.68875107e-02 2.28103265e-01\\n-1.61063641e-01 2.07253814e-01 -2.06801575e-02 -1.52834252e-01\\n4.93240803e-01 1.21915601e-01 1.82416826e-01 -3.80384810e-02\\n4.16060865e-01 -9.31345820e-02 1.87665492e-01 1.15815125e-01\\n-7.23303914e-01 3.25315654e-01 -1.38013944e-01 -2.08898708e-01\\n1.89445928e-01 -5.70673905e-02 4.62817967e-01 -2.37105533e-01\\n5.84441461e-02 -1.50742501e-01 -3.38448614e-01 -3.19898248e-01\\n-2.25186795e-01 -9.83322412e-03 3.36904317e-01 -3.41964066e-01\\n-5.52988201e-02 2.12116554e-01 -4.68688637e-01 -9.34413150e-02\\n2.03273460e-01 2.39666283e-01 5.99059425e-02 6.31728619e-02\\n-2.02515557e-01 -5.48749149e-01 9.70005698e-04 -4.32528943e-01\\n-3.98369044e-01 1.11880578e-01 -2.27589324e-01 2.38192841e-01\\n-6.37177229e-02 3.38893421e-02 -1.86643507e-02 7.57196471e-02\\n-2.27125600e-01 -9.38344002e-02 1.77398056e-01 -2.06726268e-02\\n1.87438637e-01 -1.19498363e-02 -2.89837956e-01 4.19179291e-01\\n-2.39744112e-01 5.93459070e-01 6.01706840e-02 -9.44323361e-01\\n5.65797925e-01 2.81042755e-01 -2.36954652e-02 -3.98086220e-01\\n6.09340429e-01 -3.51427466e-01 -5.05903475e-02 1.62988022e-01\\n-3.26529592e-01 -2.11912677e-01 2.89101005e-01 -1.54574171e-01\\n-3.00115108e-01 5.06726503e-01 1.54698104e-01 -3.22428197e-02\\n2.27207839e-01 -2.50971258e-01 -9.23196748e-02 4.60527800e-02\\n-9.14112404e-02 -2.23499358e-01 -4.26061213e-01 7.89566431e-03\\n-1.53420225e-01 -4.43330407e-01 -1.43840685e-01 -3.51169288e-01\\n-1.80623367e-01 -3.89792353e-01 -2.30905846e-01 3.02567363e-01\\n1.40254527e-01 1.95810735e-01 2.27663629e-02 -2.06357818e-02\\n-5.15679233e-02 -6.42896771e-01 -8.15120898e-03 1.05036512e-01\\n4.28078562e-01 2.57289469e-01 9.94868502e-02 4.50285189e-02\\n-3.14213373e-02 4.78180230e-01 -3.21533859e-01 -2.67546117e-01\\n1.56125680e-01 1.88157663e-01 -5.60352753e-04 -6.42665103e-02\\n1.31715998e-01 3.78511727e-01 -1.70407638e-01 1.22577772e-01\\n-2.32199326e-01 9.20766369e-02 3.28321278e-01 -1.19383723e-01\\n-2.92810380e-01 -2.06647754e-01 -1.21922754e-01 2.43330777e-01\\n-5.63909531e-01 -1.59867123e-01 4.03115630e-01 9.35657993e-02\\n1.51655912e-01 1.28105506e-01 1.84450358e-01 -6.33089170e-02\\n-2.31716767e-01 -3.33377689e-01 2.15377107e-01 1.06064491e-01\\n9.79290083e-02 9.94395912e-02 -4.73493226e-02 -5.92056155e-01\\n-3.51726079e+00 -1.83722809e-01 1.89865619e-01 -2.73029745e-01\\n3.07144970e-01 -1.70468509e-01 1.01131082e-01 -4.50659022e-02\\n-3.07788372e-01 3.79072614e-02 -1.60818085e-01 -4.47197407e-02\\n1.50851697e-01 2.08812684e-01 1.64847717e-01 1.09774619e-01\\n3.41433845e-02 -2.49404252e-01 5.29325195e-03 3.07635963e-01\\n-9.18527693e-02 -7.31783271e-01 2.04372391e-01 -1.35867983e-01\\n9.89519581e-02 2.25260258e-01 -4.08851117e-01 -2.43813451e-02\\n-2.83608258e-01 -2.35075548e-01 8.47603679e-02 -1.50232404e-01\\n-1.33682564e-01 3.65258813e-01 1.61891907e-01 -6.86532706e-02\\n6.43232390e-02 -3.09727579e-01 -7.70629048e-02 -5.72300971e-01\\n2.29413778e-01 -7.11276352e-01 -6.79903701e-02 -1.80029705e-01\\n5.32364130e-01 -2.14995459e-01 2.01532781e-01 1.40863582e-01\\n2.69964010e-01 1.72393814e-01 5.34006581e-02 -7.27822259e-02\\n-2.39399642e-01 -1.22901551e-01 -5.61033301e-02 -1.83122188e-01\\n5.11776984e-01 5.09114861e-01 -3.16419393e-01 -3.47501785e-02\\n1.24831997e-01 -2.14404792e-01 -5.82043052e-01 -3.25944901e-01\\n-2.13481858e-01 -1.19867213e-01 -6.92897439e-01 -4.83226150e-01\\n-1.01035744e-01 -8.28954950e-02 -7.54516125e-02 5.32920063e-01\\n-3.29719186e-01 -4.48044747e-01 1.03687998e-02 -5.67145824e-01\\n2.59396315e-01 -2.76581615e-01 -3.91514264e-02 -2.13188991e-01\\n-1.98072761e-01 -4.81506944e-01 1.83101520e-01 1.20039172e-02\\n-1.27305716e-01 -2.31955349e-01 1.03260413e-01 -2.42519990e-01\\n-3.81397426e-01 -4.70796317e-01 3.92915905e-01 8.92516300e-02\\n2.30185747e-01 6.40575662e-02 2.69072801e-01 6.85505047e-02\\n2.99780160e-01 3.33036785e-03 1.47349417e-01 -4.29262012e-01\\n6.95079267e-02 2.29067542e-03 5.53019226e-01 -3.16659361e-01\\n-5.72536215e-02 2.19493434e-01 -2.96143353e-01 -1.70961887e-01\\n4.31997538e-01 -4.04365696e-02 5.12563772e-02 -8.70343298e-02\\n4.33265388e-01 -3.90181273e-01 -2.07626328e-01 1.41665325e-01\\n1.15026012e-01 6.77130163e-01 9.55512598e-02 -4.55203533e-01\\n-1.60850048e-01 4.51185226e-01 -1.06835030e-01 3.28286588e-02\\n-1.33166024e-02 1.45598710e-01 -1.07723966e-01 3.23487669e-01\\n-9.64863598e-03 -1.49548963e-01 -3.09544921e-01 -1.49343535e-01\\n-4.18958887e-02 2.41757944e-01 2.17023268e-01 4.36909534e-02\\n-1.04221538e-01 -2.22045526e-01 -1.05540454e-01 2.25057691e-01\\n2.47998819e-01 3.45714390e-01 1.41642898e-01 -1.86697066e-01\\n-7.33363256e-02 3.11617613e-01 -2.05107674e-01 2.84243286e-01\\n-1.53644204e-01 1.24529079e-01 -4.30491358e-01 -1.70690820e-01\\n-2.40899369e-01 -3.47321063e-01 1.30447179e-01 3.31755459e-01\\n1.42939895e-01 -8.03929940e-02 3.53023782e-02 -5.10392487e-01\\n2.51813203e-01 1.83252588e-01 1.80423602e-01 5.48266107e-03\\n1.15505373e-02 5.47658145e-01 8.49169493e-03 -1.85424075e-01\\n-5.77140749e-02 -6.93185627e-02 -1.88445315e-01 -1.63309455e-01\\n1.36671513e-01 -4.57507610e-01 -2.37812530e-02 3.49471301e-01\\n1.76994592e-01 -3.10285836e-01 -2.05775023e-01 3.98923159e-01\\n1.54202223e-01 -2.75240630e-01 -1.91519082e-01 3.86077911e-02\\n3.37514430e-01 6.21982813e-02 2.01192215e-01 -5.83104610e-01\\n-1.26372010e-01 8.73248205e-02 -4.09814194e-02 4.16398257e-01\\n-5.29818274e-02 -6.05701916e-02 -1.95918828e-01 -1.12661988e-01\\n3.29952538e-01 2.84626186e-02 -1.95584763e-02 -8.32598284e-02\\n8.73170644e-02 -2.60381401e-01 -4.58788425e-01 3.21435137e-03\\n-3.14138085e-02 -2.97965169e-01 1.21010495e-02 1.60338327e-01\\n1.49464428e-01 2.39912737e-02 -4.21982259e-01 -1.34273216e-01\\n-3.36156964e-01 -4.86609377e-02 8.14407691e-02 -3.85280073e-01\\n-4.24133688e-02 -3.80176976e-02 -5.18090487e-01 2.16802716e-01\\n-4.44893315e-02 -8.12026113e-02 1.70157030e-01 1.02119610e-01\\n-3.74581099e-01 -5.56949042e-02 1.21862918e-01 3.92251387e-02\\n-2.21790105e-01 -1.65393293e-01 -4.83543519e-03 -1.03437209e+00\\n7.61639699e-02 -1.89202223e-02 -6.81039840e-02 8.97976011e-02\\n-1.18684053e-01 -5.86940110e-01 1.17277250e-01 -4.92256701e-01\\n-8.89276564e-02 2.23300662e-02 -3.13708186e-01 -2.72262752e-01\\n2.62791128e-03 -3.31834145e-02 -2.76791900e-01 3.43910664e-01\\n-3.62252206e-01 3.97560894e-01 -9.74780470e-02 6.33904189e-02\\n6.38139844e-02 -3.01352829e-01 1.75547868e-01 -3.57806981e-01\\n-3.78887832e-01 -1.76863968e-01 -3.43399525e-01 -2.16505378e-01\\n-2.51829233e-02 -2.18517408e-01 -1.45358890e-01 1.01740479e-01\\n3.48185182e-01 9.58480090e-02 -7.87366331e-02 -2.11190686e-01\\n8.44359696e-02 -4.84454691e-01 4.91712913e-02 -7.17548057e-02\\n-4.15105298e-02 -9.82139930e-02 2.03657672e-01 2.89543476e-02\\n2.59399831e-01 -3.83616924e-01 4.90404367e-01 -3.54710490e-01\\n-3.31556588e-01 -1.84153765e-01 9.64015052e-02 1.32586047e-01\\n2.96451300e-01 -5.45422554e-01 3.44906300e-02 2.40005404e-01\\n1.44625530e-01 5.88523299e-02 3.16902339e-01 -1.58534333e-01\\n-1.12780467e-01 1.51394784e-01 -4.34928030e-01 1.00776002e-01\\n7.28797972e-01 2.05479890e-01 8.48902762e-02 8.75835568e-02\\n2.11041972e-01 3.67764592e-01 4.91718203e-01 1.40784448e-02\\n-8.84468928e-02 2.77728945e-01 1.66902900e-01 -4.56329286e-01\\n-1.80617824e-01 2.67155729e-02 -8.65252763e-02 -3.56221378e-01\\n7.01136887e-01 3.79623294e-01 -3.51660013e-01 -1.80986181e-01\\n-1.66871637e-01 -9.86010060e-02 2.31297851e-01 -1.90609559e-01\\n-3.93375196e-02 -2.60150023e-02 4.72673297e-01 -4.52859811e-02\\n1.67288989e-01 5.38806498e-01 -2.18995512e-01 -3.85882407e-01\\n1.74710099e-02 2.29368001e-01 8.78087506e-02 4.09576416e-01\\n-1.12592436e-01 1.55045450e-01 1.71897355e-02 1.72535807e-01\\n-1.70519620e-01 1.22543417e-01 7.37937689e-02 3.62332501e-02\\n1.28952697e-01 5.84994480e-02 4.41488266e-01 4.46979284e-01\\n3.21823478e-01 4.30686682e-01 2.70931512e-01 1.28403246e-01\\n4.84092832e-01 4.98317003e-01 2.79709548e-01 4.19247150e-02\\n1.76928821e-03 1.43196806e-01 1.53780356e-01 -9.92340744e-02\\n4.66209650e-01 2.84751087e-01 1.01990469e-01 8.07316899e-01\\n2.40983188e-01 2.94509113e-01 6.65521502e-01 -5.74864447e-01\\n-3.60958844e-01 -4.83339070e-04 5.34974217e-01 -3.97976875e-01\\n-2.05805805e-02 1.40303001e-01 -1.41986683e-01 2.72189915e-01\\n-4.61815327e-01 -1.21599391e-01 1.54235894e-02 2.93548591e-02\\n2.70341840e-02 -1.45951390e-01 -2.35409334e-01 5.42763583e-02\\n-1.13242835e-01 -1.67179450e-01 -4.17675138e-01 -2.11148381e-01\\n-2.06815869e-01 -5.23817837e-02 -1.07921094e-01 -1.22231521e-01\\n-7.59652182e-02 -2.60544658e-01 -1.09334901e-01 8.91754180e-02\\n2.57570833e-01 -1.80208236e-01 -4.41039614e-02 -1.47495672e-01\\n2.66777664e-01 8.37598816e-02 5.11130512e-01 1.23101973e-03\\n1.78890496e-01 -1.92024872e-01 -2.08894610e-01 1.27531543e-01\\n1.30964160e-01 1.03505395e-01 5.60477190e-02 4.09035593e-01\\n-3.61768901e-01 -1.14338480e-01 1.63526267e-01 3.91802967e-01\\n-3.83758694e-01 -9.31421742e-02 -8.09889659e-02 9.56953093e-02\\n-6.85387664e-03 1.68123350e-01 -2.54746228e-01 -1.45249264e-02\\n-2.59496689e-01 -5.41479170e-01 3.47519934e-01 -1.84467822e-01\\n-1.52066812e-01 1.02832988e-01 3.70525062e-01 2.78960764e-01\\n-1.72261223e-01 1.55281276e-02 -1.65000756e-03 2.45835587e-01\\n2.47907899e-02 2.92682171e-01 -1.46102294e-01 -2.51911700e-01\\n-2.70871222e-01 2.96151280e-01 -1.73311472e-01 1.92272216e-01\\n-6.72292337e-02 3.67305011e-01 3.00948098e-02 1.59859881e-01\\n3.67637843e-01 -1.37133300e-01 -1.97348207e-01 -2.97452062e-01\\n-2.11695358e-01 -2.67159760e-01 -1.37844523e-02 1.95521265e-02\\n1.91571206e-01 -3.67143691e-01 -6.48997119e-03 -1.81730226e-01\\n-1.87215611e-01 -2.52270371e-01 -7.08255842e-02 -4.05882783e-02]]',\n", + " \"We're driving toward the ultimate victory: a world without the fear of cancer. You will be part of the software development team 'QA Solutions'. We develop software products for automated quality assurance procedures of medical Linacs and patient treatments which are seamlessly integrated into the clinical workflow to fulfill customer needs.Our department is responsible for design and implementation of innovative and reliable quality assurance procedures for the newest treatment methods to support our businesses for treatment planning and delivery systems including photon, proton and brachy therapy. Varian offers a friendly, open and international working environment, continuous education, flexible work time management, competitive salaries and excellent fringe benefits. In this position as software development engineer, you interact with product managers, engineering colleagues as well as directly with our customers. Specific ResponsibilitiesDesign, develop and verify new products for patient specific quality assurance of radiotherapy treatments including algorithms for image processing and analysis.Provide all necessary documentation related to this area of responsibility.Interest in gathering domain knowledge in the areas of radiotherapy quality assurance and medical image processing. Desired QualificationsSW development engineer (B.Sc. level or equivalent)Experience with Python (3+ years), *NIX environments (3+ years) and NoSQL database (e.g. CouchDB)Full stack web application development experience (Apache server administration, Cloud / virtualization)Proficiency with Git, Jenkins, Makefiles and automated software testing Following Qualifications are an assetModern and legacy web front end development with willingness to be flexible (Jquery to React, Angular, Flask, or Vue.js)C coding experience including CUDA/GPU programmingNumerical or scientific programming and visualization (Numpy and/or MATLAB)Performance analysis/optimizationComfort with heterogeneous environments (Windows, Linux)Fluency in English language, written and verbalAbility to travel up to 20% We're unleashing the power of technology and human ingenuity to achieve new victories in the fight against cancer. Join us and have a global impact.\",\n", + " '[\"Ingenuity\", \"Friendliness\", \"Reliability\", \"Integration\", \"Innovation\", \"Quality Assurance\", \"Time Management\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Server Administration\", \"Automation\", \"Production Management\", \"NoSQL\", \"Graphics Processing Unit (GPU)\", \"Jenkins\", \"Programming (Music)\", \"Interactivity\", \"Vue.js\", \"MATLAB\", \"Virtualization\", \"Nvidia CUDA\", \"Treatment Planning\", \"NumPy\", \"Python (Programming Language)\", \"Linux\", \"Photonics\", \"E (Programming Language)\", \"Levelling\", \"SARS Software Products\", \"Medic\", \"CouchDB\", \"Flask (Web Framework)\", \"React.js\", \"Image Processing\", \"Engineering Management\", \"C (Programming Language)\", \"JQuery\", \"Humanism\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Software Development\", \"Software Testing\", \"Patient Treatment\", \"Algorithms\", \"Medical Imaging\", \"Cancer\", \"Git Flow\", \"Performance Analysis\", \"Workflows\", \"New Product Development\", \"B (Programming Language)\", \"Web Application Development\", \"Integrated Delivery Systems\"]',\n", + " \"['English', 'Inupiaq', 'Croatian']\"],\n", + " ['84',\n", + " 'software engineer .net / c#',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-9.92792398e-02 3.02440435e-01 2.93507308e-01 -1.08191818e-01\\n5.06818295e-01 -1.45451322e-01 -2.83627659e-02 4.52165246e-01\\n-9.99013036e-02 -4.81435567e-01 -4.60295333e-03 -2.95293808e-01\\n5.45937829e-02 9.21726972e-02 -1.24952262e-02 4.09118265e-01\\n3.21383029e-01 9.80194211e-02 -1.50388926e-01 3.37944984e-01\\n1.17071971e-01 -9.27732289e-02 1.34574592e-01 7.16347098e-01\\n3.26944977e-01 7.60269240e-02 1.65419318e-02 9.98060033e-02\\n-3.03879976e-01 -3.05884153e-01 3.57515484e-01 -1.09661967e-02\\n-1.15472168e-01 -2.60320991e-01 3.78614217e-02 -1.11793699e-02\\n-1.91863075e-01 -2.04496175e-01 -6.50389760e-04 2.56601006e-01\\n-4.90801007e-01 -2.30398163e-01 -1.87893352e-03 -7.07228631e-02\\n-2.02902079e-01 -3.97066236e-01 4.56921570e-03 7.87469093e-03\\n1.65744722e-01 9.18754488e-02 -4.24535960e-01 3.10820043e-01\\n-2.39468738e-01 -2.47470289e-01 3.26427042e-01 5.25489151e-01\\n-1.09401233e-01 -3.77189338e-01 -4.29033875e-01 -2.22576618e-01\\n1.36895180e-01 -1.35448277e-01 1.13560222e-01 -2.40768999e-01\\n4.79747623e-01 9.76771414e-02 1.03647560e-01 3.52380991e-01\\n-7.00875401e-01 -1.08083203e-01 -2.92143226e-01 -6.64569587e-02\\n-3.50218803e-01 -1.49245381e-01 -1.84639826e-01 -1.73950553e-01\\n-1.39173895e-01 2.93264151e-01 7.07579171e-03 -5.94026223e-02\\n-1.29984543e-01 3.34661514e-01 -2.60381907e-01 2.80472845e-01\\n1.49493128e-01 2.96959370e-01 1.79483756e-01 3.48495215e-01\\n-4.34529215e-01 4.06856805e-01 1.58552185e-01 -3.26237142e-01\\n2.16163054e-01 2.55920570e-02 5.62994182e-01 -7.84547813e-03\\n1.98813051e-01 6.81903288e-02 -2.65678346e-01 3.92195851e-01\\n2.11085662e-01 -1.43480211e-01 1.22612035e-02 -3.46103571e-02\\n-9.55586433e-02 -1.52626717e-02 8.71113539e-02 3.00650179e-01\\n-2.19212756e-01 5.38213134e-01 3.54385450e-02 -2.43112355e-01\\n-1.26074404e-01 -6.76766455e-01 -1.25667483e-01 2.58911345e-02\\n4.56421413e-02 1.01657823e-01 1.79050252e-01 2.69130796e-01\\n6.26400039e-02 1.34774083e-02 1.99629098e-01 8.70843291e-01\\n-2.94865724e-02 6.75146058e-02 -3.11158597e-01 3.19198728e-01\\n1.20472573e-01 -3.30863595e-01 1.83239564e-01 2.58024693e-01\\n1.24483474e-01 -1.90264165e-01 -1.01461858e-01 2.71425277e-01\\n-1.27561642e-02 -3.44702780e-01 -5.13710499e-01 2.18953714e-01\\n-1.92485258e-01 -3.48596573e-01 5.47225833e-01 6.55348226e-02\\n1.00360848e-01 -5.64756617e-02 -1.01444319e-01 -8.24920833e-02\\n-1.53602406e-01 2.41212532e-01 -3.88431037e-03 4.09206897e-02\\n-2.39489049e-01 -2.46235579e-01 -1.54919729e-01 2.26415977e-01\\n-1.18932694e-01 1.77388310e-01 -9.28899571e-02 -5.35358451e-02\\n3.87122244e-01 -1.80182997e-02 -2.02726379e-01 3.70975286e-01\\n-7.49003962e-02 -3.26031409e-02 -9.98760387e-02 3.02706450e-01\\n-1.39056265e-01 1.29874259e-01 -5.76992370e-02 -2.06186056e-01\\n5.35425961e-01 -8.31792802e-02 1.24702938e-01 -1.24682009e-01\\n2.62772083e-01 -1.70889065e-01 1.44849807e-01 9.93491411e-02\\n-6.30240798e-01 3.54824156e-01 -1.67906195e-01 -9.50298756e-02\\n1.28556922e-01 2.79553831e-02 2.95487612e-01 -1.96520224e-01\\n4.27392982e-02 -6.99248239e-02 -2.97956407e-01 -4.28120106e-01\\n-2.37346858e-01 -7.37571940e-02 4.21883821e-01 -3.87281597e-01\\n-2.61026233e-01 1.82606593e-01 -6.21342778e-01 5.04610464e-02\\n1.05690822e-01 1.82406157e-01 1.45458639e-01 1.95994675e-01\\n-2.02969611e-01 -6.13152981e-01 1.13049187e-01 -4.26712573e-01\\n-3.28846216e-01 1.94554567e-01 -1.70200720e-01 2.41298631e-01\\n1.67999804e-01 7.27064610e-02 -1.15538068e-01 1.73204377e-01\\n-2.26201564e-01 2.39415392e-02 1.66045770e-01 1.11981332e-01\\n2.52777606e-01 1.43940095e-02 -5.00443816e-01 3.82524014e-01\\n-4.21463214e-02 4.19871658e-01 1.20110735e-01 -8.87905777e-01\\n4.60566849e-01 2.74368703e-01 2.39541698e-02 -3.11836004e-01\\n7.19428003e-01 -2.10369974e-01 6.78024888e-02 2.18095943e-01\\n-4.70186621e-01 -2.31062368e-01 2.02345118e-01 -2.08549216e-01\\n-2.50685811e-01 5.87981701e-01 1.81499973e-01 3.69478874e-02\\n3.76958907e-01 -2.49582380e-01 -2.07873538e-01 8.90970603e-02\\n-1.16772138e-01 -2.36619517e-01 -4.46220279e-01 -7.88937807e-02\\n1.41607216e-02 -4.26716864e-01 -1.55776262e-01 -4.25697088e-01\\n-1.92750573e-01 -2.93899953e-01 -2.00445279e-01 3.29781145e-01\\n1.65980607e-01 2.22535700e-01 2.63799094e-02 -2.49449606e-03\\n-1.60850257e-01 -5.82212269e-01 -8.41839835e-02 1.55452952e-01\\n3.94902557e-01 2.10016876e-01 -1.49612082e-03 2.80005299e-02\\n-6.17667735e-02 5.82838655e-01 -2.26760551e-01 -2.07745537e-01\\n9.56567302e-02 1.71212405e-01 2.20645908e-02 -1.43818697e-02\\n-6.43486204e-03 3.02629173e-01 -1.44753233e-01 3.94731797e-02\\n-3.54542807e-02 9.45726223e-03 4.04148132e-01 1.64171606e-01\\n-3.21201384e-01 -3.14562291e-01 -3.13741602e-02 1.58195630e-01\\n-5.70610106e-01 -2.66773403e-01 5.81016719e-01 1.77503645e-01\\n2.37202987e-01 1.63134843e-01 2.37349659e-01 -5.65502085e-02\\n-1.87081784e-01 -2.20145702e-01 1.65878087e-01 1.51274338e-01\\n1.96459517e-02 6.76173121e-02 -1.80120304e-01 -4.51435775e-01\\n-3.56853056e+00 -1.27779037e-01 1.58544391e-01 -2.83877701e-01\\n2.08782911e-01 7.28474976e-03 5.12679107e-02 -8.80943835e-02\\n-3.47053707e-01 -7.09132403e-02 -2.56954461e-01 -1.38627321e-01\\n1.88189134e-01 2.64205158e-01 1.16793528e-01 3.68056327e-01\\n1.61195382e-01 -2.15088561e-01 -1.38881728e-01 3.99353594e-01\\n-9.87268984e-02 -6.25644743e-01 1.67025968e-01 -1.19551547e-01\\n3.10436159e-01 3.22106242e-01 -3.39578331e-01 -4.54219729e-02\\n-2.98300564e-01 -2.06109866e-01 1.91983953e-01 -2.49553800e-01\\n-1.18635274e-01 2.99056619e-01 2.22387642e-01 -1.28972441e-01\\n1.44720554e-01 -3.52144480e-01 -4.55714791e-04 -4.45358604e-01\\n9.44341645e-02 -5.90447545e-01 -8.65280703e-02 -7.78041184e-02\\n7.08136976e-01 -3.95755678e-01 4.67173532e-02 8.33043829e-02\\n1.53695926e-01 2.74274170e-01 5.82570247e-02 -1.27358750e-01\\n-1.31815344e-01 -3.02455157e-01 -6.33862913e-02 -2.48671949e-01\\n4.71121788e-01 4.79167372e-01 -2.05014274e-01 -7.97019154e-02\\n5.65407574e-02 -2.06232816e-01 -4.89301831e-01 -3.92650872e-01\\n-1.88386813e-01 -1.61853567e-01 -6.51055217e-01 -5.30617595e-01\\n-1.30264536e-01 -1.38559282e-01 -1.45420507e-01 5.96325815e-01\\n-4.35823709e-01 -4.70391631e-01 -5.37393540e-02 -4.06250864e-01\\n3.93221825e-02 -3.35363984e-01 -2.91724154e-03 -1.29005641e-01\\n-3.08080226e-01 -4.60069865e-01 8.41798261e-02 5.65423332e-02\\n-6.26297519e-02 -1.25808492e-01 1.02316529e-01 -3.61366987e-01\\n-2.84633279e-01 -4.03639644e-01 4.21877027e-01 1.33073747e-01\\n2.16754198e-01 2.37420410e-01 1.35448441e-01 1.67176515e-01\\n2.50321656e-01 -2.45293304e-01 -5.82627393e-02 -4.06594634e-01\\n2.40251049e-01 5.55065693e-03 5.50934851e-01 -2.48899326e-01\\n3.92021909e-02 7.45715424e-02 -1.60137311e-01 -1.65741727e-01\\n3.47865194e-01 6.38878420e-02 1.35614336e-01 -3.31353128e-01\\n3.04891557e-01 -4.71684754e-01 -2.33419642e-01 7.56686702e-02\\n6.90506473e-02 5.18831968e-01 4.38452996e-02 -4.34698582e-01\\n-9.49599519e-02 3.70570302e-01 -1.23373151e-01 -1.28642961e-01\\n-1.15767725e-01 1.40559748e-01 -2.65383601e-01 2.32562482e-01\\n-2.45755054e-02 -4.08948064e-02 -2.71634638e-01 -1.42405063e-01\\n-7.71233737e-02 4.59765166e-01 2.89701462e-01 1.43590063e-01\\n3.10109043e-03 -3.66315424e-01 -1.00613467e-01 1.57489210e-01\\n2.84583092e-01 3.38530034e-01 1.63200349e-01 -3.13827097e-01\\n6.73453361e-02 3.49921614e-01 -1.86435238e-01 1.37680098e-01\\n-2.57868499e-01 1.07162772e-02 -4.19338256e-01 -3.14184070e-01\\n-1.82605386e-01 -2.46515930e-01 4.79922369e-02 2.19704166e-01\\n1.38344795e-01 -2.69144922e-02 -2.61929128e-02 -3.17524105e-01\\n2.60890216e-01 8.02530274e-02 3.31840813e-01 3.07863086e-01\\n-3.49721126e-02 6.12751067e-01 3.90235558e-02 -1.87835768e-01\\n-1.19121827e-01 -6.77262619e-02 -1.66545346e-01 -6.92091435e-02\\n-6.01633415e-02 -3.77031773e-01 -1.18513033e-01 3.76708865e-01\\n4.28020656e-02 -2.40220338e-01 -1.44857883e-01 3.45459342e-01\\n-8.11017454e-02 -2.92915702e-01 -4.49677333e-02 1.11919574e-01\\n3.31355542e-01 1.65282398e-01 1.81507960e-01 -5.26488960e-01\\n-1.61728516e-01 -7.56532373e-03 -1.36027753e-01 5.28204203e-01\\n1.18960217e-01 1.70437470e-01 -1.48995996e-01 -3.04370701e-01\\n3.93230319e-01 -2.30085135e-01 -9.02308747e-02 -9.18778707e-04\\n5.45024686e-03 -1.16150968e-01 -3.98486882e-01 5.03868461e-02\\n-1.05488151e-01 -1.80154696e-01 1.75633118e-01 7.33099282e-02\\n9.89163294e-02 1.26921609e-01 -6.10801578e-01 -2.85899580e-01\\n-2.97490686e-01 -1.14222996e-01 -2.14459840e-02 -4.42214519e-01\\n2.64978483e-02 -1.13545135e-01 -5.23676991e-01 2.95858860e-01\\n-1.15508206e-01 2.50771232e-02 6.46409467e-02 2.52197571e-02\\n-4.25169230e-01 -1.62784547e-01 1.43602014e-01 2.01348186e-01\\n-1.49935588e-01 -1.47018164e-01 1.55035174e-02 -9.51423466e-01\\n2.23741189e-01 -1.70554370e-01 -1.36457428e-01 3.76077630e-02\\n7.02474266e-02 -5.38722694e-01 1.18600197e-01 -3.86079490e-01\\n-9.77541059e-02 -2.00070683e-02 -1.97883010e-01 -5.06156862e-01\\n1.19607255e-01 6.45912811e-02 -1.98032394e-01 4.02081639e-01\\n-3.92433435e-01 3.06132406e-01 -1.04729615e-01 1.34002462e-01\\n5.17867431e-02 -4.34011221e-01 1.97102442e-01 -4.05072153e-01\\n-4.64874238e-01 -1.70090064e-01 -1.96508735e-01 -1.69086531e-01\\n3.38316374e-02 -3.04924965e-01 -2.44207412e-01 2.17002049e-01\\n2.26238728e-01 9.04318988e-02 -1.64959446e-01 -1.21952474e-01\\n5.14602587e-02 -3.99567097e-01 1.48644865e-01 -2.75584795e-02\\n-1.28691196e-01 -1.58707008e-01 1.59985393e-01 9.33140889e-02\\n4.28211465e-02 -4.28672552e-01 4.59918708e-01 -2.77401596e-01\\n-2.97024995e-01 -1.28291976e-02 1.03405431e-01 -2.71611884e-02\\n4.07766074e-01 -5.17943203e-01 -9.86272469e-02 3.53770882e-01\\n1.18719220e-01 2.00392962e-01 2.09638551e-01 -2.13602200e-01\\n-1.88507244e-01 2.56735802e-01 -2.88646162e-01 1.37570798e-01\\n7.49004900e-01 9.78349298e-02 2.63147533e-01 8.77802595e-02\\n1.55886799e-01 3.03018153e-01 4.03878987e-01 1.16627455e-01\\n-2.13950396e-01 3.02131563e-01 1.62011325e-01 -5.74915051e-01\\n3.59673724e-02 1.25765786e-01 -1.82403222e-01 -4.13991272e-01\\n5.80151856e-01 4.01018888e-01 -2.86447555e-01 -1.92622393e-01\\n-9.64180008e-02 -1.16830967e-01 5.90558276e-02 -8.15991461e-02\\n4.45071943e-02 -2.52080917e-01 5.46560884e-01 -4.22888845e-02\\n1.25141814e-01 5.11046112e-01 -1.77351177e-01 -4.20543462e-01\\n-8.38613212e-02 1.77586854e-01 8.72699693e-02 4.43351328e-01\\n-1.24151155e-01 2.42405221e-01 -4.18838486e-02 1.73418000e-01\\n-1.07705466e-01 7.71391392e-02 7.70581141e-02 5.57051264e-02\\n-7.84710608e-03 2.30685383e-01 4.00819927e-01 5.53932309e-01\\n4.86630470e-01 5.49709082e-01 3.05746704e-01 6.91661611e-02\\n5.94136298e-01 4.73845720e-01 4.19430077e-01 1.81364343e-01\\n3.13642994e-02 -2.82146111e-02 5.97044639e-02 1.31985366e-01\\n3.75363261e-01 3.56043786e-01 4.59392332e-02 9.70516682e-01\\n3.85935575e-01 1.02138527e-01 6.52064621e-01 -6.19134724e-01\\n-1.99751556e-01 8.58900174e-02 3.50889772e-01 -4.00779754e-01\\n-1.62220538e-01 6.79228306e-02 -3.14699590e-01 1.10510521e-01\\n-4.59171951e-01 -2.26158082e-01 -2.13220969e-01 1.78837463e-01\\n1.57201380e-01 -1.37907937e-01 -2.35267684e-01 -6.31628335e-02\\n1.99365690e-02 -1.26534924e-01 -4.97254670e-01 -9.77690443e-02\\n-2.95279622e-01 -1.76902622e-01 3.95228826e-02 -1.87544450e-01\\n8.66327658e-02 -3.41447651e-01 -1.42552018e-01 2.93195173e-02\\n4.01285380e-01 -5.63664101e-02 2.55399086e-02 -7.43465424e-02\\n1.64280191e-01 3.92874300e-01 5.51721394e-01 -1.09978966e-01\\n-8.74401443e-03 -1.34294927e-01 -1.45575836e-01 3.82828042e-02\\n7.80042782e-02 1.16064574e-03 3.66127156e-02 3.67331922e-01\\n-3.24460834e-01 -3.87571156e-02 -3.92331220e-02 4.67310846e-01\\n-5.11676729e-01 5.03148660e-02 -4.40377332e-02 3.40674073e-01\\n2.01118290e-02 9.96843800e-02 -3.60680401e-01 1.11627854e-01\\n-2.21932948e-01 -4.01663095e-01 2.27361828e-01 -5.17902449e-02\\n-8.45997408e-02 7.03747282e-05 1.21491097e-01 1.33008480e-01\\n-3.48672867e-01 -7.62473345e-02 -4.53545228e-02 3.01453054e-01\\n1.36481494e-01 3.79236400e-01 -3.80460799e-01 -1.88666850e-01\\n-2.60343015e-01 1.93253621e-01 -5.41642532e-02 8.80732909e-02\\n-6.69403002e-02 2.07151935e-01 1.34626925e-01 1.82960257e-01\\n3.09478402e-01 -5.70749417e-02 -1.61056936e-01 -2.82105595e-01\\n-1.41373724e-01 -3.23833525e-01 1.11215591e-01 -5.97021058e-02\\n3.11277926e-01 -3.75216901e-01 -1.24083072e-01 -1.36315241e-01\\n-2.10162565e-01 -4.01246727e-01 3.36394436e-03 -1.00600451e-01]]',\n", + " 'About our client Our client is a Swiss medtech company with technologies and ideas that look at functional movement therapy from a completely different angle. Because they enable independent exercise and create maximum motivation, because they challenge people to take courage and support their hopes with personal achievements. Your responsibilities You take a significant part in the creation of the software architecture of our client Work in multidisciplinary projects with the internal departments Mechanical and Electrical Engineering, Technical Projects, Product Management as well as the Service and Manufacturing departments focuses the development of our therapy devices in particular on clinical application and usability aspects Your profile You got a bachelor in Computer Science good knowledge of the .NET platform, including C#, WPF and WCF understanding of relational and non-relational databases some years of experience with Software Architecture, Service Oriented Design and Software development processes experience in Version Control Systems and Application Lifecycle Management very good English skills, German skills are a plus Your chance Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 486',\n", + " '[\"\"]',\n", + " '[\"Control Systems\", \"Usability\", \"Relational Databases\", \"Software Development\", \"Version Control\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Product Management\", \"Software Architecture\", \"Computer Science\", \"Application Lifecycle Management\", \"Personalization\", \"Wcf 4\", \"Service-Oriented Modeling\", \"Lifecycle Management\", \"Mechanicals\"]',\n", + " \"['English', 'Belarusian', 'Haitian']\"],\n", + " ['27',\n", + " 'junior software engineer medco for the department of information systems',\n", + " 'Lausanne',\n", + " 'Healthcare Services & Hospitals',\n", + " 'www.chuv.ch',\n", + " '[[-3.00035059e-01 3.61983538e-01 4.44360465e-01 -7.17792660e-03\\n5.62070787e-01 -1.37449756e-01 -1.13336578e-01 2.42946625e-01\\n-2.19843201e-02 -4.84850526e-01 -9.91603658e-02 -3.07892561e-01\\n-4.89714779e-02 1.88965708e-01 1.14169598e-01 4.41247940e-01\\n3.86448681e-01 4.34750766e-02 -1.06877811e-01 3.36503685e-01\\n-6.46074489e-02 -1.51778728e-01 4.21410054e-03 8.17152441e-01\\n4.15205777e-01 -4.45732102e-02 -5.73506542e-02 1.49609014e-01\\n-2.30003044e-01 -1.49984866e-01 5.07363498e-01 2.94902641e-02\\n-1.60990119e-01 -3.72379541e-01 1.14553399e-01 2.48411328e-01\\n-3.23082864e-01 -1.17690079e-01 -1.25032410e-01 1.77222803e-01\\n-5.57683289e-01 -3.01134944e-01 -1.02623522e-01 -1.21669605e-01\\n-2.74369895e-01 -3.70370686e-01 9.48063284e-02 -3.09872590e-02\\n8.33352506e-02 1.49189293e-01 -5.47025383e-01 2.15621099e-01\\n-3.89576554e-01 -1.66778952e-01 3.37086499e-01 6.09280050e-01\\n-4.00838852e-02 -4.14307028e-01 -4.87745881e-01 -4.02561933e-01\\n-5.65326326e-02 -2.60696188e-02 4.56933528e-02 -3.86211216e-01\\n4.11144555e-01 9.00602639e-02 -5.72004914e-03 3.85362148e-01\\n-8.06089640e-01 -1.23140171e-01 -3.25153291e-01 1.08123042e-01\\n-4.29066181e-01 -3.10019776e-02 -3.13482702e-01 -2.40982965e-01\\n-6.66429177e-02 3.94444346e-01 -3.24342586e-02 1.19015887e-01\\n-2.39308327e-01 3.82285446e-01 -2.01432556e-01 3.83839250e-01\\n2.69659698e-01 2.43688136e-01 3.10070992e-01 3.65030706e-01\\n-4.57485974e-01 3.77795219e-01 1.28924534e-01 -3.27150077e-01\\n2.27454871e-01 1.09013036e-01 4.74937022e-01 9.19226110e-02\\n1.41731560e-01 1.32084504e-01 -2.91906685e-01 2.95387268e-01\\n2.13811845e-01 -1.99559718e-01 4.51282822e-02 -8.05766135e-02\\n-7.04778358e-03 -4.79073673e-02 -1.68002769e-03 1.65476188e-01\\n-4.13177133e-01 3.36495101e-01 8.56148005e-02 -2.72724450e-01\\n-1.56365946e-01 -5.79533279e-01 1.13614369e-02 1.04003072e-01\\n6.48366064e-02 1.11551940e-01 1.59038499e-01 1.22376904e-01\\n1.81610435e-01 -4.70363833e-02 1.62519693e-01 8.83770227e-01\\n-1.25856802e-01 -3.42019200e-02 -1.34144962e-01 3.06266665e-01\\n8.90472084e-02 -1.88330188e-01 1.54109716e-01 2.90424526e-01\\n-6.58720359e-03 -1.22392751e-01 -2.37822413e-01 4.40019906e-01\\n-1.29727036e-01 -1.90964669e-01 -4.41658556e-01 3.40125471e-01\\n-1.90957069e-01 -4.34564710e-01 5.87118506e-01 -8.26356187e-02\\n1.44019127e-01 -1.57126263e-01 -1.17994323e-02 -8.22910443e-02\\n-1.31153569e-01 2.13340163e-01 2.53410265e-03 2.23886713e-01\\n-3.21313739e-01 -2.24193215e-01 -9.18591917e-02 2.49286920e-01\\n-3.38537425e-01 2.97612160e-01 -7.92742223e-02 -9.15120170e-02\\n2.67795205e-01 1.66635007e-01 -3.66973519e-01 1.85097575e-01\\n-1.18098199e-01 -1.10540226e-01 -6.61244169e-02 4.58446741e-01\\n-1.32654071e-01 2.13160932e-01 -1.42370611e-02 -3.50442648e-01\\n4.66153681e-01 1.19258486e-01 3.25152159e-01 -1.06508927e-02\\n3.21369588e-01 -1.51209190e-01 2.79434800e-01 1.03953734e-01\\n-7.00411677e-01 3.89611870e-01 -7.01834559e-02 -2.13751033e-01\\n3.74336354e-03 -1.02307774e-01 4.65106070e-01 -2.54125476e-01\\n-7.04707354e-02 -1.76333070e-01 -3.54473174e-01 -4.63893920e-01\\n-1.96422324e-01 1.27239637e-02 4.41343784e-01 -4.54905361e-01\\n-7.38131478e-02 3.95377994e-01 -6.31911635e-01 -2.00359508e-01\\n1.88462973e-01 2.50258654e-01 1.38608143e-01 1.72260046e-01\\n-1.21526673e-01 -6.64688766e-01 4.85400110e-02 -5.14919817e-01\\n-3.84826243e-01 1.28575832e-01 -2.86289275e-01 1.26380429e-01\\n8.47453400e-02 2.35035457e-02 -2.82117780e-02 4.67723086e-02\\n-3.38407069e-01 7.21806437e-02 8.54065791e-02 -5.71014024e-02\\n3.07594359e-01 1.76642686e-02 -3.67082477e-01 4.78533149e-01\\n-1.86889499e-01 4.62018341e-01 1.17807738e-01 -8.33056927e-01\\n6.30820274e-01 3.69473755e-01 -3.51999328e-02 -3.68397951e-01\\n5.50363183e-01 -3.31260920e-01 -1.74863935e-01 1.57397926e-01\\n-3.67648214e-01 -1.54682174e-01 2.22167194e-01 -3.21027189e-01\\n-2.22786993e-01 5.83073795e-01 5.71780577e-02 9.26069319e-02\\n4.92103398e-01 -3.75210047e-01 -2.09360927e-01 1.03194222e-01\\n-2.05078959e-01 -3.08929324e-01 -5.16978860e-01 -8.15665424e-02\\n-1.30044356e-01 -4.63237584e-01 -2.11823523e-01 -3.89117658e-01\\n-1.49591237e-01 -2.84421951e-01 -1.72048569e-01 2.19392136e-01\\n2.09453434e-01 1.76951244e-01 -4.40159142e-02 4.42950465e-02\\n-3.55879515e-02 -5.65842628e-01 -4.79751751e-02 -4.41436023e-02\\n3.68573934e-01 2.91733623e-01 1.59429044e-01 5.70160337e-03\\n8.23950544e-02 5.36124110e-01 -4.61518884e-01 -3.59381318e-01\\n1.01671629e-01 5.53791076e-02 -1.06429607e-01 -3.71658839e-02\\n1.75495595e-01 3.03211212e-01 -2.68508077e-01 3.82938161e-02\\n-6.62147161e-03 -2.49507464e-02 3.97147000e-01 -2.67019942e-02\\n-1.86298266e-01 -1.25940621e-01 -1.64433196e-01 2.01995805e-01\\n-5.89219570e-01 -2.65446037e-01 4.29929733e-01 1.01364225e-01\\n1.29170820e-01 1.23921372e-01 1.90388918e-01 3.15314010e-02\\n-4.40045029e-01 -2.82660961e-01 3.08069229e-01 1.00680292e-01\\n8.97761434e-02 1.51667729e-01 -4.76597324e-02 -5.22465229e-01\\n-3.05674839e+00 -1.33334085e-01 8.87885839e-02 -2.47226775e-01\\n2.62427300e-01 -1.38471335e-01 1.00698337e-01 -1.00647137e-01\\n-2.82645464e-01 9.99853387e-03 -2.49801263e-01 -1.97526515e-01\\n9.51256603e-02 2.38607824e-01 7.14064091e-02 3.42387408e-02\\n-4.28449251e-02 -2.37445861e-01 8.61925930e-02 2.84338295e-01\\n-1.19588878e-02 -7.73476720e-01 -7.99035374e-03 -6.77736923e-02\\n1.66918471e-01 1.07998513e-01 -5.96637309e-01 -1.11885183e-02\\n-3.73665035e-01 -2.57558316e-01 1.81780428e-01 -3.07062060e-01\\n-1.16029792e-01 3.24119478e-01 1.99644938e-01 -7.13339224e-02\\n1.07592568e-02 -3.00836176e-01 -2.50040740e-01 -6.59163654e-01\\n1.81183949e-01 -6.06666565e-01 4.16864082e-02 -1.66898653e-01\\n6.59254968e-01 -3.01620901e-01 2.27224231e-01 2.80833453e-01\\n1.59079611e-01 1.81084901e-01 8.84357393e-02 5.14040850e-02\\n-3.00230145e-01 -2.70910293e-01 -1.12118125e-01 -2.42464393e-01\\n6.28367364e-01 3.86322409e-01 -2.13607371e-01 -9.11915749e-02\\n5.81795648e-02 -3.62291068e-01 -5.40301979e-01 -3.53309691e-01\\n-9.79812294e-02 -1.72546476e-01 -6.80168509e-01 -3.93984497e-01\\n-1.15329631e-01 -1.33489698e-01 -4.22258452e-02 6.83342159e-01\\n-4.62741017e-01 -3.29211831e-01 -3.48696522e-02 -6.77632928e-01\\n3.13090861e-01 -3.01966429e-01 6.40542060e-02 -2.69656241e-01\\n-3.30017686e-01 -5.30000091e-01 1.11605957e-01 -1.60983671e-02\\n-1.18153721e-01 -1.72929168e-01 1.19316027e-01 -2.46215776e-01\\n-2.98391908e-01 -5.19364178e-01 4.21613276e-01 1.17969662e-01\\n4.08891916e-01 2.10435301e-01 1.98674455e-01 -6.50608689e-02\\n2.81263173e-01 1.27188697e-01 -1.21781386e-01 -3.06379318e-01\\n1.20233506e-01 2.49918550e-04 4.48907226e-01 -1.80612147e-01\\n-3.68651822e-02 9.57769454e-02 -2.35675395e-01 -5.94640747e-02\\n4.58130121e-01 -1.95846893e-03 4.15652096e-02 -1.36039346e-01\\n3.73819113e-01 -4.26120758e-01 -6.86664283e-02 1.94678307e-01\\n5.42345159e-02 6.63331985e-01 3.32273766e-02 -3.68782341e-01\\n-4.07801978e-02 4.93418753e-01 9.39974189e-03 -1.46046169e-02\\n1.17506348e-02 1.78894326e-01 -1.55298769e-01 1.86173141e-01\\n5.48610091e-02 -1.42134592e-01 -2.42442012e-01 -1.02301627e-01\\n-1.18837364e-01 3.85284543e-01 2.72803813e-01 1.60218194e-01\\n-8.72684121e-02 -3.54359627e-01 -4.65783924e-02 2.44814098e-01\\n2.68395603e-01 4.27361727e-01 3.40087980e-01 -2.69384325e-01\\n2.55174357e-02 3.44860256e-01 -1.09492019e-01 3.39766651e-01\\n-3.40910017e-01 1.18652001e-01 -5.63863516e-01 -1.85167968e-01\\n-3.00910264e-01 -2.88967222e-01 2.42015138e-01 3.21130961e-01\\n1.77178070e-01 -1.05794132e-01 1.37466967e-01 -3.56750786e-01\\n2.11783513e-01 2.57244200e-01 2.29308069e-01 7.26502016e-02\\n-1.41104639e-01 6.73385501e-01 3.93916816e-02 -1.36842236e-01\\n-5.62194027e-02 1.00371763e-02 -1.34719372e-01 -3.12145174e-01\\n6.70060888e-03 -4.76588488e-01 -1.82723984e-01 3.38606715e-01\\n7.09000751e-02 -6.28865585e-02 -2.25250885e-01 3.73426080e-01\\n1.44180655e-03 -2.14185894e-01 -1.87222481e-01 -4.87079173e-02\\n2.22224206e-01 2.33383909e-01 3.10672790e-01 -5.64478755e-01\\n-8.03505778e-02 9.58180428e-02 -2.34673843e-02 5.19917071e-01\\n1.28718913e-01 3.32122222e-02 -3.04744840e-01 -2.07423866e-01\\n3.40077430e-01 -1.72427341e-01 -3.16100828e-02 -1.53439380e-02\\n9.24445689e-02 -1.38993829e-01 -3.89402598e-01 9.97232050e-02\\n-3.07223741e-02 -2.37960964e-01 3.91229019e-02 9.22504142e-02\\n7.53197074e-02 6.09467626e-02 -5.98304629e-01 -1.75097436e-01\\n-1.67163819e-01 7.52256513e-02 -5.99374995e-03 -5.07458866e-01\\n-4.16807830e-02 -1.24140367e-01 -5.65852642e-01 2.58499682e-01\\n-1.31889537e-01 -3.39706466e-02 1.61520645e-01 5.13504781e-02\\n-3.56561035e-01 -2.06277341e-01 1.08612724e-01 1.76079184e-01\\n-3.16559643e-01 -2.75190592e-01 1.10821910e-02 -9.92156863e-01\\n1.66068658e-01 5.48323393e-02 -1.65277869e-01 6.82473630e-02\\n1.22189693e-01 -7.23813951e-01 1.26398414e-01 -3.32096636e-01\\n1.99250299e-02 1.15322858e-01 -2.66815245e-01 -4.15241659e-01\\n1.59988105e-01 -7.03539252e-02 -1.61208257e-01 3.25673491e-01\\n-4.61650848e-01 4.90845561e-01 -1.47288248e-01 -9.86439437e-02\\n4.06275019e-02 -3.34151328e-01 1.58574477e-01 -1.65461212e-01\\n-3.56565952e-01 -2.64601171e-01 -3.01129103e-01 -3.86778891e-01\\n2.22498029e-02 -3.52318168e-01 -4.03638147e-02 7.04466999e-02\\n3.66939306e-01 2.79639494e-02 -1.97493881e-01 -1.52148098e-01\\n7.10444227e-02 -4.28212702e-01 5.56281880e-02 -9.75441039e-02\\n-1.43659674e-02 -1.44667745e-01 2.08054960e-01 3.37411910e-02\\n2.62298256e-01 -2.76447833e-01 5.08225024e-01 -3.22870106e-01\\n-4.10671234e-01 -1.37253508e-01 2.30009109e-02 3.31696197e-02\\n3.99647772e-01 -3.95186067e-01 9.22752470e-02 3.43813777e-01\\n2.53291965e-01 4.65510897e-02 2.42221087e-01 -2.77115941e-01\\n-5.34895808e-02 1.91484585e-01 -3.66234124e-01 2.05553085e-01\\n8.42537761e-01 2.68569946e-01 3.25346708e-01 1.45069271e-01\\n8.08566511e-02 3.27130377e-01 5.21162271e-01 -6.31700009e-02\\n-7.80357793e-02 2.59482086e-01 1.84369728e-01 -3.23108256e-01\\n-1.99285075e-01 -1.75386593e-02 -1.12789690e-01 -3.28607678e-01\\n5.88476658e-01 3.37012053e-01 -3.77013326e-01 -1.77071810e-01\\n-2.16785386e-01 -2.08481610e-01 3.46474409e-01 -3.22753340e-02\\n-9.71568525e-02 -1.09193139e-01 3.21281463e-01 -1.06178910e-01\\n2.38572761e-01 5.76311350e-01 -1.51160553e-01 -4.14378524e-01\\n-4.13754433e-02 3.55348170e-01 6.19533248e-02 4.16227520e-01\\n-1.20524712e-01 3.27054203e-01 1.66101586e-02 1.70951158e-01\\n-1.78174481e-01 -2.53256559e-02 2.83410162e-01 6.12890944e-02\\n2.69634485e-01 2.14625135e-01 3.88987243e-01 4.55691040e-01\\n2.83973783e-01 4.88232315e-01 2.93742806e-01 6.66268123e-03\\n4.98562753e-01 6.02943599e-01 4.30620968e-01 4.51423153e-02\\n1.47982957e-02 2.04432040e-01 8.37302506e-02 4.38843258e-02\\n3.13088387e-01 3.35341692e-01 6.35313690e-02 9.94269311e-01\\n2.51577020e-01 3.27685982e-01 7.13907599e-01 -6.27548814e-01\\n-2.99214512e-01 8.59089792e-02 5.50635397e-01 -4.47144896e-01\\n5.40072210e-02 4.19687778e-02 -2.27692217e-01 3.44874948e-01\\n-5.19270360e-01 -1.09892771e-01 -5.30936718e-02 1.81326270e-01\\n2.41788030e-02 -8.75484869e-02 -1.01246491e-01 2.48785876e-02\\n-1.87385947e-01 -2.25737348e-01 -3.05894077e-01 -1.32087961e-01\\n-3.41794491e-01 -1.53032750e-01 -5.80528937e-03 -1.02582403e-01\\n-1.33049004e-02 -2.74541378e-01 -7.21229166e-02 -3.97043750e-02\\n5.75172544e-01 -2.86352843e-01 -2.08839148e-01 -1.11376718e-01\\n3.12505126e-01 2.99222797e-01 6.61733687e-01 1.14860013e-03\\n-3.48253995e-02 -2.55359024e-01 -2.34566182e-01 6.96792454e-02\\n-8.21093395e-02 9.60538015e-02 4.69930135e-02 2.71116763e-01\\n-1.92358404e-01 -1.12043768e-01 1.16288483e-01 3.07152033e-01\\n-4.12232161e-01 -1.33328766e-01 -2.03985885e-01 1.19059302e-01\\n-3.91247123e-03 2.62317836e-01 -1.94980145e-01 5.64955845e-02\\n-1.57533824e-01 -5.43533564e-01 3.65039676e-01 -1.85788065e-01\\n-1.83677763e-01 -5.59363365e-02 2.66006261e-01 2.66440868e-01\\n-1.77906334e-01 -2.16637440e-02 -3.15545723e-02 2.85058022e-01\\n-9.34405252e-03 3.11616302e-01 -2.23829150e-01 -2.48703182e-01\\n-3.55325818e-01 2.39375353e-01 -4.14124914e-02 1.02587633e-01\\n2.35460699e-04 5.12061715e-01 3.74462493e-02 1.58546656e-01\\n3.61870110e-01 -7.27597475e-02 -2.90184677e-01 -3.13117445e-01\\n-1.83845267e-01 -2.68800318e-01 -5.72934300e-02 -4.00517508e-02\\n3.03331316e-01 -3.99256349e-01 -1.82873636e-01 -3.26407313e-01\\n-5.16338795e-02 -3.46780002e-01 -5.22978529e-02 -3.55726704e-02]]',\n", + " 'The Lausanne University Hospital (CHUV) is one of five Swiss university hospitals. Through its collaboration with the Faculty of Biology and Medicine of the University of Lausanne and the EPFL, CHUV plays a leading role in the areas of medical care, medical research and training. The mission of the Data Science group, wich part of CHUV Department of Information Systems, is to foster the adoption and use of data science and innovative tools in medical informatics within the hospital to significantly improve biomedical research and hospital key processes. To achieve this ambitious goal, one of the core tasks of the group is to develop the necessary IT infrastructure for providing physicians and scientists with the means to smoothly access and use, for their clinical research projects, the massive volume of clinical data that every day is generated within the hospital. Our current and future challenges lie at the intersection of big data, medical informatics, data protection and artifical intelligence. To address these challenges and push the bar furhter, a part of the Data Science Group is specifically focused on projects in Medical Informatics that will explore innovative Tools and technologies for implementing new prototype applications that could potentially be deployed in operational settings. As a Junior Software Engineer within our Data Science team, you will be responsible for : Defining technical and functional specification for new medical informatics applications based on end-users (scientists, physicians and IT experts) requirements and latest technological advances from the research academic community Developing and documenting robust and mature proofs of concept and prototypes of these applications and help in the transition to production environments within the team. In your past experiences, you have shown a proven track record of crafting innovative and elegant software solutions and the capacity to fully document the solutions you have developed. Your are passionate about technology and excited about working in the medical field. Requirements This position requires a university degree in Computer Science or Medical Informatics or equivalent discipline with : Proficiency in at least one object-oriented design development and data-driven development language (JAVA is highly preferable, Go is a plus) Excellent understanding of data structures and algorithms Ability to implement robust prototypes almost ready for deployment in production settings Experience with RESTful JSON APIs and design of micro-services and Web services Experience with relational database management systems and SQL Experience with front-end Framework such as VueJS, WebSockets ans HTML/CSS Experience with DevOps Tools for software deployment and automation using containerization frameworks such as Docker (Kubernetes and Docker Swarm are a plus) Experience with Agile software development as a team and version control (OAuth, OpenID connect, etc.) Oral and written proficiency in French is required to help you interact with end-users and peers on a daily basis. Benefits If you become an employee at the Centre Hospitalier Universitaire Vaudois, we will offer you the following : High social benefits Three days of training per year 25 working days of vacation per year Very good restaurants with preferential rates. ',\n", + " '[\"Research\", \"Collaboration\", \"Hospitality\", \"Operations\", \"Innovation\", \"Socialization\"]',\n", + " '[\"Automation\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Model-Driven Development\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Informatics\", \"Relational Database Management Systems\", \"MASSIVE (Software)\", \"Prototype (Manufacturing)\", \"OAuth\", \"IT Infrastructure\", \"Version Control\", \"DevOps\", \"Prototyping\", \"Docker Swarm\", \"Track (Rail Transport)\", \"Medic\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Functional Specification\", \"Software Engineering\", \"Agile Software Development\", \"Data Science\", \"Web Services\", \"Docker (Software)\", \"Biology\", \"Management Systems\", \"Clinical Research\", \"Object-Oriented Design\", \"Big Data\", \"Community Development\", \"Clinical Data Warehouse\", \"Data Structures\", \"Front End (Software Engineering)\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Medical Research\", \"OpenID\", \"JSON\", \"Database Management Systems\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"SQL (Programming Language)\", \"Software Deployment\", \"Adoptions\", \"Information Systems\", \"Java Scripting Languages\"]',\n", + " \"['English', 'Samoan']\"],\n", + " ['57',\n", + " 'java software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.29084960e-01 2.62140512e-01 5.79300046e-01 -1.71656758e-01\\n4.07597214e-01 -3.26852977e-01 1.65194467e-01 4.05312955e-01\\n-9.65342149e-02 -3.00251544e-01 -9.88191515e-02 -1.96574986e-01\\n-4.77293655e-02 1.41474620e-01 1.45884052e-01 2.29993805e-01\\n2.33096421e-01 1.49870053e-01 -1.31318286e-01 3.56698543e-01\\n2.72295237e-01 -1.14527576e-01 1.08554579e-01 5.86050332e-01\\n3.26876760e-01 8.07606876e-02 -1.11285605e-01 6.88832849e-02\\n-2.53506452e-01 -2.56446928e-01 2.78125018e-01 4.42170985e-02\\n-6.90350980e-02 -2.52867937e-01 9.26538631e-02 -2.53114514e-02\\n-2.09541827e-01 3.75378057e-02 4.48275022e-02 1.45989060e-01\\n-3.65990937e-01 -1.83742613e-01 2.03072742e-01 4.91157286e-02\\n-8.05805400e-02 -2.85860300e-01 5.99373952e-02 1.49497628e-01\\n6.75671622e-02 -4.39872183e-02 -5.61264634e-01 3.57233346e-01\\n-1.47572070e-01 -3.64316583e-01 2.91024536e-01 4.36253458e-01\\n-1.04230635e-01 -6.16168141e-01 -2.45343670e-01 -2.30915487e-01\\n4.34910096e-02 -1.37920409e-01 3.22204530e-02 -2.31258184e-01\\n3.45863283e-01 6.27038255e-03 -1.29938256e-02 3.77811968e-01\\n-7.09629238e-01 7.64465630e-02 -6.42108619e-02 -2.59581134e-02\\n-3.49609882e-01 -1.00747481e-01 -2.52771199e-01 -1.16413638e-01\\n-1.26173005e-01 3.78311276e-01 1.22334495e-01 1.87281609e-01\\n6.26367098e-03 2.58674830e-01 -1.61378756e-01 3.42225730e-01\\n2.58066267e-01 3.83898437e-01 2.17728078e-01 2.45320946e-01\\n-4.68446106e-01 3.63288790e-01 1.32109791e-01 -1.98365763e-01\\n2.26976633e-01 1.57001227e-01 4.33870465e-01 -2.62243710e-02\\n1.13484755e-01 5.34501933e-02 -1.61770463e-01 1.94297627e-01\\n2.32667506e-01 -2.44259194e-01 3.45729962e-02 3.00136302e-02\\n-1.13678522e-01 1.29885405e-01 -7.65851289e-02 3.66182178e-01\\n-2.67872930e-01 5.09282529e-01 1.24080583e-01 -1.89764172e-01\\n-5.92319779e-02 -5.59180260e-01 -1.87660724e-01 1.68634996e-01\\n-6.38767285e-03 8.91646147e-02 2.28649959e-01 2.67462701e-01\\n1.91463426e-01 1.57182887e-01 1.87111631e-01 9.07550514e-01\\n-8.93431902e-02 1.11689486e-01 -2.82156587e-01 4.13830489e-01\\n9.07552540e-02 -2.29949415e-01 1.62688047e-01 4.00202543e-01\\n2.42713511e-01 -7.82374963e-02 -2.01069251e-01 2.47408330e-01\\n-8.01034570e-02 -2.35209495e-01 -2.79558241e-01 8.26477259e-02\\n-1.92923948e-01 -4.46372360e-01 4.86904114e-01 1.02292307e-01\\n6.59147874e-02 7.53987134e-02 1.29386317e-03 -6.84737265e-02\\n-1.33449957e-01 2.65035719e-01 3.94960046e-02 1.50348410e-01\\n-2.95256197e-01 -2.25032777e-01 -3.76140863e-01 1.96317852e-01\\n-2.00848565e-01 1.08574346e-01 -1.43870115e-01 -1.23403348e-01\\n3.17099333e-01 -2.83494219e-02 -2.23216519e-01 3.97152126e-01\\n-4.04421948e-02 -1.01409974e-02 -1.02068029e-01 2.74176091e-01\\n-9.70218107e-02 2.45286912e-01 -9.12695602e-02 -1.77253246e-01\\n2.75721759e-01 1.29552037e-01 1.64233044e-01 1.01088174e-02\\n3.48058820e-01 -6.91108853e-02 6.41950518e-02 3.46440002e-02\\n-7.19029009e-01 3.06574225e-01 -6.37431489e-03 -8.19206089e-02\\n6.95343912e-02 8.85688327e-03 2.57347614e-01 -2.50735521e-01\\n6.79243952e-02 -1.64475128e-01 -4.16419864e-01 -3.00520629e-01\\n-1.58242866e-01 -9.34003573e-03 4.97058600e-01 -3.96503985e-01\\n-1.76454052e-01 1.13739207e-01 -4.60353374e-01 1.79139063e-01\\n3.72380346e-01 1.89577013e-01 -8.08419939e-03 4.63545062e-02\\n-1.80044219e-01 -4.72012371e-01 8.80408362e-02 -3.20214093e-01\\n-2.77306348e-01 2.21537769e-01 -3.52423519e-01 2.61282235e-01\\n6.25214353e-02 -1.31536305e-01 -1.48418462e-02 1.51662096e-01\\n-2.70396955e-02 -1.22175932e-01 2.33684763e-01 2.97234161e-04\\n4.14447635e-01 -9.06214118e-02 -4.28777814e-01 5.54850280e-01\\n-2.49403298e-01 5.05248725e-01 1.59539193e-01 -7.90125966e-01\\n4.47485358e-01 3.25576156e-01 1.00078098e-01 -3.11831146e-01\\n6.06809378e-01 -2.73261160e-01 5.95158599e-02 1.79553747e-01\\n-4.05985773e-01 -2.92614847e-01 1.86335132e-01 -1.78859279e-01\\n-1.37001216e-01 4.88239497e-01 7.96446726e-02 -4.87198606e-02\\n3.21331441e-01 -1.96211830e-01 -1.30077094e-01 4.95946370e-02\\n-1.53266087e-01 -2.80117601e-01 -2.49249980e-01 4.46733758e-02\\n2.81265695e-02 -5.47999382e-01 -6.05022311e-02 -4.06223208e-01\\n-2.39581779e-01 -2.35515207e-01 -2.75036573e-01 3.46829683e-01\\n2.07036123e-01 1.34964004e-01 5.98317906e-02 4.53713201e-02\\n-2.09509611e-01 -4.72107351e-01 1.34726390e-02 1.33512512e-01\\n3.86907429e-01 1.32881254e-01 8.86981785e-02 -1.10890217e-01\\n-1.59253135e-01 6.61159754e-01 -1.73006788e-01 -1.58518538e-01\\n2.96477098e-02 1.70770451e-01 -2.65163034e-02 -1.26020715e-01\\n9.18398127e-02 3.47344339e-01 -2.34830916e-01 7.84806982e-02\\n-1.80302486e-01 7.55594969e-02 3.61310065e-01 1.56322047e-02\\n-3.72833282e-01 -3.62376541e-01 -7.74660856e-02 1.96626455e-01\\n-5.16945243e-01 -1.45041287e-01 6.29496634e-01 1.81325376e-01\\n1.56735465e-01 1.73290581e-01 2.10562900e-01 -9.95065942e-02\\n-7.37534314e-02 -1.54107392e-01 1.84999436e-01 1.74400266e-02\\n1.06580839e-01 1.38123840e-01 -1.95422694e-01 -5.48624098e-01\\n-3.79720473e+00 -1.74370959e-01 6.81486204e-02 -3.45668733e-01\\n1.34696156e-01 -1.64355859e-01 5.19638956e-02 -1.62676111e-01\\n-1.42829657e-01 1.39625639e-01 -8.52936953e-02 -1.63554490e-01\\n2.48920843e-01 1.85274079e-01 3.79571654e-02 3.69863927e-01\\n2.47098684e-01 -1.78033426e-01 2.21272446e-02 3.04462790e-01\\n-1.46770552e-01 -5.73262691e-01 2.17467830e-01 -7.27875531e-02\\n3.37402135e-01 3.03049624e-01 -3.29685807e-01 -1.03959359e-01\\n-1.27226517e-01 -2.22954273e-01 6.49068952e-02 -2.20950544e-01\\n2.67458912e-02 3.53062034e-01 7.64386505e-02 -1.51834384e-01\\n1.77651390e-01 -3.14187825e-01 -2.06290130e-02 -4.19452369e-01\\n1.79779768e-01 -5.14288127e-01 -5.69003671e-02 -5.99027425e-02\\n6.56234920e-01 -4.93626416e-01 1.22995161e-01 1.79741323e-01\\n1.09203584e-01 3.48694772e-01 -1.54815719e-01 -2.33588666e-01\\n-2.03866675e-01 -2.77675748e-01 -4.01021242e-02 -2.53552407e-01\\n3.85173947e-01 6.48843944e-01 -2.37715155e-01 1.19471125e-01\\n-1.52950129e-03 -3.73087406e-01 -4.17490810e-01 -4.26818311e-01\\n-2.13820055e-01 -1.89948380e-01 -5.97916543e-01 -4.37155843e-01\\n-1.18316889e-01 -1.75993204e-01 -8.78522322e-02 4.08976853e-01\\n-3.13289076e-01 -4.92111415e-01 -2.55464166e-02 -4.47890133e-01\\n6.36267141e-02 -5.97159192e-02 -7.19825998e-02 -1.32814154e-01\\n-1.65673330e-01 -5.68688273e-01 -5.24402075e-02 3.78852263e-02\\n-1.46684170e-01 -1.07872866e-01 1.86718449e-01 -2.32145667e-01\\n-2.41659299e-01 -4.54704136e-01 4.56226766e-01 -5.03252670e-02\\n2.07454607e-01 1.22138366e-01 1.65329739e-01 1.02800213e-01\\n2.28984371e-01 -2.93347061e-01 1.66865543e-01 -4.04790938e-01\\n2.44832024e-01 1.75089151e-01 4.91878152e-01 -2.09653333e-01\\n6.01241924e-02 2.15408698e-01 -2.16286570e-01 -2.15403020e-01\\n3.56882632e-01 9.99459699e-02 1.30656824e-01 -2.71334291e-01\\n3.48226964e-01 -3.96887064e-01 -3.12238514e-01 1.28349409e-01\\n4.62036282e-02 4.97670978e-01 -4.17504162e-02 -3.49803269e-01\\n-2.95065939e-01 4.91938323e-01 -2.26600438e-01 -1.48372471e-01\\n-1.83266461e-01 1.14559695e-01 -1.92599624e-01 2.56521940e-01\\n-4.15016152e-02 -1.45989761e-01 -2.47003973e-01 -1.54537484e-01\\n-6.90116640e-03 2.35708073e-01 2.93744326e-01 6.31619021e-02\\n-7.60057196e-02 -5.22172272e-01 2.57216319e-02 4.34192829e-02\\n1.35942265e-01 2.84234732e-01 -2.58271936e-02 -7.25887641e-02\\n6.00554124e-02 2.67107219e-01 -1.27476558e-01 8.63471404e-02\\n-3.19040895e-01 1.44932438e-02 -3.45863372e-01 -3.38622212e-01\\n-2.26710796e-01 -2.10367590e-01 -1.75012663e-01 2.12140858e-01\\n9.53195095e-02 4.18410078e-02 -4.44164723e-02 -3.45209509e-01\\n2.99342722e-01 -5.13440855e-02 3.12278688e-01 2.07204461e-01\\n-5.63636841e-03 3.58169883e-01 2.68341284e-02 -8.88421834e-02\\n-2.69131571e-01 5.78232866e-04 -2.51413703e-01 -5.27364686e-02\\n-1.45653682e-02 -4.48338777e-01 -3.78288589e-02 3.15649956e-01\\n7.58910850e-02 -3.30348134e-01 -1.39867619e-01 1.29993200e-01\\n8.43751337e-03 -3.30788314e-01 -1.84637114e-01 1.02153234e-01\\n3.00187200e-01 3.23777236e-02 3.02469134e-01 -4.24009770e-01\\n-2.80864835e-02 8.25613663e-02 -1.22988045e-01 5.57096958e-01\\n-1.32440878e-02 -5.05492184e-03 -1.40434906e-01 -4.28213209e-01\\n2.64858335e-01 -1.91134498e-01 -1.03755360e-02 -3.95248458e-02\\n1.41391560e-01 4.15488239e-03 -3.08830142e-01 6.17188402e-02\\n-7.08237058e-03 -1.19427368e-01 -9.66810528e-03 -8.80531520e-02\\n6.48007095e-02 -3.65651306e-03 -5.14961600e-01 -3.30828130e-01\\n-2.58884877e-01 -1.94509491e-01 3.24086263e-03 -3.01865190e-01\\n-8.76956359e-02 2.35095154e-02 -5.54473937e-01 2.84144729e-01\\n-2.24388793e-01 5.56556247e-02 1.71301425e-01 -2.50074044e-02\\n-4.62158471e-01 -8.73459280e-02 2.81198502e-01 2.90880412e-01\\n-2.88447082e-01 -1.84368506e-01 -6.47123437e-03 -9.60020721e-01\\n2.98601687e-01 -2.76184957e-02 -1.81323573e-01 -1.89398546e-02\\n-1.15069367e-01 -4.39909965e-01 1.78857833e-01 -3.41170669e-01\\n-1.28895342e-01 -8.72199796e-03 -1.85656905e-01 -4.36690122e-01\\n-7.66918659e-02 -1.16913272e-02 -2.15566769e-01 4.61736590e-01\\n-4.41099912e-01 2.95564801e-01 -6.44047186e-02 7.79837593e-02\\n-1.72699213e-01 -2.39468977e-01 1.22657023e-01 -4.42643821e-01\\n-4.02533948e-01 -5.62420301e-02 -2.36788079e-01 -1.79275900e-01\\n5.50360195e-02 -1.54304117e-01 -9.01202038e-02 1.05518691e-01\\n2.08000854e-01 6.54802620e-02 -1.49603225e-02 -2.94320911e-01\\n6.38013780e-02 -4.44533527e-01 -3.41661684e-02 -1.93370670e-01\\n-2.72248648e-02 -7.48529509e-02 1.28084973e-01 7.29332641e-02\\n-8.34841654e-02 -4.07469720e-01 3.36332232e-01 -1.69539034e-01\\n-2.47921854e-01 -3.87980938e-02 -4.27790023e-02 1.67673945e-01\\n1.75111219e-01 -4.30553854e-01 1.64892450e-02 1.87088519e-01\\n1.22670099e-01 1.06567591e-01 1.92715436e-01 1.87237356e-02\\n-1.32882625e-01 3.44261646e-01 -2.71941960e-01 5.71830831e-02\\n7.29898572e-01 1.60022154e-01 5.00025898e-02 2.50351340e-01\\n2.24849731e-01 3.54331404e-01 5.01193941e-01 3.47868279e-02\\n-5.36318570e-02 2.76669621e-01 3.00203171e-02 -5.63144565e-01\\n7.23579377e-02 1.03664212e-01 -3.01357418e-01 -2.10207999e-01\\n7.26305962e-01 4.49892849e-01 -3.87940764e-01 -2.70315826e-01\\n-7.84376785e-02 -1.78805694e-01 6.79090321e-02 -2.25535497e-01\\n1.01930976e-01 -2.99393296e-01 5.11175454e-01 -5.89572862e-02\\n1.33490101e-01 5.90807557e-01 -2.30453894e-01 -4.05031055e-01\\n-8.45221151e-03 1.93494290e-01 1.33255109e-01 3.07476014e-01\\n-2.23773599e-01 2.09919855e-01 -2.85993721e-02 1.78545326e-01\\n6.45296946e-02 2.26957142e-01 1.31066576e-01 8.83392841e-02\\n1.75895467e-01 4.47175987e-02 3.06151539e-01 3.61837357e-01\\n3.71646076e-01 4.92488712e-01 1.86429247e-01 1.04656316e-01\\n5.11437595e-01 4.63136673e-01 3.25913817e-01 1.39486611e-01\\n1.25734974e-03 4.48078178e-02 8.67418274e-02 -8.34776759e-02\\n2.75208473e-01 2.87221074e-01 5.13051711e-02 9.40322101e-01\\n4.01445568e-01 1.61561146e-01 7.63075471e-01 -6.19205892e-01\\n-4.82153893e-01 -1.07107341e-01 3.89787585e-01 -2.85050333e-01\\n-1.59934416e-01 5.27569577e-02 -2.12324843e-01 2.24476963e-01\\n-4.27165270e-01 -1.29779354e-01 2.96830796e-02 -2.51617320e-02\\n1.20508529e-01 -2.50530560e-02 -2.84693182e-01 -1.50112122e-01\\n-1.95078954e-01 -6.76711947e-02 -4.20511723e-01 -4.30753976e-02\\n-2.06791654e-01 -1.80271849e-01 -1.53617263e-01 -1.80420682e-01\\n-4.40341197e-02 -4.91700143e-01 -2.10986003e-01 6.74237683e-02\\n2.67116189e-01 -1.01142794e-01 8.60791828e-04 -2.22757891e-01\\n2.37010539e-01 2.62929112e-01 5.13498068e-01 -5.41779101e-02\\n7.43862474e-03 -1.22914925e-01 -2.15431511e-01 8.32456574e-02\\n1.60949126e-01 1.35326192e-01 -4.92119230e-03 3.96250576e-01\\n-3.88670534e-01 -8.25216025e-02 3.71140987e-02 4.66852933e-01\\n-4.52326715e-01 -2.45625116e-02 5.93731776e-02 3.32390189e-01\\n7.14467764e-02 3.21494900e-02 -2.27269188e-01 3.20281908e-02\\n-2.79562116e-01 -4.70314234e-01 2.94201612e-01 -3.86737734e-02\\n-7.19742998e-02 1.82324216e-01 1.70109197e-01 1.70506924e-01\\n-1.81220010e-01 -8.86387751e-02 5.20936586e-02 1.44922122e-01\\n3.04070532e-01 2.92848170e-01 -2.61507481e-01 -2.44107917e-01\\n-2.50973791e-01 1.40726462e-01 -3.33147496e-01 1.73834905e-01\\n-1.15660913e-01 2.59455591e-01 1.67472363e-01 1.77322060e-01\\n2.58830339e-01 1.91054419e-02 -1.25682026e-01 -1.32026717e-01\\n-2.99569994e-01 -3.01465154e-01 1.45465672e-01 1.47434482e-02\\n1.35304227e-01 -4.56657380e-01 2.19002180e-03 -4.16494580e-03\\n-1.81738153e-01 -2.89314747e-01 -8.25659484e-02 -2.33927086e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Java Software Engineer. This role is permanent position based in Zürich Canton. Your Role: Hold joint responsibility for conception, implementation, testing & quality assurance within customer projects. Utilize the following Technology Stack: Java 8/11, SpringBoot, Spring Framework, Swagger, REST, SOAP, Angular 8+, Maven, GitLab CI, Docker, Kubernetes, HL7 FHIR & IHE. Your Skills: At least 4 years of professional Java Software Engineering experience. Sound experience with different webservice technologies such as REST & SOAP & modern Software Architectures like Spring Boot, Spring Data & Swagger. A knowledge of Continuous Integration & Continuous Deployment. Ideally experienced in Agile Software Development. Your Profile: Computer Science University Degree. Creative, responsible, dynamic, self-driven & both team & quality-oriented. Fluent English (spoken & written), German is considered very advantageous. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Quality Assurance\", \"Creativity\", \"Positivity\"]',\n", + " '[\"Kubernetes\", \"Spring Boot\", \"Computer Science\", \"Continuous Integration\", \"Spring Data\", \"Idealization\", \"Java 8\", \"Software Engineering\", \"Agile Software Development\", \"Docker (Software)\", \"Apache Maven\", \"Software Architecture\", \"Receivables\", \"Angular (Web Framework)\", \"Software Development\", \"Software Modernization\", \"Simple Object Access Protocol (SOAP)\", \"Swagger UI\", \"Java (Programming Language)\", \"Gitlab\", \"Spring Framework\"]',\n", + " \"['English', 'Norwegian Nynorsk', 'Hungarian', 'Macedonian', 'Kinyarwand']\"],\n", + " ['122',\n", + " 'software support engineer (fr, ch, be, lu)',\n", + " 'Bern',\n", + " 'Internet',\n", + " 'www.therefore.ca',\n", + " '[[-1.55777916e-01 2.44646162e-01 4.60761309e-01 1.32202441e-02\\n4.27852601e-01 -1.70495957e-01 1.49829969e-01 5.15513301e-01\\n1.98983215e-02 -4.21885222e-01 -5.19852787e-02 -1.41450763e-01\\n1.08371019e-01 1.40827313e-01 1.48692399e-01 3.20744693e-01\\n3.37379754e-01 2.18882591e-01 -2.77064741e-01 3.16944510e-01\\n3.65652815e-02 -2.18486264e-01 2.15076670e-01 7.29440093e-01\\n6.40528560e-01 7.72121176e-02 -5.76715507e-02 -3.02792974e-02\\n-1.67261645e-01 -3.08670282e-01 4.98694271e-01 -1.90470859e-01\\n-9.24927066e-04 -3.46925765e-01 1.92726374e-01 -2.18261052e-02\\n-1.82223916e-01 3.87611613e-02 -1.66576579e-01 -3.89696360e-02\\n-4.63668555e-01 4.78723273e-03 5.43792062e-02 1.40126795e-01\\n-2.63701022e-01 -3.98818225e-01 1.68714151e-01 -4.79045734e-02\\n2.40668774e-01 -7.78185055e-02 -4.32403386e-01 3.02379876e-01\\n-2.62874901e-01 -2.03442186e-01 3.62532794e-01 5.97161591e-01\\n-1.76009998e-01 -5.24223149e-01 -5.56016505e-01 -3.70052040e-01\\n4.12188135e-02 -8.10416564e-02 8.10493007e-02 -3.66510540e-01\\n3.36701870e-01 6.52503967e-03 7.20869824e-02 3.67358863e-01\\n-7.79127002e-01 -8.71852040e-02 -1.78243116e-01 -1.46569267e-01\\n-2.85961360e-01 -1.05965897e-01 -4.65223610e-01 -7.05951080e-02\\n-2.32167542e-01 3.36989522e-01 4.43681702e-02 4.25488763e-02\\n-2.23287359e-01 2.80868798e-01 -2.96769202e-01 4.03848410e-01\\n1.30317986e-01 3.12463105e-01 2.91959375e-01 2.84992367e-01\\n-2.61566848e-01 5.34558535e-01 1.81289077e-01 -2.77079493e-01\\n1.66980848e-01 1.19555704e-01 4.82461423e-01 -1.65927008e-01\\n3.44761342e-01 1.19609637e-02 -3.46580416e-01 2.62116760e-01\\n3.64019126e-01 -3.76346886e-01 -3.39216925e-02 -7.04857260e-02\\n-1.32716056e-02 7.15230405e-02 9.77599844e-02 2.36990616e-01\\n-3.20370823e-01 5.10214806e-01 1.58937022e-01 -2.10255235e-01\\n-1.02614038e-01 -4.79490072e-01 -1.45123899e-01 7.68300071e-02\\n7.35836104e-02 1.55027568e-01 1.18624493e-01 1.56649068e-01\\n2.95725495e-01 -8.91818255e-02 9.39065441e-02 7.83210695e-01\\n-1.21435538e-01 3.67878787e-02 -2.77181089e-01 2.90609628e-01\\n-5.53212650e-02 -4.45692509e-01 3.42103273e-01 8.21334049e-02\\n1.09309316e-01 -4.55162600e-02 -2.49884859e-01 3.15673292e-01\\n-1.30174115e-01 -2.27295280e-01 -3.23884636e-01 2.65941143e-01\\n-1.08012825e-01 -4.24779177e-01 5.74313223e-01 -8.70489515e-03\\n1.31414920e-01 -1.04726419e-01 6.94150403e-02 -1.41446337e-01\\n-7.21814409e-02 1.80480897e-01 1.58814654e-01 6.09865785e-02\\n-2.93721616e-01 -2.93014526e-01 -1.77519724e-01 4.01413217e-02\\n-3.79075408e-01 1.30171672e-01 -1.41121343e-01 -1.07364096e-01\\n3.29733223e-01 -4.92025241e-02 -2.35559657e-01 2.83330590e-01\\n-1.79927528e-01 1.65434480e-01 -7.16299191e-02 3.83954763e-01\\n-2.21877679e-01 3.96518528e-01 -4.04499136e-02 9.56663340e-02\\n6.76679969e-01 9.93323475e-02 7.84072801e-02 -8.71284753e-02\\n2.86113024e-01 5.39272353e-02 1.49278075e-01 4.50444929e-02\\n-7.23957002e-01 4.47063148e-01 -7.98003282e-03 -1.87707260e-01\\n1.24477893e-01 -1.92692965e-01 3.01498324e-01 -4.46159989e-01\\n-8.75811726e-02 -1.12040214e-01 -3.15513253e-01 -2.74277508e-01\\n-2.56920695e-01 -7.10819215e-02 4.11121547e-01 -4.47752416e-01\\n1.60519369e-02 1.90174103e-01 -4.91433293e-01 6.23355061e-02\\n1.83634341e-01 1.73873201e-01 1.19613163e-01 2.14902118e-01\\n-2.48103291e-01 -4.85935003e-01 1.87821820e-01 -3.13208580e-01\\n-1.64551258e-01 1.92917556e-01 -3.24072659e-01 1.91968501e-01\\n8.72255862e-02 -5.17328503e-03 -1.52181029e-01 1.59750775e-01\\n-1.28285363e-01 -3.60016674e-02 9.75285321e-02 6.58773333e-02\\n3.50631207e-01 1.59893259e-01 -4.56033826e-01 4.60074633e-01\\n-7.83750042e-02 4.95820582e-01 6.93663582e-02 -7.54754424e-01\\n3.71111035e-01 3.22362959e-01 5.26960082e-02 -2.76920617e-01\\n6.20774567e-01 -1.62459254e-01 -1.61150321e-01 8.09434056e-02\\n-4.92908686e-01 -3.82737219e-01 1.28633529e-01 -2.28127003e-01\\n-2.61436075e-01 4.18014884e-01 -6.89997971e-02 1.16534978e-01\\n9.93123576e-02 -1.32335052e-02 -5.01167476e-02 1.54149041e-01\\n1.28883839e-01 -1.08230852e-01 -5.53067982e-01 -1.90396294e-01\\n-5.46686091e-02 -3.42771769e-01 -1.40139028e-01 -4.82705384e-01\\n-2.11515889e-01 -2.57839590e-01 -1.76500842e-01 4.25553881e-02\\n2.25386217e-01 1.30591661e-01 7.48763010e-02 9.63162184e-02\\n-2.84399331e-01 -5.51806331e-01 1.71523262e-02 7.57191181e-02\\n2.82134533e-01 2.98980474e-01 9.19542238e-02 1.69313755e-02\\n-3.56942862e-02 7.07063138e-01 -2.29328528e-01 -5.53242490e-02\\n2.03005031e-01 1.49062023e-01 2.66597904e-02 -1.86680034e-01\\n1.18516393e-01 3.93120736e-01 -3.58069867e-01 -5.33777997e-02\\n-9.80035663e-02 -6.69718534e-02 3.41944665e-01 -1.09312292e-02\\n-3.38619858e-01 -2.53083736e-01 -1.36584237e-01 6.18402436e-02\\n-4.44429427e-01 -2.75446624e-01 6.13491178e-01 4.17287499e-02\\n2.40862787e-01 2.02856824e-01 3.04710090e-01 -8.37553367e-02\\n-1.77283898e-01 -2.67449945e-01 1.79336831e-01 1.16035186e-01\\n7.55361766e-02 1.15386561e-01 -8.34488273e-02 -7.06578851e-01\\n-3.31819034e+00 -6.64388435e-03 2.91053116e-01 -3.70115995e-01\\n3.91724676e-01 -1.13145083e-01 1.25320762e-01 -1.43452451e-01\\n-2.81581104e-01 4.65349779e-02 -2.23548323e-01 -1.46493226e-01\\n1.81097135e-01 1.53515056e-01 1.24589272e-01 2.07910448e-01\\n3.20061833e-01 -3.00651908e-01 2.08528601e-02 2.67527580e-01\\n-1.64164424e-01 -5.96459210e-01 2.74880916e-01 2.54488699e-02\\n3.91146839e-01 4.34081852e-01 -3.92175347e-01 -2.18711540e-01\\n-2.81554222e-01 -1.12926178e-01 1.14689030e-01 -2.67343819e-01\\n-1.31848052e-01 2.82149166e-01 1.95411175e-01 -1.98850214e-01\\n1.46193847e-01 -3.91227722e-01 -5.32448851e-02 -3.58703583e-01\\n4.53238338e-02 -5.53824663e-01 -5.09958304e-02 -4.89958078e-02\\n8.69408965e-01 -3.34439516e-01 1.59568086e-01 -1.84388142e-02\\n1.95699498e-01 1.67088166e-01 2.35443395e-02 3.06046177e-02\\n-2.15773329e-01 -1.02752969e-01 -3.46387923e-02 -1.98693335e-01\\n5.75735152e-01 5.06339610e-01 -2.65325695e-01 -1.45466030e-01\\n-8.04520212e-04 -3.09237987e-01 -4.00573015e-01 -1.62762254e-01\\n-2.57487655e-01 -2.56285340e-01 -5.18521130e-01 -4.43848372e-01\\n-1.59129262e-01 -4.00832780e-02 -1.99822243e-02 4.50307041e-01\\n-2.09728003e-01 -3.36250663e-01 -7.73774385e-02 -4.79032636e-01\\n2.31154710e-01 -5.00294520e-03 9.85561237e-02 -2.74619281e-01\\n-1.27426758e-01 -4.41160530e-01 -2.29107887e-02 -4.33109999e-02\\n-9.38500911e-02 -2.79728144e-01 1.26884878e-01 1.51579414e-04\\n-3.05372208e-01 -5.14321208e-01 2.46081099e-01 1.27358735e-01\\n2.56379098e-01 8.40839818e-02 1.76730305e-01 -1.35128302e-02\\n2.33873323e-01 -2.12859794e-01 1.71754435e-01 -4.98271942e-01\\n8.14767629e-02 4.70817871e-02 5.67152262e-01 -1.35044113e-01\\n6.92816675e-02 1.29755944e-01 -2.07630634e-01 -1.19482920e-01\\n3.08001459e-01 1.24092596e-02 3.69739011e-02 -3.37594122e-01\\n2.31122687e-01 -1.89400643e-01 -2.33733818e-01 -7.61996508e-02\\n-3.76102068e-02 5.62368810e-01 3.59796025e-02 -2.86713272e-01\\n-4.68286872e-02 5.41302800e-01 -1.53587937e-01 2.15905026e-01\\n-2.00532809e-01 9.34032425e-02 -2.57418185e-01 1.53681025e-01\\n1.56245120e-02 -1.88835934e-01 -1.49758384e-01 -1.50384843e-01\\n-7.31983781e-02 4.02921557e-01 2.54822731e-01 1.78068131e-01\\n-2.16893032e-02 -5.01081169e-01 -7.49811307e-02 3.08025658e-01\\n7.27852359e-02 4.48885173e-01 -4.23470214e-02 -2.97585338e-01\\n1.10528171e-02 3.36962700e-01 -2.39874691e-01 2.35921398e-01\\n-2.65145659e-01 9.48325843e-02 -5.37121594e-01 -2.13374361e-01\\n-2.14532122e-01 -4.38523293e-01 1.13080211e-01 3.19716394e-01\\n2.64240764e-02 1.57901719e-01 -8.22614655e-02 -3.63574862e-01\\n2.15572625e-01 -3.27014588e-02 1.50314197e-01 3.02456945e-01\\n-4.57534939e-02 4.17071640e-01 -5.65754138e-02 -1.14566550e-01\\n-2.57182539e-01 2.87781686e-01 -1.01788752e-01 -8.15691613e-03\\n1.08806804e-01 -4.32945341e-01 -1.36645526e-01 3.26870590e-01\\n1.92701399e-01 -1.35639012e-01 -1.28477708e-01 1.24875575e-01\\n-9.70412977e-03 -4.50688183e-01 -3.02522779e-01 1.02883670e-02\\n2.98259795e-01 1.17870353e-01 3.37139219e-01 -5.24307489e-01\\n4.03249413e-02 -8.33124667e-02 -1.41711771e-01 4.25192684e-01\\n-2.02756926e-01 2.70504020e-02 -2.26189762e-01 -2.41214797e-01\\n3.72215450e-01 -1.98244564e-02 5.24469502e-02 1.36542097e-01\\n1.26975745e-01 -2.62327373e-01 -4.93684709e-01 1.25261396e-02\\n-4.42339554e-02 -1.16371989e-01 1.23740032e-01 5.96065857e-02\\n-2.50907764e-02 1.08942844e-01 -6.14572883e-01 -1.61966547e-01\\n-2.83434957e-01 2.62255725e-02 -1.36890439e-02 -4.45676088e-01\\n-1.26759961e-01 -1.28122633e-02 -5.03574610e-01 1.92078292e-01\\n-3.51851374e-01 -9.50949863e-02 1.92498401e-01 -7.75506198e-02\\n-3.94652456e-01 -5.88098280e-02 1.32708848e-01 3.25075686e-01\\n-2.16178328e-01 -2.56074458e-01 -4.48262095e-02 -1.04825044e+00\\n2.23646924e-01 -4.47032489e-02 -1.12437055e-01 2.18818843e-01\\n-7.57814199e-02 -7.27118194e-01 1.66086838e-01 -3.01929563e-01\\n-1.63327247e-01 -8.22161883e-02 -1.47352353e-01 -3.61699909e-01\\n1.25090152e-01 2.70729717e-02 -3.36827517e-01 4.17273849e-01\\n-2.03751162e-01 3.06239635e-01 -7.81369954e-02 6.93842024e-02\\n-2.05008313e-01 -2.36555949e-01 1.15896314e-02 -5.73920071e-01\\n-3.03102940e-01 -1.06991373e-01 -2.37361118e-01 -5.74391149e-02\\n-4.24181037e-02 -3.32903117e-01 -8.05178806e-02 2.41500959e-01\\n4.12768304e-01 8.00553709e-03 -1.37136742e-01 -1.83592498e-01\\n2.04979572e-02 -5.49830973e-01 1.41527683e-01 6.76143095e-02\\n-1.28784686e-01 -1.08879484e-01 1.25018701e-01 1.90895230e-01\\n2.66824007e-01 -5.18946528e-01 3.33700031e-01 -3.24654847e-01\\n-4.04191017e-01 3.90954539e-02 2.19617561e-02 -1.05853610e-01\\n4.59242731e-01 -4.79619920e-01 -1.35602862e-01 4.42796022e-01\\n-2.06907652e-02 3.99441943e-02 2.27149636e-01 -1.42135382e-01\\n-1.28183886e-01 2.92446405e-01 -3.81958455e-01 1.46428850e-02\\n7.60540307e-01 1.55388281e-01 1.34212554e-01 1.55132055e-01\\n1.12253889e-01 3.49402755e-01 4.53990459e-01 -7.37201124e-02\\n-1.64760038e-01 3.39403957e-01 -5.71803190e-03 -6.35221541e-01\\n6.55890852e-02 -3.38497534e-02 -3.86990964e-01 -3.71794730e-01\\n6.82123899e-01 4.21101063e-01 -3.60324889e-01 -3.31207067e-01\\n-1.79230854e-01 -2.74212420e-01 1.46484263e-02 -1.17420331e-02\\n5.49856164e-02 -1.70786843e-01 4.64682698e-01 3.66226397e-02\\n1.17425151e-01 5.31530619e-01 -2.17245281e-01 -3.52364182e-01\\n8.84826295e-03 1.54161260e-01 -1.40242547e-01 5.53890407e-01\\n-2.64476389e-01 2.39670157e-01 3.24540841e-03 5.39631806e-02\\n-7.47219771e-02 1.94921255e-01 4.07316200e-02 1.50618702e-01\\n8.86686817e-02 1.67923704e-01 5.28612316e-01 5.21264851e-01\\n3.28501701e-01 4.34492826e-01 3.73809934e-01 -1.23514532e-04\\n5.52590311e-01 4.20426518e-01 4.59228516e-01 1.43709615e-01\\n3.12787555e-02 6.66666776e-02 1.78284287e-01 1.77383535e-02\\n3.86749476e-01 2.68428862e-01 -4.57613207e-02 8.96503031e-01\\n3.72031540e-01 2.09202200e-01 7.44310558e-01 -6.89597189e-01\\n-3.14958423e-01 -6.47929609e-02 4.33343500e-01 -4.82031107e-01\\n-7.06584007e-02 1.27265796e-01 -1.46234989e-01 2.52761006e-01\\n-4.41855252e-01 -4.05184239e-01 -8.39511901e-02 1.60894424e-01\\n-6.51107803e-02 -1.99470833e-01 -1.78317010e-01 -1.27511984e-02\\n-9.79640335e-02 -2.02443972e-01 -5.55700779e-01 -2.58728545e-02\\n-2.66039640e-01 -6.32944405e-02 -1.34583980e-01 -2.58409679e-01\\n-8.22316632e-02 -3.11412454e-01 1.36025976e-02 2.52741780e-02\\n9.96530280e-02 -3.64415608e-02 2.55640410e-02 -1.50882259e-01\\n4.68516022e-01 1.21745020e-01 5.10959148e-01 7.68714249e-02\\n4.14141640e-02 -1.89197019e-01 -1.78109229e-01 2.05753505e-01\\n2.35390767e-01 2.13140510e-02 1.84690788e-01 3.14052165e-01\\n-3.71250272e-01 -3.62805367e-01 5.86790480e-02 4.36567366e-01\\n-5.66225111e-01 -4.04161736e-02 1.71136066e-01 1.73994452e-01\\n1.04999550e-01 8.50558504e-02 -4.57604080e-02 -4.41071503e-02\\n-4.89096902e-02 -3.45571965e-01 2.17098668e-01 1.17173679e-01\\n-1.77350566e-01 5.97769842e-02 1.52673811e-01 2.05181032e-01\\n-1.87648162e-01 -3.07280328e-02 -1.53537810e-01 9.31175277e-02\\n9.87549946e-02 2.27448732e-01 -1.28859013e-01 -3.07745695e-01\\n-2.20803484e-01 8.82185027e-02 -3.15490365e-01 9.08235535e-02\\n-4.25345311e-03 1.89366877e-01 -6.74795285e-02 9.47511792e-02\\n4.62229013e-01 -5.05791269e-02 -1.77264571e-01 -2.50555009e-01\\n-8.83811340e-02 -2.04137564e-01 -3.02797519e-02 -1.70584708e-01\\n2.22457200e-01 -3.67062181e-01 -1.06782697e-01 -1.57961607e-01\\n-1.35396391e-01 -2.68211633e-01 1.30593717e-01 -6.25805035e-02]]',\n", + " \"The Profile: We're looking for a motivated person that loves challenges and the satisfaction that comes along with not only finding a solution, but helping out our customers along the way. The ideal candidate should bring a number of the following qualifications to the table: Bachelor's degree in computer science, engineering, math, or the physical sciences. Communicate effectively in person, on the phone, and electronically while maintaining professionalism. Think with a clear mind and develop clever and useful solutions. Excellent knowledge of Microsoft server and client software. Knowledge of database technology. Knowledge of scripting and SQL is a plus. Intelligence, motivation, and a team player attitude. Native French and fluent English speaking, German is a bonus. The Job:Main responsibilities include: Provide support via phone, web, and email to our resellers and customers. Consult and develop effective relationships with our reseller's technical support staff. Support and advise our reseller’s technical staff in designing the most efficient architecture for complex projects Test Therefore software Assist with creating resources such as Knowledge Base articles This is a home-based contractor position with up to 30% travelling required. As the main goal of this role is to provide support for the French speaking countries, the ideal candidate must be located in France, Belgium or Switzerland. The Rewards: A challenging and diversified job in an internationally oriented, rapidly growing company. A flexible work environment with the freedom to work from anywhere with an internet connection. Technical training and a competitive salary. An international, highly motivated and creative team to support you every step of the way. If these tasks sound like something you would enjoy, we want to hear from you! We look forward to receiving your application at career@therefore.net.\",\n", + " '[\"Professionalism\", \"Communications\", \"Creativity\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Projective Tests\", \"Internet Connection Sharing\", \"Knowledge Base\", \"Advising\", \"Resourcing\", \"Electronics\", \"Scripting\", \"Personalization\", \"Microsoft Servers\", \"Maintainability\", \"Computer Science\", \"Knowledge Management Software\", \"Therapeutic Support Staff\", \"SQL (Programming Language)\", \"Physical Science\", \"Technical Training\", \"Receivables\", \"Technical Support\"]',\n", + " \"['English', 'Greenlandic', 'Haitian Creole', 'Ossetic', 'Kirghiz']\"],\n", + " ['57',\n", + " 'software engineer .net / c# – 100%',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.36485139e-01 3.94954354e-01 3.41715157e-01 -1.32264718e-01\\n3.74576837e-01 -2.54453957e-01 2.09059119e-02 3.41425091e-01\\n-1.75991692e-02 -4.42179978e-01 -7.92926028e-02 -2.43561134e-01\\n7.10741132e-02 9.04551297e-02 -9.63264424e-03 3.50516498e-01\\n2.74466723e-01 7.14818062e-03 -3.08538917e-02 2.52134174e-01\\n3.03227138e-02 -1.29845172e-01 1.19766101e-01 7.36797571e-01\\n3.16248566e-01 2.17099991e-02 1.32607311e-01 1.85543358e-01\\n-1.79492980e-01 -3.34556580e-01 3.65690768e-01 -1.61332004e-02\\n-5.49911940e-03 -3.59695554e-01 8.21324810e-02 6.36048317e-02\\n-6.59294873e-02 7.82380924e-02 -6.99861869e-02 2.14569241e-01\\n-4.39809978e-01 -2.67401487e-01 9.92009938e-02 -4.94685210e-02\\n-1.28686696e-01 -4.03075278e-01 8.25145170e-02 -1.22965835e-01\\n2.00440690e-01 3.95298861e-02 -4.29515630e-01 3.65492344e-01\\n-2.67873466e-01 -2.24930495e-01 4.12095219e-01 6.19897246e-01\\n-5.89494817e-02 -6.15805745e-01 -4.83195812e-01 -1.68435156e-01\\n2.39223883e-01 -2.32865140e-02 2.72755735e-02 -2.67609447e-01\\n4.72929269e-01 6.20526075e-02 6.00723848e-02 3.62588853e-01\\n-9.03697848e-01 -2.35060025e-02 -3.60300481e-01 7.21358880e-02\\n-3.69268149e-01 -1.08621888e-01 -2.98044682e-01 -1.43332496e-01\\n-2.51289904e-02 3.90140533e-01 1.33863790e-03 -1.08914822e-01\\n-9.85813364e-02 3.35853487e-01 -2.98422068e-01 2.19803050e-01\\n2.56180704e-01 1.81577921e-01 3.44661355e-01 2.46916115e-01\\n-4.89581585e-01 5.00588894e-01 3.27083200e-01 -2.01793477e-01\\n1.78733632e-01 4.03531864e-02 4.25046742e-01 1.14650531e-02\\n1.21262982e-01 2.23240152e-01 -2.13071108e-01 3.39441806e-01\\n2.65943825e-01 -1.51190102e-01 -9.85910743e-02 2.25233324e-02\\n6.32974654e-02 -2.46682651e-02 6.79992884e-02 3.25123340e-01\\n-3.85843813e-01 5.31564474e-01 9.42794904e-02 -2.20251039e-01\\n-9.32294652e-02 -5.54951310e-01 -2.29636863e-01 1.80726513e-01\\n-4.55443412e-02 9.97670516e-02 6.13826290e-02 2.96297282e-01\\n4.14158516e-02 3.44178937e-02 5.79324178e-02 8.71967971e-01\\n-9.83784720e-02 1.96378872e-01 -1.78804621e-01 4.14466649e-01\\n1.22616284e-01 -4.17080253e-01 2.45881215e-01 2.59527236e-01\\n1.12097614e-01 -1.28335759e-01 -1.20227166e-01 2.76320666e-01\\n-2.21474972e-02 -3.10264081e-01 -4.67084318e-01 2.19665349e-01\\n-2.03669950e-01 -4.01662409e-01 5.82797766e-01 -1.79883409e-02\\n1.47994384e-01 6.72786459e-02 -1.00305900e-01 -9.68524218e-02\\n-1.69183731e-01 3.46817583e-01 -6.42323792e-02 2.13435501e-01\\n-3.66622716e-01 -2.22823247e-01 -3.13481212e-01 2.30154186e-01\\n-1.55536011e-01 1.30251691e-01 -2.55749196e-01 -1.01911336e-01\\n4.77887422e-01 -1.17601559e-03 -3.08606714e-01 3.12453479e-01\\n-1.97987575e-02 8.15325603e-02 -1.92058012e-01 2.10213557e-01\\n-4.75911424e-02 2.09640652e-01 -9.92233530e-02 -6.46374077e-02\\n4.02092606e-01 5.51445335e-02 1.15047559e-01 -1.94033280e-01\\n3.52754265e-01 -1.88722745e-01 7.49055073e-02 4.55752760e-02\\n-6.03218853e-01 3.94284219e-01 -1.01720415e-01 -3.26695815e-02\\n1.63442660e-02 -5.46897985e-02 2.34095350e-01 -2.68656045e-01\\n-1.27077252e-01 -1.08827710e-01 -3.67108881e-01 -4.15942639e-01\\n-2.09083691e-01 -3.10132448e-02 5.01979470e-01 -4.09136206e-01\\n-1.41503856e-01 1.94628775e-01 -5.91149509e-01 2.97529269e-02\\n3.25729579e-01 2.23858058e-01 1.65871799e-01 1.27957672e-01\\n-1.97559431e-01 -5.31241775e-01 1.17950134e-01 -4.97809291e-01\\n-2.45711237e-01 1.55909225e-01 -2.32092306e-01 3.58646005e-01\\n1.83655977e-01 -1.97926406e-02 -1.30619392e-01 1.17505915e-01\\n-1.50501221e-01 6.40198812e-02 2.23950297e-01 1.09920159e-01\\n2.67031670e-01 5.08188866e-02 -5.19610941e-01 4.47073430e-01\\n-1.50130615e-01 4.48666394e-01 1.99590512e-02 -8.54753137e-01\\n4.24679458e-01 2.97988951e-01 -9.94809996e-03 -4.35043871e-01\\n7.31079340e-01 -2.42495358e-01 -8.17864761e-02 1.79590121e-01\\n-5.48640072e-01 -2.69853592e-01 1.48851663e-01 -1.30901173e-01\\n-2.03461304e-01 6.04293287e-01 1.21535324e-01 -3.53104323e-02\\n3.57264519e-01 -1.91261008e-01 -9.82204825e-02 1.23021409e-01\\n-7.85991251e-02 -1.91643864e-01 -3.97014648e-01 -1.38140827e-01\\n-4.73861489e-03 -6.74048305e-01 -2.30036438e-01 -4.24524754e-01\\n-2.64085740e-01 -3.62076670e-01 -2.36944780e-01 3.70486885e-01\\n1.74358800e-01 1.99686527e-01 -5.54576004e-03 1.30971223e-01\\n-1.42661601e-01 -6.57925189e-01 -2.98706978e-03 1.01999253e-01\\n2.61730194e-01 2.94061720e-01 4.32828069e-02 -8.21034610e-02\\n-1.04557253e-01 4.69511926e-01 -3.64202321e-01 -2.76589483e-01\\n1.24117054e-01 1.13512568e-01 -4.11655344e-02 3.43958731e-03\\n1.84736058e-01 3.65341932e-01 -2.58055389e-01 8.20056126e-02\\n-5.30272089e-02 -5.51296072e-03 2.87989080e-01 8.21340382e-02\\n-4.15510714e-01 -3.48588079e-01 -4.60934043e-02 2.74031460e-01\\n-5.97515166e-01 -1.91482231e-01 5.22213519e-01 2.02208281e-01\\n1.05801813e-01 1.78160325e-01 3.08783263e-01 -1.75152645e-01\\n-1.43731564e-01 -2.02614814e-01 1.80594429e-01 1.73164308e-01\\n2.01359138e-01 1.17409937e-01 -2.68430412e-01 -6.05692685e-01\\n-3.72289038e+00 -1.56825259e-01 6.84104711e-02 -2.39947632e-01\\n2.81362683e-01 -7.05311149e-02 1.55990288e-01 -1.68352634e-01\\n-2.27487892e-01 -4.77950349e-02 -2.17455789e-01 -1.10055700e-01\\n2.59283930e-01 3.13990057e-01 9.46324766e-02 3.46074730e-01\\n9.70154107e-02 -2.52630889e-01 -1.01538040e-02 3.98356527e-01\\n-1.04524754e-01 -6.42257333e-01 1.16202898e-01 -9.42850038e-02\\n3.40577275e-01 2.59909362e-01 -5.29494345e-01 6.40412569e-02\\n-2.31928647e-01 -1.61939815e-01 2.23183542e-01 -2.45969519e-01\\n-9.55958366e-02 2.57815808e-01 1.43034086e-01 -1.50283948e-01\\n1.51780590e-01 -2.54096001e-01 6.06673863e-03 -4.64962840e-01\\n-1.13956677e-02 -6.17562175e-01 -4.82703373e-02 -1.22332640e-01\\n6.62680984e-01 -3.50024849e-01 8.87440238e-03 2.71895318e-03\\n6.08504154e-02 3.14898819e-01 -3.58041860e-02 -9.96428430e-02\\n-1.75217673e-01 -2.12488994e-01 -1.51673138e-01 -2.27629483e-01\\n5.83305895e-01 5.71267486e-01 -2.91771948e-01 -4.40548509e-02\\n-8.39029700e-02 -4.91786778e-01 -5.88143945e-01 -3.32517117e-01\\n-2.11489692e-01 -1.79593056e-01 -5.79839349e-01 -4.51275080e-01\\n-1.66964263e-01 -1.20966405e-01 1.66373551e-02 5.56707740e-01\\n-4.22808379e-01 -4.76644248e-01 7.29360953e-02 -4.88015950e-01\\n7.72304162e-02 -1.22839145e-01 1.26682028e-01 -7.19851404e-02\\n-2.27020264e-01 -5.16934276e-01 5.92147484e-02 -1.47269526e-02\\n-1.83662191e-01 6.51609199e-03 1.43612549e-01 -2.47279838e-01\\n-3.73183191e-01 -5.60799420e-01 5.18360555e-01 1.04001798e-01\\n2.31070742e-01 1.37495995e-01 2.11091101e-01 4.77739833e-02\\n3.27825844e-01 -2.14730084e-01 -2.24940758e-02 -4.90378171e-01\\n1.05227418e-01 1.84847717e-03 5.87059140e-01 -2.57741094e-01\\n-2.55780350e-02 1.50100172e-01 -1.94470689e-01 -9.27382484e-02\\n4.20742691e-01 1.73135996e-01 2.10714832e-01 -3.45752150e-01\\n3.55315357e-01 -3.48521769e-01 -2.93809861e-01 2.36986309e-01\\n9.90311150e-03 4.59079593e-01 1.22427857e-02 -4.21665817e-01\\n-2.40999892e-01 3.32676977e-01 -8.12635645e-02 -1.12562247e-01\\n-2.53897548e-01 9.10028070e-02 -3.20404261e-01 2.54071116e-01\\n7.54083544e-02 -3.01619396e-02 -1.98006660e-01 1.71537269e-02\\n-1.06072530e-01 2.95527875e-01 2.49385655e-01 1.07479081e-01\\n-1.17268167e-01 -3.13230366e-01 -7.88311139e-02 2.01637652e-02\\n1.70684859e-01 3.69287640e-01 7.15048984e-02 -3.96200269e-01\\n-4.52620275e-02 3.71994048e-01 -2.38824055e-01 5.96182942e-02\\n-2.51072943e-01 -2.70025921e-04 -4.77304667e-01 -2.28196636e-01\\n-2.24470824e-01 -2.20426977e-01 -8.56324807e-02 2.53180921e-01\\n1.67832151e-01 -1.07529774e-01 3.90559845e-02 -3.56185734e-01\\n2.73054242e-01 7.03704655e-02 2.80985028e-01 2.50937134e-01\\n9.64337885e-02 5.50059080e-01 -5.44912256e-02 -2.49118268e-01\\n-9.61968452e-02 1.50654819e-02 -3.03131789e-01 -1.67187929e-01\\n-2.61976086e-02 -5.13939559e-01 -3.39868292e-02 4.55457658e-01\\n1.22654624e-01 -1.44240603e-01 -1.96612597e-01 2.60379314e-01\\n-2.42381636e-02 -3.37778091e-01 -1.77343518e-01 1.00362830e-01\\n1.78423017e-01 1.55838713e-01 3.10148686e-01 -3.73953193e-01\\n-5.74688911e-02 5.76397590e-02 -1.21398829e-01 4.81519341e-01\\n9.58162174e-02 1.72538072e-01 -2.08771124e-01 -2.47848511e-01\\n3.64267826e-01 -4.88149002e-02 -6.33333027e-02 -1.57083109e-01\\n4.43557948e-02 -1.12354331e-01 -3.46901119e-01 2.72884481e-02\\n-6.82911351e-02 -1.58755332e-01 5.76706342e-02 -7.71955624e-02\\n1.10946633e-01 3.11154220e-03 -5.39438248e-01 -2.26396218e-01\\n-4.00117010e-01 -6.21544123e-02 -4.90234457e-02 -5.27627289e-01\\n6.02536164e-02 7.19811209e-03 -5.62946975e-01 4.12592411e-01\\n-1.49516314e-01 7.92879090e-02 1.21997513e-01 6.24908470e-02\\n-4.89178777e-01 -6.34780601e-02 1.59851328e-01 1.56519726e-01\\n-3.65365952e-01 -1.93382934e-01 -2.61370149e-02 -8.39069068e-01\\n2.77751356e-01 -1.96483910e-01 -1.83789834e-01 4.28413739e-03\\n-1.33506879e-01 -7.16825426e-01 2.23220050e-01 -3.37479174e-01\\n-9.39954817e-02 1.20445631e-01 -5.24209626e-02 -4.60231334e-01\\n4.69324812e-02 -1.85457870e-01 -2.42060050e-01 3.75517845e-01\\n-4.64478165e-01 4.83770162e-01 -1.05999812e-01 9.66895446e-02\\n3.64765637e-02 -3.55996817e-01 1.64747551e-01 -3.48945290e-01\\n-5.89789450e-01 -1.39084086e-01 -2.46752679e-01 -1.82666525e-01\\n6.57636300e-02 -3.82593215e-01 -2.52234578e-01 2.53670245e-01\\n2.17523098e-01 -1.46802077e-02 -1.37400115e-02 -9.63681936e-02\\n-7.00551942e-02 -3.55588824e-01 6.56580413e-03 -8.61966088e-02\\n7.09881932e-02 -6.89579025e-02 2.00589165e-01 6.29197061e-02\\n1.19616993e-01 -3.89601678e-01 5.54538906e-01 -1.68682188e-01\\n-3.06809783e-01 1.24792557e-03 7.33780563e-02 9.43949223e-02\\n3.21197242e-01 -3.50989521e-01 -4.39044051e-02 3.54584783e-01\\n1.09840475e-01 6.11055419e-02 1.46080747e-01 -1.26244545e-01\\n-1.69259116e-01 2.32137442e-01 -2.85401881e-01 2.05974907e-01\\n8.45853806e-01 1.67088106e-01 2.38585666e-01 1.34391159e-01\\n8.39565918e-02 4.57656056e-01 5.46529055e-01 -2.25517293e-03\\n-1.29752845e-01 3.12447160e-01 1.50669098e-01 -4.35711354e-01\\n6.93493634e-02 1.28947208e-02 -1.97968110e-01 -3.09555054e-01\\n5.90330958e-01 4.90019858e-01 -2.82425463e-01 -3.49679857e-01\\n-1.97711602e-01 -3.00520062e-01 1.45810097e-01 -1.61144227e-01\\n1.19397633e-01 -3.38596731e-01 5.44109046e-01 6.80506527e-02\\n1.28108531e-01 4.64357346e-01 -2.16430023e-01 -4.55005527e-01\\n-2.11410411e-02 1.91004723e-01 1.30232006e-01 2.91098982e-01\\n-9.94612500e-02 1.90864697e-01 -1.46015450e-01 1.68080077e-01\\n-1.12421088e-01 2.40977108e-02 1.79319322e-01 1.09081849e-01\\n3.93335447e-02 1.71972349e-01 4.91478622e-01 6.26627326e-01\\n4.13790524e-01 4.55568582e-01 2.59645104e-01 3.52348574e-02\\n5.60993373e-01 6.28021657e-01 4.06144470e-01 1.61185414e-01\\n1.93016534e-03 8.47265050e-02 1.19683392e-01 1.52241677e-01\\n3.89066637e-01 4.64778453e-01 1.64422452e-01 9.02072787e-01\\n3.37981194e-01 1.72050804e-01 7.30697513e-01 -5.53133965e-01\\n-3.27283233e-01 1.10821009e-01 4.16615278e-01 -3.65326375e-01\\n-1.29687712e-01 8.27245414e-02 -2.72085130e-01 1.63544104e-01\\n-4.78632867e-01 -1.54168323e-01 -7.88499564e-02 5.55769599e-04\\n1.15494542e-01 -1.12524725e-01 -1.02788232e-01 -7.23219812e-02\\n-1.29928365e-01 -1.93648413e-01 -3.86935353e-01 -8.50768089e-02\\n-3.35847855e-01 -7.75186047e-02 -2.47775507e-03 -1.59179077e-01\\n3.33594158e-02 -4.63462949e-01 -2.29433984e-01 -4.21361439e-02\\n3.65184993e-01 -1.48989260e-01 -8.34236220e-02 -6.14818707e-02\\n2.46268123e-01 3.19571108e-01 7.43293822e-01 3.76991779e-02\\n-7.48221725e-02 -1.73228398e-01 -1.45899042e-01 1.21090747e-01\\n1.84390068e-01 1.10604547e-01 -8.13226122e-03 4.78129506e-01\\n-4.45620716e-01 -9.86585468e-02 7.89838657e-02 5.06577194e-01\\n-3.99512500e-01 -4.22123075e-03 6.94549307e-02 2.73577988e-01\\n3.97349074e-02 1.31597996e-01 -1.83545277e-01 7.75311366e-02\\n-1.94439605e-01 -5.32995641e-01 3.47131670e-01 -1.01758905e-01\\n-9.28516090e-02 -3.06702033e-02 1.27778128e-01 1.36228457e-01\\n-1.92961827e-01 -2.71859895e-02 8.32091570e-02 2.73389935e-01\\n2.22592622e-01 5.62471390e-01 -2.39650309e-01 -3.03794712e-01\\n-3.17320675e-01 1.57732233e-01 -1.09182470e-01 9.25991386e-02\\n-8.90677124e-02 2.49079645e-01 1.25031799e-01 2.33983815e-01\\n2.75048584e-01 -1.40879592e-02 -1.73582301e-01 -2.87539601e-01\\n-2.54355282e-01 -2.92013526e-01 1.60708398e-01 -2.10121833e-02\\n2.35382825e-01 -4.30248767e-01 -1.49065167e-01 9.67105199e-03\\n-1.40721664e-01 -4.32542443e-01 -7.09630400e-02 -9.29209739e-02]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Software Engineer .NET – C# in Zürich Area. This role is a permanent job full time. Your main responsibilities: As an experienced and proactive SW developer, you will design and develop core components for a PC-based client-server application In a \"High Performance Software Environment\" you develop and implement concepts independently Feature development client and/or server: Analysis, conception and design, implementation and unit testing Perform design and code reviews with team members Training and support of the team members in the development work in their own area of competence You work closely together with your cooperation partners, who are composed of product managers, requirements engineers and development teams for the software instrument Your profile: 3 to 5 years of relevant work experience in the software engineering environment Practical experience with the .NET Framework and C# know-how of phase models and agile methods Ideally experience with WPF, WCF, NHibernate and Autofac High Degree in Computer Science Fluent oral and written English – German skills will be a great plus to communicate with the team If you wish to apply, please send us your resume in Word format with some references.',\n", + " '[\"Proactivity\", \"Communications\", \"Written English\", \"Cooperation\"]',\n", + " '[\"Production Management\", \"Phase (Waves)\", \"Concept Analysis\", \"Agility\", \"Wcf 4\", \"Requirements Engineering\", \"C# (Programming Language)\", \"Unit Testing\", \"Computer Science\", \"Instrumentation\", \"Idealization\", \"High Performance Computing\", \"Requirements Management\", \"Code Review\", \"Software Performance Testing\", \"Reporting Application Server\", \"Software Engineering\", \".NET Framework\"]',\n", + " \"['English']\"],\n", + " ['57',\n", + " 'agile java software engineer',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.78160131e-01 2.67130196e-01 5.70411026e-01 -1.30842522e-01\\n4.27903295e-01 -3.28722775e-01 1.97537974e-01 3.46200615e-01\\n-8.44845697e-02 -4.25652683e-01 -1.19350448e-01 -3.08613330e-01\\n-8.41952953e-03 1.19773164e-01 1.29989594e-01 2.47611746e-01\\n4.04780746e-01 1.38171464e-01 -9.55041274e-02 3.19136262e-01\\n1.78276554e-01 -1.57051891e-01 1.03102967e-01 6.74135029e-01\\n4.17927980e-01 7.01802000e-02 -6.03511296e-02 7.57620037e-02\\n-2.42297024e-01 -3.10805351e-01 4.87008274e-01 -3.54262851e-02\\n7.49409050e-02 -2.28499800e-01 1.24900505e-01 6.85209334e-02\\n-2.17767879e-01 8.75495002e-02 -5.37083223e-02 1.19578607e-01\\n-3.13948721e-01 -1.25577465e-01 7.07789510e-02 -1.04314327e-01\\n-2.19303936e-01 -3.89014184e-01 -7.39848893e-03 7.25653917e-02\\n1.89819425e-01 3.32725979e-02 -4.35602427e-01 3.50642622e-01\\n-2.00176999e-01 -2.84803778e-01 2.47689307e-01 5.43670714e-01\\n-1.55405909e-01 -5.20748377e-01 -3.24871689e-01 -2.50717580e-01\\n1.45558402e-01 -1.16749249e-01 8.02816227e-02 -2.44934991e-01\\n3.59537423e-01 6.29842058e-02 3.92465014e-03 3.93199325e-01\\n-7.70260811e-01 5.42437145e-03 -1.73387066e-01 -1.35564879e-01\\n-2.72316456e-01 -1.12519555e-01 -3.51108611e-01 -1.55232236e-01\\n-1.79539174e-01 4.36947197e-01 1.55413970e-01 1.08503610e-01\\n-1.17385410e-01 2.05146357e-01 -3.34686607e-01 2.76330650e-01\\n2.21717283e-01 3.08971316e-01 2.75659949e-01 2.52460808e-01\\n-4.36765432e-01 3.93524349e-01 2.42625788e-01 -3.19777071e-01\\n2.29935780e-01 1.46451071e-01 4.03820187e-01 -5.89570142e-02\\n1.41463429e-01 2.94590313e-02 -1.96779013e-01 1.65309638e-01\\n3.69472533e-01 -1.98846549e-01 -6.00538440e-02 2.01986847e-03\\n-7.43267685e-02 1.33583412e-01 4.98932041e-03 2.80165792e-01\\n-3.84351045e-01 5.49634755e-01 2.24019885e-02 -2.30682507e-01\\n-1.51326209e-01 -5.68269491e-01 -1.44323185e-01 1.39655024e-01\\n2.58465707e-02 1.59917668e-01 2.38786295e-01 2.27584794e-01\\n8.67428556e-02 9.90934074e-02 1.19210139e-01 9.16315436e-01\\n-1.28111094e-01 9.91545767e-02 -2.89951205e-01 3.57165664e-01\\n3.66935655e-02 -2.06005841e-01 2.23964259e-01 2.74577141e-01\\n1.07662916e-01 -1.02316022e-01 -1.50708601e-01 2.97133237e-01\\n4.31279764e-02 -3.11728954e-01 -2.41691485e-01 1.25943303e-01\\n-1.38290644e-01 -5.21051705e-01 6.39917731e-01 -3.27519234e-03\\n8.41241106e-02 6.24339879e-02 9.60209817e-02 -4.58950028e-02\\n-1.48156270e-01 1.59889594e-01 6.85542300e-02 1.09935053e-01\\n-2.69257754e-01 -2.52413243e-01 -3.06875736e-01 2.57043064e-01\\n-2.62502342e-01 1.46533608e-01 -1.23867430e-01 -4.90918569e-02\\n3.82819980e-01 6.09668866e-02 -2.25502297e-01 2.75058091e-01\\n-7.06931204e-02 2.13811733e-03 -1.17167935e-01 3.02860171e-01\\n-1.40975207e-01 1.25141680e-01 -2.06211321e-02 -1.34711638e-01\\n5.17798424e-01 2.26317540e-01 7.69846588e-02 -8.40425566e-02\\n3.47309917e-01 -3.58686633e-02 9.04811770e-02 -4.29619988e-03\\n-7.37084091e-01 4.08807814e-01 -4.82204109e-02 -1.06649905e-01\\n5.75965829e-02 -9.21495818e-03 1.65001914e-01 -2.82155931e-01\\n4.18692678e-02 -1.07451789e-01 -3.57686788e-01 -1.90091759e-01\\n-1.58616319e-01 -7.49249607e-02 4.68324453e-01 -3.91312480e-01\\n-1.26531288e-01 1.85602993e-01 -5.73490024e-01 1.19393408e-01\\n3.14777106e-01 1.93342060e-01 1.45430520e-01 1.44570008e-01\\n-1.11640222e-01 -5.11924684e-01 2.11566716e-01 -3.65166396e-01\\n-2.78891236e-01 2.79641569e-01 -3.12346190e-01 1.68257028e-01\\n2.17111349e-01 8.96758772e-03 -1.37938276e-01 1.41807094e-01\\n-4.42761257e-02 -9.20079127e-02 2.23289952e-01 9.25437510e-02\\n3.52800697e-01 -1.32203652e-02 -3.70376706e-01 5.63992143e-01\\n-2.03071401e-01 3.88557166e-01 1.52892739e-01 -8.03860903e-01\\n4.08387452e-01 3.94792020e-01 3.52213718e-02 -2.81041741e-01\\n6.98131740e-01 -2.74152398e-01 -4.28784601e-02 8.25850591e-02\\n-4.21643019e-01 -2.94504732e-01 1.57066926e-01 -1.86448097e-01\\n-2.19658628e-01 4.22987640e-01 5.47348894e-02 1.29318222e-01\\n2.49792367e-01 -1.30920902e-01 -1.07071862e-01 1.05863988e-01\\n-1.06433161e-01 -2.63647377e-01 -3.72839838e-01 2.37776581e-02\\n2.50276998e-02 -4.76436049e-01 -5.49099036e-02 -5.58836579e-01\\n-2.46918142e-01 -3.86386603e-01 -2.47049555e-01 2.15007216e-01\\n1.35691121e-01 1.16965301e-01 5.47121540e-02 -4.89609390e-02\\n-2.06927404e-01 -5.19196987e-01 1.23222694e-01 4.43304814e-02\\n3.43467891e-01 1.21826857e-01 -3.18867862e-02 -2.22710818e-02\\n3.42824534e-02 7.05453515e-01 -2.11628839e-01 6.15694211e-04\\n6.91623762e-02 8.28913972e-02 1.60337873e-02 -1.08357929e-01\\n-1.22740283e-04 3.91189247e-01 -3.09162945e-01 -1.56578310e-02\\n-1.42235488e-01 3.83666381e-02 3.65968645e-01 -6.36216179e-02\\n-3.55871111e-01 -3.20522130e-01 -1.06393434e-01 1.74282387e-01\\n-5.89847922e-01 -1.48637310e-01 6.87067688e-01 1.49589032e-01\\n6.67906851e-02 2.06769422e-01 1.42071083e-01 -4.09134775e-02\\n-2.27354795e-01 -1.03935920e-01 1.52507871e-01 1.56669114e-02\\n1.29046485e-01 1.95706829e-01 -1.56659871e-01 -5.51076889e-01\\n-3.72830391e+00 -1.71324745e-01 8.98214504e-02 -3.29631805e-01\\n1.52027756e-01 -1.86399892e-01 8.68831202e-02 -1.50878102e-01\\n-1.73397198e-01 4.08666395e-02 -1.14552237e-01 -1.56286731e-01\\n2.08279207e-01 1.94536641e-01 1.71355367e-01 2.57227272e-01\\n2.25260362e-01 -1.87849090e-01 4.88970848e-03 2.89439023e-01\\n-2.24580601e-01 -6.16548777e-01 2.29973063e-01 -6.47037476e-02\\n3.83559078e-01 3.53073716e-01 -4.00153965e-01 -1.12623185e-01\\n-2.75743514e-01 -1.97374463e-01 1.24730840e-01 -2.79241592e-01\\n3.31601012e-03 2.94604331e-01 1.66081578e-01 -8.70042741e-02\\n2.96152383e-01 -3.31744552e-01 6.27479628e-02 -3.89241219e-01\\n1.74452081e-01 -5.59645474e-01 -7.03067780e-02 5.43996431e-02\\n6.39945209e-01 -3.76391053e-01 1.90891057e-01 1.02454059e-01\\n7.95902759e-02 2.17858970e-01 -2.01346632e-02 -1.50116846e-01\\n-2.19345093e-01 -2.33722508e-01 -1.00256942e-01 -1.90459728e-01\\n5.33929169e-01 5.87556541e-01 -2.27276981e-01 8.02583061e-03\\n-6.55508935e-02 -3.36639315e-01 -4.93834257e-01 -3.57855290e-01\\n-2.26524517e-01 -1.04346208e-01 -5.96624136e-01 -5.67752659e-01\\n-1.71218097e-01 -9.10449252e-02 -4.40216959e-02 4.14147913e-01\\n-1.93744436e-01 -4.15538788e-01 -4.90681380e-02 -3.85631979e-01\\n7.86114857e-02 -4.94357534e-02 -5.37771452e-03 -1.25202924e-01\\n-2.06014395e-01 -5.09218276e-01 -7.52145275e-02 2.49828398e-02\\n-6.47674650e-02 -1.37344629e-01 3.04839045e-01 -9.76829082e-02\\n-3.16554099e-01 -4.87523109e-01 3.91679525e-01 1.28040938e-02\\n2.58817673e-01 2.10235849e-01 2.48568192e-01 1.72663972e-01\\n2.56440341e-01 -2.26009741e-01 1.26792520e-01 -4.11793888e-01\\n1.35020390e-01 7.07585961e-02 4.82337266e-01 -1.07088022e-01\\n1.18930280e-01 1.67146772e-01 -2.64577121e-01 -2.94025570e-01\\n3.76370728e-01 -3.30166705e-02 1.61806285e-01 -3.10271561e-01\\n3.22231591e-01 -1.36683941e-01 -2.80664504e-01 7.92777613e-02\\n3.83476205e-02 4.71915632e-01 -8.74610171e-02 -3.69709104e-01\\n-9.62346494e-02 5.35097003e-01 -1.88177824e-01 -1.67427104e-04\\n-2.11830974e-01 3.20973620e-02 -2.94778228e-01 3.28286707e-01\\n-4.83244881e-02 -1.06635749e-01 -3.32567900e-01 -1.86464563e-01\\n-6.96215853e-02 2.08774537e-01 2.94489890e-01 1.00182079e-01\\n-2.47118231e-02 -3.94922018e-01 -4.75246124e-02 8.75485912e-02\\n2.56851375e-01 2.84403503e-01 1.18227273e-01 -7.67369345e-02\\n8.29652101e-02 3.35600406e-01 -1.71246380e-01 1.55224189e-01\\n-3.13721806e-01 6.39763102e-02 -4.25272524e-01 -4.02639478e-01\\n-2.31986403e-01 -3.06628525e-01 -6.01680838e-02 2.21927524e-01\\n2.32626144e-02 -2.39521964e-03 2.18735505e-02 -3.03672373e-01\\n2.68668950e-01 6.27487525e-02 2.26384953e-01 2.74107873e-01\\n1.87287282e-03 4.94118541e-01 -7.84384727e-04 -3.94915901e-02\\n-3.00324678e-01 1.10802494e-01 -2.20425442e-01 -8.29102173e-02\\n3.37837753e-03 -4.44272190e-01 -1.32209752e-02 3.26972336e-01\\n5.79900220e-02 -2.86454082e-01 -5.97493835e-02 2.35195473e-01\\n-7.68666938e-02 -4.48539853e-01 -2.15840921e-01 1.13560982e-01\\n3.29568952e-01 5.07164150e-02 2.91123986e-01 -5.11142612e-01\\n8.33519250e-02 9.73212793e-02 -1.15607589e-01 5.45073807e-01\\n3.05423364e-02 3.50739323e-02 -5.52040674e-02 -3.14175189e-01\\n3.19339901e-01 -2.50681460e-01 3.33448537e-02 -8.31925198e-02\\n1.62728414e-01 -1.33304015e-01 -3.06916803e-01 -2.94076256e-03\\n3.52517673e-04 -1.00440748e-01 2.15996522e-02 -4.09355573e-02\\n-4.43158373e-02 2.01369636e-02 -5.02475560e-01 -3.23775202e-01\\n-2.57070422e-01 -9.67437550e-02 2.19932687e-03 -4.00352716e-01\\n-3.64234149e-02 -4.19948027e-02 -4.77411181e-01 3.94175589e-01\\n-1.46072611e-01 -4.90791455e-04 1.55977502e-01 -8.61729905e-02\\n-3.73163462e-01 -3.83569337e-02 2.16491953e-01 2.10918382e-01\\n-2.16345936e-01 -2.59070873e-01 -6.24600127e-02 -1.10474896e+00\\n2.63509244e-01 -2.46847384e-02 -7.20799789e-02 5.93402609e-02\\n-9.16685835e-02 -5.03946543e-01 1.96820080e-01 -4.12676513e-01\\n-5.27056418e-02 1.51656559e-02 -1.65168583e-01 -4.74302292e-01\\n-4.89118919e-02 5.62123209e-02 -2.26855174e-01 3.94708395e-01\\n-3.31402868e-01 3.31574947e-01 -1.03666954e-01 5.84355146e-02\\n-1.45087034e-01 -2.23123193e-01 1.06916204e-01 -4.24630284e-01\\n-3.09288025e-01 -2.31434837e-01 -2.15537310e-01 -1.70070767e-01\\n-8.82015750e-02 -2.00532913e-01 -3.83642726e-02 1.08000532e-01\\n2.51496464e-01 1.73931494e-01 -5.82006983e-02 -2.49837428e-01\\n1.08384199e-01 -5.00939012e-01 -4.36579511e-02 -2.82342821e-01\\n-6.20780326e-02 -1.26743168e-01 1.16164163e-01 1.11161567e-01\\n6.64132312e-02 -4.67193484e-01 3.77616435e-01 -1.61529690e-01\\n-2.80291766e-01 6.84437156e-02 2.38526743e-02 7.24026784e-02\\n3.74615192e-01 -4.14081722e-01 -9.04863402e-02 2.89408296e-01\\n1.19639106e-01 5.71670868e-02 2.04903811e-01 -4.17599566e-02\\n-1.32050589e-01 3.47151548e-01 -3.50301951e-01 9.01031047e-02\\n5.61449945e-01 8.06979015e-02 1.73084512e-01 2.13066146e-01\\n2.37463295e-01 3.62316310e-01 4.74107653e-01 -5.36775813e-02\\n-5.19113988e-02 4.11155611e-01 7.61439726e-02 -6.19301081e-01\\n1.48386478e-01 4.43577990e-02 -3.26468527e-01 -2.10809857e-01\\n6.45228148e-01 4.67015415e-01 -2.88062423e-01 -2.36867055e-01\\n-2.73070455e-01 -2.52777070e-01 8.47028643e-02 -7.24041313e-02\\n2.25451529e-01 -2.22852856e-01 4.90953773e-01 -1.77075304e-02\\n1.87141493e-01 4.55277324e-01 -2.10530549e-01 -3.59930068e-01\\n3.67894806e-02 2.05321908e-01 8.33088607e-02 2.98135519e-01\\n-2.14313731e-01 2.41460413e-01 -1.35950856e-02 2.01801136e-01\\n-7.62269348e-02 1.24031857e-01 6.46254346e-02 8.95379260e-02\\n2.02929661e-01 -1.92856491e-02 2.75060028e-01 4.51842755e-01\\n3.41969728e-01 4.15778846e-01 2.44980484e-01 9.40669477e-02\\n4.63562518e-01 4.92498696e-01 4.45984185e-01 2.47861713e-01\\n-1.06808068e-02 4.38526273e-02 1.32200215e-02 -1.39781699e-01\\n2.45464474e-01 3.39424640e-01 -6.48410097e-02 8.55444133e-01\\n4.43055153e-01 2.56891429e-01 7.40794480e-01 -5.58294594e-01\\n-3.70125920e-01 -1.38275921e-01 3.91056746e-01 -3.96575600e-01\\n-1.15958788e-01 9.43519846e-02 -2.07092538e-01 1.77408889e-01\\n-4.14318413e-01 -2.09130749e-01 -7.58591145e-02 3.29313502e-02\\n1.40814796e-01 -6.35308400e-02 -2.50638902e-01 -1.40360564e-01\\n-2.42124721e-01 -1.93662345e-01 -5.09034753e-01 6.81995153e-02\\n-1.54312879e-01 -2.45305330e-01 -1.49871469e-01 -1.85353816e-01\\n-4.32178490e-02 -4.06291187e-01 -1.60035998e-01 1.19264856e-01\\n1.79342508e-01 -1.68786258e-01 -1.27332389e-01 -1.46234676e-01\\n2.40853474e-01 2.32593626e-01 5.55238843e-01 2.75885966e-02\\n8.89078528e-02 -2.35266656e-01 -1.19881399e-01 1.21910468e-01\\n1.81221217e-01 1.08767092e-01 3.05743776e-02 3.64834219e-01\\n-3.27006608e-01 -2.13956803e-01 -3.76910903e-02 4.96911436e-01\\n-4.61899966e-01 6.40120506e-02 2.65698172e-02 2.82695562e-01\\n3.71912271e-02 1.06316939e-01 -1.28976256e-01 6.62880391e-02\\n-1.35359108e-01 -4.73220557e-01 2.51688987e-01 -4.41740490e-02\\n-2.14302480e-01 2.74957735e-02 6.89772815e-02 1.31073162e-01\\n-2.23782688e-01 -1.64586231e-01 1.17825065e-02 1.20771073e-01\\n2.76376367e-01 2.89230853e-01 -1.85092300e-01 -3.79303008e-01\\n-3.58382463e-01 1.56327546e-01 -3.67394924e-01 1.85198903e-01\\n-6.29785135e-02 2.41257101e-01 1.21135108e-01 4.42162305e-02\\n2.33979389e-01 -5.77633129e-03 -9.62941125e-02 -1.94045275e-01\\n-2.80786693e-01 -2.05623299e-01 8.68445262e-02 4.49230149e-02\\n1.50801226e-01 -3.96348894e-01 -1.31439054e-02 -1.31574750e-01\\n-1.96709916e-01 -3.87406707e-01 -4.14424241e-02 -1.99492127e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for an Agile Java Software Engineer. This role is permanent position based in Basel Canton. Your Role: < >nsure high-quality functionality of applications. Independently develop solution variants in coordination with customers. Further develop applications within a Scrum team. Undertake programming with Java8. Implement backend service development with Java EE. Utilize Angular in a digitalized environment Integrate different systems in a high-performance & flexible manner. Your Skills: Several years of software development experience. Skills & experience in Java8, Java EE & Angular. A convincing performance record in successfully completed software projects. Experienced in agile methodologies. Scrum Master experience is considered a plus Ideally experienced in testing. Very interested in software architecture. Your Profile: University degree in computer science. Committed, ambitious & enthusiastic personality. Convincing, strong communication skills & a team-player. Innovative, analytical & both solution & service orientated. Entrepreneurial thinking, goal-driven & a strong willingness to learn. A high affinity for agility & fun in the development of high-quality software. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Verbal Communication Skills\", \"Coordinating\", \"Service-Orientation\", \"Willingness To Learn\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Application Development\", \"Agility\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Integrated Language Environments\", \"High Performance Computing\", \"Service Development Studio\", \"Software Quality Management\", \"Java EE Application\", \"Component Object Model (COM)\", \"Scrum (Software Development)\", \"Idealization\", \"Software Engineering\", \"Agile Methodology\", \"Digitization\", \"Personalization\", \"Software Architecture\", \"Receivables\", \"Angular (Web Framework)\", \"Software Development\", \"Software Project Management\", \"Java (Programming Language)\", \"Custom Backend\"]',\n", + " \"['English', 'Portuguese', 'Estonian']\"],\n", + " ['75',\n", + " 'ml engineer (m/w) 100%',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.70086816e-01 3.80971551e-01 4.20473903e-01 -3.19519788e-02\\n4.96490806e-01 -1.21971823e-01 8.27693865e-02 3.54645789e-01\\n-1.40803471e-01 -3.20467621e-01 -7.79657662e-02 -2.68107086e-01\\n-1.44926891e-01 -4.87525016e-02 1.75634220e-01 4.62267637e-01\\n2.75467515e-01 5.40910177e-02 -1.19416997e-01 4.48270649e-01\\n1.00455798e-01 -5.58483228e-02 -3.22290584e-02 6.42925858e-01\\n3.57693881e-01 -3.20474338e-03 -5.53328618e-02 6.48745298e-02\\n-2.89077044e-01 -2.72470236e-01 3.92766088e-01 6.94912747e-02\\n-1.05534546e-01 -3.18338811e-01 1.83309421e-01 2.32345507e-01\\n-1.71927586e-01 -3.47492355e-03 -1.51967639e-02 3.89504582e-01\\n-3.65352273e-01 -3.67182612e-01 7.33734965e-02 -6.00571223e-02\\n-3.02102089e-01 -3.67828608e-01 -2.44213194e-02 -5.97167313e-02\\n1.67759910e-01 1.14295363e-01 -5.10656655e-01 3.19817752e-01\\n-2.06172809e-01 -1.67000324e-01 4.13135141e-01 6.75123632e-01\\n1.04644515e-01 -5.71001530e-01 -2.61829853e-01 -3.49349052e-01\\n-5.59399463e-02 -1.04149327e-01 7.66347647e-02 -2.09289640e-01\\n3.76745075e-01 1.18026948e-02 -3.27682383e-02 4.32741761e-01\\n-8.67682815e-01 -1.98955193e-01 -3.20842803e-01 -1.83004871e-04\\n-4.91612136e-01 8.06856342e-03 -3.43222499e-01 -1.83346912e-01\\n-4.00991626e-02 3.49809945e-01 -1.56845972e-02 -4.15987074e-02\\n-1.32109880e-01 2.96177208e-01 -6.96085393e-02 1.85838997e-01\\n3.47714037e-01 1.97782204e-01 2.45165050e-01 3.65878969e-01\\n-3.57439369e-01 3.13613325e-01 1.43637627e-01 -2.51134247e-01\\n1.74418420e-01 1.78553492e-01 5.74271321e-01 1.33966953e-01\\n-4.40234989e-02 2.25927219e-01 -2.39592627e-01 2.66195416e-01\\n2.48611316e-01 -3.05007368e-01 4.45741378e-02 -1.27578443e-02\\n-1.04707763e-01 -1.42836422e-02 -1.40691055e-02 3.09269428e-01\\n-2.29396403e-01 4.97942179e-01 2.22906455e-01 -2.07561016e-01\\n-2.70024762e-02 -7.02769101e-01 -2.43445545e-01 8.94993618e-02\\n-5.86841032e-02 3.05449575e-01 2.03223646e-01 2.27380827e-01\\n1.41084746e-01 3.12806107e-02 1.94966346e-01 9.14736509e-01\\n-2.35278010e-02 9.58619565e-02 -2.44279295e-01 3.29928786e-01\\n2.59672850e-01 -2.51914829e-01 1.73515931e-01 3.03535581e-01\\n1.33575678e-01 -1.30867079e-01 -2.31166825e-01 2.87327647e-01\\n-1.35551661e-01 -1.98030129e-01 -4.16552216e-01 1.15430631e-01\\n-3.79517794e-01 -4.66771960e-01 6.01349950e-01 3.54146026e-03\\n2.50818312e-01 -5.98558858e-02 -1.31791517e-01 4.08140011e-02\\n-7.31083080e-02 3.42770964e-01 4.63288091e-02 2.14687705e-01\\n-4.09591585e-01 -2.15737179e-01 -2.86147833e-01 4.24628407e-01\\n-1.75306648e-01 1.69809148e-01 -1.97459057e-01 -7.45181963e-02\\n3.03102314e-01 1.27285644e-02 -3.68779212e-01 1.60358354e-01\\n-1.06624082e-01 -2.46111989e-01 -1.35133848e-01 3.19934070e-01\\n-1.18711896e-01 2.11492240e-01 -7.03458041e-02 -3.58275384e-01\\n6.19329274e-01 1.98759973e-01 4.18405868e-02 -1.17964454e-01\\n3.83150250e-01 -1.76877186e-01 2.86014795e-01 1.14152811e-01\\n-6.04768753e-01 3.45751345e-01 -4.88148928e-02 9.30373743e-02\\n3.94109972e-02 -1.47593617e-02 4.42537427e-01 -3.48495990e-01\\n-1.37111738e-01 -1.73836604e-01 -3.49382252e-01 -2.84886152e-01\\n-2.83463925e-01 -4.28603105e-02 5.42217374e-01 -2.91805893e-01\\n-1.70837864e-01 2.38095641e-01 -5.91656148e-01 -5.62228784e-02\\n2.27086827e-01 1.96221620e-01 9.31138396e-02 1.22312836e-01\\n-1.71122268e-01 -5.73524714e-01 7.58262491e-03 -4.99593824e-01\\n-4.36966270e-01 -2.84141935e-02 -1.69813380e-01 1.66465253e-01\\n1.68299843e-02 1.17226139e-01 -1.42943636e-01 1.34931907e-01\\n-3.32197428e-01 3.54486667e-02 2.27841929e-01 1.40371844e-01\\n2.65406609e-01 -4.18666825e-02 -4.79741126e-01 4.63826060e-01\\n-1.59772232e-01 5.60464144e-01 2.56064534e-01 -8.55920613e-01\\n4.82812762e-01 3.29257220e-01 4.25753444e-02 -2.77834743e-01\\n4.99335736e-01 -3.77027392e-01 -4.88801040e-02 2.29044572e-01\\n-1.82948753e-01 -2.44369075e-01 2.48131260e-01 -2.61990309e-01\\n-3.50075543e-01 5.70087016e-01 1.64720967e-01 4.27931659e-02\\n3.14119965e-01 -3.20830584e-01 -9.77067798e-02 2.67082658e-02\\n-1.24545783e-01 -2.02700675e-01 -2.64421493e-01 5.74229918e-02\\n-3.63687798e-02 -5.23608685e-01 -1.55849203e-01 -3.44840080e-01\\n-1.66499302e-01 -3.32115293e-01 -1.93825483e-01 3.83826464e-01\\n1.95887238e-01 1.85614973e-01 2.37496756e-02 -3.38730253e-02\\n-1.45324796e-01 -7.18686998e-01 -1.71705887e-01 8.46978128e-02\\n2.94971108e-01 2.65564471e-01 1.16057262e-01 -1.62802905e-01\\n1.00284806e-02 4.82544869e-01 -3.35546106e-01 -2.98395246e-01\\n6.43214118e-03 1.14974916e-01 -7.95153454e-02 -1.12058103e-01\\n1.78512651e-02 4.35807317e-01 -1.44692793e-01 1.17431536e-01\\n-2.19720945e-01 7.25042447e-02 3.32706422e-01 -4.57516871e-02\\n-2.81064063e-01 -2.06688017e-01 2.92199682e-02 2.39058852e-01\\n-6.22030556e-01 -2.19870046e-01 6.00659370e-01 1.65724695e-01\\n1.84423923e-01 1.74246252e-01 3.72684509e-01 -8.90726000e-02\\n-1.85466439e-01 -2.01309785e-01 1.28056049e-01 1.40393957e-01\\n5.15067428e-02 5.19518964e-02 -1.50649518e-01 -6.66754246e-01\\n-3.17780757e+00 -2.08118245e-01 1.47109613e-01 -2.93338031e-01\\n1.98284999e-01 -9.11581442e-02 4.37735245e-02 -3.16270366e-02\\n-3.44658732e-01 6.89786812e-03 -1.21471636e-01 -1.44543573e-01\\n-1.80374403e-02 3.43013704e-01 1.22923799e-01 1.54132828e-01\\n5.94719723e-02 -2.86098242e-01 -2.23526191e-02 4.58852023e-01\\n5.00363223e-02 -7.66598344e-01 1.03047639e-01 9.79297832e-02\\n1.97651833e-01 2.22219720e-01 -4.05469596e-01 -1.13835745e-01\\n-2.48507738e-01 -2.23659351e-01 1.06786966e-01 -2.96101034e-01\\n-1.70097396e-01 2.43107855e-01 4.88257222e-03 -4.27858457e-02\\n8.29575062e-02 -1.77940384e-01 1.12630576e-01 -3.38775367e-01\\n8.24554183e-04 -6.64513469e-01 -5.86700365e-02 -1.40795961e-01\\n7.20884740e-01 -2.63226211e-01 7.99585730e-02 1.90574229e-01\\n8.83229971e-02 2.16548339e-01 -7.65146222e-03 -3.54011916e-02\\n-3.47729355e-01 -3.32003415e-01 -5.34894578e-02 -2.12930962e-01\\n5.01614213e-01 6.09144092e-01 -1.59890190e-01 6.13931939e-02\\n8.07933360e-02 -3.67689937e-01 -4.00821090e-01 -4.54503357e-01\\n-2.57901251e-01 -1.63509652e-01 -8.44923913e-01 -5.71388543e-01\\n-6.05140552e-02 -4.27980907e-02 -1.10656552e-01 5.91831863e-01\\n-3.48186791e-01 -4.01039600e-01 -1.04650736e-01 -4.99854952e-01\\n7.54038766e-02 -2.04576701e-01 1.55871406e-01 -6.77136779e-02\\n-3.21570784e-01 -5.12976766e-01 5.63575812e-02 1.65610127e-02\\n-1.45990938e-01 -1.12339549e-01 -7.16003925e-02 -3.00049037e-01\\n-3.59791070e-01 -4.32382286e-01 4.95138437e-01 2.40664501e-02\\n3.02692801e-01 1.41528517e-01 3.53379220e-01 1.22026652e-01\\n3.73378217e-01 -1.32627130e-01 5.72004020e-02 -4.35928702e-01\\n4.09078598e-02 -1.12649336e-01 6.34115696e-01 -3.37113231e-01\\n1.48419470e-01 1.63386270e-01 -2.78670907e-01 -1.15452349e-01\\n5.02982199e-01 9.07609835e-02 -2.15995722e-02 -1.63485870e-01\\n3.37366551e-01 -4.57940280e-01 -2.37951368e-01 1.62142664e-01\\n-6.42016232e-02 6.71898961e-01 -2.43268739e-02 -4.46440130e-01\\n-3.90914202e-01 4.44445550e-01 -9.87946913e-02 -2.03304857e-01\\n-5.03679179e-02 1.46078184e-01 -9.81300771e-02 2.74610639e-01\\n4.88964133e-02 -2.07996354e-01 -3.12043071e-01 -4.82249819e-02\\n-1.03185065e-01 2.11407155e-01 2.62599587e-01 1.14068471e-01\\n-1.66054562e-01 -2.06963867e-01 -1.60257161e-01 1.30786970e-01\\n3.40514004e-01 2.02168614e-01 1.29951552e-01 -2.51544148e-01\\n-2.82596163e-02 2.53355563e-01 -2.83629835e-01 1.85662478e-01\\n-2.68037885e-01 8.07290524e-02 -5.10908782e-01 -2.25130469e-01\\n-1.29202947e-01 -3.30015749e-01 1.59133494e-01 3.67569000e-01\\n1.31788269e-01 -5.67589467e-03 1.12466194e-01 -5.02796412e-01\\n4.32009250e-01 1.14571221e-01 1.96971774e-01 1.97237313e-01\\n-3.23210545e-02 5.50676823e-01 3.50391604e-02 -1.46520674e-01\\n-1.25229686e-01 -7.46460855e-02 -2.44647890e-01 -3.09192896e-01\\n2.35029850e-02 -4.40770894e-01 -1.29453227e-01 4.26164985e-01\\n1.14396177e-01 -2.92615533e-01 -3.11118156e-01 1.44922301e-01\\n6.29315823e-02 -3.70312631e-01 -2.45376319e-01 2.50884015e-02\\n2.86033809e-01 5.03042825e-02 4.12465632e-01 -5.12910843e-01\\n-7.17492821e-03 -7.85176307e-02 -1.62483186e-01 4.93036717e-01\\n1.72859520e-01 3.60001177e-02 -2.57801086e-01 -1.21975370e-01\\n4.59340215e-01 7.43503794e-02 -2.75155474e-02 -3.17367539e-02\\n7.06683397e-02 -3.11927378e-01 -3.77176642e-01 -9.43722278e-02\\n1.59881786e-02 -1.67786881e-01 7.56854787e-02 1.81688834e-02\\n9.54895392e-02 2.70237457e-02 -6.06280684e-01 -3.82379919e-01\\n-2.73669243e-01 -7.09901303e-02 1.04973605e-02 -4.02967423e-01\\n-1.29361331e-01 5.25565855e-02 -6.03052258e-01 2.30757833e-01\\n-2.09122866e-01 -3.30351144e-02 1.37613282e-01 2.91433521e-02\\n-3.18615645e-01 -2.37179950e-01 4.32098508e-02 1.19254783e-01\\n-2.68173575e-01 -2.25296944e-01 -4.74914424e-02 -8.47725928e-01\\n1.34768784e-01 3.66707193e-03 -4.79419976e-02 7.16634020e-02\\n4.37627407e-03 -6.41135991e-01 1.23642839e-01 -4.26440150e-01\\n3.84621248e-02 6.15465753e-02 -1.57190844e-01 -3.95706862e-01\\n1.56553477e-01 -5.56020737e-02 -2.47616708e-01 3.83070320e-01\\n-4.71092165e-01 3.48306865e-01 1.31987194e-02 1.65715784e-01\\n2.23480687e-02 -3.83183151e-01 1.45570233e-01 -2.65538394e-01\\n-3.66449594e-01 -1.09009907e-01 -3.03128332e-01 -1.47740066e-01\\n-1.69112775e-02 -1.87749416e-01 -2.37731710e-01 6.92178681e-02\\n2.96515197e-01 1.20546348e-01 -4.54048142e-02 -2.20440567e-01\\n1.36543274e-01 -3.04501712e-01 1.27690047e-01 -3.23867947e-01\\n2.81314719e-02 -1.21010959e-01 1.48146734e-01 -7.84917325e-02\\n7.03247860e-02 -1.67408258e-01 5.39519489e-01 -1.94493815e-01\\n-3.92556667e-01 -1.24493867e-01 1.49878666e-01 -6.67787194e-02\\n3.10907573e-01 -4.45336372e-01 4.47199419e-02 2.23785147e-01\\n3.29212733e-02 2.86584292e-02 2.73108393e-01 -9.90170091e-02\\n-1.02034204e-01 1.20762847e-01 -4.72609073e-01 7.93663859e-02\\n6.99465930e-01 1.91495568e-01 9.95411873e-02 1.27759904e-01\\n9.66333374e-02 3.99248868e-01 5.48193097e-01 7.22123717e-04\\n-7.33302757e-02 3.61180067e-01 7.71671236e-02 -4.28004354e-01\\n-1.48752362e-01 -1.96678787e-02 -2.27286220e-01 -3.05529535e-01\\n6.49639666e-01 4.02409732e-01 -3.37697238e-01 -2.84022242e-01\\n-9.03467089e-02 -2.27738112e-01 2.29096070e-01 -1.97814293e-02\\n1.75782852e-02 -1.32459566e-01 6.84181869e-01 -2.64978707e-02\\n2.40939558e-01 6.09094739e-01 -2.06968009e-01 -4.36731964e-01\\n-3.90274003e-02 2.53270000e-01 7.64437467e-02 3.85360509e-01\\n-1.71747908e-01 2.84050733e-01 -3.46524604e-02 9.07286927e-02\\n-5.74894212e-02 8.91892686e-02 1.77369297e-01 6.64197505e-02\\n2.36310244e-01 1.36450619e-01 3.17821443e-01 5.76227129e-01\\n2.46338889e-01 4.52660263e-01 2.40938365e-01 8.78643766e-02\\n3.92644674e-01 5.99848926e-01 4.33827937e-01 1.72039062e-01\\n-5.91651872e-02 1.42034441e-01 1.46883816e-01 -6.55285642e-02\\n4.15433437e-01 3.26483160e-01 2.36779124e-01 9.04341161e-01\\n3.33564013e-01 2.99606621e-01 7.60248005e-01 -7.54629910e-01\\n-3.55033398e-01 6.95426390e-03 6.14870965e-01 -2.34401256e-01\\n-1.77287549e-01 9.64696929e-02 -2.55692452e-01 1.89290762e-01\\n-5.09353280e-01 -1.23376638e-01 -2.03100890e-02 -2.23057549e-02\\n1.04556940e-01 -2.04312541e-02 -1.73898458e-01 -6.40488341e-02\\n-2.41232261e-01 -1.58376664e-01 -4.06936139e-01 -2.07790017e-01\\n-3.69006574e-01 -9.29264948e-02 -9.10209566e-02 -1.20330751e-01\\n-1.62815526e-01 -3.18663746e-01 -9.06132534e-02 1.45808430e-02\\n3.92246604e-01 -1.85854256e-01 -1.18999466e-01 -1.57420203e-01\\n1.12480395e-01 2.70107508e-01 5.67641020e-01 -7.00156167e-02\\n2.31339276e-01 -1.48571253e-01 -1.45071864e-01 1.87175367e-02\\n8.14054012e-02 4.39925632e-03 1.13332294e-01 5.52565217e-01\\n-3.88022453e-01 -5.60092628e-02 -5.11673046e-03 3.14553350e-01\\n-3.51074129e-01 -1.16156533e-01 5.45472726e-02 3.16170007e-01\\n-3.64396982e-02 1.51962906e-01 -3.05470765e-01 1.26629665e-01\\n-1.21590830e-01 -5.81356168e-01 4.96135890e-01 -2.57543981e-01\\n-6.33914694e-02 2.33347595e-01 2.35786304e-01 1.57750547e-01\\n-2.35165000e-01 -1.14835128e-01 -8.77784044e-02 2.72812665e-01\\n8.47944841e-02 3.64898413e-01 -2.43103832e-01 -3.05341899e-01\\n-2.44102135e-01 3.02914500e-01 -1.27009928e-01 6.82922751e-02\\n-1.41470879e-01 3.72280270e-01 1.86334714e-01 1.40020147e-01\\n3.08964372e-01 3.21111977e-02 -2.21415401e-01 -2.39720806e-01\\n-1.26673579e-01 -3.70165348e-01 5.99129647e-02 5.63846976e-02\\n1.72840729e-01 -2.71302760e-01 -7.79972747e-02 -1.87957153e-01\\n-2.20052153e-01 -4.12251204e-01 -2.48407051e-01 4.53460813e-02]]',\n", + " 'Job Informationen Your tasks: Leading in development and improvement of our machine learning features Research, evaluate and implement algorithms to solve the challenges of our customers Design and implement code with a focus on robustness, scalability, reliability and performance Work together in small, highly motivated, interdisciplinary teams and bring Machine Learning, Natural Language Processing and Chatbots to the cloud Ensure high quality of our software products with Unit-, Integration- and End-to-End-Tests Your profile: BS/MS degree in Computer Science, Mathematics or a similar technical field of study or equivalent practical experience Substantial experience with machine learning models Experience with one or more general purpose programming languages including but not limited to: Python, JavaScript, Java 8+ (Spring, Hibernate/JPA), Ruby or Go Good knowledge of micro-service and REST API architectures Technical competency in Machine Learning/Artificial Intelligence (Statistical/Predictive Modeling/Natural Language Processing) Ability to efficiently get familiar with code bases, and to design and implement new features Very good communication (written and spoken) in German and English Valid work permission for Switzerland or Swiss/EU citizenship Benötigte Skills Machine Learning Python Python JavaScript JAVA Spring Hibernate Ruby Go Englisch Mathematik',\n", + " '[\"Research\", \"Written Communication\", \"Reliability\", \"Integration\"]',\n", + " '[\"Python Server Pages\", \"KM Programming Language\", \"Natural Language Processing\", \"Computer Science\", \"Statistics\", \"Machine Learning\", \"Hibernate (Java)\", \"Ruby (Programming Language)\", \"Feature Learning\", \"Python (Programming Language)\", \"SARS Software Products\", \"Limiter\", \"Java 8\", \"Machine Learning Methods\", \"JavaScript (Programming Language)\", \"Artificial Intelligence\", \"Scalability\", \"Predictive Modeling\", \"Chatbot\", \"Algorithms\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"RESTful API\"]',\n", + " \"['English', 'Pushto', 'Kwanyama', 'Limburgish', 'Tagalog']\"],\n", + " ['106',\n", + " 'clinical application product manager (oncology/hematology)',\n", + " 'Saint-Sulpice',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.sophiagenetics.com',\n", + " '[[-1.71980947e-01 2.12172270e-01 4.93262827e-01 -8.35595876e-02\\n6.85821593e-01 -7.34638795e-02 -4.00553010e-02 2.88224131e-01\\n9.20472816e-02 -3.07548851e-01 -1.04915000e-01 -3.54323745e-01\\n1.02588527e-01 1.96789667e-01 1.08552806e-01 4.38927948e-01\\n2.55895317e-01 4.43635844e-02 -6.34952635e-02 2.59390622e-01\\n1.46991193e-01 -1.77771538e-01 1.41151577e-01 7.18588173e-01\\n4.29732352e-01 -4.58444618e-02 -1.22463748e-01 4.03373577e-02\\n-4.50121239e-02 -2.41308764e-01 4.46066082e-01 2.01232582e-02\\n-1.36722803e-01 -1.99841335e-01 1.94732353e-01 1.33195743e-01\\n-2.08103329e-01 4.70130779e-02 -1.96682140e-01 1.74197033e-01\\n-6.27780795e-01 -2.49040529e-01 -6.25937656e-02 7.23983422e-02\\n-2.86451459e-01 -3.80931377e-01 5.38889170e-02 -1.43169820e-01\\n5.30496202e-02 1.75624385e-01 -3.12718183e-01 2.05964133e-01\\n-2.12569505e-01 -2.25898772e-01 2.16114908e-01 8.39808524e-01\\n-1.18332349e-01 -4.86543685e-01 -6.29179358e-01 -2.74121493e-01\\n1.14099093e-01 -1.05865993e-01 1.52062997e-01 -1.88236013e-01\\n5.13882577e-01 -6.41957670e-02 4.71549034e-02 2.91827202e-01\\n-8.46905112e-01 -2.06729352e-01 -3.71838480e-01 1.94184169e-01\\n-2.81217963e-01 -8.54068622e-03 -3.41167212e-01 -1.53783768e-01\\n-1.95428357e-01 4.23157126e-01 8.74963328e-02 -5.90778291e-02\\n-1.49609998e-01 1.40989929e-01 -4.62255269e-01 4.09987032e-01\\n1.76672861e-01 3.24402541e-01 2.69152224e-01 2.43258044e-01\\n-3.99601340e-01 6.41810000e-01 3.43884826e-01 -3.73517424e-01\\n2.27312148e-01 8.68981779e-02 3.14440280e-01 9.56280604e-02\\n2.17780992e-01 1.87618494e-01 -2.50429630e-01 1.45896524e-01\\n2.42589116e-01 -1.81572393e-01 1.11375609e-02 -3.58251408e-02\\n-1.29386494e-02 -8.76519457e-02 9.12534595e-02 1.38762891e-01\\n-4.70960438e-01 3.79654348e-01 6.03503287e-02 -3.11335772e-01\\n-7.54841566e-02 -4.84360397e-01 -1.19986989e-01 2.79897358e-02\\n-2.59541553e-02 1.68218106e-01 1.86259061e-01 2.48268634e-01\\n1.45244285e-01 -3.69417295e-02 6.70659542e-02 9.73516226e-01\\n-9.77312624e-02 1.34560943e-01 -2.36750722e-01 3.82729381e-01\\n1.06827810e-01 -1.91767454e-01 2.19132066e-01 1.62339911e-01\\n-8.79954100e-02 -2.03779712e-01 -1.43763810e-01 3.29503030e-01\\n-6.56632185e-02 -2.77508825e-01 -1.65285543e-01 2.06075996e-01\\n-8.10696036e-02 -4.55732614e-01 5.99294186e-01 -6.17821477e-02\\n2.02416092e-01 -1.35149315e-01 -1.02212839e-01 -1.33552626e-01\\n-8.65381956e-02 1.59646198e-01 1.63907066e-01 1.04933582e-01\\n-1.84595719e-01 -1.85591146e-01 -1.86711624e-01 2.50627756e-01\\n-2.64177382e-01 1.33733705e-01 -2.58650362e-01 -1.29087061e-01\\n3.09557825e-01 1.33627523e-02 -2.75421262e-01 2.59638071e-01\\n-8.16710219e-02 -2.36491095e-02 -1.96023751e-02 3.26818109e-01\\n-2.94425875e-01 1.54827312e-01 -9.04739425e-02 -6.49375692e-02\\n6.74034953e-01 8.08523893e-02 2.82468557e-01 -6.22015856e-02\\n2.10861772e-01 -8.74466896e-02 1.82642207e-01 1.46693155e-01\\n-6.01318717e-01 5.19625366e-01 -1.27037778e-01 -1.96985692e-01\\n1.58630267e-01 -8.73734504e-02 4.40011978e-01 -2.34468490e-01\\n-4.52969335e-02 -9.29770470e-02 -2.66590744e-01 -2.82847613e-01\\n-2.40657508e-01 -2.78500076e-02 3.21959883e-01 -4.74952638e-01\\n1.37570247e-01 2.10259899e-01 -5.79291344e-01 -2.35133573e-01\\n1.35681435e-01 3.10291260e-01 2.14995787e-01 1.59676358e-01\\n-1.32708684e-01 -5.95268965e-01 1.57250091e-01 -4.99297857e-01\\n-7.76418969e-02 1.99946284e-01 -2.34957114e-01 1.99933201e-01\\n1.39320120e-01 9.35294330e-02 -5.33532575e-02 -2.86885630e-02\\n-1.82314411e-01 6.13695979e-02 1.15789600e-01 6.62878603e-02\\n2.61943549e-01 1.16909705e-01 -4.39185768e-01 5.30658484e-01\\n-2.04105332e-01 4.39930826e-01 4.00945209e-02 -9.36684430e-01\\n4.05629545e-01 4.61945623e-01 6.34247437e-02 -2.14010417e-01\\n7.34246373e-01 -2.57718444e-01 -1.23668283e-01 1.73397496e-01\\n-4.23701435e-01 -9.96369570e-02 6.19322248e-02 -3.61130029e-01\\n-2.12307021e-01 5.60846567e-01 1.22151159e-01 6.40350506e-02\\n2.88727105e-01 -1.33670360e-01 -6.98288530e-02 -8.89994353e-02\\n-2.46612728e-01 -2.05996245e-01 -5.66157043e-01 -1.07064247e-01\\n-4.74357046e-02 -4.69809473e-01 -1.18047222e-01 -4.60858166e-01\\n-1.36352643e-01 -4.13601309e-01 -8.63706097e-02 5.99071290e-03\\n2.22434923e-01 1.48895830e-01 -1.17264839e-03 -2.49422397e-02\\n-2.15688378e-01 -6.75914824e-01 -5.66236190e-02 1.61593989e-01\\n2.38925084e-01 1.41072676e-01 2.47584000e-01 1.71703715e-02\\n4.85323556e-02 4.27843243e-01 -3.83266836e-01 -3.70734423e-01\\n2.04669848e-01 1.90381572e-01 8.54319930e-02 -7.89583996e-02\\n1.94577679e-01 2.89022177e-01 -1.84119135e-01 6.81276247e-02\\n-9.90616530e-02 2.67844535e-02 3.05603415e-01 4.37292568e-02\\n-1.80588290e-01 -2.11527020e-01 -1.53052464e-01 2.25704208e-01\\n-5.71669698e-01 -3.38605255e-01 3.79385144e-01 5.92494430e-03\\n3.26289497e-02 2.66033143e-01 2.50540584e-01 -5.69551922e-02\\n-2.33986452e-01 -2.10615531e-01 3.27935666e-01 1.26252607e-01\\n1.37969077e-01 -8.95437598e-03 -3.11894231e-02 -5.89778244e-01\\n-3.21271348e+00 -1.83625996e-01 6.25159442e-02 -2.74819970e-01\\n4.57740247e-01 -1.87927812e-01 9.01776701e-02 -7.17453435e-02\\n-3.28528821e-01 7.04272985e-02 -2.08505988e-01 -2.06495389e-01\\n1.04401372e-01 1.12551652e-01 2.08964542e-01 2.09662095e-01\\n-6.99103698e-02 -2.63183504e-01 1.62334323e-01 3.66920203e-01\\n-2.01400906e-01 -7.92902231e-01 1.34443074e-01 7.51595572e-02\\n2.04234868e-01 2.58165598e-01 -6.28767073e-01 -9.07093734e-02\\n-3.50148499e-01 -3.34361613e-01 2.59090990e-01 -2.59488821e-01\\n-1.57129407e-01 2.50270993e-01 2.16486752e-01 -1.17721185e-01\\n-6.44913092e-02 -3.69376779e-01 -6.21603504e-02 -4.37931538e-01\\n1.04153953e-01 -6.32179797e-01 -8.98697600e-02 -4.44758357e-03\\n6.71386719e-01 -2.95064151e-01 2.63094932e-01 1.42237529e-01\\n4.78402190e-02 1.32837862e-01 1.40439361e-01 -2.76770703e-02\\n-1.97503090e-01 -2.54401833e-01 -6.95518181e-02 -9.93211567e-02\\n4.70979899e-01 5.00046909e-01 -2.02681065e-01 -9.40720439e-02\\n7.17383670e-03 -3.58606875e-01 -5.32271743e-01 -2.89758861e-01\\n-2.37999633e-01 -8.47720057e-02 -5.66571712e-01 -4.41279948e-01\\n-1.19598761e-01 -1.97385177e-01 -2.36301422e-02 5.65056264e-01\\n-3.51053774e-01 -2.65392959e-01 -1.97257787e-01 -4.29483354e-01\\n3.50226283e-01 -1.77087158e-01 7.53754517e-03 -1.82955682e-01\\n-1.88137680e-01 -3.74301523e-01 9.16827321e-02 -2.02828553e-02\\n-1.68231174e-01 -2.44272962e-01 9.05037150e-02 -1.96498930e-01\\n-4.60819721e-01 -6.18186057e-01 3.04807752e-01 7.49440417e-02\\n3.27047497e-01 1.06980689e-02 2.52088815e-01 -7.08909929e-02\\n3.38431329e-01 -8.18969756e-02 2.31154654e-02 -5.41103005e-01\\n-1.85075179e-02 -2.29785834e-02 5.61215580e-01 -2.42464900e-01\\n1.04566433e-01 -2.02386156e-02 -2.51314938e-01 -1.90906692e-02\\n3.19915742e-01 -1.51967838e-01 1.24427408e-01 -1.97858259e-01\\n3.44194651e-01 -2.83314884e-01 -1.68002948e-01 -2.27779411e-02\\n8.13418776e-02 7.36457944e-01 -4.93819593e-03 -3.40344936e-01\\n-1.33789837e-01 3.98293018e-01 -2.60991663e-01 -3.60791571e-02\\n-6.40951768e-02 3.81682105e-02 -2.57050276e-01 2.55532503e-01\\n-5.24839051e-02 -6.89602196e-02 -2.41341010e-01 -7.40445927e-02\\n-5.71881123e-02 2.49102235e-01 3.44809055e-01 1.27406552e-01\\n-1.79106325e-01 -3.22097152e-01 -1.02299325e-01 3.16626430e-01\\n1.47305742e-01 3.00089240e-01 2.05566004e-01 -2.30371654e-01\\n3.07397041e-02 2.40551904e-01 -2.48643115e-01 3.10846388e-01\\n-1.87472731e-01 1.55065849e-01 -7.38722563e-01 -2.47319996e-01\\n-2.68153369e-01 -3.91834199e-01 2.52489001e-01 2.75765389e-01\\n1.80359498e-01 -1.29550576e-01 1.19748920e-01 -4.72981215e-01\\n7.95781314e-02 -5.73628843e-02 2.92164594e-01 1.68544456e-01\\n-1.62597641e-01 6.71239376e-01 7.13159982e-03 -8.62292722e-02\\n-1.15358084e-01 9.24725085e-02 -2.57821113e-01 -3.11829925e-01\\n2.01367773e-02 -4.33519423e-01 -1.73085123e-01 4.65072721e-01\\n1.24448538e-01 -1.82570755e-01 -2.06604674e-01 2.88300335e-01\\n-3.54152955e-02 -4.30482924e-01 -2.41871282e-01 4.19024527e-02\\n2.41130486e-01 2.19557256e-01 2.26608470e-01 -5.85650086e-01\\n5.13991043e-02 -2.94437055e-02 -3.25951050e-03 4.31910485e-01\\n-1.01653598e-01 1.28650188e-01 -1.02458403e-01 -1.88741654e-01\\n4.18192893e-01 -1.02772135e-02 -1.20703187e-02 -5.44961169e-02\\n1.34517282e-01 -3.00732821e-01 -3.32687855e-01 4.37251478e-02\\n1.28115967e-01 -2.80908376e-01 -9.41656437e-03 2.77079821e-01\\n9.66656804e-02 -3.51543427e-02 -5.83897114e-01 -1.69198811e-01\\n-2.80750185e-01 1.25108033e-01 2.65906435e-02 -5.32098949e-01\\n-1.05664916e-01 -1.42814636e-01 -4.52712983e-01 3.06237906e-01\\n9.05517638e-02 -1.11128464e-01 2.30804339e-01 1.38096055e-02\\n-2.52547920e-01 -1.96140006e-01 2.19059542e-01 1.53323859e-01\\n-2.19167233e-01 -2.35165000e-01 -3.31625976e-02 -1.05809200e+00\\n8.34892690e-02 4.53115739e-02 4.11184179e-03 1.38155580e-01\\n3.77706364e-02 -8.23836565e-01 2.65771657e-01 -3.96279663e-01\\n-2.24033073e-01 -8.89766887e-02 -2.28469193e-01 -4.37571883e-01\\n1.15641490e-01 3.54094245e-02 -1.11969523e-01 3.59083742e-01\\n-2.40211993e-01 5.08548975e-01 -1.42279133e-01 -6.44871518e-02\\n1.47856534e-01 -2.29498088e-01 1.53538898e-01 -2.90603727e-01\\n-4.86892730e-01 -5.46435863e-02 -3.10152709e-01 -1.41009510e-01\\n-1.90855309e-01 -1.39236793e-01 -8.75488222e-02 3.24361697e-02\\n5.04008830e-01 1.27947673e-01 -1.41858026e-01 -1.23681761e-01\\n-4.62801270e-02 -4.08864707e-01 1.86685205e-01 -2.76627630e-01\\n-9.90935694e-03 -1.63969874e-01 1.99135125e-01 1.56939477e-01\\n2.22518116e-01 -4.85780746e-01 4.60496694e-01 -2.20519409e-01\\n-4.46557522e-01 -1.26671955e-01 1.89266175e-01 6.25954419e-02\\n4.23591912e-01 -4.87600356e-01 -1.37305990e-01 3.84371668e-01\\n1.03709474e-01 7.22221583e-02 4.34096426e-01 -1.78015515e-01\\n-1.63016483e-01 1.58988178e-01 -4.88441139e-01 2.03500107e-01\\n7.77517736e-01 1.81574285e-01 1.64723203e-01 5.08402847e-02\\n1.72085062e-01 2.87723839e-01 4.75707561e-01 -9.47329253e-02\\n-4.87829335e-02 4.61632669e-01 9.69737619e-02 -4.50307220e-01\\n-3.12527195e-02 -6.56192228e-02 -5.34324721e-02 -4.21373457e-01\\n6.15548670e-01 3.22726756e-01 -3.55252266e-01 -1.83008760e-01\\n-4.04081553e-01 -2.50222147e-01 1.75638393e-01 -7.46791810e-02\\n5.13104349e-02 -5.62431030e-02 4.40797508e-01 -6.17316142e-02\\n2.44167820e-01 5.19187629e-01 -1.59122348e-01 -2.71328777e-01\\n-1.12722116e-02 3.61089826e-01 9.22060460e-02 5.30415177e-01\\n-1.76399708e-01 3.01064342e-01 -6.04971349e-02 1.30942345e-01\\n-2.87908763e-01 6.30816296e-02 3.29964846e-01 5.84664196e-03\\n1.23492248e-01 1.57948375e-01 4.73253727e-01 4.09562320e-01\\n3.94409239e-01 3.31403345e-01 4.21010286e-01 -7.89522007e-02\\n5.58400393e-01 6.02428794e-01 3.14410925e-01 8.87455270e-02\\n5.94491884e-03 1.51287913e-01 9.79691148e-02 8.05021748e-02\\n2.88077980e-01 4.23572212e-01 5.18984124e-02 8.19875836e-01\\n3.19807142e-01 3.15587133e-01 6.10623181e-01 -5.25405705e-01\\n-3.23774457e-01 -2.89806304e-03 5.67985952e-01 -4.42392141e-01\\n3.10883541e-02 2.23378450e-01 -1.67007804e-01 1.51203915e-01\\n-4.44321185e-01 -2.67849296e-01 -5.34219183e-02 6.66069835e-02\\n6.50895685e-02 -1.71113998e-01 -1.69209421e-01 1.57300189e-01\\n-1.90608054e-01 -2.56927222e-01 -4.50696945e-01 -8.40108991e-02\\n-3.89678687e-01 -4.18260656e-02 -1.22229144e-01 -4.43127528e-02\\n-1.19131930e-01 -2.00282559e-01 -8.34078640e-02 2.93187685e-02\\n3.99768680e-01 -2.61624724e-01 -1.89346999e-01 -8.27064142e-02\\n5.01245558e-01 4.48639952e-02 5.17758012e-01 -3.23917344e-03\\n2.51160171e-02 -2.68952698e-01 -2.68820286e-01 1.58012182e-01\\n2.92942733e-01 5.03400788e-02 -2.18152869e-02 5.13956666e-01\\n-2.59927988e-01 -1.87232181e-01 8.58758241e-02 3.07992071e-01\\n-4.03459847e-01 -1.18100066e-02 2.80795656e-02 2.69917883e-02\\n7.06697106e-02 1.86978117e-01 -2.10982531e-01 2.19744397e-03\\n-4.22337465e-02 -5.29829860e-01 2.38330603e-01 -1.32157505e-01\\n-3.61831397e-01 -4.22776910e-03 4.31549013e-01 3.69908124e-01\\n-8.34632665e-02 -2.46300292e-03 -1.89757451e-01 2.34149665e-01\\n3.13111916e-02 2.21531615e-01 -2.37169325e-01 -2.69384086e-01\\n-3.64751011e-01 2.81839401e-01 -1.88841373e-01 1.96656585e-01\\n4.84316945e-02 3.22886527e-01 -4.00063097e-02 1.29920438e-01\\n3.89324099e-01 -1.44093126e-01 -2.10321620e-01 -3.65671664e-01\\n-1.73423752e-01 -2.20537424e-01 -6.42086864e-02 -6.94193840e-02\\n2.66691059e-01 -2.70320773e-01 -1.31884217e-01 -1.72227576e-01\\n-2.70096242e-01 -4.20202613e-01 3.96028161e-03 -1.15839235e-01]]',\n", + " 'SOPHiA GENETICS Genomics group are looking for a Clinical Product Application manager for Oncology – Hematology to join our team. The Clinical Product Application manager will be responsible for hematological cancer applications mainly for Next Generation Sequencing. The position will be either home or office based at our office in St-Sulpice, Switzerland. Main Job Responsibilities Take the lead on product development life cycle by delivering and presenting new product business cases, collect product requirements, develop go-to-market strategies, launch products and engage in post-marketing surveillance Monitor the clinical diagnostics ecosystem and competitive landscape to help develop strategic goals for Next Generation Sequencing applications. Work closely together with customers and key opinion leaders on projects to develop new applications Define pricing strategy, product messaging and positioning for product portfolio Work together with the marketing team to develop product collaterals such as fact sheets, white papers and presentations Engage closely with the sales team by visiting key accounts, presenting at congresses and workshops, and deliver training to Subject Matters Experts. Partner and lead project with BioIT, Data Scientists, Production, R&D and Business Development to achieve business goals. Coordinate the development of all components of a product and analytical platform features across the different departments of the company Measuring and reporting sales performance of products We Are Looking for a Candidate Who Has Bachelors, Masters or higher degree in biology, molecular biology, molecular genetics, or a related discipline. PhD would be an advantage. 5+ years of relevant experience, with practical experience in the life science, clinical research or diagnostics field. Experience in hematological malignancies is a strong advantage. Proven track record of product launches and go-to-market strategies in NGS applications Excellent knowledge of NGS workflow technologies and understanding of bioinformatics analysis Proven ability to work in a team and collaboratively across departments to develop new market strategies that meet revenue and growth forecasts Ability to think strategically, analyze situations quickly and make informed decisions Excellent organizational skills to define timelines, set priorities and deliver on time Excellent written and verbal communication skills including communicating complex scientific topics in simple terms to internal and external partners. Must have flexibility in working hours and be available for 25% domestic & international business travel. English (business language) is mandatory. French or other languages would be desirable. Starting date: ASAP Location: Home office based in Europe with easy access to an international airport, and/or St-Sulpice - Switzerland Apply',\n", + " '[\"Verbal Communication Skills\", \"Strategic Thinking\", \"Coordinating\", \"Collaboration\", \"Decisiveness\", \"Management\", \"Communications\", \"Timelines\", \"Organizational Skills\", \"Presentations\", \"Positivity\", \"Sales\"]',\n", + " '[\"White Paper\", \"Accessioning\", \"Product Requirements\", \"Genomics\", \"Life Sciences\", \"Collections\", \"Analytics\", \"Genetics\", \"Life Cycle Assessment\", \"Pricing Strategies\", \"Key Opinion Leader Development\", \"Molecular Genetics\", \"Landscaping\", \"Track (Rail Transport)\", \"Oncology\", \"Market Access Strategy\", \"Sales Performance Management\", \"Patentable Subject Matter\", \"Workflow Technology\", \"Accounting\", \"Clinical Research\", \"Agile Product Development\", \"Hematology\", \"Forecasting\", \"Bioinformatics\", \"Cancer\", \"Molecular Biology\", \"Fact Sheets\", \"Go-to-Market Strategy\", \"New Product Development\", \"Business Development\", \"International Business\", \"Business Case\"]',\n", + " \"['English', 'Malagasy']\"],\n", + " ['115',\n", + " 'data quality analytics consultant',\n", + " 'Zürich',\n", + " 'Insurance Agencies & Brokerages',\n", + " 'www.swissre.com',\n", + " '[[-1.75298631e-01 1.34277016e-01 4.93102580e-01 1.04394108e-02\\n4.35366124e-01 -8.75177607e-02 -1.43540166e-02 4.56902802e-01\\n-5.83789572e-02 -4.84218180e-01 -3.69837135e-02 -2.76895404e-01\\n-1.19374052e-01 1.46532059e-01 8.90235901e-02 4.30540830e-01\\n4.31288421e-01 1.60808772e-01 -1.88231498e-01 2.23380938e-01\\n8.68097097e-02 -3.87049578e-02 1.35737032e-01 7.60980546e-01\\n4.53682780e-01 5.40129095e-03 -2.38795206e-03 -4.62727174e-02\\n-1.66459322e-01 -2.27245569e-01 5.05446553e-01 4.20605019e-02\\n-2.07854971e-01 -2.81463146e-01 9.88021046e-02 1.19270295e-01\\n-2.13359416e-01 -2.81801559e-02 -1.16184443e-01 5.14849760e-02\\n-3.48149031e-01 -1.72385618e-01 -1.16345689e-01 2.69205868e-02\\n-2.52296150e-01 -3.50649834e-01 2.48274859e-02 5.72353229e-02\\n2.39995420e-01 1.18925460e-01 -4.61434543e-01 3.07985336e-01\\n-2.79013574e-01 -2.01437727e-01 2.64169186e-01 6.07179284e-01\\n-1.08869277e-01 -3.85864854e-01 -5.26535213e-01 -3.65413368e-01\\n9.83239040e-02 -1.83259696e-01 5.38394228e-02 -4.18760002e-01\\n3.27237397e-01 1.61099225e-01 5.98929487e-02 2.44102478e-01\\n-7.39308953e-01 -5.48679754e-02 -3.04198295e-01 -1.28770918e-01\\n-3.79715145e-01 -4.40247245e-02 -3.81543994e-01 -1.59461856e-01\\n-1.73924848e-01 3.23407531e-01 1.36678535e-02 1.25347629e-01\\n-8.99820328e-02 3.13712806e-01 -2.78749138e-01 3.84974122e-01\\n1.40671045e-01 2.20436871e-01 2.60958016e-01 3.12965333e-01\\n-4.26841438e-01 4.20550823e-01 1.30020320e-01 -3.42520028e-01\\n1.98450059e-01 1.05905265e-01 3.54733229e-01 -1.02625221e-01\\n3.26607734e-01 5.96513227e-02 -3.05419028e-01 3.27802330e-01\\n2.25299507e-01 -3.11191559e-01 6.61647990e-02 -2.03310877e-01\\n6.98283315e-02 -4.74824896e-03 1.01862870e-01 4.21122089e-02\\n-3.31436276e-01 4.38915491e-01 1.05292022e-01 -2.82581866e-01\\n-1.03630967e-01 -4.91951823e-01 -3.85693982e-02 1.07461534e-01\\n1.22404143e-01 8.94070491e-02 1.34691566e-01 1.99625462e-01\\n2.16160223e-01 -2.77196504e-02 1.42025441e-01 6.47678196e-01\\n-1.25236049e-01 -9.35275946e-03 -2.58115768e-01 2.56384850e-01\\n3.13654318e-02 -3.32967162e-01 1.48976162e-01 1.96642235e-01\\n-1.34410918e-01 -1.20834649e-01 -2.72379637e-01 3.21035266e-01\\n3.51338238e-02 -2.91597903e-01 -2.79670686e-01 2.72527814e-01\\n1.45489216e-01 -4.10831571e-01 6.30721450e-01 1.73081197e-02\\n1.27176434e-01 -1.72028765e-02 1.72889940e-02 -1.73844695e-01\\n-2.07568035e-02 7.80287832e-02 7.15284869e-02 9.05987546e-02\\n-2.53377736e-01 -1.89206064e-01 -1.60865441e-01 1.14002526e-01\\n-4.56590295e-01 1.18272297e-01 -1.20447025e-01 -1.03848591e-01\\n1.67450756e-01 -8.31378251e-02 -2.94614583e-01 1.43603489e-01\\n-1.21554479e-01 -5.38420938e-02 5.90729676e-02 4.71917868e-01\\n-2.25644678e-01 2.55931318e-01 -6.19382337e-02 -7.99588710e-02\\n6.90009773e-01 3.68435606e-02 2.19911009e-01 1.00756530e-02\\n2.39857823e-01 9.28827301e-02 1.03438288e-01 5.88641688e-02\\n-7.53430724e-01 2.99316168e-01 -8.43687579e-02 -2.59972930e-01\\n2.07064867e-01 1.20959003e-02 2.28515103e-01 -2.30403066e-01\\n5.54572120e-02 -1.29631404e-02 -2.52491683e-01 -2.45567486e-01\\n-1.75622016e-01 -8.20682719e-02 2.79740334e-01 -5.06709099e-01\\n-1.03068627e-01 2.02496082e-01 -5.20807326e-01 -1.88034475e-01\\n6.98336139e-02 2.10552201e-01 7.62732700e-02 1.74490452e-01\\n-1.52689040e-01 -4.73905444e-01 1.15900606e-01 -4.23444450e-01\\n-2.41258562e-01 1.12362579e-01 -3.45449746e-01 1.42129734e-01\\n6.36606067e-02 1.34239905e-03 -1.24067158e-01 1.29166588e-01\\n-1.65123284e-01 -2.53089983e-02 5.98452017e-02 -4.55799289e-02\\n3.23581040e-01 8.62116553e-03 -2.90718645e-01 5.45057297e-01\\n-1.24474041e-01 4.65480000e-01 8.43199939e-02 -8.11176300e-01\\n5.35154164e-01 2.72684216e-01 3.77698056e-02 -3.68166447e-01\\n6.11026585e-01 -2.23871171e-01 -1.31031230e-01 7.01214373e-02\\n-4.41221893e-01 -3.05743396e-01 2.11129725e-01 -2.79032767e-01\\n-2.09277332e-01 4.50729907e-01 -8.38361587e-03 1.38307169e-01\\n2.57729411e-01 -2.30241403e-01 -2.09604442e-01 1.44385323e-01\\n-1.88687891e-01 -1.67671621e-01 -5.62095821e-01 -1.26530305e-01\\n-1.02125898e-01 -3.63986671e-01 -2.05466837e-01 -4.05007303e-01\\n-1.37589395e-01 -3.60494912e-01 -2.59284042e-02 2.01202810e-01\\n1.72735572e-01 8.58001411e-03 -9.12901163e-02 7.17043206e-02\\n-1.24826133e-01 -6.61557555e-01 -3.41851674e-02 8.25183392e-02\\n3.96689355e-01 1.46894649e-01 1.54246032e-01 6.96740821e-02\\n7.41008967e-02 7.04930782e-01 -1.82788640e-01 -2.70003289e-01\\n1.71959221e-01 2.94503093e-01 4.75707799e-02 -7.53508657e-02\\n1.30110011e-01 2.92714119e-01 -3.30779910e-01 3.13102081e-03\\n-8.87173936e-02 -7.00581595e-02 4.40352917e-01 -7.65800476e-02\\n-2.42176443e-01 -9.87585783e-02 -8.28243569e-02 3.84676754e-02\\n-4.80644971e-01 -2.77432680e-01 6.31536603e-01 2.60519773e-01\\n7.65201077e-02 1.30192712e-01 1.02444828e-01 3.54478359e-02\\n-1.16350219e-01 -2.32537121e-01 2.80591309e-01 3.40195298e-02\\n1.32794112e-01 1.82575017e-01 -9.53525603e-02 -5.24118543e-01\\n-3.44333720e+00 -1.10711977e-01 7.07994699e-02 -6.67898655e-02\\n2.49506086e-01 -8.74367133e-02 1.84458196e-01 -1.30610779e-01\\n-3.24717999e-01 4.77803648e-02 -5.82258329e-02 -1.79126441e-01\\n1.60055146e-01 2.55272090e-01 1.13051131e-01 2.12829918e-01\\n2.15275988e-01 -1.80156171e-01 2.44697034e-02 4.05822039e-01\\n-1.33878142e-01 -6.66621327e-01 1.73150256e-01 -5.14563126e-03\\n2.70609856e-01 3.17100704e-01 -3.06000799e-01 -1.46438912e-01\\n-1.86064720e-01 -2.38188416e-01 1.06982626e-02 -3.90666038e-01\\n-8.93695801e-02 2.09860966e-01 2.70308822e-01 -1.54417127e-01\\n5.19850254e-02 -3.89154404e-01 -2.00795978e-01 -4.92670953e-01\\n1.19704612e-01 -5.10843277e-01 6.85606450e-02 -1.28461987e-01\\n6.97063684e-01 -2.69805610e-01 1.36377737e-01 5.04177483e-03\\n7.25133196e-02 1.94688424e-01 1.71133995e-01 3.26592065e-02\\n-1.83062673e-01 -3.56214046e-01 -9.81233642e-02 -1.93211302e-01\\n6.88604832e-01 3.48379582e-01 -1.29160613e-01 -3.14717218e-02\\n1.08439803e-01 -2.09802449e-01 -4.18941081e-01 -2.21359730e-01\\n-6.37887418e-02 -1.14707708e-01 -5.59468985e-01 -4.60979342e-01\\n-1.89547881e-01 -2.24553689e-01 -8.81905183e-02 6.01690650e-01\\n-2.67101228e-01 -2.66929030e-01 -1.44067287e-01 -5.73971391e-01\\n3.77285242e-01 -1.47709996e-01 -1.95088163e-02 -2.28903726e-01\\n-2.65758008e-01 -4.85379070e-01 -4.01499961e-03 3.52849066e-02\\n5.93845993e-02 -2.59988159e-01 1.14597619e-01 -6.30246475e-02\\n-3.18304241e-01 -5.08039773e-01 3.86938751e-01 4.91528623e-02\\n3.51862788e-01 2.72609174e-01 2.89664775e-01 -5.59085943e-02\\n2.31981963e-01 9.13899019e-03 -9.28237662e-02 -3.51993650e-01\\n9.23367292e-02 4.16023023e-02 4.34241354e-01 -9.21094343e-02\\n2.01576166e-02 5.95871210e-02 -1.79777429e-01 -2.72930879e-02\\n3.88099670e-01 -3.87608744e-02 2.28629619e-01 -1.47598073e-01\\n2.81066269e-01 -3.06832612e-01 -1.09889358e-01 2.35371329e-02\\n8.95592719e-02 5.14193594e-01 2.76233926e-02 -3.94302428e-01\\n-4.42755632e-02 6.00390136e-01 -8.63861442e-02 9.27776396e-02\\n-3.62267494e-01 5.64017780e-02 -2.90021360e-01 1.80358544e-01\\n2.55464297e-02 -1.42818153e-01 -1.56581596e-01 -1.22117326e-01\\n-4.60764915e-02 3.24127465e-01 2.97652185e-01 1.78373814e-01\\n-1.36161000e-02 -4.29027736e-01 -5.02190292e-02 2.02923000e-01\\n2.53692687e-01 5.25263488e-01 1.12073474e-01 -1.59378991e-01\\n-5.64981103e-02 3.09906065e-01 -1.45162076e-01 1.74545646e-01\\n-2.69506454e-01 8.57796147e-02 -4.40192252e-01 -2.39323974e-01\\n-3.04655671e-01 -3.45591068e-01 1.41094714e-01 3.33804250e-01\\n1.39417693e-01 -3.01307105e-02 9.21460316e-02 -4.04009819e-01\\n2.30548099e-01 2.19879568e-01 1.69677526e-01 1.03756174e-01\\n3.92823592e-02 5.65420389e-01 6.35788403e-03 -1.65899873e-01\\n-1.45662263e-01 1.72539085e-01 -1.74081847e-01 1.50127765e-02\\n2.60014683e-02 -4.76078540e-01 -2.03042805e-01 3.38784754e-01\\n1.20019183e-01 -1.03132010e-01 -2.09409207e-01 2.55583584e-01\\n-5.45869321e-02 -2.45736539e-01 -2.20863491e-01 5.11444174e-03\\n3.40028673e-01 1.37328163e-01 3.37887645e-01 -4.60663587e-01\\n-8.20665136e-02 4.09280881e-03 1.28750522e-02 4.26437974e-01\\n-2.82635950e-02 1.26103491e-01 -1.11800261e-01 -1.73241943e-01\\n3.62488747e-01 -1.78815097e-01 -1.13371015e-01 1.30045742e-01\\n1.31049007e-01 -1.51995942e-01 -3.08168143e-01 7.41579570e-04\\n-1.35931224e-01 -1.89696878e-01 -4.87604551e-02 1.71610594e-01\\n7.46620968e-02 1.57322496e-01 -7.07539916e-01 -2.16977090e-01\\n-2.65714645e-01 -2.19440404e-02 -2.96918862e-02 -5.58709979e-01\\n3.35950442e-02 -1.99385315e-01 -5.29798865e-01 2.19400883e-01\\n-1.60313711e-01 -1.72461003e-01 3.09825122e-01 -3.45334373e-02\\n-2.86131501e-01 -1.77929953e-01 1.19376555e-01 2.63997644e-01\\n-2.69611299e-01 -1.84357494e-01 -1.38968304e-02 -9.67157960e-01\\n2.41940647e-01 -7.62559986e-03 -1.69732749e-01 1.03725731e-01\\n-1.32306725e-01 -6.31977856e-01 5.92905506e-02 -3.65056574e-01\\n-1.45612344e-01 -4.24879491e-02 -2.14319408e-01 -3.48135084e-01\\n1.29160047e-01 -7.71134347e-03 -2.03182548e-01 4.00679976e-01\\n-2.47661352e-01 3.14380378e-01 -2.04451576e-01 1.06516302e-01\\n-8.38639401e-03 -2.45874554e-01 7.27418810e-02 -3.17172706e-01\\n-4.05997992e-01 -3.04221481e-01 -2.58344889e-01 -2.53265232e-01\\n4.21592705e-02 -5.04103661e-01 -8.93435627e-02 4.21895497e-02\\n3.16945970e-01 -2.00148672e-02 -1.64430425e-01 -1.26074478e-01\\n2.14926749e-02 -5.79603851e-01 8.93039778e-02 -8.84219483e-02\\n-8.46045837e-02 -1.73765600e-01 2.94401050e-01 1.53816253e-01\\n2.31095701e-01 -3.98088157e-01 3.57882500e-01 -3.81554306e-01\\n-2.90800512e-01 -2.47647967e-02 5.60005344e-02 -5.98216280e-02\\n2.39034563e-01 -5.46855807e-01 -1.42191753e-01 3.82301390e-01\\n1.47491977e-01 6.25551492e-02 1.70166522e-01 -1.48256704e-01\\n-1.41405746e-01 3.65316510e-01 -2.86104858e-01 6.26293868e-02\\n6.03157043e-01 2.00295657e-01 1.31601721e-01 2.75177181e-01\\n1.54424191e-01 2.45782197e-01 4.50501770e-01 3.09567992e-02\\n-1.05489492e-01 3.07327986e-01 7.87966326e-02 -5.24318755e-01\\n2.20638402e-02 6.87085614e-02 -8.88090581e-02 -4.52128589e-01\\n6.99187756e-01 3.87496471e-01 -4.61074471e-01 -2.17134029e-01\\n-1.67855948e-01 -2.30061293e-01 2.44314879e-01 9.92031768e-03\\n1.04475290e-01 -5.51722758e-02 2.92660654e-01 -5.42754419e-02\\n2.05277309e-01 6.58901453e-01 -2.22056925e-01 -1.90235436e-01\\n-1.46588370e-01 2.22227573e-01 -2.59318687e-02 5.56972980e-01\\n-2.85089016e-01 3.16980481e-01 -2.14406550e-02 1.05851844e-01\\n-9.80894417e-02 8.16078335e-02 1.08860523e-01 4.56280969e-02\\n2.44541258e-01 7.27291629e-02 4.70291615e-01 3.51250201e-01\\n2.05570161e-01 3.30216914e-01 2.85626113e-01 -2.34744139e-03\\n4.06389415e-01 5.03268480e-01 4.74140316e-01 8.93826485e-02\\n-9.64943320e-04 4.73850891e-02 1.42657056e-01 3.88978645e-02\\n2.52589762e-01 3.41079950e-01 4.33368701e-03 8.41284871e-01\\n3.15612197e-01 3.06316376e-01 5.52903533e-01 -6.73441887e-01\\n-2.75945187e-01 5.28126620e-02 4.29544240e-01 -4.40914094e-01\\n1.29558489e-01 1.98414683e-01 -1.77429721e-01 1.55073091e-01\\n-4.48107511e-01 -2.21147627e-01 -5.21622449e-02 7.22081661e-02\\n2.65378542e-02 -1.81437731e-01 -1.64325759e-01 5.04603051e-02\\n-8.01826864e-02 -9.30223241e-02 -4.76361722e-01 -2.29257792e-01\\n-1.93322062e-01 -9.96892527e-02 -3.66657078e-02 -2.13172391e-01\\n-1.15606591e-01 -2.50249207e-01 -3.88603695e-02 -7.37618357e-02\\n1.86160699e-01 -1.24273404e-01 2.70787105e-02 -1.84127659e-01\\n2.89759696e-01 2.55553305e-01 5.22452533e-01 -1.91702433e-02\\n2.98296027e-02 -1.88959345e-01 -1.46641910e-01 1.95965409e-01\\n1.47883788e-01 2.53158174e-02 6.52964041e-02 2.13393629e-01\\n-1.55144721e-01 -2.90262580e-01 2.02120632e-01 2.74402469e-01\\n-4.04944658e-01 -1.86211560e-02 -1.41897812e-01 2.44155586e-01\\n2.83624604e-03 1.46271735e-01 -8.55101943e-02 2.25974377e-02\\n-9.53000486e-02 -4.19230253e-01 2.35634387e-01 -1.08123742e-01\\n-1.61179453e-01 -5.85469455e-02 3.52312058e-01 2.30623871e-01\\n-3.38538527e-01 2.48023272e-02 -1.69345826e-01 4.47742045e-02\\n1.78636760e-02 2.40925416e-01 -2.57501543e-01 -3.37426662e-01\\n-2.46208906e-01 6.10475242e-02 -1.93284526e-01 1.03318311e-01\\n4.63652536e-02 3.89516920e-01 8.29912499e-02 8.80924836e-02\\n4.73956585e-01 4.11537066e-02 -2.71012694e-01 -1.34093553e-01\\n-2.15710238e-01 -1.62851997e-02 -2.51577310e-02 -8.71650577e-02\\n1.61712945e-01 -3.60712081e-01 -9.56605226e-02 -1.93929940e-01\\n-3.20487283e-03 -3.70250404e-01 9.05882716e-02 -6.55316338e-02]]',\n", + " 'About Swiss Re

The Swiss Re Group is one of the world’s leading providers of reinsurance, insurance and other forms of insurance-based risk transfer, working to make the world more resilient. It anticipates and manages risk – from natural catastrophes to climate change, from ageing populations to cybercrime. The aim of the Swiss Re Group is to enable society to thrive and progress, creating new opportunities and solutions for its clients. Headquartered in Zurich, Switzerland, where it was founded in 1863, the Swiss Re Group operates through a network of around 80 offices globally. It is organised into three Business Units, each with a distinct strategy and set of objectives contributing to the Group’s overall mission. About the Role Do you have a real passion for data and technology? Join our highly skilled global team. You will work with colleagues from various countries who have studied at universities around the world and have world-class experience, which will be an exciting learning opportunity. You will work closely with many business units and on projects which will enable you to actively demonstrate your technical and qualitative skills. Are you ready for new opportunities and interested to take on these challenges? We are looking for a Data Quality Analytics Consultant to join our team: We autonomously develop effective methods, techniques and/or programs to solve the tasks. We handle, develop and implement appropriate quality assurance frameworks for our customers and contribute to further improve existing ones. We define guidelines and build clarity on maturity of current data quality activities and provide support to constantly learn quickly. About the Team We are a small agile team with great team spirit, part of the information management unit, which is a global team responsible for managing all data related matters for Swiss Re worldwide. While customers are spread all over the world, we are in Bratislava and Zurich. About You You have very good SQL knowledge and programming skills (e.g. Oracle SQL, MS SQL). Your good programming skills in Java or another common programming language are completing our team’s skill set. You are like us: very good in analytical and logical thinking and working. You love to find errors, weak points, vulnerabilities and inconsistencies in program code and data content. Your creative thinking style is oriented to find customer-centric and sustainable solutions. User experience is not an alien concept to you. You are an expert in crafting crisp reports with appealing and clear graphs. In addition, as a great teammate you: are independent and take on responsibility - dedicated and ready to help where needed. have a get it done attitude: Efficient and accurate even under pressure and a high degree of flexibility. can handle ambiguity and conflicting information. have working experience in data quality assurance or information management. are motivated to learn and develop yourself and the team. have excellent verbal and written communication skills in English. You impress us even more, if you: possess experience in (re-)insurance or financial sector. know how to work with Excel-VBA. are experienced in working in an agile environment. If the above statements resonate with you we would be happy to receive your CV and motivation letter. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, including gender identity or expression, sexual orientation, age, marital status, veteran status, or disability status.
Swiss Re',\n", + " '[\"Management\", \"Resilience\", \"Operations\", \"Creative Thinking\", \"Quality Assurance\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Oracle SQL Developer\", \"Disabilities\", \"Risk-Based Testing\", \"Data Quality\", \"Agility\", \"Programming (Music)\", \"Cybercrime\", \"Sustainability\", \"Analytics\", \"Strategic Business Unit\", \"Activism\", \"Naturalization\", \"Climate Change Mitigation\", \"E (Programming Language)\", \"Reinsurance\", \"Risk Management\", \"Equalization\", \"Information Management\", \"Receivables\", \"Appeals\", \"Vulnerability\", \"Additives\", \"Graphing\", \"Coloring\", \"User Experience\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Fijian']\"],\n", + " ['98',\n", + " 'database administrator',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.30906957e-01 3.54469180e-01 3.44402075e-01 -7.10024759e-02\\n4.51134086e-01 -1.81533664e-01 -9.96057875e-03 3.21813226e-01\\n-7.62883648e-02 -1.37411669e-01 -1.77102566e-01 -2.73099273e-01\\n-4.85375822e-02 8.48280564e-02 1.89477906e-01 2.64527470e-01\\n3.69192004e-01 1.71395481e-01 -9.34899449e-02 2.23489180e-01\\n4.10519280e-02 -4.91446108e-02 2.25852266e-01 5.30729115e-01\\n2.43622318e-01 6.92873895e-02 -6.10210076e-02 9.61860940e-02\\n-2.11367488e-01 -2.96378046e-01 8.61856267e-02 -1.22662289e-02\\n-4.02939282e-02 -1.90138057e-01 1.79840788e-01 1.22588508e-01\\n-1.77949816e-01 1.52839437e-01 -8.75722393e-02 2.89590329e-01\\n-5.13629973e-01 -4.03602332e-01 2.47899950e-01 9.50435475e-02\\n-1.21564627e-01 -3.50576103e-01 6.19427003e-02 1.99805610e-02\\n-9.42031760e-03 6.65294996e-04 -6.11811280e-01 2.54115582e-01\\n-2.17130795e-01 -2.07817286e-01 3.29884529e-01 5.79615116e-01\\n9.24041495e-02 -7.09966421e-01 -2.67959714e-01 -4.14178036e-02\\n-7.02608982e-03 -1.07840367e-01 -7.00452104e-02 -2.43026212e-01\\n5.45111001e-01 -2.33628526e-02 -6.33216575e-02 5.29979110e-01\\n-6.51732147e-01 5.76135702e-02 -3.55423659e-01 1.15093300e-02\\n-3.81243289e-01 6.47721142e-02 -1.62278950e-01 -1.60678759e-01\\n4.23994623e-02 2.13672742e-01 2.24776343e-02 6.90060854e-02\\n-8.67995769e-02 3.53215903e-01 7.97568262e-02 1.26837626e-01\\n3.87325585e-01 2.05117837e-01 1.16219744e-01 3.24816227e-01\\n-4.16056335e-01 4.38774019e-01 2.91344851e-01 -1.87695324e-01\\n1.31470054e-01 6.10408522e-02 4.00713623e-01 2.53697718e-03\\n-4.47688401e-02 2.59268343e-01 -7.67097548e-02 7.18283057e-02\\n1.38944864e-01 -1.41562581e-01 -9.38321576e-02 9.83458087e-02\\n-1.61121577e-01 -6.78135380e-02 -2.36575250e-02 3.00630808e-01\\n-3.39107513e-01 4.87542480e-01 8.96328837e-02 -1.23686403e-01\\n4.97271121e-02 -7.26064682e-01 -3.23783726e-01 7.46058375e-02\\n-1.01056375e-01 1.80216700e-01 2.89977431e-01 2.17715397e-01\\n2.59529293e-01 2.68820047e-01 7.91135654e-02 9.53608394e-01\\n-1.56907991e-01 1.23943396e-01 -1.05421506e-01 3.64220858e-01\\n3.00229758e-01 -1.55782506e-01 1.48180649e-01 2.11052626e-01\\n1.77979752e-01 -6.92452639e-02 -9.59355980e-02 1.20572329e-01\\n-5.10739833e-02 -3.48235369e-02 -8.82135183e-02 9.25943404e-02\\n-4.73477960e-01 -6.56399190e-01 5.35270751e-01 1.77989662e-01\\n3.83370340e-01 1.04032256e-01 -3.87128480e-02 7.16958940e-02\\n-7.78736472e-02 3.40179771e-01 -9.88644809e-02 3.00332516e-01\\n-3.40490371e-01 -1.33452356e-01 -3.32675278e-01 3.22244227e-01\\n7.19599053e-02 6.61080256e-02 -1.01566650e-01 -5.39154522e-02\\n4.97419983e-01 -4.31711599e-02 -4.65004086e-01 4.32080567e-01\\n-4.06168838e-05 -8.46459940e-02 -1.22197807e-01 2.93268174e-01\\n1.16900645e-01 1.31060839e-01 -1.56186879e-01 -2.96697497e-01\\n2.90379763e-01 6.76408261e-02 8.29593763e-02 3.20740268e-02\\n2.85702258e-01 -3.96543145e-02 2.54023135e-01 1.01657182e-01\\n-6.19283438e-01 3.77386272e-01 -7.83326626e-02 1.37002626e-02\\n9.40821543e-02 3.67256477e-02 4.26662713e-01 -2.79683828e-01\\n-1.89792484e-01 -1.03970230e-01 -5.48266292e-01 -4.72411156e-01\\n-3.28615606e-01 2.31773723e-02 4.66254294e-01 -5.17788172e-01\\n-2.74447381e-01 -1.24052111e-02 -3.84873480e-01 -5.85717633e-02\\n4.18969363e-01 2.21183389e-01 -2.28081495e-02 -6.34855628e-02\\n-3.98548245e-01 -6.13884449e-01 -5.55333234e-02 -6.03266060e-01\\n-2.32838422e-01 2.26203986e-02 -3.95055026e-01 1.42474130e-01\\n5.58699705e-02 -1.48807243e-02 1.21317403e-02 1.03960231e-01\\n-2.79037088e-01 1.33125439e-01 2.91661263e-01 2.48659283e-01\\n4.46256280e-01 -2.01102197e-01 -4.55192357e-01 5.68486392e-01\\n-2.49233678e-01 4.89370018e-01 4.61419404e-01 -8.31208885e-01\\n4.26559538e-01 2.20638797e-01 1.38872921e-01 -2.50695646e-01\\n4.24020141e-01 -5.66297531e-01 -8.09001029e-02 2.40302682e-01\\n-1.90683603e-01 -2.04320222e-01 9.13887918e-02 -2.96262383e-01\\n-2.29669750e-01 5.91397226e-01 8.03731605e-02 -1.47748366e-01\\n3.80327463e-01 -3.07796776e-01 -8.35342705e-02 -6.50186688e-02\\n-1.89316690e-01 -2.14648530e-01 -4.44546163e-01 3.65016945e-02\\n4.72818594e-03 -5.88563263e-01 -2.84174681e-01 -3.21806490e-01\\n-1.88654959e-01 -1.71405777e-01 -3.71049136e-01 4.32090372e-01\\n-8.40749741e-02 1.91366330e-01 9.78905559e-02 1.33937657e-01\\n-2.51392692e-01 -5.43062985e-01 -5.19019626e-02 4.68571745e-02\\n5.54571927e-01 2.09951982e-01 1.80889726e-01 -2.10974917e-01\\n-2.28111804e-01 3.87899965e-01 -2.56847739e-01 -3.08444709e-01\\n6.39787614e-02 1.78289264e-01 4.36076447e-02 5.66998273e-02\\n1.53317466e-01 3.69190335e-01 -1.85335904e-01 6.62268847e-02\\n-6.88312426e-02 5.70089482e-02 3.01160961e-01 -5.14067300e-02\\n-4.20087308e-01 -2.83179909e-01 -1.30554006e-01 2.52835214e-01\\n-5.06233633e-01 -2.39409064e-03 6.31270707e-01 1.92024320e-01\\n1.55920550e-01 3.14027458e-01 5.61970890e-01 -2.21445769e-01\\n-1.71636969e-01 -1.72459334e-01 -2.46561244e-02 1.94886759e-01\\n-1.78477988e-01 5.74443303e-03 -3.18497419e-01 -4.70142663e-01\\n-3.89658833e+00 -2.71466494e-01 1.91201847e-02 -1.65533081e-01\\n2.69524693e-01 -2.26106629e-01 1.63730949e-01 -7.28641301e-02\\n-1.84269309e-01 1.00266017e-01 -1.74635991e-01 2.91153640e-02\\n2.56487697e-01 1.44032046e-01 6.05083369e-02 3.53782088e-01\\n2.75931269e-01 -2.00658441e-01 1.25686601e-02 1.45002037e-01\\n-1.09054863e-01 -5.69799423e-01 8.96241665e-02 -9.67345536e-02\\n1.88316599e-01 2.13995218e-01 -3.42427403e-01 1.79624766e-01\\n-1.77453220e-01 -2.32265025e-01 2.97727045e-02 -4.45814937e-01\\n-1.31761730e-01 1.90518200e-01 -5.41988909e-02 -2.34331757e-01\\n1.10442698e-01 -1.21618591e-01 3.43548320e-02 -4.01151508e-01\\n5.74898496e-02 -6.00289702e-01 2.42432989e-02 8.89561996e-02\\n6.89717174e-01 -4.60989058e-01 4.62793708e-02 -9.54837725e-02\\n1.17535979e-01 3.28684956e-01 -4.67752758e-03 -1.64743409e-01\\n-2.34210715e-01 -4.47676927e-01 9.72032472e-02 -3.41484338e-01\\n4.21803027e-01 6.14841938e-01 -3.09200555e-01 2.26444840e-01\\n9.11490917e-02 -3.03462178e-01 -3.26330841e-01 -5.88009238e-01\\n-2.25841433e-01 -1.23553328e-01 -8.86787236e-01 -5.53671479e-01\\n-9.16309282e-02 -5.27816527e-02 -1.97937936e-01 3.90547454e-01\\n-3.21303517e-01 -7.41494358e-01 3.17972386e-03 -6.65903747e-01\\n2.41082162e-01 -3.06901317e-02 1.21010803e-01 -1.78947687e-01\\n-1.45917654e-01 -3.69280100e-01 1.03701964e-01 -6.23385198e-02\\n-2.83284545e-01 4.12118025e-02 7.80203566e-02 -2.13302329e-01\\n-3.56762707e-01 -7.72820786e-02 5.57861745e-01 9.52147692e-02\\n5.41215897e-01 1.86043516e-01 1.91033587e-01 1.68923691e-01\\n3.30296576e-01 -2.55504459e-01 1.94598258e-01 -4.81339902e-01\\n1.80508927e-01 -4.47497256e-02 6.08491004e-01 -3.69463235e-01\\n1.34966612e-01 2.66603619e-01 -3.70972097e-01 -3.10363680e-01\\n4.92646039e-01 9.54585671e-02 -4.54682820e-02 -1.90255255e-01\\n1.89344123e-01 -5.68042994e-01 -4.46496218e-01 1.19389527e-01\\n-1.20726980e-01 7.45659411e-01 2.71120295e-02 -3.15346181e-01\\n-3.27937156e-01 4.94258016e-01 1.02252834e-01 -2.95692950e-01\\n-1.07923314e-01 1.93343192e-01 -9.28536654e-02 1.31866083e-01\\n1.71677187e-01 -1.56802982e-01 -2.63284326e-01 8.24897885e-02\\n2.27802340e-02 4.02874649e-02 3.83410007e-01 1.73610806e-01\\n-4.51954603e-02 -2.77144969e-01 5.44786304e-02 4.94973883e-02\\n2.62379646e-01 2.32656687e-01 1.29595414e-01 -5.77813340e-03\\n1.74274385e-01 2.31232285e-01 -3.44024271e-01 1.39814094e-01\\n4.66874838e-02 9.11137462e-03 -4.38080817e-01 -2.16322675e-01\\n-3.58818136e-02 6.08031191e-02 -2.62648880e-01 1.21466264e-01\\n2.83727139e-01 -1.00893542e-01 -1.29488915e-01 -3.31690460e-01\\n3.49898607e-01 -2.24985704e-01 2.11519390e-01 4.28704500e-01\\n8.21274295e-02 4.24129367e-01 1.77948087e-01 -6.43748417e-02\\n-2.10442469e-01 1.07284054e-01 -2.51536816e-01 -2.19861388e-01\\n2.04499550e-02 -2.79826224e-01 -1.62333161e-01 3.19962859e-01\\n2.46529654e-01 -1.30109251e-01 -1.53067216e-01 2.36891910e-01\\n2.16386672e-02 -2.07675919e-01 -1.71114638e-01 2.55896419e-01\\n2.70094633e-01 2.07029253e-01 1.49202779e-01 -4.06806350e-01\\n-3.90828848e-02 -8.41231868e-02 -9.05008018e-02 4.07836646e-01\\n1.52112439e-01 2.01393485e-01 2.03600768e-02 -4.14964795e-01\\n4.76753592e-01 2.16903105e-01 4.15846594e-02 -7.28234351e-02\\n8.50751027e-02 8.14366248e-03 -2.40403339e-01 2.27113273e-02\\n-1.98693462e-02 -5.49510606e-02 1.45802200e-01 -2.41497919e-01\\n1.00420505e-01 -1.38219848e-01 -3.80500019e-01 -2.75887817e-01\\n-3.81832331e-01 -1.40890986e-01 -2.52496265e-03 -3.89981866e-01\\n5.54970391e-02 6.04089573e-02 -6.68318987e-01 2.86639869e-01\\n-3.63587290e-01 1.56249389e-01 1.19071156e-01 1.61085904e-01\\n-3.92769217e-01 1.69317231e-01 2.09626615e-01 1.05782941e-01\\n-4.81471896e-01 -3.09273452e-01 -1.31696433e-01 -8.13084662e-01\\n2.52962202e-01 -1.89657405e-01 3.48148011e-02 2.08722893e-02\\n-9.59798321e-02 -6.04943931e-01 2.39291757e-01 -8.84538516e-02\\n-2.25747630e-01 -6.80498034e-02 -1.72302455e-01 -4.82479483e-01\\n-4.50537167e-02 -1.36917740e-01 -2.00978220e-01 1.65193126e-01\\n-5.03558636e-01 2.89843470e-01 -3.55991162e-02 5.06649986e-02\\n8.14493280e-03 -2.43349507e-01 3.18292230e-01 -3.10668498e-01\\n-4.13975179e-01 -1.95887312e-01 -2.94962347e-01 -1.90938070e-01\\n-1.41077980e-01 -1.17171451e-01 -2.00812131e-01 1.81896985e-01\\n3.54121506e-01 1.30861104e-01 -1.68175530e-02 3.26921865e-02\\n1.41487792e-01 -1.61850914e-01 -4.65074107e-02 -2.44718060e-01\\n-6.26618490e-02 -6.39336705e-02 5.75679988e-02 -1.11566111e-01\\n-7.30644017e-02 -4.07560468e-01 6.87828600e-01 1.21179149e-01\\n-4.79206115e-01 -1.33613655e-02 1.99106693e-01 2.09150955e-01\\n4.06152278e-01 -4.84225869e-01 -6.93304911e-02 2.23510846e-01\\n2.63828374e-02 4.73140329e-02 2.65998214e-01 -1.13354661e-01\\n-1.48343608e-01 1.78893298e-01 -5.91777146e-01 1.05182968e-01\\n6.22700393e-01 2.00631604e-01 -6.58110678e-02 3.08557153e-01\\n-8.97377878e-02 5.58404207e-01 5.17252445e-01 1.67452823e-02\\n-7.53398240e-02 3.83529246e-01 1.72268171e-02 -6.03300154e-01\\n-1.43054336e-01 -2.19353244e-01 -1.83354318e-01 -3.60729903e-01\\n5.04765391e-01 3.96489918e-01 -4.21103060e-01 -2.15015277e-01\\n-1.94985911e-01 -2.20019430e-01 -1.59884781e-01 -1.35815442e-01\\n1.43511361e-02 -2.59410501e-01 5.47218919e-01 1.05530985e-01\\n2.75084794e-01 7.14028299e-01 -3.10415447e-01 -3.93612802e-01\\n-3.36150855e-01 1.67555928e-01 3.41161311e-01 1.82545453e-01\\n-1.00661471e-01 2.42457375e-01 -1.43321246e-01 1.35710791e-01\\n-2.73820698e-01 2.33240113e-01 2.48397272e-02 1.32691786e-01\\n2.19975501e-01 3.34733963e-01 1.19533271e-01 3.72838616e-01\\n3.23670685e-01 5.64780533e-01 2.18470395e-01 1.19084522e-01\\n4.67782944e-01 4.26479429e-01 3.15203428e-01 1.15103938e-01\\n4.66850912e-03 1.07517339e-01 -1.65863082e-01 1.07304282e-01\\n2.32216865e-01 3.22145849e-01 2.75832266e-01 8.40886235e-01\\n3.58153433e-01 5.46346903e-02 7.29045808e-01 -6.53291941e-01\\n-2.41502762e-01 -5.55691011e-02 8.74549896e-02 -4.87112373e-01\\n-1.82437658e-01 3.89483348e-02 -4.03061002e-01 1.08470693e-01\\n-5.15620530e-01 -4.39346507e-02 8.92796218e-02 -2.14283571e-01\\n1.02677934e-01 -9.59531888e-02 -1.22062981e-01 -3.36331993e-01\\n-1.78827614e-01 -2.92809367e-01 -2.73458362e-01 -1.80014253e-01\\n-3.71597886e-01 -7.50038698e-02 -4.40386347e-02 -1.39283046e-01\\n3.10371947e-02 -5.06845653e-01 -2.81092077e-01 9.64444503e-02\\n4.03362930e-01 -8.86769369e-02 1.20341919e-01 -2.47518152e-01\\n1.44970760e-01 2.80793220e-01 8.26500118e-01 6.51479438e-02\\n9.19306502e-02 -1.64960876e-01 -1.22731850e-01 1.35389656e-01\\n6.57837689e-02 6.79863915e-02 1.99540406e-01 5.95229566e-01\\n-4.86979753e-01 1.77804306e-02 1.55978024e-01 3.20585877e-01\\n-4.50610757e-01 1.18592173e-01 2.95742214e-01 4.47662920e-01\\n2.92139370e-02 1.55404225e-01 -1.79437578e-01 8.24090987e-02\\n-3.42896551e-01 -5.03649592e-01 4.66413617e-01 -8.23304653e-02\\n-6.71522617e-02 2.22958215e-02 3.52928668e-01 1.54441074e-01\\n4.54804935e-02 -8.06272626e-02 -1.31323606e-01 3.78863871e-01\\n1.24294408e-01 3.98026466e-01 -2.71633506e-01 5.08692414e-02\\n-2.93034434e-01 2.12390274e-01 -4.95093912e-02 -7.65819754e-03\\n-1.41323939e-01 2.57717103e-01 3.34321745e-02 3.11077327e-01\\n1.56650953e-02 -3.45432848e-01 -2.57361263e-01 -3.50164235e-01\\n-3.34913731e-01 -2.68865496e-01 2.94785947e-01 -1.04922295e-01\\n2.99656779e-01 -4.62145299e-01 -6.01701401e-02 7.38805234e-02\\n-1.54420197e-01 -4.58113551e-01 -2.02607751e-01 5.47333900e-03]]',\n", + " 'Role Description : SA836: Database Administrator (M / F) Location - Switzerland Utilization - full time Project language - French, English, Italian, Romansh Project start - ASAP Your area of responsibility: Design, Sizing of Middleware / Application Server Environments High availability solutions for application servers and middleware solutions Your requirements: Experience in administration of Oracle middleware systems Knowledge of J2EE, Java, network and web architectures ',\n", + " '[\"\"]',\n", + " '[\"Oracle Fusion Middleware\", \"Database Administration\", \"High Availability Clusters\", \"M (Programming Language)\", \"Application Servers\", \"Java (Programming Language)\", \"Middleware\"]',\n", + " \"['English', 'Komi']\"],\n", + " ['145',\n", + " 'software engineer c++',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.vizrt.com',\n", + " '[[-1.77046180e-01 2.56629318e-01 5.47789216e-01 -8.72845799e-02\\n4.58264351e-01 -2.27148786e-01 -1.52273700e-02 5.48293829e-01\\n-3.73170003e-02 -4.45374846e-01 -1.15332536e-01 -3.01676482e-01\\n-1.57965366e-02 2.03475595e-01 1.91747665e-01 4.31744605e-01\\n2.58077502e-01 1.52363688e-01 -2.36010253e-01 2.54429728e-01\\n1.31916910e-01 -1.83828831e-01 1.88189387e-01 8.45517635e-01\\n4.67096806e-01 6.94048032e-03 -1.09823048e-01 5.81530668e-02\\n-2.49117091e-01 -2.42752522e-01 3.74561489e-01 -6.22206405e-02\\n-1.29853949e-01 -3.94354820e-01 2.59468667e-02 1.18106231e-01\\n-1.60450161e-01 -1.31783709e-02 -1.13779105e-01 1.82403326e-01\\n-5.24675965e-01 -2.28636056e-01 -8.50881189e-02 -1.14142271e-02\\n-1.70233503e-01 -3.60536098e-01 5.94463870e-02 -9.05609131e-03\\n2.26681739e-01 2.64729299e-02 -4.40008730e-01 3.69302839e-01\\n-2.09974661e-01 -2.15674937e-01 2.49322340e-01 6.96374059e-01\\n-1.02219142e-01 -3.99488777e-01 -5.91673493e-01 -3.31744850e-01\\n1.15496323e-01 -6.04107827e-02 -3.78138535e-02 -3.44483733e-01\\n2.84924984e-01 6.57527223e-02 -2.24144179e-02 2.32287645e-01\\n-7.85692036e-01 -1.38006657e-01 -2.30577648e-01 -6.17521256e-02\\n-2.98465699e-01 -1.26506671e-01 -3.18970948e-01 -1.23289905e-01\\n-8.10942128e-02 3.84754539e-01 2.91590672e-02 2.34240899e-04\\n-4.16664630e-02 3.21706593e-01 -2.17254192e-01 4.56492394e-01\\n5.81679344e-02 3.48595887e-01 2.09566861e-01 2.89278805e-01\\n-2.85338819e-01 4.02124882e-01 1.07924327e-01 -4.42762673e-01\\n2.12377995e-01 1.57186806e-01 4.76472825e-01 -1.28068358e-01\\n1.95794418e-01 1.26100004e-01 -3.35816324e-01 3.35960716e-01\\n3.23185265e-01 -2.58979440e-01 1.13196701e-01 -1.28594533e-01\\n3.80196795e-02 7.60952337e-03 7.24857002e-02 2.14933380e-01\\n-3.44083726e-01 5.26543379e-01 5.92262186e-02 -2.51241088e-01\\n-6.71639889e-02 -5.83147705e-01 -1.72453374e-01 3.71607840e-02\\n-1.59314144e-02 2.06628084e-01 1.10697925e-01 2.25967705e-01\\n2.21368283e-01 -1.28978789e-01 1.80654988e-01 9.16546583e-01\\n-1.67754069e-01 1.07809659e-02 -2.71616310e-01 3.84983778e-01\\n5.61602339e-02 -3.12832773e-01 2.51790136e-01 1.70036837e-01\\n3.25886458e-02 5.23857959e-03 -2.32835650e-01 3.56133640e-01\\n-1.44900009e-02 -3.81758213e-01 -3.80399823e-01 2.76504576e-01\\n-1.68243386e-02 -4.69684482e-01 5.76696873e-01 6.13354668e-02\\n8.42552930e-02 -1.67710036e-01 -1.03885412e-01 -4.56302240e-02\\n-7.81441852e-03 1.00583486e-01 1.02067843e-01 1.03062149e-02\\n-3.35084528e-01 -2.77626872e-01 -2.62408018e-01 2.03954488e-01\\n-4.10650134e-01 1.63495004e-01 -1.10919878e-01 -1.20083325e-01\\n2.41403490e-01 -1.38464998e-02 -3.31671089e-01 3.23547781e-01\\n-1.68942481e-01 5.28685115e-02 -2.24709697e-02 4.02060032e-01\\n-3.88736844e-01 2.57957637e-01 -8.72027725e-02 -3.69510427e-02\\n5.78941643e-01 2.15429366e-02 1.15012199e-01 -5.44378161e-02\\n3.27076495e-01 -4.52025086e-02 1.42302126e-01 8.08842704e-02\\n-6.74037218e-01 2.17647582e-01 -8.76648054e-02 -1.66929796e-01\\n2.10992247e-01 -2.34052837e-01 2.93857485e-01 -2.68756211e-01\\n-1.43920109e-02 -1.30767584e-01 -2.87037104e-01 -2.91035414e-01\\n-2.75551558e-01 -1.42262906e-01 4.05154943e-01 -3.93167049e-01\\n-9.94281545e-02 3.30177605e-01 -4.71868187e-01 1.68837793e-02\\n2.13203251e-01 3.13118696e-01 1.39120951e-01 1.59476340e-01\\n-1.97395086e-01 -4.99492645e-01 1.28882065e-01 -2.97129810e-01\\n-2.66290724e-01 1.72522768e-01 -3.02472830e-01 3.62098277e-01\\n1.27843127e-01 -1.88607648e-02 -1.65458038e-01 1.69863150e-01\\n-2.14063153e-01 5.32847196e-02 7.53662661e-02 -6.52361214e-02\\n2.14508653e-01 8.74546617e-02 -3.30292225e-01 4.38094378e-01\\n-1.40505254e-01 6.02314830e-01 6.96143731e-02 -9.32134628e-01\\n4.58917916e-01 2.90116131e-01 -6.25308454e-02 -2.59224534e-01\\n6.63182139e-01 -3.05426598e-01 -2.07321733e-01 1.01229087e-01\\n-4.29677665e-01 -3.41619730e-01 1.34409532e-01 -1.89363539e-01\\n-1.71838224e-01 4.84658062e-01 1.81578040e-01 1.28144443e-01\\n3.08547437e-01 -1.35448188e-01 -1.06104434e-01 8.09366927e-02\\n-1.78817958e-01 -3.36376280e-01 -4.52938497e-01 -1.34847566e-01\\n-8.35239887e-02 -4.27322686e-01 -1.61685497e-01 -3.27366531e-01\\n-2.73520052e-01 -4.40966070e-01 -7.42473230e-02 6.31120503e-02\\n5.29323578e-01 1.82593137e-01 -2.25607492e-02 7.26778433e-02\\n-9.47892964e-02 -5.88080287e-01 -3.37037668e-02 8.22199881e-02\\n2.75496960e-01 3.38718951e-01 2.81987973e-02 1.17040582e-01\\n4.44842130e-02 7.26986647e-01 -1.56654805e-01 -1.37062058e-01\\n2.42328942e-01 1.05221167e-01 7.23317191e-02 -2.24393606e-01\\n1.12925127e-01 2.84797609e-01 -3.80705178e-01 2.16326967e-01\\n-1.23477742e-01 -6.66873306e-02 4.42710280e-01 1.98694225e-02\\n-2.97763765e-01 -1.94848582e-01 -1.11668698e-01 5.56276515e-02\\n-5.97747445e-01 -2.80714124e-01 7.03813791e-01 7.15757087e-02\\n1.14310548e-01 8.65345448e-02 7.49695152e-02 -6.81588799e-02\\n-2.15446979e-01 -4.99996692e-02 2.05205262e-01 -3.15017439e-02\\n1.34827286e-01 1.67425752e-01 -2.54694838e-03 -6.44005001e-01\\n-3.14929295e+00 -8.17546546e-02 9.31493714e-02 -2.02253237e-01\\n1.52211756e-01 -1.86740726e-01 -8.76563564e-02 -8.05426091e-02\\n-3.43034834e-01 5.76839894e-02 -1.74478710e-01 -2.40619153e-01\\n2.22384721e-01 1.71616241e-01 1.69753820e-01 2.44344532e-01\\n2.46716321e-01 -8.22361410e-02 -5.14799245e-02 4.16415453e-01\\n-1.19632587e-01 -6.36925578e-01 3.11752617e-01 -5.39120063e-02\\n4.05984253e-01 3.41760427e-01 -4.25855041e-01 -1.87807769e-01\\n-2.55707711e-01 -2.56909579e-01 6.88974261e-02 -2.67798007e-01\\n-1.24046110e-01 5.06807566e-01 1.74057901e-01 -1.44169778e-01\\n1.40203744e-01 -4.46136832e-01 -7.62810558e-02 -4.61429179e-01\\n1.64929390e-01 -6.23130560e-01 1.78097747e-03 -2.97189113e-02\\n7.01413989e-01 -3.66243958e-01 1.03605710e-01 1.21019155e-01\\n1.68941915e-01 2.06711859e-01 1.02994964e-01 -9.96861979e-03\\n-2.44660646e-01 -1.73305288e-01 -1.01265468e-01 -1.42713115e-01\\n5.72849035e-01 4.53557312e-01 -1.17999464e-01 1.64781157e-02\\n8.95838439e-03 -3.66470307e-01 -5.22058725e-01 -2.14798570e-01\\n-9.98131111e-02 -2.18966320e-01 -6.71041012e-01 -4.69433904e-01\\n-1.05260186e-01 -1.98981404e-01 -1.58466622e-02 4.52420443e-01\\n-1.80115536e-01 -3.10126334e-01 -1.52375966e-01 -4.09972489e-01\\n2.88049668e-01 -4.15626727e-02 -2.79788077e-02 -2.89235353e-01\\n-1.80577070e-01 -5.33810496e-01 9.29278061e-02 6.48258850e-02\\n-1.03003204e-01 -2.60149717e-01 1.49994135e-01 -1.90178141e-01\\n-1.65564105e-01 -5.11513531e-01 4.98433530e-01 1.08519546e-03\\n2.94330776e-01 1.55728996e-01 2.23719239e-01 3.84150334e-02\\n2.25060612e-01 -1.25169098e-01 7.21530393e-02 -4.27450567e-01\\n-1.21291168e-02 3.76475863e-02 5.32884598e-01 -1.60170779e-01\\n-5.16717955e-02 1.14732005e-01 -2.07463846e-01 -8.49666521e-02\\n2.16149747e-01 7.58984983e-02 1.75401121e-01 -1.81778744e-01\\n1.61779150e-01 -2.06549525e-01 -9.10591781e-02 1.43960575e-02\\n1.51126802e-01 5.80509722e-01 -1.31564215e-01 -3.98501515e-01\\n-5.65526523e-02 4.72444147e-01 -5.00711314e-02 2.54415423e-02\\n-1.82968423e-01 1.36276469e-01 -3.19193661e-01 2.14246944e-01\\n-7.45273679e-02 -1.58939913e-01 -2.92337656e-01 -1.36671692e-01\\n-3.76931094e-02 4.07748908e-01 2.78983623e-01 1.44077390e-01\\n-8.36420506e-02 -5.25711596e-01 -2.23095343e-02 1.87403023e-01\\n1.81500822e-01 4.83870357e-01 1.38824195e-01 -2.67379403e-01\\n3.10346391e-02 3.69480461e-01 -1.21721283e-01 2.79140562e-01\\n-3.05510670e-01 1.04455501e-01 -6.61286592e-01 -2.32293785e-01\\n-2.77071357e-01 -3.16626608e-01 7.72752687e-02 4.10246789e-01\\n9.79624838e-02 -1.17385000e-01 1.04726620e-01 -4.58217144e-01\\n3.74075085e-01 2.14205999e-02 1.19314514e-01 1.42173186e-01\\n9.91608761e-03 5.91725588e-01 5.25593013e-02 -1.82521850e-01\\n-1.34943843e-01 1.89930469e-01 -1.97583556e-01 -4.72806208e-02\\n-3.50926518e-02 -4.98448730e-01 -1.06936380e-01 3.01037520e-01\\n2.94150189e-02 -1.66277111e-01 -1.30909562e-01 2.66016632e-01\\n-2.22116336e-03 -2.73526132e-01 -2.68286526e-01 5.75336441e-02\\n4.14756298e-01 1.91234142e-01 2.96636045e-01 -5.25936961e-01\\n1.96620394e-02 -7.48792514e-02 -1.35381483e-02 6.25985861e-01\\n6.61890358e-02 4.29921225e-03 -2.12375730e-01 -1.86815560e-01\\n4.11891013e-01 -1.84130013e-01 -7.48777986e-02 1.00673459e-01\\n8.33585635e-02 -2.31009096e-01 -3.58689070e-01 1.60594344e-01\\n-3.37051004e-02 -1.76141173e-01 -6.13207929e-02 1.73765182e-01\\n1.48413360e-01 1.41172081e-01 -5.64824581e-01 -2.08435595e-01\\n-2.45114207e-01 1.04488311e-02 3.40926833e-02 -4.97675776e-01\\n-1.72357857e-02 -1.41496271e-01 -4.99220550e-01 2.32869849e-01\\n-2.25828290e-01 -1.09538980e-01 1.83097780e-01 2.29210034e-03\\n-3.67555618e-01 -2.37092346e-01 1.79153740e-01 2.85908550e-01\\n-2.49347061e-01 -2.44596720e-01 -2.38113292e-03 -8.92378807e-01\\n2.90414393e-01 2.45186239e-02 -1.73310444e-01 1.57677621e-01\\n-5.55469133e-02 -7.07333088e-01 1.56028166e-01 -4.12621975e-01\\n-1.41886055e-01 -6.31263703e-02 -1.99268788e-01 -4.23546731e-01\\n3.67035419e-02 8.83450173e-03 -2.42549568e-01 4.57460821e-01\\n-3.56322080e-01 3.52765024e-01 -2.62547135e-01 1.31413773e-01\\n-7.89589956e-02 -3.23431075e-01 1.18889757e-01 -5.48351884e-01\\n-3.44765484e-01 -1.38689518e-01 -3.31980407e-01 -1.74490869e-01\\n1.90829299e-02 -2.45149463e-01 -1.96253955e-01 8.05857480e-02\\n2.13078678e-01 -6.76377937e-02 -2.07978532e-01 -2.80966461e-01\\n1.70643385e-02 -4.66847241e-01 5.08031622e-02 -4.59204353e-02\\n-1.04757965e-01 -7.05693737e-02 2.46883541e-01 1.57358333e-01\\n2.64922798e-01 -4.58063811e-01 3.80105078e-01 -4.11942095e-01\\n-3.00559402e-01 -1.09593339e-01 1.48376031e-03 1.82287712e-02\\n3.62692773e-01 -4.77761596e-01 -1.01287141e-02 3.75146091e-01\\n2.19972923e-01 5.86541034e-02 2.01122612e-01 -6.59990832e-02\\n-1.14597201e-01 3.02348912e-01 -3.10396254e-01 3.44828516e-02\\n8.53453755e-01 3.82500961e-02 2.41570860e-01 1.16111957e-01\\n1.78004503e-01 2.54506916e-01 3.16239566e-01 -2.90300865e-02\\n-1.38223201e-01 3.49256694e-01 1.15436524e-01 -4.88376379e-01\\n-1.38280317e-01 4.60150167e-02 -2.99348950e-01 -4.25727963e-01\\n6.41443729e-01 4.03710902e-01 -2.98482239e-01 -1.06796749e-01\\n-1.23506293e-01 -1.01538002e-01 1.48052394e-01 -1.38370693e-01\\n1.38968766e-01 -1.64310038e-01 3.83343130e-01 -8.19118246e-02\\n1.57438919e-01 5.72071671e-01 -1.87432259e-01 -3.38175088e-01\\n4.76191379e-03 1.83620274e-01 -1.31619051e-02 4.06564415e-01\\n-2.95923710e-01 3.67138296e-01 -4.81122136e-02 1.40856445e-01\\n-1.34187981e-01 2.05805779e-01 1.57242224e-01 2.80693360e-03\\n1.59253269e-01 7.88425356e-02 5.93236387e-01 4.12072301e-01\\n4.55301881e-01 3.24033141e-01 2.74644703e-01 -2.07591970e-02\\n5.31782389e-01 4.67112422e-01 3.58952433e-01 1.74257711e-01\\n5.59177361e-02 4.44199964e-02 1.73239782e-01 1.06581867e-01\\n3.04539025e-01 2.19690382e-01 5.76414764e-02 9.97816563e-01\\n4.11790669e-01 2.66025871e-01 7.32808352e-01 -6.78185165e-01\\n-2.79311180e-01 -3.46836559e-02 4.73846823e-01 -4.01882291e-01\\n-2.37719920e-02 9.90024805e-02 -2.13972166e-01 1.59011781e-01\\n-4.14214969e-01 -3.16164732e-01 -1.18679479e-01 9.19205099e-02\\n-4.94345371e-03 -1.96245492e-01 -1.98717564e-01 1.33768782e-01\\n-8.88219029e-02 -1.27493829e-01 -6.06339991e-01 -3.77791077e-02\\n-2.51960188e-01 -2.29738176e-01 -2.21184582e-01 -1.92418545e-01\\n-1.68771058e-01 -2.77095884e-01 -9.28361416e-02 -6.36054724e-02\\n1.79586500e-01 -1.92318290e-01 -7.11112320e-02 -2.04497993e-01\\n3.65317553e-01 1.70582205e-01 5.40863335e-01 5.14017865e-02\\n1.48754507e-01 -3.42131197e-01 -2.28654206e-01 1.61648080e-01\\n2.19933227e-01 3.77353430e-02 6.61360621e-02 2.98703074e-01\\n-3.48388940e-01 -2.41821438e-01 6.32560626e-03 3.68635416e-01\\n-4.53299344e-01 1.72404870e-02 -7.05558658e-02 2.44711280e-01\\n1.07839063e-01 6.21089414e-02 -1.08920686e-01 -4.61726170e-03\\n-9.65857282e-02 -5.49805522e-01 2.18791604e-01 7.12216944e-02\\n-1.76052228e-01 1.14705861e-01 2.54397035e-01 1.45167157e-01\\n-2.97064334e-01 -6.45915344e-02 -1.08516708e-01 1.14809357e-01\\n1.56517908e-01 4.05665666e-01 -2.97802120e-01 -3.14509869e-01\\n-3.15246314e-01 1.05698876e-01 -2.18795508e-01 -5.70882298e-02\\n6.24846555e-02 3.43230367e-01 1.49295583e-01 2.56716274e-02\\n4.92708802e-01 -5.77100031e-02 -2.07298160e-01 -1.88778400e-01\\n-9.82521027e-02 -1.66690469e-01 -1.93059385e-01 -1.86665580e-02\\n2.86251307e-01 -2.34294251e-01 -9.97916237e-02 -2.02726364e-01\\n-1.21421479e-01 -3.57192099e-01 1.30815029e-01 -1.93166345e-01]]',\n", + " 'Vizrt provides real-time 3D graphics, studio automation, sports analysis and asset management tools for the broadcast industry. This includes interactive and virtual solutions, animations, maps, weather, video editing and compositing tools. Vizrt has customers in more than 100 countries worldwide including such as CNN, CBS, Fox, the BBC, BSkyB, Al Jazeera, ZDF, CCTV, and the list keeps growing. This is possible due to 600 engaged and very competent employees in 40 offices around the world. In our R&D team in Zürich/Switzerland we create award-winning, unique and high-tech software dedicated to sports media productions. We strive to develop first-class media enhancement technology and we need your excellent C++ programming skills to develop the best products for Vizrt around sports media creation. To strengthen our software engineering team, we have an immediate opening for a proactive, pragmatic, and team-oriented SOFTWARE ENGINEER (C++) You complement the engineering team with your expertise and experience in application development and you will help us to advance the innovative and technologically advanced product lines related to sports. In close collaboration with your colleagues, you will be working on our challenging, exciting, and interesting software engineering tasks. What are we looking for? You are a pragmatic, team-oriented, flexible, independent and motivated software engineer You have excellent C++ programming skills and ideally already some experience You have at least a MSc in Computer Science, and some knowledge in Software Design or Architecture Good English capabilities is a must. German is not a requirement but helpful in private life. Background knowledge in Computer Graphics, Computer Vision and/or Machine Learning is a plus. Experience with Visual Studio or Qt SDK is a plus. We expect efficiency and pragmatic problem-solving skills. Your interest and enthusiasm for sports helps us to deliver the next generation of sports media technology. What do we offer? At Vizrt, you will find a challenging and diversified software engineering position in our dynamic, innovative, and fast-growing high-tech environment. Interesting tasks are waiting for your excellent solutions and your main focus will be on high quality application development where you will be integrated in the full development cycle. Sporadic field services at international sports media productions and infrequent second level support are part of the profile. If you find this interesting and want to be a part of our team submit your CV and application by clicking the \"Apply now\" button or at vizrt.com. Click here to read about our online privacy and personal data policies. jVL8HHgSoa',\n", + " '[\"Team Oriented\", \"Collaboration\", \"Proactivity\", \"Problem Solving\", \"Enthusiasm\", \"Integration\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Application Development\", \"Real Time Data\", \"Video Editing\", \"Frameforge 3D Studio\", \"MSC Software\", \"Tooling\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Field Service Management\", \"Virtualization\", \"Industrialization\", \"Scholastic READ 180\", \"Compositing\", \"C++ (Programming Language)\", \"Media Production\", \"Computer Vision\", \"Component Object Model (COM)\", \"High Tech Manufacturing\", \"Levelling\", \"Idealization\", \"Product Lining\", \"Software Engineering\", \"Microsoft Visual Studio\", \"Machine Learning Methods\", \"Automation Studio\", \"Animations\", \"Personalization\", \"Weather Maps\", \"Qt (Software)\", \"Software Design\", \"Real-Time Computer Graphics\", \"Computer Graphics\", \"Asset Management\", \"Closed-Circuit Television Systems (CCTV)\", \"Broadcasting\"]',\n", + " \"['English', 'Dutch', 'North Ndebele']\"],\n", + " ['70',\n", + " 'blockchain engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.68468460e-01 1.95393801e-01 4.78372335e-01 6.75854832e-02\\n4.87819761e-01 -2.82376140e-01 -2.54423451e-02 3.55114311e-01\\n-4.72318605e-02 -4.13300365e-01 1.08802542e-02 -2.17324018e-01\\n-8.63056108e-02 1.96554944e-01 1.50316522e-01 2.86524832e-01\\n2.80053586e-01 1.19370423e-01 -2.13149682e-01 3.43104661e-01\\n1.08419441e-01 -1.43764347e-01 8.43892172e-02 7.31656373e-01\\n5.02883852e-01 1.18845157e-01 -8.51071849e-02 -6.51941374e-02\\n-2.00312302e-01 -1.17461666e-01 4.12943602e-01 -5.08855991e-02\\n1.39200501e-02 -4.22871172e-01 8.63478854e-02 8.00476968e-02\\n-2.75455445e-01 -3.40935774e-02 -1.72808006e-01 6.71390668e-02\\n-5.16399801e-01 -2.47503713e-01 6.95148483e-02 1.02146737e-01\\n-2.13476911e-01 -3.08765799e-01 -1.20800585e-02 -1.02312997e-01\\n2.01180547e-01 -1.14113867e-01 -5.64438999e-01 2.59424984e-01\\n-3.22751343e-01 -2.16957435e-01 3.38575631e-01 5.00837743e-01\\n4.50727064e-03 -5.11066973e-01 -5.08156300e-01 -3.34673554e-01\\n3.30006294e-02 -1.46670029e-01 7.78580038e-03 -4.02091473e-01\\n1.60111576e-01 6.53976947e-02 2.23203283e-02 3.62454116e-01\\n-8.19269180e-01 -2.16271039e-02 -1.65190935e-01 -8.58361796e-02\\n-2.21615225e-01 -1.38777211e-01 -4.41558629e-01 -7.51838610e-02\\n-1.93957537e-01 3.55459452e-01 2.50686556e-02 9.97776389e-02\\n-1.84704602e-01 2.92569965e-01 -2.09179953e-01 5.54519832e-01\\n1.63094535e-01 1.71547756e-01 2.99889207e-01 3.01817238e-01\\n-4.17024523e-01 5.24201453e-01 1.23840585e-01 -2.44275928e-01\\n2.06258327e-01 1.25662357e-01 4.22664255e-01 -8.36619176e-03\\n2.46818751e-01 5.20144776e-02 -2.67222583e-01 2.46677428e-01\\n2.78042644e-01 -2.61716634e-01 -8.61731172e-03 -2.30660141e-01\\n3.63985822e-02 1.24001391e-02 3.13709229e-02 1.80315226e-01\\n-1.92323804e-01 3.92479241e-01 2.65232980e-01 -1.30896226e-01\\n-1.37121320e-01 -3.56515795e-01 -8.72644968e-03 1.14346676e-01\\n-6.79602940e-03 1.68162644e-01 1.66851059e-01 1.06791712e-01\\n1.98243946e-01 1.72827840e-02 1.67909209e-02 7.68485010e-01\\n-1.80048585e-01 1.87098558e-04 -3.54871064e-01 2.75915623e-01\\n1.04191199e-01 -2.87925333e-01 1.62882894e-01 2.11060390e-01\\n-8.03618599e-03 -1.44614473e-01 -2.52845973e-01 3.23427349e-01\\n-5.77862859e-02 -1.90861061e-01 -3.16779524e-01 1.63235545e-01\\n-4.22011986e-02 -4.35643405e-01 6.77681088e-01 1.72786817e-01\\n1.70842141e-01 4.74997424e-02 9.18760970e-02 -1.04974009e-01\\n-1.21745706e-01 2.43502468e-01 1.68498661e-02 1.42088905e-01\\n-2.97266066e-01 -2.48426914e-01 -2.20340118e-01 5.31079359e-02\\n-3.53875995e-01 1.63790390e-01 -4.93040793e-02 -5.10825180e-02\\n2.07125947e-01 2.91259754e-02 -2.09692597e-01 2.98948228e-01\\n-4.38979305e-02 7.54645932e-03 5.21159805e-02 3.19464803e-01\\n-1.56767979e-01 2.43637636e-01 -3.64555307e-02 -4.13924642e-02\\n6.12645805e-01 1.75754026e-01 2.14743182e-01 -6.57452270e-02\\n2.77105480e-01 -3.88757735e-02 1.49376586e-01 3.11876778e-02\\n-6.45414054e-01 2.59329230e-01 5.70899993e-02 -1.21646412e-01\\n1.19097285e-01 -2.98014693e-02 1.75929904e-01 -3.05881202e-01\\n-2.00935407e-04 -1.84454009e-01 -2.73383349e-01 -2.74596423e-01\\n-2.00708032e-01 -1.27511369e-02 3.98670256e-01 -3.94281983e-01\\n-2.26214174e-02 2.51627117e-01 -4.86678213e-01 -8.65713507e-02\\n2.12565795e-01 1.01392210e-01 6.82993084e-02 1.20017014e-01\\n-1.50982037e-01 -4.38944727e-01 1.46156415e-01 -3.56577694e-01\\n-3.26340854e-01 -3.60354297e-02 -3.87990326e-01 2.26337209e-01\\n8.21759552e-02 -1.03959262e-01 -6.09193295e-02 1.40267029e-01\\n-1.43070221e-01 -6.58371001e-02 8.95720348e-02 -2.09132116e-02\\n4.23394650e-01 9.02603641e-02 -3.58470291e-01 4.84389424e-01\\n-2.22347751e-01 6.42471850e-01 1.22036740e-01 -8.54788780e-01\\n4.86847222e-01 4.51029271e-01 -2.22205501e-02 -4.25716311e-01\\n4.57362264e-01 -3.08423281e-01 -8.47894475e-02 9.03135762e-02\\n-4.43624824e-01 -4.21901405e-01 1.91134706e-01 -2.32254505e-01\\n-2.03272209e-01 4.67373133e-01 -2.38604899e-02 8.68854448e-02\\n2.02216119e-01 -2.87575275e-01 -8.46838579e-02 1.26395568e-01\\n-3.71113792e-03 -2.67661542e-01 -4.99800414e-01 -1.36312723e-01\\n-1.33690327e-01 -4.62134868e-01 -6.19769655e-02 -4.29999679e-01\\n-2.10538030e-01 -3.86619866e-01 -3.01822841e-01 9.19876099e-02\\n3.20785791e-01 1.02381416e-01 -3.63909230e-02 8.68297368e-02\\n-9.50479656e-02 -5.93751550e-01 4.63519432e-02 1.04387574e-01\\n5.26489019e-01 2.06089199e-01 1.50072441e-01 5.47099113e-02\\n5.22938147e-02 6.47151351e-01 -2.19208062e-01 -1.75553992e-01\\n1.53151587e-01 1.64307430e-01 7.20725507e-02 -2.12647468e-01\\n1.11584969e-01 4.12869960e-01 -4.19233263e-01 2.04858575e-02\\n-5.99975586e-02 1.84085835e-02 4.28330779e-01 1.48830870e-02\\n-3.37903947e-01 -2.15078473e-01 -9.55346897e-02 1.69807807e-01\\n-5.44620335e-01 -2.22011834e-01 5.47935486e-01 2.34720781e-01\\n1.78123236e-01 1.63674012e-01 1.93995818e-01 4.80238460e-02\\n-2.29804918e-01 -1.87871486e-01 1.75484166e-01 4.52531390e-02\\n9.24961567e-02 1.30912811e-01 -2.06056125e-02 -5.81556797e-01\\n-3.30706358e+00 -1.41556427e-01 2.85968393e-01 -2.57712066e-01\\n2.61773556e-01 -1.12077564e-01 2.05858843e-03 -4.84175496e-02\\n-1.88750342e-01 5.94708286e-02 -1.70638084e-01 -1.68995157e-01\\n1.42115250e-01 1.41707420e-01 1.11504219e-01 1.97914764e-01\\n2.55341053e-01 -1.98245332e-01 -4.48364811e-03 3.02295744e-01\\n-2.51424015e-01 -6.43631041e-01 1.70472294e-01 -5.69942258e-02\\n3.16867918e-01 2.33767211e-01 -3.82321060e-01 -1.67208433e-01\\n-2.35652789e-01 -1.97018191e-01 3.73924002e-02 -2.90840000e-01\\n-5.28034940e-02 2.56689250e-01 1.42779082e-01 -1.19503327e-01\\n7.36161023e-02 -4.03617293e-01 -2.17268869e-01 -5.09667456e-01\\n1.83405012e-01 -5.96939921e-01 -4.73246463e-02 -4.95985746e-02\\n6.87128425e-01 -4.26640600e-01 1.34064451e-01 3.02347168e-02\\n2.26175830e-01 1.46187767e-01 -1.42032728e-02 9.99262277e-03\\n-2.39632025e-01 -2.68486410e-01 -2.79213060e-02 -1.63060337e-01\\n5.58497250e-01 3.98272485e-01 -2.43545681e-01 2.37644929e-02\\n1.01063572e-01 -3.05014789e-01 -3.93647701e-01 -1.66734576e-01\\n-1.12146735e-01 -3.05227906e-01 -5.07612646e-01 -3.61538738e-01\\n-2.28629515e-01 -1.67111933e-01 -1.12317868e-01 5.80709994e-01\\n-3.56066585e-01 -3.25975925e-01 1.08223118e-01 -5.23435771e-01\\n3.02419871e-01 -1.03284545e-01 2.00624764e-02 -2.58486599e-01\\n-2.29125813e-01 -4.98199642e-01 4.29933593e-02 2.20644604e-02\\n-5.02996892e-02 -2.52692878e-01 1.22303784e-01 1.23431534e-03\\n-2.47908100e-01 -5.17464042e-01 3.56322497e-01 1.28059655e-01\\n2.67838597e-01 1.49527460e-01 3.65741640e-01 -9.96899158e-02\\n2.44188562e-01 -5.37273139e-02 -3.33115645e-03 -3.20107847e-01\\n1.05933622e-01 9.40497667e-02 4.21075284e-01 -1.29508510e-01\\n-1.43303787e-02 1.95101112e-01 -2.33309075e-01 -5.84666282e-02\\n3.40079635e-01 5.71669266e-02 9.72953290e-02 -1.47836089e-01\\n2.82720089e-01 -2.05758214e-01 -1.22505061e-01 -5.17642545e-03\\n1.01435564e-01 5.96137822e-01 4.20606546e-02 -3.03145856e-01\\n-7.29568452e-02 6.55649185e-01 -6.28896654e-02 1.03956975e-01\\n-2.74326473e-01 9.81071889e-02 -1.38935447e-01 2.50987560e-01\\n3.80088371e-04 -2.72463024e-01 -1.98690802e-01 -1.62705302e-01\\n-2.13397786e-01 2.28916928e-01 1.92228884e-01 8.48888680e-02\\n-1.81680508e-02 -5.15264213e-01 -1.28227204e-01 1.66177288e-01\\n1.22475505e-01 5.21942496e-01 7.60065690e-02 -2.09310502e-01\\n-8.67229607e-03 3.51030737e-01 -9.00594667e-02 1.10057876e-01\\n-2.94403017e-01 1.10745274e-01 -4.67044026e-01 -1.88935280e-01\\n-2.47998461e-01 -4.90912855e-01 7.85784200e-02 3.07555497e-01\\n1.60013929e-01 2.38027684e-02 9.16237310e-02 -4.92324710e-01\\n2.67835557e-01 1.36283562e-01 1.60886288e-01 6.61901459e-02\\n2.35196743e-02 4.99020576e-01 -1.12882657e-02 -1.02792159e-01\\n-2.74634600e-01 1.29077211e-01 -2.12125927e-01 -1.42922103e-01\\n4.41108271e-02 -5.47638774e-01 -9.05696824e-02 3.47084314e-01\\n1.17797136e-01 -2.01226801e-01 -1.87169597e-01 1.99218735e-01\\n-5.37028862e-03 -2.27552533e-01 -3.25852424e-01 7.24395514e-02\\n3.08488071e-01 4.19133976e-02 3.38949263e-01 -4.31137204e-01\\n-1.87176652e-03 -5.40392590e-04 -8.25907513e-02 4.36573118e-01\\n1.12554058e-01 9.97819975e-02 -2.30789095e-01 -1.69748172e-01\\n3.39253455e-01 -2.28998616e-01 -3.45900469e-02 -8.98252279e-02\\n1.53048232e-01 -1.73386857e-01 -4.55334187e-01 7.99139217e-02\\n4.48237434e-02 -1.51555300e-01 2.40246635e-02 1.12471528e-01\\n1.18461609e-01 9.49100703e-02 -5.37375331e-01 -2.11600646e-01\\n-2.50731826e-01 -2.68278439e-02 1.41972110e-01 -4.82788414e-01\\n-4.90715867e-03 -5.16138412e-02 -5.70338726e-01 2.55860388e-01\\n-3.17929924e-01 -5.40298931e-02 2.64292926e-01 7.54520819e-02\\n-4.19753909e-01 -2.34023947e-02 -5.72428154e-03 3.57419938e-01\\n-2.14723289e-01 -3.12200963e-01 -2.44567301e-02 -1.00946927e+00\\n2.07625613e-01 9.04109329e-03 -2.04298750e-01 6.27626851e-02\\n-9.48740095e-02 -6.10953152e-01 1.06858745e-01 -3.29203516e-01\\n-1.13993071e-01 -6.23001084e-02 -1.51381016e-01 -4.09142077e-01\\n-6.19939677e-02 -3.57124433e-02 -3.21311414e-01 5.05554140e-01\\n-3.08322251e-01 3.16997349e-01 -1.63451836e-01 1.11554004e-01\\n-6.61440790e-02 -2.62815684e-01 1.82336122e-01 -2.66103297e-01\\n-2.35126540e-01 -2.72533685e-01 -3.71606112e-01 -3.66248041e-01\\n-6.66420069e-03 -2.91379094e-01 -5.25111295e-02 1.03590369e-01\\n3.46656442e-01 5.27842119e-02 -1.97942063e-01 -3.68014067e-01\\n1.18761137e-01 -6.21708274e-01 7.21290559e-02 6.34662714e-03\\n-1.21091539e-03 -8.30972791e-02 1.98669359e-01 7.04494193e-02\\n2.07859546e-01 -4.96362567e-01 1.61100447e-01 -3.94922853e-01\\n-3.40922922e-01 -6.16677999e-02 -9.32552293e-02 -2.56164838e-02\\n2.67969668e-01 -5.62462449e-01 -7.58905262e-02 3.19182247e-01\\n2.20162898e-01 -2.55330396e-03 1.84652716e-01 -6.89972490e-02\\n-1.40212104e-02 3.05106342e-01 -2.63114899e-01 7.62887970e-02\\n7.01447606e-01 6.83224620e-03 5.79826236e-02 2.85430223e-01\\n1.50823981e-01 3.89735818e-01 5.13810933e-01 -6.74651861e-02\\n-1.32071644e-01 2.64412433e-01 6.90038949e-02 -5.98099828e-01\\n-8.99822190e-02 6.96351938e-03 -2.12367147e-01 -3.43214810e-01\\n6.98986769e-01 4.31712210e-01 -5.08289754e-01 -2.73067564e-01\\n-9.54403803e-02 -2.23634765e-01 1.31500199e-01 -1.93551425e-02\\n1.61141809e-02 -1.71140298e-01 4.59723830e-01 -7.64352409e-03\\n2.71493435e-01 5.71604908e-01 -2.14388937e-01 -3.39131743e-01\\n-5.01285067e-05 2.77896076e-01 -4.43701968e-02 3.85925025e-01\\n-2.60398299e-01 2.93353736e-01 -4.84673157e-02 1.37485534e-01\\n-2.27613561e-02 1.40965745e-01 8.91220942e-02 1.28761277e-01\\n1.64892420e-01 9.17982757e-02 5.01211405e-01 3.91287029e-01\\n3.25791478e-01 4.08050358e-01 2.84480572e-01 1.24355145e-01\\n4.12808031e-01 5.25912404e-01 3.72525066e-01 2.01204605e-02\\n3.02687120e-02 1.57103255e-01 1.43210307e-01 -1.31073408e-02\\n2.85085768e-01 3.88511449e-01 1.32097295e-02 8.46806228e-01\\n3.23682427e-01 2.35111833e-01 6.71892405e-01 -6.81996763e-01\\n-3.17397386e-01 -9.82349217e-02 4.67956901e-01 -3.36551517e-01\\n-3.84304672e-02 1.28085241e-01 -1.75123677e-01 2.61269599e-01\\n-3.29592764e-01 -1.59790650e-01 4.37929109e-02 2.17978209e-01\\n-2.80238483e-02 -1.49725288e-01 -2.66877204e-01 2.40686350e-02\\n-1.12662025e-01 -1.36445180e-01 -4.49849218e-01 -1.06007829e-01\\n-2.12841228e-01 -7.74007961e-02 -8.63549635e-02 -1.27512977e-01\\n-6.45768270e-02 -4.17522699e-01 -7.05076456e-02 4.98949513e-02\\n2.43879855e-01 -2.94604972e-02 1.60356518e-02 -1.55310646e-01\\n2.67724156e-01 2.14495361e-01 5.61511457e-01 6.49298355e-02\\n3.14930477e-03 -1.66564777e-01 -2.47696981e-01 2.10431531e-01\\n7.07891881e-02 4.42199335e-02 6.24577049e-03 2.12231398e-01\\n-1.98495671e-01 -1.33692339e-01 1.89599201e-01 4.17255402e-01\\n-4.65088487e-01 -1.13009494e-02 -1.05703510e-01 2.32315972e-01\\n1.23387814e-01 1.84252188e-01 -9.26252529e-02 5.24913147e-02\\n-1.81660488e-01 -3.36255163e-01 2.27604270e-01 -4.30321917e-02\\n-2.56600022e-01 8.80173147e-02 2.47832268e-01 2.50911057e-01\\n-3.06455374e-01 6.20137081e-02 -8.59209225e-02 1.35680974e-01\\n1.24824561e-01 3.32288206e-01 -1.81135491e-01 -3.49710584e-01\\n-2.54808426e-01 7.73721039e-02 -2.11469531e-01 6.10313155e-02\\n4.06336188e-02 4.13315892e-01 5.84489554e-02 -3.64887193e-02\\n3.90878409e-01 2.72648949e-02 -2.27666810e-01 -1.72454670e-01\\n-1.09700538e-01 -1.30315378e-01 -7.73871168e-02 -5.33822440e-02\\n1.35982931e-01 -3.59940261e-01 -8.73657912e-02 -4.92828228e-02\\n-9.82103050e-02 -2.88429379e-01 -7.06435740e-03 -6.98495060e-02]]',\n", + " \"The Company Lykke Business is part of the Lykke Ecosystem. It is an innovative, fair and trusted partner committed to reshaping entire business models with cutting edge blockchain technology. Our teams are busy building the future of identity, financial markets, commerce, security infrastructure and more. Our Leadership team has led some of the most innovative production blockchain implementations in the world. The Role We’re looking for a talented Blockchain Engineer with a strong C# background to join our international distributed team. The successful employee will have at least 2-3 years technical experience, and will be responsible for developing, enhancing and maintaining applications and smart contracts together with other team members. Your tasks: Develop quality applications, components and modules using C# (we're using .NET Core) Develop smart contracts Test applications and smart contracts to ensure that they meet the requirements specified Work under an agile scrum methodology Skills & Requirements: Self-motivation and an ability to work autonomously are a must. To be successful in the role, you should ideally possess the following attributes: Strong understanding of blockchain technologies including Ethereum Strong programming skills, including C#, Solidity and JavaScript Experience with the following frameworks and technologies will be a plus: Truffle OpenZeppelin Node.js SQL Databases (MS SQL, Azure SQL) NO SQL Databases (Azure Storage, MongoDB, CosmosDB) Docker and Kubernetes What awaits you: This is an exciting opportunity for a self-motivated individual who is keen to join the growing blockchain ecosystem. The successful candidate will become part of a highly motivated team and enjoy a friendly environment where remote work and flexible working hours are embraced, and a can-do and enterprising spirit is cultivated. We have big plans, and want you to be a key part of those! If you are someone who thrives in a fast-paced environment where being self-directed, determined, and resilient are requirements, we’re looking forward to receiving your application.\",\n", + " '[\"Self-Motivation\", \"Friendliness\", \"Resilience\", \"Team Motivation\", \"Distributed Team Management\", \"Team Leadership\", \"Innovation\"]',\n", + " '[\"Kubernetes\", \"Agility\", \"Programming (Music)\", \"Hyper SQL Database (HSQLDB)\", \"Blockchain\", \"Infrastructure Security\", \"Application Testing\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"Scrum (Software Development)\", \"Product Innovation\", \"Financial Market\", \"Docker (Software)\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Azure Blob Storage\", \"Self-Directed Learning\", \"Ethereum\", \"Receivables\", \"Modulation\", \"SQL Azure\", \"Business Model\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Cultivator\"]',\n", + " \"['English', 'Kinyarwand']\"],\n", + " ['1',\n", + " 'full stack software engineer',\n", + " 'Neuchâtel',\n", + " '',\n", + " '',\n", + " '[[-2.57387906e-01 2.24195898e-01 4.99606431e-01 7.67015666e-03\\n4.39205438e-01 -1.57651961e-01 1.62919555e-02 2.65592307e-01\\n7.57750422e-02 -5.09545028e-01 -1.28488429e-03 -2.34035105e-01\\n-1.36220977e-01 9.99910831e-02 9.62357596e-02 3.91497105e-01\\n4.33110178e-01 9.11655128e-02 -1.86837465e-01 3.61069202e-01\\n9.07389969e-02 -2.13403106e-01 -2.18327977e-02 7.80924439e-01\\n4.35213625e-01 2.85370983e-02 -1.80516448e-02 -6.72442168e-02\\n-1.89708650e-01 -2.32839704e-01 4.24221277e-01 -2.34960504e-02\\n-6.04972318e-02 -4.63003486e-01 6.75984658e-04 8.46491158e-02\\n-1.33285031e-01 1.73889995e-01 -3.61849405e-02 1.55229151e-01\\n-5.41841626e-01 -3.32599163e-01 2.60884240e-02 3.07021011e-03\\n-1.41364798e-01 -2.91115910e-01 6.25893474e-02 3.99509296e-02\\n1.43256754e-01 4.80507836e-02 -4.74243581e-01 2.86845058e-01\\n-2.92383611e-01 -2.12280035e-01 2.52686083e-01 4.88089323e-01\\n7.45727196e-02 -5.12309074e-01 -5.83395600e-01 -3.71003330e-01\\n-9.40715671e-02 -1.00202873e-01 9.56310332e-02 -2.97852039e-01\\n2.98183799e-01 1.14422236e-02 1.03572812e-02 3.35094213e-01\\n-8.43954563e-01 8.42064619e-03 -2.03350395e-01 -6.37425110e-02\\n-2.80253857e-01 -1.89941585e-01 -2.98184484e-01 -3.52415778e-02\\n-1.45451844e-01 3.86997133e-01 1.25142768e-01 1.36410326e-01\\n-2.01436341e-01 2.76433319e-01 -1.79879740e-01 4.77862537e-01\\n2.18596831e-01 9.53932032e-02 3.49596262e-01 3.13006997e-01\\n-3.50769341e-01 4.72714603e-01 8.32425803e-02 -2.67810434e-01\\n2.54730910e-01 1.15154423e-01 4.81665850e-01 2.85611581e-03\\n1.23618796e-01 1.57140419e-01 -2.56619781e-01 2.50683784e-01\\n2.49171734e-01 -2.85317004e-01 6.73409365e-03 -1.31749257e-01\\n-3.23067680e-02 1.95298083e-02 6.55323416e-02 1.42661870e-01\\n-4.27030414e-01 4.57454562e-01 2.19374508e-01 -2.28910401e-01\\n-1.59789339e-01 -3.83001745e-01 -1.17790073e-01 9.39503908e-02\\n-1.60202701e-02 6.38229847e-02 2.23725945e-01 6.88795745e-02\\n1.96974635e-01 2.60264110e-02 -5.22742048e-04 8.85874748e-01\\n-1.40524998e-01 9.57306996e-02 -2.51644611e-01 2.53697485e-01\\n1.50980324e-01 -2.89986312e-01 2.80801773e-01 2.16312230e-01\\n1.39132887e-02 -1.18245423e-01 -1.95549756e-01 3.32219392e-01\\n-7.19487816e-02 -1.09254085e-01 -2.73653954e-01 2.20479891e-01\\n-1.51173472e-02 -4.65274721e-01 6.94707155e-01 1.68074474e-01\\n2.55161643e-01 4.93885428e-02 1.21857539e-01 -8.68645608e-02\\n-1.27081886e-01 2.56290913e-01 7.76379332e-02 2.72442311e-01\\n-2.18108118e-01 -3.20613831e-01 -2.21017212e-01 2.23724842e-01\\n-3.53618503e-01 1.75051764e-01 -1.28394797e-01 -1.41465947e-01\\n3.30577046e-01 1.05536059e-02 -2.87803292e-01 2.10825711e-01\\n-1.01773039e-01 3.64506356e-02 -7.72139207e-02 2.71981359e-01\\n-1.02155492e-01 2.14078188e-01 9.22173262e-04 -6.45145699e-02\\n5.64561486e-01 2.84836173e-01 2.79161423e-01 -1.23067670e-01\\n3.45087260e-01 -5.11676781e-02 1.63405091e-01 8.21002498e-02\\n-6.31040514e-01 3.10869873e-01 -3.68727036e-02 -1.76589251e-01\\n1.34969518e-01 -6.52770475e-02 3.25856805e-01 -2.57157922e-01\\n-5.15967123e-02 -1.62426069e-01 -3.76122057e-01 -3.22656900e-01\\n-2.83604413e-01 2.77144164e-02 4.97196406e-01 -4.26776201e-01\\n-8.15059394e-02 2.91484952e-01 -5.68268538e-01 -1.38173819e-01\\n2.32215762e-01 1.47685558e-01 1.01201661e-01 7.15292692e-02\\n-1.90153286e-01 -6.05410337e-01 8.48772302e-02 -4.52759802e-01\\n-4.09371853e-01 3.98010090e-02 -3.53863716e-01 1.78142220e-01\\n7.17044398e-02 1.07615422e-02 -8.54406655e-02 1.63991392e-01\\n-1.66344672e-01 -1.10204682e-01 8.21704417e-02 6.00692928e-02\\n1.95020586e-01 2.53835693e-02 -3.49418581e-01 4.34643269e-01\\n-2.08886564e-01 6.72649145e-01 8.37124288e-02 -8.90098214e-01\\n5.02213538e-01 3.19890678e-01 -6.48893192e-02 -3.48706692e-01\\n4.43045735e-01 -2.83987701e-01 -8.49256199e-03 1.15177333e-01\\n-3.37654531e-01 -2.92428941e-01 2.31472522e-01 -1.71367258e-01\\n-2.20631361e-01 4.41119671e-01 1.76952966e-02 9.16481018e-03\\n1.95702165e-01 -2.80308783e-01 -4.14756462e-02 1.09346136e-01\\n-4.77231741e-02 -1.89879775e-01 -4.89079297e-01 1.88513100e-03\\n-8.47586989e-02 -4.07218874e-01 -1.30039483e-01 -3.47180545e-01\\n-2.41055876e-01 -3.97242963e-01 -3.49088669e-01 2.96143562e-01\\n2.25147307e-01 2.32551634e-01 -4.04355973e-02 7.44869709e-02\\n-1.01113021e-01 -7.65807092e-01 -5.17901964e-02 9.09530818e-02\\n4.55614984e-01 2.97814310e-01 1.09813064e-01 -7.03129247e-02\\n4.47022766e-02 5.63230157e-01 -3.85134876e-01 -2.58236289e-01\\n9.64315012e-02 1.24445297e-01 8.34759995e-02 -1.69341728e-01\\n9.87809896e-02 3.20158005e-01 -2.26465285e-01 2.07710825e-03\\n-3.88338137e-03 -5.48758395e-02 4.54785943e-01 -7.30495080e-02\\n-4.50373381e-01 -2.26587906e-01 -8.99599567e-02 1.95765853e-01\\n-5.35101414e-01 -1.89487040e-01 5.62533021e-01 2.48954564e-01\\n2.91302830e-01 1.00056246e-01 1.67688861e-01 -6.92145973e-02\\n-1.73061445e-01 -3.14185739e-01 3.40069145e-01 1.11251567e-02\\n1.78322166e-01 1.65916294e-01 -3.08023635e-02 -6.76074743e-01\\n-3.35571814e+00 -1.75105125e-01 1.85038835e-01 -2.31760085e-01\\n2.18316182e-01 -1.25741452e-01 1.93209387e-02 -1.32110715e-01\\n-2.53572494e-01 5.47187626e-02 -1.86318964e-01 -8.39887932e-02\\n9.73737389e-02 1.58159584e-01 1.00809872e-01 2.19976634e-01\\n2.05799997e-01 -1.63726091e-01 1.10146916e-02 2.65741378e-01\\n-1.71532810e-01 -6.55061483e-01 9.83048826e-02 -8.91530812e-02\\n3.22667509e-01 1.62748769e-01 -3.84980142e-01 -6.11835346e-02\\n-2.69997835e-01 -1.82673231e-01 8.05810913e-02 -2.59896189e-01\\n-1.40804008e-01 2.03420699e-01 1.01352841e-01 -9.51327831e-02\\n8.59824568e-02 -3.63885522e-01 -1.81158930e-01 -5.00918269e-01\\n1.52946234e-01 -5.53841233e-01 -4.17119972e-02 -1.15888700e-01\\n5.94747305e-01 -3.25078219e-01 1.89875484e-01 1.09403998e-01\\n2.83114880e-01 1.29362851e-01 1.23972818e-02 2.62861364e-02\\n-2.21838564e-01 -1.69493467e-01 -5.30149117e-02 -1.88615918e-01\\n5.25774539e-01 4.56460774e-01 -2.93390125e-01 -4.37667966e-02\\n3.56705412e-02 -3.41640472e-01 -4.32385027e-01 -2.23129198e-01\\n-7.13311061e-02 -2.52163529e-01 -5.77911139e-01 -4.77157831e-01\\n-3.09571266e-01 -1.10365443e-01 -1.26469702e-01 6.62187338e-01\\n-3.23219568e-01 -3.27766478e-01 6.65277019e-02 -5.28533757e-01\\n2.30842918e-01 -1.96435735e-01 4.32930477e-02 -2.52803147e-01\\n-2.27631286e-01 -5.73321760e-01 6.24423847e-02 -1.82968341e-02\\n-1.73961565e-01 -1.79617852e-01 6.78169578e-02 -6.17943071e-02\\n-2.32531011e-01 -4.19756383e-01 3.89647216e-01 1.04346447e-01\\n2.93228269e-01 5.08284681e-02 2.81928509e-01 -4.79459763e-02\\n3.37367564e-01 -8.83976743e-02 -1.13041550e-02 -3.93449515e-01\\n1.54537633e-01 2.55006105e-02 5.09475887e-01 -1.81696236e-01\\n-1.32874712e-01 1.52365863e-01 -2.80296147e-01 -9.98495892e-02\\n4.27709907e-01 5.98356500e-02 2.41100192e-02 -1.26159042e-01\\n3.05627704e-01 -2.97293186e-01 -2.31893986e-01 1.07932895e-01\\n8.20666179e-02 6.54827118e-01 -2.06933096e-02 -3.98156404e-01\\n-9.41035450e-02 4.97114569e-01 -7.45334774e-02 6.69855997e-02\\n-1.63031146e-01 1.21430025e-01 -1.41673610e-01 2.03504503e-01\\n5.81516325e-02 -1.41184911e-01 -2.12617084e-01 -7.58793280e-02\\n-1.01767808e-01 2.25126356e-01 1.97094828e-01 6.11173064e-02\\n-9.18186009e-02 -2.76917189e-01 -1.15591481e-01 2.20494658e-01\\n1.40025735e-01 4.62708712e-01 1.79113910e-01 -2.61307478e-01\\n6.93134218e-02 3.74970138e-01 -1.66973844e-01 1.88028678e-01\\n-3.06800246e-01 3.88154015e-02 -5.07762194e-01 -1.43216029e-01\\n-2.85385489e-01 -3.75269949e-01 1.11975931e-01 2.98156142e-01\\n5.36708087e-02 -3.08389924e-02 2.81339567e-02 -4.94714230e-01\\n1.57665610e-01 1.08285412e-01 1.70852378e-01 1.00113593e-01\\n3.32198851e-02 4.90703076e-01 -1.01132318e-03 -1.47146970e-01\\n-1.85693353e-01 3.55091654e-02 -6.82287887e-02 -1.82798803e-01\\n6.06072955e-02 -4.86986220e-01 -5.72313331e-02 3.16250741e-01\\n1.40899912e-01 -2.36131623e-01 -2.40024000e-01 3.50003898e-01\\n4.15401310e-02 -2.47017115e-01 -2.62290299e-01 -2.24967618e-02\\n2.62715280e-01 6.07578978e-02 2.16465384e-01 -3.89911056e-01\\n-8.42264965e-02 4.31800932e-02 -1.22739203e-01 3.84100348e-01\\n2.32975967e-02 1.01430684e-01 -2.31943935e-01 -1.55882329e-01\\n3.36307049e-01 -5.94463050e-02 -4.67284583e-02 -1.03555344e-01\\n5.76151237e-02 -1.34188741e-01 -5.22286177e-01 7.44893253e-02\\n1.70206986e-02 -1.74265087e-01 5.33537157e-02 1.05105408e-01\\n4.18187976e-02 1.32741690e-01 -4.79712486e-01 -2.69251585e-01\\n-2.44657099e-01 -1.28393084e-01 1.26296237e-01 -4.95894432e-01\\n-1.22612000e-01 -1.00875467e-01 -4.81908411e-01 1.76894516e-01\\n-2.77513266e-01 -1.07725382e-01 8.95582885e-02 6.33658022e-02\\n-2.83998668e-01 -2.77838148e-02 -2.29592547e-02 2.75934875e-01\\n-2.86846757e-01 -3.39762658e-01 5.56057990e-02 -9.45985317e-01\\n2.27170900e-01 6.89734519e-02 -2.22424865e-01 -3.26718669e-03\\n-1.74108610e-01 -6.05216146e-01 1.30950481e-01 -4.37011421e-01\\n-1.50994360e-01 -2.34844610e-02 -2.72105157e-01 -2.97714859e-01\\n5.47038652e-02 -1.74721032e-01 -3.68130445e-01 3.76134336e-01\\n-4.05940771e-01 4.43874866e-01 -1.76401973e-01 -4.87243757e-04\\n-2.13410147e-02 -2.63319880e-01 2.02112824e-01 -2.84823000e-01\\n-4.09996748e-01 -2.83034474e-01 -3.78045678e-01 -3.00968587e-01\\n1.11076590e-02 -2.72479594e-01 -1.63361132e-01 2.23125428e-01\\n4.18927550e-01 9.21448693e-02 -8.02528784e-02 -3.98536235e-01\\n-5.82518913e-02 -5.93117774e-01 1.74098760e-02 -5.26624545e-02\\n-7.54604787e-02 -9.09532756e-02 1.88905656e-01 1.10775791e-01\\n1.42395273e-01 -3.75263512e-01 3.93059671e-01 -3.88286471e-01\\n-2.79299974e-01 -7.92382509e-02 -2.73861047e-02 9.36259404e-02\\n2.00426802e-01 -5.31054139e-01 9.77144539e-02 3.01199764e-01\\n1.98462456e-01 2.97670960e-02 1.91203266e-01 -4.87900116e-02\\n-6.87882900e-02 2.27988616e-01 -2.98012584e-01 1.73090607e-01\\n6.54144347e-01 1.17388286e-01 6.31652772e-02 2.00194702e-01\\n1.16988398e-01 5.49446702e-01 5.94745517e-01 -2.47914586e-02\\n-9.24794599e-02 2.57767141e-01 8.51211250e-02 -4.79619801e-01\\n-3.72260362e-02 2.76423022e-02 -1.47639990e-01 -3.80314529e-01\\n7.14551330e-01 3.98576140e-01 -5.47404170e-01 -2.21336380e-01\\n-1.39679372e-01 -1.44555777e-01 2.00027853e-01 -7.04430044e-02\\n-3.39897536e-03 -6.29096925e-02 4.53113943e-01 -4.72913310e-02\\n2.08166152e-01 5.66115141e-01 -2.64952809e-01 -3.55567753e-01\\n-6.86679780e-02 3.62269878e-01 1.28274396e-01 4.08249676e-01\\n-1.98487312e-01 2.37037778e-01 -9.02682822e-03 6.05885573e-02\\n-1.00118443e-01 2.36629352e-01 8.07779133e-02 5.46400510e-02\\n2.47341186e-01 -1.67429149e-02 5.54966450e-01 4.74361002e-01\\n2.85025418e-01 4.20415431e-01 2.60521919e-01 4.21388745e-02\\n4.95278329e-01 6.49276495e-01 3.93783748e-01 7.72576332e-02\\n-1.11409156e-02 2.25496292e-01 1.70007914e-01 -3.44147757e-02\\n4.10633206e-01 4.40927386e-01 1.74155027e-01 8.08846772e-01\\n3.07304114e-01 3.02230656e-01 6.50846004e-01 -6.49663210e-01\\n-3.64356220e-01 -1.44418124e-02 5.23085117e-01 -2.48269573e-01\\n-4.11868766e-02 1.91694826e-01 -1.47834703e-01 3.07997227e-01\\n-3.73023361e-01 -1.27811998e-01 5.36306575e-02 9.21958461e-02\\n3.12214810e-02 -1.92565531e-01 -2.81669199e-01 5.60958087e-02\\n-1.00570589e-01 -1.80167913e-01 -3.31927955e-01 -9.69945937e-02\\n-2.72232592e-01 -2.60736402e-02 -7.23853558e-02 -1.15812071e-01\\n-1.85444765e-02 -3.97107005e-01 -1.34550244e-01 4.04467285e-02\\n3.69552046e-01 -1.67248875e-01 -9.58922058e-02 -1.34342164e-01\\n3.30228537e-01 1.68335885e-01 6.05117857e-01 7.68281966e-02\\n2.46731695e-02 -1.63395479e-01 -2.68286645e-01 1.74666971e-01\\n6.18755706e-02 1.51143685e-01 3.52012813e-02 2.19240040e-01\\n-2.01913804e-01 -1.46688879e-01 2.26790637e-01 3.25612247e-01\\n-3.89241725e-01 -7.37448260e-02 -1.58750713e-01 2.35728651e-01\\n8.98588151e-02 1.61781490e-01 -1.91177696e-01 4.34755534e-03\\n-1.86707377e-01 -4.07727838e-01 3.17683667e-01 -8.36183280e-02\\n-1.94343850e-01 9.68216807e-02 2.67825663e-01 2.44757056e-01\\n-1.58445179e-01 -5.56182899e-02 -5.41100129e-02 1.26169488e-01\\n6.32203966e-02 3.55454206e-01 -1.05133086e-01 -2.34796911e-01\\n-2.68025041e-01 1.81693420e-01 -1.99103922e-01 3.76326554e-02\\n-1.00589730e-01 2.89726645e-01 3.90762649e-02 6.35280684e-02\\n3.77216518e-01 5.01380265e-02 -2.76796132e-01 -2.48932004e-01\\n-2.78387010e-01 -1.10995561e-01 -7.88599625e-03 8.55033547e-02\\n1.08557038e-01 -3.86286855e-01 -5.02902046e-02 -1.17031999e-01\\n-1.29941404e-01 -2.66808242e-01 -3.83708254e-02 -3.63659114e-02]]',\n", + " 'We are seeking a Full Stack Software Engineer to develop software for our portable medical diagnostics system. The candidate will join a multi-disciplinary team dedicated to developing high-quality products. The ideal candidate is a team player, likes overcoming difficult challenges, enjoys learning new skills, and has a “hands-on” problem solving approach. This is an outstanding opportunity for a self-motivated individual to make a key contribution and increase their responsibilities in a high-growth start-up environment. You will build software used by medical professionals and patients. We have build our platform on a modern stack, including Node.js, React, Redux, GraphQL. As a team, we embrace collaboration and independent responsibility: you’ll be supported in your work, and you’ll have the freedom to make your own decisions. This role is for someone who wants to apply their computer science knowledge to have a meaningful impact on personalised medicine and life sciences. We are looking for someone to grow with the organization as a core member of the team. Job responsibilities: As part of the 1Drop Diagnostics team, the candidate will develop software for a distributed portable medical diagnostics system: Provide architecture and design for the overall application according to the requirements Inspire our users with a beautiful and intuitive UI/UX design Develop new features and functionality in collaboration with team members Maintain best practices relating to design, implementation, documentation, testing, and deployment. Ensure an easy-to-read and robust code base and good test coverage. Monitor and optimize code performance Provide integration with external services Provide technical leadership Assess current development processes and recommend changes as needed Our ideal candidate: Minimum 2 years’ experience working in a team with a modern web stack (Node.js, Django, Rails, React, etc.) building high-performance web applications Proficient in modern JavaScript (especially promises), Python, Ruby/Ruby on Rails Passion for front-end engineering and design Desire to push our stack forward. Currently, we use Angular, Redux, and React, GraphQL on the front end, Node.js, Postgres and Rabbitmq on the back end Deep knowledge of the building blocks of the web: HTTP, headers, cookies, caching Knowledge and experience using dev ops (continuous integration: Maven, Jenkins, Git) Open, objective, opinionated. Having technology preferences but happy to use frameworks and tools that get the job done efficiently and with scale in mind Nice to have skills and experience: Interest in personalised medicine, biology, laboratory science Experience with machine learning and image processing Passion for making in your spare time: electronics, robots, art, bikes, cars, anything! Experience with Android or iOS development Experience working with a quality system in a regulated industry ',\n", + " '[\"Self-Motivation\", \"Leadership\", \"Decisiveness\", \"Collaboration\", \"Professionalism\", \"Problem Solving\", \"Integration\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"Jenkins\", \"Nice (Unix Utility)\", \"Clinical Laboratory Science\", \"Computer Science\", \"Life Sciences\", \"High Performance Computing\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Scholastic READ 180\", \"Scale (Map)\", \"Ruby (Programming Language)\", \"Android (Operating System)\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"GraphQL\", \"IOS Development\", \"Quality Management Systems\", \"Software Engineering\", \"React.js\", \"Django (Web Framework)\", \"Threading Building Blocks\", \"Machine Learning Methods\", \"Front-End Engineering\", \"Image Processing\", \"RabbitMQ\", \"Product Quality (QA/QC)\", \"React Redux\", \"Apache Maven\", \"Electronics\", \"Biology\", \"JavaScript (Programming Language)\", \"Robotics\", \"Ruby On Rails\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Http Headers\", \"Software Development\", \"Service Provider\", \"Diagnostic Medical Sonography\", \"Git Flow\", \"Documentation Based Coding\", \"Process Driven Development\"]',\n", + " \"['English', 'Amharic']\"],\n", + " ['80',\n", + " 'software engineer / software developer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.25367069e-01 2.32250974e-01 5.06567001e-01 -3.08572352e-02\\n5.38056970e-01 -1.08408272e-01 -2.40812823e-02 1.60881981e-01\\n4.34205234e-02 -2.91904867e-01 -2.14868248e-01 -2.16581345e-01\\n-1.15298659e-01 5.15648387e-02 2.66742986e-02 3.83278847e-01\\n3.06102395e-01 2.71346886e-02 -6.74058422e-02 3.92125249e-01\\n2.81417258e-02 -9.31503773e-02 -5.77119514e-02 5.83967149e-01\\n2.64430732e-01 9.47352946e-02 -5.33663295e-02 -4.10202071e-02\\n-3.11393440e-01 -1.79390132e-01 3.07072222e-01 1.23419017e-01\\n-1.27168745e-01 -3.90187591e-01 1.36987880e-01 1.06949173e-01\\n-2.15480745e-01 1.32493526e-02 -9.48492959e-02 9.79602560e-02\\n-5.29760838e-01 -3.24110836e-01 1.52288482e-01 2.27997378e-02\\n-1.94146991e-01 -2.01853797e-01 1.83830202e-01 -1.11657187e-01\\n2.45372951e-02 2.38093957e-02 -5.33806860e-01 3.54550540e-01\\n-4.20291483e-01 -2.47024447e-01 3.81521523e-01 5.96935749e-01\\n1.69312924e-01 -6.64397001e-01 -4.12428617e-01 -2.82069921e-01\\n5.34798726e-02 -6.41626418e-02 9.88345891e-02 -1.96285963e-01\\n3.43531489e-01 1.34739205e-02 -2.21036226e-02 4.34350729e-01\\n-8.26372087e-01 -7.20439404e-02 -2.62500703e-01 1.33338645e-01\\n-3.52257192e-01 -6.25488013e-02 -2.36151934e-01 -2.17267051e-02\\n-2.60160733e-02 3.94523978e-01 8.44941754e-03 1.12511650e-01\\n-1.26457617e-01 3.30614686e-01 -1.41389266e-01 2.90522575e-01\\n3.11808646e-01 3.45171019e-02 3.02065790e-01 2.80326009e-01\\n-4.95883435e-01 4.50023830e-01 1.81527719e-01 -2.11015806e-01\\n2.67653227e-01 1.58400148e-01 4.31469202e-01 1.78276002e-01\\n3.01656872e-02 1.81041181e-01 -1.35731250e-01 4.81240451e-02\\n1.01029329e-01 -7.63979331e-02 -1.94998413e-01 -6.14719130e-02\\n-3.69126052e-02 -1.09417550e-01 -2.68448591e-02 1.85031161e-01\\n-4.15751815e-01 4.12972987e-01 2.20459431e-01 -2.19872743e-01\\n-1.96752381e-02 -4.31497753e-01 -2.18178660e-01 4.53583896e-02\\n-1.14089355e-01 3.48000340e-02 1.87637717e-01 1.06855065e-01\\n2.69330353e-01 7.03730136e-02 8.25046599e-02 7.83579886e-01\\n-1.72811537e-03 6.37024045e-02 -9.77263004e-02 3.78203273e-01\\n2.06835926e-01 -1.85746089e-01 1.33802921e-01 1.87158450e-01\\n-7.54398704e-02 -1.99264847e-02 -2.52931893e-01 3.46191227e-01\\n-1.03875570e-01 -1.28544092e-01 -2.18259960e-01 1.40593365e-01\\n-1.73572809e-01 -4.48526561e-01 4.59843755e-01 -5.11627942e-02\\n1.50587812e-01 -2.82702427e-02 9.14290249e-02 -6.30012676e-02\\n-2.76991069e-01 3.58803034e-01 5.73794395e-02 3.81285369e-01\\n-3.20071816e-01 -2.03894228e-01 -1.51104420e-01 2.85816401e-01\\n-5.67993410e-02 3.12752128e-02 -3.11789513e-01 -1.94346130e-01\\n3.82191598e-01 1.98204935e-01 -4.09960330e-01 2.23371714e-01\\n-4.69688699e-03 -1.26406088e-01 -1.46324620e-01 2.33621150e-01\\n-3.00254114e-02 4.97157536e-02 -4.65934239e-02 -1.97821960e-01\\n5.21380901e-01 2.19704241e-01 2.86892235e-01 -5.03344350e-02\\n4.63541001e-01 -2.00360835e-01 2.53830343e-01 8.34876969e-02\\n-6.59926414e-01 3.12164098e-01 -3.62023823e-02 2.49249861e-02\\n9.88058597e-02 2.55212002e-02 4.41434443e-01 -4.59113181e-01\\n-2.31090225e-02 -2.44792342e-01 -5.09799957e-01 -4.36985701e-01\\n-2.72760272e-01 5.69667667e-03 3.66374701e-01 -3.63009006e-01\\n-7.15652481e-02 7.69126564e-02 -5.78313112e-01 -1.99701443e-01\\n2.76786000e-01 2.33507782e-01 4.84719127e-02 5.50956689e-02\\n-1.26087397e-01 -5.80397725e-01 4.65628244e-02 -5.05747437e-01\\n-4.18906152e-01 8.55193287e-02 -3.53772521e-01 1.46848410e-01\\n-7.76025727e-02 -9.57984477e-03 -4.07023206e-02 8.26761499e-02\\n-3.18360209e-01 -7.91950151e-02 1.88098043e-01 -1.25749223e-02\\n1.75996646e-01 1.04710072e-01 -3.59764487e-01 5.16279340e-01\\n-4.10223782e-01 4.44771528e-01 2.84537114e-02 -9.00931180e-01\\n5.93306780e-01 3.19059312e-01 -1.80207975e-02 -3.05124223e-01\\n2.81832367e-01 -4.46709454e-01 2.84423437e-02 1.40046984e-01\\n-3.46426904e-01 -2.06795186e-01 2.60284930e-01 -1.47883773e-01\\n-3.07594031e-01 6.51092768e-01 1.74471512e-01 -8.70934501e-02\\n3.95143330e-01 -2.32051373e-01 -1.26204520e-01 -1.46357147e-02\\n-1.45927727e-01 -2.24779695e-01 -3.86895150e-01 1.51634291e-01\\n-5.24877794e-02 -5.73804259e-01 -1.66523844e-01 -3.64520848e-01\\n-2.17325807e-01 -4.87938285e-01 -3.82030904e-01 2.64078349e-01\\n1.43892720e-01 1.31490212e-02 -1.02596179e-01 2.85451449e-02\\n-3.85866687e-02 -7.23191559e-01 2.96020545e-02 1.60019368e-01\\n2.99174309e-01 3.47680151e-01 6.09877966e-02 -1.36918709e-01\\n-1.26184955e-01 4.06187952e-01 -4.86289144e-01 -2.75910258e-01\\n2.43408799e-01 1.38998345e-01 -7.85953775e-02 -1.71315610e-01\\n9.97510776e-02 3.87225658e-01 -2.40799725e-01 1.40739679e-01\\n8.61217454e-03 -6.94794133e-02 4.41190898e-01 -1.20681852e-01\\n-2.98859775e-01 -1.84374288e-01 -8.85727629e-02 3.51997852e-01\\n-6.10278606e-01 -1.05335496e-01 4.99201894e-01 2.71051645e-01\\n3.35367620e-02 2.68380404e-01 1.69864804e-01 -7.87977502e-02\\n-3.00894827e-01 -3.42844963e-01 2.15264201e-01 2.46559560e-01\\n1.53311417e-01 5.47563285e-02 -2.60966510e-01 -6.16514444e-01\\n-3.19635248e+00 -2.54849076e-01 9.39714760e-02 -2.75129974e-01\\n2.92342395e-01 -7.83625096e-02 1.90165013e-01 -9.11874101e-02\\n-2.70731717e-01 1.37706280e-01 -1.39492363e-01 -1.54836312e-01\\n1.26148686e-01 3.48634750e-01 1.32829741e-01 1.34852111e-01\\n7.62232319e-02 -1.83864534e-01 1.09308824e-01 3.83179903e-01\\n-1.91640943e-01 -8.20138574e-01 1.41961187e-01 -1.61218792e-01\\n1.14418946e-01 2.60207415e-01 -4.47522104e-01 4.37934548e-02\\n-1.16608992e-01 -1.97983831e-01 7.83405602e-02 -1.90912336e-01\\n-1.06153317e-01 3.67295146e-01 6.71319813e-02 -1.48616403e-01\\n-4.83556762e-02 -3.09311152e-01 -3.14105302e-02 -4.79216218e-01\\n1.60831571e-01 -5.89869380e-01 3.43549848e-02 -1.81524187e-01\\n5.49920917e-01 -1.97550043e-01 2.43693471e-01 1.24246225e-01\\n2.00403571e-01 3.04961890e-01 1.49926156e-01 2.51783114e-02\\n-2.95255601e-01 -2.33592108e-01 -9.32520851e-02 -2.07782090e-01\\n5.10057330e-01 3.42801034e-01 -2.82899499e-01 6.15846589e-02\\n1.05509199e-01 -4.32465076e-01 -3.49967599e-01 -4.00114238e-01\\n-2.04810917e-01 -1.09554261e-01 -6.41308069e-01 -3.42314661e-01\\n-1.92419097e-01 -1.39751062e-01 -1.39713854e-01 7.81497836e-01\\n-4.99107718e-01 -4.06478226e-01 1.19719766e-02 -6.49039507e-01\\n1.34311736e-01 -2.00723842e-01 3.92416567e-02 -2.20356852e-01\\n-2.74089634e-01 -4.32681322e-01 2.38266587e-01 -5.10744527e-02\\n-2.03350902e-01 -1.30662858e-01 1.37163877e-01 -1.10474922e-01\\n-3.25004011e-01 -5.03559589e-01 3.83183658e-01 6.53676614e-02\\n3.79443288e-01 -4.60685343e-02 3.74002546e-01 -3.08435224e-03\\n4.18341905e-01 5.35769947e-03 8.37836415e-04 -4.40748930e-01\\n1.08460613e-01 -7.80043192e-04 6.85197830e-01 -1.45213291e-01\\n-7.33251572e-02 1.66422918e-01 -2.27138698e-01 -1.26563698e-01\\n5.21943092e-01 8.02427679e-02 4.87574078e-02 -2.32082248e-01\\n3.78631949e-01 -4.66825008e-01 -2.49808490e-01 2.43298143e-01\\n3.07569616e-02 7.66757846e-01 5.87910078e-02 -3.79317909e-01\\n-2.39322230e-01 4.22484040e-01 -1.44284099e-01 -2.22330078e-01\\n-6.84434772e-02 8.89778137e-02 -1.66569531e-01 2.62317598e-01\\n1.92808867e-01 -6.19542561e-02 -2.95174927e-01 5.76430261e-02\\n-1.12551764e-01 1.59394085e-01 2.32682347e-01 -1.93992667e-02\\n-2.97703370e-02 -1.88973278e-01 -4.92926911e-02 1.02308780e-01\\n6.34383857e-02 3.42660129e-01 9.22834277e-02 -2.89837658e-01\\n-5.03159240e-02 3.36479247e-01 -1.63570911e-01 2.48487189e-01\\n-1.09791301e-01 1.53684124e-01 -4.97681260e-01 -1.97761148e-01\\n-2.06646606e-01 -2.61339605e-01 -9.56039503e-03 2.80957818e-01\\n2.38016069e-01 -1.30991951e-01 1.41505241e-01 -4.57986057e-01\\n2.10998967e-01 1.33540303e-01 1.96845964e-01 8.18284005e-02\\n-2.32818499e-02 6.10417724e-01 1.68296229e-02 -2.36854240e-01\\n-1.07502878e-01 -1.49121778e-02 -2.66296327e-01 -3.18803549e-01\\n2.08599657e-01 -3.55375320e-01 -1.29596010e-01 4.23504084e-01\\n1.28286421e-01 -2.49834776e-01 -2.20341563e-01 3.37689757e-01\\n7.20431358e-02 -2.66054809e-01 -2.85301507e-01 -7.57950023e-02\\n1.88901111e-01 2.84074582e-02 2.78044939e-01 -5.10914326e-01\\n-2.59949975e-02 -1.36250257e-03 1.28233470e-02 4.67919648e-01\\n5.92767969e-02 1.16734385e-01 -1.09362632e-01 -1.44946769e-01\\n4.66756493e-01 5.64487651e-02 -1.29541904e-01 -2.36113578e-01\\n1.29600883e-01 -2.14544892e-01 -5.09657741e-01 3.54524627e-02\\n-9.93179232e-02 -1.93390831e-01 6.20992705e-02 8.26178119e-02\\n2.19255149e-01 -1.23647209e-02 -3.70475054e-01 -2.29432106e-01\\n-2.92717785e-01 4.74487431e-02 7.45133311e-03 -5.20490587e-01\\n9.94280726e-02 1.09957717e-02 -5.96520185e-01 1.47538424e-01\\n-1.87937438e-01 2.04397347e-02 1.86351404e-01 2.19789654e-01\\n-4.11421955e-01 -1.44278526e-01 1.05830394e-01 -2.53418684e-02\\n-3.67548823e-01 -2.97393560e-01 1.19073883e-01 -9.04114485e-01\\n1.80069685e-01 -2.32574344e-02 -1.43598486e-02 4.94432002e-02\\n-1.74283594e-01 -8.51010084e-01 2.30149403e-01 -4.42614794e-01\\n-1.22168086e-01 1.22216277e-01 -2.64694393e-01 -3.17753255e-01\\n5.61104119e-02 -2.55494803e-01 -2.28791058e-01 3.48264933e-01\\n-3.76855820e-01 4.41550732e-01 4.76682819e-02 4.79381979e-02\\n9.16538537e-02 -1.97563708e-01 1.11187659e-01 -3.14849675e-01\\n-5.80909252e-01 -2.42765695e-01 -3.28522950e-01 -2.76856661e-01\\n3.57050821e-02 -1.69898570e-01 -1.37201637e-01 -2.03566328e-02\\n3.40103388e-01 1.51355609e-01 -1.07614011e-01 -1.19418435e-01\\n9.00743902e-03 -3.87887895e-01 1.13505080e-01 -1.81922019e-01\\n1.32845908e-01 -6.44208789e-02 2.73060441e-01 -4.02797200e-02\\n2.22751677e-01 -3.81638467e-01 5.11491597e-01 -2.05188006e-01\\n-3.99204880e-01 -1.54728606e-01 1.99268796e-02 1.55507624e-01\\n2.95039535e-01 -5.28380215e-01 1.32281214e-01 3.00676048e-01\\n1.33325726e-01 -2.85863616e-02 2.27290079e-01 -7.97762275e-02\\n-9.42666009e-02 8.34190696e-02 -4.76695001e-01 8.37441832e-02\\n7.65801072e-01 1.47023559e-01 6.67895675e-02 2.43416205e-01\\n9.45425183e-02 3.04710776e-01 6.08462870e-01 -2.20967010e-02\\n-4.79199179e-02 3.68747354e-01 1.40219897e-01 -5.51003039e-01\\n-1.57513052e-01 1.40283704e-02 -5.22824004e-02 -3.07890236e-01\\n5.56715369e-01 3.40262890e-01 -4.69048560e-01 -2.96766222e-01\\n-1.63784832e-01 -2.37598673e-01 3.17476928e-01 -8.94988477e-02\\n-3.22447047e-02 -7.29530901e-02 5.63611329e-01 1.02175288e-02\\n3.47252667e-01 4.86710966e-01 -1.28394976e-01 -2.22338080e-01\\n-5.61321862e-02 1.51355475e-01 1.65609211e-01 2.80173838e-01\\n-6.65946305e-03 8.07211623e-02 -7.70445466e-02 6.34441674e-02\\n-1.03609487e-01 9.85604450e-02 8.30701888e-02 6.29035458e-02\\n1.81894064e-01 7.57821649e-02 4.50928271e-01 4.92250979e-01\\n2.58738071e-01 4.01571214e-01 3.03755224e-01 -3.51147726e-02\\n5.26169419e-01 7.39565492e-01 2.28024513e-01 -1.81265268e-02\\n-3.11236437e-02 1.54750019e-01 1.70679808e-01 -3.48967612e-02\\n4.75910842e-01 4.78863269e-01 2.61846662e-01 8.37461352e-01\\n3.58098060e-01 2.95397758e-01 6.88285828e-01 -5.99149883e-01\\n-3.22031736e-01 4.02529985e-02 5.18418431e-01 -2.52522111e-01\\n7.27750435e-02 1.33267000e-01 -1.87212527e-01 2.87318945e-01\\n-4.75213856e-01 -9.70668644e-02 7.00661168e-02 -2.83663347e-03\\n2.02282414e-01 -2.12395936e-03 -9.01820809e-02 9.87307355e-02\\n-1.24142163e-01 -2.20045730e-01 -3.05499405e-01 -2.41163403e-01\\n-3.20979655e-01 2.24437751e-02 3.06546800e-02 -5.41475117e-02\\n5.98864816e-02 -4.07735169e-01 -1.41460359e-01 -5.26651628e-02\\n3.17068607e-01 -1.27478197e-01 -1.20138638e-01 -1.33549035e-01\\n1.58961445e-01 2.76630282e-01 5.96399665e-01 -7.57311732e-02\\n1.43839732e-01 -1.23605192e-01 -2.52382845e-01 1.24179125e-01\\n1.16064355e-01 1.48065016e-01 1.10181764e-01 5.05786598e-01\\n-3.49783927e-01 -3.08969431e-03 1.17976651e-01 3.48172426e-01\\n-2.92092204e-01 -1.11443736e-01 -8.51169676e-02 7.61211365e-02\\n6.36570901e-02 1.03409037e-01 -2.34104171e-01 -1.23966374e-02\\n-2.55150914e-01 -6.30271435e-01 4.23001468e-01 -2.28032708e-01\\n-2.39740252e-01 2.77216733e-02 3.34902197e-01 3.17249089e-01\\n-1.82808474e-01 1.08668581e-03 2.65558250e-02 1.94411993e-01\\n9.44532305e-02 4.17929769e-01 -1.96961850e-01 -2.43791923e-01\\n-2.61333048e-01 2.97854185e-01 -2.83821970e-02 4.48129186e-03\\n-1.24264970e-01 3.66526961e-01 -1.34759983e-02 8.22211877e-02\\n2.26189882e-01 -9.42047685e-02 -2.72495687e-01 -2.70741105e-01\\n-3.08053017e-01 -8.52136984e-02 1.37666106e-01 4.55312245e-02\\n1.49159938e-01 -3.19297612e-01 -6.71045855e-02 -2.13812858e-01\\n-1.91874057e-01 -3.12175632e-01 -1.88196659e-01 7.33174235e-02]]',\n", + " 'Job Description You will be part of our IoT Core feature team, which is responsible for the development and operations of the core software services of our IoT Cloud Platform. We use agile DevOps and SRE practices to provide outstanding service quality and availability to our customers. You will join a team of always curious and enthusiastic Engineers, which are working closely together with the Product Owner to deliver valuable features that enable the digitalisation of the logistics industry. This is a (specialized or full-stack) software engineering position with focus on development and operation of software services. He / She designs, implements, tests and operates high quality software services according to SLAs and OLAs in place and takes co-ownership for team owned software components. The focus of the role will be: Conduct technical requirements analysis based on input from business analysis respectively business requirements engineering, including functional and non-functional requirements (e.g. security, availability, scalability, cost-optimization, …) Create software designs based on result of requirements analysis according to the architectural-, security-, product- and team guidelines Implement software designs using continuous integration and deployment Maintain existing software systems; including fixing bugs, adding new features, refactoring and conducting version upgrades Participate in code reviews as part of the agile software development process and collaborate with other software engineers to integrate code changes (e.g. pull/merge requests) Conduct quality testing on software (unit testing) and software systems (integration and end-to-end testing) Write and maintain technical documentation of software and software systems Operate software systems and collaborate with customer support team and system team to resolve incidents (2nd level support) Participate in agile software development activities (e.g. stand-ups, planning meetings, retrospectives, …) and collaborate with product owner and product management team to coordinate timeline for new features Qualifications Good conceptual skills in developing solution designs, documenting and implementing them Experience in writing JVM based software, primarily in Kotlin and Java. Python and Unix shell know-how is a great plus Experience with at least two of the following tools: Git / DataDog / Prometheus & Grafana / Ansible Experience with at least one of the following approaches to API development: Protobuf & gRPC Rest API (ideally using OpenAPI or Swagger) Experience with at least four of the following systems: Apache Kafka PostgreSQL or other relational database systems DynamoDB Docker Kubernetes AWS ECS / Fargate Elastic Search Linux / Unix Experience with Stream processing (e.g. Kafka Streams, Flink, Spark etc.) is very helpful Fluent in English spoken and written. German is a plus, but not mandatory Additional Information You can choose between either a MacBook Pro or a Microsoft Windows Notebook at a top location right next to the railway station Zurich Hardbrücke. Nexxiot is an equal opportunity employer. Welcoming diversity gives us a competitive advantage in the global marketplace and is an important driver of our success and culture. Our recruitment team is looking forward to receive your CV via our career portal.',\n", + " '[\"Writing\", \"Collaboration\", \"Coordinating\", \"Planning\", \"Microsoft Windows\", \"Timelines\", \"Operations\", \"Integration\", \"Positivity\"]',\n", + " '[\"Apache Flink\", \"Kubernetes\", \"Tooling\", \"Customer Support\", \"Agility\", \"Product Management\", \"Unit Testing\", \"Unix Shell\", \"Continuous Integration\", \"Industrialization\", \"Activism\", \"Functional Requirement\", \"Software Systems\", \"Python (Programming Language)\", \"PostgreSQL\", \"Maintainability\", \"Linux\", \"E (Programming Language)\", \"Levelling\", \"Idealization\", \"Systems Integration\", \"Apache Kafka\", \"Cloud Platform System\", \"Software Engineering\", \"Amazon DynamoDB\", \"Stream Processing\", \"Agile Software Development\", \"Conceptualization\", \"Full Stack Software Engineering\", \"Docker (Software)\", \"Business Requirements\", \"AD Model Builder (ADMB)\", \"Amazon Marketplace\", \"Logistics\", \"Equalization\", \"Scalability\", \"Business Analysis\", \"Technical Documentation\", \"Code Review\", \"Receivables\", \"Software Design\", \"Service Quality\", \"Database Systems\", \"Stand-Up Comedy\", \"Datadog\", \"Grafana\", \"Java Virtual Machine (JVM)\", \"Software Development\", \"Requirements Analysis\", \"Solution Design\", \"Relational Databases\", \"Ansible\", \"Additives\", \"Git Flow\", \"OpenAPI\", \"Swagger UI\", \"Java (Programming Language)\", \"Job Descriptions\", \"Application Programming Interface (API)\", \"Prometheus (Software)\", \"Unix\", \"Software Plus Services\", \"Kotlin\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English']\"],\n", + " ['84',\n", + " 'big data software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.95475721e-01 2.26254344e-01 4.53860939e-01 -4.24860679e-02\\n5.80959022e-01 -1.46520942e-01 -5.59190586e-02 3.88909787e-01\\n-3.99867631e-02 -4.36967701e-01 -5.46029657e-02 -3.73550385e-01\\n-1.09801807e-01 1.76147111e-02 8.21338594e-02 3.62795323e-01\\n2.20697746e-01 9.19781700e-02 -1.83741719e-01 3.53953689e-01\\n1.32045880e-01 1.92891974e-02 -8.30744952e-02 6.66243434e-01\\n4.02684182e-01 -8.62751380e-02 -5.96061647e-02 4.92416322e-02\\n-2.92672575e-01 -2.51170903e-01 3.65557104e-01 6.22386225e-02\\n8.73638876e-03 -3.58958840e-01 7.53590763e-02 1.50425658e-01\\n-2.40649000e-01 -1.04149029e-01 -7.46167963e-03 1.45488515e-01\\n-4.55489099e-01 -4.19286817e-01 6.77667260e-02 7.08879158e-02\\n-2.18038335e-01 -3.20453733e-01 -9.06265005e-02 6.70380890e-03\\n7.43025616e-02 1.01407871e-01 -5.68774521e-01 3.28221112e-01\\n-1.20602623e-01 -2.01708719e-01 1.71271145e-01 6.94798172e-01\\n6.00795597e-02 -5.28285265e-01 -3.60261679e-01 -2.69926488e-01\\n9.54260007e-02 -1.25167996e-01 1.82684083e-02 -2.86625236e-01\\n3.44851434e-01 -8.75207558e-02 -2.01210030e-03 5.15401244e-01\\n-7.59545147e-01 -1.74647838e-01 -1.54337123e-01 -1.77511722e-02\\n-4.18610036e-01 6.88999519e-02 -2.67455488e-01 -2.45709702e-01\\n-4.49220538e-02 4.26948577e-01 6.60805181e-02 5.29523939e-02\\n-1.72771439e-01 2.02274024e-01 -1.52984381e-01 2.16449112e-01\\n3.17985535e-01 1.54633224e-01 8.78115892e-02 1.81203350e-01\\n-4.96432662e-01 3.61129612e-01 1.48912251e-01 -3.49737465e-01\\n2.09199846e-01 4.83496599e-02 4.96965617e-01 1.91142052e-01\\n4.90249172e-02 1.69249579e-01 -1.64535820e-01 2.95909435e-01\\n2.10195214e-01 -3.21920991e-01 1.45695701e-01 -1.86513141e-02\\n-1.04198262e-01 -4.37810458e-02 3.06518679e-03 1.80985302e-01\\n-2.49574915e-01 3.25798184e-01 2.44166896e-01 -1.84594452e-01\\n-4.40762937e-02 -5.86275280e-01 -1.05681345e-01 -5.11038676e-02\\n1.35617517e-02 2.42489070e-01 3.04114163e-01 2.24202983e-02\\n2.05946773e-01 8.20706487e-02 2.19092429e-01 1.03454149e+00\\n-5.96474186e-02 8.01406130e-02 -3.42648774e-01 3.96730900e-01\\n2.00959265e-01 -2.52870291e-01 2.27093920e-01 3.06919515e-01\\n7.69393817e-02 -1.93087101e-01 -1.44221604e-01 3.23399663e-01\\n-1.21299662e-01 -2.20447227e-01 -4.05095011e-01 5.71728386e-02\\n-2.11618215e-01 -3.14670533e-01 5.19362807e-01 2.62630433e-01\\n1.53878421e-01 -6.98986053e-02 -3.04486118e-02 -1.20067149e-01\\n-5.96076548e-02 3.37844163e-01 -6.47017732e-02 1.19129136e-01\\n-3.49243313e-01 -1.37863755e-01 -2.62030661e-01 3.65168422e-01\\n-1.87753305e-01 5.99996448e-02 -2.38119997e-03 -6.01500645e-02\\n2.30953723e-01 4.01028655e-02 -2.93289989e-01 9.85902399e-02\\n-1.01752684e-01 -3.70279402e-01 -7.03604296e-02 2.18921289e-01\\n-1.42967999e-01 1.65009469e-01 3.10352594e-02 -2.46162698e-01\\n5.74836731e-01 2.37767175e-01 3.17416757e-01 -1.45694017e-01\\n2.60939062e-01 -1.96329832e-01 1.39079258e-01 1.10690206e-01\\n-6.02635026e-01 4.38852549e-01 -2.15958096e-02 -1.36269480e-01\\n2.76113097e-02 9.02809948e-02 2.80742258e-01 -2.96117485e-01\\n3.13166827e-02 -1.08102210e-01 -4.64693904e-01 -3.60354662e-01\\n-2.95744032e-01 2.18362417e-02 4.57201451e-01 -4.04749244e-01\\n-1.46620944e-01 2.24218309e-01 -4.62048352e-01 -6.31416962e-02\\n2.15744376e-01 1.52088493e-01 9.36395898e-02 1.69552471e-02\\n-2.35127509e-01 -5.71953416e-01 -6.41718656e-02 -4.69564050e-01\\n-4.82833803e-01 -1.70049556e-02 -1.75351053e-01 2.32749358e-01\\n3.00036594e-02 1.17357276e-01 -1.96229473e-01 1.96063250e-01\\n-3.41962874e-01 5.40161692e-02 2.64841080e-01 1.71654239e-01\\n3.70597512e-01 -5.23382649e-02 -4.25205231e-01 4.65465695e-01\\n-1.23209588e-01 6.61335588e-01 2.02898487e-01 -8.49892735e-01\\n5.80643892e-01 2.20113486e-01 1.07140422e-01 -3.50698709e-01\\n5.06110311e-01 -4.42881376e-01 1.60943456e-02 1.47306606e-01\\n-3.87720615e-01 -2.73828030e-01 3.62310857e-01 -1.29508197e-01\\n-2.30647773e-01 6.08829498e-01 1.99007675e-01 1.93108644e-04\\n2.85501659e-01 -3.52590412e-01 -1.43718898e-01 -8.02329779e-02\\n-6.74726218e-02 -3.05934489e-01 -4.37115639e-01 2.22733840e-01\\n-3.05698458e-02 -6.45238340e-01 -1.13165066e-01 -4.06660229e-01\\n-2.16569886e-01 -3.51674914e-01 -2.34184876e-01 4.19165462e-01\\n2.76025742e-01 8.39332193e-02 1.54705450e-01 -4.47392352e-02\\n-9.37539153e-03 -6.15308404e-01 -1.40415624e-01 2.14486033e-01\\n4.48616087e-01 1.42360687e-01 3.09395734e-02 9.63410586e-02\\n4.47689816e-02 5.86526394e-01 -2.58371651e-01 -3.34691465e-01\\n3.50268930e-02 2.28804752e-01 4.66413796e-02 -1.29326507e-01\\n1.26996502e-01 3.64164323e-01 -2.35319719e-01 1.25682419e-02\\n-7.74245635e-02 1.72486566e-02 3.18377018e-01 1.17641807e-01\\n-2.98866600e-01 -1.28881097e-01 -4.86573093e-02 2.11960137e-01\\n-5.56597650e-01 -1.46496922e-01 5.49597919e-01 2.57537186e-01\\n1.56539068e-01 1.85051665e-01 2.33268961e-01 -1.19648881e-01\\n-2.60140896e-01 -1.78957850e-01 1.27641842e-01 1.86114728e-01\\n-5.17619848e-02 -7.25581963e-03 -1.66807011e-01 -5.54720223e-01\\n-3.27384424e+00 -2.99352974e-01 1.25636399e-01 -3.34826708e-01\\n1.35293424e-01 -1.91441938e-01 -5.06058224e-02 -4.19297926e-02\\n-3.58097583e-01 9.08822790e-02 -3.74140143e-02 -2.03052729e-01\\n1.40001193e-01 1.75485700e-01 7.85093978e-02 2.75139421e-01\\n6.75930232e-02 -1.04201205e-01 -1.75874755e-01 3.20242614e-01\\n-1.80499345e-01 -6.55113816e-01 1.88280210e-01 3.45729180e-02\\n1.92087322e-01 1.03464335e-01 -3.67073476e-01 -9.13939476e-02\\n-2.60288626e-01 -3.15773755e-01 1.50461346e-01 -2.92347848e-01\\n-1.27680227e-01 4.07256246e-01 2.06076637e-01 -5.69466464e-02\\n1.04431331e-01 -3.15710187e-01 -1.64455786e-01 -4.24376100e-01\\n5.02487719e-02 -6.14461482e-01 -4.13530972e-03 -1.52367115e-01\\n7.23793507e-01 -4.16154653e-01 1.60419077e-01 2.09563658e-01\\n1.65270373e-01 2.15606675e-01 -6.22715205e-02 -2.51014847e-02\\n-1.58902198e-01 -4.31894481e-01 -3.61498743e-02 -1.74072698e-01\\n3.66990685e-01 6.79837286e-01 -5.81002608e-02 5.80697767e-02\\n2.83709224e-02 -2.37823009e-01 -3.40500116e-01 -4.35889930e-01\\n-2.56529748e-01 -2.01638266e-01 -6.39951944e-01 -3.77360404e-01\\n-4.79043275e-02 -6.39219284e-02 -1.60647914e-01 5.89628279e-01\\n-2.55052179e-01 -4.55416977e-01 3.13365459e-02 -4.99687046e-01\\n1.90832689e-01 -3.24378014e-01 2.12393124e-02 -2.54639350e-02\\n-2.83375174e-01 -5.61321497e-01 5.82969934e-02 -6.76132515e-02\\n-9.46271271e-02 -1.63567424e-01 -5.85322231e-02 -3.22122186e-01\\n-2.75480002e-01 -4.30737913e-01 4.63177025e-01 3.80742326e-02\\n3.63200217e-01 2.18286917e-01 3.83527458e-01 1.68774560e-01\\n2.92564541e-01 -2.24895909e-01 3.35482322e-02 -2.67039686e-01\\n1.32625371e-01 2.52870675e-02 5.74510455e-01 -3.28678519e-01\\n1.87079027e-01 1.65346906e-01 -1.72589436e-01 -4.19711359e-02\\n3.82238358e-01 1.07176125e-01 2.47276928e-02 -2.21477687e-01\\n3.22325230e-01 -4.73418862e-01 -2.94984847e-01 7.49611408e-02\\n2.56017912e-02 5.84212542e-01 2.26561967e-02 -4.32384461e-01\\n-3.07419747e-01 4.82267022e-01 -1.37267321e-01 -2.32606292e-01\\n-2.20473588e-01 2.22867355e-01 -2.23136291e-01 2.67648876e-01\\n-6.65471703e-02 -2.74088055e-01 -3.29390824e-01 -1.24797903e-01\\n3.80638689e-02 3.19269150e-01 2.52215534e-01 5.11887968e-02\\n-9.58219767e-02 -2.24039465e-01 -2.36812577e-01 8.30175281e-02\\n3.06641161e-01 3.50338787e-01 1.67791516e-01 -2.56307840e-01\\n-3.67232524e-02 2.96854287e-01 -2.47724161e-01 1.37385592e-01\\n-2.37223819e-01 -3.34507693e-03 -4.96104240e-01 -3.52341712e-01\\n-7.54139870e-02 -3.38786930e-01 1.71203136e-01 3.60969782e-01\\n1.28469169e-01 3.71311791e-02 6.97689727e-02 -3.67727041e-01\\n4.52716887e-01 1.69058323e-01 2.35524848e-01 2.16950893e-01\\n1.09465197e-01 5.56912363e-01 6.39542341e-02 1.59667078e-02\\n-1.42778486e-01 -5.47087640e-02 -2.51594692e-01 -2.45271802e-01\\n1.56751052e-02 -2.94680744e-01 -8.09413120e-02 4.02674198e-01\\n1.28824353e-01 -2.93660402e-01 -2.18146637e-01 2.78625727e-01\\n5.52773476e-02 -2.23346204e-01 -2.08730370e-01 1.93362474e-01\\n3.04248154e-01 9.46478546e-02 2.81250775e-01 -3.82710069e-01\\n-7.38215744e-02 -8.45693890e-03 -1.77632898e-01 5.56947589e-01\\n1.35574698e-01 1.91329286e-01 -1.47024229e-01 -3.18406701e-01\\n4.71808642e-01 -3.17078114e-01 -1.11251689e-01 -4.95895334e-02\\n6.71581030e-02 -1.51965797e-01 -4.38187629e-01 8.32440890e-03\\n6.22140244e-02 -2.49412596e-01 -7.76134152e-03 -7.77934045e-02\\n1.92667738e-01 -6.50997460e-02 -4.96636838e-01 -3.38285476e-01\\n-3.07087183e-01 -7.72012919e-02 1.01271346e-01 -3.33471388e-01\\n1.22377902e-01 -1.39897943e-01 -6.57892168e-01 3.55121881e-01\\n-3.81078839e-01 4.40483652e-02 1.71394244e-01 2.30508551e-01\\n-3.17160189e-01 -1.72561422e-01 1.40755370e-01 2.88247287e-01\\n-2.44927764e-01 -2.15423509e-01 2.13999376e-02 -9.42028344e-01\\n9.42409560e-02 1.12232469e-01 4.93034720e-02 1.13276236e-01\\n1.76892001e-02 -6.78622544e-01 9.10845678e-03 -3.45193356e-01\\n7.16942828e-03 6.26908988e-02 -1.19431667e-01 -4.31187004e-01\\n1.31507680e-01 -2.20978949e-02 -2.27522150e-01 5.46937704e-01\\n-4.37410682e-01 2.49749586e-01 8.13524872e-02 6.33123666e-02\\n-2.54239962e-02 -3.12331378e-01 2.55327940e-01 -3.27183366e-01\\n-3.80097985e-01 -1.98244587e-01 -4.14886475e-01 -2.46360943e-01\\n7.37966523e-02 -3.50707769e-01 -1.55214086e-01 3.05523127e-02\\n3.41487914e-01 1.33365273e-01 -4.59644496e-02 -3.54491025e-01\\n6.64303452e-02 -5.13485193e-01 2.12670580e-01 -1.79662958e-01\\n-5.49814366e-02 -8.18276182e-02 1.04853325e-01 -1.53965428e-02\\n-4.22927327e-02 -2.46929765e-01 4.28736448e-01 -2.61655420e-01\\n-3.16984773e-01 -7.76130408e-02 2.35438775e-02 -2.89229900e-02\\n3.74388337e-01 -4.41389441e-01 5.61160780e-02 2.15472475e-01\\n1.01974204e-01 9.74785388e-02 1.77072063e-01 -5.50971963e-02\\n-1.71229411e-02 3.66843849e-01 -4.03665066e-01 1.71222448e-01\\n7.72879958e-01 1.10052019e-01 1.75228253e-01 1.33410051e-01\\n2.96199054e-01 2.62107670e-01 4.83521521e-01 7.08788186e-02\\n-1.00040026e-02 3.32884133e-01 -2.08763089e-02 -4.07036364e-01\\n-7.40661025e-02 -2.14393348e-01 -2.39744127e-01 -4.52552140e-01\\n5.58019459e-01 4.70275819e-01 -3.46059859e-01 -2.16618299e-01\\n-3.47116813e-02 -6.50407299e-02 2.23237917e-01 -1.35597959e-01\\n-5.98178022e-02 -1.53355300e-01 5.06355405e-01 1.00932270e-01\\n3.05029511e-01 5.33264339e-01 -1.71253711e-01 -3.97520751e-01\\n-9.18749422e-02 1.59174070e-01 1.13648698e-01 3.88655096e-01\\n-8.14059004e-02 2.91913539e-01 -7.31543005e-02 1.69629723e-01\\n-3.56875956e-02 1.72448888e-01 1.38775945e-01 3.55037302e-02\\n2.05852270e-01 8.90005454e-02 1.91254079e-01 4.69349653e-01\\n2.03432903e-01 5.33900201e-01 3.01824301e-01 1.07106768e-01\\n3.03169817e-01 6.24656439e-01 3.83771598e-01 2.38275841e-01\\n-6.55042082e-02 9.51227099e-02 -5.64756207e-02 -1.47325441e-01\\n2.61510521e-01 3.44324619e-01 2.85252452e-01 9.00778592e-01\\n4.15358901e-01 2.40412816e-01 6.47011340e-01 -6.87209189e-01\\n-5.45796454e-01 -3.10212299e-02 4.12527412e-01 -3.32838863e-01\\n-1.98096886e-01 7.54174218e-02 -3.22513700e-01 2.27216333e-01\\n-4.72523570e-01 -1.39684722e-01 3.25777307e-02 -1.91801731e-02\\n8.55811164e-02 -1.48772513e-02 -1.30849838e-01 9.36722085e-02\\n-2.58172303e-01 -1.96207657e-01 -3.33872497e-01 2.51356289e-02\\n-2.98594952e-01 -1.47525907e-01 -9.91603583e-02 -1.30799070e-01\\n-1.48786873e-01 -4.45343912e-01 -1.40166789e-01 5.13993986e-02\\n3.65583539e-01 -1.67331591e-01 -4.03164811e-02 -1.87791273e-01\\n6.05205409e-02 3.06825429e-01 5.33544123e-01 2.85932776e-02\\n1.61482319e-01 -1.56927541e-01 -2.98925489e-01 -2.60578152e-02\\n1.05298422e-01 -2.02528425e-02 4.29035947e-02 4.04046923e-01\\n-3.57976645e-01 4.83534038e-02 1.49896696e-01 3.09991986e-01\\n-4.17110503e-01 -7.67792389e-02 -6.01658486e-02 2.98036575e-01\\n1.95033014e-01 1.95551425e-01 -2.43445098e-01 1.79031640e-01\\n-1.64461389e-01 -5.10943413e-01 4.05780405e-01 -3.20384175e-01\\n-8.28288272e-02 1.94541678e-01 2.44015619e-01 1.43040106e-01\\n-3.06002349e-01 3.64518389e-02 3.75650562e-02 3.18242967e-01\\n8.25231671e-02 3.89071971e-01 -3.78574401e-01 -1.65361837e-01\\n-2.86702842e-01 1.76596239e-01 -2.02760860e-01 1.93664253e-01\\n-1.27851710e-01 2.62336522e-01 1.10623665e-01 8.00899342e-02\\n2.42279559e-01 5.33821434e-03 -2.02188060e-01 -1.83732197e-01\\n-3.14817011e-01 -2.74801016e-01 7.21751079e-02 -4.74980585e-02\\n1.92906916e-01 -3.43351245e-01 -1.51936695e-01 -2.95777172e-02\\n-2.24784166e-01 -4.30074722e-01 -6.94972426e-02 -1.45534292e-01]]',\n", + " 'Über unseren Kunden Our client combines academic and practical knowhow to a unique Big Data service offering for their customers. Ihr Aufgabenbereich Build, scale and maintain solutions based on Hadoop and/or other NoSQL systems Write and tune complex near-real-time and batch data pipelines with Spark or Java MapReduce Explore available technologies to provide business support to the clients Work closely with customers and other stakeholders in an agile environment Ihr Profil Bachelor or Master in Computer Science / Information Management or related field Proficient in OOP (Java) and FP (Scala, Clojure), willing to learn new programing languages Experience in Big Data technologies (Hadoop, Spark, Kafka, HBase) Knowledge of real-time processing systems like Storm, Spark Streaming or others Knowledge and experience in agile software development Superb problem-solving skills You are a proactive team player with the ability to work independently and accurately in interdisciplinary projects Knowledge of data structures and algorithms for Big Data, Machine Learning is a plus Very good skills in German and English, French would be an asset Ihre Chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung Sprachen: Deutsch Englisch Französisch Job ID: 2052',\n", + " '[\"Proactivity\", \"Problem Solving\"]',\n", + " '[\"Business Support Systems\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Spark Streaming\", \"Scale (Map)\", \"Scala (Programming Language)\", \"MapReduce\", \"Maintainability\", \"Real Time Systems\", \"Transaction Processing Systems\", \"Machine Learning Methods\", \"Agile Software Development\", \"Real Time Payments\", \"Clojure\", \"Project-Based Solutions\", \"Information Management\", \"Big Data\", \"Data Structures\", \"Software Development\", \"Algorithms\", \"Apache HBase\", \"Amazon Data Pipeline\", \"Writing Systems\", \"Java (Programming Language)\", \"Extended Data Services\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English']\"],\n", + " ['84',\n", + " 'data scientist',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.91686648e-01 2.04061642e-01 4.32900786e-01 5.80541231e-03\\n5.18044472e-01 -4.35516611e-02 6.88831061e-02 3.14570218e-01\\n-2.31416989e-02 -1.06871881e-01 -2.13608995e-01 -3.15169513e-01\\n-2.04013705e-01 4.33192477e-02 2.12641582e-01 4.68771964e-01\\n2.06029788e-01 4.64090845e-03 -2.33336136e-01 3.54226083e-01\\n8.34875479e-02 1.16545513e-01 -8.03779885e-02 6.66175187e-01\\n4.59694654e-01 7.73728266e-02 -9.30137709e-02 -6.06686398e-02\\n-4.31178957e-01 -1.22906849e-01 3.92261207e-01 3.61385271e-02\\n-9.46454480e-02 -3.26138735e-01 2.11242456e-02 1.10569127e-01\\n-2.47097641e-01 -1.50502831e-01 1.68206654e-02 2.04309180e-01\\n-3.79395932e-01 -3.12247723e-01 6.52576089e-02 1.26953319e-01\\n-2.43624642e-01 -2.30153948e-01 -9.27058533e-02 2.55104769e-02\\n-1.03222162e-01 1.84942279e-02 -6.65568054e-01 4.08408523e-01\\n-1.04728453e-02 -2.32192174e-01 2.04855323e-01 5.86999357e-01\\n-3.99021171e-02 -6.51836574e-01 -1.44396707e-01 -3.63383561e-01\\n9.07827243e-02 -1.54940471e-01 1.95662662e-01 -1.43888503e-01\\n2.62164503e-01 -2.54363287e-02 -9.81821939e-02 4.06078011e-01\\n-6.90876722e-01 -2.91096240e-01 -2.70085990e-01 2.83177420e-02\\n-4.25305545e-01 2.47034803e-01 -2.70958364e-01 -1.99569121e-01\\n-7.19892373e-03 3.57395053e-01 -7.33129233e-02 1.79655209e-01\\n-1.30498648e-01 2.68183112e-01 5.49143404e-02 1.56695530e-01\\n3.29132676e-01 1.70341834e-01 6.99401200e-02 3.04478884e-01\\n-4.62187618e-01 3.90775949e-01 2.11236048e-02 -2.53589392e-01\\n7.53163546e-02 7.59304240e-02 5.08834243e-01 1.42248869e-01\\n-3.88880493e-03 1.46473348e-01 -1.14827834e-01 2.20470622e-01\\n1.56753615e-01 -3.96738827e-01 1.68205366e-01 -1.48392871e-01\\n-3.07249308e-01 9.56062824e-02 -5.15857749e-02 1.48669571e-01\\n-3.95480365e-01 3.60392392e-01 3.44294488e-01 -1.48743823e-01\\n4.47677597e-02 -7.07802296e-01 -6.16617687e-03 -1.08273730e-01\\n-3.29244770e-02 2.66690195e-01 3.53786469e-01 1.39948636e-01\\n3.35522771e-01 -2.40337998e-02 3.09950709e-01 9.22345698e-01\\n1.06312841e-01 -6.31182119e-02 -2.80792922e-01 3.81584108e-01\\n1.77828118e-01 -1.56814650e-01 1.29394233e-01 3.10392052e-01\\n1.79872289e-01 -1.06019974e-02 -3.41209352e-01 1.85541242e-01\\n-2.57802755e-01 -2.52250612e-01 -2.50154316e-01 6.68606237e-02\\n-3.00160915e-01 -5.20796239e-01 4.69825923e-01 2.89042899e-03\\n1.94604620e-01 -2.91163594e-01 4.07283343e-02 -2.49617416e-02\\n9.56173986e-02 3.98653984e-01 2.79094782e-02 2.17068866e-01\\n-3.32155615e-01 -2.23185718e-01 -9.21046361e-02 4.37520176e-01\\n-1.27507046e-01 8.61564875e-02 -4.25243825e-02 -1.88912332e-01\\n2.21561462e-01 1.54933020e-01 -4.68802392e-01 8.78279582e-02\\n-7.37207234e-02 -5.42537093e-01 -1.70441732e-01 2.29685605e-01\\n-1.14009015e-01 1.72813907e-01 6.27578199e-02 -4.33599025e-01\\n4.43504423e-01 2.13964894e-01 3.21540713e-01 -1.51990175e-01\\n3.53876829e-01 -2.53861398e-01 3.90937448e-01 9.04271677e-02\\n-5.72262168e-01 2.86348790e-01 -4.35030013e-02 -2.74785340e-01\\n5.26457578e-02 9.81169194e-02 4.16561067e-01 -3.90926689e-01\\n7.44875073e-02 -1.22140825e-01 -5.08401811e-01 -4.69216824e-01\\n-2.30852485e-01 -1.41185215e-02 3.27836186e-01 -2.72792906e-01\\n-1.21926583e-01 1.26300439e-01 -4.60910052e-01 -1.87993661e-01\\n1.98193178e-01 1.49658859e-01 -5.78675941e-02 1.21580981e-01\\n-1.14804476e-01 -5.86582541e-01 -7.11060837e-02 -4.94487405e-01\\n-5.88183165e-01 6.78510685e-03 -1.46117225e-01 1.84540823e-01\\n-4.49923463e-02 6.83041364e-02 -1.15771160e-01 9.27980244e-02\\n-3.67254108e-01 8.01892281e-02 8.07137415e-02 1.34678900e-01\\n2.40965366e-01 -3.53384875e-02 -3.95915896e-01 5.52297473e-01\\n-1.36895254e-01 7.23371267e-01 1.95815772e-01 -7.41342068e-01\\n6.38919592e-01 2.20288649e-01 1.21694058e-01 -3.34901065e-01\\n4.34764653e-01 -4.39412773e-01 1.34969741e-01 1.38143837e-01\\n-1.92996383e-01 -1.85268894e-01 3.54556441e-01 -2.34328449e-01\\n-2.26210520e-01 6.41136110e-01 2.31571779e-01 -4.68387939e-02\\n2.65198618e-01 -3.25872600e-01 -7.42147639e-02 2.10727658e-02\\n-1.24358773e-01 -2.64939845e-01 -3.25193048e-01 2.36042559e-01\\n2.05413494e-02 -4.78125781e-01 -1.34334296e-01 -3.00024182e-01\\n-2.20172137e-01 -3.30865502e-01 -1.60069898e-01 4.58098292e-01\\n2.76281744e-01 6.51849508e-02 1.63065001e-01 -1.41635284e-01\\n3.59781235e-02 -5.04790545e-01 -7.63145015e-02 6.02018833e-02\\n4.72447187e-01 2.22790226e-01 1.42201856e-01 -3.78096811e-02\\n-1.62803754e-01 5.66866040e-01 -2.81950563e-01 -3.03432107e-01\\n7.97862262e-02 1.26851588e-01 -1.34955049e-01 -8.98523182e-02\\n2.16015540e-02 3.30069751e-01 -1.12245493e-01 1.98037133e-01\\n-1.73597977e-01 5.31428717e-02 3.97042304e-01 5.46354742e-04\\n-6.91757128e-02 -9.93821844e-02 2.34444849e-02 4.30463403e-01\\n-4.51289505e-01 -2.72068530e-01 5.25003254e-01 2.51450390e-01\\n1.47409484e-01 1.89006016e-01 2.93197662e-01 -1.90295175e-01\\n-1.99855283e-01 -3.15547258e-01 1.98901683e-01 1.13358460e-01\\n-7.48423561e-02 6.57600686e-02 -1.22415893e-01 -5.27231753e-01\\n-3.09559941e+00 -1.15185134e-01 8.34255666e-02 -2.94988632e-01\\n1.26817331e-01 -5.58995754e-02 -9.95766968e-02 1.78745668e-02\\n-3.18785220e-01 1.68545768e-01 -1.95996329e-01 -1.77107424e-01\\n-3.22351940e-02 2.67682254e-01 2.70675067e-02 6.31248206e-02\\n6.36800081e-02 -1.29271969e-01 -6.45667613e-02 3.60034555e-01\\n-1.04455441e-01 -7.07329273e-01 1.27839133e-01 9.89936143e-02\\n1.60704896e-01 1.39445588e-01 -3.79342139e-01 -2.20478594e-01\\n-2.47751176e-01 -2.63370812e-01 1.02236338e-01 -3.67218524e-01\\n-2.26745471e-01 5.52684784e-01 1.89995721e-01 1.23770475e-01\\n-2.57424414e-02 -3.64202052e-01 5.16005047e-02 -3.72083664e-01\\n4.92196679e-02 -6.75677419e-01 -2.24536229e-02 -6.73445463e-02\\n7.37730682e-01 -3.14650893e-01 2.38339290e-01 1.16855979e-01\\n1.99528173e-01 1.91732794e-01 -9.02530476e-02 -3.59763354e-02\\n-3.00475210e-01 -3.57758582e-01 -3.88732441e-02 -1.25933304e-01\\n1.98664621e-01 5.35580575e-01 -1.26230106e-01 9.72895473e-02\\n1.66875422e-01 -3.12311232e-01 -3.78897369e-01 -4.96209085e-01\\n-3.85520071e-01 -3.04649651e-01 -7.95602918e-01 -4.55968976e-01\\n6.41787574e-02 -2.38715727e-02 -2.03945309e-01 6.33700073e-01\\n-2.67338723e-01 -3.09815854e-01 3.13259922e-02 -5.72830915e-01\\n8.76204297e-02 -3.82605910e-01 7.02480972e-02 -5.17662093e-02\\n-2.30191305e-01 -4.76210207e-01 2.21614793e-01 -4.52983044e-02\\n-8.74392986e-02 -5.20487204e-02 -1.32195219e-01 -3.47441792e-01\\n-3.51087242e-01 -4.01318222e-01 4.83230531e-01 1.67956620e-01\\n3.45731348e-01 1.77679092e-01 3.14586937e-01 1.78574964e-01\\n2.28793174e-01 -1.79718718e-01 1.02619573e-01 -2.74181455e-01\\n1.50165260e-01 7.03793615e-02 6.06749535e-01 -2.58435279e-01\\n2.18768328e-01 7.18174875e-02 -2.40116552e-01 2.39831414e-02\\n3.87367308e-01 1.04221758e-02 -1.10561617e-01 1.06923759e-01\\n3.44872296e-01 -7.11534023e-01 -2.85245121e-01 1.62486106e-01\\n1.03101274e-02 6.29650652e-01 1.19856186e-01 -3.50648224e-01\\n-3.50287288e-01 3.50472361e-01 -1.14624739e-01 -2.77999461e-01\\n-2.41299435e-01 2.00297326e-01 -3.36781219e-02 2.01471657e-01\\n-8.62081870e-02 -2.59894907e-01 -3.28894407e-01 -1.00058675e-01\\n-1.76600572e-02 1.67612225e-01 2.25826800e-01 -2.74837622e-03\\n-1.15479641e-01 -2.98116982e-01 -2.16345146e-01 1.26768455e-01\\n4.86808360e-01 2.68854707e-01 1.05064958e-01 -2.23249957e-01\\n-6.88995793e-02 2.34800488e-01 -9.46756452e-02 2.06882849e-01\\n-1.13547988e-01 2.16431692e-02 -4.87001568e-01 -2.74139404e-01\\n-7.26620257e-02 -2.69470245e-01 1.67877689e-01 4.22688961e-01\\n2.02724263e-01 1.23987952e-02 1.65575430e-01 -4.72110569e-01\\n5.43054283e-01 3.25886011e-02 2.37037271e-01 9.31065083e-02\\n-1.38055921e-01 5.86927772e-01 -2.53712311e-02 7.49213919e-02\\n-3.06381006e-02 -2.15650886e-01 -3.27455670e-01 -2.30519980e-01\\n7.34299496e-02 -1.59435898e-01 -6.76190332e-02 4.90209043e-01\\n8.61545354e-02 -3.16816658e-01 -1.40562698e-01 2.92161793e-01\\n7.88714513e-02 -3.43418807e-01 -2.03560680e-01 2.06449088e-02\\n3.21168929e-01 1.94228709e-01 2.89532244e-01 -3.93969625e-01\\n-1.63746029e-01 1.33334100e-02 -1.36937410e-01 4.68767136e-01\\n1.50372535e-01 4.56012189e-02 -1.45879835e-01 -2.96538979e-01\\n4.93033051e-01 -3.20778310e-01 -1.61193863e-01 1.33040011e-01\\n9.44858417e-02 -1.56003058e-01 -5.19017041e-01 -1.38598129e-01\\n3.73046286e-03 -3.13572586e-01 7.54157901e-02 -3.96254249e-02\\n7.04898387e-02 -1.04615487e-01 -4.65436101e-01 -1.98056504e-01\\n-2.42939785e-01 -1.61022365e-01 2.72263400e-02 -3.25940460e-01\\n-6.75823689e-02 -1.42018273e-01 -5.76319933e-01 2.35365167e-01\\n-2.95892686e-01 3.27474661e-02 1.46657616e-01 1.56496599e-01\\n-3.91837656e-01 -2.18247637e-01 4.59922403e-02 1.58302888e-01\\n-2.15325177e-01 -9.29694772e-02 4.32322398e-02 -1.05566096e+00\\n6.74600303e-02 9.57051888e-02 4.38620970e-02 -1.37444250e-02\\n5.82143925e-02 -4.75047231e-01 9.01588053e-02 -4.09445524e-01\\n1.78429082e-01 1.43065438e-01 -1.89526349e-01 -3.32361102e-01\\n2.36770779e-01 -9.77622718e-03 -1.90614969e-01 4.00422871e-01\\n-4.33595836e-01 2.24015430e-01 1.00988053e-01 2.49428526e-02\\n-1.31894322e-02 -2.22912118e-01 1.54108465e-01 -2.20984921e-01\\n-3.87277067e-01 -7.69300833e-02 -3.49794298e-01 -1.46556661e-01\\n5.36721461e-02 -1.79340631e-01 -1.82234108e-01 -2.12534494e-03\\n2.67346382e-01 1.74136102e-01 -8.22721422e-02 -2.09856361e-01\\n1.65601522e-01 -4.61291492e-01 1.79181471e-01 -2.80783921e-01\\n-7.81702548e-02 -8.81757289e-02 1.14850618e-01 -2.13391781e-02\\n-4.90123481e-02 -1.90039948e-01 4.20607239e-01 -4.21165496e-01\\n-4.26618218e-01 -1.46922663e-01 6.75674528e-02 -6.57596514e-02\\n1.99816599e-01 -5.05904078e-01 9.24960896e-02 1.79652214e-01\\n-1.23600625e-02 5.12330867e-02 3.10125351e-01 1.73377208e-02\\n-7.69033805e-02 2.12042525e-01 -4.49290246e-01 1.49462000e-01\\n7.97258973e-01 2.44524360e-01 1.03667662e-01 1.47585422e-01\\n3.19616884e-01 1.93922266e-01 4.80840445e-01 2.74203829e-02\\n-6.48033759e-03 3.03565234e-01 2.05989815e-02 -5.44946373e-01\\n-1.35170072e-01 -2.17022493e-01 -2.81841010e-01 -3.52884531e-01\\n5.24826765e-01 3.64471138e-01 -2.89452016e-01 -2.52792299e-01\\n4.29466888e-02 -3.98050807e-03 3.09857309e-01 -9.07611772e-02\\n-1.62053388e-02 4.23711911e-03 6.46601498e-01 -4.12539020e-02\\n2.83709884e-01 5.23165226e-01 -1.53776795e-01 -3.81389380e-01\\n-2.21663475e-01 2.19195157e-01 2.47132704e-01 4.67390478e-01\\n-1.41480789e-01 2.21952155e-01 6.55875681e-03 8.12674686e-02\\n1.22969672e-02 5.68068214e-02 1.13815844e-01 1.14773445e-01\\n1.92382187e-01 8.23568106e-02 9.49330479e-02 4.14008975e-01\\n5.60235269e-02 5.41974485e-01 2.57521600e-01 1.12128057e-01\\n2.22433060e-01 6.99137092e-01 2.99825996e-01 2.41511628e-01\\n-2.20777504e-02 1.94488913e-01 -6.79388791e-02 -5.71528152e-02\\n3.13189805e-01 1.79291338e-01 2.53783673e-01 8.21816862e-01\\n4.30064529e-01 4.26190197e-01 6.28211617e-01 -7.05857992e-01\\n-5.40140808e-01 -2.42070891e-02 4.85594153e-01 -4.06843603e-01\\n-8.49680305e-02 7.87440091e-02 -1.83871135e-01 4.23936516e-01\\n-5.04320562e-01 -1.52203068e-01 8.90779197e-02 -1.97354853e-01\\n9.27238986e-02 1.12863235e-01 -2.46302843e-01 1.06928006e-01\\n-3.24640989e-01 -2.52708167e-01 -1.78537622e-01 -1.82979271e-01\\n-2.94684291e-01 7.05610821e-03 -2.19192028e-01 -6.02630153e-02\\n-1.73061714e-01 -2.81221062e-01 -5.15223891e-02 9.77224186e-02\\n3.45926851e-01 -1.70974880e-01 -5.85893318e-02 -8.38431567e-02\\n3.22858468e-02 3.04626942e-01 5.61742485e-01 -2.06052825e-01\\n1.91823915e-01 -2.77284253e-02 -3.05221140e-01 -4.42805402e-02\\n8.79964232e-02 -2.45617349e-02 6.70327097e-02 5.06610870e-01\\n-3.83912235e-01 -9.10310447e-02 1.72058523e-01 2.16033608e-01\\n-3.52536142e-01 -1.22531824e-01 -7.99581185e-02 2.29155853e-01\\n5.28882556e-02 1.27549261e-01 -4.40746605e-01 6.87479153e-02\\n-2.03659371e-01 -5.89218378e-01 3.70585591e-01 -3.16344202e-01\\n-6.58534691e-02 3.46906602e-01 3.73105437e-01 7.74152949e-02\\n-3.17093253e-01 1.34946406e-01 -4.19319198e-02 3.90964121e-01\\n2.11893208e-02 3.65439743e-01 -2.65085846e-01 -2.08954737e-01\\n-1.74587041e-01 2.98991859e-01 -1.84180886e-01 3.04837316e-01\\n-1.71879321e-01 2.79030085e-01 1.64251611e-01 -2.80765109e-02\\n1.37629569e-01 3.68232317e-02 -2.77507752e-01 -2.47004271e-01\\n-2.96162635e-01 -3.46491158e-01 1.46319360e-01 4.40414101e-02\\n1.67378008e-01 -3.22934538e-01 -1.03864007e-01 -2.76259840e-01\\n-1.69470996e-01 -3.75530303e-01 -1.91596404e-01 1.57630280e-01]]',\n", + " 'Über unseren Kunden Unser Kunde ist einer der führenden Bankunternehmen der Schweiz Ihr Aufgabenbereich Sourcing and transformation of both structured and unstructured distributed client data coming from relational database systems using SQL or streaming data feeds using APIs; Application of advanced statistical methods, data mining, machine learning, deep learning or reinforcement learning, where applicable, to build and deploy models aiming at an improved client communication and truly personalized client experience / advice; Turning data analysis results into business insights & actions by using effective communication to various business stakeholders. Ihr Profil a degree in a technical field (Computer Science, Statistics, Mathematics, Physics, Engineering or similar) or equivalent practical experience; experience in Machine Learning / Artificial Intelligence, Data Mining, Natural Language Understanding or Algorithmic Foundations of Optimization; experience in processing data from relational databases using SQL; experience in visualizing data analysis results in an effective, applicable manner; programming experience and proficiency in one or more of the following: Python, R, Julia, Scala, Java, C/C++ (preferable, not required: understanding of object oriented design, programming and analysis); (preferable, not required) experience with learning frameworks/tools (TensorFlow, PyTorch, Caffe, MXNet, H2O, Deeplearning4j, Microsoft Cognitive Toolkit, MLlib, CUDA) and/or ‘Big Data’ analyses involving Apache Spark, Hadoop, Mesos or Kubernetes, and/or distributions such as Hortonworks; ability to explain complex models to both technical and non-technical stakeholders; basic knowledge about core banking products (functional, usage, target groups). Ihre Chance Schicken Sie Ihre Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: JAVA Entwicklung C# / C++ / C SQL Sprachen: Job ID: 7055',\n", + " '[\"Communications\", \"Sourcing\"]',\n", + " '[\"Apache Spark\", \"Julia (Programming Language)\", \"Tooling\", \"Programming (Music)\", \"Apache MXNet\", \"Statistical Methods\", \"Computer Science\", \"Data Streaming\", \"Machine Learning\", \"Nvidia CUDA\", \"Mathematical Statistics\", \"Production Function\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Data Feed\", \"Data Visualization\", \"Natural Language Understanding\", \"Mathematical Physics\", \"TARGET 3001!\", \"C (Programming Language)\", \"C# (Programming Language)\", \"Personalization\", \"R (Programming Language)\", \"Caffe\", \"Artificial Intelligence\", \"Object-Oriented Design\", \"Electronic Data Processing\", \"Deep Learning\", \"Survey Data Analysis\", \"Java Data Mining\", \"TensorFlow\", \"Big Data\", \"Database Systems\", \"Transformation (Genetics)\", \"Microsoft Cognitive Toolkit (CNTK)\", \"Banking\", \"Relational Databases\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Java (Programming Language)\", \"Reinforcement Learning\", \"SQL (Programming Language)\", \"Data Analysis\", \"Apache Mesos\"]',\n", + " \"['English', 'Limburger', 'Shona', 'Southern Sotho', 'Xhosa']\"],\n", + " ['84',\n", + " 'software engineer – full stack java developer (m/f)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.38020450e-01 2.89252847e-01 5.50936282e-01 -1.30269632e-01\\n6.12978935e-01 -8.19544271e-02 5.71732745e-02 3.72604609e-01\\n-1.01555577e-02 -2.83596218e-01 -1.40971750e-01 -3.23409617e-01\\n-3.14746574e-02 7.91962594e-02 1.81828246e-01 3.82863671e-01\\n1.36100456e-01 1.24225371e-01 -2.51341254e-01 2.05138013e-01\\n2.22766399e-01 3.69416066e-02 6.50205761e-02 6.44660056e-01\\n4.77383882e-01 4.81395796e-02 -8.17026719e-02 -5.71360067e-02\\n-3.49323899e-01 -2.90569216e-01 3.19683284e-01 -7.50034377e-02\\n-7.97010437e-02 -3.43942076e-01 -6.57866258e-05 6.16875663e-02\\n-2.29268506e-01 -1.57014519e-01 1.21674597e-01 2.21074298e-01\\n-4.57505256e-01 -3.14544857e-01 1.12679780e-01 1.93631779e-02\\n-1.70714349e-01 -2.40523934e-01 -8.86114612e-02 5.60749099e-02\\n7.20198750e-02 1.52499955e-02 -5.93267560e-01 3.58435810e-01\\n-1.65146336e-01 -1.77558690e-01 2.21322000e-01 6.25901818e-01\\n2.21056938e-02 -5.38928628e-01 -3.00852805e-01 -1.58400357e-01\\n1.26864061e-01 -5.99948466e-02 1.11612581e-01 -9.25844088e-02\\n3.34102780e-01 -1.37619432e-02 -1.06739715e-01 5.10814607e-01\\n-6.92016065e-01 -1.40844852e-01 -1.97262257e-01 -4.78972308e-02\\n-3.65765244e-01 4.41076234e-02 -1.77011207e-01 -1.83325410e-01\\n-1.10413872e-01 3.79701436e-01 8.56751204e-02 8.75183269e-02\\n-1.45346746e-01 2.47045785e-01 -5.86439371e-02 1.37468889e-01\\n3.10909122e-01 1.98889345e-01 1.72130585e-01 2.82537401e-01\\n-4.18444604e-01 3.42172325e-01 1.52799442e-01 -2.70126998e-01\\n1.99976727e-01 4.22309972e-02 4.70033348e-01 1.59599587e-01\\n-1.28056884e-01 1.97013989e-01 -1.58288538e-01 1.88701764e-01\\n2.81195015e-01 -2.75208771e-01 7.48789161e-02 5.58504313e-02\\n-2.01686770e-01 8.37526657e-03 -1.09921299e-01 3.29367876e-01\\n-2.90000677e-01 3.18743885e-01 3.01654547e-01 -1.13300286e-01\\n-8.77433270e-02 -6.64337516e-01 -9.70620513e-02 -1.85516838e-04\\n-2.09898055e-02 2.75159985e-01 3.50670427e-01 1.68694675e-01\\n1.86507478e-01 7.00895265e-02 2.44398564e-01 9.76149261e-01\\n1.92380685e-03 9.88360569e-02 -3.35690439e-01 3.56263638e-01\\n1.67176902e-01 -1.47717237e-01 1.53779745e-01 2.82772154e-01\\n5.43613359e-02 -6.97367936e-02 -9.91211683e-02 2.81315118e-01\\n-1.10305935e-01 -2.03170463e-01 -2.97168553e-01 1.00079319e-02\\n-3.55954051e-01 -2.92480677e-01 4.04611081e-01 1.52087316e-01\\n1.52592465e-01 -1.32529885e-01 -3.47781964e-02 -9.05324072e-02\\n-3.80969383e-02 4.63801235e-01 -5.51058911e-02 9.66308117e-02\\n-3.24663430e-01 -1.34776920e-01 -2.63138443e-01 3.39556366e-01\\n2.93166302e-02 2.77217720e-02 -2.56409366e-02 -9.49944779e-02\\n2.62268662e-01 1.05040252e-01 -3.00486475e-01 2.65005440e-01\\n2.03071535e-02 -3.78961802e-01 -2.18933553e-01 8.99778381e-02\\n-4.39079851e-02 6.25727326e-02 -8.24522134e-03 -4.00816560e-01\\n5.02790451e-01 1.50370613e-01 2.65438437e-01 -5.51680215e-02\\n2.77819335e-01 -3.14357042e-01 1.85936734e-01 1.34428054e-01\\n-5.75830758e-01 4.72359717e-01 -7.66385794e-02 -4.62857261e-02\\n-8.07601213e-03 9.18425620e-02 2.85387009e-01 -3.00662011e-01\\n4.30009589e-02 -1.23459332e-01 -3.70249748e-01 -4.44266140e-01\\n-2.42830873e-01 -4.30059172e-02 3.79342973e-01 -3.16577703e-01\\n-2.45095313e-01 1.59768596e-01 -4.31715161e-01 -2.09588334e-02\\n2.31050819e-01 8.41777772e-02 4.63253111e-02 6.70099854e-02\\n-1.96656346e-01 -4.68193501e-01 6.35992810e-02 -4.62202936e-01\\n-4.72822964e-01 2.01036185e-02 -1.33874133e-01 2.27562383e-01\\n4.64889174e-03 2.14723032e-02 -1.35936961e-01 1.53460860e-01\\n-2.88668931e-01 -1.71842519e-03 1.67433813e-01 1.95620060e-01\\n3.51910174e-01 -5.94950803e-02 -4.60408956e-01 4.08402652e-01\\n-2.20206290e-01 6.26231492e-01 2.14929655e-01 -8.86515319e-01\\n5.28552055e-01 2.28554472e-01 1.93027526e-01 -3.16511899e-01\\n5.78254580e-01 -3.11755955e-01 9.27779451e-02 1.54366255e-01\\n-2.71233976e-01 -1.94316059e-01 2.91994870e-01 -1.51084125e-01\\n-1.91353559e-01 6.21547043e-01 2.17407599e-01 -9.14107189e-02\\n2.34955773e-01 -2.88192898e-01 -8.78031775e-02 -2.75330115e-02\\n-9.50687677e-02 -2.10383937e-01 -2.65386373e-01 3.16576138e-02\\n-1.00774676e-01 -5.51855624e-01 -1.62710950e-01 -3.50965858e-01\\n-1.95501700e-01 -3.39059561e-01 -2.14682370e-01 4.42352951e-01\\n1.54243261e-01 4.29301374e-02 2.02507690e-01 1.44880516e-02\\n-8.83691460e-02 -4.96162862e-01 -1.59177035e-01 1.58905014e-01\\n4.77563828e-01 1.98162287e-01 1.08159751e-01 7.55139887e-02\\n-1.17749952e-01 4.81403738e-01 -1.87761173e-01 -2.59304792e-01\\n2.79184096e-02 1.78507432e-01 5.60347699e-02 -6.34062337e-04\\n-3.22487727e-02 3.08857769e-01 -1.69641554e-01 5.66251725e-02\\n-1.20917149e-01 8.68206024e-02 3.67467374e-01 8.29522163e-02\\n-2.21779063e-01 -1.41900405e-01 -2.14982461e-02 3.56089562e-01\\n-5.38258731e-01 -8.23074207e-02 5.42882860e-01 1.99035496e-01\\n1.48049146e-01 2.04901442e-01 2.06315845e-01 -7.74357393e-02\\n-2.19568953e-01 -2.29717135e-01 2.11249348e-02 1.82433113e-01\\n2.65084319e-02 -7.97534361e-02 -1.60047248e-01 -5.27031302e-01\\n-3.54178619e+00 -2.84901559e-01 1.38511434e-01 -3.77141625e-01\\n2.66091734e-01 -1.61941662e-01 3.50508019e-02 -4.56209332e-02\\n-2.60498703e-01 1.98321253e-01 -1.26741782e-01 -2.09564790e-01\\n1.85918793e-01 2.23036841e-01 -4.96789329e-02 3.86239737e-01\\n3.48385796e-02 -8.70032161e-02 -1.12861343e-01 2.36653149e-01\\n-1.76234245e-01 -6.99593663e-01 2.28095502e-01 -3.25627178e-02\\n2.24040374e-01 1.21776663e-01 -3.63060385e-01 -9.99307930e-02\\n-2.11064100e-01 -3.14668924e-01 8.01843628e-02 -3.25702131e-01\\n-1.03933245e-01 3.18474323e-01 9.80125517e-02 -8.81212205e-02\\n9.12363082e-02 -3.30125570e-01 -3.94337662e-02 -4.35465187e-01\\n1.10590704e-01 -6.15617812e-01 3.24216969e-02 -6.75836802e-02\\n7.63267577e-01 -4.59775120e-01 1.15445584e-01 1.85604662e-01\\n8.89748037e-02 2.28061393e-01 -8.58870000e-02 -7.81288221e-02\\n-2.05075026e-01 -3.31004113e-01 -2.39581540e-02 -2.22654447e-01\\n2.38349766e-01 5.83191991e-01 -1.46879256e-01 1.30760506e-01\\n7.04084113e-02 -2.82894731e-01 -3.51952612e-01 -4.48720038e-01\\n-1.92900524e-01 -2.12042451e-01 -7.14372218e-01 -3.52817953e-01\\n-2.63507478e-02 -1.27763420e-01 -2.23986119e-01 5.15876412e-01\\n-3.50340068e-01 -5.05989730e-01 3.27456780e-02 -4.80723232e-01\\n1.70539618e-01 -2.93665677e-01 1.12654055e-02 -1.21890225e-01\\n-3.82389784e-01 -3.94218206e-01 1.03041127e-01 -2.18628291e-02\\n-1.62893429e-01 -1.06765799e-01 -1.15785249e-01 -2.82497346e-01\\n-3.22430015e-01 -4.04749900e-01 4.86515909e-01 9.43618268e-02\\n3.42906654e-01 1.44595236e-01 2.50178367e-01 2.26239398e-01\\n2.27700219e-01 -2.86327422e-01 1.55903652e-01 -2.98213512e-01\\n8.98097605e-02 -6.50783554e-02 6.23444557e-01 -3.24934363e-01\\n2.44784385e-01 2.94484477e-02 -1.65272832e-01 -9.58171636e-02\\n4.27217513e-01 5.06709516e-02 -5.92720844e-02 -8.48875418e-02\\n3.08340430e-01 -5.63556671e-01 -2.87194073e-01 1.56728685e-01\\n-2.70848870e-02 5.61526060e-01 4.32400741e-02 -4.30436790e-01\\n-3.19916219e-01 4.05228764e-01 -1.55668736e-01 -3.17943841e-01\\n-2.48376131e-01 1.74195513e-01 -2.18273640e-01 2.07645729e-01\\n5.37468754e-02 -2.62315184e-01 -3.93784463e-01 -1.54407188e-01\\n3.67662124e-02 1.06552243e-01 2.84065425e-01 -1.28338067e-03\\n-1.05517050e-02 -2.82616377e-01 -1.75470859e-01 7.17858896e-02\\n3.25393707e-01 2.58180290e-01 2.06340641e-01 -1.98932976e-01\\n-2.50130780e-02 1.80420548e-01 -2.10632473e-01 1.36321381e-01\\n-2.50451237e-01 -4.11855653e-02 -4.22207087e-01 -4.31581616e-01\\n-1.77385402e-03 -2.87051439e-01 3.83492373e-02 3.00618708e-01\\n1.53480962e-01 1.05704344e-03 -4.22209734e-03 -4.89090115e-01\\n4.39332157e-01 -4.76558283e-02 2.43036523e-01 2.46567830e-01\\n6.78351000e-02 5.62839985e-01 3.25265005e-02 3.70239541e-02\\n-1.05156459e-01 -1.16570167e-01 -1.82399914e-01 -1.22748815e-01\\n-2.68969014e-02 -2.83407688e-01 -8.79672840e-02 4.69463587e-01\\n6.02037348e-02 -3.82131457e-01 -7.22853616e-02 2.86176860e-01\\n-5.75769786e-03 -1.82065234e-01 -1.39762893e-01 2.13512272e-01\\n2.61039108e-01 1.24260634e-01 3.30021769e-01 -4.70841229e-01\\n-1.41792908e-01 -1.62844155e-02 -1.22230940e-01 5.02285421e-01\\n1.52945101e-01 1.30606890e-01 -1.47797197e-01 -3.21403086e-01\\n4.32655990e-01 -1.13359578e-01 -1.38657540e-01 -2.77049895e-02\\n7.33215511e-02 -1.61464572e-01 -4.92186159e-01 -2.12933961e-03\\n2.45043039e-02 -2.11841419e-01 9.96652339e-03 -4.53871600e-02\\n1.83296740e-01 -4.92533743e-02 -4.47698474e-01 -3.66287172e-01\\n-2.59250969e-01 -3.34795490e-02 -5.90482056e-02 -3.13203156e-01\\n6.36998788e-02 -7.66855478e-02 -6.70806527e-01 3.07972938e-01\\n-3.21460545e-01 5.20851053e-02 5.89342564e-02 1.66582629e-01\\n-4.00910139e-01 -7.34523758e-02 2.07888693e-01 1.82939306e-01\\n-2.44174361e-01 -2.24472553e-01 1.03586391e-01 -8.82101655e-01\\n2.14485973e-02 -5.84667511e-02 4.45943736e-02 1.65245421e-02\\n1.21019013e-01 -4.58705485e-01 9.07473713e-02 -3.45605016e-01\\n1.72777269e-02 3.49135287e-02 -9.11911502e-02 -5.35429478e-01\\n1.54478639e-01 -1.87612772e-02 -1.72969714e-01 4.00750130e-01\\n-3.74087632e-01 2.72814661e-01 8.21048468e-02 5.22678643e-02\\n1.23135149e-02 -2.79991329e-01 2.20273837e-01 -2.73592830e-01\\n-4.19310778e-01 -2.50178427e-02 -4.32076931e-01 -1.83773890e-01\\n6.79792091e-02 -1.91945523e-01 -2.25047380e-01 4.83310893e-02\\n2.70755380e-01 1.79264903e-01 -9.16757509e-02 -1.81922391e-01\\n9.65546817e-02 -4.13502544e-01 1.43198624e-01 -2.28944674e-01\\n-6.36033807e-03 -1.20038107e-01 1.04245476e-01 -8.27134028e-02\\n-2.93544345e-02 -2.03951523e-01 5.26307523e-01 -1.93659887e-01\\n-3.62300992e-01 -5.81620485e-02 1.27072006e-01 6.64793253e-02\\n3.67500991e-01 -5.38610458e-01 9.27537307e-02 2.74419069e-01\\n6.41250163e-02 9.31206569e-02 2.74266213e-01 -8.19841772e-02\\n-1.69328630e-01 3.52548093e-01 -5.40599644e-01 2.51047313e-01\\n6.83496535e-01 1.49086371e-01 1.01109095e-01 1.65924579e-01\\n2.66905367e-01 2.78452963e-01 4.96260941e-01 8.16215277e-02\\n-6.46899343e-02 3.37262213e-01 -1.23044718e-02 -5.31052887e-01\\n-1.49271246e-02 -2.24097297e-01 -2.46348739e-01 -4.71074551e-01\\n5.32783747e-01 4.38686162e-01 -3.27105165e-01 -1.50508970e-01\\n-1.20658344e-02 -1.11432552e-01 1.29622698e-01 -1.81924134e-01\\n-1.33055234e-02 -1.01621732e-01 5.76984644e-01 -2.97110118e-02\\n4.50150192e-01 5.82568228e-01 -7.74706155e-02 -3.65792900e-01\\n-1.68011814e-01 7.37372637e-02 1.56098664e-01 3.56772333e-01\\n-4.81507145e-02 2.48289526e-01 -1.22198619e-01 1.91505447e-01\\n8.85055065e-02 2.59307865e-02 6.49932995e-02 6.00459240e-02\\n1.29552454e-01 1.85686871e-01 7.72312954e-02 3.46096784e-01\\n1.99982315e-01 5.07180095e-01 2.75846809e-01 1.46655455e-01\\n4.28752482e-01 6.38981879e-01 3.71005505e-01 1.67296156e-01\\n-2.58338898e-02 2.03597266e-02 -1.72940627e-01 -1.32870436e-01\\n2.78154433e-01 3.13985378e-01 1.53902113e-01 8.14617097e-01\\n3.22214395e-01 2.36675248e-01 7.02649891e-01 -6.05626881e-01\\n-5.17295718e-01 -2.69987248e-02 4.72564101e-01 -2.55426794e-01\\n-1.98075294e-01 1.39499515e-01 -2.86522985e-01 1.69820786e-01\\n-4.87000793e-01 -8.44143927e-02 5.74471010e-03 -1.51706025e-01\\n1.31652847e-01 -5.90725541e-02 -2.53984660e-01 7.47379139e-02\\n-2.45405197e-01 -1.96631834e-01 -3.31543505e-01 -5.18850051e-02\\n-3.39998990e-01 -1.35444805e-01 -1.28733888e-01 -1.67223334e-01\\n-6.72441870e-02 -3.11282307e-01 -1.49802029e-01 1.53711230e-01\\n4.65594500e-01 -9.91084501e-02 -9.04410556e-02 -1.21041991e-01\\n-7.87149090e-03 2.61934012e-01 4.05741125e-01 -1.12175874e-01\\n1.49162993e-01 -3.32798734e-02 -3.56227726e-01 -6.55620247e-02\\n1.90045550e-01 3.65935415e-02 -4.65964302e-02 5.00743687e-01\\n-3.40142608e-01 5.77112995e-02 1.09722473e-01 2.58588284e-01\\n-3.58537614e-01 -1.56976376e-02 9.94263031e-03 3.79866898e-01\\n1.91385031e-01 2.11970180e-01 -2.86552012e-01 2.17511371e-01\\n-2.61249274e-01 -4.33736473e-01 4.01196331e-01 -1.72018886e-01\\n-3.56429331e-02 1.68645233e-01 1.96501881e-01 1.17264748e-01\\n-3.21697086e-01 1.94661692e-02 -1.54590569e-02 4.08345699e-01\\n1.38100579e-01 3.41536433e-01 -3.65895391e-01 -1.07981980e-01\\n-2.32519433e-01 2.34447092e-01 -1.72387525e-01 1.93839952e-01\\n-1.84268057e-01 3.26715201e-01 8.13060328e-02 1.33784905e-01\\n1.99187040e-01 -6.98598698e-02 -2.10739136e-01 -2.28092819e-01\\n-2.95322090e-01 -3.31125885e-01 1.71492130e-01 -4.79243211e-02\\n2.16375485e-01 -3.68897915e-01 -1.23232454e-01 -1.45375162e-01\\n-2.50475407e-01 -4.45141196e-01 -3.81494686e-02 -5.45614399e-02]]',\n", + " 'Über unseren Kunden Our client is a globally integrated technology and consulting company with operations in more than 170 countries. Ihr Aufgabenbereich Understand and prioritize product requirements and end-user needs and drivers Elicit and analyze all requirements, including business rules Design, develop and support application solutions to meet client requirements Ihr Profil A degree in Computer Science (IT apprenticeship graduates, higher education in IT, bachelor) Demonstrated work experience and knowledge of Web Development using Java, JavaScript, Python Experience in one or more of the following (AngularJS, NodeJS, Django / Flask, Bootstrap, Knockout, AureliaJS or similar. Build Chain: SVN Git, Ant, Maven) Knowledge of databases (SQL) Experience on agile development methodologies Excited to explore new technologies and able to quickly learn An ability to pro-actively take ownership of and analytical problem solving skills Good knowledge of the German & English languages (written & spoken) Swiss nationality or valid Swiss work permit / EU passport Ihre Chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript Web SQL Sprachen: Deutsch Englisch Job ID: 2064',\n", + " '[\"Prioritization\", \"Consulting\", \"Operations\", \"Problem Solving\"]',\n", + " '[\"Knockout.js\", \"Hyper SQL Database (HSQLDB)\", \"Product Requirements\", \"Computer Science\", \"Analytics\", \"Web SQL Databases\", \"Higher Education\", \"Technology Integration\", \"Activism\", \"Python (Programming Language)\", \"Web Development\", \"Flask (Web Framework)\", \"Business Card Design\", \"Django (Web Framework)\", \"Apache Ant\", \"Bootstrap (Front-End Framework)\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Git Flow\", \"Java (Programming Language)\", \"Agile Product Development\"]',\n", + " \"['English', 'Belarusian']\"],\n", + " ['68',\n", + " 'software engineer',\n", + " 'Chiasso',\n", + " 'Film Production & Distribution',\n", + " '',\n", + " '[[-1.10012941e-01 2.50470519e-01 4.47021544e-01 7.62318075e-03\\n4.62903321e-01 -1.23481639e-01 1.25570491e-01 2.44325876e-01\\n3.67624722e-02 -4.38723087e-01 -1.22936435e-01 -2.46223420e-01\\n-9.11628082e-03 -9.29438695e-03 5.71359470e-02 3.63453090e-01\\n2.53457546e-01 -3.03699821e-02 -2.00233787e-01 4.40562785e-01\\n1.52866721e-01 -6.13864996e-02 6.80958107e-02 6.93907142e-01\\n4.41830158e-01 -4.54013608e-03 -2.18034536e-02 -7.38844723e-02\\n-2.11520836e-01 -3.17640036e-01 3.76719534e-01 -3.89324762e-02\\n2.38037594e-02 -3.50452602e-01 4.59056944e-02 1.72284432e-02\\n-1.31245151e-01 3.04484181e-03 1.87065490e-02 1.28031567e-01\\n-3.92087758e-01 -1.23583615e-01 8.59400630e-03 2.02191919e-02\\n-2.11099193e-01 -3.12084407e-01 1.07930720e-01 -1.05607897e-01\\n1.37010172e-01 -1.06115431e-01 -4.44776684e-01 3.70078236e-01\\n-1.88915402e-01 -2.33930528e-01 3.48369181e-01 6.47744775e-01\\n4.44919392e-02 -5.04125237e-01 -5.12717426e-01 -2.86719531e-01\\n2.40827035e-02 -4.05313857e-02 1.82288419e-02 -8.89614522e-02\\n2.47844741e-01 1.33271776e-02 4.70391214e-02 2.86254257e-01\\n-6.57482862e-01 -4.78459150e-02 -2.32855380e-01 2.18541101e-02\\n-3.31831217e-01 -1.59573227e-01 -3.10385317e-01 -9.38830227e-02\\n2.28110701e-03 5.07326484e-01 1.03619002e-01 -1.55620920e-02\\n-2.12682113e-01 1.42840058e-01 -3.02678108e-01 2.16910616e-01\\n2.14599013e-01 1.06917620e-01 3.28376353e-01 3.62879217e-01\\n-4.29095685e-01 4.19654220e-01 1.63889796e-01 -3.97462189e-01\\n2.85219610e-01 7.79108405e-02 5.06142735e-01 1.44823343e-01\\n1.04369193e-01 2.29737878e-01 -1.33120790e-01 2.49118775e-01\\n2.01877475e-01 -1.39971942e-01 -1.34994239e-01 -7.79017806e-02\\n1.54902413e-03 -1.09885558e-01 -1.25419423e-02 1.33354589e-01\\n-3.39495599e-01 5.18693030e-01 1.54752046e-01 -2.36832231e-01\\n-5.49510121e-02 -4.15887833e-01 -1.02557279e-01 -1.75335348e-01\\n-2.74720285e-02 1.83461428e-01 1.22072347e-01 1.80916414e-01\\n1.14876524e-01 3.59974988e-02 1.27981812e-01 8.67739558e-01\\n-6.35130405e-02 9.16547477e-02 -2.57079810e-01 2.48824105e-01\\n9.98084694e-02 -3.10137630e-01 2.39390135e-01 1.40937150e-01\\n-1.06097065e-01 -8.28493237e-02 -2.39718884e-01 2.44963765e-01\\n-1.51680335e-01 -2.31603056e-01 -2.40500540e-01 1.64550528e-01\\n-1.08818166e-01 -3.25645804e-01 5.18735170e-01 7.27473125e-02\\n3.66622433e-02 -4.17074934e-02 -1.15242466e-01 -1.17945679e-01\\n-1.40849769e-01 1.97806969e-01 7.46065453e-02 1.45685196e-01\\n-2.95734733e-01 -2.95975894e-01 -2.32712477e-01 2.36166328e-01\\n-3.67443323e-01 4.33284156e-02 -2.53742278e-01 -1.26388326e-01\\n3.40133667e-01 1.00808889e-01 -4.23965037e-01 3.15503776e-01\\n5.73892519e-02 2.17308700e-02 -1.33384109e-01 2.85237551e-01\\n-1.41019940e-01 2.38344729e-01 -2.95608807e-02 -1.35206189e-02\\n6.92211628e-01 2.09686011e-01 1.11002862e-01 -3.18190008e-02\\n3.71634990e-01 -7.82537311e-02 1.72736987e-01 1.14630967e-01\\n-5.93129814e-01 2.24569887e-01 -1.18505806e-01 -9.42846090e-02\\n2.02682167e-01 -1.19505987e-01 1.60792902e-01 -3.26074064e-01\\n5.23647219e-02 -1.01331547e-02 -3.60718668e-01 -3.64175647e-01\\n-1.95972383e-01 -1.50333550e-02 3.98813546e-01 -3.07920992e-01\\n-3.43605727e-02 2.31086165e-01 -5.43899894e-01 -8.85231569e-02\\n3.18682313e-01 2.07243979e-01 2.02752739e-01 2.08226055e-01\\n-7.87236691e-02 -4.28158104e-01 8.77275765e-02 -4.39233780e-01\\n-3.03926557e-01 1.84423953e-01 -2.90903538e-01 2.32999921e-01\\n7.16643184e-02 -1.77714974e-05 -1.92187011e-01 8.58783573e-02\\n-1.13346770e-01 -1.35578021e-01 1.41854897e-01 1.08108968e-02\\n2.08949238e-01 1.68700024e-01 -3.94689441e-01 4.46140021e-01\\n-2.10058153e-01 4.28580642e-01 6.09100796e-02 -9.37987447e-01\\n5.27969003e-01 1.96625203e-01 -9.08250809e-02 -3.48471373e-01\\n4.60195720e-01 -2.70923495e-01 1.78242415e-01 1.25302896e-01\\n-2.97267973e-01 -2.76605546e-01 2.57663995e-01 -1.89104229e-01\\n-2.61997879e-01 5.23096919e-01 1.05462879e-01 1.14958160e-01\\n1.95214182e-01 -6.62928373e-02 -1.90549254e-01 1.30824298e-01\\n-7.01125786e-02 -1.71031818e-01 -5.09049892e-01 9.39098448e-02\\n-1.20466843e-01 -4.30068314e-01 -1.43864408e-01 -5.29655814e-01\\n-2.89729059e-01 -4.62442875e-01 -2.12303102e-01 2.20529452e-01\\n2.05937028e-01 2.11702973e-01 -1.40874177e-01 2.23908909e-02\\n-4.60025221e-02 -6.28447890e-01 3.22187692e-03 1.30759418e-01\\n3.92721951e-01 1.89028352e-01 6.16211966e-02 -4.76873741e-02\\n-5.26029132e-02 5.38343430e-01 -4.85375404e-01 -1.02256849e-01\\n2.07169130e-01 1.30829886e-01 4.88320440e-02 -2.56732821e-01\\n4.77302819e-05 1.95507467e-01 -2.53248215e-01 1.70020670e-01\\n3.37195694e-02 -5.72493635e-02 2.94688165e-01 -3.88828143e-02\\n-3.89996946e-01 -2.29939967e-01 -1.79155078e-02 2.80436128e-01\\n-5.88391066e-01 -2.05896407e-01 7.22771227e-01 9.18255672e-02\\n6.50228709e-02 1.25886798e-01 3.01764339e-01 -6.77710250e-02\\n-2.13477463e-01 -1.87686026e-01 3.08631450e-01 1.79099128e-01\\n1.90205395e-01 6.14645258e-02 -1.62507772e-01 -7.37720311e-01\\n-3.44775796e+00 -1.91172779e-01 1.76672369e-01 -2.24034429e-01\\n1.84050381e-01 -1.20466061e-01 9.53514427e-02 -1.09181389e-01\\n-2.83488125e-01 5.99379018e-02 -3.43893468e-01 -3.17648426e-02\\n1.45940855e-01 3.44773591e-01 1.46317691e-01 2.20983759e-01\\n1.50097072e-01 -1.77730531e-01 7.39100575e-03 2.95644373e-01\\n-2.61173785e-01 -5.95391393e-01 2.54958451e-01 4.96640354e-02\\n2.76129901e-01 2.40309894e-01 -4.16081727e-01 -9.39517245e-02\\n-1.87265128e-01 -1.88248605e-01 6.85101599e-02 -1.65217102e-01\\n-1.21384442e-01 3.62184346e-01 2.48463124e-01 -1.76614001e-02\\n8.69665295e-02 -4.95112658e-01 -5.13296798e-02 -3.55179727e-01\\n7.31112882e-02 -7.18506813e-01 1.79983713e-02 -1.26108527e-01\\n5.50911784e-01 -1.72152013e-01 1.72777236e-01 7.36195296e-02\\n2.33043879e-01 1.37694985e-01 -2.97690555e-03 8.18728432e-02\\n-2.08410203e-01 -1.64473727e-01 -9.43721533e-02 -5.95708974e-02\\n5.65099955e-01 4.93477792e-01 -2.35337570e-01 -1.61434025e-01\\n-9.77121294e-02 -2.89260358e-01 -4.93865967e-01 -2.83251077e-01\\n-2.01496512e-01 -2.13037342e-01 -7.29650795e-01 -3.96988511e-01\\n-2.21128583e-01 -8.86087269e-02 -2.25295991e-01 7.05511212e-01\\n-2.62344748e-01 -3.25369298e-01 -2.24544778e-02 -3.19504797e-01\\n5.94823509e-02 -1.12579823e-01 7.60319829e-02 -7.04938099e-02\\n-2.35558450e-01 -3.85741532e-01 1.73618004e-01 2.10461896e-02\\n-2.41451666e-01 -2.65895873e-01 1.46236315e-01 -6.88198581e-02\\n-2.62146860e-01 -4.36277568e-01 4.11964834e-01 1.00677773e-01\\n2.13773400e-01 -8.84544849e-03 4.00483191e-01 2.55469549e-02\\n2.98367441e-01 -1.84673995e-01 5.19332252e-02 -4.18981552e-01\\n1.27792761e-01 2.41414905e-02 6.68128669e-01 -2.00941101e-01\\n1.22046746e-01 8.20060670e-02 -3.10632676e-01 -2.17405520e-02\\n3.95080686e-01 -6.14599846e-02 3.98053080e-02 -2.19420254e-01\\n2.52758324e-01 -3.18713725e-01 -2.80584276e-01 5.47411852e-03\\n1.15285553e-01 7.10785270e-01 -1.69613324e-02 -4.53787863e-01\\n-2.59640664e-01 3.60180259e-01 -8.74342620e-02 -1.95133209e-01\\n-2.17105061e-01 1.32989019e-01 -2.80065060e-01 8.25791135e-02\\n9.76574719e-02 8.70897807e-03 -2.90812433e-01 -1.18685216e-01\\n-1.32323727e-01 2.59659529e-01 2.65245289e-01 1.84636116e-02\\n-1.98791884e-02 -4.13618624e-01 -4.06362638e-02 2.10191756e-01\\n1.06387123e-01 2.69592583e-01 1.47949070e-01 -3.09367061e-01\\n-3.87316979e-02 2.70249963e-01 -1.61175370e-01 1.22753806e-01\\n-2.54008949e-01 1.34274036e-01 -5.28644502e-01 -3.26742232e-01\\n-2.99596965e-01 -3.67729068e-01 1.40982997e-02 4.03252006e-01\\n5.83771132e-02 -5.59020191e-02 3.25823314e-02 -4.28824067e-01\\n2.75585234e-01 -3.23800258e-02 2.45673612e-01 9.68115777e-02\\n1.17397442e-01 5.80042124e-01 1.19286850e-02 -2.32902691e-01\\n-9.16453823e-02 -5.84164076e-03 -3.08908492e-01 -1.20897010e-01\\n2.11256575e-02 -4.19384241e-01 -5.78539446e-02 4.17571425e-01\\n1.93481386e-01 -2.00555071e-01 -1.21428184e-01 2.53280342e-01\\n-7.32681528e-02 -3.08266789e-01 -1.98888183e-01 -1.42246336e-01\\n3.98349404e-01 -4.24597152e-02 2.99416929e-01 -4.40168142e-01\\n3.85698769e-03 -1.20824561e-01 -8.17181244e-02 4.82242882e-01\\n9.03292447e-02 9.30096731e-02 -6.00879043e-02 4.23767604e-03\\n5.61940134e-01 -2.26192474e-02 -7.89087862e-02 4.15842608e-02\\n1.31305724e-01 -2.16246307e-01 -5.49400568e-01 7.76759461e-02\\n2.11669784e-02 -1.59281999e-01 3.95505540e-02 1.52924970e-01\\n9.10619944e-02 1.88257359e-02 -5.72728336e-01 -2.69188702e-01\\n-3.86804700e-01 -6.63298294e-02 9.15820077e-02 -6.65654063e-01\\n-1.15531310e-01 1.94864161e-02 -5.37414730e-01 2.85714805e-01\\n-1.34082735e-01 -8.65770578e-02 8.66236016e-02 2.66879164e-02\\n-2.71023601e-01 -1.83643997e-01 1.38369665e-01 7.02836439e-02\\n-2.98597574e-01 -1.48576126e-01 1.79574877e-01 -9.39351082e-01\\n1.98692918e-01 3.17853093e-02 -1.48597896e-01 4.58805785e-02\\n-6.66105375e-02 -6.60189509e-01 2.14171246e-01 -4.10021335e-01\\n-8.38513523e-02 -3.78951035e-03 -2.16160208e-01 -4.28993344e-01\\n6.69576079e-02 -7.70870000e-02 -3.60684782e-01 3.49363804e-01\\n-3.14594358e-01 3.67190003e-01 5.86253330e-02 1.05138928e-01\\n1.09997109e-01 -3.06649148e-01 -3.99776287e-02 -4.06819642e-01\\n-5.40746808e-01 -8.80865157e-02 -2.89883316e-01 -1.19079255e-01\\n6.20841756e-02 -3.32511544e-01 -1.45653754e-01 5.27217984e-02\\n2.95580089e-01 1.62493378e-01 -6.35830015e-02 -2.88838208e-01\\n-5.77366650e-02 -5.09525597e-01 4.12790850e-02 7.86661357e-03\\n-1.22106746e-02 -1.00146905e-01 3.86836737e-01 5.51682189e-02\\n1.74759194e-01 -3.57936442e-01 5.59384763e-01 -3.30532551e-01\\n-2.88161874e-01 -8.81625041e-02 -4.28027548e-02 1.49170950e-01\\n3.39139372e-01 -4.26507115e-01 -2.70741675e-02 3.27434003e-01\\n1.53594956e-01 9.05248299e-02 3.36502850e-01 -1.47999644e-01\\n-1.27233207e-01 1.97953060e-01 -3.61297190e-01 2.09337264e-01\\n7.11478710e-01 -4.82371859e-02 5.61578982e-02 1.18219934e-01\\n8.48385766e-02 2.30178833e-01 6.17283463e-01 -1.18414551e-01\\n-1.69422269e-01 4.13275808e-01 7.91588649e-02 -6.13373756e-01\\n-1.20063111e-01 -7.75925815e-03 -8.71705711e-02 -2.88340867e-01\\n5.99007308e-01 3.78376871e-01 -3.44215155e-01 -2.44394675e-01\\n-1.40219122e-01 -1.60340875e-01 7.03253672e-02 2.84910873e-02\\n1.30121291e-01 2.98768729e-02 5.67786098e-01 -8.22214931e-02\\n1.71368569e-01 4.61361170e-01 -1.17683873e-01 -3.79283994e-01\\n-1.03428736e-01 1.79372966e-01 9.40807238e-02 3.99562150e-01\\n-1.46710813e-01 2.08850533e-01 1.02987394e-01 7.45752305e-02\\n-7.22869933e-02 -4.52621579e-02 1.06191769e-01 7.38420561e-02\\n1.16560459e-01 1.07244954e-01 5.04447401e-01 4.31542933e-01\\n4.00300741e-01 4.53484833e-01 3.04671258e-01 1.19413100e-02\\n5.91943562e-01 7.32437491e-01 3.23637128e-01 1.51883885e-01\\n-8.27608183e-02 5.83784245e-02 1.13580018e-01 9.21359286e-04\\n4.00977731e-01 4.25269485e-01 8.27398300e-02 7.59780526e-01\\n4.40533578e-01 2.89181948e-01 5.50154865e-01 -6.40766740e-01\\n-3.46369147e-01 1.08832687e-01 5.07788539e-01 -2.19588935e-01\\n6.81672990e-02 1.80244774e-01 -5.94211593e-02 7.11943954e-02\\n-4.75390851e-01 -3.69595319e-01 -3.29450630e-02 2.20857561e-03\\n1.25821665e-01 -1.57366082e-01 -2.72083104e-01 1.53144300e-01\\n-5.56357093e-02 -1.35593921e-01 -4.62019503e-01 -6.21635914e-02\\n-2.14661196e-01 -3.49476039e-02 -1.13270804e-01 -9.83854383e-02\\n-6.86635226e-02 -3.02266419e-01 -2.24063158e-01 4.84197540e-03\\n1.90172717e-01 -1.76232904e-01 -1.63900495e-01 -1.51675224e-01\\n2.25549817e-01 1.98618487e-01 5.85257173e-01 -1.18914410e-01\\n9.39056277e-02 -3.71392995e-01 -2.28455395e-01 1.35586649e-01\\n2.29180649e-01 4.77072932e-02 2.39419267e-02 4.63004887e-01\\n-3.55399609e-01 -1.12099037e-01 1.29001975e-01 3.28360319e-01\\n-3.93815547e-01 -7.02106208e-03 -1.50103256e-01 1.46630272e-01\\n1.33815676e-01 1.71488792e-01 -1.37916759e-01 -9.00065601e-02\\n-1.40100434e-01 -5.20996690e-01 3.12228352e-01 -3.54125425e-02\\n-1.16210610e-01 2.34234333e-03 1.85509741e-01 1.99718326e-01\\n-2.79738724e-01 -2.30321120e-02 -1.68226153e-01 1.43030733e-01\\n4.91208732e-02 2.88100481e-01 -3.06857765e-01 -2.05781162e-01\\n-1.92017049e-01 2.26385653e-01 -6.21558353e-02 1.45950302e-01\\n-1.30987801e-02 3.68991464e-01 1.69430822e-01 1.70710325e-01\\n4.22643721e-01 8.54823887e-02 -1.24446549e-01 -1.45083398e-01\\n-3.09533983e-01 -2.41282701e-01 -2.54385658e-02 -8.20061751e-03\\n1.59541160e-01 -3.19271326e-01 -3.46607044e-02 -1.34387702e-01\\n-2.85385549e-01 -2.86997914e-01 -1.14202261e-01 8.40340462e-03]]',\n", + " 'Job DescriptionWe are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you dont feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios Youll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! -Blog: https://technology.lastminute.com/ -Twitter: https://twitter.com/lastminute_tech/Qualifications null Additional Information null',\n", + " '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Vert.x\", \"Extreme Programming\"]',\n", + " \"['English', 'Abkhazian', 'Javanese']\"],\n", + " ['107',\n", + " 'software engineer, full-stack',\n", + " 'Lausanne',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.spotme.com',\n", + " '[[-2.40400463e-01 1.97630540e-01 5.63323975e-01 3.51318382e-02\\n5.01096666e-01 -1.70995638e-01 1.30098253e-01 3.23587179e-01\\n5.76776499e-03 -4.04238015e-01 -2.61640493e-02 -3.40038747e-01\\n-2.14768038e-03 2.19531074e-01 1.51836947e-01 4.26689506e-01\\n1.15004860e-01 1.13718919e-01 -1.38945699e-01 2.45707050e-01\\n5.85400686e-02 -2.23842412e-01 3.17868888e-02 7.21959472e-01\\n4.38476354e-01 -1.36701493e-02 -9.36722308e-02 -8.37761015e-02\\n-2.61980355e-01 -1.31882980e-01 4.96534377e-01 4.42499928e-02\\n-1.43099621e-01 -3.95369768e-01 1.17438890e-01 9.74113569e-02\\n-2.47757256e-01 -1.06715642e-01 1.81171149e-02 2.25266770e-01\\n-6.19741678e-01 -3.02673876e-01 8.98771957e-02 3.95925492e-02\\n-2.01780722e-01 -1.54720053e-01 -1.49527356e-01 -9.32055414e-02\\n1.37238517e-01 6.89389706e-02 -5.80855489e-01 2.89805204e-01\\n-1.24821439e-01 -2.60120928e-01 1.52547538e-01 5.81285417e-01\\n1.19390659e-01 -4.93634701e-01 -3.81300509e-01 -3.08212280e-01\\n3.37897874e-02 -8.07853490e-02 3.25256065e-02 -3.23344827e-01\\n1.85178548e-01 -2.40102768e-01 -1.30819798e-01 3.72485608e-01\\n-7.33904541e-01 1.32199168e-01 -1.81066379e-01 1.80613846e-02\\n-2.75795043e-01 4.19326760e-02 -3.56090963e-01 -6.84670731e-03\\n-1.23984255e-01 4.11063135e-01 9.92610902e-02 4.34811302e-02\\n-2.15636075e-01 1.80195943e-01 -9.93093476e-02 3.65351588e-01\\n2.72442222e-01 2.28126019e-01 2.88385779e-01 2.81622082e-01\\n-3.06123674e-01 4.95402157e-01 9.07175168e-02 -2.06902191e-01\\n3.20295393e-01 9.28660333e-02 3.82545590e-01 1.06864892e-01\\n5.80978133e-02 4.74007279e-02 -2.83134878e-01 2.41040051e-01\\n2.68704444e-01 -3.42991710e-01 7.12204948e-02 -1.25418184e-02\\n2.85970792e-03 3.95689867e-02 2.36287992e-02 4.98494580e-02\\n-2.10560367e-01 3.11114401e-01 1.71718091e-01 -1.95118234e-01\\n-1.64982736e-01 -4.40360963e-01 -5.28094731e-02 1.09355785e-01\\n-6.95057726e-03 2.44240910e-01 1.27988279e-01 -2.44312789e-02\\n2.74561971e-01 1.59978181e-01 4.91214693e-02 8.51621449e-01\\n-1.02241769e-01 1.10107340e-01 -2.23378107e-01 3.96864593e-01\\n1.48746207e-01 -1.92108780e-01 1.50460780e-01 1.75290361e-01\\n-3.76281794e-03 -2.11077020e-01 -1.74743220e-01 2.57089257e-01\\n9.83193964e-02 -1.96954861e-01 -2.19653800e-01 7.74057508e-02\\n2.91319508e-02 -3.83033007e-01 5.74635208e-01 7.32359141e-02\\n1.98952630e-01 3.49525623e-02 2.07471788e-01 -9.73836482e-02\\n-1.53020486e-01 2.15654999e-01 1.02469295e-01 1.90818146e-01\\n-3.57469320e-01 -2.27697641e-01 -1.40938312e-01 1.56861141e-01\\n-3.47734481e-01 6.63239509e-02 -1.20990023e-01 -2.92543471e-02\\n9.19779539e-02 1.27250358e-01 -2.42252797e-01 1.86331928e-01\\n-1.68862864e-01 -3.52367945e-02 9.25690234e-02 2.58517951e-01\\n-1.24217302e-01 4.40193750e-02 1.54193521e-01 -1.37341663e-01\\n4.83789444e-01 1.63370654e-01 2.82406002e-01 -5.40166628e-03\\n2.72691607e-01 -9.06459242e-02 3.32005955e-02 2.83354640e-01\\n-5.95211327e-01 2.60163009e-01 4.86185886e-02 -1.52183875e-01\\n2.20841601e-01 -4.89621498e-02 3.33764344e-01 -2.44724527e-01\\n2.61320379e-02 -2.20419809e-01 -3.11882973e-01 -2.12899357e-01\\n-2.55517989e-01 1.90029945e-02 3.29124451e-01 -3.43474627e-01\\n-9.94950980e-02 1.39676213e-01 -3.58133048e-01 -1.51155218e-01\\n1.50586545e-01 2.29285702e-01 -3.03761177e-02 5.29668778e-02\\n-2.36380532e-01 -5.55879474e-01 -5.89318760e-02 -3.61062557e-01\\n-4.21809763e-01 -1.47245407e-01 -3.73610705e-01 2.24480957e-01\\n9.62531865e-02 7.77265504e-02 -7.62180164e-02 -1.71432626e-02\\n-2.18350619e-01 -8.58573169e-02 -1.03445470e-01 1.41953513e-01\\n2.14144662e-01 1.14593627e-02 -3.42618734e-01 4.67578143e-01\\n-3.13855320e-01 5.82264483e-01 9.68542695e-02 -8.92894149e-01\\n4.12237108e-01 3.77169281e-01 -8.22556391e-02 -3.35643679e-01\\n4.07640457e-01 -3.16129506e-01 3.12804338e-03 5.68594038e-02\\n-2.50917792e-01 -2.00854242e-01 3.10433626e-01 -1.79649144e-01\\n-1.70935139e-01 3.82668793e-01 1.54696882e-01 6.39696941e-02\\n2.31497645e-01 -2.84989446e-01 -6.99492916e-02 6.34367540e-02\\n-1.37858063e-01 -2.95477837e-01 -4.79834139e-01 -8.27073157e-02\\n-1.78520665e-01 -3.65665585e-01 -3.85746285e-02 -4.41298306e-01\\n-3.88754196e-02 -4.11427677e-01 -2.73065954e-01 2.30137557e-01\\n2.25607872e-01 7.53567442e-02 -7.97303021e-02 2.22392678e-02\\n-8.69884938e-02 -7.11877584e-01 -7.27395713e-02 1.99392304e-01\\n4.49619472e-01 1.92375094e-01 2.04983681e-01 -1.68405119e-02\\n1.58491224e-01 5.30636847e-01 -2.31263474e-01 -3.14097911e-01\\n1.68046057e-01 1.60174206e-01 6.06726594e-02 -1.16466008e-01\\n6.95126504e-02 1.71664342e-01 -1.25021547e-01 -1.11185797e-01\\n-8.75117406e-02 3.37184183e-02 3.21332246e-01 1.37699870e-02\\n-3.83301795e-01 -1.18764602e-01 1.81452371e-02 8.19623694e-02\\n-4.72699285e-01 -5.35693914e-02 4.39307272e-01 2.09295675e-01\\n1.74808860e-01 3.05434950e-02 -6.21095262e-02 -7.89260343e-02\\n-1.67857304e-01 -2.88180739e-01 4.49139923e-01 -3.40612698e-03\\n1.07076745e-02 -6.04003668e-03 -9.97231007e-02 -5.62836945e-01\\n-3.85604334e+00 -3.06096256e-01 -2.17095427e-02 -1.52174667e-01\\n1.81380302e-01 -9.87992808e-02 5.11485487e-02 2.75125541e-02\\n-1.86300442e-01 1.84034601e-01 -1.01250380e-01 -4.98850867e-02\\n5.03376834e-02 1.35255694e-01 -9.79454815e-02 3.08787674e-01\\n2.53067732e-01 -1.18250117e-01 -3.93342413e-02 3.37812692e-01\\n-2.70375490e-01 -6.28200591e-01 2.04252541e-01 8.02262314e-03\\n2.01692507e-01 8.28427076e-02 -3.18369120e-01 1.73995793e-02\\n-1.46909699e-01 -2.28586525e-01 4.65484373e-02 -2.11322740e-01\\n-2.00234175e-01 1.45331606e-01 1.60587937e-01 -3.60628739e-02\\n-1.03552967e-01 -4.02897358e-01 -1.78891435e-01 -4.11203653e-01\\n1.74476996e-01 -5.54367483e-01 4.62452024e-02 -7.14308098e-02\\n7.17277169e-01 -2.75852293e-01 1.01454988e-01 4.51595709e-02\\n9.03848335e-02 -7.46952519e-02 1.66990489e-01 -9.55210999e-02\\n-2.45651945e-01 -3.15913409e-01 5.39972410e-02 -3.16813231e-01\\n5.11650681e-01 3.72740358e-01 -1.89699292e-01 4.99364883e-02\\n2.29884490e-01 -2.32672051e-01 -4.17112857e-01 -2.49968946e-01\\n-1.64882451e-01 -1.46982625e-01 -7.23980308e-01 -2.68446833e-01\\n-3.37805092e-01 -1.84834450e-01 -1.40902787e-01 6.67070746e-01\\n-2.43701920e-01 -4.37611312e-01 -2.15024408e-02 -5.18822670e-01\\n4.24354702e-01 -7.06763938e-02 -1.25403345e-01 -2.13564053e-01\\n-4.25147444e-01 -4.48690772e-01 4.47396673e-02 -3.22221667e-02\\n-2.69515842e-01 -2.23609880e-01 2.86455359e-02 -1.20944344e-01\\n-2.66924053e-01 -4.59144086e-01 3.98916066e-01 5.32186404e-02\\n2.79953420e-01 8.20406973e-02 4.02146697e-01 -4.86590760e-03\\n2.50995070e-01 4.59606051e-02 1.90061722e-02 -2.79628307e-01\\n5.70133142e-02 5.75441420e-02 5.20314276e-01 -2.65294492e-01\\n-9.76848975e-02 1.34546280e-01 -1.52699664e-01 -1.41446531e-01\\n3.74082446e-01 -8.56827796e-02 -6.84424862e-02 -1.64177939e-02\\n2.27126315e-01 -3.68513793e-01 -1.21798851e-01 1.94658190e-01\\n1.60996690e-01 6.11565530e-01 -3.13959643e-02 -3.92673045e-01\\n-1.66057959e-01 5.16290188e-01 -1.17700689e-01 1.62404940e-01\\n-1.77671224e-01 1.56527475e-01 -3.30200613e-01 3.76040846e-01\\n3.51698846e-02 -3.15770686e-01 -1.89164832e-01 -1.77387014e-01\\n3.12955454e-02 3.30063850e-01 2.76066095e-01 -9.61499438e-02\\n5.76080084e-02 -3.06134343e-01 -2.53567338e-01 1.03917137e-01\\n1.85485005e-01 4.96149451e-01 2.26737782e-01 -2.46465400e-01\\n8.96139815e-02 2.96713352e-01 -1.50801674e-01 1.90327451e-01\\n-2.79412210e-01 1.70360342e-01 -5.34062684e-01 -3.74208331e-01\\n-1.95670053e-01 -5.39525032e-01 1.01839729e-01 3.99693936e-01\\n2.29516774e-01 -2.54050922e-02 -8.41786712e-03 -5.85178256e-01\\n1.79648578e-01 1.74315333e-01 2.08718777e-01 1.37811378e-01\\n3.43236662e-02 5.60864985e-01 -6.34282306e-02 -1.11126661e-01\\n-1.53333917e-01 -7.51884133e-02 -1.52754799e-01 -2.00737521e-01\\n1.46958545e-01 -5.13727725e-01 4.81228046e-02 3.81421566e-01\\n3.13540608e-01 -3.45883340e-01 -1.36690885e-01 3.71160507e-01\\n5.16890511e-02 -2.06954211e-01 -2.72507161e-01 1.01223938e-01\\n3.48876745e-01 1.40752152e-01 2.88368076e-01 -3.08144778e-01\\n-1.13375448e-02 2.68610287e-02 -2.94122864e-02 3.67565364e-01\\n-1.07029259e-01 1.46502331e-01 -2.24190041e-01 -1.49244398e-01\\n4.55777228e-01 -2.11892114e-03 -1.60293877e-01 -2.13626385e-01\\n6.69422001e-02 -1.72527656e-01 -4.21129644e-01 1.30561054e-01\\n6.72175065e-02 -3.84037852e-01 4.06961553e-02 2.66011268e-01\\n7.27313990e-03 5.31712435e-02 -4.64924991e-01 -2.75938570e-01\\n-1.38838232e-01 -1.32132366e-01 2.36682311e-01 -3.22118938e-01\\n3.44947018e-02 -1.30300894e-01 -5.58969975e-01 1.38452813e-01\\n-1.14771716e-01 -1.97601676e-01 2.23057032e-01 1.81729779e-01\\n-2.39020601e-01 -1.36484087e-01 1.06901906e-01 4.19840723e-01\\n-2.96230674e-01 -3.65360707e-01 2.50597317e-02 -8.91939461e-01\\n1.23446621e-01 1.68549821e-01 -1.83998756e-02 1.66467950e-01\\n-1.96006536e-01 -5.17029345e-01 1.62770927e-01 -2.92382628e-01\\n-2.42331594e-01 -5.86269759e-02 -2.44610310e-01 -2.37711310e-01\\n1.51871960e-03 -4.39848192e-02 -2.89438814e-01 4.55137223e-01\\n-3.32576960e-01 3.08391154e-01 -9.84539241e-02 -4.37901309e-03\\n-3.77516299e-02 -1.09420314e-01 1.79311886e-01 -3.24526399e-01\\n-3.88705760e-01 -2.83786774e-01 -5.84797442e-01 -3.96170646e-01\\n1.04313493e-02 -2.04382032e-01 -1.93081290e-01 1.47021294e-01\\n3.70075703e-01 1.83904618e-01 6.72855647e-03 -2.88460284e-01\\n1.42788552e-02 -3.97846609e-01 5.68935759e-02 -1.28721520e-01\\n-1.56347856e-01 -1.48226574e-01 1.39715388e-01 4.06385101e-02\\n1.14916235e-01 -3.09361577e-01 3.59990150e-01 -2.22535878e-01\\n-1.67667061e-01 -1.65897831e-01 1.56193659e-01 5.94566800e-02\\n4.13833588e-01 -4.97422665e-01 -5.72539028e-03 2.95953006e-01\\n3.04187119e-01 8.42670649e-02 2.48572409e-01 -1.59057796e-01\\n-2.40869317e-02 2.70083547e-01 -4.24831033e-01 1.22771971e-01\\n7.88593769e-01 1.08405456e-01 9.50905308e-02 3.09542745e-01\\n1.07267030e-01 3.49410117e-01 4.68152851e-01 -7.82711357e-02\\n-7.01195672e-02 1.58612415e-01 1.68700982e-02 -4.97931391e-01\\n-7.70498961e-02 -2.13841856e-01 -9.85378213e-03 -3.85547101e-01\\n6.80855036e-01 4.10206407e-01 -5.41015565e-01 -9.76659134e-02\\n-1.95511982e-01 5.97619712e-02 1.74981326e-01 -1.72058031e-01\\n-1.79874837e-01 7.67515376e-02 4.01973784e-01 -5.26772700e-02\\n3.93320858e-01 4.97244209e-01 -2.15347454e-01 -2.55875707e-01\\n8.49097595e-02 2.26783648e-01 8.81636515e-02 3.65109891e-01\\n-8.19970667e-02 3.01959604e-01 1.64512433e-02 5.86670116e-02\\n3.10088452e-02 1.95851356e-01 3.10313087e-02 1.03131369e-01\\n2.91167021e-01 3.23149352e-03 3.44047517e-01 4.85890359e-01\\n1.48825914e-01 3.66759241e-01 2.74307668e-01 1.16941094e-01\\n3.89395326e-01 5.45209467e-01 3.51046056e-01 1.25307485e-01\\n7.41359778e-03 2.78202921e-01 1.83109358e-01 -2.21778765e-01\\n3.36743444e-01 4.36189294e-01 2.21177951e-01 7.27999091e-01\\n1.78551748e-01 2.80192137e-01 6.82907164e-01 -6.31415546e-01\\n-3.61072242e-01 -2.07454357e-02 5.18087566e-01 -1.79085419e-01\\n2.72523798e-02 1.84116080e-01 -1.64862677e-01 3.18325609e-01\\n-4.81542468e-01 -2.53237188e-01 2.93147415e-02 -9.60127115e-02\\n-7.17113912e-02 -2.21688762e-01 -1.07721120e-01 2.52417803e-01\\n-2.95714755e-02 -5.12633100e-02 -3.57824862e-01 -8.76091495e-02\\n-2.95486867e-01 -1.54236436e-03 -1.63140401e-01 -2.39619128e-02\\n-8.29311460e-02 -4.78738964e-01 -1.51337445e-01 5.83953448e-02\\n2.81994373e-01 -1.08892716e-01 -1.15706667e-01 -1.29689023e-01\\n2.04286471e-01 1.41418874e-01 4.44979668e-01 7.00490177e-02\\n1.11582890e-01 -1.57231435e-01 -2.71010131e-01 1.76119238e-01\\n3.09009850e-01 1.73285574e-01 -5.29381558e-02 6.33167326e-02\\n-2.59368807e-01 -2.28079744e-02 1.47774071e-01 2.09792033e-01\\n-3.47668588e-01 2.75182482e-02 -2.21802399e-01 1.87954590e-01\\n1.04003519e-01 2.36185834e-01 -1.22217782e-01 -1.09230898e-01\\n-2.59534597e-01 -3.02032083e-01 2.36030072e-01 -2.52569526e-01\\n-2.11328000e-01 2.26224685e-04 1.88181028e-01 1.44600198e-01\\n-2.27011964e-02 8.94951671e-02 -8.74709412e-02 1.76339775e-01\\n8.19404349e-02 2.61252373e-01 -1.42132759e-01 -2.53835708e-01\\n-3.13864112e-01 1.99815556e-01 -8.79455283e-02 1.60409808e-01\\n-4.21903431e-02 4.07238275e-01 -8.63590860e-04 -3.10702845e-02\\n4.69367892e-01 -2.25390941e-02 -2.94991642e-01 -2.93238759e-01\\n-2.69924879e-01 -1.81846306e-01 -1.17371390e-02 7.37380311e-02\\n8.04606900e-02 -4.19147760e-01 9.30623934e-02 -1.25831604e-01\\n-8.83002859e-03 -2.89686382e-01 -2.08228920e-02 -1.52727827e-01]]',\n", + " 'Since 2011, SpotMe has been the mobile engagement platform for visionary leaders who believe that events can drive transformative change. SpotMe has been recognized by G2 Crowd as the leading pure play mobile event app, a growing space that represents more than $1 billion in potential annual revenue. Our ambition is to double down on this opportunity, use events as a springboard and extend our positioning into Digital Experience Platforms (DXP) for employees and customers. Today, SpotMe serves over 220 global brands, including 80 Fortune 500 companies. Some of the world’s largest companies – including Novartis, L’Oréal and Daimler – use SpotMe to connect every event to their greater story. Responsibilities: Develop new features of the SpotMe Backstage, our CMS Optimise user experience, streamline workflows, improve feedback and reporting Perform complete UI/UX re-design with ease of use, contextual aid in mind Work in cross-team projects on new & improving existing features Participate in brainstorming, specification and design sessions Maintain documentation, samples & best practices up to the highest standards Requirements & Skills: Native JavaScript and CSS speaker, proficient in Angular & Node.js Experience with SQL & No-SQL databases is a plus Demonstrated success in designing and building complex web applications Strong analytical, communication and collaboration skills Proactive, independent, completes tasks down to resolution ',\n", + " '[\"Visionary\", \"Collaboration\", \"Proactivity\", \"Brainstorming\", \"Communications\", \"Positivity\"]',\n", + " '[\"Web Applications\", \"Angular (Web Framework)\", \"Streamlines\", \"Springboard\", \"Hyper SQL Database (HSQLDB)\", \"Node.js\", \"Cascading Style Sheets (CSS)\", \"Digitization\", \"User Experience\", \"Maintainability\", \"Workflows\", \"Performance Reporting\", \"JavaScript (Programming Language)\", \"Analytics\", \"SQL (Programming Language)\", \"Branding\", \"Zope (CMS)\", \"Mobility\"]',\n", + " \"['English', 'Korean', 'South Ndebele']\"],\n", + " ['57',\n", + " 'java ee software engineer',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-2.42486432e-01 2.86398619e-01 5.64832747e-01 -1.69629052e-01\\n4.46930528e-01 -3.66724253e-01 1.39893904e-01 3.95505875e-01\\n-1.18415885e-01 -4.21115041e-01 -1.05354689e-01 -2.83324987e-01\\n-3.17195244e-02 3.28076184e-02 1.60395324e-01 2.96050400e-01\\n3.68439317e-01 1.51860267e-01 -1.38898760e-01 3.48789304e-01\\n1.25136867e-01 -1.09941088e-01 1.07391819e-01 7.16118634e-01\\n5.38061380e-01 3.21505852e-02 -1.16309099e-01 1.17894888e-01\\n-2.31934324e-01 -3.73609781e-01 4.21523899e-01 -3.64575349e-02\\n-7.57823884e-02 -2.65015095e-01 1.42198414e-01 1.23901337e-01\\n-1.12965576e-01 -1.64193045e-02 -2.08529038e-03 6.56652749e-02\\n-3.84443820e-01 -4.35991548e-02 8.26746747e-02 1.02073187e-02\\n-1.95408285e-01 -3.78072381e-01 9.55660343e-02 5.42518236e-02\\n1.45611957e-01 -9.50781163e-03 -4.78444964e-01 3.51815283e-01\\n-1.99841365e-01 -2.74148911e-01 2.83995003e-01 5.27442992e-01\\n-1.00004219e-01 -5.08747578e-01 -3.47997725e-01 -2.92093039e-01\\n1.32862300e-01 -1.01518534e-01 1.09300375e-01 -3.16966087e-01\\n3.80815774e-01 2.45680604e-02 -5.13209291e-02 3.95598233e-01\\n-7.57107973e-01 1.10018156e-01 -2.26527631e-01 -5.54916710e-02\\n-3.56694996e-01 -1.18966781e-01 -3.81916642e-01 -1.52927861e-01\\n-1.15957811e-01 4.85234648e-01 3.90438661e-02 1.49363101e-01\\n-1.38910949e-01 2.32606962e-01 -2.18922406e-01 2.36061156e-01\\n2.61705488e-01 3.57168496e-01 2.34392866e-01 3.27961266e-01\\n-4.39954400e-01 4.60409641e-01 1.77033842e-01 -2.91360199e-01\\n2.51026213e-01 1.29011780e-01 4.64035749e-01 -1.95063723e-04\\n2.58751988e-01 7.41240978e-02 -1.67150334e-01 3.00149858e-01\\n3.63261759e-01 -3.04429412e-01 -8.17635506e-02 -4.37905528e-02\\n-2.62967944e-02 6.33740798e-02 2.43416280e-02 2.82839000e-01\\n-3.69371146e-01 5.64755678e-01 4.12913039e-02 -2.16050297e-01\\n-7.03003109e-02 -5.61269045e-01 -1.58059046e-01 5.52628115e-02\\n5.86663522e-02 1.91005021e-01 1.58151239e-01 2.76896387e-01\\n1.99095443e-01 1.41158000e-01 1.64491341e-01 8.88643622e-01\\n-1.12306833e-01 1.07519291e-01 -2.77585983e-01 3.98480207e-01\\n7.12656751e-02 -2.71445155e-01 3.18176478e-01 2.69757599e-01\\n1.27743512e-01 -7.80088082e-02 -1.94577172e-01 3.69938254e-01\\n-3.56695405e-03 -2.46831715e-01 -2.70287812e-01 1.07466422e-01\\n-1.79808483e-01 -5.07897496e-01 5.97202480e-01 3.78853269e-02\\n1.02728985e-01 7.12514371e-02 4.63178940e-02 -4.87797074e-02\\n-1.00178100e-01 2.54839629e-01 7.94181004e-02 1.06400676e-01\\n-3.05490315e-01 -1.97287947e-01 -3.57116491e-01 1.63734421e-01\\n-3.83132100e-01 6.29739240e-02 -1.37140214e-01 -4.94763330e-02\\n3.13870728e-01 -3.82139347e-02 -2.60252714e-01 3.18535656e-01\\n-6.48217723e-02 1.11971255e-02 -7.76045024e-02 2.25065470e-01\\n-6.92223758e-02 2.03723922e-01 -3.70750315e-02 -1.09509714e-01\\n4.68951613e-01 1.75217658e-01 8.15397948e-02 -1.05048463e-01\\n3.02571177e-01 1.17969252e-02 8.33642334e-02 4.20042798e-02\\n-7.60800779e-01 4.22183305e-01 -2.83813998e-02 -1.97526947e-01\\n9.85075440e-03 -2.82765832e-02 1.63384870e-01 -3.32795203e-01\\n6.88440055e-02 -1.00068286e-01 -4.00719613e-01 -2.05618382e-01\\n-1.88188657e-01 -4.31239940e-02 4.47916597e-01 -4.84864056e-01\\n-1.19341396e-01 1.90518066e-01 -6.34858906e-01 1.08179234e-01\\n2.94031233e-01 1.39395759e-01 1.34521201e-01 1.99623019e-01\\n-1.12542853e-01 -5.19778490e-01 1.25095144e-01 -3.71696413e-01\\n-3.06214809e-01 1.83337271e-01 -3.66200089e-01 2.66327560e-01\\n1.48215726e-01 -5.77133410e-02 -1.57402948e-01 1.46636963e-01\\n-1.65427234e-02 -3.01044919e-02 1.01064026e-01 7.74409622e-02\\n4.26904619e-01 5.80761805e-02 -4.52165574e-01 5.32096982e-01\\n-1.95588917e-01 3.54278892e-01 3.89878117e-02 -8.79543722e-01\\n4.32399064e-01 3.53923410e-01 3.83089408e-02 -3.76880109e-01\\n7.76837051e-01 -1.98723748e-01 -1.18857153e-01 1.14735521e-01\\n-4.79096234e-01 -3.33570719e-01 1.08308502e-01 -1.44823045e-01\\n-2.82477856e-01 4.05793905e-01 4.84595709e-02 1.50383681e-01\\n2.67274618e-01 -1.53739691e-01 -1.67113766e-01 1.47142708e-01\\n-1.89583048e-01 -2.78788954e-01 -4.53351885e-01 4.38426286e-02\\n-3.98521014e-02 -4.88074034e-01 -1.11136101e-01 -5.40604651e-01\\n-2.76821822e-01 -4.04770106e-01 -2.51498580e-01 2.57497400e-01\\n2.09334657e-01 1.56312197e-01 -2.01413538e-02 1.17403334e-02\\n-2.60825425e-01 -4.92977202e-01 8.02138001e-02 7.77294934e-02\\n4.11290765e-01 1.59337506e-01 4.81409915e-02 -7.37040117e-02\\n4.85497341e-02 6.70946896e-01 -2.65666932e-01 -1.43238723e-01\\n1.17524795e-01 1.88019156e-01 -2.55265017e-03 -3.25153135e-02\\n4.17797677e-02 3.83590221e-01 -2.96601325e-01 -1.99420322e-02\\n-1.32291824e-01 1.87211633e-02 3.76513928e-01 -1.41120866e-01\\n-4.14940208e-01 -3.25104386e-01 -5.84780462e-02 1.72233045e-01\\n-5.31877637e-01 -1.97057173e-01 6.44714892e-01 1.56773105e-01\\n1.27338946e-01 1.62987053e-01 2.09564820e-01 -9.74141881e-02\\n-1.75607741e-01 -2.88934618e-01 2.33257964e-01 1.31982952e-01\\n1.57656983e-01 1.65023014e-01 -1.13274448e-01 -5.84828556e-01\\n-3.59780097e+00 -1.39761686e-01 1.55827716e-01 -2.78443903e-01\\n1.60237342e-01 -1.34709254e-01 1.21726811e-01 -1.68586165e-01\\n-2.00158194e-01 1.30551219e-01 -9.82681364e-02 -1.70187995e-01\\n2.62265474e-01 2.10697755e-01 7.80967996e-02 2.35852554e-01\\n2.94930339e-01 -2.54701644e-01 -2.19905749e-02 2.42879093e-01\\n-2.03364164e-01 -6.07597053e-01 2.56827533e-01 -4.61706594e-02\\n3.74928236e-01 3.42783689e-01 -3.24480116e-01 -1.61758721e-01\\n-2.60682732e-01 -2.55370528e-01 1.44178510e-01 -2.23308250e-01\\n2.40983162e-02 2.96683162e-01 2.25272536e-01 4.82000550e-03\\n2.41960600e-01 -2.99223691e-01 -1.87363271e-02 -4.01587635e-01\\n1.36084646e-01 -5.50460339e-01 -3.70712765e-02 -7.60946274e-02\\n7.61820257e-01 -3.91476244e-01 2.24451616e-01 1.27569556e-01\\n1.42374933e-01 1.63623407e-01 -1.39681147e-02 -1.90400317e-01\\n-2.61368871e-01 -1.81390524e-01 3.08890287e-02 -1.98049247e-01\\n5.65115571e-01 5.97573936e-01 -2.57275134e-01 -6.48671016e-02\\n7.20970565e-03 -3.00972372e-01 -5.43476701e-01 -3.85199547e-01\\n-1.70982555e-01 -2.01102346e-01 -5.86704731e-01 -5.06467104e-01\\n-9.40164402e-02 -8.04229900e-02 -6.88123181e-02 4.88994122e-01\\n-1.96467161e-01 -4.65801090e-01 -8.86119306e-02 -4.58980471e-01\\n8.11616853e-02 -6.36741221e-02 -4.20841686e-02 -1.49325535e-01\\n-1.74441069e-01 -5.51873326e-01 -5.64523712e-02 -1.82424132e-02\\n-9.50441957e-02 -2.01266527e-01 3.00826758e-01 -1.65981770e-01\\n-3.45810562e-01 -4.94979203e-01 4.87515658e-01 1.97727419e-02\\n2.36421034e-01 1.91681057e-01 1.41349688e-01 1.43390402e-01\\n3.05311501e-01 -2.80572772e-01 7.81750605e-02 -3.72012794e-01\\n1.97336912e-01 1.38856038e-01 5.56444943e-01 -1.49171770e-01\\n1.70542359e-01 1.42980561e-01 -1.93012014e-01 -2.10063890e-01\\n3.55897754e-01 1.27024064e-02 1.47982672e-01 -3.22476715e-01\\n3.14415693e-01 -2.83288807e-01 -3.06806356e-01 1.39108807e-01\\n2.01873649e-02 5.42771280e-01 -6.56985119e-02 -3.83415818e-01\\n-1.59652710e-01 5.58971107e-01 -1.47857144e-01 -1.07439356e-02\\n-1.84545740e-01 1.17671072e-01 -2.87542880e-01 3.53016019e-01\\n4.58723120e-02 -6.70608878e-02 -2.15713277e-01 -1.46039188e-01\\n-3.40254372e-03 3.36140543e-01 2.89384812e-01 1.08611196e-01\\n2.78600883e-02 -4.13425416e-01 -5.25867268e-02 1.18545219e-01\\n1.82045147e-01 2.85539955e-01 -1.75436214e-02 -1.21183880e-01\\n-2.16172095e-02 2.89342403e-01 -2.25383356e-01 1.35228798e-01\\n-2.45081753e-01 6.43860921e-02 -4.44789976e-01 -3.01703811e-01\\n-2.55760550e-01 -2.87277490e-01 2.68217884e-02 2.26909056e-01\\n4.90988716e-02 1.99383944e-02 -2.55691726e-02 -3.98442447e-01\\n2.36265376e-01 1.43221142e-02 2.78837442e-01 2.63224155e-01\\n-1.48202330e-02 4.55107450e-01 -4.08468209e-02 -5.39660417e-02\\n-2.06825182e-01 7.42099509e-02 -1.84086621e-01 -7.08879307e-02\\n-5.71954250e-02 -4.87286925e-01 -9.65311658e-03 3.78426284e-01\\n7.32993707e-02 -2.99546838e-01 -1.30578130e-01 1.17710836e-01\\n-4.86178696e-02 -4.64560628e-01 -1.58392966e-01 -3.50528583e-02\\n3.50948125e-01 6.70464262e-02 3.41290236e-01 -4.85690176e-01\\n6.11778684e-02 3.69931795e-02 -3.09560299e-02 4.55064684e-01\\n1.58916190e-02 2.34586578e-02 -4.09601582e-03 -2.93633342e-01\\n3.20438415e-01 -2.13662818e-01 3.22109424e-02 1.63322706e-02\\n1.22235417e-01 -1.50637478e-01 -3.54327410e-01 -2.38604401e-03\\n-2.26649363e-02 -1.39997274e-01 -2.89628166e-03 2.27821176e-03\\n-4.12342288e-02 2.62885746e-02 -5.66979051e-01 -2.99766541e-01\\n-3.37742448e-01 -1.19459935e-01 4.81545134e-03 -4.46472794e-01\\n-2.41964813e-02 5.97711764e-02 -6.12404466e-01 3.02604705e-01\\n-1.74375042e-01 -4.02709395e-02 1.77286148e-01 -2.85047274e-02\\n-4.37414408e-01 -1.24654911e-01 2.24482685e-01 2.37155542e-01\\n-2.88533986e-01 -2.66916573e-01 -5.75139336e-02 -9.85038996e-01\\n2.98033506e-01 2.33976040e-02 -1.08740211e-01 1.09911375e-01\\n-6.16996996e-02 -5.52797854e-01 1.51321396e-01 -3.84974390e-01\\n-6.37562349e-02 4.76921152e-04 -2.10403025e-01 -4.26480442e-01\\n3.94980386e-02 2.95551009e-02 -2.58771092e-01 4.08430606e-01\\n-3.97885382e-01 3.24148476e-01 -9.08255354e-02 7.45641738e-02\\n-7.58153498e-02 -2.67134547e-01 -2.56494675e-02 -4.93970603e-01\\n-4.32650119e-01 -1.52532473e-01 -2.00012982e-01 -2.04008877e-01\\n2.10309457e-02 -3.08600962e-01 -7.24264458e-02 1.47106647e-01\\n2.59590477e-01 8.68007243e-02 -1.07105210e-01 -1.91831902e-01\\n4.91620265e-02 -4.71410662e-01 -1.26576692e-01 -2.00195491e-01\\n-8.39821771e-02 -1.80250913e-01 1.19059622e-01 1.07386485e-01\\n7.70464481e-04 -4.64069635e-01 2.92946845e-01 -2.63601422e-01\\n-2.23104566e-01 9.09518301e-02 1.81577988e-02 1.95384007e-02\\n2.97860861e-01 -5.12374282e-01 -6.65624067e-02 4.37715203e-01\\n1.20737113e-01 1.06845081e-01 2.34411523e-01 -4.10828441e-02\\n-1.09392852e-01 4.27329630e-01 -3.29870462e-01 1.35058522e-01\\n6.76027536e-01 1.89359888e-01 1.11512996e-01 1.91951752e-01\\n2.07381859e-01 4.03681338e-01 4.62799221e-01 -3.34090181e-02\\n-8.63005146e-02 3.48503530e-01 5.88297844e-02 -6.43482566e-01\\n2.72585209e-02 1.04537994e-01 -2.75922537e-01 -2.22178817e-01\\n6.69796467e-01 4.86236185e-01 -2.55502343e-01 -2.76538044e-01\\n-2.59591520e-01 -2.07378760e-01 9.64595377e-02 -1.34178996e-01\\n1.85295671e-01 -1.66166723e-01 4.70256001e-01 3.55593264e-02\\n1.51127532e-01 4.85005021e-01 -1.50166586e-01 -3.93364727e-01\\n-8.21174681e-02 2.17905179e-01 1.12581979e-02 5.05844414e-01\\n-2.15021700e-01 1.81318387e-01 9.38267633e-02 2.20690161e-01\\n-5.81944287e-02 1.73292175e-01 1.49300247e-01 9.54306573e-02\\n1.29095957e-01 5.82315102e-02 2.93063998e-01 4.44087029e-01\\n3.26457947e-01 5.11949122e-01 2.52498597e-01 1.16242230e-01\\n5.06214321e-01 4.98819441e-01 4.54311460e-01 2.02429861e-01\\n-4.01226617e-02 3.52553092e-02 1.10401049e-01 -1.82059892e-02\\n2.68554091e-01 3.07478696e-01 -3.94442156e-02 9.70121861e-01\\n4.51184720e-01 2.35406920e-01 6.70576036e-01 -6.42909527e-01\\n-4.20072079e-01 -2.88079735e-02 3.65276814e-01 -3.75227302e-01\\n-7.18239695e-02 -1.84722990e-02 -1.67664379e-01 1.81579575e-01\\n-5.15998542e-01 -1.80117786e-01 -2.56031994e-02 3.49209048e-02\\n1.27602488e-01 -8.92208442e-02 -3.06593746e-01 -1.44372255e-01\\n-2.29557022e-01 -1.05528302e-01 -5.49962819e-01 -4.59534265e-02\\n-2.43303970e-01 -1.61309987e-01 -1.65831462e-01 -2.09024742e-01\\n-1.70255136e-02 -4.15150225e-01 -2.04197317e-01 1.06932826e-01\\n2.59029686e-01 -9.18660164e-02 -9.04981345e-02 -1.02201939e-01\\n3.08228076e-01 2.90223539e-01 5.26522517e-01 -2.38624867e-02\\n2.79961564e-02 -9.86317992e-02 -1.21668749e-01 8.94169360e-02\\n2.04485178e-01 6.61930591e-02 1.98390894e-02 3.40470731e-01\\n-3.76421094e-01 -2.31461734e-01 3.88667993e-02 4.55766350e-01\\n-5.11447251e-01 3.12740915e-02 7.87156299e-02 2.44696215e-01\\n4.16958705e-02 1.28759086e-01 -2.13864520e-01 2.58284062e-02\\n-2.02607900e-01 -4.58325326e-01 2.81159014e-01 -1.06373012e-01\\n-8.78902003e-02 5.91069981e-02 1.45853326e-01 2.07444623e-01\\n-1.81461364e-01 -1.40042141e-01 2.91134398e-02 1.58458352e-01\\n1.87577128e-01 2.39971086e-01 -2.40739435e-01 -2.81250656e-01\\n-3.15442502e-01 1.24212421e-01 -3.03479195e-01 1.22224122e-01\\n-7.00302795e-02 2.71779329e-01 1.73545256e-01 1.51635513e-01\\n2.73168087e-01 -1.18006775e-02 -1.52924865e-01 -1.86609581e-01\\n-3.16132456e-01 -3.26470912e-01 8.34177732e-02 1.59065071e-02\\n2.29317874e-01 -4.51173544e-01 -6.88762292e-02 -8.65972489e-02\\n-2.33497694e-01 -2.79987156e-01 -5.84758259e-02 -2.28971973e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Java EE Software Engineer. The role is a permanent position based in Bern Canton. Your Role: Implement demanding projects within the public sector based on the latest Java technologies. Work closely with clients to help actively support them in the realization of solutions. Maintain good communication with the team & customers. Aim to make a difference with your ideas & visions. Perform duties within an agile environment. Your Skills: Sound technical & methodological knowledge of object-oriented software development. Several years of practical experience with Java / Java EE in the context of web technologies (HTML5 is an advantage) & service-oriented system architectures. Experienced in using Spring, Hibernate & automated build & deployment mechanisms within a SCRUM team. Profound database know-how (Oracle, MySQL and / or SQL Server). Your Profile: In-depth IT training (university, FH or HF). Further relevant certification are considered a plus. Communicative, confident, a team player & resilient. Able to take enjoyment from demanding & complex tasks. Fluent German & English (spoken & written), French is also an advantage. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Confident Communicator\", \"Service-Orientation\", \"Resilience\", \"Communications\", \"Positivity\"]',\n", + " '[\"MySQL\", \"Object-Oriented Software Development\", \"Agility\", \"Java Secure Socket Extension\", \"Building Automation\", \"Mechanicals\", \"Hibernate (Java)\", \"Activism\", \"Java EE Application\", \"Maintainability\", \"HTML5\", \"Scrum (Software Development)\", \"Systems Architecture\", \"Software Engineering\", \"Service-Oriented Modeling\", \"Receivables\", \"Software Development\", \"Java (Programming Language)\", \"Microsoft SQL Servers\"]',\n", + " \"['English', 'Chamorro', 'Pushto', 'Inuktitut', 'Corsican']\"],\n", + " ['125',\n", + " 'big data/spark engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.08247542e-01 2.31795996e-01 5.07690728e-01 2.15499327e-01\\n6.39641523e-01 -1.80837587e-01 -2.42910534e-01 2.05270618e-01\\n6.81032613e-02 -4.56488371e-01 -5.55087626e-02 -2.32204020e-01\\n-1.20247580e-01 6.25318512e-02 -6.54416382e-02 3.83164227e-01\\n3.54464412e-01 1.28045883e-02 -6.50804639e-02 3.72120678e-01\\n3.64708528e-02 -6.95785508e-02 5.09506613e-02 8.33609819e-01\\n2.60781795e-01 -5.56108989e-02 -2.40294524e-02 1.22337840e-01\\n-2.59663582e-01 -1.85927868e-01 3.39075804e-01 1.20859765e-01\\n-2.21114069e-01 -4.45232630e-01 6.20348006e-02 1.99150205e-01\\n-2.44912326e-01 2.15405375e-02 -7.17084408e-02 1.55942947e-01\\n-4.20176148e-01 -1.84351593e-01 -1.27598912e-01 3.70255001e-02\\n-3.22722137e-01 -3.58836293e-01 -2.12725252e-02 -1.29031867e-01\\n7.81545714e-02 2.39076838e-02 -4.76100028e-01 2.71858841e-01\\n-2.19930261e-01 -2.26962656e-01 2.40505785e-01 6.76981926e-01\\n3.15245613e-02 -4.26282018e-01 -5.00358462e-01 -3.36714119e-01\\n7.11330026e-02 -8.99462774e-02 1.01468429e-01 -3.49203229e-01\\n2.86823690e-01 5.11036813e-03 -3.29463743e-02 2.20849037e-01\\n-8.27230453e-01 -4.34976295e-02 -2.67707199e-01 1.61274448e-02\\n-5.21562338e-01 -9.45441127e-02 -2.56457448e-01 -1.18740499e-01\\n-9.07180607e-02 5.16877532e-01 9.28491652e-02 1.61562085e-01\\n-2.50543594e-01 2.67287999e-01 -2.63746709e-01 3.06004971e-01\\n2.68332720e-01 2.12616652e-01 3.10116589e-01 3.45089376e-01\\n-4.86461341e-01 4.67585921e-01 1.73763216e-01 -3.26676279e-01\\n2.86604017e-01 9.29690376e-02 3.42475533e-01 2.82518640e-02\\n2.00618356e-01 2.09291637e-01 -1.67347252e-01 3.52929175e-01\\n2.15926558e-01 -3.59394193e-01 2.40589213e-02 -1.39136046e-01\\n-8.94624740e-03 -8.02108049e-02 2.68610194e-03 1.16329640e-01\\n-3.86477530e-01 3.51273298e-01 1.12071887e-01 -2.35143930e-01\\n-1.11597247e-01 -4.56508964e-01 -8.82475153e-02 -7.13257864e-03\\n7.22553954e-03 1.70091420e-01 2.63477266e-01 1.57337874e-01\\n1.93398982e-01 1.84208490e-02 1.67795181e-01 8.52066278e-01\\n-7.12043941e-02 9.80755687e-02 -1.96436554e-01 4.20176178e-01\\n2.18004972e-01 -3.30089569e-01 2.71699727e-01 1.91834748e-01\\n-3.90764922e-02 -1.49430513e-01 -2.48072535e-01 2.96457291e-01\\n-2.70407964e-02 -1.33645415e-01 -2.52736926e-01 1.90905735e-01\\n2.73119640e-02 -3.35931003e-01 6.63635075e-01 7.38568678e-02\\n1.50661618e-01 -9.29107517e-02 7.01680407e-03 -1.71091527e-01\\n-1.09687790e-01 2.61298299e-01 5.63690402e-02 2.86445141e-01\\n-3.10963452e-01 -2.33559132e-01 -1.18632220e-01 2.47523487e-01\\n-3.84164572e-01 9.65968072e-02 -1.85459137e-01 -6.83654472e-02\\n1.68779731e-01 4.74224575e-02 -3.62813234e-01 8.47976506e-02\\n-1.10326432e-01 -1.93157047e-01 4.94038463e-02 2.83295870e-01\\n-2.21056104e-01 1.97139919e-01 -6.36348967e-04 -3.73530276e-02\\n6.13529980e-01 2.79359728e-01 2.92255282e-01 -2.46288702e-02\\n2.87658304e-01 -1.13076717e-01 1.26443684e-01 1.78609192e-01\\n-6.73825681e-01 3.84390712e-01 -4.76324596e-02 -1.87373936e-01\\n7.13876486e-02 -1.08887777e-02 3.16349804e-01 -2.61249602e-01\\n3.80762760e-03 -1.58052832e-01 -3.62426072e-01 -2.40824223e-01\\n-2.10803747e-01 -4.16489318e-02 3.91981602e-01 -5.35388112e-01\\n-5.43197468e-02 3.18961173e-01 -5.31809092e-01 -1.89905226e-01\\n1.56166509e-01 2.22047120e-01 1.52261883e-01 -1.55416057e-02\\n-9.38130617e-02 -5.70211112e-01 5.52827902e-02 -4.17227030e-01\\n-3.02402854e-01 2.57823113e-02 -2.61736900e-01 1.22255102e-01\\n4.69229883e-03 3.12589668e-03 -1.50731832e-01 1.44857287e-01\\n-3.02397251e-01 -1.35404151e-02 1.96527883e-01 8.20491910e-02\\n3.93124580e-01 6.33319318e-02 -3.84598017e-01 4.44820821e-01\\n-3.26753199e-01 5.01536369e-01 2.10532233e-01 -9.37517285e-01\\n5.99034309e-01 3.00365567e-01 -6.07616305e-02 -3.85130256e-01\\n4.78431821e-01 -4.76025194e-01 -4.54422436e-04 1.40490100e-01\\n-3.14652026e-01 -2.13530809e-01 2.88239837e-01 -1.05826735e-01\\n-2.49496639e-01 6.47490978e-01 -2.94865551e-03 1.03766032e-01\\n2.51507998e-01 -2.94830978e-01 -1.39646128e-01 -1.65035501e-02\\n-1.64638251e-01 -2.78221220e-01 -6.84535146e-01 4.89793718e-03\\n-1.21157438e-01 -4.90176737e-01 -1.67851076e-01 -4.06260729e-01\\n-2.32010588e-01 -2.90079236e-01 -2.38044009e-01 2.04944164e-01\\n2.57651508e-01 1.32148013e-01 -1.57518879e-01 4.91404906e-02\\n-6.41166419e-02 -6.21647358e-01 -3.49879749e-02 1.27177209e-01\\n4.32576746e-01 2.83053100e-01 1.54670790e-01 -7.17661828e-02\\n1.62650466e-01 6.25156999e-01 -3.22139174e-01 -3.96485031e-01\\n6.50667548e-02 1.96854800e-01 -8.17412436e-02 -1.56226560e-01\\n1.42870292e-01 3.13650787e-01 -2.37995625e-01 8.12020153e-03\\n7.19960034e-03 1.27064735e-02 3.52273554e-01 7.44335353e-03\\n-1.96977645e-01 -2.01293483e-01 -1.00268573e-01 2.13205367e-01\\n-6.13397896e-01 -1.86979070e-01 5.65048814e-01 1.99828178e-01\\n3.32873575e-02 1.32529378e-01 2.04330534e-01 1.70596018e-02\\n-2.83830673e-01 -1.72008872e-01 3.88564467e-01 9.60233808e-02\\n1.48682773e-01 1.01653591e-01 8.36778525e-03 -6.38726473e-01\\n-3.40883303e+00 -2.30462015e-01 1.84052646e-01 -2.47338727e-01\\n2.39281848e-01 -2.14260519e-01 6.28921166e-02 -4.88664620e-02\\n-2.50998348e-01 3.40968892e-02 -1.72814429e-01 -1.73174322e-01\\n2.20826194e-02 1.49629354e-01 1.82101011e-01 2.37171710e-01\\n1.88028246e-01 -1.56021446e-01 2.13607568e-02 3.91514540e-01\\n-2.00857073e-01 -6.71127081e-01 1.52192131e-01 4.35928106e-02\\n1.94052905e-01 9.66057703e-02 -3.76970947e-01 -4.61179279e-02\\n-3.19799662e-01 -2.32141256e-01 1.25606693e-02 -3.38132262e-01\\n-1.87689662e-01 3.17041159e-01 2.41352722e-01 -1.76207393e-01\\n1.05921969e-01 -2.89399385e-01 -1.63604558e-01 -4.16996300e-01\\n6.34419918e-02 -5.93445301e-01 7.74564892e-02 -1.81356862e-01\\n6.52160227e-01 -3.05068463e-01 1.55527562e-01 7.44187012e-02\\n2.40790248e-01 2.14253932e-01 1.56252593e-01 2.59192847e-02\\n-1.88618124e-01 -2.93381065e-01 -1.14334136e-01 -1.74804360e-01\\n5.98532677e-01 5.03645062e-01 -1.44101962e-01 1.92568935e-02\\n-1.18800271e-02 -1.98447704e-01 -4.21580702e-01 -3.33689809e-01\\n-1.49552509e-01 -1.68571800e-01 -6.41294360e-01 -4.03473020e-01\\n-1.93158671e-01 -7.17165470e-02 -1.02564342e-01 7.06679583e-01\\n-2.60323644e-01 -3.44354242e-01 -5.81443906e-02 -4.37046498e-01\\n2.54761070e-01 -2.23346427e-01 4.53234240e-02 -6.72288612e-02\\n-2.28335977e-01 -5.45118570e-01 1.18654244e-01 -8.90654922e-02\\n-1.29130721e-01 -1.91976547e-01 4.35904302e-02 -1.30162477e-01\\n-3.13044608e-01 -5.64507604e-01 4.34636861e-01 3.27280760e-02\\n3.68811429e-01 7.97757208e-02 4.23314095e-01 -1.31813101e-02\\n3.58244538e-01 -2.07008831e-02 -1.42248303e-01 -4.10258651e-01\\n7.46989623e-02 -4.04140055e-02 4.83184099e-01 -2.29483664e-01\\n1.53589509e-02 4.71685380e-02 -2.02130735e-01 2.41549257e-02\\n3.12455058e-01 -8.80870968e-03 1.01002783e-01 -1.03169873e-01\\n3.06556165e-01 -3.95881921e-01 -1.58473164e-01 1.95368439e-01\\n1.25041083e-01 6.30329788e-01 -4.44194600e-02 -3.73514652e-01\\n-1.46184251e-01 3.57682467e-01 -4.06747162e-02 -1.06483370e-01\\n-2.20282629e-01 1.07288979e-01 -2.77346194e-01 2.60700732e-01\\n-1.05116796e-03 -1.46603674e-01 -3.13481987e-01 -1.05250806e-01\\n-8.19871277e-02 2.57958502e-01 2.72276282e-01 7.40796477e-02\\n-5.79699464e-02 -2.79590666e-01 -8.36595986e-03 1.29918814e-01\\n3.14173222e-01 4.64640170e-01 2.27505267e-01 -2.08548665e-01\\n-2.32695863e-02 3.49206805e-01 -2.71768689e-01 2.09220588e-01\\n-2.37268269e-01 1.23735614e-01 -6.00836456e-01 -2.02454776e-01\\n-2.57654965e-01 -4.19843495e-01 1.61877856e-01 3.73372495e-01\\n1.47686422e-01 -7.84001648e-02 2.51766928e-02 -4.45630103e-01\\n2.62499958e-01 1.74096867e-01 1.44732207e-01 3.52637023e-02\\n8.28053802e-03 6.93126500e-01 6.27800226e-02 -1.89244717e-01\\n-1.40930235e-01 2.63986681e-02 -1.18499637e-01 -3.10618460e-01\\n1.01215035e-01 -5.47829568e-01 -1.92491114e-01 4.03863847e-01\\n2.08225057e-01 -2.50975668e-01 -2.79967129e-01 3.37112248e-01\\n-2.73203887e-02 -2.58915812e-01 -2.57701218e-01 -7.27014709e-03\\n3.25961351e-01 1.10789746e-01 2.66634971e-01 -5.23473382e-01\\n-1.57746822e-01 7.51889646e-02 4.70008366e-02 4.34031337e-01\\n1.26972437e-01 1.50932103e-01 4.49455380e-02 -1.37006268e-01\\n5.22908270e-01 8.27380568e-02 -1.57272160e-01 -4.54451777e-02\\n8.01657885e-02 -1.76417619e-01 -4.59239244e-01 1.13194317e-01\\n7.02392012e-02 -2.99876750e-01 1.39320996e-02 1.05446279e-01\\n1.68887526e-01 1.60032026e-02 -6.18985772e-01 -2.84545004e-01\\n-3.91011119e-01 -1.10534370e-01 7.91987628e-02 -5.80472112e-01\\n3.66193615e-03 -1.08854502e-01 -5.77886045e-01 2.70096213e-01\\n-1.18214250e-01 -8.08485970e-02 7.01831430e-02 7.14182854e-02\\n-1.63745910e-01 -1.54541060e-01 8.73373747e-02 2.95210600e-01\\n-3.60262126e-01 -2.64701009e-01 5.05418852e-02 -1.01634669e+00\\n1.65685445e-01 8.94840062e-02 -1.86727986e-01 1.20674014e-01\\n-1.61471069e-02 -6.81688607e-01 9.64287594e-02 -4.21150506e-01\\n-1.69627607e-01 -1.22993952e-02 -2.87024677e-01 -3.04457426e-01\\n1.36308819e-01 -4.26788777e-02 -3.04632604e-01 4.38294202e-01\\n-3.58185768e-01 3.17368209e-01 -6.32788911e-02 6.49528354e-02\\n8.12146217e-02 -1.67480290e-01 1.69395477e-01 -2.62316048e-01\\n-4.40227717e-01 -3.40559959e-01 -2.70070314e-01 -3.02517295e-01\\n-2.26188637e-02 -3.35748136e-01 -9.12295952e-02 -2.92932168e-02\\n4.22660530e-01 1.73581809e-01 -1.81824028e-01 -3.55043352e-01\\n8.87860209e-02 -4.96617258e-01 7.79114738e-02 -1.24089554e-01\\n-6.62564859e-02 -1.08450115e-01 1.38393477e-01 6.18134141e-02\\n1.42531097e-01 -3.21131945e-01 4.38298017e-01 -3.29791814e-01\\n-2.69131243e-01 -1.64394200e-01 6.86998740e-02 8.81655738e-02\\n2.38311306e-01 -3.85418922e-01 3.63033004e-02 3.03153992e-01\\n2.45654374e-01 6.42747134e-02 2.28441432e-01 -1.31591290e-01\\n-2.38574892e-02 2.96150863e-01 -3.68910462e-01 1.41023010e-01\\n8.46527934e-01 9.48617011e-02 1.38801381e-01 2.37876385e-01\\n2.41052955e-01 2.72992074e-01 4.89751935e-01 -3.61392908e-02\\n-6.80491403e-02 3.30488145e-01 6.22310676e-02 -3.47451061e-01\\n-5.90303466e-02 -1.19871147e-01 -1.50533020e-01 -4.29576218e-01\\n6.02295578e-01 3.78315151e-01 -4.88971174e-01 -2.67461360e-01\\n-1.89870849e-01 -1.06084853e-01 2.92157590e-01 -7.85756484e-02\\n-4.74730581e-02 -1.06530204e-01 4.39867526e-01 -1.10935733e-01\\n2.83126771e-01 5.72443724e-01 -2.03138709e-01 -3.19971889e-01\\n-2.17168313e-02 1.56396240e-01 2.47604162e-01 4.53571707e-01\\n-2.89345145e-01 2.36071065e-01 -2.18012519e-02 1.60131022e-01\\n-1.46323591e-01 1.61584631e-01 2.49932110e-01 1.10463522e-01\\n2.26018339e-01 -3.17756832e-02 4.92574185e-01 4.95783627e-01\\n2.40881205e-01 4.22222733e-01 4.23355401e-01 -2.91714929e-02\\n4.50779796e-01 6.24181032e-01 3.39135319e-01 8.69047195e-02\\n-2.99975798e-02 1.37670726e-01 1.48635849e-01 -9.99520719e-02\\n2.79643744e-01 4.86781001e-01 1.13222256e-01 8.68086696e-01\\n3.92106950e-01 4.04552341e-01 6.62222564e-01 -6.17080808e-01\\n-3.77365589e-01 3.98384109e-02 4.73802269e-01 -3.90451163e-01\\n-3.75041105e-02 8.43430758e-02 -2.81165451e-01 1.56228215e-01\\n-5.06851017e-01 -1.84138820e-01 -4.34812456e-02 5.43425195e-02\\n7.20871836e-02 -9.52041447e-02 -2.14099675e-01 1.25054121e-01\\n-3.10577769e-02 -1.01137742e-01 -3.96161079e-01 -8.47912580e-02\\n-2.83776402e-01 -4.96029779e-02 1.22009665e-02 -4.17151637e-02\\n-4.38448712e-02 -3.62115920e-01 -2.25929543e-02 -6.75187707e-02\\n2.08292559e-01 -1.34927928e-01 -1.33137569e-01 -1.28726855e-01\\n2.89957732e-01 1.93753809e-01 5.19462049e-01 6.83760494e-02\\n5.50446399e-02 -2.84820199e-01 -2.54280925e-01 1.36913940e-01\\n1.29251897e-01 4.51861992e-02 -1.93468109e-02 3.51282120e-01\\n-2.71862447e-01 -1.60170257e-01 2.04873756e-01 2.48101294e-01\\n-3.30449104e-01 4.29738909e-02 -1.65898025e-01 1.13079593e-01\\n5.22401296e-02 1.53852731e-01 -2.12032989e-01 -3.13155726e-02\\n-2.46620074e-01 -6.13209367e-01 3.97020102e-01 -1.75713718e-01\\n-9.39587429e-02 1.02836251e-01 2.56085634e-01 2.26512343e-01\\n-3.32940012e-01 -5.96431680e-02 2.94785947e-04 1.58428833e-01\\n1.20609440e-02 2.99338281e-01 -1.22441150e-01 -2.82858133e-01\\n-3.26080024e-01 2.29760721e-01 -6.99198544e-02 1.74302936e-01\\n-9.48989391e-03 3.76675904e-01 -4.39033583e-02 1.23578668e-01\\n3.59761894e-01 4.43524159e-02 -2.57656753e-01 -2.76704818e-01\\n-2.25956440e-01 -6.30828291e-02 -3.47759835e-02 -2.65054926e-02\\n1.74919456e-01 -3.04374039e-01 -1.42208651e-01 -1.03374600e-01\\n-1.42178416e-01 -3.70490432e-01 2.73623429e-02 -1.37706369e-01]]',\n", + " 'Unit8 is looking for Big Data/Spark Engineer to join our team. You will use Spark (pyspark) and a full set of other Big Data tools to understand the data and drive the development of ETL pipelines in the financial sector in Zurich. Our perfect candidate has already a background in working with financial data and data modelling or is willing to pick up financial domain knowledge. He/she is capable of translating complex technical and business requirements into readable, maintainable and efficient Spark pipelines that fit in the bigger picture of complete data platform. RequirementsWhat You’ll Do Design, build, maintain, and troubleshoot data pipelines that are relied on for both production and analytics applications using modern tools like Spark/Cloudera. Use your skills in Big Data and basic Data Science to harness the heterogenous financial data and enable other teams to use it Use software best practices in continuous integration and delivery, supervise code and data evolution (code reviews, versioning) Drive optimization, testing and tooling to improve data quality. Closely collaborate with other software engineers, data scientists and business owners, learning from them but also driving the discussions to analyze the nature of current problems in order to propose, implement and test proper solutions Work in multi-functional agile teams to continuously experiment, iterate and deliver on new product objectives. Who You Are You know how to work with high volume heterogeneous data, preferably with distributed systems such as Hadoop You know how to write distributed services in Python/jvm based languages You are happy to work with more junior developers - code reviewing, mentoring You are happy to work with business stakeholders - requirement gathering, prioritization You are knowledgeable about data modeling, data access, and data storage techniques. You appreciate agile software processes, data-driven development, reliability, and responsible experimentation You understand the value of teamwork. BenefitsWhat We Offer Competitive salary Sharing our profit - we offer equity Yearly bonus depending on performance of the company Work with state-of-the-art technology on projects with impact Challenging work close to a customer inside an experienced 10x engineering team Tailor-made mentorship program Dedicated budget for training 10% of the time for self-development Who We AreUnit8 is a Swiss-based startup focused on solving problems of big industries like chemical, pharma, automotive and finance. Our team comprised of world-class experts in ML and Software Engineering who previously worked for Sillicon Valley companies like Google, Amazon, Palantir or Microsoft. We work with some of the biggest companies in the world to solve the problems that directly affect their business. Apart from that, Unit8 dedicates a part of resources and time on things that deeply matter to us - that includes collaboration on pro-bono and engineering for good cases.',\n", + " '[\"Complex Problem Solving\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Mentorship\", \"Supervision\", \"Reliability\", \"Prioritization\"]',\n", + " '[\"Distributed File Systems\", \"Data Quality\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Stakeholder Requirements\", \"Data Modeling\", \"Analytic Applications\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Pyspark\", \"Naturalization\", \"Python (Programming Language)\", \"Maintainability\", \"Data Pipeline\", \"Translations\", \"Experimentation\", \"Iterators\", \"Pipelining\", \"Software Engineering\", \"Extract Transform Load (ETL)\", \"Building Design\", \"NetApp Data Storage\", \"Data Science\", \"Budgeting\", \"Business Requirements\", \"Financial Data\", \"Finance\", \"Logical Data Models\", \"Readability\", \"Close Work Orders\", \"Big Data\", \"Code Review\", \"Equities\", \"Java Virtual Machine (JVM)\", \"Data Management Platforms\", \"Resourcing\", \"Agile Model Driven Development\", \"New Product Development\", \"Process Driven Development\", \"Agile Unified Process\"]',\n", + " \"['English', 'Haitian', 'Slovenian', 'Korean', 'Estonian']\"],\n", + " ['75',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.63895744e-01 3.05287838e-01 4.17255253e-01 -3.76568027e-02\\n5.28621137e-01 -7.65151009e-02 -3.94121483e-02 2.19641954e-01\\n-2.95179654e-02 -2.23883778e-01 -1.51649013e-01 -1.48797706e-01\\n-8.57051313e-02 -6.46759244e-03 1.12375326e-01 3.74679089e-01\\n3.46432894e-01 5.21362051e-02 -1.31393820e-01 3.36848080e-01\\n1.16127342e-01 -8.61443952e-03 -2.28062682e-02 6.55917227e-01\\n3.78813326e-01 -4.45187241e-02 -1.12813048e-01 4.31255959e-02\\n-2.92736202e-01 -2.29881883e-01 3.32956433e-01 2.05876455e-02\\n-1.17689386e-01 -3.10847253e-01 9.01493877e-02 1.32867202e-01\\n-2.04548344e-01 -6.58926591e-02 -7.64697194e-02 5.48099019e-02\\n-3.25427055e-01 -2.13639870e-01 -4.98721041e-02 6.59257472e-02\\n-2.92773217e-01 -2.38441482e-01 6.97647557e-02 -2.29309313e-02\\n-4.44065854e-02 4.49392311e-02 -6.94523096e-01 3.94211501e-01\\n-2.11201966e-01 -1.72699600e-01 3.07041913e-01 5.79800665e-01\\n3.80182080e-02 -4.99353051e-01 -3.79826933e-01 -3.42782229e-01\\n6.12392463e-02 -2.84051243e-02 7.00938106e-02 -2.23967344e-01\\n3.45741212e-01 -8.35837945e-02 -6.28677458e-02 3.76448661e-01\\n-7.67838299e-01 -1.42360136e-01 -2.94134647e-01 5.10785021e-02\\n-5.15491605e-01 -4.72733192e-03 -3.41535121e-01 -1.10516600e-01\\n-1.47394072e-02 4.33841139e-01 -6.99907765e-02 6.40637875e-02\\n-1.91618785e-01 1.73135161e-01 -1.34739578e-01 2.13118866e-01\\n3.28246981e-01 1.43635184e-01 2.47165665e-01 2.99496025e-01\\n-3.23613465e-01 3.74847889e-01 2.30412439e-01 -2.43019536e-01\\n1.61144406e-01 2.86704022e-02 4.04961139e-01 1.72741249e-01\\n5.85130937e-02 2.04558581e-01 -6.81432560e-02 1.46372616e-01\\n1.71874493e-01 -2.77756691e-01 3.65511514e-02 -7.64985457e-02\\n-7.61290044e-02 6.90753013e-03 1.29842144e-02 2.21398845e-01\\n-3.78570020e-01 3.08791131e-01 1.05466813e-01 -2.63043523e-01\\n-4.14887927e-02 -5.37692606e-01 -9.07029435e-02 -1.23393901e-01\\n3.54427136e-02 2.41944373e-01 2.27564380e-01 2.22049668e-01\\n3.16384107e-01 -3.68466564e-02 1.74881011e-01 8.72597635e-01\\n-7.93836787e-02 -3.44255157e-02 -2.03934908e-01 3.73567700e-01\\n2.07029521e-01 -2.44214207e-01 1.86884895e-01 2.63759255e-01\\n5.77620454e-02 -3.95833924e-02 -2.93054491e-01 2.45021075e-01\\n-1.63934618e-01 -1.80457577e-01 -2.48366073e-01 1.77047864e-01\\n-1.92283034e-01 -4.98789072e-01 5.86059570e-01 7.36988708e-02\\n1.90691978e-01 -1.58323839e-01 8.22820142e-03 -1.20286971e-01\\n-2.95315143e-02 3.31389844e-01 3.46170962e-02 2.40710542e-01\\n-2.48225883e-01 -2.64948934e-01 -1.24504738e-01 3.62367243e-01\\n-1.34901151e-01 8.11424330e-02 -1.73935503e-01 -1.34432763e-01\\n2.81587362e-01 1.28346056e-01 -4.09630984e-01 1.96921125e-01\\n6.16104400e-04 -3.14211786e-01 -7.80354589e-02 3.03575128e-01\\n-1.03982456e-01 2.04521537e-01 -3.40906456e-02 -2.07247987e-01\\n4.78192300e-01 2.12049484e-01 2.13175580e-01 5.33061549e-02\\n1.77898586e-01 -1.81223139e-01 3.04820031e-01 8.95333216e-02\\n-7.15633154e-01 4.30286974e-01 1.37520032e-02 -3.16588908e-01\\n1.28661111e-01 3.92076299e-02 3.23912770e-01 -4.09381837e-01\\n2.42886897e-02 -1.78808570e-01 -4.27401483e-01 -3.63072664e-01\\n-1.78385392e-01 -4.92088795e-02 3.90573561e-01 -3.67095411e-01\\n-4.34985012e-02 2.13553622e-01 -5.68534076e-01 -2.43125588e-01\\n9.54628065e-02 1.21142007e-01 9.30622816e-02 8.86082277e-02\\n-8.35864469e-02 -5.66973627e-01 8.73835236e-02 -4.62185532e-01\\n-4.08946723e-01 8.35794508e-02 -2.68532187e-01 1.41610295e-01\\n-1.18781114e-02 1.31553197e-02 -1.04655676e-01 1.54358745e-01\\n-3.98262084e-01 -9.62809194e-03 1.98483139e-01 8.36385041e-02\\n2.71697819e-01 1.44144706e-02 -3.17770332e-01 5.37018120e-01\\n-1.99240163e-01 4.90726560e-01 2.31304854e-01 -8.60578835e-01\\n5.21407068e-01 3.43164414e-01 2.22460739e-02 -2.33426064e-01\\n5.13758183e-01 -4.97482747e-01 -6.06347360e-02 7.87461847e-02\\n-2.08925754e-01 -2.40486860e-01 2.25190818e-01 -2.07355395e-01\\n-2.13167191e-01 6.52321041e-01 9.79803875e-02 7.58459866e-02\\n2.71201223e-01 -2.84002364e-01 -1.53032288e-01 2.37227022e-03\\n-1.02579683e-01 -3.13373119e-01 -4.47354853e-01 1.47278711e-01\\n-8.71924534e-02 -4.49230105e-01 -7.66515210e-02 -3.57810706e-01\\n-2.21492305e-01 -3.44946384e-01 -2.27335617e-01 3.60882729e-01\\n1.85643122e-01 1.77990466e-01 -6.16993643e-02 -5.14491051e-02\\n-1.02851771e-01 -5.54654419e-01 -8.66867602e-02 3.32162948e-03\\n4.31876391e-01 3.62463474e-01 9.45574194e-02 -8.42925608e-02\\n8.26074183e-03 4.65907842e-01 -3.91740888e-01 -3.86247605e-01\\n1.07361972e-01 1.00068875e-01 -4.90035005e-02 -9.85731781e-02\\n3.26036960e-02 3.74385118e-01 -2.08796039e-01 1.12648373e-02\\n-4.57389727e-02 -3.89988311e-02 3.71879041e-01 -7.86995143e-02\\n-7.84889907e-02 -1.51575401e-01 -8.80367085e-02 3.00601274e-01\\n-4.99792159e-01 -2.49258369e-01 5.60377479e-01 2.93808132e-01\\n1.43041015e-01 2.06354499e-01 3.31196755e-01 -3.49770598e-02\\n-2.06297949e-01 -2.90130764e-01 2.12465703e-01 1.66993886e-01\\n7.31567144e-02 6.01084828e-02 -1.06181867e-01 -5.50977409e-01\\n-3.15280676e+00 -2.17105091e-01 1.45241916e-01 -3.43216449e-01\\n2.67708004e-01 -1.54985771e-01 1.30030751e-01 6.69704098e-03\\n-3.34034979e-01 4.52787690e-02 -2.20231265e-01 -1.74990818e-01\\n1.28831165e-02 2.72709757e-01 1.94780767e-01 1.52164742e-01\\n8.37561414e-02 -2.68050253e-01 3.87446918e-02 3.70353371e-01\\n-1.19925745e-01 -7.14178562e-01 1.80286601e-01 9.42177139e-03\\n7.70942420e-02 2.23137647e-01 -4.02056843e-01 -1.43472865e-01\\n-2.57242143e-01 -2.31587946e-01 1.06009997e-01 -2.90270150e-01\\n-1.58509761e-01 3.49024445e-01 1.61613375e-01 -7.89339170e-02\\n2.04098672e-02 -3.20250034e-01 -3.94122005e-02 -5.13191283e-01\\n4.91619073e-02 -6.12865329e-01 2.81341821e-02 1.23053333e-02\\n6.60218775e-01 -2.08736971e-01 1.86504304e-01 1.62982315e-01\\n2.01037467e-01 1.79964364e-01 8.16345587e-02 3.88069041e-02\\n-3.61902803e-01 -3.67877930e-01 -4.46006544e-02 -1.96659148e-01\\n4.78486240e-01 4.24187601e-01 -1.86090052e-01 9.37778577e-02\\n4.69847657e-02 -2.82542944e-01 -3.41365665e-01 -4.71666187e-01\\n-2.57800221e-01 -9.94523838e-02 -6.63240254e-01 -4.74724710e-01\\n-3.34360376e-02 -8.48285183e-02 -6.95694089e-02 6.08738005e-01\\n-2.38730520e-01 -2.89296806e-01 3.93362306e-02 -6.06229424e-01\\n2.48990953e-01 -2.68990010e-01 8.68642852e-02 -1.86798245e-01\\n-2.09795952e-01 -5.24125874e-01 1.87672168e-01 -1.01832181e-01\\n-8.64565447e-02 -6.10309914e-02 -7.68753439e-02 -2.43118674e-01\\n-3.94441873e-01 -5.15174568e-01 4.78138685e-01 2.48377845e-02\\n4.03370976e-01 7.15769082e-02 3.49179000e-01 1.69358730e-01\\n3.80450875e-01 -1.19852625e-01 4.74263206e-02 -3.51269901e-01\\n6.56347424e-02 8.93278494e-02 5.52273154e-01 -2.60145485e-01\\n9.12769884e-02 9.63393226e-02 -2.64770716e-01 1.72053911e-02\\n3.87868732e-01 -9.01071820e-03 1.18194424e-01 -1.22112446e-01\\n3.10929030e-01 -5.40421784e-01 -2.32235715e-01 2.19883710e-01\\n-3.16703762e-03 6.62214875e-01 1.26162380e-01 -3.72878611e-01\\n-1.55667946e-01 3.66002083e-01 -2.37014517e-02 -1.95553929e-01\\n-1.00393102e-01 1.47064060e-01 -2.01775491e-01 1.86912656e-01\\n8.10760446e-03 -1.57243863e-01 -3.81503582e-01 -1.32620871e-01\\n-5.38106374e-02 2.58042812e-01 2.85235167e-01 7.45571554e-02\\n-6.33479655e-02 -2.10422188e-01 -6.14981055e-02 1.82702795e-01\\n3.25473219e-01 2.87844449e-01 1.48778602e-01 -3.18571717e-01\\n-8.81954376e-03 2.23850548e-01 -2.77969778e-01 3.02691549e-01\\n-1.20585993e-01 8.25181231e-02 -5.20129144e-01 -1.51294768e-01\\n-1.95990533e-01 -3.02435964e-01 1.57995820e-01 2.82610416e-01\\n1.32528737e-01 -2.70623099e-02 4.25996259e-02 -4.81244117e-01\\n3.66474658e-01 4.54892451e-03 8.74662772e-02 7.62791708e-02\\n-1.59706883e-02 5.45949697e-01 -4.72820550e-02 -4.68002595e-02\\n-1.23226650e-01 5.15441597e-02 -2.26655662e-01 -3.88403416e-01\\n1.64561361e-01 -4.01982278e-01 -1.35499001e-01 3.82584751e-01\\n1.69454738e-01 -1.51394516e-01 -1.97674498e-01 2.79219210e-01\\n1.02385329e-02 -2.75527865e-01 -2.17845753e-01 4.61275689e-03\\n2.75441915e-01 1.64858520e-01 1.96608081e-01 -4.41324174e-01\\n-9.04914960e-02 -2.05356684e-02 -1.79956127e-02 3.82876396e-01\\n1.85763419e-01 8.98169875e-02 -3.96185070e-02 -2.08418339e-01\\n5.07777631e-01 3.87730310e-03 -9.00021419e-02 5.49369343e-02\\n1.35245204e-01 -2.84267187e-01 -3.96683514e-01 -1.30731270e-01\\n-4.15769406e-02 -2.53024131e-01 3.79143991e-02 8.29394162e-02\\n8.60111713e-02 -2.99817584e-02 -5.62206268e-01 -1.81235284e-01\\n-2.79934794e-01 4.84399013e-02 1.88704412e-02 -5.26448071e-01\\n5.70087396e-02 -7.21805990e-02 -5.93094409e-01 2.50572085e-01\\n-1.60552874e-01 3.88097689e-02 1.72773395e-02 8.77578333e-02\\n-2.80294478e-01 -8.38516355e-02 1.23002864e-01 1.24726802e-01\\n-2.64754653e-01 -1.88302979e-01 2.68531349e-02 -1.05079353e+00\\n1.14569291e-01 7.96799213e-02 -7.40502551e-02 9.06327143e-02\\n7.71728531e-02 -6.09483957e-01 9.97033566e-02 -4.07570213e-01\\n9.42799151e-02 1.04335845e-01 -2.28163049e-01 -3.07803124e-01\\n1.88984752e-01 -6.58035930e-03 -2.47501269e-01 3.78270686e-01\\n-4.39065218e-01 3.23343188e-01 5.11868857e-02 1.36629149e-01\\n7.64637962e-02 -2.43811727e-01 1.11777239e-01 -2.46417195e-01\\n-4.40238535e-01 -2.16521025e-01 -2.93592989e-01 -2.55810440e-01\\n6.14849143e-02 -2.84920871e-01 -7.29003400e-02 4.45559155e-03\\n3.93786371e-01 1.23794019e-01 -1.82809621e-01 -1.93216920e-01\\n1.20383285e-01 -4.08869743e-01 7.23522678e-02 -2.76056677e-01\\n-1.82382911e-02 -9.72226039e-02 1.69590786e-01 -1.48465466e-02\\n2.05771565e-01 -2.79238164e-01 3.87805730e-01 -3.44626725e-01\\n-3.58865231e-01 -1.08502872e-01 6.18053079e-02 -2.63589714e-02\\n2.88811564e-01 -4.86190289e-01 5.43416552e-02 2.88795173e-01\\n1.25032544e-01 1.14335269e-01 3.04251671e-01 -1.50564626e-01\\n-1.38876140e-01 2.15690255e-01 -5.84826350e-01 8.77067372e-02\\n8.05995286e-01 2.05583364e-01 4.27641235e-02 1.55382454e-01\\n1.99689463e-01 2.07493111e-01 4.03847069e-01 -9.91983637e-02\\n-6.53214753e-03 2.96378285e-01 1.14673808e-01 -6.04148269e-01\\n-1.89301372e-01 -1.91636860e-01 -2.12933108e-01 -2.97016889e-01\\n5.72949111e-01 2.82916009e-01 -3.46922129e-01 -3.68151218e-01\\n-1.04234405e-01 -1.08931549e-01 2.91695416e-01 -3.54174227e-02\\n-2.19749212e-02 -1.35175511e-01 5.01668572e-01 -5.00252508e-02\\n2.29391143e-01 5.36705434e-01 1.11739384e-02 -2.83394635e-01\\n-1.24921121e-01 1.23811081e-01 1.20361738e-01 4.75744247e-01\\n-1.42359674e-01 2.27318332e-01 -3.57865021e-02 1.83223739e-01\\n-1.25249460e-01 1.84688773e-02 2.06565827e-01 5.77595010e-02\\n1.73738971e-01 2.74043605e-02 3.49183321e-01 4.80053306e-01\\n2.03826666e-01 4.58892345e-01 3.17585677e-01 3.10171284e-02\\n3.54271144e-01 6.10677183e-01 3.63353640e-01 1.26161933e-01\\n1.11672506e-02 1.26187563e-01 2.19631679e-02 -1.56424358e-01\\n3.04473013e-01 3.58155161e-01 1.09054707e-01 8.40945244e-01\\n3.44411939e-01 4.08260345e-01 7.58903742e-01 -6.54143989e-01\\n-3.65426391e-01 6.55385330e-02 5.59831083e-01 -3.92442971e-01\\n-3.61497737e-02 6.17549419e-02 -2.42685810e-01 3.74237269e-01\\n-5.45959651e-01 -9.56491306e-02 1.86301284e-02 -1.25929415e-01\\n4.40866649e-02 2.24842243e-02 -1.27773032e-01 6.39845207e-02\\n-2.52536893e-01 -2.80733317e-01 -3.51040840e-01 -1.90720007e-01\\n-3.05693060e-01 -7.37408251e-02 -4.61046100e-02 -1.13667138e-01\\n-1.62264794e-01 -2.59654522e-01 -3.60225439e-02 -3.50322537e-02\\n3.55278462e-01 -1.55716419e-01 -1.34486809e-01 -1.30861849e-01\\n2.32293069e-01 2.49595761e-01 6.29372776e-01 -9.78497341e-02\\n1.67412251e-01 -1.14967301e-01 -2.62375385e-01 3.94959114e-02\\n6.51534125e-02 9.26111788e-02 8.80367979e-02 4.91617799e-01\\n-3.58278543e-01 -1.79087222e-01 2.01314375e-01 2.06708550e-01\\n-3.68043691e-01 -4.47719395e-02 -2.31344923e-02 9.80158821e-02\\n6.27909601e-02 1.88289165e-01 -2.35388532e-01 3.75367962e-02\\n-1.87578842e-01 -5.59995651e-01 4.87147331e-01 -2.19631001e-01\\n-1.67803437e-01 1.48798242e-01 3.74096841e-01 2.60262907e-01\\n-2.44368047e-01 -3.98179553e-02 -9.58795771e-02 2.92218238e-01\\n6.83486983e-02 3.16484958e-01 -2.13872001e-01 -1.94104120e-01\\n-2.46031314e-01 2.63403237e-01 -1.31202891e-01 1.53585240e-01\\n-8.08748603e-02 3.18634480e-01 8.68555009e-02 1.12147957e-01\\n2.56462187e-01 5.19505069e-02 -3.17834318e-01 -3.21364641e-01\\n-2.23731980e-01 -1.84150010e-01 8.01416188e-02 -5.90254404e-02\\n1.77383751e-01 -2.34694585e-01 -1.66571334e-01 -2.87593514e-01\\n-1.76571652e-01 -3.63194585e-01 -1.20753400e-01 1.12032993e-02]]',\n", + " 'Job Informationen Your tasks: You will be expected to lead projects in development and deployment of production-ready applications using machine learning algorithms, such as banking product recommender systems, payment fraud detection, and quantitative decision-support tools and services. Typical projects include the full data science lifecycle, including data extraction from transactional sources and transformation for analytical purpose. You will provide hands-on leadership to projects working with large datasets and extensive timeseries such as financial market data, transactions data and client interaction profiles, employing various statistical and numerical methods to analyse both structured and unstructured data to develop predictive models. As our technology is generally delivered as packaged software or as a service in the cloud, it is important that you are experienced in and can lead others hands-on to perform the software development life-cycle professionally and efficiently. Taking a leading role in consulting to clients is also a part of the job description. You are therefore expected to possess strong communication skills in addition to excellent technical capabilities. Requirements: - University degree in computer science, engineering or comparable numerical fields - Passion for applying technology to solve business problems - Experienced in the financial services industry in either a quantitative or technology role - Experience in project leadership & coordination, client communication (including senior management levels), and successful project delivery - Experience in developing production-ready machine learning applications and setting up data science pipelines - Solid experience with Linux and software collaboration tools: continuous integration (i.e. Jenkins or CircleCI), source control (git, svn), issue management (Jira, Confluence) - Knowledge of multiple programming languages is beneficial (Python, R, Java, Scala) - Substantial experience in applying modern big data tools for scalability and distributed computing (Apache Spark, PySpark, Dask) and data stores (SQL or NoSQL), such as MongoDB and Neo4j - Strong communication skills in English and the ability to make coherent technical arguments; working proficiency in German is a must - Eligible to live and work in Switzerland Benötigte Skills Banken / Finanzgesellschaften Projektleitung Jira Linux Python Python R JAVA Scala Apache SQL NoSQL Englisch',\n", + " '[\"Verbal Communication Skills\", \"Leadership\", \"Professionalism\", \"Coordinating\", \"Management\", \"Communications\", \"Sourcing\", \"Consulting\"]',\n", + " '[\"Apache Spark\", \"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"KM Programming Language\", \"Circleci\", \"Software Development Life Cycle\", \"Interactivity\", \"Collaborative Software\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Collaboration Tools\", \"Decision Support Systems\", \"Continuous Integration\", \"Recommender Systems\", \"Financial Services\", \"Applied Business Technologies\", \"Distributed Computing\", \"Scala (Programming Language)\", \"Pyspark\", \"Service Level Management\", \"Python (Programming Language)\", \"Linux\", \"Data Extraction\", \"MongoDB\", \"Transaction Data\", \"E (Programming Language)\", \"Source (Game Engine)\", \"Dataset\", \"Pipelining\", \"Financial Market\", \"Machine Learning Methods\", \"Unstructured Data\", \"Data Science\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Data Store\", \"Transformation (Genetics)\", \"Atlassian Confluence\", \"Banking\", \"Software Development\", \"Algorithms\", \"Additives\", \"Service Industries\", \"Git Flow\", \"Neo4j\", \"Amazon Data Pipeline\", \"Market Data\", \"JIRA Studio\", \"Java (Programming Language)\", \"Job Descriptions\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Chuvash']\"],\n", + " ['57',\n", + " 'c++ software development engineer',\n", + " 'Unterentfelden',\n", + " 'Computer Hardware & Software',\n", + " 'www.hexagon.com',\n", + " '[[-1.54618099e-01 3.89143944e-01 5.09049058e-01 -9.65741798e-02\\n5.67536414e-01 -1.22960091e-01 3.81881520e-02 2.98756510e-01\\n1.69447549e-02 -3.23508859e-01 -2.24941477e-01 -2.90438056e-01\\n-3.86461541e-02 -5.35851857e-03 8.62632096e-02 5.29451251e-01\\n2.92639971e-01 1.63329821e-02 -1.65439174e-01 4.00280774e-01\\n6.70399740e-02 -1.30536363e-01 2.01959938e-01 6.72956049e-01\\n3.42955559e-01 -1.08423401e-02 2.89842095e-02 -3.85596324e-03\\n-2.37996221e-01 -1.99050456e-01 3.79731923e-01 5.61525002e-02\\n-2.26014644e-01 -4.15623635e-01 6.20941594e-02 1.91115588e-01\\n-1.41476810e-01 -3.33002470e-02 -2.62992252e-02 1.44758776e-01\\n-5.25140822e-01 -3.53081107e-01 4.92205285e-02 -2.67142914e-02\\n-2.35074744e-01 -3.20273072e-01 1.25041455e-01 -4.27913480e-02\\n-2.77809538e-02 9.13154632e-02 -4.32981879e-01 3.22847962e-01\\n-2.56377965e-01 -1.72818854e-01 3.14492792e-01 6.58517838e-01\\n-5.39667271e-02 -4.93250698e-01 -3.99023503e-01 -2.53276348e-01\\n7.95491114e-02 -1.47057194e-02 -6.60235574e-03 -2.35741213e-01\\n4.19521838e-01 -9.13119540e-02 -1.21985853e-01 2.98219681e-01\\n-7.44005322e-01 -1.05459958e-01 -2.86731422e-01 -2.61336342e-02\\n-3.62767637e-01 -8.04213062e-02 -2.21055940e-01 -2.20309466e-01\\n-7.58841410e-02 3.58574450e-01 1.36963390e-02 7.88454153e-03\\n-1.61824793e-01 3.40631902e-01 -1.10626824e-01 2.45939761e-01\\n3.21417809e-01 2.30065927e-01 2.46290490e-01 3.01855117e-01\\n-4.49905902e-01 3.92784715e-01 1.65125445e-01 -2.68059313e-01\\n1.99164286e-01 8.76920745e-02 3.97254705e-01 1.31248310e-01\\n-3.52488048e-02 1.35279298e-01 -2.35336572e-01 2.64528424e-01\\n2.65920848e-01 -1.61506638e-01 -1.27661116e-02 -3.64867002e-02\\n-4.28374968e-02 -5.77242374e-02 4.80339862e-02 2.54126906e-01\\n-3.65552574e-01 3.78500879e-01 1.62364274e-01 -2.46197507e-01\\n-8.83050077e-03 -5.86377323e-01 -2.22073004e-01 -2.59210430e-02\\n6.17630333e-02 2.02233925e-01 2.84768641e-01 2.73241550e-01\\n3.09558481e-01 -5.99102452e-02 1.26509041e-01 9.52667296e-01\\n-6.49159849e-02 1.71797320e-01 -2.49836832e-01 5.14901161e-01\\n1.46904901e-01 -3.76003593e-01 1.68846786e-01 3.30233425e-01\\n5.89482440e-03 -8.89862105e-02 -2.00748339e-01 2.89657682e-01\\n-1.02835499e-01 -2.56204426e-01 -3.28726679e-01 1.99098542e-01\\n-1.57101363e-01 -4.88311738e-01 5.59774458e-01 -5.31339273e-03\\n4.41078916e-02 -7.15244189e-02 -1.60193771e-01 3.52091156e-02\\n-5.01323007e-02 3.35492104e-01 5.45355007e-02 4.19197232e-02\\n-3.57471675e-01 -2.40365535e-01 -2.64163077e-01 2.29739904e-01\\n-1.66869283e-01 1.75985515e-01 -2.40751207e-01 -2.41244689e-01\\n2.86476672e-01 2.20193267e-02 -4.67349827e-01 3.57372195e-01\\n-4.93327528e-02 -1.25278726e-01 -4.00690846e-02 3.29458535e-01\\n-1.75488248e-01 2.12900296e-01 5.71311451e-02 -1.99481413e-01\\n5.21703124e-01 6.31898195e-02 1.50833979e-01 -1.08988911e-01\\n3.82068306e-01 -1.06803991e-01 1.95333704e-01 1.77968040e-01\\n-6.06419981e-01 4.08256501e-01 -8.65222365e-02 1.61584560e-02\\n9.99960229e-02 -2.51125265e-02 4.64302182e-01 -2.73517698e-01\\n-1.21717393e-01 -2.42528856e-01 -3.16910386e-01 -3.59680772e-01\\n-2.47763604e-01 -3.01649794e-02 3.50776553e-01 -3.80049020e-01\\n-7.13144317e-02 2.52459884e-01 -5.92665613e-01 -3.44788842e-02\\n2.44498491e-01 2.35957220e-01 2.60260582e-01 1.52683243e-01\\n-1.90540418e-01 -5.53931236e-01 1.78228449e-02 -3.70877773e-01\\n-3.31059068e-01 1.42616451e-01 -1.59629449e-01 2.55565315e-01\\n9.54848006e-02 5.09208925e-02 -1.32721588e-01 2.83760559e-02\\n-3.29497635e-01 -1.45419668e-02 2.01949939e-01 1.10824652e-01\\n1.27135441e-01 -6.70668250e-03 -4.01907593e-01 4.87152219e-01\\n-1.50453374e-01 5.46891749e-01 9.91660282e-02 -9.85745192e-01\\n5.01998425e-01 2.71160603e-01 2.70486027e-02 -4.34481680e-01\\n6.56641424e-01 -3.80730182e-01 -9.90642980e-02 1.49804756e-01\\n-3.47977817e-01 -2.19491869e-01 2.10256264e-01 -1.93183899e-01\\n-2.38661394e-01 5.88405192e-01 7.46780485e-02 3.26739401e-02\\n2.78656602e-01 -2.15997443e-01 -1.54089645e-01 4.80760299e-02\\n-1.04387522e-01 -2.03592911e-01 -4.48495477e-01 6.27460331e-02\\n-8.64931494e-02 -4.97938931e-01 -2.37147391e-01 -5.29505908e-01\\n-1.32020146e-01 -3.72561216e-01 -1.65834263e-01 2.56583840e-01\\n1.87403455e-01 7.21768439e-02 5.18181361e-02 4.05724421e-02\\n-1.98745161e-01 -7.35531271e-01 -8.36018249e-02 4.70702536e-02\\n2.87959218e-01 2.49204084e-01 1.54015720e-01 4.37249728e-02\\n5.36141032e-03 5.35523713e-01 -3.07178229e-01 -2.22894415e-01\\n1.28105760e-01 1.66731790e-01 -2.49532182e-02 -4.97771055e-02\\n1.76257998e-01 4.02080834e-01 -2.35741422e-01 7.36688077e-02\\n-1.21377960e-01 8.22339803e-02 3.63423914e-01 -7.93753043e-02\\n-2.06546098e-01 -2.36631289e-01 -6.38097897e-02 2.39078268e-01\\n-6.17504120e-01 -2.92727828e-01 5.40913045e-01 1.39390618e-01\\n7.89543018e-02 9.67703983e-02 3.77769232e-01 -2.06822544e-01\\n-1.84880599e-01 -8.94260630e-02 1.43946320e-01 1.54490948e-01\\n5.26454076e-02 1.35100922e-02 -9.28519964e-02 -5.59488237e-01\\n-3.15681767e+00 -5.34394942e-02 9.84933823e-02 -2.42253110e-01\\n1.35125652e-01 -1.21987276e-01 7.66179115e-02 -3.80421393e-02\\n-3.40037465e-01 1.08533345e-01 -1.79354280e-01 -9.04224962e-02\\n1.36228815e-01 2.71269530e-01 1.35766849e-01 1.48275822e-01\\n8.66556838e-02 -3.32028836e-01 -5.33029623e-03 4.03992951e-01\\n-8.77189934e-02 -7.13490546e-01 1.83653161e-01 -7.43045956e-02\\n3.00741404e-01 5.16787060e-02 -4.52029556e-01 -1.43654272e-01\\n-2.52759218e-01 -2.78138578e-01 1.49115935e-01 -1.74116760e-01\\n-1.21141948e-01 3.53979588e-01 2.08349809e-01 -1.13166399e-01\\n1.40428826e-01 -3.03774476e-01 -4.23392542e-02 -4.20055956e-01\\n3.86209786e-02 -5.99688649e-01 2.72603780e-02 -5.20411618e-02\\n5.83321452e-01 -2.11528897e-01 1.95961818e-01 1.84097171e-01\\n1.20724119e-01 2.78540641e-01 3.58227342e-02 -2.43673250e-02\\n-2.24705845e-01 -2.85149634e-01 -8.39482918e-02 -1.20878614e-01\\n5.52769601e-01 5.23924172e-01 -2.22827509e-01 -2.98601203e-02\\n-2.84989569e-02 -2.74463177e-01 -5.69567621e-01 -3.52037907e-01\\n-1.79550514e-01 -9.86900404e-02 -8.01472247e-01 -4.09514010e-01\\n-1.31633580e-01 -1.47927210e-01 -1.36325583e-01 6.01689935e-01\\n-3.48467201e-01 -3.26819628e-01 1.20757688e-02 -4.60074574e-01\\n1.86222658e-01 -2.30171859e-01 4.63781739e-03 -1.90983057e-01\\n-2.02970862e-01 -4.23297822e-01 1.45552441e-01 1.12203717e-01\\n-1.29378811e-01 -1.30980834e-01 2.05250382e-02 -3.02450716e-01\\n-2.34245285e-01 -4.51907545e-01 4.98113096e-01 9.35951620e-02\\n3.76581460e-01 -2.46702619e-02 2.19077557e-01 8.70767224e-04\\n4.49835509e-01 -8.15717429e-02 8.94814804e-02 -5.20929217e-01\\n-5.98815121e-02 4.44927625e-02 6.23434901e-01 -2.84598112e-01\\n-6.73542991e-02 1.20774508e-01 -1.66066527e-01 -3.14577296e-02\\n4.10794973e-01 6.30336627e-02 6.72706440e-02 -2.73384869e-01\\n2.53057390e-01 -4.63822275e-01 -1.91310689e-01 8.41301605e-02\\n4.41267230e-02 6.45666003e-01 -7.21386895e-02 -4.60637689e-01\\n-2.05543861e-01 3.93736243e-01 -6.58919439e-02 -1.87078550e-01\\n-1.61248982e-01 1.62874460e-01 -3.57508391e-01 2.48478547e-01\\n1.56116299e-02 -1.42154545e-01 -3.87192786e-01 -5.57514466e-02\\n-2.15552896e-02 2.26344749e-01 2.88914800e-01 1.47699311e-01\\n-9.48880315e-02 -3.94125104e-01 -6.11509271e-02 1.26902714e-01\\n2.44433612e-01 2.08002940e-01 7.47048557e-02 -3.43898803e-01\\n7.62036964e-02 3.16252023e-01 -1.96142450e-01 2.10682303e-01\\n-1.61187977e-01 1.02039158e-01 -4.93739396e-01 -2.25151464e-01\\n-2.17559651e-01 -2.12366790e-01 9.61583257e-02 3.38968277e-01\\n1.81513876e-01 -9.73146502e-03 1.17653251e-01 -5.90803027e-01\\n3.63143325e-01 1.22776702e-01 1.91177860e-01 1.50318995e-01\\n1.18326999e-01 6.55165911e-01 1.51795167e-02 -1.88765362e-01\\n-1.80702955e-01 3.14146020e-02 -1.24567062e-01 -2.52788216e-01\\n5.77417389e-03 -4.29123878e-01 -1.20776571e-01 4.04752254e-01\\n9.66578946e-02 -2.58190721e-01 -2.21192017e-01 2.18194321e-01\\n1.09097309e-01 -2.81112015e-01 -2.06215680e-01 7.34604895e-02\\n1.89475611e-01 8.28502178e-02 2.65355200e-01 -4.25878108e-01\\n7.85965621e-02 -1.06037922e-01 1.85314212e-02 3.82015914e-01\\n1.61986902e-01 8.66450071e-02 -2.14960858e-01 -2.33081266e-01\\n3.65050465e-01 -3.06593049e-02 -9.85030085e-02 -1.00614466e-01\\n8.86598006e-02 -2.11213365e-01 -3.47770154e-01 4.16011848e-02\\n3.07001527e-02 -1.70261025e-01 -1.72148217e-02 4.02693078e-02\\n1.29924491e-01 3.55638415e-02 -5.64481854e-01 -2.84480691e-01\\n-2.45546892e-01 -1.99344214e-02 -6.91005737e-02 -4.56210077e-01\\n9.63350199e-03 2.17225007e-03 -6.37623072e-01 2.32062608e-01\\n-1.74986616e-01 -1.19105093e-02 1.50779977e-01 8.22377279e-02\\n-3.78822297e-01 -2.72701830e-01 1.18326984e-01 1.56765163e-01\\n-2.19174176e-01 -1.89722896e-01 -3.91815566e-02 -9.95388150e-01\\n2.10241348e-01 -2.96791047e-02 6.11168938e-03 1.64729521e-01\\n-1.38270035e-01 -8.34559977e-01 7.99586847e-02 -4.59912628e-01\\n-5.03978617e-02 2.40749903e-02 -1.55293316e-01 -4.21584427e-01\\n3.18494043e-03 -1.28338132e-02 -1.93308219e-01 3.53885561e-01\\n-4.86355841e-01 4.53691512e-01 -9.24880803e-02 1.28068745e-01\\n-4.22302708e-02 -2.96799242e-01 1.24242246e-01 -4.30849582e-01\\n-4.45544690e-01 -1.01224877e-01 -3.42922360e-01 -2.43550718e-01\\n-8.01290423e-02 -2.14901939e-01 -1.86146945e-01 7.90995583e-02\\n3.49012494e-01 1.16718866e-01 -9.44228992e-02 -1.45397976e-01\\n-1.29492208e-02 -3.70724142e-01 1.52573809e-01 -2.36557230e-01\\n2.96522360e-02 -1.05543584e-01 2.60140777e-01 9.28126741e-03\\n1.39393806e-01 -3.34815681e-01 4.48461026e-01 -3.06142509e-01\\n-3.73616040e-01 -4.76591988e-03 8.22496414e-02 4.78394739e-02\\n4.15680468e-01 -4.46204513e-01 7.08519369e-02 3.15320730e-01\\n-1.03978328e-02 7.72280395e-02 3.03771585e-01 -1.84963062e-01\\n-1.51519775e-01 1.76267520e-01 -5.08940935e-01 7.60158673e-02\\n6.44866407e-01 2.23713979e-01 1.94563866e-01 1.21470325e-01\\n8.55949819e-02 2.62387365e-01 5.29690027e-01 -9.65695828e-02\\n-8.17004591e-02 3.01401079e-01 1.18478060e-01 -4.89300370e-01\\n-1.68362871e-01 3.42328362e-02 -2.10482910e-01 -3.36371869e-01\\n5.87874711e-01 4.00158763e-01 -3.26516360e-01 -2.25504622e-01\\n-1.75248578e-01 -2.00424492e-01 2.48733640e-01 -9.29925963e-02\\n3.47641222e-02 -1.46142602e-01 5.25421202e-01 -1.31914811e-02\\n2.87766814e-01 6.70130134e-01 -1.39748409e-01 -3.74768436e-01\\n-6.27821237e-02 1.86250106e-01 4.95405607e-02 4.38594848e-01\\n-2.92769261e-02 2.68550515e-01 2.84384135e-02 1.50260583e-01\\n-2.28690878e-01 7.69244134e-02 1.99819177e-01 1.25651926e-01\\n1.72179699e-01 1.81311443e-01 4.19532597e-01 4.85740602e-01\\n3.44022393e-01 5.25828540e-01 2.24859208e-01 2.90669631e-02\\n5.23472309e-01 5.46586692e-01 3.70946079e-01 1.85443550e-01\\n9.28168278e-03 1.96565613e-01 3.36900800e-02 5.63553646e-02\\n4.02377874e-01 3.33543152e-01 2.30170459e-01 9.00894821e-01\\n3.10412109e-01 4.19768780e-01 8.59087229e-01 -5.77185392e-01\\n-3.81871909e-01 3.82917933e-02 4.85036314e-01 -3.99065405e-01\\n-1.15501128e-01 9.95718315e-02 -1.37473613e-01 1.99428588e-01\\n-4.26239312e-01 -2.26816311e-01 -6.75036311e-02 6.18164130e-02\\n7.81300515e-02 -6.11863472e-02 -1.94224134e-01 5.13911061e-02\\n-3.04338753e-01 -1.30060166e-01 -4.28534299e-01 -1.48547679e-01\\n-3.31156373e-01 -6.62256405e-02 -1.21509805e-01 -1.64979786e-01\\n-1.01810642e-01 -2.82223254e-01 -1.42185792e-01 -4.73085679e-02\\n2.92213887e-01 -2.70095736e-01 -2.03561604e-01 -2.46930420e-01\\n2.22086355e-01 2.54910082e-01 4.95715588e-01 -2.20354497e-02\\n1.68087900e-01 -1.77644938e-01 -2.64950603e-01 1.13510517e-02\\n1.67651191e-01 1.40842751e-01 6.50413036e-02 5.22554576e-01\\n-2.45464087e-01 -1.02193050e-01 7.51220658e-02 4.58513826e-01\\n-2.71154523e-01 -5.72787113e-02 -1.57778591e-01 7.29441792e-02\\n-2.14735549e-02 1.49690762e-01 -2.94493526e-01 1.99490208e-02\\n-1.67247891e-01 -6.37611985e-01 3.59891146e-01 -2.50506103e-01\\n-1.03410117e-01 8.73118788e-02 2.96337545e-01 2.74575025e-01\\n-1.06553182e-01 1.31165946e-03 -1.54510468e-01 2.71891892e-01\\n1.16456620e-01 3.82360667e-01 -3.56671482e-01 -1.77260950e-01\\n-1.68665811e-01 1.46800652e-01 -2.26669163e-01 7.94112086e-02\\n-9.15244296e-02 4.05253470e-01 5.24261482e-02 1.19566478e-01\\n4.05661762e-01 1.78980362e-02 -2.99085587e-01 -2.62189686e-01\\n-1.98534638e-01 -2.97964066e-01 8.36004876e-03 3.85739356e-02\\n2.90382475e-01 -2.68002659e-01 -7.38082975e-02 -2.05758408e-01\\n-2.26247638e-01 -4.50070679e-01 -3.18310373e-02 4.15710136e-02]]',\n", + " 'Hexagon Manufacturing Intelligence offers a comprehensive range of products and services for all industrial metrology applications in sectors such as automotive, aerospace, energy and medical. By empowering our customers to fully control their manufacturing processes, we enhance the quality of products and increase efficiency in manufacturing plants around the world. To strengthen our R&D Team in Unterentfelden (Switzerland) we are looking for a C++ Software Development Engineer Develop innovative Windows software in a team for our Portable industrial measurement instruments, contribute to entirely new interdisciplinary technology developments for industry automation and production intelligence! Main responsibilities Design and develop software for highest precision Portable Arms, Scanners and Laser Trackers in a team Analyse customer needs in cooperation with requirements engineering team and form functional software specifications Develop prototypes of the technical solution for validation of requirements Define, plan and implement technical as well as functional testing of the software in cooperation with test team Analyse the technical and functional quality, propose fixes and put in technical compliance Edit technical documents and media for developers, users, IT services and further relevant stakeholders Required skills Programming language C ++, Visual Studio 2012 or greater Windows System Programming Mandatory (Multi-threading environment and good knowledge of communication protocols based on USB, TCP/IP) University degree (ETH, EPFL, FH, Haute école) in Electrical Engineering, Computer Science or other relevant education At least 5 years experiences in a similar working environment Application Architecture experience SQL language skills appreciated C# and C++/CLI experience appreciated Knowledge of DevExpress recommended Knowledge of algorithms and maths Reliable analysis and synthesis skills Very good English and German skills are mandatory, French is an advantage Willingness to travel (10-20%) between Unterentfelden (CH) and Montoire (F) If you are ready to work within a culture of high-performance and feel at home in a high-tech environment and you are ready to take the challenge at Hexagon Manufacturing Intelligence, join our team. E-mail',\n", + " '[\"Editing\", \"Innovation\", \"Planning\", \"Cooperation\"]',\n", + " '[\"Common Technical Document\", \"KM Programming Language\", \"Stakeholder Requirements\", \"Computer Science\", \"High Performance Computing\", \"System Programming\", \"Industrialization\", \"C++ (Programming Language)\", \"Windows System Administration\", \"Prototyping\", \"Industrial Automation\", \"Instrumentation\", \"E (Programming Language)\", \"TCP/IP\", \"Medic\", \"C++/CLI\", \"Microsoft Visual Studio\", \"Applications Architecture\", \"ARM Architecture\", \"Functional Testing\", \"USB\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Windows Software\", \"Requirements Engineering\", \"Laser Tracker\", \"Application Environments\", \"Validations\", \"DevExpress\", \"Software Requirements Specification\", \"Technical Solution Design\", \"Software Development\", \"Language Experience Approach\", \"Algorithms\", \"Communications Protocols\", \"SQL (Programming Language)\", \"Controllability\", \"Threading (Manufacturing)\", \"Manufacturing Processes\"]',\n", + " \"['English']\"],\n", + " ['84',\n", + " '.net consultant / software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.61061400e-01 2.82405615e-01 4.39843953e-01 -1.06197216e-01\\n4.96441543e-01 -2.55543470e-01 -1.15714118e-01 3.84546578e-01\\n-1.00942172e-01 -4.29098755e-01 -2.52556149e-02 -3.17635238e-01\\n-6.96545914e-02 2.52955910e-02 1.92746475e-01 4.94967282e-01\\n2.63134420e-01 8.39160010e-02 -2.18112051e-01 3.45846862e-01\\n1.22279868e-01 -8.40979908e-03 4.93846759e-02 7.05662966e-01\\n4.00918156e-01 3.21412012e-02 -9.74281803e-02 -4.59116995e-02\\n-3.10366064e-01 -2.24626094e-01 4.49564248e-01 3.62390056e-02\\n-1.24232292e-01 -3.17485422e-01 9.18334946e-02 7.17850849e-02\\n-1.80965066e-01 -8.28596354e-02 -5.51367439e-02 2.85666823e-01\\n-4.35210824e-01 -1.99896142e-01 8.98752287e-02 7.58509710e-02\\n-1.29840925e-01 -3.99345368e-01 6.93388283e-02 -9.92942005e-02\\n8.34268406e-02 3.81236561e-02 -5.19869387e-01 2.04275459e-01\\n-2.16927439e-01 -1.56002060e-01 3.18006873e-01 5.80775738e-01\\n2.44086739e-02 -4.98956293e-01 -4.65747952e-01 -3.39738786e-01\\n1.40105024e-01 -8.36121908e-05 2.46197395e-02 -3.41030449e-01\\n3.73587847e-01 7.15952069e-02 5.05458517e-03 3.23967606e-01\\n-8.48127425e-01 -1.43008575e-01 -2.12373853e-01 1.90450437e-02\\n-4.12282288e-01 -2.78401989e-02 -2.38644406e-01 -1.41654789e-01\\n-1.06879830e-01 4.43170369e-01 -1.93899423e-02 -1.70567427e-02\\n-1.40919730e-01 3.19316477e-01 -1.43043086e-01 2.88516313e-01\\n2.34780833e-01 2.94918388e-01 2.10442826e-01 3.75243038e-01\\n-4.31245834e-01 3.55803728e-01 1.84469894e-01 -3.79628241e-01\\n2.21618503e-01 2.10281517e-02 4.76391912e-01 3.15011013e-03\\n1.38864532e-01 1.14987269e-01 -2.77029723e-01 3.41122001e-01\\n1.86061472e-01 -1.68644488e-01 4.34421264e-02 -6.81454688e-02\\n-3.84778902e-02 5.65203242e-02 3.68006118e-02 2.23805130e-01\\n-2.58395851e-01 4.46176380e-01 1.18645146e-01 -1.51735380e-01\\n-3.33415419e-02 -6.22109115e-01 -1.51888743e-01 -1.21548190e-03\\n2.25975271e-02 1.43732384e-01 1.95251018e-01 1.83794543e-01\\n2.08858818e-01 -9.62470993e-02 1.94579110e-01 9.65843856e-01\\n-4.66822274e-02 2.38388553e-02 -2.86113352e-01 3.70040089e-01\\n1.72202840e-01 -2.50677079e-01 1.96682021e-01 1.97969154e-01\\n8.39239061e-02 -5.43384179e-02 -1.82683915e-01 3.15192640e-01\\n-1.28099501e-01 -3.00945669e-01 -3.71956706e-01 7.89373964e-02\\n-1.59114286e-01 -4.56348926e-01 6.03847146e-01 1.07984297e-01\\n1.67446434e-01 -1.56945422e-01 -4.35541803e-03 -1.54890746e-01\\n-9.89364646e-03 1.82144046e-01 -1.73465051e-02 1.98373925e-02\\n-3.93176079e-01 -2.22950116e-01 -1.73748061e-01 2.18064487e-01\\n-1.49262607e-01 6.47005364e-02 -9.92368683e-02 -1.08271062e-01\\n2.37163559e-01 1.29458890e-03 -2.90941119e-01 2.40611359e-01\\n2.13453714e-02 -1.76653355e-01 -6.03716075e-02 2.63112158e-01\\n-1.47585168e-01 1.89769506e-01 -7.04779625e-02 -2.11540177e-01\\n5.45767546e-01 4.10812534e-02 2.02351227e-01 4.08065366e-03\\n2.84436166e-01 -2.25074619e-01 1.93208128e-01 1.12986304e-01\\n-6.34288013e-01 3.34666550e-01 -6.33460954e-02 -1.02804773e-01\\n1.66738793e-01 5.86899221e-02 3.49167794e-01 -2.19903380e-01\\n7.31283873e-02 -1.63252726e-01 -2.80016392e-01 -4.13257271e-01\\n-3.15646976e-01 -4.60813977e-02 3.36676151e-01 -3.53214890e-01\\n-1.72820374e-01 2.44597197e-01 -5.43659866e-01 -1.30678803e-01\\n1.18069492e-01 1.81975648e-01 3.32590416e-02 2.07384631e-01\\n-2.52361774e-01 -5.69460690e-01 8.64793584e-02 -5.13334334e-01\\n-3.85820150e-01 1.28958747e-01 -2.49752745e-01 2.49418542e-01\\n2.07245089e-02 1.77062266e-02 -1.80193633e-01 1.30770490e-01\\n-3.05217117e-01 4.12850790e-02 1.23431556e-01 2.15713680e-01\\n3.30951124e-01 5.51810674e-02 -4.40088689e-01 5.43328047e-01\\n-1.27796948e-01 4.92609322e-01 1.60326600e-01 -9.73326802e-01\\n4.51699823e-01 3.52508068e-01 9.75953862e-02 -3.81554037e-01\\n6.76976204e-01 -3.32376361e-01 -6.34292141e-02 1.37686193e-01\\n-4.60948914e-01 -3.52548182e-01 2.48909488e-01 -1.90905079e-01\\n-2.20866904e-01 5.69935441e-01 8.78207535e-02 1.33400820e-02\\n3.52307618e-01 -2.83530086e-01 -2.35882461e-01 -2.50920169e-02\\n-1.10039435e-01 -2.52096117e-01 -4.88583863e-01 5.34434468e-02\\n2.07100287e-02 -5.58353841e-01 -1.04677498e-01 -3.23822826e-01\\n-2.31217682e-01 -3.37153435e-01 -1.87967539e-01 3.07265759e-01\\n2.10479677e-01 9.01447982e-02 3.26610692e-02 4.12330701e-04\\n-9.44381729e-02 -5.49226820e-01 -2.54393667e-02 1.26453042e-01\\n4.28147286e-01 1.71481848e-01 1.33025944e-01 8.33098888e-02\\n-7.47130439e-02 6.30581260e-01 -1.94379896e-01 -2.84884542e-01\\n4.64021564e-02 1.74978033e-01 7.10744187e-02 -4.52108905e-02\\n1.55839786e-01 3.88529271e-01 -2.32466757e-01 6.21679276e-02\\n-1.92457691e-01 -9.83112585e-03 3.26006532e-01 -1.43725267e-02\\n-1.65859058e-01 -1.86779484e-01 4.81200926e-02 1.77215740e-01\\n-5.83463013e-01 -2.16852948e-01 5.17063022e-01 2.26086602e-01\\n2.07482010e-01 1.57962576e-01 2.94357538e-01 -1.15060575e-01\\n-2.32433751e-01 -2.64887840e-01 1.87108070e-01 1.23880945e-01\\n1.23403162e-01 8.35000426e-02 -5.64389639e-02 -5.83317637e-01\\n-2.91366673e+00 -1.84168890e-01 1.30148560e-01 -2.49361515e-01\\n2.01651335e-01 -1.24938056e-01 8.57203379e-02 -9.90010649e-02\\n-3.49942714e-01 2.12433636e-02 -1.86857596e-01 -1.93448663e-01\\n1.74762264e-01 1.99333534e-01 1.86368059e-02 2.54788965e-01\\n1.50162444e-01 -1.21618822e-01 -1.18164957e-01 3.06661755e-01\\n-8.38257372e-02 -6.72026038e-01 2.46227354e-01 -2.89916843e-02\\n2.66872913e-01 2.66664326e-01 -4.51344132e-01 -1.73367262e-02\\n-2.80026585e-01 -2.50998974e-01 8.89280215e-02 -3.56341481e-01\\n-5.94833270e-02 2.97525436e-01 1.24153361e-01 -9.61018577e-02\\n9.65004861e-02 -3.26996267e-01 1.43701239e-02 -4.41497594e-01\\n8.57499391e-02 -5.87770879e-01 1.11087067e-02 -1.67933479e-01\\n7.76146054e-01 -4.05393720e-01 3.07848398e-02 1.30273372e-01\\n1.00030296e-01 2.50005275e-01 4.75976914e-02 -2.75536440e-02\\n-2.63364404e-01 -3.63615125e-01 -4.76867668e-02 -2.40496412e-01\\n5.13928890e-01 4.85458016e-01 -2.06249937e-01 6.19305037e-02\\n1.72705695e-01 -3.29640627e-01 -5.07084548e-01 -2.68978685e-01\\n-2.32588470e-01 -2.16017082e-01 -6.37931287e-01 -4.84856725e-01\\n-1.31795168e-01 -9.87995788e-02 -1.63614437e-01 6.49480581e-01\\n-2.68594474e-01 -3.20474416e-01 -4.77039777e-02 -5.23691773e-01\\n1.64337054e-01 -2.48191327e-01 1.27129167e-01 -1.91941082e-01\\n-2.64397830e-01 -4.88260150e-01 2.23465860e-02 -2.36735702e-03\\n-1.11003906e-01 -1.45433888e-01 4.82440135e-03 -2.79917747e-01\\n-3.69830012e-01 -5.28301001e-01 3.94007176e-01 1.53065205e-01\\n3.74419272e-01 1.69714421e-01 2.34437823e-01 1.02108106e-01\\n2.52446979e-01 -1.65792555e-01 3.10008768e-02 -3.82771164e-01\\n1.42912179e-01 1.09709008e-03 6.10804498e-01 -2.29342028e-01\\n1.50328115e-01 1.45601466e-01 -1.68598771e-01 -2.07371954e-02\\n3.42909783e-01 6.26643598e-02 8.41468722e-02 -1.82631075e-01\\n3.20092678e-01 -4.23888743e-01 -1.54926941e-01 1.58292919e-01\\n-4.73851152e-03 5.73954642e-01 -4.60129092e-03 -3.93465519e-01\\n-2.09658086e-01 4.13632423e-01 -2.46579535e-02 -1.67109922e-01\\n-1.99939683e-01 1.60442561e-01 -2.62140095e-01 1.86097726e-01\\n-4.25574519e-02 -1.94411874e-01 -3.34699184e-01 -1.41411692e-01\\n-9.03424323e-02 2.73254693e-01 2.99515814e-01 1.53691620e-01\\n-4.48876098e-02 -3.81153733e-01 -1.52592167e-01 7.96307102e-02\\n3.03573072e-01 3.83774519e-01 8.97634923e-02 -2.53035575e-01\\n-3.86298336e-02 2.58262277e-01 -1.69947296e-01 1.72767118e-01\\n-2.09663615e-01 1.81314908e-02 -5.26860476e-01 -2.88891226e-01\\n-1.26227543e-01 -3.33087802e-01 1.24050312e-01 3.58696729e-01\\n1.40719503e-01 1.88418925e-02 7.50028268e-02 -4.36043829e-01\\n3.87669742e-01 9.33569819e-02 2.14441881e-01 2.08596408e-01\\n-6.02947827e-03 5.44767737e-01 -5.13728820e-02 -5.89922443e-02\\n-1.58588693e-01 -2.42266562e-02 -2.30279207e-01 -1.47303686e-01\\n-1.54793113e-02 -4.47216570e-01 -1.50253311e-01 4.47553694e-01\\n7.76415542e-02 -3.25555980e-01 -2.08210409e-01 2.25479960e-01\\n2.58214884e-02 -2.12774947e-01 -2.40443587e-01 1.96861088e-01\\n2.23486498e-01 1.35469928e-01 3.04366291e-01 -4.62919235e-01\\n-8.35931078e-02 3.00603639e-02 -1.96293905e-01 5.45302272e-01\\n1.34474903e-01 1.69315279e-01 -1.61481097e-01 -2.26466194e-01\\n4.37355399e-01 -2.03286231e-01 -6.57850131e-02 2.33856831e-02\\n1.06682569e-01 -1.11521319e-01 -3.49828750e-01 5.52670844e-02\\n-5.65088578e-02 -2.70249337e-01 6.94669709e-02 4.74213157e-03\\n1.05160117e-01 4.85265255e-02 -5.60092211e-01 -2.81867564e-01\\n-2.95326650e-01 -1.25853807e-01 8.79566669e-02 -4.27554995e-01\\n8.79403353e-02 -9.02630463e-02 -6.39229536e-01 3.32679212e-01\\n-2.11237013e-01 -1.18213251e-01 1.75968915e-01 3.87088023e-02\\n-4.12068099e-01 -1.64926305e-01 1.42290413e-01 3.00444782e-01\\n-2.47365698e-01 -1.97585940e-01 -4.48082350e-02 -9.85156655e-01\\n1.39615819e-01 -4.13161851e-02 -7.39687085e-02 2.45203048e-01\\n-7.69408345e-02 -7.33268499e-01 1.25889406e-01 -3.64666820e-01\\n-6.76216930e-02 -6.41948031e-03 -1.50699005e-01 -5.01313984e-01\\n1.13210909e-01 -1.70278847e-02 -2.16318071e-01 4.94197339e-01\\n-3.73672336e-01 2.97962636e-01 -8.10647085e-02 8.12380537e-02\\n6.98016509e-02 -3.23110044e-01 1.87229127e-01 -3.42388660e-01\\n-4.26362872e-01 -1.54664084e-01 -2.97529280e-01 -2.75209755e-01\\n-1.16788363e-02 -3.35932612e-01 -2.44856432e-01 1.28172338e-01\\n4.14402068e-01 8.37660059e-02 -1.10845692e-01 -1.61402941e-01\\n1.37393013e-01 -4.63932842e-01 1.89728569e-02 -1.95594743e-01\\n-7.16201738e-02 -1.77967533e-01 1.21252045e-01 5.96221201e-02\\n7.49127641e-02 -3.83069605e-01 4.60307598e-01 -3.08368385e-01\\n-4.09402162e-01 -5.54539263e-02 8.25899094e-02 -7.30063170e-02\\n3.73752505e-01 -5.27427912e-01 -9.53287259e-02 2.53553867e-01\\n8.95565450e-02 4.90040965e-02 1.45704359e-01 -1.09710388e-01\\n-1.32416531e-01 3.32815111e-01 -4.25824970e-01 1.89764500e-01\\n8.64145935e-01 1.31961837e-01 1.53689817e-01 1.81878939e-01\\n2.13383749e-01 2.90007263e-01 4.89651352e-01 3.65276486e-02\\n-1.13949902e-01 3.58917564e-01 5.82671277e-02 -4.99208272e-01\\n-6.46283180e-02 -7.04978481e-02 -2.65846848e-01 -4.21163619e-01\\n5.73399127e-01 4.99142677e-01 -2.68035978e-01 -2.08846241e-01\\n-1.38075918e-01 -8.09096247e-02 2.34304592e-01 -8.25008899e-02\\n6.79305987e-03 -1.17978409e-01 5.43559849e-01 -1.11066857e-02\\n2.57869542e-01 5.90674579e-01 -2.20843449e-01 -3.89542550e-01\\n-1.36682928e-01 1.22545168e-01 4.86585572e-02 5.18713832e-01\\n-1.89380556e-01 2.76773602e-01 -2.64079999e-02 1.20500043e-01\\n-1.42428353e-01 1.01841144e-01 2.35280812e-01 3.36247310e-02\\n1.92598119e-01 7.48084560e-02 2.56457388e-01 4.77919519e-01\\n3.16520274e-01 4.78911072e-01 3.53773743e-01 1.71004906e-02\\n3.77350420e-01 6.31164432e-01 3.59651387e-01 2.35680759e-01\\n-1.11265063e-01 5.35906218e-02 3.26568447e-02 -8.02013129e-02\\n3.66984695e-01 3.24954271e-01 1.58921152e-01 9.29159880e-01\\n4.10655946e-01 2.79419482e-01 7.83787429e-01 -6.16033554e-01\\n-4.08982426e-01 1.28367066e-01 4.73427802e-01 -3.94076914e-01\\n-1.53975725e-01 9.97934118e-02 -2.67411977e-01 1.06774047e-01\\n-5.25260270e-01 -1.96036577e-01 -5.87552227e-02 4.93013710e-02\\n5.79093210e-02 -2.38608196e-02 -2.39395544e-01 5.57023771e-02\\n-1.70425415e-01 -1.44715697e-01 -4.81284797e-01 -6.27614334e-02\\n-1.92634031e-01 -1.01945490e-01 -9.18012187e-02 -1.92142069e-01\\n-1.12601012e-01 -3.46467227e-01 -1.49029762e-01 -1.72512997e-02\\n3.50676805e-01 -2.07750034e-02 6.39625778e-03 -1.84406146e-01\\n2.12827221e-01 3.57400656e-01 5.73160112e-01 -4.71568927e-02\\n6.14709333e-02 -2.17457592e-01 -2.00597003e-01 8.66437182e-02\\n1.16189495e-01 2.56672446e-02 5.00885732e-02 4.15923715e-01\\n-2.90545017e-01 -3.98523286e-02 8.89121965e-02 3.66499841e-01\\n-4.37477410e-01 -5.54743409e-02 -1.43565804e-01 2.50385910e-01\\n1.18160158e-01 2.05749154e-01 -2.73230851e-01 2.23534301e-01\\n-1.76171213e-01 -4.98140484e-01 3.76931012e-01 -1.86177120e-01\\n-5.55484071e-02 1.13522485e-01 1.48661166e-01 1.06151067e-01\\n-2.98583746e-01 -1.50560280e-02 -7.38669261e-02 2.43403733e-01\\n1.17248699e-01 3.90392631e-01 -2.88708091e-01 -2.08459586e-01\\n-1.98375627e-01 1.91929340e-01 -1.61302656e-01 9.50233117e-02\\n-4.86731194e-02 4.19884473e-01 5.19586727e-02 7.03756213e-02\\n3.32891434e-01 3.86182740e-02 -2.57498175e-01 -2.73904592e-01\\n-1.58494756e-01 -2.86519676e-01 4.40173931e-02 2.00525895e-02\\n2.43188187e-01 -4.20273751e-01 -1.18139595e-01 -2.74821341e-01\\n-1.39369920e-01 -3.49531591e-01 -3.17811519e-02 -6.11166731e-02]]',\n", + " 'About our client Our Client is a growing Swiss consulting and technology firm with more than 20 employees. He primarily serves banks, insurers, investment firms and e-commerce companies. Both global and local players belong to his clients. Our Client offers products and services in quantitative finance, predictive analytics, machine learning, software engineering and business consulting. Your responsibilities In this role, you will primarily be working with his clients but also with his internal development team and contribute to the design and implementation of the next generation of financial industry applications. You will work in a challenging and varying environment with both national as well as international clients. Your profile Master or Bachelor in computer science or electrical engineering Multiple years of experience in C#/.Net development including Asp.Net and Entity Framework Solid knowledge in JavaScript including state of the art frameworks like AngularJS Experience in SQL, C/C++, Python and Java is a plus Broad knowledge of software development processes, principles and practices (like Scrum, Kanban, extreme programming, SOLID, TDD, continuous integration etc.) Interested in new technologies and methods and able to incorporate them into projects and products Team player with a reliable and customer-oriented working attitude with the ability to understand and approach complex problems Fluent in English, German is an advantage Your chance Challenging and interesting projects in the fintech domain Work with new technologies Work within an interdisciplinary team of experts Modern and flexible collaboration methods and a flat hierarchy Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung: JAVA Entwicklung Scrum (Methode) JavaScript C# / C++ / C .NET Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1140',\n", + " '[\"Collaboration\", \"Complex Problem Solving\", \"Reliability\", \"Consulting\"]',\n", + " '[\"ASP.NET\", \"Test-Driven Development (TDD)\", \"Computer Science\", \"Machine Learning\", \"Continuous Integration\", \"Industrialization\", \"Python (Programming Language)\", \"Scrum (Software Development)\", \"Entity Framework\", \"Software Engineering\", \"Investments\", \"C (Programming Language)\", \"Finance\", \"E-Commerce\", \"Electrical Engineering\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Predictive Analytics\", \"Banking\", \"Software Development\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Extreme Programming\", \"Integrated Product Team\"]',\n", + " \"['English', 'Italian', 'Italian', 'Ukrainian']\"],\n", + " ['125',\n", + " 'digital humanities analyst in the data analytics center 80 - 100%',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.97839725e-01 2.03282148e-01 4.57758784e-01 2.31721736e-02\\n4.41922903e-01 -9.44348425e-02 -1.66357920e-01 4.15524244e-01\\n-9.94899422e-02 -3.47704291e-01 -1.57185301e-01 -3.31334502e-01\\n-3.76208350e-02 1.60476625e-01 1.13304973e-01 4.86900628e-01\\n3.78952086e-01 -6.94307834e-02 -1.48550749e-01 1.87048733e-01\\n1.51681542e-01 3.16349603e-03 -1.36451721e-02 7.51234889e-01\\n4.72653866e-01 3.20746601e-02 -4.69502099e-02 1.69557393e-01\\n-1.78675085e-01 -1.91202790e-01 5.62506318e-01 8.57219845e-02\\n-1.42072380e-01 -3.00412118e-01 9.24827978e-02 3.44371021e-01\\n-2.00636104e-01 -2.70967126e-01 2.29864903e-02 7.97267854e-02\\n-4.41040158e-01 -1.91069126e-01 -2.37965494e-01 2.27542371e-02\\n-3.50309908e-01 -4.29361343e-01 1.42631605e-01 9.71182361e-02\\n1.61603779e-01 5.10827824e-02 -5.88668346e-01 2.70580173e-01\\n-1.65856197e-01 -2.12274373e-01 2.53023714e-01 6.43492818e-01\\n-2.38953047e-02 -3.95057529e-01 -4.59260553e-01 -3.30381960e-01\\n-1.72343329e-02 -1.51158180e-02 1.06530204e-01 -4.06652510e-01\\n5.30109048e-01 1.37771696e-01 -8.48935172e-02 3.60666335e-01\\n-8.70414495e-01 -2.31998622e-01 -2.49640450e-01 1.06247917e-01\\n-4.01315272e-01 1.38170635e-02 -3.49981844e-01 -3.15011561e-01\\n-9.77272540e-02 3.48676234e-01 -4.56297323e-02 8.48935470e-02\\n-1.50769114e-01 3.83265853e-01 -1.34776369e-01 2.97508121e-01\\n1.75920248e-01 3.20248246e-01 2.26851523e-01 2.07420662e-01\\n-4.63456452e-01 3.17057639e-01 3.31210680e-02 -2.94900149e-01\\n2.09270269e-01 2.40344614e-01 5.13346672e-01 4.71914336e-02\\n2.72691995e-01 3.33840549e-02 -2.88106024e-01 3.16454500e-01\\n2.04042375e-01 -3.42801392e-01 9.63281319e-02 -3.58792134e-02\\n-7.06714764e-02 7.60663599e-02 -1.05673838e-02 4.53561991e-02\\n-6.09169602e-01 3.75595182e-01 2.67908350e-03 -1.58787653e-01\\n-8.79743099e-02 -5.78828990e-01 -1.18864961e-02 2.12201148e-01\\n1.33984298e-01 1.17273308e-01 -1.67802535e-02 2.41522282e-01\\n1.79568887e-01 -1.06115803e-01 1.65516302e-01 8.07570398e-01\\n-1.93574458e-01 6.93967938e-02 -8.77811909e-02 3.69679689e-01\\n2.85553392e-02 -4.23375010e-01 3.72173250e-01 1.66696280e-01\\n1.47536486e-01 -1.60192505e-01 -2.21737653e-01 2.10768580e-01\\n-1.02621108e-01 -2.44725764e-01 -4.07228589e-01 3.52735728e-01\\n-6.39251545e-02 -5.11123359e-01 5.85763335e-01 -1.58788607e-01\\n1.61477983e-01 -1.53014019e-01 -2.32108757e-02 -4.14367877e-02\\n3.04523744e-02 2.02035785e-01 1.03373587e-01 6.25162572e-02\\n-3.70641440e-01 -1.96546465e-01 -1.76214248e-01 1.44554630e-01\\n-3.94253433e-01 3.46107125e-01 -2.77639516e-02 -1.91245992e-02\\n2.88132370e-01 -1.27225414e-01 -4.13404524e-01 1.45572305e-01\\n-1.35641754e-01 -1.58740088e-01 -3.58848982e-02 3.75430703e-01\\n-2.79190332e-01 3.02087963e-01 -6.62438720e-02 -3.63020629e-01\\n5.06644845e-01 -2.99692247e-02 1.74868926e-01 -6.30716011e-02\\n2.63867646e-01 -5.88055234e-03 2.18989938e-01 9.86774415e-02\\n-8.50338936e-01 3.49346042e-01 -1.07766554e-01 -2.80362099e-01\\n5.06685451e-02 -1.97396465e-02 3.30034435e-01 -3.21426153e-01\\n5.89419007e-02 -6.42187297e-02 -2.27274507e-01 -2.69480586e-01\\n-3.77991408e-01 -1.29038040e-02 4.27148968e-01 -3.37305993e-01\\n-7.86660388e-02 1.96485281e-01 -6.25683784e-01 -8.53458270e-02\\n1.53348893e-02 4.42641079e-02 2.45085448e-01 1.49424195e-01\\n-3.47394794e-02 -6.01169229e-01 -7.69234523e-02 -4.36854452e-01\\n-2.34692797e-01 1.56718343e-01 -3.78010511e-01 2.32460007e-01\\n8.45240131e-02 3.04279216e-02 -5.60140125e-02 9.41180214e-02\\n-2.59714723e-01 1.28728122e-01 2.52971351e-01 -1.75122824e-02\\n4.61306810e-01 1.41035855e-01 -2.95259178e-01 5.48637867e-01\\n-4.71854582e-02 6.19645715e-01 1.29855767e-01 -6.28013551e-01\\n6.59658074e-01 5.05762875e-01 4.68987972e-02 -3.25339139e-01\\n7.68128514e-01 -2.83223391e-01 -2.92918384e-01 1.65608674e-01\\n-5.14964402e-01 -2.23803148e-01 3.06720376e-01 -3.42530459e-01\\n-1.45377010e-01 6.38197184e-01 7.88412839e-02 1.94863975e-01\\n2.85508573e-01 -3.30855370e-01 -1.64832637e-01 2.42636949e-01\\n-2.09254950e-01 -4.35726702e-01 -5.16793966e-01 -7.59917498e-03\\n-2.55701900e-01 -4.85330224e-01 -2.78886646e-01 -2.91416705e-01\\n-6.89049289e-02 -2.69286692e-01 -6.35428168e-03 2.38189474e-01\\n2.82440722e-01 1.34248823e-01 -5.63910529e-02 4.12518159e-03\\n-1.03016064e-01 -4.85689759e-01 -1.79713871e-02 -9.52350348e-02\\n2.86369920e-01 1.26579016e-01 3.43163982e-02 -7.90149942e-02\\n1.37211233e-01 5.73075652e-01 -5.84195018e-01 -3.34056079e-01\\n1.84173137e-01 8.63061473e-02 -1.74994320e-01 -1.79357827e-01\\n1.65925980e-01 2.14681625e-01 -4.89294350e-01 2.36191656e-02\\n-2.18533874e-01 8.47693458e-02 2.58045703e-01 -1.18727222e-01\\n2.47671790e-02 -2.97602504e-01 -1.08112559e-01 2.34762341e-01\\n-3.55729580e-01 -3.31424534e-01 4.28193152e-01 8.79608840e-02\\n1.65552586e-01 4.14605364e-02 1.05902284e-01 6.98109344e-03\\n-4.64558959e-01 -3.65258187e-01 1.76834911e-01 1.87703073e-01\\n8.93373862e-02 2.25004360e-01 -3.85753438e-02 -4.29801345e-01\\n-2.97006321e+00 -1.20514147e-02 1.08839050e-02 9.29999352e-03\\n1.95052743e-01 -1.15004204e-01 4.16815430e-02 -1.23449035e-01\\n-3.80567968e-01 -5.01050539e-02 -2.71044731e-01 -3.92933011e-01\\n4.97401133e-02 3.35161388e-01 1.87319934e-01 1.47584677e-01\\n3.30383740e-02 -4.03107345e-01 3.47363278e-02 4.30083454e-01\\n-2.11297572e-01 -7.50987291e-01 9.93367136e-02 -3.35091241e-02\\n2.69419491e-01 3.66537452e-01 -4.76413131e-01 -9.96919796e-02\\n-3.81115437e-01 -3.29553992e-01 3.04191947e-01 -3.54013771e-01\\n-4.56665680e-02 4.89190996e-01 3.19775879e-01 7.09388778e-02\\n1.10126115e-01 -2.98029125e-01 -2.25445583e-01 -4.65501130e-01\\n1.21632442e-01 -4.97096360e-01 2.35772766e-02 -1.15157112e-01\\n7.51887083e-01 -2.76041567e-01 1.92009658e-01 1.00343421e-01\\n1.14336535e-01 1.37572050e-01 -4.24213707e-04 8.32470208e-02\\n-2.44320378e-01 -2.55055130e-01 -1.12340942e-01 -2.63278484e-01\\n5.07935882e-01 4.91459727e-01 -2.08212122e-01 -7.92953223e-02\\n2.09508955e-01 -2.62773871e-01 -4.63757157e-01 -3.95969480e-01\\n-2.78754771e-01 -1.33341134e-01 -6.45274639e-01 -4.01768029e-01\\n4.63470593e-02 -1.02489501e-01 6.15675114e-02 6.19157553e-01\\n-3.90587091e-01 -2.04787642e-01 -8.94299969e-02 -6.33294821e-01\\n3.31500888e-01 -2.90391326e-01 3.46274376e-02 -2.00247139e-01\\n-1.11889683e-01 -6.12142563e-01 4.56473976e-02 4.32971083e-02\\n1.30561506e-03 -3.03783089e-01 1.63931012e-01 -2.85740286e-01\\n-3.44258308e-01 -5.61016023e-01 3.38302851e-01 1.03064612e-01\\n2.96363562e-01 2.52782196e-01 7.81585127e-02 -1.79427210e-03\\n3.46496791e-01 4.57926840e-02 -1.67936683e-02 -3.46176982e-01\\n2.94862002e-01 -1.90979615e-02 3.09889853e-01 -2.16374382e-01\\n-1.02507882e-01 9.74719971e-03 -2.48431191e-01 -4.01569009e-02\\n2.88809747e-01 5.31984903e-02 6.08766824e-02 -2.22539574e-01\\n3.19650590e-01 -4.34009731e-01 6.08789064e-02 1.92614824e-01\\n-1.72492117e-03 6.05186820e-01 -5.86025305e-02 -2.38766223e-01\\n-8.57798755e-02 4.80718851e-01 -1.72797963e-03 4.21107635e-02\\n2.18078196e-02 1.07435077e-01 -2.88552433e-01 1.06772713e-01\\n-4.23813909e-02 -2.04617038e-01 -3.17730963e-01 -1.22531995e-01\\n-1.82051063e-01 3.97886217e-01 3.53840470e-01 1.88222259e-01\\n-2.31014550e-01 -4.34725106e-01 3.91736105e-02 2.57847488e-01\\n4.10631508e-01 3.77911627e-01 1.38896987e-01 -2.27474421e-01\\n1.69252828e-01 3.08361143e-01 -9.06293243e-02 2.65904546e-01\\n-3.24394882e-01 1.24399081e-01 -4.95665908e-01 -2.86723018e-01\\n-2.84621626e-01 -1.46148488e-01 3.25219899e-01 2.96007633e-01\\n1.51401579e-01 -7.36839846e-02 1.50143117e-01 -2.72507995e-01\\n2.48669773e-01 1.56053245e-01 2.26447463e-01 5.85983917e-02\\n-7.12468475e-02 5.67989707e-01 -1.46982223e-01 -1.07785322e-01\\n-1.09254107e-01 2.85234638e-02 -2.09108412e-01 -2.65359759e-01\\n6.61356226e-02 -4.97383118e-01 -2.00035959e-01 2.67794907e-01\\n7.90464580e-02 -1.37982711e-01 -1.29964396e-01 2.09096849e-01\\n5.47843799e-02 -3.50601554e-01 -2.40064442e-01 8.10104087e-02\\n4.01892036e-01 2.74959773e-01 2.22558677e-01 -5.03484249e-01\\n-2.37021614e-02 9.08606946e-02 6.02189600e-02 3.52470994e-01\\n5.49344048e-02 7.51139000e-02 -3.55250895e-01 -3.55526865e-01\\n3.26167643e-01 -3.39047074e-01 -8.37545022e-02 1.24669380e-01\\n8.31517801e-02 -2.45652385e-02 -2.89011329e-01 6.34702668e-02\\n-9.12078246e-02 -2.74305522e-01 -1.79037042e-02 4.21383530e-02\\n1.22272059e-01 2.33907122e-02 -6.98000610e-01 -1.94172323e-01\\n-2.31136940e-02 1.00494072e-01 6.33256957e-02 -4.53127801e-01\\n4.15804982e-02 -2.88301051e-01 -5.83226681e-01 2.67912447e-01\\n-1.47577584e-01 -1.06480390e-01 2.92169333e-01 -7.06374571e-02\\n-2.66304642e-01 -1.00740433e-01 1.69492215e-01 2.52557456e-01\\n-3.12819511e-01 -2.52103835e-01 5.99954724e-02 -9.74468291e-01\\n1.88507199e-01 -6.37885034e-02 -1.42693073e-01 -2.11588070e-02\\n1.73460022e-02 -6.16057158e-01 -9.71931592e-03 -3.99431735e-01\\n-3.52068767e-02 -5.50746992e-02 -2.31360286e-01 -3.54470968e-01\\n1.15608722e-01 -2.17495188e-02 -1.70105204e-01 5.36921144e-01\\n-3.46183568e-01 2.38170534e-01 -1.35824218e-01 -6.71739876e-03\\n-3.61174420e-02 -3.22353214e-01 1.18808806e-01 -1.62800670e-01\\n-2.05654413e-01 -3.28690439e-01 -1.38044626e-01 -2.80113757e-01\\n2.28425823e-02 -4.32275832e-01 -8.15214291e-02 1.26637042e-01\\n1.91753894e-01 -1.13568947e-01 -1.50392279e-01 -1.97103977e-01\\n1.89986184e-01 -4.42584872e-01 3.86951678e-02 -1.25428721e-01\\n-1.10668197e-01 -1.76650211e-01 9.93330479e-02 8.28452632e-02\\n2.27986842e-01 -2.27211371e-01 4.87475753e-01 -4.71976250e-01\\n-4.36416417e-01 -7.29777291e-02 -9.58951190e-03 -6.45556599e-02\\n2.53315181e-01 -4.84042078e-01 -7.40155280e-02 4.82327461e-01\\n1.52576402e-01 -5.50091416e-02 2.55581558e-01 -2.45580062e-01\\n-6.58557564e-02 3.12620461e-01 -4.03221488e-01 3.67199257e-02\\n8.40993285e-01 2.49334246e-01 1.28654242e-01 2.11116701e-01\\n8.55128765e-02 2.45977521e-01 4.63480324e-01 -2.19783466e-02\\n1.00108795e-03 3.43899161e-01 2.94983804e-01 -3.82973969e-01\\n-1.46712571e-01 1.27218254e-02 2.64183134e-02 -2.89457232e-01\\n5.83864927e-01 3.41880977e-01 -4.08931345e-01 -2.33558834e-01\\n-1.10325903e-01 -4.61398996e-02 3.32327068e-01 -5.91730066e-02\\n-7.68257752e-02 -1.02152348e-01 3.74737024e-01 -1.73514709e-04\\n2.32624710e-01 5.60415983e-01 -1.49872899e-01 -1.67286992e-01\\n-1.12972878e-01 2.66451836e-01 1.33506246e-02 4.62470889e-01\\n-1.12591684e-01 4.56022799e-01 -9.65078026e-02 1.01750985e-01\\n-9.47275013e-02 1.08993556e-02 2.30811819e-01 2.88120527e-02\\n1.10992648e-01 2.54665822e-01 3.20932955e-01 4.77082431e-01\\n3.58495772e-01 3.85886133e-01 1.64076984e-01 -2.12940816e-02\\n5.00574470e-01 4.67228562e-01 4.85258818e-01 8.27486441e-02\\n2.20619645e-02 1.05808213e-01 1.84864968e-01 9.45418403e-02\\n2.90726751e-01 2.49961495e-01 5.75216813e-03 9.09219027e-01\\n3.20189476e-01 4.20216590e-01 7.15586066e-01 -5.92704356e-01\\n-3.65265489e-01 7.41613097e-03 5.75024009e-01 -4.33654487e-01\\n1.70254037e-02 1.16624199e-02 -1.25711083e-01 2.31449693e-01\\n-5.04573405e-01 -6.57651797e-02 4.19789404e-02 1.98177427e-01\\n7.18580335e-02 -1.25397533e-01 -2.05348402e-01 5.27934283e-02\\n-2.03777254e-01 -2.48889148e-01 -4.12840247e-01 -2.35743403e-01\\n-2.29828849e-01 -2.11751565e-01 -8.59645158e-02 9.57268570e-03\\n-3.86135951e-02 -2.32322127e-01 8.79256800e-03 -5.04584908e-02\\n5.10381937e-01 -1.78735495e-01 -1.85036361e-01 -3.51595916e-02\\n3.96167040e-01 3.03518444e-01 6.08836889e-01 -6.91532344e-02\\n4.28764187e-02 -2.10007817e-01 -2.05825523e-01 1.06701300e-01\\n4.66006137e-02 5.93298562e-02 6.52587339e-02 2.81524330e-01\\n-2.45961964e-01 -1.97541326e-01 1.19807705e-01 2.81259537e-01\\n-4.56618249e-01 4.15864494e-03 -8.30285996e-02 1.06568843e-01\\n1.21095665e-02 2.48734713e-01 -2.77378380e-01 1.58298045e-01\\n-1.31113082e-01 -5.88781178e-01 2.27823243e-01 -3.49737071e-02\\n-1.69621676e-01 -1.77738070e-02 3.01293552e-01 2.77971834e-01\\n-1.80337235e-01 -3.86687033e-02 -2.56299973e-04 8.00667554e-02\\n9.61814225e-02 3.62784535e-01 -2.19374090e-01 -3.29033434e-01\\n-3.78675222e-01 1.25232294e-01 -2.45594621e-01 -2.79767159e-02\\n-1.23073086e-01 4.38219607e-01 -5.11055067e-03 1.38456360e-01\\n3.60675097e-01 1.78231765e-02 -1.96221635e-01 -2.64424503e-01\\n-1.14319265e-01 -2.40162373e-01 -9.71437246e-02 -3.97335179e-02\\n2.05281019e-01 -3.24257672e-01 -2.83863068e-01 -3.70698571e-01\\n4.30823537e-04 -2.67759681e-01 9.73825529e-02 -1.76419690e-02]]',\n", + " \"80 - 100% The University of Basel is the oldest university in Switzerland, and ranked among the best universities in the world due to its research achievements. It counts over 12'000 students and 4'300 researchers in 7 faculties active in domains from humanities and social sciences to natural sciences. The University of Basel is promoting the growing area of Data Science by establishing a university-wide Data Analytics Center (DAC). The goal of the DAC is the advancement of research and the development of transdisciplinary synergies at the University of Basel and its partners. The service and support activities of the DAC will be provided by the Center for Scientific Computing (sciCORE) and the Digital Humanities Lab (DHLab) in collaboration with the Department of Mathematics and Computer Science (DMI). We invite applications for a data analysis support specialist (80-100%) to support quantitative research in humanities and social sciences. Your position The successful candidate will provide consulting and execute data analysis in research projects in various domains of humanities and social sciences. The primary mandate is to support research groups in need of data analysis by applying appropriate statistical, computational, and visualization methods, helping with semantic mappings, and making fundamental methodological advances. The position will involve hands-on data analysis and contributions to teaching (postgraduate courses). This position will be hosted at the DHLab. Your profile Our ideal candidate has a strong and diversified experience (postdoctoral level) in data analysis, in particular with applications involving analysis of large and complex data sets, using machine learning, deep learning, and other advanced statistics. Experience with various database concepts (eg SQL, NoSQL, SPARQL, GraphDB), semantic technologies, and knowledge of R and Python are required. Previous work with text, music, visual, survey, and other data, and familiarity with image analysis tools (eg ImageJ, Fiji) and at least one state of the art deep learning framework will be an asset. Given the important service aspect of the position, we expect our candidate to be flexible, proactive, capable of following several projects in parallel and to have a curiosity for humanities and social sciences in general. We offer you At the DHLab, you will be part of a highly efficient and motivated team of diverse data analysts, data infrastructure managers, and scholarly IT specialists. As a member of the DAC you will also join forces with support scientists at sciCORE and DMI. External collaborations and co-authorship in publications can be expected. We support our team members in their own training, networking and career development. You will have the opportunity to contribute in shaping the organization and development of this data analysis platform. The initial contract is for 2 years, with the possibility of renewal into a permanent contract. The University of Basel is an equal opportunity and family friendly employer committed to excellence through diversity. Application / Contact We look forward to receiving your complete application via the university's online application portal (see button below). Applications should include a curriculum vitae, list of publications indicating the five most significant papers, a link to your code repository or portfolio of data analysis projects, and names of three potential referees. Applications by email cannot be considered. For further information, please contact Prof. Gerhard Lauer gerhard.lauer@unibas.ch. The position will remain open until filled.\",\n", + " '[\"Research\", \"Collaboration\", \"Proactivity\", \"Friendliness\", \"Team Motivation\", \"Teaching\", \"Curiosity\", \"Positivity\", \"Consulting\"]',\n", + " '[\"NoSQL\", \"Tooling\", \"Surveys\", \"GraphDB\", \"Social Sciences\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"Natural Sciences\", \"Activism\", \"Python (Programming Language)\", \"SPARQL Protocol And RDF Query Language (SPARQL)\", \"Levelling\", \"Image Analysis\", \"Computational Statistics\", \"Executable\", \"Hosting\", \"Quantitative Research\", \"Data Science\", \"Spatial Data Infrastructures\", \"Scientific Computing\", \"Equalization\", \"R (Programming Language)\", \"Deep Learning\", \"Survey Data Analysis\", \"Semantic Technology\", \"Receivables\", \"Humanism\", \"Data Infrastructure\", \"Digital Humanities\", \"Semantics\", \"Logistics Support Activity\", \"Career Development\", \"Centering\", \"Mapping\", \"ImageJ\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English']\"],\n", + " ['52',\n", + " 'junior software developer internship',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-2.45473623e-01 2.19922841e-01 3.95095408e-01 -8.58976841e-02\\n5.51735580e-01 -2.02397883e-01 -7.35367462e-03 5.00029922e-01\\n-1.52281597e-01 -1.19535170e-01 -1.25269637e-01 -2.06219703e-01\\n-3.24371420e-02 -2.62237042e-02 1.49601355e-01 3.16426218e-01\\n4.82166260e-01 5.57406731e-02 -2.89484859e-01 2.85835177e-01\\n9.59658772e-02 -1.58541277e-01 1.09840846e-02 6.16762042e-01\\n3.71483356e-01 3.89521345e-02 -5.42104766e-02 -7.87682310e-02\\n-2.99870104e-01 -1.31022558e-01 5.30076027e-01 3.96904498e-02\\n-1.54182715e-02 -2.32307419e-01 2.21703202e-01 6.51573688e-02\\n-4.44421172e-02 -3.38877067e-02 -1.95203587e-01 1.99599862e-01\\n-4.15456951e-01 -1.94820508e-01 9.43321958e-02 1.80630758e-01\\n-2.37349615e-01 -4.10376310e-01 2.75215745e-01 -1.24317423e-01\\n1.27079174e-01 1.30634263e-01 -4.77396876e-01 2.48626798e-01\\n-7.80712068e-02 -2.59655833e-01 3.82703841e-01 6.09389007e-01\\n-6.21135309e-02 -6.32945001e-01 -4.94459152e-01 -5.03488004e-01\\n1.41859800e-01 -5.00296317e-02 6.92079887e-02 -3.10608923e-01\\n2.81814247e-01 1.06972054e-01 6.34988472e-02 4.08018589e-01\\n-8.53355050e-01 -1.41253442e-01 -1.99521750e-01 1.27827227e-01\\n-2.35327348e-01 -1.28637239e-01 -2.89901704e-01 -1.46020539e-02\\n-4.02461849e-02 3.85970861e-01 -7.86702484e-02 1.10203102e-01\\n-1.18088454e-01 4.06786680e-01 -1.19136840e-01 4.12524074e-01\\n2.32734367e-01 2.22471863e-01 1.13852687e-01 2.04134822e-01\\n-2.62728989e-01 5.30867875e-01 1.18389353e-01 -3.25752825e-01\\n8.66854116e-02 1.89736113e-01 3.32002491e-01 7.25791082e-02\\n2.59054393e-01 1.63287669e-01 -3.93455297e-01 9.31832939e-02\\n1.52656317e-01 -3.05316985e-01 1.56553492e-01 1.01894297e-01\\n-7.74925202e-02 1.58645004e-01 -2.57805847e-02 1.22793607e-01\\n-3.99372756e-01 4.78572071e-01 2.29489118e-01 -2.61536270e-01\\n-6.53430074e-02 -6.29386663e-01 -9.89215374e-02 -3.66564021e-02\\n-1.07020393e-01 9.30459425e-02 1.22054107e-01 2.31111541e-01\\n2.79944867e-01 -2.46658698e-01 1.62418559e-01 7.94231951e-01\\n-8.29315260e-02 7.32356235e-02 -1.21068135e-01 3.64816099e-01\\n-2.01784577e-02 -2.27983460e-01 1.07244946e-01 2.09850580e-01\\n1.83243096e-01 -3.70334089e-02 -3.29061538e-01 3.32001060e-01\\n-2.13583335e-01 -3.62991035e-01 -2.46123090e-01 2.57668674e-01\\n-8.47623125e-03 -6.20967448e-01 5.99171996e-01 -5.08470796e-02\\n1.71031147e-01 -1.22229189e-01 -3.71582294e-03 -2.85885227e-03\\n-6.02269247e-02 2.71905333e-01 1.54449850e-01 5.59690259e-02\\n-2.21181631e-01 -2.00638339e-01 -2.49279261e-01 9.30614993e-02\\n-3.13635081e-01 4.16235253e-02 -1.51886299e-01 -1.30846292e-01\\n3.12026650e-01 5.16252145e-02 -2.85045058e-01 3.01462114e-01\\n2.68437937e-02 1.37891591e-01 -1.29512757e-01 3.69422823e-01\\n-3.86612773e-01 3.78587157e-01 -1.09693602e-01 -4.92961481e-02\\n6.62681937e-01 -5.58964070e-03 3.45770293e-03 -1.36714743e-03\\n8.77903700e-02 -3.74430716e-02 4.15127844e-01 1.42090647e-02\\n-6.65074527e-01 2.18379006e-01 5.93557321e-02 2.60124449e-02\\n2.85582215e-01 -1.43258989e-01 2.20245868e-01 -4.66184407e-01\\n2.68916897e-02 -1.84423387e-01 -3.68056208e-01 -2.35640734e-01\\n-2.82810897e-01 -6.77277595e-02 2.33487561e-01 -3.84310931e-01\\n5.17817847e-02 1.52055189e-01 -5.22442460e-01 -1.37363091e-01\\n1.94653317e-01 1.43800065e-01 8.01353976e-02 1.96248382e-01\\n-5.50853051e-02 -6.92686617e-01 1.88014284e-01 -4.37903315e-01\\n-1.72082201e-01 1.60971716e-01 -2.34674081e-01 2.28002980e-01\\n-1.62200615e-01 2.13294610e-01 3.05494084e-03 1.35160014e-01\\n-1.70606539e-01 -6.18163645e-02 1.21334381e-01 1.63340583e-01\\n2.27279961e-01 6.45199744e-03 -4.75051045e-01 5.05639911e-01\\n-2.41032824e-01 5.92652738e-01 3.97885917e-03 -7.68352866e-01\\n3.66328567e-01 4.27883416e-01 3.70802619e-02 -2.53934503e-01\\n7.48160958e-01 -4.13161248e-01 -1.56835496e-01 1.40595153e-01\\n-5.70764601e-01 -3.49678636e-01 1.58749789e-01 -3.99365425e-01\\n-3.17865402e-01 5.79256415e-01 1.11226074e-01 1.05091304e-01\\n2.74932951e-01 -1.35770738e-01 1.67993754e-02 7.77744427e-02\\n-2.37597600e-01 -1.84271887e-01 -5.27741194e-01 -1.13836981e-01\\n3.20441201e-02 -4.99126554e-01 -1.66044325e-01 -3.18567008e-01\\n-1.66296780e-01 -2.96055734e-01 -7.16652945e-02 5.04269190e-02\\n3.49717081e-01 1.67163357e-01 1.36661291e-01 9.67797637e-02\\n-2.39999846e-01 -5.70889950e-01 2.10115343e-01 1.03598259e-01\\n1.56007677e-01 2.52406627e-01 5.03194295e-02 -7.17848837e-02\\n-6.94592223e-02 6.78895473e-01 -3.37098598e-01 -2.99918324e-01\\n1.59823507e-01 7.49776289e-02 4.04712446e-02 -2.48348653e-01\\n1.06766306e-01 3.89184177e-01 -3.87663752e-01 1.38602734e-01\\n-2.48314053e-01 -1.64672490e-02 3.31007600e-01 7.64871538e-02\\n-1.22879997e-01 -2.32466772e-01 -1.28548086e-01 1.41489357e-01\\n-4.15204942e-01 -2.39170030e-01 5.57497323e-01 1.00887470e-01\\n1.57292590e-01 3.10246229e-01 3.94553602e-01 -1.07318595e-01\\n-1.92710996e-01 -3.69626492e-01 1.35761783e-01 8.85161757e-02\\n1.43931657e-01 6.97454810e-02 -9.40581188e-02 -5.88764906e-01\\n-2.61776710e+00 -3.70270498e-02 1.54413387e-01 -3.08222562e-01\\n2.22388059e-01 -8.61221626e-02 -1.68882310e-01 -7.46942833e-02\\n-5.02890408e-01 7.83290640e-02 -9.78340954e-02 -2.75557995e-01\\n1.76349327e-01 3.71665418e-01 1.93544462e-01 9.65916663e-02\\n1.15380600e-01 -2.84991413e-01 -1.43430429e-02 3.59965742e-01\\n-1.51247576e-01 -6.32064342e-01 1.47848114e-01 4.74647656e-02\\n4.74401683e-01 4.91123945e-01 -5.39658964e-01 -2.43761733e-01\\n-1.52173072e-01 -2.56942779e-01 1.61740094e-01 -2.92044282e-01\\n-4.96272147e-02 4.84879673e-01 1.21359810e-01 4.54459414e-02\\n3.41642387e-02 -3.72570783e-01 7.99332559e-03 -2.69092530e-01\\n2.22852696e-02 -7.21908152e-01 -1.36210471e-01 -8.45591500e-02\\n8.16650748e-01 -2.96223730e-01 1.57203883e-01 -9.54588503e-02\\n1.26440257e-01 1.74636230e-01 8.94863717e-03 1.92048252e-02\\n-4.01789278e-01 -1.95247695e-01 -5.05155604e-03 3.23557369e-02\\n4.60078239e-01 4.78760779e-01 -3.04901659e-01 -3.00131459e-02\\n8.12928677e-02 -4.24017549e-01 -4.02201265e-01 -2.28107348e-01\\n-2.17574567e-01 -3.73260498e-01 -6.86394215e-01 -4.28051353e-01\\n-8.42068053e-04 -1.90977529e-02 2.80474909e-02 5.86344838e-01\\n-2.83237129e-01 -2.33287498e-01 -8.16170499e-02 -6.24902487e-01\\n2.21570775e-01 -1.46495730e-01 4.69842777e-02 -2.03845352e-01\\n-1.18891701e-01 -5.26580393e-01 2.96362191e-02 -1.84443727e-01\\n3.16750854e-02 -1.08838528e-01 -7.95118883e-03 -6.29516914e-02\\n-4.15167511e-01 -6.67237759e-01 3.67964208e-01 1.17280856e-01\\n2.67264128e-01 6.96267784e-02 1.84422359e-01 7.76985753e-03\\n3.16727191e-01 -1.06417999e-01 1.56561643e-01 -4.11961645e-01\\n-4.54064319e-03 3.50753367e-02 5.33268094e-01 -1.34442493e-01\\n2.53753085e-02 1.58909738e-01 -2.84534991e-01 -6.49948865e-02\\n1.83838159e-01 3.11604869e-02 1.20041080e-01 -3.32923681e-01\\n3.78964812e-01 -2.08193779e-01 -1.34031609e-01 -3.84025723e-02\\n7.95439854e-02 6.67521775e-01 -9.07117948e-02 -2.24580631e-01\\n-2.13326246e-01 4.56168592e-01 -1.12361178e-01 -1.46115884e-01\\n-2.14275673e-01 -2.15088353e-02 -1.04602940e-01 1.15005344e-01\\n3.29497643e-03 -1.11089461e-01 -1.78989664e-01 -1.31157324e-01\\n-1.16287135e-01 3.25007915e-01 1.54645443e-01 1.50567740e-01\\n-1.01972483e-01 -4.60030079e-01 -4.56119771e-04 2.91093320e-01\\n1.84487551e-01 3.56197119e-01 -2.82094330e-02 -3.12071234e-01\\n-2.80383360e-02 2.40914762e-01 6.59707654e-03 3.67216259e-01\\n-1.90381423e-01 1.51898801e-01 -6.77344382e-01 -2.78151125e-01\\n-1.73992589e-01 -3.61348301e-01 8.12298954e-02 3.76010925e-01\\n1.52181134e-01 -5.52453399e-02 1.63824514e-01 -5.86592138e-01\\n4.21698332e-01 3.86788137e-02 2.89200068e-01 -4.65883091e-02\\n-1.28184959e-01 4.76823449e-01 -3.10150534e-02 -4.38425131e-02\\n-2.43651316e-01 1.95553139e-01 -1.46640718e-01 -3.30681711e-01\\n1.89789012e-01 -4.15319085e-01 -2.33142838e-01 3.87686461e-01\\n8.60225409e-02 -2.28306726e-01 -1.93042859e-01 7.39180297e-02\\n3.75953177e-03 -4.54503089e-01 -2.52650738e-01 -7.54570439e-02\\n3.61787736e-01 1.26784205e-01 2.71633297e-01 -3.22847873e-01\\n8.42160285e-02 -8.58866274e-02 -8.21855739e-02 4.04488921e-01\\n3.69907655e-02 -6.22059144e-02 -3.12176198e-01 -1.59623578e-01\\n4.58450079e-01 -1.77133292e-01 -2.37016864e-02 1.18872933e-01\\n9.29111540e-02 -2.95646757e-01 -4.90285933e-01 -6.99271709e-02\\n8.66693556e-02 -5.21860123e-02 -3.77704613e-02 6.90912455e-02\\n7.78119341e-02 6.17326982e-02 -4.36556190e-01 -1.64108545e-01\\n-3.48309845e-01 -7.25517198e-02 7.01059550e-02 -4.57707703e-01\\n-1.65634096e-01 -6.01060577e-02 -4.67383236e-01 2.44101763e-01\\n-2.37860709e-01 2.27316972e-02 2.92285055e-01 -1.65588990e-01\\n-3.80428076e-01 -1.89400643e-01 9.47308093e-02 2.87066013e-01\\n-2.46226490e-01 -2.07789451e-01 -9.66834798e-02 -1.00555551e+00\\n2.02925876e-01 -1.30872637e-01 -4.98056374e-02 3.58184017e-02\\n-3.64202596e-02 -7.89154887e-01 2.68895179e-01 -4.10526931e-01\\n-1.03596546e-01 -2.84045357e-02 -1.72376692e-01 -3.78441185e-01\\n2.35497072e-01 -2.96965484e-02 -2.47622490e-01 2.40348652e-01\\n-3.28644991e-01 4.43502098e-01 1.64369512e-02 3.72146703e-02\\n-1.23621419e-01 -2.95922965e-01 2.03749095e-03 -4.54361647e-01\\n-2.46674791e-01 -1.00867443e-01 -3.12553525e-01 4.19228598e-02\\n-9.00717229e-02 -1.30740345e-01 -1.94600612e-01 7.42791146e-02\\n4.15088296e-01 1.21921368e-01 -7.93483406e-02 -1.43306211e-01\\n1.72423363e-01 -5.09902239e-01 1.69317350e-01 -3.27898473e-01\\n1.00524195e-01 -1.32626623e-01 2.60226458e-01 2.19739541e-01\\n1.35404274e-01 -4.91473883e-01 3.29101801e-01 -4.48009372e-01\\n-5.26750445e-01 1.43201500e-02 6.79285973e-02 -1.54193386e-01\\n4.65061665e-01 -5.41942716e-01 -1.84909865e-01 3.91988754e-01\\n-3.80467884e-02 -3.87774631e-02 2.29927927e-01 -8.31914991e-02\\n-1.54848412e-01 1.93777397e-01 -3.63993645e-01 2.78356988e-02\\n7.29109347e-01 2.97423631e-01 1.50550744e-02 2.45707139e-01\\n2.04123780e-01 3.12750310e-01 4.08034384e-01 1.01338901e-01\\n-5.38795581e-03 3.50028157e-01 -5.73848337e-02 -6.59256220e-01\\n5.85917477e-03 -5.09761833e-03 -3.33802193e-01 -3.10916871e-01\\n6.43007040e-01 3.93528640e-01 -4.00413543e-01 -3.07851851e-01\\n-2.00726002e-01 -2.13978842e-01 2.55529165e-01 3.70820202e-02\\n2.39879712e-01 4.26364318e-03 6.05877399e-01 1.43179610e-01\\n2.80882865e-01 6.50168717e-01 -1.66484520e-01 -3.05924505e-01\\n3.54904085e-02 3.28848094e-01 -3.73973995e-02 4.60030496e-01\\n-1.35907263e-01 2.84458667e-01 -9.23225358e-02 -3.37796248e-02\\n-9.76275653e-02 1.43223435e-01 1.78526103e-01 -3.26318368e-02\\n1.16038181e-01 7.29452744e-02 4.23307061e-01 4.27861929e-01\\n2.92726010e-01 3.76757383e-01 2.97999948e-01 3.12964395e-02\\n4.99812603e-01 4.65014637e-01 3.86114776e-01 1.27076000e-01\\n4.80362698e-02 1.34755716e-01 1.05135947e-01 7.07183555e-02\\n2.49690160e-01 3.30388665e-01 8.25779736e-02 9.25211728e-01\\n3.68591398e-01 2.69573301e-01 7.10277975e-01 -5.85745335e-01\\n-3.28817725e-01 -2.13221475e-01 5.07364154e-01 -3.62576783e-01\\n-5.21593206e-02 8.35919529e-02 -9.39361230e-02 3.43980849e-01\\n-3.31892371e-01 -2.30632693e-01 4.35365252e-02 2.30933771e-01\\n5.45152687e-02 2.59559005e-02 -1.37752265e-01 1.47144021e-02\\n-2.34334201e-01 -2.95307875e-01 -5.97996235e-01 -1.71406239e-01\\n-1.91932321e-01 -8.37542489e-02 -1.69033170e-01 -9.45577174e-02\\n-2.39471942e-01 -3.43974501e-01 -9.28418264e-02 -9.75252464e-02\\n3.05595368e-01 -2.03515068e-01 -4.90560047e-02 -1.77224323e-01\\n4.21410710e-01 1.90544441e-01 5.85261703e-01 -3.29012275e-02\\n6.19723536e-02 -4.69307840e-01 -2.07040191e-01 1.13210708e-01\\n7.64514282e-02 2.52238158e-02 4.38707955e-02 4.78126526e-01\\n-2.79441535e-01 -2.42833152e-01 4.90680570e-03 3.51825029e-01\\n-4.21927482e-01 -8.22668001e-02 3.52508128e-02 1.42494947e-01\\n5.55643328e-02 2.74579115e-02 -1.36973664e-01 -4.16733511e-02\\n-9.12409797e-02 -4.46850061e-01 2.21877247e-01 1.64352339e-02\\n-2.63824046e-01 2.75128007e-01 2.32905328e-01 1.85319960e-01\\n-1.28736332e-01 -9.35236067e-02 -1.17537715e-01 8.76640752e-02\\n-7.66385347e-03 3.47190261e-01 -1.64434120e-01 -4.21817601e-01\\n-2.38005117e-01 2.00991228e-01 -3.99697393e-01 9.29051936e-02\\n2.57381517e-02 2.95806766e-01 4.98581231e-02 -5.15647605e-02\\n4.65222955e-01 3.06350384e-02 -1.82640076e-01 -2.53989995e-01\\n-7.15851411e-02 -3.08803678e-01 -4.61579598e-02 -1.35998756e-01\\n1.36391968e-01 -2.77447462e-01 -1.13779701e-01 -3.12114954e-01\\n-1.25723988e-01 -2.47070983e-01 -1.69569999e-01 -1.25062257e-01]]',\n", + " 'We are an investment and trading firm with offices based in Zug, Zürich and Ziegelbrücke, Switzerland. We are looking for a Junior Software Developer Internship (f / m, 100%) who is motivated to learn in a small but growing team. This position is being offered either as a 6 to 12-month internship or as an entry level role for recent graduates. The successful candidate will work on projects involving futures and cryptocurrencies and gain exposure to financial markets trading. Your Responsibilities: • Developing an automated trading system with the Senior Portfolio Managers. • Building front end framework and GUI. • Managing short-term quantitative strategies and market risk issues. • Directing system testing and validation procedures. Your Profile: • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Effective communicator, fluency in English is a must. • Excellent at multi-tasking and working under pressure. • Highly motivated and interested to learn from experienced professionals. • An interest in finance and cryptocurrencies will be beneficial. Did we raise your interest? Please send your CV and cover letter. Requirements • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Fluency in English. • Excellent at multi-tasking and working under pressure.',\n", + " '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " '[\"Market Risk\", \"Automation\", \"KM Programming Language\", \"Vue.js\", \"Notching\", \"Python (Programming Language)\", \"M (Programming Language)\", \"Levelling\", \"Financial Market\", \"Investments\", \"Business Economics\", \"Cryptocurrency\", \"Portfolio Management\", \"Finance\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Physics\", \"Computer Programming\", \"Validations\", \"Front End (Software Engineering)\", \"Software Development\", \"Political Sciences\", \"System Testing\"]',\n", + " \"['English', 'Kikuyu', 'Panjabi', 'Pali']\"],\n", + " ['19',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.57442186e-02 1.89378172e-01 4.58602995e-01 -1.45687848e-01\\n3.45443606e-01 -2.16841891e-01 8.32162946e-02 3.52371961e-01\\n1.24339201e-02 -4.67337012e-01 -4.36932482e-02 -2.53092408e-01\\n8.15873034e-03 1.78620026e-01 9.19062123e-02 3.34598005e-01\\n1.35245293e-01 6.92561716e-02 -1.29040137e-01 2.71780521e-01\\n9.42296386e-02 -1.08291984e-01 1.08184852e-01 6.58065796e-01\\n4.39737737e-01 -3.50390095e-03 8.25651959e-02 2.36601103e-02\\n-1.88826829e-01 -2.74464101e-01 5.30852914e-01 4.08361554e-02\\n-7.19722211e-02 -3.93924177e-01 1.58049494e-01 2.32869945e-02\\n-2.86376804e-01 -4.16797511e-02 -2.13953450e-01 9.69535857e-02\\n-5.73742211e-01 -1.87130108e-01 7.54973069e-02 -3.84808220e-02\\n-1.87633306e-01 -3.86527628e-01 1.59954488e-01 -1.31412759e-01\\n2.04590514e-01 2.34967042e-02 -5.04115880e-01 1.17434680e-01\\n-2.37346560e-01 -1.75174907e-01 3.21135372e-01 6.29935443e-01\\n-1.07809961e-01 -5.00485003e-01 -6.41662359e-01 -2.75313377e-01\\n2.45443076e-01 -1.71210006e-01 -7.27842301e-02 -2.52907455e-01\\n2.45358676e-01 5.86717995e-03 2.42415704e-02 3.97441804e-01\\n-7.66188264e-01 -9.66802761e-02 -2.71132886e-01 -7.53038973e-02\\n-2.11624309e-01 -2.15147629e-01 -2.74551660e-01 -5.57647413e-03\\n-1.80703193e-01 3.87804180e-01 1.91151038e-01 -2.06853375e-02\\n-1.49018973e-01 3.29754204e-01 -3.67794573e-01 4.48862791e-01\\n1.91973403e-01 1.90802887e-01 1.28035456e-01 3.02774906e-01\\n-3.27059388e-01 5.10012865e-01 2.04714894e-01 -3.37980658e-01\\n1.56661585e-01 7.07613304e-03 4.14200902e-01 6.77157044e-02\\n2.19367087e-01 6.60389513e-02 -1.26968578e-01 3.35014522e-01\\n3.14370960e-01 -2.32037961e-01 6.44790381e-02 -1.41857684e-01\\n8.80630016e-02 5.77951036e-02 2.61894111e-02 1.06465712e-01\\n-1.05310194e-01 3.55973035e-01 1.43131435e-01 -2.12869376e-01\\n-1.89661950e-01 -5.25319874e-01 -1.89525381e-01 -1.21642835e-01\\n3.37628461e-03 1.63508311e-01 1.51153460e-01 1.88049674e-01\\n2.13702902e-01 1.00741565e-01 7.73040652e-02 8.03940892e-01\\n-4.78993095e-02 4.55966499e-03 -3.72107208e-01 4.01805699e-01\\n-5.92889590e-03 -2.37159848e-01 3.18887442e-01 2.98571169e-01\\n-2.32265908e-02 -2.42290705e-01 -1.71685100e-01 3.49982142e-01\\n-3.67573500e-02 -2.24747822e-01 -2.64400572e-01 1.07550569e-01\\n4.39774804e-03 -3.49793196e-01 5.52819133e-01 3.12125832e-01\\n1.17431127e-01 6.35276511e-02 -2.14530956e-02 -2.11070105e-01\\n-1.95397601e-01 1.62346095e-01 -7.65882358e-02 8.91475454e-02\\n-7.25879595e-02 -2.44807556e-01 -2.70162940e-01 2.02972338e-01\\n-2.17410073e-01 1.95208877e-01 -1.24944247e-01 -8.28449875e-02\\n3.81945342e-01 1.78594775e-02 -2.25519925e-01 3.72184724e-01\\n3.40959318e-02 1.39145106e-01 -4.29430306e-02 2.48543113e-01\\n-1.61985934e-01 1.01750031e-01 -7.04445541e-02 -1.29612893e-01\\n5.85227370e-01 5.40453121e-02 2.15280756e-01 -4.69587334e-02\\n2.70395756e-01 8.50804383e-04 1.02759056e-01 7.77248293e-02\\n-6.19488299e-01 3.39358628e-01 -5.55838794e-02 -1.43092033e-02\\n1.46093503e-01 -1.61656946e-01 1.38867214e-01 -2.29362056e-01\\n1.68008003e-02 -7.87989646e-02 -4.11463499e-01 -2.18771070e-01\\n-1.25140309e-01 -1.06575660e-01 3.63091737e-01 -5.42125642e-01\\n-1.41909510e-01 2.78147519e-01 -5.09710848e-01 -5.86142242e-02\\n1.31657004e-01 2.13778183e-01 1.07512318e-01 1.01412848e-01\\n-2.88605869e-01 -4.09494311e-01 1.36799783e-01 -3.72825116e-01\\n-2.24919423e-01 1.21425360e-01 -2.36481696e-01 3.20779920e-01\\n1.80483922e-01 -6.72204494e-02 -1.46790504e-01 1.70296818e-01\\n-1.41987830e-01 -7.51632378e-02 9.93040875e-02 5.33701794e-04\\n2.95052499e-01 5.38034290e-02 -3.59236717e-01 3.52307439e-01\\n-8.59657377e-02 6.35529459e-01 -1.41941216e-02 -9.00925040e-01\\n5.04979610e-01 3.19723397e-01 1.39187276e-02 -3.71123821e-01\\n5.30409276e-01 -2.86310464e-01 9.11581442e-02 1.22200146e-01\\n-4.28514093e-01 -3.71057987e-01 1.31020680e-01 -1.15974046e-01\\n-1.84137508e-01 3.88696700e-01 -2.34523769e-02 1.78008988e-01\\n1.61042050e-01 -1.11734971e-01 -1.68423966e-01 -1.73990037e-02\\n-5.46026193e-02 -1.45172730e-01 -4.74860728e-01 -2.09798235e-02\\n-1.17428936e-01 -4.04468924e-01 -2.93307379e-02 -4.42003250e-01\\n-2.30420664e-01 -4.77646470e-01 -1.02652945e-01 1.89736173e-01\\n2.81514168e-01 1.13948278e-01 -3.21220122e-02 9.14221630e-02\\n-1.57583326e-01 -7.04185903e-01 4.72786278e-02 2.19780728e-01\\n3.34958822e-01 1.87255397e-01 1.04577176e-01 -1.11959754e-02\\n-1.83503442e-02 6.01614475e-01 -2.15519384e-01 -1.07419126e-01\\n1.23987228e-01 1.67821482e-01 1.59569293e-01 -8.35024044e-02\\n-3.11752819e-02 2.22432867e-01 -3.12341928e-01 -6.25094492e-03\\n5.03772534e-02 -1.00405335e-01 3.88597518e-01 9.08679888e-02\\n-4.27372426e-01 -1.29270718e-01 -6.59503564e-02 1.97064579e-01\\n-6.08596206e-01 -2.01407060e-01 7.48643100e-01 1.04797050e-01\\n8.83072615e-02 2.24123687e-01 2.17801899e-01 -1.43636227e-01\\n-1.52145267e-01 -6.77895546e-02 3.23389053e-01 6.21610247e-02\\n1.53736278e-01 1.14279561e-01 -7.33488649e-02 -5.74980557e-01\\n-3.55068779e+00 -1.64703622e-01 1.84271932e-01 -1.85034066e-01\\n1.80901453e-01 -1.00180998e-01 1.17739208e-01 -1.50927275e-01\\n-2.62816548e-01 -5.28686494e-02 -1.35489658e-01 -6.53107762e-02\\n2.06079051e-01 2.48377323e-01 1.13764636e-01 4.30373818e-01\\n1.17208853e-01 -1.57071665e-01 2.68973317e-02 3.14729065e-01\\n-2.97535866e-01 -5.22082031e-01 2.13651210e-01 -1.32526653e-02\\n1.66789129e-01 2.55288512e-01 -3.46194297e-01 -9.10048410e-02\\n-1.27016604e-01 -1.97351754e-01 1.33490548e-01 -2.54421264e-01\\n-1.37043707e-02 2.51917362e-01 1.35722086e-01 -9.21426639e-02\\n1.44268051e-01 -4.84136403e-01 -1.68320924e-01 -4.27092761e-01\\n1.11622274e-01 -6.38089001e-01 -5.79575561e-02 -1.19757831e-01\\n6.98781610e-01 -3.45104188e-01 1.13973171e-01 1.07796200e-01\\n1.01013489e-01 2.08540320e-01 1.13630064e-01 4.95656915e-02\\n-2.87700295e-01 -3.53833109e-01 -9.52672064e-02 2.40692031e-02\\n4.42098856e-01 5.33463299e-01 -2.35440180e-01 -2.54142210e-02\\n-1.15769421e-06 -2.84247547e-01 -5.17201722e-01 -2.51405776e-01\\n-2.10174441e-01 -1.69752970e-01 -6.15881979e-01 -3.97114992e-01\\n-7.88984746e-02 -2.63941288e-01 -2.23394036e-01 6.25844002e-01\\n-2.06623614e-01 -2.57064670e-01 -3.64080369e-02 -4.90673393e-01\\n2.85427868e-01 -1.97943866e-01 1.30878374e-01 -1.43519461e-01\\n-2.74407268e-01 -4.54920530e-01 2.32744161e-02 -3.33823962e-03\\n-1.06337711e-01 -2.36083239e-01 1.63593039e-01 -1.44239888e-01\\n-2.62382567e-01 -6.02244914e-01 3.21909577e-01 9.43948328e-02\\n2.24654660e-01 8.74131992e-02 2.99375296e-01 -1.30910967e-02\\n2.52074867e-01 -1.87841848e-01 -1.35526121e-01 -2.91167527e-01\\n1.19264625e-01 1.72656234e-02 3.94230008e-01 -2.45610863e-01\\n-3.27338614e-02 1.17445350e-01 -2.34751686e-01 -8.47606435e-02\\n1.63389355e-01 -3.95684056e-02 1.69124857e-01 -2.08538428e-01\\n2.82168567e-01 -9.27300900e-02 -2.28529289e-01 5.23281954e-02\\n6.12593256e-02 5.20939171e-01 -1.06351301e-02 -4.41916615e-01\\n-1.17495758e-02 4.38328713e-01 -8.81546959e-02 -1.43787414e-01\\n-2.93178886e-01 8.83530378e-02 -1.90289125e-01 2.24267989e-01\\n-2.91240178e-02 -5.06260805e-02 -3.16101491e-01 -2.98078388e-01\\n-1.07219346e-01 3.41463357e-01 2.44841889e-01 7.98254088e-02\\n5.73271327e-02 -3.68674308e-01 -2.06909375e-03 1.30784526e-01\\n5.05497456e-02 4.16423053e-01 1.82781354e-01 -8.88916925e-02\\n4.20207419e-02 3.35776687e-01 -2.04663292e-01 6.93471283e-02\\n-2.74276704e-01 7.25523606e-02 -5.83320141e-01 -2.98657089e-01\\n-2.15485603e-01 -4.18362111e-01 1.44552931e-01 1.88294783e-01\\n4.96755652e-02 -1.90061331e-02 1.12054683e-01 -4.96090174e-01\\n1.75016552e-01 8.65428224e-02 1.95412472e-01 1.35037586e-01\\n1.70118734e-02 6.25534058e-01 1.06636574e-02 -1.58718303e-01\\n-9.90718529e-02 7.04266131e-02 -3.55482191e-01 -2.00560391e-01\\n-7.14957295e-03 -4.81580049e-01 -3.54342349e-02 4.26313251e-01\\n3.70509215e-02 -2.31378958e-01 -1.70018539e-01 3.04721743e-01\\n-1.37174744e-02 -1.47132412e-01 -1.11989759e-01 9.45148170e-02\\n3.97196591e-01 9.56301689e-02 2.37273112e-01 -4.05986547e-01\\n-1.19029516e-02 5.14404997e-02 -1.19741522e-01 5.58856964e-01\\n2.29226977e-01 3.53131071e-02 -7.31827393e-02 -1.75493017e-01\\n3.19736302e-01 -2.61813253e-01 -1.53956590e-02 -2.99814809e-02\\n2.79348642e-01 -1.27128094e-01 -4.08747017e-01 1.69442773e-01\\n-3.21790352e-02 -1.47803798e-01 3.46264690e-02 1.82499349e-01\\n-3.89207713e-02 9.93467495e-02 -6.64985895e-01 -3.19091648e-01\\n-3.22563142e-01 9.05268826e-03 5.65712946e-03 -4.80576068e-01\\n-1.92757323e-02 -6.36041909e-02 -4.58779812e-01 3.48046005e-01\\n-7.58412182e-02 -6.75795376e-02 1.85382277e-01 9.40430313e-02\\n-2.76519358e-01 -4.20381427e-02 1.14045098e-01 2.48870060e-01\\n-2.24173099e-01 -1.84890062e-01 -3.76539603e-02 -9.95263577e-01\\n1.62934363e-01 1.49770444e-02 -2.04363242e-01 2.07640976e-01\\n-4.41218615e-02 -5.92069209e-01 1.42739028e-01 -3.37589234e-01\\n-2.61765927e-01 4.65812199e-02 -2.29904130e-01 -5.93661010e-01\\n8.68923776e-03 4.75779511e-02 -2.61916935e-01 4.32812899e-01\\n-4.37921315e-01 4.10880923e-01 -1.61196992e-01 6.48207441e-02\\n4.26573530e-02 -3.12212408e-01 8.73913169e-02 -4.55629021e-01\\n-4.13134485e-01 -1.83209226e-01 -3.19873929e-01 -1.79199800e-01\\n1.08958088e-01 -3.76982719e-01 -1.40612975e-01 3.17906663e-02\\n3.50609571e-01 1.21649176e-01 -7.01128691e-02 -3.23399097e-01\\n1.58750117e-02 -5.32752216e-01 1.14305951e-01 -9.10520405e-02\\n-1.80941436e-03 -1.31279498e-01 2.39057496e-01 1.12804748e-01\\n1.22529611e-01 -4.85555768e-01 3.65202576e-01 -3.43379617e-01\\n-2.96050042e-01 -7.89743960e-02 -5.31284325e-02 5.60663976e-02\\n3.44601572e-01 -4.29282725e-01 -4.91534024e-02 3.71201366e-01\\n1.26918122e-01 -8.86475742e-02 2.98863947e-01 -1.57297309e-02\\n-8.59000757e-02 2.79796511e-01 -3.88879031e-01 1.15396433e-01\\n6.70512319e-01 -7.57927671e-02 2.17453286e-01 2.01821133e-01\\n2.34108672e-01 2.73227662e-01 4.88065779e-01 2.38331705e-02\\n-1.37448862e-01 3.61839533e-01 3.96960452e-02 -5.11571527e-01\\n2.63351612e-02 5.05421944e-02 -2.23253846e-01 -2.73406237e-01\\n6.59672201e-01 4.68181789e-01 -4.63041395e-01 -1.42755613e-01\\n-1.42072663e-01 -2.25494310e-01 1.46025568e-01 -1.30116567e-01\\n2.34307088e-02 -7.29178563e-02 4.67162848e-01 -4.82024923e-02\\n1.25718415e-01 3.85010153e-01 -2.90009052e-01 -2.76701629e-01\\n-3.56341489e-02 1.55911893e-01 1.50719639e-02 5.17825067e-01\\n-2.04792798e-01 4.44046021e-01 7.86947377e-04 1.95356041e-01\\n-1.40811846e-01 5.07457228e-03 9.64626968e-02 1.08444966e-01\\n1.23171754e-01 -1.21941734e-02 4.27501470e-01 4.72140640e-01\\n3.59620154e-01 5.14673352e-01 3.17754984e-01 6.47062212e-02\\n4.17997748e-01 5.81712186e-01 4.58585739e-01 2.54909128e-01\\n-4.20142077e-02 2.78132018e-02 7.19104707e-02 5.38849868e-02\\n2.57421196e-01 3.44139099e-01 2.78885867e-02 7.73714185e-01\\n3.99364293e-01 2.87696034e-01 5.40668905e-01 -5.74597895e-01\\n-3.45262378e-01 1.61527824e-02 3.47008169e-01 -4.32356685e-01\\n2.75519472e-02 2.16022134e-01 -1.17366299e-01 1.85706183e-01\\n-4.60349798e-01 -2.14406520e-01 -1.44643962e-01 2.19187915e-01\\n-2.63861194e-02 -1.88618898e-01 -1.99324846e-01 7.89820403e-02\\n-1.90444171e-01 -1.17522910e-01 -4.87956494e-01 -3.54552385e-03\\n-1.89638913e-01 -3.02673072e-01 -1.80147767e-01 -3.55094261e-02\\n-2.01062590e-01 -2.92690456e-01 -2.29442716e-01 6.42129630e-02\\n3.24731708e-01 -1.75561741e-01 -3.83354835e-02 -1.96214318e-01\\n2.83486485e-01 1.28776968e-01 4.99122351e-01 3.21448259e-02\\n5.42231798e-02 -2.67710298e-01 -2.02247620e-01 6.71580732e-02\\n2.80395955e-01 1.35796130e-01 3.23181003e-02 3.95114034e-01\\n-2.29575202e-01 -1.63464442e-01 1.26224726e-01 3.90273929e-01\\n-4.83845234e-01 9.70266908e-02 -1.29094064e-01 1.67544350e-01\\n1.48680508e-01 3.06030422e-01 -2.15587735e-01 8.80230591e-02\\n-1.67847246e-01 -3.67088497e-01 3.34074646e-01 -1.53859198e-01\\n-1.14275441e-01 -2.80836690e-02 1.77481219e-01 2.28390440e-01\\n-2.56042242e-01 2.47418042e-02 5.21527138e-03 1.42531469e-01\\n-7.09108412e-02 2.67526418e-01 -3.03575188e-01 -2.74744451e-01\\n-2.75416255e-01 1.63753912e-01 -1.65979922e-01 2.96007007e-01\\n1.11757308e-01 3.08608264e-01 2.21313253e-01 -1.95499156e-02\\n3.77684683e-01 7.04156328e-03 -6.18286505e-02 -1.84935808e-01\\n-3.29066694e-01 -9.96560231e-02 -6.74964860e-02 -6.32238463e-02\\n1.85466900e-01 -4.43852276e-01 -8.46024007e-02 -6.99994415e-02\\n-2.12609187e-01 -3.41137022e-01 -2.60685924e-02 -8.48833621e-02]]',\n", + " 'About Us B3i is a growing and dynamic business operating in the global insurance market. We are at the forefront of bringing real innovation into the industry through Blockchain / DLT solutions which we believe will transform insurance. Our vision is simply to make insurance more relevant, accessible and affordable. We have a flat management structure with a start-up mentality and are very ambitious; we want determined and enthusiastic people to share our vision and join us on this journey of innovation. What You Will Do You will be developing distributed insurance applications and services using R3 Corda You will work within a highly skilled and motivated engineering team You will bring your perspective on design and engineering helping to create innovative solutions Your code and applications will run on a global distributed network What you will bring on a professional level Strong knowledge of Java or Kotlin development, tooling and ecosystem Strong object-oriented development Some knowledge about Blockchain, distributed ledger and networks Agile software development experience including tools such as JIRA and CI Experience of working on multi-layered projects It would be great if you have R3 Corda development experience and on a personal level Share you knowledge, insight and learning openly Open to feedback and challenges from the team Curious to learn new skills What we offer B3i offers a competitive package including flexible working time and location & sabbatical programme You will work with a great bunch of people who are really making history in central Zurich Corda certification as part of your onboarding To apply for a job please send your CV in English only to jobs@b3i.tech. Please check your spam mailbox as our replies may be there. Disclaimer Notice for recruitment agencies B3i does not accept speculative CVs. We will only review CVs sent with an application for an advertised post. Any unsolicited CVs received will be treated as the property of B3i Services AG and Terms & Conditions associated with the use of such CVs will be considered null and void.',\n", + " '[\"Innovation\", \"Professionalism\", \"Management\", \"Business Operations\"]',\n", + " '[\"Advertisement\", \"Tooling\", \"Accessioning\", \"Object-Oriented Software Development\", \"CAN-SPAM Act\", \"Blockchain\", \"Industrialization\", \"Perspective (Graphical)\", \"Onboarding\", \"Layering\", \"Levelling\", \"Agile Software Development\", \"Corda\", \"Personalization\", \"Receivables\", \"Distributed Development\", \"Software Development\", \"JIRA Studio\", \"Distributed Network Protocol (DNP3)\", \"Java (Programming Language)\", \"Kotlin\"]',\n", + " \"['English', 'Kazakh', 'Greek', 'Dhivehi', 'Ossetic']\"],\n", + " ['68',\n", + " 'software engineer / kubernetes',\n", + " 'Zürich',\n", + " 'Publishing',\n", + " '',\n", + " '[[-9.86396894e-02 3.53228837e-01 5.67326486e-01 3.63957249e-02\\n4.11444038e-01 -1.54789671e-01 -1.02825258e-02 3.75273436e-01\\n-1.09489605e-01 -3.61436069e-01 -1.27484068e-01 -2.00840175e-01\\n-2.10987758e-02 9.52819064e-02 9.87729430e-02 3.63007396e-01\\n1.37525052e-01 1.10589705e-01 -1.76684603e-01 2.60704219e-01\\n1.58464849e-01 -8.05613026e-02 1.65607065e-01 6.42816842e-01\\n3.86824906e-01 2.66366173e-02 -4.28315764e-03 3.82334217e-02\\n-2.43231893e-01 -2.74984568e-01 5.35701811e-01 1.72870532e-01\\n-2.02128589e-01 -3.24811488e-01 9.71850902e-02 -1.22270696e-02\\n-1.51039958e-01 -1.66761622e-01 6.61277249e-02 2.59619087e-01\\n-3.99658412e-01 -2.26555467e-01 8.92851651e-02 -2.46167164e-02\\n-2.31960461e-01 -3.20629090e-01 2.11927425e-02 -7.26859942e-02\\n1.23782150e-01 -9.61930528e-02 -5.79135120e-01 3.66553992e-01\\n-2.13437229e-01 -1.46317482e-01 3.15854549e-01 5.32991588e-01\\n-8.24891999e-02 -4.79702652e-01 -3.03395003e-01 -1.51844054e-01\\n6.08861223e-02 -2.08625227e-01 6.65153936e-02 -2.31660664e-01\\n2.91905969e-01 2.14463491e-02 -2.67569907e-02 3.28941286e-01\\n-6.91635668e-01 -1.72613878e-02 -2.27979168e-01 -1.59735546e-01\\n-2.58818299e-01 -1.25708237e-01 -2.01496348e-01 -1.32322893e-01\\n-1.46813557e-01 3.84239137e-01 9.33659896e-02 4.49809916e-02\\n-2.13775635e-01 2.79151410e-01 -1.96597308e-01 3.56353700e-01\\n2.63455778e-01 2.20443532e-01 1.60394460e-01 3.43518764e-01\\n-3.72574925e-01 3.65624726e-01 2.37283453e-01 -2.83255041e-01\\n3.18914801e-01 -7.92915374e-03 4.37403560e-01 1.10671923e-01\\n1.17043637e-01 4.85769100e-02 -1.37978867e-01 1.56821102e-01\\n2.50299215e-01 -1.47155181e-01 1.31804541e-01 -1.30578563e-01\\n-5.54054789e-02 -9.16475281e-02 -6.68351576e-02 3.09340835e-01\\n-2.00602442e-01 4.17501897e-01 2.48793095e-01 -1.57543525e-01\\n-1.23951837e-01 -4.73002315e-01 -1.05028406e-01 5.82843460e-02\\n-3.19957472e-02 1.51362702e-01 2.86295682e-01 2.13342682e-01\\n3.63012284e-01 1.10410206e-01 1.42234713e-01 8.16576838e-01\\n-2.34701131e-02 -8.18513334e-02 -2.53655016e-01 3.18368405e-01\\n9.24840942e-02 -2.44545594e-01 2.32423604e-01 2.95756489e-01\\n5.20852953e-02 -1.06155507e-01 -1.16933405e-01 2.98990518e-01\\n-3.46655138e-02 -2.58636832e-01 -3.16073775e-01 1.20410465e-01\\n-2.43355468e-01 -3.74621838e-01 5.19879162e-01 7.43166730e-02\\n1.84957951e-01 1.51498113e-02 -1.04693070e-01 -1.65667117e-01\\n-3.16648781e-02 1.75257295e-01 -8.08483660e-02 1.76391557e-01\\n-2.46911645e-01 -1.86413556e-01 -2.88301826e-01 1.57823950e-01\\n-7.57721812e-02 9.13605094e-02 -7.45673617e-03 -8.65919814e-02\\n3.65876615e-01 -8.12272355e-03 -2.32298151e-01 3.24595660e-01\\n-1.55297685e-02 -1.49815962e-01 -1.45775735e-01 3.34570229e-01\\n-1.49785161e-01 1.97962001e-01 -3.05489283e-02 -2.20910087e-01\\n4.47093397e-01 -2.68346611e-02 2.07813293e-01 -1.02096079e-02\\n2.94017404e-01 -8.27189609e-02 1.77478179e-01 1.32296905e-01\\n-5.97901762e-01 3.19129705e-01 -1.91639274e-01 2.61017047e-02\\n1.14954583e-01 2.59220749e-02 2.18464747e-01 -2.66264051e-01\\n2.67351028e-02 -7.70545527e-02 -4.03702557e-01 -4.70857352e-01\\n-1.21590711e-01 -7.42204301e-03 3.52233082e-01 -3.32233787e-01\\n-1.27752855e-01 2.14209899e-01 -4.47474450e-01 -6.46150559e-02\\n2.51695156e-01 2.36691028e-01 7.15972260e-02 5.04741967e-02\\n-1.73025236e-01 -3.23829234e-01 1.71359796e-02 -4.16661739e-01\\n-3.24671000e-01 2.22271290e-02 -3.33122373e-01 2.14627117e-01\\n1.39333799e-01 4.43055592e-02 -5.78242131e-02 1.64755136e-01\\n-2.28202790e-01 -1.35058090e-01 1.62339419e-01 1.26342416e-01\\n3.60177249e-01 -8.31727460e-02 -3.43623817e-01 4.77640778e-01\\n-1.58829302e-01 5.72451770e-01 2.00217709e-01 -8.05105031e-01\\n5.52977085e-01 3.03927064e-01 9.23681539e-03 -3.16989899e-01\\n5.90869367e-01 -3.15465957e-01 6.21235296e-02 1.31655172e-01\\n-2.81153172e-01 -3.37243319e-01 2.16755599e-01 -1.75419182e-01\\n-2.91525453e-01 5.46115637e-01 7.20381737e-02 5.03583029e-02\\n9.29163620e-02 -2.61773378e-01 -1.03731371e-01 -8.75549465e-02\\n-7.23192990e-02 -1.76573649e-01 -4.69672233e-01 2.83928346e-02\\n-1.52788594e-01 -4.98112053e-01 -2.16351487e-02 -3.61615479e-01\\n-1.74553543e-01 -3.99190009e-01 -1.37264594e-01 3.72618973e-01\\n2.15542004e-01 1.08110808e-01 7.24827358e-03 -5.01966402e-02\\n-1.70615315e-01 -6.47843242e-01 -1.28515959e-01 1.60230994e-01\\n4.11659837e-01 1.68365851e-01 8.09346884e-02 5.18935621e-02\\n-1.97065831e-03 6.04531646e-01 -1.38802931e-01 -9.09259543e-02\\n1.79975078e-01 1.98866859e-01 -1.18141174e-02 -5.82729839e-02\\n7.97336400e-02 2.74976432e-01 -2.34403461e-01 -4.00242284e-02\\n-1.81422710e-01 3.57470848e-03 4.18841898e-01 9.48151667e-03\\n-3.26967120e-01 -3.05485457e-01 5.26369698e-02 2.41083652e-01\\n-4.54461366e-01 -6.97428957e-02 6.03892624e-01 2.91152775e-01\\n2.18290444e-02 2.36755401e-01 3.11013073e-01 -8.69348049e-02\\n-1.80006817e-01 -1.09573744e-01 9.09840241e-02 9.13751647e-02\\n1.51696369e-01 -5.98091120e-03 -2.18380064e-01 -4.93604749e-01\\n-3.86651587e+00 -1.79341570e-01 1.96873397e-01 -2.62040436e-01\\n1.90999582e-01 -4.90829460e-02 8.46772194e-02 -1.63355526e-02\\n-2.01715946e-01 5.80407046e-02 -1.12979256e-01 -1.12677477e-01\\n1.11043625e-01 1.78158745e-01 1.46073988e-02 2.37694532e-01\\n8.23406056e-02 -2.87258714e-01 -3.24229039e-02 2.40174547e-01\\n-3.00104469e-01 -6.77762747e-01 3.59239101e-01 -1.28383905e-01\\n1.38692573e-01 1.62161693e-01 -2.25758493e-01 -9.42895785e-02\\n-1.14096597e-01 -2.19792783e-01 8.73420835e-02 -1.25576392e-01\\n-1.80443496e-01 3.73502403e-01 1.34097382e-01 -1.18699417e-01\\n2.01839134e-01 -3.84118289e-01 -1.25689730e-01 -4.75600511e-01\\n1.32493392e-01 -5.16155839e-01 1.25955176e-02 -6.98613673e-02\\n7.48347998e-01 -3.70802611e-01 1.74251143e-02 1.54234201e-01\\n1.66155338e-01 3.09762985e-01 2.75816340e-02 -6.56370819e-02\\n-2.20833272e-01 -2.71969855e-01 1.47756403e-02 -2.00067982e-01\\n4.07934874e-01 5.32673240e-01 -2.50871986e-01 -1.21539831e-02\\n2.32154392e-02 -1.82392716e-01 -3.68688613e-01 -3.70543063e-01\\n-5.53291477e-02 -1.24375232e-01 -7.47914195e-01 -3.72815043e-01\\n-7.06396848e-02 -2.29033306e-01 -2.87312776e-01 6.46420538e-01\\n-2.03403503e-01 -4.23287958e-01 -5.42914830e-02 -4.30124909e-01\\n2.05894098e-01 -2.12960109e-01 -2.96743419e-02 -1.40996605e-01\\n-2.05325410e-01 -3.61008078e-01 3.96445245e-02 -3.37753929e-02\\n-1.81393668e-01 -1.50582254e-01 1.48122106e-02 -2.45135501e-01\\n-2.07390621e-01 -5.34297228e-01 3.44224155e-01 1.49384812e-01\\n3.54635149e-01 1.08168744e-01 2.91438520e-01 2.38403276e-01\\n3.10482174e-01 -1.43529698e-01 5.19399904e-02 -3.52669686e-01\\n1.47616312e-01 -3.97958234e-02 4.99625385e-01 -3.03666621e-01\\n2.60145850e-02 2.21558109e-01 -1.82700396e-01 -1.26914948e-01\\n3.01947147e-01 2.81799771e-02 -1.37295090e-02 -2.76748747e-01\\n1.01296894e-01 -3.51991236e-01 -2.81909347e-01 3.14142369e-02\\n1.25688184e-02 5.65383375e-01 -1.74573027e-02 -4.37440842e-01\\n-2.22908393e-01 4.53334332e-01 -8.18141457e-03 -1.00599438e-01\\n-3.21921796e-01 1.25206500e-01 -1.76940545e-01 2.56424189e-01\\n1.02477387e-01 -1.76139981e-01 -1.92849398e-01 -1.35695696e-01\\n-7.08939284e-02 1.59004316e-01 3.02977592e-01 1.69395566e-01\\n-1.11120297e-02 -3.06526214e-01 -9.34800133e-02 1.21854812e-01\\n2.07979739e-01 2.63404042e-01 1.12347476e-01 -6.61246553e-02\\n-5.83111458e-02 3.39883626e-01 -2.42418572e-01 9.73672494e-02\\n-1.68855280e-01 4.45390008e-02 -5.46581745e-01 -3.08295012e-01\\n-1.32315859e-01 -2.99340367e-01 8.98948535e-02 2.51019359e-01\\n2.27855965e-01 -6.55286536e-02 -3.08736358e-02 -4.01280642e-01\\n4.32699710e-01 -6.50226697e-02 2.32101783e-01 2.19520569e-01\\n-1.57424565e-02 5.68058193e-01 5.64253367e-02 -9.45260525e-02\\n-1.57026261e-01 -1.53292995e-02 -2.95301735e-01 4.15496435e-03\\n-4.37271036e-02 -2.51033068e-01 -8.52349773e-02 4.57998425e-01\\n1.87186465e-01 -2.33891904e-01 -1.90754890e-01 2.70599931e-01\\n-3.60190831e-02 -2.10468397e-01 -1.50382176e-01 5.44195250e-02\\n3.34445059e-01 1.43303171e-01 2.68921524e-01 -3.84067535e-01\\n-8.10124446e-03 -9.14625451e-03 -2.20850073e-02 4.29813117e-01\\n2.43724167e-01 3.63999642e-02 6.48201630e-03 -2.69303113e-01\\n3.85994583e-01 -2.20154852e-01 -1.98586956e-01 -8.88039023e-02\\n2.21271776e-02 -1.08325772e-01 -3.97155464e-01 1.12120487e-01\\n-1.78362101e-01 -1.97919130e-01 3.90429087e-02 1.02648075e-04\\n8.82162303e-02 -3.92693281e-02 -4.66547489e-01 -2.58321464e-01\\n-3.53705794e-01 7.90080875e-02 -1.15440011e-01 -4.25542533e-01\\n9.73891318e-02 6.13474064e-02 -5.82636297e-01 2.79635042e-01\\n-2.56400108e-01 -4.65064272e-02 8.05442631e-02 8.18636566e-02\\n-3.36314619e-01 3.08165252e-02 1.78941399e-01 1.88131973e-01\\n-1.99829563e-01 -2.92583674e-01 2.32387111e-02 -1.03392053e+00\\n1.92708880e-01 -6.09105378e-02 -1.82005376e-01 3.64910625e-02\\n-1.28273359e-02 -6.52777791e-01 9.90936607e-02 -2.57608116e-01\\n-1.16646208e-01 5.15502170e-02 -2.37577230e-01 -5.06722331e-01\\n4.24770750e-02 -2.28927415e-02 -2.23666817e-01 3.52656960e-01\\n-3.96853060e-01 1.99562147e-01 -1.21000195e-02 1.34260118e-01\\n5.96545748e-02 -3.34889233e-01 1.46886110e-01 -3.28380436e-01\\n-4.10223722e-01 -1.01043165e-01 -2.94904262e-01 -2.10966185e-01\\n-1.00863352e-01 -3.13403100e-01 -2.65923403e-02 3.67886238e-02\\n3.06757301e-01 8.25990587e-02 -5.05405478e-02 -1.15442790e-01\\n-3.31759378e-02 -3.28601807e-01 1.37318999e-01 3.49960197e-03\\n-4.18374315e-02 -1.02986366e-01 2.08148196e-01 1.75102744e-02\\n1.32077962e-01 -3.43547195e-01 4.02048230e-01 -2.77153075e-01\\n-2.53161788e-01 -1.08336560e-01 5.64804710e-02 4.93663885e-02\\n2.95530796e-01 -5.68853796e-01 7.82246515e-03 4.19337541e-01\\n9.68805552e-02 1.53102741e-01 2.93222010e-01 -7.70132840e-02\\n-1.47469819e-01 2.90416569e-01 -2.96383768e-01 6.81734085e-02\\n6.68422580e-01 9.82751325e-02 1.01533450e-01 2.38755316e-01\\n8.42127353e-02 1.78761452e-01 3.39968354e-01 -3.04497126e-02\\n7.95682240e-03 2.60779887e-01 4.26736102e-03 -5.87939262e-01\\n-4.07676175e-02 -6.26401380e-02 -2.39319101e-01 -3.43370616e-01\\n6.55586720e-01 3.45989883e-01 -3.36533666e-01 -2.86600292e-01\\n-1.52257038e-02 -2.70355910e-01 1.88502416e-01 -9.84065980e-02\\n5.43959588e-02 -6.22875541e-02 4.88136858e-01 8.69847741e-03\\n1.75272822e-01 5.31277418e-01 -1.16050735e-01 -2.81378359e-01\\n-7.58035183e-02 1.01043098e-01 7.33466148e-02 4.78757232e-01\\n-1.00773476e-01 1.98942676e-01 1.10007832e-02 2.04501629e-01\\n-9.61248800e-02 9.33214426e-02 -4.52964604e-02 1.92339271e-01\\n-4.37920094e-02 1.68450192e-01 2.63604522e-01 4.08222944e-01\\n1.56363189e-01 5.42348742e-01 4.16393250e-01 1.56677648e-01\\n4.98144299e-01 3.10483813e-01 4.08534884e-01 2.02082470e-01\\n-2.96968874e-02 7.50399008e-02 -1.98692940e-02 -2.65627243e-02\\n1.71882227e-01 2.81599194e-01 2.12341230e-02 8.37382197e-01\\n3.54153395e-01 1.36229858e-01 5.64457119e-01 -5.40149212e-01\\n-3.59733850e-01 -5.24991862e-02 4.49542642e-01 -4.37585235e-01\\n1.50364721e-02 -1.21384375e-02 -2.65996277e-01 1.44403532e-01\\n-4.72278595e-01 -3.67757194e-02 -1.47116780e-01 -6.82415394e-03\\n1.01224817e-01 -5.94040938e-02 -2.14884415e-01 -2.47477498e-02\\n-1.42620608e-01 -1.85730848e-02 -3.47300500e-01 -1.11910738e-01\\n-2.41236418e-01 -7.17705041e-02 -7.46985003e-02 -1.85892373e-01\\n1.59625895e-02 -3.01559508e-01 -1.28483370e-01 3.00171301e-02\\n2.78268278e-01 -1.04735762e-01 -1.11930825e-01 -9.69903916e-02\\n2.85251409e-01 2.41066620e-01 4.90248948e-01 1.39178401e-02\\n1.52966663e-01 -1.50880069e-01 -1.82258964e-01 -4.34091575e-02\\n1.67298794e-01 1.56000182e-02 4.90716733e-02 4.26151901e-01\\n-3.72452915e-01 -7.92823732e-02 5.32288961e-02 3.45622510e-01\\n-4.28862542e-01 1.31345708e-02 -1.69181935e-02 1.71148688e-01\\n9.63133350e-02 1.60424173e-01 -2.71407425e-01 3.37740071e-02\\n-2.22881481e-01 -4.71496880e-01 3.30331683e-01 -2.32179135e-01\\n1.83764547e-02 5.96662983e-02 1.82329640e-01 9.52501968e-02\\n-2.32505053e-01 1.39892837e-02 6.30552694e-02 2.01587290e-01\\n1.84415430e-02 2.35088319e-01 -3.04267108e-01 -2.25467026e-01\\n-2.89972275e-01 2.08660096e-01 -8.36983249e-02 1.29145160e-01\\n-7.37960916e-03 2.35196725e-01 1.43932834e-01 5.78541607e-02\\n2.99762428e-01 -9.82260555e-02 -2.10702911e-01 -2.30772689e-01\\n-3.73177648e-01 -2.90136158e-01 -8.68161172e-02 -1.79977819e-01\\n1.95918977e-01 -3.98411334e-01 -7.55714029e-02 -2.89538922e-03\\n-1.27865911e-01 -3.52548569e-01 2.43788008e-02 -4.19341400e-02]]',\n", + " 'localsearch is the leading marketing and advertising partner for Swiss SME. We make our customers successful in the digital world. Within our department Products & Platforms we are looking for new colleagues: Software Engineer / Kubernetes We are Virtualizers, Software Engineers, Orchestrators, Coders and offer a highly skilled devops and software engineering team responsibility to provide and enhance services and APIs which are used by many teams and applications or external consumers two completely own managed Kubernetes clusters (on GKE/GCP) a close collaboration with software engineering teams to support them building new features and applications You are a tech enthusiast, cloud surfer, automator, networker and you impress us with a good understanding of mixed architecture of public and private clouds professional experience with Kubernetes, infrastructure as a code and cloud services networking, scripting (Bash), log and systems performance analysis skills a good understanding of web application architectures (web servers, relational/non-relational databases, caching tiers, fault-tolerant design) solid communications – even remotely -, team working and interpersonal skills fluent in English, German is a plus Important: We are only able to consider applicants with a valid permit to reside and work in Switzerland or citizens of EU-27. Direct applications are given priority. We will be happy to answer your questions via our WhatsApp chat +41 79 358 35 76. We, Sylvia Ramona Bertele and Colin Griehl, look forward to receiving your online application!',\n", + " '[\"Collaboration\", \"Communications\", \"Infrastructure\", \"Management\"]',\n", + " '[\"Web Applications\", \"Web Servers\", \"Advertisement\", \"Kubernetes\", \"Enhanced Messaging Service\", \"Platform Product Management\", \"Fault Tolerant Ethernet\", \"Consumables\", \"Google Kubernetes Engine (GKE)\", \"Private Cloud\", \"Software Engineering\", \"Cloud Services\", \"Applications Architecture\", \"Whatsapp\", \"Digitization\", \"Bash (Scripting Language)\", \"Receivables\", \"Google Cloud Platform (GCP)\", \"Relational Databases\", \"Customer Success\", \"Scripting\", \"Performance Analysis\", \"Network Automation\", \"DevOps\"]',\n", + " \"['English', 'Igbo', 'Northern Sami']\"],\n", + " ['75',\n", + " 'software engineer c++',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-6.15360327e-02 1.70069948e-01 3.69094670e-01 -4.79845591e-02\\n4.70457852e-01 -2.11933196e-01 -7.08187371e-02 2.78565824e-01\\n2.95023248e-02 -3.25105608e-01 4.88465913e-02 -2.35919148e-01\\n-1.46300763e-01 1.73026562e-01 9.29632112e-02 4.72389370e-01\\n3.19536090e-01 1.15963891e-01 -1.04019299e-01 3.63617152e-01\\n1.43307418e-01 -1.01917334e-01 1.59268215e-01 8.21938634e-01\\n3.83604348e-01 -5.87992370e-02 -6.00261986e-02 -1.12783508e-02\\n-2.19714239e-01 -1.16500683e-01 4.06501740e-01 1.43361226e-01\\n-7.79786855e-02 -4.00314540e-01 1.12267867e-01 9.94002298e-02\\n-3.23229134e-01 -1.82109043e-01 -7.37718642e-02 2.78239369e-01\\n-6.93649173e-01 -3.34074050e-01 -1.09158486e-01 4.11223480e-03\\n-2.48544917e-01 -3.11541736e-01 9.05178413e-02 -1.98799707e-02\\n1.34833902e-01 1.27673984e-01 -5.62962174e-01 2.21756414e-01\\n-2.10308075e-01 -2.62162238e-01 3.25115085e-01 6.20196640e-01\\n-2.27006990e-02 -4.35605645e-01 -5.04936755e-01 -3.91674995e-01\\n1.13927722e-01 -3.29396389e-02 -2.19221115e-02 -4.49590206e-01\\n2.82134950e-01 1.72711641e-01 -1.41567702e-03 3.11003178e-01\\n-8.41401517e-01 -1.87418044e-01 -2.62502939e-01 -4.23106924e-02\\n-3.74724805e-01 -6.10184185e-02 -1.53444380e-01 -1.05216317e-01\\n-3.86757702e-02 4.45064425e-01 4.06113677e-02 2.74664257e-02\\n-1.18220136e-01 3.87540281e-01 -2.12884188e-01 4.82440561e-01\\n2.04456359e-01 2.64162630e-01 9.84276012e-02 3.67818415e-01\\n-2.89154917e-01 3.47585022e-01 8.66943151e-02 -2.95485616e-01\\n1.91895068e-01 1.64032191e-01 5.06912708e-01 -4.85357083e-02\\n1.75279051e-01 7.67979398e-02 -4.09418195e-01 4.15128171e-01\\n2.56524861e-01 -2.89466470e-01 1.52836516e-01 -8.29043686e-02\\n2.56755557e-02 7.06810690e-03 5.92649616e-02 9.95903388e-02\\n-3.35495234e-01 3.97334129e-01 1.79926112e-01 -1.67149797e-01\\n-9.08892229e-02 -5.27441084e-01 -9.68079120e-02 7.15265423e-02\\n3.22680026e-02 6.92483634e-02 2.05185950e-01 1.00141227e-01\\n2.00903103e-01 5.54731786e-02 1.24387629e-01 9.73621309e-01\\n-9.67924595e-02 1.05454505e-03 -2.20986232e-01 3.07325393e-01\\n9.67770815e-02 -2.29671940e-01 2.70837277e-01 2.67831624e-01\\n1.17196687e-01 -2.18854681e-01 -2.33814448e-01 3.32441896e-01\\n6.03992306e-02 -1.98460042e-01 -2.73256570e-01 3.27207297e-01\\n-1.73127912e-02 -4.35801446e-01 6.63786471e-01 8.04563169e-04\\n1.08474314e-01 -6.42981231e-02 -4.31750156e-02 -1.32302165e-01\\n-4.51721065e-02 9.94271636e-02 1.71530137e-05 1.28383666e-01\\n-3.33145291e-01 -2.77937800e-01 -1.77992642e-01 3.96329463e-02\\n-3.68313164e-01 2.45561734e-01 -6.94993064e-02 -8.68954509e-02\\n1.61983281e-01 -5.77542335e-02 -2.28144571e-01 1.90994188e-01\\n-9.29187015e-02 1.43895280e-02 1.28230169e-01 3.89805436e-01\\n-2.57628709e-01 1.84226617e-01 -9.49219689e-02 -1.92838654e-01\\n5.26776254e-01 1.61258817e-01 5.37235290e-02 -1.29591525e-02\\n3.48932832e-01 -7.67435208e-02 2.30441481e-01 1.94344297e-01\\n-7.39030600e-01 2.87194252e-01 -1.10939883e-01 -2.32322782e-01\\n5.48879281e-02 -9.29856747e-02 3.56184244e-01 -2.82974631e-01\\n6.24019280e-03 -1.33209199e-01 -4.22763020e-01 -2.21646339e-01\\n-2.18117923e-01 -1.09508045e-01 4.99452442e-01 -4.08331901e-01\\n-1.73319593e-01 2.35321969e-01 -5.33958673e-01 -1.73191801e-01\\n2.77047064e-02 1.54111966e-01 2.19252974e-01 5.59129268e-02\\n-2.15247378e-01 -6.58071518e-01 2.61800531e-02 -4.71388608e-01\\n-2.88910538e-01 1.06464036e-01 -2.71896720e-01 2.80620754e-01\\n1.57240890e-02 -1.16062984e-02 -1.38100922e-01 1.26544744e-01\\n-2.41793022e-01 -1.44608505e-02 4.18391004e-02 3.19084874e-03\\n1.49102375e-01 8.21789205e-02 -3.18843246e-01 4.15687382e-01\\n-1.20143242e-01 7.38887548e-01 3.69345732e-02 -8.46216321e-01\\n5.17916620e-01 4.16019678e-01 -2.47838199e-02 -2.54223287e-01\\n5.48627019e-01 -3.83861870e-01 -1.78377882e-01 8.34225565e-02\\n-3.85464251e-01 -3.09331357e-01 2.20392063e-01 -2.58056343e-01\\n-2.86358505e-01 5.10280252e-01 9.39785838e-02 1.65612295e-01\\n3.19207907e-01 -2.90657401e-01 -2.78760176e-02 3.75616029e-02\\n-6.73609450e-02 -3.21334898e-01 -5.35726249e-01 -1.92885008e-02\\n-8.12788680e-02 -5.42707980e-01 -1.92736667e-02 -2.92269826e-01\\n-2.14521497e-01 -3.33490461e-01 -1.58306435e-01 2.17022285e-01\\n3.65034133e-01 1.07456565e-01 5.07156439e-02 5.49834557e-02\\n-1.00595355e-01 -5.40471494e-01 -4.16955128e-02 9.11187828e-02\\n3.76946747e-01 2.35252365e-01 9.54194516e-02 2.92639006e-02\\n-6.87321424e-02 6.42781734e-01 -2.67857581e-01 -2.19242021e-01\\n6.90786615e-02 2.02000931e-01 7.91040063e-03 -1.28834143e-01\\n1.65220633e-01 4.50034738e-01 -2.96262890e-01 1.26958698e-01\\n-1.34764001e-01 -5.05113006e-02 2.92828709e-01 1.26045197e-01\\n-1.94791853e-01 -1.95052609e-01 -1.40913844e-01 1.03951588e-01\\n-6.05008483e-01 -1.83572680e-01 4.42369729e-01 1.09146349e-01\\n2.54844993e-01 4.24901210e-02 2.81471282e-01 -1.26183674e-01\\n-2.41876170e-01 -2.70716846e-01 2.89479256e-01 1.83888420e-01\\n8.02820921e-02 1.79018348e-01 5.91687895e-02 -6.09297395e-01\\n-3.08833504e+00 -1.05858885e-01 1.48121655e-01 -2.28792489e-01\\n1.83724329e-01 1.54572483e-02 -1.58700813e-03 -7.97645003e-02\\n-3.01324129e-01 -7.38255903e-02 -1.98433593e-01 -1.89353421e-01\\n7.25826174e-02 1.54209048e-01 1.30315199e-01 7.80134127e-02\\n1.58667877e-01 -2.15334713e-01 -5.90466484e-02 3.51647347e-01\\n-7.55011812e-02 -5.56001663e-01 2.29559690e-01 2.89353542e-03\\n2.90803820e-01 1.15721308e-01 -4.58708256e-01 -1.40416771e-01\\n-1.97826967e-01 -1.74721807e-01 1.22433864e-01 -3.34654421e-01\\n-2.62786727e-02 2.80139416e-01 2.13215187e-01 -8.45521223e-03\\n9.90886539e-02 -4.09547955e-01 -1.57552987e-01 -3.98427546e-01\\n8.93677548e-02 -5.92201233e-01 1.49425101e-02 -2.24194452e-01\\n6.44605637e-01 -3.58653814e-01 5.59022129e-02 1.42211378e-01\\n1.29999787e-01 1.80157095e-01 6.98166490e-02 -9.50836670e-03\\n-1.79287121e-01 -2.34690279e-01 -1.07470900e-01 -1.67225555e-01\\n4.14665759e-01 5.71505427e-01 -6.46524057e-02 -1.03732109e-01\\n1.03607267e-01 -3.12021434e-01 -5.84030449e-01 -2.59165794e-01\\n-1.46081179e-01 -2.82951742e-01 -6.61847055e-01 -5.12746096e-01\\n-1.02164105e-01 -6.58482462e-02 -1.72628209e-01 6.29353225e-01\\n-3.62532377e-01 -2.96469182e-01 6.82153851e-02 -4.01356131e-01\\n2.07945466e-01 -3.01011622e-01 8.25977698e-02 -1.82450116e-01\\n-2.43590087e-01 -5.25997043e-01 5.61017692e-02 -1.22373914e-02\\n-8.28509033e-02 -3.87998402e-01 -3.69610526e-02 -2.26924196e-01\\n-2.69980758e-01 -4.20370936e-01 4.44941819e-01 1.89435720e-01\\n3.84555459e-01 7.72801861e-02 2.40476906e-01 -7.58712664e-02\\n2.93458164e-01 -2.79153474e-02 -8.12219381e-02 -3.12662840e-01\\n9.56308767e-02 4.49968651e-02 4.18010473e-01 -2.31686622e-01\\n-1.23370908e-01 6.86325273e-03 -3.47004056e-01 -2.70640012e-02\\n2.42457211e-01 6.42290339e-03 -2.80408263e-02 -1.83198184e-01\\n4.20002937e-01 -2.60792702e-01 -5.39209023e-02 1.71582073e-01\\n1.03063829e-01 5.64295292e-01 7.88486097e-03 -4.70834166e-01\\n-1.76993132e-01 3.81603271e-01 -9.43878070e-02 -8.10479224e-02\\n-2.05782261e-02 8.10663924e-02 -1.77646801e-01 2.37053588e-01\\n2.87216473e-02 -1.13345399e-01 -2.40583047e-01 -1.42416790e-01\\n-1.97484285e-01 4.30378973e-01 1.60710394e-01 6.20446391e-02\\n-9.95636359e-02 -3.69042218e-01 -1.04530133e-01 3.02616805e-01\\n2.10095316e-01 2.97285259e-01 2.55060077e-01 -2.53092885e-01\\n-3.25052515e-02 4.38893020e-01 -1.64433017e-01 1.94279432e-01\\n-2.45469734e-01 1.46761820e-01 -5.46583712e-01 -1.81154430e-01\\n-3.56602460e-01 -3.56532365e-01 2.15946585e-01 3.15783054e-01\\n2.37833053e-01 -5.06811887e-02 2.43615285e-01 -4.46075439e-01\\n3.10165942e-01 2.31263995e-01 2.07819521e-01 9.53669101e-02\\n-4.35707122e-02 6.34144068e-01 6.52131140e-02 -1.62557006e-01\\n-3.82012092e-02 -9.35275257e-02 -2.57405698e-01 -2.77863681e-01\\n7.12738335e-02 -4.90726084e-01 -1.72003627e-01 4.14939225e-01\\n1.19929798e-02 -3.07115704e-01 -2.88133264e-01 2.94350863e-01\\n4.53745499e-02 -2.82645762e-01 -2.94721484e-01 -5.60613954e-03\\n3.82236689e-01 -4.77441307e-03 2.89465189e-01 -5.32921195e-01\\n-7.05306306e-02 3.91185209e-02 -1.81442440e-01 6.03978574e-01\\n3.97017039e-02 -1.00307420e-01 -2.24660754e-01 -2.48657122e-01\\n3.46579373e-01 2.32381560e-03 -6.21865317e-02 -1.62810743e-01\\n1.29670411e-01 -1.65993020e-01 -2.93401748e-01 1.06150880e-01\\n2.69722436e-02 -1.20677598e-01 -5.41348942e-02 1.69817641e-01\\n1.54999360e-01 1.12913847e-01 -5.28884590e-01 -2.29777098e-01\\n-1.02099009e-01 1.38140861e-02 1.18286014e-01 -3.90523583e-01\\n-6.65493011e-02 -1.18845843e-01 -5.28726816e-01 2.59356290e-01\\n-1.79995090e-01 -6.33876771e-02 1.45757407e-01 4.41674665e-02\\n-3.90196830e-01 -1.64533883e-01 4.47562188e-02 2.68592030e-01\\n-3.36038888e-01 -3.03508312e-01 6.61023259e-02 -9.65365887e-01\\n4.73210663e-02 1.49925891e-02 -1.90606847e-01 1.99255109e-01\\n-3.77111137e-02 -5.96411288e-01 7.57368356e-02 -3.77188802e-01\\n-8.60775039e-02 -2.25442369e-03 -3.39427918e-01 -2.95279413e-01\\n9.80416313e-02 4.45397496e-02 -2.35997617e-01 3.71618241e-01\\n-3.83907884e-01 3.09884787e-01 -1.32649317e-01 2.36986764e-02\\n1.58124976e-02 -3.93595904e-01 1.76851645e-01 -4.58706349e-01\\n-4.17498320e-01 -1.73629120e-01 -3.23113531e-01 -2.72197038e-01\\n-2.72364486e-02 -1.95713922e-01 -1.68837935e-01 7.13770688e-02\\n2.79908746e-01 -9.94471982e-02 -8.80589262e-02 -2.27695882e-01\\n1.68260515e-01 -4.83649850e-01 1.19827949e-02 -4.67570685e-02\\n-8.20605643e-03 -1.69822350e-02 -2.08840072e-02 2.41146222e-01\\n1.97596639e-01 -3.65467548e-01 3.72829825e-01 -5.38573682e-01\\n-3.30811411e-01 -1.32995948e-01 1.48362368e-01 -3.14110778e-02\\n3.71939570e-01 -3.56714100e-01 -5.29241301e-02 2.47981116e-01\\n2.43250102e-01 3.42292972e-02 2.91329414e-01 -1.13652714e-01\\n7.07688332e-02 1.68619052e-01 -2.65314132e-01 1.41771108e-01\\n7.72444069e-01 1.22193418e-01 2.15246305e-01 1.34034827e-01\\n1.28308043e-01 1.52254969e-01 5.55234313e-01 6.95531145e-02\\n-1.14367470e-01 2.72008508e-01 2.12265760e-01 -3.27417433e-01\\n-1.41368076e-01 8.19723308e-03 -2.52981126e-01 -3.25297564e-01\\n6.97446167e-01 3.99260610e-01 -4.64953572e-01 -1.37237877e-01\\n-3.37966206e-03 -1.63995266e-01 1.53066546e-01 -1.16496146e-01\\n-5.37558272e-02 8.47891904e-03 4.39934969e-01 -1.53064996e-01\\n2.09769323e-01 4.32819247e-01 -1.90943584e-01 -4.02021229e-01\\n-8.35089013e-02 2.52721548e-01 2.67330874e-02 3.89168471e-01\\n-2.06106126e-01 3.97763252e-01 -2.31360290e-02 1.82387516e-01\\n-1.34223104e-01 1.28499418e-01 1.48220837e-01 1.01867869e-01\\n1.40002280e-01 2.21560262e-02 3.17652166e-01 4.30151075e-01\\n4.15707290e-01 4.00314301e-01 3.39364469e-01 -4.15941991e-04\\n4.22308087e-01 4.82627124e-01 3.39602828e-01 1.72086298e-01\\n-1.02666616e-01 1.35161459e-01 1.16447151e-01 -9.29013267e-03\\n4.46575284e-01 3.10713321e-01 1.69557795e-01 8.66306782e-01\\n2.88405806e-01 4.02954042e-01 7.08498836e-01 -5.74246526e-01\\n-3.02493989e-01 1.04537144e-01 4.32984531e-01 -4.73917127e-01\\n-3.20942923e-02 2.91799400e-02 -7.84139708e-02 2.18662664e-01\\n-3.52175862e-01 -2.40139216e-01 -6.56247139e-02 2.98952550e-01\\n3.18449363e-02 -1.09455273e-01 -2.52477109e-01 -4.17815186e-02\\n-2.21452832e-01 -1.38408095e-01 -4.76561010e-01 -4.83902432e-02\\n-2.63522714e-01 -1.87849909e-01 -5.20092212e-02 -7.35315457e-02\\n-1.07168294e-01 -4.00403649e-01 -2.41890792e-02 -3.53890248e-02\\n3.72063041e-01 -2.52057493e-01 -1.26549691e-01 -1.32459551e-01\\n3.33964020e-01 1.72105044e-01 6.11153305e-01 1.45205811e-01\\n7.46073276e-02 -2.52712697e-01 -1.76032111e-01 1.78253978e-01\\n5.91773912e-02 2.05314562e-01 1.16952769e-02 2.88733304e-01\\n-2.32696250e-01 -8.67840126e-02 1.55609652e-01 2.49566868e-01\\n-4.32942241e-01 -3.41088213e-02 -2.21731827e-01 5.89229763e-02\\n7.92885646e-02 1.10918105e-01 -2.37465367e-01 8.01573619e-02\\n-1.48676142e-01 -4.22992140e-01 2.37759501e-01 -1.23083465e-01\\n-1.79243162e-01 1.24646559e-01 3.69961411e-01 1.29486054e-01\\n-1.83342010e-01 -5.48164956e-02 5.47658280e-02 2.03589797e-01\\n4.67065908e-02 3.29977661e-01 -1.21937901e-01 -4.15521920e-01\\n-2.71547139e-01 2.37298384e-01 -2.21335277e-01 1.05093651e-01\\n2.18326636e-02 5.59969187e-01 1.23413667e-01 -2.92986855e-02\\n5.44673085e-01 -1.60206351e-02 -2.12896615e-01 -3.33475024e-01\\n-1.86459005e-01 -3.62796038e-01 -1.18960917e-01 7.16214404e-02\\n8.03726092e-02 -2.91677982e-01 -6.38136789e-02 -2.12681860e-01\\n-2.19799299e-02 -3.06136400e-01 -2.12664269e-02 -1.28117993e-01]]',\n", + " '(Internship 4-12 months) MaxWell Biosystems is an electronics-focused biotech company based in Basel, Switzerland, developing and selling advanced cell imaging platforms helping our customers in the pharmaceutical industry and in academia to make their drug discovery and research more efficient. We are an ETH Spin-off company, seeking highly motivated and talented individuals who want to contribute in shaping the future of drug discovery. Our core technology consists of a bio-sensor made out of an application specific integrated circuit (ASIC) chip. Together with an FPGA-based data acquisition platform and with our software suite MaxLab Live, this technology is used for drug discovery and to investigate brain cells at unprecedented detail and resolution. We are now enhancing our software MaxLab Live to perform automated experiment routines by means of a Python API (boost.python). Additionally, we are implementing various data analysis and visualization routines to enhance the user experience of our customers and to help them improve their research and drug discovery applications. For both of these activitieswe are seeking a highly motivated software engineer to help us either on the backend to improve the Python API and/or on the frontend with the user interface for data analysis and visualization. Your Profile Studies in computer science, electrical engineering, biology or related field Experience with C++ (C++11/14) and Linux Enjoy pushing technology to its limits You Get Working with cutting-edge technology Working on a modern C++11 code base Freedom to come up with and work on your own ideas Be part of a fast-paced technology startup at the intersection between biology, engineering and data science Are you motivated, innovative and committed to delivering first-rate performance? Have you ever wanted to work with cutting-edge technology involving both engineering and biology? Do you enjoy working in an international, multidisciplinary, and interactive team? Then we might have a position for you. Join MaxWellBiosystems in innovating the future of electrophysiology for drug discovery and basic research. Jan Müller looks forward to receiving your application documents (cover letter, short CV) by email at jan.mueller@mxwbio.com.',\n", + " '[\"Research\", \"Positivity\", \"Innovation\", \"Investigation\"]',\n", + " '[\"Automation\", \"Live Cell Imaging\", \"Basic Research\", \"Interactivity\", \"Field-Programmable Gate Array (FPGA)\", \"Computer Science\", \"Boost (C++ Libraries)\", \"Documentation Based Coding\", \"Industrialization\", \"Visualization\", \"Software Suite\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Push Technology\", \"Component Object Model (COM)\", \"Linux\", \"Agile Edge Technologies\", \"Limiter\", \"Application Specific Integrated Circuits\", \"Software Engineering\", \"Data Science\", \"Electronics\", \"Biology\", \"Electrical Engineering\", \"Electrophysiology\", \"Data Acquisition\", \"Biological Engineering\", \"Receivables\", \"Pharmaceuticals\", \"Drug Discovery\", \"Additives\", \"User Experience\", \"Custom Backend\", \"ASIC Programming Language\", \"Application Programming Interface (API)\", \"Integrated Circuits\", \"User Interface\", \"Data Analysis\", \"Advanced Imaging Technology\"]',\n", + " \"['English', 'Finnish', 'Venda']\"],\n", + " ['75',\n", + " 'data engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.87018558e-01 2.62790650e-01 4.84370828e-01 5.65015674e-02\\n4.95228618e-01 -7.14628771e-02 -4.45722900e-02 2.29910731e-01\\n3.16278683e-03 -4.67078447e-01 2.34412067e-02 -1.45032898e-01\\n-7.85728022e-02 2.29453482e-02 1.49031103e-01 4.50796783e-01\\n4.03130531e-01 5.81657663e-02 -2.45680995e-02 3.79181862e-01\\n9.08872485e-02 -7.18505532e-02 -1.73262674e-02 7.14751184e-01\\n5.00305176e-01 -8.50291401e-02 -1.74031422e-01 8.46053958e-02\\n-2.11665243e-01 -2.65711218e-01 4.89607513e-01 5.26698455e-02\\n-1.78832307e-01 -3.12509269e-01 1.42940804e-01 1.09932616e-01\\n-3.53809625e-01 1.09138444e-01 -1.12645671e-01 1.79193407e-01\\n-4.79448378e-01 -1.52716696e-01 -5.24639077e-02 -1.78945847e-02\\n-4.63240176e-01 -3.82047862e-01 -3.17757018e-02 -1.14930704e-01\\n1.80845514e-01 1.00812934e-01 -4.92571265e-01 2.83448339e-01\\n-2.94942647e-01 -2.42738008e-01 2.11405560e-01 6.73529446e-01\\n7.39359334e-02 -4.43832368e-01 -5.00347495e-01 -4.35070395e-01\\n1.50842711e-01 -1.59714922e-01 8.56454149e-02 -3.02620977e-01\\n3.20919126e-01 -8.75428170e-02 5.05382009e-02 2.71595359e-01\\n-6.95656538e-01 5.79138584e-02 -2.89474815e-01 8.40731412e-02\\n-4.41827804e-01 8.10688734e-02 -4.96987015e-01 -5.41949384e-02\\n-8.14164430e-02 4.47041243e-01 4.32299152e-02 1.13513574e-01\\n-1.51918620e-01 2.91128427e-01 -3.97967994e-01 3.60817164e-01\\n2.52997488e-01 1.13967836e-01 3.32117021e-01 3.32032621e-01\\n-4.80027497e-01 5.41969657e-01 3.18811417e-01 -3.79932433e-01\\n2.04327270e-01 1.08398467e-01 3.97260666e-01 1.98462680e-01\\n2.10382745e-01 1.28192201e-01 -2.43399873e-01 2.48623163e-01\\n2.53265142e-01 -1.97024718e-01 -4.22308184e-02 -1.92427576e-01\\n1.20634563e-01 -3.96730080e-02 1.03949241e-01 1.59911886e-01\\n-2.54418939e-01 3.32704186e-01 1.28121421e-01 -1.08612649e-01\\n-1.34354249e-01 -4.21632916e-01 -4.88093160e-02 1.05022844e-02\\n3.50227915e-02 2.35844791e-01 1.83234736e-01 2.13628918e-01\\n1.60608873e-01 1.30243212e-01 1.81658626e-01 8.20287168e-01\\n-7.53031671e-02 4.55096923e-02 -1.82220578e-01 2.43975878e-01\\n1.76228583e-01 -3.51454288e-01 2.32578918e-01 2.33466357e-01\\n-1.06941111e-01 -2.63206065e-01 -3.42116535e-01 3.98094147e-01\\n-4.25924882e-02 -1.26708031e-01 -2.77030081e-01 2.47825772e-01\\n-6.57393783e-02 -4.78697568e-01 6.36573911e-01 7.31100664e-02\\n1.94283128e-01 3.34346369e-02 5.49321063e-03 -8.48056078e-02\\n-1.19356498e-01 3.13592046e-01 8.44040662e-02 9.78462249e-02\\n-3.21126372e-01 -2.71897942e-01 -2.50280768e-01 1.04133047e-01\\n-3.42602462e-01 1.75242484e-01 -1.68729961e-01 -3.87697406e-02\\n1.64649621e-01 2.11816840e-02 -3.19322646e-01 2.01137438e-01\\n-1.43027961e-01 -2.11283341e-01 2.30815895e-02 4.09038991e-01\\n-1.20129175e-01 2.12754697e-01 4.75316755e-02 -6.03567399e-02\\n6.55906975e-01 2.72461146e-01 3.08596075e-01 -6.33337721e-02\\n1.94544151e-01 -4.97832485e-02 1.16500773e-01 1.30674303e-01\\n-6.53613448e-01 3.15068811e-01 -1.11108005e-01 -2.17268571e-01\\n8.15218017e-02 -4.51544486e-02 3.02738637e-01 -2.61901617e-01\\n5.55997901e-02 -1.59935296e-01 -3.47842276e-01 -2.64477134e-01\\n-2.10771158e-01 -6.71768785e-02 4.35598433e-01 -5.88019192e-01\\n8.60315338e-02 1.56214520e-01 -4.85228300e-01 -1.90070316e-01\\n1.47227883e-01 5.74153215e-02 1.52253255e-01 1.82843611e-01\\n-1.68452680e-01 -5.92767537e-01 2.32608154e-01 -4.30430055e-01\\n-3.81963044e-01 8.52880031e-02 -3.27997595e-01 1.94562733e-01\\n3.14283222e-02 -1.09618381e-01 -1.61703393e-01 5.49438782e-02\\n-2.42870778e-01 -3.65384892e-02 7.03099668e-02 1.41151816e-01\\n2.84305274e-01 5.14078550e-02 -3.18377256e-01 5.59235215e-01\\n-1.33370072e-01 4.82009470e-01 2.05154508e-01 -9.44568932e-01\\n4.92913783e-01 1.20449468e-01 -1.64191008e-01 -3.73962522e-01\\n4.76290941e-01 -3.40915561e-01 -1.65231675e-01 7.06228837e-02\\n-2.47006744e-01 -2.43057907e-01 2.71649122e-01 -2.10424393e-01\\n-2.70646662e-01 5.04853129e-01 1.07559793e-01 1.56167999e-01\\n2.51115024e-01 -1.75179183e-01 -1.84980154e-01 1.32504441e-02\\n-1.70787171e-01 -1.86189771e-01 -5.18563390e-01 9.53221843e-02\\n-8.99697766e-02 -5.34628570e-01 -7.29088485e-02 -4.88227755e-01\\n-1.50759876e-01 -3.81311446e-01 -1.35275409e-01 1.66550368e-01\\n1.85105771e-01 1.46135911e-01 -3.55250686e-02 -2.53697094e-02\\n-4.96067107e-02 -6.71058238e-01 -1.27098307e-01 8.58006179e-02\\n4.11959261e-01 1.97341293e-01 1.55876011e-01 -1.13760024e-01\\n2.85732865e-01 5.69348812e-01 -2.70705938e-01 -4.02996153e-01\\n1.74361736e-01 7.49193579e-02 -1.12530040e-02 -2.12153301e-01\\n1.18688390e-01 3.55177581e-01 -2.70727664e-01 4.30949405e-02\\n1.45200063e-02 -7.90123418e-02 3.88696879e-01 8.32263529e-02\\n-2.17001349e-01 -2.13093281e-01 -1.83314964e-01 1.19714729e-01\\n-5.95067918e-01 -2.66887397e-01 6.12141609e-01 2.19292223e-01\\n1.11547582e-01 1.50773183e-01 1.64598539e-01 7.29226274e-03\\n-2.41420925e-01 -3.99667025e-02 3.30092430e-01 1.02053784e-01\\n1.04864277e-01 6.34805709e-02 -1.10372894e-01 -5.27250111e-01\\n-3.49918509e+00 -1.86699510e-01 1.45538315e-01 -3.11240256e-01\\n2.77192622e-01 -1.15822218e-01 1.95405945e-01 -1.14276454e-01\\n-3.59651387e-01 -9.88936871e-02 -2.41814882e-01 -1.24922425e-01\\n1.45729825e-01 1.34170428e-01 1.92309275e-01 1.99971795e-01\\n2.13537246e-01 -2.03018561e-01 -3.49065326e-02 3.74420822e-01\\n-7.31047466e-02 -6.40844464e-01 9.65114981e-02 7.78760612e-02\\n1.70935810e-01 5.47246635e-02 -4.00103420e-01 -1.52063623e-01\\n-2.27440238e-01 -2.38294199e-01 4.46301959e-02 -2.05593497e-01\\n-1.54299304e-01 1.17693290e-01 2.15146452e-01 -1.37234449e-01\\n6.55892789e-02 -2.76214153e-01 -7.39595294e-02 -3.95650297e-01\\n6.40425831e-02 -5.78782260e-01 3.30595747e-02 -5.38194776e-02\\n6.91279948e-01 -1.67431369e-01 2.05288678e-01 -1.44046703e-02\\n7.88142607e-02 1.33377105e-01 8.23362693e-02 -3.79568106e-03\\n-3.10304910e-01 -4.07715589e-01 -1.68326110e-01 -1.68722302e-01\\n6.64076328e-01 4.18242097e-01 -2.25637659e-01 -1.00537047e-01\\n4.65914756e-02 -3.33988160e-01 -4.71619815e-01 -2.22566843e-01\\n-2.17880964e-01 -1.10055983e-01 -6.15973234e-01 -4.20766950e-01\\n-1.19438954e-01 -1.76342279e-01 -1.40307724e-01 5.99196434e-01\\n-2.58876681e-01 -3.77593547e-01 -4.53560203e-02 -3.31817418e-01\\n3.28757346e-01 -1.58357576e-01 1.07058279e-01 -2.21695647e-01\\n-4.24703032e-01 -4.56008255e-01 5.64830378e-02 -2.88960785e-02\\n-1.61012724e-01 -1.69487908e-01 4.29077186e-02 -1.84264019e-01\\n-4.54087049e-01 -5.08217096e-01 3.76435310e-01 -1.47216797e-01\\n3.04129750e-01 1.55662537e-01 3.79576474e-01 6.28399923e-02\\n2.90161133e-01 1.13861123e-02 -1.65219847e-02 -3.34918827e-01\\n1.47305652e-01 8.05802941e-02 6.50428236e-01 -2.14297011e-01\\n3.26011069e-02 3.49388644e-02 -1.85436830e-01 -2.03209147e-02\\n4.14038330e-01 -2.02263325e-01 2.18434170e-01 -1.32506639e-01\\n3.17521781e-01 -2.96642721e-01 -1.82554543e-01 1.16321154e-01\\n5.04915453e-02 5.83705902e-01 -3.07918712e-02 -4.06120807e-01\\n-1.52551129e-01 3.32152754e-01 -2.35682577e-01 1.69914253e-02\\n-3.77646089e-01 6.80886954e-02 -2.34908789e-01 3.62705141e-01\\n4.82622860e-03 -9.05239955e-02 -2.27338985e-01 -2.80054301e-01\\n-2.52985153e-02 3.82852465e-01 2.27443367e-01 -2.63440851e-02\\n-4.80799899e-02 -2.26811141e-01 -1.12443395e-01 1.44623801e-01\\n2.79392093e-01 4.66914892e-01 1.39012188e-01 -2.66904116e-01\\n-7.53899291e-02 3.14006239e-01 -3.39513659e-01 2.80908167e-01\\n-3.43595386e-01 1.20423682e-01 -5.34195125e-01 -2.07130432e-01\\n-2.69177020e-01 -4.97220099e-01 2.83666730e-01 3.89316201e-01\\n3.97446416e-02 -9.96811464e-02 9.20929387e-02 -3.62926841e-01\\n2.39512980e-01 1.91693813e-01 1.42325029e-01 1.18561551e-01\\n2.09425520e-02 6.37884676e-01 -6.12768941e-02 -2.10173815e-01\\n-1.37676999e-01 1.18817672e-01 -2.87767947e-01 -2.43686229e-01\\n-8.07721093e-02 -5.63978493e-01 -8.51650462e-02 4.09803689e-01\\n1.82244301e-01 -1.21554203e-01 -1.96113542e-01 2.61902571e-01\\n-6.56381026e-02 -2.15349644e-01 -2.48035267e-01 7.11072758e-02\\n2.00243354e-01 7.62431920e-02 3.30393553e-01 -4.35705066e-01\\n-4.42033587e-03 1.28926292e-01 -9.61426422e-02 4.80944663e-01\\n3.28532560e-03 1.12552725e-01 -7.46102333e-02 -1.27134547e-01\\n4.81844962e-01 4.66144420e-02 -1.48863763e-01 2.90249232e-02\\n1.26544431e-01 -2.14879408e-01 -3.54991406e-01 3.89944529e-04\\n1.66686699e-02 -1.93925232e-01 5.75323366e-02 2.07905665e-01\\n6.23656660e-02 5.59509173e-02 -5.85761011e-01 -2.27803841e-01\\n-3.31945747e-01 -6.41709268e-02 1.95956379e-01 -5.30103743e-01\\n-1.50092989e-01 -1.43133318e-02 -5.16337693e-01 1.87122330e-01\\n-4.78649512e-02 2.23373827e-02 1.54751137e-01 9.37879011e-02\\n-9.88371968e-02 -2.28561625e-01 2.28904441e-01 2.26014629e-01\\n-2.76064515e-01 -1.61339119e-01 -3.49665210e-02 -9.93677080e-01\\n2.60059118e-01 1.89886972e-01 -2.93134749e-01 1.64345115e-01\\n2.10690815e-02 -6.34835601e-01 1.67405024e-01 -3.82757187e-01\\n-1.50545701e-01 -7.51426304e-03 -2.22365737e-01 -4.31700408e-01\\n5.24930656e-02 6.66765347e-02 -1.83398277e-01 4.24416363e-01\\n-3.25276226e-01 3.10214162e-01 8.85223597e-02 5.60957827e-02\\n3.15741263e-02 -2.05776736e-01 8.91626105e-02 -3.22096944e-01\\n-3.87834221e-01 -3.58436614e-01 -3.57961208e-01 -3.93983334e-01\\n7.62001262e-04 -4.11852807e-01 -1.95396274e-01 2.59278882e-02\\n4.25747901e-01 1.24760047e-01 -1.40744999e-01 -3.58818769e-01\\n7.54674897e-02 -5.38769007e-01 1.28063649e-01 -3.07711989e-01\\n-9.86071303e-02 -1.90828472e-01 2.91152388e-01 1.00441083e-01\\n1.54188946e-01 -2.35401541e-01 4.46903795e-01 -3.43252838e-01\\n-2.25485310e-01 -1.14401534e-01 2.49985293e-01 3.09888665e-02\\n2.65857011e-01 -4.26427931e-01 -7.72912279e-02 3.10622215e-01\\n1.22864217e-01 8.62107947e-02 1.94351137e-01 -2.24707663e-01\\n-1.19246818e-01 2.28468359e-01 -3.54896009e-01 2.04259858e-01\\n7.75683045e-01 1.07028909e-01 1.80673555e-01 1.76774830e-01\\n8.93589631e-02 2.23281771e-01 5.36424398e-01 1.14867855e-02\\n-9.73608792e-02 2.75751054e-01 1.17799425e-02 -3.55318725e-01\\n-1.25693968e-02 -1.30831748e-01 -9.80305523e-02 -2.96048164e-01\\n6.27217710e-01 4.29112524e-01 -3.30575347e-01 -3.83231401e-01\\n-1.56274542e-01 -1.37291998e-01 2.44909540e-01 1.08147614e-01\\n1.35780545e-03 -1.01999208e-01 4.80567306e-01 -8.95733312e-02\\n1.75356314e-01 4.97408569e-01 -1.98922396e-01 -2.56918669e-01\\n6.26240447e-02 2.91105807e-01 -5.63238189e-02 5.53678334e-01\\n-2.83362687e-01 3.21722835e-01 7.95120001e-02 9.96009037e-02\\n-1.65802211e-01 -1.46606080e-02 3.42603952e-01 1.23080969e-01\\n2.20478073e-01 3.29124033e-02 4.64192420e-01 4.73648608e-01\\n1.86136812e-01 4.73429650e-01 3.09388459e-01 -8.06790963e-03\\n2.08425477e-01 6.33738756e-01 3.75471741e-01 1.41821966e-01\\n4.12914790e-02 5.60642444e-02 1.05031826e-01 2.14857571e-02\\n2.75964350e-01 3.60108614e-01 1.14466950e-01 8.44450474e-01\\n2.82715768e-01 3.25512826e-01 7.04381227e-01 -7.04646289e-01\\n-4.04966742e-01 1.47195105e-02 6.07197881e-01 -4.31804925e-01\\n-2.95219887e-02 2.10179463e-01 -2.67541677e-01 2.44841784e-01\\n-5.03162682e-01 -3.10021043e-01 -6.04984611e-02 3.19326238e-04\\n5.48759662e-02 -2.39338785e-01 -1.32619321e-01 1.52881145e-01\\n-4.40830290e-02 -4.68892753e-02 -3.81141365e-01 -1.08870707e-01\\n-2.74463117e-01 -8.59094188e-02 3.15647162e-02 -7.73016363e-02\\n-1.95661157e-01 -4.16083753e-01 -1.38009265e-01 -1.06742112e-02\\n2.15738207e-01 -1.44944757e-01 -1.77337587e-01 -6.62202165e-02\\n2.35435575e-01 2.04775795e-01 6.88123405e-01 1.09979182e-01\\n7.64895082e-02 -1.30030096e-01 -2.08528832e-01 1.65005669e-01\\n1.00251123e-01 3.05445921e-02 -8.43950454e-03 3.02694559e-01\\n-2.89447814e-01 -1.84940591e-01 3.13915648e-02 2.55964309e-01\\n-5.13837814e-01 5.80943972e-02 -7.85986409e-02 2.22446382e-01\\n1.26922093e-02 3.32587421e-01 -1.25920326e-01 1.30321994e-01\\n-8.05323645e-02 -4.30001497e-01 3.66479933e-01 -1.47306427e-01\\n-2.30360523e-01 5.42453937e-02 2.01186970e-01 2.71063387e-01\\n-2.73645073e-01 -8.94198045e-02 -1.53999373e-01 2.05149844e-01\\n2.24770177e-02 2.18519092e-01 -1.32797137e-01 -2.55409986e-01\\n-3.17207783e-01 1.44487962e-01 -7.70623088e-02 2.32485548e-01\\n5.19480333e-02 3.86689544e-01 1.78385541e-01 6.63684607e-02\\n3.98666203e-01 -3.17284688e-02 -2.98818529e-01 -2.30783150e-01\\n-2.05363408e-01 -7.44481683e-02 -7.32258782e-02 1.32661304e-02\\n1.47603258e-01 -3.15225720e-01 -2.29926761e-02 -2.36715123e-01\\n-1.73129871e-01 -3.59223396e-01 -6.28776103e-02 -1.47057503e-01]]',\n", + " 'Job Informationen Responsibilities: Contribute to methodology and technology decisions and ensure that the team is continuously on top of latest trends to help evolve the platform Liaise with other functions involved in data generation, ingestion, storage and processing Get hands-on with working with the data to really understand what it means Continuously enhance our growing suite of tools and platforms that our data scientists are depending upon Be a key resource with how we will extend our technical infrastructure to incorporate cloud technologies Work very closely with the data science team, business users and fellow technology colleagues on a daily basis. Ideal candidates will be involved in designing and building the infra for a new analytics platform which is then to be used to monitor and optimize the consumption of balance sheet capacity, capital, liquidity and funding and manage the risk exposure of the consolidated balance sheet Your profile: Degree in Computer Science or Financial Engineering Strong knowledge of Python with an additional working knowledge of Java being a distinct advantage Practical knowledge of how to implement CI/CD pipelines with TeamCity, Jenkins, Bamboo etc Good analytical skills and mathematical fluency (e.g. a growing interested in R, Scala, NoSQL, Spark etc.) Good understanding of data storage, cloud computing, interfaces, visualization and streaming data Entrepreneur at heart who is continuously looking for ways to improve and enhance the systems around you Highly numerate with logical analytical thought process and attention to details Reliable when working independently, with sound judgment for when to escalate issues Critical thinker who communicates clearly and enjoys the challenges of a fast-paced environment Committed team player with good interpersonal skills, enthusiasm and output vision Someone who actively keeps up-to-date with technology Keen to work with both structured and unstructured data - we have lots of it Benötigte Skills Python Python JAVA R Scala NoSQL',\n", + " '[\"Analytical Skills\", \"Decisiveness\", \"Infrastructure\", \"Management\", \"Communications\", \"Enthusiasm\", \"Reliability\"]',\n", + " '[\"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"Capitalization\", \"Balance Sheet\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Atlassian Bamboo\", \"Visualization\", \"Scala (Programming Language)\", \"Activism\", \"Optical Data Storage\", \"Python (Programming Language)\", \"Financial Engineering\", \"E (Programming Language)\", \"Cloud Storage\", \"Pipelining\", \"Unstructured Data\", \"Data Science\", \"Consolidation\", \"Storages\", \"R (Programming Language)\", \"Teamcity\", \"Resourcing\", \"Liquidation\", \"Additives\", \"Java (Programming Language)\", \"Cloud Computing\", \"Cloud Technologies\"]',\n", + " \"['English', 'Bislama', 'Hausa']\"],\n", + " ['92',\n", + " 'product specialist - preclinical software',\n", + " 'Pratteln',\n", + " '',\n", + " '',\n", + " '[[-2.41236180e-01 2.90319145e-01 4.68818903e-01 -9.23457518e-02\\n5.66722870e-01 -4.17652465e-02 -3.56336087e-02 3.46196562e-01\\n3.00159715e-02 -3.08371961e-01 -3.29736546e-02 -3.26030612e-01\\n1.48460746e-01 2.54644424e-01 -4.24939804e-02 4.34395999e-01\\n3.37981522e-01 1.26956776e-01 -1.75786436e-01 2.45356038e-01\\n1.81513168e-02 -1.67816430e-01 2.34795898e-01 7.89804459e-01\\n3.97713900e-01 -2.32347809e-02 -1.05665080e-01 -6.33461997e-02\\n-1.60741121e-01 -1.71358630e-01 5.27925313e-01 -1.99466757e-02\\n-1.54859722e-01 -3.14400315e-01 7.80410245e-02 1.13540187e-01\\n-2.80140907e-01 -6.28394634e-02 -1.53352886e-01 1.40269026e-01\\n-6.47592664e-01 -2.66026974e-01 -9.40905064e-02 8.47475231e-02\\n-3.34530920e-01 -3.29408914e-01 5.53082451e-02 -7.76224285e-02\\n1.67329133e-01 1.71046063e-01 -4.49607134e-01 1.66265577e-01\\n-3.25467885e-01 -2.84837902e-01 2.95220584e-01 6.41033173e-01\\n5.08179255e-02 -3.86479795e-01 -5.68061709e-01 -3.14716160e-01\\n1.74129382e-01 -4.79413718e-02 -3.23455818e-02 -3.15818429e-01\\n3.74750853e-01 1.35440528e-01 5.28140143e-02 3.19644034e-01\\n-8.42938304e-01 -1.09258085e-01 -1.88590288e-01 -6.64544106e-02\\n-2.67158985e-01 9.89961624e-03 -2.77759373e-01 -2.08844185e-01\\n-1.38790771e-01 4.15404975e-01 5.56623116e-02 -1.50841763e-02\\n-1.65076584e-01 2.79891521e-01 -3.14373672e-01 3.39975476e-01\\n1.75061300e-01 2.81090587e-01 2.64529854e-01 2.20599443e-01\\n-2.87707150e-01 4.69859570e-01 2.49250501e-01 -3.26760292e-01\\n2.66165137e-01 -1.60747021e-02 3.26063842e-01 -1.10008880e-01\\n1.84474319e-01 3.96711901e-02 -3.22044462e-01 3.55394065e-01\\n2.18067840e-01 -2.12915629e-01 3.70260552e-02 -4.53471430e-02\\n1.65863335e-02 -6.41060174e-02 1.65947020e-01 1.94752991e-01\\n-4.16675478e-01 4.18574452e-01 1.44840509e-01 -2.24833727e-01\\n-8.82302150e-02 -4.61693347e-01 -1.60161436e-01 1.52758211e-01\\n1.95015734e-03 1.63820744e-01 1.07539549e-01 7.15142936e-02\\n2.36166805e-01 -1.06738776e-01 5.16195111e-02 8.20751667e-01\\n-1.39197648e-01 6.94318563e-02 -2.30538666e-01 3.61465096e-01\\n1.60673708e-01 -1.96954340e-01 2.19268352e-01 1.60646111e-01\\n-9.38709080e-02 -8.41007829e-02 -1.73420042e-01 3.82595897e-01\\n4.05185558e-02 -2.65480280e-01 -2.89069951e-01 1.88551471e-01\\n-6.08726814e-02 -2.97211200e-01 5.47578216e-01 -1.34295329e-01\\n6.16129600e-02 -1.78153425e-01 -2.31506862e-03 -2.20270455e-02\\n-1.34399533e-01 1.75396591e-01 1.65797025e-01 6.03906363e-02\\n-2.85318613e-01 -2.52690494e-01 -9.86328870e-02 7.81935453e-03\\n-2.96563983e-01 1.36996150e-01 -1.80051327e-01 -1.38085485e-01\\n2.83705920e-01 7.10104108e-02 -2.61219949e-01 2.21112803e-01\\n-1.29115090e-01 -4.96139228e-02 -7.42911994e-02 2.80305326e-01\\n-2.75938630e-01 2.36028209e-01 -6.36880025e-02 -1.94869161e-01\\n5.58151722e-01 -3.05296965e-02 2.15724230e-01 3.32269296e-02\\n3.27327669e-01 -6.85470849e-02 2.49059379e-01 1.81374013e-01\\n-6.19416952e-01 3.66627216e-01 -1.52457982e-01 -1.06910378e-01\\n1.90078408e-01 -1.44409597e-01 3.54053676e-01 -2.57481694e-01\\n9.33321789e-02 -1.21398635e-01 -2.80310214e-01 -3.45704138e-01\\n-1.78863674e-01 -3.40287685e-02 3.07799697e-01 -3.73375386e-01\\n-9.49840173e-02 2.42244601e-01 -4.94794905e-01 -2.72151947e-01\\n1.81298330e-01 2.77989566e-01 1.07822105e-01 2.12005049e-01\\n-2.67193109e-01 -4.33954716e-01 1.90990478e-01 -4.75398183e-01\\n-1.27627894e-01 9.74676609e-02 -1.63165629e-01 2.17331663e-01\\n-3.00837439e-02 6.02189675e-02 -1.34491056e-01 1.13878042e-01\\n-2.24483415e-01 -2.96750274e-02 1.38052091e-01 -5.24428934e-02\\n1.69936776e-01 1.46973401e-01 -3.14377785e-01 4.33021069e-01\\n-2.36965179e-01 5.27099967e-01 4.71851081e-02 -1.09638453e+00\\n4.55236375e-01 3.79381835e-01 8.58560950e-02 -3.83684218e-01\\n7.20253706e-01 -3.48269701e-01 -1.48789242e-01 5.56652769e-02\\n-4.50578064e-01 -2.59066522e-01 2.37096444e-01 -2.13534772e-01\\n-2.42498323e-01 5.72614312e-01 5.66710308e-02 1.98284373e-01\\n2.63031125e-01 -2.06195593e-01 -9.12628323e-02 1.36586085e-01\\n-1.66414395e-01 -3.14506173e-01 -5.98668218e-01 -1.28232792e-01\\n-6.26697466e-02 -3.74196649e-01 -1.92491770e-01 -4.52266276e-01\\n-1.84717983e-01 -3.07367295e-01 -3.62683386e-02 1.25330046e-01\\n2.41897121e-01 1.36977166e-01 -4.77643497e-02 1.28264099e-01\\n-1.52111486e-01 -5.72612762e-01 3.63987312e-02 1.13705680e-01\\n3.11079651e-01 2.68742919e-01 1.15773961e-01 1.22746974e-01\\n7.63054937e-03 5.74436784e-01 -3.21661830e-01 -2.32951015e-01\\n1.61837205e-01 1.84737727e-01 6.71269372e-02 -6.42310381e-02\\n2.06276909e-01 2.92135149e-01 -1.89365357e-01 7.48000666e-02\\n-1.53152734e-01 -2.54523214e-02 3.12078714e-01 1.21913083e-01\\n-2.51913160e-01 -1.58904463e-01 -1.60549045e-01 1.11034438e-01\\n-5.08551478e-01 -1.89358413e-01 4.03058946e-01 -4.48963158e-02\\n5.95425926e-02 1.54752895e-01 1.74113512e-01 -1.03809685e-03\\n-3.13960373e-01 -2.60382056e-01 2.46689737e-01 1.04118034e-01\\n2.88166776e-02 9.54283178e-02 4.65270355e-02 -5.76100171e-01\\n-3.05432415e+00 -2.47175038e-01 5.52850701e-02 -2.27834955e-01\\n3.77492189e-01 -2.53612757e-01 1.17268167e-01 2.82918308e-02\\n-4.61560547e-01 1.34097055e-01 -4.38342467e-02 -8.94619226e-02\\n2.06331909e-01 1.52879611e-01 1.25963196e-01 1.45902306e-01\\n2.03863084e-02 -2.35907033e-01 2.40214355e-02 3.73251021e-01\\n-1.31283209e-01 -6.99433446e-01 2.30796337e-01 1.09518990e-02\\n2.59216726e-01 2.37477928e-01 -5.91582656e-01 -4.81126606e-02\\n-2.64471263e-01 -2.47499496e-01 1.01105012e-01 -2.92708308e-01\\n-1.52469844e-01 2.34721750e-01 2.34890997e-01 -9.73203182e-02\\n4.88628894e-02 -4.27352488e-01 -1.34496212e-01 -4.66077954e-01\\n1.79880589e-01 -7.87260652e-01 1.50660295e-02 -5.96798584e-02\\n6.47072315e-01 -2.11035937e-01 7.33514801e-02 1.08368084e-01\\n1.49367884e-01 1.55379802e-01 1.87394187e-01 4.70388532e-02\\n-2.93936372e-01 -2.71456659e-01 -4.94870022e-02 -1.80771366e-01\\n4.53548431e-01 4.45369363e-01 -2.40923464e-01 -1.34767517e-02\\n3.70594189e-02 -2.00335830e-01 -6.43863559e-01 -2.02807933e-01\\n-1.23539269e-01 -6.67786300e-02 -6.79483533e-01 -3.58735472e-01\\n-2.19045505e-01 -1.45952150e-01 -1.46569815e-02 6.15537465e-01\\n-3.48911196e-01 -3.35577130e-01 -5.46068773e-02 -6.07149839e-01\\n3.29453588e-01 -1.24562748e-01 -8.70473683e-03 -2.61351585e-01\\n-2.21393973e-01 -2.73619324e-01 1.35207146e-01 1.30115692e-02\\n-7.73050077e-03 -2.94414103e-01 2.72318460e-02 -2.01653138e-01\\n-3.44254613e-01 -5.95703423e-01 4.04787391e-01 1.75976694e-01\\n4.80892420e-01 1.30705416e-01 2.73006618e-01 -4.89520542e-02\\n2.76696801e-01 1.03536181e-01 2.32754163e-02 -4.81830835e-01\\n1.57766137e-02 5.88140637e-02 5.99879384e-01 -2.52358407e-01\\n-4.29520160e-02 -5.48180267e-02 -3.77218783e-01 -8.75121653e-02\\n3.14200521e-01 -1.67970031e-01 1.49244294e-01 -1.78529218e-01\\n2.16544390e-01 -2.99259752e-01 -1.41383275e-01 6.15706965e-02\\n7.34815001e-02 7.03947127e-01 -4.29884121e-02 -3.96385312e-01\\n-1.24017030e-01 5.36005080e-01 -3.76713611e-02 -1.89417601e-02\\n-1.81841284e-01 6.42269477e-02 -3.07847381e-01 3.53685558e-01\\n3.57882828e-02 -9.97645706e-02 -2.46962011e-01 -1.04008161e-01\\n-2.00272858e-01 3.01968783e-01 2.38865972e-01 2.00720623e-01\\n-1.81205310e-02 -3.58551085e-01 -1.51374504e-01 2.64122427e-01\\n1.83315873e-01 4.08937752e-01 2.23230869e-01 -2.08229631e-01\\n9.00992565e-03 2.98316270e-01 -9.84220654e-02 2.84117669e-01\\n-1.24116063e-01 2.50775576e-01 -5.77524364e-01 -2.26405069e-01\\n-2.79812992e-01 -2.81492829e-01 2.09600627e-01 3.59326929e-01\\n2.57427990e-01 -1.04996741e-01 -3.41524445e-02 -5.40265203e-01\\n2.01001272e-01 8.43514800e-02 1.67679042e-01 6.96230531e-02\\n6.64825886e-02 6.20321631e-01 -4.25532088e-03 -1.54301718e-01\\n-2.98099741e-02 5.46312034e-02 -1.25024289e-01 -8.52171183e-02\\n1.97442826e-02 -5.10105968e-01 -1.82496816e-01 4.24987525e-01\\n1.36418283e-01 -1.68541238e-01 -1.99241474e-01 3.47902566e-01\\n1.55603532e-02 -2.35988528e-01 -3.30263436e-01 8.61595385e-03\\n4.40368831e-01 1.14850968e-01 3.01565289e-01 -6.38768554e-01\\n-1.81759242e-02 -4.07677740e-02 1.09443665e-01 3.95688474e-01\\n6.63183406e-02 -7.02548772e-04 -2.40801483e-01 -1.70762584e-01\\n3.43879640e-01 -9.45673212e-02 -3.16042379e-02 5.47040254e-02\\n1.10958137e-01 -1.97015524e-01 -3.66111547e-01 6.79327697e-02\\n1.44685451e-02 -2.40357772e-01 -1.30340569e-02 2.10021287e-01\\n1.03559315e-01 1.30700931e-01 -5.57247877e-01 -1.24307737e-01\\n-1.46306559e-01 2.24174321e-01 -6.62564114e-02 -5.34228146e-01\\n2.08634567e-02 -8.16479474e-02 -6.27481580e-01 2.53940344e-01\\n-6.26832247e-02 -1.54147536e-01 1.66639626e-01 -7.34204501e-02\\n-3.47485095e-01 -1.07499398e-01 1.27088025e-01 1.64875433e-01\\n-2.24140018e-01 -2.92828679e-01 -8.52679312e-02 -9.98834252e-01\\n1.61549687e-01 -6.22524507e-02 -1.03856340e-01 2.35304683e-01\\n7.15738237e-02 -6.71869397e-01 2.24896505e-01 -3.41781080e-01\\n-1.85046613e-01 -4.84870449e-02 -2.47522876e-01 -3.52721840e-01\\n8.70035142e-02 1.01530962e-02 -1.67791694e-01 2.78187692e-01\\n-2.55334944e-01 4.73080397e-01 -1.16868265e-01 5.80164902e-02\\n5.94448075e-02 -2.94115335e-01 1.95320338e-01 -2.80452460e-01\\n-5.00358820e-01 -1.41624987e-01 -4.02969241e-01 -2.75825560e-01\\n-1.25201538e-01 -2.63486445e-01 -1.18998230e-01 9.71369967e-02\\n3.90923709e-01 -8.01141001e-03 -2.27863804e-01 -1.18037961e-01\\n1.22868650e-01 -4.72276628e-01 6.44065142e-02 -5.86490259e-02\\n6.40667975e-02 -1.07901827e-01 3.12192082e-01 1.06208593e-01\\n1.87864840e-01 -3.72850478e-01 4.30174798e-01 -3.68719012e-01\\n-3.95097286e-01 -1.34036019e-01 5.21657765e-02 -1.27120689e-02\\n4.62632090e-01 -4.89726245e-01 -1.92438483e-01 2.91215986e-01\\n4.97106649e-02 5.16386963e-02 2.45956913e-01 -3.00750196e-01\\n-1.33681566e-01 2.08136052e-01 -4.81870770e-01 1.46243244e-01\\n7.36215353e-01 1.17799714e-01 1.85424075e-01 1.53745860e-01\\n1.05588660e-01 1.81233451e-01 5.41279912e-01 -1.00047126e-01\\n-1.53822467e-01 3.76902461e-01 1.02789871e-01 -5.83520770e-01\\n-2.19591543e-01 -8.88781622e-02 -2.07525596e-01 -5.31996012e-01\\n6.70110047e-01 3.42069000e-01 -3.68149310e-01 -1.37957528e-01\\n-2.85643458e-01 -1.78617150e-01 1.69482529e-01 -7.79995769e-02\\n6.32206947e-02 1.73296724e-02 4.28825736e-01 -9.10877436e-02\\n3.78224224e-01 5.39284587e-01 -1.18567228e-01 -3.45023006e-01\\n-8.49296898e-03 2.36933216e-01 4.98025231e-02 3.67129803e-01\\n-9.56572071e-02 3.15325588e-01 -7.26283118e-02 1.76652014e-01\\n-2.04078645e-01 -2.29342114e-02 1.27721339e-01 4.82517369e-02\\n1.11746714e-01 1.26809284e-01 5.67301214e-01 3.77317607e-01\\n3.69036525e-01 3.64863962e-01 3.62920642e-01 2.13109478e-02\\n6.41618848e-01 5.60789168e-01 3.06158721e-01 5.74386567e-02\\n5.98285720e-03 1.43182710e-01 9.94853526e-02 7.05905259e-02\\n3.88389528e-01 3.75024140e-01 7.89907351e-02 8.80754530e-01\\n2.03281358e-01 3.54392767e-01 7.64046788e-01 -5.08702040e-01\\n-2.37442940e-01 5.78153059e-02 4.53920066e-01 -4.18236315e-01\\n1.46451816e-02 1.54308513e-01 -1.66453674e-01 1.74687192e-01\\n-4.32583988e-01 -2.73530126e-01 -4.54448722e-02 1.63447604e-01\\n1.10739008e-01 -1.68307006e-01 -8.80681574e-02 1.73683375e-01\\n-2.05804944e-01 -2.21955836e-01 -4.44325268e-01 -1.61756992e-01\\n-1.70715705e-01 -1.01643704e-01 -9.78280455e-02 -1.24371216e-01\\n-2.97053576e-01 -2.91949153e-01 -4.74195257e-02 -4.72845361e-02\\n3.47535044e-01 -1.54852197e-01 -5.99856228e-02 -1.38944760e-01\\n4.86571610e-01 1.52548760e-01 4.97602046e-01 -6.16845712e-02\\n1.50039569e-01 -3.05339038e-01 -1.92212015e-01 1.41560704e-01\\n1.98608413e-01 5.95956109e-03 -2.04618126e-02 3.66302967e-01\\n-2.24097788e-01 -1.07699960e-01 3.79665568e-02 3.40706855e-01\\n-3.43427092e-01 -6.89847469e-02 -1.09495625e-01 5.90764023e-02\\n-1.95106119e-03 1.25781789e-01 -2.18631774e-01 2.25808974e-02\\n-1.31311983e-01 -3.88595939e-01 2.35820234e-01 -1.12303726e-01\\n-2.89228737e-01 -2.37815902e-02 3.13339174e-01 3.05543602e-01\\n-1.81422740e-01 8.48787278e-03 -2.04124957e-01 1.62539214e-01\\n1.13118701e-01 2.36490965e-01 -1.83568254e-01 -3.13529670e-01\\n-2.87322700e-01 1.42046392e-01 -1.52944729e-01 9.69607458e-02\\n8.79425853e-02 4.77454960e-01 5.50093278e-02 7.58895352e-02\\n5.18808842e-01 -2.17739552e-01 -2.67346710e-01 -4.30566519e-01\\n-1.45898923e-01 -2.89213628e-01 -1.66083410e-01 -1.13029540e-01\\n2.25474715e-01 -2.85954416e-01 -5.95154688e-02 -3.37856412e-01\\n-1.27866745e-01 -3.71786416e-01 -6.93245605e-03 -6.75079301e-02]]',\n", + " \"PDS Life sciences is a leading global provider of software solutions and services dedicated to life science and pharmaceutical preclinical research. Our unique products and outsourced services accelerate the development and regulatory submission of biopharma products. For more than 30 years, we have developed software by scientists, for scientists - a hallmark that is unrivaled in our field. For that reason, eight of the world’s top 10 pharma companies have relied on PDS software, as do industry-leading CROs, chemical companies, universities and regulatory agencies. Over the past several years, PDS has undergone many changes and is now competing in new fast-growth segments of our markets. We are still nimble with a rewarding start-up culture that allows you to make an immediate impact on the business. With business offices in New Jersey, Switzerland and Tokyo, we think globally, but act locally and now we have an exciting opportunity for a Product Specialist located in our Pratteln Basel office. PDS Life Sciences is searching for a motivated person to join a global leader in Preclinical LIMS Software Solutions as a Preclinical Product Specialist. Are you looking for an exciting new opportunity to become a key subject matter expert in the development of preclinical software? Join our team of scientists and software development experts in this unique opportunity. PDS prides itself on its reputation to create solutions For Scientists By Scientists. Job Description: Responsible for a full range of activities which ensure operational effectiveness and excellence in product implementation and optimization with customers.Responsible for creating/maintaining training materialsResponsible for providing first level support to existing customers as requiredResponsible for providing consulting services to customers as requiredAssists the Validation team during the customer’s OQ ProcessAssists with internal acceptance testing (OQ) Assisting with writing Test Scripts Assists with functional specifications development Assists with writing user stories and test specifications Assisting with updates to user manuals and release notes Provides suggestions for product improvement Some domestic travel and infrequent international travel needed Duties as directed by manager(s) Requirements: Degree in life sciences, Biology, Toxicology, Pathology, Animal Science or other related field 1-3 years’ laboratory experience in a preclinical research facility (CRO, pharmaceutical industry)Knowledge of Laboratory Information Management System(s) (LIMS) a plusGxP knowledge a plusHigh level of communication, organization and intercultural skillsGood knowledge of IT technology and IT methodologyMust be fluent in EnglishExcellent writing skillsStrong attention to detailAbility to work in a team and independentlyCustomer service orientation skills a plusAble to travel (approximately 10%... domestic and international) Job Type: Full-time Salary: CHF70,000.00 to CHF80,000.00 /year Experience: Biological Lab: 1 year (Preferred) Education: Bachelor's (Preferred) \",\n", + " '[\"Research\", \"Writing\", \"Service-Orientation\", \"Management\", \"Operations\", \"Consulting\"]',\n", + " '[\"User Story\", \"Life Sciences\", \"PD 5500 Standard\", \"Outsourcing\", \"Animal Science\", \"Industrialization\", \"Activism\", \"Maintainability\", \"Levelling\", \"Business Office Procedures\", \"Toxicology\", \"Productivity Improvement\", \"Localization\", \"Functional Specification\", \"Patentable Subject Matter\", \"Release Notes\", \"Biology\", \"Management Systems\", \"Personalization\", \"Information Management\", \"Laboratory Information Management Systems\", \"Validations\", \"Pharmaceuticals\", \"Pathology\", \"Software Development\", \"Community Organizing\", \"Test Script\", \"Job Descriptions\", \"Acceptance and Commitment Therapy (ACT)\", \"Acceptance Testing\"]',\n", + " \"['English', 'Ossetic']\"],\n", + " ['37',\n", + " 'data engineer ef education first - associate level',\n", + " 'Zürich',\n", + " 'Education Training Services',\n", + " 'www.ef.com',\n", + " '[[-7.13831335e-02 2.68712938e-01 5.48830986e-01 -4.31743711e-02\\n5.21940768e-01 -1.67066246e-01 4.45478074e-02 5.89715421e-01\\n-5.27753942e-02 -4.89541143e-01 -9.27176699e-02 -3.03665847e-01\\n-1.92509759e-02 1.33665353e-01 1.40386775e-01 3.85331780e-01\\n2.08407477e-01 1.43563733e-01 -2.08950177e-01 2.60225773e-01\\n1.23485737e-01 -1.18826583e-01 1.69246092e-01 7.96625495e-01\\n4.88331318e-01 -2.07768544e-03 -1.98247842e-02 -9.05586109e-02\\n-2.09431201e-01 -3.23135942e-01 4.59163219e-01 -5.85045330e-02\\n-1.80026218e-01 -3.68967324e-01 5.66360988e-02 -5.88107714e-03\\n-2.51680404e-01 -9.98953283e-02 -6.86669946e-02 1.97209686e-01\\n-4.87213641e-01 -2.98452914e-01 -1.55093381e-02 -4.09873612e-02\\n-3.11148912e-01 -3.80632073e-01 9.77071673e-02 3.67947854e-02\\n1.84638500e-01 1.02800563e-01 -4.32717264e-01 2.44622692e-01\\n-2.51461744e-01 -1.58534482e-01 2.56993383e-01 7.07744896e-01\\n-1.68754887e-02 -4.19182718e-01 -5.87125063e-01 -3.31701249e-01\\n1.58648759e-01 -9.95023400e-02 -1.40892677e-02 -2.77910113e-01\\n3.49790931e-01 2.48045269e-02 1.47327662e-01 2.40685910e-01\\n-6.85154259e-01 -6.83094636e-02 -2.23256782e-01 -2.86017153e-02\\n-2.40029916e-01 -1.45453392e-02 -3.41388822e-01 -9.27574709e-02\\n-1.55565903e-01 4.14132088e-01 4.27225754e-02 -1.30996769e-02\\n-1.47944003e-01 3.20776701e-01 -1.99172065e-01 4.37319696e-01\\n1.98036090e-01 2.80869067e-01 9.07239243e-02 2.61881948e-01\\n-3.86323720e-01 4.56956893e-01 1.30886525e-01 -3.28037798e-01\\n1.64370582e-01 6.92902282e-02 5.18994212e-01 -1.09715328e-01\\n1.11935712e-01 3.95040065e-02 -3.07159930e-01 3.28623056e-01\\n2.26784378e-01 -3.02808225e-01 1.18445635e-01 -9.15177464e-02\\n2.75544617e-02 -7.83294290e-02 1.22149296e-01 1.21135697e-01\\n-2.17962772e-01 3.96692365e-01 -5.71839046e-03 -2.28258803e-01\\n-9.52792987e-02 -5.46339333e-01 -7.99353141e-03 -1.18300999e-02\\n2.09644027e-02 7.82603323e-02 1.58882409e-01 1.96947828e-01\\n2.20907047e-01 -5.27852289e-02 1.53433830e-01 8.20567429e-01\\n-1.15729064e-01 2.87624858e-02 -3.65544707e-01 2.48024285e-01\\n5.38649522e-02 -3.51763725e-01 2.77504981e-01 1.74894050e-01\\n-4.04908918e-02 -1.52767166e-01 -1.86067089e-01 3.18166584e-01\\n-2.15057414e-02 -2.33161837e-01 -2.62625843e-01 2.13937521e-01\\n-5.19695990e-02 -3.47727090e-01 5.54340601e-01 8.26471671e-02\\n1.51873425e-01 -1.00771308e-01 -3.40677500e-02 -1.40321150e-01\\n-8.19023922e-02 3.80302742e-02 1.07732274e-01 -2.86382250e-02\\n-2.45429799e-01 -3.03641230e-01 -2.05550775e-01 6.61794320e-02\\n-2.77993590e-01 1.72421023e-01 -4.15852219e-02 -1.41670808e-01\\n2.59412378e-01 8.86371173e-03 -2.85456747e-01 2.97867745e-01\\n-1.53674692e-01 9.79248341e-03 -6.38451986e-03 3.80456299e-01\\n-2.63276577e-01 2.31363058e-01 -4.08444963e-02 -8.53994563e-02\\n5.64438283e-01 1.03420779e-01 1.14589408e-01 -1.02162883e-01\\n2.54717022e-01 4.62259129e-02 1.11438185e-01 1.44903317e-01\\n-7.10092902e-01 3.07486624e-01 -2.21159942e-02 -5.99461719e-02\\n1.79916009e-01 -1.00868776e-01 3.21888000e-01 -2.41313711e-01\\n6.19043072e-04 -9.98877361e-02 -2.78433561e-01 -2.65704662e-01\\n-1.21995308e-01 -8.79946649e-02 3.59849155e-01 -4.31571662e-01\\n-1.37589857e-01 2.01866716e-01 -4.76746887e-01 7.00860023e-02\\n9.44742784e-02 2.12313682e-01 1.78495303e-01 1.87152803e-01\\n-2.44722024e-01 -3.98013532e-01 1.10801257e-01 -3.03785920e-01\\n-2.17823133e-01 9.22078341e-02 -3.22812676e-01 1.95749447e-01\\n1.14573129e-01 1.41997576e-01 -1.64266780e-01 3.15525122e-02\\n-2.70967871e-01 -8.69031698e-02 1.52310625e-01 -9.12559219e-03\\n2.91625023e-01 6.99107125e-02 -3.57145488e-01 3.76401752e-01\\n-1.16416179e-01 5.27362704e-01 1.80935428e-01 -7.55879104e-01\\n4.55930114e-01 3.08919579e-01 -6.27308413e-02 -4.45452124e-01\\n5.85036278e-01 -2.09046766e-01 -4.08806838e-02 1.03890002e-01\\n-2.90055960e-01 -3.54207128e-01 2.21493304e-01 -1.06751956e-01\\n-2.14926898e-01 4.60274845e-01 4.31803800e-03 7.88214132e-02\\n1.87831357e-01 -1.56073689e-01 -9.34108868e-02 -9.47151519e-03\\n-2.05107816e-02 -1.56666800e-01 -4.77372229e-01 1.83835011e-02\\n-9.34585929e-02 -3.68961811e-01 -2.17227861e-01 -4.25705403e-01\\n-1.97244704e-01 -2.84532070e-01 -4.77311648e-02 1.88150033e-01\\n2.63245136e-01 -4.09824625e-02 9.84308198e-02 1.53723387e-02\\n-1.95845023e-01 -5.91944933e-01 -9.34703127e-02 7.79384524e-02\\n4.63563561e-01 2.23107547e-01 2.14337096e-01 -1.28215423e-03\\n1.50879368e-01 6.77174270e-01 -1.56564161e-01 -2.34799057e-01\\n1.40170127e-01 1.75392359e-01 9.98444855e-02 -1.30685970e-01\\n1.65973976e-01 2.75251418e-01 -2.91769654e-01 5.26739806e-02\\n-4.72565144e-02 -6.11450784e-02 3.45654070e-01 2.33171228e-02\\n-3.07081580e-01 -2.62908190e-01 5.55850156e-02 1.56849995e-02\\n-5.11130691e-01 -1.82921022e-01 5.78301668e-01 1.52453646e-01\\n1.23635463e-01 2.81612352e-02 8.34764242e-02 -1.02098500e-02\\n-5.94204180e-02 -1.54227093e-01 1.86254531e-01 5.52650541e-02\\n6.28160164e-02 1.71710938e-01 -5.18863536e-02 -6.17394626e-01\\n-3.13916326e+00 -1.27605498e-01 8.70268866e-02 -2.23092660e-01\\n2.21001789e-01 -1.28477111e-01 1.82656631e-01 -1.75802112e-02\\n-2.80088276e-01 2.08897870e-02 -1.42730489e-01 -9.79821905e-02\\n1.80087700e-01 1.76493883e-01 1.38014361e-01 3.01599711e-01\\n1.61845759e-01 -3.31117779e-01 -7.37131760e-02 4.71889198e-01\\n-1.47669032e-01 -6.29151940e-01 2.49845803e-01 4.69561033e-02\\n3.49155635e-01 1.54819503e-01 -4.21009243e-01 -1.89997628e-01\\n-2.28841797e-01 -1.95354596e-01 5.11328615e-02 -3.05028796e-01\\n-1.82475403e-01 2.09260032e-01 2.46516287e-01 -2.50196785e-01\\n2.25126401e-01 -4.45908338e-01 -7.02921376e-02 -5.01263738e-01\\n1.05987601e-01 -7.02100515e-01 3.90252061e-02 -9.39371586e-02\\n6.86094284e-01 -2.95523703e-01 9.63675976e-02 7.06995800e-02\\n9.67510790e-02 1.19490810e-01 9.00948569e-02 9.35866684e-02\\n-2.14881793e-01 -3.20908785e-01 -1.07006580e-01 -2.07213044e-01\\n5.64140558e-01 5.15030384e-01 -1.38298288e-01 -9.24741998e-02\\n1.29300535e-01 -2.90203065e-01 -4.80586827e-01 -3.05213213e-01\\n-1.26189753e-01 -9.50096622e-02 -7.49234438e-01 -4.99551147e-01\\n-1.14083238e-01 -1.59414485e-01 -8.46208036e-02 4.93285179e-01\\n-2.55941391e-01 -3.19047481e-01 -9.36704427e-02 -5.97325861e-01\\n3.25245112e-01 -1.13075592e-01 3.44722234e-02 -2.65649736e-01\\n-1.76887959e-01 -4.79935408e-01 1.09366938e-01 5.54132573e-02\\n-1.69700179e-02 -3.43682349e-01 8.82017165e-02 -1.47823736e-01\\n-2.26915210e-01 -6.03165329e-01 4.53798473e-01 1.25047445e-01\\n3.33470970e-01 2.02171013e-01 2.92658865e-01 -3.75372134e-02\\n3.05391252e-01 -2.64529828e-02 6.26453757e-02 -4.04180646e-01\\n9.04138684e-02 1.32592171e-02 4.54954416e-01 -1.53502911e-01\\n-1.97766829e-04 7.95999691e-02 -1.52082741e-01 -1.28754675e-01\\n3.31119746e-01 -9.92281269e-03 7.64469057e-02 -1.14746928e-01\\n2.44977131e-01 -3.09446484e-01 -2.09425151e-01 -6.05222536e-03\\n1.37601197e-01 5.31468451e-01 -3.53007801e-02 -4.13755596e-01\\n-1.79686502e-01 4.08746779e-01 -4.63801250e-02 1.18333444e-01\\n-2.23730862e-01 1.13763496e-01 -2.52912372e-01 2.69637018e-01\\n-2.78718509e-02 -2.26117522e-01 -3.15797627e-01 -1.83173761e-01\\n4.28928882e-02 3.45161378e-01 2.05633178e-01 2.18997508e-01\\n3.32254916e-02 -3.93077731e-01 -6.87589571e-02 2.38591313e-01\\n1.96190283e-01 5.15604436e-01 7.86670074e-02 -1.64035812e-01\\n1.31621305e-02 3.70633841e-01 -2.18468681e-01 2.90395141e-01\\n-2.37421796e-01 1.10710837e-01 -5.13327539e-01 -2.85359085e-01\\n-3.10449094e-01 -3.18995565e-01 1.70534283e-01 3.50027710e-01\\n1.12887070e-01 -6.62314966e-02 1.07193813e-02 -4.18144643e-01\\n2.86941379e-01 5.77094639e-03 1.50794238e-01 2.21258223e-01\\n9.35514048e-02 6.36898577e-01 1.54077202e-01 -2.36396238e-01\\n-1.74863771e-01 1.07087895e-01 -1.36547104e-01 -1.22860111e-02\\n4.81486917e-02 -4.78642851e-01 -1.21583499e-01 4.45488632e-01\\n1.36594296e-01 -1.82137117e-01 -9.58000943e-02 2.59965807e-01\\n-1.27143105e-02 -2.29163289e-01 -1.79696277e-01 6.18980527e-02\\n2.41429090e-01 1.33856624e-01 2.80803919e-01 -4.75254416e-01\\n6.59961207e-03 -7.48020336e-02 -4.07617204e-02 4.58080322e-01\\n2.26680059e-02 1.42067913e-02 -1.06166795e-01 -1.05436996e-01\\n3.73385161e-01 -1.11556262e-01 -8.60560238e-02 5.09797595e-02\\n1.02307603e-01 -2.50768691e-01 -4.23362404e-01 1.13883607e-01\\n-7.35991597e-02 -1.86456949e-01 -6.44132271e-02 1.71926588e-01\\n9.11646113e-02 1.05796441e-01 -5.75231612e-01 -2.11849734e-01\\n-2.14949906e-01 2.62124408e-02 -1.00850143e-01 -4.60794330e-01\\n-3.16246599e-02 -6.07812107e-02 -4.97432351e-01 1.97956875e-01\\n-2.18977720e-01 -4.28529158e-02 2.62351066e-01 2.73256488e-02\\n-3.28045189e-01 -5.87259717e-02 9.93866622e-02 2.53748715e-01\\n-2.47936323e-01 -2.53832012e-01 -7.88784549e-02 -9.66813445e-01\\n8.95514935e-02 4.75212336e-02 -1.68126404e-01 1.61822438e-01\\n-1.59288064e-01 -6.35768652e-01 1.31555945e-01 -3.65607709e-01\\n-2.67166346e-01 -8.22343901e-02 -1.74507141e-01 -4.73198175e-01\\n8.38323683e-02 4.99980301e-02 -2.54873902e-01 3.38549376e-01\\n-2.65259117e-01 2.65541703e-01 -1.41262308e-01 5.54067679e-02\\n2.20962912e-02 -2.62250602e-01 1.55997574e-01 -4.51870441e-01\\n-3.10551822e-01 -1.39656037e-01 -3.19957227e-01 -2.54593998e-01\\n-2.19257604e-02 -2.59118289e-01 -2.23030761e-01 9.88457352e-02\\n2.91177660e-01 8.41098651e-02 -1.15374498e-01 -1.59809843e-01\\n7.46977702e-02 -5.33654332e-01 9.09858048e-02 -1.14166833e-01\\n-5.65610602e-02 -1.65707082e-01 3.12940776e-01 1.77297257e-02\\n1.32765800e-01 -3.61309022e-01 4.66877818e-01 -3.46883267e-01\\n-3.54196429e-01 -6.42637461e-02 6.16060235e-02 -3.88318039e-02\\n3.34254920e-01 -4.38408792e-01 2.62832157e-02 3.56866837e-01\\n1.40200034e-01 1.70936808e-01 2.07970858e-01 -1.75544649e-01\\n-1.86026648e-01 3.39122087e-01 -4.99673784e-01 -1.20304562e-02\\n7.47456789e-01 7.01971054e-02 1.82522744e-01 2.13648006e-01\\n1.30306005e-01 1.94348395e-01 3.93598169e-01 6.85305074e-02\\n-2.08614364e-01 2.77723223e-01 3.75845358e-02 -5.12498677e-01\\n-2.73742285e-02 1.55909555e-02 -2.28356943e-01 -4.58390236e-01\\n6.10684872e-01 4.33689624e-01 -4.65060145e-01 -2.18137279e-01\\n-1.83053926e-01 -2.01842666e-01 1.09394066e-01 -7.99208134e-02\\n9.16358083e-02 -8.99005979e-02 3.86361003e-01 -6.32352754e-02\\n2.21016839e-01 5.28857827e-01 -1.28057778e-01 -2.32101157e-01\\n-5.34384921e-02 1.00591600e-01 -1.40818572e-02 4.34716314e-01\\n-2.29571342e-01 3.48156273e-01 5.59089631e-02 1.51447460e-01\\n-1.54795915e-01 7.38499910e-02 8.48646760e-02 6.97239907e-03\\n8.16447437e-02 1.73018903e-01 4.22664136e-01 3.75741690e-01\\n3.35442483e-01 3.80889952e-01 2.90468633e-01 4.76717688e-02\\n4.38380539e-01 4.09026742e-01 4.32644635e-01 1.39618129e-01\\n3.43482234e-02 9.28358361e-03 1.60197884e-01 6.86306506e-02\\n3.12051982e-01 2.57358909e-01 6.90622255e-02 9.46969986e-01\\n2.44098276e-01 2.37869844e-01 7.52016842e-01 -5.97580492e-01\\n-3.42552543e-01 -1.16324173e-02 4.27714765e-01 -6.05044127e-01\\n-5.65975942e-02 1.65098578e-01 -2.56243080e-01 1.50134608e-01\\n-4.60014254e-01 -3.49378169e-01 -6.31586090e-02 1.92720383e-01\\n-7.96000957e-02 -1.39946938e-01 -2.41793036e-01 1.49368078e-01\\n-6.48017228e-02 -9.06797424e-02 -5.36240458e-01 -1.89643174e-01\\n-9.18619037e-02 -1.68333188e-01 -1.63700432e-01 -1.73725769e-01\\n-2.14935139e-01 -2.39658326e-01 -9.19167418e-03 -3.50553468e-02\\n2.57400453e-01 -1.26432702e-01 7.88807347e-02 -2.17238739e-01\\n3.28027993e-01 2.07587048e-01 5.00584126e-01 -7.60600623e-03\\n1.81865185e-01 -2.44340435e-01 -2.25482523e-01 7.38184080e-02\\n2.28666022e-01 6.88113412e-03 8.66552591e-02 2.78624058e-01\\n-2.00570881e-01 -1.67664587e-01 1.27727315e-01 3.53889376e-01\\n-3.94326687e-01 4.02186811e-02 -2.54571959e-02 2.19157308e-01\\n6.57689795e-02 1.21368185e-01 -1.87020943e-01 1.50549933e-01\\n-2.47281700e-01 -3.92455041e-01 1.66152492e-01 -7.51631558e-02\\n-1.01014964e-01 5.29704690e-02 2.45454937e-01 1.69752434e-01\\n-3.15871954e-01 1.14148818e-01 -6.88738227e-02 1.78047195e-01\\n2.15988066e-02 2.87830561e-01 -2.20087335e-01 -1.90772191e-01\\n-2.95863628e-01 2.28187561e-01 -1.68326214e-01 6.93639368e-02\\n6.39170222e-03 4.02594477e-01 2.28410633e-03 -2.81913187e-02\\n5.03594518e-01 -1.87721044e-01 -2.00153977e-01 -2.87870377e-01\\n-2.18039900e-01 -1.29720658e-01 -7.76425600e-02 -1.31955951e-01\\n2.09464073e-01 -4.49019969e-01 -6.10463805e-02 -1.79197833e-01\\n-1.27301276e-01 -4.15583700e-01 8.53738487e-02 -1.39782622e-01]]',\n", + " 'EF Travel, the flights division of EF Tours, is currently looking for a Data Engineer to join our BI team in Zurich, Switzerland. We are an autonomous and dynamic BI team working on a multitude of technical solutions for EF’s flights department. We provide vital functions in the areas of technical development, business intelligence and innovation and everything we do has a direct impact on our business. We enjoy a fantastic work environment right on the doorstep to the Swiss Alps. As a Data Engineer your main focus will be to provide all the back-end development and architecture for supporting our operational and executive deliveries. We expect you to be forward thinker, innovative and ready for a position where you will get to make an impact from day one. The role Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Requirements Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English About EF Since 1965, we have helped millions of people transform their lives by opening the world through education. Today we are the world’s largest private education company - offering every imaginable way to learn a language, travel abroad, experience another culture, or earn an academic degree. We offer competitive salaries and a multicultural working environment. The position is situated in Zurich, Switzerland and you will be working with people from all over the world. What’s it like to work here? https://vimeo.com/111638911 and https://www.youtube.com/watch?v=fGlnMgNtivw',\n", + " '[\"Self-Motivation\", \"Imagination\", \"Problem Solving\", \"Operations\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Computer Science\", \"Analytics\", \"Data Engineering\", \"Data Warehousing\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"AWS Directory Service\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Business Intelligence\", \"Cloud Services\", \"Dimensional Modeling\", \"Library For WWW In Perl\", \"SQL Server Integration Services (SSIS)\", \"Big Data\", \"End Systems\", \"Adapter Scripting Language\", \"Front End (Software Engineering)\", \"Technical Solution Design\", \"Back End (Software Engineering)\", \"Vimeo\", \"Business Development\"]',\n", + " \"['English', 'Scottish Gaelic', 'Venda']\"],\n", + " ['75',\n", + " 'data analyst (w/m)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.11146176e-01 2.39136994e-01 2.90398657e-01 6.72261640e-02\\n4.67736870e-01 -9.18641686e-02 3.97096761e-02 3.05283010e-01\\n-3.36161889e-02 -3.97795141e-01 1.86883882e-02 -2.00990930e-01\\n-2.05021411e-01 -2.35511735e-02 -6.09298535e-02 3.74364942e-01\\n3.14212054e-01 1.27775088e-01 -6.98458254e-02 3.12407762e-01\\n1.45176515e-01 4.35345173e-02 -1.98234499e-01 6.25866890e-01\\n4.50871587e-01 -1.47546995e-02 -1.56236291e-02 1.13502875e-01\\n-2.38367617e-01 -2.32878581e-01 3.74210626e-01 2.20305279e-01\\n-1.62239343e-01 -3.08662742e-01 -9.92584676e-02 1.70678794e-01\\n-5.39318696e-02 8.47874209e-02 -2.23041736e-02 1.64997160e-01\\n-4.43314523e-01 -1.50232136e-01 -4.09958661e-02 1.29467383e-01\\n-2.19754845e-01 -2.51332641e-01 1.42236307e-01 -1.28595188e-01\\n2.61874795e-01 5.05346768e-02 -5.89948416e-01 4.53012794e-01\\n-2.18548268e-01 -1.04258947e-01 1.92739040e-01 5.31125367e-01\\n6.16231486e-02 -4.91898745e-01 -4.69496667e-01 -2.60333568e-01\\n1.46780655e-01 -1.56618625e-01 2.47780476e-02 -3.58066887e-01\\n4.70109582e-01 9.63611081e-02 1.18217655e-01 2.74166346e-01\\n-7.71098852e-01 2.31758263e-02 -3.16714168e-01 1.75135082e-03\\n-4.54640388e-01 -7.57691935e-02 -3.10515761e-01 1.04245499e-01\\n-1.58402070e-01 3.70413184e-01 1.12624932e-02 2.32621282e-02\\n-1.45271048e-01 2.29412317e-01 -2.66939670e-01 2.36535490e-01\\n2.75408685e-01 7.42758662e-02 1.51272535e-01 2.91059673e-01\\n-4.29618418e-01 4.08743739e-01 2.19384152e-02 -2.38176927e-01\\n2.33093336e-01 2.21849307e-01 3.86615813e-01 1.24891602e-01\\n1.73213035e-01 1.52267575e-01 -2.33110532e-01 3.92894864e-01\\n2.57550716e-01 -4.08816308e-01 6.20822236e-02 -1.45078123e-01\\n9.10583436e-02 -8.66806731e-02 3.43637615e-02 1.48119822e-01\\n-2.32768223e-01 4.60640490e-01 1.36696815e-01 -1.41709283e-01\\n-6.29564077e-02 -4.81269240e-01 -1.62305698e-01 -3.27140689e-02\\n7.92074353e-02 4.39742059e-02 1.67982981e-01 2.54728466e-01\\n2.62138724e-01 6.84838220e-02 1.69045091e-01 7.56495953e-01\\n-1.26601845e-01 1.12024628e-01 -1.41819611e-01 3.01273346e-01\\n2.21235931e-01 -2.70826876e-01 2.78461546e-01 4.53133732e-01\\n1.90669015e-01 -1.73137933e-01 -2.82631457e-01 2.21721619e-01\\n-1.44065320e-01 -9.34531391e-02 -3.91228259e-01 1.36929303e-01\\n2.69087613e-01 -3.57735693e-01 6.72580719e-01 1.49582848e-01\\n2.45194852e-01 7.80583099e-02 -1.55788623e-02 -1.30698770e-01\\n-4.36149128e-02 2.64012069e-01 1.34398162e-01 3.10557485e-01\\n-2.63451964e-01 -1.91503137e-01 -1.76833093e-01 8.09168667e-02\\n-4.48427796e-01 7.21118152e-02 -9.89824533e-02 -2.68950202e-02\\n2.14500323e-01 -2.85551287e-02 -3.70262802e-01 1.00155491e-02\\n-8.70728195e-02 -1.81526154e-01 1.52622461e-01 4.11153823e-01\\n-9.36509855e-03 2.46026963e-01 -1.35904059e-01 -5.58928922e-02\\n7.83346057e-01 1.72828659e-01 1.17035866e-01 -2.60019824e-02\\n3.52899522e-01 -3.27306613e-02 2.50832081e-01 1.74996436e-01\\n-7.91738033e-01 3.01586330e-01 -5.47335446e-02 -3.43929827e-01\\n2.41265878e-01 8.60665664e-02 4.28674698e-01 -4.01118368e-01\\n1.48426099e-02 -2.10689008e-01 -3.43077928e-01 -2.08893120e-01\\n-4.12101448e-01 -7.70077705e-02 3.63120854e-01 -3.92112583e-01\\n-1.26116022e-01 1.61451533e-01 -5.51733792e-01 -1.62621871e-01\\n8.11881199e-02 4.88931276e-02 1.87472507e-01 1.75200582e-01\\n-4.73893993e-02 -6.77190542e-01 -1.61201674e-02 -4.77974623e-01\\n-5.38287342e-01 1.16164260e-01 -4.74248141e-01 3.79593611e-01\\n1.23104841e-01 -2.29068901e-02 -2.15525210e-01 2.24809483e-01\\n-2.39478484e-01 -2.39135846e-02 9.75539014e-02 5.92561439e-02\\n1.82818696e-01 5.38635775e-02 -4.57788795e-01 3.51053119e-01\\n-1.28339663e-01 5.41842461e-01 1.60109580e-01 -6.45862103e-01\\n5.85337758e-01 2.81759024e-01 -5.23681045e-02 -3.67121845e-01\\n5.14721453e-01 -2.45323122e-01 -1.36794776e-01 3.26134078e-02\\n-3.29582632e-01 -3.10149074e-01 1.65862188e-01 5.08003943e-02\\n-2.42900312e-01 5.14442205e-01 1.48581460e-01 7.98721611e-03\\n2.41281405e-01 -2.76104212e-01 -2.72475537e-02 2.36466959e-01\\n-1.76059365e-01 -2.04537705e-01 -3.59438539e-01 -8.69369209e-02\\n-6.31464422e-02 -4.35637712e-01 -7.06826448e-02 -3.22943330e-01\\n-2.48178348e-01 -3.95703912e-01 -3.32487941e-01 4.96108174e-01\\n2.13452309e-01 1.44497991e-01 2.19330117e-02 3.61012085e-03\\n-1.15730695e-01 -7.52296329e-01 2.15175860e-02 1.27884224e-01\\n4.23383772e-01 2.19577149e-01 1.08746946e-01 -2.23259747e-01\\n1.15951747e-01 6.33750677e-01 -4.12900329e-01 -4.04958874e-01\\n8.42166096e-02 2.42692947e-01 -1.09316796e-01 -1.01274751e-01\\n3.74676869e-03 5.04493177e-01 -2.80864596e-01 6.11973070e-02\\n-7.58251175e-02 -2.68021524e-01 3.58317584e-01 -1.20434061e-01\\n-2.82962710e-01 -2.45179549e-01 -2.45533884e-01 1.78346798e-01\\n-5.27869880e-01 -4.23619866e-01 3.87473166e-01 2.88734734e-01\\n1.86963141e-01 3.50037329e-02 1.02335550e-01 -4.64270711e-02\\n-1.57854274e-01 -4.39671606e-01 2.50005364e-01 1.52343020e-01\\n6.13475889e-02 2.33513087e-01 -1.95682943e-01 -5.73676109e-01\\n-3.49422789e+00 -6.75360784e-02 2.13890582e-01 -2.54013956e-01\\n2.12645367e-01 4.69190069e-02 7.90548399e-02 -1.11705221e-01\\n-3.43133509e-01 1.22256674e-01 -2.37963364e-01 -2.34372005e-01\\n-3.24390344e-02 4.20925260e-01 1.61963359e-01 6.78747147e-02\\n2.07169950e-01 -2.55124152e-01 -1.45022094e-01 3.11259210e-01\\n-1.39891416e-01 -4.61999357e-01 6.88784420e-02 -4.90603000e-02\\n1.85138121e-01 3.43550116e-01 -1.98736668e-01 -1.55047953e-01\\n-2.49702513e-01 -2.97027469e-01 1.72101911e-02 -2.60298371e-01\\n-1.39920339e-01 2.30585366e-01 1.44387588e-01 1.01313949e-01\\n-6.12024665e-02 -3.14160198e-01 -6.77473843e-02 -5.13232589e-01\\n-4.88445498e-02 -3.88827294e-01 -3.11686601e-02 -1.89167485e-01\\n7.96588957e-01 -1.73933059e-01 1.31757602e-01 5.66122532e-02\\n1.86294615e-01 1.30174458e-01 7.95167387e-02 5.70563860e-02\\n-1.87310830e-01 -1.92057058e-01 -2.69195378e-01 -2.04498693e-01\\n6.55414701e-01 2.99004734e-01 -1.74768910e-01 -1.14557110e-01\\n2.02871352e-01 -4.24003184e-01 -3.15629900e-01 -2.77638942e-01\\n-9.69398096e-02 -2.74193108e-01 -4.93626118e-01 -3.56409341e-01\\n-1.75905108e-01 -3.78155485e-02 -1.10586822e-01 5.74131727e-01\\n-3.95922482e-01 -3.69004101e-01 -2.52287053e-02 -4.76713926e-01\\n1.79998487e-01 -2.77745962e-01 2.28470340e-02 -4.69184443e-02\\n-3.60951602e-01 -6.40597463e-01 -1.33063942e-01 -6.86763898e-02\\n-1.69955894e-01 -3.69998127e-01 -4.64197919e-02 -1.25331938e-01\\n-4.13509786e-01 -7.01379120e-01 3.71452808e-01 3.18277925e-02\\n2.77836591e-01 2.33947918e-01 2.59112298e-01 7.26864636e-02\\n4.94323790e-01 -1.10832341e-01 3.34795713e-02 -3.13854486e-01\\n6.31374940e-02 -1.89838409e-01 6.00906670e-01 -2.14308321e-01\\n-1.43257463e-02 5.43035530e-02 -2.88209081e-01 -1.76593103e-02\\n3.35261792e-01 -4.51940298e-02 6.09509535e-02 -1.37918174e-01\\n4.07751232e-01 -2.84172863e-01 -2.38206550e-01 2.26504251e-01\\n8.88334662e-02 5.83834469e-01 8.97526965e-02 -3.04954678e-01\\n-9.16488841e-02 4.44887698e-01 -2.00251624e-01 -4.79343049e-02\\n-1.48604453e-01 1.67129170e-02 -1.38177127e-01 2.52459079e-01\\n7.11158812e-02 -1.89010307e-01 -7.25988001e-02 -2.97308490e-02\\n-4.05714177e-02 2.88314700e-01 2.54718333e-01 -1.05478473e-01\\n-1.06964335e-02 -1.98784798e-01 -9.49203745e-02 1.21635526e-01\\n2.06361264e-01 3.38137209e-01 6.96667433e-02 -2.31046945e-01\\n-1.68194458e-01 3.03568035e-01 4.44073826e-02 2.44361777e-02\\n-1.92213088e-01 8.31995904e-02 -4.74086881e-01 -2.16079816e-01\\n-3.15263063e-01 -3.54919076e-01 2.37229243e-01 2.40904644e-01\\n1.36307985e-01 -2.25260202e-02 1.29438326e-01 -5.55113852e-01\\n2.18901113e-01 2.41248056e-01 2.08037421e-01 5.78624681e-02\\n-1.57106131e-01 3.58365804e-01 -6.48141950e-02 -1.53316185e-01\\n-1.52344659e-01 1.53613091e-01 -1.76706254e-01 -1.65021494e-01\\n2.33898431e-01 -4.29733545e-01 -1.07338585e-01 4.52064395e-01\\n2.15695009e-01 -1.56864017e-01 -3.44151855e-01 2.93253422e-01\\n-1.32898182e-01 -2.37496436e-01 -2.68674761e-01 -1.11861162e-01\\n1.70387059e-01 1.13470405e-01 1.85515732e-01 -2.20539033e-01\\n-8.65486041e-02 4.12845165e-02 -1.63014472e-01 3.14923882e-01\\n3.07883285e-02 -6.74817115e-02 -3.19910228e-01 -6.12908341e-02\\n4.40704405e-01 7.67102838e-03 -5.92696741e-02 -8.13967586e-02\\n1.94043547e-01 -2.70835936e-01 -4.43066657e-01 -3.19895800e-03\\n-3.60884927e-02 -2.51245588e-01 -4.75164205e-02 2.03575760e-01\\n-1.11812867e-01 1.17998362e-01 -5.84350884e-01 -2.75305152e-01\\n-4.60165620e-01 -3.09753537e-01 2.93318257e-02 -2.59893268e-01\\n7.34278336e-02 -1.64992779e-01 -4.57648486e-01 1.76786691e-01\\n-2.39894867e-01 -5.06835207e-02 1.40728399e-01 1.23337083e-01\\n-3.51873070e-01 -2.61124432e-01 2.81367507e-02 1.68059170e-01\\n-3.21979046e-01 -1.81134939e-01 8.52563977e-02 -8.83151948e-01\\n1.40701473e-01 3.83930728e-02 -1.60850376e-01 -3.55063006e-03\\n-1.63479403e-01 -5.42055547e-01 1.95036083e-03 -5.38012087e-01\\n-8.35062563e-02 1.22421332e-01 -2.37064302e-01 -2.10910305e-01\\n1.84065998e-01 -1.50267959e-01 -4.04174268e-01 4.15074587e-01\\n-2.71812558e-01 4.20973003e-01 -1.73982680e-01 1.04589418e-01\\n-6.80067912e-02 -1.81918353e-01 4.02636938e-02 -2.39861324e-01\\n-4.48657870e-01 -2.48203337e-01 -1.94506347e-01 -1.20701671e-01\\n1.56704098e-01 -4.47014183e-01 -6.41594082e-02 1.65948048e-01\\n3.35748494e-01 6.74316064e-02 -6.04099967e-02 -8.26721340e-02\\n1.63759202e-01 -6.51322722e-01 -5.36895804e-02 -2.14780778e-01\\n-8.72551128e-02 -6.94406480e-02 2.19604433e-01 6.30603731e-03\\n2.03320086e-01 -2.10058764e-01 3.88966173e-01 -4.42216754e-01\\n-1.75246209e-01 1.17239505e-01 7.84682333e-02 -1.87138811e-01\\n1.87136471e-01 -5.00908196e-01 1.68356467e-02 4.43145037e-01\\n1.45313323e-01 2.06638202e-02 1.32052138e-01 5.64344712e-02\\n-1.09408908e-01 2.68779397e-01 -2.59354949e-01 9.61166695e-02\\n6.03839278e-01 2.77027667e-01 1.16187841e-01 1.03234105e-01\\n1.24363542e-01 2.59936631e-01 4.98579562e-01 1.73416823e-01\\n1.98958255e-02 1.88118875e-01 1.11507840e-01 -4.11275744e-01\\n1.81703977e-02 1.41565993e-01 -2.49772146e-01 -2.42393494e-01\\n5.63166380e-01 4.73994672e-01 -6.61361516e-01 -2.61521369e-01\\n-5.62981702e-02 -1.01802915e-01 4.04787481e-01 4.12870385e-02\\n-1.20411702e-02 -1.45893574e-01 4.82355952e-01 -5.69226071e-02\\n-5.45800570e-03 4.72445220e-01 -7.99961537e-02 -9.88873094e-02\\n-3.49095240e-02 2.28066310e-01 6.70130253e-02 6.20501220e-01\\n-1.72415584e-01 2.73590624e-01 -1.94834247e-01 -1.59259641e-03\\n-7.86950514e-02 1.40784889e-01 2.50235498e-01 1.97083335e-02\\n2.09688634e-01 3.72091979e-02 3.98986816e-01 5.09649038e-01\\n4.81452644e-02 4.27708000e-01 2.37353697e-01 -1.38520095e-02\\n3.19628447e-01 5.18140674e-01 2.48830721e-01 1.79288089e-01\\n-5.46329245e-02 2.34286606e-01 1.31370991e-01 -5.62561564e-02\\n4.93212581e-01 3.49074483e-01 6.64937645e-02 8.27935815e-01\\n2.76108474e-01 4.11038131e-01 5.29971719e-01 -5.89560151e-01\\n-2.87481576e-01 2.62181938e-01 5.14390290e-01 -2.24307090e-01\\n-1.83915887e-02 8.86418819e-02 -2.49171734e-01 3.58812451e-01\\n-4.94286478e-01 -1.42611936e-01 5.19214571e-03 1.49646103e-01\\n3.65920514e-02 -1.87115803e-01 -3.37863564e-01 -5.69242164e-02\\n-8.12890530e-02 1.14821516e-01 -4.45865571e-01 -2.48538092e-01\\n-2.85956979e-01 -7.40103945e-02 -5.68135306e-02 -1.03276350e-01\\n1.20315842e-01 -3.10691357e-01 -4.02096696e-02 -2.27799919e-02\\n3.91716212e-01 -2.66793311e-01 -1.35580033e-01 -9.92377102e-02\\n2.05038175e-01 3.00713867e-01 5.45770109e-01 -1.16883837e-01\\n6.89519048e-02 -1.42826974e-01 -1.73881114e-01 8.33186507e-02\\n1.43051641e-02 1.29887804e-01 1.29729494e-01 2.14920774e-01\\n-2.70766467e-01 -2.13403910e-01 1.92004085e-01 3.33850175e-01\\n-4.80226636e-01 -6.80399314e-02 -1.25760242e-01 2.23670140e-01\\n-2.79381480e-02 1.29504248e-01 -2.66258895e-01 1.70314372e-01\\n-2.64819741e-01 -3.20332706e-01 3.34748477e-01 -3.92053574e-02\\n-4.73633558e-02 1.37564570e-01 3.22856426e-01 1.63980454e-01\\n-1.50034964e-01 -6.38918132e-02 -8.22629109e-02 2.60850549e-01\\n-1.00972950e-01 3.52459103e-01 -1.36665376e-02 -3.84961545e-01\\n-2.29706496e-01 2.25182116e-01 -8.39608833e-02 1.11901775e-01\\n-1.02839261e-01 3.37843090e-01 -2.22788919e-02 5.00880219e-02\\n4.07228440e-01 1.11921400e-01 -3.06955397e-01 -2.50825197e-01\\n-2.12032944e-01 -6.51813298e-02 3.31513770e-02 5.26088141e-02\\n2.28047259e-02 -3.78458411e-01 -1.68757498e-01 -1.24368958e-01\\n-7.51227140e-02 -2.64934540e-01 -5.47827929e-02 8.86953324e-02]]',\n", + " 'Job Informationen Responsibilities: You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Our Requirements: You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization. You are always curious to try out new tools and libraries for the analysis and visualisation of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills SQL MySQL NoSQL Python Python',\n", + " '[\"Communications\", \"Writing\", \"Proactivity\"]',\n", + " '[\"MySQL\", \"Python Server Pages\", \"NoSQL\", \"Tooling\", \"Accessioning\", \"Advising\", \"Agility\", \"Statistics\", \"Machine Learning\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Dataset\", \"Data Visualization\", \"Machine Learning Methods\", \"Machine Learning Algorithms\", \"Scalability\", \"Electronic Data Processing\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\", \"Elasticsearch\"]',\n", + " \"['English', 'Tajik', 'Bengali', 'Akan', 'Marshallese']\"],\n", + " ['30',\n", + " 'backend engineer (remote)',\n", + " 'Geneva',\n", + " 'Computer Hardware & Software',\n", + " 'www.cloudbeds.com',\n", + " '[[-2.37438202e-01 1.64453715e-01 5.52219331e-01 8.29338878e-02\\n6.30516887e-01 -2.26358578e-01 1.35326274e-02 2.61185855e-01\\n3.88141833e-02 -4.46816951e-01 -4.22953106e-02 -2.85479575e-01\\n-8.52398202e-02 9.34937894e-02 1.13459654e-01 3.39835525e-01\\n3.37827176e-01 8.79367441e-02 -1.78707942e-01 3.88477296e-01\\n1.06403098e-01 -1.07792616e-01 4.26965542e-02 7.30996668e-01\\n2.18814611e-01 1.52532104e-02 -1.47497386e-01 -1.63545217e-02\\n-3.17581654e-01 -1.86645672e-01 4.21396345e-01 -9.50774737e-03\\n-1.25468343e-01 -4.70949829e-01 1.03913955e-02 -6.21539280e-02\\n-2.21250236e-01 3.30785736e-02 -7.84138292e-02 1.46070093e-01\\n-5.20705938e-01 -2.02100694e-01 1.29855901e-01 4.34007868e-02\\n-1.38753861e-01 -2.38454670e-01 1.05369061e-01 6.98132068e-03\\n1.21870711e-01 -7.02866688e-02 -4.31882828e-01 2.78917909e-01\\n-3.08348775e-01 -2.10491851e-01 3.19355071e-01 5.29909611e-01\\n4.25455570e-02 -5.37483931e-01 -4.62164879e-01 -3.08997571e-01\\n-3.41256037e-02 -1.59296036e-01 4.99243401e-02 -4.15329337e-01\\n2.63552010e-01 5.93888313e-02 8.10822546e-02 2.88367391e-01\\n-6.94393635e-01 -3.62553895e-02 -5.60833029e-02 -1.34634301e-02\\n-2.36052975e-01 -1.14656173e-01 -2.22439259e-01 -4.31874059e-02\\n-2.23881692e-01 3.77728462e-01 1.24896593e-01 8.75107497e-02\\n-3.19830835e-01 2.82326698e-01 -1.27553850e-01 3.41051877e-01\\n2.54326880e-01 1.90340787e-01 2.83953905e-01 3.89230043e-01\\n-3.82585764e-01 5.06851137e-01 2.70952843e-02 -2.58418351e-01\\n3.89862776e-01 2.68746406e-01 4.07992572e-01 -1.01406246e-01\\n1.31731123e-01 1.66093051e-01 -2.82474905e-01 2.61753142e-01\\n2.21072465e-01 -3.52738440e-01 7.96526000e-02 -1.75431054e-02\\n3.28565389e-03 8.19252618e-03 3.89602184e-02 1.54243231e-01\\n-3.18525285e-01 4.26026672e-01 1.48478359e-01 -1.87146530e-01\\n-1.21417932e-01 -4.64020610e-01 -6.53359964e-02 3.80939059e-02\\n-3.42295803e-02 4.63561006e-02 3.06231350e-01 5.85944280e-02\\n2.39401862e-01 -1.47048347e-02 1.44916669e-01 7.73820758e-01\\n-7.53295869e-02 1.34592175e-01 -2.25522369e-01 2.73689687e-01\\n1.89331055e-01 -2.01917186e-01 2.45423228e-01 2.18332946e-01\\n1.19469270e-01 -4.99224998e-02 -1.87623560e-01 3.28936875e-01\\n-4.28804494e-02 -1.44963503e-01 -1.43067300e-01 1.35575145e-01\\n1.75385438e-02 -4.14872587e-01 5.69670022e-01 1.50039598e-01\\n2.17004180e-01 -5.69246002e-02 1.48810923e-01 -2.04011291e-01\\n-9.02143568e-02 1.68986440e-01 6.09499440e-02 2.74314582e-01\\n-2.63013750e-01 -3.09828669e-01 -5.79806790e-02 1.75494298e-01\\n-4.00856555e-01 7.41052553e-02 -1.23617485e-01 -1.63131118e-01\\n2.43196115e-01 1.03194356e-01 -3.90342057e-01 1.22169018e-01\\n-1.40607387e-01 -6.51963353e-02 -6.91460148e-02 4.11965609e-01\\n-1.06008552e-01 3.02128792e-01 -1.83187798e-02 3.09701636e-02\\n5.96958280e-01 2.28886664e-01 2.19419390e-01 -7.95033872e-02\\n3.37720335e-01 -9.39052776e-02 1.67107493e-01 1.76196814e-01\\n-7.46954799e-01 3.06014895e-01 -5.50729334e-02 -2.48311341e-01\\n1.11535683e-01 -5.51914312e-02 3.07155192e-01 -3.77573669e-01\\n-8.98119248e-03 -2.41166368e-01 -4.41553652e-01 -3.42777610e-01\\n-2.04692334e-01 1.53668197e-02 2.65197605e-01 -4.29992259e-01\\n-4.05082479e-02 2.56130695e-01 -4.91451800e-01 -8.55291933e-02\\n2.00294703e-01 2.05953687e-01 1.43629879e-01 1.32454082e-01\\n-1.23325810e-01 -5.92500925e-01 -6.53530210e-02 -4.06494021e-01\\n-3.85135084e-01 4.83919829e-02 -3.63627017e-01 1.22131519e-01\\n4.67552543e-02 1.10054374e-01 -1.31034240e-01 8.31194893e-02\\n-1.68551028e-01 -9.52577367e-02 1.40878633e-01 6.30907565e-02\\n2.72914201e-01 4.00885679e-02 -3.68507981e-01 4.10271198e-01\\n-3.95987451e-01 6.16416752e-01 1.16838187e-01 -8.65761876e-01\\n5.51961839e-01 2.92342007e-01 -7.93437213e-02 -3.87044609e-01\\n3.60540271e-01 -3.98455203e-01 5.78172319e-02 9.95343700e-02\\n-2.57599086e-01 -2.10118681e-01 2.31396630e-01 -1.46483541e-01\\n-3.20444167e-01 4.38293010e-01 1.73231572e-01 3.95178376e-03\\n1.97444841e-01 -2.32798398e-01 -1.65833849e-02 -2.05078647e-02\\n-4.73893732e-02 -1.89121485e-01 -4.46398199e-01 -1.87334418e-02\\n-1.14967689e-01 -4.09922034e-01 -1.24662243e-01 -3.40234101e-01\\n-2.06589907e-01 -3.11927080e-01 -2.85422683e-01 1.80489540e-01\\n2.39722013e-01 1.26263618e-01 1.44628882e-02 4.17299047e-02\\n-9.38667879e-02 -7.52984107e-01 2.03405153e-02 1.38758987e-01\\n4.11944449e-01 2.29983911e-01 4.42021415e-02 -5.08233346e-03\\n1.06271207e-01 6.28485560e-01 -3.78581733e-01 -2.02066422e-01\\n1.78559735e-01 1.55246586e-01 -5.51441275e-02 -1.49414092e-01\\n5.97745851e-02 3.69063258e-01 -1.97475553e-01 -6.67145252e-02\\n-4.50249277e-02 -1.83295161e-01 4.76859689e-01 -9.19517428e-02\\n-3.65907073e-01 -1.35477707e-01 5.79113439e-02 1.18424676e-01\\n-4.82371628e-01 -1.49720699e-01 4.88511533e-01 1.66384250e-01\\n1.68203250e-01 1.67311668e-01 1.45785827e-02 4.05773753e-04\\n-1.94300413e-01 -4.11562413e-01 2.23406091e-01 1.56195670e-01\\n1.00123562e-01 1.25903875e-01 -5.16594611e-02 -7.27670431e-01\\n-3.52693510e+00 -1.27021596e-01 1.64582804e-01 -2.07525834e-01\\n1.42239839e-01 -1.02824688e-01 1.58445295e-02 -8.89638215e-02\\n-3.02290708e-01 2.06457436e-01 -9.78088081e-02 -1.78694963e-01\\n4.70993891e-02 1.44029468e-01 1.18931815e-01 1.42483830e-01\\n1.25071719e-01 -2.30170280e-01 -8.94343555e-02 2.17715010e-01\\n-1.48576796e-01 -6.70561612e-01 2.10720554e-01 -9.23234969e-03\\n2.81119108e-01 2.90713549e-01 -3.87507349e-01 -7.63954595e-02\\n-2.53450751e-01 -1.29269972e-01 -2.37444304e-02 -2.15745732e-01\\n-1.71838373e-01 2.52476364e-01 1.38779297e-01 -8.65153670e-02\\n1.52016103e-01 -3.95836651e-01 -1.32008314e-01 -4.44458544e-01\\n1.38736010e-01 -4.91270542e-01 -2.37363316e-02 -1.47325009e-01\\n7.06476450e-01 -2.87259370e-01 1.86603099e-01 1.00004368e-01\\n2.24885881e-01 9.79902297e-02 1.63546219e-01 -2.63978355e-03\\n-1.60454705e-01 -6.00785129e-02 -4.37575839e-02 -2.51522303e-01\\n5.07676601e-01 3.97802591e-01 -1.78873882e-01 6.83942437e-03\\n1.00536369e-01 -2.28736520e-01 -3.25883269e-01 -2.30970427e-01\\n-1.09432526e-01 -1.54290497e-01 -6.72488689e-01 -4.32955086e-01\\n-3.04333985e-01 -8.53676349e-02 -1.71274573e-01 6.80752277e-01\\n-3.08563352e-01 -4.15827900e-01 8.05783868e-02 -5.53429246e-01\\n1.81404501e-01 -2.19514936e-01 2.61825277e-03 -2.16149017e-01\\n-1.40854180e-01 -4.88463879e-01 6.34322092e-02 -3.98670882e-02\\n-1.83961973e-01 -3.08264732e-01 1.65530480e-02 -6.04933575e-02\\n-2.23654240e-01 -4.97442126e-01 3.54874998e-01 1.63324207e-01\\n2.91445643e-01 -1.00801177e-02 3.51461649e-01 -1.35373902e-02\\n3.62198770e-01 1.09816575e-02 8.41984451e-02 -3.19987297e-01\\n7.75796846e-02 -7.83733279e-02 4.57390308e-01 -1.71565846e-01\\n-2.20009722e-02 1.75653785e-01 -2.85711050e-01 -8.78908932e-02\\n4.05409276e-01 -1.03000358e-01 -3.81609201e-02 -5.50796576e-02\\n2.73658931e-01 -3.03317934e-01 -1.93920180e-01 1.36616290e-01\\n1.14983633e-01 6.93860173e-01 -3.72614972e-02 -3.50331873e-01\\n-1.39186412e-01 4.90609437e-01 -4.75504249e-02 1.15174301e-01\\n-2.45720837e-02 1.13082737e-01 -1.33453101e-01 2.39675730e-01\\n1.31942287e-01 -2.43114352e-01 -1.98355675e-01 -1.12177350e-01\\n-1.02080107e-02 1.41228497e-01 1.81654349e-01 5.88618331e-02\\n-7.01272637e-02 -3.53334010e-01 -1.14859596e-01 1.04746580e-01\\n1.96543723e-01 4.06517148e-01 2.14700460e-01 -1.48899615e-01\\n7.63615593e-02 3.94972801e-01 -4.36655954e-02 1.72780439e-01\\n-2.54681945e-01 1.56393379e-01 -5.72375178e-01 -2.27884918e-01\\n-2.37568706e-01 -3.76312256e-01 4.07628119e-02 3.04899395e-01\\n1.22150972e-01 3.75859737e-02 3.99571843e-02 -4.83773828e-01\\n2.62341738e-01 6.69215471e-02 2.09206626e-01 1.23929560e-01\\n-1.41153440e-01 4.56141829e-01 4.04746085e-02 -1.74152210e-01\\n-2.18861580e-01 2.91201100e-02 -7.49180168e-02 -1.83312505e-01\\n1.30652994e-01 -4.27096844e-01 -1.02101080e-01 3.47151637e-01\\n1.13082677e-01 -3.25393975e-01 -1.45797357e-01 3.80977869e-01\\n-3.99843603e-03 -2.07485661e-01 -2.78495729e-01 -6.96085617e-02\\n2.48044461e-01 2.08934471e-02 2.72294462e-01 -4.16340441e-01\\n-7.96136856e-02 1.54046202e-02 5.27065247e-02 3.85391831e-01\\n-7.89215416e-02 5.30745871e-02 -2.14234903e-01 -1.94252998e-01\\n4.75374073e-01 -3.16304490e-02 -1.82310343e-01 -7.04111829e-02\\n1.09608993e-01 -2.28167579e-01 -5.78554034e-01 7.87403136e-02\\n1.00318566e-01 -2.32283264e-01 1.20484486e-01 1.16129607e-01\\n1.26641318e-01 1.06162190e-01 -4.93191421e-01 -1.94129646e-01\\n-3.92683089e-01 -8.97955149e-02 1.36117876e-01 -3.40320230e-01\\n-2.31034923e-02 -1.32603779e-01 -4.91690069e-01 1.94778755e-01\\n-2.70589769e-01 -1.81372583e-01 1.08699352e-01 6.23190813e-02\\n-3.74486417e-01 -2.83851549e-02 -3.83534729e-02 2.02338248e-01\\n-4.17369485e-01 -3.35129082e-01 6.92480654e-02 -1.03442061e+00\\n2.61496753e-01 4.06804755e-02 -5.68372831e-02 5.94776049e-02\\n-1.98456019e-01 -6.23942196e-01 1.53442726e-01 -4.11813140e-01\\n-1.57596946e-01 -6.80301636e-02 -1.88719064e-01 -2.20829487e-01\\n8.96365196e-02 -1.09553248e-01 -4.13841158e-01 3.34128857e-01\\n-2.82549024e-01 3.36501300e-01 -2.42287546e-01 -9.09974352e-02\\n2.20536292e-02 -2.02952713e-01 9.83475745e-02 -4.36113536e-01\\n-4.06237900e-01 -2.00283825e-01 -3.36773485e-01 -2.46086419e-01\\n-1.44270897e-01 -2.85018235e-01 -1.07258357e-01 9.79108065e-02\\n3.48638833e-01 1.73311859e-01 -9.56234634e-02 -3.19048911e-01\\n1.34409331e-02 -5.17864645e-01 5.27262911e-02 -1.05529435e-01\\n-2.85752434e-02 -1.60638869e-01 2.08344579e-01 4.55828495e-02\\n1.73591390e-01 -4.86050278e-01 3.96036237e-01 -3.23240221e-01\\n-3.32494736e-01 -1.59460440e-01 -2.42485963e-02 1.19953886e-01\\n3.03876162e-01 -5.05872190e-01 4.00927290e-02 2.51342714e-01\\n1.04941532e-01 1.11025311e-01 1.71807066e-01 -5.77476732e-02\\n-2.17710845e-02 3.46770644e-01 -3.07772934e-01 8.50217566e-02\\n7.44972944e-01 1.87502250e-01 2.24861987e-02 2.06231952e-01\\n2.70456910e-01 3.77709806e-01 4.37778115e-01 -6.03101477e-02\\n-2.78448407e-03 2.12607458e-01 9.84358415e-02 -5.64558566e-01\\n2.50606835e-02 4.93392833e-02 -9.21206251e-02 -3.39382827e-01\\n6.81782186e-01 4.58209515e-01 -4.34878409e-01 -1.46970481e-01\\n-2.22289592e-01 -1.37030959e-01 2.84087420e-01 -3.06903403e-02\\n5.79833388e-02 -6.87631667e-02 4.91507828e-01 -6.12416789e-02\\n2.77997077e-01 6.16022050e-01 -2.62871593e-01 -3.41442049e-01\\n-3.94786857e-02 2.57422835e-01 1.10186487e-01 4.69867527e-01\\n-1.82898551e-01 1.98270917e-01 -4.53520566e-02 -1.59312654e-02\\n-1.94616243e-01 3.34175348e-01 9.31210592e-02 6.22001439e-02\\n2.75395036e-01 -1.88611876e-02 4.38033640e-01 4.24670160e-01\\n1.76002532e-01 4.02260900e-01 3.39033127e-01 2.77310759e-02\\n4.77531463e-01 5.43957949e-01 2.87744999e-01 8.35512206e-02\\n3.67180854e-02 1.82089433e-01 1.93613261e-01 -1.18982367e-01\\n3.63840222e-01 4.37273026e-01 1.28301784e-01 8.38559926e-01\\n3.71325552e-01 2.65362680e-01 7.69841671e-01 -6.17786646e-01\\n-3.15413296e-01 1.78180076e-02 4.65851963e-01 -3.10252249e-01\\n7.55467489e-02 1.77081496e-01 -1.11093439e-01 4.19397891e-01\\n-4.45769072e-01 -1.73145741e-01 -1.25115551e-03 1.80815816e-01\\n5.09589724e-02 -1.70110002e-01 -2.68046856e-01 1.00304879e-01\\n-9.82537121e-02 -1.24660335e-01 -2.90080726e-01 -6.12355396e-02\\n-1.82874799e-01 -2.25971155e-02 -9.93579552e-02 -4.15624194e-02\\n-1.32883685e-02 -3.57172281e-01 -1.01319082e-01 -8.66630450e-02\\n1.99608073e-01 -1.52761877e-01 -5.49258292e-02 -1.71554938e-01\\n3.52865458e-01 1.50636345e-01 4.35364544e-01 -4.35180664e-02\\n1.79277465e-01 -2.20296085e-01 -2.34695613e-01 1.63756698e-01\\n6.00746609e-02 1.21321246e-01 7.79438093e-02 2.30130360e-01\\n-2.26379946e-01 -4.54919226e-02 1.28356263e-01 4.02705699e-01\\n-3.54547501e-01 -8.97025615e-02 -1.37103230e-01 1.50689691e-01\\n7.51556605e-02 1.26405120e-01 -2.29528308e-01 -2.24244352e-02\\n-2.24290848e-01 -4.94149685e-01 2.62175202e-01 -1.55046344e-01\\n-7.67708570e-02 7.69322813e-02 2.66492128e-01 1.12663329e-01\\n-2.77934968e-01 4.68809232e-02 4.20019031e-03 4.00658287e-02\\n-2.92207822e-02 3.67003322e-01 -4.46951762e-02 -1.93358362e-01\\n-2.68662423e-01 2.73491651e-01 -1.10907935e-01 1.29315391e-01\\n2.20322609e-03 3.02577019e-01 -1.41780719e-01 1.25649780e-01\\n3.17628980e-01 1.48806646e-02 -2.69339532e-01 -2.78182507e-01\\n-2.71294355e-01 -9.84257460e-02 4.71259318e-02 -7.58180022e-02\\n1.16662093e-01 -4.46192563e-01 -1.96538996e-02 -7.43442029e-02\\n-5.70277423e-02 -2.49757096e-01 -3.08980867e-02 -8.08531493e-02]]',\n", + " \"Cloudbeds is a travel industry startup that works to make the world a more welcome place. We make advanced cloud-based hospitality software for hotels, hostels, vacation rentals, and groups that manages reservations and guests, distributes room availability, sells inventory, and collects payments. Our hundreds of team members are distributed across 31 countries and, altogether, we speak 17 languages. How do we do it? On a #remotefirst platform that allows every member of our team to work from wherever they are around the globe. We're looking for people who want to disrupt the travel industry and love to travel as much as we do. As a Senior Backend Engineer, you will implement new architectures, features, and best practices to scale the Cloudbeds platform. You will contribute to new efforts in serverless and service-oriented architectures, leveraging the latest, cutting edge technologies. As a Senior Backend Engineer, your goal is to deliver an exceptional experience to our customers all around the world with quality, performance, and scalability top of mind. Location: Remote What You Will Do Design architectures for new services and customer-facing features.Implement new application features and improvements.Define internal standards for new design practices.Update our existing architecture to scale with our fast-growing customer base.Refactor legacy code using the latest design patterns and practices.Discuss and design complex technical concepts and requirements with both technical and non-technical stakeholders.Work in and understand a large code repository.Write clean, well-documented, and beautiful code. You'll Succeed With 7+ years of web application software engineering experience.5+ years of PHP back-end web application software engineering experience.Strong knowledge of OOP design patterns, best practices, and technologies.Strong knowledge of LAMP stack technologies.Strong knowledge of NoSQL technologies (Redis, Memcached).Strong knowledge of automated testing methodologies (TDD, BDD).Strong teamwork, leadership, and time management skills.Experience with agile software development (Scrum, Kanban).Experience with API integrations via REST or GraphQL.Excellent problem solving and debugging skills.Passion for excellent technical documentation.Proficiency in English verbal and written skills. Nice to Have Experience with Domain-driven Design (DDD).Experience with MQ systems (rabbitmq/zeromq/kafka).Experience with BPMN 2.0 and engines (Camunda, Zeebe, etc).Experience with Codeigniter and Symfony PHP frameworks.Experience developing web application front-ends (HTML, CSS, Javascript, vue.js).Experience with Node.js or Python.Experience with the Serverless Framework.Experience with code and database optimization and profiling.Experience implementing Sagas for long-running transactions.Experience developing in AWS (API Gateway, Lambda, DynamoDB, RDS).Experience with Atlassian products [JIRA/Confluence/BitBucket].Passion for SOLID, DRY, and KISS principles. Our company culture supports flexible working schedules with an unlimited PTO policy and the opportunity to travel and work remotely with great people. To make it easy for our team to travel we offer 2 corporate apartment accommodations near our San Diego and Sao Paulo offices. At Cloudbeds we dedicated to your personal and professional development. You will have access to over 10,000 courses within LinkedIn Learning when you join our team for your unique individual growth! If you think you have the skills and passion, we'll give you the support and opportunity to thrive in your career. If you would like to be considered for the role, we would love to hear from you! Company Awards to Check Out! Inc. Best Places to Work (2017 & 2018)Inc. 500 Fastest Growing Companies (2018)Connect MIP Award (Technology)Best Places to Work | Inc Magazine (2017 & 2018)Best Places to Work | HotelTechReport (2018 & 2019)Start-Ups to Watch in 2018 | Forbes\",\n", + " '[\"Reservations\", \"Writing\", \"Leadership\", \"Teamwork\", \"Management\", \"Hospitality\", \"Problem Solving\", \"Scheduling\", \"Integration\", \"Time Management\"]',\n", + " '[\"Bitbucket\", \"Web Applications\", \"Storage Area Network (SAN)\", \"Camunda\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Accessioning\", \"Cascading Style Sheets (CSS)\", \"Vue.js\", \"Collections\", \"Service-Oriented Architecture\", \"Automated Testing Framework\", \"LAMP (Software Bundle)\", \"Good Agricultural Practices\", \"Memcached\", \"Distributed Design Patterns\", \"Industrialization\", \"Scale (Map)\", \"ZeroMQ (Concurrent Programming Libraries)\", \"Debugging\", \"Node.js\", \"Agile Edge Technologies\", \"Architectural Design\", \"PHP Frameworks\", \"Test Automation\", \"Scrum (Software Development)\", \"GraphQL\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"PHP (Scripting Language)\", \"Amazon DynamoDB\", \"Agile Software Development\", \"Ddd Service\", \"RabbitMQ\", \"Domain Driven Design\", \"Serverless Computing\", \"International Standards\", \"Personalization\", \"CodeIgniter\", \"JavaScript (Programming Language)\", \"Scalability\", \"Symfony\", \"Technical Documentation\", \"Redis\", \"API Gateway\", \"Atlassian Confluence\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Software Development\", \"JIRA Studio\", \"Custom Backend\", \"Application Programming Interface (API)\", \"Profiling (Computer Programming)\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English', 'Fijian']\"],\n", + " ['75',\n", + " 'business application analyst',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.95008665e-01 3.99013340e-01 4.29643035e-01 6.23621792e-02\\n6.08087063e-01 6.52238876e-02 1.04930684e-01 1.14952393e-01\\n7.00906217e-02 -2.68205762e-01 -1.38870880e-01 -1.20139062e-01\\n-5.62866032e-02 -7.93280452e-02 1.21173106e-01 4.18069065e-01\\n3.15848827e-01 -5.43995164e-02 -3.28657031e-03 2.79873222e-01\\n-5.72428331e-02 8.00456665e-03 2.15325020e-02 5.92675447e-01\\n4.05653894e-01 1.20013863e-01 -3.50275636e-02 1.12025894e-01\\n-2.48493224e-01 -3.62214535e-01 3.75085354e-01 3.69461626e-02\\n-2.33532578e-01 -3.03215653e-01 6.88816160e-02 1.64522588e-01\\n-1.85275301e-01 1.21623948e-02 -1.24451324e-01 3.28230113e-03\\n-4.66755688e-01 -2.48992056e-01 -4.48130071e-02 -1.80105090e-01\\n-3.70480001e-01 -2.55145013e-01 2.06496492e-01 -2.15973467e-01\\n3.28031704e-02 2.48962641e-02 -5.00505447e-01 3.85336757e-01\\n-2.19557941e-01 -1.46872059e-01 3.15424025e-01 6.28724456e-01\\n1.65173799e-01 -5.98815799e-01 -4.74887490e-01 -3.30780447e-01\\n1.29434094e-01 -1.59070551e-01 1.68393940e-01 -2.64650136e-02\\n4.71206695e-01 -2.15121865e-01 -2.69760732e-02 2.99594939e-01\\n-6.15362763e-01 -1.15436874e-02 -5.40289640e-01 1.83903314e-02\\n-3.03136885e-01 5.53766713e-02 -4.26471055e-01 -2.40658224e-01\\n-6.99507166e-03 4.13340658e-01 1.20811388e-02 7.35970587e-02\\n-1.71227008e-01 3.18997502e-01 -1.79942995e-01 1.24712914e-01\\n2.69173622e-01 2.31143702e-02 4.02183950e-01 2.32091874e-01\\n-4.57810193e-01 5.29850721e-01 3.74625385e-01 -3.48989129e-01\\n2.59545594e-01 1.34253064e-02 2.31121942e-01 2.04598159e-01\\n1.49972821e-02 2.93230921e-01 -1.39868483e-02 9.22784302e-03\\n7.95998573e-02 -6.44016117e-02 -2.07560703e-01 -9.70576480e-02\\n-5.49077168e-02 -2.28717700e-01 6.58551455e-02 1.34303480e-01\\n-4.52967733e-01 4.46573734e-01 8.08416307e-02 -2.33199641e-01\\n-5.34538068e-02 -3.31894696e-01 -1.15534864e-01 -1.13618165e-01\\n-1.22120567e-01 9.63859782e-02 2.09814861e-01 3.08730274e-01\\n2.74116784e-01 6.90218508e-02 1.88973278e-01 7.02065170e-01\\n6.16038144e-02 1.22587457e-01 -8.43458250e-03 2.99832821e-01\\n5.18384874e-02 -2.89068192e-01 1.17042631e-01 2.91722059e-01\\n-2.23484665e-01 -6.48168400e-02 -3.67855966e-01 1.77600279e-01\\n-1.94459617e-01 -1.14878140e-01 -2.18792319e-01 2.13929236e-01\\n-2.00481564e-01 -6.06310368e-01 3.66872668e-01 -5.05070537e-02\\n9.99847203e-02 -1.49258733e-01 3.67650762e-03 -2.67140083e-02\\n-2.41359979e-01 3.47323537e-01 1.75061330e-01 3.08430970e-01\\n-2.97674477e-01 -2.55726039e-01 -9.77141187e-02 3.67457777e-01\\n-1.13222837e-01 8.72353166e-02 -5.40520310e-01 -2.04681039e-01\\n3.79402757e-01 2.12867528e-01 -5.21773994e-01 2.86651731e-01\\n-5.87734487e-03 -9.59016234e-02 -1.91565380e-01 4.30359900e-01\\n3.59341130e-02 -4.29353565e-02 -4.49364595e-02 -1.73897684e-01\\n5.46396017e-01 1.60005078e-01 1.95677131e-01 -7.37396628e-02\\n3.58966947e-01 -1.32059127e-01 2.50623226e-01 -6.79093227e-03\\n-5.72852254e-01 4.15170729e-01 -1.74482450e-01 3.14541906e-03\\n-6.03997782e-02 -3.82388160e-02 5.31919897e-01 -3.52441043e-01\\n2.11916752e-02 -2.08766580e-01 -4.14281428e-01 -4.38057303e-01\\n-1.38663471e-01 -3.98902483e-02 4.54661429e-01 -4.58312869e-01\\n5.53567521e-03 1.29119918e-01 -5.71516037e-01 -1.85264051e-01\\n4.02185559e-01 1.87568933e-01 2.13938653e-01 1.50399074e-01\\n-9.81053412e-02 -4.81393695e-01 1.11682698e-01 -5.46461701e-01\\n-3.75030160e-01 2.44040415e-01 -2.47653693e-01 6.63139895e-02\\n1.80318117e-01 -6.35833014e-03 -3.96272466e-02 1.30210929e-02\\n-3.61765027e-01 -5.96959107e-02 2.44559735e-01 -5.10137081e-02\\n1.82738453e-01 1.76333308e-01 -2.88261354e-01 6.08550787e-01\\n-2.95774102e-01 3.35119009e-01 1.87874585e-01 -9.53545034e-01\\n4.56823647e-01 1.94832981e-01 -3.92278694e-02 -3.21594030e-01\\n2.93811142e-01 -3.59783113e-01 5.99214900e-03 1.76124096e-01\\n-1.87629536e-01 -1.09368242e-01 2.09992945e-01 -1.58685684e-01\\n-3.12051386e-01 6.60686314e-01 1.05416395e-01 1.07662939e-02\\n2.86886156e-01 -1.42430902e-01 -3.27407420e-01 -4.90555428e-02\\n-3.45832944e-01 -1.50670335e-01 -5.37451744e-01 1.14824072e-01\\n-2.77052037e-02 -5.12728751e-01 -1.22580498e-01 -5.49357653e-01\\n-2.18824804e-01 -4.69523907e-01 -2.82027304e-01 2.13616759e-01\\n6.35256767e-02 1.39032960e-01 -1.55497581e-01 2.79446207e-02\\n-4.28187400e-02 -6.23596072e-01 -2.66356803e-02 1.49163604e-01\\n2.00827986e-01 4.23853099e-01 1.98534369e-01 -2.79200673e-01\\n3.93205695e-02 5.08246005e-01 -4.05801445e-01 -3.40488493e-01\\n3.75211567e-01 1.54240757e-01 -6.00795001e-02 -1.78934500e-01\\n2.73097940e-02 2.95856416e-01 -1.80580080e-01 5.62755466e-02\\n1.25635564e-01 -9.06742215e-02 2.75325835e-01 -2.66111314e-01\\n-2.56982237e-01 -1.17668010e-01 -1.43375665e-01 3.09205562e-01\\n-5.11835814e-01 -3.01409364e-01 6.02433622e-01 1.83108971e-01\\n-4.19602580e-02 3.06000352e-01 1.99281752e-01 7.44044175e-03\\n-3.36609691e-01 -1.70412421e-01 2.61179686e-01 1.76363379e-01\\n1.30626291e-01 -4.54344749e-02 -3.01077724e-01 -5.49743652e-01\\n-3.55569029e+00 -2.82751650e-01 5.50696328e-02 -2.48541459e-01\\n1.85145915e-01 -4.22971770e-02 2.74901390e-01 -2.18013488e-02\\n-2.70694554e-01 7.35134333e-02 -2.01510012e-01 -8.64264816e-02\\n-3.46118249e-02 3.53509903e-01 1.68244332e-01 1.43488690e-01\\n1.93885267e-02 -2.96424508e-01 1.26230046e-01 4.56099212e-01\\n-1.37910172e-01 -8.56148124e-01 7.47311115e-02 -7.26257861e-02\\n1.17508277e-01 1.38784558e-01 -4.04958606e-01 -1.12103790e-01\\n-3.46385002e-01 -1.60494342e-01 6.99183345e-02 -1.60134003e-01\\n-2.52299368e-01 2.49085829e-01 1.06362417e-01 -8.64721388e-02\\n-3.53455804e-02 -3.59373569e-01 -2.24601962e-02 -6.53341055e-01\\n3.26970555e-02 -6.95949554e-01 1.48876294e-01 3.61051299e-02\\n4.64770705e-01 -1.56582966e-02 2.45510906e-01 1.63776100e-01\\n1.69339389e-01 2.33648822e-01 1.70241073e-01 -8.08064919e-03\\n-3.03983480e-01 -2.80499369e-01 -1.99072599e-01 -2.36861020e-01\\n6.57795072e-01 1.94023579e-01 -1.99919999e-01 3.74202840e-02\\n-4.98504452e-02 -3.43164265e-01 -4.75379229e-01 -4.13300067e-01\\n-1.74542099e-01 1.01825230e-01 -6.86987460e-01 -4.31307584e-01\\n-2.44460553e-01 -1.73468426e-01 -1.26737446e-01 6.47513747e-01\\n-4.35722947e-01 -2.20222995e-01 -2.16420054e-01 -5.94370723e-01\\n2.52624780e-01 -8.20131153e-02 8.62736106e-02 -1.86010838e-01\\n-3.27403426e-01 -3.50784421e-01 1.98355496e-01 -2.75172293e-03\\n-2.44776979e-01 1.02648735e-02 1.77890003e-01 -1.08397275e-01\\n-3.86105478e-01 -3.74359012e-01 4.77235377e-01 4.26571816e-03\\n4.57176685e-01 6.10954463e-02 3.10741782e-01 1.59194395e-02\\n5.06574988e-01 -8.55695084e-02 9.16682854e-02 -5.37249565e-01\\n2.93198694e-02 6.69127926e-02 6.19441628e-01 -1.38995737e-01\\n-1.60193462e-02 4.74740826e-02 -2.56839752e-01 -2.49762386e-02\\n5.38749158e-01 -1.63856179e-01 1.38494700e-01 -3.35919678e-01\\n2.67729521e-01 -4.32539463e-01 -3.34229290e-01 6.38738275e-02\\n7.81847909e-02 7.43538260e-01 1.29113436e-01 -3.38600814e-01\\n-2.58372545e-01 3.27801645e-01 -1.52215630e-01 -7.24039972e-02\\n-2.09616601e-01 1.41601801e-01 -2.36046284e-01 2.61437654e-01\\n1.76726252e-01 3.02040782e-02 -2.80137837e-01 3.49889025e-02\\n-1.48878694e-01 1.18181966e-01 2.62158394e-01 1.75832957e-01\\n3.65262851e-03 -2.22498298e-01 -6.84153587e-02 1.14416696e-01\\n2.34426767e-01 3.24253023e-01 2.33186617e-01 -3.89072716e-01\\n2.86060870e-02 1.03369638e-01 -2.36514941e-01 2.98341453e-01\\n-1.03237309e-01 2.26938367e-01 -5.21813989e-01 -2.76915312e-01\\n-2.54761577e-01 -2.65493602e-01 2.29397453e-02 4.41016793e-01\\n1.09912843e-01 -2.51434445e-01 1.10836118e-01 -5.09543180e-01\\n3.66670161e-01 -5.71772903e-02 2.26971194e-01 4.31929063e-03\\n-1.36781614e-02 7.32295930e-01 7.96074718e-02 -2.41586313e-01\\n-5.31088933e-02 1.55605733e-01 -2.05185592e-01 -3.17513853e-01\\n3.06285396e-02 -3.52946162e-01 -1.32428646e-01 4.91699934e-01\\n7.55733997e-02 3.69209722e-02 -1.30102739e-01 4.33190167e-01\\n-6.32488281e-02 -2.58107305e-01 -2.31630683e-01 -1.81962162e-01\\n2.35331021e-02 7.26722330e-02 2.61114061e-01 -5.45908093e-01\\n3.81588191e-02 -1.29535586e-01 1.75660253e-01 4.11845297e-01\\n1.14919640e-01 1.88628212e-02 1.49087429e-01 -1.69886172e-01\\n5.05914688e-01 2.76735544e-01 -1.43848300e-01 -8.47352445e-02\\n1.94630563e-01 -2.57028848e-01 -3.90511125e-01 -3.60201709e-02\\n-9.97323319e-02 -1.41303703e-01 1.43579289e-01 2.12300956e-01\\n1.71816796e-01 3.36324200e-02 -4.70748782e-01 -1.37881815e-01\\n-4.19336766e-01 8.37518796e-02 -2.39282846e-01 -8.23341370e-01\\n6.73615187e-02 -3.51095833e-02 -6.13993406e-01 2.21830845e-01\\n-6.80322275e-02 1.18058249e-01 1.02512687e-01 1.82622120e-01\\n-1.90888226e-01 -3.03844094e-01 2.23368987e-01 -1.36131853e-01\\n-3.05934250e-01 -3.46114695e-01 2.39739753e-02 -9.21545088e-01\\n2.76762545e-01 7.67990723e-02 -1.86048716e-01 3.07146758e-02\\n1.19301431e-01 -7.44753361e-01 3.17702353e-01 -2.37914801e-01\\n-1.33371681e-01 1.43889353e-01 -3.11614990e-01 -3.48008454e-01\\n1.53147981e-01 1.45591050e-03 -1.91140026e-01 2.88545072e-01\\n-3.08448493e-01 6.43162549e-01 2.17807382e-01 1.92919865e-01\\n2.00574994e-01 -2.33969927e-01 -1.39634572e-02 -3.33765209e-01\\n-4.21945453e-01 -2.28561282e-01 -1.99784607e-01 -2.11759627e-01\\n-5.40009476e-02 -1.53570965e-01 -1.05935186e-01 -1.13392070e-01\\n4.73212868e-01 3.49675536e-01 -2.36959338e-01 4.88043763e-02\\n-3.90611514e-02 -2.73881495e-01 2.26684019e-01 -2.59959221e-01\\n-6.96395934e-02 -2.72628725e-01 4.93727446e-01 -1.14674158e-01\\n2.04172567e-01 -1.64891273e-01 6.67558193e-01 -1.67972893e-01\\n-3.62935126e-01 -1.09879233e-01 1.50007069e-01 4.50675115e-02\\n2.88204223e-01 -6.10142827e-01 5.38021401e-02 3.56592685e-01\\n9.64097083e-02 5.85207455e-02 3.72008562e-01 -1.59248084e-01\\n-2.30890840e-01 2.10392445e-01 -6.78520679e-01 1.51378185e-01\\n7.01343715e-01 2.80828059e-01 1.27947688e-01 1.64826989e-01\\n5.65739870e-02 1.68446481e-01 5.30752659e-01 7.68702477e-02\\n-2.02321798e-01 5.14730573e-01 1.92759395e-01 -7.11550891e-01\\n-3.36884797e-01 -1.59894601e-01 -3.37813422e-03 -2.42597044e-01\\n6.20835900e-01 1.33443847e-01 -4.70507681e-01 -3.80021691e-01\\n-3.76374185e-01 -2.80495912e-01 3.32177192e-01 5.52777313e-02\\n1.24651492e-01 -1.00803256e-01 5.91643929e-01 -3.90242860e-02\\n3.01796436e-01 4.75176245e-01 -1.80343539e-02 -1.34569585e-01\\n-5.11511564e-02 2.42801830e-01 1.28010020e-01 3.61895084e-01\\n-5.64892739e-02 1.49931237e-01 3.91129851e-02 1.27426535e-01\\n-3.17187309e-01 -5.31696826e-02 2.20459417e-01 -1.27257854e-02\\n1.10019527e-01 2.12586641e-01 5.36637545e-01 3.36952329e-01\\n2.47376382e-01 4.84607428e-01 3.80346388e-01 -2.83900667e-02\\n4.39093977e-01 6.83360755e-01 1.82947829e-01 -1.08023643e-01\\n1.34323090e-02 1.19458131e-01 1.03729367e-01 -3.07833347e-02\\n4.12101150e-01 5.54117441e-01 9.07534659e-02 7.66765833e-01\\n3.47824782e-01 3.59968692e-01 5.83235145e-01 -5.53700447e-01\\n-1.98314428e-01 5.60754687e-02 5.19675672e-01 -2.61983693e-01\\n1.31907567e-01 1.67795941e-01 -2.51441777e-01 2.32583821e-01\\n-4.59881693e-01 -2.24262774e-01 -5.18954396e-02 -1.45882815e-01\\n2.27639586e-01 -1.86824724e-02 4.49294001e-02 1.42247528e-01\\n-3.87051068e-02 -2.37777084e-01 -2.11852521e-01 -3.39132100e-01\\n-3.74523491e-01 5.73425647e-03 8.44365954e-02 -6.97888136e-02\\n-6.77605197e-02 -2.72388935e-01 -7.20749199e-02 -1.55324727e-01\\n2.70112395e-01 -1.10158734e-01 -3.34998935e-01 -1.07086696e-01\\n1.45143438e-02 3.06369156e-01 9.21783447e-01 -1.77824765e-01\\n1.66461051e-01 -1.78993165e-01 -1.86832607e-01 -2.54484080e-02\\n1.61697477e-01 1.01951584e-01 -2.91782729e-02 6.06689692e-01\\n-2.57903636e-01 -4.82439697e-02 1.52224541e-01 2.31140733e-01\\n-2.43201107e-01 1.32235307e-02 -5.22389561e-02 5.44080250e-02\\n4.37594205e-03 1.22165650e-01 -1.84865832e-01 3.06754448e-02\\n-2.30701506e-01 -6.49197519e-01 2.72451490e-01 -1.19080722e-01\\n-2.70071149e-01 -9.45970863e-02 2.54023075e-01 4.36552346e-01\\n-8.99736732e-02 -1.55729830e-01 -8.55943188e-02 1.97303742e-01\\n1.10036470e-01 3.79391223e-01 -2.18155861e-01 -1.33596122e-01\\n-2.61167705e-01 4.08169508e-01 7.51660541e-02 1.51080757e-01\\n-7.55340159e-02 3.85382116e-01 2.61615179e-02 2.32520312e-01\\n1.59027353e-01 -2.20937565e-01 -3.69323730e-01 -3.04829597e-01\\n-4.35190201e-01 -1.16633028e-02 1.11955486e-01 -8.50889459e-02\\n2.64335275e-01 -2.27494001e-01 -6.81183934e-02 -2.76735246e-01\\n-2.44057477e-01 -4.49558347e-01 -1.16036996e-01 1.09312750e-01]]',\n", + " 'Job Informationen Responsibilities: Manages the maintenance of key Applications - Ensure a proper functional and technical support to the business departments on IS applications - Supervise end users in order to ensure a proper understanding of internal Business Processes (Trading, Shipping, Finance, Legal, Cross-functions) - Provide support to Trading and Operations team in their usage and ramp-up on the Application (training, coaching, change management) - Supervise end users application’s usage in order to guarantee the efficient use of the software - Coach and Train new comers in the understanding of our processes and a proper usage of the applications related to the function of the employee. - Perform review on application usage and data quality and trigger necessary training or process improvements - Define and Implement Projects for new requirements and/or evolution of the applications - Manage the continuous improvement of our Business processes: - Help in ensuring the defined IS applications matches the business requirements of internal departments - Review Processes supported by IS systems and work in coordination with the functional departments to propose processes/Systems changes. - Specify and implement necessary system changes - Manage the testing phases and ensuring quality performance with the external developers involved in various IS improvement projects - Lead Change Management with the users whilst implementing change - Get user-feedback and trigger necessary tasks or subprojects to reach a balance between Processes, Controls, user satisfaction and capability/cost efficiency of the IS Solution - Follow-up on processes implemented, new and existing, and ensure continuous improvement - Identify user needs for reporting and implement them once specified and approved - With the support and in relation with the Business Process Owners, review the processes defined by each BPO and ensure our Operating Model is updated - Manage specific and ad-hoc IS/IT Projects - Gather Requirements and Objectives of the Project - Manage the different Project Phases from Requirements till post-support implementation - Ensure a proper handover and transition of Project deliverables to the employees (Training, support of employees on requests) Profile required: Educational Background / Qualifications: - Degree in Computer science with experience in project management - Secondary Education in cross functional areas Technical Skills: - CRM Systems (SalesForce, Oracle) - Good knowledge of Reporting systems and Business Intelligence tools (IBM Cognos, Quickview,..) - General understanding of main ERP functionalities (SAP) - Scripting language (SQL, JavaScript, any other scripting languages) - First experience on Mobility and Mobile Apps development Experience required: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in the current Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs - Proven capabilities in coaching, training and development Competency profile: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Good experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs Interpersonal competencies / communication - Service-oriented - Communication capability with specialists and non-specialists (oral and written) - Listening skills - Ability to manage diversity and complexity of processes - Negotiation/conflict resolution skills - Reactivity - Time management skills - English professional. Good German. Any other language is a plus Benötigte Skills Englisch Projektleitung Qualitätssicherung CRM ERP Oracle Cognos SAP SQL JavaScript Requirements Engineering Schulung Strategie',\n", + " '[\"Negotiation\", \"Professionalism\", \"Supervision\", \"Management\", \"Listening Skills\", \"Operations\", \"Training And Development\", \"Time Management\"]',\n", + " '[\"Data Quality\", \"QuickView\", \"Business Intelligence Tools\", \"Ad Hoc Testing\", \"Computer Science\", \"Customer Relationship Management (CRM) Software\", \"Asynchronous Serial Communication\", \"Process Automation Systems\", \"Reactivity\", \"Process Improvements\", \"Performance Review\", \"Mobile App\", \"SAP Sybase SQL\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Secondary Education\", \"Dashboard\", \"Business Intelligence\", \"Mobility\", \"Process Control\", \"Business Requirements\", \"MFG/Pro (ERP)\", \"Cross-Functional Coordination\", \"Finance\", \"Business Process\", \"SAP Functional\", \"Specific Performance\", \"Requirements Engineering\", \"JavaScript (Programming Language)\", \"Continuous Improvement Process\", \"Implement Projects\", \"Adapter Scripting Language\", \"User Feedback\", \"Project Management\", \"Scripting\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Diversity Management\", \"SQL (Programming Language)\", \"Technical Support\", \"International Business\", \"Conflict Resolution\", \"Change Management\"]',\n", + " \"['English', 'Polish', 'Luba-Katanga']\"],\n", + " ['27',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " 'Banks & Building Societies',\n", + " '',\n", + " '[[-2.03804046e-01 3.90768409e-01 4.67769086e-01 -8.77881497e-02\\n4.87570196e-01 -7.82477483e-02 4.64432091e-02 2.35845342e-01\\n-3.25662307e-02 -4.09615815e-01 -2.12051362e-01 -1.85173452e-01\\n-3.37314159e-02 2.85892887e-03 8.85701180e-02 3.81983519e-01\\n4.20859516e-01 5.20653501e-02 -1.77889988e-01 2.62596428e-01\\n-2.63112150e-02 -4.84103486e-02 8.93685222e-02 7.05695868e-01\\n3.66484374e-01 -4.07317001e-03 -3.99812683e-02 1.14762597e-02\\n-1.80528551e-01 -2.61936098e-01 4.66465175e-01 -1.29114725e-02\\n-1.05974756e-01 -2.18961939e-01 1.30097687e-01 1.13381878e-01\\n-2.33863339e-01 6.26446605e-02 -1.02193907e-01 8.27504918e-02\\n-4.65156496e-01 -2.15260744e-01 4.61863503e-02 1.69673450e-02\\n-2.73656785e-01 -3.25701177e-01 1.41076788e-01 -9.91059318e-02\\n8.86920840e-02 3.25927138e-02 -3.59828532e-01 3.10147762e-01\\n-3.49230528e-01 -2.51716435e-01 3.94583434e-01 6.66098475e-01\\n6.72818422e-02 -4.92215574e-01 -5.22410512e-01 -2.89230585e-01\\n1.19727992e-01 -1.04853883e-01 7.54880682e-02 -2.38034174e-01\\n3.79000843e-01 -3.68774086e-02 -4.54715006e-02 3.40090334e-01\\n-8.06410789e-01 -5.71128950e-02 -3.42003316e-01 -3.79882194e-03\\n-3.69161308e-01 -9.07453969e-02 -3.28373104e-01 -2.37304121e-01\\n-3.78980525e-02 3.99585336e-01 -3.97136770e-02 7.42971301e-02\\n-2.37833411e-01 3.79690588e-01 -3.01380932e-01 2.51185834e-01\\n2.31715769e-01 2.17698529e-01 3.94593537e-01 2.69670486e-01\\n-4.36338782e-01 4.71198261e-01 3.81378710e-01 -4.01021689e-01\\n2.99861073e-01 7.16661960e-02 2.94071645e-01 1.21090993e-01\\n4.55599129e-02 2.07176715e-01 -4.13994640e-02 1.90927461e-01\\n1.63995117e-01 -6.48481101e-02 -2.65146792e-01 -8.46652389e-02\\n-6.79937154e-02 -6.19099960e-02 5.88375144e-02 2.03558311e-01\\n-3.80781233e-01 3.19268405e-01 1.02467567e-01 -3.65109324e-01\\n-1.19307436e-01 -4.81050342e-01 -1.25744179e-01 2.14220621e-02\\n-1.81125551e-01 8.63118023e-02 1.42853677e-01 2.58707881e-01\\n2.07280636e-01 5.52942790e-03 1.49121359e-01 8.42240810e-01\\n-7.94274062e-02 -1.53379310e-02 -2.76485652e-01 3.84893417e-01\\n1.92834020e-01 -2.95513868e-01 1.66953534e-01 2.49384388e-01\\n-1.41898528e-01 -5.93110956e-02 -2.90096939e-01 4.11847413e-01\\n-1.56909823e-02 -1.91932783e-01 -3.28270495e-01 1.57402813e-01\\n-1.80526137e-01 -4.60175455e-01 5.44894278e-01 -3.37428227e-02\\n1.36734962e-01 -3.38697694e-02 5.79121411e-02 -4.10552025e-02\\n-2.21429914e-01 2.58652300e-01 7.20810443e-02 1.28949702e-01\\n-3.42869103e-01 -1.81787699e-01 -1.25452325e-01 3.38497758e-01\\n-1.09896198e-01 2.09553558e-02 -3.38218451e-01 -1.56369090e-01\\n3.00506532e-01 1.03319228e-01 -3.89633536e-01 2.20915735e-01\\n7.37515092e-03 -1.26083091e-01 -1.28226817e-01 3.30436647e-01\\n-9.45730135e-02 1.55070588e-01 -1.45876808e-02 -9.98046845e-02\\n5.83147407e-01 1.13250047e-01 2.33511329e-01 -1.48835555e-01\\n2.55569845e-01 -1.52248889e-01 1.66610152e-01 6.39637411e-02\\n-5.83862901e-01 3.85710686e-01 -1.21061869e-01 2.62319148e-02\\n4.04232070e-02 -1.21016111e-02 2.68036485e-01 -3.26909959e-01\\n-3.89732793e-02 -2.43426889e-01 -3.64712715e-01 -4.16114688e-01\\n-2.31771350e-01 5.16521670e-02 3.14480543e-01 -4.93528724e-01\\n-3.38866264e-02 2.29032874e-01 -6.23656154e-01 -1.13938093e-01\\n2.31761351e-01 2.02805042e-01 5.63333184e-02 1.31169736e-01\\n-1.32118374e-01 -5.36988318e-01 1.87922508e-01 -4.68224108e-01\\n-3.71509492e-01 1.66688889e-01 -2.32319504e-01 1.73263445e-01\\n1.28264099e-01 -3.09862308e-02 -8.89402330e-02 8.46490860e-02\\n-3.74169827e-01 -4.25389297e-02 1.57298416e-01 3.41132544e-02\\n2.00495511e-01 9.53207090e-02 -3.70331585e-01 5.56046605e-01\\n-1.88224792e-01 2.79402107e-01 1.86127856e-01 -1.11399782e+00\\n4.68504429e-01 3.13605785e-01 5.44302762e-02 -3.44051838e-01\\n5.39809585e-01 -3.31697047e-01 -6.30915090e-02 1.32269770e-01\\n-3.40196490e-01 -2.20591009e-01 2.78031409e-01 -1.85036287e-01\\n-2.89583206e-01 5.84917307e-01 4.77691926e-02 6.45212829e-02\\n3.20092380e-01 -2.39338607e-01 -1.98462546e-01 1.41741522e-02\\n-2.01178432e-01 -1.00232869e-01 -5.33763230e-01 -5.23728207e-02\\n-5.50117418e-02 -5.54126143e-01 -2.14222640e-01 -6.14199102e-01\\n-2.14566529e-01 -3.56247604e-01 -2.63777196e-01 2.28898674e-01\\n1.29156232e-01 1.51986346e-01 -1.00486219e-01 2.60264780e-02\\n-1.07011676e-01 -6.38307750e-01 -7.32773319e-02 1.18817471e-01\\n3.27738136e-01 3.04416984e-01 3.80399115e-02 -6.35404363e-02\\n-7.20551834e-02 4.86990243e-01 -2.95677304e-01 -2.85945177e-01\\n2.74363995e-01 1.24624133e-01 -5.15035093e-02 -1.30820215e-01\\n7.80715942e-02 3.36906612e-01 -2.40326658e-01 -3.75703238e-02\\n5.10542020e-02 -9.25578270e-03 3.81516725e-01 8.74746591e-03\\n-3.02216709e-01 -1.89894408e-01 -5.15234210e-02 2.64405489e-01\\n-5.87001085e-01 -2.12707072e-01 6.60117388e-01 2.66089380e-01\\n6.90679625e-03 2.57129878e-01 2.88240254e-01 -6.67196661e-02\\n-2.29125023e-01 -1.44214928e-01 2.58206844e-01 1.17328785e-01\\n1.82096273e-01 4.88546379e-02 -1.67807341e-01 -5.59000731e-01\\n-3.50456190e+00 -2.27051646e-01 2.08202973e-01 -3.04246664e-01\\n2.53372312e-01 -1.08278304e-01 1.91876993e-01 -4.90713157e-02\\n-2.64295340e-01 -2.56928876e-02 -1.29935309e-01 -1.25814736e-01\\n1.74039871e-01 2.99989998e-01 1.39695248e-02 2.43258417e-01\\n1.36782706e-01 -1.53154761e-01 2.03970186e-02 3.56555462e-01\\n-4.52529266e-02 -7.84795880e-01 1.62590116e-01 -3.57159898e-02\\n1.62149251e-01 1.74659938e-02 -4.31057900e-01 -6.35004044e-02\\n-2.95321792e-01 -2.20802099e-01 1.23770088e-01 -1.49104103e-01\\n-1.79627061e-01 2.00907424e-01 1.39965430e-01 -1.98137999e-01\\n4.84757535e-02 -2.97858715e-01 -6.63966835e-02 -5.24165630e-01\\n2.49262959e-01 -6.58757210e-01 9.06176046e-02 -4.34906930e-02\\n6.34322166e-01 -2.73911119e-01 1.93695098e-01 1.28422379e-01\\n1.93415821e-01 1.77321672e-01 1.49514958e-01 -3.03439610e-03\\n-3.35032463e-01 -3.42313588e-01 -1.05996579e-02 -1.00922011e-01\\n6.47520006e-01 2.78520614e-01 -2.39458829e-01 5.25724776e-02\\n-2.13818606e-02 -2.53913909e-01 -4.61148381e-01 -2.76440054e-01\\n-1.60496026e-01 -4.53968756e-02 -6.99442148e-01 -4.07145858e-01\\n-1.35753185e-01 -1.81316569e-01 -8.11915696e-02 7.43607044e-01\\n-2.19896764e-01 -3.91651213e-01 -1.13684237e-01 -5.66930830e-01\\n1.81098491e-01 -1.69850588e-01 2.75039431e-02 -2.53439754e-01\\n-2.56627977e-01 -3.89817357e-01 1.37756169e-01 9.64485481e-03\\n-1.76757276e-01 -5.65620176e-02 7.32280761e-02 -1.33123338e-01\\n-3.41263175e-01 -4.70330536e-01 4.47685182e-01 7.75322318e-02\\n3.83713365e-01 7.77238309e-02 3.09280843e-01 -3.14922258e-02\\n2.94075549e-01 -6.97753802e-02 -1.73235089e-02 -4.73299772e-01\\n1.25298530e-01 6.32203296e-02 5.97068727e-01 -2.41783768e-01\\n5.08673787e-02 1.72237828e-01 -1.30143434e-01 -1.05525434e-01\\n4.89634752e-01 3.22905257e-02 7.00303391e-02 -2.34990343e-01\\n2.50719965e-01 -5.09002507e-01 -2.58920729e-01 9.37308669e-02\\n4.22939211e-02 6.29909635e-01 -5.00193983e-02 -4.46703672e-01\\n-1.96332157e-01 4.14849043e-01 -5.90387657e-02 -1.45725369e-01\\n-2.64161825e-01 1.03701666e-01 -3.24410617e-01 2.13341534e-01\\n2.78311111e-02 -1.16578788e-01 -2.89350361e-01 -5.92018887e-02\\n-6.37676120e-02 2.14282051e-01 2.73974359e-01 1.53323740e-01\\n1.56883597e-02 -2.90722519e-01 -1.04385540e-02 8.78996402e-02\\n1.78481176e-01 4.22182024e-01 2.35109508e-01 -3.15822065e-01\\n-2.09998339e-02 2.70354152e-01 -2.64137089e-01 2.48385996e-01\\n-1.10622399e-01 6.13665693e-02 -4.60509717e-01 -2.24325269e-01\\n-1.94375932e-01 -3.43253702e-01 8.35158154e-02 3.38662028e-01\\n9.61739048e-02 -1.31071836e-01 -4.18518633e-02 -4.87964720e-01\\n3.29023242e-01 5.29233217e-02 2.60018945e-01 1.50793836e-01\\n5.82220033e-04 6.98550224e-01 3.17230541e-03 -2.35252410e-01\\n-4.26415615e-02 7.78964832e-02 -1.29145354e-01 -2.12308973e-01\\n2.01781467e-03 -5.06595016e-01 -6.14632294e-02 4.72236097e-01\\n1.43387616e-02 -2.06427887e-01 -1.83539301e-01 2.93051451e-01\\n-9.07769054e-03 -2.36076578e-01 -1.40851036e-01 3.21042836e-02\\n1.79151565e-01 1.20031558e-01 3.02308261e-01 -4.28472728e-01\\n-7.28138238e-02 1.57823786e-03 2.21211221e-02 4.42300737e-01\\n1.62282705e-01 1.87535763e-01 4.70180344e-03 -1.40022159e-01\\n4.52322900e-01 8.20135102e-02 -1.98109269e-01 -4.35945429e-02\\n9.77521837e-02 -2.22388268e-01 -4.59461898e-01 2.02564411e-02\\n-1.06711335e-01 -1.54663831e-01 7.07870796e-02 5.52929752e-03\\n1.57346129e-01 8.51361528e-02 -5.52490473e-01 -2.43216082e-01\\n-3.75035822e-01 3.76921259e-02 -8.24845433e-02 -6.22166872e-01\\n6.61400482e-02 -3.46626900e-03 -6.24173701e-01 2.93617368e-01\\n-9.53998864e-02 4.07506339e-03 1.08901881e-01 1.39287218e-01\\n-2.57879496e-01 -1.73907652e-01 1.76795453e-01 1.44949555e-01\\n-2.68176168e-01 -2.57146358e-01 5.49259484e-02 -9.39684093e-01\\n2.83430904e-01 1.42679606e-02 -1.52050465e-01 9.51161385e-02\\n2.79563963e-02 -7.10500598e-01 2.55846113e-01 -4.01708126e-01\\n-1.25617549e-01 8.61931518e-02 -2.53956288e-01 -4.20040190e-01\\n4.53875512e-02 -5.81300855e-02 -3.03170592e-01 3.82353485e-01\\n-4.74330693e-01 4.81081545e-01 5.73964864e-02 1.20966241e-01\\n1.90057248e-01 -1.97504357e-01 2.67975479e-02 -3.06911439e-01\\n-4.97036368e-01 -2.75405288e-01 -2.02862799e-01 -3.59575391e-01\\n-2.62710303e-02 -2.78152287e-01 -2.02199370e-01 1.38330394e-02\\n3.32245708e-01 1.58109933e-01 -1.46111727e-01 -2.12831154e-01\\n-3.04572470e-03 -3.13678443e-01 1.74370408e-01 -2.02957094e-01\\n4.02330384e-02 -1.44340038e-01 3.06579709e-01 5.06446101e-02\\n1.30468190e-01 -3.69112730e-01 4.75309312e-01 -1.63741708e-01\\n-3.38913560e-01 -1.41455650e-01 8.39800090e-02 7.56729767e-02\\n3.14627945e-01 -5.91121078e-01 6.94257468e-02 3.47659469e-01\\n2.90944055e-02 8.04835185e-02 2.68158376e-01 -1.39273971e-01\\n-1.10903807e-01 1.40584588e-01 -5.01240313e-01 2.18151540e-01\\n6.66464090e-01 7.49852508e-02 1.95262119e-01 1.86863691e-01\\n2.01701790e-01 3.20096374e-01 5.13015330e-01 6.13382570e-02\\n-1.42312437e-01 3.26856196e-01 7.44533837e-02 -5.75528502e-01\\n-1.50138080e-01 -9.12020504e-02 -1.70393273e-01 -3.46687496e-01\\n6.51755333e-01 3.66033256e-01 -3.54396939e-01 -3.06159616e-01\\n-2.12369904e-01 -2.11850137e-01 3.04177284e-01 -6.47637695e-02\\n9.48208123e-02 -1.31843403e-01 5.69609165e-01 -4.61567119e-02\\n3.49865377e-01 5.45184851e-01 -2.07545966e-01 -3.22709620e-01\\n-3.56575176e-02 1.85333088e-01 3.63333151e-02 3.61937046e-01\\n-5.57535924e-02 2.15400964e-01 4.50925007e-02 1.95634782e-01\\n-1.57729372e-01 -1.79023705e-02 1.77537173e-01 5.44928163e-02\\n1.21926248e-01 4.00297269e-02 5.35466194e-01 4.90870714e-01\\n2.53744483e-01 4.85611647e-01 2.95513093e-01 7.86431059e-02\\n4.61681604e-01 7.16442108e-01 3.73337686e-01 4.58531976e-02\\n4.86913733e-02 1.07038990e-01 1.14339441e-01 -2.03900598e-03\\n2.95529544e-01 4.59290028e-01 1.14118382e-01 8.28918219e-01\\n3.50034237e-01 2.63442695e-01 7.43815720e-01 -6.84027612e-01\\n-3.18231404e-01 3.24992016e-02 4.80759114e-01 -3.47550154e-01\\n5.37812598e-02 1.76892847e-01 -3.14115793e-01 2.13397101e-01\\n-4.35995698e-01 -9.89361480e-02 -4.85197008e-02 -7.37838596e-02\\n9.04889777e-02 -1.53131485e-01 -1.23386778e-01 4.04317081e-02\\n-9.11652222e-02 -2.25712687e-01 -3.18940163e-01 -1.54745772e-01\\n-3.53496075e-01 -3.01715732e-03 -7.69090094e-03 -1.21485524e-01\\n-7.78919086e-02 -3.67699444e-01 -1.52253151e-01 -3.00908461e-04\\n2.89667517e-01 -9.51254964e-02 -1.77729085e-01 -1.30902007e-01\\n1.68675929e-01 2.60561228e-01 7.08278000e-01 4.87506390e-02\\n7.11908042e-02 -4.17976305e-02 -2.15041518e-01 7.63209462e-02\\n1.35584325e-01 9.81297344e-02 2.62277992e-03 5.09274065e-01\\n-2.51530170e-01 -8.81310180e-02 9.35409218e-02 3.21951330e-01\\n-3.35471511e-01 5.32840490e-02 -8.02944526e-02 1.86750114e-01\\n5.06229475e-02 1.79993495e-01 -2.25691020e-01 9.54378843e-02\\n-5.42874001e-02 -5.05900621e-01 4.70868051e-01 -1.25084698e-01\\n-1.71430796e-01 4.48656976e-02 1.56392992e-01 3.96338940e-01\\n-2.43341744e-01 -7.82990232e-02 -1.14482857e-01 1.52971774e-01\\n9.15328860e-02 4.52844322e-01 -2.54536510e-01 -1.00404203e-01\\n-2.80676812e-01 1.80780619e-01 -2.11960450e-02 1.34971946e-01\\n-7.15983436e-02 3.56249154e-01 1.07109055e-01 1.15570664e-01\\n2.51057893e-01 -2.60895379e-02 -2.25229293e-01 -2.30285615e-01\\n-2.43377358e-01 -1.18941270e-01 2.58340891e-02 -6.87678605e-02\\n3.26687604e-01 -2.70393074e-01 -1.15278289e-02 -1.90212190e-01\\n-2.16400623e-01 -4.26365733e-01 -1.54515609e-01 -4.96382965e-03]]',\n", + " 'As a Software Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, software design and development activities for the Bank’s existing and new applications. You will be responsible for providing the design, development, configuration and maintenance for changes on existing systems and also for introducing new applications and interfaces with other systems. You will be developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Work with experienced engineers to design and develop new modules and/or applications Undertake the technical ownership of Cembra Money Bank’s Applications Integrate with the existing applications portfolio as well as third parties’ software Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 5+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Knowledge of messaging systems, Java applications servers (WAS, JBoss, Tomcat) and relational databases and also working experience with common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Executable\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"Operating Systems\", \"Java Application Server\", \"Application Portfolio Management\", \"Finance\", \"Personalization\", \"Production Support\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Modulation\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Custom Backend\", \"Apache Tomcat\"]',\n", + " \"['English', 'Welsh']\"],\n", + " ['145',\n", + " 'software engineer',\n", + " 'Argovia',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.varian.com',\n", + " '[[-5.59465587e-02 2.22522646e-01 3.77960205e-01 -1.31588187e-02\\n4.35023904e-01 -1.82821512e-01 1.64762944e-01 4.61604297e-01\\n2.43590586e-02 -5.74613571e-01 -5.09466864e-02 -2.11634308e-01\\n-7.98937678e-02 9.53242034e-02 1.27703607e-01 4.41984028e-01\\n2.46139690e-01 1.13047056e-01 -2.12825373e-01 3.88564855e-01\\n7.04006776e-02 -1.52849972e-01 4.24173437e-02 8.15226197e-01\\n4.18802798e-01 -1.69347995e-03 -1.51279673e-01 -7.47924894e-02\\n-2.02707753e-01 -3.74429524e-01 3.90716970e-01 -3.87588255e-02\\n-2.07812041e-02 -3.11200291e-01 1.45104960e-01 2.01582164e-02\\n-2.07757324e-01 3.92325921e-03 -1.22652479e-01 2.35796288e-01\\n-4.96088237e-01 -1.81494370e-01 -3.93305235e-02 -4.98846397e-02\\n-1.93134129e-01 -3.45624626e-01 -4.44289967e-02 -1.37552265e-02\\n1.61932856e-01 1.25946507e-01 -4.51917201e-01 3.00880224e-01\\n-2.10175276e-01 -3.06805432e-01 3.18793386e-01 6.16686523e-01\\n-6.45300895e-02 -4.18104410e-01 -5.44973016e-01 -3.10576349e-01\\n2.74056941e-02 -8.43834728e-02 8.13651457e-02 -3.64591867e-01\\n2.19668493e-01 1.12543665e-01 8.08680207e-02 3.39702666e-01\\n-7.78957605e-01 -1.72439426e-01 -2.74241775e-01 -1.12870432e-01\\n-1.98691994e-01 -1.85452357e-01 -3.00083429e-01 -1.25671759e-01\\n-2.12621972e-01 3.78899097e-01 3.57250534e-02 3.59929316e-02\\n-1.94950536e-01 2.56447256e-01 -2.36882746e-01 3.24202776e-01\\n2.70293772e-01 2.53692508e-01 2.14246526e-01 3.56376320e-01\\n-3.18909824e-01 4.18582201e-01 9.77080464e-02 -2.83766329e-01\\n2.14183882e-01 2.13878468e-01 5.05721688e-01 -1.10145330e-01\\n2.25676715e-01 7.44982511e-02 -3.79339308e-01 2.81999618e-01\\n2.57895887e-01 -2.37181380e-01 1.36658192e-01 -1.46145463e-01\\n5.62221669e-02 9.05009955e-02 8.62817541e-02 5.05404137e-02\\n-2.41306484e-01 4.18403447e-01 1.34699196e-01 -2.60152072e-01\\n-1.37010232e-01 -4.39434201e-01 -6.91183880e-02 1.02801412e-01\\n8.53987932e-02 1.55523106e-01 2.14545012e-01 8.82205665e-02\\n1.75948843e-01 -5.74966110e-02 5.14143184e-02 7.69657314e-01\\n-1.34254694e-01 7.26330131e-02 -3.39195639e-01 1.67671561e-01\\n7.31138065e-02 -3.54523301e-01 2.20248744e-01 2.11309403e-01\\n-4.06624191e-02 -1.14909276e-01 -2.37614796e-01 4.11337435e-01\\n8.19724724e-02 -1.96216956e-01 -2.36912668e-01 1.73156679e-01\\n-5.66945598e-03 -5.07524908e-01 6.90357685e-01 2.99694296e-02\\n2.46962532e-01 -3.55334431e-02 7.07676858e-02 -3.67596447e-02\\n8.40816461e-03 1.09889276e-01 1.96241513e-01 -1.20415986e-02\\n-2.55767852e-01 -3.16296428e-01 -2.09358439e-01 1.16188720e-01\\n-3.41742247e-01 1.50366738e-01 -4.76986505e-02 -3.80410487e-03\\n2.92992949e-01 1.10399574e-02 -2.58629113e-01 2.46104300e-01\\n-1.48755968e-01 8.79948661e-02 -5.18501066e-02 3.04243356e-01\\n-1.88573197e-01 2.74873823e-01 -6.74518719e-02 -2.83360407e-02\\n7.01306164e-01 1.48431107e-01 7.09568486e-02 -4.29603308e-02\\n3.27022046e-01 3.93966250e-02 1.73181295e-01 1.26343742e-01\\n-6.81874871e-01 2.39945292e-01 -1.46820813e-01 -2.52470434e-01\\n1.73602536e-01 -7.94242993e-02 2.19371513e-01 -3.20834935e-01\\n-1.06935568e-01 -2.24980786e-02 -2.77091235e-01 -3.57130021e-01\\n-2.07502261e-01 -5.74298874e-02 3.68204266e-01 -3.63728553e-01\\n-1.16028249e-01 1.97553247e-01 -4.76923287e-01 -1.23685524e-02\\n1.01023100e-01 2.25999728e-01 1.14984609e-01 1.78856999e-01\\n-1.66525871e-01 -4.56020027e-01 8.57853889e-02 -4.26310033e-01\\n-2.69755781e-01 9.24658924e-02 -3.41550261e-01 2.02982947e-01\\n6.90372437e-02 8.88060406e-02 -1.41823247e-01 9.61494148e-02\\n-1.65010527e-01 -1.00265637e-01 -2.68587731e-02 -2.06246413e-02\\n1.29209593e-01 5.69789438e-03 -3.68584007e-01 4.32643414e-01\\n-7.90962279e-02 4.87251759e-01 7.57548809e-02 -7.54213750e-01\\n4.64436650e-01 3.79992396e-01 -1.23523241e-02 -4.37938124e-01\\n5.09518206e-01 -2.39536986e-01 -1.21710077e-01 1.06442839e-01\\n-3.81182641e-01 -3.97196889e-01 2.54339814e-01 -2.32648328e-01\\n-2.82609195e-01 3.10586512e-01 4.93126176e-02 1.48152843e-01\\n1.35979876e-01 -1.03471436e-01 -4.47377004e-03 3.87961827e-02\\n9.58459303e-02 -1.23077728e-01 -4.99040037e-01 -9.20456573e-02\\n-7.21309856e-02 -3.66112202e-01 -8.25954378e-02 -4.41795617e-01\\n-2.00691536e-01 -4.09274787e-01 -2.69878536e-01 1.88164502e-01\\n2.69362867e-01 1.08574882e-01 5.34818582e-02 1.28555298e-02\\n-9.60217714e-02 -7.02200115e-01 4.05774228e-02 1.32352561e-01\\n4.82114017e-01 1.51626021e-01 -6.59831474e-03 -2.95407251e-02\\n7.48743340e-02 6.62382782e-01 -3.02332014e-01 -1.43506691e-01\\n1.50666878e-01 2.03759030e-01 8.24589655e-02 -1.55423015e-01\\n1.26000702e-01 3.32148641e-01 -2.83523470e-01 8.73369575e-02\\n-6.27286136e-02 -2.03319583e-02 3.61814618e-01 -4.28288355e-02\\n-4.17605013e-01 -2.53768384e-01 -1.40670925e-01 -2.01559607e-02\\n-5.60181081e-01 -1.24062963e-01 5.81168830e-01 1.48751304e-01\\n2.05187008e-01 1.39181256e-01 2.29530424e-01 -1.73459481e-02\\n-1.53056592e-01 -2.62933642e-01 2.08819419e-01 3.83631624e-02\\n1.86039835e-01 1.27918959e-01 -5.29234782e-02 -6.44248068e-01\\n-3.42603397e+00 -1.38446137e-01 1.53922155e-01 -2.47427866e-01\\n2.32161701e-01 -6.45015314e-02 2.54170001e-01 -2.95349173e-02\\n-3.40516299e-01 -1.62952077e-02 -8.92898440e-02 -7.22275972e-02\\n2.03892127e-01 2.31309682e-01 1.27944618e-01 1.43021584e-01\\n3.12168598e-01 -2.83897460e-01 -1.46452859e-01 3.65507096e-01\\n-1.50660962e-01 -5.87095857e-01 1.39393985e-01 6.74569681e-02\\n3.05249244e-01 3.03068340e-01 -3.56912702e-01 -1.58358160e-02\\n-2.26394877e-01 -1.48677692e-01 5.02476580e-02 -2.30647758e-01\\n-1.82909146e-01 1.65970117e-01 1.78262785e-01 -1.49120629e-01\\n1.03354573e-01 -3.75651151e-01 -9.63260606e-02 -4.17138666e-01\\n1.77691698e-01 -6.68821454e-01 -1.12850033e-01 -1.03671901e-01\\n7.70350397e-01 -2.26023674e-01 2.24025652e-01 -4.53635439e-05\\n1.93238720e-01 1.22095257e-01 7.33334571e-02 4.24982831e-02\\n-1.71274856e-01 -2.15863287e-01 4.24992852e-02 -1.46723002e-01\\n5.89020789e-01 4.22026336e-01 -2.63760030e-01 -1.25652492e-01\\n8.01540241e-02 -1.93140984e-01 -4.09779012e-01 -1.19770102e-01\\n-1.81820735e-01 -1.63570076e-01 -6.28258049e-01 -4.60968345e-01\\n-2.25671574e-01 -1.44486606e-01 -1.21125832e-01 7.96985507e-01\\n-3.20766300e-01 -3.72638613e-01 1.21765342e-02 -4.20385748e-01\\n2.37972066e-01 -2.26572722e-01 1.16835169e-01 -2.12641984e-01\\n-2.03353107e-01 -4.10195619e-01 9.75741968e-02 1.02253094e-01\\n-4.01661545e-02 -2.16927141e-01 1.95991322e-01 -6.76488206e-02\\n-2.99145877e-01 -4.25211281e-01 3.41309935e-01 1.50648922e-01\\n2.07089439e-01 1.81530744e-01 3.76794428e-01 6.01803511e-02\\n2.86579818e-01 1.76446103e-02 3.70210297e-02 -4.06183958e-01\\n5.42166308e-02 -7.50968885e-03 5.47544599e-01 -2.60951847e-01\\n-3.77086587e-02 1.00947678e-01 -3.96512687e-01 -1.50571361e-01\\n3.92301917e-01 -7.23510012e-02 7.46209323e-02 -1.32283285e-01\\n2.94398427e-01 -2.27377743e-01 -1.36329442e-01 -1.01583088e-02\\n1.39731154e-01 5.88529229e-01 -1.00786328e-01 -4.25144732e-01\\n-6.69706389e-02 4.23029453e-01 -3.06278430e-02 2.59689569e-01\\n-7.67409429e-02 3.49755213e-02 -1.39314964e-01 2.28285670e-01\\n1.29738767e-02 -1.64302051e-01 -1.74096078e-01 -1.53033406e-01\\n-1.10267267e-01 3.62559527e-01 1.68084294e-01 7.08533451e-02\\n-6.38721734e-02 -3.53207260e-01 -2.28931457e-01 2.72820175e-01\\n1.88086376e-01 4.05742079e-01 8.45707729e-02 -2.29067057e-01\\n-1.70227457e-02 4.29804981e-01 -2.42931381e-01 1.97943330e-01\\n-2.26597235e-01 1.67418823e-01 -3.93310785e-01 -1.79790661e-01\\n-3.28578413e-01 -4.60941523e-01 1.10809639e-01 3.57061982e-01\\n4.82770614e-02 3.64306159e-02 1.50324116e-02 -4.33563530e-01\\n1.51467815e-01 2.05198705e-01 1.77520379e-01 9.51967761e-02\\n-4.75922786e-02 4.14058954e-01 -2.23491769e-02 -1.86155394e-01\\n-2.59631902e-01 5.75375631e-02 -1.35299012e-01 -2.02067066e-02\\n1.60665482e-01 -5.52561104e-01 -6.93018287e-02 3.73906136e-01\\n7.72486851e-02 -3.03049624e-01 -9.53949615e-02 2.74509043e-01\\n5.58745191e-02 -3.70242894e-01 -2.75487900e-01 -8.69646110e-03\\n3.49274188e-01 2.87115742e-02 2.91976511e-01 -5.01734912e-01\\n-3.99350375e-02 -2.75582746e-02 -1.74837455e-01 3.35992008e-01\\n-6.32987842e-02 -3.25414585e-03 -2.14766681e-01 -9.34413448e-02\\n4.42758590e-01 -6.73247725e-02 -8.85165930e-02 5.29886968e-02\\n8.17074999e-02 -2.71455914e-01 -4.90735114e-01 -1.77766720e-03\\n1.59612056e-02 -2.46005163e-01 2.54005194e-02 1.75096318e-01\\n1.09108184e-02 1.66546196e-01 -6.01647437e-01 -1.93497851e-01\\n-2.45439798e-01 -5.14427200e-02 1.65211886e-01 -4.79896188e-01\\n-5.86423837e-02 -4.83016297e-02 -5.21354675e-01 2.63642728e-01\\n-1.89934030e-01 -1.27482772e-01 2.17388436e-01 -7.40383416e-02\\n-2.83681124e-01 -2.59016398e-02 2.85107885e-02 2.91038871e-01\\n-1.52716875e-01 -3.13995391e-01 -1.13714904e-01 -9.81306016e-01\\n2.04280242e-01 1.58649602e-03 -5.74256331e-02 8.32580850e-02\\n-1.68383941e-01 -6.53467774e-01 1.29987434e-01 -3.75940979e-01\\n-8.19654465e-02 -1.79626897e-01 -1.91202328e-01 -4.31845456e-01\\n4.07391489e-02 -7.15117604e-02 -4.09938693e-01 3.23735267e-01\\n-2.58753955e-01 3.11268717e-01 -1.89808324e-01 1.14385672e-01\\n-7.26921409e-02 -3.59771967e-01 1.18133977e-01 -5.12955248e-01\\n-4.15392816e-01 -1.94565922e-01 -2.55267113e-01 -2.95652211e-01\\n-1.16578922e-01 -3.25190812e-01 -1.00316383e-01 2.38420650e-01\\n2.77174681e-01 4.76717390e-02 -8.95779729e-02 -2.94096470e-01\\n4.30763364e-02 -5.89374840e-01 3.98443677e-02 6.99392846e-03\\n-8.74807313e-02 -1.58566117e-01 1.17142066e-01 1.80316076e-01\\n2.58234322e-01 -4.24599499e-01 3.05162102e-01 -4.14920509e-01\\n-2.56744176e-01 -9.94556490e-03 3.22610922e-02 5.65209314e-02\\n3.93968612e-01 -5.19639611e-01 -9.28300321e-02 3.07979882e-01\\n9.35024321e-02 1.25145927e-01 2.21625924e-01 -9.09544528e-02\\n-1.19190998e-01 3.81128401e-01 -2.56933630e-01 1.30590305e-01\\n6.39982522e-01 1.07790366e-01 1.12984352e-01 2.34726533e-01\\n1.54752523e-01 4.23741847e-01 4.28476691e-01 -6.41156361e-02\\n-1.07013710e-01 2.85382658e-01 7.97960609e-02 -4.30051565e-01\\n-7.89805055e-02 1.31870970e-01 -1.64730653e-01 -3.27213615e-01\\n5.99206090e-01 4.99198347e-01 -4.35287714e-01 -2.39561781e-01\\n-1.64533958e-01 -1.84539691e-01 1.48792803e-01 -2.64072735e-02\\n-6.62545711e-02 -1.11880973e-01 4.79649425e-01 -1.25698922e-02\\n1.92699447e-01 5.24582148e-01 -1.66223899e-01 -2.83448339e-01\\n-4.13058773e-02 2.96587497e-01 -8.62940326e-02 5.16037345e-01\\n-1.42129064e-01 1.99517041e-01 1.48621388e-02 1.02195121e-01\\n-2.83480939e-02 1.20050803e-01 7.91925788e-02 1.55186787e-01\\n1.02459550e-01 2.09411532e-01 5.41194022e-01 4.83193219e-01\\n3.51409674e-01 3.63371044e-01 1.87281504e-01 1.36282280e-01\\n4.84268159e-01 4.40782130e-01 4.56186175e-01 1.51176989e-01\\n1.21441595e-02 4.98479642e-02 1.60098821e-01 -9.40447748e-02\\n3.21558565e-01 2.98574924e-01 2.64698733e-02 7.95489430e-01\\n3.02353829e-01 2.17966318e-01 6.43507183e-01 -5.88774562e-01\\n-2.92997628e-01 -4.27153409e-02 5.34308136e-01 -4.25374568e-01\\n4.13585193e-02 1.21296503e-01 -1.16675504e-01 2.74409741e-01\\n-4.46004033e-01 -2.47477040e-01 3.13342698e-02 9.03711617e-02\\n-2.62691285e-02 -2.61299163e-01 -1.85352817e-01 8.30185860e-02\\n-1.31738842e-01 -9.18279365e-02 -5.44731021e-01 -9.92582962e-02\\n-1.57088190e-01 -4.61930744e-02 -1.05933756e-01 -1.58603057e-01\\n-2.88556553e-02 -3.13805014e-01 3.23558375e-02 3.53572518e-02\\n1.27994910e-01 -1.44332051e-01 4.02632952e-02 -6.13395572e-02\\n3.36390883e-01 1.70683414e-01 5.47955215e-01 -1.56336837e-02\\n1.24294326e-01 -2.77150750e-01 -1.66234612e-01 2.14149058e-01\\n1.51939124e-01 8.01192373e-02 9.38872993e-02 2.34258831e-01\\n-2.78464645e-01 -2.05048233e-01 2.74617597e-02 3.92092109e-01\\n-4.35887426e-01 6.55320287e-02 -1.01096824e-01 2.05594674e-01\\n1.23456031e-01 1.26954302e-01 -1.62727654e-01 -1.23096354e-01\\n-1.32056221e-01 -3.78149509e-01 2.01673806e-01 -1.48143871e-02\\n-1.83666050e-01 8.56887922e-02 1.99199408e-01 3.64007771e-01\\n-1.52233943e-01 -3.39362845e-02 -1.02494068e-01 1.70598254e-01\\n1.78393275e-02 2.66701072e-01 -3.34956795e-02 -4.02614653e-01\\n-3.14062953e-01 1.59044236e-01 -2.14719906e-01 4.83305287e-03\\n2.09158566e-02 1.99680522e-01 -2.61836424e-02 9.97220632e-04\\n3.67731392e-01 -5.51610328e-02 -2.28176564e-01 -2.72020638e-01\\n-1.74552232e-01 -1.51095241e-01 1.29595250e-02 -6.25919625e-02\\n1.07363015e-01 -3.19773257e-01 4.80766816e-04 -1.60639092e-01\\n-1.74787730e-01 -2.21881494e-01 -4.61162478e-02 -9.62579399e-02]]',\n", + " \"We're driving toward the ultimate victory: a world without the fear of cancer. As a Software Engineer you will be collaborating with a talented, experienced team, providing best-in-class solutions for complex problems. This position involves all software engineering activities from analysis and design through coding and testing of data integration components, as well as maintenance and support during the product life cycle. Specific Responsibilities Analyze, design develop, and maintain connectivity services and the DICOM Import/Export application Investigate escalated customer issues Desired Qualifications Master’s degree in Computer Science / Electrical Engineering or related field 5 years professional work experience in object-oriented programming and test-driven design Cybersecurity skills as a programmer Service API skills (e.g. RESTful) Self-motivated and able to work well in a team environment. Strong problem analysis and solving capability. C# skills welcome DICOM skills welcome SQL skills welcome Excellent communication and teamwork skills, fluency in English You are analytical, communicative and focused. You work structured and have an eye for details. In addition, you can express your ideas and research in written form. You are used to working independently, open to discussing ideas and solutions with your colleagues. You thrive in an international work environment and in cultivating your contacts with partners in Europe and overseas. You’re just one click away from the most impactful work you’ll ever do. Apply now and join our mission to help save lives. Someone, somewhere, will be glad you did. We look forward to receiving your application and CV. Job Code www.varian.com/ch/daettwil #LI-OSS1 We're unleashing the power of technology and human ingenuity to achieve new victories in the fight against cancer. Join us and have a global impact.\",\n", + " '[\"Complex Problem Solving\", \"Self-Motivation\", \"Research\", \"Professionalism\", \"Collaboration\", \"Investigation\", \"Communications\"]',\n", + " '[\"Test-Driven Development (TDD)\", \"Computer Science\", \"Analytics\", \"Pentaho Data Integration\", \"Life Cycle Assessment\", \"Activism\", \"Import/Export Logistics\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Hostile Work Environment\", \"Software Engineering\", \"Library For WWW In Perl\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Structural Work\", \"Receivables\", \"Humanism\", \"Cybersecurity Compliance\", \"Additives\", \"Cancer\", \"Eyes\", \"Application Programming Interface (API)\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"Cultivator\", \"Dicom\"]',\n", + " \"['English', 'Moldavian', 'Venda']\"],\n", + " ['75',\n", + " 'etl/data management engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.82886654e-01 2.94222355e-01 4.60425436e-01 8.91190618e-02\\n5.80254436e-01 -1.22408994e-01 -2.27416074e-03 1.42229363e-01\\n-2.09328532e-02 -2.62084484e-01 -6.67846799e-02 -2.47497514e-01\\n-6.66818619e-02 4.66556065e-02 4.12734263e-02 3.53907466e-01\\n2.94407368e-01 5.16126938e-02 -1.44064829e-01 3.51744860e-01\\n9.09873620e-02 -8.55234731e-03 1.14045799e-01 5.33777714e-01\\n2.49999702e-01 1.71568617e-03 -9.87909436e-02 2.73114629e-02\\n-2.96015710e-01 -2.46629566e-01 3.76834929e-01 4.18761224e-02\\n-2.57091761e-01 -2.75942773e-01 3.74203846e-02 1.93852298e-02\\n-2.93152720e-01 -7.63805211e-02 2.01705527e-02 5.89236505e-02\\n-3.12672794e-01 -2.41865084e-01 -6.52537867e-02 2.25883648e-02\\n-3.68917108e-01 -2.23576099e-01 -4.76847701e-02 -7.10331425e-02\\n-1.40885770e-01 3.33609097e-02 -4.65750605e-01 2.50394464e-01\\n-1.95079952e-01 -1.32257700e-01 2.80050993e-01 5.91243148e-01\\n2.86980607e-02 -5.35603881e-01 -3.67752373e-01 -2.68577248e-01\\n1.77125722e-01 -1.50052577e-01 7.23767132e-02 -1.20473541e-01\\n4.67886031e-01 -1.35394543e-01 4.65267058e-03 3.54981840e-01\\n-6.73109412e-01 -4.34691198e-02 -2.85936803e-01 4.29135561e-02\\n-3.97870421e-01 -4.33701649e-02 -2.28451222e-01 -2.52931476e-01\\n2.95568054e-04 3.21657240e-01 4.34875451e-02 6.16574362e-02\\n-2.04258069e-01 2.19841748e-01 -1.23642094e-01 1.01892725e-01\\n3.50744724e-01 9.24138427e-02 2.16570035e-01 2.00282171e-01\\n-4.54654604e-01 4.02896315e-01 3.36163551e-01 -2.81646758e-01\\n2.14242175e-01 3.86249088e-02 3.13697785e-01 1.35442257e-01\\n-4.63122763e-02 2.19277918e-01 1.45090474e-02 1.16766728e-01\\n2.72232722e-02 -1.29525393e-01 -3.86340320e-02 -1.44338179e-02\\n-3.60555686e-02 -8.55849832e-02 -3.98940556e-02 2.73893893e-01\\n-2.86561012e-01 2.69940287e-01 1.31063282e-01 -1.39675409e-01\\n-2.62371227e-02 -4.67194438e-01 -1.15251288e-01 -2.39910603e-01\\n-8.88643228e-03 1.78231850e-01 3.25242490e-01 1.93245411e-01\\n2.74064690e-01 9.05287638e-02 2.45486677e-01 8.26432228e-01\\n2.94108540e-02 6.87492788e-02 -2.70480067e-01 4.06487256e-01\\n1.72809020e-01 -2.63654172e-01 1.76037923e-01 2.03488350e-01\\n2.39853486e-02 -1.32417148e-02 -2.44581312e-01 2.20447555e-01\\n-1.43666029e-01 -2.14284346e-01 -1.59997627e-01 7.37251192e-02\\n-2.58328646e-01 -4.74983722e-01 3.14343631e-01 5.62342964e-02\\n1.19324580e-01 -1.44343629e-01 -4.29588072e-02 -2.25478150e-02\\n-1.59657970e-01 3.54074597e-01 -1.13120303e-02 2.46760041e-01\\n-2.84581542e-01 -1.79397702e-01 -7.82394037e-02 3.10006946e-01\\n-4.61644530e-02 3.14127617e-02 -1.66080162e-01 -1.73593089e-01\\n2.27763280e-01 9.58850160e-02 -4.53318089e-01 1.81062132e-01\\n5.36305718e-02 -4.01964515e-01 -1.75364450e-01 3.84028554e-01\\n-1.51382029e-01 5.80714457e-02 -1.67077742e-04 -2.36360237e-01\\n5.01266837e-01 2.39639848e-01 2.03717276e-01 -8.40321034e-02\\n2.30118409e-01 -1.93768784e-01 3.55393946e-01 1.79439306e-01\\n-5.87054551e-01 3.75960916e-01 -1.39848158e-01 -1.35463938e-01\\n6.40802905e-02 7.82345086e-02 4.03140455e-01 -2.78279334e-01\\n6.67369440e-02 -1.81013122e-01 -3.47027153e-01 -4.54138964e-01\\n-1.65052503e-01 1.09524541e-01 3.12953949e-01 -3.91538322e-01\\n-1.24066651e-01 1.76465154e-01 -4.77721781e-01 -1.98592976e-01\\n2.15340719e-01 1.66240051e-01 4.74068522e-02 1.42266840e-01\\n-7.64120892e-02 -4.76231813e-01 7.69889206e-02 -4.85842049e-01\\n-3.71001452e-01 1.20211607e-02 -1.72866330e-01 1.05673566e-01\\n6.38870001e-02 2.51073018e-02 -4.18449081e-02 1.45813867e-01\\n-4.44911331e-01 -2.43950300e-02 2.84102589e-01 1.44285604e-01\\n2.07106754e-01 -4.22451124e-02 -3.19223374e-01 5.23643911e-01\\n-2.43879750e-01 4.08331603e-01 2.01205909e-01 -8.84252667e-01\\n4.95560527e-01 1.03606172e-01 7.17204716e-03 -3.16100448e-01\\n4.64358717e-01 -4.61003691e-01 5.49336746e-02 1.46086082e-01\\n-1.60880595e-01 -6.44245073e-02 3.24695170e-01 -1.70436770e-01\\n-2.77647436e-01 6.71607137e-01 1.63556665e-01 8.88292026e-03\\n2.66937107e-01 -2.20775336e-01 -2.19743058e-01 -1.56572342e-01\\n-1.94035515e-01 -2.05364391e-01 -3.83536667e-01 1.85088202e-01\\n-5.28821982e-02 -5.22306919e-01 -9.53096896e-02 -4.44287777e-01\\n-1.30557582e-01 -3.79058182e-01 -2.02975199e-01 3.21203202e-01\\n4.33853567e-02 1.45933598e-01 -1.13316610e-01 1.56420767e-02\\n-4.90301922e-02 -6.03468299e-01 -6.17831163e-02 1.26911968e-01\\n4.28523600e-01 3.39355379e-01 1.71158284e-01 -1.05147332e-01\\n2.26129107e-02 4.53190804e-01 -3.04319441e-01 -3.14085782e-01\\n1.35958984e-01 1.51304841e-01 2.51673963e-02 -1.96706355e-01\\n7.63176605e-02 3.70329022e-01 2.95457225e-02 4.08023037e-03\\n-7.79841514e-03 -2.07945909e-02 3.63795847e-01 -1.65872887e-01\\n-2.23852739e-01 -1.79152474e-01 3.01720779e-02 3.27635616e-01\\n-3.84498209e-01 -1.78792909e-01 5.65774858e-01 3.00352216e-01\\n-8.37727915e-03 2.11740956e-01 2.61337936e-01 -8.84048790e-02\\n-3.09285760e-01 -2.05925569e-01 1.74438387e-01 1.41874224e-01\\n1.49312511e-01 -6.18624911e-02 -2.67253608e-01 -4.92757648e-01\\n-3.70545888e+00 -1.75145358e-01 4.51356098e-02 -3.33191454e-01\\n2.75775284e-01 -1.89907745e-01 1.70324430e-01 8.68595019e-02\\n-2.99405396e-01 1.08432457e-01 -1.85475811e-01 -5.89571893e-02\\n1.10887125e-01 2.99181312e-01 2.22464874e-01 1.51464894e-01\\n7.18299206e-03 -2.05344945e-01 -5.11051528e-02 3.41718644e-01\\n-9.52382907e-02 -7.28348255e-01 1.19625255e-01 3.85021307e-02\\n1.20457783e-01 6.61793053e-02 -3.74222130e-01 -7.52567276e-02\\n-2.05438823e-01 -2.91201949e-01 5.75736463e-02 -1.76061481e-01\\n-2.19873965e-01 3.44346374e-01 1.30152524e-01 -1.49123847e-01\\n-1.55652668e-02 -2.74759382e-01 1.43121742e-02 -6.11347198e-01\\n5.34177944e-03 -6.12069249e-01 1.94613963e-01 -6.75398856e-02\\n4.96885896e-01 -2.90976763e-01 2.30536848e-01 2.08034888e-01\\n1.07845582e-01 2.14897633e-01 7.88817927e-02 -5.97029142e-02\\n-3.48980784e-01 -3.71086627e-01 -1.61017030e-01 -2.47436672e-01\\n5.12117028e-01 4.10130382e-01 -1.92550018e-01 5.92327341e-02\\n4.44644466e-02 -2.66785353e-01 -3.98478329e-01 -5.46132565e-01\\n-2.53807187e-01 9.03500244e-03 -7.82704294e-01 -4.69426453e-01\\n-4.53139469e-02 -8.54138583e-02 -1.46429867e-01 5.46790183e-01\\n-3.36801559e-01 -3.96242797e-01 3.57567631e-02 -5.05939066e-01\\n1.43684864e-01 -2.28202417e-01 1.28508732e-01 -1.51747614e-01\\n-3.67936999e-01 -3.48679811e-01 2.53284067e-01 -4.07562405e-02\\n-2.16849506e-01 -9.13586188e-03 8.00555646e-02 -1.82286590e-01\\n-3.72587740e-01 -4.15227801e-01 4.66153175e-01 1.94671117e-02\\n4.69715357e-01 3.81937958e-02 2.66449809e-01 1.65849507e-01\\n3.17319304e-01 -6.73990399e-02 1.62383169e-01 -3.85414511e-01\\n1.79283649e-01 1.07240282e-01 6.18297577e-01 -2.07874268e-01\\n1.09081268e-01 6.63672686e-02 -1.88842729e-01 -7.81591535e-02\\n5.35061419e-01 -1.32347364e-02 8.49006623e-02 -8.75882730e-02\\n3.38033080e-01 -6.07275724e-01 -2.65150607e-01 1.17672846e-01\\n9.44200233e-02 6.13503218e-01 1.19173340e-01 -4.02489305e-01\\n-2.19130918e-01 3.56717497e-01 -1.26071721e-02 -2.33864412e-01\\n-3.53765823e-02 1.35697871e-01 -2.34675512e-01 2.59641260e-01\\n4.14398238e-02 -1.02745414e-01 -3.59763771e-01 -1.06252946e-01\\n-4.67447843e-03 1.19895190e-01 2.77552038e-01 6.61204383e-02\\n-6.60742894e-02 -2.33615443e-01 -1.90102652e-01 4.89880852e-02\\n2.98529118e-01 1.81235000e-01 2.24934995e-01 -2.62540191e-01\\n-2.13816855e-02 1.65657818e-01 -2.74155170e-01 3.02139819e-01\\n-1.35436013e-01 1.42720565e-01 -5.82320452e-01 -1.70144081e-01\\n-1.51287749e-01 -1.94778919e-01 8.35760906e-02 3.25489670e-01\\n1.81200728e-01 -1.40136987e-01 1.54467430e-02 -5.23435891e-01\\n4.35875148e-01 -2.82716844e-02 1.70422569e-01 9.22565684e-02\\n2.94304453e-02 7.03125238e-01 2.95264088e-03 -1.09940767e-01\\n-1.09581277e-01 -2.67154798e-02 -2.31087551e-01 -3.07278395e-01\\n5.39803095e-02 -2.59378791e-01 -8.58666599e-02 5.35481930e-01\\n1.20779574e-01 -8.31534117e-02 -1.36404946e-01 3.87143344e-01\\n1.09270610e-01 -1.96883649e-01 -2.42362648e-01 5.10866418e-02\\n2.09193319e-01 9.68971178e-02 2.04913914e-01 -4.28164333e-01\\n-1.00052536e-01 9.71419830e-03 9.22156200e-02 4.18972433e-01\\n9.07589570e-02 1.13051079e-01 8.00696462e-02 -1.78453311e-01\\n5.67054152e-01 9.60334912e-02 -1.61276042e-01 -4.16291095e-02\\n8.18549991e-02 -2.63172269e-01 -3.66695851e-01 -1.09995067e-01\\n-9.64917988e-02 -2.23073721e-01 2.55745560e-01 5.22744097e-02\\n1.95555717e-01 -9.80728865e-02 -4.56767470e-01 -1.71233147e-01\\n-3.33397716e-01 1.05997268e-02 4.54052240e-02 -5.49170792e-01\\n7.20491707e-02 -4.02183048e-02 -5.27858436e-01 3.13907892e-01\\n-6.82210624e-02 2.87611466e-02 4.38999087e-02 1.24755196e-01\\n-2.77270526e-01 -4.56051975e-02 1.84207201e-01 4.15170975e-02\\n-3.24693471e-01 -1.89134091e-01 1.03409514e-01 -1.02677321e+00\\n1.26676291e-01 1.24714851e-01 -1.02524810e-01 9.12181381e-03\\n8.75782669e-02 -6.86721325e-01 2.37778530e-01 -4.06053632e-01\\n-7.56057398e-03 -4.57257964e-03 -2.36406073e-01 -4.07695919e-01\\n1.46696419e-01 -2.19663139e-02 -2.56065100e-01 3.84693533e-01\\n-3.89456242e-01 4.32754338e-01 1.27826676e-01 5.91984876e-02\\n1.53819114e-01 -2.34336719e-01 1.32655367e-01 -3.81609589e-01\\n-4.15430486e-01 -1.81145430e-01 -2.93640137e-01 -2.54610360e-01\\n-8.88466015e-02 -2.28400633e-01 -1.50495395e-01 -2.77552884e-02\\n3.91699553e-01 2.24117577e-01 -1.40014201e-01 -7.14004189e-02\\n6.24056756e-02 -4.05117482e-01 1.56435832e-01 -2.42518619e-01\\n-5.91115654e-02 -1.99989334e-01 2.68097073e-01 -1.71795413e-01\\n9.27866921e-02 -2.71515489e-01 5.77060580e-01 -1.37729213e-01\\n-3.95731568e-01 -1.86347678e-01 5.90676442e-02 8.92457217e-02\\n2.38279104e-01 -3.88063729e-01 -2.41003968e-02 1.94012061e-01\\n8.53145570e-02 4.54582050e-02 3.37285161e-01 -1.97537899e-01\\n-2.25930333e-01 1.92313790e-01 -7.05771923e-01 6.10249862e-02\\n6.82253838e-01 2.02412605e-01 1.93549827e-01 1.69807494e-01\\n1.01577930e-01 2.09796920e-01 4.54385430e-01 2.13664747e-03\\n-8.87271240e-02 3.08477372e-01 8.38583484e-02 -4.62562799e-01\\n-2.56530195e-01 -1.18178479e-01 -9.12429169e-02 -3.12077522e-01\\n6.00719333e-01 2.44438425e-01 -2.86056340e-01 -2.81719714e-01\\n-1.27973139e-01 -1.61838055e-01 2.74550498e-01 -8.84317979e-02\\n1.99341495e-02 -1.38268024e-01 5.38621426e-01 -2.00403202e-02\\n3.59399766e-01 4.73276496e-01 -4.53353636e-02 -2.79446363e-01\\n-6.81195483e-02 9.69032496e-02 2.03922927e-01 3.63635331e-01\\n-3.88119631e-02 1.69245183e-01 -2.68129483e-02 1.92381427e-01\\n-2.49094963e-01 6.99633658e-02 1.82192370e-01 1.35943398e-01\\n1.18421189e-01 1.13834448e-01 3.02066714e-01 3.77151072e-01\\n1.61942095e-01 4.88721550e-01 2.90234864e-01 1.17897335e-02\\n2.86609024e-01 5.61670899e-01 3.62650424e-01 2.09031664e-02\\n-1.72452368e-02 -1.34397438e-03 -6.00425759e-03 -9.80878398e-02\\n2.66844004e-01 4.00953531e-01 1.78661600e-01 7.92297542e-01\\n3.81030142e-01 4.69571769e-01 6.65763676e-01 -5.81439257e-01\\n-3.38499695e-01 7.01029450e-02 5.27422071e-01 -4.24675196e-01\\n-1.15226600e-02 2.22959548e-01 -2.94509798e-01 1.74073622e-01\\n-4.76969540e-01 -1.11876033e-01 1.64432377e-02 -2.09081516e-01\\n1.81886092e-01 -5.40319495e-02 -1.03571445e-01 1.75274074e-01\\n-1.46334127e-01 -3.06722492e-01 -2.45710105e-01 -3.27428162e-01\\n-2.81335264e-01 -3.18170637e-02 1.37376375e-02 5.17725796e-02\\n-1.01050004e-01 -3.36548805e-01 -4.33592014e-02 -7.56449997e-02\\n2.87910938e-01 -1.12311140e-01 -2.56788254e-01 -2.42934436e-01\\n6.04452938e-02 2.52319574e-01 6.51116431e-01 -5.15322722e-02\\n1.56707704e-01 -1.43173799e-01 -1.64815903e-01 -1.97396148e-02\\n1.18266575e-01 8.40550810e-02 1.19694784e-01 5.36740124e-01\\n-3.47601354e-01 -1.06118089e-02 1.81385696e-01 2.85657704e-01\\n-2.80745924e-01 7.72655103e-03 -4.40036133e-02 1.13661341e-01\\n8.68786722e-02 1.48535371e-01 -2.95798182e-01 1.02083266e-01\\n-2.39531070e-01 -6.30290270e-01 4.37041938e-01 -2.70404428e-01\\n-2.07981914e-01 1.77585948e-02 2.69734651e-01 2.63415247e-01\\n-1.60903558e-01 -3.98087054e-02 -2.11894643e-02 2.90844679e-01\\n-1.82208642e-02 4.13718879e-01 -2.04718992e-01 -1.17175870e-01\\n-3.15127075e-01 3.56620342e-01 7.70842209e-02 2.77343035e-01\\n-6.69359639e-02 4.67369735e-01 -4.68422361e-02 2.11542517e-01\\n1.95739999e-01 -1.32849231e-01 -3.22134405e-01 -2.83049375e-01\\n-2.95024723e-01 -1.34278312e-01 1.27348751e-01 -8.67331624e-02\\n2.76996523e-01 -2.31331080e-01 -8.70255977e-02 -2.02845186e-01\\n-1.96796685e-01 -4.12543774e-01 -8.97406414e-02 9.64909419e-02]]',\n", + " \"Job Informationen Key responsibilities: - Technical ownership of our's ETL processes, Master Data Management and Infomatica PowerCenter application - Design and development of backend data integration - Act as SME with third parties providing design, development and support services - Integrate with the existing middleware, data sources and the bank’s DWH solution - Build and improve data integration architecture and drive simplification - Provide change and project support for initiatives related to backend data integration - Liaise with business stakeholders and data owners of respective systems - Liaise with production support and operations teams for the all ETL flows Your profile: - Experience with ETL tools such as Infomatica PowerCenter, or similar - Advanced knowledge of PL/SQL, and different database technologies is a plus - Experience with Application Lifecycle Management - Deep knowledge of data types, data architecture disciplines and MDM concepts - Knowledge of Data infrastructure and migration principles in theory and practice - Solid experience with data modeling and database design for operational as well as analytical systems - Experience with different integration patterns, batch, online, asynchronous, etc. - Basic knowledge of both Windows and Linux operating systems and shell scripting - Working proficiency in development toolsets, e.g. Eclipse or similar - Proficiency in one or more general purpose programming languages understanding of software skills such as -business analysis, development, maintenance and software improvement - Experience in Data Warehousing environment, experience in handling large volume of data is a plus - Ability to work and technically coordinate with 3rd party vendors (both onsite and offshore) - Work experience in financial or banking industry is a plus - Team player with good communication skills and an open style to provide transparency to management - ITIL 3.0 foundation certification - English and german spoken and written Benötigte Skills Englisch ITIL Banken / Finanzgesellschaften Datawarehouse Eclipse W2008 W2012 Linux Shell-Scripts PL/SQL ETL\",\n", + " '[\"Coordinating\", \"Verbal Communication Skills\", \"Operations\", \"Integration\"]',\n", + " '[\"PL/SQL\", \"Tooling\", \"KM Programming Language\", \"Shell Script\", \"Joint Application Design (JAD)\", \"Application Lifecycle Management\", \"Data Modeling\", \"Pentaho Data Integration\", \"Analytics\", \"Middleware\", \"Operating System Development\", \"Data Integration\", \"Industrialization\", \"Data Warehousing\", \"Offshoring\", \"ITIL Security Management\", \"Apex Data Loader\", \"Linux\", \"E (Programming Language)\", \"Eclipse (Software)\", \"Extract Transform Load (ETL)\", \"Database Design\", \"Academic Support Services\", \"Lifecycle Management\", \"Natural Language Understanding\", \"Production Support\", \"Business Analysis\", \"Clinical Data Management\", \"Data Infrastructure\", \"Transparency (Human-Computer Interaction)\", \"Process Safety Management\", \"Banking\", \"Custom Backend\", \"Acceptance and Commitment Therapy (ACT)\", \"Source Data\"]',\n", + " \"['English', 'Kalaallisut']\"],\n", + " ['145',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[ 4.90229800e-02 2.97917128e-01 4.39905524e-01 7.03050867e-02\\n5.21131754e-01 -2.16982588e-01 -3.99645828e-02 4.95162368e-01\\n-4.02844995e-02 -5.36455035e-01 9.40928385e-02 -1.14590101e-01\\n-1.49782866e-01 1.09880485e-01 4.10227664e-02 4.17319089e-01\\n2.88221031e-01 1.62648827e-01 -1.93620488e-01 3.20761919e-01\\n1.27973095e-01 -8.01675543e-02 1.66979223e-01 7.15268552e-01\\n4.30098027e-01 -8.08927938e-02 -1.00524791e-01 -2.22665351e-02\\n-2.60259390e-01 -2.64580011e-01 2.83885896e-01 3.00317854e-02\\n-9.15894844e-03 -3.50295514e-01 1.13630824e-01 -7.57706687e-02\\n-2.79735386e-01 -1.43612120e-02 -1.06526609e-03 2.13685796e-01\\n-5.42728007e-01 -2.58182436e-01 -2.00369293e-04 -3.26127298e-02\\n-2.40542024e-01 -2.40969792e-01 -1.37284445e-03 -1.06943876e-01\\n1.98715106e-01 7.02873617e-02 -5.09317517e-01 2.31335938e-01\\n-1.80450886e-01 -2.15089709e-01 3.09043199e-01 5.71866632e-01\\n1.43685967e-01 -4.15235132e-01 -5.44164896e-01 -3.07650894e-01\\n1.54684186e-01 -1.26219854e-01 -1.23524956e-01 -2.73860574e-01\\n2.78269470e-01 -6.38677552e-03 4.23559658e-02 2.43443742e-01\\n-7.64444172e-01 1.69372093e-03 -1.06222861e-01 -7.98086971e-02\\n-4.12060112e-01 -7.79623091e-02 -2.04859614e-01 -5.67695946e-02\\n1.58206448e-02 4.21798050e-01 1.84037447e-01 4.15711738e-02\\n-1.74852207e-01 3.21402937e-01 -2.01201767e-01 3.69817376e-01\\n1.71229944e-01 2.05713451e-01 1.23940267e-01 3.58641565e-01\\n-3.64917427e-01 4.28739816e-01 2.52892047e-01 -2.61655450e-01\\n2.54364282e-01 5.74528389e-02 5.17502487e-01 -9.90852043e-02\\n7.18632564e-02 6.49723858e-02 -2.51405239e-01 4.56787169e-01\\n1.83500156e-01 -2.68869430e-01 8.94334316e-02 -1.10007077e-01\\n7.14004319e-03 1.07774343e-02 6.44368827e-02 2.03074798e-01\\n-8.56987461e-02 4.62229759e-01 1.70712546e-01 -1.80773661e-01\\n-1.75357416e-01 -3.61860633e-01 4.96655889e-02 -5.22858053e-02\\n7.01624528e-02 2.40798667e-01 2.86226392e-01 1.06877409e-01\\n1.31891638e-01 1.05866447e-01 1.81113243e-01 9.39289510e-01\\n-1.26703814e-01 5.76909184e-02 -3.44789743e-01 1.21241055e-01\\n1.49034292e-01 -3.63606036e-01 2.50193179e-01 3.35075498e-01\\n-1.84964593e-02 -1.48586616e-01 -1.44163862e-01 2.59524494e-01\\n1.45316347e-01 -1.63228199e-01 -2.74204075e-01 8.20346624e-02\\n-1.31944761e-01 -3.01126182e-01 5.97357094e-01 1.84695750e-01\\n1.26479939e-01 -5.28316088e-02 -6.60626218e-02 -1.51135638e-01\\n-1.39598727e-01 2.64438450e-01 -7.25273192e-02 1.57592744e-01\\n-3.64943355e-01 -2.42020994e-01 -2.20878467e-01 1.08098248e-02\\n-2.63684630e-01 8.44867714e-03 3.02194972e-02 -1.32325694e-01\\n2.21328184e-01 4.78991941e-02 -2.31505305e-01 2.59641618e-01\\n-7.82069489e-02 1.45271346e-02 9.61283073e-02 3.04035127e-01\\n-1.18358001e-01 2.67371118e-01 -1.67370252e-02 1.42752416e-02\\n5.66132247e-01 9.33041722e-02 7.60053247e-02 -5.61900400e-02\\n3.97335827e-01 -1.38681307e-01 9.38635841e-02 1.88586682e-01\\n-5.47605872e-01 2.37958938e-01 -1.33755699e-01 -9.03653577e-02\\n1.04015723e-01 -1.54397534e-02 2.73853391e-01 -2.45076358e-01\\n-5.24954917e-03 -1.26831234e-01 -3.56160939e-01 -3.11813205e-01\\n-1.58239558e-01 1.67962350e-02 4.70927179e-01 -4.62002218e-01\\n-1.79054558e-01 3.42160493e-01 -4.06109035e-01 -5.07237352e-02\\n2.00700894e-01 1.98570341e-01 1.35579780e-01 5.45782000e-02\\n-3.11292857e-01 -4.37252373e-01 5.60363345e-02 -3.59499454e-01\\n-3.59844267e-01 4.84139509e-02 -2.54474133e-01 2.97530681e-01\\n1.29817173e-01 5.56956232e-02 -1.75994784e-01 1.19772732e-01\\n-1.82454899e-01 -1.63502708e-01 1.66017056e-01 9.12023559e-02\\n2.33028099e-01 -2.07305537e-04 -3.27303827e-01 3.47200155e-01\\n-2.16579825e-01 5.40561795e-01 1.28396228e-01 -9.23711836e-01\\n4.39514369e-01 2.39880487e-01 -8.72563049e-02 -3.95572186e-01\\n5.28012633e-01 -2.36039132e-01 6.11040322e-03 1.49542898e-01\\n-3.11635137e-01 -3.51612061e-01 2.95361549e-01 -9.72519815e-02\\n-3.02343488e-01 4.42996919e-01 6.24808334e-02 5.79570569e-02\\n1.32670969e-01 -1.85301438e-01 -1.39385387e-01 3.32112759e-02\\n2.88467091e-02 -2.50473887e-01 -4.25768584e-01 5.15406206e-02\\n-1.11733839e-01 -4.64803636e-01 -3.68338004e-02 -3.38356733e-01\\n-2.76383817e-01 -3.71631950e-01 -1.60122886e-01 4.16003644e-01\\n2.71352887e-01 1.64722472e-01 -1.19958082e-02 8.62305332e-03\\n-1.26696408e-01 -5.61281621e-01 1.05358684e-03 1.58699274e-01\\n4.98374522e-01 1.85555845e-01 1.37598604e-01 4.00808603e-02\\n8.80823359e-02 6.30084395e-01 -8.41415673e-02 -1.70300141e-01\\n1.68344639e-02 1.60772681e-01 3.74805667e-02 -1.80662543e-01\\n9.05907899e-02 3.68793428e-01 -1.82320610e-01 7.03947544e-02\\n-3.65675911e-02 -5.43992668e-02 3.05132896e-01 6.49728477e-02\\n-3.68243754e-01 -2.58017033e-01 -1.24566980e-01 7.92000070e-02\\n-5.91980815e-01 -1.38440982e-01 6.71019852e-01 9.19051319e-02\\n1.09320365e-01 4.77070473e-02 1.57038569e-01 -9.88913029e-02\\n-8.97527710e-02 -1.39424846e-01 2.49182880e-01 1.48275048e-01\\n6.21557832e-02 1.30021811e-01 -6.66223094e-02 -6.58248842e-01\\n-3.67480326e+00 -2.29925990e-01 1.48332387e-01 -3.07796061e-01\\n1.49848357e-01 -1.55036569e-01 1.09026376e-02 -9.40375701e-02\\n-1.93540439e-01 -1.36013729e-02 -1.58369407e-01 -1.33279152e-02\\n1.69032544e-01 1.64100274e-01 7.87530765e-02 2.78886646e-01\\n1.95263594e-01 -8.62191916e-02 -1.91642135e-01 3.37890923e-01\\n-1.97389334e-01 -4.34735656e-01 3.38154197e-01 -5.47892880e-04\\n3.08338851e-01 1.18616156e-01 -2.40605205e-01 -3.42522562e-02\\n-1.34146795e-01 -1.78933680e-01 3.90813611e-02 -1.03651412e-01\\n-1.09375186e-01 2.75964707e-01 2.41375700e-01 -1.20446779e-01\\n2.53881067e-01 -4.28811640e-01 -9.00486261e-02 -3.90702218e-01\\n1.08340807e-01 -6.85738385e-01 -8.23402107e-02 -2.55763650e-01\\n6.68185115e-01 -2.90078878e-01 9.19390656e-03 1.43376747e-02\\n2.29970768e-01 1.78290725e-01 -1.57695822e-02 -2.45004147e-02\\n-1.66011795e-01 -2.95519501e-01 -8.72104988e-02 -1.95148528e-01\\n5.03344059e-01 6.17993414e-01 -2.30630606e-01 -1.67314500e-01\\n4.95820493e-02 -2.17338920e-01 -5.18517375e-01 -3.22742075e-01\\n-1.63678885e-01 -2.29304641e-01 -6.06425166e-01 -3.15599173e-01\\n-1.38748556e-01 -1.04703188e-01 -1.88564092e-01 5.85413098e-01\\n-2.41186112e-01 -3.89125556e-01 5.27560152e-02 -3.28469068e-01\\n1.97466105e-01 -9.14533660e-02 7.00900843e-03 -1.46995991e-01\\n-2.92783588e-01 -3.89106423e-01 1.29827829e-02 -1.70806572e-02\\n-1.79119691e-01 -3.99387568e-01 -1.05220536e-02 -2.73325980e-01\\n-2.57143617e-01 -3.91739696e-01 4.70210642e-01 9.39262956e-02\\n3.25395674e-01 8.23065192e-02 4.80847508e-01 4.50396203e-02\\n2.98660010e-01 -1.77257329e-01 -7.04686251e-03 -4.97215420e-01\\n1.87265590e-01 -2.57863533e-02 5.11380792e-01 -2.63171762e-01\\n5.67363687e-02 1.22685075e-01 -2.55335897e-01 -4.13114391e-02\\n3.17553639e-01 2.52914894e-02 -1.53527400e-02 -1.22701488e-01\\n3.02402765e-01 -2.04782948e-01 -3.00792664e-01 6.33167624e-02\\n1.83470786e-01 4.42046970e-01 -3.44368480e-02 -4.88886029e-01\\n-2.26990566e-01 4.50808197e-01 -1.02485582e-01 -1.01845235e-01\\n-2.55794168e-01 1.79100290e-01 -1.86688736e-01 1.72387838e-01\\n-1.54618705e-02 -8.44695196e-02 -2.99323857e-01 -2.42612109e-01\\n-1.02214143e-01 2.27265224e-01 1.14673987e-01 1.11041209e-02\\n1.65615082e-02 -3.84036839e-01 -1.07313462e-01 1.98038563e-01\\n2.40716875e-01 3.09013933e-01 1.41834840e-01 -1.25459120e-01\\n-1.72623277e-01 4.77681458e-01 -2.96323925e-01 4.95484993e-02\\n-2.49966741e-01 8.00705105e-02 -4.89998788e-01 -3.02763820e-01\\n-2.52651334e-01 -3.22511077e-01 1.19988434e-01 1.48235321e-01\\n1.22521393e-01 -5.52958660e-02 2.80120783e-03 -4.96964097e-01\\n2.61990607e-01 3.57899070e-02 9.99776125e-02 1.21592194e-01\\n1.25403032e-01 4.58060145e-01 -2.42090970e-02 -1.63799182e-01\\n-1.56555012e-01 3.51100750e-02 -1.36328474e-01 -5.96082173e-02\\n-2.92110676e-03 -4.60033536e-01 -7.96466097e-02 4.47527617e-01\\n1.96670100e-01 -3.13334018e-01 -1.95950016e-01 2.48417735e-01\\n4.38527726e-02 -2.45991260e-01 -8.49739239e-02 -1.98643040e-02\\n3.21872294e-01 6.22354522e-02 3.93752158e-01 -4.38779294e-01\\n-2.90494561e-02 3.23878191e-02 -2.10317880e-01 5.09623110e-01\\n1.02035470e-01 -4.49573547e-02 -7.26781785e-02 -4.13856581e-02\\n4.06417221e-01 3.84614766e-02 -8.89194608e-02 -1.17779650e-01\\n1.46644920e-01 -1.80050105e-01 -5.72130322e-01 1.09475195e-01\\n-5.03441878e-02 -1.59073472e-01 5.63799357e-03 1.26731731e-02\\n1.30923003e-01 1.31024033e-01 -4.96383607e-01 -1.85334429e-01\\n-3.71792674e-01 -1.69018418e-01 6.25220537e-02 -4.35256511e-01\\n-4.08742996e-03 6.44582286e-02 -4.65459764e-01 2.07544744e-01\\n-2.92049229e-01 2.06500408e-03 1.54819628e-02 9.77155566e-02\\n-3.23667169e-01 -3.83040942e-02 7.15091974e-02 2.07367122e-01\\n-1.71860948e-01 -2.81139731e-01 1.17594592e-01 -1.04733026e+00\\n1.43595576e-01 7.35743195e-02 -2.35966176e-01 9.56095904e-02\\n-3.63203548e-02 -5.64536393e-01 1.44158825e-01 -4.01565969e-01\\n-9.66879949e-02 -4.58510891e-02 -1.74676687e-01 -4.60682869e-01\\n1.10469975e-01 -9.85078141e-03 -4.54157263e-01 2.89801389e-01\\n-3.76395017e-01 3.04196566e-01 3.39493644e-03 1.34901360e-01\\n1.04267895e-01 -3.27947676e-01 -2.28601657e-02 -5.45770943e-01\\n-5.66141427e-01 -1.06665514e-01 -3.73360246e-01 -3.14507902e-01\\n-3.01770307e-02 -4.02879477e-01 -1.78008631e-01 1.24009684e-01\\n2.70601392e-01 1.30757272e-01 -3.57931517e-02 -3.56963456e-01\\n5.80498762e-02 -5.44255614e-01 -2.08090488e-02 3.85423787e-02\\n-7.53510445e-02 -1.18216053e-01 3.78738582e-01 1.00925686e-02\\n1.26456633e-01 -3.71195346e-01 4.65350181e-01 -3.51531327e-01\\n-1.29802987e-01 -8.65236297e-02 1.05208512e-02 3.73173766e-02\\n2.73024619e-01 -4.92679209e-01 6.35693744e-02 2.66594321e-01\\n1.39498234e-01 1.15148783e-01 2.53251880e-01 -4.40950543e-02\\n-1.08120166e-01 1.65892795e-01 -2.95463413e-01 8.96564052e-02\\n7.90868640e-01 -8.33253637e-02 2.04687297e-01 1.40607312e-01\\n7.50428066e-02 1.82200834e-01 5.23168862e-01 -3.07234786e-02\\n-1.83045864e-01 1.91279069e-01 5.46168089e-02 -3.98158908e-01\\n-3.20634730e-02 -3.54945101e-02 -3.36782455e-01 -3.32100272e-01\\n6.57620490e-01 4.60989863e-01 -3.84891927e-01 -2.38872096e-01\\n-1.65248394e-01 -1.45280868e-01 1.63825035e-01 -1.28773123e-01\\n-2.25439910e-02 -1.30001456e-01 4.39656615e-01 -3.36288624e-02\\n2.60023266e-01 4.40848976e-01 -1.83954418e-01 -4.37244833e-01\\n1.25938281e-03 1.51654854e-01 6.66578263e-02 4.28770423e-01\\n-2.65140593e-01 1.96871310e-01 3.48326080e-02 2.07846329e-01\\n-1.57927632e-01 1.23226017e-01 2.02100482e-02 1.68790236e-01\\n1.71384498e-01 6.45633787e-02 5.08594394e-01 4.54661310e-01\\n3.46415043e-01 4.41684544e-01 3.40123832e-01 3.80693451e-02\\n4.54511315e-01 4.60954458e-01 3.58160764e-01 1.61977410e-01\\n-5.47797419e-02 6.34168461e-02 1.00292727e-01 -1.00612789e-01\\n4.17820632e-01 3.09857547e-01 1.58717155e-01 8.05959582e-01\\n2.91433096e-01 3.02615970e-01 5.96797407e-01 -5.58560312e-01\\n-3.27021092e-01 4.34430651e-02 4.73246276e-01 -3.39711905e-01\\n-1.45276070e-01 6.28827959e-02 -1.93137437e-01 1.84252515e-01\\n-4.25452471e-01 -2.51263678e-01 -1.25781044e-01 2.42539048e-01\\n-7.14948550e-02 -1.21070378e-01 -2.86172926e-01 6.34597242e-02\\n-2.99935732e-02 5.52443862e-02 -4.06489462e-01 -2.06967909e-02\\n-1.58962607e-01 -9.27588865e-02 -1.23826332e-01 -1.63735658e-01\\n-8.75240415e-02 -4.91472453e-01 -9.39831436e-02 1.92536612e-03\\n1.52665004e-01 -1.22879528e-01 -2.00113617e-02 -9.03527215e-02\\n2.61674345e-01 2.38915756e-01 5.27828395e-01 2.15206698e-01\\n6.81920946e-02 -3.24095726e-01 -2.37543955e-01 1.62505552e-01\\n9.98783782e-02 1.04766212e-01 5.57429381e-02 2.73743749e-01\\n-3.04069191e-01 -8.33827704e-02 9.51043740e-02 3.46847326e-01\\n-3.91505688e-01 -7.37886727e-02 -7.90476799e-02 2.53250539e-01\\n1.26460254e-01 1.29253283e-01 -2.72975028e-01 3.08794305e-02\\n-2.56497532e-01 -3.58349681e-01 2.75747746e-01 -1.55192122e-01\\n1.39598660e-02 3.67554724e-02 1.18441224e-01 1.48936793e-01\\n-2.30613381e-01 -4.28503565e-03 -5.72739840e-02 2.51130074e-01\\n1.20921925e-01 2.41342485e-01 -1.25145823e-01 -2.94571847e-01\\n-2.95653969e-01 2.37815455e-01 -1.36709930e-02 1.33002535e-01\\n-1.16710896e-02 3.60873789e-01 -4.83247526e-02 8.16527009e-02\\n4.85785723e-01 -3.00786458e-02 -8.01000893e-02 -1.46404862e-01\\n-3.41889620e-01 -3.29969913e-01 -3.58666219e-02 -9.21188518e-02\\n1.63640395e-01 -3.08218509e-01 3.42501812e-02 -4.25913446e-02\\n-1.09584853e-01 -2.91119158e-01 9.99695882e-02 -2.12022245e-01]]',\n", + " 'Beekeeper is a fast growing SaaS company disrupting the way 2 billion people working “out in the field” communicate within their companies. Are you eager to shape the future of traditional industries like hospitality, retail, manufacturing or transportation using latest mobile technology? We are looking for the most talented and passionate individuals that love to work in demanding and international environments. We are a lean development team that moves fast. We push to production multiple times a day and continuously iterate on our products. This is an exciting time to join if you truly want to be involved in developing the core product at a tech driven company. As a Software Engineer you have the opportunity to work on all of our software stack and learn about state-of-the art web and mobile development. Technologies that you will work on are ElasticSearch, Realm.io, RabbitMQ, Backbone.js, Docker, Saltstack, Amazon Web Services, MySQL and interfacing them with different programming languages like Python, Java, Objective-C and Javascript. Your responsibilities Translate requirements, designs and wireframes into inspiring user experiencesBuild and maintain high-performance, reusable and reliable codeWork closely with other passionate software engineers to develop and ship new features What we look for BSc or MSc degree in Computer Science or related technical field or equivalent practical experienceExperience using RESTful APIs and handling JSON dataYou care about code quality and continuous refactoringProficiency in English as we speak mainly English at work Bonus Points You can show us programming projects that you work on in your free timeWe love an entrepreneurial mindsetWhat we offer youCompetitive salaryDynamic work environmentWeekly Bee-BreakfastFree Coffee, Fresh Fruits and a lot of Snacks Interested? We are looking for passionate, self-driven individuals. Thus we are interested in links/information to any projects you have done inside/outside your day job. Applications over videojobs.ch Job Type: Full-time',\n", + " '[\"Reliability\", \"Communications\", \"Hospitality\"]',\n", + " '[\"MySQL\", \"KM Programming Language\", \"Programming (Music)\", \"Computer Science\", \"High Performance Computing\", \"Backbone.js\", \"Beekeeping\", \"Industrialization\", \"Objective-C (Programming Language)\", \"Python (Programming Language)\", \"Maintainability\", \"Translations\", \"Iterators\", \"Lean Product Development\", \"Software Engineering\", \"Mobility\", \"RabbitMQ\", \"Docker (Software)\", \"Web Services\", \"Wireframing\", \"Mobile Application Development\", \"JavaScript (Programming Language)\", \"Core Product\", \"Amazon Web Services\", \"RESTful API\", \"Java (Programming Language)\", \"JSON\", \"Elasticsearch\"]',\n", + " \"['English', 'Corsican', 'Bashkir']\"],\n", + " ['75',\n", + " 'full-stack software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " '[\"Innovation\", \"Operations\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English', 'North Ndebele', 'Yiddish']\"],\n", + " ['75',\n", + " 'data engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.51825631e-01 2.60474980e-01 4.06874985e-01 3.90913012e-03\\n4.12762940e-01 -1.23509467e-01 4.15141247e-02 1.99809834e-01\\n-5.73633872e-02 -3.32715869e-01 -8.14895481e-02 -2.22888529e-01\\n-1.08683847e-01 -8.90786946e-02 6.65177479e-02 4.58354712e-01\\n2.12481126e-01 1.29846826e-01 -1.25317678e-01 2.87066758e-01\\n1.07233323e-01 -2.88710091e-02 -3.41112688e-02 6.10245287e-01\\n4.81369436e-01 -2.63749976e-02 -1.07174106e-01 -1.31487604e-02\\n-2.51145959e-01 -2.75283664e-01 4.13886905e-01 6.83189109e-02\\n-1.65120408e-01 -2.11267978e-01 1.40884995e-01 1.06072046e-01\\n-2.27530733e-01 1.44333303e-01 -6.86841607e-02 2.22526193e-01\\n-3.98599684e-01 -2.54618526e-01 5.05172424e-02 -5.64737916e-02\\n-3.44995409e-01 -2.60444105e-01 -1.10870227e-02 6.98255468e-03\\n1.07521668e-01 3.31220776e-02 -4.24388617e-01 3.93952191e-01\\n-1.72791839e-01 -1.72602102e-01 2.19175339e-01 6.53271139e-01\\n6.78159148e-02 -5.71692646e-01 -3.86664540e-01 -3.44647557e-01\\n4.50987592e-02 -9.91723314e-02 1.18895866e-01 -1.65271431e-01\\n5.11818767e-01 -1.23031735e-01 -1.26418531e-01 3.62204283e-01\\n-7.39447236e-01 -2.74331332e-03 -3.33312154e-01 -5.51505797e-02\\n-3.76908571e-01 1.02122463e-02 -4.44090396e-01 -5.12092002e-02\\n-1.20048098e-01 4.02851760e-01 1.38234887e-02 1.47980705e-01\\n-1.34200513e-01 2.04484105e-01 -2.23475248e-01 2.54216611e-01\\n3.05090219e-01 1.64455652e-01 3.44829649e-01 2.42483169e-01\\n-4.02494699e-01 3.94097179e-01 2.37292767e-01 -3.18601221e-01\\n2.69708216e-01 6.48515150e-02 3.89104009e-01 1.75005004e-01\\n3.66164111e-02 1.09661408e-01 -1.35631844e-01 2.48268828e-01\\n1.88856825e-01 -2.47985587e-01 4.59713377e-02 -1.31332695e-01\\n-8.80389065e-02 3.35684046e-02 3.75377722e-02 2.09851697e-01\\n-1.90073296e-01 4.02840495e-01 1.58524260e-01 -2.16959044e-01\\n-1.32938072e-01 -5.41697264e-01 -2.07490698e-01 -6.17225468e-02\\n7.55854100e-02 2.19490096e-01 2.24812925e-01 1.64613068e-01\\n1.12234317e-01 3.60421627e-03 1.60512492e-01 7.86299706e-01\\n9.62958671e-03 -5.54945506e-03 -2.67482549e-01 3.42391551e-01\\n1.83584869e-01 -2.69618630e-01 2.08376229e-01 1.88845098e-01\\n6.77909032e-02 -1.02915347e-01 -3.08481932e-01 2.69387037e-01\\n-1.52751639e-01 -2.27202863e-01 -2.46799976e-01 9.60297585e-02\\n-1.13200359e-01 -5.01638114e-01 5.74499190e-01 3.83302309e-02\\n2.43318319e-01 -1.86638422e-02 3.16164158e-02 -1.32968292e-01\\n-1.04667917e-01 3.02572399e-01 5.87792173e-02 1.64582431e-01\\n-1.81787014e-01 -2.48159960e-01 -1.69674158e-01 3.35976124e-01\\n-2.33164728e-01 1.25408575e-01 -1.30628213e-01 -1.41185045e-01\\n2.35079348e-01 1.84523135e-01 -3.36098671e-01 1.39131725e-01\\n-4.33384813e-02 -2.79624462e-01 -9.41888094e-02 3.25221926e-01\\n-1.79208934e-01 2.02472001e-01 8.78532082e-02 -1.27766788e-01\\n6.38435960e-01 2.56646931e-01 2.92353541e-01 2.13959310e-02\\n1.52816474e-01 -1.13505729e-01 2.73565948e-01 1.16688170e-01\\n-6.16993725e-01 4.35447454e-01 -7.00093508e-02 -2.90477931e-01\\n9.86669511e-02 9.27900076e-02 3.29949647e-01 -3.07409734e-01\\n-1.34536298e-02 -1.50021210e-01 -3.96039814e-01 -3.82384896e-01\\n-2.97211349e-01 2.81291287e-02 3.56320262e-01 -4.55654114e-01\\n-4.96302024e-02 2.05018222e-01 -5.30018330e-01 -1.18802428e-01\\n1.44493997e-01 9.29223821e-02 8.33150670e-02 1.02669440e-01\\n-1.24997087e-01 -6.28048241e-01 1.10602073e-01 -4.84517217e-01\\n-5.12431026e-01 2.80219689e-02 -3.27802420e-01 1.89743251e-01\\n1.26870364e-01 5.79458438e-02 -1.10783301e-01 1.41091600e-01\\n-2.75790840e-01 -4.83251251e-02 1.58106983e-01 1.96318284e-01\\n2.21045732e-01 -2.85191424e-02 -4.48545605e-01 5.79974473e-01\\n-1.11586012e-01 4.94819164e-01 2.65643537e-01 -9.00029421e-01\\n5.06973147e-01 1.69948176e-01 7.97947776e-03 -3.21403414e-01\\n4.01795536e-01 -3.76653045e-01 3.63695109e-03 1.09997049e-01\\n-1.96758896e-01 -1.43344507e-01 2.97089636e-01 -2.28747949e-01\\n-1.85660958e-01 5.00354826e-01 1.56889275e-01 -2.66454206e-03\\n2.98233360e-01 -2.06315815e-01 -1.24548070e-01 -1.02669075e-02\\n-1.44548327e-01 -1.95586964e-01 -3.82662416e-01 1.58996433e-01\\n-7.86734223e-02 -4.84353006e-01 -8.73262659e-02 -4.72779334e-01\\n-1.16279885e-01 -4.15782481e-01 -1.42055020e-01 2.38905191e-01\\n8.57087448e-02 2.13840440e-01 1.10041238e-02 -5.72525058e-03\\n-5.48504144e-02 -6.91962421e-01 -1.62524998e-01 9.88482684e-03\\n5.10468781e-01 2.04337016e-01 9.47710201e-02 -7.04658628e-02\\n5.84301539e-02 5.51369786e-01 -3.94084901e-01 -3.39456797e-01\\n1.02381475e-01 1.21447504e-01 4.20704260e-02 -8.44804421e-02\\n2.01594774e-02 3.26476187e-01 -1.15393169e-01 6.01187162e-02\\n-1.07294798e-01 9.18031484e-03 3.79638135e-01 -2.72027794e-02\\n-3.50476861e-01 -2.48713583e-01 -8.75295140e-03 2.79276311e-01\\n-4.78896528e-01 -2.76080102e-01 6.66689992e-01 3.53838354e-01\\n1.72114864e-01 2.69477487e-01 1.88976288e-01 -1.05627529e-01\\n-3.06986183e-01 -1.38842985e-01 2.64395922e-01 5.07715084e-02\\n1.79934829e-01 6.87500313e-02 -9.37601998e-02 -5.51650047e-01\\n-3.45617294e+00 -1.59167334e-01 6.00946583e-02 -2.69181520e-01\\n2.22532228e-01 -1.19356267e-01 2.26290971e-01 -1.07640155e-01\\n-3.52591455e-01 1.63185075e-02 -2.38639116e-01 -1.54561669e-01\\n-2.47431025e-02 2.80270457e-01 1.48224413e-01 1.76661178e-01\\n8.34619701e-02 -2.41139367e-01 -6.48709983e-02 3.45764905e-01\\n-5.38675450e-02 -6.52972996e-01 1.25706375e-01 1.62342906e-01\\n2.28207782e-01 9.39554051e-02 -3.68526787e-01 2.16445373e-03\\n-3.19679767e-01 -2.95057744e-01 9.68569592e-02 -2.52098739e-01\\n-1.75540447e-01 1.82250366e-01 1.21507123e-01 -1.99820533e-01\\n-3.66200693e-03 -2.52440810e-01 1.59284158e-03 -4.46149945e-01\\n-9.71083995e-03 -5.48551023e-01 1.31949224e-02 -4.83073853e-02\\n6.27601206e-01 -2.24560305e-01 2.26770341e-01 5.16676456e-02\\n1.40765026e-01 1.36780426e-01 6.56074584e-02 1.35411620e-02\\n-3.66673350e-01 -4.08929765e-01 -2.62509007e-02 -9.66215059e-02\\n6.38189673e-01 4.30419713e-01 -1.71735585e-01 4.97675277e-02\\n1.77173004e-01 -3.06105733e-01 -4.05683547e-01 -4.12492245e-01\\n-1.63999006e-01 -1.37768731e-01 -6.63295805e-01 -4.54915971e-01\\n-1.86964288e-01 -1.10862769e-01 -1.82278544e-01 5.10123312e-01\\n-2.72231877e-01 -4.30654615e-01 5.24025485e-02 -5.82034886e-01\\n2.29737967e-01 -1.78951398e-01 6.68383241e-02 -8.81958529e-02\\n-3.17720562e-01 -4.36096460e-01 1.10377043e-01 1.37527386e-04\\n-1.57818541e-01 -5.13851345e-02 3.10337692e-02 -2.56302059e-01\\n-3.82413656e-01 -4.09794241e-01 3.85798901e-01 -4.93684560e-02\\n3.07307214e-01 1.62749335e-01 3.46961230e-01 -1.23518417e-02\\n3.30809325e-01 -9.38806459e-02 1.22044422e-01 -4.36575681e-01\\n5.88232428e-02 5.99186197e-02 5.30385435e-01 -1.94078073e-01\\n1.38182849e-01 1.99168697e-01 -2.35549599e-01 -1.52561143e-02\\n4.38397706e-01 2.93889996e-02 1.51043683e-01 -8.27541947e-02\\n3.21023911e-01 -4.90401089e-01 -2.41959542e-01 9.52189416e-02\\n3.98007743e-02 6.27971530e-01 1.22550717e-02 -3.19577575e-01\\n-2.19403937e-01 4.94724840e-01 -1.41357496e-01 2.92669167e-03\\n-2.26926267e-01 7.22688213e-02 -1.24678515e-01 3.19668949e-01\\n-2.93432847e-02 -1.32108867e-01 -2.33987346e-01 -1.50121361e-01\\n-1.90603379e-02 1.68865800e-01 3.31338465e-01 4.37973477e-02\\n-4.29568486e-03 -2.61072934e-01 -1.45804599e-01 1.30059779e-01\\n2.15383098e-01 3.09285879e-01 2.19826281e-01 -2.33421117e-01\\n8.64105579e-03 1.80046409e-01 -2.62194335e-01 3.33031684e-01\\n-2.35327572e-01 1.49751469e-01 -4.21157002e-01 -1.95989326e-01\\n-1.43557996e-01 -4.04698461e-01 2.13273093e-01 2.74257511e-01\\n4.02743034e-02 -3.12148705e-02 2.34329477e-02 -4.95411426e-01\\n3.43155980e-01 1.47206247e-01 9.97711048e-02 1.83086798e-01\\n-3.53230610e-02 5.60517550e-01 -6.76355734e-02 -5.54673225e-02\\n-7.39993826e-02 -9.27753672e-02 -2.23753348e-01 -2.72373199e-01\\n-7.40292249e-03 -3.91076952e-01 -1.23958036e-01 5.02334833e-01\\n1.34085983e-01 -4.93663624e-02 -2.04096958e-01 2.16150358e-01\\n4.30973731e-02 -2.40580007e-01 -1.54961780e-01 2.27288101e-02\\n1.69617802e-01 1.44615844e-01 2.80243039e-01 -1.89721644e-01\\n-4.20743078e-02 2.86255460e-02 -6.38674572e-02 3.52844536e-01\\n1.01636231e-01 3.22218478e-01 -9.34881717e-02 -2.06299379e-01\\n6.11861289e-01 -5.66385947e-02 -5.39067276e-02 2.34690774e-02\\n6.22447804e-02 -3.97749394e-01 -3.83638471e-01 -2.45415941e-02\\n-3.19145247e-02 -1.99975058e-01 1.67137936e-01 1.04846403e-01\\n-4.85431850e-02 9.38702282e-03 -5.34934759e-01 -3.33273679e-01\\n-3.90988827e-01 -1.03051923e-01 1.07925296e-01 -4.55331475e-01\\n-1.08745925e-01 -5.02521768e-02 -6.04119301e-01 2.27425337e-01\\n-1.45630702e-01 -8.17643572e-03 6.49053752e-02 1.02700450e-01\\n-2.54541695e-01 -1.35008797e-01 7.72136450e-02 1.52527645e-01\\n-2.81220585e-01 -1.59214705e-01 -7.41408616e-02 -9.39887762e-01\\n1.47070691e-01 1.54017136e-01 -6.54764026e-02 1.71024829e-01\\n-6.76990971e-02 -5.90289056e-01 1.89387321e-01 -4.63828146e-01\\n3.67790752e-04 -1.42353857e-02 -1.91268787e-01 -4.46040869e-01\\n1.01977892e-01 1.03938334e-01 -2.80991137e-01 4.55224127e-01\\n-3.94144893e-01 3.41177791e-01 -9.19238850e-03 4.80700098e-02\\n-9.44248342e-04 -1.75338417e-01 1.51999325e-01 -1.99774384e-01\\n-4.05616432e-01 -2.71523982e-01 -4.00357276e-01 -1.99043810e-01\\n7.20948130e-02 -2.80739278e-01 -2.77766258e-01 1.38193101e-01\\n3.83717149e-01 2.13652223e-01 -1.71549916e-01 -2.23110259e-01\\n-2.52121016e-02 -4.94314730e-01 2.09761068e-01 -3.30540717e-01\\n-1.26056790e-01 -1.46898553e-01 2.22121134e-01 -7.53607601e-02\\n4.37708832e-02 -3.27965051e-01 4.96296585e-01 -1.99786767e-01\\n-3.84689242e-01 -1.52160496e-01 1.13038793e-01 -6.71877386e-03\\n2.90878177e-01 -4.57247913e-01 -8.59604925e-02 2.40713045e-01\\n3.13264430e-02 3.02072684e-03 2.21206695e-01 -5.71260564e-02\\n-1.72777936e-01 2.29112029e-01 -5.92693686e-01 4.41704430e-02\\n6.93508029e-01 2.16440737e-01 9.44155976e-02 1.93545997e-01\\n1.89588726e-01 3.29721212e-01 5.19270420e-01 -3.85815129e-02\\n-2.60146689e-02 3.30117077e-01 -7.49609992e-02 -5.14422357e-01\\n-1.64178293e-02 -6.90113381e-02 -1.46261796e-01 -3.30333859e-01\\n5.92500806e-01 3.05447727e-01 -3.70984644e-01 -3.96625876e-01\\n-5.24157435e-02 -7.65533820e-02 3.15376908e-01 5.88367991e-02\\n9.59437564e-02 -1.77370578e-01 6.23382568e-01 4.11120337e-03\\n2.58878380e-01 4.99415427e-01 -2.23764181e-01 -3.27023894e-01\\n-3.81400771e-02 2.28636205e-01 9.58997533e-02 5.82797706e-01\\n-1.99544638e-01 2.48014122e-01 -2.51014950e-03 1.51223525e-01\\n-1.37478128e-01 1.39519379e-01 3.23196352e-01 7.43699893e-02\\n2.74971843e-01 4.86505069e-02 3.13049614e-01 4.54655409e-01\\n1.14561625e-01 4.06999350e-01 2.44747743e-01 -5.01292385e-03\\n2.92616934e-01 6.24267757e-01 3.98849845e-01 2.05520838e-01\\n9.15469304e-02 1.31170824e-01 -8.34355224e-03 -9.42473114e-02\\n2.98534840e-01 3.63581330e-01 1.83475420e-01 7.57415354e-01\\n2.66097486e-01 3.45554709e-01 6.67964816e-01 -7.07788646e-01\\n-3.71760726e-01 4.05201204e-02 5.45309544e-01 -3.66362095e-01\\n-6.98391050e-02 2.18890563e-01 -3.62161100e-01 2.31792539e-01\\n-5.56723416e-01 -2.26506144e-01 -2.06937846e-02 -2.61557549e-01\\n6.94031343e-02 -1.30092293e-01 -1.64267972e-01 9.55166444e-02\\n-1.88375145e-01 -1.78112999e-01 -2.52038866e-01 -1.61634296e-01\\n-2.69474834e-01 -4.02885936e-02 8.35449202e-04 -1.53247252e-01\\n-2.40387172e-01 -3.31419140e-01 -1.43797219e-01 7.97109082e-02\\n4.36672419e-01 -1.66872621e-01 -2.01521680e-01 -2.22005159e-01\\n1.24346927e-01 2.99951226e-01 6.31840527e-01 -6.47152215e-02\\n6.95404634e-02 -3.65861580e-02 -2.26565167e-01 7.69360876e-03\\n1.27081364e-01 -4.97558825e-02 3.76648381e-02 4.27637070e-01\\n-2.92656422e-01 -1.74525827e-01 1.70096651e-01 2.28486598e-01\\n-4.26923245e-01 -2.30515897e-02 6.63986895e-03 3.15136075e-01\\n5.69084622e-02 2.79291004e-01 -2.14494243e-01 1.42237037e-01\\n-8.87006223e-02 -5.13788521e-01 4.24557716e-01 -9.82723460e-02\\n-1.92426711e-01 1.37909681e-01 2.61321843e-01 2.21965134e-01\\n-2.44948596e-01 -1.62650615e-01 -1.03462324e-01 2.05686703e-01\\n-4.68646847e-02 3.96594554e-01 -1.62942603e-01 -1.18335366e-01\\n-2.76485860e-01 2.85828888e-01 -4.31293733e-02 2.23143354e-01\\n-2.43220050e-02 3.19200069e-01 5.32066412e-02 4.72373590e-02\\n1.79505885e-01 8.35023224e-02 -1.89960346e-01 -2.98485667e-01\\n-2.84553051e-01 -2.47325543e-02 7.51628205e-02 -9.05780494e-02\\n1.64595917e-01 -3.51225585e-01 -7.36308098e-02 -2.48227671e-01\\n-2.13619977e-01 -4.37639117e-01 -1.83824167e-01 -1.47303781e-02]]',\n", + " 'Job Informationen Responsibilities: Define and build data management infrastructure of our development platform with special focus on efficient data pipelines for usage in production environments Study, evaluate and select appropriate infrastructure and tooling Define data management processes and best practices for the full data lifecycle Work with clients to model data landscapes, define data pipelines and curate data for usage in data-driven use cases and services Mentor and educate team members and customers Your profile: Minimum qualifications Master’s degree in Computer Science or equivalent subject Very strong analytical skills with a mindset to make things “as simple as possible, but not simpler” Profound experience with relational databases and very good command of SQL Experience with data pipelines and ETL Experience with BigData platforms (e.g. Spark, Hadoop) Experience with data preparation and data scraping for machine learning models and their deployment to production Programming experience (e.g. Python, R, Java, PL/SQL, etc.) Strong interest in banking and financial services industry Open, curious, team-oriented personality with persistency and tenacity High sense of ownership and quality Excellent communication skills, both towards customers and peers Ability to think ahead, work independently and set priorities Very strong command of English, good command of German (verbal and written) Willingness to travel (mostly within Switzerland, occasionally EU/UK) Benötigte Skills SQL ETL Python Python R JAVA PL/SQL PLSQL Englisch Reisetaetigkeit',\n", + " '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Team Oriented\", \"Infrastructure\", \"Persistence\"]',\n", + " '[\"PL/SQL\", \"Python Server Pages\", \"Tooling\", \"Programming (Music)\", \"Data Scraping\", \"Computer Science\", \"Data Management\", \"Data Modeling\", \"Good Agricultural Practices\", \"Financial Services\", \"Landscaping\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Pipeline\", \"Management Process\", \"Extract Transform Load (ETL)\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Personalization\", \"R (Programming Language)\", \"Data Curation\", \"Banking\", \"Relational Databases\", \"Service Industries\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Afar', 'Kannada', 'Uzbek', 'South Ndebele']\"],\n", + " ['146',\n", + " 'data entry analyst thai mother tongue',\n", + " 'Lugano',\n", + " '',\n", + " '',\n", + " '[[-1.72615752e-01 3.48393470e-01 5.63793361e-01 1.26038035e-02\\n6.82117403e-01 -7.52009079e-02 1.68952420e-01 2.92088926e-01\\n-6.50330335e-02 -4.27406356e-02 -1.66092783e-01 -2.15499252e-02\\n2.30985105e-01 1.18437968e-02 3.01652014e-01 2.60451704e-01\\n3.34278673e-01 8.86579677e-02 2.93720197e-02 9.42949951e-02\\n6.83787465e-02 -1.14063911e-01 3.01056832e-01 3.78035933e-01\\n4.85031426e-01 3.57200801e-02 -8.50020573e-02 2.04789396e-02\\n-4.91925508e-01 -3.30322951e-01 3.57411206e-01 -3.28030884e-02\\n-7.64593482e-02 -1.01637781e-01 9.26108137e-02 -3.92549001e-02\\n-2.55425364e-01 -7.02379644e-02 -9.82118100e-02 1.17916644e-01\\n-1.19894445e-01 -1.48821473e-01 6.04664721e-02 5.21111637e-02\\n-3.55998307e-01 -4.05241579e-01 -2.43389353e-01 9.61503983e-02\\n-1.09730661e-01 -8.54571536e-03 -4.20035273e-01 4.24724966e-01\\n-2.18217328e-01 -3.12994570e-01 1.40267625e-01 7.55397797e-01\\n-4.82739024e-02 -4.80082273e-01 -1.38320878e-01 -2.12304413e-01\\n1.15023158e-01 -1.84141442e-01 9.80998389e-03 -9.20992568e-02\\n4.02930021e-01 -1.05917938e-01 -9.74294394e-02 4.45086330e-01\\n-6.62300825e-01 5.68407737e-02 -1.95798531e-01 -1.03798993e-01\\n-3.54713291e-01 1.02782391e-01 -4.69925106e-01 -1.42662004e-01\\n-1.04699954e-01 2.92437583e-01 -4.79717441e-02 5.20615764e-02\\n8.44430327e-02 2.19081610e-01 4.32054102e-02 6.76734094e-03\\n1.19321309e-01 2.75517046e-01 2.14847565e-01 2.26781845e-01\\n-3.21204424e-01 4.32290643e-01 2.09257886e-01 -2.32637629e-01\\n1.21815749e-01 3.92837413e-02 2.42757723e-01 5.09096533e-02\\n-1.34208694e-01 9.74625424e-02 -1.03797138e-01 8.56828913e-02\\n1.92824289e-01 -1.97148517e-01 1.71843350e-01 8.01838413e-02\\n-2.18975633e-01 -2.16293032e-03 -7.55272880e-02 3.62124294e-01\\n-3.72780532e-01 4.47948575e-01 -1.31973490e-01 -1.98631644e-01\\n9.40682888e-02 -6.46858513e-01 -2.38814339e-01 1.74403712e-02\\n2.22550914e-01 3.84547830e-01 4.86791842e-02 3.17912221e-01\\n2.27672935e-01 9.61547811e-03 3.39578629e-01 7.71125555e-01\\n-1.19339181e-02 1.33703440e-01 -1.73774198e-01 3.10077995e-01\\n1.74874768e-01 -2.48353779e-01 1.07557148e-01 1.24583036e-01\\n8.04590508e-02 6.05077185e-02 -1.58764228e-01 1.41559377e-01\\n-1.31053239e-01 -2.63280004e-01 -7.12881088e-02 1.91247221e-02\\n-3.95988852e-01 -5.02327919e-01 3.68662059e-01 4.35222536e-02\\n8.02991614e-02 -1.35297969e-01 -1.44485757e-01 1.99020341e-01\\n4.41335188e-03 3.49604517e-01 1.68394074e-01 6.28652647e-02\\n-2.30331913e-01 -1.77903667e-01 -2.39807740e-01 3.83965671e-01\\n-2.50655860e-01 -1.01997346e-01 -2.31059566e-01 -4.18500416e-03\\n3.56983453e-01 1.30238622e-01 -3.81015003e-01 2.17226848e-01\\n-1.21007569e-01 -1.96204528e-01 -1.00382902e-01 2.45168984e-01\\n-2.90959716e-01 2.31154844e-01 -1.11573316e-01 -2.04283804e-01\\n3.28744531e-01 3.82339656e-02 7.01181516e-02 3.04834079e-02\\n1.71901882e-01 -2.79844720e-02 2.52734691e-01 9.83232111e-02\\n-7.33292222e-01 4.46858495e-01 -1.27329022e-01 -2.19354227e-01\\n2.18003079e-01 6.92177415e-02 3.99190873e-01 -1.69163853e-01\\n3.90465148e-02 -2.62570798e-01 -1.98890895e-01 -4.10609633e-01\\n-1.66751906e-01 7.08845537e-03 2.12664589e-01 -4.64718789e-01\\n-9.36693400e-02 1.70769155e-01 -3.30790013e-01 1.33179370e-02\\n2.64806926e-01 1.29918098e-01 1.78997189e-01 1.39563680e-01\\n-1.77164957e-01 -4.72220242e-01 2.93358207e-01 -2.19074771e-01\\n-1.45071819e-01 1.35924742e-01 -2.45997891e-01 7.63131231e-02\\n1.06739387e-01 1.60163045e-01 1.68979704e-01 1.00942738e-01\\n-2.54966557e-01 -1.45432949e-01 5.27297966e-02 2.30169848e-01\\n3.89307708e-01 -1.35443255e-01 -3.70476425e-01 5.42885840e-01\\n-2.09981382e-01 4.65261996e-01 3.71818155e-01 -7.78644383e-01\\n3.80745769e-01 2.42184684e-01 1.27820726e-02 -2.09226727e-01\\n5.97492397e-01 -3.69609177e-01 1.48865916e-02 6.46520108e-02\\n-1.62899837e-01 -1.19010516e-01 2.02881336e-01 -7.97568858e-02\\n-2.27903500e-01 3.73498619e-01 4.62560691e-02 -2.23262496e-02\\n3.29656839e-01 -1.65973470e-01 -1.61817566e-01 -5.84670864e-02\\n-1.42744824e-01 -2.02731073e-01 -3.53496641e-01 -4.61547151e-02\\n1.96592789e-02 -4.00773168e-01 -1.33323625e-01 -3.82936239e-01\\n-1.38363102e-02 -8.95022079e-02 -1.84901003e-02 8.79763886e-02\\n2.31567681e-01 2.45087162e-01 1.49881586e-01 -6.35100752e-02\\n-1.98649481e-01 -5.22383869e-01 -1.44973427e-01 -6.58213301e-03\\n4.12519813e-01 2.34219417e-01 1.92707106e-01 -1.39421254e-01\\n2.63981230e-04 4.83777016e-01 -2.07964242e-01 -3.06858629e-01\\n2.40179762e-01 1.69312477e-01 -1.42077089e-03 -2.49914765e-01\\n-2.92053986e-02 2.22582951e-01 -2.92764064e-02 -9.94232297e-03\\n-4.77439314e-02 6.12665154e-03 2.06113204e-01 -7.83813745e-02\\n-6.07259646e-02 -3.36857766e-01 -2.36163184e-01 2.33034685e-01\\n-3.91117007e-01 -9.58644301e-02 6.61609590e-01 1.02452442e-01\\n1.02069795e-01 2.50236422e-01 4.95394200e-01 -1.18338659e-01\\n1.09054156e-01 6.40797392e-02 7.48879686e-02 2.57586166e-02\\n-1.41876265e-01 -3.54757085e-02 -2.44292796e-01 -5.09175658e-01\\n-4.33919811e+00 -1.44711763e-01 -1.16132997e-01 -3.37674737e-01\\n1.86795145e-01 -3.08173448e-01 1.91307202e-01 1.23874538e-01\\n-2.16510177e-01 -2.65113357e-02 -1.84887975e-01 -1.01241052e-01\\n2.99701005e-01 1.96061388e-01 -3.29383253e-03 3.63638282e-01\\n1.89916432e-01 -1.89523175e-01 2.78099328e-02 5.03657818e-01\\n3.82684842e-02 -6.33607507e-01 9.53083709e-02 1.59213498e-01\\n2.89591193e-01 4.85507995e-02 -4.34307486e-01 4.72674072e-02\\n-3.54480177e-01 -2.16263950e-01 1.96870562e-04 -1.73243240e-01\\n-2.10540652e-01 3.66339654e-01 -4.42177663e-03 -2.87626207e-01\\n2.78165013e-01 -1.05741426e-01 1.02866761e-01 -2.82246768e-01\\n9.09618884e-02 -5.70283830e-01 9.54692438e-02 3.70959081e-02\\n5.37763238e-01 -3.91523212e-01 1.29102528e-01 -2.59972494e-02\\n1.65061429e-01 2.09262565e-01 -2.58586913e-01 -3.47598456e-02\\n-1.68233916e-01 -2.07587451e-01 -6.49010912e-02 -1.91470951e-01\\n3.69484365e-01 5.32173395e-01 -2.30618775e-01 2.09058493e-01\\n1.81825459e-01 -2.30919033e-01 -2.87258744e-01 -4.60416108e-01\\n-3.01531374e-01 -1.24822445e-02 -5.87967932e-01 -5.93335092e-01\\n-7.31057376e-02 1.53813079e-01 -8.95834342e-02 2.19247803e-01\\n-5.84772825e-02 -5.82429171e-01 -8.69600102e-02 -4.49584574e-01\\n2.61551023e-01 6.75528273e-02 2.28914861e-02 -2.89734811e-01\\n-9.87913609e-02 -3.41734082e-01 2.51326919e-01 1.48389861e-01\\n-1.45662025e-01 -8.21803231e-03 2.97323409e-02 -1.09188750e-01\\n-3.97346884e-01 -2.42875978e-01 5.33387601e-01 -9.73939896e-02\\n2.84841120e-01 9.14498419e-02 1.31599218e-01 1.18091725e-01\\n4.90723222e-01 -2.86372304e-01 3.17707241e-01 -4.69395489e-01\\n1.47425532e-01 5.66378534e-02 5.58779716e-01 -3.23890686e-01\\n1.41342804e-01 3.02695148e-02 -3.06996405e-01 -2.89231986e-02\\n3.82497072e-01 5.11787310e-02 7.89504312e-03 -7.81800449e-02\\n1.80008531e-01 -3.14112991e-01 -3.03637296e-01 1.20152563e-01\\n5.61521798e-02 4.93879735e-01 -7.18261022e-03 -1.85902879e-01\\n-1.35801852e-01 2.79940486e-01 -1.04755469e-01 -1.11562163e-01\\n-3.94354790e-01 -2.84594316e-02 -2.96999961e-01 3.95066977e-01\\n-1.36930374e-02 -1.85875773e-01 -3.32891762e-01 -2.00500757e-01\\n5.33177219e-02 7.16920793e-02 4.53121632e-01 1.76655412e-01\\n-1.15296252e-01 -3.28973860e-01 2.21132755e-01 9.25404429e-02\\n2.76959032e-01 1.14073947e-01 5.29596843e-02 -1.82241350e-01\\n2.68695354e-01 1.21109616e-02 -2.95394272e-01 2.67254561e-01\\n-4.52070385e-02 9.07452404e-02 -4.24399108e-01 -2.53919959e-01\\n6.47746101e-02 -4.69557680e-02 -1.16956748e-01 1.98290810e-01\\n1.82052538e-01 -4.96815741e-02 -1.70160815e-01 -3.90714943e-01\\n4.10252929e-01 -2.41614401e-01 1.24671586e-01 1.52542517e-01\\n4.85915467e-02 4.37472761e-01 9.53638460e-03 -9.85681415e-02\\n-9.48504061e-02 2.21213192e-01 -8.36912692e-02 -7.55016208e-02\\n-5.19907847e-02 -3.51078331e-01 -1.59696877e-01 2.52445728e-01\\n1.97597846e-01 -9.90304723e-02 -6.24909364e-02 2.93501973e-01\\n5.14945686e-02 -4.11986798e-01 -1.13725811e-01 3.31387430e-01\\n2.42410660e-01 3.01989973e-01 1.30771041e-01 -4.23942864e-01\\n1.26298154e-02 -1.43254220e-01 -5.39009226e-03 2.31717095e-01\\n-3.68971564e-02 4.57723290e-02 1.25689223e-01 -2.57336408e-01\\n4.52274889e-01 1.62080005e-01 -1.98596027e-02 3.25958759e-01\\n1.07646763e-01 -1.81736678e-01 -2.65263617e-01 -1.26108766e-01\\n1.29563719e-01 -8.59659761e-02 1.26676798e-01 -5.12050949e-02\\n-2.86221653e-02 -1.65466323e-01 -4.63575333e-01 -1.93282470e-01\\n-3.20666701e-01 -4.50407621e-03 -6.21666573e-02 -4.55853701e-01\\n-1.77150801e-01 1.99470203e-02 -6.89192116e-01 2.77930200e-01\\n-9.14626345e-02 8.97736922e-02 -8.71999934e-02 -6.63384274e-02\\n-1.87910557e-01 7.21793398e-02 3.88081580e-01 1.80732846e-01\\n-3.47465336e-01 -1.41033947e-01 -5.78678288e-02 -6.64154887e-01\\n2.06478447e-01 -3.44670378e-02 6.79180175e-02 5.53228818e-02\\n2.25611236e-02 -4.20085609e-01 3.73302758e-01 -3.24751854e-01\\n-3.22960436e-01 -1.03289679e-01 -1.08919099e-01 -5.30871034e-01\\n1.64659694e-02 1.16028741e-01 -9.31579620e-02 1.59642488e-01\\n-3.32295567e-01 3.94695252e-01 -1.38975051e-03 6.86056539e-02\\n1.36072263e-01 -2.22020194e-01 2.05938697e-01 -2.33098686e-01\\n-1.38229430e-01 -4.15495746e-02 -3.20657879e-01 -2.84823626e-02\\n-7.99953118e-02 -1.01778887e-01 -1.93806097e-01 1.35457218e-01\\n3.22297245e-01 1.88431814e-01 -9.19214562e-02 5.57608623e-03\\n2.25081593e-02 -3.72227073e-01 1.25377521e-01 -4.07151192e-01\\n-1.72704950e-01 3.58859971e-02 2.36671537e-01 -2.05010131e-01\\n-1.48044094e-01 -3.59700590e-01 4.92881596e-01 -4.22979742e-02\\n-3.92193109e-01 -5.45446724e-02 1.49708897e-01 1.23999983e-01\\n2.61621684e-01 -2.40022406e-01 -2.16542229e-01 3.12422276e-01\\n-1.18981332e-01 1.82044864e-01 3.03314000e-01 -9.11085978e-02\\n-2.13367075e-01 1.92423746e-01 -6.44163430e-01 2.90285181e-02\\n6.99569106e-01 2.62822986e-01 5.81081063e-02 1.45128965e-01\\n7.47388527e-02 4.58776087e-01 3.43519032e-01 -2.52274424e-02\\n-9.21222866e-02 3.74245912e-01 -1.11912107e-02 -6.03797555e-01\\n-1.46021873e-01 -1.82001770e-01 -1.61639199e-01 -3.41911048e-01\\n5.57207286e-01 3.48060757e-01 -2.56245166e-01 -4.98939067e-01\\n-1.00817271e-01 -7.59499520e-02 -1.67222425e-01 1.70671230e-03\\n1.71413332e-01 -3.33040118e-01 4.91388202e-01 4.60462272e-02\\n1.35594070e-01 5.33669949e-01 -1.70858249e-01 -2.89476007e-01\\n2.83797663e-02 1.64547533e-01 1.16223030e-01 3.91901582e-01\\n-2.46086299e-01 1.64762482e-01 -3.27545181e-02 8.80799070e-02\\n-2.14792430e-01 -9.60263908e-02 2.49895379e-01 1.56575829e-01\\n2.29200408e-01 3.65797877e-01 1.56393826e-01 3.18059415e-01\\n1.22303784e-01 2.54506588e-01 1.40717342e-01 -1.62942093e-02\\n5.68991959e-01 3.39769393e-01 2.53574848e-01 1.83203906e-01\\n1.22952737e-01 9.76628140e-02 -1.28536904e-02 1.83097154e-01\\n8.24523866e-02 2.28209063e-01 1.65872499e-01 5.77548504e-01\\n1.21880203e-01 1.41516790e-01 5.11563897e-01 -5.94159663e-01\\n-3.33841354e-01 -2.10691661e-01 3.28329086e-01 -4.28931892e-01\\n-1.21898174e-01 1.04617804e-01 -3.99246305e-01 9.78853777e-02\\n-5.62309265e-01 -2.37747461e-01 6.66938722e-02 -2.03536764e-01\\n3.76617461e-02 1.09229544e-02 -1.37574241e-01 1.14577748e-01\\n-1.15759403e-01 -1.69190675e-01 -4.09970731e-01 -2.31068268e-01\\n-2.77284175e-01 -1.36203438e-01 8.65431502e-02 -8.43373686e-02\\n-2.19265223e-02 -1.89931035e-01 -1.11088030e-01 -3.33598852e-02\\n2.52785832e-01 -1.81206971e-01 -1.53304962e-02 -2.29927421e-01\\n-2.36062575e-02 1.18228875e-01 4.40328687e-01 -5.18645048e-02\\n3.62255350e-02 -1.64233506e-01 -2.01399893e-01 -2.40471736e-02\\n1.81746572e-01 -3.59669398e-03 3.62190828e-02 4.82310414e-01\\n-4.57485735e-01 -2.20250592e-01 8.16089511e-02 2.83106834e-01\\n-4.94884223e-01 1.20508224e-01 2.30367795e-01 2.21163675e-01\\n6.11096621e-02 1.45477593e-01 -2.18364537e-01 -3.11554614e-02\\n-2.50443846e-01 -5.55905402e-01 2.64889210e-01 2.71739624e-02\\n-1.20469883e-01 1.65882528e-01 1.47628069e-01 2.35055387e-01\\n-9.85384881e-02 -1.18623331e-01 -2.23214686e-01 1.44522727e-01\\n2.39947096e-01 2.64431566e-01 -2.36707970e-01 -1.57237314e-02\\n-2.64385998e-01 1.65884972e-01 3.90606886e-03 1.35514274e-01\\n-2.22537056e-01 1.75671399e-01 5.55299148e-02 3.58648837e-01\\n6.43107742e-02 -8.86753276e-02 -1.59216389e-01 -2.74973691e-01\\n-1.90057144e-01 -2.96763688e-01 1.46930754e-01 -1.74069405e-01\\n2.24984914e-01 -2.14431986e-01 2.15160474e-02 -1.75610006e-01\\n-2.91487604e-01 -5.24405718e-01 -6.07830808e-02 -1.37858689e-01]]',\n", + " \"For banking consulting company of Lugano we're looking for a DATA ENTRY ANALYST Tasks: data entry use of Excel to manage tables, data and filters back office activities, database management, customer master data update Requirements: Commercial/ IT/ Legal/ Economic Degree Languages: English (level C1 / C2), and Thai (excellent / mother tongue) Excellent computer skills: Office package, excellent knowledge of Excel Motivation, spirit of initiative, responsibility 100% immediate availability English Thai Excel Data analyst Master data\",\n", + " '[\"Data Entry\", \"Consulting\"]',\n", + " '[\"Customer Acquisition Management\", \"Economics\", \"Banking\", \"Activism\", \"Configuration Management Databases\", \"Data.table\", \"Master Data Management\", \"Levelling\", \"Thai Language\", \"Commercialization\", \"Clinical Data Management\"]',\n", + " \"['English', 'Ganda', 'Panjabi']\"],\n", + " ['75',\n", + " 'data scientist (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.41230571e-01 3.20579290e-01 3.75774533e-01 -5.87651171e-02\\n4.43441123e-01 -1.29961938e-01 -1.92020759e-02 4.41386491e-01\\n-1.59575537e-01 -4.24713194e-01 -1.46686330e-01 -3.25343221e-01\\n1.14388704e-01 2.04729050e-01 -1.23882887e-03 4.20161128e-01\\n3.73519152e-01 -1.16898101e-02 -2.07619742e-01 1.32103652e-01\\n8.86699557e-02 -3.35102119e-02 4.04846482e-02 7.49066710e-01\\n4.03577298e-01 3.07110511e-02 9.69275273e-03 2.29009271e-01\\n-2.27694642e-02 -3.00659746e-01 4.20081764e-01 6.77612126e-02\\n-9.78656411e-02 -1.45831376e-01 1.00099869e-01 1.93986848e-01\\n-1.76201001e-01 -4.38924991e-02 -4.48319092e-02 1.02736801e-01\\n-4.25482512e-01 -7.39343241e-02 -1.93309754e-01 -9.40649137e-02\\n-2.36881807e-01 -3.55241865e-01 1.84402809e-01 -7.85545632e-02\\n1.81506589e-01 1.02683842e-01 -5.44188201e-01 3.21053684e-01\\n-2.46664912e-01 -2.24747032e-01 2.26115018e-01 6.36301339e-01\\n-4.64538336e-02 -4.17762935e-01 -4.72036988e-01 -2.27010503e-01\\n3.72807076e-03 -2.47032586e-02 1.63690284e-01 -2.71987379e-01\\n5.68070114e-01 2.97356918e-02 8.11387785e-03 3.70946676e-01\\n-7.85762906e-01 -7.95092732e-02 -5.25898218e-01 5.51936179e-02\\n-4.09012586e-01 -1.16724238e-01 -3.26011032e-01 -1.84702218e-01\\n-9.00333896e-02 2.66361088e-01 5.27836494e-02 5.73817641e-02\\n-5.46626411e-02 1.83182925e-01 -3.73869807e-01 2.18665108e-01\\n1.80035621e-01 3.55550379e-01 2.71658927e-01 1.24420635e-01\\n-5.61292708e-01 4.55916524e-01 1.60459146e-01 -3.16164434e-01\\n2.51621008e-01 1.12377949e-01 4.22266543e-01 1.91384722e-02\\n3.23856115e-01 7.96804950e-02 -1.73500240e-01 2.88461983e-01\\n3.24480802e-01 -2.72537529e-01 -4.57357392e-02 -2.22847443e-02\\n-7.05420151e-02 -2.36930493e-02 1.81777403e-02 8.52361992e-02\\n-4.42855358e-01 4.49962378e-01 2.38556601e-02 -3.29873711e-01\\n-8.54108781e-02 -4.92196053e-01 -1.26708031e-01 1.13501027e-01\\n4.74727973e-02 1.55081972e-01 5.56165911e-02 3.36634696e-01\\n9.23086330e-02 7.44584203e-02 1.71667546e-01 8.73141706e-01\\n-1.59719318e-01 9.80157852e-02 -1.35535583e-01 3.73292476e-01\\n5.89516051e-02 -4.22692955e-01 3.69895428e-01 1.48211956e-01\\n-5.48070716e-03 -2.23484635e-01 -2.28235051e-01 3.02637547e-01\\n-8.38862732e-02 -1.75278768e-01 -4.07274961e-01 2.79555261e-01\\n-4.80480082e-02 -4.97038513e-01 5.77611804e-01 -6.62990361e-02\\n2.56282687e-01 5.75698167e-03 -1.20063998e-01 -6.44469708e-02\\n-5.58342263e-02 2.05851644e-01 1.05513319e-01 1.50529891e-01\\n-2.80206472e-01 -1.23960570e-01 -2.12028727e-01 2.41515830e-01\\n-3.25081259e-01 1.42981023e-01 -1.64810762e-01 2.47103572e-02\\n2.97217578e-01 -1.06815249e-01 -3.58129829e-01 2.71518111e-01\\n-1.08762622e-01 -9.28396657e-02 -1.04522936e-01 3.48139197e-01\\n-1.49847686e-01 2.89581656e-01 -7.47042149e-03 -1.49303108e-01\\n4.85912025e-01 -3.17747407e-02 1.42754778e-01 -1.14044540e-01\\n1.87778026e-01 -1.54224485e-01 1.40239537e-01 1.00261755e-01\\n-7.44436622e-01 3.75441790e-01 -1.33631974e-01 -2.50234485e-01\\n1.03924565e-01 -2.11706422e-02 1.20492116e-01 -3.17121565e-01\\n-2.60668900e-02 4.86982241e-02 -2.25412384e-01 -2.37696111e-01\\n-2.98636377e-01 3.06145400e-02 4.75394011e-01 -5.51669955e-01\\n6.42826129e-03 8.85091349e-02 -5.41709900e-01 -4.73886430e-02\\n2.20377043e-01 1.63471773e-01 1.72797069e-01 1.99010149e-01\\n-9.34576318e-02 -4.07977581e-01 1.05349876e-01 -5.64375281e-01\\n-2.33918458e-01 1.47594362e-01 -4.07128572e-01 2.71355361e-01\\n2.08260804e-01 -8.85742530e-02 -6.84777424e-02 1.75756514e-01\\n-1.47204876e-01 8.39553475e-02 1.92527175e-01 5.17481156e-02\\n4.29474980e-01 -1.31909158e-02 -4.88036036e-01 4.87025589e-01\\n-1.17629059e-01 3.22765619e-01 1.28966480e-01 -6.33928299e-01\\n5.18156767e-01 3.87201309e-01 1.34119019e-01 -3.40296209e-01\\n7.73359656e-01 -2.09232211e-01 -1.53796226e-01 1.28882870e-01\\n-5.41336775e-01 -2.04530403e-01 2.09910870e-01 -2.85638869e-01\\n-2.04468206e-01 6.05933845e-01 1.46033973e-01 1.70462862e-01\\n4.07893091e-01 -1.25825554e-01 -2.04333976e-01 1.82618171e-01\\n-1.61599264e-01 -2.83577591e-01 -4.41130549e-01 -1.46593213e-01\\n-1.38645932e-01 -5.25331318e-01 -2.12554470e-01 -5.44122219e-01\\n-1.19418189e-01 -3.49090397e-01 -1.90421775e-01 2.98726946e-01\\n2.70572782e-01 1.56919345e-01 -1.27486894e-02 -3.89354005e-02\\n-2.16649249e-01 -6.33001685e-01 1.12677880e-01 2.43788790e-02\\n2.78449357e-01 5.46571165e-02 -1.01318525e-03 -8.76794234e-02\\n9.30171683e-02 4.80634838e-01 -4.45369393e-01 -4.65957880e-01\\n1.67595834e-01 2.88126379e-01 -6.29331991e-02 -1.63987651e-01\\n7.48787075e-02 2.02743486e-01 -3.77554804e-01 4.87946309e-02\\n-3.19412686e-02 7.09454566e-02 3.11002165e-01 4.75667939e-02\\n-2.25134403e-01 -2.73619622e-01 -1.19784929e-01 2.03147247e-01\\n-4.44426179e-01 -3.51640642e-01 5.16058743e-01 2.27594838e-01\\n-8.20012465e-02 2.19246358e-01 1.83445424e-01 2.56463606e-02\\n-3.11640471e-01 -1.73988789e-01 1.85515121e-01 1.07422307e-01\\n7.74253830e-02 1.50473043e-01 -2.39359498e-01 -5.16104043e-01\\n-3.70907736e+00 -5.90654090e-02 2.16919612e-02 -3.38318013e-02\\n2.63239056e-01 -9.49420929e-02 2.72949815e-01 -1.70295238e-01\\n-3.73317093e-01 2.23193280e-02 -3.49745035e-01 -2.36381829e-01\\n2.36413643e-01 3.80795240e-01 1.85329095e-01 3.37170660e-01\\n8.95158853e-03 -3.26061338e-01 1.55033227e-02 3.53047460e-01\\n-1.01034768e-01 -5.98247468e-01 9.17824358e-02 -2.74122953e-02\\n3.05051386e-01 3.23851973e-01 -4.45890903e-01 4.46502045e-02\\n-2.90478021e-01 -3.03679377e-01 2.81372607e-01 -3.05325180e-01\\n-1.04047373e-01 3.29313606e-01 3.19882810e-01 -1.35911644e-01\\n8.91114213e-03 -3.04096609e-01 -2.21896827e-01 -4.22515392e-01\\n1.57804459e-01 -4.90906239e-01 -1.28313333e-01 -3.78867239e-02\\n7.59345353e-01 -2.76979506e-01 2.90725946e-01 -1.25216572e-02\\n-3.79199944e-02 2.58015037e-01 4.34338264e-02 -3.02164797e-02\\n-1.59291670e-01 -4.10524219e-01 -2.00489357e-01 -1.38318598e-01\\n7.19663858e-01 4.77971762e-01 -3.27104688e-01 -6.32395521e-02\\n3.40273418e-02 -2.62451947e-01 -4.98666763e-01 -3.22024316e-01\\n-2.16446906e-01 -9.33134332e-02 -5.49440205e-01 -5.07502139e-01\\n-6.88180998e-02 -2.11285770e-01 6.72993669e-03 5.60048044e-01\\n-3.87955904e-01 -4.22377199e-01 -1.19003303e-01 -5.84407449e-01\\n2.33222038e-01 -1.50476933e-01 1.93103589e-02 -6.49409369e-02\\n-2.87916183e-01 -4.92121696e-01 -3.83201055e-02 1.25485957e-01\\n-1.22601926e-01 -1.80888444e-01 1.67992145e-01 -2.10358664e-01\\n-4.12067920e-01 -5.70630968e-01 3.19926620e-01 7.52659366e-02\\n2.06089333e-01 3.11958551e-01 7.43244067e-02 9.38261375e-02\\n2.09748298e-01 -1.18292257e-01 -2.77300477e-02 -3.33694518e-01\\n6.80211857e-02 2.71623526e-02 4.78780895e-01 -2.68519908e-01\\n5.22808619e-02 3.14865038e-02 -1.65933669e-01 -1.00066185e-01\\n3.60404819e-01 2.91085709e-03 2.48318762e-01 -2.93007404e-01\\n2.49018162e-01 -4.09965307e-01 -1.22578003e-01 1.50597855e-01\\n8.01002532e-02 5.93329430e-01 -1.38859358e-02 -2.87190259e-01\\n-1.81143865e-01 4.63179588e-01 -7.93593749e-02 -1.28168138e-02\\n-1.41236469e-01 1.22826479e-01 -3.01261604e-01 4.57582884e-02\\n8.31399858e-02 -9.90217179e-02 -2.10034654e-01 -7.69866481e-02\\n-6.24854602e-02 3.36862296e-01 3.39921534e-01 2.14407220e-01\\n-1.19193226e-01 -3.77245843e-01 -3.04245334e-02 2.41239384e-01\\n2.78555810e-01 3.43841553e-01 1.13287218e-01 -3.09911937e-01\\n-3.05522885e-02 2.28456452e-01 -2.43753612e-01 2.83019274e-01\\n-2.08737180e-01 1.85385078e-01 -4.71682221e-01 -1.98949471e-01\\n-3.35636973e-01 -3.02228987e-01 1.68202549e-01 2.78751761e-01\\n4.78324443e-02 -1.47481069e-01 7.40066096e-02 -2.79685259e-01\\n1.28714785e-01 1.26459092e-01 1.72895581e-01 9.00546685e-02\\n4.25361320e-02 5.08100033e-01 -1.34723365e-01 -8.66496190e-02\\n-3.79136987e-02 1.55094236e-01 -2.98904300e-01 -1.67882740e-01\\n3.26476581e-02 -4.96705264e-01 -1.38876662e-01 3.30863655e-01\\n1.33994266e-01 -2.44507063e-02 -1.56706899e-01 2.71681696e-01\\n-6.29353225e-02 -4.21984881e-01 -1.89854845e-01 -3.77752148e-02\\n3.91769797e-01 1.97067633e-01 1.99220017e-01 -4.72003251e-01\\n3.39651704e-02 -1.60421096e-02 -6.23232126e-02 4.92524296e-01\\n-1.64510719e-02 1.27280802e-01 -3.88157777e-02 -2.85643280e-01\\n4.07037139e-01 -1.82942048e-01 -8.02245066e-02 1.08663850e-01\\n6.57938644e-02 -2.33758911e-01 -2.71264285e-01 4.50135991e-02\\n-1.33240342e-01 -2.20708475e-01 5.43981744e-03 2.07883753e-02\\n6.81371242e-02 1.14125408e-01 -6.96763396e-01 -1.31494328e-01\\n-3.38128626e-01 -2.66433377e-02 -2.57064160e-02 -5.89495063e-01\\n9.37665924e-02 -1.76048622e-01 -4.83618677e-01 3.92892152e-01\\n-2.18248978e-01 1.59633476e-02 2.26147965e-01 -2.03592633e-03\\n-2.53043085e-01 -1.80282846e-01 3.03423852e-01 2.25411966e-01\\n-3.14275414e-01 -1.91533878e-01 -2.80531328e-02 -9.39720631e-01\\n2.66930401e-01 -5.04413843e-02 -2.22142965e-01 2.92951893e-02\\n4.60405312e-02 -5.75743496e-01 1.47720560e-01 -2.36621723e-01\\n-1.12835318e-01 -5.46076670e-02 -2.26170704e-01 -3.88530970e-01\\n9.35971644e-03 -7.93675333e-02 -2.26015106e-01 4.02906537e-01\\n-3.38889658e-01 1.84469283e-01 -2.24166885e-02 2.16775984e-02\\n-2.04286929e-02 -3.47074330e-01 3.10599487e-02 -2.67032415e-01\\n-3.94339442e-01 -1.74878016e-01 -8.28907788e-02 -2.08658576e-01\\n-1.93180924e-04 -4.40714270e-01 -1.09175496e-01 6.83374777e-02\\n2.36038581e-01 -6.47720993e-02 -2.07359180e-01 -6.37338012e-02\\n-4.02890518e-02 -4.36068565e-01 8.02344978e-02 -1.47829279e-01\\n-9.34714600e-02 -1.64646432e-01 1.75696179e-01 7.70144016e-02\\n1.71934247e-01 -3.83518070e-01 4.33824152e-01 -3.38958740e-01\\n-2.44281590e-01 -4.73154634e-02 1.36464551e-01 8.58591031e-03\\n3.32300365e-01 -5.70898592e-01 -1.79186478e-01 4.85027581e-01\\n1.21535219e-01 9.76505410e-03 2.74466872e-01 -2.22782210e-01\\n-2.85697460e-01 4.10868973e-01 -2.47874334e-01 2.06477046e-01\\n7.59367347e-01 2.34027103e-01 2.15660274e-01 1.85695961e-01\\n5.54197058e-02 3.72010559e-01 3.88585508e-01 7.35035837e-02\\n1.14770360e-01 4.62758750e-01 1.29114717e-01 -4.50532645e-01\\n6.51421919e-02 7.48575628e-02 -1.76990125e-02 -3.38613302e-01\\n5.71200788e-01 4.18865412e-01 -4.79401261e-01 -3.71115088e-01\\n-1.93321466e-01 -2.30509773e-01 2.57935256e-01 -3.96324694e-02\\n8.67455155e-02 -2.13403881e-01 4.65888798e-01 4.22241725e-02\\n1.19340211e-01 5.51934600e-01 -1.13279380e-01 -1.61001548e-01\\n-1.25377461e-01 1.63823247e-01 4.23096791e-02 5.02787948e-01\\n-1.01218373e-01 3.05310696e-01 -5.16975336e-02 1.80466488e-01\\n-1.23121917e-01 6.84957281e-02 3.06439400e-01 6.38772696e-02\\n-6.71916008e-02 3.13701838e-01 4.36375111e-01 4.52330589e-01\\n3.90467167e-01 4.19316918e-01 1.97180539e-01 4.10353169e-02\\n4.91685063e-01 4.94395077e-01 5.09132862e-01 9.87051949e-02\\n5.70210889e-02 -5.83960749e-02 6.65263906e-02 1.34733200e-01\\n2.76557297e-01 3.56498957e-01 -8.12474638e-02 8.53647649e-01\\n4.01272386e-01 2.59191155e-01 5.45863628e-01 -5.74813366e-01\\n-2.21465662e-01 9.34437066e-02 4.16498542e-01 -4.43234384e-01\\n-1.01665333e-01 9.72616524e-02 -2.36519665e-01 1.63716167e-01\\n-5.61485291e-01 -1.28513530e-01 -9.49923843e-02 4.80301902e-02\\n1.37602508e-01 -2.54826486e-01 -1.08912319e-01 2.56002657e-02\\n-3.76788527e-02 -2.07991019e-01 -5.21685421e-01 -2.01340169e-01\\n-2.61706352e-01 -1.59582540e-01 -1.58688724e-02 -4.76816446e-02\\n5.23601212e-02 -2.41665795e-01 -8.35303143e-02 1.02412224e-01\\n3.16163391e-01 -1.00517683e-01 -1.23253323e-01 -5.70156612e-02\\n4.24657643e-01 2.49227658e-01 6.50379419e-01 -8.71798173e-02\\n-4.85449545e-02 -1.09967537e-01 -1.61423773e-01 1.47626474e-01\\n2.10443869e-01 3.41736265e-02 5.91592267e-02 3.84093881e-01\\n-3.55219305e-01 -1.77509859e-01 1.67385608e-01 3.86279911e-01\\n-4.82749164e-01 1.87266737e-01 1.45087525e-01 3.19950968e-01\\n9.58703905e-02 1.88496649e-01 -1.79843903e-01 -3.18964124e-02\\n-3.08908075e-02 -5.10407269e-01 3.40934604e-01 2.78361328e-03\\n-1.12154096e-01 -6.76452518e-02 3.03985864e-01 3.73336256e-01\\n-1.07625850e-01 -1.99855298e-01 -8.22607577e-02 1.28288463e-01\\n4.12612483e-02 2.98357785e-01 -3.38464051e-01 -2.86627203e-01\\n-4.40334797e-01 1.09875180e-01 -5.98270334e-02 8.50374252e-02\\n-7.56504759e-03 2.46335596e-01 1.15903437e-01 2.67920941e-01\\n3.53387326e-01 -1.08669966e-01 -1.63407981e-01 -1.41656354e-01\\n-2.09220603e-01 -8.75437409e-02 1.10776484e-01 -7.38353282e-02\\n2.71980941e-01 -4.22552913e-01 -2.09828228e-01 -2.45986238e-01\\n-1.38953432e-01 -3.73937756e-01 4.29354645e-02 -8.54095817e-02]]',\n", + " 'Job Informationen Your tasks: You are the key contact person for the consolidation and analysis of needs of our scientists and will compile the information needed for strategic decisions of the board of directors. As a coordinator you will identify, propose and support solutions for relevant topics such as: - high performance data management documentation, exchange and curation systems - e-lab journals, repository systems, data management plans - identification, architecture and design of new technologies As contact person for data management you will lead a user group consisting of experts out of our research departments and you will organize and partly lead trainings and workshops or working groups and coordinate various activities with external partner. Your profile: You have a university degree (MSc degree) in computational science, or a related scientific discipline. You have already demonstrated experience in research and project management. You are interested to work closely together with our researchers on data science questions. You are a team player and your strengths include taking personal responsibility, high motivation for excellence, flair for elaborating out-of-the-box solutions. Strong interpersonal and communication skills are essential alongside the ability to collaborate with peers and scientific partners. Excellent communication skills in English and German are mandatory. The position is first limited to 2 years. Benötigte Skills Englisch Datawarehouse',\n", + " '[\"Coordinating\", \"Research\", \"Verbal Communication Skills\", \"Collaboration\"]',\n", + " '[\"MSC Software\", \"Compilers\", \"Computer Science\", \"Data Management\", \"Strategic Decision-Making\", \"Instructor-Led Training\", \"Journals\", \"Activism\", \"E (Programming Language)\", \"Data System\", \"Limiter\", \"Data Science\", \"Consolidation\", \"Data Management Plan\", \"Personalization\", \"High Performance Fortran (Concurrent Programming Language)\", \"Clinical Data Management\", \"Group Work\", \"Project Management\", \"Curation\", \"Document Management\"]',\n", + " \"['English', 'Ossetian', 'Galician', 'Macedonian']\"],\n", + " ['54',\n", + " 'scientific consultant/field application scientist',\n", + " 'Basel',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.genedata.com',\n", + " '[[-2.32442379e-01 3.07738304e-01 3.99056196e-01 -2.70836577e-02\\n6.56583786e-01 -5.14619537e-02 -3.88629101e-02 2.16710836e-01\\n5.41671105e-02 -3.65262270e-01 -5.75208887e-02 -2.65726984e-01\\n-1.72851030e-02 2.60878086e-01 1.39552383e-02 5.63386559e-01\\n3.62089574e-01 3.96771282e-02 -9.41991806e-02 3.56274962e-01\\n-5.69989122e-02 -2.42773950e-01 5.02247214e-02 8.23738694e-01\\n3.24123740e-01 6.94254786e-03 -1.77322656e-01 1.00362211e-01\\n-2.35687435e-01 -1.63654178e-01 5.07943273e-01 1.21569917e-01\\n-2.38539785e-01 -4.81321871e-01 6.84724674e-02 1.58220410e-01\\n-2.25910336e-01 6.19722949e-03 -2.18426913e-01 1.20587371e-01\\n-5.92146397e-01 -2.01387703e-01 -7.36053139e-02 7.53944665e-02\\n-2.64677465e-01 -3.64674091e-01 -6.15307316e-03 -4.80009206e-02\\n2.44331494e-01 6.69034198e-02 -3.81608367e-01 2.56636143e-01\\n-4.03986573e-01 -1.84787408e-01 3.12528133e-01 6.92409873e-01\\n-7.89592341e-02 -4.88350838e-01 -6.04032993e-01 -3.58812571e-01\\n5.93140908e-02 -5.86972982e-02 1.92329317e-01 -4.75805640e-01\\n3.39513659e-01 9.15621072e-02 1.34341354e-02 2.89688170e-01\\n-8.39130759e-01 -2.49590978e-01 -3.35327774e-01 9.25211310e-02\\n-2.72830367e-01 -2.10000388e-02 -2.61939406e-01 1.69139169e-02\\n-1.35113761e-01 3.53417754e-01 -2.40524467e-02 9.96802300e-02\\n-1.81974962e-01 3.26806903e-01 -2.62390912e-01 3.48742127e-01\\n7.76790082e-02 2.17974648e-01 2.93708682e-01 3.27362180e-01\\n-2.66070187e-01 4.73173320e-01 1.68133423e-01 -3.44853580e-01\\n2.13494539e-01 9.46282074e-02 3.67666721e-01 -3.16059068e-02\\n2.43596822e-01 1.16984189e-01 -4.54034269e-01 2.83447415e-01\\n2.36201704e-01 -3.56486201e-01 1.41795546e-01 -1.51516601e-01\\n5.02755046e-02 -5.24020419e-02 1.38191536e-01 7.64484257e-02\\n-4.96059299e-01 6.24560237e-01 -4.82736155e-02 -2.51710296e-01\\n-1.39408618e-01 -5.07217169e-01 -1.52183965e-01 1.97517961e-01\\n-4.27782685e-02 1.29341125e-01 9.18544680e-02 2.09814966e-01\\n2.55204499e-01 -2.76704989e-02 1.36783272e-01 7.58589029e-01\\n-8.91354978e-02 -1.24567505e-02 -1.26805782e-01 1.99975014e-01\\n1.80370420e-01 -2.64291406e-01 2.90985793e-01 1.30984694e-01\\n2.58466601e-03 -1.01340584e-01 -2.23201007e-01 2.24601954e-01\\n2.01595873e-02 -3.03292215e-01 -2.25105658e-01 3.17411721e-01\\n9.46880877e-02 -5.20789862e-01 6.35551333e-01 -1.60975326e-02\\n1.67411372e-01 -4.36340943e-02 5.87628447e-02 -1.14940353e-01\\n4.18886021e-02 1.96062341e-01 2.48873174e-01 2.14157447e-01\\n-2.18030497e-01 -2.67030060e-01 -6.99123368e-02 8.33025649e-02\\n-4.75801766e-01 1.33130029e-01 -7.00868368e-02 -1.15509093e-01\\n3.74666929e-01 2.42697634e-03 -3.81397992e-01 2.08057284e-01\\n-1.92758903e-01 -1.72918383e-02 1.20048728e-02 4.74323511e-01\\n-2.10934550e-01 2.53578424e-01 -1.84125900e-01 -1.37920976e-01\\n6.67226791e-01 1.28614143e-01 3.73597503e-01 9.46645141e-02\\n3.30942065e-01 -1.19044006e-01 1.98491126e-01 3.77705619e-02\\n-7.23338962e-01 4.29489166e-01 -7.97711387e-02 -3.09408069e-01\\n1.69961601e-01 -1.99996993e-01 5.01872122e-01 -2.91776419e-01\\n2.49987599e-02 -1.69333428e-01 -2.95621842e-01 -3.56718183e-01\\n-2.09738225e-01 -7.61451665e-03 3.33374918e-01 -3.18108767e-01\\n-3.90474424e-02 2.30349109e-01 -6.09039366e-01 -2.01040953e-01\\n1.81049198e-01 1.91210836e-01 2.08117276e-01 7.44753703e-02\\n-1.70233592e-01 -7.19654799e-01 7.18926787e-02 -4.95360225e-01\\n-1.82624698e-01 6.06344305e-02 -3.59937906e-01 2.40485370e-01\\n-8.15402567e-02 1.96651965e-02 -9.33565497e-02 1.38061076e-01\\n-1.88314527e-01 5.71838096e-02 1.23764602e-02 -2.60408986e-02\\n1.69260055e-01 9.64049548e-02 -4.70478952e-01 4.64293301e-01\\n-2.30761796e-01 5.80371141e-01 -1.45201404e-02 -7.80861139e-01\\n4.89111036e-01 4.86604184e-01 2.98841633e-02 -2.76401877e-01\\n5.85330963e-01 -4.36097443e-01 -1.34886831e-01 2.81325486e-02\\n-4.29145932e-01 -2.12550968e-01 7.04684779e-02 -2.51096755e-01\\n-2.97495723e-01 5.27800679e-01 6.29262775e-02 1.88219219e-01\\n3.65226179e-01 -1.81559578e-01 -1.35169342e-01 1.40606478e-01\\n-9.61726755e-02 -2.16735393e-01 -6.32967353e-01 -2.06193298e-01\\n-4.26792018e-02 -3.81757081e-01 -5.50195836e-02 -3.71231496e-01\\n-6.74760863e-02 -2.32709303e-01 -2.11190253e-01 7.12805614e-03\\n3.07608187e-01 2.08460793e-01 -1.87103581e-02 5.56767322e-02\\n-1.29283085e-01 -7.74057686e-01 4.97019887e-02 1.35979354e-01\\n3.15975845e-01 3.53715718e-01 1.14296950e-01 -2.31418386e-02\\n2.22290214e-03 5.10602891e-01 -3.86080205e-01 -3.91206533e-01\\n3.52677554e-02 2.08746955e-01 4.89863902e-02 -1.17181569e-01\\n1.99449673e-01 3.50901425e-01 -2.11591825e-01 8.63744617e-02\\n-8.83418545e-02 -7.25206509e-02 4.18237448e-01 -4.51538377e-02\\n-2.92016447e-01 -5.91106340e-02 -2.68920064e-01 6.07148260e-02\\n-5.14914632e-01 -2.72147536e-01 3.59722465e-01 -4.37740088e-02\\n1.76675603e-01 1.89731538e-01 1.41168416e-01 3.82324979e-02\\n-2.13246018e-01 -3.90323728e-01 4.25515473e-01 6.11937009e-02\\n5.83200902e-02 1.13105133e-01 -6.59661368e-03 -6.34525895e-01\\n-3.03469348e+00 -6.13375977e-02 9.52121802e-03 -2.41200656e-01\\n4.11783099e-01 -7.55954236e-02 1.65503681e-01 -6.50815517e-02\\n-2.76874661e-01 6.35305196e-02 -1.41984761e-01 -3.11619550e-01\\n1.40695348e-01 1.51296586e-01 1.28531292e-01 5.42428643e-02\\n5.74936010e-02 -2.79139340e-01 7.29653835e-02 4.37327504e-01\\n-2.84770168e-02 -7.17190981e-01 1.30334347e-01 7.68823475e-02\\n2.47291654e-01 3.56453240e-01 -6.16812289e-01 -1.25489697e-01\\n-3.46225768e-01 -2.33285636e-01 1.81676090e-01 -2.66291916e-01\\n-1.63844749e-01 2.77898967e-01 1.89369515e-01 -1.45473361e-01\\n-1.05180470e-02 -3.33743274e-01 -9.89596546e-02 -5.35880327e-01\\n1.35906219e-01 -5.87640226e-01 -9.33447257e-02 -2.44360194e-01\\n6.26185000e-01 -2.02125475e-01 1.91916883e-01 1.21745184e-01\\n1.56054184e-01 1.74986109e-01 2.12640196e-01 6.92513287e-02\\n-1.18076600e-01 -1.11742005e-01 -6.85724765e-02 -2.02516153e-01\\n5.75369716e-01 3.16606164e-01 -2.83073962e-01 -1.28682740e-02\\n1.68891281e-01 -3.02579522e-01 -5.72280705e-01 -1.66499570e-01\\n-1.49839446e-01 -1.61743075e-01 -5.59600413e-01 -4.29784268e-01\\n-1.28293797e-01 -9.80977193e-02 -2.34381109e-03 6.44748032e-01\\n-3.15855145e-01 -2.14313835e-01 1.65215414e-02 -5.08993328e-01\\n2.86774337e-01 -9.86029208e-02 1.18833482e-02 -2.17344284e-01\\n-2.73361981e-01 -5.32851100e-01 1.64437652e-01 -6.03721663e-02\\n-2.73424499e-02 -2.49530703e-01 -1.47405341e-01 -3.32870707e-02\\n-3.70957136e-01 -5.24775386e-01 4.05381322e-01 9.72573757e-02\\n4.25845146e-01 8.51523280e-02 1.59927458e-01 -2.17530325e-01\\n2.94481456e-01 2.47242544e-02 5.91279343e-02 -3.10467958e-01\\n1.35945166e-02 2.92563625e-02 4.89490867e-01 -1.15475401e-01\\n-1.04606792e-01 -5.05292043e-02 -3.02600414e-01 -9.26430821e-02\\n3.40641886e-01 -8.70705098e-02 2.66492441e-02 -7.03636706e-02\\n3.19053829e-01 -2.73771942e-01 -5.13524413e-02 1.03461698e-01\\n1.32545024e-01 7.65318036e-01 6.28628433e-02 -4.00142252e-01\\n-8.10757130e-02 3.57248753e-01 -2.06922024e-01 1.33682862e-01\\n-2.70684715e-02 7.60252699e-02 -2.65021086e-01 3.30453515e-01\\n5.44475317e-02 -8.18144754e-02 -1.57014057e-01 -1.61569178e-01\\n-1.89940423e-01 3.02544534e-01 2.83511639e-01 2.02994585e-01\\n-7.92443529e-02 -2.94725865e-01 -1.50302261e-01 3.31764102e-01\\n2.14060768e-01 4.03191328e-01 1.91767722e-01 -2.37404287e-01\\n-1.17510587e-01 3.08192104e-01 -1.08263865e-01 3.18853796e-01\\n-1.39326900e-01 1.65630504e-01 -5.89734912e-01 -4.29030359e-02\\n-4.10736501e-01 -3.31209838e-01 2.24690050e-01 4.06404763e-01\\n2.27813810e-01 -1.29744560e-01 9.46846977e-02 -4.30739284e-01\\n1.96246237e-01 1.60955489e-01 4.73779850e-02 -2.54090559e-02\\n-2.09319949e-01 5.57296753e-01 -7.63453096e-02 -2.54182160e-01\\n-8.70946869e-02 5.38765229e-02 -2.61154503e-01 -1.71153188e-01\\n2.15041012e-01 -4.73926425e-01 -1.67470634e-01 2.80276358e-01\\n1.38712376e-01 -1.68808460e-01 -3.00579071e-01 3.77027124e-01\\n6.16286369e-03 -4.61226881e-01 -3.65501642e-01 -4.46242765e-02\\n3.21592331e-01 8.78513902e-02 2.28920728e-01 -5.86782336e-01\\n-5.19755259e-02 -5.28373793e-02 -4.81466427e-02 3.88798833e-01\\n-1.68965489e-01 -1.56518333e-02 -1.70848072e-01 -1.25513181e-01\\n3.95823896e-01 -7.49285892e-03 -4.95692901e-02 8.19482580e-02\\n7.74428546e-02 -2.36917481e-01 -3.51838470e-01 2.34114919e-02\\n-3.88629138e-02 -2.03384325e-01 -1.38144076e-01 2.29392320e-01\\n1.09325657e-02 1.26697153e-01 -6.16341829e-01 -1.54170260e-01\\n-1.82784826e-01 6.08055815e-02 -4.74814512e-02 -5.57095110e-01\\n-3.55729237e-02 -1.99092269e-01 -5.11761665e-01 2.62366831e-01\\n-9.36825424e-02 -1.31517902e-01 2.20228449e-01 -2.05761287e-02\\n-2.81221479e-01 -1.79363862e-01 8.89880303e-03 2.57389337e-01\\n-3.45206201e-01 -2.54300147e-01 -7.87793100e-02 -9.11462665e-01\\n8.02039877e-02 7.98257291e-02 -1.28931329e-01 1.46059453e-01\\n-1.05976507e-01 -5.90200424e-01 1.57370567e-01 -3.58438671e-01\\n-1.10712744e-01 -2.97286585e-02 -3.15314293e-01 -5.18359281e-02\\n1.24939263e-01 7.24566169e-03 -2.41730705e-01 2.75774807e-01\\n-2.30751440e-01 3.09834301e-01 -2.00493902e-01 2.43222751e-02\\n2.08485574e-02 -1.48160905e-01 2.95591176e-01 -2.32712105e-01\\n-4.58940089e-01 -1.36098534e-01 -2.34504044e-01 -1.23537526e-01\\n-1.28428802e-01 -2.28376091e-01 2.01412775e-02 6.47189096e-02\\n4.76199746e-01 -5.59079982e-02 -1.50721937e-01 -1.56556576e-01\\n1.07670739e-01 -5.33652008e-01 8.61099139e-02 -4.05896008e-02\\n-9.05444846e-04 -5.35680205e-02 4.33252826e-02 1.54006422e-01\\n3.41710687e-01 -4.61550593e-01 4.04270351e-01 -5.42552590e-01\\n-3.62047374e-01 -1.28544137e-01 2.70606652e-02 2.02727336e-02\\n2.86612302e-01 -5.11082530e-01 -2.53720824e-02 3.18889081e-01\\n5.93949631e-02 4.76487726e-03 2.44288251e-01 -1.50833070e-01\\n-1.79235965e-01 2.14298427e-01 -2.99159825e-01 1.20361798e-01\\n9.02350187e-01 3.02395076e-01 1.92661919e-02 2.30523065e-01\\n1.34616315e-01 3.47339958e-01 4.97985303e-01 -3.15038767e-03\\n-1.27127012e-02 3.40488553e-01 1.68656141e-01 -4.23993647e-01\\n-1.61434010e-01 6.70711249e-02 -1.46439567e-01 -4.88276631e-01\\n6.79491639e-01 2.96415299e-01 -4.29011464e-01 -2.58326173e-01\\n-2.59714305e-01 -9.67805758e-02 1.90644547e-01 -1.05458230e-01\\n3.43606733e-02 -8.65786746e-02 4.88759816e-01 -6.79901540e-02\\n9.30004939e-02 5.64005494e-01 -5.58255576e-02 -2.06642300e-01\\n-9.01564881e-02 2.11891010e-01 1.60535485e-01 5.16209960e-01\\n-1.24296106e-01 2.39304364e-01 -1.37977287e-01 2.12765634e-02\\n-1.88231409e-01 1.72804058e-01 2.68478453e-01 6.47890493e-02\\n5.85948266e-02 1.28820315e-01 5.82628906e-01 5.88080049e-01\\n3.92452300e-01 2.66587734e-01 3.32661688e-01 3.79032120e-02\\n5.07516026e-01 4.10881281e-01 2.30346859e-01 3.18531096e-02\\n-9.70747322e-04 2.30345070e-01 1.73367172e-01 4.46295813e-02\\n4.15993273e-01 2.71433294e-01 4.40230556e-02 8.23480308e-01\\n1.90676600e-01 2.88234293e-01 6.15596294e-01 -6.13289237e-01\\n-2.93532610e-01 6.14848621e-02 4.95927036e-01 -4.12347674e-01\\n1.25404656e-01 1.61690205e-01 -1.07983485e-01 2.72096515e-01\\n-5.64436376e-01 -2.17067778e-01 2.91454047e-03 1.60865024e-01\\n1.11436784e-01 -2.03232080e-01 -5.40719926e-02 6.66900352e-02\\n-1.02776587e-01 -2.18793243e-01 -4.61653501e-01 -2.26520419e-01\\n-3.07220221e-01 -1.43419281e-02 -4.74092476e-02 -2.42149085e-01\\n1.51533820e-02 -1.75533205e-01 1.49528101e-01 -1.03782229e-01\\n3.65668774e-01 -1.92489579e-01 -5.45778349e-02 -3.31634879e-02\\n5.39122939e-01 2.64480822e-02 5.59886694e-01 -9.67102647e-02\\n9.81148332e-03 -1.18649408e-01 -1.51837826e-01 1.77474052e-01\\n8.03755820e-02 1.03485435e-01 1.00138530e-01 1.81097329e-01\\n-2.61407852e-01 -2.90009916e-01 1.69499546e-01 3.01765293e-01\\n-3.84069681e-01 1.34308748e-02 -4.47389223e-02 2.69308947e-02\\n-1.73465107e-02 8.76316801e-02 -1.70689479e-01 -5.24713658e-02\\n-3.19772437e-02 -4.15383041e-01 2.45901540e-01 -4.31711897e-02\\n-3.98227662e-01 -1.75727308e-02 4.88632023e-01 2.34511882e-01\\n-1.93984091e-01 -2.49437522e-02 -1.59829989e-01 1.36674941e-01\\n1.83949955e-02 1.51006550e-01 -6.48707151e-02 -4.74141479e-01\\n-3.72587979e-01 2.15488255e-01 -1.52674481e-01 5.81661128e-02\\n5.40572181e-02 3.89264226e-01 -1.01188987e-01 5.58998734e-02\\n5.54651618e-01 -9.09994915e-02 -2.47718334e-01 -3.59937906e-01\\n-7.79160559e-02 -1.13661915e-01 -1.37385368e-01 -6.98653907e-02\\n1.95851669e-01 -3.37328911e-01 -2.07518935e-01 -3.16191971e-01\\n-3.12869251e-02 -3.33085537e-01 6.97566569e-02 -5.68944365e-02]]',\n", + " 'The Position Genedata is seeking a Scientific Consultant / Field Application Scientist to fill an opening in our growing Genedata Profiler (Precision Medicine) team. Precision medicine requires scientists to characterize the genomic profile of patients to better understand patients’ response to new therapies, to efficiently stratify patients for clinical trials or to identify novel biomarkers for patient monitoring. Genedata Profiler, a highly innovative tool in the era of precision medicine, provides a comprehensive, enterprise solution for the processing, management, integration, and analysis of massive amounts of clinical, phenotype, and multi-omic data. The Scientific Consultant is a scientific and technical consultant for our customers. It is a highly dynamic job: you will wear many different hats, interact with many different people such as clinicians, bioinformaticians, and software developers, and use your scientific and technical knowledge to solve real-world scientific problems in precision medicine. This position is especially well-suited for you if you have a scientific/technical background, enjoy variety in your daily work, and want to expand your skill set (scientific, technical, and soft skills). This full-time position is based in Basel, Switzerland and requires regular travel within Europe. Key Responsibilities First and foremost, you will act as an expert in scientific and IT matters related to translational and clinical data analysis in general and the use of our Genedata Profiler software in particular. You will combine this expertise with excellent communication skills and project management know-how to (a) be a vital part of the sales team, (b) propose, plan, execute and manage projects, and (c) support our customers in getting the most out of Genedata Profiler. (a) You will work in tandem with our Business Development Managers in establishing and communicating the value of Genedata Profiler to prospects and customers. Tasks include qualifying customer needs, giving presentations and demos, and managing software evaluation projects. (b) In addition, you will act as scientific consultant for data science projects. For example, you will help our customers with exploratory clinical trial design, identify biomarkers for response or adverse events, conduct mechanistic interpretation of results from mode-of-action studies, and devise stratification strategies based on the results obtained. You will ensure results delivery at the level of excellence that our customers know us for. This involves proper project set up and planning to achieve the customer’s goals; specifying and coordinating and executing the implementation work; guaranteeing adherence to scope, budget and timelines; managing change in the project; controlling the quality of all deliverables; providing customer feedback to product management; and supporting the Profiler team to keep improving our processes. (c) You will establish relationships based on trust with our customers by being their first point of contact and a sparring partner on scientific and technical matters, including user trainings and product support. We want our customers to have excellent translational and clinical data analysis processes, and you will be responsible to help enable this. Further, you will channel the insights gathered through your customer interactions back to our Development and Product Management team, help them to define end-to-end user stories and workflows matching their requirements, thereby assuring that Profiler is developed to maximize value for our customers. In addition to the core responsibilities listed above, we want you to help all of us in the Profiler team to improve, and we count on your knowledge, creativity, and technical skills to further advance our science, marketing, development, and product management. Your Profile Essential Skills and Experience: Excellent communication skills: you will be exposed to a range of different people, so you should feel comfortable interacting with customers at all levels (managers, scientists, and IT experts) and be prepared to constantly communicate internally. Solid scientific background (PhD level preferred) in statistical genetics, bioinformatics, biostatistics, computational biology, machine learning, data science or related field. 3+ years of working experience in translational / clinical research would be a definitive advantage, in particular experience with exploratory clinical trial data, biomarker research, patient stratification & companion diagnostics approaches, ideally at a contract research organization, in a clinic or a pharmaceutical company. If you do not have experience in any of these companies, we look forward to receiving your application if you possess the skills listed below, are a fast learner and wish to quickly delve into the scientific and technical challenges of cutting-edge technologies in the context of Pharmaceutical R&D. Additional Preferred Skills and Experience: Scientific experience and technical skills: Expertise in human genetics or molecular epidemiology, with a strong grasp of genomic approaches, technologies, and analytics to inform clinical trial design and enrichment, e.g. GWAS/RVAS/PheWAS. Profound understanding of biostatistics is essential; experience with methods of causal interference would be desirable. Solid background in oncology and/or immunology would be a plus. Expert knowledge of statistical programming in R is required, as well as working experience with SAS and scripting languages (Python or similar). Project management experience: delivering on time; planning resources and milestones; coordinating teams within and across organizations. Excellent presentation skills. Industry knowledge: You will work with a range of omics technologies and application areas (please see our website for currently supported technologies), so deeper knowledge within a few or broader knowledge across several of them would be desirable. Our customers are mainly pharmaceutical research organizations, thus your experience with pharmaceutical research and the drug discovery process would be valuable to us. The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Profiler Developed in collaboration with leading pharmaceutical companies, Genedata Profiler provides a comprehensive, scalable and interoperable computational platform that addresses the major challenges associated with omics-based precision medicine. The innovative software platform combines high-performance raw omics data processing pipelines, sophisticated data analyses and unparalleled data visualizations with an advanced distributed data management infrastructure. Genedata Profiler accelerates the genomic profiling of patients, at scale and according to the highest data privacy and regulatory standards. Are you interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Genedata is an Equal Opportunity Employer.',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Coordinating\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Timelines\", \"Operations\", \"Presentations\", \"Innovation\", \"Creativity\", \"Positivity\", \"Sales\", \"Consulting\"]',\n", + " '[\"Milestones (Project Management)\", \"Genomics\", \"Collections\", \"SAS (Software)\", \"High Performance Computing\", \"Genetics\", \"Python (Programming Language)\", \"Computational Biology\", \"Know Your Customer\", \"Pipelining\", \"Data Visualization\", \"Evaluation Projects\", \"Budgeting\", \"Patient Monitoring\", \"Clinical Research\", \"Project Management\", \"International Communications\", \"Amazon Data Pipeline\", \"Business Development\", \"Technical Consulting\", \"Epidemiology\", \"Product Management\", \"Interactivity\", \"Statistics\", \"Machine Learning\", \"Plan Execution\", \"Industrialization\", \"Levelling\", \"Open Management Infrastructure\", \"Customer Interaction Management\", \"Biostatistics\", \"Electronic Data Processing\", \"Survey Data Analysis\", \"Humanism\", \"Pharmaceuticals\", \"Product Support\", \"B (Programming Language)\", \"Profiling (Computer Programming)\", \"Controllability\", \"Programming (Music)\", \"Analytics\", \"Market Development\", \"Integrity Management\", \"Clinical Trials\", \"Clinical Research Informatics\", \"E (Programming Language)\", \"Resource Planning\", \"Translations\", \"Management Process\", \"Executable\", \"Microsoft Delve\", \"C (Programming Language)\", \"Equalization\", \"R (Programming Language)\", \"Clinical Data Management\", \"Adverse Event Monitoring\", \"Software Development\", \"Phenotyping\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Analysis\", \"User Story\", \"Life Sciences\", \"Immunology\", \"Informatics\", \"MASSIVE (Software)\", \"Scale (Map)\", \"Contract Research Organization\", \"Agile Edge Technologies\", \"Idealization\", \"Computing Platforms\", \"Data Science\", \"Scalability\", \"Receivables\", \"Adapter Scripting Language\", \"Stratifying\", \"Drug Discovery\", \"Bioinformatics\", \"Interoperability\", \"Workflows\", \"Change Management\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'data scientist (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.41230571e-01 3.20579290e-01 3.75774533e-01 -5.87651171e-02\\n4.43441123e-01 -1.29961938e-01 -1.92020759e-02 4.41386491e-01\\n-1.59575537e-01 -4.24713194e-01 -1.46686330e-01 -3.25343221e-01\\n1.14388704e-01 2.04729050e-01 -1.23882887e-03 4.20161128e-01\\n3.73519152e-01 -1.16898101e-02 -2.07619742e-01 1.32103652e-01\\n8.86699557e-02 -3.35102119e-02 4.04846482e-02 7.49066710e-01\\n4.03577298e-01 3.07110511e-02 9.69275273e-03 2.29009271e-01\\n-2.27694642e-02 -3.00659746e-01 4.20081764e-01 6.77612126e-02\\n-9.78656411e-02 -1.45831376e-01 1.00099869e-01 1.93986848e-01\\n-1.76201001e-01 -4.38924991e-02 -4.48319092e-02 1.02736801e-01\\n-4.25482512e-01 -7.39343241e-02 -1.93309754e-01 -9.40649137e-02\\n-2.36881807e-01 -3.55241865e-01 1.84402809e-01 -7.85545632e-02\\n1.81506589e-01 1.02683842e-01 -5.44188201e-01 3.21053684e-01\\n-2.46664912e-01 -2.24747032e-01 2.26115018e-01 6.36301339e-01\\n-4.64538336e-02 -4.17762935e-01 -4.72036988e-01 -2.27010503e-01\\n3.72807076e-03 -2.47032586e-02 1.63690284e-01 -2.71987379e-01\\n5.68070114e-01 2.97356918e-02 8.11387785e-03 3.70946676e-01\\n-7.85762906e-01 -7.95092732e-02 -5.25898218e-01 5.51936179e-02\\n-4.09012586e-01 -1.16724238e-01 -3.26011032e-01 -1.84702218e-01\\n-9.00333896e-02 2.66361088e-01 5.27836494e-02 5.73817641e-02\\n-5.46626411e-02 1.83182925e-01 -3.73869807e-01 2.18665108e-01\\n1.80035621e-01 3.55550379e-01 2.71658927e-01 1.24420635e-01\\n-5.61292708e-01 4.55916524e-01 1.60459146e-01 -3.16164434e-01\\n2.51621008e-01 1.12377949e-01 4.22266543e-01 1.91384722e-02\\n3.23856115e-01 7.96804950e-02 -1.73500240e-01 2.88461983e-01\\n3.24480802e-01 -2.72537529e-01 -4.57357392e-02 -2.22847443e-02\\n-7.05420151e-02 -2.36930493e-02 1.81777403e-02 8.52361992e-02\\n-4.42855358e-01 4.49962378e-01 2.38556601e-02 -3.29873711e-01\\n-8.54108781e-02 -4.92196053e-01 -1.26708031e-01 1.13501027e-01\\n4.74727973e-02 1.55081972e-01 5.56165911e-02 3.36634696e-01\\n9.23086330e-02 7.44584203e-02 1.71667546e-01 8.73141706e-01\\n-1.59719318e-01 9.80157852e-02 -1.35535583e-01 3.73292476e-01\\n5.89516051e-02 -4.22692955e-01 3.69895428e-01 1.48211956e-01\\n-5.48070716e-03 -2.23484635e-01 -2.28235051e-01 3.02637547e-01\\n-8.38862732e-02 -1.75278768e-01 -4.07274961e-01 2.79555261e-01\\n-4.80480082e-02 -4.97038513e-01 5.77611804e-01 -6.62990361e-02\\n2.56282687e-01 5.75698167e-03 -1.20063998e-01 -6.44469708e-02\\n-5.58342263e-02 2.05851644e-01 1.05513319e-01 1.50529891e-01\\n-2.80206472e-01 -1.23960570e-01 -2.12028727e-01 2.41515830e-01\\n-3.25081259e-01 1.42981023e-01 -1.64810762e-01 2.47103572e-02\\n2.97217578e-01 -1.06815249e-01 -3.58129829e-01 2.71518111e-01\\n-1.08762622e-01 -9.28396657e-02 -1.04522936e-01 3.48139197e-01\\n-1.49847686e-01 2.89581656e-01 -7.47042149e-03 -1.49303108e-01\\n4.85912025e-01 -3.17747407e-02 1.42754778e-01 -1.14044540e-01\\n1.87778026e-01 -1.54224485e-01 1.40239537e-01 1.00261755e-01\\n-7.44436622e-01 3.75441790e-01 -1.33631974e-01 -2.50234485e-01\\n1.03924565e-01 -2.11706422e-02 1.20492116e-01 -3.17121565e-01\\n-2.60668900e-02 4.86982241e-02 -2.25412384e-01 -2.37696111e-01\\n-2.98636377e-01 3.06145400e-02 4.75394011e-01 -5.51669955e-01\\n6.42826129e-03 8.85091349e-02 -5.41709900e-01 -4.73886430e-02\\n2.20377043e-01 1.63471773e-01 1.72797069e-01 1.99010149e-01\\n-9.34576318e-02 -4.07977581e-01 1.05349876e-01 -5.64375281e-01\\n-2.33918458e-01 1.47594362e-01 -4.07128572e-01 2.71355361e-01\\n2.08260804e-01 -8.85742530e-02 -6.84777424e-02 1.75756514e-01\\n-1.47204876e-01 8.39553475e-02 1.92527175e-01 5.17481156e-02\\n4.29474980e-01 -1.31909158e-02 -4.88036036e-01 4.87025589e-01\\n-1.17629059e-01 3.22765619e-01 1.28966480e-01 -6.33928299e-01\\n5.18156767e-01 3.87201309e-01 1.34119019e-01 -3.40296209e-01\\n7.73359656e-01 -2.09232211e-01 -1.53796226e-01 1.28882870e-01\\n-5.41336775e-01 -2.04530403e-01 2.09910870e-01 -2.85638869e-01\\n-2.04468206e-01 6.05933845e-01 1.46033973e-01 1.70462862e-01\\n4.07893091e-01 -1.25825554e-01 -2.04333976e-01 1.82618171e-01\\n-1.61599264e-01 -2.83577591e-01 -4.41130549e-01 -1.46593213e-01\\n-1.38645932e-01 -5.25331318e-01 -2.12554470e-01 -5.44122219e-01\\n-1.19418189e-01 -3.49090397e-01 -1.90421775e-01 2.98726946e-01\\n2.70572782e-01 1.56919345e-01 -1.27486894e-02 -3.89354005e-02\\n-2.16649249e-01 -6.33001685e-01 1.12677880e-01 2.43788790e-02\\n2.78449357e-01 5.46571165e-02 -1.01318525e-03 -8.76794234e-02\\n9.30171683e-02 4.80634838e-01 -4.45369393e-01 -4.65957880e-01\\n1.67595834e-01 2.88126379e-01 -6.29331991e-02 -1.63987651e-01\\n7.48787075e-02 2.02743486e-01 -3.77554804e-01 4.87946309e-02\\n-3.19412686e-02 7.09454566e-02 3.11002165e-01 4.75667939e-02\\n-2.25134403e-01 -2.73619622e-01 -1.19784929e-01 2.03147247e-01\\n-4.44426179e-01 -3.51640642e-01 5.16058743e-01 2.27594838e-01\\n-8.20012465e-02 2.19246358e-01 1.83445424e-01 2.56463606e-02\\n-3.11640471e-01 -1.73988789e-01 1.85515121e-01 1.07422307e-01\\n7.74253830e-02 1.50473043e-01 -2.39359498e-01 -5.16104043e-01\\n-3.70907736e+00 -5.90654090e-02 2.16919612e-02 -3.38318013e-02\\n2.63239056e-01 -9.49420929e-02 2.72949815e-01 -1.70295238e-01\\n-3.73317093e-01 2.23193280e-02 -3.49745035e-01 -2.36381829e-01\\n2.36413643e-01 3.80795240e-01 1.85329095e-01 3.37170660e-01\\n8.95158853e-03 -3.26061338e-01 1.55033227e-02 3.53047460e-01\\n-1.01034768e-01 -5.98247468e-01 9.17824358e-02 -2.74122953e-02\\n3.05051386e-01 3.23851973e-01 -4.45890903e-01 4.46502045e-02\\n-2.90478021e-01 -3.03679377e-01 2.81372607e-01 -3.05325180e-01\\n-1.04047373e-01 3.29313606e-01 3.19882810e-01 -1.35911644e-01\\n8.91114213e-03 -3.04096609e-01 -2.21896827e-01 -4.22515392e-01\\n1.57804459e-01 -4.90906239e-01 -1.28313333e-01 -3.78867239e-02\\n7.59345353e-01 -2.76979506e-01 2.90725946e-01 -1.25216572e-02\\n-3.79199944e-02 2.58015037e-01 4.34338264e-02 -3.02164797e-02\\n-1.59291670e-01 -4.10524219e-01 -2.00489357e-01 -1.38318598e-01\\n7.19663858e-01 4.77971762e-01 -3.27104688e-01 -6.32395521e-02\\n3.40273418e-02 -2.62451947e-01 -4.98666763e-01 -3.22024316e-01\\n-2.16446906e-01 -9.33134332e-02 -5.49440205e-01 -5.07502139e-01\\n-6.88180998e-02 -2.11285770e-01 6.72993669e-03 5.60048044e-01\\n-3.87955904e-01 -4.22377199e-01 -1.19003303e-01 -5.84407449e-01\\n2.33222038e-01 -1.50476933e-01 1.93103589e-02 -6.49409369e-02\\n-2.87916183e-01 -4.92121696e-01 -3.83201055e-02 1.25485957e-01\\n-1.22601926e-01 -1.80888444e-01 1.67992145e-01 -2.10358664e-01\\n-4.12067920e-01 -5.70630968e-01 3.19926620e-01 7.52659366e-02\\n2.06089333e-01 3.11958551e-01 7.43244067e-02 9.38261375e-02\\n2.09748298e-01 -1.18292257e-01 -2.77300477e-02 -3.33694518e-01\\n6.80211857e-02 2.71623526e-02 4.78780895e-01 -2.68519908e-01\\n5.22808619e-02 3.14865038e-02 -1.65933669e-01 -1.00066185e-01\\n3.60404819e-01 2.91085709e-03 2.48318762e-01 -2.93007404e-01\\n2.49018162e-01 -4.09965307e-01 -1.22578003e-01 1.50597855e-01\\n8.01002532e-02 5.93329430e-01 -1.38859358e-02 -2.87190259e-01\\n-1.81143865e-01 4.63179588e-01 -7.93593749e-02 -1.28168138e-02\\n-1.41236469e-01 1.22826479e-01 -3.01261604e-01 4.57582884e-02\\n8.31399858e-02 -9.90217179e-02 -2.10034654e-01 -7.69866481e-02\\n-6.24854602e-02 3.36862296e-01 3.39921534e-01 2.14407220e-01\\n-1.19193226e-01 -3.77245843e-01 -3.04245334e-02 2.41239384e-01\\n2.78555810e-01 3.43841553e-01 1.13287218e-01 -3.09911937e-01\\n-3.05522885e-02 2.28456452e-01 -2.43753612e-01 2.83019274e-01\\n-2.08737180e-01 1.85385078e-01 -4.71682221e-01 -1.98949471e-01\\n-3.35636973e-01 -3.02228987e-01 1.68202549e-01 2.78751761e-01\\n4.78324443e-02 -1.47481069e-01 7.40066096e-02 -2.79685259e-01\\n1.28714785e-01 1.26459092e-01 1.72895581e-01 9.00546685e-02\\n4.25361320e-02 5.08100033e-01 -1.34723365e-01 -8.66496190e-02\\n-3.79136987e-02 1.55094236e-01 -2.98904300e-01 -1.67882740e-01\\n3.26476581e-02 -4.96705264e-01 -1.38876662e-01 3.30863655e-01\\n1.33994266e-01 -2.44507063e-02 -1.56706899e-01 2.71681696e-01\\n-6.29353225e-02 -4.21984881e-01 -1.89854845e-01 -3.77752148e-02\\n3.91769797e-01 1.97067633e-01 1.99220017e-01 -4.72003251e-01\\n3.39651704e-02 -1.60421096e-02 -6.23232126e-02 4.92524296e-01\\n-1.64510719e-02 1.27280802e-01 -3.88157777e-02 -2.85643280e-01\\n4.07037139e-01 -1.82942048e-01 -8.02245066e-02 1.08663850e-01\\n6.57938644e-02 -2.33758911e-01 -2.71264285e-01 4.50135991e-02\\n-1.33240342e-01 -2.20708475e-01 5.43981744e-03 2.07883753e-02\\n6.81371242e-02 1.14125408e-01 -6.96763396e-01 -1.31494328e-01\\n-3.38128626e-01 -2.66433377e-02 -2.57064160e-02 -5.89495063e-01\\n9.37665924e-02 -1.76048622e-01 -4.83618677e-01 3.92892152e-01\\n-2.18248978e-01 1.59633476e-02 2.26147965e-01 -2.03592633e-03\\n-2.53043085e-01 -1.80282846e-01 3.03423852e-01 2.25411966e-01\\n-3.14275414e-01 -1.91533878e-01 -2.80531328e-02 -9.39720631e-01\\n2.66930401e-01 -5.04413843e-02 -2.22142965e-01 2.92951893e-02\\n4.60405312e-02 -5.75743496e-01 1.47720560e-01 -2.36621723e-01\\n-1.12835318e-01 -5.46076670e-02 -2.26170704e-01 -3.88530970e-01\\n9.35971644e-03 -7.93675333e-02 -2.26015106e-01 4.02906537e-01\\n-3.38889658e-01 1.84469283e-01 -2.24166885e-02 2.16775984e-02\\n-2.04286929e-02 -3.47074330e-01 3.10599487e-02 -2.67032415e-01\\n-3.94339442e-01 -1.74878016e-01 -8.28907788e-02 -2.08658576e-01\\n-1.93180924e-04 -4.40714270e-01 -1.09175496e-01 6.83374777e-02\\n2.36038581e-01 -6.47720993e-02 -2.07359180e-01 -6.37338012e-02\\n-4.02890518e-02 -4.36068565e-01 8.02344978e-02 -1.47829279e-01\\n-9.34714600e-02 -1.64646432e-01 1.75696179e-01 7.70144016e-02\\n1.71934247e-01 -3.83518070e-01 4.33824152e-01 -3.38958740e-01\\n-2.44281590e-01 -4.73154634e-02 1.36464551e-01 8.58591031e-03\\n3.32300365e-01 -5.70898592e-01 -1.79186478e-01 4.85027581e-01\\n1.21535219e-01 9.76505410e-03 2.74466872e-01 -2.22782210e-01\\n-2.85697460e-01 4.10868973e-01 -2.47874334e-01 2.06477046e-01\\n7.59367347e-01 2.34027103e-01 2.15660274e-01 1.85695961e-01\\n5.54197058e-02 3.72010559e-01 3.88585508e-01 7.35035837e-02\\n1.14770360e-01 4.62758750e-01 1.29114717e-01 -4.50532645e-01\\n6.51421919e-02 7.48575628e-02 -1.76990125e-02 -3.38613302e-01\\n5.71200788e-01 4.18865412e-01 -4.79401261e-01 -3.71115088e-01\\n-1.93321466e-01 -2.30509773e-01 2.57935256e-01 -3.96324694e-02\\n8.67455155e-02 -2.13403881e-01 4.65888798e-01 4.22241725e-02\\n1.19340211e-01 5.51934600e-01 -1.13279380e-01 -1.61001548e-01\\n-1.25377461e-01 1.63823247e-01 4.23096791e-02 5.02787948e-01\\n-1.01218373e-01 3.05310696e-01 -5.16975336e-02 1.80466488e-01\\n-1.23121917e-01 6.84957281e-02 3.06439400e-01 6.38772696e-02\\n-6.71916008e-02 3.13701838e-01 4.36375111e-01 4.52330589e-01\\n3.90467167e-01 4.19316918e-01 1.97180539e-01 4.10353169e-02\\n4.91685063e-01 4.94395077e-01 5.09132862e-01 9.87051949e-02\\n5.70210889e-02 -5.83960749e-02 6.65263906e-02 1.34733200e-01\\n2.76557297e-01 3.56498957e-01 -8.12474638e-02 8.53647649e-01\\n4.01272386e-01 2.59191155e-01 5.45863628e-01 -5.74813366e-01\\n-2.21465662e-01 9.34437066e-02 4.16498542e-01 -4.43234384e-01\\n-1.01665333e-01 9.72616524e-02 -2.36519665e-01 1.63716167e-01\\n-5.61485291e-01 -1.28513530e-01 -9.49923843e-02 4.80301902e-02\\n1.37602508e-01 -2.54826486e-01 -1.08912319e-01 2.56002657e-02\\n-3.76788527e-02 -2.07991019e-01 -5.21685421e-01 -2.01340169e-01\\n-2.61706352e-01 -1.59582540e-01 -1.58688724e-02 -4.76816446e-02\\n5.23601212e-02 -2.41665795e-01 -8.35303143e-02 1.02412224e-01\\n3.16163391e-01 -1.00517683e-01 -1.23253323e-01 -5.70156612e-02\\n4.24657643e-01 2.49227658e-01 6.50379419e-01 -8.71798173e-02\\n-4.85449545e-02 -1.09967537e-01 -1.61423773e-01 1.47626474e-01\\n2.10443869e-01 3.41736265e-02 5.91592267e-02 3.84093881e-01\\n-3.55219305e-01 -1.77509859e-01 1.67385608e-01 3.86279911e-01\\n-4.82749164e-01 1.87266737e-01 1.45087525e-01 3.19950968e-01\\n9.58703905e-02 1.88496649e-01 -1.79843903e-01 -3.18964124e-02\\n-3.08908075e-02 -5.10407269e-01 3.40934604e-01 2.78361328e-03\\n-1.12154096e-01 -6.76452518e-02 3.03985864e-01 3.73336256e-01\\n-1.07625850e-01 -1.99855298e-01 -8.22607577e-02 1.28288463e-01\\n4.12612483e-02 2.98357785e-01 -3.38464051e-01 -2.86627203e-01\\n-4.40334797e-01 1.09875180e-01 -5.98270334e-02 8.50374252e-02\\n-7.56504759e-03 2.46335596e-01 1.15903437e-01 2.67920941e-01\\n3.53387326e-01 -1.08669966e-01 -1.63407981e-01 -1.41656354e-01\\n-2.09220603e-01 -8.75437409e-02 1.10776484e-01 -7.38353282e-02\\n2.71980941e-01 -4.22552913e-01 -2.09828228e-01 -2.45986238e-01\\n-1.38953432e-01 -3.73937756e-01 4.29354645e-02 -8.54095817e-02]]',\n", + " 'Job Informationen Your tasks: You are the key contact person for the consolidation and analysis of needs of our scientists and will compile the information needed for strategic decisions of the board of directors. As a coordinator you will identify, propose and support solutions for relevant topics such as: - high performance data management documentation, exchange and curation systems - e-lab journals, repository systems, data management plans - identification, architecture and design of new technologies As contact person for data management you will lead a user group consisting of experts out of our research departments and you will organize and partly lead trainings and workshops or working groups and coordinate various activities with external partner. Your profile: You have a university degree (MSc degree) in computational science, or a related scientific discipline. You have already demonstrated experience in research and project management. You are interested to work closely together with our researchers on data science questions. You are a team player and your strengths include taking personal responsibility, high motivation for excellence, flair for elaborating out-of-the-box solutions. Strong interpersonal and communication skills are essential alongside the ability to collaborate with peers and scientific partners. Excellent communication skills in English and German are mandatory. The position is first limited to 2 years. Benötigte Skills Englisch Datawarehouse',\n", + " '[\"Coordinating\", \"Research\", \"Verbal Communication Skills\", \"Collaboration\"]',\n", + " '[\"MSC Software\", \"Compilers\", \"Computer Science\", \"Data Management\", \"Strategic Decision-Making\", \"Instructor-Led Training\", \"Journals\", \"Activism\", \"E (Programming Language)\", \"Data System\", \"Limiter\", \"Data Science\", \"Consolidation\", \"Data Management Plan\", \"Personalization\", \"High Performance Fortran (Concurrent Programming Language)\", \"Clinical Data Management\", \"Group Work\", \"Project Management\", \"Curation\", \"Document Management\"]',\n", + " \"['English', 'Turkmen']\"],\n", + " ['75',\n", + " 'data analyst/-scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.41309604e-01 2.42345914e-01 4.95187610e-01 1.05289342e-02\\n5.81725121e-01 -1.90028071e-01 6.13713488e-02 2.04275876e-01\\n-6.64053932e-02 -2.53704458e-01 -5.51296724e-03 -1.78655699e-01\\n-1.79121241e-01 9.13927183e-02 1.15096360e-01 4.34087008e-01\\n2.37357035e-01 3.82301770e-02 -1.78476006e-01 2.21163154e-01\\n2.54345447e-01 -1.74213469e-01 -7.67908022e-02 6.96332157e-01\\n3.74726802e-01 9.39255133e-02 -1.86563537e-01 -1.19988369e-02\\n-4.12281901e-01 -2.54240632e-01 3.46634239e-01 4.67030667e-02\\n-1.23894925e-03 -2.59558737e-01 1.64461985e-01 1.51192486e-01\\n-2.50057787e-01 6.57310411e-02 -7.76414871e-02 2.41371587e-01\\n-4.12696272e-01 -2.81534791e-01 4.46071923e-02 6.01071380e-02\\n-2.57466912e-01 -2.72550493e-01 2.69322637e-02 -1.00781664e-01\\n1.08765781e-01 3.32103819e-02 -6.22842014e-01 2.88397759e-01\\n-3.21263909e-01 -1.24721438e-01 2.19639808e-01 6.52157962e-01\\n-1.23220943e-02 -5.50713539e-01 -4.05414462e-01 -3.51219714e-01\\n-1.17067872e-02 -1.75884426e-01 1.24225710e-02 -9.81647074e-02\\n3.70770693e-01 -1.00242764e-01 8.86145532e-02 3.58269781e-01\\n-7.25724280e-01 7.67762735e-02 -1.55544087e-01 1.18060827e-01\\n-3.45506847e-01 -2.42374092e-02 -2.56183177e-01 -6.17600977e-02\\n-9.72439721e-02 3.87738913e-01 2.59696152e-02 7.03790039e-02\\n-3.27120833e-02 1.87979832e-01 -3.00213993e-01 1.58992425e-01\\n3.61241490e-01 1.28758490e-01 1.84616655e-01 3.31613481e-01\\n-3.31270933e-01 3.86986822e-01 1.07036754e-01 -2.02435330e-01\\n1.41632691e-01 7.32120126e-02 5.84101915e-01 1.23450525e-01\\n-2.01484263e-02 1.76034570e-01 -1.30418375e-01 1.80863008e-01\\n1.95500255e-01 -2.29160488e-01 7.55668804e-02 -1.29111325e-02\\n-1.79440171e-01 -1.23655930e-01 -9.24576223e-02 3.30452412e-01\\n-1.78514943e-01 3.04507792e-01 2.53048927e-01 -1.24001779e-01\\n-7.11512715e-02 -6.24710381e-01 -3.06372009e-02 -2.49003731e-02\\n5.96241318e-02 2.24088088e-01 2.99894750e-01 1.48166329e-01\\n1.28248453e-01 2.31195405e-01 2.65513003e-01 9.55472708e-01\\n-5.13984337e-02 1.40060887e-01 -2.89088368e-01 3.07387441e-01\\n2.40971148e-01 -9.83006582e-02 1.58783063e-01 2.96943873e-01\\n1.85353801e-01 -1.60447255e-01 -2.55039692e-01 2.54841566e-01\\n-5.38007095e-02 -1.17342927e-01 -1.64585233e-01 6.04577288e-02\\n-2.05828637e-01 -4.76935446e-01 4.32802439e-01 2.62411863e-01\\n9.79005620e-02 -9.01689604e-02 -2.60904320e-02 -6.42795861e-03\\n-6.29682839e-02 3.93617451e-01 2.00052019e-02 3.73863488e-01\\n-3.71199727e-01 -3.15283090e-01 -2.34121442e-01 2.52929896e-01\\n-1.03307664e-01 1.75443053e-01 -9.66233462e-02 -1.73820376e-01\\n3.59863460e-01 1.59245759e-01 -3.14045668e-01 1.19239122e-01\\n3.31541225e-02 -2.88603991e-01 -5.57604879e-02 2.91670948e-01\\n-1.51056647e-01 1.62221476e-01 -4.33824323e-02 -2.84954816e-01\\n5.22656858e-01 1.93062201e-01 2.14652315e-01 -5.99146113e-02\\n3.52101713e-01 -1.16483465e-01 3.27088416e-01 1.84622869e-01\\n-5.06664753e-01 3.97843212e-01 -3.82274166e-02 -1.58920676e-01\\n1.56497806e-01 1.17287248e-01 5.14294207e-01 -3.76570165e-01\\n1.09231144e-01 -1.33719608e-01 -4.63076383e-01 -2.66661733e-01\\n-1.82852760e-01 -1.59908254e-02 4.15256411e-01 -4.19202775e-01\\n4.07606848e-02 3.28877360e-01 -5.27872503e-01 -1.72444627e-01\\n1.92290872e-01 1.97783694e-01 1.93492338e-01 -6.11561276e-02\\n-2.38899276e-01 -4.26434755e-01 2.80728359e-02 -4.72782522e-01\\n-3.58956218e-01 -1.96728706e-02 -3.01076472e-01 2.90156841e-01\\n3.28732468e-02 1.55236825e-01 -2.35494226e-01 1.72675163e-01\\n-2.66240865e-01 -1.72437325e-01 3.03732336e-01 1.03987768e-01\\n3.45798552e-01 -9.51112136e-02 -4.27678466e-01 3.77625674e-01\\n-2.57331967e-01 5.22657812e-01 2.36784786e-01 -8.03411484e-01\\n6.28084302e-01 2.01549500e-01 -1.59887701e-01 -4.43921506e-01\\n4.07242239e-01 -3.58837903e-01 3.48102581e-03 3.10886919e-01\\n-1.65228814e-01 -2.27737427e-01 2.99896687e-01 -2.71383300e-02\\n-2.58482754e-01 5.95592916e-01 2.21955135e-01 6.84247585e-03\\n3.37926298e-01 -2.61266202e-01 -9.44666415e-02 -2.42064930e-02\\n-1.47270873e-01 -2.20717520e-01 -3.13650608e-01 4.22418155e-02\\n-1.58533350e-01 -5.36055386e-01 -8.27074349e-02 -3.07028651e-01\\n-1.83166623e-01 -3.75513852e-01 -2.38681540e-01 3.50479692e-01\\n1.05316296e-01 2.15624511e-01 2.39250548e-02 -4.61859517e-02\\n-1.07280351e-02 -7.70258129e-01 -1.29912227e-01 5.86921833e-02\\n4.81336564e-01 1.65374339e-01 1.11661866e-01 -7.01904669e-02\\n2.21104715e-02 4.48579371e-01 -3.26464564e-01 -2.56990314e-01\\n6.02691211e-02 1.18256867e-01 5.31548494e-03 -7.83608556e-02\\n4.48914245e-03 3.05520415e-01 -1.61033154e-01 1.13511011e-01\\n-9.36435685e-02 -5.37121966e-02 2.66910464e-01 -1.52393699e-01\\n-2.80878484e-01 -3.51745486e-01 -2.76931748e-02 2.64620423e-01\\n-5.39514244e-01 -2.51038730e-01 4.60974306e-01 1.80587038e-01\\n8.86089355e-02 2.04350710e-01 2.39415005e-01 -7.93791935e-02\\n-2.34303966e-01 -2.66540945e-01 1.67272076e-01 1.31963924e-01\\n9.66816917e-02 9.73745957e-02 -2.37288848e-01 -6.58024669e-01\\n-3.55326629e+00 -1.16721012e-01 2.38415655e-02 -2.28661284e-01\\n1.70438066e-01 -1.55524373e-01 1.07482392e-02 6.55617341e-02\\n-3.20717722e-01 -3.37169878e-02 -1.03608474e-01 -1.05171643e-01\\n3.70990150e-02 2.87524402e-01 1.23650715e-01 2.94273525e-01\\n5.16137183e-02 -2.66436428e-01 -5.43563738e-02 4.34315383e-01\\n-2.15379193e-01 -6.93347752e-01 1.22196026e-01 -9.54927355e-02\\n1.42795220e-01 2.29194015e-01 -4.73653227e-01 -8.66139829e-02\\n-3.21060210e-01 -2.55334824e-01 3.67913134e-02 -2.12255731e-01\\n-1.15403995e-01 2.18030229e-01 1.01880156e-01 -3.69861051e-02\\n4.36322354e-02 -2.37846255e-01 5.53515702e-02 -4.85644072e-01\\n5.62111884e-02 -7.15092599e-01 3.85102071e-02 -1.79421574e-01\\n5.91517150e-01 -3.77573073e-01 2.42797896e-01 1.34615511e-01\\n2.37286776e-01 2.18169257e-01 -3.99137996e-02 2.43577268e-02\\n-2.70448178e-01 -3.70845944e-01 -1.90875769e-01 -2.01608613e-01\\n4.03116047e-01 7.24322915e-01 -1.25797182e-01 1.02143297e-02\\n4.56551053e-02 -4.22996402e-01 -4.66671169e-01 -4.93965447e-01\\n-1.52908489e-01 -9.41027626e-02 -7.15032697e-01 -4.92935658e-01\\n-2.01911926e-01 1.36598432e-02 -1.34685606e-01 5.69943011e-01\\n-4.16445076e-01 -4.28983182e-01 -3.65291536e-02 -5.94303727e-01\\n1.51316911e-01 -1.92612514e-01 7.63198882e-02 -2.05273151e-01\\n-3.52591664e-01 -4.72140998e-01 2.69705504e-01 -8.67446139e-02\\n-2.37495199e-01 -1.03596739e-01 1.27611747e-02 -2.58096188e-01\\n-3.54307711e-01 -4.52371687e-01 4.11495090e-01 2.59579886e-02\\n3.43775094e-01 1.27907246e-01 4.03747082e-01 4.77662776e-03\\n4.73737091e-01 -8.80195200e-02 1.55256495e-01 -3.81164610e-01\\n8.17187876e-02 2.83734761e-02 5.46576679e-01 -2.85340667e-01\\n7.94946998e-02 1.46577075e-01 -3.52357537e-01 1.81033164e-02\\n3.86818022e-01 6.32219994e-03 -1.77951157e-01 -2.27525681e-02\\n4.51621026e-01 -3.89102131e-01 -3.22578937e-01 2.04966664e-01\\n1.01404093e-01 5.40069699e-01 1.41419936e-02 -3.91729683e-01\\n-3.00474286e-01 4.80876386e-01 -1.49937347e-01 -2.44879588e-01\\n9.63295158e-03 1.14314497e-01 -5.56169301e-02 4.00172651e-01\\n1.44649167e-02 -2.84162313e-01 -4.38005984e-01 -1.34998485e-01\\n7.72362873e-02 1.74708575e-01 1.81455106e-01 1.10887205e-02\\n-1.76466480e-01 -2.99342461e-02 -1.33923501e-01 1.61759555e-01\\n1.50598586e-01 2.21451521e-01 1.92093611e-01 -1.28597066e-01\\n-1.58519056e-02 1.76396415e-01 -2.43826404e-01 1.66385993e-01\\n-2.44249225e-01 -2.04034355e-02 -3.43986660e-01 -3.83897454e-01\\n-1.25304386e-01 -3.10044944e-01 1.98234782e-01 3.29578310e-01\\n2.06822902e-01 -5.80574907e-02 1.43459931e-01 -5.61024904e-01\\n3.39569360e-01 -1.05406931e-02 1.36097550e-01 1.02507778e-01\\n1.95527263e-02 5.61319292e-01 1.67205438e-01 -1.59783646e-01\\n-1.35963872e-01 -3.77260000e-02 -3.37077051e-01 -2.10846767e-01\\n1.41084313e-01 -3.62861335e-01 -1.92995667e-01 4.85600263e-01\\n1.61782697e-01 -3.13034952e-01 -8.53312165e-02 3.52205068e-01\\n1.22287445e-01 -2.73336470e-01 -1.68753266e-01 4.17708270e-02\\n1.86231717e-01 1.68249801e-01 3.55196923e-01 -3.68365467e-01\\n8.16067457e-02 3.65665853e-02 2.19429582e-02 5.11114120e-01\\n2.41229888e-02 1.43759519e-01 -1.93158433e-01 -1.51198223e-01\\n4.20423180e-01 -2.79331654e-02 4.03627716e-02 2.70540118e-02\\n1.29848216e-02 -2.27307767e-01 -4.77286309e-01 -1.20499069e-02\\n4.82060090e-02 -1.53756648e-01 -1.12884812e-01 2.10063279e-01\\n4.15571174e-03 -9.74253565e-02 -4.51272935e-01 -3.19119692e-01\\n-3.61985832e-01 4.72452939e-02 2.73428317e-02 -3.53757769e-01\\n-3.97210233e-02 5.23503833e-02 -5.30670404e-01 2.24649653e-01\\n-1.06764361e-01 8.47542658e-02 1.69562444e-01 1.03137486e-01\\n-1.31812423e-01 -1.31850960e-02 7.62035400e-02 1.12451226e-01\\n-3.69189262e-01 -2.32089832e-01 6.01567142e-03 -8.73040378e-01\\n5.13009019e-02 -5.75467683e-02 -1.50787950e-01 5.88278845e-02\\n6.61048219e-02 -5.71408570e-01 1.93926930e-01 -5.20255983e-01\\n-3.85395288e-02 5.61361387e-02 -2.10825652e-01 -3.23694468e-01\\n1.24232464e-01 -5.72292767e-02 -3.53815287e-01 2.58285642e-01\\n-3.82600099e-01 3.05319041e-01 4.51804046e-03 2.08872482e-02\\n2.56689012e-01 -3.59165877e-01 2.19000369e-01 -2.28487492e-01\\n-2.76170969e-01 -1.87412962e-01 -4.09041792e-01 -2.21926868e-01\\n9.11185071e-02 -2.13864014e-01 -1.16523832e-01 6.78097233e-02\\n3.06115597e-01 1.86384290e-01 -9.91202146e-03 -1.87103033e-01\\n3.70159671e-02 -4.97170031e-01 8.64468291e-02 -3.16538453e-01\\n-6.39452785e-02 -1.36008576e-01 2.12101236e-01 -1.35455534e-01\\n7.54953623e-02 -3.14322054e-01 6.56183839e-01 -1.87933490e-01\\n-2.87419707e-01 -1.06150769e-01 1.92510579e-02 -1.41704232e-02\\n1.31835237e-01 -3.31633002e-01 7.50561617e-03 2.67958045e-01\\n1.92695618e-01 9.38102528e-02 2.45631039e-01 -1.00399874e-01\\n-1.17276236e-01 2.96685454e-02 -5.47791660e-01 5.88313863e-02\\n7.60778069e-01 2.19236597e-01 4.93063591e-02 1.78157419e-01\\n1.27772614e-01 2.22749010e-01 5.00365555e-01 2.20818892e-02\\n-3.16789262e-02 2.77496517e-01 1.19852059e-01 -4.61885095e-01\\n-1.75466001e-01 -1.16186075e-01 -1.63947389e-01 -3.12177956e-01\\n6.16309941e-01 3.98458630e-01 -4.00034487e-01 -3.44561875e-01\\n-1.52685627e-01 -1.37759879e-01 1.71947405e-01 -6.85755685e-02\\n-6.52290583e-02 -1.22053117e-01 4.79434818e-01 6.98408112e-03\\n1.95310235e-01 4.69329387e-01 -8.74790251e-02 -3.02573383e-01\\n-5.52049205e-02 1.49460450e-01 2.02721164e-01 3.80473137e-01\\n-1.48210123e-01 2.14094371e-01 -8.77735987e-02 1.98888496e-01\\n-5.11602834e-02 1.06716119e-01 1.24414593e-01 -5.76919178e-03\\n1.05100930e-01 4.18132395e-02 2.72627741e-01 4.11500484e-01\\n1.78184807e-01 4.58744764e-01 2.02496380e-01 -8.37726798e-03\\n2.94630289e-01 6.43563032e-01 3.55520934e-01 1.03669487e-01\\n-8.90064836e-02 5.29621504e-02 -2.23074518e-02 -7.39959180e-02\\n4.34763253e-01 2.26070568e-01 1.77446187e-01 7.50275373e-01\\n2.55090863e-01 2.48890191e-01 6.50442302e-01 -6.09853983e-01\\n-4.01869744e-01 -1.01121500e-01 6.40795887e-01 -2.68645704e-01\\n-8.54948536e-02 1.23422883e-01 -2.93706775e-01 1.35742262e-01\\n-6.24728680e-01 -2.50672717e-02 1.30272985e-01 5.41855581e-02\\n-3.51395346e-02 -3.73576744e-03 -9.91823375e-02 6.07349314e-02\\n-1.43953234e-01 -1.63878262e-01 -3.44019324e-01 -2.56816864e-01\\n-3.32980543e-01 -6.87018856e-02 -3.97430137e-02 -8.28104466e-03\\n-7.70619661e-02 -3.75301749e-01 -1.92177117e-01 8.83833542e-02\\n4.10975069e-01 -2.40074560e-01 -1.49379551e-01 -1.35970145e-01\\n4.74332459e-02 2.35275298e-01 5.69668233e-01 -3.23955305e-02\\n1.18854299e-01 -2.54512817e-01 -2.13261619e-01 1.25390859e-02\\n2.69805342e-01 3.75774205e-02 1.38977438e-01 5.28261602e-01\\n-3.08562458e-01 -8.26487616e-02 1.65057629e-01 2.58873224e-01\\n-4.56463158e-01 -9.79380906e-02 3.62323783e-02 2.68457085e-01\\n9.89528447e-02 1.78756312e-01 -2.51592427e-01 1.24230728e-01\\n-3.60098720e-01 -4.72705007e-01 3.91173333e-01 -1.62932053e-01\\n-1.35491356e-01 1.66049674e-01 3.56720418e-01 1.26869947e-01\\n-1.44634545e-01 2.52998574e-03 1.07691428e-02 3.21577609e-01\\n1.26225897e-03 2.99942732e-01 -2.81779736e-01 -2.98861146e-01\\n-2.83672988e-01 2.78143555e-01 -9.20500979e-02 1.96898341e-01\\n-1.29035162e-02 3.34455699e-01 1.50864413e-02 1.48398772e-01\\n2.37061217e-01 2.64530256e-02 -1.67650953e-01 -2.04256326e-01\\n-2.32290462e-01 -2.65042752e-01 1.50806561e-01 3.28221284e-02\\n1.16261475e-01 -3.62598211e-01 -9.01129395e-02 -2.11822748e-01\\n-2.40717739e-01 -3.39362264e-01 -2.65211402e-03 2.04435457e-02]]',\n", + " 'Job Informationen Your tasks: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements Your profile: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Benötigte Skills Python Python MySQL Englisch Scala ETL',\n", + " '[\"Research\"]',\n", + " '[\"Automation\", \"MySQL\", \"Data Quality\", \"Python Server Pages\", \"Tooling\", \"Computer Science\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Scala (Programming Language)\", \"Pyspark\", \"Python (Programming Language)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Data Science\", \"Virtual Computing\", \"Machine Learning Algorithms\", \"Scalability\", \"Big Data\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Scripting\", \"Algorithms\", \"Git Flow\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " \"['English', 'Dhivehi']\"],\n", + " ['32',\n", + " 'data analytics consultant',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.89278537e-01 1.65819764e-01 4.24691349e-01 -5.29332235e-02\\n3.75030786e-01 -9.19754878e-02 -3.71104851e-02 4.14441019e-01\\n9.32690338e-04 -4.99805421e-01 -4.68457378e-02 -2.56482452e-01\\n-5.94532192e-02 5.95912822e-02 -2.91287694e-02 4.32043016e-01\\n3.47095162e-01 1.77651465e-01 -2.36157998e-01 2.26133212e-01\\n1.53578147e-01 -7.96462297e-02 4.61951643e-02 7.57712185e-01\\n4.13486153e-01 -1.17374100e-02 -8.86808261e-02 1.66973114e-01\\n-1.94778979e-01 -2.41087630e-01 3.82936597e-01 1.73872299e-02\\n-1.53026670e-01 -2.46861115e-01 7.02838674e-02 6.57373443e-02\\n-1.44008353e-01 4.84846383e-02 -1.17604010e-01 1.09120002e-02\\n-4.17039365e-01 -1.96378663e-01 -2.88858693e-02 -6.75839037e-02\\n-2.81513780e-01 -3.59474152e-01 1.85740571e-02 -5.87548912e-02\\n5.65662198e-02 3.59946210e-03 -6.02794051e-01 4.21349615e-01\\n-2.78940290e-01 -1.39247268e-01 1.61520541e-01 6.26566827e-01\\n-7.73884654e-02 -4.06791270e-01 -4.82372910e-01 -2.64505684e-01\\n2.37249210e-01 -2.60206848e-01 1.43798068e-01 -2.65253663e-01\\n4.16650683e-01 4.37681489e-02 -7.62402872e-03 3.50277632e-01\\n-6.42199457e-01 -5.28196618e-02 -4.58097339e-01 -1.52877524e-01\\n-3.49141419e-01 -9.00792144e-03 -4.47684139e-01 -1.43460244e-01\\n-1.65018633e-01 3.45971256e-01 1.97635833e-02 8.80823210e-02\\n-2.05259115e-01 1.14988834e-01 -2.10410073e-01 2.45822474e-01\\n1.32299989e-01 3.56799155e-01 2.42739841e-01 2.27376223e-01\\n-4.09273952e-01 4.20973539e-01 1.32329971e-01 -3.84318829e-01\\n1.69657871e-01 1.64575040e-01 3.60664606e-01 -1.11526288e-01\\n1.25827059e-01 5.33736646e-02 -2.15807199e-01 3.16628367e-01\\n2.97861099e-01 -4.19375896e-01 3.30130756e-02 -1.82360932e-01\\n-3.65978256e-02 2.36012954e-02 9.96241570e-02 1.47247121e-01\\n-3.24783742e-01 4.55450743e-01 6.43786713e-02 -2.43983790e-01\\n-5.36719244e-03 -4.84207600e-01 -1.33967802e-01 7.89005309e-02\\n8.05912390e-02 3.35926451e-02 1.94820225e-01 2.15754658e-01\\n2.83774912e-01 -3.13561000e-02 1.72663942e-01 7.34126151e-01\\n2.02202760e-02 9.12136734e-02 -2.16340318e-01 4.17123973e-01\\n8.77283141e-02 -3.01394165e-01 2.63441175e-01 2.36439452e-01\\n6.75913468e-02 -1.11400127e-01 -2.08296567e-01 3.05444062e-01\\n1.14453677e-02 -1.57450095e-01 -2.94051826e-01 8.45068768e-02\\n-1.78603400e-02 -4.38740909e-01 6.65474415e-01 1.55925518e-02\\n2.56550848e-01 -5.61988447e-03 5.66444509e-02 -1.41291440e-01\\n-1.84023147e-03 1.98301330e-01 5.72228841e-02 8.72521922e-02\\n-2.73829550e-01 -2.65384465e-01 -1.29848883e-01 1.89023316e-01\\n-3.11131567e-01 1.98273227e-01 -1.37262151e-01 -8.49168077e-02\\n3.04281324e-01 -5.01781739e-02 -3.37651163e-01 1.79451942e-01\\n-2.22544130e-02 -1.82415128e-01 -6.71432316e-02 3.54633957e-01\\n-1.12618707e-01 1.94626465e-01 -8.78626108e-02 -2.21390247e-01\\n4.73379582e-01 2.42205128e-01 9.32067335e-02 -4.80190888e-02\\n3.24119329e-01 -1.28768414e-01 7.88881034e-02 4.80159000e-02\\n-6.42589569e-01 5.27368486e-01 -3.68334092e-02 -2.39975631e-01\\n1.24532752e-01 -3.83894220e-02 3.70939791e-01 -2.54251659e-01\\n-4.83802333e-02 -1.79472063e-02 -2.65331596e-01 -2.93323100e-01\\n-3.99223529e-02 -1.54572576e-01 3.99023414e-01 -3.95082355e-01\\n-3.21061052e-02 1.48121759e-01 -6.39471650e-01 -3.81809995e-02\\n1.80207923e-01 2.10323617e-01 1.42015517e-01 1.23901695e-01\\n-5.68739548e-02 -4.16574985e-01 5.27085811e-02 -4.73766893e-01\\n-3.71522129e-01 1.68681800e-01 -3.39974850e-01 2.67334402e-01\\n1.62085518e-01 -4.22293544e-02 -1.26068965e-01 1.62485942e-01\\n-1.02071576e-01 -1.38086546e-02 1.04659073e-01 3.58076245e-02\\n3.53349596e-01 1.19742818e-01 -4.32161659e-01 4.96114075e-01\\n-1.28588930e-01 5.36070704e-01 9.10723582e-02 -7.35056043e-01\\n4.81451929e-01 3.34875196e-01 8.35393146e-02 -3.01237553e-01\\n5.88206172e-01 -2.63532013e-01 -7.40985721e-02 1.88967995e-02\\n-3.89510751e-01 -2.22679436e-01 1.80822030e-01 -1.74568862e-01\\n-2.17266887e-01 4.83381152e-01 1.95077546e-02 1.46033451e-01\\n1.22814365e-01 -1.97617248e-01 -1.14423156e-01 5.46050556e-02\\n-1.39992207e-01 -2.01869130e-01 -4.67154592e-01 -1.86526868e-02\\n-1.37503520e-01 -4.44969982e-01 -1.51504576e-01 -4.33155894e-01\\n-2.12103024e-01 -3.65394652e-01 -2.16023862e-01 2.43283629e-01\\n1.32603675e-01 9.19411033e-02 9.18990001e-02 -2.07596589e-02\\n-1.45976827e-01 -4.80092287e-01 4.64264378e-02 1.34170651e-02\\n3.87672067e-01 2.28670508e-01 5.65271899e-02 4.22685035e-03\\n3.63092981e-02 5.89971900e-01 -3.56187254e-01 -2.57472068e-01\\n1.13064595e-01 2.54427433e-01 1.97737291e-02 -1.15199499e-01\\n1.54961109e-01 3.98447245e-01 -2.05161184e-01 -1.84747502e-02\\n8.48463038e-04 1.30725531e-02 4.43889052e-01 4.27895039e-03\\n-3.06963533e-01 -1.67835221e-01 -1.48197636e-01 1.68636695e-01\\n-5.28807521e-01 -2.89574414e-01 5.79935730e-01 2.24311784e-01\\n2.02735826e-01 1.14504457e-01 1.27705961e-01 1.60038676e-02\\n-1.24381818e-01 -2.17966646e-01 2.03012779e-01 7.85360634e-02\\n-8.73875804e-03 1.01628713e-01 -8.38179439e-02 -5.70724010e-01\\n-3.78299141e+00 -2.05413789e-01 1.62524223e-01 -2.67611474e-01\\n2.92937577e-01 -1.45262912e-01 1.12024091e-01 -8.38462487e-02\\n-4.04105306e-01 8.55377764e-02 -2.27435276e-01 -2.25407124e-01\\n1.41399056e-01 1.85297057e-01 1.71556190e-01 1.71768919e-01\\n1.96015596e-01 -3.08202893e-01 -2.81631108e-02 3.58277231e-01\\n-8.45748037e-02 -6.66406929e-01 2.16851220e-01 -3.21940817e-02\\n2.69170284e-01 4.03082341e-01 -3.23780864e-01 -3.59794870e-02\\n-3.53415251e-01 -2.45629773e-01 1.51763186e-01 -3.27189416e-01\\n-1.02398820e-01 3.32295209e-01 2.31244370e-01 -1.89961344e-01\\n1.56141847e-01 -3.83249611e-01 -4.32644077e-02 -3.93341660e-01\\n1.64613023e-01 -4.58610475e-01 -3.76622267e-02 3.45347449e-02\\n8.02492142e-01 -2.56899774e-01 1.62282497e-01 3.25393192e-02\\n1.67641312e-01 2.26336524e-01 8.77269432e-02 5.74733205e-02\\n-1.71498999e-01 -2.91284680e-01 -4.54140604e-02 -4.53751311e-02\\n5.08171558e-01 4.35516149e-01 -1.31619424e-01 4.50974591e-02\\n5.74094243e-02 -3.03248793e-01 -4.01313812e-01 -2.63187468e-01\\n-2.53815621e-01 -1.25976220e-01 -5.31077802e-01 -4.85110998e-01\\n-1.09135494e-01 -1.51337191e-01 -1.13375507e-01 5.25751829e-01\\n-1.31340057e-01 -3.96715134e-01 -1.13917455e-01 -5.88829517e-01\\n2.31709361e-01 -1.48085847e-01 1.07151181e-01 -1.24053337e-01\\n-2.53479987e-01 -6.82873249e-01 -1.04118906e-01 5.59904892e-03\\n-2.68404819e-02 -1.98721752e-01 1.31356135e-01 -1.33584917e-01\\n-2.61449426e-01 -4.38988835e-01 4.03080881e-01 8.26001316e-02\\n3.28862131e-01 2.53736615e-01 2.17943311e-01 8.24141949e-02\\n3.30958366e-01 -2.03416675e-01 7.13393092e-02 -3.76973510e-01\\n7.70398080e-02 2.99176443e-02 4.15632427e-01 -2.10384399e-01\\n8.46751314e-03 5.30660078e-02 -2.55673319e-01 -1.35633782e-01\\n3.32347929e-01 -8.28782618e-02 2.70992965e-01 -1.63714826e-01\\n3.09480995e-01 -2.75099248e-01 -2.11920485e-01 8.45624879e-02\\n-8.07435140e-02 5.31822741e-01 -5.78420646e-02 -3.26728523e-01\\n-1.19973212e-01 4.85659063e-01 -1.94136098e-01 7.53409415e-02\\n-1.84656188e-01 1.19954139e-01 -2.83136100e-01 2.08400682e-01\\n-8.62804502e-02 -2.22571135e-01 -2.06572369e-01 -1.51368394e-01\\n-3.55521701e-02 2.52028972e-01 3.63638788e-01 8.27135742e-02\\n-6.68608546e-02 -3.40818286e-01 -1.24611251e-01 1.22682557e-01\\n3.51553291e-01 4.45125669e-01 1.03048645e-01 -1.27441108e-01\\n6.67838976e-02 2.38299310e-01 -1.46716952e-01 5.33829629e-02\\n-1.55077368e-01 1.45213038e-01 -3.19287568e-01 -2.62711972e-01\\n-2.39935309e-01 -3.63748699e-01 8.85156617e-02 3.10257614e-01\\n1.19192228e-01 -4.40309159e-02 2.62999088e-02 -2.57839113e-01\\n3.70018870e-01 1.30780563e-01 1.23513408e-01 1.79509521e-01\\n3.26418243e-02 5.13428986e-01 -4.08241116e-02 1.18675670e-02\\n-2.26338714e-01 1.08575784e-01 -1.96292937e-01 -1.54820889e-01\\n5.93637899e-02 -3.56685013e-01 -1.71090215e-01 3.87626350e-01\\n9.19514075e-02 -2.05182061e-01 -8.99148807e-02 3.57179612e-01\\n-5.57397678e-02 -2.78260112e-01 -2.01166496e-01 1.00774169e-01\\n3.32860827e-01 4.43358570e-02 2.25029036e-01 -4.06200320e-01\\n-4.50377986e-02 -5.16333692e-02 -1.89623415e-01 3.39184374e-01\\n3.65303047e-02 1.78915873e-01 -1.20371886e-01 -3.14012825e-01\\n3.71581227e-01 -1.54690430e-01 -6.32148609e-02 1.87064335e-01\\n4.92909774e-02 -1.41704366e-01 -3.54002953e-01 -5.26341796e-02\\n-6.77675083e-02 -2.72011817e-01 2.24790182e-02 5.44886068e-02\\n2.30423007e-02 9.18038487e-02 -6.41231537e-01 -2.59519279e-01\\n-3.70577097e-01 -1.36464879e-01 6.05459474e-02 -4.06165242e-01\\n-7.19771814e-03 -2.43115455e-01 -5.08729041e-01 3.12501460e-01\\n-1.52167618e-01 -6.12368062e-02 1.29368410e-01 -1.86031926e-02\\n-3.38812530e-01 -1.43787354e-01 1.72038361e-01 2.12686807e-01\\n-1.90134749e-01 -2.45225310e-01 -6.90236315e-03 -9.48936105e-01\\n2.63559222e-01 6.96840957e-02 -5.90149388e-02 6.70466796e-02\\n-8.20579305e-02 -5.02433956e-01 4.20484990e-02 -2.45780870e-01\\n-4.88119647e-02 -6.54559508e-02 -1.70542791e-01 -3.09080750e-01\\n1.63309529e-01 4.86135744e-02 -1.76059514e-01 3.76858473e-01\\n-2.54886627e-01 3.37606966e-01 -1.74028859e-01 1.24853589e-01\\n-4.68346067e-02 -2.64775485e-01 1.21227831e-01 -3.95226657e-01\\n-3.04573298e-01 -2.68926442e-01 -2.87620753e-01 -8.67350623e-02\\n-6.72607794e-02 -3.75910968e-01 -8.34767520e-02 5.13966903e-02\\n3.13785464e-01 6.10060282e-02 -1.98247522e-01 -1.33502781e-01\\n5.25810085e-02 -4.64486420e-01 9.12550539e-02 -1.92676485e-01\\n-1.73895940e-01 -2.49000192e-01 7.88600743e-02 8.82867947e-02\\n9.44015235e-02 -4.52759236e-01 3.18505019e-01 -4.72650528e-01\\n-3.44332010e-01 3.19315791e-02 1.08638421e-01 -2.77879211e-04\\n2.26243556e-01 -6.36145651e-01 -5.29601984e-02 3.44418228e-01\\n3.73442955e-02 1.43426269e-01 1.79681614e-01 6.59289584e-02\\n-1.56176254e-01 5.03025413e-01 -3.77994627e-01 1.57835856e-01\\n6.76617265e-01 1.94615185e-01 9.04326439e-02 2.02199653e-01\\n2.41869867e-01 2.28584290e-01 4.34639335e-01 2.75169723e-02\\n-1.40130043e-01 3.57404202e-01 8.63722339e-02 -5.21435082e-01\\n9.08175558e-02 -5.83806820e-02 -2.21434265e-01 -3.74654621e-01\\n5.82979560e-01 4.81091022e-01 -3.73153001e-01 -2.67565161e-01\\n-1.54125467e-01 -1.63160309e-01 9.49131176e-02 -4.87394966e-02\\n1.22190110e-01 -1.01871140e-01 4.77060080e-01 -7.94293266e-03\\n1.63796276e-01 5.06234646e-01 -1.96373418e-01 -2.95528829e-01\\n-7.23967031e-02 2.18754247e-01 5.17512523e-02 5.22099614e-01\\n-2.22554386e-01 2.80208409e-01 -1.29283980e-01 7.60024413e-02\\n-2.95411679e-03 1.02971815e-01 1.43006876e-01 4.96926792e-02\\n2.08075568e-01 1.48340210e-01 3.60450745e-01 4.11220938e-01\\n2.46804267e-01 4.52805132e-01 2.90908277e-01 1.95370689e-01\\n4.36399400e-01 5.30742228e-01 3.54871094e-01 2.17710450e-01\\n5.94713818e-03 1.90790165e-02 3.82518135e-02 4.77323942e-02\\n1.22484751e-01 3.67271483e-01 -8.02629516e-02 8.28208685e-01\\n3.24884623e-01 2.72329867e-01 7.00516045e-01 -6.25356734e-01\\n-3.43920738e-01 9.88996699e-02 3.82427454e-01 -3.12486112e-01\\n-5.35572879e-02 -1.00730192e-02 -2.91328222e-01 2.47359931e-01\\n-4.77453232e-01 -1.91047952e-01 -1.02697305e-01 7.03876168e-02\\n1.35260731e-01 -1.33510992e-01 -1.59943417e-01 1.31121697e-02\\n-1.32905036e-01 -1.76041886e-01 -4.78650063e-01 -4.91851196e-02\\n-3.11595023e-01 -1.68124542e-01 -1.05133489e-01 -1.66497186e-01\\n3.25378738e-02 -3.15359682e-01 -8.25505480e-02 1.63022764e-02\\n2.44506553e-01 1.00539392e-02 -2.46262960e-02 -1.22546427e-01\\n3.11628491e-01 2.08940044e-01 4.26822841e-01 5.91963977e-02\\n6.23763017e-02 -6.38823807e-02 -1.00719534e-01 2.76032630e-02\\n2.01331258e-01 6.56931603e-04 6.25892058e-02 3.43713731e-01\\n-3.67006779e-01 -2.41843566e-01 1.46109834e-01 3.03246707e-01\\n-4.72136945e-01 5.44743575e-02 -2.64433138e-02 2.48385042e-01\\n7.14161023e-02 1.35532573e-01 -1.43465176e-01 7.89320469e-02\\n-1.63069949e-01 -4.16778326e-01 2.55888999e-01 8.72666668e-03\\n-8.73213336e-02 1.41284257e-01 3.25685501e-01 2.35620111e-01\\n-2.56643116e-01 -8.01307708e-02 2.60741767e-02 1.93498850e-01\\n1.03545673e-01 2.20185369e-01 -1.38164043e-01 -2.05041096e-01\\n-3.33934516e-01 7.60411471e-02 -2.14568183e-01 1.04026228e-01\\n-4.91582863e-02 2.00165018e-01 8.51589441e-02 9.58588198e-02\\n2.37540409e-01 -2.62203161e-02 -1.54669806e-01 -2.68375009e-01\\n-2.62612641e-01 -2.86973100e-02 1.23977803e-01 -1.27375126e-02\\n2.49295339e-01 -4.17605788e-01 -7.42888302e-02 -1.24017663e-01\\n-1.24933548e-01 -3.02232504e-01 1.03322759e-01 -4.79193442e-02]]',\n", + " \"In this role you will advise our clients during the conception, planning and implementation of data analytics projects. You will work with the project team to provide our clients the high quality and reliability we are known for. Your tasks will include: Requirements' analytics and solution design. Data modelling; architecture design; data extraction and transformation. Data visualization and reporting. Implementation of machine learning models. Presenting your results to middle and top management What you bring: Domain knowledge in at least one industry Down-to-earth and pragmatic results-oriented attitude while advising your clients. Experience in working with large data sets and databases. Knowledge in relevant technologies and programming languages (e.g. SQL, Python, Hadoop, Spark, Tableau, Microsoft BI). Excellent communication skills in German and English. To be successful in this role you will need to: Strive to understand your clients' needs. Deliver outstanding results with high business value in a comprehensible form. Have the intellectual agility required to get the job done in an easy-to-do-business-with way. Value clever and creative team play. Are you interested to join a great team with proven track record and to work in projects that will constantly challenge you? We are happy to receive your application: Direct Phone: +41 44 435 10 10 e-Mail: hanspeter.graenicher@d-one.ai D ONE Solutions AG Hans Peter Gränicher Sihlfeldstrasse 58 8003 Zürich\",\n", + " '[\"Verbal Communication Skills\", \"Planning\", \"Reliability\", \"Presentations\", \"Creativity\"]',\n", + " '[\"Tableau (Business Intelligence Software)\", \"Advising\", \"KM Programming Language\", \"Agility\", \"Analytics\", \"Data Modeling\", \"Industrialization\", \"Python (Programming Language)\", \"Data Extraction\", \"Track (Rail Transport)\", \"Architectural Design\", \"E (Programming Language)\", \"Data Transformation\", \"Data Visualization\", \"Machine Learning Methods\", \"Minimum Data Set\", \"Receivables\", \"Solution Design\", \"SQL (Programming Language)\"]',\n", + " \"['English']\"],\n", + " ['84',\n", + " 'software engineer - .net developer w/m',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.01657408e-01 2.30316505e-01 5.26042521e-01 -8.72600079e-02\\n4.53993380e-01 -1.98693052e-01 -4.32159677e-02 4.65722531e-01\\n-1.48710459e-01 -3.88769388e-01 -1.91301897e-01 -3.22442859e-01\\n-7.62060061e-02 1.10869899e-01 2.56091684e-01 3.47763777e-01\\n3.33220124e-01 1.18078180e-01 -2.80989975e-01 2.60545522e-01\\n1.94182679e-01 2.88035795e-02 8.21112022e-02 7.07120717e-01\\n3.54223788e-01 4.11188267e-02 -8.30323398e-02 -8.85845050e-02\\n-2.78669566e-01 -2.18544230e-01 3.54387879e-01 -1.13285892e-01\\n9.43706837e-03 -3.22178423e-01 3.10933106e-02 2.85002198e-02\\n-1.44600525e-01 -4.73411791e-02 5.77373095e-02 7.23253414e-02\\n-5.18574059e-01 -2.85762548e-01 9.77040604e-02 1.04219258e-01\\n-1.26700684e-01 -2.94646025e-01 1.31777346e-01 5.10048755e-02\\n-7.62825226e-03 1.76417325e-02 -6.26534224e-01 3.51388305e-01\\n-1.37516931e-01 -1.61844820e-01 2.68187255e-01 5.19277930e-01\\n9.07676667e-02 -4.50406134e-01 -3.79254997e-01 -2.19055891e-01\\n1.39114901e-01 -6.55782670e-02 1.14454091e-01 -1.67829424e-01\\n4.26876605e-01 4.10379702e-03 -1.53040802e-02 3.15018803e-01\\n-6.47643447e-01 -6.51689023e-02 -1.40244767e-01 -9.32807848e-02\\n-3.80440384e-01 -6.90393150e-02 -1.61267996e-01 -1.86128616e-01\\n-1.57983258e-01 3.76804471e-01 2.10373942e-02 6.85177967e-02\\n-1.69157624e-01 2.39717484e-01 -1.01084098e-01 1.99774280e-01\\n2.34521732e-01 3.20394963e-01 1.94464326e-01 3.26440394e-01\\n-4.34007525e-01 4.29572970e-01 1.73872471e-01 -3.14605385e-01\\n2.68397987e-01 8.12376440e-02 4.69510794e-01 -6.63764775e-04\\n-2.89315172e-02 5.91853261e-02 -1.55917436e-01 1.95396334e-01\\n1.83167130e-01 -2.79840797e-01 5.58342924e-03 -4.80667055e-02\\n-1.07893668e-01 7.28609413e-02 -3.61531787e-02 2.64011979e-01\\n-3.36755455e-01 3.47040176e-01 1.94233999e-01 -1.80412635e-01\\n-1.41463339e-01 -6.26322746e-01 -6.01723269e-02 4.15914170e-02\\n8.80032256e-02 1.40708074e-01 3.84188771e-01 1.16005167e-01\\n2.81707048e-01 -7.74355186e-03 2.41218403e-01 9.65571523e-01\\n-4.74150740e-02 1.07582688e-01 -2.76836783e-01 4.63726968e-01\\n1.14230432e-01 -2.82994151e-01 1.59000471e-01 2.51056403e-01\\n8.21049288e-02 -5.54673411e-02 -1.60506502e-01 3.05519760e-01\\n-1.55198360e-02 -1.57149702e-01 -2.81945586e-01 7.26208910e-02\\n-2.24192902e-01 -4.12770182e-01 5.26985168e-01 1.16957948e-01\\n1.21497825e-01 -1.62992656e-01 -6.64501591e-03 -1.71597436e-01\\n-7.73010999e-02 2.91583210e-01 -5.16703166e-03 1.44726664e-01\\n-3.10260117e-01 -1.66110381e-01 -1.79787949e-01 2.85868943e-01\\n-8.10527653e-02 1.28754824e-01 -5.21859489e-02 -1.62502185e-01\\n3.78315240e-01 7.79769644e-02 -3.39269757e-01 2.55399853e-01\\n-1.87735632e-02 -1.86854005e-01 -8.24888498e-02 1.77755430e-01\\n-1.45436704e-01 1.77360132e-01 -2.99099693e-03 -1.59789100e-01\\n4.00778800e-01 1.08157024e-01 2.41037488e-01 -8.32973868e-02\\n3.35556924e-01 -2.23514304e-01 1.19611971e-01 1.30593076e-01\\n-6.25571430e-01 3.50767910e-01 -4.21801992e-02 -2.29649469e-01\\n9.87343118e-02 8.38403329e-02 4.01858002e-01 -2.06678331e-01\\n1.82592683e-02 -2.28926122e-01 -3.76924276e-01 -3.97141963e-01\\n-2.18826801e-01 -2.89369700e-03 3.97470921e-01 -4.26047057e-01\\n-8.48829001e-02 1.33379266e-01 -4.62853640e-01 -5.70487529e-02\\n1.54725134e-01 2.35626012e-01 -3.24324286e-03 7.60859177e-02\\n-1.41524315e-01 -5.09381235e-01 -3.49010644e-03 -4.50809926e-01\\n-4.86829937e-01 5.03723435e-02 -2.36261696e-01 2.75848210e-01\\n7.04765841e-02 -5.20541742e-02 -1.09029301e-01 1.82467371e-01\\n-2.19011903e-01 2.38632932e-02 1.98784277e-01 1.13973178e-01\\n3.25975686e-01 -4.55042906e-03 -4.06870842e-01 5.26638925e-01\\n-2.47084171e-01 4.39072043e-01 1.11540489e-01 -8.62606168e-01\\n5.28003752e-01 2.48369306e-01 3.06366738e-02 -4.21203971e-01\\n6.95800781e-01 -2.86491513e-01 4.32357490e-02 1.74495146e-01\\n-4.44431126e-01 -2.48281032e-01 2.98005164e-01 -1.40056849e-01\\n-2.04928413e-01 6.21417522e-01 1.27516091e-01 -4.95990328e-02\\n1.78120956e-01 -2.57954895e-01 -1.56515077e-01 1.92018244e-02\\n-8.06622505e-02 -3.19092661e-01 -4.05395478e-01 3.80146466e-02\\n-1.01809837e-01 -4.17731792e-01 -2.30812058e-01 -4.69049394e-01\\n-1.55004919e-01 -3.93153608e-01 -2.32734516e-01 4.07873452e-01\\n1.60260320e-01 8.18269253e-02 2.64743790e-02 -1.81194380e-04\\n-1.10518225e-01 -4.83779132e-01 -6.53129295e-02 3.62274945e-02\\n5.01109958e-01 2.79971659e-01 8.92833024e-02 2.73971411e-04\\n-1.14397459e-01 4.87327367e-01 -1.84871808e-01 -2.12629586e-01\\n1.37901425e-01 1.89772755e-01 9.74273309e-03 -8.47181585e-03\\n1.16365952e-02 3.24117631e-01 -1.43951297e-01 -3.57133821e-02\\n-1.18272565e-01 7.76449144e-02 3.41947585e-01 -2.78005321e-02\\n-2.86080629e-01 -1.93823889e-01 8.93855281e-03 3.27466756e-01\\n-5.47079623e-01 -1.95203200e-01 5.30026436e-01 2.14526981e-01\\n1.23824030e-01 2.05431223e-01 2.03975216e-01 -1.29122138e-01\\n-1.45172358e-01 -2.84640193e-01 1.59101963e-01 1.02967583e-01\\n1.81799874e-01 5.56185506e-02 -9.27492827e-02 -5.30307472e-01\\n-3.47864795e+00 -2.21044689e-01 7.52913281e-02 -3.34521145e-01\\n1.27890781e-01 -1.61596462e-01 1.15579637e-02 -7.93188959e-02\\n-2.88460523e-01 1.16560817e-01 -2.06608340e-01 -1.59368202e-01\\n1.86076507e-01 2.10269094e-01 1.30117182e-02 2.95698315e-01\\n2.01134309e-02 -1.17637962e-01 -1.05754500e-02 2.47143000e-01\\n-2.29296297e-01 -7.16016412e-01 2.09988266e-01 -1.09744065e-01\\n1.80342078e-01 3.02353233e-01 -4.32897776e-01 -1.82762668e-01\\n-1.96550995e-01 -2.67577052e-01 1.68055788e-01 -2.68152297e-01\\n-7.09383935e-02 3.81940663e-01 1.73063174e-01 -8.92019570e-02\\n1.43478513e-01 -3.20594817e-01 -3.08055058e-02 -4.85928386e-01\\n1.94170386e-01 -6.12210691e-01 -5.52832037e-02 -2.24623755e-02\\n6.88734412e-01 -3.89870226e-01 2.27409959e-01 1.69976309e-01\\n2.13257432e-01 2.59818673e-01 -3.58176641e-02 -9.12822559e-02\\n-2.17227474e-01 -3.35270166e-01 -3.78949642e-02 -2.29675874e-01\\n4.11398321e-01 6.01249933e-01 -1.26634508e-01 7.15008527e-02\\n1.40247047e-02 -1.86520129e-01 -3.93612623e-01 -3.71801317e-01\\n-2.04945609e-01 -1.79050490e-01 -6.16498411e-01 -3.83029193e-01\\n-1.35347635e-01 -1.33216962e-01 -1.25852257e-01 6.14490092e-01\\n-2.44769752e-01 -4.28459883e-01 5.69914617e-02 -5.85926533e-01\\n1.43331140e-01 -2.82705218e-01 -6.41627163e-02 -1.94557354e-01\\n-3.09480935e-01 -5.03614187e-01 9.93304178e-02 5.06230630e-02\\n-1.18170395e-01 -1.20080650e-01 9.96291414e-02 -3.15063119e-01\\n-2.71412045e-01 -4.22720760e-01 4.33024794e-01 1.73821226e-01\\n3.42947215e-01 1.56143218e-01 2.25925952e-01 2.15346172e-01\\n2.74255693e-01 -1.82794109e-01 1.23248592e-01 -4.69160557e-01\\n1.29776895e-01 6.87053800e-02 4.86953706e-01 -2.07567602e-01\\n-3.05376090e-02 1.39112726e-01 -1.63504586e-01 -1.01614945e-01\\n3.60747784e-01 2.60422993e-02 -3.13207367e-03 -9.00996253e-02\\n3.19215596e-01 -5.20843327e-01 -1.69356793e-01 8.80354941e-02\\n-7.25154653e-02 5.89414954e-01 -5.49721196e-02 -3.76794934e-01\\n-2.66839206e-01 4.94782120e-01 -5.85391708e-02 -1.56812772e-01\\n-1.05907381e-01 2.18588755e-01 -1.65321618e-01 1.30275801e-01\\n-2.15784367e-02 -2.94437289e-01 -3.67575526e-01 -4.00124863e-02\\n-5.17578758e-02 1.65222615e-01 2.54662424e-01 5.76269068e-02\\n-2.38845591e-02 -3.60036224e-01 -1.58335660e-02 9.85415876e-02\\n3.61271858e-01 4.21312064e-01 1.17894366e-01 -1.05998643e-01\\n5.57792410e-02 2.79089570e-01 -1.48224354e-01 2.46851549e-01\\n-1.94381893e-01 1.50626488e-02 -4.15307850e-01 -3.39877933e-01\\n-1.93253696e-01 -3.39001805e-01 2.73951888e-02 2.59762317e-01\\n2.18290761e-01 1.39832934e-02 -1.97436893e-03 -4.34294939e-01\\n3.72914881e-01 -1.42825218e-02 1.90003067e-01 1.57943472e-01\\n7.91264400e-02 5.56112766e-01 1.52871171e-02 1.07662287e-02\\n-1.51287407e-01 -5.66689298e-02 -1.49415433e-01 -1.85012564e-01\\n8.68122429e-02 -2.75461316e-01 -7.65203536e-02 4.16148633e-01\\n8.19613114e-02 -4.18476760e-01 -5.35611957e-02 3.66258353e-01\\n1.63969565e-02 -2.66350508e-01 -1.59743309e-01 1.54506087e-01\\n2.45470434e-01 1.17358617e-01 1.99685410e-01 -4.57636237e-01\\n-8.44222903e-02 8.59304816e-02 8.80188029e-03 4.32779789e-01\\n9.22154933e-02 1.69989437e-01 -7.78091177e-02 -3.54519725e-01\\n3.06295246e-01 -2.19712734e-01 -9.55667049e-02 -5.89797124e-02\\n1.66751444e-02 -1.22725308e-01 -4.78102893e-01 1.26251578e-02\\n-1.00458845e-01 -2.04753175e-01 -3.46274227e-02 7.36821517e-02\\n1.83986962e-01 6.98039215e-03 -4.16574866e-01 -2.69577563e-01\\n-3.43822837e-01 -4.97456305e-02 -1.73592614e-03 -3.06948841e-01\\n2.68069445e-03 -6.63644001e-02 -6.32181644e-01 2.35883236e-01\\n-2.22123325e-01 -2.98697669e-02 1.35699525e-01 3.24799083e-02\\n-4.05016124e-01 -4.21436615e-02 1.90183878e-01 1.27946869e-01\\n-2.61944354e-01 -2.62508035e-01 1.52523324e-01 -1.00188899e+00\\n9.55086276e-02 -2.13378090e-02 -8.59925449e-02 3.44850682e-03\\n-6.64010197e-02 -5.69378734e-01 1.08484477e-01 -3.78643245e-01\\n-7.40260854e-02 -2.36359835e-02 -1.77935869e-01 -3.82951349e-01\\n6.66894987e-02 -7.95539990e-02 -2.78036922e-01 4.15881753e-01\\n-3.99640292e-01 3.00654590e-01 -1.09746747e-01 5.15957139e-02\\n-3.69774527e-03 -2.46386111e-01 1.61697209e-01 -2.61516273e-01\\n-4.01421487e-01 -7.71443620e-02 -3.94240409e-01 -2.76821703e-01\\n3.57873850e-02 -1.53610215e-01 -1.86638400e-01 5.67276217e-02\\n3.73638779e-01 2.47095488e-02 -1.59127712e-01 -2.94166416e-01\\n9.39259678e-02 -4.03371543e-01 1.43163174e-01 -1.32697701e-01\\n-8.23514313e-02 -4.85573411e-02 1.66207984e-01 4.88710515e-02\\n2.04997882e-02 -3.80417973e-01 4.43856895e-01 -2.50555933e-01\\n-3.48599523e-01 9.30380728e-03 3.47732529e-02 1.22084141e-01\\n3.03717852e-01 -6.10043049e-01 8.09883233e-03 3.31897169e-01\\n1.84408203e-01 1.27481028e-01 2.00592205e-01 -6.08587563e-02\\n-2.08650157e-01 3.51026207e-01 -4.32103574e-01 5.26391529e-02\\n7.39688993e-01 1.03679873e-01 4.80277278e-02 2.23765269e-01\\n2.68755585e-01 2.79728711e-01 4.53116268e-01 -6.14792705e-02\\n-1.08761452e-01 2.46584654e-01 4.00902778e-02 -5.60584128e-01\\n-8.19079801e-02 -1.13639809e-01 -2.35606298e-01 -4.45130467e-01\\n5.28547227e-01 4.19264525e-01 -3.58696282e-01 -2.11495176e-01\\n-1.49978608e-01 -1.95933655e-02 2.14915201e-01 -1.91650569e-01\\n2.85303332e-02 -1.09086350e-01 5.22689521e-01 2.33817622e-02\\n3.44725966e-01 5.76641798e-01 -1.00705497e-01 -4.19857830e-01\\n-1.46472007e-01 7.99509585e-02 1.97171360e-01 3.88619274e-01\\n-5.48314080e-02 2.21585870e-01 -4.78931982e-03 1.48326591e-01\\n-4.92946617e-02 1.34689555e-01 1.30722765e-02 3.48390117e-02\\n1.78639799e-01 4.74532433e-02 3.11515361e-01 4.28870976e-01\\n2.12452784e-01 5.22460938e-01 2.77625203e-01 1.18570812e-01\\n4.00064975e-01 6.08640611e-01 3.78539920e-01 1.62183523e-01\\n-6.17025681e-02 1.15506850e-01 -3.20145972e-02 -1.32013381e-01\\n3.20725799e-01 2.34900519e-01 1.06777489e-01 8.96721423e-01\\n4.49434876e-01 3.10035318e-01 8.22513819e-01 -5.25242031e-01\\n-4.49845880e-01 8.07984248e-02 4.30306405e-01 -3.32671404e-01\\n-9.97834131e-02 1.33153394e-01 -2.08684355e-01 2.31077909e-01\\n-4.54648018e-01 -9.72831920e-02 -4.57446463e-02 -3.57262604e-02\\n7.16367364e-02 -1.18041195e-01 -3.09559584e-01 -3.28844264e-02\\n-1.96422726e-01 -1.37569100e-01 -4.35113788e-01 -1.13557264e-01\\n-3.07073414e-01 -1.60342231e-01 -1.84387580e-01 -1.41903803e-01\\n-4.31750268e-02 -3.27618837e-01 -1.70762718e-01 6.36838377e-02\\n3.12531412e-01 -5.77795990e-02 -5.97471707e-02 -2.34154075e-01\\n2.49766469e-01 2.59165406e-01 5.31386673e-01 -3.04018054e-02\\n1.72598854e-01 -1.49280891e-01 -2.80146003e-01 2.45943945e-02\\n1.28066838e-01 4.25493345e-02 1.01034142e-01 4.06463742e-01\\n-3.15971553e-01 -1.21132933e-01 1.78289935e-01 4.70815331e-01\\n-3.65720093e-01 -1.82724502e-02 -5.54929627e-03 2.99797535e-01\\n1.42836750e-01 6.46017864e-02 -2.51224697e-01 1.06767423e-01\\n-3.01643193e-01 -5.51688313e-01 3.36228400e-01 -1.55969128e-01\\n-5.94274607e-03 9.92349982e-02 3.02237481e-01 2.23221362e-01\\n-1.66063339e-01 -6.45069033e-03 -2.30027214e-02 3.03805888e-01\\n1.61926821e-01 3.61758471e-01 -2.70284951e-01 -1.81942612e-01\\n-2.39786342e-01 1.87577620e-01 -2.68125266e-01 1.32000387e-01\\n-1.61910027e-01 3.24789643e-01 4.35116850e-02 1.38164937e-01\\n1.37695134e-01 4.01956551e-02 -2.39966556e-01 -2.63764739e-01\\n-3.34358811e-01 -2.49595091e-01 1.14812411e-01 -1.49073293e-02\\n2.13729322e-01 -3.78666103e-01 -4.26807813e-02 -1.60440341e-01\\n-1.12145901e-01 -2.99565375e-01 6.32503927e-02 -1.10410452e-01]]',\n", + " 'Über unseren Kunden With already 25 000 consultants around the world and revenues of CHF. 2 Bn., our client is already the global leader in innovation and high-tech engineering consulting. In Switzerland, our client employs more than 200 consultants and aims towards large growth. We operate particularly in Life Sciences (Pharma, Biotech, and Medical Devices), Industry (Watches, MEMs), Aerospace, Automotive, Energy, Railways, Finance and Telecoms sectors. Our client deploys activities throughout Switzerland with premises in Zürich, Basel, Lausanne and Geneva. Ihr Aufgabenbereich Detailed requirements analysis, designing, and developing code. Architecture discussion. Coding, testing, debugging, and documenting programs. Revising and updating programs. Integration and deployment scripts. Participating in production support including investigation and fixing bugs. Ihr Profil Education level: Master or Engineering Degree in Software Engineering (EPFL, ETH, HES or equivalent). Requirements: Minimum 7 years of experience in .NET development. Minimum of 4 years of relevant experience with WPF. Proven experience in UI web technologies: HTML, CSS, Javascript. Professional use of programming languages: .NET / C#, ASP.NET, Web Services (WCF), MVC patterns and Web API. Experience with traditional RDBMS databases, such as SQL Server, Oracle SQL, NoSQL. Extensive experience with a common application server (JBoss, IBM Websphere or BEA Weblogic). Microsoft Prism/ MVVM and unity/ IOC grandly appreciated. Experience with Big Data (Hadoop, Teradata) is a plus. Any experience in mobile development (Android, iOS, Xamarin) is a plus. Ability to work with Agile Methodology (Scrum, XP, TFS etc…) Key qualities: You know how to take initiative You like to work in a multidisciplinary team You value knowledge-sharing You must have strong verbal and writing communication capabilities. Ihre Chance Our client offers an exciting tailored career path for your professional and personal development within an international company. You will be accompanied from the beginning with specific coaching and mentoring programs and intensive training on innovation and management in a fast-moving and results driven environment. Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 384',\n", + " '[\"Professionalism\", \"Investigation\", \"Management\", \"Operations\", \"Integration\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Code Testing\", \"NoSQL\", \"ASP.NET\", \"KM Programming Language\", \"Micro Electro-Mechanical Systems (MEMS)\", \"Cascading Style Sheets (CSS)\", \"Life Sciences\", \"Industrialization\", \"IBM WebSphere MQ\", \"Xamarin.ios\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"High Tech Manufacturing\", \"Scrum (Software Development)\", \"Application Servers\", \"Levelling\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Web Services\", \"Medical Devices\", \"Agile Methodology\", \"Finance\", \"Mobile Application Development\", \"Wcf 4\", \"C# (Programming Language)\", \"Pathing\", \"JavaScript (Programming Language)\", \"Production Support\", \"Revisions\", \"Big Data\", \"Android Software Development\", \"SQL Server Reporting Services\", \"Requirements Analysis\", \"Scripting\", \"Prism\", \"Personality Development\", \"Web UI\", \"Application Programming Interface (API)\", \"Debugging\"]',\n", + " \"['English']\"],\n", + " ['125',\n", + " 'digital humanities analyst in the data analytics center 80 - 100%',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.97839725e-01 2.03282148e-01 4.57758784e-01 2.31721736e-02\\n4.41922903e-01 -9.44348425e-02 -1.66357920e-01 4.15524244e-01\\n-9.94899422e-02 -3.47704291e-01 -1.57185301e-01 -3.31334502e-01\\n-3.76208350e-02 1.60476625e-01 1.13304973e-01 4.86900628e-01\\n3.78952086e-01 -6.94307834e-02 -1.48550749e-01 1.87048733e-01\\n1.51681542e-01 3.16349603e-03 -1.36451721e-02 7.51234889e-01\\n4.72653866e-01 3.20746601e-02 -4.69502099e-02 1.69557393e-01\\n-1.78675085e-01 -1.91202790e-01 5.62506318e-01 8.57219845e-02\\n-1.42072380e-01 -3.00412118e-01 9.24827978e-02 3.44371021e-01\\n-2.00636104e-01 -2.70967126e-01 2.29864903e-02 7.97267854e-02\\n-4.41040158e-01 -1.91069126e-01 -2.37965494e-01 2.27542371e-02\\n-3.50309908e-01 -4.29361343e-01 1.42631605e-01 9.71182361e-02\\n1.61603779e-01 5.10827824e-02 -5.88668346e-01 2.70580173e-01\\n-1.65856197e-01 -2.12274373e-01 2.53023714e-01 6.43492818e-01\\n-2.38953047e-02 -3.95057529e-01 -4.59260553e-01 -3.30381960e-01\\n-1.72343329e-02 -1.51158180e-02 1.06530204e-01 -4.06652510e-01\\n5.30109048e-01 1.37771696e-01 -8.48935172e-02 3.60666335e-01\\n-8.70414495e-01 -2.31998622e-01 -2.49640450e-01 1.06247917e-01\\n-4.01315272e-01 1.38170635e-02 -3.49981844e-01 -3.15011561e-01\\n-9.77272540e-02 3.48676234e-01 -4.56297323e-02 8.48935470e-02\\n-1.50769114e-01 3.83265853e-01 -1.34776369e-01 2.97508121e-01\\n1.75920248e-01 3.20248246e-01 2.26851523e-01 2.07420662e-01\\n-4.63456452e-01 3.17057639e-01 3.31210680e-02 -2.94900149e-01\\n2.09270269e-01 2.40344614e-01 5.13346672e-01 4.71914336e-02\\n2.72691995e-01 3.33840549e-02 -2.88106024e-01 3.16454500e-01\\n2.04042375e-01 -3.42801392e-01 9.63281319e-02 -3.58792134e-02\\n-7.06714764e-02 7.60663599e-02 -1.05673838e-02 4.53561991e-02\\n-6.09169602e-01 3.75595182e-01 2.67908350e-03 -1.58787653e-01\\n-8.79743099e-02 -5.78828990e-01 -1.18864961e-02 2.12201148e-01\\n1.33984298e-01 1.17273308e-01 -1.67802535e-02 2.41522282e-01\\n1.79568887e-01 -1.06115803e-01 1.65516302e-01 8.07570398e-01\\n-1.93574458e-01 6.93967938e-02 -8.77811909e-02 3.69679689e-01\\n2.85553392e-02 -4.23375010e-01 3.72173250e-01 1.66696280e-01\\n1.47536486e-01 -1.60192505e-01 -2.21737653e-01 2.10768580e-01\\n-1.02621108e-01 -2.44725764e-01 -4.07228589e-01 3.52735728e-01\\n-6.39251545e-02 -5.11123359e-01 5.85763335e-01 -1.58788607e-01\\n1.61477983e-01 -1.53014019e-01 -2.32108757e-02 -4.14367877e-02\\n3.04523744e-02 2.02035785e-01 1.03373587e-01 6.25162572e-02\\n-3.70641440e-01 -1.96546465e-01 -1.76214248e-01 1.44554630e-01\\n-3.94253433e-01 3.46107125e-01 -2.77639516e-02 -1.91245992e-02\\n2.88132370e-01 -1.27225414e-01 -4.13404524e-01 1.45572305e-01\\n-1.35641754e-01 -1.58740088e-01 -3.58848982e-02 3.75430703e-01\\n-2.79190332e-01 3.02087963e-01 -6.62438720e-02 -3.63020629e-01\\n5.06644845e-01 -2.99692247e-02 1.74868926e-01 -6.30716011e-02\\n2.63867646e-01 -5.88055234e-03 2.18989938e-01 9.86774415e-02\\n-8.50338936e-01 3.49346042e-01 -1.07766554e-01 -2.80362099e-01\\n5.06685451e-02 -1.97396465e-02 3.30034435e-01 -3.21426153e-01\\n5.89419007e-02 -6.42187297e-02 -2.27274507e-01 -2.69480586e-01\\n-3.77991408e-01 -1.29038040e-02 4.27148968e-01 -3.37305993e-01\\n-7.86660388e-02 1.96485281e-01 -6.25683784e-01 -8.53458270e-02\\n1.53348893e-02 4.42641079e-02 2.45085448e-01 1.49424195e-01\\n-3.47394794e-02 -6.01169229e-01 -7.69234523e-02 -4.36854452e-01\\n-2.34692797e-01 1.56718343e-01 -3.78010511e-01 2.32460007e-01\\n8.45240131e-02 3.04279216e-02 -5.60140125e-02 9.41180214e-02\\n-2.59714723e-01 1.28728122e-01 2.52971351e-01 -1.75122824e-02\\n4.61306810e-01 1.41035855e-01 -2.95259178e-01 5.48637867e-01\\n-4.71854582e-02 6.19645715e-01 1.29855767e-01 -6.28013551e-01\\n6.59658074e-01 5.05762875e-01 4.68987972e-02 -3.25339139e-01\\n7.68128514e-01 -2.83223391e-01 -2.92918384e-01 1.65608674e-01\\n-5.14964402e-01 -2.23803148e-01 3.06720376e-01 -3.42530459e-01\\n-1.45377010e-01 6.38197184e-01 7.88412839e-02 1.94863975e-01\\n2.85508573e-01 -3.30855370e-01 -1.64832637e-01 2.42636949e-01\\n-2.09254950e-01 -4.35726702e-01 -5.16793966e-01 -7.59917498e-03\\n-2.55701900e-01 -4.85330224e-01 -2.78886646e-01 -2.91416705e-01\\n-6.89049289e-02 -2.69286692e-01 -6.35428168e-03 2.38189474e-01\\n2.82440722e-01 1.34248823e-01 -5.63910529e-02 4.12518159e-03\\n-1.03016064e-01 -4.85689759e-01 -1.79713871e-02 -9.52350348e-02\\n2.86369920e-01 1.26579016e-01 3.43163982e-02 -7.90149942e-02\\n1.37211233e-01 5.73075652e-01 -5.84195018e-01 -3.34056079e-01\\n1.84173137e-01 8.63061473e-02 -1.74994320e-01 -1.79357827e-01\\n1.65925980e-01 2.14681625e-01 -4.89294350e-01 2.36191656e-02\\n-2.18533874e-01 8.47693458e-02 2.58045703e-01 -1.18727222e-01\\n2.47671790e-02 -2.97602504e-01 -1.08112559e-01 2.34762341e-01\\n-3.55729580e-01 -3.31424534e-01 4.28193152e-01 8.79608840e-02\\n1.65552586e-01 4.14605364e-02 1.05902284e-01 6.98109344e-03\\n-4.64558959e-01 -3.65258187e-01 1.76834911e-01 1.87703073e-01\\n8.93373862e-02 2.25004360e-01 -3.85753438e-02 -4.29801345e-01\\n-2.97006321e+00 -1.20514147e-02 1.08839050e-02 9.29999352e-03\\n1.95052743e-01 -1.15004204e-01 4.16815430e-02 -1.23449035e-01\\n-3.80567968e-01 -5.01050539e-02 -2.71044731e-01 -3.92933011e-01\\n4.97401133e-02 3.35161388e-01 1.87319934e-01 1.47584677e-01\\n3.30383740e-02 -4.03107345e-01 3.47363278e-02 4.30083454e-01\\n-2.11297572e-01 -7.50987291e-01 9.93367136e-02 -3.35091241e-02\\n2.69419491e-01 3.66537452e-01 -4.76413131e-01 -9.96919796e-02\\n-3.81115437e-01 -3.29553992e-01 3.04191947e-01 -3.54013771e-01\\n-4.56665680e-02 4.89190996e-01 3.19775879e-01 7.09388778e-02\\n1.10126115e-01 -2.98029125e-01 -2.25445583e-01 -4.65501130e-01\\n1.21632442e-01 -4.97096360e-01 2.35772766e-02 -1.15157112e-01\\n7.51887083e-01 -2.76041567e-01 1.92009658e-01 1.00343421e-01\\n1.14336535e-01 1.37572050e-01 -4.24213707e-04 8.32470208e-02\\n-2.44320378e-01 -2.55055130e-01 -1.12340942e-01 -2.63278484e-01\\n5.07935882e-01 4.91459727e-01 -2.08212122e-01 -7.92953223e-02\\n2.09508955e-01 -2.62773871e-01 -4.63757157e-01 -3.95969480e-01\\n-2.78754771e-01 -1.33341134e-01 -6.45274639e-01 -4.01768029e-01\\n4.63470593e-02 -1.02489501e-01 6.15675114e-02 6.19157553e-01\\n-3.90587091e-01 -2.04787642e-01 -8.94299969e-02 -6.33294821e-01\\n3.31500888e-01 -2.90391326e-01 3.46274376e-02 -2.00247139e-01\\n-1.11889683e-01 -6.12142563e-01 4.56473976e-02 4.32971083e-02\\n1.30561506e-03 -3.03783089e-01 1.63931012e-01 -2.85740286e-01\\n-3.44258308e-01 -5.61016023e-01 3.38302851e-01 1.03064612e-01\\n2.96363562e-01 2.52782196e-01 7.81585127e-02 -1.79427210e-03\\n3.46496791e-01 4.57926840e-02 -1.67936683e-02 -3.46176982e-01\\n2.94862002e-01 -1.90979615e-02 3.09889853e-01 -2.16374382e-01\\n-1.02507882e-01 9.74719971e-03 -2.48431191e-01 -4.01569009e-02\\n2.88809747e-01 5.31984903e-02 6.08766824e-02 -2.22539574e-01\\n3.19650590e-01 -4.34009731e-01 6.08789064e-02 1.92614824e-01\\n-1.72492117e-03 6.05186820e-01 -5.86025305e-02 -2.38766223e-01\\n-8.57798755e-02 4.80718851e-01 -1.72797963e-03 4.21107635e-02\\n2.18078196e-02 1.07435077e-01 -2.88552433e-01 1.06772713e-01\\n-4.23813909e-02 -2.04617038e-01 -3.17730963e-01 -1.22531995e-01\\n-1.82051063e-01 3.97886217e-01 3.53840470e-01 1.88222259e-01\\n-2.31014550e-01 -4.34725106e-01 3.91736105e-02 2.57847488e-01\\n4.10631508e-01 3.77911627e-01 1.38896987e-01 -2.27474421e-01\\n1.69252828e-01 3.08361143e-01 -9.06293243e-02 2.65904546e-01\\n-3.24394882e-01 1.24399081e-01 -4.95665908e-01 -2.86723018e-01\\n-2.84621626e-01 -1.46148488e-01 3.25219899e-01 2.96007633e-01\\n1.51401579e-01 -7.36839846e-02 1.50143117e-01 -2.72507995e-01\\n2.48669773e-01 1.56053245e-01 2.26447463e-01 5.85983917e-02\\n-7.12468475e-02 5.67989707e-01 -1.46982223e-01 -1.07785322e-01\\n-1.09254107e-01 2.85234638e-02 -2.09108412e-01 -2.65359759e-01\\n6.61356226e-02 -4.97383118e-01 -2.00035959e-01 2.67794907e-01\\n7.90464580e-02 -1.37982711e-01 -1.29964396e-01 2.09096849e-01\\n5.47843799e-02 -3.50601554e-01 -2.40064442e-01 8.10104087e-02\\n4.01892036e-01 2.74959773e-01 2.22558677e-01 -5.03484249e-01\\n-2.37021614e-02 9.08606946e-02 6.02189600e-02 3.52470994e-01\\n5.49344048e-02 7.51139000e-02 -3.55250895e-01 -3.55526865e-01\\n3.26167643e-01 -3.39047074e-01 -8.37545022e-02 1.24669380e-01\\n8.31517801e-02 -2.45652385e-02 -2.89011329e-01 6.34702668e-02\\n-9.12078246e-02 -2.74305522e-01 -1.79037042e-02 4.21383530e-02\\n1.22272059e-01 2.33907122e-02 -6.98000610e-01 -1.94172323e-01\\n-2.31136940e-02 1.00494072e-01 6.33256957e-02 -4.53127801e-01\\n4.15804982e-02 -2.88301051e-01 -5.83226681e-01 2.67912447e-01\\n-1.47577584e-01 -1.06480390e-01 2.92169333e-01 -7.06374571e-02\\n-2.66304642e-01 -1.00740433e-01 1.69492215e-01 2.52557456e-01\\n-3.12819511e-01 -2.52103835e-01 5.99954724e-02 -9.74468291e-01\\n1.88507199e-01 -6.37885034e-02 -1.42693073e-01 -2.11588070e-02\\n1.73460022e-02 -6.16057158e-01 -9.71931592e-03 -3.99431735e-01\\n-3.52068767e-02 -5.50746992e-02 -2.31360286e-01 -3.54470968e-01\\n1.15608722e-01 -2.17495188e-02 -1.70105204e-01 5.36921144e-01\\n-3.46183568e-01 2.38170534e-01 -1.35824218e-01 -6.71739876e-03\\n-3.61174420e-02 -3.22353214e-01 1.18808806e-01 -1.62800670e-01\\n-2.05654413e-01 -3.28690439e-01 -1.38044626e-01 -2.80113757e-01\\n2.28425823e-02 -4.32275832e-01 -8.15214291e-02 1.26637042e-01\\n1.91753894e-01 -1.13568947e-01 -1.50392279e-01 -1.97103977e-01\\n1.89986184e-01 -4.42584872e-01 3.86951678e-02 -1.25428721e-01\\n-1.10668197e-01 -1.76650211e-01 9.93330479e-02 8.28452632e-02\\n2.27986842e-01 -2.27211371e-01 4.87475753e-01 -4.71976250e-01\\n-4.36416417e-01 -7.29777291e-02 -9.58951190e-03 -6.45556599e-02\\n2.53315181e-01 -4.84042078e-01 -7.40155280e-02 4.82327461e-01\\n1.52576402e-01 -5.50091416e-02 2.55581558e-01 -2.45580062e-01\\n-6.58557564e-02 3.12620461e-01 -4.03221488e-01 3.67199257e-02\\n8.40993285e-01 2.49334246e-01 1.28654242e-01 2.11116701e-01\\n8.55128765e-02 2.45977521e-01 4.63480324e-01 -2.19783466e-02\\n1.00108795e-03 3.43899161e-01 2.94983804e-01 -3.82973969e-01\\n-1.46712571e-01 1.27218254e-02 2.64183134e-02 -2.89457232e-01\\n5.83864927e-01 3.41880977e-01 -4.08931345e-01 -2.33558834e-01\\n-1.10325903e-01 -4.61398996e-02 3.32327068e-01 -5.91730066e-02\\n-7.68257752e-02 -1.02152348e-01 3.74737024e-01 -1.73514709e-04\\n2.32624710e-01 5.60415983e-01 -1.49872899e-01 -1.67286992e-01\\n-1.12972878e-01 2.66451836e-01 1.33506246e-02 4.62470889e-01\\n-1.12591684e-01 4.56022799e-01 -9.65078026e-02 1.01750985e-01\\n-9.47275013e-02 1.08993556e-02 2.30811819e-01 2.88120527e-02\\n1.10992648e-01 2.54665822e-01 3.20932955e-01 4.77082431e-01\\n3.58495772e-01 3.85886133e-01 1.64076984e-01 -2.12940816e-02\\n5.00574470e-01 4.67228562e-01 4.85258818e-01 8.27486441e-02\\n2.20619645e-02 1.05808213e-01 1.84864968e-01 9.45418403e-02\\n2.90726751e-01 2.49961495e-01 5.75216813e-03 9.09219027e-01\\n3.20189476e-01 4.20216590e-01 7.15586066e-01 -5.92704356e-01\\n-3.65265489e-01 7.41613097e-03 5.75024009e-01 -4.33654487e-01\\n1.70254037e-02 1.16624199e-02 -1.25711083e-01 2.31449693e-01\\n-5.04573405e-01 -6.57651797e-02 4.19789404e-02 1.98177427e-01\\n7.18580335e-02 -1.25397533e-01 -2.05348402e-01 5.27934283e-02\\n-2.03777254e-01 -2.48889148e-01 -4.12840247e-01 -2.35743403e-01\\n-2.29828849e-01 -2.11751565e-01 -8.59645158e-02 9.57268570e-03\\n-3.86135951e-02 -2.32322127e-01 8.79256800e-03 -5.04584908e-02\\n5.10381937e-01 -1.78735495e-01 -1.85036361e-01 -3.51595916e-02\\n3.96167040e-01 3.03518444e-01 6.08836889e-01 -6.91532344e-02\\n4.28764187e-02 -2.10007817e-01 -2.05825523e-01 1.06701300e-01\\n4.66006137e-02 5.93298562e-02 6.52587339e-02 2.81524330e-01\\n-2.45961964e-01 -1.97541326e-01 1.19807705e-01 2.81259537e-01\\n-4.56618249e-01 4.15864494e-03 -8.30285996e-02 1.06568843e-01\\n1.21095665e-02 2.48734713e-01 -2.77378380e-01 1.58298045e-01\\n-1.31113082e-01 -5.88781178e-01 2.27823243e-01 -3.49737071e-02\\n-1.69621676e-01 -1.77738070e-02 3.01293552e-01 2.77971834e-01\\n-1.80337235e-01 -3.86687033e-02 -2.56299973e-04 8.00667554e-02\\n9.61814225e-02 3.62784535e-01 -2.19374090e-01 -3.29033434e-01\\n-3.78675222e-01 1.25232294e-01 -2.45594621e-01 -2.79767159e-02\\n-1.23073086e-01 4.38219607e-01 -5.11055067e-03 1.38456360e-01\\n3.60675097e-01 1.78231765e-02 -1.96221635e-01 -2.64424503e-01\\n-1.14319265e-01 -2.40162373e-01 -9.71437246e-02 -3.97335179e-02\\n2.05281019e-01 -3.24257672e-01 -2.83863068e-01 -3.70698571e-01\\n4.30823537e-04 -2.67759681e-01 9.73825529e-02 -1.76419690e-02]]',\n", + " \"80 - 100% The University of Basel is the oldest university in Switzerland, and ranked among the best universities in the world due to its research achievements. It counts over 12'000 students and 4'300 researchers in 7 faculties active in domains from humanities and social sciences to natural sciences. The University of Basel is promoting the growing area of Data Science by establishing a university-wide Data Analytics Center (DAC). The goal of the DAC is the advancement of research and the development of transdisciplinary synergies at the University of Basel and its partners. The service and support activities of the DAC will be provided by the Center for Scientific Computing (sciCORE) and the Digital Humanities Lab (DHLab) in collaboration with the Department of Mathematics and Computer Science (DMI). We invite applications for a data analysis support specialist (80-100%) to support quantitative research in humanities and social sciences. Your position The successful candidate will provide consulting and execute data analysis in research projects in various domains of humanities and social sciences. The primary mandate is to support research groups in need of data analysis by applying appropriate statistical, computational, and visualization methods, helping with semantic mappings, and making fundamental methodological advances. The position will involve hands-on data analysis and contributions to teaching (postgraduate courses). This position will be hosted at the DHLab. Your profile Our ideal candidate has a strong and diversified experience (postdoctoral level) in data analysis, in particular with applications involving analysis of large and complex data sets, using machine learning, deep learning, and other advanced statistics. Experience with various database concepts (eg SQL, NoSQL, SPARQL, GraphDB), semantic technologies, and knowledge of R and Python are required. Previous work with text, music, visual, survey, and other data, and familiarity with image analysis tools (eg ImageJ, Fiji) and at least one state of the art deep learning framework will be an asset. Given the important service aspect of the position, we expect our candidate to be flexible, proactive, capable of following several projects in parallel and to have a curiosity for humanities and social sciences in general. We offer you At the DHLab, you will be part of a highly efficient and motivated team of diverse data analysts, data infrastructure managers, and scholarly IT specialists. As a member of the DAC you will also join forces with support scientists at sciCORE and DMI. External collaborations and co-authorship in publications can be expected. We support our team members in their own training, networking and career development. You will have the opportunity to contribute in shaping the organization and development of this data analysis platform. The initial contract is for 2 years, with the possibility of renewal into a permanent contract. The University of Basel is an equal opportunity and family friendly employer committed to excellence through diversity. Application / Contact We look forward to receiving your complete application via the university's online application portal (see button below). Applications should include a curriculum vitae, list of publications indicating the five most significant papers, a link to your code repository or portfolio of data analysis projects, and names of three potential referees. Applications by email cannot be considered. For further information, please contact Prof. Gerhard Lauer gerhard.lauer@unibas.ch. The position will remain open until filled.\",\n", + " '[\"Research\", \"Collaboration\", \"Proactivity\", \"Friendliness\", \"Team Motivation\", \"Teaching\", \"Curiosity\", \"Positivity\", \"Consulting\"]',\n", + " '[\"NoSQL\", \"Tooling\", \"Surveys\", \"GraphDB\", \"Social Sciences\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"Natural Sciences\", \"Activism\", \"Python (Programming Language)\", \"SPARQL Protocol And RDF Query Language (SPARQL)\", \"Levelling\", \"Image Analysis\", \"Computational Statistics\", \"Executable\", \"Hosting\", \"Quantitative Research\", \"Data Science\", \"Spatial Data Infrastructures\", \"Scientific Computing\", \"Equalization\", \"R (Programming Language)\", \"Deep Learning\", \"Survey Data Analysis\", \"Semantic Technology\", \"Receivables\", \"Humanism\", \"Data Infrastructure\", \"Digital Humanities\", \"Semantics\", \"Logistics Support Activity\", \"Career Development\", \"Centering\", \"Mapping\", \"ImageJ\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Corsican']\"],\n", + " ['42',\n", + " 'data science course developer and instructor',\n", + " 'Lausanne',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-2.31003404e-01 2.87446916e-01 4.94195759e-01 6.79244250e-02\\n5.64721525e-01 -1.02165639e-01 4.63781841e-02 4.17711139e-01\\n-7.86895026e-03 -1.81509703e-01 -1.69008210e-01 -1.56376541e-01\\n3.87024619e-02 9.05360281e-02 1.98915392e-01 4.50523078e-01\\n2.97633052e-01 -7.17932507e-02 -1.61911964e-01 3.28495532e-01\\n-1.14688650e-03 -7.13254437e-02 -6.84413910e-02 6.87404990e-01\\n4.78520870e-01 2.86109541e-02 -3.75124589e-02 1.10322885e-01\\n-1.47137582e-01 -2.81869173e-01 3.99212688e-01 3.04904729e-02\\n-1.61513850e-01 -2.38729075e-01 9.89310518e-02 2.52619147e-01\\n-2.68172622e-01 -4.40887362e-02 -6.21260703e-02 1.07455179e-01\\n-4.28696990e-01 -9.98428613e-02 -8.82593393e-02 -2.95048654e-02\\n-3.36095423e-01 -4.59531635e-01 1.23026274e-01 -1.03290364e-01\\n6.20834529e-04 3.56055982e-02 -5.44778466e-01 4.39761668e-01\\n-1.35730311e-01 -3.23014051e-01 3.48975986e-01 5.84638894e-01\\n7.79360309e-02 -5.13422489e-01 -3.21158171e-01 -3.31188142e-01\\n6.59009721e-03 5.93345836e-02 1.15059242e-01 -3.75322759e-01\\n4.96265441e-01 8.32695663e-02 -4.39235568e-02 3.97756755e-01\\n-7.78272510e-01 -2.35683382e-01 -3.41741920e-01 1.29232705e-01\\n-3.44521642e-01 2.37830169e-03 -3.91830802e-01 -2.45640427e-01\\n1.63414627e-02 3.84141773e-01 -6.83548227e-02 4.40262854e-02\\n-1.23958021e-01 2.64283866e-01 -1.14724994e-01 2.09460616e-01\\n3.27660590e-01 3.17478418e-01 2.95925975e-01 2.99240679e-01\\n-3.36664617e-01 3.62148643e-01 1.13312185e-01 -2.17115283e-01\\n1.24307819e-01 2.11683840e-01 4.31248993e-01 1.87687218e-01\\n1.50911048e-01 1.53862894e-01 -2.32318550e-01 1.65267810e-01\\n1.69952616e-01 -2.85433382e-01 1.50708668e-02 -2.91850828e-02\\n-6.49369285e-02 2.32493188e-02 4.04293649e-02 1.53170526e-01\\n-5.29954433e-01 4.79164362e-01 3.15189660e-02 -1.90203995e-01\\n-8.29056203e-02 -5.52888751e-01 -8.88060406e-02 1.47114713e-02\\n4.15727496e-02 2.62016594e-01 7.30043054e-02 3.13638538e-01\\n1.30986143e-02 -1.51458740e-01 2.40085617e-01 7.60027170e-01\\n-1.57077052e-02 1.18302830e-01 -1.73196539e-01 4.49522197e-01\\n4.53876257e-02 -3.54664773e-01 2.35938966e-01 1.83367893e-01\\n1.85337484e-01 -1.62932038e-01 -3.32049310e-01 2.12812752e-01\\n-1.30193219e-01 -3.13953817e-01 -3.05071682e-01 3.67583811e-01\\n-9.63264704e-02 -5.59503555e-01 5.49102426e-01 -1.52608782e-01\\n1.64712220e-01 -1.32861838e-01 -2.31593736e-02 3.95092741e-02\\n-1.56337053e-01 3.02273095e-01 1.50976658e-01 1.20659783e-01\\n-2.98055291e-01 -3.08659792e-01 -1.96123838e-01 2.65830427e-01\\n-3.97287637e-01 2.62330770e-01 -1.97699696e-01 -1.30176604e-01\\n2.88997024e-01 -6.02837205e-02 -4.32466149e-01 2.54582226e-01\\n-7.92892277e-02 -1.96949750e-01 -1.07964709e-01 3.17084491e-01\\n-1.42670602e-01 3.16312104e-01 -2.24624202e-03 -1.57518834e-01\\n4.68530953e-01 5.68536371e-02 1.38920397e-01 -1.02147304e-01\\n2.06417650e-01 -5.25677670e-03 2.32270628e-01 3.01019233e-02\\n-6.43658340e-01 4.09293622e-01 -1.09456345e-01 -2.97767371e-01\\n-4.08874303e-02 -1.50237292e-01 3.31880569e-01 -3.79536033e-01\\n4.65717167e-04 -1.45743906e-01 -3.56840432e-01 -3.50888908e-01\\n-2.01974750e-01 -1.14973783e-01 4.52212751e-01 -4.27399337e-01\\n9.45922360e-02 2.22599894e-01 -5.37195325e-01 -1.23387374e-01\\n2.97544003e-01 8.47045630e-02 6.77325875e-02 2.33672291e-01\\n-7.03923553e-02 -5.14224112e-01 -4.27636094e-02 -4.16508973e-01\\n-2.77256638e-01 7.71398544e-02 -3.21874738e-01 1.69385105e-01\\n1.93832219e-02 -1.50709487e-02 -9.84589159e-02 6.42232150e-02\\n-1.65622771e-01 4.97380123e-02 9.71125215e-02 -5.45912758e-02\\n2.30918497e-01 1.93136297e-02 -1.97713226e-01 4.39587384e-01\\n-2.11931899e-01 5.41410089e-01 1.45848036e-01 -8.10549021e-01\\n5.28569579e-01 2.77768672e-01 -4.51245718e-02 -2.41261035e-01\\n7.39533186e-01 -3.20774376e-01 -1.63611829e-01 1.56835362e-01\\n-4.16375458e-01 -3.16235721e-01 1.60609156e-01 -3.13360482e-01\\n-2.06963629e-01 6.12386465e-01 1.25713557e-01 2.32652530e-01\\n4.03849721e-01 -1.11201078e-01 -1.04214594e-01 2.36096784e-01\\n-2.40118563e-01 -2.02499196e-01 -4.21709120e-01 -7.41359293e-02\\n-7.04286620e-02 -4.49054301e-01 -3.17267209e-01 -4.42634791e-01\\n-2.91957378e-01 -3.96939814e-01 -6.42217696e-02 2.50998020e-01\\n2.07913980e-01 2.01460689e-01 1.54263079e-02 6.43064827e-02\\n-1.18345097e-01 -6.37192667e-01 -5.80030754e-02 -9.48312357e-02\\n2.17214629e-01 2.88922399e-01 1.09871648e-01 -2.80857608e-02\\n7.18850642e-02 5.33952177e-01 -4.43083733e-01 -3.52276981e-01\\n1.43731043e-01 -3.41168158e-02 -1.34080365e-01 -2.08319008e-01\\n1.28986448e-01 2.80030161e-01 -3.40612769e-01 9.30138007e-02\\n-1.54915869e-01 1.20617636e-01 3.02432775e-01 7.27178603e-02\\n-1.25599757e-01 -2.00926438e-01 -8.47024284e-03 3.65366161e-01\\n-4.12218034e-01 -3.61807942e-01 5.99732041e-01 7.80156255e-02\\n1.18444875e-01 4.18116376e-02 2.26424098e-01 -2.46811528e-02\\n-3.18066865e-01 -1.72062218e-01 1.90257668e-01 1.89887315e-01\\n1.10512070e-01 2.02621102e-01 -6.62798136e-02 -6.14492416e-01\\n-3.18385983e+00 -8.61737430e-02 -1.67051069e-02 -1.92723364e-01\\n2.39218771e-01 -1.29859582e-01 8.22698027e-02 -1.07965037e-01\\n-4.14822221e-01 -2.70293895e-02 -2.17805147e-01 -2.28288263e-01\\n8.19297358e-02 3.85564774e-01 2.39353925e-01 1.86116964e-01\\n8.12619403e-02 -3.68545115e-01 8.30439329e-02 4.98793602e-01\\n-9.36334580e-02 -7.01775908e-01 6.26224130e-02 6.69893250e-02\\n2.83887416e-01 3.23210418e-01 -5.26340306e-01 -2.38852426e-01\\n-3.12092900e-01 -2.80221283e-01 2.10756958e-01 -3.86381745e-01\\n-1.72962710e-01 4.48824584e-01 9.95500535e-02 4.05636504e-02\\n5.87340295e-02 -2.62101620e-01 -6.64476901e-02 -4.69732016e-01\\n-3.31405997e-02 -6.56451523e-01 -5.14652692e-02 -3.78488936e-02\\n6.86620593e-01 -2.11389363e-01 3.25228274e-01 5.51153086e-02\\n7.28892758e-02 1.39639884e-01 -2.61269584e-02 9.90545750e-02\\n-2.92601109e-01 -2.81413078e-01 -7.97173157e-02 -1.76129609e-01\\n5.94293475e-01 4.62888837e-01 -1.74475625e-01 -9.64998156e-02\\n2.02523828e-01 -2.70842910e-01 -5.52999735e-01 -4.25574601e-01\\n-2.45930806e-01 -1.98182940e-01 -7.88998723e-01 -5.10514379e-01\\n-5.61938658e-02 -1.18425049e-01 4.63105626e-02 4.43936169e-01\\n-3.89748812e-01 -1.80228293e-01 8.12264532e-03 -5.86206794e-01\\n2.84453034e-01 -1.44447714e-01 5.68003207e-02 -1.34094924e-01\\n-2.32928395e-01 -5.02791464e-01 7.84028023e-02 1.07144251e-01\\n-1.11958057e-01 -6.18842505e-02 1.16104342e-01 -2.17904970e-01\\n-3.98076981e-01 -6.96210086e-01 4.54196572e-01 1.61440179e-01\\n1.34510443e-01 1.35202885e-01 2.07859769e-01 7.85832107e-02\\n3.90064806e-01 2.54892502e-02 1.38828993e-01 -4.29984510e-01\\n2.47982219e-02 -3.06629743e-02 4.02588964e-01 -1.94618955e-01\\n-2.06989963e-02 6.78396598e-03 -2.51226455e-01 6.94036065e-03\\n4.17739093e-01 -9.44852158e-02 1.74487412e-01 -1.45302534e-01\\n1.39832675e-01 -2.54261374e-01 -1.97133183e-01 1.78750902e-01\\n-2.44119726e-02 6.37957454e-01 4.84285727e-02 -2.96111226e-01\\n-1.83989078e-01 4.06624973e-01 -1.03491440e-01 1.06324360e-01\\n-1.14361838e-01 1.07965115e-02 -1.13639295e-01 2.26097092e-01\\n6.32814690e-03 -2.29853064e-01 -1.67530030e-01 -1.03326030e-01\\n-1.67624801e-01 3.45799804e-01 3.06102186e-01 7.44168386e-02\\n-1.31888464e-01 -4.19050545e-01 6.11352101e-02 2.02490836e-01\\n2.27408141e-01 3.46232533e-01 2.17084378e-01 -2.62052476e-01\\n1.57809108e-01 2.41022632e-01 -2.24834099e-01 3.58709395e-01\\n-3.27698976e-01 1.40017599e-01 -4.59648341e-01 -3.53705525e-01\\n-1.59235373e-01 -3.21067572e-01 2.04159558e-01 3.19351524e-01\\n9.36602131e-02 -1.24226846e-01 1.36843532e-01 -5.41144371e-01\\n3.42686653e-01 2.55275778e-02 2.30696529e-01 7.25103468e-02\\n-1.55540816e-02 5.59400797e-01 -1.03322394e-01 -3.79271992e-02\\n-1.06634706e-01 4.86414880e-02 -2.10675210e-01 -3.90113890e-01\\n5.61406016e-02 -4.34974164e-01 -7.01125711e-02 3.43674898e-01\\n1.24531008e-01 -1.02742791e-01 -2.14574218e-01 1.47091269e-01\\n1.29260905e-02 -4.60658789e-01 -2.65020430e-01 1.03339208e-02\\n3.30072194e-01 2.72616327e-01 1.80884808e-01 -4.21812057e-01\\n-3.45458612e-02 1.31012034e-02 -3.48735079e-02 3.44659895e-01\\n8.04558992e-02 7.84783624e-03 -2.75114387e-01 -2.66711593e-01\\n4.26875234e-01 -7.12953135e-02 1.60423405e-02 1.33486569e-01\\n1.16424210e-01 -3.65866244e-01 -3.21741432e-01 1.17537603e-02\\n3.60114798e-02 -2.38814622e-01 3.28370482e-02 -2.55134702e-03\\n-4.12586592e-02 -1.92796066e-03 -5.01938939e-01 -1.73700452e-01\\n-2.62251377e-01 2.47539151e-02 -4.25445922e-02 -4.84438837e-01\\n-1.03477359e-01 -8.45399201e-02 -4.78408545e-01 3.24578911e-01\\n-7.54589364e-02 -4.08388488e-03 2.66001642e-01 6.85392320e-03\\n-2.75628924e-01 -1.97211534e-01 1.45273089e-01 1.68522149e-01\\n-3.61477971e-01 -1.93662807e-01 -1.88592784e-02 -9.13697183e-01\\n2.30780602e-01 7.34619796e-04 -1.30102113e-01 1.14888728e-01\\n9.00049880e-03 -6.27413511e-01 2.22236872e-01 -4.12425697e-01\\n-4.07999456e-02 -2.87149735e-02 -2.23103702e-01 -2.82468796e-01\\n6.39857650e-02 6.13548942e-02 -1.07640043e-01 4.35628623e-01\\n-4.00332510e-01 3.74657094e-01 8.19728971e-02 1.06386468e-02\\n-1.59918904e-01 -2.67904371e-01 5.36289960e-02 -2.39711642e-01\\n-3.67745280e-01 -1.97629690e-01 -1.61681235e-01 -1.51367560e-01\\n-1.62558127e-02 -3.10942918e-01 -1.54078826e-01 1.17232010e-01\\n2.54405946e-01 6.74248785e-02 -1.74289107e-01 -1.56861693e-01\\n9.81979668e-02 -3.45012128e-01 -5.12079746e-02 -2.54509568e-01\\n-1.13212653e-02 -2.04012573e-01 2.25431740e-01 5.33511117e-03\\n1.44774482e-01 -3.43914270e-01 4.25892055e-01 -3.54899168e-01\\n-3.81795228e-01 -3.53643000e-02 1.31507635e-01 -8.38504732e-02\\n2.15190947e-01 -4.23771977e-01 -5.41227385e-02 3.39055508e-01\\n-2.85973027e-02 -8.61832686e-03 2.21703887e-01 -2.31929719e-01\\n-2.18692869e-01 1.73777089e-01 -3.89788270e-01 1.94179967e-01\\n8.58984709e-01 2.69429833e-01 1.48479342e-01 1.45986468e-01\\n1.14385545e-01 3.34845066e-01 4.85574484e-01 -7.07897451e-03\\n-1.16384089e-01 3.96379948e-01 2.58972526e-01 -4.79876667e-01\\n-1.34310648e-01 6.23641536e-04 -1.68905511e-01 -2.82857746e-01\\n6.90891862e-01 2.92142093e-01 -2.81745821e-01 -4.34327185e-01\\n-1.75447688e-01 -2.91182548e-01 2.97718614e-01 3.33137065e-03\\n1.02814306e-02 -7.26098344e-02 4.79893923e-01 3.35310400e-03\\n1.25662729e-01 5.35032868e-01 -1.41155511e-01 -3.38911176e-01\\n8.04195926e-03 2.44172409e-01 4.27544042e-02 4.43400502e-01\\n-2.36339092e-01 4.19066727e-01 -7.80524313e-02 2.27583759e-03\\n1.07888654e-02 8.14306587e-02 3.95104021e-01 7.91760236e-02\\n2.06190109e-01 2.54388928e-01 4.74944651e-01 4.31850851e-01\\n1.58284724e-01 4.55922425e-01 2.55144954e-01 3.37174833e-02\\n3.56650561e-01 4.56913739e-01 3.33302408e-01 -3.67294401e-02\\n5.12746796e-02 3.48897129e-02 1.58293694e-01 1.08111128e-01\\n2.48586968e-01 2.12416649e-01 7.25527704e-02 9.13609803e-01\\n3.57241154e-01 3.72504264e-01 7.28808343e-01 -7.61793256e-01\\n-3.27026904e-01 5.32085150e-02 5.70715249e-01 -4.33401942e-01\\n1.28699243e-01 1.84380561e-01 -1.05722584e-01 2.93921590e-01\\n-5.10548830e-01 -2.21536309e-01 1.84942968e-04 2.96176821e-02\\n-1.20779239e-02 -9.69720483e-02 -1.42002270e-01 6.79766014e-02\\n-1.47011489e-01 -2.78763354e-01 -3.97299111e-01 -2.41472989e-01\\n-1.20626703e-01 -1.28143042e-01 -5.78667969e-02 7.42304139e-04\\n-2.61438608e-01 -1.76344335e-01 -1.73801705e-01 -1.02797128e-01\\n3.96288931e-01 -1.09615475e-01 -1.73398629e-01 -7.74025172e-02\\n4.07509685e-01 1.36152208e-01 6.84605718e-01 -6.96344748e-02\\n5.31440899e-02 -8.30524415e-02 -2.20333874e-01 5.32005429e-02\\n7.67487437e-02 1.05184637e-01 8.83577615e-02 3.42193663e-01\\n-2.16098249e-01 -2.27679521e-01 1.33761302e-01 2.99429834e-01\\n-3.77693832e-01 -9.13020372e-02 -2.64691301e-02 1.78979427e-01\\n-4.85778861e-02 1.48235008e-01 -2.30030924e-01 1.14248127e-01\\n-9.73087400e-02 -6.75089240e-01 2.55484819e-01 -4.51960899e-02\\n-1.62146091e-01 2.38817662e-01 2.58304209e-01 3.01353931e-01\\n-9.96685475e-02 -5.06766327e-02 -1.98560376e-02 1.02724440e-01\\n8.07037354e-02 3.17278266e-01 -1.60176188e-01 -3.63899529e-01\\n-2.77845025e-01 1.61062956e-01 -1.36460155e-01 1.73935249e-01\\n-1.15606241e-01 3.75124216e-01 8.20528418e-02 2.34001011e-01\\n3.11237812e-01 2.16130167e-03 -2.31036037e-01 -2.60388970e-01\\n-2.55011141e-01 -2.74485201e-01 -9.32161957e-02 2.63668932e-02\\n1.97524130e-01 -2.90817380e-01 -2.17477620e-01 -4.10406113e-01\\n-8.84455368e-02 -3.03146005e-01 -1.63367447e-02 2.11844333e-02]]',\n", + " 'The EPFL Extension School is looking for a Data Science Course Developer and Instructor to join our team. Here’s what you’ll get to do in this role: Develop data science and advanced analytics activities, including applications of mathematical modeling, statistical analysis and machine learning techniques (through exercises, public posts, capstone project guidance); Guide learners in acquiring hands-on data science experience using Python (NumPy, Pandas, Scipy, Scikit-Learn, Matplotlib, Seaborn); Apply technical expertise and leadership skills to design, develop, manage and grade learner projects using real-world large datasets and relational databases; Design and lead workshops and hackathons, and participate in conferences to promote the EPFL Extension School, data science and digital skills to a wide audience; Collaborate with partners from academia and the private sector to identify opportunities for development of new courses and workshops as well as learner course projects and capstone projects; Manage additional course development and other activities to support the growth of the EPFL Extension School The audience for the EPFL Extension School courses extends to a large, general public and the knowledge level of the learners will range from novice (no prior experience with Python and/or in data science) to intermediate (strong familiarity, possibly but not necessarily university or post-graduate level knowledge) to advanced (practitioners in the field, seeking to learn specific skills). The course developer should be able to adapt his/her approach and output accordingly. We expect a solid, demonstrable and practical background in all domains of data science relevant to beginner- and intermediate-level learners. In particular, we expect you to be have extensive hands-on experience with the most common tools, methods, and applications of all stages of the data science pipeline (i.e. data mining, data cleaning, data analysis, data visualisation), using Python. You will have advanced knowledge of Python and all relevant data science libraries. You will also have a proven ability to explain basic and difficult concepts in data/data science clearly and effectively to a wide audience. The ideal candidate also has experience with a variety of methods / models / tools relevant to data analytics, statistics and/or machine learning. Additional required qualifications: Background in computer science, data science, statistics, the physical sciences or other quantitative field (academic or equivalent professional experience); Previous experience with data science projects; Previous teaching/TA experience; Excellent communications and relationship management / « people » skills; Excellent written verbal presentation skills and the ability to communicate both to business and technical audiences, with a wide variety of skills / skill levels; Strong organisational skills; Good team player; Self-starter, capable of autonomous time management and work; Ability to rapidly and independently acquire new skills Fluent English, both written and spoken; Comfortable with developer tools: git, the command line, code editors, etc.; Previous experience in time series analysis, natural language processing, or advanced statistics a plus; Start-up experience a plus.',\n", + " '[\"Leadership\", \"Adaptability\", \"Professionalism\", \"Collaboration\", \"Self Starter\", \"Management\", \"Communications\", \"Presentations\", \"Teaching\", \"Time Management\", \"Relationship Management\"]',\n", + " '[\"Matplotlib\", \"Tooling\", \"Qualitative Data Analysis\", \"Natural Language Processing\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Physical Science\", \"Scikit-learn (Machine Learning Library)\", \"Staging\", \"Activism\", \"NumPy\", \"Apex Data Loader\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Levelling\", \"Course Development\", \"Library\", \"Apple Developer Tools\", \"Dataset\", \"Line Coding (Telecommunication)\", \"Pipelining\", \"Alexa Skills Kit\", \"Code Editor\", \"Data Science\", \"Time Series\", \"Cleaned Data\", \"Management Development\", \"Relational Databases\", \"Mathematical Modeling\", \"Additives\", \"Command-Line Interface\", \"Git Flow\", \"SciPy\", \"Digital Skills\", \"Pandas (Python Package)\", \"Seaborn\"]',\n", + " \"['English', 'Sinhala']\"],\n", + " ['75',\n", + " 'software application engineer .net / c#',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.53553978e-01 3.90445173e-01 3.90613288e-01 -6.49642274e-02\\n5.53104520e-01 -2.09021449e-01 2.15495348e-01 2.15363488e-01\\n-1.99421316e-01 -3.65535349e-01 -4.39568646e-02 -2.48759329e-01\\n9.06753540e-02 1.29868194e-01 1.03467099e-01 4.41503346e-01\\n3.63091230e-01 9.72218961e-02 -2.10440114e-01 2.97523022e-01\\n7.40847886e-02 -8.11275467e-02 2.07283851e-02 6.83373570e-01\\n4.38039601e-01 1.28034413e-01 8.25111493e-02 3.51412371e-02\\n-1.93219468e-01 -2.55194992e-01 4.63934153e-01 -8.74674355e-04\\n-1.70563370e-01 -2.87624925e-01 7.11264089e-02 7.86211062e-03\\n-1.54815048e-01 -1.27763942e-01 4.96145897e-02 1.20220073e-01\\n-3.31331611e-01 -1.61639407e-01 -5.45307435e-03 1.68143865e-02\\n-2.28574082e-01 -3.83061022e-01 -2.60542985e-02 -3.37093361e-02\\n1.07569449e-01 4.41658013e-02 -4.55335885e-01 3.13770920e-01\\n-1.78462431e-01 -2.78706849e-01 1.36942595e-01 3.99644047e-01\\n-1.20442063e-01 -4.24682349e-01 -2.84226209e-01 -3.25756162e-01\\n7.39554390e-02 -1.86544016e-01 1.21467270e-01 -2.49816000e-01\\n3.93100023e-01 1.41588032e-01 3.19296569e-02 4.69857454e-01\\n-7.03983307e-01 -8.54936838e-02 -1.85963362e-01 -7.65719488e-02\\n-2.89621174e-01 -1.05932631e-01 -3.54157031e-01 -2.18415558e-01\\n-1.42138362e-01 2.50514746e-01 1.12565011e-02 1.86440237e-02\\n-1.52524918e-01 3.25138390e-01 -1.57426581e-01 2.54003882e-01\\n2.06518531e-01 3.39489698e-01 2.23312184e-01 3.52060676e-01\\n-4.48270917e-01 3.05918068e-01 1.20439857e-01 -2.83740222e-01\\n2.69722581e-01 1.88435521e-02 5.91445029e-01 -2.03822665e-02\\n2.15307221e-01 9.80166048e-02 -2.23314822e-01 3.06501329e-01\\n1.07935525e-01 -2.77511567e-01 -3.08873653e-02 -1.26469135e-01\\n-8.91891718e-02 4.23141792e-02 1.34597927e-01 2.67811775e-01\\n-3.78625304e-01 5.11529267e-01 1.30837753e-01 -3.24509114e-01\\n-1.28174976e-01 -5.02595425e-01 -7.33001754e-02 -6.17924444e-02\\n-3.89990732e-02 1.62796795e-01 1.66891932e-01 2.02716336e-01\\n1.66332901e-01 9.99237373e-02 1.80139989e-01 9.49373007e-01\\n-3.86471041e-02 -1.13293184e-02 -3.14557314e-01 2.46110186e-01\\n1.60030097e-01 -3.66964549e-01 2.40701482e-01 2.26993963e-01\\n1.53124973e-01 -1.42853275e-01 -1.65530890e-01 2.42334008e-01\\n-7.17697442e-02 -1.35590032e-01 -3.67451280e-01 1.06573224e-01\\n-1.86630204e-01 -3.69279116e-01 5.34559906e-01 5.35667129e-03\\n1.09615371e-01 -1.83981329e-01 -2.76042167e-02 8.47757235e-02\\n-1.83180124e-01 1.35771379e-01 -9.07441229e-03 1.46386966e-01\\n-3.40269983e-01 -2.40399510e-01 -1.87309176e-01 3.39651048e-01\\n-2.89403856e-01 1.99522540e-01 -2.61484087e-02 -6.72335029e-02\\n3.45085025e-01 -8.82712156e-02 -1.80922762e-01 3.57273698e-01\\n-6.92982525e-02 -1.70331091e-01 -1.46371335e-01 3.86943072e-01\\n-6.16992600e-02 2.94650406e-01 7.23315850e-02 -2.19021112e-01\\n5.50205886e-01 -1.45014431e-02 8.09850618e-02 -1.42292112e-01\\n2.06616402e-01 -1.96250051e-01 1.01546235e-01 1.12815596e-01\\n-6.46559179e-01 1.49658889e-01 -2.64226198e-01 -2.08982870e-01\\n2.78665274e-01 7.06989169e-02 1.56045288e-01 -2.48070091e-01\\n-9.60363355e-03 -7.09180757e-02 -2.67133594e-01 -4.03992742e-01\\n-1.41754299e-01 4.92209233e-02 4.93731350e-01 -3.28192353e-01\\n-2.44424522e-01 1.07402228e-01 -4.72397655e-01 -3.88859585e-02\\n2.93170482e-01 2.02477917e-01 -9.70876869e-03 2.56309897e-01\\n-1.67871624e-01 -5.00311792e-01 1.12704746e-01 -4.14410770e-01\\n-4.52869862e-01 1.24749867e-02 -1.86720461e-01 1.32896334e-01\\n1.89605415e-01 -1.16931893e-01 -1.05711639e-01 1.28776222e-01\\n-1.84016272e-01 -2.81453468e-02 7.48490691e-02 1.37394816e-01\\n2.98799843e-01 -1.53343022e-01 -4.05980200e-01 3.20070028e-01\\n-9.11417156e-02 4.59242702e-01 1.30052850e-01 -7.66007066e-01\\n4.43137467e-01 1.59129784e-01 4.50827591e-02 -3.31960797e-01\\n5.87839842e-01 -2.90288836e-01 -3.42663340e-02 -7.55031267e-03\\n-3.61705333e-01 -1.88449264e-01 1.98101431e-01 -1.41419291e-01\\n-2.04096332e-01 5.12813330e-01 1.48286015e-01 1.62055865e-01\\n3.45324039e-01 -2.76120484e-01 -1.29864022e-01 -1.03968317e-02\\n-2.01198816e-01 -2.09822267e-01 -5.66197395e-01 -1.08629480e-01\\n-1.98341124e-02 -3.76597255e-01 -1.48414925e-01 -3.54718000e-01\\n-3.70843001e-02 -2.84213901e-01 -1.68722704e-01 2.43491754e-01\\n2.94634730e-01 9.64107439e-02 5.04443944e-02 4.47966009e-02\\n-8.01933110e-02 -6.07583880e-01 -3.29458038e-03 3.08638755e-02\\n4.30501044e-01 1.80790856e-01 -3.72448098e-03 -3.84910479e-02\\n7.86379650e-02 5.54636240e-01 -2.85934746e-01 -3.11936170e-01\\n1.62673622e-01 1.56341359e-01 -8.23797584e-02 -1.33169293e-01\\n-6.34709224e-02 3.41196120e-01 -1.78434461e-01 6.40151799e-02\\n-1.47369221e-01 3.20630446e-02 3.80474895e-01 -5.86268939e-02\\n-3.49103302e-01 -1.58819839e-01 9.99684483e-02 1.92845315e-01\\n-4.61981118e-01 -3.93857390e-01 6.51484966e-01 1.86682895e-01\\n1.02635853e-01 1.42534360e-01 2.61459649e-01 -5.39548956e-02\\n-2.67878652e-01 -2.34662503e-01 6.14664555e-02 7.65158311e-02\\n1.34313509e-01 4.96668145e-02 -1.60424784e-01 -4.10543442e-01\\n-3.78027940e+00 -1.55960307e-01 7.88523033e-02 -2.61027932e-01\\n2.57778406e-01 5.14291460e-03 1.24679413e-02 -4.54271659e-02\\n-4.10346985e-01 6.65893406e-02 -1.98258683e-01 -3.86440046e-02\\n1.96540296e-01 3.08555394e-01 4.26341258e-02 1.91294149e-01\\n1.22414544e-01 -2.30099633e-01 -1.46988183e-01 2.90741831e-01\\n-5.50412759e-02 -5.80290973e-01 2.12266222e-01 -6.47957902e-03\\n3.90219599e-01 2.83627063e-01 -3.70401680e-01 -6.60737157e-02\\n-3.48993748e-01 -3.54344696e-01 5.17024845e-02 -2.13013753e-01\\n-1.47505894e-01 4.29354727e-01 1.78175777e-01 -2.13021740e-01\\n1.24879137e-01 -4.56804872e-01 -3.70496362e-02 -4.07358706e-01\\n1.71409652e-01 -4.47407514e-01 2.81646214e-02 -4.69198339e-02\\n6.27274811e-01 -3.45811009e-01 1.25162363e-01 1.04969241e-01\\n1.83792159e-01 2.93980390e-01 2.17035953e-02 1.21522916e-03\\n-1.31159008e-01 -3.17771316e-01 -9.91558880e-02 -2.05674395e-01\\n5.06366670e-01 3.97588104e-01 -1.85172737e-01 -1.49185747e-01\\n4.49833833e-02 -2.00571254e-01 -3.68749738e-01 -2.52447188e-01\\n-1.80444077e-01 -1.18550368e-01 -6.94089830e-01 -5.17115057e-01\\n-1.36782467e-01 -1.23799339e-01 -1.52189761e-01 5.44175088e-01\\n-2.89450347e-01 -5.00016153e-01 2.72822846e-02 -4.07454878e-01\\n4.02817391e-02 -2.85626531e-01 2.49672849e-02 -5.53542115e-02\\n-2.61747509e-01 -4.62732613e-01 2.09503561e-01 -2.66847201e-02\\n-1.48437724e-01 -7.70433024e-02 1.06215566e-01 -1.99144721e-01\\n-2.53152311e-01 -2.87685722e-01 4.09827322e-01 1.64890870e-01\\n2.40164265e-01 3.57348293e-01 2.15817437e-01 2.76240498e-01\\n1.35987818e-01 -4.92164381e-02 6.21747412e-02 -4.15780187e-01\\n1.09630488e-01 -5.16664647e-02 4.50113744e-01 -1.01492338e-01\\n3.72679681e-02 4.47789244e-02 -1.09062321e-01 -1.79277122e-01\\n4.06253189e-01 8.13164786e-02 1.95978388e-01 -2.03816712e-01\\n3.07629287e-01 -5.04343390e-01 -9.99839827e-02 -4.14882638e-02\\n8.85776579e-02 5.81783831e-01 -8.04193169e-02 -4.60987180e-01\\n-2.06632733e-01 4.64850843e-01 -1.36185568e-02 -2.75183935e-02\\n-3.18742037e-01 1.38714641e-01 -2.54364312e-01 2.10059851e-01\\n1.33365602e-03 -2.19458774e-01 -2.06940800e-01 -2.20148027e-01\\n-3.68551053e-02 1.52936757e-01 2.81965435e-01 1.70206711e-01\\n-1.13374256e-01 -3.76120061e-01 -1.71333164e-01 1.73941165e-01\\n4.27125216e-01 3.79767269e-01 3.25920768e-02 -3.39068770e-01\\n-7.69982561e-02 2.11909994e-01 -1.39228165e-01 2.22622246e-01\\n-2.16892630e-01 1.21815592e-01 -4.35740530e-01 -1.98997229e-01\\n-1.21501222e-01 -2.55632490e-01 6.00928590e-02 2.50080407e-01\\n1.28403500e-01 -8.34657773e-02 7.93875009e-02 -2.77346551e-01\\n3.19964379e-01 5.43099791e-02 1.39066041e-01 1.91892311e-01\\n1.05221771e-01 4.86467004e-01 6.23418717e-04 -1.86573461e-01\\n-1.56211868e-01 7.55005479e-02 -1.57763451e-01 -7.80070871e-02\\n-8.86215940e-02 -3.47978622e-01 -9.86145362e-02 2.37683862e-01\\n1.35521501e-01 -5.83462976e-02 -8.51543024e-02 2.22330555e-01\\n8.09942558e-02 -3.10062289e-01 -2.16948003e-01 1.85025394e-01\\n2.27286607e-01 7.26317838e-02 7.99549893e-02 -4.66393828e-01\\n-3.16218808e-02 -3.06260288e-02 -4.22703326e-02 3.44313830e-01\\n2.11951166e-01 9.36844200e-02 -9.58870426e-02 -2.13956252e-01\\n4.41184640e-01 -3.85789305e-01 -1.07103661e-01 1.10296108e-01\\n1.33244591e-02 -2.05625564e-01 -3.83343250e-01 3.72611023e-02\\n-5.38650639e-02 -3.09700280e-01 2.62688756e-01 4.51193564e-02\\n-1.89355537e-02 1.00750521e-01 -5.24988770e-01 -1.40795201e-01\\n-2.44073778e-01 -5.22057042e-02 -7.37307873e-03 -4.77592677e-01\\n6.42220005e-02 5.65168401e-03 -5.65557957e-01 3.60388964e-01\\n-3.05231303e-01 -5.85691370e-02 1.18023761e-01 -3.55653688e-02\\n-3.59271228e-01 -9.73222703e-02 8.96369815e-02 2.66783237e-01\\n-2.02526093e-01 -9.86875296e-02 -4.08090055e-02 -8.54428113e-01\\n2.19137162e-01 1.25112394e-02 -2.22181827e-01 2.84813577e-03\\n2.88078561e-02 -5.69409609e-01 1.90065414e-01 -3.77096832e-01\\n-5.73831284e-03 -6.53356314e-02 -2.09627822e-01 -3.99410039e-01\\n1.55555964e-01 -5.48055656e-02 -1.85831562e-01 3.55677545e-01\\n-4.00783271e-01 2.46330008e-01 -3.29066217e-02 9.16087851e-02\\n-6.90391809e-02 -4.12089229e-01 2.56986737e-01 -2.49182001e-01\\n-4.23956186e-01 -1.86825261e-01 -3.58079821e-01 -1.71121776e-01\\n-1.07744902e-01 -2.71116346e-01 -1.57000229e-01 9.00405198e-02\\n1.66967988e-01 1.17699422e-01 -2.62935251e-01 -2.59600401e-01\\n8.68176147e-02 -4.83786792e-01 5.94555363e-02 -7.70635679e-02\\n-7.61094317e-02 -1.68797180e-01 2.36790627e-01 2.08102837e-02\\n5.82346618e-02 -3.71962368e-01 4.31409299e-01 -3.13783586e-01\\n-2.30465069e-01 -2.81557254e-02 -4.08590399e-03 6.76072463e-02\\n2.29618609e-01 -5.62914789e-01 -1.67925477e-01 2.95361996e-01\\n8.50862116e-02 1.69765115e-01 1.85721084e-01 -7.68069997e-02\\n-1.66762874e-01 2.67848432e-01 -2.94314742e-01 1.51756570e-01\\n6.56400621e-01 2.66324654e-02 1.93853751e-01 1.60925820e-01\\n1.76467612e-01 2.96401709e-01 4.62040186e-01 6.88160360e-02\\n1.01421140e-02 4.01162624e-01 6.21634945e-02 -4.75255489e-01\\n1.33167198e-02 1.36951637e-02 -9.68993977e-02 -3.03680658e-01\\n5.08943498e-01 4.22874153e-01 -3.46680135e-01 -1.73676133e-01\\n-4.37353253e-02 -2.09104285e-01 2.62539357e-01 -1.39699001e-02\\n1.69516504e-01 -1.62001342e-01 5.60643375e-01 -2.58484725e-02\\n1.26681313e-01 6.92776978e-01 -1.11252524e-01 -2.83990860e-01\\n-1.95092827e-01 2.02787995e-01 1.36391088e-01 4.17681545e-01\\n2.29299124e-02 1.97397351e-01 -4.75659259e-02 1.69357017e-01\\n-1.34421811e-01 1.23203956e-01 8.46082121e-02 1.17157124e-01\\n2.07507033e-02 9.04635191e-02 3.86993021e-01 3.74910474e-01\\n2.96536237e-01 3.79802078e-01 2.19330400e-01 9.95259210e-02\\n3.71130347e-01 5.21031082e-01 5.06739438e-01 1.67193234e-01\\n6.04473501e-02 1.09241776e-01 8.09906945e-02 1.20949075e-01\\n3.44796926e-01 3.28286886e-01 8.99077114e-03 9.28618193e-01\\n3.72975409e-01 1.86447129e-01 6.47921562e-01 -5.42080581e-01\\n-3.22336674e-01 1.56559292e-02 4.68191177e-01 -3.33797544e-01\\n-8.03431794e-02 1.17046565e-01 -2.17119068e-01 1.57824874e-01\\n-5.51444650e-01 -1.80594146e-01 -1.19151466e-01 7.78483003e-02\\n1.48463473e-01 -2.14286909e-01 -1.56235516e-01 1.45762190e-01\\n-3.13973688e-02 -1.26242802e-01 -4.61965859e-01 -4.15775850e-02\\n-1.11707017e-01 -1.05687134e-01 -6.49921298e-02 -1.45715967e-01\\n-6.37752563e-03 -2.74770677e-01 -8.85816589e-02 3.43174487e-02\\n4.09632206e-01 -9.46629345e-02 -1.79774370e-02 -3.19668353e-02\\n1.26265600e-01 4.52870399e-01 5.27862430e-01 -2.20271066e-01\\n8.16953927e-02 -1.61928713e-01 -2.20700160e-01 6.53495044e-02\\n4.36523221e-02 -8.57009292e-02 7.24367276e-02 2.65315801e-01\\n-2.99885243e-01 -1.55273110e-01 3.67512368e-02 3.77583891e-01\\n-4.35029536e-01 7.85692707e-02 -1.52435619e-02 4.56222594e-01\\n-8.44625849e-03 1.33941457e-01 -1.83508247e-01 2.39313785e-02\\n-9.94324684e-02 -4.62268114e-01 3.63568604e-01 -1.42757192e-01\\n-1.78535849e-01 1.59099013e-01 1.65061682e-01 2.96735108e-01\\n-3.84906650e-01 -1.05779290e-01 -2.64325365e-02 2.58280396e-01\\n9.34208408e-02 3.62722337e-01 -4.23544973e-01 -3.26803803e-01\\n-3.28056544e-01 1.54270619e-01 -9.36808065e-02 1.93909872e-02\\n-1.93271607e-01 2.08792463e-01 2.14508921e-01 6.37225956e-02\\n2.90741712e-01 1.25184599e-02 -2.22503662e-01 -1.97941914e-01\\n-1.56290472e-01 -3.34133148e-01 2.41994467e-02 -2.96717533e-03\\n2.39193365e-01 -2.96937227e-01 -8.57633054e-02 -2.44384751e-01\\n-8.71975496e-02 -3.72844577e-01 4.64761890e-02 -5.82217015e-02]]',\n", + " 'Job Informationen Would you like to be part of a team which… • takes a significant part in the creation of our company’s software architecture? • works in multidisciplinary projects with our internal departments Mechanical and Electrical Engineering, Technical Projects, Product Management as well as the Service and Manufacturing departments? • focuses the development of our therapy devices in particular on clinical application and usability aspects? We match with people who… • are open to new ideas and feel comfortable in our dynamic environment, • have great analytic skills and think solution-oriented, • can work independently, • are equipped with good social skills, and integrate well into a multicultural and professional team. Your bag of tricks contains… • good capability of understanding complex legacy systems, • good knowledge of the .NET platform, including C#, WPF and WCF, • understanding of relational databases, • experience in Version Control Systems and Application Lifecycle Management, • very good English skills, German skills are a must. Benötigte Skills Englisch .NET C# Konzeptionell / Analytisch Usability Softwarearchitektur',\n", + " '[\"Analytical Skills\", \"Professionalism\", \"Social Skills\", \"Integration\"]',\n", + " '[\"Control Systems\", \"Usability\", \"Relational Databases\", \"Version Control\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Product Management\", \"Software Architecture\", \"Wcf 4\", \"Application Lifecycle Management\", \"Lifecycle Management\", \"Mechanicals\"]',\n", + " \"['English', 'Slovak', 'Navaho', 'Navaho']\"],\n", + " ['51',\n", + " 'data scientist',\n", + " 'Lausanne',\n", + " 'Publishing',\n", + " 'www.frontiersin.org',\n", + " '[[-3.23620260e-01 1.65432483e-01 5.47806978e-01 -9.65909287e-03\\n5.04691005e-01 -1.45443231e-01 -1.68182068e-02 3.73564124e-01\\n-1.41375095e-01 -2.55717307e-01 -1.63371891e-01 -3.02160978e-01\\n-3.07451673e-02 1.00709498e-01 7.07954466e-02 3.89789879e-01\\n2.98010319e-01 7.77123943e-02 -1.99934587e-01 3.57004225e-01\\n2.15718716e-01 1.70266069e-02 4.30273786e-02 7.14776516e-01\\n4.52711970e-01 -2.04108581e-02 -9.44484323e-02 -1.08742341e-03\\n-2.32649595e-01 -2.60220081e-01 3.91138554e-01 6.62056878e-02\\n-4.85408343e-02 -2.89379120e-01 1.45596102e-01 3.25471908e-02\\n-2.81610548e-01 -9.93527398e-02 -5.85513674e-02 1.15260646e-01\\n-3.89131010e-01 -1.89934582e-01 -1.30890161e-01 5.77544682e-02\\n-2.29421124e-01 -3.14038038e-01 -1.00636892e-02 3.17899249e-02\\n7.32482225e-02 2.48574093e-02 -5.81554472e-01 3.34173322e-01\\n-1.95960939e-01 -3.63358319e-01 2.90703595e-01 6.10002398e-01\\n-9.26823169e-03 -4.20875132e-01 -3.95973414e-01 -3.41955006e-01\\n5.40865362e-02 -4.61537801e-02 9.87069756e-02 -2.61458337e-01\\n3.47255349e-01 -1.58766359e-02 -4.24101837e-02 3.69343579e-01\\n-7.52086937e-01 -1.23136498e-01 -1.59443542e-01 -4.50584218e-02\\n-3.62983227e-01 -4.35134433e-02 -2.62905478e-01 -1.15757331e-01\\n-4.09901068e-02 3.70094001e-01 7.49101490e-02 7.64602348e-02\\n-1.53311819e-01 2.60333002e-01 -1.41948298e-01 3.52964729e-01\\n2.48547167e-01 2.87942410e-01 1.60191029e-01 3.21800560e-01\\n-2.95165956e-01 3.67222488e-01 1.03354774e-01 -3.09045851e-01\\n3.03145021e-01 2.54780166e-02 4.78841871e-01 -4.43191603e-02\\n5.89889586e-02 9.58938301e-02 -2.81749189e-01 2.38329083e-01\\n1.68482825e-01 -2.65582353e-01 -8.22274238e-02 -1.49876224e-02\\n-1.50991455e-01 4.43655327e-02 -2.63195671e-03 1.12853512e-01\\n-2.91430414e-01 3.52151752e-01 1.50968745e-01 -1.96673810e-01\\n-7.41392672e-02 -5.65136611e-01 -1.05935276e-01 3.96694914e-02\\n1.20681226e-01 3.01773220e-01 1.32640362e-01 2.21806511e-01\\n1.37880832e-01 -3.48036662e-02 2.37931564e-01 8.56292009e-01\\n2.93570571e-02 6.53645396e-02 -2.25084320e-01 3.63558412e-01\\n1.09175593e-01 -3.85137737e-01 2.54658312e-01 1.23366833e-01\\n2.32598558e-03 -1.46580011e-01 -1.52304113e-01 3.13179225e-01\\n-1.18868135e-01 -2.82121181e-01 -3.27698112e-01 1.47605032e-01\\n-6.81117103e-02 -3.70158851e-01 5.29176652e-01 1.82845294e-02\\n1.76340371e-01 -1.22635946e-01 -6.16876036e-03 -1.58654988e-01\\n-1.32940367e-01 1.99952528e-01 4.54030260e-02 1.69180214e-01\\n-3.41237843e-01 -2.72817850e-01 -1.95173651e-01 2.93573141e-01\\n-3.71046275e-01 1.62922591e-01 -4.96223383e-02 -1.58326417e-01\\n2.79333711e-01 -2.03351248e-02 -3.47462416e-01 2.22208947e-01\\n-1.36852175e-01 -9.27618369e-02 -6.38279319e-02 3.59472275e-01\\n-1.99447125e-01 1.77148879e-01 4.24892968e-03 -1.05568759e-01\\n5.87178290e-01 1.40826046e-01 1.81951404e-01 1.85155850e-02\\n2.76644528e-01 -2.43610218e-02 1.97085261e-01 2.08757252e-01\\n-7.59136677e-01 2.15457231e-01 -1.08531356e-01 -1.84313685e-01\\n5.95834292e-02 -5.55676669e-02 2.91484594e-01 -3.21903884e-01\\n3.24487872e-02 -1.08091742e-01 -3.61806333e-01 -2.40661040e-01\\n-2.61542976e-01 1.81745868e-02 4.38810766e-01 -3.92342150e-01\\n-3.19991335e-02 1.84231162e-01 -4.70170736e-01 -9.95009392e-02\\n5.63114621e-02 1.59401149e-01 1.12422839e-01 2.14885727e-01\\n-1.94653541e-01 -5.30927122e-01 -2.43488438e-02 -3.52199763e-01\\n-4.33190435e-01 7.52772093e-02 -3.96642089e-01 2.91794896e-01\\n2.23210171e-01 6.18438236e-02 -6.18833564e-02 8.95115808e-02\\n-2.41694093e-01 -4.79392968e-02 1.16851941e-01 7.35366717e-03\\n2.67348021e-01 5.27810752e-02 -3.49978626e-01 4.41888094e-01\\n-1.77379161e-01 5.59392571e-01 2.06028372e-01 -8.24701130e-01\\n5.40869832e-01 3.12987328e-01 -3.39220762e-02 -4.07472193e-01\\n6.51117027e-01 -3.14576924e-01 -4.27126288e-02 1.10485256e-01\\n-3.41662019e-01 -3.52510303e-01 3.13591927e-01 -2.83939779e-01\\n-1.98362321e-01 5.65555930e-01 2.03474224e-01 8.24658275e-02\\n3.12163711e-01 -1.33935273e-01 -1.00574270e-01 1.66883096e-01\\n-1.03483379e-01 -3.25571597e-01 -3.55585843e-01 2.20346414e-02\\n-1.27732545e-01 -3.97267580e-01 -1.60839900e-01 -4.21703756e-01\\n-1.15043268e-01 -4.06756043e-01 -7.73856789e-02 3.30611467e-01\\n2.19520569e-01 6.77385852e-02 2.23435462e-04 -9.29842703e-03\\n-8.30927193e-02 -5.18940091e-01 -8.29912797e-02 -4.73280512e-02\\n4.13527489e-01 1.73696131e-01 8.66399705e-02 -2.73247808e-02\\n-9.62332636e-03 6.14185333e-01 -3.32279563e-01 -2.53139704e-01\\n1.73606724e-01 1.17107414e-01 -4.06417623e-03 -1.54564604e-01\\n1.08964033e-02 2.80226052e-01 -2.24829555e-01 7.51984715e-02\\n-1.71627164e-01 1.03015732e-02 2.86375374e-01 8.56194049e-02\\n-2.02701032e-01 -1.79032832e-01 6.79061487e-02 3.15019429e-01\\n-4.58204627e-01 -1.99522644e-01 5.48496723e-01 2.24034607e-01\\n1.19595662e-01 1.05544880e-01 1.62443548e-01 -6.61340579e-02\\n-1.50072068e-01 -2.09361345e-01 2.30658501e-01 9.92927402e-02\\n2.02541411e-01 8.80833492e-02 -5.60785718e-02 -6.23536825e-01\\n-3.16979003e+00 -1.86775967e-01 3.27786654e-02 -1.95791587e-01\\n1.59112796e-01 -1.34312049e-01 5.60030565e-02 -7.23799467e-02\\n-3.76877785e-01 1.02252819e-01 -2.48728991e-01 -1.07845411e-01\\n1.03419885e-01 2.99970329e-01 2.71668851e-01 2.44458169e-01\\n8.91170353e-02 -2.24427491e-01 1.34254806e-02 3.42730939e-01\\n-2.08115786e-01 -5.85654438e-01 1.49542376e-01 1.23668276e-02\\n2.77389765e-01 1.73639148e-01 -2.91748732e-01 -1.50888592e-01\\n-3.11033368e-01 -2.17754006e-01 7.77131924e-03 -2.67796427e-01\\n-1.24385461e-01 2.85731196e-01 2.01798335e-01 -2.31783129e-02\\n6.69709593e-02 -4.03130054e-01 -7.37714395e-02 -3.62459302e-01\\n1.26456887e-01 -5.74353218e-01 -1.72074400e-02 -1.02758668e-01\\n6.97864830e-01 -2.90143967e-01 2.23118752e-01 1.38400659e-01\\n1.14546739e-01 1.45780265e-01 2.23210156e-02 1.90953426e-02\\n-2.73965061e-01 -2.05903128e-01 -1.47767723e-01 -2.31625095e-01\\n5.44678986e-01 4.05652583e-01 -1.63281500e-01 -3.38711776e-03\\n7.64856040e-02 -2.34418094e-01 -3.78105998e-01 -4.55883026e-01\\n-2.23505586e-01 -1.69414908e-01 -7.09790826e-01 -4.93211120e-01\\n-1.01940088e-01 -1.16907962e-01 -9.27609354e-02 4.96109903e-01\\n-2.61199892e-01 -3.33940059e-01 -7.98101351e-02 -4.91935790e-01\\n2.50751138e-01 -1.07392155e-01 4.39548269e-02 -1.50725722e-01\\n-2.48350620e-01 -5.00371099e-01 7.17161447e-02 3.97429839e-02\\n-1.67816907e-01 -3.53487462e-01 2.36469228e-02 -2.57019192e-01\\n-3.42294991e-01 -5.64785004e-01 4.17617738e-01 8.16207826e-02\\n3.14737797e-01 1.33658588e-01 2.77174681e-01 5.47087267e-02\\n2.22186863e-01 -3.56181674e-02 1.21544421e-01 -4.62775767e-01\\n4.07396629e-02 3.81776206e-02 4.66597527e-01 -2.73326010e-01\\n8.92255753e-02 1.10370018e-01 -2.70808786e-01 -1.05110034e-01\\n3.77222836e-01 -1.94731969e-02 2.39385627e-02 -1.38955191e-01\\n3.29614878e-01 -3.33715379e-01 -1.48851782e-01 1.59556806e-01\\n1.64208878e-02 6.29700541e-01 -5.61287999e-02 -3.50058258e-01\\n-2.68224478e-01 4.50883329e-01 -1.00336425e-01 -4.40170243e-02\\n-8.05671811e-02 1.38604850e-01 -2.00660139e-01 9.08940509e-02\\n1.01137301e-02 -2.33601272e-01 -3.21560681e-01 -1.43357188e-01\\n-1.45922512e-01 2.38126561e-01 2.48324037e-01 7.92580843e-02\\n-1.15023106e-01 -4.05751795e-01 -7.42079020e-02 2.24842682e-01\\n2.28087932e-01 3.55925918e-01 2.09924355e-01 -1.98415399e-01\\n-1.05614364e-02 3.22105259e-01 -4.94190343e-02 2.99835086e-01\\n-2.48321414e-01 1.32740393e-01 -5.27489841e-01 -2.69231886e-01\\n-1.85111701e-01 -3.44432294e-01 2.31833458e-01 2.63935804e-01\\n1.10579006e-01 4.91882376e-02 6.23443387e-02 -4.81034815e-01\\n3.15678120e-01 2.88462695e-02 2.64380097e-01 6.44250065e-02\\n2.05427799e-02 5.65230787e-01 -7.78614506e-02 -3.14238369e-02\\n-1.72415018e-01 -4.03944999e-02 -1.51559934e-01 -1.63338393e-01\\n2.08600089e-02 -4.38177109e-01 -1.51188016e-01 3.59754860e-01\\n1.01780027e-01 -2.78949738e-01 -2.53652662e-01 2.68811464e-01\\n3.65119725e-02 -3.48602325e-01 -1.62747353e-01 8.90160352e-02\\n3.56554210e-01 1.62038684e-01 3.01494122e-01 -4.84773219e-01\\n6.85238242e-02 -6.25320151e-03 -7.91508257e-02 5.12995362e-01\\n6.39363676e-02 -4.30298299e-02 -1.91633880e-01 -2.03577459e-01\\n3.82396996e-01 -6.47144243e-02 -6.45050704e-02 -1.96774676e-02\\n7.36241043e-02 -2.87759721e-01 -4.20034260e-01 3.51770334e-02\\n1.99882556e-02 -2.94351697e-01 8.98229033e-02 4.82170619e-02\\n-1.59686320e-02 1.40773281e-01 -5.86805582e-01 -2.72610754e-01\\n-2.28592545e-01 -5.70670441e-02 4.86582816e-02 -4.17476356e-01\\n-4.54618596e-02 -9.49505195e-02 -5.97147703e-01 2.08436444e-01\\n-1.69567138e-01 -5.27002029e-02 1.33236900e-01 -4.33763936e-02\\n-3.48582953e-01 -4.62219752e-02 2.54445285e-01 2.16704980e-01\\n-2.44743451e-01 -2.42058292e-01 1.46664798e-01 -1.01773190e+00\\n9.09140110e-02 4.72458079e-03 -8.56475532e-02 1.47448480e-01\\n-5.55325150e-02 -6.62070334e-01 9.24239159e-02 -4.22755748e-01\\n-4.88925353e-02 -4.46581542e-02 -2.82679111e-01 -3.84262949e-01\\n1.18092313e-01 1.21551203e-02 -2.58042753e-01 4.26241398e-01\\n-3.45735073e-01 2.46939600e-01 -1.81680307e-01 6.53380826e-02\\n8.45739245e-03 -2.34786540e-01 8.29503685e-02 -2.74647266e-01\\n-3.75164598e-01 -1.10909812e-01 -2.79862106e-01 -1.91920131e-01\\n-9.69739817e-03 -1.66262656e-01 -1.92562908e-01 6.84735999e-02\\n3.46227348e-01 8.26583058e-02 -6.86542392e-02 -2.63727039e-01\\n4.00895029e-02 -3.58503640e-01 7.16762617e-02 -1.71385556e-01\\n-5.71516566e-02 -5.93046844e-02 1.63507596e-01 1.14501871e-01\\n1.63626790e-01 -3.44101429e-01 3.69428158e-01 -3.32228243e-01\\n-3.41807604e-01 -4.70149145e-02 1.24053106e-01 1.73103996e-02\\n3.66282463e-01 -4.41138268e-01 1.14867128e-02 4.13039237e-01\\n1.16150424e-01 1.06417485e-01 3.77014160e-01 -1.29735276e-01\\n-1.78737327e-01 2.60883749e-01 -4.02148306e-01 -4.70731333e-02\\n7.59097099e-01 1.21579580e-01 1.41547620e-02 1.78122506e-01\\n9.43285972e-02 2.64794469e-01 5.11714339e-01 -8.38906690e-02\\n-9.95272025e-02 2.88725525e-01 1.03639916e-01 -5.53333580e-01\\n-1.25835225e-01 -5.79989105e-02 -1.42845571e-01 -3.06955844e-01\\n6.47354007e-01 3.50905269e-01 -3.84233594e-01 -2.29736000e-01\\n-6.76969066e-02 -1.39093533e-01 2.47056156e-01 -6.59322143e-02\\n4.31413651e-02 -8.25019926e-03 4.83063161e-01 -1.31079063e-01\\n1.61263391e-01 4.95075524e-01 -1.47687972e-01 -2.07649529e-01\\n-6.84743375e-02 1.10798985e-01 4.16051187e-02 4.27471995e-01\\n-1.97387636e-01 3.78600478e-01 3.55290212e-02 2.99282577e-02\\n-2.44724900e-02 9.79919434e-02 1.48927033e-01 6.68599308e-02\\n2.78640658e-01 1.18765578e-01 3.35627645e-01 4.37491685e-01\\n2.62404740e-01 4.69391942e-01 2.79026598e-01 7.93944374e-02\\n4.31390285e-01 5.15699089e-01 4.75666046e-01 1.37933478e-01\\n1.56198721e-03 -8.99512507e-03 1.03070743e-01 -1.07463121e-01\\n3.79752696e-01 2.34324723e-01 1.32710025e-01 8.24950755e-01\\n3.74107659e-01 3.85940552e-01 6.63528323e-01 -6.60792887e-01\\n-3.61078799e-01 9.60889459e-02 5.44209838e-01 -3.67819369e-01\\n-2.31635757e-03 2.98896432e-01 -1.92460984e-01 2.55515188e-01\\n-4.86708462e-01 -2.34412253e-01 -8.72043669e-02 -4.91743758e-02\\n-7.85126090e-02 -1.37448713e-01 -2.38438129e-01 1.44272596e-01\\n-8.27772766e-02 -1.57265827e-01 -5.26360512e-01 -1.30208641e-01\\n-1.85009658e-01 -1.06008559e-01 -1.01573907e-01 -1.02737948e-01\\n-2.55844206e-01 -2.90049255e-01 -1.27558947e-01 -2.42334288e-02\\n2.19865948e-01 -2.26348996e-01 -6.82573169e-02 -2.01967090e-01\\n3.08085918e-01 1.86506599e-01 5.08746564e-01 -1.78434774e-02\\n1.28120676e-01 -2.96473026e-01 -2.03225017e-01 7.84814656e-02\\n2.32179135e-01 8.51059109e-02 4.56133112e-02 3.44617993e-01\\n-1.99825615e-01 -1.26985595e-01 1.62222400e-01 3.74641240e-01\\n-4.23205227e-01 1.84925385e-02 -7.16514513e-03 1.56717062e-01\\n2.43495256e-02 2.22087264e-01 -2.51316786e-01 3.46892476e-02\\n-1.84435457e-01 -5.49358368e-01 2.81348139e-01 -9.92960781e-02\\n-1.12073302e-01 1.65197462e-01 2.24849612e-01 1.85496926e-01\\n-2.19552204e-01 -7.77656883e-02 -8.10285583e-02 2.21970424e-01\\n4.88741249e-02 2.54761010e-01 -1.95738494e-01 -2.89558232e-01\\n-2.18244046e-01 2.14415789e-01 -2.03575104e-01 2.08239257e-01\\n-5.54334521e-02 3.71965170e-01 5.47456518e-02 1.24660820e-01\\n3.69822264e-01 7.83464909e-02 -1.84343308e-01 -1.90978542e-01\\n-2.50606656e-01 -3.30570877e-01 1.16118919e-02 3.65510583e-02\\n1.78353846e-01 -3.13494980e-01 1.52242184e-02 -2.52051294e-01\\n-1.78945258e-01 -3.51709485e-01 3.80060077e-03 7.93921202e-03]]',\n", + " \"Frontiers is a fast-growing open-access academic publisher with headquarters in Lausanne Switzerland, employing over 500 people. In the last 3 years, Frontiers has massively invested in data acquisition and modeling, leading to the deployment of sophisticated data products to further accelerate its business. We are looking for a Data Scientist to join our data science team in Lausanne. Your main focus will be developing state-of-the-art machine learning algorithms for a variety of applications (e.g. computer vision, NLP, recommendations systems) to improve our editorial workflow. You will contribute to the “full-stack” of data science, from experimentation to deployment in production. You will work together with product owners, machine-learning engineers and data engineers in order to build machine learning products that can advance Frontiers’ business. We are a diverse team of people from over 30 different countries with offices in Lausanne, Madrid, London, Seattle and Beijing. We are smart, hungry, and fast moving; operating in small teams, with freedom for independent work and fast decision making. Responsibilities Development, optimization and evaluation of machine learning models and pipelines Technological review of data science solutions and communication to management Proactive identification of opportunities for potential products within Frontiers Requirements Degree in Computer Science, Statistics or similar Demonstrable experience in data modeling and machine learning prototype development Proficiency in Python, including its scientific/statistical/NLP/Computer vision packages (e.g. NumPy, SciPy, scikit-learn, spaCy, OpenCV) Experience with SQL Experience with deep learning frameworks (e.g. PyTorch, Keras, Tensorflow) Willingness to share and adopt best work practices on a common codebase Fluency in English and strong communication skills Familiarity with big data platforms (e.g. Spark, Azure Databricks) is a plus Familiarity with deployment tools (e.g. Docker, Flask) is a plus Expertise in the field of scientometrics is a plus Benefits: 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " '[\"Verbal Communication Skills\", \"Proactivity\", \"Management\", \"Communications\", \"Operations\", \"Decision Making\", \"Socialization\"]',\n", + " '[\"Codebase\", \"Computer Science\", \"Data Modeling\", \"Statistics\", \"OpenCV\", \"Machine Learning\", \"Open Access\", \"Scikit-learn (Machine Learning Library)\", \"Recommender Systems\", \"Data Engineering\", \"Prototype (Manufacturing)\", \"NumPy\", \"Scheme (Programming Language)\", \"Activism\", \"Computer Vision\", \"Python (Programming Language)\", \"Yoga\", \"E (Programming Language)\", \"Experimentation\", \"Flask (Web Framework)\", \"Keras (Neural Network Library)\", \"Pipelining\", \"Investments\", \"Machine Learning Methods\", \"Professional Development Programs\", \"Data Science\", \"SpaCy (NLP Software)\", \"Docker (Software)\", \"Machine Learning Algorithms\", \"TensorFlow\", \"Deep Learning\", \"Big Data\", \"Data Acquisition\", \"Azure Databricks\", \"E-Tools\", \"Data Management Platforms\", \"SciPy\", \"PyTorch (Machine Learning Library)\", \"Workflows\", \"SQL (Programming Language)\", \"Adoptions\"]',\n", + " \"['English', 'Turkish']\"],\n", + " ['93',\n", + " 'software engineer, server',\n", + " 'Stans',\n", + " 'Sports & Recreation',\n", + " '',\n", + " '[[ 4.19657119e-03 1.90651610e-01 3.78497064e-01 5.13158813e-02\\n4.57627356e-01 -2.19482675e-01 -3.98585089e-02 4.77968633e-01\\n-2.99623199e-02 -4.52263176e-01 8.47569704e-02 -2.59213239e-01\\n-1.15135968e-01 1.52834788e-01 -5.14461249e-02 3.22667956e-01\\n3.90877604e-01 1.49154276e-01 -2.07938105e-01 3.72331500e-01\\n-3.29465419e-02 -9.28253382e-02 5.74480444e-02 7.30684876e-01\\n3.47323149e-01 -1.34473488e-01 -7.27730542e-02 -8.53895694e-02\\n-1.24431491e-01 -2.20459715e-01 4.13540304e-01 1.05182678e-01\\n-1.76627100e-01 -4.72423166e-01 1.83959417e-02 5.09582460e-05\\n-8.21183473e-02 7.09558427e-02 -5.75212613e-02 5.24192080e-02\\n-5.09241581e-01 -2.82422096e-01 -8.52263570e-02 1.59817301e-02\\n-1.84080020e-01 -1.89115226e-01 1.43895835e-01 1.95239671e-02\\n2.09486082e-01 1.32909954e-01 -3.81277621e-01 1.45098090e-01\\n-2.97890216e-01 -2.38520965e-01 3.30358207e-01 4.71724808e-01\\n-4.70039174e-02 -3.40613931e-01 -6.10278130e-01 -2.93913215e-01\\n1.02475390e-01 -1.31842375e-01 6.94746226e-02 -4.06099200e-01\\n1.99730292e-01 1.36377923e-02 1.20372891e-01 2.96749830e-01\\n-6.19722009e-01 -4.23997007e-02 -3.29678029e-01 -2.30762273e-01\\n-2.36307532e-01 -2.69817740e-01 -2.90836900e-01 1.40718162e-01\\n-1.74000353e-01 2.67141938e-01 8.83082226e-02 3.21468264e-02\\n-2.43863672e-01 4.01021063e-01 -1.53138340e-01 5.06595075e-01\\n1.36072516e-01 1.46041989e-01 2.58405209e-01 3.02664340e-01\\n-3.54991049e-01 5.41337371e-01 3.06002833e-02 -3.94565284e-01\\n4.17516112e-01 8.19382891e-02 3.00508082e-01 -2.77488437e-02\\n2.89421260e-01 1.79128021e-01 -4.11026835e-01 5.02155304e-01\\n2.75404602e-01 -3.92059445e-01 1.24481112e-01 -2.62174368e-01\\n1.71581194e-01 3.56097817e-02 2.60737658e-01 6.64942265e-02\\n-2.69534826e-01 4.69560862e-01 1.81810647e-01 -2.27501661e-01\\n-3.26015711e-01 -3.37862551e-01 -8.90337974e-02 5.46146408e-02\\n1.03427976e-01 6.30549937e-02 1.80886596e-01 1.48122050e-02\\n3.20704162e-01 -1.50895230e-02 8.63060355e-02 6.92293048e-01\\n-1.21946998e-01 -3.84449549e-02 -2.68097758e-01 1.41203970e-01\\n1.17760643e-01 -4.80434358e-01 2.96947062e-01 2.78907180e-01\\n3.59276198e-02 -2.45543793e-01 -1.95855558e-01 3.92837942e-01\\n6.87235147e-02 -2.46404305e-01 -2.86368221e-01 1.37503266e-01\\n2.25323394e-01 -3.94692540e-01 6.29006386e-01 1.40780523e-01\\n2.30203509e-01 1.04204126e-01 7.36335739e-02 -2.15152413e-01\\n-1.89587146e-01 9.95958745e-02 1.26358420e-01 1.52480841e-01\\n-1.86856508e-01 -2.63932705e-01 -1.74687430e-01 -2.07939073e-02\\n-6.44025326e-01 1.35741487e-01 -7.21919984e-02 -1.19725406e-01\\n1.91199034e-01 -1.48440585e-01 -1.97448075e-01 9.73207429e-02\\n-1.82405978e-01 1.55881912e-01 1.30088389e-01 4.69996482e-01\\n-2.20180362e-01 3.04101467e-01 3.52934040e-02 1.57749563e-01\\n7.50556052e-01 2.04181492e-01 1.39974028e-01 -3.24459709e-02\\n3.11067790e-01 1.29440427e-01 1.26785904e-01 1.05969787e-01\\n-7.28647470e-01 2.07952231e-01 -5.09898588e-02 -2.02715993e-01\\n4.18172702e-02 -1.65703177e-01 1.64024115e-01 -2.54244387e-01\\n-6.29270375e-02 -1.42211661e-01 -3.21773410e-01 -1.93019390e-01\\n-3.15469623e-01 -1.78773515e-03 3.46425474e-01 -4.80665267e-01\\n-2.04028159e-01 2.45974049e-01 -4.19764817e-01 -1.67716861e-01\\n6.94317967e-02 7.83367902e-02 6.07563406e-02 3.08100600e-02\\n-2.15070188e-01 -6.34331822e-01 6.70756549e-02 -2.73862064e-01\\n-3.26485634e-01 1.84304528e-02 -2.72190690e-01 2.35907957e-01\\n1.04121767e-01 4.27378342e-02 -7.48009086e-02 2.51431733e-01\\n-1.41054600e-01 -1.33908227e-01 -2.12357678e-02 -6.51193932e-02\\n2.18028367e-01 1.03659570e-01 -2.59807348e-01 3.58793825e-01\\n-1.50127724e-01 6.28986716e-01 1.28117800e-01 -7.42506802e-01\\n3.72142255e-01 3.36656243e-01 2.20916010e-02 -3.10965806e-01\\n3.57547522e-01 -3.17433894e-01 -1.22343540e-01 -2.77977772e-02\\n-3.41489017e-01 -4.32014972e-01 1.33089051e-01 -2.07174718e-01\\n-2.48076081e-01 3.07481557e-01 -3.86180058e-02 1.57921866e-01\\n1.51027650e-01 -2.04765379e-01 6.54245764e-02 1.43233359e-01\\n2.62275375e-02 -1.22844964e-01 -5.82823038e-01 -1.87333316e-01\\n-7.67569095e-02 -2.99640656e-01 -6.82666004e-02 -4.21613008e-01\\n-1.40833676e-01 -3.41603547e-01 -2.77151942e-01 1.82955205e-01\\n3.68089408e-01 1.34872273e-01 -1.01327062e-01 4.50451896e-02\\n-2.53885508e-01 -8.06552231e-01 5.93913719e-02 1.77417099e-01\\n4.00834173e-01 1.90045819e-01 1.99555129e-01 1.91650800e-02\\n1.14832595e-01 6.72721148e-01 -2.15215266e-01 -1.42408565e-01\\n5.98156527e-02 1.96309179e-01 1.71849728e-01 -2.01993376e-01\\n1.39544874e-01 3.82048488e-01 -2.46209547e-01 8.84397049e-03\\n4.28125151e-02 -8.13334882e-02 5.05001009e-01 4.36566994e-02\\n-4.71971303e-01 -1.18041173e-01 -8.74910206e-02 -9.50585753e-02\\n-5.11459827e-01 -1.53237477e-01 7.02692032e-01 2.19720915e-01\\n2.32090801e-01 4.59217764e-02 1.43361866e-01 2.02530883e-02\\n-1.53267965e-01 -3.85977566e-01 4.10775274e-01 6.14447594e-02\\n6.12107925e-02 1.99060947e-01 2.14805603e-02 -5.95602453e-01\\n-3.73151922e+00 -1.51952565e-01 2.66933322e-01 -2.70903081e-01\\n1.01634920e-01 -1.31938502e-01 3.84980440e-02 -1.72400415e-01\\n-2.87590116e-01 2.03224808e-01 -8.37011915e-03 -1.22558549e-01\\n6.53054714e-02 2.55596101e-01 1.45093665e-01 2.29817688e-01\\n3.60041380e-01 -4.94289473e-02 -1.97533533e-01 2.15837106e-01\\n-2.25773335e-01 -6.56052470e-01 2.81183571e-01 -5.17175160e-03\\n3.70335460e-01 4.14487898e-01 -1.69462174e-01 -1.72790349e-01\\n-1.22569188e-01 -1.28791779e-01 -4.32869047e-02 -2.84319818e-01\\n-3.32405627e-01 1.89199910e-01 2.46157438e-01 -1.46335527e-01\\n1.53527290e-01 -5.00552595e-01 -3.65377456e-01 -4.64288741e-01\\n1.93612605e-01 -5.01750529e-01 -9.41107273e-02 -1.14692979e-01\\n6.28690720e-01 -2.41122454e-01 4.96989340e-02 -3.07037681e-03\\n1.85003161e-01 1.50731578e-01 2.01195002e-01 6.22644387e-02\\n-1.00877419e-01 -2.75766313e-01 1.13412291e-02 -2.21987873e-01\\n6.49620354e-01 3.38202626e-01 -1.18544422e-01 -7.13292882e-02\\n5.66346236e-02 -1.47372767e-01 -2.85220802e-01 -5.75056206e-03\\n-5.67050651e-03 -3.55069697e-01 -5.40334582e-01 -2.65111536e-01\\n-1.20759547e-01 -8.16478282e-02 -2.23616123e-01 7.09046960e-01\\n-2.86836207e-01 -2.92599678e-01 5.52451313e-02 -3.90795887e-01\\n2.75208175e-01 -8.51667151e-02 -6.50405362e-02 -1.21858045e-01\\n-1.94903076e-01 -4.77549613e-01 -1.69846177e-01 -3.63262333e-02\\n-1.58668369e-01 -4.70907211e-01 -4.48594838e-02 9.38383564e-02\\n-1.61953539e-01 -4.73259181e-01 4.43647861e-01 1.97164863e-01\\n2.25046009e-01 1.08969189e-01 2.88460463e-01 -1.49077743e-01\\n3.23229939e-01 7.17447549e-02 -1.18298210e-01 -3.56581032e-01\\n9.56156552e-02 -6.36006519e-02 4.04615104e-01 -1.68934584e-01\\n-1.17236204e-01 4.53091487e-02 -3.17346424e-01 -7.29527399e-02\\n3.44261348e-01 3.69763933e-02 4.52666767e-02 -2.81644519e-02\\n1.39368117e-01 -2.61497110e-01 -1.78470299e-01 -7.94175938e-02\\n1.15071148e-01 7.31402695e-01 -7.91044608e-02 -3.30004871e-01\\n-8.30434412e-02 5.92166662e-01 -1.10393725e-01 2.26685911e-01\\n-2.43708909e-01 1.51005566e-01 -1.89477593e-01 1.68831378e-01\\n3.21233422e-02 -1.23443201e-01 -9.08180624e-02 -1.91762775e-01\\n2.95888148e-02 3.38213265e-01 1.27893791e-01 6.74969479e-02\\n3.39128152e-02 -5.07577300e-01 -1.80897117e-01 1.52181268e-01\\n1.17892727e-01 5.24081469e-01 9.86526757e-02 -2.35377789e-01\\n-1.15666404e-01 4.04702902e-01 -1.11483261e-01 1.59437507e-01\\n-2.76436627e-01 1.30997226e-01 -5.01542330e-01 -2.25399658e-01\\n-3.81524295e-01 -4.49749619e-01 2.01004490e-01 3.06453943e-01\\n-7.17631876e-02 -2.23715827e-02 3.47432196e-02 -5.65105081e-01\\n1.22307107e-01 2.39892289e-01 1.95415139e-01 1.73424929e-01\\n-7.29080737e-02 3.90130699e-01 -7.73432627e-02 -1.50721908e-01\\n-2.83568680e-01 1.04744129e-01 2.79224534e-02 3.52959037e-02\\n6.63103014e-02 -6.30852103e-01 -1.27481252e-01 2.91693091e-01\\n2.15636998e-01 -1.93305179e-01 -1.82215601e-01 2.34513462e-01\\n-1.11896507e-02 -2.30219632e-01 -2.50831366e-01 -1.58606067e-01\\n3.06866407e-01 1.40521973e-02 3.48017991e-01 -2.64235258e-01\\n-9.09428895e-02 2.66525708e-03 -1.67819411e-01 4.33979034e-01\\n-2.04976611e-02 -1.34160649e-02 -2.40815222e-01 -1.87910631e-01\\n4.28932130e-01 -1.01187520e-01 -1.85849607e-01 -4.58960459e-02\\n1.32789403e-01 -1.34453639e-01 -5.56613028e-01 1.23462498e-01\\n1.11827314e-01 -1.62443385e-01 1.62164122e-01 2.68446505e-01\\n9.94890779e-02 2.54187465e-01 -6.48431182e-01 -1.82929233e-01\\n-2.91707635e-01 -1.09320626e-01 1.77690938e-01 -4.68878806e-01\\n-1.03390366e-02 -1.60723597e-01 -4.38322306e-01 1.59504175e-01\\n-2.37065643e-01 -2.19439864e-01 2.14751899e-01 4.66818102e-02\\n-3.81264508e-01 -1.30465984e-01 -1.38090461e-01 3.76766264e-01\\n-2.67199486e-01 -3.86241019e-01 1.07620269e-01 -9.98930216e-01\\n2.08986700e-01 1.49806708e-01 -2.06695676e-01 4.77055013e-02\\n-2.74291903e-01 -5.53868294e-01 1.63388010e-02 -3.66127729e-01\\n-1.61034524e-01 -2.26904433e-02 -2.62960792e-01 -1.95703983e-01\\n8.76858756e-02 -7.72311762e-02 -3.70017886e-01 3.90343249e-01\\n-2.63263762e-01 3.17548692e-01 -2.23154813e-01 1.51970536e-01\\n-1.46466970e-01 -1.80204943e-01 1.11943424e-01 -4.83588308e-01\\n-5.64050794e-01 -1.73690602e-01 -2.89208800e-01 -1.86942250e-01\\n3.26469392e-02 -3.91948521e-01 -8.98888186e-02 1.56584293e-01\\n3.77639294e-01 7.56210536e-02 -7.54180700e-02 -3.05499911e-01\\n-1.11330850e-02 -5.43521881e-01 -2.32928619e-03 1.97221786e-02\\n-1.03591368e-01 -1.47273943e-01 2.38484234e-01 2.56696284e-01\\n2.07982734e-01 -4.75270361e-01 2.43515998e-01 -5.18651664e-01\\n-2.12221175e-01 -4.12498564e-02 3.41846347e-02 -9.09946412e-02\\n3.43469888e-01 -6.62940741e-01 -2.97781378e-02 3.88743460e-01\\n1.06851019e-01 -4.78678532e-02 2.41117865e-01 -3.67032737e-02\\n8.60153064e-02 2.98433274e-01 -1.15659259e-01 1.41639039e-02\\n8.01465571e-01 2.05710120e-02 1.07352316e-01 2.79824555e-01\\n1.22504219e-01 3.22781920e-01 4.72642422e-01 -1.97250117e-02\\n-3.56625170e-02 1.84353784e-01 4.29020897e-02 -5.16256332e-01\\n-4.59073856e-02 1.75657719e-01 -1.69885024e-01 -4.73099321e-01\\n6.53086782e-01 4.64429677e-01 -5.42691886e-01 -1.38668865e-01\\n4.23935391e-02 -2.37883419e-01 1.91306114e-01 -8.76693130e-02\\n-1.26358587e-02 -7.80072957e-02 2.47184560e-01 -4.72817272e-02\\n2.36878157e-01 5.20830452e-01 -1.74931929e-01 -3.74126643e-01\\n-9.56023633e-02 3.14618021e-01 2.32934467e-02 6.76085234e-01\\n-3.13611090e-01 2.94694632e-01 -7.17972144e-02 -3.69204283e-02\\n-4.39805090e-02 3.57672751e-01 4.92023602e-02 1.74940497e-01\\n1.53625458e-01 2.83448175e-02 6.57693326e-01 4.95913744e-01\\n2.29950145e-01 3.76834244e-01 2.87171096e-01 7.80405179e-02\\n3.79076242e-01 4.07682389e-01 4.46261585e-01 9.75887850e-03\\n8.69158804e-02 2.50168413e-01 2.15897173e-01 -1.78677291e-01\\n4.29259300e-01 4.14564729e-01 1.04121834e-01 7.35650778e-01\\n3.07513177e-01 2.58028567e-01 5.23412883e-01 -6.79533064e-01\\n-2.04126149e-01 3.85161266e-02 4.63061035e-01 -3.58024180e-01\\n5.31930700e-02 2.15788722e-01 -9.91261676e-02 4.14719045e-01\\n-2.42693037e-01 -3.17850739e-01 6.62613362e-02 1.72684640e-01\\n-7.82706141e-02 -3.56501102e-01 -2.91602969e-01 -4.20685224e-02\\n3.80712561e-04 9.23630130e-03 -3.84840935e-01 -1.41518516e-02\\n-1.34261370e-01 4.22651246e-02 -1.21474139e-01 -2.05782607e-01\\n1.32307746e-02 -4.23506021e-01 9.19374265e-03 -1.60231590e-01\\n1.01596862e-01 -1.77249879e-01 1.50811076e-02 -3.37992013e-02\\n3.26267958e-01 2.07561895e-01 5.01468062e-01 3.17767560e-02\\n-2.32816301e-03 -2.82887399e-01 -2.16541767e-01 2.95368224e-01\\n1.21828973e-01 6.82059526e-02 1.63066722e-02 -3.95845696e-02\\n-1.58562884e-01 -1.32766142e-01 1.79024503e-01 3.05973887e-01\\n-3.57012391e-01 1.01286501e-01 -2.74445117e-01 1.45240784e-01\\n1.40225396e-01 2.26693809e-01 -1.02816515e-01 -5.03080934e-02\\n-4.89732847e-02 -2.55098283e-01 1.21652082e-01 -2.20676437e-02\\n-7.63746649e-02 8.66300911e-02 2.09861547e-01 2.50987709e-01\\n-3.04663837e-01 -6.35462850e-02 -2.11136624e-01 9.47741866e-02\\n4.18485031e-02 2.01671302e-01 2.84669995e-02 -3.72853816e-01\\n-2.53867328e-01 9.49759632e-02 -1.02678016e-01 -2.20935941e-02\\n4.03796881e-02 3.23136479e-01 3.71691212e-03 -4.26064655e-02\\n5.52915454e-01 -4.04681340e-02 -2.66607583e-01 -7.83895180e-02\\n-2.89654911e-01 -1.30810529e-01 -1.58177599e-01 -1.42467916e-01\\n1.79074958e-01 -3.30845833e-01 -2.14295182e-02 -2.07073670e-02\\n1.23008221e-01 -1.37944296e-01 6.03223555e-02 -3.46815884e-02]]',\n", + " 'About PLEX: Plex is a media streaming company that gives people instant access to their media collections - home videos, photos, music, TV shows, and movies - so they can quickly find and stream them to any device. We have a simple yet ambitious mission: to help people easily discover, enjoy, and share all of their media across all of their devices. We’ve made great progress towards this mission, and we have millions of happy customers, but we still have a long way to go! What sets us apart: We support every major platform, including desktops, mobile devices, smart TVs, streaming devices, and gaming consoles, providing you the opportunity to build and contribute to the technologies you’re most interested in, as well as move across projects to learn new skills. We are a distributed organization, with people making great things happen in more than 15 countries and 11 time zones. While we are passionate about our work and all work hard, we provide flexibility around a schedule that works for you. We love what we’re building and our user community is an integral part of our development process. We actively engage with customers through forums to understand what is working, what they want more of, and how we can be better. We ship cool stuff! Sound interesting? We’re looking for software engineers who are ready to push their limits and have a material impact in Plex’s growth and success. Who You Are: You’re kind, helpful, smart, get stuff done, have great energy, and thrive in a startup environment. You’re self motivated and able to work well in a distributed office. You’re a software engineer with experience working in groups, but with the ability to work independently. You believe in asking for help and helping others when they ask, never throwing a problem over the wall. You thrive in a fast paced environment, with an ability to be nimble and shift priorities as called for in a dynamic space. You are hungry to have an impact, continuously working to improve our product, process and push the team to be it’s best. You are an experienced C/C++ programmer and thrive inside of large codebases. You can both understand and improve complex systems, but know when making targeted fixes is the right approach. You have documented experience of shipping products and features into the hands of many demanding users. You have been the primary developer responsible for taking features from inception through to delivery, and do not shy away from the responsibility of heading up a feature team. You understand the complexities involved in shipping cross-platform applications, and have solid experience in working with platform-specific APIs. Ideally, you would have a working knowledge of Win32 APIs. You have some experience with client/server architectures. You might know a thing or two about networking, or databases, or security, or media formats. You write simple clean code. The debugger is one of your favorite tools. Plex is committed to building an inclusive and diverse workforce. Plex is an equal opportunity employer. We do not discriminate based on race, ethnicity, color, ancestry, national origin, religion, sex, sexual orientation, gender identity, age, disability, veteran, genetic information, marital status or any other legally protected status.',\n", + " '[\"Self-Motivation\", \"Mobile Devices\"]',\n", + " '[\"Nvidia Quadro Plex\", \"Console Games\", \"Video Home System (VHS)\", \"Process Development\", \"C (Programming Language)\", \"Heading (Metalworking)\", \"Client Server Models\", \"Production Process\", \"Collections\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"Remote Application Platform\", \"Smart Tv\", \"Smart Device\", \"Software Engineering\", \"Process Driven Development\"]',\n", + " \"['English', 'Zhuang', 'Ewe', 'Kinyarwand']\"],\n", + " ['57',\n", + " 'data scientist',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.74159169e-01 3.37610811e-01 6.32986605e-01 -1.04096882e-01\\n5.10776281e-01 -1.76928371e-01 1.23440638e-01 3.22047621e-01\\n-2.33702168e-01 -3.37552518e-01 -1.90123260e-01 -2.75692314e-01\\n7.80085241e-03 7.53872395e-02 1.09145135e-01 3.93530756e-01\\n3.25709432e-01 6.66375384e-02 -1.34673268e-01 2.74409086e-01\\n1.91011846e-01 -4.79138009e-02 1.01544745e-01 6.11031294e-01\\n5.03775716e-01 -2.43258756e-02 -1.26253977e-01 1.90617010e-01\\n-2.13395208e-01 -2.97951698e-01 4.78870898e-01 7.68620595e-02\\n-1.54280111e-01 -8.58569890e-02 1.20153680e-01 1.32139876e-01\\n-1.98134676e-01 -1.18758297e-02 -1.84955318e-02 8.06215107e-02\\n-3.25358719e-01 -6.90306362e-04 -5.68117760e-02 -4.85117733e-02\\n-3.09198499e-01 -4.18812394e-01 -9.12849512e-03 7.69227967e-02\\n1.34908944e-01 4.71007489e-02 -4.08304185e-01 4.18267071e-01\\n-1.96686268e-01 -3.48830640e-01 1.54758364e-01 6.97228849e-01\\n-1.30681545e-01 -4.81871367e-01 -3.51434112e-01 -2.41023108e-01\\n1.58826023e-01 -1.42202780e-01 9.51188058e-02 -3.16717595e-01\\n6.11325502e-01 -3.72919887e-02 -7.09644705e-02 3.16210002e-01\\n-7.93446243e-01 -1.25272404e-02 -2.60333747e-01 -5.62610999e-02\\n-3.81852329e-01 3.03002503e-02 -3.53429973e-01 -1.82362080e-01\\n-7.90536255e-02 4.73523527e-01 4.97084558e-02 1.70599446e-01\\n-6.70160353e-02 2.16389358e-01 -3.22141975e-01 2.18345866e-01\\n1.92865342e-01 4.67429608e-01 1.74280331e-01 2.93980598e-01\\n-4.25263464e-01 3.78605843e-01 1.35690093e-01 -2.79087335e-01\\n1.88520551e-01 1.75940886e-01 4.24600840e-01 6.07181676e-02\\n1.93554625e-01 5.80913648e-02 -2.74738461e-01 2.51863897e-01\\n2.85106689e-01 -3.78318608e-01 6.08693212e-02 6.29624492e-03\\n-1.15190089e-01 1.12603977e-01 2.96976157e-02 2.66180962e-01\\n-3.74638081e-01 5.85921526e-01 -3.53540778e-02 -1.68602869e-01\\n-3.10806669e-02 -6.26818895e-01 -2.42606565e-01 1.63050294e-01\\n1.76286101e-01 2.74258226e-01 1.73404694e-01 4.34776276e-01\\n1.55279592e-01 6.03402182e-02 2.51504123e-01 9.16888773e-01\\n-7.53450319e-02 1.51415005e-01 -2.12091118e-01 4.77181941e-01\\n1.02437474e-01 -2.65336782e-01 2.58151263e-01 3.27646822e-01\\n1.49589211e-01 -1.00332119e-01 -2.57143557e-01 3.00071329e-01\\n-2.83816997e-02 -3.42744738e-01 -3.26590002e-01 1.53501138e-01\\n-1.20047443e-01 -6.43521845e-01 6.01870775e-01 -1.41520258e-02\\n8.65502134e-02 -6.21086843e-02 -3.15526091e-02 -6.91452920e-02\\n-3.84814292e-02 2.12042525e-01 1.22506566e-01 7.51162395e-02\\n-2.87874371e-01 -1.88766375e-01 -3.12698990e-01 2.30228215e-01\\n-4.70165908e-01 7.82576278e-02 -1.03938386e-01 -3.21434364e-02\\n2.73469776e-01 -9.23965797e-02 -3.50062072e-01 3.06634456e-01\\n-1.85352996e-01 -2.12948650e-01 -5.90674169e-02 3.77094477e-01\\n-2.21138328e-01 2.02790678e-01 -6.15214892e-02 -2.66010076e-01\\n4.94493216e-01 1.13771051e-01 1.51890993e-01 3.03541608e-02\\n3.27505678e-01 2.59406422e-03 1.61155343e-01 1.24708213e-01\\n-8.91785026e-01 4.54784781e-01 -8.39888752e-02 -2.64141798e-01\\n5.33160791e-02 3.78018804e-02 3.57734919e-01 -3.40982914e-01\\n1.64094016e-01 -1.48132905e-01 -2.67909676e-01 -2.25646198e-01\\n-2.81551391e-01 1.42808603e-02 4.81201559e-01 -4.54883993e-01\\n-1.28290832e-01 1.18064046e-01 -6.25424445e-01 9.40724686e-02\\n1.89791322e-01 1.58928111e-01 1.57106251e-01 1.86391696e-01\\n-1.04942575e-01 -5.48361540e-01 1.57844722e-01 -3.81006211e-01\\n-2.72294879e-01 2.51898885e-01 -3.62704009e-01 2.42142648e-01\\n1.84072226e-01 -4.22423594e-02 -7.22486302e-02 1.05826102e-01\\n-1.09347440e-01 -7.03085884e-02 1.98767096e-01 4.30995300e-02\\n4.77663964e-01 -2.46721320e-02 -4.03442204e-01 5.76572180e-01\\n-1.34788185e-01 3.98016423e-01 2.19209433e-01 -8.84030879e-01\\n4.94953811e-01 2.88229972e-01 1.45768628e-01 -3.08245629e-01\\n8.53734434e-01 -1.42586574e-01 -1.76400557e-01 1.20398231e-01\\n-3.90305042e-01 -2.70595014e-01 1.19539447e-01 -1.88488930e-01\\n-2.80934364e-01 4.93767858e-01 1.43255383e-01 1.38819575e-01\\n3.03464800e-01 -1.40080228e-01 -2.03393102e-01 1.66626304e-01\\n-1.98669434e-01 -3.08718443e-01 -4.08456147e-01 6.64917007e-02\\n7.11182645e-03 -4.77914691e-01 -1.55877903e-01 -5.15757501e-01\\n-1.95145741e-01 -3.99363995e-01 -8.38577896e-02 3.38394940e-01\\n8.70238394e-02 1.62593469e-01 3.34079415e-02 -1.75831303e-01\\n-3.02891076e-01 -5.37948549e-01 -1.00566909e-01 5.72912507e-02\\n3.89182061e-01 5.86620048e-02 8.34489763e-02 -8.49191099e-03\\n5.35918064e-02 6.51558101e-01 -2.04254881e-01 -3.06933492e-01\\n1.34450763e-01 1.86007053e-01 -7.45788813e-02 -7.07061961e-02\\n7.64248893e-02 3.43336195e-01 -2.72923529e-01 3.51957530e-02\\n-1.80335760e-01 1.04238272e-01 2.40936533e-01 -5.18822409e-02\\n-1.46691486e-01 -3.63116264e-01 -1.19817019e-01 2.13153124e-01\\n-5.62546313e-01 -3.18529159e-01 6.55937493e-01 1.69471055e-01\\n8.93241465e-02 5.82798906e-02 1.91726893e-01 -4.78999391e-02\\n-1.93732589e-01 -1.79378957e-01 1.76786900e-01 3.99150960e-02\\n8.46013352e-02 2.00013831e-01 -9.15069133e-02 -4.43638533e-01\\n-3.65405273e+00 -1.80417344e-01 5.57221957e-02 -2.16846511e-01\\n1.96865469e-01 -1.54008791e-01 1.13001958e-01 -1.26782551e-01\\n-2.77021796e-01 5.87999411e-02 -1.87859878e-01 -2.12990791e-01\\n1.36187643e-01 3.23811203e-01 2.21168250e-01 2.28244528e-01\\n1.26086324e-01 -3.07552189e-01 -1.10397546e-03 4.13926870e-01\\n-1.31254688e-01 -5.19708812e-01 2.01134101e-01 -1.73543058e-02\\n2.95369476e-01 3.02609861e-01 -2.93488979e-01 -5.15297875e-02\\n-2.84671158e-01 -3.21647346e-01 1.61086455e-01 -2.64134288e-01\\n-8.95985961e-02 3.90048444e-01 2.06880972e-01 -5.77176958e-02\\n1.64156452e-01 -2.89775580e-01 -6.22943006e-02 -3.23340029e-01\\n1.39087975e-01 -5.36502004e-01 -9.58459303e-02 -5.49979731e-02\\n7.41481781e-01 -4.08422053e-01 1.48745805e-01 5.43498583e-02\\n3.83405536e-02 1.68305933e-01 1.13388680e-01 -1.37711480e-01\\n-1.60727710e-01 -2.55754650e-01 -9.91198514e-03 -2.29229152e-01\\n5.91568172e-01 5.70663154e-01 -2.11375773e-01 -3.89424413e-02\\n1.32358760e-01 -2.59089291e-01 -5.44301391e-01 -5.43766141e-01\\n-1.90121710e-01 -1.08825684e-01 -6.17098927e-01 -6.46651328e-01\\n-4.82969135e-02 -1.77191257e-01 -3.60663049e-02 4.10772413e-01\\n-1.59459904e-01 -3.39491725e-01 -2.11655825e-01 -3.72076541e-01\\n2.38791540e-01 -9.86162797e-02 -5.07791862e-02 -1.40017658e-01\\n-1.92202359e-01 -5.30235171e-01 -8.94910395e-02 1.18634114e-02\\n-3.75514589e-02 -1.73680425e-01 2.29940057e-01 -2.28304684e-01\\n-4.32053179e-01 -5.18529356e-01 4.99954104e-01 -7.67195877e-03\\n3.18934977e-01 2.12811425e-01 1.49624303e-01 1.29515380e-01\\n3.09919089e-01 -3.20411235e-01 1.13498129e-01 -4.08704728e-01\\n9.09916162e-02 1.69389054e-01 4.96629179e-01 -2.34345302e-01\\n1.25310868e-01 2.34390646e-02 -2.03795344e-01 -1.73669636e-01\\n3.52008194e-01 -5.70731908e-02 1.70348614e-01 -3.07011366e-01\\n3.11449587e-01 -2.83378541e-01 -2.27256149e-01 1.52462289e-01\\n1.73500478e-02 5.52225530e-01 -6.99145254e-03 -3.12685609e-01\\n-1.47209316e-01 4.92266357e-01 -2.52374232e-01 -2.91149691e-02\\n-2.34611601e-01 3.48516144e-02 -2.61596382e-01 4.06386822e-01\\n-2.39280164e-02 -1.01019949e-01 -2.50219136e-01 -9.87142473e-02\\n5.67541905e-02 2.96956778e-01 4.05433059e-01 1.56943098e-01\\n4.71533574e-02 -3.97662193e-01 1.09559581e-01 1.06699608e-01\\n3.92384082e-01 2.73458868e-01 1.37981817e-01 -9.81113464e-02\\n-2.39373278e-02 2.68778980e-01 -2.07633033e-01 2.64224529e-01\\n-2.17288226e-01 7.86127374e-02 -4.73005831e-01 -3.88711005e-01\\n-2.35718265e-01 -2.67476469e-01 9.55964401e-02 2.06315786e-01\\n1.39542207e-01 -4.15066369e-02 3.40873003e-02 -4.32593286e-01\\n2.78660059e-01 7.75712505e-02 3.13747793e-01 1.62353545e-01\\n-1.47387087e-01 5.31094313e-01 -9.23211426e-02 -1.93027630e-02\\n-1.00148626e-01 1.34893343e-01 -2.40341946e-01 -1.42186627e-01\\n-5.76126687e-02 -5.16118944e-01 -7.39175379e-02 3.58045697e-01\\n1.33834869e-01 -3.27100962e-01 -2.05918342e-01 1.99233532e-01\\n-2.94661783e-02 -5.32969058e-01 -1.46249935e-01 4.08891514e-02\\n3.89277220e-01 1.20783843e-01 2.22787216e-01 -5.01138210e-01\\n6.90986076e-03 4.00661752e-02 -7.14216828e-02 4.03163612e-01\\n-6.88392371e-02 7.22995540e-03 2.91326130e-03 -2.84324795e-01\\n3.34298730e-01 -2.41863951e-01 -2.12238356e-02 4.35231403e-02\\n1.82643220e-01 -1.84244752e-01 -2.67392218e-01 -3.28050628e-02\\n-1.01621144e-01 -1.94732815e-01 -2.11356115e-02 9.28728208e-02\\n-5.55513203e-02 1.28251106e-01 -6.03217006e-01 -2.66701251e-01\\n-2.56851703e-01 -1.70726895e-01 -2.73046847e-02 -3.88177931e-01\\n-5.63815609e-03 -8.98531079e-02 -5.11775911e-01 2.94380754e-01\\n-8.52831081e-02 2.20850557e-02 2.17043966e-01 -8.43321308e-02\\n-3.31014484e-01 -1.76363513e-01 2.91098952e-01 2.31171250e-01\\n-3.23097408e-01 -1.76223069e-01 -1.07879072e-01 -9.66995060e-01\\n1.99077353e-01 1.06915655e-02 -6.90839067e-02 1.18711203e-01\\n-2.86572352e-02 -3.70634198e-01 1.82055548e-01 -5.09319782e-01\\n-9.18113440e-02 -3.87641340e-02 -3.02337617e-01 -3.81228417e-01\\n1.13231614e-01 1.85672238e-01 -2.77727932e-01 4.40083146e-01\\n-3.88970673e-01 3.21915329e-01 -2.35065687e-02 8.29701573e-02\\n-1.47689611e-01 -1.45058513e-01 5.09721562e-02 -3.35019141e-01\\n-3.69671762e-01 -9.01376382e-02 -1.43321022e-01 -1.21432342e-01\\n-4.56349030e-02 -2.64179885e-01 -1.05055653e-01 -2.61708396e-03\\n2.68238187e-01 1.43156394e-01 -1.52140945e-01 -7.02191889e-02\\n1.20972924e-01 -3.92282397e-01 -3.18160504e-02 -2.48903632e-01\\n-1.26688406e-01 -1.08237855e-01 1.46992385e-01 1.04872912e-01\\n3.54236327e-02 -3.75292987e-01 2.62142450e-01 -3.00062656e-01\\n-2.87245572e-01 9.10059437e-02 1.80830836e-01 5.76909110e-02\\n3.01194131e-01 -4.65094179e-01 -8.72469991e-02 4.44143713e-01\\n9.57387537e-02 1.40904382e-01 3.07736427e-01 -1.10900603e-01\\n-2.69042850e-01 4.30029869e-01 -3.69489223e-01 -5.09288646e-02\\n7.83908725e-01 3.38351876e-01 1.94277927e-01 2.04525501e-01\\n1.37326777e-01 3.10297310e-01 4.44158882e-01 1.19708017e-01\\n2.10691541e-02 4.54800189e-01 8.74161124e-02 -6.25064850e-01\\n6.27248585e-02 1.11879274e-01 -2.81737536e-01 -2.33830795e-01\\n6.12611711e-01 3.86091083e-01 -3.12427223e-01 -3.53459537e-01\\n-1.69712156e-01 -1.30875319e-01 2.38891542e-01 -1.44318774e-01\\n1.04649961e-01 -1.29990354e-01 4.90545720e-01 -1.06933720e-01\\n5.33149876e-02 4.58107203e-01 -2.55324900e-01 -2.50051677e-01\\n-6.25605732e-02 1.83780521e-01 1.07071139e-01 5.42647541e-01\\n-2.58609056e-01 3.29797059e-01 1.81031018e-03 2.23683327e-01\\n-1.17190361e-01 6.49629980e-02 3.58218431e-01 5.34724556e-02\\n1.39362976e-01 1.00770570e-01 2.26585850e-01 4.42650199e-01\\n2.80875623e-01 4.57783580e-01 2.31022030e-01 -2.32531372e-02\\n4.20621693e-01 4.24853265e-01 3.07903945e-01 2.23433584e-01\\n-2.98549552e-02 -7.71939233e-02 5.42614721e-02 -5.79893216e-03\\n1.99025795e-01 3.22845250e-01 4.48922664e-02 9.02114034e-01\\n3.66207510e-01 3.05928946e-01 6.80964649e-01 -6.25916004e-01\\n-4.06780779e-01 4.88804504e-02 4.54970151e-01 -4.67326999e-01\\n-1.15761392e-01 2.47231834e-02 -3.23830873e-01 1.46203905e-01\\n-5.53568959e-01 -2.17055753e-01 -1.41743705e-01 -3.95824201e-02\\n6.01592399e-02 -9.71162394e-02 -3.03052634e-01 -1.11460380e-01\\n-1.21884130e-01 -5.95332310e-02 -5.35667181e-01 -1.99593082e-01\\n-2.40810275e-01 -2.36846045e-01 -1.80764094e-01 -1.65303960e-01\\n-6.06713295e-02 -2.65615165e-01 -1.42208546e-01 2.98326034e-02\\n2.57583439e-01 -1.29467160e-01 -9.14196447e-02 -8.67619216e-02\\n1.91464648e-01 2.21810520e-01 5.27695298e-01 -1.22102991e-01\\n1.13259822e-01 -8.16389024e-02 -1.65111929e-01 5.92556484e-02\\n1.42112523e-01 6.17391169e-02 -2.76884641e-02 4.42933500e-01\\n-3.05534720e-01 -2.91576058e-01 -6.22137114e-02 3.31866473e-01\\n-5.64794004e-01 6.98598847e-02 6.28677979e-02 2.60065317e-01\\n6.28395844e-03 9.75773409e-02 -2.74697989e-01 4.44726720e-02\\n-2.29628667e-01 -4.98106003e-01 2.32364729e-01 -5.01548946e-02\\n-1.58210844e-01 8.27104971e-02 2.23257557e-01 1.51190028e-01\\n-1.45603970e-01 -2.35383749e-01 2.30863527e-03 1.16091892e-01\\n7.44408891e-02 2.37303838e-01 -2.10784853e-01 -2.89057612e-01\\n-3.27812672e-01 1.97639823e-01 -3.14291835e-01 2.05503881e-01\\n-5.88432923e-02 2.87641495e-01 1.26970172e-01 2.35756472e-01\\n2.58210897e-01 1.25476317e-02 -9.92365330e-02 -2.08201453e-01\\n-2.19911724e-01 -2.02710077e-01 1.33314148e-01 -2.05924429e-04\\n2.15275779e-01 -3.84161532e-01 -1.18480779e-01 -2.07286224e-01\\n-2.25694269e-01 -4.85371411e-01 -2.79661678e-02 -1.75728783e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Data Scientist. This role is permanent position based in Basel Canton. Your Role: Design & implement Predictive Analytics & Data Science applications. Look for solutions for the analysis & visualization of data for different problems. Act as a business enabler & advise departments on technology, methodology & operationalization. Partake in the development of new ideas & areas of application. Your Skills: Several years of professional experience as a Data Analyst or Data Scientist. Experience in the application & communication of machine learning algorithms or deep learning (e.g. GLMs, Random Forests, Support Vector Machines, Neural Networks). Sound experience in dealing with complex data structures. Good knowledge of relevant tools (R or R Studio, SQL, Python) & common BI tools (SAS VA, SAS EG, DataRobot). Your Profile: Completed University Degree with quantitative orientation (mathematics, statistics, business informatics). Very good understanding of overall corporate relationships. Strong analytical & conceptual skills & highly team & customer-oriented. Open, creative & innovative with a high level of self-initiative. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers',\n", + " '[\"Communications\", \"Creativity\", \"Innovation\", \"Positivity\"]',\n", + " '[\"E-Learning Development\", \"Tooling\", \"Advising\", \"Analytics\", \"SAS (Software)\", \"Business Statistics\", \"Mathematical Statistics\", \"Visualization\", \"Python (Programming Language)\", \"Random Forest Algorithm\", \"Business Informatics\", \"Machine Learning Methods\", \"Data Science\", \"Operationalization\", \"Conceptualization\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Deep Learning\", \"Receivables\", \"Data Structures\", \"Predictive Analytics\", \"Algorithms\", \"Support Vector Machine\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " \"['English', 'Urdu', 'Tamil', 'Ganda', 'Catalan']\"],\n", + " ['75',\n", + " 'software engineer (w/m)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.94451922e-01 2.88712293e-01 4.79655236e-01 -3.42757665e-02\\n3.94566208e-01 -1.11883506e-01 -3.18306983e-02 2.08265081e-01\\n-1.29073679e-01 -3.08327973e-01 -1.38809383e-01 -2.45947987e-01\\n-3.04558307e-01 2.12930962e-02 1.05452396e-01 3.95390332e-01\\n1.64450854e-01 7.23929852e-02 -2.84079999e-01 3.83422703e-01\\n1.03670388e-01 9.05080959e-02 -1.82524785e-01 6.36543810e-01\\n4.63715613e-01 -4.15222794e-02 -1.37389570e-01 1.21770084e-01\\n-2.58633465e-01 -3.10323417e-01 3.39382261e-01 1.16952978e-01\\n-9.63014513e-02 -1.76837996e-01 1.52718931e-01 1.60977527e-01\\n-2.22446233e-01 3.44941253e-03 -9.63980481e-02 2.30476469e-01\\n-5.72414219e-01 -4.05430108e-01 1.14465104e-02 1.21279676e-02\\n-3.51623356e-01 -1.97628260e-01 1.13612659e-01 1.25464853e-02\\n-6.48280159e-02 2.24587917e-02 -6.76585972e-01 2.87804514e-01\\n-2.37161726e-01 -2.01760456e-01 2.85778284e-01 5.04246533e-01\\n9.09196213e-02 -6.45081043e-01 -2.90141433e-01 -3.29048395e-01\\n3.87550965e-02 -5.28387353e-02 -3.74020711e-02 -2.75560379e-01\\n5.00267506e-01 -8.36459398e-02 -7.19986260e-02 3.51167381e-01\\n-8.81420970e-01 -1.63720608e-01 -2.56699204e-01 4.37843287e-03\\n-4.20008481e-01 4.67912704e-02 -2.85988867e-01 -3.46167907e-02\\n-2.57863831e-02 3.23837310e-01 -4.58000302e-02 1.35441795e-01\\n-2.80385107e-01 3.54673028e-01 -8.97599682e-02 2.56789833e-01\\n4.10343826e-01 1.16488278e-01 1.03198029e-01 3.95931512e-01\\n-4.08828914e-01 3.24235171e-01 1.33849546e-01 -3.14239830e-01\\n1.64336592e-01 2.06909537e-01 5.69321692e-01 2.72098213e-01\\n-1.28106907e-01 2.08425581e-01 -1.50531054e-01 2.47220472e-01\\n1.56453595e-01 -2.82171577e-01 9.99054313e-02 -3.90973128e-02\\n-2.13386729e-01 -3.33606191e-02 -3.39850143e-04 2.97115237e-01\\n-1.65337935e-01 3.04801702e-01 1.80861831e-01 -1.64360270e-01\\n-5.47631681e-02 -5.97316384e-01 -1.18603870e-01 -3.59033979e-02\\n9.75032747e-02 2.10459977e-01 3.05603832e-01 1.16070732e-01\\n1.82708308e-01 9.51646045e-02 1.91930830e-01 9.51175213e-01\\n-3.80824693e-02 -1.92200916e-03 -1.35267884e-01 3.17445934e-01\\n3.04273427e-01 -2.11888149e-01 1.81864515e-01 3.71508211e-01\\n1.73939422e-01 -1.09176725e-01 -3.60840440e-01 5.21579802e-01\\n-2.08924249e-01 -2.58422736e-02 -4.36502695e-01 8.36091936e-02\\n-2.54930317e-01 -4.99556124e-01 6.22847140e-01 1.38894498e-01\\n3.46470267e-01 6.94538583e-04 6.10827701e-03 -1.31122053e-01\\n-1.22452088e-01 3.10157478e-01 -3.63909714e-02 2.84927309e-01\\n-3.26196820e-01 -2.38905832e-01 -1.51871920e-01 3.39236289e-01\\n-9.53172520e-02 1.91311598e-01 -1.23283342e-02 -1.98974162e-01\\n2.82019526e-01 1.46738902e-01 -4.02581304e-01 1.47536069e-01\\n-1.28262475e-01 -3.07639152e-01 -7.97809288e-02 3.16156477e-01\\n-7.77336508e-02 2.09422037e-01 3.22482213e-02 -2.43627682e-01\\n5.90117335e-01 2.12173223e-01 1.23138964e-01 -4.55988050e-02\\n2.81528145e-01 -1.54105708e-01 3.16745400e-01 1.23499252e-01\\n-8.11372221e-01 2.87390828e-01 2.43022684e-02 -8.31407160e-02\\n5.51492311e-02 1.41617820e-01 4.11935240e-01 -4.49855983e-01\\n-1.50264204e-01 -2.51525044e-01 -5.56012809e-01 -3.81326050e-01\\n-4.27273571e-01 3.05585861e-02 4.57227260e-01 -3.24186146e-01\\n-6.29257560e-02 1.38955623e-01 -6.21518612e-01 -1.78946093e-01\\n1.39425904e-01 1.25439584e-01 1.35065034e-01 -5.01265600e-02\\n-4.48589586e-02 -7.39397645e-01 -4.88783345e-02 -5.02204716e-01\\n-6.53059781e-01 -7.08361939e-02 -3.73954058e-01 1.90239295e-01\\n4.69043516e-02 1.19213201e-01 -7.29179010e-02 9.67196822e-02\\n-4.57982510e-01 -3.44630033e-02 2.65330464e-01 1.53048247e-01\\n2.96455473e-01 -1.32059485e-01 -4.32817280e-01 4.60135937e-01\\n-2.08420262e-01 7.38423765e-01 2.72785366e-01 -8.85912895e-01\\n7.96770215e-01 2.60405153e-01 7.33994693e-02 -4.84383225e-01\\n4.43412364e-01 -3.77090782e-01 -2.45502219e-01 2.31780350e-01\\n-2.01599002e-01 -2.10446283e-01 3.07180673e-01 -2.17752069e-01\\n-3.65946293e-01 5.87624431e-01 2.56463140e-01 -4.08534557e-02\\n3.95624995e-01 -4.05463547e-01 -1.22679062e-01 -3.66899162e-03\\n-1.31733507e-01 -2.04089597e-01 -2.35976890e-01 2.44546801e-01\\n-8.06572288e-02 -5.49001634e-01 -1.42320722e-01 -3.35849106e-01\\n-1.21120311e-01 -4.39557821e-01 -2.78865635e-01 5.36614060e-01\\n6.77339286e-02 1.25205204e-01 7.72644058e-02 -7.00883195e-02\\n-1.78527720e-02 -6.56660497e-01 -2.22963706e-01 -1.90416612e-02\\n5.20841122e-01 1.91203967e-01 3.12111732e-02 -1.74477398e-01\\n-2.87167504e-02 5.80697298e-01 -4.67668772e-01 -5.00538766e-01\\n7.26829693e-02 5.11139259e-02 -6.85254335e-02 -1.13346785e-01\\n5.85114732e-02 5.09533107e-01 -2.23222956e-01 3.96335637e-03\\n-1.51398182e-01 -4.18620370e-03 2.16405272e-01 -1.36178639e-02\\n-1.43086076e-01 -2.98319340e-01 -5.57357781e-02 3.00148487e-01\\n-5.47363818e-01 -1.41328484e-01 5.46629012e-01 3.96016061e-01\\n2.53075719e-01 1.52093977e-01 4.37141746e-01 -1.70914561e-01\\n-3.19694579e-01 -3.33840102e-01 -7.46769505e-03 2.92954803e-01\\n5.37281930e-02 2.27364991e-02 -4.46245559e-02 -4.47685122e-01\\n-2.64417005e+00 -2.20171332e-01 3.39664698e-01 -2.79724270e-01\\n1.71791062e-01 -9.73650068e-02 3.49282585e-02 -3.96619961e-02\\n-3.04762125e-01 -4.49918807e-02 -2.30467573e-01 -8.82003307e-02\\n-5.55954240e-02 3.50446045e-01 1.74214244e-01 6.24148473e-02\\n2.12062132e-02 -2.72872537e-01 -1.67676374e-01 3.28157485e-01\\n-2.12868247e-02 -6.56988382e-01 1.81175455e-01 -6.16404489e-02\\n1.27567247e-01 9.20591652e-02 -3.30397964e-01 -2.55830726e-03\\n-1.78009942e-01 -2.97839761e-01 -7.05694454e-03 -2.86754519e-01\\n-1.60239667e-01 2.72332072e-01 1.23715550e-01 -3.47245410e-02\\n2.04550172e-03 -2.10132182e-01 -7.99290314e-02 -5.21965384e-01\\n6.28079996e-02 -5.72821319e-01 1.03689972e-02 -1.48849487e-01\\n6.45066142e-01 -2.85108477e-01 2.08503693e-01 9.32704434e-02\\n1.98064700e-01 1.45452008e-01 1.46923689e-02 6.87651709e-02\\n-4.41084385e-01 -3.72400105e-01 6.85887337e-02 -2.31668875e-01\\n5.66516519e-01 5.58244944e-01 -2.16827184e-01 -2.78893150e-02\\n2.18477264e-01 -3.88503730e-01 -2.93528378e-01 -6.14344537e-01\\n-1.35776356e-01 -1.84180364e-01 -8.50409925e-01 -4.69372958e-01\\n-9.20941979e-02 -1.20046854e-01 -2.34788015e-01 6.63853884e-01\\n-4.44731742e-01 -4.36461955e-01 -1.79541539e-02 -6.59527302e-01\\n1.66962564e-01 -2.32705817e-01 1.33175746e-01 -2.20617995e-01\\n-3.56607467e-01 -4.78635043e-01 1.72063828e-01 -1.73930287e-01\\n-2.34367147e-01 -1.73171848e-01 -5.98391034e-02 -3.67533207e-01\\n-2.63334870e-01 -3.56467009e-01 4.08146352e-01 1.36142522e-01\\n3.70150328e-01 1.05749793e-01 4.46379513e-01 2.48953160e-02\\n4.08709764e-01 -4.55726404e-03 7.35204965e-02 -4.01699752e-01\\n8.94271061e-02 -1.55719779e-02 5.34370422e-01 -2.85878837e-01\\n2.00207993e-01 2.67658055e-01 -2.42420167e-01 -1.25805780e-01\\n4.38407898e-01 9.53997597e-02 -1.71490274e-02 -1.77488118e-01\\n4.60936546e-01 -5.63630939e-01 -2.56460607e-01 2.57032603e-01\\n-4.43182001e-03 7.86784887e-01 1.43650725e-01 -4.37986404e-01\\n-3.11465651e-01 5.77587485e-01 -1.86038107e-01 -1.61490440e-01\\n-3.85091715e-02 1.81653276e-01 -7.83060789e-02 1.73257068e-01\\n5.44332638e-02 -2.49107495e-01 -3.02379429e-01 -8.16930756e-02\\n4.08012383e-02 1.23818658e-01 2.32871264e-01 -1.47342477e-02\\n4.78255562e-02 4.26692190e-03 -2.29151607e-01 6.68174550e-02\\n2.38976747e-01 2.73711354e-01 1.40279889e-01 -2.76432604e-01\\n-1.15706027e-01 3.74457359e-01 -2.18550250e-01 3.18009198e-01\\n-1.33570418e-01 6.35033771e-02 -4.85777318e-01 -2.14799598e-01\\n-1.46649003e-01 -3.34001541e-01 1.96599096e-01 2.65504271e-01\\n1.08771622e-01 -5.36692403e-02 1.31764725e-01 -6.10931754e-01\\n3.85548353e-01 2.32390866e-01 9.74788964e-02 1.36992875e-02\\n1.79423974e-03 5.21565914e-01 1.78289786e-02 -5.21691144e-02\\n-4.05085795e-02 -5.68163097e-02 -2.70531237e-01 -3.98385257e-01\\n1.29216030e-01 -4.65481788e-01 -1.44471183e-01 5.97691238e-01\\n1.08587168e-01 -3.11341226e-01 -3.74130070e-01 2.24345312e-01\\n2.23323554e-01 -2.31927767e-01 -1.75030783e-01 1.34659233e-02\\n1.61347121e-01 8.74023587e-02 2.10210785e-01 -3.02027702e-01\\n-1.07034348e-01 -2.37622038e-02 -1.68131337e-01 4.66236442e-01\\n3.18863392e-01 -3.95301022e-02 -2.07874313e-01 -1.70427769e-01\\n4.47603405e-01 2.11396068e-02 -6.15353100e-02 -9.43835750e-02\\n1.31282315e-01 -2.85846651e-01 -4.10807163e-01 2.24308260e-02\\n-7.08927661e-02 -1.34803385e-01 2.50950027e-02 -8.79950002e-02\\n6.83161542e-02 5.48832603e-02 -3.98496270e-01 -2.92649955e-01\\n-4.74168360e-01 -1.25644013e-01 1.60691187e-01 -3.02253127e-01\\n4.41723093e-02 -1.86971445e-02 -5.64883649e-01 2.44648069e-01\\n-3.00406545e-01 9.72415432e-02 1.32585257e-01 2.00392932e-01\\n-3.27953428e-01 -9.64241028e-02 2.82093068e-03 1.02522038e-01\\n-4.00131375e-01 -1.88460931e-01 -4.08567078e-02 -9.62030709e-01\\n9.28848982e-02 7.41461664e-02 5.67973172e-03 2.80601121e-02\\n-5.26953824e-02 -7.38703668e-01 8.04946646e-02 -3.75326484e-01\\n9.38704833e-02 9.19223651e-02 -2.21614718e-01 -3.20063442e-01\\n2.25402802e-01 -2.81244908e-02 -3.14861119e-01 4.20359999e-01\\n-5.97287118e-01 1.99475527e-01 1.33476540e-01 1.10531770e-01\\n2.73519531e-02 -1.97806925e-01 2.15876669e-01 -1.69721678e-01\\n-3.61009717e-01 -3.81908596e-01 -3.38776469e-01 -1.78632885e-01\\n7.03844279e-02 -2.96655148e-01 -2.18959838e-01 8.37817565e-02\\n4.04608071e-01 1.53595120e-01 -8.02776590e-02 -1.67518005e-01\\n1.11924246e-01 -3.73409152e-01 6.68731853e-02 -3.73279452e-01\\n-1.17954090e-02 -9.16166231e-03 1.89061910e-01 -1.68983251e-01\\n1.40729591e-01 -3.26090932e-01 5.30845582e-01 -2.36775160e-01\\n-4.24316466e-01 -3.77250314e-02 5.06704561e-02 -1.60248729e-03\\n2.29607016e-01 -4.53545332e-01 1.59035563e-01 2.92837143e-01\\n-1.54973892e-02 2.70581082e-03 3.29156697e-01 -4.65531312e-02\\n-6.94853440e-02 1.80897340e-01 -5.46628833e-01 -6.93782568e-02\\n7.71242201e-01 2.30498791e-01 3.53271025e-03 2.58054882e-01\\n1.07105821e-01 4.54410851e-01 5.49854636e-01 -1.45800456e-01\\n2.91179642e-02 1.70138896e-01 7.20451474e-02 -4.99157012e-01\\n-1.67325199e-01 -2.00526893e-01 -2.61443436e-01 -1.92220703e-01\\n5.58028698e-01 3.62255812e-01 -3.51134807e-01 -2.83111781e-01\\n4.76202630e-02 -9.89143997e-02 3.79354805e-01 -6.20207563e-02\\n-1.10904410e-01 2.62609292e-02 5.51997483e-01 3.55934650e-02\\n3.90787899e-01 5.67669630e-01 -2.48128340e-01 -4.47337985e-01\\n-1.63442388e-01 1.34954393e-01 3.16528566e-02 5.20113409e-01\\n-6.83552846e-02 3.15064013e-01 8.26360136e-02 4.53245267e-02\\n-6.40723705e-02 2.58654058e-01 2.49762625e-01 -8.95783585e-03\\n3.15026700e-01 1.12426162e-01 1.52486950e-01 6.34689271e-01\\n4.23303321e-02 4.79032218e-01 3.43819022e-01 1.16139963e-01\\n2.66479403e-01 6.64068162e-01 4.17775035e-01 2.22300068e-01\\n3.14682461e-02 9.27320421e-02 -8.48014932e-03 4.17517535e-02\\n4.39160168e-01 3.21849972e-01 3.06847513e-01 9.26698685e-01\\n2.95355082e-01 3.36329669e-01 8.13102126e-01 -8.00214350e-01\\n-4.07691002e-01 1.81957647e-01 4.78469133e-01 -3.18975359e-01\\n-1.28250793e-01 9.29368064e-02 -2.27630720e-01 3.52482229e-01\\n-4.93876427e-01 -7.05936104e-02 -9.15077794e-03 3.60119119e-02\\n-4.70120534e-02 -4.32914011e-02 -2.62629360e-01 -2.63684131e-02\\n-2.73251355e-01 -1.09856024e-01 -1.55240133e-01 -2.39006758e-01\\n-4.48880225e-01 -8.59628394e-02 -4.06479090e-02 -3.34375426e-02\\n-2.02690795e-01 -4.91483390e-01 -1.87768713e-01 1.05006039e-01\\n4.37146872e-01 -2.43087545e-01 -9.08244848e-02 -2.37111002e-01\\n-5.10944612e-02 3.68373543e-01 6.27204955e-01 -8.62507075e-02\\n1.12266839e-01 -1.14382125e-01 -2.94280767e-01 3.88912717e-03\\n5.71132489e-02 5.93680590e-02 1.90981656e-01 5.07438004e-01\\n-2.96670169e-01 -8.21104571e-02 1.78822696e-01 2.21033871e-01\\n-4.61400658e-01 -1.92521766e-01 -8.72386247e-02 3.23366404e-01\\n4.92102988e-02 2.80926496e-01 -2.94260710e-01 7.82772154e-02\\n-2.98183411e-01 -4.84718919e-01 6.19120181e-01 -1.68109179e-01\\n-8.90398175e-02 2.58658528e-01 3.19241762e-01 2.14343160e-01\\n-2.43808001e-01 -1.15404204e-01 3.30715999e-02 4.36267644e-01\\n-1.48036882e-01 5.27615011e-01 -1.95877090e-01 -2.61826906e-02\\n-2.52834052e-01 2.58946627e-01 -1.67042553e-01 2.18692049e-01\\n-6.48731738e-02 3.39756668e-01 5.18625267e-02 -4.01512310e-02\\n2.41217628e-01 8.69773924e-02 -2.01392874e-01 -2.42401674e-01\\n-2.22477540e-01 -3.69373590e-01 1.76988050e-01 -1.74670406e-02\\n1.57323092e-01 -3.86331558e-01 -6.09693117e-02 -8.81638974e-02\\n-1.56940773e-01 -3.89345735e-01 -3.24429125e-01 1.36613205e-01]]',\n", + " 'Job Informationen Your tasks: Design and build complex data processing pipelines and data-centric systems Build tools and components for data ingestion and data transformation Develop machine learning modules for various forms of data and modalities Systematically work towards strict metrics (performance, resource usage, reliability) Work within a talented and fast-paced team of engineers Your profile: 1-3 years of experience in building large scale distributed systems In-depth understanding of concepts such as algorithms, networking and internet technology Deep knowledge in Scala, Java, or C++ and Python, Bash, or Perl Knowledge of databases and messaging systems (e.g. Couchbase, Kafka) Knowledge of modern architectural patterns e.g. REST, microservices, stream processing Knowledge of a batch processing framework e.g. Spark, Hadoop Experience with version control systems (e.g. Git) and cloud technologies (e.g. AWS) Interest in large scale data mining and machine learning is desirable Knowledge of client-side technologies (e.g. JavaScript, Angular, React) is a plus Bachelor/MSci/PhD degree in Computer Science or equivalent Ability to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala JAVA C++ Python Python Bash Perl Python JavaScript Angular Englisch',\n", + " '[\"Communications\", \"Reliability\"]',\n", + " '[\"Control Systems\", \"Distributed File Systems\", \"Python Server Pages\", \"Knowledge Process Outsourcing\", \"Computer Science\", \"Perl (Programming Language)\", \"Message Handling Systems\", \"Build Tools\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Version Control\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Transformation\", \"Microservices\", \"Pipelining\", \"React.js\", \"Machine Learning Methods\", \"Stream Processing\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Bash (Scripting Language)\", \"Architectural Patterns\", \"Electronic Data Processing\", \"Data Mining\", \"Java Data Mining\", \"Angular (Web Framework)\", \"Modulation\", \"Batch Processing\", \"Resourcing\", \"Algorithms\", \"Git Flow\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"Data Ingestion\", \"Cloud Technologies\"]',\n", + " \"['English', 'Turkmen', 'Bengali', 'Irish', 'Pali']\"],\n", + " ['4',\n", + " 'control software engineer - traction applications',\n", + " 'Turgi',\n", + " 'Electrical & Electronic Manufacturing',\n", + " 'www.abb.com',\n", + " '[[ 1.27941638e-01 1.04208589e-01 5.02936244e-01 -7.02222586e-02\\n3.28796089e-01 -1.84860945e-01 1.36446714e-01 3.66486758e-01\\n-1.07214510e-01 -5.52111864e-01 1.49877602e-02 -3.19612175e-01\\n-3.58978249e-02 2.98363537e-01 3.48750576e-02 3.85390818e-01\\n1.74057066e-01 1.69013023e-01 -1.05473533e-01 3.46250325e-01\\n2.53397971e-01 -4.80924640e-03 3.63806576e-01 7.60651529e-01\\n5.10873914e-01 -3.37455049e-02 -2.41154823e-02 6.14154385e-04\\n-1.36045724e-01 -1.73095897e-01 4.13118452e-01 -6.07481785e-02\\n4.08810079e-02 -3.12392443e-01 9.62288082e-02 -1.56803399e-01\\n-2.51072407e-01 -3.37139070e-01 1.14097431e-01 2.95588285e-01\\n-5.58076560e-01 -3.84142518e-01 -7.34925121e-02 1.16630597e-02\\n-1.88550055e-01 -2.49576658e-01 3.42000425e-02 5.54808453e-02\\n3.07706833e-01 4.34531318e-03 -4.15546149e-01 2.83207536e-01\\n-3.09020579e-02 -1.13187686e-01 1.49148718e-01 5.06209671e-01\\n-9.75675732e-02 -3.22972476e-01 -4.12501037e-01 -2.54543006e-01\\n1.08154573e-01 5.87871857e-02 8.41377750e-02 -2.84544855e-01\\n2.33281031e-01 2.00475827e-01 6.48125559e-02 4.21049654e-01\\n-7.74961770e-01 -1.59693375e-01 -1.83447227e-01 -1.99853957e-01\\n-8.68592933e-02 -1.00915782e-01 -1.30245551e-01 -1.63973019e-01\\n-2.36774132e-01 4.79152143e-01 1.08106971e-01 -6.06128089e-02\\n-8.33210349e-02 3.86654109e-01 -1.89083412e-01 3.90937030e-01\\n1.68607488e-01 3.40837985e-01 6.38074353e-02 1.60879463e-01\\n-2.68321455e-01 5.55066109e-01 -4.10661064e-02 -2.96081543e-01\\n2.16929704e-01 1.56272918e-01 4.63058323e-01 -3.58474165e-01\\n2.04941273e-01 -2.18299091e-01 -3.82326484e-01 3.85489196e-01\\n1.55657545e-01 -2.22336382e-01 2.01173574e-01 -7.40383789e-02\\n-8.47497582e-02 9.07416120e-02 8.31178427e-02 1.40176162e-01\\n-2.19287440e-01 4.17576015e-01 1.53219119e-01 -1.26878470e-01\\n-1.87408060e-01 -4.54358697e-01 -6.89500617e-03 -8.81515536e-03\\n2.41456777e-01 8.63354579e-02 1.33685812e-01 8.95515084e-02\\n2.54803717e-01 -1.28679961e-01 1.68719783e-01 7.09481835e-01\\n-3.21145132e-02 4.14338447e-02 -2.25505054e-01 2.03644395e-01\\n-9.14929528e-03 -2.94906199e-01 3.67103875e-01 2.91851908e-01\\n-6.41124174e-02 -2.42998183e-01 -2.26995289e-01 3.15706223e-01\\n4.25682776e-02 -2.23649397e-01 -1.72195554e-01 2.19157130e-01\\n-2.89882068e-02 -3.67987990e-01 6.64139390e-01 9.25463438e-02\\n1.40526146e-01 -1.10294543e-01 -5.20143732e-02 -1.30121842e-01\\n-1.10380895e-01 1.14472784e-01 4.97846529e-02 -1.34830102e-01\\n-2.13072613e-01 -2.13014692e-01 -2.23283187e-01 -9.99848470e-02\\n-2.06248790e-01 1.42980516e-01 -4.37393822e-02 6.14479259e-02\\n1.79708406e-01 -1.82131883e-02 -1.49025768e-01 3.87838274e-01\\n-1.37900934e-01 4.47326824e-02 1.09474301e-01 1.64628237e-01\\n-2.96373725e-01 1.22762464e-01 -1.48643807e-01 -2.49756098e-01\\n5.04154801e-01 6.54271394e-02 8.69186446e-02 1.06178522e-01\\n3.17419112e-01 -3.61420624e-02 -2.96618007e-02 1.33820996e-01\\n-7.61161447e-01 2.75321305e-01 -3.78625393e-02 -1.05766281e-01\\n2.34149367e-01 -9.72538367e-02 2.19240502e-01 -5.73268197e-02\\n7.01940805e-02 -1.09355077e-01 -3.27697009e-01 -2.75818676e-01\\n-5.44577837e-02 -4.41970453e-02 3.92697364e-01 -3.16745043e-01\\n-1.66462615e-01 2.91078407e-02 -3.63382906e-01 -1.95814185e-02\\n6.71065375e-02 1.71613604e-01 2.38372475e-01 1.12460241e-01\\n-2.46660024e-01 -1.53318286e-01 1.13374986e-01 -2.86465228e-01\\n-8.93836319e-02 -1.25122622e-01 -2.87901670e-01 2.22790048e-01\\n5.72308265e-02 -3.48185911e-03 -1.48837581e-01 -8.79647285e-02\\n3.13894674e-02 -1.11982010e-01 3.18125896e-02 -1.93875059e-02\\n1.78710341e-01 9.84959584e-03 -4.38370407e-01 2.03010589e-01\\n1.13077788e-03 5.32300711e-01 7.46816443e-03 -6.66972399e-01\\n3.05053473e-01 3.35856736e-01 4.62568402e-02 -3.61843616e-01\\n5.47922850e-01 -1.26336038e-01 -9.03926045e-02 1.05855197e-01\\n-4.49575633e-01 -3.65863025e-01 2.30997711e-01 -2.29096994e-01\\n-1.58150390e-01 3.88977557e-01 1.59848735e-01 2.71965861e-01\\n5.13967201e-02 -4.21923064e-02 3.03896014e-02 9.42641199e-02\\n4.90152556e-03 -2.53129154e-01 -4.43360806e-01 -1.92371294e-01\\n8.91374482e-04 -3.03328604e-01 -1.30850673e-01 -3.89661938e-01\\n-1.52098894e-01 -3.09668869e-01 -7.43452311e-02 1.22019276e-01\\n3.42910349e-01 -7.08753392e-02 7.86502436e-02 4.88435267e-04\\n-2.27955028e-01 -4.91899490e-01 -6.20700866e-02 1.49062678e-01\\n4.94136453e-01 1.84042424e-01 4.78958562e-02 1.14385001e-01\\n3.41329090e-02 6.67155623e-01 -6.71893135e-02 -7.41044618e-03\\n3.17222118e-01 2.56792545e-01 1.23322479e-01 -8.82646441e-02\\n3.24193202e-02 3.07498157e-01 -2.42829561e-01 4.74207401e-02\\n-2.30444949e-02 7.27557093e-02 4.03348029e-01 2.03796998e-01\\n-2.52563328e-01 -1.91250488e-01 -1.03249565e-01 1.68217486e-03\\n-3.44477922e-01 -9.84110013e-02 5.44767618e-01 1.72253430e-01\\n1.57438770e-01 1.76779404e-01 1.91060990e-01 8.22802633e-02\\n-1.49049878e-01 -1.72565460e-01 7.35452026e-02 1.19380288e-01\\n1.48007125e-01 2.25408241e-01 -1.51359281e-02 -4.77109551e-01\\n-3.29352450e+00 -1.15252450e-01 9.74723622e-02 -2.37235934e-01\\n2.37883285e-01 -2.52117254e-02 6.63468465e-02 -6.65298030e-02\\n-3.12656999e-01 4.27756235e-02 -2.26148546e-01 -1.22639790e-01\\n3.34459811e-01 6.26738667e-02 7.34553337e-02 2.42100641e-01\\n1.70706868e-01 -2.67434955e-01 -1.27445042e-01 3.88151646e-01\\n-1.43990934e-01 -4.99152571e-01 1.72619015e-01 -5.28722368e-02\\n4.02721703e-01 1.90359607e-01 -3.13590944e-01 -9.71098989e-02\\n-1.42797381e-01 -1.25452831e-01 1.69232085e-01 -3.34048152e-01\\n-1.54027730e-01 2.55576760e-01 2.16375649e-01 -2.19714969e-01\\n2.07419395e-01 -4.31166261e-01 -1.94617569e-01 -2.61441886e-01\\n7.65423179e-02 -5.80603242e-01 -1.19056888e-01 -6.13782369e-02\\n6.90045059e-01 -2.77852267e-01 6.21462166e-02 3.99920382e-02\\n1.15454480e-01 2.78057873e-01 1.39917284e-01 5.09874225e-02\\n-2.03945264e-02 -3.91398847e-01 3.40020508e-02 -5.53668253e-02\\n3.71071905e-01 5.03852129e-01 -1.42286152e-01 -2.13713199e-01\\n9.35208127e-02 -5.38961440e-02 -3.98481905e-01 -1.13849439e-01\\n-1.69111162e-01 -3.11486989e-01 -6.14868462e-01 -4.42550898e-01\\n-7.10176677e-02 -1.66579768e-01 -2.01425493e-01 5.80610454e-01\\n-3.29478770e-01 -3.65234047e-01 1.06477446e-03 -3.44173551e-01\\n3.02796632e-01 -1.11219332e-01 2.11984329e-02 -1.34365633e-01\\n-2.53923625e-01 -3.21629345e-01 -6.46225885e-02 1.05557837e-01\\n2.54017510e-03 -2.35101879e-01 2.68679410e-01 -1.77175224e-01\\n-2.68009633e-01 -4.03794944e-01 3.29046726e-01 1.80561215e-01\\n1.28400981e-01 1.54093534e-01 2.63248265e-01 -5.79202324e-02\\n1.34102702e-01 -5.43665104e-02 2.45370679e-02 -3.23811084e-01\\n2.31778592e-01 5.42934202e-02 4.37971234e-01 -2.84160912e-01\\n-6.58356175e-02 -4.09579203e-02 -3.20900947e-01 -1.16975084e-01\\n1.93390325e-01 -6.97465837e-02 1.83564112e-01 -1.78345069e-01\\n1.51658952e-01 -2.94683814e-01 -2.53237914e-02 -8.48148912e-02\\n1.16027452e-01 5.11505961e-01 -1.12022355e-01 -3.02086204e-01\\n-1.36085510e-01 3.86389256e-01 -1.92726642e-01 -4.05950621e-02\\n-1.27205148e-01 1.23424895e-01 -2.19243869e-01 2.26247847e-01\\n-2.01157983e-02 -1.74714148e-01 -1.27479494e-01 -1.61235973e-01\\n-2.80247182e-01 3.04358959e-01 2.36515522e-01 5.37997596e-02\\n6.01178408e-02 -5.47598541e-01 -1.01652823e-01 2.21282125e-01\\n2.28435829e-01 4.61527705e-01 -2.78287549e-02 -1.80615559e-01\\n1.09480813e-01 4.46080178e-01 -1.77985460e-01 1.83807909e-01\\n-2.23948628e-01 3.70942093e-02 -3.03936064e-01 -2.58550882e-01\\n-3.32082510e-01 -3.72500032e-01 1.51883289e-01 3.17551166e-01\\n2.31204674e-01 -9.15679783e-02 2.06595957e-02 -4.29503769e-01\\n1.22757278e-01 -2.49126391e-03 1.67261183e-01 1.50806502e-01\\n-3.09255905e-02 4.64222789e-01 7.63714164e-02 -3.47498745e-01\\n-7.18814833e-03 -1.83428153e-01 -2.21719325e-01 5.80273336e-03\\n1.51722636e-02 -4.52019602e-01 -1.98103294e-01 4.81495678e-01\\n-1.81460008e-03 -4.42495108e-01 1.65523831e-02 2.88651258e-01\\n-1.12399869e-01 -1.56076059e-01 -2.26258099e-01 7.50443488e-02\\n2.69099832e-01 5.61237149e-02 3.31588000e-01 -4.64657933e-01\\n-4.73159291e-02 3.63019332e-02 -1.69987872e-01 4.35136348e-01\\n-5.86446375e-03 -7.01433569e-02 -3.74563009e-01 -2.92578787e-01\\n3.11832696e-01 -3.38440299e-01 -4.20743525e-02 1.67710647e-01\\n-4.66685407e-02 -1.03437297e-01 -6.18318915e-01 1.27690220e-02\\n-3.33449729e-02 -1.39523029e-01 3.40044312e-02 2.38431156e-01\\n1.28316388e-01 8.92876014e-02 -4.80585992e-01 -2.56557316e-01\\n-1.22974321e-01 3.41378041e-02 1.34486154e-01 -4.65917230e-01\\n-1.43022239e-01 -1.65571824e-01 -4.61083442e-01 1.69172391e-01\\n-1.75642237e-01 -1.34486005e-01 2.38955498e-01 -8.71101767e-02\\n-2.59848207e-01 6.53533340e-02 -6.81285784e-02 2.26555109e-01\\n-2.16677889e-01 -2.39699990e-01 -2.21365932e-02 -9.47338045e-01\\n2.07318425e-01 -5.70622683e-02 -1.06588408e-01 8.15362260e-02\\n-1.65985629e-01 -5.02763331e-01 -5.24537712e-02 -2.81802893e-01\\n-8.25889632e-02 -1.99180126e-01 -1.43265486e-01 -5.16529977e-01\\n1.00836098e-01 9.41019058e-02 -2.34200999e-01 3.66281986e-01\\n-1.34780601e-01 2.60599852e-01 -2.03730449e-01 4.50681262e-02\\n-1.81380555e-01 -3.92781645e-01 1.71714991e-01 -4.04635608e-01\\n-3.72197598e-01 -6.28055856e-02 -2.15686724e-01 -1.90642387e-01\\n-1.97513774e-01 -7.87488818e-02 -8.71785581e-02 1.57174453e-01\\n9.71390679e-02 -4.20378931e-02 -1.94389254e-01 -2.52539963e-01\\n9.72546041e-02 -5.30010939e-01 1.60587251e-01 1.98818371e-01\\n-1.52106568e-01 -6.40492216e-02 1.20054103e-01 1.22694179e-01\\n6.28878316e-03 -4.30599511e-01 1.56562403e-01 -5.21525025e-01\\n-3.25845659e-01 1.34372458e-01 -9.94451344e-04 -1.71263441e-02\\n3.55822980e-01 -3.16954821e-01 1.53173367e-02 2.70236522e-01\\n1.96636841e-02 1.40090734e-01 2.35059366e-01 -6.40647337e-02\\n-1.98783904e-01 2.63256371e-01 -1.58248961e-01 8.44380930e-02\\n7.29998767e-01 3.02921496e-02 1.12384558e-01 2.44730487e-01\\n8.22447762e-02 2.02869087e-01 2.82553285e-01 4.24147621e-02\\n-1.59584403e-01 1.47236258e-01 6.66650310e-02 -4.56389725e-01\\n-1.63728148e-02 6.92824572e-02 -2.23593995e-01 -4.10660088e-01\\n4.95097339e-01 5.72717905e-01 -4.53462034e-01 -1.38126865e-01\\n-1.62413448e-01 -1.27456620e-01 -5.52869998e-02 -4.01944593e-02\\n4.81797978e-02 4.25202250e-02 4.37882513e-01 -8.92557725e-02\\n1.12893417e-01 3.67509186e-01 -2.12363243e-01 -2.90394574e-01\\n-1.24666795e-01 2.02881902e-01 -1.43748552e-01 4.36694801e-01\\n-2.59533107e-01 4.40635622e-01 4.31438871e-02 2.84493584e-02\\n5.42890579e-02 6.07826263e-02 1.65582653e-02 8.17053765e-02\\n-6.97494522e-02 2.04621613e-01 3.78866553e-01 2.65078098e-01\\n4.12533790e-01 2.33281374e-01 2.39463031e-01 1.91259384e-01\\n4.52321410e-01 3.55183721e-01 2.23284915e-01 1.84441701e-01\\n-4.47473116e-02 -7.56550059e-02 1.23457819e-01 -4.60812496e-03\\n3.20152789e-01 1.72502041e-01 -5.92112076e-03 7.86928713e-01\\n2.07019210e-01 2.76441813e-01 6.29145443e-01 -5.30521274e-01\\n-3.14077348e-01 -1.36776746e-03 2.44431913e-01 -4.44484085e-01\\n-8.81904066e-02 1.84538271e-02 1.33058578e-01 1.50482357e-01\\n-3.44941199e-01 -1.95382938e-01 -1.04180366e-01 3.82777870e-01\\n1.05667189e-01 -3.39206338e-01 -2.38872692e-01 3.76401804e-02\\n-8.25453103e-02 -5.22907227e-02 -6.53713524e-01 -1.44205213e-01\\n-1.04137316e-01 -3.35317165e-01 -1.69073030e-01 -2.31888101e-01\\n-1.43805936e-01 -3.06127548e-01 6.00005724e-02 5.41137792e-02\\n1.35200784e-01 1.30848978e-02 1.49247125e-02 -1.70322448e-01\\n4.09270197e-01 1.33807018e-01 4.29144114e-01 -4.43502516e-02\\n1.31734744e-01 -1.83899045e-01 -2.25355014e-01 4.39996831e-02\\n3.65627408e-01 3.34873721e-02 1.88230705e-02 1.41860411e-01\\n-1.75433487e-01 -3.25554493e-03 2.56280955e-02 2.89823115e-01\\n-5.14896870e-01 1.50955364e-01 -9.75443721e-02 1.80171922e-01\\n1.68763593e-01 6.88201562e-02 -2.20944643e-01 7.07930513e-03\\n-2.00032353e-01 -3.14458966e-01 1.09761730e-01 1.09630384e-01\\n-2.29861215e-01 8.28039646e-02 3.66775542e-02 2.30058178e-01\\n-2.47346103e-01 -1.78360678e-02 -3.77556011e-02 7.48175606e-02\\n9.72928852e-02 2.33856514e-01 -1.66697457e-01 -3.21782231e-01\\n-2.03872770e-01 1.26747563e-02 -2.91535795e-01 9.03829634e-02\\n5.30078597e-02 2.75159329e-01 1.03877537e-01 4.46226932e-02\\n4.20177907e-01 -1.89449355e-01 -1.26977488e-01 -5.81302457e-02\\n-1.87608868e-01 -2.33863786e-01 -7.69748017e-02 -3.20217721e-02\\n6.49575889e-02 -2.94131428e-01 7.67793357e-02 -1.70512632e-01\\n-9.78299975e-02 -2.29860932e-01 1.32863969e-01 -2.30105340e-01]]',\n", + " 'Within our competence center for traction, we have a leading position in the development of control SW for traction and auxiliary converters for locomotives, high-speed trains, trams, subways and buses. We are looking for a passionate Control Engineer (m/f/d) eager to execute a SW project from the requirements to the first ride of a vehicle, to strengthen our motivated multidisciplinary Engineering team in Turgi. If you show great interest in control systems, power electronics and transportation systems, and look forward to make a train move, this is you opportunity to make a remarkable impact.Your responsibilitiesYour backgroundMore about usBring your very own sense of pride and purpose as you help us drive forward the Fourth Industrial Revolution – creating a sustainable future for our planet, and your career. Join ABB and harness the power of our diverse global network, as you collaborate with and learn from our world-class teams. Above all, challenge yourself every day. Let’s write the future, together. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Katharina Brettschneider Talent Partner Phone +41 79 627 94 59 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer',\n", + " '[\"Collaboration\", \"Writing\", \"Positivity\"]',\n", + " '[\"Control Systems\", \"Tooling\", \"Locomotive\", \"Control Engineering\", \"Library For WWW In Perl\", \"Electronics\", \"Component Object Model (COM)\", \"Centering\", \"M (Programming Language)\", \"Transportation Management Systems\", \"Sustainability\", \"Executable\", \"Receivables\", \"Controllability\", \"Industrialization\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'software development engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " '[\"\"]',\n", + " '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " \"['English', 'Burmese', 'Maldivian', 'English']\"],\n", + " ['56',\n", + " 'data scientist',\n", + " 'Zug',\n", + " 'Staffing & Outsourcing',\n", + " 'www.phaidoninternational.com/glocomms.aspx',\n", + " '[[-2.43850529e-01 2.72382528e-01 3.62147003e-01 1.05475143e-01\\n5.64463675e-01 -1.36005789e-01 -7.97749981e-02 3.20982099e-01\\n7.00121298e-02 -2.56747305e-01 -3.33801773e-03 -1.81914911e-01\\n-3.01793357e-03 5.88430241e-02 1.67581603e-01 4.78291273e-01\\n2.50651270e-01 6.83366656e-02 -6.38039038e-02 2.98699737e-01\\n1.69551070e-03 -2.10584506e-01 1.16742834e-01 6.95309639e-01\\n3.73485208e-01 -9.93378460e-02 -2.86191031e-02 -2.26225648e-02\\n-2.09341496e-01 -1.70963928e-01 4.46187168e-01 1.22594208e-01\\n-1.60163030e-01 -3.64637703e-01 6.59125745e-02 2.72816569e-01\\n-1.73772693e-01 4.33069328e-03 -1.70025185e-01 1.87668264e-01\\n-6.37780666e-01 -2.24600852e-01 3.15788239e-02 3.25679742e-02\\n-2.64658421e-01 -3.31989199e-01 1.73136458e-01 -3.12138021e-01\\n1.62450895e-01 1.35466412e-01 -5.39620101e-01 2.93552250e-01\\n-1.52373180e-01 -2.07093105e-01 3.82038295e-01 8.26367855e-01\\n1.05613142e-01 -5.60269713e-01 -5.11658370e-01 -3.11751783e-01\\n5.57976216e-02 -5.40161878e-02 6.28475845e-02 -3.39826584e-01\\n3.87359649e-01 -3.85149717e-02 7.83635080e-02 2.98169792e-01\\n-9.26566720e-01 -6.96198046e-02 -3.49127173e-01 1.34709433e-01\\n-3.81575137e-01 1.08675584e-01 -4.08447564e-01 -1.27913892e-01\\n-4.11687717e-02 3.97567540e-01 -5.39579466e-02 -7.77283683e-03\\n-2.06363127e-01 3.65156025e-01 -2.19555318e-01 2.70897746e-01\\n1.86108217e-01 2.32588112e-01 3.69884878e-01 2.78127044e-01\\n-3.73297274e-01 4.29723799e-01 2.22982034e-01 -2.66123265e-01\\n1.35260642e-01 8.37609097e-02 3.62701952e-01 1.94892883e-01\\n1.45441338e-01 2.17828915e-01 -2.88162589e-01 2.57139117e-01\\n2.82066554e-01 -2.59716183e-01 6.29792735e-02 -3.00702415e-02\\n6.37997389e-02 -3.43253836e-02 3.28811407e-02 8.16944242e-02\\n-3.81973833e-01 4.96595234e-01 8.12670141e-02 -2.19080940e-01\\n-1.15777887e-01 -5.79535007e-01 -1.71813115e-01 -5.45661636e-02\\n-5.79157621e-02 2.28720114e-01 1.20699584e-01 1.88114822e-01\\n2.61237115e-01 -9.20869559e-02 1.45063654e-01 8.13448310e-01\\n-9.41360965e-02 1.21746443e-01 -2.12254316e-01 3.10446769e-01\\n1.26127884e-01 -1.72471181e-01 2.14116320e-01 1.49413705e-01\\n3.79176438e-02 -1.58837706e-01 -3.32935214e-01 2.83023149e-01\\n-9.75927785e-02 -3.00291330e-01 -1.77671596e-01 3.49228263e-01\\n-5.35644144e-02 -5.85494161e-01 5.81192553e-01 -1.32777676e-01\\n1.99040964e-01 -1.00312486e-01 3.55289318e-02 -9.30498913e-02\\n-1.19858712e-01 3.02397430e-01 2.09428623e-01 1.63650811e-01\\n-1.98487759e-01 -1.85870439e-01 -8.51463079e-02 1.16189808e-01\\n-3.53211015e-01 8.90952647e-02 -2.14338258e-01 -1.21770397e-01\\n2.62857169e-01 1.43834144e-01 -3.57174248e-01 2.18979314e-01\\n-4.20053042e-02 -8.41410384e-02 -9.89966094e-02 3.20923448e-01\\n-2.49654874e-01 1.73336953e-01 -6.64294884e-02 -9.89985541e-02\\n6.56273544e-01 1.34154439e-01 3.20822060e-01 -1.09228324e-02\\n2.03662559e-01 -1.51451319e-01 3.31298858e-01 9.67081711e-02\\n-5.35336852e-01 4.78398025e-01 -7.16215523e-04 -3.02792102e-01\\n1.69815183e-01 -1.83978125e-01 4.79793698e-01 -3.77524436e-01\\n-2.68557481e-02 -2.77238429e-01 -3.21093231e-01 -3.63560349e-01\\n-2.63020784e-01 4.16784622e-02 3.27338278e-01 -4.36502606e-01\\n1.64414290e-02 3.43017548e-01 -6.18737221e-01 -2.86641061e-01\\n2.96165138e-01 1.52597904e-01 1.35270089e-01 1.23531483e-01\\n-1.39679998e-01 -6.66829288e-01 1.56150430e-01 -5.00757039e-01\\n-1.76749721e-01 1.21509545e-01 -2.60893375e-01 1.33992389e-01\\n-6.02664240e-02 5.14141023e-02 -9.33573768e-02 6.55213669e-02\\n-3.23407680e-01 1.08655684e-01 8.73041004e-02 7.32605383e-02\\n1.78943813e-01 1.13789342e-01 -5.53216755e-01 5.04407823e-01\\n-2.55804956e-01 4.83793527e-01 1.46183327e-01 -9.63343799e-01\\n5.13147175e-01 3.79610121e-01 2.92164944e-02 -1.97259262e-01\\n5.40556788e-01 -4.44336414e-01 -1.22041523e-01 4.86278646e-02\\n-3.54164958e-01 -1.94933206e-01 1.01445422e-01 -3.01939666e-01\\n-2.66051650e-01 6.12073958e-01 1.60637438e-01 1.27407983e-01\\n3.39424223e-01 -2.31475636e-01 -9.62576568e-02 1.60680249e-01\\n-2.26525903e-01 -1.65506706e-01 -6.35044277e-01 -1.74697433e-02\\n-7.15988353e-02 -5.10976434e-01 -1.24433510e-01 -3.23743105e-01\\n-2.58413464e-01 -4.07691896e-01 -2.11143151e-01 2.00545043e-01\\n2.70961016e-01 2.60867357e-01 -9.81855392e-02 9.75872800e-02\\n-1.23960227e-01 -7.80403256e-01 3.50281992e-03 8.61764252e-02\\n3.53683203e-01 3.99075419e-01 2.29886040e-01 -5.29030189e-02\\n4.52257954e-02 5.61226726e-01 -3.81750643e-01 -3.78307164e-01\\n1.13503739e-01 7.88936391e-02 -6.85070604e-02 -5.15254103e-02\\n2.85132438e-01 3.36881906e-01 -1.94728971e-01 1.01161651e-01\\n-1.19850866e-01 -9.67890397e-02 2.97172636e-01 1.12477466e-01\\n-1.68030471e-01 -1.22799180e-01 -1.63861305e-01 2.35652477e-01\\n-5.63314915e-01 -2.98052669e-01 4.32404011e-01 1.00311108e-01\\n2.42228523e-01 1.93332449e-01 2.35067561e-01 -9.51571986e-02\\n-2.79952109e-01 -3.41685534e-01 2.94771582e-01 1.26878619e-01\\n3.06313951e-02 1.88196585e-01 -7.79700130e-02 -7.69452333e-01\\n-3.26738048e+00 -1.17610060e-01 1.44666389e-01 -3.37748826e-01\\n3.36311072e-01 -8.24564099e-02 1.90780729e-01 -1.19002141e-01\\n-4.81176555e-01 8.37949887e-02 -1.50720865e-01 -2.69731909e-01\\n7.91124105e-02 2.38895401e-01 6.84149340e-02 2.86286697e-02\\n1.24511123e-01 -2.60523289e-01 1.46958038e-01 4.46605325e-01\\n6.64213449e-02 -7.23788619e-01 2.58407257e-02 1.44612268e-01\\n2.28841648e-01 2.24391386e-01 -5.36884665e-01 -7.39601925e-02\\n-3.09318006e-01 -2.81050891e-01 2.26245493e-01 -2.75615603e-01\\n-2.44657949e-01 3.25839996e-01 1.42976224e-01 -3.07582528e-03\\n-1.43230423e-01 -3.24347079e-01 1.18891140e-02 -5.28429925e-01\\n-2.66389977e-02 -7.59601057e-01 -7.53687844e-02 -5.63643053e-02\\n6.56921983e-01 -1.40513420e-01 1.69696614e-01 9.14302096e-02\\n1.08431607e-01 1.15630507e-01 1.77412510e-01 -6.54945895e-02\\n-3.32731128e-01 -2.43374318e-01 -1.38110653e-01 -1.37589321e-01\\n6.96955740e-01 4.76287931e-01 -2.92357504e-01 6.21324293e-02\\n9.66615826e-02 -3.59287024e-01 -6.19372904e-01 -3.07691276e-01\\n-1.94353431e-01 -1.99992642e-01 -6.01565003e-01 -4.03093070e-01\\n-1.36661977e-01 -7.44081512e-02 -1.38471738e-01 6.21421278e-01\\n-2.71957934e-01 -3.61536771e-01 7.95432106e-02 -6.37106121e-01\\n2.53667623e-01 -2.60403126e-01 1.02174982e-01 -2.30818659e-01\\n-2.14336798e-01 -4.37831253e-01 1.36056080e-01 -1.17772147e-01\\n-6.21851459e-02 -5.46280518e-02 -3.29739861e-02 -6.28234670e-02\\n-4.86583054e-01 -6.86969876e-01 3.90172333e-01 1.70640107e-02\\n4.06295419e-01 2.34438423e-02 3.58805656e-01 5.16257808e-02\\n4.64477569e-01 -5.81429303e-02 5.89636341e-02 -4.36757833e-01\\n-1.25927716e-01 3.28663811e-02 6.51546180e-01 -2.34495461e-01\\n4.62362245e-02 1.13913596e-01 -2.86443949e-01 -7.48510361e-02\\n3.76095623e-01 9.84011497e-03 1.30212009e-01 -2.20719367e-01\\n3.46312493e-01 -3.22938055e-01 -2.88815022e-01 8.52636173e-02\\n1.64637700e-01 7.89097190e-01 1.55971237e-02 -2.76066899e-01\\n-1.30564108e-01 3.28703344e-01 -1.40276924e-01 -9.85523909e-02\\n-1.22373186e-01 1.57776382e-02 -2.13591591e-01 2.79544741e-01\\n-3.15763541e-02 -9.88143533e-02 -1.00128807e-01 -1.27904713e-01\\n-8.38536173e-02 3.79791796e-01 1.90437883e-01 -4.98168394e-02\\n-9.52559263e-02 -3.47650200e-01 -4.52565104e-02 2.85066128e-01\\n1.35905996e-01 3.63063216e-01 1.82572782e-01 -4.06804979e-01\\n-1.27159655e-01 2.61775821e-01 -2.24580228e-01 2.61292517e-01\\n-1.68971270e-01 1.07020378e-01 -6.89511240e-01 -7.33009949e-02\\n-3.28658134e-01 -4.87498581e-01 1.87993959e-01 3.39663953e-01\\n2.38291472e-01 -7.77997151e-02 1.58676237e-01 -6.41616404e-01\\n2.39525512e-01 8.86092633e-02 1.26880914e-01 2.80024484e-02\\n-1.45570114e-01 6.31494462e-01 -8.91211778e-02 -1.12110853e-01\\n-8.60677753e-03 3.67985517e-02 -2.56583184e-01 -4.09336001e-01\\n9.20334309e-02 -4.92167860e-01 -1.83216080e-01 5.52001417e-01\\n2.78142869e-01 -4.95845340e-02 -2.71187097e-01 2.03503102e-01\\n-7.86889121e-02 -4.58583087e-01 -2.55320847e-01 -2.19630569e-01\\n2.89400429e-01 1.89087823e-01 2.84948021e-01 -3.79012227e-01\\n-6.48970064e-03 -1.98406372e-02 -3.82564589e-02 3.83191496e-01\\n2.35920064e-02 8.24545845e-02 -1.57476142e-01 -4.00657319e-02\\n5.63553452e-01 5.82613498e-02 2.62945127e-02 3.58967222e-02\\n1.24737144e-01 -3.30783635e-01 -3.98074895e-01 1.73217058e-02\\n-5.09219710e-03 -2.54495949e-01 -1.75954960e-02 1.42933398e-01\\n3.57584679e-03 -7.09487274e-02 -5.81179976e-01 -1.44679323e-01\\n-2.37297967e-01 -6.64288849e-02 1.42469823e-01 -5.17425656e-01\\n-8.05905908e-02 -4.51423600e-02 -5.50664544e-01 2.94775337e-01\\n-1.27707079e-01 -5.92567585e-02 4.27636877e-02 7.07370266e-02\\n-3.01363945e-01 -1.84705570e-01 8.41935724e-02 1.33786306e-01\\n-3.64597738e-01 -2.29836017e-01 5.21702226e-03 -9.83231485e-01\\n1.30010098e-01 1.07384816e-01 -9.34844837e-02 1.32240057e-01\\n-2.35490669e-02 -7.04413414e-01 3.43345881e-01 -3.70124221e-01\\n-8.95699710e-02 3.44088785e-02 -2.45357156e-01 -2.81458855e-01\\n1.60842955e-01 1.08148623e-02 -2.72625268e-01 2.90958762e-01\\n-2.75490165e-01 5.34239769e-01 2.31230948e-02 -8.70381147e-02\\n-2.47413497e-02 -2.19527408e-01 1.50975421e-01 -1.99327260e-01\\n-4.69471067e-01 -1.26186892e-01 -3.06969643e-01 -1.52974337e-01\\n-4.91032079e-02 -1.20163411e-01 -1.04156777e-01 1.32371783e-01\\n4.60424006e-01 1.14098400e-01 -1.61379129e-01 -1.68164879e-01\\n1.34689927e-01 -5.36443532e-01 4.11718488e-02 -2.42687255e-01\\n1.55279913e-03 -8.26271847e-02 2.49509767e-01 8.21169466e-02\\n1.77714244e-01 -3.54871213e-01 5.28437793e-01 -3.76152575e-01\\n-3.95065784e-01 -1.05909713e-01 1.16670430e-01 -7.41651952e-02\\n4.49650198e-01 -4.78168875e-01 -1.79690704e-01 2.66667277e-01\\n4.73038927e-02 -5.31745777e-02 3.49899739e-01 -2.43931964e-01\\n-1.56907514e-01 1.82978854e-01 -4.68488902e-01 2.69773781e-01\\n8.64841104e-01 2.83298761e-01 1.70160219e-01 1.37099117e-01\\n1.20011590e-01 3.51707965e-01 4.14276123e-01 1.00341663e-01\\n-6.06284849e-02 3.73542726e-01 -3.09220590e-02 -5.44586420e-01\\n-8.18728879e-02 -2.84187887e-02 -1.91839054e-01 -4.86629248e-01\\n6.73684776e-01 3.24598998e-01 -3.89059305e-01 -2.80970335e-01\\n-3.44419748e-01 -1.57274306e-01 3.82181138e-01 5.30116968e-02\\n6.21341690e-02 -2.15804130e-02 5.38790524e-01 -4.10299040e-02\\n2.61592418e-01 5.04007995e-01 -4.82340828e-02 -3.49392503e-01\\n8.06904435e-02 2.84131408e-01 6.34351224e-02 4.74033803e-01\\n-2.12526262e-01 2.51638532e-01 -1.24809168e-01 9.44969431e-02\\n-1.54505819e-01 2.95845289e-02 2.81794369e-01 -4.44946531e-03\\n1.99800804e-01 1.17173076e-01 6.19601190e-01 5.19259989e-01\\n2.23079041e-01 3.87244105e-01 3.10245544e-01 7.41813108e-02\\n4.58115101e-01 5.11346757e-01 2.12921008e-01 2.46880986e-02\\n3.65288481e-02 1.42932400e-01 1.59451634e-01 -4.51689400e-02\\n3.73179466e-01 4.35114324e-01 2.12164283e-01 8.52676451e-01\\n2.18147904e-01 3.13012987e-01 6.80653870e-01 -7.07582295e-01\\n-2.81259984e-01 3.56478570e-03 5.05044699e-01 -3.57679784e-01\\n-1.12333000e-02 1.26366898e-01 -2.25147456e-01 3.34725440e-01\\n-5.32672167e-01 -2.97829837e-01 -2.47133449e-02 4.92898449e-02\\n2.72260848e-02 -7.32364506e-02 -1.29494250e-01 1.29173711e-01\\n-1.78661197e-01 -2.44477138e-01 -3.83316219e-01 -1.10247545e-02\\n-2.27557391e-01 -4.04955447e-02 -1.74849499e-02 -6.79386035e-02\\n-5.63910566e-02 -2.76659340e-01 -9.58103910e-02 -6.96961954e-02\\n3.79272729e-01 -1.70513660e-01 -1.59902811e-01 -1.17451489e-01\\n3.97008657e-01 1.69587195e-01 5.75244963e-01 7.21857836e-03\\n4.68085706e-02 -1.31214038e-01 -2.59058774e-01 1.87326506e-01\\n9.97496471e-02 2.81018075e-02 3.10326703e-02 4.74975616e-01\\n-2.79891133e-01 -1.85805708e-01 1.37231171e-01 3.32222402e-01\\n-4.73304778e-01 -2.53858380e-02 -8.04310292e-02 9.92196351e-02\\n4.67603542e-02 2.90114433e-01 -2.19517261e-01 1.69146415e-02\\n-6.05386980e-02 -5.12026548e-01 3.89450610e-01 -1.30157650e-01\\n-2.63186276e-01 7.28273168e-02 3.13656896e-01 1.89554289e-01\\n-3.98359895e-02 -8.74415413e-02 -1.79769367e-01 1.74774274e-01\\n-6.22223765e-02 4.11067039e-01 -1.60193235e-01 -3.67872030e-01\\n-2.71403342e-01 3.00838143e-01 -6.40997961e-02 1.67366594e-01\\n8.07423294e-02 3.59408259e-01 5.02825119e-02 1.45789295e-01\\n5.21102607e-01 -3.75086479e-02 -3.37118089e-01 -3.76866877e-01\\n-1.46263495e-01 -1.60475165e-01 -1.01970583e-01 -1.65466160e-01\\n1.05785958e-01 -3.98748755e-01 -1.28938347e-01 -3.03227752e-01\\n-1.99752375e-01 -3.72457743e-01 -1.47864476e-01 -9.57569331e-02]]',\n", + " \"We currently have an exciting opportunity for a Data Scientist to join a Biotechnology Institution in Zug, Switzerland on their upcoming project. This position runs until October 2020. Responsibilities: Develop and refine forecast platform for Biogen's CVC program Develop agent based/optimization algorithms to simulate market dynamics and product usage - with guidance from senior members of the CVC program Program applications using Visual Basic, Java, SQL, MS Excel that will enable refinement and calibration of short- and long-term forecast models Continually assess and improve upon the accuracy of modeling and forecasting platforms and other tools that the individual will build. Build simulators, dashboards, user interfaces and other tools that can provide simple modeling and forecasting reports that can be processed by senior management. Develop simple versions of the forecast platforms and other tools that can be leveraged by a non-technical audience to run their own scenario analytics. Provide toolkits, tutorials and generally function as a technical expert resource for other members of the CVC forecasting team and internal clients. Key Skills: Experience working within or consulting for Pharma/Biotech/Healthcare or financial services industries in a forecasting/business analytics capacity is a must Must have built analytical tools and platforms that have been used for business/ forecast planning, including previous use of patient based and agent-based forecast models Experience in Supply Management activities is preferable Familiar with using program applications such as Visual Basic, Java, SQL, MS Excel High motivation, good work ethic, maturity and personal initiative Ability to develop creative and innovative solutions Strong oral and written communication skills with both technical and non-technical audiences Strong attention to detail, with a quality-focused mindset Self-discipline for planning and organizing tasks\",\n", + " '[\"Creativity\", \"Planning\", \"Innovation\", \"Self-Discipline\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Business Analytics\", \"Tooling\", \"Analytics\", \"Visual Basic (Programming Language)\", \"Refining\", \"Programmed Data Processor\", \"Financial Services\", \"Biotechnology\", \"Agent-Based Model\", \"Activism\", \"Program Development\", \"Refinement\", \"Dashboard\", \"Building Management Systems\", \"Supply Management\", \"Personalization\", \"Tutorials\", \"Management Development\", \"Simulations\", \"Toolkits\", \"Forecasting\", \"SQL And Java (SQLJ)\", \"Algorithms\", \"Resourcing\", \"Service Industries\", \"Generic Function\", \"Long-Term Potentiation\", \"Calibration\", \"User Interface\", \"Ruby Version Management\"]',\n", + " \"['English']\"],\n", + " ['9',\n", + " 'software engineer frontend (m/w)',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.29411924e-01 3.69570881e-01 4.05117869e-01 -9.23201814e-02\\n4.00253803e-01 -1.96479231e-01 -3.31471823e-02 4.53161091e-01\\n-8.15106258e-02 -3.87246817e-01 -8.96338522e-02 -2.40364134e-01\\n-1.78286508e-01 5.12044504e-02 1.76763207e-01 3.77947927e-01\\n3.02914709e-01 1.31900102e-01 -2.00987652e-01 3.42699260e-01\\n7.53284618e-02 -8.97139087e-02 -2.94442456e-02 7.02488601e-01\\n3.25351417e-01 1.07417889e-02 -3.31698805e-02 -8.29202756e-02\\n-2.61225253e-01 -2.32835680e-01 3.87040228e-01 1.65966637e-02\\n-9.27388221e-02 -3.60517710e-01 8.05779919e-02 7.85665810e-02\\n-1.49701387e-01 1.11210449e-02 -2.71107778e-02 1.73086390e-01\\n-4.95559961e-01 -2.36285791e-01 1.87594235e-01 -2.54552811e-03\\n-1.19406827e-01 -3.99426579e-01 2.31142834e-01 -4.11266237e-02\\n1.42262325e-01 -1.39738563e-02 -6.67806029e-01 1.82873860e-01\\n-3.02327514e-01 -1.91834658e-01 4.21090394e-01 4.75494474e-01\\n5.96510693e-02 -5.02350688e-01 -4.68741387e-01 -3.23751360e-01\\n5.00352047e-02 -6.45478070e-02 1.25537902e-01 -3.54868680e-01\\n3.50229591e-01 7.04007223e-02 2.94305775e-02 3.95864725e-01\\n-8.07034492e-01 -5.06236218e-02 -2.34445035e-01 -1.19389305e-02\\n-4.53674287e-01 -1.83947399e-01 -2.66975850e-01 -5.07865623e-02\\n-1.25643134e-01 3.16604376e-01 -8.07620361e-02 6.20083399e-02\\n-1.92136452e-01 3.58563244e-01 -1.96704954e-01 4.84612137e-01\\n2.37676635e-01 1.84111580e-01 2.35324442e-01 3.53205860e-01\\n-4.17643011e-01 4.26375836e-01 2.31587321e-01 -2.68785179e-01\\n3.11311007e-01 3.05274967e-02 4.46601897e-01 5.85986041e-02\\n2.14686230e-01 8.38731676e-02 -2.45889008e-01 2.03965932e-01\\n2.06985757e-01 -2.63606668e-01 -1.32197678e-01 -1.34364218e-01\\n-2.37532513e-04 1.42218713e-02 7.10352184e-03 2.31911212e-01\\n-1.58053622e-01 5.14584839e-01 2.49390170e-01 -1.23238206e-01\\n-1.31678358e-01 -5.28611302e-01 -9.17088389e-02 4.26199846e-02\\n-8.95039141e-02 4.86033857e-02 1.97904795e-01 8.70702490e-02\\n2.45701268e-01 4.46167290e-02 6.42111450e-02 8.11113477e-01\\n-8.71537924e-02 7.23166764e-02 -1.57811627e-01 3.86564374e-01\\n9.73562226e-02 -3.39138538e-01 1.33837491e-01 3.47027004e-01\\n1.12876065e-01 -1.56601027e-01 -2.10042566e-01 3.36655289e-01\\n-6.77346066e-02 -1.78810269e-01 -3.28392357e-01 1.03942566e-01\\n-1.30089775e-01 -5.43019891e-01 5.14666319e-01 1.15517050e-01\\n2.11252630e-01 8.44955891e-02 1.09585926e-01 -1.08988255e-01\\n-1.67187542e-01 2.02998176e-01 3.29276882e-02 2.19192848e-01\\n-2.62528121e-01 -2.95220882e-01 -2.30744511e-01 1.29503042e-01\\n-1.86414227e-01 1.22461922e-01 -7.28980824e-02 -1.25563279e-01\\n3.91089648e-01 9.01127309e-02 -3.89580131e-01 3.25837731e-01\\n-2.96039265e-02 7.32740760e-02 -1.73700258e-01 3.51689696e-01\\n1.13036372e-02 2.26558372e-01 9.32053030e-02 -5.85043877e-02\\n5.41109443e-01 3.37963142e-02 2.49247745e-01 -4.23603207e-02\\n3.73318166e-01 -9.71680284e-02 1.92851096e-01 3.28308158e-02\\n-6.21452749e-01 1.97901428e-01 -5.31012230e-02 -3.59770395e-02\\n1.07706808e-01 -3.11045144e-02 2.90326744e-01 -3.05278003e-01\\n4.10244241e-02 -1.62066251e-01 -4.43341225e-01 -3.42027724e-01\\n-2.92095184e-01 -3.00347056e-05 4.76545930e-01 -3.98269385e-01\\n-1.25014722e-01 1.77671731e-01 -5.25608063e-01 -8.17053095e-02\\n2.53624022e-01 2.23039031e-01 1.06225893e-01 1.11317560e-01\\n-2.20318407e-01 -5.56012452e-01 4.24042828e-02 -5.06793082e-01\\n-4.24928844e-01 1.39224917e-01 -3.33594203e-01 2.07066193e-01\\n1.06761746e-01 -7.13509321e-02 -1.42024100e-01 5.63105606e-02\\n-2.45518357e-01 -9.25257802e-02 1.67488351e-01 1.06218018e-01\\n2.82514632e-01 -1.60132367e-02 -3.91320944e-01 5.45516670e-01\\n-2.07576782e-01 4.84423816e-01 8.30163807e-02 -8.63820076e-01\\n5.29234767e-01 4.03689086e-01 1.70482323e-02 -4.29077387e-01\\n5.68604767e-01 -3.38719010e-01 -4.87028770e-02 1.79560736e-01\\n-4.23586935e-01 -4.16793406e-01 2.49534130e-01 -1.28347069e-01\\n-2.44486988e-01 5.52456677e-01 7.65677765e-02 5.66585287e-02\\n2.63584852e-01 -2.79061884e-01 -1.83097646e-01 6.19198382e-02\\n-1.02029957e-01 -1.81545436e-01 -5.69159269e-01 4.90567461e-02\\n-5.71765266e-02 -5.12661278e-01 -1.59197271e-01 -3.78707260e-01\\n-2.35236287e-01 -4.07423347e-01 -3.33275080e-01 3.46463472e-01\\n1.90752208e-01 1.18661016e-01 -4.99214903e-02 1.18422091e-01\\n-1.45164147e-01 -6.48951769e-01 5.65320365e-02 1.40068904e-01\\n3.99149865e-01 1.57687411e-01 1.33428708e-01 -7.52682388e-02\\n-7.49949962e-02 5.97881436e-01 -2.96335161e-01 -2.47993588e-01\\n1.51850387e-01 2.04703584e-01 4.02054604e-04 -1.41496122e-01\\n1.18283741e-01 3.04508865e-01 -3.38581204e-01 -2.00866219e-02\\n-1.14004619e-01 2.07603048e-03 3.97050172e-01 -1.79522738e-01\\n-4.23588037e-01 -2.48989001e-01 -1.15061529e-01 1.76054463e-01\\n-5.33380151e-01 -2.13539794e-01 6.13665521e-01 3.21149409e-01\\n1.31031826e-01 2.04565778e-01 2.74301261e-01 -9.03357044e-02\\n-2.50618696e-01 -3.84346724e-01 2.98153579e-01 1.62363291e-01\\n1.54614463e-01 1.11201599e-01 -2.00536415e-01 -6.05881572e-01\\n-3.10678220e+00 -1.11332886e-01 2.43699685e-01 -2.34393403e-01\\n2.21965104e-01 -7.14346394e-02 1.11621946e-01 -6.25328720e-02\\n-2.62996674e-01 2.69727828e-03 -2.08455190e-01 -1.43144622e-01\\n1.09476000e-01 3.54203433e-01 1.04733236e-01 1.75140977e-01\\n2.29415357e-01 -2.34874815e-01 2.01575309e-02 2.80038327e-01\\n-2.20643982e-01 -6.92691386e-01 1.59317523e-01 -7.19114169e-02\\n2.05907077e-01 3.57553571e-01 -2.76850402e-01 -9.86656472e-02\\n-1.60291374e-01 -2.22065330e-01 9.19965357e-02 -2.89611846e-01\\n-9.40682888e-02 1.85911208e-01 1.41933128e-01 -6.64288253e-02\\n3.28832343e-02 -3.96721900e-01 -1.79942846e-01 -5.49185932e-01\\n1.70321688e-01 -5.97442806e-01 1.05505064e-01 -1.74614400e-01\\n7.38923609e-01 -3.13181967e-01 2.88300775e-02 6.46378621e-02\\n1.66261196e-01 1.77568853e-01 2.27926262e-02 1.51935574e-02\\n-3.33069384e-01 -3.41732055e-01 -4.03173938e-02 -2.76493996e-01\\n5.61342776e-01 4.01285380e-01 -2.73374557e-01 5.12259779e-03\\n1.56088069e-01 -2.21656680e-01 -4.30077165e-01 -3.17961127e-01\\n-1.44211724e-01 -1.24780893e-01 -6.84318304e-01 -4.54844266e-01\\n-1.27156168e-01 -1.68069690e-01 -6.41700402e-02 7.41744041e-01\\n-3.28977764e-01 -3.47371250e-01 -9.86098964e-03 -6.81394637e-01\\n1.94150820e-01 -2.31482938e-01 2.41207760e-02 -2.03758359e-01\\n-2.32270256e-01 -4.61979359e-01 5.73927388e-02 4.15991955e-02\\n-1.80058643e-01 -7.67726153e-02 7.98474401e-02 -1.05169445e-01\\n-2.69929051e-01 -5.51191330e-01 4.67386663e-01 1.44844174e-01\\n3.31390470e-01 1.49854526e-01 2.65491754e-01 -9.00676325e-02\\n4.04459149e-01 -2.45536566e-02 -1.83354337e-02 -4.13371325e-01\\n2.29118884e-01 7.02057332e-02 5.63765764e-01 -2.08509088e-01\\n-4.39126929e-03 3.24514747e-01 -1.66267022e-01 -1.66295394e-01\\n4.44916666e-01 -2.81692692e-03 9.39762294e-02 -2.35529691e-01\\n3.72845113e-01 -4.99007255e-01 -2.79690892e-01 1.62263930e-01\\n6.50707260e-02 6.79179490e-01 -4.62868176e-02 -4.07837003e-01\\n-1.45643756e-01 5.92358530e-01 -2.68287994e-02 -3.81400101e-02\\n-1.59143195e-01 1.90688744e-01 -1.69566676e-01 2.11906001e-01\\n7.83518404e-02 -1.83542281e-01 -2.62169242e-01 -4.94430438e-02\\n-9.38159972e-02 2.56094605e-01 1.93756148e-01 1.54458731e-01\\n1.85032953e-02 -4.16298151e-01 -1.09462939e-01 1.71553329e-01\\n2.32540503e-01 4.73408222e-01 2.56309900e-02 -2.50505865e-01\\n-7.08528906e-02 3.12660068e-01 -1.67381495e-01 1.95748866e-01\\n-2.51374364e-01 1.77247152e-01 -4.89304394e-01 -2.81294286e-01\\n-3.07072520e-01 -3.44712198e-01 2.19907779e-02 2.45001048e-01\\n2.15368003e-01 1.71730258e-02 9.67314020e-02 -4.89545405e-01\\n2.33887285e-01 4.17286009e-02 2.09033161e-01 1.75459236e-01\\n6.57896549e-02 5.22310913e-01 -5.55800423e-02 -1.59081459e-01\\n-2.12825298e-01 2.26340666e-02 -2.12228030e-01 -1.30399451e-01\\n1.28516719e-01 -4.60697681e-01 -1.47388235e-01 3.98855448e-01\\n1.28584683e-01 -1.85337469e-01 -2.24879280e-01 2.00295970e-01\\n2.95178732e-03 -2.28929460e-01 -2.45843783e-01 -2.93837171e-02\\n2.75664061e-01 6.57641962e-02 2.95062721e-01 -4.09785092e-01\\n-4.07891683e-02 1.04561551e-02 -1.35437781e-02 4.34687287e-01\\n1.31916359e-01 -8.60692002e-03 -1.58321127e-01 -2.11187065e-01\\n4.18992668e-01 -1.60342500e-01 -1.04373552e-01 -4.44057547e-02\\n1.48072585e-01 -1.85886979e-01 -4.69280154e-01 8.08674544e-02\\n-2.00714096e-01 -1.47033080e-01 1.56165868e-01 4.47960123e-02\\n3.98036651e-02 1.20192535e-01 -5.49052715e-01 -2.34389722e-01\\n-3.28624845e-01 -4.41376343e-02 1.15211010e-01 -5.70016205e-01\\n1.55493505e-02 8.15795269e-03 -6.38714314e-01 1.96569309e-01\\n-2.46831536e-01 -4.55087684e-02 1.55861527e-01 1.41786739e-01\\n-4.19364989e-01 -6.18827343e-02 1.00808263e-01 2.71678746e-01\\n-3.90558630e-01 -3.26926380e-01 -6.28312826e-02 -1.05453587e+00\\n2.29835749e-01 -1.07707851e-01 -2.80444503e-01 2.65343562e-02\\n-2.40594968e-02 -7.19151497e-01 5.64527102e-02 -3.33742708e-01\\n-8.38625282e-02 9.29665193e-02 -2.90800959e-01 -3.91880780e-01\\n1.24277040e-01 -9.24262404e-02 -3.13667327e-01 4.52166200e-01\\n-4.91245717e-01 2.90124625e-01 -3.98732871e-02 9.69134346e-02\\n-7.86277950e-02 -3.67054850e-01 1.37411773e-01 -4.33616459e-01\\n-4.65432167e-01 -2.12991685e-01 -3.69023800e-01 -2.83506781e-01\\n6.37267232e-02 -3.57645780e-01 -7.93143287e-02 1.49083808e-01\\n2.66231418e-01 6.93375915e-02 -5.67990355e-02 -1.98315829e-01\\n5.03223762e-02 -4.86519575e-01 4.27958369e-02 -9.35251340e-02\\n-1.91907454e-02 -1.22224070e-01 2.18753368e-01 5.62345572e-02\\n1.48162648e-01 -3.73725444e-01 4.54626232e-01 -3.08522969e-01\\n-3.94377708e-01 -9.17724520e-02 4.11946364e-02 1.07083796e-02\\n2.10496694e-01 -6.59699619e-01 -2.93771774e-02 3.78252089e-01\\n1.77783608e-01 7.48921884e-03 1.41644970e-01 -6.53472096e-02\\n-3.11940163e-02 3.19561124e-01 -4.28473741e-01 7.72890523e-02\\n8.03155065e-01 1.04914188e-01 -9.26881097e-03 2.30272353e-01\\n1.10204071e-01 3.35492373e-01 5.15445471e-01 -1.35111455e-02\\n-8.65495503e-02 2.99768776e-01 5.77457845e-02 -6.36009276e-01\\n-1.93279043e-01 -1.25310393e-02 -1.19154349e-01 -3.08667332e-01\\n6.95102811e-01 3.49992901e-01 -4.15083408e-01 -2.33824492e-01\\n-9.59376693e-02 -1.38059989e-01 2.60134935e-01 -8.02251995e-02\\n2.13269778e-02 -1.74361482e-01 5.24038792e-01 1.20265998e-01\\n3.40502143e-01 5.41308582e-01 -1.41582504e-01 -3.37894022e-01\\n-1.25669673e-01 1.28656000e-01 6.10002922e-03 3.55155498e-01\\n-1.55080050e-01 2.16957033e-01 -2.66384110e-02 2.15285808e-01\\n-1.86379910e-01 8.16482529e-02 -1.73866432e-02 1.58651382e-01\\n1.77946299e-01 9.09013227e-02 4.73535925e-01 3.48686725e-01\\n3.07873636e-01 5.59899449e-01 2.56952941e-01 1.46173865e-01\\n4.97570693e-01 4.95077401e-01 4.91139591e-01 5.72649315e-02\\n2.02857777e-02 1.38471335e-01 1.60988525e-01 -2.30022985e-02\\n4.55447614e-01 3.73011321e-01 9.69769433e-02 9.09893811e-01\\n2.63892829e-01 2.91585386e-01 7.37418652e-01 -7.00027406e-01\\n-3.41046154e-01 1.42620400e-01 4.08385426e-01 -4.52853829e-01\\n-1.21834837e-02 1.15986437e-01 -2.04505742e-01 2.87938744e-01\\n-4.94186431e-01 -1.59595266e-01 -2.45441124e-02 1.03444837e-01\\n6.10486679e-02 -7.21836314e-02 -2.32636109e-01 -1.86584871e-02\\n-1.33059517e-01 -1.21303864e-01 -3.42725992e-01 -1.06091879e-01\\n-1.54547065e-01 -9.56852883e-02 -6.15939163e-02 -1.54421628e-01\\n-1.86023526e-02 -4.55810010e-01 -1.64407387e-01 2.58800052e-02\\n3.81081372e-01 7.22546177e-03 5.10656349e-02 -1.49288088e-01\\n2.68291146e-01 3.61838728e-01 6.41104460e-01 -7.41466507e-02\\n1.28239766e-01 -3.31496716e-01 -1.62876248e-01 1.26637995e-01\\n1.22773126e-01 7.49756917e-02 7.29571506e-02 3.56549025e-01\\n-3.29781264e-01 -9.12872702e-02 1.50337309e-01 4.64791358e-01\\n-4.04272437e-01 -5.86483777e-02 -7.41252825e-02 2.06489816e-01\\n1.07363746e-01 1.22886963e-01 -2.73597389e-01 1.29549608e-01\\n-2.65247673e-01 -5.01372039e-01 4.16632324e-01 -1.39432535e-01\\n-2.59529743e-02 5.72796352e-02 3.19551617e-01 2.14657202e-01\\n-1.99605718e-01 -4.39755581e-02 2.79396344e-02 1.99439138e-01\\n6.27974868e-02 3.43864381e-01 -2.23075032e-01 -1.38274357e-01\\n-2.89120644e-01 1.91538960e-01 -1.01570398e-01 5.28164692e-02\\n-7.71433935e-02 3.91924173e-01 8.37674290e-02 7.61969537e-02\\n3.88105720e-01 7.08745494e-02 -2.46042758e-01 -2.11832866e-01\\n-2.45644569e-01 -2.33632281e-01 -1.56008741e-02 -6.01415820e-02\\n1.88023865e-01 -3.92546386e-01 -1.06564753e-01 -1.59330621e-01\\n-8.31586793e-02 -3.26125592e-01 -9.23803002e-02 4.95209694e-02]]',\n", + " 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customer-specific solutions based on EmberJS, HTML, CSS Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of all web technologies (Javascript, HTML, CSS, REST, etc.) Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Know-how in User Interaction and User Experience Design Willingness to take on responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Hosting\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"User Experience Design (UX)\", \"Functional Programming\", \"Experience Design\", \"Additives\", \"Rust (Programming Language)\", \"User Experience\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English', 'Kanuri', 'Northern Sami', 'Amharic', 'Ganda']\"],\n", + " ['75',\n", + " 'big data engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.96860814e-01 3.44887048e-01 4.18311268e-01 6.42987788e-02\\n5.49855947e-01 -1.60632238e-01 -7.60548115e-02 2.33741805e-01\\n3.85293690e-03 -3.85250986e-01 -1.00991771e-01 -2.73914307e-01\\n-8.60051885e-02 5.60852103e-02 1.23740666e-01 4.40712243e-01\\n2.10842565e-01 6.70473510e-03 -7.52684474e-02 3.78748119e-01\\n4.04198393e-02 -1.20572872e-01 -2.10955739e-02 6.54336214e-01\\n3.27865958e-01 -4.52837832e-02 -1.05593726e-01 3.76893021e-02\\n-2.93820888e-01 -1.94786966e-01 3.50330234e-01 3.60151418e-02\\n-1.35590002e-01 -3.07242274e-01 1.52788103e-01 1.99274436e-01\\n-2.34797448e-01 3.43347415e-02 -1.69399083e-01 1.40004277e-01\\n-4.76627588e-01 -1.83501318e-01 8.29791743e-03 5.43206558e-02\\n-4.30294186e-01 -3.49034727e-01 9.95754451e-02 -1.81845233e-01\\n3.66332196e-02 6.48680553e-02 -5.33586919e-01 3.09596747e-01\\n-2.28925571e-01 -2.48519540e-01 3.49494070e-01 6.64280176e-01\\n1.17803238e-01 -4.88737762e-01 -3.91648233e-01 -3.63320202e-01\\n-4.55902666e-02 -1.13983192e-01 3.27034444e-02 -2.60845512e-01\\n4.11702573e-01 -1.43740445e-01 2.91686114e-02 2.89151549e-01\\n-8.67187321e-01 -1.14951365e-01 -4.15841609e-01 7.68027594e-03\\n-4.90776718e-01 1.97851080e-02 -3.89639020e-01 -1.84735030e-01\\n-2.03368515e-02 4.76683944e-01 -2.18808297e-02 1.53994739e-01\\n-1.93965256e-01 2.92768687e-01 -3.28353584e-01 2.08600566e-01\\n3.39791447e-01 1.58946797e-01 1.72966585e-01 2.85977483e-01\\n-4.48067993e-01 3.26938391e-01 3.01893115e-01 -2.35333920e-01\\n2.83533931e-01 1.43122420e-01 2.94796169e-01 1.95423141e-01\\n1.10316023e-01 2.62607336e-01 -1.41405299e-01 1.97389156e-01\\n1.77302569e-01 -2.11973563e-01 -5.77723011e-02 -1.51757509e-01\\n4.66307215e-02 -1.21968903e-01 2.33216006e-02 2.01474980e-01\\n-3.48602384e-01 2.91850716e-01 1.18034214e-01 -1.54592186e-01\\n-9.68825817e-02 -4.61926162e-01 -6.63943663e-02 -4.83498536e-02\\n3.31327245e-02 2.76550680e-01 2.49577552e-01 1.99359983e-01\\n2.08295792e-01 1.71896014e-02 1.77252889e-01 9.28946495e-01\\n-6.68200031e-02 2.05227554e-01 -2.60475755e-01 3.75699133e-01\\n2.15705931e-01 -2.50339955e-01 1.58410624e-01 2.42954895e-01\\n8.20262358e-03 -1.29366100e-01 -2.53765494e-01 3.23635042e-01\\n-1.97265580e-01 -1.58971861e-01 -2.35874146e-01 1.43298998e-01\\n-1.32214040e-01 -5.58442056e-01 5.85828841e-01 3.11824419e-02\\n7.42080212e-02 -7.46050179e-02 -8.57746378e-02 -4.10121605e-02\\n-1.85835615e-01 3.00886959e-01 4.28445674e-02 2.43591174e-01\\n-2.85249054e-01 -2.76624262e-01 -9.27137882e-02 2.80250311e-01\\n-2.50699013e-01 2.23866235e-02 -2.20246643e-01 -1.09423146e-01\\n3.43225181e-01 1.69671595e-01 -4.59755123e-01 1.78900361e-01\\n-4.18040380e-02 -3.04155052e-01 -2.19227076e-02 3.29643071e-01\\n-1.41281307e-01 2.50280350e-01 -5.20857498e-02 -6.49947897e-02\\n5.89169621e-01 2.31374398e-01 2.89622128e-01 -2.26045446e-03\\n2.75445729e-01 -1.53110206e-01 2.59232163e-01 1.00722864e-01\\n-5.21611035e-01 4.42454338e-01 -1.14062294e-01 -1.69909835e-01\\n1.13117598e-01 3.67181115e-02 4.13286358e-01 -2.63497382e-01\\n-7.07108453e-02 -1.98499203e-01 -3.56016397e-01 -3.78715783e-01\\n-2.90088266e-01 -3.64230312e-02 3.65426838e-01 -4.69793051e-01\\n-8.84761009e-03 2.49416679e-01 -6.12476766e-01 -1.58732265e-01\\n1.95361480e-01 2.30769902e-01 8.49370733e-02 1.05911754e-02\\n-1.00727543e-01 -6.15024865e-01 7.96834826e-02 -4.60210770e-01\\n-3.49452645e-01 8.61413553e-02 -2.44263411e-01 5.97687773e-02\\n-1.60614122e-03 6.56268820e-02 -1.20289892e-01 1.67419553e-01\\n-4.15087909e-01 4.28542979e-02 1.74081236e-01 1.29645616e-01\\n3.52620065e-01 5.09687811e-02 -4.16413695e-01 5.42360187e-01\\n-1.77880958e-01 4.42510903e-01 2.65277028e-01 -8.83127034e-01\\n5.55521905e-01 2.30198085e-01 -9.16575715e-02 -2.63767302e-01\\n4.45501894e-01 -4.54591215e-01 -5.40335961e-02 7.24373534e-02\\n-2.35520020e-01 -2.41464645e-01 3.15704733e-01 -1.13929532e-01\\n-2.59803593e-01 6.78429484e-01 1.02698766e-01 1.46381631e-01\\n3.78542066e-01 -2.83877075e-01 -1.76055610e-01 -5.64239174e-02\\n-1.50965393e-01 -1.40857562e-01 -5.81143856e-01 1.23960361e-01\\n-1.10634290e-01 -5.12252092e-01 -7.80403093e-02 -5.08696556e-01\\n-2.25422829e-01 -2.84876466e-01 -2.59731680e-01 2.96742439e-01\\n1.92434937e-01 1.74000308e-01 -1.05507866e-01 -4.82587367e-02\\n1.97027866e-02 -6.91412091e-01 -5.02098352e-02 7.15362057e-02\\n4.32042360e-01 2.59835809e-01 2.61846900e-01 -8.58775452e-02\\n1.63848355e-01 4.10003364e-01 -3.58777672e-01 -4.43524987e-01\\n1.27500042e-01 9.73021537e-02 -4.79912274e-02 -1.67048678e-01\\n1.34975895e-01 4.04518425e-01 -2.28389919e-01 1.31865010e-01\\n3.94292101e-02 -3.70270871e-02 3.49040776e-01 -2.57066917e-02\\n-2.43934885e-01 -2.26500019e-01 -8.27875957e-02 2.37687081e-01\\n-5.93317926e-01 -3.17269415e-01 4.88442451e-01 2.47317463e-01\\n8.97993967e-02 2.22598076e-01 2.77755946e-01 -1.23002328e-01\\n-2.06953898e-01 -9.76430625e-02 2.68041551e-01 1.71976075e-01\\n1.31365255e-01 1.24579370e-01 -1.80519164e-01 -5.35281420e-01\\n-3.50417495e+00 -1.75089076e-01 1.43602312e-01 -2.29981154e-01\\n2.04089463e-01 -1.85537279e-01 2.12182850e-01 2.53077671e-02\\n-3.28020453e-01 -8.48561078e-02 -1.88551605e-01 -1.03937112e-01\\n4.07386757e-03 2.98340470e-01 1.08108923e-01 1.88793227e-01\\n1.36490390e-01 -1.91399798e-01 3.84088070e-03 4.26874876e-01\\n-9.22174305e-02 -6.96362674e-01 -2.55561713e-02 3.61620747e-02\\n1.48184657e-01 6.73779026e-02 -4.15742129e-01 -3.92589383e-02\\n-3.21821988e-01 -3.23158115e-01 1.86734870e-01 -2.35624462e-01\\n-2.44609118e-01 2.20956743e-01 1.81667164e-01 -1.17119715e-01\\n-1.62027944e-02 -2.33508959e-01 2.42001936e-02 -5.44063151e-01\\n8.13470855e-02 -5.98324299e-01 8.88843164e-02 -5.79190031e-02\\n6.72810674e-01 -2.52187073e-01 2.44479910e-01 9.77295414e-02\\n1.59578815e-01 2.52789617e-01 1.10288128e-01 5.62349260e-02\\n-3.28595877e-01 -3.20659429e-01 -1.31877035e-01 -2.53720462e-01\\n5.78959882e-01 4.40056324e-01 -1.70335010e-01 6.36792406e-02\\n9.78659373e-03 -3.37250173e-01 -5.06300986e-01 -3.50638479e-01\\n-2.08132833e-01 -8.52709711e-02 -6.69044137e-01 -3.54889631e-01\\n-8.23016539e-02 -1.18027486e-01 -5.46901338e-02 6.62365854e-01\\n-3.13018799e-01 -3.51793170e-01 3.96526530e-02 -5.07278740e-01\\n3.19762141e-01 -2.42803395e-01 6.55853376e-02 -2.58750886e-01\\n-3.28336746e-01 -4.62177157e-01 1.94543123e-01 -3.54599766e-02\\n-2.66761065e-01 -1.32800430e-01 5.46680465e-02 -1.52359337e-01\\n-3.96212727e-01 -6.26075149e-01 4.42959160e-01 3.95017713e-02\\n3.61081600e-01 6.05906993e-02 3.98483485e-01 -6.88349605e-02\\n3.56861442e-01 -9.98112038e-02 -1.31054252e-01 -4.97816831e-01\\n-1.97644290e-02 5.73071130e-02 5.34489989e-01 -2.34072521e-01\\n1.79413199e-01 9.32373255e-02 -1.95057124e-01 3.07738613e-02\\n4.13011312e-01 1.68356635e-02 8.14857408e-02 -6.31378358e-03\\n2.66395926e-01 -5.47979355e-01 -2.69027323e-01 1.55107424e-01\\n1.08892009e-01 7.03123152e-01 8.41865316e-03 -4.54086185e-01\\n-2.29289770e-01 4.41076189e-01 -6.45007417e-02 -1.18308276e-01\\n-2.19390437e-01 6.81811348e-02 -2.17581362e-01 2.63548553e-01\\n6.64121285e-02 -1.17072552e-01 -2.45330110e-01 -1.29564121e-01\\n-5.84770665e-02 3.63042742e-01 2.81433463e-01 1.61634088e-02\\n-7.70878568e-02 -2.21706539e-01 -3.57245468e-02 2.05241695e-01\\n2.32138753e-01 3.97327662e-01 1.66679710e-01 -3.01004171e-01\\n2.78272890e-02 3.06736737e-01 -3.17709178e-01 3.02906156e-01\\n-1.89054146e-01 1.42882586e-01 -6.38502955e-01 -1.44051403e-01\\n-2.66994298e-01 -4.27788824e-01 3.30012947e-01 3.58485937e-01\\n1.79589659e-01 -7.01749548e-02 6.38324022e-02 -5.05131185e-01\\n3.73124063e-01 1.12982221e-01 1.53083429e-01 7.08051994e-02\\n2.80801230e-03 6.69723630e-01 -1.77098811e-02 -1.62208453e-01\\n-6.04958236e-02 -1.97706092e-02 -2.60907173e-01 -3.42045695e-01\\n2.55826283e-02 -4.81955439e-01 -2.02252090e-01 4.90829349e-01\\n2.33723909e-01 -4.75820377e-02 -3.21290106e-01 1.33100957e-01\\n4.35751788e-02 -1.92549407e-01 -2.90783107e-01 -2.42837332e-02\\n2.01531097e-01 2.00762242e-01 2.64001667e-01 -4.20604885e-01\\n-3.78113724e-02 5.16359285e-02 -2.20098253e-02 4.36224848e-01\\n4.84443493e-02 2.14425087e-01 -6.25033826e-02 -1.04120679e-01\\n6.13250196e-01 -1.28150564e-02 -1.69442758e-01 -1.19935304e-01\\n7.93749243e-02 -1.61210597e-01 -4.15824413e-01 5.83286397e-02\\n-2.43440513e-02 -3.14145714e-01 8.84527341e-02 1.02038935e-01\\n1.09011732e-01 -5.32904565e-02 -5.95097363e-01 -1.72616392e-01\\n-3.80835503e-01 -6.19084686e-02 4.15815078e-02 -5.36376238e-01\\n3.89634334e-02 1.94169749e-02 -5.49118102e-01 2.83013165e-01\\n-1.59557611e-01 2.34637130e-02 3.27658169e-02 1.00415193e-01\\n-2.10372925e-01 -1.04411289e-01 1.39792547e-01 1.90717608e-01\\n-2.65638351e-01 -1.59193531e-01 4.23223004e-02 -9.18339968e-01\\n1.52262151e-01 7.36924708e-02 -1.32943735e-01 1.04808800e-01\\n3.55764218e-02 -7.74015486e-01 1.29943520e-01 -3.92476737e-01\\n-6.33490160e-02 1.50974005e-01 -2.50673473e-01 -3.95439118e-01\\n2.08995610e-01 3.50915939e-02 -4.07000482e-01 4.15662140e-01\\n-5.61714411e-01 3.19586158e-01 8.56264532e-02 7.89562017e-02\\n8.55175704e-02 -2.07664788e-01 1.59763098e-01 -2.32482165e-01\\n-3.70378107e-01 -2.01556742e-01 -2.06207275e-01 -3.23712707e-01\\n-8.40868428e-03 -3.26630116e-01 -1.08477421e-01 2.01712493e-02\\n4.21023816e-01 1.32078126e-01 -9.07460302e-02 -2.76236713e-01\\n6.86943457e-02 -4.73630935e-01 1.35386229e-01 -2.70865858e-01\\n-1.13083154e-03 -1.17591299e-01 2.10089207e-01 2.35687066e-02\\n2.07215667e-01 -3.16815883e-01 6.22050405e-01 -2.76310802e-01\\n-3.45916152e-01 -1.43903702e-01 6.32182583e-02 7.51021132e-02\\n2.37726122e-01 -3.78808647e-01 5.21192588e-02 2.72124439e-01\\n9.57002863e-02 7.74144009e-03 2.59716749e-01 -1.75252408e-01\\n-1.14230126e-01 1.79250881e-01 -5.00780165e-01 1.60120592e-01\\n8.63532364e-01 8.99323672e-02 2.56249458e-01 1.37095362e-01\\n1.20234236e-01 2.59131551e-01 4.77859616e-01 1.57975741e-02\\n-8.44413191e-02 2.87263215e-01 5.32845482e-02 -4.52349544e-01\\n-1.33555338e-01 -1.50623873e-01 -1.66257456e-01 -2.96008676e-01\\n6.02666676e-01 2.33034328e-01 -3.36251676e-01 -4.54831868e-01\\n-7.99099877e-02 -1.00721851e-01 4.06935215e-01 1.51048526e-02\\n-1.40468761e-01 -1.76450998e-01 4.19293970e-01 -6.43341243e-02\\n3.23634148e-01 5.25896311e-01 -1.65244415e-01 -2.80985773e-01\\n-1.03312410e-01 2.46023715e-01 1.93510264e-01 4.52180237e-01\\n-1.55434579e-01 1.74752906e-01 -1.07079193e-01 1.43060103e-01\\n-1.89065054e-01 -8.78895074e-03 3.01000088e-01 6.83068782e-02\\n2.19076112e-01 6.77633360e-02 4.65387374e-01 5.59907198e-01\\n1.90063655e-01 5.31919301e-01 3.54384571e-01 -1.32503854e-02\\n3.20093125e-01 6.66606545e-01 3.78609300e-01 1.04473203e-01\\n-3.07683758e-02 1.38937786e-01 6.82053268e-02 -7.74407685e-02\\n2.82814741e-01 3.94464582e-01 2.25611493e-01 8.85194421e-01\\n3.46412063e-01 3.44777614e-01 7.24910855e-01 -6.45051658e-01\\n-4.96049970e-01 9.21939537e-02 6.03345633e-01 -4.64121521e-01\\n5.40326983e-02 1.62939936e-01 -2.49493226e-01 2.17103228e-01\\n-5.56812644e-01 -2.11038455e-01 4.21759440e-03 1.22597618e-02\\n1.01786721e-02 -9.87417027e-02 -9.09411311e-02 1.19228959e-01\\n-1.19134754e-01 -1.98214710e-01 -2.97854602e-01 -1.21630073e-01\\n-2.32164294e-01 -5.52714802e-02 -1.02314711e-01 -2.53677312e-02\\n-2.29588710e-02 -3.22520316e-01 -6.94573820e-02 6.73100026e-03\\n3.18767995e-01 -2.02134550e-01 -2.14769408e-01 -7.11566284e-02\\n1.59569532e-01 2.47494087e-01 5.84787607e-01 5.20478673e-02\\n1.97300874e-02 -1.49446592e-01 -1.87031940e-01 3.72363031e-02\\n6.18296191e-02 1.31450161e-01 7.60812964e-03 3.67187589e-01\\n-2.83870757e-01 -2.00773999e-01 1.73787057e-01 2.05903783e-01\\n-3.76042515e-01 -1.09815635e-01 -4.55926470e-02 2.24547386e-01\\n1.80376992e-02 1.47408113e-01 -2.86194414e-01 1.76045194e-01\\n-2.14229807e-01 -5.73754609e-01 4.62805003e-01 -2.06788361e-01\\n-1.24913402e-01 7.54182637e-02 3.20095986e-01 2.22538635e-01\\n-2.22011238e-01 -3.66530903e-02 -1.39946029e-01 2.69055218e-01\\n-8.69691595e-02 3.73143971e-01 -2.42382780e-01 -2.33777374e-01\\n-2.87254810e-01 3.02292496e-01 2.91829240e-02 1.88529760e-01\\n-2.78444849e-02 4.86935914e-01 -3.09117362e-02 1.36623368e-01\\n3.12452167e-01 3.34689692e-02 -2.60901988e-01 -3.44393373e-01\\n-2.40466744e-01 -8.69643986e-02 6.19944409e-02 -2.59186383e-02\\n1.95385382e-01 -3.49411130e-01 -1.29450992e-01 -2.11682081e-01\\n-1.64196745e-01 -4.55375612e-01 -9.15977806e-02 2.57502776e-02]]',\n", + " 'Job Informationen Responsibilities: Responsible for delivering projects in the Big Data (Engineer and Analytics) field A key position as Big Data Ingenieur, where you are designing and building an analytics platform using state of the art Big Data technologies and provide services to enable Data Scientists to build advanced analytics models You are taking an active part of our transformation into a more data and analytical insights driven bank Within the highly motivated team, you collaborate closely with business teams to understand data and functional requirements You design and build data pipelines to ingest, integrate, standardize, clean and publish data You are responsible for defining and crafting integration patterns with downstream applications You provide input into overall IT architecture of the solution, including technical environment configuration, data modelling, data integration, data presentation, information security and other IT architecture related topics You support Data Scientist in their day-to-day work on a variety of topics, including tools and data analysis methods You operationalize analytical models developed by the Data Scientists to embed them into the bank’s business processes Your profile: A university degree or equivalent education in IT or another technical specialization, ideally with focus on Data Management You have proven work experience of at least two years as a Data Engineer using Big Data technologies Experience with Hadoop based analytical solutions, ideally on Cloudera distribution, as well as practical skills in creating data processing pipelines using Spark, Scala, Python or similar tools Good knowledge of SQL, Hive and Impala databases Ideally experience with Jupyter Notebook, Hue, other end user tools If you already had experience with Tableau, Splunk or an agile work environment you have an advantage You are able to work in a dynamic environment, be comfortable with changing priorities and tight deadlines, manage you own workload with minimum supervision You build strong collaborative relationships with colleagues in IT and business groups Excellent verbal and written communication skills in English and German Benötigte Skills Scala Python Python Englisch Security Datawarehouse',\n", + " '[\"Collaboration\", \"Management\", \"Supervision\", \"Team Motivation\", \"Integration\", \"Positivity\", \"Written Communication\"]',\n", + " '[\"Information Presentation Facility\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Agility\", \"Analytics\", \"Data Management\", \"Data Modeling\", \"Data Engineering\", \"Scala (Programming Language)\", \"Activism\", \"Apex Data Loader\", \"Functional Requirement\", \"Information Security Management\", \"Jupyter Notebook\", \"Data Pipeline\", \"Idealization\", \"Splunk\", \"Hostile Work Environment\", \"Pipelining\", \"Operationalization\", \"Business Process\", \"Apache Hive\", \"Electronic Data Processing\", \"Big Data\", \"Survey Data Analysis\", \"Transformation (Genetics)\", \"Service Provider\", \"Banking\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Icelandic']\"],\n", + " ['57',\n", + " 'full-stack java software engineer',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-1.52348623e-01 3.12777966e-01 5.86622953e-01 -1.81150749e-01\\n5.14662743e-01 -3.29282582e-01 1.75580204e-01 4.35884237e-01\\n-1.57401010e-01 -3.01419079e-01 -1.57983914e-01 -2.85847872e-01\\n3.18956678e-03 4.27692942e-02 1.19754411e-01 2.60663837e-01\\n2.69114614e-01 1.75715387e-01 -2.05467701e-01 3.25988322e-01\\n1.18401386e-01 -1.57127395e-01 1.26595050e-01 6.84018493e-01\\n5.01709938e-01 7.06727952e-02 -1.34881496e-01 1.39535114e-01\\n-2.95769334e-01 -3.78998399e-01 4.23073560e-01 -2.40414552e-02\\n1.75495923e-03 -1.23174183e-01 1.18926615e-01 6.86245933e-02\\n-1.49853870e-01 3.35805342e-02 7.10680336e-03 1.69376299e-01\\n-3.40796947e-01 3.49282399e-02 1.62588328e-01 -3.35835144e-02\\n-2.28550881e-01 -4.38031107e-01 6.78425953e-02 4.78295051e-02\\n2.37122893e-01 4.55753691e-02 -4.10049111e-01 4.21395421e-01\\n-1.78098738e-01 -3.29199642e-01 3.01333070e-01 5.76310396e-01\\n-1.51954338e-01 -4.84003007e-01 -4.01330024e-01 -2.49368578e-01\\n1.35254964e-01 -1.68688327e-01 7.01819509e-02 -3.22233677e-01\\n4.63556260e-01 3.06211039e-02 -1.74089372e-02 4.16481137e-01\\n-7.94518828e-01 8.45635310e-02 -1.43370390e-01 -3.30023281e-02\\n-4.31816697e-01 -5.38255535e-02 -2.97469258e-01 -1.22158095e-01\\n-1.45301387e-01 4.28585082e-01 7.99791887e-02 1.31086737e-01\\n-6.81233332e-02 2.53325552e-01 -2.68208444e-01 2.75521696e-01\\n2.51695395e-01 4.17090237e-01 1.83086559e-01 3.59972715e-01\\n-3.83211255e-01 3.31268698e-01 2.13961333e-01 -3.03245097e-01\\n1.56347796e-01 1.25904813e-01 4.54328775e-01 -2.03916952e-02\\n2.00990856e-01 8.79990160e-02 -1.47109777e-01 2.42543310e-01\\n3.63377482e-01 -3.59320223e-01 -5.21228127e-02 5.36654517e-02\\n-7.39344135e-02 1.36800483e-01 6.72554038e-03 3.97711009e-01\\n-3.06973547e-01 6.47379458e-01 -1.51877161e-02 -2.33313337e-01\\n-4.98550870e-02 -6.01146877e-01 -2.57038414e-01 1.83260381e-01\\n2.18845233e-02 1.42738789e-01 1.65008917e-01 3.07965308e-01\\n1.57785311e-01 7.70954117e-02 2.25330859e-01 9.53719318e-01\\n-7.97168463e-02 9.16220471e-02 -2.47052222e-01 4.31369662e-01\\n7.27906972e-02 -2.29254350e-01 2.85650909e-01 3.18802536e-01\\n1.89112127e-01 -4.37798314e-02 -2.09563732e-01 2.31716186e-01\\n-2.16987468e-02 -3.22461814e-01 -2.94791311e-01 1.00056745e-01\\n-2.15334743e-01 -4.80946779e-01 5.42564929e-01 1.44608095e-02\\n2.30956785e-02 -1.28155192e-02 -4.42914590e-02 4.57397290e-03\\n-1.55052349e-01 1.85161129e-01 1.26379684e-01 1.27572596e-01\\n-3.56418192e-01 -2.31924504e-01 -3.67463708e-01 3.06284428e-01\\n-3.33936989e-01 -2.02934667e-02 -1.37044922e-01 -4.83026989e-02\\n4.06637073e-01 -1.38099073e-02 -3.14859152e-01 3.42514217e-01\\n-1.21916719e-01 -6.45756647e-02 -1.72402427e-01 2.98640907e-01\\n-1.15490377e-01 1.54386699e-01 -8.31885040e-02 -1.47165135e-01\\n4.27983373e-01 1.18184812e-01 4.50461768e-02 -5.48709221e-02\\n3.61388654e-01 -9.31731053e-03 1.81342542e-01 1.09905340e-02\\n-7.29913652e-01 4.04561013e-01 -4.98051830e-02 -1.52992696e-01\\n9.36877802e-02 -1.34543013e-02 2.52077162e-01 -3.21205199e-01\\n1.78716391e-01 -1.66763276e-01 -4.12537128e-01 -2.84113646e-01\\n-2.13180855e-01 -6.40830472e-02 4.96926367e-01 -4.78328675e-01\\n-1.02593556e-01 1.76014259e-01 -5.53843081e-01 1.46536201e-01\\n3.05304170e-01 2.55766958e-01 1.31281987e-01 1.60008579e-01\\n-1.60486668e-01 -5.40886104e-01 1.48950398e-01 -3.47763747e-01\\n-1.99738517e-01 3.04470092e-01 -3.68302405e-01 2.22506344e-01\\n1.89015850e-01 3.07520721e-02 -1.55555785e-01 1.39744282e-01\\n-9.83253941e-02 -1.29256815e-01 1.43041149e-01 5.52339368e-02\\n3.78115356e-01 2.95372196e-02 -4.76619512e-01 5.31041026e-01\\n-2.24445045e-01 3.34347188e-01 1.36020184e-01 -9.39956367e-01\\n4.46892262e-01 3.05463731e-01 1.07950710e-01 -2.97509700e-01\\n7.65742838e-01 -1.95990264e-01 -1.39622778e-01 1.57563508e-01\\n-4.66928035e-01 -3.04231286e-01 9.49719772e-02 -7.46379495e-02\\n-2.11274102e-01 3.74954522e-01 5.94479963e-02 9.60968137e-02\\n3.04883540e-01 -9.98013690e-02 -1.95613787e-01 1.18959807e-01\\n-9.72556472e-02 -2.69075841e-01 -3.50681424e-01 3.94659229e-02\\n8.36530002e-04 -5.44061720e-01 -6.04868606e-02 -4.19347078e-01\\n-3.37068081e-01 -3.56870413e-01 -1.48391262e-01 2.59097397e-01\\n1.40928477e-01 1.03673905e-01 -5.52406674e-03 -8.40443000e-02\\n-3.18443060e-01 -5.21532893e-01 8.01278725e-02 1.27004117e-01\\n3.07165653e-01 2.39830270e-01 4.67862561e-02 -4.78726812e-02\\n1.08242994e-02 6.68546259e-01 -2.04081714e-01 -1.39072910e-01\\n1.00347944e-01 1.84065133e-01 -4.94437702e-02 -1.10746436e-01\\n5.83343245e-02 3.04767817e-01 -1.88860103e-01 6.89155655e-03\\n-2.19386905e-01 -1.44311879e-02 3.42735201e-01 -1.45488784e-01\\n-3.48737538e-01 -4.07367855e-01 -1.51592821e-01 1.73504904e-01\\n-5.64159989e-01 -2.51780808e-01 7.24394858e-01 1.14112198e-01\\n8.81093889e-02 1.47131994e-01 1.71447009e-01 -4.85307127e-02\\n-1.44651204e-01 -2.04622477e-01 1.88606262e-01 2.24560481e-02\\n1.25049636e-01 1.82453036e-01 -1.32531539e-01 -5.70303738e-01\\n-3.68280149e+00 -1.37593567e-01 6.38316944e-02 -3.52033436e-01\\n1.95834190e-01 -2.03607425e-01 1.23728409e-01 -1.65224820e-01\\n-1.76456138e-01 7.97297359e-02 -9.78242382e-02 -1.18979290e-01\\n2.12749153e-01 2.15495244e-01 1.18466802e-01 2.87408531e-01\\n2.63397515e-01 -2.76983768e-01 1.63261760e-02 3.46988887e-01\\n-1.50522768e-01 -4.80660111e-01 3.07063222e-01 -3.98100652e-02\\n3.95956784e-01 4.82744336e-01 -3.31730515e-01 -7.65492916e-02\\n-2.41776332e-01 -3.18023533e-01 1.36863902e-01 -2.89547205e-01\\n1.46752466e-02 3.38024855e-01 1.83048129e-01 -8.46451223e-02\\n2.25138694e-01 -2.75321692e-01 8.26363042e-02 -3.64143550e-01\\n1.92684725e-01 -5.89373112e-01 -1.00335971e-01 -4.46457230e-02\\n8.21726561e-01 -4.92054969e-01 1.70401022e-01 8.44793841e-02\\n1.05904326e-01 2.19868317e-01 3.37428525e-02 -2.01215759e-01\\n-2.15338260e-01 -1.58315882e-01 7.05938786e-03 -2.28039891e-01\\n4.87488031e-01 6.61855459e-01 -2.19347611e-01 -6.30247965e-02\\n-5.26456609e-02 -3.50032270e-01 -5.58364630e-01 -4.45592344e-01\\n-2.68399388e-01 -1.35800511e-01 -5.85095525e-01 -5.66539526e-01\\n-1.08244471e-01 -9.32676941e-02 -6.81870803e-03 4.28097367e-01\\n-1.50686160e-01 -4.83904272e-01 -1.14989646e-01 -4.15947706e-01\\n2.27360707e-02 -4.92130369e-02 -1.11903474e-01 -2.16282815e-01\\n-1.86762363e-01 -5.00051081e-01 -3.90059277e-02 1.36127928e-02\\n-5.28955683e-02 -1.96430475e-01 2.29290009e-01 -1.99010238e-01\\n-3.29259098e-01 -5.48078597e-01 4.89018321e-01 -2.79402137e-02\\n2.53945291e-01 1.90333620e-01 1.59944892e-01 2.07528010e-01\\n2.86194772e-01 -3.49974006e-01 1.44702464e-01 -3.99543107e-01\\n2.06527516e-01 9.96987745e-02 5.91514885e-01 -1.98873103e-01\\n2.19080344e-01 6.93314523e-02 -2.03553587e-01 -2.92308301e-01\\n3.36837709e-01 -5.78180049e-03 1.31984368e-01 -3.36725593e-01\\n3.13762158e-01 -2.81081229e-01 -3.65591347e-01 1.01407669e-01\\n4.60270457e-02 4.66940701e-01 -1.10179998e-01 -3.70759815e-01\\n-1.23243846e-01 5.11837840e-01 -2.46323869e-01 -3.49385515e-02\\n-2.05974832e-01 6.36456534e-02 -2.70891935e-01 3.24981004e-01\\n-7.66094541e-03 -4.37018685e-02 -2.44955033e-01 -1.36966482e-01\\n1.76106449e-02 3.36794376e-01 3.41201603e-01 1.48395792e-01\\n1.59920231e-02 -4.75256264e-01 6.21278621e-02 1.56087592e-01\\n1.56474024e-01 2.22430944e-01 7.74851814e-02 -1.30061388e-01\\n-8.44225660e-03 2.84652472e-01 -1.45294279e-01 1.89528227e-01\\n-1.80046141e-01 1.01506181e-01 -4.92564589e-01 -3.58855993e-01\\n-2.09566161e-01 -2.00662091e-01 -9.01010167e-03 2.29140982e-01\\n8.04000422e-02 2.23469045e-02 -2.23900080e-02 -3.97925854e-01\\n2.55073816e-01 -4.23385687e-02 3.16053420e-01 2.83185959e-01\\n-7.64413327e-02 5.54505944e-01 1.53921591e-02 -2.89062653e-02\\n-1.51309267e-01 1.85446292e-01 -2.24187270e-01 -5.84200136e-02\\n1.47736436e-02 -4.12767559e-01 1.02732447e-03 3.14067632e-01\\n7.87110701e-02 -3.07916999e-01 -1.13886051e-01 1.60979450e-01\\n-7.46283531e-02 -5.67429066e-01 -1.63901493e-01 4.24567014e-02\\n3.78168434e-01 1.38274431e-01 2.83322155e-01 -5.22491395e-01\\n4.52991296e-03 6.42336458e-02 -6.26313686e-02 4.21566278e-01\\n-5.90868182e-02 -3.16721722e-02 3.55639644e-02 -3.36971372e-01\\n3.43423098e-01 -2.34619349e-01 9.70408395e-02 4.52381596e-02\\n1.04210071e-01 -1.37332320e-01 -3.78594518e-01 2.35488713e-02\\n-1.17967620e-01 -9.54593122e-02 -1.22582875e-02 -2.44746190e-02\\n-7.03425631e-02 3.82699445e-02 -4.80180591e-01 -2.10277826e-01\\n-2.51636982e-01 -1.71338916e-01 -1.47469461e-01 -4.04725224e-01\\n-1.03114331e-02 2.57051643e-02 -5.25992215e-01 3.11185807e-01\\n-2.31051281e-01 2.84275599e-02 1.91949308e-01 -7.39476755e-02\\n-4.34099525e-01 -1.59316778e-01 3.34305763e-01 2.82531619e-01\\n-2.94821560e-01 -2.86530107e-01 -5.27864434e-02 -9.87396836e-01\\n2.51854837e-01 -5.49037233e-02 -1.32075861e-01 1.50083631e-01\\n-1.20767262e-02 -5.24159908e-01 2.37421513e-01 -4.16587293e-01\\n-6.22147471e-02 -5.29956892e-02 -2.34015137e-01 -3.72200936e-01\\n2.71727778e-02 4.51723970e-02 -2.69870043e-01 3.56314659e-01\\n-4.03634518e-01 3.58975261e-01 -5.57620563e-02 5.98030165e-02\\n-1.12495236e-01 -2.26095483e-01 1.17799491e-02 -5.20498931e-01\\n-4.39296663e-01 -1.00154780e-01 -1.79337889e-01 -1.12963341e-01\\n2.22410425e-03 -2.32969120e-01 -6.41409010e-02 1.32413328e-01\\n2.47191429e-01 1.76835135e-01 -8.80046710e-02 -9.27972868e-02\\n8.91120136e-02 -4.25641090e-01 -1.10774219e-01 -1.37514517e-01\\n-2.40637157e-02 -1.82481840e-01 1.49245441e-01 1.38758361e-01\\n-4.24188450e-02 -4.53247249e-01 3.66322339e-01 -1.97753906e-01\\n-2.29975164e-01 3.70309688e-02 6.47864565e-02 5.85301332e-02\\n3.89317870e-01 -4.17916179e-01 -6.27590418e-02 4.24100697e-01\\n1.33068427e-01 9.51957032e-02 2.01168790e-01 -2.39782948e-02\\n-1.84909716e-01 3.25457275e-01 -3.57955694e-01 5.25382087e-02\\n7.24623621e-01 2.09526330e-01 1.51871324e-01 1.70760036e-01\\n2.08596677e-01 3.53761464e-01 4.39930469e-01 3.19839455e-02\\n-5.39324880e-02 4.53329444e-01 4.76834923e-02 -6.83057487e-01\\n1.15793675e-01 1.72072485e-01 -3.65122318e-01 -2.51984000e-01\\n6.34747446e-01 4.88714069e-01 -2.57751048e-01 -2.90998310e-01\\n-2.68452317e-01 -1.90947950e-01 1.29199877e-01 -1.83907375e-01\\n2.05782697e-01 -2.23131686e-01 5.16969860e-01 -9.07537714e-03\\n9.72479582e-02 4.58439320e-01 -1.98333189e-01 -3.06593776e-01\\n-2.28513796e-02 9.74383205e-02 -7.14830169e-03 4.56144810e-01\\n-1.95409119e-01 1.90448627e-01 1.75253358e-02 2.25209072e-01\\n-1.32627234e-01 1.34454042e-01 1.73563972e-01 4.96530868e-02\\n1.12159260e-01 1.12515189e-01 2.90159196e-01 4.11597908e-01\\n3.90187532e-01 5.01069069e-01 1.96007580e-01 2.06424426e-02\\n5.12788177e-01 4.56059813e-01 3.69313747e-01 2.01449707e-01\\n-7.03294352e-02 -9.29684490e-02 4.68275584e-02 -1.02850767e-02\\n2.95849949e-01 2.14971185e-01 2.41975319e-02 9.31453824e-01\\n4.69283640e-01 2.33042538e-01 7.39988506e-01 -5.48869729e-01\\n-3.62073839e-01 -9.28331167e-02 4.74578679e-01 -3.84040713e-01\\n-6.44315407e-02 -2.62221266e-02 -2.70430803e-01 1.15331747e-01\\n-5.07271290e-01 -2.09858894e-01 -6.33187667e-02 3.30033749e-02\\n9.35626253e-02 -4.66390550e-02 -2.38250613e-01 -1.75947428e-01\\n-1.93385333e-01 -1.02736726e-01 -5.50521672e-01 2.18545292e-02\\n-1.71140760e-01 -2.89344877e-01 -1.34555623e-01 -2.80635417e-01\\n1.73020158e-02 -3.64426762e-01 -1.86481550e-01 5.58647811e-02\\n2.26668745e-01 -1.41100362e-01 -9.26727280e-02 -1.74787849e-01\\n2.52689928e-01 2.80681372e-01 4.18067276e-01 3.69231626e-02\\n4.75505553e-02 -1.96277454e-01 -1.23627000e-01 1.08301155e-01\\n2.17101082e-01 1.78264022e-01 -1.37645509e-02 4.07945573e-01\\n-3.80648315e-01 -2.36384973e-01 -3.04590575e-02 4.74814773e-01\\n-5.19779146e-01 4.66234935e-03 1.60524741e-01 2.75635839e-01\\n2.42030323e-02 3.08335125e-02 -2.24676445e-01 3.66166942e-02\\n-2.69231200e-01 -4.17550087e-01 3.02157164e-01 -2.64477916e-02\\n-1.75432816e-01 5.30268997e-02 8.08938444e-02 1.16766088e-01\\n-2.29973868e-01 -1.78334653e-01 -1.40094506e-02 1.16368614e-01\\n2.70970404e-01 2.35928327e-01 -2.40115345e-01 -2.86209136e-01\\n-3.74409020e-01 1.27561614e-01 -2.61240631e-01 6.71515986e-02\\n-1.04527317e-01 2.55681783e-01 1.60360932e-01 1.34178311e-01\\n3.12719405e-01 5.60156885e-04 -1.22661293e-01 -1.72438115e-01\\n-2.95293003e-01 -3.15940797e-01 8.99973512e-02 3.27010304e-02\\n1.51964173e-01 -3.79569679e-01 -9.84428078e-02 -7.79747739e-02\\n-2.49047846e-01 -3.57141614e-01 3.70115740e-03 -2.45151564e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Full-Stack Java Software Engineer. This role is permanent position based in Bern Canton. Your Role: Develop & expand innovative web-based business applications for the business & for customers. Assist in driving the digitization of business processes. Partake in designing, implementing & documenting helpful software solutions & functions. Assist in the testing & release of our applications & provide support with associated questions or problems. Support Application Servers (Linux). Your Skills: 2 to 5 years of professional experience in a similar role. Strong Java programming skills. Sound expertise with web technologies including HTML, CSS & JavaScript. Good experience with Databases (preferably MySQL). Ideally experienced with Spring. Your Profile: Completed Computer Science University Degree. Self-driven, reliable, pragmatic, methodical & both solution & customer-oriented. Further education in Project Management a plus. Fluent German & English (spoken & written), French is also very advantageous. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Innovation\", \"Positivity\", \"Reliability\"]',\n", + " '[\"MySQL\", \"Web Application Security\", \"Project Management\", \"Programming (Music)\", \"Business Process\", \"Linux\", \"Receivables\", \"Cascading Style Sheets (CSS)\", \"Digitization\", \"JavaScript (Programming Language)\", \"Application Servers\", \"Computer Science\", \"Java (Programming Language)\", \"Idealization\", \"HyperText Markup Language (HTML)\", \"Software Engineering\"]',\n", + " \"['English']\"],\n", + " ['79',\n", + " 'back-end software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.new-cruit.com',\n", + " '[[-2.52629459e-01 3.44173402e-01 4.45862025e-01 6.23906590e-02\\n5.12043893e-01 -1.91010758e-01 6.94477707e-02 1.96339041e-01\\n8.32922384e-02 -5.35314679e-01 5.28245345e-02 -2.13162586e-01\\n-2.13881880e-01 -8.43519252e-03 1.44815117e-01 5.63795924e-01\\n3.21282774e-01 4.93694879e-02 -1.88681111e-01 4.52573508e-01\\n-2.34295651e-02 -1.59971237e-01 -2.45057028e-02 6.96723044e-01\\n4.02635366e-01 -4.54032794e-02 -6.83457851e-02 3.39340791e-02\\n-2.57432908e-01 -2.25557581e-01 5.18550038e-01 6.49552643e-02\\n-1.65702075e-01 -4.91090924e-01 1.71116903e-01 1.38989791e-01\\n-1.35769084e-01 1.26220882e-01 -1.17015645e-01 2.10567713e-01\\n-5.78663945e-01 -2.40624160e-01 1.82870761e-01 -1.09484576e-01\\n-2.28238583e-01 -4.35106844e-01 3.63817289e-02 -2.48748615e-01\\n1.83808327e-01 4.93896566e-02 -3.77140790e-01 2.46834680e-01\\n-3.49804372e-01 -1.86519399e-01 3.27568114e-01 6.67690575e-01\\n1.35845676e-01 -5.96476316e-01 -5.31105757e-01 -4.40885067e-01\\n5.18056341e-02 -1.17855549e-01 7.33027458e-02 -3.30406040e-01\\n2.35667527e-01 -1.00713260e-02 3.42811905e-02 2.53360361e-01\\n-7.84041524e-01 -6.75998535e-03 -3.93786192e-01 1.85126960e-02\\n-3.99605781e-01 -5.15440144e-02 -4.51289266e-01 -2.33670995e-02\\n-1.15439400e-01 4.28910315e-01 4.87415940e-02 1.08806649e-02\\n-2.63902903e-01 2.50999987e-01 -3.01393598e-01 3.58586460e-01\\n2.95333564e-01 1.37247711e-01 4.02073264e-01 5.06426275e-01\\n-4.92559642e-01 5.22469997e-01 2.71241188e-01 -3.56106848e-01\\n2.85269409e-01 1.83862776e-01 3.78057420e-01 1.07572690e-01\\n1.68036401e-01 1.61322355e-01 -1.45484194e-01 3.43868494e-01\\n2.69989878e-01 -2.91497558e-01 -3.20349522e-02 -2.82433331e-01\\n2.24222373e-02 1.04608135e-02 1.00730613e-01 2.22989291e-01\\n-3.02136898e-01 5.03085256e-01 6.25512823e-02 -2.64079124e-01\\n-2.09150702e-01 -4.29202139e-01 -1.46537393e-01 8.33792388e-02\\n-8.86618160e-03 1.76348701e-01 2.72630483e-01 9.89783704e-02\\n1.57776088e-01 9.35270339e-02 6.76951781e-02 8.74208152e-01\\n-3.85554768e-02 2.71028206e-02 -2.72867680e-01 2.68353462e-01\\n2.04823047e-01 -3.27082783e-01 1.03580169e-01 2.13063210e-01\\n-1.63754091e-01 -1.44316450e-01 -3.76063406e-01 4.12009478e-01\\n-6.15235083e-02 -1.56853229e-01 -3.21053326e-01 1.65689692e-01\\n-3.27442726e-03 -5.20593226e-01 7.37536490e-01 -2.09342521e-02\\n2.41540954e-01 5.97160496e-02 1.30263343e-01 -5.91147430e-02\\n-8.74198973e-02 1.97835371e-01 1.23046868e-01 2.37435400e-01\\n-3.08478683e-01 -2.57519424e-01 -2.03671455e-01 2.44564429e-01\\n-3.66788179e-01 1.95948049e-01 -3.10803354e-01 -9.53772813e-02\\n2.72348374e-01 2.46886805e-01 -4.18192625e-01 9.23676491e-02\\n-1.09482422e-01 -8.05328637e-02 -2.65676267e-02 4.40333694e-01\\n-1.74382806e-01 1.87116832e-01 9.78515893e-02 -3.75479981e-02\\n6.53807044e-01 2.48010278e-01 2.07100779e-01 -2.99526900e-02\\n4.51596528e-01 -1.07376315e-01 8.63954648e-02 6.61983863e-02\\n-5.41783810e-01 3.07289779e-01 -1.17348343e-01 -1.45045342e-02\\n4.11962830e-02 -1.19630501e-01 3.00747424e-01 -2.28658795e-01\\n-1.01059988e-01 -2.03454986e-01 -3.73826683e-01 -1.72878951e-01\\n-1.96190178e-01 -7.70121887e-02 3.76635402e-01 -5.34974277e-01\\n-5.64226843e-02 3.18215162e-01 -6.72423005e-01 -1.65108517e-01\\n2.80361086e-01 2.36525655e-01 1.00475222e-01 1.07407719e-01\\n-1.27873689e-01 -6.15840614e-01 4.16055955e-02 -5.56906998e-01\\n-5.08829713e-01 1.00571863e-01 -3.42484742e-01 2.00262800e-01\\n2.89539378e-02 6.95717782e-02 -1.96545660e-01 8.30118358e-02\\n-2.43504927e-01 -1.40314549e-02 1.19549334e-01 7.96985924e-02\\n2.11558372e-01 1.11827038e-01 -3.66513610e-01 5.18300116e-01\\n-2.60955155e-01 4.61858720e-01 9.18685421e-02 -1.00591838e+00\\n5.88422239e-01 3.41479003e-01 -1.09247766e-01 -4.05876726e-01\\n3.92090768e-01 -4.02173430e-01 -3.62899527e-02 1.30129308e-01\\n-2.49703199e-01 -2.56904572e-01 2.71944880e-01 -1.79742903e-01\\n-3.61398369e-01 5.45851290e-01 -3.13703455e-02 1.13330573e-01\\n2.81052560e-01 -2.64893591e-01 -2.12522760e-01 6.44372180e-02\\n-1.36220127e-01 -1.73466042e-01 -6.08488858e-01 9.64594632e-02\\n-2.67771375e-03 -5.03803909e-01 -1.03234068e-01 -5.09714127e-01\\n-2.48162031e-01 -4.38020319e-01 -3.00733119e-01 1.58568859e-01\\n2.53807604e-01 1.59623131e-01 -9.57479477e-02 -5.13354056e-02\\n-3.47690284e-02 -7.84690142e-01 -6.29080907e-02 1.78161204e-01\\n3.88362318e-01 2.41264790e-01 -8.92814994e-03 -5.36340810e-02\\n7.98486546e-02 5.79920828e-01 -3.13425124e-01 -2.63456076e-01\\n1.64162815e-01 1.79011613e-01 -4.02446575e-02 -1.45627454e-01\\n6.67357817e-02 3.92974347e-01 -3.03610772e-01 2.41098590e-02\\n6.85065836e-02 -1.00797296e-01 4.62044805e-01 3.90694104e-03\\n-3.91950250e-01 -1.44121960e-01 -1.12470761e-01 1.48750767e-01\\n-6.95654035e-01 -2.66852260e-01 6.69169724e-01 1.84118837e-01\\n2.40896985e-01 1.69470549e-01 1.35775760e-01 -7.85466209e-02\\n-2.91618586e-01 -2.81389475e-01 4.71693516e-01 1.42373145e-01\\n1.08405948e-01 1.17338583e-01 -8.60901028e-02 -6.53682888e-01\\n-3.02160668e+00 -1.23367876e-01 1.77457675e-01 -1.49558336e-01\\n1.54940173e-01 -1.28091410e-01 1.82346553e-01 -1.70394599e-01\\n-3.48404348e-01 -4.51581366e-02 -1.12588331e-01 -6.12833239e-02\\n3.03010382e-02 2.15196297e-01 1.48208961e-01 1.05574965e-01\\n2.40968719e-01 -1.78380415e-01 -6.77975565e-02 3.31111699e-01\\n-6.40313625e-02 -7.46929586e-01 1.30374059e-01 -1.57523863e-02\\n1.92631468e-01 1.20495848e-01 -3.93498361e-01 -1.12514615e-01\\n-3.64770532e-01 -1.86699301e-01 5.54049760e-02 -2.29429796e-01\\n-2.08803728e-01 3.52460071e-02 1.50268912e-01 -1.02102630e-01\\n8.49925354e-02 -3.81473750e-01 -1.21511616e-01 -4.46377367e-01\\n9.49458256e-02 -7.31945813e-01 -1.61614195e-02 -1.90039679e-01\\n6.17086351e-01 -1.36192054e-01 2.50862926e-01 1.39882550e-01\\n1.40470117e-01 4.69379760e-02 7.86319524e-02 2.58658808e-02\\n-2.00941518e-01 -3.25023532e-01 -7.53650591e-02 -1.03733584e-01\\n7.54778504e-01 3.23911667e-01 -1.03402816e-01 -5.74167185e-02\\n1.19169220e-01 -3.00897568e-01 -5.40466368e-01 -1.83131456e-01\\n-1.75716802e-01 -1.53456196e-01 -6.68267310e-01 -4.39526021e-01\\n-3.76052439e-01 -9.81768966e-02 -1.56072021e-01 7.60220170e-01\\n-2.28229284e-01 -2.70134389e-01 3.40442918e-02 -5.37388980e-01\\n1.61362097e-01 -1.75772458e-01 1.15837485e-01 -2.97041923e-01\\n-2.96282828e-01 -5.29393435e-01 5.29293679e-02 1.27877090e-02\\n-8.89407024e-02 -1.97517097e-01 3.15782777e-03 -8.41364190e-02\\n-3.51390123e-01 -4.90815461e-01 4.16986555e-01 1.21488214e-01\\n3.34602982e-01 1.57761991e-01 4.57187682e-01 -7.15053305e-02\\n3.99711639e-01 1.89930182e-02 -8.14265385e-02 -3.57591599e-01\\n1.65344104e-01 4.49354276e-02 6.04136050e-01 -1.92642063e-01\\n-1.26157120e-01 2.59796679e-01 -2.77426690e-01 -8.99136662e-02\\n4.80458617e-01 -3.46991941e-02 7.20962044e-03 -5.33468090e-02\\n2.67772466e-01 -3.24091613e-01 -2.54160166e-01 8.38770643e-02\\n7.99987465e-02 7.82913983e-01 -2.75510103e-02 -5.05861819e-01\\n-1.10338494e-01 4.74218667e-01 -1.15453660e-01 1.41885042e-01\\n-2.72034556e-01 1.04855150e-01 -1.37051895e-01 3.82102221e-01\\n3.44623215e-02 -2.03908786e-01 -2.31932834e-01 -1.25019625e-01\\n-1.39573649e-01 3.14118713e-01 1.81366101e-01 6.92413971e-02\\n-3.81642468e-02 -3.09711277e-01 -1.79336578e-01 1.60266861e-01\\n2.33946756e-01 4.25576299e-01 1.05251171e-01 -3.36875141e-01\\n-7.99209550e-02 3.02994937e-01 -2.55585968e-01 1.99892893e-01\\n-2.57109225e-01 2.14733049e-01 -5.36481977e-01 -2.39596695e-01\\n-2.57408977e-01 -4.84862089e-01 1.82840198e-01 4.75107133e-01\\n1.20610699e-01 -1.61464047e-02 1.10419750e-01 -4.97041762e-01\\n3.00734967e-01 3.26716214e-01 9.50066671e-02 1.05327189e-01\\n-1.03310689e-01 6.82955086e-01 -1.74146891e-02 -2.18716040e-01\\n-1.60640329e-01 5.40904514e-02 -2.67390549e-01 -2.44346172e-01\\n1.02685139e-01 -5.67696273e-01 -7.53526688e-02 5.04691780e-01\\n1.32942110e-01 -2.52341062e-01 -3.16964120e-01 2.39024699e-01\\n5.59407547e-02 -2.60295600e-01 -2.54956424e-01 -9.28423330e-02\\n2.42276073e-01 -1.83577806e-01 3.31969529e-01 -4.38617766e-01\\n2.90286299e-02 -1.34775890e-02 -3.50867659e-02 5.52272320e-01\\n1.30793080e-01 1.85309976e-01 -1.72013924e-01 -8.85182023e-02\\n5.49534082e-01 3.09601892e-02 -1.52427673e-01 -6.66072294e-02\\n1.06962606e-01 -2.56585747e-01 -4.70933437e-01 2.02568974e-02\\n-8.38004798e-02 -1.28317654e-01 2.44886689e-02 1.61630780e-01\\n3.30508053e-02 1.31029636e-01 -5.94644785e-01 -3.56358320e-01\\n-3.53924155e-01 -6.17556944e-02 5.43229356e-02 -5.97023249e-01\\n-9.73308906e-02 -9.58170742e-02 -6.23279452e-01 2.57559031e-01\\n-7.00980797e-02 -1.88201115e-01 2.79428244e-01 1.76112652e-01\\n-1.95934832e-01 -2.77131915e-01 1.94132701e-02 2.45323718e-01\\n-2.47798428e-01 -3.83297741e-01 -8.40785950e-02 -1.02265096e+00\\n2.54599273e-01 8.81804377e-02 -3.00135106e-01 1.74438417e-01\\n-1.34246781e-01 -7.62310028e-01 8.14684108e-02 -4.14375752e-01\\n-9.17230770e-02 5.77824377e-02 -2.52718121e-01 -3.53901178e-01\\n7.02924728e-02 -1.02988906e-01 -3.21350634e-01 4.77922142e-01\\n-3.76991510e-01 4.23817277e-01 -1.00547791e-01 1.00790113e-01\\n5.70624024e-02 -2.24005610e-01 1.03113815e-01 -2.94039458e-01\\n-4.90265816e-01 -3.64668339e-01 -3.31977993e-01 -3.53167295e-01\\n1.26190307e-02 -3.75614583e-01 -1.61943957e-01 8.25321004e-02\\n3.95506889e-01 2.10240617e-01 -9.00697038e-02 -2.90160745e-01\\n5.50329573e-02 -4.76190537e-01 7.77752250e-02 -2.36528635e-01\\n7.62994261e-03 -2.69861221e-01 2.81271040e-01 6.64549172e-02\\n2.02346310e-01 -3.46492290e-01 4.51571912e-01 -2.32075065e-01\\n-3.53937656e-01 -2.55619824e-01 4.91918959e-02 3.43124010e-02\\n3.07493329e-01 -4.96089995e-01 3.72170843e-02 1.93662480e-01\\n1.46189526e-01 1.50524974e-02 1.96991101e-01 -9.22488347e-02\\n1.95482131e-02 1.89220265e-01 -3.57419997e-01 2.09988877e-01\\n7.21627474e-01 1.09285221e-01 1.47000521e-01 1.68627158e-01\\n2.24640325e-01 3.69526118e-01 6.50764883e-01 -5.87636009e-02\\n-1.67114325e-02 3.10909539e-01 9.01329517e-02 -4.48221862e-01\\n-1.03411794e-01 -8.16141888e-02 -1.34522855e-01 -3.51212502e-01\\n7.18336761e-01 4.55469042e-01 -3.63587677e-01 -2.75334150e-01\\n-2.87463993e-01 -2.38600537e-01 3.59923124e-01 5.73926009e-02\\n-6.26214817e-02 1.36710145e-02 5.33423126e-01 3.71365948e-03\\n2.51672477e-01 5.83454669e-01 -2.70507127e-01 -4.26637411e-01\\n-1.39353141e-01 2.79175043e-01 2.35196166e-02 4.65398252e-01\\n-2.58105755e-01 1.25038877e-01 4.49249372e-02 9.12460685e-02\\n-2.43405014e-01 1.52760044e-01 1.68232217e-01 1.14866622e-01\\n3.08111578e-01 -9.59058106e-02 5.70454240e-01 4.90720481e-01\\n2.38117233e-01 4.34093356e-01 3.78032953e-01 5.41085340e-02\\n3.27759087e-01 6.44500673e-01 4.57246780e-01 1.33670047e-01\\n9.92618129e-02 1.71937436e-01 2.15590551e-01 5.83836176e-02\\n3.98519665e-01 4.84717309e-01 1.76751077e-01 8.40822816e-01\\n3.39753866e-01 4.02478456e-01 7.11822867e-01 -7.28730381e-01\\n-4.14266288e-01 5.33480532e-02 6.43004298e-01 -2.83435374e-01\\n4.47969399e-02 3.13256145e-01 -2.01476201e-01 2.64459401e-01\\n-5.15355766e-01 -3.35969687e-01 9.23977792e-03 5.80548272e-02\\n3.32334228e-02 -1.97650522e-01 -9.98132303e-02 1.60991117e-01\\n-1.54560313e-01 -1.64471209e-01 -3.33602726e-01 -9.27473530e-02\\n-3.15338254e-01 1.13450803e-01 3.59370140e-03 -1.98736861e-01\\n-8.51261690e-02 -3.92834067e-01 -6.33164793e-02 -5.63281178e-02\\n3.60687643e-01 -5.60680144e-02 -1.50373772e-01 -1.13078840e-02\\n1.74154118e-01 2.72796392e-01 6.25109732e-01 4.91266176e-02\\n9.50456932e-02 -1.52040496e-01 -2.00154930e-01 2.18478218e-01\\n8.63993466e-02 6.07591793e-02 6.27570366e-03 3.65369409e-01\\n-2.35750481e-01 -1.74737453e-01 1.20177262e-01 3.42562467e-01\\n-3.40080887e-01 -4.36298028e-02 -2.30271712e-01 1.38296559e-01\\n6.71824217e-02 1.43733352e-01 -2.21462220e-01 -4.19094376e-02\\n-1.06835902e-01 -6.02924347e-01 4.16045040e-01 -2.46724159e-01\\n-1.66427344e-01 -7.47293755e-02 2.58477628e-01 2.80340642e-01\\n-3.20516944e-01 -1.42760994e-02 -7.15295523e-02 1.46856397e-01\\n2.32023988e-02 3.76236796e-01 -8.77024010e-02 -2.37568676e-01\\n-2.80144900e-01 2.42821842e-01 2.92303227e-02 1.34233996e-01\\n1.37099475e-02 4.56862837e-01 7.24967048e-02 -2.92163604e-04\\n4.18716997e-01 2.10595466e-02 -3.39456022e-01 -1.79073080e-01\\n-2.34739423e-01 -2.23755669e-02 -7.11934119e-02 -7.09626898e-02\\n1.53066576e-01 -3.82433593e-01 6.68995315e-04 -2.03752980e-01\\n-9.70880240e-02 -4.17935044e-01 -1.34624690e-01 -4.14729826e-02]]',\n", + " 'As a Backend Software Engineer you will have an unusual and great opportunity to join us: a diverse and motivated team, committed to delivering value and creative services together with our clients and partners in the primary industry space. Responsibilities You will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a high-traffic distributed infrastructure by designing, implementing and testing simple, scalable and reliable solutions. This will include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability End-to-end responsibility on the applications implemented, including monitoring, identifying issues or bottlenecks and delivering improvements of the platform Optimise applications and components to maximize speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications About you Proven software development capabilities (5+ years hands-on experience) in any modern language (Java/Kotlin/Scala/C++/C#/Go/Python…) Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality overtime You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience designing data-models for relational and NoSQL data stores Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long term vision the adoption of new technologies Master’s or PhD degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently ',\n", + " '[\"Complex Problem Solving\", \"Leadership\", \"Collaboration\", \"Infrastructure\", \"Team Motivation\", \"Reliability\", \"Creativity\", \"Written English\"]',\n", + " '[\"Performance Improvement\", \"NoSQL\", \"Computer Science\", \"Collections\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Industrialization\", \"Scholastic READ 180\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Streamlines\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Prototyping\", \"Maintainability\", \"Library\", \"Iterators\", \"Software Engineering\", \"Micro Channel Architecture\", \"Message Passing\", \"Concurrent Versions System (Software)\", \"Business Process\", \"C# (Programming Language)\", \"Performance Metric\", \"Scalability\", \"Experience Design\", \"Software Development\", \"Algorithms\", \"Operational Data Store\", \"Custom Backend\", \"Quality Improvement\", \"Long-Term Potentiation\", \"Kotlin\", \"Adoptions\", \"RESTful API\", \"Java Scripting Languages\"]',\n", + " \"['English', 'Sundanese', 'North Ndebele']\"],\n", + " ['54',\n", + " 'devops engineer, genedata biologics',\n", + " 'Basel',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.genedata.com',\n", + " '[[-1.69523150e-01 3.19825441e-01 4.08377171e-01 -1.59712415e-02\\n5.68628192e-01 -9.49690565e-02 -7.24607557e-02 3.66208315e-01\\n-4.60393503e-02 -4.28351879e-01 -3.31419744e-02 -2.50325799e-01\\n-7.22204745e-02 1.58022121e-01 1.21643066e-01 4.33333069e-01\\n3.59716475e-01 1.38958231e-01 -1.41149908e-01 3.54331344e-01\\n1.16978735e-02 -1.60774738e-01 5.42537011e-02 8.68497312e-01\\n2.75335133e-01 1.45401573e-02 -1.62993923e-01 -7.04530030e-02\\n-2.31061846e-01 -1.64121673e-01 4.84606564e-01 9.13866237e-03\\n-1.27304882e-01 -3.87431860e-01 1.09087497e-01 7.55339116e-02\\n-2.90875196e-01 -2.20784545e-02 -1.77963927e-01 1.17137887e-01\\n-5.03516197e-01 -2.82112539e-01 3.95090133e-02 -2.49374267e-02\\n-2.76795298e-01 -2.60850579e-01 1.13234401e-01 -4.90063578e-02\\n2.46764243e-01 1.06271856e-01 -6.41632140e-01 9.54470411e-02\\n-3.92902613e-01 -2.03401476e-01 3.48890334e-01 6.76024795e-01\\n4.53432351e-02 -4.12259459e-01 -5.74603975e-01 -3.81613165e-01\\n-2.14871932e-02 -1.28638238e-01 -1.21168774e-02 -3.35526526e-01\\n2.85394818e-01 5.93488924e-02 9.51724499e-02 2.60312736e-01\\n-8.69517267e-01 -7.31318593e-02 -2.48408496e-01 -1.49784712e-02\\n-3.99319410e-01 1.59207620e-02 -3.48359823e-01 -1.14956886e-01\\n-2.00684562e-01 4.74097431e-01 4.55482230e-02 1.49114236e-01\\n-2.45470256e-01 3.21167827e-01 -2.38628417e-01 4.13461566e-01\\n2.34357372e-01 1.85906395e-01 2.36392260e-01 4.26935554e-01\\n-4.62065816e-01 4.72172439e-01 2.21478701e-01 -2.21754551e-01\\n2.32138008e-01 7.60732293e-02 3.30681264e-01 6.98821023e-02\\n1.65382236e-01 1.01575285e-01 -2.56095648e-01 2.76887953e-01\\n2.30976701e-01 -2.64768928e-01 5.61213121e-03 -1.44538015e-01\\n5.45544215e-02 -1.10821761e-02 2.10196767e-02 2.20088348e-01\\n-3.16050082e-01 3.71842891e-01 1.59433722e-01 -2.42536128e-01\\n-1.86201334e-01 -5.27682900e-01 -8.50154459e-02 1.02491066e-01\\n-1.05620902e-02 8.97506252e-05 2.21573114e-01 1.11803263e-02\\n3.18246007e-01 9.34616178e-02 6.69263303e-02 8.76152396e-01\\n-1.71973258e-01 -1.71828438e-02 -2.84300238e-01 2.41001695e-01\\n1.28416359e-01 -2.50951648e-01 1.52597442e-01 1.32525474e-01\\n-1.71166211e-02 1.18869869e-02 -2.56879926e-01 3.75991374e-01\\n1.03284232e-02 -1.94217950e-01 -2.47745812e-01 3.03407133e-01\\n-8.46239477e-02 -4.44703221e-01 5.85891724e-01 1.35878790e-02\\n1.47686258e-01 -1.38425946e-01 8.04063305e-02 -2.54765227e-02\\n-5.11916205e-02 1.79073185e-01 6.37496486e-02 1.63923562e-01\\n-3.39504004e-01 -3.48111272e-01 -1.78644717e-01 1.23850949e-01\\n-2.72248209e-01 1.78822011e-01 -3.27588432e-02 -1.18826777e-01\\n2.56015062e-01 1.27487481e-01 -3.06014478e-01 1.57511771e-01\\n-1.56176478e-01 -2.81034745e-02 -7.35240337e-03 3.73016775e-01\\n-2.00857997e-01 1.60982519e-01 -4.83869947e-02 -1.05689779e-01\\n5.22619963e-01 1.68064788e-01 2.05680311e-01 -6.08065166e-03\\n3.26771230e-01 -8.01899731e-02 2.63964891e-01 6.32661358e-02\\n-6.86229527e-01 3.83514404e-01 2.94585060e-03 -1.77081466e-01\\n1.46837503e-01 -9.34691131e-02 3.69692981e-01 -3.09130073e-01\\n9.42510664e-02 -1.38732284e-01 -4.37074184e-01 -4.01054084e-01\\n-1.81613237e-01 -3.19040716e-02 3.44761431e-01 -4.89618987e-01\\n-1.55983686e-01 1.90277025e-01 -5.17658710e-01 -1.88104272e-01\\n1.76180184e-01 2.99023360e-01 1.38880163e-01 3.95734422e-02\\n-2.26868361e-01 -6.40342236e-01 5.20347580e-02 -5.40531456e-01\\n-2.17988387e-01 5.90698645e-02 -4.13146973e-01 1.92284137e-01\\n-2.23988779e-02 7.04785287e-02 -8.37423801e-02 7.38143474e-02\\n-3.72117341e-01 -1.39347106e-01 7.83644468e-02 3.05564664e-02\\n3.03632915e-01 6.64602220e-02 -3.07497501e-01 4.77437377e-01\\n-1.93293378e-01 5.23281038e-01 2.01012239e-01 -8.90274763e-01\\n5.66449642e-01 4.49444413e-01 -4.81768185e-03 -4.37739789e-01\\n5.28448462e-01 -4.74673837e-01 -1.03414550e-01 8.89598355e-02\\n-3.82881224e-01 -2.53200322e-01 1.85828611e-01 -1.85699940e-01\\n-2.41217613e-01 5.36592484e-01 -5.31897619e-02 1.22261703e-01\\n3.63249660e-01 -3.70205611e-01 -1.10581309e-01 1.94475800e-03\\n-2.10986547e-02 -2.90621281e-01 -5.64029157e-01 -4.57195640e-02\\n-7.24885762e-02 -4.23884928e-01 -1.44336700e-01 -4.21934664e-01\\n-1.26473099e-01 -2.77486354e-01 -2.64028639e-01 1.71844274e-01\\n2.14582264e-01 3.01922504e-02 -1.10108688e-01 1.08907156e-01\\n1.01692555e-02 -7.27389514e-01 9.57744867e-02 1.35612622e-01\\n4.09266233e-01 2.26215854e-01 1.89594090e-01 -1.01695418e-01\\n1.44564763e-01 6.04518414e-01 -2.81608939e-01 -3.42316628e-01\\n1.03332669e-01 1.82519436e-01 1.06046526e-02 -9.40589979e-02\\n1.84142053e-01 2.90192544e-01 -3.21844876e-01 3.32640037e-02\\n-4.79082018e-02 -8.91682953e-02 3.91070455e-01 -1.10669136e-01\\n-3.82619083e-01 -1.83560997e-01 -1.18094712e-01 5.58090247e-02\\n-6.13374770e-01 -2.07464233e-01 4.34046239e-01 1.14938281e-01\\n1.53022677e-01 2.36911938e-01 1.66698262e-01 2.57026441e-02\\n-3.07152778e-01 -3.37706268e-01 3.22429717e-01 1.36915356e-01\\n1.10930718e-01 2.86263637e-02 -5.16535752e-02 -6.58324599e-01\\n-2.94787788e+00 -1.13596104e-01 1.55140787e-01 -2.68149793e-01\\n4.23849642e-01 -1.01496845e-01 1.56961530e-01 3.38395797e-02\\n-2.26592660e-01 2.16750465e-02 -6.64617643e-02 -1.17585056e-01\\n8.07621777e-02 2.02082783e-01 3.52854803e-02 1.51310563e-01\\n1.45469487e-01 -2.87697434e-01 5.91152571e-02 3.17447037e-01\\n-1.35505766e-01 -7.96962500e-01 1.88196644e-01 -5.28429709e-02\\n1.84746236e-01 2.01750100e-01 -5.27199149e-01 -8.77359882e-02\\n-1.97188050e-01 -1.70902252e-01 1.84279121e-02 -3.15267026e-01\\n-1.75675586e-01 1.82019949e-01 2.47381270e-01 -1.45268992e-01\\n-3.07186581e-02 -3.58940303e-01 -1.28393680e-01 -6.49040103e-01\\n2.59566069e-01 -7.25894213e-01 2.77758017e-02 -1.91367775e-01\\n6.65437818e-01 -2.75763273e-01 2.77564730e-02 9.88833010e-02\\n2.61541367e-01 1.76414967e-01 1.13582619e-01 2.15509683e-02\\n-2.31556833e-01 -3.33618730e-01 -1.23900972e-01 -3.02786499e-01\\n5.92054844e-01 5.12880743e-01 -2.06457883e-01 8.91586617e-02\\n7.66231120e-02 -3.57572079e-01 -4.83876497e-01 -2.51234233e-01\\n-1.15615904e-01 -1.29324615e-01 -6.97894454e-01 -4.43426609e-01\\n-2.24776328e-01 -1.03771590e-01 -1.23413235e-01 7.26536989e-01\\n-3.59957755e-01 -3.65983427e-01 -5.80110252e-02 -6.78676486e-01\\n3.52647483e-01 -2.47136682e-01 5.68761304e-02 -3.23621809e-01\\n-2.39675656e-01 -3.83464158e-01 1.98912114e-01 -6.74836263e-02\\n-8.32306668e-02 -2.07519516e-01 -4.63842601e-02 -1.47503972e-01\\n-2.30184972e-01 -5.09384632e-01 5.01326859e-01 1.71006441e-01\\n4.67567086e-01 1.60499007e-01 3.92027318e-01 -1.00192137e-01\\n2.98035622e-01 8.46222192e-02 -9.56611037e-02 -3.56285751e-01\\n1.73924029e-01 1.13965817e-01 4.96148139e-01 -1.86498225e-01\\n2.65002064e-03 1.29890129e-01 -2.96549976e-01 -1.68262899e-01\\n3.06311429e-01 7.31500089e-02 -1.15258366e-01 -8.87201279e-02\\n3.74505043e-01 -4.39236015e-01 -1.52918696e-01 1.48669571e-01\\n1.28851488e-01 6.88226461e-01 -2.10308153e-02 -4.55970675e-01\\n-9.83574465e-02 5.23547292e-01 3.82679291e-02 4.81955670e-02\\n-1.07181355e-01 8.68616998e-02 -1.44232571e-01 3.35872412e-01\\n4.05211858e-02 -2.31066555e-01 -3.20666611e-01 -1.04577422e-01\\n-7.07095563e-02 3.99901092e-01 6.57235086e-02 1.71039283e-01\\n1.94352940e-02 -3.90448689e-01 -1.85824871e-01 2.68064499e-01\\n1.37210995e-01 5.10089874e-01 1.44069463e-01 -2.07786769e-01\\n1.27427187e-02 4.02851552e-01 -2.08572417e-01 3.29023868e-01\\n-1.65273160e-01 1.23706207e-01 -5.59564531e-01 -2.06682444e-01\\n-3.34111184e-01 -3.55124176e-01 1.57965004e-01 3.57743979e-01\\n1.94206730e-01 -2.51299646e-02 4.80717160e-02 -3.92621815e-01\\n2.09711015e-01 2.00897247e-01 9.55500379e-02 3.12888958e-02\\n-5.29631451e-02 6.57721221e-01 3.23811807e-02 -1.92982942e-01\\n-1.16225630e-01 5.25392368e-02 -1.84131548e-01 -1.14621937e-01\\n2.23191649e-01 -5.27357459e-01 -1.49204820e-01 4.74297851e-01\\n9.38007459e-02 -1.14794165e-01 -1.49673715e-01 3.27015877e-01\\n6.37401342e-02 -1.77546769e-01 -3.96411419e-01 2.68395469e-02\\n3.33310187e-01 9.21128988e-02 3.22574437e-01 -5.36340415e-01\\n-2.91029643e-02 4.87420112e-02 7.38196075e-02 4.60687846e-01\\n2.19637901e-02 -2.15530805e-02 -1.32633284e-01 -1.55590519e-01\\n4.62777555e-01 -3.72105464e-03 -1.00493520e-01 -4.53177616e-02\\n7.67569989e-02 -1.24546908e-01 -4.76082414e-01 5.17511554e-02\\n-4.20186371e-02 -1.91390350e-01 -5.41892536e-02 1.72158703e-01\\n1.55116335e-01 8.76512975e-02 -5.55608451e-01 -1.64522350e-01\\n-1.74549773e-01 1.38918832e-01 2.39093155e-02 -4.96697724e-01\\n7.27561209e-03 -2.43933462e-02 -6.17063820e-01 2.54291773e-01\\n-2.33470827e-01 -5.64701557e-02 2.41642654e-01 4.68929261e-02\\n-2.94498593e-01 -9.77524146e-02 1.47781312e-01 3.06969166e-01\\n-2.67386794e-01 -3.80507767e-01 -5.44847921e-02 -9.69862342e-01\\n1.22737214e-01 -7.90049955e-02 -1.99114531e-01 1.92134291e-01\\n6.50363117e-02 -7.41300941e-01 1.89023435e-01 -3.76494527e-01\\n-1.97161078e-01 2.91096698e-02 -3.17306697e-01 -3.17908257e-01\\n1.66587859e-01 -1.33196592e-01 -2.88195312e-01 3.48298669e-01\\n-3.39055449e-01 3.33755374e-01 -1.27165705e-01 4.14873064e-02\\n1.73163205e-01 -2.78643727e-01 1.99293107e-01 -3.32616031e-01\\n-4.33565497e-01 -2.82114834e-01 -3.86240929e-01 -4.26141918e-01\\n-6.16344586e-02 -3.24924529e-01 -7.15945959e-02 -1.05166808e-02\\n3.72518063e-01 1.52537031e-02 -1.75773308e-01 -2.52748489e-01\\n1.44567475e-01 -5.36238730e-01 1.26344442e-01 -6.13016635e-02\\n-4.55752611e-02 -8.04835558e-02 3.27935874e-01 9.76392329e-02\\n2.84355104e-01 -3.07380259e-01 4.32286590e-01 -2.37394571e-01\\n-3.94829959e-01 -2.45231315e-01 1.72596481e-02 3.73986922e-02\\n3.19693595e-01 -5.05958796e-01 -6.56296983e-02 3.21973532e-01\\n2.77238131e-01 2.13909764e-02 1.15014136e-01 -2.02715784e-01\\n4.80063893e-02 1.85811490e-01 -5.17018437e-01 1.25343591e-01\\n8.29329133e-01 1.13384418e-01 9.07536075e-02 2.62059003e-01\\n9.46845561e-02 3.20416510e-01 5.42597294e-01 -5.31152114e-02\\n-1.66910067e-01 3.73732090e-01 1.42731696e-01 -4.30932164e-01\\n-2.80078888e-01 3.38966586e-02 -2.20240861e-01 -5.17871976e-01\\n6.49480700e-01 3.91274929e-01 -5.03449917e-01 -2.61304379e-01\\n-1.82487726e-01 -1.08475082e-01 2.88784266e-01 -1.67719841e-01\\n-4.73861173e-02 -1.14523217e-01 3.66246521e-01 -2.38902103e-02\\n2.72657275e-01 6.03528917e-01 -5.82956448e-02 -3.80357176e-01\\n-1.36785328e-01 1.49857789e-01 4.37492058e-02 3.66552532e-01\\n-1.14739865e-01 1.75508738e-01 4.97278199e-02 2.25173786e-01\\n-2.79858649e-01 1.22312024e-01 5.75552583e-02 6.91215694e-02\\n1.65868253e-01 1.04539692e-01 5.77757418e-01 4.72931981e-01\\n2.81918913e-01 4.73100662e-01 2.80699372e-01 5.18417880e-02\\n4.94774133e-01 5.43698668e-01 4.09346581e-01 1.77940018e-02\\n-1.52973197e-02 1.87120229e-01 1.25025660e-01 -2.97119953e-02\\n3.76255244e-01 4.01301026e-01 1.44196153e-01 9.29425299e-01\\n2.27006346e-01 3.47128659e-01 7.18745470e-01 -5.71046770e-01\\n-3.85482609e-01 3.09947133e-02 6.50817633e-01 -5.86200237e-01\\n6.00607879e-02 7.66484439e-02 -2.67559409e-01 1.98509902e-01\\n-5.09359181e-01 -2.18710139e-01 6.67666271e-02 1.15288764e-01\\n-2.33700965e-02 -8.68032649e-02 -1.47720233e-01 1.34418473e-01\\n-1.29581600e-01 -2.12148011e-01 -4.32810158e-01 -1.93697363e-01\\n-2.10570648e-01 6.46115690e-02 -6.80867583e-02 -2.24780500e-01\\n3.40802670e-02 -3.48901033e-01 9.93169993e-02 1.37158064e-02\\n4.18153763e-01 -8.58591422e-02 -3.14194709e-03 -3.03081013e-02\\n3.09955537e-01 2.11959928e-01 6.69453025e-01 3.56251970e-02\\n1.81093216e-01 -2.59902269e-01 -2.53749311e-01 2.10558414e-01\\n1.00429058e-01 7.98162669e-02 4.53711972e-02 2.86670268e-01\\n-2.27514058e-01 -1.34462893e-01 8.05089548e-02 2.75910228e-01\\n-3.54013383e-01 -6.96183890e-02 -1.14449874e-01 7.83801526e-02\\n8.61885250e-02 1.94722205e-01 -2.19921917e-01 7.18716383e-02\\n-1.76585138e-01 -4.37105119e-01 4.08015549e-01 -2.16989905e-01\\n-1.57977670e-01 -3.21622491e-02 4.04590786e-01 2.10182548e-01\\n-3.23165059e-01 5.33735007e-02 -9.20294821e-02 2.10100710e-01\\n4.23870832e-02 2.55110741e-01 -2.21111506e-01 -3.59550834e-01\\n-3.04808259e-01 2.57264793e-01 -3.44090760e-02 5.70381880e-02\\n-3.38903069e-02 4.98192042e-01 4.76068631e-02 -3.05652507e-02\\n5.36664009e-01 -1.87651306e-01 -3.24882090e-01 -3.15354407e-01\\n-1.81762889e-01 -1.97047099e-01 -1.28536746e-01 -4.99667674e-02\\n2.14765519e-01 -3.67096156e-01 -1.18522085e-01 -1.96574420e-01\\n4.29852679e-03 -3.50048751e-01 -3.63499187e-02 -9.89696681e-02]]',\n", + " 'The Position We are looking for a qualified DevOps Engineer who is managing the deployment and customization of our successful Genedata Biopharma platform. Thousands of scientists across the globe work with our highly innovative platform in order to develop new, groundbreaking treatments for the most severe diseases. As part of a professional and dedicated engineering team, you will enable these scientists to fulfill their mission. Genedata’s Biopharma platform represents the very backbone of the data capturing and analysis workflows of the most important biopharma and biotech companies. It is installed either on premises or hosted in the cloud and constantly interoperates with numerous instruments and customer IT systems. As DevOps Engineer, you ensure the smooth and continuous running of this central piece of infrastructure and you configure the system to adapt it to customer specific needs. The focus of your responsibilities will be on our enterprise platforms Genedata Biologics® and Genedata Bioprocess®. This full-time position is based at our head offices in Basel, Switzerland. A part time employment (80-100%) is also an option. Key Responsibilities Manage the deployment of products, upgrades and customizations Develop customer specific configurations in SQL Use web services and scripts to integrate with customer IT systems Monitor, analyze, and tune the performance of installations Implement schedules for system backups and archive operations Develop automatic packaging and deployment procedures Administer Biopharma Platform installations in the cloud Consult and support customers with the migration of legacy data Document and communicate your work within the team and to other stakeholders Your Profile BSc or MSc in computer science, or related fields, or comparable on-the-job experience Good understanding of Linux systems Fluency in shell scripting and / or other scripting languages Experience with SQL and relational database systems Oracle DBA experience is an advantage Knowledge of cloud environments such as AWS or Azure is a plus Experience with web application servers, like Apache and Tomcat, is desirable Strong interpersonal skills and the motivation to learn continuously Good written and verbal communication and presentation skills in English The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Biopharma Platform As the market leader in biopharma R&D digitalization, our platform enables biopharma companies to develop the next generation of innovative medicines. It is uniquely designed to digitalize and streamline biopharma discovery, development and manufacturing processes and dramatically improve overall productivity, with the goal of identifying and developing novel therapeutics to address unmet medical needs. The award-winning Genedata Biopharma platform is used across the globe to achieve operational excellence by boosting the efficiency, throughput, and quality of biopharma R&D. It supports the entire end-to-end R&D workflow, from screening, protein engineering and optimization, expression, purification, characterization, analytics and QC, and developability assessment to upstream and downstream process development and drug formulation. The Genedata platform serves as an enterprise IT system that is at the core of complex biopharma discovery and development processes. Our customer base includes large biopharma and biotech companies, technology providers and contract research and manufacturing organizations. Genedata Biologics is a web application with an HTML/JavaScript-based presentation layer, a Java business-logic layer and an Oracle RDBMS-backed persistence layer. It is widely configurable, scalable, and extendable by third-party plug-ins. Are You Interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Legal authorization to work in the United States on a full-time basis for any employer is required. Genedata is an Equal Opportunity Employer.',\n", + " '[\"Verbal Communication Skills\", \"Adaptability\", \"Professionalism\", \"Management\", \"Scheduling\", \"Communications\", \"Operations\", \"Integration\", \"Presentations\", \"Innovation\", \"Positivity\", \"Persistence\"]',\n", + " '[\"Web Applications\", \"Document Enterprise Platform\", \"MSC Software\", \"Shell Script\", \"Computer Science\", \"Life Sciences\", \"Business Workflow Analysis\", \"Collections\", \"Analytics\", \"Data Capture (SQL)\", \"Downstream Processing\", \"Informatics\", \"Customer Support Analyst\", \"Authorization (Computing)\", \"Streamlines\", \"Clinical Research Informatics\", \"Installation\", \"Bioprocess\", \"Customer Development\", \"Linux\", \"Layering\", \"Contract Research Organization\", \"Instrumentation\", \"Application Servers\", \"Medic\", \"HyperText Markup Language (HTML)\", \"System Monitoring\", \"System Monitor\", \"Web Services\", \"Presentation Layer\", \"Apache Tomcat\", \"Biology\", \"Boosting\", \"Digitization\", \"Equalization\", \"JavaScript (Programming Language)\", \"Scalability\", \"Operational Excellence\", \"Adapter Scripting Language\", \"Archives\", \"Database Systems\", \"Pharmaceuticals\", \"Throughput\", \"Protein Engineering\", \"Process Development\", \"Relational Databases\", \"Language Experience Approach\", \"Scripting\", \"Workflows\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"DevOps\", \"Process Driven Development\", \"Business Logic\", \"Manufacturing Processes\"]',\n", + " \"['English']\"],\n", + " ['91',\n", + " 'data analyst',\n", + " 'Zürich',\n", + " 'Insurance Operators',\n", + " '',\n", + " '[[-2.70962358e-01 2.00909019e-01 5.57613373e-01 7.48285139e-03\\n5.31332195e-01 -1.03324644e-01 -1.42225819e-02 3.25893670e-01\\n1.15823578e-02 -3.63821983e-01 -7.25401789e-02 -1.32816106e-01\\n2.32939925e-02 6.13005608e-02 9.29291621e-02 4.56245929e-01\\n3.05883497e-01 3.22818235e-02 -1.82890952e-01 1.68466985e-01\\n6.99565783e-02 -1.33508474e-01 1.32929459e-01 6.34374976e-01\\n4.68142897e-01 9.10494626e-02 -2.47672722e-02 1.13211693e-02\\n-2.58401841e-01 -2.86539257e-01 5.37273347e-01 8.74685869e-02\\n-1.97160259e-01 -2.49143183e-01 1.18123434e-01 1.50698736e-01\\n-1.24423727e-01 2.57516024e-03 -6.10900633e-02 1.03679061e-01\\n-4.15764660e-01 -1.38788456e-02 -8.61369520e-02 5.54222502e-02\\n-3.18567842e-01 -4.38419312e-01 7.05530271e-02 -1.35578051e-01\\n1.16347656e-01 1.03399143e-01 -4.63057607e-01 3.67140174e-01\\n-3.18437427e-01 -1.95856884e-01 2.72453517e-01 6.84072316e-01\\n-4.42838669e-02 -4.13043201e-01 -4.88538951e-01 -2.72088975e-01\\n1.23921074e-01 -2.09418505e-01 1.16417624e-01 -2.30660096e-01\\n3.05499852e-01 4.66218032e-02 7.69084133e-03 2.00119406e-01\\n-6.57711208e-01 -4.63730097e-02 -3.57580900e-01 -4.95158806e-02\\n-4.41242307e-01 -8.83302465e-02 -3.49286318e-01 -9.50719267e-02\\n-1.25831559e-01 3.96033883e-01 -3.13073210e-02 1.20363526e-01\\n-1.40145764e-01 2.47234210e-01 -2.96931177e-01 2.65165538e-01\\n2.11940005e-01 1.70635179e-01 2.87849337e-01 3.53311598e-01\\n-4.44493175e-01 4.87813771e-01 3.57815504e-01 -3.41892272e-01\\n2.80457824e-01 -1.02810282e-02 3.83295178e-01 -8.66746064e-03\\n2.16340348e-01 1.54881135e-01 -1.31478518e-01 2.33108044e-01\\n2.06749380e-01 -1.63483918e-01 -3.25406529e-02 -2.18382657e-01\\n-6.62881061e-02 1.42657394e-02 2.63214447e-02 2.49180615e-01\\n-3.84046733e-01 4.07294124e-01 7.92260244e-02 -3.26379538e-01\\n-1.54020935e-01 -4.91917759e-01 -4.46010679e-02 2.76586652e-04\\n1.35822266e-01 1.97601110e-01 9.96346027e-02 2.36395508e-01\\n1.45615697e-01 -4.54763323e-02 1.72564805e-01 7.21430779e-01\\n2.34727096e-03 4.99664210e-02 -1.34051502e-01 2.58383125e-01\\n8.27990621e-02 -3.86444837e-01 1.65371612e-01 1.01340242e-01\\n-6.70982450e-02 -8.51885006e-02 -2.48841718e-01 1.65377796e-01\\n-7.39069134e-02 -2.29566693e-01 -2.39047259e-01 1.57509252e-01\\n-1.86669417e-02 -3.52540344e-01 5.57380021e-01 -1.23625800e-01\\n9.54969972e-02 -9.09869969e-02 -9.78846252e-02 -1.44858345e-01\\n-6.41870871e-02 2.30529919e-01 1.75320223e-01 1.28773928e-01\\n-2.06380695e-01 -1.94622621e-01 -1.78257331e-01 1.65742069e-01\\n-2.41669580e-01 7.47826621e-02 -2.97642231e-01 -1.01730607e-01\\n3.21198374e-01 9.89226922e-02 -3.22803199e-01 1.88397601e-01\\n-3.19598764e-02 -1.52520105e-01 -1.71381220e-01 4.15040404e-01\\n-1.93608105e-01 1.96616203e-01 -6.87498134e-03 -1.08908817e-01\\n7.03085005e-01 6.19349144e-02 2.99672365e-01 2.15520635e-02\\n2.87453026e-01 -3.39068621e-02 1.59804389e-01 -8.72654654e-03\\n-6.49005175e-01 4.63803411e-01 -1.25149697e-01 -2.00622588e-01\\n2.18360826e-01 8.31776485e-02 2.55142868e-01 -1.99240193e-01\\n5.84209040e-02 -1.15735374e-01 -2.07069069e-01 -3.33150804e-01\\n-1.63518772e-01 -5.44495136e-02 2.50199080e-01 -4.82742101e-01\\n-2.09051576e-02 3.20604354e-01 -6.24423087e-01 -1.59069821e-01\\n2.58403212e-01 2.32720271e-01 1.51802495e-01 2.70310700e-01\\n-1.27503321e-01 -4.58144128e-01 1.76685482e-01 -3.95042896e-01\\n-2.70003051e-01 1.92273125e-01 -2.44324774e-01 2.20595434e-01\\n6.21902831e-02 -6.04680330e-02 -7.87216276e-02 1.21372171e-01\\n-2.09407598e-01 -7.49578327e-03 1.74489334e-01 8.34263936e-02\\n3.51644665e-01 8.56916606e-02 -4.28915322e-01 5.89755714e-01\\n-2.42400691e-01 3.60838562e-01 1.77725837e-01 -8.09367478e-01\\n4.18843061e-01 2.43884638e-01 -7.13706948e-03 -3.26963454e-01\\n6.57511473e-01 -3.42335284e-01 -6.63599074e-02 1.15784682e-01\\n-4.01534736e-01 -2.06870452e-01 3.40698481e-01 -1.43002987e-01\\n-2.40657702e-01 6.43988252e-01 1.13281839e-01 1.78047210e-01\\n1.99619830e-01 -1.24421135e-01 -1.72334760e-01 2.81865411e-02\\n-1.66151762e-01 -1.08898468e-01 -6.80525661e-01 -8.57686549e-02\\n-1.40141815e-01 -4.46864605e-01 -1.32669315e-01 -5.58074951e-01\\n-1.87896088e-01 -3.26716095e-01 -1.57794282e-01 1.54640809e-01\\n1.72490954e-01 1.19500540e-01 -9.65915918e-02 -1.79560799e-02\\n-9.59730893e-02 -6.33632362e-01 -8.42302367e-02 6.50188923e-02\\n3.08034331e-01 2.74448395e-01 1.81720838e-01 1.17123593e-02\\n1.76721454e-01 5.68762898e-01 -2.77815759e-01 -2.26631209e-01\\n2.01941565e-01 2.69349068e-01 5.93062118e-02 -1.78028524e-01\\n8.96008387e-02 2.80827820e-01 -2.06493154e-01 6.01210184e-02\\n-2.96487696e-02 -8.50323141e-02 4.04783309e-01 -5.43387374e-03\\n-1.77562281e-01 -1.83015138e-01 -1.01918660e-01 1.71150923e-01\\n-4.77817297e-01 -3.20461929e-01 5.67630649e-01 2.01976433e-01\\n7.85294473e-02 2.66373277e-01 1.63847223e-01 4.83523449e-03\\n-2.28184476e-01 -2.10961103e-01 3.00261855e-01 5.47535121e-02\\n1.45505488e-01 7.44113550e-02 -8.99365991e-02 -6.65349483e-01\\n-3.54111981e+00 -1.88604504e-01 1.51112840e-01 -2.06671998e-01\\n2.53354818e-01 -2.03436151e-01 2.94245631e-01 -2.69392058e-02\\n-3.12041938e-01 1.92402001e-03 -1.31419674e-01 -1.93453774e-01\\n1.96545482e-01 3.14150572e-01 1.92340210e-01 1.45477012e-01\\n8.91301706e-02 -3.44374955e-01 2.49183699e-02 4.31746185e-01\\n-1.24974169e-01 -7.04538465e-01 1.61619589e-01 8.14663991e-02\\n1.42997861e-01 2.41524473e-01 -3.55193883e-01 -1.36671901e-01\\n-3.65072697e-01 -2.75965184e-01 7.39749745e-02 -2.57831305e-01\\n-1.06741592e-01 2.50318468e-01 2.77510941e-01 -1.92693532e-01\\n8.41867365e-03 -2.87577331e-01 1.32604782e-02 -5.64285278e-01\\n1.29984975e-01 -6.30554199e-01 6.62086830e-02 -1.26797780e-01\\n6.51155055e-01 -2.23561108e-01 1.82661548e-01 2.02872772e-02\\n2.26262495e-01 1.06954440e-01 6.12714812e-02 5.53661538e-03\\n-2.57429838e-01 -2.56798089e-01 -2.06430271e-01 -7.10472465e-02\\n6.84180319e-01 4.16531622e-01 -2.92158544e-01 -5.25735170e-02\\n2.90282127e-02 -2.86830574e-01 -4.73971814e-01 -2.25823835e-01\\n-2.32559666e-01 3.00695673e-02 -4.84139770e-01 -3.53492469e-01\\n-1.66343451e-01 -1.04484200e-01 -1.17561318e-01 6.11773610e-01\\n-2.74164289e-01 -3.46836746e-01 -1.27265111e-01 -5.13215184e-01\\n2.35587031e-01 -1.83393955e-01 1.52738079e-01 -2.62292325e-01\\n-2.36083180e-01 -4.69033509e-01 2.08885610e-01 2.15834225e-04\\n-1.05745137e-01 -1.85593545e-01 1.85063481e-01 -1.08603537e-01\\n-3.77735585e-01 -6.38243675e-01 2.93360651e-01 2.25852318e-02\\n3.27832758e-01 1.40838042e-01 1.88834816e-01 1.00423604e-01\\n3.18670481e-01 -7.14855567e-02 9.02167056e-03 -4.35276002e-01\\n1.59069765e-02 1.79013528e-03 5.34360468e-01 -2.46712491e-01\\n5.60384952e-02 3.92798856e-02 -2.51916081e-01 -8.38487670e-02\\n4.38887000e-01 -1.18154205e-01 1.72362164e-01 -2.36276299e-01\\n2.59126186e-01 -4.34976935e-01 -1.62130818e-01 8.35702866e-02\\n6.73675165e-02 6.12422347e-01 7.99748953e-03 -3.11636031e-01\\n-2.29351483e-02 3.97782981e-01 -5.54171354e-02 8.66515748e-03\\n-3.20617586e-01 2.75470857e-02 -2.37751082e-01 2.73928404e-01\\n-3.01794279e-02 -8.08156580e-02 -2.54156083e-01 -1.78874448e-01\\n-1.21980429e-01 3.00583214e-01 3.80789250e-01 1.62011892e-01\\n8.76003038e-03 -2.42136046e-01 1.96821708e-02 2.23632306e-01\\n2.47597203e-01 3.95106822e-01 2.35358421e-02 -2.00694099e-01\\n-4.68742438e-02 2.43161783e-01 -2.15502113e-01 2.71940619e-01\\n-2.07170308e-01 1.65494069e-01 -4.35258836e-01 -1.83360711e-01\\n-2.48385265e-01 -2.94714034e-01 1.88162401e-01 2.99205363e-01\\n1.11298449e-01 -1.60233349e-01 -4.33822051e-02 -4.97038841e-01\\n2.39385724e-01 1.34671465e-01 8.26982558e-02 1.42961219e-01\\n4.06238846e-02 5.97425044e-01 -7.88032413e-02 -2.13601276e-01\\n-5.69734611e-02 1.05145566e-01 -2.89231598e-01 -1.34879142e-01\\n1.59304500e-01 -4.09315199e-01 -1.68313727e-01 4.71293062e-01\\n1.73059881e-01 -1.20790722e-02 -8.85027349e-02 2.43843913e-01\\n-9.23619568e-02 -3.20077956e-01 -1.99608520e-01 1.82927474e-02\\n2.37281188e-01 1.15635537e-01 3.11450660e-01 -5.01664102e-01\\n-5.05807772e-02 -3.23852082e-03 8.65405425e-03 3.42083335e-01\\n1.05639221e-02 1.54208153e-01 -7.26576196e-03 -6.13245405e-02\\n4.01427358e-01 -1.00920439e-01 -1.13404937e-01 2.02363804e-01\\n1.05420031e-01 -1.39765799e-01 -4.55974489e-01 2.73046810e-02\\n-1.65267557e-01 -3.06602210e-01 -4.56707217e-02 2.05960095e-01\\n4.51787338e-02 -1.14195766e-02 -5.80556333e-01 -1.26619473e-01\\n-3.28055829e-01 4.36960310e-02 -5.71762286e-02 -6.67368412e-01\\n-7.43130036e-03 -1.12678908e-01 -5.21055520e-01 3.17144215e-01\\n2.47056084e-03 -1.08839475e-01 1.99929789e-01 -2.96894219e-02\\n-2.46950775e-01 -1.44731864e-01 2.27871791e-01 1.50593549e-01\\n-1.50870025e-01 -9.91592780e-02 -7.23822489e-02 -9.86566365e-01\\n1.53566569e-01 2.35709716e-02 -2.28680074e-01 -1.29266884e-02\\n-2.30576769e-02 -7.33487070e-01 1.48212969e-01 -3.78857911e-01\\n-1.76341578e-01 -4.43125851e-02 -2.25322604e-01 -3.79973680e-01\\n1.23432659e-01 5.81827350e-02 -2.63892710e-01 3.04534346e-01\\n-3.01796436e-01 4.19783562e-01 -6.99755549e-02 6.62513226e-02\\n1.11337557e-01 -2.69833863e-01 1.26914293e-01 -2.01412991e-01\\n-3.93649727e-01 -2.02534735e-01 -2.90933222e-01 -2.56971657e-01\\n-1.03547173e-02 -3.99123400e-01 -1.49158180e-01 6.63390979e-02\\n4.33058709e-01 9.10057798e-02 -1.27083927e-01 -6.91677183e-02\\n-4.71002422e-03 -5.19110143e-01 4.67580035e-02 -1.63178429e-01\\n-4.09920253e-02 -1.23342909e-01 2.56698579e-01 8.03731233e-02\\n1.72687054e-01 -3.00843358e-01 4.73971218e-01 -3.26590538e-01\\n-2.90265977e-01 -7.93342590e-02 7.59655610e-02 9.47195441e-02\\n2.52119422e-01 -4.58470881e-01 -2.20258936e-01 3.52649331e-01\\n-3.94090731e-03 1.24649376e-01 3.08006138e-01 -1.99767843e-01\\n-2.42721125e-01 3.18018943e-01 -3.59870762e-01 9.92445797e-02\\n7.55220115e-01 2.26723596e-01 1.27073705e-01 1.55821502e-01\\n1.72682062e-01 1.73796758e-01 4.18807775e-01 -6.28018007e-02\\n-1.60075262e-01 3.48653883e-01 4.38280739e-02 -5.47669888e-01\\n-7.26664066e-02 4.24837172e-02 -1.00477435e-01 -4.54845130e-01\\n6.98008716e-01 2.87511170e-01 -3.20031822e-01 -3.52163672e-01\\n-2.11566418e-01 -1.92763552e-01 1.97766080e-01 5.41968420e-02\\n5.91029897e-02 -1.45264551e-01 4.46233898e-01 1.88798606e-02\\n1.57843396e-01 5.17339766e-01 -1.25969276e-01 -1.62693962e-01\\n-8.33937079e-02 2.14336261e-01 5.19959107e-02 4.98896033e-01\\n-1.70494929e-01 2.54375488e-01 -6.98723421e-02 1.27784044e-01\\n-1.72831506e-01 -1.04651846e-01 1.48415044e-01 9.36871022e-02\\n5.46638444e-02 2.05803096e-01 5.00748336e-01 4.48226243e-01\\n2.91987509e-01 4.55339134e-01 3.20335597e-01 -3.25664319e-02\\n5.19386888e-01 5.60483932e-01 3.96449327e-01 5.47575392e-02\\n1.12933919e-01 3.62331681e-02 5.65888584e-02 7.01804683e-02\\n2.46774524e-01 3.28444868e-01 -7.09835812e-02 7.08815157e-01\\n2.56105870e-01 2.55212873e-01 6.27837062e-01 -5.83369792e-01\\n-3.48750830e-01 2.48893388e-02 5.62068462e-01 -4.11446214e-01\\n6.84123635e-02 1.51613280e-01 -2.71180570e-01 1.28107414e-01\\n-6.12363696e-01 -2.19518319e-01 4.43730084e-03 -3.67972665e-02\\n1.03294268e-01 -1.17777124e-01 -1.56810224e-01 1.64175794e-01\\n-8.12879652e-02 -1.87930182e-01 -3.87470841e-01 -2.38447145e-01\\n-1.91401646e-01 -3.55674699e-02 -4.95259324e-03 -1.81769684e-01\\n-7.82437176e-02 -1.80089220e-01 -4.94061857e-02 -4.80458289e-02\\n2.23711431e-01 -4.22235876e-02 -1.03252739e-01 -4.72932160e-02\\n2.90618986e-01 1.95205986e-01 6.15130723e-01 -6.48358762e-02\\n2.35948265e-02 -1.92961365e-01 -1.49074793e-01 8.02400336e-02\\n2.37201318e-01 -2.94396356e-02 2.28791572e-02 3.33001882e-01\\n-3.44754636e-01 -3.22068781e-01 2.04070359e-01 2.65566796e-01\\n-4.48048651e-01 4.40620147e-02 -6.30278587e-02 1.48875609e-01\\n-2.74441298e-02 1.54006287e-01 -2.27995262e-01 -1.58552993e-02\\n-1.72203809e-01 -5.03125548e-01 3.70090663e-01 -1.15305543e-01\\n-1.24160118e-01 -5.79262413e-02 2.64609545e-01 2.80740231e-01\\n-2.18628198e-01 -5.37902080e-02 -2.07435951e-01 1.86425909e-01\\n4.42833379e-02 2.76170820e-01 -8.03261474e-02 -2.77168095e-01\\n-2.80052215e-01 1.49484545e-01 4.77858968e-02 1.41870320e-01\\n1.61169954e-02 3.21119249e-01 2.30186209e-02 6.80048093e-02\\n3.52671742e-01 -7.39710033e-02 -2.13422760e-01 -3.24095756e-01\\n-2.33837545e-01 -1.37188450e-01 -3.16389948e-02 -1.73858643e-01\\n1.96305498e-01 -3.71344984e-01 -2.08032489e-01 -2.97721922e-01\\n-1.62833586e-01 -3.08818758e-01 -4.89459150e-02 -4.63550128e-02]]',\n", + " \"For our Zurich office we are seeking a Data Analyst to join our Life Operations Department. One of the department's missions is to guarantee the quality of the data we receive from our clients, which is then used downstream by other teams for various studies. In this role you will be entirely assigned to data management (mainly long-term business), be part of the Technical Accounting team and interact regularly with Actuaries from other departments (Reserving and Pricing). In more detail your responsibilities will be to: Ensure data quality - the client data received needs to be complete, accurate, consistent, and provided within contractual deadlines Coordinate with clients errors or delays Extract and load data into our system, incl. data and plan mapping for all clients, investigating and resolving client issues Develop tools to automate data management and quality controls Perform detailed analysis of client data and reconcile premiums with treaty conditions and accounts received Centralize data storage and make data available to other departments Actively monitor client accounts and produce summary reports highlighting trends and issues Implement consistent data handling standards across various products and markets Participate in projects About you To be the ideal candidate, you will be a subject matter expert in data quality and analysis, as well as tools, and become well versed in Life & Health reinsurance data. The role is ideal for someone who has / is: A bachelor degree, e.g. in Wirtschaftsinformatik, Finance, IT Min. 3 years’ experience in data analysis, in our industry is a plus Is fluent in English (French a nice-to-have) Possesses strong Access and Excel skills, is able to prepare data with R and ideally has SQL\\\\VBA programming skills Working very detail-oriented, and has excellent organizational and analytical skills Socially competent and enjoys interacting and communicating across all levels Demonstrated analytical, problem-identification and resolution skills What can we offer you An international environment, where you will be challenged, can learn about the reinsurance products from Senior Specialists and are exposed to multiple sections of our business. Our structure fosters collaboration with various stakeholders. One of PartnerRe’s core strengths is its technical know-how, built over many years of investment in the right people working on challenges. Be that person and join us!\",\n", + " '[\"Reservations\", \"Analytical Skills\", \"Coordinating\", \"Collaboration\", \"Planning\", \"Investigation\", \"Communications\", \"Operations\", \"Detail Oriented\", \"Socialization\"]',\n", + " '[\"Data Quality\", \"Tooling\", \"Nice (Unix Utility)\", \"Accessioning\", \"Programming (Music)\", \"Interactivity\", \"Analytics\", \"Data Management\", \"Data Consistency\", \"Industrialization\", \"E (Programming Language)\", \"Levelling\", \"Activity Monitor\", \"Idealization\", \"Reinsurance\", \"Quality Control\", \"NetApp Data Storage\", \"Patentable Subject Matter\", \"Technical Accounting\", \"Finance\", \"Personalization\", \"Accounting\", \"R (Programming Language)\", \"Accounts Receivable\", \"Receivables\", \"Clinical Data Management\", \"Mapping\", \"Long-Term Potentiation\", \"Data Analysis\"]',\n", + " \"['English', 'Turkish']\"],\n", + " ['75',\n", + " 'frontend software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.61207670e-01 2.27400094e-01 2.93735385e-01 8.80682915e-02\\n3.57351601e-01 -2.75095999e-01 7.27393851e-02 2.45356426e-01\\n5.18091172e-02 -4.74810630e-01 2.18326394e-02 -7.57266358e-02\\n-6.19199090e-02 3.49819511e-02 -2.76021194e-02 2.72219270e-01\\n3.25909436e-01 1.71293467e-01 -2.41000339e-01 2.96272755e-01\\n5.79778440e-02 -1.66097894e-01 -1.31209537e-01 6.32339180e-01\\n4.16440308e-01 -1.01414509e-02 -5.84636293e-02 1.11649267e-01\\n-1.77774087e-01 -2.88846374e-01 2.99159139e-01 1.43294092e-02\\n-6.27546236e-02 -4.04751927e-01 1.85091626e-02 8.59164596e-02\\n-9.06956643e-02 6.37577251e-02 2.92896051e-02 -2.59863771e-03\\n-4.69864607e-01 -1.34364128e-01 8.94732401e-03 6.16541468e-02\\n-2.87476797e-02 -2.69996822e-01 2.64831215e-01 -5.42072318e-02\\n1.69891834e-01 3.07046883e-02 -5.94686568e-01 3.33288014e-01\\n-2.36488655e-01 -1.67782292e-01 2.31803656e-01 4.75537866e-01\\n1.70294400e-02 -4.96313334e-01 -4.83620942e-01 -2.32404351e-01\\n3.07240058e-03 -7.04768673e-02 3.40722278e-02 -2.82324612e-01\\n3.10343772e-01 -3.15152644e-03 -2.31021233e-02 3.25928181e-01\\n-8.37559938e-01 9.65305343e-02 -2.78011084e-01 2.42325384e-02\\n-3.96521688e-01 -1.73393443e-01 -3.41260314e-01 3.71928774e-02\\n-1.90593556e-01 2.76078939e-01 4.60040616e-03 9.20498371e-02\\n-2.12520823e-01 2.48611510e-01 -1.42126605e-01 2.97645092e-01\\n3.20869535e-01 4.08700071e-02 3.83671224e-01 3.77837300e-01\\n-3.68730515e-01 4.89496619e-01 1.06070213e-01 -2.26795331e-01\\n2.77898699e-01 9.76264551e-02 3.60831052e-01 1.24099113e-01\\n2.04097956e-01 2.81249613e-01 -1.83771655e-01 3.12790453e-01\\n1.95609435e-01 -3.64404947e-01 -1.16727345e-01 -1.32164866e-01\\n4.08071056e-02 2.72970982e-02 1.27846137e-01 1.95306361e-01\\n-3.12785566e-01 4.72844094e-01 1.24187469e-01 -2.12870747e-01\\n-1.83239773e-01 -2.73208618e-01 -1.21158473e-01 -5.62018529e-02\\n-4.26388681e-02 4.71207686e-02 1.27833486e-01 9.35660750e-02\\n1.54305264e-01 2.04733342e-01 5.24653718e-02 8.51325393e-01\\n-1.25614747e-01 7.63944909e-02 -2.98367321e-01 1.97511896e-01\\n2.24234998e-01 -3.03754717e-01 2.52870709e-01 2.47010559e-01\\n1.29645988e-01 -1.19341217e-01 -2.85734355e-01 3.56468171e-01\\n-6.54239282e-02 1.11767855e-02 -2.82811493e-01 4.87850681e-02\\n-1.74009562e-01 -3.14395368e-01 6.10545218e-01 1.41709030e-01\\n3.06690902e-01 1.73123732e-01 1.92991436e-01 -1.06005155e-01\\n-1.44144356e-01 3.47072423e-01 -2.85243876e-02 3.29185992e-01\\n-3.39237779e-01 -2.35272080e-01 -2.31935084e-01 1.55701295e-01\\n-2.16314986e-01 6.97395951e-02 -1.65627643e-01 -1.31254806e-03\\n3.23904485e-01 1.05977625e-01 -2.73903728e-01 2.07308441e-01\\n-2.92724408e-02 1.18301287e-01 -1.36984527e-01 3.36759686e-01\\n8.78721103e-02 2.39251196e-01 -2.21978575e-02 -9.31478478e-03\\n5.31670630e-01 1.82023361e-01 4.31132205e-02 -9.86429080e-02\\n2.79769033e-01 -9.03060287e-02 1.57039464e-01 3.88232581e-02\\n-7.34604478e-01 3.45128834e-01 1.47594362e-01 -2.51253247e-01\\n1.04713654e-02 -1.54568637e-02 1.20993480e-01 -4.83152062e-01\\n-1.54996365e-01 -1.65412992e-01 -4.34774160e-01 -2.55228907e-01\\n-3.35527182e-01 1.70206334e-02 5.59824109e-01 -4.48997170e-01\\n-2.20736057e-01 3.31414849e-01 -5.44336677e-01 -6.50699213e-02\\n3.52889031e-01 2.85551101e-02 8.74818936e-02 7.63901100e-02\\n-8.87033641e-02 -5.80226362e-01 5.23422919e-02 -4.38393176e-01\\n-4.25175071e-01 1.77995432e-02 -4.44292575e-01 3.98662001e-01\\n1.00234777e-01 -4.94937524e-02 -1.04313210e-01 1.92220256e-01\\n-1.29400223e-01 -8.81692991e-02 1.05822027e-01 4.28008884e-02\\n3.58077466e-01 1.25267338e-02 -4.20836836e-01 3.43515933e-01\\n-2.68602937e-01 4.20132339e-01 1.23610564e-01 -7.05947876e-01\\n4.74446207e-01 2.30081797e-01 -5.59888110e-02 -2.99652964e-01\\n4.59952414e-01 -2.56217360e-01 -1.76095665e-01 7.19056800e-02\\n-3.22540104e-01 -2.72595227e-01 1.43704683e-01 -2.05741420e-01\\n-2.85696447e-01 5.29217124e-01 3.85129116e-02 9.99877080e-02\\n2.87085652e-01 -2.84997225e-01 1.46556813e-02 2.47500151e-01\\n-1.03613734e-01 -2.17113107e-01 -4.25309449e-01 -1.35912731e-01\\n-1.12288017e-02 -4.74248201e-01 -2.21047848e-02 -3.43913913e-01\\n-2.47578904e-01 -3.54971349e-01 -5.02181292e-01 3.19161683e-01\\n2.97489583e-01 2.83032000e-01 -2.47983336e-02 1.12266056e-01\\n-2.27490470e-01 -6.94484711e-01 7.68966600e-02 1.02898590e-01\\n4.30320442e-01 1.97915375e-01 8.57800320e-02 -2.12202400e-01\\n8.66043288e-03 4.69738513e-01 -4.33396488e-01 -2.66964942e-01\\n1.00639477e-01 8.78574550e-02 -8.63860082e-03 -2.69920290e-01\\n1.17931955e-01 4.18089181e-01 -2.21379951e-01 5.02993874e-02\\n3.22564878e-02 -2.26313695e-01 3.62761527e-01 -2.02713788e-01\\n-4.60025609e-01 -3.09057206e-01 -5.13308570e-02 2.13660926e-01\\n-5.04930556e-01 -2.18028292e-01 5.51247835e-01 2.58350253e-01\\n2.77331144e-01 1.86922595e-01 7.77030736e-02 -2.90457308e-02\\n-2.18664914e-01 -4.36574310e-01 1.42934054e-01 9.81583670e-02\\n9.41427797e-02 1.80975258e-01 -2.30412006e-01 -7.19174683e-01\\n-3.69830036e+00 -1.66377306e-01 1.77407458e-01 -2.11335614e-01\\n2.23432988e-01 -1.55690223e-01 1.36002421e-01 -1.30234450e-01\\n-1.91728204e-01 1.42534941e-01 -1.64714545e-01 -1.51843861e-01\\n1.45939752e-01 3.17216605e-01 1.78936720e-02 3.55535954e-01\\n3.44747066e-01 -2.63482124e-01 -7.78627321e-02 1.77912399e-01\\n-2.65049756e-01 -4.79897261e-01 8.83096606e-02 -9.73288640e-02\\n3.77168089e-01 2.96316683e-01 -3.38883787e-01 -4.28567789e-02\\n-3.31984341e-01 -2.29554415e-01 6.00134917e-02 -2.31375128e-01\\n-7.85861388e-02 1.72733188e-01 1.85440332e-01 -1.12647504e-01\\n1.10461019e-01 -3.41275811e-01 -8.16933364e-02 -5.43002427e-01\\n8.49063694e-02 -4.68444884e-01 2.69353520e-02 -1.05538197e-01\\n6.65510178e-01 -3.34890753e-01 6.10063113e-02 3.39892842e-02\\n2.93943316e-01 1.52779907e-01 2.19575688e-02 3.64573188e-02\\n-2.61713088e-01 -2.54844725e-01 -1.09796949e-01 -2.13218406e-01\\n6.45547390e-01 3.86537731e-01 -2.85558075e-01 -3.62147763e-02\\n7.31086060e-02 -4.79720414e-01 -3.25527430e-01 -2.93850809e-01\\n-1.56485923e-02 -2.82933623e-01 -4.46898431e-01 -3.11720878e-01\\n-3.28718096e-01 -6.85147345e-02 -1.19453326e-01 6.08633101e-01\\n-3.19102913e-01 -5.29340684e-01 1.97059229e-01 -5.57611763e-01\\n1.36170369e-02 -1.02657363e-01 1.50946289e-01 -9.35870409e-02\\n-2.64814705e-01 -5.77121377e-01 -6.50860667e-02 -4.79810085e-04\\n-1.43597618e-01 -9.58203822e-02 1.99551225e-01 4.43116315e-02\\n-3.06639344e-01 -3.09368610e-01 4.63042140e-01 4.44927290e-02\\n2.10033953e-01 1.61670119e-01 2.25497127e-01 2.17299070e-02\\n3.91795218e-01 -1.67462036e-01 1.40132487e-03 -3.00985634e-01\\n9.20241177e-02 -1.22801708e-02 4.17706847e-01 -1.10238232e-01\\n9.67181288e-03 1.99177667e-01 -1.93947613e-01 -1.38083532e-01\\n4.70625132e-01 1.71913818e-01 1.46912048e-02 -2.12831199e-01\\n1.98158503e-01 -2.98716635e-01 -2.47873038e-01 2.04799473e-01\\n6.31509945e-02 6.78172648e-01 2.56459042e-02 -3.44028115e-01\\n-1.95637703e-01 4.74199355e-01 -7.28266016e-02 -9.77098290e-03\\n-1.15242407e-01 1.89307451e-01 -1.26822710e-01 1.49959713e-01\\n1.08842224e-01 -1.93271041e-01 -1.97638437e-01 -1.39822334e-01\\n-6.41514212e-02 2.56706685e-01 1.63104266e-01 -7.14288875e-02\\n-3.73933613e-02 -3.06929737e-01 -3.24159637e-02 2.93201618e-02\\n-1.27915181e-02 4.97366279e-01 7.75414258e-02 -2.62881309e-01\\n-1.23925403e-01 3.19477141e-01 -1.37712404e-01 8.15160647e-02\\n-2.62061030e-01 6.85572997e-02 -4.66239542e-01 -2.29072437e-01\\n-2.71233231e-01 -2.84998745e-01 2.08976120e-02 2.54563808e-01\\n3.84300239e-02 3.05821430e-02 7.73066357e-02 -4.07039881e-01\\n2.27353990e-01 1.67979866e-01 1.17476940e-01 1.39138415e-01\\n-2.85494588e-02 2.25577876e-01 3.14223617e-02 -1.45977989e-01\\n-3.11928064e-01 1.62110463e-01 -1.12751216e-01 -1.34712875e-01\\n1.38636783e-01 -5.34382761e-01 -5.53625114e-02 3.86141688e-01\\n2.26865187e-01 -6.63543642e-02 -1.47785708e-01 2.12879732e-01\\n-6.58158818e-03 -3.22688192e-01 -2.06908286e-01 -1.01310112e-01\\n2.40984634e-01 5.17539338e-05 2.34018072e-01 -2.84212530e-01\\n-7.00392723e-02 -4.11952250e-02 -1.13389947e-01 3.36074382e-01\\n-2.25667302e-02 6.08205982e-02 -1.93512484e-01 -1.34432182e-01\\n4.66160476e-01 3.35135385e-02 -3.73752415e-02 -1.03220679e-01\\n1.06286332e-01 -1.75489753e-01 -5.45671105e-01 3.85836586e-02\\n6.61906451e-02 -1.21843770e-01 1.25402883e-01 2.73090918e-02\\n-8.38999823e-03 1.18044734e-01 -4.92892861e-01 -2.40846947e-01\\n-3.65192473e-01 -2.11689562e-01 9.12820697e-02 -4.56646264e-01\\n1.57212522e-02 -7.71244764e-02 -4.40208197e-01 2.18460470e-01\\n-3.03159714e-01 1.22290412e-02 1.80618852e-01 9.84792262e-02\\n-3.49046171e-01 -9.60542634e-02 1.35575965e-01 3.31532151e-01\\n-2.44885072e-01 -2.73203731e-01 8.81121233e-02 -9.02054369e-01\\n2.38115847e-01 1.36360988e-01 -2.11533070e-01 -1.48939312e-01\\n-9.42001566e-02 -5.50347030e-01 1.65552914e-01 -4.57141548e-01\\n-1.07137173e-01 6.26094043e-02 -2.06201568e-01 -2.32461393e-01\\n5.55643775e-02 -2.40914002e-01 -5.45680940e-01 4.06508505e-01\\n-4.06071484e-01 3.68722230e-01 5.54592395e-03 7.80104077e-04\\n-5.57652023e-03 -3.03718388e-01 2.85356380e-02 -3.49178046e-01\\n-5.15615165e-01 -2.60872841e-01 -3.21310431e-01 -1.35932758e-01\\n1.79550692e-01 -3.69228035e-01 -1.07403606e-01 1.85814232e-01\\n2.56438553e-01 9.69440341e-02 -5.04544340e-02 -2.88360924e-01\\n-1.55097265e-02 -5.91361284e-01 -8.95543620e-02 -8.71042907e-02\\n-1.41786002e-02 -9.73886847e-02 1.24274164e-01 1.31134121e-02\\n1.64049268e-01 -3.94858271e-01 5.08345187e-01 -3.82790178e-01\\n-1.67537928e-01 -7.66280442e-02 6.91504329e-02 6.66844398e-02\\n2.11079434e-01 -5.76164305e-01 6.61883205e-02 2.39936560e-01\\n2.62355834e-01 7.76304156e-02 1.83219358e-01 1.10516027e-02\\n-2.85992641e-02 3.21599633e-01 -2.87606716e-01 1.38367116e-01\\n7.63802052e-01 5.32541759e-02 -2.49254815e-02 2.52468139e-01\\n1.17576405e-01 5.04843056e-01 5.84978282e-01 8.54490176e-02\\n-4.37020175e-02 2.70889163e-01 8.58981311e-02 -5.04486561e-01\\n-1.54961580e-02 4.51657772e-02 -1.90360770e-01 -2.74545610e-01\\n6.83391631e-01 4.57756847e-01 -5.03456771e-01 -2.85906047e-01\\n-2.57707108e-02 -2.67721504e-01 2.00024337e-01 -8.61011744e-02\\n4.35646996e-02 -2.58375704e-01 4.32207376e-01 4.24119458e-03\\n1.33129165e-01 6.36442661e-01 -1.04557730e-01 -3.18601727e-01\\n-1.51419863e-01 2.11617932e-01 7.22289830e-02 4.24461246e-01\\n-1.78590611e-01 9.23173800e-02 -6.16900437e-02 7.38085508e-02\\n4.97044995e-03 2.48465449e-01 1.20481014e-01 7.99701959e-02\\n2.04766035e-01 6.77757934e-02 5.44392407e-01 3.77137810e-01\\n1.84045181e-01 4.66323763e-01 2.64147580e-01 2.87232902e-02\\n3.99410367e-01 6.81914389e-01 4.70850140e-01 8.00549760e-02\\n-1.75158903e-02 1.94238722e-01 1.65375620e-01 -4.01267149e-02\\n3.78879309e-01 4.43223685e-01 -4.35628369e-02 8.85247171e-01\\n3.20445687e-01 1.69970751e-01 5.91700375e-01 -6.60398543e-01\\n-2.61430770e-01 1.98231470e-02 5.05379558e-01 -1.64383560e-01\\n-9.37224776e-02 1.98782325e-01 -3.05483073e-01 3.65517765e-01\\n-5.23578107e-01 -1.21719331e-01 -2.89638224e-03 1.31389275e-01\\n1.58535182e-01 -1.58088565e-01 -2.20862210e-01 -7.61020035e-02\\n-1.28814563e-01 -1.77746743e-01 -4.08906013e-01 -1.32046521e-01\\n-2.65614092e-01 1.42291021e-02 -3.60413603e-02 -5.01554795e-02\\n3.02333981e-02 -4.83623981e-01 -2.14611515e-01 2.34887730e-02\\n4.39426482e-01 -1.61691487e-01 -5.20233028e-02 2.93475222e-02\\n1.58249140e-01 3.68094712e-01 5.43171942e-01 6.18394762e-02\\n-8.87181424e-03 -9.66477990e-02 -2.00890005e-01 2.56822795e-01\\n1.79030314e-01 1.73707232e-01 9.20705125e-02 1.77538007e-01\\n-3.29953820e-01 -1.19249001e-01 2.18681544e-01 3.61778677e-01\\n-4.43038762e-01 -3.99472453e-02 -2.50932910e-02 2.32829556e-01\\n6.48771375e-02 2.12508559e-01 -1.00648120e-01 8.38963222e-03\\n-1.44933671e-01 -2.93020993e-01 3.89756739e-01 -3.77117880e-02\\n-1.40314609e-01 1.19822569e-01 1.36289671e-01 2.98101068e-01\\n-1.85333043e-01 -6.40660524e-02 1.85278263e-02 1.60532862e-01\\n1.07531056e-01 4.12912071e-01 -1.89406291e-01 -2.98325479e-01\\n-3.08965355e-01 1.40897214e-01 1.34513807e-02 -5.84772974e-03\\n-8.37869495e-02 2.80928433e-01 2.36360822e-02 1.76792979e-01\\n3.20396721e-01 -5.27461350e-04 -3.50951612e-01 -1.63175926e-01\\n-2.89246082e-01 -1.00883819e-01 9.41670612e-02 -7.54218251e-02\\n2.33665213e-01 -3.92257839e-01 -1.19760774e-01 9.04852431e-03\\n-5.95953204e-02 -2.74297774e-01 -8.34982321e-02 -7.35854208e-02]]',\n", + " 'Job Informationen YOUR RESPONSIBILITIES: You are responsible for the development and integration of our mostly AngularJS based frontends. In order to ensure the optimal experience for the client, you come forward with you own ideas and work product-driven. Furthermore, you support the backend team at the frontend integration by using RESTful API’s. Requirements: This job requires that you be a self-starter with the ability to take ownership, work under pressure, and handle multiple tasks simultaneously. You should have good documentation skills and be able to interact with other team members to collaborate and deliver quality code. You will need to possess strong communication skills, have the ability to grasp a variety of unfamiliar technologies quickly, and work in a fast paced, team-driven environment. You may be asked to contribute ideas and provide feedback on many projects within the team’s portfolio. - You have worked before with AngularJS or similar frameworks. You are used to working with modern technologies like Docker and GIT - NodeJS or Python knowledge is advantageous - Strong HTML and CSS skills are a must Benötigte Skills CSS3 HTML5 Python Node.js Angular',\n", + " '[\"Collaboration\", \"Self Starter\", \"Communications\", \"Integration\"]',\n", + " '[\"Angular (Web Framework)\", \"Docker (Software)\", \"Python (Programming Language)\", \"Node.js\", \"Cascading Style Sheets (CSS)\", \"Good Documentation Practices\", \"Interactivity\", \"Git (Version Control System)\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Custom Backend\", \"RESTful API\"]',\n", + " \"['English', 'Galician', 'Azerbaijani', 'Breton']\"],\n", + " ['75',\n", + " 'full-stack software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " '[\"Innovation\", \"Operations\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English']\"],\n", + " ['115',\n", + " 'category manager - software',\n", + " 'Zürich',\n", + " 'Insurance Agencies & Brokerages',\n", + " 'www.swissre.com',\n", + " '[[-1.75392717e-01 1.91173732e-01 4.80963051e-01 -7.12103993e-02\\n4.87037987e-01 -6.54670969e-02 2.10967548e-02 2.52680123e-01\\n6.50866628e-02 -4.31204200e-01 -1.59794465e-01 -2.70640850e-01\\n3.96634489e-02 1.13767095e-01 1.03611529e-01 3.62646908e-01\\n3.23806673e-01 5.23841307e-02 -1.55019090e-02 2.74443775e-01\\n-2.41388679e-02 -1.44937783e-01 1.87602341e-01 6.80231988e-01\\n4.04947698e-01 7.26113915e-02 2.19302550e-02 -3.72557305e-02\\n-1.07614055e-01 -2.69822001e-01 6.00318670e-01 3.31557393e-02\\n-1.70734659e-01 -4.13134992e-01 9.80483517e-02 1.42163962e-01\\n-2.82749861e-01 -1.35211527e-01 -1.78704053e-01 6.74275160e-02\\n-4.63842809e-01 -1.77836746e-01 -2.70586610e-02 -5.89220151e-02\\n-2.77878255e-01 -3.97454500e-01 -8.41587968e-03 -1.12458780e-01\\n2.33229935e-01 1.51554391e-01 -4.52431321e-01 1.55971050e-01\\n-4.04359967e-01 -2.44947627e-01 3.87787163e-01 6.01265490e-01\\n7.32047185e-02 -4.89260733e-01 -5.79311967e-01 -2.84162790e-01\\n8.42785910e-02 -9.66857225e-02 1.29247665e-01 -2.56677061e-01\\n2.03934252e-01 1.11380123e-01 5.90397231e-02 2.99749553e-01\\n-8.12681794e-01 -1.10662758e-01 -2.65685916e-01 2.77502984e-02\\n-3.46459389e-01 3.52061465e-02 -3.43368232e-01 -1.87123075e-01\\n-2.20031217e-01 4.54624504e-01 5.06261662e-02 9.46829021e-02\\n-1.57339260e-01 4.22877073e-01 -2.87696779e-01 4.20623064e-01\\n1.30946457e-01 1.90544188e-01 3.56711328e-01 3.28632295e-01\\n-3.64323199e-01 5.88239431e-01 2.92794019e-01 -3.74938667e-01\\n1.75368890e-01 4.30128351e-03 2.94569522e-01 -1.22473150e-01\\n4.01278824e-01 5.07734641e-02 -2.31951684e-01 2.15515852e-01\\n2.65586972e-01 -7.67718703e-02 -3.76171172e-02 -2.57874995e-01\\n8.03459883e-02 -3.47943082e-02 8.42050165e-02 -8.42539594e-03\\n-4.12026316e-01 3.54559422e-01 1.34557739e-01 -3.15827280e-01\\n-1.93767130e-01 -3.92873019e-01 1.46175781e-02 3.31052430e-02\\n-8.35825875e-03 4.31448333e-02 -4.37179580e-03 1.22689247e-01\\n2.78478414e-01 -9.23387334e-03 9.03702676e-02 5.56779861e-01\\n-6.75691850e-03 -6.02615364e-02 -2.42571726e-01 2.59696066e-01\\n-4.93322872e-02 -2.39904493e-01 1.49567366e-01 5.69030270e-02\\n-2.54366606e-01 -7.79254884e-02 -3.87585640e-01 3.40413511e-01\\n4.34512310e-02 -2.52365738e-01 -1.85914427e-01 2.34106287e-01\\n2.02718824e-02 -4.99055922e-01 5.35464346e-01 -7.29470327e-02\\n1.76284224e-01 -9.23883170e-02 6.95682466e-02 -1.62501603e-01\\n-1.44419134e-01 6.82132840e-02 9.73870903e-02 1.27286226e-01\\n-2.28271678e-01 -2.47961283e-01 -1.25620291e-01 1.93823166e-02\\n-1.97636783e-01 1.70026183e-01 -2.90354103e-01 -1.59640253e-01\\n3.00143361e-01 3.88530120e-02 -3.35680544e-01 2.07767487e-01\\n-3.71846072e-02 6.54123276e-02 -4.90844287e-02 3.84507179e-01\\n-2.35250250e-01 1.12804279e-01 -3.68182734e-02 -1.36961907e-01\\n6.34300709e-01 -2.29170173e-03 4.25923109e-01 1.06082074e-01\\n2.72135943e-01 6.24821186e-02 1.33965522e-01 1.81596056e-02\\n-6.76323891e-01 3.26540649e-01 -1.94768049e-03 -7.81006217e-02\\n2.23843530e-01 -1.20686151e-01 2.73366272e-01 -2.17869490e-01\\n3.19016650e-02 -5.50366938e-02 -3.82237285e-01 -4.07454193e-01\\n-1.08631123e-02 -1.06036745e-01 1.75330400e-01 -5.81009090e-01\\n-1.88432902e-01 1.42634422e-01 -4.47236180e-01 -2.60049075e-01\\n8.55431184e-02 2.63482153e-01 1.89353973e-02 1.99082196e-01\\n-2.94995755e-01 -4.13241327e-01 8.88729542e-02 -4.53785419e-01\\n-1.00926809e-01 1.52241826e-01 -3.58739138e-01 9.92038101e-02\\n-8.40032399e-02 2.39813533e-02 -9.51625705e-02 -1.26704471e-02\\n-3.15653801e-01 -1.19363097e-03 1.73914097e-02 -1.42955622e-02\\n3.30172837e-01 1.19584367e-01 -3.33361119e-01 5.50499678e-01\\n-2.94619441e-01 3.80279332e-01 3.51184867e-02 -8.80754113e-01\\n5.11948347e-01 2.88132012e-01 -1.77712701e-02 -3.98599803e-01\\n4.76189971e-01 -3.69630396e-01 2.28587538e-02 1.36506751e-01\\n-4.81816471e-01 -1.88590109e-01 2.16745898e-01 -3.39353234e-01\\n-1.22013167e-01 5.28352499e-01 -1.22799091e-01 1.18226312e-01\\n2.36923307e-01 -1.51030838e-01 -1.85253680e-01 -3.03529650e-02\\n-2.43559197e-01 -7.14797378e-02 -6.74738109e-01 -1.20550588e-01\\n-1.01313435e-01 -4.40470010e-01 -1.66907325e-01 -4.54221249e-01\\n-1.65829584e-01 -2.99078226e-01 -1.59745052e-01 4.40034270e-02\\n2.29018703e-01 4.02710587e-02 -1.17175519e-01 1.12457603e-01\\n-5.15371561e-03 -6.26637459e-01 8.18236768e-02 1.63527787e-01\\n2.14517981e-01 2.29427204e-01 1.90173447e-01 -1.63780563e-02\\n6.72732741e-02 6.23535633e-01 -2.48633057e-01 -2.82125592e-01\\n3.42950583e-01 1.82073325e-01 5.35923094e-02 -1.55034110e-01\\n1.51557744e-01 2.42028266e-01 -2.82200754e-01 4.56824563e-02\\n1.87337399e-04 4.78452556e-02 5.42594194e-01 -1.42468467e-01\\n-2.19679341e-01 -1.90141946e-02 -6.46298155e-02 5.41214272e-02\\n-4.83308017e-01 -2.09045947e-01 5.41793704e-01 9.56858918e-02\\n-1.56609975e-02 3.20374578e-01 9.94716659e-02 1.17658220e-01\\n-2.42788136e-01 -2.43191153e-01 3.21399808e-01 1.28164813e-01\\n2.06691995e-01 1.47488028e-01 -6.65574223e-02 -5.35418987e-01\\n-3.18991327e+00 -1.71263486e-01 4.55804057e-02 -9.88049656e-02\\n3.27563435e-01 -1.74132183e-01 2.71635026e-01 -8.90070647e-02\\n-3.00922513e-01 2.71613970e-02 6.12839963e-03 -1.50737375e-01\\n1.81515962e-01 1.54848441e-01 6.58526644e-02 2.16171354e-01\\n9.21826139e-02 -2.48474658e-01 7.35199600e-02 3.57366771e-01\\n-1.77824259e-01 -7.99693882e-01 1.84409410e-01 -7.32982904e-02\\n1.63386717e-01 1.45969093e-01 -4.18723941e-01 -1.03084475e-01\\n-1.85670733e-01 -2.37415701e-01 1.29374474e-01 -3.04039568e-01\\n-7.46134445e-02 2.95258522e-01 2.14517757e-01 -1.62125021e-01\\n-1.55365784e-02 -3.60251427e-01 -1.74278259e-01 -6.37670279e-01\\n1.93827450e-01 -5.93006194e-01 4.84826043e-02 -2.03437254e-01\\n6.61310792e-01 -2.27842838e-01 1.24701545e-01 1.28821507e-01\\n5.58090322e-02 2.47575194e-01 2.88376391e-01 7.85723627e-02\\n-2.41814882e-01 -3.54774535e-01 -7.20326453e-02 -1.45128310e-01\\n6.26796126e-01 2.35724181e-01 -2.39043802e-01 9.28843468e-02\\n1.03465810e-01 -2.91445971e-01 -4.41504508e-01 -7.58066699e-02\\n-6.74636811e-02 -3.33291292e-02 -6.27791524e-01 -3.86210680e-01\\n-2.45397598e-01 -2.28021473e-01 1.92062333e-02 6.28184319e-01\\n-3.05816293e-01 -2.52423465e-01 -2.16081068e-01 -6.40182614e-01\\n5.07012248e-01 -1.89481705e-01 8.82148445e-02 -3.26630533e-01\\n-2.02113658e-01 -3.61521184e-01 2.37058356e-01 1.98142976e-02\\n-7.23819658e-02 -1.99734449e-01 1.52873099e-01 -3.43631357e-02\\n-3.51928681e-01 -5.56311607e-01 2.03103051e-01 5.68880737e-02\\n3.20012510e-01 1.31410688e-01 2.06604511e-01 -2.71250039e-01\\n2.52817482e-01 6.39189035e-02 -2.19234064e-01 -3.31385314e-01\\n5.45620918e-04 5.35780750e-03 4.01766151e-01 -1.28326625e-01\\n-4.67944071e-02 -2.00772546e-02 -1.98838532e-01 -7.01925606e-02\\n4.24947441e-01 -1.13331929e-01 1.82108432e-01 -9.95714664e-02\\n2.25038975e-01 -3.27728271e-01 -8.79024789e-02 9.01640952e-03\\n-5.39738014e-02 6.20335937e-01 5.13042212e-02 -3.72108698e-01\\n-6.15336671e-02 4.96558458e-01 6.43862933e-02 7.26597533e-02\\n-2.97580242e-01 1.76120233e-02 -2.25803554e-01 2.79968023e-01\\n5.72426692e-02 -6.40333891e-02 -1.49770260e-01 -9.25846398e-02\\n-1.11391798e-01 2.60044515e-01 2.42766932e-01 2.14883208e-01\\n-4.86995652e-03 -3.05137962e-01 -1.43569022e-01 2.31907368e-01\\n1.50509834e-01 6.25467122e-01 1.24654517e-01 -2.10222840e-01\\n-6.83097541e-02 2.87421823e-01 -2.39767611e-01 2.42607489e-01\\n-2.37434104e-01 1.95600748e-01 -5.73195934e-01 -1.70742437e-01\\n-2.61391252e-01 -3.67803961e-01 1.29769430e-01 4.57233876e-01\\n1.74865797e-01 -1.26462221e-01 1.39242709e-01 -4.23424602e-01\\n1.36808380e-01 1.72878444e-01 1.50800928e-01 5.74251488e-02\\n3.05016600e-02 7.53148913e-01 -5.55630215e-03 -2.82151341e-01\\n-8.77803415e-02 -1.29111204e-02 -2.00564533e-01 -9.33059603e-02\\n1.52969003e-01 -4.54732507e-01 -2.48387039e-01 4.49829370e-01\\n1.46624416e-01 -1.19844392e-01 -1.09885767e-01 3.70677859e-01\\n-6.93259239e-02 -1.81364179e-01 -3.60015333e-01 4.73018326e-02\\n2.51544058e-01 1.20374829e-01 3.25303555e-01 -5.53070188e-01\\n3.71674150e-02 -3.39962542e-04 1.44059300e-01 4.94814634e-01\\n1.49514601e-02 1.63296416e-01 -1.60967290e-01 -1.41970471e-01\\n3.89295608e-01 -4.58127856e-02 -1.86153010e-01 1.11827776e-01\\n1.00295536e-01 -1.41922504e-01 -3.09573591e-01 1.27008446e-02\\n-1.49759322e-01 -2.79302239e-01 -1.67938694e-02 2.91316628e-01\\n6.92215040e-02 8.31747353e-02 -5.90067685e-01 -1.89917386e-01\\n-2.37841085e-01 1.75939262e-01 -1.04251564e-01 -7.55984426e-01\\n3.62723954e-02 -1.58794746e-01 -4.43426490e-01 1.79916307e-01\\n8.35431367e-02 -1.46029532e-01 3.04354787e-01 6.36262894e-02\\n-2.40024209e-01 -7.70634189e-02 1.19891368e-01 2.80789793e-01\\n-2.47835219e-01 -2.08136648e-01 -8.15369114e-02 -9.18082595e-01\\n2.76980340e-01 -1.20699313e-02 -1.45309001e-01 1.46676019e-01\\n-1.17542684e-01 -7.34719396e-01 1.08312070e-01 -2.99756706e-01\\n-2.15212747e-01 -5.88724017e-02 -1.79161534e-01 -3.39227974e-01\\n1.31188214e-01 -3.03604938e-02 -1.41063720e-01 3.63867283e-01\\n-2.80857265e-01 3.81837428e-01 -1.95368499e-01 6.31855577e-02\\n1.84719175e-01 -2.19824463e-01 1.67475671e-01 -2.38766566e-01\\n-3.88642639e-01 -3.19310725e-01 -3.04624200e-01 -2.55587757e-01\\n-6.56606033e-02 -3.76146644e-01 3.34746502e-02 6.87047886e-03\\n5.05300283e-01 4.53501828e-02 -1.80413097e-01 -1.79536462e-01\\n4.47734073e-02 -4.91614401e-01 1.38322026e-01 -1.36069536e-01\\n-4.57799323e-02 -1.60010040e-01 3.14618319e-01 5.74848056e-02\\n2.85725057e-01 -4.90019500e-01 4.30752188e-01 -3.62608761e-01\\n-4.49326754e-01 -1.94962218e-01 8.56426954e-02 2.71397717e-02\\n3.49980712e-01 -5.18871486e-01 -1.27356485e-01 3.33609223e-01\\n1.28113270e-01 -7.46795163e-02 1.53683916e-01 -2.37776130e-01\\n-1.06222928e-01 3.04023802e-01 -4.33137894e-01 1.95051014e-01\\n7.27963746e-01 7.72688016e-02 1.21881045e-01 3.73372853e-01\\n2.08577871e-01 1.57689184e-01 4.39130127e-01 -3.85580547e-02\\n-1.80982620e-01 3.61669719e-01 9.01051015e-02 -5.01266062e-01\\n-3.98379304e-02 -7.90385306e-02 2.00808644e-02 -4.27434385e-01\\n6.24535680e-01 3.08363110e-01 -4.64880168e-01 -1.76366121e-01\\n-2.49673173e-01 -2.42979139e-01 2.88995683e-01 1.61893666e-03\\n-6.09323457e-02 1.07253842e-01 4.13148046e-01 2.71376539e-02\\n3.29714537e-01 5.15575111e-01 -1.59690231e-01 -1.68574095e-01\\n-6.78630695e-02 2.54613578e-01 -5.79759553e-02 4.62735176e-01\\n-1.75301626e-01 3.01032007e-01 5.50031103e-03 8.51506516e-02\\n-1.43284202e-01 -4.51363400e-02 9.84590203e-02 1.22496054e-01\\n8.07251781e-02 1.95134699e-01 5.15408456e-01 3.60571146e-01\\n2.97795773e-01 1.87495068e-01 3.79049182e-01 -5.24779409e-02\\n4.71629441e-01 6.26318514e-01 4.18208688e-01 -3.43496688e-02\\n1.27213985e-01 8.80967528e-02 1.45670354e-01 1.23308346e-01\\n2.70186126e-01 4.73738611e-01 -5.89395761e-02 7.76552916e-01\\n2.35991791e-01 2.35933363e-01 6.46410227e-01 -5.58430672e-01\\n-2.67704725e-01 -1.15513906e-01 4.07198906e-01 -4.79163498e-01\\n2.11102277e-01 2.16248244e-01 -7.96283484e-02 2.40948319e-01\\n-4.99260664e-01 -1.83036387e-01 5.00010736e-02 9.55052003e-02\\n8.43001679e-02 -1.52293354e-01 2.15421170e-02 1.34813145e-01\\n-7.36437142e-02 -2.50909507e-01 -3.86121750e-01 -2.90347099e-01\\n-1.76373065e-01 1.23183075e-02 -1.28167467e-02 -1.21194869e-01\\n-2.58666351e-02 -2.31482834e-01 -1.13255056e-02 -1.73447713e-01\\n2.62358665e-01 -7.47513995e-02 -3.64762135e-02 -5.30868284e-02\\n3.38649988e-01 1.41072527e-01 5.86987853e-01 -9.50608552e-02\\n-1.35283452e-02 -1.87910676e-01 -1.24670804e-01 1.25191361e-01\\n3.43777865e-01 1.56098023e-01 3.31759937e-02 2.71529466e-01\\n-2.64149100e-01 -2.30231971e-01 1.86707303e-01 2.26786092e-01\\n-3.80958885e-01 6.22821487e-02 -6.65275604e-02 8.81434083e-02\\n-8.18598121e-02 2.03695923e-01 -7.17323050e-02 -1.70519501e-02\\n-5.01275957e-02 -3.86642873e-01 2.85426259e-01 -1.91032648e-01\\n-1.90727353e-01 -1.37601852e-01 3.39436561e-01 2.82753974e-01\\n-3.33432734e-01 1.25756353e-01 -2.15584189e-01 -3.72811630e-02\\n1.90231092e-02 2.77684987e-01 -1.99671075e-01 -2.17864603e-01\\n-2.84616113e-01 1.04355410e-01 -5.53160608e-02 7.26355761e-02\\n5.94835207e-02 5.05928159e-01 -1.01011992e-02 7.45894313e-02\\n3.76512170e-01 -1.55503988e-01 -2.40611225e-01 -1.34928897e-01\\n-3.31959993e-01 2.32735034e-02 -3.26069482e-02 -1.13421500e-01\\n1.79844290e-01 -3.79481643e-01 -7.44758174e-02 -3.11749697e-01\\n-4.06613573e-02 -3.42282444e-01 -9.38513689e-03 -2.10126415e-02]]',\n", + " 'About Swiss Re

The Swiss Re Group is one of the world’s leading providers of reinsurance, insurance and other forms of insurance-based risk transfer, working to make the world more resilient. It anticipates and manages risk – from natural catastrophes to climate change, from ageing populations to cybercrime. The aim of the Swiss Re Group is to enable society to thrive and progress, creating new opportunities and solutions for its clients. Headquartered in Zurich, Switzerland, where it was founded in 1863, the Swiss Re Group operates through a network of around 80 offices globally. It is organised into three Business Units, each with a distinct strategy and set of objectives contributing to the Group’s overall mission. About the role Are you seeking a fantastic development opportunity to take your career to the next level within a forward-thinking global IT Sourcing Team? We are looking for an ambitious, experienced Category Manager for Software and SaaS. Reporting to the Head of Software and Licensing your position is fully accountable for leading sourcing service for all IT third party Software Applications, SaaS and respective services across Swiss Re. You will be responsible for the high quality and cost effective services from the Vendors. When leading sourcing projects, you will specify and collate demand as well as execute on vendor management activities. Developing service levels and quality processes will ensure efficient service delivery that meets or exceeds partner expectations. Adopting a risk-based focus you will ensure compliance with our Sourcing practices and procedures. You will jointly develop category plans with your internal partners. By bringing insightful market intelligence market trends / analysis, you will implement the agreed strategy for your sub-category. Taking the ownership for this IT Category, you will be recognized as the advisory lead for our partners across Swiss Re. In this role, we will expect you to: Negotiate and execute major commercial and contractual terms and conditions with global vendors Build and execute Software Service Strategies and Plans, using resources from our global network of sourcing professionals as required Be accountable for the delivery of annual Software financial savings goals Project lead or support Divisional IT Sourcing Programs as required Actively collate and interpret data from multiple sources to provide valuable insights and advice to your partners Seek and deliver continual improvement in the areas of demand management, contract negotiation, project sourcing and the category strategy About the team We are the IT&Data Sourcing Team, a unit within Global Sourcing which is itself part of Global Business Solutions. We are spread across four locations having touch with the global Sourcing Network. We handle all IT Sourcing Services including Software, SaaS, Hardware, Connectivity, Cloud and Application Services and Data. About You You have a bachelor’s degree in a science, technology or business administration. We have a strong preference for CIPS or similar professional qualification You have excellent command over English language, German is an advantage Ideally, you have five to ten (5-10) years of Sourcing experience in insurance, re-insurance or financial services. With a minimum of three to five (3-5) years Category Management experience in Software Services working across multiple jurisdictions on high value contracts. You are a highly experienced in category, demand and vendor management. You possess well-developed communication skills (written and verbal) with an ability to quickly establish trusted partner status. You possess very strong data analysis skills (collation, interpretation and insightful use of data) You have highly experienced and refined skills in defining and executing Category Strategies and associated Plans With your strong focus on customer and excellent advisory skills, you are able to effectively cooperate with internal customers and external suppliers You demonstrate behaviors consistent with Swiss Re imperatives facilitating consistent performance and continuous improvement We are an equal opportunity organization and welcome applicants from all backgrounds.
Swiss Re',\n", + " '[\"Negotiation\", \"Positivity\", \"Professionalism\", \"Cooperation\", \"Establishing Trust\", \"Planning\", \"Resilience\", \"Accountability\", \"Business Administration\", \"Operations\", \"Sourcing\"]',\n", + " '[\"Risk-Based Testing\", \"Enterprise Application Software\", \"Advisories\", \"Market Trend\", \"Cybercrime\", \"Demand Management\", \"Management Contract\", \"Service Delivery\", \"Licensing\", \"Refining\", \"Financial Services\", \"Commercialization\", \"Financial Software\", \"Trend Analysis\", \"Strategic Business Unit\", \"Category Strategy\", \"Activism\", \"Naturalization\", \"Climate Change Mitigation\", \"Levelling\", \"Executable\", \"Reinsurance\", \"Category Development\", \"Category Management\", \"Vendor Management\", \"Risk Management\", \"Equalization\", \"Continuous Improvement Process\", \"Market Intelligence\", \"Category Planning\", \"Service Level\", \"Service Strategy\", \"Financial Business Solution\", \"CIP System (Stereochemistry)\", \"Global Sourcing\", \"Quality Process Analysis\", \"Resourcing\", \"Contract Negotiation\", \"Application Services\", \"Software Plus Services\", \"Data Analysis\", \"Adoptions\"]',\n", + " \"['English', 'Luba-Katanga', 'Flemish']\"],\n", + " ['22',\n", + " 'project manager: blockchain developer and builder engagement',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-1.14114337e-01 3.66173685e-01 5.18920839e-01 1.96600682e-03\\n4.78293836e-01 -2.36980751e-01 -1.05949314e-02 1.97110936e-01\\n-3.65718789e-02 -3.96998167e-01 -8.66349787e-02 -2.94445634e-01\\n6.37336671e-02 2.05114990e-01 2.68351100e-02 2.49769449e-01\\n2.86789745e-01 1.52238561e-02 -9.81925949e-02 3.39843959e-01\\n4.84328866e-02 -2.14253992e-01 1.48351803e-01 6.19421840e-01\\n2.86122233e-01 -1.20739408e-01 -6.16095215e-02 9.67784151e-02\\n-2.41212249e-01 -1.39820933e-01 2.99406528e-01 1.09002411e-01\\n-1.81049213e-01 -4.15165156e-01 2.69558607e-03 -5.55803115e-03\\n-2.44044676e-01 4.67440784e-02 -8.35435838e-02 1.66776106e-01\\n-4.27426904e-01 -2.33389035e-01 2.09802408e-02 -2.83673778e-03\\n-2.80914277e-01 -2.80932218e-01 1.71636119e-01 -6.40482157e-02\\n1.06068932e-01 -3.16390395e-02 -3.19227964e-01 3.42118561e-01\\n-1.29420295e-01 -2.40336016e-01 3.53142411e-01 6.67725086e-01\\n3.08934823e-02 -6.04606330e-01 -4.96806711e-01 -2.97155589e-01\\n1.73869133e-01 -1.03674293e-01 1.02412298e-01 -3.11165571e-01\\n3.44381988e-01 1.03483035e-03 3.02234590e-02 4.15787101e-01\\n-6.91342413e-01 -1.46868676e-01 -3.20478380e-01 1.00073628e-01\\n-2.57406533e-01 -1.28615528e-01 -2.75833100e-01 -7.82175213e-02\\n-8.98500457e-02 4.00899649e-01 2.16207147e-01 -6.18968159e-02\\n-2.48949826e-01 2.82151639e-01 -2.94731230e-01 3.57558489e-01\\n1.74951345e-01 1.67800829e-01 2.54079282e-01 1.60266072e-01\\n-4.24892157e-01 5.15924394e-01 3.05913985e-01 -3.38015109e-01\\n3.45618099e-01 1.26318470e-01 4.00395304e-01 1.98892474e-01\\n2.32593790e-01 9.79492217e-02 -2.17356920e-01 2.32825801e-01\\n2.57832199e-01 -1.06137469e-01 -2.32374482e-02 -1.66014936e-02\\n1.67455882e-01 -1.38243586e-02 3.75869311e-02 1.11514188e-01\\n-3.95849943e-01 4.50693548e-01 9.66080353e-02 -1.92519322e-01\\n-1.02099128e-01 -3.43987763e-01 -1.06837042e-01 -9.43689942e-02\\n-1.18588343e-01 1.27345845e-01 1.15215555e-01 1.60553008e-01\\n4.06902768e-02 7.96759278e-02 1.73941016e-01 9.07721877e-01\\n-4.17743102e-02 1.18092723e-01 -2.07038388e-01 4.12287772e-01\\n5.08737862e-02 -1.93042800e-01 1.90568164e-01 1.70412883e-01\\n-1.15537085e-02 -2.17842802e-01 -1.55100837e-01 3.20548385e-01\\n7.31968656e-02 -3.55577201e-01 -2.31476232e-01 2.29050428e-01\\n-2.50121579e-02 -4.40684736e-01 5.21171331e-01 1.13337338e-01\\n9.24110189e-02 2.72643566e-02 -1.16159029e-01 -2.32919872e-01\\n-1.77426070e-01 1.70408487e-01 5.26866466e-02 1.39061213e-01\\n-2.33479887e-01 -3.14463586e-01 -1.84634715e-01 2.46044591e-01\\n-3.23984891e-01 5.14378920e-02 -1.52195543e-01 -4.35621738e-02\\n2.26933435e-01 5.78851253e-02 -4.53708380e-01 3.67274702e-01\\n-1.32135347e-01 6.78663999e-02 -7.55698010e-02 4.04776424e-01\\n-2.06337631e-01 1.59465760e-01 5.59169799e-03 6.47938624e-02\\n3.99802297e-01 1.13376461e-01 2.43985489e-01 -1.25281349e-01\\n3.36993396e-01 -4.53890823e-02 5.75929657e-02 1.43331200e-01\\n-5.35907924e-01 2.07556084e-01 -1.49998844e-01 -1.52683213e-01\\n1.81781262e-01 -1.96823195e-01 3.12285453e-01 -2.91966051e-01\\n-1.47483036e-01 -1.64649695e-01 -3.89111668e-01 -3.18894982e-01\\n-1.74485579e-01 -9.18097794e-02 4.77153182e-01 -3.70435297e-01\\n5.21936789e-02 1.66082337e-01 -4.85655874e-01 -1.45921335e-01\\n2.64865696e-01 1.82451651e-01 1.85604930e-01 1.27649635e-01\\n-1.58304930e-01 -5.51214039e-01 1.38333708e-01 -3.51694763e-01\\n-3.15113604e-01 1.59235045e-01 -3.75794470e-01 2.17157558e-01\\n1.45935073e-01 1.19720008e-02 -1.27070054e-01 3.55217978e-02\\n-1.85141161e-01 3.11849192e-02 -6.89461268e-03 2.23333780e-02\\n1.29030958e-01 1.05050094e-01 -3.56399387e-01 5.63885152e-01\\n-3.59626651e-01 4.60701376e-01 8.94755051e-02 -9.71409857e-01\\n4.22031671e-01 2.63584405e-01 -1.02848127e-01 -1.26795337e-01\\n4.71205294e-01 -4.43753392e-01 4.78260815e-02 4.41813841e-02\\n-2.57250607e-01 -3.07176352e-01 5.75374588e-02 -2.71455854e-01\\n-3.36258739e-01 5.19671679e-01 1.29784763e-01 4.16212864e-02\\n2.67129093e-01 -7.24109411e-02 -7.14177787e-02 1.26761314e-03\\n-1.58306003e-01 -2.74928063e-01 -5.30700684e-01 5.47005869e-02\\n-5.10486290e-02 -5.00439942e-01 -6.30378947e-02 -4.28231835e-01\\n-2.84703046e-01 -5.66694081e-01 -1.97764635e-01 2.19216749e-01\\n3.84520769e-01 1.22961782e-01 -4.25301529e-02 1.02820165e-01\\n-1.61518782e-01 -6.54224157e-01 8.07235911e-02 2.08535388e-01\\n2.55278736e-01 1.80683687e-01 1.31891578e-01 -4.99014854e-02\\n6.74963817e-02 5.48454225e-01 -2.85875171e-01 -1.52645439e-01\\n1.30869210e-01 4.70873937e-02 3.35348397e-02 -2.26052225e-01\\n1.13714688e-01 3.79775286e-01 -2.72397906e-01 6.17896281e-02\\n3.87193635e-02 -2.93929186e-02 2.79417902e-01 -1.58915501e-02\\n-3.58518094e-01 -1.80215523e-01 2.23382022e-02 2.30242044e-01\\n-4.79898959e-01 -1.45616263e-01 6.14074767e-01 5.33597954e-02\\n5.08374274e-02 2.06001714e-01 1.90679789e-01 -3.13385949e-02\\n-2.26695433e-01 -1.02612279e-01 1.62236392e-01 1.50061622e-02\\n2.05235362e-01 9.67135653e-02 -8.49686936e-02 -6.71822608e-01\\n-3.55596852e+00 -2.40655303e-01 1.55284524e-01 -2.75906891e-01\\n1.68613791e-01 -1.08919814e-01 4.84218001e-02 -1.09523050e-01\\n-3.24899644e-01 7.26152062e-02 -2.22016275e-01 -1.25120699e-01\\n1.17723539e-01 1.54224858e-01 1.33157879e-01 1.84320629e-01\\n9.59208161e-02 -1.28665432e-01 7.88349584e-02 3.30895573e-01\\n-2.23200977e-01 -6.54573083e-01 1.69320539e-01 6.13324121e-02\\n3.30040991e-01 1.46893486e-01 -4.45537865e-01 -1.05466880e-01\\n-1.62606388e-01 -1.20252356e-01 1.25662088e-01 -1.21601708e-01\\n-1.02120712e-01 3.42434853e-01 1.49132356e-01 5.31829819e-02\\n1.04606852e-01 -3.47546875e-01 -7.04226568e-02 -5.01532376e-01\\n4.91460040e-02 -5.71905196e-01 -6.51794747e-02 -8.99054930e-02\\n5.88427126e-01 -2.80828983e-01 1.94617718e-01 7.62112066e-02\\n-2.06799507e-02 1.85572520e-01 1.44446924e-01 -8.37876871e-02\\n-2.55836159e-01 -2.10645676e-01 -1.62164003e-01 -2.23671332e-01\\n5.90205193e-01 2.94643164e-01 -3.13232511e-01 -8.68681818e-02\\n-4.95217107e-02 -2.95137256e-01 -4.83465850e-01 -2.79011905e-01\\n-1.37104899e-01 -1.88478783e-01 -6.56266749e-01 -4.25697178e-01\\n-2.25796267e-01 -1.80703342e-01 -1.66139051e-01 7.01439917e-01\\n-2.64012605e-01 -2.62453705e-01 1.00921631e-01 -3.46553385e-01\\n2.36952186e-01 -9.66002047e-02 -3.42242569e-02 -7.06556067e-02\\n-2.84181625e-01 -4.44613010e-01 2.52509583e-02 3.46773565e-02\\n-2.66742229e-01 -1.68371782e-01 1.19542278e-01 -1.06661342e-01\\n-2.87713021e-01 -5.66252708e-01 3.86521310e-01 7.60023221e-02\\n1.83489665e-01 -1.65171158e-02 4.44281816e-01 -4.35731076e-02\\n4.08518225e-01 1.36947706e-02 2.69098617e-02 -3.51265073e-01\\n9.10397340e-03 -2.76642665e-02 4.72553849e-01 -1.29741937e-01\\n-9.83157828e-02 -6.47749240e-03 -2.21354753e-01 -4.07004990e-02\\n3.06377232e-01 -1.11976698e-01 7.99128264e-02 -1.88812658e-01\\n1.26800165e-01 -2.06962973e-01 -1.93028390e-01 -9.84182209e-03\\n2.39147887e-01 7.81929970e-01 -7.20244423e-02 -3.01665902e-01\\n-2.10879266e-01 3.84307951e-01 -7.40293413e-02 3.28381099e-02\\n2.07846258e-02 1.00851923e-01 -2.95618147e-01 2.35412329e-01\\n1.37765840e-01 -1.36355711e-02 -2.22225517e-01 -1.47651941e-01\\n-5.80089279e-02 1.66905209e-01 3.36287975e-01 5.07367663e-02\\n-3.02889664e-02 -5.25917530e-01 -1.29851177e-01 1.33927256e-01\\n1.28232211e-01 3.93928289e-01 2.39438891e-01 -1.84936419e-01\\n2.22731292e-01 2.32599810e-01 -2.50242740e-01 2.39527568e-01\\n-2.83800423e-01 2.35451996e-01 -7.64704585e-01 -3.03185910e-01\\n-2.81680763e-01 -3.94618988e-01 1.16193831e-01 2.52213627e-01\\n1.87093347e-01 -5.04459403e-02 1.07148074e-01 -4.95514274e-01\\n2.35754460e-01 2.26022303e-02 3.35982263e-01 1.29349008e-01\\n-6.46788478e-02 6.23621047e-01 -2.12318115e-02 -1.69986337e-01\\n-2.44507968e-01 2.67336033e-02 -1.45196453e-01 -1.33245438e-01\\n-8.30217674e-02 -4.87464607e-01 -2.08144367e-01 3.26940775e-01\\n1.37608171e-01 -1.01620384e-01 -5.63129634e-02 3.72164637e-01\\n-1.27995372e-01 -2.09884062e-01 -1.83306292e-01 -1.33133292e-01\\n2.81402797e-01 2.17932522e-01 2.09348887e-01 -4.02280688e-01\\n9.36380178e-02 2.15110779e-01 -3.09819635e-02 4.84630972e-01\\n8.35286826e-03 4.02724408e-02 -7.67687755e-03 -2.25152537e-01\\n5.52247107e-01 3.87647897e-02 -1.20443031e-01 -1.38466567e-01\\n9.49028358e-02 -2.30418012e-01 -3.84659052e-01 1.25977919e-01\\n6.38883337e-02 -1.87456980e-01 1.14209644e-01 2.15579525e-01\\n1.52309850e-01 -7.30568022e-02 -4.40153718e-01 -1.39011279e-01\\n-4.87896085e-01 -3.62862535e-02 4.67279106e-02 -6.42781854e-01\\n-2.70322878e-02 -2.83410326e-02 -4.10962462e-01 2.39723563e-01\\n-1.07274562e-01 -1.00738727e-01 4.24173698e-02 3.57225798e-02\\n-3.39092255e-01 -2.02465370e-01 1.49731338e-01 2.79068232e-01\\n-3.52344126e-01 -3.33711416e-01 1.78214327e-01 -8.54675889e-01\\n2.47098103e-01 1.21136367e-01 -8.37479234e-02 1.78197846e-01\\n-1.71670914e-01 -6.47996247e-01 3.20427060e-01 -3.30467850e-01\\n-1.79076195e-01 -8.98823738e-02 -2.48933434e-01 -4.04764771e-01\\n6.59977943e-02 6.58696890e-03 -2.82538086e-01 4.48034406e-01\\n-3.01077366e-01 3.93791229e-01 -8.48759562e-02 3.58852893e-02\\n-3.98221016e-02 -1.61013559e-01 9.78271477e-03 -4.43825394e-01\\n-5.72007418e-01 -1.69654280e-01 -2.98258394e-01 -2.35934362e-01\\n-9.88285914e-02 -1.18832611e-01 -8.12308714e-02 3.52456607e-02\\n3.54865879e-01 1.14554249e-01 -1.36785358e-01 -2.52002120e-01\\n-5.57368156e-03 -4.30130780e-01 -2.71191522e-02 -1.26527965e-01\\n1.06544420e-01 -1.53415501e-01 1.08936511e-01 8.67359564e-02\\n1.55309409e-01 -3.79739374e-01 4.46728379e-01 -2.59597093e-01\\n-2.59363890e-01 -1.41129419e-01 -4.35267948e-02 4.96094562e-02\\n3.98187667e-01 -4.59367126e-01 -1.07762240e-01 3.92845273e-01\\n1.93437263e-01 -3.45005020e-02 2.40517125e-01 -4.67248335e-02\\n-1.40279442e-01 3.39832515e-01 -3.51590633e-01 1.38086602e-01\\n7.89118230e-01 5.09127788e-02 2.53097117e-01 1.38164848e-01\\n9.57180634e-02 2.78728694e-01 3.98119569e-01 -1.52839348e-01\\n1.58536492e-03 3.67063254e-01 1.65117055e-01 -4.49695587e-01\\n-5.78594878e-02 8.70994851e-03 -2.30639786e-01 -3.60636890e-01\\n6.60404742e-01 2.89339334e-01 -4.18956488e-01 -2.15832219e-01\\n-1.34726197e-01 -2.69058943e-01 2.91062832e-01 4.01742421e-02\\n4.99096364e-02 -1.34873927e-01 4.44533676e-01 -6.62775561e-02\\n2.82062262e-01 4.30130154e-01 -1.58522457e-01 -3.04299831e-01\\n8.06152970e-02 2.67300189e-01 4.39011157e-02 4.75732297e-01\\n-2.45493591e-01 2.18553111e-01 2.88020354e-02 -1.01469513e-02\\n-2.27669016e-01 2.33838737e-01 1.84801057e-01 2.95844059e-02\\n1.07878618e-01 8.64339545e-02 4.31850910e-01 4.71262366e-01\\n3.05678815e-01 4.31435227e-01 2.98277050e-01 -1.45030143e-02\\n4.48379636e-01 5.70726156e-01 3.76794904e-01 9.83860269e-02\\n5.13080098e-02 1.43768489e-01 5.18906862e-02 -7.60190338e-02\\n2.82849103e-01 4.16783631e-01 4.77079451e-02 8.52276564e-01\\n4.27912921e-01 2.30356649e-01 6.20717645e-01 -5.23009658e-01\\n-2.99823344e-01 1.81314021e-01 5.06686389e-01 -3.16361129e-01\\n4.19216044e-02 1.17047474e-01 -8.71207491e-02 2.93500602e-01\\n-4.64749306e-01 -2.35303223e-01 -5.92809655e-02 -3.21552306e-02\\n1.27653927e-01 -1.75178230e-01 -1.54573902e-01 9.40735117e-02\\n-1.38408035e-01 -7.15309978e-02 -3.64198565e-01 2.75212377e-02\\n-1.64753959e-01 -1.31039605e-01 -1.19457394e-01 -1.50808189e-02\\n-1.62185878e-02 -3.97988379e-01 -1.21359900e-01 -1.10515408e-01\\n2.01168522e-01 -1.73420921e-01 -2.41910741e-01 -1.49781123e-01\\n3.32884729e-01 1.39458716e-01 5.97308397e-01 1.75098151e-01\\n3.75264138e-02 -3.41061950e-01 -1.71172351e-01 1.12551048e-01\\n1.72651336e-01 1.46947056e-01 -2.02078838e-02 2.89516687e-01\\n-2.04414576e-01 -5.12583889e-02 4.92966408e-03 3.40786844e-01\\n-3.71831149e-01 6.67385459e-02 -1.65685520e-01 1.12376697e-01\\n2.51964349e-02 2.15620115e-01 -1.07497036e-01 3.21759023e-02\\n-7.58459643e-02 -4.50076193e-01 2.71587908e-01 -1.32524058e-01\\n-1.07328348e-01 -1.59549024e-02 1.93120822e-01 1.77724034e-01\\n-1.29216149e-01 -7.15259314e-02 -1.16562486e-01 8.24521407e-02\\n4.55437005e-02 3.56522501e-01 -1.77289248e-01 -1.50034070e-01\\n-2.65280694e-01 2.77813762e-01 -5.94692864e-02 7.37490356e-02\\n6.77719563e-02 3.23635995e-01 4.51249182e-02 1.32341564e-01\\n3.95771831e-01 2.62103900e-02 -1.93035319e-01 -2.11952791e-01\\n-3.26962799e-01 -1.42629772e-01 -1.01569504e-01 -7.62116089e-02\\n1.40196756e-01 -3.45731854e-01 -2.38425992e-02 -1.38485506e-01\\n-1.37039483e-01 -3.44416171e-01 2.10568272e-02 -2.36099795e-01]]',\n", + " 'Job Description Project Manager: Blockchain Developer and Builder Engagement CasperLabs is building the next big thing in blockchain technology - a blockchain platform for the builders that is purpose built to scale opportunity for everyone, forever. We are looking for an experienced, technical Project Manager, who is passionate about engaging App Developers and Builders to experiment with our platform and grow active communities around it. You are at your best managing cross-functional projects, working closely with Engineering and Marketing to share knowledge and user feedback. You are excited about working with App Developers, Builders and are at ease discussing technical aspects with them as well as managing technical demos and leading hackathons in blockchain conferences. Your responsibilities will include: Understand developers’ and builders’ objectives and requirements. Coordinate across Engineering, Marketing and other teams (Tech writer, App Developer etc) to generate collaterals (technical documentation, videos, reference implementations, illustrations, use-cases etc) to showcase the technology in these events and to grow technical developer communities for CasperLabs platform. Project managing CasperLabs participation in conferences, meet-ups and other events and organization of demos and hackathons etc. for engaging App Developers and Builders. Work with Product teams to understand features roadmap and also share knowledge, feedback from these engagements to the product and marketing teams. Create feature requests for new functionalities based on this feedback. Requirements Qualifications 5 years in software development with experience in modern application development methodologies. Experience with JavaScript, RUST, and blockchain technology. Ability to project manage technical events. Experience of presenting, demoing at technical conferences. Excellent communication skills to engage with tech savvy customers and experience with growing technical communities. Technical acumen, ability to share customer feedback to product and marketing. Experience of managing high visibility cross functional projects and working with diverse teams like engineering and marketing. Excited about domestic and international travel (about 3-5 days per month) ',\n", + " '[\"Verbal Communication Skills\", \"Coordinating\", \"Management\", \"Communications\", \"Technical Acumen\", \"Presentations\"]',\n", + " '[\"Application Development\", \"Blockchain\", \"Scale (Map)\", \"Activism\", \"Use Case Diagram\", \"Technical Management\", \"Technical Communication\", \"Cross-Functional Coordination\", \"JavaScript (Programming Language)\", \"Community Development\", \"Illustration\", \"Technical Documentation\", \"Reference Implementation\", \"User Feedback\", \"Software Development\", \"Project Management\", \"Rust (Programming Language)\", \"Job Descriptions\", \"Integrated Product Team\"]',\n", + " \"['English', 'Serbian']\"],\n", + " ['65',\n", + " 'internship in software engineering',\n", + " 'Zürich',\n", + " 'Venture Capital & Private Equity',\n", + " 'www.investiere.ch',\n", + " '[[-1.34337008e-01 1.63646415e-01 5.36213756e-01 -8.01078528e-02\\n5.42521477e-01 -1.00907318e-01 -9.42225754e-03 4.80246872e-01\\n-7.36143216e-02 -4.75178659e-01 9.17065609e-03 -2.05954865e-01\\n7.83101320e-02 1.36848420e-01 1.07726656e-01 2.70896733e-01\\n2.88107067e-01 1.29904479e-01 -1.59375340e-01 1.76806614e-01\\n1.99277341e-01 -1.48189917e-01 1.86817139e-01 7.22412407e-01\\n5.48068941e-01 -5.50843626e-02 -4.24359478e-02 -4.42284718e-02\\n-1.93588898e-01 -3.04115504e-01 4.47946876e-01 -7.01969862e-02\\n-8.25247914e-02 -3.96388829e-01 9.71253067e-02 -4.03905325e-02\\n-1.91450372e-01 -9.99890268e-02 -1.76792905e-01 1.99802920e-01\\n-6.17486417e-01 -2.04826638e-01 2.84638442e-02 9.48825926e-02\\n-2.84893036e-01 -3.41554403e-01 1.11690335e-01 -7.62473121e-02\\n2.65813798e-01 2.58713812e-02 -4.52398270e-01 2.56151646e-01\\n-1.63122237e-01 -2.06633508e-01 3.55508685e-01 6.24765813e-01\\n-3.37766297e-02 -4.36281174e-01 -5.57289064e-01 -2.85065502e-01\\n7.34069943e-02 -1.67526931e-01 5.05903289e-02 -3.39640141e-01\\n3.12954605e-01 5.91142699e-02 1.02274247e-01 3.26941907e-01\\n-8.92845809e-01 -3.66910622e-02 -1.94773734e-01 -4.84204292e-02\\n-2.63017803e-01 -1.19995676e-01 -2.60107160e-01 -8.28199089e-03\\n-8.90427381e-02 5.21384537e-01 7.25836679e-02 3.73426452e-02\\n-1.51157573e-01 2.88798392e-01 -3.23880792e-01 4.41498101e-01\\n8.45139697e-02 2.59786844e-01 1.40834361e-01 2.41163090e-01\\n-3.10629010e-01 3.97966504e-01 1.50540158e-01 -3.07049900e-01\\n2.75296479e-01 6.13732338e-02 4.41681057e-01 9.26104933e-02\\n1.04586169e-01 3.35003473e-02 -2.75862992e-01 3.41921002e-01\\n2.99706340e-01 -2.36870155e-01 7.86397755e-02 -1.69480726e-01\\n-3.43083180e-02 1.83355846e-02 7.81609677e-03 1.50317430e-01\\n-3.01395625e-01 4.52977240e-01 1.86836869e-01 -9.37541872e-02\\n-1.76229194e-01 -5.49221873e-01 -9.83577874e-03 -2.09357515e-02\\n1.19718025e-02 1.55485585e-01 2.15038836e-01 1.40489504e-01\\n1.31163657e-01 6.92061558e-02 1.48857981e-01 8.44469488e-01\\n-1.14525452e-01 4.58277203e-02 -2.46382222e-01 3.07828069e-01\\n2.03332454e-02 -2.98745811e-01 1.98079988e-01 2.95082152e-01\\n2.58437321e-02 -7.74823874e-02 -1.56687558e-01 4.13819522e-01\\n-2.92064678e-02 -2.24598393e-01 -3.03157091e-01 1.34789035e-01\\n-1.29112639e-02 -3.60426575e-01 6.17812991e-01 1.36699080e-01\\n1.89158157e-01 1.04470160e-02 8.19882452e-02 -2.23682478e-01\\n-1.28406942e-01 2.24445134e-01 -4.15785536e-02 6.90870211e-02\\n-2.66860336e-01 -1.76316708e-01 -2.79011160e-01 1.47194639e-01\\n-3.00567687e-01 2.14299373e-02 -1.95612665e-02 -5.84186651e-02\\n3.13555241e-01 1.50806233e-01 -2.03662470e-01 3.87626112e-01\\n-3.62312272e-02 1.29218176e-01 2.95628197e-02 2.11626485e-01\\n-2.48146668e-01 3.21363211e-01 -1.40236020e-01 -1.84681881e-02\\n5.72188973e-01 1.29853804e-02 2.10156381e-01 8.96748453e-02\\n2.74574071e-01 -1.06913365e-01 8.07373002e-02 1.08396962e-01\\n-6.12612605e-01 2.81096786e-01 1.86051689e-02 -1.24053828e-01\\n9.94442850e-02 -8.51314813e-02 2.27947250e-01 -2.56508350e-01\\n7.50555098e-02 -1.19216450e-01 -3.35309774e-01 -3.03479314e-01\\n-2.33170182e-01 -1.82270017e-02 4.71142024e-01 -4.94881332e-01\\n-1.36893615e-01 3.29573303e-01 -4.80622560e-01 -1.02106199e-01\\n2.95023113e-01 2.11810127e-01 1.64180592e-01 8.50532874e-02\\n-2.09493905e-01 -4.96632636e-01 1.05139606e-01 -3.52494866e-01\\n-2.42749199e-01 1.09366380e-01 -2.96872765e-01 3.63404244e-01\\n4.34414521e-02 -7.24572502e-03 -3.19042355e-02 1.99488297e-01\\n-1.35283336e-01 -7.88929984e-02 9.14442763e-02 1.18360162e-01\\n3.10803503e-01 5.53547665e-02 -5.02469897e-01 4.89664137e-01\\n-1.75774321e-01 5.92771232e-01 9.53852460e-02 -8.88040245e-01\\n4.17485714e-01 3.15697700e-01 -6.61279336e-02 -3.38652402e-01\\n5.83724618e-01 -1.56624094e-01 2.47379392e-02 6.26120269e-02\\n-5.49846768e-01 -4.14981276e-01 2.05314547e-01 -2.14727327e-01\\n-2.08273262e-01 4.58074391e-01 8.10602307e-02 5.62296323e-02\\n2.48760134e-01 -2.03495979e-01 -1.72855452e-01 4.70590219e-02\\n-8.22422132e-02 -2.35783070e-01 -5.54661453e-01 -1.03056423e-01\\n-1.45573720e-01 -5.38740754e-01 -6.52554184e-02 -4.14454699e-01\\n-2.34221742e-01 -3.37592781e-01 -8.40818658e-02 1.76153556e-01\\n3.37151378e-01 1.50845692e-01 4.62369435e-02 1.54242501e-01\\n-9.46516544e-02 -5.29070199e-01 -8.69205371e-02 1.47679478e-01\\n3.28064263e-01 1.77751467e-01 6.29430190e-02 4.40707654e-02\\n-1.19085908e-02 6.83524489e-01 -1.52305201e-01 -8.43667090e-02\\n1.57351404e-01 2.05439836e-01 1.37507930e-01 -1.55841514e-01\\n1.38513878e-01 2.98108131e-01 -3.48469079e-01 1.17704444e-01\\n-1.18397802e-01 8.86833481e-03 2.82785475e-01 1.28608063e-01\\n-3.26086938e-01 -2.70682812e-01 -1.67983398e-01 6.02825768e-02\\n-5.09099543e-01 -2.26683125e-01 6.74059868e-01 2.19456688e-01\\n2.14915588e-01 2.05150455e-01 1.49083301e-01 -1.05556354e-01\\n-3.34455892e-02 -2.05017060e-01 1.63019806e-01 4.36320938e-02\\n1.85219616e-01 1.12400040e-01 -6.57394752e-02 -5.94675720e-01\\n-3.14523864e+00 -1.43387973e-01 1.96698308e-01 -3.32020462e-01\\n8.72940943e-02 -1.91424355e-01 -9.66249779e-03 -1.26701280e-01\\n-2.70908654e-01 -7.53519610e-02 -2.60375977e-01 -1.76407441e-01\\n1.58801392e-01 1.22986138e-01 1.01718768e-01 2.42066026e-01\\n7.89324045e-02 -1.25840247e-01 5.14420457e-02 3.03308457e-01\\n-3.31856400e-01 -5.31662762e-01 2.61339903e-01 -5.34521267e-02\\n3.03692728e-01 3.14413279e-01 -3.88557583e-01 -1.69544399e-01\\n-2.30757475e-01 -2.53103584e-01 2.36717761e-01 -2.33345538e-01\\n-7.30268732e-02 2.89472669e-01 2.27129698e-01 -8.91174302e-02\\n2.14254722e-01 -4.57100064e-01 -7.73837939e-02 -4.50518996e-01\\n1.87759161e-01 -6.81079388e-01 -1.26299918e-01 -1.21217497e-01\\n7.36948609e-01 -4.18577075e-01 6.69073611e-02 1.17754966e-01\\n1.71761319e-01 1.38715103e-01 1.29446445e-03 1.28638409e-02\\n-2.84309834e-01 -2.83133566e-01 -4.33252528e-02 2.00033374e-02\\n3.67738038e-01 5.75577438e-01 -1.98566332e-01 1.21205440e-02\\n6.87287152e-02 -3.32145393e-01 -3.67791295e-01 -3.10723722e-01\\n-1.20364316e-01 -3.97466272e-01 -6.12538457e-01 -3.25920820e-01\\n-6.97302669e-02 -1.77819103e-01 -1.24055736e-01 5.45546293e-01\\n-1.76778600e-01 -3.20795417e-01 -4.13102619e-02 -5.75784445e-01\\n2.87172556e-01 -1.27772182e-01 -9.56566408e-02 -2.21723154e-01\\n-3.24751407e-01 -3.98359776e-01 2.70145983e-02 -3.98050882e-02\\n-1.21716686e-01 -2.83581167e-01 7.19328299e-02 -1.70839414e-01\\n-3.10252786e-01 -6.31471217e-01 4.40282434e-01 7.02010542e-02\\n2.80810028e-01 9.55578312e-02 2.60536611e-01 -6.87211305e-02\\n2.42604718e-01 -2.68958479e-01 -6.52277265e-07 -3.32351893e-01\\n1.82696238e-01 5.81100807e-02 4.50256348e-01 -2.72843838e-01\\n2.85012405e-02 7.54184797e-02 -2.46181697e-01 -1.05317116e-01\\n2.15433270e-01 6.00500777e-02 1.15887806e-01 -2.51849830e-01\\n2.70699978e-01 -1.96424022e-01 -1.93127617e-01 -4.00374318e-03\\n5.47083989e-02 5.44419348e-01 1.10143051e-02 -3.64890695e-01\\n-1.06160134e-01 5.00124753e-01 -6.40140846e-02 -8.48398060e-02\\n-2.39083543e-01 9.56038907e-02 -2.95583069e-01 2.04401523e-01\\n-5.91227226e-03 -2.21146524e-01 -2.38888547e-01 -2.72728890e-01\\n-1.11058436e-01 3.20618957e-01 2.71947205e-01 7.02581033e-02\\n5.20772152e-02 -4.27505642e-01 4.30637971e-02 2.73428380e-01\\n7.89303854e-02 4.13618475e-01 6.57725856e-02 -1.79144055e-01\\n-2.37990506e-02 3.81010681e-01 -1.75012067e-01 1.99344561e-01\\n-3.21334183e-01 8.81612077e-02 -5.92005968e-01 -2.86629707e-01\\n-2.37683490e-01 -4.54205722e-01 6.13500066e-02 1.91203609e-01\\n2.38448307e-01 1.60973016e-02 3.13769318e-02 -4.61979538e-01\\n3.33905935e-01 -1.18792057e-02 2.92176276e-01 1.51993543e-01\\n4.02166918e-02 5.08290291e-01 -3.24870832e-02 -8.53091180e-02\\n-1.44991085e-01 5.89203462e-02 -3.08907390e-01 -1.15894563e-01\\n1.33956419e-02 -5.02786875e-01 -1.20861754e-01 4.49983835e-01\\n7.93771744e-02 -2.36958295e-01 -1.07669875e-01 2.22693935e-01\\n-4.38144729e-02 -2.34239161e-01 -1.49595827e-01 7.38606825e-02\\n4.10497874e-01 1.36834145e-01 3.14824939e-01 -4.39443350e-01\\n1.06498436e-03 2.84343809e-02 -1.56899214e-01 5.09854436e-01\\n5.75984418e-02 1.21802893e-02 -1.32647365e-01 -2.61771411e-01\\n3.48148316e-01 -1.82851076e-01 -4.36378866e-02 8.46027024e-03\\n6.55370802e-02 -1.41125754e-01 -5.26596010e-01 8.47164243e-02\\n-1.13346977e-02 -5.39075173e-02 3.01400274e-02 7.26367608e-02\\n1.64747268e-01 6.92630187e-02 -5.38010001e-01 -2.67275244e-01\\n-3.52776587e-01 1.01353042e-02 6.34088144e-02 -4.35367286e-01\\n-3.99925560e-02 -3.15161012e-02 -6.45430803e-01 2.46040687e-01\\n-2.63495594e-01 -1.06394216e-01 1.58297211e-01 -1.00343162e-02\\n-3.32590818e-01 -3.58649017e-03 1.48737177e-01 2.89066315e-01\\n-3.57840002e-01 -2.20583826e-01 5.87247573e-02 -1.02470171e+00\\n2.00929537e-01 -6.18829802e-02 -2.01624155e-01 1.71437025e-01\\n-9.55330655e-02 -7.66089439e-01 1.35085911e-01 -3.58011931e-01\\n-8.60535800e-02 -1.68887079e-02 -1.95505828e-01 -5.76224804e-01\\n6.09557424e-03 8.03248137e-02 -2.68829286e-01 4.37949985e-01\\n-2.61651725e-01 4.15718496e-01 -1.36057679e-02 7.08136931e-02\\n3.38980965e-02 -3.28646690e-01 2.10948102e-02 -4.07981217e-01\\n-3.86089385e-01 -1.44698501e-01 -3.96761060e-01 -1.55249178e-01\\n3.76804732e-02 -3.53774995e-01 -1.02801286e-01 5.79404011e-02\\n3.25441480e-01 3.48982727e-03 -8.20470676e-02 -2.88783193e-01\\n9.44731012e-02 -6.42296314e-01 3.12745832e-02 -7.62304291e-03\\n-4.56989035e-02 -8.25515985e-02 2.25617751e-01 8.93498287e-02\\n1.28522798e-01 -5.04110754e-01 3.39483589e-01 -3.32809806e-01\\n-4.07107323e-01 -3.06565426e-02 7.29789883e-02 4.38170582e-02\\n3.48695606e-01 -4.07504886e-01 -4.87037972e-02 4.40224320e-01\\n1.71396583e-01 1.37261376e-01 2.32798263e-01 -7.57163716e-03\\n-8.79372805e-02 2.96312243e-01 -3.55780154e-01 1.55977279e-01\\n8.41415763e-01 6.46742061e-03 1.51879057e-01 2.41049856e-01\\n1.54904887e-01 3.32360327e-01 5.17850041e-01 1.95554532e-02\\n-1.72292084e-01 2.87881196e-01 4.60712314e-02 -6.26506150e-01\\n-8.61246325e-03 -1.17018253e-01 -2.70727515e-01 -4.20624137e-01\\n6.58684433e-01 4.38828439e-01 -4.68059182e-01 -2.26072028e-01\\n-1.59305856e-01 -2.33720064e-01 -3.99751496e-03 -1.49832666e-01\\n1.09964140e-01 -7.81664029e-02 3.92222792e-01 -6.14410453e-02\\n3.38254601e-01 4.71006423e-01 -1.90288618e-01 -2.86478251e-01\\n-4.73232493e-02 9.09509659e-02 -2.37055458e-02 4.31943655e-01\\n-2.34474108e-01 3.77940714e-01 4.02450711e-02 1.41926274e-01\\n-7.27563724e-02 1.47303164e-01 9.62411761e-02 8.22771639e-02\\n1.09053999e-01 5.01225144e-02 3.75123292e-01 4.37098891e-01\\n3.62140298e-01 5.10423779e-01 3.86602223e-01 1.59495492e-02\\n5.38423955e-01 5.48714399e-01 3.41917664e-01 2.23887354e-01\\n-8.09940472e-02 1.24369994e-01 -5.33232689e-02 -4.23859106e-03\\n3.10577095e-01 3.57037246e-01 6.26696274e-02 9.31097627e-01\\n4.33853209e-01 2.12539271e-01 6.76587105e-01 -6.63434446e-01\\n-3.80192310e-01 1.44151514e-02 4.48774368e-01 -3.88812721e-01\\n-6.17304742e-02 6.15526028e-02 -1.33545130e-01 2.76637316e-01\\n-4.52169538e-01 -3.20276678e-01 -1.27807751e-01 1.70570552e-01\\n-6.55955635e-03 -1.55866891e-01 -3.17582577e-01 1.06215030e-01\\n-1.49328306e-01 -8.40213373e-02 -5.84760249e-01 3.19982097e-02\\n-2.40489498e-01 -2.45308101e-01 -6.52740970e-02 -1.35858208e-01\\n-7.38448724e-02 -4.07880783e-01 -1.86275229e-01 -6.45738840e-02\\n3.96742105e-01 -6.03547916e-02 -3.25962752e-02 -2.03806683e-01\\n2.81600535e-01 2.74856031e-01 5.57233870e-01 4.64226045e-02\\n6.83269352e-02 -2.95181006e-01 -1.99035034e-01 1.87840447e-01\\n2.18090951e-01 6.57629818e-02 -3.39774899e-02 3.17122161e-01\\n-3.13661903e-01 -1.38562053e-01 1.39029622e-01 4.26600844e-01\\n-5.33683360e-01 -1.84046440e-02 -1.31847396e-01 2.21183315e-01\\n2.27309942e-01 2.20703796e-01 -1.94886655e-01 5.31799123e-02\\n-1.13080122e-01 -4.14816380e-01 1.96838170e-01 -5.39342873e-02\\n-7.94884786e-02 -4.22132798e-02 2.11815596e-01 1.38256833e-01\\n-2.05662549e-01 1.78105421e-02 -4.19876352e-02 1.18581720e-01\\n1.43464744e-01 3.51034313e-01 -3.01953584e-01 -2.62854010e-01\\n-1.74047977e-01 1.55249164e-01 -2.71763206e-01 1.27591789e-01\\n-1.13803893e-02 3.09970796e-01 1.22065231e-01 6.65671676e-02\\n3.88472497e-01 -9.30234641e-02 -1.26690954e-01 -2.01170176e-01\\n-2.57375419e-01 -2.97722250e-01 2.83939969e-02 -1.79986775e-01\\n3.11180413e-01 -4.61371869e-01 -6.99892491e-02 -3.73740681e-02\\n-1.80731103e-01 -3.39927375e-01 7.06555024e-02 -1.86157867e-01]]',\n", + " 'If you are looking for a very motivating startup work environment and team, if you would like to contribute to the growth of a disruptive VC platform and if you are hands-on, then this could be the perfect internship opportunity and work environment for you. We already are one of the most innovative startup investment platforms in Europe. We are now looking to grow the next level digital infrastructure for startup investments, building a service platform and network for a large community of entrepreneurs, private and institutional investors. investiere.ch is an online investment platform that offers private and institutional investors direct and professional access to startup investments. Having successfully closed more than 70 financing rounds, investiere.ch is one of the most active venture capital investors in Switzerland. As a intern in our tech team you will: Develop secure and reliable Scala web-services for our platform (scala/PlayFramework, MongoDB, MySQL, Redis and ElasticSearch, graphQL) Develop frontend applications (Angular 1.x & 5, Ionic) Support in administration of servers / cloud services Write tests for services and frontend features that you build (e.g. Postman, unit tests, etc) Find out more about our IT team. Requirements You are the right candidate for this position if most of the following skills match your profile: University Bachelor or Master degree with excellent credentials in computer science Java or Scala development Frontend experience or interest: Javascript / HTML / CSS Eager to learn and experience new technologies Ability to work independently with high attention to detail Strong command of English, our work language Entrepreneurially minded and very strong team player Benefits Dynamic and challenging startup environment Flexibility with work locations and hours Frequent team events and more Has your interest been piqued? Meet our experienced investiere team at our offices in Zurich and Geneva. The work location for this position is Zurich. If you have any further questions, just give us a call (+41 41 545 94 94). Please send your CV and cover letter using the application form below. Applications will be processed within two working days.',\n", + " '[\"Writing\", \"Professionalism\", \"Infrastructure\", \"Communications\", \"Reliability\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Playframework\", \"MySQL\", \"Cascading Style Sheets (CSS)\", \"Postman\", \"Unit Testing\", \"Computer Science\", \"Scala (Programming Language)\", \"Activism\", \"Venture Capital\", \"MongoDB\", \"E (Programming Language)\", \"Levelling\", \"GraphQL\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Investments\", \"Cloud Services\", \"Web Services\", \"Finance\", \"Digitization\", \"JavaScript (Programming Language)\", \"Redis\", \"Angular (Web Framework)\", \"Investing Online\", \"Java (Programming Language)\", \"Elasticsearch\"]',\n", + " \"['English', 'Thai', 'Avestan']\"],\n", + " ['75',\n", + " 'data scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.48218799e-01 3.98553580e-01 4.48650986e-01 4.92771119e-02\\n5.86561203e-01 -9.24114138e-02 -1.81912389e-02 2.13432878e-01\\n-3.11015211e-02 -2.82730550e-01 -8.71167332e-02 -2.41187185e-01\\n-1.60075068e-01 2.63471454e-02 8.42027515e-02 5.44797182e-01\\n3.58908772e-01 -4.41736393e-02 -1.85106501e-01 3.56566519e-01\\n2.01369464e-01 1.06348529e-01 -1.47212103e-01 5.85177541e-01\\n3.70589167e-01 -9.21432208e-03 -9.54809040e-02 7.73213729e-02\\n-2.78175861e-01 -2.10277677e-01 4.44818437e-01 1.66574001e-01\\n-2.30424628e-01 -3.42857540e-01 -5.42009436e-02 2.47766063e-01\\n-1.37713790e-01 9.12014991e-02 -3.63584757e-02 2.38984585e-01\\n-4.48171556e-01 -2.06665128e-01 -1.51563566e-02 4.79427585e-03\\n-3.62065941e-01 -2.85158157e-01 -4.18749601e-02 -1.83785513e-01\\n-6.97284192e-02 1.98318213e-02 -4.95001614e-01 2.30875939e-01\\n-2.44028360e-01 -7.81003088e-02 1.72700807e-01 7.11565256e-01\\n1.20346546e-01 -4.75960970e-01 -2.77219176e-01 -3.31929535e-01\\n-9.73411929e-03 -7.70658553e-02 9.59913880e-02 -3.51645738e-01\\n4.43587214e-01 5.81269823e-02 8.64050817e-03 3.14471930e-01\\n-6.24152184e-01 -1.23545900e-01 -3.26808691e-01 7.62146860e-02\\n-5.18489480e-01 1.37981802e-01 -2.31656983e-01 -1.11995570e-01\\n5.82458004e-02 3.27182204e-01 -7.81238079e-02 9.46493540e-03\\n-1.71902090e-01 2.79123157e-01 -1.78799495e-01 1.53056100e-01\\n3.46613854e-01 8.10454339e-02 3.39069694e-01 4.19547588e-01\\n-4.29440647e-01 2.89209902e-01 1.55703187e-01 -1.55438304e-01\\n2.95470566e-01 1.72337323e-01 4.02113765e-01 8.96203890e-02\\n1.02434950e-02 2.02118903e-01 -2.32505575e-01 2.20376879e-01\\n1.24818213e-01 -2.97413260e-01 4.42245826e-02 -5.03518917e-02\\n-1.51268661e-01 -3.21815200e-02 1.58528853e-02 3.42232168e-01\\n-3.80864948e-01 4.69911128e-01 1.36027470e-01 -3.90998647e-02\\n8.15539807e-03 -6.60897374e-01 -1.56784669e-01 -9.19608474e-02\\n9.84376371e-02 2.91764408e-01 1.60102248e-01 1.81160212e-01\\n2.20054179e-01 4.64020483e-02 2.53164917e-01 8.04073334e-01\\n1.00027300e-01 8.80309418e-02 -6.47939891e-02 3.60806972e-01\\n1.37620926e-01 -2.03445137e-01 1.62703991e-01 1.34787992e-01\\n9.12328362e-02 -4.57040146e-02 -3.18734229e-01 2.83341885e-01\\n-3.45635355e-01 -1.95809200e-01 -3.69653285e-01 1.71189681e-01\\n-9.09340233e-02 -4.89659160e-01 4.95815367e-01 3.46038975e-02\\n2.55452782e-01 -1.14884555e-01 5.43094650e-02 -5.92030510e-02\\n-3.21182758e-02 4.19969320e-01 1.90752909e-01 2.62173802e-01\\n-3.94834369e-01 -2.07365006e-01 -1.51785448e-01 3.42864811e-01\\n-3.89101803e-01 1.06257834e-01 -1.62768617e-01 -4.83989157e-02\\n2.40730494e-01 -2.79334243e-02 -4.42757189e-01 1.32584004e-02\\n-1.23388596e-01 -4.92695391e-01 -1.00335635e-01 5.17035306e-01\\n-6.50016144e-02 2.89653510e-01 8.19846243e-02 -2.09943742e-01\\n6.21065497e-01 1.44846827e-01 1.73110217e-01 -2.57308483e-02\\n3.92085224e-01 -1.49697646e-01 3.79890889e-01 2.08728060e-01\\n-7.64512002e-01 4.12786245e-01 -4.84670922e-02 -2.16653824e-01\\n4.00315449e-02 2.16092151e-02 5.67780256e-01 -3.03323656e-01\\n1.91847295e-01 -2.69399613e-01 -2.99743652e-01 -2.85988778e-01\\n-4.77335513e-01 -3.97953689e-02 4.35685426e-01 -1.60055354e-01\\n-3.57707478e-02 1.77616984e-01 -5.76235294e-01 -2.26459458e-01\\n1.89867377e-01 5.93552925e-02 1.18174009e-01 1.76195592e-01\\n-1.14668973e-01 -6.69884205e-01 -3.55615653e-02 -4.65125233e-01\\n-4.69790220e-01 1.59639582e-01 -2.18663603e-01 2.65951008e-01\\n6.10612929e-02 -5.01557365e-02 -1.12219915e-01 2.00595498e-01\\n-3.86140317e-01 3.75286154e-02 3.05101812e-01 8.56878608e-02\\n2.64729649e-01 4.21847310e-03 -3.63778949e-01 4.56878036e-01\\n-1.23133183e-01 5.85348725e-01 3.54784340e-01 -8.20730567e-01\\n6.49418235e-01 2.29462966e-01 2.00786982e-02 -2.97310024e-01\\n5.68724275e-01 -3.76115888e-01 -1.34289294e-01 2.23710686e-02\\n-9.78121534e-02 -1.87982932e-01 3.73589873e-01 -2.44125187e-01\\n-2.52155364e-01 6.43405616e-01 2.22735196e-01 3.53244245e-02\\n2.76568949e-01 -2.57539332e-01 -2.48000592e-01 1.34900197e-01\\n-1.94031492e-01 -2.10890263e-01 -3.71427685e-01 8.93683955e-02\\n-2.63613630e-02 -4.24292058e-01 -1.11222446e-01 -2.65511364e-01\\n-1.84541255e-01 -4.23637390e-01 -9.70244259e-02 3.59126002e-01\\n4.31381911e-02 1.12691946e-01 -3.17985900e-02 -9.39878523e-02\\n-7.75989816e-02 -7.25632191e-01 -1.08629286e-01 -1.07610747e-02\\n2.68381596e-01 3.95362318e-01 1.89266205e-01 -1.19327910e-01\\n1.95062300e-03 4.76269543e-01 -4.65829223e-01 -4.87097830e-01\\n1.95854455e-01 1.24861851e-01 -2.54717290e-01 -1.00619189e-01\\n1.03853524e-01 3.33487928e-01 -1.78627059e-01 9.11173448e-02\\n-2.01208889e-01 -1.53157115e-01 3.03597122e-01 -1.78645581e-01\\n-1.34444550e-01 -9.94038209e-02 -1.43050939e-01 3.35055262e-01\\n-4.28715169e-01 -3.30259442e-01 4.19801176e-01 2.21524328e-01\\n1.62961781e-01 4.35169041e-02 2.25334257e-01 -8.87836292e-02\\n-4.70867842e-01 -3.94105643e-01 1.14511169e-01 2.23363474e-01\\n-6.05367646e-02 1.27507985e-01 -1.49736658e-01 -4.45516825e-01\\n-3.05533051e+00 -1.38409644e-01 2.13237360e-01 -2.34929293e-01\\n1.91944644e-01 -1.44353509e-01 1.60334840e-01 9.75864287e-03\\n-3.91272217e-01 3.45889740e-02 -1.97562575e-01 -2.46304244e-01\\n-1.01654783e-01 4.74873215e-01 2.27129027e-01 -3.14893723e-02\\n-5.10089472e-02 -3.20224911e-01 -5.74638173e-02 4.21410114e-01\\n5.12989461e-02 -7.35222936e-01 -5.72037976e-03 1.13206819e-01\\n-4.44425410e-03 2.48304814e-01 -3.35387409e-01 -7.42366090e-02\\n-2.61703610e-01 -2.53125429e-01 1.66711882e-01 -3.36085111e-01\\n-3.28946888e-01 2.89633304e-01 9.20007005e-02 1.64609566e-01\\n-4.61470075e-02 -1.40568569e-01 -2.21125968e-02 -4.44778174e-01\\n-7.27210194e-02 -6.15527391e-01 5.91016710e-02 -7.36158267e-02\\n6.65827930e-01 -1.07900776e-01 3.32167923e-01 1.32316560e-01\\n1.43739387e-01 5.65683618e-02 8.32529739e-02 4.18113321e-02\\n-2.96979755e-01 -2.54226625e-01 -2.12194487e-01 -1.24556892e-01\\n7.47275054e-01 3.74952137e-01 -1.20264664e-01 -1.68249011e-01\\n2.97062129e-01 -4.07017022e-01 -3.78751248e-01 -3.59144479e-01\\n-2.91794926e-01 -9.07441676e-02 -7.36272514e-01 -5.34812927e-01\\n-2.48999540e-02 -1.26236320e-01 -8.84499773e-02 4.86014307e-01\\n-3.17597836e-01 -2.55623013e-01 -4.09253426e-02 -5.99551499e-01\\n1.05472721e-01 -3.30869615e-01 7.85809755e-02 -1.35623187e-01\\n-3.46546233e-01 -5.52685082e-01 8.35596249e-02 -4.34530079e-02\\n-1.32524058e-01 -1.31616563e-01 -7.98086524e-02 -1.46627337e-01\\n-4.66916353e-01 -6.31423354e-01 3.24593633e-01 -2.19103554e-03\\n3.26784670e-01 1.33535475e-01 3.62624228e-01 1.21088311e-01\\n4.77630377e-01 3.79908830e-02 2.29386881e-01 -3.80961180e-01\\n1.17002010e-01 -3.78509872e-02 6.88001275e-01 -3.42809826e-01\\n5.57689033e-02 6.89790100e-02 -3.78554314e-01 -2.63729207e-02\\n5.06029129e-01 -1.30356029e-01 1.62098408e-02 -1.51157066e-01\\n3.69674355e-01 -4.33142930e-01 -1.45231888e-01 1.44433111e-01\\n7.84119442e-02 8.01163912e-01 8.30799267e-02 -4.21418190e-01\\n-1.59835547e-01 3.78880650e-01 -1.38274133e-01 -1.97049826e-02\\n-4.39930484e-02 6.59006760e-02 -1.18484110e-01 2.80179143e-01\\n-5.76473661e-02 -2.18090177e-01 -2.27682427e-01 -8.45910460e-02\\n-7.49523491e-02 2.75369972e-01 2.63354719e-01 3.31060588e-02\\n-6.78357705e-02 -1.74363062e-01 -8.00834447e-02 1.50713563e-01\\n4.36759442e-01 3.11395049e-01 1.07934177e-01 -4.10279185e-01\\n-1.70939397e-02 2.84063250e-01 -2.47128576e-01 2.52267182e-01\\n-2.62465149e-01 1.51741162e-01 -5.68561137e-01 -1.54357836e-01\\n-9.89752412e-02 -3.96553814e-01 2.52336264e-01 3.65750074e-01\\n1.16656847e-01 -5.62201217e-02 1.40467271e-01 -5.63526452e-01\\n3.84663343e-01 1.90139815e-01 2.27051556e-01 3.62435877e-02\\n-1.68220103e-01 4.01176959e-01 -1.64319396e-01 -3.06378864e-02\\n-6.41250089e-02 6.33643344e-02 -3.25003207e-01 -3.54246676e-01\\n1.96240306e-01 -4.30380017e-01 -1.07096307e-01 5.49983144e-01\\n2.03108534e-01 -1.86462119e-01 -3.56125325e-01 2.23891899e-01\\n8.19689631e-02 -4.33018327e-01 -3.02912861e-01 -2.44257953e-02\\n2.52193272e-01 1.33753181e-01 1.71461210e-01 -4.28854853e-01\\n-1.08332053e-01 -4.49925847e-02 -1.32513896e-01 3.07879448e-01\\n-2.94038514e-03 6.12552352e-02 -2.78922856e-01 -1.88650079e-02\\n4.57771301e-01 -8.95797387e-02 -4.66253571e-02 -2.82406434e-02\\n8.97702128e-02 -3.00138980e-01 -3.29248935e-01 -1.53157592e-01\\n-1.29391477e-01 -2.68031210e-01 6.37774318e-02 1.11470066e-01\\n5.04972599e-03 -3.27505209e-02 -5.60543001e-01 -1.74920797e-01\\n-2.41056994e-01 -1.24145746e-01 9.75929201e-02 -3.24830115e-01\\n-2.55760271e-02 -1.50501281e-01 -4.56583440e-01 2.16030255e-01\\n-1.45748928e-01 -1.20815016e-01 2.05998600e-01 1.40034705e-01\\n-2.36771420e-01 -2.20943242e-01 4.41952199e-02 1.29982337e-01\\n-2.59085864e-01 -3.27841848e-01 -3.23614776e-02 -1.08260620e+00\\n9.13107581e-03 2.77321059e-02 -1.24464788e-01 1.24775872e-01\\n-3.15969321e-03 -5.71114302e-01 9.34630912e-03 -4.89095926e-01\\n-5.16364276e-02 8.43395889e-02 -2.57762492e-01 -2.05970734e-01\\n2.54809260e-01 1.19345682e-02 -1.90052554e-01 4.28229332e-01\\n-3.23110253e-01 3.22651535e-01 1.69477202e-02 3.99444774e-02\\n-8.49352106e-02 -9.15133953e-02 4.17148396e-02 -1.56883776e-01\\n-3.96474242e-01 -2.88039535e-01 -2.55944729e-01 -2.50747651e-01\\n-6.47488013e-02 -2.73693413e-01 -1.48484394e-01 5.09815440e-02\\n3.75856310e-01 1.78660959e-01 -4.05751429e-02 -4.11744528e-02\\n1.52921498e-01 -3.85432184e-01 5.24527729e-02 -3.76853019e-01\\n-6.18514791e-02 -9.20767486e-02 2.38051116e-01 4.77138013e-02\\n1.32714242e-01 -1.31111786e-01 5.07502496e-01 -3.11679304e-01\\n-3.97695452e-01 -5.93728386e-03 1.45246208e-01 -1.75360873e-01\\n2.39011943e-01 -3.81171763e-01 1.00920163e-01 3.12511891e-01\\n-5.32836989e-02 -2.55534193e-03 2.51616150e-01 -1.67949617e-01\\n-1.73039481e-01 1.47126168e-01 -5.49127221e-01 1.09646775e-01\\n8.29823911e-01 3.63678634e-01 2.05521330e-01 -3.15131024e-02\\n1.24087632e-01 2.40105942e-01 4.56366897e-01 2.10224576e-02\\n4.20221984e-02 3.55079472e-01 1.44637078e-01 -5.49678683e-01\\n-1.77808508e-01 -1.46694183e-01 -1.06778122e-01 -3.05673063e-01\\n5.80331326e-01 4.10476595e-01 -3.09903294e-01 -3.83349091e-01\\n-1.58590972e-01 -1.57016098e-01 4.65296745e-01 1.44532174e-01\\n-6.04020245e-02 -5.74699305e-02 5.58839619e-01 -1.06076919e-01\\n1.29581690e-01 4.40884501e-01 -2.09942475e-01 -3.00135374e-01\\n-1.31324410e-01 2.63447821e-01 1.06570549e-01 4.96744245e-01\\n-1.88577473e-01 2.12407470e-01 -1.25046611e-01 -1.40971728e-02\\n-1.11003034e-02 1.34810675e-02 3.59494269e-01 -6.52129669e-03\\n2.55853683e-01 8.00772086e-02 3.41687351e-01 5.48299015e-01\\n1.33964658e-01 4.86519963e-01 2.53216684e-01 -4.89857607e-02\\n2.12153047e-01 6.12145722e-01 2.42480785e-01 1.14228070e-01\\n4.25172113e-02 7.16748014e-02 1.73346266e-01 -7.89106935e-02\\n5.16411722e-01 2.28508353e-01 1.48324519e-01 9.01277006e-01\\n2.98245817e-01 4.73935395e-01 7.33346760e-01 -6.93733871e-01\\n-2.71179616e-01 1.12468973e-01 5.91485083e-01 -3.18216056e-01\\n-1.07747689e-01 1.27809122e-01 -2.81526208e-01 1.16854824e-01\\n-5.81521630e-01 -1.85659274e-01 7.10590929e-02 -1.15082378e-03\\n-4.12404835e-02 -5.12208305e-02 -1.80502504e-01 1.44900635e-01\\n-2.21793532e-01 -2.67930388e-01 -2.69331306e-01 -2.38338247e-01\\n-2.84200698e-01 -7.07034245e-02 -7.44157284e-02 4.65691611e-02\\n-2.22702324e-01 -2.88235992e-01 2.86888164e-02 -5.27813099e-02\\n2.73094416e-01 -1.46487460e-01 -1.33303642e-01 -2.96027660e-02\\n2.74461895e-01 2.42211998e-01 5.92976689e-01 -1.63244456e-01\\n1.95598692e-01 -9.32432488e-02 -2.94047624e-01 6.09675758e-02\\n-1.46289011e-02 3.18749738e-03 1.63780943e-01 5.71180463e-01\\n-1.97651550e-01 -1.15714185e-01 3.30145173e-02 2.24794835e-01\\n-4.33596015e-01 -1.29608408e-01 -1.64169043e-01 1.35247618e-01\\n-7.06122518e-02 1.41145542e-01 -1.86564386e-01 1.23923823e-01\\n-1.47562116e-01 -6.18580937e-01 2.90569574e-01 -1.85182884e-01\\n-2.35523343e-01 2.16148734e-01 3.80151331e-01 2.14591846e-01\\n-1.53715521e-01 -9.31960195e-02 -6.97437450e-02 3.13765854e-01\\n-9.06951074e-03 4.08695042e-01 2.25734487e-02 -3.44608247e-01\\n-3.71220827e-01 2.99377680e-01 -1.99492201e-01 1.23632684e-01\\n-1.25177056e-01 2.78650731e-01 -1.37687877e-01 1.80399463e-01\\n3.09673280e-01 9.43414643e-02 -3.25282633e-01 -2.24250883e-01\\n-1.71490163e-01 -1.06045946e-01 6.25646263e-02 5.91043532e-02\\n8.26536044e-02 -3.04452181e-01 -1.15763575e-01 -3.41127813e-01\\n9.68450028e-03 -3.30032051e-01 -1.50619954e-01 9.94025096e-02]]',\n", + " 'Job Informationen Essential Duties and Responsibilities: - Identifies data sources, integrates multiple sources or types of data, and applies expertise within a data source to develop methods to compensate for limitations and extend the applicability of the data - Applying (and creating when necessary) the appropriate methods, algorithms, and tools, and statistically validating the results against biases and errors - Uses broad knowledge of innovative methods, algorithms, and tools from the scientific literature and applies his or her own analysis of scalability and applicability to the formulated problem - Ability to interpret data and communicate in a clear and lucid way to a wide variety of audience - Validates, monitors, and drives continuous improvement to methods, and proposes enhancements to data sources that improve usability and results Required Skills: - B.S. and/or M.S. (Ph.D. Preferred) in Computer Science, Statistics, Operations Research or similar quantitative field - 3 years plus experience of applying statistical modeling, ML and data mining algorithms to real world problems - Expert in one or more statistical software like R, SAS, Statistica etc. - Expert in one or more scripting languages like Perl, Python, or SQL - Solid foundation of statistical modeling and machine learning algorithms and experimental design - Good knowledge and experience in using ensemble methods - Experience in pattern and/or image recognition a plus - Deep understanding of big data systems including map reduce technologies like Hadoop and Spark - Knowledge of Google cloud and tools - Knowledge of data visualization tools like Tableau, etc. Fluent in English and German Benötigte Skills Englisch CLOUD Google Analytics Perl Python SQL Machine Learning SAS',\n", + " '[\"Communications\", \"Innovation\", \"Sourcing\", \"Integration\"]',\n", + " '[\"Tableau (Business Intelligence Software)\", \"Tooling\", \"SAS Learning Edition\", \"Google Cloud Messaging\", \"Google Analytics\", \"pH Meters\", \"Computer Science\", \"Biasing\", \"Statistics\", \"Perl (Programming Language)\", \"SAS (Software)\", \"Usability\", \"Scientific Literature\", \"Statistical Software\", \"Python (Programming Language)\", \"M (Programming Language)\", \"Operations Research\", \"Limiter\", \"Statistical Modeling\", \"Data Visualization\", \"Machine Learning Methods\", \"Ensemble Methods\", \"R (Programming Language)\", \"Machine Learning Algorithms\", \"Scalability\", \"Continuous Improvement Process\", \"Google Cloud\", \"Big Data\", \"Applied Statistics\", \"Java Data Mining\", \"Adapter Scripting Language\", \"Imaging\", \"Validations\", \"Algorithms\", \"Mapping\", \"STATISTICA\", \"Experimental Design\", \"SQL (Programming Language)\", \"B (Programming Language)\", \"Source Data\"]',\n", + " \"['English', 'Hausa', 'Kalaallisut', 'Panjabi', 'Bislama']\"],\n", + " ['75',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.63895744e-01 3.05287838e-01 4.17255253e-01 -3.76568027e-02\\n5.28621137e-01 -7.65151009e-02 -3.94121483e-02 2.19641954e-01\\n-2.95179654e-02 -2.23883778e-01 -1.51649013e-01 -1.48797706e-01\\n-8.57051313e-02 -6.46759244e-03 1.12375326e-01 3.74679089e-01\\n3.46432894e-01 5.21362051e-02 -1.31393820e-01 3.36848080e-01\\n1.16127342e-01 -8.61443952e-03 -2.28062682e-02 6.55917227e-01\\n3.78813326e-01 -4.45187241e-02 -1.12813048e-01 4.31255959e-02\\n-2.92736202e-01 -2.29881883e-01 3.32956433e-01 2.05876455e-02\\n-1.17689386e-01 -3.10847253e-01 9.01493877e-02 1.32867202e-01\\n-2.04548344e-01 -6.58926591e-02 -7.64697194e-02 5.48099019e-02\\n-3.25427055e-01 -2.13639870e-01 -4.98721041e-02 6.59257472e-02\\n-2.92773217e-01 -2.38441482e-01 6.97647557e-02 -2.29309313e-02\\n-4.44065854e-02 4.49392311e-02 -6.94523096e-01 3.94211501e-01\\n-2.11201966e-01 -1.72699600e-01 3.07041913e-01 5.79800665e-01\\n3.80182080e-02 -4.99353051e-01 -3.79826933e-01 -3.42782229e-01\\n6.12392463e-02 -2.84051243e-02 7.00938106e-02 -2.23967344e-01\\n3.45741212e-01 -8.35837945e-02 -6.28677458e-02 3.76448661e-01\\n-7.67838299e-01 -1.42360136e-01 -2.94134647e-01 5.10785021e-02\\n-5.15491605e-01 -4.72733192e-03 -3.41535121e-01 -1.10516600e-01\\n-1.47394072e-02 4.33841139e-01 -6.99907765e-02 6.40637875e-02\\n-1.91618785e-01 1.73135161e-01 -1.34739578e-01 2.13118866e-01\\n3.28246981e-01 1.43635184e-01 2.47165665e-01 2.99496025e-01\\n-3.23613465e-01 3.74847889e-01 2.30412439e-01 -2.43019536e-01\\n1.61144406e-01 2.86704022e-02 4.04961139e-01 1.72741249e-01\\n5.85130937e-02 2.04558581e-01 -6.81432560e-02 1.46372616e-01\\n1.71874493e-01 -2.77756691e-01 3.65511514e-02 -7.64985457e-02\\n-7.61290044e-02 6.90753013e-03 1.29842144e-02 2.21398845e-01\\n-3.78570020e-01 3.08791131e-01 1.05466813e-01 -2.63043523e-01\\n-4.14887927e-02 -5.37692606e-01 -9.07029435e-02 -1.23393901e-01\\n3.54427136e-02 2.41944373e-01 2.27564380e-01 2.22049668e-01\\n3.16384107e-01 -3.68466564e-02 1.74881011e-01 8.72597635e-01\\n-7.93836787e-02 -3.44255157e-02 -2.03934908e-01 3.73567700e-01\\n2.07029521e-01 -2.44214207e-01 1.86884895e-01 2.63759255e-01\\n5.77620454e-02 -3.95833924e-02 -2.93054491e-01 2.45021075e-01\\n-1.63934618e-01 -1.80457577e-01 -2.48366073e-01 1.77047864e-01\\n-1.92283034e-01 -4.98789072e-01 5.86059570e-01 7.36988708e-02\\n1.90691978e-01 -1.58323839e-01 8.22820142e-03 -1.20286971e-01\\n-2.95315143e-02 3.31389844e-01 3.46170962e-02 2.40710542e-01\\n-2.48225883e-01 -2.64948934e-01 -1.24504738e-01 3.62367243e-01\\n-1.34901151e-01 8.11424330e-02 -1.73935503e-01 -1.34432763e-01\\n2.81587362e-01 1.28346056e-01 -4.09630984e-01 1.96921125e-01\\n6.16104400e-04 -3.14211786e-01 -7.80354589e-02 3.03575128e-01\\n-1.03982456e-01 2.04521537e-01 -3.40906456e-02 -2.07247987e-01\\n4.78192300e-01 2.12049484e-01 2.13175580e-01 5.33061549e-02\\n1.77898586e-01 -1.81223139e-01 3.04820031e-01 8.95333216e-02\\n-7.15633154e-01 4.30286974e-01 1.37520032e-02 -3.16588908e-01\\n1.28661111e-01 3.92076299e-02 3.23912770e-01 -4.09381837e-01\\n2.42886897e-02 -1.78808570e-01 -4.27401483e-01 -3.63072664e-01\\n-1.78385392e-01 -4.92088795e-02 3.90573561e-01 -3.67095411e-01\\n-4.34985012e-02 2.13553622e-01 -5.68534076e-01 -2.43125588e-01\\n9.54628065e-02 1.21142007e-01 9.30622816e-02 8.86082277e-02\\n-8.35864469e-02 -5.66973627e-01 8.73835236e-02 -4.62185532e-01\\n-4.08946723e-01 8.35794508e-02 -2.68532187e-01 1.41610295e-01\\n-1.18781114e-02 1.31553197e-02 -1.04655676e-01 1.54358745e-01\\n-3.98262084e-01 -9.62809194e-03 1.98483139e-01 8.36385041e-02\\n2.71697819e-01 1.44144706e-02 -3.17770332e-01 5.37018120e-01\\n-1.99240163e-01 4.90726560e-01 2.31304854e-01 -8.60578835e-01\\n5.21407068e-01 3.43164414e-01 2.22460739e-02 -2.33426064e-01\\n5.13758183e-01 -4.97482747e-01 -6.06347360e-02 7.87461847e-02\\n-2.08925754e-01 -2.40486860e-01 2.25190818e-01 -2.07355395e-01\\n-2.13167191e-01 6.52321041e-01 9.79803875e-02 7.58459866e-02\\n2.71201223e-01 -2.84002364e-01 -1.53032288e-01 2.37227022e-03\\n-1.02579683e-01 -3.13373119e-01 -4.47354853e-01 1.47278711e-01\\n-8.71924534e-02 -4.49230105e-01 -7.66515210e-02 -3.57810706e-01\\n-2.21492305e-01 -3.44946384e-01 -2.27335617e-01 3.60882729e-01\\n1.85643122e-01 1.77990466e-01 -6.16993643e-02 -5.14491051e-02\\n-1.02851771e-01 -5.54654419e-01 -8.66867602e-02 3.32162948e-03\\n4.31876391e-01 3.62463474e-01 9.45574194e-02 -8.42925608e-02\\n8.26074183e-03 4.65907842e-01 -3.91740888e-01 -3.86247605e-01\\n1.07361972e-01 1.00068875e-01 -4.90035005e-02 -9.85731781e-02\\n3.26036960e-02 3.74385118e-01 -2.08796039e-01 1.12648373e-02\\n-4.57389727e-02 -3.89988311e-02 3.71879041e-01 -7.86995143e-02\\n-7.84889907e-02 -1.51575401e-01 -8.80367085e-02 3.00601274e-01\\n-4.99792159e-01 -2.49258369e-01 5.60377479e-01 2.93808132e-01\\n1.43041015e-01 2.06354499e-01 3.31196755e-01 -3.49770598e-02\\n-2.06297949e-01 -2.90130764e-01 2.12465703e-01 1.66993886e-01\\n7.31567144e-02 6.01084828e-02 -1.06181867e-01 -5.50977409e-01\\n-3.15280676e+00 -2.17105091e-01 1.45241916e-01 -3.43216449e-01\\n2.67708004e-01 -1.54985771e-01 1.30030751e-01 6.69704098e-03\\n-3.34034979e-01 4.52787690e-02 -2.20231265e-01 -1.74990818e-01\\n1.28831165e-02 2.72709757e-01 1.94780767e-01 1.52164742e-01\\n8.37561414e-02 -2.68050253e-01 3.87446918e-02 3.70353371e-01\\n-1.19925745e-01 -7.14178562e-01 1.80286601e-01 9.42177139e-03\\n7.70942420e-02 2.23137647e-01 -4.02056843e-01 -1.43472865e-01\\n-2.57242143e-01 -2.31587946e-01 1.06009997e-01 -2.90270150e-01\\n-1.58509761e-01 3.49024445e-01 1.61613375e-01 -7.89339170e-02\\n2.04098672e-02 -3.20250034e-01 -3.94122005e-02 -5.13191283e-01\\n4.91619073e-02 -6.12865329e-01 2.81341821e-02 1.23053333e-02\\n6.60218775e-01 -2.08736971e-01 1.86504304e-01 1.62982315e-01\\n2.01037467e-01 1.79964364e-01 8.16345587e-02 3.88069041e-02\\n-3.61902803e-01 -3.67877930e-01 -4.46006544e-02 -1.96659148e-01\\n4.78486240e-01 4.24187601e-01 -1.86090052e-01 9.37778577e-02\\n4.69847657e-02 -2.82542944e-01 -3.41365665e-01 -4.71666187e-01\\n-2.57800221e-01 -9.94523838e-02 -6.63240254e-01 -4.74724710e-01\\n-3.34360376e-02 -8.48285183e-02 -6.95694089e-02 6.08738005e-01\\n-2.38730520e-01 -2.89296806e-01 3.93362306e-02 -6.06229424e-01\\n2.48990953e-01 -2.68990010e-01 8.68642852e-02 -1.86798245e-01\\n-2.09795952e-01 -5.24125874e-01 1.87672168e-01 -1.01832181e-01\\n-8.64565447e-02 -6.10309914e-02 -7.68753439e-02 -2.43118674e-01\\n-3.94441873e-01 -5.15174568e-01 4.78138685e-01 2.48377845e-02\\n4.03370976e-01 7.15769082e-02 3.49179000e-01 1.69358730e-01\\n3.80450875e-01 -1.19852625e-01 4.74263206e-02 -3.51269901e-01\\n6.56347424e-02 8.93278494e-02 5.52273154e-01 -2.60145485e-01\\n9.12769884e-02 9.63393226e-02 -2.64770716e-01 1.72053911e-02\\n3.87868732e-01 -9.01071820e-03 1.18194424e-01 -1.22112446e-01\\n3.10929030e-01 -5.40421784e-01 -2.32235715e-01 2.19883710e-01\\n-3.16703762e-03 6.62214875e-01 1.26162380e-01 -3.72878611e-01\\n-1.55667946e-01 3.66002083e-01 -2.37014517e-02 -1.95553929e-01\\n-1.00393102e-01 1.47064060e-01 -2.01775491e-01 1.86912656e-01\\n8.10760446e-03 -1.57243863e-01 -3.81503582e-01 -1.32620871e-01\\n-5.38106374e-02 2.58042812e-01 2.85235167e-01 7.45571554e-02\\n-6.33479655e-02 -2.10422188e-01 -6.14981055e-02 1.82702795e-01\\n3.25473219e-01 2.87844449e-01 1.48778602e-01 -3.18571717e-01\\n-8.81954376e-03 2.23850548e-01 -2.77969778e-01 3.02691549e-01\\n-1.20585993e-01 8.25181231e-02 -5.20129144e-01 -1.51294768e-01\\n-1.95990533e-01 -3.02435964e-01 1.57995820e-01 2.82610416e-01\\n1.32528737e-01 -2.70623099e-02 4.25996259e-02 -4.81244117e-01\\n3.66474658e-01 4.54892451e-03 8.74662772e-02 7.62791708e-02\\n-1.59706883e-02 5.45949697e-01 -4.72820550e-02 -4.68002595e-02\\n-1.23226650e-01 5.15441597e-02 -2.26655662e-01 -3.88403416e-01\\n1.64561361e-01 -4.01982278e-01 -1.35499001e-01 3.82584751e-01\\n1.69454738e-01 -1.51394516e-01 -1.97674498e-01 2.79219210e-01\\n1.02385329e-02 -2.75527865e-01 -2.17845753e-01 4.61275689e-03\\n2.75441915e-01 1.64858520e-01 1.96608081e-01 -4.41324174e-01\\n-9.04914960e-02 -2.05356684e-02 -1.79956127e-02 3.82876396e-01\\n1.85763419e-01 8.98169875e-02 -3.96185070e-02 -2.08418339e-01\\n5.07777631e-01 3.87730310e-03 -9.00021419e-02 5.49369343e-02\\n1.35245204e-01 -2.84267187e-01 -3.96683514e-01 -1.30731270e-01\\n-4.15769406e-02 -2.53024131e-01 3.79143991e-02 8.29394162e-02\\n8.60111713e-02 -2.99817584e-02 -5.62206268e-01 -1.81235284e-01\\n-2.79934794e-01 4.84399013e-02 1.88704412e-02 -5.26448071e-01\\n5.70087396e-02 -7.21805990e-02 -5.93094409e-01 2.50572085e-01\\n-1.60552874e-01 3.88097689e-02 1.72773395e-02 8.77578333e-02\\n-2.80294478e-01 -8.38516355e-02 1.23002864e-01 1.24726802e-01\\n-2.64754653e-01 -1.88302979e-01 2.68531349e-02 -1.05079353e+00\\n1.14569291e-01 7.96799213e-02 -7.40502551e-02 9.06327143e-02\\n7.71728531e-02 -6.09483957e-01 9.97033566e-02 -4.07570213e-01\\n9.42799151e-02 1.04335845e-01 -2.28163049e-01 -3.07803124e-01\\n1.88984752e-01 -6.58035930e-03 -2.47501269e-01 3.78270686e-01\\n-4.39065218e-01 3.23343188e-01 5.11868857e-02 1.36629149e-01\\n7.64637962e-02 -2.43811727e-01 1.11777239e-01 -2.46417195e-01\\n-4.40238535e-01 -2.16521025e-01 -2.93592989e-01 -2.55810440e-01\\n6.14849143e-02 -2.84920871e-01 -7.29003400e-02 4.45559155e-03\\n3.93786371e-01 1.23794019e-01 -1.82809621e-01 -1.93216920e-01\\n1.20383285e-01 -4.08869743e-01 7.23522678e-02 -2.76056677e-01\\n-1.82382911e-02 -9.72226039e-02 1.69590786e-01 -1.48465466e-02\\n2.05771565e-01 -2.79238164e-01 3.87805730e-01 -3.44626725e-01\\n-3.58865231e-01 -1.08502872e-01 6.18053079e-02 -2.63589714e-02\\n2.88811564e-01 -4.86190289e-01 5.43416552e-02 2.88795173e-01\\n1.25032544e-01 1.14335269e-01 3.04251671e-01 -1.50564626e-01\\n-1.38876140e-01 2.15690255e-01 -5.84826350e-01 8.77067372e-02\\n8.05995286e-01 2.05583364e-01 4.27641235e-02 1.55382454e-01\\n1.99689463e-01 2.07493111e-01 4.03847069e-01 -9.91983637e-02\\n-6.53214753e-03 2.96378285e-01 1.14673808e-01 -6.04148269e-01\\n-1.89301372e-01 -1.91636860e-01 -2.12933108e-01 -2.97016889e-01\\n5.72949111e-01 2.82916009e-01 -3.46922129e-01 -3.68151218e-01\\n-1.04234405e-01 -1.08931549e-01 2.91695416e-01 -3.54174227e-02\\n-2.19749212e-02 -1.35175511e-01 5.01668572e-01 -5.00252508e-02\\n2.29391143e-01 5.36705434e-01 1.11739384e-02 -2.83394635e-01\\n-1.24921121e-01 1.23811081e-01 1.20361738e-01 4.75744247e-01\\n-1.42359674e-01 2.27318332e-01 -3.57865021e-02 1.83223739e-01\\n-1.25249460e-01 1.84688773e-02 2.06565827e-01 5.77595010e-02\\n1.73738971e-01 2.74043605e-02 3.49183321e-01 4.80053306e-01\\n2.03826666e-01 4.58892345e-01 3.17585677e-01 3.10171284e-02\\n3.54271144e-01 6.10677183e-01 3.63353640e-01 1.26161933e-01\\n1.11672506e-02 1.26187563e-01 2.19631679e-02 -1.56424358e-01\\n3.04473013e-01 3.58155161e-01 1.09054707e-01 8.40945244e-01\\n3.44411939e-01 4.08260345e-01 7.58903742e-01 -6.54143989e-01\\n-3.65426391e-01 6.55385330e-02 5.59831083e-01 -3.92442971e-01\\n-3.61497737e-02 6.17549419e-02 -2.42685810e-01 3.74237269e-01\\n-5.45959651e-01 -9.56491306e-02 1.86301284e-02 -1.25929415e-01\\n4.40866649e-02 2.24842243e-02 -1.27773032e-01 6.39845207e-02\\n-2.52536893e-01 -2.80733317e-01 -3.51040840e-01 -1.90720007e-01\\n-3.05693060e-01 -7.37408251e-02 -4.61046100e-02 -1.13667138e-01\\n-1.62264794e-01 -2.59654522e-01 -3.60225439e-02 -3.50322537e-02\\n3.55278462e-01 -1.55716419e-01 -1.34486809e-01 -1.30861849e-01\\n2.32293069e-01 2.49595761e-01 6.29372776e-01 -9.78497341e-02\\n1.67412251e-01 -1.14967301e-01 -2.62375385e-01 3.94959114e-02\\n6.51534125e-02 9.26111788e-02 8.80367979e-02 4.91617799e-01\\n-3.58278543e-01 -1.79087222e-01 2.01314375e-01 2.06708550e-01\\n-3.68043691e-01 -4.47719395e-02 -2.31344923e-02 9.80158821e-02\\n6.27909601e-02 1.88289165e-01 -2.35388532e-01 3.75367962e-02\\n-1.87578842e-01 -5.59995651e-01 4.87147331e-01 -2.19631001e-01\\n-1.67803437e-01 1.48798242e-01 3.74096841e-01 2.60262907e-01\\n-2.44368047e-01 -3.98179553e-02 -9.58795771e-02 2.92218238e-01\\n6.83486983e-02 3.16484958e-01 -2.13872001e-01 -1.94104120e-01\\n-2.46031314e-01 2.63403237e-01 -1.31202891e-01 1.53585240e-01\\n-8.08748603e-02 3.18634480e-01 8.68555009e-02 1.12147957e-01\\n2.56462187e-01 5.19505069e-02 -3.17834318e-01 -3.21364641e-01\\n-2.23731980e-01 -1.84150010e-01 8.01416188e-02 -5.90254404e-02\\n1.77383751e-01 -2.34694585e-01 -1.66571334e-01 -2.87593514e-01\\n-1.76571652e-01 -3.63194585e-01 -1.20753400e-01 1.12032993e-02]]',\n", + " 'Job Informationen Your tasks: You will be expected to lead projects in development and deployment of production-ready applications using machine learning algorithms, such as banking product recommender systems, payment fraud detection, and quantitative decision-support tools and services. Typical projects include the full data science lifecycle, including data extraction from transactional sources and transformation for analytical purpose. You will provide hands-on leadership to projects working with large datasets and extensive timeseries such as financial market data, transactions data and client interaction profiles, employing various statistical and numerical methods to analyse both structured and unstructured data to develop predictive models. As our technology is generally delivered as packaged software or as a service in the cloud, it is important that you are experienced in and can lead others hands-on to perform the software development life-cycle professionally and efficiently. Taking a leading role in consulting to clients is also a part of the job description. You are therefore expected to possess strong communication skills in addition to excellent technical capabilities. Requirements: - University degree in computer science, engineering or comparable numerical fields - Passion for applying technology to solve business problems - Experienced in the financial services industry in either a quantitative or technology role - Experience in project leadership & coordination, client communication (including senior management levels), and successful project delivery - Experience in developing production-ready machine learning applications and setting up data science pipelines - Solid experience with Linux and software collaboration tools: continuous integration (i.e. Jenkins or CircleCI), source control (git, svn), issue management (Jira, Confluence) - Knowledge of multiple programming languages is beneficial (Python, R, Java, Scala) - Substantial experience in applying modern big data tools for scalability and distributed computing (Apache Spark, PySpark, Dask) and data stores (SQL or NoSQL), such as MongoDB and Neo4j - Strong communication skills in English and the ability to make coherent technical arguments; working proficiency in German is a must - Eligible to live and work in Switzerland Benötigte Skills Banken / Finanzgesellschaften Projektleitung Jira Linux Python Python R JAVA Scala Apache SQL NoSQL Englisch',\n", + " '[\"Verbal Communication Skills\", \"Leadership\", \"Professionalism\", \"Coordinating\", \"Management\", \"Communications\", \"Sourcing\", \"Consulting\"]',\n", + " '[\"Apache Spark\", \"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"KM Programming Language\", \"Circleci\", \"Software Development Life Cycle\", \"Interactivity\", \"Collaborative Software\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Collaboration Tools\", \"Decision Support Systems\", \"Continuous Integration\", \"Recommender Systems\", \"Financial Services\", \"Applied Business Technologies\", \"Distributed Computing\", \"Scala (Programming Language)\", \"Pyspark\", \"Service Level Management\", \"Python (Programming Language)\", \"Linux\", \"Data Extraction\", \"MongoDB\", \"Transaction Data\", \"E (Programming Language)\", \"Source (Game Engine)\", \"Dataset\", \"Pipelining\", \"Financial Market\", \"Machine Learning Methods\", \"Unstructured Data\", \"Data Science\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Data Store\", \"Transformation (Genetics)\", \"Atlassian Confluence\", \"Banking\", \"Software Development\", \"Algorithms\", \"Additives\", \"Service Industries\", \"Git Flow\", \"Neo4j\", \"Amazon Data Pipeline\", \"Market Data\", \"JIRA Studio\", \"Java (Programming Language)\", \"Job Descriptions\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Nyanja']\"],\n", + " ['145',\n", + " 'software engineer c++',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.vizrt.com',\n", + " '[[-1.77046180e-01 2.56629318e-01 5.47789216e-01 -8.72845799e-02\\n4.58264351e-01 -2.27148786e-01 -1.52273700e-02 5.48293829e-01\\n-3.73170003e-02 -4.45374846e-01 -1.15332536e-01 -3.01676482e-01\\n-1.57965366e-02 2.03475595e-01 1.91747665e-01 4.31744605e-01\\n2.58077502e-01 1.52363688e-01 -2.36010253e-01 2.54429728e-01\\n1.31916910e-01 -1.83828831e-01 1.88189387e-01 8.45517635e-01\\n4.67096806e-01 6.94048032e-03 -1.09823048e-01 5.81530668e-02\\n-2.49117091e-01 -2.42752522e-01 3.74561489e-01 -6.22206405e-02\\n-1.29853949e-01 -3.94354820e-01 2.59468667e-02 1.18106231e-01\\n-1.60450161e-01 -1.31783709e-02 -1.13779105e-01 1.82403326e-01\\n-5.24675965e-01 -2.28636056e-01 -8.50881189e-02 -1.14142271e-02\\n-1.70233503e-01 -3.60536098e-01 5.94463870e-02 -9.05609131e-03\\n2.26681739e-01 2.64729299e-02 -4.40008730e-01 3.69302839e-01\\n-2.09974661e-01 -2.15674937e-01 2.49322340e-01 6.96374059e-01\\n-1.02219142e-01 -3.99488777e-01 -5.91673493e-01 -3.31744850e-01\\n1.15496323e-01 -6.04107827e-02 -3.78138535e-02 -3.44483733e-01\\n2.84924984e-01 6.57527223e-02 -2.24144179e-02 2.32287645e-01\\n-7.85692036e-01 -1.38006657e-01 -2.30577648e-01 -6.17521256e-02\\n-2.98465699e-01 -1.26506671e-01 -3.18970948e-01 -1.23289905e-01\\n-8.10942128e-02 3.84754539e-01 2.91590672e-02 2.34240899e-04\\n-4.16664630e-02 3.21706593e-01 -2.17254192e-01 4.56492394e-01\\n5.81679344e-02 3.48595887e-01 2.09566861e-01 2.89278805e-01\\n-2.85338819e-01 4.02124882e-01 1.07924327e-01 -4.42762673e-01\\n2.12377995e-01 1.57186806e-01 4.76472825e-01 -1.28068358e-01\\n1.95794418e-01 1.26100004e-01 -3.35816324e-01 3.35960716e-01\\n3.23185265e-01 -2.58979440e-01 1.13196701e-01 -1.28594533e-01\\n3.80196795e-02 7.60952337e-03 7.24857002e-02 2.14933380e-01\\n-3.44083726e-01 5.26543379e-01 5.92262186e-02 -2.51241088e-01\\n-6.71639889e-02 -5.83147705e-01 -1.72453374e-01 3.71607840e-02\\n-1.59314144e-02 2.06628084e-01 1.10697925e-01 2.25967705e-01\\n2.21368283e-01 -1.28978789e-01 1.80654988e-01 9.16546583e-01\\n-1.67754069e-01 1.07809659e-02 -2.71616310e-01 3.84983778e-01\\n5.61602339e-02 -3.12832773e-01 2.51790136e-01 1.70036837e-01\\n3.25886458e-02 5.23857959e-03 -2.32835650e-01 3.56133640e-01\\n-1.44900009e-02 -3.81758213e-01 -3.80399823e-01 2.76504576e-01\\n-1.68243386e-02 -4.69684482e-01 5.76696873e-01 6.13354668e-02\\n8.42552930e-02 -1.67710036e-01 -1.03885412e-01 -4.56302240e-02\\n-7.81441852e-03 1.00583486e-01 1.02067843e-01 1.03062149e-02\\n-3.35084528e-01 -2.77626872e-01 -2.62408018e-01 2.03954488e-01\\n-4.10650134e-01 1.63495004e-01 -1.10919878e-01 -1.20083325e-01\\n2.41403490e-01 -1.38464998e-02 -3.31671089e-01 3.23547781e-01\\n-1.68942481e-01 5.28685115e-02 -2.24709697e-02 4.02060032e-01\\n-3.88736844e-01 2.57957637e-01 -8.72027725e-02 -3.69510427e-02\\n5.78941643e-01 2.15429366e-02 1.15012199e-01 -5.44378161e-02\\n3.27076495e-01 -4.52025086e-02 1.42302126e-01 8.08842704e-02\\n-6.74037218e-01 2.17647582e-01 -8.76648054e-02 -1.66929796e-01\\n2.10992247e-01 -2.34052837e-01 2.93857485e-01 -2.68756211e-01\\n-1.43920109e-02 -1.30767584e-01 -2.87037104e-01 -2.91035414e-01\\n-2.75551558e-01 -1.42262906e-01 4.05154943e-01 -3.93167049e-01\\n-9.94281545e-02 3.30177605e-01 -4.71868187e-01 1.68837793e-02\\n2.13203251e-01 3.13118696e-01 1.39120951e-01 1.59476340e-01\\n-1.97395086e-01 -4.99492645e-01 1.28882065e-01 -2.97129810e-01\\n-2.66290724e-01 1.72522768e-01 -3.02472830e-01 3.62098277e-01\\n1.27843127e-01 -1.88607648e-02 -1.65458038e-01 1.69863150e-01\\n-2.14063153e-01 5.32847196e-02 7.53662661e-02 -6.52361214e-02\\n2.14508653e-01 8.74546617e-02 -3.30292225e-01 4.38094378e-01\\n-1.40505254e-01 6.02314830e-01 6.96143731e-02 -9.32134628e-01\\n4.58917916e-01 2.90116131e-01 -6.25308454e-02 -2.59224534e-01\\n6.63182139e-01 -3.05426598e-01 -2.07321733e-01 1.01229087e-01\\n-4.29677665e-01 -3.41619730e-01 1.34409532e-01 -1.89363539e-01\\n-1.71838224e-01 4.84658062e-01 1.81578040e-01 1.28144443e-01\\n3.08547437e-01 -1.35448188e-01 -1.06104434e-01 8.09366927e-02\\n-1.78817958e-01 -3.36376280e-01 -4.52938497e-01 -1.34847566e-01\\n-8.35239887e-02 -4.27322686e-01 -1.61685497e-01 -3.27366531e-01\\n-2.73520052e-01 -4.40966070e-01 -7.42473230e-02 6.31120503e-02\\n5.29323578e-01 1.82593137e-01 -2.25607492e-02 7.26778433e-02\\n-9.47892964e-02 -5.88080287e-01 -3.37037668e-02 8.22199881e-02\\n2.75496960e-01 3.38718951e-01 2.81987973e-02 1.17040582e-01\\n4.44842130e-02 7.26986647e-01 -1.56654805e-01 -1.37062058e-01\\n2.42328942e-01 1.05221167e-01 7.23317191e-02 -2.24393606e-01\\n1.12925127e-01 2.84797609e-01 -3.80705178e-01 2.16326967e-01\\n-1.23477742e-01 -6.66873306e-02 4.42710280e-01 1.98694225e-02\\n-2.97763765e-01 -1.94848582e-01 -1.11668698e-01 5.56276515e-02\\n-5.97747445e-01 -2.80714124e-01 7.03813791e-01 7.15757087e-02\\n1.14310548e-01 8.65345448e-02 7.49695152e-02 -6.81588799e-02\\n-2.15446979e-01 -4.99996692e-02 2.05205262e-01 -3.15017439e-02\\n1.34827286e-01 1.67425752e-01 -2.54694838e-03 -6.44005001e-01\\n-3.14929295e+00 -8.17546546e-02 9.31493714e-02 -2.02253237e-01\\n1.52211756e-01 -1.86740726e-01 -8.76563564e-02 -8.05426091e-02\\n-3.43034834e-01 5.76839894e-02 -1.74478710e-01 -2.40619153e-01\\n2.22384721e-01 1.71616241e-01 1.69753820e-01 2.44344532e-01\\n2.46716321e-01 -8.22361410e-02 -5.14799245e-02 4.16415453e-01\\n-1.19632587e-01 -6.36925578e-01 3.11752617e-01 -5.39120063e-02\\n4.05984253e-01 3.41760427e-01 -4.25855041e-01 -1.87807769e-01\\n-2.55707711e-01 -2.56909579e-01 6.88974261e-02 -2.67798007e-01\\n-1.24046110e-01 5.06807566e-01 1.74057901e-01 -1.44169778e-01\\n1.40203744e-01 -4.46136832e-01 -7.62810558e-02 -4.61429179e-01\\n1.64929390e-01 -6.23130560e-01 1.78097747e-03 -2.97189113e-02\\n7.01413989e-01 -3.66243958e-01 1.03605710e-01 1.21019155e-01\\n1.68941915e-01 2.06711859e-01 1.02994964e-01 -9.96861979e-03\\n-2.44660646e-01 -1.73305288e-01 -1.01265468e-01 -1.42713115e-01\\n5.72849035e-01 4.53557312e-01 -1.17999464e-01 1.64781157e-02\\n8.95838439e-03 -3.66470307e-01 -5.22058725e-01 -2.14798570e-01\\n-9.98131111e-02 -2.18966320e-01 -6.71041012e-01 -4.69433904e-01\\n-1.05260186e-01 -1.98981404e-01 -1.58466622e-02 4.52420443e-01\\n-1.80115536e-01 -3.10126334e-01 -1.52375966e-01 -4.09972489e-01\\n2.88049668e-01 -4.15626727e-02 -2.79788077e-02 -2.89235353e-01\\n-1.80577070e-01 -5.33810496e-01 9.29278061e-02 6.48258850e-02\\n-1.03003204e-01 -2.60149717e-01 1.49994135e-01 -1.90178141e-01\\n-1.65564105e-01 -5.11513531e-01 4.98433530e-01 1.08519546e-03\\n2.94330776e-01 1.55728996e-01 2.23719239e-01 3.84150334e-02\\n2.25060612e-01 -1.25169098e-01 7.21530393e-02 -4.27450567e-01\\n-1.21291168e-02 3.76475863e-02 5.32884598e-01 -1.60170779e-01\\n-5.16717955e-02 1.14732005e-01 -2.07463846e-01 -8.49666521e-02\\n2.16149747e-01 7.58984983e-02 1.75401121e-01 -1.81778744e-01\\n1.61779150e-01 -2.06549525e-01 -9.10591781e-02 1.43960575e-02\\n1.51126802e-01 5.80509722e-01 -1.31564215e-01 -3.98501515e-01\\n-5.65526523e-02 4.72444147e-01 -5.00711314e-02 2.54415423e-02\\n-1.82968423e-01 1.36276469e-01 -3.19193661e-01 2.14246944e-01\\n-7.45273679e-02 -1.58939913e-01 -2.92337656e-01 -1.36671692e-01\\n-3.76931094e-02 4.07748908e-01 2.78983623e-01 1.44077390e-01\\n-8.36420506e-02 -5.25711596e-01 -2.23095343e-02 1.87403023e-01\\n1.81500822e-01 4.83870357e-01 1.38824195e-01 -2.67379403e-01\\n3.10346391e-02 3.69480461e-01 -1.21721283e-01 2.79140562e-01\\n-3.05510670e-01 1.04455501e-01 -6.61286592e-01 -2.32293785e-01\\n-2.77071357e-01 -3.16626608e-01 7.72752687e-02 4.10246789e-01\\n9.79624838e-02 -1.17385000e-01 1.04726620e-01 -4.58217144e-01\\n3.74075085e-01 2.14205999e-02 1.19314514e-01 1.42173186e-01\\n9.91608761e-03 5.91725588e-01 5.25593013e-02 -1.82521850e-01\\n-1.34943843e-01 1.89930469e-01 -1.97583556e-01 -4.72806208e-02\\n-3.50926518e-02 -4.98448730e-01 -1.06936380e-01 3.01037520e-01\\n2.94150189e-02 -1.66277111e-01 -1.30909562e-01 2.66016632e-01\\n-2.22116336e-03 -2.73526132e-01 -2.68286526e-01 5.75336441e-02\\n4.14756298e-01 1.91234142e-01 2.96636045e-01 -5.25936961e-01\\n1.96620394e-02 -7.48792514e-02 -1.35381483e-02 6.25985861e-01\\n6.61890358e-02 4.29921225e-03 -2.12375730e-01 -1.86815560e-01\\n4.11891013e-01 -1.84130013e-01 -7.48777986e-02 1.00673459e-01\\n8.33585635e-02 -2.31009096e-01 -3.58689070e-01 1.60594344e-01\\n-3.37051004e-02 -1.76141173e-01 -6.13207929e-02 1.73765182e-01\\n1.48413360e-01 1.41172081e-01 -5.64824581e-01 -2.08435595e-01\\n-2.45114207e-01 1.04488311e-02 3.40926833e-02 -4.97675776e-01\\n-1.72357857e-02 -1.41496271e-01 -4.99220550e-01 2.32869849e-01\\n-2.25828290e-01 -1.09538980e-01 1.83097780e-01 2.29210034e-03\\n-3.67555618e-01 -2.37092346e-01 1.79153740e-01 2.85908550e-01\\n-2.49347061e-01 -2.44596720e-01 -2.38113292e-03 -8.92378807e-01\\n2.90414393e-01 2.45186239e-02 -1.73310444e-01 1.57677621e-01\\n-5.55469133e-02 -7.07333088e-01 1.56028166e-01 -4.12621975e-01\\n-1.41886055e-01 -6.31263703e-02 -1.99268788e-01 -4.23546731e-01\\n3.67035419e-02 8.83450173e-03 -2.42549568e-01 4.57460821e-01\\n-3.56322080e-01 3.52765024e-01 -2.62547135e-01 1.31413773e-01\\n-7.89589956e-02 -3.23431075e-01 1.18889757e-01 -5.48351884e-01\\n-3.44765484e-01 -1.38689518e-01 -3.31980407e-01 -1.74490869e-01\\n1.90829299e-02 -2.45149463e-01 -1.96253955e-01 8.05857480e-02\\n2.13078678e-01 -6.76377937e-02 -2.07978532e-01 -2.80966461e-01\\n1.70643385e-02 -4.66847241e-01 5.08031622e-02 -4.59204353e-02\\n-1.04757965e-01 -7.05693737e-02 2.46883541e-01 1.57358333e-01\\n2.64922798e-01 -4.58063811e-01 3.80105078e-01 -4.11942095e-01\\n-3.00559402e-01 -1.09593339e-01 1.48376031e-03 1.82287712e-02\\n3.62692773e-01 -4.77761596e-01 -1.01287141e-02 3.75146091e-01\\n2.19972923e-01 5.86541034e-02 2.01122612e-01 -6.59990832e-02\\n-1.14597201e-01 3.02348912e-01 -3.10396254e-01 3.44828516e-02\\n8.53453755e-01 3.82500961e-02 2.41570860e-01 1.16111957e-01\\n1.78004503e-01 2.54506916e-01 3.16239566e-01 -2.90300865e-02\\n-1.38223201e-01 3.49256694e-01 1.15436524e-01 -4.88376379e-01\\n-1.38280317e-01 4.60150167e-02 -2.99348950e-01 -4.25727963e-01\\n6.41443729e-01 4.03710902e-01 -2.98482239e-01 -1.06796749e-01\\n-1.23506293e-01 -1.01538002e-01 1.48052394e-01 -1.38370693e-01\\n1.38968766e-01 -1.64310038e-01 3.83343130e-01 -8.19118246e-02\\n1.57438919e-01 5.72071671e-01 -1.87432259e-01 -3.38175088e-01\\n4.76191379e-03 1.83620274e-01 -1.31619051e-02 4.06564415e-01\\n-2.95923710e-01 3.67138296e-01 -4.81122136e-02 1.40856445e-01\\n-1.34187981e-01 2.05805779e-01 1.57242224e-01 2.80693360e-03\\n1.59253269e-01 7.88425356e-02 5.93236387e-01 4.12072301e-01\\n4.55301881e-01 3.24033141e-01 2.74644703e-01 -2.07591970e-02\\n5.31782389e-01 4.67112422e-01 3.58952433e-01 1.74257711e-01\\n5.59177361e-02 4.44199964e-02 1.73239782e-01 1.06581867e-01\\n3.04539025e-01 2.19690382e-01 5.76414764e-02 9.97816563e-01\\n4.11790669e-01 2.66025871e-01 7.32808352e-01 -6.78185165e-01\\n-2.79311180e-01 -3.46836559e-02 4.73846823e-01 -4.01882291e-01\\n-2.37719920e-02 9.90024805e-02 -2.13972166e-01 1.59011781e-01\\n-4.14214969e-01 -3.16164732e-01 -1.18679479e-01 9.19205099e-02\\n-4.94345371e-03 -1.96245492e-01 -1.98717564e-01 1.33768782e-01\\n-8.88219029e-02 -1.27493829e-01 -6.06339991e-01 -3.77791077e-02\\n-2.51960188e-01 -2.29738176e-01 -2.21184582e-01 -1.92418545e-01\\n-1.68771058e-01 -2.77095884e-01 -9.28361416e-02 -6.36054724e-02\\n1.79586500e-01 -1.92318290e-01 -7.11112320e-02 -2.04497993e-01\\n3.65317553e-01 1.70582205e-01 5.40863335e-01 5.14017865e-02\\n1.48754507e-01 -3.42131197e-01 -2.28654206e-01 1.61648080e-01\\n2.19933227e-01 3.77353430e-02 6.61360621e-02 2.98703074e-01\\n-3.48388940e-01 -2.41821438e-01 6.32560626e-03 3.68635416e-01\\n-4.53299344e-01 1.72404870e-02 -7.05558658e-02 2.44711280e-01\\n1.07839063e-01 6.21089414e-02 -1.08920686e-01 -4.61726170e-03\\n-9.65857282e-02 -5.49805522e-01 2.18791604e-01 7.12216944e-02\\n-1.76052228e-01 1.14705861e-01 2.54397035e-01 1.45167157e-01\\n-2.97064334e-01 -6.45915344e-02 -1.08516708e-01 1.14809357e-01\\n1.56517908e-01 4.05665666e-01 -2.97802120e-01 -3.14509869e-01\\n-3.15246314e-01 1.05698876e-01 -2.18795508e-01 -5.70882298e-02\\n6.24846555e-02 3.43230367e-01 1.49295583e-01 2.56716274e-02\\n4.92708802e-01 -5.77100031e-02 -2.07298160e-01 -1.88778400e-01\\n-9.82521027e-02 -1.66690469e-01 -1.93059385e-01 -1.86665580e-02\\n2.86251307e-01 -2.34294251e-01 -9.97916237e-02 -2.02726364e-01\\n-1.21421479e-01 -3.57192099e-01 1.30815029e-01 -1.93166345e-01]]',\n", + " 'Vizrt provides real-time 3D graphics, studio automation, sports analysis and asset management tools for the broadcast industry. This includes interactive and virtual solutions, animations, maps, weather, video editing and compositing tools. Vizrt has customers in more than 100 countries worldwide including such as CNN, CBS, Fox, the BBC, BSkyB, Al Jazeera, ZDF, CCTV, and the list keeps growing. This is possible due to 600 engaged and very competent employees in 40 offices around the world. In our R&D team in Zürich/Switzerland we create award-winning, unique and high-tech software dedicated to sports media productions. We strive to develop first-class media enhancement technology and we need your excellent C++ programming skills to develop the best products for Vizrt around sports media creation. To strengthen our software engineering team, we have an immediate opening for a proactive, pragmatic, and team-oriented SOFTWARE ENGINEER (C++) You complement the engineering team with your expertise and experience in application development and you will help us to advance the innovative and technologically advanced product lines related to sports. In close collaboration with your colleagues, you will be working on our challenging, exciting, and interesting software engineering tasks. What are we looking for? You are a pragmatic, team-oriented, flexible, independent and motivated software engineer You have excellent C++ programming skills and ideally already some experience You have at least a MSc in Computer Science, and some knowledge in Software Design or Architecture Good English capabilities is a must. German is not a requirement but helpful in private life. Background knowledge in Computer Graphics, Computer Vision and/or Machine Learning is a plus. Experience with Visual Studio or Qt SDK is a plus. We expect efficiency and pragmatic problem-solving skills. Your interest and enthusiasm for sports helps us to deliver the next generation of sports media technology. What do we offer? At Vizrt, you will find a challenging and diversified software engineering position in our dynamic, innovative, and fast-growing high-tech environment. Interesting tasks are waiting for your excellent solutions and your main focus will be on high quality application development where you will be integrated in the full development cycle. Sporadic field services at international sports media productions and infrequent second level support are part of the profile. If you find this interesting and want to be a part of our team submit your CV and application by clicking the \"Apply now\" button or at vizrt.com. Click here to read about our online privacy and personal data policies. jVL8HHgSoa',\n", + " '[\"Team Oriented\", \"Collaboration\", \"Proactivity\", \"Problem Solving\", \"Enthusiasm\", \"Integration\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Application Development\", \"Real Time Data\", \"Video Editing\", \"Frameforge 3D Studio\", \"MSC Software\", \"Tooling\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Field Service Management\", \"Virtualization\", \"Industrialization\", \"Scholastic READ 180\", \"Compositing\", \"C++ (Programming Language)\", \"Media Production\", \"Computer Vision\", \"Component Object Model (COM)\", \"High Tech Manufacturing\", \"Levelling\", \"Idealization\", \"Product Lining\", \"Software Engineering\", \"Microsoft Visual Studio\", \"Machine Learning Methods\", \"Automation Studio\", \"Animations\", \"Personalization\", \"Weather Maps\", \"Qt (Software)\", \"Software Design\", \"Real-Time Computer Graphics\", \"Computer Graphics\", \"Asset Management\", \"Closed-Circuit Television Systems (CCTV)\", \"Broadcasting\"]',\n", + " \"['English', 'Sango', 'North Ndebele']\"],\n", + " ['125',\n", + " 'software developer/devops engineer 60-100% starting immediately or as per agreement',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-2.87318110e-01 2.91789472e-01 4.31188583e-01 -8.56497586e-02\\n5.50554872e-01 -1.77667126e-01 -1.81153476e-01 4.18591142e-01\\n-1.41118765e-01 -3.14023614e-01 -1.08434513e-01 -2.64241785e-01\\n-1.60108298e-01 1.53163016e-01 6.70829564e-02 4.40282047e-01\\n3.40453863e-01 5.67928515e-02 -1.71614468e-01 3.23336720e-01\\n1.02806613e-01 -9.64196473e-02 -4.06006500e-02 7.56575286e-01\\n3.62100184e-01 1.48202516e-02 -5.53796291e-02 2.72017196e-02\\n-1.69028550e-01 -1.95795953e-01 4.24424082e-01 1.71294175e-02\\n-1.09756403e-01 -3.16664100e-01 1.61537319e-01 1.11791953e-01\\n-2.37060279e-01 -1.03546232e-02 -3.76902670e-02 1.60510525e-01\\n-5.12383103e-01 -1.93267167e-01 1.45915411e-02 1.42959803e-02\\n-2.79489934e-01 -2.70250201e-01 2.29901269e-01 2.37958580e-02\\n2.33175308e-02 5.69798499e-02 -6.05443358e-01 2.64797658e-01\\n-2.71879137e-01 -2.63937533e-01 4.01578635e-01 4.84519213e-01\\n5.35161905e-02 -4.76649761e-01 -4.92879808e-01 -3.85217905e-01\\n-3.52666825e-02 -7.18578100e-02 3.89909297e-02 -2.73499966e-01\\n5.02170920e-01 1.37555972e-01 5.60406670e-02 3.60494316e-01\\n-8.01566899e-01 -1.07479371e-01 -2.12247014e-01 5.86293414e-02\\n-4.19530869e-01 -1.04820862e-01 -2.29446977e-01 -2.23073408e-01\\n-5.96053377e-02 2.96231508e-01 -3.69271412e-02 9.81291234e-02\\n-1.38414115e-01 3.09551448e-01 -1.51179239e-01 3.57642770e-01\\n2.48925060e-01 1.73266470e-01 2.58680612e-01 3.36884737e-01\\n-4.56089437e-01 3.54018390e-01 1.28624976e-01 -3.47741365e-01\\n2.72112489e-01 6.20779619e-02 4.51661527e-01 9.88357067e-02\\n1.76459432e-01 1.43177837e-01 -2.75089353e-01 2.16527492e-01\\n1.98034912e-01 -2.34888554e-01 -7.76223838e-04 -1.14471316e-01\\n-2.95662023e-02 5.42322136e-02 1.54809458e-02 1.92612082e-01\\n-3.79081279e-01 3.74513745e-01 1.75825447e-01 -2.73818403e-01\\n-1.01332933e-01 -5.78993320e-01 -1.22831173e-01 1.46739170e-01\\n2.04649158e-02 -5.30406088e-03 1.45222217e-01 1.15870684e-01\\n2.24334180e-01 4.39854153e-03 1.36397451e-01 8.49736691e-01\\n-1.23089060e-01 -6.50517419e-02 -1.49911433e-01 2.67448455e-01\\n1.03887878e-01 -3.06839287e-01 2.14043438e-01 3.00301254e-01\\n1.05285630e-01 -9.65064913e-02 -2.45603755e-01 3.91231865e-01\\n-9.10522416e-04 -2.49747306e-01 -3.50262821e-01 2.72334695e-01\\n-1.16192371e-01 -4.62924838e-01 5.35417378e-01 5.94500173e-03\\n2.22213119e-01 -6.12952113e-02 9.75393504e-03 -8.14917535e-02\\n-4.99278158e-02 1.65591896e-01 6.23758510e-02 2.49845311e-01\\n-3.73047531e-01 -2.50737190e-01 -1.74523860e-01 1.78210318e-01\\n-2.58136809e-01 1.52739286e-01 -9.52636153e-02 -1.36618212e-01\\n3.80859077e-01 2.93134227e-02 -3.21646303e-01 2.13435248e-01\\n-3.00743692e-02 1.56142935e-03 -1.25223532e-01 3.85336041e-01\\n-1.58782840e-01 2.32533216e-01 -8.19541365e-02 -1.55077174e-01\\n5.68798423e-01 5.88336065e-02 1.35826081e-01 -3.41330208e-02\\n3.76788825e-01 -1.47953451e-01 2.99568772e-01 3.50088179e-02\\n-6.97408974e-01 2.18423441e-01 -1.39078293e-02 -1.70854092e-01\\n3.10208797e-02 3.42263356e-02 4.09392267e-01 -3.31602275e-01\\n-9.21376050e-05 -1.94397196e-01 -3.72853070e-01 -3.37666452e-01\\n-2.58329719e-01 7.73894712e-02 4.21880007e-01 -3.80115300e-01\\n-1.16501763e-01 1.65301889e-01 -5.59084177e-01 -2.04996750e-01\\n2.11235449e-01 2.25003034e-01 1.26817137e-01 9.17577371e-02\\n-1.38674349e-01 -7.17165709e-01 3.40212882e-02 -5.29017806e-01\\n-2.54450202e-01 1.32091165e-01 -3.92119646e-01 2.19579250e-01\\n1.09882336e-02 -4.72904593e-02 -1.20516382e-01 1.37907594e-01\\n-3.48661184e-01 -6.25367165e-02 1.48148507e-01 3.47936824e-02\\n2.84271419e-01 1.07930340e-01 -2.71239161e-01 5.35039544e-01\\n-1.54739842e-01 4.94785607e-01 1.31897479e-01 -8.04526329e-01\\n5.07906973e-01 4.43602204e-01 8.89478400e-02 -3.37336123e-01\\n5.69540799e-01 -3.01147461e-01 -6.24946766e-02 1.32318974e-01\\n-4.60249662e-01 -2.59566069e-01 2.44656637e-01 -2.77914077e-01\\n-2.35727161e-01 5.57668924e-01 7.49789700e-02 2.86465883e-02\\n3.54128361e-01 -3.61817777e-01 -1.78567231e-01 1.29208982e-01\\n-1.16411954e-01 -3.23868215e-01 -5.43175697e-01 1.83105245e-02\\n-7.25895017e-02 -5.22873938e-01 -2.09462374e-01 -3.61580282e-01\\n-1.21171907e-01 -2.79470801e-01 -2.15028331e-01 3.72170210e-01\\n1.37792170e-01 9.57143679e-02 -1.16027400e-01 -3.25749069e-02\\n-1.03597805e-01 -6.00327849e-01 6.46317750e-02 -7.62615204e-02\\n4.29507524e-01 1.72550350e-01 1.62954018e-01 -6.85341507e-02\\n4.24821973e-02 6.11936092e-01 -3.55240583e-01 -3.18563938e-01\\n7.56022260e-02 1.08517960e-01 -8.05538613e-03 -3.48435640e-02\\n1.53358683e-01 2.83679783e-01 -2.80136943e-01 2.93359160e-04\\n-2.65068829e-01 3.77300568e-02 3.81170571e-01 -1.25991032e-01\\n-2.00369880e-01 -2.47937664e-01 -1.34533331e-01 2.09450424e-01\\n-5.06720483e-01 -2.30727017e-01 4.16215062e-01 2.08025396e-01\\n1.61086842e-01 1.46631077e-01 2.57583529e-01 -3.05785723e-02\\n-2.73961484e-01 -3.76286834e-01 2.59703845e-01 1.94673315e-01\\n1.18294075e-01 1.25228167e-01 -1.08436294e-01 -5.59951186e-01\\n-2.93729639e+00 -1.77619115e-01 2.11666360e-01 -2.89920747e-01\\n2.80518532e-01 -9.52224582e-02 6.85328841e-02 -7.66997561e-02\\n-3.61034989e-01 -3.13492529e-02 -1.61867917e-01 -2.46088997e-01\\n6.44157454e-02 2.88689852e-01 1.49642691e-01 7.89279044e-02\\n7.27260336e-02 -2.17213064e-01 7.11056143e-02 2.76450306e-01\\n-1.47085473e-01 -7.16445208e-01 1.96123138e-01 -1.18124358e-01\\n2.33736783e-01 3.11203688e-01 -4.14957613e-01 -1.66257665e-01\\n-2.57039428e-01 -2.18894243e-01 1.32843792e-01 -3.22713614e-01\\n-1.09991074e-01 3.05664599e-01 2.08565980e-01 -7.47518390e-02\\n5.99676967e-02 -3.68930161e-01 -9.76570398e-02 -5.65621912e-01\\n2.24634141e-01 -5.76452494e-01 -3.91370151e-03 -1.71015441e-01\\n6.65006042e-01 -2.91297406e-01 1.82726577e-01 1.35385662e-01\\n2.31303096e-01 2.02988476e-01 6.48515224e-02 7.25327134e-02\\n-2.54797429e-01 -3.19191754e-01 -2.41924226e-02 -2.85765201e-01\\n5.49647093e-01 4.76489246e-01 -2.08977669e-01 -5.56413084e-02\\n1.48424178e-01 -3.50824773e-01 -4.54944044e-01 -3.19716066e-01\\n-1.86787039e-01 -1.59528390e-01 -6.02613747e-01 -3.77588332e-01\\n-1.11144185e-01 -8.96145999e-02 -9.21295136e-02 7.16021776e-01\\n-3.33794415e-01 -3.24110806e-01 5.17537817e-03 -6.55639291e-01\\n7.62278512e-02 -2.63824970e-01 6.99969530e-02 -2.36851692e-01\\n-2.31593966e-01 -4.92470652e-01 1.22997947e-01 -7.06257299e-02\\n-1.79481894e-01 -3.36754829e-01 3.22761573e-02 -2.54902959e-01\\n-1.84644908e-01 -5.51626325e-01 3.85588646e-01 1.51344895e-01\\n3.84903014e-01 1.87793210e-01 2.89781362e-01 -2.03124825e-02\\n2.71261364e-01 3.76273878e-02 -2.62049958e-03 -3.97569388e-01\\n2.10584551e-01 2.14498322e-02 5.50341487e-01 -1.82782650e-01\\n1.78368874e-02 9.05191600e-02 -2.20640779e-01 -1.51129171e-01\\n3.18200797e-01 9.64162573e-02 1.94250457e-02 -1.74557716e-01\\n4.10951138e-01 -4.19547498e-01 -1.13547973e-01 1.97528839e-01\\n5.34651726e-02 6.41566753e-01 -1.67857111e-02 -3.89339983e-01\\n-2.05366701e-01 5.42307019e-01 -1.11077242e-02 -3.98148559e-02\\n-5.10816649e-03 1.66688740e-01 -1.56590879e-01 1.82058275e-01\\n4.89002243e-02 -1.72223762e-01 -2.58895695e-01 -6.41639531e-02\\n-1.45417899e-01 2.82754540e-01 2.92502046e-01 2.50201762e-01\\n-1.03088312e-01 -3.89020383e-01 -4.35447842e-02 2.98897743e-01\\n2.62479544e-01 3.97856116e-01 1.80709511e-01 -1.73602343e-01\\n2.35672742e-02 4.60401475e-01 -1.22553632e-01 2.26123989e-01\\n-1.48112223e-01 7.70156905e-02 -5.44449151e-01 -1.76110327e-01\\n-3.27874482e-01 -2.81568766e-01 1.20939940e-01 3.09839934e-01\\n1.75294995e-01 -7.26273656e-02 5.76428548e-02 -3.56755018e-01\\n2.43489802e-01 8.83635134e-02 2.07738400e-01 1.25812173e-01\\n-9.34434831e-02 6.11874640e-01 -1.92633569e-02 -7.33592883e-02\\n-1.86909348e-01 -1.23604946e-02 -2.65375733e-01 -1.86913460e-01\\n1.68819994e-01 -3.95074666e-01 -2.10466236e-01 4.37441260e-01\\n1.05115086e-01 -1.55914098e-01 -1.79656982e-01 2.94642508e-01\\n6.36705533e-02 -2.88086116e-01 -2.58867919e-01 2.27771960e-02\\n2.96990991e-01 4.84071895e-02 2.52825230e-01 -5.04959822e-01\\n-3.87022458e-02 9.62376222e-02 1.11653693e-02 4.82677609e-01\\n1.01177104e-01 4.75580106e-03 -1.94290102e-01 -2.97577620e-01\\n3.24753970e-01 -1.71053261e-01 -1.12228245e-01 -1.06714204e-01\\n3.71257886e-02 -1.56514287e-01 -4.09128308e-01 3.04189771e-02\\n-8.75774473e-02 -1.98559880e-01 -2.12248638e-02 3.96063961e-02\\n1.56495839e-01 7.49918595e-02 -5.38079858e-01 -1.80572510e-01\\n-2.11260617e-01 4.53960299e-02 4.73914668e-04 -4.55058873e-01\\n5.21916039e-02 -2.65320726e-02 -5.96360683e-01 2.49133706e-01\\n-2.16501728e-01 -1.72815025e-02 1.95525765e-01 -2.01024115e-02\\n-4.61807728e-01 -1.38845056e-01 1.76314950e-01 1.75923079e-01\\n-3.57330948e-01 -3.15296113e-01 5.33151999e-02 -1.02236998e+00\\n1.91780090e-01 -9.61777866e-02 -1.16622925e-01 1.15673631e-01\\n7.14104846e-02 -6.96519852e-01 8.08185562e-02 -3.65290046e-01\\n-5.79128787e-03 6.44948259e-02 -1.99457601e-01 -3.20395589e-01\\n7.62744322e-02 -1.16553485e-01 -2.10152030e-01 4.63202327e-01\\n-4.96144295e-01 2.81551600e-01 -9.17651951e-02 5.04254699e-02\\n5.49955294e-02 -3.18094879e-01 1.46768942e-01 -3.12892437e-01\\n-4.53601778e-01 -2.32586071e-01 -2.63967574e-01 -3.86464596e-01\\n2.09685136e-02 -2.85497308e-01 -1.30863413e-01 9.20823216e-02\\n2.98231930e-01 -1.91106908e-02 -1.86114684e-01 -2.28986442e-01\\n9.53403413e-02 -4.53365326e-01 7.88550898e-02 -5.20132445e-02\\n-8.07747394e-02 -1.38689891e-01 1.98494166e-01 1.04011580e-01\\n1.51971757e-01 -3.57496649e-01 5.10936260e-01 -3.76024514e-01\\n-3.70997846e-01 -7.93536454e-02 8.58781338e-02 9.27861407e-03\\n2.19826415e-01 -6.54448628e-01 -3.50430086e-02 4.03188586e-01\\n2.05288291e-01 4.40065116e-02 2.04517663e-01 -1.41157478e-01\\n3.06737162e-02 2.29866520e-01 -3.89220595e-01 1.45663664e-01\\n8.67883027e-01 1.54450938e-01 1.05609357e-01 2.38801956e-01\\n1.47309422e-01 2.88691550e-01 4.74720836e-01 -1.02697149e-01\\n-7.43917674e-02 2.56745696e-01 1.39196903e-01 -4.64492112e-01\\n-1.52405024e-01 -3.56659181e-02 -2.19154991e-02 -2.70281553e-01\\n6.73882127e-01 3.77228737e-01 -4.49291468e-01 -3.12332600e-01\\n-9.88477319e-02 -7.93113112e-02 2.72883654e-01 -1.01410180e-01\\n1.26195177e-02 -1.69254273e-01 3.98905456e-01 -2.46471763e-02\\n2.85397083e-01 5.73866546e-01 -1.91057056e-01 -3.46286058e-01\\n-1.87313184e-01 2.07979783e-01 2.93491296e-02 4.31390464e-01\\n-1.44919842e-01 2.01590300e-01 -5.63432872e-02 1.80502191e-01\\n-1.46607757e-01 1.90563813e-01 1.00478768e-01 5.71591109e-02\\n2.05162674e-01 1.31151050e-01 3.90405834e-01 4.27460074e-01\\n3.74838233e-01 5.24707198e-01 2.74959713e-01 4.67869565e-02\\n4.93670940e-01 5.46043575e-01 4.72681075e-01 -1.02610551e-02\\n-8.42719972e-02 1.17959708e-01 1.00726373e-01 -7.90356100e-02\\n4.05645490e-01 3.19476247e-01 1.54250965e-01 9.33255613e-01\\n3.24126899e-01 3.79435778e-01 6.98691249e-01 -5.63847959e-01\\n-2.86700159e-01 5.67018837e-02 4.60928977e-01 -4.21892703e-01\\n4.04282734e-02 7.92097896e-02 -1.67069674e-01 2.26446718e-01\\n-4.92805004e-01 -8.33834186e-02 -3.79050709e-03 2.18010470e-02\\n1.09355494e-01 -4.77372482e-02 -2.17290044e-01 -3.26051340e-02\\n-2.41340756e-01 -2.43086696e-01 -4.19553876e-01 -2.16480732e-01\\n-2.07325071e-01 -7.10473359e-02 -6.01869412e-02 -2.17074305e-01\\n-7.99204633e-02 -3.56071323e-01 2.90904343e-02 3.05220857e-03\\n3.63231272e-01 -1.19046845e-01 -1.43253192e-01 -1.59353733e-01\\n3.66383731e-01 3.20502818e-01 6.39274836e-01 -1.33762375e-01\\n9.07671079e-03 -1.49128616e-01 -2.40885392e-01 1.49054140e-01\\n2.62479801e-02 1.16542861e-01 1.40212059e-01 2.67452806e-01\\n-2.76915550e-01 -8.46120864e-02 1.02654383e-01 3.54872227e-01\\n-3.72790039e-01 -7.65801072e-02 -9.86637399e-02 1.46286160e-01\\n-7.52954371e-03 1.39302641e-01 -2.87257373e-01 1.13631755e-01\\n-1.94109589e-01 -5.63626826e-01 4.52676833e-01 -1.88164040e-01\\n-1.44184843e-01 3.81145217e-02 3.99288416e-01 2.23205343e-01\\n-2.31812239e-01 2.88282707e-03 2.34621409e-02 2.06964642e-01\\n6.44229949e-02 3.45169842e-01 -1.61057010e-01 -2.84343541e-01\\n-3.56081724e-01 1.98329404e-01 -1.88631520e-01 1.26163512e-02\\n-1.43413007e-01 4.23739254e-01 -4.40278165e-02 3.40358168e-02\\n4.14370358e-01 -8.75738040e-02 -1.60119101e-01 -3.00972998e-01\\n-2.28682548e-01 -2.21214429e-01 7.98541121e-03 -1.97812542e-03\\n2.33695775e-01 -3.69636327e-01 -1.46578059e-01 -2.98409998e-01\\n2.15439349e-02 -2.49564201e-01 1.55617930e-02 4.02572230e-02]]',\n", + " \"60-100% Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum's scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master's degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer you The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).\",\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " \"['English']\"],\n", + " ['87',\n", + " 'data scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.54534191e-01 3.09695065e-01 5.41048110e-01 1.05600737e-01\\n6.31053805e-01 -9.09011811e-02 -5.11705875e-03 2.89422482e-01\\n1.02763269e-02 -4.79990304e-01 -8.96662623e-02 -3.00933421e-01\\n-7.81719983e-02 1.19460605e-01 2.12078169e-02 5.05458117e-01\\n3.04452479e-01 7.98590854e-02 -1.94830507e-01 2.96692193e-01\\n7.58904219e-02 -9.21158418e-02 4.65119034e-02 7.89840698e-01\\n4.76172388e-01 -1.53833088e-02 -5.28285764e-02 1.15928486e-01\\n-2.59276032e-01 -2.59622663e-01 4.83713984e-01 -2.77760401e-02\\n-1.79266304e-01 -3.79980981e-01 1.01828605e-01 1.70682997e-01\\n-1.97517365e-01 -1.40019134e-01 -1.45585895e-01 1.84878081e-01\\n-5.11989594e-01 -7.10798725e-02 -6.27267510e-02 8.33144188e-02\\n-3.13558996e-01 -3.94508839e-01 2.28154697e-02 -1.43950433e-01\\n1.41547069e-01 1.20793439e-01 -4.92461830e-01 2.11964265e-01\\n-2.79535294e-01 -1.81032658e-01 2.33254284e-01 6.66930676e-01\\n2.77436711e-03 -4.04768825e-01 -4.99981761e-01 -3.59419346e-01\\n9.68115777e-02 -1.48925439e-01 1.21161327e-01 -3.67856860e-01\\n4.03639972e-01 4.80557643e-02 -3.69378962e-02 2.75526285e-01\\n-8.27646613e-01 -2.47257221e-02 -3.54253590e-01 -2.57035401e-02\\n-4.90433246e-01 -5.47579415e-02 -4.06440079e-01 -1.24308258e-01\\n-6.86934590e-02 4.69321549e-01 -1.70315914e-02 9.57431495e-02\\n-2.48861268e-01 3.25115860e-01 -3.00278187e-01 3.07386309e-01\\n2.15749711e-01 2.61406064e-01 1.93330482e-01 3.68700802e-01\\n-4.57694858e-01 3.73787701e-01 1.32383466e-01 -3.43104362e-01\\n2.92455405e-01 1.82307214e-01 3.70235562e-01 -1.10424738e-02\\n8.06659162e-02 1.34445518e-01 -2.79323101e-01 3.45487744e-01\\n2.59245187e-01 -3.27889562e-01 1.10353399e-02 -1.87611774e-01\\n8.17013681e-02 -9.40711237e-03 5.04938364e-02 1.39908224e-01\\n-4.49890703e-01 3.87442917e-01 5.49337864e-02 -1.92807555e-01\\n-9.53988656e-02 -5.34336150e-01 -8.33911002e-02 1.89849269e-02\\n3.51127945e-02 2.70699620e-01 1.76753968e-01 2.38492310e-01\\n2.58935899e-01 2.54102759e-02 1.27062529e-01 8.77883673e-01\\n-6.62598908e-02 5.86951636e-02 -1.97182059e-01 3.65920603e-01\\n1.06803581e-01 -3.85626912e-01 3.72683227e-01 2.00958073e-01\\n-3.59984934e-02 -9.21664238e-02 -3.10712874e-01 3.65854234e-01\\n-1.01171963e-01 -1.67768851e-01 -2.60361195e-01 1.56669304e-01\\n2.19459347e-02 -4.53210682e-01 6.79913700e-01 3.21155488e-02\\n1.47005469e-01 -1.87337518e-01 3.38415876e-02 -1.51978210e-01\\n-4.35735472e-02 2.50239283e-01 9.53002498e-02 1.49292782e-01\\n-3.67314935e-01 -2.33879015e-01 -1.64553642e-01 1.84871584e-01\\n-3.61653030e-01 3.92330773e-02 -1.68314189e-01 -1.07598148e-01\\n2.33125210e-01 6.55429363e-02 -3.66338462e-01 1.40790865e-01\\n-1.73094034e-01 -1.65184051e-01 1.59676913e-02 4.28505123e-01\\n-2.17824876e-01 2.13916302e-01 -9.24050957e-02 -1.35505155e-01\\n6.48049474e-01 1.19532228e-01 1.89114213e-01 7.69629702e-02\\n2.62891442e-01 -1.09530821e-01 1.79584652e-01 1.57501057e-01\\n-6.97478414e-01 4.48892385e-01 -8.65544826e-02 -1.92632779e-01\\n-6.36369362e-03 -4.42250445e-02 3.96426201e-01 -3.41499180e-01\\n1.02286845e-01 -1.34396851e-01 -3.37036043e-01 -2.59659946e-01\\n-2.62445211e-01 -5.81044927e-02 3.89494658e-01 -4.51210767e-01\\n-1.15815163e-01 2.87452042e-01 -6.92722917e-01 -1.69644058e-01\\n2.26446003e-01 2.20412001e-01 1.45970792e-01 1.07090682e-01\\n-1.26016557e-01 -6.39778674e-01 8.36042464e-02 -4.22887206e-01\\n-3.11819881e-01 1.18987814e-01 -4.09144253e-01 2.25980073e-01\\n8.90407488e-02 1.80889312e-02 -9.37937647e-02 2.12068319e-01\\n-3.15282345e-01 6.21624440e-02 1.41963571e-01 1.18827984e-01\\n3.36047530e-01 1.29768297e-01 -4.81415302e-01 4.61491942e-01\\n-1.73143893e-01 5.58403611e-01 1.32520795e-01 -8.20285499e-01\\n5.70390165e-01 2.36053288e-01 -4.50868905e-03 -3.40402782e-01\\n5.61367750e-01 -2.96332091e-01 -9.31432694e-02 7.04149008e-02\\n-4.04941022e-01 -3.40194404e-01 2.59028822e-01 -2.26300314e-01\\n-2.30652839e-01 5.13455868e-01 5.80587760e-02 1.79540873e-01\\n3.36032391e-01 -2.60693908e-01 -2.11215138e-01 8.64282101e-02\\n-1.55161470e-01 -2.47515142e-01 -6.63027883e-01 -7.14992881e-02\\n-1.63980782e-01 -4.32883382e-01 -1.68118924e-01 -4.58774507e-01\\n-2.32560322e-01 -3.54921758e-01 -1.69473752e-01 1.69435874e-01\\n2.21650973e-01 9.95511040e-02 -5.44343852e-02 -1.31271221e-02\\n-2.92835534e-02 -6.68349683e-01 -1.10428892e-01 7.37931281e-02\\n4.16947842e-01 2.46222064e-01 1.83095425e-01 -6.05295524e-02\\n1.34663463e-01 6.33368134e-01 -3.01293612e-01 -3.21902275e-01\\n1.73316166e-01 1.86831951e-01 -5.83358109e-02 -1.05940141e-01\\n1.61213651e-02 3.04186285e-01 -2.98740238e-01 4.72703315e-02\\n-6.99833333e-02 -1.20322891e-01 3.83708596e-01 -7.36376876e-03\\n-2.35398427e-01 -1.04449846e-01 -1.25922531e-01 1.80065542e-01\\n-6.05286300e-01 -2.41280288e-01 5.62656045e-01 2.17393667e-01\\n1.16419651e-01 4.55096588e-02 1.77515298e-01 -4.95076925e-03\\n-3.16848218e-01 -3.17542940e-01 2.59601921e-01 1.28559172e-01\\n2.55477913e-02 7.05151632e-02 2.05459110e-02 -6.06863201e-01\\n-3.17042542e+00 -1.71816170e-01 1.95558161e-01 -1.25669599e-01\\n2.23211408e-01 -1.87676817e-01 9.35532302e-02 -3.89346704e-02\\n-3.53282034e-01 1.02537759e-02 -1.35862887e-01 -2.08681554e-01\\n1.20736636e-01 2.77561337e-01 2.01906353e-01 1.51850343e-01\\n1.55040890e-01 -1.71310276e-01 1.36198048e-02 3.30917507e-01\\n-1.86956227e-01 -6.74892843e-01 9.08773020e-02 5.11279441e-02\\n1.62534446e-01 1.78245962e-01 -3.77101690e-01 -1.25750661e-01\\n-4.21788514e-01 -2.19363406e-01 1.27470359e-01 -3.72200608e-01\\n-1.54250264e-01 3.37863654e-01 2.76769072e-01 -4.47883755e-02\\n4.25362885e-02 -3.85989755e-01 -1.07889414e-01 -4.46283102e-01\\n1.52378500e-01 -5.30155182e-01 3.36548351e-02 -1.85210258e-01\\n7.65889049e-01 -2.70409435e-01 1.39224797e-01 9.42744613e-02\\n2.06456751e-01 1.77274719e-01 1.76865578e-01 -2.17764117e-02\\n-2.05419689e-01 -2.21895754e-01 -7.74296522e-02 -1.26566738e-01\\n6.46931410e-01 4.23995256e-01 -8.14221948e-02 4.70101759e-02\\n1.33588463e-01 -3.17640305e-01 -4.70529914e-01 -3.50491107e-01\\n-1.07618392e-01 -1.88258186e-01 -6.26634836e-01 -4.99508590e-01\\n-1.24623597e-01 -1.11780867e-01 -9.94564593e-02 6.24259710e-01\\n-2.21339256e-01 -2.61729419e-01 -1.64557844e-01 -5.22715449e-01\\n3.01356018e-01 -1.60124570e-01 6.88046515e-02 -2.13278323e-01\\n-2.05454916e-01 -4.99227941e-01 6.38052449e-02 -1.12385646e-01\\n-6.20305277e-02 -2.64090151e-01 1.17936805e-01 -2.55552024e-01\\n-3.55915248e-01 -5.83395243e-01 4.64060217e-01 1.45012543e-01\\n3.58146489e-01 1.33548230e-01 2.78110355e-01 7.63768852e-02\\n3.09909403e-01 -1.02834024e-01 -4.09739763e-02 -3.99790168e-01\\n1.39236942e-01 -4.89000604e-03 5.33990204e-01 -2.31745780e-01\\n1.02379605e-01 6.24420978e-02 -1.84112728e-01 -1.11639239e-02\\n4.19463336e-01 -6.67833164e-02 9.27922279e-02 -6.97553456e-02\\n2.91475564e-01 -2.94944584e-01 -1.24336332e-01 7.08579570e-02\\n1.67970248e-02 6.65000200e-01 -9.88284592e-03 -3.97574842e-01\\n-9.81964171e-02 4.52187449e-01 4.58508171e-03 -2.10374352e-02\\n-1.95891067e-01 4.60714102e-02 -2.30713278e-01 3.03700626e-01\\n6.23473153e-02 -1.86030939e-01 -2.28398532e-01 -1.20353967e-01\\n-8.09023455e-02 3.78268778e-01 2.71911979e-01 1.00167744e-01\\n3.95088382e-02 -2.62784719e-01 -6.90597221e-02 1.94889724e-01\\n2.90038288e-01 4.58224326e-01 1.60984874e-01 -2.88782060e-01\\n3.31976637e-02 3.24012816e-01 -2.31396511e-01 2.33003944e-01\\n-2.36630201e-01 1.73960388e-01 -6.21045768e-01 -2.49912918e-01\\n-2.82402396e-01 -3.34596097e-01 2.86302716e-01 3.10437262e-01\\n1.49060085e-01 -1.15147308e-01 1.27573073e-01 -4.71931040e-01\\n1.85508221e-01 1.15847223e-01 8.03064033e-02 1.39438778e-01\\n-7.25350156e-02 6.27053142e-01 -3.57923135e-02 -1.46198362e-01\\n-5.60637787e-02 4.11032811e-02 -1.45359188e-01 -2.41298676e-01\\n-1.37516409e-02 -5.66573381e-01 -1.56452388e-01 5.17399073e-01\\n1.48371547e-01 -1.61099210e-01 -2.48683408e-01 2.53085613e-01\\n-3.98470797e-02 -2.48480991e-01 -3.11333358e-01 -2.77180150e-02\\n3.73762906e-01 9.27604064e-02 2.61399299e-01 -5.55208683e-01\\n-2.97165327e-02 -2.83406433e-02 2.88380980e-02 4.40667808e-01\\n7.31741786e-02 9.48639065e-02 -8.35242197e-02 -1.57984689e-01\\n4.80759859e-01 -2.40286551e-02 -1.07412964e-01 8.36232752e-02\\n1.21302366e-01 -1.90426037e-01 -4.04377341e-01 4.94870320e-02\\n-5.01678586e-02 -2.73130417e-01 -9.13571008e-03 1.29075646e-01\\n3.53383757e-02 6.70410618e-02 -7.15526104e-01 -2.64852166e-01\\n-2.70837992e-01 -2.78315805e-02 -3.21403742e-02 -5.96870303e-01\\n1.38364136e-02 -7.07854852e-02 -5.91111898e-01 2.08256066e-01\\n-4.96222526e-02 -1.24800913e-01 2.65532732e-01 9.42408219e-02\\n-1.71291158e-01 -1.70750767e-01 1.03329733e-01 2.34502554e-01\\n-3.17176312e-01 -3.11684728e-01 2.61890255e-02 -1.03183508e+00\\n1.48777425e-01 4.44738120e-02 -1.47236466e-01 1.76333964e-01\\n-4.62749563e-02 -7.22790599e-01 5.37610240e-03 -5.02388179e-01\\n-9.25508738e-02 -3.32884975e-02 -3.33404541e-01 -3.14110041e-01\\n2.42295563e-01 2.33885255e-02 -3.05130929e-01 4.06105757e-01\\n-2.96534687e-01 3.28739583e-01 -1.34739965e-01 8.23685974e-02\\n1.54404324e-02 -2.34843850e-01 1.08245730e-01 -2.32621789e-01\\n-4.39092249e-01 -2.27123201e-01 -2.88402349e-01 -1.90351129e-01\\n-2.09435467e-02 -3.65051687e-01 -8.04658383e-02 -6.57568872e-03\\n4.34081703e-01 6.78686425e-02 -1.42766088e-01 -1.80300325e-01\\n2.81287655e-02 -4.94259804e-01 9.70014930e-02 -1.78185835e-01\\n-1.44698769e-01 -1.33003578e-01 2.25294739e-01 1.35862529e-01\\n2.02471405e-01 -3.82345617e-01 3.48454863e-01 -4.11388278e-01\\n-3.17384094e-01 -1.12836733e-01 1.49927810e-01 9.59857088e-03\\n2.79226780e-01 -5.57919145e-01 -4.44051623e-02 3.49255741e-01\\n1.66242495e-01 1.02328584e-01 1.91392615e-01 -1.25604287e-01\\n-3.93672809e-02 3.22296441e-01 -3.87233585e-01 1.92017466e-01\\n7.80897856e-01 1.55065000e-01 2.57971555e-01 2.00700432e-01\\n1.51758462e-01 1.93048909e-01 5.24990559e-01 -4.31491472e-02\\n-8.39248002e-02 3.44993711e-01 1.18735909e-01 -4.83583659e-01\\n-9.74129438e-02 -1.42248154e-01 -1.02183692e-01 -4.20216054e-01\\n6.01920545e-01 3.80075037e-01 -3.90081167e-01 -1.99097887e-01\\n-2.17539638e-01 -1.40008569e-01 2.18971461e-01 -4.92943153e-02\\n-6.05405867e-03 2.90381536e-03 4.98297065e-01 -1.39822081e-01\\n2.70174325e-01 6.23915672e-01 -2.02366471e-01 -1.99730247e-01\\n-1.64499015e-01 1.43388420e-01 9.03801322e-02 4.79511499e-01\\n-2.50315666e-01 3.36863935e-01 3.49162593e-02 1.30211264e-01\\n-1.82461396e-01 1.31332381e-02 1.79213136e-01 5.52507900e-02\\n2.86000460e-01 1.06661104e-01 4.40178961e-01 4.90092665e-01\\n2.98714072e-01 4.60475624e-01 3.36455941e-01 3.96975353e-02\\n4.84205306e-01 6.31522357e-01 3.25586706e-01 1.35912031e-01\\n-1.04838625e-01 5.89993484e-02 1.30482584e-01 5.39055020e-02\\n3.56828660e-01 4.38765883e-01 9.68327001e-02 8.80908430e-01\\n3.45427513e-01 4.18943286e-01 7.38073945e-01 -6.90734863e-01\\n-4.19316471e-01 1.03424981e-01 5.05783081e-01 -3.77308369e-01\\n3.81999239e-02 1.03753306e-01 -2.03916401e-01 1.96226269e-01\\n-5.29232264e-01 -2.69887775e-01 -7.15664402e-03 1.52644858e-01\\n5.13674244e-02 -1.82126999e-01 -2.47766644e-01 6.59377575e-02\\n-3.25102620e-02 -1.55242562e-01 -4.22062099e-01 -1.43701151e-01\\n-2.95331478e-01 3.37583013e-04 -8.18701684e-02 -8.29759464e-02\\n-5.44227585e-02 -2.02680558e-01 -7.49576464e-02 -7.23154023e-02\\n3.92525971e-01 -1.28378868e-01 -1.30298704e-01 -5.99414073e-02\\n2.44457573e-01 2.23465502e-01 5.78759432e-01 -3.00619192e-02\\n1.32586747e-01 -1.94757164e-01 -1.56179011e-01 1.59529015e-01\\n1.09332234e-01 4.06366065e-02 -1.61737129e-02 3.21369410e-01\\n-2.16229632e-01 -2.23356187e-01 1.34887159e-01 2.02912450e-01\\n-4.61161226e-01 -5.30123431e-03 -1.18303217e-01 4.38667946e-02\\n1.15935765e-02 1.05248868e-01 -2.43553177e-01 5.77133894e-03\\n-1.44268319e-01 -4.44765329e-01 3.45368415e-01 -1.87141851e-01\\n-1.22981317e-01 3.11319903e-02 3.22898597e-01 1.84897602e-01\\n-2.71895289e-01 -3.08813006e-02 -9.60706696e-02 2.23605886e-01\\n6.72718287e-02 3.03200901e-01 -1.96236119e-01 -3.89028728e-01\\n-3.22408646e-01 1.84618771e-01 -9.64381695e-02 6.35292679e-02\\n-3.23561132e-02 3.94295216e-01 9.42248255e-02 5.77734932e-02\\n4.00770128e-01 -7.06802076e-03 -2.54904628e-01 -2.18271732e-01\\n-2.29595661e-01 -1.73319787e-01 -7.83997402e-03 -5.32035045e-02\\n2.31440753e-01 -3.12721938e-01 -1.29660457e-01 -1.92686409e-01\\n-9.14446861e-02 -4.48908001e-01 -3.38442847e-02 -9.24443454e-02]]',\n", + " \"Open Web Technology is a technology and strategy consulting firm. We help our clients leverage new technologies to reshape their business, invent new products or transform their organization. With a large growth every year and now over 150 employees, we're a fast growing and highly connected team. Beginning of 2016, we created together with Swisscom Entreprise the joint venture Swisscom Digital Technology SA. Operating under the Open Web Technology brand, it is our goal to become a leading provider of digital transformation consulting services for large companies in Switzerland in the Telecommunications, Banks, Insurances, Media, Healthcare and Consumer Goods industries. Learn more about us at https://www.openwt.com/ Open Web Technology has an opening for a Data Scientist that will join our Team in Zurich. You bring value out of data. You enthusiastically fetch information from various sources and analyze it for better understanding about how the business performs and build AI tools that automate certain processes within the company. You help discover the information hidden in vast amounts of data, and help making smarter decisions. The main focus will be in applying machine learning and data mining techniques, doing statistical analysis, and building high quality prediction systems integrated with our clients products or processes. What responsibilities we can offer you Select features and data to build and optimize classifiers using i) machine learning techniques ii) data mining methods Extend the project’s data with third party sources of information when needed Enhance data collection procedures to include information that is relevant for building analytic systems; Automate and integrate work-/data-flow from diverse systems. Process, cleanse, and verify the integrity of data used for analysis Apply state-of-the-art neural network/deep learning algorithms if suitable in a project context Contribute to the creation of an AI value proposition at Open Web Technology and to the acquisition of new clients thanks to a clear value proposition definition Requirements What you bring At least three years experience working as a Data Scientist in a similar environment Master degree (or ongoing Master/PhD) in one of Europe’s leading universities in one of the following fields: Statistics, Mathematics, Data Mining, Computer Science, Computational Linguistics or related Ability to learn fast, take initiative, lead oneself and work independently with minimal management direction. Able and willing to acquire new skills Above-average communication and analytical skills. Independent resolution of complex tasks Dynamic, dedicated and a demanding team player Solid understanding of the main machine learning methods (supervised and unsupervised learning), and optimization techniques. Experience with data visualisation tools, such as ggplot, tableau, etc... Proficiency in using SQL databases such as MySQL, Microsoft SQL, MariaDB, etc… Experience with NoSQL databases such as MongoDB, Cassandra, etc… Experience in text analytics and Natural Language Processing (text classification, NER, topics mining, sentiment analysis) Understanding of state-of-the-art deep learning techniques. Experience working with one or more frameworks such as TensorFlow, Torch, Caffe, Theano, Keras etc. Fluency in English and preferably also in German, French or Italian Benefits Why work at Open Web Technology? Why join Open Web Technology? From your first day, you will actively contribute to the digitalization of Switzerland by serving local and global companies. From digital strategy to complex software engineering, you will help our clients reshape their business, invent new products and transform their organization using the latest technologies. You will take part in every step of our clients' digital journey and work for industries including finance, healthcare, telecommunication, media and many others. More than the diverse projects you will be part of, becoming an Openwebber will make you feel valued, stimulated and encouraged in a passionate, focused and creative team. Can we spark your interest? We look forward to receiving your application!\",\n", + " '[\"Analytical Skills\", \"Decisiveness\", \"Management\", \"Supervision\", \"Communications\", \"Operations\", \"Integration\", \"Creativity\", \"Sourcing\", \"Consulting\"]',\n", + " '[\"Automation\", \"MySQL\", \"Sentiment Analysis\", \"Tooling\", \"Tableau (Business Intelligence Software)\", \"NoSQL\", \"Apache Cassandra\", \"Hyper SQL Database (HSQLDB)\", \"Natural Language Processing\", \"Theano (Software)\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Branding\", \"Process Automation Systems\", \"Industrialization\", \"Mathematical Statistics\", \"Value Propositions\", \"Activism\", \"Open Web\", \"Component Object Model (COM)\", \"Digital Transformation\", \"Systems Integration\", \"MariaDB\", \"Keras (Neural Network Library)\", \"Quality Management Systems\", \"Software Engineering\", \"Data-Flow Analysis\", \"Machine Learning Methods\", \"Computational Linguistics\", \"Digital Technology\", \"Library For WWW In Perl\", \"Finance\", \"Digitization\", \"Bank Insurance Model (BIM)\", \"TensorFlow\", \"Deep Learning\", \"Data Mining\", \"Java Data Mining\", \"Receivables\", \"Consumer Packaged Goods\", \"Recurrent Neural Network (RNN)\", \"Text Classification\", \"Algorithms\", \"Data Collection\", \"Microsoft SQL Servers\", \"New Product Development\", \"Telecommunications\", \"Unsupervised Learning\", \"Feature Selection\", \"Joint Ventures\", \"Text Processing\", \"Integrated Delivery Systems\"]',\n", + " \"['English', 'Afar', 'Dhivehi', 'German']\"],\n", + " ['75',\n", + " 'software development engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " '[\"\"]',\n", + " '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " \"['English', 'Bosnian']\"],\n", + " ['75',\n", + " 'data engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.45461687e-01 3.43262911e-01 6.15293682e-01 1.68723255e-01\\n6.31978452e-01 -1.33710042e-01 2.70851236e-03 1.65711224e-01\\n5.61349802e-02 -2.83527702e-01 -1.20747387e-01 -3.08465779e-01\\n-1.85216337e-01 7.49655217e-02 1.32902443e-01 5.25913894e-01\\n3.02933633e-01 6.58070892e-02 -9.25452486e-02 4.09856409e-01\\n4.85333763e-02 -1.19624019e-01 1.99627765e-02 6.05996966e-01\\n4.38717455e-01 4.85589216e-03 -1.23940460e-01 5.85745126e-02\\n-3.67640138e-01 -1.59509405e-01 4.59741175e-01 3.00218780e-02\\n-1.36390314e-01 -3.03753465e-01 9.30625647e-02 1.88443899e-01\\n-2.45780051e-01 6.35524541e-02 -5.60881980e-02 1.08714581e-01\\n-4.48023856e-01 -2.67196566e-01 1.26575513e-04 2.63435990e-02\\n-4.84006315e-01 -1.95133254e-01 -1.02997631e-01 -1.83512613e-01\\n1.07505894e-03 3.17517109e-02 -5.11763811e-01 3.47864002e-01\\n-3.76591623e-01 -1.56540558e-01 2.15364948e-01 6.73680186e-01\\n1.13920592e-01 -5.30170918e-01 -4.18593317e-01 -2.70189613e-01\\n1.79460824e-01 -1.24290563e-01 5.65267839e-02 -2.44859219e-01\\n4.24637109e-01 -1.30107582e-01 -6.76652342e-02 3.27563554e-01\\n-7.02786267e-01 -7.38327131e-02 -3.90516281e-01 1.04633711e-01\\n-5.12302935e-01 8.34956765e-02 -4.27399904e-01 -7.27827176e-02\\n-7.65353367e-02 3.87596607e-01 1.49418889e-02 1.30541623e-01\\n-2.69149661e-01 2.35853985e-01 -2.24627420e-01 1.56795755e-01\\n2.85130918e-01 1.16631001e-01 3.17553103e-01 3.37406427e-01\\n-3.60048175e-01 3.87680739e-01 2.35565066e-01 -2.22644508e-01\\n2.72627503e-01 2.23905236e-01 2.49216124e-01 1.50175735e-01\\n-2.81461924e-02 1.46427676e-01 -7.48957247e-02 1.57573238e-01\\n1.38335317e-01 -1.89290822e-01 1.29681360e-03 -9.63151827e-02\\n-1.11622445e-01 -3.51142101e-02 -9.00565460e-02 2.56981760e-01\\n-2.69462079e-01 3.63736510e-01 1.57616854e-01 -1.21742092e-01\\n-2.13952675e-01 -4.91530985e-01 -7.94029459e-02 5.71277598e-03\\n5.89722656e-02 2.42815599e-01 2.54953265e-01 1.28894761e-01\\n2.54345715e-01 3.44272442e-02 1.65834144e-01 7.48420060e-01\\n6.46380633e-02 7.90719837e-02 -4.64388318e-02 2.56719172e-01\\n2.16428712e-01 -2.04817966e-01 9.98190418e-02 1.34344354e-01\\n-5.21298721e-02 -1.37013510e-01 -3.19277823e-01 1.54908150e-01\\n-1.97738364e-01 -1.57522395e-01 -3.26031633e-02 1.03603795e-01\\n-5.85924573e-02 -5.52407622e-01 5.56940854e-01 -1.39321312e-01\\n1.47492290e-01 -1.40823096e-01 8.18004534e-02 1.89745799e-02\\n-1.20453596e-01 2.86872387e-01 1.97944432e-01 3.14146340e-01\\n-3.16876173e-01 -3.32945168e-01 -8.14850405e-02 2.97580421e-01\\n-2.99203038e-01 6.11444302e-02 -1.77800164e-01 -2.24524125e-01\\n2.08313793e-01 2.80210823e-01 -4.40422952e-01 3.92688960e-02\\n-1.64897546e-01 -3.61508131e-01 -7.53517523e-02 4.07033026e-01\\n-2.29690492e-01 3.47381271e-02 4.25354354e-02 -2.04159096e-01\\n5.91664732e-01 3.34666997e-01 3.48034620e-01 7.13559240e-02\\n2.93484509e-01 -8.28671604e-02 1.95962578e-01 1.19819835e-01\\n-5.48224390e-01 4.53206241e-01 -7.21022710e-02 -1.20093137e-01\\n1.55160189e-01 -4.29005222e-03 5.33911288e-01 -2.55125731e-01\\n7.08123520e-02 -2.73425549e-01 -3.98488969e-01 -3.28018367e-01\\n-2.01745167e-01 -4.71614162e-03 2.41513908e-01 -4.28132892e-01\\n-2.72477549e-02 2.84833610e-01 -5.54901481e-01 -3.44703883e-01\\n2.48491779e-01 2.64501572e-01 1.24275722e-01 1.11069463e-01\\n-7.49188885e-02 -5.81132710e-01 3.52200493e-02 -4.68015492e-01\\n-4.04421896e-01 -2.49529462e-02 -2.35090986e-01 7.26369992e-02\\n2.09378707e-03 5.72107546e-02 -6.81692809e-02 1.47310808e-01\\n-4.60180581e-01 -5.69276186e-03 1.68984950e-01 7.65245333e-02\\n2.34405279e-01 5.07103950e-02 -3.28127623e-01 4.73230064e-01\\n-2.97188491e-01 4.06588852e-01 2.56001800e-01 -8.61419439e-01\\n5.68426192e-01 2.49251202e-01 -9.23789386e-03 -3.70304197e-01\\n3.55671316e-01 -5.21526814e-01 -9.33561474e-02 6.13200702e-02\\n-1.41961440e-01 -1.18798777e-01 3.58180255e-01 -2.11132541e-01\\n-3.36047292e-01 6.20433509e-01 2.35908362e-03 2.14491393e-02\\n2.82808483e-01 -2.64506191e-01 -1.93436399e-01 -8.65863860e-02\\n-2.13617504e-01 -1.74542964e-01 -4.14833516e-01 1.05244197e-01\\n-1.17108673e-01 -3.61885488e-01 -1.20978840e-02 -4.01279509e-01\\n-1.71324447e-01 -3.74649614e-01 -2.43649229e-01 1.37523890e-01\\n1.03392281e-01 1.02420680e-01 -1.07934214e-01 -1.12184927e-01\\n4.49085459e-02 -7.18636513e-01 -1.08725198e-01 3.38901728e-02\\n4.67912167e-01 3.53729159e-01 2.49563023e-01 -3.06874942e-02\\n1.34701774e-01 5.50828516e-01 -3.78461152e-01 -3.41959029e-01\\n1.94010869e-01 7.87123740e-02 -7.61139914e-02 -1.88431054e-01\\n9.72933695e-02 2.94423610e-01 -1.13456510e-01 -2.27196217e-02\\n-2.34625340e-02 -8.72244164e-02 3.38978827e-01 -1.86698392e-01\\n-7.74503350e-02 -1.19251415e-01 -1.19027205e-01 2.15748593e-01\\n-4.69213605e-01 -3.27243894e-01 4.54755723e-01 2.73361355e-01\\n6.90143108e-02 1.59466878e-01 1.22338146e-01 3.06858253e-02\\n-3.56309325e-01 -3.44995469e-01 2.81258106e-01 5.26752323e-02\\n2.10426226e-02 2.32512020e-02 -9.39681455e-02 -4.66961682e-01\\n-3.41530514e+00 -4.89200465e-02 1.88928209e-02 -2.33290076e-01\\n2.06701115e-01 -1.16324559e-01 7.14488551e-02 8.33488926e-02\\n-2.54712850e-01 2.46551782e-02 -1.70670226e-01 -5.18839620e-02\\n-4.48602065e-02 3.16103458e-01 9.33014527e-02 3.84817459e-02\\n1.50618181e-01 -2.40652099e-01 -6.99588358e-02 4.64907378e-01\\n-5.03926426e-02 -7.21057892e-01 1.19978031e-02 -6.88524991e-02\\n1.16542250e-01 3.62804383e-02 -3.44559759e-01 -3.02171819e-02\\n-3.21783900e-01 -2.56358087e-01 1.22749627e-01 -2.08536252e-01\\n-2.81398982e-01 2.91674465e-01 9.45580378e-02 -1.22985423e-01\\n-1.07198246e-01 -2.07788631e-01 4.29763123e-02 -5.06992817e-01\\n1.38960734e-01 -7.14000523e-01 -3.75835085e-03 -1.36628980e-02\\n5.84856808e-01 -1.64641231e-01 2.87528217e-01 2.15728775e-01\\n1.43553928e-01 -2.11164355e-02 1.85156792e-01 -2.40447223e-02\\n-3.00616443e-01 -3.65209341e-01 -1.73802361e-01 -1.65254921e-01\\n7.18893945e-01 3.11277181e-01 -1.00720927e-01 4.06202003e-02\\n1.48488835e-01 -3.96242350e-01 -4.87545133e-01 -3.24758112e-01\\n-2.00086564e-01 -2.91414410e-02 -7.20060468e-01 -4.81994331e-01\\n-1.55218065e-01 -6.59109652e-02 -6.73054308e-02 6.08512819e-01\\n-2.30624467e-01 -2.35324755e-01 -9.80691239e-02 -5.47575474e-01\\n3.01923841e-01 -2.56308615e-01 7.10346103e-02 -2.84368575e-01\\n-3.69654059e-01 -4.39549536e-01 1.94489911e-01 -7.30335712e-02\\n-1.74198464e-01 -4.19544689e-02 4.42416826e-03 -2.55530346e-02\\n-3.16013843e-01 -4.68978614e-01 3.87457669e-01 -7.38938227e-02\\n5.66275418e-01 -1.93598811e-02 3.69431734e-01 -3.46119925e-02\\n4.53283936e-01 4.04478759e-02 6.70731217e-02 -3.57496947e-01\\n3.89862061e-02 9.76228192e-02 5.74111104e-01 -3.17048788e-01\\n1.51545368e-02 5.27623780e-02 -3.08390975e-01 -2.96667311e-02\\n4.49939996e-01 -8.85708705e-02 2.20472310e-02 1.29609928e-01\\n2.93131948e-01 -5.13617575e-01 -1.67040884e-01 9.37559307e-02\\n2.07114331e-02 6.25210166e-01 8.27597529e-02 -4.07331586e-01\\n-1.11273929e-01 4.29297835e-01 -4.31382656e-02 9.85256210e-02\\n1.40072210e-02 3.53567190e-02 -1.91602737e-01 4.36737925e-01\\n6.76571205e-02 -2.30549023e-01 -2.99353838e-01 -5.79375066e-02\\n-1.22554377e-01 1.47152618e-01 2.32998729e-01 5.80248684e-02\\n2.30642874e-02 -1.88655838e-01 -1.41187340e-01 2.42510632e-01\\n3.64463717e-01 3.65966976e-01 1.69769868e-01 -2.06511483e-01\\n-3.01502086e-02 1.83349729e-01 -2.99083263e-01 3.48169565e-01\\n-1.27524719e-01 2.09569365e-01 -6.27479970e-01 -1.67405650e-01\\n-1.59385994e-01 -3.01116407e-01 1.80501446e-01 4.40081328e-01\\n1.78961992e-01 -5.30513488e-02 7.60693401e-02 -6.42368913e-01\\n3.03089231e-01 1.92367941e-01 6.74932748e-02 5.81117831e-02\\n-6.86723888e-02 7.66072035e-01 7.73418928e-03 -1.43100947e-01\\n-7.07146376e-02 6.74823150e-02 -2.32413217e-01 -2.76889890e-01\\n1.95446298e-01 -4.39832419e-01 -1.54774651e-01 4.27938849e-01\\n2.34089985e-01 -1.09297372e-01 -2.49130368e-01 3.81763130e-01\\n3.89791578e-02 -2.84468800e-01 -3.06159139e-01 1.25431806e-01\\n1.79428443e-01 1.53226063e-01 2.64915735e-01 -4.06858534e-01\\n2.95755677e-02 -6.43591061e-02 3.33670489e-02 2.90400386e-01\\n1.25907227e-01 1.60914645e-01 -1.03613377e-01 -8.00869390e-02\\n5.92269003e-01 2.13902250e-01 -1.93431601e-01 4.88454401e-02\\n1.31396770e-01 -3.11934203e-01 -3.23265314e-01 4.99575362e-02\\n-7.23004490e-02 -2.55732179e-01 4.89906594e-02 1.26175076e-01\\n-1.98582839e-02 -1.09883539e-01 -4.22232568e-01 -1.49054885e-01\\n-2.76382953e-01 -4.19594254e-03 7.95240551e-02 -6.09321535e-01\\n-1.25130400e-01 -4.41221595e-02 -5.01111627e-01 1.83672741e-01\\n-5.27021736e-02 5.33580787e-05 2.71256030e-01 1.98814914e-01\\n-8.46277624e-02 -1.26714602e-01 1.36952549e-01 2.10997999e-01\\n-3.23518217e-01 -3.27558994e-01 -5.72009571e-02 -1.03193188e+00\\n3.04551963e-02 1.11054741e-01 -1.45765826e-01 1.08695358e-01\\n8.33023041e-02 -6.83981776e-01 1.24660581e-01 -4.37347561e-01\\n-3.09376530e-02 3.66117503e-03 -2.97971278e-01 -2.48662859e-01\\n6.27181306e-02 -1.51279658e-01 -3.54465693e-01 3.55348527e-01\\n-3.01621735e-01 4.08321589e-01 -6.51673600e-02 3.44344079e-02\\n9.32064950e-02 -1.22898012e-01 2.10284740e-01 -1.23457193e-01\\n-2.18952820e-01 -3.70516568e-01 -3.75666648e-01 -2.92722791e-01\\n-9.49626490e-02 -1.50642008e-01 -1.35448113e-01 2.66333390e-02\\n4.37410444e-01 1.52030051e-01 -1.20548859e-01 -8.96442533e-02\\n1.49293214e-01 -4.98202682e-01 6.33919239e-02 -3.37238431e-01\\n-8.34103450e-02 -1.63629994e-01 2.81054586e-01 -5.95019460e-02\\n2.14466199e-01 -3.42060924e-01 5.20700216e-01 -2.16495201e-01\\n-3.86916339e-01 -1.46672249e-01 6.11792058e-02 9.55975130e-02\\n2.80735105e-01 -4.01661009e-01 1.17136076e-01 2.50661612e-01\\n4.03542332e-02 4.11687829e-02 2.98279077e-01 -8.22580531e-02\\n-8.96562859e-02 5.44565618e-02 -6.74461126e-01 8.79601464e-02\\n7.13376462e-01 2.83797890e-01 1.62912562e-01 1.20529234e-01\\n9.61805880e-02 2.42521882e-01 5.25316656e-01 -1.42605335e-01\\n-2.51624677e-02 3.05517584e-01 9.43161175e-02 -4.76335078e-01\\n-2.37158775e-01 -2.13028684e-01 -7.52407387e-02 -3.07486802e-01\\n5.85317731e-01 2.71951765e-01 -2.87705988e-01 -3.35809946e-01\\n-1.35284960e-01 -8.27378929e-02 3.52562517e-01 6.41786382e-02\\n-1.44241184e-01 9.70631838e-03 5.05854189e-01 4.50406820e-02\\n2.83908457e-01 4.26924080e-01 -8.60817507e-02 -2.25579292e-01\\n-5.51485121e-02 1.86164543e-01 1.40627697e-01 3.20042342e-01\\n-2.00698733e-01 1.30719393e-01 -6.14636280e-02 1.25273883e-01\\n-2.33439341e-01 2.49223653e-02 1.41840041e-01 1.40141606e-01\\n2.45270178e-01 1.36888862e-01 2.90388674e-01 4.51820850e-01\\n1.10721752e-01 3.42675507e-01 2.38971010e-01 -6.04136921e-02\\n2.38155350e-01 5.43040693e-01 3.36177975e-01 4.02082428e-02\\n1.23461410e-02 1.06996074e-01 9.68925878e-02 -8.85592997e-02\\n2.74497867e-01 3.96090031e-01 2.17187256e-01 5.96714854e-01\\n9.02913138e-02 5.20967484e-01 7.97358632e-01 -5.96352816e-01\\n-4.60837215e-01 -9.24533885e-03 6.38803780e-01 -3.52302045e-01\\n6.79744855e-02 2.06874356e-01 -3.47421080e-01 1.87796980e-01\\n-6.09354734e-01 -2.64300585e-01 1.06963396e-01 -2.99479105e-02\\n-1.62936337e-02 -6.85544014e-02 -4.72488925e-02 1.89514682e-01\\n-9.89639312e-02 -3.02131325e-01 -2.00534016e-01 -2.26358682e-01\\n-3.00919712e-01 8.85518491e-02 5.77768730e-03 -4.85662520e-02\\n1.62085034e-02 -2.14576438e-01 4.06952240e-02 -3.30120400e-02\\n3.73546124e-01 -2.89822929e-02 -3.75518709e-01 -7.51640573e-02\\n1.52700230e-01 1.35392874e-01 5.91454446e-01 2.72085406e-02\\n1.07000269e-01 -6.70243725e-02 -2.10967943e-01 1.16635866e-01\\n1.52001619e-01 1.23591632e-01 8.38922039e-02 3.24338466e-01\\n-2.67904311e-01 -2.10667297e-01 8.81456137e-02 7.74200186e-02\\n-3.67181480e-01 -1.21740289e-02 -1.04218759e-01 1.36623308e-01\\n-6.57823309e-02 1.45621344e-01 -1.62430406e-01 -1.39385657e-02\\n-1.51032135e-01 -5.64263701e-01 3.84673148e-01 -1.91514179e-01\\n-3.23953211e-01 -8.12249780e-02 3.47107202e-01 2.53185868e-01\\n-1.75987378e-01 -1.03107383e-02 -2.50483096e-01 2.04263359e-01\\n-6.43269941e-02 2.97567606e-01 -5.51350862e-02 -1.82020769e-01\\n-3.62191111e-01 3.23454887e-01 4.65417206e-02 2.03021705e-01\\n-9.38285887e-02 5.71872115e-01 -1.53819174e-01 -1.14159696e-02\\n3.35298866e-01 -1.23696094e-02 -2.71286696e-01 -3.07480246e-01\\n-2.84505427e-01 2.40708459e-02 1.10141233e-01 5.15100099e-02\\n2.30976224e-01 -2.89912581e-01 -1.59454532e-02 -3.80179524e-01\\n-6.33889884e-02 -4.22186315e-01 -1.10984311e-01 4.88775149e-02]]',\n", + " 'Job Informationen Essential Duties and Responsibilities: - Responsible for developing, maintaining, and testing infrastructures for data generation, expanding and optimizing the companies data and data pipeline architecture, as well as optimizing data flow and collection for cross functional teams - Support software developers, database architects, data analysts and data scientists on data initiatives and will ensure optimal data delivery architecture is consistent throughout ongoing projects - Assemble large, complex data sets that meet functional / non-functional business requirements - Identify, design, and implement internal process improvements: automating manual processes, optimizing data delivery, re-designing infrastructure for greater scalability, etc. - Setup the infrastructure required for optimal extraction, transformation, and loading of data from a wide variety of data sources using SQL and no-SQL ‘big data’ technologies - Create data tools for analytics and data scientist team members that assist them in building and optimizing our product into an innovative industry leader - Work with data and analytics experts to strive for greater functionality in our data systems - Working closely with Engineering Teams to ensure tracking quality and data accuracy and integrity - Set data standards and clearly define the range of acceptable values and attributes for data - Develop and maintain a data inventory and contribute to the centrally maintained data inventory - Implement data retention requirements consistent with legal or company policies Required Skills: - B.S. or Master in IT (Specialisation in Data/Big Data Systems preferred), Mathematics, Statistics or similar quantitative field - 3 years plus experience in Big Data processing with good awareness of latest cloud based solutions - 3 years plus experience with major ETL tools, data integration and manipulation - Functional Java development (Scala is a plus) - Experience with Google Analytics and Google Big Query - SQL and Database Development (MS SQL Server is a plus) - Open minded for new technologies - Creative and innovative team player - Fluent in English and German Benötigte Skills Englisch SQL SQL Server ETL Google Analytics NoSQL Test',\n", + " '[\"Innovation\", \"Infrastructure\", \"Creativity\", \"Integration\"]',\n", + " '[\"Automation\", \"Tooling\", \"Data Encryption Standard\", \"NoSQL\", \"Google Analytics\", \"Java Development Tools\", \"Collections\", \"Data Retention\", \"Analytics\", \"Pentaho Data Integration\", \"Database Development\", \"Data Integration\", \"Industrialization\", \"Process Improvements\", \"Scala (Programming Language)\", \"SQL (Programming Language)\", \"Maintainability\", \"Tracking (Commercial Airline Flight)\", \"Data System\", \"Extract Transform Load (ETL)\", \"Process Optimization\", \"Minimum Data Set\", \"Business Requirements\", \"Project-Based Solutions\", \"Scalability\", \"Big Data\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"SQL Server Reporting Services\", \"Software Development\", \"Amazon Data Pipeline\", \"Microsoft SQL Servers\", \"Data-Flow Analysis\", \"B (Programming Language)\", \"Source Data\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'etl/data management engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.82886654e-01 2.94222355e-01 4.60425436e-01 8.91190618e-02\\n5.80254436e-01 -1.22408994e-01 -2.27416074e-03 1.42229363e-01\\n-2.09328532e-02 -2.62084484e-01 -6.67846799e-02 -2.47497514e-01\\n-6.66818619e-02 4.66556065e-02 4.12734263e-02 3.53907466e-01\\n2.94407368e-01 5.16126938e-02 -1.44064829e-01 3.51744860e-01\\n9.09873620e-02 -8.55234731e-03 1.14045799e-01 5.33777714e-01\\n2.49999702e-01 1.71568617e-03 -9.87909436e-02 2.73114629e-02\\n-2.96015710e-01 -2.46629566e-01 3.76834929e-01 4.18761224e-02\\n-2.57091761e-01 -2.75942773e-01 3.74203846e-02 1.93852298e-02\\n-2.93152720e-01 -7.63805211e-02 2.01705527e-02 5.89236505e-02\\n-3.12672794e-01 -2.41865084e-01 -6.52537867e-02 2.25883648e-02\\n-3.68917108e-01 -2.23576099e-01 -4.76847701e-02 -7.10331425e-02\\n-1.40885770e-01 3.33609097e-02 -4.65750605e-01 2.50394464e-01\\n-1.95079952e-01 -1.32257700e-01 2.80050993e-01 5.91243148e-01\\n2.86980607e-02 -5.35603881e-01 -3.67752373e-01 -2.68577248e-01\\n1.77125722e-01 -1.50052577e-01 7.23767132e-02 -1.20473541e-01\\n4.67886031e-01 -1.35394543e-01 4.65267058e-03 3.54981840e-01\\n-6.73109412e-01 -4.34691198e-02 -2.85936803e-01 4.29135561e-02\\n-3.97870421e-01 -4.33701649e-02 -2.28451222e-01 -2.52931476e-01\\n2.95568054e-04 3.21657240e-01 4.34875451e-02 6.16574362e-02\\n-2.04258069e-01 2.19841748e-01 -1.23642094e-01 1.01892725e-01\\n3.50744724e-01 9.24138427e-02 2.16570035e-01 2.00282171e-01\\n-4.54654604e-01 4.02896315e-01 3.36163551e-01 -2.81646758e-01\\n2.14242175e-01 3.86249088e-02 3.13697785e-01 1.35442257e-01\\n-4.63122763e-02 2.19277918e-01 1.45090474e-02 1.16766728e-01\\n2.72232722e-02 -1.29525393e-01 -3.86340320e-02 -1.44338179e-02\\n-3.60555686e-02 -8.55849832e-02 -3.98940556e-02 2.73893893e-01\\n-2.86561012e-01 2.69940287e-01 1.31063282e-01 -1.39675409e-01\\n-2.62371227e-02 -4.67194438e-01 -1.15251288e-01 -2.39910603e-01\\n-8.88643228e-03 1.78231850e-01 3.25242490e-01 1.93245411e-01\\n2.74064690e-01 9.05287638e-02 2.45486677e-01 8.26432228e-01\\n2.94108540e-02 6.87492788e-02 -2.70480067e-01 4.06487256e-01\\n1.72809020e-01 -2.63654172e-01 1.76037923e-01 2.03488350e-01\\n2.39853486e-02 -1.32417148e-02 -2.44581312e-01 2.20447555e-01\\n-1.43666029e-01 -2.14284346e-01 -1.59997627e-01 7.37251192e-02\\n-2.58328646e-01 -4.74983722e-01 3.14343631e-01 5.62342964e-02\\n1.19324580e-01 -1.44343629e-01 -4.29588072e-02 -2.25478150e-02\\n-1.59657970e-01 3.54074597e-01 -1.13120303e-02 2.46760041e-01\\n-2.84581542e-01 -1.79397702e-01 -7.82394037e-02 3.10006946e-01\\n-4.61644530e-02 3.14127617e-02 -1.66080162e-01 -1.73593089e-01\\n2.27763280e-01 9.58850160e-02 -4.53318089e-01 1.81062132e-01\\n5.36305718e-02 -4.01964515e-01 -1.75364450e-01 3.84028554e-01\\n-1.51382029e-01 5.80714457e-02 -1.67077742e-04 -2.36360237e-01\\n5.01266837e-01 2.39639848e-01 2.03717276e-01 -8.40321034e-02\\n2.30118409e-01 -1.93768784e-01 3.55393946e-01 1.79439306e-01\\n-5.87054551e-01 3.75960916e-01 -1.39848158e-01 -1.35463938e-01\\n6.40802905e-02 7.82345086e-02 4.03140455e-01 -2.78279334e-01\\n6.67369440e-02 -1.81013122e-01 -3.47027153e-01 -4.54138964e-01\\n-1.65052503e-01 1.09524541e-01 3.12953949e-01 -3.91538322e-01\\n-1.24066651e-01 1.76465154e-01 -4.77721781e-01 -1.98592976e-01\\n2.15340719e-01 1.66240051e-01 4.74068522e-02 1.42266840e-01\\n-7.64120892e-02 -4.76231813e-01 7.69889206e-02 -4.85842049e-01\\n-3.71001452e-01 1.20211607e-02 -1.72866330e-01 1.05673566e-01\\n6.38870001e-02 2.51073018e-02 -4.18449081e-02 1.45813867e-01\\n-4.44911331e-01 -2.43950300e-02 2.84102589e-01 1.44285604e-01\\n2.07106754e-01 -4.22451124e-02 -3.19223374e-01 5.23643911e-01\\n-2.43879750e-01 4.08331603e-01 2.01205909e-01 -8.84252667e-01\\n4.95560527e-01 1.03606172e-01 7.17204716e-03 -3.16100448e-01\\n4.64358717e-01 -4.61003691e-01 5.49336746e-02 1.46086082e-01\\n-1.60880595e-01 -6.44245073e-02 3.24695170e-01 -1.70436770e-01\\n-2.77647436e-01 6.71607137e-01 1.63556665e-01 8.88292026e-03\\n2.66937107e-01 -2.20775336e-01 -2.19743058e-01 -1.56572342e-01\\n-1.94035515e-01 -2.05364391e-01 -3.83536667e-01 1.85088202e-01\\n-5.28821982e-02 -5.22306919e-01 -9.53096896e-02 -4.44287777e-01\\n-1.30557582e-01 -3.79058182e-01 -2.02975199e-01 3.21203202e-01\\n4.33853567e-02 1.45933598e-01 -1.13316610e-01 1.56420767e-02\\n-4.90301922e-02 -6.03468299e-01 -6.17831163e-02 1.26911968e-01\\n4.28523600e-01 3.39355379e-01 1.71158284e-01 -1.05147332e-01\\n2.26129107e-02 4.53190804e-01 -3.04319441e-01 -3.14085782e-01\\n1.35958984e-01 1.51304841e-01 2.51673963e-02 -1.96706355e-01\\n7.63176605e-02 3.70329022e-01 2.95457225e-02 4.08023037e-03\\n-7.79841514e-03 -2.07945909e-02 3.63795847e-01 -1.65872887e-01\\n-2.23852739e-01 -1.79152474e-01 3.01720779e-02 3.27635616e-01\\n-3.84498209e-01 -1.78792909e-01 5.65774858e-01 3.00352216e-01\\n-8.37727915e-03 2.11740956e-01 2.61337936e-01 -8.84048790e-02\\n-3.09285760e-01 -2.05925569e-01 1.74438387e-01 1.41874224e-01\\n1.49312511e-01 -6.18624911e-02 -2.67253608e-01 -4.92757648e-01\\n-3.70545888e+00 -1.75145358e-01 4.51356098e-02 -3.33191454e-01\\n2.75775284e-01 -1.89907745e-01 1.70324430e-01 8.68595019e-02\\n-2.99405396e-01 1.08432457e-01 -1.85475811e-01 -5.89571893e-02\\n1.10887125e-01 2.99181312e-01 2.22464874e-01 1.51464894e-01\\n7.18299206e-03 -2.05344945e-01 -5.11051528e-02 3.41718644e-01\\n-9.52382907e-02 -7.28348255e-01 1.19625255e-01 3.85021307e-02\\n1.20457783e-01 6.61793053e-02 -3.74222130e-01 -7.52567276e-02\\n-2.05438823e-01 -2.91201949e-01 5.75736463e-02 -1.76061481e-01\\n-2.19873965e-01 3.44346374e-01 1.30152524e-01 -1.49123847e-01\\n-1.55652668e-02 -2.74759382e-01 1.43121742e-02 -6.11347198e-01\\n5.34177944e-03 -6.12069249e-01 1.94613963e-01 -6.75398856e-02\\n4.96885896e-01 -2.90976763e-01 2.30536848e-01 2.08034888e-01\\n1.07845582e-01 2.14897633e-01 7.88817927e-02 -5.97029142e-02\\n-3.48980784e-01 -3.71086627e-01 -1.61017030e-01 -2.47436672e-01\\n5.12117028e-01 4.10130382e-01 -1.92550018e-01 5.92327341e-02\\n4.44644466e-02 -2.66785353e-01 -3.98478329e-01 -5.46132565e-01\\n-2.53807187e-01 9.03500244e-03 -7.82704294e-01 -4.69426453e-01\\n-4.53139469e-02 -8.54138583e-02 -1.46429867e-01 5.46790183e-01\\n-3.36801559e-01 -3.96242797e-01 3.57567631e-02 -5.05939066e-01\\n1.43684864e-01 -2.28202417e-01 1.28508732e-01 -1.51747614e-01\\n-3.67936999e-01 -3.48679811e-01 2.53284067e-01 -4.07562405e-02\\n-2.16849506e-01 -9.13586188e-03 8.00555646e-02 -1.82286590e-01\\n-3.72587740e-01 -4.15227801e-01 4.66153175e-01 1.94671117e-02\\n4.69715357e-01 3.81937958e-02 2.66449809e-01 1.65849507e-01\\n3.17319304e-01 -6.73990399e-02 1.62383169e-01 -3.85414511e-01\\n1.79283649e-01 1.07240282e-01 6.18297577e-01 -2.07874268e-01\\n1.09081268e-01 6.63672686e-02 -1.88842729e-01 -7.81591535e-02\\n5.35061419e-01 -1.32347364e-02 8.49006623e-02 -8.75882730e-02\\n3.38033080e-01 -6.07275724e-01 -2.65150607e-01 1.17672846e-01\\n9.44200233e-02 6.13503218e-01 1.19173340e-01 -4.02489305e-01\\n-2.19130918e-01 3.56717497e-01 -1.26071721e-02 -2.33864412e-01\\n-3.53765823e-02 1.35697871e-01 -2.34675512e-01 2.59641260e-01\\n4.14398238e-02 -1.02745414e-01 -3.59763771e-01 -1.06252946e-01\\n-4.67447843e-03 1.19895190e-01 2.77552038e-01 6.61204383e-02\\n-6.60742894e-02 -2.33615443e-01 -1.90102652e-01 4.89880852e-02\\n2.98529118e-01 1.81235000e-01 2.24934995e-01 -2.62540191e-01\\n-2.13816855e-02 1.65657818e-01 -2.74155170e-01 3.02139819e-01\\n-1.35436013e-01 1.42720565e-01 -5.82320452e-01 -1.70144081e-01\\n-1.51287749e-01 -1.94778919e-01 8.35760906e-02 3.25489670e-01\\n1.81200728e-01 -1.40136987e-01 1.54467430e-02 -5.23435891e-01\\n4.35875148e-01 -2.82716844e-02 1.70422569e-01 9.22565684e-02\\n2.94304453e-02 7.03125238e-01 2.95264088e-03 -1.09940767e-01\\n-1.09581277e-01 -2.67154798e-02 -2.31087551e-01 -3.07278395e-01\\n5.39803095e-02 -2.59378791e-01 -8.58666599e-02 5.35481930e-01\\n1.20779574e-01 -8.31534117e-02 -1.36404946e-01 3.87143344e-01\\n1.09270610e-01 -1.96883649e-01 -2.42362648e-01 5.10866418e-02\\n2.09193319e-01 9.68971178e-02 2.04913914e-01 -4.28164333e-01\\n-1.00052536e-01 9.71419830e-03 9.22156200e-02 4.18972433e-01\\n9.07589570e-02 1.13051079e-01 8.00696462e-02 -1.78453311e-01\\n5.67054152e-01 9.60334912e-02 -1.61276042e-01 -4.16291095e-02\\n8.18549991e-02 -2.63172269e-01 -3.66695851e-01 -1.09995067e-01\\n-9.64917988e-02 -2.23073721e-01 2.55745560e-01 5.22744097e-02\\n1.95555717e-01 -9.80728865e-02 -4.56767470e-01 -1.71233147e-01\\n-3.33397716e-01 1.05997268e-02 4.54052240e-02 -5.49170792e-01\\n7.20491707e-02 -4.02183048e-02 -5.27858436e-01 3.13907892e-01\\n-6.82210624e-02 2.87611466e-02 4.38999087e-02 1.24755196e-01\\n-2.77270526e-01 -4.56051975e-02 1.84207201e-01 4.15170975e-02\\n-3.24693471e-01 -1.89134091e-01 1.03409514e-01 -1.02677321e+00\\n1.26676291e-01 1.24714851e-01 -1.02524810e-01 9.12181381e-03\\n8.75782669e-02 -6.86721325e-01 2.37778530e-01 -4.06053632e-01\\n-7.56057398e-03 -4.57257964e-03 -2.36406073e-01 -4.07695919e-01\\n1.46696419e-01 -2.19663139e-02 -2.56065100e-01 3.84693533e-01\\n-3.89456242e-01 4.32754338e-01 1.27826676e-01 5.91984876e-02\\n1.53819114e-01 -2.34336719e-01 1.32655367e-01 -3.81609589e-01\\n-4.15430486e-01 -1.81145430e-01 -2.93640137e-01 -2.54610360e-01\\n-8.88466015e-02 -2.28400633e-01 -1.50495395e-01 -2.77552884e-02\\n3.91699553e-01 2.24117577e-01 -1.40014201e-01 -7.14004189e-02\\n6.24056756e-02 -4.05117482e-01 1.56435832e-01 -2.42518619e-01\\n-5.91115654e-02 -1.99989334e-01 2.68097073e-01 -1.71795413e-01\\n9.27866921e-02 -2.71515489e-01 5.77060580e-01 -1.37729213e-01\\n-3.95731568e-01 -1.86347678e-01 5.90676442e-02 8.92457217e-02\\n2.38279104e-01 -3.88063729e-01 -2.41003968e-02 1.94012061e-01\\n8.53145570e-02 4.54582050e-02 3.37285161e-01 -1.97537899e-01\\n-2.25930333e-01 1.92313790e-01 -7.05771923e-01 6.10249862e-02\\n6.82253838e-01 2.02412605e-01 1.93549827e-01 1.69807494e-01\\n1.01577930e-01 2.09796920e-01 4.54385430e-01 2.13664747e-03\\n-8.87271240e-02 3.08477372e-01 8.38583484e-02 -4.62562799e-01\\n-2.56530195e-01 -1.18178479e-01 -9.12429169e-02 -3.12077522e-01\\n6.00719333e-01 2.44438425e-01 -2.86056340e-01 -2.81719714e-01\\n-1.27973139e-01 -1.61838055e-01 2.74550498e-01 -8.84317979e-02\\n1.99341495e-02 -1.38268024e-01 5.38621426e-01 -2.00403202e-02\\n3.59399766e-01 4.73276496e-01 -4.53353636e-02 -2.79446363e-01\\n-6.81195483e-02 9.69032496e-02 2.03922927e-01 3.63635331e-01\\n-3.88119631e-02 1.69245183e-01 -2.68129483e-02 1.92381427e-01\\n-2.49094963e-01 6.99633658e-02 1.82192370e-01 1.35943398e-01\\n1.18421189e-01 1.13834448e-01 3.02066714e-01 3.77151072e-01\\n1.61942095e-01 4.88721550e-01 2.90234864e-01 1.17897335e-02\\n2.86609024e-01 5.61670899e-01 3.62650424e-01 2.09031664e-02\\n-1.72452368e-02 -1.34397438e-03 -6.00425759e-03 -9.80878398e-02\\n2.66844004e-01 4.00953531e-01 1.78661600e-01 7.92297542e-01\\n3.81030142e-01 4.69571769e-01 6.65763676e-01 -5.81439257e-01\\n-3.38499695e-01 7.01029450e-02 5.27422071e-01 -4.24675196e-01\\n-1.15226600e-02 2.22959548e-01 -2.94509798e-01 1.74073622e-01\\n-4.76969540e-01 -1.11876033e-01 1.64432377e-02 -2.09081516e-01\\n1.81886092e-01 -5.40319495e-02 -1.03571445e-01 1.75274074e-01\\n-1.46334127e-01 -3.06722492e-01 -2.45710105e-01 -3.27428162e-01\\n-2.81335264e-01 -3.18170637e-02 1.37376375e-02 5.17725796e-02\\n-1.01050004e-01 -3.36548805e-01 -4.33592014e-02 -7.56449997e-02\\n2.87910938e-01 -1.12311140e-01 -2.56788254e-01 -2.42934436e-01\\n6.04452938e-02 2.52319574e-01 6.51116431e-01 -5.15322722e-02\\n1.56707704e-01 -1.43173799e-01 -1.64815903e-01 -1.97396148e-02\\n1.18266575e-01 8.40550810e-02 1.19694784e-01 5.36740124e-01\\n-3.47601354e-01 -1.06118089e-02 1.81385696e-01 2.85657704e-01\\n-2.80745924e-01 7.72655103e-03 -4.40036133e-02 1.13661341e-01\\n8.68786722e-02 1.48535371e-01 -2.95798182e-01 1.02083266e-01\\n-2.39531070e-01 -6.30290270e-01 4.37041938e-01 -2.70404428e-01\\n-2.07981914e-01 1.77585948e-02 2.69734651e-01 2.63415247e-01\\n-1.60903558e-01 -3.98087054e-02 -2.11894643e-02 2.90844679e-01\\n-1.82208642e-02 4.13718879e-01 -2.04718992e-01 -1.17175870e-01\\n-3.15127075e-01 3.56620342e-01 7.70842209e-02 2.77343035e-01\\n-6.69359639e-02 4.67369735e-01 -4.68422361e-02 2.11542517e-01\\n1.95739999e-01 -1.32849231e-01 -3.22134405e-01 -2.83049375e-01\\n-2.95024723e-01 -1.34278312e-01 1.27348751e-01 -8.67331624e-02\\n2.76996523e-01 -2.31331080e-01 -8.70255977e-02 -2.02845186e-01\\n-1.96796685e-01 -4.12543774e-01 -8.97406414e-02 9.64909419e-02]]',\n", + " \"Job Informationen Key responsibilities: - Technical ownership of our's ETL processes, Master Data Management and Infomatica PowerCenter application - Design and development of backend data integration - Act as SME with third parties providing design, development and support services - Integrate with the existing middleware, data sources and the bank’s DWH solution - Build and improve data integration architecture and drive simplification - Provide change and project support for initiatives related to backend data integration - Liaise with business stakeholders and data owners of respective systems - Liaise with production support and operations teams for the all ETL flows Your profile: - Experience with ETL tools such as Infomatica PowerCenter, or similar - Advanced knowledge of PL/SQL, and different database technologies is a plus - Experience with Application Lifecycle Management - Deep knowledge of data types, data architecture disciplines and MDM concepts - Knowledge of Data infrastructure and migration principles in theory and practice - Solid experience with data modeling and database design for operational as well as analytical systems - Experience with different integration patterns, batch, online, asynchronous, etc. - Basic knowledge of both Windows and Linux operating systems and shell scripting - Working proficiency in development toolsets, e.g. Eclipse or similar - Proficiency in one or more general purpose programming languages understanding of software skills such as -business analysis, development, maintenance and software improvement - Experience in Data Warehousing environment, experience in handling large volume of data is a plus - Ability to work and technically coordinate with 3rd party vendors (both onsite and offshore) - Work experience in financial or banking industry is a plus - Team player with good communication skills and an open style to provide transparency to management - ITIL 3.0 foundation certification - English and german spoken and written Benötigte Skills Englisch ITIL Banken / Finanzgesellschaften Datawarehouse Eclipse W2008 W2012 Linux Shell-Scripts PL/SQL ETL\",\n", + " '[\"Coordinating\", \"Verbal Communication Skills\", \"Operations\", \"Integration\"]',\n", + " '[\"PL/SQL\", \"Tooling\", \"KM Programming Language\", \"Shell Script\", \"Joint Application Design (JAD)\", \"Application Lifecycle Management\", \"Data Modeling\", \"Pentaho Data Integration\", \"Analytics\", \"Middleware\", \"Operating System Development\", \"Data Integration\", \"Industrialization\", \"Data Warehousing\", \"Offshoring\", \"ITIL Security Management\", \"Apex Data Loader\", \"Linux\", \"E (Programming Language)\", \"Eclipse (Software)\", \"Extract Transform Load (ETL)\", \"Database Design\", \"Academic Support Services\", \"Lifecycle Management\", \"Natural Language Understanding\", \"Production Support\", \"Business Analysis\", \"Clinical Data Management\", \"Data Infrastructure\", \"Transparency (Human-Computer Interaction)\", \"Process Safety Management\", \"Banking\", \"Custom Backend\", \"Acceptance and Commitment Therapy (ACT)\", \"Source Data\"]',\n", + " \"['English', 'Albanian']\"],\n", + " ['84',\n", + " 'software engineer .net / c#',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-9.92792398e-02 3.02440435e-01 2.93507308e-01 -1.08191818e-01\\n5.06818295e-01 -1.45451322e-01 -2.83627659e-02 4.52165246e-01\\n-9.99013036e-02 -4.81435567e-01 -4.60295333e-03 -2.95293808e-01\\n5.45937829e-02 9.21726972e-02 -1.24952262e-02 4.09118265e-01\\n3.21383029e-01 9.80194211e-02 -1.50388926e-01 3.37944984e-01\\n1.17071971e-01 -9.27732289e-02 1.34574592e-01 7.16347098e-01\\n3.26944977e-01 7.60269240e-02 1.65419318e-02 9.98060033e-02\\n-3.03879976e-01 -3.05884153e-01 3.57515484e-01 -1.09661967e-02\\n-1.15472168e-01 -2.60320991e-01 3.78614217e-02 -1.11793699e-02\\n-1.91863075e-01 -2.04496175e-01 -6.50389760e-04 2.56601006e-01\\n-4.90801007e-01 -2.30398163e-01 -1.87893352e-03 -7.07228631e-02\\n-2.02902079e-01 -3.97066236e-01 4.56921570e-03 7.87469093e-03\\n1.65744722e-01 9.18754488e-02 -4.24535960e-01 3.10820043e-01\\n-2.39468738e-01 -2.47470289e-01 3.26427042e-01 5.25489151e-01\\n-1.09401233e-01 -3.77189338e-01 -4.29033875e-01 -2.22576618e-01\\n1.36895180e-01 -1.35448277e-01 1.13560222e-01 -2.40768999e-01\\n4.79747623e-01 9.76771414e-02 1.03647560e-01 3.52380991e-01\\n-7.00875401e-01 -1.08083203e-01 -2.92143226e-01 -6.64569587e-02\\n-3.50218803e-01 -1.49245381e-01 -1.84639826e-01 -1.73950553e-01\\n-1.39173895e-01 2.93264151e-01 7.07579171e-03 -5.94026223e-02\\n-1.29984543e-01 3.34661514e-01 -2.60381907e-01 2.80472845e-01\\n1.49493128e-01 2.96959370e-01 1.79483756e-01 3.48495215e-01\\n-4.34529215e-01 4.06856805e-01 1.58552185e-01 -3.26237142e-01\\n2.16163054e-01 2.55920570e-02 5.62994182e-01 -7.84547813e-03\\n1.98813051e-01 6.81903288e-02 -2.65678346e-01 3.92195851e-01\\n2.11085662e-01 -1.43480211e-01 1.22612035e-02 -3.46103571e-02\\n-9.55586433e-02 -1.52626717e-02 8.71113539e-02 3.00650179e-01\\n-2.19212756e-01 5.38213134e-01 3.54385450e-02 -2.43112355e-01\\n-1.26074404e-01 -6.76766455e-01 -1.25667483e-01 2.58911345e-02\\n4.56421413e-02 1.01657823e-01 1.79050252e-01 2.69130796e-01\\n6.26400039e-02 1.34774083e-02 1.99629098e-01 8.70843291e-01\\n-2.94865724e-02 6.75146058e-02 -3.11158597e-01 3.19198728e-01\\n1.20472573e-01 -3.30863595e-01 1.83239564e-01 2.58024693e-01\\n1.24483474e-01 -1.90264165e-01 -1.01461858e-01 2.71425277e-01\\n-1.27561642e-02 -3.44702780e-01 -5.13710499e-01 2.18953714e-01\\n-1.92485258e-01 -3.48596573e-01 5.47225833e-01 6.55348226e-02\\n1.00360848e-01 -5.64756617e-02 -1.01444319e-01 -8.24920833e-02\\n-1.53602406e-01 2.41212532e-01 -3.88431037e-03 4.09206897e-02\\n-2.39489049e-01 -2.46235579e-01 -1.54919729e-01 2.26415977e-01\\n-1.18932694e-01 1.77388310e-01 -9.28899571e-02 -5.35358451e-02\\n3.87122244e-01 -1.80182997e-02 -2.02726379e-01 3.70975286e-01\\n-7.49003962e-02 -3.26031409e-02 -9.98760387e-02 3.02706450e-01\\n-1.39056265e-01 1.29874259e-01 -5.76992370e-02 -2.06186056e-01\\n5.35425961e-01 -8.31792802e-02 1.24702938e-01 -1.24682009e-01\\n2.62772083e-01 -1.70889065e-01 1.44849807e-01 9.93491411e-02\\n-6.30240798e-01 3.54824156e-01 -1.67906195e-01 -9.50298756e-02\\n1.28556922e-01 2.79553831e-02 2.95487612e-01 -1.96520224e-01\\n4.27392982e-02 -6.99248239e-02 -2.97956407e-01 -4.28120106e-01\\n-2.37346858e-01 -7.37571940e-02 4.21883821e-01 -3.87281597e-01\\n-2.61026233e-01 1.82606593e-01 -6.21342778e-01 5.04610464e-02\\n1.05690822e-01 1.82406157e-01 1.45458639e-01 1.95994675e-01\\n-2.02969611e-01 -6.13152981e-01 1.13049187e-01 -4.26712573e-01\\n-3.28846216e-01 1.94554567e-01 -1.70200720e-01 2.41298631e-01\\n1.67999804e-01 7.27064610e-02 -1.15538068e-01 1.73204377e-01\\n-2.26201564e-01 2.39415392e-02 1.66045770e-01 1.11981332e-01\\n2.52777606e-01 1.43940095e-02 -5.00443816e-01 3.82524014e-01\\n-4.21463214e-02 4.19871658e-01 1.20110735e-01 -8.87905777e-01\\n4.60566849e-01 2.74368703e-01 2.39541698e-02 -3.11836004e-01\\n7.19428003e-01 -2.10369974e-01 6.78024888e-02 2.18095943e-01\\n-4.70186621e-01 -2.31062368e-01 2.02345118e-01 -2.08549216e-01\\n-2.50685811e-01 5.87981701e-01 1.81499973e-01 3.69478874e-02\\n3.76958907e-01 -2.49582380e-01 -2.07873538e-01 8.90970603e-02\\n-1.16772138e-01 -2.36619517e-01 -4.46220279e-01 -7.88937807e-02\\n1.41607216e-02 -4.26716864e-01 -1.55776262e-01 -4.25697088e-01\\n-1.92750573e-01 -2.93899953e-01 -2.00445279e-01 3.29781145e-01\\n1.65980607e-01 2.22535700e-01 2.63799094e-02 -2.49449606e-03\\n-1.60850257e-01 -5.82212269e-01 -8.41839835e-02 1.55452952e-01\\n3.94902557e-01 2.10016876e-01 -1.49612082e-03 2.80005299e-02\\n-6.17667735e-02 5.82838655e-01 -2.26760551e-01 -2.07745537e-01\\n9.56567302e-02 1.71212405e-01 2.20645908e-02 -1.43818697e-02\\n-6.43486204e-03 3.02629173e-01 -1.44753233e-01 3.94731797e-02\\n-3.54542807e-02 9.45726223e-03 4.04148132e-01 1.64171606e-01\\n-3.21201384e-01 -3.14562291e-01 -3.13741602e-02 1.58195630e-01\\n-5.70610106e-01 -2.66773403e-01 5.81016719e-01 1.77503645e-01\\n2.37202987e-01 1.63134843e-01 2.37349659e-01 -5.65502085e-02\\n-1.87081784e-01 -2.20145702e-01 1.65878087e-01 1.51274338e-01\\n1.96459517e-02 6.76173121e-02 -1.80120304e-01 -4.51435775e-01\\n-3.56853056e+00 -1.27779037e-01 1.58544391e-01 -2.83877701e-01\\n2.08782911e-01 7.28474976e-03 5.12679107e-02 -8.80943835e-02\\n-3.47053707e-01 -7.09132403e-02 -2.56954461e-01 -1.38627321e-01\\n1.88189134e-01 2.64205158e-01 1.16793528e-01 3.68056327e-01\\n1.61195382e-01 -2.15088561e-01 -1.38881728e-01 3.99353594e-01\\n-9.87268984e-02 -6.25644743e-01 1.67025968e-01 -1.19551547e-01\\n3.10436159e-01 3.22106242e-01 -3.39578331e-01 -4.54219729e-02\\n-2.98300564e-01 -2.06109866e-01 1.91983953e-01 -2.49553800e-01\\n-1.18635274e-01 2.99056619e-01 2.22387642e-01 -1.28972441e-01\\n1.44720554e-01 -3.52144480e-01 -4.55714791e-04 -4.45358604e-01\\n9.44341645e-02 -5.90447545e-01 -8.65280703e-02 -7.78041184e-02\\n7.08136976e-01 -3.95755678e-01 4.67173532e-02 8.33043829e-02\\n1.53695926e-01 2.74274170e-01 5.82570247e-02 -1.27358750e-01\\n-1.31815344e-01 -3.02455157e-01 -6.33862913e-02 -2.48671949e-01\\n4.71121788e-01 4.79167372e-01 -2.05014274e-01 -7.97019154e-02\\n5.65407574e-02 -2.06232816e-01 -4.89301831e-01 -3.92650872e-01\\n-1.88386813e-01 -1.61853567e-01 -6.51055217e-01 -5.30617595e-01\\n-1.30264536e-01 -1.38559282e-01 -1.45420507e-01 5.96325815e-01\\n-4.35823709e-01 -4.70391631e-01 -5.37393540e-02 -4.06250864e-01\\n3.93221825e-02 -3.35363984e-01 -2.91724154e-03 -1.29005641e-01\\n-3.08080226e-01 -4.60069865e-01 8.41798261e-02 5.65423332e-02\\n-6.26297519e-02 -1.25808492e-01 1.02316529e-01 -3.61366987e-01\\n-2.84633279e-01 -4.03639644e-01 4.21877027e-01 1.33073747e-01\\n2.16754198e-01 2.37420410e-01 1.35448441e-01 1.67176515e-01\\n2.50321656e-01 -2.45293304e-01 -5.82627393e-02 -4.06594634e-01\\n2.40251049e-01 5.55065693e-03 5.50934851e-01 -2.48899326e-01\\n3.92021909e-02 7.45715424e-02 -1.60137311e-01 -1.65741727e-01\\n3.47865194e-01 6.38878420e-02 1.35614336e-01 -3.31353128e-01\\n3.04891557e-01 -4.71684754e-01 -2.33419642e-01 7.56686702e-02\\n6.90506473e-02 5.18831968e-01 4.38452996e-02 -4.34698582e-01\\n-9.49599519e-02 3.70570302e-01 -1.23373151e-01 -1.28642961e-01\\n-1.15767725e-01 1.40559748e-01 -2.65383601e-01 2.32562482e-01\\n-2.45755054e-02 -4.08948064e-02 -2.71634638e-01 -1.42405063e-01\\n-7.71233737e-02 4.59765166e-01 2.89701462e-01 1.43590063e-01\\n3.10109043e-03 -3.66315424e-01 -1.00613467e-01 1.57489210e-01\\n2.84583092e-01 3.38530034e-01 1.63200349e-01 -3.13827097e-01\\n6.73453361e-02 3.49921614e-01 -1.86435238e-01 1.37680098e-01\\n-2.57868499e-01 1.07162772e-02 -4.19338256e-01 -3.14184070e-01\\n-1.82605386e-01 -2.46515930e-01 4.79922369e-02 2.19704166e-01\\n1.38344795e-01 -2.69144922e-02 -2.61929128e-02 -3.17524105e-01\\n2.60890216e-01 8.02530274e-02 3.31840813e-01 3.07863086e-01\\n-3.49721126e-02 6.12751067e-01 3.90235558e-02 -1.87835768e-01\\n-1.19121827e-01 -6.77262619e-02 -1.66545346e-01 -6.92091435e-02\\n-6.01633415e-02 -3.77031773e-01 -1.18513033e-01 3.76708865e-01\\n4.28020656e-02 -2.40220338e-01 -1.44857883e-01 3.45459342e-01\\n-8.11017454e-02 -2.92915702e-01 -4.49677333e-02 1.11919574e-01\\n3.31355542e-01 1.65282398e-01 1.81507960e-01 -5.26488960e-01\\n-1.61728516e-01 -7.56532373e-03 -1.36027753e-01 5.28204203e-01\\n1.18960217e-01 1.70437470e-01 -1.48995996e-01 -3.04370701e-01\\n3.93230319e-01 -2.30085135e-01 -9.02308747e-02 -9.18778707e-04\\n5.45024686e-03 -1.16150968e-01 -3.98486882e-01 5.03868461e-02\\n-1.05488151e-01 -1.80154696e-01 1.75633118e-01 7.33099282e-02\\n9.89163294e-02 1.26921609e-01 -6.10801578e-01 -2.85899580e-01\\n-2.97490686e-01 -1.14222996e-01 -2.14459840e-02 -4.42214519e-01\\n2.64978483e-02 -1.13545135e-01 -5.23676991e-01 2.95858860e-01\\n-1.15508206e-01 2.50771232e-02 6.46409467e-02 2.52197571e-02\\n-4.25169230e-01 -1.62784547e-01 1.43602014e-01 2.01348186e-01\\n-1.49935588e-01 -1.47018164e-01 1.55035174e-02 -9.51423466e-01\\n2.23741189e-01 -1.70554370e-01 -1.36457428e-01 3.76077630e-02\\n7.02474266e-02 -5.38722694e-01 1.18600197e-01 -3.86079490e-01\\n-9.77541059e-02 -2.00070683e-02 -1.97883010e-01 -5.06156862e-01\\n1.19607255e-01 6.45912811e-02 -1.98032394e-01 4.02081639e-01\\n-3.92433435e-01 3.06132406e-01 -1.04729615e-01 1.34002462e-01\\n5.17867431e-02 -4.34011221e-01 1.97102442e-01 -4.05072153e-01\\n-4.64874238e-01 -1.70090064e-01 -1.96508735e-01 -1.69086531e-01\\n3.38316374e-02 -3.04924965e-01 -2.44207412e-01 2.17002049e-01\\n2.26238728e-01 9.04318988e-02 -1.64959446e-01 -1.21952474e-01\\n5.14602587e-02 -3.99567097e-01 1.48644865e-01 -2.75584795e-02\\n-1.28691196e-01 -1.58707008e-01 1.59985393e-01 9.33140889e-02\\n4.28211465e-02 -4.28672552e-01 4.59918708e-01 -2.77401596e-01\\n-2.97024995e-01 -1.28291976e-02 1.03405431e-01 -2.71611884e-02\\n4.07766074e-01 -5.17943203e-01 -9.86272469e-02 3.53770882e-01\\n1.18719220e-01 2.00392962e-01 2.09638551e-01 -2.13602200e-01\\n-1.88507244e-01 2.56735802e-01 -2.88646162e-01 1.37570798e-01\\n7.49004900e-01 9.78349298e-02 2.63147533e-01 8.77802595e-02\\n1.55886799e-01 3.03018153e-01 4.03878987e-01 1.16627455e-01\\n-2.13950396e-01 3.02131563e-01 1.62011325e-01 -5.74915051e-01\\n3.59673724e-02 1.25765786e-01 -1.82403222e-01 -4.13991272e-01\\n5.80151856e-01 4.01018888e-01 -2.86447555e-01 -1.92622393e-01\\n-9.64180008e-02 -1.16830967e-01 5.90558276e-02 -8.15991461e-02\\n4.45071943e-02 -2.52080917e-01 5.46560884e-01 -4.22888845e-02\\n1.25141814e-01 5.11046112e-01 -1.77351177e-01 -4.20543462e-01\\n-8.38613212e-02 1.77586854e-01 8.72699693e-02 4.43351328e-01\\n-1.24151155e-01 2.42405221e-01 -4.18838486e-02 1.73418000e-01\\n-1.07705466e-01 7.71391392e-02 7.70581141e-02 5.57051264e-02\\n-7.84710608e-03 2.30685383e-01 4.00819927e-01 5.53932309e-01\\n4.86630470e-01 5.49709082e-01 3.05746704e-01 6.91661611e-02\\n5.94136298e-01 4.73845720e-01 4.19430077e-01 1.81364343e-01\\n3.13642994e-02 -2.82146111e-02 5.97044639e-02 1.31985366e-01\\n3.75363261e-01 3.56043786e-01 4.59392332e-02 9.70516682e-01\\n3.85935575e-01 1.02138527e-01 6.52064621e-01 -6.19134724e-01\\n-1.99751556e-01 8.58900174e-02 3.50889772e-01 -4.00779754e-01\\n-1.62220538e-01 6.79228306e-02 -3.14699590e-01 1.10510521e-01\\n-4.59171951e-01 -2.26158082e-01 -2.13220969e-01 1.78837463e-01\\n1.57201380e-01 -1.37907937e-01 -2.35267684e-01 -6.31628335e-02\\n1.99365690e-02 -1.26534924e-01 -4.97254670e-01 -9.77690443e-02\\n-2.95279622e-01 -1.76902622e-01 3.95228826e-02 -1.87544450e-01\\n8.66327658e-02 -3.41447651e-01 -1.42552018e-01 2.93195173e-02\\n4.01285380e-01 -5.63664101e-02 2.55399086e-02 -7.43465424e-02\\n1.64280191e-01 3.92874300e-01 5.51721394e-01 -1.09978966e-01\\n-8.74401443e-03 -1.34294927e-01 -1.45575836e-01 3.82828042e-02\\n7.80042782e-02 1.16064574e-03 3.66127156e-02 3.67331922e-01\\n-3.24460834e-01 -3.87571156e-02 -3.92331220e-02 4.67310846e-01\\n-5.11676729e-01 5.03148660e-02 -4.40377332e-02 3.40674073e-01\\n2.01118290e-02 9.96843800e-02 -3.60680401e-01 1.11627854e-01\\n-2.21932948e-01 -4.01663095e-01 2.27361828e-01 -5.17902449e-02\\n-8.45997408e-02 7.03747282e-05 1.21491097e-01 1.33008480e-01\\n-3.48672867e-01 -7.62473345e-02 -4.53545228e-02 3.01453054e-01\\n1.36481494e-01 3.79236400e-01 -3.80460799e-01 -1.88666850e-01\\n-2.60343015e-01 1.93253621e-01 -5.41642532e-02 8.80732909e-02\\n-6.69403002e-02 2.07151935e-01 1.34626925e-01 1.82960257e-01\\n3.09478402e-01 -5.70749417e-02 -1.61056936e-01 -2.82105595e-01\\n-1.41373724e-01 -3.23833525e-01 1.11215591e-01 -5.97021058e-02\\n3.11277926e-01 -3.75216901e-01 -1.24083072e-01 -1.36315241e-01\\n-2.10162565e-01 -4.01246727e-01 3.36394436e-03 -1.00600451e-01]]',\n", + " 'About our client Our client is a Swiss medtech company with technologies and ideas that look at functional movement therapy from a completely different angle. Because they enable independent exercise and create maximum motivation, because they challenge people to take courage and support their hopes with personal achievements. Your responsibilities You take a significant part in the creation of the software architecture of our client Work in multidisciplinary projects with the internal departments Mechanical and Electrical Engineering, Technical Projects, Product Management as well as the Service and Manufacturing departments focuses the development of our therapy devices in particular on clinical application and usability aspects Your profile You got a bachelor in Computer Science good knowledge of the .NET platform, including C#, WPF and WCF understanding of relational and non-relational databases some years of experience with Software Architecture, Service Oriented Design and Software development processes experience in Version Control Systems and Application Lifecycle Management very good English skills, German skills are a plus Your chance Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 486',\n", + " '[\"\"]',\n", + " '[\"Control Systems\", \"Usability\", \"Relational Databases\", \"Software Development\", \"Version Control\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Product Management\", \"Software Architecture\", \"Computer Science\", \"Application Lifecycle Management\", \"Personalization\", \"Wcf 4\", \"Service-Oriented Modeling\", \"Lifecycle Management\", \"Mechanicals\"]',\n", + " \"['English', 'Japanese', 'Bislama', 'Guarani']\"],\n", + " ['100',\n", + " 'machine learning software engineer',\n", + " 'Zürich',\n", + " 'Research & Development',\n", + " '',\n", + " '[[-3.22625816e-01 3.33112717e-01 4.52924252e-01 3.52539010e-02\\n5.47838271e-01 -2.28002280e-01 -4.55991998e-02 3.76447380e-01\\n-8.65315795e-02 -3.89616251e-01 -1.97276026e-01 -2.42429733e-01\\n-6.10692427e-02 6.09999672e-02 1.51485503e-01 4.84913617e-01\\n2.86018014e-01 5.01429364e-02 -1.70546263e-01 4.25948262e-01\\n1.52440473e-01 -1.16547421e-01 -4.21427041e-02 7.02703238e-01\\n3.97897035e-01 2.84451880e-02 -9.25158933e-02 -8.14431608e-02\\n-3.22459817e-01 -2.54069686e-01 4.96454418e-01 -2.93471888e-02\\n-7.62540922e-02 -3.94513547e-01 1.69230118e-01 1.29330114e-01\\n-2.46572852e-01 -5.82617000e-02 -9.77169126e-02 2.90166229e-01\\n-4.27152514e-01 -1.96198508e-01 -2.82067284e-02 -2.92064212e-02\\n-2.65888572e-01 -3.69894207e-01 8.80088434e-02 -6.96070641e-02\\n1.70499042e-01 8.48460495e-02 -5.95553875e-01 2.93091565e-01\\n-3.02707642e-01 -2.86939681e-01 3.41132373e-01 6.21420264e-01\\n9.08176154e-02 -5.71678102e-01 -4.96494740e-01 -3.24884951e-01\\n7.03406483e-02 9.75353550e-03 8.61043483e-02 -2.72167832e-01\\n3.07714283e-01 6.11423664e-02 6.87452182e-02 4.06307071e-01\\n-7.75700331e-01 -2.15553865e-01 -1.80246487e-01 1.52545571e-01\\n-3.49744111e-01 -9.42434371e-03 -2.53751338e-01 -1.56496242e-01\\n-1.12890601e-01 4.82029557e-01 -4.96412739e-02 1.22485615e-01\\n-1.47245184e-01 3.42353135e-01 -1.57667965e-01 2.43411422e-01\\n2.42252216e-01 1.89640567e-01 3.09183240e-01 3.39900255e-01\\n-3.73832405e-01 3.77201796e-01 2.10184962e-01 -2.64790326e-01\\n2.48795301e-01 1.47673965e-01 3.98199379e-01 7.19643682e-02\\n1.48380280e-01 1.42484277e-01 -3.09018791e-01 1.70877129e-01\\n1.43355414e-01 -1.86620682e-01 8.37099329e-02 -7.72920549e-02\\n-4.52560745e-03 6.16421103e-02 5.07850498e-02 2.76695848e-01\\n-4.03555274e-01 4.33569670e-01 6.79393709e-02 -2.33502015e-01\\n-1.00413144e-01 -6.80732846e-01 -3.22376713e-02 6.12462200e-02\\n5.32555953e-02 8.80275890e-02 2.36167192e-01 1.87875181e-01\\n2.73943275e-01 -8.78051519e-02 2.61031806e-01 8.17635596e-01\\n-4.72094193e-02 -2.46806070e-02 -2.18415201e-01 3.30004036e-01\\n7.83068985e-02 -2.46936068e-01 2.15660959e-01 1.87187701e-01\\n-2.24956647e-02 -6.70873970e-02 -2.21952885e-01 3.63291711e-01\\n-1.47620559e-01 -2.31677026e-01 -2.61106193e-01 2.65189320e-01\\n-5.98174408e-02 -4.15055931e-01 5.56283593e-01 -4.33514379e-02\\n2.03015715e-01 -1.35415614e-01 2.55813971e-02 -1.40815333e-01\\n-8.98338407e-02 2.52024114e-01 9.21302661e-02 1.23844974e-01\\n-2.89417446e-01 -3.49989027e-01 -2.00177819e-01 1.58439115e-01\\n-2.45057851e-01 1.26774803e-01 -6.29183054e-02 -7.21169040e-02\\n2.74072617e-01 6.64618015e-02 -4.47570652e-01 2.10469663e-01\\n-7.21503794e-02 -8.29077959e-02 -8.59995261e-02 2.75797486e-01\\n-2.93421507e-01 2.53080964e-01 -1.57044441e-01 -1.31311998e-01\\n6.18529856e-01 6.30268902e-02 2.67122507e-01 8.32424909e-02\\n3.32832456e-01 -1.82992935e-01 2.35399798e-01 7.28355795e-02\\n-6.47379160e-01 3.39924604e-01 -6.96159676e-02 -1.76996276e-01\\n1.50788009e-01 -6.52457848e-02 4.02419806e-01 -3.99301708e-01\\n4.23512980e-02 -1.76762283e-01 -3.77013922e-01 -3.90612781e-01\\n-1.38292208e-01 -4.55253012e-03 3.48626733e-01 -3.35274756e-01\\n-1.02410972e-01 1.31237820e-01 -5.66043854e-01 -1.37590781e-01\\n2.25182906e-01 1.69641361e-01 1.34779394e-01 1.64307356e-01\\n-1.70788884e-01 -5.86933851e-01 3.75177041e-02 -5.14832139e-01\\n-3.32851887e-01 1.17516086e-01 -2.80529946e-01 2.38662899e-01\\n-9.71932895e-03 -5.29624112e-02 -7.08406717e-02 1.13725357e-01\\n-3.20554852e-01 -5.60691878e-02 2.03177035e-01 9.17061977e-03\\n2.70829022e-01 1.08943351e-01 -3.45430225e-01 4.56163943e-01\\n-1.87294394e-01 5.38919091e-01 1.47070587e-01 -8.31342936e-01\\n5.59469223e-01 3.13948721e-01 -5.58733344e-02 -3.43235254e-01\\n4.79274243e-01 -4.00877506e-01 -5.58704808e-02 1.51772663e-01\\n-3.87377858e-01 -2.80476034e-01 2.53800601e-01 -2.78361291e-01\\n-2.81463563e-01 5.75637341e-01 9.14451554e-02 1.07370883e-01\\n3.37154686e-01 -1.80153221e-01 -1.20615274e-01 8.44265372e-02\\n-7.07583949e-02 -1.86067492e-01 -5.26866555e-01 2.87042018e-02\\n-4.82162461e-02 -5.52793741e-01 -2.08381623e-01 -3.32626224e-01\\n-1.99947551e-01 -2.82925427e-01 -2.52881765e-01 2.00756013e-01\\n2.04420000e-01 9.10955071e-02 1.83544904e-02 2.61773653e-02\\n-1.15250438e-01 -5.92531860e-01 1.62904970e-02 8.11954439e-02\\n3.75394076e-01 3.38145077e-01 8.01910013e-02 -5.57595566e-02\\n3.50869820e-02 5.96170545e-01 -3.52658510e-01 -2.73097456e-01\\n1.67413682e-01 1.10639408e-01 1.00669228e-02 -1.16643965e-01\\n9.56830382e-02 2.59241343e-01 -2.37467945e-01 9.81889442e-02\\n-6.57907873e-02 -7.92741776e-04 3.36579531e-01 -1.05198823e-01\\n-1.93985954e-01 -1.51368320e-01 -1.36361450e-01 1.82038486e-01\\n-5.21708310e-01 -1.60981879e-01 5.31008303e-01 1.46147728e-01\\n2.23285288e-01 1.87725797e-01 2.13452756e-01 1.77565049e-02\\n-3.58698726e-01 -2.85638541e-01 1.79310322e-01 1.36921391e-01\\n9.31749642e-02 9.06088427e-02 -2.25700848e-02 -6.66758299e-01\\n-2.77519655e+00 -1.10337332e-01 1.66860580e-01 -3.29161227e-01\\n2.17140377e-01 -9.32429284e-02 1.44879431e-01 2.86290012e-02\\n-3.74704540e-01 -4.20185365e-02 -1.38717085e-01 -2.31251165e-01\\n1.41163275e-01 3.19540918e-01 1.53108388e-01 1.79332823e-01\\n1.77289650e-01 -3.01470816e-01 -4.21848670e-02 3.64568651e-01\\n-1.51831150e-01 -7.21845388e-01 1.70545086e-01 -1.09993899e-02\\n2.53006727e-01 3.03034425e-01 -5.17640531e-01 -2.71943510e-02\\n-2.79538572e-01 -2.09871501e-01 8.48889276e-02 -2.38223538e-01\\n-2.32455939e-01 3.75519812e-01 1.09415308e-01 -7.56478831e-02\\n2.76149791e-02 -3.55870277e-01 -1.13731958e-01 -5.31487942e-01\\n1.60500422e-01 -6.68777049e-01 2.65172422e-02 -1.69474214e-01\\n6.86714292e-01 -2.70088643e-01 2.14812130e-01 1.82247490e-01\\n2.10063368e-01 1.25926048e-01 3.93582284e-02 6.15160465e-02\\n-2.85141230e-01 -2.71826684e-01 -1.28897922e-02 -2.36822098e-01\\n5.38971186e-01 4.65720236e-01 -1.80322409e-01 4.98766750e-02\\n2.25087598e-01 -3.34879756e-01 -4.40528959e-01 -2.62675107e-01\\n-1.88246936e-01 -1.56823218e-01 -6.92398310e-01 -4.13495183e-01\\n-1.30033582e-01 -1.74239069e-01 -1.02006376e-01 6.72174275e-01\\n-2.98293412e-01 -2.59953916e-01 -4.24452405e-03 -5.75410008e-01\\n1.99369133e-01 -1.94201767e-01 1.08116962e-01 -2.30487645e-01\\n-2.14138508e-01 -4.74923044e-01 1.33092105e-01 1.00157000e-02\\n-1.93718731e-01 -1.62506729e-01 -1.77620798e-02 -1.71441704e-01\\n-3.43611836e-01 -5.86036921e-01 3.44925344e-01 1.20492041e-01\\n3.96972626e-01 4.69363779e-02 3.34340870e-01 -1.11382455e-02\\n3.60106289e-01 -3.13037038e-02 6.22436777e-03 -3.70883584e-01\\n1.79541141e-01 8.82214960e-03 5.56302130e-01 -2.44292930e-01\\n1.27780493e-02 7.05853626e-02 -2.82580554e-01 -1.36823833e-01\\n3.88727278e-01 -2.23391242e-02 6.19570166e-02 -1.66202426e-01\\n2.05229357e-01 -4.58747149e-01 -1.30375311e-01 1.65230200e-01\\n4.43131179e-02 6.77523375e-01 -4.16008942e-02 -4.21186328e-01\\n-1.83238894e-01 3.16430569e-01 -6.59267008e-02 -8.21967870e-02\\n-7.46318474e-02 9.77431089e-02 -2.15143725e-01 1.91480279e-01\\n3.06648500e-02 -1.66869521e-01 -2.76122332e-01 -7.78544247e-02\\n-1.46408796e-01 3.23852718e-01 2.02291578e-01 1.14144728e-01\\n-5.57592325e-02 -3.83589447e-01 -9.61961821e-02 2.08677620e-01\\n2.09923089e-01 4.64028478e-01 1.69972360e-01 -1.89862594e-01\\n4.54692133e-02 3.93027455e-01 -1.45257831e-01 2.45924011e-01\\n-3.09919655e-01 1.75551698e-01 -5.66761136e-01 -2.70698786e-01\\n-2.71877080e-01 -3.03254485e-01 1.16155580e-01 3.76809895e-01\\n1.51557207e-01 -1.68129764e-02 9.53474641e-02 -3.95244837e-01\\n2.83897728e-01 5.20509332e-02 1.40660033e-01 8.00021589e-02\\n-3.94861028e-02 5.74023128e-01 5.09581864e-02 -2.03370988e-01\\n-7.99093693e-02 -4.69647944e-02 -1.80905282e-01 -3.05113494e-01\\n9.87422466e-02 -4.90737885e-01 -1.66682899e-01 4.42647755e-01\\n1.23492286e-01 -1.92200273e-01 -1.95188433e-01 2.18507081e-01\\n4.89884876e-02 -2.89364845e-01 -3.24387193e-01 4.84060012e-02\\n2.61976510e-01 4.68968824e-02 2.73760647e-01 -5.56879044e-01\\n-1.26709258e-02 -2.56102979e-02 1.69508532e-02 4.04951125e-01\\n2.11294182e-02 6.09982572e-02 -2.00466603e-01 -1.17686883e-01\\n5.97051084e-01 -6.98316693e-02 -5.69114387e-02 6.60267025e-02\\n1.42910182e-01 -1.70416787e-01 -4.80897933e-01 5.22442907e-02\\n-9.41925347e-02 -1.21526226e-01 2.41203755e-02 8.53441432e-02\\n1.65352017e-01 7.04902634e-02 -4.88290489e-01 -1.86702341e-01\\n-2.39456803e-01 -4.94838655e-02 -1.20175853e-02 -4.62429106e-01\\n-4.89787236e-02 -8.33494663e-02 -6.09166503e-01 2.25659162e-01\\n-1.58647880e-01 -3.67948674e-02 2.66746104e-01 3.21435146e-02\\n-2.80413896e-01 -1.56015754e-01 3.99671681e-02 2.17584133e-01\\n-3.43022466e-01 -3.79607767e-01 4.60075289e-02 -9.84329522e-01\\n2.25995094e-01 -6.46049902e-03 -1.35461912e-01 8.05633217e-02\\n-1.11532092e-01 -7.15237141e-01 1.51123598e-01 -4.37641591e-01\\n-8.37169439e-02 8.60385597e-04 -2.95032054e-01 -3.49341452e-01\\n9.68855023e-02 -1.02252796e-01 -3.19345236e-01 3.00913244e-01\\n-3.52333456e-01 3.30781519e-01 -1.37406647e-01 5.24273142e-02\\n2.41376664e-02 -2.55426466e-01 1.65821537e-01 -3.01188260e-01\\n-3.95204961e-01 -1.82450891e-01 -2.64464259e-01 -3.27495158e-01\\n-3.50806713e-02 -2.43990958e-01 -5.17659411e-02 4.33811322e-02\\n3.10863435e-01 1.02716655e-01 -1.78452179e-01 -2.85352111e-01\\n1.33632943e-01 -5.70511639e-01 -2.22930796e-02 -1.45399988e-01\\n-4.52062041e-02 -8.98910612e-02 2.48574048e-01 1.16397277e-01\\n1.99484110e-01 -3.37451100e-01 4.31722999e-01 -3.17148328e-01\\n-4.53984588e-01 -9.11324397e-02 1.61628556e-02 -7.21414685e-02\\n4.94503856e-01 -5.14025092e-01 1.12358173e-02 3.09840083e-01\\n9.26969051e-02 7.03378469e-02 1.99127853e-01 -1.70961887e-01\\n-6.12348840e-02 1.92195103e-01 -5.18261135e-01 9.51326787e-02\\n7.81677723e-01 2.55417377e-01 7.68995956e-02 2.77607024e-01\\n1.71848923e-01 2.76825726e-01 5.24686217e-01 -4.26241495e-02\\n-1.72658205e-01 3.06076884e-01 7.64827803e-02 -5.40473819e-01\\n-1.25483766e-01 -7.31042027e-02 -2.27179766e-01 -3.72928888e-01\\n6.22219682e-01 4.14932251e-01 -3.99217665e-01 -3.26644540e-01\\n-1.48093089e-01 -1.59417361e-01 3.18318754e-01 -5.12758223e-03\\n-8.26226622e-02 -1.35454178e-01 5.07455885e-01 -5.38714230e-02\\n2.61386603e-01 5.18763125e-01 -1.26101211e-01 -2.20936507e-01\\n1.11522172e-02 1.48350596e-01 3.67786735e-02 4.36480582e-01\\n-1.10091247e-01 2.57297754e-01 -5.18040098e-02 1.52721748e-01\\n-7.16182292e-02 1.59994289e-02 1.61852777e-01 3.99362445e-02\\n2.03661323e-01 1.57298073e-01 4.45208907e-01 4.71800357e-01\\n2.51458406e-01 3.51913571e-01 3.50550234e-01 -4.76007760e-02\\n4.34016287e-01 5.76673865e-01 3.27949792e-01 4.88114990e-02\\n-2.60265246e-02 7.43572563e-02 1.71774849e-01 -6.98684603e-02\\n3.24344397e-01 3.14850032e-01 8.33281428e-02 8.50742459e-01\\n3.26270103e-01 2.96025455e-01 7.23702192e-01 -6.68882012e-01\\n-3.68921161e-01 -6.21692613e-02 5.69745362e-01 -4.75773305e-01\\n1.68197826e-02 1.95360571e-01 -2.47300714e-01 3.05866718e-01\\n-5.56423783e-01 -2.41036192e-01 5.85246310e-02 5.73525466e-02\\n6.30852506e-02 -9.89965945e-02 -1.86393410e-01 2.74570175e-02\\n-1.89841211e-01 -2.20061868e-01 -4.27120984e-01 -2.44485974e-01\\n-1.84991062e-01 -1.10259783e-02 -2.54261494e-02 -1.25100255e-01\\n-9.00371149e-02 -3.44134927e-01 3.53669226e-02 -3.55437817e-03\\n4.31756228e-01 -1.11046948e-01 -3.57174650e-02 -1.01246506e-01\\n2.47886434e-01 2.23003209e-01 7.08459020e-01 5.25083579e-03\\n1.87055558e-01 -1.93847880e-01 -2.23856255e-01 1.78687692e-01\\n4.81785052e-02 8.13700259e-04 6.22576363e-02 3.42204988e-01\\n-2.46085942e-01 -1.69233173e-01 -6.31877035e-03 2.71324813e-01\\n-3.84408534e-01 -8.15595090e-02 -1.18171863e-01 1.70702845e-01\\n2.44063996e-02 7.55726248e-02 -2.56600827e-01 9.18196142e-02\\n-1.91799358e-01 -5.53236604e-01 2.88154751e-01 -1.93021111e-02\\n-1.83167726e-01 8.11275020e-02 2.98031867e-01 1.87106013e-01\\n-2.79088080e-01 -4.22731042e-04 -1.05171204e-01 1.05988942e-01\\n2.71354821e-02 4.22138184e-01 -1.19378939e-01 -3.53337407e-01\\n-2.84294158e-01 3.27000320e-01 -9.72331613e-02 1.20505184e-01\\n-5.05857691e-02 4.55280274e-01 -3.35106440e-02 8.38366151e-02\\n3.68311822e-01 1.45928329e-02 -2.13267386e-01 -3.22517574e-01\\n-6.24984279e-02 -1.42991677e-01 -6.39420673e-02 -8.64267126e-02\\n2.01358914e-01 -3.69508922e-01 -5.21335714e-02 -2.95316964e-01\\n-4.65065874e-02 -3.33761066e-01 -6.11328445e-02 -5.82180917e-04]]',\n", + " 'Zurich | HeadquartersStampfenbachstrasse 42 + 41 43 300 54 40 contact@reprisk.com 8006 Zurich, Switzerland www.reprisk.com Machine Learning Software Engineer (Python) Full time position in Zürich, Switzerland Starting date: by agreement About RepRisk Founded in 1998 and headquartered in Switzerland, RepRisk is a pioneer in ESG data science that leverages AI technology and human intelligence to systematically analyze public information and largest and most comprehensive due diligence database on ESG and business conduct risks, with expertise in 20 languages and coverage of 130,000+ public and private companies and 30,000+ corporations have trusted RepRisk for due diligence and risk management across their operations, business relationships, and investments. Learn more at www.reprisk.com and follow on Twitter: www.twitter.com/reprisk. Job Description As a Machine Learning Software Engineer you will be involved in all aspects of the machine learning application development process within RepRisk, including design, implementation and operation. The role will primarily involve development and maintenance of data processing and language analysis solutions, mainly written in Python. There will be frequent opportunities to work on a broad range of technologies from data processing and integration, machine learning and NLP, databases (SQL) to deployment and operation on a Unix environment. You will benefit from working with an experienced team that will offer support and the scope to greatly enhance your technical skills and knowledge and you will profit from an agile development ecosystem using state-of-the-art open-source technologies. We want someone who is keen to contribute ideas, thrives in a rapid development environment, and who can consistently bring innovative solutions to problems. The position reports to the Vice President of Operations Technology. Responsibilities Design, implement, deploy and maintain machine learning algorithms and infrastructure, from training to prediction Public RepRisk AG, October 2019 Create and maintain technical documentation Software testing and quality assurance Evaluate and identify new technologies Candidate Profile mathematics, statistics, or another relevant discipline with a strong foundation in quantiative methods, modeling, and machine learning/AI (or equivalent experience) Extracurricular projects and experiences that demonstrate your interest in data analysis/machine learning and/or software design and implementation Ability to manage large datasets and advanced experience in the corresponding software packages and programming languages (strong skills in Python and SQL are a requirement) Experience working with Docker, web servers and RESTful applications, as well as having familiarity with continuous integration and deployment (CI/CD). Knowledge of Django REST Framework is an advantage. Strong interest in real-world problems and analytical skills to come up with workable solutions A team player who loves to work in a highly diverse team and across functions and geographies You are reliable, curious, open-minded and goal oriented, while striving to deliver operational excellence and superior quality. What We Offer technology with respect to ESG risks in investments An entrepreneurial, international and young work environment A shared mission to drive accountability and responsible behavior of companies, thus creating positive change Long-term employment opportunity at a growing global company Please note that we consider only candidates with valid working permits or passport holders. Public RepRisk AG, October 2019',\n", + " '[\"Analytical Skills\", \"Business Operations\", \"Goal Oriented\", \"Infrastructure\", \"Accountability\", \"Operations\", \"Reliability\", \"Integration\", \"Innovation\", \"Quality Assurance\", \"Positivity\"]',\n", + " '[\"Application Development\", \"Web Servers\", \"Managing Large Accounts\", \"KM Programming Language\", \"Hyper SQL Database (HSQLDB)\", \"Development Environment\", \"Prediction\", \"Machine Learning\", \"Continuous Integration\", \"Mathematical Statistics\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Business Relationship Management\", \"Maintainability\", \"Dataset\", \"Hostile Work Environment\", \"Software Engineering\", \"Investments\", \"Django (Web Framework)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Data Science\", \"Risk Management\", \"Docker (Software)\", \"Library For WWW In Perl\", \"Machine Learning Algorithms\", \"Due Diligence\", \"Human Intelligence\", \"Electronic Data Processing\", \"Operational Excellence\", \"Technical Documentation\", \"Agile Product Development\", \"Information Technology Operations\", \"Software Design\", \"Software Testing\", \"Algorithms\", \"Unix\", \"Job Descriptions\", \"Long-Term Potentiation\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Chuang', 'Interlingua', 'Galician']\"],\n", + " ['84',\n", + " 'data analyst',\n", + " 'Saint-Saphorin',\n", + " 'Industrial Manufacturing',\n", + " '',\n", + " '[[-2.78203219e-01 4.10573363e-01 4.10321146e-01 1.62926480e-01\\n6.37564957e-01 -1.82331160e-01 -1.96976494e-02 6.03502728e-02\\n-5.61458431e-02 -2.84735233e-01 -1.58002272e-01 -3.46834332e-01\\n-1.93006232e-01 1.97205082e-01 1.73208825e-02 5.19698143e-01\\n1.69379979e-01 5.34561425e-02 5.66546768e-02 3.60202432e-01\\n4.63851467e-02 -2.11752445e-01 -2.43558854e-01 5.47986507e-01\\n4.20476973e-01 -8.22397023e-02 -1.00505307e-01 1.23134471e-01\\n-3.57691407e-01 -2.44689330e-01 4.74438757e-01 1.50713861e-01\\n-2.43558213e-01 -3.37382227e-01 -2.00163331e-02 2.05043972e-01\\n-2.12776780e-01 -7.56097306e-03 -1.41988114e-01 2.56536394e-01\\n-5.75274527e-01 -1.97023094e-01 -1.34034595e-02 8.61775205e-02\\n-2.63921738e-01 -3.27835262e-01 -1.81994829e-02 -1.64181873e-01\\n2.25925576e-02 2.14003071e-01 -5.63011467e-01 4.74238396e-01\\n-4.07871842e-01 -1.52787536e-01 1.95786282e-01 6.87538743e-01\\n7.71459639e-02 -6.77321553e-01 -4.04784501e-01 -3.10032189e-01\\n2.28308082e-01 -1.81340039e-01 1.71057239e-01 -3.42280984e-01\\n3.93641680e-01 -7.63628855e-02 3.60421650e-02 3.25494289e-01\\n-6.32964492e-01 5.49113937e-02 -4.68719661e-01 9.20014232e-02\\n-5.58770955e-01 9.32862144e-03 -4.32462513e-01 1.34992197e-01\\n-1.17186040e-01 4.50527638e-01 -6.24952428e-02 -1.97244957e-02\\n-2.71735966e-01 2.17634365e-01 -3.46844107e-01 2.24471956e-01\\n3.31344306e-01 -7.51687661e-02 2.48580620e-01 3.63493204e-01\\n-4.54158217e-01 5.51061273e-01 2.69724131e-01 -3.07963490e-01\\n3.16107422e-01 2.17642814e-01 3.57355475e-01 2.36440331e-01\\n1.68288812e-01 1.66231468e-01 -1.36510924e-01 2.67159671e-01\\n1.83453336e-01 -2.39962593e-01 9.44776461e-02 -1.14948452e-01\\n-1.22098744e-01 -6.46585748e-02 7.88774863e-02 2.34587699e-01\\n-3.58615696e-01 3.35993648e-01 1.85066536e-01 -1.23495556e-01\\n-1.89986452e-01 -4.48902726e-01 -1.23173811e-01 1.08883120e-01\\n1.37335211e-01 1.96838900e-01 1.92264631e-01 1.35038748e-01\\n2.69769847e-01 9.97871757e-02 1.11074418e-01 6.56782448e-01\\n1.42826974e-01 2.10240245e-01 4.67675403e-02 3.72879326e-01\\n1.67677164e-01 -1.26973718e-01 2.04099581e-01 2.42396802e-01\\n-3.05164531e-02 -3.28474790e-01 -3.58967036e-01 3.87320220e-01\\n-2.47519583e-01 -1.40017614e-01 -1.90824240e-01 8.70967731e-02\\n6.61941767e-02 -4.29776400e-01 5.30249357e-01 -8.21511894e-02\\n1.13677800e-01 -1.94721092e-02 -1.00896813e-01 -8.77341926e-02\\n-1.03468210e-01 3.53111535e-01 2.26660088e-01 2.83388615e-01\\n-2.56079078e-01 -3.06471288e-01 -1.30239129e-01 2.27351978e-01\\n-3.89325798e-01 1.37983590e-01 -4.09389019e-01 1.11208139e-02\\n3.64194751e-01 2.11239830e-01 -4.79915559e-01 6.16755672e-02\\n-4.85145524e-02 -2.02862233e-01 -2.28459574e-02 4.73535508e-01\\n-8.76591504e-02 1.35484725e-01 -1.42202070e-02 -5.42387851e-02\\n6.38433337e-01 1.20021500e-01 5.07492065e-01 6.76559135e-02\\n2.95100123e-01 -1.88517049e-01 2.04421923e-01 1.10671766e-01\\n-6.16654336e-01 3.13731015e-01 -5.77844940e-02 -1.24128170e-01\\n1.26775950e-01 -1.18863005e-02 5.79209387e-01 -3.26870978e-01\\n-4.00899835e-02 -2.74150670e-01 -4.64226693e-01 -4.78615373e-01\\n-2.53395557e-01 -1.36448190e-01 2.69304901e-01 -5.69624186e-01\\n3.69645096e-02 1.72019988e-01 -6.09456897e-01 -3.30354393e-01\\n2.68875211e-01 2.56881207e-01 2.41241783e-01 6.98186830e-02\\n-1.22625440e-01 -7.36889541e-01 5.64862415e-02 -5.12725890e-01\\n-4.10693556e-01 1.91600043e-02 -2.96050578e-01 1.49434030e-01\\n-1.36104524e-02 5.25000505e-03 -1.11435261e-02 5.95060736e-02\\n-2.58021712e-01 1.12452945e-02 1.10562164e-02 1.94137141e-01\\n2.85038054e-01 8.34066123e-02 -3.85711849e-01 4.85957474e-01\\n-2.34990075e-01 5.57344794e-01 1.48045391e-01 -7.17530906e-01\\n7.04043567e-01 1.12054780e-01 -1.25414580e-01 -2.19661012e-01\\n3.68352264e-01 -4.38399285e-01 -3.56678292e-02 1.42015055e-01\\n-2.19665900e-01 -1.96670994e-01 3.26519459e-01 -5.28543778e-02\\n-3.53586316e-01 6.36979580e-01 1.58896461e-01 -1.02135904e-01\\n2.98758030e-01 -2.53623694e-01 -2.14119986e-01 4.38170619e-02\\n-2.13201702e-01 -4.02080342e-02 -4.69666928e-01 2.36458033e-02\\n-6.28001094e-02 -4.13021147e-01 -4.05590087e-02 -3.32188606e-01\\n-3.14298779e-01 -3.62323016e-01 -3.46308470e-01 1.22490197e-01\\n1.71392635e-01 1.61919966e-01 -1.15643770e-01 -4.06106673e-02\\n2.49790102e-02 -8.26156557e-01 -1.50702268e-01 2.29666010e-01\\n3.55063140e-01 3.37481171e-01 2.04207793e-01 -2.01382518e-01\\n1.53739989e-01 5.01209915e-01 -4.55762267e-01 -3.40685874e-01\\n2.68305510e-01 4.11215099e-03 -1.17774811e-02 -1.46560043e-01\\n7.38636404e-02 1.47221461e-01 -1.41782269e-01 -1.85014436e-03\\n6.57341182e-02 -1.84047312e-01 4.35505420e-01 3.78337549e-03\\n-2.79231280e-01 6.36365963e-03 -2.33094066e-01 1.85873553e-01\\n-4.79121119e-01 -2.76727140e-01 5.56199491e-01 2.34464288e-01\\n1.33747295e-01 1.48087770e-01 1.93314314e-01 4.57661599e-03\\n-3.28296065e-01 -2.89553821e-01 3.08225483e-01 1.95329934e-01\\n-6.30908385e-02 1.25973523e-01 -2.47795597e-01 -6.71810091e-01\\n-3.44965625e+00 -1.97014585e-01 1.08177230e-01 -3.57825041e-01\\n9.97498930e-02 -1.84145123e-01 1.82647690e-01 -2.64808480e-02\\n-2.60647953e-01 -2.80515142e-02 -2.02775657e-01 -1.20961137e-01\\n-1.12706395e-02 2.60662019e-01 1.87821507e-01 2.48891503e-01\\n2.57108569e-01 -2.56343067e-01 -5.74343801e-02 3.60089183e-01\\n-1.24787048e-01 -6.90944850e-01 -6.98172897e-02 5.39559452e-03\\n-4.23781052e-02 2.08017603e-01 -3.14005584e-01 6.28600046e-02\\n-3.40356350e-01 -2.50767261e-01 2.50666171e-01 -2.43069157e-01\\n-2.89983660e-01 6.16076477e-02 1.51375070e-01 -2.67294925e-02\\n-2.75391906e-01 -1.40052631e-01 -1.23443998e-01 -4.59867984e-01\\n3.94487083e-02 -5.02228022e-01 2.22740285e-02 -1.67124718e-01\\n7.04449654e-01 -1.16324641e-01 1.39149562e-01 1.06610745e-01\\n9.52525213e-02 1.40916795e-01 1.09533183e-01 3.15100811e-02\\n-1.80635363e-01 -2.93939710e-01 -1.57464623e-01 -8.47274438e-02\\n7.96404243e-01 3.13447654e-01 -2.20652163e-01 4.00175049e-04\\n2.38038763e-01 -3.97256613e-01 -3.18802655e-01 -3.86632890e-01\\n-3.11677158e-01 -1.28204152e-01 -7.62656689e-01 -3.72923553e-01\\n-2.17939675e-01 -6.26850501e-02 -9.98909548e-02 7.39739895e-01\\n-4.07045841e-01 -3.22163463e-01 -1.76266193e-01 -5.97790062e-01\\n3.03065121e-01 -1.49274632e-01 1.13077953e-01 -3.21628392e-01\\n-4.23236281e-01 -4.64888394e-01 1.11229666e-01 -3.80046628e-02\\n-3.35149378e-01 -2.42637489e-02 3.87786329e-02 -1.31975457e-01\\n-4.71248746e-01 -6.08718216e-01 2.87946850e-01 5.78931272e-02\\n2.37044349e-01 1.01568297e-01 3.34758282e-01 -4.24607433e-02\\n5.03307581e-01 7.31299818e-02 -3.16760354e-02 -2.04381123e-01\\n1.92932025e-01 -1.10563725e-01 6.60276830e-01 -3.55483443e-01\\n-1.42388463e-01 8.42945576e-02 -3.69244307e-01 2.65635867e-02\\n4.80979174e-01 -1.82908833e-01 1.08402818e-01 -9.16458145e-02\\n3.02507043e-01 -5.68179309e-01 -2.26603821e-01 2.28060901e-01\\n8.51342753e-02 7.53758669e-01 5.42594790e-02 -3.15881908e-01\\n9.13509503e-02 3.99221748e-01 -1.05413824e-01 -2.57701762e-02\\n-2.43337139e-01 1.53400714e-03 -1.84777141e-01 4.28462684e-01\\n6.61668181e-02 -1.47141963e-01 -1.76361680e-01 -5.39191589e-02\\n-1.05168656e-01 3.48619670e-01 3.04232568e-01 -5.14623970e-02\\n-4.86709215e-02 -1.31847322e-01 -2.31689095e-01 8.47583860e-02\\n2.01201871e-01 4.48767364e-01 1.92675382e-01 -2.53564835e-01\\n3.62922577e-03 2.28138939e-01 -2.35730082e-01 2.97554910e-01\\n-2.32318044e-01 2.17065454e-01 -6.56366706e-01 -2.69299954e-01\\n-1.69771045e-01 -3.60367060e-01 1.13336436e-01 3.77556354e-01\\n2.73789376e-01 -1.05048776e-01 3.39196324e-02 -5.65310240e-01\\n6.00955039e-02 2.71329850e-01 8.66683125e-02 1.70742214e-01\\n-1.82966128e-01 7.12836981e-01 -2.24203262e-02 -1.88323811e-01\\n-1.05815306e-01 9.32412222e-03 -3.16928059e-01 -3.32231432e-01\\n3.47391397e-01 -4.24125165e-01 -7.09783286e-02 4.57364827e-01\\n3.21713239e-01 -6.42394125e-02 -1.90440997e-01 3.88964385e-01\\n1.48593020e-02 -1.76615417e-01 -5.14062405e-01 5.34015661e-03\\n1.15142964e-01 2.12159500e-01 2.33951449e-01 -3.77940565e-01\\n5.11166640e-02 -2.81086657e-04 4.12022509e-02 3.89008850e-01\\n1.83638427e-02 2.68201560e-01 -1.74983844e-01 -8.35822895e-02\\n6.08786166e-01 5.97252212e-02 -1.01584651e-01 1.45578561e-02\\n2.91622460e-01 -2.31043056e-01 -4.21260267e-01 9.71177034e-03\\n-8.79081041e-02 -4.25100863e-01 1.24208540e-01 2.31116876e-01\\n-7.64257163e-02 -1.57998651e-02 -6.05796337e-01 -2.37568662e-01\\n-4.26165074e-01 -1.52822569e-01 2.40826309e-01 -6.11361980e-01\\n-1.46074370e-01 -1.10043459e-01 -4.05385315e-01 2.30815649e-01\\n7.43319094e-02 3.08281742e-03 3.89139652e-01 3.33025455e-01\\n-7.13793710e-02 -2.45224372e-01 5.59466109e-02 1.84621841e-01\\n-4.28636044e-01 -3.00698429e-01 -1.42660707e-01 -1.09593475e+00\\n4.96388972e-02 -1.89939458e-02 -2.85960585e-01 2.29348764e-02\\n-5.62067479e-02 -6.03702068e-01 1.74502283e-01 -3.08619708e-01\\n-2.11756796e-01 1.28123656e-01 -2.18959570e-01 -3.15656573e-01\\n1.37316853e-01 -1.12772852e-01 -3.07603180e-01 4.28081542e-01\\n-4.02170539e-01 4.58123207e-01 -1.03768878e-01 7.08063319e-02\\n-3.60942609e-03 -6.29797624e-03 1.94573984e-01 -1.05643936e-01\\n-4.44040120e-01 -3.96914095e-01 -4.51228261e-01 -2.30713367e-01\\n1.50147334e-01 -3.27523947e-01 -4.45509553e-02 1.49233863e-01\\n4.94120747e-01 1.93886995e-01 -5.13300784e-02 -9.48479772e-02\\n4.82284538e-02 -5.56291401e-01 1.22909963e-01 -2.37213701e-01\\n4.83620819e-03 -1.37837827e-01 1.27428576e-01 -1.08057661e-02\\n1.09095320e-01 -2.55334109e-01 6.50670111e-01 -2.25946337e-01\\n-3.02127004e-01 -2.41879225e-01 1.75487801e-01 1.28522530e-01\\n3.13030928e-01 -3.30892712e-01 6.06500655e-02 3.81650180e-01\\n1.12422168e-01 -1.26115143e-01 1.13548934e-01 -1.05203159e-01\\n-1.42687231e-01 2.07834914e-01 -2.99093604e-01 1.68144077e-01\\n8.47317338e-01 1.99661046e-01 2.18307972e-01 1.88655540e-01\\n7.19089806e-02 3.08897495e-01 6.74124956e-01 -2.11867303e-01\\n6.32449761e-02 2.80160785e-01 4.07692567e-02 -3.91052902e-01\\n-2.43703499e-02 -2.51043826e-01 4.28106040e-02 -3.59798402e-01\\n6.31435692e-01 3.59109849e-01 -5.22304893e-01 -3.27326715e-01\\n-1.57093167e-01 -1.96054820e-02 4.34597760e-01 1.29612491e-01\\n-2.44181886e-01 1.74330827e-02 5.56493878e-01 -5.66358007e-02\\n2.58049041e-01 3.88998389e-01 -2.06807345e-01 -1.96688890e-01\\n2.42620450e-03 2.95236021e-01 -1.27440039e-02 3.79167825e-01\\n-1.50270358e-01 1.88658163e-01 -1.78693578e-01 -1.62939504e-02\\n-2.64207691e-01 1.80396019e-03 1.28752023e-01 1.63474783e-01\\n2.78536469e-01 1.01140209e-01 4.98468190e-01 4.77330238e-01\\n1.20293692e-01 3.64976138e-01 2.35902816e-01 -1.40036047e-01\\n4.48495328e-01 5.80835104e-01 2.84027010e-01 1.55293614e-01\\n1.76129669e-01 2.55804896e-01 9.45241973e-02 1.14185385e-01\\n3.57888669e-01 4.93856072e-01 2.33668506e-01 6.18678451e-01\\n2.10600227e-01 3.29692423e-01 5.30382335e-01 -7.14465380e-01\\n-4.07869369e-01 2.17380412e-02 5.97936273e-01 -3.00069869e-01\\n1.80181295e-01 1.92688972e-01 -2.37584040e-01 3.11048925e-01\\n-5.90662181e-01 -2.80680716e-01 1.22073486e-01 2.74724793e-02\\n2.05120519e-01 -2.29163915e-01 -1.31266624e-01 1.35789782e-01\\n4.29771021e-02 -1.22002743e-01 -1.29737854e-01 -2.72700012e-01\\n-3.94280761e-01 -3.73433605e-02 1.20850332e-01 8.39081183e-02\\n7.92560726e-02 -3.89070868e-01 -1.43185914e-01 -5.47607839e-02\\n3.58238995e-01 -1.32878482e-01 -2.72181630e-01 -3.06935795e-02\\n2.61498094e-01 1.75768346e-01 6.45962656e-01 -9.45445895e-02\\n4.29560654e-02 -2.54758418e-01 -1.76961526e-01 1.29766837e-01\\n1.89689919e-01 1.10620186e-01 1.39188632e-01 3.90597463e-01\\n-3.94687772e-01 -1.81374937e-01 1.68548405e-01 2.00672492e-01\\n-4.23362434e-01 -9.75956023e-02 -1.12987205e-01 5.43494672e-02\\n-3.19334418e-02 2.36790866e-01 -2.70086378e-01 -1.23325780e-01\\n-2.70656496e-01 -5.96459091e-01 3.54987055e-01 -2.37167880e-01\\n-2.34259933e-01 -1.03615366e-01 3.06745678e-01 3.05704981e-01\\n-5.68228178e-02 4.48519737e-02 -7.75962695e-02 1.38559014e-01\\n5.78743853e-02 3.14962506e-01 5.06294332e-02 -2.53667057e-01\\n-3.53271097e-01 2.83000737e-01 1.40433729e-01 2.25339323e-01\\n-6.81080967e-02 3.19201976e-01 -1.09247245e-01 3.28256786e-02\\n3.54084700e-01 1.14770271e-01 -1.70863450e-01 -2.61343688e-01\\n-2.38305047e-01 -1.80440806e-02 7.18061179e-02 9.47721768e-04\\n5.01910374e-02 -4.28046435e-01 -1.98736235e-01 -3.38709414e-01\\n-6.48183972e-02 -4.42678481e-01 -2.24577725e-01 4.06330898e-02]]',\n", + " 'Supporting the customer on his site you will : Influence the design of data quality standards and governance processes Implement and enforce Data Quality Management practices across Research including metadata, lineage, data access rights and business definitions Perform root cause analysis on critical data quality issues, work with technology and SMEs on defining a solution and help implement the solution Design and report on data quality and usage metrics Complete large scale data analysis, document findings and reconcile across data stores Support the data analysis required to place data into a shared platform for consumption by others, requiring detailed reviews with the business owners and identify the use of data and understand calculations and derivations Partner with technology to understand where data already exists in the shared platform and ensure that data is not duplicated Explore and evaluate new concepts, technologies and industry trends related to data analytics We are looking for someone with the following experience Experience in data quality management Experience with using data profiling tools to query the data, identify anomalies, gaps and issues Experience manipulating and analyzing large-scale data sets, performing root cause analysis, driving data and business requirements Experience in scripting (Python, Perl, JavaScript, Shell) Experience working BI reporting tools is a plus General awareness of data management practices, emerging trends, and issues',\n", + " '[\"Research\", \"Governance\"]',\n", + " '[\"Quality Management\", \"Data Quality\", \"Tooling\", \"Accessioning\", \"Perl (Programming Language)\", \"Metadata\", \"Analytics\", \"Data Profiling\", \"Law Practice Management\", \"Industrialization\", \"Scale (Map)\", \"Calculations\", \"Python (Programming Language)\", \"Root Cause Analysis\", \"Business Requirements\", \"Enforcement\", \"JavaScript (Programming Language)\", \"Survey Data Analysis\", \"Requirements Analysis\", \"Solution Design\", \"Scripting\", \"Operational Data Store\", \"Derivatives\", \"Data Analysis\", \"Reporting Tools\"]',\n", + " \"['English', 'Bosnian', 'Indonesian', 'Sinhalese']\"],\n", + " ['145',\n", + " 'c++ back end software engineer',\n", + " 'Zürich',\n", + " 'Aerospace & Defence',\n", + " 'www.veritystudios.com',\n", + " '[[-2.05985904e-01 3.63334298e-01 3.98180604e-01 7.37345889e-02\\n6.12776875e-01 -1.37464389e-01 -5.66377267e-02 2.55230784e-01\\n7.42716938e-02 -3.34895611e-01 -7.98960216e-03 -3.96854490e-01\\n-8.38371068e-02 1.38850421e-01 8.63480121e-02 5.18396437e-01\\n1.43955186e-01 7.12292120e-02 -2.42769927e-01 4.73550498e-01\\n4.60687205e-02 -1.24515496e-01 1.94112062e-01 7.60677397e-01\\n3.29556614e-01 2.42234170e-02 -1.37974501e-01 -7.10776448e-02\\n-2.13933125e-01 -5.19141406e-02 4.58962619e-01 6.75563216e-02\\n-1.07235275e-01 -5.70448339e-01 1.12456426e-01 1.05927154e-01\\n-2.50869185e-01 -1.11949027e-01 -1.29622042e-01 1.66764438e-01\\n-6.19513690e-01 -3.82298768e-01 -1.60045493e-02 -8.34970325e-02\\n-2.54685223e-01 -2.79926658e-01 2.11237147e-01 -2.39865445e-02\\n1.70779213e-01 1.45328030e-01 -4.76414502e-01 2.34440804e-01\\n-2.34336197e-01 -1.93579555e-01 3.83755922e-01 6.64856672e-01\\n2.58830860e-02 -5.88672101e-01 -5.01487315e-01 -3.41661394e-01\\n-8.89664590e-02 -9.22143366e-03 1.02668162e-02 -4.75725114e-01\\n2.40385279e-01 2.11712383e-02 6.66927546e-02 3.38225812e-01\\n-7.42188096e-01 -1.98617861e-01 -2.21957371e-01 6.28391132e-02\\n-2.27078557e-01 2.23747548e-03 -3.39267105e-01 -1.28093749e-01\\n-1.72613531e-01 4.28349525e-01 -1.82365552e-02 5.71071655e-02\\n-2.71872938e-01 3.69172007e-01 -1.57922849e-01 5.11346817e-01\\n2.41458386e-01 2.26627022e-01 1.56122446e-01 4.16605175e-01\\n-4.52266932e-01 3.00074458e-01 2.52851784e-01 -3.06461662e-01\\n2.18064755e-01 2.47903913e-01 4.03815567e-01 -7.38221407e-03\\n1.15824014e-01 1.26008645e-01 -3.36245447e-01 3.49652469e-01\\n2.69072413e-01 -2.39013523e-01 1.78278387e-01 -1.25444710e-01\\n8.66488218e-02 2.85100713e-02 -2.23362576e-02 1.84874579e-01\\n-2.84118414e-01 4.43160534e-01 2.94514388e-01 -2.56686330e-01\\n-2.64549255e-01 -5.97270846e-01 -6.77708983e-02 1.30404428e-01\\n7.87365288e-02 1.36354595e-01 1.92636877e-01 1.14882261e-01\\n2.76067168e-01 -2.29275644e-01 1.36476874e-01 9.40843701e-01\\n-1.33099928e-01 -1.03538103e-01 -6.32294640e-02 3.19909990e-01\\n6.59054667e-02 -1.73681334e-01 7.24943355e-02 2.32951432e-01\\n-1.45552503e-02 -1.17562473e-01 -2.69029617e-01 3.36433053e-01\\n-1.97948620e-01 -2.49143064e-01 -3.78955394e-01 3.51919234e-01\\n-1.15315601e-01 -4.07644629e-01 6.82614565e-01 -1.04512244e-01\\n1.52674019e-01 -4.64980677e-02 1.61041487e-02 -7.72189051e-02\\n-1.58067122e-01 1.02436595e-01 1.65273577e-01 7.28868470e-02\\n-3.18537533e-01 -2.87096769e-01 -1.78769052e-01 -4.54214178e-02\\n-3.19787741e-01 2.05240905e-01 -9.91580486e-02 -2.36709565e-01\\n7.16910213e-02 1.83305278e-01 -4.80815113e-01 2.18793720e-01\\n-2.40914747e-01 -6.99398741e-02 -7.83811882e-02 5.64806938e-01\\n-2.77467638e-01 1.73256397e-01 1.18529722e-01 -2.27510296e-02\\n6.31084800e-01 2.06389159e-01 2.35145420e-01 1.29319001e-02\\n3.82446945e-01 -7.83267096e-02 1.56693220e-01 3.07950974e-01\\n-6.89495087e-01 2.99862176e-01 -3.20297405e-02 -5.80733046e-02\\n2.04313934e-01 -1.30033612e-01 3.56816083e-01 -3.66585791e-01\\n-1.29208818e-01 -2.42006898e-01 -3.71527553e-01 -2.40603611e-01\\n-2.28652120e-01 3.93386371e-02 2.79398203e-01 -3.10971290e-01\\n-9.18062925e-02 1.97226346e-01 -5.74024558e-01 -1.66245937e-01\\n1.42289877e-01 2.43803695e-01 1.23344466e-01 6.97688311e-02\\n-1.67240083e-01 -6.82010055e-01 3.09797674e-02 -3.36659491e-01\\n-3.53111207e-01 -1.99150890e-02 -3.32719207e-01 6.41027540e-02\\n-3.05872615e-02 1.12619169e-01 -7.96262622e-02 -2.88432091e-02\\n-4.58801597e-01 3.66032273e-02 3.19360271e-02 -3.15219257e-03\\n1.81903243e-01 1.28900915e-01 -4.40722167e-01 4.27287459e-01\\n-3.60187411e-01 6.59742475e-01 -2.54579633e-02 -9.26798463e-01\\n5.15718222e-01 3.95129174e-01 -1.20112583e-01 -2.78218091e-01\\n4.32752430e-01 -5.82723558e-01 -1.87039986e-01 7.82845914e-02\\n-2.26778746e-01 -2.97221065e-01 3.39034796e-01 -2.90983677e-01\\n-3.32921147e-01 5.92325926e-01 1.02244355e-01 1.43974900e-01\\n3.22126627e-01 -3.28167975e-01 -4.69457135e-02 2.15251232e-03\\n3.08986418e-02 -1.11619577e-01 -5.82536340e-01 -1.53299784e-02\\n-7.27580339e-02 -3.33276272e-01 -3.45025063e-02 -4.34960335e-01\\n-1.45363450e-01 -3.40342939e-01 -2.55671144e-01 5.37418574e-02\\n3.47044915e-01 5.65831661e-02 1.07031733e-01 6.65723756e-02\\n-5.10901250e-02 -6.68282092e-01 7.48240799e-02 1.27382770e-01\\n4.18702900e-01 2.33208656e-01 2.18327329e-01 5.94726130e-02\\n1.24663159e-01 7.71426260e-01 -3.42102289e-01 -1.72709197e-01\\n6.91612884e-02 6.19139336e-02 -2.05395408e-02 -1.48755342e-01\\n2.65958071e-01 3.88664514e-01 -3.76277506e-01 3.82000022e-02\\n-9.30259228e-02 2.03964692e-02 4.02058005e-01 -4.58512679e-02\\n-2.63992935e-01 -2.96835959e-01 -8.26911181e-02 1.12520903e-02\\n-5.15154958e-01 -1.50129423e-01 2.82796025e-01 8.38344842e-02\\n1.94413751e-01 5.02666198e-02 1.70590863e-01 -9.82355103e-02\\n-4.41521227e-01 -3.11400533e-01 1.22995183e-01 1.48827359e-01\\n-2.76790094e-02 1.12194128e-01 7.44633451e-02 -7.07996726e-01\\n-2.72454309e+00 5.34029864e-02 1.75257504e-01 -1.98654652e-01\\n3.36907804e-01 -6.53685927e-02 1.09978214e-01 -3.16157192e-02\\n-3.55830789e-01 4.42458987e-02 -2.89239287e-02 -1.59436435e-01\\n7.56649151e-02 1.86911806e-01 1.44056782e-01 4.63028215e-02\\n6.98418692e-02 -3.27719748e-01 -9.36945155e-02 3.31667989e-01\\n-1.18849806e-01 -8.04062247e-01 2.00819045e-01 -1.26729324e-01\\n2.54911333e-01 1.95139214e-01 -4.79090929e-01 -1.46115467e-01\\n-2.61862636e-01 -1.09654486e-01 4.85282019e-03 -2.79336989e-01\\n-2.41603047e-01 1.88137472e-01 1.87168032e-01 -1.35401972e-02\\n8.62481222e-02 -4.34705317e-01 -1.60589010e-01 -4.28641707e-01\\n1.77408278e-01 -6.09819472e-01 -6.96853548e-03 -2.30592757e-01\\n6.40858293e-01 -2.70242929e-01 1.35734931e-01 1.25911921e-01\\n1.49351195e-01 2.69990042e-02 2.36425519e-01 6.78248629e-02\\n-9.65867788e-02 -2.25626662e-01 -1.29000962e-01 -2.47471124e-01\\n6.36729777e-01 3.39879185e-01 -2.07142353e-01 -1.66808292e-02\\n7.58172870e-02 -2.93556452e-01 -5.43299913e-01 -1.82129353e-01\\n-5.64413927e-02 -1.79539651e-01 -5.83404779e-01 -3.56540203e-01\\n-1.86783940e-01 -1.21287085e-01 -6.88438863e-02 7.59267151e-01\\n-4.20275092e-01 -2.10742876e-01 1.22092612e-01 -5.78946352e-01\\n4.35128927e-01 -2.75633633e-01 -1.44124031e-03 -3.35657805e-01\\n-2.88897008e-01 -5.05288661e-01 7.09490553e-02 -2.00807944e-01\\n-2.24279895e-01 -2.85540402e-01 -3.29982080e-02 -1.64206147e-01\\n-2.05053717e-01 -5.54817021e-01 3.81877899e-01 1.87059671e-01\\n3.86264861e-01 5.08880094e-02 4.64519948e-01 -1.04326755e-01\\n3.50761890e-01 1.23105720e-01 5.25633097e-02 -2.67343819e-01\\n-1.06798224e-02 4.93982062e-02 5.52316666e-01 -2.65558004e-01\\n-4.99412566e-02 1.00008756e-01 -2.66877711e-01 -4.02108654e-02\\n3.44774008e-01 -1.90543327e-02 2.04607621e-02 -2.38944471e-01\\n3.50827903e-01 -3.92211854e-01 -1.28689528e-01 5.48722632e-02\\n2.60435879e-01 9.16035593e-01 2.89942957e-02 -4.06902254e-01\\n-1.69348806e-01 5.25479972e-01 -8.75239521e-02 1.28346324e-01\\n-5.64013906e-02 1.12256117e-01 -3.05525213e-01 3.53314340e-01\\n6.43014312e-02 -3.14700872e-01 -2.42124379e-01 -5.53655252e-02\\n-1.95170686e-01 4.67520624e-01 2.03857601e-01 8.48484188e-02\\n-9.66811031e-02 -5.17074049e-01 -1.59701943e-01 3.82808626e-01\\n1.31089941e-01 4.08550084e-01 1.88265741e-01 -3.49108070e-01\\n8.19405168e-02 4.89717305e-01 -1.45293534e-01 3.22562099e-01\\n-1.64050549e-01 2.67119467e-01 -6.20453417e-01 -3.37721467e-01\\n-4.14802641e-01 -4.14349735e-01 1.97383106e-01 4.82603669e-01\\n1.53204799e-01 -1.28630683e-01 1.68317378e-01 -4.87397552e-01\\n3.02149683e-01 2.83015072e-01 1.00283109e-01 8.34846199e-02\\n-1.17759869e-01 6.17286623e-01 1.05127871e-01 -2.48130873e-01\\n-1.06966838e-01 -7.93929249e-02 -1.23948075e-01 -2.39282727e-01\\n2.99848348e-01 -4.96423870e-01 -1.50800049e-01 3.85559142e-01\\n1.18245080e-01 -1.42266810e-01 -2.99973667e-01 2.87136734e-01\\n-3.25641818e-02 -2.36124963e-01 -2.87606478e-01 -1.41123101e-01\\n3.06777865e-01 -4.94928379e-03 3.12205136e-01 -5.73935747e-01\\n5.68464957e-02 -5.13903648e-02 1.31196082e-02 4.51087654e-01\\n-8.40906203e-02 -1.74472809e-01 -2.99184442e-01 -6.03371374e-02\\n5.48217297e-01 4.91175577e-02 -8.05393159e-02 5.94910234e-04\\n1.80061147e-01 -2.82668650e-01 -3.93472195e-01 1.59531921e-01\\n-8.40653926e-02 -2.41839379e-01 -1.71505958e-02 1.28349856e-01\\n1.37416095e-01 -2.75823791e-02 -5.25561213e-01 -1.38248727e-01\\n-1.43182695e-01 1.04452908e-01 5.48416004e-02 -4.70787257e-01\\n-3.49911489e-02 -5.91794029e-02 -6.06221080e-01 1.95649415e-01\\n-3.05625618e-01 -1.34530529e-01 2.20184281e-01 1.31248429e-01\\n-3.43111396e-01 -1.53189898e-01 -7.22303912e-02 3.39819670e-01\\n-2.04909027e-01 -2.51479685e-01 -1.24517620e-01 -8.94033074e-01\\n1.15059406e-01 -5.33648431e-02 -9.59374905e-02 2.31852964e-01\\n-8.95830169e-02 -1.01438189e+00 1.02808803e-01 -2.87014186e-01\\n-1.23003460e-01 -5.44079356e-02 -2.80505329e-01 -1.33313134e-01\\n2.15161532e-01 6.24261834e-02 -3.43123406e-01 4.18560803e-01\\n-2.62078226e-01 2.57272989e-01 -1.70919940e-01 5.71095273e-02\\n-6.81268051e-02 -1.48463920e-01 1.25125855e-01 -2.81140804e-01\\n-4.28685009e-01 -2.55029738e-01 -2.69996196e-01 -3.43083620e-01\\n-2.50073552e-01 -2.36282885e-01 -1.43171966e-01 1.72680765e-01\\n3.02348286e-01 -4.01428789e-02 -6.29873946e-02 -2.45580941e-01\\n1.51368916e-01 -4.35436219e-01 1.25311121e-01 -8.24228451e-02\\n1.22122213e-01 -2.17733800e-01 7.84816667e-02 1.65779665e-01\\n4.18182284e-01 -3.24608028e-01 4.68778223e-01 -3.72710466e-01\\n-4.76856112e-01 -2.95310944e-01 -2.42418349e-02 -1.01358160e-01\\n4.10329849e-01 -3.06138098e-01 1.89497545e-02 2.51212239e-01\\n1.62074566e-02 1.07716024e-03 2.97208190e-01 -2.26072460e-01\\n4.42043170e-02 7.91206360e-02 -3.68174314e-01 8.35003853e-02\\n7.66569734e-01 2.27703333e-01 1.60436019e-01 1.76611155e-01\\n-7.87680298e-02 1.74581856e-01 5.79604685e-01 -1.76826477e-01\\n-9.89760906e-02 1.53370082e-01 1.53601617e-01 -5.15923858e-01\\n-2.18991399e-01 -1.02344826e-01 -2.77597874e-01 -4.17335123e-01\\n6.47350669e-01 3.24208558e-01 -4.09324229e-01 -1.20936535e-01\\n-1.68782286e-02 -1.33876160e-01 3.25822204e-01 4.75306213e-02\\n-2.17234455e-02 9.15554166e-03 4.19051945e-01 -7.64211640e-02\\n3.60948175e-01 5.86866438e-01 -1.53685242e-01 -3.32891405e-01\\n-8.57250020e-02 2.37980485e-01 7.72385746e-02 2.74617195e-01\\n-2.83346415e-01 2.80306965e-01 -4.96304967e-02 4.38111350e-02\\n-2.53939241e-01 1.49510801e-01 2.59434320e-02 9.54945385e-02\\n1.71745360e-01 1.32071450e-01 4.66509789e-01 5.44153452e-01\\n1.13663808e-01 3.87066305e-01 3.59454751e-01 5.65822423e-02\\n4.70831662e-01 5.89590549e-01 3.96798193e-01 1.14028126e-01\\n1.74154237e-01 3.23015094e-01 2.44358093e-01 -1.23436943e-01\\n5.12997031e-01 4.81955409e-01 1.20019168e-01 9.29232836e-01\\n1.45038828e-01 4.72661376e-01 7.75368929e-01 -6.93370223e-01\\n-4.00529057e-01 8.01825225e-02 5.42603910e-01 -5.40490150e-01\\n8.92204568e-02 5.83554581e-02 1.72359906e-02 4.68550384e-01\\n-5.91422915e-01 -2.77828455e-01 -3.52308303e-02 2.01531619e-01\\n-8.18846747e-02 -1.34756729e-01 -2.12909371e-01 1.02107242e-01\\n-1.20052040e-01 -1.85670480e-01 -3.02780002e-01 -1.07798368e-01\\n-1.95805132e-01 6.21429086e-02 -1.33213237e-01 -1.29382968e-01\\n1.23620525e-01 -2.99780279e-01 9.81813483e-03 -1.08691722e-01\\n3.71459663e-01 -1.66730940e-01 -1.63171202e-01 -1.16961792e-01\\n3.51053357e-01 1.34677947e-01 5.22296786e-01 4.18758616e-02\\n2.24322766e-01 -2.27149367e-01 -2.32325897e-01 1.49474919e-01\\n1.20496228e-02 1.18949890e-01 7.47720972e-02 3.29894722e-01\\n-2.65817940e-01 -1.28175229e-01 8.05771351e-03 2.63151199e-01\\n-3.55885863e-01 -1.08938903e-01 -2.18016773e-01 -1.75021682e-03\\n-2.98438929e-02 1.93126902e-01 -1.03299230e-01 -7.21593797e-02\\n-1.71474069e-01 -4.37116802e-01 2.80486882e-01 -9.49724615e-02\\n-2.70961106e-01 -1.32967487e-01 4.12571549e-01 1.24051787e-01\\n-2.78940409e-01 1.41099960e-01 -2.07458019e-01 2.60855407e-01\\n3.23246270e-02 2.92219132e-01 1.05701797e-02 -2.19366729e-01\\n-2.48113886e-01 2.14953542e-01 -6.39967173e-02 1.99305657e-02\\n2.04844683e-01 6.07056201e-01 -1.01149984e-01 -1.29280359e-01\\n6.67372286e-01 -4.63127270e-02 -3.13079894e-01 -3.09482813e-01\\n-9.77961048e-02 -1.94017991e-01 -1.44472271e-01 -1.38574749e-01\\n1.43630370e-01 -3.68721157e-01 -1.21986322e-01 -3.03417236e-01\\n1.05592251e-01 -2.40879670e-01 -1.33349448e-01 -2.46001985e-02]]',\n", + " \"To complement its growing team, Verity Studios is looking for an experienced and versatile back end software engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software back ends for drone systems requires addressing new and challenging problems such as: (a) defining robust and reliable communication protocols to interact with embedded devices (both on wired and wireless connections), (b) implementing components to retrieve, store, and process significant amount of data in an efficient and responsive fashion, and (c) designing algorithms to easily and safely coordinate the operation of hundreds of drones and other system components. Our software team works on a multitude of challenging and interesting tasks, such as implementing drivers for proprietary embedded platform, defining robust and efficient communication protocols, designing algorithms to retrieve, process, and analyze significant amount of data, and implementing graphical user interfaces for control stations. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deploymentInteract with other engineering teams to define and review design documentsCooperate with control engineers to design protocols to interact with robotic systems in order to send commands and collect feedback dataCooperate with embedded engineers to understand the constraints of embedded platforms and design smart and reliable embedded applicationsInteract with front end engineers to define the interfaces between back ends and front endsDesign general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Experience with database design and handling large amount of data is a plus Experience with distributed systems is a plusGood written and spoken English language skillsExcellent knowledge of C++ and STLFamiliar with GDB and other debugging and program analysis toolsKnowledge of libraries such as Boost and Qt and is a plusExperience in Python, C and modern C++ is a plusExperience with PCB schematics and digital communication interfaces (e.g. SPI, CAN, I2C) is a plusTeam player and self-drivenCreative approach to problem solving Benefits. Work in an interdisciplinary, highly-skilled teamCreate ground-breaking systems, used by some of the world's most prominent stage productionsShape the culture and have a significant impact in a rapidly growing young company \",\n", + " '[\"Professionalism\", \"Coordinating\", \"Problem Solving\", \"Operations\", \"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"Control Engineering\", \"System Requirements\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Collections\", \"Digital Communications\", \"Repository Protocol Design\", \"Staging\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"Python (Programming Language)\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Library\", \"Embedding\", \"Program Analysis\", \"Process Driven Development\", \"Database Design\", \"Software Engineering\", \"C (Programming Language)\", \"Robotics\", \"Qt (Software)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Graphical User Interface\", \"Data Structures\", \"Systems Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Algorithm Design\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"User Interface\", \"Debugging\", \"Documentation Based Coding\", \"Controllability\"]',\n", + " \"['English', 'Central Khmer', 'Bambara']\"],\n", + " ['75',\n", + " 'big data software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.18385294e-01 2.41720304e-01 4.27476227e-01 4.64398712e-02\\n5.47994494e-01 -1.58546939e-01 -9.34150666e-02 3.12510848e-01\\n-8.11205059e-03 -3.97926003e-01 4.04934911e-03 -2.48615384e-01\\n-1.95413619e-01 -2.90917847e-02 1.50212198e-01 2.65932232e-01\\n3.02032858e-01 1.08343944e-01 -1.30830914e-01 3.85242850e-01\\n8.88484642e-02 1.43046454e-02 -5.57380319e-02 6.30390584e-01\\n4.04154301e-01 -1.88813321e-02 -1.24087185e-01 1.93015829e-01\\n-2.77798295e-01 -2.91954935e-01 3.00827622e-01 9.17816684e-02\\n-8.17140043e-02 -3.18304211e-01 1.06116369e-01 2.50762045e-01\\n-2.06791312e-01 -5.82365971e-03 -1.07563332e-01 1.07770495e-01\\n-3.67045462e-01 -3.67927372e-01 -2.96022315e-02 8.70568901e-02\\n-3.38595450e-01 -2.04959631e-01 -1.69872437e-02 -5.90269901e-02\\n7.95503631e-02 -1.36311986e-02 -6.20867014e-01 3.62723887e-01\\n-1.33262768e-01 -2.69479692e-01 2.14491516e-01 6.40694201e-01\\n3.47513682e-03 -4.84974235e-01 -2.93424577e-01 -3.48227203e-01\\n-4.61025257e-03 -1.23056367e-01 4.11828458e-02 -1.87683120e-01\\n4.37148601e-01 -4.72451076e-02 4.45949798e-03 4.81891811e-01\\n-8.20332110e-01 -1.39553947e-02 -2.68433988e-01 -2.17327755e-02\\n-4.69381720e-01 5.03607690e-02 -3.15660983e-01 -2.37897962e-01\\n5.62908426e-02 3.88951242e-01 5.20636849e-02 1.03158213e-01\\n-1.15584821e-01 2.45215923e-01 -1.03218965e-01 1.05746165e-01\\n3.76562834e-01 1.95033789e-01 2.45937914e-01 2.34620333e-01\\n-4.03643370e-01 3.76610756e-01 1.10743843e-01 -3.31405133e-01\\n2.93078780e-01 1.50698110e-01 4.68504727e-01 1.74631029e-01\\n-1.56029714e-02 2.51626998e-01 -1.99598223e-01 2.12395296e-01\\n1.19339190e-01 -3.79344612e-01 -3.57100600e-03 -3.08948457e-02\\n-6.69572875e-02 -1.03470840e-01 1.28493365e-02 1.49813160e-01\\n-2.90799469e-01 3.61809999e-01 1.15960084e-01 -1.83507264e-01\\n1.52545441e-02 -4.73510802e-01 -8.89622048e-02 -3.46979909e-02\\n-3.22391726e-02 3.20319206e-01 2.86420912e-01 1.03586249e-01\\n1.86044544e-01 1.21801183e-01 2.37297535e-01 9.50427771e-01\\n-5.54420464e-02 1.31258190e-01 -2.08604544e-01 2.97988683e-01\\n2.33642697e-01 -3.30325305e-01 1.84752181e-01 2.62443185e-01\\n4.86236028e-02 -1.31018400e-01 -1.87519029e-01 2.35432044e-01\\n-1.53553262e-01 -8.01144689e-02 -3.22447240e-01 4.98206653e-02\\n-2.07965270e-01 -4.20132309e-01 5.40373504e-01 1.31357834e-01\\n2.80778348e-01 4.08879332e-02 3.20546739e-02 -4.78921011e-02\\n-2.11110383e-01 3.74496222e-01 -6.62006661e-02 2.96677172e-01\\n-3.50882351e-01 -8.51272643e-02 -1.75669998e-01 3.67360413e-01\\n-2.15998873e-01 7.95202330e-02 -2.02307671e-01 -1.73227817e-01\\n2.64794588e-01 -2.99330726e-02 -2.88601816e-01 1.46336690e-01\\n-1.69258371e-01 -3.72412890e-01 -5.34136295e-02 2.86150038e-01\\n-7.18535930e-02 2.40660787e-01 -7.91440904e-03 -2.43195161e-01\\n6.16859376e-01 2.32804537e-01 1.75864786e-01 -8.77660960e-02\\n2.33936548e-01 -1.34195700e-01 2.07541451e-01 1.04980908e-01\\n-6.16721690e-01 3.67995650e-01 5.93945682e-02 -2.19605178e-01\\n-6.50748461e-02 3.87051553e-02 3.59056234e-01 -3.41879725e-01\\n-1.45024946e-02 -1.88266128e-01 -4.42677915e-01 -2.63667941e-01\\n-3.89260769e-01 6.29443973e-02 4.58746165e-01 -4.40543085e-01\\n-1.12148382e-01 2.77727991e-01 -4.05008107e-01 -1.12296559e-01\\n2.15412498e-01 9.84625295e-02 6.84249699e-02 9.08980984e-03\\n-2.21950993e-01 -5.63495874e-01 -7.51058534e-02 -4.34386998e-01\\n-4.92696047e-01 -4.73192818e-02 -1.45388290e-01 1.39131650e-01\\n9.06418934e-02 1.39880367e-02 -2.04092413e-01 1.65466547e-01\\n-3.22942495e-01 2.59347558e-02 2.83406019e-01 1.23026878e-01\\n3.04282933e-01 -6.30941913e-02 -3.59879136e-01 4.47466701e-01\\n-1.64517462e-01 5.59055567e-01 2.73798078e-01 -8.66732240e-01\\n5.23216546e-01 2.45192647e-01 5.32536693e-02 -3.67859036e-01\\n4.53416854e-01 -4.40466046e-01 -7.33164698e-02 1.47743076e-01\\n-2.90464044e-01 -2.46145323e-01 4.07043546e-01 -1.68604657e-01\\n-3.05155039e-01 6.04871511e-01 1.18511193e-01 9.48405489e-02\\n3.68648946e-01 -3.71465057e-01 -9.56733972e-02 -4.35774960e-02\\n-1.60924137e-01 -2.80791670e-01 -4.62958634e-01 7.80435205e-02\\n-3.76063362e-02 -5.57379663e-01 -1.14087000e-01 -4.08542424e-01\\n-2.07444564e-01 -4.24181134e-01 -2.33415201e-01 3.89977008e-01\\n1.97218031e-01 1.97779298e-01 1.43657895e-02 -4.51482832e-02\\n2.65643764e-02 -6.34194791e-01 -1.53209150e-01 8.87560546e-02\\n4.65962321e-01 3.27740252e-01 8.63982216e-02 -9.29679722e-02\\n1.93327636e-01 4.23713714e-01 -2.67291337e-01 -4.91059750e-01\\n6.89228922e-02 1.82103813e-01 -8.11644420e-02 -2.45632216e-01\\n1.31995276e-01 4.50853109e-01 -2.36140698e-01 -2.71785464e-02\\n-1.15942933e-01 8.25744569e-02 2.74269819e-01 9.15244571e-04\\n-3.43991727e-01 -1.91174507e-01 -3.67682949e-02 2.21812919e-01\\n-5.12260556e-01 -1.53449893e-01 6.17452383e-01 2.46609971e-01\\n1.39589131e-01 1.13028042e-01 2.01999083e-01 -8.87542367e-02\\n-1.47878543e-01 -1.35743052e-01 1.18295714e-01 1.77506268e-01\\n9.96099636e-02 -2.18492355e-02 -1.04191110e-01 -5.38566411e-01\\n-3.63223028e+00 -2.48318434e-01 1.23011172e-01 -2.97636628e-01\\n1.73337847e-01 -2.01220647e-01 9.90804099e-03 -1.04213348e-02\\n-2.93179363e-01 5.38801923e-02 -5.41438647e-02 -1.91186607e-01\\n1.61860008e-02 2.59003848e-01 1.71015203e-01 1.96340799e-01\\n1.02441713e-01 -2.22837582e-01 -1.25764221e-01 3.91373068e-01\\n-8.62333179e-02 -6.23590589e-01 7.30433762e-02 2.18037646e-02\\n1.67354256e-01 1.22122698e-01 -3.25674981e-01 -7.32889101e-02\\n-2.77734250e-01 -3.02478254e-01 4.52316590e-02 -2.19229281e-01\\n-2.10302934e-01 4.27380711e-01 7.83522874e-02 -5.85792623e-02\\n1.49114221e-01 -2.66069293e-01 -1.24605194e-01 -3.92007917e-01\\n-5.85862510e-02 -5.88688672e-01 8.49066824e-02 -1.08346269e-01\\n6.04631603e-01 -3.02593023e-01 2.64130652e-01 1.94325209e-01\\n2.09366560e-01 1.22391090e-01 -3.12830992e-02 -7.86277000e-03\\n-3.28859806e-01 -3.84466529e-01 -8.38222578e-02 -2.64570713e-01\\n5.84750473e-01 4.90022510e-01 -1.49299517e-01 1.13283889e-02\\n3.21341902e-02 -2.96095818e-01 -2.85100847e-01 -5.17183483e-01\\n-1.37115568e-01 -1.25382081e-01 -7.54838407e-01 -4.61840749e-01\\n-7.07066283e-02 -7.53233656e-02 -6.73847497e-02 5.89991331e-01\\n-2.77730733e-01 -5.03674746e-01 -4.36047502e-02 -4.74973142e-01\\n1.97831661e-01 -1.75786585e-01 2.53115501e-02 -1.50665998e-01\\n-2.91678071e-01 -5.68544865e-01 4.44304235e-02 -8.26329663e-02\\n-1.97512090e-01 -2.26414055e-01 -6.39177952e-03 -2.34245256e-01\\n-2.93168575e-01 -3.71051311e-01 5.48805773e-01 -2.08755620e-02\\n4.42485869e-01 1.81311980e-01 3.54244053e-01 1.61220104e-01\\n3.48707914e-01 -9.91856977e-02 9.45963636e-02 -4.31168675e-01\\n9.57706273e-02 3.04020196e-02 5.36363661e-01 -3.13812315e-01\\n1.08224452e-01 1.35071158e-01 -2.50039935e-01 -6.03334270e-02\\n5.34806371e-01 1.28235249e-02 4.65260893e-02 -1.67315483e-01\\n2.49079183e-01 -3.71447951e-01 -2.49211237e-01 1.51295096e-01\\n3.21745649e-02 6.94508255e-01 1.36206210e-01 -4.17854905e-01\\n-3.07413757e-01 5.00047207e-01 -1.53399214e-01 -1.24105386e-01\\n-3.53554264e-02 1.84260011e-01 -1.30301863e-01 2.33473346e-01\\n7.62472525e-02 -2.20590860e-01 -2.43001595e-01 -1.26569688e-01\\n-3.43440357e-03 1.99069157e-01 2.97547430e-01 3.23313698e-02\\n-1.70508951e-01 -1.22233480e-01 -1.44851699e-01 9.20918509e-02\\n2.38438562e-01 2.35201165e-01 2.75661588e-01 -2.17595160e-01\\n2.31459569e-02 2.30425447e-01 -2.05061272e-01 2.52180129e-01\\n-1.62024006e-01 8.46617892e-02 -5.05828857e-01 -2.05234140e-01\\n-1.18215449e-01 -3.85447651e-01 1.18266381e-01 3.32586259e-01\\n8.92271921e-02 2.24183401e-04 2.76926681e-02 -5.03607392e-01\\n4.92749035e-01 1.47798717e-01 2.49933630e-01 1.68704271e-01\\n1.77671298e-01 4.95605230e-01 1.16541550e-01 -4.82734665e-02\\n-2.48070523e-01 9.12688822e-02 -1.52055979e-01 -3.75382960e-01\\n3.01338558e-04 -4.14072514e-01 -1.57678753e-01 3.44575495e-01\\n1.70010835e-01 -1.90072179e-01 -2.84261644e-01 2.56736100e-01\\n1.30369648e-01 -3.84678215e-01 -1.74450547e-01 7.38125592e-02\\n2.70602793e-01 5.08744940e-02 2.19526991e-01 -3.58422816e-01\\n-6.10174760e-02 -2.81086098e-02 -9.75142717e-02 5.30029655e-01\\n1.36423498e-01 4.97580208e-02 -2.36727763e-02 -1.66133180e-01\\n4.44046766e-01 -2.66087893e-02 -7.27486536e-02 -2.02006266e-01\\n6.11392632e-02 -2.51376927e-01 -3.50322753e-01 1.66946184e-02\\n5.90871722e-02 -2.00599506e-01 6.76972717e-02 -2.28887852e-02\\n1.13892131e-01 -1.26790069e-02 -4.79600459e-01 -3.52696151e-01\\n-4.04846847e-01 -1.85438231e-01 4.49339002e-02 -3.70767206e-01\\n1.00248843e-01 -3.13807316e-02 -5.92224061e-01 2.83705026e-01\\n-2.93832839e-01 -5.96121559e-03 1.01463810e-01 1.47316128e-01\\n-2.98236549e-01 -7.38506094e-02 4.48064171e-02 2.71119803e-01\\n-2.70901382e-01 -3.19487840e-01 -3.44422199e-02 -8.67413938e-01\\n1.51744828e-01 1.73017830e-01 2.11656149e-02 2.16542725e-02\\n1.04018748e-01 -6.43671274e-01 9.19854566e-02 -3.52474988e-01\\n9.72521231e-02 2.44176462e-02 -2.21351787e-01 -3.25673521e-01\\n1.12020433e-01 -5.71591184e-02 -3.34862530e-01 4.23238724e-01\\n-5.12493134e-01 3.00204307e-01 9.50743929e-02 1.19433634e-01\\n3.65326554e-02 -2.80564070e-01 2.22188964e-01 -2.86903679e-01\\n-3.71369958e-01 -3.25800389e-01 -3.90634000e-01 -1.91801488e-01\\n3.53064872e-02 -2.49800295e-01 -1.25989333e-01 -7.65667344e-03\\n3.64324480e-01 1.44005790e-01 -1.32653609e-01 -3.22219461e-01\\n6.63034618e-02 -4.54473108e-01 5.47266416e-02 -3.35769951e-01\\n-5.23601100e-02 -6.25429302e-02 2.02311233e-01 -8.47495869e-02\\n7.50792325e-02 -3.10819268e-01 4.70861197e-01 -2.20382854e-01\\n-2.35789955e-01 -3.02785402e-03 1.67593673e-01 -8.32037330e-02\\n2.49866933e-01 -4.98547941e-01 -5.34206023e-03 2.59169996e-01\\n1.20385252e-01 8.09073895e-02 2.39269882e-01 -2.82244273e-02\\n-4.65858430e-02 2.86496103e-01 -4.69025970e-01 8.27265158e-02\\n7.30356455e-01 1.06970862e-01 1.02717876e-01 1.12309754e-01\\n1.86276808e-01 3.89778793e-01 5.31576395e-01 2.55094972e-02\\n1.63058241e-04 3.19669425e-01 8.92798677e-02 -5.40350258e-01\\n-1.18361942e-01 -2.10010946e-01 -1.93972141e-01 -2.95819998e-01\\n6.29354835e-01 3.82503211e-01 -3.22737843e-01 -2.65038162e-01\\n-6.59483373e-02 -1.99453056e-01 2.13707060e-01 -2.46348213e-02\\n-1.45103596e-02 -1.70559406e-01 4.82283980e-01 8.70746747e-02\\n2.78742999e-01 5.73608279e-01 -1.34901717e-01 -3.07055265e-01\\n-6.20860830e-02 1.65451825e-01 9.75896791e-02 4.62338954e-01\\n-1.49793476e-01 2.91735053e-01 -4.60608490e-02 1.01031996e-01\\n-5.00336699e-02 3.15064609e-01 2.91298658e-01 3.17916274e-02\\n2.18237370e-01 3.09096952e-03 3.25919360e-01 5.11963665e-01\\n1.22334339e-01 5.66922963e-01 3.24524105e-01 8.39240402e-02\\n2.22689942e-01 5.97432077e-01 4.15673792e-01 1.00130141e-01\\n-6.96472637e-03 1.18396632e-01 4.73090447e-02 -1.63954467e-01\\n3.52043450e-01 3.71894509e-01 4.02830958e-01 8.73272836e-01\\n4.07070547e-01 2.56046772e-01 7.72083342e-01 -7.23887324e-01\\n-3.69417638e-01 7.30154710e-03 4.58618850e-01 -2.04419434e-01\\n-1.94462210e-01 1.49393976e-01 -3.73320520e-01 1.45938262e-01\\n-5.30088246e-01 -1.01959743e-01 -2.98791490e-02 8.41007847e-03\\n7.08038658e-02 -5.03020249e-02 -7.51961097e-02 1.19263813e-01\\n-1.73719645e-01 -2.23335788e-01 -3.83662969e-01 -7.15821534e-02\\n-3.65560561e-01 -1.71088472e-01 -4.74364460e-02 -4.79151495e-02\\n-1.93517163e-01 -4.50670511e-01 -1.15983836e-01 -2.06306949e-02\\n2.67740726e-01 -1.26711100e-01 -1.64526924e-01 -2.33695567e-01\\n4.80525978e-02 3.48794460e-01 5.46011925e-01 1.76872555e-02\\n1.33583203e-01 -1.35316074e-01 -2.04951659e-01 2.31648739e-02\\n8.49630311e-02 2.12436654e-02 6.22112453e-02 4.65767115e-01\\n-3.20804715e-01 3.50330956e-02 1.32102042e-01 2.56604135e-01\\n-4.08121884e-01 -8.25815648e-02 5.80006605e-03 3.01260024e-01\\n1.14891129e-02 2.16569066e-01 -1.01792328e-01 3.38255614e-02\\n-9.78625417e-02 -5.31390786e-01 4.62456644e-01 -3.06708485e-01\\n-1.63760021e-01 2.28597075e-01 2.52152473e-01 2.44377643e-01\\n-2.11112455e-01 -1.11578085e-01 3.50518599e-02 2.76156127e-01\\n3.97960842e-03 3.99432927e-01 -2.37451538e-01 -2.59536713e-01\\n-3.04405153e-01 2.89033234e-01 -1.76271901e-01 1.37317300e-01\\n-1.98353559e-01 3.02739948e-01 6.85798228e-02 1.59886301e-01\\n1.22045316e-01 -4.28921916e-03 -2.36808151e-01 -1.48258537e-01\\n-3.43816906e-01 -2.28613287e-01 8.62671211e-02 2.46076584e-02\\n2.34084219e-01 -2.79697269e-01 -8.67514387e-02 -5.88822886e-02\\n-2.00481609e-01 -3.32225114e-01 -9.87628251e-02 -4.22144942e-02]]',\n", + " 'Job Informationen Your Tasks: - Build, scale and maintain solutions based on Hadoop and/or other NoSQL systems - Write and tune complex near-real-time and batch data pipelines with Spark or Java MapReduce - Explore available technologies to provide business support to our clients - Work closely with customers and other stakeholders in an agile environment Your Profile: - Bachelor or Master in Computer Science / Information Management or related field - Proficient in OOP (Java) and FP (Scala, Clojure), willing to learn new programing languages - Experience in Big Data technologies (Hadoop, Spark, Kafka, HBase) - Knowledge of real-time processing systems like Storm, Spark Streaming or others - Knowledge and experience in agile software development - Superb problem-solving skills - You are a proactive team player with the ability to work independently and accurately in interdisciplinary projects - Knowledge of data structures and algorithms for Big Data, Machine Learning is a plus - Very good skills in German and English, French would be an asset Benötigte Skills OO-Design / Analyse JAVA Scala',\n", + " '[\"Proactivity\", \"Problem Solving\"]',\n", + " '[\"Real Time Data\", \"Business Support Systems\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Spark Streaming\", \"Scale (Map)\", \"Scala (Programming Language)\", \"MapReduce\", \"Maintainability\", \"Real Time Systems\", \"Transaction Processing Systems\", \"Machine Learning Methods\", \"Agile Software Development\", \"Clojure\", \"Project-Based Solutions\", \"Information Management\", \"Big Data\", \"Data Structures\", \"Software Development\", \"Algorithms\", \"Apache HBase\", \"Amazon Data Pipeline\", \"Writing Systems\", \"Java (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English', 'Macedonian', 'Kalaallisut', 'Tswana', 'Macedonian']\"],\n", + " ['146',\n", + " 'data entry analyst persian mother tongue',\n", + " 'Lugano',\n", + " '',\n", + " '',\n", + " '[[-2.33808860e-01 3.09297234e-01 5.43240368e-01 3.36553939e-02\\n6.23574734e-01 -3.16841230e-02 1.21177398e-01 3.30645770e-01\\n-4.58654873e-02 -1.20653957e-01 -1.30789042e-01 -4.67110099e-03\\n1.66565701e-01 1.70944557e-02 2.89377809e-01 2.37423137e-01\\n3.65137219e-01 1.19189806e-01 -6.43271813e-03 1.12552240e-01\\n8.84640142e-02 -6.37717098e-02 3.40526134e-01 3.77358675e-01\\n5.12227535e-01 2.99215782e-02 -1.09532043e-01 9.22342241e-02\\n-4.38653320e-01 -2.63905227e-01 3.50567013e-01 6.30657328e-03\\n-9.21074226e-02 -1.06360234e-01 8.82983878e-02 -7.06975088e-02\\n-2.32329622e-01 -1.47536382e-01 -1.95641965e-02 -1.06167328e-02\\n-8.80594477e-02 -1.45947278e-01 -4.04466642e-03 -1.28193181e-02\\n-3.85445684e-01 -3.06215912e-01 -2.00284824e-01 1.23403557e-01\\n-1.04378022e-01 -1.04404181e-01 -4.34259921e-01 3.68120849e-01\\n-1.13452651e-01 -2.61326909e-01 1.02561601e-01 6.82463646e-01\\n-4.89488468e-02 -3.94375652e-01 -1.27662361e-01 -1.31194666e-01\\n9.29144621e-02 -1.25856608e-01 1.53275877e-01 -5.00015095e-02\\n4.12004352e-01 -1.29340187e-01 -6.54253960e-02 4.77167308e-01\\n-5.94574392e-01 8.67803022e-02 -2.15081528e-01 -1.03547335e-01\\n-4.08942670e-01 5.81261851e-02 -3.67433012e-01 -2.07869515e-01\\n-4.03857529e-02 2.66654789e-01 5.72253056e-02 1.00670800e-01\\n8.97154957e-02 1.58414572e-01 5.42169251e-02 8.64914712e-03\\n1.59756973e-01 3.47066909e-01 2.01019108e-01 2.17871845e-01\\n-2.75760293e-01 3.74901026e-01 2.23656341e-01 -2.19682559e-01\\n1.52127132e-01 2.03934573e-02 2.78651536e-01 -4.73554954e-02\\n-1.09268703e-01 4.17950414e-02 -9.41683352e-02 -1.10756215e-02\\n7.51458108e-02 -1.74211964e-01 5.19423746e-02 1.01549149e-01\\n-2.10697144e-01 2.94871274e-02 -8.10528994e-02 3.21722209e-01\\n-3.89995337e-01 4.50834751e-01 -7.81309828e-02 -1.51887745e-01\\n1.15958303e-01 -5.86245298e-01 -2.33906120e-01 3.95503230e-02\\n1.08723484e-01 4.43533093e-01 1.55618310e-01 3.68271708e-01\\n2.10805908e-01 9.79845971e-02 2.77927995e-01 7.84835994e-01\\n3.88532062e-03 9.54128951e-02 -1.29597649e-01 2.86732376e-01\\n2.23584190e-01 -2.04867035e-01 1.15944035e-01 5.98165058e-02\\n6.37730658e-02 6.93881437e-02 -1.08216226e-01 -4.21203561e-02\\n-1.78721786e-01 -2.14272887e-01 -3.34381051e-02 4.86620776e-02\\n-3.90671253e-01 -4.54125583e-01 3.38166565e-01 -4.14403295e-03\\n1.52207181e-01 -1.08922891e-01 -8.90191495e-02 2.25098282e-01\\n1.21401856e-02 3.68987411e-01 7.06873834e-02 1.37168884e-01\\n-2.91465253e-01 -1.50768980e-01 -2.18957901e-01 3.03733468e-01\\n-1.16495907e-01 -8.60223845e-02 -2.53346652e-01 -6.58316761e-02\\n3.57666492e-01 7.22824782e-02 -2.84062952e-01 2.43034244e-01\\n-1.31714433e-01 -2.84241766e-01 -1.30841285e-01 2.23324791e-01\\n-2.09345758e-01 1.54233739e-01 -4.65910286e-02 -3.27247649e-01\\n2.26309314e-01 3.35241593e-02 5.29413782e-02 6.94742706e-03\\n2.16540739e-01 -1.20081559e-01 2.55294830e-01 1.18141025e-01\\n-7.34030724e-01 3.69124383e-01 -6.32819682e-02 -2.02157855e-01\\n7.30583519e-02 4.72062267e-02 2.75613397e-01 -1.04698695e-01\\n1.07737787e-01 -2.18604103e-01 -1.53831944e-01 -2.54583091e-01\\n-1.68759063e-01 7.70743703e-03 2.78747648e-01 -4.57173228e-01\\n-9.77649018e-02 1.50359914e-01 -2.32525408e-01 1.95299070e-02\\n2.17273682e-01 1.16197206e-01 1.37703598e-01 1.64431959e-01\\n-1.76519766e-01 -3.49614322e-01 1.32711262e-01 -2.90237606e-01\\n-1.47235155e-01 4.16317023e-02 -1.38245940e-01 1.55262336e-01\\n2.18748286e-01 8.48300382e-02 1.00115433e-01 1.28885567e-01\\n-2.01272190e-01 -7.84163401e-02 1.85827717e-01 2.07579359e-01\\n3.92107993e-01 -1.48599327e-01 -1.97065055e-01 4.23552573e-01\\n-2.21959531e-01 3.67547214e-01 3.73147368e-01 -7.68823385e-01\\n3.22789341e-01 2.18722701e-01 2.96536367e-02 -2.14897469e-01\\n5.36003649e-01 -3.43585789e-01 6.79924861e-02 4.19254974e-02\\n-1.59187764e-01 -1.37149483e-01 2.89736062e-01 -9.79861990e-02\\n-2.02412859e-01 4.61794227e-01 7.93674216e-02 2.56792339e-03\\n2.62228727e-01 -2.13372618e-01 -1.03444830e-01 4.40446436e-02\\n-7.25691691e-02 -2.62166828e-01 -4.21965897e-01 -1.24958143e-01\\n-1.04443394e-01 -3.85889560e-01 -1.77229360e-01 -4.19012576e-01\\n2.46882997e-02 -1.30186155e-01 -5.88599369e-02 2.01992691e-01\\n2.22256735e-01 3.24749291e-01 1.04327001e-01 -1.07674971e-01\\n-1.36781663e-01 -4.11558330e-01 -1.10685170e-01 -9.76468027e-02\\n4.70612943e-01 2.53333569e-01 2.23494381e-01 -9.52003598e-02\\n1.07784033e-01 4.66470182e-01 -1.44502148e-01 -3.14272702e-01\\n2.65675992e-01 2.31562555e-01 -3.29469517e-02 -2.34306917e-01\\n-4.80747409e-02 2.35844448e-01 -5.93714528e-02 -1.96420457e-02\\n-7.08553493e-02 3.12330062e-03 2.72002429e-01 -1.83038339e-01\\n-4.76510003e-02 -3.10505837e-01 -1.53738916e-01 2.74114192e-01\\n-3.36123377e-01 -1.09044284e-01 6.65431142e-01 1.14347786e-01\\n1.21611327e-01 2.65562326e-01 2.78779626e-01 -3.16981748e-02\\n4.38396968e-02 7.57417902e-02 8.03291127e-02 9.74092558e-02\\n-1.12735815e-01 -7.08976239e-02 -2.35137507e-01 -5.59416473e-01\\n-4.66306496e+00 -1.08979076e-01 -1.30031005e-01 -2.94217199e-01\\n1.47935614e-01 -3.21586579e-01 2.12511986e-01 4.81008478e-02\\n-2.01069295e-01 8.46371129e-02 -2.60742098e-01 -5.09404577e-02\\n2.79044867e-01 1.40279010e-01 7.33757913e-02 3.62728119e-01\\n1.04446314e-01 -2.09114760e-01 4.25243042e-02 4.32343215e-01\\n-2.52301749e-02 -5.74563503e-01 1.36016667e-01 1.04650326e-01\\n2.84418821e-01 4.33061197e-02 -3.12401325e-01 -8.16985499e-03\\n-3.12173873e-01 -2.07176358e-01 5.87459840e-02 -2.62094617e-01\\n-1.81915641e-01 4.20457989e-01 1.21917650e-02 -3.12243313e-01\\n2.74204195e-01 -2.06577376e-01 5.11861742e-02 -2.72217542e-01\\n6.92866668e-02 -5.18332660e-01 1.47011057e-01 5.48529364e-02\\n4.72166538e-01 -3.27273190e-01 1.23145677e-01 3.19681615e-02\\n1.96088567e-01 1.57970563e-01 -2.48318806e-01 -6.17052279e-02\\n-1.26310706e-01 -1.78924069e-01 -1.04687169e-01 -2.15628311e-01\\n4.05318499e-01 4.56904918e-01 -2.00101808e-01 2.32311964e-01\\n7.16914386e-02 -1.65409207e-01 -3.18525404e-01 -5.51193178e-01\\n-2.15755984e-01 4.93572429e-02 -6.20403588e-01 -6.39935076e-01\\n-3.38405631e-02 1.41883239e-01 -1.04950078e-01 1.03693053e-01\\n-2.48829592e-02 -5.61613739e-01 -5.45332693e-02 -3.98257464e-01\\n2.20349386e-01 1.26738653e-01 6.57426491e-02 -2.41079301e-01\\n-1.57918364e-01 -3.15698028e-01 2.55657643e-01 4.18057404e-02\\n-9.36630666e-02 -5.42739220e-02 1.03616416e-01 -1.96646839e-01\\n-3.66206199e-01 -2.33131647e-01 5.59222460e-01 -1.04544394e-01\\n3.50093752e-01 8.24182034e-02 1.29797719e-02 2.53655076e-01\\n3.30364376e-01 -2.91021824e-01 3.10911477e-01 -3.91887486e-01\\n1.88820571e-01 6.80517033e-02 5.32150924e-01 -3.49181384e-01\\n1.01906814e-01 1.06767854e-02 -3.26699734e-01 -1.09287634e-01\\n4.96038824e-01 1.44503005e-02 -1.76213239e-03 -8.32991526e-02\\n1.16983309e-01 -3.40726435e-01 -2.23119527e-01 1.73958391e-01\\n-1.42131438e-02 4.40690488e-01 8.56911838e-02 -2.14673251e-01\\n-1.35719880e-01 2.12820873e-01 -4.95874844e-02 -8.26197043e-02\\n-2.77504414e-01 1.90921631e-02 -2.53553301e-01 2.95423895e-01\\n1.77791773e-03 -2.04633638e-01 -3.60736132e-01 -2.65948594e-01\\n-9.92810503e-02 5.33737591e-04 4.60856408e-01 2.26309821e-01\\n-1.29152372e-01 -2.46892110e-01 2.27758482e-01 8.59395191e-02\\n3.13515335e-01 4.71085198e-02 4.57771048e-02 -1.52176678e-01\\n1.95387319e-01 3.13223596e-03 -2.58302957e-01 2.66808361e-01\\n-4.26377654e-02 9.06146094e-02 -3.54954243e-01 -2.27521047e-01\\n5.97808398e-02 2.40894593e-03 -1.28886014e-01 2.81829536e-01\\n2.49338821e-01 -1.02415808e-01 -3.20983976e-01 -3.56254995e-01\\n4.58460122e-01 -2.91767180e-01 9.30215120e-02 1.73249841e-01\\n1.50426552e-01 4.16760385e-01 2.01962050e-02 -6.03147969e-02\\n-1.28951564e-01 1.77367404e-01 -5.78675531e-02 -1.67640865e-01\\n-1.09442314e-02 -3.66040975e-01 -1.30462736e-01 1.89480841e-01\\n1.67633802e-01 -1.31400540e-01 9.22771823e-03 3.50130409e-01\\n8.73811394e-02 -4.61268932e-01 -9.71636269e-03 3.64185572e-01\\n3.33365530e-01 1.93395689e-01 9.15321037e-02 -4.35944736e-01\\n-2.10540425e-02 -1.24327131e-01 2.31908765e-02 2.14439392e-01\\n1.83412880e-02 -9.73902494e-02 1.96327567e-01 -3.46817881e-01\\n3.85796487e-01 6.21099509e-02 -9.61049795e-02 2.85170674e-01\\n2.07616836e-02 -1.93891719e-01 -2.29700729e-01 -1.34604648e-01\\n-3.62979830e-03 -1.09176978e-01 2.23440662e-01 -4.29107435e-02\\n-1.36408573e-02 -1.32611707e-01 -3.77421588e-01 -2.25395888e-01\\n-2.76397735e-01 -6.25097798e-03 -1.06393531e-01 -4.16078448e-01\\n-1.83859184e-01 2.84173787e-02 -6.80961967e-01 3.02745521e-01\\n-1.49204358e-01 2.44271941e-02 -6.26711547e-02 -7.41073787e-02\\n-2.13181555e-01 2.31477484e-01 3.91949534e-01 1.18261896e-01\\n-2.84639746e-01 -1.70106396e-01 -2.26399750e-02 -7.04559922e-01\\n2.18232647e-01 7.13617429e-02 5.77714257e-02 6.37285132e-03\\n1.02959707e-01 -3.70802581e-01 2.64183968e-01 -2.56517649e-01\\n-1.82418168e-01 -2.18497068e-01 -8.23013559e-02 -4.59789544e-01\\n-3.98904234e-02 1.31254092e-01 -1.01887211e-01 1.83157817e-01\\n-2.92151213e-01 3.25488657e-01 4.04254012e-02 9.86875743e-02\\n6.85024336e-02 -2.66387850e-01 1.79321259e-01 -2.30635285e-01\\n-1.30357549e-01 -8.12784061e-02 -3.19419265e-01 -5.11546386e-03\\n-1.27284288e-01 -9.52472910e-02 -2.53642738e-01 1.28301889e-01\\n2.16379538e-01 1.46379918e-01 -1.35378793e-01 4.15037870e-02\\n2.66328249e-02 -3.04881692e-01 1.76143944e-02 -3.23559999e-01\\n-1.08497247e-01 1.35648176e-01 2.28200659e-01 -2.50480235e-01\\n-1.55603960e-01 -2.98788697e-01 4.07461911e-01 -4.35049124e-02\\n-3.80467802e-01 -5.77371195e-02 2.30893746e-01 1.62737221e-01\\n2.24840477e-01 -2.71672696e-01 -2.13277742e-01 2.85927922e-01\\n-5.29277436e-02 1.94996580e-01 3.67770493e-01 -1.36694774e-01\\n-2.25496843e-01 2.47037873e-01 -6.64073169e-01 2.40664911e-02\\n6.51193619e-01 1.93626374e-01 1.46150216e-01 1.20486684e-01\\n9.57716033e-02 4.40106601e-01 3.21001232e-01 5.09106517e-02\\n-7.89440572e-02 3.76369655e-01 8.61123949e-03 -6.36708379e-01\\n-1.32524505e-01 -2.85108149e-01 -1.29155263e-01 -3.09000611e-01\\n5.69607675e-01 3.03367615e-01 -1.78281128e-01 -3.40414435e-01\\n-1.19051538e-01 -1.52978301e-01 -2.10100308e-01 -9.76054445e-02\\n2.05252022e-01 -2.54782289e-01 5.14592469e-01 7.28868097e-02\\n7.27265775e-02 5.19460738e-01 -1.05505846e-01 -2.77513087e-01\\n-4.23959084e-02 9.33934599e-02 1.84310794e-01 3.87458205e-01\\n-2.18586400e-01 1.33840933e-01 -4.46976535e-02 7.46507496e-02\\n-2.44730636e-01 -4.42620367e-02 2.12499216e-01 2.49134421e-01\\n1.26214564e-01 3.30748826e-01 9.80568305e-02 3.05219352e-01\\n1.14210479e-01 3.07447374e-01 1.69876754e-01 6.45583170e-03\\n4.18930739e-01 2.31370598e-01 2.65832067e-01 1.28966838e-01\\n1.27394974e-01 -4.94270138e-02 -4.60993983e-02 1.48577377e-01\\n1.25702396e-01 2.43364647e-01 1.50332302e-01 5.34438968e-01\\n1.80927634e-01 1.87779099e-01 5.60525179e-01 -5.51042557e-01\\n-2.88314641e-01 -1.71487659e-01 2.91972876e-01 -3.42066109e-01\\n-1.58509061e-01 4.37907875e-02 -3.97763699e-01 1.81295555e-02\\n-5.46271980e-01 -2.20078394e-01 -3.13274115e-02 -1.45382300e-01\\n7.89665952e-02 -1.87182259e-02 -1.06198385e-01 1.72949210e-01\\n-2.92920507e-02 -2.91448414e-01 -4.50780749e-01 -1.85919598e-01\\n-2.52641171e-01 -1.80955559e-01 1.45836309e-01 -5.40036075e-02\\n-5.55246584e-02 -1.74950883e-01 -6.85604885e-02 -4.47730571e-02\\n2.67204762e-01 -5.25078103e-02 -7.79172555e-02 -1.63347259e-01\\n7.59902522e-02 1.64267153e-01 4.40565765e-01 -9.65118930e-02\\n4.11778726e-02 -1.27003655e-01 -2.18794286e-01 -1.66200604e-02\\n1.89993680e-01 -5.23148477e-02 2.17821146e-03 4.75230247e-01\\n-4.63703394e-01 -2.01971322e-01 5.91380931e-02 2.01938331e-01\\n-4.41181868e-01 2.19353616e-01 2.83650577e-01 2.37983942e-01\\n3.82093489e-02 1.48922503e-01 -2.79797494e-01 -8.42603222e-02\\n-2.18456134e-01 -5.86540401e-01 1.91370279e-01 1.10814802e-03\\n-1.05104148e-01 1.72620311e-01 6.06690049e-02 2.28177369e-01\\n-1.38154387e-01 -1.30657688e-01 -1.11243941e-01 1.59763962e-01\\n2.57772595e-01 2.20099986e-01 -1.85099408e-01 -8.06880519e-02\\n-3.02436560e-01 2.36763895e-01 8.56062323e-02 1.52100638e-01\\n-2.82403409e-01 1.64937153e-01 7.42821321e-02 3.79125923e-01\\n-1.27955051e-02 -2.15920076e-01 -1.72276691e-01 -2.56177127e-01\\n-2.07654431e-01 -2.60421157e-01 1.51830241e-01 -1.43889934e-01\\n2.56129414e-01 -1.57497659e-01 -3.70720103e-02 -1.73953906e-01\\n-2.97358423e-01 -5.18601060e-01 1.68270245e-02 -7.05176964e-02]]',\n", + " \"For banking consulting company of Lugano we're looking for a DATA ENTRY ANALYST Tasks: - data entry - use of Excel to manage tables, data and filters - back office activities, database management, customer master data update Requirements: - Commercial/ IT/ Legal/ Economic Degree - Languages: English (level C1 / C2), and Persian (excellent / mother tongue) - Excellent computer skills: Office package, excellent knowledge of Excel - Motivation, spirit of initiative, responsibility - 100% immediate availability EnglishPersianExcelData analystMaster data \",\n", + " '[\"Data Entry\", \"Consulting\"]',\n", + " '[\"Customer Acquisition Management\", \"Economics\", \"Banking\", \"Activism\", \"Configuration Management Databases\", \"Data.table\", \"Levelling\", \"Commercialization\", \"Clinical Data Management\"]',\n", + " \"['English', 'Quechua', 'Ewe', 'Latin', 'Haitian Creole']\"],\n", + " ['84',\n", + " '80-100 % big data engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.81682283e-01 1.87439248e-01 3.78687590e-01 -9.20532122e-02\\n4.65552360e-01 -1.86292648e-01 -1.03126965e-01 4.09185469e-01\\n-9.91664678e-02 -3.44218522e-01 -9.42712277e-02 -3.13977182e-01\\n-8.13111141e-02 -2.09418163e-02 7.14641884e-02 3.62932414e-01\\n2.88181782e-01 1.17923304e-01 -2.05840036e-01 3.03905725e-01\\n1.28349602e-01 1.06518343e-02 1.84759889e-02 7.04880357e-01\\n3.96651596e-01 -3.75896245e-02 -6.79190233e-02 2.37256270e-02\\n-1.52573973e-01 -2.66867161e-01 3.65560502e-01 5.41643500e-02\\n-1.01666622e-01 -2.88677394e-01 4.81687151e-02 9.30703580e-02\\n-1.49658442e-01 3.65504473e-02 3.13525163e-02 2.55309969e-01\\n-5.08893847e-01 -3.29447091e-01 2.25316342e-02 7.29183257e-02\\n-2.19757706e-01 -3.71561944e-01 3.20956819e-02 1.30445078e-01\\n6.98887035e-02 9.01966467e-02 -5.67618132e-01 3.31610709e-01\\n-2.67561972e-01 -2.26368055e-01 1.80796921e-01 5.39060473e-01\\n3.76961306e-02 -3.72882247e-01 -4.12207127e-01 -2.46067509e-01\\n1.06765896e-01 -1.20766044e-01 2.99297459e-02 -2.38689005e-01\\n3.78937066e-01 -6.49741068e-02 -1.02940902e-01 4.59121317e-01\\n-7.38302171e-01 -8.90221596e-02 -1.21141143e-01 2.40087584e-02\\n-3.80735219e-01 -6.47153184e-02 -2.30198354e-01 -2.69460171e-01\\n-6.53617457e-02 3.97915542e-01 8.39829743e-02 9.82755572e-02\\n-1.99056327e-01 3.11835259e-01 -1.20288521e-01 2.47768849e-01\\n2.14087307e-01 2.05352619e-01 1.60445243e-01 3.05022538e-01\\n-3.05854291e-01 4.58371311e-01 1.60755336e-01 -3.47015738e-01\\n2.80510992e-01 -7.56255118e-03 5.19158781e-01 1.10481985e-01\\n4.10591736e-02 1.71833307e-01 -2.23974124e-01 2.18977392e-01\\n1.57224223e-01 -3.87489855e-01 8.65556970e-02 -8.33296776e-02\\n-1.64042473e-01 4.14208844e-02 9.02520642e-02 2.84580916e-01\\n-3.39608371e-01 4.39265937e-01 1.29513949e-01 -1.51143163e-01\\n-1.26930065e-02 -5.44422209e-01 -1.90857962e-01 6.43250393e-03\\n-3.23670879e-02 8.35273042e-02 2.72829771e-01 1.87919125e-01\\n2.38900766e-01 9.56967101e-02 1.47793144e-01 8.86133730e-01\\n-1.14433043e-01 4.31088805e-02 -2.62481630e-01 4.34997737e-01\\n2.51022458e-01 -3.09823811e-01 2.90539324e-01 2.31960475e-01\\n1.19503036e-01 -5.44317327e-02 -1.60798833e-01 3.19623142e-01\\n-5.66789545e-02 -1.41533360e-01 -3.97436708e-01 6.99721202e-02\\n-1.78498641e-01 -4.34312552e-01 5.08250833e-01 2.17256799e-01\\n2.05564141e-01 -1.41602587e-02 -1.28717333e-01 -1.69660240e-01\\n-1.49079366e-02 2.54221410e-01 -6.53697997e-02 1.62178114e-01\\n-4.28333789e-01 -1.59982666e-01 -2.46281758e-01 3.14624995e-01\\n-1.70222208e-01 7.33694583e-02 -5.17296493e-02 -4.29650098e-02\\n3.51431906e-01 -6.85328618e-02 -2.26694062e-01 1.20248534e-01\\n-7.89054781e-02 -2.05864400e-01 -2.59980746e-02 2.09028810e-01\\n-1.69362307e-01 2.09980562e-01 1.33059975e-02 -2.18072042e-01\\n4.94887114e-01 1.82122529e-01 2.59861737e-01 -1.42043263e-01\\n2.42614150e-01 -1.20078541e-01 1.82521001e-01 1.57891080e-01\\n-7.17908204e-01 2.61305302e-01 -4.53082584e-02 -9.26863849e-02\\n7.00953156e-02 6.66160807e-02 3.00857097e-01 -2.73948014e-01\\n1.28727481e-02 -9.85597372e-02 -3.99046302e-01 -3.29872727e-01\\n-2.79651791e-01 3.39298844e-02 4.55814242e-01 -4.40481305e-01\\n-1.18771404e-01 1.00911535e-01 -4.58244294e-01 -8.32259306e-04\\n1.58540413e-01 1.14616744e-01 1.14106834e-02 1.04304785e-02\\n-1.88365057e-01 -5.57683170e-01 -1.62497442e-02 -3.74170601e-01\\n-4.39014345e-01 3.88793796e-02 -2.58027673e-01 2.85359174e-01\\n6.09448599e-03 3.41191329e-02 -1.48458496e-01 1.63488805e-01\\n-2.84468472e-01 -5.49664497e-02 2.03651160e-01 1.62950233e-01\\n3.82934213e-01 -7.22968429e-02 -2.99684167e-01 4.54713196e-01\\n-1.31517753e-01 5.61476052e-01 3.01445395e-01 -8.29640687e-01\\n5.34583926e-01 2.92785764e-01 5.23939840e-02 -4.57767040e-01\\n6.55192673e-01 -3.57430845e-01 -4.01242822e-02 1.16010033e-01\\n-4.15295869e-01 -2.48563915e-01 3.08653146e-01 -1.14852540e-01\\n-2.03349039e-01 6.49143338e-01 1.82170078e-01 1.66246202e-02\\n2.51806527e-01 -3.68780583e-01 -1.39038146e-01 -4.43818122e-02\\n-9.73315313e-02 -3.27394366e-01 -3.91553491e-01 1.57248020e-01\\n-3.70549969e-02 -5.20157874e-01 -1.42571807e-01 -2.68171310e-01\\n-1.31856367e-01 -3.14191967e-01 -2.49039829e-01 3.29810739e-01\\n2.57146686e-01 8.29710811e-02 7.98954368e-02 -1.31496906e-01\\n-1.24418929e-01 -4.90043670e-01 -2.14134872e-01 1.03108715e-02\\n4.37444091e-01 1.76421762e-01 1.68174326e-01 2.40344089e-02\\n4.30144705e-02 5.00279129e-01 -2.40268573e-01 -3.10540915e-01\\n1.06540583e-01 2.29071781e-01 8.34115148e-02 -8.20387527e-02\\n7.64636248e-02 3.52174014e-01 -2.71961361e-01 5.37464097e-02\\n-9.30243433e-02 7.69924968e-02 3.30284983e-01 1.13681413e-01\\n-2.72806823e-01 -2.85369754e-01 4.38208953e-02 2.02752635e-01\\n-5.22453725e-01 -1.84741035e-01 5.91263771e-01 2.28405595e-01\\n2.27325603e-01 1.57906175e-01 2.36606956e-01 -1.38043642e-01\\n-1.83473587e-01 -1.86496660e-01 1.59459963e-01 9.41218883e-02\\n9.03658867e-02 -5.06203882e-02 -9.35831740e-02 -4.63430852e-01\\n-3.51222777e+00 -3.39940667e-01 1.41368419e-01 -2.01553836e-01\\n1.79616809e-01 -1.59183890e-01 -4.75250222e-02 -5.72079234e-02\\n-2.58935273e-01 5.57813458e-02 -1.11103632e-01 -1.76130205e-01\\n9.88007262e-02 1.86769739e-01 5.69279194e-02 3.30149025e-01\\n7.22625330e-02 -1.25331014e-01 -6.90699741e-02 3.00844401e-01\\n-1.57895550e-01 -5.67462921e-01 2.89531499e-01 1.50842862e-02\\n2.38738105e-01 2.09774509e-01 -2.41199821e-01 -1.21639065e-01\\n-1.74192265e-01 -2.69392967e-01 -1.69770699e-02 -2.59119660e-01\\n-7.48209730e-02 3.74560148e-01 1.99699238e-01 -1.46766067e-01\\n1.51672840e-01 -1.99217364e-01 -9.08219367e-02 -3.24112803e-01\\n1.03076294e-01 -5.82843482e-01 4.10234295e-02 -1.10499337e-01\\n7.35707581e-01 -3.72934222e-01 9.85198170e-02 1.13814123e-01\\n1.70093358e-01 1.54166698e-01 -4.37744670e-02 -5.79858795e-02\\n-2.32860044e-01 -3.09749514e-01 2.41682678e-02 -2.44319841e-01\\n3.98189783e-01 6.48414373e-01 -1.55443147e-01 2.73626093e-02\\n1.36509091e-01 -2.32730895e-01 -3.34012479e-01 -4.21371698e-01\\n-2.09066048e-01 -2.22388372e-01 -6.53625429e-01 -4.18155164e-01\\n-7.02583715e-02 -8.34598914e-02 -1.47140250e-01 5.04647255e-01\\n-2.81953305e-01 -4.98255044e-01 -3.84789556e-02 -5.14872432e-01\\n1.81560144e-01 -2.11801946e-01 -1.18386326e-02 -1.03273921e-01\\n-2.04302654e-01 -5.05156219e-01 1.15951508e-01 -1.85347516e-02\\n-1.65169775e-01 -1.97355598e-01 1.36787565e-02 -2.94152409e-01\\n-2.69036382e-01 -3.56543005e-01 4.13319468e-01 8.73599127e-02\\n3.34432125e-01 1.89929098e-01 2.30493382e-01 1.15978606e-01\\n3.26198608e-01 -2.42779553e-01 9.66179296e-02 -3.48026633e-01\\n1.22885793e-01 -6.63173944e-02 4.91252631e-01 -3.56657535e-01\\n3.09072733e-02 1.39490083e-01 -1.10084392e-01 -5.32138050e-02\\n3.75823230e-01 4.26450260e-02 3.07371151e-02 -2.48145089e-01\\n2.45513976e-01 -4.79674399e-01 -1.90572053e-01 1.41397581e-01\\n-1.43337389e-02 5.81430793e-01 -6.35461211e-02 -4.18386042e-01\\n-3.26144159e-01 4.31512624e-01 -1.15515575e-01 -2.26462215e-01\\n-1.69223905e-01 1.58595815e-01 -2.43895203e-01 2.48625770e-01\\n2.16574445e-02 -1.44487783e-01 -3.37845683e-01 -1.43787146e-01\\n1.58879049e-02 2.38049299e-01 2.92574406e-01 8.81149620e-02\\n-1.16599044e-02 -2.34309331e-01 -4.29652445e-02 1.05158407e-02\\n3.14128369e-01 3.72499615e-01 1.57420799e-01 -1.44633055e-01\\n7.85493292e-03 2.70905346e-01 -1.95501029e-01 1.88757151e-01\\n-2.66153365e-01 -9.01772305e-02 -4.01636153e-01 -2.72401780e-01\\n-1.88193783e-01 -2.49208495e-01 7.34248236e-02 3.17148924e-01\\n1.66256353e-01 7.33621593e-04 -9.29704905e-02 -4.20981050e-01\\n4.11930948e-01 -2.92266998e-02 4.97211628e-02 1.76947817e-01\\n8.70722309e-02 5.59732854e-01 2.37652306e-02 4.94923480e-02\\n-6.12579957e-02 -2.05380786e-02 -1.97995961e-01 -1.74014151e-01\\n2.63751391e-03 -3.72215480e-01 -1.05852343e-01 4.10467148e-01\\n7.62668028e-02 -3.28825474e-01 -2.02972203e-01 2.67775565e-01\\n9.44284350e-03 -2.26405457e-01 -1.88684821e-01 1.36651397e-01\\n2.63447940e-01 1.05610885e-01 2.51618505e-01 -3.83182526e-01\\n-1.43158495e-01 6.80491477e-02 -1.43654123e-01 4.91694003e-01\\n1.26632750e-01 1.29412934e-01 -1.68087885e-01 -2.91408539e-01\\n3.64251643e-01 -2.85495669e-01 -8.35412666e-02 -7.20552057e-02\\n1.13631841e-02 -1.11289315e-01 -4.00889218e-01 8.02551676e-03\\n-1.04714399e-02 -2.22693965e-01 1.19676866e-01 3.14981043e-02\\n1.17467605e-01 1.89744942e-02 -5.11763334e-01 -4.07842547e-01\\n-3.15082014e-01 -1.13633662e-01 2.85114013e-02 -3.16405892e-01\\n7.86746442e-02 -9.18532610e-02 -6.21863842e-01 2.41906807e-01\\n-4.02308345e-01 3.30269290e-03 6.47828281e-02 4.32109982e-02\\n-3.25767666e-01 -6.62075728e-02 2.00399503e-01 2.76892632e-01\\n-2.67506242e-01 -2.31497988e-01 6.50933385e-02 -8.30649853e-01\\n1.14963427e-01 5.48938662e-02 -5.88104166e-02 7.91099668e-02\\n1.88044906e-02 -4.74236161e-01 1.08255006e-01 -3.20648283e-01\\n-4.79696924e-03 -3.12460796e-03 -1.64286539e-01 -3.72082293e-01\\n1.36209413e-01 1.64436717e-02 -2.81079352e-01 5.17635047e-01\\n-4.34610128e-01 2.39547580e-01 -5.04855579e-03 1.90886959e-01\\n1.12567827e-01 -2.24946067e-01 1.88082799e-01 -2.98851460e-01\\n-4.49494392e-01 -2.04969004e-01 -3.46500665e-01 -2.61933208e-01\\n1.31463008e-02 -2.29911402e-01 -1.80052385e-01 5.96170053e-02\\n3.02282751e-01 8.32196027e-02 -4.16758209e-02 -2.50092417e-01\\n8.26637968e-02 -3.63348603e-01 1.58640474e-01 -2.08799839e-01\\n-1.36584982e-01 -4.39401679e-02 7.83236250e-02 -2.32604742e-02\\n-7.35894963e-02 -2.88976789e-01 4.73935336e-01 -2.83161908e-01\\n-3.19745779e-01 -5.67997918e-02 7.33129457e-02 -2.45973486e-02\\n2.82018840e-01 -5.67704797e-01 1.08858511e-01 3.03045779e-01\\n1.37220435e-02 1.96467251e-01 1.79652557e-01 -4.40460108e-02\\n-6.94237649e-02 3.69891077e-01 -3.90244603e-01 5.86609170e-03\\n8.02094579e-01 5.46152256e-02 8.49995464e-02 2.47874409e-01\\n1.70607224e-01 2.67486274e-01 4.51526225e-01 1.08738169e-01\\n-1.24682643e-01 2.96537489e-01 -5.31062782e-02 -5.48210204e-01\\n3.61800630e-04 -1.47251800e-01 -2.86359549e-01 -3.83622527e-01\\n5.96291363e-01 4.05626059e-01 -3.22634935e-01 -2.33379662e-01\\n8.13953578e-02 -6.60110265e-02 1.84612885e-01 -2.02021644e-01\\n-1.10165663e-02 -1.30618498e-01 5.07276058e-01 7.64006004e-02\\n2.22455189e-01 5.29187739e-01 -1.78059280e-01 -3.59813988e-01\\n-2.59784646e-02 1.77617088e-01 1.31144509e-01 4.56232935e-01\\n-1.42486736e-01 2.83151388e-01 -7.07604662e-02 1.26259044e-01\\n-2.48981807e-02 2.56730437e-01 1.74402356e-01 6.12107031e-02\\n1.38565123e-01 1.09222770e-01 2.41632119e-01 4.19732094e-01\\n1.91550836e-01 4.70496535e-01 2.85442591e-01 -1.98981948e-02\\n4.03745025e-01 5.71518481e-01 4.77396637e-01 2.36340627e-01\\n-1.10665463e-01 1.25795871e-01 -5.96388131e-02 2.51457226e-02\\n2.28351727e-01 2.71547973e-01 1.72635347e-01 8.57397497e-01\\n4.08165842e-01 1.04865953e-01 7.36067891e-01 -6.63702548e-01\\n-3.88285041e-01 5.44272410e-03 3.17753166e-01 -2.54995018e-01\\n-1.80549815e-01 3.46172713e-02 -3.57195824e-01 1.37795553e-01\\n-4.11722213e-01 -1.20956205e-01 -8.67878348e-02 8.13850611e-02\\n5.58433719e-02 -2.60824617e-02 -2.35767290e-01 5.00595793e-02\\n-1.12795122e-01 -5.18736653e-02 -4.02234316e-01 -7.84496367e-02\\n-2.88421184e-01 -1.93942294e-01 -1.18790202e-01 -2.23139137e-01\\n-1.49630979e-01 -4.22138125e-01 -1.62863314e-01 -2.65843980e-02\\n2.55182385e-01 -5.46712764e-02 -1.11228472e-03 -2.20954075e-01\\n1.17328472e-01 2.92783588e-01 5.43230772e-01 -8.60061496e-02\\n1.61043942e-01 -2.26383060e-01 -2.03628555e-01 4.59833145e-02\\n1.99530795e-01 5.67138493e-02 -2.18384322e-02 4.25489962e-01\\n-2.84949660e-01 -1.49793306e-03 5.13495281e-02 3.02700967e-01\\n-5.12080729e-01 -4.04775850e-02 -4.26456565e-03 3.98623526e-01\\n9.80578661e-02 1.62199199e-01 -2.55752116e-01 2.03446269e-01\\n-2.65491843e-01 -5.61938465e-01 3.34353805e-01 -8.75630975e-02\\n-3.13622355e-02 2.49688104e-01 2.42099866e-01 1.22884728e-01\\n-2.85947680e-01 -6.45812377e-02 1.71160679e-02 3.25504303e-01\\n1.23383604e-01 3.10238183e-01 -3.22718471e-01 -1.65807270e-02\\n-2.29419261e-01 1.58522353e-01 -2.39618659e-01 1.62612632e-01\\n-3.64774205e-02 2.94256657e-01 8.53570849e-02 1.12555146e-01\\n2.63281018e-01 2.37469934e-02 -1.21048003e-01 -2.91411251e-01\\n-1.68876380e-01 -2.98096895e-01 -3.58168222e-02 -5.55445105e-02\\n2.26531804e-01 -3.56464118e-01 -9.11193639e-02 5.90963427e-05\\n-1.64801225e-01 -3.93262863e-01 5.01599871e-02 -1.04471922e-01]]',\n", + " 'About our client Our client is one of the leading communication companys in switzerland. Your responsibilities Your tasks will vary from data science (10–20%) through Big Data engineering (50%) to DevOps (30–40%). You work in an international team with huge cultural diversity and a strong focus on monetizing telco data, primarily for making Switzerland run better. You interact with data scientists, Big Data engineers, DevOps as well as product owners and business developers. Your profile MSc or PhD in Computer Science or related field Highly experienced with Kafka, HDP, Spark (streaming including), Elasticsearch, Cassandra, Play Very good knowledge of FP (Scala) and good knowledge of OOP (Java); know-how of JavaScript & AngularJS is highly welcome Solid understanding of data structures and algorithms, experience in agile/lean development of scalable solutions Knowledge and hands-on experience of CI/CD, specifically Jenkins, Ansible, Oozie, etc. Ideally, experience in creating self-healing systems Fluent in English, German/French is an asset Your chance Are you interested? Then apply now! Ort: Zürich Spezialisierung: System Engineering/Administration Sprachen: Deutsch Englisch Französisch Job ID: 1341',\n", + " '[\"Communications\"]',\n", + " '[\"Jenkins\", \"Agility\", \"Systems Engineering\", \"Interactivity\", \"Computer Science\", \"Spark Streaming\", \"Data Engineering\", \"Scala (Programming Language)\", \"Apache Oozie\", \"Idealization\", \"Healing\", \"Lean Product Development\", \"Data Science\", \"JavaScript (Programming Language)\", \"Scalability\", \"Big Data\", \"Cultural Diversity\", \"Data Structures\", \"Ansible\", \"Algorithms\", \"Business Development\", \"DevOps\"]',\n", + " \"['English', 'Latvian', 'Swedish', 'Vietnamese', 'Malayalam']\"],\n", + " ['122',\n", + " 'application scientist, chemical ionization mass spectrometry',\n", + " 'Thun',\n", + " '',\n", + " '',\n", + " '[[-3.22071165e-01 3.35994661e-01 4.83776540e-01 -6.40972853e-02\\n6.11253023e-01 -7.13514015e-02 -1.14054918e-01 1.98036522e-01\\n1.12699583e-01 -2.06944034e-01 -1.58244222e-01 -3.54309440e-01\\n2.49078125e-02 2.25402951e-01 7.10181594e-02 6.34336233e-01\\n3.25270057e-01 5.24713621e-02 4.69298139e-02 4.38917756e-01\\n9.60446000e-02 -1.46910578e-01 1.38095424e-01 7.59765983e-01\\n3.24976802e-01 -2.94832662e-02 -4.38018888e-02 1.22776538e-01\\n-1.77218154e-01 -2.16217875e-01 5.02378941e-01 9.38742235e-02\\n-2.22176850e-01 -4.03737217e-01 9.49825048e-02 2.32561350e-01\\n-2.25547686e-01 -2.98123956e-02 -1.24865249e-01 1.93640873e-01\\n-6.83146060e-01 -3.22210491e-01 4.83767800e-02 -6.82667047e-02\\n-2.93613076e-01 -3.39217901e-01 1.45096183e-01 -1.12511292e-01\\n2.76587382e-02 1.45025745e-01 -4.27522898e-01 2.11642951e-01\\n-1.87756449e-01 -2.60515660e-01 3.73523861e-01 8.18408966e-01\\n-2.92102545e-02 -5.68019032e-01 -4.50492203e-01 -2.96409249e-01\\n1.07475119e-02 -1.24969650e-02 8.14223215e-02 -3.71924520e-01\\n4.69474673e-01 4.97827865e-02 -3.50979343e-03 2.19129920e-01\\n-7.30725646e-01 -2.13264644e-01 -3.03966403e-01 1.61905855e-01\\n-4.08347398e-01 4.16619927e-02 -1.48494124e-01 -1.34820372e-01\\n-8.88818949e-02 3.99366617e-01 -8.53884891e-02 8.67198110e-02\\n-3.45002525e-02 3.27037930e-01 -2.68398166e-01 3.53007913e-01\\n2.10795075e-01 1.39860064e-01 2.86855876e-01 2.88504630e-01\\n-2.99485713e-01 4.43927169e-01 1.62827209e-01 -2.95417964e-01\\n2.14850798e-01 4.97248173e-02 3.65435719e-01 -5.71940653e-02\\n1.89987376e-01 1.07137293e-01 -3.54181767e-01 2.38421440e-01\\n2.66428292e-01 -2.44015634e-01 3.65765579e-02 -9.35238600e-02\\n6.67725131e-02 2.26250626e-02 -2.73920931e-02 1.54613601e-02\\n-5.24358511e-01 4.52765703e-01 1.46474883e-01 -2.14989126e-01\\n-5.19621857e-02 -5.93617141e-01 -1.56798974e-01 -1.37796532e-02\\n-6.69724271e-02 8.90561342e-02 4.62685786e-02 1.77838862e-01\\n3.26121300e-01 1.20813958e-02 9.50876772e-02 8.72025311e-01\\n2.41289437e-02 8.79597515e-02 -5.67165613e-02 4.61607456e-01\\n5.15877455e-02 -2.40077183e-01 2.97346979e-01 9.03361440e-02\\n-3.11097074e-02 -1.03263885e-01 -2.22860560e-01 2.63914824e-01\\n-1.02852240e-01 -3.23492259e-01 -2.59753287e-01 3.29096258e-01\\n-1.74353197e-02 -4.56009716e-01 5.22334278e-01 -1.96926221e-01\\n7.77562410e-02 -1.05281353e-01 -5.14109358e-02 -3.26890908e-02\\n-1.44234210e-01 2.15448797e-01 1.81884229e-01 1.24584571e-01\\n-2.91880339e-01 -2.07166284e-01 -1.68662578e-01 7.95932636e-02\\n-2.74402499e-01 2.47937605e-01 -2.39675030e-01 -1.61837593e-01\\n2.73200095e-01 1.93460882e-02 -4.42898840e-01 2.58858263e-01\\n-1.01767957e-01 -1.36146277e-01 -8.04063827e-02 4.65727776e-01\\n-2.59148479e-01 2.08761364e-01 2.87646018e-02 -2.04146594e-01\\n6.17075503e-01 4.15205546e-02 2.51093328e-01 -6.53549582e-02\\n2.86037147e-01 -1.47970736e-01 2.42254108e-01 2.09540769e-01\\n-6.48887277e-01 4.47108328e-01 -8.04359540e-02 -1.30039364e-01\\n3.79298851e-02 -1.66308314e-01 5.29851019e-01 -3.41786265e-01\\n-7.15541467e-02 -1.97946444e-01 -3.24780196e-01 -3.81483734e-01\\n-3.14209044e-01 -8.85766521e-02 3.07037562e-01 -3.65383625e-01\\n5.35375997e-02 1.01774052e-01 -5.69337010e-01 -2.89981008e-01\\n2.08624199e-01 2.59375304e-01 2.13857174e-01 1.68030396e-01\\n-2.40718067e-01 -6.50057316e-01 7.35826194e-02 -5.34984350e-01\\n-7.20526129e-02 8.34865049e-02 -2.83299446e-01 2.65487105e-01\\n7.77441487e-02 -4.36626263e-02 -1.96749061e-01 5.85632250e-02\\n-3.24441493e-01 1.49356484e-01 6.86924532e-02 5.87357320e-02\\n2.13346779e-01 1.27405956e-01 -3.84200364e-01 4.62790132e-01\\n-2.50309169e-01 5.30068517e-01 5.39943501e-02 -9.67972815e-01\\n5.16683519e-01 5.74802756e-01 5.30515127e-02 -4.01740909e-01\\n6.12028360e-01 -4.48840499e-01 -2.18429625e-01 1.43864572e-01\\n-3.92809629e-01 -7.81859681e-02 3.13722670e-01 -3.24343204e-01\\n-2.43544191e-01 6.64350629e-01 1.92120746e-01 2.01540589e-01\\n3.75425965e-01 -1.15122199e-01 -1.61432792e-02 1.35955065e-01\\n-1.45501152e-01 -1.76568642e-01 -5.07044435e-01 -7.47955143e-02\\n-1.20463520e-01 -4.73117054e-01 -8.90543759e-02 -4.81914520e-01\\n-1.58354104e-01 -2.90354818e-01 -7.60099813e-02 7.71325678e-02\\n1.90583169e-01 5.43439649e-02 1.46061212e-01 1.96301639e-02\\n-1.07335329e-01 -7.67278850e-01 1.18593358e-01 -1.57433599e-02\\n2.44572103e-01 2.84206092e-01 1.87653422e-01 8.72246325e-02\\n-1.23348963e-02 5.44273973e-01 -5.19644678e-01 -3.17016423e-01\\n8.69193673e-02 6.35529906e-02 -1.75551996e-01 -1.36884004e-01\\n2.58261323e-01 2.67141849e-01 -2.94593900e-01 1.47626251e-01\\n-1.76367611e-01 3.75982672e-02 3.81409824e-01 -2.53120251e-02\\n-2.25336194e-01 -1.46812513e-01 -1.55685738e-01 6.15317933e-02\\n-4.97732550e-01 -2.56312937e-01 2.71816611e-01 1.56659577e-02\\n1.72362819e-01 2.60542303e-01 2.10443199e-01 -5.83785623e-02\\n-3.64409864e-01 -3.83100927e-01 2.14357316e-01 1.83322728e-01\\n-1.80672258e-02 6.76504672e-02 -1.29908741e-01 -6.54375613e-01\\n-2.79908323e+00 -1.23159684e-01 3.50847542e-02 -1.53656602e-01\\n4.65550214e-01 -1.09387070e-01 1.96244806e-01 -8.46396685e-02\\n-4.14233088e-01 1.64728284e-01 -2.14522690e-01 -2.35280752e-01\\n9.66513455e-02 5.62695563e-02 1.90110996e-01 4.68250588e-02\\n-1.06818303e-02 -4.07430887e-01 1.57529533e-01 4.34014946e-01\\n-5.00358976e-02 -7.59915829e-01 1.07479513e-01 4.87836078e-02\\n2.62701094e-01 2.17019558e-01 -5.97976029e-01 -7.68634379e-02\\n-3.27123761e-01 -2.30037183e-01 1.35682285e-01 -3.72972488e-01\\n-1.75831258e-01 2.31695116e-01 2.41476491e-01 -8.81463103e-03\\n-5.15482426e-02 -3.78988206e-01 -8.20081234e-02 -4.45041806e-01\\n7.43470490e-02 -6.34494662e-01 -3.65943983e-02 -7.86084384e-02\\n6.89913750e-01 -1.32354721e-01 2.04089046e-01 1.17671430e-01\\n1.10012017e-01 2.63050109e-01 2.31961489e-01 7.93322474e-02\\n-1.25771239e-01 -2.11531669e-01 -5.65928556e-02 -1.08543336e-01\\n4.80061769e-01 4.26655352e-01 -1.76116854e-01 -1.07978091e-01\\n1.82572436e-02 -3.59977007e-01 -7.17721581e-01 -4.23244908e-02\\n-3.46820623e-01 -5.78375757e-02 -7.69396186e-01 -3.59955430e-01\\n-6.20905459e-02 -2.11180151e-01 -5.68541884e-02 7.70458937e-01\\n-3.83617759e-01 -2.70362854e-01 -2.83906981e-02 -6.00602150e-01\\n3.28278601e-01 -2.22286701e-01 3.72322947e-02 -7.73643926e-02\\n-3.45586002e-01 -4.55108136e-01 1.48932084e-01 -6.09154254e-03\\n-1.60074204e-01 -2.51260817e-01 1.95340980e-02 -1.94570482e-01\\n-4.47593063e-01 -6.62861228e-01 4.03402686e-01 1.07800528e-01\\n3.88790488e-01 -1.27314180e-02 2.01849699e-01 -9.46250558e-02\\n3.28960717e-01 9.95439813e-02 1.17847554e-01 -4.43078339e-01\\n-3.04384679e-02 -1.22414287e-02 5.69319844e-01 -2.56601453e-01\\n-1.59537066e-02 -6.56263530e-02 -3.97187054e-01 -1.36839375e-01\\n2.84766197e-01 -7.85306543e-02 5.17561734e-02 -1.75073758e-01\\n2.64304042e-01 -2.89100647e-01 5.40050771e-03 1.57532096e-01\\n7.65489414e-02 7.85804272e-01 6.28712997e-02 -3.18475664e-01\\n-8.42032731e-02 3.53727639e-01 -1.08276501e-01 9.22434498e-03\\n4.87649217e-02 -7.09222117e-03 -3.20107073e-01 3.88561428e-01\\n-5.38056307e-02 -9.08005387e-02 -2.26392925e-01 -2.58532651e-02\\n-2.41315290e-01 4.11914945e-01 3.72470349e-01 3.22843254e-01\\n-2.25378826e-01 -3.69885445e-01 -1.32335916e-01 3.15627038e-01\\n1.45535111e-01 3.18097115e-01 2.13341445e-01 -2.45503902e-01\\n1.10960584e-02 3.68367732e-01 -1.77435786e-01 2.88998038e-01\\n-1.31619781e-01 8.66411775e-02 -5.51874220e-01 -1.51292235e-01\\n-3.13471854e-01 -3.47445786e-01 1.79899424e-01 4.33494151e-01\\n1.77767158e-01 -1.51875600e-01 1.64088011e-01 -5.00433564e-01\\n2.39484161e-01 1.53381437e-01 1.93355709e-01 -1.35048945e-02\\n-1.69267833e-01 5.87525427e-01 -1.05123676e-01 -9.58819315e-02\\n5.59639037e-02 -3.30140628e-02 -2.89241403e-01 -3.77500772e-01\\n1.63769469e-01 -5.40195405e-01 -1.60197005e-01 3.98302853e-01\\n1.51308447e-01 -1.69362992e-01 -2.08383128e-01 3.18847239e-01\\n-3.85672152e-02 -2.93277323e-01 -3.83144975e-01 5.28388098e-02\\n3.46008599e-01 1.76176548e-01 2.76199818e-01 -5.93356729e-01\\n1.36092573e-01 -3.31758671e-02 -5.41806966e-02 4.04620796e-01\\n-8.13515484e-02 7.18372390e-02 -4.35290575e-01 -3.05844545e-01\\n3.99080575e-01 -3.93500552e-02 -5.99032752e-02 -1.40683949e-02\\n5.55592403e-02 -2.32374951e-01 -2.94043571e-01 4.44828197e-02\\n-2.51961462e-02 -2.44572848e-01 -2.79224068e-02 1.34612918e-01\\n7.48762265e-02 -3.06981094e-02 -5.54868817e-01 -1.32118642e-01\\n-7.72951692e-02 1.74364805e-01 -2.53934823e-02 -4.29614663e-01\\n-7.62047842e-02 -1.45285934e-01 -4.00995523e-01 2.15944916e-01\\n-6.63143098e-02 -1.86884701e-01 2.11304754e-01 -1.59485079e-02\\n-2.73282498e-01 -2.20773190e-01 1.90122157e-01 1.66708380e-01\\n-3.21528465e-01 -2.35284761e-01 -1.25715539e-01 -8.77228022e-01\\n1.23679921e-01 -8.38333368e-02 -1.15303196e-01 2.43682876e-01\\n1.94252953e-02 -8.22788477e-01 2.11156607e-01 -2.09233195e-01\\n-2.74240002e-02 -8.52119252e-02 -2.64390945e-01 -2.24004343e-01\\n7.98411220e-02 1.93789322e-02 8.32750201e-02 2.76013434e-01\\n-2.44845241e-01 4.74416971e-01 -1.55817166e-01 -9.30967629e-02\\n-9.56344083e-02 -2.40649492e-01 2.41330832e-01 -3.32357526e-01\\n-3.92562091e-01 -1.56487405e-01 -2.26712108e-01 -2.20085114e-01\\n-2.16433525e-01 -1.89405039e-01 -1.64508730e-01 3.49242017e-02\\n4.08531964e-01 5.83917871e-02 -2.20097825e-01 -1.49208412e-01\\n8.54256302e-02 -3.25875998e-01 1.03538074e-01 -1.10601783e-01\\n1.26354754e-01 -5.08532189e-02 1.33721307e-01 2.46858120e-01\\n1.36273786e-01 -3.07841659e-01 3.82927120e-01 -4.35529888e-01\\n-4.98367727e-01 -1.56510159e-01 1.69563949e-01 -1.53531507e-03\\n3.58934402e-01 -3.51289213e-01 -2.13212013e-01 3.15565348e-01\\n-5.50941154e-02 -8.40158984e-02 3.95422101e-01 -2.20634609e-01\\n-2.09009275e-01 1.79741129e-01 -4.30357277e-01 2.04788595e-01\\n8.30743194e-01 3.25510085e-01 1.74998604e-02 1.40910268e-01\\n6.87763542e-02 3.28109562e-01 5.60177028e-01 -5.66273369e-02\\n6.07278338e-03 3.23202938e-01 2.27420866e-01 -4.17084992e-01\\n-1.96479812e-01 -1.53758824e-01 -1.02760829e-03 -4.64945912e-01\\n4.90882397e-01 3.19201469e-01 -2.79180944e-01 -2.14740127e-01\\n-2.88104683e-01 -2.05734491e-01 2.90126204e-01 -3.75250317e-02\\n6.63378611e-02 -5.83293512e-02 5.44876158e-01 -6.81349337e-02\\n1.47334024e-01 5.05152822e-01 -2.01801166e-01 -2.61362076e-01\\n-1.75539464e-01 2.03189760e-01 1.61162660e-01 4.23275590e-01\\n-1.12217359e-01 3.14255595e-01 -1.33299038e-01 1.83682948e-01\\n-1.95814580e-01 8.43852535e-02 1.50031224e-01 -2.68648528e-02\\n-8.52944255e-02 2.45723158e-01 4.08645660e-01 4.48904812e-01\\n4.09840196e-01 3.92711341e-01 2.93104261e-01 2.12088395e-02\\n5.03329754e-01 5.60217023e-01 2.39641666e-01 4.66271304e-02\\n5.99698536e-03 1.61154702e-01 9.89949405e-02 3.42507884e-02\\n4.10280645e-01 2.69631863e-01 1.11378603e-01 9.16861653e-01\\n2.13574246e-01 4.45441425e-01 7.33426094e-01 -6.49558902e-01\\n-3.66797984e-01 5.95637560e-02 4.31729555e-01 -5.58744371e-01\\n3.28731090e-02 1.96207166e-01 1.88608933e-02 2.29131699e-01\\n-5.27038932e-01 -1.88437074e-01 2.89539713e-02 1.14500336e-01\\n1.81479037e-01 -9.59135368e-02 -1.35038614e-01 2.36179009e-01\\n-2.82172322e-01 -2.62147784e-01 -4.30314124e-01 -2.33607978e-01\\n-2.64321178e-01 8.98233149e-03 -3.46091688e-02 -1.02093562e-01\\n-5.33997826e-02 -2.47440755e-01 8.31302404e-02 -6.23095147e-02\\n3.76782954e-01 -1.79653257e-01 -1.76410705e-01 -8.13263729e-02\\n7.08274484e-01 1.16025582e-01 5.89377761e-01 -9.00212824e-02\\n9.20626372e-02 -2.85596848e-01 -2.28821635e-01 1.02161586e-01\\n1.76186681e-01 1.87908232e-01 5.90837048e-03 4.18738365e-01\\n-2.38294661e-01 -6.98183253e-02 4.01096791e-02 3.08326930e-01\\n-2.65782952e-01 -1.15349948e-01 -1.95698112e-01 -6.09375015e-02\\n-3.13130207e-02 1.85329616e-01 -1.64328247e-01 1.20316356e-01\\n3.74259166e-02 -5.07009983e-01 3.77264142e-01 -4.61399332e-02\\n-3.29699874e-01 1.29200742e-02 4.16063130e-01 2.55316556e-01\\n-8.87309909e-02 -3.49061452e-02 -1.18126377e-01 1.64474785e-01\\n2.93811113e-02 3.67938459e-01 -1.11943677e-01 -4.43264812e-01\\n-4.05919790e-01 1.78947031e-01 -2.66234577e-01 1.12964772e-03\\n6.46589026e-02 4.32083786e-01 -2.48052292e-02 8.70360062e-02\\n4.95590389e-01 -1.95871115e-01 -2.87681282e-01 -4.21056271e-01\\n-1.87379614e-01 -2.11080045e-01 -1.12561956e-01 -5.73445633e-02\\n1.99748904e-01 -3.09953570e-01 -2.45363235e-01 -4.99587715e-01\\n8.14421773e-02 -2.94173717e-01 -3.18146124e-03 -3.42493095e-02]]',\n", + " 'Headquartered in Thun, Switzerland, TOFWERK aims to bring the advantages of our time-of-flight technology to new markets and applications. With team members in Switzerland, Germany, China and the United States, we offer a family of end-user research products and custom instrument designs for OEM partners and research laboratories. TOFWERK is seeking an analytical scientist to develop and demonstrate new applications of our chemical ionization (CI) time-of-flight mass spectrometers (TOFMS), with emphasis on the Vocus PTR-TOF. The scientist will work within our Applications Department in support of our Vocus PTR-TOF and API-TOF product teams. He/she will be independently tasked with increasing the breadth and quality of analyses based on these instruments. The scientist will be active in relevant scientific communities in order to stay updated on trends and advances and to engage potential customers and collaborators. As the company’s expert on CI-TOFMS applications, he/she will communicate the capabilities of TOFWERK technology to prospective customers; lead product demonstrations; represent TOFWERK at international scientific meetings; support the Marketing Department in the production of technical promotional material; and formally present data in conference presentations, research reports, application notes, and peer-reviewed publications. He/she will work with other members of the Applications Department to ensure that all analyses at TOFWERK utilize the best available methods and technology. Based on his/her knowledge of the field and use of TOFWERK technology, the application scientist will provide suggestions and feedback to the Software and R&D Departments regarding potential short- and long-term product improvements and developments. Requirements PhD in Analytical Chemistry or related field 4+ years of experience using mass spectrometry for applied research or sample analysis, including method development Ability to work independently in the laboratory, including: experiment design, sample preparation, operation of scientific equipment, and data interpretation Strong background in data analysis, including statistics and spectral interpretation Interest in interacting with customers and prospective customers Confident and effective communicator Willingness to travel up to 30% per year for scientific conferences and customer site visits at European and international locations Fluency in English Desirable Experience and Expertise Use of any of the following: PTR-MS, chemical ionization MS, TOFMS, real-time trace gas analyzers Expertise in any of the following fields: biogenic VOCs, forensics, fragrances, flavors, breath analysis, atmospheric science Experience running and characterizing prototype scientific equipment Familiarity with any of the following: high vacuum systems, ion optics, ion-molecule reaction chemistry Competence in laboratory electronics and use of diagnostic equipment We Offer Exciting projects in state-of-the-art mass spectrometry An open culture that encourages new ideas A creative international team Flexible work times A bright, spacious workplace on the river in beautiful Thun We look forward to receiving your application at jobs@tofwerk.com. Please send all attachments in pdf format.',\n", + " '[\"Research\", \"Collaboration\", \"Communications\", \"Operations\", \"Presentations\", \"Creativity\"]',\n", + " '[\"Real Time Data\", \"Product Demonstration\", \"Chemical Ionization\", \"Research Reports\", \"Sample Preparation\", \"Data Presentation\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Vienna Development Methods\", \"Prototype (Manufacturing)\", \"Spectrometer\", \"Activism\", \"Mass Spectrometry\", \"Analytical Chemistry\", \"Instrumentation\", \"Vacuum Systems\", \"Productivity Improvement\", \"IText (Free PDF Software)\", \"Atmospheric Sciences\", \"Electronics\", \"Optics\", \"Survey Data Analysis\", \"Applied Research\", \"Receivables\", \"Chemistry\", \"Sample Analysis\", \"Experience Design\", \"Sampling Design\", \"Residual Gas Analyzer\", \"Peer Review\", \"Application Notes\", \"Long-Term Potentiation\", \"User Research\", \"Application Programming Interface (API)\", \"Integrated Product Team\"]',\n", + " \"['English']\"],\n", + " ['39',\n", + " 'software engineer (.net)',\n", + " 'Lausanne',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.56080568e-01 1.93148911e-01 3.77408177e-01 -8.65293667e-02\\n4.31363791e-01 -1.94448575e-01 -1.35949090e-01 4.80250478e-01\\n-3.45974974e-02 -4.28468257e-01 -9.70795155e-02 -2.07912594e-01\\n2.34848745e-02 1.22925222e-01 2.32433602e-01 3.10243011e-01\\n2.81564325e-01 1.33661211e-01 -1.13380089e-01 1.84315562e-01\\n5.61748743e-02 -7.47088343e-02 -6.18350506e-02 6.84396029e-01\\n2.39262298e-01 5.85483201e-02 -3.16057261e-03 -9.37680621e-03\\n-1.32458270e-01 -2.45531991e-01 2.95273215e-01 2.14479044e-02\\n-1.52680144e-01 -2.81649560e-01 1.40669569e-01 7.41659030e-02\\n-1.84494108e-01 1.59350157e-01 -1.13644488e-01 8.25644508e-02\\n-4.75046158e-01 -1.63162991e-01 1.45551771e-01 5.88020682e-02\\n-1.90932542e-01 -2.93273717e-01 7.74823725e-02 -8.84056184e-03\\n1.45265773e-01 1.09058304e-03 -5.37427425e-01 2.79565901e-01\\n-3.48685563e-01 -1.79893479e-01 3.19035590e-01 6.09827399e-01\\n1.54568739e-02 -4.35706884e-01 -3.75521481e-01 -1.48569569e-01\\n-1.04316976e-02 -7.98244178e-02 6.60208911e-02 -2.96609253e-01\\n3.55327457e-01 2.26663649e-02 -8.75806250e-03 2.47175351e-01\\n-8.95252228e-01 -4.04918082e-02 -2.51025259e-01 6.62418408e-03\\n-3.27290982e-01 -4.01312746e-02 -3.69874477e-01 -7.29230270e-02\\n-1.40932426e-01 3.91911745e-01 3.11416425e-02 6.53691590e-02\\n-1.60573110e-01 2.25562140e-01 -3.39686543e-01 3.34952176e-01\\n2.18767628e-01 2.77683556e-01 3.34870428e-01 3.14984709e-01\\n-3.56550992e-01 4.75446314e-01 2.10322782e-01 -2.80701518e-01\\n2.35135615e-01 7.22400844e-02 3.82477254e-01 1.20367281e-01\\n1.51280656e-01 2.35943615e-01 -8.67609084e-02 3.07316750e-01\\n2.42526576e-01 -2.76389688e-01 -4.98453267e-02 -9.53486562e-02\\n-1.20723367e-01 -3.18633355e-02 5.70446737e-02 2.23246723e-01\\n-2.72652388e-01 3.16690147e-01 1.24584757e-01 -2.34752402e-01\\n-4.89700995e-02 -5.65280378e-01 -1.37178525e-01 1.20791398e-01\\n-5.40278740e-02 1.09249465e-01 4.00324672e-01 1.59479707e-01\\n1.53194368e-01 8.25470909e-02 9.69787538e-02 9.22473073e-01\\n-1.03277147e-01 1.23663180e-01 -3.01684380e-01 4.60253477e-01\\n1.94230303e-01 -2.08721787e-01 1.96943581e-01 2.12754160e-01\\n1.30095258e-02 -1.99308157e-01 -8.39868113e-02 2.98042297e-01\\n5.56528158e-02 -1.44124180e-01 -3.59682232e-01 1.07088692e-01\\n-1.88294828e-01 -4.33902174e-01 5.40855289e-01 7.76793361e-02\\n1.88919008e-01 6.69356510e-02 1.52250677e-02 -1.19873971e-01\\n-1.68333620e-01 2.13958248e-01 -1.11143604e-01 2.80343622e-01\\n-2.70427763e-01 -1.75374597e-01 -2.52617747e-01 3.18715096e-01\\n-1.41762808e-01 1.22812875e-01 -2.64254093e-01 -1.42447084e-01\\n3.70284647e-01 -4.49388884e-02 -2.44977444e-01 1.95152834e-01\\n-6.07798947e-03 -8.08904469e-02 -3.79925296e-02 2.11029455e-01\\n-7.92776346e-02 2.59263873e-01 -1.88488867e-02 -1.79319337e-01\\n4.52043474e-01 8.24245661e-02 1.06702700e-01 -2.06927761e-01\\n3.16024363e-01 -1.85554430e-01 1.43897206e-01 1.27013132e-01\\n-6.56764746e-01 3.84132922e-01 -5.59206195e-02 -9.65637192e-02\\n1.00542225e-01 1.03304543e-01 2.78735042e-01 -2.95071036e-01\\n-6.96300194e-02 -1.13193423e-01 -2.87134200e-01 -2.23700523e-01\\n-3.35188329e-01 -4.54844274e-02 4.03871119e-01 -5.19874930e-01\\n-8.78926069e-02 1.53504655e-01 -4.59783733e-01 2.75309850e-02\\n2.00541526e-01 2.33458072e-01 -3.85739096e-02 6.54197857e-02\\n-1.38456553e-01 -4.80164379e-01 1.51281551e-01 -5.22860408e-01\\n-3.69016498e-01 1.72323361e-01 -2.09392294e-01 2.68585593e-01\\n1.74638540e-01 -2.70043164e-02 -7.31242597e-02 4.43889536e-02\\n-1.89224958e-01 -3.24979201e-02 1.83593318e-01 -2.28490145e-03\\n4.17078972e-01 -7.07066059e-02 -3.26625645e-01 4.71890450e-01\\n-1.73823267e-01 4.03181314e-01 2.06356168e-01 -8.70787024e-01\\n5.66860318e-01 2.68075705e-01 5.58564663e-02 -3.66678029e-01\\n5.81503749e-01 -3.24544758e-01 2.06829020e-04 1.54253602e-01\\n-4.77820009e-01 -3.12150866e-01 2.17616975e-01 -1.04825243e-01\\n-2.93253064e-01 5.56197047e-01 8.04241598e-02 -4.78553679e-03\\n3.05832773e-01 -3.37242275e-01 -1.54500797e-01 1.13847002e-01\\n-1.21154688e-01 -2.21390963e-01 -4.40318257e-01 -7.00418949e-02\\n-1.19820066e-01 -5.10915339e-01 -2.36982241e-01 -4.60604906e-01\\n-1.98249832e-01 -3.18210810e-01 -2.86535442e-01 3.82603019e-01\\n1.09737694e-01 7.94486851e-02 -8.48853663e-02 -4.60592424e-03\\n-8.43398049e-02 -5.99449813e-01 -8.20869803e-02 7.76287019e-02\\n3.91833067e-01 1.83018953e-01 8.08174759e-02 -5.24813235e-02\\n1.83985960e-02 5.19500911e-01 -3.35410655e-01 -2.63019860e-01\\n1.74004078e-01 1.88753292e-01 -2.80356482e-02 -3.06134149e-02\\n1.57368436e-01 2.07776457e-01 -2.93065161e-01 -7.97389373e-02\\n-6.70121908e-02 -1.07502460e-01 3.66157353e-01 -6.21042624e-02\\n-4.03022051e-01 -2.74755478e-01 5.94517216e-02 2.92046905e-01\\n-5.57985604e-01 -2.36680448e-01 5.52455544e-01 2.48211995e-01\\n4.12381925e-02 1.69326499e-01 1.30104989e-01 -1.31125659e-01\\n-2.01765373e-01 -1.66949898e-01 1.15501471e-01 1.29974857e-01\\n2.57726669e-01 1.23631008e-01 -2.03046933e-01 -5.69413722e-01\\n-3.76805496e+00 -2.25868270e-01 1.65885493e-01 -1.51287138e-01\\n2.26377681e-01 -1.81755096e-01 1.68021709e-01 -7.00821579e-02\\n-2.10395500e-01 -8.49758610e-02 -1.77517906e-01 -7.32701644e-02\\n7.37257823e-02 2.92409897e-01 1.34751312e-02 3.38219613e-01\\n7.82353058e-02 -2.24177182e-01 6.19387962e-02 2.63360649e-01\\n-1.65819660e-01 -6.58178329e-01 1.54218465e-01 -1.47018358e-01\\n2.63613075e-01 2.97084332e-01 -4.45293725e-01 2.55128630e-02\\n-1.66284680e-01 -2.15138644e-01 4.50572222e-02 -2.14635819e-01\\n-5.57271875e-02 2.25526392e-01 1.35809511e-01 -2.02386215e-01\\n1.01849727e-01 -1.85980752e-01 -4.13249284e-02 -4.45478082e-01\\n1.31249249e-01 -5.72972894e-01 -1.38950534e-02 2.98377802e-03\\n7.29705751e-01 -3.61602694e-01 2.03133449e-01 1.17647626e-01\\n8.37631524e-02 1.59143940e-01 -7.53194317e-02 -1.91613995e-02\\n-2.04912752e-01 -3.78989190e-01 -2.99151205e-02 -1.92000732e-01\\n5.49896061e-01 4.59305793e-01 -1.87583357e-01 1.03912428e-01\\n3.57650258e-02 -3.03644836e-01 -4.39314574e-01 -3.38832289e-01\\n-1.58930764e-01 -1.26746684e-01 -6.41954899e-01 -4.15935576e-01\\n-2.49307707e-01 -1.93608969e-01 -1.37884587e-01 5.55526257e-01\\n-2.84188956e-01 -5.10280430e-01 -2.59039421e-02 -6.37746274e-01\\n2.52843559e-01 -2.26316139e-01 2.97462903e-02 -1.10442042e-01\\n-2.11682498e-01 -4.78418082e-01 5.60118183e-02 1.20670818e-01\\n-1.91853136e-01 -1.36877701e-01 1.79403394e-01 -1.94910347e-01\\n-2.57204413e-01 -5.72091460e-01 3.04498374e-01 8.09416622e-02\\n3.14933985e-01 1.89429238e-01 3.19826037e-01 6.18387163e-02\\n2.37774521e-01 -9.04789120e-02 -3.14555690e-02 -5.32287836e-01\\n1.15562230e-01 2.88579948e-02 5.12407184e-01 -1.42023653e-01\\n-1.82092641e-04 2.23018795e-01 -9.32478532e-02 -1.34975195e-01\\n3.15486610e-01 6.10491596e-02 1.61342010e-01 -2.64102966e-01\\n3.00925255e-01 -3.80683750e-01 -1.84567988e-01 1.39580637e-01\\n3.61941103e-03 6.47961617e-01 -1.17418412e-02 -3.77736717e-01\\n-2.77897239e-01 5.97393274e-01 -1.28988232e-02 -8.65849108e-02\\n-2.15379477e-01 1.18851602e-01 -2.23257542e-01 1.46887779e-01\\n4.76620421e-02 -2.25292176e-01 -2.90942371e-01 -2.28284355e-02\\n1.22728506e-02 2.51277000e-01 3.14860314e-01 9.31898355e-02\\n-3.45924459e-02 -3.04911792e-01 2.40479130e-02 1.13652408e-01\\n2.99094886e-01 5.12591362e-01 1.02369010e-01 -3.12467247e-01\\n3.35496590e-02 2.12983921e-01 -2.57468045e-01 1.52975157e-01\\n-1.92598671e-01 6.57905340e-02 -4.05984133e-01 -2.56783277e-01\\n-2.38749310e-01 -3.78756404e-01 4.71915901e-02 2.14380071e-01\\n1.31660193e-01 8.87448248e-03 -5.17465249e-02 -4.61679727e-01\\n2.36221835e-01 9.93564427e-02 1.87740520e-01 1.30254686e-01\\n8.30886215e-02 4.85724777e-01 1.01850890e-02 -9.13250670e-02\\n-1.38306975e-01 4.75338511e-02 -2.18216822e-01 -1.71908438e-01\\n7.72910565e-02 -4.45516258e-01 -1.30362421e-01 3.77613395e-01\\n4.15331535e-02 -3.13067198e-01 -1.39433041e-01 2.01428890e-01\\n4.10561822e-02 -3.05346221e-01 -1.71384200e-01 4.38531041e-02\\n2.57916361e-01 1.38682559e-01 2.64674604e-01 -4.13822651e-01\\n3.11111193e-02 8.76074508e-02 -8.05520341e-02 4.39803690e-01\\n9.92582217e-02 2.19187632e-01 -9.59154665e-02 -2.66465575e-01\\n3.39916199e-01 -1.99911267e-01 -1.95614062e-02 -2.42210642e-01\\n1.32604048e-01 -2.18685344e-02 -3.33047420e-01 1.36582926e-01\\n-6.47914708e-02 -2.57143438e-01 1.52688473e-02 4.49702106e-02\\n1.32045716e-01 9.44920331e-02 -5.45710087e-01 -3.35303932e-01\\n-3.60576928e-01 -5.13102859e-02 2.90220920e-02 -3.87472123e-01\\n1.47359520e-01 1.35270217e-02 -5.97967029e-01 2.78581202e-01\\n-1.76468402e-01 -2.02690251e-02 2.45954558e-01 9.94930044e-02\\n-4.32751894e-01 -3.35348099e-02 2.71509320e-01 1.49051577e-01\\n-2.50479162e-01 -2.81872183e-01 -7.22615570e-02 -8.91823947e-01\\n1.40992284e-01 -4.45289388e-02 -1.26678467e-01 9.16090831e-02\\n-1.01079322e-01 -6.85088396e-01 1.17785856e-01 -2.90763259e-01\\n-1.53966233e-01 6.48120567e-02 -1.02642186e-01 -4.96740401e-01\\n-3.18696834e-02 -1.39206961e-01 -2.25110710e-01 4.07514393e-01\\n-3.80681187e-01 2.72910565e-01 -1.05970047e-01 -4.00226302e-02\\n4.89778034e-02 -2.86113054e-01 1.06398419e-01 -2.86720723e-01\\n-3.90495032e-01 -8.81903619e-02 -3.26335698e-01 -2.84578949e-01\\n2.88308300e-02 -4.02680010e-01 -1.81177631e-01 4.43391316e-02\\n2.88417220e-01 6.53915405e-02 -1.21453777e-01 -1.99708238e-01\\n5.06974123e-02 -3.16313148e-01 7.59341866e-02 -1.66165411e-01\\n1.88631788e-02 -1.38993621e-01 2.63718307e-01 -5.70409074e-02\\n1.00752734e-01 -3.60319912e-01 4.48579043e-01 -1.55351505e-01\\n-2.97490209e-01 2.13303603e-03 6.20750263e-02 -3.85469273e-02\\n2.21531525e-01 -4.81472611e-01 1.29665220e-02 3.46269101e-01\\n2.06163242e-01 2.22878512e-02 2.59840190e-01 -6.56863526e-02\\n-1.09584875e-01 2.19374150e-01 -3.84504527e-01 9.06379223e-02\\n7.89885759e-01 1.15856864e-01 1.48495048e-01 1.77180529e-01\\n2.02043012e-01 4.87491459e-01 4.40176398e-01 -1.74724422e-02\\n1.97667889e-02 3.34163278e-01 7.03069121e-02 -5.48197687e-01\\n1.04504615e-01 -9.54187140e-02 -1.92263275e-01 -1.94941893e-01\\n7.67711639e-01 4.36880112e-01 -3.50368679e-01 -1.87310115e-01\\n-1.72036558e-01 -2.16024756e-01 2.44043797e-01 -1.22457393e-01\\n9.94440615e-02 -2.15783283e-01 4.36647147e-01 8.26508850e-02\\n2.48861074e-01 5.05186975e-01 -2.15826243e-01 -3.68670285e-01\\n-5.16876355e-02 1.59347966e-01 1.53209805e-01 4.67807055e-01\\n-1.51276603e-01 2.41852805e-01 9.64428857e-03 1.41520485e-01\\n-1.32109791e-01 1.32314533e-01 2.16801643e-01 1.00343436e-01\\n1.89376712e-01 1.12129770e-01 3.81084561e-01 4.42660242e-01\\n2.48022839e-01 5.29416144e-01 2.83803165e-01 8.91948417e-02\\n3.64243358e-01 5.70781767e-01 5.49594581e-01 1.15411028e-01\\n-2.65131309e-03 1.04059335e-02 5.72127029e-02 -1.06986374e-01\\n3.13165188e-01 3.73614848e-01 6.61072508e-02 8.52439344e-01\\n4.27101940e-01 2.06252947e-01 7.23077059e-01 -5.89551151e-01\\n-3.65577281e-01 7.54299611e-02 4.18884099e-01 -2.69659758e-01\\n-9.61338729e-02 1.20866619e-01 -3.65411729e-01 1.64171845e-01\\n-4.50262874e-01 -8.45630318e-02 -1.35806978e-01 -7.46107623e-02\\n5.34902103e-02 -1.36261895e-01 -2.27826819e-01 4.70013022e-02\\n-1.41610280e-01 -1.45620942e-01 -3.96981984e-01 -1.76469475e-01\\n-2.42330417e-01 -1.68468326e-01 -6.54866099e-02 1.87619757e-02\\n-8.99046957e-02 -3.38035613e-01 -1.77686781e-01 1.05645984e-01\\n3.48413736e-01 -2.85804514e-02 -9.26296785e-02 -2.06029356e-01\\n1.72895625e-01 2.96328753e-01 5.14332116e-01 1.40505163e-02\\n1.01222366e-01 -9.78353024e-02 -2.00560972e-01 1.38179094e-01\\n1.10972762e-01 8.94219652e-02 -2.06258222e-02 3.18742126e-01\\n-2.82852530e-01 -1.26588285e-01 1.89622045e-01 4.03309882e-01\\n-3.68627012e-01 -3.77563946e-02 -5.31406850e-02 3.23474467e-01\\n3.38791609e-02 2.78379440e-01 -1.99437261e-01 1.44223943e-01\\n-1.95960075e-01 -6.10788345e-01 3.72426271e-01 -1.75516337e-01\\n-5.26430085e-02 9.49736610e-02 2.22196400e-01 3.15471798e-01\\n-1.50957510e-01 -9.58691537e-02 -3.38231027e-02 3.02343220e-01\\n-1.90932974e-02 3.62638712e-01 -3.10895920e-01 -1.22929879e-01\\n-2.06452087e-01 1.77650332e-01 -1.04128920e-01 1.20369874e-01\\n-6.83541819e-02 3.21786702e-01 6.62914589e-02 1.19413242e-01\\n2.31071621e-01 -1.18878499e-01 -1.92042693e-01 -3.10740501e-01\\n-2.71370590e-01 -1.13782980e-01 6.29800707e-02 8.92709289e-03\\n2.28870124e-01 -4.01317477e-01 -1.88404649e-01 -4.29977551e-02\\n-7.98203498e-02 -4.33421463e-01 2.66793044e-03 -3.12348884e-02]]',\n", + " 'In this role You’ll work on challenging projects using state of the art technologies and tools. You’ll work with business analysts, partners and customers to design reliable, secure and highly efficient systems You’ll work on technical components and participate to code review You’ll be actively involved in the complete project lifecycle, from requirements analysis to final delivery and will cover activities from the tender phase up to support of our solutions. What we offer A challenging and professional working environment in a dynamic team with extensive expertise Exciting projects with latest technologies An organization with flat hierarchies and collaborations across business departments Close contact with customers from various industries Promoting environment with an attractive prospect for your professional and personal development About your profile You hold a MSc or BSc from a leading university or institute of technology. You have minimum 2 years of experience in Microsoft technologies (.NET, WPF, ASP.NET MVC, WCF and RESTful API) Excellent knowledge of relational databases (SQL Server or Oracle) and on object-relational mapping tools (Entity Framework, NHibernate) Good knowledge of web frameworks (Angular JS, Knockout JS or Kendo UI) Experience in automated testing frameworks and continuous integration tools You are fluent in French and English. A level of B2 in German is necessary for this role.',\n", + " '[\"Collaboration\", \"Reliability\", \"Professionalism\"]',\n", + " '[\"MSC Software\", \"Knockout.js\", \"Tooling\", \"ASP.NET\", \"NHibernate\", \"Kendo UI (User Interface Framework)\", \"Web Frameworks\", \"Automated Testing Framework\", \"Continuous Integration\", \"Industrialization\", \"Tenderizing\", \"Activism\", \"Levelling\", \"Object-Relational Mapping\", \"Entity Framework\", \"Wcf 4\", \"Phase (Waves)\", \"Code Review\", \"Finalization\", \"Angular (Web Framework)\", \"Relational Databases\", \"Requirements Analysis\", \"Personality Development\", \"Microsoft SQL Servers\", \"RESTful API\"]',\n", + " \"['English', 'Tajik', 'Southern Sotho']\"],\n", + " ['95',\n", + " 'software engineer python',\n", + " 'Zürich',\n", + " 'Investment Banking & Asset Management',\n", + " '',\n", + " '[[-1.66524321e-01 2.36480415e-01 4.88435745e-01 5.09883910e-02\\n4.25920516e-01 -6.75612763e-02 -4.10967097e-02 4.44127142e-01\\n4.95000556e-02 -4.54217851e-01 2.97759436e-02 -1.67527705e-01\\n-1.87981855e-02 -1.10482806e-02 -2.85293870e-02 3.19970071e-01\\n3.13170373e-01 7.39108771e-02 -1.67363048e-01 3.72895718e-01\\n1.52327478e-01 5.72269037e-03 1.53119594e-01 7.13517368e-01\\n4.55829859e-01 -5.61857522e-02 -3.51604596e-02 7.21043795e-02\\n-7.37817362e-02 -2.15559617e-01 5.10402381e-01 -2.40190253e-02\\n-1.25872523e-01 -3.50732684e-01 6.93624541e-02 -8.81827697e-02\\n-1.86496809e-01 -5.46120293e-02 -8.39772262e-03 3.77979875e-02\\n-4.07773614e-01 -4.05121371e-02 -5.20944819e-02 2.57673915e-02\\n-2.96334445e-01 -3.38255286e-01 2.45367046e-02 -2.11097468e-02\\n1.26130924e-01 4.80977856e-02 -3.70255768e-01 2.85416245e-01\\n-1.42219201e-01 -1.06501222e-01 2.12706506e-01 5.53136230e-01\\n-5.66586889e-02 -2.93749690e-01 -6.57931268e-01 -3.78655732e-01\\n1.76998347e-01 -9.53267962e-02 7.73403645e-02 -1.87133044e-01\\n2.87533313e-01 -2.21116357e-02 1.95820071e-02 1.95578665e-01\\n-6.52497172e-01 5.28518856e-03 -2.35582560e-01 -1.87617868e-01\\n-3.30770016e-01 -2.26804137e-01 -2.70517975e-01 -1.10039450e-01\\n-9.24303681e-02 3.00017357e-01 1.72820732e-01 1.04541808e-01\\n-1.58879310e-01 1.57025963e-01 -1.68214768e-01 3.21748734e-01\\n2.06259310e-01 1.76667511e-01 2.51468420e-01 2.90166616e-01\\n-3.14084411e-01 4.79007661e-01 1.19219922e-01 -3.93711090e-01\\n2.92196870e-01 5.67649901e-02 4.01883811e-01 -1.28766581e-01\\n2.02912688e-01 7.65633136e-02 -3.17119420e-01 3.06331873e-01\\n1.57889545e-01 -4.26098347e-01 4.27730009e-03 -1.50043041e-01\\n5.08419015e-02 -1.43463816e-03 1.82068467e-01 9.93697792e-02\\n-3.16408575e-01 4.18032348e-01 7.23801479e-02 -2.32697845e-01\\n-1.50211692e-01 -3.41120899e-01 -7.42211416e-02 -5.85581437e-02\\n2.23242976e-02 1.84804708e-01 1.85397461e-01 2.29694277e-01\\n1.38999358e-01 -2.78477627e-03 9.20521095e-02 6.62667274e-01\\n-3.15797403e-02 1.99884977e-02 -3.02146435e-01 2.61989117e-01\\n7.74926990e-02 -4.56153750e-01 3.03276300e-01 1.72436088e-01\\n-9.00331661e-02 -1.17050514e-01 -1.50599509e-01 2.58681059e-01\\n9.10268426e-02 -1.27656639e-01 -1.60832390e-01 1.32838607e-01\\n-2.06696242e-03 -3.69673431e-01 6.19563580e-01 1.72626019e-01\\n1.38548419e-01 -1.00680679e-01 -5.84435686e-02 -1.85810685e-01\\n-3.61086428e-02 1.30312085e-01 1.28693487e-02 1.35236666e-01\\n-1.77529201e-01 -1.80174172e-01 -1.91014796e-01 1.28278166e-01\\n-3.53432804e-01 4.10672799e-02 -1.45788431e-01 -1.19998947e-01\\n2.40744635e-01 -1.90002084e-01 -2.34248623e-01 2.76450932e-01\\n-1.78823136e-02 -5.05503640e-02 6.39600828e-02 3.36982787e-01\\n-1.76703572e-01 2.28857175e-01 -1.30377024e-01 -9.42343771e-02\\n6.62523150e-01 1.32100716e-01 1.90637380e-01 2.09693843e-03\\n1.88691616e-01 -1.51264686e-02 1.26116410e-01 1.35834575e-01\\n-6.93646431e-01 3.20394754e-01 -9.92077142e-02 -1.97006986e-01\\n5.59916720e-04 -1.83330357e-01 2.01296091e-01 -2.56752551e-01\\n4.89158221e-02 1.29177691e-02 -2.81314701e-01 -1.45572960e-01\\n-1.17893264e-01 5.49475849e-03 3.55781168e-01 -4.78741884e-01\\n-8.80204886e-02 1.87150061e-01 -4.25298929e-01 -7.39632174e-02\\n1.71834290e-01 1.11586578e-01 8.69168639e-02 1.87063202e-01\\n-1.21958286e-01 -3.84866804e-01 5.81893548e-02 -3.15982670e-01\\n-2.93863773e-01 9.22991335e-02 -3.06171238e-01 2.13916674e-01\\n1.89885944e-01 -9.57719535e-02 -1.25006005e-01 2.01981023e-01\\n-7.95995444e-02 -7.37470239e-02 1.47779971e-01 1.61737204e-02\\n2.47402832e-01 1.09708287e-01 -3.41233552e-01 3.77945274e-01\\n-1.28295317e-01 4.95419621e-01 7.88466185e-02 -7.96863675e-01\\n3.62104297e-01 2.86986470e-01 -5.21058403e-03 -3.46735507e-01\\n5.33676386e-01 -2.72672832e-01 3.19559984e-02 -2.95088440e-02\\n-3.69093329e-01 -2.91846007e-01 2.17782438e-01 -2.14898199e-01\\n-2.21480519e-01 3.79446030e-01 -1.13313772e-01 1.12736471e-01\\n5.66802919e-02 -2.41934285e-01 -5.09686954e-02 -5.68926334e-05\\n-1.35635540e-01 -2.15326235e-01 -5.57866335e-01 -1.84251875e-01\\n-8.53716861e-03 -3.55286658e-01 -9.05093998e-02 -4.52167869e-01\\n-1.91774771e-01 -3.73968393e-01 -1.40338123e-01 1.59719348e-01\\n2.09952563e-01 1.46329641e-01 -8.02908540e-02 3.58250551e-03\\n-2.35633641e-01 -4.25835401e-01 -4.95496541e-02 9.65694189e-02\\n3.90583515e-01 1.65351450e-01 1.26881629e-01 6.14367574e-02\\n1.09257571e-01 5.13871074e-01 -2.16265559e-01 -1.75646573e-01\\n1.35462299e-01 2.71413863e-01 1.00605458e-01 -8.92553627e-02\\n2.08151117e-02 4.09880877e-01 -1.76051959e-01 -1.14491805e-02\\n-8.82147700e-02 -7.78484419e-02 4.50092107e-01 8.81233066e-03\\n-3.08207870e-01 -1.53613046e-01 -2.30726432e-02 9.53463987e-02\\n-5.18439949e-01 -1.86328858e-01 6.55912519e-01 2.43758455e-01\\n1.95056334e-01 1.37259960e-01 6.19039088e-02 2.01890897e-02\\n-5.90553917e-02 -1.81395620e-01 3.16654652e-01 5.18563539e-02\\n1.84908658e-01 -9.37069952e-02 -1.39329890e-02 -4.95430648e-01\\n-3.96297097e+00 -2.01698452e-01 9.65561271e-02 -1.60854876e-01\\n2.01696008e-01 -1.07142441e-01 3.06199305e-02 -8.17290321e-02\\n-2.98057050e-01 7.43874758e-02 -1.39107421e-01 -1.77205458e-01\\n1.17584355e-01 1.85476437e-01 2.88762510e-01 2.81220675e-01\\n1.58846736e-01 -2.05097213e-01 -4.78320532e-02 2.77138710e-01\\n-2.62195289e-01 -4.20578301e-01 2.54301965e-01 2.61987746e-02\\n3.00091296e-01 3.92993778e-01 -2.28702173e-01 -2.18405992e-01\\n-3.32386076e-01 -1.15053356e-01 -1.64243095e-02 -2.41100878e-01\\n-1.97872445e-01 1.87287495e-01 2.39498436e-01 -1.63626373e-01\\n1.79896325e-01 -5.10852695e-01 -1.79848820e-01 -2.74103165e-01\\n-4.61832471e-02 -4.97804761e-01 2.63463445e-02 -1.05492719e-01\\n6.95494890e-01 -2.69977748e-01 1.38487309e-01 1.30820386e-02\\n1.41751647e-01 1.42479837e-01 1.09177291e-01 1.18867189e-01\\n-1.31268710e-01 -2.19973087e-01 -5.81679866e-03 -1.51850179e-01\\n4.95833129e-01 5.01726866e-01 -5.50014153e-02 -6.29506484e-02\\n-7.63391703e-02 -2.06968293e-01 -3.96796376e-01 -2.78061926e-01\\n5.43978363e-02 -1.73286274e-01 -4.42974448e-01 -3.68398070e-01\\n-1.38676062e-01 -1.22788310e-01 -1.15603566e-01 3.46086144e-01\\n-1.90185964e-01 -3.19064438e-01 -1.18321769e-01 -3.02026749e-01\\n1.49741739e-01 -5.85458837e-02 1.46711886e-01 -1.07005358e-01\\n-1.12792425e-01 -4.94814038e-01 -7.87488520e-02 -1.26430020e-02\\n-6.25668615e-02 -5.17611265e-01 7.18413740e-02 -1.26572937e-01\\n-3.51406336e-01 -3.42792064e-01 4.27952528e-01 1.58343211e-01\\n2.92053550e-01 7.35495538e-02 1.92187250e-01 9.29680467e-02\\n2.42085248e-01 -2.09956437e-01 -6.52197748e-02 -4.28102195e-01\\n1.13753691e-01 1.29677877e-02 3.56757641e-01 -1.39725700e-01\\n5.95265180e-02 -4.74153273e-02 -1.96044385e-01 1.08044177e-01\\n3.51226360e-01 -7.46629536e-02 1.26048654e-01 -9.89988893e-02\\n2.28379756e-01 -1.74221754e-01 -8.06893706e-02 -8.21441934e-02\\n-1.20985508e-02 4.78411973e-01 1.85648389e-02 -4.04103279e-01\\n-1.63658038e-01 4.16564524e-01 -3.50516737e-02 7.55141228e-02\\n-2.73788035e-01 9.54674631e-02 -1.58852607e-01 1.05109513e-01\\n5.19702956e-02 -1.16043687e-01 -2.46563852e-01 -1.48928374e-01\\n-8.38022213e-03 2.41752774e-01 2.39010498e-01 1.70416176e-01\\n-4.66609299e-02 -4.84040946e-01 -3.39100510e-02 1.03743151e-01\\n2.23296911e-01 3.54030848e-01 9.99640450e-02 -1.43432915e-01\\n-5.38823530e-02 2.99958050e-01 -1.42372385e-01 2.04950690e-01\\n-1.67644218e-01 4.60833423e-02 -4.80412751e-01 -3.05830777e-01\\n-1.91224143e-01 -3.04509580e-01 1.25635996e-01 1.78347692e-01\\n1.01358786e-01 -4.71056625e-02 3.66861969e-02 -3.68680596e-01\\n3.60507727e-01 -2.23484002e-02 1.68992192e-01 2.87386417e-01\\n8.05964023e-02 4.78129297e-01 -2.06412114e-02 -2.41654545e-01\\n-2.58198738e-01 6.82896674e-02 -7.50630498e-02 -9.59449485e-02\\n-1.13021538e-01 -4.63119566e-01 -9.00463760e-02 2.91628897e-01\\n8.54387432e-02 -1.79054305e-01 -1.80885807e-01 2.93220252e-01\\n-3.52848060e-02 -2.82161146e-01 -1.89196676e-01 9.93866473e-02\\n3.19101930e-01 4.50062975e-02 3.40891242e-01 -4.57236171e-01\\n-8.12024437e-03 3.75672989e-03 4.27433364e-02 3.87720585e-01\\n1.43703163e-01 3.08227204e-02 2.50835866e-02 -1.03445567e-01\\n4.27705050e-01 4.25322168e-03 -1.47609338e-01 -2.18114220e-02\\n-1.22298999e-02 -2.64833808e-01 -4.12210643e-01 4.53993864e-02\\n1.54387634e-02 -1.87523454e-01 2.00271189e-01 2.26405501e-01\\n1.36943072e-01 1.86846346e-01 -6.23575687e-01 -3.11281234e-01\\n-2.72688270e-01 -7.46220127e-02 -1.61298007e-01 -5.98822951e-01\\n-5.26227653e-02 -1.60619378e-01 -5.12833834e-01 2.23620832e-01\\n-1.99773207e-01 -2.26917550e-01 2.89636683e-02 -2.64805946e-02\\n-2.26892859e-01 -1.72381550e-02 9.05376524e-02 1.92729682e-01\\n-1.90054402e-01 -3.08356494e-01 7.98863545e-02 -9.16494668e-01\\n2.44754165e-01 1.26115948e-01 -1.62654698e-01 1.56000525e-01\\n-5.11898920e-02 -5.43724835e-01 1.10677451e-01 -3.30279768e-01\\n-9.59731117e-02 -1.11055508e-01 -2.14255750e-01 -3.05696964e-01\\n1.29173636e-01 9.90917236e-02 -2.72180349e-01 3.67248654e-01\\n-2.41569310e-01 3.36164087e-01 -1.18225470e-01 1.89681709e-01\\n-2.55045556e-02 -2.50614882e-01 4.90682162e-02 -4.63509172e-01\\n-4.42663938e-01 -4.78289686e-02 -2.93956161e-01 -1.82729542e-01\\n-9.15682167e-02 -3.26429129e-01 -1.58199131e-01 7.88173266e-03\\n3.55013162e-01 1.11321256e-01 -2.15878040e-01 -1.99778080e-01\\n-1.01027749e-02 -4.35269386e-01 7.28160366e-02 -1.24450058e-01\\n-1.72532007e-01 -1.55117095e-01 1.75995022e-01 6.04557730e-02\\n9.23057869e-02 -4.38449442e-01 2.12705374e-01 -4.12990004e-01\\n-1.77700371e-01 3.52775455e-02 1.51766941e-01 -4.27182987e-02\\n3.10191214e-01 -5.31695306e-01 -1.33148372e-01 3.60731542e-01\\n1.92156658e-01 1.22936994e-01 2.48510137e-01 -1.05112694e-01\\n-3.10276225e-02 3.32370639e-01 -3.26704979e-01 2.87546311e-02\\n6.60951138e-01 1.40558146e-02 1.14590161e-01 1.53540939e-01\\n1.36091426e-01 2.02475622e-01 3.73074532e-01 3.98870967e-02\\n-8.17203596e-02 2.78016865e-01 1.23049542e-01 -5.34187078e-01\\n8.56103152e-02 1.60398185e-02 -1.50920987e-01 -3.59249055e-01\\n5.27325094e-01 4.54573154e-01 -3.76812160e-01 -1.04736984e-01\\n-1.46930024e-01 -2.46222705e-01 7.52527863e-02 -8.53082389e-02\\n9.06618014e-02 -6.35242537e-02 3.80300224e-01 -5.05376495e-02\\n1.65290058e-01 5.25279045e-01 -2.02532679e-01 -1.49422392e-01\\n-7.49496296e-02 2.19272479e-01 1.31069452e-01 5.99074841e-01\\n-3.24672759e-01 3.49253654e-01 -2.16777883e-02 6.12939894e-02\\n-3.00563476e-03 1.96641952e-01 1.00822523e-01 1.38888687e-01\\n8.75716805e-02 2.34785248e-02 3.80474001e-01 3.27680051e-01\\n2.96373785e-01 3.49088460e-01 3.61197770e-01 1.22052357e-02\\n3.88095617e-01 5.43448329e-01 3.94161463e-01 7.96898007e-02\\n-1.15765408e-01 -2.32097395e-02 1.70684323e-01 5.45985699e-02\\n2.82389969e-01 4.28620130e-01 8.55596513e-02 7.31409192e-01\\n4.40824747e-01 3.43957067e-01 5.53978682e-01 -5.11166513e-01\\n-2.70876199e-01 9.49715823e-02 3.81921858e-01 -3.81199539e-01\\n-3.34283784e-02 2.62156010e-01 -2.39329025e-01 1.35472953e-01\\n-3.01012158e-01 -2.94908226e-01 -1.06197625e-01 1.01720273e-01\\n1.75570138e-02 -1.36717066e-01 -1.36007130e-01 2.07784176e-01\\n2.53596287e-02 -8.24529231e-02 -5.03892303e-01 -8.20760205e-02\\n-2.29820579e-01 -9.45581198e-02 -8.84789973e-02 -1.06933825e-01\\n-1.95553243e-01 -2.04667881e-01 -7.68022984e-02 -1.68210238e-01\\n1.08764410e-01 -2.25887850e-01 -1.02291167e-01 -1.50993258e-01\\n2.05251634e-01 1.72239333e-01 5.04531920e-01 5.80869466e-02\\n7.53936470e-02 -1.64148331e-01 -1.98206425e-01 2.27361530e-01\\n2.38725513e-01 7.71717280e-02 -3.20064127e-02 1.33442372e-01\\n-1.87769115e-01 -1.63739294e-01 1.48616225e-01 2.12877229e-01\\n-4.14592385e-01 1.82784513e-01 -4.59128544e-02 2.10533783e-01\\n4.82537746e-02 1.78980842e-01 -1.49310291e-01 7.29679316e-02\\n-9.19225067e-02 -3.82822752e-01 1.59175247e-01 4.10398394e-02\\n-5.37545420e-02 6.67795166e-02 2.44416818e-01 1.56278715e-01\\n-3.75526816e-01 -1.17589928e-01 -3.56263891e-02 7.25727156e-02\\n7.34297633e-02 2.33798921e-01 -1.78920031e-01 -2.84998477e-01\\n-1.60907775e-01 1.63124755e-01 -1.81693763e-01 9.81738716e-02\\n4.39910591e-02 3.35243493e-01 4.85722870e-02 1.18394889e-01\\n2.44057685e-01 2.95635611e-02 -2.14248627e-01 -1.78363383e-01\\n-3.35088402e-01 -1.35779217e-01 -6.89581875e-03 -1.33991510e-01\\n2.15163946e-01 -2.76667833e-01 -3.22432965e-02 -2.22511459e-02\\n-9.53167826e-02 -2.80633450e-01 1.29376590e-01 -8.89542606e-03]]',\n", + " \"Start: As soon as possible Location: Zürich, Switzerland, 100% YOUR ROLE: Develop the back-end for our core technology, which allows us to build investment strategies and forecast models on different asset classes and sell products to our customers. Develop tools for our internal teams (sales, support, operations, finance) to more efficiently run the business, and work closely with our mobile and UI-focused team members to integrate their front-ends with our backend services. Continuously improve and maintain systems to ensure we have high performance, up-time, and strong security in place. WHAT WE OFFER: AI leader: we offer a position at the top of the food chain when it comes to artificial intelligence, especially deep and machine learning in financial services. Modern way of working: we use the latest technologies and offer lots time flexibility to individual team members (it matters ‘what’ you do not ‘when’ in the day). Beautiful office in Zürich, Switzerland: a large open space with a great view on river Limmat to work, interact and socialize with other team members - very close to the train station. International start-up atmosphere: the company languages German and English – our team and Investors are very diversified and work internationally from Switzerland to Germany, from Singapore to Boston. Work with direct impact: Exciting backend challenges to solve that will have very direct impact on our product. Very little red tape. If you like to get things done using the latest in tech rather than talking about it, you'll feel right at home. You work directly with the CTO and other decision makers in the team (very little hierarchy). Great place to work: we are a business with strong values & beliefs - a great, warm-hearted team is waiting for you. Great team: we are very selective – and only hire the best chess players, cyclists or e-sports champions! ;-) WHO YOU ARE: Python is your language: Backend software developer with broad back-end programming skills in Python (Python is really a MUST!) You will also shape the whole architecture of services and data stores that you will eventually own and you have deep and machine learning skills. The ideal degree: Computer Science or related field Innovation: You thrive in a collaborative environment for Innovation involving different stakeholders and subject matter experts. Some financial knowledge would be great. Curiosity is key: We like to learn new, fail fast and explore new territories - so do you? The answer is ‘yes’. Entrepreneurial and Team player: you want to tackle something and write your own story and you have an entrepreneurial team driven mindset - then you'll find a team of like-minded people. HOW YOU APPLY: Interested? Then please send your CV to careers@privatealpha.ch including a short motivation letter /E-mail why you are the person who should take on this role. THE PRIVATE ALPHA TECHNOLOGY TEAM & YOUR IMPACT Private Alpha is a start-up based in Meggen and Zurich, Switzerland. The company revolutionizes how asset management decisions are made. The company is a leader in AI for investments in Switzerland and Germany. As a team member of the technology team, you will work very directly with our CTO and our other teams (product, growth, sales, support, etc.) to improve the experience for our end-customers as well as for our internal users of our technology. WHO WE ARE, THE PRIVATE ALPHA COMPANY: Private Alpha is building the next generation of decision making in asset management based on our AI platform “Caesar”. The technology is a multi-staged combination of financial market indicators for ideal asset allocation while formulating new investment insights through the use of AI. Private Alpha is a founder-owned company with strong investors that has recently won the prestigious award of most innovative FinTech at the Finanzsymposium Alpbach. The company was founded in 2017 and has two mutual funds run under its name. Friendship, respect and ‘radical transparency’ are key elements of the company culture. More insights on our company and our team can be found on LinkedIn and of course on our website.\",\n", + " '[\"Decisiveness\", \"Collaboration\", \"Operations\", \"Integration\", \"Decision Making\", \"Innovation\", \"Socialization\", \"Curiosity\", \"Sales\"]',\n", + " '[\"Python Server Pages\", \"Tooling\", \"Operations Support Systems\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Machine Learning\", \"High Performance Computing\", \"Staging\", \"Mutual Fund\", \"Financial Services\", \"Open Space Technology\", \"Customer Development\", \"Python (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Investment Strategy\", \"Financial Market\", \"Investments\", \"Mobility\", \"Asset Classes\", \"Personalization\", \"Artificial Intelligence\", \"Transparency (Human-Computer Interaction)\", \"Asset Management\", \"Front End (Software Engineering)\", \"Indicators (Measuring Device)\", \"Back End (Software Engineering)\", \"Software Development\", \"Forecasting\", \"Operational Data Store\", \"Asset Allocation\", \"Custom Backend\", \"Food Chain\", \"Integrated Product Team\"]',\n", + " \"['English', 'Kurdish', 'Hindi', 'Pushto']\"],\n", + " ['75',\n", + " 'big data analytics consultant (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.24657977e-01 2.66480863e-01 4.03708637e-01 5.52951731e-02\\n4.74771887e-01 -1.88399032e-01 -5.48370555e-02 2.70024627e-01\\n-1.03801742e-01 -2.47027114e-01 -6.18684962e-02 -2.31567279e-01\\n-2.09308133e-01 -4.63474020e-02 1.93037182e-01 4.56488281e-01\\n1.97904155e-01 5.74505627e-02 -2.20258549e-01 3.89666051e-01\\n1.63357392e-01 1.68488510e-02 -5.21437824e-02 6.25772059e-01\\n3.44795674e-01 7.12243170e-02 -5.07170185e-02 1.14482321e-01\\n-3.25625151e-01 -2.13749915e-01 3.71888340e-01 1.21615261e-01\\n-1.33393362e-01 -3.26863378e-01 5.64361028e-02 1.36270598e-01\\n-1.32316202e-01 2.17972212e-02 1.11082233e-01 1.48086190e-01\\n-4.13106233e-01 -3.52661520e-01 -2.38295645e-02 4.10655774e-02\\n-2.46083573e-01 -2.19602853e-01 8.51807073e-02 -2.13733166e-01\\n1.32484317e-01 -1.27748907e-01 -7.90116251e-01 3.89926761e-01\\n-8.52794871e-02 -2.30224311e-01 2.80786991e-01 5.43365300e-01\\n1.86808974e-01 -4.82637227e-01 -3.03831816e-01 -3.11922431e-01\\n-1.15718395e-01 -1.55567974e-01 -2.11600773e-02 -8.23215023e-02\\n3.23412627e-01 -6.71108812e-02 3.64408642e-02 4.35833871e-01\\n-6.98343813e-01 -1.50606349e-01 -3.16619515e-01 -3.00216582e-02\\n-3.55540067e-01 6.46120012e-02 -2.14444488e-01 -1.37788743e-01\\n-1.48012256e-02 3.30956072e-01 6.90950379e-02 3.67540829e-02\\n-1.81379065e-01 3.09748471e-01 -7.75800347e-02 1.22237265e-01\\n4.30342048e-01 1.94445644e-02 7.48123676e-02 3.52303624e-01\\n-4.62808579e-01 3.33887339e-01 1.53335541e-01 -2.11710230e-01\\n2.03079537e-01 1.42713949e-01 4.58510756e-01 1.43581778e-01\\n-1.50686800e-02 1.88764468e-01 -6.81302845e-02 9.75959226e-02\\n9.87182334e-02 -2.88198709e-01 -1.22820996e-02 -9.86896306e-02\\n-8.05200562e-02 -1.10864028e-01 -1.04244873e-01 2.25199148e-01\\n-2.51758993e-01 4.45553511e-01 1.97088525e-01 -9.71271843e-02\\n-9.38720331e-02 -5.47962129e-01 -2.04556026e-02 -1.35943323e-01\\n-1.44117447e-02 1.78458765e-01 2.28875130e-01 9.69114304e-02\\n2.11405694e-01 6.05333149e-02 2.32737660e-01 8.63802791e-01\\n-6.67311698e-02 2.47384697e-01 -8.11904967e-02 3.47638994e-01\\n2.14432195e-01 -2.41179988e-01 1.88662812e-01 2.77329832e-01\\n1.43474355e-01 -7.40473941e-02 -2.07542092e-01 1.10111997e-01\\n-2.92777389e-01 -5.58331385e-02 -2.46758729e-01 1.21852063e-01\\n-8.34833756e-02 -4.62628633e-01 5.17256677e-01 1.01963870e-01\\n2.34594867e-01 -8.92134979e-02 -7.63500556e-02 -6.70153499e-02\\n-1.25044286e-01 3.44033271e-01 7.76981413e-02 3.65115821e-01\\n-2.85364807e-01 -2.27430657e-01 -1.68392539e-01 2.59311646e-01\\n-8.93594399e-02 1.50160834e-01 -2.12526381e-01 -2.41358802e-01\\n2.56768703e-01 7.45351017e-02 -4.18954402e-01 2.32971057e-01\\n-9.20282528e-02 -3.01516235e-01 -8.54056776e-02 3.36219639e-01\\n-1.25438124e-01 8.16780105e-02 -1.27540961e-01 -2.10439190e-01\\n5.98792195e-01 1.12959936e-01 1.31542116e-01 -1.06392866e-02\\n3.54528815e-01 -1.48461834e-01 3.67590606e-01 1.16971314e-01\\n-4.75283265e-01 3.85634720e-01 -6.12980053e-02 -1.53823882e-01\\n1.14497095e-01 -7.87231475e-02 3.67246538e-01 -2.63791889e-01\\n7.69605190e-02 -2.29905203e-01 -2.89583474e-01 -3.69110137e-01\\n-3.05458188e-01 -2.28647999e-02 3.73175144e-01 -2.58599192e-01\\n-1.33389667e-01 1.84824601e-01 -4.97243762e-01 -2.12856382e-01\\n2.39376411e-01 1.54149234e-01 1.22257195e-01 8.42629373e-02\\n-1.48538440e-01 -5.13383806e-01 7.67424412e-04 -4.56170738e-01\\n-4.49278057e-01 1.07531317e-01 -2.43529588e-01 1.38666883e-01\\n-8.45465157e-03 1.04444429e-01 -1.45213395e-01 1.39669552e-01\\n-3.42880726e-01 -1.21268956e-02 3.17491710e-01 9.17394534e-02\\n2.27917522e-01 -2.81389691e-02 -4.64619279e-01 3.63580823e-01\\n-2.97530562e-01 6.29668653e-01 2.93676436e-01 -8.58507395e-01\\n6.00406170e-01 2.47421920e-01 -4.38355729e-02 -3.21073115e-01\\n3.82413089e-01 -4.54510212e-01 1.03202961e-01 2.18986854e-01\\n-1.93023339e-01 -2.24297047e-01 2.77094245e-01 -1.42519474e-01\\n-2.75209337e-01 7.15729058e-01 1.09935798e-01 -8.38741660e-03\\n2.78249890e-01 -3.47871870e-01 -1.49277955e-01 -7.54205137e-02\\n-1.26123473e-01 -1.58880651e-01 -3.62710267e-01 4.18873169e-02\\n-5.21921292e-02 -4.43924874e-01 -1.22550637e-01 -3.51599455e-01\\n-2.17439190e-01 -3.58710617e-01 -1.66120365e-01 5.53501368e-01\\n1.72732040e-01 1.48655728e-01 -5.10472991e-02 6.27181157e-02\\n2.13016793e-02 -6.77679121e-01 2.63570119e-02 1.56139031e-01\\n4.29497540e-01 4.26235378e-01 1.20211363e-01 -1.07222706e-01\\n7.20579773e-02 4.58310872e-01 -3.24849933e-01 -4.69362676e-01\\n1.20948359e-01 2.46170700e-01 -8.75075161e-02 -1.43778250e-01\\n3.06717213e-02 4.14513260e-01 -1.52548745e-01 7.98515230e-02\\n-5.09621985e-02 -3.37596647e-02 2.88310885e-01 -8.51243883e-02\\n-2.59129792e-01 -2.48084888e-01 -1.07206732e-01 4.17353839e-01\\n-4.55096900e-01 -2.95699924e-01 4.93359119e-01 2.67585516e-01\\n1.04166932e-01 9.87610891e-02 1.59669712e-01 -9.46748778e-02\\n-2.41889521e-01 -2.06641480e-01 7.19374493e-02 1.14903308e-01\\n1.54794693e-01 1.68604553e-01 -1.65888637e-01 -5.79622149e-01\\n-3.57280254e+00 -1.66369483e-01 9.40934345e-02 -2.50164032e-01\\n1.32519946e-01 -1.60074592e-01 1.77748222e-02 1.24993268e-04\\n-3.09931993e-01 3.48519422e-02 -2.51087934e-01 -9.68015194e-02\\n-5.01769446e-02 3.70906234e-01 1.95662305e-01 1.30219638e-01\\n6.29047602e-02 -2.94956833e-01 -5.97659871e-02 4.51221347e-01\\n-5.71054071e-02 -5.97080767e-01 6.10559136e-02 -2.70614754e-02\\n9.41013396e-02 1.93160430e-01 -2.95033067e-01 -5.33003360e-02\\n-1.59602582e-01 -2.92092144e-01 5.40809594e-02 -1.85575441e-01\\n-2.31511936e-01 3.23763251e-01 1.83153190e-02 2.51424741e-02\\n1.71084553e-02 -3.45862359e-01 4.83627245e-03 -4.63196993e-01\\n1.83083434e-02 -6.50673568e-01 1.10113822e-01 -1.29478052e-01\\n6.19499981e-01 -1.71883479e-01 1.64680645e-01 8.25170428e-02\\n1.52414739e-01 1.44183725e-01 -7.42539540e-02 9.23693925e-02\\n-4.04316783e-01 -3.39711070e-01 -1.52906194e-01 -2.12636232e-01\\n4.92860794e-01 4.52050358e-01 -1.94139645e-01 3.94274406e-02\\n6.12214394e-02 -3.68301123e-01 -3.59432876e-01 -4.59352970e-01\\n-1.79410696e-01 -1.05310522e-01 -7.82973528e-01 -3.89842480e-01\\n-1.07847266e-01 -7.40328655e-02 -1.48246467e-01 5.17379999e-01\\n-4.25732076e-01 -3.02365601e-01 -3.11661046e-02 -5.76998055e-01\\n1.75453022e-01 -2.50924259e-01 1.18869089e-01 -1.08758770e-01\\n-4.28882420e-01 -5.45945108e-01 1.35436788e-01 -6.39963374e-02\\n-2.73836553e-01 -1.25771627e-01 -5.42873964e-02 -1.50473699e-01\\n-3.71174812e-01 -4.78934616e-01 4.55827057e-01 5.81516586e-02\\n4.04190063e-01 5.25167659e-02 3.52820516e-01 5.40281273e-02\\n3.69563937e-01 -1.42850906e-01 1.54164925e-01 -4.40472364e-01\\n-1.50377881e-02 -7.27538094e-02 6.17186785e-01 -3.37619066e-01\\n-7.98815920e-04 1.43601045e-01 -3.87742221e-01 4.51690145e-02\\n4.33017135e-01 6.97335377e-02 -2.84609534e-02 3.85080650e-02\\n3.04149210e-01 -4.39139873e-01 -2.51772523e-01 2.29168221e-01\\n6.25483692e-02 7.46959448e-01 1.53785080e-01 -3.98818523e-01\\n-2.73576587e-01 4.42720085e-01 -1.05279423e-01 -2.92515010e-01\\n-3.94287659e-03 9.64050665e-02 -1.08432928e-02 1.80245802e-01\\n1.91943049e-01 -1.39023125e-01 -3.10651004e-01 -1.01574868e-01\\n-1.01671368e-01 1.81781232e-01 2.54396319e-01 1.73916332e-02\\n-1.77484378e-01 -1.45373225e-01 -8.15279111e-02 1.51666939e-01\\n3.41565043e-01 2.77526647e-01 2.30214342e-01 -2.56547749e-01\\n-1.24195844e-01 2.80876309e-01 -1.46120146e-01 2.03659862e-01\\n-2.31511772e-01 -1.23045258e-02 -6.38915658e-01 -1.40853032e-01\\n-1.16785087e-01 -4.06442106e-01 9.80072320e-02 4.51995403e-01\\n1.47926375e-01 -1.41804880e-02 1.21987112e-01 -6.75949872e-01\\n4.65204954e-01 9.30783618e-03 2.94393063e-01 -4.22049537e-02\\n-7.24454271e-03 6.48691297e-01 8.38677883e-02 -1.06787130e-01\\n-1.78073332e-01 2.57070380e-04 -2.71783113e-01 -3.21119547e-01\\n1.33974046e-01 -3.62626970e-01 -1.67959645e-01 4.62886989e-01\\n2.16455862e-01 -1.96468338e-01 -2.68126875e-01 3.86032373e-01\\n7.36291260e-02 -1.16419293e-01 -1.72267541e-01 -1.54097095e-01\\n9.05091688e-02 8.18365887e-02 2.11391598e-01 -3.84197831e-01\\n-9.24029648e-02 7.25724502e-03 -1.02481991e-01 4.45573270e-01\\n2.33765647e-01 2.17196345e-03 -1.19219415e-01 -1.12279281e-01\\n4.77678895e-01 7.39159212e-02 -1.02440808e-02 -1.83209047e-01\\n5.34331761e-02 -1.61599129e-01 -5.43467045e-01 1.27441689e-01\\n2.26400066e-02 -2.07771003e-01 3.99081334e-02 1.26956865e-01\\n9.48517025e-02 -9.55117643e-02 -5.11640429e-01 -1.34313524e-01\\n-2.96207964e-01 -1.97169781e-01 8.34421720e-03 -4.40010995e-01\\n-6.08646013e-02 -4.08985317e-02 -4.74269569e-01 1.62010312e-01\\n-2.57994533e-01 3.95236127e-02 5.61214499e-02 1.12782247e-01\\n-3.13135445e-01 -5.62288091e-02 1.23703495e-01 6.55236319e-02\\n-3.24727982e-01 -2.33877331e-01 1.73838958e-01 -8.67197335e-01\\n3.66364270e-02 3.81748080e-02 -1.72619909e-01 -9.84981060e-02\\n5.09737171e-02 -6.12470865e-01 1.71933293e-01 -3.79230201e-01\\n9.28858295e-02 1.66427702e-01 -1.86153516e-01 -2.71243542e-01\\n2.15185702e-01 -1.49369046e-01 -3.39394897e-01 2.85160750e-01\\n-4.36540067e-01 3.83276671e-01 3.44243012e-02 6.58520982e-02\\n1.13638245e-01 -2.98370063e-01 1.09630808e-01 -2.60959774e-01\\n-2.95403719e-01 -1.32792309e-01 -2.43005142e-01 -2.14576960e-01\\n-3.28693986e-02 -1.14346907e-01 -1.46675602e-01 -2.34769657e-02\\n3.62576395e-01 1.58618227e-01 -1.49778306e-01 -2.91960686e-01\\n1.44143686e-01 -5.20475268e-01 6.45340383e-02 -2.89951175e-01\\n-1.07838638e-01 -7.67017528e-02 2.47558981e-01 -1.26879007e-01\\n1.26984835e-01 -2.13296577e-01 5.36207199e-01 -2.71530777e-01\\n-3.28695238e-01 -6.12852275e-02 3.49014215e-02 -3.84226814e-02\\n1.45297498e-01 -4.34249490e-01 1.83019135e-02 2.99251199e-01\\n1.45913318e-01 9.08420235e-02 1.94602937e-01 -5.16849495e-02\\n-1.87211692e-01 1.62376866e-01 -5.14262378e-01 2.72320230e-02\\n8.45109284e-01 1.74166545e-01 -1.88028179e-02 7.97598660e-02\\n1.03486285e-01 3.03225011e-01 4.88733262e-01 9.46431905e-02\\n-9.45596248e-02 2.97458827e-01 6.29310310e-02 -5.90335131e-01\\n-1.95201412e-01 -6.40738904e-02 -2.71086156e-01 -1.44361332e-01\\n6.54626906e-01 2.24897325e-01 -4.58670229e-01 -3.24929148e-01\\n1.16491746e-02 -1.60545275e-01 2.98054814e-01 8.12950823e-03\\n2.10847072e-02 -3.35726552e-02 6.36160612e-01 -2.31563225e-02\\n2.61216104e-01 5.44154286e-01 -1.10226095e-01 -2.91567653e-01\\n-1.62452802e-01 9.10881311e-02 1.26755029e-01 4.64957565e-01\\n-7.12975785e-02 2.72732407e-01 -2.02512503e-01 7.26963133e-02\\n-1.18712701e-01 7.99069926e-02 2.48465434e-01 5.95515445e-02\\n1.82864115e-01 7.30946735e-02 3.22981149e-01 4.45086271e-01\\n1.89001605e-01 5.21294594e-01 3.20597351e-01 -2.69004740e-02\\n2.99621433e-01 5.52624345e-01 3.13479841e-01 6.10632785e-02\\n-3.02685029e-03 3.77092673e-03 9.80772898e-02 -1.11338317e-01\\n3.85266244e-01 3.71054232e-01 2.88722426e-01 8.35137248e-01\\n3.64108801e-01 3.88806522e-01 7.95281351e-01 -5.88144183e-01\\n-3.81724179e-01 1.15902364e-01 5.69804192e-01 -2.04880893e-01\\n-6.41120672e-02 2.11715668e-01 -2.93586552e-01 2.35258982e-01\\n-5.24780571e-01 -7.65886232e-02 1.76971741e-02 6.62062541e-02\\n-4.10882719e-02 -6.88370615e-02 -1.65670261e-01 1.30968988e-01\\n-4.51544002e-02 -1.46040648e-01 -2.52888113e-01 -2.47479752e-01\\n-2.92161196e-01 -2.50979420e-02 -1.05498269e-01 -7.72482157e-02\\n-1.63930118e-01 -3.22964728e-01 -6.78818896e-02 -3.20950150e-02\\n3.67162138e-01 -1.40736431e-01 -8.80448148e-02 -1.65193886e-01\\n8.57414156e-02 2.88050681e-01 5.27825534e-01 -1.40973955e-01\\n8.29792172e-02 -1.48120806e-01 -2.58663028e-01 -2.51262728e-03\\n1.08489074e-01 -2.15140264e-02 -2.49596089e-02 4.46018040e-01\\n-3.16060275e-01 4.38817777e-03 1.35541677e-01 3.45733911e-01\\n-2.97989905e-01 -1.62548140e-01 -3.05953622e-02 3.23237240e-01\\n1.05832316e-01 1.03430137e-01 -3.05554956e-01 1.42218113e-01\\n-3.03837776e-01 -4.88143593e-01 4.49125469e-01 -1.28925666e-02\\n-1.08090669e-01 1.81858748e-01 2.93287784e-01 1.43092990e-01\\n-2.14891031e-01 -4.72267233e-02 8.67531914e-03 2.99586505e-01\\n-1.38621971e-01 4.08703804e-01 -1.55412972e-01 -2.81231105e-01\\n-1.68482393e-01 4.46332932e-01 -3.94569971e-02 2.08324715e-01\\n-1.63493440e-01 4.95885223e-01 -5.15786409e-02 2.33150601e-01\\n1.93566099e-01 1.43851181e-02 -2.34564513e-01 -2.67272592e-01\\n-2.88735032e-01 -1.77177429e-01 -2.57319380e-02 -6.86217891e-03\\n7.91436583e-02 -3.60711247e-01 -7.28069469e-02 -1.54376984e-01\\n-2.17273921e-01 -3.21390837e-01 -7.60798082e-02 9.48940292e-02]]',\n", + " 'Job Informationen Your role: - You are taking part in advising our clients on leveraging their big data analytics clusters - You will implement and execute data analytics programs - You will create and maintain predictive statistical models - You will prepare and give trainings for external and internal staff on how to best use the cluster and on how to implement business applications leveraging the cluster resources Your skills: - Minimum of 2 years of Big Data experience and minimum of 3 years of programming experience - Must have a University Degree in Computer Science or Statistics / Mathematical Engineering - Experienced in collecting, tracking and documenting business requirements - Experienced in problem parallelization is a plus - Experienced in data analytics, modelling, mining - Experienced concurrent algorithm design - Experienced in applying supervised and unsupervised machine learning methods - Familiarity with Storage and Network Design for Big Data Analytics Clusters a plus - Background and familiarity with IT infrastructure methodologies, processes, and practices including ITSM and ITIL is a plus Your tools: - Know-how of Python, R, Java, C++ and shell scripting - Know-how of any of the tools matplotlib, pandas, numpy, MongoDB, Hive, ElasticSearch, Cassandra, RapidMiner, OpenMPI, Tableau, Qlik is a plus Benötigte Skills ITIL Python Machine Learning JAVA C++ Shell-Scripts',\n", + " '[\"Supervision\"]',\n", + " '[\"Tableau (Business Intelligence Software)\", \"Tooling\", \"Matplotlib\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Shell Script\", \"RapidMiner\", \"Computer Science\", \"Analytics\", \"Collections\", \"Prediction\", \"Machine Learning\", \"Mathematical Statistics\", \"Network Security Design\", \"IT Infrastructure\", \"NumPy\", \"Python (Programming Language)\", \"Maintainability\", \"MongoDB\", \"Tracking (Commercial Airline Flight)\", \"Executable\", \"Statistical Modeling\", \"Machine Learning Methods\", \"Business Requirements\", \"Storages\", \"Apache Hive\", \"R (Programming Language)\", \"Big Data\", \"Resourcing\", \"Algorithm Design\", \"Java (Programming Language)\", \"Pandas (Python Package)\", \"Elasticsearch\"]',\n", + " \"['English', 'Bosnian', 'Kannada', 'Xhosa']\"],\n", + " ['114',\n", + " 'internship aircraft data analytics (all genders)',\n", + " 'Zürich',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " \"['English', 'Indonesian', 'Avestan']\"],\n", + " ['75',\n", + " 'backend sw engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.68256277e-01 2.80966550e-01 3.44677925e-01 5.30506372e-02\\n5.80511034e-01 -2.47638822e-01 7.77832866e-02 2.96363652e-01\\n-1.86372668e-01 -3.81059796e-01 -8.01259801e-02 -1.91526100e-01\\n-1.20249137e-01 4.19630893e-02 6.58501759e-02 2.97487617e-01\\n2.96830416e-01 1.03520900e-01 -2.24871874e-01 3.48558217e-01\\n2.44660843e-02 -2.33520754e-02 -7.16324151e-02 7.10306168e-01\\n3.73393893e-01 7.64411092e-02 -7.30364174e-02 3.10215969e-02\\n-2.69114822e-01 -2.33520836e-01 3.59915376e-01 8.74466226e-02\\n-2.01426968e-02 -2.21706823e-01 8.55944529e-02 1.63908675e-02\\n-2.02809051e-01 3.03395186e-02 -7.03047067e-02 1.84850901e-01\\n-3.49794418e-01 -3.19804043e-01 3.57922874e-02 1.16022877e-01\\n-2.03592315e-01 -3.27240318e-01 -7.38833472e-02 -8.32037814e-03\\n1.08916402e-01 -5.48914671e-02 -5.44368207e-01 4.32967663e-01\\n-2.85363168e-01 -2.13028684e-01 3.27406317e-01 4.80463058e-01\\n7.07191764e-04 -5.72555006e-01 -2.74876982e-01 -3.11568081e-01\\n-7.87170604e-04 -2.16793537e-01 9.30675864e-02 -2.66013175e-01\\n2.65337527e-01 -1.99370328e-02 6.45290688e-02 3.96281332e-01\\n-7.15952098e-01 -7.56770745e-02 -2.58975267e-01 4.84445971e-03\\n-3.44652683e-01 -1.32466108e-01 -3.00590098e-01 -7.25278556e-02\\n-6.71878159e-02 3.16180170e-01 -2.17432920e-02 6.17913567e-02\\n-1.51244149e-01 3.00630808e-01 -9.61166099e-02 1.84126168e-01\\n2.33807787e-01 1.18075542e-01 1.84917077e-01 3.30178261e-01\\n-4.02723163e-01 4.94906694e-01 2.78163515e-02 -1.89738944e-01\\n2.46067822e-01 2.03865394e-01 4.66537535e-01 7.31082112e-02\\n-3.48280333e-02 1.81059256e-01 -2.56648839e-01 1.59588724e-01\\n2.00172037e-01 -3.17932218e-01 2.00379938e-02 -1.10025086e-01\\n-8.66630152e-02 1.95057467e-02 4.45732585e-04 2.31951535e-01\\n-2.83212394e-01 4.38437521e-01 2.28525981e-01 -1.96417868e-01\\n-7.44504780e-02 -4.96552169e-01 -1.17808118e-01 -2.58486811e-02\\n-1.42118305e-01 1.98162153e-01 2.90167809e-01 1.20146722e-01\\n1.79669514e-01 5.00745960e-02 1.73523605e-01 9.51189220e-01\\n-2.46720817e-02 1.25142261e-01 -1.97533846e-01 2.33240172e-01\\n2.42920592e-01 -1.90623596e-01 1.76015064e-01 3.12252760e-01\\n1.64266855e-01 1.83322039e-02 -1.87562793e-01 3.77678484e-01\\n-2.49157727e-01 -6.96034804e-02 -3.38936239e-01 1.09828226e-01\\n-1.85315907e-01 -5.79838157e-01 6.25603855e-01 1.71961352e-01\\n2.00974256e-01 1.01519758e-02 5.39434999e-02 -7.08785728e-02\\n-7.03627914e-02 2.46599570e-01 7.77274892e-02 1.78365037e-01\\n-3.97517234e-01 -2.17392102e-01 -1.14692204e-01 2.54033774e-01\\n-2.28492916e-01 7.52320215e-02 -4.59703095e-02 -4.00270000e-02\\n2.37886637e-01 5.03434539e-02 -3.75742763e-01 1.42910615e-01\\n-1.12772316e-01 -2.28844285e-01 -1.34519503e-01 3.83624822e-01\\n-7.34532773e-02 2.68917799e-01 5.40079512e-02 -7.69566670e-02\\n5.54528654e-01 1.61391243e-01 1.55689299e-01 -1.64353289e-02\\n2.59011865e-01 -1.06625922e-01 3.07998925e-01 1.54668242e-01\\n-6.65170670e-01 1.90961540e-01 -2.93293837e-02 -1.18123017e-01\\n7.81614110e-02 1.31149411e-01 2.44318053e-01 -3.87164861e-01\\n-1.18726470e-01 -1.59455091e-01 -3.86809468e-01 -3.32343668e-01\\n-2.47529522e-01 9.23015028e-02 3.47663224e-01 -2.65317112e-01\\n-4.82774228e-02 5.91426976e-02 -3.72780293e-01 -1.42033011e-01\\n1.64764598e-01 1.58674031e-01 3.43571417e-02 8.71408135e-02\\n-4.59054932e-02 -6.15433395e-01 -1.43101104e-02 -5.04064023e-01\\n-6.24376178e-01 6.46936819e-02 -3.60657811e-01 2.46049732e-01\\n-2.42124051e-02 1.28714904e-01 -9.33485851e-02 2.03563452e-01\\n-3.41948122e-01 6.93769604e-02 1.14815541e-01 1.63760811e-01\\n1.60189509e-01 -6.42544180e-02 -4.50130522e-01 4.45112824e-01\\n-2.10934803e-01 5.23637235e-01 2.21961200e-01 -7.07449436e-01\\n6.36946261e-01 1.72863886e-01 -3.61249298e-02 -4.06198651e-01\\n3.93998146e-01 -3.90469640e-01 -1.74895655e-02 8.44453499e-02\\n-2.60609835e-01 -2.46748820e-01 3.50345880e-01 -2.54884869e-01\\n-3.57528716e-01 5.20105898e-01 1.54569283e-01 1.10955499e-01\\n2.70659983e-01 -2.81114399e-01 -4.63892668e-02 1.07461095e-01\\n-9.90929604e-02 -2.05803499e-01 -3.38931829e-01 5.04897423e-02\\n-9.08693597e-02 -4.78580534e-01 -1.01777166e-01 -4.82099354e-01\\n-1.62538871e-01 -3.30503732e-01 -2.43613437e-01 3.15286875e-01\\n2.02044815e-01 1.45659372e-01 7.61852860e-02 -1.54940626e-02\\n-6.57685176e-02 -7.43359923e-01 -9.27251130e-02 -1.06826294e-02\\n5.37342727e-01 1.67797074e-01 2.22710315e-02 -9.00486112e-02\\n3.53892031e-03 4.98980403e-01 -3.74690175e-01 -3.90252203e-01\\n5.71420491e-02 1.52028054e-01 -3.06195877e-02 -2.02539220e-01\\n5.28162764e-03 4.07761842e-01 -2.38233924e-01 1.35247439e-01\\n-5.10711111e-02 -8.85524303e-02 4.05885488e-01 -1.31611060e-02\\n-3.47480059e-01 -1.97392955e-01 -9.28023532e-02 1.45437539e-01\\n-5.24388373e-01 -1.30381510e-01 5.59510589e-01 2.86901951e-01\\n1.90427989e-01 2.36356452e-01 2.60759771e-01 -9.23052505e-02\\n-1.39417976e-01 -2.85702348e-01 1.08309023e-01 1.53566405e-01\\n-3.82178137e-03 1.11081935e-01 -1.30673394e-01 -5.21439373e-01\\n-3.56062269e+00 -5.72392419e-02 2.28134543e-01 -2.83745587e-01\\n1.84516937e-01 -1.33128716e-02 -6.78385142e-03 3.67290564e-02\\n-3.99421692e-01 6.83811009e-02 -2.16967925e-01 -1.92042127e-01\\n4.35629264e-02 3.56590509e-01 7.23295435e-02 1.37255475e-01\\n1.43693984e-01 -2.57922351e-01 -1.95843816e-01 3.23520690e-01\\n-1.59120247e-01 -6.54160619e-01 1.07833773e-01 5.10134958e-02\\n1.85165629e-01 1.51602179e-01 -3.37271720e-01 -2.79328637e-02\\n-7.37449527e-02 -2.80705243e-01 -9.30318311e-02 -1.46301761e-01\\n-2.10048124e-01 3.16557288e-01 1.60904914e-01 -1.03805587e-01\\n-7.55465627e-02 -3.03779960e-01 -5.29515669e-02 -4.60794389e-01\\n1.47117585e-01 -5.53129137e-01 3.23036462e-02 -1.01737969e-01\\n7.63723314e-01 -2.43185744e-01 1.68201491e-01 -1.92443337e-02\\n1.34243369e-01 1.03382960e-01 -2.04743315e-02 3.98349464e-02\\n-2.16008723e-01 -3.03375393e-01 -3.02219372e-02 -2.41419956e-01\\n4.70418245e-01 4.26415265e-01 -2.55726814e-01 -4.89498526e-02\\n9.98428166e-02 -3.56135607e-01 -2.20863923e-01 -2.58219093e-01\\n-1.28375947e-01 -1.67964280e-01 -7.53873765e-01 -4.53482836e-01\\n-1.39948219e-01 -1.30637571e-01 -1.79183066e-01 6.85823739e-01\\n-3.26341331e-01 -4.67525035e-01 4.03417125e-02 -5.45589864e-01\\n9.74138454e-02 -2.54920065e-01 7.36849010e-02 -1.48353577e-01\\n-2.53879339e-01 -4.79702592e-01 9.93387476e-02 -2.29159947e-02\\n-1.47317365e-01 -1.29291221e-01 -1.78953316e-02 -1.56996712e-01\\n-3.52823853e-01 -2.84348994e-01 3.98072630e-01 1.54219553e-01\\n3.36670429e-01 1.61767811e-01 3.46327454e-01 9.29220691e-02\\n2.54116535e-01 4.29166704e-02 1.13745682e-01 -2.56963491e-01\\n1.17407493e-01 -1.33167744e-01 6.75389588e-01 -2.10271806e-01\\n-3.06424163e-02 2.17618912e-01 -1.58588171e-01 -1.52335107e-01\\n4.65653092e-01 -3.48148644e-02 -4.37473841e-02 -9.63325799e-02\\n3.44315141e-01 -4.37570572e-01 -1.39008015e-01 1.31856829e-01\\n1.22326307e-01 7.11004436e-01 6.48837164e-02 -3.90598357e-01\\n-3.15256923e-01 5.10156810e-01 -1.70436800e-02 -4.39828150e-02\\n-1.38245210e-01 9.51706916e-02 -1.49762645e-01 1.48976564e-01\\n1.69290587e-01 -2.52623677e-01 -1.34392485e-01 -2.07254682e-02\\n-1.28508016e-01 1.82498679e-01 2.94994891e-01 1.21286921e-01\\n-7.36759230e-02 -3.18882346e-01 -2.82738686e-01 2.13413090e-01\\n1.78033501e-01 3.21200728e-01 2.33400777e-01 -2.96987057e-01\\n-8.88423845e-02 2.74162829e-01 -6.39112070e-02 2.36131728e-01\\n-1.91125125e-01 1.17985599e-01 -5.77232420e-01 -1.51990280e-01\\n-1.82451352e-01 -3.55341643e-01 -9.63377487e-03 3.92011106e-01\\n1.12721696e-01 -2.80157998e-02 1.37635335e-01 -4.28060919e-01\\n3.83078098e-01 1.65574297e-01 2.16329724e-01 3.94830592e-02\\n2.24087574e-02 5.06155550e-01 -2.36281455e-02 -1.44592866e-01\\n-1.81049764e-01 -3.10048577e-03 -2.26907879e-01 -1.86938718e-01\\n9.39327627e-02 -4.24537361e-01 -1.03394493e-01 3.78989726e-01\\n1.09884910e-01 -2.03449875e-01 -2.22843081e-01 1.92236215e-01\\n1.26634508e-01 -2.22964704e-01 -2.68124551e-01 -8.59432817e-02\\n2.69510955e-01 4.22532149e-02 2.69445181e-01 -3.63558859e-01\\n-1.24990664e-01 -4.05609459e-02 -1.04681544e-01 3.71735752e-01\\n4.38280068e-02 1.25749245e-01 -2.25489825e-01 -8.71866271e-02\\n4.16496962e-01 -1.99916437e-01 -1.01017416e-01 -5.68775786e-03\\n2.14488301e-02 -2.21383125e-01 -5.36945581e-01 3.34589146e-02\\n-2.31792871e-02 -9.16041583e-02 1.03917226e-01 4.95176688e-02\\n1.12624101e-01 2.97736600e-02 -4.76847261e-01 -2.42387205e-01\\n-3.20910484e-01 -1.01022720e-01 2.21627682e-01 -3.39469522e-01\\n2.06570011e-02 -7.44875893e-02 -6.46117508e-01 2.20176965e-01\\n-2.93631554e-01 6.44078925e-02 2.09118575e-01 6.84900731e-02\\n-2.89846301e-01 -7.18417093e-02 5.40907830e-02 2.68675357e-01\\n-2.00353399e-01 -9.69718024e-02 -1.32815599e-01 -9.32604074e-01\\n2.26728067e-01 -6.84717745e-02 -6.46681637e-02 -4.70831804e-02\\n4.15480183e-03 -6.18592799e-01 1.54709801e-01 -3.55068088e-01\\n2.02562585e-02 9.17806178e-02 -2.54402548e-01 -2.93878287e-01\\n8.91731530e-02 -1.47753209e-01 -2.84847856e-01 3.83184791e-01\\n-4.57132012e-01 1.83667257e-01 1.60041936e-02 1.10351361e-01\\n-2.38874350e-02 -2.93784559e-01 2.02276498e-01 -4.16057378e-01\\n-3.50548148e-01 -1.97443083e-01 -2.71469623e-01 -3.08780611e-01\\n5.73224500e-02 -3.66917074e-01 -1.48068368e-01 6.08434752e-02\\n2.30457067e-01 4.75714169e-02 -1.31713197e-01 -2.82507241e-01\\n-3.21307369e-02 -5.15598178e-01 2.60962754e-01 -1.64898157e-01\\n4.75019254e-02 -2.06220839e-02 2.24028453e-01 9.45636630e-02\\n1.84180185e-01 -3.89262885e-01 3.92789364e-01 -3.63392323e-01\\n-3.01650137e-01 -4.81558852e-02 -5.16412966e-02 6.42930493e-02\\n2.61086762e-01 -5.41121542e-01 1.01180077e-02 1.86398819e-01\\n7.75865912e-02 7.26497918e-02 2.30011582e-01 -1.09838851e-01\\n-1.73561439e-01 1.53525159e-01 -2.96756804e-01 8.38316903e-02\\n7.66189814e-01 1.42351881e-01 1.14174858e-01 1.68061465e-01\\n9.82450545e-02 3.79284948e-01 4.92646873e-01 1.93414406e-03\\n3.30070704e-02 2.17681155e-01 3.02026719e-02 -4.71996814e-01\\n-1.98831648e-01 -5.58554381e-02 -2.32645109e-01 -3.01343143e-01\\n4.88483787e-01 3.37962657e-01 -4.36467230e-01 -3.03671569e-01\\n8.37995932e-02 -9.90793705e-02 3.49347502e-01 7.99787715e-02\\n-4.62359339e-02 -2.34577790e-01 5.53103149e-01 3.91831249e-02\\n3.02090526e-01 5.90380311e-01 -6.04438595e-02 -4.08283502e-01\\n-1.40415251e-01 2.38491431e-01 4.59875353e-02 4.55891699e-01\\n-8.67438391e-02 2.29221463e-01 -2.01717131e-02 5.56300431e-02\\n3.30250449e-02 6.81054220e-02 1.29672989e-01 1.54104605e-01\\n1.95514098e-01 1.66474506e-01 3.70199621e-01 5.40943503e-01\\n7.32200742e-02 4.85517889e-01 2.70979524e-01 5.00193834e-02\\n2.99673736e-01 6.42767489e-01 4.52486783e-01 2.01659963e-01\\n6.43692091e-02 1.64361969e-01 1.21771529e-01 -1.07977420e-01\\n3.70519519e-01 2.84178942e-01 1.81891605e-01 8.49902451e-01\\n3.34213793e-01 1.84644729e-01 7.72197366e-01 -6.86626375e-01\\n-3.28088492e-01 3.39398682e-02 4.50774461e-01 -2.42100075e-01\\n-4.00201790e-02 1.57529965e-01 -2.51336247e-01 3.51791948e-01\\n-4.80008394e-01 -1.14155754e-01 3.30991074e-02 -6.21156096e-02\\n7.45923668e-02 -9.39129516e-02 -9.83097106e-02 -1.97362620e-02\\n-1.56326681e-01 -1.46081910e-01 -2.79602110e-01 -1.78151205e-01\\n-3.31089139e-01 5.21156229e-02 -1.19059257e-01 -1.49056032e-01\\n-1.86889935e-02 -4.32440907e-01 -5.47806136e-02 1.09304845e-01\\n3.38639438e-01 -6.29020408e-02 -6.29020631e-02 -8.41925852e-03\\n1.99822500e-01 3.48794281e-01 5.95449805e-01 -7.12604076e-02\\n9.79602411e-02 -2.22206548e-01 -2.13774800e-01 7.25805014e-02\\n2.28640297e-03 -6.96777776e-02 1.04644112e-01 3.42532545e-01\\n-3.15297872e-01 -7.83983991e-02 -1.87895447e-02 2.60366470e-01\\n-4.01568830e-01 -9.28893909e-02 -1.57994911e-01 2.52415776e-01\\n-2.83473004e-02 1.41502365e-01 -2.46584997e-01 -8.50632787e-03\\n-1.97978795e-01 -3.97043020e-01 4.11216497e-01 -1.76645890e-01\\n-1.31972298e-01 2.76845545e-01 2.00490072e-01 1.43336028e-01\\n-2.52448678e-01 2.04628538e-02 -8.30664188e-02 1.74150482e-01\\n-3.00979521e-02 4.37407762e-01 -2.07550764e-01 -1.64763391e-01\\n-2.82055020e-01 3.11717063e-01 -1.00641996e-01 1.29502967e-01\\n-6.62696660e-02 2.52333671e-01 1.82071149e-01 -6.27015159e-02\\n3.45473260e-01 9.84240919e-02 -2.71901995e-01 -1.56051815e-01\\n-8.02501589e-02 -1.78788513e-01 -4.45113108e-02 -5.37209585e-02\\n1.52462572e-01 -3.73692155e-01 -6.55194223e-02 -9.74771529e-02\\n-4.11849990e-02 -3.18096995e-01 -1.56579182e-01 -1.07962815e-02]]',\n", + " \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting our BI environment. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: Bachelor's or higher degree in computer science or equivalent work experience A minimum of three years of software engineering experience Excellent knowledge with Scala or Java Expert knowledge in an enterprise class RDBMS Demonstrated ability in data modeling, ETL development, and data warehousing Experience with big data technologies, such as Kafka, Spark, and Cassandra Excellent troubleshooting and creative problem-solving abilities and analytical skills Excellent written and oral communication and interpersonal skills Advantage: experience with systems for automating deployment, scaling, and management of containerised applications, such as Kubernetes and Mesos experience with machine learning experience with encryption and cryptography standards Benötigte Skills Scala JAVA ETL Datawarehouse Business Intelligence Kryptografie / Verschlüsselung\",\n", + " '[\"Analytical Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " '[\"Machine Learning Methods\", \"Data Warehousing\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Mesos\", \"Apache Cassandra\", \"Encryption\", \"Cryptography\", \"Maintainability\", \"Computer Science\", \"Java (Programming Language)\", \"Data Modeling\", \"Big Data\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Business Intelligence\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'junior data analyst',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.69903481e-01 3.30211699e-01 3.92661035e-01 4.90615964e-02\\n5.56073964e-01 -4.56960872e-02 1.97432823e-02 2.03761920e-01\\n-1.14606410e-01 -2.59626091e-01 -6.09852895e-02 -2.39072815e-01\\n-1.46226600e-01 2.28210520e-02 1.02569878e-01 4.44392890e-01\\n2.21634388e-01 1.38972506e-01 -1.40524939e-01 3.04671645e-01\\n1.15937673e-01 -1.00240514e-01 -9.84825194e-02 6.73958302e-01\\n5.08503199e-01 1.85407437e-02 -2.31237620e-01 5.71484007e-02\\n-3.82248580e-01 -3.01472396e-01 3.43140543e-01 9.73194018e-02\\n-1.39029562e-01 -3.78364325e-01 1.07878134e-01 1.27601147e-01\\n-2.35481039e-01 4.53270879e-03 -8.93662572e-02 2.39326522e-01\\n-4.66389835e-01 -2.46199742e-01 4.14232537e-02 7.08748251e-02\\n-2.36647680e-01 -2.56346852e-01 -1.17730774e-01 -3.74902412e-02\\n-2.94771735e-02 7.94671327e-02 -5.94967782e-01 4.93730962e-01\\n-2.30061308e-01 -2.44092524e-01 1.82035565e-01 7.39780784e-01\\n1.21820599e-01 -5.53129792e-01 -3.08142394e-01 -3.74406427e-01\\n-2.36968882e-02 -1.12940542e-01 1.33159161e-01 -2.37707719e-01\\n3.32335234e-01 4.84203827e-03 -5.79093210e-02 4.24355984e-01\\n-8.62976730e-01 -9.71233025e-02 -2.24476844e-01 -2.22595390e-02\\n-5.32340348e-01 5.94385602e-02 -3.59243333e-01 -6.88645244e-02\\n-1.18864454e-01 3.67610186e-01 -4.74069417e-02 8.26179534e-02\\n-1.70148581e-01 2.23239958e-01 -1.21832490e-02 1.70375019e-01\\n3.08648199e-01 1.81487590e-01 3.40257764e-01 3.66689950e-01\\n-3.18727314e-01 3.68465990e-01 1.17254652e-01 -2.63595492e-01\\n2.16223836e-01 1.54409528e-01 5.19486368e-01 5.11390567e-02\\n-6.45652488e-02 1.29642174e-01 -2.53183067e-01 2.99986809e-01\\n1.61745206e-01 -4.39516872e-01 1.31676912e-01 8.29570089e-03\\n-1.73895523e-01 6.91733137e-02 9.78381485e-02 2.59390116e-01\\n-3.07596564e-01 4.34935749e-01 1.39447704e-01 -2.06035927e-01\\n-3.61505784e-02 -6.10142708e-01 -1.00276120e-01 -4.69638361e-03\\n1.17541723e-01 3.94250423e-01 2.72953212e-01 1.00699633e-01\\n2.63319761e-01 1.22485673e-02 2.11649716e-01 8.42800319e-01\\n4.15918492e-02 8.90497267e-02 -1.77863166e-01 3.18379700e-01\\n3.25477928e-01 -1.96858913e-01 1.95026726e-01 2.44496241e-01\\n8.95442665e-02 -6.68318942e-02 -3.25990647e-01 3.09875816e-01\\n-1.65617988e-01 -1.64334849e-01 -3.22462916e-01 6.12857789e-02\\n-2.42983088e-01 -4.15133566e-01 5.81723511e-01 8.22580010e-02\\n2.96112478e-01 -1.04103237e-01 1.71245597e-02 -3.75425480e-02\\n-6.51072264e-02 4.05751258e-01 5.91281131e-02 2.82216817e-01\\n-2.91610003e-01 -1.68535903e-01 -1.07815035e-01 3.78378898e-01\\n-2.85254389e-01 4.49367128e-02 -1.08398706e-01 -4.45846356e-02\\n2.82868624e-01 1.54228896e-01 -3.20729077e-01 1.19504400e-01\\n-1.14336200e-01 -3.91188443e-01 -7.64971375e-02 3.50683928e-01\\n-1.00491866e-01 2.39754349e-01 3.03259362e-02 -3.01487833e-01\\n6.62374616e-01 3.26763153e-01 1.95564002e-01 4.22401540e-02\\n3.41230124e-01 -1.85006544e-01 3.11518729e-01 1.63052961e-01\\n-6.62602842e-01 3.45543474e-01 6.48731813e-02 -2.75541097e-01\\n1.00821942e-01 7.34974220e-02 4.50670421e-01 -3.99756700e-01\\n3.56923379e-02 -2.31615767e-01 -3.79971802e-01 -4.11220878e-01\\n-2.66762912e-01 3.15081254e-02 4.09278840e-01 -3.34985644e-01\\n-1.33521825e-01 2.62247235e-01 -4.52034235e-01 -2.23917171e-01\\n1.26374215e-01 1.53301477e-01 5.30270971e-02 -2.57687792e-02\\n-8.62678885e-02 -6.35706961e-01 4.50634882e-02 -4.63739485e-01\\n-5.35800934e-01 3.69748590e-03 -3.49186510e-01 1.30858615e-01\\n-3.59033458e-02 6.13594353e-02 -9.43311527e-02 1.34197414e-01\\n-3.54555607e-01 -1.64842084e-02 3.56554314e-02 1.87073305e-01\\n2.50404596e-01 -4.16482799e-02 -5.16741753e-01 3.75585020e-01\\n-2.20642731e-01 5.30993879e-01 2.65517473e-01 -9.04959261e-01\\n6.30442917e-01 2.15591192e-01 9.25984383e-02 -2.50578582e-01\\n3.78691554e-01 -4.48909819e-01 -9.15755406e-02 1.65064305e-01\\n-2.16029018e-01 -2.37218425e-01 3.51897150e-01 -1.77554384e-01\\n-3.55367988e-01 4.60479677e-01 2.18342736e-01 -8.94561782e-03\\n2.88449913e-01 -3.12268019e-01 -5.50551079e-02 1.02989577e-01\\n-4.47699204e-02 -1.61732897e-01 -4.82570559e-01 3.75194140e-02\\n-6.72925413e-02 -4.71965730e-01 -8.25488418e-02 -3.33299011e-01\\n-1.39920011e-01 -3.51502776e-01 -3.77326757e-01 3.11004162e-01\\n1.52781412e-01 1.58988565e-01 4.05513011e-02 1.89531930e-02\\n7.43351802e-02 -7.34974742e-01 -2.18533337e-01 5.60102053e-02\\n4.93476361e-01 2.60669619e-01 2.46646572e-02 -1.74784794e-01\\n-1.12977496e-03 5.15721321e-01 -3.41495842e-01 -4.67799664e-01\\n1.95672363e-02 9.23142359e-02 -9.55522582e-02 -1.36673942e-01\\n8.85168016e-02 3.19082975e-01 -1.07110932e-01 7.99562410e-02\\n-8.89738426e-02 -4.78304587e-02 4.19248402e-01 8.59825499e-03\\n-2.74071276e-01 -1.06046446e-01 -1.37584895e-01 2.48347938e-01\\n-5.89287400e-01 -2.13321909e-01 5.59960544e-01 1.62665859e-01\\n1.92150578e-01 1.22509658e-01 1.89478770e-01 -1.00261785e-01\\n-2.56064795e-02 -2.74536699e-01 2.34207943e-01 1.49035946e-01\\n4.43218984e-02 8.54118317e-02 -7.88715556e-02 -7.66854465e-01\\n-3.27940965e+00 -3.14133286e-01 1.41042575e-01 -3.91017616e-01\\n1.82209447e-01 -1.15987666e-01 5.03617823e-02 -3.44741940e-02\\n-3.00532490e-01 5.49929254e-02 -2.86814153e-01 -1.72902986e-01\\n4.06640675e-03 2.38242477e-01 3.91243175e-02 1.80157244e-01\\n1.53169468e-01 -1.97287470e-01 -1.49520129e-01 3.35524678e-01\\n5.03745803e-04 -7.03826666e-01 5.96859083e-02 9.91246551e-02\\n2.37975270e-01 2.07187563e-01 -4.33561444e-01 1.28541784e-02\\n-2.35836565e-01 -2.62833148e-01 5.33691011e-02 -2.86824256e-01\\n-3.13884258e-01 2.71430731e-01 1.09556332e-01 -1.05196491e-01\\n-1.42289875e-02 -3.14451575e-01 -2.76335906e-02 -3.73896092e-01\\n7.24806041e-02 -5.91529787e-01 -5.61806485e-02 -6.87715709e-02\\n7.53360629e-01 -3.11479509e-01 2.59482831e-01 9.38942004e-03\\n1.71413392e-01 8.25963542e-02 2.62180008e-02 5.61644994e-02\\n-2.59518206e-01 -2.80994236e-01 1.46166412e-02 -1.69610560e-01\\n5.25863886e-01 5.11499107e-01 -1.65557310e-01 6.70194626e-02\\n2.22234637e-01 -3.11955512e-01 -3.11834574e-01 -3.88804317e-01\\n-2.40330726e-01 -2.34804913e-01 -7.05123782e-01 -4.79961872e-01\\n-1.78665057e-01 -9.45891719e-03 -2.03674048e-01 6.05339706e-01\\n-3.27680856e-01 -5.04034042e-01 2.23229658e-02 -5.27502716e-01\\n1.80814773e-01 -2.59595037e-01 7.15190694e-02 -1.66806027e-01\\n-3.63574892e-01 -5.42186856e-01 1.35831445e-01 -8.89754370e-02\\n-2.47457966e-01 -1.14685707e-01 -1.29641011e-01 -1.80894926e-01\\n-3.27081829e-01 -3.57394665e-01 5.02651691e-01 5.52136675e-02\\n3.59626859e-01 1.47503734e-01 3.71624470e-01 1.12909146e-01\\n3.14907074e-01 -1.09508485e-01 1.06382534e-01 -3.85194182e-01\\n3.58129735e-03 -6.70126826e-02 7.12407172e-01 -2.92129695e-01\\n7.88502395e-02 3.35630290e-02 -2.85090357e-01 -1.44628927e-01\\n4.88318801e-01 3.24213207e-02 9.44490582e-02 -5.70058711e-02\\n3.51760805e-01 -3.92466605e-01 -1.90895021e-01 2.43023679e-01\\n3.64841856e-02 7.20716894e-01 5.84823266e-02 -4.04302835e-01\\n-2.32394651e-01 4.47871596e-01 -7.59328008e-02 -4.97647654e-03\\n-1.05114341e-01 1.18639819e-01 -8.31916779e-02 2.59987295e-01\\n1.26624748e-01 -2.72606432e-01 -2.23663345e-01 -1.68161094e-01\\n2.98183933e-02 1.99713036e-01 2.93037713e-01 -3.97289991e-02\\n-5.07048741e-02 -2.18218073e-01 -2.11851820e-01 1.74137101e-01\\n2.92431593e-01 3.85163456e-01 1.44175962e-01 -2.27869362e-01\\n-1.02706037e-01 2.51480222e-01 -2.14656040e-01 2.65399247e-01\\n-1.58830509e-01 1.55674249e-01 -5.60586274e-01 -9.05579254e-02\\n-1.20868422e-01 -3.91883761e-01 1.90963641e-01 3.58746231e-01\\n2.14726791e-01 1.51378429e-02 -4.11909074e-02 -4.85457003e-01\\n3.66061270e-01 1.75971150e-01 1.43844336e-01 1.02357678e-01\\n-5.87090999e-02 4.24725682e-01 -1.18267927e-02 -5.04770502e-02\\n-1.70471132e-01 -3.68972234e-02 -2.19831809e-01 -3.15829873e-01\\n2.23768741e-01 -4.78620768e-01 -1.36539534e-01 4.10748720e-01\\n1.76589787e-01 -3.42217773e-01 -2.45084122e-01 2.89245814e-01\\n7.63109550e-02 -4.16781366e-01 -1.76472515e-01 -8.15693382e-03\\n2.31761992e-01 1.39034420e-01 2.85722256e-01 -3.96381140e-01\\n-9.23257694e-02 -6.33148849e-02 -1.51948392e-01 2.55487949e-01\\n1.05200857e-01 1.33293360e-01 -1.55749455e-01 -1.51574627e-01\\n5.12240827e-01 1.89651884e-02 -6.05685450e-02 5.80746271e-02\\n5.63989691e-02 -2.50223964e-01 -4.39500749e-01 -1.27526775e-01\\n-1.48952249e-02 -3.23749006e-01 3.96459438e-02 7.22012073e-02\\n6.24779835e-02 -1.63984578e-02 -4.80627567e-01 -3.24877799e-01\\n-3.21176618e-01 -1.90499455e-01 1.78123623e-01 -3.55892122e-01\\n-8.25810134e-02 -6.06468096e-02 -6.09544992e-01 1.75386190e-01\\n-2.59284049e-01 -3.60954404e-02 1.21220216e-01 1.26917914e-01\\n-1.86400548e-01 -8.87692869e-02 9.61606503e-02 1.81614995e-01\\n-2.85488784e-01 -1.58323973e-01 3.38639840e-02 -9.73684549e-01\\n1.08692758e-01 1.33115768e-01 -4.66713170e-03 4.13510464e-02\\n-5.12922145e-02 -5.41548729e-01 1.77234396e-01 -4.31651056e-01\\n-9.09246579e-02 7.44284177e-03 -1.86018631e-01 -2.53871232e-01\\n2.71518528e-01 -1.65154591e-01 -3.13458860e-01 3.71603012e-01\\n-4.41296160e-01 3.28340769e-01 7.62637481e-02 7.21891820e-02\\n-2.36079600e-02 -2.22803444e-01 1.07833743e-01 -2.65182316e-01\\n-4.45908189e-01 -1.36173964e-01 -3.94252926e-01 -1.42236337e-01\\n-2.70827673e-02 -2.58871943e-01 -1.58280507e-01 1.19419239e-01\\n3.47398967e-01 1.77878559e-01 -3.12975533e-02 -2.74050891e-01\\n6.41223416e-02 -5.58637738e-01 1.13728061e-01 -2.08668083e-01\\n-1.85295548e-02 5.22920396e-03 9.88802463e-02 -9.62967575e-02\\n8.77240896e-02 -2.91087627e-01 4.55982983e-01 -2.53869355e-01\\n-2.84520805e-01 -4.34890501e-02 6.40102625e-02 1.00279108e-01\\n3.80771756e-01 -4.47192520e-01 2.78782677e-02 2.48965412e-01\\n5.77623248e-02 1.19500525e-01 2.47714058e-01 -6.48874417e-02\\n-1.20549664e-01 1.78344697e-01 -5.32059669e-01 1.44256935e-01\\n8.96549881e-01 2.66778320e-01 4.69323136e-02 2.19581753e-01\\n2.57015437e-01 3.18985790e-01 5.33832371e-01 -8.06291327e-02\\n-9.58016291e-02 2.30021268e-01 -4.45018522e-02 -5.51859319e-01\\n-1.35526597e-01 -2.04562604e-01 -1.90782607e-01 -3.78986955e-01\\n6.04588270e-01 3.85152906e-01 -4.11267459e-01 -1.91748694e-01\\n-8.32971334e-02 -1.10327385e-01 2.43367568e-01 -5.42359985e-02\\n-9.09660161e-02 -1.49531305e-01 5.51828802e-01 -8.73960555e-03\\n3.66063893e-01 5.35598457e-01 -1.22023605e-01 -4.02548641e-01\\n-1.00493968e-01 2.76395261e-01 1.00876123e-01 5.10195315e-01\\n-1.59426585e-01 7.58925229e-02 -1.11529179e-01 7.02911541e-02\\n-1.66896489e-02 1.25271454e-01 2.28683323e-01 7.92856216e-02\\n2.92419672e-01 2.75281090e-02 3.08388889e-01 5.03178954e-01\\n7.84934908e-02 4.36758965e-01 3.81499827e-01 4.64925058e-02\\n1.86104923e-01 6.72974944e-01 2.91059941e-01 2.02554837e-01\\n-3.10175586e-03 2.01042145e-01 1.63644359e-01 -7.55597502e-02\\n3.72875303e-01 3.74817967e-01 3.15849006e-01 8.40524912e-01\\n2.73545325e-01 2.69655168e-01 7.63611376e-01 -7.31192827e-01\\n-4.02983159e-01 6.19159974e-02 6.12192333e-01 -1.57615051e-01\\n-1.26609221e-01 1.06311664e-01 -2.16974184e-01 3.51189196e-01\\n-6.01985335e-01 -9.25850198e-02 -4.02787402e-02 -1.20380364e-01\\n1.11637853e-01 -8.24511331e-03 -1.74308404e-01 6.63954467e-02\\n-1.94561049e-01 -8.28483924e-02 -3.47291708e-01 -1.15570366e-01\\n-3.89279306e-01 2.14222986e-02 -3.76100950e-02 -6.40734434e-02\\n-1.10988177e-01 -3.77812386e-01 -7.10287094e-02 5.20848855e-02\\n3.01097393e-01 -1.56266347e-01 -2.65326258e-02 -5.22031449e-02\\n1.04964025e-01 3.19031268e-01 4.77201283e-01 -9.14380103e-02\\n7.86635354e-02 -1.26054525e-01 -2.25667253e-01 -2.55079195e-02\\n1.59232274e-01 4.92963241e-03 1.94637284e-01 4.34655935e-01\\n-2.91074514e-01 -1.51027635e-01 5.28844893e-02 2.80973911e-01\\n-4.88572836e-01 -8.78828019e-02 -4.04011533e-02 2.29001075e-01\\n5.89627028e-02 2.81933814e-01 -3.20299417e-01 3.36592644e-02\\n-1.56576276e-01 -5.49048543e-01 4.01915342e-01 -1.75448596e-01\\n-1.01908915e-01 2.64829725e-01 2.05560997e-01 1.70984343e-01\\n-2.37505257e-01 -3.67347561e-02 -1.46159410e-01 2.52834141e-01\\n7.72492494e-03 4.63570625e-01 -1.27386123e-01 -2.77112961e-01\\n-2.64451444e-01 2.49437809e-01 -4.75737490e-02 1.64807796e-01\\n-1.27312437e-01 2.51511663e-01 -7.85685424e-03 1.40856072e-01\\n3.24630558e-01 5.67830615e-02 -3.62524450e-01 -2.20763236e-01\\n-1.49674267e-01 -2.44783461e-01 1.70121312e-01 -3.56495641e-02\\n1.41897425e-01 -3.42355549e-01 -7.14769140e-02 -2.73064435e-01\\n-1.82965696e-01 -3.93911481e-01 -1.39297768e-01 1.27686625e-02]]',\n", + " \"Job Informationen your tasks: Manage the end-to-end development of technical solutions, from partnering with multiple stakeholders to gathering detailed business requirements, through technical design, development, testing, and implementation Work on concurrent initiatives automating our business processes Develop RPA bots to increase operational efficiency and quality Translate analytic insights into concrete, actionable recommendations for business or product improvement Your profile: Bachelor's degree in Computer Science, Engineering, Mathematics, MTEC or other quantitative field combined with a passion for solving business problems Proven analytical and quantitative skills and an ability to use hard data and metrics to back up assumptions, develop business cases, and complete root cause analyses Proficient in at least one programming language (e.g., Python, Java, JavaScript, R) Experience extracting and transforming data sets with SQL Fluency in English, good German skills Nice-to-Have: Experience using Data Warehouse solutions and BI Tools in a business environment with large-scale, complex datasets (e.g. Teradata, AWS RDS, Looker, Tableau, Kibana, MS Excel) Benötigte Skills Englisch MS-Office Python Python R E-commerce Einzel-/Detailhandel JAVA JavaScript Junior Mathematik Datawarehouse Business Intelligence\",\n", + " '[\"\"]',\n", + " '[\"Development Testing\", \"Data Warehouse Systems\", \"Automation\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Kibana\", \"Computer Science\", \"Analytics\", \"Task Management\", \"Scale (Map)\", \"Operational Efficiency\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Translations\", \"Data Transformation\", \"Dataset\", \"Productivity Improvement\", \"Root Cause Analysis\", \"Business Intelligence\", \"Business Requirements\", \"Business Process\", \"E-Commerce\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Technical Solution Design\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Business Development\", \"Business Case\"]',\n", + " \"['English', 'Malay', 'Irish', 'Panjabi']\"],\n", + " ['10',\n", + " 'generalist software engineer',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.adia.com',\n", + " '[[-2.34357730e-01 1.77211717e-01 4.50642854e-01 6.24194928e-02\\n3.61446202e-01 -2.09411621e-01 -9.69556421e-02 4.26262468e-01\\n-1.75725855e-03 -5.28404415e-01 1.08158603e-01 -2.12111697e-01\\n-1.85971305e-01 4.15814593e-02 4.25019674e-03 3.25101495e-01\\n3.39432240e-01 1.35085016e-01 -2.09346324e-01 3.96495998e-01\\n4.85816114e-02 1.44165866e-02 4.01813798e-02 8.56108785e-01\\n2.92638361e-01 -9.84536707e-02 -5.00775091e-02 -1.97072849e-02\\n-1.42255187e-01 -2.87461281e-01 4.12779152e-01 -1.43019930e-02\\n-1.99003190e-01 -4.89317626e-01 1.06496632e-01 3.22331265e-02\\n-2.28973746e-01 -1.06016032e-01 -7.04628006e-02 6.61505610e-02\\n-5.92180431e-01 -1.05817899e-01 -2.67215073e-04 1.15558170e-02\\n-2.56093174e-01 -2.02435791e-01 2.64682531e-01 -1.02313191e-01\\n2.17359647e-01 4.41650711e-02 -5.33535600e-01 1.52487054e-01\\n-3.00773323e-01 -2.22172379e-01 3.24805200e-01 5.44023335e-01\\n8.68446827e-02 -3.70820522e-01 -6.40060306e-01 -3.37188751e-01\\n1.57391772e-01 -8.15164074e-02 -8.24991800e-03 -4.16488826e-01\\n1.69932663e-01 -2.53667682e-03 9.38911885e-02 2.97309518e-01\\n-7.75656104e-01 1.40022021e-04 -3.01735044e-01 -1.77524269e-01\\n-4.15125489e-01 -7.15525150e-02 -3.39484632e-01 -5.30512482e-02\\n-1.11584656e-01 3.63481969e-01 2.23013107e-02 5.43295331e-02\\n-2.38050610e-01 2.65910804e-01 -2.76697636e-01 3.63957107e-01\\n2.30403215e-01 1.79554105e-01 2.62853056e-01 3.89544427e-01\\n-4.32031691e-01 5.69146633e-01 2.21281797e-01 -4.24826562e-01\\n3.37669581e-01 1.14484698e-01 2.77481496e-01 4.74773720e-03\\n3.46326649e-01 2.29528546e-01 -2.44188324e-01 4.25320566e-01\\n3.03311855e-01 -3.64998519e-01 -5.14349341e-02 -2.34835371e-01\\n2.23037243e-01 -4.63447496e-02 1.95425391e-01 2.49686569e-01\\n-2.96803892e-01 3.29127610e-01 1.10541940e-01 -1.78398252e-01\\n-1.74966231e-01 -3.11714351e-01 1.32792294e-02 -6.94722980e-02\\n-1.12026110e-02 2.97306441e-02 2.80691028e-01 7.17958212e-02\\n2.92215049e-01 1.16339743e-01 7.37299025e-02 7.70783782e-01\\n-1.49151742e-01 -9.39861536e-02 -3.55707288e-01 2.15480685e-01\\n5.02598695e-02 -3.34488928e-01 2.83406556e-01 2.56998301e-01\\n4.21187356e-02 -2.28770614e-01 -2.67387331e-01 4.15128440e-01\\n6.51071966e-02 -7.81474635e-02 -2.71845877e-01 1.67861626e-01\\n4.07790616e-02 -3.47931057e-01 5.62877297e-01 1.42847851e-01\\n1.66625917e-01 8.20492506e-02 1.27221689e-01 -2.22774893e-01\\n-9.64030176e-02 1.13527104e-01 1.33591341e-02 2.61685699e-01\\n-2.71613479e-01 -2.07276732e-01 -2.11255461e-01 -5.29613532e-03\\n-4.67020750e-01 1.57926068e-01 -1.66700870e-01 -6.61679581e-02\\n2.48776600e-01 -6.89025149e-02 -1.45834520e-01 2.11400300e-01\\n-4.60385531e-03 8.80601779e-02 8.89584422e-02 3.32163572e-01\\n-8.34471956e-02 2.72368312e-01 -1.02067336e-01 -2.95348465e-04\\n7.31147885e-01 1.61515862e-01 1.29582942e-01 -1.01394653e-02\\n3.17157447e-01 -3.09839994e-02 1.77752033e-01 4.43416499e-02\\n-7.18647003e-01 3.11193377e-01 8.59753862e-02 -1.76871508e-01\\n3.85815054e-02 -8.01868662e-02 8.94968063e-02 -3.28503311e-01\\n-2.07668357e-03 -9.78643298e-02 -3.77963066e-01 -2.06185490e-01\\n-2.66643941e-01 -1.33655339e-01 3.28749448e-01 -5.73813081e-01\\n-1.64794266e-01 1.61695123e-01 -5.56612194e-01 -1.26163065e-01\\n1.81818843e-01 1.18485138e-01 3.48838829e-02 1.20732844e-01\\n-6.57649189e-02 -5.65822363e-01 7.47790188e-03 -3.23902696e-01\\n-2.99928725e-01 1.20972060e-01 -3.03581774e-01 2.36848965e-01\\n2.46446580e-02 -1.11157104e-01 -2.05512986e-01 1.55343354e-01\\n-2.81163096e-01 -6.07608333e-02 1.87259167e-02 -3.77400778e-02\\n2.46045411e-01 1.41405657e-01 -2.71757185e-01 4.36252773e-01\\n-1.92805290e-01 4.20228511e-01 3.98759805e-02 -8.48063946e-01\\n5.16651154e-01 3.37284952e-01 2.60602105e-02 -3.03608268e-01\\n4.82039750e-01 -3.19957048e-01 -4.72753793e-02 1.18708089e-02\\n-4.22319710e-01 -3.65023971e-01 1.18632041e-01 -1.20055683e-01\\n-2.29076147e-01 4.41334039e-01 1.68685578e-02 1.22095168e-01\\n2.66683996e-01 -2.95143664e-01 -1.70218021e-01 4.26461883e-02\\n-4.36174273e-02 -2.64941096e-01 -5.70072055e-01 -1.73296690e-01\\n-9.59402397e-02 -3.73135626e-01 -9.01092291e-02 -3.81963044e-01\\n-3.03484648e-01 -3.67887437e-01 -3.25443506e-01 1.72465086e-01\\n3.65027070e-01 1.15351006e-01 -1.76671609e-01 4.41055670e-02\\n-1.96262658e-01 -6.38638377e-01 -1.53445080e-02 9.00341570e-02\\n4.03036892e-01 2.14484930e-01 1.40960038e-01 -8.77763554e-02\\n8.56677890e-02 6.11184120e-01 -2.20123962e-01 -1.70760632e-01\\n1.44332975e-01 3.07946026e-01 3.98268998e-02 -1.72208861e-01\\n9.62053984e-02 3.65538210e-01 -2.66983598e-01 1.19120497e-02\\n6.00797608e-02 -1.14781007e-01 4.72176999e-01 -1.81287527e-02\\n-3.40620875e-01 -1.59127548e-01 -5.89444041e-02 7.86331743e-02\\n-5.60151815e-01 -2.07640141e-01 6.62522674e-01 1.34817734e-01\\n2.07729548e-01 1.35019571e-01 7.66624361e-02 -3.41901816e-02\\n-1.93129569e-01 -3.63212347e-01 3.65595520e-01 1.96470052e-01\\n5.63759357e-03 1.36874586e-01 -1.14385877e-02 -6.33948326e-01\\n-3.51720190e+00 -1.70903325e-01 2.31311023e-01 -2.33939826e-01\\n1.21051446e-01 -1.44097939e-01 1.04870707e-01 -1.51443958e-01\\n-2.59710342e-01 8.86521041e-02 -2.55226605e-02 -2.07740664e-01\\n1.72383606e-01 2.73695916e-01 1.42783254e-01 2.77567893e-01\\n2.90401459e-01 -1.09480977e-01 -1.03619203e-01 2.62350112e-01\\n-2.10322946e-01 -5.81685781e-01 2.18300730e-01 -1.22229025e-01\\n2.49179080e-01 3.43325794e-01 -2.61353403e-01 -2.15659082e-01\\n-2.33196288e-01 -1.44786984e-01 3.09041981e-03 -3.14398855e-01\\n-6.11099638e-02 7.79256821e-02 2.75532812e-01 -1.15195557e-01\\n9.28388312e-02 -3.77427459e-01 -2.15686366e-01 -4.98399168e-01\\n1.05892524e-01 -6.19739413e-01 4.74562645e-02 -1.07554451e-01\\n7.10010290e-01 -2.90163457e-01 9.88777503e-02 6.59488142e-02\\n2.02684700e-01 1.14987180e-01 1.53052598e-01 8.16277191e-02\\n-3.00244033e-01 -2.54828155e-01 -7.28145540e-02 -2.12789118e-01\\n6.09691501e-01 4.78747159e-01 -1.57557338e-01 -1.03387423e-01\\n8.34250078e-03 -3.03745985e-01 -4.75387752e-01 -1.71308473e-01\\n-5.75450733e-02 -2.36969173e-01 -4.78171110e-01 -1.98988646e-01\\n-1.38914868e-01 -1.13346778e-01 -1.23617195e-01 6.20270848e-01\\n-3.18964660e-01 -3.76670450e-01 7.91530013e-02 -4.40555573e-01\\n1.38095558e-01 -1.39180198e-01 7.80254677e-02 -2.42672697e-01\\n-1.45381108e-01 -4.15969789e-01 -3.73857282e-02 -4.78070602e-03\\n-1.67186558e-01 -4.20640886e-01 2.57500261e-02 -1.81305204e-02\\n-1.96739763e-01 -4.96377587e-01 4.48118448e-01 2.28275687e-01\\n3.00749063e-01 1.71086699e-01 3.88873905e-01 -1.10816494e-01\\n3.03268909e-01 -2.64634620e-02 -1.74137250e-01 -3.59178513e-01\\n2.14001358e-01 -5.45948148e-02 4.81265485e-01 -6.12466298e-02\\n8.74459669e-02 6.50107190e-02 -2.82970786e-01 -6.96368590e-02\\n3.90922368e-01 -5.27326167e-02 1.25027061e-01 -2.15654433e-01\\n3.06375265e-01 -3.04765403e-01 -2.19536662e-01 7.90679902e-02\\n1.20619357e-01 5.66225827e-01 -7.72845894e-02 -4.15341496e-01\\n-1.56156182e-01 5.14019608e-01 -2.29617991e-02 -1.67254657e-02\\n-3.65658939e-01 1.25757203e-01 -2.21883431e-01 2.23529935e-01\\n-3.37287225e-03 -8.23811293e-02 -2.73672521e-01 -1.72666520e-01\\n-9.20573547e-02 3.66034955e-01 9.43951607e-02 -5.66104241e-03\\n6.89797848e-02 -4.13586974e-01 -4.93394956e-03 1.24249384e-01\\n1.53357968e-01 5.04592657e-01 1.90762609e-01 -2.73277342e-01\\n-7.42612109e-02 4.07566845e-01 -5.26861697e-02 1.10268041e-01\\n-2.47509032e-01 1.45772621e-01 -4.96110886e-01 -2.03484818e-01\\n-3.84946585e-01 -3.88599992e-01 1.25257313e-01 2.86179602e-01\\n7.15422258e-02 -5.80643751e-02 -6.49900734e-03 -4.15708601e-01\\n2.34878302e-01 1.61224455e-01 1.13555588e-01 1.88083470e-01\\n2.91553698e-02 5.30551493e-01 -5.41128218e-04 -1.78410500e-01\\n-1.39748693e-01 9.00049657e-02 -8.70039240e-02 -2.27519393e-01\\n-1.66335348e-02 -6.54897332e-01 -8.56187120e-02 4.28667009e-01\\n1.15003340e-01 -2.43396759e-01 -2.19685853e-01 2.10523084e-01\\n5.10265678e-03 -1.83847547e-01 -3.20636988e-01 -1.70173824e-01\\n3.95530671e-01 1.02739856e-02 2.96419740e-01 -4.21421170e-01\\n-9.11489725e-02 -9.43519175e-04 1.18288863e-02 5.91502011e-01\\n-1.40371472e-02 3.11337970e-02 -9.36905295e-02 -1.27197668e-01\\n4.84377682e-01 -1.78487301e-01 -1.80336773e-01 -8.83898363e-02\\n2.37341970e-01 -2.03339398e-01 -5.10426939e-01 1.73052341e-01\\n-3.25407535e-02 -1.79154545e-01 1.29384011e-01 2.04165116e-01\\n3.47992256e-02 2.61823475e-01 -6.13007426e-01 -3.73492718e-01\\n-2.33723834e-01 5.78529350e-02 4.48574200e-02 -4.66655254e-01\\n7.11063072e-02 -8.92436504e-02 -5.25633395e-01 1.89346179e-01\\n-2.83952892e-01 -1.23598963e-01 1.71458304e-01 1.14896789e-01\\n-3.78218412e-01 -8.40683132e-02 5.45838624e-02 2.69998819e-01\\n-3.32596362e-01 -3.63918334e-01 4.08357196e-02 -9.65149760e-01\\n2.66203672e-01 1.09192953e-01 -2.53495902e-01 1.70312434e-01\\n-4.20476124e-02 -5.79026461e-01 3.58960032e-03 -2.84073949e-01\\n-2.16565877e-01 1.01437256e-01 -2.74276912e-01 -2.75845826e-01\\n1.17512479e-01 -1.03250906e-01 -3.72098535e-01 4.88247365e-01\\n-3.73931408e-01 4.16572332e-01 -1.06238648e-01 7.00273067e-02\\n8.98462534e-03 -2.51033366e-01 1.70217920e-02 -4.28717434e-01\\n-6.13978565e-01 -2.44019985e-01 -3.22769344e-01 -3.21743965e-01\\n6.60208240e-02 -4.54834044e-01 2.92447172e-02 -1.34856617e-02\\n3.71973604e-01 2.20063590e-02 -1.58485383e-01 -3.48872602e-01\\n6.46146685e-02 -5.66623092e-01 4.21255603e-02 -7.31301233e-02\\n-9.87710804e-03 -2.61232436e-01 3.73447955e-01 6.92701936e-02\\n2.11473614e-01 -4.64735836e-01 4.15046155e-01 -3.89259100e-01\\n-2.60881186e-01 -2.04080358e-01 6.07120693e-02 -1.51858088e-02\\n3.55237901e-01 -5.59743524e-01 8.94119292e-02 3.71051610e-01\\n2.25976527e-01 -6.32903501e-02 2.63508320e-01 -1.11721091e-01\\n8.02549794e-02 3.65785390e-01 -2.36899942e-01 2.20946968e-01\\n7.83722758e-01 -6.69128969e-02 2.25016147e-01 2.38315105e-01\\n1.66066021e-01 3.58103931e-01 4.82764006e-01 8.78819972e-02\\n-1.44699439e-01 2.54221767e-01 1.49210021e-01 -4.43210065e-01\\n6.46300763e-02 -2.42471546e-02 -1.31590158e-01 -3.49939346e-01\\n6.81308270e-01 4.56732154e-01 -3.70353729e-01 -1.77473739e-01\\n-8.52675065e-02 -1.13331154e-01 1.82681605e-01 -8.34054723e-02\\n-1.19885318e-02 -4.16316018e-02 3.86751771e-01 -1.43666565e-01\\n2.96373516e-01 5.02742589e-01 -1.85514271e-01 -3.53344411e-01\\n-1.00831836e-01 2.49017566e-01 5.52257672e-02 4.92687762e-01\\n-2.64676660e-01 2.37898737e-01 -5.37919253e-03 7.01152682e-02\\n-3.85264643e-02 1.98311269e-01 1.25846118e-01 4.42852378e-02\\n2.52896488e-01 -1.18701858e-02 6.06387377e-01 4.29776013e-01\\n3.30192387e-01 3.97101879e-01 4.08395708e-01 9.29553509e-02\\n4.95822787e-01 6.09616101e-01 4.11554873e-01 1.58041760e-01\\n-4.66639847e-02 2.59441361e-02 1.17435880e-01 5.23162372e-02\\n4.15555716e-01 4.30041820e-01 -4.56615910e-03 8.87700558e-01\\n3.90797228e-01 2.19780564e-01 6.10485494e-01 -6.80051923e-01\\n-2.81139165e-01 1.22357726e-01 4.42773908e-01 -3.24398488e-01\\n4.33683358e-02 1.90235198e-01 -1.02084458e-01 2.92286396e-01\\n-2.34378919e-01 -2.97200888e-01 4.02737930e-02 2.49989390e-01\\n-3.96211073e-03 -1.89491332e-01 -2.16711283e-01 3.55269648e-02\\n-5.20716235e-02 -9.31701586e-02 -4.03327465e-01 -4.92498986e-02\\n-2.77475148e-01 -6.37310073e-02 -1.07274607e-01 -1.53645545e-01\\n-7.75230527e-02 -4.31756258e-01 -4.87473346e-02 -4.88679372e-02\\n2.04535246e-01 -2.17914611e-01 -8.61552209e-02 -1.36939555e-01\\n3.05225372e-01 2.43932933e-01 5.92991352e-01 2.40222029e-02\\n5.80441207e-02 -1.61146075e-01 -2.67916769e-01 3.51892024e-01\\n1.20649263e-01 2.13450208e-01 1.60295852e-02 2.23295122e-01\\n-1.70472637e-01 -7.73162916e-02 2.30140865e-01 3.43708336e-01\\n-4.37528968e-01 2.89878957e-02 -1.58301950e-01 1.54029042e-01\\n7.88599327e-02 1.61403582e-01 -1.66944504e-01 1.30764931e-01\\n-2.26956189e-01 -4.26822960e-01 3.17641646e-01 -2.28523403e-01\\n-3.64293754e-02 -4.39546444e-02 1.95142537e-01 2.97778517e-01\\n-3.15638304e-01 2.09680498e-02 -9.55581367e-02 2.01084048e-01\\n8.35966095e-02 2.17634797e-01 -1.92732871e-01 -3.00760031e-01\\n-3.31351936e-01 5.17377071e-02 -1.31877571e-01 9.54504758e-02\\n2.58201733e-02 4.11046177e-01 -5.72855175e-02 3.36875468e-02\\n4.74288911e-01 -1.03365079e-01 -2.75695741e-01 -2.34067231e-01\\n-2.44685993e-01 -1.36474863e-01 -1.16823733e-01 -1.03973314e-01\\n1.86803281e-01 -2.80593574e-01 -5.38187549e-02 -3.27735804e-02\\n3.69149260e-02 -2.91557729e-01 5.03120795e-02 3.84197384e-03]]',\n", + " \"Adia is a quickly growing fast-paced start-up in the space of on demand staffing. Having been founded in 2016 we have a pretty short company history, but we were already able to build significant market presence in Switzerland and the US. We built what we think is the smartest collection of apps to bring jobseekers and businesses together. From giving people access to more flexible work, to helping companies grow and stabilise their day-to-day operations, we're creating a better way of working in today's on demand economy. In order to strengthen our in-house technology footprint, we are looking for generalist software engineers who will be able to use their broad and diverse experiences to make contributions to various parts of the complete technology stack. The Role You will be responsible for writing code that powers Adia’s platform. As the platform is being continuously improved and features are evolving all the time, you will see and feel your impact almost instantly. Your responsibilities include everything from implementing new applications or services and handling data, to debugging and communicating with internal stakeholders. Being in a small team, you will have a lot of freedom to make your own choices which most of the time comes with a lot of responsibility which you should feel comfortable with In this role you will need to collaborate closely with remote team members provided by our near shoring partner to deliver improvements and new features captured by the ever-growing product backlog. About You You understand rationale behind µservice architecture. You tried it at least once (and potentiallyfailed miserably). You understand the benefits of that architecture as well as the costs it incurs. You don’t necessarily need to be a UX expert, but you can work with one and you don’t shy away from writing code for customer facing applications (regardless of the fact whether it is for the web or for the mobile) You can develop in a cloud-first environment, including all the responsibilities that come with it such as deploying and operating those services in the cloud (in our case its Azure) You have an agile mindset. You are willing to innovate and explore solutions by acting on continuous iterative feedback. You’ll have persistence to stabilise, improve and monitor existing services. You have strong experience in one or more programming languages and remain open to learn new ones (majority of code is in .NET, and JavaScript but nothing is set in stone in the long run) Preferably, you have experience in a web framework like React, Vue or Angular (we primarily use Angular now) You feel comfortable writing and speaking in English at work (at least B2 level) and enjoy working in a multi-cultural environment. You have the right to work in Switzerland or you hold a passport of an EU member state. Our Culture We are open, honest, and motivated. Every day we put all our efforts and brain power to build a great product instead of overgrown egos. We’re an early player in the HR tech space, which brings excitement and purpose to our work. If you’re looking for a place that will help you unleash your superpowers by solving real life problems that are thrown at you, you may be the right fit for the team. Every day we push ourselves to be better than we were the day before. We have an incredible future ahead of us, and we’d love for you to be a part of our journey towards it.\",\n", + " '[\"Writing\", \"Collaboration\", \"Communications\", \"Operations\", \"Innovation\", \"Persistence\"]',\n", + " '[\"Angular (Web Framework)\", \"KM Programming Language\", \"Economy\", \"Intelligence Data Handling\", \"Backlogs\", \"Acting\", \"Collections\", \"JavaScript (Programming Language)\", \"Vue.js\", \"Web Frameworks\", \"React.js\", \"Footprinting\", \"Iterators\", \"Levelling\", \"Debugging\", \"Software Engineering\", \"Mobility\"]',\n", + " \"['English', 'Inupiaq']\"],\n", + " ['124',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.12718710e-01 1.10670008e-01 4.75184590e-01 -3.31541561e-02\\n5.69552958e-01 -1.60082176e-01 -7.25976750e-02 4.56851900e-01\\n-9.39485431e-03 -3.46985042e-01 -8.97977054e-02 -1.99055016e-01\\n-8.65264684e-02 1.58009958e-02 1.02504492e-01 2.59520143e-01\\n3.06469977e-01 1.36347577e-01 -2.48786330e-01 3.25105458e-01\\n1.79310754e-01 -2.32021026e-02 1.37772277e-01 6.70434237e-01\\n4.32870984e-01 -9.26994905e-03 -5.02437763e-02 1.68501791e-02\\n-3.41383606e-01 -2.54121363e-01 3.67121607e-01 8.42692852e-02\\n-7.05615878e-02 -3.59335333e-01 1.45708352e-01 8.81755725e-03\\n-1.51054129e-01 -4.73292582e-02 -2.31389552e-02 1.41306147e-01\\n-4.23853874e-01 -8.47265050e-02 3.57912071e-02 1.68432042e-01\\n-1.48513973e-01 -3.20981532e-01 1.53395742e-01 7.15538859e-02\\n1.64333247e-02 -6.99292794e-02 -5.31052053e-01 2.89238751e-01\\n-2.30182275e-01 -1.60018951e-01 3.27089399e-01 5.50157547e-01\\n-8.36343616e-02 -4.28591281e-01 -3.96054715e-01 -3.07384968e-01\\n5.95142469e-02 -1.71042472e-01 1.51446328e-01 -2.11977735e-01\\n3.31668735e-01 -2.31110733e-02 -3.43213091e-03 2.97998548e-01\\n-7.79415309e-01 -5.81556968e-02 -1.41546845e-01 -1.76338837e-01\\n-3.18232208e-01 -2.24399015e-01 -1.93985447e-01 -4.46574651e-02\\n-1.71832874e-01 3.20438266e-01 -6.34812191e-03 5.26670851e-02\\n-6.86931312e-02 2.12634176e-01 -2.00736940e-01 3.13361734e-01\\n2.52206504e-01 2.17922837e-01 1.51003763e-01 3.45444053e-01\\n-2.80736625e-01 3.58816803e-01 1.37060717e-01 -2.95692831e-01\\n2.77554035e-01 4.61736321e-02 4.52695072e-01 -1.02109641e-01\\n1.33541137e-01 1.27233073e-01 -1.72725827e-01 2.61346072e-01\\n2.25934163e-01 -2.93657184e-01 3.51308547e-02 -1.02400355e-01\\n-1.25162467e-01 3.93865891e-02 1.34616476e-02 3.91661078e-01\\n-2.72497803e-01 3.95819575e-01 1.96953848e-01 -1.68162256e-01\\n-5.27839642e-03 -5.32436013e-01 -6.35794401e-02 -2.85449419e-02\\n2.27576680e-02 1.41635060e-01 2.99577534e-01 1.95003539e-01\\n3.15216422e-01 5.50945289e-02 1.77949935e-01 7.82162249e-01\\n-6.95528388e-02 -1.06485942e-02 -1.83141634e-01 3.71077567e-01\\n9.47134420e-02 -3.52449417e-01 2.07145333e-01 2.55971640e-01\\n8.44329000e-02 -4.29405048e-02 -2.09174842e-01 3.19562584e-01\\n-5.72665446e-02 -1.91153005e-01 -2.65503317e-01 8.97026062e-02\\n-1.28501087e-01 -3.72112185e-01 5.62508404e-01 1.56871960e-01\\n1.82912469e-01 -5.53048588e-02 -3.94426426e-03 -2.21927717e-01\\n-4.68951911e-02 2.87027925e-01 9.74720940e-02 1.88746959e-01\\n-1.85686409e-01 -1.10682644e-01 -2.17966035e-01 1.81002915e-01\\n-2.57769823e-01 7.08091408e-02 -7.26538822e-02 -5.00200726e-02\\n3.62583697e-01 -2.00315248e-02 -2.42031783e-01 2.19914317e-01\\n3.02398708e-02 4.06021476e-02 -1.06041133e-01 3.07472825e-01\\n-2.29071662e-01 2.34056324e-01 -1.36502251e-01 -7.84502849e-02\\n6.44152164e-01 1.61935315e-01 2.14210033e-01 -3.28235291e-02\\n2.50620186e-01 -7.06445798e-02 1.67265102e-01 7.12040365e-02\\n-8.15086186e-01 2.42198512e-01 1.28117274e-03 -1.65778592e-01\\n6.76135942e-02 -5.00779673e-02 1.37460813e-01 -3.51681769e-01\\n4.32248600e-02 -1.54658869e-01 -3.77197415e-01 -2.91289896e-01\\n-3.03335607e-01 -9.16837007e-02 3.07800502e-01 -4.15722877e-01\\n-1.02222636e-01 2.00834513e-01 -5.02035618e-01 3.72994356e-02\\n1.83305636e-01 1.77630514e-01 4.49362583e-02 1.15844019e-01\\n-5.32674938e-02 -5.16095459e-01 6.99020997e-02 -3.28726798e-01\\n-2.88491368e-01 1.62937149e-01 -2.47179538e-01 2.99806535e-01\\n8.17100406e-02 -3.60871688e-03 -5.27518056e-02 2.28180990e-01\\n-1.02618970e-01 -1.21068411e-01 1.88411877e-01 6.55864552e-02\\n2.54900992e-01 7.91452155e-02 -4.36164886e-01 4.37535971e-01\\n-2.04018384e-01 5.89163840e-01 1.02276370e-01 -7.77375340e-01\\n4.37204629e-01 3.24561894e-01 6.48089424e-02 -3.41800421e-01\\n6.36652648e-01 -1.69620857e-01 1.53298108e-02 7.70890489e-02\\n-4.41106647e-01 -3.21914732e-01 2.47038200e-01 -1.36424556e-01\\n-1.91462532e-01 4.89517599e-01 4.56175320e-02 5.19953435e-03\\n1.95847452e-01 -1.99075177e-01 -5.01468070e-02 3.65773179e-02\\n-1.21756531e-01 -2.94013977e-01 -4.61595267e-01 -4.91148829e-02\\n-1.14157505e-01 -4.44583118e-01 -1.26388982e-01 -3.75852644e-01\\n-2.06945211e-01 -3.22829634e-01 -2.07525894e-01 2.34229311e-01\\n2.03865364e-01 1.66954443e-01 -1.32062072e-02 2.37189997e-02\\n-2.29091525e-01 -5.97406268e-01 -2.53920234e-03 8.40099901e-02\\n3.77256215e-01 2.09424272e-01 1.02357976e-01 -1.86912585e-02\\n-1.24870762e-01 6.59388185e-01 -2.65086740e-01 -6.37472123e-02\\n1.81517839e-01 2.24729568e-01 6.41338155e-02 -1.10455289e-01\\n-1.14096198e-02 3.50315392e-01 -2.16362074e-01 1.63446777e-02\\n-1.03627004e-01 -7.60748684e-02 4.34545428e-01 2.02471707e-02\\n-2.71126121e-01 -2.40514025e-01 -4.98008206e-02 2.19685823e-01\\n-4.63799328e-01 -1.55582711e-01 6.35922015e-01 3.00473094e-01\\n2.06713691e-01 2.17857823e-01 1.91894814e-01 -1.05688877e-01\\n-1.28329784e-01 -2.90801406e-01 3.11618835e-01 1.38225809e-01\\n1.68557122e-01 1.23579711e-01 -1.66140854e-01 -5.96358597e-01\\n-3.53283405e+00 -1.64912969e-01 1.76509857e-01 -3.28984261e-01\\n1.09984174e-01 -1.17865667e-01 -1.39584824e-01 -1.46593168e-01\\n-2.26898283e-01 1.09511226e-01 -2.12813944e-01 -2.69764543e-01\\n2.24568531e-01 2.26212189e-01 1.37748510e-01 3.02404076e-01\\n2.31716678e-01 -1.49721682e-01 7.57346908e-03 1.73221111e-01\\n-3.42497349e-01 -5.52999556e-01 2.60361671e-01 -3.25897820e-02\\n3.42976838e-01 4.00614530e-01 -2.75678575e-01 -2.59755522e-01\\n-2.44935572e-01 -2.62971163e-01 2.63636727e-02 -3.30364555e-01\\n-5.86436205e-02 3.28728765e-01 1.46820843e-01 -1.61966845e-01\\n1.91452384e-01 -3.43591660e-01 -5.06713763e-02 -4.04672235e-01\\n8.26874822e-02 -4.13416058e-01 -3.02240681e-02 -5.08640260e-02\\n7.34365463e-01 -4.10922140e-01 1.48562327e-01 1.37132227e-01\\n2.51234561e-01 2.06326500e-01 -3.90384682e-02 -5.87912910e-02\\n-2.58642286e-01 -1.34982914e-01 -8.38747621e-02 -1.50602043e-01\\n4.60600466e-01 5.76390684e-01 -2.07731828e-01 6.07291460e-02\\n1.76067501e-02 -3.20771903e-01 -2.81750977e-01 -2.87910014e-01\\n-1.34599343e-01 -3.14505786e-01 -4.89336461e-01 -3.61866951e-01\\n-4.56856042e-02 -2.04332527e-02 -1.28606603e-01 5.82632720e-01\\n-1.87858805e-01 -4.79950458e-01 -1.34232873e-02 -5.14285147e-01\\n7.88142383e-02 -1.45390570e-01 -4.92166821e-03 -1.79838151e-01\\n-1.04273111e-01 -4.92918193e-01 4.75566126e-02 -2.23151576e-02\\n-1.09107792e-01 -3.50248814e-01 9.56417993e-02 -1.17105290e-01\\n-2.31957301e-01 -5.50469100e-01 3.18325698e-01 1.21233135e-01\\n2.62410462e-01 9.83931795e-02 1.64810479e-01 1.12242542e-01\\n2.45010570e-01 -3.01274002e-01 8.95757303e-02 -3.86696041e-01\\n2.06775680e-01 -3.99843697e-03 5.00576675e-01 -1.94019094e-01\\n6.88759238e-02 1.84414431e-01 -2.64946133e-01 -1.07918791e-01\\n3.15362632e-01 9.43630561e-02 9.17450413e-02 -1.87196746e-01\\n3.37431490e-01 -4.16387230e-01 -2.63860971e-01 6.32998720e-02\\n-3.74885648e-02 5.00317335e-01 -4.79320027e-02 -3.58302653e-01\\n-1.30018353e-01 4.61492151e-01 -9.25939232e-02 -2.08459377e-01\\n-1.70828104e-01 9.59294587e-02 -1.22736216e-01 1.70590743e-01\\n6.15473986e-02 -2.28921279e-01 -3.15639704e-01 -1.64479196e-01\\n-5.71926609e-02 2.15553910e-01 2.34726235e-01 3.35783288e-02\\n3.87717411e-03 -3.30380470e-01 5.35378419e-02 1.25451773e-01\\n1.44117251e-01 3.53448987e-01 2.47955415e-02 -1.14867717e-01\\n-5.18599898e-02 3.18735838e-01 -9.90720019e-02 2.05109492e-01\\n-2.30546817e-01 -1.61895305e-02 -4.45723206e-01 -2.24193379e-01\\n-2.20119506e-01 -3.16136777e-01 6.43201079e-03 1.50462195e-01\\n1.04363553e-01 1.52094662e-02 -4.16187197e-02 -4.36461240e-01\\n3.42555195e-01 -5.38821109e-02 2.80280024e-01 2.12995023e-01\\n-4.33207303e-02 4.08671558e-01 2.05697827e-02 -6.98305443e-02\\n-2.02849299e-01 1.56739622e-01 -1.68497950e-01 -1.07083447e-01\\n1.26849553e-02 -4.49319005e-01 -7.01745003e-02 3.53944868e-01\\n3.42339464e-02 -3.27452809e-01 -1.46854416e-01 1.84733301e-01\\n-3.22363935e-02 -2.91881710e-01 -1.51817352e-01 3.82919461e-02\\n3.42724174e-01 -5.87161630e-03 3.45243305e-01 -3.62602532e-01\\n-1.06267586e-01 2.17560166e-03 -1.12053879e-01 4.87787575e-01\\n4.24789786e-02 5.96854463e-02 -8.26710388e-02 -2.93139279e-01\\n2.55333096e-01 -6.91333115e-02 -9.90862846e-02 3.49178016e-02\\n1.09669901e-01 -1.88418955e-01 -5.21453142e-01 1.75913132e-03\\n2.82762386e-02 -8.56460184e-02 2.51963418e-02 9.83123928e-02\\n1.49539769e-01 9.49136764e-02 -5.79984605e-01 -3.42897534e-01\\n-3.39955539e-01 -9.51370969e-02 6.23938888e-02 -3.32857847e-01\\n-8.20384324e-02 -4.07100394e-02 -5.84246874e-01 2.33391866e-01\\n-1.75940439e-01 -8.40682983e-02 1.27914891e-01 6.68329187e-03\\n-3.36378634e-01 -2.69900472e-03 1.72126234e-01 2.11603746e-01\\n-3.03627610e-01 -2.57374197e-01 1.31622598e-01 -1.01720822e+00\\n2.00547591e-01 6.86768163e-03 -7.49853104e-02 -1.92255732e-02\\n-6.75750747e-02 -5.61195612e-01 5.74049652e-02 -4.01492804e-01\\n-5.64935729e-02 -1.00407088e-02 -1.97284684e-01 -4.66606468e-01\\n8.69494230e-02 -8.38179141e-02 -3.06868583e-01 4.34492677e-01\\n-3.23680937e-01 3.74145329e-01 -4.98623922e-02 7.96938688e-02\\n-3.26891877e-02 -3.11599135e-01 1.26220301e-01 -4.36862916e-01\\n-4.38858747e-01 -8.41317549e-02 -3.09086442e-01 -1.08355090e-01\\n1.16099209e-01 -2.39239082e-01 -9.41130891e-02 4.01942730e-02\\n3.65165949e-01 2.39352472e-02 -1.78526416e-01 -2.86411196e-01\\n5.09746075e-02 -4.74315137e-01 1.22491986e-01 -1.02762833e-01\\n-1.20330654e-01 -3.34377028e-02 7.17092603e-02 7.60539025e-02\\n3.73299271e-02 -4.19745982e-01 3.47955912e-01 -2.89118141e-01\\n-2.87288696e-01 -1.71999671e-02 1.09056465e-01 1.44922482e-02\\n1.73615053e-01 -5.45116782e-01 -1.68892015e-02 3.45015317e-01\\n3.63763534e-02 1.24727800e-01 2.33098254e-01 -1.23717906e-02\\n-5.54527156e-02 3.32082033e-01 -2.59306550e-01 3.03124581e-02\\n7.23120093e-01 3.08251008e-02 4.15100381e-02 2.57384181e-01\\n2.45725945e-01 3.40794504e-01 4.25681174e-01 3.80517505e-02\\n-1.00565404e-01 2.38715172e-01 -3.81433815e-02 -6.82809651e-01\\n8.19775239e-02 4.83994223e-02 -1.99874684e-01 -4.64724243e-01\\n6.90540373e-01 4.51806784e-01 -3.37007135e-01 -2.57907242e-01\\n-7.44212493e-02 -1.16033733e-01 5.76912872e-02 -1.37315720e-01\\n1.42517880e-01 -1.62721321e-01 5.01554251e-01 -3.76961268e-02\\n2.04613194e-01 5.21006644e-01 -2.01255247e-01 -4.09145981e-01\\n-5.56958765e-02 1.45002350e-01 1.00933045e-01 5.46358883e-01\\n-2.09273189e-01 3.04940075e-01 2.73396913e-03 1.46520227e-01\\n-1.44312242e-02 1.79971069e-01 3.59536335e-02 4.67083082e-02\\n1.31515726e-01 -4.02162969e-02 3.46305132e-01 3.83515894e-01\\n3.19380850e-01 4.55225527e-01 3.22439224e-01 3.29549164e-02\\n5.28798938e-01 5.44467866e-01 4.24797446e-01 1.92358255e-01\\n-1.03390820e-01 4.17311341e-02 6.57252669e-02 -1.51358889e-02\\n2.86080688e-01 2.95822740e-01 2.14015823e-02 8.77493799e-01\\n5.03477752e-01 2.13869169e-01 6.34135604e-01 -6.44551873e-01\\n-3.06712121e-01 -9.60781127e-02 3.37035000e-01 -2.63259917e-01\\n-6.30480647e-02 1.02037191e-01 -1.37230366e-01 2.73399770e-01\\n-3.77271861e-01 -1.56726763e-01 -3.40395272e-02 1.51002750e-01\\n7.52778128e-02 -4.60717231e-02 -3.45592111e-01 2.45063044e-02\\n-1.42694175e-01 -1.94053799e-01 -6.03991389e-01 -7.24309087e-02\\n-2.89841473e-01 -2.23297849e-01 -7.52496868e-02 -1.87227726e-01\\n-1.27276093e-01 -3.20762247e-01 -1.43152714e-01 -6.13771612e-03\\n2.46454671e-01 -1.38288751e-01 -3.07585243e-02 -2.84276694e-01\\n2.99108595e-01 1.83433607e-01 4.68343616e-01 -1.13699242e-01\\n1.53801590e-01 -2.25997627e-01 -2.95881897e-01 1.05147555e-01\\n1.57206491e-01 8.77672136e-02 3.04993987e-02 3.56749564e-01\\n-3.33115608e-01 -7.28528202e-02 2.21941471e-01 3.74152452e-01\\n-4.89055097e-01 1.68205034e-02 -2.58056726e-03 2.86537230e-01\\n9.98579636e-02 1.45134419e-01 -2.68062890e-01 3.77636738e-02\\n-2.18111828e-01 -4.93041754e-01 3.00931811e-01 -3.82694229e-02\\n-8.88267979e-02 1.86702445e-01 2.31924757e-01 2.04290092e-01\\n-2.40811303e-01 -5.96433766e-02 -6.66469112e-02 1.98056191e-01\\n1.53466508e-01 3.27050567e-01 -2.28249490e-01 -2.55908400e-01\\n-2.18592197e-01 1.50415406e-01 -3.20769757e-01 1.13673970e-01\\n-1.28965855e-01 2.35460579e-01 1.00536861e-01 8.53970349e-02\\n2.83914268e-01 3.75412740e-02 -1.57884791e-01 -1.76064670e-01\\n-2.19078660e-01 -2.44343072e-01 3.22884656e-02 -1.08290367e-01\\n2.06559792e-01 -3.71505409e-01 -6.91285059e-02 -3.66223454e-02\\n-2.40121603e-01 -3.35044056e-01 -1.07151186e-02 -4.27005515e-02]]',\n", + " 'As a pioneer in Swiss online wealth management we are changing the way people invest their money. Our product is transparent and easy to use, while also suited for the demanding investor, who is looking for individual solutions and full control. Investing with True Wealth saves your time and your money. To help us to further develop our digital wealth management solution and bring it to the next level, we are looking for a Software Engineer. Requirements Your profile: You have a strong foundation as a Software Engineer (engineering degree), with an inclination towards functional concepts, types and good software design You are a team player who writes clean and elegant code and shares our passion of building a great platform. You possess strong skills in at least one typed programming language. Experience with Java and TypeScript is an advantage but not necessarily required. You are interested and might be experienced in web application development, from browsers down to the database. You might have business domain knowledge from finance, trading, or portfolio management You are fluent in English and are based in or around Zurich (we offer help with relocation). German skills are an advantage but not required. You need to hold or be eligible for a work permit in Switzerland (e.g. via Swiss or EU/EFTA citizenship) Benefits We offer: Responsibility, ownership and influence on the further development of our best-in-class roboadvice solution. Flexibility, exposure and opportunities to work across the entire stack, depending on preferences and skills. Backend stack: Java 12, Java EE (CDI, JAX-RS, JMS), jOOQ, Wildfly, Lombok, Gradle, Docker, PostgreSQL. Front-end stack: TypeScript, React, Redux. Competitive salary package, solidly financed growth company. Continuous integration, single command deployments. Office in Zürich (near station Zürich Binz SZU, 2 stops from HB). In your application, please include your full CV as well as references and possibly public samples to previous work, e.g. on GitHub. We do not work with recruitment agencies.',\n", + " '[\"Typing\", \"Writing\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"KM Programming Language\", \"Investment Control\", \"Continuous Integration\", \"Wealth Management\", \"TypeScript\", \"Java EE Application\", \"PostgreSQL\", \"WildFly (JBoss AS)\", \"Gradle\", \"E (Programming Language)\", \"Levelling\", \"Lombok\", \"Software Engineering\", \"Java Message Service (JMS)\", \"Investments\", \"Portfolio Management\", \"Github\", \"Docker (Software)\", \"React Redux\", \"Finance\", \"Experimental Software Engineering\", \"Digitization\", \"Software Design\", \"Front End (Software Engineering)\", \"Software Requirements Specification\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Trade Finance\", \"Web Application Development\", \"Custom Backend\"]',\n", + " \"['English', 'Marshallese']\"],\n", + " ['31',\n", + " 'report specialist (data model - data.one / controlling)',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.25119507e-01 8.17296654e-02 4.75452662e-01 -4.57868166e-02\\n4.19818580e-01 -1.04036637e-01 1.34177998e-01 2.97945648e-01\\n-1.21588849e-01 -3.26886237e-01 4.67494056e-02 -3.42348874e-01\\n5.22543304e-02 1.05158746e-01 -5.45630790e-02 4.21756685e-01\\n2.05081731e-01 1.78786427e-01 -1.47596404e-01 2.74296910e-01\\n2.82686442e-01 -2.65080005e-01 2.36876994e-01 4.95839745e-01\\n4.31182474e-01 2.98775341e-02 -2.05575721e-03 3.25127281e-02\\n-3.16102564e-01 -4.02572900e-01 5.12588620e-01 9.98925641e-02\\n-1.26051903e-01 -1.54986337e-01 1.66265279e-01 8.81956704e-03\\n-1.60408869e-01 -4.30136696e-02 -3.58815701e-03 1.38989374e-01\\n-4.83927667e-01 -1.45400450e-01 -6.59676343e-02 -1.45794556e-01\\n-2.63517767e-01 -4.15705889e-01 7.43594691e-02 -1.41728129e-02\\n7.72370622e-02 2.07193289e-02 -5.07877469e-01 3.57519329e-01\\n-3.25596541e-01 -1.26780763e-01 2.07479626e-01 6.20237470e-01\\n-2.61015207e-01 -5.87778151e-01 -4.78216708e-01 -1.73907265e-01\\n2.15861350e-01 -2.90848106e-01 5.14248013e-02 -2.26675153e-01\\n3.67293298e-01 2.17011906e-02 6.91262539e-03 4.98481512e-01\\n-6.29028022e-01 -3.68082710e-02 -2.66227573e-01 -5.21527603e-02\\n-1.94457784e-01 -1.34328604e-01 -1.72393799e-01 -7.59694204e-02\\n-1.92938969e-01 4.48388904e-01 9.09083709e-02 7.86131397e-02\\n-7.08912686e-02 2.18386009e-01 -3.40767711e-01 1.94131777e-01\\n1.46489173e-01 2.05094919e-01 1.56100363e-01 1.71552643e-01\\n-2.12246895e-01 6.12757206e-01 3.40252429e-01 -2.96824306e-01\\n5.95959201e-02 -1.69138163e-02 4.10388082e-01 -1.78385973e-01\\n4.37658951e-02 -4.01632860e-03 -1.78431273e-01 2.68595517e-01\\n2.19346523e-01 -2.45952487e-01 1.41088530e-01 -1.94230322e-02\\n-6.33862093e-02 -8.14903378e-02 -1.98960360e-02 3.64594012e-01\\n-1.27840176e-01 4.87882197e-01 1.11782655e-01 -1.21525869e-01\\n2.04876848e-02 -5.97794056e-01 -2.18537420e-01 3.48105542e-02\\n1.77411720e-01 8.21160600e-02 5.85173704e-02 2.87171632e-01\\n1.59698173e-01 5.01017347e-02 1.57881096e-01 6.98797345e-01\\n-2.84742145e-03 1.49418086e-01 -8.05258602e-02 3.13565731e-01\\n6.70404062e-02 -2.49112681e-01 1.85600534e-01 2.51727283e-01\\n2.60673277e-02 -1.98142573e-01 -1.59571037e-01 1.90080673e-01\\n-8.38894024e-02 -1.91082716e-01 -1.62855297e-01 1.86677650e-01\\n-1.26657009e-01 -3.18315029e-01 5.41479051e-01 6.16897009e-02\\n1.43709779e-01 1.00808600e-02 -1.30385816e-01 -1.82990074e-01\\n-3.31558622e-02 2.76975363e-01 8.41366649e-02 -3.49429029e-04\\n1.83873344e-02 -1.79673195e-01 -2.26587176e-01 -4.80349250e-02\\n-1.86663225e-01 1.37206987e-01 -2.22942188e-01 -1.12273946e-01\\n5.03137946e-01 4.75715362e-02 -1.50686622e-01 2.93811053e-01\\n5.94460778e-02 7.08826929e-02 -1.00459561e-01 3.57521981e-01\\n-4.06455025e-02 1.46811441e-01 -1.73040122e-01 -2.19505951e-01\\n5.97164512e-01 7.09445626e-02 1.52518898e-01 9.08023044e-02\\n2.67396271e-01 -1.04380613e-02 4.25968543e-02 1.03357755e-01\\n-6.92473114e-01 4.63571221e-01 -1.06400385e-01 -2.49347836e-01\\n1.04804508e-01 -9.16299000e-02 2.39334494e-01 -3.95060867e-01\\n6.62657842e-02 -1.43846786e-02 -3.34883720e-01 -2.65495896e-01\\n6.18168525e-02 -3.99862789e-02 3.56621057e-01 -4.17067945e-01\\n-4.11277898e-02 1.58342525e-01 -4.39974815e-01 5.29200025e-02\\n2.88446486e-01 1.68907374e-01 2.81745493e-01 1.55254349e-01\\n-1.37071714e-01 -3.55300933e-01 3.80256288e-02 -3.14727873e-01\\n1.23672010e-02 2.47758046e-01 -3.04155380e-01 3.07503611e-01\\n6.06116615e-02 6.15633987e-02 -1.96092620e-01 6.20562993e-02\\n4.11489196e-02 -8.37136582e-02 2.69458115e-01 8.78892187e-03\\n2.73510307e-01 1.18763395e-01 -3.42997104e-01 3.89796764e-01\\n-1.31342009e-01 4.87222254e-01 4.44708727e-02 -6.26985967e-01\\n3.68440121e-01 2.31989130e-01 -2.58964766e-02 -3.12917739e-01\\n6.43969953e-01 -2.13615060e-01 3.19836438e-02 1.26654789e-01\\n-3.82118165e-01 -2.63270527e-01 5.87361716e-02 -3.52757692e-01\\n-2.29015440e-01 5.35241187e-01 1.55194759e-01 9.94040370e-02\\n6.71650842e-02 -8.22241902e-02 -7.81099573e-02 1.09575130e-01\\n5.86935394e-02 -1.88650578e-01 -5.20494878e-01 -3.40065248e-02\\n-5.34411892e-02 -3.74672353e-01 -8.81594047e-02 -3.46321762e-01\\n-2.45186463e-01 -2.39187822e-01 -3.60243320e-02 6.72907531e-02\\n1.25554442e-01 1.98840648e-01 1.01027615e-01 1.04281224e-01\\n-3.13410342e-01 -5.72093189e-01 -1.99471172e-02 1.38688803e-01\\n2.92901248e-01 9.08770189e-02 1.33507594e-01 -1.59680054e-01\\n-2.35787239e-02 6.17864311e-01 -2.21300140e-01 -1.57352388e-02\\n1.85899243e-01 2.18938217e-01 1.71602562e-01 -8.88934731e-02\\n1.33885711e-01 1.53315887e-01 1.10288141e-02 1.42469972e-01\\n3.12612741e-03 -1.40243858e-01 2.99757063e-01 -5.85593283e-02\\n-2.06748202e-01 -3.88803929e-01 -3.45895946e-01 1.14543490e-01\\n-4.85015631e-01 -1.75469771e-01 5.55829167e-01 6.96739033e-02\\n5.70364203e-03 3.11277926e-01 2.25486472e-01 -6.30392879e-02\\n-1.82556078e-01 -1.45755529e-01 2.85941809e-01 1.80132180e-01\\n-7.17617720e-02 9.98124629e-02 -1.65643737e-01 -5.46387136e-01\\n-3.82287645e+00 -1.47379398e-01 -5.52464509e-03 -4.06610072e-01\\n3.33110511e-01 -1.28473073e-01 2.90154070e-01 -5.36772273e-02\\n-1.78628951e-01 -2.80204657e-02 -4.98984344e-02 -1.24896035e-01\\n2.22341463e-01 1.47422627e-01 1.75097868e-01 4.05243456e-01\\n1.52597234e-01 -3.84450704e-01 -2.06567943e-02 3.66045177e-01\\n-2.29017690e-01 -5.98092198e-01 2.52634138e-01 -4.19550240e-02\\n2.85055161e-01 3.02909911e-01 -4.59258080e-01 4.42867614e-02\\n-2.99988717e-01 -1.93942472e-01 1.18897878e-01 -3.36513340e-01\\n4.40913774e-02 1.34687617e-01 1.70701057e-01 -1.18515000e-01\\n1.24307908e-01 -2.30261579e-01 -1.34593830e-01 -4.62908715e-01\\n-4.82969023e-02 -5.39837718e-01 -3.13606597e-02 1.32062659e-03\\n6.74695551e-01 -2.44371369e-01 7.36206546e-02 -6.85774088e-02\\n2.03874350e-01 2.95811713e-01 4.50821854e-02 -1.72503427e-01\\n-1.59017399e-01 -2.02915519e-01 -8.15362334e-02 -3.09169330e-02\\n3.74997616e-01 6.23771727e-01 -3.62632483e-01 -1.53531700e-01\\n6.17780760e-02 -3.64223808e-01 -4.63305712e-01 -3.10357571e-01\\n-1.03789434e-01 -1.84965134e-01 -6.37293279e-01 -4.62479681e-01\\n-1.30009577e-01 -8.76208544e-02 -7.29476288e-02 3.53935897e-01\\n-3.77743185e-01 -4.71830875e-01 -1.40914470e-01 -3.48875672e-01\\n2.98031807e-01 7.91057572e-02 1.24557711e-01 -1.73568204e-01\\n-2.41144910e-01 -3.47097397e-01 9.00551081e-02 4.02975222e-03\\n1.21871696e-03 -4.85602207e-02 2.41844654e-01 -2.44461820e-01\\n-4.85590786e-01 -4.25055802e-01 2.45598450e-01 -7.64952749e-02\\n3.05879653e-01 3.30665819e-02 7.80329034e-02 -1.17368817e-01\\n3.69979411e-01 -3.33373070e-01 1.66100502e-01 -2.81108230e-01\\n1.18521996e-01 7.09378570e-02 4.89725292e-01 -3.57012093e-01\\n8.19294602e-02 -1.84666943e-02 -3.66131246e-01 6.02259184e-04\\n3.04387480e-01 -2.06367612e-01 1.87571570e-01 -3.38744879e-01\\n3.69909972e-01 -2.84713387e-01 -2.72264004e-01 6.66050315e-02\\n3.55185159e-02 5.11834323e-01 9.82084349e-02 -3.08612347e-01\\n-1.06595948e-01 4.05138314e-01 -2.08627105e-01 -1.13661133e-01\\n-3.52482080e-01 -2.96414457e-02 -2.65709519e-01 1.85057431e-01\\n8.03125743e-03 -5.91334980e-03 -3.45769227e-01 -1.05608799e-01\\n-2.19269276e-01 2.98034608e-01 3.39207977e-01 7.55533427e-02\\n6.02764124e-03 -1.94743514e-01 7.07101449e-02 1.45102218e-01\\n5.51741533e-02 2.91190118e-01 -1.28281384e-03 2.06884462e-02\\n1.11952610e-03 2.59599507e-01 -1.63524240e-01 1.49572372e-01\\n-2.03070149e-01 8.34550187e-02 -3.27810466e-01 -4.18912143e-01\\n-1.84639260e-01 -1.70302168e-01 -9.03251246e-02 3.18992525e-01\\n2.56783664e-01 -1.02500498e-01 -2.50506811e-02 -2.98250407e-01\\n1.29516348e-01 -5.90546094e-02 2.05861643e-01 2.20728755e-01\\n-2.20624264e-02 4.38368976e-01 1.71892881e-01 -1.59902975e-01\\n-1.13861971e-01 -6.30355477e-02 -3.32198411e-01 -2.34089196e-02\\n-5.39220776e-03 -3.29054624e-01 -3.58321667e-02 4.37983662e-01\\n1.51632503e-01 -2.28649333e-01 -1.11852750e-01 4.35770005e-01\\n-1.64813668e-01 -3.11346322e-01 -2.04003066e-01 1.08577892e-01\\n2.78874367e-01 1.44889221e-01 3.38827431e-01 -4.75011349e-01\\n1.15252621e-01 -5.87808974e-02 -1.69820085e-01 4.01836544e-01\\n-1.11007020e-01 7.24424198e-02 -1.23228021e-01 -1.55766681e-01\\n3.68384391e-01 -8.84340182e-02 4.30168770e-02 3.39945167e-01\\n8.08892399e-02 1.35536501e-02 -3.85404348e-01 3.43506150e-02\\n-3.17491032e-02 -3.20899263e-02 -4.16854434e-02 1.44856319e-01\\n-8.71672183e-02 -1.16824070e-02 -5.25742471e-01 -1.97916061e-01\\n-3.97368878e-01 1.55158073e-01 -6.35814574e-03 -5.14515579e-01\\n-9.42626372e-02 -9.61007550e-02 -4.21151102e-01 2.99530506e-01\\n7.82616138e-02 1.38130918e-01 2.14673713e-01 -9.45240632e-02\\n-1.25438109e-01 1.88868850e-01 1.95379540e-01 4.81183119e-02\\n-2.27698371e-01 -5.04473858e-02 -1.23740070e-01 -8.74879658e-01\\n1.04950957e-01 1.10371104e-02 -1.62471682e-01 5.94913475e-02\\n-7.59907812e-02 -5.72740853e-01 1.41591415e-01 -2.42249727e-01\\n-2.14781404e-01 -9.26003382e-02 -6.60485253e-02 -5.09054244e-01\\n-2.51859389e-02 7.26720542e-02 -1.40108019e-01 2.79927492e-01\\n-2.28024587e-01 4.33173567e-01 -1.00698404e-01 1.45759001e-01\\n-7.35339001e-02 -2.70166665e-01 1.94200873e-01 -4.51548964e-01\\n-2.66389996e-01 -3.86697315e-02 -3.03812176e-01 1.02478944e-01\\n-1.46498056e-02 -2.96976537e-01 -1.82021724e-03 1.95539996e-01\\n3.65542710e-01 3.08462270e-02 -3.74710299e-02 1.24880662e-02\\n-3.72406207e-02 -4.45675135e-01 -4.01471481e-02 -6.23727441e-02\\n-2.41013407e-03 -2.05242649e-01 -3.87418009e-02 -1.00910261e-01\\n1.67073354e-01 -4.91580665e-01 4.13805425e-01 -3.55185181e-01\\n-3.37655962e-01 -1.56197166e-02 5.52233458e-02 4.22697663e-02\\n3.24508756e-01 -3.06072176e-01 -2.70886302e-01 3.05551678e-01\\n-2.01143771e-02 1.84457898e-02 3.94261211e-01 -4.17163319e-05\\n-3.11415911e-01 1.96547180e-01 -3.32900584e-01 1.10647902e-01\\n6.10299289e-01 1.05308540e-01 1.17889389e-01 2.29184940e-01\\n4.19340059e-02 1.29571155e-01 4.41435754e-01 -2.81282756e-02\\n-2.43679360e-01 3.84647548e-01 2.22505331e-02 -5.87102830e-01\\n-4.24193181e-02 4.46640924e-02 -3.28150928e-01 -2.85377771e-01\\n5.91233730e-01 3.51738632e-01 -3.54915828e-01 -3.58076364e-01\\n-2.30241805e-01 -2.21236393e-01 -2.30014190e-01 -2.28345133e-02\\n1.76668763e-01 -8.11873600e-02 5.48510849e-01 1.94233600e-02\\n3.49019207e-02 4.11412656e-01 -1.52474746e-01 -1.51964441e-01\\n1.77911799e-02 1.60060525e-01 6.79340884e-02 4.00483459e-01\\n-1.68418497e-01 3.98120224e-01 -4.56312634e-02 1.47726566e-01\\n-1.04366198e-01 -6.18232004e-02 -1.43377949e-02 1.95789620e-01\\n-7.44087771e-02 4.12455559e-01 3.48134905e-01 3.30090046e-01\\n3.96527231e-01 3.46858412e-01 1.62904590e-01 3.75843942e-02\\n7.23760605e-01 4.13027585e-01 3.51242214e-01 2.84883618e-01\\n-8.75889435e-02 -3.79842520e-02 -2.28159428e-02 2.53702670e-01\\n2.06511170e-01 2.35419288e-01 -1.75568581e-01 6.07075632e-01\\n2.62670934e-01 1.91291049e-01 4.61347878e-01 -4.17233229e-01\\n-2.87611693e-01 -2.50315480e-02 3.81020546e-01 -4.00964826e-01\\n-1.79247707e-02 5.21606803e-02 -5.13036512e-02 8.91088620e-02\\n-5.70092976e-01 -1.46194264e-01 -7.09187984e-02 1.15818746e-01\\n1.46236643e-01 -5.60551286e-02 -6.85518458e-02 -6.82648644e-02\\n-1.46356791e-01 -1.52378961e-01 -4.00799096e-01 -1.99916154e-01\\n-2.51809299e-01 -2.55450964e-01 2.04109997e-02 -1.69776440e-01\\n3.82385962e-02 -2.73497343e-01 -1.66449279e-01 -1.88320782e-02\\n2.57554561e-01 -1.62482247e-01 -9.83320251e-02 4.24150471e-03\\n3.80413532e-01 1.34504646e-01 5.98731995e-01 -4.68926784e-03\\n9.41349484e-04 -3.25036198e-01 -3.63122895e-02 -5.22180088e-02\\n4.25876886e-01 4.25714776e-02 7.29194731e-02 4.63141024e-01\\n-4.42859948e-01 -2.89858669e-01 9.79142189e-02 2.54570395e-01\\n-5.70715725e-01 3.81177338e-03 1.92422912e-01 1.49660155e-01\\n1.94715150e-02 1.41538292e-01 -2.17711374e-01 -9.26676169e-02\\n-2.55530834e-01 -4.76769418e-01 1.06684215e-01 1.89488798e-01\\n-2.55955189e-01 -4.34510969e-02 3.59715641e-01 1.52797922e-01\\n-9.49709937e-02 -5.90479635e-02 -4.29890640e-02 2.03117743e-01\\n1.47516921e-01 7.53174499e-02 -1.97582945e-01 -2.55628794e-01\\n-3.76073420e-01 2.41380468e-01 -2.25037098e-01 2.41238475e-01\\n6.81691319e-02 -2.55144015e-03 1.87051341e-01 1.22922055e-01\\n3.66383404e-01 -8.64518881e-02 -8.92237201e-02 -3.07821572e-01\\n-2.73998827e-01 -2.90129393e-01 3.28818932e-02 -1.78229690e-01\\n1.05165482e-01 -4.45940912e-01 -1.18563101e-01 -9.89066511e-02\\n-2.03019276e-01 -3.56948078e-01 5.07307388e-02 -1.26902331e-02]]',\n", + " 'LocationBaselContract typetemporary contract For our pharma client in Basel we are looking for a Report Specialist (Data Model/Cost Controlling) - 100% Tasks & Responsibilities: Ensure reporting implementation of Regulatory Affairs and Medical Affairs shift in data.one by: Check Actual deliveries of all countries against target status Communicate with country Controllers to ensure implementation of target status Document and track implementation status in each country Support countries with technical questions Must Haves: Strong knowledge of data model - data.one Follow-up with Controllers having different cultural background (i.e. worldwide) Proficiency with Excel and the use of databases Excellent communication skills Good organizational skills Start date : ASAP Duration: 3 months with exention opportunities Location: Basel Are you interested to work in this challenging position? Florence Wespiser, MSP Consultant, is looking forward to receiving your complete profile. Please send an e-mail to florence.wespiser@coopers.ch By sending us your CV per E-Mail you are giving us your consent to the processing of your personal data according to our Data Privacy Policy.',\n", + " '[\"Verbal Communication Skills\", \"Communications\", \"Organizational Skills\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Health Data Specialists\", \"Cost Control\", \"TARGET 3001!\", \"Medical Affairs\", \"Logical Data Models\", \"Track (Rail Transport)\", \"Personalization\", \"E (Programming Language)\", \"Data Modeling\", \"Data Privacy Laws\", \"Receivables\", \"Controllability\"]',\n", + " \"['English', 'Avestan', 'Luba-Katanga', 'Church Slavonic', 'Southern Sotho']\"],\n", + " ['145',\n", + " 'full - stack software engineer',\n", + " 'Full-Reuenthal',\n", + " 'Advertising & Marketing',\n", + " 'www.vitamintalent.com',\n", + " '[[-1.48626611e-01 3.29904169e-01 3.78747433e-01 5.45453653e-02\\n3.81060809e-01 -1.89851880e-01 -1.00156758e-02 1.99745312e-01\\n1.59831196e-01 -4.43897963e-01 1.72605649e-01 -2.07153395e-01\\n-2.66032964e-01 1.55829638e-01 6.65780976e-02 4.67670619e-01\\n1.43066093e-01 9.30037424e-02 -1.39283359e-01 4.25615728e-01\\n2.09262166e-02 -2.24219665e-01 -4.94441278e-02 6.94746494e-01\\n2.47140050e-01 -4.29946557e-02 -1.17490403e-01 -2.37425148e-01\\n-3.45549643e-01 -1.55125454e-01 3.79287362e-01 1.95640802e-01\\n-1.54355496e-01 -5.81619978e-01 8.71039182e-02 1.90814108e-01\\n-1.97319567e-01 2.30981052e-01 -1.68585658e-01 2.21285939e-01\\n-7.32533753e-01 -4.16892260e-01 1.90006077e-01 3.91797572e-02\\n-2.67518520e-01 -1.70228347e-01 1.98081568e-01 -6.50687367e-02\\n8.56244192e-02 9.73904580e-02 -4.92742240e-01 2.85109580e-01\\n-2.75793761e-01 -1.92336842e-01 3.42975944e-01 4.96924996e-01\\n1.42158911e-01 -6.35273874e-01 -5.02982378e-01 -3.80295902e-01\\n-5.62393153e-03 4.93196538e-03 -7.44688883e-02 -3.80660236e-01\\n2.10741654e-01 -6.03607111e-02 2.28586271e-02 4.11245346e-01\\n-8.06235313e-01 -6.04325486e-03 -1.93210885e-01 -4.26053032e-02\\n-3.71804297e-01 -7.35312924e-02 -3.02141368e-01 5.06652612e-03\\n-1.61430478e-01 4.02611375e-01 1.24630675e-01 8.13253894e-02\\n-2.00721636e-01 2.27699652e-01 -1.26938269e-01 3.62293422e-01\\n3.18932205e-01 1.77870587e-01 3.46676975e-01 4.13533479e-01\\n-3.91224474e-01 3.82533878e-01 2.19156325e-01 -3.30681413e-01\\n2.98014969e-01 1.69693485e-01 4.26519006e-01 1.89381003e-01\\n1.31081700e-01 2.29221106e-01 -1.67813823e-01 2.82571912e-01\\n2.24001333e-01 -3.09983611e-01 1.28292918e-01 -6.68185651e-02\\n2.70895083e-02 -3.20998137e-03 8.59411806e-02 1.75094202e-01\\n-1.04502752e-01 3.95032674e-01 2.29829669e-01 -1.54161572e-01\\n-2.44541958e-01 -4.02180642e-01 -1.89511999e-01 3.37219015e-02\\n-7.23931473e-03 1.25495702e-01 2.62505084e-01 -4.52721156e-02\\n2.08875388e-01 4.17404398e-02 1.37788251e-01 8.59044015e-01\\n-3.49128544e-02 1.21275648e-01 -1.01532646e-01 3.85812879e-01\\n2.34628722e-01 -1.54129639e-01 2.21234664e-01 1.78038478e-01\\n7.56094009e-02 -1.95888340e-01 -2.31325790e-01 3.52289170e-01\\n-3.44484001e-02 -1.71012446e-01 -3.10874492e-01 2.00042501e-01\\n-1.25018686e-01 -3.46673399e-01 5.82716823e-01 1.20982386e-01\\n2.34761551e-01 8.34380835e-02 8.22836608e-02 -9.49115604e-02\\n-2.09219858e-01 2.29484424e-01 5.87121723e-03 2.22777590e-01\\n-3.58200043e-01 -2.20430091e-01 -1.13952518e-01 1.74657926e-01\\n-2.96411723e-01 1.99729234e-01 -2.18748361e-01 -1.02511771e-01\\n3.71903241e-01 1.63672149e-01 -2.41730943e-01 1.69989169e-01\\n1.50929647e-03 -9.23325792e-02 -1.01851262e-01 3.47917706e-01\\n-8.87933746e-02 2.12248579e-01 3.99556682e-02 1.06640123e-02\\n5.75471342e-01 3.01592022e-01 3.09675425e-01 -4.22265381e-02\\n3.59223902e-01 -6.92101046e-02 1.68179274e-01 1.50099307e-01\\n-6.43774807e-01 2.45583400e-01 -3.36286537e-02 -5.14091067e-02\\n1.59008637e-01 -5.79655217e-03 3.04924667e-01 -3.83745462e-01\\n-1.76921397e-01 -3.19198877e-01 -4.61803943e-01 -2.62712270e-01\\n-3.57261121e-01 -7.91452900e-02 4.64085013e-01 -4.34494674e-01\\n-1.40191004e-01 2.16840446e-01 -5.99335670e-01 -1.31589383e-01\\n1.70896873e-01 2.23774910e-01 2.87133679e-02 4.84254956e-03\\n-2.52545327e-01 -7.12819934e-01 3.85300033e-02 -5.68222702e-01\\n-5.58379829e-01 1.09108001e-01 -2.86456376e-01 1.20596997e-01\\n-4.44724001e-02 9.91085768e-02 -2.11864024e-01 1.38328195e-01\\n-3.11441720e-01 -5.49466610e-02 1.02784678e-01 8.11558068e-02\\n2.01039776e-01 1.25546493e-02 -3.19069922e-01 3.80481750e-01\\n-3.21780175e-01 6.64007545e-01 1.76328033e-01 -9.88491178e-01\\n6.14844561e-01 3.22752893e-01 -6.60278350e-02 -2.37227052e-01\\n2.33928338e-01 -5.14306486e-01 1.90940895e-03 8.93556103e-02\\n-2.18169346e-01 -3.40865254e-01 2.49958143e-01 -1.18081011e-01\\n-2.47283518e-01 5.53085148e-01 1.54785514e-01 2.22649258e-02\\n2.61926204e-01 -3.22097212e-01 -6.26598746e-02 7.58839175e-02\\n-3.12353000e-02 -1.42020449e-01 -4.68731314e-01 2.53779143e-02\\n1.08733354e-02 -4.81786042e-01 -1.79713108e-02 -2.16118082e-01\\n-2.45722771e-01 -3.46919000e-01 -3.84914070e-01 2.91487694e-01\\n2.47462228e-01 1.19603254e-01 -2.16959547e-02 1.28544241e-01\\n-3.00617982e-02 -7.86245346e-01 7.45197088e-02 1.02278784e-01\\n5.08592069e-01 3.15748602e-01 8.71565267e-02 -1.36675492e-01\\n-5.72859682e-02 6.28081620e-01 -2.88728774e-01 -3.19908917e-01\\n-2.41946187e-02 7.21881315e-02 1.87525619e-02 -1.55742884e-01\\n1.77029818e-01 5.52943468e-01 -2.15090081e-01 1.43781891e-02\\n4.83675860e-02 -1.51657209e-01 4.38049495e-01 2.51783226e-02\\n-4.48602885e-01 -1.71070904e-01 5.54537885e-02 1.42735243e-01\\n-5.76514781e-01 -2.79578716e-01 5.69571912e-01 2.28790656e-01\\n2.40921497e-01 1.67124912e-01 9.24381539e-02 -1.59640938e-01\\n-3.09219569e-01 -2.09320262e-01 2.49477103e-01 3.34722281e-01\\n5.10001481e-02 1.27248287e-01 -1.28787622e-01 -7.81129360e-01\\n-3.23318791e+00 -2.89330572e-01 2.01006889e-01 -2.96506613e-01\\n1.60242900e-01 -5.54808900e-02 3.15915979e-02 -1.48084521e-01\\n-2.66172528e-01 8.02022219e-02 4.66471128e-02 -6.55998737e-02\\n-7.64747635e-02 2.84594744e-01 -2.47408915e-02 2.55573750e-01\\n1.42334148e-01 -1.63341254e-01 -1.16377801e-01 2.62466192e-01\\n-4.74573709e-02 -6.35597289e-01 1.16218090e-01 -8.83484539e-03\\n3.78212869e-01 2.52482057e-01 -4.43632036e-01 5.07884435e-02\\n-1.92433029e-01 -8.64810646e-02 -6.74069747e-02 -3.00070345e-01\\n-2.46476829e-01 8.39021355e-02 -1.09207416e-02 -1.21816441e-01\\n3.11624799e-02 -2.31298611e-01 -2.03712642e-01 -5.68976641e-01\\n3.94721143e-02 -5.44838548e-01 -1.67014115e-02 -1.79299012e-01\\n5.94491899e-01 -3.63790125e-01 9.94501710e-02 1.25023469e-01\\n2.29898438e-01 2.13679880e-01 -1.34556862e-02 3.56957018e-02\\n-1.50574043e-01 -2.97512621e-01 -1.65466309e-01 -2.69763559e-01\\n6.00541413e-01 4.98775363e-01 -1.27561495e-01 4.06149849e-02\\n1.03855595e-01 -3.25125515e-01 -5.02043188e-01 -2.56481946e-01\\n-1.02932014e-01 -1.89042494e-01 -6.14761770e-01 -3.62197310e-01\\n-3.13071042e-01 -5.34346737e-02 -1.39165655e-01 7.45028079e-01\\n-5.05127966e-01 -3.51737410e-01 1.39497131e-01 -6.28833532e-01\\n1.43652380e-01 -2.61002600e-01 1.60596937e-01 -2.20799968e-01\\n-2.68581808e-01 -5.74654400e-01 -6.18758518e-03 -6.40635267e-02\\n-3.73051673e-01 -9.21073109e-02 -1.18068457e-01 -7.09462389e-02\\n-1.91954762e-01 -4.18579906e-01 4.09022242e-01 1.60173923e-01\\n2.62958020e-01 8.25775638e-02 4.92130667e-01 -3.74755263e-02\\n3.33495468e-01 2.62834295e-03 -2.18017567e-02 -3.71940970e-01\\n1.03617504e-01 4.48429026e-02 6.38280809e-01 -1.75642669e-01\\n-7.71797225e-02 2.55537331e-01 -2.42851600e-01 -2.41839550e-02\\n3.47349167e-01 1.71963900e-01 -7.31030330e-02 -1.97583720e-01\\n3.39100748e-01 -3.30155909e-01 -1.64840862e-01 1.55283242e-01\\n2.58893907e-01 7.36513078e-01 6.60076663e-02 -5.06461442e-01\\n-1.62502572e-01 5.01540065e-01 -1.38132066e-01 -4.42373976e-02\\n-1.23555414e-01 5.85355908e-02 -5.91753609e-02 2.88381517e-01\\n9.46471177e-04 -1.97506681e-01 -2.33212858e-01 -1.97546691e-01\\n-5.48240021e-02 3.34242404e-01 1.96949705e-01 -5.04134446e-02\\n-3.80301774e-02 -2.67892867e-01 -1.80451661e-01 1.66821763e-01\\n9.58515927e-02 3.47254932e-01 8.93395767e-02 -2.74516344e-01\\n-1.26571178e-01 3.81460696e-01 -1.96379632e-01 1.32442415e-01\\n-2.29158804e-01 8.71235654e-02 -5.79925597e-01 -2.07024291e-01\\n-1.92927659e-01 -5.37428021e-01 5.62153645e-02 2.77599126e-01\\n2.12510556e-01 -3.45085114e-02 -1.41075002e-02 -4.85581607e-01\\n3.43981057e-01 2.92211771e-01 2.11315788e-02 1.32490858e-01\\n-3.04754153e-02 4.17129874e-01 1.40231233e-02 -2.65811056e-01\\n-1.70244470e-01 3.46941617e-03 -1.49172336e-01 -2.18372479e-01\\n2.57217467e-01 -5.32257736e-01 -6.61329255e-02 4.55373555e-01\\n1.94231898e-01 -3.47038060e-01 -2.30231896e-01 2.39979610e-01\\n8.21427703e-02 -1.07467510e-01 -2.30276838e-01 -9.43371281e-02\\n1.66388735e-01 -3.15423496e-02 2.88977087e-01 -2.83218086e-01\\n-2.54435074e-02 5.57401590e-03 -1.47128403e-01 6.48782670e-01\\n2.09380805e-01 1.26844540e-01 -2.29089990e-01 -8.60385597e-02\\n4.39667434e-01 -3.42176966e-02 -5.63297719e-02 -2.29773998e-01\\n1.74647197e-01 -2.19110847e-01 -4.54560906e-01 1.63218349e-01\\n4.34193760e-02 -2.09363177e-01 5.56172282e-02 6.32395223e-02\\n9.51070860e-02 6.27173856e-02 -3.73432517e-01 -2.57063866e-01\\n-3.32010269e-01 -1.57521546e-01 1.20474257e-01 -3.36706996e-01\\n-7.79552269e-04 -1.08391963e-01 -5.59066117e-01 2.46353522e-01\\n-2.45930091e-01 -1.33057266e-01 1.17421485e-01 1.76221564e-01\\n-4.83760238e-01 -3.87467518e-02 -1.15178443e-01 1.96772516e-01\\n-2.92748094e-01 -4.12015766e-01 -3.47101279e-02 -8.15234780e-01\\n2.16774151e-01 1.26224369e-01 -1.60707638e-01 1.48006231e-01\\n-1.62347481e-01 -6.88202798e-01 9.35831442e-02 -3.16603869e-01\\n-2.20278516e-01 1.55724645e-01 -1.95729479e-01 -3.04050893e-01\\n1.56480089e-01 -1.29649922e-01 -3.66548896e-01 4.27133799e-01\\n-4.44843322e-01 3.25807184e-01 -1.12210505e-01 3.79288085e-02\\n-2.02681217e-02 -3.03290993e-01 1.64828852e-01 -4.34869587e-01\\n-4.21980172e-01 -2.52822369e-01 -4.79579270e-01 -3.71117592e-01\\n3.65484902e-03 -2.35871881e-01 -1.19026266e-01 2.23713756e-01\\n3.05242658e-01 1.66313946e-01 -1.33599620e-02 -3.26067388e-01\\n1.41634494e-01 -4.94065702e-01 -4.32011932e-02 -2.00131178e-01\\n1.52250990e-01 -6.01819865e-02 1.41340181e-01 -5.62509671e-02\\n-2.16257032e-02 -2.98869342e-01 6.21065319e-01 -2.93642431e-01\\n-2.59936899e-01 -1.80271611e-01 -5.43044657e-02 -3.37903276e-02\\n1.61632746e-01 -4.41305757e-01 9.88670364e-02 1.23513781e-01\\n3.78829613e-02 -2.39585377e-02 1.73025995e-01 -3.88062038e-02\\n4.97556143e-02 1.42433330e-01 -2.80613959e-01 1.40744507e-01\\n6.85243726e-01 4.83250283e-02 1.66041106e-01 9.37290266e-02\\n2.31172025e-01 4.00632769e-01 6.23201907e-01 -4.19554152e-02\\n-6.14942238e-02 2.58492559e-01 1.95988230e-02 -4.38554704e-01\\n-9.73201916e-02 4.34464328e-02 -2.63911098e-01 -3.63611579e-01\\n7.00244904e-01 4.48023289e-01 -4.35562313e-01 -1.76065788e-01\\n2.59880796e-02 -2.26867840e-01 2.20247433e-01 1.93166696e-02\\n-1.30661398e-01 -2.44144127e-02 5.47105551e-01 -4.71520387e-02\\n2.86110312e-01 6.23255789e-01 -3.13177615e-01 -5.00470042e-01\\n-1.12066627e-01 2.48712152e-01 2.25823671e-02 4.67140526e-01\\n-2.12110475e-01 1.67851925e-01 -5.87688722e-02 6.08998053e-02\\n-6.24076314e-02 3.73702526e-01 2.86358327e-01 1.21063009e-01\\n3.34283143e-01 -1.25737503e-01 5.40914714e-01 6.07011914e-01\\n1.01252995e-01 5.07442474e-01 2.50009596e-01 -3.12271379e-02\\n3.51831049e-01 6.53060138e-01 3.77333134e-01 1.19605258e-01\\n2.69040577e-02 2.28973702e-01 5.19979149e-02 -7.57616013e-02\\n4.18629020e-01 5.00391126e-01 2.82945931e-01 8.80806446e-01\\n2.62120873e-01 2.42155015e-01 6.77210569e-01 -6.92085028e-01\\n-4.08069491e-01 1.00201853e-01 5.54856360e-01 -2.04598844e-01\\n-1.03562593e-01 2.02469707e-01 -2.95252860e-01 2.85794914e-01\\n-5.00399649e-01 -2.11525738e-01 -5.15527874e-02 1.17509238e-01\\n1.41696436e-02 -9.94123966e-02 -3.06578130e-01 5.44706360e-02\\n-2.28170618e-01 -1.39409497e-01 -3.16827327e-01 -1.31506749e-04\\n-2.99148530e-01 1.13659380e-02 -5.99237755e-02 -1.22813009e-01\\n-1.28690256e-02 -6.07440352e-01 -1.27352506e-01 -4.05476913e-02\\n3.96270722e-01 -1.98018074e-01 -1.29302099e-01 -1.24926917e-01\\n1.86656326e-01 2.80428499e-01 5.08472621e-01 -4.75225691e-03\\n1.01306885e-02 -1.27258211e-01 -3.36125612e-01 2.42402181e-01\\n3.24132778e-02 1.73672229e-01 5.43367490e-02 2.92488843e-01\\n-1.49225220e-01 -1.39803346e-02 -6.28873892e-03 3.41397077e-01\\n-4.11972672e-01 -1.65743709e-01 -2.79372215e-01 1.52451292e-01\\n1.17961027e-01 2.70595878e-01 -1.73452884e-01 1.43660545e-01\\n-2.82718778e-01 -4.77071673e-01 5.01433313e-01 -1.34583026e-01\\n-1.87166199e-01 1.11406498e-01 1.72023356e-01 1.69026822e-01\\n-2.60429949e-01 -5.14952019e-02 2.95050330e-02 3.05686265e-01\\n-3.26887183e-02 4.61043298e-01 -6.03842773e-02 -2.33541131e-01\\n-2.70182312e-01 1.42566010e-01 -2.78107673e-02 1.65733397e-01\\n-3.65445055e-02 3.84144306e-01 7.47508705e-02 2.45336890e-02\\n4.43862557e-01 8.47181603e-02 -2.82898813e-01 -3.35309982e-01\\n-2.52929181e-01 -1.08484060e-01 -1.37479538e-02 -1.17568932e-02\\n-3.85501422e-02 -3.55831861e-01 -8.92278850e-02 -1.20163150e-01\\n1.51912840e-02 -3.24765265e-01 -1.00554012e-01 -2.46400889e-02]]',\n", + " \"RESPONSIBILITIES: Build, test and ship new user facing code in modern tools like React, ES6, Redux, Jest and Webpack Create trustworthy user experiences by building products that are simple, easy to understand, performant and reliable Design highly performant and tested APIs and internal services using tools like Python, Celery, Kubernetes, MySQL, Mongo and Redis Articulate a long term vision for maintaining and scaling our systems across the board Work with other engineers, product mangers, designers and leadership to turn our vision into a concrete roadmap every quarter REQUIREMENTS: At least 2-3 years of experience in software engineering with strong computer science fundamentals You've architected, built, scaled and maintained production services You've designed, built and shipped modern, component-based user interfaces You write high quality, well tested code to meet the needs of your users You're passionate about building technology at scale and solving challenges for your customers in creative and innovative ways NICE TO HAVES: You've worked with JavaScript (ES6) and have worked with production scale React apps You're on top of modern JavaScript and frontend best practices You've worked with modern Python and large backend services using technologies such as Flask Experience working with both SQL and no-SQL databases Previous experience working with third-party APIs at scale (such as Facebook Graph API)\",\n", + " '[\"Leadership\", \"Writing\", \"Articulation\", \"Trustworthiness\", \"Reliability\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Code Testing\", \"MySQL\", \"Kubernetes\", \"Tooling\", \"Nice (Unix Utility)\", \"Hyper SQL Database (HSQLDB)\", \"Jest (JavaScript Testing Framework)\", \"Computer Science\", \"Good Agricultural Practices\", \"Scale (Map)\", \"Python (Programming Language)\", \"Maintainability\", \"Facebook Graph API\", \"Flask (Web Framework)\", \"Software Engineering\", \"React.js\", \"Product Engineering\", \"React Redux\", \"Webpack\", \"JavaScript (Programming Language)\", \"Redis\", \"User Experience\", \"Long-Term Potentiation\", \"SQL (Programming Language)\", \"User Interface\", \"Custom Backend\"]',\n", + " \"['English']\"],\n", + " ['4',\n", + " 'programmer/ data science support (m/f) - 80%',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.69559181e-01 2.61045039e-01 5.42519391e-01 -5.19233719e-02\\n5.73635876e-01 -1.75223008e-01 1.42872229e-01 5.47711968e-01\\n-1.49483308e-01 -3.14195931e-01 -9.71150696e-02 -2.80745804e-01\\n-5.10975625e-03 1.65138632e-01 7.38712028e-02 3.29974532e-01\\n2.57073194e-01 1.21915787e-01 -2.08528116e-01 3.22041720e-01\\n1.70315459e-01 -5.16750924e-02 2.15614945e-01 5.23017287e-01\\n4.37158197e-01 -2.26848647e-02 -5.94062358e-02 -1.19069122e-01\\n-2.85818309e-01 -2.79750973e-01 3.46649140e-01 -2.99130045e-02\\n-8.70705172e-02 -3.56072038e-01 2.88980501e-03 1.15294307e-02\\n-2.02563867e-01 -9.24908146e-02 -1.03959823e-02 1.12045050e-01\\n-3.99036109e-01 -2.78011531e-01 -6.99840998e-03 1.20948842e-02\\n-2.23054960e-01 -3.23620081e-01 4.56904024e-02 -8.19536373e-02\\n2.38736629e-01 -1.08799655e-02 -4.92464870e-01 3.84508371e-01\\n-2.17007533e-01 -3.33131164e-01 2.51089334e-01 6.32812142e-01\\n1.32363047e-02 -4.16864097e-01 -4.95691597e-01 -2.41715416e-01\\n1.56577259e-01 -1.36390507e-01 -3.19536626e-02 -2.44558737e-01\\n2.92316526e-01 1.42921150e-01 1.13413528e-01 3.46918553e-01\\n-7.33965993e-01 -4.56308499e-02 -2.03697920e-01 -1.03590615e-01\\n-2.48784602e-01 -3.24511491e-02 -2.79180169e-01 -1.09781079e-01\\n-8.13184232e-02 4.25945759e-01 7.12032244e-02 3.46262753e-03\\n-8.56100619e-02 2.86568940e-01 -1.51810765e-01 2.98519999e-01\\n2.66303480e-01 1.64818302e-01 6.28362447e-02 2.85928935e-01\\n-4.04340386e-01 3.96595925e-01 2.30243042e-01 -2.06571236e-01\\n2.05661267e-01 1.27953410e-01 4.77838993e-01 -5.30673489e-02\\n7.70454705e-02 9.09551606e-02 -2.75196165e-01 2.83835948e-01\\n1.07133336e-01 -2.86202669e-01 -4.04351540e-02 -1.13105968e-01\\n7.63121061e-03 -4.14532498e-02 8.66433606e-02 2.87331671e-01\\n-2.96275556e-01 5.19915879e-01 1.16746739e-01 -1.44542679e-01\\n-6.07493967e-02 -4.39251155e-01 -1.08514898e-01 -7.86080658e-02\\n1.03083931e-01 1.18938640e-01 1.74530551e-01 1.76006839e-01\\n3.53795618e-01 -4.17325273e-02 1.86267495e-01 8.00958335e-01\\n-8.35233368e-03 2.06699297e-01 -3.00938994e-01 2.67021954e-01\\n9.40238982e-02 -1.82002157e-01 1.24620430e-01 2.84927279e-01\\n6.12312593e-02 -4.72794473e-03 -8.46888348e-02 1.66716695e-01\\n-1.30873427e-01 -2.09762424e-01 -2.59347469e-01 1.32891521e-01\\n-7.88737088e-02 -2.57980108e-01 4.35365498e-01 6.72961995e-02\\n5.06005995e-02 2.92364527e-02 2.98433900e-02 5.16179577e-02\\n-1.50774702e-01 3.22195649e-01 3.02110277e-02 5.48875034e-02\\n-2.82821149e-01 -2.09953636e-01 -3.23273689e-01 -6.94895862e-03\\n-1.30527616e-01 4.30440344e-02 -1.40676603e-01 -9.75936130e-02\\n2.64813006e-01 1.99664645e-02 -3.12710434e-01 4.04200733e-01\\n2.19235220e-03 -2.83689145e-02 -7.41820559e-02 2.66578704e-01\\n-5.74858375e-02 2.59814113e-01 -8.23077857e-02 -1.31990656e-01\\n5.05799115e-01 -2.15233471e-02 -2.62188111e-02 -4.64327857e-02\\n3.96781087e-01 -7.18103349e-02 1.77392751e-01 1.30902916e-01\\n-6.40940428e-01 2.85164058e-01 -4.20664623e-02 -1.06860586e-01\\n1.75538555e-01 -6.35072216e-02 3.85438353e-01 -2.56160587e-01\\n1.82692066e-01 -6.12594420e-03 -4.68635619e-01 -3.67841691e-01\\n-1.63509533e-01 -1.14069656e-01 3.80764425e-01 -3.36363763e-01\\n-1.66630387e-01 8.75090212e-02 -4.05517995e-01 3.32829244e-02\\n2.90465802e-01 1.78733528e-01 1.05847955e-01 1.38064787e-01\\n-2.13794723e-01 -3.49654526e-01 1.87972382e-01 -2.99215347e-01\\n-1.69602990e-01 1.66425571e-01 -2.08925709e-01 2.64979154e-01\\n1.81014344e-01 -6.25934154e-02 -1.29213616e-01 8.04973207e-03\\n-5.87571710e-02 -9.19925645e-02 2.28851020e-01 3.14909406e-02\\n1.87288523e-01 -2.16550864e-02 -3.79277349e-01 4.62352127e-01\\n-1.93898380e-01 6.02391958e-01 6.46469444e-02 -9.40138519e-01\\n4.41719562e-01 3.05685431e-01 2.04894543e-02 -2.92578965e-01\\n6.16035938e-01 -2.84800082e-01 5.47714680e-02 9.40331221e-02\\n-3.94646257e-01 -3.31888109e-01 1.70989558e-01 -4.70160581e-02\\n-2.36498311e-01 4.84345973e-01 8.76298323e-02 6.06664941e-02\\n9.57808122e-02 -2.22869202e-01 -1.86219424e-01 8.61550421e-02\\n7.47404471e-02 -2.26348668e-01 -4.30374801e-01 -5.15934154e-02\\n-6.20339178e-02 -3.83331120e-01 -2.18496710e-01 -3.41895312e-01\\n-3.65211666e-01 -3.40019256e-01 -1.97324216e-01 1.96142510e-01\\n1.60420030e-01 5.39122336e-02 6.36644810e-02 1.60047218e-01\\n-1.51293576e-01 -5.04827797e-01 9.13019329e-02 2.14705750e-01\\n3.98680866e-01 1.81740731e-01 3.04496363e-02 5.51700965e-02\\n-8.48451778e-02 6.71570718e-01 -1.77370533e-01 -1.40297905e-01\\n2.00412825e-01 2.99488425e-01 1.48102017e-02 -1.67427436e-01\\n1.18504316e-01 3.21542799e-01 -1.54790223e-01 2.05655098e-01\\n-1.19753577e-01 2.09084414e-02 2.43226901e-01 4.82034460e-02\\n-2.89709657e-01 -2.03726515e-01 -1.91518083e-01 1.54055953e-01\\n-4.73538905e-01 -2.28871688e-01 5.89874029e-01 8.72442722e-02\\n8.71996135e-02 9.91741046e-02 2.54528403e-01 -6.36037588e-02\\n-1.05949089e-01 -3.09775740e-01 1.57138392e-01 9.38181579e-02\\n1.15508707e-02 1.62044168e-01 -1.56841025e-01 -6.62468731e-01\\n-3.50264668e+00 -1.57750204e-01 7.17371255e-02 -2.68244207e-01\\n2.68046975e-01 -2.36085445e-01 2.05025017e-01 -2.07913946e-02\\n-2.02054650e-01 1.16239227e-01 -2.67856568e-01 -1.35206744e-01\\n2.28944927e-01 3.40003788e-01 6.49405178e-03 2.51488596e-01\\n1.77406251e-01 -2.19866812e-01 -5.85528053e-02 3.48811984e-01\\n-1.65424749e-01 -5.20501733e-01 2.81273991e-01 -4.02567051e-02\\n3.27050209e-01 4.29545105e-01 -2.75370926e-01 -1.17527418e-01\\n-1.09366521e-01 -2.06329063e-01 2.01657712e-01 -2.47290939e-01\\n-1.12287365e-01 3.12663108e-01 1.60509109e-01 -7.41810054e-02\\n1.41327783e-01 -5.29600322e-01 -1.34378657e-01 -3.55879635e-01\\n1.83680817e-01 -7.41602480e-01 -4.79431963e-03 2.37614126e-03\\n7.31937647e-01 -3.50656658e-01 4.62759063e-02 1.14367023e-01\\n2.23921061e-01 1.88386276e-01 4.25716303e-02 -2.93453000e-02\\n-1.51794910e-01 -2.49134392e-01 -5.57363629e-02 -6.52535260e-02\\n4.31551784e-01 5.07369220e-01 -2.11863145e-01 8.27106461e-03\\n1.66721612e-01 -1.38316602e-01 -4.27338153e-01 -3.73184592e-01\\n-2.45091781e-01 -3.17767799e-01 -6.76983356e-01 -3.97260159e-01\\n-1.19645819e-01 -1.57112554e-01 -1.84190094e-01 3.91172469e-01\\n-2.42083982e-01 -3.48317742e-01 -3.87924276e-02 -3.33766192e-01\\n1.40076846e-01 1.09588457e-02 -7.20779598e-02 -2.23218873e-01\\n-2.81568110e-01 -4.11793023e-01 -2.79626790e-02 6.95841387e-02\\n-8.75670612e-02 -2.33418986e-01 4.79355678e-02 -6.62015155e-02\\n-3.27448517e-01 -5.08184910e-01 4.58720684e-01 1.16785966e-01\\n4.00476277e-01 1.36209190e-01 2.40951926e-01 1.34643272e-01\\n3.12567264e-01 -2.47941270e-01 2.66792458e-02 -4.71571624e-01\\n1.16266206e-01 9.16449353e-03 5.59624851e-01 -2.56389081e-01\\n1.99515931e-03 8.12223330e-02 -2.51877517e-01 -1.41523287e-01\\n2.92765617e-01 -1.72457304e-02 2.18308955e-01 -2.50974983e-01\\n2.25334942e-01 -2.50393450e-01 -3.39879662e-01 2.09343527e-02\\n1.54555872e-01 5.43740451e-01 1.74582098e-02 -3.80020529e-01\\n-2.87530094e-01 4.26547617e-01 -2.07242206e-01 -1.12821490e-01\\n-3.56357098e-01 7.33850151e-02 -2.10485220e-01 1.63525477e-01\\n-1.54642453e-02 -4.94578071e-02 -2.38461822e-01 -1.73267499e-01\\n-1.61419302e-01 2.41700232e-01 2.18712926e-01 3.46433818e-02\\n1.52585402e-01 -4.36194181e-01 -3.44422981e-02 7.53684938e-02\\n1.44002408e-01 2.56624132e-01 4.16669138e-02 -1.53528824e-01\\n-1.01806212e-03 2.27999210e-01 -8.80449116e-02 1.05122931e-01\\n-2.43456647e-01 1.34414107e-01 -4.31117445e-01 -3.62720400e-01\\n-2.43829682e-01 -2.10965201e-01 -6.89298511e-02 2.78716683e-01\\n2.30407342e-01 -7.77033791e-02 -8.78668278e-02 -5.22052884e-01\\n3.34861100e-01 -5.65334111e-02 1.90578148e-01 1.43789068e-01\\n1.21636942e-01 3.59480709e-01 5.80476783e-02 -1.44563079e-01\\n-9.27148759e-02 8.31906870e-02 -1.59935772e-01 -6.08359538e-02\\n8.06473345e-02 -4.16505367e-01 -1.24211408e-01 4.64099556e-01\\n1.82102531e-01 -2.44245932e-01 -2.13420033e-01 2.72017390e-01\\n3.12703401e-02 -3.62795502e-01 -2.72004664e-01 -1.47969881e-02\\n2.91681647e-01 6.18082434e-02 3.02771360e-01 -4.25682724e-01\\n-5.09558385e-03 -7.37296864e-02 -6.51836172e-02 4.34307694e-01\\n8.92547444e-02 -9.57039595e-02 -7.29712397e-02 -2.33184561e-01\\n3.82072628e-01 -4.68664691e-02 -3.54509316e-02 -3.82856466e-02\\n9.44935530e-02 -5.13739586e-02 -4.34929341e-01 1.06125011e-03\\n-7.39746541e-02 -3.69003177e-01 2.43522078e-02 9.03518796e-02\\n1.51525259e-01 1.18993938e-01 -4.34937388e-01 -2.32588843e-01\\n-4.17502046e-01 -1.85799718e-01 -6.65295795e-02 -4.70479012e-01\\n-5.96743040e-02 4.17221822e-02 -5.89449406e-01 1.33043408e-01\\n-2.68843830e-01 -3.94336879e-02 1.83014214e-01 -1.57001764e-02\\n-4.20196533e-01 -1.29450887e-01 1.20374054e-01 7.48296157e-02\\n-2.50387102e-01 -1.48632959e-01 4.73291203e-02 -1.01826227e+00\\n1.69331878e-01 -7.56412148e-02 -1.19695023e-01 1.28890544e-01\\n-4.08417992e-02 -5.30741334e-01 1.68627098e-01 -3.02677006e-01\\n-3.13305944e-01 -1.13266230e-01 -2.57058978e-01 -5.31323612e-01\\n7.08769858e-02 7.74386749e-02 -2.51126230e-01 2.67384976e-01\\n-3.23223263e-01 4.46502954e-01 2.89931409e-02 1.22006893e-01\\n-4.98275533e-02 -3.16053182e-01 3.13113108e-02 -5.51318526e-01\\n-4.13637400e-01 -7.06232414e-02 -2.91413933e-01 -1.11475408e-01\\n1.97787192e-02 -1.95635259e-01 -9.02907029e-02 5.58687598e-02\\n1.88760564e-01 1.58019036e-01 1.93215348e-02 -1.58110902e-01\\n1.74831331e-01 -6.10993922e-01 -2.91324407e-02 -2.66821422e-02\\n-1.75215490e-02 -1.07206263e-01 3.46325934e-01 5.62866628e-02\\n1.33578300e-01 -3.36930424e-01 3.26041371e-01 -3.95532966e-01\\n-2.82947332e-01 -1.03897728e-01 -1.43822925e-02 -1.90414004e-02\\n4.36966419e-01 -5.25637865e-01 3.30386721e-02 1.79084182e-01\\n3.57898623e-02 4.40014116e-02 2.58653700e-01 -2.01891754e-02\\n-1.78549930e-01 2.21666709e-01 -4.71326292e-01 8.77693519e-02\\n7.45355308e-01 1.19806975e-01 1.14133827e-01 1.54601410e-01\\n1.56324595e-01 2.52127022e-01 4.39371616e-01 -3.45676541e-02\\n-1.70427799e-01 2.88810760e-01 5.38588353e-02 -6.93008661e-01\\n6.78328937e-03 6.48628101e-02 -3.10047776e-01 -3.78391713e-01\\n7.11907029e-01 3.98961246e-01 -3.09499472e-01 -1.81525901e-01\\n-3.24246943e-01 -2.68769801e-01 6.51824921e-02 -1.76272452e-01\\n1.31830409e-01 -7.76034966e-02 5.01379073e-01 -3.15096788e-02\\n3.34305167e-01 4.74057347e-01 -2.82085627e-01 -2.25963771e-01\\n-1.39362039e-02 4.03376743e-02 1.00596718e-01 3.51312995e-01\\n-5.87005503e-02 2.34526485e-01 -1.57851037e-02 2.03820631e-01\\n-1.10200256e-01 1.59019139e-02 3.88498716e-02 -5.23046255e-02\\n1.04269981e-01 8.05894881e-02 6.15327716e-01 2.53196776e-01\\n3.58386964e-01 4.32132602e-01 3.34582210e-01 6.42120615e-02\\n5.59861064e-01 4.41677213e-01 2.45480642e-01 1.34995341e-01\\n5.61291054e-02 5.86763211e-02 1.26304463e-01 4.12375741e-02\\n3.18288386e-01 3.36260140e-01 2.84704231e-02 9.10725772e-01\\n3.37712348e-01 3.09503317e-01 5.87512612e-01 -4.98412520e-01\\n-3.38098049e-01 -7.85477832e-03 4.13627356e-01 -3.67102951e-01\\n-6.27095252e-02 8.89910311e-02 -6.79995194e-02 1.35750145e-01\\n-3.77390772e-01 -1.78885475e-01 -9.30633023e-02 2.09513754e-01\\n8.29699859e-02 -1.87860638e-01 -2.45456874e-01 5.96090779e-03\\n-1.29184738e-01 -4.73713949e-02 -4.16860819e-01 -9.01618525e-02\\n-6.71485439e-02 -2.71332860e-01 -1.96409330e-01 -9.96501222e-02\\n-5.47715537e-02 -3.18350732e-01 -9.65505466e-02 -1.46008292e-02\\n2.33853787e-01 -2.32009888e-02 4.96165976e-02 -1.44123480e-01\\n3.21401536e-01 2.35773399e-01 5.17751694e-01 -2.33540758e-02\\n2.60680646e-01 -2.69019067e-01 -1.34609401e-01 1.40931562e-01\\n1.56894565e-01 1.02525009e-02 5.16251363e-02 4.09296632e-01\\n-3.22130501e-01 -1.26402259e-01 1.53372973e-01 4.42921460e-01\\n-3.94530982e-01 -7.64973536e-02 -5.67400493e-02 1.92955613e-01\\n8.60839039e-02 8.53603333e-02 -3.55850339e-01 7.70744979e-02\\n-2.81288654e-01 -3.80233735e-01 2.18698695e-01 -6.21601045e-02\\n-1.00984126e-01 -1.35791479e-02 2.59958327e-01 2.11997464e-01\\n-2.14227021e-01 -9.65067372e-03 -9.41812545e-02 4.65984121e-02\\n1.99218988e-01 3.02736729e-01 -2.76144505e-01 -2.79398412e-01\\n-1.86256424e-01 2.50352621e-01 -1.39549315e-01 7.01435283e-02\\n5.17217629e-03 3.56534421e-01 2.24303119e-02 1.68227211e-01\\n4.28202271e-01 -2.15557992e-01 -1.66514173e-01 -3.09013516e-01\\n-3.04064721e-01 -3.36886525e-01 -1.09070856e-02 -1.24030970e-01\\n1.13476910e-01 -3.18715453e-01 -1.44572891e-02 -1.33754620e-02\\n-1.14702627e-01 -3.43547970e-01 -9.17008612e-03 -1.23789934e-02]]',\n", + " \"For our client we are currently looking for aYour challenges•Use of programming experience to establish tailor-made software solutions based on different programming languages•Support for operational requirements of specific parts of the business, like troubleshooting and system migration•Responsible for system administration activities•Create all important documentation•Track, Troubleshoot and resolve system related problems•Apply and write suitable testing procedures and scriptsYour skills•Experience in at least one of these programming languages (HTML, CSS, JavaScript, Python, .NET, MS Office)•Background in Frameworks/Applications as React, VS code, Git, Svelte•Excellent communication skills•Experience in dynamic environment•Fluent spoken and written EnglishYour horizonsWe offer you a nice challenge at one of the world's leading companies. Spring Professional provides one of the most comprehensive benefits package in the industry to contract employees! Don't miss it! Next to a fix salary you will gain from nice fringe benefits offered by our client.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactInformation Technology A406, looks forward to answer your questions by phone +41 58 233 4580.You can apply directly online.Please mention reference JN -112019-297967 in your application.JN -112019-297967\",\n", + " '[\"Writing\", \"Professionalism\", \"Communications\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"System Administration\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Programming (Music)\", \"Project-Based Solutions\", \"Python (Programming Language)\", \"Git Flow\", \"Cascading Style Sheets (CSS)\", \"Financial Information eXchange (FIX) Protocol\", \"JavaScript (Programming Language)\", \"HyperText Markup Language (HTML)\", \"Web Application Frameworks\", \"Industrialization\", \"React.js\"]',\n", + " \"['English']\"],\n", + " ['55',\n", + " 'software engineer – infrastructure',\n", + " 'Lugano',\n", + " '',\n", + " '',\n", + " '[[-3.00879031e-01 2.93186873e-01 3.91317397e-01 -1.03268325e-01\\n4.78794605e-01 -1.63716614e-01 -1.24025993e-01 2.78238416e-01\\n-6.44701272e-02 -3.18700671e-01 -7.58499131e-02 -1.74116194e-01\\n-1.89848706e-01 1.01615131e-01 1.67488351e-01 3.75592083e-01\\n7.28601813e-02 1.78860985e-02 -1.73786789e-01 4.24716145e-01\\n2.16276094e-01 2.71240622e-02 -1.07081458e-01 6.44125879e-01\\n3.15437347e-01 5.05755246e-02 -5.42306490e-02 -5.84535860e-02\\n-3.49566609e-01 -1.99953839e-01 2.56783605e-01 6.70977086e-02\\n1.96225531e-02 -3.30467224e-01 1.08449347e-01 2.42889076e-02\\n-2.29073167e-01 -5.94328903e-02 -3.90555374e-02 2.29642987e-01\\n-3.40409666e-01 -4.15655464e-01 5.97661510e-02 8.12869519e-02\\n-1.48136511e-01 -2.05082506e-01 7.47181177e-02 -3.82940099e-02\\n5.89827774e-04 -8.48522335e-02 -6.36883378e-01 3.25887978e-01\\n-1.50449380e-01 -2.98596263e-01 2.88268328e-01 5.38708150e-01\\n1.01485834e-01 -5.24987757e-01 -1.54847637e-01 -2.85892755e-01\\n-1.14543185e-01 -3.50345345e-03 4.57349531e-02 -1.50619000e-01\\n3.75841975e-01 7.53906788e-03 1.35511905e-03 5.05759835e-01\\n-7.84257889e-01 -9.27326009e-02 -1.27454743e-01 8.22741687e-02\\n-3.21160525e-01 1.42420497e-04 -1.32573649e-01 -5.03220595e-02\\n-2.40474250e-02 3.39716822e-01 3.41495313e-02 2.46226862e-02\\n-1.69638231e-01 2.87897348e-01 1.65269598e-02 2.04493821e-01\\n4.02450442e-01 2.36347482e-01 7.48850852e-02 3.92977804e-01\\n-3.39092374e-01 3.55543703e-01 2.47102734e-02 -1.09525576e-01\\n1.88436851e-01 2.02240899e-01 5.58090806e-01 2.57104754e-01\\n-7.99437333e-03 1.26798749e-01 -2.11416706e-01 2.19073489e-01\\n1.39928490e-01 -2.47061670e-01 3.79527397e-02 -2.11745803e-03\\n-1.67742223e-01 -7.72309601e-02 -9.44179222e-02 4.14851397e-01\\n-2.27359101e-01 2.94415325e-01 2.77031094e-01 -1.16150575e-02\\n-4.84739244e-02 -6.33450627e-01 -6.82621896e-02 -6.77805319e-02\\n9.44998041e-02 2.23461345e-01 2.79766053e-01 1.96791470e-01\\n1.20394945e-01 2.21997783e-01 2.04271674e-01 1.04545474e+00\\n-3.14405672e-02 1.30599171e-01 -1.79279611e-01 2.89214373e-01\\n2.56017148e-01 -2.04995364e-01 1.33666202e-01 3.32151592e-01\\n2.34139726e-01 -1.66957349e-01 -1.12822250e-01 3.86550277e-01\\n-1.50696322e-01 -8.32101330e-02 -3.40334445e-01 8.20770711e-02\\n-3.26552123e-01 -4.50612068e-01 4.32520688e-01 1.72729358e-01\\n2.65590787e-01 7.00112954e-02 -1.12124145e-01 -5.71813285e-02\\n-1.32182136e-01 4.17161673e-01 -1.36189863e-01 2.00398117e-01\\n-3.94227594e-01 -2.32892543e-01 -2.65055507e-01 3.24277580e-01\\n1.94085333e-02 2.17623770e-01 -2.80663036e-02 -1.22584902e-01\\n3.84874254e-01 -1.05298301e-02 -4.64051157e-01 1.62944660e-01\\n-7.85158500e-02 -2.75155514e-01 -1.40553564e-01 1.35943472e-01\\n-1.63567178e-02 1.68804660e-01 -3.54842730e-02 -2.26342067e-01\\n4.01549637e-01 9.38663911e-03 2.06304863e-02 -1.38568610e-01\\n3.02643180e-01 -1.90038607e-01 2.58602947e-01 2.33357385e-01\\n-7.79680669e-01 2.28618413e-01 1.83338230e-03 -2.30762839e-01\\n-6.24184161e-02 6.95198402e-02 4.03260529e-01 -3.76663059e-01\\n4.90600877e-02 -8.83588344e-02 -5.29202044e-01 -3.57074797e-01\\n-3.48177403e-01 4.85689677e-02 4.90368754e-01 -2.28337407e-01\\n-1.97726265e-01 1.56603396e-01 -4.55536842e-01 -6.93446994e-02\\n1.95589215e-01 4.90938239e-02 5.23668975e-02 -1.92485955e-02\\n-1.23538025e-01 -6.17735505e-01 -1.30851611e-01 -4.73395258e-01\\n-4.96935308e-01 9.46354792e-02 -2.57593751e-01 2.05382109e-01\\n9.74708796e-02 8.88068452e-02 3.13008651e-02 7.31329471e-02\\n-2.58341074e-01 -1.69609636e-01 2.72056669e-01 1.95337325e-01\\n3.00849140e-01 -3.00326869e-02 -3.81042659e-01 3.68223310e-01\\n-1.41485795e-01 6.92153692e-01 2.43943647e-01 -7.69371688e-01\\n6.31583691e-01 2.05738083e-01 6.82776570e-02 -5.04139245e-01\\n3.87583196e-01 -3.35701734e-01 1.33027285e-01 2.38910377e-01\\n-2.80704081e-01 -2.22749725e-01 2.28209972e-01 -1.55083522e-01\\n-3.29826891e-01 5.61209142e-01 1.56247288e-01 -1.28462151e-01\\n3.26708049e-01 -3.72736812e-01 3.36158983e-02 1.22877941e-01\\n-2.56286263e-02 -2.63898283e-01 -2.63618708e-01 1.44047424e-01\\n-9.48781222e-02 -5.00595927e-01 -1.52707145e-01 -2.55044729e-01\\n-1.97757691e-01 -3.34501833e-01 -1.93009913e-01 6.02746010e-01\\n7.68776983e-02 2.11635008e-01 1.11528002e-01 -4.46646959e-02\\n-1.07868664e-01 -6.05864823e-01 -1.57366246e-01 2.32590437e-02\\n4.55449015e-01 1.69754624e-01 2.43884269e-02 -1.47687703e-01\\n-1.59047142e-01 4.01418388e-01 -4.28975642e-01 -3.23695570e-01\\n1.07912615e-01 6.90169856e-02 -7.20065981e-02 -7.71670565e-02\\n1.73102003e-02 2.38392562e-01 -1.88736975e-01 1.10893138e-01\\n-2.04206035e-01 3.82827297e-02 2.22324267e-01 -5.50262891e-02\\n-2.91198194e-01 -4.14358139e-01 3.97748388e-02 3.50211859e-01\\n-5.15438914e-01 1.82694849e-02 5.84305644e-01 3.86929184e-01\\n2.27325216e-01 1.33536994e-01 2.65554458e-01 -2.44909897e-01\\n-3.12612474e-01 -3.36751431e-01 1.46923047e-02 3.15787226e-01\\n1.04217216e-01 2.15013735e-02 -1.71257675e-01 -6.16138995e-01\\n-3.46713924e+00 -1.93301052e-01 2.10031301e-01 -2.07476407e-01\\n1.69475362e-01 -1.26025841e-01 -1.88950039e-02 -3.53714600e-02\\n-2.33969301e-01 -2.87974030e-02 -3.69860321e-01 -8.93848613e-02\\n-2.42614243e-02 4.09246206e-01 1.66151851e-01 2.65335411e-01\\n7.07896501e-02 -1.83095276e-01 -1.39254153e-01 3.00904304e-01\\n-1.94392174e-01 -6.19301975e-01 1.11721240e-01 -6.54913187e-02\\n2.41897032e-01 9.04766396e-02 -4.36451584e-01 -7.91861266e-02\\n-1.65939137e-01 -1.55749217e-01 -2.86726677e-03 -2.13719219e-01\\n-7.01692402e-02 2.79045135e-01 1.80733837e-02 5.08422144e-02\\n1.14969879e-01 -1.59121975e-01 3.51332538e-02 -4.39557374e-01\\n-6.27788827e-02 -4.98567462e-01 -3.39253470e-02 -1.71872228e-01\\n6.59773350e-01 -3.86580676e-01 1.53439745e-01 8.71985853e-02\\n2.36954257e-01 2.12036982e-01 -2.15092361e-01 2.88824667e-03\\n-2.06664979e-01 -2.81206608e-01 1.96247753e-02 -2.78526068e-01\\n3.92579943e-01 6.37125134e-01 -2.56244302e-01 3.20588686e-02\\n1.38102338e-01 -2.77370691e-01 -3.24303627e-01 -5.99954844e-01\\n-2.45553732e-01 -1.67872697e-01 -8.09775829e-01 -4.80559677e-01\\n-9.27682668e-02 5.57722151e-02 -2.77839214e-01 5.80034375e-01\\n-4.61603671e-01 -5.49676895e-01 5.37728257e-02 -6.60362124e-01\\n-1.48893967e-02 -2.39232764e-01 6.95940033e-02 -1.50372148e-01\\n-2.75305599e-01 -4.36389297e-01 1.79174632e-01 -2.66638640e-02\\n-2.32112467e-01 -7.29342997e-02 2.64724847e-02 -4.31868285e-01\\n-3.33787382e-01 -2.96306759e-01 3.55388194e-01 1.82731822e-01\\n2.57711589e-01 1.22675538e-01 3.77857834e-01 4.52391468e-02\\n3.50659311e-01 -1.07281409e-01 1.37129828e-01 -3.18001330e-01\\n2.20700189e-01 -1.83648709e-02 5.41036308e-01 -3.50027502e-01\\n6.09605946e-02 3.58645976e-01 -2.61133105e-01 -1.08122624e-01\\n4.89372790e-01 7.29590505e-02 -2.53005847e-02 -1.19581163e-01\\n3.83681297e-01 -6.37967885e-01 -2.56187499e-01 3.02944511e-01\\n6.42761439e-02 5.80740988e-01 1.77910313e-01 -4.58288223e-01\\n-3.97374719e-01 4.02542263e-01 -1.14063472e-01 -2.51584977e-01\\n7.01158047e-02 2.22222611e-01 -2.47803312e-02 1.56336799e-01\\n1.49435177e-01 -2.45852709e-01 -3.88448298e-01 -3.64366956e-02\\n-2.88377376e-03 1.35575101e-01 1.75859213e-01 -1.34832412e-01\\n-1.03112653e-01 -1.22031204e-01 -3.78820710e-02 3.63153294e-02\\n2.02119753e-01 2.13538945e-01 1.67728022e-01 -3.20858240e-01\\n1.06952675e-01 2.63561010e-01 -1.07260503e-01 1.80178538e-01\\n-1.90651059e-01 -3.21749039e-02 -3.79539311e-01 -3.60461771e-01\\n-2.92769372e-02 -2.89781660e-01 4.04551104e-02 2.00645357e-01\\n1.21491902e-01 -2.21123779e-03 2.21114308e-02 -5.50375700e-01\\n4.33755368e-01 2.21633743e-02 1.70349032e-01 1.90832749e-01\\n1.01743355e-01 5.09069443e-01 8.50913823e-02 -3.16508114e-02\\n-1.28230691e-01 -1.78902075e-01 -2.77893186e-01 -3.07526469e-01\\n6.95318282e-02 -3.47837031e-01 -6.79813325e-02 4.49735999e-01\\n9.83924344e-02 -3.83342206e-01 -1.76466197e-01 3.50526214e-01\\n2.00574055e-01 -1.81934759e-01 -7.84528032e-02 6.54289722e-02\\n2.51233399e-01 1.86822750e-02 2.19002098e-01 -3.69453162e-01\\n-3.07673905e-02 9.28495377e-02 -7.56931677e-02 4.58273828e-01\\n3.47311378e-01 3.89679009e-03 -2.08536431e-01 -1.76302195e-01\\n4.58923221e-01 -1.23154871e-01 -5.91280498e-03 -2.05564216e-01\\n4.69516702e-02 -1.32719114e-01 -4.13890392e-01 1.62447691e-01\\n5.50124086e-02 -8.15157220e-02 8.06250274e-02 -8.07496235e-02\\n1.36916637e-01 -2.86610387e-02 -4.20104235e-01 -2.98656136e-01\\n-3.37828279e-01 -1.96709454e-01 1.80388913e-01 -2.43398353e-01\\n2.01923400e-02 8.52477700e-02 -6.56238735e-01 1.99699700e-01\\n-2.64420927e-01 1.25517324e-01 7.42155686e-02 1.42937839e-01\\n-3.03225577e-01 7.98135400e-02 5.34233153e-02 3.85028943e-02\\n-4.53491926e-01 -1.94671988e-01 2.70261150e-02 -9.74631250e-01\\n6.65682331e-02 -7.66236261e-02 9.40824393e-03 1.14252483e-02\\n-3.37707587e-02 -5.66168427e-01 1.99193791e-01 -4.40826386e-01\\n5.04017062e-02 1.68569401e-01 -1.71417952e-01 -4.21216071e-01\\n4.89115417e-02 -1.16364248e-01 -2.85581082e-01 4.42956597e-01\\n-5.01606703e-01 1.50286421e-01 1.17784612e-01 -2.47211792e-02\\n7.88761377e-02 -3.69431317e-01 2.02608258e-01 -2.65531957e-01\\n-4.03134644e-01 -1.08709678e-01 -3.43860686e-01 -1.39599085e-01\\n1.24647722e-01 -2.48197094e-01 -2.75886297e-01 1.18766770e-01\\n1.85462266e-01 1.42471671e-01 3.56539823e-02 -2.15658531e-01\\n1.34770572e-01 -2.79345363e-01 8.64735246e-02 -1.25774384e-01\\n-6.48249164e-02 1.20532081e-01 1.17231280e-01 -1.51869193e-01\\n3.61631177e-02 -2.31839910e-01 5.80160201e-01 -2.75261730e-01\\n-3.89089018e-01 -4.63009402e-02 2.69977842e-02 2.59587876e-02\\n3.00831139e-01 -4.15258884e-01 7.68277934e-03 2.38041312e-01\\n1.35940179e-01 -4.23567295e-02 2.50154495e-01 -1.02111273e-01\\n-6.99340552e-02 5.91482520e-02 -4.61507529e-01 5.96984252e-02\\n7.70102501e-01 1.17011242e-01 -3.14755850e-02 2.10223675e-01\\n8.15835297e-02 4.50068951e-01 4.52602684e-01 -9.18183774e-02\\n-7.12006986e-02 2.26993382e-01 5.87383583e-02 -4.99704361e-01\\n-9.72609445e-02 -2.50003844e-01 -1.67176172e-01 -1.97197720e-01\\n6.97801113e-01 4.70982462e-01 -3.04457128e-01 -2.08735168e-01\\n-7.25482479e-02 -1.89349130e-01 2.06093788e-01 -8.18968266e-02\\n-4.73494381e-02 -2.35091895e-02 5.78519821e-01 -3.08102984e-02\\n3.02670270e-01 4.66560930e-01 -2.38135278e-01 -4.34572309e-01\\n-1.09416001e-01 6.20297752e-02 1.08913675e-01 3.00506949e-01\\n-2.07963195e-02 3.11317265e-01 1.28179276e-02 9.26745385e-02\\n6.71412284e-03 6.13207445e-02 1.66868046e-01 -3.61097255e-03\\n2.78235048e-01 1.06410727e-01 1.77996550e-02 5.14176905e-01\\n1.24909259e-01 4.76623207e-01 3.16883922e-01 1.94185615e-01\\n3.43783319e-01 5.46812057e-01 4.46297884e-01 1.82734951e-01\\n5.96060567e-02 -4.68132943e-02 3.98530997e-02 -9.10039544e-02\\n4.55725998e-01 2.51346052e-01 3.44859511e-01 8.16920877e-01\\n3.29367936e-01 2.14782894e-01 7.78392732e-01 -6.70003235e-01\\n-3.85428339e-01 9.29093286e-02 4.82959777e-01 -3.44925046e-01\\n-1.25408113e-01 8.58220458e-02 -2.41764829e-01 1.66485399e-01\\n-5.78623474e-01 -9.24738348e-02 -2.86182649e-02 -9.08896625e-02\\n-8.81325174e-03 -3.48114334e-02 -2.86627918e-01 -1.63740069e-01\\n-1.73640594e-01 -2.34352484e-01 -1.87768996e-01 -1.47904441e-01\\n-2.90678680e-01 -1.45760730e-01 -4.97637577e-02 8.18882789e-03\\n-1.45734906e-01 -4.97592241e-01 -3.21818113e-01 1.17715396e-01\\n4.49432760e-01 -1.57377616e-01 -1.74466502e-02 -1.72294587e-01\\n-7.82589335e-03 3.52455467e-01 5.74620426e-01 -4.30326909e-02\\n1.46646231e-01 -1.62685096e-01 -2.04753563e-01 -1.72511884e-03\\n1.58810183e-01 -8.75630975e-03 6.10316806e-02 4.70520645e-01\\n-3.79225045e-01 2.03973040e-01 1.42406151e-01 2.75100172e-01\\n-4.41362977e-01 -1.60239324e-01 -1.55947730e-03 2.82590985e-01\\n4.11767662e-02 3.16154599e-01 -3.87521476e-01 1.47677600e-01\\n-3.44438523e-01 -5.26079834e-01 5.24405301e-01 -2.34351486e-01\\n-6.83412999e-02 1.53566837e-01 3.28152776e-01 1.14282914e-01\\n-2.03067213e-01 -5.59285916e-02 1.45715505e-01 2.76590496e-01\\n-6.31856248e-02 4.04603094e-01 -3.04258376e-01 -1.08718514e-01\\n-1.91801056e-01 3.90092880e-01 -6.51417673e-02 1.82144478e-01\\n-1.73569724e-01 3.82095128e-01 1.23801269e-01 1.74502939e-01\\n1.27364665e-01 6.34968802e-02 -5.40365130e-02 -2.22627968e-01\\n-2.57311881e-01 -4.27096128e-01 1.71497643e-01 2.96526961e-02\\n1.64752096e-01 -3.71100157e-01 -1.09345570e-01 1.18856607e-02\\n-1.66199088e-01 -3.77908051e-01 -2.34627366e-01 1.25755101e-01]]',\n", + " 'Lugano, Switzerland / Austin, TX Full Time Description Implement internal machine learning software infrastructure Integrate existing open-source tools in order to facilitate ML research Interface our proprietary platform with large data sets and customer platforms Contribute to the our proprietary code base Minimum Qualifications Masters in computer science 2 years in the industry, experience with IT systems Experience with parallel computing architectures “DevOps” Command of C/C++ and Python Knowledge of Unix environment, GNU/Linux Engineering mindset Large data management skills Fluent in written and spoken English Plusses Theoretical knowledge of machine learning methods (deep learning, reinforcement learning, evolutionary computation) Experience of machine learning frameworks (TensorFlow, PyTorch) Experience with containers and orchestration (Docker, Kubernetes, OpenStack) Experience with cluster environments (e.g. SGE, Condor) Experience with GPU programming (Cuda, OpenCL, Metal) Contact E-mail: jobs@nnaisense.com start subject with: [infrastructure engineer] submit both your cover letter and resume in English, PDF format',\n", + " '[\"Research\", \"Infrastructure\", \"Integration\"]',\n", + " '[\"Kubernetes\", \"Tooling\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Computer Science\", \"Data Management\", \"Machine Learning\", \"Nvidia CUDA\", \"OpenStack\", \"Industrialization\", \"Component Object Model (COM)\", \"Association Rule Learning\", \"E (Programming Language)\", \"OpenCL\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Condor\", \"C (Programming Language)\", \"Metallization\", \"TensorFlow\", \"Deep Learning\", \"Parallel Computing\", \"Clinical Data Management\", \"SliTaz GNU/Linux\", \"PyTorch (Machine Learning Library)\", \"Unix\", \"Documentation Based Coding\"]',\n", + " \"['English', 'Luxembourgish', 'Indonesian', 'Akan', 'Welsh']\"],\n", + " ['34',\n", + " 'software engineer',\n", + " 'Lausanne',\n", + " 'Staffing & Outsourcing',\n", + " 'www.darwinrecruitment.com',\n", + " '[[-1.65083453e-01 3.19254458e-01 4.95441109e-01 -3.81989740e-02\\n3.79558653e-01 -1.54357284e-01 -6.61659241e-02 4.67716426e-01\\n2.00597886e-02 -5.06808162e-01 -4.95050251e-02 -3.14041048e-01\\n-7.89727271e-02 2.11198092e-01 8.97698551e-02 3.45691472e-01\\n2.44436756e-01 7.88515657e-02 -1.19626366e-01 2.57578075e-01\\n1.16620570e-01 -1.54219747e-01 2.51368880e-02 7.06675112e-01\\n4.60067809e-01 4.69725579e-03 -4.81418706e-03 4.16709892e-02\\n-2.61765927e-01 -1.95731997e-01 5.26056290e-01 8.46560821e-02\\n-1.41980886e-01 -4.30015445e-01 6.17466159e-02 -2.15574703e-03\\n-1.73775107e-01 -1.24349199e-01 -1.11499421e-01 5.27733155e-02\\n-5.58828294e-01 -3.09473097e-01 3.16985846e-02 1.46569416e-01\\n-2.78874844e-01 -2.39975601e-01 7.55263567e-02 2.06531044e-02\\n7.44131580e-02 2.66239401e-02 -5.80476165e-01 2.38531888e-01\\n-2.52952814e-01 -2.93606281e-01 3.00193787e-01 6.08347297e-01\\n1.46699315e-02 -4.92188543e-01 -5.15527129e-01 -3.80926311e-01\\n1.16627328e-01 -1.08925834e-01 -4.57998179e-02 -3.35701406e-01\\n3.86292398e-01 1.11972839e-02 3.53513435e-02 3.31414163e-01\\n-8.27985883e-01 -1.31682549e-02 -1.73459172e-01 -5.12036867e-03\\n-3.07383418e-01 -1.71503313e-02 -3.36450040e-01 -8.99936780e-02\\n-8.80132765e-02 3.81386101e-01 1.05661333e-01 8.90223086e-02\\n-2.03625888e-01 3.20241839e-01 -1.80687740e-01 4.11038011e-01\\n2.03398749e-01 2.55291969e-01 2.74804741e-01 2.19039083e-01\\n-3.09199214e-01 4.23422128e-01 1.79787934e-01 -3.93441975e-01\\n2.86310881e-01 1.71788231e-01 4.76723939e-01 7.50590637e-02\\n3.33949059e-01 1.06433958e-01 -2.64567405e-01 2.55927294e-01\\n2.40622237e-01 -4.18380380e-01 9.86854918e-03 -1.69799194e-01\\n-3.68123278e-02 -1.02736000e-02 6.81591928e-02 2.58876175e-01\\n-2.66770303e-01 3.49239081e-01 1.16490670e-01 -1.14884578e-01\\n-5.06634302e-02 -3.72723728e-01 -6.11759163e-02 3.85265574e-02\\n-1.03304416e-01 1.80349976e-01 1.63249061e-01 2.09578797e-01\\n2.77222455e-01 5.91744706e-02 9.65539590e-02 8.00303519e-01\\n-1.59997359e-01 9.15836096e-02 -2.67055035e-01 3.52540791e-01\\n-1.48655605e-02 -3.39905024e-01 3.20987612e-01 2.20408142e-01\\n4.28162031e-02 -1.56447917e-01 -2.81828463e-01 3.26091617e-01\\n-1.42394066e-01 -1.55618176e-01 -3.54186118e-01 2.70916492e-01\\n-4.90221642e-02 -4.17977661e-01 5.77617764e-01 5.84985763e-02\\n2.32607648e-01 4.95234020e-02 9.56064984e-02 -1.04946747e-01\\n-1.47463351e-01 3.00862938e-01 -5.12746070e-03 2.35319465e-01\\n-3.14357340e-01 -1.78694904e-01 -1.97547540e-01 1.68702900e-01\\n-3.47839057e-01 1.17516480e-01 -1.38953865e-01 -1.76827818e-01\\n2.96173990e-01 -7.40425289e-02 -1.84928045e-01 2.69041359e-01\\n-4.53104265e-02 8.23551118e-02 -9.73196179e-02 2.74093777e-01\\n-2.60307550e-01 3.50097984e-01 -8.10794458e-02 -9.91023481e-02\\n5.27690828e-01 9.78930071e-02 2.34903097e-01 -1.26873344e-01\\n3.06012303e-01 -6.98535815e-02 1.81846410e-01 7.48809427e-02\\n-7.02474356e-01 2.23506808e-01 8.34702849e-02 -7.43738189e-02\\n1.25737682e-01 -7.17679560e-02 1.93709686e-01 -3.14099044e-01\\n-5.47205657e-02 -7.96952099e-02 -4.73146230e-01 -2.79186487e-01\\n-3.72156084e-01 -1.12092465e-01 4.67792362e-01 -4.30909961e-01\\n-7.91788101e-02 2.71165311e-01 -6.30002558e-01 -6.87183440e-02\\n2.09712207e-01 2.11599037e-01 9.18869749e-02 1.72063589e-01\\n-1.42219707e-01 -4.93272126e-01 1.51271015e-01 -3.28044176e-01\\n-2.12690547e-01 1.69810578e-01 -2.71262169e-01 2.92541921e-01\\n-1.41262682e-02 3.91495563e-02 -1.58338517e-01 1.69167995e-01\\n-1.77642405e-01 -1.03847608e-01 1.19404256e-01 4.99546491e-02\\n3.20385277e-01 8.45142305e-02 -3.35740685e-01 4.92505670e-01\\n-1.76585063e-01 5.79505026e-01 1.27589434e-01 -8.90880823e-01\\n4.60692346e-01 2.52288461e-01 3.71406414e-02 -1.96716711e-01\\n5.98921120e-01 -2.91911185e-01 -1.37697682e-01 7.70861581e-02\\n-3.64976943e-01 -3.77969176e-01 1.02516070e-01 -1.45798609e-01\\n-2.43318766e-01 5.77960134e-01 -3.06209410e-03 1.66892231e-01\\n2.65780896e-01 -3.23599279e-01 -9.85318050e-02 8.42596516e-02\\n-1.31586477e-01 -2.55167454e-01 -4.48100984e-01 -3.99389230e-02\\n6.55791163e-03 -4.77440655e-01 -1.06774732e-01 -2.25496203e-01\\n-2.16057077e-01 -3.11196715e-01 -2.56162077e-01 2.34992772e-01\\n2.81699210e-01 1.16907388e-01 2.26505771e-02 1.06790349e-01\\n-1.36170521e-01 -5.94081223e-01 -3.34470756e-02 -1.96925215e-02\\n3.58730465e-01 2.37309396e-01 1.33797467e-01 -1.20922634e-02\\n3.11987605e-02 5.72406352e-01 -2.49959707e-01 -3.10552001e-01\\n1.28232718e-01 1.29639909e-01 1.14353396e-01 -1.71455950e-01\\n1.29294008e-01 4.68337566e-01 -3.13875765e-01 1.30652338e-01\\n-5.94749749e-02 3.92417889e-04 3.41744035e-01 3.42286825e-02\\n-3.60461384e-01 -1.83997393e-01 -6.02864176e-02 1.42032579e-01\\n-5.19604802e-01 -1.93873584e-01 6.19571626e-01 1.32265851e-01\\n1.55707061e-01 1.79977715e-01 1.53400376e-01 -1.44464105e-01\\n-1.16054423e-01 -7.21182972e-02 2.15016454e-01 1.85630277e-01\\n1.33414134e-01 1.43782824e-01 -1.24449611e-01 -5.38608849e-01\\n-3.35662127e+00 -1.71166778e-01 2.70768225e-01 -2.90032625e-01\\n2.34924644e-01 -6.07757941e-02 8.29816330e-03 -1.50161520e-01\\n-2.24879205e-01 7.17367381e-02 -6.81408271e-02 -1.33796394e-01\\n1.45479158e-01 2.31149197e-01 5.29174730e-02 3.77376556e-01\\n1.84923172e-01 -1.24336347e-01 9.19131935e-02 3.92650485e-01\\n-1.90250456e-01 -5.27792335e-01 2.29316056e-01 -4.67799120e-02\\n3.29211354e-01 1.72328904e-01 -4.99511421e-01 -2.23698452e-01\\n-1.71870187e-01 -1.56360745e-01 1.28818378e-01 -2.49277726e-01\\n-1.76581651e-01 3.62027466e-01 1.15242019e-01 -6.12563379e-02\\n1.21528409e-01 -3.47983301e-01 -1.47720546e-01 -4.40003157e-01\\n1.20807648e-01 -5.43209791e-01 3.72945182e-02 -4.03833240e-02\\n6.36576056e-01 -4.03824091e-01 8.72881189e-02 1.03404924e-01\\n1.25959799e-01 2.19854578e-01 6.38148794e-03 5.54088876e-02\\n-2.53575683e-01 -2.06056267e-01 -1.16825871e-01 -1.93455204e-01\\n4.69573379e-01 4.97935086e-01 -1.76326811e-01 2.56949924e-02\\n1.30465319e-02 -4.16623294e-01 -4.86157060e-01 -2.69711196e-01\\n-2.14943051e-01 -3.09029162e-01 -5.92809975e-01 -4.30958062e-01\\n-1.25583902e-01 -2.30830729e-01 -1.09555170e-01 3.47886473e-01\\n-2.83355117e-01 -3.51131797e-01 5.12902774e-02 -6.08868599e-01\\n2.30312407e-01 9.33560636e-03 8.15793052e-02 -2.21696585e-01\\n-1.35806352e-01 -5.25290191e-01 -1.03401048e-02 -2.78670695e-02\\n-2.15595692e-01 -1.88859209e-01 -1.11919816e-03 -1.36716768e-01\\n-2.52233416e-01 -5.45656264e-01 4.26379204e-01 1.36129424e-01\\n1.88008830e-01 4.74017411e-02 2.51934618e-01 7.61366508e-04\\n3.05054069e-01 -2.02371091e-01 -5.97683303e-02 -4.26522881e-01\\n7.17229843e-02 -2.25509629e-02 4.05395269e-01 -8.51178691e-02\\n-4.90223914e-02 1.01441436e-01 -1.53953552e-01 -1.78119123e-01\\n3.00130546e-01 7.98332766e-02 2.50713766e-01 -3.17176312e-01\\n2.45556653e-01 -2.32074395e-01 -2.40696013e-01 4.27174345e-02\\n8.03229806e-04 4.74810421e-01 4.25823554e-02 -3.97048950e-01\\n-1.39336601e-01 4.77282345e-01 -2.29416907e-01 1.67547651e-02\\n-1.79245561e-01 4.91999649e-03 -2.53701180e-01 2.26274699e-01\\n-7.05053210e-02 -8.91214609e-02 -2.31661305e-01 -1.51219919e-01\\n-1.99180499e-01 2.73737073e-01 1.48562640e-01 6.11811206e-02\\n-4.27649170e-02 -3.08864474e-01 5.25183743e-03 1.53419554e-01\\n1.22200690e-01 4.39246386e-01 3.23207602e-02 -1.39135122e-01\\n1.24065002e-04 3.91298681e-01 -1.07306212e-01 1.51429176e-01\\n-2.63545334e-01 -6.26875088e-02 -6.05306685e-01 -1.74071416e-01\\n-3.10588419e-01 -2.98982769e-01 3.25216427e-02 2.32067317e-01\\n1.81284964e-01 -3.46225500e-02 8.33854005e-02 -4.77776766e-01\\n2.58061618e-01 3.56356837e-02 1.65657297e-01 1.91773146e-01\\n8.11498463e-02 5.07302940e-01 -6.18015591e-04 -2.85529960e-02\\n-1.56311840e-01 1.73390701e-01 -2.01492921e-01 -1.58605397e-01\\n-2.80407071e-02 -5.42979836e-01 -8.44680518e-02 4.29916173e-01\\n3.59204002e-02 -1.63769394e-01 -1.91574961e-01 1.29596427e-01\\n2.64844988e-02 -2.20389515e-01 -1.92395359e-01 6.61681918e-03\\n2.50176638e-01 2.82903224e-01 1.99627280e-01 -4.50444281e-01\\n-7.97723420e-03 -1.75965223e-02 -5.01822829e-02 4.95300859e-01\\n5.93878739e-02 5.05512860e-03 -1.87208578e-01 -2.84996748e-01\\n3.14409673e-01 -1.84382573e-01 -7.51987621e-02 -1.74926296e-01\\n1.20391063e-01 -4.36875969e-02 -3.73294562e-01 9.09328908e-02\\n-3.56206782e-02 -1.61765426e-01 -1.82871148e-02 1.35423639e-03\\n6.75418749e-02 1.40893608e-01 -5.42031586e-01 -2.55063772e-01\\n-2.29366362e-01 2.88663711e-03 -1.84630696e-02 -4.86314625e-01\\n5.50204180e-02 3.96595262e-02 -4.68332827e-01 1.80881947e-01\\n-2.82466263e-01 1.49940550e-02 2.04385206e-01 3.18277702e-02\\n-4.12185997e-01 -1.55226499e-01 2.01964095e-01 2.89694726e-01\\n-2.10780442e-01 -2.90206701e-01 -1.40937626e-01 -8.90241444e-01\\n2.09370106e-01 1.29689768e-01 -1.32999614e-01 7.88515955e-02\\n-4.85056378e-02 -6.05439246e-01 1.15587041e-01 -3.82334679e-01\\n-1.10686511e-01 4.31540720e-02 -1.96580812e-01 -4.52483773e-01\\n9.44392197e-03 -9.59797353e-02 -2.96589166e-01 3.68888438e-01\\n-5.24638832e-01 2.51528233e-01 -8.31307620e-02 1.09339334e-01\\n-3.78954294e-03 -3.10454100e-01 1.31201014e-01 -4.12992567e-01\\n-4.06429768e-01 -2.21933320e-01 -3.28845620e-01 -2.87652284e-01\\n4.12375852e-02 -3.01370919e-01 -1.28426310e-02 1.36909828e-01\\n3.18212390e-01 9.65859070e-02 -1.53924912e-01 -3.17425162e-01\\n5.29376231e-02 -4.99999404e-01 3.60145085e-02 2.44938210e-02\\n3.30164880e-02 -1.45108756e-02 2.09559023e-01 3.21212821e-02\\n1.21268444e-01 -3.59512419e-01 3.74653071e-01 -4.58422154e-01\\n-2.69202232e-01 -1.28728407e-03 -2.49122567e-02 -9.84800458e-02\\n3.10582310e-01 -5.39216280e-01 8.51636976e-02 3.05169255e-01\\n2.00447991e-01 -7.58894235e-02 2.18195140e-01 -4.44645854e-03\\n-1.27179585e-02 3.42004001e-01 -3.51436794e-01 1.12229630e-01\\n7.09348500e-01 7.95115903e-02 1.93998113e-01 2.28873149e-01\\n9.08756852e-02 3.54086876e-01 4.49341387e-01 -5.33851385e-02\\n-1.63995713e-01 2.74579048e-01 1.38879880e-01 -5.56289911e-01\\n4.90116663e-02 -5.14687374e-02 -2.56283760e-01 -1.64354086e-01\\n6.87093556e-01 3.72168183e-01 -3.40713054e-01 -3.12146634e-01\\n-4.00387198e-02 -2.94105947e-01 2.02030346e-01 -1.25642255e-01\\n-1.05589509e-01 -8.34729448e-02 4.24401820e-01 -1.08517811e-01\\n2.97968239e-01 5.94153047e-01 -3.20702761e-01 -3.10925275e-01\\n6.66216463e-02 3.03252161e-01 -2.32971087e-02 4.29299235e-01\\n-2.27434739e-01 2.68433392e-01 -4.45189476e-02 1.00190096e-01\\n2.28793174e-02 2.01676100e-01 1.72263756e-01 3.42686549e-02\\n1.83035672e-01 9.06133186e-03 4.52964962e-01 5.54563344e-01\\n3.33655357e-01 4.43002820e-01 3.47506404e-01 1.38530415e-02\\n5.08332014e-01 5.86554587e-01 4.80391204e-01 2.18267366e-01\\n4.91118878e-02 1.01991951e-01 6.60607591e-02 1.31986842e-01\\n3.01449805e-01 4.02481437e-01 1.16064169e-01 1.05228519e+00\\n4.01126266e-01 1.23936668e-01 6.64973319e-01 -6.24506831e-01\\n-3.59754980e-01 -7.28712305e-02 4.79474872e-01 -3.40455800e-01\\n-3.11607569e-02 5.54845445e-02 -1.79173484e-01 1.91193312e-01\\n-2.41364285e-01 -1.78781360e-01 -1.00161411e-01 2.65863597e-01\\n7.55129606e-02 -8.25018622e-03 -2.24792480e-01 -1.59826241e-02\\n-1.81215122e-01 -1.62647367e-01 -5.09552538e-01 2.91054486e-03\\n-2.37833008e-01 -2.32388318e-01 -1.66279852e-01 -6.99948967e-02\\n-2.14163393e-01 -4.57794935e-01 -1.27591521e-01 -3.47464392e-03\\n2.62957543e-01 -1.84498414e-01 -1.09867990e-01 -1.60784528e-01\\n2.95964807e-01 2.78353661e-01 5.40895104e-01 1.29721090e-02\\n-4.39452194e-02 -1.71186939e-01 -1.50675640e-01 1.18822522e-01\\n1.41475365e-01 1.66392073e-01 1.04544498e-01 3.69029045e-01\\n-2.47905090e-01 -1.00741833e-01 6.21569715e-02 3.67218375e-01\\n-4.99716789e-01 -1.53570920e-01 -1.47118658e-01 2.12147534e-01\\n-3.96226421e-02 1.21502995e-01 -1.53419912e-01 1.43974453e-01\\n-1.96815893e-01 -4.68812078e-01 3.35340858e-01 -1.80258989e-01\\n-1.56984881e-01 1.69272408e-01 1.90120324e-01 2.89518297e-01\\n-2.15707332e-01 8.77121836e-02 -2.53063627e-02 1.88329935e-01\\n8.51617232e-02 3.43941301e-01 -3.39311570e-01 -2.23651543e-01\\n-3.58946532e-01 4.79786582e-02 -2.92482972e-01 9.04521272e-02\\n-9.69715640e-02 3.01740915e-01 1.70857057e-01 5.14825247e-02\\n4.41886991e-01 2.15208940e-02 -1.53604358e-01 -2.65348077e-01\\n-2.00167745e-01 -1.66658074e-01 6.96220342e-03 -1.53192490e-01\\n9.90408882e-02 -2.38417327e-01 -2.66737603e-02 -8.00046027e-02\\n-1.10075206e-01 -3.97319824e-01 -7.23454729e-02 -7.31881112e-02]]',\n", + " 'Software Engineer - Front End, JavaScript, TypeScript, React, Angular, CSS, Lausanne One of our leading customers in the Lausanne area is looking for a Software engineer with strong Front End skills to join their R&D team. This business works with a range of companies to help create highly productive digital workplaces. Through a unique combination of real-time analytics, automation and more they can significantly improve the digital employee experience. In this role, you would be responsible for designing, implementing and validating solutions for new features in the Frontend department, whilst maintaining the highest code quality standards by using different metrics. You would help to bring high de-coupling of different frontend components by working with an agile incremental mindset. My customer is ideally looking for someone who has strong experience in Software Engineering with proven Front-end experience. This means a strong background in web technologies with Mobile technology experience being a plus. You would need to have a good programming background in one or more of the following : JavaScript, TypeScript, Java and scala Strong experience with Libraries and frameworks like Angular, jQuery with React being a big plus. Any experience or knowledge with CSS, micro-services, containers and REST is a plus If you are interested in this role and would like to work for an innovative, growing business, please apply as soon as possible and we shall arrange a call at a suitable time to discuss further. Jacob.webster@darwinrecruitment.com',\n", + " '[\"Innovation\"]',\n", + " '[\"Real Time Data\", \"Automation\", \"Agility\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Analytics\", \"TypeScript\", \"Scala (Programming Language)\", \"Component Object Model (COM)\", \"Digital Productions\", \"Maintainability\", \"Library\", \"Idealization\", \"Software Engineering\", \"Mobility\", \"React.js\", \"JQuery\", \"Digitization\", \"JavaScript (Programming Language)\", \"Coupling\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Validations\", \"Java (Programming Language)\"]',\n", + " \"['English', 'Hebrew', 'Azerbaijani', 'Polish']\"],\n", + " ['94',\n", + " 'saas & open-data development engineers',\n", + " 'Rolle',\n", + " '',\n", + " '',\n", + " '[[-8.84736553e-02 2.41919011e-01 6.12432182e-01 1.17697574e-01\\n6.16215467e-01 -6.42231181e-02 -1.31970704e-01 5.38616717e-01\\n-1.32668704e-01 -3.84660423e-01 3.77689451e-02 -3.60987097e-01\\n-6.04589283e-02 2.30093494e-01 1.72765180e-01 4.34548855e-01\\n1.83192998e-01 3.63055579e-02 -1.65740162e-01 2.67881513e-01\\n1.02243528e-01 -4.69515361e-02 3.48026693e-01 7.76968122e-01\\n3.32396507e-01 -1.38146371e-01 -6.98562413e-02 6.62104115e-02\\n-2.60016054e-01 -8.67173597e-02 4.17284906e-01 1.27730161e-01\\n-3.32209557e-01 -4.02919441e-01 1.16316535e-01 5.55696450e-02\\n-2.37498611e-01 -1.31318599e-01 -2.92957388e-02 1.12921357e-01\\n-5.80412507e-01 -3.28383714e-01 -8.09447616e-02 6.74306750e-02\\n-3.46572906e-01 -2.44941428e-01 9.31661949e-03 -1.86708309e-02\\n1.03522837e-01 1.03569023e-01 -5.14847040e-01 1.23196423e-01\\n-1.12720743e-01 -3.01769853e-01 2.20641196e-01 6.71360672e-01\\n6.81209117e-02 -4.06091511e-01 -4.51120973e-01 -3.24904770e-01\\n9.17415917e-02 -1.12229757e-01 6.13092072e-02 -3.56677771e-01\\n3.03087562e-01 -5.87963350e-02 1.64652560e-02 1.93191841e-01\\n-6.93414032e-01 2.38288473e-02 -2.33804762e-01 -1.47518933e-01\\n-3.15329462e-01 6.18902817e-02 -2.97626495e-01 -2.42492035e-01\\n-1.44667029e-01 4.33701217e-01 1.31305158e-01 1.11019388e-01\\n-1.50597528e-01 2.47312263e-01 -1.04015507e-01 3.70837659e-01\\n1.78832054e-01 3.69158030e-01 2.23606929e-01 3.22638959e-01\\n-3.73376667e-01 4.07187790e-01 1.23610720e-01 -2.65248090e-01\\n2.37748519e-01 1.79369792e-01 2.60767937e-01 -3.19731198e-02\\n1.99742496e-01 -3.80939171e-02 -3.38774532e-01 2.55127251e-01\\n1.66170642e-01 -4.89973366e-01 1.56059548e-01 -1.37409851e-01\\n-2.91071110e-03 -9.35484562e-03 5.29987477e-02 1.72150329e-01\\n-3.07736784e-01 3.31511438e-01 -9.75141581e-03 -1.83410212e-01\\n-6.16281517e-02 -4.30995047e-01 -1.41203254e-01 5.74008711e-02\\n4.13490981e-02 2.14751825e-01 2.29491144e-01 1.36725515e-01\\n2.72884190e-01 4.15500924e-02 2.00089261e-01 8.26575220e-01\\n-1.01523191e-01 1.22595973e-01 -2.15934291e-01 2.78273314e-01\\n1.04444064e-01 -3.02430749e-01 2.50487655e-01 2.11041972e-01\\n-4.98010106e-02 -9.42349657e-02 -2.13046059e-01 2.54772991e-01\\n2.46972758e-02 -2.07937703e-01 -2.51234353e-01 1.31882638e-01\\n6.11384101e-02 -4.97514218e-01 5.43788254e-01 8.31065923e-02\\n1.56877622e-01 -1.19561953e-02 -6.43652305e-02 -9.73375663e-02\\n-2.58714594e-02 2.39994973e-01 1.08834561e-02 1.40085697e-01\\n-2.57190377e-01 -1.34198502e-01 -2.20970795e-01 -5.64923510e-02\\n-4.84618783e-01 1.74180657e-01 -2.61870492e-03 -9.50599611e-02\\n2.02970713e-01 -4.20724228e-02 -2.46544674e-01 3.05305272e-01\\n-2.90376037e-01 -1.57171533e-01 1.00669160e-01 3.03827971e-01\\n-3.33609164e-01 1.24858879e-01 -4.12712581e-02 -2.41804451e-01\\n4.68797714e-01 1.51310444e-01 3.22709411e-01 5.13660572e-02\\n2.20861048e-01 -7.63877109e-02 1.25798220e-02 2.25749254e-01\\n-6.80219054e-01 3.12701553e-01 9.46367458e-02 -2.03057796e-01\\n2.09997013e-01 -9.98928025e-02 2.42035434e-01 -2.14426339e-01\\n1.05195731e-01 -1.19733736e-01 -3.10576200e-01 -2.43693173e-01\\n-2.50029624e-01 -1.11449482e-02 3.08066875e-01 -5.88151038e-01\\n-8.85183588e-02 -6.81326771e-03 -4.59642947e-01 -1.65356681e-01\\n8.05867016e-02 2.61000484e-01 8.85389671e-02 -6.61543459e-02\\n-1.77584067e-01 -4.06854153e-01 4.10916144e-03 -3.55987817e-01\\n-1.66966155e-01 -2.51327865e-02 -3.42965454e-01 1.76653370e-01\\n5.54593652e-02 -3.25680003e-02 -9.56261456e-02 -9.40824579e-03\\n-2.53544331e-01 7.96341375e-02 1.03581689e-01 6.38189167e-02\\n3.22969556e-01 1.15117999e-02 -2.08913103e-01 5.06031156e-01\\n-1.80207267e-01 6.66844666e-01 1.73181459e-01 -8.14377546e-01\\n4.54653323e-01 2.86863357e-01 -1.07230963e-02 -2.92135686e-01\\n6.37848198e-01 -3.75582367e-01 -8.85041524e-03 1.87342823e-01\\n-3.45231771e-01 -2.83567667e-01 1.51937395e-01 -2.25106969e-01\\n-2.58491546e-01 5.26574135e-01 1.42717451e-01 1.70898438e-01\\n2.14334786e-01 -3.03610891e-01 -6.75523803e-02 -8.32155868e-02\\n-1.54264092e-01 -3.83195549e-01 -5.73028982e-01 -6.55015782e-02\\n-1.25790730e-01 -3.36801231e-01 -1.47425279e-01 -4.62748349e-01\\n-9.27001834e-02 -4.03450519e-01 -2.65678197e-01 1.94546476e-01\\n2.13997319e-01 1.17348842e-01 -4.25942205e-02 1.22979367e-02\\n-9.76544321e-02 -6.76535070e-01 -8.29224885e-02 5.83552606e-02\\n4.43315655e-01 1.14559479e-01 2.77244925e-01 -1.28652334e-01\\n1.65955558e-01 6.53477192e-01 -1.71655521e-01 -3.07079434e-01\\n1.43087879e-01 2.78428346e-01 1.68222748e-02 -2.66479850e-02\\n3.05576324e-01 2.89223909e-01 -2.62924641e-01 2.34096106e-02\\n-1.91415884e-02 1.05153278e-01 2.40348488e-01 1.25994071e-01\\n-2.08174571e-01 -2.31274411e-01 7.44361654e-02 2.25542650e-01\\n-4.92674112e-01 -2.38332406e-01 5.76628327e-01 1.89323768e-01\\n1.72084689e-01 1.17254898e-01 1.26011491e-01 -1.54321223e-01\\n-6.75572753e-02 -1.61565736e-01 3.12038869e-01 1.21914983e-01\\n1.64828986e-01 4.59882095e-02 5.60047068e-02 -5.16435623e-01\\n-3.68510103e+00 -2.04643905e-01 1.15050748e-01 -1.39377043e-01\\n2.25725040e-01 -1.56521946e-01 1.81444034e-01 6.03725575e-02\\n-2.73012012e-01 8.79794806e-02 -3.70080732e-02 -2.01254904e-01\\n2.38678962e-01 1.67655721e-01 1.16300568e-01 3.35585594e-01\\n1.83759972e-01 -2.25459978e-01 -2.91225165e-02 4.49460089e-01\\n-1.60301223e-01 -7.04077303e-01 1.49113461e-01 9.12655378e-04\\n2.50079185e-01 1.75658807e-01 -2.26983413e-01 -1.39011815e-01\\n-1.59145996e-01 -2.46197671e-01 3.44767347e-02 -3.23523790e-01\\n-1.21446028e-01 3.80035192e-01 1.86080128e-01 -6.75055906e-02\\n9.49894413e-02 -3.48343015e-01 -2.33039573e-01 -3.63653660e-01\\n5.97209223e-02 -5.22657275e-01 2.36434229e-02 -5.33922091e-02\\n6.37204826e-01 -3.07620466e-01 2.31776059e-01 1.63289651e-01\\n1.16568752e-01 1.62227869e-01 1.37857303e-01 -4.81144451e-02\\n-1.36183485e-01 -3.80989969e-01 -4.40786481e-02 -2.41421148e-01\\n5.02203763e-01 4.73702669e-01 -9.83978510e-02 8.17500278e-02\\n8.24889317e-02 -1.00262851e-01 -4.55879271e-01 -3.48340064e-01\\n-1.40129134e-01 -1.73357055e-01 -6.14194393e-01 -3.46351296e-01\\n-7.30605051e-02 -2.31972501e-01 -1.35276854e-01 4.15082425e-01\\n-2.48057410e-01 -4.22986895e-01 -1.10082425e-01 -4.02447820e-01\\n4.98986453e-01 -8.01795423e-02 -8.19751695e-02 -1.77903876e-01\\n-3.06175083e-01 -4.51508850e-01 7.00418726e-02 5.60297556e-02\\n-1.37117594e-01 -2.48543158e-01 8.51005539e-02 -1.93365633e-01\\n-2.53347397e-01 -5.42094886e-01 4.91929710e-01 1.91351861e-01\\n3.88246030e-01 2.44157195e-01 3.35294843e-01 4.24858630e-02\\n2.36765862e-01 -1.30596459e-02 6.96509182e-02 -5.09429812e-01\\n-9.48905386e-03 1.50178969e-01 3.84478986e-01 -2.33487189e-01\\n-7.02647343e-02 5.68344593e-02 -2.13667691e-01 -8.05243030e-02\\n2.36583889e-01 -8.08320493e-02 1.11165784e-01 -1.00594193e-01\\n1.90627620e-01 -4.13162857e-01 -8.43930915e-02 1.21284667e-02\\n1.70217544e-01 6.26987398e-01 2.14895941e-02 -2.68700600e-01\\n-2.38965496e-01 6.31770074e-01 -1.30366474e-01 5.45745008e-02\\n-1.47044957e-01 8.67952630e-02 -2.01769859e-01 3.55974704e-01\\n-2.22864635e-02 -1.99969009e-01 -1.95707530e-01 -9.51852873e-02\\n-7.49362037e-02 2.82125622e-01 2.48614430e-01 8.22490677e-02\\n-3.91706564e-02 -4.08989966e-01 -7.48946741e-02 1.64007694e-01\\n2.83557922e-01 4.55308974e-01 6.03033565e-02 -1.59257561e-01\\n6.31423220e-02 3.57733667e-01 -2.71562994e-01 3.77787858e-01\\n-1.64666668e-01 1.26144394e-01 -6.03301287e-01 -3.17716330e-01\\n-3.47856581e-01 -2.79778987e-01 1.10520743e-01 2.84208000e-01\\n2.91715264e-01 -1.45216689e-01 1.40227275e-02 -4.95666593e-01\\n2.70140141e-01 7.16601461e-02 2.20344976e-01 1.04493171e-01\\n-5.39024696e-02 5.85934341e-01 1.65063702e-02 -6.02708682e-02\\n-2.38422398e-03 6.71600597e-03 -2.37283304e-01 -1.66704476e-01\\n5.08234948e-02 -4.92127687e-01 -2.53342599e-01 3.41810942e-01\\n1.59900710e-01 -4.24070001e-01 -2.68969983e-01 2.13717654e-01\\n7.50737786e-02 -2.27821589e-01 -3.24028492e-01 -6.61231298e-03\\n4.42440689e-01 1.45678639e-01 3.13613474e-01 -4.67149824e-01\\n-1.12178195e-02 7.18855634e-02 6.64622039e-02 4.66007918e-01\\n5.51713025e-03 -1.26265669e-02 -3.20396274e-02 -3.17635536e-01\\n4.47322935e-01 -1.50988325e-01 -1.68358177e-01 -3.33357863e-02\\n4.13880013e-02 -1.05511412e-01 -2.82702744e-01 6.04886040e-02\\n-1.16127856e-01 -3.03594172e-01 -6.26671612e-02 2.03018695e-01\\n1.83796227e-01 -2.95599774e-02 -5.65331638e-01 -3.25130701e-01\\n-2.91991740e-01 -2.10357551e-02 -2.09628493e-02 -3.67239952e-01\\n5.04770912e-02 -9.24000815e-02 -5.30682743e-01 2.08150864e-01\\n-1.51941746e-01 -7.75992721e-02 1.04340725e-01 9.44974422e-02\\n-3.33798975e-01 -1.01228140e-01 1.33059815e-01 2.66825765e-01\\n-3.21399778e-01 -3.43650460e-01 -6.54718503e-02 -7.51138926e-01\\n1.62022933e-01 8.36727098e-02 -1.15217365e-01 1.95982754e-01\\n-1.19607836e-01 -6.26854956e-01 6.60106540e-02 -2.65399069e-01\\n-2.20683664e-01 -2.26165712e-01 -3.15830946e-01 -3.78129840e-01\\n5.39277904e-02 6.49655312e-02 -2.36118942e-01 5.56347489e-01\\n-3.81152928e-01 2.56314486e-01 -7.96183646e-02 4.68397513e-02\\n1.72613356e-02 -2.08499610e-01 2.12732181e-01 -4.15350348e-01\\n-3.55430871e-01 -8.42158422e-02 -3.39894950e-01 -3.17642242e-01\\n-1.93699718e-01 -2.35852674e-01 8.16843566e-03 -7.09362775e-02\\n3.32020283e-01 1.07818626e-01 -1.32470295e-01 -2.26608410e-01\\n1.38176680e-01 -3.49356353e-01 1.51823595e-01 -4.59957086e-02\\n-8.19065049e-02 -1.00773856e-01 1.95760444e-01 6.50079250e-02\\n1.43086642e-01 -3.80741417e-01 2.65167475e-01 -4.40859646e-01\\n-3.23772490e-01 -2.09869534e-01 4.87224460e-02 -1.52072906e-02\\n1.62997901e-01 -5.91819942e-01 5.11376821e-02 1.73154294e-01\\n1.80089161e-01 -3.11979856e-02 3.00230235e-01 -8.87090936e-02\\n-1.05823286e-01 3.49404603e-01 -2.96149760e-01 4.22173403e-02\\n7.77066231e-01 1.09981678e-01 1.27380446e-01 2.90766448e-01\\n4.59263921e-02 1.73994601e-01 3.73097211e-01 9.55682322e-02\\n-8.30591545e-02 2.24705219e-01 1.89638421e-01 -4.55141872e-01\\n-1.00246727e-01 -4.87681068e-02 -1.74890444e-01 -5.11940002e-01\\n6.68703973e-01 3.47757995e-01 -4.26182002e-01 -2.17257574e-01\\n-1.64822757e-01 -1.07148722e-01 2.54087269e-01 -1.47430524e-01\\n-2.87761502e-02 -8.11498165e-02 4.20388699e-01 -3.27016115e-02\\n4.01613861e-01 5.60621262e-01 -1.66709617e-01 -1.95246652e-01\\n-9.10776332e-02 1.88937187e-01 1.67197540e-01 3.59142512e-01\\n-2.30399117e-01 4.22232628e-01 4.30427678e-02 1.42647967e-01\\n-6.48752749e-02 2.64208585e-01 8.52646455e-02 1.48579031e-01\\n1.23587020e-01 4.66456935e-02 4.33193743e-01 4.59638149e-01\\n2.26324245e-01 3.98176759e-01 3.37446034e-01 1.55141249e-01\\n3.14384997e-01 3.97590697e-01 2.74339944e-01 1.04928561e-01\\n7.24257603e-02 3.88792157e-02 1.23805352e-01 -5.80965504e-02\\n2.13122964e-01 4.22387719e-01 1.36452481e-01 8.81558657e-01\\n2.89816082e-01 2.85555631e-01 7.15859413e-01 -6.31844938e-01\\n-3.64297390e-01 -4.20741476e-02 4.30441201e-01 -4.68447536e-01\\n-1.09320067e-01 8.48481655e-02 -7.84363598e-02 2.46285096e-01\\n-4.01375502e-01 -1.64868042e-01 -2.24386752e-02 1.56669080e-01\\n-3.50819714e-02 -2.72874743e-01 -1.08179636e-01 1.21395297e-01\\n-6.77747205e-02 3.43343541e-02 -4.33771253e-01 -2.11069316e-01\\n-1.99396610e-01 -2.85828531e-01 -3.34845006e-01 -5.63718416e-02\\n-1.00726865e-01 -3.20283741e-01 -3.81402075e-02 -2.51298565e-02\\n2.81315476e-01 -3.21915485e-02 -7.25777224e-02 -1.84683770e-01\\n3.78435820e-01 1.55084729e-01 5.29626906e-01 -1.17577322e-01\\n2.12729409e-01 -1.15181141e-01 -1.74979821e-01 3.32621597e-02\\n1.71367526e-01 5.24305478e-02 -4.40387763e-02 2.06716865e-01\\n-2.54046082e-01 -1.07604459e-01 1.70961127e-01 1.84873760e-01\\n-4.32809472e-01 8.43826309e-02 -9.10341218e-02 1.38509825e-01\\n6.28625508e-03 1.02476016e-01 -2.58667499e-01 2.93790270e-02\\n-2.50913560e-01 -5.01246333e-01 3.05110931e-01 -3.14081937e-01\\n-7.71127418e-02 1.12704739e-01 3.78800213e-01 3.17042619e-01\\n-1.24185815e-01 8.15732330e-02 -4.62666750e-02 6.35132119e-02\\n3.96923572e-02 1.50955692e-01 -1.87291533e-01 -2.22348362e-01\\n-4.00322109e-01 9.14957225e-02 -1.98645294e-01 7.54148886e-02\\n4.54623438e-02 4.27334279e-01 1.41853422e-01 3.90491746e-02\\n3.97987515e-01 -1.40597627e-01 -2.23483115e-01 -2.70711303e-01\\n-2.68504232e-01 -6.37652203e-02 -1.10278949e-01 -5.43282293e-02\\n1.98959157e-01 -2.56295085e-01 -3.69881354e-02 -1.92600414e-01\\n-4.39222865e-02 -3.32336396e-01 6.70754462e-02 -1.82466760e-01]]',\n", + " \"You have hands-on experience developing, deploying or managing operating cloud-based services SAAS applications. You have been exposed to one or several IAAS & PAAS infrastructures such as AWS, GE-Digital Predix, IBM-BlueMix/Watson, VMware... You are experienced in finding and structuring and collecting different data streams (weather, finance, industrial signals, social events). You strongly believe automated machine learning and artificial intelligence coupled with big data can change the game in many industrial sectors. You worked open-data correlations with industrial signals, weather, events, calendar, financial markets, economic indicators. You applied it to real use case in operations and markets, for energy, utilities, industry, retail, transport or freight sectors. You cooperate with leading partners like GE - Digital, IBM-Analytics, Cisco-IOT with Industry leader customers in EU & US & Asia, like Arcelor, EDF, ALPIQ, ELIOR, METRO... Predictive Layer will bring you a unique opportunity to develop, deploy, or operate leading-edge predictive services for different customers worldwide, on different markets: Energy, Industry, retail, Catering, Transport and many more... At Predictive Layer, We cultivate a team-based environment where we strive for personal growth and a substantial contribution from all our team members. If you desire a career where you can drive innovation while working in an dynamic environment where innovative thinking, creativity and motivation are recognized and rewarded, then come and join us! Back to opportunities Send us your resume - Let's meet! careers@predictivelayer.com Position reference: #2017-OOE-003\",\n", + " '[\"Cooperation\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Innovation\", \"Socialization\", \"Positivity\"]',\n", + " '[\"Automation\", \"Collections\", \"Analytics\", \"Data Streaming\", \"Prediction\", \"Industrialization\", \"IBM Bluemix\", \"Energy Market\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Component Object Model (COM)\", \"Layering\", \"Weathering\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Cloud Operations\", \"Predix\", \"Financial Market\", \"Machine Learning Methods\", \"Finance\", \"Digitization\", \"Personalization\", \"Cisco Networking\", \"Location-Based Services\", \"Artificial Intelligence\", \"Big Data\", \"Coupling\", \"Operations Management\", \"Economic Indicators\", \"Cultivator\"]',\n", + " \"['English', 'Cornish', 'Esperanto', 'German', 'Bengali']\"],\n", + " ['9',\n", + " 'software engineer backend (m/w)',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.09588939e-01 3.53977472e-01 3.76809657e-01 -7.97372609e-02\\n3.86109412e-01 -2.18868315e-01 -4.56952713e-02 4.92449939e-01\\n-1.11506663e-01 -3.70523840e-01 -6.71701431e-02 -2.23877981e-01\\n-1.67698145e-01 5.79392575e-02 1.56673595e-01 3.58065605e-01\\n2.99305230e-01 1.31248459e-01 -2.14176953e-01 3.80015284e-01\\n8.25560838e-02 -8.59833360e-02 -2.83666942e-02 6.63735986e-01\\n3.03802878e-01 2.84423213e-02 -3.44149023e-02 -8.46213102e-02\\n-2.82238454e-01 -2.07219303e-01 3.54496300e-01 5.60077094e-03\\n-6.89964443e-02 -3.42943102e-01 9.19430554e-02 7.56266713e-02\\n-1.47413090e-01 3.53634655e-02 -2.36538257e-02 1.34321436e-01\\n-4.47326750e-01 -2.01077312e-01 2.11073399e-01 -2.72567337e-03\\n-1.31350085e-01 -3.98559481e-01 2.36390904e-01 -4.78912555e-02\\n1.13416471e-01 -1.35085965e-02 -6.85292482e-01 1.62851706e-01\\n-3.02356482e-01 -2.05522880e-01 4.12076473e-01 4.54081088e-01\\n5.75623102e-02 -4.85956311e-01 -4.84751880e-01 -3.34775031e-01\\n8.47035721e-02 -8.94995704e-02 9.58922505e-02 -3.74082088e-01\\n3.49215090e-01 1.19355589e-01 2.36970205e-02 3.73585284e-01\\n-8.09799850e-01 -5.26394472e-02 -1.97598115e-01 -3.75514068e-02\\n-4.56857324e-01 -2.21681312e-01 -2.82854706e-01 -3.14322151e-02\\n-1.06122546e-01 3.22846234e-01 -7.73782358e-02 6.90491349e-02\\n-1.70771867e-01 3.56611311e-01 -1.88694984e-01 4.72818404e-01\\n2.36417904e-01 1.88856408e-01 2.21740007e-01 3.82991165e-01\\n-3.92668724e-01 3.93701613e-01 2.18303025e-01 -2.79927939e-01\\n3.19552273e-01 4.04363163e-02 4.26905215e-01 2.52112560e-02\\n2.23859206e-01 1.09575085e-01 -2.54584134e-01 2.31614262e-01\\n2.15045586e-01 -2.50346452e-01 -1.31427601e-01 -1.45237774e-01\\n-3.65283340e-03 -2.59867101e-03 8.69962946e-03 2.37902790e-01\\n-1.93462595e-01 4.75418568e-01 2.51735002e-01 -1.21296667e-01\\n-1.05807282e-01 -5.26170552e-01 -9.73739401e-02 5.48740551e-02\\n-6.80509433e-02 4.88583595e-02 2.33428657e-01 1.22526482e-01\\n2.53239810e-01 6.17773682e-02 7.50501826e-02 8.69464695e-01\\n-8.79050121e-02 4.22566533e-02 -1.90922767e-01 3.82644087e-01\\n7.15236813e-02 -3.31572294e-01 8.63230154e-02 3.62228423e-01\\n1.20909728e-01 -1.52072728e-01 -1.78286970e-01 2.95595109e-01\\n-4.96928059e-02 -1.64546043e-01 -3.03301692e-01 8.57781693e-02\\n-1.41552716e-01 -5.21402597e-01 5.25555432e-01 8.79097655e-02\\n2.10065573e-01 6.48114234e-02 1.07701160e-01 -1.24945618e-01\\n-1.83591738e-01 1.93015814e-01 3.16089652e-02 2.11641788e-01\\n-2.81513840e-01 -2.94532567e-01 -2.26535931e-01 1.29564390e-01\\n-1.77221492e-01 1.18093163e-01 -6.23493381e-02 -1.13362864e-01\\n4.00769413e-01 5.84406070e-02 -3.93608004e-01 2.75057971e-01\\n-1.35527030e-02 7.91321620e-02 -1.57444581e-01 3.32714617e-01\\n5.11568934e-02 2.57208169e-01 8.17857832e-02 -7.16295317e-02\\n5.13015926e-01 5.89297712e-02 2.36508265e-01 -4.69877049e-02\\n3.98690253e-01 -1.14578038e-01 1.89958602e-01 5.21120355e-02\\n-6.23266220e-01 2.27140695e-01 -1.29885599e-02 -5.92732094e-02\\n1.01415418e-01 -5.70460281e-04 2.64854670e-01 -2.73588777e-01\\n8.12515691e-02 -1.38104349e-01 -4.48479056e-01 -3.08784008e-01\\n-2.87749738e-01 1.76270548e-02 4.56205338e-01 -3.95314127e-01\\n-1.41020164e-01 1.69671863e-01 -5.19107938e-01 -6.58958480e-02\\n2.44297341e-01 2.50703007e-01 1.05452664e-01 1.21496439e-01\\n-2.02490240e-01 -5.41628778e-01 6.07674569e-02 -4.79461104e-01\\n-4.31516707e-01 1.82647467e-01 -3.28045070e-01 1.81617320e-01\\n1.43425971e-01 -9.41272527e-02 -1.13464572e-01 7.02138469e-02\\n-2.49530360e-01 -1.33739248e-01 1.74917653e-01 9.55125391e-02\\n2.93781549e-01 -5.27568050e-02 -3.58724773e-01 5.17399967e-01\\n-1.64891437e-01 4.62800086e-01 7.47939125e-02 -8.52720559e-01\\n5.30289710e-01 4.17294741e-01 6.39415234e-02 -4.50185597e-01\\n5.95183194e-01 -3.10093790e-01 -5.67182302e-02 1.76095709e-01\\n-4.07054991e-01 -4.27787662e-01 2.47389525e-01 -1.25406101e-01\\n-2.52051502e-01 5.25710285e-01 5.02705090e-02 7.90504962e-02\\n2.63428062e-01 -3.12214673e-01 -1.89260647e-01 6.56605065e-02\\n-1.24992117e-01 -1.63137004e-01 -5.51456153e-01 6.42404780e-02\\n-6.81491867e-02 -5.13618588e-01 -1.45569310e-01 -3.61825168e-01\\n-2.03439265e-01 -3.91297013e-01 -3.26193660e-01 3.58578384e-01\\n1.61247373e-01 1.29636303e-01 -6.57431856e-02 1.28453150e-01\\n-1.29621506e-01 -5.99448323e-01 8.05152878e-02 1.30839869e-01\\n4.30480033e-01 1.23595923e-01 1.14451595e-01 -7.00612962e-02\\n-7.57485703e-02 5.73696971e-01 -3.06785762e-01 -2.34990969e-01\\n1.15763508e-01 2.11738825e-01 -1.06323715e-02 -1.43066451e-01\\n1.04536064e-01 3.24733496e-01 -3.21196645e-01 -4.10941467e-02\\n-1.43590420e-01 -2.91470364e-02 3.71725380e-01 -1.81908756e-01\\n-4.28511560e-01 -2.84574598e-01 -9.74958614e-02 1.76387012e-01\\n-5.44603467e-01 -2.27220550e-01 6.02471948e-01 2.76421964e-01\\n1.18041478e-01 1.94053158e-01 2.71325976e-01 -9.24557671e-02\\n-2.65710652e-01 -3.86517137e-01 2.88857937e-01 1.84291735e-01\\n1.37646988e-01 1.31242454e-01 -1.91350833e-01 -5.97491264e-01\\n-3.23715281e+00 -1.15003020e-01 2.48236299e-01 -2.41898566e-01\\n2.34865636e-01 -3.49950232e-02 9.82355773e-02 -4.53094244e-02\\n-2.67676234e-01 -3.48431319e-02 -1.99626416e-01 -1.26414761e-01\\n9.47018936e-02 3.65055621e-01 9.24764946e-02 1.63285449e-01\\n2.35818177e-01 -2.32232571e-01 7.57715479e-03 2.78240949e-01\\n-2.02137455e-01 -6.94799840e-01 1.78741083e-01 -1.16198801e-01\\n2.09937811e-01 3.84085059e-01 -2.76781678e-01 -1.25744343e-01\\n-1.59148708e-01 -2.15365320e-01 8.64176452e-02 -2.73608834e-01\\n-8.86897519e-02 1.92434788e-01 1.26364231e-01 -5.02105951e-02\\n7.23450407e-02 -3.90691012e-01 -1.41346902e-01 -5.60883105e-01\\n1.56694010e-01 -6.19566202e-01 8.97517651e-02 -1.65568754e-01\\n7.13032365e-01 -3.52395564e-01 5.41938432e-02 7.51003101e-02\\n1.73547879e-01 1.80168658e-01 -2.19061337e-02 1.23705296e-02\\n-3.22736800e-01 -3.54511946e-01 -8.05425420e-02 -2.66410023e-01\\n5.63354909e-01 4.19682980e-01 -2.48007834e-01 -3.39332931e-02\\n1.78986996e-01 -2.24188119e-01 -4.33510900e-01 -3.15909088e-01\\n-1.48620009e-01 -1.67560950e-01 -6.60619140e-01 -4.26278859e-01\\n-1.04835935e-01 -1.49283409e-01 -8.74210000e-02 7.15258658e-01\\n-3.07278872e-01 -3.85980248e-01 1.75549816e-02 -6.92957997e-01\\n1.69897854e-01 -2.14151651e-01 4.77288701e-02 -1.97633356e-01\\n-2.03085423e-01 -4.49166805e-01 3.89887504e-02 2.47536637e-02\\n-1.87829986e-01 -9.82045978e-02 8.72114301e-02 -1.13026634e-01\\n-2.75799125e-01 -5.53627670e-01 4.70937490e-01 1.54341623e-01\\n3.19041699e-01 1.69533432e-01 2.44624689e-01 -5.14727123e-02\\n3.97006959e-01 -5.11348397e-02 -6.32585883e-02 -4.03755069e-01\\n2.26712242e-01 8.70319605e-02 5.69442451e-01 -2.22122848e-01\\n2.43532844e-02 2.93975025e-01 -1.68566391e-01 -1.47208825e-01\\n4.66594398e-01 1.46925142e-02 8.75635818e-02 -2.32631937e-01\\n4.12977993e-01 -5.26539385e-01 -2.73449451e-01 2.03315839e-01\\n7.43526816e-02 6.20340049e-01 -1.21451903e-03 -4.36850518e-01\\n-1.50859818e-01 6.08619213e-01 -4.66704555e-02 -5.92083409e-02\\n-1.71394408e-01 1.64263368e-01 -1.66789517e-01 1.80495754e-01\\n1.04756765e-01 -1.66501135e-01 -2.85801381e-01 -7.95282423e-02\\n-7.58536905e-02 2.26842567e-01 1.56926945e-01 1.39817253e-01\\n-3.83481048e-02 -4.09494877e-01 -9.36418623e-02 1.27841875e-01\\n2.34541148e-01 4.52518046e-01 -1.40752690e-02 -2.23636061e-01\\n-3.01932842e-02 3.35671335e-01 -1.27867222e-01 1.83084950e-01\\n-2.32367977e-01 1.53489783e-01 -4.73929852e-01 -2.92540550e-01\\n-2.79559016e-01 -3.39252383e-01 -1.16810773e-03 2.38654613e-01\\n2.07027152e-01 1.63934287e-02 9.26687047e-02 -4.51065332e-01\\n2.44798183e-01 4.85716648e-02 2.10684657e-01 1.63453460e-01\\n7.79469460e-02 5.20148396e-01 -3.54029797e-02 -1.74611300e-01\\n-2.14245260e-01 1.46214180e-02 -2.46277764e-01 -1.10298149e-01\\n1.11780711e-01 -4.87949759e-01 -1.43235832e-01 3.88653129e-01\\n1.14982188e-01 -1.66046306e-01 -2.55609989e-01 1.82679668e-01\\n6.69051753e-03 -2.69823492e-01 -2.38607332e-01 9.91296116e-03\\n2.70472854e-01 4.08974551e-02 2.92255193e-01 -4.06071097e-01\\n-3.60555761e-02 2.41898671e-02 -3.37772332e-02 4.38061535e-01\\n1.60126671e-01 -4.90090623e-03 -1.53987750e-01 -1.99865669e-01\\n4.15145010e-01 -1.45158798e-01 -1.09175518e-01 -4.97223362e-02\\n1.60733119e-01 -1.64842680e-01 -4.35482979e-01 5.91527186e-02\\n-1.86189398e-01 -1.21297650e-01 1.32337153e-01 -4.63738199e-03\\n7.87262842e-02 1.23606093e-01 -5.11792243e-01 -2.25079089e-01\\n-3.12994987e-01 -6.02369010e-02 1.15266196e-01 -5.36304295e-01\\n4.07283660e-03 2.28858609e-02 -6.21369123e-01 2.09775418e-01\\n-2.09053442e-01 -5.88272363e-02 1.64252281e-01 1.22789100e-01\\n-4.07638580e-01 -6.40896931e-02 9.16406140e-02 2.15890318e-01\\n-3.46147209e-01 -3.15475821e-01 -6.20566569e-02 -1.05058849e+00\\n1.97028711e-01 -1.41107932e-01 -2.64688641e-01 4.49682698e-02\\n1.85613683e-03 -6.71989620e-01 5.24471514e-02 -3.37515563e-01\\n-8.42871591e-02 1.18729517e-01 -2.64562547e-01 -4.26228821e-01\\n9.89981815e-02 -1.25239104e-01 -3.32172215e-01 4.63592678e-01\\n-5.05871892e-01 3.00040126e-01 -4.50361781e-02 9.09817517e-02\\n-7.43934885e-02 -4.00205731e-01 1.50269806e-01 -4.20744747e-01\\n-5.04953861e-01 -2.21894041e-01 -3.48518521e-01 -2.79601127e-01\\n8.39479640e-02 -3.63103926e-01 -8.99961814e-02 1.45294532e-01\\n2.70731360e-01 8.78804848e-02 -6.07641041e-02 -1.47595122e-01\\n7.47060552e-02 -4.82307881e-01 3.56825553e-02 -6.93390593e-02\\n-6.77431561e-03 -1.29935756e-01 2.44944811e-01 7.23651648e-02\\n1.36398122e-01 -3.64098936e-01 4.48227257e-01 -2.95706004e-01\\n-3.81368726e-01 -6.48868531e-02 5.98115027e-02 -2.00187598e-04\\n2.21697047e-01 -6.67186618e-01 -2.56842896e-02 3.96792412e-01\\n1.84273988e-01 1.21751996e-02 1.18582964e-01 -6.15130626e-02\\n1.27690267e-02 2.98362881e-01 -4.12272006e-01 8.37142020e-02\\n7.85624146e-01 1.09577581e-01 6.75976882e-03 2.25301832e-01\\n9.99752507e-02 3.36705416e-01 5.17287791e-01 -3.19842957e-02\\n-1.05091095e-01 3.12191099e-01 8.27515572e-02 -6.58817947e-01\\n-1.54512107e-01 2.76920479e-02 -1.53029546e-01 -2.98763275e-01\\n6.85680270e-01 3.71039033e-01 -3.88709873e-01 -2.31683359e-01\\n-1.06425442e-01 -1.40825063e-01 2.67355412e-01 -8.34991261e-02\\n2.50079092e-02 -1.81745961e-01 5.01077592e-01 8.33394900e-02\\n3.11581939e-01 5.27889848e-01 -1.69223011e-01 -3.54060262e-01\\n-8.34070742e-02 1.12947732e-01 3.70981544e-02 3.41636181e-01\\n-1.45053893e-01 1.80296868e-01 -2.33031474e-02 2.19070077e-01\\n-1.91727579e-01 9.31735486e-02 -8.22807942e-03 1.77548468e-01\\n1.82012275e-01 8.27697292e-02 4.63144898e-01 3.39797169e-01\\n3.20627600e-01 5.61908960e-01 2.78198332e-01 1.41125888e-01\\n4.92009610e-01 4.79488701e-01 5.00399947e-01 9.56353396e-02\\n1.51317543e-03 1.36053205e-01 1.47854343e-01 -3.41123603e-02\\n4.35661644e-01 4.09750640e-01 1.55200481e-01 8.77741933e-01\\n2.31613830e-01 3.12919527e-01 7.15448976e-01 -6.67473197e-01\\n-3.44301283e-01 1.24895893e-01 4.03651059e-01 -4.43001390e-01\\n-4.13868539e-02 8.50534886e-02 -2.07440451e-01 2.44275540e-01\\n-5.27294219e-01 -1.37676135e-01 -1.80673730e-02 1.15240984e-01\\n5.43654598e-02 -6.07110560e-02 -2.46413648e-01 -1.94499809e-02\\n-1.55377597e-01 -1.19439907e-01 -3.55133384e-01 -1.04684137e-01\\n-1.47682443e-01 -9.00456160e-02 -5.53277992e-02 -1.54165640e-01\\n-1.62107591e-02 -4.26176608e-01 -1.77523434e-01 4.41393964e-02\\n3.80702049e-01 3.94175341e-03 7.15221912e-02 -1.28922880e-01\\n2.45743945e-01 3.62213939e-01 6.21322811e-01 -6.13933913e-02\\n1.47941127e-01 -2.88176119e-01 -1.56848311e-01 1.40819401e-01\\n1.07798681e-01 7.40610212e-02 8.40305462e-02 3.53829861e-01\\n-3.36206228e-01 -7.48514384e-02 1.82488695e-01 4.57779020e-01\\n-3.93527806e-01 -4.89911325e-02 -7.02601150e-02 1.60846427e-01\\n8.22223127e-02 1.46882579e-01 -2.57787228e-01 1.27619103e-01\\n-2.86425412e-01 -4.97772187e-01 4.37390059e-01 -1.76774055e-01\\n-3.99529785e-02 7.34976456e-02 3.12458992e-01 1.91788912e-01\\n-2.25058958e-01 -4.58106399e-02 4.65021469e-02 2.58296281e-01\\n5.60588576e-02 3.32565218e-01 -2.31827855e-01 -1.51168138e-01\\n-2.81095624e-01 1.79059610e-01 -1.15645371e-01 6.17654026e-02\\n-8.25238004e-02 3.97589296e-01 9.61149707e-02 4.20853123e-02\\n3.95510256e-01 6.57555610e-02 -2.39014030e-01 -1.87476799e-01\\n-2.81010628e-01 -2.81814039e-01 -1.84999555e-02 4.88361518e-04\\n2.02127323e-01 -3.93764436e-01 -1.19642779e-01 -1.46853864e-01\\n-7.59425461e-02 -3.28372210e-01 -8.23235810e-02 5.68337776e-02]]',\n", + " 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customized solutions based on Python (Django) and/or PHP Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of Python or PHP Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Modern technologies such as DevOps, Containers, CI/CD are no foreign words. Willingness to assume responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Python (Programming Language)\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Hosting\", \"Django (Web Framework)\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"Functional Programming\", \"Additives\", \"Rust (Programming Language)\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English', 'Greek', 'Mongolian', 'Cornish']\"],\n", + " ['75',\n", + " 'backend software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.96146512e-01 2.25685984e-01 3.81386131e-01 6.31073164e-03\\n5.44051468e-01 -2.66359210e-01 9.79871210e-03 3.68729413e-01\\n-2.57958770e-01 -3.63048911e-01 -4.27846722e-02 -2.44650826e-01\\n-1.89992860e-01 7.98621103e-02 1.31351292e-01 3.88559461e-01\\n2.86206812e-01 1.14335604e-01 -2.94916004e-01 3.70017171e-01\\n5.59200607e-02 -2.97922634e-06 -3.94451544e-02 7.66554117e-01\\n3.45010400e-01 -1.57250445e-02 -1.05865642e-01 4.27433215e-02\\n-2.50761896e-01 -2.51972258e-01 3.91722500e-01 9.16388854e-02\\n-6.79150671e-02 -2.71345764e-01 7.47358724e-02 2.99406657e-03\\n-1.73540786e-01 3.67118083e-02 -3.28949690e-02 1.02406882e-01\\n-3.89293969e-01 -3.86299521e-01 -1.31230317e-02 8.90230536e-02\\n-2.07433581e-01 -2.27711007e-01 6.55482039e-02 -6.68610036e-02\\n9.57257301e-02 -3.67352106e-02 -5.76359332e-01 3.58721346e-01\\n-3.02708954e-01 -2.23158300e-01 3.07890981e-01 4.61729437e-01\\n8.36970378e-03 -5.25690913e-01 -3.13287854e-01 -2.96148419e-01\\n-6.46865815e-02 -2.27823809e-01 6.36532456e-02 -2.82713115e-01\\n2.77987897e-01 -6.69266284e-02 1.76805593e-02 3.48076642e-01\\n-8.05531442e-01 -1.11406527e-01 -2.55701691e-01 -1.67581066e-02\\n-3.27168614e-01 -1.13382816e-01 -2.97376007e-01 -8.67974013e-02\\n-2.49279151e-03 2.98043609e-01 2.22778530e-03 4.50644307e-02\\n-1.84759200e-01 3.27564687e-01 -8.17147568e-02 1.87909037e-01\\n2.71823198e-01 1.37041613e-01 1.96846083e-01 3.55800182e-01\\n-3.99252176e-01 4.74914730e-01 6.22444972e-02 -2.50799268e-01\\n2.52674788e-01 1.17200777e-01 5.10781288e-01 7.12232888e-02\\n-1.94422137e-02 1.98808089e-01 -2.40859404e-01 1.83766812e-01\\n1.71783924e-01 -3.66276562e-01 7.25136651e-03 -1.45601839e-01\\n-1.04529589e-01 6.37285784e-02 9.36795250e-02 3.36586028e-01\\n-2.25237370e-01 4.13727045e-01 2.51422554e-01 -1.96289316e-01\\n-6.28880039e-02 -4.50352252e-01 -1.46044105e-01 -5.16299391e-03\\n-1.47846431e-01 1.73527420e-01 3.10440302e-01 1.35391027e-01\\n2.32913375e-01 5.63149787e-02 2.12322995e-01 1.00176609e+00\\n-5.54031990e-02 7.29359314e-02 -2.05411926e-01 2.46166497e-01\\n2.39893049e-01 -2.51254976e-01 1.67283967e-01 3.81592065e-01\\n1.24794915e-01 -2.59980410e-02 -2.27838188e-01 4.07280207e-01\\n-2.19630346e-01 9.61505715e-03 -4.11413938e-01 1.15846552e-01\\n-1.34364828e-01 -4.82871950e-01 6.40055299e-01 2.36462861e-01\\n2.59038001e-01 1.04006231e-01 5.25620468e-02 -1.34524792e-01\\n-5.92462122e-02 2.71504462e-01 5.36241904e-02 2.06059739e-01\\n-3.08684468e-01 -1.45982787e-01 -1.20966882e-01 2.70433098e-01\\n-2.19325796e-01 6.27185628e-02 -9.34070647e-02 -9.61261839e-02\\n2.77041972e-01 1.88584568e-03 -3.76766801e-01 1.64261207e-01\\n-1.43390864e-01 -2.16381237e-01 -1.38773814e-01 3.73514354e-01\\n-2.87047643e-02 2.76391625e-01 3.41875032e-02 -5.18735051e-02\\n5.54426432e-01 1.27705857e-01 8.06537420e-02 -5.00559509e-02\\n2.73152024e-01 -1.25188500e-01 2.98683941e-01 1.25220373e-01\\n-6.48123622e-01 2.48765215e-01 4.50515142e-03 -1.50381878e-01\\n4.97784019e-02 1.08504236e-01 2.25529596e-01 -3.15021932e-01\\n-1.19738221e-01 -1.59779355e-01 -3.98117065e-01 -2.34913692e-01\\n-3.39261681e-01 1.02690987e-01 3.87645006e-01 -2.83121347e-01\\n-2.73953099e-02 3.61904688e-02 -4.11414802e-01 -1.12460248e-01\\n1.21409439e-01 2.20011428e-01 -7.40451680e-04 9.41236019e-02\\n-5.17403968e-02 -6.24350309e-01 -3.07392571e-02 -5.67003191e-01\\n-6.13892853e-01 6.51752353e-02 -3.42500508e-01 2.11026967e-01\\n-2.21276321e-02 6.84335306e-02 -1.22847997e-01 2.22263083e-01\\n-2.89490104e-01 1.62976068e-02 1.55959263e-01 1.54940382e-01\\n1.63378343e-01 -5.18211611e-02 -5.00666440e-01 4.99712616e-01\\n-2.51869828e-01 5.72678685e-01 2.04769090e-01 -7.59468317e-01\\n6.22770548e-01 2.10076243e-01 -1.54065583e-02 -4.32466447e-01\\n4.36771423e-01 -3.70565772e-01 -5.43131083e-02 6.75043166e-02\\n-2.75733978e-01 -2.70287097e-01 3.29187512e-01 -2.45832354e-01\\n-3.28681290e-01 5.30238688e-01 1.78291693e-01 4.64592949e-02\\n2.40959570e-01 -3.21133345e-01 -7.51918852e-02 1.33497074e-01\\n-6.52342066e-02 -1.81331709e-01 -3.61952662e-01 1.13359563e-01\\n-1.38990909e-01 -5.04113317e-01 -1.07806183e-01 -4.39256847e-01\\n-1.59562483e-01 -3.12495440e-01 -2.96111971e-01 4.28421110e-01\\n1.62175849e-01 1.31733015e-01 9.25084502e-02 -7.87500571e-03\\n-1.09921664e-01 -7.13658750e-01 -9.95457917e-02 8.01472589e-02\\n5.26105702e-01 1.61516771e-01 2.26015765e-02 -5.90045042e-02\\n-1.09903337e-02 4.90845084e-01 -3.22321862e-01 -4.08838034e-01\\n7.56429657e-02 2.12865382e-01 3.95328552e-02 -1.46358341e-01\\n5.99788390e-02 4.18535233e-01 -2.21491531e-01 8.05787966e-02\\n-1.20871782e-01 -1.07351147e-01 3.83747309e-01 1.01165185e-02\\n-3.32630038e-01 -2.19757631e-01 -6.85275868e-02 1.28504485e-01\\n-5.46890259e-01 -1.45852864e-01 5.15477300e-01 2.78362602e-01\\n2.34046727e-01 2.41533622e-01 2.57811844e-01 -1.21555634e-01\\n-1.60838127e-01 -3.27941120e-01 1.52987689e-01 1.83056548e-01\\n1.36702657e-02 1.16857871e-01 -1.61256477e-01 -5.82535803e-01\\n-3.53865886e+00 -5.25070764e-02 2.33940259e-01 -2.33232975e-01\\n2.22787201e-01 1.93664432e-02 -2.11348711e-03 -2.77434513e-02\\n-3.89675677e-01 2.73402091e-02 -2.74592936e-01 -1.61136702e-01\\n7.54935816e-02 2.99658746e-01 7.66612887e-02 1.68919444e-01\\n1.46122158e-01 -2.01155603e-01 -1.75282300e-01 2.98287570e-01\\n-1.26963273e-01 -6.89685702e-01 1.76773161e-01 2.60658702e-03\\n1.78158760e-01 2.33466223e-01 -3.10038984e-01 -5.44228815e-02\\n-1.00545384e-01 -2.86617875e-01 -1.20354727e-01 -1.95067689e-01\\n-2.18074247e-01 2.56595016e-01 1.47746578e-01 -7.74799958e-02\\n-4.11737561e-02 -2.97930509e-01 -1.16281152e-01 -4.83958364e-01\\n1.30276039e-01 -6.21900797e-01 -1.19844405e-02 -8.96313488e-02\\n7.17292249e-01 -2.75509953e-01 2.14505062e-01 -2.74955179e-03\\n1.12558760e-01 1.26052022e-01 -3.29398587e-02 -1.33748259e-02\\n-1.94945335e-01 -2.86627859e-01 1.36436755e-02 -1.69811055e-01\\n4.45547312e-01 4.89085972e-01 -2.04414487e-01 2.03414517e-03\\n1.39567658e-01 -3.45959991e-01 -2.43075639e-01 -2.90258735e-01\\n-1.47194445e-01 -2.39982158e-01 -6.97500825e-01 -4.12387908e-01\\n-1.01254918e-01 -9.95859951e-02 -2.19648242e-01 6.51868820e-01\\n-2.63530791e-01 -5.37128031e-01 5.46800494e-02 -5.96572042e-01\\n7.01377019e-02 -2.20030382e-01 7.46550113e-02 -1.37784168e-01\\n-2.57477760e-01 -5.15490830e-01 2.98223142e-02 -9.03870165e-02\\n-1.69783309e-01 -1.73673272e-01 -9.51103419e-02 -2.12532490e-01\\n-2.91603178e-01 -3.11852276e-01 3.59889954e-01 1.92676261e-01\\n2.99908549e-01 1.62064180e-01 3.21541339e-01 1.10873409e-01\\n1.86296135e-01 -3.91465910e-02 7.89720044e-02 -2.77826399e-01\\n1.43261954e-01 -1.19530253e-01 6.85186267e-01 -2.48210818e-01\\n-6.71043480e-03 2.73477644e-01 -1.67891324e-01 -1.31178796e-01\\n4.39723670e-01 2.57814024e-02 4.08895500e-03 -1.92016259e-01\\n3.92300397e-01 -5.71952701e-01 -2.36913264e-01 1.18917905e-01\\n1.06494457e-01 7.50011206e-01 6.28736243e-02 -3.96635413e-01\\n-3.91471565e-01 5.61642945e-01 -1.34723172e-01 -8.79992545e-02\\n-1.52301759e-01 1.86250597e-01 -1.59833223e-01 1.28825203e-01\\n1.33469969e-01 -2.56227314e-01 -1.27534226e-01 -7.03896657e-02\\n-6.91740960e-02 1.35372534e-01 2.89200723e-01 9.54434276e-02\\n-6.79581165e-02 -3.19717824e-01 -2.44971946e-01 1.60366073e-01\\n1.46037072e-01 3.29782337e-01 1.54318437e-01 -2.69396722e-01\\n-1.55062735e-01 2.95448422e-01 -1.22497998e-01 1.88510805e-01\\n-1.00630008e-01 4.53787856e-02 -4.60060000e-01 -1.58033416e-01\\n-2.07865193e-01 -3.84061694e-01 1.03902020e-01 3.87394041e-01\\n8.14171210e-02 -1.85729917e-02 1.08406998e-01 -4.39084888e-01\\n4.03984547e-01 1.12623937e-01 2.16721550e-01 8.09297040e-02\\n4.04496081e-02 3.99033725e-01 -6.57609403e-02 -9.03673097e-02\\n-1.71036452e-01 2.01591365e-02 -2.70080090e-01 -1.84027478e-01\\n5.80558591e-02 -3.99814934e-01 -9.87318978e-02 4.24282700e-01\\n1.16935588e-01 -2.35709593e-01 -2.62416065e-01 1.97747558e-01\\n1.11613661e-01 -2.33696416e-01 -1.56210333e-01 -1.32447407e-01\\n2.14814186e-01 4.21500988e-02 2.73926854e-01 -3.72478634e-01\\n-1.63674355e-01 4.51076822e-03 -9.82293263e-02 4.54779059e-01\\n1.24669820e-02 9.87216681e-02 -2.08241060e-01 -1.51800901e-01\\n3.84840637e-01 -1.35899052e-01 -4.86892499e-02 -4.65612710e-02\\n7.25345984e-02 -1.06761351e-01 -4.60397601e-01 2.46398039e-02\\n-3.00988816e-02 -7.92926401e-02 6.58417046e-02 -5.11334501e-02\\n1.80184379e-01 8.64026025e-02 -4.99750733e-01 -3.37446243e-01\\n-3.93075258e-01 -1.58610314e-01 1.84359282e-01 -2.58413464e-01\\n6.51117507e-03 -1.44290239e-01 -6.21417046e-01 2.01031253e-01\\n-3.91525120e-01 4.89966944e-02 1.47439882e-01 9.22599509e-02\\n-3.18078399e-01 8.34538136e-03 8.11690316e-02 1.94992110e-01\\n-1.56328559e-01 -1.06334642e-01 -6.84863031e-02 -1.00273967e+00\\n2.39501759e-01 -2.39953492e-02 -5.01109473e-02 -2.35969573e-03\\n-4.75207251e-03 -7.04596817e-01 6.74694628e-02 -3.24622959e-01\\n7.24786334e-03 4.78375182e-02 -1.91196188e-01 -3.15906167e-01\\n1.29918709e-01 -1.55668318e-01 -2.76734680e-01 3.40826094e-01\\n-4.97100681e-01 1.56361789e-01 9.99132637e-03 1.24302238e-01\\n3.90209779e-02 -3.28728914e-01 1.79683551e-01 -3.74637753e-01\\n-3.78247947e-01 -1.76550090e-01 -2.22631887e-01 -3.12925160e-01\\n4.49395999e-02 -3.48209918e-01 -2.08637148e-01 1.06192246e-01\\n3.15708786e-01 6.72188699e-02 -1.36586234e-01 -2.93032825e-01\\n-7.12274387e-02 -4.72314179e-01 2.50363618e-01 -1.86917022e-01\\n5.63730560e-02 -3.71665731e-02 2.40359381e-01 1.33037359e-01\\n4.64835353e-02 -3.87725025e-01 3.88629586e-01 -3.53516430e-01\\n-2.89711386e-01 3.33548291e-03 3.25403772e-02 4.99740206e-02\\n2.57377356e-01 -6.23883665e-01 7.37987971e-03 2.18040749e-01\\n9.32115689e-02 6.99808225e-02 2.58332789e-01 5.80880418e-03\\n-1.15301207e-01 2.25950524e-01 -2.87278354e-01 8.67727995e-02\\n7.54065871e-01 1.61999524e-01 9.46024284e-02 1.52283698e-01\\n1.48484573e-01 3.84318531e-01 5.36778271e-01 2.17558220e-02\\n4.64519346e-03 2.22276032e-01 -6.29292568e-03 -4.94863868e-01\\n-1.00053661e-01 -6.29699528e-02 -1.61775336e-01 -2.98902482e-01\\n5.68166614e-01 4.07394856e-01 -4.23182547e-01 -2.71510661e-01\\n6.65159822e-02 -7.59990439e-02 3.11885595e-01 3.58162075e-02\\n3.34598981e-02 -1.87891349e-01 5.13635039e-01 -1.16528012e-02\\n2.79682100e-01 6.27047002e-01 -1.38059944e-01 -4.31816071e-01\\n-1.30976960e-01 1.85184613e-01 6.16035014e-02 5.02908170e-01\\n-1.11100718e-01 2.22501397e-01 -5.89813069e-02 1.21240998e-02\\n9.24969558e-03 2.38774836e-01 1.73292637e-01 1.14967421e-01\\n1.82844222e-01 6.59905225e-02 2.92303056e-01 6.04145467e-01\\n1.31791711e-01 5.43202102e-01 3.58735502e-01 6.58187419e-02\\n2.88298935e-01 6.31099224e-01 4.47781831e-01 2.47161061e-01\\n6.90274835e-02 1.94426149e-01 9.28051025e-02 -1.40974417e-01\\n4.09494728e-01 3.35055977e-01 2.37639770e-01 8.94953966e-01\\n3.76655608e-01 2.06508011e-01 7.90702522e-01 -6.95942461e-01\\n-3.39136571e-01 1.22824386e-01 4.27526295e-01 -2.06764847e-01\\n-1.12134710e-01 6.62854463e-02 -1.89896703e-01 3.23662549e-01\\n-4.59862262e-01 -9.07356143e-02 1.61180925e-02 -4.31619436e-02\\n6.76198900e-02 -5.55598699e-02 -1.57312319e-01 -3.97852995e-02\\n-1.96500078e-01 -7.31067955e-02 -2.48670623e-01 -1.65038571e-01\\n-3.46983284e-01 5.32180024e-03 -1.46576539e-01 -2.05453575e-01\\n-7.81072304e-02 -4.58009094e-01 -7.53434598e-02 7.55573288e-02\\n3.09527397e-01 -7.06459209e-02 2.18218714e-02 -8.75489786e-02\\n1.97565377e-01 3.58882308e-01 5.26761174e-01 -1.00220099e-01\\n1.62169889e-01 -1.11063801e-01 -2.30599523e-01 3.94183025e-02\\n2.00516265e-03 6.67308981e-04 9.63001996e-02 3.67192984e-01\\n-3.16834986e-01 -4.78394330e-02 5.36589772e-02 3.52561891e-01\\n-3.81102294e-01 -1.05050661e-01 -1.42782465e-01 2.84201324e-01\\n1.79798547e-02 1.44495070e-01 -2.83834726e-01 -3.74649279e-02\\n-2.04619929e-01 -4.52179700e-01 4.31283027e-01 -2.28166133e-01\\n-1.03941590e-01 2.60026276e-01 3.07673335e-01 1.97034329e-01\\n-2.89613932e-01 4.43160348e-02 -1.08998358e-01 2.99963772e-01\\n2.98879622e-03 4.13744360e-01 -2.30122894e-01 -1.20121427e-01\\n-2.34736517e-01 2.24266812e-01 -1.74272120e-01 1.34532943e-01\\n-1.23346359e-01 2.68748790e-01 2.04904929e-01 -7.65443668e-02\\n3.33752960e-01 1.11883422e-02 -2.88367152e-01 -1.34824961e-01\\n-1.43094748e-01 -1.96044683e-01 1.22624626e-02 -4.52133603e-02\\n2.08444059e-01 -3.33552301e-01 -4.24384251e-02 8.19940120e-03\\n-4.23172973e-02 -3.11812639e-01 -1.73182979e-01 5.89172244e-02]]',\n", + " \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting large scale micro-service based distributed systems with high transaction volume. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: a Bachelor's or higher degree in technical field of study or equivalent practical experience hands-on experience with highly concurrent production grade systems knowledge of at least one modern programming language, such as Go, Java, C++ and Scala, etc. excellent troubleshooting and creative problem-solving abilities excellent written and oral communication and interpersonal skills Ideally: experience with systems for automating deployment, scaling and management of containerised applications, such as Kubernetes and Mesos experience with big data technologies, such as Kafka, Spark, Storm, Flink and Cassandra experience with encryption and cryptography standards Benötigte Skills JAVA Python Englisch Scala Kryptografie / Verschlüsselung Go\",\n", + " '[\"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " '[\"Distributed File Systems\", \"Scale (Map)\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Flink\", \"Apache Cassandra\", \"KM Programming Language\", \"Encryption\", \"Cryptography\", \"Python (Programming Language)\", \"Maintainability\", \"Location-Based Services\", \"Java (Programming Language)\", \"Idealization\", \"Big Data\", \"Apache Mesos\"]',\n", + " \"['English', 'Catalan', 'Sundanese', 'Turkmen', 'Portuguese']\"],\n", + " ['88',\n", + " 'full stack software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.29723415e-01 2.82175958e-01 5.05872488e-01 3.07175005e-03\\n5.28041601e-01 -2.51381129e-01 4.29131910e-02 4.42291528e-01\\n-4.71199378e-02 -4.53217566e-01 3.71953733e-02 -1.95505157e-01\\n-1.22245513e-01 4.21867035e-02 7.03995451e-02 2.28203252e-01\\n2.61599898e-01 2.23329335e-01 -2.62582302e-01 3.67197782e-01\\n9.93298143e-02 -9.05440301e-02 -3.97230685e-03 6.45791590e-01\\n3.90364528e-01 1.93100702e-02 -7.54290149e-02 -1.23295806e-01\\n-3.98110807e-01 -2.99601078e-01 3.02430511e-01 9.44134817e-02\\n2.87044980e-02 -4.02330071e-01 3.21280137e-02 4.08044923e-03\\n-1.58390775e-01 2.24436005e-03 -7.23523796e-02 3.13852161e-01\\n-4.60026443e-01 -3.06600273e-01 1.31599754e-01 4.16262187e-02\\n-1.11805141e-01 -3.53266299e-01 1.41960541e-02 -6.94910157e-03\\n1.04344890e-01 2.00307257e-02 -5.41645527e-01 3.01067978e-01\\n-1.42413110e-01 -2.65134752e-01 2.82112986e-01 6.28392696e-01\\n2.61600912e-02 -5.71503758e-01 -3.90170842e-01 -3.13878000e-01\\n3.43811437e-02 -1.89398155e-01 -2.97260657e-02 -1.58778325e-01\\n2.45714709e-01 1.22598365e-01 1.36427492e-01 3.69397193e-01\\n-8.19257975e-01 3.51422653e-02 -8.00639912e-02 -1.76868308e-02\\n-2.83822268e-01 -1.63458660e-01 -1.85572952e-01 -1.25690401e-01\\n-1.02880381e-01 4.49278325e-01 -2.86809411e-02 9.76346061e-02\\n-1.46473587e-01 2.24424362e-01 -1.98093489e-01 3.86331201e-01\\n1.92628860e-01 9.32635963e-02 1.67282641e-01 3.53734434e-01\\n-3.17023546e-01 3.55525523e-01 1.62744865e-01 -2.07223505e-01\\n3.03006768e-01 6.33762926e-02 5.60049057e-01 2.16492340e-02\\n1.40644293e-02 1.64483860e-01 -2.18872219e-01 3.66370171e-01\\n2.06354618e-01 -2.36247882e-01 2.21597385e-02 -9.48626474e-02\\n-1.38487592e-01 -5.68807684e-02 -7.78488591e-02 1.94410130e-01\\n-1.53795034e-01 4.90505546e-01 1.40747398e-01 -1.32331088e-01\\n-6.83867335e-02 -5.13043940e-01 -6.95893466e-02 -5.70687465e-02\\n1.05178781e-01 2.19821379e-01 2.05429330e-01 4.24333215e-02\\n1.81917787e-01 1.23625912e-01 1.09165587e-01 9.46541905e-01\\n-3.15199457e-02 1.15251310e-01 -2.83293456e-01 2.31832668e-01\\n1.96120784e-01 -1.86946273e-01 6.05643131e-02 3.10488909e-01\\n1.21185608e-01 -7.39017054e-02 -1.20620906e-01 3.29627484e-01\\n-7.80114159e-02 -1.65409297e-01 -3.02999288e-01 9.16662067e-02\\n-2.62442857e-01 -3.53031337e-01 5.28563440e-01 2.36485094e-01\\n2.21070603e-01 6.36409968e-02 4.29657958e-02 -2.43670749e-03\\n-1.81605473e-01 3.67260218e-01 1.36017464e-02 1.55133694e-01\\n-2.36471429e-01 -2.20956951e-01 -2.20015615e-01 1.69692665e-01\\n-1.42482340e-01 7.33158216e-02 4.39049490e-02 -4.54385020e-02\\n3.03493708e-01 1.46257058e-01 -2.59628892e-01 2.09177956e-01\\n-9.59189534e-02 -3.43251526e-02 -1.29803225e-01 2.32880875e-01\\n1.66312493e-02 2.36595079e-01 1.43600069e-02 -1.72839478e-01\\n6.21517360e-01 1.01470605e-01 1.33547097e-01 -7.45106265e-02\\n3.49140584e-01 -9.31205153e-02 1.76359102e-01 1.74797878e-01\\n-6.08516634e-01 1.73149973e-01 -5.85562252e-02 -1.64183974e-01\\n1.37126788e-01 5.26662581e-02 9.35743973e-02 -2.93390572e-01\\n1.19613230e-01 -1.41610846e-01 -3.81029606e-01 -2.22578481e-01\\n-2.92873472e-01 6.72588646e-02 4.60060239e-01 -3.53746980e-01\\n-1.37993470e-01 3.56096894e-01 -5.05932093e-01 -2.01158244e-02\\n3.83618772e-01 1.01214945e-01 6.18799031e-03 9.87319574e-02\\n-1.31160110e-01 -4.84164923e-01 9.40968543e-02 -3.16092163e-01\\n-3.95608723e-01 5.12202643e-02 -2.59327233e-01 3.18071544e-01\\n-8.08586273e-03 9.69316214e-02 -2.15414539e-01 1.97978154e-01\\n-1.18256859e-01 -1.80843621e-01 1.59355149e-01 1.15554616e-01\\n2.09880441e-01 -1.17774963e-01 -3.77655804e-01 4.04088259e-01\\n-2.20527932e-01 5.58870435e-01 1.60700828e-01 -8.79648089e-01\\n4.22257990e-01 3.21077496e-01 -1.98234934e-02 -3.72316271e-01\\n5.74080527e-01 -2.84014195e-01 8.89516920e-02 1.59255832e-01\\n-2.13475421e-01 -3.24701279e-01 3.14451963e-01 -1.40822977e-01\\n-3.06795299e-01 5.12280703e-01 1.72515154e-01 1.37934998e-01\\n2.30716214e-01 -2.05723688e-01 -5.04717007e-02 1.50293350e-01\\n-2.35670377e-02 -2.50724286e-01 -4.16823238e-01 9.77694839e-02\\n-4.60178219e-02 -4.62354243e-01 -2.72122473e-02 -3.42714727e-01\\n-2.36204609e-01 -4.03870106e-01 -2.03057140e-01 3.51750433e-01\\n3.04708391e-01 2.48220250e-01 1.93333384e-02 4.71864790e-02\\n-5.73203638e-02 -7.59867966e-01 5.80177419e-02 1.32058069e-01\\n5.45887530e-01 1.57652289e-01 4.70654182e-02 -2.97316670e-04\\n-9.27462429e-02 5.67077100e-01 -2.86780387e-01 -5.16869985e-02\\n1.40828434e-02 8.91361609e-02 1.36138005e-02 -1.86532974e-01\\n1.33909406e-02 3.64997864e-01 -1.70989677e-01 9.24495608e-02\\n-1.44996151e-01 -6.68589473e-02 3.22506249e-01 8.56105238e-03\\n-4.20292288e-01 -2.64849752e-01 -8.76145959e-02 2.69791007e-01\\n-4.37586635e-01 -1.40976757e-01 5.90600312e-01 2.25602567e-01\\n1.62331864e-01 1.21877551e-01 1.44515231e-01 -1.51700720e-01\\n-1.61967129e-01 -3.22479486e-01 2.07382455e-01 1.22776069e-01\\n1.38575956e-01 2.00365067e-01 -3.72148193e-02 -5.98236918e-01\\n-3.55767083e+00 -2.44661883e-01 1.49188027e-01 -2.34879002e-01\\n1.46839559e-01 -2.12224767e-01 -8.87293667e-02 -5.88172451e-02\\n-2.40590602e-01 2.91238707e-02 -5.57908863e-02 -1.95996780e-02\\n1.42217010e-01 2.60268897e-01 -3.07028089e-02 2.72283316e-01\\n1.75273940e-01 -1.26665086e-01 -1.83526769e-01 2.82742083e-01\\n-2.40751475e-01 -5.56216240e-01 1.43199146e-01 -5.56357764e-02\\n3.51206899e-01 2.08695754e-01 -2.89472550e-01 -1.17879041e-01\\n-1.40148014e-01 -2.32659578e-01 1.26830284e-02 -1.36277646e-01\\n-9.39959511e-02 3.08147907e-01 1.41567409e-01 -3.73056158e-02\\n1.71906620e-01 -3.75681490e-01 -4.30389233e-02 -3.65561306e-01\\n1.36520028e-01 -7.29529917e-01 -1.41399682e-01 3.18213552e-03\\n6.23938799e-01 -2.56782234e-01 1.48772329e-01 8.40159953e-02\\n2.74440140e-01 8.98150057e-02 -1.54575348e-01 -1.68985967e-02\\n-3.00989926e-01 -1.96983695e-01 -7.90994521e-03 -1.11506239e-01\\n4.08479303e-01 5.67197084e-01 -2.85875708e-01 -1.25717551e-01\\n3.54545936e-02 -2.46213466e-01 -4.10356253e-01 -3.61439258e-01\\n-6.70600981e-02 -3.23299080e-01 -6.78215563e-01 -2.82885045e-01\\n-1.41898841e-01 -8.67227837e-02 -2.54353434e-01 6.38305664e-01\\n-2.21352711e-01 -4.61500913e-01 9.65236351e-02 -5.07090449e-01\\n1.27212569e-01 -9.43848342e-02 -1.46394327e-01 -1.59531683e-01\\n-1.88793853e-01 -3.94708335e-01 1.19795511e-02 -1.84823351e-03\\n-2.61640400e-01 -2.10281104e-01 1.44181728e-01 -2.36410707e-01\\n-2.31983140e-01 -4.32137311e-01 3.84556353e-01 1.09627098e-01\\n2.39205778e-01 1.57670021e-01 4.06324655e-01 1.48291066e-01\\n3.65584284e-01 -1.74589932e-01 4.14790995e-02 -4.15609360e-01\\n1.46451578e-01 -1.29213110e-02 6.52251303e-01 -3.48292291e-01\\n1.44252405e-01 1.98672503e-01 -2.56197393e-01 -1.15831569e-01\\n2.94329226e-01 1.07384464e-02 5.22111617e-02 -1.62561193e-01\\n2.96091110e-01 -2.83448875e-01 -3.72771323e-01 7.74094388e-02\\n1.80112153e-01 5.74220955e-01 -5.66965789e-02 -4.12047416e-01\\n-2.89244920e-01 5.09307325e-01 -1.49825037e-01 -1.40478134e-01\\n-2.89814144e-01 3.90885994e-02 -1.21235453e-01 2.30737910e-01\\n1.15701482e-01 -1.40875220e-01 -2.64869422e-01 -2.24301100e-01\\n-1.61692858e-01 1.70949668e-01 1.54917657e-01 -3.55652608e-02\\n-4.50803526e-02 -3.30715954e-01 -4.80194464e-02 6.00791126e-02\\n1.30775660e-01 2.35793710e-01 1.48768455e-01 -1.26801834e-01\\n-9.00350139e-02 2.91415960e-01 -1.06008939e-01 4.80863266e-02\\n-2.94090539e-01 1.73461698e-02 -4.92684096e-01 -2.04996273e-01\\n-2.05945879e-01 -2.36744300e-01 1.25386310e-03 2.73028046e-01\\n7.83270746e-02 -1.92913674e-02 -6.22604676e-02 -5.62592864e-01\\n2.66212404e-01 4.52628992e-02 2.05417767e-01 1.56162784e-01\\n-4.41402290e-03 3.85655701e-01 5.26062027e-02 -4.59839627e-02\\n-1.74095571e-01 -9.85900685e-03 -1.86417758e-01 -1.27734646e-01\\n-3.02870683e-02 -4.94981676e-01 -8.66208002e-02 4.63056087e-01\\n1.57417357e-01 -3.38068724e-01 -1.66483968e-01 1.71713859e-01\\n1.43609289e-02 -3.40368211e-01 -1.57239482e-01 -6.47105724e-02\\n3.08866680e-01 -2.29401980e-02 4.00199592e-01 -4.02351141e-01\\n6.25269338e-02 -2.95184180e-02 -1.93843663e-01 3.90342653e-01\\n1.42584071e-01 -5.41709699e-02 -1.17452085e-01 -8.38809013e-02\\n4.16228533e-01 -1.39740899e-01 -3.68375555e-02 -2.47496739e-02\\n4.77487519e-02 -1.82550594e-01 -6.04419112e-01 1.17317494e-02\\n-1.13630302e-01 -1.36927068e-01 -3.66678946e-02 2.60255430e-02\\n1.93115082e-02 7.63460696e-02 -3.88356149e-01 -3.03313047e-01\\n-3.89725357e-01 -1.41464934e-01 1.99375033e-01 -3.38017911e-01\\n-5.51815368e-02 1.65231153e-01 -5.24846315e-01 2.20427051e-01\\n-2.04738691e-01 -2.61480194e-02 1.11604720e-01 5.02638333e-02\\n-3.27773243e-01 4.14728783e-02 -9.07654001e-04 2.81640172e-01\\n-2.43530273e-01 -2.75707424e-01 6.17538765e-02 -9.81558979e-01\\n1.01845182e-01 4.44127955e-02 -1.24048129e-01 -1.74493138e-02\\n5.82963377e-02 -5.87953568e-01 2.33283520e-01 -5.23572564e-01\\n-4.46500629e-02 -9.48602147e-03 -2.25964233e-01 -4.85625267e-01\\n5.56180216e-02 -1.27536923e-01 -4.59565073e-01 2.83805877e-01\\n-4.34136480e-01 3.86559367e-01 -6.31705858e-03 8.37491974e-02\\n4.02998775e-02 -2.94362068e-01 9.84495580e-02 -4.33196157e-01\\n-4.20690030e-01 -1.41551256e-01 -4.46564436e-01 -1.71888277e-01\\n3.13174725e-02 -2.07269549e-01 -2.06534863e-01 1.86751932e-01\\n1.62583113e-01 1.70897633e-01 -2.92137656e-02 -2.69730777e-01\\n2.56398246e-02 -6.05263829e-01 -5.88169806e-02 -1.69473469e-01\\n-4.58938815e-02 -7.42240399e-02 2.08374873e-01 3.76476943e-02\\n6.87211379e-02 -2.81975895e-01 4.20352787e-01 -3.60191673e-01\\n-2.17204168e-01 8.59622844e-03 -6.22801036e-02 7.12337047e-02\\n1.84305102e-01 -5.57156563e-01 1.45075530e-01 2.48096809e-01\\n4.61339206e-02 4.76611219e-02 2.24525839e-01 4.64865007e-02\\n-1.32498741e-02 8.20354745e-02 -3.15005243e-01 1.46620259e-01\\n7.09010899e-01 8.85413215e-03 3.63794863e-02 1.93682238e-01\\n2.44389862e-01 3.48329782e-01 4.63534325e-01 -6.43178523e-02\\n-1.53882161e-01 2.28379518e-01 -1.00872703e-02 -6.14064753e-01\\n-7.55777732e-02 4.84914444e-02 -2.91381210e-01 -2.96028882e-01\\n7.51922309e-01 3.98893774e-01 -3.80282104e-01 -2.20711544e-01\\n-1.58171520e-01 -1.37440547e-01 8.37631896e-02 -1.26653373e-01\\n1.00874074e-01 -1.32348984e-01 4.80521888e-01 -5.21223322e-02\\n3.10963422e-01 4.49604928e-01 -1.48096502e-01 -4.36883509e-01\\n-1.32044435e-01 1.96442217e-01 8.53473470e-02 3.14534813e-01\\n-1.13067321e-01 1.83487341e-01 -6.45483062e-02 1.02342211e-01\\n-8.29420388e-02 1.31473869e-01 3.41702029e-02 1.38920337e-01\\n2.05454424e-01 6.92160204e-02 4.60737526e-01 4.09891784e-01\\n2.19783798e-01 4.38740790e-01 3.38125706e-01 1.22946896e-01\\n4.40776438e-01 4.66991246e-01 3.53928477e-01 1.34520516e-01\\n-7.25133494e-02 1.16346039e-01 8.54310244e-02 -1.22478724e-01\\n3.80240560e-01 3.06474149e-01 3.16636413e-01 7.87271619e-01\\n4.14689720e-01 2.11218193e-01 6.96081638e-01 -6.36073232e-01\\n-3.08079362e-01 -1.15281746e-01 5.14411807e-01 -1.04065783e-01\\n-1.00495689e-01 1.38914660e-01 -1.51006296e-01 2.78553247e-01\\n-4.67804253e-01 1.17776478e-02 -7.30841383e-02 2.07078263e-01\\n8.16055834e-02 -8.15491900e-02 -2.81815827e-01 -2.23745741e-02\\n-1.71641752e-01 -7.78845772e-02 -4.24824595e-01 -6.18792549e-02\\n-1.41262069e-01 -1.79642260e-01 -7.66692832e-02 -5.30424640e-02\\n-1.49708599e-01 -4.41145480e-01 -1.70682907e-01 4.73992787e-02\\n3.38214368e-01 -9.89092439e-02 -3.83634157e-02 -8.20451751e-02\\n2.82830656e-01 2.45254517e-01 4.71925914e-01 -2.24134699e-02\\n9.92254689e-02 -2.58137047e-01 -1.65046111e-01 6.16772920e-02\\n1.52383789e-01 -2.98398864e-02 7.36191794e-02 3.11658353e-01\\n-3.02360058e-01 -9.89738256e-02 -4.64291451e-03 3.69115621e-01\\n-4.63059038e-01 -2.07851827e-01 -5.57075329e-02 2.69026905e-01\\n1.11814000e-01 1.65285140e-01 -3.38819653e-01 6.55039251e-02\\n-2.45464742e-01 -3.42747182e-01 3.88895452e-01 -1.20167576e-01\\n-1.37024373e-01 2.23203138e-01 1.86469361e-01 1.52044177e-01\\n-1.06642850e-01 -5.82115836e-02 1.11434534e-02 2.11798906e-01\\n4.45167981e-02 4.40632105e-01 -1.07891828e-01 -2.73646116e-01\\n-3.42508316e-01 2.85298496e-01 -1.05829470e-01 1.68224946e-01\\n3.35317757e-03 2.61487693e-01 1.18349299e-01 5.68313487e-02\\n3.85723948e-01 -6.20126240e-02 -1.79838508e-01 -2.05640852e-01\\n-2.74755657e-01 -4.33481365e-01 -4.03706916e-02 -7.80969933e-02\\n1.33783847e-01 -3.03544998e-01 4.54520695e-02 -8.02513734e-02\\n-2.26583570e-01 -2.34379664e-01 -5.88032492e-02 -8.64266083e-02]]',\n", + " 'You will develop new features for our platform for dietitians using latest web and backend technologies or continue engineering our native mobile apps written in Swift and Java. We have all knowledge in-house and can provide training for your continued development. You may be a great fit for Oviva’s Engineering team, If… You are a gifted Java Engineer, passionate about developing innovative web applicationsYou are a collaborator. You thrive in environments that freely exchange ideas and viewpointsYou are an innovator that believes in making a difference to our clients and having fun doing it Required: BS or MS in Computer Science or equivalent work experience (Juniors welcome if we find proof of potential)Strong Java / object oriented design and development skillsSolid understanding of web standardsSQL proficiency (MySQL experience preferred)Strong communication skillsStrong problem solving skills, adaptable, proactive and willing to take ownership. Desired: Experience with Agile or XP methodologies or related iterative development processesExperience with Java EE, Maven, Git, IntelliJ, Hibernate, XML, SQL, HTML, JavaScript, Angular, AJAX, JSONExperienced with SOA architectures and design patternOviva does not accept agency resumes. Please do not forward resumes to our jobs alias. Oviva does not accept agency resumes. Please do not forward resumes to our jobs alias. Job Type: Full-time Language: English (Required) ',\n", + " '[\"Adaptability\", \"Collaboration\", \"Proactivity\", \"Problem Solving\", \"Communications\", \"Innovation\"]',\n", + " '[\"MySQL\", \"Agility\", \"Computer Science\", \"Ajax (Programming Language)\", \"Mobile App\", \"Hibernate (Java)\", \"Java EE Application\", \"Iterators\", \"HyperText Markup Language (HTML)\", \"Swift (Programming Language)\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Angular (Web Framework)\", \"Git Flow\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Extensible Markup Language (XML)\", \"SQL (Programming Language)\", \"Custom Backend\", \"Autodesk Alias\"]',\n", + " \"['English', 'Oromo', 'Uighur', 'Xhosa', 'Dzongkha']\"],\n", + " ['57',\n", + " 'data scientist in tel-aviv',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.18293035e-01 2.87841141e-01 5.12300014e-01 -7.21083768e-03\\n5.24712682e-01 -1.88244194e-01 -1.17877543e-01 2.70312518e-01\\n-5.77173606e-02 -3.23469400e-01 -1.44767746e-01 -2.39758983e-01\\n-1.33455500e-01 1.63746506e-01 2.24244371e-01 3.49083453e-01\\n2.10390851e-01 4.85742167e-02 -2.19078898e-01 3.56796920e-01\\n1.08912639e-01 -2.76170559e-02 3.07881739e-02 8.12087834e-01\\n3.18082333e-01 2.93625891e-03 -8.18525702e-02 -3.55271362e-02\\n-2.17758745e-01 -1.63740441e-01 4.30000007e-01 2.15683579e-02\\n-1.47977367e-01 -3.33791941e-01 1.47535443e-01 1.79005191e-01\\n-2.73670375e-01 2.32104622e-02 -1.56353980e-01 1.55275434e-01\\n-4.87558007e-01 -2.98121899e-01 -6.23520240e-02 8.38000029e-02\\n-3.07590961e-01 -3.54387790e-01 9.75237340e-02 -1.02897167e-01\\n9.54963788e-02 1.98823959e-02 -5.77964842e-01 2.69739419e-01\\n-2.04751775e-01 -3.27793479e-01 3.35760653e-01 6.56660855e-01\\n2.63097230e-02 -5.55410028e-01 -3.31110209e-01 -3.70134026e-01\\n-6.39993399e-02 -6.52012378e-02 6.68702051e-02 -3.81399423e-01\\n3.34978670e-01 4.01002076e-03 -8.22445564e-03 3.82482320e-01\\n-8.58393788e-01 -1.37028411e-01 -2.64403045e-01 9.09647048e-02\\n-3.66348296e-01 -8.84052552e-03 -3.38790148e-01 -2.39188224e-01\\n3.69494632e-02 3.96705240e-01 1.06598876e-01 4.03243452e-02\\n-1.29990965e-01 2.69204468e-01 -2.73234189e-01 3.25216651e-01\\n3.10159683e-01 3.27072799e-01 2.10068285e-01 2.86820263e-01\\n-4.34033751e-01 4.11853403e-01 1.43094495e-01 -3.09442371e-01\\n1.08997867e-01 2.70852089e-01 4.39643055e-01 8.12140778e-02\\n1.45917118e-01 1.25089183e-01 -2.27411553e-01 2.50035554e-01\\n1.86893985e-01 -3.55020821e-01 -1.54045550e-02 -9.37457457e-02\\n-8.06592852e-02 4.15019430e-02 6.25080895e-03 1.73431516e-01\\n-4.20865238e-01 4.12830085e-01 1.65124029e-01 -1.33727670e-01\\n-1.41450658e-01 -5.59730351e-01 -1.32213861e-01 8.89212359e-03\\n-1.47841694e-02 2.11780146e-01 1.23516731e-01 2.09867597e-01\\n1.08305834e-01 6.59859255e-02 1.33507490e-01 9.74079132e-01\\n-6.29510805e-02 1.10877909e-01 -1.32439673e-01 3.78171325e-01\\n1.40447825e-01 -2.11893439e-01 2.49871910e-01 2.28198484e-01\\n8.04139003e-02 -1.73262596e-01 -2.73073584e-01 3.56066465e-01\\n-1.47886500e-01 -1.64400339e-01 -3.56325984e-01 2.89170325e-01\\n-4.88935001e-02 -5.75941622e-01 6.70860589e-01 5.96228130e-02\\n2.34454915e-01 -3.51504609e-02 1.24850124e-01 -1.01970524e-01\\n-1.23098195e-01 2.93026090e-01 5.42703234e-02 1.32511228e-01\\n-3.47178042e-01 -2.18496352e-01 -2.20214114e-01 2.49481991e-01\\n-3.77162009e-01 1.21448226e-01 -9.87554342e-02 -1.15173399e-01\\n1.61477342e-01 1.28003499e-02 -3.42942923e-01 1.66983321e-01\\n-1.35706723e-01 -1.80758610e-01 -2.04923898e-02 3.19539130e-01\\n-1.88702732e-01 3.61160785e-01 -5.94299920e-02 -1.77253917e-01\\n5.82493186e-01 1.11601993e-01 1.30582482e-01 -5.30823618e-02\\n2.72910118e-01 -1.05887450e-01 2.20045894e-01 1.11448959e-01\\n-7.38385797e-01 3.85596603e-01 -2.84547359e-02 -1.73716813e-01\\n-1.65580641e-02 5.10152914e-02 3.64965647e-01 -3.59147787e-01\\n4.98479269e-02 -1.66514322e-01 -3.25890452e-01 -1.92414984e-01\\n-2.29196206e-01 4.21810709e-02 5.25538445e-01 -4.21860158e-01\\n1.81264244e-02 2.62536764e-01 -5.79888821e-01 -1.29377455e-01\\n2.31570154e-01 1.09798148e-01 4.93862182e-02 1.45558715e-01\\n-2.01086015e-01 -5.92694819e-01 1.28643159e-02 -4.03994501e-01\\n-3.53430837e-01 -1.05816629e-02 -2.70896882e-01 1.69163838e-01\\n-1.03219122e-01 -6.22279793e-02 -9.72907692e-02 1.49337977e-01\\n-2.91529000e-01 9.61449966e-02 1.82307839e-01 7.16495737e-02\\n2.87366241e-01 6.04301207e-02 -3.59633982e-01 5.36509454e-01\\n-1.32813379e-01 5.92790067e-01 1.60871685e-01 -8.45661759e-01\\n5.38983703e-01 3.52200985e-01 4.08283696e-02 -3.83220077e-01\\n5.54943502e-01 -3.82794738e-01 -1.18547067e-01 7.00652227e-02\\n-3.33947718e-01 -3.28016520e-01 3.69035810e-01 -2.78760403e-01\\n-3.24766517e-01 5.73739171e-01 1.16708800e-01 6.31609857e-02\\n3.66605490e-01 -3.17673743e-01 -1.56395152e-01 1.07739098e-01\\n-1.23718701e-01 -2.78182715e-01 -5.57289720e-01 2.01117769e-02\\n-6.72401637e-02 -5.01689613e-01 -1.77827924e-01 -3.52551490e-01\\n-2.68854499e-01 -3.42199683e-01 -2.08490387e-01 1.64829910e-01\\n1.96887955e-01 1.65492341e-01 -6.21476211e-03 -3.97751480e-03\\n5.06284786e-03 -6.92227781e-01 -7.15350825e-03 4.90946174e-02\\n4.99817550e-01 1.91982672e-01 1.46058634e-01 -6.45228401e-02\\n9.23559666e-02 6.21987641e-01 -2.94392377e-01 -4.10207957e-01\\n1.60949573e-01 2.08620057e-01 -5.49437888e-02 -1.86902463e-01\\n1.19672351e-01 3.19383144e-01 -4.58880246e-01 1.41053066e-01\\n-2.08991498e-01 6.99654967e-02 2.75222689e-01 1.16555570e-02\\n-2.04641044e-01 -2.04443306e-01 -7.49943033e-02 2.67654330e-01\\n-5.31203032e-01 -2.11172640e-01 4.50798422e-01 2.19182745e-01\\n1.23261519e-01 1.32240802e-01 1.68832824e-01 -9.81790423e-02\\n-3.55463505e-01 -1.39827728e-01 1.36318460e-01 2.32824355e-01\\n4.70402092e-02 1.35376140e-01 -5.45809083e-02 -6.73519611e-01\\n-3.00617957e+00 -1.60012737e-01 1.17671415e-01 -1.75615221e-01\\n3.61178368e-01 -1.64495587e-01 1.43302590e-01 -9.03277751e-03\\n-3.49488795e-01 -6.10821731e-02 -2.09754616e-01 -2.23797321e-01\\n8.75594839e-02 2.50830948e-01 8.35473463e-02 3.01108092e-01\\n1.15815252e-01 -2.84762204e-01 1.64243989e-02 3.78445059e-01\\n-1.82845399e-01 -7.49971211e-01 3.38451043e-02 2.89310440e-02\\n2.37582803e-01 2.86669821e-01 -5.35140693e-01 -1.41612977e-01\\n-3.35757196e-01 -1.93789482e-01 1.41799256e-01 -4.32356775e-01\\n-2.08259672e-01 2.76039302e-01 1.81092039e-01 8.33089277e-03\\n1.05184980e-01 -3.07880163e-01 -7.87858367e-02 -4.05652016e-01\\n8.44321847e-02 -6.88022316e-01 -2.27253325e-02 -2.53851945e-03\\n6.76779807e-01 -2.75195360e-01 2.01655611e-01 1.07493915e-01\\n1.00873686e-01 3.83704193e-02 3.70400399e-02 3.45684006e-03\\n-2.38506883e-01 -3.11897129e-01 3.23845446e-02 -1.71624944e-01\\n5.28447032e-01 5.87214768e-01 -1.27861023e-01 3.21895443e-03\\n7.55982623e-02 -3.32092673e-01 -4.32284087e-01 -4.22599584e-01\\n-2.07180500e-01 -1.82864100e-01 -6.47473037e-01 -5.84745228e-01\\n-1.27664909e-01 -1.65396556e-01 -1.21536672e-01 5.69952726e-01\\n-2.91157603e-01 -3.13016921e-01 -7.76192732e-03 -6.26682997e-01\\n2.63738483e-01 -9.93413553e-02 7.07623661e-02 -2.06828043e-01\\n-1.94918439e-01 -6.63694561e-01 6.09017462e-02 -6.81228712e-02\\n-1.35057598e-01 -2.39459768e-01 4.28878665e-02 -1.63148925e-01\\n-3.04237574e-01 -5.44258356e-01 4.25652415e-01 1.30276144e-01\\n2.81241715e-01 1.27569154e-01 4.44982022e-01 -1.62410602e-01\\n2.86756963e-01 1.08747140e-01 1.32018223e-01 -3.25071961e-01\\n6.31374940e-02 1.51748862e-03 5.41878521e-01 -2.35481575e-01\\n7.42597878e-02 1.81875736e-01 -2.45808855e-01 -4.55430560e-02\\n3.82158905e-01 -5.88339232e-02 8.51765275e-02 -3.27251196e-01\\n4.22881663e-01 -2.92879015e-01 -5.35061844e-02 6.91487342e-02\\n2.01761127e-01 7.53794432e-01 2.33551376e-02 -3.19270164e-01\\n-3.02711785e-01 4.92297024e-01 -1.02416702e-01 -4.22330499e-02\\n3.65426624e-03 6.59923702e-02 -1.36420980e-01 2.41520226e-01\\n-6.08639531e-02 -2.74800241e-01 -1.54007182e-01 -9.21609104e-02\\n-1.80405170e-01 2.99591571e-01 2.38003865e-01 8.13113302e-02\\n-9.06702802e-02 -3.00942063e-01 -3.02870907e-02 2.85105705e-01\\n2.45284632e-01 4.05236095e-01 1.71040803e-01 -2.73677856e-01\\n1.24181218e-01 3.18955183e-01 -1.68900564e-01 3.66705984e-01\\n-2.39510164e-01 4.84256446e-02 -5.51192164e-01 -2.27828890e-01\\n-2.82664031e-01 -4.12412703e-01 2.08331913e-01 3.75236183e-01\\n1.40334994e-01 -1.74522903e-02 5.76600023e-02 -3.92776936e-01\\n3.58074427e-01 1.88306466e-01 1.23329140e-01 7.14654401e-02\\n-9.24802721e-02 5.21789491e-01 1.76760778e-02 -1.29744336e-01\\n-4.99612056e-02 1.19916320e-01 -1.91738874e-01 -3.10217887e-01\\n1.79390199e-02 -5.62416434e-01 -2.13426292e-01 4.20868009e-01\\n1.21819377e-01 -2.28558898e-01 -1.72867492e-01 1.23649307e-01\\n-3.05206259e-03 -2.60526448e-01 -2.40866095e-01 -5.26610166e-02\\n2.97338873e-01 3.12007535e-02 2.88476765e-01 -4.86263722e-01\\n1.02790457e-03 -1.89638849e-05 -9.14216042e-02 4.82597053e-01\\n5.08560687e-02 9.11352411e-02 -1.94687262e-01 -1.18908972e-01\\n4.49147791e-01 -1.26008853e-01 -3.90892252e-02 -2.84874924e-02\\n4.43721712e-02 -1.30077496e-01 -4.30025816e-01 9.27536860e-02\\n5.09439893e-02 -2.70332903e-01 -2.62129884e-02 9.39276218e-02\\n1.60054103e-01 6.53310865e-02 -5.40078759e-01 -3.00339073e-01\\n-2.47534916e-01 2.84825265e-02 1.58488408e-01 -4.22260523e-01\\n-3.33974436e-02 -7.40806665e-03 -6.69469476e-01 2.35402569e-01\\n-1.84741929e-01 2.88976654e-02 2.48318851e-01 6.24485537e-02\\n-3.87329429e-01 -1.78277954e-01 -9.41277761e-03 2.96678513e-01\\n-3.83303940e-01 -2.22639427e-01 -1.06608696e-01 -9.75611448e-01\\n2.14084610e-01 8.76736864e-02 -1.34298623e-01 2.07775071e-01\\n-8.97926092e-03 -6.58091366e-01 8.31519142e-02 -4.75828856e-01\\n-1.16090886e-01 2.41030082e-02 -2.85048157e-01 -4.04611379e-01\\n1.46265879e-01 1.18161179e-01 -2.41376832e-01 5.49563885e-01\\n-3.88389558e-01 3.07227850e-01 -6.42132461e-02 -5.95144890e-02\\n-2.75390446e-02 -2.00592190e-01 8.07937086e-02 -2.97519088e-01\\n-2.33403519e-01 -2.56137401e-01 -2.21348792e-01 -2.19993785e-01\\n-5.67318127e-02 -2.34017238e-01 -1.44421533e-01 7.18368590e-02\\n2.87361383e-01 3.03286873e-02 -1.85453922e-01 -3.87502939e-01\\n1.79538220e-01 -3.80847037e-01 -5.69932647e-02 -3.36848021e-01\\n-1.88614819e-02 -1.21831067e-01 1.33851856e-01 1.37501493e-01\\n9.43917036e-02 -2.75968164e-01 4.13993090e-01 -3.47519577e-01\\n-3.95263761e-01 -5.05526252e-02 3.56818251e-02 -6.65428936e-02\\n2.56928712e-01 -4.65586632e-01 2.22059134e-02 3.06080818e-01\\n2.08225414e-01 -4.53113355e-02 1.50231272e-01 -1.42714649e-01\\n-7.98468292e-02 3.09931517e-01 -3.72600824e-01 9.30723622e-02\\n7.53199816e-01 1.80170029e-01 8.15048665e-02 1.31628498e-01\\n2.70878136e-01 3.33038032e-01 5.43331385e-01 7.10164607e-02\\n-6.47241808e-03 3.65606636e-01 5.76459952e-02 -4.20979321e-01\\n-5.20156138e-02 -1.70334429e-01 -1.92165419e-01 -4.35033321e-01\\n6.81549609e-01 3.40471238e-01 -3.55009824e-01 -2.90121287e-01\\n-1.23186998e-01 -2.55506933e-01 2.27265403e-01 5.58853671e-02\\n-1.80744994e-02 -4.28048149e-02 5.25710464e-01 -3.21102552e-02\\n2.52861470e-01 5.23727894e-01 -1.91659644e-01 -3.69987607e-01\\n-3.34243551e-02 3.49063009e-01 4.16438170e-02 4.03664291e-01\\n-2.55929261e-01 3.37148309e-01 1.56096965e-02 7.81616271e-02\\n-3.91230062e-02 1.74844608e-01 2.87186116e-01 5.53589426e-02\\n2.91800857e-01 4.39713523e-02 3.93747956e-01 4.43959564e-01\\n2.22822219e-01 5.12729526e-01 3.28795314e-01 1.39577046e-01\\n3.15115660e-01 6.16119981e-01 3.34165603e-01 7.75566250e-02\\n4.96870354e-02 1.06310681e-01 9.89114121e-02 -3.53255607e-02\\n3.74655962e-01 2.58748323e-01 1.14481501e-01 9.13820505e-01\\n4.19050455e-01 2.90576130e-01 7.83076227e-01 -7.25676179e-01\\n-4.61633861e-01 5.01146205e-02 5.66897154e-01 -4.15733337e-01\\n-9.57862958e-02 1.77778676e-01 -2.46684670e-01 3.16184282e-01\\n-5.03846407e-01 -1.78304851e-01 3.22709903e-02 2.42886879e-02\\n-1.55182248e-02 -7.84657374e-02 -2.36155882e-01 5.91551550e-02\\n-1.20163910e-01 -2.41799146e-01 -4.08412069e-01 -1.59290597e-01\\n-2.17466012e-01 -1.96896628e-01 -1.58770263e-01 -6.34346753e-02\\n-2.13597819e-01 -4.25238073e-01 -1.35838211e-01 5.75714409e-02\\n3.49687219e-01 -1.05659075e-01 -1.77324012e-01 -1.64048001e-01\\n3.27015936e-01 2.69009501e-01 5.35591185e-01 -3.74660175e-03\\n4.58556227e-02 -1.60626084e-01 -2.26541489e-01 2.07142279e-01\\n4.24319319e-02 6.97323913e-03 6.39940202e-02 3.79417956e-01\\n-1.05872333e-01 -9.79279056e-02 1.52147800e-01 2.89568722e-01\\n-4.49063867e-01 -5.00153303e-02 -7.25549161e-02 2.81835824e-01\\n5.87736927e-02 1.98308975e-01 -2.39006579e-01 6.30554259e-02\\n-6.29267693e-02 -6.17099345e-01 3.35754007e-01 -1.26462936e-01\\n-2.06246108e-01 1.59260884e-01 3.71250540e-01 2.57733524e-01\\n-2.70904720e-01 -9.60356891e-02 -4.16815430e-02 1.41539529e-01\\n-5.72923608e-02 3.97079289e-01 -1.75745562e-01 -2.80430377e-01\\n-3.09338182e-01 2.19110414e-01 -3.41730177e-01 1.37834206e-01\\n3.45500819e-02 3.37633759e-01 4.48890850e-02 1.21918358e-01\\n3.77781987e-01 1.67348050e-02 -2.85270363e-01 -2.59968311e-01\\n-1.51336551e-01 -1.66423470e-01 -4.03786339e-02 -7.49597466e-03\\n1.29494756e-01 -2.36944631e-01 -7.84701332e-02 -1.31945327e-01\\n-1.03526577e-01 -2.97147602e-01 -1.72600776e-01 4.93747927e-03]]',\n", + " 'We are currently looking on behalf of one of our clients based in Tel-Aviv for an experienced Data Scientist who will take a lead role in designing the next generation of financial engine, based on state-of-the-art deep learning, algorithms and innovative technology. Your role: Lead the development of novel solutions for hard, yet-unsolved problems. Acquire and maintain knowledge of state-of-the-art scientific literature in deep learning and related fields Design and implement scalable ML and DL systems, products, and solutions. Build deep learning-based products on CPUs and GPUs, leveraging latest deep learning and machine learning libraries. Manage, coach, mentor and support less experienced team members as required Your skills: Proven industrial and/or academic machine learning background (e.g., publications in ICCV, CVPR, ECCV, NIPS, ICML) Strong understanding of deep neural networks, machine learning and related fields At least 3 years’ experience Python / C++ Experience working with deep learning frameworks (e.g. Caffe, TensorFlow, etc.) Excel at both individual and team work The following skills are a big plus: Experience building AI systems using one of TensorFlow, PyTorch, MXNet, Theano, Caffe, and other open source frameworks. Solid understanding of underlying techniques in deep learning to build for scalability, and efficiency. Experience building machine learning products. Experience building scalable machine learning and deep learning systems. Your profile: MSc / PhD in related fields from leading universities (graduation with honours is a plus). Expected to be self-driven and motivated, lead and act independently to deliver; support will be provided from an experienced AI Leader as required and requested Ability to quickly understand and pick up new technologies and algorithms',\n", + " '[\"Innovation\"]',\n", + " '[\"Library Management\", \"MSC Software\", \"Apache MXNet\", \"Theano (Software)\", \"Machine Learning\", \"Industrialization\", \"C++ (Programming Language)\", \"Scientific Literature\", \"Python (Programming Language)\", \"Maintainability\", \"Financial Engineering\", \"E (Programming Language)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Caffe\", \"Scalability\", \"TensorFlow\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " \"['English', 'Sundanese', 'Chichewa', 'Slovenian']\"],\n", + " ['114',\n", + " 'internship aircraft data analytics (all genders)',\n", + " 'Zürich',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " \"['English', 'Ossetian', 'Quechua', 'Amharic']\"],\n", + " ['112',\n", + " 'retail business analyst (finance)',\n", + " 'Biel',\n", + " 'Consumer Products Manufacturing',\n", + " '',\n", + " '[[-2.60366142e-01 4.16198403e-01 5.13007104e-01 -4.58791181e-02\\n5.86787283e-01 -1.44783750e-01 5.34384772e-02 2.81462699e-01\\n-2.46746242e-02 -4.28145021e-01 -1.65418655e-01 -2.21339330e-01\\n1.29661649e-01 3.54477763e-02 1.68049395e-01 3.62080067e-01\\n3.07346046e-01 9.34951827e-02 -1.34250075e-01 3.25294048e-01\\n-2.91972999e-02 -8.59411955e-02 1.84458151e-01 5.66123903e-01\\n3.34935457e-01 7.89068937e-02 2.39256024e-02 2.63092127e-02\\n-1.71086565e-01 -2.20117807e-01 4.70904976e-01 5.64207844e-02\\n-6.05660044e-02 -2.88488150e-01 1.57257587e-01 8.11701342e-02\\n-2.92061716e-01 -3.28941755e-02 -1.58734024e-01 1.05157740e-01\\n-3.99021357e-01 -1.06198624e-01 1.95070915e-02 3.70941013e-02\\n-2.66377538e-01 -4.06013668e-01 6.33867783e-03 -1.56189099e-01\\n1.48816824e-01 8.71593952e-02 -4.31397587e-01 2.20859572e-01\\n-2.04779401e-01 -3.12892973e-01 3.00441056e-01 7.04635799e-01\\n-2.77992804e-02 -5.28008282e-01 -3.76709878e-01 -2.32795104e-01\\n1.89796239e-01 -7.66227841e-02 3.83774228e-02 -2.60336757e-01\\n3.19013566e-01 -1.79508459e-02 7.40850419e-02 4.09827560e-01\\n-6.95324183e-01 -7.18873739e-02 -2.93685585e-01 1.27128556e-01\\n-2.88504630e-01 -6.62443861e-02 -4.79720503e-01 -1.82769537e-01\\n1.95439048e-02 4.25904572e-01 2.41005421e-02 1.07560843e-01\\n-1.68398157e-01 3.04809749e-01 -2.57902116e-01 1.70936614e-01\\n1.94649428e-01 2.75538892e-01 2.76660860e-01 3.08616191e-01\\n-4.25903887e-01 5.70748508e-01 2.86959082e-01 -3.08938026e-01\\n2.79345155e-01 1.43819511e-01 2.97820181e-01 2.25921631e-01\\n1.73248127e-01 1.76129058e-01 -1.30423322e-01 8.98625180e-02\\n1.89846754e-01 -1.29267126e-01 -8.88215154e-02 -1.15285646e-02\\n6.13179915e-02 -1.30392864e-01 3.82471904e-02 1.90969706e-01\\n-4.33736235e-01 3.34263384e-01 2.06410047e-02 -3.37200165e-01\\n-1.20640263e-01 -3.87640148e-01 -5.62805459e-02 -7.05949515e-02\\n-5.40276170e-02 1.40669361e-01 3.61375734e-02 3.27316403e-01\\n2.20498145e-01 2.13131867e-03 1.19777098e-01 8.41232419e-01\\n-4.45607081e-02 1.39065813e-02 -2.14564577e-01 2.86546350e-01\\n6.74904883e-02 -1.73305541e-01 1.70322224e-01 1.53753191e-01\\n-1.10108256e-01 -6.70654178e-02 -3.22708040e-01 2.18080044e-01\\n1.20457457e-02 -1.68102905e-01 -2.72964418e-01 2.25012287e-01\\n1.09555405e-02 -5.12929022e-01 5.47587335e-01 -5.09203188e-02\\n5.34194708e-02 -9.95263457e-02 1.66952517e-02 -2.48408206e-02\\n-1.41182035e-01 2.23526970e-01 1.95200160e-01 1.92873627e-01\\n-2.71726429e-01 -2.66368747e-01 -2.35528126e-01 2.46072918e-01\\n-2.18030706e-01 3.27763855e-02 -2.99447179e-01 -2.19896853e-01\\n2.33294398e-01 1.04608402e-01 -3.77441734e-01 3.52003455e-01\\n-1.09248467e-01 -4.56835218e-02 -1.96931005e-01 3.78665924e-01\\n-7.41354525e-02 1.02866016e-01 -4.94200503e-03 -1.22906700e-01\\n5.34390867e-01 2.97303796e-02 2.31294394e-01 -5.08920588e-02\\n2.12059721e-01 -4.20053601e-02 1.65290609e-01 7.65089095e-02\\n-5.94647586e-01 3.27069789e-01 -8.37033838e-02 -1.12812586e-01\\n2.22171977e-01 -6.04256801e-03 2.71024883e-01 -2.72044659e-01\\n2.52232216e-02 -1.40184432e-01 -3.78637463e-01 -4.47078943e-01\\n-8.88745859e-02 -1.34797320e-01 3.25015575e-01 -4.13344175e-01\\n1.56073207e-02 1.18515484e-01 -5.09650290e-01 -1.55021593e-01\\n2.77825505e-01 2.71797627e-01 4.54138666e-02 2.47066662e-01\\n-2.21378595e-01 -5.52162111e-01 1.19831532e-01 -5.10164261e-01\\n-2.16645464e-01 1.76274776e-01 -2.66857982e-01 2.80104037e-02\\n1.73577279e-01 2.59349160e-02 -1.98723599e-02 3.89899015e-02\\n-1.94942191e-01 1.85538456e-02 7.55913928e-02 1.11020632e-01\\n2.53857166e-01 2.02024896e-02 -3.75071317e-01 5.76821804e-01\\n-2.22980350e-01 3.40066671e-01 1.26498699e-01 -8.87949288e-01\\n3.84566367e-01 2.93842435e-01 6.80350959e-02 -3.14566404e-01\\n5.83601058e-01 -4.13977951e-01 -1.78225011e-01 1.15494996e-01\\n-4.69588220e-01 -1.99960783e-01 6.85926527e-02 -1.50669530e-01\\n-3.58624190e-01 5.84099591e-01 -3.57328705e-03 3.75506766e-02\\n2.81217456e-01 -2.14951098e-01 -2.80232936e-01 -7.62230828e-02\\n-2.44614631e-01 -2.15742722e-01 -5.96243441e-01 3.64261158e-02\\n-4.16958891e-02 -4.77734625e-01 -1.31146997e-01 -3.89252007e-01\\n-1.70288205e-01 -3.55705708e-01 -1.43209577e-01 8.84838700e-02\\n1.99451908e-01 5.68324476e-02 1.77597273e-02 3.59326601e-02\\n-4.59712520e-02 -6.18733823e-01 5.12852566e-03 1.57255903e-01\\n1.59753665e-01 2.73468256e-01 8.98202509e-02 -1.07202448e-01\\n1.35245500e-03 5.40933549e-01 -2.46174008e-01 -2.01609984e-01\\n3.80955964e-01 2.12077171e-01 5.84648363e-02 -1.70039654e-01\\n7.65062645e-02 3.49149108e-01 -3.12314928e-01 8.92772898e-02\\n1.35805244e-02 -5.46073541e-02 2.87237942e-01 -8.79490674e-02\\n-2.25289941e-01 -2.69179463e-01 -1.02564923e-01 2.20300362e-01\\n-4.80968952e-01 -1.45958543e-01 6.76581562e-01 2.53809076e-02\\n-7.42538869e-02 2.29867741e-01 1.95560843e-01 -3.06113157e-02\\n-2.48976409e-01 -3.14258009e-01 1.82494730e-01 1.09043680e-01\\n1.74046487e-01 2.36267447e-02 -1.67312190e-01 -4.85412896e-01\\n-3.60415649e+00 -1.50056675e-01 8.79721437e-03 -2.05379918e-01\\n3.30240965e-01 -1.44530803e-01 1.65378690e-01 4.87620849e-03\\n-3.00524682e-01 6.67757541e-02 -1.25177607e-01 -1.62549168e-01\\n1.37074530e-01 2.58186162e-01 7.05493800e-03 2.79447496e-01\\n2.22442821e-01 -2.19912320e-01 3.83284912e-02 3.80303830e-01\\n-1.80901662e-01 -6.84099317e-01 8.62653255e-02 7.78472498e-02\\n2.18093053e-01 2.62204558e-01 -4.82520878e-01 -6.11269032e-04\\n-2.87947863e-01 -1.98416278e-01 1.54717416e-01 -2.40450412e-01\\n-1.94278672e-01 3.49303871e-01 1.80833906e-01 -6.05289377e-02\\n1.29978955e-02 -2.44155616e-01 -1.33137703e-02 -4.86943513e-01\\n8.51925015e-02 -5.80141664e-01 -4.64374460e-02 8.88477340e-02\\n7.42266417e-01 -2.04040810e-01 1.83438092e-01 8.75085145e-02\\n5.58736660e-02 2.35013649e-01 1.47243291e-01 -6.56753546e-03\\n-3.81098002e-01 -2.26574600e-01 -9.98698547e-02 -2.07036078e-01\\n5.74095905e-01 2.96574146e-01 -2.82074004e-01 -6.87422752e-02\\n8.55506584e-02 -3.22920412e-01 -4.93596911e-01 -2.09350735e-01\\n-1.77368641e-01 -4.55291606e-02 -7.74939895e-01 -4.83849436e-01\\n-2.13795125e-01 -1.60104200e-01 -8.77793506e-02 6.01570487e-01\\n-2.52961099e-01 -2.36073077e-01 -1.85377985e-01 -5.01623094e-01\\n2.90285945e-01 -7.53034726e-02 -3.05217337e-02 -2.39039481e-01\\n-1.39198676e-01 -3.60834450e-01 1.30470142e-01 1.32489279e-01\\n-1.13058902e-01 -3.23238000e-02 1.07964471e-01 -1.19760141e-01\\n-4.87621248e-01 -4.29770976e-01 3.59567672e-01 2.24547666e-02\\n2.57707626e-01 8.95719901e-02 2.66426533e-01 1.08546186e-02\\n4.13491249e-01 -9.21736136e-02 -1.94746759e-02 -5.10195792e-01\\n6.33517355e-02 8.83425493e-03 5.01223922e-01 -1.09166957e-01\\n1.02479026e-01 1.62126765e-01 -1.02498136e-01 -1.55186519e-01\\n4.45153624e-01 -1.03138238e-01 1.60426766e-01 -3.06612164e-01\\n1.88632071e-01 -2.33669668e-01 -1.73225045e-01 3.76736894e-02\\n-2.07201894e-02 5.90611696e-01 3.77056375e-02 -3.57374251e-01\\n-1.69785023e-01 3.37105781e-01 3.23901908e-03 -3.76246385e-02\\n-2.65823871e-01 -3.34164649e-02 -2.64225930e-01 1.68483421e-01\\n2.23007202e-02 -3.54478927e-03 -1.15291640e-01 8.89016129e-03\\n-6.71927854e-02 2.00307801e-01 2.70674944e-01 6.65951222e-02\\n-3.73160988e-02 -3.27037334e-01 -1.26658663e-01 1.41751766e-01\\n2.09917769e-01 3.22505683e-01 1.64607376e-01 -3.99768054e-01\\n1.00298673e-01 2.21468195e-01 -1.86139524e-01 1.86412156e-01\\n-2.58338988e-01 2.27758050e-01 -5.63447654e-01 -2.90681213e-01\\n-2.44895846e-01 -1.63093105e-01 2.75715161e-02 4.36965108e-01\\n1.67358458e-01 -2.58991510e-01 1.07551552e-01 -4.07346368e-01\\n3.43581200e-01 4.06307131e-02 1.63106278e-01 1.71737298e-01\\n2.39503826e-03 7.05112696e-01 -2.53428631e-02 -2.44587034e-01\\n-1.14659250e-01 1.74056470e-01 -1.45620212e-01 -2.09405199e-01\\n-1.83083210e-03 -5.41668296e-01 -1.26604632e-01 3.31225127e-01\\n1.94258109e-01 -1.13694057e-01 -1.69149220e-01 1.21673137e-01\\n-6.73849210e-02 -3.39557946e-01 -3.01698864e-01 4.02992293e-02\\n2.52640158e-01 2.21338689e-01 1.73625752e-01 -4.63652104e-01\\n7.05083683e-02 -1.20520629e-01 8.51229429e-02 3.95820171e-01\\n9.84107852e-02 1.84933320e-01 7.08548026e-03 -1.31313413e-01\\n4.74397600e-01 3.00073321e-03 -1.74352095e-01 -5.79775451e-03\\n9.51981246e-02 -2.12212622e-01 -3.25306773e-01 9.22251567e-02\\n-2.56574042e-02 -1.98751613e-01 -5.07578775e-02 1.36283755e-01\\n3.57528105e-02 -1.10908784e-02 -5.55078983e-01 -1.87696680e-01\\n-3.77901703e-01 2.77839191e-02 -5.84135763e-03 -6.37229443e-01\\n1.03241004e-01 9.36986879e-03 -5.44728041e-01 2.64470249e-01\\n-7.36583173e-02 4.64043729e-02 1.08570561e-01 -9.55984276e-03\\n-3.52514446e-01 -1.96703747e-01 2.19694287e-01 1.64899737e-01\\n-2.54748583e-01 -1.67042062e-01 -8.93131346e-02 -8.72232199e-01\\n2.15049982e-01 -1.19851688e-02 -8.91867876e-02 1.10289246e-01\\n-7.89234564e-02 -7.17115819e-01 3.38542521e-01 -2.95838386e-01\\n-2.83252478e-01 -2.29342729e-02 -2.00008228e-01 -3.87396753e-01\\n8.56989995e-02 2.51405854e-02 -2.29211062e-01 2.93070078e-01\\n-4.06969905e-01 4.80211198e-01 -1.23177163e-01 3.56480130e-03\\n1.28181472e-01 -2.82159239e-01 1.40940443e-01 -3.77185732e-01\\n-5.62752306e-01 -1.51011944e-01 -2.85611749e-01 -2.03779534e-01\\n-4.60707583e-02 -3.28829020e-01 -7.99030662e-02 -1.87660777e-03\\n3.67722750e-01 1.19102068e-01 -6.72884434e-02 -8.27429816e-02\\n3.71673256e-02 -3.93780380e-01 2.18084991e-01 -2.27669924e-01\\n6.95215687e-02 -1.33238673e-01 3.14161867e-01 5.68009689e-02\\n2.41384149e-01 -3.89710575e-01 3.84331822e-01 -2.77826160e-01\\n-3.90008658e-01 -1.29307330e-01 9.66409147e-02 1.94237400e-02\\n4.25935686e-01 -4.90588129e-01 6.82357047e-03 2.71835059e-01\\n1.20642483e-01 2.29296647e-02 2.20556110e-01 -1.37333006e-01\\n-2.14410856e-01 2.54804671e-01 -5.25751650e-01 2.69850612e-01\\n6.65041745e-01 1.80698931e-01 2.65957326e-01 1.97471336e-01\\n1.05660997e-01 3.52081984e-01 4.21341091e-01 2.12216135e-02\\n-8.74837413e-02 4.42590922e-01 1.31988615e-01 -5.47322989e-01\\n-3.39499824e-02 -1.62835568e-01 -1.60504475e-01 -1.97742939e-01\\n6.28086329e-01 3.23774755e-01 -3.12551558e-01 -2.21673191e-01\\n-3.99667293e-01 -2.16669708e-01 2.56090492e-01 -2.42589675e-02\\n9.14716870e-02 -3.37460525e-02 5.68908095e-01 -2.63434369e-02\\n3.75562698e-01 5.65334976e-01 -9.29379985e-02 -2.00033411e-01\\n3.08333673e-02 3.29894722e-01 2.00992823e-02 3.36188138e-01\\n-4.39430438e-02 1.77744284e-01 6.73705339e-02 2.60232836e-01\\n-1.87463120e-01 -7.88556505e-03 1.68856934e-01 1.29980827e-03\\n1.14068381e-01 1.40972257e-01 5.43366849e-01 3.91898870e-01\\n2.90129930e-01 3.46980482e-01 3.37762117e-01 -9.36607197e-02\\n4.68981355e-01 5.62566996e-01 3.21178317e-01 6.10109158e-02\\n7.38343075e-02 -2.91373376e-02 1.34322479e-01 2.55998988e-02\\n1.94931358e-01 4.82288748e-01 -2.83413082e-02 8.19744647e-01\\n2.84295976e-01 1.83909103e-01 6.73367918e-01 -4.94882017e-01\\n-2.64198005e-01 -1.15105376e-01 4.10458863e-01 -4.08013225e-01\\n7.05565978e-03 1.84181035e-01 -2.15285838e-01 1.98368043e-01\\n-4.00641769e-01 -2.45527819e-01 1.62250064e-02 7.55632669e-02\\n-4.66196984e-02 -1.74090117e-01 -7.50467777e-02 5.08568622e-02\\n-3.56083959e-02 -1.97247475e-01 -3.43990922e-01 -9.52696428e-02\\n-2.02380925e-01 7.73368329e-02 -1.02428049e-01 -2.27554906e-02\\n3.56398057e-03 -3.42539519e-01 -9.54458565e-02 -9.28687230e-02\\n3.45957577e-01 -1.81818798e-01 -1.80599958e-01 -6.76950589e-02\\n1.87284246e-01 2.16270730e-01 6.32341504e-01 -4.79642041e-02\\n1.39478520e-01 -2.07892448e-01 -1.78950593e-01 1.77008510e-01\\n2.27761999e-01 1.36873156e-01 -4.53151017e-02 5.46708703e-01\\n-3.27662736e-01 -2.22996771e-01 6.36015758e-02 2.37591371e-01\\n-3.92754376e-01 -1.50204986e-01 1.36556536e-01 2.80976892e-01\\n-9.67909545e-02 1.51441380e-01 -2.07959518e-01 2.76301261e-02\\n-1.30974427e-01 -5.04735291e-01 4.03550029e-01 -2.21229315e-01\\n-1.85949236e-01 -6.75574467e-02 2.83242136e-01 2.86418080e-01\\n-1.36499494e-01 -5.21421805e-02 -8.89497623e-02 1.32607594e-01\\n-4.51250263e-02 3.63497108e-01 -2.80329704e-01 -2.15676367e-01\\n-2.50533104e-01 2.15190738e-01 -4.90441546e-02 1.03613295e-01\\n-4.78832331e-03 2.58319288e-01 1.06775872e-01 6.51929677e-02\\n2.36263663e-01 -1.23105474e-01 -1.43801227e-01 -2.56284028e-01\\n-3.00472289e-01 -1.41711906e-01 5.21806302e-03 -1.91442847e-01\\n1.94375291e-01 -1.89875215e-01 -7.68510550e-02 -1.48815423e-01\\n-2.53974795e-01 -4.42274541e-01 -7.99143985e-02 -1.82743490e-01]]',\n", + " 'Job description The distribution IT team is looking for a new colleague: Retail Business Analyst. As a retail IT Business Analyst, you will be working with business and IT partners to continually implement and improve Retail solutions. You will deliver an integrated Retail solution fitting our group’s needs, focusing on the understanding of business processes focusing especially on financial aspects. Your main task is to deliver parameterization and development as of maintaining support and develop Retail. Establishing user and technical documentation, providing some training and bringing in new ideas based on a solution oriented approach is also part of the job. In addition, you will liaise with internal and external services and will be responsible for application management and the development of identified Retail processes. Your responsibilities • Implement Retail solutions of Brands and countries • Provides support to internal users • Analyze and specifies development enhancements and new functions on Retail platforms • Coordinates, schedules, tests, implements solutions in order to remain on current levels of software utilized in the supported sites • Seek out opportunities to optimize financial processes • Recommend loss prevention measures Profile Bachelor degree or equivalent in business and/or finance • 3- 5 years’ relevant work experience • Retail systems exposure/knowledge. SAP Finance knowledge is a plus. • Cegid CBR system experience a plus • Strong project management skills • Experience with Microsoft Office Suite and Microsoft Operating Systems • Fluent in English and French and/or German Professional requirements Bachelor degree or equivalent in business and/or finance • 3- 5 years’ relevant work experience, Retail systems exposure/knowledge. Languages Fluent in English and French and/or German ',\n", + " '[\"Professionalism\", \"Coordinating\", \"Scheduling\", \"Integration\", \"Microsoft Office\"]',\n", + " '[\"Utility Software\", \"Operating Systems\", \"Microsoft Operating Systems\", \"Project Management\", \"Finance\", \"Loss Prevention\", \"Business Process\", \"Additives\", \"Maintainability\", \"Levelling\", \"Job Descriptions\", \"SAP Knowledge Warehouse\", \"Technical Documentation\", \"Branding\"]',\n", + " \"['English', 'Telugu', 'Chichewa']\"],\n", + " ['54',\n", + " 'scientific consultant/field application scientist',\n", + " 'Basel',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.genedata.com',\n", + " '[[-2.32442379e-01 3.07738304e-01 3.99056196e-01 -2.70836577e-02\\n6.56583786e-01 -5.14619537e-02 -3.88629101e-02 2.16710836e-01\\n5.41671105e-02 -3.65262270e-01 -5.75208887e-02 -2.65726984e-01\\n-1.72851030e-02 2.60878086e-01 1.39552383e-02 5.63386559e-01\\n3.62089574e-01 3.96771282e-02 -9.41991806e-02 3.56274962e-01\\n-5.69989122e-02 -2.42773950e-01 5.02247214e-02 8.23738694e-01\\n3.24123740e-01 6.94254786e-03 -1.77322656e-01 1.00362211e-01\\n-2.35687435e-01 -1.63654178e-01 5.07943273e-01 1.21569917e-01\\n-2.38539785e-01 -4.81321871e-01 6.84724674e-02 1.58220410e-01\\n-2.25910336e-01 6.19722949e-03 -2.18426913e-01 1.20587371e-01\\n-5.92146397e-01 -2.01387703e-01 -7.36053139e-02 7.53944665e-02\\n-2.64677465e-01 -3.64674091e-01 -6.15307316e-03 -4.80009206e-02\\n2.44331494e-01 6.69034198e-02 -3.81608367e-01 2.56636143e-01\\n-4.03986573e-01 -1.84787408e-01 3.12528133e-01 6.92409873e-01\\n-7.89592341e-02 -4.88350838e-01 -6.04032993e-01 -3.58812571e-01\\n5.93140908e-02 -5.86972982e-02 1.92329317e-01 -4.75805640e-01\\n3.39513659e-01 9.15621072e-02 1.34341354e-02 2.89688170e-01\\n-8.39130759e-01 -2.49590978e-01 -3.35327774e-01 9.25211310e-02\\n-2.72830367e-01 -2.10000388e-02 -2.61939406e-01 1.69139169e-02\\n-1.35113761e-01 3.53417754e-01 -2.40524467e-02 9.96802300e-02\\n-1.81974962e-01 3.26806903e-01 -2.62390912e-01 3.48742127e-01\\n7.76790082e-02 2.17974648e-01 2.93708682e-01 3.27362180e-01\\n-2.66070187e-01 4.73173320e-01 1.68133423e-01 -3.44853580e-01\\n2.13494539e-01 9.46282074e-02 3.67666721e-01 -3.16059068e-02\\n2.43596822e-01 1.16984189e-01 -4.54034269e-01 2.83447415e-01\\n2.36201704e-01 -3.56486201e-01 1.41795546e-01 -1.51516601e-01\\n5.02755046e-02 -5.24020419e-02 1.38191536e-01 7.64484257e-02\\n-4.96059299e-01 6.24560237e-01 -4.82736155e-02 -2.51710296e-01\\n-1.39408618e-01 -5.07217169e-01 -1.52183965e-01 1.97517961e-01\\n-4.27782685e-02 1.29341125e-01 9.18544680e-02 2.09814966e-01\\n2.55204499e-01 -2.76704989e-02 1.36783272e-01 7.58589029e-01\\n-8.91354978e-02 -1.24567505e-02 -1.26805782e-01 1.99975014e-01\\n1.80370420e-01 -2.64291406e-01 2.90985793e-01 1.30984694e-01\\n2.58466601e-03 -1.01340584e-01 -2.23201007e-01 2.24601954e-01\\n2.01595873e-02 -3.03292215e-01 -2.25105658e-01 3.17411721e-01\\n9.46880877e-02 -5.20789862e-01 6.35551333e-01 -1.60975326e-02\\n1.67411372e-01 -4.36340943e-02 5.87628447e-02 -1.14940353e-01\\n4.18886021e-02 1.96062341e-01 2.48873174e-01 2.14157447e-01\\n-2.18030497e-01 -2.67030060e-01 -6.99123368e-02 8.33025649e-02\\n-4.75801766e-01 1.33130029e-01 -7.00868368e-02 -1.15509093e-01\\n3.74666929e-01 2.42697634e-03 -3.81397992e-01 2.08057284e-01\\n-1.92758903e-01 -1.72918383e-02 1.20048728e-02 4.74323511e-01\\n-2.10934550e-01 2.53578424e-01 -1.84125900e-01 -1.37920976e-01\\n6.67226791e-01 1.28614143e-01 3.73597503e-01 9.46645141e-02\\n3.30942065e-01 -1.19044006e-01 1.98491126e-01 3.77705619e-02\\n-7.23338962e-01 4.29489166e-01 -7.97711387e-02 -3.09408069e-01\\n1.69961601e-01 -1.99996993e-01 5.01872122e-01 -2.91776419e-01\\n2.49987599e-02 -1.69333428e-01 -2.95621842e-01 -3.56718183e-01\\n-2.09738225e-01 -7.61451665e-03 3.33374918e-01 -3.18108767e-01\\n-3.90474424e-02 2.30349109e-01 -6.09039366e-01 -2.01040953e-01\\n1.81049198e-01 1.91210836e-01 2.08117276e-01 7.44753703e-02\\n-1.70233592e-01 -7.19654799e-01 7.18926787e-02 -4.95360225e-01\\n-1.82624698e-01 6.06344305e-02 -3.59937906e-01 2.40485370e-01\\n-8.15402567e-02 1.96651965e-02 -9.33565497e-02 1.38061076e-01\\n-1.88314527e-01 5.71838096e-02 1.23764602e-02 -2.60408986e-02\\n1.69260055e-01 9.64049548e-02 -4.70478952e-01 4.64293301e-01\\n-2.30761796e-01 5.80371141e-01 -1.45201404e-02 -7.80861139e-01\\n4.89111036e-01 4.86604184e-01 2.98841633e-02 -2.76401877e-01\\n5.85330963e-01 -4.36097443e-01 -1.34886831e-01 2.81325486e-02\\n-4.29145932e-01 -2.12550968e-01 7.04684779e-02 -2.51096755e-01\\n-2.97495723e-01 5.27800679e-01 6.29262775e-02 1.88219219e-01\\n3.65226179e-01 -1.81559578e-01 -1.35169342e-01 1.40606478e-01\\n-9.61726755e-02 -2.16735393e-01 -6.32967353e-01 -2.06193298e-01\\n-4.26792018e-02 -3.81757081e-01 -5.50195836e-02 -3.71231496e-01\\n-6.74760863e-02 -2.32709303e-01 -2.11190253e-01 7.12805614e-03\\n3.07608187e-01 2.08460793e-01 -1.87103581e-02 5.56767322e-02\\n-1.29283085e-01 -7.74057686e-01 4.97019887e-02 1.35979354e-01\\n3.15975845e-01 3.53715718e-01 1.14296950e-01 -2.31418386e-02\\n2.22290214e-03 5.10602891e-01 -3.86080205e-01 -3.91206533e-01\\n3.52677554e-02 2.08746955e-01 4.89863902e-02 -1.17181569e-01\\n1.99449673e-01 3.50901425e-01 -2.11591825e-01 8.63744617e-02\\n-8.83418545e-02 -7.25206509e-02 4.18237448e-01 -4.51538377e-02\\n-2.92016447e-01 -5.91106340e-02 -2.68920064e-01 6.07148260e-02\\n-5.14914632e-01 -2.72147536e-01 3.59722465e-01 -4.37740088e-02\\n1.76675603e-01 1.89731538e-01 1.41168416e-01 3.82324979e-02\\n-2.13246018e-01 -3.90323728e-01 4.25515473e-01 6.11937009e-02\\n5.83200902e-02 1.13105133e-01 -6.59661368e-03 -6.34525895e-01\\n-3.03469348e+00 -6.13375977e-02 9.52121802e-03 -2.41200656e-01\\n4.11783099e-01 -7.55954236e-02 1.65503681e-01 -6.50815517e-02\\n-2.76874661e-01 6.35305196e-02 -1.41984761e-01 -3.11619550e-01\\n1.40695348e-01 1.51296586e-01 1.28531292e-01 5.42428643e-02\\n5.74936010e-02 -2.79139340e-01 7.29653835e-02 4.37327504e-01\\n-2.84770168e-02 -7.17190981e-01 1.30334347e-01 7.68823475e-02\\n2.47291654e-01 3.56453240e-01 -6.16812289e-01 -1.25489697e-01\\n-3.46225768e-01 -2.33285636e-01 1.81676090e-01 -2.66291916e-01\\n-1.63844749e-01 2.77898967e-01 1.89369515e-01 -1.45473361e-01\\n-1.05180470e-02 -3.33743274e-01 -9.89596546e-02 -5.35880327e-01\\n1.35906219e-01 -5.87640226e-01 -9.33447257e-02 -2.44360194e-01\\n6.26185000e-01 -2.02125475e-01 1.91916883e-01 1.21745184e-01\\n1.56054184e-01 1.74986109e-01 2.12640196e-01 6.92513287e-02\\n-1.18076600e-01 -1.11742005e-01 -6.85724765e-02 -2.02516153e-01\\n5.75369716e-01 3.16606164e-01 -2.83073962e-01 -1.28682740e-02\\n1.68891281e-01 -3.02579522e-01 -5.72280705e-01 -1.66499570e-01\\n-1.49839446e-01 -1.61743075e-01 -5.59600413e-01 -4.29784268e-01\\n-1.28293797e-01 -9.80977193e-02 -2.34381109e-03 6.44748032e-01\\n-3.15855145e-01 -2.14313835e-01 1.65215414e-02 -5.08993328e-01\\n2.86774337e-01 -9.86029208e-02 1.18833482e-02 -2.17344284e-01\\n-2.73361981e-01 -5.32851100e-01 1.64437652e-01 -6.03721663e-02\\n-2.73424499e-02 -2.49530703e-01 -1.47405341e-01 -3.32870707e-02\\n-3.70957136e-01 -5.24775386e-01 4.05381322e-01 9.72573757e-02\\n4.25845146e-01 8.51523280e-02 1.59927458e-01 -2.17530325e-01\\n2.94481456e-01 2.47242544e-02 5.91279343e-02 -3.10467958e-01\\n1.35945166e-02 2.92563625e-02 4.89490867e-01 -1.15475401e-01\\n-1.04606792e-01 -5.05292043e-02 -3.02600414e-01 -9.26430821e-02\\n3.40641886e-01 -8.70705098e-02 2.66492441e-02 -7.03636706e-02\\n3.19053829e-01 -2.73771942e-01 -5.13524413e-02 1.03461698e-01\\n1.32545024e-01 7.65318036e-01 6.28628433e-02 -4.00142252e-01\\n-8.10757130e-02 3.57248753e-01 -2.06922024e-01 1.33682862e-01\\n-2.70684715e-02 7.60252699e-02 -2.65021086e-01 3.30453515e-01\\n5.44475317e-02 -8.18144754e-02 -1.57014057e-01 -1.61569178e-01\\n-1.89940423e-01 3.02544534e-01 2.83511639e-01 2.02994585e-01\\n-7.92443529e-02 -2.94725865e-01 -1.50302261e-01 3.31764102e-01\\n2.14060768e-01 4.03191328e-01 1.91767722e-01 -2.37404287e-01\\n-1.17510587e-01 3.08192104e-01 -1.08263865e-01 3.18853796e-01\\n-1.39326900e-01 1.65630504e-01 -5.89734912e-01 -4.29030359e-02\\n-4.10736501e-01 -3.31209838e-01 2.24690050e-01 4.06404763e-01\\n2.27813810e-01 -1.29744560e-01 9.46846977e-02 -4.30739284e-01\\n1.96246237e-01 1.60955489e-01 4.73779850e-02 -2.54090559e-02\\n-2.09319949e-01 5.57296753e-01 -7.63453096e-02 -2.54182160e-01\\n-8.70946869e-02 5.38765229e-02 -2.61154503e-01 -1.71153188e-01\\n2.15041012e-01 -4.73926425e-01 -1.67470634e-01 2.80276358e-01\\n1.38712376e-01 -1.68808460e-01 -3.00579071e-01 3.77027124e-01\\n6.16286369e-03 -4.61226881e-01 -3.65501642e-01 -4.46242765e-02\\n3.21592331e-01 8.78513902e-02 2.28920728e-01 -5.86782336e-01\\n-5.19755259e-02 -5.28373793e-02 -4.81466427e-02 3.88798833e-01\\n-1.68965489e-01 -1.56518333e-02 -1.70848072e-01 -1.25513181e-01\\n3.95823896e-01 -7.49285892e-03 -4.95692901e-02 8.19482580e-02\\n7.74428546e-02 -2.36917481e-01 -3.51838470e-01 2.34114919e-02\\n-3.88629138e-02 -2.03384325e-01 -1.38144076e-01 2.29392320e-01\\n1.09325657e-02 1.26697153e-01 -6.16341829e-01 -1.54170260e-01\\n-1.82784826e-01 6.08055815e-02 -4.74814512e-02 -5.57095110e-01\\n-3.55729237e-02 -1.99092269e-01 -5.11761665e-01 2.62366831e-01\\n-9.36825424e-02 -1.31517902e-01 2.20228449e-01 -2.05761287e-02\\n-2.81221479e-01 -1.79363862e-01 8.89880303e-03 2.57389337e-01\\n-3.45206201e-01 -2.54300147e-01 -7.87793100e-02 -9.11462665e-01\\n8.02039877e-02 7.98257291e-02 -1.28931329e-01 1.46059453e-01\\n-1.05976507e-01 -5.90200424e-01 1.57370567e-01 -3.58438671e-01\\n-1.10712744e-01 -2.97286585e-02 -3.15314293e-01 -5.18359281e-02\\n1.24939263e-01 7.24566169e-03 -2.41730705e-01 2.75774807e-01\\n-2.30751440e-01 3.09834301e-01 -2.00493902e-01 2.43222751e-02\\n2.08485574e-02 -1.48160905e-01 2.95591176e-01 -2.32712105e-01\\n-4.58940089e-01 -1.36098534e-01 -2.34504044e-01 -1.23537526e-01\\n-1.28428802e-01 -2.28376091e-01 2.01412775e-02 6.47189096e-02\\n4.76199746e-01 -5.59079982e-02 -1.50721937e-01 -1.56556576e-01\\n1.07670739e-01 -5.33652008e-01 8.61099139e-02 -4.05896008e-02\\n-9.05444846e-04 -5.35680205e-02 4.33252826e-02 1.54006422e-01\\n3.41710687e-01 -4.61550593e-01 4.04270351e-01 -5.42552590e-01\\n-3.62047374e-01 -1.28544137e-01 2.70606652e-02 2.02727336e-02\\n2.86612302e-01 -5.11082530e-01 -2.53720824e-02 3.18889081e-01\\n5.93949631e-02 4.76487726e-03 2.44288251e-01 -1.50833070e-01\\n-1.79235965e-01 2.14298427e-01 -2.99159825e-01 1.20361798e-01\\n9.02350187e-01 3.02395076e-01 1.92661919e-02 2.30523065e-01\\n1.34616315e-01 3.47339958e-01 4.97985303e-01 -3.15038767e-03\\n-1.27127012e-02 3.40488553e-01 1.68656141e-01 -4.23993647e-01\\n-1.61434010e-01 6.70711249e-02 -1.46439567e-01 -4.88276631e-01\\n6.79491639e-01 2.96415299e-01 -4.29011464e-01 -2.58326173e-01\\n-2.59714305e-01 -9.67805758e-02 1.90644547e-01 -1.05458230e-01\\n3.43606733e-02 -8.65786746e-02 4.88759816e-01 -6.79901540e-02\\n9.30004939e-02 5.64005494e-01 -5.58255576e-02 -2.06642300e-01\\n-9.01564881e-02 2.11891010e-01 1.60535485e-01 5.16209960e-01\\n-1.24296106e-01 2.39304364e-01 -1.37977287e-01 2.12765634e-02\\n-1.88231409e-01 1.72804058e-01 2.68478453e-01 6.47890493e-02\\n5.85948266e-02 1.28820315e-01 5.82628906e-01 5.88080049e-01\\n3.92452300e-01 2.66587734e-01 3.32661688e-01 3.79032120e-02\\n5.07516026e-01 4.10881281e-01 2.30346859e-01 3.18531096e-02\\n-9.70747322e-04 2.30345070e-01 1.73367172e-01 4.46295813e-02\\n4.15993273e-01 2.71433294e-01 4.40230556e-02 8.23480308e-01\\n1.90676600e-01 2.88234293e-01 6.15596294e-01 -6.13289237e-01\\n-2.93532610e-01 6.14848621e-02 4.95927036e-01 -4.12347674e-01\\n1.25404656e-01 1.61690205e-01 -1.07983485e-01 2.72096515e-01\\n-5.64436376e-01 -2.17067778e-01 2.91454047e-03 1.60865024e-01\\n1.11436784e-01 -2.03232080e-01 -5.40719926e-02 6.66900352e-02\\n-1.02776587e-01 -2.18793243e-01 -4.61653501e-01 -2.26520419e-01\\n-3.07220221e-01 -1.43419281e-02 -4.74092476e-02 -2.42149085e-01\\n1.51533820e-02 -1.75533205e-01 1.49528101e-01 -1.03782229e-01\\n3.65668774e-01 -1.92489579e-01 -5.45778349e-02 -3.31634879e-02\\n5.39122939e-01 2.64480822e-02 5.59886694e-01 -9.67102647e-02\\n9.81148332e-03 -1.18649408e-01 -1.51837826e-01 1.77474052e-01\\n8.03755820e-02 1.03485435e-01 1.00138530e-01 1.81097329e-01\\n-2.61407852e-01 -2.90009916e-01 1.69499546e-01 3.01765293e-01\\n-3.84069681e-01 1.34308748e-02 -4.47389223e-02 2.69308947e-02\\n-1.73465107e-02 8.76316801e-02 -1.70689479e-01 -5.24713658e-02\\n-3.19772437e-02 -4.15383041e-01 2.45901540e-01 -4.31711897e-02\\n-3.98227662e-01 -1.75727308e-02 4.88632023e-01 2.34511882e-01\\n-1.93984091e-01 -2.49437522e-02 -1.59829989e-01 1.36674941e-01\\n1.83949955e-02 1.51006550e-01 -6.48707151e-02 -4.74141479e-01\\n-3.72587979e-01 2.15488255e-01 -1.52674481e-01 5.81661128e-02\\n5.40572181e-02 3.89264226e-01 -1.01188987e-01 5.58998734e-02\\n5.54651618e-01 -9.09994915e-02 -2.47718334e-01 -3.59937906e-01\\n-7.79160559e-02 -1.13661915e-01 -1.37385368e-01 -6.98653907e-02\\n1.95851669e-01 -3.37328911e-01 -2.07518935e-01 -3.16191971e-01\\n-3.12869251e-02 -3.33085537e-01 6.97566569e-02 -5.68944365e-02]]',\n", + " 'The Position Genedata is seeking a Scientific Consultant / Field Application Scientist to fill an opening in our growing Genedata Profiler (Precision Medicine) team. Precision medicine requires scientists to characterize the genomic profile of patients to better understand patients’ response to new therapies, to efficiently stratify patients for clinical trials or to identify novel biomarkers for patient monitoring. Genedata Profiler, a highly innovative tool in the era of precision medicine, provides a comprehensive, enterprise solution for the processing, management, integration, and analysis of massive amounts of clinical, phenotype, and multi-omic data. The Scientific Consultant is a scientific and technical consultant for our customers. It is a highly dynamic job: you will wear many different hats, interact with many different people such as clinicians, bioinformaticians, and software developers, and use your scientific and technical knowledge to solve real-world scientific problems in precision medicine. This position is especially well-suited for you if you have a scientific/technical background, enjoy variety in your daily work, and want to expand your skill set (scientific, technical, and soft skills). This full-time position is based in Basel, Switzerland and requires regular travel within Europe. Key Responsibilities First and foremost, you will act as an expert in scientific and IT matters related to translational and clinical data analysis in general and the use of our Genedata Profiler software in particular. You will combine this expertise with excellent communication skills and project management know-how to (a) be a vital part of the sales team, (b) propose, plan, execute and manage projects, and (c) support our customers in getting the most out of Genedata Profiler. (a) You will work in tandem with our Business Development Managers in establishing and communicating the value of Genedata Profiler to prospects and customers. Tasks include qualifying customer needs, giving presentations and demos, and managing software evaluation projects. (b) In addition, you will act as scientific consultant for data science projects. For example, you will help our customers with exploratory clinical trial design, identify biomarkers for response or adverse events, conduct mechanistic interpretation of results from mode-of-action studies, and devise stratification strategies based on the results obtained. You will ensure results delivery at the level of excellence that our customers know us for. This involves proper project set up and planning to achieve the customer’s goals; specifying and coordinating and executing the implementation work; guaranteeing adherence to scope, budget and timelines; managing change in the project; controlling the quality of all deliverables; providing customer feedback to product management; and supporting the Profiler team to keep improving our processes. (c) You will establish relationships based on trust with our customers by being their first point of contact and a sparring partner on scientific and technical matters, including user trainings and product support. We want our customers to have excellent translational and clinical data analysis processes, and you will be responsible to help enable this. Further, you will channel the insights gathered through your customer interactions back to our Development and Product Management team, help them to define end-to-end user stories and workflows matching their requirements, thereby assuring that Profiler is developed to maximize value for our customers. In addition to the core responsibilities listed above, we want you to help all of us in the Profiler team to improve, and we count on your knowledge, creativity, and technical skills to further advance our science, marketing, development, and product management. Your Profile Essential Skills and Experience: Excellent communication skills: you will be exposed to a range of different people, so you should feel comfortable interacting with customers at all levels (managers, scientists, and IT experts) and be prepared to constantly communicate internally. Solid scientific background (PhD level preferred) in statistical genetics, bioinformatics, biostatistics, computational biology, machine learning, data science or related field. 3+ years of working experience in translational / clinical research would be a definitive advantage, in particular experience with exploratory clinical trial data, biomarker research, patient stratification & companion diagnostics approaches, ideally at a contract research organization, in a clinic or a pharmaceutical company. If you do not have experience in any of these companies, we look forward to receiving your application if you possess the skills listed below, are a fast learner and wish to quickly delve into the scientific and technical challenges of cutting-edge technologies in the context of Pharmaceutical R&D. Additional Preferred Skills and Experience: Scientific experience and technical skills: Expertise in human genetics or molecular epidemiology, with a strong grasp of genomic approaches, technologies, and analytics to inform clinical trial design and enrichment, e.g. GWAS/RVAS/PheWAS. Profound understanding of biostatistics is essential; experience with methods of causal interference would be desirable. Solid background in oncology and/or immunology would be a plus. Expert knowledge of statistical programming in R is required, as well as working experience with SAS and scripting languages (Python or similar). Project management experience: delivering on time; planning resources and milestones; coordinating teams within and across organizations. Excellent presentation skills. Industry knowledge: You will work with a range of omics technologies and application areas (please see our website for currently supported technologies), so deeper knowledge within a few or broader knowledge across several of them would be desirable. Our customers are mainly pharmaceutical research organizations, thus your experience with pharmaceutical research and the drug discovery process would be valuable to us. The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Profiler Developed in collaboration with leading pharmaceutical companies, Genedata Profiler provides a comprehensive, scalable and interoperable computational platform that addresses the major challenges associated with omics-based precision medicine. The innovative software platform combines high-performance raw omics data processing pipelines, sophisticated data analyses and unparalleled data visualizations with an advanced distributed data management infrastructure. Genedata Profiler accelerates the genomic profiling of patients, at scale and according to the highest data privacy and regulatory standards. Are you interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Genedata is an Equal Opportunity Employer.',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Coordinating\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Timelines\", \"Operations\", \"Presentations\", \"Innovation\", \"Creativity\", \"Positivity\", \"Sales\", \"Consulting\"]',\n", + " '[\"Milestones (Project Management)\", \"Genomics\", \"Collections\", \"SAS (Software)\", \"High Performance Computing\", \"Genetics\", \"Python (Programming Language)\", \"Computational Biology\", \"Know Your Customer\", \"Pipelining\", \"Data Visualization\", \"Evaluation Projects\", \"Budgeting\", \"Patient Monitoring\", \"Clinical Research\", \"Project Management\", \"International Communications\", \"Amazon Data Pipeline\", \"Business Development\", \"Technical Consulting\", \"Epidemiology\", \"Product Management\", \"Interactivity\", \"Statistics\", \"Machine Learning\", \"Plan Execution\", \"Industrialization\", \"Levelling\", \"Open Management Infrastructure\", \"Customer Interaction Management\", \"Biostatistics\", \"Electronic Data Processing\", \"Survey Data Analysis\", \"Humanism\", \"Pharmaceuticals\", \"Product Support\", \"B (Programming Language)\", \"Profiling (Computer Programming)\", \"Controllability\", \"Programming (Music)\", \"Analytics\", \"Market Development\", \"Integrity Management\", \"Clinical Trials\", \"Clinical Research Informatics\", \"E (Programming Language)\", \"Resource Planning\", \"Translations\", \"Management Process\", \"Executable\", \"Microsoft Delve\", \"C (Programming Language)\", \"Equalization\", \"R (Programming Language)\", \"Clinical Data Management\", \"Adverse Event Monitoring\", \"Software Development\", \"Phenotyping\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Analysis\", \"User Story\", \"Life Sciences\", \"Immunology\", \"Informatics\", \"MASSIVE (Software)\", \"Scale (Map)\", \"Contract Research Organization\", \"Agile Edge Technologies\", \"Idealization\", \"Computing Platforms\", \"Data Science\", \"Scalability\", \"Receivables\", \"Adapter Scripting Language\", \"Stratifying\", \"Drug Discovery\", \"Bioinformatics\", \"Interoperability\", \"Workflows\", \"Change Management\"]',\n", + " \"['English', 'Arabic']\"],\n", + " ['121',\n", + " 'frontend engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.teralytics.ch',\n", + " '[[-1.23579845e-01 2.93399215e-01 5.25721729e-01 7.85023421e-02\\n4.19699490e-01 -2.49111410e-02 -3.58503014e-02 4.96793211e-01\\n-4.65962850e-02 -5.25776505e-01 5.66240326e-02 -3.19739103e-01\\n-1.27106056e-01 1.03402823e-01 -7.67607242e-04 4.35630441e-01\\n3.35431159e-01 9.88462418e-02 -2.23248124e-01 3.93326521e-01\\n7.20900446e-02 -7.34687746e-02 2.07197875e-01 8.84832740e-01\\n3.73518050e-01 -1.33740097e-01 -4.51790467e-02 5.29524237e-02\\n-2.02978402e-01 -1.64191395e-01 5.08260608e-01 4.06589285e-02\\n-3.14435959e-01 -3.66170794e-01 1.14152431e-01 -4.14469130e-02\\n-2.94421703e-01 -2.69246846e-01 -1.70056671e-01 1.52753592e-01\\n-5.40310740e-01 -2.83601463e-01 -1.90319389e-01 8.26458633e-03\\n-2.35858276e-01 -2.50487238e-01 9.83743817e-02 7.49109238e-02\\n1.11827746e-01 7.21769854e-02 -5.25439143e-01 1.81697950e-01\\n-2.10754052e-01 -1.49727657e-01 3.56817663e-01 5.10881841e-01\\n-5.90718612e-02 -4.22961116e-01 -5.11825025e-01 -4.03737128e-01\\n5.97058013e-02 -5.69449328e-02 2.64540222e-02 -4.63153303e-01\\n2.24637926e-01 1.25168815e-01 1.09981865e-01 3.10152501e-01\\n-6.98030829e-01 -1.43823177e-01 -3.40612382e-01 -1.15538470e-01\\n-2.96571046e-01 -1.16844095e-01 -3.78809333e-01 -1.40633702e-01\\n-1.68254465e-01 4.72057998e-01 5.68039566e-02 5.02098463e-02\\n-2.18380883e-01 4.63668913e-01 -2.18298107e-01 4.32817578e-01\\n1.68341547e-01 3.68644536e-01 1.86919451e-01 3.14986885e-01\\n-3.74770939e-01 4.42581296e-01 1.13608710e-01 -3.85571271e-01\\n2.03325033e-01 1.44699991e-01 4.22388673e-01 -9.77218449e-02\\n3.63011956e-01 -4.82609048e-02 -3.16630065e-01 4.41865563e-01\\n3.64671111e-01 -3.98974359e-01 2.49471486e-01 -1.12911776e-01\\n1.61653131e-01 -1.00586832e-01 1.55575186e-01 1.21311754e-01\\n-2.45256603e-01 3.48027229e-01 1.05345279e-01 -2.48117715e-01\\n-1.67894587e-02 -4.67990041e-01 2.73228027e-02 5.78152835e-02\\n2.87929736e-02 -2.45071203e-02 1.01956859e-01 3.60882320e-02\\n2.37855911e-01 -1.79064330e-02 4.23837639e-02 6.30572140e-01\\n-1.60771668e-01 -1.24343172e-01 -2.02874810e-01 2.53848493e-01\\n2.23280378e-02 -2.53743559e-01 2.40192980e-01 2.38810033e-01\\n-1.28863864e-02 -2.54537821e-01 -2.67847300e-01 3.85174394e-01\\n1.01309299e-01 -2.34340757e-01 -2.28538096e-01 3.40746343e-01\\n7.25050420e-02 -3.58729243e-01 6.99770331e-01 1.00742951e-01\\n2.00497717e-01 -6.63858727e-02 -1.05420277e-02 -1.86222062e-01\\n-6.72279894e-02 -6.03388995e-02 3.35646421e-03 1.43918753e-01\\n-1.78532243e-01 -3.14929008e-01 -8.07268918e-02 -8.87499377e-03\\n-5.17841756e-01 1.93727106e-01 -9.22134519e-02 -4.46382612e-02\\n1.95082463e-02 -7.15325847e-02 -2.45175794e-01 2.87806809e-01\\n-1.96319774e-01 7.24045485e-02 6.12854697e-02 5.29392421e-01\\n-9.18594599e-02 2.56735981e-01 9.18153077e-02 -1.81125790e-01\\n6.16453290e-01 3.30388188e-01 2.27801234e-01 9.50129181e-02\\n1.60699770e-01 2.33827662e-02 -4.02905792e-03 1.45025283e-01\\n-8.44521284e-01 2.95116007e-01 3.45449299e-02 -1.96054369e-01\\n1.64220184e-01 -1.45139575e-01 1.58551440e-01 -2.52801180e-01\\n-3.69728766e-02 -1.27791554e-01 -2.29090452e-01 -2.73631901e-01\\n-7.62037113e-02 -1.87940031e-01 2.54311323e-01 -5.45333028e-01\\n-7.42686614e-02 1.07227545e-02 -5.32564819e-01 -1.64876759e-01\\n-1.01291398e-02 1.83962762e-01 1.44209027e-01 8.03280920e-02\\n-1.02256030e-01 -5.28380156e-01 5.00006117e-02 -3.36201906e-01\\n-3.05362165e-01 -9.96300112e-03 -3.94033492e-01 1.18415929e-01\\n5.80518208e-02 -8.36820602e-02 -1.60000950e-01 4.78587523e-02\\n-2.07779735e-01 -6.09468743e-02 -1.50434867e-01 -4.12155129e-03\\n1.97905034e-01 1.20966122e-01 -3.05731207e-01 4.44832891e-01\\n-1.37671858e-01 6.59154177e-01 4.63377386e-02 -6.96983933e-01\\n4.91092056e-01 4.44897592e-01 -8.76761079e-02 -3.68802160e-01\\n4.57046330e-01 -3.26403081e-01 -1.36404410e-01 -2.02308968e-02\\n-3.43472868e-01 -3.30782712e-01 1.54344887e-01 -2.68709123e-01\\n-2.46033713e-01 4.35492754e-01 6.19320981e-02 1.66537344e-01\\n2.27961063e-01 -3.24186057e-01 -6.39095679e-02 -2.15834491e-02\\n-7.68651292e-02 -2.32477263e-01 -6.68751359e-01 -2.17776939e-01\\n-2.05967546e-01 -3.81371558e-01 -3.24803442e-02 -4.17229533e-01\\n-1.43407971e-01 -3.13632876e-01 -9.87014472e-02 2.20309868e-01\\n3.10815573e-01 -4.17306796e-02 -1.06487602e-01 9.31433365e-02\\n-2.06051186e-01 -6.99862123e-01 4.99978922e-02 1.62259415e-01\\n4.41062331e-01 1.96381152e-01 2.71242410e-01 -1.99359097e-02\\n6.66364208e-02 7.89240837e-01 -1.99498922e-01 -1.20881185e-01\\n1.77721083e-01 2.18578130e-01 1.23111680e-01 -4.69625928e-02\\n1.98409289e-01 3.23943257e-01 -2.97700077e-01 3.40049081e-02\\n5.74410334e-02 -9.90053266e-03 5.05695462e-01 2.30510868e-02\\n-2.98630536e-01 -1.27244949e-01 -1.64279584e-02 3.30367275e-02\\n-4.19255972e-01 -1.97610706e-01 4.46426272e-01 2.09593773e-01\\n2.19281316e-01 5.55627905e-02 1.07027918e-01 1.00451887e-01\\n-1.92829013e-01 -3.29990387e-01 3.68354857e-01 8.79892558e-02\\n7.61021972e-02 1.38752669e-01 5.18997125e-02 -5.20616829e-01\\n-3.20654821e+00 -8.53528976e-02 1.97419852e-01 -1.44088686e-01\\n1.89393193e-01 3.10317911e-02 3.24844383e-03 -7.36726448e-02\\n-2.35015035e-01 7.75593966e-02 -1.78666636e-01 -2.16080248e-01\\n1.37819514e-01 8.12493861e-02 3.67712490e-02 7.77714774e-02\\n2.00591594e-01 -2.47883171e-01 -6.99451268e-02 2.49238819e-01\\n-1.90491140e-01 -7.28970408e-01 1.05000138e-01 -3.53961401e-02\\n2.88512290e-01 2.79749960e-01 -3.72640848e-01 -1.85696110e-01\\n-1.44766510e-01 -2.09772557e-01 -2.58958116e-02 -4.32846606e-01\\n-1.69027567e-01 1.67008698e-01 2.71183193e-01 -3.11063528e-02\\n1.96449645e-03 -3.58851790e-01 -2.75279522e-01 -5.30766428e-01\\n5.29328808e-02 -5.11140645e-01 -8.40596156e-04 -2.07475871e-01\\n8.06700110e-01 -2.43226305e-01 1.42410129e-01 2.50463169e-02\\n4.69836108e-02 5.20456992e-02 2.53179222e-01 1.26054049e-01\\n-2.27574944e-01 -2.54944682e-01 -3.90350968e-02 -1.81579858e-01\\n5.56796074e-01 3.06474060e-01 -1.75938100e-01 -9.23742279e-02\\n1.18065901e-01 -2.08107501e-01 -4.98447090e-01 -1.07085496e-01\\n-1.14153959e-02 -2.07301080e-01 -6.53504431e-01 -3.91476274e-01\\n-7.86846131e-02 -2.17786431e-01 -2.25293085e-01 6.03317440e-01\\n-3.57819617e-01 -2.56108820e-01 1.61022022e-02 -4.77542847e-01\\n4.67649877e-01 -2.00655818e-01 2.15705931e-02 -3.20451081e-01\\n-2.71206945e-01 -4.39194083e-01 2.53454074e-02 -8.34199041e-02\\n-5.01807928e-02 -3.63148808e-01 4.88334075e-02 -6.82196170e-02\\n-1.28324598e-01 -5.70201457e-01 4.67823505e-01 1.67164207e-01\\n2.19043970e-01 1.48196429e-01 4.22282159e-01 -8.18097293e-02\\n1.64819807e-01 1.63131133e-01 -1.41461968e-01 -2.18828723e-01\\n1.22757792e-01 4.85173762e-02 3.27694058e-01 -6.29526824e-02\\n-1.45245371e-02 1.11125901e-01 -2.96625614e-01 6.00766316e-02\\n2.45641023e-01 -7.01929182e-02 8.21780786e-02 -1.15494668e-01\\n3.62400413e-01 -3.08475077e-01 -1.31428773e-02 5.63411862e-02\\n1.56273633e-01 6.38420701e-01 1.67827308e-03 -4.10116792e-01\\n-1.17930342e-02 5.08486092e-01 8.06755479e-03 1.24444082e-01\\n-2.49771222e-01 1.19322285e-01 -3.18730891e-01 2.34040931e-01\\n1.00715168e-01 -2.03780025e-01 -2.05699891e-01 -8.98755938e-02\\n-1.18600890e-01 3.82208228e-01 2.96510309e-01 9.72151011e-02\\n9.50306207e-02 -4.99423563e-01 -2.14457884e-01 2.50590175e-01\\n2.79440045e-01 5.46361685e-01 1.55815333e-01 -2.87146270e-01\\n3.81847806e-02 3.92797828e-01 -1.09684184e-01 1.45992771e-01\\n-2.31144398e-01 1.48204818e-01 -5.06975293e-01 -2.20484823e-01\\n-4.02841985e-01 -3.74466002e-01 2.56819814e-01 3.97695839e-01\\n2.38159001e-01 -1.02527305e-01 6.90770000e-02 -3.79894376e-01\\n2.59567857e-01 2.61136174e-01 2.54649103e-01 8.48751590e-02\\n-3.60576399e-02 5.64549029e-01 1.56342447e-01 -2.44089067e-01\\n-1.13690481e-01 -2.21194960e-02 -1.34670794e-01 1.40346512e-02\\n-1.25516756e-02 -6.12455904e-01 -2.58369476e-01 3.45459074e-01\\n4.92989272e-02 -1.89965308e-01 -1.58773214e-01 3.17962438e-01\\n-1.15542129e-01 -1.15291841e-01 -2.88072765e-01 -5.20853661e-02\\n4.44818854e-01 1.19308330e-01 3.83392096e-01 -4.95261043e-01\\n-1.25604272e-01 2.51072310e-02 -3.39547023e-02 5.22853017e-01\\n-3.13350223e-02 -5.46027757e-02 -1.20501079e-01 -1.92232490e-01\\n3.85082543e-01 -2.77876496e-01 -1.93124339e-01 8.69284272e-02\\n7.32967183e-02 -1.20890826e-01 -3.95751119e-01 1.48965567e-01\\n-6.04763627e-04 -2.49997437e-01 -4.96552438e-02 3.24569464e-01\\n4.58386131e-02 1.19118482e-01 -7.42156863e-01 -2.03458786e-01\\n-2.85418570e-01 1.66426361e-01 8.67159665e-02 -5.40792346e-01\\n4.41426672e-02 -2.40284368e-01 -6.64822459e-01 2.34500900e-01\\n-2.72952318e-01 -1.87562674e-01 9.81483534e-02 1.56662650e-02\\n-2.44002163e-01 -1.50442868e-01 5.62619977e-03 3.20364356e-01\\n-2.45387256e-01 -3.06732267e-01 -8.69671702e-02 -8.80515218e-01\\n2.37986490e-01 1.38007119e-01 -2.04207525e-01 1.36368066e-01\\n-1.44270331e-01 -6.62676275e-01 3.56135294e-02 -1.19254246e-01\\n-1.35989636e-01 -7.91659728e-02 -3.15757841e-01 -2.99689442e-01\\n2.14120060e-01 -1.44177116e-04 -1.68543920e-01 4.33785975e-01\\n-3.16622972e-01 1.86901361e-01 -2.43034333e-01 3.90616991e-02\\n-8.13825205e-02 -2.97911823e-01 1.17707044e-01 -4.15840447e-01\\n-4.85785186e-01 -2.85642296e-01 -1.93121850e-01 -3.87660086e-01\\n-1.89975455e-01 -4.27620590e-01 -2.07964163e-02 -1.18472055e-03\\n2.62154698e-01 -7.60777220e-02 -1.86973438e-01 -2.59558201e-01\\n1.33079782e-01 -4.65987444e-01 1.01078242e-01 -1.36738643e-04\\n-3.67363505e-02 -2.39293382e-01 1.11524791e-01 1.18981272e-01\\n2.95704663e-01 -3.40235949e-01 2.19130903e-01 -6.52194738e-01\\n-2.68620938e-01 -5.88957369e-02 -1.58876404e-02 -2.84191482e-02\\n1.71321675e-01 -5.07032871e-01 6.77375197e-02 4.09710795e-01\\n2.13228345e-01 4.58456427e-02 2.52339602e-01 -1.71565890e-01\\n-4.99894693e-02 4.32166219e-01 -1.51055098e-01 1.39727578e-01\\n7.78289437e-01 7.37064183e-02 2.03044742e-01 2.01079816e-01\\n5.32234013e-02 2.40388662e-01 3.81585479e-01 -2.17770785e-02\\n-8.10138583e-02 1.52336821e-01 1.90713823e-01 -4.79417950e-01\\n-2.21280381e-02 2.35802978e-02 -1.41184777e-01 -3.69127065e-01\\n6.73279703e-01 3.77215564e-01 -4.57994819e-01 -4.19035591e-02\\n-5.52536026e-02 -9.70232263e-02 1.58781782e-01 1.20163709e-03\\n-9.72460955e-04 3.64994071e-02 2.63047457e-01 -1.42033651e-01\\n2.31685042e-01 5.72090387e-01 -4.95424271e-02 -2.62506485e-01\\n-9.04868990e-02 4.28061366e-01 -1.60298683e-02 5.22552848e-01\\n-2.16636449e-01 3.00592393e-01 1.11129969e-01 -6.25464786e-03\\n-6.67265803e-02 2.21259475e-01 1.70181319e-01 1.18232548e-01\\n2.02496052e-01 7.57725388e-02 3.64590108e-01 4.27349478e-01\\n3.60719919e-01 4.74992812e-01 2.70054817e-01 2.06135899e-01\\n3.98745477e-01 5.20626247e-01 4.15227413e-01 1.79552913e-01\\n-4.95510995e-02 5.99726662e-02 1.30621105e-01 -5.29425256e-02\\n3.20703149e-01 4.19076145e-01 7.91069493e-03 9.68700707e-01\\n3.32125962e-01 3.27838987e-01 6.38249278e-01 -6.99022770e-01\\n-2.74809599e-01 1.56081155e-01 4.50889587e-01 -4.40819263e-01\\n1.41057178e-01 4.63673510e-02 -5.43630123e-03 3.80127370e-01\\n-4.53974247e-01 -3.01362485e-01 1.30990725e-02 2.92919755e-01\\n4.74476404e-02 -3.00300449e-01 -2.61320174e-01 4.65546250e-02\\n-8.00867379e-02 -7.68428370e-02 -4.14825678e-01 -1.38973325e-01\\n-2.64064908e-01 -1.27689779e-01 -1.10817418e-01 -1.91261560e-01\\n2.20229663e-02 -2.60212183e-01 -1.99533217e-02 -8.95065144e-02\\n2.76820898e-01 -1.38364211e-01 -1.18192673e-01 -1.37035266e-01\\n3.71873111e-01 2.06051424e-01 5.26858747e-01 -6.35449123e-03\\n2.01185584e-01 -1.62368298e-01 -2.26636186e-01 2.04156503e-01\\n7.40240961e-02 3.95169333e-02 -5.96227795e-02 4.04631533e-02\\n-2.02656090e-01 -2.09689736e-01 1.98953390e-01 2.28882104e-01\\n-4.96074855e-01 2.49252971e-02 -2.06031740e-01 1.89417049e-01\\n-3.95829976e-02 1.88557118e-01 -1.99440986e-01 2.55305078e-02\\n-1.59616143e-01 -4.15746152e-01 2.01386094e-01 -1.42630458e-01\\n-1.43095136e-01 -3.29967663e-02 4.51712608e-01 1.18638173e-01\\n-3.14783841e-01 1.21351052e-02 -9.07522142e-02 8.78540576e-02\\n8.32986087e-04 1.61249295e-01 -1.92122221e-01 -1.87737808e-01\\n-2.37770915e-01 6.33843094e-02 -2.56481916e-01 7.76565969e-02\\n2.00481728e-01 4.43547368e-01 1.94571421e-01 -6.88022077e-02\\n5.89097023e-01 -1.01672202e-01 -2.81858563e-01 -1.74266368e-01\\n-1.23484217e-01 -9.47194621e-02 -1.96634173e-01 -5.86392283e-02\\n2.36270428e-01 -4.21762913e-01 -4.84818313e-03 -2.21713275e-01\\n-9.03806463e-03 -3.48473102e-01 7.35559836e-02 -1.08425640e-01]]',\n", + " \"Would you like to be central to our future success, where you will be a part of a very dynamic team fueled by positive energy, enthusiasm and supportive teammates? We are looking for a smart and passionate Frontend Engineer to join our Engineering Team in Zurich. About Teralytics Teralytics is on a mission to change how the world moves. Until now, cities and mobility services have been designed based on assumptions of how officials and companies expect people to move. But, they aren't taking everyone's journey into consideration. As a result, for many, mobility is limited. Not just physically, but socially and economically. It's stopping people from reaching their full potential. Teralytics partners with mobile network operators to solve this problem with the most accurate indicator of people's movement – their mobile devices. It's the one thing everyone has with them at all times. And the cell towers receiving their signals don't discriminate based on device model or apps. Due to its complexity and scale, mobile network data has been nearly impossible to understand or utilize. That's why we've pioneered a way to translate it into actionable insights. For the first time we've unlocked truly inclusive data on people's journeys. Teralytics is backed by leading investors in the mobility and transport space, including Robert Bosch Venture Capital and Deutsche Bahn Digital Ventures, as well as high-profile VC funds, such as Atomico and Lakestar, and we are continuing to grow across the world. Whether at our headquarters in Zurich or in our offices in New York and Singapore, our people are at the core of our mission to shape the future of mobility. Your Role The frontend team is one of the engineering pillars in Teralytics. The team is responsible for building interactive web applications and data visualizations that present the insights from our aggregated and anonymized data on human mobility to customers in an easily understandable, visually appealing and engaging manner. Located in our Zurich office, you will play a central role in the development of these applications. More specifically, your responsibilities will include: Taking ownership of our web applications and shaping their future direction and architecture in close collaboration with product managers and designers Developing new features, components and experiences for our web applications in close collaboration with our data visualisation specialists, designers, data scientists and backend engineers Mocking up and prototyping new functionality, visualizations and applications Designing and developing internal applications in close collaboration with data scientists and backend engineers Working with our reliability engineers for efficient deployment of web applications Tech Stack We like working with modern browsers and technologies. Our tech stack includes tools such as: React, TypeScript, Node.js, D3, SVG, Canvas, WebGL, webpack, PostgreSQL, ClickHouse, Docker, Kubernetes. Open Source As strong believers in open-source we contribute to the community by releasing some of our work as open source projects ( https://github.com/teralytics/ ). Your Profile You are a CH/EU/EFTA citizen or in possession of a valid Swiss work permit Must-have qualifications Professional experience in building web applications with great UI/UX using state-of-the-art technologies, with a demonstrable portfolio Extensive knowledge of the technologies that power the web: JavaScript, HTML, CSS Experience with modern frontend development stacks Know-how in scalable frontend development architectures Fluency with data, databases, data preparation and transformations Eye for aesthetics and fluent user experiences Open mind about technologies and ways of approaching a problem Excitement about the fast moving web development world. You enjoy staying up to date and learning new technologies. Strong English communication skills, attention to detail, and ability to deliver finished projects on your own Preferred qualifications Experience with React, TypeScript, D3 and Node.js Experience with geospatial data, web mapping and geographic visualization Experience with 2D/3D graphics in the browser (SVG, Canvas, WebGL) Experience with functional programming concepts Knowledge of SQL databases, especially PostgreSQL What we offer We offer the chance to be part of an exciting and ambitious start-up that puts its people at the heart of its business. Be part of a diverse, international, cross-disciplinary team of highly motivated, hands-on experts that tackle unique challenges with a positive spirit and lots of fun. We offer a flexible work schedule, a central office location as well as a wide range of benefits and perks, including financial childcare support, additional company holidays, and career development programs. What to expect Teralytics is an equal opportunity employer and we value diversity. We do not discriminate on the basis of race, religion, colour, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status.\",\n", + " '[\"Verbal Communication Skills\", \"Aesthetics\", \"Collaboration\", \"Mobile Devices\", \"Communications\", \"Scheduling\", \"Enthusiasm\", \"Presentations\", \"Socialization\", \"Positivity\"]',\n", + " '[\"Production Management\", \"Web Applications\", \"Childcare Fundamentals\", \"Disabilities\", \"Kubernetes\", \"Tooling\", \"Hyper SQL Database (HSQLDB)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Joint Application Design (JAD)\", \"Aggregator\", \"2D Animation\", \"TypeScript\", \"Scale (Map)\", \"Visualization\", \"PostgreSQL\", \"Component Object Model (COM)\", \"Node.js\", \"Venture Capital\", \"Prototyping\", \"D3.js\", \"Translations\", \"Limiter\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Mobility\", \"Mobile Network Operator\", \"Data Visualization\", \"React.js\", \"Mock Ups\", \"Open Source Technology\", \"Docker (Software)\", \"Github\", \"Programming Concepts\", \"2D Computer Graphics\", \"Webpack\", \"WebGL\", \"Equalization\", \"Digitization\", \"Architectural Development\", \"JavaScript (Programming Language)\", \"Scalability\", \"Unlocker\", \"Receivables\", \"Functional Programming\", \"Humanism\", \"Appeals\", \"Economics\", \"Career Development\", \"Data Direct Networks\", \"Web Mapping\", \"3D Graphic Design\", \"Additives\", \"User Experience\", \"Eyes\", \"Custom Backend\"]',\n", + " \"['English', 'South Ndebele', 'Chichewa', 'Sinhala']\"],\n", + " ['39',\n", + " 'supply chain data analyst (m/f)',\n", + " 'Reinach',\n", + " '',\n", + " '',\n", + " '[[-1.28764436e-01 2.81232744e-01 5.46897054e-01 2.39168555e-02\\n4.87601131e-01 -6.08971901e-02 4.35195379e-02 4.44313020e-01\\n4.20789011e-02 -4.31067914e-01 -1.91733837e-02 -3.02204907e-01\\n3.51779163e-02 1.44612134e-01 8.17054585e-02 4.81249332e-01\\n1.42991006e-01 1.65683970e-01 -1.51579052e-01 3.48072678e-01\\n2.09333420e-01 -2.18113601e-01 7.05627799e-02 7.14393258e-01\\n4.98119146e-01 -6.37528971e-02 -1.55709073e-01 -1.68627456e-01\\n-2.36410141e-01 -3.39036733e-01 4.54381227e-01 5.54485712e-03\\n-1.61002666e-01 -4.03046042e-01 1.40599489e-01 9.48599353e-02\\n-2.53681690e-01 -4.97404113e-02 -1.01542100e-01 1.12951100e-01\\n-6.37218893e-01 -2.34703541e-01 -4.95794192e-02 9.76033881e-02\\n-2.75957376e-01 -2.97132343e-01 -5.73506653e-02 -2.48469338e-01\\n2.09559321e-01 8.78555998e-02 -5.83139241e-01 3.46242964e-01\\n-1.92888424e-01 -2.47145981e-01 1.82381585e-01 7.37409353e-01\\n1.74885569e-03 -4.08297062e-01 -5.97543061e-01 -3.69059891e-01\\n1.30141020e-01 -9.84064490e-02 4.46544914e-03 -2.91452259e-01\\n3.14586639e-01 -7.59287998e-02 1.18152283e-01 2.99740523e-01\\n-8.21612120e-01 4.24459465e-02 -2.43652329e-01 -1.28605068e-01\\n-2.57679760e-01 1.08537858e-03 -4.34394687e-01 -5.57115339e-02\\n-2.08737388e-01 4.20561612e-01 8.39779153e-03 -4.25238200e-02\\n-2.47895733e-01 2.11780921e-01 -3.11896324e-01 2.68603921e-01\\n2.55449712e-01 1.98734924e-01 2.60259956e-01 3.08454037e-01\\n-2.94404984e-01 4.71016556e-01 1.89391658e-01 -2.19466552e-01\\n2.33851194e-01 5.03624640e-02 3.70529205e-01 -5.71726635e-02\\n1.81744277e-01 7.04566017e-02 -3.35229099e-01 2.67888129e-01\\n3.17238927e-01 -2.22069517e-01 1.02975346e-01 -1.64164007e-01\\n-1.49377957e-02 -1.03025148e-02 8.76927897e-02 2.58724988e-01\\n-2.09802106e-01 4.20759737e-01 1.89734448e-03 -1.35146201e-01\\n-1.74052626e-01 -5.28820217e-01 -8.59992057e-02 -4.80410531e-02\\n1.60068527e-01 2.23622769e-01 6.08341135e-02 1.92289785e-01\\n2.59475261e-01 -1.01211637e-01 1.17319666e-01 8.31721067e-01\\n-6.45617917e-02 9.63801742e-02 -3.02544653e-01 2.67725468e-01\\n3.75905149e-02 -3.39066982e-01 1.97602138e-01 1.97701111e-01\\n-5.33101559e-02 -2.25135505e-01 -2.48776421e-01 3.21419805e-01\\n-5.57252504e-02 -1.77175358e-01 -2.28699103e-01 1.72681823e-01\\n5.63719012e-02 -3.40610832e-01 6.64120913e-01 3.98432277e-02\\n1.32725552e-01 -7.50221461e-02 -1.22490590e-02 -9.61322710e-02\\n-1.06725395e-02 1.79952651e-01 1.79459795e-01 3.62738930e-02\\n-2.68734813e-01 -3.02008092e-01 -1.64258212e-01 7.36802816e-02\\n-4.23053592e-01 1.65526420e-01 -1.21396191e-01 -6.75761551e-02\\n2.78499693e-01 4.19373624e-02 -2.49632671e-01 2.97974378e-01\\n-1.41237676e-01 -3.93906608e-02 4.55705635e-02 2.84124881e-01\\n-3.14811349e-01 2.40439937e-01 -2.54387408e-02 -3.44077051e-02\\n7.52553821e-01 1.05511174e-01 1.48284167e-01 1.14828460e-01\\n2.93795794e-01 5.58137558e-02 1.14752688e-01 1.48557410e-01\\n-5.69136381e-01 4.73231554e-01 -4.47113849e-02 -2.88504273e-01\\n2.22794443e-01 -1.48736566e-01 4.33844626e-01 -2.50106335e-01\\n2.28771213e-02 -1.69143304e-01 -2.93767840e-01 -3.18153739e-01\\n-2.34207004e-01 -1.10197656e-01 3.52335513e-01 -4.39643592e-01\\n-9.36490600e-04 1.63303152e-01 -5.21103859e-01 -1.30809531e-01\\n1.29113913e-01 2.10481793e-01 8.03400502e-02 1.64008901e-01\\n-1.90959945e-01 -5.11997581e-01 8.97692814e-02 -3.57128710e-01\\n-1.53712615e-01 3.38476859e-02 -3.04998785e-01 1.74673602e-01\\n4.24587950e-02 1.28055185e-01 -1.76694050e-01 1.17558837e-01\\n-2.09624678e-01 -1.46156833e-01 1.21898748e-01 7.49668106e-02\\n2.79185772e-01 1.01576991e-01 -3.90949100e-01 3.76045018e-01\\n-5.54475524e-02 5.68349957e-01 1.51172772e-01 -8.86357725e-01\\n4.50291276e-01 3.85232896e-01 3.96634787e-02 -3.25285345e-01\\n6.29735053e-01 -2.68870085e-01 -8.96312576e-03 4.72313650e-02\\n-3.16972762e-01 -3.50511998e-01 2.52959728e-01 -1.60521537e-01\\n-2.51252055e-01 3.79714221e-01 8.93100277e-02 1.67644322e-01\\n1.32343069e-01 -1.42613187e-01 -1.01433136e-01 7.99286813e-02\\n3.45585681e-02 -1.71544179e-01 -5.02561510e-01 2.48241201e-02\\n-4.21282239e-02 -3.21013868e-01 -1.97903425e-01 -4.85130757e-01\\n-2.10628092e-01 -3.01327229e-01 -2.10874513e-01 2.04483166e-01\\n2.27844417e-01 1.74164772e-01 4.02374417e-02 2.43239030e-02\\n-1.67955235e-01 -6.98134124e-01 -1.54068723e-01 1.07779369e-01\\n4.76227850e-01 2.11453319e-01 9.91025642e-02 -8.23631138e-02\\n4.25253585e-02 6.67702913e-01 -2.53969908e-01 -2.76519090e-01\\n1.98636383e-01 9.62556750e-02 9.65693519e-02 -1.41181692e-01\\n2.12047502e-01 2.67475277e-01 -1.65507913e-01 4.79277819e-02\\n-8.59688371e-02 -1.05508476e-01 2.92466730e-01 2.52837837e-01\\n-2.43043512e-01 -2.84316599e-01 -2.12770537e-01 1.23170137e-01\\n-5.74210823e-01 -2.54680693e-01 5.92390418e-01 1.73833504e-01\\n2.73764312e-01 7.55974799e-02 2.24692807e-01 -6.36000112e-02\\n-1.12850189e-01 -2.61527121e-01 3.19875062e-01 8.92695114e-02\\n1.15731575e-01 1.03525646e-01 -2.16320753e-02 -7.25295603e-01\\n-3.27209759e+00 -1.11953765e-01 1.50066778e-01 -3.59969288e-01\\n2.60609955e-01 -1.66682899e-01 2.60204852e-01 -3.09241191e-02\\n-3.12038511e-01 -2.02162750e-03 -2.92299986e-01 -4.30052206e-02\\n2.04030737e-01 3.22853595e-01 1.60819396e-01 2.29965597e-01\\n2.82271177e-01 -3.15553367e-01 -1.09316343e-02 4.90758866e-01\\n-1.21117197e-01 -5.89842916e-01 1.51041910e-01 1.05359126e-03\\n1.07691906e-01 3.04127365e-01 -2.27182627e-01 -1.27798691e-01\\n-3.33106369e-01 -1.59168601e-01 5.12171537e-02 -3.88463527e-01\\n-2.79219300e-01 1.52779073e-01 1.59717977e-01 -1.93177477e-01\\n4.75535206e-02 -3.68068784e-01 -4.44069803e-02 -4.07263398e-01\\n8.41399878e-02 -6.56183958e-01 1.09731378e-02 -5.49196126e-03\\n8.02021205e-01 -1.69993043e-01 4.20183726e-02 1.01977661e-02\\n1.73705950e-01 1.39366120e-01 1.21844284e-01 6.92329183e-02\\n-9.09658521e-02 -3.29167902e-01 -6.29113391e-02 -1.46915123e-01\\n6.48227155e-01 5.49666941e-01 -1.49214417e-01 -7.62293413e-02\\n9.93361771e-02 -2.69035906e-01 -4.49173868e-01 -2.40427703e-01\\n-2.68591613e-01 -2.68768042e-01 -6.07945263e-01 -4.18401539e-01\\n-2.39425659e-01 -1.21046744e-01 -2.51357079e-01 4.87106442e-01\\n-2.59714514e-01 -2.86263704e-01 -3.08411662e-02 -4.93256301e-01\\n2.96392053e-01 -1.07400380e-01 5.76469265e-02 -2.59572327e-01\\n-1.98630437e-01 -4.93678153e-01 7.52078295e-02 1.73591208e-02\\n-8.65768716e-02 -1.93008080e-01 -8.44383985e-02 -8.81933272e-02\\n-3.58855933e-01 -5.97592890e-01 3.56970996e-01 1.54431000e-01\\n4.20752168e-01 9.87725481e-02 3.29500854e-01 2.99395644e-03\\n4.27996010e-01 -1.14249796e-01 -5.82283512e-02 -4.23470199e-01\\n1.68414935e-02 9.54959318e-02 6.00186944e-01 -3.13914150e-01\\n-2.82981321e-02 2.43159290e-02 -2.70642787e-01 -1.07605867e-01\\n2.73641914e-01 -9.68947187e-02 1.29640445e-01 -1.43695295e-01\\n2.67815471e-01 -3.61983865e-01 -2.72105694e-01 5.84241189e-02\\n-1.14795491e-02 6.01922214e-01 -8.08509141e-02 -3.19103092e-01\\n-6.83792233e-02 3.77756953e-01 -1.30633220e-01 -7.82845169e-03\\n-1.91623122e-01 -8.88505131e-02 -1.71746343e-01 3.28968585e-01\\n4.02713707e-03 -2.05643654e-01 -2.07608745e-01 -1.50207385e-01\\n-6.16584010e-02 4.11203861e-01 8.44620019e-02 1.98279396e-02\\n6.85963482e-02 -4.37513918e-01 -1.02881067e-01 2.94618636e-01\\n1.43739805e-01 4.91804570e-01 3.27605568e-02 -2.03892916e-01\\n-1.44536898e-01 3.18509638e-01 -3.17675769e-01 2.08907351e-01\\n-3.14779729e-01 1.43567502e-01 -4.50716794e-01 -2.25893617e-01\\n-2.50616372e-01 -4.42676306e-01 1.63771242e-01 3.86209577e-01\\n1.75867990e-01 1.12641938e-01 -7.38131851e-02 -4.64854598e-01\\n1.87239066e-01 8.19955245e-02 1.32542700e-01 1.35177106e-01\\n-1.00389585e-01 5.13187528e-01 -1.66302919e-02 -1.45746425e-01\\n-7.90596753e-02 8.47329125e-02 -2.49137819e-01 -2.06960186e-01\\n2.15650439e-01 -5.14498472e-01 -1.01562209e-01 5.59331775e-01\\n3.36833298e-01 -2.60551423e-01 -2.66562879e-01 2.39882037e-01\\n1.52954273e-02 -3.40122819e-01 -3.17193776e-01 9.36554745e-02\\n2.36116081e-01 1.74736917e-01 3.93770725e-01 -3.95841867e-01\\n-3.53140011e-02 -6.94602802e-02 -1.21473633e-01 3.71100724e-01\\n-1.86036844e-02 1.47500172e-01 -2.55385607e-01 -1.71865851e-01\\n4.99527097e-01 8.17651227e-02 -2.09141858e-02 5.35607599e-02\\n2.15555593e-01 -2.07020655e-01 -4.41368908e-01 5.85991330e-02\\n-1.09863123e-02 -2.94837296e-01 4.42870613e-03 1.47256032e-01\\n-2.04709563e-02 8.18594769e-02 -6.33789480e-01 -2.86462963e-01\\n-2.85009295e-01 -8.55261907e-02 9.16512012e-02 -5.34546316e-01\\n-1.14497222e-01 -2.65090447e-02 -5.22750556e-01 2.18540177e-01\\n-1.62362635e-01 -1.44343823e-02 2.27588624e-01 6.51002303e-02\\n-2.38904789e-01 -5.66478930e-02 1.55980766e-01 3.59089673e-01\\n-3.25781494e-01 -2.18924433e-01 -4.40066680e-02 -1.05469048e+00\\n6.98417351e-02 -4.28832248e-02 -1.07498176e-01 2.22774476e-01\\n-1.60633221e-01 -6.48294091e-01 1.29321679e-01 -3.86240840e-01\\n-2.17909515e-01 -1.24346064e-02 -1.27707899e-01 -4.53269213e-01\\n1.18007258e-01 4.10855301e-02 -3.19887191e-01 3.24435651e-01\\n-2.94510871e-01 3.81644309e-01 -1.04961015e-01 1.96778163e-01\\n-4.59882617e-02 -2.11096138e-01 2.48012096e-01 -4.07824934e-01\\n-3.94221961e-01 -1.62064403e-01 -3.68471950e-01 -1.82444930e-01\\n-3.10555864e-02 -3.27453583e-01 -1.64478287e-01 2.13548705e-01\\n5.27119637e-01 1.31892070e-01 -2.52060033e-02 -2.18212396e-01\\n9.63703915e-02 -6.80909097e-01 6.71873614e-02 2.86784079e-02\\n-1.71318114e-01 -6.94778860e-02 3.03647697e-01 8.99076909e-02\\n1.36590913e-01 -3.75100285e-01 3.97345841e-01 -4.19959962e-01\\n-2.76993155e-01 -6.96432889e-02 9.00200233e-02 8.38690065e-03\\n3.54267150e-01 -4.22304958e-01 -6.00282066e-02 2.38856852e-01\\n4.43377048e-02 2.03104958e-01 3.57050508e-01 -1.06125183e-01\\n-1.25015080e-01 2.60633647e-01 -4.33169276e-01 3.24030742e-02\\n8.50722373e-01 1.63823798e-01 7.51696602e-02 2.55658448e-01\\n1.93099126e-01 2.63304532e-01 4.22858655e-01 -3.04937661e-02\\n-1.53546736e-01 2.60877639e-01 -4.24936861e-02 -6.44675136e-01\\n3.65843512e-02 -1.98049787e-02 -1.74176350e-01 -2.94283628e-01\\n6.34519577e-01 3.55780274e-01 -4.74421173e-01 -3.20709735e-01\\n-1.23765759e-01 -6.85335845e-02 1.31463200e-01 -4.83045280e-02\\n-1.81025378e-02 -3.17654386e-02 3.95299375e-01 -6.25251979e-02\\n2.31280953e-01 5.23020566e-01 -2.28155807e-01 -2.67665058e-01\\n-3.25174779e-02 1.23930693e-01 -6.35954877e-03 4.64194626e-01\\n-1.74738348e-01 2.77220070e-01 -5.03048487e-02 7.74902180e-02\\n-9.64803100e-02 7.93015286e-02 8.77303630e-02 1.47348702e-01\\n1.42649159e-01 1.72113106e-01 5.94327867e-01 5.24532080e-01\\n2.27448955e-01 3.83944601e-01 3.43459815e-01 2.46498659e-02\\n4.62378174e-01 4.60709125e-01 3.11339021e-01 1.37289464e-01\\n2.53534503e-02 4.65814508e-02 1.52491257e-01 -5.76507635e-02\\n4.30147469e-01 4.19286102e-01 1.33034512e-01 7.84353971e-01\\n7.58600309e-02 2.92487860e-01 7.04769373e-01 -6.32447302e-01\\n-4.42493916e-01 7.70544540e-03 6.05489135e-01 -4.83824819e-01\\n-9.39632803e-02 1.78962216e-01 -1.78773373e-01 1.81127816e-01\\n-5.38589239e-01 -3.89146745e-01 -2.61195153e-02 1.23999573e-01\\n-7.77707025e-02 -1.66761696e-01 -1.54550359e-01 1.13589913e-01\\n3.58011536e-02 1.79079175e-02 -5.03724158e-01 -8.94336700e-02\\n-8.75824690e-02 -8.19132626e-02 -1.24801084e-01 -1.60023376e-01\\n-7.78837875e-02 -2.92164654e-01 5.34609705e-02 5.16755208e-02\\n2.84003705e-01 -5.19138314e-02 6.38652174e-03 1.71714295e-02\\n2.28366554e-01 1.11782677e-01 5.60524583e-01 -9.85085890e-02\\n7.16386884e-02 -1.07680649e-01 -2.15105012e-01 1.67366683e-01\\n1.61797330e-01 3.88299860e-02 1.48115782e-02 3.01574111e-01\\n-1.89686805e-01 -2.88532019e-01 1.04793906e-01 3.36473018e-01\\n-4.96872932e-01 8.46881568e-02 -1.13916643e-01 1.55542821e-01\\n1.19470850e-01 1.64155975e-01 -2.55628884e-01 -2.87215523e-02\\n-2.07679495e-01 -4.05460387e-01 1.89282626e-01 -5.09027168e-02\\n-1.74691170e-01 3.91284674e-02 2.00842097e-01 1.08325310e-01\\n-1.83323845e-01 9.02697295e-02 -1.92071542e-01 2.42557213e-01\\n6.31390437e-02 2.44066209e-01 -8.26845914e-02 -3.41219455e-01\\n-2.56906986e-01 1.24575324e-01 -7.39657283e-02 2.08857790e-01\\n4.03286107e-02 3.50092351e-01 -5.89012774e-03 -1.63358040e-02\\n5.40917933e-01 1.10420570e-01 -2.30183333e-01 -3.66632402e-01\\n-2.57155389e-01 -2.49119163e-01 1.22341822e-04 -7.09325895e-02\\n1.26313761e-01 -4.68478382e-01 -1.05692431e-01 -3.30885977e-01\\n-1.90472573e-01 -3.49994332e-01 -1.05137248e-02 -1.15497708e-01]]',\n", + " 'Discover your own perfect formula for job satisfaction Our facility in Reinach is currently looking for a Supply Chain Data Analyst (m/f) Endress+Hauser is a global leader in measurement instrumentation, services and solutions for industrial process engineering. Despite employing over 14,000 people worldwide, we have remained a family company, and are proud of our close-knit working environment. There are always two sides to working with us - the professional and the personal. Together they add up to a more rewarding career, day in and day out. Role+Responsibilities Collect, analyze and interpret data from various systems (SAP, Data Warehouse, Transport Management System) for supply chain analytics Define new data collection approaches and improve existing ones Analyze patterns and trends in the data for supply chain improvements Visualize and report your derived findings Maintain supply chain master data and assure data quality Qualification+Profile Degree in Mathematics, Computer Science, Statistics or Economics Experience in data models and reporting packages Ability to analyze large datasets and create comprehensive reports An analytical mind with focus on problem-solving, attention to detail Strong verbal and written communication skills Strong knowledge of English Programming skills and experience with SQL, Oracle, Python, SAP BW, SAP analytics cloud, SAP HANA, Data lakes, Tableau Benefits + Perks You will find the security of working for an international family-owned company You will have a wide range of training opportunities You will get flexible working time You will come across a broad range of options for the reconciliation of family and working life Contact us + Apply If this position sounds appealing to you, we would like to hear from you. Please send your CV to Beatrice Jacob and state your salary expectations and earliest possible start date via our job portal at www.endress.com/career',\n", + " '[\"Professionalism\", \"Written Communication\", \"Problem Solving\"]',\n", + " '[\"Oracle SQL Developer\", \"Data Quality\", \"Tableau (Business Intelligence Software)\", \"Programming (Music)\", \"Computer Science\", \"Collections\", \"Analytics\", \"SAP HANA\", \"Statistics\", \"Supply Chain\", \"Survey Data Collection\", \"Visualization\", \"Computational Mathematics\", \"Industrial Processes\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Maintainability\", \"Python (Programming Language)\", \"Instrumentation\", \"Transport Management Systems\", \"Dataset\", \"SAP Project System\", \"Library For WWW In Perl\", \"Logical Data Models\", \"Management Systems\", \"Personalization\", \"Reconciliation\", \"Appeals\", \"Economics\", \"Data Lakes\", \"Derivatives\", \"Process Engineering\"]',\n", + " \"['English', 'Macedonian', 'Divehi', 'Chuang']\"],\n", + " ['84',\n", + " 'master data integration engineer',\n", + " 'Bern',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.09031397e-01 2.86576778e-01 5.84010422e-01 -4.96654399e-02\\n5.52538276e-01 -1.91140592e-01 -1.05004922e-01 2.17947185e-01\\n-3.58377248e-02 -3.50853562e-01 -1.73911348e-01 -3.41806024e-01\\n-7.37481788e-02 1.49130579e-02 2.96316713e-01 3.59328806e-01\\n2.64990717e-01 1.21172190e-01 -1.33099645e-01 3.10553759e-01\\n1.32012770e-01 2.63772719e-02 3.02399080e-02 6.18956089e-01\\n2.99379706e-01 -9.67673492e-04 -8.83044153e-02 -8.80543590e-02\\n-3.03947598e-01 -1.74440265e-01 4.44239616e-01 4.23517972e-02\\n-1.09806888e-01 -3.04692060e-01 3.44010964e-02 8.36837217e-02\\n-3.18673164e-01 -1.13705933e-01 -1.67597651e-01 1.29380211e-01\\n-5.14039397e-01 -3.20091903e-01 1.22377045e-01 3.50121558e-02\\n-2.31327176e-01 -3.23004663e-01 5.71623305e-03 -2.62245070e-02\\n-1.65084447e-03 9.47165936e-02 -6.08101845e-01 2.80911207e-01\\n-2.94764489e-01 -8.31394792e-02 2.86304116e-01 6.73340738e-01\\n1.54943481e-01 -5.91074646e-01 -3.18855226e-01 -2.83709526e-01\\n5.86925931e-02 -9.44780037e-02 -1.36812339e-02 -2.08829105e-01\\n3.51754606e-01 7.44933356e-03 -5.36290370e-03 3.88051987e-01\\n-6.88661993e-01 -5.92931658e-02 -1.97157189e-01 5.62264062e-02\\n-3.12114567e-01 -3.57375829e-04 -2.52716243e-01 -2.70768225e-01\\n-9.69972163e-02 4.26825494e-01 -3.26753296e-02 1.04308046e-01\\n-2.60033309e-01 2.65941232e-01 -2.42705539e-01 2.15209484e-01\\n3.07769030e-01 1.89420193e-01 1.85211584e-01 3.26378673e-01\\n-4.77024645e-01 3.86798352e-01 3.10529888e-01 -2.84182489e-01\\n1.82534248e-01 9.01785865e-02 4.46074277e-01 1.88288808e-01\\n-2.46673953e-02 2.07584247e-01 -8.05083886e-02 2.42950693e-01\\n1.85306519e-01 -1.33837417e-01 3.12851593e-02 -1.28761262e-01\\n-7.45856985e-02 -1.50200292e-01 -1.46806017e-01 2.32810125e-01\\n-2.31268212e-01 2.83299834e-01 1.39372334e-01 -2.90425003e-01\\n1.21127609e-02 -6.26100183e-01 -9.03062746e-02 -1.65504128e-01\\n3.84997986e-02 2.14812070e-01 3.90426159e-01 1.30028248e-01\\n2.98212051e-01 1.27725169e-01 2.37798423e-01 9.67388749e-01\\n-3.11160292e-02 2.11381484e-02 -3.05449933e-01 3.69793445e-01\\n1.14839397e-01 -1.10671498e-01 1.57654285e-01 2.23656684e-01\\n2.65453458e-02 -2.20216680e-02 -2.25707233e-01 3.43386978e-01\\n-1.59932315e-01 -1.78902015e-01 -2.39085793e-01 9.10748765e-02\\n-3.37796301e-01 -4.74599749e-01 4.36829507e-01 1.08324826e-01\\n9.44597572e-02 -1.40616909e-01 -1.35782361e-01 -9.49153155e-02\\n-4.41103429e-02 3.02594960e-01 -9.24544688e-03 1.70401618e-01\\n-2.01353207e-01 -2.41656527e-01 -1.54357061e-01 3.29602718e-01\\n-8.04234110e-03 1.65440246e-01 -1.17442414e-01 -2.09429070e-01\\n3.28517556e-01 1.77442685e-01 -4.04022276e-01 2.37942591e-01\\n-4.29252051e-02 -3.06154698e-01 -1.69786260e-01 2.29956716e-01\\n-8.79543871e-02 1.18282408e-01 1.08271070e-01 -3.74532789e-01\\n3.66246581e-01 1.53868079e-01 2.40926936e-01 -8.57976228e-02\\n3.15328032e-01 -1.86292067e-01 2.10748285e-01 5.96689917e-02\\n-6.64204597e-01 5.36294878e-01 -6.79907799e-02 -1.46926880e-01\\n1.98252797e-01 1.11642949e-01 4.75669295e-01 -2.73644686e-01\\n-1.53003735e-02 -1.23909056e-01 -4.54862386e-01 -5.55491090e-01\\n-2.68206686e-01 -3.62232924e-02 3.95516336e-01 -4.56687868e-01\\n-1.43751308e-01 2.67377347e-01 -5.37496686e-01 -1.02724560e-01\\n2.03365102e-01 1.95239007e-01 5.95607087e-02 8.96883979e-02\\n-8.93619508e-02 -4.80014741e-01 2.09800918e-02 -5.48787355e-01\\n-4.00240481e-01 4.63845320e-02 -2.36212865e-01 1.01013325e-01\\n-9.22630914e-03 9.02198814e-03 -5.18196374e-02 4.20438796e-02\\n-4.25878227e-01 -1.25641627e-02 2.44914606e-01 1.60918564e-01\\n3.86925370e-01 -6.13185018e-02 -4.45062608e-01 5.96696019e-01\\n-2.56606430e-01 5.30152619e-01 2.35292062e-01 -9.65582609e-01\\n6.29519820e-01 2.65462965e-01 6.41416237e-02 -3.14249367e-01\\n4.88585472e-01 -5.27821898e-01 -4.98679020e-02 1.17878065e-01\\n-1.72558203e-01 -1.73572958e-01 2.42242277e-01 -1.72913715e-01\\n-3.06415588e-01 7.61413753e-01 2.08185956e-01 -4.26918156e-02\\n2.58585393e-01 -3.10146183e-01 -3.09233010e-01 -2.44386330e-01\\n-1.21514998e-01 -2.54675865e-01 -4.97495443e-01 3.04339558e-01\\n-9.96117815e-02 -6.23809874e-01 -1.38340011e-01 -4.08791512e-01\\n-1.98109671e-01 -3.96214426e-01 -2.47026369e-01 3.74756902e-01\\n1.45989284e-01 1.02002442e-01 1.05626788e-02 6.20141216e-02\\n-2.80371979e-02 -5.69191039e-01 -9.72760916e-02 1.59860238e-01\\n4.50274408e-01 3.12100619e-01 1.40358016e-01 -5.93217127e-02\\n-4.40949462e-02 4.23749477e-01 -4.10010159e-01 -2.46761099e-01\\n1.39062747e-01 4.98438515e-02 2.82621216e-02 -1.32813692e-01\\n3.77965383e-02 3.19637567e-01 -1.78171977e-01 7.27716386e-02\\n1.04980707e-01 3.28872055e-02 2.78977931e-01 -4.11830023e-02\\n-2.04476193e-01 -2.10270464e-01 2.31688470e-02 2.92448014e-01\\n-5.28763890e-01 -1.44869104e-01 5.33815384e-01 1.26609981e-01\\n4.53696661e-02 2.75086671e-01 3.85329902e-01 -1.55482739e-01\\n-3.02281171e-01 -2.07723051e-01 1.38194159e-01 2.00230539e-01\\n2.05872670e-01 9.25944094e-03 -1.37909502e-01 -4.24137175e-01\\n-2.98963785e+00 -2.58043945e-01 7.31441379e-02 -2.39079982e-01\\n1.94096074e-01 -2.73516446e-01 1.16430245e-01 2.96514276e-02\\n-3.35626006e-01 5.70795052e-02 -1.14627898e-01 -1.35130495e-01\\n1.72555298e-01 2.27056488e-01 3.98736075e-02 2.11004660e-01\\n-7.02143162e-02 -2.20964462e-01 4.73132022e-02 2.92485833e-01\\n-1.21186644e-01 -9.06617701e-01 8.44840407e-02 -4.41130586e-02\\n1.29273370e-01 -3.57169621e-02 -5.65537155e-01 -4.04509380e-02\\n-2.37811446e-01 -2.80156434e-01 1.95495799e-01 -2.03214794e-01\\n-1.02807567e-01 3.93973082e-01 1.22072347e-01 -1.39195025e-01\\n1.60574585e-01 -2.61458248e-01 -1.37707531e-01 -6.36443734e-01\\n1.44126713e-01 -7.10125923e-01 1.05467469e-01 -1.95417609e-02\\n6.34472430e-01 -3.57956350e-01 2.14998841e-01 2.80857027e-01\\n1.27888218e-01 2.02071309e-01 8.11111107e-02 -3.86155397e-02\\n-3.68958980e-01 -3.05942208e-01 -1.01600535e-01 -2.16305688e-01\\n3.63546103e-01 4.56827700e-01 -1.89321250e-01 1.32574350e-01\\n6.45778105e-02 -3.62895489e-01 -5.05029440e-01 -5.54503858e-01\\n-2.30979413e-01 -2.95974463e-02 -7.95248926e-01 -3.85925621e-01\\n-4.18757908e-02 -1.39935568e-01 -2.53812850e-01 6.90082192e-01\\n-4.08688247e-01 -3.65704417e-01 3.83748934e-02 -6.44479275e-01\\n3.25562805e-01 -3.47256482e-01 -4.40127245e-04 -1.85035750e-01\\n-2.60694146e-01 -4.11580116e-01 3.17062140e-01 3.73830050e-02\\n-1.94116190e-01 -2.61121485e-02 2.66478900e-02 -2.90203959e-01\\n-3.08739394e-01 -5.49238384e-01 4.38234538e-01 1.50610596e-01\\n4.19534951e-01 1.33223087e-02 4.58820403e-01 8.93500298e-02\\n3.65145802e-01 -3.07797845e-02 -2.27722921e-03 -4.87848550e-01\\n7.87420869e-02 7.96757191e-02 4.99596149e-01 -2.01953605e-01\\n1.49646327e-01 1.13438129e-01 -1.84745029e-01 -1.25695497e-01\\n4.74538535e-01 2.65390761e-02 -4.82929051e-02 -9.42156985e-02\\n2.84395695e-01 -5.65676033e-01 -3.03501397e-01 8.70286450e-02\\n-4.71941605e-02 7.46560276e-01 5.35740168e-04 -4.40139294e-01\\n-2.54497051e-01 4.63669688e-01 1.93849765e-02 -2.22656131e-01\\n-2.59023160e-01 1.08675480e-01 -2.31655583e-01 3.13287556e-01\\n5.57357781e-02 -1.99131504e-01 -4.10033554e-01 -1.02836870e-01\\n-5.31504825e-02 2.01398388e-01 1.73507407e-01 2.15011854e-02\\n1.94600653e-02 -2.49557436e-01 -7.89644271e-02 5.69297820e-02\\n3.23053330e-01 3.02415013e-01 2.52158105e-01 -2.41755709e-01\\n7.77272955e-02 2.59667009e-01 -3.17813814e-01 1.85700074e-01\\n-2.03028083e-01 2.50630472e-02 -5.86995900e-01 -2.60194421e-01\\n-1.52077034e-01 -2.47335806e-01 6.30628541e-02 2.95009553e-01\\n1.79531589e-01 -3.78091820e-02 1.04685113e-01 -4.40648913e-01\\n4.52928156e-01 4.79968674e-02 1.66705236e-01 9.41888094e-02\\n6.44171908e-02 6.72086596e-01 6.02041697e-03 -8.05083383e-03\\n-4.38597351e-02 -5.73137999e-02 -2.63033658e-01 -3.05837244e-01\\n-1.55909164e-02 -3.94400686e-01 -1.87050864e-01 5.57488978e-01\\n1.51062101e-01 -1.68598741e-01 -2.18687013e-01 3.06282759e-01\\n1.12334706e-01 -1.89448029e-01 -2.14419603e-01 8.39236900e-02\\n2.19085887e-01 1.97240248e-01 2.74058908e-01 -4.92281854e-01\\n-1.43895177e-02 -1.09894676e-02 7.84249380e-02 4.73054200e-01\\n1.09900139e-01 9.18412134e-02 -9.38837677e-02 -2.81119883e-01\\n4.83633995e-01 -1.82545722e-01 -1.47579551e-01 -8.45760033e-02\\n4.83577289e-02 -1.89375445e-01 -4.19606835e-01 6.15428435e-03\\n-1.14339806e-01 -3.05949748e-01 2.87973601e-02 6.83199763e-02\\n1.60263538e-01 -1.23813316e-01 -4.35812056e-01 -2.08905369e-01\\n-3.36403966e-01 1.30945176e-01 2.60540079e-02 -4.08985496e-01\\n1.60179943e-01 -6.03110343e-02 -5.80539167e-01 2.91574568e-01\\n-1.04396485e-01 3.10704671e-02 9.15766582e-02 7.92369768e-02\\n-3.50189239e-01 3.38676423e-02 2.58987099e-01 8.91120508e-02\\n-3.15855443e-01 -2.46408135e-01 8.03388059e-02 -9.25754786e-01\\n6.85591847e-02 7.01451525e-02 -1.94141511e-02 -3.30729224e-02\\n-3.27180624e-02 -7.51413643e-01 1.76214650e-01 -3.42901111e-01\\n-6.45458326e-02 -1.43175747e-03 -1.92376629e-01 -5.38688779e-01\\n1.30960181e-01 -2.21168585e-02 -2.33925045e-01 3.73144686e-01\\n-4.77556705e-01 4.05272186e-01 -7.83124268e-02 -2.68616062e-02\\n1.50416836e-01 -3.57049674e-01 1.90864712e-01 -1.76614136e-01\\n-4.41850662e-01 -6.35404736e-02 -4.24848884e-01 -3.60614151e-01\\n-4.69528474e-02 -2.07669809e-01 -8.02349523e-02 -2.87526641e-02\\n4.23886567e-01 1.26479566e-01 -1.09757975e-01 -1.57125190e-01\\n6.65987805e-02 -3.83253545e-01 1.17753118e-01 -3.19074571e-01\\n1.07034326e-01 -9.50057209e-02 3.48126620e-01 -8.78201276e-02\\n1.00190789e-01 -2.57148594e-01 6.25360012e-01 -2.26554513e-01\\n-4.25364077e-01 -1.38549611e-01 -1.14917129e-01 1.93369567e-01\\n3.46221924e-01 -4.28475648e-01 1.14908829e-01 1.65957436e-01\\n1.58710584e-01 4.75239605e-02 2.85313368e-01 -1.08931422e-01\\n-8.82275626e-02 2.37336442e-01 -6.65546834e-01 1.25865534e-01\\n7.25230932e-01 1.84553459e-01 1.87589839e-01 1.80103034e-01\\n2.35868707e-01 3.27042311e-01 4.99828458e-01 -5.08886576e-02\\n-2.10177839e-01 4.09881860e-01 1.37698159e-01 -5.22261322e-01\\n-2.20875487e-01 -1.30723223e-01 -1.60068378e-01 -3.70253474e-01\\n5.85434020e-01 2.41482243e-01 -3.26979965e-01 -3.31066698e-01\\n-1.08493224e-01 -8.57653096e-02 3.17341894e-01 -1.65576771e-01\\n-1.77606829e-02 -9.72070545e-02 4.73120928e-01 -1.71813685e-02\\n4.02478904e-01 4.71185029e-01 -1.02979377e-01 -3.63156289e-01\\n-2.02836126e-01 1.97874337e-01 1.97283819e-01 3.39838982e-01\\n-5.10042580e-03 1.94804192e-01 5.22861183e-02 2.10988030e-01\\n-2.97829956e-01 2.89090574e-02 1.16931140e-01 1.19833834e-02\\n1.53040186e-01 1.83349520e-01 2.79368490e-01 4.60089415e-01\\n2.40413576e-01 4.56416845e-01 3.15560669e-01 8.55551735e-02\\n4.08024997e-01 5.93873084e-01 3.53891492e-01 2.14175612e-01\\n1.93166677e-02 1.06202718e-02 -1.07715011e-01 3.89366858e-02\\n2.02558517e-01 3.28927934e-01 1.40826613e-01 1.03379095e+00\\n3.78616631e-01 3.65503281e-01 8.96946192e-01 -5.61348319e-01\\n-4.41696346e-01 1.61616188e-02 5.09271801e-01 -4.60500330e-01\\n-3.26234363e-02 1.46196291e-01 -3.10163289e-01 3.16170007e-01\\n-4.57625687e-01 -8.59101862e-02 1.08486060e-02 1.23156169e-02\\n3.13986652e-02 -1.86317749e-02 -1.30529612e-01 1.55483410e-01\\n-2.27623701e-01 -2.73653626e-01 -1.75416186e-01 -2.32355103e-01\\n-2.77309000e-01 -1.05848424e-01 -9.16233808e-02 9.98180658e-02\\n-6.31807745e-02 -3.31707627e-01 -1.66980878e-01 -1.97949354e-02\\n5.05184412e-01 -2.20968813e-01 -8.60830396e-02 -7.73406178e-02\\n1.36285082e-01 3.10595125e-01 6.15562320e-01 8.55323300e-03\\n2.02722639e-01 -1.76636368e-01 -1.74178466e-01 -3.84292044e-02\\n1.30484119e-01 1.43787667e-01 1.17616199e-01 5.23070455e-01\\n-3.58872712e-01 -8.50069374e-02 1.59691796e-01 2.49158993e-01\\n-3.31901193e-01 -1.95418999e-01 -7.76703060e-02 1.85278848e-01\\n4.09422107e-02 1.82861418e-01 -3.53871256e-01 1.92606822e-01\\n-2.40807399e-01 -5.86088300e-01 4.44573641e-01 -4.28800374e-01\\n2.79977196e-03 -3.72530930e-02 4.67348576e-01 2.11324215e-01\\n-1.12077259e-01 6.41296571e-03 -1.48027693e-03 3.70333225e-01\\n9.70532373e-03 4.61281717e-01 -3.08950275e-01 -8.64729956e-02\\n-3.60588402e-01 3.62756699e-01 -7.70005062e-02 2.11403668e-01\\n-3.55138630e-02 5.02551317e-01 -4.16979976e-02 1.88169673e-01\\n9.23456773e-02 -1.86422244e-01 -2.60167539e-01 -3.69283050e-01\\n-3.39867830e-01 -2.44794905e-01 1.20273359e-01 -1.42484888e-01\\n2.66324103e-01 -2.89228320e-01 -8.35647136e-02 -1.98115751e-01\\n-2.02512160e-01 -4.02971536e-01 -6.59103543e-02 3.14233303e-02]]',\n", + " 'About our client Our client is providing high quality services in the fields of Logistics, Information Technology, Customer Service and Real Estate. Your responsibilities Contribute in custom implementation of Master Data Integration and distribution solutions between different Group Brands and Countries. Master Data Solution is being custom built using Software AG’s Webmethods EAI product stack and MS SQL database, Goal of this role will be to further implement and extend the solution into new Master Data areas around a central Master Data Hub. Design robust data integration architecture and data models Act as Integration Solution Designer working with Business Analysts and development teams to define end-to-end Integration Solution Design Implementation of Master Data Integration Solutions based on SOA principles and their Data Integration Architecture Assist in Governance of master data, interfaces and their related processes Operational support of the Integration Landscape- infrastructure, solutions and applications assigned to the Services- Integration Competence Center (INTCC) Your profile Degree in information technology or equivalent Technically qualified in the Information technology field (IT degree or Master’s degree) Multiple years of experience in designing and developing Master Data Management (MDM) Integration Solutions Expertise with data modeling and MSSQL relational databases Experience in Software AG Webmethods EAI stack or any other EAI and ESB stacks. Experience as a Java/JEE integration developer and object-oriented programming Experience in developing web applications and frameworks like Angular JS or Webmethods CAF UI Experience in XML/ SOAP/ REST based Webservices Experience with various communication protocols such as HTTP, FTP, AS2 Experience in SAP Integrations and SAP Technology (ABAP, IDOC’S, ALE, RFC etc.) will be an added advantage Experience in at least one messaging Technologies (Webmethods Universal Messaging/Broker, JMS, IBM MQ, Active MQ or any other messaging technology) Familiar with SOA based solutions Experience in operating applications in Unix based environments- shell scripting Ability to work in a team and independently Good analytical skills and solution-oriented Excellent communication skills and Fluent in English and French, German will be an asset Your chance Apply now: jobs@oneagency.ch! Ort: Bern Spezialisierung: JAVA Entwicklung XML JEE/J2EE SQL Sprachen: Deutsch Englisch Job ID: 2416',\n", + " '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Customer Service\", \"Governance\", \"Infrastructure\", \"Real Estate\", \"Operations\", \"Integration\", \"Information Technology\"]',\n", + " '[\"Web Applications\", \"Siebel EAI\", \"Hyper SQL Database (HSQLDB)\", \"Data Management\", \"Pentaho Data Integration\", \"Data Modeling\", \"Branding\", \"Data Hub\", \"Data Integration\", \"Landscaping\", \"AS2\", \"SAP Technology Consulting\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Web Development\", \"IDoc\", \"Java Message Service (JMS)\", \"Object-Oriented Programming (OOP)\", \"Quality Of Services\", \"Custom Built PC\", \"Project-Based Solutions\", \"AD Model Builder (ADMB)\", \"File Transfer Protocol (FTP)\", \"Logistics\", \"Advanced Business Application Programming (ABAP)\", \"Message Broker\", \"Integrated Services\", \"Angular (Web Framework)\", \"Relational Databases\", \"Solution Design\", \"Data Language Interface\", \"Simple Object Access Protocol (SOAP)\", \"Master Data Management\", \"Centering\", \"Communications Protocols\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Extensible Markup Language (XML)\", \"Unix\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " \"['English', 'Igbo', 'Dzongkha', 'Icelandic', 'Persian']\"],\n", + " ['3',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.25972161e-01 1.82309926e-01 4.60240096e-01 3.88041548e-02\\n5.27822554e-01 -2.00513646e-01 3.07385270e-02 3.83118659e-01\\n8.81233513e-02 -3.35077792e-01 -3.31870243e-02 -3.11059833e-01\\n-1.40460432e-01 1.27683818e-01 -8.64985678e-03 3.43016297e-01\\n3.68590027e-01 1.36323437e-01 -1.77311301e-01 4.07873333e-01\\n1.12691619e-01 -1.01935767e-01 1.18176444e-02 8.02999854e-01\\n5.14983177e-01 1.09390533e-02 -9.28386971e-02 1.86021086e-02\\n-2.69973010e-01 -1.68353513e-01 4.47183996e-01 -4.36146222e-02\\n-1.05818823e-01 -3.45961630e-01 1.67472348e-01 7.74640739e-02\\n-2.25931183e-01 8.37413743e-02 -1.18933901e-01 9.82481018e-02\\n-4.62380052e-01 -2.33057842e-01 -1.11393016e-02 3.71388569e-02\\n-2.39295825e-01 -2.68159091e-01 9.56443623e-02 4.43644859e-02\\n8.14447030e-02 9.37325507e-02 -4.83117551e-01 2.99364716e-01\\n-2.41431952e-01 -1.92126647e-01 2.47133553e-01 5.65697193e-01\\n-3.69032025e-02 -5.38636148e-01 -4.52528417e-01 -4.23976004e-01\\n3.02578770e-02 -6.65280148e-02 8.93900543e-02 -4.17196304e-01\\n4.03923780e-01 -4.95664291e-02 -1.60344839e-02 3.26124519e-01\\n-7.66836762e-01 5.57993306e-03 -2.70500004e-01 -8.28465149e-02\\n-4.10270035e-01 -5.49467020e-02 -3.70843530e-01 -2.25932058e-03\\n-1.23264879e-01 3.71388048e-01 1.09313175e-01 1.79937452e-01\\n-2.68536717e-01 2.97999561e-01 -2.28436574e-01 4.39626038e-01\\n2.38174379e-01 2.11773112e-01 2.14993790e-01 3.42533946e-01\\n-3.90221357e-01 4.78368282e-01 1.77198201e-01 -2.72695988e-01\\n2.97895491e-01 8.05688575e-02 3.30556244e-01 -3.28749642e-02\\n1.50311276e-01 6.86438158e-02 -2.63857186e-01 2.51930207e-01\\n2.75529921e-01 -3.63178968e-01 2.85147037e-02 -7.69500658e-02\\n8.40694178e-04 7.35757574e-02 4.67434004e-02 2.34161988e-01\\n-2.43389234e-01 5.17325580e-01 1.59513518e-01 -1.49813384e-01\\n-1.62780598e-01 -4.95391697e-01 -6.07719794e-02 4.03835438e-02\\n3.63908112e-02 1.19789228e-01 2.16845468e-01 5.70448861e-02\\n2.19390929e-01 -1.67973265e-02 5.53100705e-02 8.34067106e-01\\n-4.36116643e-02 -3.59342694e-02 -2.24684000e-01 3.02282155e-01\\n1.30359948e-01 -3.43923748e-01 2.39593014e-01 2.92837113e-01\\n9.61170495e-02 -1.19641654e-01 -2.61175185e-01 3.80248010e-01\\n-8.27484280e-02 -2.14978993e-01 -2.17670843e-01 2.04866171e-01\\n4.06045988e-02 -4.70596492e-01 6.80355132e-01 5.21477051e-02\\n1.59599200e-01 -7.48544633e-02 9.12806317e-02 -1.27606601e-01\\n-9.67475325e-02 2.02053592e-01 8.97060707e-02 1.58364475e-01\\n-2.99857438e-01 -3.24041158e-01 -1.76518500e-01 1.73897550e-01\\n-4.07551467e-01 1.38561815e-01 -8.72857869e-02 -1.46169052e-01\\n2.94432759e-01 1.03343114e-01 -3.62105727e-01 2.29781941e-01\\n-2.01501116e-01 7.56594492e-03 -5.33736832e-02 4.63217854e-01\\n-1.95115134e-01 2.03369319e-01 3.49731073e-02 -2.21205391e-02\\n6.66948497e-01 3.38200182e-01 1.17670707e-01 2.31263749e-02\\n2.66580343e-01 -2.71575223e-03 2.14269355e-01 5.80774248e-02\\n-7.59289086e-01 3.65284413e-01 1.55970324e-02 -1.97686449e-01\\n5.90963326e-02 -9.50042233e-02 2.84486622e-01 -4.16169494e-01\\n-5.18031940e-02 -2.11864278e-01 -4.41584378e-01 -2.12039143e-01\\n-2.73039371e-01 1.43839624e-02 3.07349741e-01 -5.35399795e-01\\n-6.99087679e-02 3.00495446e-01 -5.63752651e-01 -2.14882940e-01\\n1.70416176e-01 3.03622931e-01 1.15070254e-01 5.40704578e-02\\n-7.48782679e-02 -6.79392278e-01 6.67964146e-02 -4.31898981e-01\\n-3.59579831e-01 -1.43316174e-02 -4.50412571e-01 2.13948086e-01\\n6.20485321e-02 4.17212211e-02 -1.09753035e-01 1.65961176e-01\\n-2.48744145e-01 -1.38504773e-01 1.11490592e-01 2.05052812e-02\\n3.02611202e-01 6.07155859e-02 -4.64979678e-01 4.30662125e-01\\n-2.81098306e-01 5.11593163e-01 1.85008258e-01 -7.57326186e-01\\n5.74034393e-01 3.37535799e-01 -9.99366492e-02 -4.42817807e-01\\n5.50441027e-01 -3.39149714e-01 -1.15464889e-01 5.64512089e-02\\n-3.20634305e-01 -3.06303531e-01 2.40475267e-01 -3.26777190e-01\\n-2.76131868e-01 4.50085253e-01 4.65395935e-02 1.02973126e-01\\n2.72129059e-01 -2.19907060e-01 -5.01147732e-02 6.58455640e-02\\n-7.29757920e-02 -2.17130125e-01 -4.91143376e-01 -3.91559079e-02\\n-3.90565358e-02 -4.26554710e-01 -8.78385678e-02 -4.46184009e-01\\n-1.93908229e-01 -4.06153977e-01 -1.88737169e-01 1.85721308e-01\\n2.46318460e-01 3.63205895e-02 1.24839339e-02 -3.16444822e-02\\n-1.89068869e-01 -6.94603801e-01 3.42434384e-02 1.10273719e-01\\n4.47300375e-01 1.93019032e-01 1.37744710e-01 -6.61570206e-02\\n1.21055312e-01 8.20595801e-01 -1.98637009e-01 -2.56368279e-01\\n1.20762415e-01 7.03201145e-02 7.16204941e-02 -1.56968191e-01\\n1.37659520e-01 3.55493516e-01 -3.32486242e-01 -4.54530641e-02\\n-1.08643413e-01 -1.61953300e-01 4.28994507e-01 -4.50886041e-03\\n-3.58219385e-01 -2.58688301e-01 -7.62887523e-02 6.36898950e-02\\n-5.80926001e-01 -1.99150175e-01 5.45143485e-01 2.65415907e-01\\n2.31855735e-01 1.17926307e-01 1.64546266e-01 -3.04037426e-02\\n-1.89089417e-01 -3.36750120e-01 2.76831359e-01 7.82701671e-02\\n6.05927221e-02 5.68566136e-02 1.70564018e-02 -6.60516083e-01\\n-3.07928133e+00 -1.36260435e-01 2.04543009e-01 -2.74991542e-01\\n1.91050038e-01 -1.05118133e-01 3.24771553e-02 -9.82534960e-02\\n-2.67867535e-01 1.35505736e-01 -1.01696119e-01 -1.93334833e-01\\n8.59103650e-02 1.48705438e-01 2.39607707e-01 1.04718499e-01\\n2.03483790e-01 -1.54805556e-01 -1.76227372e-03 3.25024307e-01\\n-1.30704090e-01 -6.79139614e-01 1.71775267e-01 -1.18264861e-01\\n3.35542530e-01 1.99890092e-01 -3.63701522e-01 -2.04560608e-01\\n-3.09739292e-01 -2.09116235e-01 1.51127940e-02 -3.46992493e-01\\n-1.23579942e-01 2.46115938e-01 1.91082001e-01 -1.80376664e-01\\n1.12678662e-01 -4.30446923e-01 -1.47436500e-01 -5.14610350e-01\\n9.26637650e-02 -5.87351799e-01 6.45765429e-03 -1.46780223e-01\\n7.23004282e-01 -3.28756422e-01 2.51842976e-01 4.21436690e-02\\n1.84404105e-01 1.31646618e-01 1.77398622e-01 -2.16096975e-02\\n-2.61649340e-01 -3.39562446e-01 -5.68366647e-02 -2.36328632e-01\\n6.20820045e-01 5.02843976e-01 -2.34211728e-01 1.68539421e-03\\n5.83029352e-02 -3.73863041e-01 -3.79948556e-01 -2.51776069e-01\\n-1.03984557e-01 -2.88192630e-01 -5.92338860e-01 -4.39090133e-01\\n-1.99536726e-01 2.05398947e-02 -2.09143851e-02 5.99308193e-01\\n-1.99688837e-01 -3.59549403e-01 3.71728390e-02 -5.83014250e-01\\n2.70767689e-01 -1.94168940e-01 7.62940794e-02 -2.17999488e-01\\n-2.01216474e-01 -5.55336356e-01 4.19292673e-02 -1.34545371e-01\\n-5.63517213e-02 -2.84844607e-01 -3.22182290e-02 -5.24639934e-02\\n-2.52541602e-01 -4.98524815e-01 4.01998371e-01 1.40139192e-01\\n3.65950167e-01 1.13092780e-01 3.14593226e-01 -7.91940540e-02\\n2.85575092e-01 -1.01126945e-02 1.27692074e-01 -4.00050700e-01\\n7.50818998e-02 6.88411221e-02 4.92206573e-01 -1.99832082e-01\\n8.79143178e-02 1.14784412e-01 -2.99478799e-01 -1.30216449e-01\\n3.41384590e-01 -1.84303466e-02 -9.10376722e-04 -2.55819317e-02\\n2.81386167e-01 -3.75699550e-01 -2.20978394e-01 5.63926548e-02\\n1.11726739e-01 6.29562736e-01 -7.38921240e-02 -3.61767173e-01\\n-1.50198326e-01 5.49922049e-01 -6.29680678e-02 3.74586135e-02\\n-7.85078034e-02 8.07458013e-02 -2.23857969e-01 2.64670968e-01\\n5.98244555e-02 -2.92934418e-01 -2.77020276e-01 -1.58345506e-01\\n3.21874022e-02 2.88698405e-01 1.94495127e-01 5.37030026e-02\\n1.69680326e-03 -4.04658556e-01 -8.22796971e-02 2.21844509e-01\\n2.03910291e-01 4.42292601e-01 8.61155540e-02 -2.13491425e-01\\n-5.57508580e-02 4.79698181e-01 -1.64071262e-01 2.69057572e-01\\n-1.97141424e-01 9.52728316e-02 -5.15679836e-01 -2.45657250e-01\\n-3.22022200e-01 -3.71634990e-01 1.93703368e-01 3.49903047e-01\\n7.76421353e-02 4.56004776e-02 2.01864983e-03 -4.83336985e-01\\n2.80215442e-01 1.12315468e-01 2.08314106e-01 1.22792087e-01\\n-8.20273906e-02 5.79760373e-01 3.24717499e-02 -5.08821942e-02\\n-2.39353120e-01 1.13580570e-01 -1.14677094e-01 -1.93785697e-01\\n1.23440668e-01 -5.38683772e-01 -1.38539299e-01 3.60751271e-01\\n1.24218032e-01 -2.41286412e-01 -1.84318155e-01 2.92224586e-01\\n-6.73509091e-02 -2.53834635e-01 -2.27760807e-01 -4.76558469e-02\\n3.96245092e-01 1.05850078e-01 2.44866207e-01 -4.22976792e-01\\n2.05802731e-02 3.16218771e-02 -1.43547226e-02 4.22730148e-01\\n-1.71101075e-02 1.29679842e-02 -1.20946005e-01 -2.43411556e-01\\n4.93974090e-01 2.66678631e-02 -9.43832770e-02 1.07316479e-01\\n1.14340901e-01 -2.69126475e-01 -4.78230238e-01 -1.83768501e-03\\n6.10399842e-02 -1.26717374e-01 1.39015108e-01 8.91534984e-02\\n6.47467896e-02 2.45339144e-02 -4.89231169e-01 -2.13751778e-01\\n-2.41733104e-01 -5.25473431e-02 8.90705511e-02 -4.27102387e-01\\n-1.28822297e-01 -8.90454352e-02 -5.10802388e-01 2.21324235e-01\\n-2.87056953e-01 -3.76962796e-02 2.15834185e-01 6.72568679e-02\\n-2.09871203e-01 -9.88579616e-02 1.56540453e-01 3.48584861e-01\\n-3.25046778e-01 -2.82673597e-01 7.45313913e-02 -1.01789093e+00\\n2.13743508e-01 4.56102900e-02 -1.55562028e-01 1.86216429e-01\\n-3.99098545e-02 -6.89056277e-01 1.72192335e-01 -4.02195692e-01\\n-5.65077178e-02 -7.54329488e-02 -2.22990453e-01 -2.01319993e-01\\n1.76147789e-01 -9.39187557e-02 -3.54897320e-01 4.24434870e-01\\n-3.25181097e-01 3.02044421e-01 -2.01269343e-01 3.35145444e-02\\n-7.22902939e-02 -1.49711028e-01 1.56923294e-01 -3.07342172e-01\\n-3.89001220e-01 -2.93077677e-01 -3.21712136e-01 -2.22281530e-01\\n6.21619113e-02 -3.82596821e-01 -5.76206334e-02 4.63966280e-02\\n5.10748148e-01 8.87594223e-02 -1.10826522e-01 -2.57768571e-01\\n1.46319307e-02 -4.75860626e-01 1.25647308e-02 -1.62303537e-01\\n-1.24252543e-01 -1.23974390e-01 1.82830751e-01 1.87634900e-01\\n1.35423243e-01 -5.11440337e-01 3.18530381e-01 -2.70976335e-01\\n-3.25612277e-01 -9.84951034e-02 5.77368364e-02 9.12609398e-02\\n3.62453222e-01 -4.62031066e-01 -4.99801338e-02 2.84197778e-01\\n1.41021430e-01 1.02387734e-01 2.26282150e-01 -2.20260210e-02\\n5.47817759e-02 2.36834422e-01 -4.02780563e-01 -3.49529125e-02\\n7.28735864e-01 6.36048317e-02 1.15245074e-01 2.95333892e-01\\n1.85252503e-01 2.47042060e-01 4.55743581e-01 -5.11097312e-02\\n-2.18262132e-02 1.85932666e-01 3.15329619e-02 -4.92577523e-01\\n-8.17644522e-02 -3.12537067e-02 -2.31141374e-01 -4.03899044e-01\\n6.45071983e-01 3.74137402e-01 -4.41730797e-01 -3.31220478e-01\\n-6.60742223e-02 -1.72294557e-01 2.29084805e-01 -3.09711043e-02\\n4.13585752e-02 -1.02447808e-01 3.47379178e-01 -8.83611515e-02\\n1.95212439e-01 6.36070848e-01 -1.72376364e-01 -3.08130860e-01\\n-1.36338130e-01 1.54107779e-01 -2.84463987e-02 4.89341855e-01\\n-3.37848395e-01 2.51304418e-01 2.76741106e-02 1.54452650e-02\\n-4.97861356e-02 2.47311175e-01 9.70601439e-02 9.09015536e-02\\n2.34690502e-01 7.73711037e-03 3.79537553e-01 5.72275221e-01\\n1.76239148e-01 4.32909101e-01 3.31621319e-01 3.40414606e-02\\n3.96334589e-01 5.77271402e-01 4.54982519e-01 1.50337741e-01\\n-3.17969918e-02 1.48689970e-01 7.57291541e-02 -1.28129736e-01\\n4.21068937e-01 3.50408405e-01 1.12657823e-01 9.19663668e-01\\n3.82002026e-01 3.76989096e-01 7.07433760e-01 -7.12125480e-01\\n-4.20664757e-01 1.46591654e-02 5.99066019e-01 -4.36608076e-01\\n6.86650351e-02 1.36931196e-01 -1.71794161e-01 3.37077260e-01\\n-4.96647477e-01 -2.04845399e-01 1.44012654e-02 3.19488980e-02\\n-4.25091246e-03 -8.02719370e-02 -2.50780493e-01 2.59769950e-02\\n-1.50735885e-01 -5.72400168e-02 -4.78805929e-01 -1.38075545e-01\\n-1.54214069e-01 -4.13403427e-03 -5.40589243e-02 -2.15688750e-01\\n1.38140293e-02 -2.37362400e-01 -5.31846620e-02 -1.01747744e-01\\n3.10975015e-01 -1.91179052e-01 -5.38796932e-03 -1.46132916e-01\\n2.99586833e-01 1.75029308e-01 5.59096694e-01 4.66897599e-02\\n1.29685640e-01 -2.11708397e-01 -2.73740321e-01 9.53275338e-02\\n1.37150571e-01 1.07840657e-01 4.53513041e-02 1.82484195e-01\\n-2.41997555e-01 -1.58939764e-01 1.47235051e-01 3.35812151e-01\\n-4.67892677e-01 2.51869555e-03 -1.16797432e-01 1.01557821e-01\\n6.62344098e-02 1.12400115e-01 -1.95465058e-01 -5.14276363e-02\\n-1.72580302e-01 -4.18463498e-01 3.72841954e-01 -1.69517606e-01\\n-2.11953759e-01 5.89743443e-02 3.09473425e-01 1.87666088e-01\\n-3.02863181e-01 -8.14485699e-02 -1.68710276e-01 1.27660379e-01\\n1.31128252e-01 2.06666306e-01 -1.34282395e-01 -3.07062209e-01\\n-3.01935047e-01 6.54495880e-02 -1.54230207e-01 9.62111428e-02\\n4.46040519e-02 4.56519783e-01 -3.60696353e-02 -6.11511432e-02\\n4.58282471e-01 3.95893641e-02 -3.27029467e-01 -1.56432047e-01\\n-2.33172983e-01 -1.71896622e-01 1.05248708e-02 -2.92119868e-02\\n1.34704441e-01 -4.27240282e-01 -9.03581455e-02 -1.77082211e-01\\n-3.39127742e-02 -3.07589471e-01 3.26588051e-03 -1.20717153e-01]]',\n", + " \"42matters.com is a Swiss company operating in the mobile app space. We offer a full suite of products and services for App Market Data and Mobile App Intelligence. Bringing a unique combination of technical and business skills together, we provide our customers with a thorough analysis of the latest developments on the app stores and mobile industry. We are a truly international team, with an innovative and fast-paced company culture. As a Data Engineer, you are someone who is passionate about processing large data sets. You will be responsible for building and maintaining data pipelines to support our products and our Data Science team. You will contribute to the entire stack, working with DevOps on maintenance and tuning, alongside collaborating with Data Scientists to build applications and algorithms. To thrive as a member of team 42matters, you must embrace our exciting work-hard, play-hard environment. We're not afraid to move fast and break things as we release, launch, iterate, update and announce; sometimes all in the same day. We're a closely-knit team and, especially at the end of a long day over beers, we feel like we're inventing the future together. Job type: Full-time Location: Zurich Starting date: As soon as possible RESPONSIBILITIES Write data pipelines to extract, transform and load (ETL) data automatically, using a variety of traditional as well as large-scale distributed technologies. Extend and optimize the current system by making the enormous amounts of data accessible for both our data scientists and our products. Help to build a reliable, sustainable and scalable data infrastructure. Requirements 3+ years of work experience as a Data Engineer. Strong experience with big data technologies on Amazon Web Services (e.g. Redshift, EC2, MapReduce, Spark). Strong knowledge of Python programming language. Familiar working with relational data stores (e.g. PostgreSQL, Redshift). Good abilities in DevOps. Fluent English. Ability to work autonomously but also be a strong team player. Self-motivated, team player comfortable in a small, intense and high-growth start-up environment. PREFERRED QUALIFICATIONS Strong educational background: Bachelor/Master degree in CS or other technical/science/math field Proficiency in more than one programming language (Java, Python, Bash). Strong SQL skills and the ability to write and analyze complex SQL queries. Experience designing data models and data warehouses. Ability to identify and resolve performance issues. \",\n", + " '[\"Self-Motivation\", \"Writing\", \"Collaboration\", \"Operations\", \"Team Motivation\", \"Reliability\", \"Innovation\"]',\n", + " '[\"Accessioning\", \"KM Programming Language\", \"Sustainability\", \"Data Modeling\", \"Data Engineering\", \"Industrialization\", \"Scale (Map)\", \"Mobile App\", \"MapReduce\", \"PostgreSQL\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Data Pipeline\", \"Iterators\", \"Extract Transform Load (ETL)\", \"Mobility\", \"Minimum Data Set\", \"App Store (IOS)\", \"Data Science\", \"Web Services\", \"Bash (Scripting Language)\", \"Big Data\", \"Amazon Web Services\", \"Data Store\", \"Clinical Data Warehouse\", \"Data Infrastructure\", \"Experience Design\", \"Algorithms\", \"Amazon Data Pipeline\", \"Market Data\", \"Amazon Redshift\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " \"['English', 'Hebrew', 'Tajik', 'Pashto']\"],\n", + " ['15',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-9.98998433e-02 1.97152644e-01 4.99470174e-01 -1.87371280e-02\\n5.57983756e-01 -4.58676927e-02 2.19857134e-02 2.63412774e-01\\n5.93734831e-02 -3.48637283e-01 9.23671760e-03 -2.26297766e-01\\n-4.41474877e-02 1.25425667e-01 1.01614155e-01 3.50094080e-01\\n2.28653610e-01 1.43700704e-01 -1.61327466e-01 2.42487073e-01\\n2.60273933e-01 -2.27474153e-01 1.46380231e-01 7.42537141e-01\\n3.51047695e-01 7.53103048e-02 -1.22040108e-01 -8.72733742e-02\\n-2.35802457e-01 -2.19702959e-01 4.60112602e-01 2.73665488e-02\\n-1.78154372e-02 -3.69986176e-01 1.52367219e-01 4.63702492e-02\\n-3.02975923e-01 -2.78775506e-02 -7.84548894e-02 2.49695569e-01\\n-6.48348093e-01 -2.75886148e-01 -2.66547129e-02 4.19582352e-02\\n-2.34154552e-01 -2.63983905e-01 -3.10796387e-02 -7.76615739e-02\\n8.40050429e-02 8.83230641e-02 -5.07604837e-01 2.41512030e-01\\n-1.24171391e-01 -2.28536963e-01 2.48472199e-01 6.91273987e-01\\n-4.50681038e-02 -4.41353738e-01 -5.37199080e-01 -3.11479896e-01\\n8.33623931e-02 -1.95348561e-01 6.43659532e-02 -2.55740345e-01\\n2.96868801e-01 2.51846164e-02 1.24646239e-01 3.39337111e-01\\n-6.92676008e-01 -9.81176551e-03 -2.06226423e-01 7.86596071e-03\\n-2.53300458e-01 -8.06198344e-02 -2.65956372e-01 -1.03259161e-01\\n-1.63169637e-01 5.04333436e-01 1.56563893e-01 -2.13129390e-02\\n-6.97189122e-02 2.04713434e-01 -2.66840726e-01 2.91900247e-01\\n1.95358247e-01 2.55060107e-01 1.41678452e-01 2.92000473e-01\\n-3.24760646e-01 4.51508760e-01 8.28409120e-02 -2.80482441e-01\\n2.31827781e-01 6.45272881e-02 4.46475387e-01 -7.59381279e-02\\n9.55346152e-02 8.09905306e-02 -2.48376578e-01 2.68496335e-01\\n2.35486105e-01 -2.48794243e-01 7.69232213e-02 -8.61431807e-02\\n-1.40916556e-01 -5.14186770e-02 -4.72015655e-03 2.14406341e-01\\n-1.84699848e-01 3.66772532e-01 2.04026341e-01 -5.82609437e-02\\n-1.51278481e-01 -5.49873054e-01 1.88134611e-02 5.32678403e-02\\n6.83155656e-02 2.22340986e-01 1.91423163e-01 7.53043741e-02\\n1.86959937e-01 5.27589358e-02 1.90087140e-01 8.44816625e-01\\n2.61658803e-02 1.23406202e-01 -2.85340935e-01 2.81537175e-01\\n1.05313189e-01 -1.68594822e-01 1.16564445e-01 1.91351876e-01\\n8.37723389e-02 -9.97206122e-02 -2.76905566e-01 3.22454602e-01\\n-7.89886340e-02 -2.12458119e-01 -1.41082928e-01 2.16886789e-01\\n-7.93813765e-02 -3.31747264e-01 5.10200918e-01 1.48076490e-01\\n1.31854162e-01 -5.91597967e-02 8.79621319e-03 -1.36009589e-01\\n-1.59676716e-01 1.80109471e-01 5.42135425e-02 1.47959471e-01\\n-3.39210600e-01 -2.66746342e-01 -2.66191065e-01 1.06226690e-01\\n-3.05226713e-01 9.95913744e-02 -5.22824898e-02 -8.04561824e-02\\n2.76378810e-01 1.74293458e-01 -2.94111192e-01 2.37864852e-01\\n-8.44585299e-02 -1.09393433e-01 1.25585094e-01 3.02391976e-01\\n-2.31247544e-01 1.81893796e-01 1.20371310e-02 -1.93199307e-01\\n5.66395700e-01 1.66991785e-01 2.37456560e-01 9.21028107e-02\\n2.88263500e-01 -6.08759522e-02 1.05367444e-01 2.27070495e-01\\n-5.73513687e-01 3.11017722e-01 -1.05044939e-01 -7.21694678e-02\\n1.82422280e-01 -6.32762685e-02 3.83740097e-01 -3.05233240e-01\\n1.57807574e-01 -1.17152251e-01 -3.57045382e-01 -2.67231077e-01\\n-1.65865228e-01 1.71132118e-01 3.61724347e-01 -4.38111156e-01\\n-2.45524123e-02 3.20603430e-01 -4.49311018e-01 -1.78323194e-01\\n1.68470204e-01 1.88515052e-01 1.43587887e-01 8.76417011e-02\\n-2.38418832e-01 -4.36608940e-01 -2.54167058e-03 -3.21836710e-01\\n-3.00735235e-01 5.79095706e-02 -2.60441244e-01 2.78234243e-01\\n5.49001098e-02 6.52710944e-02 -1.32333368e-01 1.48784906e-01\\n-1.94907054e-01 -5.45627922e-02 1.67649865e-01 2.76614223e-02\\n2.20458657e-01 7.26060793e-02 -3.43278468e-01 3.71006191e-01\\n-1.22606680e-01 5.54795384e-01 1.31609350e-01 -8.16452086e-01\\n4.77201194e-01 2.66264230e-01 -1.40279502e-01 -3.60791326e-01\\n5.56011319e-01 -2.08606049e-01 4.72614579e-02 1.61297396e-01\\n-3.17924023e-01 -3.60303968e-01 3.37640136e-01 -1.41066924e-01\\n-2.24926263e-01 4.85480428e-01 1.72831804e-01 1.30888209e-01\\n1.59585848e-01 -2.51462340e-01 -1.17638201e-01 3.39746214e-02\\n-1.53288677e-01 -2.30060682e-01 -5.00312567e-01 -2.85034962e-02\\n-1.40911520e-01 -3.92224193e-01 -7.19712824e-02 -3.09450299e-01\\n-2.25271046e-01 -3.30438226e-01 -1.03796020e-01 1.81441441e-01\\n3.11140209e-01 2.38120362e-01 1.24966754e-02 8.45534634e-03\\n-1.26339896e-02 -6.34600580e-01 -8.67870599e-02 8.32965896e-02\\n3.69247437e-01 1.30257577e-01 1.44248337e-01 4.63810451e-02\\n-4.26720902e-02 5.18113732e-01 -1.74384668e-01 -1.52194649e-01\\n1.39776304e-01 1.27821162e-01 8.16736668e-02 -6.81443959e-02\\n1.47215068e-01 3.12286437e-01 -2.22207084e-01 9.18604061e-02\\n-9.47456062e-02 -4.78177592e-02 3.32185388e-01 4.27488200e-02\\n-3.00677687e-01 -2.40568906e-01 -1.16933428e-01 1.17763579e-01\\n-4.97554302e-01 -2.18924999e-01 4.79001731e-01 1.79978967e-01\\n1.86108798e-01 1.39620975e-01 1.27440870e-01 -1.33280292e-01\\n-1.72111884e-01 -2.58254677e-01 3.32453758e-01 2.68188287e-02\\n1.86541125e-01 1.00505784e-01 -1.40593783e-03 -5.70831895e-01\\n-3.43930721e+00 -1.65340841e-01 1.24765515e-01 -2.75352001e-01\\n1.88078478e-01 -1.52135253e-01 7.20741153e-02 1.50343459e-02\\n-2.77613133e-01 5.70858717e-02 -5.00585400e-02 -9.10519809e-02\\n1.16038486e-01 1.80958629e-01 1.49729788e-01 2.29187727e-01\\n7.46175274e-02 -2.11780906e-01 -4.57385108e-02 3.57682198e-01\\n-3.16253662e-01 -6.25500679e-01 1.54034004e-01 -7.84544945e-02\\n1.74763709e-01 1.97557971e-01 -3.36236060e-01 -1.76586166e-01\\n-2.41786540e-01 -2.16673508e-01 7.88787380e-02 -2.43224978e-01\\n-1.20544150e-01 3.38597059e-01 1.77966803e-01 -2.47339476e-02\\n1.11569829e-01 -2.90177077e-01 5.41986723e-04 -4.14874434e-01\\n9.85726193e-02 -6.58646047e-01 -6.86026737e-02 -1.47949070e-01\\n6.62897587e-01 -3.05703431e-01 1.22703440e-01 6.12274371e-02\\n2.06132039e-01 1.19932771e-01 4.71950769e-02 -8.91026780e-02\\n-2.39108741e-01 -2.38231212e-01 -8.04287642e-02 -6.82279766e-02\\n3.29306543e-01 5.55606902e-01 -1.41079843e-01 -1.01776652e-01\\n-3.85066979e-02 -3.50557536e-01 -4.77627426e-01 -3.50319862e-01\\n-9.72887576e-02 -1.90136760e-01 -6.05422676e-01 -4.35974300e-01\\n-1.58704817e-01 -1.14522755e-01 -7.50512406e-02 5.06284535e-01\\n-2.83337206e-01 -3.42575222e-01 -1.72541335e-01 -5.07660031e-01\\n2.49455258e-01 -1.48055673e-01 -7.63515681e-02 -2.82965839e-01\\n-3.32825184e-01 -4.41049308e-01 1.95053592e-01 3.88801955e-02\\n-1.13154590e-01 -2.56487221e-01 6.71961308e-02 -2.27691740e-01\\n-3.09614331e-01 -4.63464409e-01 3.23200345e-01 5.41589968e-02\\n2.99706787e-01 1.30259842e-01 3.71802628e-01 -3.51815447e-02\\n3.12345922e-01 -9.61680785e-02 6.74147159e-02 -3.34052265e-01\\n7.97658637e-02 4.60403524e-02 4.11679924e-01 -3.23985666e-01\\n-3.62232290e-02 1.71932250e-01 -3.28969419e-01 -3.26989926e-02\\n2.89494783e-01 -9.97728482e-02 -1.23855107e-01 -1.44535854e-01\\n3.90606403e-01 -3.52675945e-01 -1.79764166e-01 6.33004233e-02\\n1.44868657e-01 4.92709488e-01 2.34151129e-02 -3.45968008e-01\\n-2.04053819e-01 3.97915274e-01 -7.78415129e-02 -1.48245245e-01\\n-8.86551812e-02 -2.49728188e-03 -2.12938026e-01 3.16476256e-01\\n-1.77277252e-02 -1.79964960e-01 -2.90927500e-01 -1.78654149e-01\\n-8.60887468e-02 3.54264438e-01 2.16819718e-01 4.51311760e-04\\n-1.32116392e-01 -3.00597429e-01 -2.19884798e-01 2.64676422e-01\\n1.64699480e-01 3.21614355e-01 1.40138313e-01 -1.95295036e-01\\n-2.37670150e-02 2.58300990e-01 -1.36433095e-01 1.72529817e-01\\n-2.48085856e-01 3.23181525e-02 -5.37817240e-01 -4.53125745e-01\\n-1.39257535e-01 -3.71102333e-01 1.85846046e-01 3.53551596e-01\\n2.64122963e-01 6.88541157e-04 -7.74141215e-03 -5.03653347e-01\\n2.46722594e-01 -1.52597893e-02 1.61403954e-01 6.18723258e-02\\n-4.11908515e-02 6.14995658e-01 1.61009490e-01 -1.54791683e-01\\n-8.38213041e-02 7.44742947e-03 -2.00097844e-01 -5.44463545e-02\\n1.46256775e-01 -3.91793877e-01 -1.51044086e-01 4.78571475e-01\\n1.16849549e-01 -3.17656100e-01 -1.38495415e-01 2.61488706e-01\\n-2.01293789e-02 -2.65987962e-01 -2.15953991e-01 5.71088158e-02\\n2.97512233e-01 1.60917565e-01 3.70271653e-01 -4.22141343e-01\\n1.48862042e-02 4.91659604e-02 -1.52740777e-01 4.59558755e-01\\n3.32085118e-02 -1.00646392e-02 -2.21461520e-01 -8.65842104e-02\\n3.60315889e-01 -8.66901129e-02 3.67928483e-02 1.07094266e-01\\n-1.62132233e-02 -1.87189251e-01 -5.38501203e-01 5.40643185e-02\\n-3.55087519e-02 -2.22213075e-01 -1.66446492e-02 2.31658742e-01\\n1.52707584e-02 3.75772780e-03 -5.79141438e-01 -2.82765359e-01\\n-1.65417030e-01 7.92880580e-02 1.15879089e-01 -4.19070035e-01\\n-1.13906212e-01 -3.97933498e-02 -5.43984115e-01 2.10181311e-01\\n-6.32139966e-02 -2.52097193e-02 1.64730832e-01 7.40281269e-02\\n-1.58122644e-01 -2.38359757e-02 1.15754612e-01 2.27616131e-01\\n-1.98546410e-01 -1.89981088e-01 3.97958932e-03 -9.69584465e-01\\n7.49571174e-02 -5.12979068e-02 -2.74407089e-01 3.77369151e-02\\n1.05678476e-02 -6.32331550e-01 6.70341551e-02 -4.01552588e-01\\n-7.78725445e-02 -5.10341302e-03 -2.73104459e-01 -2.77397186e-01\\n5.93604259e-02 9.77364853e-02 -3.69456828e-01 3.73389304e-01\\n-2.99965501e-01 3.83564740e-01 -6.55236393e-02 8.77982825e-02\\n8.50875601e-02 -3.14839125e-01 1.07931159e-01 -3.36971015e-01\\n-3.05370301e-01 -1.69857129e-01 -4.21980828e-01 -2.52053857e-01\\n-3.55787426e-02 -1.91765055e-01 -8.08241516e-02 5.34649231e-02\\n2.66178697e-01 4.46977764e-02 2.62324773e-02 -2.94415295e-01\\n-1.94731727e-03 -4.60829198e-01 1.39008075e-01 -1.31950289e-01\\n-9.15825367e-02 -1.54787511e-01 1.04006410e-01 5.43554313e-02\\n1.82314485e-01 -3.46424013e-01 4.80115563e-01 -3.19533885e-01\\n-2.44878531e-01 -9.55470800e-02 8.56073759e-03 9.55415890e-02\\n2.69538105e-01 -3.72755468e-01 2.56780535e-02 2.82279313e-01\\n1.89144269e-01 1.64526016e-01 3.31392378e-01 -4.78386953e-02\\n-7.00033307e-02 1.08433641e-01 -3.79010141e-01 6.60397038e-02\\n7.49648869e-01 1.58139348e-01 1.25816986e-01 1.14973873e-01\\n6.65250719e-02 1.15810171e-01 5.54963112e-01 1.29024267e-01\\n-1.49597526e-01 2.38715529e-01 1.48169762e-02 -5.24714589e-01\\n-1.65051237e-01 -8.94706845e-02 -1.98826209e-01 -3.94835591e-01\\n6.80251420e-01 3.73314798e-01 -4.93509024e-01 -1.49980471e-01\\n-1.29828855e-01 -9.19738412e-02 7.96814784e-02 -1.76913321e-01\\n-1.93392299e-02 -4.90420163e-02 4.50672626e-01 -8.11112002e-02\\n2.46962354e-01 3.41357142e-01 -7.36927837e-02 -2.48386577e-01\\n-5.01758754e-02 2.33399808e-01 9.60875675e-02 3.45379740e-01\\n-1.58916712e-01 3.44303370e-01 3.47258970e-02 1.89217180e-01\\n-9.04791132e-02 5.18768579e-02 3.88155989e-02 1.05042011e-01\\n5.69801107e-02 3.80215123e-02 3.77773523e-01 4.59079593e-01\\n2.90616691e-01 4.31438059e-01 3.01439136e-01 4.86432910e-02\\n4.27714586e-01 4.63314265e-01 3.30575436e-01 1.76705062e-01\\n-7.51924813e-02 9.05373991e-02 2.66333111e-02 2.87195314e-02\\n4.16210324e-01 3.12305629e-01 1.05562702e-01 7.69239187e-01\\n2.18980998e-01 1.88183337e-01 6.16315246e-01 -5.62968791e-01\\n-3.85516107e-01 -8.84358212e-02 5.47951818e-01 -3.74285072e-01\\n2.72122137e-02 1.02708444e-01 -1.94500014e-01 1.39071584e-01\\n-5.39252520e-01 -2.29361415e-01 -1.54878385e-02 1.25321329e-01\\n-6.19567707e-02 -1.31734788e-01 -2.02776849e-01 5.79915754e-02\\n-6.53996691e-02 -9.16827321e-02 -3.84773493e-01 -1.12982392e-01\\n-2.63507336e-01 -1.24508485e-01 -1.06767878e-01 -1.03236005e-01\\n-2.13398971e-02 -3.14800441e-01 -9.55086872e-02 1.65221598e-02\\n3.30449432e-01 -1.56356573e-01 -1.24725811e-01 -4.95006405e-02\\n3.12073350e-01 1.38101891e-01 5.02904177e-01 6.18027970e-02\\n7.78317377e-02 -3.44437838e-01 -2.45629191e-01 1.18237786e-01\\n2.95107663e-01 9.48463082e-02 3.10304239e-02 3.80618721e-01\\n-2.21369207e-01 -1.61770299e-01 1.02590494e-01 2.90005982e-01\\n-5.21793008e-01 3.65752019e-02 -5.89083470e-02 2.20316574e-01\\n1.47336632e-01 1.66876733e-01 -1.72704577e-01 2.20828410e-02\\n-2.61339217e-01 -4.60745931e-01 1.87247515e-01 -7.49568790e-02\\n-1.58283606e-01 1.56375453e-01 2.99991578e-01 7.89559186e-02\\n-1.93863139e-01 -1.25433318e-02 2.76581501e-03 2.26015866e-01\\n9.03900936e-02 2.26390019e-01 -2.52003312e-01 -3.00219715e-01\\n-2.56502569e-01 1.70084387e-01 -1.65290222e-01 1.68460369e-01\\n-1.93015039e-02 2.79036134e-01 2.67824288e-02 5.35682514e-02\\n3.64560634e-01 4.41920618e-03 -1.21809565e-01 -3.01301807e-01\\n-2.14202970e-01 -4.11552042e-01 -7.04973564e-02 7.54717737e-02\\n1.45527303e-01 -4.11020845e-01 -9.77766421e-03 -1.98590174e-01\\n-1.80508822e-01 -3.55517030e-01 7.10508823e-02 -8.82288218e-02]]',\n", + " 'Ava is a digital health company with offices in Zurich, San Francisco, Belgrade and Makati that aims to advance women’s reproductive health by bringing together artificial intelligence and clinical research. Our wearable device, smart app and proprietary predictive algorithms empower women by giving them unique clinically researched insights and personalized data about their menstrual cycle, fertile window, and pregnancy delivered in a way that’s convenient and non-invasive. Ava was voted Best of Baby Tech at CES 2017, named a Women’s Health “Editors’ Choice” product and has been honoured as the best Swiss startup in 2017 and 2018. Our current key markets include USA, Germany, Switzerland and UK. Would you like to join us on our challenging adventure? Responsibilities: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements About you: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Would you like to contribute to a highly motivated team, with a lot of space for your own initiatives? If yes, please apply online or send your complete application to recruiting(at)avawomen.com. We appreciate that you share our excitement for Ava. Please be aware that only complete applications (CV and motivation letter) can be considered. Ava – Revolutionizing women’s health Moritz Ritter, System Architect and Data Engineering Manager Should you not hear back from us within 3 weeks your application has unfortunately not been successful for the respective role.',\n", + " '[\"Research\", \"Team Motivation\"]',\n", + " '[\"Non-Invasive Monitoring\", \"Storage Area Network (SAN)\", \"Automation\", \"Data Quality\", \"MySQL\", \"Tooling\", \"Computer Science\", \"Prediction\", \"Fertilizers\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Reproductive Health Care\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Smart Device\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Data Science\", \"Virtual Computing\", \"Personalization\", \"Artificial Intelligence\", \"Clinical Research\", \"Digital Health Technologies\", \"Big Data\", \"Scalability\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Algorithms\", \"Scripting\", \"Git Flow\", \"Wearables\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " \"['English', 'Kannada']\"],\n", + " ['118',\n", + " 'software engineer',\n", + " 'Bern',\n", + " 'IT Services',\n", + " 'www.swisscom.ch',\n", + " '[[-2.09733129e-01 3.50201875e-01 2.88068235e-01 6.78935274e-02\\n5.85411787e-01 -3.34826916e-01 7.13923946e-03 4.90224123e-01\\n-5.37332520e-02 -5.77073276e-01 4.92801815e-02 -1.75621271e-01\\n-6.04336783e-02 1.17440253e-01 1.24078527e-01 3.65275979e-01\\n3.57617319e-01 1.81526050e-01 -1.11316614e-01 4.74624604e-01\\n-9.60416496e-02 -2.01154336e-01 -1.92102343e-02 7.68339336e-01\\n2.58309960e-01 -9.15234685e-02 -9.40391868e-02 6.98386831e-03\\n-2.62272686e-01 -2.15332359e-01 3.59628618e-01 -1.20907584e-02\\n-1.53971046e-01 -4.45049405e-01 9.15785357e-02 7.83154964e-02\\n-1.84729755e-01 3.32165807e-02 -2.39157245e-01 2.95112371e-01\\n-4.85486954e-01 -2.81434059e-01 1.17457405e-01 -1.64664745e-01\\n-1.27416924e-01 -3.71524662e-01 9.61027853e-03 -7.69541562e-02\\n1.59417123e-01 9.86733288e-03 -3.95112276e-01 2.31028989e-01\\n-2.93052733e-01 -3.83175373e-01 3.56507212e-01 4.64982510e-01\\n-4.37522195e-02 -4.43860263e-01 -4.17410225e-01 -2.79752970e-01\\n-6.16220087e-02 -8.76398012e-02 3.14267864e-03 -4.18190628e-01\\n2.67136991e-01 9.14760157e-02 1.23812154e-01 4.06399250e-01\\n-7.93675125e-01 -8.47081095e-02 -2.90754050e-01 8.06644484e-02\\n-3.64949703e-01 -4.68147136e-02 -3.37662965e-01 -1.37157440e-01\\n-1.42118245e-01 3.90951693e-01 -9.65361819e-02 5.79897650e-02\\n-1.43458605e-01 3.29052240e-01 -1.65201515e-01 2.78372765e-01\\n2.73103982e-01 2.71395594e-01 2.86335707e-01 4.25483823e-01\\n-2.92050242e-01 3.47670853e-01 9.95604992e-02 -2.44791389e-01\\n2.31175303e-01 2.51144439e-01 3.67501259e-01 -1.13475077e-01\\n1.78721189e-01 1.65645301e-01 -3.44498336e-01 3.92289758e-01\\n2.48048648e-01 -2.99359828e-01 2.86904629e-02 -7.65194073e-02\\n1.09673686e-01 5.79488948e-02 8.40063393e-02 1.16601877e-01\\n-3.13945442e-01 4.07598913e-01 9.81566757e-02 -2.23008201e-01\\n-1.66955620e-01 -5.71952164e-01 -1.54507577e-01 2.07357690e-01\\n7.40975812e-02 9.11723077e-02 2.66826957e-01 6.38721362e-02\\n1.03398107e-01 7.41318017e-02 3.00442204e-02 7.53109157e-01\\n-7.41939098e-02 4.73546423e-02 -2.85934389e-01 1.76662207e-01\\n2.45324031e-01 -2.17951074e-01 9.97604430e-02 2.70273179e-01\\n7.03035370e-02 -1.04061954e-01 -1.99657992e-01 4.41908747e-01\\n1.31818607e-01 -1.37619525e-01 -3.79833966e-01 1.69582844e-01\\n-1.71148539e-01 -4.79624331e-01 6.34949028e-01 7.32105523e-02\\n2.10192919e-01 1.32025093e-01 1.40333980e-01 1.72232985e-02\\n-1.07934833e-01 2.48624563e-01 6.93569705e-02 2.01720417e-01\\n-3.59988093e-01 -2.49775648e-01 -2.56098896e-01 2.23630324e-01\\n-4.07202929e-01 1.84128582e-01 -1.41019881e-01 -2.60942616e-02\\n2.59395868e-01 7.07353652e-02 -2.53197342e-01 1.93167120e-01\\n-1.86606973e-01 -1.44176185e-01 -1.16766818e-01 3.63898218e-01\\n-1.28088787e-01 2.75762290e-01 2.15500481e-02 -8.67486820e-02\\n5.16543865e-01 1.79610431e-01 1.41989037e-01 -6.73883930e-02\\n4.12586719e-01 2.93078879e-03 3.45247872e-02 8.69146585e-02\\n-6.54803872e-01 3.08846265e-01 2.30199322e-02 -1.76064044e-01\\n9.06173363e-02 2.84861978e-02 2.75428116e-01 -3.07030648e-01\\n-6.84873313e-02 -1.67840406e-01 -4.33870882e-01 -1.84978768e-01\\n-1.88303277e-01 2.13570725e-02 3.03364366e-01 -4.17939633e-01\\n-1.29680693e-01 1.40753716e-01 -5.20996690e-01 -4.25483175e-02\\n2.21350506e-01 6.68150559e-02 2.10515670e-02 5.45245036e-02\\n-1.78296328e-01 -6.66213274e-01 -4.37225215e-02 -4.59491462e-01\\n-4.24898028e-01 -6.00650162e-03 -2.40374133e-01 5.70118465e-02\\n1.02026038e-01 1.09893166e-01 -1.15401015e-01 1.07113265e-01\\n-2.85441875e-01 2.34845132e-02 8.23006853e-02 4.83490005e-02\\n2.97900438e-01 -7.61079490e-02 -3.43663782e-01 4.16151673e-01\\n-1.17776059e-01 3.77871215e-01 1.48972422e-01 -8.42625141e-01\\n5.16027868e-01 3.37099284e-01 1.83288939e-02 -4.18144375e-01\\n5.36795259e-01 -4.23260480e-01 -7.44309276e-02 5.72879948e-02\\n-4.17293727e-01 -2.78795481e-01 2.78357416e-01 -2.41489887e-01\\n-3.37335020e-01 4.43093210e-01 -1.20257428e-02 1.77619010e-01\\n3.55840951e-01 -3.24155241e-01 -2.52468977e-02 8.95429626e-02\\n-5.73112369e-02 -1.61628351e-01 -4.35413182e-01 -1.55501470e-01\\n9.37055238e-03 -5.36843836e-01 -2.60523111e-01 -4.26872522e-01\\n-1.16137728e-01 -2.13132650e-01 -3.04312706e-01 2.69610852e-01\\n3.12862545e-01 1.19065896e-01 -6.32455293e-03 5.83908707e-02\\n1.11041553e-02 -7.23194182e-01 -4.56385650e-02 9.20776129e-02\\n3.00502300e-01 2.39201993e-01 3.21835317e-02 -7.59006590e-02\\n1.05058722e-01 5.58026075e-01 -3.86397511e-01 -3.03197473e-01\\n1.44408092e-01 1.75097644e-01 -1.19722977e-01 -3.64997312e-02\\n1.71838090e-01 3.58563185e-01 -3.63081545e-01 -4.58467454e-02\\n-3.55759859e-02 -3.90003598e-03 4.89477634e-01 -2.42922641e-03\\n-5.16530514e-01 -1.25377327e-01 -1.35609806e-02 1.61338717e-01\\n-5.38893104e-01 -1.07864864e-01 5.53689361e-01 1.64914310e-01\\n1.83275074e-01 1.28516510e-01 9.32909399e-02 -1.94271505e-02\\n-1.67393416e-01 -2.88171500e-01 2.22912997e-01 9.00755227e-02\\n1.13849781e-01 4.16994430e-02 -5.45025505e-02 -6.05401099e-01\\n-3.47597384e+00 -1.49729803e-01 2.86560893e-01 -3.12052161e-01\\n2.94720024e-01 -6.45450801e-02 1.69738099e-01 6.67153043e-04\\n-3.52069199e-01 3.68313007e-02 -5.56642860e-02 -8.93484205e-02\\n1.04869507e-01 2.75273532e-01 5.28077669e-02 1.36193186e-01\\n2.05654621e-01 -2.91813403e-01 -1.22958779e-01 3.93783599e-01\\n1.31174666e-03 -6.73751414e-01 2.29121093e-02 -2.27640811e-02\\n3.05876732e-01 2.14843363e-01 -4.03502852e-01 8.19453821e-02\\n-2.33080879e-01 -2.02052131e-01 7.26264939e-02 -2.47464374e-01\\n-2.13183597e-01 1.98068485e-01 1.33692607e-01 -7.11210519e-02\\n1.18159093e-01 -2.32169777e-01 -9.73357782e-02 -4.45277452e-01\\n2.13236541e-01 -5.52964389e-01 -1.66017506e-02 -6.53686076e-02\\n7.87102163e-01 -2.61789143e-01 2.48798624e-01 7.51640052e-02\\n1.41153052e-01 7.32612684e-02 6.71451911e-02 1.89165529e-02\\n-9.03080702e-02 -3.96048754e-01 2.59484872e-02 -1.80603653e-01\\n6.32229984e-01 4.39479172e-01 -1.11593828e-01 -3.86284031e-02\\n1.17747955e-01 -3.17439407e-01 -4.41524446e-01 -2.65410870e-01\\n-1.13699280e-01 -2.39809364e-01 -7.58288324e-01 -4.29965764e-01\\n-2.05913112e-01 -1.45373449e-01 -1.27300406e-02 7.44115353e-01\\n-3.04026902e-01 -4.91289645e-01 -2.10199486e-02 -5.94045341e-01\\n1.49889395e-01 -2.09626690e-01 3.03463005e-02 -3.13305467e-01\\n-3.24666858e-01 -4.99608576e-01 1.30414605e-01 4.16155979e-02\\n-1.15767978e-01 -2.03779295e-01 1.23041205e-01 -1.15461312e-01\\n-2.97305256e-01 -5.54764867e-01 4.21966910e-01 1.24424413e-01\\n2.03966111e-01 1.38088316e-01 3.77435058e-01 1.98974200e-02\\n2.30898291e-01 5.99412471e-02 -9.07661095e-02 -3.92720461e-01\\n1.05163038e-01 -5.00899255e-02 6.38651550e-01 -1.57368779e-01\\n-9.36251804e-02 2.20038667e-01 -2.04070881e-01 -2.19414383e-01\\n4.51119214e-01 -4.74378020e-02 3.31285074e-02 -1.45982623e-01\\n3.43076915e-01 -3.65142316e-01 -1.05779752e-01 2.38588646e-01\\n5.85412532e-02 5.70252359e-01 5.24227358e-02 -4.37423140e-01\\n-1.87552556e-01 5.35667777e-01 3.00602634e-02 1.50645956e-01\\n-5.05790673e-03 6.12864755e-02 -1.77505597e-01 3.62897009e-01\\n2.20594481e-02 -2.31019646e-01 -1.56014085e-01 -1.14957727e-01\\n-5.91869168e-02 2.76597410e-01 1.57855749e-01 1.66588679e-01\\n-1.00057483e-01 -3.44359428e-01 -2.14264780e-01 1.02949664e-01\\n1.93159729e-01 5.06351888e-01 1.90882325e-01 -2.84361750e-01\\n-6.08249977e-02 3.25970918e-01 -1.38587773e-01 1.86590910e-01\\n-2.01480180e-01 1.11607164e-01 -4.80380148e-01 -2.75604874e-01\\n-1.53358266e-01 -3.54806632e-01 1.30693749e-01 4.15582776e-01\\n1.21069409e-01 -2.70130429e-02 5.92843890e-02 -3.84923607e-01\\n2.70773113e-01 2.91711748e-01 1.49372414e-01 1.39139995e-01\\n-7.16936290e-02 5.81214488e-01 -7.07380250e-02 -2.30376199e-01\\n-1.48810223e-01 -3.80017124e-02 -1.22826882e-01 -1.46121949e-01\\n5.10482974e-02 -6.43774927e-01 -9.94052142e-02 2.57323295e-01\\n6.18054755e-02 -3.06365103e-01 -2.67674834e-01 1.59229383e-01\\n1.77639611e-02 -3.77076447e-01 -3.34516466e-01 -3.78809012e-02\\n2.93707460e-01 -2.88520847e-02 2.45742947e-01 -4.47569311e-01\\n-1.90982029e-01 7.90526196e-02 -9.04794335e-02 3.83514524e-01\\n2.54354123e-02 1.19620673e-02 -2.70830095e-01 -1.99543178e-01\\n4.29465532e-01 -1.17246658e-01 -1.51162401e-01 -1.05197109e-01\\n8.09307620e-02 -2.03112483e-01 -4.24832284e-01 2.00499967e-03\\n-2.17199102e-02 -1.87935174e-01 7.75986388e-02 3.00086699e-02\\n8.52997601e-02 1.54385328e-01 -5.65418005e-01 -3.55227053e-01\\n-3.38669479e-01 -8.29861388e-02 4.85059209e-02 -4.35877204e-01\\n1.67817194e-02 -5.10515198e-02 -7.11609006e-01 3.02218288e-01\\n-1.81963339e-01 -1.31590128e-01 1.64306313e-01 1.64643049e-01\\n-4.00275528e-01 -1.13469198e-01 3.15355584e-02 2.65506953e-01\\n-2.77096331e-01 -3.63718390e-01 -1.45139590e-01 -7.94639945e-01\\n2.34289095e-01 -1.68516003e-02 -1.50269017e-01 1.06999710e-01\\n-3.24029289e-02 -6.49260938e-01 -2.10911762e-02 -3.20515692e-01\\n-9.61500034e-02 -2.83424575e-02 -2.15000257e-01 -3.19333375e-01\\n-6.09119469e-03 -1.51173487e-01 -3.07184547e-01 4.45846289e-01\\n-4.36380774e-01 3.20442826e-01 -1.90006837e-01 9.41419303e-02\\n-6.10862672e-02 -3.36221814e-01 1.78663880e-01 -4.24825698e-01\\n-3.44401360e-01 -2.43853465e-01 -2.83287615e-01 -3.15359026e-01\\n-9.83284786e-02 -4.34923679e-01 -2.07578227e-01 1.75587848e-01\\n1.54214144e-01 1.25374243e-01 -1.19200408e-01 -2.79249847e-01\\n8.63375515e-02 -4.40135032e-01 1.60873290e-02 -1.86712340e-01\\n8.53889212e-02 -1.46243006e-01 2.19337791e-01 1.06983110e-01\\n1.77111447e-01 -4.16199505e-01 3.16545665e-01 -2.59784907e-01\\n-2.48951897e-01 -6.93521425e-02 3.49726491e-02 -5.83183914e-02\\n4.04145509e-01 -5.69702387e-01 6.87651411e-02 2.95567065e-01\\n1.33851260e-01 8.28302652e-02 1.91253111e-01 -6.85251877e-02\\n4.24214415e-02 2.48247147e-01 -2.64428914e-01 2.38366261e-01\\n8.27787578e-01 1.56743467e-01 2.53264576e-01 1.74091950e-01\\n1.95259035e-01 5.30809939e-01 5.01688123e-01 7.90407509e-03\\n1.40632532e-04 2.58396626e-01 1.65024400e-01 -4.75859791e-01\\n-5.45703471e-02 -1.30565651e-02 -2.18819797e-01 -2.34625101e-01\\n6.24248385e-01 5.12257040e-01 -3.84957433e-01 -2.13049635e-01\\n-1.32187426e-01 -2.40334556e-01 3.34150791e-01 -6.74437732e-02\\n-6.69228807e-02 -2.92856365e-01 4.85280365e-01 9.12204087e-02\\n3.21711719e-01 6.65572405e-01 -1.35729581e-01 -5.08175015e-01\\n3.90542224e-02 1.91677079e-01 2.52960771e-02 4.29537147e-01\\n-1.46298662e-01 2.28275359e-01 -5.14356792e-02 2.41076380e-01\\n-3.35171297e-02 1.76312730e-01 1.50908098e-01 1.45189732e-01\\n1.28399909e-01 2.38297433e-01 5.49156845e-01 6.02283001e-01\\n2.61668414e-01 4.95927304e-01 2.41988763e-01 1.93365037e-01\\n2.97800004e-01 4.35325265e-01 3.65192831e-01 6.86516538e-02\\n9.26744379e-03 -2.78533623e-02 2.46915147e-01 -1.55249774e-01\\n3.29123497e-01 3.61645490e-01 1.66161269e-01 8.48939538e-01\\n3.74386311e-01 2.27678984e-01 7.56364524e-01 -6.29738748e-01\\n-2.60170370e-01 -1.37730166e-02 5.30863285e-01 -3.72926921e-01\\n-6.49699122e-02 1.68663546e-01 -2.27849141e-01 3.05322677e-01\\n-5.55172980e-01 -1.38486028e-01 2.90209446e-02 1.36739418e-01\\n8.69201943e-02 -2.44194344e-01 -1.47973910e-01 7.69029856e-02\\n-1.46649584e-01 -6.16859123e-02 -4.15532053e-01 -1.59877002e-01\\n-2.40205899e-01 2.18104664e-02 -1.03425816e-01 -1.32008210e-01\\n7.09932968e-02 -4.69515711e-01 1.77200343e-02 6.00741245e-02\\n4.01752800e-01 3.73092778e-02 -1.54463118e-02 2.26209387e-02\\n2.70080715e-01 2.91789532e-01 4.73454773e-01 2.87191421e-02\\n1.01272598e-01 -1.40695065e-01 -2.27114305e-01 9.80223939e-02\\n5.47391176e-02 9.24571976e-02 3.04099880e-02 2.33188421e-01\\n-3.23465139e-01 -7.42656961e-02 6.64160028e-02 4.35703844e-01\\n-3.70051712e-01 -1.59648550e-03 -1.72781095e-01 3.03989530e-01\\n9.72080752e-02 1.84772670e-01 -3.01277339e-01 2.56701075e-02\\n-8.95198807e-02 -4.67865646e-01 2.73341209e-01 -1.88589722e-01\\n-1.37472272e-01 1.87441006e-01 2.21281424e-01 3.06792915e-01\\n-2.89388180e-01 -3.45223863e-03 4.56133150e-02 1.13425076e-01\\n-1.21977985e-01 4.39499795e-01 -2.77647991e-02 -2.32059836e-01\\n-3.94886345e-01 3.59288365e-01 -6.30251989e-02 -1.89148746e-02\\n-1.06028020e-01 2.93331325e-01 2.29137242e-02 1.12849504e-01\\n2.90398210e-01 -7.79334307e-02 -2.83385068e-01 -2.25020513e-01\\n-1.40623376e-01 -1.04559578e-01 6.83791889e-03 -8.53682011e-02\\n2.25720003e-01 -4.12703246e-01 -4.93930951e-02 -1.53500348e-01\\n4.42658216e-02 -2.30335638e-01 -3.24271880e-02 -8.10001343e-02]]',\n", + " 'Throughout the entire software lifecycle – from design to operations of the productive environments – you use state-of-the-art methods and tools. You play a key role in architecture and design discussions and inspire the team and the environment with the solutions you propose. You are committed to collaborative development and continuous delivery and contribute to continuously improving our DevOps capabilities. Leveraging your know-how in modern software architecture and cloud technology, you create innovative and fail-safe solutions for our customers. Thanks to your enthusiasm for new trends and technologies as well as your good communication skills, you help us keep our systems and data secure. Degree (Uni/UAS/technical college) in computer science, business informatics, or related disciplines Several years of experience in software development with Java, preferably in IAM Experienced in using DevOps automation tools for deployment, testing, and monitoring Knowledge of ForgeRock Identity and the Access Management Platform a plus Familiar with agile development methods and environments (Scrum, SAFe) Good German and English',\n", + " '[\"Verbal Communication Skills\", \"Collaboration\", \"Operations\", \"Enthusiasm\", \"Innovation\"]',\n", + " '[\"AWS Identity And Access Management (IAM)\", \"Automation\", \"Tooling\", \"Continuous Delivery\", \"Computer Science\", \"Data Security\", \"Vienna Development Methods\", \"Dialer Management Platform\", \"Scrum (Software Development)\", \"Business Informatics\", \"Software Architecture\", \"Sage SAFE X3\", \"Unmanned Aerial Systems (UAS)\", \"Software Development\", \"Software Modernization\", \"Java (Programming Language)\", \"Web Access Management\", \"Agile Product Development\", \"DevOps\", \"Cloud Technologies\"]',\n", + " \"['English']\"],\n", + " ['77',\n", + " 'backend engineer',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.nanos.ai',\n", + " '[[-9.93610993e-02 1.67789996e-01 4.53946531e-01 -4.33472060e-02\\n3.97099793e-01 -8.52692872e-02 -6.75937310e-02 4.87816244e-01\\n-2.92915013e-02 -4.29475784e-01 -4.19181585e-02 -2.24508286e-01\\n-1.58719450e-01 7.35269561e-02 6.80728406e-02 3.37462664e-01\\n2.93862671e-01 1.14449501e-01 -2.80677438e-01 4.04118955e-01\\n1.58727437e-01 -5.37589714e-02 1.67795599e-01 6.62032604e-01\\n3.95197421e-01 -8.29496980e-03 3.43314558e-02 5.85573614e-02\\n-2.33463258e-01 -2.32918441e-01 4.72242475e-01 1.03322580e-01\\n-8.68875533e-02 -3.84176552e-01 2.06842005e-01 1.89335048e-02\\n-2.15945989e-01 3.69436480e-03 -7.42332265e-02 1.17948353e-01\\n-5.74157476e-01 -3.09221327e-01 3.62171121e-02 1.07915699e-01\\n-3.34808350e-01 -3.53398681e-01 2.05551028e-01 -1.37847975e-01\\n1.53530762e-01 -8.17515701e-03 -5.20347357e-01 2.95845091e-01\\n-2.46081278e-01 -2.41051972e-01 3.11416626e-01 5.09739339e-01\\n-2.22356264e-02 -4.50727820e-01 -5.97427249e-01 -3.33517134e-01\\n1.43634647e-01 -1.19620651e-01 -1.27497166e-01 -3.92209053e-01\\n2.57025510e-01 4.68364023e-02 4.64968719e-02 3.28114271e-01\\n-7.61563778e-01 -7.61777386e-02 -1.62835613e-01 -6.68030083e-02\\n-3.27059209e-01 -1.38065577e-01 -1.83207244e-01 -6.96963593e-02\\n-4.74140309e-02 3.65187526e-01 1.03470743e-01 1.68163963e-02\\n-1.77551493e-01 2.92631447e-01 -1.46124169e-01 4.21709836e-01\\n1.84524983e-01 1.65821776e-01 1.81653857e-01 3.62514436e-01\\n-4.02314186e-01 4.46734488e-01 1.23997286e-01 -3.47076833e-01\\n2.75705218e-01 4.25050594e-02 5.10777116e-01 -4.22319248e-02\\n2.47302696e-01 9.91449505e-02 -3.00741196e-01 3.56822342e-01\\n3.86728644e-01 -2.75420010e-01 -3.19507793e-02 -2.07951948e-01\\n5.92964217e-02 -4.89717871e-02 7.00124651e-02 2.07829863e-01\\n-2.40344733e-01 4.18751538e-01 1.79867670e-01 -2.58241653e-01\\n-6.40562028e-02 -4.53900754e-01 -7.83777386e-02 1.26154125e-02\\n-3.00932024e-02 2.75136326e-02 1.36330724e-01 3.57848182e-02\\n2.58927643e-01 6.93315733e-03 1.20945476e-01 7.90590584e-01\\n-1.60239726e-01 1.37875648e-02 -2.76214004e-01 2.78311789e-01\\n5.85818365e-02 -2.99628019e-01 3.10229361e-01 2.31225163e-01\\n7.68230706e-02 -1.86602294e-01 -1.83852077e-01 2.41406307e-01\\n-3.03763933e-02 -2.41855353e-01 -3.09810102e-01 1.83313295e-01\\n-2.37987079e-02 -3.21837872e-01 5.82641959e-01 1.25421286e-01\\n1.63445517e-01 -3.25146131e-02 -8.17322433e-02 -1.56428277e-01\\n-1.68062270e-01 1.17449835e-01 -1.35939687e-01 2.27486789e-01\\n-2.95050532e-01 -2.54602969e-01 -2.30339304e-01 1.12504788e-01\\n-3.80494475e-01 1.77756503e-01 -1.31885380e-01 -9.95028913e-02\\n3.86159599e-01 4.66080010e-02 -2.94564277e-01 3.20560664e-01\\n1.29130334e-02 1.82437539e-01 -6.53957352e-02 3.10995996e-01\\n-1.70663327e-01 2.82760084e-01 -2.77612498e-03 -5.06778546e-02\\n6.72044396e-01 1.30839825e-01 1.19194672e-01 -7.98331723e-02\\n3.36308748e-01 -2.27463320e-02 6.77945167e-02 5.27473688e-02\\n-6.10567093e-01 2.09911019e-01 8.34482908e-02 2.49728262e-02\\n9.98687521e-02 -2.32785389e-01 1.33428439e-01 -3.28318834e-01\\n-1.33248735e-02 -1.32945970e-01 -4.93339956e-01 -3.23858976e-01\\n-2.95524955e-01 1.87272150e-02 4.87178683e-01 -4.37209547e-01\\n-8.87565464e-02 2.40891457e-01 -5.03076911e-01 -7.79272765e-02\\n2.31710881e-01 2.13704571e-01 1.30593598e-01 1.35977760e-01\\n-1.37220412e-01 -4.88527179e-01 9.51480716e-02 -4.17858899e-01\\n-1.73858568e-01 1.04147375e-01 -2.83767343e-01 2.72220433e-01\\n9.98983830e-02 -1.82821676e-02 -1.71559989e-01 1.29017696e-01\\n-2.57252276e-01 -8.56996477e-02 1.80805579e-01 -2.89463624e-03\\n3.02316546e-01 2.92098708e-02 -3.82030219e-01 3.90898168e-01\\n-1.66776031e-01 6.02536738e-01 9.25745815e-02 -9.14494336e-01\\n5.30719519e-01 3.66088927e-01 -5.37202433e-02 -4.26744968e-01\\n5.31409204e-01 -2.52824366e-01 6.69408515e-02 8.64332616e-02\\n-4.73934621e-01 -3.76606286e-01 2.13932663e-01 -1.72838017e-01\\n-2.70933896e-01 5.25604129e-01 -4.38920315e-03 3.70949954e-02\\n1.89967722e-01 -2.15081096e-01 -4.56902012e-02 9.50350538e-02\\n-6.82128817e-02 -2.00226575e-01 -5.01076698e-01 -7.01187775e-02\\n-1.00035466e-01 -4.49627489e-01 -3.65002677e-02 -3.06704432e-01\\n-2.36146808e-01 -3.22404265e-01 -1.26409680e-01 3.03303719e-01\\n2.55712569e-01 1.27298787e-01 -1.65854534e-03 1.08707532e-01\\n-2.43446410e-01 -6.08066797e-01 7.09840655e-02 1.20301448e-01\\n3.74828935e-01 2.12943196e-01 1.51690319e-01 7.70428702e-02\\n-1.01540208e-01 6.69360757e-01 -2.86712945e-01 -8.44555497e-02\\n1.47202089e-01 2.23723650e-01 7.55906850e-02 -1.79548591e-01\\n1.10325627e-01 3.52039754e-01 -2.86453068e-01 6.60493970e-02\\n-8.30903724e-02 -8.07230026e-02 3.72221291e-01 9.00535733e-02\\n-3.56203794e-01 -2.72459805e-01 -7.89736137e-02 1.87788531e-01\\n-5.07830918e-01 -1.43112600e-01 6.34681046e-01 1.70296341e-01\\n2.17873305e-01 9.47361588e-02 2.95363963e-01 -1.19377337e-01\\n-1.62438259e-01 -3.08462560e-01 3.27627569e-01 2.08017498e-01\\n8.72275010e-02 1.28923297e-01 -5.47885336e-02 -6.39599502e-01\\n-3.28828382e+00 -1.46801472e-01 2.00160772e-01 -2.74898946e-01\\n1.44616514e-01 -1.10349439e-01 1.59068145e-02 -1.40658304e-01\\n-2.03158945e-01 4.45600636e-02 -1.25753075e-01 -1.03959687e-01\\n1.72426045e-01 1.71444044e-01 1.23367466e-01 2.24291444e-01\\n2.54876196e-01 -1.79509789e-01 -3.11288796e-02 3.27679992e-01\\n-1.76567003e-01 -5.64411879e-01 2.87557006e-01 -9.01716277e-02\\n3.47678930e-01 3.41422915e-01 -3.38940531e-01 -2.00842753e-01\\n-1.69263959e-01 -9.48775262e-02 7.46974051e-02 -2.49065369e-01\\n-5.82792014e-02 2.78075069e-01 2.14028686e-01 -9.17554200e-02\\n1.47685111e-01 -4.26787287e-01 -1.04663379e-01 -4.21290278e-01\\n1.35233685e-01 -5.80724239e-01 5.16032353e-02 -2.00618535e-01\\n6.94020271e-01 -3.15359414e-01 9.43393353e-03 8.71808827e-02\\n1.95157081e-01 2.42143691e-01 7.92423189e-02 4.49310467e-02\\n-2.08649158e-01 -1.96706563e-01 -1.43625559e-02 -1.22779764e-01\\n4.76427197e-01 5.95577121e-01 -2.01984197e-01 -1.94135338e-01\\n-1.20051540e-02 -2.80892432e-01 -4.83817101e-01 -3.18551332e-01\\n-1.33718461e-01 -3.89633000e-01 -5.66331506e-01 -3.79042923e-01\\n-8.80559608e-02 -1.90143853e-01 -1.68654859e-01 6.33704901e-01\\n-2.84728944e-01 -3.50746334e-01 2.24245917e-02 -4.43110406e-01\\n1.24902338e-01 -9.76853222e-02 2.21271589e-02 -2.36163735e-01\\n-7.97046348e-02 -5.84255934e-01 -2.53726058e-02 -7.04826415e-02\\n-1.69805095e-01 -3.95438313e-01 4.82539013e-02 -8.12280849e-02\\n-2.24114001e-01 -5.71472645e-01 4.34624434e-01 1.76221013e-01\\n3.93158466e-01 -3.40591930e-02 3.51325750e-01 -1.39260471e-01\\n3.03481877e-01 -1.38209552e-01 -2.51237806e-02 -3.69425952e-01\\n1.70535222e-01 6.76486418e-02 4.44016516e-01 -1.89696670e-01\\n3.59313078e-02 1.25170469e-01 -3.02818030e-01 -1.23331919e-01\\n3.02495539e-01 1.14759356e-01 1.51264101e-01 -2.69826889e-01\\n3.49503815e-01 -2.59722263e-01 -2.67762244e-01 1.22446544e-01\\n1.29940450e-01 4.95402753e-01 -3.68406586e-02 -4.27085042e-01\\n-1.45981163e-01 4.91905838e-01 -1.73765361e-01 -2.06378564e-01\\n-2.72872686e-01 1.22658104e-01 -2.17794791e-01 1.18387848e-01\\n4.69069816e-02 -1.43414110e-01 -2.76620716e-01 -1.51994258e-01\\n-2.02153653e-01 3.19839180e-01 2.47814059e-01 8.56968760e-02\\n-4.24604192e-02 -4.43561226e-01 -2.39462405e-02 2.54370600e-01\\n8.47622305e-02 3.86034846e-01 1.46849066e-01 -1.79819271e-01\\n-9.09223557e-02 4.14612740e-01 -7.16713741e-02 5.65404817e-02\\n-2.01421648e-01 -2.45091654e-02 -5.12343884e-01 -2.54233301e-01\\n-2.67604679e-01 -3.08503628e-01 7.01154917e-02 3.44767839e-01\\n1.67837441e-01 -8.18632916e-02 4.01608050e-02 -4.82600212e-01\\n3.82953286e-01 7.73230493e-02 2.21294224e-01 1.87643766e-01\\n1.43851951e-01 5.80110550e-01 4.31292243e-02 -1.04034625e-01\\n-1.07805520e-01 6.08604178e-02 -2.51589656e-01 -8.61296728e-02\\n3.14704329e-02 -4.11448956e-01 -9.63072777e-02 3.16217124e-01\\n8.78617540e-02 -2.28364393e-01 -2.24662006e-01 1.82632089e-01\\n4.13233787e-02 -1.95096701e-01 -2.26152301e-01 4.35877815e-02\\n2.90571660e-01 -6.31550252e-02 3.21785897e-01 -3.70037347e-01\\n-1.05793104e-01 2.88109854e-02 -1.40410870e-01 5.37156701e-01\\n1.45299375e-01 -1.50084626e-02 -2.07966313e-01 -1.54579833e-01\\n3.81847590e-01 -1.90109789e-01 -1.26229703e-01 -3.24403867e-02\\n9.71914381e-02 -1.62216991e-01 -5.62439084e-01 2.04670995e-01\\n-2.26722881e-02 -9.22845751e-02 -3.04775909e-02 3.92030068e-02\\n4.41796146e-02 1.66674465e-01 -5.45425177e-01 -2.41216898e-01\\n-2.62619853e-01 -5.11997491e-02 -7.09929615e-02 -5.20227015e-01\\n2.30319966e-02 -7.31063336e-02 -5.19117713e-01 1.89804673e-01\\n-2.76289642e-01 -2.36336067e-02 1.59806728e-01 1.23812668e-02\\n-3.71587217e-01 -7.02594966e-02 6.96415231e-02 2.57402003e-01\\n-3.93426001e-01 -2.82079995e-01 6.16872907e-02 -1.01133490e+00\\n2.46242970e-01 3.28487940e-02 -1.84355170e-01 1.32151559e-01\\n-7.72657841e-02 -7.54749060e-01 1.16941273e-01 -2.45404780e-01\\n-1.90269127e-01 1.26908123e-02 -1.92829281e-01 -4.24370259e-01\\n2.51797959e-04 -1.06082968e-02 -2.78553963e-01 2.79644907e-01\\n-4.00225043e-01 4.13082480e-01 -1.26112312e-01 1.79848120e-01\\n-4.22977097e-02 -2.52883375e-01 8.00915137e-02 -3.74139488e-01\\n-4.96198416e-01 -1.75489813e-01 -3.20817947e-01 -1.99880153e-01\\n8.30135643e-02 -3.52957964e-01 -8.41379464e-02 5.65927997e-02\\n3.96766961e-01 4.96545583e-02 -1.82666898e-01 -2.67882705e-01\\n5.36458604e-02 -5.08981586e-01 -3.88099961e-02 1.10900715e-01\\n-1.28652211e-02 -1.20556548e-01 2.59435833e-01 7.22169280e-02\\n7.96886608e-02 -5.08349657e-01 4.57321346e-01 -4.08288926e-01\\n-2.65217304e-01 -7.93791413e-02 -2.17683706e-02 -9.67163499e-03\\n2.35950992e-01 -5.16537309e-01 1.09831274e-01 3.80640417e-01\\n9.90145802e-02 2.02300251e-02 3.19205761e-01 -8.11272860e-03\\n-6.95799291e-02 2.23343998e-01 -3.13239098e-01 6.20982908e-02\\n8.15948963e-01 -6.40997812e-02 7.42106289e-02 2.13306651e-01\\n5.85321710e-02 2.53138691e-01 5.73716760e-01 4.57107276e-02\\n-1.50479317e-01 2.90243328e-01 7.76106864e-02 -5.71407318e-01\\n3.97871584e-02 -2.65571773e-02 -3.24665904e-01 -3.09560865e-01\\n6.66166425e-01 4.27953929e-01 -4.06144977e-01 -2.80682087e-01\\n-1.77397411e-02 -2.31618419e-01 7.37597495e-02 -1.16672695e-01\\n8.66719484e-02 -6.46298528e-02 4.65079099e-01 -7.25083426e-02\\n2.06392005e-01 5.35153687e-01 -2.22982496e-01 -3.86543244e-01\\n-1.38666332e-01 2.13527262e-01 7.44567066e-02 4.73716140e-01\\n-1.74348354e-01 3.21345448e-01 -2.79660113e-02 5.78216910e-02\\n-1.51948094e-01 1.73177093e-01 3.65324989e-02 1.17573053e-01\\n1.54443994e-01 2.39516459e-02 4.20435131e-01 4.18534696e-01\\n4.38679755e-01 4.58841354e-01 3.26630473e-01 8.17675702e-03\\n7.27507591e-01 5.97143471e-01 4.36305583e-01 1.70520097e-01\\n-6.62052482e-02 1.26602612e-02 4.36070077e-02 3.71709391e-02\\n4.28101629e-01 3.44461352e-01 1.62424892e-01 8.56793284e-01\\n4.35278982e-01 2.20243618e-01 6.81294501e-01 -6.41433954e-01\\n-3.52632433e-01 -5.67904767e-03 3.74184370e-01 -3.02653104e-01\\n-1.48134530e-02 1.36322156e-01 -6.16818741e-02 2.14248031e-01\\n-3.51553023e-01 -2.02767223e-01 -1.54429376e-02 2.68943131e-01\\n-1.47019178e-02 -7.89708495e-02 -1.84003487e-01 7.79078752e-02\\n-2.06681237e-01 -1.60926014e-01 -4.11987007e-01 -7.43745118e-02\\n-2.06466690e-01 -1.52855679e-01 -1.58408478e-01 -2.21374601e-01\\n-1.77253157e-01 -3.33148122e-01 -1.01506785e-01 -1.60256699e-02\\n3.16570699e-01 -2.25720257e-01 -4.21670265e-02 -2.23581091e-01\\n2.93309689e-01 1.87360689e-01 4.62730646e-01 5.91990873e-02\\n1.67365253e-01 -3.03859144e-01 -2.60319263e-01 1.86627552e-01\\n1.93616286e-01 1.45036250e-01 2.53738575e-02 2.69729257e-01\\n-3.62243056e-01 -1.50744110e-01 2.65604079e-01 3.76549006e-01\\n-3.95782948e-01 2.39452291e-02 -1.50481716e-01 2.40539551e-01\\n3.58745605e-02 1.04924597e-01 -2.00678661e-01 -1.76874408e-03\\n-1.73636839e-01 -5.14753163e-01 3.49185944e-01 -1.18349016e-01\\n-2.31975894e-02 5.70320860e-02 3.05385411e-01 6.33793175e-02\\n-2.41767704e-01 1.94561034e-02 -6.75720908e-03 1.93816975e-01\\n2.05875218e-01 2.51239151e-01 -2.90455550e-01 -2.00694889e-01\\n-1.99528456e-01 1.10300615e-01 -2.38858029e-01 6.66600317e-02\\n1.41682737e-02 3.72138739e-01 1.41189769e-01 -2.97317803e-02\\n4.86623615e-01 -3.18099856e-02 -1.00332372e-01 -2.15976655e-01\\n-3.13839972e-01 -3.20134878e-01 -1.04718879e-01 -1.41013771e-01\\n2.13397115e-01 -3.93651515e-01 -1.20920800e-02 -8.08006078e-02\\n-1.93688393e-01 -2.40513042e-01 7.95801431e-02 -9.03673321e-02]]',\n", + " 'Who are we? Nanos is an online platform that makes placing paid advertisements a straightforward process accessible to any small & micro business around the world. We are a privately owned Swiss startup based in Zurich - a dynamic fast-growing team of software engineers, UX designers, business experts and machine learning engineers. Who are we looking for? As part of our growth we are building a fully distributed engineering team, for which we are looking for a Backend Engineer with a minimum of 3 years professional experience. From a cultural point of view, we expect you to bring in a plus with you as we are an inclusive company that thrives from the diversity its employees bring in. As a Backend Engineer, we expect you to be a problem solver before being a code writer. What will you do if you join us? As a backend engineer and being a part of our distributed development team you will be working on different parts of the Nanos platform (Frontend, Backend, Mobile app, Server infrastructure.., etc), where you will be expected to: - Architect and maintain distributed systems, focusing on reliability, security, and scalability - Design and develop highly scalable APIs and services that are used by web and mobile clients Requirements What skills do we expect you to have? With the exponentially growing number of frameworks and languages in software engineering we do not expect you to be an expert in all technologies used at Nanos but we do expect you to be a fast learner and an engineer with a critical and open mindset. Being a part of a rapidly moving industry, we are looking for engineers, who are not afraid to build fast, fail fast and learn from their mistakes. If you decide to join us you might be working on projects with technologies and languages such as: Node.js, MongoDB, Python, PostgreSQL CI/CD: Git, GitHub, Docker, Kubernetes, Jenkins, GitOps Our working language is English and we expect all candidates to be fluent in English. Benefits What are we to offer you? We would be more than happy to hear from you and look forward to have you joining our team where you should expect following benefits and culture: A competitive salary Generous stock option plan 25 vacation days per year Flexible working hours Free choice of hardware Regular experimental time to work on your own ideas Office within 5 min walking distance from Zurich HB Office shut down between Christmas and New Year (to be compensated by working a couple of extra minutes per day over the year, i.e. 15 min in 2018) A very multicultural team Regular team events and parties One ski retreat per year A fully-equipped kitchen and a dining area Big open terrace and a bbq space Free coffee/fruits and soft drinks ',\n", + " '[\"Infrastructure\", \"Planning\", \"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"Advertisement\", \"Kubernetes\", \"Accessioning\", \"Jenkins\", \"Machine Learning\", \"Industrialization\", \"Mobile App\", \"PostgreSQL\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"E (Programming Language)\", \"Experimentation\", \"Software Engineering\", \"Mobility\", \"Github\", \"Docker (Software)\", \"Scalability\", \"Distributed Development\", \"Incentive Stock Option\", \"Git Flow\", \"Custom Backend\"]',\n", + " \"['English', 'Sanskrit', 'Bashkir']\"],\n", + " ['75',\n", + " 'big data sw engineer',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-3.01101953e-01 2.05468118e-01 3.38937968e-01 6.27648458e-02\\n5.27831316e-01 -2.44242936e-01 -4.42347862e-02 4.94137406e-01\\n-1.58931017e-01 -2.22726703e-01 -1.85679972e-01 -2.29153544e-01\\n-2.35485375e-01 8.83499682e-02 2.02865213e-01 1.99808836e-01\\n3.66957873e-01 1.75539657e-01 -3.10731858e-01 3.03253353e-01\\n9.57712680e-02 -7.33449981e-02 -6.93250299e-02 5.87042093e-01\\n2.11038351e-01 -7.33086094e-02 -1.07081152e-01 6.65421039e-02\\n-2.83298492e-01 -2.24916577e-01 3.65526676e-01 1.04469042e-02\\n-5.85217811e-02 -1.62259921e-01 2.23333761e-01 7.93899670e-02\\n-1.67514771e-01 3.64139751e-02 -1.34390101e-01 1.68983176e-01\\n-3.56289893e-01 -2.34871879e-01 1.32322222e-01 9.38800052e-02\\n-2.80128151e-01 -1.69230387e-01 2.06812218e-01 8.60328786e-03\\n2.13166345e-02 2.70253513e-03 -5.94597042e-01 3.96542996e-01\\n-2.27956325e-01 -2.61778653e-01 3.70452523e-01 5.02379537e-01\\n-4.11657803e-02 -5.48599482e-01 -2.87942350e-01 -2.96847492e-01\\n-1.16176798e-03 -2.22184062e-01 1.61893293e-02 -2.17313752e-01\\n4.47410703e-01 -8.13635886e-02 -2.92907208e-02 3.80839199e-01\\n-8.64019513e-01 -1.77900910e-01 -2.26260126e-01 -4.85640392e-02\\n-3.99245679e-01 -9.10999253e-03 -3.19830894e-01 -1.09274149e-01\\n8.41057580e-03 3.01758528e-01 -2.85557099e-02 1.24274015e-01\\n-1.25534520e-01 3.40029597e-01 -1.31320447e-01 2.30538473e-01\\n2.80047119e-01 2.49191612e-01 9.16843861e-02 3.29105258e-01\\n-4.03916955e-01 4.81374830e-01 2.14370355e-01 -2.16466814e-01\\n2.23379508e-01 1.66391090e-01 3.96670938e-01 9.13620964e-02\\n5.05224280e-02 1.06491007e-01 -1.27593681e-01 1.17748506e-01\\n1.75165161e-01 -3.30599159e-01 -9.24481358e-03 -1.84518173e-02\\n-1.82441071e-01 1.37799248e-01 -4.29142788e-02 3.27759355e-01\\n-2.82197207e-01 3.42970043e-01 2.17104077e-01 -1.55072898e-01\\n-8.35699290e-02 -5.02163053e-01 -7.30586872e-02 8.45400430e-03\\n-4.61958162e-02 1.90622374e-01 3.84816527e-01 1.69828430e-01\\n2.46956319e-01 5.33519201e-02 1.24672972e-01 9.46399093e-01\\n-8.28568712e-02 1.08757518e-01 -1.91055864e-01 3.06229293e-01\\n2.48259783e-01 -1.42553911e-01 8.25339649e-03 4.03297603e-01\\n2.08169997e-01 -3.86135615e-02 -2.31562227e-01 3.82868707e-01\\n-1.95302576e-01 9.16899554e-03 -3.32402378e-01 4.92216498e-02\\n-2.45508999e-01 -6.26972675e-01 5.42866051e-01 8.35473463e-02\\n2.41304502e-01 4.55136299e-02 3.09707429e-02 -1.53375283e-01\\n-9.55718607e-02 4.09621656e-01 -5.23311831e-03 3.42104316e-01\\n-2.85475999e-01 -2.14302391e-01 -1.22620888e-01 4.12547231e-01\\n-1.17644615e-01 3.42605561e-02 -1.79696724e-01 -2.00457796e-01\\n3.52467537e-01 1.08342670e-01 -3.68690789e-01 1.93266973e-01\\n-1.40618026e-01 -1.42957017e-01 -1.09497547e-01 3.14066440e-01\\n-1.68675289e-01 2.36806899e-01 -4.43535894e-02 -1.47419780e-01\\n4.98357624e-01 1.01879969e-01 1.04123749e-01 -5.36108501e-02\\n3.03531080e-01 -9.47742462e-02 2.98180968e-01 9.13879871e-02\\n-6.96229339e-01 3.54917586e-01 3.47370207e-02 -1.28086314e-01\\n-1.57752261e-02 1.57817736e-01 3.84815276e-01 -3.90204042e-01\\n-1.20488219e-01 -2.90392995e-01 -4.20715153e-01 -2.81075507e-01\\n-4.44815248e-01 3.89676802e-02 3.44864935e-01 -4.27793264e-01\\n-3.74122034e-03 1.78709939e-01 -4.16195780e-01 3.59884201e-04\\n2.03709409e-01 1.80468023e-01 -4.15053703e-02 2.28170939e-02\\n-1.42573342e-01 -6.94083214e-01 1.42792948e-02 -4.79546934e-01\\n-5.01015782e-01 1.35879472e-01 -3.51854682e-01 1.36104584e-01\\n7.57353567e-03 1.01088457e-01 -4.42259833e-02 9.98786837e-02\\n-3.24994922e-01 -3.06313462e-03 2.09171444e-01 1.15747169e-01\\n3.13567072e-01 -6.70982450e-02 -4.61780250e-01 6.42696977e-01\\n-2.67642766e-01 5.26777267e-01 2.51041383e-01 -8.25207233e-01\\n5.82702935e-01 1.20460384e-01 1.00540847e-01 -3.22622836e-01\\n4.81071264e-01 -3.36502284e-01 -7.06387237e-02 2.11421788e-01\\n-2.75068194e-01 -1.48258418e-01 2.70925075e-01 -2.61967242e-01\\n-3.72318655e-01 5.42962670e-01 1.03863493e-01 6.85962215e-02\\n3.50966424e-01 -3.27421755e-01 -4.81002256e-02 2.64064930e-02\\n-1.97089121e-01 -1.80465713e-01 -2.65693337e-01 9.07230526e-02\\n-8.72700438e-02 -5.63232899e-01 -2.08431602e-01 -4.15834278e-01\\n-1.93350479e-01 -3.43577325e-01 -2.96570837e-01 4.22725111e-01\\n2.14663614e-02 2.11691886e-01 6.53447807e-02 -7.67039508e-02\\n-1.36821643e-01 -6.85748875e-01 -3.82958874e-02 4.16736528e-02\\n3.97857517e-01 1.78448007e-01 9.84479189e-02 -1.24142036e-01\\n9.42003354e-02 4.43085819e-01 -3.02035928e-01 -3.93219262e-01\\n7.01723322e-02 2.47988611e-01 -1.05666339e-01 -7.22176880e-02\\n8.17293897e-02 3.93916309e-01 -1.81146532e-01 7.86973536e-02\\n-1.15590632e-01 -1.09692782e-01 2.94791907e-01 -5.73444851e-02\\n-2.69350320e-01 -3.02367240e-01 -1.28933741e-02 2.35635653e-01\\n-5.26639163e-01 -2.00345889e-01 4.47629154e-01 2.78221697e-01\\n2.09839001e-01 2.77162403e-01 2.57791489e-01 -1.37005329e-01\\n-1.49560839e-01 -2.18382955e-01 1.00144103e-01 8.02823305e-02\\n6.07070662e-02 1.15605257e-01 -1.08793989e-01 -5.30451179e-01\\n-3.39208603e+00 -5.63151315e-02 2.52593994e-01 -3.18908006e-01\\n2.17180908e-01 -3.96097265e-02 -3.48894000e-02 -8.05229135e-03\\n-3.34934950e-01 2.52406541e-02 -1.33705780e-01 -1.70382172e-01\\n4.73639145e-02 3.44657719e-01 1.58479080e-01 1.78433403e-01\\n1.10718593e-01 -2.78479576e-01 -2.79764161e-02 2.71381021e-01\\n-1.50305688e-01 -6.21330321e-01 9.97146964e-02 -1.41468078e-01\\n1.58538356e-01 2.70813227e-01 -3.80205452e-01 -1.78321853e-01\\n-1.46755233e-01 -1.23283803e-01 -6.81680907e-03 -2.01021194e-01\\n-1.40996844e-01 3.03455979e-01 8.51234123e-02 -7.39043877e-02\\n-2.25619227e-03 -1.88769802e-01 5.89157343e-02 -3.97744507e-01\\n1.28502116e-01 -6.27700984e-01 -1.17061824e-01 2.55809110e-02\\n8.00558209e-01 -3.38051409e-01 2.50999868e-01 4.48361747e-02\\n1.24136552e-01 1.44558430e-01 -9.47530009e-03 -2.89928056e-02\\n-4.10954207e-01 -2.59968370e-01 8.07316601e-03 -2.05413237e-01\\n5.00134587e-01 5.56650519e-01 -2.70375103e-01 1.18852615e-01\\n4.39306758e-02 -3.88473392e-01 -2.67922729e-01 -4.63823408e-01\\n-2.44448036e-01 -1.60499856e-01 -6.05833292e-01 -4.68020409e-01\\n6.56542331e-02 -4.00498360e-02 -4.27641906e-02 5.28888762e-01\\n-2.47434586e-01 -5.23392141e-01 -4.97311261e-03 -6.35559916e-01\\n1.53691709e-01 -1.68543160e-01 8.75283703e-02 -2.12559879e-01\\n-2.23422244e-01 -4.90395814e-01 9.68449935e-02 -1.00319140e-01\\n-2.05070257e-01 -2.16643646e-01 9.30998996e-02 -3.30167264e-01\\n-2.66174406e-01 -4.45008546e-01 3.52712095e-01 6.88946545e-02\\n3.21807653e-01 1.06319748e-01 3.73929888e-01 1.71221986e-01\\n2.82949686e-01 -1.04071811e-01 1.69954538e-01 -4.78197068e-01\\n6.06009029e-02 5.11393603e-03 5.07411778e-01 -3.06614310e-01\\n1.09827109e-01 1.89834788e-01 -1.62681907e-01 -1.19189776e-01\\n3.21089804e-01 -7.71349948e-03 5.50119169e-02 -1.75196022e-01\\n4.34161544e-01 -5.69048405e-01 -2.94435322e-01 1.80286989e-01\\n1.89764611e-02 7.08990693e-01 6.18260838e-02 -3.30991447e-01\\n-3.09282333e-01 6.04820669e-01 -1.03759550e-01 -3.29420827e-02\\n-1.16342530e-01 1.41456410e-01 -1.32823661e-01 2.07058951e-01\\n1.77259937e-01 -2.62008011e-01 -2.92187750e-01 -2.98776738e-02\\n1.99932940e-02 7.04660714e-02 2.43663341e-01 3.54229542e-03\\n-1.35227546e-01 -2.29722336e-01 1.30359055e-02 1.57592326e-01\\n2.05773816e-01 3.08589101e-01 1.35966957e-01 -1.88283771e-01\\n-3.57005559e-02 2.44446576e-01 -1.05021141e-01 3.19479436e-01\\n-6.81861714e-02 -4.34864452e-03 -5.69531798e-01 -2.56540865e-01\\n-2.61088520e-01 -3.32109034e-01 8.42036009e-02 2.82533526e-01\\n9.93325338e-02 2.56332140e-02 8.83383676e-02 -5.29455006e-01\\n4.47646558e-01 5.59237897e-02 1.56982929e-01 1.13786317e-01\\n-1.26906931e-01 5.15711963e-01 -5.80736399e-02 1.91197582e-02\\n-1.66845039e-01 1.24922171e-01 -3.01848084e-01 -3.47423434e-01\\n5.26845492e-02 -3.90955597e-01 -1.03276826e-01 3.87472838e-01\\n1.64225511e-02 -2.41657481e-01 -2.56173581e-01 1.98452711e-01\\n8.62858668e-02 -3.07554901e-01 -3.16199660e-01 -1.14465252e-01\\n2.78394282e-01 1.86716795e-01 2.94284970e-01 -4.95745897e-01\\n-3.76344472e-02 7.16181323e-02 -2.48826109e-02 4.97234225e-01\\n-6.80453777e-02 1.42859459e-01 -1.43272460e-01 -2.50733644e-01\\n4.04684305e-01 -1.28766662e-02 -2.51279958e-02 -1.61555469e-01\\n1.36498541e-01 -1.81473628e-01 -4.97260153e-01 -2.65101437e-02\\n4.50159833e-02 -1.24487810e-01 1.27765059e-01 2.60357410e-02\\n1.79643169e-01 4.15647626e-02 -4.19829279e-01 -2.95686811e-01\\n-3.94085139e-01 -1.30887121e-01 6.55944124e-02 -2.89105147e-01\\n2.47811098e-02 9.60506382e-04 -4.56053048e-01 1.89061150e-01\\n-3.44224572e-01 6.65163100e-02 1.06628314e-01 6.41208291e-02\\n-4.23861504e-01 -8.08182135e-02 2.15648010e-01 8.36255550e-02\\n-2.76723564e-01 -2.14604691e-01 -4.69051152e-02 -9.38539684e-01\\n1.97718084e-01 3.38651128e-02 -2.05476098e-02 2.03586137e-03\\n3.03438609e-03 -6.55751348e-01 6.85764775e-02 -4.34416175e-01\\n2.61995364e-02 9.69585869e-03 -1.64045036e-01 -3.18273038e-01\\n1.88789919e-01 -1.61052451e-01 -3.55716944e-01 4.60080624e-01\\n-5.48370063e-01 1.45905852e-01 2.66430639e-02 9.05736070e-03\\n8.50666538e-02 -2.50437349e-01 1.77480757e-01 -4.29296404e-01\\n-3.08534056e-01 -1.54185236e-01 -2.75501490e-01 -2.61542082e-01\\n4.25716490e-03 -2.87788689e-01 -1.50277898e-01 7.79411346e-02\\n3.72407258e-01 3.95688191e-02 -1.35988906e-01 -3.02409798e-01\\n-3.50133656e-03 -3.35615605e-01 2.17419550e-01 -3.31272304e-01\\n2.81495992e-02 -2.91138496e-02 2.49101117e-01 6.69286549e-02\\n1.23135261e-01 -3.85709554e-01 4.59179580e-01 -1.51689067e-01\\n-4.46419388e-01 -5.38214110e-02 1.35429770e-01 5.52593842e-02\\n2.57866412e-01 -6.05759144e-01 1.14931889e-01 3.00878286e-01\\n1.35573730e-01 -9.27001331e-03 3.37561637e-01 8.25927630e-02\\n-2.15809699e-02 1.61514759e-01 -3.80178303e-01 -2.29498781e-02\\n6.60057366e-01 2.65543014e-01 1.58701733e-01 1.37158856e-01\\n1.72695071e-01 3.88955176e-01 4.09141243e-01 2.86676753e-02\\n-7.16962889e-02 2.10967466e-01 6.96680769e-02 -5.88416159e-01\\n-3.56307477e-02 -1.33309275e-01 -2.09017277e-01 -2.27373600e-01\\n5.89847445e-01 3.21393013e-01 -3.46056610e-01 -3.13028961e-01\\n3.46080586e-02 -1.50365934e-01 3.27742636e-01 -3.15129980e-02\\n4.48317714e-02 -2.82147735e-01 4.66292948e-01 1.04251720e-01\\n3.41210067e-01 5.86767793e-01 -2.40182266e-01 -3.76839578e-01\\n-7.62794018e-02 2.15023160e-01 1.23140857e-01 3.93933356e-01\\n-1.77429840e-01 2.86297172e-01 -4.92895618e-02 3.94732915e-02\\n-1.51000962e-01 1.74328953e-01 1.59239292e-01 8.87001008e-02\\n2.61936009e-01 1.03396080e-01 2.83596098e-01 5.33213317e-01\\n1.50322810e-01 6.07154071e-01 3.44479978e-01 9.83228236e-02\\n3.34318846e-01 5.55958450e-01 4.30937439e-01 1.65368557e-01\\n4.48586904e-02 1.80928141e-01 3.17191370e-02 -4.69754599e-02\\n3.92230421e-01 2.93758422e-01 1.41964242e-01 8.66955042e-01\\n4.96722788e-01 2.04849377e-01 8.54869545e-01 -5.62597096e-01\\n-3.33546072e-01 -4.36255895e-02 4.70584303e-01 -3.22842687e-01\\n-1.57439783e-01 9.43984538e-02 -2.34402195e-01 3.50408584e-01\\n-4.05797720e-01 -1.33026578e-02 -2.25762222e-02 -9.13154893e-03\\n1.15386425e-02 1.54169491e-02 -2.48635471e-01 -7.11982548e-02\\n-2.53270119e-01 -1.65285215e-01 -2.79015481e-01 -2.60136187e-01\\n-3.13320428e-01 -6.13441207e-02 -1.85072049e-01 2.14449521e-02\\n-1.63897336e-01 -3.61653239e-01 -1.17479809e-01 5.21581881e-02\\n2.82231897e-01 -2.37760872e-01 -7.92240575e-02 -2.46802539e-01\\n1.76398724e-01 1.53994024e-01 5.13328612e-01 -1.57607589e-02\\n1.51374280e-01 -1.45597979e-01 -2.37930238e-01 8.08967091e-03\\n3.98317389e-02 9.11872685e-02 1.19882539e-01 4.81764764e-01\\n-4.30050731e-01 -4.64595594e-02 4.54946160e-02 3.27450961e-01\\n-4.45557058e-01 -2.52781212e-01 1.71306115e-02 3.24606508e-01\\n6.28484488e-02 6.93295375e-02 -3.11871618e-01 2.50572395e-02\\n-2.49034271e-01 -5.61248779e-01 4.54631239e-01 -2.58694082e-01\\n1.16471695e-02 2.15337083e-01 3.09639663e-01 2.00530648e-01\\n-4.11093011e-02 -5.68200536e-02 -7.14775398e-02 2.43405938e-01\\n-8.57694596e-02 3.74721408e-01 -1.87467322e-01 -1.44767627e-01\\n-3.32160890e-01 3.46036613e-01 -2.41534218e-01 2.12024897e-01\\n-6.70670196e-02 2.96857536e-01 8.58305544e-02 5.16654737e-02\\n1.51009873e-01 -1.21138670e-01 -1.81237057e-01 -2.05051482e-01\\n-1.64857954e-01 -1.64369792e-01 1.69383839e-01 3.96749042e-02\\n1.86790228e-01 -3.70514661e-01 4.97878715e-03 -3.36113423e-02\\n-5.06768636e-02 -3.40315491e-01 -2.35031456e-01 1.09160975e-01]]',\n", + " 'Job Informationen Your tasks: In this role you will be working with state of the art cloud technologies to build a big data processing pipeline that handles TBs of raw data and millions of events on a daily basis. You will be responsible to keep the platform highly available, scalable, secure and cost-efficient. Your profile: Bachelor’s degree in Computer Science, or a related field, or equivalent practical experience. Experience with one or more general purpose programming languages including but not limited to: C/C++, Go, Python or Java. Good understanding of cloud architectures, services and container technology. Experience with common cloud platforms (AWS, Azure, GCP). Experience with big-data processing systems featuring ingestion, storage and indexing. Solid communication skills, fluent in English. High level of drive, independence and strong analytical skills. Preferred qualifications: Master’s or PhD degree in Computer Science, further education or experience in engineering, computer science or a related field. Experience in IT security, especially malware analysis. Experience in message passing architectures (e.g. Kafka, RabbitMQ, Redis). Experience in architecting, building and maintaining hybrid cloud environments. Experience with agile development, testing and continuous integration. Benötigte Skills C C++ Go Python Python JAVA CLOUD Englisch Security Test',\n", + " '[\"Verbal Communication Skills\", \"Analytical Skills\"]',\n", + " '[\"Development Testing\", \"Python Server Pages\", \"KM Programming Language\", \"Agility\", \"Security Testing\", \"Computer Science\", \"Continuous Integration\", \"Python (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Hybrid Cloud Computing\", \"Limiter\", \"Pipelining\", \"Message Passing\", \"Data Processing Systems\", \"RabbitMQ\", \"Indexing\", \"C (Programming Language)\", \"Storages\", \"Scalability\", \"Big Data\", \"Redis\", \"Computer Engineering\", \"Google Cloud Platform (GCP)\", \"Raw Data\", \"Malware Analysis\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Cloud-Native Architecture\", \"Cloud Technologies\"]',\n", + " \"['English', 'Chinese', 'Wolof', 'Southern Sotho', 'Kongo']\"],\n", + " ['68',\n", + " 'fullstack software engineer',\n", + " 'Zürich',\n", + " 'Publishing',\n", + " '',\n", + " '[[-3.67187336e-02 2.96722233e-01 5.69320023e-01 5.54775912e-03\\n3.93695325e-01 -2.44853720e-01 6.13278449e-02 4.39237267e-01\\n-3.71004380e-02 -3.76976460e-01 1.44464830e-02 -2.01261029e-01\\n-1.77895710e-01 1.51643947e-01 1.19291306e-01 3.40309560e-01\\n1.46882311e-01 1.46317557e-01 -1.59184709e-01 3.03446144e-01\\n2.39146829e-01 -8.00555050e-02 1.58204213e-01 6.36542737e-01\\n4.19375390e-01 2.41677724e-02 -5.45547083e-02 -7.05409721e-02\\n-3.60972941e-01 -2.06816643e-01 4.37921822e-01 1.33640841e-01\\n-8.46405700e-02 -4.37251240e-01 5.85866980e-02 3.82522531e-02\\n-2.37589940e-01 -1.21355340e-01 1.13389283e-01 3.12887311e-01\\n-4.68225986e-01 -3.09102178e-01 1.08712859e-01 5.88735342e-02\\n-2.22313091e-01 -2.94777691e-01 1.25417948e-01 2.10777111e-02\\n6.06098473e-02 -1.59901649e-01 -5.19902527e-01 3.33915353e-01\\n-1.48147970e-01 -2.18725681e-01 2.06449345e-01 4.88953263e-01\\n-7.28642046e-02 -4.44074035e-01 -4.05547202e-01 -2.85148084e-01\\n7.93206915e-02 -1.09679095e-01 7.52034709e-02 -2.50600070e-01\\n2.30235025e-01 3.55911888e-02 -3.62425484e-02 3.63901168e-01\\n-6.27832115e-01 -6.24744818e-02 -2.74090599e-02 -1.14512570e-01\\n-2.90184140e-01 -1.69261634e-01 -1.08545452e-01 -1.19351923e-01\\n-1.00509040e-01 4.37621176e-01 1.77954912e-01 4.22590859e-02\\n-1.48623928e-01 3.52732629e-01 -1.07174113e-01 4.41610485e-01\\n2.30287209e-01 2.27462009e-01 1.50427923e-01 3.07592303e-01\\n-3.98245454e-01 3.26627195e-01 7.22608194e-02 -3.18401575e-01\\n3.19555432e-01 6.69317646e-03 5.14104247e-01 2.62273010e-02\\n4.43237228e-03 1.98723506e-02 -1.93057477e-01 3.28119040e-01\\n2.69340843e-01 -1.85362697e-01 8.35981220e-02 -8.29748288e-02\\n-6.58849403e-02 -2.33044624e-02 -8.01128224e-02 2.44132370e-01\\n-1.08781122e-01 3.86238635e-01 2.32352808e-01 -1.92284822e-01\\n-1.69037268e-01 -4.57147300e-01 -2.42234184e-03 1.03367409e-02\\n2.39397828e-02 1.85592055e-01 2.72359192e-01 1.26982644e-01\\n2.69823253e-01 1.17569029e-01 1.58665076e-01 8.56716633e-01\\n8.57469067e-03 -4.37417030e-02 -2.67243981e-01 2.75124520e-01\\n1.63230762e-01 -2.51760244e-01 2.56302088e-01 3.62402558e-01\\n1.13420933e-01 -1.76909283e-01 -8.86960849e-02 3.00287306e-01\\n2.90440116e-02 -2.60723382e-01 -3.53721976e-01 1.09487094e-01\\n-2.28362277e-01 -2.31612802e-01 5.76940596e-01 1.91144735e-01\\n1.26530856e-01 -2.60857157e-02 -4.46492322e-02 -2.23895624e-01\\n-1.12277649e-01 1.95836052e-01 -1.17187500e-01 3.68517041e-02\\n-2.57537067e-01 -2.13730350e-01 -3.12259912e-01 1.40268147e-01\\n-2.14918569e-01 1.22836351e-01 1.36997364e-02 -1.79604478e-02\\n3.68961006e-01 -3.75046022e-02 -1.71374694e-01 3.15917552e-01\\n8.26814584e-03 -5.74938543e-02 -2.95440108e-02 2.80687302e-01\\n-1.54562250e-01 2.07130566e-01 -1.71475559e-02 -1.49127305e-01\\n5.36321998e-01 1.13359056e-01 1.61812231e-01 1.66860018e-02\\n3.34713429e-01 -2.20375732e-01 6.88984022e-02 2.14569479e-01\\n-5.46268940e-01 1.88515067e-01 -1.30828366e-01 2.83839554e-02\\n1.12771407e-01 -3.61085013e-02 2.78316945e-01 -2.51751900e-01\\n8.79559442e-02 -1.23617977e-01 -4.17852968e-01 -3.63407969e-01\\n-1.10374160e-01 2.28156671e-02 4.43680614e-01 -3.13345820e-01\\n-1.91146314e-01 2.97416866e-01 -4.28972840e-01 8.48936569e-03\\n1.53323203e-01 2.31711999e-01 1.02577545e-01 7.85370450e-03\\n-2.22339883e-01 -3.61608177e-01 1.91932544e-02 -3.48060846e-01\\n-3.73283476e-01 8.27715248e-02 -2.58655220e-01 2.43152216e-01\\n1.27916306e-01 7.21792504e-02 -1.51331961e-01 1.93871707e-01\\n-1.36164784e-01 -2.12173626e-01 1.69147268e-01 6.26653954e-02\\n3.02887172e-01 -1.12523235e-01 -4.24842238e-01 4.09860104e-01\\n-2.03235656e-01 6.75117791e-01 1.50511488e-01 -8.71262848e-01\\n5.20909190e-01 2.95181215e-01 -6.67094067e-02 -3.61656189e-01\\n5.54514885e-01 -2.49935582e-01 9.58802402e-02 1.02369644e-01\\n-2.91614860e-01 -3.43615174e-01 2.65896648e-01 -6.57019764e-02\\n-1.77297845e-01 5.48355639e-01 1.27354741e-01 -6.13008393e-03\\n1.24384791e-01 -1.75733134e-01 -7.46652186e-02 -5.27924299e-02\\n-5.12434021e-02 -2.74515539e-01 -3.75991523e-01 9.09159705e-02\\n-1.61188602e-01 -4.39422756e-01 2.57048830e-02 -2.93024212e-01\\n-2.30757058e-01 -3.53218943e-01 -1.14352420e-01 4.32680994e-01\\n3.19875658e-01 7.33499601e-02 1.97651256e-02 8.40124339e-02\\n-1.23082809e-01 -6.14158213e-01 -9.86102149e-02 1.40843242e-01\\n4.85467523e-01 1.82063103e-01 9.52177495e-02 9.69471782e-02\\n3.58351693e-02 6.01812184e-01 -1.50268853e-01 -5.22333942e-02\\n5.39931059e-02 1.31090701e-01 -2.73996573e-02 -1.66916266e-01\\n-1.84699893e-02 3.61212462e-01 -2.48187661e-01 9.48279724e-03\\n-1.98753893e-01 -3.22190183e-03 5.11966228e-01 6.15152568e-02\\n-3.91003728e-01 -1.40090019e-01 5.69002666e-02 2.28298500e-01\\n-5.60989320e-01 -1.49974942e-01 5.62736630e-01 1.59602359e-01\\n9.61167365e-02 1.13881178e-01 2.53907919e-01 -1.31241560e-01\\n-1.04191929e-01 -5.29475957e-02 2.01631710e-01 1.34956926e-01\\n2.37567812e-01 6.11278526e-02 -1.17080443e-01 -5.64521492e-01\\n-3.73585176e+00 -2.13137731e-01 2.02780262e-01 -2.72512734e-01\\n8.40850249e-02 -1.00012653e-01 -6.22426644e-02 -1.41159356e-01\\n-1.93529800e-01 1.29292592e-01 -1.43042788e-01 -7.24028647e-02\\n1.38196737e-01 2.14548111e-01 -4.21912828e-03 2.56612182e-01\\n1.11522853e-01 -2.36249700e-01 -1.33395001e-01 2.68445373e-01\\n-2.80611634e-01 -5.82509220e-01 4.62023199e-01 -1.25198364e-01\\n2.67884552e-01 1.87164888e-01 -2.04647958e-01 -1.29223302e-01\\n-1.31829828e-01 -1.92293689e-01 6.12795763e-02 -9.39538777e-02\\n-8.59152377e-02 3.23388636e-01 9.77475792e-02 -1.00771397e-01\\n3.10782611e-01 -4.18412954e-01 -2.50079334e-01 -4.68986362e-01\\n1.02944970e-01 -5.20250201e-01 -7.67997876e-02 -8.12862962e-02\\n7.76533425e-01 -4.35851097e-01 9.95982215e-02 1.63303509e-01\\n1.62734449e-01 2.69255280e-01 -8.63716453e-02 -9.00575519e-02\\n-2.15842098e-01 -2.02197447e-01 -2.41889674e-02 -2.72290051e-01\\n3.84078354e-01 5.21022558e-01 -2.27394283e-01 -8.90961289e-02\\n-1.18444208e-02 -1.39494345e-01 -4.06376392e-01 -2.97382027e-01\\n-1.33093866e-02 -3.45209450e-01 -6.45767629e-01 -3.44988912e-01\\n-8.53393674e-02 -7.44745582e-02 -3.00105065e-01 5.56294501e-01\\n-2.55929202e-01 -5.01018941e-01 -6.37039319e-02 -3.91463339e-01\\n1.71785668e-01 -2.13017747e-01 -7.51036927e-02 -1.48616314e-01\\n-2.50548184e-01 -4.89901721e-01 -6.59603328e-02 1.78579073e-02\\n-2.01745242e-01 -2.78845698e-01 -4.30707075e-02 -2.83622980e-01\\n-1.01161934e-01 -5.20414174e-01 4.20552015e-01 9.56956968e-02\\n2.32600644e-01 6.03266209e-02 3.05402726e-01 1.80324048e-01\\n2.88148284e-01 -2.68026769e-01 3.81080061e-02 -3.69150817e-01\\n2.25047216e-01 -4.81761433e-02 5.35127103e-01 -3.05869102e-01\\n5.57059385e-02 1.77850649e-01 -2.11757451e-01 -6.46279985e-03\\n2.45328739e-01 1.14314899e-01 -2.94656698e-02 -2.18708441e-01\\n1.83173254e-01 -3.31229389e-01 -2.74223238e-01 8.38534534e-03\\n1.18746176e-01 4.65987921e-01 -8.10511783e-02 -4.65594023e-01\\n-2.14281842e-01 4.87218618e-01 -1.14892401e-01 -1.67984560e-01\\n-3.68615419e-01 1.52739868e-01 -1.20416932e-01 2.25331560e-01\\n5.65250739e-02 -1.99138939e-01 -4.00528491e-01 -2.87562490e-01\\n-1.21224187e-01 1.26799926e-01 3.28885376e-01 1.06314771e-01\\n-5.14674298e-02 -3.97335589e-01 -6.57119825e-02 1.16826944e-01\\n1.92517221e-01 2.01343328e-01 1.12483673e-01 -1.09031983e-02\\n-3.01207770e-02 3.62238139e-01 -1.18605971e-01 1.56226188e-01\\n-3.15339655e-01 -5.28079318e-03 -4.95506346e-01 -3.11013013e-01\\n-1.06824383e-01 -3.67273480e-01 1.14798591e-01 1.60853311e-01\\n2.41685212e-01 3.79153527e-02 -5.10414243e-02 -4.56056207e-01\\n3.89789432e-01 -9.30798650e-02 2.31278896e-01 2.41151020e-01\\n3.90331149e-02 4.56876010e-01 1.37195930e-01 -8.29316080e-02\\n-1.49566486e-01 -8.45598578e-02 -2.22926557e-01 -1.08174104e-02\\n-6.38274327e-02 -2.95079529e-01 -1.73237726e-01 3.48053485e-01\\n6.20904155e-02 -4.31401789e-01 -2.38968834e-01 2.60857493e-01\\n-2.50868648e-02 -1.55542672e-01 -6.74322322e-02 6.43418282e-02\\n3.76790076e-01 2.17092857e-02 3.46067458e-01 -3.65874618e-01\\n1.90149453e-02 6.69767261e-02 -4.21951339e-02 6.09107435e-01\\n2.80052036e-01 -3.19692381e-02 -1.64769560e-01 -2.97057509e-01\\n3.34365308e-01 -1.68340936e-01 -6.02143183e-02 -1.56974316e-01\\n4.06555720e-02 -1.08460829e-01 -4.05753583e-01 1.67035356e-01\\n-2.47203261e-02 -2.41897672e-01 -6.81778137e-03 4.55852188e-02\\n1.09386958e-01 5.82059398e-02 -3.68962377e-01 -3.84875298e-01\\n-2.90951014e-01 -2.23942976e-02 -1.20255640e-02 -3.56603295e-01\\n2.18186602e-02 3.27027664e-02 -6.07908130e-01 1.88048556e-01\\n-3.20781380e-01 -8.77033994e-02 2.13556942e-02 5.04866503e-02\\n-3.59134704e-01 -1.16177434e-02 6.90006390e-02 2.08212867e-01\\n-1.86065540e-01 -3.47521961e-01 2.23886043e-01 -1.00485408e+00\\n1.86940715e-01 -6.40914813e-02 -2.23913312e-01 8.79647285e-02\\n-5.78339137e-02 -5.10921717e-01 1.05936274e-01 -3.43242347e-01\\n-8.42427537e-02 -4.54773568e-02 -1.26209021e-01 -5.60749650e-01\\n1.21082686e-01 -4.20459732e-02 -3.31637204e-01 4.56954420e-01\\n-4.05316442e-01 2.15204895e-01 -3.48812118e-02 2.24518359e-01\\n4.40747552e-02 -3.56915116e-01 1.14904575e-01 -4.79978174e-01\\n-3.30032855e-01 -4.43308428e-02 -3.68664235e-01 -2.28247836e-01\\n-4.41463515e-02 -2.17817277e-01 -5.26896620e-04 1.24487728e-01\\n2.25357533e-01 7.74440393e-02 3.52876708e-02 -3.81222010e-01\\n5.15290983e-02 -3.70318532e-01 8.24180767e-02 -4.90108393e-02\\n-3.03732473e-02 -4.18397859e-02 3.71964872e-02 -8.22254736e-03\\n-2.00392995e-02 -2.89255619e-01 3.58116269e-01 -2.75829136e-01\\n-1.52155325e-01 -7.77188018e-02 -2.18711440e-02 -6.20610872e-03\\n1.53075725e-01 -5.31868994e-01 8.06183666e-02 3.67095411e-01\\n1.32969141e-01 1.79005548e-01 2.39876196e-01 5.64817376e-02\\n-7.73215517e-02 2.85412908e-01 -2.48589501e-01 1.21940948e-01\\n7.07733631e-01 -3.69421728e-02 5.27142361e-03 9.76652578e-02\\n1.73838049e-01 1.04933545e-01 4.33435768e-01 -3.50388400e-02\\n-1.26859635e-01 1.99341267e-01 -2.39235954e-03 -5.36039531e-01\\n-4.54127369e-03 3.18226926e-02 -3.07196259e-01 -3.35978329e-01\\n6.76762998e-01 3.23572755e-01 -2.88808584e-01 -2.11659059e-01\\n-7.14001805e-02 -1.64696351e-01 5.98044582e-02 -1.21731579e-01\\n7.80935735e-02 -6.50402755e-02 5.03270686e-01 -5.81781715e-02\\n2.27961481e-01 5.12414753e-01 -1.46927491e-01 -3.39265227e-01\\n-7.10828900e-02 3.94160599e-02 1.25709757e-01 5.66308260e-01\\n-2.15253025e-01 2.19289437e-01 5.76037019e-02 1.34706631e-01\\n1.26359600e-03 2.14553028e-01 3.27989087e-02 1.53294101e-01\\n5.08411452e-02 3.01635806e-02 2.36456841e-01 4.15357471e-01\\n2.58377761e-01 5.78998327e-01 3.40781033e-01 9.35006514e-02\\n4.70770031e-01 4.00471061e-01 4.45883304e-01 2.51183957e-01\\n-7.41710886e-02 7.26996809e-02 9.42412019e-02 -1.31412074e-01\\n1.58378646e-01 2.84192622e-01 1.07372522e-01 8.90735507e-01\\n4.26928520e-01 1.73812479e-01 6.20054245e-01 -5.61360538e-01\\n-3.79605204e-01 -2.44449731e-03 3.80369425e-01 -2.39221737e-01\\n-9.09817666e-02 5.60221374e-02 -9.55387577e-02 1.31833315e-01\\n-4.63133156e-01 -4.66141514e-02 -9.65779573e-02 8.93006176e-02\\n5.80806322e-02 -5.12994714e-02 -3.05669278e-01 4.42468710e-02\\n-2.09971130e-01 4.80944514e-02 -4.73778665e-01 -5.44616133e-02\\n-1.76520050e-01 -2.76075333e-01 -1.80888906e-01 -1.65693477e-01\\n-1.16700724e-01 -4.43723351e-01 -1.03742622e-01 3.94497206e-03\\n2.12993145e-01 -1.67148635e-01 -4.58802618e-02 -2.70562142e-01\\n3.38034809e-01 2.46800840e-01 4.36104596e-01 8.62346217e-02\\n1.62941456e-01 -2.60475099e-01 -2.92180687e-01 1.76115129e-02\\n1.29402250e-01 5.70366234e-02 -4.73167524e-02 4.31277543e-01\\n-3.02605987e-01 3.23485211e-03 2.32418794e-02 4.17752355e-01\\n-4.76870537e-01 -2.86960155e-02 -6.68208152e-02 1.61704049e-01\\n1.30211711e-01 1.72086850e-01 -2.47980282e-01 1.00084774e-01\\n-3.02859783e-01 -4.60162848e-01 3.45902801e-01 -8.45284238e-02\\n-1.11927968e-02 1.59881204e-01 1.43875748e-01 9.66285393e-02\\n-2.55336046e-01 -4.60860245e-02 4.37939242e-02 2.26694062e-01\\n6.88303337e-02 2.34162003e-01 -2.64328092e-01 -2.36567214e-01\\n-2.56358117e-01 1.31330937e-01 -2.12732673e-01 1.21233791e-01\\n3.73896444e-04 2.60688841e-01 1.67180136e-01 7.53072724e-02\\n2.79586524e-01 4.06940700e-03 -1.07937142e-01 -1.42126694e-01\\n-2.66415268e-01 -3.80658418e-01 -1.59196377e-01 -3.26687358e-02\\n1.25756204e-01 -2.92749524e-01 4.12866250e-02 -1.75034851e-02\\n-2.23701209e-01 -3.28137487e-01 1.19817182e-01 -1.54932171e-01]]',\n", + " 'localsearch is the leading marketing and advertising partner for Swiss SME. We make our customers successful in the digital world. Within our department Products & Platforms we are looking for new colleagues: Fullstack Software Engineer We are software engineers, Java dudes, Go programmers, Ruby champions, Javascript ninjas and offer a skilled cross functional software engineering team (mobile, web, backend) working on one of the biggest internet platforms in terms of traffic and users in Switzerland: local.ch a modern tech stack running on Kubernetes (moving to GCP) based on Spring Boot, Go, Rails, MongoDB, React, Swift, Kotlin an environment where we practice agile methodologies, do code reviews and live a DevOps culture other nice things like free coffee and fruits, hackdays, table tennis, foosball and a joyful team spirit You are a curious explorer, tech enthusiast, software craftsman, hacker and you impress us with knowledge of modern JavaScript frameworks like React, Vue or Angular HTML and CSS skills to build responsive websites proven Rails experience your willingness to get your hands dirty with backend apps written in Java, Go and writing RESTful APIs passion to explore new and alternative technologies like GraphQL fluent in English, German is a plus Important: We are only able to consider applicants with a valid permit to reside and work in Switzerland or citizens of EU-27. Direct applications are given priority. We will be happy to answer your questions via our WhatsApp chat +41 79 358 35 76. We, Sylvia Ramona Bertele and James Bergamin, look forward to receiving your online application!',\n", + " '[\"Writing\"]',\n", + " '[\"Advertisement\", \"Kubernetes\", \"Nice (Unix Utility)\", \"Spring Boot\", \"Platform Product Management\", \"Cascading Style Sheets (CSS)\", \"Vue.js\", \"Ruby (Programming Language)\", \"MongoDB\", \"GraphQL\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Mobility\", \"React.js\", \"Swift (Programming Language)\", \"Cross-Functional Coordination\", \"Agile Methodology\", \"Whatsapp\", \"Digitization\", \"JavaScript (Programming Language)\", \"Alternative Technologies\", \"Code Review\", \"JavaScript Frameworks\", \"Receivables\", \"Angular (Web Framework)\", \"Google Cloud Platform (GCP)\", \"Customer Success\", \"Java (Programming Language)\", \"Custom Backend\", \"DevOps\", \"RESTful API\", \"Kotlin\"]',\n", + " \"['English', 'Moldovan', 'Komi']\"],\n", + " ['145',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[ 4.90229800e-02 2.97917128e-01 4.39905524e-01 7.03050867e-02\\n5.21131754e-01 -2.16982588e-01 -3.99645828e-02 4.95162368e-01\\n-4.02844995e-02 -5.36455035e-01 9.40928385e-02 -1.14590101e-01\\n-1.49782866e-01 1.09880485e-01 4.10227664e-02 4.17319089e-01\\n2.88221031e-01 1.62648827e-01 -1.93620488e-01 3.20761919e-01\\n1.27973095e-01 -8.01675543e-02 1.66979223e-01 7.15268552e-01\\n4.30098027e-01 -8.08927938e-02 -1.00524791e-01 -2.22665351e-02\\n-2.60259390e-01 -2.64580011e-01 2.83885896e-01 3.00317854e-02\\n-9.15894844e-03 -3.50295514e-01 1.13630824e-01 -7.57706687e-02\\n-2.79735386e-01 -1.43612120e-02 -1.06526609e-03 2.13685796e-01\\n-5.42728007e-01 -2.58182436e-01 -2.00369293e-04 -3.26127298e-02\\n-2.40542024e-01 -2.40969792e-01 -1.37284445e-03 -1.06943876e-01\\n1.98715106e-01 7.02873617e-02 -5.09317517e-01 2.31335938e-01\\n-1.80450886e-01 -2.15089709e-01 3.09043199e-01 5.71866632e-01\\n1.43685967e-01 -4.15235132e-01 -5.44164896e-01 -3.07650894e-01\\n1.54684186e-01 -1.26219854e-01 -1.23524956e-01 -2.73860574e-01\\n2.78269470e-01 -6.38677552e-03 4.23559658e-02 2.43443742e-01\\n-7.64444172e-01 1.69372093e-03 -1.06222861e-01 -7.98086971e-02\\n-4.12060112e-01 -7.79623091e-02 -2.04859614e-01 -5.67695946e-02\\n1.58206448e-02 4.21798050e-01 1.84037447e-01 4.15711738e-02\\n-1.74852207e-01 3.21402937e-01 -2.01201767e-01 3.69817376e-01\\n1.71229944e-01 2.05713451e-01 1.23940267e-01 3.58641565e-01\\n-3.64917427e-01 4.28739816e-01 2.52892047e-01 -2.61655450e-01\\n2.54364282e-01 5.74528389e-02 5.17502487e-01 -9.90852043e-02\\n7.18632564e-02 6.49723858e-02 -2.51405239e-01 4.56787169e-01\\n1.83500156e-01 -2.68869430e-01 8.94334316e-02 -1.10007077e-01\\n7.14004319e-03 1.07774343e-02 6.44368827e-02 2.03074798e-01\\n-8.56987461e-02 4.62229759e-01 1.70712546e-01 -1.80773661e-01\\n-1.75357416e-01 -3.61860633e-01 4.96655889e-02 -5.22858053e-02\\n7.01624528e-02 2.40798667e-01 2.86226392e-01 1.06877409e-01\\n1.31891638e-01 1.05866447e-01 1.81113243e-01 9.39289510e-01\\n-1.26703814e-01 5.76909184e-02 -3.44789743e-01 1.21241055e-01\\n1.49034292e-01 -3.63606036e-01 2.50193179e-01 3.35075498e-01\\n-1.84964593e-02 -1.48586616e-01 -1.44163862e-01 2.59524494e-01\\n1.45316347e-01 -1.63228199e-01 -2.74204075e-01 8.20346624e-02\\n-1.31944761e-01 -3.01126182e-01 5.97357094e-01 1.84695750e-01\\n1.26479939e-01 -5.28316088e-02 -6.60626218e-02 -1.51135638e-01\\n-1.39598727e-01 2.64438450e-01 -7.25273192e-02 1.57592744e-01\\n-3.64943355e-01 -2.42020994e-01 -2.20878467e-01 1.08098248e-02\\n-2.63684630e-01 8.44867714e-03 3.02194972e-02 -1.32325694e-01\\n2.21328184e-01 4.78991941e-02 -2.31505305e-01 2.59641618e-01\\n-7.82069489e-02 1.45271346e-02 9.61283073e-02 3.04035127e-01\\n-1.18358001e-01 2.67371118e-01 -1.67370252e-02 1.42752416e-02\\n5.66132247e-01 9.33041722e-02 7.60053247e-02 -5.61900400e-02\\n3.97335827e-01 -1.38681307e-01 9.38635841e-02 1.88586682e-01\\n-5.47605872e-01 2.37958938e-01 -1.33755699e-01 -9.03653577e-02\\n1.04015723e-01 -1.54397534e-02 2.73853391e-01 -2.45076358e-01\\n-5.24954917e-03 -1.26831234e-01 -3.56160939e-01 -3.11813205e-01\\n-1.58239558e-01 1.67962350e-02 4.70927179e-01 -4.62002218e-01\\n-1.79054558e-01 3.42160493e-01 -4.06109035e-01 -5.07237352e-02\\n2.00700894e-01 1.98570341e-01 1.35579780e-01 5.45782000e-02\\n-3.11292857e-01 -4.37252373e-01 5.60363345e-02 -3.59499454e-01\\n-3.59844267e-01 4.84139509e-02 -2.54474133e-01 2.97530681e-01\\n1.29817173e-01 5.56956232e-02 -1.75994784e-01 1.19772732e-01\\n-1.82454899e-01 -1.63502708e-01 1.66017056e-01 9.12023559e-02\\n2.33028099e-01 -2.07305537e-04 -3.27303827e-01 3.47200155e-01\\n-2.16579825e-01 5.40561795e-01 1.28396228e-01 -9.23711836e-01\\n4.39514369e-01 2.39880487e-01 -8.72563049e-02 -3.95572186e-01\\n5.28012633e-01 -2.36039132e-01 6.11040322e-03 1.49542898e-01\\n-3.11635137e-01 -3.51612061e-01 2.95361549e-01 -9.72519815e-02\\n-3.02343488e-01 4.42996919e-01 6.24808334e-02 5.79570569e-02\\n1.32670969e-01 -1.85301438e-01 -1.39385387e-01 3.32112759e-02\\n2.88467091e-02 -2.50473887e-01 -4.25768584e-01 5.15406206e-02\\n-1.11733839e-01 -4.64803636e-01 -3.68338004e-02 -3.38356733e-01\\n-2.76383817e-01 -3.71631950e-01 -1.60122886e-01 4.16003644e-01\\n2.71352887e-01 1.64722472e-01 -1.19958082e-02 8.62305332e-03\\n-1.26696408e-01 -5.61281621e-01 1.05358684e-03 1.58699274e-01\\n4.98374522e-01 1.85555845e-01 1.37598604e-01 4.00808603e-02\\n8.80823359e-02 6.30084395e-01 -8.41415673e-02 -1.70300141e-01\\n1.68344639e-02 1.60772681e-01 3.74805667e-02 -1.80662543e-01\\n9.05907899e-02 3.68793428e-01 -1.82320610e-01 7.03947544e-02\\n-3.65675911e-02 -5.43992668e-02 3.05132896e-01 6.49728477e-02\\n-3.68243754e-01 -2.58017033e-01 -1.24566980e-01 7.92000070e-02\\n-5.91980815e-01 -1.38440982e-01 6.71019852e-01 9.19051319e-02\\n1.09320365e-01 4.77070473e-02 1.57038569e-01 -9.88913029e-02\\n-8.97527710e-02 -1.39424846e-01 2.49182880e-01 1.48275048e-01\\n6.21557832e-02 1.30021811e-01 -6.66223094e-02 -6.58248842e-01\\n-3.67480326e+00 -2.29925990e-01 1.48332387e-01 -3.07796061e-01\\n1.49848357e-01 -1.55036569e-01 1.09026376e-02 -9.40375701e-02\\n-1.93540439e-01 -1.36013729e-02 -1.58369407e-01 -1.33279152e-02\\n1.69032544e-01 1.64100274e-01 7.87530765e-02 2.78886646e-01\\n1.95263594e-01 -8.62191916e-02 -1.91642135e-01 3.37890923e-01\\n-1.97389334e-01 -4.34735656e-01 3.38154197e-01 -5.47892880e-04\\n3.08338851e-01 1.18616156e-01 -2.40605205e-01 -3.42522562e-02\\n-1.34146795e-01 -1.78933680e-01 3.90813611e-02 -1.03651412e-01\\n-1.09375186e-01 2.75964707e-01 2.41375700e-01 -1.20446779e-01\\n2.53881067e-01 -4.28811640e-01 -9.00486261e-02 -3.90702218e-01\\n1.08340807e-01 -6.85738385e-01 -8.23402107e-02 -2.55763650e-01\\n6.68185115e-01 -2.90078878e-01 9.19390656e-03 1.43376747e-02\\n2.29970768e-01 1.78290725e-01 -1.57695822e-02 -2.45004147e-02\\n-1.66011795e-01 -2.95519501e-01 -8.72104988e-02 -1.95148528e-01\\n5.03344059e-01 6.17993414e-01 -2.30630606e-01 -1.67314500e-01\\n4.95820493e-02 -2.17338920e-01 -5.18517375e-01 -3.22742075e-01\\n-1.63678885e-01 -2.29304641e-01 -6.06425166e-01 -3.15599173e-01\\n-1.38748556e-01 -1.04703188e-01 -1.88564092e-01 5.85413098e-01\\n-2.41186112e-01 -3.89125556e-01 5.27560152e-02 -3.28469068e-01\\n1.97466105e-01 -9.14533660e-02 7.00900843e-03 -1.46995991e-01\\n-2.92783588e-01 -3.89106423e-01 1.29827829e-02 -1.70806572e-02\\n-1.79119691e-01 -3.99387568e-01 -1.05220536e-02 -2.73325980e-01\\n-2.57143617e-01 -3.91739696e-01 4.70210642e-01 9.39262956e-02\\n3.25395674e-01 8.23065192e-02 4.80847508e-01 4.50396203e-02\\n2.98660010e-01 -1.77257329e-01 -7.04686251e-03 -4.97215420e-01\\n1.87265590e-01 -2.57863533e-02 5.11380792e-01 -2.63171762e-01\\n5.67363687e-02 1.22685075e-01 -2.55335897e-01 -4.13114391e-02\\n3.17553639e-01 2.52914894e-02 -1.53527400e-02 -1.22701488e-01\\n3.02402765e-01 -2.04782948e-01 -3.00792664e-01 6.33167624e-02\\n1.83470786e-01 4.42046970e-01 -3.44368480e-02 -4.88886029e-01\\n-2.26990566e-01 4.50808197e-01 -1.02485582e-01 -1.01845235e-01\\n-2.55794168e-01 1.79100290e-01 -1.86688736e-01 1.72387838e-01\\n-1.54618705e-02 -8.44695196e-02 -2.99323857e-01 -2.42612109e-01\\n-1.02214143e-01 2.27265224e-01 1.14673987e-01 1.11041209e-02\\n1.65615082e-02 -3.84036839e-01 -1.07313462e-01 1.98038563e-01\\n2.40716875e-01 3.09013933e-01 1.41834840e-01 -1.25459120e-01\\n-1.72623277e-01 4.77681458e-01 -2.96323925e-01 4.95484993e-02\\n-2.49966741e-01 8.00705105e-02 -4.89998788e-01 -3.02763820e-01\\n-2.52651334e-01 -3.22511077e-01 1.19988434e-01 1.48235321e-01\\n1.22521393e-01 -5.52958660e-02 2.80120783e-03 -4.96964097e-01\\n2.61990607e-01 3.57899070e-02 9.99776125e-02 1.21592194e-01\\n1.25403032e-01 4.58060145e-01 -2.42090970e-02 -1.63799182e-01\\n-1.56555012e-01 3.51100750e-02 -1.36328474e-01 -5.96082173e-02\\n-2.92110676e-03 -4.60033536e-01 -7.96466097e-02 4.47527617e-01\\n1.96670100e-01 -3.13334018e-01 -1.95950016e-01 2.48417735e-01\\n4.38527726e-02 -2.45991260e-01 -8.49739239e-02 -1.98643040e-02\\n3.21872294e-01 6.22354522e-02 3.93752158e-01 -4.38779294e-01\\n-2.90494561e-02 3.23878191e-02 -2.10317880e-01 5.09623110e-01\\n1.02035470e-01 -4.49573547e-02 -7.26781785e-02 -4.13856581e-02\\n4.06417221e-01 3.84614766e-02 -8.89194608e-02 -1.17779650e-01\\n1.46644920e-01 -1.80050105e-01 -5.72130322e-01 1.09475195e-01\\n-5.03441878e-02 -1.59073472e-01 5.63799357e-03 1.26731731e-02\\n1.30923003e-01 1.31024033e-01 -4.96383607e-01 -1.85334429e-01\\n-3.71792674e-01 -1.69018418e-01 6.25220537e-02 -4.35256511e-01\\n-4.08742996e-03 6.44582286e-02 -4.65459764e-01 2.07544744e-01\\n-2.92049229e-01 2.06500408e-03 1.54819628e-02 9.77155566e-02\\n-3.23667169e-01 -3.83040942e-02 7.15091974e-02 2.07367122e-01\\n-1.71860948e-01 -2.81139731e-01 1.17594592e-01 -1.04733026e+00\\n1.43595576e-01 7.35743195e-02 -2.35966176e-01 9.56095904e-02\\n-3.63203548e-02 -5.64536393e-01 1.44158825e-01 -4.01565969e-01\\n-9.66879949e-02 -4.58510891e-02 -1.74676687e-01 -4.60682869e-01\\n1.10469975e-01 -9.85078141e-03 -4.54157263e-01 2.89801389e-01\\n-3.76395017e-01 3.04196566e-01 3.39493644e-03 1.34901360e-01\\n1.04267895e-01 -3.27947676e-01 -2.28601657e-02 -5.45770943e-01\\n-5.66141427e-01 -1.06665514e-01 -3.73360246e-01 -3.14507902e-01\\n-3.01770307e-02 -4.02879477e-01 -1.78008631e-01 1.24009684e-01\\n2.70601392e-01 1.30757272e-01 -3.57931517e-02 -3.56963456e-01\\n5.80498762e-02 -5.44255614e-01 -2.08090488e-02 3.85423787e-02\\n-7.53510445e-02 -1.18216053e-01 3.78738582e-01 1.00925686e-02\\n1.26456633e-01 -3.71195346e-01 4.65350181e-01 -3.51531327e-01\\n-1.29802987e-01 -8.65236297e-02 1.05208512e-02 3.73173766e-02\\n2.73024619e-01 -4.92679209e-01 6.35693744e-02 2.66594321e-01\\n1.39498234e-01 1.15148783e-01 2.53251880e-01 -4.40950543e-02\\n-1.08120166e-01 1.65892795e-01 -2.95463413e-01 8.96564052e-02\\n7.90868640e-01 -8.33253637e-02 2.04687297e-01 1.40607312e-01\\n7.50428066e-02 1.82200834e-01 5.23168862e-01 -3.07234786e-02\\n-1.83045864e-01 1.91279069e-01 5.46168089e-02 -3.98158908e-01\\n-3.20634730e-02 -3.54945101e-02 -3.36782455e-01 -3.32100272e-01\\n6.57620490e-01 4.60989863e-01 -3.84891927e-01 -2.38872096e-01\\n-1.65248394e-01 -1.45280868e-01 1.63825035e-01 -1.28773123e-01\\n-2.25439910e-02 -1.30001456e-01 4.39656615e-01 -3.36288624e-02\\n2.60023266e-01 4.40848976e-01 -1.83954418e-01 -4.37244833e-01\\n1.25938281e-03 1.51654854e-01 6.66578263e-02 4.28770423e-01\\n-2.65140593e-01 1.96871310e-01 3.48326080e-02 2.07846329e-01\\n-1.57927632e-01 1.23226017e-01 2.02100482e-02 1.68790236e-01\\n1.71384498e-01 6.45633787e-02 5.08594394e-01 4.54661310e-01\\n3.46415043e-01 4.41684544e-01 3.40123832e-01 3.80693451e-02\\n4.54511315e-01 4.60954458e-01 3.58160764e-01 1.61977410e-01\\n-5.47797419e-02 6.34168461e-02 1.00292727e-01 -1.00612789e-01\\n4.17820632e-01 3.09857547e-01 1.58717155e-01 8.05959582e-01\\n2.91433096e-01 3.02615970e-01 5.96797407e-01 -5.58560312e-01\\n-3.27021092e-01 4.34430651e-02 4.73246276e-01 -3.39711905e-01\\n-1.45276070e-01 6.28827959e-02 -1.93137437e-01 1.84252515e-01\\n-4.25452471e-01 -2.51263678e-01 -1.25781044e-01 2.42539048e-01\\n-7.14948550e-02 -1.21070378e-01 -2.86172926e-01 6.34597242e-02\\n-2.99935732e-02 5.52443862e-02 -4.06489462e-01 -2.06967909e-02\\n-1.58962607e-01 -9.27588865e-02 -1.23826332e-01 -1.63735658e-01\\n-8.75240415e-02 -4.91472453e-01 -9.39831436e-02 1.92536612e-03\\n1.52665004e-01 -1.22879528e-01 -2.00113617e-02 -9.03527215e-02\\n2.61674345e-01 2.38915756e-01 5.27828395e-01 2.15206698e-01\\n6.81920946e-02 -3.24095726e-01 -2.37543955e-01 1.62505552e-01\\n9.98783782e-02 1.04766212e-01 5.57429381e-02 2.73743749e-01\\n-3.04069191e-01 -8.33827704e-02 9.51043740e-02 3.46847326e-01\\n-3.91505688e-01 -7.37886727e-02 -7.90476799e-02 2.53250539e-01\\n1.26460254e-01 1.29253283e-01 -2.72975028e-01 3.08794305e-02\\n-2.56497532e-01 -3.58349681e-01 2.75747746e-01 -1.55192122e-01\\n1.39598660e-02 3.67554724e-02 1.18441224e-01 1.48936793e-01\\n-2.30613381e-01 -4.28503565e-03 -5.72739840e-02 2.51130074e-01\\n1.20921925e-01 2.41342485e-01 -1.25145823e-01 -2.94571847e-01\\n-2.95653969e-01 2.37815455e-01 -1.36709930e-02 1.33002535e-01\\n-1.16710896e-02 3.60873789e-01 -4.83247526e-02 8.16527009e-02\\n4.85785723e-01 -3.00786458e-02 -8.01000893e-02 -1.46404862e-01\\n-3.41889620e-01 -3.29969913e-01 -3.58666219e-02 -9.21188518e-02\\n1.63640395e-01 -3.08218509e-01 3.42501812e-02 -4.25913446e-02\\n-1.09584853e-01 -2.91119158e-01 9.99695882e-02 -2.12022245e-01]]',\n", + " 'Beekeeper is a fast growing SaaS company disrupting the way 2 billion people working “out in the field” communicate within their companies. Are you eager to shape the future of traditional industries like hospitality, retail, manufacturing or transportation using latest mobile technology? We are looking for the most talented and passionate individuals that love to work in demanding and international environments. We are a lean development team that moves fast. We push to production multiple times a day and continuously iterate on our products. This is an exciting time to join if you truly want to be involved in developing the core product at a tech driven company. As a Software Engineer you have the opportunity to work on all of our software stack and learn about state-of-the art web and mobile development. Technologies that you will work on are ElasticSearch, Realm.io, RabbitMQ, Backbone.js, Docker, Saltstack, Amazon Web Services, MySQL and interfacing them with different programming languages like Python, Java, Objective-C and Javascript. Your responsibilities Translate requirements, designs and wireframes into inspiring user experiencesBuild and maintain high-performance, reusable and reliable codeWork closely with other passionate software engineers to develop and ship new features What we look for BSc or MSc degree in Computer Science or related technical field or equivalent practical experienceExperience using RESTful APIs and handling JSON dataYou care about code quality and continuous refactoringProficiency in English as we speak mainly English at work Bonus Points You can show us programming projects that you work on in your free timeWe love an entrepreneurial mindsetWhat we offer youCompetitive salaryDynamic work environmentWeekly Bee-BreakfastFree Coffee, Fresh Fruits and a lot of Snacks Interested? We are looking for passionate, self-driven individuals. Thus we are interested in links/information to any projects you have done inside/outside your day job. Applications over videojobs.ch Job Type: Full-time',\n", + " '[\"Reliability\", \"Communications\", \"Hospitality\"]',\n", + " '[\"MySQL\", \"KM Programming Language\", \"Programming (Music)\", \"Computer Science\", \"High Performance Computing\", \"Backbone.js\", \"Beekeeping\", \"Industrialization\", \"Objective-C (Programming Language)\", \"Python (Programming Language)\", \"Maintainability\", \"Translations\", \"Iterators\", \"Lean Product Development\", \"Software Engineering\", \"Mobility\", \"RabbitMQ\", \"Docker (Software)\", \"Web Services\", \"Wireframing\", \"Mobile Application Development\", \"JavaScript (Programming Language)\", \"Core Product\", \"Amazon Web Services\", \"RESTful API\", \"Java (Programming Language)\", \"JSON\", \"Elasticsearch\"]',\n", + " \"['English', 'Greek', 'Hungarian', 'Divehi']\"],\n", + " ['84',\n", + " 'performance and capacity software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.30073804e-01 1.82333335e-01 3.54817897e-01 -5.20979427e-02\\n5.10860205e-01 -1.22414924e-01 2.82488745e-02 2.72785813e-01\\n-1.15607768e-01 -3.26799512e-01 -1.11309655e-01 -2.12444499e-01\\n-8.61595422e-02 -1.48624741e-02 4.88055050e-02 3.60669583e-01\\n2.52864659e-01 8.21797773e-02 -1.60429567e-01 2.47678310e-01\\n1.60236150e-01 8.47721845e-02 -3.28864232e-02 5.70113063e-01\\n3.05923551e-01 -2.21794099e-02 -4.29356657e-02 -1.01206535e-02\\n-2.90633291e-01 -2.93833345e-01 2.91792929e-01 1.42507821e-01\\n-1.79832801e-02 -2.77961284e-01 5.96094914e-02 8.56781006e-03\\n-1.92503572e-01 2.94639599e-02 -1.21581797e-02 2.57650942e-01\\n-4.94087309e-01 -3.40133756e-01 2.19089016e-01 9.27771479e-02\\n-1.98074311e-01 -3.33119124e-01 -4.20717038e-02 1.25107333e-01\\n9.90826711e-02 -1.52135466e-03 -5.68861842e-01 4.33658928e-01\\n-3.42078775e-01 -1.59071058e-01 3.34775239e-01 5.16615987e-01\\n1.23486966e-01 -6.02040648e-01 -2.54358351e-01 -1.72925562e-01\\n4.27933671e-02 -1.80797324e-01 -1.94736551e-02 -2.13368505e-01\\n3.85865420e-01 -4.73097712e-02 4.77422681e-03 4.85355318e-01\\n-6.55387104e-01 -3.95587049e-02 -2.18750030e-01 5.58237499e-03\\n-4.11192596e-01 -4.77760695e-02 -2.71876872e-01 -1.38512224e-01\\n-1.32361978e-01 4.09661174e-01 3.28550152e-02 2.40756124e-02\\n-9.90290940e-02 2.64150530e-01 -2.01560453e-01 1.04968637e-01\\n3.12396526e-01 1.75488651e-01 2.02447832e-01 3.45405906e-01\\n-4.69548881e-01 3.23275238e-01 1.70898482e-01 -2.66092062e-01\\n1.76185027e-01 1.11972116e-01 4.67801899e-01 1.37578890e-01\\n-1.36103958e-03 2.02677161e-01 -1.51316524e-01 2.16347933e-01\\n2.77863204e-01 -2.29205355e-01 7.41887931e-03 -7.47556835e-02\\n-1.54904678e-01 -7.94864595e-02 3.69605832e-02 3.00210983e-01\\n-2.28934377e-01 4.66917127e-01 2.48645455e-01 -1.53634951e-01\\n4.84108105e-02 -6.18979216e-01 -1.97858319e-01 -3.90853137e-02\\n-6.34250864e-02 1.03680804e-01 3.55034769e-01 1.38934612e-01\\n2.30153799e-01 1.33356348e-01 2.14993834e-01 9.48184609e-01\\n-9.60684344e-02 1.34332046e-01 -1.91521540e-01 4.42718744e-01\\n2.27070659e-01 -9.60380360e-02 1.29597291e-01 2.91562080e-01\\n9.07142237e-02 -6.79604486e-02 -1.30698845e-01 3.21554065e-01\\n-1.96740106e-01 -1.62336931e-01 -3.00839394e-01 4.67570126e-02\\n-2.30881751e-01 -3.78175676e-01 4.21992153e-01 2.14933470e-01\\n2.24276319e-01 6.22885115e-02 -1.29535735e-01 -1.47376478e-01\\n-7.71731436e-02 3.06255430e-01 -3.10579711e-03 2.24452630e-01\\n-4.21280921e-01 -1.68350056e-01 -2.57366657e-01 3.25396627e-01\\n-4.14102823e-02 -5.56321517e-02 -2.05037206e-01 -2.53207367e-02\\n4.03468192e-01 1.62803173e-01 -4.16183978e-01 1.73810244e-01\\n1.79960001e-02 -1.98173061e-01 -1.10953875e-01 3.22205514e-01\\n6.86136931e-02 4.19434272e-02 -2.71140020e-02 -2.32080355e-01\\n4.39068943e-01 1.63994372e-01 2.55078375e-01 -9.27375108e-02\\n3.19547594e-01 -2.37060875e-01 1.67243704e-01 1.43001735e-01\\n-7.64194608e-01 3.49804223e-01 -1.00723602e-01 -4.32931818e-02\\n6.64263666e-02 1.67375371e-01 4.36342418e-01 -2.97968328e-01\\n-3.43194455e-02 -1.25300348e-01 -4.11930978e-01 -4.39560980e-01\\n-3.20832789e-01 -6.17662631e-02 4.63308752e-01 -4.23120141e-01\\n-1.11471586e-01 8.72113630e-02 -4.06286538e-01 -6.50587380e-02\\n2.78680831e-01 1.50325269e-01 1.39742553e-01 1.23357274e-01\\n-9.99730602e-02 -6.45759463e-01 4.93513756e-02 -5.53170204e-01\\n-6.51424468e-01 2.03363642e-01 -3.37543935e-01 3.24965686e-01\\n4.90081795e-02 -4.96285930e-02 -7.64552057e-02 1.34767964e-01\\n-2.90950358e-01 -3.03710494e-02 2.14166567e-01 1.92777067e-01\\n3.22863340e-01 -1.06282458e-01 -4.95130479e-01 4.48232293e-01\\n-1.87311664e-01 6.10837579e-01 3.28270197e-01 -8.22558105e-01\\n5.51853120e-01 2.49696285e-01 2.08081752e-02 -2.43036106e-01\\n4.93680358e-01 -3.27291816e-01 1.03242129e-01 1.91898674e-01\\n-3.89319420e-01 -1.60931885e-01 2.79397696e-01 -1.38655543e-01\\n-1.91730037e-01 6.94694102e-01 3.00835699e-01 -9.12323967e-02\\n2.87442118e-01 -3.39344501e-01 -2.17560291e-01 2.39655245e-02\\n-6.08682372e-02 -2.26159245e-01 -3.42510402e-01 1.13443382e-01\\n-7.19419569e-02 -6.28250003e-01 -2.00320467e-01 -2.79967934e-01\\n-1.76502600e-01 -2.77691245e-01 -2.55579531e-01 4.62377936e-01\\n1.31371945e-01 8.09600353e-02 5.54099120e-02 4.61477004e-02\\n1.03529030e-02 -5.77242613e-01 -7.95560032e-02 1.20993666e-01\\n4.62944359e-01 1.34782940e-01 1.58111639e-02 -9.27790552e-02\\n-1.66906133e-01 4.92247909e-01 -4.08307552e-01 -2.80381382e-01\\n1.99652493e-01 2.28363305e-01 -2.96534915e-02 -2.97715645e-02\\n-2.62488071e-02 3.58998865e-01 -2.31767744e-01 9.31122452e-02\\n2.07621139e-02 -5.43867648e-02 3.57003689e-01 1.26718106e-02\\n-3.05724502e-01 -2.60966629e-01 -1.35750517e-01 2.38892213e-01\\n-5.42422473e-01 -2.27652848e-01 5.09047568e-01 3.12668264e-01\\n2.67595172e-01 2.59124547e-01 3.16894531e-01 -1.76190242e-01\\n-2.10237309e-01 -3.26757759e-01 1.36874944e-01 1.84106454e-01\\n3.07802893e-02 5.31448685e-02 -2.85138667e-01 -5.79706550e-01\\n-3.42623782e+00 -2.57639974e-01 1.77104592e-01 -2.89912045e-01\\n2.05162063e-01 -1.25140816e-01 4.01510037e-02 -4.77603301e-02\\n-2.84156770e-01 1.65888574e-02 -2.24702448e-01 -2.28117853e-01\\n1.78591125e-02 2.89764702e-01 1.17374370e-02 1.91709936e-01\\n5.03975041e-02 -2.23670229e-01 -2.35336404e-02 1.84431195e-01\\n-9.19547603e-02 -6.45670235e-01 1.31950900e-01 -1.88954771e-02\\n1.60361871e-01 1.86640397e-01 -3.48967224e-01 -9.66397766e-03\\n-1.56231850e-01 -2.50950754e-01 7.61029720e-02 -2.56303400e-01\\n-3.16909701e-02 2.40510955e-01 1.55150726e-01 -6.91247061e-02\\n-3.09370132e-03 -2.61119366e-01 -3.30378450e-02 -4.15529728e-01\\n1.77946866e-01 -4.46394265e-01 1.27670184e-01 -1.05741262e-01\\n7.21635878e-01 -3.20548564e-01 6.46116361e-02 1.13885358e-01\\n1.94188505e-01 1.89525098e-01 -8.98239613e-02 -4.34088521e-02\\n-2.05631226e-01 -3.64561498e-01 -1.50392577e-01 -2.38582268e-01\\n4.13422674e-01 4.58273172e-01 -1.70710593e-01 2.71493495e-02\\n8.72483850e-02 -3.68835688e-01 -2.82347411e-01 -4.49311376e-01\\n-3.16838205e-01 -8.17013755e-02 -6.21190786e-01 -4.69199389e-01\\n-1.47983313e-01 -4.81707752e-02 -2.40671426e-01 6.09202802e-01\\n-3.61060023e-01 -5.25859177e-01 -2.72691343e-02 -5.95469892e-01\\n6.58769161e-02 -3.23380083e-01 2.50169411e-02 -1.55658454e-01\\n-3.31984013e-01 -5.08418679e-01 1.17903545e-01 1.14932163e-02\\n-1.62465319e-01 -2.63561979e-02 3.66140902e-02 -2.13755623e-01\\n-3.63111049e-01 -3.36871862e-01 3.86156857e-01 -3.23000886e-02\\n3.42006117e-01 1.64944157e-01 2.64157563e-01 1.60016283e-01\\n3.51128548e-01 -1.43643394e-01 5.75878210e-02 -2.63508350e-01\\n9.05488357e-02 4.52248529e-02 6.50635481e-01 -3.15508306e-01\\n-1.96186788e-02 2.82834440e-01 -3.30466211e-01 -9.64236930e-02\\n4.18354869e-01 1.17020309e-02 -6.00626357e-02 -1.70579657e-01\\n3.74546766e-01 -5.14261365e-01 -2.39538118e-01 2.31087044e-01\\n2.99923774e-03 6.34977996e-01 6.66428953e-02 -3.83366704e-01\\n-2.90473938e-01 4.16613221e-01 -1.16571605e-01 -2.90686876e-01\\n-2.56845295e-01 1.41445801e-01 -1.74778581e-01 2.28649050e-01\\n1.25533268e-01 -2.03080118e-01 -3.58451247e-01 -5.99483326e-02\\n-2.37415009e-03 2.32676327e-01 2.51253366e-01 -2.57089012e-03\\n-1.98258199e-02 -1.62917003e-01 -1.18764773e-01 3.24689187e-02\\n1.94024220e-01 3.49367082e-01 1.86742589e-01 -2.12615997e-01\\n-4.00626361e-02 1.59869075e-01 -1.84370518e-01 1.65367633e-01\\n-1.62551686e-01 -5.09238569e-03 -4.79976833e-01 -3.55994195e-01\\n-1.11810304e-01 -3.18132609e-01 4.55938242e-02 3.09165448e-01\\n2.29074731e-01 -6.85298070e-03 -9.52612534e-02 -4.31866795e-01\\n4.39125836e-01 8.97091553e-02 3.31817776e-01 1.60687953e-01\\n5.46569936e-02 4.67481583e-01 -1.24708256e-02 -5.63992411e-02\\n-4.36708145e-02 -7.14600459e-02 -3.34591389e-01 -1.49619147e-01\\n1.38863757e-01 -3.11357796e-01 -1.15039617e-01 4.64470237e-01\\n1.22343995e-01 -1.66878000e-01 -1.22501962e-01 3.52641940e-01\\n3.69313136e-02 -1.39942616e-01 -2.11236015e-01 1.46495908e-01\\n2.09854782e-01 4.26724404e-02 1.90415129e-01 -4.06624377e-01\\n-7.45907519e-03 -5.45794098e-03 -1.45663843e-01 4.58337039e-01\\n9.51535776e-02 7.91616291e-02 -2.29619250e-01 -3.08905721e-01\\n4.10526097e-01 -2.26803422e-01 -1.50345191e-01 -6.14170395e-02\\n7.13979639e-03 -1.65313542e-01 -5.12980580e-01 -8.50594230e-03\\n-2.57864222e-02 -2.16652706e-01 1.82691664e-01 2.18039192e-02\\n1.32936582e-01 7.31126219e-03 -4.88532007e-01 -3.52014482e-01\\n-3.83595258e-01 -7.46418685e-02 1.78375453e-01 -3.41993362e-01\\n-1.23027631e-03 -1.00328781e-01 -7.07307339e-01 2.75399357e-01\\n-2.53393620e-01 3.64375673e-02 6.64788336e-02 2.21344620e-01\\n-3.87919247e-01 -5.72460331e-02 2.36454979e-01 1.10961460e-02\\n-3.45647871e-01 -1.05850652e-01 5.25349937e-02 -8.86347532e-01\\n1.55046687e-01 -1.84995215e-02 -8.42969492e-02 -5.45322634e-02\\n-1.12192012e-01 -5.35455704e-01 7.25509077e-02 -3.15937251e-01\\n-8.84019658e-02 5.44081107e-02 -1.66798398e-01 -4.16263640e-01\\n1.10183090e-01 -1.43082306e-01 -2.10641041e-01 4.75535512e-01\\n-3.96454722e-01 2.85692662e-01 1.84612498e-02 6.07071631e-02\\n7.44938180e-02 -3.49799603e-01 1.91862211e-01 -2.67542511e-01\\n-4.95829493e-01 -1.78072289e-01 -3.67329121e-01 -2.96086609e-01\\n8.14664289e-02 -3.12245935e-01 -1.74484134e-01 7.75493979e-02\\n2.32949644e-01 8.38425308e-02 4.21654545e-02 -2.32604727e-01\\n8.63509849e-02 -3.43068957e-01 1.83110610e-01 -2.44171441e-01\\n5.30973636e-02 2.89008021e-02 1.71390250e-01 -6.64871410e-02\\n3.74223739e-02 -2.35376567e-01 5.74966133e-01 -1.53920859e-01\\n-3.49559069e-01 -1.04342707e-01 7.04299510e-02 1.24070220e-01\\n2.55497396e-01 -4.30946201e-01 4.05236445e-02 1.78632215e-01\\n1.33616030e-01 1.31333634e-01 2.80095488e-01 -5.69849387e-02\\n-8.63757730e-02 2.42840976e-01 -5.11824846e-01 1.43571794e-01\\n7.96909571e-01 1.77939326e-01 7.18609989e-02 6.05499819e-02\\n1.81018770e-01 4.02316600e-01 6.38038993e-01 8.03692117e-02\\n-8.94313008e-02 3.78729910e-01 2.54143942e-02 -4.94806111e-01\\n-1.53936997e-01 -1.24556318e-01 -1.65885419e-01 -3.10592711e-01\\n5.07842422e-01 4.50095177e-01 -4.56072479e-01 -2.62396842e-01\\n-4.25777882e-02 -3.79710458e-02 1.31090984e-01 -4.72590178e-02\\n-3.33616696e-02 -2.39915505e-01 5.41548729e-01 1.03328619e-02\\n2.61459380e-01 5.08723617e-01 -2.03432173e-01 -3.36867899e-01\\n-1.22156158e-01 1.53257295e-01 1.90806285e-01 3.22494507e-01\\n-1.88110047e-03 2.31287509e-01 -6.89021647e-02 1.40960693e-01\\n-4.16624993e-02 3.67468186e-02 9.78776366e-02 -2.16810256e-02\\n1.78294957e-01 1.34170339e-01 2.24142402e-01 3.53844345e-01\\n2.83491403e-01 5.09663463e-01 2.05206499e-01 1.93228442e-02\\n4.50385094e-01 6.47124827e-01 3.66184801e-01 2.06926152e-01\\n1.13189239e-02 8.03468227e-02 -1.44448383e-02 -6.38912618e-02\\n3.67286593e-01 3.50150526e-01 1.92237616e-01 8.29155922e-01\\n3.20328772e-01 1.46881089e-01 6.99906826e-01 -5.96941710e-01\\n-4.20468062e-01 8.05909708e-02 4.10809785e-01 -2.56357491e-01\\n-1.08847864e-01 1.64834797e-01 -3.91001582e-01 2.53619045e-01\\n-4.20835257e-01 -1.14055730e-01 -5.26589155e-02 -5.44624403e-02\\n8.05206224e-02 -3.90173309e-02 -2.50499636e-01 5.13612516e-02\\n-2.59468019e-01 -1.98543802e-01 -2.86656767e-01 -8.94601867e-02\\n-3.80045712e-01 -1.51607081e-01 -6.88789226e-03 -1.48545370e-01\\n-6.99518668e-03 -4.33371812e-01 -2.12975621e-01 -1.95745975e-02\\n3.66152406e-01 -1.46261647e-01 -6.44944459e-02 -1.86123356e-01\\n-2.24388354e-02 3.83276045e-01 6.65033698e-01 -4.60890755e-02\\n1.84980780e-01 -2.06447378e-01 -2.17129931e-01 7.94143975e-02\\n6.88401535e-02 3.72105353e-02 4.87285219e-02 5.31002820e-01\\n-3.98630857e-01 -1.53744547e-03 1.11140005e-01 4.10521388e-01\\n-4.35798645e-01 -7.39716738e-02 -1.11880824e-01 3.03153604e-01\\n1.25727981e-01 1.97139785e-01 -3.18615019e-01 2.19469562e-01\\n-3.36157531e-01 -5.87719262e-01 3.97367001e-01 -1.42112792e-01\\n2.18525846e-02 1.52800441e-01 2.63327748e-01 1.58383697e-01\\n-2.67522991e-01 -7.42008686e-02 5.45852892e-02 3.68455827e-01\\n1.27233967e-01 3.65198791e-01 -3.58217061e-01 -5.32075502e-02\\n-1.87639788e-01 2.50360608e-01 -1.01450682e-02 1.93004787e-01\\n-1.92182183e-01 3.18927675e-01 1.16276972e-01 1.96226478e-01\\n1.61264166e-01 -7.74201006e-03 -1.50772929e-01 -3.40490013e-01\\n-2.49975815e-01 -1.55658543e-01 1.83007151e-01 -1.55558446e-02\\n1.60224006e-01 -4.80183542e-01 -4.78968434e-02 -8.43011364e-02\\n-1.86920613e-01 -4.58354652e-01 -5.21401502e-02 1.21805631e-02]]',\n", + " 'About our client Our client is one of the international leading providers of secure communication platforms and solutions for the next generation of mobile communication. Your responsibilities Regular execution of performance tests Automation of performance testing environments Analysis and presentation of test results, suggestions for improvements Bottleneck analysis, database queries optimization, etc. Full cooperation with the development team to improve the overall product performance Dimensioning and capacity planning for the solution Your profile Master university degree in computer science or equivalent work experience At least 3 years of experience with performance testing Excellent analytic thinking and preciseness Advanced Java knowledge with code profiling, JVM monitoring and tuning Working experience with MySQL/Percona/MariaDB and good knowledge of their internals (e.g., InnoDB engine, Galera replication, etc.) Working knowledge of Linux OS and its monitoring tools Experience with infrastructure deployment automation (e.g. monitoring and deployment using Puppet/Chef/Ansible and Graphite) Knowledge of statistics Fluent in English Your chance Are you interested? Then apply now! Ort: Zürich Spezialisierung: JAVA Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1297',\n", + " '[\"Presentations\", \"Communications\", \"Infrastructure\", \"Cooperation\"]',\n", + " '[\"Galera\", \"MySQL\", \"Automation\", \"Tooling\", \"Puppet (Configuration Management Tool)\", \"Capacity Planning\", \"Computer Science\", \"Statistics\", \"Database Queries\", \"Linux\", \"E (Programming Language)\", \"Test Automation\", \"MariaDB\", \"Executable\", \"Chef (Configuration Management Tool)\", \"Analytical Thinking\", \"InnoDB\", \"Performance Testing\", \"Java Virtual Machine (JVM)\", \"Ansible\", \"Secure Network Communications\", \"Dimensioning\", \"Graphite (Software)\", \"Java (Programming Language)\", \"Bottleneck Analysis\", \"SQL (Programming Language)\", \"Profiling (Computer Programming)\", \"Query Optimization\"]',\n", + " \"['English', 'Burmese', 'Inuktitut']\"],\n", + " ['27',\n", + " 'software solution and integration engineer',\n", + " 'Zürich',\n", + " 'Banks & Building Societies',\n", + " '',\n", + " '[[-2.78290033e-01 3.80474567e-01 4.18100476e-01 -6.04825206e-02\\n5.65613270e-01 -2.92381905e-02 2.69318074e-02 1.69541329e-01\\n1.60666462e-03 -4.00838345e-01 -1.75689131e-01 -1.81932807e-01\\n-5.25751412e-02 5.48833981e-02 1.10879838e-01 3.50658119e-01\\n3.90594631e-01 3.64826508e-02 -6.64699376e-02 3.54679465e-01\\n-3.69811729e-02 -1.03528544e-01 2.81506702e-02 7.15992689e-01\\n3.11567724e-01 5.49854990e-03 -6.48555011e-02 1.21316714e-02\\n-1.40748933e-01 -2.46147186e-01 4.61530745e-01 -4.68358397e-03\\n-1.68578625e-01 -2.93609738e-01 9.49846208e-02 7.86572844e-02\\n-3.16059649e-01 8.44962150e-02 -1.85989708e-01 1.39380723e-01\\n-5.30766010e-01 -2.35792279e-01 5.09170890e-02 -3.51140499e-02\\n-2.82331079e-01 -3.52336735e-01 1.35625690e-01 -1.29055589e-01\\n9.19883326e-02 2.86212899e-02 -3.21316659e-01 3.07057410e-01\\n-2.76826710e-01 -2.49900967e-01 4.82129753e-01 6.19374871e-01\\n1.04787260e-01 -5.03370643e-01 -4.81561989e-01 -3.28055739e-01\\n1.79075062e-01 -6.12534359e-02 1.09849289e-01 -2.39912182e-01\\n3.45363736e-01 -4.44185920e-02 1.38730304e-02 3.54250073e-01\\n-7.55133510e-01 -3.01724598e-02 -3.71843755e-01 8.54871497e-02\\n-3.19211066e-01 -5.56439497e-02 -3.42552185e-01 -2.69644558e-01\\n1.49367750e-03 4.19769436e-01 -7.02717677e-02 8.81112069e-02\\n-2.43769020e-01 3.68939877e-01 -3.12516302e-01 2.59872973e-01\\n2.37345994e-01 1.35172874e-01 3.58147025e-01 2.82545388e-01\\n-4.86553729e-01 4.53596711e-01 3.52385342e-01 -3.51774216e-01\\n2.95350611e-01 1.02730647e-01 3.14439446e-01 2.26180866e-01\\n7.39036500e-02 2.37312406e-01 -4.65863124e-02 1.13784403e-01\\n1.31933823e-01 -2.83480510e-02 -1.84448421e-01 -8.03840086e-02\\n5.71150482e-02 -9.93360952e-02 6.86746836e-02 1.79600328e-01\\n-3.48143458e-01 3.43278944e-01 5.63810281e-02 -3.59516442e-01\\n-1.36905640e-01 -4.75866020e-01 -1.43285096e-01 -1.55603848e-02\\n-2.01456934e-01 1.05969459e-01 1.45454735e-01 2.47048989e-01\\n1.98739603e-01 4.89020348e-03 1.45164207e-01 7.53162742e-01\\n-4.41686735e-02 -2.25279834e-02 -2.12641761e-01 3.72642279e-01\\n1.74572319e-01 -2.20563382e-01 7.23030269e-02 2.98613012e-01\\n-1.47942305e-01 -7.66221732e-02 -3.34111959e-01 4.26924229e-01\\n-2.03543268e-02 -1.64448947e-01 -2.92663485e-01 1.80069119e-01\\n-1.85391083e-01 -4.97550339e-01 5.50058305e-01 -1.93767697e-02\\n1.04367927e-01 2.22941115e-03 1.86246634e-02 -1.66487647e-03\\n-2.36370206e-01 1.82802036e-01 1.11078471e-01 1.92598611e-01\\n-3.20871204e-01 -1.82042122e-01 -1.54250696e-01 2.83006907e-01\\n-1.45076126e-01 4.56356667e-02 -3.54309559e-01 -1.36101812e-01\\n3.05914223e-01 1.48408890e-01 -4.73381311e-01 2.98501670e-01\\n-4.77237813e-03 -1.50015399e-01 -1.62710249e-01 3.31876397e-01\\n-9.52931046e-02 1.77076310e-01 -3.30890045e-02 -7.87097663e-02\\n5.24412751e-01 1.13048837e-01 3.26106131e-01 -1.06342115e-01\\n2.88690031e-01 -9.25760940e-02 2.10036173e-01 5.82170673e-04\\n-6.24863029e-01 3.35382521e-01 -1.49408862e-01 -5.99714369e-03\\n6.19164295e-03 1.57975592e-03 3.71083766e-01 -3.01912010e-01\\n-5.95176071e-02 -2.03114972e-01 -3.96126568e-01 -4.04501438e-01\\n-1.58627957e-01 5.97790331e-02 2.89736271e-01 -4.25355911e-01\\n-3.89608787e-03 2.22457871e-01 -5.57277322e-01 -1.22796565e-01\\n3.10554385e-01 2.30464444e-01 1.09683633e-01 1.22660518e-01\\n-1.07196905e-01 -5.51794231e-01 1.22580916e-01 -5.07699370e-01\\n-3.51092368e-01 1.10389173e-01 -3.00593585e-01 7.65898675e-02\\n1.02330334e-01 -7.13258013e-02 -5.47414906e-02 -7.81858154e-03\\n-4.03110087e-01 -4.86916117e-02 1.54137462e-01 3.02839167e-02\\n1.65854573e-01 9.09411311e-02 -3.32659841e-01 5.78064620e-01\\n-2.72123098e-01 2.84008145e-01 1.20899737e-01 -1.04834008e+00\\n5.28024554e-01 3.50393653e-01 1.07001420e-02 -2.72172749e-01\\n4.48002756e-01 -3.76866162e-01 -7.85349160e-02 1.06823884e-01\\n-3.07857573e-01 -2.35623240e-01 1.83491528e-01 -1.68769255e-01\\n-3.28408480e-01 6.13187075e-01 9.90723222e-02 6.44440204e-02\\n2.90623575e-01 -1.98734492e-01 -2.05941439e-01 -5.13157025e-02\\n-2.34010398e-01 -9.30996016e-02 -5.88946700e-01 4.42759357e-02\\n-2.10373532e-02 -6.33819222e-01 -1.86507508e-01 -6.00575089e-01\\n-2.76475966e-01 -3.91505063e-01 -2.52267748e-01 1.27259359e-01\\n1.42289639e-01 1.24592841e-01 -1.18504643e-01 4.17614877e-02\\n-1.05947435e-01 -6.60643458e-01 -3.81189473e-02 1.34587973e-01\\n2.48273715e-01 3.22923601e-01 6.32420927e-02 -1.31662413e-01\\n-3.94602567e-02 5.00614464e-01 -3.44925404e-01 -3.01664174e-01\\n3.51342350e-01 1.04657061e-01 -6.96221143e-02 -1.07156016e-01\\n1.18274815e-01 3.30133617e-01 -3.02458346e-01 3.74127477e-02\\n3.99376303e-02 2.73105875e-02 3.52187157e-01 -1.31147169e-02\\n-2.88994551e-01 -2.18932688e-01 -5.85766211e-02 2.17075706e-01\\n-6.02190256e-01 -2.10669726e-01 6.01794422e-01 1.97579235e-01\\n-5.24823144e-02 2.56129980e-01 2.82802403e-01 -4.92552444e-02\\n-2.64537990e-01 -1.34016484e-01 2.64411867e-01 1.49154902e-01\\n1.89773798e-01 8.82226229e-02 -1.84833348e-01 -5.22651315e-01\\n-3.40924406e+00 -2.86704808e-01 2.03333899e-01 -2.89268672e-01\\n3.14688563e-01 -1.28435060e-01 2.32403010e-01 1.50011303e-02\\n-2.96690762e-01 -4.25070524e-02 -1.19808547e-01 -1.07720837e-01\\n1.32821292e-01 2.88379312e-01 6.72558397e-02 1.37757376e-01\\n3.55124362e-02 -1.48527443e-01 3.56011540e-02 3.62670481e-01\\n-7.48167485e-02 -7.94079661e-01 9.02501941e-02 -3.64799201e-02\\n1.71445429e-01 -1.15807764e-02 -5.04269421e-01 -3.58790345e-02\\n-2.74945617e-01 -2.15985298e-01 1.33602619e-01 -1.19048789e-01\\n-2.40695402e-01 2.11244598e-01 5.57042509e-02 -1.23289384e-01\\n1.87607594e-02 -2.77388275e-01 -1.14831880e-01 -5.43252885e-01\\n1.39387295e-01 -7.75701880e-01 -6.10272028e-03 -1.52973793e-02\\n6.10387921e-01 -1.95671618e-01 2.18392804e-01 1.00037314e-01\\n9.55374092e-02 2.08364189e-01 1.62694961e-01 1.11553259e-03\\n-3.48535597e-01 -3.52186322e-01 3.89552563e-02 -1.40328661e-01\\n5.55689752e-01 2.61259139e-01 -2.33175933e-01 5.88769242e-02\\n3.27466615e-02 -3.19522411e-01 -4.87712920e-01 -2.94706702e-01\\n-1.05784364e-01 -6.59059808e-02 -7.12858200e-01 -4.07012165e-01\\n-1.46084577e-01 -2.56510317e-01 -4.08943184e-02 7.39331245e-01\\n-2.70188451e-01 -3.14190596e-01 -3.93026546e-02 -5.69110036e-01\\n2.50351846e-01 -1.58626914e-01 4.63407189e-02 -2.38775700e-01\\n-2.98472852e-01 -3.61144245e-01 2.20529586e-01 4.91622835e-02\\n-2.22673923e-01 -2.21876986e-02 2.82238591e-02 -1.60391003e-01\\n-4.18400496e-01 -4.41071481e-01 4.82618481e-01 8.32878053e-02\\n3.49792898e-01 3.61956805e-02 3.68689775e-01 -6.58319890e-02\\n3.19877565e-01 3.13073359e-02 -7.74340257e-02 -4.59519088e-01\\n8.09023157e-02 -1.64802559e-02 5.63512564e-01 -2.06614941e-01\\n-2.62801126e-02 1.32762089e-01 -1.37791902e-01 -6.19628057e-02\\n4.90510404e-01 -7.39257038e-02 1.08766258e-01 -2.22811788e-01\\n2.30396479e-01 -4.21551526e-01 -2.98600972e-01 1.24910295e-01\\n5.22979200e-02 7.19821572e-01 -1.88974626e-02 -3.45355630e-01\\n-2.07879245e-01 4.29512352e-01 -4.77667525e-02 -1.01277500e-01\\n-2.46953368e-01 4.04107273e-02 -2.76074708e-01 2.11510226e-01\\n1.36606216e-01 -8.23638737e-02 -2.34294087e-01 -1.27437487e-02\\n-9.13211033e-02 1.89185917e-01 2.27388203e-01 1.62984043e-01\\n5.98747805e-02 -2.80520618e-01 -1.60721578e-02 1.31122679e-01\\n1.89689800e-01 3.65197718e-01 2.37042189e-01 -3.33795309e-01\\n-1.28800720e-01 2.90722430e-01 -2.52872169e-01 2.35001951e-01\\n-1.16030931e-01 1.30577654e-01 -6.08124137e-01 -2.71315843e-01\\n-2.84431159e-01 -3.20235550e-01 1.01977140e-02 3.66781473e-01\\n1.48102969e-01 -1.57701999e-01 1.41113363e-02 -4.52803373e-01\\n2.64597863e-01 -1.60222873e-03 2.66735077e-01 7.66851604e-02\\n-4.11103666e-02 7.74567366e-01 1.75513085e-02 -3.29330415e-01\\n-1.82695314e-03 5.30252643e-02 -1.79010093e-01 -2.84527957e-01\\n2.05633640e-02 -4.52018231e-01 -7.21742809e-02 4.96383816e-01\\n8.91182572e-02 -1.79540336e-01 -1.80997580e-01 2.98436224e-01\\n-2.02593580e-02 -2.40821794e-01 -2.10421965e-01 -5.62031418e-02\\n1.83506489e-01 7.72186294e-02 2.69544333e-01 -4.56165195e-01\\n1.26091586e-02 -2.45891567e-02 7.19334707e-02 4.12751317e-01\\n1.54386416e-01 1.31581604e-01 3.87730747e-02 -9.50430706e-02\\n4.43802059e-01 1.12474836e-01 -1.97131872e-01 -3.82853784e-02\\n1.41341731e-01 -2.87622780e-01 -4.72628057e-01 2.11017374e-02\\n-1.11386344e-01 -1.61707237e-01 1.01467416e-01 1.53456926e-02\\n1.50865242e-01 2.95311622e-02 -4.38522518e-01 -1.84373170e-01\\n-4.24536645e-01 1.17321908e-01 -9.85472426e-02 -6.49234653e-01\\n9.77564603e-02 2.02745870e-02 -5.71652889e-01 2.74298608e-01\\n-4.53905389e-02 4.86094058e-02 1.67146191e-01 1.31723642e-01\\n-2.25723952e-01 -1.77133620e-01 1.46598786e-01 8.53225589e-02\\n-2.68861830e-01 -2.46592954e-01 4.28218991e-02 -9.68012214e-01\\n2.76739627e-01 2.99760140e-03 -1.19711876e-01 9.47631150e-02\\n3.43455300e-02 -8.05438459e-01 2.48515815e-01 -3.85759622e-01\\n-1.76476628e-01 6.51508421e-02 -2.65799731e-01 -4.47156578e-01\\n4.20060158e-02 -1.15752127e-02 -2.01461345e-01 3.27315390e-01\\n-4.57598448e-01 5.16542315e-01 5.68061098e-02 1.08936600e-01\\n1.90594822e-01 -1.85713693e-01 3.88168320e-02 -3.05402160e-01\\n-4.86669630e-01 -2.91343272e-01 -1.78113401e-01 -3.35276127e-01\\n-1.21924199e-01 -2.35675871e-01 -1.45003900e-01 1.17702782e-03\\n3.18597376e-01 1.51010364e-01 -1.43857509e-01 -2.09421128e-01\\n5.96151203e-02 -3.27045381e-01 1.80744544e-01 -2.19062850e-01\\n1.11395612e-01 -2.51687348e-01 3.97747517e-01 1.90634914e-02\\n2.55273223e-01 -3.05948675e-01 4.46409047e-01 -1.88401282e-01\\n-3.64123940e-01 -2.00072318e-01 1.97282359e-02 7.94317350e-02\\n3.57394427e-01 -5.50540686e-01 1.56624049e-01 2.63425767e-01\\n5.21960072e-02 3.90384495e-02 2.26451695e-01 -1.45229906e-01\\n-7.72912502e-02 1.14788249e-01 -5.03074229e-01 2.08915710e-01\\n6.79631710e-01 1.41556442e-01 2.70682991e-01 1.73548162e-01\\n1.67190790e-01 2.86673188e-01 5.53420424e-01 4.92636263e-02\\n-8.00984502e-02 3.83481085e-01 1.52444363e-01 -4.93146747e-01\\n-2.07554683e-01 -4.35727462e-02 -9.51422602e-02 -3.56130034e-01\\n6.10882521e-01 3.01229835e-01 -3.90176564e-01 -3.11406463e-01\\n-2.03139424e-01 -2.98850268e-01 3.88044655e-01 -3.46279852e-02\\n7.92823359e-02 -1.27824917e-01 5.48047721e-01 -2.04795785e-03\\n3.79109621e-01 5.63291788e-01 -2.02212647e-01 -3.00975978e-01\\n-5.79575822e-02 2.56830603e-01 3.69990133e-02 3.17692280e-01\\n-5.77861145e-02 1.89650908e-01 5.45897633e-02 1.82440758e-01\\n-1.99747548e-01 -2.06301734e-02 1.94171757e-01 6.63347244e-02\\n1.04582444e-01 1.42010301e-01 5.55784345e-01 4.69859481e-01\\n2.11500257e-01 4.32693243e-01 3.60350937e-01 1.23665947e-03\\n4.24455017e-01 7.19901383e-01 2.65974104e-01 -1.71962250e-02\\n5.92679754e-02 1.68874696e-01 1.24564439e-01 -1.24936970e-02\\n3.44065696e-01 4.30243701e-01 1.38814241e-01 8.30626309e-01\\n4.03666377e-01 3.25912118e-01 7.08173394e-01 -6.37859821e-01\\n-2.95746922e-01 2.98424531e-02 5.57961464e-01 -3.97196501e-01\\n1.27006829e-01 2.06659958e-01 -2.25103974e-01 2.98169166e-01\\n-3.96013856e-01 -1.09286904e-01 -2.30659824e-02 -5.30308783e-02\\n1.24295518e-01 -1.12575702e-01 -8.91449526e-02 -1.50860297e-02\\n-9.54208374e-02 -2.47789979e-01 -2.86710978e-01 -2.42979899e-01\\n-2.84602523e-01 2.33938955e-02 -1.34209078e-02 -5.08332029e-02\\n-1.31739914e-01 -3.16565573e-01 -1.55908048e-01 -7.78649300e-02\\n3.23702961e-01 -1.61263436e-01 -1.71052277e-01 -6.27280921e-02\\n1.55324042e-01 3.15142691e-01 7.68052220e-01 1.99800804e-02\\n1.08948000e-01 -7.45462030e-02 -2.05540031e-01 1.59211576e-01\\n9.54287872e-02 1.55690148e-01 -9.08952393e-03 5.41924238e-01\\n-2.26774096e-01 -1.13780618e-01 7.24235326e-02 3.37958992e-01\\n-2.91860759e-01 -2.87216529e-02 -8.72548521e-02 1.23932660e-01\\n-2.10183933e-02 1.66710272e-01 -2.53908157e-01 6.75996691e-02\\n-5.09918928e-02 -5.38255930e-01 4.32942450e-01 -1.86862037e-01\\n-2.12996274e-01 -6.62430003e-02 2.58737147e-01 4.11747575e-01\\n-1.57282740e-01 -3.43940705e-02 -8.32056105e-02 8.76736939e-02\\n7.35472143e-03 4.96551335e-01 -2.13431090e-01 -9.57835913e-02\\n-3.16317588e-01 2.34070033e-01 3.41118015e-02 1.65940002e-01\\n-4.29691300e-02 4.22061294e-01 9.77471769e-02 1.52525038e-01\\n1.79273367e-01 -8.55935365e-02 -2.91646242e-01 -2.45301545e-01\\n-2.38152847e-01 -3.61880772e-02 3.23343873e-02 -1.12965196e-01\\n2.41054416e-01 -2.43249923e-01 -4.29404974e-02 -1.79611832e-01\\n-1.45707116e-01 -4.02538866e-01 -2.00856119e-01 -1.03881694e-02]]',\n", + " 'As a Solution and Integration Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, systems’ integration and interfaces’ orchestration for the Bank’s existing and new applications. You will be responsible for elaborating and preparing solution design documentation for change initiatives and also for the development, configuration and maintenance of changes on existing systems and also for introducing new applications and interfaces with other systems. You will be designing and developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Prepare the required solution design and design specifications documentation for change initiatives and also develop integrated solutions mainly for middleware and backend applications Undertake the technical ownership of Cembra Money Bank’s middleware and backend applications and micro services Act as a SME and integrator with third parties providing design specifications and also development of backend services Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 7+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Knowledge of messaging systems and experience in designing and implementing ESB/Middleware solutions and applications’ integration Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Working experience with Java applications servers (WAS, JBoss, Tomcat) and relational databases and also knowledge of common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Systems Engineering\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Middleware\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Design Specifications\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"System Integration Testing\", \"Operating Systems\", \"Java Application Server\", \"Finance\", \"Personalization\", \"Production Support\", \"Object-Oriented Design\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Solution Design\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Custom Backend\", \"Java (Programming Language)\", \"Biological Systems Engineering\", \"Acceptance and Commitment Therapy (ACT)\", \"Apache Tomcat\"]',\n", + " \"['English']\"],\n", + " ['96',\n", + " 'data scientist, real world evidence within oncology',\n", + " 'Basel',\n", + " 'Staffing & Outsourcing',\n", + " 'www.proclinical.com',\n", + " '[[-2.63169497e-01 3.86650473e-01 4.68789518e-01 -3.20093706e-04\\n7.19425201e-01 -5.94137199e-02 2.23216508e-02 1.48933291e-01\\n-2.25920901e-02 -3.16203535e-01 -1.55717298e-01 -2.68961906e-01\\n3.84098068e-02 1.96828693e-01 1.78216875e-01 6.07137442e-01\\n3.50333661e-01 -3.81678753e-02 -3.89230326e-02 3.49530071e-01\\n5.27326241e-02 -1.75138190e-01 1.15638273e-03 8.54943514e-01\\n3.70329112e-01 2.45838165e-02 -1.67965710e-01 2.66950615e-02\\n-1.60904080e-01 -3.09640527e-01 5.65931797e-01 1.28522068e-02\\n-2.32964069e-01 -2.92585969e-01 1.21114455e-01 3.18059206e-01\\n-3.33256066e-01 3.80583629e-02 -1.97451293e-01 1.85492039e-01\\n-6.52454138e-01 -2.34094203e-01 -1.01964653e-01 -3.53781246e-02\\n-3.23889494e-01 -3.46547753e-01 7.30108246e-02 -7.40006492e-02\\n5.45543917e-02 2.75971234e-01 -4.50768441e-01 1.50981382e-01\\n-3.22868347e-01 -2.18348175e-01 3.51933807e-01 6.84982896e-01\\n8.93925503e-02 -4.98680592e-01 -5.26003718e-01 -3.62124503e-01\\n2.94625163e-02 -1.21122651e-01 3.09171915e-01 -3.26322377e-01\\n4.15292203e-01 4.24316004e-02 8.05535391e-02 1.61024660e-01\\n-6.62605286e-01 -2.23464295e-01 -5.22553682e-01 4.52159718e-02\\n-4.04539287e-01 4.97839302e-02 -4.20589894e-01 -1.39957100e-01\\n-1.19181722e-02 4.26721156e-01 -8.68240371e-03 9.07887071e-02\\n-1.31739765e-01 1.67956978e-01 -4.35254216e-01 2.88908124e-01\\n2.31453925e-01 2.87516147e-01 3.44208002e-01 3.43221307e-01\\n-3.43693256e-01 4.52233195e-01 2.25297004e-01 -2.87212849e-01\\n1.58153504e-01 2.74454594e-01 3.96189213e-01 1.60953507e-01\\n2.19625831e-01 6.55522272e-02 -2.97693253e-01 1.79574788e-01\\n2.87075460e-01 -2.72511691e-01 6.51143640e-02 -2.68369280e-02\\n-1.02064542e-01 5.67441620e-02 7.39111602e-02 -3.35512720e-02\\n-5.73595166e-01 4.45354879e-01 1.55315757e-01 -1.83875620e-01\\n-2.70958245e-01 -4.89671171e-01 -6.44533709e-02 1.24073744e-01\\n5.18905371e-02 2.12211221e-01 1.43317044e-01 2.24806324e-01\\n2.09356666e-01 -2.60517839e-02 9.35430452e-02 9.19676244e-01\\n2.95836739e-02 4.01868299e-02 -7.72249997e-02 2.01101944e-01\\n8.76916945e-02 -1.99077487e-01 2.65773833e-01 2.49101579e-01\\n-1.45804435e-01 -2.01857075e-01 -3.80936205e-01 3.42906266e-01\\n-1.63130127e-02 -1.93363011e-01 -8.68330300e-02 1.83452725e-01\\n8.64825845e-02 -6.59497380e-01 5.49374461e-01 -2.56151170e-01\\n1.85302138e-01 -1.37681961e-01 1.46572992e-01 -4.86909412e-02\\n7.64856115e-03 2.13260710e-01 3.58413160e-01 1.85464591e-01\\n-1.99610218e-01 -3.12877715e-01 -6.78154603e-02 1.48865595e-01\\n-4.77504790e-01 2.40760416e-01 -2.04132795e-01 -1.63046271e-01\\n3.32447708e-01 7.99462646e-02 -4.07236665e-01 2.34335840e-01\\n-1.09753981e-01 -1.56194463e-01 -5.59636690e-02 3.60473216e-01\\n-1.88666016e-01 1.81127608e-01 -6.48256913e-02 -1.86204344e-01\\n6.23774350e-01 1.28437519e-01 5.02431035e-01 7.83126429e-03\\n2.99208641e-01 -1.12532854e-01 2.51185417e-01 1.15040742e-01\\n-6.36189461e-01 4.42099869e-01 -2.16425151e-01 -3.92091423e-01\\n8.87885243e-02 -1.03830159e-01 5.58911204e-01 -3.40569586e-01\\n3.08581199e-02 -1.37884542e-01 -3.93987238e-01 -3.39751303e-01\\n-1.42173067e-01 -1.94159061e-01 3.90068382e-01 -4.37297374e-01\\n2.52022326e-01 2.28931963e-01 -6.79499984e-01 -4.29788649e-01\\n1.90448895e-01 2.92493075e-01 2.68038690e-01 2.10991263e-01\\n-1.06335461e-01 -6.54755771e-01 2.79191881e-02 -6.01601660e-01\\n-3.45293283e-01 7.30617270e-02 -2.53108948e-01 9.52522457e-02\\n-5.76631725e-02 5.43288607e-03 -1.31190971e-01 5.87391667e-02\\n-1.73447520e-01 1.91271156e-01 -1.32447898e-01 3.34679149e-02\\n2.33289212e-01 7.80984238e-02 -2.60863990e-01 5.83154678e-01\\n-2.05385119e-01 5.13628244e-01 1.31358886e-02 -7.55238533e-01\\n5.81305981e-01 3.93368602e-01 8.02817121e-02 -2.38318413e-01\\n5.76504588e-01 -3.25649142e-01 -1.25092208e-01 1.46722794e-01\\n-3.20407927e-01 -1.34183630e-01 1.78138554e-01 -4.29830134e-01\\n-2.88591683e-01 5.04212081e-01 9.55815762e-02 1.98618919e-01\\n3.28001767e-01 -1.98156059e-01 -1.58077598e-01 1.62954867e-01\\n-2.60754347e-01 -1.35032460e-01 -4.88017321e-01 -1.11145619e-02\\n-1.09894410e-01 -3.10110450e-01 -8.66682976e-02 -4.16223526e-01\\n-1.62458345e-01 -4.00335014e-01 -1.53964087e-01 -1.44013632e-02\\n1.45980358e-01 1.68479592e-01 -3.77351716e-02 -1.15019262e-01\\n3.83327976e-02 -7.50463128e-01 -2.26425193e-02 -5.29739074e-02\\n2.48868734e-01 2.34864816e-01 2.92786121e-01 3.14666592e-02\\n4.59447876e-02 4.71697271e-01 -4.13966596e-01 -2.64527649e-01\\n7.85053745e-02 8.81357789e-02 -1.00785829e-01 -6.82438165e-02\\n5.08707240e-02 1.12746067e-01 -3.25165033e-01 4.29151952e-03\\n-9.66105759e-02 6.43548295e-02 3.35586041e-01 -1.10191926e-01\\n-2.01760694e-01 -1.68754850e-02 -2.31002748e-01 1.80770174e-01\\n-5.25746524e-01 -4.34828520e-01 5.59399664e-01 2.16196682e-02\\n9.59829148e-03 3.39529306e-01 1.33651912e-01 3.17488685e-02\\n-3.48861068e-01 -3.65478575e-01 4.08766747e-01 1.60561055e-01\\n1.33144349e-01 1.21597975e-01 3.80218178e-02 -6.67538583e-01\\n-3.05873823e+00 -6.17777109e-02 3.82132418e-02 -1.89406097e-01\\n4.14980292e-01 1.30867204e-02 1.68434471e-01 -3.71458344e-02\\n-4.45917487e-01 -4.07822132e-02 -1.41197965e-01 -2.61001140e-01\\n4.68694568e-02 2.32462987e-01 1.64793730e-01 6.91835284e-02\\n-2.62111053e-03 -3.84462297e-01 8.80558342e-02 2.85796702e-01\\n-6.82753623e-02 -7.75471151e-01 3.67415547e-02 1.06540114e-01\\n9.42885727e-02 2.16603220e-01 -4.85599637e-01 -6.20426461e-02\\n-3.35193455e-01 -2.77159154e-01 2.72731930e-01 -2.90507764e-01\\n-2.70232320e-01 1.13401391e-01 2.20221788e-01 6.80987686e-02\\n-1.64314941e-01 -2.48836935e-01 -1.74254686e-01 -5.38170695e-01\\n1.41248852e-01 -6.25723243e-01 -1.87455148e-01 -1.72063038e-02\\n5.74367523e-01 -2.02129241e-02 3.81945908e-01 2.53758758e-01\\n1.27129462e-02 1.17836654e-01 2.72749960e-01 6.58520088e-02\\n-2.14218408e-01 -2.32963234e-01 -1.28913000e-01 -1.45377606e-01\\n5.89571953e-01 3.03469956e-01 -2.15279862e-01 -8.83492678e-02\\n1.74333602e-01 -2.98516035e-01 -5.83107710e-01 -1.98955581e-01\\n-1.38482243e-01 -1.07885048e-01 -7.23694921e-01 -6.17788792e-01\\n-1.37287498e-01 -1.99022368e-01 -4.99126911e-02 7.00236797e-01\\n-3.11717749e-01 -1.20480046e-01 -1.26693740e-01 -5.38578629e-01\\n3.72536838e-01 -1.86147541e-01 5.04276976e-02 -2.26332963e-01\\n-3.27819049e-01 -3.33191395e-01 1.52537286e-01 3.61270867e-02\\n-1.09392002e-01 -1.21011838e-01 4.21941690e-02 -8.72536153e-02\\n-5.46141446e-01 -5.13643265e-01 3.56811106e-01 1.18744433e-01\\n3.84875000e-01 7.62618035e-02 2.44185984e-01 -6.45570830e-02\\n3.93647492e-01 2.13175327e-01 3.49211842e-02 -3.28929365e-01\\n-8.53152946e-04 -1.10033259e-01 4.73418772e-01 -2.22450301e-01\\n-3.95352021e-02 -1.85041204e-02 -3.54374528e-01 -5.81390262e-02\\n4.10307676e-01 -3.39608371e-01 6.42432943e-02 4.48559187e-02\\n3.07339311e-01 -3.28091770e-01 -4.42240387e-04 4.74730767e-02\\n1.03277467e-01 7.87029982e-01 -2.00506765e-02 -3.12873065e-01\\n6.53456599e-02 4.84357804e-01 -1.16644919e-01 2.00057209e-01\\n-6.56557530e-02 -4.18547615e-02 -2.00842202e-01 3.48425388e-01\\n-3.77023518e-02 -1.65450096e-01 -1.06197633e-01 -1.10520497e-01\\n-2.14247942e-01 1.66636139e-01 1.81638435e-01 1.58576161e-01\\n-1.51923165e-01 -1.47565335e-01 -2.01503411e-01 4.13872898e-01\\n3.09004039e-01 3.56837451e-01 2.58016229e-01 -2.40901619e-01\\n2.82631367e-02 1.56962231e-01 -2.75030643e-01 4.22598422e-01\\n-3.24577123e-01 2.89073467e-01 -6.64871454e-01 -1.43727466e-01\\n-4.65996861e-01 -3.96284163e-01 2.59475917e-01 3.38967562e-01\\n2.97228634e-01 -2.06053838e-01 1.51987657e-01 -5.83863378e-01\\n3.26926410e-02 2.09997594e-01 1.81305930e-02 3.96323875e-02\\n-2.45413586e-01 6.36228204e-01 -4.06591743e-02 -9.73383784e-02\\n3.27425227e-02 -6.35855645e-02 -2.20548674e-01 -2.77040541e-01\\n1.11499667e-01 -5.42595923e-01 -1.70647666e-01 4.03657258e-01\\n2.24765718e-01 -8.00242424e-02 -1.76973611e-01 4.08680439e-01\\n8.53495225e-02 -4.04141933e-01 -4.41270381e-01 -2.84796730e-02\\n2.83959687e-01 1.65105835e-02 2.34020829e-01 -6.11977160e-01\\n8.14037621e-02 -2.26918384e-02 1.10521674e-01 3.66688013e-01\\n-1.00717209e-02 9.31022391e-02 -2.18411043e-01 -1.79259181e-01\\n4.23077762e-01 -1.42400786e-01 -8.14289600e-03 1.51702806e-01\\n2.01886564e-01 -3.50987732e-01 -3.29258740e-01 -2.80435868e-02\\n-1.28421992e-01 -3.45943332e-01 -6.73285648e-02 1.74761474e-01\\n-1.21685646e-01 4.26382124e-02 -5.24345100e-01 -2.06147388e-01\\n-2.93926895e-01 2.05035925e-01 3.61565724e-02 -6.19699776e-01\\n-1.55757546e-01 -8.39121863e-02 -5.32069921e-01 3.43240201e-01\\n2.05736428e-01 -1.59070283e-01 2.34105706e-01 9.52995867e-02\\n-1.90687075e-01 -2.09086135e-01 1.18313730e-01 1.38559774e-01\\n-3.67941260e-01 -3.01412106e-01 -2.38272324e-01 -9.73496437e-01\\n1.82587817e-01 1.95172757e-01 -1.36673242e-01 1.20117791e-01\\n-4.23979796e-02 -6.03386700e-01 1.68654859e-01 -3.83858681e-01\\n-5.44190332e-02 1.02767628e-02 -2.79198468e-01 -2.80329645e-01\\n7.49583691e-02 7.76237994e-02 -1.09634623e-01 3.93686295e-01\\n-2.03246742e-01 4.26449180e-01 -1.51202887e-01 -1.50912285e-01\\n-1.93814132e-02 -1.71392500e-01 2.19790295e-01 -1.80859059e-01\\n-4.46960688e-01 -2.63360381e-01 -3.36964369e-01 -2.01839432e-01\\n-1.03932053e-01 -2.50474811e-01 1.07237473e-02 1.77948736e-02\\n4.36653137e-01 6.50257803e-03 -1.00336149e-01 -1.30199894e-01\\n6.65094703e-02 -4.96700794e-01 2.99157985e-02 -3.60830486e-01\\n6.73559830e-02 -2.13295013e-01 2.18530774e-01 2.08065987e-01\\n3.39993209e-01 -4.15723890e-01 5.19020021e-01 -4.51698422e-01\\n-4.01642263e-01 -2.19547108e-01 1.04606353e-01 3.63336131e-02\\n3.25121462e-01 -6.23464584e-01 -7.59521574e-02 3.70156825e-01\\n2.68130414e-02 -7.15454519e-02 2.94797122e-01 -2.86140561e-01\\n-1.20888732e-01 1.93248138e-01 -4.37441349e-01 2.96518713e-01\\n6.64422631e-01 4.04550046e-01 1.50314003e-01 1.95145503e-01\\n1.20136693e-01 2.47663379e-01 6.38301611e-01 -1.68549210e-01\\n-7.20039196e-03 4.06495094e-01 1.07259251e-01 -4.39922929e-01\\n-1.35117978e-01 -7.26668686e-02 1.57358460e-02 -4.30671036e-01\\n6.98233664e-01 2.73953140e-01 -3.79747987e-01 -2.36634582e-01\\n-3.45314324e-01 -1.81749225e-01 3.59881282e-01 5.66240102e-02\\n-7.66157508e-02 9.38081145e-02 5.19822180e-01 -1.23299006e-02\\n3.65838468e-01 4.10720170e-01 -1.97861820e-01 -1.69186041e-01\\n-4.24940959e-02 4.17032242e-01 8.55420455e-02 4.27664816e-01\\n-9.46612135e-02 2.38421336e-01 -5.39368428e-02 1.73492938e-01\\n-2.00624496e-01 -3.33604589e-03 1.74284384e-01 1.42387033e-01\\n2.32574001e-01 1.25318050e-01 5.41251600e-01 3.52053106e-01\\n2.33013898e-01 2.81875312e-01 2.31242567e-01 -1.14579722e-02\\n3.54339153e-01 4.52320665e-01 3.14443946e-01 1.67987943e-02\\n1.50480658e-01 2.77799904e-01 1.47601873e-01 -1.68088116e-02\\n3.17809701e-01 3.20173085e-01 -1.69567764e-02 6.87757254e-01\\n1.22173473e-01 3.11119586e-01 5.96915364e-01 -6.34248734e-01\\n-2.65211374e-01 6.51225224e-02 6.22432232e-01 -4.55231816e-01\\n1.72395676e-01 2.21373647e-01 -1.25444442e-01 3.33469868e-01\\n-4.48151380e-01 -2.44815931e-01 6.23401105e-02 1.13036513e-01\\n1.89520478e-01 -3.76806498e-01 -8.91952813e-02 1.18640773e-01\\n-2.01355517e-01 -3.12619388e-01 -2.56161004e-01 -2.48887166e-01\\n-3.59327644e-01 2.87291687e-02 -1.06178075e-01 -3.65683660e-02\\n-2.15112656e-01 -2.26350993e-01 5.04885167e-02 -5.24986982e-02\\n3.63746732e-01 -1.51461720e-01 -2.99836397e-01 6.08856976e-02\\n5.10223329e-01 2.39921398e-02 5.68501294e-01 -1.47693366e-01\\n3.67185697e-02 -1.63921952e-01 -1.88348413e-01 1.93296611e-01\\n1.58758253e-01 3.48239765e-02 1.29505545e-01 3.74074459e-01\\n-1.61060780e-01 -2.77240068e-01 7.87940770e-02 1.34126440e-01\\n-4.16026801e-01 -1.24537339e-02 -9.68861207e-02 6.63801432e-02\\n-3.46069001e-02 2.16871947e-01 -2.28760198e-01 -4.66132462e-02\\n3.14489305e-02 -6.26270950e-01 2.77413309e-01 -1.65808558e-01\\n-4.05041277e-01 -4.46531251e-02 5.02574563e-01 3.76168191e-01\\n-7.48049617e-02 1.61495972e-02 -1.86737046e-01 1.08606704e-01\\n-7.82465935e-02 2.41280407e-01 -5.88982105e-02 -3.69655192e-01\\n-4.37243104e-01 3.21165204e-01 -1.49376780e-01 2.50494808e-01\\n-2.78768167e-02 3.94391030e-01 5.84165566e-02 1.49188600e-02\\n4.96017456e-01 -4.57513556e-02 -2.21470207e-01 -3.73599648e-01\\n-1.33955747e-01 -1.11581087e-02 2.41576657e-02 2.46831682e-02\\n1.79618418e-01 -3.23660791e-01 -7.25455657e-02 -5.09880781e-01\\n-3.43385115e-02 -4.22159433e-01 -1.12265915e-01 -4.04368229e-02]]',\n", + " 'A leading international healthcare company is seeking to recruit a Data Scientist, Real World Evidence within Oncology, to their team in Switzerland. The organisation is a global provider of automated laboratory instruments and solutions that develops, produces, markets, and supports automated workflow solutions that empower laboratories to achieve more. This vacancy is an excellent opportunity to work with a highly prestigious organisation whose historic presence has been a cornerstone in the pharmaceutical industry. Job Responsibilities: Ask the right scientific questions, understand the evidence needs for research and development, regulatory, and market access, and ideate and make recommendations on fit-for-purpose data and analytics solutions. Develop strategic plans to access fit-for-purpose data sources to support evidence generation and gain access to data through collaboration or data generation. Develop a comprehensive and deep understanding of the data we work with and foster learning with colleagues using analytical tools and applications to broaden data accessibility and advance our proficiency/efficiency in understanding and using the data appropriately. Stay current with and adopt emergent analytical methodologies, tools and applications to ensure fit-for-purpose and impactful approaches. Apply rigor in study design and analytical methods; plan for data processing; design a fit-for-purpose analysis plan, assess effective ways of presenting and delivering the results to maximize impact and interpretability; implement and/or oversee the study, including its reporting; ensure compliance with applicable pharma industry regulations and standards. Communicate findings to internal stakeholders, regulatory, health technology assessment (HTA) bodies and scientific communities; publish results; participate in external meetings and forums to present your insights (e.g. congress/conference). Collaborate and contribute to functional, cross-functional, enterprise-wide or external data science communities, networks, collaborations, initiatives or goals on knowledge-sharing, methodologies, innovations, technology, IT infrastructure, policy-shaping, processes, etc. to enable broader and more effective use of data and analytics to support the business. Skills and Requirements: MSc or PhD in epidemiology, pharmacoepidemiology, biostatistics, and/or public health (with focus on epidemiology/observational research). Demonstrated track record of designing, developing, executing, and interpreting epidemiological or outcomes research projects, with publications and presentations. Demonstrated experience with managing project scope and driving delivery in an evolving environment. Relevant work experience Good knowledge of drug development and life cycle management. Good therapeutic and disease area knowledge (chronic diseases/oncology preferred). Excellent knowledge in epidemiological methodology and ability to apply it within the pharmaceutical industry. Proven ability to translate and communicate complex study design and findings to diverse audiences. Please note that depending on your experience and qualifications, we may offer one of these titles: Data Scientist, Senior Data Scientist or Principal Data Scientist. Demonstrable multitasking, project management, and execution skills. Good interpersonal skills, including communication, presentation, persuasion, and influence. Good organisational skills, including efficiency, punctuality, and collaboration in a team environment. Proficiency with computer skills, such as MS Office. To Apply: Please click on the Apply button. Please include a short note outlining why you are interested in the role and why you think you are suitable. In case you have difficulty in applying or if you have any questions, please contact Emma Adams at +44 203 854 3893 or upload your CV on our website - www.proclinical.com. A full job description is available on request. Proclinical Staffing is a specialist employment agency and recruitment business, providing job opportunities within major pharmaceutical, biopharmaceutical, biotechnology and medical device companies. Proclinical Staffing is an equal opportunity employer. #LI-EA1 #Biometrics',\n", + " '[\"Punctuality\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Multitasking\", \"Presentations\", \"Innovation\"]',\n", + " '[\"Biometrics\", \"Automation\", \"MSC Software\", \"Outliner\", \"Tooling\", \"Accessioning\", \"Epidemiology\", \"Analytics\", \"Project Management Life Cycle\", \"Industrialization\", \"Clinical Study Design\", \"Biotechnology\", \"IT Infrastructure\", \"Outcomes Research\", \"Component Object Model (COM)\", \"External Data Representation\", \"Track (Rail Transport)\", \"Technology Assessment\", \"Oncology\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Instrumentation\", \"E (Programming Language)\", \"Translations\", \"Executable\", \"Chronic Diseases\", \"Medical Devices\", \"Workflow Automation\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Equalization\", \"Biostatistics\", \"Network Communications\", \"Communication Sciences\", \"Electronic Data Processing\", \"Direct Market Access\", \"Strategic Planning\", \"Pharmaceuticals\", \"Research And Development\", \"Executive Development\", \"Project Management\", \"Public Health\", \"Job Descriptions\", \"Health Technology\", \"Drug Development\", \"Project Scoping\", \"Adoptions\", \"Source Data\", \"Biopharmaceuticals\"]',\n", + " \"['English', 'French', 'Serbian', 'Malay', 'Uzbek']\"],\n", + " ['57',\n", + " 'software engineer .net / c#',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-9.39995795e-02 3.35250646e-01 5.78792751e-01 -1.29941076e-01\\n4.64701653e-01 -3.69766057e-01 1.05191454e-01 3.63712847e-01\\n-5.13378531e-02 -3.42865735e-01 -1.91628918e-01 -2.82905370e-01\\n1.18555920e-02 1.20631464e-01 4.96344790e-02 2.93974698e-01\\n2.87849218e-01 6.71490356e-02 -1.34868041e-01 3.21233898e-01\\n2.02394545e-01 -1.30778149e-01 1.28763229e-01 6.65439785e-01\\n3.76757056e-01 -6.70232158e-03 3.41307861e-03 9.77772772e-02\\n-2.33811677e-01 -3.04761469e-01 4.08054709e-01 -2.24661604e-02\\n-4.05807234e-03 -2.65985578e-01 8.79088417e-02 4.40241732e-02\\n-1.74539521e-01 1.22085281e-01 5.57244420e-02 1.70685753e-01\\n-3.72524589e-01 -1.82705134e-01 9.64485928e-02 -3.06541789e-02\\n-1.52956501e-01 -3.96577328e-01 1.02722690e-01 2.05065776e-03\\n1.85473919e-01 4.01727222e-02 -3.96216303e-01 3.93563092e-01\\n-2.82718867e-01 -2.88695216e-01 2.88813591e-01 5.86105168e-01\\n-2.87808683e-02 -6.05412900e-01 -4.17917490e-01 -1.98869005e-01\\n2.20193252e-01 -6.08862601e-02 9.76299867e-02 -2.49703109e-01\\n4.94848758e-01 -6.30363682e-03 4.58837673e-02 3.70801359e-01\\n-8.31132829e-01 4.88173366e-02 -2.14614958e-01 4.26024087e-02\\n-3.06188822e-01 -4.77559641e-02 -2.46833116e-01 -1.40547246e-01\\n-1.37120947e-01 4.27567571e-01 2.03950688e-01 4.74188738e-02\\n-7.58213028e-02 2.70213068e-01 -3.34931374e-01 2.23179609e-01\\n2.85451114e-01 3.23207170e-01 2.47570544e-01 2.34550208e-01\\n-4.75566864e-01 5.14151394e-01 2.19023958e-01 -2.24276215e-01\\n1.74022168e-01 9.22211409e-02 4.09278154e-01 2.57765986e-02\\n1.24465972e-01 6.41222969e-02 -2.28002712e-01 2.03150481e-01\\n2.81742156e-01 -2.36419246e-01 -6.78101555e-02 7.87941366e-02\\n-4.66147736e-02 5.15802465e-02 -5.10821342e-02 4.08931136e-01\\n-3.71488631e-01 6.07856989e-01 3.30002792e-02 -2.16771588e-01\\n-4.99735698e-02 -6.43660605e-01 -2.40363851e-01 9.63097885e-02\\n3.77016999e-02 1.08179785e-01 1.82061657e-01 3.42771620e-01\\n1.24615729e-01 1.31780699e-01 1.82801828e-01 1.00848806e+00\\n-3.51740159e-02 2.01524645e-01 -2.78994381e-01 4.57489371e-01\\n4.06039618e-02 -2.77916789e-01 2.94273019e-01 3.60021681e-01\\n1.67656019e-01 -1.14639737e-01 -1.00077674e-01 2.94764012e-01\\n3.31706032e-02 -3.05054426e-01 -3.42874438e-01 1.27677307e-01\\n-1.40103906e-01 -5.24720609e-01 5.60441852e-01 7.54762962e-02\\n8.10468867e-02 4.69054990e-02 -3.64233293e-02 -7.65441284e-02\\n-1.04856446e-01 2.79342830e-01 6.16928302e-02 1.26006663e-01\\n-2.94955283e-01 -1.98590606e-01 -3.45345467e-01 2.75270402e-01\\n-2.06399292e-01 1.16404884e-01 -1.42051712e-01 -1.20138913e-01\\n3.86669248e-01 -1.49370346e-03 -3.29746932e-01 3.62275094e-01\\n-9.14096385e-02 2.26053619e-03 -1.00520641e-01 2.36930132e-01\\n-1.37323707e-01 1.67278334e-01 -8.75476748e-02 -2.01294601e-01\\n4.28184003e-01 1.23512268e-01 2.00953439e-01 -1.59641877e-01\\n3.57140481e-01 -1.32429183e-01 4.70495634e-02 2.42503993e-02\\n-7.12123096e-01 4.55628633e-01 -4.73668501e-02 -1.05156861e-01\\n4.82615680e-02 -1.69987064e-02 2.71746337e-01 -3.17442954e-01\\n1.08821206e-02 -1.67923570e-01 -3.89507741e-01 -2.87922502e-01\\n-1.20596610e-01 1.32114692e-02 5.45547128e-01 -4.38488662e-01\\n-1.54664502e-01 9.37325209e-02 -6.01531386e-01 9.80301350e-02\\n3.31798553e-01 2.32450500e-01 1.99254230e-01 1.17177546e-01\\n-2.33570963e-01 -4.69137609e-01 1.97242036e-01 -3.82882237e-01\\n-2.14146540e-01 1.82689011e-01 -2.53345102e-01 2.85357445e-01\\n1.42731965e-01 -5.83715551e-02 -1.54751733e-01 9.87009630e-02\\n-8.83767605e-02 -1.07187495e-01 3.09135675e-01 6.02564253e-02\\n3.17919791e-01 -6.83641434e-02 -3.73569489e-01 5.16927361e-01\\n-2.36638024e-01 4.06869829e-01 5.02030253e-02 -8.49887669e-01\\n4.18810159e-01 3.91902357e-01 3.86040546e-02 -4.14703190e-01\\n8.00929070e-01 -1.94809258e-01 -8.26516077e-02 1.40963584e-01\\n-4.87086147e-01 -2.53189653e-01 7.31034949e-02 -1.29148483e-01\\n-2.64219373e-01 5.28288841e-01 1.57841802e-01 2.48751719e-03\\n3.03817570e-01 -1.67177364e-01 -5.63406050e-02 4.20106612e-02\\n-1.03009053e-01 -2.63718486e-01 -3.59898597e-01 2.95773707e-02\\n9.33025032e-04 -5.64894319e-01 -1.64464742e-01 -4.48738456e-01\\n-2.29870215e-01 -3.85623068e-01 -2.84457594e-01 3.02222729e-01\\n7.86871389e-02 1.71372771e-01 4.33371961e-02 -4.39497270e-02\\n-2.78310090e-01 -5.91726780e-01 5.89052066e-02 2.03073859e-01\\n3.46185327e-01 2.10832834e-01 -1.33104362e-02 -1.03311993e-01\\n-5.84570095e-02 6.04193866e-01 -2.05098584e-01 -1.40605584e-01\\n1.08209684e-01 1.39762253e-01 4.72012609e-02 -1.05087914e-01\\n1.53457165e-01 3.73826772e-01 -2.18837425e-01 2.22453242e-03\\n-1.84212878e-01 1.01875596e-01 2.89617628e-01 -1.31458100e-02\\n-3.10870618e-01 -3.99476796e-01 -1.03770129e-01 2.09014311e-01\\n-5.55365026e-01 -1.96462154e-01 5.97025633e-01 1.30548239e-01\\n4.63644043e-02 1.57617778e-01 2.10942939e-01 -9.38930586e-02\\n-1.89529091e-01 -1.20896824e-01 1.92022502e-01 4.83548306e-02\\n1.36211485e-01 1.53590322e-01 -1.63846135e-01 -4.46112633e-01\\n-3.63659501e+00 -1.80078432e-01 -5.42014651e-03 -3.12845737e-01\\n2.97223538e-01 -1.54581055e-01 2.19552338e-01 -1.65595278e-01\\n-1.88669026e-01 3.05460449e-02 -9.51548964e-02 -1.36965632e-01\\n2.81775981e-01 2.40435064e-01 1.09840468e-01 3.13061804e-01\\n1.25040293e-01 -2.22727150e-01 4.76853130e-03 3.64664197e-01\\n-1.93489149e-01 -6.12320125e-01 2.30651960e-01 -1.06236584e-01\\n3.37590873e-01 3.19241226e-01 -4.68604296e-01 -7.57416487e-02\\n-1.80577040e-01 -2.22853854e-01 1.57241955e-01 -2.44731724e-01\\n-1.43219884e-02 2.94258326e-01 1.58158228e-01 -1.20368332e-01\\n2.44422495e-01 -3.11997265e-01 5.91555703e-03 -4.03323650e-01\\n8.40874389e-02 -5.94538689e-01 -6.14618436e-02 -6.66272342e-02\\n6.66004419e-01 -4.09932256e-01 1.95654392e-01 1.23809896e-01\\n2.07823701e-02 2.83911139e-01 4.53063548e-02 -1.76372513e-01\\n-1.97235227e-01 -2.66823083e-01 -5.79562448e-02 -2.25702286e-01\\n4.66666043e-01 6.96216285e-01 -2.94844300e-01 -6.37403950e-02\\n-8.23288560e-02 -3.42556387e-01 -5.09594858e-01 -4.12853509e-01\\n-2.54454225e-01 -1.26878396e-01 -6.33693337e-01 -4.84593600e-01\\n-1.54982507e-01 -1.42191112e-01 -5.85608259e-02 4.69030470e-01\\n-2.36090988e-01 -4.54550534e-01 -6.02466352e-02 -4.16607738e-01\\n8.01975727e-02 -9.71060023e-02 -2.93771345e-02 -9.37598273e-02\\n-2.48133451e-01 -4.78813738e-01 -6.90025929e-03 -1.76193304e-02\\n-1.49136111e-01 -8.99743140e-02 2.71314949e-01 -2.03736812e-01\\n-3.03722858e-01 -5.82876921e-01 4.73527908e-01 4.42071855e-02\\n3.33470196e-01 1.40813708e-01 2.42255077e-01 9.47453231e-02\\n3.66359681e-01 -2.70765573e-01 1.25461772e-01 -3.78114522e-01\\n8.91728625e-02 9.37936008e-02 5.73961973e-01 -2.37132847e-01\\n-2.01754272e-02 7.31562525e-02 -2.53148168e-01 -1.96580127e-01\\n3.42683792e-01 2.64596697e-02 1.71553433e-01 -3.61900806e-01\\n3.61735135e-01 -3.27515870e-01 -3.00484151e-01 1.41570300e-01\\n1.09479986e-01 5.15654206e-01 -9.24759433e-02 -4.34977323e-01\\n-2.27275729e-01 4.21392083e-01 -2.26698771e-01 -1.52374223e-01\\n-2.13429123e-01 2.97520813e-02 -3.47439438e-01 3.04347426e-01\\n-2.04450246e-02 1.73302069e-02 -3.29923093e-01 -4.20465767e-02\\n2.10618768e-02 2.77067512e-01 2.57934481e-01 1.13589779e-01\\n-4.24875617e-02 -3.79611403e-01 -2.14846246e-02 3.23617011e-02\\n1.62662297e-01 3.17998976e-01 6.05719984e-02 -1.21278904e-01\\n-2.18761172e-02 3.60093772e-01 -2.38716230e-01 2.05808297e-01\\n-2.53398567e-01 2.31435914e-02 -4.92392689e-01 -3.88980508e-01\\n-1.43900841e-01 -1.96623087e-01 -1.08339354e-01 2.94260293e-01\\n1.12443842e-01 -4.80814911e-02 4.07402106e-02 -4.20604438e-01\\n2.32162371e-01 -4.18848023e-02 2.91334361e-01 2.43431717e-01\\n-2.35292129e-02 5.76835871e-01 -1.72726139e-02 -1.37904301e-01\\n-1.62628219e-01 5.69730178e-02 -2.79366702e-01 -7.88518339e-02\\n2.56062914e-02 -4.27904785e-01 -8.10970645e-03 3.98097992e-01\\n1.08125590e-01 -3.61608803e-01 -9.99841392e-02 3.23307127e-01\\n-1.15581444e-02 -4.54943866e-01 -1.64581299e-01 1.22221999e-01\\n3.09805959e-01 1.02784693e-01 2.58078277e-01 -4.92193967e-01\\n-7.67409755e-03 9.98756289e-02 -1.29717037e-01 4.82860923e-01\\n-2.86095627e-02 1.20670937e-01 -4.59373035e-02 -3.21812332e-01\\n3.14715654e-01 -1.34326324e-01 -9.52776149e-03 -8.16570669e-02\\n1.50452837e-01 -1.22944333e-01 -4.04615492e-01 -1.07274083e-02\\n-3.86911333e-02 -9.39931050e-02 1.88949164e-02 1.31937265e-02\\n9.20329243e-02 4.48798463e-02 -4.75471020e-01 -2.82731950e-01\\n-3.28823209e-01 -1.26031414e-01 -9.33070257e-02 -3.89814317e-01\\n7.66213536e-02 -4.30215970e-02 -5.35311818e-01 3.65594536e-01\\n-1.47409961e-01 7.34477267e-02 2.19290018e-01 -3.70027847e-03\\n-4.59182531e-01 -1.23398535e-01 2.43806079e-01 2.10411221e-01\\n-3.34555000e-01 -2.70502090e-01 -6.12781830e-02 -9.74847734e-01\\n2.23563954e-01 -1.32047281e-01 -5.51519170e-02 7.02798739e-02\\n-8.03746060e-02 -5.10082066e-01 2.57669002e-01 -4.35314298e-01\\n-1.90430090e-01 -2.80766599e-02 -2.15726376e-01 -4.35656816e-01\\n-7.02216849e-02 -7.43538514e-03 -2.79765308e-01 4.07338262e-01\\n-3.65778923e-01 4.01677161e-01 -8.79502594e-02 3.65646593e-02\\n-1.05069071e-01 -1.64712012e-01 1.11720599e-01 -4.66668516e-01\\n-5.02142787e-01 -1.49727985e-01 -2.39411965e-01 -1.53811529e-01\\n-3.02266255e-02 -1.59854606e-01 -1.39973417e-01 7.52397925e-02\\n2.43774444e-01 1.40858382e-01 -2.69311313e-02 -1.26812980e-01\\n6.14742897e-02 -4.21969086e-01 -5.07393442e-02 -2.01066181e-01\\n4.59013395e-02 -1.58128083e-01 1.33343488e-01 4.38675024e-02\\n3.20338607e-02 -4.69429910e-01 4.61370587e-01 -1.42458960e-01\\n-2.73617834e-01 4.47295234e-02 6.48807660e-02 1.52496308e-01\\n3.29329491e-01 -4.24849182e-01 1.68828312e-02 3.20536673e-01\\n1.39476359e-01 1.10014372e-01 2.33474627e-01 -7.79749379e-02\\n-2.37630859e-01 3.01276982e-01 -3.39940608e-01 9.36526209e-02\\n7.64296114e-01 1.67809755e-01 1.52172565e-01 2.72762775e-01\\n1.77274048e-01 3.55184823e-01 4.46117073e-01 6.18371591e-02\\n-4.26048711e-02 4.17723596e-01 7.46866614e-02 -5.09685516e-01\\n1.17228299e-01 1.03521749e-01 -3.11587095e-01 -2.56383002e-01\\n6.21267259e-01 4.94621307e-01 -3.24777246e-01 -3.22307646e-01\\n-2.52845705e-01 -1.94170386e-01 1.16937272e-01 -2.23922640e-01\\n1.74328923e-01 -2.14896247e-01 5.12992203e-01 9.88713726e-02\\n1.07385509e-01 4.45189208e-01 -2.28208110e-01 -3.57998699e-01\\n1.01103447e-01 1.40395120e-01 1.92834616e-01 2.40782216e-01\\n-1.14868246e-01 2.20514715e-01 -5.86164743e-02 1.77401662e-01\\n-1.33047312e-01 1.18686154e-01 1.21529825e-01 9.31338668e-02\\n1.08821215e-02 7.98870325e-02 3.22156370e-01 5.01354277e-01\\n3.23970228e-01 4.31119919e-01 1.88143447e-01 7.00362027e-03\\n4.64333981e-01 5.49779534e-01 3.90707433e-01 2.16324568e-01\\n-6.71236068e-02 -1.84571594e-02 2.77564861e-02 -1.75713617e-02\\n2.70239383e-01 3.27943951e-01 4.27183136e-02 8.96209955e-01\\n4.15628254e-01 2.01356903e-01 7.06834555e-01 -5.38191974e-01\\n-4.03924614e-01 -2.20054537e-02 4.06180114e-01 -4.42725331e-01\\n-1.56852707e-01 6.34243414e-02 -2.69979745e-01 1.39637470e-01\\n-4.64405179e-01 -1.67816415e-01 -9.86833572e-02 -2.07132902e-02\\n1.56364813e-01 -7.98116028e-02 -2.51188636e-01 -1.63048536e-01\\n-2.13829294e-01 -1.47049710e-01 -4.93398756e-01 -9.49210078e-02\\n-2.43086159e-01 -2.77882189e-01 -1.40593156e-01 -1.97990164e-01\\n-2.70161703e-02 -4.08469588e-01 -2.23765329e-01 5.66765554e-02\\n2.74015367e-01 -1.26930490e-01 -4.19663452e-02 -1.30328238e-01\\n2.51100123e-01 1.97219402e-01 6.05810344e-01 -4.75016888e-03\\n7.04863444e-02 -1.73395634e-01 -1.75210580e-01 7.97345713e-02\\n2.33371556e-01 1.60470307e-01 -3.59520898e-03 4.69539464e-01\\n-4.02127236e-01 -1.48868710e-01 -1.36767412e-02 5.23167729e-01\\n-3.91351730e-01 7.47904927e-02 1.01863958e-01 2.67115712e-01\\n7.03318715e-02 3.38105075e-02 -1.85994923e-01 5.06803989e-02\\n-2.51456648e-01 -5.16831756e-01 2.65523374e-01 -7.86855295e-02\\n-1.57653168e-01 4.39037345e-02 1.11513242e-01 1.54173389e-01\\n-1.71496153e-01 -1.53831363e-01 1.05763435e-01 1.37929469e-01\\n2.76641995e-01 3.32663387e-01 -2.58737832e-01 -2.65550166e-01\\n-3.86903614e-01 1.53313428e-01 -3.75429720e-01 1.95665315e-01\\n-7.92288184e-02 2.23854959e-01 4.78915051e-02 2.10408419e-01\\n2.89527982e-01 -6.43686205e-02 -1.07713558e-01 -2.83538729e-01\\n-3.00297737e-01 -2.80480921e-01 1.03980675e-01 3.08904573e-02\\n1.03786029e-01 -4.48357999e-01 -1.15784578e-01 -5.52665740e-02\\n-1.64544910e-01 -3.73970807e-01 1.89681482e-02 -1.53350011e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Software Engineer .NET / C#. The role is permanent position based in Zürich Canton. Your role: Design and develop core components for a PC-based client-server application Develop & implement concepts independently. Carry out feature development of client & / or server: Analysis, conception, design, implementation & unit testing. Perform design & code reviews with team members. Train & support team members in development work when necessary. Work closely with cooperation partners composed of product managers, requirements engineers & development teams for software instruments. Your Skills & Profile: 3 to 5 years of relevant work experience in software engineering environment. Strong practical experience & expertise with the .NET Framework & C#. Solid know-how of phase models & agile methods. Good Knowledge of OOA / OOD, UML & OO implementations. Ideally experienced with WPF, WCF, NHibernate & Autofac. Your Profile: University Degree in Computer Science. Proactive, self-driven & consistently aim to achieve high performance. Fluent English (spoken & written), German language skills are a big plus If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Proactivity\", \"Positivity\", \"Cooperation\"]',\n", + " '[\"Application Development\", \"Production Management\", \"NHibernate\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"High Performance Computing\", \"Requirements Management\", \"Autofac\", \".NET Framework\", \"Component Object Model (COM)\", \"Instrumentation\", \"Idealization\", \"Feature-Driven Development (FDD)\", \"Reporting Application Server\", \"Software Engineering\", \"Wcf 4\", \"Requirements Engineering\", \"C# (Programming Language)\", \"Phase (Waves)\", \"Code Review\", \"Receivables\", \"Concept Analysis\"]',\n", + " \"['English']\"],\n", + " ['41',\n", + " 'software engineer - javascript/scala/machine learning',\n", + " 'Lausanne',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.19342285e-01 1.81136325e-01 4.31088746e-01 -1.60901487e-01\\n4.10918951e-01 -8.67805108e-02 -6.26184195e-02 5.22232115e-01\\n-8.42604712e-02 -2.47504920e-01 -2.18544245e-01 -3.24308634e-01\\n8.97972062e-02 1.08883873e-01 1.65337056e-01 3.10236186e-01\\n3.08304667e-01 2.56755319e-03 -3.04417580e-01 1.82255983e-01\\n2.28875801e-01 -3.78732570e-02 7.41434693e-02 7.44441450e-01\\n4.90626186e-01 1.74559981e-01 4.43047322e-02 -1.50399029e-01\\n-1.28601298e-01 -1.91238746e-01 5.72216988e-01 -4.49501425e-02\\n-6.96651191e-02 -2.08408922e-01 1.79716334e-01 9.49267820e-02\\n-1.79737762e-01 -2.00217351e-01 2.48300210e-02 2.42804617e-01\\n-3.90633553e-01 -2.98790097e-01 -1.17210681e-02 4.17491421e-02\\n-3.32288533e-01 -4.63986248e-01 2.88865060e-01 -1.55572528e-02\\n2.44128436e-01 1.31436244e-01 -4.99969244e-01 2.80061662e-01\\n-1.91263422e-01 -1.31407812e-01 3.73712003e-01 6.18750751e-01\\n-3.97483185e-02 -3.61107945e-01 -5.28609037e-01 -4.22803104e-01\\n-3.90197150e-02 1.13913007e-01 -5.71367480e-02 -2.71627784e-01\\n2.34543040e-01 1.36240572e-01 8.62427987e-03 5.11701405e-01\\n-8.12334001e-01 -1.13012016e-01 -2.39662677e-01 -8.64790380e-02\\n-3.17643136e-01 -3.25453579e-02 -1.90938011e-01 -3.58071417e-01\\n-7.14236870e-02 4.61017787e-01 1.25890851e-01 1.18652925e-01\\n-9.49859694e-02 3.59456241e-01 -1.46789208e-01 4.00276482e-01\\n1.98676348e-01 2.13330477e-01 8.39599371e-02 2.44358882e-01\\n-5.49195588e-01 3.21369290e-01 1.43215090e-01 -2.22701252e-01\\n1.93573520e-01 5.26475534e-03 4.74725157e-01 2.97191720e-02\\n1.24389142e-01 4.51385528e-02 -2.31437340e-01 2.39587903e-01\\n2.43238583e-01 -2.02112943e-01 5.23226857e-02 4.25398909e-02\\n-1.64405137e-01 3.29763144e-02 -4.62663174e-02 1.28205195e-01\\n-3.40232402e-01 4.66732472e-01 2.35703960e-02 -2.01361373e-01\\n-4.33659777e-02 -5.80004752e-01 -2.80267280e-02 1.21275103e-02\\n2.44357046e-02 1.67777181e-01 9.46337134e-02 1.78465709e-01\\n1.37468755e-01 -1.52569190e-01 1.88763335e-01 8.05732965e-01\\n-1.14600785e-01 2.74602827e-02 -2.44367778e-01 3.69928777e-01\\n-1.45950541e-01 -3.67948234e-01 3.50265443e-01 1.72814861e-01\\n4.89646289e-03 -5.96176982e-02 -2.51221180e-01 4.14095700e-01\\n-5.01370132e-02 -1.51512563e-01 -3.23573977e-01 3.54495019e-01\\n-1.70885399e-01 -3.81304085e-01 4.89407748e-01 -5.46506681e-02\\n1.25963286e-01 -1.50730595e-01 -6.12580255e-02 -3.26082595e-02\\n5.54982945e-03 6.91239387e-02 -2.51286495e-02 -1.31055294e-02\\n-2.20789805e-01 -2.38931373e-01 -2.13980854e-01 1.36114031e-01\\n-1.34211496e-01 2.65044689e-01 -5.05102053e-03 -1.08604558e-01\\n3.20245087e-01 -6.41912688e-04 -3.25966150e-01 3.79401356e-01\\n-6.15211353e-02 1.22886002e-01 -1.34850800e-01 2.10042864e-01\\n-2.70947307e-01 1.36978120e-01 -6.49424717e-02 -2.85965234e-01\\n6.70593381e-01 6.31957781e-03 1.32618472e-01 5.88973686e-02\\n2.77708024e-01 -8.46680403e-02 2.79738814e-01 1.20237604e-01\\n-7.62676060e-01 3.91593635e-01 -3.30742635e-02 -1.61631200e-02\\n6.68700337e-02 -1.90229818e-01 2.35450685e-01 -2.91392654e-01\\n3.35854553e-02 2.48182975e-02 -3.72044474e-01 -3.33673626e-01\\n-2.73872346e-01 -3.98267768e-02 3.21471035e-01 -3.50116163e-01\\n-1.99006483e-01 1.43123105e-01 -4.66322035e-01 -4.17253450e-02\\n1.51570708e-01 1.00866437e-01 1.42859682e-01 1.45642295e-01\\n-1.83142051e-01 -4.79768217e-01 5.28754815e-02 -5.36527991e-01\\n-1.89959466e-01 1.07251368e-01 -2.85337418e-01 2.26660341e-01\\n7.51121566e-02 6.71514124e-02 -1.74602315e-01 -8.21924210e-03\\n-2.28629753e-01 -5.91553375e-02 2.00148404e-01 3.31991613e-02\\n3.02762836e-01 1.14476062e-01 -3.41458499e-01 5.03612757e-01\\n-2.45982364e-01 5.12931943e-01 1.23211980e-01 -8.12644958e-01\\n4.57919210e-01 5.22098422e-01 -2.13325527e-02 -4.05561537e-01\\n7.19655275e-01 -2.63673067e-01 -6.28801510e-02 1.86544225e-01\\n-5.86722374e-01 -3.16703498e-01 2.63397336e-01 -3.64431828e-01\\n-1.82355210e-01 6.45250142e-01 6.18461147e-02 6.05282821e-02\\n1.93730548e-01 -1.97166026e-01 -1.26565933e-01 1.47543490e-01\\n-1.15413450e-01 -2.15338185e-01 -4.45533901e-01 -1.61614250e-02\\n-1.49535120e-01 -4.24727201e-01 -2.33451128e-01 -4.60280031e-01\\n-9.29819867e-02 -3.33145261e-01 -2.37518898e-03 2.18881980e-01\\n1.86330870e-01 -6.08280525e-02 1.04105487e-01 6.76739886e-02\\n-1.97936013e-01 -4.13433462e-01 5.88760115e-02 -7.81613495e-03\\n3.58421952e-01 2.71300375e-01 -1.29200204e-03 9.52208489e-02\\n-1.67398865e-03 6.82544708e-01 -3.86782557e-01 -1.17535561e-01\\n1.77442014e-01 1.73393533e-01 4.80011627e-02 -1.06415316e-01\\n9.08299237e-02 2.05960900e-01 -4.11512136e-01 -1.17996456e-02\\n-1.65786251e-01 1.37561172e-01 2.29779616e-01 4.46937270e-02\\n-1.96353987e-01 -3.24490607e-01 -1.54591382e-01 2.63263792e-01\\n-3.61809939e-01 -1.76518843e-01 6.08534455e-01 1.10960938e-01\\n1.41477585e-01 1.86081737e-01 2.43466511e-01 -1.03352562e-01\\n-2.06096902e-01 -2.26634204e-01 1.73313707e-01 2.37825394e-01\\n7.25073889e-02 7.70985857e-02 -2.84317671e-03 -4.88712609e-01\\n-2.71430135e+00 -5.74638397e-02 1.18139923e-01 -1.38285458e-01\\n1.94370031e-01 -2.54102677e-01 1.24196716e-01 -8.79071206e-02\\n-3.64636928e-01 -5.31982817e-02 -1.62161618e-01 -2.50386357e-01\\n2.40171865e-01 3.31475586e-01 1.66182712e-01 2.62444466e-01\\n7.93102533e-02 -3.50262046e-01 -2.56643910e-02 2.82971740e-01\\n-2.40375012e-01 -6.87352836e-01 1.89345852e-01 -7.94614404e-02\\n2.99564868e-01 2.21134931e-01 -4.58120793e-01 -1.83168411e-01\\n-3.27253431e-01 -3.39169681e-01 1.92315131e-01 -3.81347001e-01\\n6.05004318e-02 3.56053263e-01 2.52672285e-01 -1.59194663e-01\\n1.31252840e-01 -3.75197798e-01 -1.64503768e-01 -4.23420101e-01\\n8.64471272e-02 -6.99187517e-01 8.35179910e-02 -1.27526388e-01\\n6.57840014e-01 -3.28761876e-01 1.09929599e-01 8.71486380e-04\\n1.15118906e-01 1.28030613e-01 -6.34490454e-04 1.09039731e-01\\n-2.71551907e-01 -2.59697855e-01 -1.02733955e-01 -1.56282812e-01\\n4.04876202e-01 6.70983613e-01 -2.06097111e-01 1.48781005e-03\\n-4.46171127e-02 -2.83934057e-01 -4.17712122e-01 -4.10557717e-01\\n-2.13394880e-01 -2.10029364e-01 -6.52326882e-01 -3.83003980e-01\\n-4.71648835e-02 -1.27612293e-01 -1.95811931e-02 5.00996768e-01\\n-3.61822158e-01 -2.57012248e-01 -1.07394345e-01 -5.99090993e-01\\n2.63237059e-01 -6.26404658e-02 1.00035612e-02 -1.66280985e-01\\n-2.05776781e-01 -4.43390340e-01 4.44217511e-02 -3.27809416e-02\\n-9.73256677e-02 -3.13276112e-01 1.29013404e-01 -2.09248677e-01\\n-2.82249212e-01 -4.64406490e-01 2.94110566e-01 1.80835947e-01\\n2.89424986e-01 1.72436297e-01 1.29402593e-01 -1.02223583e-01\\n1.11000828e-01 -4.63343551e-03 3.37298103e-02 -3.94715726e-01\\n6.76604435e-02 2.66956119e-03 4.64268237e-01 -2.20577046e-01\\n1.15164973e-01 9.65706706e-02 -2.71096319e-01 -1.07297376e-01\\n2.31599063e-01 2.05715448e-02 4.86085974e-02 -2.81832665e-01\\n3.06731254e-01 -3.31665426e-01 -7.12709725e-02 1.13251600e-02\\n3.07341088e-02 6.67900860e-01 -5.88539951e-02 -3.51268977e-01\\n-2.49013126e-01 5.05070508e-01 6.33997796e-03 -1.83792219e-01\\n-2.04912558e-01 1.87133789e-01 -3.54243994e-01 -9.99365300e-02\\n2.29420699e-02 -1.52171165e-01 -3.42947274e-01 -9.42999870e-02\\n-5.12667149e-02 3.82685244e-01 3.00624460e-01 2.15948790e-01\\n2.79616173e-02 -4.22449261e-01 6.12730682e-02 3.19320142e-01\\n1.97118789e-01 3.32690448e-01 1.68936417e-01 -2.76271641e-01\\n1.28320202e-01 3.88148159e-01 -1.74902081e-01 2.47394174e-01\\n-2.28138819e-01 -2.66975965e-02 -4.52379197e-01 -3.20220023e-01\\n-2.45751008e-01 -2.66670674e-01 1.50615126e-01 2.59572923e-01\\n9.42377187e-03 2.96353381e-02 6.87748194e-02 -3.58052462e-01\\n3.32783669e-01 -3.63968872e-02 2.58961469e-01 1.07383698e-01\\n5.93451075e-02 6.23828888e-01 1.38840020e-01 -5.25347255e-02\\n-1.84954688e-01 3.73546444e-02 -1.58487365e-01 -2.47711375e-01\\n3.01026506e-03 -4.25581127e-01 -2.28361338e-01 3.69653970e-01\\n3.76352556e-02 -2.49631286e-01 -1.13479912e-01 2.19415635e-01\\n5.15291952e-02 -2.18812093e-01 -1.51501268e-01 3.01592462e-02\\n3.78630966e-01 1.53287947e-01 1.86932430e-01 -5.11538029e-01\\n9.72272828e-02 -2.30892524e-02 -1.80621184e-02 4.41557646e-01\\n1.39098063e-01 1.25697991e-02 -2.61261374e-01 -3.08790058e-01\\n3.34632576e-01 -3.42663169e-01 -1.95402093e-02 2.01656707e-02\\n3.63726839e-02 -1.25110298e-01 -4.24573243e-01 9.10349935e-02\\n-6.42896369e-02 -1.16678514e-01 -7.60053173e-02 6.93906471e-02\\n1.95207477e-01 -3.03827897e-02 -6.43123865e-01 -2.44738027e-01\\n-2.82264322e-01 1.56612977e-01 -4.07660613e-03 -4.70483243e-01\\n-3.52718569e-02 -1.61820143e-01 -6.25119627e-01 3.13072085e-01\\n-2.71256030e-01 -1.46929668e-02 1.92158967e-01 3.49590811e-03\\n-3.72740060e-01 -2.59224661e-02 1.99121699e-01 1.96224809e-01\\n-3.38736057e-01 -3.04571658e-01 8.51263553e-02 -9.57494140e-01\\n6.92129508e-02 -3.61912027e-02 -1.63678098e-02 1.53977156e-01\\n6.73978403e-02 -8.00652921e-01 1.17523737e-01 -2.42552936e-01\\n-8.47847611e-02 -8.27525035e-02 -2.08409399e-01 -5.94122231e-01\\n4.70246971e-02 8.07676241e-02 -1.07013792e-01 2.92061239e-01\\n-4.20337498e-01 3.18811625e-01 -6.62466809e-02 4.21071537e-02\\n2.52626725e-02 -2.71317542e-01 1.52913183e-01 -4.19835389e-01\\n-2.17567176e-01 -1.13802657e-01 -2.68537283e-01 -2.79424906e-01\\n-2.64740400e-02 -2.29366049e-01 -7.39524812e-02 1.20868616e-01\\n3.12948197e-01 2.73460913e-02 -9.62467045e-02 -1.79499775e-01\\n1.02025084e-01 -4.32507277e-01 7.13376701e-02 -1.68989927e-01\\n-9.91764069e-02 -1.98152885e-01 2.32822016e-01 1.86861813e-01\\n9.11485553e-02 -4.01329190e-01 4.16251004e-01 -3.85343075e-01\\n-4.98724461e-01 -2.77024768e-02 -3.82275097e-02 -2.71633035e-03\\n4.49894577e-01 -4.09570068e-01 -7.89676607e-02 4.51759219e-01\\n9.49817598e-02 -5.09302355e-02 4.08575326e-01 -2.04133227e-01\\n-6.54539764e-02 3.09752375e-01 -5.06745756e-01 2.93327272e-02\\n7.54946113e-01 7.50260726e-02 1.30431861e-01 1.87825441e-01\\n5.32671958e-02 1.56089142e-01 4.70147043e-01 8.10024794e-03\\n-1.22578867e-01 3.26220810e-01 1.49382323e-01 -5.15533209e-01\\n-1.32689387e-01 -2.19930008e-01 -1.46906778e-01 -3.41371298e-01\\n6.50402606e-01 3.04198772e-01 -2.86466449e-01 -2.05696926e-01\\n-2.29582801e-01 -2.32447207e-01 1.33902729e-01 -7.73866102e-02\\n1.74898244e-02 -4.98972051e-02 4.47491139e-01 2.11403109e-02\\n4.27219003e-01 5.04204273e-01 -9.83430222e-02 -2.72266924e-01\\n-1.04540102e-01 2.06998542e-01 -1.08292736e-01 2.92599291e-01\\n-9.69199836e-02 5.14105797e-01 3.54764275e-02 8.58753994e-02\\n-1.09720446e-01 -1.90725680e-02 9.30355564e-02 1.53255817e-02\\n8.87968764e-02 2.73327738e-01 2.41285786e-01 4.79711711e-01\\n3.92003149e-01 4.46622759e-01 2.95904219e-01 3.48261893e-02\\n5.73025823e-01 5.92399836e-01 4.27761525e-01 5.42831942e-02\\n-5.47832288e-02 2.84770448e-02 3.61264087e-02 1.00322232e-01\\n3.54003787e-01 3.12172234e-01 5.90910055e-02 9.76930201e-01\\n4.03424442e-01 3.03128541e-01 6.96769953e-01 -5.57572961e-01\\n-3.79510522e-01 -1.08129755e-01 4.30003881e-01 -4.55606550e-01\\n-6.66758642e-02 1.36496872e-01 -1.10436454e-01 2.07791626e-01\\n-3.27172130e-01 -1.52637452e-01 -2.90899314e-02 1.88968569e-01\\n2.36313306e-02 -3.48529741e-02 -1.58427462e-01 2.42009610e-02\\n-3.43573332e-01 -2.27847427e-01 -4.82903779e-01 -2.36538006e-03\\n-2.76970983e-01 -2.69974768e-01 -1.45564815e-02 -1.03661746e-01\\n-2.57667601e-01 -2.94177145e-01 -1.21997736e-01 3.09795402e-02\\n3.50861400e-01 -1.64819911e-01 -1.37814760e-01 -2.99447089e-01\\n3.19494784e-01 2.33509839e-01 6.21406555e-01 -1.31062074e-02\\n4.71575856e-02 -2.93080389e-01 -2.61988401e-01 9.25703645e-02\\n1.59121886e-01 5.10298051e-02 1.12252288e-01 2.82947332e-01\\n-2.32727319e-01 -9.53059196e-02 1.26616910e-01 3.61890644e-01\\n-3.67958635e-01 -3.73639390e-02 -7.27146585e-03 2.25033611e-01\\n1.22023478e-01 1.49894476e-01 -2.97193050e-01 1.08350821e-01\\n-1.88325658e-01 -5.72522521e-01 2.64368594e-01 -3.25062014e-02\\n-6.84223920e-02 -7.28884935e-02 2.78501868e-01 2.43510440e-01\\n-1.50746718e-01 -7.76211023e-02 -7.21939877e-02 1.33978903e-01\\n1.19384579e-01 3.44789654e-01 -3.54178101e-01 -2.20660478e-01\\n-1.99023068e-01 2.45924294e-01 -3.51511598e-01 1.08043261e-01\\n5.17625101e-02 4.13835257e-01 5.78689836e-02 -2.94870231e-03\\n3.73335868e-01 -1.30798388e-02 -1.92066714e-01 -2.05476671e-01\\n-1.03885517e-01 -3.33876401e-01 -2.55587772e-02 -1.19787760e-01\\n2.04682708e-01 -3.53458792e-01 -1.34133622e-01 -2.62693256e-01\\n-1.05370209e-01 -1.85946152e-01 4.05000933e-02 1.02388568e-01]]',\n", + " 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer - Javascript/Scala/Machine LearningYour mission : The IIPP Chair at the College of Management at EPFL Switzerland, is seeking a Software Engineer - Javascript/Scala/Machine Learning to lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io. The IIPP Chair is the Chair of Innovation and Intellectual Property Policy of Prof. de Rassenfosse. The Chair is part of the College of Management at EPFL. Main duties and responsibilities include : Lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io Your profile : Self-motivated and talented software engineer who holds a master’s degree in computer science or related disciplines Two years of experience in web development, including Javascript/HTML5/CSS Two years of experience in back-end development Strong knowledge of object-oriented and functional programming languages (preferably Scala) Keen interest in algorithms and machine learning Some knowledge of MySQL and UNIX Familiar with continuous integrating and delivery (DevOps) We offer : We offer a competitive salary commensurate with skills and experience, and subject to EPFL pay scale. Flexible working conditions in a highly international and stimulating environment. EPFL is a highly international, world-class engineering university. It offers many CS-related events and training and hosts a vibrant entrepreneurial community. EPFL is an equal-opportunity employer. Candidates will be recruited on merit only. If you are a passionate engineer and you fit the above criteria, we want to hear from you! Start date : To be agreed Term of employment : Fixed-term (CDD) Work rate : 70-100% Duration : 1 year, renewable Contact : Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " '[\"Self-Motivation\", \"Research\", \"Management\", \"Communications\", \"Innovation\"]',\n", + " '[\"MySQL\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"JavaScript Engine\", \"Machine Learning\", \"Continuous Integration\", \"Educational Research\", \"Scale (Map)\", \"Scala (Programming Language)\", \"HTML5\", \"Machining\", \"Web Development\", \"Software Engineering\", \"Hosting\", \"Library For WWW In Perl\", \"Equalization\", \"Intellectual Property\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Functional Programming\", \"Back End (Software Engineering)\", \"Algorithms\", \"Unix\", \"Web Platforms\", \"DevOps\"]',\n", + " \"['English', 'Panjabi', 'Kwanyama']\"],\n", + " ['124',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.12718710e-01 1.10670008e-01 4.75184590e-01 -3.31541561e-02\\n5.69552958e-01 -1.60082176e-01 -7.25976750e-02 4.56851900e-01\\n-9.39485431e-03 -3.46985042e-01 -8.97977054e-02 -1.99055016e-01\\n-8.65264684e-02 1.58009958e-02 1.02504492e-01 2.59520143e-01\\n3.06469977e-01 1.36347577e-01 -2.48786330e-01 3.25105458e-01\\n1.79310754e-01 -2.32021026e-02 1.37772277e-01 6.70434237e-01\\n4.32870984e-01 -9.26994905e-03 -5.02437763e-02 1.68501791e-02\\n-3.41383606e-01 -2.54121363e-01 3.67121607e-01 8.42692852e-02\\n-7.05615878e-02 -3.59335333e-01 1.45708352e-01 8.81755725e-03\\n-1.51054129e-01 -4.73292582e-02 -2.31389552e-02 1.41306147e-01\\n-4.23853874e-01 -8.47265050e-02 3.57912071e-02 1.68432042e-01\\n-1.48513973e-01 -3.20981532e-01 1.53395742e-01 7.15538859e-02\\n1.64333247e-02 -6.99292794e-02 -5.31052053e-01 2.89238751e-01\\n-2.30182275e-01 -1.60018951e-01 3.27089399e-01 5.50157547e-01\\n-8.36343616e-02 -4.28591281e-01 -3.96054715e-01 -3.07384968e-01\\n5.95142469e-02 -1.71042472e-01 1.51446328e-01 -2.11977735e-01\\n3.31668735e-01 -2.31110733e-02 -3.43213091e-03 2.97998548e-01\\n-7.79415309e-01 -5.81556968e-02 -1.41546845e-01 -1.76338837e-01\\n-3.18232208e-01 -2.24399015e-01 -1.93985447e-01 -4.46574651e-02\\n-1.71832874e-01 3.20438266e-01 -6.34812191e-03 5.26670851e-02\\n-6.86931312e-02 2.12634176e-01 -2.00736940e-01 3.13361734e-01\\n2.52206504e-01 2.17922837e-01 1.51003763e-01 3.45444053e-01\\n-2.80736625e-01 3.58816803e-01 1.37060717e-01 -2.95692831e-01\\n2.77554035e-01 4.61736321e-02 4.52695072e-01 -1.02109641e-01\\n1.33541137e-01 1.27233073e-01 -1.72725827e-01 2.61346072e-01\\n2.25934163e-01 -2.93657184e-01 3.51308547e-02 -1.02400355e-01\\n-1.25162467e-01 3.93865891e-02 1.34616476e-02 3.91661078e-01\\n-2.72497803e-01 3.95819575e-01 1.96953848e-01 -1.68162256e-01\\n-5.27839642e-03 -5.32436013e-01 -6.35794401e-02 -2.85449419e-02\\n2.27576680e-02 1.41635060e-01 2.99577534e-01 1.95003539e-01\\n3.15216422e-01 5.50945289e-02 1.77949935e-01 7.82162249e-01\\n-6.95528388e-02 -1.06485942e-02 -1.83141634e-01 3.71077567e-01\\n9.47134420e-02 -3.52449417e-01 2.07145333e-01 2.55971640e-01\\n8.44329000e-02 -4.29405048e-02 -2.09174842e-01 3.19562584e-01\\n-5.72665446e-02 -1.91153005e-01 -2.65503317e-01 8.97026062e-02\\n-1.28501087e-01 -3.72112185e-01 5.62508404e-01 1.56871960e-01\\n1.82912469e-01 -5.53048588e-02 -3.94426426e-03 -2.21927717e-01\\n-4.68951911e-02 2.87027925e-01 9.74720940e-02 1.88746959e-01\\n-1.85686409e-01 -1.10682644e-01 -2.17966035e-01 1.81002915e-01\\n-2.57769823e-01 7.08091408e-02 -7.26538822e-02 -5.00200726e-02\\n3.62583697e-01 -2.00315248e-02 -2.42031783e-01 2.19914317e-01\\n3.02398708e-02 4.06021476e-02 -1.06041133e-01 3.07472825e-01\\n-2.29071662e-01 2.34056324e-01 -1.36502251e-01 -7.84502849e-02\\n6.44152164e-01 1.61935315e-01 2.14210033e-01 -3.28235291e-02\\n2.50620186e-01 -7.06445798e-02 1.67265102e-01 7.12040365e-02\\n-8.15086186e-01 2.42198512e-01 1.28117274e-03 -1.65778592e-01\\n6.76135942e-02 -5.00779673e-02 1.37460813e-01 -3.51681769e-01\\n4.32248600e-02 -1.54658869e-01 -3.77197415e-01 -2.91289896e-01\\n-3.03335607e-01 -9.16837007e-02 3.07800502e-01 -4.15722877e-01\\n-1.02222636e-01 2.00834513e-01 -5.02035618e-01 3.72994356e-02\\n1.83305636e-01 1.77630514e-01 4.49362583e-02 1.15844019e-01\\n-5.32674938e-02 -5.16095459e-01 6.99020997e-02 -3.28726798e-01\\n-2.88491368e-01 1.62937149e-01 -2.47179538e-01 2.99806535e-01\\n8.17100406e-02 -3.60871688e-03 -5.27518056e-02 2.28180990e-01\\n-1.02618970e-01 -1.21068411e-01 1.88411877e-01 6.55864552e-02\\n2.54900992e-01 7.91452155e-02 -4.36164886e-01 4.37535971e-01\\n-2.04018384e-01 5.89163840e-01 1.02276370e-01 -7.77375340e-01\\n4.37204629e-01 3.24561894e-01 6.48089424e-02 -3.41800421e-01\\n6.36652648e-01 -1.69620857e-01 1.53298108e-02 7.70890489e-02\\n-4.41106647e-01 -3.21914732e-01 2.47038200e-01 -1.36424556e-01\\n-1.91462532e-01 4.89517599e-01 4.56175320e-02 5.19953435e-03\\n1.95847452e-01 -1.99075177e-01 -5.01468070e-02 3.65773179e-02\\n-1.21756531e-01 -2.94013977e-01 -4.61595267e-01 -4.91148829e-02\\n-1.14157505e-01 -4.44583118e-01 -1.26388982e-01 -3.75852644e-01\\n-2.06945211e-01 -3.22829634e-01 -2.07525894e-01 2.34229311e-01\\n2.03865364e-01 1.66954443e-01 -1.32062072e-02 2.37189997e-02\\n-2.29091525e-01 -5.97406268e-01 -2.53920234e-03 8.40099901e-02\\n3.77256215e-01 2.09424272e-01 1.02357976e-01 -1.86912585e-02\\n-1.24870762e-01 6.59388185e-01 -2.65086740e-01 -6.37472123e-02\\n1.81517839e-01 2.24729568e-01 6.41338155e-02 -1.10455289e-01\\n-1.14096198e-02 3.50315392e-01 -2.16362074e-01 1.63446777e-02\\n-1.03627004e-01 -7.60748684e-02 4.34545428e-01 2.02471707e-02\\n-2.71126121e-01 -2.40514025e-01 -4.98008206e-02 2.19685823e-01\\n-4.63799328e-01 -1.55582711e-01 6.35922015e-01 3.00473094e-01\\n2.06713691e-01 2.17857823e-01 1.91894814e-01 -1.05688877e-01\\n-1.28329784e-01 -2.90801406e-01 3.11618835e-01 1.38225809e-01\\n1.68557122e-01 1.23579711e-01 -1.66140854e-01 -5.96358597e-01\\n-3.53283405e+00 -1.64912969e-01 1.76509857e-01 -3.28984261e-01\\n1.09984174e-01 -1.17865667e-01 -1.39584824e-01 -1.46593168e-01\\n-2.26898283e-01 1.09511226e-01 -2.12813944e-01 -2.69764543e-01\\n2.24568531e-01 2.26212189e-01 1.37748510e-01 3.02404076e-01\\n2.31716678e-01 -1.49721682e-01 7.57346908e-03 1.73221111e-01\\n-3.42497349e-01 -5.52999556e-01 2.60361671e-01 -3.25897820e-02\\n3.42976838e-01 4.00614530e-01 -2.75678575e-01 -2.59755522e-01\\n-2.44935572e-01 -2.62971163e-01 2.63636727e-02 -3.30364555e-01\\n-5.86436205e-02 3.28728765e-01 1.46820843e-01 -1.61966845e-01\\n1.91452384e-01 -3.43591660e-01 -5.06713763e-02 -4.04672235e-01\\n8.26874822e-02 -4.13416058e-01 -3.02240681e-02 -5.08640260e-02\\n7.34365463e-01 -4.10922140e-01 1.48562327e-01 1.37132227e-01\\n2.51234561e-01 2.06326500e-01 -3.90384682e-02 -5.87912910e-02\\n-2.58642286e-01 -1.34982914e-01 -8.38747621e-02 -1.50602043e-01\\n4.60600466e-01 5.76390684e-01 -2.07731828e-01 6.07291460e-02\\n1.76067501e-02 -3.20771903e-01 -2.81750977e-01 -2.87910014e-01\\n-1.34599343e-01 -3.14505786e-01 -4.89336461e-01 -3.61866951e-01\\n-4.56856042e-02 -2.04332527e-02 -1.28606603e-01 5.82632720e-01\\n-1.87858805e-01 -4.79950458e-01 -1.34232873e-02 -5.14285147e-01\\n7.88142383e-02 -1.45390570e-01 -4.92166821e-03 -1.79838151e-01\\n-1.04273111e-01 -4.92918193e-01 4.75566126e-02 -2.23151576e-02\\n-1.09107792e-01 -3.50248814e-01 9.56417993e-02 -1.17105290e-01\\n-2.31957301e-01 -5.50469100e-01 3.18325698e-01 1.21233135e-01\\n2.62410462e-01 9.83931795e-02 1.64810479e-01 1.12242542e-01\\n2.45010570e-01 -3.01274002e-01 8.95757303e-02 -3.86696041e-01\\n2.06775680e-01 -3.99843697e-03 5.00576675e-01 -1.94019094e-01\\n6.88759238e-02 1.84414431e-01 -2.64946133e-01 -1.07918791e-01\\n3.15362632e-01 9.43630561e-02 9.17450413e-02 -1.87196746e-01\\n3.37431490e-01 -4.16387230e-01 -2.63860971e-01 6.32998720e-02\\n-3.74885648e-02 5.00317335e-01 -4.79320027e-02 -3.58302653e-01\\n-1.30018353e-01 4.61492151e-01 -9.25939232e-02 -2.08459377e-01\\n-1.70828104e-01 9.59294587e-02 -1.22736216e-01 1.70590743e-01\\n6.15473986e-02 -2.28921279e-01 -3.15639704e-01 -1.64479196e-01\\n-5.71926609e-02 2.15553910e-01 2.34726235e-01 3.35783288e-02\\n3.87717411e-03 -3.30380470e-01 5.35378419e-02 1.25451773e-01\\n1.44117251e-01 3.53448987e-01 2.47955415e-02 -1.14867717e-01\\n-5.18599898e-02 3.18735838e-01 -9.90720019e-02 2.05109492e-01\\n-2.30546817e-01 -1.61895305e-02 -4.45723206e-01 -2.24193379e-01\\n-2.20119506e-01 -3.16136777e-01 6.43201079e-03 1.50462195e-01\\n1.04363553e-01 1.52094662e-02 -4.16187197e-02 -4.36461240e-01\\n3.42555195e-01 -5.38821109e-02 2.80280024e-01 2.12995023e-01\\n-4.33207303e-02 4.08671558e-01 2.05697827e-02 -6.98305443e-02\\n-2.02849299e-01 1.56739622e-01 -1.68497950e-01 -1.07083447e-01\\n1.26849553e-02 -4.49319005e-01 -7.01745003e-02 3.53944868e-01\\n3.42339464e-02 -3.27452809e-01 -1.46854416e-01 1.84733301e-01\\n-3.22363935e-02 -2.91881710e-01 -1.51817352e-01 3.82919461e-02\\n3.42724174e-01 -5.87161630e-03 3.45243305e-01 -3.62602532e-01\\n-1.06267586e-01 2.17560166e-03 -1.12053879e-01 4.87787575e-01\\n4.24789786e-02 5.96854463e-02 -8.26710388e-02 -2.93139279e-01\\n2.55333096e-01 -6.91333115e-02 -9.90862846e-02 3.49178016e-02\\n1.09669901e-01 -1.88418955e-01 -5.21453142e-01 1.75913132e-03\\n2.82762386e-02 -8.56460184e-02 2.51963418e-02 9.83123928e-02\\n1.49539769e-01 9.49136764e-02 -5.79984605e-01 -3.42897534e-01\\n-3.39955539e-01 -9.51370969e-02 6.23938888e-02 -3.32857847e-01\\n-8.20384324e-02 -4.07100394e-02 -5.84246874e-01 2.33391866e-01\\n-1.75940439e-01 -8.40682983e-02 1.27914891e-01 6.68329187e-03\\n-3.36378634e-01 -2.69900472e-03 1.72126234e-01 2.11603746e-01\\n-3.03627610e-01 -2.57374197e-01 1.31622598e-01 -1.01720822e+00\\n2.00547591e-01 6.86768163e-03 -7.49853104e-02 -1.92255732e-02\\n-6.75750747e-02 -5.61195612e-01 5.74049652e-02 -4.01492804e-01\\n-5.64935729e-02 -1.00407088e-02 -1.97284684e-01 -4.66606468e-01\\n8.69494230e-02 -8.38179141e-02 -3.06868583e-01 4.34492677e-01\\n-3.23680937e-01 3.74145329e-01 -4.98623922e-02 7.96938688e-02\\n-3.26891877e-02 -3.11599135e-01 1.26220301e-01 -4.36862916e-01\\n-4.38858747e-01 -8.41317549e-02 -3.09086442e-01 -1.08355090e-01\\n1.16099209e-01 -2.39239082e-01 -9.41130891e-02 4.01942730e-02\\n3.65165949e-01 2.39352472e-02 -1.78526416e-01 -2.86411196e-01\\n5.09746075e-02 -4.74315137e-01 1.22491986e-01 -1.02762833e-01\\n-1.20330654e-01 -3.34377028e-02 7.17092603e-02 7.60539025e-02\\n3.73299271e-02 -4.19745982e-01 3.47955912e-01 -2.89118141e-01\\n-2.87288696e-01 -1.71999671e-02 1.09056465e-01 1.44922482e-02\\n1.73615053e-01 -5.45116782e-01 -1.68892015e-02 3.45015317e-01\\n3.63763534e-02 1.24727800e-01 2.33098254e-01 -1.23717906e-02\\n-5.54527156e-02 3.32082033e-01 -2.59306550e-01 3.03124581e-02\\n7.23120093e-01 3.08251008e-02 4.15100381e-02 2.57384181e-01\\n2.45725945e-01 3.40794504e-01 4.25681174e-01 3.80517505e-02\\n-1.00565404e-01 2.38715172e-01 -3.81433815e-02 -6.82809651e-01\\n8.19775239e-02 4.83994223e-02 -1.99874684e-01 -4.64724243e-01\\n6.90540373e-01 4.51806784e-01 -3.37007135e-01 -2.57907242e-01\\n-7.44212493e-02 -1.16033733e-01 5.76912872e-02 -1.37315720e-01\\n1.42517880e-01 -1.62721321e-01 5.01554251e-01 -3.76961268e-02\\n2.04613194e-01 5.21006644e-01 -2.01255247e-01 -4.09145981e-01\\n-5.56958765e-02 1.45002350e-01 1.00933045e-01 5.46358883e-01\\n-2.09273189e-01 3.04940075e-01 2.73396913e-03 1.46520227e-01\\n-1.44312242e-02 1.79971069e-01 3.59536335e-02 4.67083082e-02\\n1.31515726e-01 -4.02162969e-02 3.46305132e-01 3.83515894e-01\\n3.19380850e-01 4.55225527e-01 3.22439224e-01 3.29549164e-02\\n5.28798938e-01 5.44467866e-01 4.24797446e-01 1.92358255e-01\\n-1.03390820e-01 4.17311341e-02 6.57252669e-02 -1.51358889e-02\\n2.86080688e-01 2.95822740e-01 2.14015823e-02 8.77493799e-01\\n5.03477752e-01 2.13869169e-01 6.34135604e-01 -6.44551873e-01\\n-3.06712121e-01 -9.60781127e-02 3.37035000e-01 -2.63259917e-01\\n-6.30480647e-02 1.02037191e-01 -1.37230366e-01 2.73399770e-01\\n-3.77271861e-01 -1.56726763e-01 -3.40395272e-02 1.51002750e-01\\n7.52778128e-02 -4.60717231e-02 -3.45592111e-01 2.45063044e-02\\n-1.42694175e-01 -1.94053799e-01 -6.03991389e-01 -7.24309087e-02\\n-2.89841473e-01 -2.23297849e-01 -7.52496868e-02 -1.87227726e-01\\n-1.27276093e-01 -3.20762247e-01 -1.43152714e-01 -6.13771612e-03\\n2.46454671e-01 -1.38288751e-01 -3.07585243e-02 -2.84276694e-01\\n2.99108595e-01 1.83433607e-01 4.68343616e-01 -1.13699242e-01\\n1.53801590e-01 -2.25997627e-01 -2.95881897e-01 1.05147555e-01\\n1.57206491e-01 8.77672136e-02 3.04993987e-02 3.56749564e-01\\n-3.33115608e-01 -7.28528202e-02 2.21941471e-01 3.74152452e-01\\n-4.89055097e-01 1.68205034e-02 -2.58056726e-03 2.86537230e-01\\n9.98579636e-02 1.45134419e-01 -2.68062890e-01 3.77636738e-02\\n-2.18111828e-01 -4.93041754e-01 3.00931811e-01 -3.82694229e-02\\n-8.88267979e-02 1.86702445e-01 2.31924757e-01 2.04290092e-01\\n-2.40811303e-01 -5.96433766e-02 -6.66469112e-02 1.98056191e-01\\n1.53466508e-01 3.27050567e-01 -2.28249490e-01 -2.55908400e-01\\n-2.18592197e-01 1.50415406e-01 -3.20769757e-01 1.13673970e-01\\n-1.28965855e-01 2.35460579e-01 1.00536861e-01 8.53970349e-02\\n2.83914268e-01 3.75412740e-02 -1.57884791e-01 -1.76064670e-01\\n-2.19078660e-01 -2.44343072e-01 3.22884656e-02 -1.08290367e-01\\n2.06559792e-01 -3.71505409e-01 -6.91285059e-02 -3.66223454e-02\\n-2.40121603e-01 -3.35044056e-01 -1.07151186e-02 -4.27005515e-02]]',\n", + " 'As a pioneer in Swiss online wealth management we are changing the way people invest their money. Our product is transparent and easy to use, while also suited for the demanding investor, who is looking for individual solutions and full control. Investing with True Wealth saves your time and your money. To help us to further develop our digital wealth management solution and bring it to the next level, we are looking for a Software Engineer. Requirements Your profile: You have a strong foundation as a Software Engineer (engineering degree), with an inclination towards functional concepts, types and good software design You are a team player who writes clean and elegant code and shares our passion of building a great platform. You possess strong skills in at least one typed programming language. Experience with Java and TypeScript is an advantage but not necessarily required. You are interested and might be experienced in web application development, from browsers down to the database. You might have business domain knowledge from finance, trading, or portfolio management You are fluent in English and are based in or around Zurich (we offer help with relocation). German skills are an advantage but not required. You need to hold or be eligible for a work permit in Switzerland (e.g. via Swiss or EU/EFTA citizenship) Benefits We offer: Responsibility, ownership and influence on the further development of our best-in-class roboadvice solution. Flexibility, exposure and opportunities to work across the entire stack, depending on preferences and skills. Backend stack: Java 12, Java EE (CDI, JAX-RS, JMS), jOOQ, Wildfly, Lombok, Gradle, Docker, PostgreSQL. Front-end stack: TypeScript, React, Redux. Competitive salary package, solidly financed growth company. Continuous integration, single command deployments. Office in Zürich (near station Zürich Binz SZU, 2 stops from HB). In your application, please include your full CV as well as references and possibly public samples to previous work, e.g. on GitHub. We do not work with recruitment agencies.',\n", + " '[\"Typing\", \"Writing\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"KM Programming Language\", \"Investment Control\", \"Continuous Integration\", \"Wealth Management\", \"TypeScript\", \"Java EE Application\", \"PostgreSQL\", \"WildFly (JBoss AS)\", \"Gradle\", \"E (Programming Language)\", \"Levelling\", \"Lombok\", \"Software Engineering\", \"Java Message Service (JMS)\", \"Investments\", \"Portfolio Management\", \"Github\", \"Docker (Software)\", \"React Redux\", \"Finance\", \"Experimental Software Engineering\", \"Digitization\", \"Software Design\", \"Front End (Software Engineering)\", \"Software Requirements Specification\", \"Language Experience Approach\", \"Java (Programming Language)\", \"Trade Finance\", \"Web Application Development\", \"Custom Backend\"]',\n", + " \"['English', 'Pashto', 'Letzeburgesch', 'Avaric', 'Aymara']\"],\n", + " ['75',\n", + " 'junior data analyst',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.69903481e-01 3.30211699e-01 3.92661035e-01 4.90615964e-02\\n5.56073964e-01 -4.56960872e-02 1.97432823e-02 2.03761920e-01\\n-1.14606410e-01 -2.59626091e-01 -6.09852895e-02 -2.39072815e-01\\n-1.46226600e-01 2.28210520e-02 1.02569878e-01 4.44392890e-01\\n2.21634388e-01 1.38972506e-01 -1.40524939e-01 3.04671645e-01\\n1.15937673e-01 -1.00240514e-01 -9.84825194e-02 6.73958302e-01\\n5.08503199e-01 1.85407437e-02 -2.31237620e-01 5.71484007e-02\\n-3.82248580e-01 -3.01472396e-01 3.43140543e-01 9.73194018e-02\\n-1.39029562e-01 -3.78364325e-01 1.07878134e-01 1.27601147e-01\\n-2.35481039e-01 4.53270879e-03 -8.93662572e-02 2.39326522e-01\\n-4.66389835e-01 -2.46199742e-01 4.14232537e-02 7.08748251e-02\\n-2.36647680e-01 -2.56346852e-01 -1.17730774e-01 -3.74902412e-02\\n-2.94771735e-02 7.94671327e-02 -5.94967782e-01 4.93730962e-01\\n-2.30061308e-01 -2.44092524e-01 1.82035565e-01 7.39780784e-01\\n1.21820599e-01 -5.53129792e-01 -3.08142394e-01 -3.74406427e-01\\n-2.36968882e-02 -1.12940542e-01 1.33159161e-01 -2.37707719e-01\\n3.32335234e-01 4.84203827e-03 -5.79093210e-02 4.24355984e-01\\n-8.62976730e-01 -9.71233025e-02 -2.24476844e-01 -2.22595390e-02\\n-5.32340348e-01 5.94385602e-02 -3.59243333e-01 -6.88645244e-02\\n-1.18864454e-01 3.67610186e-01 -4.74069417e-02 8.26179534e-02\\n-1.70148581e-01 2.23239958e-01 -1.21832490e-02 1.70375019e-01\\n3.08648199e-01 1.81487590e-01 3.40257764e-01 3.66689950e-01\\n-3.18727314e-01 3.68465990e-01 1.17254652e-01 -2.63595492e-01\\n2.16223836e-01 1.54409528e-01 5.19486368e-01 5.11390567e-02\\n-6.45652488e-02 1.29642174e-01 -2.53183067e-01 2.99986809e-01\\n1.61745206e-01 -4.39516872e-01 1.31676912e-01 8.29570089e-03\\n-1.73895523e-01 6.91733137e-02 9.78381485e-02 2.59390116e-01\\n-3.07596564e-01 4.34935749e-01 1.39447704e-01 -2.06035927e-01\\n-3.61505784e-02 -6.10142708e-01 -1.00276120e-01 -4.69638361e-03\\n1.17541723e-01 3.94250423e-01 2.72953212e-01 1.00699633e-01\\n2.63319761e-01 1.22485673e-02 2.11649716e-01 8.42800319e-01\\n4.15918492e-02 8.90497267e-02 -1.77863166e-01 3.18379700e-01\\n3.25477928e-01 -1.96858913e-01 1.95026726e-01 2.44496241e-01\\n8.95442665e-02 -6.68318942e-02 -3.25990647e-01 3.09875816e-01\\n-1.65617988e-01 -1.64334849e-01 -3.22462916e-01 6.12857789e-02\\n-2.42983088e-01 -4.15133566e-01 5.81723511e-01 8.22580010e-02\\n2.96112478e-01 -1.04103237e-01 1.71245597e-02 -3.75425480e-02\\n-6.51072264e-02 4.05751258e-01 5.91281131e-02 2.82216817e-01\\n-2.91610003e-01 -1.68535903e-01 -1.07815035e-01 3.78378898e-01\\n-2.85254389e-01 4.49367128e-02 -1.08398706e-01 -4.45846356e-02\\n2.82868624e-01 1.54228896e-01 -3.20729077e-01 1.19504400e-01\\n-1.14336200e-01 -3.91188443e-01 -7.64971375e-02 3.50683928e-01\\n-1.00491866e-01 2.39754349e-01 3.03259362e-02 -3.01487833e-01\\n6.62374616e-01 3.26763153e-01 1.95564002e-01 4.22401540e-02\\n3.41230124e-01 -1.85006544e-01 3.11518729e-01 1.63052961e-01\\n-6.62602842e-01 3.45543474e-01 6.48731813e-02 -2.75541097e-01\\n1.00821942e-01 7.34974220e-02 4.50670421e-01 -3.99756700e-01\\n3.56923379e-02 -2.31615767e-01 -3.79971802e-01 -4.11220878e-01\\n-2.66762912e-01 3.15081254e-02 4.09278840e-01 -3.34985644e-01\\n-1.33521825e-01 2.62247235e-01 -4.52034235e-01 -2.23917171e-01\\n1.26374215e-01 1.53301477e-01 5.30270971e-02 -2.57687792e-02\\n-8.62678885e-02 -6.35706961e-01 4.50634882e-02 -4.63739485e-01\\n-5.35800934e-01 3.69748590e-03 -3.49186510e-01 1.30858615e-01\\n-3.59033458e-02 6.13594353e-02 -9.43311527e-02 1.34197414e-01\\n-3.54555607e-01 -1.64842084e-02 3.56554314e-02 1.87073305e-01\\n2.50404596e-01 -4.16482799e-02 -5.16741753e-01 3.75585020e-01\\n-2.20642731e-01 5.30993879e-01 2.65517473e-01 -9.04959261e-01\\n6.30442917e-01 2.15591192e-01 9.25984383e-02 -2.50578582e-01\\n3.78691554e-01 -4.48909819e-01 -9.15755406e-02 1.65064305e-01\\n-2.16029018e-01 -2.37218425e-01 3.51897150e-01 -1.77554384e-01\\n-3.55367988e-01 4.60479677e-01 2.18342736e-01 -8.94561782e-03\\n2.88449913e-01 -3.12268019e-01 -5.50551079e-02 1.02989577e-01\\n-4.47699204e-02 -1.61732897e-01 -4.82570559e-01 3.75194140e-02\\n-6.72925413e-02 -4.71965730e-01 -8.25488418e-02 -3.33299011e-01\\n-1.39920011e-01 -3.51502776e-01 -3.77326757e-01 3.11004162e-01\\n1.52781412e-01 1.58988565e-01 4.05513011e-02 1.89531930e-02\\n7.43351802e-02 -7.34974742e-01 -2.18533337e-01 5.60102053e-02\\n4.93476361e-01 2.60669619e-01 2.46646572e-02 -1.74784794e-01\\n-1.12977496e-03 5.15721321e-01 -3.41495842e-01 -4.67799664e-01\\n1.95672363e-02 9.23142359e-02 -9.55522582e-02 -1.36673942e-01\\n8.85168016e-02 3.19082975e-01 -1.07110932e-01 7.99562410e-02\\n-8.89738426e-02 -4.78304587e-02 4.19248402e-01 8.59825499e-03\\n-2.74071276e-01 -1.06046446e-01 -1.37584895e-01 2.48347938e-01\\n-5.89287400e-01 -2.13321909e-01 5.59960544e-01 1.62665859e-01\\n1.92150578e-01 1.22509658e-01 1.89478770e-01 -1.00261785e-01\\n-2.56064795e-02 -2.74536699e-01 2.34207943e-01 1.49035946e-01\\n4.43218984e-02 8.54118317e-02 -7.88715556e-02 -7.66854465e-01\\n-3.27940965e+00 -3.14133286e-01 1.41042575e-01 -3.91017616e-01\\n1.82209447e-01 -1.15987666e-01 5.03617823e-02 -3.44741940e-02\\n-3.00532490e-01 5.49929254e-02 -2.86814153e-01 -1.72902986e-01\\n4.06640675e-03 2.38242477e-01 3.91243175e-02 1.80157244e-01\\n1.53169468e-01 -1.97287470e-01 -1.49520129e-01 3.35524678e-01\\n5.03745803e-04 -7.03826666e-01 5.96859083e-02 9.91246551e-02\\n2.37975270e-01 2.07187563e-01 -4.33561444e-01 1.28541784e-02\\n-2.35836565e-01 -2.62833148e-01 5.33691011e-02 -2.86824256e-01\\n-3.13884258e-01 2.71430731e-01 1.09556332e-01 -1.05196491e-01\\n-1.42289875e-02 -3.14451575e-01 -2.76335906e-02 -3.73896092e-01\\n7.24806041e-02 -5.91529787e-01 -5.61806485e-02 -6.87715709e-02\\n7.53360629e-01 -3.11479509e-01 2.59482831e-01 9.38942004e-03\\n1.71413392e-01 8.25963542e-02 2.62180008e-02 5.61644994e-02\\n-2.59518206e-01 -2.80994236e-01 1.46166412e-02 -1.69610560e-01\\n5.25863886e-01 5.11499107e-01 -1.65557310e-01 6.70194626e-02\\n2.22234637e-01 -3.11955512e-01 -3.11834574e-01 -3.88804317e-01\\n-2.40330726e-01 -2.34804913e-01 -7.05123782e-01 -4.79961872e-01\\n-1.78665057e-01 -9.45891719e-03 -2.03674048e-01 6.05339706e-01\\n-3.27680856e-01 -5.04034042e-01 2.23229658e-02 -5.27502716e-01\\n1.80814773e-01 -2.59595037e-01 7.15190694e-02 -1.66806027e-01\\n-3.63574892e-01 -5.42186856e-01 1.35831445e-01 -8.89754370e-02\\n-2.47457966e-01 -1.14685707e-01 -1.29641011e-01 -1.80894926e-01\\n-3.27081829e-01 -3.57394665e-01 5.02651691e-01 5.52136675e-02\\n3.59626859e-01 1.47503734e-01 3.71624470e-01 1.12909146e-01\\n3.14907074e-01 -1.09508485e-01 1.06382534e-01 -3.85194182e-01\\n3.58129735e-03 -6.70126826e-02 7.12407172e-01 -2.92129695e-01\\n7.88502395e-02 3.35630290e-02 -2.85090357e-01 -1.44628927e-01\\n4.88318801e-01 3.24213207e-02 9.44490582e-02 -5.70058711e-02\\n3.51760805e-01 -3.92466605e-01 -1.90895021e-01 2.43023679e-01\\n3.64841856e-02 7.20716894e-01 5.84823266e-02 -4.04302835e-01\\n-2.32394651e-01 4.47871596e-01 -7.59328008e-02 -4.97647654e-03\\n-1.05114341e-01 1.18639819e-01 -8.31916779e-02 2.59987295e-01\\n1.26624748e-01 -2.72606432e-01 -2.23663345e-01 -1.68161094e-01\\n2.98183933e-02 1.99713036e-01 2.93037713e-01 -3.97289991e-02\\n-5.07048741e-02 -2.18218073e-01 -2.11851820e-01 1.74137101e-01\\n2.92431593e-01 3.85163456e-01 1.44175962e-01 -2.27869362e-01\\n-1.02706037e-01 2.51480222e-01 -2.14656040e-01 2.65399247e-01\\n-1.58830509e-01 1.55674249e-01 -5.60586274e-01 -9.05579254e-02\\n-1.20868422e-01 -3.91883761e-01 1.90963641e-01 3.58746231e-01\\n2.14726791e-01 1.51378429e-02 -4.11909074e-02 -4.85457003e-01\\n3.66061270e-01 1.75971150e-01 1.43844336e-01 1.02357678e-01\\n-5.87090999e-02 4.24725682e-01 -1.18267927e-02 -5.04770502e-02\\n-1.70471132e-01 -3.68972234e-02 -2.19831809e-01 -3.15829873e-01\\n2.23768741e-01 -4.78620768e-01 -1.36539534e-01 4.10748720e-01\\n1.76589787e-01 -3.42217773e-01 -2.45084122e-01 2.89245814e-01\\n7.63109550e-02 -4.16781366e-01 -1.76472515e-01 -8.15693382e-03\\n2.31761992e-01 1.39034420e-01 2.85722256e-01 -3.96381140e-01\\n-9.23257694e-02 -6.33148849e-02 -1.51948392e-01 2.55487949e-01\\n1.05200857e-01 1.33293360e-01 -1.55749455e-01 -1.51574627e-01\\n5.12240827e-01 1.89651884e-02 -6.05685450e-02 5.80746271e-02\\n5.63989691e-02 -2.50223964e-01 -4.39500749e-01 -1.27526775e-01\\n-1.48952249e-02 -3.23749006e-01 3.96459438e-02 7.22012073e-02\\n6.24779835e-02 -1.63984578e-02 -4.80627567e-01 -3.24877799e-01\\n-3.21176618e-01 -1.90499455e-01 1.78123623e-01 -3.55892122e-01\\n-8.25810134e-02 -6.06468096e-02 -6.09544992e-01 1.75386190e-01\\n-2.59284049e-01 -3.60954404e-02 1.21220216e-01 1.26917914e-01\\n-1.86400548e-01 -8.87692869e-02 9.61606503e-02 1.81614995e-01\\n-2.85488784e-01 -1.58323973e-01 3.38639840e-02 -9.73684549e-01\\n1.08692758e-01 1.33115768e-01 -4.66713170e-03 4.13510464e-02\\n-5.12922145e-02 -5.41548729e-01 1.77234396e-01 -4.31651056e-01\\n-9.09246579e-02 7.44284177e-03 -1.86018631e-01 -2.53871232e-01\\n2.71518528e-01 -1.65154591e-01 -3.13458860e-01 3.71603012e-01\\n-4.41296160e-01 3.28340769e-01 7.62637481e-02 7.21891820e-02\\n-2.36079600e-02 -2.22803444e-01 1.07833743e-01 -2.65182316e-01\\n-4.45908189e-01 -1.36173964e-01 -3.94252926e-01 -1.42236337e-01\\n-2.70827673e-02 -2.58871943e-01 -1.58280507e-01 1.19419239e-01\\n3.47398967e-01 1.77878559e-01 -3.12975533e-02 -2.74050891e-01\\n6.41223416e-02 -5.58637738e-01 1.13728061e-01 -2.08668083e-01\\n-1.85295548e-02 5.22920396e-03 9.88802463e-02 -9.62967575e-02\\n8.77240896e-02 -2.91087627e-01 4.55982983e-01 -2.53869355e-01\\n-2.84520805e-01 -4.34890501e-02 6.40102625e-02 1.00279108e-01\\n3.80771756e-01 -4.47192520e-01 2.78782677e-02 2.48965412e-01\\n5.77623248e-02 1.19500525e-01 2.47714058e-01 -6.48874417e-02\\n-1.20549664e-01 1.78344697e-01 -5.32059669e-01 1.44256935e-01\\n8.96549881e-01 2.66778320e-01 4.69323136e-02 2.19581753e-01\\n2.57015437e-01 3.18985790e-01 5.33832371e-01 -8.06291327e-02\\n-9.58016291e-02 2.30021268e-01 -4.45018522e-02 -5.51859319e-01\\n-1.35526597e-01 -2.04562604e-01 -1.90782607e-01 -3.78986955e-01\\n6.04588270e-01 3.85152906e-01 -4.11267459e-01 -1.91748694e-01\\n-8.32971334e-02 -1.10327385e-01 2.43367568e-01 -5.42359985e-02\\n-9.09660161e-02 -1.49531305e-01 5.51828802e-01 -8.73960555e-03\\n3.66063893e-01 5.35598457e-01 -1.22023605e-01 -4.02548641e-01\\n-1.00493968e-01 2.76395261e-01 1.00876123e-01 5.10195315e-01\\n-1.59426585e-01 7.58925229e-02 -1.11529179e-01 7.02911541e-02\\n-1.66896489e-02 1.25271454e-01 2.28683323e-01 7.92856216e-02\\n2.92419672e-01 2.75281090e-02 3.08388889e-01 5.03178954e-01\\n7.84934908e-02 4.36758965e-01 3.81499827e-01 4.64925058e-02\\n1.86104923e-01 6.72974944e-01 2.91059941e-01 2.02554837e-01\\n-3.10175586e-03 2.01042145e-01 1.63644359e-01 -7.55597502e-02\\n3.72875303e-01 3.74817967e-01 3.15849006e-01 8.40524912e-01\\n2.73545325e-01 2.69655168e-01 7.63611376e-01 -7.31192827e-01\\n-4.02983159e-01 6.19159974e-02 6.12192333e-01 -1.57615051e-01\\n-1.26609221e-01 1.06311664e-01 -2.16974184e-01 3.51189196e-01\\n-6.01985335e-01 -9.25850198e-02 -4.02787402e-02 -1.20380364e-01\\n1.11637853e-01 -8.24511331e-03 -1.74308404e-01 6.63954467e-02\\n-1.94561049e-01 -8.28483924e-02 -3.47291708e-01 -1.15570366e-01\\n-3.89279306e-01 2.14222986e-02 -3.76100950e-02 -6.40734434e-02\\n-1.10988177e-01 -3.77812386e-01 -7.10287094e-02 5.20848855e-02\\n3.01097393e-01 -1.56266347e-01 -2.65326258e-02 -5.22031449e-02\\n1.04964025e-01 3.19031268e-01 4.77201283e-01 -9.14380103e-02\\n7.86635354e-02 -1.26054525e-01 -2.25667253e-01 -2.55079195e-02\\n1.59232274e-01 4.92963241e-03 1.94637284e-01 4.34655935e-01\\n-2.91074514e-01 -1.51027635e-01 5.28844893e-02 2.80973911e-01\\n-4.88572836e-01 -8.78828019e-02 -4.04011533e-02 2.29001075e-01\\n5.89627028e-02 2.81933814e-01 -3.20299417e-01 3.36592644e-02\\n-1.56576276e-01 -5.49048543e-01 4.01915342e-01 -1.75448596e-01\\n-1.01908915e-01 2.64829725e-01 2.05560997e-01 1.70984343e-01\\n-2.37505257e-01 -3.67347561e-02 -1.46159410e-01 2.52834141e-01\\n7.72492494e-03 4.63570625e-01 -1.27386123e-01 -2.77112961e-01\\n-2.64451444e-01 2.49437809e-01 -4.75737490e-02 1.64807796e-01\\n-1.27312437e-01 2.51511663e-01 -7.85685424e-03 1.40856072e-01\\n3.24630558e-01 5.67830615e-02 -3.62524450e-01 -2.20763236e-01\\n-1.49674267e-01 -2.44783461e-01 1.70121312e-01 -3.56495641e-02\\n1.41897425e-01 -3.42355549e-01 -7.14769140e-02 -2.73064435e-01\\n-1.82965696e-01 -3.93911481e-01 -1.39297768e-01 1.27686625e-02]]',\n", + " \"Job Informationen your tasks: Manage the end-to-end development of technical solutions, from partnering with multiple stakeholders to gathering detailed business requirements, through technical design, development, testing, and implementation Work on concurrent initiatives automating our business processes Develop RPA bots to increase operational efficiency and quality Translate analytic insights into concrete, actionable recommendations for business or product improvement Your profile: Bachelor's degree in Computer Science, Engineering, Mathematics, MTEC or other quantitative field combined with a passion for solving business problems Proven analytical and quantitative skills and an ability to use hard data and metrics to back up assumptions, develop business cases, and complete root cause analyses Proficient in at least one programming language (e.g., Python, Java, JavaScript, R) Experience extracting and transforming data sets with SQL Fluency in English, good German skills Nice-to-Have: Experience using Data Warehouse solutions and BI Tools in a business environment with large-scale, complex datasets (e.g. Teradata, AWS RDS, Looker, Tableau, Kibana, MS Excel) Benötigte Skills Englisch MS-Office Python Python R E-commerce Einzel-/Detailhandel JAVA JavaScript Junior Mathematik Datawarehouse Business Intelligence\",\n", + " '[\"\"]',\n", + " '[\"Development Testing\", \"Data Warehouse Systems\", \"Automation\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Kibana\", \"Computer Science\", \"Analytics\", \"Task Management\", \"Scale (Map)\", \"Operational Efficiency\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Translations\", \"Data Transformation\", \"Dataset\", \"Productivity Improvement\", \"Root Cause Analysis\", \"Business Intelligence\", \"Business Requirements\", \"Business Process\", \"E-Commerce\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Technical Solution Design\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Business Development\", \"Business Case\"]',\n", + " \"['English', 'Slovak', 'Ossetian', 'Inuktitut']\"],\n", + " ['16',\n", + " 'software engineer business data events',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-1.91104650e-01 2.25271225e-01 5.89884579e-01 1.13143306e-02\\n5.50288737e-01 -1.07360438e-01 -5.49557582e-02 3.53687912e-01\\n-5.68057783e-03 -3.53976190e-01 -6.66690916e-02 -2.06283987e-01\\n-6.52140528e-02 1.13803282e-01 1.33876234e-01 2.86508203e-01\\n2.07377613e-01 1.70513123e-01 -1.35549843e-01 3.60378802e-01\\n1.63065881e-01 -5.70979938e-02 1.39258310e-01 7.63423145e-01\\n4.20967400e-01 9.03721601e-02 -9.48430896e-02 -6.79137558e-02\\n-2.77748376e-01 -2.68304706e-01 5.12581050e-01 1.23132959e-01\\n-8.00701380e-02 -3.92657846e-01 1.00996882e-01 -8.78694355e-02\\n-3.47456396e-01 -5.31649105e-02 -1.13787040e-01 1.70788139e-01\\n-4.25675213e-01 -2.20063150e-01 -3.58525924e-02 3.11442986e-02\\n-2.09038854e-01 -3.25879991e-01 -7.64228478e-02 -1.11904919e-01\\n1.51222244e-01 -5.05765975e-02 -5.80470681e-01 3.11546206e-01\\n-2.55757749e-01 -2.45741457e-01 2.38467842e-01 6.60135031e-01\\n2.61558946e-02 -4.47333366e-01 -5.18018365e-01 -3.61129850e-01\\n3.93479764e-02 -1.96594447e-01 8.89007002e-03 -2.75045574e-01\\n2.06544295e-01 3.66032124e-02 1.11073837e-01 3.36233914e-01\\n-7.84965396e-01 4.05319072e-02 -1.14564031e-01 2.81319004e-02\\n-3.14257711e-01 -1.35130569e-01 -2.72363931e-01 -1.12676941e-01\\n-1.91045240e-01 4.88303721e-01 1.14931889e-01 1.96017101e-02\\n-1.80016637e-01 2.69780278e-01 -1.79371983e-01 4.58454430e-01\\n1.52707130e-01 1.48835257e-01 1.71350271e-01 3.26086402e-01\\n-3.99997622e-01 5.14149487e-01 7.41990209e-02 -2.58566141e-01\\n2.52426803e-01 1.11026600e-01 4.08997983e-01 -7.33221173e-02\\n1.69006810e-02 5.15300259e-02 -1.77071899e-01 2.78317183e-01\\n1.46823570e-01 -3.00002724e-01 3.54490951e-02 -1.45677224e-01\\n6.04247712e-02 5.01459725e-02 -7.75469393e-02 1.61639258e-01\\n-1.89987630e-01 3.40027034e-01 1.63327247e-01 -2.28514254e-01\\n-9.51029733e-02 -5.16787827e-01 -2.75141560e-02 -1.22872874e-01\\n-1.47055313e-02 1.37265921e-01 1.75416514e-01 1.46065950e-01\\n2.39557832e-01 7.83035904e-02 1.60299540e-01 7.38087058e-01\\n-3.60017866e-02 3.23574841e-02 -2.64268339e-01 3.03454995e-01\\n1.14140645e-01 -2.31558070e-01 1.82344019e-01 1.91870868e-01\\n-4.74690422e-02 -6.92424923e-02 -2.42338881e-01 3.71702373e-01\\n-6.89632744e-02 -2.31614977e-01 -2.81543255e-01 1.86241776e-01\\n-5.23010157e-02 -3.81986558e-01 5.18738747e-01 2.29265884e-01\\n2.07297742e-01 -5.44483215e-02 -2.96435840e-02 -7.35451579e-02\\n-7.12790936e-02 1.37056276e-01 -1.88476928e-02 2.33056173e-01\\n-3.00991833e-01 -3.17959428e-01 -1.92559794e-01 6.40818924e-02\\n-2.39642829e-01 1.39869004e-01 -1.01948723e-01 -4.06477377e-02\\n2.17627555e-01 9.05688405e-02 -3.60501289e-01 2.38868505e-01\\n-4.82646376e-02 -5.02809100e-02 9.87699628e-02 3.37118864e-01\\n-2.01765716e-01 1.32161558e-01 -3.44580896e-02 -2.06862450e-01\\n5.96211076e-01 1.82913855e-01 1.48873270e-01 4.11691554e-02\\n2.40312397e-01 1.80903450e-03 1.62605733e-01 9.29873511e-02\\n-6.85128689e-01 3.31892133e-01 -3.04754786e-02 -1.93754464e-01\\n1.33941770e-01 -3.12536582e-02 3.10086012e-01 -2.13648513e-01\\n9.08349603e-02 -1.39696658e-01 -4.08832014e-01 -3.44101250e-01\\n-8.45905095e-02 4.04238701e-02 2.98557580e-01 -4.96244222e-01\\n-1.27827257e-01 2.40074247e-01 -3.67813826e-01 -7.00937882e-02\\n1.75393507e-01 2.18247339e-01 6.67142347e-02 6.55681491e-02\\n-1.71543255e-01 -4.68551904e-01 4.06255499e-02 -4.02587593e-01\\n-3.41322005e-01 -1.10598765e-02 -3.64776671e-01 2.34177515e-01\\n7.88938999e-02 -7.96585605e-02 -6.54369593e-02 9.76237506e-02\\n-2.35238954e-01 -4.31889575e-03 1.03268303e-01 3.79081964e-02\\n3.50548863e-01 7.49245286e-02 -3.95155042e-01 4.32843089e-01\\n-2.21912950e-01 6.24888480e-01 1.80369943e-01 -9.02102113e-01\\n5.07815957e-01 3.26111287e-01 -8.95737857e-02 -4.26269323e-01\\n4.40132976e-01 -4.00146961e-01 4.77322526e-02 1.47844896e-01\\n-3.94989997e-01 -3.08719635e-01 2.63617814e-01 -1.19687527e-01\\n-2.32213289e-01 4.46671426e-01 3.62101197e-02 1.35341182e-01\\n1.68025970e-01 -3.35302800e-01 -2.31776357e-01 -6.63553327e-02\\n-5.92000559e-02 -2.36630082e-01 -5.45124531e-01 -2.08818875e-02\\n-1.14121214e-01 -4.63573337e-01 -5.73052056e-02 -3.57771814e-01\\n-1.95958614e-01 -2.96843797e-01 -1.95162594e-01 2.52563477e-01\\n2.28455871e-01 1.33433253e-01 2.32611932e-02 9.11801606e-02\\n7.98998177e-02 -6.88568413e-01 6.44074157e-02 1.51260346e-01\\n4.40051764e-01 2.16872483e-01 1.01137936e-01 -5.13716526e-02\\n3.75595242e-02 6.97380364e-01 -1.94036990e-01 -2.56647587e-01\\n2.17354685e-01 1.27813190e-01 6.27641156e-02 -1.36421353e-01\\n4.20168713e-02 3.13503861e-01 -3.31564665e-01 2.86704004e-02\\n5.36904298e-03 -1.32174054e-02 4.76532847e-01 5.19754775e-02\\n-3.20547491e-01 -1.40128568e-01 -7.72105604e-02 1.21365681e-01\\n-5.98461986e-01 -2.07316756e-01 5.91568172e-01 2.75702387e-01\\n1.37548074e-01 1.29435316e-01 1.17182925e-01 -2.73123831e-02\\n-2.06086278e-01 -2.09241778e-01 3.43682528e-01 1.04221180e-01\\n2.05713794e-01 3.50228287e-02 -4.31485176e-02 -6.05880499e-01\\n-3.26159954e+00 -1.72538638e-01 7.10092708e-02 -3.31525385e-01\\n2.92069882e-01 -2.25409612e-01 1.15612969e-01 -2.31769234e-02\\n-2.63314247e-01 4.04323563e-02 -1.97155178e-01 -1.45481795e-01\\n1.25695750e-01 1.13246724e-01 9.81977135e-02 1.68032944e-01\\n6.84211403e-02 -2.06251323e-01 3.19968611e-02 3.62278163e-01\\n-2.29932547e-01 -6.88806772e-01 1.25433728e-01 -3.84139828e-03\\n1.63343191e-01 2.02503607e-01 -4.04854208e-01 -8.04904774e-02\\n-1.73921928e-01 -2.12761387e-01 -2.79457420e-02 -3.31653148e-01\\n-1.57393157e-01 2.41190642e-01 1.94800138e-01 -1.35780275e-01\\n6.90654069e-02 -4.63961899e-01 -9.88506004e-02 -5.46691120e-01\\n2.09500492e-01 -6.36404574e-01 2.22675819e-02 -1.18378446e-01\\n7.22521067e-01 -3.03569108e-01 1.22286491e-01 1.64847583e-01\\n2.45710582e-01 1.44990236e-01 6.19171411e-02 -1.50625445e-02\\n-2.28378803e-01 -3.31389904e-01 -1.07836932e-01 -1.36333361e-01\\n4.30780649e-01 4.32378531e-01 -1.48321554e-01 1.44804701e-01\\n7.60335401e-02 -2.98072249e-01 -3.70201468e-01 -2.74137914e-01\\n-1.14738956e-01 -2.53664076e-01 -7.18594551e-01 -4.44676965e-01\\n-1.87793493e-01 -2.12780461e-01 -1.76433980e-01 6.04597092e-01\\n-3.01532626e-01 -3.36729109e-01 -8.74382854e-02 -4.83342826e-01\\n3.53918552e-01 -1.14479214e-01 2.33005565e-02 -1.58610314e-01\\n-1.97149411e-01 -4.85279500e-01 9.53139961e-02 -7.30241239e-02\\n-1.28713965e-01 -2.67821550e-01 4.91779484e-02 -1.89734131e-01\\n-3.04274529e-01 -5.41955471e-01 4.25041050e-01 1.76238194e-02\\n3.30998302e-01 1.35763988e-01 3.45253825e-01 -3.58940512e-02\\n2.41688758e-01 -6.49173930e-02 -8.70448723e-02 -3.63057196e-01\\n3.62509042e-02 9.14106891e-03 4.99241352e-01 -2.33211234e-01\\n-3.31291631e-02 1.43452108e-01 -2.41380394e-01 -3.48432995e-02\\n2.85139501e-01 -3.43421474e-02 7.53200147e-03 -5.68813682e-02\\n3.28804135e-01 -2.67332971e-01 -1.49721906e-01 8.65284428e-02\\n4.50118594e-02 5.36115468e-01 -3.59812006e-03 -3.71129215e-01\\n-1.53250426e-01 4.20760125e-01 8.06491151e-02 -1.01141684e-01\\n-1.81138635e-01 6.02976866e-02 -1.93007469e-01 2.98970878e-01\\n5.51952049e-02 -2.53229469e-01 -2.45458871e-01 -1.40272439e-01\\n-9.29873884e-02 3.54534835e-01 2.86041141e-01 3.38246264e-02\\n4.73956354e-02 -4.30611849e-01 -1.34398818e-01 1.47303715e-01\\n1.70360431e-01 4.68289375e-01 1.69550717e-01 -1.71644449e-01\\n-3.21131870e-02 3.07046771e-01 -1.22439452e-01 2.57191837e-01\\n-2.40871489e-01 6.20918423e-02 -5.70222080e-01 -2.73005158e-01\\n-2.35740721e-01 -3.97317708e-01 9.43351090e-02 3.61744106e-01\\n1.13756292e-01 -1.12383552e-02 7.03416839e-02 -4.67679054e-01\\n3.01416516e-01 7.64930472e-02 1.52636588e-01 7.30635375e-02\\n-6.13627955e-03 6.09745383e-01 -1.69100761e-02 -1.53149337e-01\\n-1.02242999e-01 1.29240826e-02 -1.92491993e-01 -1.70512870e-01\\n9.64803323e-02 -4.72850353e-01 -6.92090243e-02 4.87406850e-01\\n1.09044805e-01 -2.99020588e-01 -1.23628736e-01 3.33748728e-01\\n-4.33416888e-02 -1.97118267e-01 -2.53051400e-01 4.90383580e-02\\n3.63614053e-01 1.87947273e-01 3.04749250e-01 -3.75626981e-01\\n2.95814779e-03 -9.39863361e-03 -4.65635844e-02 4.35519278e-01\\n1.16406664e-01 -9.51788947e-03 -1.23558588e-01 -1.92275301e-01\\n5.08605242e-01 2.75412407e-02 -9.50071141e-02 5.10627404e-02\\n8.42717737e-02 -1.44816548e-01 -4.94374901e-01 9.71820951e-02\\n4.66368869e-02 -2.49552578e-01 -2.14861799e-03 1.58285260e-01\\n1.85644016e-01 7.49705359e-02 -5.95128417e-01 -2.18601316e-01\\n-3.39220345e-01 -3.65379415e-02 1.12151667e-01 -4.76320267e-01\\n-5.33669256e-03 -5.10306507e-02 -6.29264295e-01 2.12740347e-01\\n-1.95973694e-01 -1.43745005e-01 1.53202370e-01 5.08390181e-02\\n-2.86069632e-01 9.45396256e-03 1.35232583e-01 2.59672761e-01\\n-3.07804048e-01 -1.74276307e-01 6.54586032e-03 -9.91381049e-01\\n1.87845469e-01 3.03550698e-02 -1.27887338e-01 1.29680991e-01\\n-4.06414978e-02 -6.92942381e-01 1.17505282e-01 -3.63826752e-01\\n-2.14895338e-01 -9.04371291e-02 -2.52536833e-01 -3.47979546e-01\\n3.94411385e-02 9.59743932e-03 -1.88935935e-01 4.03753489e-01\\n-3.40673715e-01 4.35669065e-01 -1.32329017e-01 1.30729973e-01\\n1.11544088e-01 -2.47792259e-01 1.12777866e-01 -4.38190758e-01\\n-2.82479882e-01 -1.98119223e-01 -3.74101996e-01 -2.95929968e-01\\n-5.98878451e-02 -2.93092579e-01 -1.19012818e-01 6.18605986e-02\\n3.33937556e-01 1.33729905e-01 -1.29205287e-01 -3.62458229e-01\\n1.69575542e-01 -5.40457308e-01 2.30198592e-01 -1.28210127e-01\\n-1.26892716e-01 -6.12140670e-02 2.09212929e-01 8.62802863e-02\\n1.36641920e-01 -3.85998368e-01 2.84716070e-01 -3.66512358e-01\\n-3.15181136e-01 -1.67194635e-01 -5.04035577e-02 1.25146601e-02\\n3.11727792e-01 -4.18432206e-01 -2.14082748e-03 2.74862409e-01\\n2.60538131e-01 8.96861330e-02 2.27151543e-01 -7.66113698e-02\\n-8.83215964e-02 2.94792235e-01 -4.18162882e-01 1.65259093e-01\\n7.60153890e-01 1.09358355e-01 7.60658532e-02 2.85158634e-01\\n2.56973416e-01 2.69388139e-01 5.00717282e-01 4.79386672e-02\\n-1.19028293e-01 2.50033140e-01 1.59221850e-02 -5.21474123e-01\\n-1.09588638e-01 -7.16493130e-02 -1.92833632e-01 -3.23404968e-01\\n6.44350886e-01 4.67520118e-01 -5.06553769e-01 -1.73717499e-01\\n-2.66003728e-01 -1.40803725e-01 1.44920319e-01 -7.50689059e-02\\n1.37838600e-02 -5.97605258e-02 4.68942523e-01 -1.26253605e-01\\n2.14266628e-01 5.31075597e-01 -1.86657637e-01 -3.47286224e-01\\n-1.24417886e-01 1.53236568e-01 -1.95224397e-02 4.33477342e-01\\n-2.21219495e-01 2.33311713e-01 9.33096409e-02 1.77044272e-01\\n-9.86758471e-02 6.94394112e-02 1.35936245e-01 9.52033103e-02\\n1.52097076e-01 1.66829675e-03 3.52826059e-01 3.87930453e-01\\n2.76531160e-01 3.96166533e-01 3.64475697e-01 1.24166861e-01\\n3.91465247e-01 5.62030435e-01 3.07321250e-01 6.72038794e-02\\n-5.79363704e-02 2.63212249e-03 1.57451779e-01 -4.07832377e-02\\n3.35983723e-01 4.08975899e-01 1.33378997e-01 8.72005939e-01\\n3.71215165e-01 3.48622501e-01 7.47449160e-01 -6.23856068e-01\\n-4.46658254e-01 3.16884965e-02 4.78175730e-01 -4.13712263e-01\\n2.49979869e-02 1.53403953e-01 -3.06449413e-01 2.79428363e-01\\n-4.80152488e-01 -1.69091254e-01 2.16486864e-02 1.04581207e-01\\n-3.51752862e-02 -7.25307614e-02 -2.02012464e-01 2.11214930e-01\\n-9.08846632e-02 -1.30395770e-01 -3.91294450e-01 -1.48296446e-01\\n-1.89257085e-01 -1.11438692e-01 1.22827049e-02 -1.00664228e-01\\n-2.56660953e-02 -3.71397108e-01 -7.60997087e-02 -3.88763472e-02\\n3.47960740e-01 -6.50051981e-02 -3.67048234e-02 -9.71247032e-02\\n2.41734654e-01 2.34557673e-01 5.88870406e-01 5.74958287e-02\\n1.06842056e-01 -2.58659005e-01 -2.17410609e-01 1.60957932e-01\\n1.75131649e-01 9.63894874e-02 2.90348418e-02 2.45911419e-01\\n-3.41180503e-01 -1.26341254e-01 1.88839585e-01 3.19260865e-01\\n-4.12410438e-01 -2.25242097e-02 -6.72351345e-02 1.75769627e-01\\n1.10682428e-01 2.09808290e-01 -3.08911473e-01 5.23173064e-02\\n-2.06504524e-01 -4.43239391e-01 3.35786313e-01 -1.11409143e-01\\n-9.95671973e-02 1.97682194e-02 2.82165438e-01 1.20935649e-01\\n-2.67954499e-01 1.45463087e-02 -5.73985651e-02 8.98494869e-02\\n2.59898715e-02 3.76415074e-01 -2.24367201e-01 -2.51332343e-01\\n-2.52039790e-01 2.15256810e-01 -9.52642858e-02 1.63145423e-01\\n-2.35626549e-02 4.01792526e-01 2.37347428e-02 8.10715556e-02\\n3.67659450e-01 -1.90224815e-02 -2.72442818e-01 -2.54267246e-01\\n-2.98907518e-01 -2.08814263e-01 -1.41596138e-01 -7.61095211e-02\\n1.85458571e-01 -3.50936562e-01 -2.29051430e-02 -8.71997774e-02\\n-1.46647722e-01 -3.01208168e-01 -1.66410524e-02 -8.58882442e-02]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team The Application Framework Team is mainly responsible for software frameworks used in the Avaloq Banking Suite (ABS) for the business process modelling and data management. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Business Data Events is a newly built, high-volume data streaming platform. It streams all relevant business events from the Avaloq core banking system to a series of microservices. The data streaming platform is designed for high throughput (100 million messages per hour) and for low latency (below 20 ms). Our technology stack is based on Java (Spring Boot), Oracle and PL/SQL, Docker, Kubernetes, Apache Kafka, Google Protocol Buffers, Prometheus, Grafana, Angular and more. Your mission Further develop and optimize the data streaming platform Drive and enhance the core frameworks of Avaloq’s current and future products Participate in architectural design Understand Avaloq’s architectural strategy and translate it to scalable and maintainable solutions Support and consult our stakeholders – customers and internal business teams Constant self-development What you need University degree in Computer Science or equivalent experience Strong software engineering background, including understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Knowledge and hands-on experience in Java Solid understanding of relational databases Strong communication abilities and proficient English language skills You will get extra points for the following Experience with concurrent and distributed systems Experience with Spring Boot Experience with PL/SQL Experience with microservice architectures Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Don’t be shy – apply! Avaloq Evolution AG Kristin Stengel, Talent Acquisition Partner 8027 Zürich www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " '[\"Writing\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " '[\"PL/SQL\", \"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Low Latency\", \"Spring Boot\", \"Protocol Buffers\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Data Driven Instruction\", \"Wealth Management\", \"Event Data Recorder\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"Architectural Design\", \"Translations\", \"Apache Kafka\", \"Microservices\", \"Software Engineering\", \"Docker (Software)\", \"Agile Methodology\", \"Business Process\", \"High Throughput Screening\", \"Library For WWW In Perl\", \"Scalability\", \"Clinical Data Management\", \"Grafana\", \"Angular (Web Framework)\", \"Business Events\", \"Relational Databases\", \"Banking\", \"Software Modernization\", \"Java (Programming Language)\", \"Prometheus (Software)\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " \"['English']\"],\n", + " ['45',\n", + " 'software integration engineer',\n", + " 'Lausanne',\n", + " 'Investment Banking & Asset Management',\n", + " 'www.evooq.ch',\n", + " '[[-1.68128863e-01 1.47294775e-01 4.35314238e-01 1.03110090e-01\\n5.61902881e-01 -7.97348320e-02 -1.59811065e-01 3.72415334e-01\\n-8.33733752e-03 -3.67878765e-01 -1.52336314e-01 -2.37585738e-01\\n-3.37354131e-02 8.95932764e-02 5.61325066e-02 2.54188120e-01\\n2.37652689e-01 2.88989805e-02 -1.69625893e-01 2.19949186e-01\\n1.11101702e-01 -2.00569499e-02 2.21947238e-01 6.39403701e-01\\n3.54957104e-01 -9.49822739e-03 -5.59865721e-02 8.41386802e-03\\n-1.89814463e-01 -1.63141251e-01 5.26956260e-01 1.57068148e-01\\n-2.09396839e-01 -3.88300061e-01 3.09270211e-02 1.39186993e-01\\n-2.06834257e-01 -1.98661655e-01 -8.47955942e-02 1.42582297e-01\\n-3.93504590e-01 -2.11757615e-01 -5.75681627e-02 1.19460441e-01\\n-2.92561829e-01 -3.05757791e-01 -2.88881268e-02 -6.76742941e-02\\n1.38082579e-01 -7.79613527e-03 -5.24741113e-01 2.11558670e-01\\n-7.84013644e-02 -2.03570202e-01 3.43775332e-01 7.00410783e-01\\n-1.74974240e-02 -4.61337060e-01 -4.14225131e-01 -3.21062326e-01\\n-3.66777461e-03 -1.24672212e-01 6.49402961e-02 -3.24815184e-01\\n2.30561361e-01 -5.53616732e-02 -1.14875004e-01 2.80383408e-01\\n-7.61394262e-01 -8.72813314e-02 -1.32919982e-01 -1.31924078e-01\\n-3.75573128e-01 -9.02865976e-02 -2.72569865e-01 -1.45808235e-01\\n-1.73297346e-01 3.90760183e-01 1.46646783e-01 1.26234248e-01\\n-8.88999179e-02 3.10318202e-01 -1.88351870e-01 4.63643372e-01\\n2.40018100e-01 2.63512760e-01 1.53541639e-01 2.41300628e-01\\n-4.33555901e-01 4.42212224e-01 2.03539014e-01 -3.43963027e-01\\n2.85174400e-01 1.21223398e-01 3.30555141e-01 3.40144448e-02\\n1.55371219e-01 7.27808848e-02 -1.32952884e-01 3.20399791e-01\\n2.68837363e-01 -2.85810441e-01 1.09653361e-01 -8.38390365e-02\\n3.45762670e-02 -4.63872328e-02 4.74566547e-03 1.83913410e-02\\n-3.93896639e-01 2.65181720e-01 9.91052985e-02 -1.99264750e-01\\n-4.14207950e-02 -4.26346600e-01 -2.36790255e-02 7.09409341e-02\\n5.62368333e-03 2.04241008e-01 1.96208939e-01 2.37501964e-01\\n3.41495931e-01 6.55578151e-02 1.55596390e-01 7.61557043e-01\\n-1.01584226e-01 -1.18829459e-02 -2.76519090e-01 4.29472864e-01\\n1.14391528e-01 -3.27624351e-01 2.53814906e-01 2.22400531e-01\\n-4.53908518e-02 -6.36736080e-02 -1.79570079e-01 2.92052597e-01\\n-8.06294531e-02 -3.20610493e-01 -2.76493639e-01 1.66942030e-01\\n-1.86257828e-02 -3.30361515e-01 5.60239375e-01 4.29778583e-02\\n1.89587399e-01 -1.46029875e-01 -6.12184126e-03 -1.51939273e-01\\n-3.19303721e-02 1.91002533e-01 -9.13634598e-02 5.76310866e-02\\n-1.72939733e-01 -1.22181363e-01 -1.81536451e-01 8.34787712e-02\\n-2.65188694e-01 4.42739502e-02 -5.38306981e-02 -8.73634890e-02\\n1.78696245e-01 4.09455858e-02 -2.38084674e-01 1.26777127e-01\\n-1.17140142e-02 -1.52977020e-01 -4.38295072e-03 3.42681944e-01\\n-2.34903499e-01 2.69638598e-01 1.38456782e-03 -8.61889571e-02\\n4.79957670e-01 5.63570485e-02 4.01633501e-01 3.66916917e-02\\n1.61033362e-01 -1.34031892e-01 2.17201725e-01 2.21559510e-01\\n-6.96760595e-01 4.12164301e-01 6.25087554e-03 -2.14383915e-01\\n1.81181565e-01 -6.26953170e-02 2.18474373e-01 -2.68743604e-01\\n1.43958911e-01 -1.23676173e-01 -2.69235104e-01 -3.00969124e-01\\n-1.47512406e-01 -1.95377227e-02 3.13833565e-01 -5.73024750e-01\\n-8.99280757e-02 2.61618823e-01 -4.70705479e-01 -2.00948462e-01\\n8.29637870e-02 1.33871600e-01 7.01398998e-02 3.56388576e-02\\n-1.86609164e-01 -3.99383336e-01 8.18568319e-02 -3.57486486e-01\\n-2.43403062e-01 3.24413404e-02 -2.39725426e-01 2.01549739e-01\\n3.33346128e-02 -3.25893721e-04 -1.70452043e-03 5.77167757e-02\\n-2.30749622e-01 5.76498918e-02 1.61576524e-01 4.94486131e-02\\n3.66422802e-01 5.42224087e-02 -3.68894249e-01 5.86344957e-01\\n-3.11225414e-01 6.23655856e-01 1.71733886e-01 -7.98395216e-01\\n5.10502100e-01 3.16019505e-01 3.80936414e-02 -2.49795884e-01\\n5.21906734e-01 -4.36866671e-01 -5.36233149e-02 3.54008451e-02\\n-3.41631532e-01 -3.18905532e-01 1.79821163e-01 -2.49334574e-01\\n-1.72654912e-01 5.62681913e-01 1.79174617e-02 1.08783534e-02\\n1.77092463e-01 -2.56482840e-01 -3.48413773e-02 -5.36901653e-02\\n-2.15849012e-01 -2.87638456e-01 -5.52793860e-01 -1.52895883e-01\\n-2.51653910e-01 -4.57996964e-01 -1.46980464e-01 -3.82162303e-01\\n-1.62851557e-01 -2.34563425e-01 -1.46315470e-01 3.02969098e-01\\n1.58968776e-01 1.13789327e-01 -9.56362579e-03 7.28087798e-02\\n-1.23102292e-01 -6.05919063e-01 -3.53180803e-02 7.15499818e-02\\n3.07807803e-01 1.37429923e-01 1.65170550e-01 6.90665543e-02\\n9.49916542e-02 6.21306002e-01 -2.04154506e-01 -3.38269204e-01\\n1.50972128e-01 2.69060224e-01 3.98530066e-03 -9.28666964e-02\\n1.78645775e-01 3.17791641e-01 -2.69582063e-01 -2.63166660e-03\\n-6.93970397e-02 5.34727797e-02 3.38417500e-01 3.48978559e-03\\n-2.24355116e-01 -6.63933828e-02 9.92172435e-02 1.52574912e-01\\n-4.83114868e-01 -1.93199545e-01 5.44397533e-01 2.70623505e-01\\n9.34510455e-02 1.86391443e-01 1.79662839e-01 -4.70327362e-02\\n-1.86024874e-01 -1.77284718e-01 2.44594052e-01 2.11579148e-02\\n9.14168134e-02 6.58574165e-04 -3.32983956e-02 -5.95084965e-01\\n-3.72826886e+00 -1.78480342e-01 1.28922507e-01 -1.64920166e-01\\n2.00949878e-01 -3.00656080e-01 1.31269902e-01 -7.20228106e-02\\n-3.15222412e-01 1.30564421e-01 -9.32901353e-02 -1.64200574e-01\\n1.48747444e-01 1.35411307e-01 1.80549081e-02 3.15282643e-01\\n8.48204121e-02 -1.10754043e-01 1.20123543e-01 2.72085071e-01\\n-2.05266327e-01 -7.24351704e-01 1.75991833e-01 8.14142004e-02\\n2.66727865e-01 1.71779618e-02 -3.98834616e-01 -8.58699679e-02\\n-2.44717285e-01 -1.87625647e-01 1.91170555e-02 -2.38981768e-01\\n-1.77039996e-01 2.93625265e-01 2.06057817e-01 -1.17549978e-01\\n6.95791170e-02 -3.28475893e-01 -2.43799329e-01 -4.40557271e-01\\n9.31955874e-02 -4.25943345e-01 3.65621559e-02 -1.41531482e-01\\n5.99165559e-01 -3.85811597e-01 6.23889007e-02 8.16986337e-02\\n1.85796812e-01 2.08015501e-01 1.55843765e-01 -1.63045116e-02\\n-2.21752882e-01 -1.70180261e-01 -7.62226582e-02 -2.18808964e-01\\n4.83260989e-01 4.61859733e-01 -1.43537521e-01 2.10913464e-01\\n9.43685099e-02 -1.20121121e-01 -3.02825689e-01 -3.77167940e-01\\n-6.23809658e-02 -1.68955669e-01 -5.98849714e-01 -3.18909138e-01\\n1.20164240e-02 -1.64223894e-01 -1.95989743e-01 5.47281146e-01\\n-2.02879548e-01 -4.14439708e-01 3.17797735e-02 -5.30532777e-01\\n4.93966192e-01 -1.50539190e-01 5.64648844e-02 -5.46558537e-02\\n-1.82264954e-01 -4.70313102e-01 8.51233229e-02 -1.17056169e-01\\n-7.91182928e-03 -2.84506053e-01 -1.55911557e-02 -1.32803202e-01\\n-3.78483444e-01 -4.97961402e-01 3.90376776e-01 5.52649796e-02\\n3.35341215e-01 9.40819532e-02 2.59362400e-01 4.88539301e-02\\n2.32921317e-01 -1.77754427e-03 -1.16420873e-02 -4.65375334e-01\\n1.01872191e-01 -1.15964366e-02 4.63016599e-01 -2.68639386e-01\\n4.67863344e-02 8.24160874e-02 -2.02701285e-01 5.26804216e-02\\n2.84012169e-01 3.91109698e-02 5.07305339e-02 -2.09340632e-01\\n2.95160532e-01 -3.62573951e-01 -1.57285467e-01 9.25374180e-02\\n3.04213800e-02 5.94360590e-01 6.40504956e-02 -2.78194189e-01\\n-1.72764286e-01 5.22090793e-01 3.29062752e-02 -1.59293488e-01\\n-1.97975904e-01 6.85797632e-02 -2.44041502e-01 1.97353497e-01\\n1.43389739e-02 -1.84940323e-01 -1.95317775e-01 -2.31408417e-01\\n-7.72331655e-02 1.52961895e-01 3.59108716e-01 4.41749729e-02\\n-2.90062465e-02 -3.93463343e-01 -4.48306426e-02 1.48902580e-01\\n2.03450531e-01 3.82565081e-01 2.05063835e-01 -1.99494362e-01\\n-9.03776065e-02 2.99344987e-01 -1.16250888e-01 2.51636893e-01\\n-1.67220592e-01 9.53625590e-02 -5.75240552e-01 -2.35108927e-01\\n-2.33209282e-01 -2.94880956e-01 1.76110029e-01 2.14334130e-01\\n1.71016157e-01 -6.20361306e-02 6.39283881e-02 -4.83012497e-01\\n3.18965495e-01 7.55835250e-02 2.77103871e-01 4.94899824e-02\\n-3.50857936e-02 5.12454450e-01 -5.41864261e-02 -1.37286872e-01\\n-1.47367239e-01 1.15424030e-01 -1.23274684e-01 -2.20224679e-01\\n-4.89579402e-02 -4.90295917e-01 -9.68478471e-02 3.12052876e-01\\n1.87804118e-01 -2.03140810e-01 -2.86225080e-01 3.05936903e-01\\n-6.12818934e-02 -1.73054278e-01 -1.53871581e-01 -1.21928193e-02\\n3.99883479e-01 1.99321672e-01 3.16624731e-01 -4.35362935e-01\\n-1.01916581e-01 9.76095907e-04 7.28148744e-02 4.06958312e-01\\n7.54189789e-02 1.03038743e-01 -2.00444814e-02 -1.92449421e-01\\n3.68172228e-01 -3.05240415e-02 -1.44173622e-01 7.24907126e-03\\n6.78982511e-02 -9.29013863e-02 -4.20568526e-01 1.15129419e-01\\n9.82277747e-03 -3.17494035e-01 5.61600067e-02 1.45324156e-01\\n1.63944021e-01 -5.29504800e-03 -5.80588102e-01 -2.26827130e-01\\n-3.31592530e-01 6.11777008e-02 3.13306265e-02 -4.53329146e-01\\n7.83101916e-02 -1.07311442e-01 -5.58490753e-01 2.32817799e-01\\n-1.86985567e-01 -1.42525807e-01 5.89415692e-02 3.37508805e-02\\n-3.07193100e-01 -1.27870338e-02 1.04919195e-01 2.96422541e-01\\n-2.07113847e-01 -1.31758913e-01 7.74511993e-02 -9.47205305e-01\\n1.35081694e-01 1.33756831e-01 -1.19658716e-01 1.26474053e-01\\n-6.05270565e-02 -7.06068337e-01 6.66025728e-02 -3.76786977e-01\\n-1.66760176e-01 -1.46450132e-01 -2.11099908e-01 -3.80655944e-01\\n1.25072703e-01 4.81946655e-02 -2.27547437e-01 3.94070745e-01\\n-2.75100976e-01 3.68109733e-01 -6.91472590e-02 4.96269166e-02\\n1.50176119e-02 -1.63823858e-01 1.38874486e-01 -2.76051998e-01\\n-3.36816609e-01 -2.06801534e-01 -3.13355416e-01 -1.79582641e-01\\n-4.21354435e-02 -3.16959798e-01 -1.92110855e-02 -6.04686365e-02\\n4.56686467e-01 1.23045452e-01 -1.75307870e-01 -2.64023364e-01\\n4.37808707e-02 -4.21046317e-01 2.90062521e-02 -1.76873952e-01\\n-7.18785897e-02 -3.62824239e-02 6.47548661e-02 6.25013039e-02\\n2.02290550e-01 -4.01015550e-01 2.52477467e-01 -3.16339105e-01\\n-4.07891721e-01 -1.25659704e-01 4.21583503e-02 5.92468269e-02\\n2.80964941e-01 -4.54706609e-01 -2.48445310e-02 3.48300606e-01\\n1.62695840e-01 -2.72799842e-02 2.41704121e-01 -1.19289242e-01\\n-7.61452913e-02 3.81438345e-01 -4.59581316e-01 1.75386727e-01\\n6.34703636e-01 1.30245656e-01 1.81873038e-01 2.16921017e-01\\n1.78758204e-01 2.05135912e-01 4.01299298e-01 8.36498737e-02\\n-4.82329242e-02 2.99093425e-01 4.04538028e-02 -5.02735734e-01\\n-2.49397345e-02 -1.59248427e-01 -1.69059113e-01 -4.33924407e-01\\n6.17326260e-01 2.92010754e-01 -4.24525887e-01 -2.41783410e-01\\n-1.32218614e-01 -2.49724254e-01 9.95014608e-02 -1.45405680e-01\\n2.51905769e-02 -6.36068508e-02 3.59645605e-01 -1.71683371e-01\\n2.95995384e-01 5.91365695e-01 -1.27350584e-01 -2.53869146e-01\\n-8.97180364e-02 2.22738191e-01 1.33663878e-01 5.18028557e-01\\n-1.53765932e-01 3.71468782e-01 2.47903019e-02 1.99752778e-01\\n-8.52378234e-02 8.73349532e-02 1.57535478e-01 1.59054160e-01\\n2.41001666e-01 -3.90572734e-02 3.38641047e-01 3.63949805e-01\\n1.81306794e-01 3.67089719e-01 3.66563201e-01 5.90634085e-02\\n4.59791005e-01 5.90558410e-01 2.93667376e-01 1.43136978e-01\\n7.99467862e-02 5.20725399e-02 3.83734517e-02 -8.64794031e-02\\n2.25679293e-01 4.60319489e-01 5.57947718e-02 7.60943592e-01\\n4.45387810e-01 2.95687854e-01 6.40802860e-01 -6.78275943e-01\\n-3.66522670e-01 -4.49226610e-02 4.63913739e-01 -4.83679146e-01\\n5.15789762e-02 2.19729915e-01 -2.02840388e-01 3.89310479e-01\\n-3.55032623e-01 -8.48148167e-02 4.42487113e-02 4.66773584e-02\\n9.97295529e-02 -1.10383265e-01 -2.35966861e-01 2.69817617e-02\\n-1.24333709e-01 -1.14856593e-01 -4.37362641e-01 -1.21442787e-01\\n-3.21948618e-01 -1.24309950e-01 -5.96647970e-02 -8.83073583e-02\\n-1.67680800e-01 -3.22568655e-01 -1.66798487e-01 -1.67561248e-01\\n3.41501087e-01 -1.32807672e-01 -6.95448145e-02 -1.62482545e-01\\n3.01190406e-01 2.03732207e-01 4.32136118e-01 4.93046604e-02\\n1.49875328e-01 -1.92663923e-01 -1.54028594e-01 3.70327868e-02\\n1.12321302e-01 -1.96878575e-02 -1.32181812e-02 2.94967711e-01\\n-2.88704306e-01 -1.72770724e-01 3.51048976e-01 2.35429853e-01\\n-3.99206281e-01 2.18921248e-02 -7.20779300e-02 1.55422449e-01\\n8.94272998e-02 2.11567223e-01 -2.43989930e-01 1.36162471e-02\\n-1.13879994e-01 -5.21218002e-01 3.54247570e-01 -1.29307300e-01\\n-3.58745977e-02 9.68332589e-02 2.66155928e-01 1.98837504e-01\\n-1.62176996e-01 2.39111669e-02 -8.54180828e-02 6.67735934e-02\\n6.93216249e-02 3.09320420e-01 -2.26467744e-01 -2.84156173e-01\\n-2.63617426e-01 2.02416644e-01 -2.05831692e-01 1.08235665e-01\\n-9.53044277e-03 3.93489122e-01 1.81642234e-01 1.73937529e-01\\n2.77668834e-01 -4.60480526e-02 -3.44084382e-01 -2.47148171e-01\\n-2.57059276e-01 -1.44745022e-01 -4.98206168e-02 -2.12546006e-01\\n7.95108899e-02 -2.49087647e-01 -7.19678029e-02 -4.55603041e-02\\n-1.54507414e-01 -3.68393928e-01 -4.72110622e-02 -8.35018456e-02]]',\n", + " 'Evooq is a Swiss investment and technology partner of banks, independent asset managers and pension funds. Active in the market since 2011, Evooq’s portfolio of solutions has been developed to empower advisors - from derivative financial instruments to risk intelligence, investment advisory and monitoring tools and more. To date, clients of leading financial institutions have utilized Evooq’s products in the Swiss, EU and Asian markets. We are a human sized company focused on delivering innovative software products that change how wealth management services are delivered to clients. We are looking for smart, pragmatic, clear communicators who like to solve problems with original thinking, drive features, and are able to work as part of an agile and cross-functional team in order to make us collectively stronger. Software Integration Engineer A Software Integration Engineer at Evooq works to onboard banks onto the platform. He has ease with customer contact (technical and business teams), he adapts to various technical setups and organizations in a solution-oriented state of mind. We are looking to hire people who can collaborate on large projects with discussion, review and knowledge sharing to drive features and make us collectively stronger. We are looking for the following specific skills and experience but are happy to talk to people who are bright and have the ability to learn fast. Banking software : Avaloq, Finnova, T24, S2i, Olympic Knowledge in Banking Languages: Java, JavaScript Tools: TDD, junit, git, maven Datastores: Postgres Orchestration: OpenShift, Docker-Swarm Containers: Dockers Optional but valuable skills and experience include: Domain knowledge: financial products, wealth management Agile delivery experience Cloud: AWS, GCP or Azure We are looking for smart, clear communicators who like to solve problems with original thinking, and are able to work as part of a cross-functional team. Start the conversation by clicking “Apply now”. Candidates must have or be eligible for a work permit in Switzerland. Full-time in Lausanne.',\n", + " '[\"Collaboration\", \"Communications\", \"Innovation\", \"Complex Problem Solving\"]',\n", + " '[\"OpenShift\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Collections\", \"Docker Container\", \"Junit\", \"Wealth Management\", \"Financial Institution\", \"Business Integration Software\", \"Financial Instrument\", \"Activism\", \"Onboarding\", \"Disciplined Agile Delivery\", \"Docker Swarm\", \"SARS Software Products\", \"Adapters\", \"Investment Advisory\", \"Feature-Driven Development (FDD)\", \"Investments\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Cross-Functional Team Leadership\", \"Humanism\", \"Banking Software\", \"Asset Management\", \"Google Cloud Platform (GCP)\", \"Banking\", \"Git Flow\", \"Derivatives\", \"Pension Funds\", \"Java Scripting Languages\"]',\n", + " \"['English']\"],\n", + " ['145',\n", + " 'c++ back end software engineer',\n", + " 'Zürich',\n", + " 'Aerospace & Defence',\n", + " 'www.veritystudios.com',\n", + " '[[-2.05985904e-01 3.63334298e-01 3.98180604e-01 7.37345889e-02\\n6.12776875e-01 -1.37464389e-01 -5.66377267e-02 2.55230784e-01\\n7.42716938e-02 -3.34895611e-01 -7.98960216e-03 -3.96854490e-01\\n-8.38371068e-02 1.38850421e-01 8.63480121e-02 5.18396437e-01\\n1.43955186e-01 7.12292120e-02 -2.42769927e-01 4.73550498e-01\\n4.60687205e-02 -1.24515496e-01 1.94112062e-01 7.60677397e-01\\n3.29556614e-01 2.42234170e-02 -1.37974501e-01 -7.10776448e-02\\n-2.13933125e-01 -5.19141406e-02 4.58962619e-01 6.75563216e-02\\n-1.07235275e-01 -5.70448339e-01 1.12456426e-01 1.05927154e-01\\n-2.50869185e-01 -1.11949027e-01 -1.29622042e-01 1.66764438e-01\\n-6.19513690e-01 -3.82298768e-01 -1.60045493e-02 -8.34970325e-02\\n-2.54685223e-01 -2.79926658e-01 2.11237147e-01 -2.39865445e-02\\n1.70779213e-01 1.45328030e-01 -4.76414502e-01 2.34440804e-01\\n-2.34336197e-01 -1.93579555e-01 3.83755922e-01 6.64856672e-01\\n2.58830860e-02 -5.88672101e-01 -5.01487315e-01 -3.41661394e-01\\n-8.89664590e-02 -9.22143366e-03 1.02668162e-02 -4.75725114e-01\\n2.40385279e-01 2.11712383e-02 6.66927546e-02 3.38225812e-01\\n-7.42188096e-01 -1.98617861e-01 -2.21957371e-01 6.28391132e-02\\n-2.27078557e-01 2.23747548e-03 -3.39267105e-01 -1.28093749e-01\\n-1.72613531e-01 4.28349525e-01 -1.82365552e-02 5.71071655e-02\\n-2.71872938e-01 3.69172007e-01 -1.57922849e-01 5.11346817e-01\\n2.41458386e-01 2.26627022e-01 1.56122446e-01 4.16605175e-01\\n-4.52266932e-01 3.00074458e-01 2.52851784e-01 -3.06461662e-01\\n2.18064755e-01 2.47903913e-01 4.03815567e-01 -7.38221407e-03\\n1.15824014e-01 1.26008645e-01 -3.36245447e-01 3.49652469e-01\\n2.69072413e-01 -2.39013523e-01 1.78278387e-01 -1.25444710e-01\\n8.66488218e-02 2.85100713e-02 -2.23362576e-02 1.84874579e-01\\n-2.84118414e-01 4.43160534e-01 2.94514388e-01 -2.56686330e-01\\n-2.64549255e-01 -5.97270846e-01 -6.77708983e-02 1.30404428e-01\\n7.87365288e-02 1.36354595e-01 1.92636877e-01 1.14882261e-01\\n2.76067168e-01 -2.29275644e-01 1.36476874e-01 9.40843701e-01\\n-1.33099928e-01 -1.03538103e-01 -6.32294640e-02 3.19909990e-01\\n6.59054667e-02 -1.73681334e-01 7.24943355e-02 2.32951432e-01\\n-1.45552503e-02 -1.17562473e-01 -2.69029617e-01 3.36433053e-01\\n-1.97948620e-01 -2.49143064e-01 -3.78955394e-01 3.51919234e-01\\n-1.15315601e-01 -4.07644629e-01 6.82614565e-01 -1.04512244e-01\\n1.52674019e-01 -4.64980677e-02 1.61041487e-02 -7.72189051e-02\\n-1.58067122e-01 1.02436595e-01 1.65273577e-01 7.28868470e-02\\n-3.18537533e-01 -2.87096769e-01 -1.78769052e-01 -4.54214178e-02\\n-3.19787741e-01 2.05240905e-01 -9.91580486e-02 -2.36709565e-01\\n7.16910213e-02 1.83305278e-01 -4.80815113e-01 2.18793720e-01\\n-2.40914747e-01 -6.99398741e-02 -7.83811882e-02 5.64806938e-01\\n-2.77467638e-01 1.73256397e-01 1.18529722e-01 -2.27510296e-02\\n6.31084800e-01 2.06389159e-01 2.35145420e-01 1.29319001e-02\\n3.82446945e-01 -7.83267096e-02 1.56693220e-01 3.07950974e-01\\n-6.89495087e-01 2.99862176e-01 -3.20297405e-02 -5.80733046e-02\\n2.04313934e-01 -1.30033612e-01 3.56816083e-01 -3.66585791e-01\\n-1.29208818e-01 -2.42006898e-01 -3.71527553e-01 -2.40603611e-01\\n-2.28652120e-01 3.93386371e-02 2.79398203e-01 -3.10971290e-01\\n-9.18062925e-02 1.97226346e-01 -5.74024558e-01 -1.66245937e-01\\n1.42289877e-01 2.43803695e-01 1.23344466e-01 6.97688311e-02\\n-1.67240083e-01 -6.82010055e-01 3.09797674e-02 -3.36659491e-01\\n-3.53111207e-01 -1.99150890e-02 -3.32719207e-01 6.41027540e-02\\n-3.05872615e-02 1.12619169e-01 -7.96262622e-02 -2.88432091e-02\\n-4.58801597e-01 3.66032273e-02 3.19360271e-02 -3.15219257e-03\\n1.81903243e-01 1.28900915e-01 -4.40722167e-01 4.27287459e-01\\n-3.60187411e-01 6.59742475e-01 -2.54579633e-02 -9.26798463e-01\\n5.15718222e-01 3.95129174e-01 -1.20112583e-01 -2.78218091e-01\\n4.32752430e-01 -5.82723558e-01 -1.87039986e-01 7.82845914e-02\\n-2.26778746e-01 -2.97221065e-01 3.39034796e-01 -2.90983677e-01\\n-3.32921147e-01 5.92325926e-01 1.02244355e-01 1.43974900e-01\\n3.22126627e-01 -3.28167975e-01 -4.69457135e-02 2.15251232e-03\\n3.08986418e-02 -1.11619577e-01 -5.82536340e-01 -1.53299784e-02\\n-7.27580339e-02 -3.33276272e-01 -3.45025063e-02 -4.34960335e-01\\n-1.45363450e-01 -3.40342939e-01 -2.55671144e-01 5.37418574e-02\\n3.47044915e-01 5.65831661e-02 1.07031733e-01 6.65723756e-02\\n-5.10901250e-02 -6.68282092e-01 7.48240799e-02 1.27382770e-01\\n4.18702900e-01 2.33208656e-01 2.18327329e-01 5.94726130e-02\\n1.24663159e-01 7.71426260e-01 -3.42102289e-01 -1.72709197e-01\\n6.91612884e-02 6.19139336e-02 -2.05395408e-02 -1.48755342e-01\\n2.65958071e-01 3.88664514e-01 -3.76277506e-01 3.82000022e-02\\n-9.30259228e-02 2.03964692e-02 4.02058005e-01 -4.58512679e-02\\n-2.63992935e-01 -2.96835959e-01 -8.26911181e-02 1.12520903e-02\\n-5.15154958e-01 -1.50129423e-01 2.82796025e-01 8.38344842e-02\\n1.94413751e-01 5.02666198e-02 1.70590863e-01 -9.82355103e-02\\n-4.41521227e-01 -3.11400533e-01 1.22995183e-01 1.48827359e-01\\n-2.76790094e-02 1.12194128e-01 7.44633451e-02 -7.07996726e-01\\n-2.72454309e+00 5.34029864e-02 1.75257504e-01 -1.98654652e-01\\n3.36907804e-01 -6.53685927e-02 1.09978214e-01 -3.16157192e-02\\n-3.55830789e-01 4.42458987e-02 -2.89239287e-02 -1.59436435e-01\\n7.56649151e-02 1.86911806e-01 1.44056782e-01 4.63028215e-02\\n6.98418692e-02 -3.27719748e-01 -9.36945155e-02 3.31667989e-01\\n-1.18849806e-01 -8.04062247e-01 2.00819045e-01 -1.26729324e-01\\n2.54911333e-01 1.95139214e-01 -4.79090929e-01 -1.46115467e-01\\n-2.61862636e-01 -1.09654486e-01 4.85282019e-03 -2.79336989e-01\\n-2.41603047e-01 1.88137472e-01 1.87168032e-01 -1.35401972e-02\\n8.62481222e-02 -4.34705317e-01 -1.60589010e-01 -4.28641707e-01\\n1.77408278e-01 -6.09819472e-01 -6.96853548e-03 -2.30592757e-01\\n6.40858293e-01 -2.70242929e-01 1.35734931e-01 1.25911921e-01\\n1.49351195e-01 2.69990042e-02 2.36425519e-01 6.78248629e-02\\n-9.65867788e-02 -2.25626662e-01 -1.29000962e-01 -2.47471124e-01\\n6.36729777e-01 3.39879185e-01 -2.07142353e-01 -1.66808292e-02\\n7.58172870e-02 -2.93556452e-01 -5.43299913e-01 -1.82129353e-01\\n-5.64413927e-02 -1.79539651e-01 -5.83404779e-01 -3.56540203e-01\\n-1.86783940e-01 -1.21287085e-01 -6.88438863e-02 7.59267151e-01\\n-4.20275092e-01 -2.10742876e-01 1.22092612e-01 -5.78946352e-01\\n4.35128927e-01 -2.75633633e-01 -1.44124031e-03 -3.35657805e-01\\n-2.88897008e-01 -5.05288661e-01 7.09490553e-02 -2.00807944e-01\\n-2.24279895e-01 -2.85540402e-01 -3.29982080e-02 -1.64206147e-01\\n-2.05053717e-01 -5.54817021e-01 3.81877899e-01 1.87059671e-01\\n3.86264861e-01 5.08880094e-02 4.64519948e-01 -1.04326755e-01\\n3.50761890e-01 1.23105720e-01 5.25633097e-02 -2.67343819e-01\\n-1.06798224e-02 4.93982062e-02 5.52316666e-01 -2.65558004e-01\\n-4.99412566e-02 1.00008756e-01 -2.66877711e-01 -4.02108654e-02\\n3.44774008e-01 -1.90543327e-02 2.04607621e-02 -2.38944471e-01\\n3.50827903e-01 -3.92211854e-01 -1.28689528e-01 5.48722632e-02\\n2.60435879e-01 9.16035593e-01 2.89942957e-02 -4.06902254e-01\\n-1.69348806e-01 5.25479972e-01 -8.75239521e-02 1.28346324e-01\\n-5.64013906e-02 1.12256117e-01 -3.05525213e-01 3.53314340e-01\\n6.43014312e-02 -3.14700872e-01 -2.42124379e-01 -5.53655252e-02\\n-1.95170686e-01 4.67520624e-01 2.03857601e-01 8.48484188e-02\\n-9.66811031e-02 -5.17074049e-01 -1.59701943e-01 3.82808626e-01\\n1.31089941e-01 4.08550084e-01 1.88265741e-01 -3.49108070e-01\\n8.19405168e-02 4.89717305e-01 -1.45293534e-01 3.22562099e-01\\n-1.64050549e-01 2.67119467e-01 -6.20453417e-01 -3.37721467e-01\\n-4.14802641e-01 -4.14349735e-01 1.97383106e-01 4.82603669e-01\\n1.53204799e-01 -1.28630683e-01 1.68317378e-01 -4.87397552e-01\\n3.02149683e-01 2.83015072e-01 1.00283109e-01 8.34846199e-02\\n-1.17759869e-01 6.17286623e-01 1.05127871e-01 -2.48130873e-01\\n-1.06966838e-01 -7.93929249e-02 -1.23948075e-01 -2.39282727e-01\\n2.99848348e-01 -4.96423870e-01 -1.50800049e-01 3.85559142e-01\\n1.18245080e-01 -1.42266810e-01 -2.99973667e-01 2.87136734e-01\\n-3.25641818e-02 -2.36124963e-01 -2.87606478e-01 -1.41123101e-01\\n3.06777865e-01 -4.94928379e-03 3.12205136e-01 -5.73935747e-01\\n5.68464957e-02 -5.13903648e-02 1.31196082e-02 4.51087654e-01\\n-8.40906203e-02 -1.74472809e-01 -2.99184442e-01 -6.03371374e-02\\n5.48217297e-01 4.91175577e-02 -8.05393159e-02 5.94910234e-04\\n1.80061147e-01 -2.82668650e-01 -3.93472195e-01 1.59531921e-01\\n-8.40653926e-02 -2.41839379e-01 -1.71505958e-02 1.28349856e-01\\n1.37416095e-01 -2.75823791e-02 -5.25561213e-01 -1.38248727e-01\\n-1.43182695e-01 1.04452908e-01 5.48416004e-02 -4.70787257e-01\\n-3.49911489e-02 -5.91794029e-02 -6.06221080e-01 1.95649415e-01\\n-3.05625618e-01 -1.34530529e-01 2.20184281e-01 1.31248429e-01\\n-3.43111396e-01 -1.53189898e-01 -7.22303912e-02 3.39819670e-01\\n-2.04909027e-01 -2.51479685e-01 -1.24517620e-01 -8.94033074e-01\\n1.15059406e-01 -5.33648431e-02 -9.59374905e-02 2.31852964e-01\\n-8.95830169e-02 -1.01438189e+00 1.02808803e-01 -2.87014186e-01\\n-1.23003460e-01 -5.44079356e-02 -2.80505329e-01 -1.33313134e-01\\n2.15161532e-01 6.24261834e-02 -3.43123406e-01 4.18560803e-01\\n-2.62078226e-01 2.57272989e-01 -1.70919940e-01 5.71095273e-02\\n-6.81268051e-02 -1.48463920e-01 1.25125855e-01 -2.81140804e-01\\n-4.28685009e-01 -2.55029738e-01 -2.69996196e-01 -3.43083620e-01\\n-2.50073552e-01 -2.36282885e-01 -1.43171966e-01 1.72680765e-01\\n3.02348286e-01 -4.01428789e-02 -6.29873946e-02 -2.45580941e-01\\n1.51368916e-01 -4.35436219e-01 1.25311121e-01 -8.24228451e-02\\n1.22122213e-01 -2.17733800e-01 7.84816667e-02 1.65779665e-01\\n4.18182284e-01 -3.24608028e-01 4.68778223e-01 -3.72710466e-01\\n-4.76856112e-01 -2.95310944e-01 -2.42418349e-02 -1.01358160e-01\\n4.10329849e-01 -3.06138098e-01 1.89497545e-02 2.51212239e-01\\n1.62074566e-02 1.07716024e-03 2.97208190e-01 -2.26072460e-01\\n4.42043170e-02 7.91206360e-02 -3.68174314e-01 8.35003853e-02\\n7.66569734e-01 2.27703333e-01 1.60436019e-01 1.76611155e-01\\n-7.87680298e-02 1.74581856e-01 5.79604685e-01 -1.76826477e-01\\n-9.89760906e-02 1.53370082e-01 1.53601617e-01 -5.15923858e-01\\n-2.18991399e-01 -1.02344826e-01 -2.77597874e-01 -4.17335123e-01\\n6.47350669e-01 3.24208558e-01 -4.09324229e-01 -1.20936535e-01\\n-1.68782286e-02 -1.33876160e-01 3.25822204e-01 4.75306213e-02\\n-2.17234455e-02 9.15554166e-03 4.19051945e-01 -7.64211640e-02\\n3.60948175e-01 5.86866438e-01 -1.53685242e-01 -3.32891405e-01\\n-8.57250020e-02 2.37980485e-01 7.72385746e-02 2.74617195e-01\\n-2.83346415e-01 2.80306965e-01 -4.96304967e-02 4.38111350e-02\\n-2.53939241e-01 1.49510801e-01 2.59434320e-02 9.54945385e-02\\n1.71745360e-01 1.32071450e-01 4.66509789e-01 5.44153452e-01\\n1.13663808e-01 3.87066305e-01 3.59454751e-01 5.65822423e-02\\n4.70831662e-01 5.89590549e-01 3.96798193e-01 1.14028126e-01\\n1.74154237e-01 3.23015094e-01 2.44358093e-01 -1.23436943e-01\\n5.12997031e-01 4.81955409e-01 1.20019168e-01 9.29232836e-01\\n1.45038828e-01 4.72661376e-01 7.75368929e-01 -6.93370223e-01\\n-4.00529057e-01 8.01825225e-02 5.42603910e-01 -5.40490150e-01\\n8.92204568e-02 5.83554581e-02 1.72359906e-02 4.68550384e-01\\n-5.91422915e-01 -2.77828455e-01 -3.52308303e-02 2.01531619e-01\\n-8.18846747e-02 -1.34756729e-01 -2.12909371e-01 1.02107242e-01\\n-1.20052040e-01 -1.85670480e-01 -3.02780002e-01 -1.07798368e-01\\n-1.95805132e-01 6.21429086e-02 -1.33213237e-01 -1.29382968e-01\\n1.23620525e-01 -2.99780279e-01 9.81813483e-03 -1.08691722e-01\\n3.71459663e-01 -1.66730940e-01 -1.63171202e-01 -1.16961792e-01\\n3.51053357e-01 1.34677947e-01 5.22296786e-01 4.18758616e-02\\n2.24322766e-01 -2.27149367e-01 -2.32325897e-01 1.49474919e-01\\n1.20496228e-02 1.18949890e-01 7.47720972e-02 3.29894722e-01\\n-2.65817940e-01 -1.28175229e-01 8.05771351e-03 2.63151199e-01\\n-3.55885863e-01 -1.08938903e-01 -2.18016773e-01 -1.75021682e-03\\n-2.98438929e-02 1.93126902e-01 -1.03299230e-01 -7.21593797e-02\\n-1.71474069e-01 -4.37116802e-01 2.80486882e-01 -9.49724615e-02\\n-2.70961106e-01 -1.32967487e-01 4.12571549e-01 1.24051787e-01\\n-2.78940409e-01 1.41099960e-01 -2.07458019e-01 2.60855407e-01\\n3.23246270e-02 2.92219132e-01 1.05701797e-02 -2.19366729e-01\\n-2.48113886e-01 2.14953542e-01 -6.39967173e-02 1.99305657e-02\\n2.04844683e-01 6.07056201e-01 -1.01149984e-01 -1.29280359e-01\\n6.67372286e-01 -4.63127270e-02 -3.13079894e-01 -3.09482813e-01\\n-9.77961048e-02 -1.94017991e-01 -1.44472271e-01 -1.38574749e-01\\n1.43630370e-01 -3.68721157e-01 -1.21986322e-01 -3.03417236e-01\\n1.05592251e-01 -2.40879670e-01 -1.33349448e-01 -2.46001985e-02]]',\n", + " \"To complement its growing team, Verity Studios is looking for an experienced and versatile back end software engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software back ends for drone systems requires addressing new and challenging problems such as: (a) defining robust and reliable communication protocols to interact with embedded devices (both on wired and wireless connections), (b) implementing components to retrieve, store, and process significant amount of data in an efficient and responsive fashion, and (c) designing algorithms to easily and safely coordinate the operation of hundreds of drones and other system components. Our software team works on a multitude of challenging and interesting tasks, such as implementing drivers for proprietary embedded platform, defining robust and efficient communication protocols, designing algorithms to retrieve, process, and analyze significant amount of data, and implementing graphical user interfaces for control stations. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deploymentInteract with other engineering teams to define and review design documentsCooperate with control engineers to design protocols to interact with robotic systems in order to send commands and collect feedback dataCooperate with embedded engineers to understand the constraints of embedded platforms and design smart and reliable embedded applicationsInteract with front end engineers to define the interfaces between back ends and front endsDesign general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Experience with database design and handling large amount of data is a plus Experience with distributed systems is a plusGood written and spoken English language skillsExcellent knowledge of C++ and STLFamiliar with GDB and other debugging and program analysis toolsKnowledge of libraries such as Boost and Qt and is a plusExperience in Python, C and modern C++ is a plusExperience with PCB schematics and digital communication interfaces (e.g. SPI, CAN, I2C) is a plusTeam player and self-drivenCreative approach to problem solving Benefits. Work in an interdisciplinary, highly-skilled teamCreate ground-breaking systems, used by some of the world's most prominent stage productionsShape the culture and have a significant impact in a rapidly growing young company \",\n", + " '[\"Professionalism\", \"Coordinating\", \"Problem Solving\", \"Operations\", \"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"Control Engineering\", \"System Requirements\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Collections\", \"Digital Communications\", \"Repository Protocol Design\", \"Staging\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"Python (Programming Language)\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Library\", \"Embedding\", \"Program Analysis\", \"Process Driven Development\", \"Database Design\", \"Software Engineering\", \"C (Programming Language)\", \"Robotics\", \"Qt (Software)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Graphical User Interface\", \"Data Structures\", \"Systems Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Algorithm Design\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"User Interface\", \"Debugging\", \"Documentation Based Coding\", \"Controllability\"]',\n", + " \"['English', 'Uzbek']\"],\n", + " ['68',\n", + " 'software engineer',\n", + " 'Chiasso',\n", + " 'Film Production & Distribution',\n", + " '',\n", + " '[[-1.10012941e-01 2.50470519e-01 4.47021544e-01 7.62318075e-03\\n4.62903321e-01 -1.23481639e-01 1.25570491e-01 2.44325876e-01\\n3.67624722e-02 -4.38723087e-01 -1.22936435e-01 -2.46223420e-01\\n-9.11628082e-03 -9.29438695e-03 5.71359470e-02 3.63453090e-01\\n2.53457546e-01 -3.03699821e-02 -2.00233787e-01 4.40562785e-01\\n1.52866721e-01 -6.13864996e-02 6.80958107e-02 6.93907142e-01\\n4.41830158e-01 -4.54013608e-03 -2.18034536e-02 -7.38844723e-02\\n-2.11520836e-01 -3.17640036e-01 3.76719534e-01 -3.89324762e-02\\n2.38037594e-02 -3.50452602e-01 4.59056944e-02 1.72284432e-02\\n-1.31245151e-01 3.04484181e-03 1.87065490e-02 1.28031567e-01\\n-3.92087758e-01 -1.23583615e-01 8.59400630e-03 2.02191919e-02\\n-2.11099193e-01 -3.12084407e-01 1.07930720e-01 -1.05607897e-01\\n1.37010172e-01 -1.06115431e-01 -4.44776684e-01 3.70078236e-01\\n-1.88915402e-01 -2.33930528e-01 3.48369181e-01 6.47744775e-01\\n4.44919392e-02 -5.04125237e-01 -5.12717426e-01 -2.86719531e-01\\n2.40827035e-02 -4.05313857e-02 1.82288419e-02 -8.89614522e-02\\n2.47844741e-01 1.33271776e-02 4.70391214e-02 2.86254257e-01\\n-6.57482862e-01 -4.78459150e-02 -2.32855380e-01 2.18541101e-02\\n-3.31831217e-01 -1.59573227e-01 -3.10385317e-01 -9.38830227e-02\\n2.28110701e-03 5.07326484e-01 1.03619002e-01 -1.55620920e-02\\n-2.12682113e-01 1.42840058e-01 -3.02678108e-01 2.16910616e-01\\n2.14599013e-01 1.06917620e-01 3.28376353e-01 3.62879217e-01\\n-4.29095685e-01 4.19654220e-01 1.63889796e-01 -3.97462189e-01\\n2.85219610e-01 7.79108405e-02 5.06142735e-01 1.44823343e-01\\n1.04369193e-01 2.29737878e-01 -1.33120790e-01 2.49118775e-01\\n2.01877475e-01 -1.39971942e-01 -1.34994239e-01 -7.79017806e-02\\n1.54902413e-03 -1.09885558e-01 -1.25419423e-02 1.33354589e-01\\n-3.39495599e-01 5.18693030e-01 1.54752046e-01 -2.36832231e-01\\n-5.49510121e-02 -4.15887833e-01 -1.02557279e-01 -1.75335348e-01\\n-2.74720285e-02 1.83461428e-01 1.22072347e-01 1.80916414e-01\\n1.14876524e-01 3.59974988e-02 1.27981812e-01 8.67739558e-01\\n-6.35130405e-02 9.16547477e-02 -2.57079810e-01 2.48824105e-01\\n9.98084694e-02 -3.10137630e-01 2.39390135e-01 1.40937150e-01\\n-1.06097065e-01 -8.28493237e-02 -2.39718884e-01 2.44963765e-01\\n-1.51680335e-01 -2.31603056e-01 -2.40500540e-01 1.64550528e-01\\n-1.08818166e-01 -3.25645804e-01 5.18735170e-01 7.27473125e-02\\n3.66622433e-02 -4.17074934e-02 -1.15242466e-01 -1.17945679e-01\\n-1.40849769e-01 1.97806969e-01 7.46065453e-02 1.45685196e-01\\n-2.95734733e-01 -2.95975894e-01 -2.32712477e-01 2.36166328e-01\\n-3.67443323e-01 4.33284156e-02 -2.53742278e-01 -1.26388326e-01\\n3.40133667e-01 1.00808889e-01 -4.23965037e-01 3.15503776e-01\\n5.73892519e-02 2.17308700e-02 -1.33384109e-01 2.85237551e-01\\n-1.41019940e-01 2.38344729e-01 -2.95608807e-02 -1.35206189e-02\\n6.92211628e-01 2.09686011e-01 1.11002862e-01 -3.18190008e-02\\n3.71634990e-01 -7.82537311e-02 1.72736987e-01 1.14630967e-01\\n-5.93129814e-01 2.24569887e-01 -1.18505806e-01 -9.42846090e-02\\n2.02682167e-01 -1.19505987e-01 1.60792902e-01 -3.26074064e-01\\n5.23647219e-02 -1.01331547e-02 -3.60718668e-01 -3.64175647e-01\\n-1.95972383e-01 -1.50333550e-02 3.98813546e-01 -3.07920992e-01\\n-3.43605727e-02 2.31086165e-01 -5.43899894e-01 -8.85231569e-02\\n3.18682313e-01 2.07243979e-01 2.02752739e-01 2.08226055e-01\\n-7.87236691e-02 -4.28158104e-01 8.77275765e-02 -4.39233780e-01\\n-3.03926557e-01 1.84423953e-01 -2.90903538e-01 2.32999921e-01\\n7.16643184e-02 -1.77714974e-05 -1.92187011e-01 8.58783573e-02\\n-1.13346770e-01 -1.35578021e-01 1.41854897e-01 1.08108968e-02\\n2.08949238e-01 1.68700024e-01 -3.94689441e-01 4.46140021e-01\\n-2.10058153e-01 4.28580642e-01 6.09100796e-02 -9.37987447e-01\\n5.27969003e-01 1.96625203e-01 -9.08250809e-02 -3.48471373e-01\\n4.60195720e-01 -2.70923495e-01 1.78242415e-01 1.25302896e-01\\n-2.97267973e-01 -2.76605546e-01 2.57663995e-01 -1.89104229e-01\\n-2.61997879e-01 5.23096919e-01 1.05462879e-01 1.14958160e-01\\n1.95214182e-01 -6.62928373e-02 -1.90549254e-01 1.30824298e-01\\n-7.01125786e-02 -1.71031818e-01 -5.09049892e-01 9.39098448e-02\\n-1.20466843e-01 -4.30068314e-01 -1.43864408e-01 -5.29655814e-01\\n-2.89729059e-01 -4.62442875e-01 -2.12303102e-01 2.20529452e-01\\n2.05937028e-01 2.11702973e-01 -1.40874177e-01 2.23908909e-02\\n-4.60025221e-02 -6.28447890e-01 3.22187692e-03 1.30759418e-01\\n3.92721951e-01 1.89028352e-01 6.16211966e-02 -4.76873741e-02\\n-5.26029132e-02 5.38343430e-01 -4.85375404e-01 -1.02256849e-01\\n2.07169130e-01 1.30829886e-01 4.88320440e-02 -2.56732821e-01\\n4.77302819e-05 1.95507467e-01 -2.53248215e-01 1.70020670e-01\\n3.37195694e-02 -5.72493635e-02 2.94688165e-01 -3.88828143e-02\\n-3.89996946e-01 -2.29939967e-01 -1.79155078e-02 2.80436128e-01\\n-5.88391066e-01 -2.05896407e-01 7.22771227e-01 9.18255672e-02\\n6.50228709e-02 1.25886798e-01 3.01764339e-01 -6.77710250e-02\\n-2.13477463e-01 -1.87686026e-01 3.08631450e-01 1.79099128e-01\\n1.90205395e-01 6.14645258e-02 -1.62507772e-01 -7.37720311e-01\\n-3.44775796e+00 -1.91172779e-01 1.76672369e-01 -2.24034429e-01\\n1.84050381e-01 -1.20466061e-01 9.53514427e-02 -1.09181389e-01\\n-2.83488125e-01 5.99379018e-02 -3.43893468e-01 -3.17648426e-02\\n1.45940855e-01 3.44773591e-01 1.46317691e-01 2.20983759e-01\\n1.50097072e-01 -1.77730531e-01 7.39100575e-03 2.95644373e-01\\n-2.61173785e-01 -5.95391393e-01 2.54958451e-01 4.96640354e-02\\n2.76129901e-01 2.40309894e-01 -4.16081727e-01 -9.39517245e-02\\n-1.87265128e-01 -1.88248605e-01 6.85101599e-02 -1.65217102e-01\\n-1.21384442e-01 3.62184346e-01 2.48463124e-01 -1.76614001e-02\\n8.69665295e-02 -4.95112658e-01 -5.13296798e-02 -3.55179727e-01\\n7.31112882e-02 -7.18506813e-01 1.79983713e-02 -1.26108527e-01\\n5.50911784e-01 -1.72152013e-01 1.72777236e-01 7.36195296e-02\\n2.33043879e-01 1.37694985e-01 -2.97690555e-03 8.18728432e-02\\n-2.08410203e-01 -1.64473727e-01 -9.43721533e-02 -5.95708974e-02\\n5.65099955e-01 4.93477792e-01 -2.35337570e-01 -1.61434025e-01\\n-9.77121294e-02 -2.89260358e-01 -4.93865967e-01 -2.83251077e-01\\n-2.01496512e-01 -2.13037342e-01 -7.29650795e-01 -3.96988511e-01\\n-2.21128583e-01 -8.86087269e-02 -2.25295991e-01 7.05511212e-01\\n-2.62344748e-01 -3.25369298e-01 -2.24544778e-02 -3.19504797e-01\\n5.94823509e-02 -1.12579823e-01 7.60319829e-02 -7.04938099e-02\\n-2.35558450e-01 -3.85741532e-01 1.73618004e-01 2.10461896e-02\\n-2.41451666e-01 -2.65895873e-01 1.46236315e-01 -6.88198581e-02\\n-2.62146860e-01 -4.36277568e-01 4.11964834e-01 1.00677773e-01\\n2.13773400e-01 -8.84544849e-03 4.00483191e-01 2.55469549e-02\\n2.98367441e-01 -1.84673995e-01 5.19332252e-02 -4.18981552e-01\\n1.27792761e-01 2.41414905e-02 6.68128669e-01 -2.00941101e-01\\n1.22046746e-01 8.20060670e-02 -3.10632676e-01 -2.17405520e-02\\n3.95080686e-01 -6.14599846e-02 3.98053080e-02 -2.19420254e-01\\n2.52758324e-01 -3.18713725e-01 -2.80584276e-01 5.47411852e-03\\n1.15285553e-01 7.10785270e-01 -1.69613324e-02 -4.53787863e-01\\n-2.59640664e-01 3.60180259e-01 -8.74342620e-02 -1.95133209e-01\\n-2.17105061e-01 1.32989019e-01 -2.80065060e-01 8.25791135e-02\\n9.76574719e-02 8.70897807e-03 -2.90812433e-01 -1.18685216e-01\\n-1.32323727e-01 2.59659529e-01 2.65245289e-01 1.84636116e-02\\n-1.98791884e-02 -4.13618624e-01 -4.06362638e-02 2.10191756e-01\\n1.06387123e-01 2.69592583e-01 1.47949070e-01 -3.09367061e-01\\n-3.87316979e-02 2.70249963e-01 -1.61175370e-01 1.22753806e-01\\n-2.54008949e-01 1.34274036e-01 -5.28644502e-01 -3.26742232e-01\\n-2.99596965e-01 -3.67729068e-01 1.40982997e-02 4.03252006e-01\\n5.83771132e-02 -5.59020191e-02 3.25823314e-02 -4.28824067e-01\\n2.75585234e-01 -3.23800258e-02 2.45673612e-01 9.68115777e-02\\n1.17397442e-01 5.80042124e-01 1.19286850e-02 -2.32902691e-01\\n-9.16453823e-02 -5.84164076e-03 -3.08908492e-01 -1.20897010e-01\\n2.11256575e-02 -4.19384241e-01 -5.78539446e-02 4.17571425e-01\\n1.93481386e-01 -2.00555071e-01 -1.21428184e-01 2.53280342e-01\\n-7.32681528e-02 -3.08266789e-01 -1.98888183e-01 -1.42246336e-01\\n3.98349404e-01 -4.24597152e-02 2.99416929e-01 -4.40168142e-01\\n3.85698769e-03 -1.20824561e-01 -8.17181244e-02 4.82242882e-01\\n9.03292447e-02 9.30096731e-02 -6.00879043e-02 4.23767604e-03\\n5.61940134e-01 -2.26192474e-02 -7.89087862e-02 4.15842608e-02\\n1.31305724e-01 -2.16246307e-01 -5.49400568e-01 7.76759461e-02\\n2.11669784e-02 -1.59281999e-01 3.95505540e-02 1.52924970e-01\\n9.10619944e-02 1.88257359e-02 -5.72728336e-01 -2.69188702e-01\\n-3.86804700e-01 -6.63298294e-02 9.15820077e-02 -6.65654063e-01\\n-1.15531310e-01 1.94864161e-02 -5.37414730e-01 2.85714805e-01\\n-1.34082735e-01 -8.65770578e-02 8.66236016e-02 2.66879164e-02\\n-2.71023601e-01 -1.83643997e-01 1.38369665e-01 7.02836439e-02\\n-2.98597574e-01 -1.48576126e-01 1.79574877e-01 -9.39351082e-01\\n1.98692918e-01 3.17853093e-02 -1.48597896e-01 4.58805785e-02\\n-6.66105375e-02 -6.60189509e-01 2.14171246e-01 -4.10021335e-01\\n-8.38513523e-02 -3.78951035e-03 -2.16160208e-01 -4.28993344e-01\\n6.69576079e-02 -7.70870000e-02 -3.60684782e-01 3.49363804e-01\\n-3.14594358e-01 3.67190003e-01 5.86253330e-02 1.05138928e-01\\n1.09997109e-01 -3.06649148e-01 -3.99776287e-02 -4.06819642e-01\\n-5.40746808e-01 -8.80865157e-02 -2.89883316e-01 -1.19079255e-01\\n6.20841756e-02 -3.32511544e-01 -1.45653754e-01 5.27217984e-02\\n2.95580089e-01 1.62493378e-01 -6.35830015e-02 -2.88838208e-01\\n-5.77366650e-02 -5.09525597e-01 4.12790850e-02 7.86661357e-03\\n-1.22106746e-02 -1.00146905e-01 3.86836737e-01 5.51682189e-02\\n1.74759194e-01 -3.57936442e-01 5.59384763e-01 -3.30532551e-01\\n-2.88161874e-01 -8.81625041e-02 -4.28027548e-02 1.49170950e-01\\n3.39139372e-01 -4.26507115e-01 -2.70741675e-02 3.27434003e-01\\n1.53594956e-01 9.05248299e-02 3.36502850e-01 -1.47999644e-01\\n-1.27233207e-01 1.97953060e-01 -3.61297190e-01 2.09337264e-01\\n7.11478710e-01 -4.82371859e-02 5.61578982e-02 1.18219934e-01\\n8.48385766e-02 2.30178833e-01 6.17283463e-01 -1.18414551e-01\\n-1.69422269e-01 4.13275808e-01 7.91588649e-02 -6.13373756e-01\\n-1.20063111e-01 -7.75925815e-03 -8.71705711e-02 -2.88340867e-01\\n5.99007308e-01 3.78376871e-01 -3.44215155e-01 -2.44394675e-01\\n-1.40219122e-01 -1.60340875e-01 7.03253672e-02 2.84910873e-02\\n1.30121291e-01 2.98768729e-02 5.67786098e-01 -8.22214931e-02\\n1.71368569e-01 4.61361170e-01 -1.17683873e-01 -3.79283994e-01\\n-1.03428736e-01 1.79372966e-01 9.40807238e-02 3.99562150e-01\\n-1.46710813e-01 2.08850533e-01 1.02987394e-01 7.45752305e-02\\n-7.22869933e-02 -4.52621579e-02 1.06191769e-01 7.38420561e-02\\n1.16560459e-01 1.07244954e-01 5.04447401e-01 4.31542933e-01\\n4.00300741e-01 4.53484833e-01 3.04671258e-01 1.19413100e-02\\n5.91943562e-01 7.32437491e-01 3.23637128e-01 1.51883885e-01\\n-8.27608183e-02 5.83784245e-02 1.13580018e-01 9.21359286e-04\\n4.00977731e-01 4.25269485e-01 8.27398300e-02 7.59780526e-01\\n4.40533578e-01 2.89181948e-01 5.50154865e-01 -6.40766740e-01\\n-3.46369147e-01 1.08832687e-01 5.07788539e-01 -2.19588935e-01\\n6.81672990e-02 1.80244774e-01 -5.94211593e-02 7.11943954e-02\\n-4.75390851e-01 -3.69595319e-01 -3.29450630e-02 2.20857561e-03\\n1.25821665e-01 -1.57366082e-01 -2.72083104e-01 1.53144300e-01\\n-5.56357093e-02 -1.35593921e-01 -4.62019503e-01 -6.21635914e-02\\n-2.14661196e-01 -3.49476039e-02 -1.13270804e-01 -9.83854383e-02\\n-6.86635226e-02 -3.02266419e-01 -2.24063158e-01 4.84197540e-03\\n1.90172717e-01 -1.76232904e-01 -1.63900495e-01 -1.51675224e-01\\n2.25549817e-01 1.98618487e-01 5.85257173e-01 -1.18914410e-01\\n9.39056277e-02 -3.71392995e-01 -2.28455395e-01 1.35586649e-01\\n2.29180649e-01 4.77072932e-02 2.39419267e-02 4.63004887e-01\\n-3.55399609e-01 -1.12099037e-01 1.29001975e-01 3.28360319e-01\\n-3.93815547e-01 -7.02106208e-03 -1.50103256e-01 1.46630272e-01\\n1.33815676e-01 1.71488792e-01 -1.37916759e-01 -9.00065601e-02\\n-1.40100434e-01 -5.20996690e-01 3.12228352e-01 -3.54125425e-02\\n-1.16210610e-01 2.34234333e-03 1.85509741e-01 1.99718326e-01\\n-2.79738724e-01 -2.30321120e-02 -1.68226153e-01 1.43030733e-01\\n4.91208732e-02 2.88100481e-01 -3.06857765e-01 -2.05781162e-01\\n-1.92017049e-01 2.26385653e-01 -6.21558353e-02 1.45950302e-01\\n-1.30987801e-02 3.68991464e-01 1.69430822e-01 1.70710325e-01\\n4.22643721e-01 8.54823887e-02 -1.24446549e-01 -1.45083398e-01\\n-3.09533983e-01 -2.41282701e-01 -2.54385658e-02 -8.20061751e-03\\n1.59541160e-01 -3.19271326e-01 -3.46607044e-02 -1.34387702e-01\\n-2.85385549e-01 -2.86997914e-01 -1.14202261e-01 8.40340462e-03]]',\n", + " 'Job DescriptionWe are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you dont feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios Youll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! -Blog: https://technology.lastminute.com/ -Twitter: https://twitter.com/lastminute_tech/Qualifications null Additional Information null',\n", + " '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Vert.x\", \"Extreme Programming\"]',\n", + " \"['English', 'Letzeburgesch', 'Chichewa', 'Kazakh']\"],\n", + " ['40',\n", + " 'data analyst',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.epam.com',\n", + " '[[-8.58022720e-02 3.32712084e-01 4.94108289e-01 -1.77620146e-02\\n5.63087642e-01 2.70984918e-02 1.36530504e-01 3.28442276e-01\\n-3.49113182e-03 -2.92604297e-01 -1.99293733e-01 -2.32322410e-01\\n2.59116888e-02 -2.85414737e-02 7.96415284e-02 3.91459495e-01\\n1.77091986e-01 2.46167872e-02 -1.93204746e-01 2.45982379e-01\\n1.89622715e-01 -2.05481425e-01 1.35971785e-01 7.05018997e-01\\n5.88862717e-01 4.01387997e-02 -4.02101642e-03 -1.66107304e-02\\n-2.98135132e-01 -3.87022644e-01 5.56441963e-01 3.69660407e-02\\n-1.24448605e-01 -2.40263909e-01 1.31573409e-01 2.22700894e-01\\n-2.06793636e-01 -7.78195336e-02 -1.31535664e-01 1.22085422e-01\\n-4.70116496e-01 -6.63011968e-02 -7.62421861e-02 1.13834061e-01\\n-2.89439321e-01 -3.39821339e-01 1.52780816e-01 -2.74627686e-01\\n1.01910397e-01 1.67807490e-01 -4.54560131e-01 3.61653060e-01\\n-1.56389162e-01 -1.75973728e-01 2.97375947e-01 8.02958906e-01\\n-1.55247197e-01 -6.12067640e-01 -4.84079629e-01 -3.10692042e-01\\n1.57142028e-01 -6.73078448e-02 1.82032675e-01 -1.79578334e-01\\n2.37745270e-01 -4.10367288e-02 6.17140252e-03 3.77570897e-01\\n-7.40710855e-01 2.33693346e-02 -3.51561666e-01 -4.72165570e-02\\n-3.75126064e-01 -3.34743969e-02 -4.78289455e-01 -9.79894996e-02\\n-7.70336762e-02 4.60552692e-01 1.70774199e-02 -7.83480983e-03\\n-1.99656188e-01 1.92613140e-01 -3.05593461e-01 1.60100654e-01\\n2.26275757e-01 2.09195480e-01 2.04487920e-01 2.35866725e-01\\n-2.95835257e-01 5.07475317e-01 2.86559552e-01 -1.57564610e-01\\n2.76239634e-01 5.07368334e-02 3.45853090e-01 1.65063307e-01\\n4.45651403e-03 7.88482130e-02 -1.19431503e-01 1.58783033e-01\\n2.69983768e-01 -1.75139323e-01 -6.92347735e-02 -3.46829556e-02\\n9.23480652e-03 -6.21263720e-02 2.13638283e-02 1.62478328e-01\\n-3.16812128e-01 4.66730475e-01 -2.20814217e-02 -2.69843996e-01\\n-9.62447301e-02 -5.42697251e-01 -1.85581639e-01 -1.01232357e-01\\n3.47622372e-02 3.64132047e-01 3.21396515e-02 2.65110224e-01\\n2.72119492e-01 2.18545198e-02 1.37086600e-01 7.72362113e-01\\n-4.54835445e-02 6.47301450e-02 -3.07634294e-01 3.88520598e-01\\n7.40818307e-02 -3.30911875e-01 2.37009272e-01 1.68779090e-01\\n-1.01053573e-01 -1.05036937e-01 -2.41707385e-01 2.58020312e-01\\n-1.54672012e-01 -2.58798748e-01 -1.99231967e-01 1.14379346e-01\\n-8.96056741e-02 -3.95303100e-01 5.28215826e-01 -6.77254330e-03\\n1.37234539e-01 -2.17588082e-01 -1.05034098e-01 1.89749505e-02\\n-4.47313115e-02 2.46621192e-01 1.60324991e-01 1.10097505e-01\\n-8.68762583e-02 -2.29974464e-01 -1.88614294e-01 2.46995255e-01\\n-2.40887985e-01 6.99263960e-02 -2.20867351e-01 -1.49381816e-01\\n4.53227818e-01 9.62322429e-02 -3.24547023e-01 2.74745941e-01\\n-5.14681824e-02 1.52907856e-02 -1.94785327e-01 2.83881575e-01\\n-1.74146861e-01 2.10408747e-01 -2.76432596e-02 -1.45912498e-01\\n7.06097007e-01 8.48135576e-02 2.22871706e-01 3.59987691e-02\\n1.54666722e-01 -6.77158162e-02 1.98599309e-01 1.70325473e-01\\n-5.08823633e-01 4.74150479e-01 -5.87677807e-02 -1.33389682e-01\\n1.77948639e-01 -1.52808532e-01 2.53254533e-01 -2.65658975e-01\\n4.95238304e-02 -1.24621630e-01 -2.92085141e-01 -3.29807281e-01\\n-1.65965617e-01 -4.88345176e-02 2.60966241e-01 -4.20238823e-01\\n-1.56857423e-05 2.83976495e-01 -5.45167208e-01 -1.19213589e-01\\n2.78933942e-01 2.54040092e-01 1.48838535e-01 2.01222375e-01\\n-2.14302644e-01 -3.49974155e-01 1.91520110e-01 -4.10572052e-01\\n-2.23578840e-01 7.28538781e-02 -2.92827368e-01 1.62387729e-01\\n9.53513980e-02 6.59349486e-02 -8.58828574e-02 1.77078545e-01\\n-2.30140686e-01 -6.91175312e-02 5.23169190e-02 1.56736270e-01\\n3.10649306e-01 1.43427759e-01 -5.35088241e-01 4.78362948e-01\\n-1.83927044e-01 4.01968479e-01 1.70406759e-01 -8.60576570e-01\\n3.84561926e-01 3.11263740e-01 2.22975910e-02 -3.64291131e-01\\n6.70126140e-01 -2.73737311e-01 7.04717189e-02 2.83454768e-02\\n-3.33977133e-01 -2.40552232e-01 2.85062820e-01 -1.71629518e-01\\n-2.89835811e-01 5.75648844e-01 8.15752745e-02 1.58796668e-01\\n2.67559379e-01 -6.62268102e-02 -1.86589718e-01 1.69394948e-02\\n-1.58070087e-01 3.77502665e-02 -5.54238319e-01 -3.34189477e-04\\n-2.11785108e-01 -4.46970344e-01 -4.13983613e-02 -5.71358740e-01\\n-2.26707831e-01 -3.60662252e-01 -1.54805318e-01 6.84579387e-02\\n1.83144882e-01 1.74884707e-01 -9.52750072e-02 4.11693286e-03\\n-1.37357309e-01 -8.71199310e-01 -4.35033888e-02 1.89279363e-01\\n3.00331980e-01 2.89833099e-01 2.26860344e-01 -1.18684128e-01\\n1.70541201e-02 6.02091193e-01 -3.21440369e-01 -9.05222744e-02\\n1.48846701e-01 1.69294894e-01 1.30588353e-01 -8.70373696e-02\\n4.42209095e-02 1.79722458e-01 -2.13950574e-01 -3.95147055e-02\\n-1.07182652e-01 -1.42917326e-02 2.50130892e-01 2.11310703e-02\\n-3.02444935e-01 -2.49347046e-01 -5.90105541e-02 3.50946933e-01\\n-4.91041154e-01 -2.56376863e-01 6.68152392e-01 1.22094929e-01\\n4.63068159e-03 2.40912154e-01 2.89630622e-01 -4.82703224e-02\\n-8.46922621e-02 -2.25176722e-01 3.21934432e-01 7.09089041e-02\\n1.27997503e-01 -3.16553041e-02 -2.11945355e-01 -6.92523599e-01\\n-3.63800716e+00 -2.31165718e-02 5.37471585e-02 -3.01871866e-01\\n2.43005678e-01 -1.60907060e-01 3.82398456e-01 -5.55806905e-02\\n-2.37859100e-01 9.05731097e-02 -2.04409555e-01 -3.82111371e-02\\n1.38733581e-01 3.42459440e-01 6.09979257e-02 3.05416495e-01\\n1.11218594e-01 -3.87069106e-01 5.23189716e-02 3.84103060e-01\\n-1.72103062e-01 -6.82609975e-01 1.09542914e-01 1.87952027e-01\\n1.75164565e-01 2.23995849e-01 -4.57438171e-01 -8.92086998e-02\\n-2.54251510e-01 -3.68202746e-01 1.68587103e-01 -1.88387915e-01\\n-2.65489936e-01 2.64035165e-01 1.91955835e-01 -1.62621304e-01\\n-5.33834659e-02 -3.36081624e-01 1.82765424e-02 -5.51248968e-01\\n-4.45842408e-02 -7.14796960e-01 -2.24602427e-02 -1.51182208e-02\\n7.38620520e-01 -2.42076680e-01 1.18038118e-01 6.42449483e-02\\n1.54694736e-01 1.34873927e-01 1.33788541e-01 2.11601872e-02\\n-2.72300005e-01 -1.52046785e-01 -1.69784576e-01 -8.79277363e-02\\n6.24512672e-01 4.51346666e-01 -2.98033059e-01 -4.91448166e-03\\n2.27133613e-02 -3.15694422e-01 -5.01874566e-01 -2.78311521e-01\\n-2.80405730e-01 -5.41933626e-02 -7.94163823e-01 -4.09809530e-01\\n-9.76841375e-02 -1.96379796e-01 -1.76401913e-01 6.38670623e-01\\n-1.77162260e-01 -3.79866511e-01 -1.09128438e-01 -5.46562135e-01\\n2.47732118e-01 -5.29508628e-02 4.53545488e-02 -1.90821767e-01\\n-1.86222270e-01 -3.39822680e-01 1.05499715e-01 -4.92565222e-02\\n-1.44704536e-01 -3.67721543e-02 1.15484081e-01 -6.37855381e-02\\n-4.11788791e-01 -6.23712242e-01 3.63089681e-01 7.76443407e-02\\n3.11633527e-01 1.56335384e-02 2.51271963e-01 6.61507398e-02\\n3.40137452e-01 -1.47749722e-01 9.44963694e-02 -3.42936039e-01\\n-8.18526447e-02 4.00951505e-02 6.77417397e-01 -3.40811610e-01\\n1.27991945e-01 8.34834948e-02 -2.21898094e-01 -6.61411807e-02\\n3.99379700e-01 7.58593064e-03 9.73184705e-02 -2.04064310e-01\\n2.53059834e-01 -3.05489630e-01 -2.71699488e-01 7.04624131e-02\\n1.19051322e-01 6.66127741e-01 -4.33618687e-02 -3.48103225e-01\\n-8.18821117e-02 3.38700891e-01 -7.60509521e-02 -1.24820441e-01\\n-2.51725197e-01 4.65911031e-02 -3.39026600e-01 3.00159693e-01\\n1.49597183e-01 -1.47857249e-01 -3.39286894e-01 -1.88165307e-01\\n4.83503155e-02 2.89707601e-01 3.57491255e-01 1.87540576e-02\\n-5.26642203e-02 -2.31924340e-01 -1.70446366e-01 2.69043356e-01\\n9.25507322e-02 3.05210710e-01 1.75956577e-01 -2.72577643e-01\\n-9.03716777e-03 2.10065663e-01 -3.15325826e-01 2.09408894e-01\\n-2.24558219e-01 1.20159335e-01 -5.36346078e-01 -2.71365196e-01\\n-1.12313464e-01 -3.62632155e-01 2.07792401e-01 3.91727567e-01\\n1.56777605e-01 -5.57116885e-03 5.48180453e-02 -5.35319924e-01\\n2.53443062e-01 -6.29852861e-02 1.66190639e-01 1.10189229e-01\\n5.34478873e-02 5.97949862e-01 -2.83439308e-02 -1.14077456e-01\\n-1.06162317e-01 5.80132417e-02 -3.98063689e-01 -2.49116987e-01\\n7.30019659e-02 -5.29227555e-01 -5.74655384e-02 4.90821064e-01\\n2.52621561e-01 -8.40218663e-02 -1.16779748e-02 2.20578611e-01\\n-9.80254635e-02 -2.84056246e-01 -2.00497627e-01 8.94206613e-02\\n3.29359800e-01 1.46241546e-01 3.54735911e-01 -3.78123820e-01\\n5.61985597e-02 -1.30186528e-01 -5.42683303e-02 3.75687540e-01\\n6.75667673e-02 2.06396222e-01 1.61007028e-02 -1.26443058e-01\\n5.34386277e-01 -7.89452810e-03 -7.58236833e-03 1.30109131e-01\\n1.33009076e-01 -3.58247429e-01 -4.51698661e-01 4.93704826e-02\\n-3.52064818e-02 -2.69826055e-01 -7.88469985e-02 1.28111079e-01\\n-5.69645353e-02 -1.05016660e-02 -7.36596406e-01 -2.14280203e-01\\n-3.62956941e-01 6.66568577e-02 -6.31039543e-03 -5.77726722e-01\\n-1.30348504e-01 3.49110970e-03 -6.55627668e-01 3.49790931e-01\\n-4.72887466e-03 -1.79685745e-02 2.09610671e-01 4.01627980e-02\\n-1.56303167e-01 -1.18445694e-01 2.21592993e-01 2.50441343e-01\\n-2.12127939e-01 -1.70442119e-01 -7.51747340e-02 -1.02838957e+00\\n2.22675409e-02 4.68226783e-02 -1.63422495e-01 7.64471143e-02\\n-4.55700373e-03 -7.76873112e-01 2.64902949e-01 -3.38653505e-01\\n-2.05551073e-01 -2.27847323e-02 -1.87836394e-01 -4.65635836e-01\\n1.26138404e-01 9.96539518e-02 -2.75597006e-01 2.74695009e-01\\n-3.08248639e-01 4.33444023e-01 -4.68119234e-03 8.11599344e-02\\n4.41725105e-02 -2.42475405e-01 8.30164850e-02 -3.06405038e-01\\n-4.08852011e-01 -1.58906728e-01 -3.35255563e-01 -3.63071263e-02\\n-2.69566178e-02 -3.06130290e-01 -7.99980611e-02 1.25781223e-01\\n4.03326213e-01 1.76411644e-01 -5.47775924e-02 -1.04424180e-02\\n-1.90558713e-02 -4.95793164e-01 4.40263972e-02 -2.46433288e-01\\n-5.75465746e-02 -1.60973266e-01 1.56471208e-01 2.58842167e-02\\n1.70532182e-01 -4.30789411e-01 5.26056170e-01 -2.96768695e-01\\n-3.07012647e-01 -4.22546342e-02 1.11904368e-01 1.69725139e-02\\n3.33291262e-01 -4.09171671e-01 -1.23935781e-01 4.28277671e-01\\n-5.54087833e-02 7.93002993e-02 3.68243188e-01 -2.05442250e-01\\n-1.98118106e-01 3.51389617e-01 -4.54942673e-01 1.92148075e-01\\n7.68722534e-01 1.48142949e-01 1.48598254e-01 1.59322411e-01\\n2.36921161e-02 2.37080663e-01 4.28111762e-01 -4.12203670e-02\\n-1.12421721e-01 3.25640023e-01 -9.34998542e-02 -6.43992245e-01\\n-5.97526953e-02 -1.73185617e-01 -1.66084573e-01 -4.19775426e-01\\n6.29584908e-01 4.00225729e-01 -2.43878245e-01 -3.69404167e-01\\n-3.27855408e-01 -2.22102523e-01 1.16962537e-01 -9.70805213e-02\\n2.36286279e-02 6.11390397e-02 5.09792209e-01 5.92119768e-02\\n2.78992862e-01 4.15516406e-01 -2.31851880e-02 -2.08425432e-01\\n-4.14332896e-02 1.79937094e-01 2.07552332e-02 4.60339248e-01\\n-4.51183394e-02 2.30721176e-01 -2.17917096e-02 1.60337389e-01\\n-1.88717157e-01 -8.18147510e-02 1.22962527e-01 1.34528592e-01\\n-3.49900723e-02 1.63638726e-01 4.43198472e-01 4.86152709e-01\\n2.17964098e-01 4.79881018e-01 3.46334547e-01 7.08746016e-02\\n5.07249355e-01 5.65257549e-01 3.18793684e-01 2.21879363e-01\\n-2.13614013e-02 2.49506645e-02 4.20566052e-02 -3.75797600e-03\\n2.16977492e-01 4.52837288e-01 4.28138971e-02 6.65215790e-01\\n2.16140509e-01 2.13084206e-01 6.09186471e-01 -6.52760208e-01\\n-3.56107354e-01 -8.38891938e-02 4.73078579e-01 -3.16097170e-01\\n4.00876105e-02 1.85518757e-01 -2.85058737e-01 1.82405561e-01\\n-6.71678543e-01 -3.60605896e-01 1.43685183e-02 -1.74553484e-01\\n3.01650129e-02 -1.26761213e-01 -2.36683533e-01 1.67124704e-01\\n-1.35479420e-01 -9.03854519e-02 -4.67409670e-01 -7.60198310e-02\\n-2.96081126e-01 1.37561501e-03 -3.24344076e-02 9.12120508e-04\\n-1.03140902e-03 -1.69677645e-01 -1.68354630e-01 1.25711575e-01\\n2.76699752e-01 -2.68246643e-02 -1.13898829e-01 -3.16284522e-02\\n2.05400854e-01 9.60599408e-02 5.39832830e-01 -1.25818342e-01\\n9.20961350e-02 -1.53405279e-01 -1.43259600e-01 1.04069792e-01\\n4.71300244e-01 -5.73609695e-02 2.23232098e-02 4.51675564e-01\\n-4.48908687e-01 -3.90351385e-01 9.09804851e-02 2.76562214e-01\\n-4.36768234e-01 -1.27926432e-02 1.19737007e-01 1.42528355e-01\\n8.28544721e-02 2.25530699e-01 -2.07654893e-01 -3.78931798e-02\\n-2.52544843e-02 -5.51477730e-01 3.62212002e-01 -1.20237075e-01\\n-1.40697882e-01 2.84734499e-02 2.75724381e-01 2.16456622e-01\\n-5.23248948e-02 5.01972251e-02 -2.05741629e-01 1.83046922e-01\\n1.26709761e-02 2.07993358e-01 -3.06108147e-01 -3.79501671e-01\\n-2.71508992e-01 2.75969207e-01 3.98389921e-02 2.22066581e-01\\n7.39723891e-02 2.17266634e-01 1.05314985e-01 1.03053764e-01\\n4.03005362e-01 7.86899403e-03 -2.43393317e-01 -2.80336201e-01\\n-2.54765838e-01 -2.00268671e-01 3.92516255e-02 -1.95944056e-01\\n2.43809134e-01 -4.68595266e-01 -1.24956749e-01 -3.14952105e-01\\n-3.59460950e-01 -3.48780543e-01 -5.63030317e-02 -7.25100655e-03]]',\n", + " \"Epam Systems are currently seeking an experienced Data Analyst to join one of our client’s office in Zurich. Responsibilities Design and prepare customer reports, dashboards and analyses; create prototypes; turn models into results Analyze, validate and visualize business data, create value-added solutions Analyze business questions and deliver business answers; translate technical data findings for non-technical teams and vice versa Become a visualization expert to empower the clients understanding their data Provide insights and recommendations for clients based on the analysis Conduct daily contact with customers, fill the role of a consultant Participate in internal knowledge-sharing forums Requirements Bachelor’s/Master’s Degree in Information technology or Economics with a strong IT attitude Work experience in an international enterprise size/servicing company At least 2-3 years of data analysis experience /Tableau/AML Datahub, Global/Business Objects Oracle/ SQL know-how is required Excellent communication skills, ability to work closely to clients Fluent English is a must, both verbal and written Self-motivated personality and excellent problem-solving skills, can-do attitude Excellent time management skills, ability to work effectively with strict deadlines We offer Competitive compensation depending on skills and experience Knowledge-sharing across EPAM's global Tech Communities Unlimited access to LinkedIn learning solutions Relocation support as per EPAM relocation policies EPAM Community with regular corporate and social events Career growth, performance and compensation reviews Additional Please note that any offers will be subject to appropriate background checks We do not accept CVs from recruiting or staffing agencies Due to the Swiss labour legislation we can only accept applicants who have a valid right to work in Switzerland\",\n", + " '[\"Verbal Communication Skills\", \"Self-Motivation\", \"Time Management\", \"Problem Solving\", \"Communications\", \"Socialization\", \"Information Technology\", \"Consulting\"]',\n", + " '[\"Technical Translation\", \"Validations\", \"Visualization\", \"Economics\", \"Business Objects Framework\", \"Tableau (Business Intelligence Software)\", \"Oracle SQL Developer\", \"Creating Shareholder Value\", \"Accessioning\", \"Prototyping\", \"Value-Added Services\", \"Personalization\", \"Data Analysis\", \"Legislation\", \"Dashboard\"]',\n", + " \"['English', 'Pushto', 'Yiddish', 'Chichewa']\"],\n", + " ['64',\n", + " 'back-end software engineer',\n", + " 'Chiasso',\n", + " '',\n", + " '',\n", + " '[[-3.35816383e-01 6.42856285e-02 6.17190480e-01 -7.22094923e-02\\n6.01747274e-01 -1.70121282e-01 -1.42338872e-01 4.20830846e-01\\n-7.83537850e-02 -5.50096869e-01 -6.17809072e-02 -1.95279032e-01\\n-3.54207829e-02 1.98555112e-01 4.70523201e-02 4.87554282e-01\\n3.15138310e-01 -1.35895789e-01 -5.76310121e-02 1.52816206e-01\\n2.57867668e-02 -6.72990307e-02 -1.52405679e-01 7.77097881e-01\\n8.09336975e-02 6.91256598e-02 1.49383098e-01 1.05123580e-01\\n-2.73855031e-01 -1.59847155e-01 3.74778986e-01 8.82838368e-02\\n-2.52783537e-01 -2.16898084e-01 4.96213734e-02 2.16017172e-01\\n7.00714588e-02 1.37256622e-01 -2.31474325e-01 4.01288241e-01\\n-3.19918811e-01 -3.29550475e-01 5.06536104e-02 2.67343074e-02\\n-9.94760618e-02 -3.21008831e-01 2.20930353e-02 1.92332864e-02\\n2.87635833e-01 4.75739315e-02 -4.03760403e-01 2.56997406e-01\\n-3.03514421e-01 -3.23297024e-01 1.74764901e-01 4.80346471e-01\\n1.17518073e-02 -6.33487940e-01 -2.12561950e-01 -1.40187517e-01\\n-1.03921175e-03 5.20952456e-02 1.38530031e-01 -3.41934979e-01\\n3.09789240e-01 1.08210407e-01 -2.58142632e-02 2.83341438e-01\\n-4.82071251e-01 5.11103496e-02 -3.08139741e-01 -5.73741496e-02\\n-3.32230687e-01 6.14223070e-02 -4.44998205e-01 -2.36588761e-01\\n-2.51418322e-01 4.83292133e-01 -3.58375385e-02 1.45748034e-01\\n-6.45818596e-04 3.61956120e-01 -3.38535644e-02 2.35867634e-01\\n3.65718424e-01 4.82972622e-01 2.27682829e-01 4.58622932e-01\\n-4.51820046e-01 5.38606584e-01 3.09110165e-01 -4.87724245e-01\\n2.39958301e-01 3.49740312e-02 4.59356099e-01 4.28773046e-01\\n2.06471354e-01 2.79183388e-01 -2.39093885e-01 2.40214020e-01\\n1.07594959e-01 1.59498885e-01 -1.08709730e-01 -1.40734790e-02\\n-8.53286460e-02 -1.05843293e-02 -9.43391100e-02 1.63034096e-01\\n-5.38502753e-01 4.00397032e-01 4.99080271e-02 -3.32930267e-01\\n-1.19366810e-01 -5.39647281e-01 -3.50241691e-01 6.20675720e-02\\n4.84277569e-02 2.19983593e-01 9.93627161e-02 7.21137077e-02\\n3.23029160e-01 3.20430920e-02 7.45286644e-02 9.63083029e-01\\n-2.02344194e-01 1.19102322e-01 -2.42441848e-01 2.33480752e-01\\n1.39688775e-01 -3.04558158e-01 1.29850194e-01 3.91483009e-02\\n-8.75324383e-02 -7.72551000e-02 -3.37488025e-01 3.86875659e-01\\n-1.95673347e-01 -2.88348854e-01 -1.73076287e-01 4.63260524e-02\\n-2.48655185e-01 -2.65380979e-01 4.89898950e-01 -1.08684927e-01\\n1.98381674e-03 -9.66975614e-02 -1.58322845e-02 -3.54445390e-02\\n1.00233026e-01 3.44772756e-01 8.34914148e-02 5.36902994e-02\\n-5.11694431e-01 -4.36779797e-01 -3.03783178e-01 2.84493834e-01\\n-6.65749088e-02 2.09763587e-01 -3.01945418e-01 -1.86776165e-02\\n2.31497929e-01 8.79511237e-02 -4.85268354e-01 3.12542588e-01\\n2.17456315e-02 -2.78509766e-01 -2.09885702e-01 2.57758200e-01\\n9.64615867e-02 5.55989668e-02 1.49195805e-01 -2.03833535e-01\\n4.75604445e-01 9.80241075e-02 5.69358543e-02 -9.63634104e-02\\n4.76104945e-01 -1.40179083e-01 2.99713202e-02 2.86981463e-01\\n-6.02345586e-01 3.08412015e-01 -1.04783803e-01 1.07239746e-01\\n1.69108342e-02 1.06040619e-01 9.57944468e-02 -2.98631549e-01\\n8.76503438e-03 -1.96783587e-01 -2.49831021e-01 -4.22178358e-01\\n-2.47870728e-01 -1.42515436e-01 2.93561518e-01 -3.02431524e-01\\n-1.38605401e-01 1.31891131e-01 -3.43666703e-01 -5.58715127e-03\\n6.70685992e-02 2.32487813e-01 -3.87553573e-02 1.99939087e-01\\n-1.97937608e-01 -3.67844909e-01 5.58159761e-02 -3.95254970e-01\\n-3.53695869e-01 2.99876511e-01 -1.95069522e-01 2.55081691e-02\\n1.93304166e-01 -2.35439837e-02 3.10629327e-02 9.49155614e-02\\n-4.24087942e-01 2.68104076e-01 1.88005477e-01 1.91933308e-02\\n3.89228255e-01 -4.01305370e-02 -5.37776589e-01 5.66419125e-01\\n-1.85545653e-01 7.23235667e-01 1.54870406e-01 -8.35480452e-01\\n4.20975983e-01 2.11656854e-01 1.68891773e-01 -3.72700423e-01\\n5.18453121e-01 -4.04182345e-01 -1.38055742e-01 3.59585017e-01\\n-1.65474132e-01 -2.29561940e-01 1.97055191e-01 -7.38615021e-02\\n-4.02299374e-01 4.07181680e-01 5.95144890e-02 1.52975947e-01\\n3.21952641e-01 -2.55502313e-01 -6.85760304e-02 1.56512603e-01\\n-1.27258018e-01 -4.86520566e-02 -5.94821155e-01 -4.18094769e-02\\n4.03789151e-03 -4.26964968e-01 -1.52130336e-01 -6.55867159e-01\\n-2.37718254e-01 -3.17163259e-01 -3.86875808e-01 2.24158987e-01\\n3.11252810e-02 -4.02983539e-02 2.38340721e-01 -1.05310336e-01\\n2.56683342e-02 -4.74429846e-01 -2.14331940e-01 3.58576059e-01\\n2.67352134e-01 1.26342893e-01 -4.54920949e-03 1.92359939e-01\\n-3.28779817e-02 7.15677440e-01 -3.06654721e-01 -2.11589217e-01\\n3.25238347e-01 2.76177317e-01 -2.84643006e-02 -2.05232903e-01\\n1.37561839e-02 -8.08920786e-02 -2.59437621e-01 -1.30957007e-01\\n-1.23784222e-01 1.17745124e-01 3.43038172e-01 -3.54717046e-01\\n-3.65070045e-01 -1.05773032e-01 1.00951627e-01 1.14218324e-01\\n-6.78049862e-01 2.48626582e-02 5.63674212e-01 2.39516795e-01\\n1.70822199e-02 1.64149746e-01 3.76289904e-01 -3.76064718e-01\\n-1.89558700e-01 -2.23128408e-01 3.27466786e-01 3.17862213e-01\\n1.45042881e-01 2.49640960e-02 -1.76913198e-02 -7.57614970e-01\\n-3.75792313e+00 8.57777719e-04 1.12362444e-01 6.27834722e-02\\n2.02862218e-01 -2.43310899e-01 2.39974067e-01 -6.94024339e-02\\n-1.13785654e-01 1.25698835e-01 -9.99290645e-02 -1.24728359e-01\\n1.98647082e-01 1.32987127e-01 -1.04215138e-01 2.45599151e-01\\n1.97095439e-01 -1.52036725e-02 -3.54831256e-02 3.77410263e-01\\n-3.81051097e-03 -7.79102683e-01 2.77841866e-01 4.48227338e-02\\n2.86787182e-01 3.44916135e-02 -6.34835422e-01 1.58861697e-01\\n-2.18517557e-01 -2.87165254e-01 -7.23682567e-02 -3.22762996e-01\\n-1.95776150e-01 1.85507357e-01 2.05212399e-01 -1.46160558e-01\\n1.75211385e-01 -3.13255131e-01 -1.09669194e-01 -4.75046962e-01\\n2.25439921e-01 -5.89710951e-01 1.36708796e-01 -2.19931244e-03\\n6.59722686e-01 -4.25067574e-01 1.64826885e-01 -6.79916888e-02\\n1.35915399e-01 2.61513561e-01 -8.03083554e-02 -1.50689796e-01\\n-1.94884077e-01 -7.38067329e-02 6.27941191e-02 -2.38455102e-01\\n5.38707793e-01 1.94449335e-01 -4.06914234e-01 1.67456612e-01\\n-2.54792999e-02 -8.77490342e-02 -5.09262204e-01 -3.65274519e-01\\n-1.83140188e-01 1.63344309e-01 -7.43462801e-01 -5.17316520e-01\\n-1.13406919e-01 6.25036061e-02 -1.40360063e-02 7.30422437e-01\\n-2.13739216e-01 -5.74570537e-01 -1.10378318e-01 -5.10768533e-01\\n1.81564584e-01 -1.14835590e-01 1.32191211e-01 -2.49310017e-01\\n-3.20150018e-01 -4.15238380e-01 1.92050606e-01 2.55930121e-03\\n-3.35550308e-02 2.43580922e-01 4.32158649e-01 -1.22507177e-01\\n-4.38296467e-01 -4.22423750e-01 2.71958709e-01 2.90999770e-01\\n2.95629054e-01 1.93194017e-01 1.65813416e-01 -1.19192787e-02\\n5.99905476e-02 -7.62789696e-02 1.98687464e-02 -4.34738934e-01\\n8.82581323e-02 -1.21354975e-01 4.44716275e-01 -1.01036422e-01\\n-4.87516485e-02 2.76452243e-01 -7.29969516e-02 -2.06125274e-01\\n6.40399277e-01 -4.88228165e-02 1.61976188e-01 -1.55908853e-01\\n3.42644691e-01 -4.59012300e-01 -1.65247634e-01 1.22318797e-01\\n3.04336734e-02 6.30299747e-01 -1.48535684e-01 -5.98637938e-01\\n-1.30440623e-01 4.68776435e-01 -8.64978731e-02 -1.66776493e-01\\n-4.01799589e-01 2.15608433e-01 -4.09925371e-01 4.26518828e-01\\n1.48650289e-01 -2.96242267e-01 -2.60324746e-01 -1.94575295e-01\\n-1.33279756e-01 4.79072481e-02 3.49059790e-01 1.18741922e-01\\n-7.44105950e-02 -2.40232050e-01 -1.49964169e-01 1.93952754e-01\\n4.64527488e-01 3.73166502e-01 -3.82514447e-02 -2.86761880e-01\\n-9.58099216e-02 1.14247978e-01 -4.08111364e-01 1.69477180e-01\\n-1.87804252e-01 1.43015996e-01 -2.87762344e-01 -6.54500127e-02\\n-1.87959552e-01 -3.73775780e-01 -1.76899150e-01 3.34146976e-01\\n2.38246009e-01 -9.94237587e-02 -7.51638189e-02 -3.51595253e-01\\n3.65375012e-01 2.99315572e-01 1.44145817e-01 3.36403936e-01\\n3.69169600e-02 6.85654461e-01 -3.58373784e-02 -2.25517958e-01\\n-8.60656723e-02 -6.35516420e-02 -1.57183826e-01 5.28525338e-02\\n1.07586302e-01 -5.03348708e-01 -1.30449206e-01 3.70364606e-01\\n1.68821380e-01 -4.05244559e-01 -1.67480186e-01 4.89618242e-01\\n1.84112489e-01 -1.93187609e-01 4.27185977e-03 8.45783763e-03\\n3.04464817e-01 -9.98612680e-03 3.56901258e-01 -6.58673763e-01\\n-2.06787422e-01 -1.92642938e-02 -2.92614281e-01 4.40166354e-01\\n5.27594313e-02 5.67348450e-02 7.24702403e-02 -2.74958313e-01\\n4.33856547e-01 -2.47206792e-01 -2.25697622e-01 -2.28592604e-02\\n1.50242791e-01 -6.49525076e-02 -4.61358309e-01 2.75782254e-02\\n-3.08821738e-01 -2.62774974e-01 2.62675345e-01 4.57146317e-02\\n-4.47132178e-02 1.67790353e-01 -4.14286971e-01 -5.82846761e-01\\n-3.53388101e-01 -1.97387356e-02 -4.27904353e-02 -3.75893861e-01\\n9.08501633e-03 -6.65017366e-02 -8.49630296e-01 2.68503547e-01\\n-2.31322080e-01 -2.09441781e-01 1.14523493e-01 1.77974075e-01\\n-2.29824200e-01 -4.73155640e-02 8.62656981e-02 1.98720217e-01\\n-4.10640806e-01 -3.48075092e-01 -9.64708552e-02 -7.07181334e-01\\n1.71308279e-01 -1.46653831e-01 -1.00649484e-01 9.25418437e-02\\n-6.31624311e-02 -6.06906116e-01 1.50987104e-01 -1.49495289e-01\\n-3.55437666e-01 -1.37379512e-01 -1.01847455e-01 -4.61318463e-01\\n2.53213674e-01 1.75715968e-01 -2.42395282e-01 5.67250311e-01\\n-3.47685486e-01 3.32406044e-01 -1.42352164e-01 8.03012773e-02\\n6.28302619e-02 -3.29185724e-01 2.99085140e-01 -3.40220183e-01\\n-3.08522314e-01 -2.32166409e-01 -3.14598322e-01 -2.98940688e-01\\n6.21512607e-02 -2.22457528e-01 -3.32184464e-01 1.28930286e-01\\n2.80466437e-01 1.80993617e-01 4.31475602e-02 -1.97586969e-01\\n1.39958173e-01 -5.04913449e-01 1.52199402e-01 -1.08957708e-01\\n1.90965921e-01 6.96623698e-02 1.25898793e-03 -1.17911093e-01\\n2.14120112e-02 -2.39685923e-01 5.98533213e-01 -7.34719587e-03\\n-2.78458029e-01 -9.65006649e-02 2.46035252e-02 3.48818451e-01\\n2.61103898e-01 -4.74221855e-01 -2.54945248e-01 4.68349129e-01\\n8.04939792e-02 2.26050392e-01 1.88512772e-01 -2.12967411e-01\\n5.04330024e-02 3.53423767e-02 -3.50023806e-01 3.32645684e-01\\n3.67526323e-01 -3.37785925e-03 1.67977974e-01 2.51543671e-01\\n3.82700227e-02 4.10939723e-01 5.72789252e-01 -3.81168202e-02\\n-5.61047010e-02 3.30875367e-01 -7.79623315e-02 -4.44811285e-01\\n-7.21201524e-02 -1.70582533e-01 -2.69833237e-01 -5.99939585e-01\\n6.71412945e-01 3.72346014e-01 -3.56382817e-01 -2.16919720e-01\\n-9.74410996e-02 -1.05523549e-01 1.89534817e-02 -2.01386437e-01\\n-2.23510250e-01 3.12771276e-02 4.97825235e-01 2.26704292e-02\\n4.34335053e-01 4.09816504e-01 -3.59223396e-01 -1.99229077e-01\\n-2.11354330e-01 1.74170986e-01 8.07771012e-02 2.44595647e-01\\n-5.95522225e-02 2.14293167e-01 1.59969687e-01 1.55956745e-01\\n-2.35917643e-02 -2.31420249e-01 -5.04499003e-02 1.14397049e-01\\n3.52006704e-01 2.71467548e-02 2.73233622e-01 4.14565802e-01\\n2.59487867e-01 3.02392125e-01 3.12215894e-01 1.45298436e-01\\n4.32207942e-01 5.38762093e-01 4.77781028e-01 1.63617626e-01\\n2.24968717e-01 1.60065711e-01 1.63965255e-01 -6.65032789e-02\\n2.15722024e-01 4.54488605e-01 7.15093017e-02 6.38998032e-01\\n1.50694951e-01 2.65595198e-01 7.22460687e-01 -5.68424642e-01\\n-3.66467804e-01 -2.79041752e-02 2.95864046e-01 -1.96140707e-01\\n-2.43677661e-01 6.00007102e-02 -1.06351629e-01 9.87427086e-02\\n-6.03569150e-01 1.14045158e-01 2.79753655e-01 -9.10819024e-02\\n8.78136456e-02 9.09341150e-04 -3.05676073e-01 -3.40464897e-02\\n-1.90240964e-01 -2.73199156e-02 -3.69730622e-01 -2.92600542e-01\\n-2.62211829e-01 -1.65740550e-01 6.06591515e-02 -1.76774293e-01\\n8.94650221e-02 -2.50827253e-01 -2.07122788e-01 1.50647700e-01\\n2.41036505e-01 -9.02146846e-02 -8.19535926e-02 -3.13162468e-02\\n4.52656113e-02 1.90373674e-01 5.75016916e-01 7.95449242e-02\\n2.01677710e-01 -1.53858379e-01 -1.78880811e-01 8.76552239e-02\\n1.73068970e-01 4.31731790e-02 1.90317333e-01 3.86260301e-01\\n-5.74243963e-01 -2.61047959e-01 3.12430486e-02 5.24540722e-01\\n-3.88376117e-01 1.82737380e-01 -3.75962295e-02 2.69468427e-01\\n6.79673031e-02 3.92884500e-02 -3.25483978e-01 -6.94731027e-02\\n-1.36809319e-01 -5.12272358e-01 3.77437890e-01 -4.20546949e-01\\n-6.49380013e-02 -7.67480209e-02 1.24616556e-01 1.85142875e-01\\n-2.75748551e-01 -7.27195740e-02 -7.14258254e-02 3.16397339e-01\\n8.30367059e-02 2.59518534e-01 -3.49409670e-01 -6.62130415e-02\\n-2.81189322e-01 -5.58537468e-02 1.21889357e-02 2.98320875e-03\\n-6.72159195e-02 2.96684772e-01 3.03455323e-01 1.62705213e-01\\n3.82352948e-01 -9.82054397e-02 -3.30381185e-01 -2.31987685e-02\\n2.18656138e-02 -3.77537340e-01 7.63856992e-02 7.39148781e-02\\n2.82662243e-01 -2.27714270e-01 -3.12827788e-02 -2.38592684e-01\\n-1.88624546e-01 -4.33910638e-01 -1.36388570e-01 7.48383403e-02]]',\n", + " 'Il nostro cliente,realtà internazionale, leader nell’E- commerce. Principali responsabilità Designing, writing and testing clean code Create resilient, secure and performant applications Simplifying and improving the infrastructure, focusing on CI/CD Interact with all stakeholders Monitoring, identifying and correcting software defects. Contribute in the R&D Principali caratteristiche richieste Experience as a Software Engineer programming in Object Oriented languages ( Java, Python etc.) Willingness to work inside a team Knowledge of Italian and English Customer orientation',\n", + " '[\"Infrastructure\"]',\n", + " '[\"Object-Oriented Database\", \"Software Engineering\", \"Python (Programming Language)\"]',\n", + " \"['English', 'Kwanyama', 'Urdu']\"],\n", + " ['57',\n", + " 'data scientist in tel-aviv',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.18293035e-01 2.87841141e-01 5.12300014e-01 -7.21083768e-03\\n5.24712682e-01 -1.88244194e-01 -1.17877543e-01 2.70312518e-01\\n-5.77173606e-02 -3.23469400e-01 -1.44767746e-01 -2.39758983e-01\\n-1.33455500e-01 1.63746506e-01 2.24244371e-01 3.49083453e-01\\n2.10390851e-01 4.85742167e-02 -2.19078898e-01 3.56796920e-01\\n1.08912639e-01 -2.76170559e-02 3.07881739e-02 8.12087834e-01\\n3.18082333e-01 2.93625891e-03 -8.18525702e-02 -3.55271362e-02\\n-2.17758745e-01 -1.63740441e-01 4.30000007e-01 2.15683579e-02\\n-1.47977367e-01 -3.33791941e-01 1.47535443e-01 1.79005191e-01\\n-2.73670375e-01 2.32104622e-02 -1.56353980e-01 1.55275434e-01\\n-4.87558007e-01 -2.98121899e-01 -6.23520240e-02 8.38000029e-02\\n-3.07590961e-01 -3.54387790e-01 9.75237340e-02 -1.02897167e-01\\n9.54963788e-02 1.98823959e-02 -5.77964842e-01 2.69739419e-01\\n-2.04751775e-01 -3.27793479e-01 3.35760653e-01 6.56660855e-01\\n2.63097230e-02 -5.55410028e-01 -3.31110209e-01 -3.70134026e-01\\n-6.39993399e-02 -6.52012378e-02 6.68702051e-02 -3.81399423e-01\\n3.34978670e-01 4.01002076e-03 -8.22445564e-03 3.82482320e-01\\n-8.58393788e-01 -1.37028411e-01 -2.64403045e-01 9.09647048e-02\\n-3.66348296e-01 -8.84052552e-03 -3.38790148e-01 -2.39188224e-01\\n3.69494632e-02 3.96705240e-01 1.06598876e-01 4.03243452e-02\\n-1.29990965e-01 2.69204468e-01 -2.73234189e-01 3.25216651e-01\\n3.10159683e-01 3.27072799e-01 2.10068285e-01 2.86820263e-01\\n-4.34033751e-01 4.11853403e-01 1.43094495e-01 -3.09442371e-01\\n1.08997867e-01 2.70852089e-01 4.39643055e-01 8.12140778e-02\\n1.45917118e-01 1.25089183e-01 -2.27411553e-01 2.50035554e-01\\n1.86893985e-01 -3.55020821e-01 -1.54045550e-02 -9.37457457e-02\\n-8.06592852e-02 4.15019430e-02 6.25080895e-03 1.73431516e-01\\n-4.20865238e-01 4.12830085e-01 1.65124029e-01 -1.33727670e-01\\n-1.41450658e-01 -5.59730351e-01 -1.32213861e-01 8.89212359e-03\\n-1.47841694e-02 2.11780146e-01 1.23516731e-01 2.09867597e-01\\n1.08305834e-01 6.59859255e-02 1.33507490e-01 9.74079132e-01\\n-6.29510805e-02 1.10877909e-01 -1.32439673e-01 3.78171325e-01\\n1.40447825e-01 -2.11893439e-01 2.49871910e-01 2.28198484e-01\\n8.04139003e-02 -1.73262596e-01 -2.73073584e-01 3.56066465e-01\\n-1.47886500e-01 -1.64400339e-01 -3.56325984e-01 2.89170325e-01\\n-4.88935001e-02 -5.75941622e-01 6.70860589e-01 5.96228130e-02\\n2.34454915e-01 -3.51504609e-02 1.24850124e-01 -1.01970524e-01\\n-1.23098195e-01 2.93026090e-01 5.42703234e-02 1.32511228e-01\\n-3.47178042e-01 -2.18496352e-01 -2.20214114e-01 2.49481991e-01\\n-3.77162009e-01 1.21448226e-01 -9.87554342e-02 -1.15173399e-01\\n1.61477342e-01 1.28003499e-02 -3.42942923e-01 1.66983321e-01\\n-1.35706723e-01 -1.80758610e-01 -2.04923898e-02 3.19539130e-01\\n-1.88702732e-01 3.61160785e-01 -5.94299920e-02 -1.77253917e-01\\n5.82493186e-01 1.11601993e-01 1.30582482e-01 -5.30823618e-02\\n2.72910118e-01 -1.05887450e-01 2.20045894e-01 1.11448959e-01\\n-7.38385797e-01 3.85596603e-01 -2.84547359e-02 -1.73716813e-01\\n-1.65580641e-02 5.10152914e-02 3.64965647e-01 -3.59147787e-01\\n4.98479269e-02 -1.66514322e-01 -3.25890452e-01 -1.92414984e-01\\n-2.29196206e-01 4.21810709e-02 5.25538445e-01 -4.21860158e-01\\n1.81264244e-02 2.62536764e-01 -5.79888821e-01 -1.29377455e-01\\n2.31570154e-01 1.09798148e-01 4.93862182e-02 1.45558715e-01\\n-2.01086015e-01 -5.92694819e-01 1.28643159e-02 -4.03994501e-01\\n-3.53430837e-01 -1.05816629e-02 -2.70896882e-01 1.69163838e-01\\n-1.03219122e-01 -6.22279793e-02 -9.72907692e-02 1.49337977e-01\\n-2.91529000e-01 9.61449966e-02 1.82307839e-01 7.16495737e-02\\n2.87366241e-01 6.04301207e-02 -3.59633982e-01 5.36509454e-01\\n-1.32813379e-01 5.92790067e-01 1.60871685e-01 -8.45661759e-01\\n5.38983703e-01 3.52200985e-01 4.08283696e-02 -3.83220077e-01\\n5.54943502e-01 -3.82794738e-01 -1.18547067e-01 7.00652227e-02\\n-3.33947718e-01 -3.28016520e-01 3.69035810e-01 -2.78760403e-01\\n-3.24766517e-01 5.73739171e-01 1.16708800e-01 6.31609857e-02\\n3.66605490e-01 -3.17673743e-01 -1.56395152e-01 1.07739098e-01\\n-1.23718701e-01 -2.78182715e-01 -5.57289720e-01 2.01117769e-02\\n-6.72401637e-02 -5.01689613e-01 -1.77827924e-01 -3.52551490e-01\\n-2.68854499e-01 -3.42199683e-01 -2.08490387e-01 1.64829910e-01\\n1.96887955e-01 1.65492341e-01 -6.21476211e-03 -3.97751480e-03\\n5.06284786e-03 -6.92227781e-01 -7.15350825e-03 4.90946174e-02\\n4.99817550e-01 1.91982672e-01 1.46058634e-01 -6.45228401e-02\\n9.23559666e-02 6.21987641e-01 -2.94392377e-01 -4.10207957e-01\\n1.60949573e-01 2.08620057e-01 -5.49437888e-02 -1.86902463e-01\\n1.19672351e-01 3.19383144e-01 -4.58880246e-01 1.41053066e-01\\n-2.08991498e-01 6.99654967e-02 2.75222689e-01 1.16555570e-02\\n-2.04641044e-01 -2.04443306e-01 -7.49943033e-02 2.67654330e-01\\n-5.31203032e-01 -2.11172640e-01 4.50798422e-01 2.19182745e-01\\n1.23261519e-01 1.32240802e-01 1.68832824e-01 -9.81790423e-02\\n-3.55463505e-01 -1.39827728e-01 1.36318460e-01 2.32824355e-01\\n4.70402092e-02 1.35376140e-01 -5.45809083e-02 -6.73519611e-01\\n-3.00617957e+00 -1.60012737e-01 1.17671415e-01 -1.75615221e-01\\n3.61178368e-01 -1.64495587e-01 1.43302590e-01 -9.03277751e-03\\n-3.49488795e-01 -6.10821731e-02 -2.09754616e-01 -2.23797321e-01\\n8.75594839e-02 2.50830948e-01 8.35473463e-02 3.01108092e-01\\n1.15815252e-01 -2.84762204e-01 1.64243989e-02 3.78445059e-01\\n-1.82845399e-01 -7.49971211e-01 3.38451043e-02 2.89310440e-02\\n2.37582803e-01 2.86669821e-01 -5.35140693e-01 -1.41612977e-01\\n-3.35757196e-01 -1.93789482e-01 1.41799256e-01 -4.32356775e-01\\n-2.08259672e-01 2.76039302e-01 1.81092039e-01 8.33089277e-03\\n1.05184980e-01 -3.07880163e-01 -7.87858367e-02 -4.05652016e-01\\n8.44321847e-02 -6.88022316e-01 -2.27253325e-02 -2.53851945e-03\\n6.76779807e-01 -2.75195360e-01 2.01655611e-01 1.07493915e-01\\n1.00873686e-01 3.83704193e-02 3.70400399e-02 3.45684006e-03\\n-2.38506883e-01 -3.11897129e-01 3.23845446e-02 -1.71624944e-01\\n5.28447032e-01 5.87214768e-01 -1.27861023e-01 3.21895443e-03\\n7.55982623e-02 -3.32092673e-01 -4.32284087e-01 -4.22599584e-01\\n-2.07180500e-01 -1.82864100e-01 -6.47473037e-01 -5.84745228e-01\\n-1.27664909e-01 -1.65396556e-01 -1.21536672e-01 5.69952726e-01\\n-2.91157603e-01 -3.13016921e-01 -7.76192732e-03 -6.26682997e-01\\n2.63738483e-01 -9.93413553e-02 7.07623661e-02 -2.06828043e-01\\n-1.94918439e-01 -6.63694561e-01 6.09017462e-02 -6.81228712e-02\\n-1.35057598e-01 -2.39459768e-01 4.28878665e-02 -1.63148925e-01\\n-3.04237574e-01 -5.44258356e-01 4.25652415e-01 1.30276144e-01\\n2.81241715e-01 1.27569154e-01 4.44982022e-01 -1.62410602e-01\\n2.86756963e-01 1.08747140e-01 1.32018223e-01 -3.25071961e-01\\n6.31374940e-02 1.51748862e-03 5.41878521e-01 -2.35481575e-01\\n7.42597878e-02 1.81875736e-01 -2.45808855e-01 -4.55430560e-02\\n3.82158905e-01 -5.88339232e-02 8.51765275e-02 -3.27251196e-01\\n4.22881663e-01 -2.92879015e-01 -5.35061844e-02 6.91487342e-02\\n2.01761127e-01 7.53794432e-01 2.33551376e-02 -3.19270164e-01\\n-3.02711785e-01 4.92297024e-01 -1.02416702e-01 -4.22330499e-02\\n3.65426624e-03 6.59923702e-02 -1.36420980e-01 2.41520226e-01\\n-6.08639531e-02 -2.74800241e-01 -1.54007182e-01 -9.21609104e-02\\n-1.80405170e-01 2.99591571e-01 2.38003865e-01 8.13113302e-02\\n-9.06702802e-02 -3.00942063e-01 -3.02870907e-02 2.85105705e-01\\n2.45284632e-01 4.05236095e-01 1.71040803e-01 -2.73677856e-01\\n1.24181218e-01 3.18955183e-01 -1.68900564e-01 3.66705984e-01\\n-2.39510164e-01 4.84256446e-02 -5.51192164e-01 -2.27828890e-01\\n-2.82664031e-01 -4.12412703e-01 2.08331913e-01 3.75236183e-01\\n1.40334994e-01 -1.74522903e-02 5.76600023e-02 -3.92776936e-01\\n3.58074427e-01 1.88306466e-01 1.23329140e-01 7.14654401e-02\\n-9.24802721e-02 5.21789491e-01 1.76760778e-02 -1.29744336e-01\\n-4.99612056e-02 1.19916320e-01 -1.91738874e-01 -3.10217887e-01\\n1.79390199e-02 -5.62416434e-01 -2.13426292e-01 4.20868009e-01\\n1.21819377e-01 -2.28558898e-01 -1.72867492e-01 1.23649307e-01\\n-3.05206259e-03 -2.60526448e-01 -2.40866095e-01 -5.26610166e-02\\n2.97338873e-01 3.12007535e-02 2.88476765e-01 -4.86263722e-01\\n1.02790457e-03 -1.89638849e-05 -9.14216042e-02 4.82597053e-01\\n5.08560687e-02 9.11352411e-02 -1.94687262e-01 -1.18908972e-01\\n4.49147791e-01 -1.26008853e-01 -3.90892252e-02 -2.84874924e-02\\n4.43721712e-02 -1.30077496e-01 -4.30025816e-01 9.27536860e-02\\n5.09439893e-02 -2.70332903e-01 -2.62129884e-02 9.39276218e-02\\n1.60054103e-01 6.53310865e-02 -5.40078759e-01 -3.00339073e-01\\n-2.47534916e-01 2.84825265e-02 1.58488408e-01 -4.22260523e-01\\n-3.33974436e-02 -7.40806665e-03 -6.69469476e-01 2.35402569e-01\\n-1.84741929e-01 2.88976654e-02 2.48318851e-01 6.24485537e-02\\n-3.87329429e-01 -1.78277954e-01 -9.41277761e-03 2.96678513e-01\\n-3.83303940e-01 -2.22639427e-01 -1.06608696e-01 -9.75611448e-01\\n2.14084610e-01 8.76736864e-02 -1.34298623e-01 2.07775071e-01\\n-8.97926092e-03 -6.58091366e-01 8.31519142e-02 -4.75828856e-01\\n-1.16090886e-01 2.41030082e-02 -2.85048157e-01 -4.04611379e-01\\n1.46265879e-01 1.18161179e-01 -2.41376832e-01 5.49563885e-01\\n-3.88389558e-01 3.07227850e-01 -6.42132461e-02 -5.95144890e-02\\n-2.75390446e-02 -2.00592190e-01 8.07937086e-02 -2.97519088e-01\\n-2.33403519e-01 -2.56137401e-01 -2.21348792e-01 -2.19993785e-01\\n-5.67318127e-02 -2.34017238e-01 -1.44421533e-01 7.18368590e-02\\n2.87361383e-01 3.03286873e-02 -1.85453922e-01 -3.87502939e-01\\n1.79538220e-01 -3.80847037e-01 -5.69932647e-02 -3.36848021e-01\\n-1.88614819e-02 -1.21831067e-01 1.33851856e-01 1.37501493e-01\\n9.43917036e-02 -2.75968164e-01 4.13993090e-01 -3.47519577e-01\\n-3.95263761e-01 -5.05526252e-02 3.56818251e-02 -6.65428936e-02\\n2.56928712e-01 -4.65586632e-01 2.22059134e-02 3.06080818e-01\\n2.08225414e-01 -4.53113355e-02 1.50231272e-01 -1.42714649e-01\\n-7.98468292e-02 3.09931517e-01 -3.72600824e-01 9.30723622e-02\\n7.53199816e-01 1.80170029e-01 8.15048665e-02 1.31628498e-01\\n2.70878136e-01 3.33038032e-01 5.43331385e-01 7.10164607e-02\\n-6.47241808e-03 3.65606636e-01 5.76459952e-02 -4.20979321e-01\\n-5.20156138e-02 -1.70334429e-01 -1.92165419e-01 -4.35033321e-01\\n6.81549609e-01 3.40471238e-01 -3.55009824e-01 -2.90121287e-01\\n-1.23186998e-01 -2.55506933e-01 2.27265403e-01 5.58853671e-02\\n-1.80744994e-02 -4.28048149e-02 5.25710464e-01 -3.21102552e-02\\n2.52861470e-01 5.23727894e-01 -1.91659644e-01 -3.69987607e-01\\n-3.34243551e-02 3.49063009e-01 4.16438170e-02 4.03664291e-01\\n-2.55929261e-01 3.37148309e-01 1.56096965e-02 7.81616271e-02\\n-3.91230062e-02 1.74844608e-01 2.87186116e-01 5.53589426e-02\\n2.91800857e-01 4.39713523e-02 3.93747956e-01 4.43959564e-01\\n2.22822219e-01 5.12729526e-01 3.28795314e-01 1.39577046e-01\\n3.15115660e-01 6.16119981e-01 3.34165603e-01 7.75566250e-02\\n4.96870354e-02 1.06310681e-01 9.89114121e-02 -3.53255607e-02\\n3.74655962e-01 2.58748323e-01 1.14481501e-01 9.13820505e-01\\n4.19050455e-01 2.90576130e-01 7.83076227e-01 -7.25676179e-01\\n-4.61633861e-01 5.01146205e-02 5.66897154e-01 -4.15733337e-01\\n-9.57862958e-02 1.77778676e-01 -2.46684670e-01 3.16184282e-01\\n-5.03846407e-01 -1.78304851e-01 3.22709903e-02 2.42886879e-02\\n-1.55182248e-02 -7.84657374e-02 -2.36155882e-01 5.91551550e-02\\n-1.20163910e-01 -2.41799146e-01 -4.08412069e-01 -1.59290597e-01\\n-2.17466012e-01 -1.96896628e-01 -1.58770263e-01 -6.34346753e-02\\n-2.13597819e-01 -4.25238073e-01 -1.35838211e-01 5.75714409e-02\\n3.49687219e-01 -1.05659075e-01 -1.77324012e-01 -1.64048001e-01\\n3.27015936e-01 2.69009501e-01 5.35591185e-01 -3.74660175e-03\\n4.58556227e-02 -1.60626084e-01 -2.26541489e-01 2.07142279e-01\\n4.24319319e-02 6.97323913e-03 6.39940202e-02 3.79417956e-01\\n-1.05872333e-01 -9.79279056e-02 1.52147800e-01 2.89568722e-01\\n-4.49063867e-01 -5.00153303e-02 -7.25549161e-02 2.81835824e-01\\n5.87736927e-02 1.98308975e-01 -2.39006579e-01 6.30554259e-02\\n-6.29267693e-02 -6.17099345e-01 3.35754007e-01 -1.26462936e-01\\n-2.06246108e-01 1.59260884e-01 3.71250540e-01 2.57733524e-01\\n-2.70904720e-01 -9.60356891e-02 -4.16815430e-02 1.41539529e-01\\n-5.72923608e-02 3.97079289e-01 -1.75745562e-01 -2.80430377e-01\\n-3.09338182e-01 2.19110414e-01 -3.41730177e-01 1.37834206e-01\\n3.45500819e-02 3.37633759e-01 4.48890850e-02 1.21918358e-01\\n3.77781987e-01 1.67348050e-02 -2.85270363e-01 -2.59968311e-01\\n-1.51336551e-01 -1.66423470e-01 -4.03786339e-02 -7.49597466e-03\\n1.29494756e-01 -2.36944631e-01 -7.84701332e-02 -1.31945327e-01\\n-1.03526577e-01 -2.97147602e-01 -1.72600776e-01 4.93747927e-03]]',\n", + " 'We are currently looking on behalf of one of our clients based in Tel-Aviv for an experienced Data Scientist who will take a lead role in designing the next generation of financial engine, based on state-of-the-art deep learning, algorithms and innovative technology. Your role: Lead the development of novel solutions for hard, yet-unsolved problems. Acquire and maintain knowledge of state-of-the-art scientific literature in deep learning and related fields Design and implement scalable ML and DL systems, products, and solutions. Build deep learning-based products on CPUs and GPUs, leveraging latest deep learning and machine learning libraries. Manage, coach, mentor and support less experienced team members as required Your skills: Proven industrial and/or academic machine learning background (e.g., publications in ICCV, CVPR, ECCV, NIPS, ICML) Strong understanding of deep neural networks, machine learning and related fields At least 3 years’ experience Python / C++ Experience working with deep learning frameworks (e.g. Caffe, TensorFlow, etc.) Excel at both individual and team work The following skills are a big plus: Experience building AI systems using one of TensorFlow, PyTorch, MXNet, Theano, Caffe, and other open source frameworks. Solid understanding of underlying techniques in deep learning to build for scalability, and efficiency. Experience building machine learning products. Experience building scalable machine learning and deep learning systems. Your profile: MSc / PhD in related fields from leading universities (graduation with honours is a plus). Expected to be self-driven and motivated, lead and act independently to deliver; support will be provided from an experienced AI Leader as required and requested Ability to quickly understand and pick up new technologies and algorithms',\n", + " '[\"Innovation\"]',\n", + " '[\"Library Management\", \"MSC Software\", \"Apache MXNet\", \"Theano (Software)\", \"Machine Learning\", \"Industrialization\", \"C++ (Programming Language)\", \"Scientific Literature\", \"Python (Programming Language)\", \"Maintainability\", \"Financial Engineering\", \"E (Programming Language)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Caffe\", \"Scalability\", \"TensorFlow\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " \"['English', 'Danish', 'Tsonga']\"],\n", + " ['51',\n", + " 'product manager - ai and data products',\n", + " 'Lausanne',\n", + " 'Publishing',\n", + " 'www.frontiersin.org',\n", + " '[[-4.01236355e-01 2.87015855e-01 4.39394355e-01 9.88470763e-02\\n4.76421744e-01 -8.49938244e-02 8.12596306e-02 1.96090937e-01\\n-5.44392057e-02 -3.98882926e-01 -1.43993914e-01 -1.83753029e-01\\n-1.58108938e-02 6.74094260e-02 7.12079853e-02 4.88142818e-01\\n3.37462604e-01 5.71313240e-02 -1.51247784e-01 4.22992468e-01\\n1.90616958e-02 -1.94834426e-01 1.66388452e-02 6.99739575e-01\\n4.63335603e-01 -2.39662323e-02 -1.27283514e-01 1.99957825e-02\\n-9.95414332e-02 -2.81736702e-01 3.59253168e-01 3.19542661e-02\\n-1.64493620e-02 -3.80350351e-01 5.11729196e-02 4.86332923e-04\\n-2.13148475e-01 1.05989672e-01 -1.30445600e-01 1.47916153e-01\\n-3.90347302e-01 -8.13534111e-02 4.45378758e-02 -6.05453625e-02\\n-2.10255086e-01 -3.25333446e-01 -4.96872887e-02 -9.94873047e-02\\n1.29596829e-01 1.44078150e-01 -4.87961739e-01 3.60232264e-01\\n-3.02495778e-01 -2.53662050e-01 2.48073369e-01 5.93623996e-01\\n-1.20144878e-02 -4.31212902e-01 -4.85820889e-01 -3.77218127e-01\\n7.94182122e-02 -1.94613367e-01 3.01809549e-01 -2.29129255e-01\\n2.32306495e-01 -8.45196377e-03 2.71647312e-02 2.76663184e-01\\n-6.81997895e-01 -5.88912517e-03 -3.52539837e-01 2.59306766e-02\\n-3.33706915e-01 -7.47505501e-02 -4.26799774e-01 -8.30218196e-02\\n-8.17832127e-02 3.17750216e-01 -6.21341355e-03 1.11685812e-01\\n-2.51950979e-01 3.01139683e-01 -1.96993917e-01 3.46933544e-01\\n1.99890330e-01 1.18254408e-01 3.64616752e-01 4.44880366e-01\\n-2.69150972e-01 5.45547247e-01 1.92063272e-01 -2.69803196e-01\\n4.15234923e-01 6.24892935e-02 3.59981000e-01 4.59041819e-02\\n2.37286568e-01 9.39356387e-02 -2.13887066e-01 1.29903585e-01\\n2.19259098e-01 -2.74659574e-01 -1.23549610e-01 -1.37294561e-01\\n-3.56600210e-02 3.83770652e-02 9.17483345e-02 5.29713556e-02\\n-3.93190980e-01 5.02123713e-01 2.44524833e-02 -2.34544352e-01\\n-1.28471926e-01 -3.33001614e-01 -3.69556956e-02 4.90282886e-02\\n-4.89940532e-02 2.34134138e-01 2.10760027e-01 1.50582701e-01\\n2.01021865e-01 2.43503321e-03 1.35461330e-01 7.58145452e-01\\n1.13273785e-01 3.80898975e-02 -2.81135798e-01 2.47894973e-01\\n1.06203891e-01 -4.52317238e-01 2.18564540e-01 -7.90535659e-03\\n-7.65636936e-02 -1.40001550e-01 -2.28940338e-01 3.17973852e-01\\n-1.49007782e-01 -2.08554149e-01 -2.36900389e-01 1.43334866e-01\\n-5.56822941e-02 -6.30265951e-01 6.06806874e-01 -1.55254275e-01\\n2.04922527e-01 -4.62804474e-02 1.22867286e-01 -5.51203452e-02\\n-1.45845383e-01 2.57596195e-01 1.93511814e-01 2.60994345e-01\\n-2.67605782e-01 -2.41002798e-01 -1.36122763e-01 3.00853282e-01\\n-4.27202165e-01 2.15794832e-01 -1.90160215e-01 -1.76130965e-01\\n3.05705965e-01 1.02462947e-01 -4.25817192e-01 2.19044000e-01\\n-1.91495076e-01 -7.52302706e-02 -2.15498894e-01 5.04195273e-01\\n-1.28268316e-01 1.78646192e-01 1.78774506e-01 3.33063118e-02\\n6.84854388e-01 2.60646313e-01 2.54357636e-01 -2.36474220e-02\\n3.34094405e-01 -5.80014288e-03 2.23529413e-01 7.51067251e-02\\n-6.44975364e-01 2.47253329e-01 -6.83541149e-02 -1.42340213e-01\\n4.72327918e-02 -1.70135722e-01 2.29554504e-01 -4.19607043e-01\\n7.31343590e-03 -1.79721415e-01 -3.39367270e-01 -3.66864711e-01\\n-1.68405503e-01 5.69386594e-02 3.96326423e-01 -3.51168394e-01\\n-5.14275357e-02 1.60805777e-01 -5.66573679e-01 -1.56895116e-01\\n2.52493739e-01 1.83577478e-01 2.64259726e-02 2.20267177e-01\\n-1.09668732e-01 -5.41825294e-01 1.04890645e-01 -4.06251609e-01\\n-4.38534677e-01 6.75804615e-02 -3.94131958e-01 1.56423509e-01\\n2.09375471e-01 3.43195274e-02 -1.28100395e-01 1.52730256e-01\\n-1.57520831e-01 3.57151367e-02 1.53335091e-03 1.74084716e-02\\n2.78731763e-01 1.24772131e-01 -3.79303038e-01 4.88689840e-01\\n-1.46320671e-01 3.93800706e-01 5.80356009e-02 -8.56556058e-01\\n5.28268814e-01 2.44959086e-01 -8.48154724e-02 -3.36754918e-01\\n5.09054780e-01 -2.98091918e-01 -1.92236193e-02 1.17055416e-01\\n-1.95416689e-01 -2.59282053e-01 3.28496575e-01 -2.49662966e-01\\n-3.13444316e-01 5.04077196e-01 3.59492227e-02 2.64932156e-01\\n2.16184884e-01 -1.75906017e-01 -1.68327659e-01 1.61577076e-01\\n-1.38973072e-01 -1.67204887e-01 -6.10741854e-01 4.30010222e-02\\n-8.74697417e-02 -3.42068374e-01 -1.22047454e-01 -5.14169157e-01\\n-1.95201442e-01 -4.88301337e-01 -2.15323806e-01 1.43965036e-01\\n1.78504974e-01 1.68033674e-01 -1.35873824e-01 -8.14716965e-02\\n-8.21794197e-03 -7.41325378e-01 5.82537241e-03 1.01975836e-01\\n4.11420643e-01 2.76292443e-01 1.49665609e-01 -8.51111487e-02\\n7.38791376e-02 5.17667234e-01 -3.67874444e-01 -2.28311971e-01\\n2.49442443e-01 6.95261285e-02 -4.83997092e-02 -2.02582717e-01\\n1.38280876e-02 2.01509789e-01 -2.11457953e-01 3.47246900e-02\\n-2.30344851e-03 -9.57287475e-02 4.63504136e-01 -6.06935360e-02\\n-4.31221187e-01 -1.52278781e-01 -1.13882646e-01 2.97894597e-01\\n-5.34587622e-01 -3.28249931e-01 7.18602657e-01 1.83658019e-01\\n1.23673283e-01 2.00187936e-01 1.20248929e-01 -6.64021894e-02\\n-1.97900862e-01 -3.43581796e-01 4.29987103e-01 4.78257686e-02\\n1.71052232e-01 9.85144824e-02 -6.08210228e-02 -7.01202869e-01\\n-3.65674400e+00 -2.28687212e-01 -2.53579132e-02 -2.08647490e-01\\n2.05655426e-01 -1.00015335e-01 1.40217066e-01 -1.01980209e-01\\n-2.38330975e-01 1.73456326e-01 -1.76072881e-01 -1.05937712e-01\\n-1.81968659e-02 2.25988299e-01 2.41594777e-01 1.91380829e-01\\n2.73708105e-01 -2.61488527e-01 -1.71999745e-02 2.63826489e-01\\n-1.53127134e-01 -6.88936949e-01 1.13314345e-01 5.52272499e-02\\n2.67355025e-01 1.86614707e-01 -3.65598202e-01 -1.40844285e-01\\n-3.95124674e-01 -1.31108403e-01 6.81990832e-02 -1.53861254e-01\\n-2.93632686e-01 2.39228666e-01 2.17268124e-01 -1.33394152e-01\\n-1.84806995e-02 -4.68376637e-01 -1.03572816e-01 -3.45144987e-01\\n1.33822322e-01 -6.60131454e-01 7.57426582e-03 -3.37112583e-02\\n6.35620236e-01 -1.21863276e-01 2.78837264e-01 -6.33863453e-03\\n1.55754060e-01 3.80049460e-02 1.31808102e-01 7.40242302e-02\\n-1.40557498e-01 -2.88098007e-01 -2.96449754e-02 -1.53378323e-01\\n7.52657652e-01 2.92451054e-01 -1.48197263e-01 -1.60030007e-01\\n1.04287848e-01 -3.68480653e-01 -4.45929885e-01 -2.26350904e-01\\n-2.14556694e-01 -1.36174992e-01 -6.55618787e-01 -4.63277936e-01\\n-2.36805573e-01 -1.27850443e-01 -5.51923811e-02 6.52110457e-01\\n-1.96535081e-01 -3.11424971e-01 -1.01561025e-01 -4.19152200e-01\\n2.32776359e-01 -1.09636471e-01 3.25425640e-02 -2.36157835e-01\\n-2.63167739e-01 -4.17800069e-01 7.54241571e-02 1.03517123e-01\\n-9.46301967e-02 -1.96282819e-01 1.24833159e-01 -7.48359710e-02\\n-3.68689358e-01 -4.39635903e-01 3.95750582e-01 1.25993297e-01\\n2.91576385e-01 2.33012438e-02 3.30586791e-01 -8.31006281e-03\\n2.39797741e-01 -3.40751410e-02 -1.08806640e-02 -4.96363282e-01\\n4.75334004e-02 1.12056039e-01 5.60755968e-01 -1.29822075e-01\\n-1.08713321e-02 7.60848671e-02 -1.85606450e-01 -1.45961538e-01\\n5.46629548e-01 -6.30770847e-02 5.16788512e-02 1.40532907e-02\\n2.02252537e-01 -3.17024231e-01 -2.08124191e-01 6.45948499e-02\\n6.71973825e-02 7.36087024e-01 -1.59884095e-02 -3.76228154e-01\\n-1.62754938e-01 4.37781185e-01 -6.69209659e-02 1.57638922e-01\\n-1.71262294e-01 1.22721314e-01 -1.80247664e-01 2.77977943e-01\\n8.39399695e-02 -1.67263046e-01 -1.76014960e-01 -1.34624451e-01\\n-1.46271884e-01 2.63368845e-01 2.86168098e-01 1.40139401e-01\\n-9.69307423e-02 -4.46446687e-01 -2.16117203e-01 2.17374980e-01\\n2.24043161e-01 5.17161012e-01 1.99186727e-01 -2.67839551e-01\\n8.02960247e-04 3.04621756e-01 -1.24134190e-01 2.65025437e-01\\n-2.55736709e-01 2.12695926e-01 -5.59670150e-01 -2.11667985e-01\\n-2.42610991e-01 -3.90370101e-01 9.64280665e-02 4.17320013e-01\\n8.79301876e-02 -6.66142330e-02 -6.05605915e-02 -4.26920533e-01\\n2.63435781e-01 9.82398912e-03 1.97889522e-01 9.96484049e-03\\n-6.82526603e-02 6.13374352e-01 -9.89310443e-02 -1.30804762e-01\\n-1.93908393e-01 4.22899686e-02 -8.62748623e-02 -1.28480375e-01\\n8.77488479e-02 -4.42295223e-01 -2.80523021e-02 3.32474947e-01\\n3.15771997e-01 -1.74641520e-01 -1.22721627e-01 2.68373668e-01\\n-2.28046402e-02 -4.74802762e-01 -2.73135722e-01 3.56485136e-03\\n3.01194370e-01 2.58758925e-02 2.69845814e-01 -3.33348691e-01\\n9.43511575e-02 -5.89743853e-02 2.90337913e-02 3.97190601e-01\\n-1.83273815e-02 4.49931063e-02 -4.37064730e-02 -1.21281475e-01\\n4.45687264e-01 -4.44673076e-02 -1.40645295e-01 1.42325126e-02\\n1.81018263e-02 -3.67516041e-01 -6.05409622e-01 -3.56025100e-02\\n-3.16698737e-02 -2.70098209e-01 2.09108382e-01 1.61890775e-01\\n-7.90996850e-02 1.66019112e-01 -5.62680006e-01 -1.81347460e-01\\n-2.81549752e-01 -1.45219624e-01 6.27622306e-02 -6.03503585e-01\\n-2.82929420e-01 -5.30891418e-02 -5.02614975e-01 2.13011369e-01\\n-2.92041469e-02 -1.70365110e-01 1.69536889e-01 7.23993704e-02\\n-1.79092616e-01 -1.92488715e-01 1.15020201e-01 2.22151116e-01\\n-2.27764904e-01 -2.48008877e-01 1.28186703e-01 -1.04188812e+00\\n1.96785599e-01 2.32199371e-01 -2.51621187e-01 -4.95044515e-03\\n-7.05215931e-02 -6.55517757e-01 2.00875849e-01 -3.72523427e-01\\n-8.15366060e-02 -3.23916674e-02 -3.22995305e-01 -2.79101133e-01\\n3.78183275e-02 -2.30744258e-02 -2.68617749e-01 4.14375871e-01\\n-2.75039941e-01 3.29757512e-01 -7.70997033e-02 6.44419342e-02\\n-7.06364959e-02 -1.95181310e-01 4.82499525e-02 -3.06231141e-01\\n-4.66505527e-01 -1.92978233e-01 -3.34116220e-01 -2.14218825e-01\\n-6.28525689e-02 -2.08866358e-01 -1.11021660e-01 1.15985885e-01\\n4.15128469e-01 2.11818218e-01 -1.41719997e-01 -2.84112453e-01\\n-7.20839202e-02 -4.29138571e-01 7.08533078e-02 -1.80122077e-01\\n-9.25066918e-02 -1.97212905e-01 2.57932901e-01 1.76073074e-01\\n1.98054284e-01 -3.36628556e-01 4.07548219e-01 -3.47763866e-01\\n-2.79322267e-01 -1.44766927e-01 1.31175667e-01 1.06199503e-01\\n2.65051365e-01 -5.46744108e-01 -1.09651037e-01 3.05856347e-01\\n3.48362625e-02 7.41115212e-02 2.67413020e-01 -1.53471142e-01\\n-6.23319037e-02 2.47210085e-01 -4.49784815e-01 1.82791740e-01\\n7.90020943e-01 1.77784547e-01 -2.99046878e-02 2.36884147e-01\\n1.39117628e-01 3.40837598e-01 4.81783986e-01 -8.34009796e-02\\n-4.48337607e-02 2.87920892e-01 2.49613300e-02 -6.64794385e-01\\n-1.73200935e-01 -1.25498980e-01 -8.55277479e-03 -3.52936089e-01\\n7.34187067e-01 3.26662749e-01 -3.12185675e-01 -2.80074447e-01\\n-2.10296139e-01 -1.81767076e-01 2.68944502e-01 2.31875256e-02\\n5.24091050e-02 2.87809968e-03 4.91007656e-01 -1.22929141e-02\\n1.75310463e-01 5.01890182e-01 -1.55870348e-01 -2.23255917e-01\\n-8.24373513e-02 2.83650935e-01 2.47816481e-02 4.74993169e-01\\n-2.30437815e-01 1.14461705e-01 1.11486495e-01 9.44469720e-02\\n-1.25120342e-01 1.11952990e-01 6.86803088e-02 1.42307699e-01\\n1.78406909e-01 8.13381970e-02 5.86423993e-01 4.35170054e-01\\n2.51753211e-01 4.20752823e-01 3.38247061e-01 -1.17946398e-02\\n3.94381881e-01 5.43840826e-01 4.66669858e-01 7.01498240e-02\\n1.50371045e-01 2.02910721e-01 1.59822196e-01 -5.84913269e-02\\n3.16915870e-01 3.73158216e-01 7.00212717e-02 7.46483922e-01\\n2.82250375e-01 3.44314635e-01 5.58940053e-01 -7.02206612e-01\\n-3.20451438e-01 -2.47690771e-02 5.77786922e-01 -3.23657990e-01\\n8.41432661e-02 4.06111300e-01 -1.96292236e-01 2.42494315e-01\\n-5.46283484e-01 -2.80415386e-01 -5.09143695e-02 -8.96067694e-02\\n1.01188555e-01 -2.05370769e-01 -1.30367950e-01 1.69513971e-01\\n-7.44356439e-02 -1.77003220e-01 -3.85996610e-01 -1.97853759e-01\\n-1.74220532e-01 2.14480430e-01 -7.65559971e-02 -4.10021767e-02\\n-8.85473490e-02 -2.82710433e-01 -1.10612080e-01 -3.82672548e-02\\n1.92532331e-01 -1.22516438e-01 -1.20310448e-01 6.92449510e-03\\n3.35002005e-01 1.72754407e-01 6.82246149e-01 -4.56843227e-02\\n5.11294156e-02 -2.30215982e-01 -1.91492751e-01 1.26143783e-01\\n2.63198912e-01 2.50240341e-02 7.53227100e-02 2.67022550e-01\\n-2.38535285e-01 -2.47321963e-01 6.54906332e-02 2.49994099e-01\\n-3.38833570e-01 -1.65161956e-03 -8.35850984e-02 1.29003733e-01\\n2.38232315e-04 1.45643473e-01 -1.88595027e-01 -1.25197455e-01\\n5.86594939e-02 -5.24764538e-01 2.74103820e-01 -3.11644189e-02\\n-2.42884099e-01 9.54058617e-02 2.39487037e-01 2.23849922e-01\\n-2.20932320e-01 -3.01560853e-02 -2.02141494e-01 4.99859080e-02\\n9.46204811e-02 2.47816861e-01 -1.06561720e-01 -2.86907256e-01\\n-2.60860264e-01 1.85026392e-01 -2.44647376e-02 2.23192260e-01\\n3.64108607e-02 2.19318539e-01 4.80907038e-02 1.23291895e-01\\n3.67851913e-01 1.19100913e-01 -2.45575979e-01 -1.72853202e-01\\n-2.73651183e-01 -1.54123738e-01 -3.06690894e-02 -5.37598245e-02\\n2.20141023e-01 -2.70026267e-01 -1.72143579e-02 -2.31355876e-01\\n-1.75957277e-01 -2.85332471e-01 -7.51812309e-02 2.13145763e-02]]',\n", + " \"Frontiers, a leading Open Access Publisher and Open Science Platform, is looking for a technical product manager to complement our product management team. In this position, you will take responsibility for one of our data and AI driven products. We seek an enthusiastic team player with great initiative and a get-it-done attitude. You must be able to handle a fast-paced work environment while juggling several different tasks at the same time. You also must have an eye for detail and high standards, with highly developed critical thinking, interpretive and analytical skills, and the ability to communicate product vision across multiple cross-functional teams. Key responsibilities Drive your products within the agile development teams, specifying business requirements, prioritizing user stories, supporting development, setting KPIs, proactively approaching users and stakeholders, collecting feedback and acting on it; Work together with our Data Architecture teams to ensure data quality, consistency and traceability; Discover, define and drive implementation of new product features, or evolving existing ones through working with our Data Sciences and other internal stakeholders; Sette hypotheses, test assumptions and break down complex problems into small steps; Take responsibility for the user experience and collaborate with designers and users to create the most appropriate solutions of our users; Be an expert in your product field, including technologies, competitors, and usage model trends; Work on multiple products simultaneously in a fast-paced, dynamic, and energetic environment; Act as the spokesperson for your products and drive feature adoption. Requirements Minimum three years of working experience, either as a product manager or similar position, ideally with a focus on data products; Good understanding of data architecture in both structured and unstructured data sources; Good understanding of machine learning concepts in general, more specific recommendation algorithms; Good understanding of web technologies and APIs; Experience in defining technical specifications describing requirements for data transfer, transformation and storage, with attention to big data topics, Comfortable in working with machine lear Strong analytical skills and independent, entrepreneurial approach; Working language is English - solid communication skills in English, both written and verbal are an absolute must. Benefits 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Access to the latest equipment and international working environment; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Analytical Skills\", \"Sourcing\", \"Energetic\", \"Collaboration\", \"Proactivity\", \"Communications\", \"Critical Thinking\", \"Socialization\", \"Prioritization\", \"Positivity\"]',\n", + " '[\"Data Architecture\", \"Production Management\", \"Data Quality\", \"Accessioning\", \"User Story\", \"Product Management\", \"Acting\", \"Collections\", \"Open Access\", \"Scheme (Programming Language)\", \"Activism\", \"Yoga\", \"Machining\", \"Idealization\", \"Development Support\", \"Hostile Work Environment\", \"Machine Learning Methods\", \"Unstructured Data\", \"Traceability\", \"Data Science\", \"Professional Development Programs\", \"Business Requirements\", \"Storages\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Transformation Services\", \"Big Data\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"Data Transfer Object\", \"Statistical Hypothesis Testing\", \"User Experience\", \"Eyes\", \"New Product Development\", \"Agile Product Development\", \"Adoptions\"]',\n", + " \"['English', 'Limburger', 'Western Frisian', 'Navaho', 'Maldivian']\"],\n", + " ['14',\n", + " 'computer vision researcher/engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.17035726e-01 2.98950672e-01 4.69268471e-01 -8.73681381e-02\\n5.13036072e-01 -2.32685223e-01 -9.23216119e-02 4.52893853e-01\\n-1.51256517e-01 -3.85924488e-01 -1.29038885e-01 -2.83279926e-01\\n-1.48410395e-01 2.11731523e-01 1.44315660e-01 5.19022346e-01\\n2.31461331e-01 5.25986701e-02 -4.14509892e-01 4.25563246e-01\\n2.55281657e-01 -1.20303407e-01 -9.82607622e-03 6.96228087e-01\\n4.30570960e-01 -7.75224641e-02 1.63752076e-04 2.52568841e-01\\n-2.30209127e-01 -2.83672243e-01 4.30388540e-01 4.22238410e-02\\n-4.68100235e-02 -2.93774396e-01 2.47980967e-01 1.41149491e-01\\n-1.38741374e-01 1.42635778e-02 -7.47205615e-02 2.06415877e-01\\n-4.52843755e-01 -2.24439025e-01 6.93554580e-02 6.55850470e-02\\n-2.22362086e-01 -3.77025455e-01 7.77795464e-02 -1.31554663e-01\\n1.09198682e-01 2.04573702e-02 -4.84884441e-01 4.26645041e-01\\n-1.71004355e-01 -2.04200670e-01 2.15091631e-01 7.36515939e-01\\n-1.19348221e-01 -3.94073159e-01 -4.33158308e-01 -3.06488276e-01\\n6.11925498e-02 -6.40015304e-02 -1.07702546e-01 -2.96205521e-01\\n3.42325360e-01 1.88962460e-01 4.67698984e-02 2.44885057e-01\\n-8.20312381e-01 -3.87265794e-02 -2.01706007e-01 4.81296293e-02\\n-2.59279490e-01 -4.51870970e-02 -2.49911875e-01 -4.29616049e-02\\n2.61862669e-02 3.28220397e-01 -2.75706709e-03 -1.13586254e-01\\n-1.00859813e-01 2.41348118e-01 -1.68194652e-01 2.56577075e-01\\n2.52244443e-01 1.02597348e-01 5.05177006e-02 1.80174783e-01\\n-3.43042403e-01 4.66162294e-01 1.04678467e-01 -3.59962553e-01\\n2.50158787e-01 1.63952008e-01 5.99860132e-01 -3.50063369e-02\\n1.71416849e-01 1.54624537e-01 -2.67824054e-01 2.94125438e-01\\n2.07114294e-01 -3.15089941e-01 4.80773933e-02 7.66728446e-02\\n-1.03797056e-01 -9.48329642e-03 -2.62817871e-02 4.90246713e-01\\n-2.91256428e-01 4.74763781e-01 -4.97973477e-03 -2.51572549e-01\\n-1.20243795e-01 -6.41939759e-01 -1.61465555e-01 -3.94092500e-02\\n1.99101400e-02 2.41597831e-01 1.36434957e-01 1.76024035e-01\\n8.19128379e-02 3.46283941e-03 2.54528016e-01 1.07943833e+00\\n-4.74978276e-02 2.19425991e-01 -4.88763899e-02 3.17451477e-01\\n1.09287001e-01 -2.86467463e-01 2.79915065e-01 2.94623494e-01\\n9.02740806e-02 -1.03666246e-01 -2.18871728e-01 2.78379560e-01\\n-1.23671331e-01 -2.19239980e-01 -4.42984939e-01 2.40879551e-01\\n-1.01094805e-01 -5.26074290e-01 6.60579205e-01 6.65918812e-02\\n2.43507117e-01 -5.06290048e-02 -6.31391704e-02 -6.03117421e-02\\n-1.85745612e-01 4.29179281e-01 7.98044950e-02 1.25700444e-01\\n-3.91211689e-01 -2.43832901e-01 -1.88360050e-01 3.13123405e-01\\n-3.10419858e-01 1.55270413e-01 -2.15107098e-01 -9.91766900e-02\\n3.74924511e-01 -4.61854860e-02 -3.30940843e-01 2.53863722e-01\\n-8.42722133e-02 -1.06144980e-01 2.15888750e-02 3.25099051e-01\\n-1.53583959e-01 3.94235909e-01 -8.42127353e-02 -5.27715646e-02\\n6.07145429e-01 -1.24179669e-01 -9.34389886e-03 -2.17889622e-02\\n2.68143266e-01 -2.16556843e-02 2.08569229e-01 9.56408866e-03\\n-6.15173399e-01 3.03072274e-01 -9.67033301e-03 -1.28808171e-01\\n-1.89812426e-02 -1.50770172e-01 4.80305612e-01 -3.94290954e-01\\n-1.03656620e-01 -1.29369423e-01 -3.41768146e-01 -2.32338861e-01\\n-4.65267986e-01 1.07860398e-02 4.69927669e-01 -4.10198182e-01\\n-1.28028333e-01 1.11130029e-01 -5.40956616e-01 1.48593917e-01\\n2.22055227e-01 1.70908511e-01 5.23780510e-02 2.03228280e-01\\n-2.62902051e-01 -6.49345756e-01 2.99616326e-02 -4.17868018e-01\\n-2.92050630e-01 2.26886749e-01 -2.56252736e-01 3.12439144e-01\\n5.93406036e-02 1.57478601e-01 -1.19805880e-01 1.27759382e-01\\n-3.69976193e-01 -3.95558262e-03 1.56628564e-01 8.54282230e-02\\n2.45059311e-01 1.44087344e-01 -5.17318785e-01 4.20909405e-01\\n-1.69872984e-01 6.15544438e-01 1.32037446e-01 -7.80290425e-01\\n5.38011491e-01 2.18913257e-01 2.30872016e-02 -3.81047100e-01\\n6.64608538e-01 -2.96842813e-01 -8.71951208e-02 2.43682057e-01\\n-2.97810018e-01 -3.10044587e-01 3.14329803e-01 -1.78861514e-01\\n-4.45284724e-01 4.51129287e-01 2.24437565e-01 9.74128544e-02\\n3.34185094e-01 -2.74792314e-01 -9.54287946e-02 1.17172360e-01\\n-7.91442096e-02 -1.67034566e-01 -3.99761945e-01 -6.12472594e-02\\n-1.19446352e-01 -5.21925926e-01 -1.49382398e-01 -4.49620903e-01\\n-3.03322017e-01 -4.63432401e-01 -2.10357919e-01 3.39501858e-01\\n1.59859002e-01 2.23609418e-01 2.00472966e-01 -1.04117736e-01\\n-2.74799496e-01 -6.59818649e-01 1.66699700e-02 1.81827545e-01\\n4.61220860e-01 2.76945502e-01 -8.31258073e-02 -9.25879478e-02\\n9.44696367e-02 4.88944143e-01 -3.28413635e-01 -4.01173562e-01\\n1.97374448e-01 2.82761097e-01 1.72042437e-02 -7.39972815e-02\\n1.01915374e-01 4.48483855e-01 -3.16658735e-01 1.60660431e-01\\n-2.44935796e-01 -2.09203623e-02 2.55809188e-01 1.38096631e-01\\n-3.23692560e-01 -3.53398919e-01 -1.27130419e-01 2.08120540e-01\\n-5.86071849e-01 -2.63090163e-01 4.86389399e-01 1.83118522e-01\\n1.36989042e-01 1.27846720e-02 2.20300615e-01 -2.11982086e-01\\n-2.08984479e-01 -2.33670548e-01 9.24206227e-02 1.94163695e-01\\n-1.29334524e-01 1.83267817e-01 -2.30460256e-01 -6.19110167e-01\\n-3.11664462e+00 -8.05686489e-02 2.40369365e-01 -2.57464916e-01\\n1.99845284e-01 -1.67236015e-01 3.68043706e-02 5.56031652e-02\\n-2.45701179e-01 -4.36835177e-02 -1.75640821e-01 -2.28175640e-01\\n1.28585324e-01 4.19824183e-01 2.76018262e-01 2.79499978e-01\\n2.29533911e-01 -3.21284056e-01 -9.32058990e-02 3.88967812e-01\\n-1.05808645e-01 -6.90544009e-01 1.57541066e-01 -1.43830970e-01\\n2.53037781e-01 3.62953514e-01 -3.53361368e-01 -1.16188690e-01\\n-3.64477694e-01 -2.54562140e-01 1.25512600e-01 -2.35596702e-01\\n-2.10525855e-01 3.40823531e-01 2.59610951e-01 9.47993919e-02\\n1.01299398e-01 -2.90804386e-01 2.80938856e-02 -2.79148698e-01\\n4.27221134e-02 -7.32970715e-01 -1.23153806e-01 -1.70238465e-01\\n8.24480593e-01 -3.50483388e-01 1.98953375e-01 6.31885976e-02\\n2.66721308e-01 1.62735790e-01 -5.41404746e-02 -6.59445301e-02\\n-1.78531557e-01 -2.02568889e-01 -1.90270506e-02 -1.12433217e-01\\n5.36185861e-01 6.71329439e-01 -3.21810246e-01 -1.75951824e-01\\n-2.98887957e-02 -3.93124044e-01 -4.28649217e-01 -3.74091953e-01\\n-1.99111849e-01 -1.77761644e-01 -6.82059467e-01 -5.09291708e-01\\n-7.90584087e-02 -1.32311314e-01 -2.54362989e-02 4.18400735e-01\\n-4.89627481e-01 -4.16765243e-01 -1.30961195e-01 -3.26900691e-01\\n1.95419937e-01 -1.70527667e-01 4.63421494e-02 -1.91731706e-01\\n-2.90601790e-01 -6.19742751e-01 5.26644811e-02 -1.45708630e-02\\n-2.85831481e-01 -2.95991361e-01 -2.96030473e-02 -4.06513661e-01\\n-3.60997677e-01 -5.78343451e-01 4.20680821e-01 1.17324822e-01\\n2.53663510e-01 1.04385965e-01 2.01841578e-01 7.37298951e-02\\n4.07099336e-01 -2.18945354e-01 2.16421992e-01 -3.85481030e-01\\n2.07634687e-01 -8.27214643e-02 6.99065685e-01 -3.10044557e-01\\n4.16436829e-02 1.23935632e-01 -3.66222590e-01 -1.06458910e-01\\n3.23459417e-01 4.12419997e-02 2.66173277e-02 -3.91757667e-01\\n2.73531407e-01 -2.50116378e-01 -2.88912386e-01 9.36420783e-02\\n1.11825339e-01 6.94923341e-01 1.44878894e-01 -3.87016922e-01\\n-3.02916229e-01 4.62186098e-01 -1.78337350e-01 -1.24578826e-01\\n-1.62430316e-01 1.35538504e-01 -1.65623412e-01 2.25651890e-01\\n-3.40400338e-02 -1.27599478e-01 -2.11725861e-01 7.47528151e-02\\n-1.09188654e-01 4.49712068e-01 2.95329064e-01 -1.79079473e-02\\n-3.98830883e-02 -2.07589403e-01 -6.11220952e-03 2.19320729e-01\\n1.65379465e-01 2.36312494e-01 1.47323579e-01 -3.26535821e-01\\n2.31359038e-03 4.72231418e-01 -1.08700193e-01 1.65043876e-01\\n-8.77658129e-02 2.39165369e-02 -6.15838110e-01 -2.81858116e-01\\n-2.73304433e-01 -3.98407549e-01 1.80396557e-01 3.29735905e-01\\n2.34193671e-02 -5.51375486e-02 1.15594201e-01 -5.31719387e-01\\n3.51446956e-01 2.19529286e-01 2.89943606e-01 2.12635726e-01\\n-1.27256781e-01 5.19830585e-01 3.24322726e-03 -1.56378657e-01\\n-1.17015727e-01 1.15028493e-01 -2.46449217e-01 -2.13438272e-01\\n4.58797328e-02 -5.15485406e-01 -1.68101877e-01 3.96053702e-01\\n8.75024199e-02 -3.05238426e-01 -2.47520342e-01 2.48687923e-01\\n1.08888954e-01 -2.89398283e-01 -1.31661132e-01 -3.11982073e-02\\n3.66594195e-01 1.37463450e-01 2.14672402e-01 -5.54337919e-01\\n8.16373974e-02 -6.06036074e-02 -8.55693594e-02 5.26099205e-01\\n-1.55361697e-01 1.89293921e-02 -2.65763432e-01 -6.03662804e-02\\n4.94714826e-01 4.60771564e-03 1.00939848e-01 -1.33585691e-01\\n1.76304672e-02 -2.39504904e-01 -4.30469990e-01 1.48568928e-01\\n2.57115886e-02 -1.58681408e-01 -2.69363169e-02 1.01597466e-01\\n-1.56178856e-02 1.10882610e-01 -5.66456199e-01 -2.54446507e-01\\n-3.27419221e-01 -1.65805638e-01 4.71970998e-02 -4.02482361e-01\\n2.33576968e-02 -7.96365319e-04 -3.84800255e-01 2.05773667e-01\\n-1.38961568e-01 1.62390724e-01 2.97419995e-01 6.15580427e-03\\n-3.07163537e-01 -1.99907199e-01 1.97732031e-01 1.45531356e-01\\n-2.87392557e-01 -1.60337299e-01 -3.12978216e-02 -8.58383000e-01\\n1.22250281e-01 -5.62848784e-02 -1.40660793e-01 1.50318161e-01\\n-4.66634743e-02 -8.30350101e-01 -5.12366975e-03 -3.97481889e-01\\n7.47966208e-03 1.12342983e-02 -1.86315775e-01 -3.33870739e-01\\n2.03316540e-01 -6.97739720e-02 -2.82185525e-01 4.02151942e-01\\n-4.75812972e-01 2.96179771e-01 8.45623203e-03 3.39408368e-02\\n8.93906225e-03 -3.35583448e-01 1.17936119e-01 -4.32155669e-01\\n-3.21212411e-01 -1.03260376e-01 -2.06887782e-01 -1.16271682e-01\\n5.66127244e-03 -3.10035229e-01 -1.70412242e-01 1.35172933e-01\\n2.43972912e-01 1.57793611e-03 -7.74960741e-02 -2.41326675e-01\\n7.23817274e-02 -3.22606415e-01 2.72113848e-02 -1.32495180e-01\\n1.55225638e-02 -1.28486738e-01 8.37377086e-02 9.73379463e-02\\n1.17826730e-01 -4.44315046e-01 5.73109567e-01 -3.93524796e-01\\n-3.81249577e-01 2.63941567e-02 9.90944281e-02 -1.55426800e-01\\n4.97506231e-01 -4.34421390e-01 -3.75014804e-02 4.21753705e-01\\n-3.80420010e-03 7.13804811e-02 2.42156461e-01 -9.56681222e-02\\n-1.36319533e-01 1.16548315e-01 -2.54056096e-01 4.72206660e-02\\n8.50503027e-01 2.42869914e-01 2.20126867e-01 6.52963221e-02\\n2.96079069e-02 3.45052540e-01 3.37082207e-01 1.20170182e-02\\n-1.52402250e-02 1.40239865e-01 1.83024973e-01 -4.96655315e-01\\n-5.33501431e-02 -6.94211349e-02 -2.69478858e-01 -2.15938210e-01\\n6.06432021e-01 4.79145616e-01 -3.31203550e-01 -2.85751760e-01\\n4.18289453e-02 -2.83467680e-01 1.81734249e-01 -3.33805382e-02\\n-7.30824703e-03 -5.08453995e-02 5.55789828e-01 -2.62170862e-02\\n4.46782224e-02 5.25467277e-01 -3.12697500e-01 -3.10060531e-01\\n-1.29906146e-03 1.90938666e-01 -2.37996690e-02 3.50738943e-01\\n-1.88606516e-01 4.71172512e-01 -8.88439640e-02 3.75756659e-02\\n-6.07598461e-02 4.88347262e-02 2.34591424e-01 -5.57595529e-02\\n1.27587482e-01 2.25828946e-01 4.35720682e-01 6.12502158e-01\\n2.62493908e-01 5.41456521e-01 4.09565628e-01 2.96458881e-02\\n4.89281863e-01 6.08497739e-01 4.43592668e-01 1.79996565e-01\\n-3.35513093e-02 5.47011830e-02 1.00962996e-01 8.66869166e-02\\n5.50501227e-01 2.92941809e-01 1.17329955e-01 8.56596887e-01\\n4.33871657e-01 1.68664515e-01 6.44136250e-01 -6.90316856e-01\\n-4.56193000e-01 -7.34282052e-03 4.86049205e-01 -2.90933251e-01\\n-1.63291857e-01 8.41208026e-02 -1.85453236e-01 2.05263868e-01\\n-5.16638339e-01 -2.34654471e-01 -9.37795117e-02 1.81813508e-01\\n-1.97025724e-02 -2.60343519e-03 -1.31245568e-01 -2.34506503e-02\\n-1.80504769e-02 -8.03187788e-02 -5.10931611e-01 -1.85944736e-01\\n-3.30880016e-01 -3.24859589e-01 -7.22184703e-02 2.94357762e-02\\n-1.23180218e-01 -3.71969044e-01 -2.60714650e-01 8.44898596e-02\\n3.46218437e-01 -2.25244448e-01 -1.14703789e-01 -1.01280630e-01\\n1.00308761e-01 2.59002388e-01 6.15002155e-01 -3.57006229e-02\\n3.19671421e-03 -1.90056890e-01 -1.52256459e-01 5.67096099e-02\\n4.82882261e-02 6.62369654e-02 1.12943307e-01 4.19781297e-01\\n-4.79844213e-01 -9.58947092e-02 -8.10999796e-02 3.99318367e-01\\n-4.69480544e-01 -2.62536794e-01 -6.26483175e-04 1.70049429e-01\\n3.46633680e-02 8.46292675e-02 -1.98443308e-01 -4.66455780e-02\\n-1.45482197e-01 -5.42486072e-01 3.24805766e-01 -2.59422585e-02\\n-1.50893196e-01 8.07226170e-03 3.42955440e-01 1.82188049e-01\\n-3.40605043e-02 -4.14949097e-02 1.28683997e-02 3.83335680e-01\\n-1.65945645e-02 2.84696907e-01 -1.41138136e-01 -3.75340104e-01\\n-3.48357618e-01 2.42437959e-01 -1.62165910e-01 1.70202568e-01\\n-5.29040322e-02 1.96052790e-01 2.09912583e-02 1.68673500e-01\\n3.43007058e-01 -5.46199270e-02 -1.44290358e-01 -1.23735689e-01\\n-2.22008958e-01 -4.05785382e-01 -1.06713001e-03 -3.23196501e-02\\n1.27133757e-01 -3.18237513e-01 -6.69296011e-02 -1.51215389e-01\\n-1.03771403e-01 -2.42908493e-01 -2.10208684e-01 3.01287975e-02]]',\n", + " 'Your Responsibilities: You will be working on the core computer vision algorithms, focusing on cutting edge problems. You have extensive experience in Computer Vision with specialization in at least one of the following areas: Dense Mapping Design and implement advanced algorithms for reconstructing dense 3D models of large-scale indoor environments using depth sensors. 3D Scene Understanding Design and implement 3D scene segmentation algorithms based on depth, motion or texture data. Machine learning Detecting known objects and use priors to complete un-observed parts of the object. Your Qualifications:Expert knowledge in at least one area listed below: Fluent in C/C++ (programming and debugging) Experience working with OpenCV Knowledge of parallel computing, OpenCL, GPGPU is a plus Knowledge software optimization and embedded programming is a plus Your Education: MS in Computer Science or Electrical Engineering Ph.D. is preferred What we offer: Nice environment to deploy your enthusiasm for computer vision challenges and cutting-edge technologies Highly skilled team of researchers, scientists and engineers Flexible working hours Should you have any further questions, feel free to reach out to: hr@astrivis.com',\n", + " '[\"Research\", \"Enthusiasm\"]',\n", + " '[\"Nice (Unix Utility)\", \"Programming (Music)\", \"pH Meters\", \"Computer Science\", \"Texturing\", \"OpenCV\", \"Machine Learning\", \"Scale (Map)\", \"Computer Vision\", \"Component Object Model (COM)\", \"Knowledge Management Software\", \"Optimization Software\", \"Agile Edge Technologies\", \"OpenCL\", \"Embedding\", \"C (Programming Language)\", \"Electrical Engineering\", \"3D Modeling\", \"Parallel Computing\", \"Algorithms\", \"Mapping\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Software Plus Services\", \"Debugging\"]',\n", + " \"['English', 'Nepali']\"],\n", + " ['9',\n", + " 'software engineer frontend (m/w)',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.29411924e-01 3.69570881e-01 4.05117869e-01 -9.23201814e-02\\n4.00253803e-01 -1.96479231e-01 -3.31471823e-02 4.53161091e-01\\n-8.15106258e-02 -3.87246817e-01 -8.96338522e-02 -2.40364134e-01\\n-1.78286508e-01 5.12044504e-02 1.76763207e-01 3.77947927e-01\\n3.02914709e-01 1.31900102e-01 -2.00987652e-01 3.42699260e-01\\n7.53284618e-02 -8.97139087e-02 -2.94442456e-02 7.02488601e-01\\n3.25351417e-01 1.07417889e-02 -3.31698805e-02 -8.29202756e-02\\n-2.61225253e-01 -2.32835680e-01 3.87040228e-01 1.65966637e-02\\n-9.27388221e-02 -3.60517710e-01 8.05779919e-02 7.85665810e-02\\n-1.49701387e-01 1.11210449e-02 -2.71107778e-02 1.73086390e-01\\n-4.95559961e-01 -2.36285791e-01 1.87594235e-01 -2.54552811e-03\\n-1.19406827e-01 -3.99426579e-01 2.31142834e-01 -4.11266237e-02\\n1.42262325e-01 -1.39738563e-02 -6.67806029e-01 1.82873860e-01\\n-3.02327514e-01 -1.91834658e-01 4.21090394e-01 4.75494474e-01\\n5.96510693e-02 -5.02350688e-01 -4.68741387e-01 -3.23751360e-01\\n5.00352047e-02 -6.45478070e-02 1.25537902e-01 -3.54868680e-01\\n3.50229591e-01 7.04007223e-02 2.94305775e-02 3.95864725e-01\\n-8.07034492e-01 -5.06236218e-02 -2.34445035e-01 -1.19389305e-02\\n-4.53674287e-01 -1.83947399e-01 -2.66975850e-01 -5.07865623e-02\\n-1.25643134e-01 3.16604376e-01 -8.07620361e-02 6.20083399e-02\\n-1.92136452e-01 3.58563244e-01 -1.96704954e-01 4.84612137e-01\\n2.37676635e-01 1.84111580e-01 2.35324442e-01 3.53205860e-01\\n-4.17643011e-01 4.26375836e-01 2.31587321e-01 -2.68785179e-01\\n3.11311007e-01 3.05274967e-02 4.46601897e-01 5.85986041e-02\\n2.14686230e-01 8.38731676e-02 -2.45889008e-01 2.03965932e-01\\n2.06985757e-01 -2.63606668e-01 -1.32197678e-01 -1.34364218e-01\\n-2.37532513e-04 1.42218713e-02 7.10352184e-03 2.31911212e-01\\n-1.58053622e-01 5.14584839e-01 2.49390170e-01 -1.23238206e-01\\n-1.31678358e-01 -5.28611302e-01 -9.17088389e-02 4.26199846e-02\\n-8.95039141e-02 4.86033857e-02 1.97904795e-01 8.70702490e-02\\n2.45701268e-01 4.46167290e-02 6.42111450e-02 8.11113477e-01\\n-8.71537924e-02 7.23166764e-02 -1.57811627e-01 3.86564374e-01\\n9.73562226e-02 -3.39138538e-01 1.33837491e-01 3.47027004e-01\\n1.12876065e-01 -1.56601027e-01 -2.10042566e-01 3.36655289e-01\\n-6.77346066e-02 -1.78810269e-01 -3.28392357e-01 1.03942566e-01\\n-1.30089775e-01 -5.43019891e-01 5.14666319e-01 1.15517050e-01\\n2.11252630e-01 8.44955891e-02 1.09585926e-01 -1.08988255e-01\\n-1.67187542e-01 2.02998176e-01 3.29276882e-02 2.19192848e-01\\n-2.62528121e-01 -2.95220882e-01 -2.30744511e-01 1.29503042e-01\\n-1.86414227e-01 1.22461922e-01 -7.28980824e-02 -1.25563279e-01\\n3.91089648e-01 9.01127309e-02 -3.89580131e-01 3.25837731e-01\\n-2.96039265e-02 7.32740760e-02 -1.73700258e-01 3.51689696e-01\\n1.13036372e-02 2.26558372e-01 9.32053030e-02 -5.85043877e-02\\n5.41109443e-01 3.37963142e-02 2.49247745e-01 -4.23603207e-02\\n3.73318166e-01 -9.71680284e-02 1.92851096e-01 3.28308158e-02\\n-6.21452749e-01 1.97901428e-01 -5.31012230e-02 -3.59770395e-02\\n1.07706808e-01 -3.11045144e-02 2.90326744e-01 -3.05278003e-01\\n4.10244241e-02 -1.62066251e-01 -4.43341225e-01 -3.42027724e-01\\n-2.92095184e-01 -3.00347056e-05 4.76545930e-01 -3.98269385e-01\\n-1.25014722e-01 1.77671731e-01 -5.25608063e-01 -8.17053095e-02\\n2.53624022e-01 2.23039031e-01 1.06225893e-01 1.11317560e-01\\n-2.20318407e-01 -5.56012452e-01 4.24042828e-02 -5.06793082e-01\\n-4.24928844e-01 1.39224917e-01 -3.33594203e-01 2.07066193e-01\\n1.06761746e-01 -7.13509321e-02 -1.42024100e-01 5.63105606e-02\\n-2.45518357e-01 -9.25257802e-02 1.67488351e-01 1.06218018e-01\\n2.82514632e-01 -1.60132367e-02 -3.91320944e-01 5.45516670e-01\\n-2.07576782e-01 4.84423816e-01 8.30163807e-02 -8.63820076e-01\\n5.29234767e-01 4.03689086e-01 1.70482323e-02 -4.29077387e-01\\n5.68604767e-01 -3.38719010e-01 -4.87028770e-02 1.79560736e-01\\n-4.23586935e-01 -4.16793406e-01 2.49534130e-01 -1.28347069e-01\\n-2.44486988e-01 5.52456677e-01 7.65677765e-02 5.66585287e-02\\n2.63584852e-01 -2.79061884e-01 -1.83097646e-01 6.19198382e-02\\n-1.02029957e-01 -1.81545436e-01 -5.69159269e-01 4.90567461e-02\\n-5.71765266e-02 -5.12661278e-01 -1.59197271e-01 -3.78707260e-01\\n-2.35236287e-01 -4.07423347e-01 -3.33275080e-01 3.46463472e-01\\n1.90752208e-01 1.18661016e-01 -4.99214903e-02 1.18422091e-01\\n-1.45164147e-01 -6.48951769e-01 5.65320365e-02 1.40068904e-01\\n3.99149865e-01 1.57687411e-01 1.33428708e-01 -7.52682388e-02\\n-7.49949962e-02 5.97881436e-01 -2.96335161e-01 -2.47993588e-01\\n1.51850387e-01 2.04703584e-01 4.02054604e-04 -1.41496122e-01\\n1.18283741e-01 3.04508865e-01 -3.38581204e-01 -2.00866219e-02\\n-1.14004619e-01 2.07603048e-03 3.97050172e-01 -1.79522738e-01\\n-4.23588037e-01 -2.48989001e-01 -1.15061529e-01 1.76054463e-01\\n-5.33380151e-01 -2.13539794e-01 6.13665521e-01 3.21149409e-01\\n1.31031826e-01 2.04565778e-01 2.74301261e-01 -9.03357044e-02\\n-2.50618696e-01 -3.84346724e-01 2.98153579e-01 1.62363291e-01\\n1.54614463e-01 1.11201599e-01 -2.00536415e-01 -6.05881572e-01\\n-3.10678220e+00 -1.11332886e-01 2.43699685e-01 -2.34393403e-01\\n2.21965104e-01 -7.14346394e-02 1.11621946e-01 -6.25328720e-02\\n-2.62996674e-01 2.69727828e-03 -2.08455190e-01 -1.43144622e-01\\n1.09476000e-01 3.54203433e-01 1.04733236e-01 1.75140977e-01\\n2.29415357e-01 -2.34874815e-01 2.01575309e-02 2.80038327e-01\\n-2.20643982e-01 -6.92691386e-01 1.59317523e-01 -7.19114169e-02\\n2.05907077e-01 3.57553571e-01 -2.76850402e-01 -9.86656472e-02\\n-1.60291374e-01 -2.22065330e-01 9.19965357e-02 -2.89611846e-01\\n-9.40682888e-02 1.85911208e-01 1.41933128e-01 -6.64288253e-02\\n3.28832343e-02 -3.96721900e-01 -1.79942846e-01 -5.49185932e-01\\n1.70321688e-01 -5.97442806e-01 1.05505064e-01 -1.74614400e-01\\n7.38923609e-01 -3.13181967e-01 2.88300775e-02 6.46378621e-02\\n1.66261196e-01 1.77568853e-01 2.27926262e-02 1.51935574e-02\\n-3.33069384e-01 -3.41732055e-01 -4.03173938e-02 -2.76493996e-01\\n5.61342776e-01 4.01285380e-01 -2.73374557e-01 5.12259779e-03\\n1.56088069e-01 -2.21656680e-01 -4.30077165e-01 -3.17961127e-01\\n-1.44211724e-01 -1.24780893e-01 -6.84318304e-01 -4.54844266e-01\\n-1.27156168e-01 -1.68069690e-01 -6.41700402e-02 7.41744041e-01\\n-3.28977764e-01 -3.47371250e-01 -9.86098964e-03 -6.81394637e-01\\n1.94150820e-01 -2.31482938e-01 2.41207760e-02 -2.03758359e-01\\n-2.32270256e-01 -4.61979359e-01 5.73927388e-02 4.15991955e-02\\n-1.80058643e-01 -7.67726153e-02 7.98474401e-02 -1.05169445e-01\\n-2.69929051e-01 -5.51191330e-01 4.67386663e-01 1.44844174e-01\\n3.31390470e-01 1.49854526e-01 2.65491754e-01 -9.00676325e-02\\n4.04459149e-01 -2.45536566e-02 -1.83354337e-02 -4.13371325e-01\\n2.29118884e-01 7.02057332e-02 5.63765764e-01 -2.08509088e-01\\n-4.39126929e-03 3.24514747e-01 -1.66267022e-01 -1.66295394e-01\\n4.44916666e-01 -2.81692692e-03 9.39762294e-02 -2.35529691e-01\\n3.72845113e-01 -4.99007255e-01 -2.79690892e-01 1.62263930e-01\\n6.50707260e-02 6.79179490e-01 -4.62868176e-02 -4.07837003e-01\\n-1.45643756e-01 5.92358530e-01 -2.68287994e-02 -3.81400101e-02\\n-1.59143195e-01 1.90688744e-01 -1.69566676e-01 2.11906001e-01\\n7.83518404e-02 -1.83542281e-01 -2.62169242e-01 -4.94430438e-02\\n-9.38159972e-02 2.56094605e-01 1.93756148e-01 1.54458731e-01\\n1.85032953e-02 -4.16298151e-01 -1.09462939e-01 1.71553329e-01\\n2.32540503e-01 4.73408222e-01 2.56309900e-02 -2.50505865e-01\\n-7.08528906e-02 3.12660068e-01 -1.67381495e-01 1.95748866e-01\\n-2.51374364e-01 1.77247152e-01 -4.89304394e-01 -2.81294286e-01\\n-3.07072520e-01 -3.44712198e-01 2.19907779e-02 2.45001048e-01\\n2.15368003e-01 1.71730258e-02 9.67314020e-02 -4.89545405e-01\\n2.33887285e-01 4.17286009e-02 2.09033161e-01 1.75459236e-01\\n6.57896549e-02 5.22310913e-01 -5.55800423e-02 -1.59081459e-01\\n-2.12825298e-01 2.26340666e-02 -2.12228030e-01 -1.30399451e-01\\n1.28516719e-01 -4.60697681e-01 -1.47388235e-01 3.98855448e-01\\n1.28584683e-01 -1.85337469e-01 -2.24879280e-01 2.00295970e-01\\n2.95178732e-03 -2.28929460e-01 -2.45843783e-01 -2.93837171e-02\\n2.75664061e-01 6.57641962e-02 2.95062721e-01 -4.09785092e-01\\n-4.07891683e-02 1.04561551e-02 -1.35437781e-02 4.34687287e-01\\n1.31916359e-01 -8.60692002e-03 -1.58321127e-01 -2.11187065e-01\\n4.18992668e-01 -1.60342500e-01 -1.04373552e-01 -4.44057547e-02\\n1.48072585e-01 -1.85886979e-01 -4.69280154e-01 8.08674544e-02\\n-2.00714096e-01 -1.47033080e-01 1.56165868e-01 4.47960123e-02\\n3.98036651e-02 1.20192535e-01 -5.49052715e-01 -2.34389722e-01\\n-3.28624845e-01 -4.41376343e-02 1.15211010e-01 -5.70016205e-01\\n1.55493505e-02 8.15795269e-03 -6.38714314e-01 1.96569309e-01\\n-2.46831536e-01 -4.55087684e-02 1.55861527e-01 1.41786739e-01\\n-4.19364989e-01 -6.18827343e-02 1.00808263e-01 2.71678746e-01\\n-3.90558630e-01 -3.26926380e-01 -6.28312826e-02 -1.05453587e+00\\n2.29835749e-01 -1.07707851e-01 -2.80444503e-01 2.65343562e-02\\n-2.40594968e-02 -7.19151497e-01 5.64527102e-02 -3.33742708e-01\\n-8.38625282e-02 9.29665193e-02 -2.90800959e-01 -3.91880780e-01\\n1.24277040e-01 -9.24262404e-02 -3.13667327e-01 4.52166200e-01\\n-4.91245717e-01 2.90124625e-01 -3.98732871e-02 9.69134346e-02\\n-7.86277950e-02 -3.67054850e-01 1.37411773e-01 -4.33616459e-01\\n-4.65432167e-01 -2.12991685e-01 -3.69023800e-01 -2.83506781e-01\\n6.37267232e-02 -3.57645780e-01 -7.93143287e-02 1.49083808e-01\\n2.66231418e-01 6.93375915e-02 -5.67990355e-02 -1.98315829e-01\\n5.03223762e-02 -4.86519575e-01 4.27958369e-02 -9.35251340e-02\\n-1.91907454e-02 -1.22224070e-01 2.18753368e-01 5.62345572e-02\\n1.48162648e-01 -3.73725444e-01 4.54626232e-01 -3.08522969e-01\\n-3.94377708e-01 -9.17724520e-02 4.11946364e-02 1.07083796e-02\\n2.10496694e-01 -6.59699619e-01 -2.93771774e-02 3.78252089e-01\\n1.77783608e-01 7.48921884e-03 1.41644970e-01 -6.53472096e-02\\n-3.11940163e-02 3.19561124e-01 -4.28473741e-01 7.72890523e-02\\n8.03155065e-01 1.04914188e-01 -9.26881097e-03 2.30272353e-01\\n1.10204071e-01 3.35492373e-01 5.15445471e-01 -1.35111455e-02\\n-8.65495503e-02 2.99768776e-01 5.77457845e-02 -6.36009276e-01\\n-1.93279043e-01 -1.25310393e-02 -1.19154349e-01 -3.08667332e-01\\n6.95102811e-01 3.49992901e-01 -4.15083408e-01 -2.33824492e-01\\n-9.59376693e-02 -1.38059989e-01 2.60134935e-01 -8.02251995e-02\\n2.13269778e-02 -1.74361482e-01 5.24038792e-01 1.20265998e-01\\n3.40502143e-01 5.41308582e-01 -1.41582504e-01 -3.37894022e-01\\n-1.25669673e-01 1.28656000e-01 6.10002922e-03 3.55155498e-01\\n-1.55080050e-01 2.16957033e-01 -2.66384110e-02 2.15285808e-01\\n-1.86379910e-01 8.16482529e-02 -1.73866432e-02 1.58651382e-01\\n1.77946299e-01 9.09013227e-02 4.73535925e-01 3.48686725e-01\\n3.07873636e-01 5.59899449e-01 2.56952941e-01 1.46173865e-01\\n4.97570693e-01 4.95077401e-01 4.91139591e-01 5.72649315e-02\\n2.02857777e-02 1.38471335e-01 1.60988525e-01 -2.30022985e-02\\n4.55447614e-01 3.73011321e-01 9.69769433e-02 9.09893811e-01\\n2.63892829e-01 2.91585386e-01 7.37418652e-01 -7.00027406e-01\\n-3.41046154e-01 1.42620400e-01 4.08385426e-01 -4.52853829e-01\\n-1.21834837e-02 1.15986437e-01 -2.04505742e-01 2.87938744e-01\\n-4.94186431e-01 -1.59595266e-01 -2.45441124e-02 1.03444837e-01\\n6.10486679e-02 -7.21836314e-02 -2.32636109e-01 -1.86584871e-02\\n-1.33059517e-01 -1.21303864e-01 -3.42725992e-01 -1.06091879e-01\\n-1.54547065e-01 -9.56852883e-02 -6.15939163e-02 -1.54421628e-01\\n-1.86023526e-02 -4.55810010e-01 -1.64407387e-01 2.58800052e-02\\n3.81081372e-01 7.22546177e-03 5.10656349e-02 -1.49288088e-01\\n2.68291146e-01 3.61838728e-01 6.41104460e-01 -7.41466507e-02\\n1.28239766e-01 -3.31496716e-01 -1.62876248e-01 1.26637995e-01\\n1.22773126e-01 7.49756917e-02 7.29571506e-02 3.56549025e-01\\n-3.29781264e-01 -9.12872702e-02 1.50337309e-01 4.64791358e-01\\n-4.04272437e-01 -5.86483777e-02 -7.41252825e-02 2.06489816e-01\\n1.07363746e-01 1.22886963e-01 -2.73597389e-01 1.29549608e-01\\n-2.65247673e-01 -5.01372039e-01 4.16632324e-01 -1.39432535e-01\\n-2.59529743e-02 5.72796352e-02 3.19551617e-01 2.14657202e-01\\n-1.99605718e-01 -4.39755581e-02 2.79396344e-02 1.99439138e-01\\n6.27974868e-02 3.43864381e-01 -2.23075032e-01 -1.38274357e-01\\n-2.89120644e-01 1.91538960e-01 -1.01570398e-01 5.28164692e-02\\n-7.71433935e-02 3.91924173e-01 8.37674290e-02 7.61969537e-02\\n3.88105720e-01 7.08745494e-02 -2.46042758e-01 -2.11832866e-01\\n-2.45644569e-01 -2.33632281e-01 -1.56008741e-02 -6.01415820e-02\\n1.88023865e-01 -3.92546386e-01 -1.06564753e-01 -1.59330621e-01\\n-8.31586793e-02 -3.26125592e-01 -9.23803002e-02 4.95209694e-02]]',\n", + " 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customer-specific solutions based on EmberJS, HTML, CSS Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of all web technologies (Javascript, HTML, CSS, REST, etc.) Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Know-how in User Interaction and User Experience Design Willingness to take on responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Hosting\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"User Experience Design (UX)\", \"Functional Programming\", \"Experience Design\", \"Additives\", \"Rust (Programming Language)\", \"User Experience\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English', 'Volapük', 'North Ndebele']\"],\n", + " ['105',\n", + " 'frontend engineer (m/f)',\n", + " 'Zürich',\n", + " 'Internet',\n", + " 'www.smallpdf.com',\n", + " '[[-4.26356867e-02 2.17359364e-01 5.42060494e-01 -5.14482819e-02\\n4.81459022e-01 -2.47155696e-01 7.70751685e-02 3.83561611e-01\\n-7.61580393e-02 -4.18908447e-01 -1.47926528e-02 -3.62792462e-01\\n-9.29435715e-02 1.75257578e-01 5.87201007e-02 3.43884677e-01\\n2.85040706e-01 1.12520024e-01 -2.44654283e-01 3.55138689e-01\\n2.96462566e-01 -1.12063155e-01 4.66714986e-02 6.95091784e-01\\n4.14578646e-01 -9.51050743e-02 -5.16524464e-02 -1.53855786e-01\\n-3.06625158e-01 -2.67285466e-01 4.19684708e-01 -3.26246917e-02\\n-5.62880151e-02 -4.05230820e-01 8.40772465e-02 1.87225621e-02\\n-2.44043529e-01 -2.15876698e-01 1.30531646e-03 2.38969445e-01\\n-4.90683615e-01 -2.87727356e-01 5.78819215e-02 3.12983468e-02\\n-1.71726957e-01 -3.27531070e-01 9.79775041e-02 4.48192917e-02\\n1.39299437e-01 1.00150913e-01 -4.11611140e-01 3.32246542e-01\\n-1.69229612e-01 -1.15801483e-01 2.90452182e-01 6.70354784e-01\\n-9.36756283e-02 -4.22827065e-01 -5.80516756e-01 -3.08450162e-01\\n2.99962107e-02 -3.33176479e-02 1.19138407e-02 -3.35483313e-01\\n1.98844135e-01 4.93469238e-02 4.88317460e-02 3.76933247e-01\\n-7.37324536e-01 -1.93130281e-02 -1.10173628e-01 -1.39085770e-01\\n-3.13379079e-01 -1.41722351e-01 -1.62129253e-01 3.04854731e-03\\n-1.78818852e-01 5.11358202e-01 1.83843821e-01 -2.78426670e-02\\n-1.79097503e-01 3.18047345e-01 -2.55310148e-01 4.11038995e-01\\n2.70241320e-01 1.02049403e-01 1.28908843e-01 2.37064034e-01\\n-4.04838055e-01 4.03564245e-01 1.47431359e-01 -3.30602348e-01\\n3.22148353e-01 1.34906963e-01 5.89837074e-01 -4.91536483e-02\\n-1.25817992e-02 9.04181078e-02 -2.64334738e-01 3.74347538e-01\\n3.87403011e-01 -2.54816055e-01 6.95309713e-02 1.44624673e-02\\n-5.47078513e-02 1.01057934e-02 5.37022054e-02 2.35129207e-01\\n-2.19720095e-01 4.60387707e-01 1.73691243e-01 -2.33808652e-01\\n-1.58658758e-01 -5.13279378e-01 -2.34095473e-02 -9.95451063e-02\\n9.82712954e-02 1.65316582e-01 3.00291359e-01 9.77112427e-02\\n1.21364690e-01 -6.02424480e-02 1.44502446e-01 9.19503272e-01\\n-2.13861391e-02 7.77891278e-02 -3.45812917e-01 3.09157729e-01\\n9.89619419e-02 -2.78476208e-01 2.78817922e-01 2.51963079e-01\\n3.02748755e-03 -2.06331581e-01 -2.00654373e-01 4.03390080e-01\\n-9.07253474e-02 -2.23988771e-01 -3.14446628e-01 1.52227238e-01\\n-1.31628722e-01 -1.65394217e-01 5.24711311e-01 2.20738813e-01\\n1.42920539e-01 -7.70501138e-05 -4.84240428e-02 -2.27333203e-01\\n-1.34954140e-01 1.90372914e-01 7.96317030e-03 -2.91291215e-02\\n-2.73840815e-01 -1.82257190e-01 -2.31048837e-01 2.48168379e-01\\n-2.95537531e-01 6.79955706e-02 -1.19695021e-03 -5.39408959e-02\\n3.48537564e-01 6.86229020e-02 -2.60308057e-01 2.64624238e-01\\n7.56696938e-03 6.12249412e-02 -3.24984938e-02 2.76003182e-01\\n-2.10690260e-01 1.41476572e-01 -2.11646385e-03 -1.18105561e-01\\n6.54830158e-01 2.10145786e-01 5.75211570e-02 6.11898899e-02\\n2.63660371e-01 -1.11128248e-01 1.06344171e-01 1.75692439e-01\\n-6.41887426e-01 3.22313249e-01 -1.90654937e-02 -2.39929333e-02\\n1.06223367e-01 -1.27983047e-02 2.35499501e-01 -2.43631989e-01\\n7.41604492e-02 -1.60515472e-01 -3.47899497e-01 -1.97039917e-01\\n-1.32735893e-01 -7.07565993e-02 4.51854765e-01 -4.44653243e-01\\n-2.42387190e-01 2.59660482e-01 -5.44767261e-01 -4.57545780e-02\\n2.09263057e-01 1.56340107e-01 2.84527063e-01 1.48632616e-01\\n-2.29241788e-01 -5.04425168e-01 9.28275883e-02 -3.99338365e-01\\n-2.84851521e-01 5.91068342e-02 -3.40003043e-01 2.53648698e-01\\n1.00188352e-01 1.11372367e-01 -2.81086862e-01 1.71657622e-01\\n-1.33932665e-01 -1.12761721e-01 9.37261209e-02 1.16183348e-01\\n1.72252297e-01 6.48344457e-02 -4.69846815e-01 3.62570107e-01\\n-2.30470419e-01 5.88052511e-01 1.18322209e-01 -8.95061910e-01\\n4.94688183e-01 3.44649494e-01 -1.68681607e-01 -3.31332892e-01\\n5.15646040e-01 -2.96523988e-01 3.98536213e-02 7.43760392e-02\\n-2.61296332e-01 -3.14898998e-01 3.64714861e-01 -1.98250696e-01\\n-1.84726387e-01 4.64992583e-01 1.29337892e-01 1.29057586e-01\\n2.37109184e-01 -1.58043653e-01 -1.24909297e-01 8.42152685e-02\\n-7.01201558e-02 -2.43604600e-01 -4.35638428e-01 -1.59778371e-02\\n-1.41154110e-01 -4.40238506e-01 -4.38202098e-02 -4.69277173e-01\\n-2.20354408e-01 -3.67773533e-01 -2.15932161e-01 2.33749807e-01\\n3.10926527e-01 8.61162171e-02 -4.12216689e-03 7.19740242e-03\\n-1.65765360e-01 -6.07746184e-01 3.99390096e-03 1.37362525e-01\\n4.34966385e-01 2.36092687e-01 -2.04690211e-02 3.99171142e-03\\n3.68867093e-03 6.31656706e-01 -1.33606359e-01 -7.18556941e-02\\n7.91895539e-02 1.94614589e-01 1.23932563e-01 -1.86552376e-01\\n1.88707076e-02 3.37208122e-01 -1.74811974e-01 2.81678289e-02\\n-3.52268144e-02 -1.93276927e-01 3.54825288e-01 1.42324686e-01\\n-3.76785338e-01 -1.49863258e-01 -4.03830856e-02 1.29352152e-01\\n-5.58953047e-01 -1.92380756e-01 6.17369831e-01 1.80110350e-01\\n1.66266620e-01 1.34725064e-01 2.16193751e-01 -4.14935276e-02\\n-1.70880750e-01 -2.46176451e-01 1.72394395e-01 9.20567513e-02\\n1.29354030e-01 1.71144351e-01 -7.78340474e-02 -7.20774829e-01\\n-3.02696419e+00 -1.69447660e-01 1.64873064e-01 -2.11554483e-01\\n-1.61197223e-03 -1.83458030e-01 4.44901250e-02 -1.10294193e-01\\n-3.23799729e-01 5.16319685e-02 -6.99989498e-02 -1.51402518e-01\\n2.33764619e-01 1.97024450e-01 4.59666066e-02 3.15534860e-01\\n1.85523376e-01 -1.60471156e-01 -1.25477344e-01 2.40527421e-01\\n-2.77908683e-01 -5.25492549e-01 2.93127030e-01 -7.69200027e-02\\n3.93592626e-01 1.10759802e-01 -3.07077080e-01 -2.26663485e-01\\n-2.79753417e-01 -1.39607966e-01 2.97660362e-02 -2.51405686e-01\\n-1.09302349e-01 1.80793703e-01 1.78204492e-01 -1.37538731e-01\\n2.59157240e-01 -4.86818045e-01 -3.26527536e-01 -4.66840833e-01\\n8.80545601e-02 -6.75537109e-01 2.21512839e-02 -1.72708139e-01\\n7.93677747e-01 -4.94511038e-01 1.74503118e-01 7.58543760e-02\\n2.46737212e-01 7.37583861e-02 1.04516990e-01 -9.84922238e-03\\n-1.76882342e-01 -2.22224280e-01 -1.65907398e-01 -1.24548778e-01\\n5.32761872e-01 5.98090053e-01 -1.05982184e-01 -5.15023172e-02\\n3.98262925e-02 -2.32019320e-01 -4.56047893e-01 -3.11501563e-01\\n-1.23848878e-01 -3.12325180e-01 -6.19879246e-01 -4.80381727e-01\\n-2.37374187e-01 -2.99166180e-02 -2.52804726e-01 7.38435268e-01\\n-2.61857003e-01 -3.40022802e-01 -2.18061991e-02 -5.30470192e-01\\n1.82726920e-01 -1.58571959e-01 4.85256314e-02 -1.53433368e-01\\n-3.88786972e-01 -4.27916050e-01 -1.78475548e-02 -6.47812113e-02\\n-1.85336962e-01 -3.86098593e-01 6.90961108e-02 -1.22954682e-01\\n-2.22198427e-01 -4.14396673e-01 4.20592993e-01 1.13168724e-01\\n2.30245173e-01 1.16653182e-01 3.04527223e-01 1.01878628e-01\\n2.95006633e-01 -1.64352849e-01 -4.38155793e-02 -2.86876976e-01\\n2.44866550e-01 1.16625212e-01 5.95448017e-01 -2.78884768e-01\\n4.80130874e-02 6.87559545e-02 -2.44557679e-01 -2.33721696e-02\\n3.35198134e-01 2.76131053e-02 -1.03772663e-01 -2.13947028e-01\\n2.68056065e-01 -2.69518793e-01 -2.41763443e-01 -1.17048975e-02\\n2.79169172e-01 5.85196376e-01 -6.94288090e-02 -4.91421729e-01\\n-1.98517337e-01 4.67280716e-01 -7.77068734e-02 -2.47461155e-01\\n-1.93125218e-01 1.23044305e-01 -2.74590850e-01 1.27820253e-01\\n5.46145029e-02 -1.30986243e-01 -4.22641724e-01 -2.16225550e-01\\n-4.15990828e-03 3.54080647e-01 2.53307343e-01 1.47672594e-01\\n9.53674968e-03 -5.08051634e-01 -9.97868106e-02 2.11298048e-01\\n1.02997646e-01 3.36050928e-01 1.33977756e-01 -1.54583320e-01\\n5.15170656e-02 3.32957923e-01 -1.75241008e-01 1.43952206e-01\\n-3.40252429e-01 1.20022282e-01 -5.15146017e-01 -3.25636208e-01\\n-2.17854962e-01 -3.94147724e-01 1.63017347e-01 2.23630354e-01\\n1.21833198e-01 1.38728432e-02 6.95391074e-02 -4.55082774e-01\\n3.00341964e-01 -3.16870399e-02 1.86063543e-01 1.80934131e-01\\n4.78222556e-02 4.69653845e-01 1.12590663e-01 -1.72039807e-01\\n-1.60782307e-01 -4.56978418e-02 -1.62538409e-01 -1.16983600e-01\\n-7.65185207e-02 -4.47909921e-01 -1.96309328e-01 5.07844746e-01\\n5.47904000e-02 -2.56419778e-01 -5.11841141e-02 3.41776311e-01\\n-6.51571676e-02 -1.71711653e-01 -8.86672661e-02 -3.84895131e-02\\n2.92488426e-01 3.59644480e-02 2.86019772e-01 -4.21014547e-01\\n7.02790692e-02 6.54388219e-02 -8.98997560e-02 6.42010212e-01\\n-2.50126608e-02 7.58225052e-03 -1.59198403e-01 -2.16151804e-01\\n5.30328333e-01 -1.18230805e-01 -1.57720353e-02 3.83238941e-02\\n4.56224941e-02 -1.38759941e-01 -5.34839809e-01 1.18696570e-01\\n7.06395134e-02 -1.22500226e-01 3.48810703e-02 1.38549313e-01\\n1.86418787e-01 1.02284044e-01 -5.34944713e-01 -3.15698534e-01\\n-2.81562775e-01 -4.09017466e-02 2.22971514e-02 -4.47195977e-01\\n-8.83192290e-03 -1.84076563e-01 -4.92877126e-01 2.96114266e-01\\n-2.23012596e-01 -6.69644549e-02 1.77550778e-01 -1.52256126e-02\\n-2.52854258e-01 -6.93797395e-02 1.62339911e-01 2.81103849e-01\\n-2.40171671e-01 -3.66645962e-01 1.68111414e-01 -8.54814291e-01\\n1.81317464e-01 6.14535697e-02 -1.83936939e-01 1.73092872e-01\\n-9.64080393e-02 -7.69380033e-01 1.19291037e-01 -3.40814888e-01\\n-1.90931763e-02 -4.40369621e-02 -1.90907493e-01 -5.51337242e-01\\n1.21280506e-01 -1.74905825e-02 -2.94490904e-01 3.46234411e-01\\n-2.82669514e-01 3.43858838e-01 -3.77558395e-02 1.15316696e-01\\n1.50045782e-01 -3.20816875e-01 7.28359371e-02 -5.25180936e-01\\n-4.36110467e-01 -1.72565967e-01 -3.54540348e-01 -3.14469576e-01\\n-1.87959187e-02 -1.48561597e-01 -1.50251994e-02 1.18796960e-01\\n3.57951671e-01 1.46575332e-01 -6.07330985e-02 -3.01587433e-01\\n-9.17130802e-03 -5.48538089e-01 1.19791981e-02 -6.01466298e-02\\n-3.27033810e-02 -1.08909249e-01 1.23886704e-01 1.24658689e-01\\n-2.53379662e-02 -4.16364372e-01 4.12447333e-01 -4.29993182e-01\\n-2.72186756e-01 -1.09541789e-01 -6.33095484e-03 -2.47128177e-02\\n3.12206268e-01 -3.61054778e-01 1.02273608e-02 3.67910296e-01\\n1.68739051e-01 1.72914833e-01 2.24339306e-01 -2.46951785e-02\\n1.51762720e-02 3.16061378e-01 -2.83781290e-01 9.12732109e-02\\n7.32344687e-01 -6.43279478e-02 1.25934094e-01 1.49296865e-01\\n8.04644823e-02 2.23277465e-01 5.20833075e-01 2.39329860e-02\\n-1.70112059e-01 2.47473210e-01 1.05645001e-01 -5.92863321e-01\\n-4.95322533e-02 2.27696411e-02 -2.68524468e-01 -4.98389393e-01\\n5.77039182e-01 4.72070992e-01 -3.78883392e-01 -2.15172797e-01\\n-2.35220402e-01 -1.88715443e-01 2.09268425e-02 -5.15931584e-02\\n1.06485188e-01 -9.55188647e-02 4.95313108e-01 -8.12276825e-02\\n2.23100528e-01 5.06278872e-01 -1.78636491e-01 -3.66078079e-01\\n-1.09578617e-01 1.57138929e-01 7.24354982e-02 3.87416899e-01\\n-2.70480365e-01 3.56068730e-01 -2.57838480e-02 1.12834960e-01\\n-1.69545963e-01 1.81436419e-01 1.28029156e-02 -4.25392129e-02\\n1.24429092e-01 4.67251576e-02 3.76551211e-01 4.23538595e-01\\n4.15591359e-01 4.23245519e-01 1.69085264e-01 -6.29788861e-02\\n6.06733799e-01 6.10048175e-01 4.34010714e-01 2.57893533e-01\\n-1.05141290e-01 4.41681668e-02 5.62633481e-03 1.42182233e-02\\n3.03674459e-01 3.16523194e-01 -8.69757403e-03 8.80585134e-01\\n3.50955695e-01 2.16461644e-01 5.12291551e-01 -6.01212859e-01\\n-3.22058737e-01 5.06694280e-02 5.27052045e-01 -3.23927611e-01\\n-1.81411549e-01 8.42813700e-02 -1.81037962e-01 1.01448156e-01\\n-4.14314598e-01 -2.44046807e-01 -3.42161283e-02 1.73092961e-01\\n7.17791840e-02 -1.95260778e-01 -2.24474832e-01 9.94745046e-02\\n-2.33754501e-01 -1.25018612e-01 -5.29336095e-01 1.27337381e-01\\n-1.90800324e-01 -1.90402061e-01 -8.49710405e-02 -1.14995398e-01\\n-1.18122794e-01 -4.26183611e-01 -1.06715366e-01 -1.22525126e-01\\n2.84286171e-01 -1.94852024e-01 -4.19794582e-02 -2.32974783e-01\\n1.49049222e-01 2.84637243e-01 5.23172855e-01 9.19648409e-02\\n8.47783983e-02 -3.57522756e-01 -2.50506252e-01 1.48564354e-01\\n1.81228220e-01 1.70128286e-01 2.60742810e-02 3.01527172e-01\\n-2.16837287e-01 5.73847666e-02 9.37110335e-02 3.80991787e-01\\n-4.79477644e-01 6.14154488e-02 -2.06676453e-01 1.43909633e-01\\n2.57612020e-01 2.01875240e-01 -2.61800170e-01 8.53309333e-02\\n-1.99946001e-01 -4.23904121e-01 3.04566056e-01 -8.63096565e-02\\n-3.57200243e-02 4.99662943e-02 1.28981411e-01 1.13556460e-01\\n-2.84328401e-01 -6.86825886e-02 -8.50870386e-02 2.41473511e-01\\n2.12153226e-01 3.13087791e-01 -3.16514820e-01 -2.86024600e-01\\n-1.86461270e-01 1.87176913e-01 -1.66381896e-01 6.69556856e-02\\n1.70782227e-02 3.39607239e-01 3.10208127e-02 7.02763125e-02\\n4.41980451e-01 4.97865044e-02 -2.11667866e-01 -1.50598556e-01\\n-2.66024113e-01 -3.77244651e-01 4.27110732e-04 -5.80797344e-02\\n1.13955222e-01 -4.43898141e-01 -3.84360855e-03 -9.13604945e-02\\n-2.07513228e-01 -3.37287456e-01 3.88290937e-04 -1.68185696e-01]]',\n", + " 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 20 million users worldwide work with documents. Our team enjoys open-source, adopting the latest technologies and solving tricky frontend challenges to create outstanding user interfaces. As a Frontend Engineer at Smallpdf, you will work closely with the team to improve and extend our product. What you will do: Team up with our designers and developers to create great user experiences and reliable interfaces Work closely with our team to tie the front-end to our back-end infrastructure Implement new features and improve existing ones We use the latest technologies, including: ES6 Webpack React Redux Redux-Saga Check our stack via https://stackshare.io/smallpdf/frontend Requirements 3+ years of experience in developing web-based user interfaces Outstanding skills in Javascript (including some knowledge in Node.js) An obsession for interactions, animations, and visual details CSS, TDD, Git and Linux experience Experience with React is a plus Can excel independently and have a sense of ownership for your own work Fluent English Based in Zurich or willing to relocate Swiss or EU passport holder (or other permits that allow you to work in Switzerland) Benefits The chance to personally impact a successful & rapidly growing startup Opportunity to solve tricky frontend challenges using modern technologies Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich If you like the job apply here please: https://apply.workable.com/smallpdf/j/62E4A9510C/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " '[\"Infrastructure\", \"Reliability\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Visualization\", \"Component Object Model (COM)\", \"Node.js\", \"Linux\", \"Web Development\", \"React.js\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"React Redux\", \"Webpack\", \"Animations\", \"Personalization\", \"JavaScript (Programming Language)\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Language Experience Approach\", \"Git Flow\", \"User Experience\", \"User Interface\", \"Adoptions\"]',\n", + " \"['English', 'Yiddish', 'Volapük']\"],\n", + " ['57',\n", + " 'it project manager for data analysis 100% (m/f/d)',\n", + " 'Zürich',\n", + " '',\n", + " 'www.haysplc.com',\n", + " '[[-1.42762199e-01 3.82178932e-01 5.31461596e-01 -3.62440869e-02\\n4.76268142e-01 -1.55882537e-02 4.52619120e-02 4.96076703e-01\\n-1.80580154e-01 -5.86280584e-01 6.92058429e-02 -1.25717968e-01\\n2.01034367e-01 2.14188039e-01 1.74855039e-01 4.77071762e-01\\n2.48044357e-01 3.92324999e-02 -1.89950764e-01 2.97135144e-01\\n1.71825901e-01 -2.04139099e-01 1.63787797e-01 6.77214444e-01\\n5.05341947e-01 1.89277008e-02 -7.54329190e-02 -5.03591746e-02\\n-1.26381636e-01 -2.85719275e-01 4.96361881e-01 -5.82685471e-02\\n-6.29100651e-02 -1.05489992e-01 -2.04720702e-02 -5.51342107e-02\\n-3.08564395e-01 -1.78622484e-01 -1.61988884e-01 4.53207046e-02\\n-4.06613231e-01 -1.04752399e-01 -4.43688445e-02 6.31870031e-02\\n-3.46925795e-01 -3.95593405e-01 1.72229670e-02 -2.51253545e-01\\n1.25248656e-01 2.91282460e-02 -3.34296703e-01 2.05402434e-01\\n-2.42610455e-01 -2.48873815e-01 2.86819190e-01 8.13174784e-01\\n-7.23315403e-02 -3.96262497e-01 -5.68849683e-01 -2.90843189e-01\\n2.11151332e-01 -1.28183410e-01 1.07144147e-01 -2.49575347e-01\\n2.89541185e-01 5.84759638e-02 1.71710193e-01 2.17974380e-01\\n-7.23863006e-01 -1.63646862e-02 -3.16391736e-01 5.35117537e-02\\n-2.32080728e-01 -1.20066516e-02 -4.07299459e-01 -1.92244455e-01\\n-9.92342532e-02 4.35009331e-01 1.74652729e-02 -4.27076332e-02\\n-1.04218513e-01 2.30497777e-01 -3.20674628e-01 2.32451499e-01\\n1.71402931e-01 2.34551251e-01 2.39991024e-01 2.57664919e-01\\n-2.54992008e-01 5.63754499e-01 1.95265785e-01 -2.50174403e-01\\n1.90990999e-01 1.90235153e-01 4.39762205e-01 -4.61510494e-02\\n2.84964710e-01 -1.47742797e-02 -2.80640930e-01 2.92708248e-01\\n3.49348575e-01 -2.78140642e-02 1.79687608e-02 -1.29786864e-01\\n-6.76942766e-02 -5.26158698e-03 3.23501602e-02 2.26646632e-01\\n-3.66046041e-01 4.14407045e-01 4.29525189e-02 -2.17096627e-01\\n-2.36975968e-01 -4.34662551e-01 -7.23540932e-02 -6.14977404e-02\\n1.21721826e-01 2.92340994e-01 1.79777950e-01 2.49137461e-01\\n8.00910816e-02 -1.18670799e-02 1.71299353e-01 7.42641687e-01\\n3.34598236e-02 2.95037422e-02 -2.78626800e-01 2.09410354e-01\\n-5.18807359e-02 -2.55042911e-01 1.52315140e-01 9.72997099e-02\\n-4.68825176e-02 -1.50625974e-01 -2.73066103e-01 1.94782913e-01\\n-3.51920277e-02 -2.76694298e-01 -2.48372242e-01 2.37198114e-01\\n-9.53435600e-02 -4.99582708e-01 5.08736312e-01 -5.11191636e-02\\n1.23873554e-01 -6.72992095e-02 -1.20180547e-02 -7.72468150e-02\\n-6.38474077e-02 1.67167231e-01 9.01643708e-02 -8.34050849e-02\\n-1.97030902e-01 -1.86748743e-01 -2.13719070e-01 5.08006960e-02\\n-3.26530367e-01 1.66457251e-01 -7.26467073e-02 -4.07864004e-02\\n2.91773826e-01 1.44877704e-03 -2.40295142e-01 2.21060440e-01\\n-4.97631766e-02 3.02033350e-02 -6.20265454e-02 3.46062213e-01\\n-1.73267275e-01 1.86765790e-01 -3.52218822e-02 -2.70350184e-02\\n6.12263858e-01 -1.55663593e-02 1.48441002e-01 -8.14929008e-02\\n2.45409861e-01 6.56160563e-02 1.41495913e-01 1.18440099e-01\\n-4.95236456e-01 2.52339393e-01 -7.41179287e-02 -1.29047647e-01\\n-3.94900963e-02 -1.50118932e-01 1.61703795e-01 -2.64578372e-01\\n7.67890513e-02 -3.10303364e-02 -3.65496606e-01 -3.37876558e-01\\n-1.48427993e-01 -6.73411041e-02 4.06901717e-01 -4.62004304e-01\\n8.63309130e-02 1.75807893e-01 -4.94219035e-01 1.85155254e-02\\n2.72707969e-01 1.21834666e-01 1.13579974e-01 2.11826921e-01\\n-2.35917628e-01 -4.94018912e-01 2.14274898e-01 -3.14365327e-01\\n-1.55801356e-01 2.05916598e-01 -2.63814181e-01 2.30782881e-01\\n1.38679877e-01 8.58920813e-02 -1.05299920e-01 1.12278685e-01\\n-2.12615952e-01 3.42010632e-02 1.00749798e-01 9.12397131e-02\\n3.27325940e-01 1.45972773e-01 -3.81104141e-01 4.47299331e-01\\n-1.61842182e-01 3.97183776e-01 -5.76725788e-03 -9.11315680e-01\\n3.37926626e-01 3.29104960e-01 1.04936495e-01 -3.64338905e-01\\n7.35157192e-01 -2.13433504e-01 2.98946276e-02 7.41347969e-02\\n-4.91587996e-01 -3.51039618e-01 2.44299620e-01 -2.98781663e-01\\n-3.41334492e-01 4.67304915e-01 -3.38459574e-02 2.08070114e-01\\n1.67503864e-01 -1.62721246e-01 -2.26627409e-01 7.12058991e-02\\n-7.23608807e-02 -6.91644549e-02 -4.39821064e-01 1.11865380e-03\\n-5.62147163e-02 -4.17374492e-01 -1.38335928e-01 -5.85721552e-01\\n-2.21360922e-01 -2.70504117e-01 -1.32939801e-01 -1.68437585e-02\\n2.25247458e-01 1.54728279e-01 5.16420528e-02 4.17423397e-02\\n-1.02669805e-01 -6.68118000e-01 -4.18679230e-03 8.40030536e-02\\n2.67931819e-01 1.33709356e-01 1.68451190e-01 -3.54999341e-02\\n2.04878720e-03 6.09403849e-01 -2.14789942e-01 -1.31207570e-01\\n1.67043120e-01 1.04340024e-01 3.41285206e-02 -1.70610383e-01\\n1.48161292e-01 2.24754170e-01 -2.45582655e-01 -2.26556007e-02\\n-6.15711212e-02 -1.09545745e-01 2.67801642e-01 1.20324761e-01\\n-3.35512966e-01 -2.65079081e-01 -1.80318773e-01 1.49877876e-01\\n-5.91468573e-01 -2.76162893e-01 7.46124566e-01 1.32024540e-02\\n1.21872082e-01 2.84312725e-01 1.43644571e-01 -9.23207030e-02\\n-2.13382438e-01 -1.30318433e-01 2.31954634e-01 1.13745004e-01\\n1.68694332e-02 2.21959725e-01 -8.24100599e-02 -6.62443876e-01\\n-3.73264027e+00 -4.45869043e-02 1.28330499e-01 -3.13241124e-01\\n3.82144511e-01 -1.54570237e-01 2.74532944e-01 -7.80470371e-02\\n-2.53411502e-01 -1.12959236e-01 -2.18952149e-01 -8.13264996e-02\\n1.74650252e-01 2.48450220e-01 1.21660242e-02 2.82379001e-01\\n2.13277861e-01 -3.11558694e-01 -8.45117271e-02 4.80396807e-01\\n-1.11018933e-01 -5.95700443e-01 1.49473622e-01 8.39669257e-02\\n2.11673483e-01 3.03569555e-01 -3.81250918e-01 -1.17359042e-01\\n-2.27456406e-01 -2.08696067e-01 1.90122902e-01 -3.90161097e-01\\n-2.15753257e-01 1.88764036e-01 2.33664826e-01 -1.10861391e-01\\n7.81201422e-02 -3.53186250e-01 -2.62997039e-02 -4.64275718e-01\\n6.97303712e-02 -8.13028097e-01 -1.22930132e-01 -1.74381156e-02\\n7.77728319e-01 -2.11499423e-01 1.50429279e-01 1.80430841e-02\\n1.08692646e-01 6.44755289e-02 8.17589089e-02 4.90186363e-02\\n-7.06683099e-02 -2.99287677e-01 -5.51117621e-02 6.90312032e-03\\n5.73603332e-01 6.07679904e-01 -1.80654466e-01 -1.67851552e-01\\n6.08213991e-02 -2.19886750e-01 -4.96837556e-01 -2.13977158e-01\\n-2.80072868e-01 -1.01580821e-01 -6.67531729e-01 -4.02023643e-01\\n-1.19237170e-01 -2.45334864e-01 -1.05671458e-01 4.86753345e-01\\n-1.77246436e-01 -2.98425674e-01 -1.20601028e-01 -4.66042399e-01\\n2.11582497e-01 -1.98570895e-03 4.74351719e-02 -2.47230455e-01\\n-2.02707574e-01 -3.56355011e-01 4.42914516e-02 5.62475771e-02\\n-1.43359244e-01 -1.38138965e-01 1.69104844e-01 -1.03637815e-01\\n-4.45693374e-01 -5.09123981e-01 3.15624416e-01 4.20204513e-02\\n3.51431757e-01 1.73732668e-01 1.68623254e-01 -1.42882264e-03\\n2.87038207e-01 -1.01626486e-01 -9.28158462e-02 -3.83064389e-01\\n1.36001796e-01 9.53616500e-02 4.71893042e-01 -1.90587014e-01\\n4.54995222e-02 3.12674716e-02 -1.31608590e-01 -1.24004416e-01\\n3.35070878e-01 -1.97031468e-01 2.17983827e-01 -3.48130852e-01\\n2.60167629e-01 -2.85477281e-01 -1.29040778e-01 -5.04845232e-02\\n-3.42379063e-02 5.27259231e-01 -8.42799097e-02 -3.07554841e-01\\n-6.45002276e-02 4.02753145e-01 -1.97226450e-01 -7.05909729e-03\\n-3.23484033e-01 6.12767972e-03 -1.69769615e-01 2.63618320e-01\\n-1.31425202e-01 -1.79543287e-01 -2.10144475e-01 -2.07878739e-01\\n-2.07403824e-01 3.39414418e-01 2.83727318e-01 1.49394572e-01\\n6.56599030e-02 -5.44966161e-01 -1.01433843e-01 2.21779898e-01\\n1.57610044e-01 3.47161680e-01 9.79378372e-02 -2.84091055e-01\\n6.06525689e-02 2.16053024e-01 -2.86566675e-01 2.05967292e-01\\n-3.41088951e-01 1.73459202e-01 -4.04322565e-01 -3.36254716e-01\\n-1.96085468e-01 -3.25369090e-01 1.48630023e-01 4.29466665e-01\\n1.94486141e-01 -6.07222728e-02 -2.14623176e-02 -3.88256520e-01\\n2.65665621e-01 2.75999382e-02 1.57827139e-01 2.27931768e-01\\n-1.31019488e-01 6.07688189e-01 -8.24998319e-02 -8.22478384e-02\\n-3.87693718e-02 1.25518695e-01 -2.33393878e-01 -1.02942705e-01\\n9.83368680e-02 -5.59669495e-01 -3.24263908e-02 3.91867548e-01\\n1.48641199e-01 -1.72744319e-02 -1.37203366e-01 1.79129094e-01\\n1.61455888e-02 -4.11459655e-01 -2.08630607e-01 3.97923067e-02\\n2.77576119e-01 9.60367993e-02 3.04660171e-01 -3.69100511e-01\\n8.22699070e-02 -2.41801087e-02 -1.66786313e-01 3.89531046e-01\\n4.88529354e-02 6.61277100e-02 -5.26898243e-02 -1.50384963e-01\\n5.04236102e-01 -1.94941491e-01 -1.20208068e-02 1.48068732e-02\\n1.98255092e-01 -2.44214699e-01 -3.52942795e-01 -9.08680726e-03\\n-9.61957648e-02 -1.14466906e-01 -4.59324792e-02 5.79733178e-02\\n-8.12073871e-02 9.47572663e-02 -5.01005173e-01 -3.05201024e-01\\n-3.43091398e-01 7.91298300e-02 -5.65182511e-03 -5.85893333e-01\\n-1.37358025e-01 -1.66979000e-01 -5.85451782e-01 3.67414862e-01\\n-1.66697300e-03 -7.08617568e-02 2.89222956e-01 7.97127485e-02\\n-3.23718816e-01 -1.38950601e-01 1.88088238e-01 2.13463724e-01\\n-1.42456204e-01 -1.95733041e-01 -1.26602843e-01 -9.91138875e-01\\n2.02569544e-01 -1.34695566e-03 -1.53401837e-01 1.61369100e-01\\n-1.38098180e-01 -6.20649636e-01 2.77790546e-01 -2.46465653e-01\\n-2.71076649e-01 1.97666641e-02 -1.89390108e-01 -4.17159826e-01\\n-2.92259455e-03 5.96940331e-02 -1.84184298e-01 4.07260031e-01\\n-2.10051313e-01 3.90962720e-01 5.93291931e-02 3.61988693e-02\\n3.41858417e-02 -2.79689282e-01 9.83187631e-02 -4.48527217e-01\\n-3.31744790e-01 -1.26138151e-01 -3.54475677e-01 -2.18132660e-01\\n-7.90687874e-02 -3.20878625e-01 -2.00553790e-01 1.69252217e-01\\n2.26148054e-01 1.46614626e-01 -1.38972417e-01 -1.05833210e-01\\n8.05935636e-02 -5.08877337e-01 1.42927200e-01 -1.12525582e-01\\n1.65147875e-02 -2.32077703e-01 2.92540640e-01 1.14949383e-01\\n8.99275541e-02 -3.86568457e-01 4.79783475e-01 -3.84183288e-01\\n-3.41412783e-01 -4.71158810e-02 8.43303725e-02 -3.41217071e-02\\n4.26428318e-01 -3.62479866e-01 -2.07839176e-01 3.10873985e-01\\n-3.23354006e-02 -2.39629429e-02 3.85108173e-01 -1.19946018e-01\\n-1.80313647e-01 3.29474896e-01 -4.10299659e-01 2.56837100e-01\\n7.84245253e-01 1.70243680e-01 2.08498791e-01 2.28375137e-01\\n1.36540592e-01 2.91669220e-01 4.08860594e-01 3.06395926e-02\\n-1.69243172e-01 3.27864349e-01 2.80702915e-02 -5.99891841e-01\\n-8.30554310e-03 -7.90103301e-02 -1.71838760e-01 -3.55935872e-01\\n7.06707716e-01 3.14257890e-01 -2.40550205e-01 -3.47438902e-01\\n-2.71941066e-01 -2.36177027e-01 2.46631801e-01 -4.27523106e-02\\n-2.43397690e-02 -1.19232446e-01 5.34654558e-01 1.17379904e-01\\n3.18896562e-01 4.20081884e-01 -2.02104434e-01 -3.64937514e-01\\n1.13880597e-01 2.31034651e-01 -6.61819801e-02 4.21844780e-01\\n-1.78126276e-01 3.37893248e-01 -2.38085613e-02 1.28706113e-01\\n-1.68633044e-01 -2.35072803e-02 9.96146351e-02 2.10375369e-01\\n2.22868263e-03 1.98959768e-01 5.16387224e-01 4.27601308e-01\\n2.69517720e-01 4.23930913e-01 3.06467175e-01 1.36676237e-01\\n3.77505004e-01 3.72809768e-01 2.24967852e-01 6.99753091e-02\\n1.30408213e-01 -1.00891456e-01 1.08076081e-01 5.69026396e-02\\n2.64709085e-01 3.88809323e-01 -7.68140703e-02 7.00719476e-01\\n1.55470952e-01 2.55753160e-01 5.98388553e-01 -5.98676622e-01\\n-2.72169054e-01 -4.18960713e-02 4.89079595e-01 -4.01656002e-01\\n8.78083184e-02 1.10183030e-01 -1.67242184e-01 3.16778347e-02\\n-4.19257522e-01 -3.66372019e-01 -1.08277105e-01 8.81435201e-02\\n1.57220196e-02 -2.36145765e-01 -2.90518496e-02 1.24057308e-01\\n-6.57008812e-02 -1.15280323e-01 -3.46666753e-01 -6.62467778e-02\\n-2.10102409e-01 -9.86673906e-02 -4.32031192e-02 -3.25116813e-02\\n-6.91913590e-02 -3.34635943e-01 8.30698479e-03 8.03397968e-02\\n3.17705452e-01 6.61498308e-02 -8.53193253e-02 5.04240952e-02\\n3.62804264e-01 1.14420466e-01 6.91604674e-01 2.82405820e-02\\n-3.56557444e-02 -1.32156000e-01 -1.21940851e-01 2.22929552e-01\\n2.57162154e-01 2.17051674e-02 2.23348197e-02 3.54392529e-01\\n-3.06210577e-01 -2.53453881e-01 -2.73514912e-02 2.88210928e-01\\n-4.07845616e-01 7.61455623e-03 -4.36685495e-02 1.43725216e-01\\n1.32651687e-01 2.80517012e-01 -2.38600656e-01 1.49957286e-02\\n-1.19244270e-01 -4.03870225e-01 1.37548387e-01 -3.14532816e-02\\n-1.32693276e-01 -3.13109998e-03 1.00045726e-01 1.56172797e-01\\n-1.20299034e-01 5.90221621e-02 -7.87567198e-02 1.04919992e-01\\n4.30530049e-02 2.22154021e-01 -1.89361230e-01 -2.52076864e-01\\n-2.77807385e-01 2.14880228e-01 8.95178970e-03 2.64211297e-01\\n3.19242887e-02 2.17582688e-01 6.50641546e-02 -6.10280375e-04\\n5.14386535e-01 2.17757020e-02 -9.06479135e-02 -2.05146551e-01\\n-2.43824214e-01 -1.90440238e-01 -7.21954778e-02 -1.63595617e-01\\n1.88485876e-01 -3.00821513e-01 -1.19375467e-01 -3.02821636e-01\\n-1.60028085e-01 -3.35127056e-01 5.24665900e-02 -4.36067656e-02]]',\n", + " 'My duties Independently drive enrichment and harmonization of available data on resources through a combination of available system data and interviews with key stakeholders Create estimation of current and future resources volume and cost structures for all ongoing key IT projects Review and suggest improvements to current external hiring process to ensure proper information flow Create executive-level presentation on final findings My qualifications Rigorous analytical and conceptual thinking with an entrepreneurial mindset and advanced knowledge of MS-Office, particularly Excel Academic degree in Business Administration, Engineering, Science, or equivalent education (UNI/FH) Consulting or project management background Able to adapt quickly to new topics and stakeholders Able to interact professionally and independently with various internal stakeholders on different hierarchy levels Strong written and verbal communication skills in English and German My benefits Interesting project in an international company About Hays IT specialists hold all the cards: for its customers in industry and the public sector, Hays is looking for motivated employees who like looking at the bigger picture and growing with new challenges. We make sure that you benefit from our many years of experience in IT recruitment and will find you the right role to suit your skills and interests – all completely free of charge to you. Register with us and reap the benefits of job offers that are both interesting and relevant to your skills and experience. My contact at Hays My contact person Nicoletta Marciello Reference number 447367/1 Contact E-Mail: nicoletta.marciello@hays.ch',\n", + " '[\"Verbal Communication Skills\", \"Adaptability\", \"Professionalism\", \"Business Administration\", \"Presentations\", \"Consulting\"]',\n", + " '[\"Data Processing Systems\", \"Estimators\", \"Conceptualization\", \"Employee Motivation\", \"Resourcing\", \"Project Management\", \"Personalization\", \"Interactivity\", \"E (Programming Language)\", \"Levelling\", \"Analytics\", \"Cost Structures\", \"Industrialization\", \"Finalization\"]',\n", + " \"['English', 'Icelandic']\"],\n", + " ['109',\n", + " 'data scientist (analytics)',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.starmind.ai',\n", + " '[[-2.10179746e-01 1.94211572e-01 4.47810352e-01 7.11169317e-02\\n4.75101680e-01 -1.05349049e-01 1.71992742e-02 3.98088157e-01\\n-2.30169017e-02 -5.11718750e-01 7.56235421e-02 -2.83988595e-01\\n-1.85230911e-01 1.26160175e-01 2.60654427e-02 3.76901388e-01\\n2.39219233e-01 1.66433752e-01 -1.64665177e-01 4.03719902e-01\\n6.82031959e-02 -1.23662595e-02 4.69312072e-04 7.99202323e-01\\n4.52678859e-01 -5.14311492e-02 -5.81164770e-02 4.51204516e-02\\n-1.91704780e-01 -2.37781882e-01 4.67107028e-01 1.29429162e-01\\n-1.99123085e-01 -4.70910579e-01 -3.30480784e-02 5.50191179e-02\\n-2.50130266e-01 -8.57802406e-02 -5.99808469e-02 1.74275488e-01\\n-5.78484654e-01 -1.90715224e-01 -1.04086816e-01 8.43295828e-02\\n-2.80406743e-01 -3.33820581e-01 6.04574196e-02 2.06429362e-02\\n2.40011171e-01 7.22111315e-02 -5.37037671e-01 3.08836520e-01\\n-2.53518373e-01 -2.28790194e-01 2.30259091e-01 6.09373450e-01\\n6.41611144e-02 -3.96829188e-01 -5.92023313e-01 -2.99331665e-01\\n1.26928598e-01 -2.16440961e-01 5.64881526e-02 -4.84487444e-01\\n3.02383959e-01 4.54939082e-02 1.68502033e-01 2.86692649e-01\\n-7.07299292e-01 -1.54409632e-02 -2.36068189e-01 -8.47047567e-02\\n-4.60173845e-01 -4.59526964e-02 -3.45182002e-01 -2.48257481e-02\\n-1.54969990e-01 4.45691019e-01 7.67012537e-02 9.96287912e-03\\n-1.86111555e-01 3.12287122e-01 -3.07298243e-01 4.16275740e-01\\n1.97299033e-01 2.38001123e-01 1.79564059e-01 3.68592858e-01\\n-4.59829003e-01 4.30814475e-01 8.08612332e-02 -3.01364750e-01\\n3.06849778e-01 2.17004538e-01 4.63233650e-01 -2.33492181e-02\\n2.48216003e-01 6.17225543e-02 -3.62661004e-01 4.80409831e-01\\n3.23345959e-01 -4.47050422e-01 7.52894059e-02 -2.52340853e-01\\n1.33517101e-01 -4.06849869e-02 1.21368274e-01 1.29612103e-01\\n-2.82538176e-01 4.16292667e-01 2.06427872e-01 -1.66058794e-01\\n-1.18123874e-01 -3.88204098e-01 -2.27980241e-02 -9.65153519e-03\\n1.14265755e-01 9.73291248e-02 1.85215503e-01 7.00136125e-02\\n2.59798765e-01 1.67647064e-01 1.60188615e-01 8.25629354e-01\\n-9.63142812e-02 2.89463867e-02 -2.09348053e-01 2.80466080e-01\\n1.89862311e-01 -3.49973232e-01 3.00333560e-01 2.63654202e-01\\n5.76562509e-02 -1.60088286e-01 -2.74979770e-01 3.48088205e-01\\n-1.37138873e-01 -1.65909871e-01 -3.56268048e-01 2.07551032e-01\\n2.50931025e-01 -3.54777217e-01 7.02439666e-01 1.09080330e-01\\n2.14200258e-01 -1.49468314e-02 5.35254218e-02 -2.13143051e-01\\n-1.21867314e-01 1.56842902e-01 5.52795045e-02 1.73762649e-01\\n-2.93830097e-01 -1.87693939e-01 -1.30972311e-01 5.32020442e-02\\n-5.78639627e-01 1.16341837e-01 -1.43634155e-04 -1.13525558e-02\\n1.67789310e-01 -5.14701083e-02 -3.08998555e-01 7.22464696e-02\\n-1.95161492e-01 -1.12387687e-01 1.67239934e-01 4.42371845e-01\\n-1.58010542e-01 2.87146419e-01 2.40565613e-02 -8.20622593e-02\\n7.88658977e-01 2.06482381e-01 2.10094750e-01 4.71047871e-03\\n3.19060683e-01 9.82624292e-03 1.50462583e-01 2.64285922e-01\\n-7.66696811e-01 2.24359229e-01 -9.21086743e-02 -2.98248351e-01\\n1.69284493e-01 -5.46119586e-02 3.13757896e-01 -2.64960140e-01\\n1.08908117e-01 -1.23104624e-01 -3.11451107e-01 -2.40551606e-01\\n-3.41877222e-01 -1.28749665e-02 3.58161598e-01 -4.83628213e-01\\n-1.18165538e-01 1.74724907e-01 -4.99271095e-01 -1.72453731e-01\\n1.00684166e-01 7.62574077e-02 1.35376096e-01 1.17276490e-01\\n-1.45077333e-01 -6.31760240e-01 -2.76954491e-02 -3.99203956e-01\\n-4.77119029e-01 6.05513379e-02 -4.18557227e-01 3.05402398e-01\\n7.10128322e-02 -1.20502442e-01 -1.78107440e-01 2.30716959e-01\\n-2.54188061e-01 8.04420337e-02 1.49276182e-02 4.55989689e-02\\n1.75669566e-01 7.05859736e-02 -3.80026639e-01 3.31154436e-01\\n-8.17083046e-02 6.78580821e-01 8.06134045e-02 -7.87013173e-01\\n5.94534278e-01 3.05935383e-01 -7.68897533e-02 -4.81723517e-01\\n5.56069195e-01 -2.29369015e-01 -1.89763397e-01 2.91056968e-02\\n-3.97436827e-01 -4.08761621e-01 2.73921907e-01 -5.71240149e-02\\n-2.05789596e-01 4.73918676e-01 1.10384524e-01 1.47889242e-01\\n2.53278315e-01 -3.11583638e-01 -1.28919750e-01 1.26212656e-01\\n-6.04721084e-02 -2.50511438e-01 -5.87294340e-01 -7.72306025e-02\\n-1.99988768e-01 -3.08492422e-01 -6.03672080e-02 -3.58885109e-01\\n-1.89634860e-01 -3.80856961e-01 -2.33501524e-01 3.06740940e-01\\n2.92243481e-01 8.06134567e-02 -1.22002319e-01 6.37357235e-02\\n2.66681202e-02 -7.78093159e-01 -2.43456531e-02 8.75557885e-02\\n5.14803529e-01 1.88636243e-01 2.23282859e-01 -7.33380467e-02\\n1.30144402e-01 6.51920974e-01 -1.97757870e-01 -3.17990124e-01\\n1.66064978e-01 3.08942735e-01 -2.14497242e-02 -1.34855613e-01\\n7.25394785e-02 4.26286757e-01 -3.86969805e-01 8.80723000e-02\\n4.14319038e-02 -2.09634185e-01 4.36686635e-01 -4.37591597e-02\\n-3.27730954e-01 -1.15854472e-01 -1.94023311e-01 9.71607342e-02\\n-5.63966274e-01 -3.78041863e-01 5.32606244e-01 2.39405975e-01\\n2.10919052e-01 5.64445630e-02 3.23486105e-02 -2.33842209e-02\\n-2.35300094e-01 -3.13792646e-01 3.14882666e-01 1.14036284e-01\\n9.17684957e-02 1.97435349e-01 3.54253761e-02 -6.28795326e-01\\n-3.45707703e+00 -1.40250266e-01 2.66815454e-01 -1.74149483e-01\\n1.18733853e-01 -2.24343985e-02 4.15387098e-03 -1.41916215e-01\\n-3.16568702e-01 7.11792558e-02 -1.43641040e-01 -2.30840474e-01\\n5.55182472e-02 2.49967009e-01 1.21269159e-01 1.39162913e-01\\n2.33872563e-01 -1.97353989e-01 -9.31975469e-02 2.96579003e-01\\n-1.92320481e-01 -5.83225429e-01 1.63121238e-01 -1.32989911e-02\\n1.93724096e-01 2.93803692e-01 -1.54656455e-01 -2.48165220e-01\\n-2.07820937e-01 -2.17830285e-01 6.53106123e-02 -2.76642561e-01\\n-1.56589165e-01 3.15363616e-01 2.55629003e-01 4.53668274e-02\\n5.58210015e-02 -3.89792979e-01 -1.80715233e-01 -4.64159369e-01\\n3.54249813e-02 -5.17889500e-01 1.66600384e-02 -1.99917495e-01\\n8.24899256e-01 -2.76604742e-01 1.46714419e-01 9.83523726e-02\\n2.15099514e-01 4.38738987e-02 1.14830293e-01 6.81909323e-02\\n-1.61824286e-01 -2.23032728e-01 -1.95522845e-01 -1.36374190e-01\\n6.10514045e-01 3.66834551e-01 -3.70142311e-02 -1.12815261e-01\\n1.70202836e-01 -2.26860926e-01 -4.04349864e-01 -2.30926380e-01\\n-9.46606845e-02 -2.99577475e-01 -5.26724339e-01 -3.45891416e-01\\n-1.07495070e-01 -1.42220378e-01 -1.62838548e-01 5.81643462e-01\\n-4.00863796e-01 -3.24613065e-01 -1.02602258e-01 -4.29318726e-01\\n2.85477668e-01 -2.08131433e-01 -2.74303518e-02 -1.73406973e-01\\n-3.50050002e-01 -5.66657543e-01 -2.20690109e-02 -7.50655681e-02\\n-1.60913914e-01 -4.17465508e-01 1.39559964e-02 -7.89035857e-02\\n-2.75966078e-01 -5.95266819e-01 3.95969659e-01 8.97488445e-02\\n2.76108086e-01 2.31478781e-01 3.34949255e-01 2.43235826e-02\\n3.84296954e-01 -3.48085389e-02 -1.04335777e-01 -2.52733678e-01\\n7.90352970e-02 6.24209642e-05 4.70604599e-01 -3.00321668e-01\\n-3.01844254e-02 7.38041550e-02 -2.16567382e-01 6.17171451e-03\\n3.73950481e-01 -5.70871271e-02 3.21425423e-02 -9.31534469e-02\\n3.58094007e-01 -2.15443060e-01 -9.59355980e-02 1.39634430e-01\\n1.64284959e-01 5.48558414e-01 2.22381204e-04 -4.10339385e-01\\n-5.49609214e-02 5.39321661e-01 -1.71384424e-01 4.04147245e-02\\n-2.52790809e-01 6.71408698e-03 -1.73354775e-01 3.31684709e-01\\n2.29939688e-02 -2.67501891e-01 -1.50031552e-01 -1.64433479e-01\\n-1.29732117e-01 3.56378138e-01 2.89455205e-01 -9.87644494e-03\\n5.33621423e-02 -3.33533257e-01 -1.46737382e-01 2.02087820e-01\\n2.87780106e-01 4.85582888e-01 1.42497241e-01 -2.30159491e-01\\n-1.54986531e-01 3.27715755e-01 -3.05212103e-02 6.83273375e-02\\n-2.77411401e-01 9.84354913e-02 -5.60426474e-01 -2.45150685e-01\\n-3.40586960e-01 -4.57471818e-01 3.09908420e-01 2.96390802e-01\\n1.93297327e-01 -2.79567353e-02 1.68242715e-02 -4.84814733e-01\\n2.53559619e-01 2.29311198e-01 8.67401734e-02 9.65577886e-02\\n-1.83367599e-02 4.81751442e-01 -1.77990459e-02 -1.51028335e-01\\n-6.13336265e-02 4.96961474e-02 -1.62863940e-01 -1.28857881e-01\\n1.36013746e-01 -5.56048393e-01 -1.21822193e-01 4.01461422e-01\\n1.78361565e-01 -2.41204500e-01 -3.50371778e-01 2.38098100e-01\\n-7.46901482e-02 -1.38120472e-01 -3.01481009e-01 -7.78522938e-02\\n3.64065111e-01 6.05226010e-02 2.70697415e-01 -3.44998896e-01\\n-1.00081660e-01 3.53457332e-02 -1.76378191e-01 4.54855680e-01\\n-2.79353037e-02 -6.55786097e-02 -2.75551766e-01 -1.15903333e-01\\n3.84312302e-01 -1.62750870e-01 -7.71391690e-02 2.01012418e-02\\n1.44687697e-01 -2.52256334e-01 -4.08395171e-01 5.50485030e-02\\n-2.44182274e-02 -2.89785624e-01 -4.54139113e-02 2.05413848e-01\\n3.20607126e-02 1.79573059e-01 -6.64706588e-01 -2.79706538e-01\\n-3.47172827e-01 -1.57855153e-01 1.35471314e-01 -3.32170874e-01\\n1.11616030e-02 -1.51936859e-01 -5.85460424e-01 2.02037826e-01\\n-2.33857602e-01 -1.67000219e-01 1.52982950e-01 1.88255444e-01\\n-2.88002372e-01 -2.15857163e-01 7.07886815e-02 3.00652683e-01\\n-3.01800817e-01 -3.06582063e-01 3.27955782e-02 -9.49103117e-01\\n1.51237726e-01 1.06959537e-01 -2.73427993e-01 1.29867047e-01\\n-1.25954658e-01 -5.67539513e-01 -2.70187901e-03 -4.66065466e-01\\n-7.62172639e-02 4.26074117e-03 -2.75106043e-01 -2.68526882e-01\\n1.25605613e-01 -3.63534875e-02 -3.38201106e-01 5.90385437e-01\\n-2.39713579e-01 2.97159076e-01 -2.00981051e-01 6.32197931e-02\\n-4.05335166e-02 -2.06939816e-01 4.79787141e-02 -3.77410114e-01\\n-4.50367928e-01 -2.79206514e-01 -3.24430555e-01 -2.88720042e-01\\n7.29513168e-02 -4.49980557e-01 -9.38795656e-02 1.27719730e-01\\n3.08707356e-01 3.52661163e-02 -6.69995993e-02 -3.36333185e-01\\n1.20317079e-01 -6.10910594e-01 -1.00885108e-02 -3.98753732e-02\\n-1.88447028e-01 -6.01781756e-02 1.39500916e-01 6.99954331e-02\\n2.14711025e-01 -1.92881435e-01 2.83252746e-01 -5.04460454e-01\\n-1.41100675e-01 6.52415305e-03 6.14316985e-02 -1.26327246e-01\\n1.57054693e-01 -5.10943055e-01 3.32886241e-02 4.04096216e-01\\n1.84172601e-01 7.86176044e-03 1.84053227e-01 -9.64846089e-02\\n1.38454735e-02 3.60264897e-01 -2.45273083e-01 7.34435469e-02\\n7.05817223e-01 1.05272770e-01 1.81264430e-01 1.20723128e-01\\n1.86774805e-01 2.46158153e-01 5.45635581e-01 4.24904302e-02\\n-7.89920539e-02 2.18962252e-01 3.06327436e-02 -4.10098195e-01\\n-1.86287947e-02 4.25301977e-02 -2.49770403e-01 -4.11494434e-01\\n6.35590732e-01 4.15606707e-01 -5.70702791e-01 -1.08167760e-01\\n-1.22683778e-01 -8.49220827e-02 2.85244644e-01 -3.27986740e-02\\n-9.70615149e-02 -2.50389948e-02 4.42076862e-01 -1.58618227e-01\\n1.66108638e-01 4.65281546e-01 -1.79365739e-01 -2.17780143e-01\\n-8.96031857e-02 2.29684085e-01 2.10076999e-02 6.10326648e-01\\n-2.15045214e-01 3.84999216e-01 -4.10412960e-02 3.08759734e-02\\n-7.95201883e-02 2.24118471e-01 2.07123190e-01 1.27009720e-01\\n3.00675213e-01 -1.00370824e-01 4.99070823e-01 4.32720244e-01\\n1.68665707e-01 4.49966490e-01 3.20463508e-01 1.01850949e-01\\n3.92724097e-01 5.18780708e-01 3.37164134e-01 1.85537606e-01\\n-2.94519439e-02 1.85228959e-01 1.93825006e-01 -4.55904901e-02\\n4.29522157e-01 3.75671625e-01 5.81753589e-02 8.86701941e-01\\n3.31846833e-01 4.05257344e-01 7.13368833e-01 -6.92930818e-01\\n-4.08669174e-01 2.39533588e-01 5.05235851e-01 -3.08072239e-01\\n3.77252102e-02 1.59508780e-01 -1.69029504e-01 2.58641511e-01\\n-4.29258943e-01 -2.63436735e-01 -1.86553225e-02 2.78958142e-01\\n-5.74850589e-02 -2.66052961e-01 -2.77419329e-01 1.05503559e-01\\n-2.24513933e-02 4.01349887e-02 -4.79153514e-01 -1.60319269e-01\\n-2.52722114e-01 -1.18680969e-01 -1.19232081e-01 -9.07109380e-02\\n3.99960987e-02 -3.42873454e-01 1.81955472e-02 -3.69969048e-02\\n2.98058689e-01 -1.79092824e-01 -1.20981731e-01 -1.38574302e-01\\n2.70347595e-01 2.77954906e-01 4.83906150e-01 -1.87783390e-02\\n9.00344551e-02 -2.30700612e-01 -2.22805068e-01 1.74296543e-01\\n1.16220593e-01 2.99101267e-02 1.43809114e-02 1.35847509e-01\\n-1.87098280e-01 -2.41374403e-01 2.00182676e-01 3.00834507e-01\\n-4.77595150e-01 -4.74525802e-02 -1.81763530e-01 1.72846913e-01\\n1.10419430e-01 2.42714167e-01 -1.92542121e-01 1.40764371e-01\\n-2.17416227e-01 -3.97935569e-01 2.40891814e-01 -1.31820142e-01\\n-9.15689915e-02 1.11068368e-01 3.31274390e-01 1.43759787e-01\\n-2.63186932e-01 -4.85299528e-03 -1.56927884e-01 2.31594503e-01\\n-3.17130610e-02 2.27894485e-01 -1.29941285e-01 -4.01979715e-01\\n-1.83858126e-01 1.13327384e-01 -1.76448286e-01 1.18976891e-01\\n1.83977336e-02 3.92277896e-01 1.29125327e-01 2.79327072e-02\\n5.19391060e-01 1.68753807e-02 -2.69162893e-01 -2.31084645e-01\\n-1.80346817e-01 -1.44831434e-01 -1.77088588e-01 2.68146582e-02\\n1.62462294e-01 -3.55977535e-01 -8.23326260e-02 -1.59328684e-01\\n-1.95772126e-02 -3.44549417e-01 7.99285024e-02 -3.76709290e-02]]',\n", + " \"At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology's computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people's advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from AirBnB, Twitter, SalesForce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! What You Will Do You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Who You Are You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization (for example using matplotlib or Grafana). You are always curious to try out new tools and libraries for the analysis and visualization of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. The Bounty A dynamic, young company where input is welcomed and acted upon High level of personal responsibility and independence A challenging and exciting mission within an innovative and multi-cultural environment The opportunity to work with some of the smartest and most innovative people in the market If this sounds like you, let’s solve the riddle and apply (written in English or German) - We’re very excited to meet you.\",\n", + " '[\"Communications\", \"Writing\", \"Proactivity\", \"Innovation\"]',\n", + " '[\"MySQL\", \"NoSQL\", \"Matplotlib\", \"Accessioning\", \"Advising\", \"Corporate Communications\", \"Tooling\", \"Agility\", \"Acting\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Levelling\", \"Data Visualization\", \"Machine Learning Methods\", \"Personalization\", \"Machine Learning Algorithms\", \"Scalability\", \"Human Intelligence\", \"Electronic Data Processing\", \"Humanism\", \"Grafana\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\"]',\n", + " \"['English', 'Latvian', 'Kikuyu']\"],\n", + " ['75',\n", + " 'software back-end engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.71552032e-01 2.91270584e-01 3.82932365e-01 -6.69109868e-03\\n3.55228841e-01 -2.36295044e-01 2.26878119e-03 3.73446047e-01\\n-7.57382885e-02 -2.04707831e-01 -3.22159790e-02 -2.29785040e-01\\n-3.30118656e-01 -6.83388487e-02 1.30850390e-01 4.15461659e-01\\n2.63428152e-01 1.37489960e-01 -2.57047325e-01 3.84930313e-01\\n2.22024724e-01 -7.94562511e-03 -2.06433833e-01 6.13091886e-01\\n4.15168166e-01 6.67720009e-03 -1.12058461e-01 7.38009950e-03\\n-3.43387604e-01 -2.87937373e-01 3.34174991e-01 7.63941417e-03\\n-1.57293066e-01 -3.32568496e-01 5.75951636e-02 9.28215086e-02\\n-1.49799198e-01 8.00929070e-02 1.27713457e-01 1.74960107e-01\\n-3.93162608e-01 -3.42083246e-01 1.08727805e-01 8.67118537e-02\\n-1.47588775e-01 -1.52126253e-01 2.10592359e-01 9.10648331e-02\\n-2.10765786e-02 -3.92282307e-02 -6.59780800e-01 3.43442112e-01\\n-8.31183717e-02 -2.07812771e-01 2.16222495e-01 4.91686881e-01\\n4.11508940e-02 -5.77887833e-01 -3.88974547e-01 -2.97275513e-01\\n2.31454279e-02 -1.32889286e-01 3.95712890e-02 -1.05743386e-01\\n3.91338438e-01 -1.82317849e-02 -4.78573702e-02 4.16116089e-01\\n-8.47215474e-01 -6.76593408e-02 -1.85629666e-01 -4.92557592e-04\\n-4.70055312e-01 5.79526927e-03 -2.32034683e-01 -1.14024647e-01\\n-3.29488441e-02 3.36776853e-01 -1.81190353e-02 2.23107822e-02\\n-1.55476764e-01 3.64888161e-01 -2.63778642e-02 2.41699785e-01\\n4.27926391e-01 1.31522655e-01 2.00191230e-01 2.82205403e-01\\n-3.44663799e-01 3.55268836e-01 1.06206812e-01 -2.61881053e-01\\n2.20112368e-01 6.26756251e-02 5.29973447e-01 6.86371550e-02\\n-5.19335903e-02 2.03620479e-01 -2.35724568e-01 2.06270605e-01\\n4.91508283e-02 -4.36996609e-01 1.66943334e-02 4.89583462e-02\\n-2.12178469e-01 5.97290578e-04 -6.27001747e-02 2.48238236e-01\\n-2.20404372e-01 4.37218487e-01 3.19672555e-01 -1.38408870e-01\\n-3.07972301e-02 -5.30560970e-01 -1.10544503e-01 -5.11436462e-02\\n-1.35645494e-01 1.19996652e-01 2.81457543e-01 4.55717333e-02\\n2.29059979e-01 6.89450949e-02 1.90196216e-01 8.30775797e-01\\n-4.81531629e-03 1.43571213e-01 -1.09598301e-01 3.17951143e-01\\n2.34613374e-01 -2.92001992e-01 2.36804947e-01 3.17300707e-01\\n1.80220842e-01 -1.24423750e-01 -2.22232983e-01 1.42850056e-01\\n-2.20663503e-01 -1.41652822e-01 -3.27037811e-01 2.30795220e-02\\n-2.36305907e-01 -3.40515554e-01 4.23087716e-01 1.79520994e-01\\n3.51594478e-01 5.37443794e-02 9.51535162e-03 -1.89058054e-02\\n-1.16214804e-01 4.00311351e-01 -5.94490506e-02 3.61276656e-01\\n-3.22990745e-01 -1.89081177e-01 -1.81312338e-01 2.26882532e-01\\n-3.92700918e-02 6.78772926e-02 -8.64418522e-02 -1.64703727e-01\\n3.33705008e-01 6.17516739e-03 -3.46669644e-01 3.09836566e-01\\n4.64579090e-03 -2.21798107e-01 -2.48315468e-01 2.84495652e-01\\n1.46735425e-03 1.85809314e-01 4.42082658e-02 -2.35127211e-01\\n5.95170021e-01 2.13921338e-01 1.51697561e-01 -1.10353552e-01\\n3.08895916e-01 -2.26111159e-01 3.89481217e-01 1.00061595e-01\\n-5.22963941e-01 3.20854336e-01 3.63583281e-03 -9.48745906e-02\\n-6.19910732e-02 -6.23289542e-03 3.94909829e-01 -4.06044781e-01\\n5.53050917e-03 -1.39790267e-01 -4.68294382e-01 -2.78005540e-01\\n-4.05888945e-01 8.81420448e-02 4.97142404e-01 -2.70147741e-01\\n-1.03628926e-01 2.27419496e-01 -4.37061489e-01 -1.60997108e-01\\n2.11786717e-01 5.25522418e-02 3.59879546e-02 5.48441522e-02\\n-1.07693158e-01 -5.52978516e-01 -3.83146703e-02 -4.12344992e-01\\n-4.95637387e-01 -3.90525423e-02 -2.60240853e-01 2.45997369e-01\\n6.05285913e-02 4.61989269e-02 -2.68846571e-01 1.62094191e-01\\n-3.56144667e-01 -4.94657271e-02 1.77361831e-01 8.39198604e-02\\n7.48449983e-03 -4.85855900e-02 -3.68663698e-01 3.33473414e-01\\n-3.12864661e-01 6.86015606e-01 1.62761614e-01 -8.00490975e-01\\n5.09792209e-01 2.72990912e-01 9.67471153e-02 -4.08024341e-01\\n3.85270149e-01 -3.59974176e-01 2.11722385e-02 1.32646307e-01\\n-2.51146883e-01 -2.08991200e-01 3.66078168e-01 -2.22752526e-01\\n-2.28856921e-01 5.99907577e-01 1.60703599e-01 -1.00016877e-01\\n2.43155837e-01 -3.12022746e-01 4.54199240e-02 7.11110905e-02\\n-4.94847409e-02 -2.09228575e-01 -3.13219726e-01 9.92925763e-02\\n-5.45884483e-02 -5.07564366e-01 -1.58324882e-01 -2.00389817e-01\\n-2.44116247e-01 -4.81824845e-01 -2.66392827e-01 4.89725292e-01\\n1.97891027e-01 1.73390254e-01 2.32866406e-02 2.11820845e-02\\n-2.95376331e-02 -6.54248714e-01 -3.60433422e-02 -1.55964505e-03\\n5.41053236e-01 2.92158574e-01 9.50837657e-02 -2.00500414e-01\\n5.22423442e-03 5.12299895e-01 -3.55726033e-01 -4.05372113e-01\\n1.20549180e-01 1.05580322e-01 -7.22159371e-02 -2.10635707e-01\\n1.00136381e-02 4.09225345e-01 -1.87066749e-01 1.82405710e-02\\n-2.51781464e-01 -4.46655117e-02 3.96122158e-01 -3.20786759e-02\\n-3.65153044e-01 -1.97646201e-01 2.50058211e-02 3.15762997e-01\\n-4.66854125e-01 -1.97033182e-01 5.36266327e-01 3.61193776e-01\\n2.29305580e-01 8.84390697e-02 1.61574215e-01 -6.51850998e-02\\n-1.32268608e-01 -3.56735647e-01 1.42277256e-01 1.72209576e-01\\n9.17599201e-02 1.47943720e-02 -1.60055235e-01 -6.15658522e-01\\n-3.21531630e+00 -2.12728217e-01 1.22804336e-01 -2.98083454e-01\\n2.13541210e-01 -3.50307524e-02 -9.24410447e-02 -4.93167713e-02\\n-2.67344326e-01 1.39072552e-01 -2.37250715e-01 -1.90550774e-01\\n1.06130071e-01 2.89520502e-01 1.82777897e-01 2.16425985e-01\\n1.48011312e-01 -3.38041574e-01 -1.27020434e-01 4.07761693e-01\\n-3.02785262e-02 -5.47685266e-01 1.55806541e-01 -2.80483644e-02\\n2.99305737e-01 2.25676537e-01 -3.96532953e-01 -1.09443136e-01\\n-1.26231849e-01 -2.47124657e-01 9.73018538e-03 -2.28223816e-01\\n-1.61810681e-01 3.40885431e-01 2.88150832e-03 -8.12282115e-02\\n6.85799941e-02 -3.54570776e-01 -1.27157778e-01 -4.48255777e-01\\n3.03039718e-02 -5.81036568e-01 1.05025560e-01 -2.21932739e-01\\n6.88779414e-01 -2.38863349e-01 1.40365764e-01 1.66100726e-01\\n1.89708382e-01 1.54716283e-01 -1.99603364e-01 3.39167267e-02\\n-3.83035690e-01 -2.34601557e-01 -6.61461800e-02 -1.97902307e-01\\n4.41991895e-01 5.26856661e-01 -1.59432009e-01 -1.15105910e-02\\n6.83370307e-02 -4.25648957e-01 -3.10858637e-01 -4.61101264e-01\\n-1.10442527e-01 -1.97666124e-01 -7.28578150e-01 -4.36597466e-01\\n-1.48746774e-01 -1.11884661e-01 -1.67722151e-01 5.20081401e-01\\n-4.28153574e-01 -3.76730144e-01 1.77470669e-01 -6.19699836e-01\\n2.83889603e-02 -2.09998652e-01 1.58616647e-01 -1.32310525e-01\\n-2.86271602e-01 -5.62087953e-01 1.07411735e-01 -6.34800494e-02\\n-2.95787632e-01 -2.19763026e-01 -2.46233828e-02 -2.41134852e-01\\n-2.13767067e-01 -4.15614277e-01 4.44184095e-01 3.52122486e-02\\n3.48372221e-01 1.15963683e-01 2.33315155e-01 1.90185934e-01\\n3.27564895e-01 -1.04253747e-01 1.51733905e-01 -3.84352356e-01\\n1.77130848e-01 5.07899560e-02 5.77076316e-01 -3.53925884e-01\\n3.07852533e-02 1.02570504e-01 -3.12118649e-01 -6.47103712e-02\\n4.78083432e-01 1.02319084e-01 -7.60655850e-02 -2.71291705e-04\\n3.63896132e-01 -4.82758850e-01 -2.48481452e-01 2.63567328e-01\\n5.22926860e-02 5.45598626e-01 -7.35057378e-03 -4.49981332e-01\\n-2.76595652e-01 4.24551576e-01 -7.38812685e-02 -7.87267014e-02\\n-9.80214626e-02 7.38268495e-02 -9.36382562e-02 1.02683939e-01\\n1.34772748e-01 -1.73409685e-01 -2.71898299e-01 -5.14883772e-02\\n-1.07444510e-01 1.02417774e-01 2.56944835e-01 -1.68367010e-02\\n-7.96495080e-02 -2.56493777e-01 -1.84047312e-01 9.48862806e-02\\n1.70557544e-01 2.59262651e-01 1.08699098e-01 -2.05751419e-01\\n4.59911749e-02 2.83028573e-01 -9.88159180e-02 1.23980112e-01\\n-2.19104975e-01 6.04601689e-02 -5.67805111e-01 -9.60743502e-02\\n-1.41311049e-01 -3.29733670e-01 1.67957515e-01 2.87787825e-01\\n1.22639768e-01 7.49320388e-02 1.90897379e-02 -5.88104963e-01\\n4.85986233e-01 3.86591405e-02 1.84442759e-01 1.57832965e-01\\n8.49223733e-02 3.86732548e-01 5.59855625e-02 -2.46757865e-02\\n-2.88682759e-01 -7.09388852e-02 -2.12403029e-01 -2.41041854e-01\\n8.88784826e-02 -3.76955807e-01 -1.01718135e-01 4.93554741e-01\\n1.21331379e-01 -2.55023152e-01 -2.16292471e-01 3.44459981e-01\\n1.91898480e-01 -2.48215914e-01 -1.69099540e-01 -2.30740774e-02\\n1.64175734e-01 8.49669054e-02 2.47845650e-01 -2.99475521e-01\\n-1.13549232e-01 -3.72391082e-02 -9.62547436e-02 4.02917773e-01\\n1.77824914e-01 -5.58110476e-02 -2.50293285e-01 -1.96637750e-01\\n4.55981255e-01 -5.52653037e-02 -9.05464590e-02 -1.80311352e-01\\n1.19824909e-01 -1.72574267e-01 -4.25881386e-01 -7.99653679e-03\\n-2.82678157e-02 -1.03793480e-01 8.86163563e-02 -8.37067794e-03\\n4.46492061e-02 5.08746058e-02 -2.72957027e-01 -2.69796610e-01\\n-3.08599532e-01 -2.72410512e-01 1.09905988e-01 -3.47291589e-01\\n-5.94342500e-02 1.25488238e-02 -4.83871609e-01 1.98036402e-01\\n-4.84319150e-01 -3.25461216e-02 8.49067494e-02 1.88526034e-01\\n-4.10423994e-01 -8.27222466e-02 5.83636202e-02 1.80127323e-01\\n-3.97754490e-01 -3.04423094e-01 7.42776021e-02 -8.80911291e-01\\n2.44409680e-01 1.25364274e-01 -3.83193344e-02 -6.24485426e-02\\n1.27528906e-02 -6.39937639e-01 1.18093662e-01 -4.30548936e-01\\n1.36846855e-01 2.44638212e-02 -1.14779845e-01 -3.13872814e-01\\n9.81192812e-02 -3.01212609e-01 -3.76202196e-01 3.32452834e-01\\n-4.69170123e-01 3.62234920e-01 7.22761452e-02 3.16124111e-02\\n1.70641560e-02 -3.60128194e-01 1.34400517e-01 -3.56733531e-01\\n-4.46172118e-01 -2.00980604e-01 -3.27178180e-01 -1.92323342e-01\\n-2.00275946e-02 -1.21833265e-01 -2.67280459e-01 1.20325729e-01\\n2.30594710e-01 1.47440016e-01 -8.54876861e-02 -2.68745542e-01\\n1.25888065e-01 -4.56336677e-01 -9.20768827e-02 -2.98691243e-01\\n-3.92760225e-02 -7.81482235e-02 1.98152348e-01 -1.35454759e-01\\n-6.43529138e-03 -3.14422220e-01 4.48826969e-01 -3.90015244e-01\\n-2.53161818e-01 -5.69062717e-02 8.35730731e-02 -3.96893024e-02\\n7.21535310e-02 -6.21991098e-01 1.28632396e-01 3.00864995e-01\\n4.32584248e-02 8.93807262e-02 1.70158774e-01 4.39386666e-02\\n-1.15548633e-01 2.51294792e-01 -5.33888400e-01 7.29920790e-02\\n7.34216094e-01 1.88444138e-01 -4.53827903e-02 2.05532685e-01\\n1.80256173e-01 3.46677691e-01 6.25255048e-01 -1.58300735e-02\\n-6.36261851e-02 1.95396304e-01 -8.11186060e-03 -5.56946039e-01\\n-7.40337968e-02 -2.21901406e-02 -1.26143485e-01 -2.40240976e-01\\n6.87060058e-01 4.04825062e-01 -4.13822025e-01 -2.91439056e-01\\n3.61502692e-02 -9.95048881e-02 1.95578024e-01 -5.24000861e-02\\n4.81917225e-02 -1.43123582e-01 6.63339198e-01 2.29177531e-02\\n2.12729827e-01 5.21273911e-01 -2.16799572e-01 -3.60699326e-01\\n-1.31314471e-01 1.21853605e-01 1.46436349e-01 4.64680225e-01\\n-9.96639132e-02 1.42780274e-01 -1.70964241e-01 -9.87535343e-03\\n5.24808615e-02 3.65480453e-01 1.88426703e-01 5.98822944e-02\\n2.25514665e-01 2.62132864e-02 2.09612682e-01 4.40072298e-01\\n1.51625708e-01 5.62719107e-01 2.43154541e-01 9.69170108e-02\\n2.98865467e-01 5.84474385e-01 4.25144553e-01 1.06067978e-01\\n4.63227916e-04 1.30929381e-01 1.26784027e-01 -1.55534642e-02\\n5.67120492e-01 3.01957577e-01 3.11675012e-01 8.11192989e-01\\n3.56013745e-01 3.20000678e-01 8.16168189e-01 -6.44952953e-01\\n-4.14494336e-01 1.56656414e-01 5.79559267e-01 -8.77263844e-02\\n-1.00557365e-01 2.27869898e-01 -3.03167403e-01 2.77273148e-01\\n-4.44567323e-01 -4.58748937e-02 -7.66223716e-03 5.48736602e-02\\n1.57649234e-01 2.79718284e-02 -1.81998238e-01 1.28152013e-01\\n-1.78937778e-01 -2.04069078e-01 -3.17970604e-01 -1.29812643e-01\\n-2.28384390e-01 -8.92306194e-02 -3.68082039e-02 -1.11019917e-01\\n-1.62650570e-01 -4.25846338e-01 -1.39929235e-01 -6.24607392e-02\\n2.56200671e-01 -1.11240223e-01 -5.44522069e-02 -1.22756742e-01\\n1.21525697e-01 3.49149644e-01 5.09233117e-01 -7.22431093e-02\\n2.27792561e-03 -8.86761472e-02 -3.47578973e-01 9.58653316e-02\\n1.05713233e-02 5.99187315e-02 1.71711832e-01 3.97532582e-01\\n-3.25093776e-01 3.96073759e-02 7.60146305e-02 2.94799089e-01\\n-3.76254261e-01 -1.27146795e-01 -6.88758567e-02 2.37431064e-01\\n3.66044864e-02 1.65688723e-01 -2.88238704e-01 1.48570761e-01\\n-2.71678150e-01 -4.97985840e-01 3.86771530e-01 -8.33091810e-02\\n-2.14117393e-01 3.84571582e-01 2.27011263e-01 2.31966868e-01\\n-2.88752824e-01 -1.02611370e-01 3.28605585e-02 3.17585021e-01\\n3.31836864e-02 4.34862018e-01 -6.68492541e-02 -1.53409272e-01\\n-2.56073743e-01 3.44886363e-01 -1.47571176e-01 5.51983938e-02\\n-1.33935079e-01 3.75227064e-01 -6.68831393e-02 6.00299649e-02\\n2.49299124e-01 -3.56536247e-02 -2.53164083e-01 -2.66369313e-01\\n-3.13599885e-01 -2.52270013e-01 1.04922302e-01 8.08849111e-02\\n1.73435137e-01 -3.68906528e-01 -6.80530630e-03 -9.99413431e-02\\n-1.09519497e-01 -1.98148310e-01 -1.26212746e-01 1.66497573e-01]]',\n", + " 'Job Informationen Responsibilities: - Design and enhance an intuitive, easy-to-use API (used by our own front-end and by third-party applications) - Collaborate closely with fellow engineers, data scientists, and business people - Contribute your ideas to our product development and system architecture Requirements: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with web development, API design, and third-party integration - Advanced knowledge of relational databases - Some experience with the technologies we’re using is a plus: - Python, Django, Flask, SQLAlchemy, Pytest - PostgreSQL, PostGIS - JavaScript, Angular, HTML5, CSS3, Bootstrap - Git, Bitbucket, CircleCI - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Are comfortable working in English and German; you have a great read, good spoken command of it. Benötigte Skills Englisch JavaScript Angular HTML5 CSS3 Bootstrap PostgreSQL Python',\n", + " '[\"Collaboration\", \"Integration\"]',\n", + " '[\"Bitbucket\", \"Control Systems\", \"MSC Software\", \"Test-Driven Development (TDD)\", \"Agility\", \"Circleci\", \"API Design\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Data Engineering\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"HTML5\", \"Systems Architecture\", \"Web Development\", \"Flask (Web Framework)\", \"Software Engineering\", \"Django (Web Framework)\", \"Object-Oriented Programming (OOP)\", \"Bootstrap (Front-End Framework)\", \"JavaScript (Programming Language)\", \"SQLAlchemy\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Structures\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Relational Databases\", \"Algorithms\", \"Git Flow\", \"Application Programming Interface (API)\", \"Agile Product Development\"]',\n", + " \"['English', 'Sindhi', 'Panjabi']\"],\n", + " ['75',\n", + " 'software engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.31415814e-01 3.55438679e-01 4.90337342e-01 -8.28324631e-02\\n4.08656746e-01 -2.28473857e-01 1.64905354e-01 2.89817214e-01\\n-8.06796551e-02 -2.90651083e-01 -6.01219200e-02 -3.21930230e-01\\n-1.71051055e-01 1.57934474e-03 1.58764392e-01 3.11463714e-01\\n2.03134492e-01 7.47852325e-02 -1.82910338e-01 2.49574170e-01\\n-1.85994953e-02 1.70398671e-02 -2.73172185e-03 4.96231019e-01\\n4.56043839e-01 6.33839443e-02 -4.92315441e-02 1.41917884e-01\\n-2.73578554e-01 -2.19693109e-01 2.76706129e-01 9.42966267e-02\\n-4.16554436e-02 -2.30465025e-01 5.47328517e-02 4.45727445e-02\\n-1.98416874e-01 -6.13118112e-02 1.26664594e-01 1.02333128e-01\\n-2.85203815e-01 -2.79903561e-01 9.85285342e-02 7.73594975e-02\\n-2.62883574e-01 -9.22192484e-02 6.43516183e-02 7.73997903e-02\\n-5.94037436e-02 -5.53218089e-02 -6.20391309e-01 4.30479437e-01\\n-1.60187811e-01 -6.91809729e-02 1.69604540e-01 4.70809668e-01\\n8.13471153e-02 -5.75396836e-01 -2.73764551e-01 -2.10939556e-01\\n4.43500802e-02 -6.52804300e-02 -6.91867471e-02 -1.33449465e-01\\n5.23295224e-01 -1.62077650e-01 -7.07104206e-02 6.45963609e-01\\n-7.33069897e-01 -6.41661659e-02 -1.31368905e-01 -5.83291948e-02\\n-5.14248431e-01 4.29536141e-02 -2.32855946e-01 -9.87961367e-02\\n-1.28009841e-01 2.66723096e-01 1.87169209e-01 8.59651119e-02\\n-6.59100041e-02 2.42013633e-01 -9.32167992e-02 1.56416640e-01\\n4.82535094e-01 2.31315568e-01 1.11902177e-01 1.96482420e-01\\n-3.30107421e-01 3.88743639e-01 5.38037606e-02 -2.15849295e-01\\n1.59538239e-01 8.43525231e-02 5.33611000e-01 8.28831643e-02\\n-6.45163059e-02 1.83131546e-01 4.69793826e-02 1.76646158e-01\\n2.76406854e-01 -3.31466973e-01 -1.84831977e-01 5.34386039e-02\\n-2.13362500e-01 -4.30502333e-02 -1.08836656e-02 2.80898541e-01\\n-2.38715261e-01 2.31976271e-01 2.81219095e-01 -2.12865919e-01\\n1.61103848e-02 -5.38872719e-01 -1.63399458e-01 -1.77107632e-01\\n-7.92649761e-02 2.40156740e-01 2.65709639e-01 1.64623424e-01\\n1.23025201e-01 7.59880990e-02 1.41159177e-01 1.09186566e+00\\n-4.23491634e-02 1.20910645e-01 -1.32135913e-01 3.88451397e-01\\n2.05933601e-01 -3.39386910e-01 3.04426163e-01 2.65843958e-01\\n9.74287316e-02 -2.24949285e-01 -1.84600502e-01 1.26444295e-01\\n-1.32029712e-01 -1.47475556e-01 -2.12800980e-01 4.87657264e-02\\n-3.98266077e-01 -3.59526366e-01 4.41962957e-01 1.19303279e-01\\n2.85502374e-01 -2.44071614e-03 5.02832383e-02 -1.45071633e-02\\n-2.00262085e-01 2.66406685e-01 -6.48943931e-02 2.72134244e-01\\n-4.11819637e-01 -1.59840092e-01 -2.30041102e-01 5.00476539e-01\\n1.33479774e-01 -1.61830299e-02 -6.40627295e-02 -9.69656035e-02\\n3.45848024e-01 8.71133134e-02 -4.22367811e-01 3.24953526e-01\\n-4.20422032e-02 -3.12215269e-01 -2.21154526e-01 1.68754563e-01\\n9.81383994e-02 1.39060989e-01 1.45446047e-01 -1.94811970e-01\\n3.25881213e-01 2.06114829e-01 2.84323562e-03 -1.43997014e-01\\n2.53726751e-01 -1.81069240e-01 1.92866072e-01 1.57162368e-01\\n-6.47062540e-01 2.61248022e-01 1.57020628e-01 -7.81705379e-02\\n9.03600082e-02 1.18944637e-01 3.60760331e-01 -3.34953964e-01\\n-6.09221905e-02 -2.26829156e-01 -4.14415747e-01 -3.29700023e-01\\n-3.35527539e-01 5.51868081e-02 4.76936638e-01 -4.92550045e-01\\n-1.73251837e-01 9.55596864e-02 -3.66254359e-01 -8.64324123e-02\\n1.87836036e-01 1.51263759e-01 1.11785345e-01 1.12373471e-01\\n-1.95818469e-01 -4.91502404e-01 -6.88915551e-02 -5.45381665e-01\\n-5.66609800e-01 -8.37996528e-02 -1.44619420e-01 1.60369813e-01\\n8.78336430e-02 4.90035526e-02 -1.36529669e-01 1.61304101e-01\\n-2.80040979e-01 6.81008026e-02 1.80800810e-01 1.39986798e-01\\n1.06516816e-01 -1.18087813e-01 -3.55532885e-01 1.91917837e-01\\n-2.65658677e-01 4.06081140e-01 2.89132982e-01 -8.47032607e-01\\n4.96825635e-01 2.86416620e-01 7.53534362e-02 -2.50986814e-01\\n3.28313738e-01 -3.29438061e-01 7.90545344e-02 9.76724848e-02\\n-2.49423206e-01 -2.09419727e-01 2.76912987e-01 -1.12126239e-01\\n-2.88388103e-01 4.87280905e-01 7.96865150e-02 -3.09223272e-02\\n3.69939893e-01 -3.50298792e-01 -6.73293620e-02 1.28214017e-01\\n-1.23087861e-01 -1.84010804e-01 -1.91569313e-01 8.06371942e-02\\n-1.09194793e-01 -3.99816960e-01 -1.30492255e-01 -4.18986291e-01\\n-2.47094899e-01 -3.19849789e-01 -2.44261846e-01 5.21175861e-01\\n1.50122464e-01 9.35015976e-02 1.84727728e-01 4.07323539e-02\\n-7.25444332e-02 -6.32194281e-01 7.73878470e-02 -1.18453138e-01\\n5.09964287e-01 3.57581109e-01 -2.69139605e-03 -1.81750432e-01\\n-3.29931416e-02 4.06918168e-01 -2.64841259e-01 -4.95774180e-01\\n6.58661127e-02 1.47624195e-01 -3.09743080e-02 -1.60064667e-01\\n-1.21044569e-01 4.27278161e-01 -1.13527767e-01 -3.40292640e-02\\n-1.37710840e-01 3.78358364e-03 3.50194037e-01 -9.53218937e-02\\n-3.20638955e-01 -1.35344729e-01 -2.40080524e-02 3.06903452e-01\\n-4.56624389e-01 -2.86236256e-01 6.13471329e-01 3.83743465e-01\\n4.43382598e-02 1.64185748e-01 2.26917133e-01 -6.48542419e-02\\n-2.32065141e-01 -2.52224237e-01 -5.35152946e-03 2.33439848e-01\\n-7.16817798e-03 -6.28362820e-02 -3.04502726e-01 -4.98127043e-01\\n-3.64702845e+00 -7.07966611e-02 6.81451336e-02 -4.15976346e-01\\n2.17551365e-01 -3.79207991e-02 3.53398919e-02 -5.53929135e-02\\n-1.72750890e-01 -6.23448752e-03 -2.51021117e-01 9.69212726e-02\\n5.30537516e-02 2.59790540e-01 6.11480996e-02 2.54652768e-01\\n1.96471676e-01 -2.12616831e-01 -7.95705691e-02 1.99128583e-01\\n-2.61164438e-02 -5.85420787e-01 7.02781454e-02 -6.97607249e-02\\n2.45127350e-01 1.86620131e-01 -3.63750994e-01 7.47657614e-03\\n-2.54858583e-01 -2.90211648e-01 1.67486429e-01 -3.40759397e-01\\n-5.79306260e-02 2.42522508e-01 1.04224317e-01 -1.07990824e-01\\n-5.69108268e-03 -1.55350000e-01 6.64158612e-02 -3.98107618e-01\\n1.37451468e-02 -4.51275378e-01 2.81253550e-02 -4.51808004e-03\\n6.45433903e-01 -4.60406929e-01 7.61987194e-02 1.61187649e-01\\n1.20994493e-01 1.45807564e-01 -8.19239486e-03 3.40240262e-02\\n-2.16473937e-01 -3.93456429e-01 -9.01395157e-02 -2.60845095e-01\\n4.52660710e-01 4.66383755e-01 -1.67026356e-01 -5.75658791e-02\\n8.82069580e-03 -3.55852067e-01 -4.03380752e-01 -4.74659145e-01\\n-2.65411139e-01 -8.25103745e-02 -9.10850286e-01 -6.16087556e-01\\n-2.01002494e-01 -1.32155418e-02 -3.16451430e-01 5.44719875e-01\\n-3.03473502e-01 -6.55448318e-01 8.18456784e-02 -6.01207852e-01\\n1.07818553e-02 -1.65816531e-01 2.27171764e-01 -2.60078281e-01\\n-3.10198724e-01 -4.15045410e-01 -5.22071868e-02 -1.23976506e-01\\n-1.75772056e-01 -4.10374105e-02 1.06516816e-01 -2.82056898e-01\\n-2.51997739e-01 -2.87774771e-01 3.64788890e-01 -2.62662880e-02\\n3.41698647e-01 1.85247600e-01 2.55811870e-01 3.49858075e-01\\n2.56213754e-01 -2.64781415e-02 2.18253836e-01 -3.63395125e-01\\n1.63659289e-01 4.89325151e-02 6.05133772e-01 -2.35734597e-01\\n2.22185388e-01 1.66757837e-01 -2.04870597e-01 -2.04522520e-01\\n4.21584189e-01 7.31333420e-02 -3.55900265e-02 -9.93076935e-02\\n3.17683429e-01 -4.86673176e-01 -2.88027942e-01 1.61163107e-01\\n2.15252098e-02 5.15725553e-01 1.22332960e-01 -4.42246169e-01\\n-1.87256858e-01 4.56645489e-01 2.29103528e-02 -2.85576522e-01\\n1.18565597e-01 2.14785770e-01 -1.57453701e-01 4.77845743e-02\\n7.76576325e-02 -2.07752287e-01 -2.72907972e-01 -1.75641075e-01\\n-8.09754431e-03 4.13907394e-02 2.49573320e-01 5.80187477e-02\\n-6.79470524e-02 -1.00879274e-01 -1.44763917e-01 1.29930273e-01\\n2.03011498e-01 2.17646971e-01 1.10955812e-01 -2.28261679e-01\\n7.02223182e-02 1.24417283e-01 -2.71337360e-01 3.26442152e-01\\n-6.23708330e-02 1.80366531e-01 -4.60239530e-01 -2.52253681e-01\\n-3.40830460e-02 -3.07081878e-01 3.03418133e-02 2.86846519e-01\\n1.91490129e-01 -6.44808868e-03 6.35467470e-02 -5.17574012e-01\\n4.08340007e-01 6.74519688e-02 1.51017368e-01 2.51450539e-01\\n2.56395608e-01 3.00833791e-01 1.59199938e-01 5.69913089e-02\\n-3.19737047e-01 -3.19762938e-02 -7.23269582e-02 -2.89015502e-01\\n9.46031883e-02 -3.67008656e-01 -1.27159938e-01 3.89893711e-01\\n-4.55388101e-03 -1.54166371e-01 -8.82190540e-02 3.70260060e-01\\n6.96047619e-02 -2.95576781e-01 -1.48261234e-01 1.44655854e-01\\n2.42130294e-01 1.33612171e-01 6.02382906e-02 -2.74277687e-01\\n-1.13668467e-03 2.44764984e-02 1.20251440e-02 4.18842286e-01\\n2.78565675e-01 7.17391223e-02 -3.90284173e-02 -1.92877442e-01\\n5.36731064e-01 -1.04584113e-04 4.51789424e-02 -7.64888078e-02\\n4.23914455e-02 -2.54951924e-01 -3.75885189e-01 2.96566803e-02\\n9.88004953e-02 -9.11155492e-02 1.48728848e-01 -5.85579909e-02\\n1.51641550e-03 -6.50919229e-02 -3.83909374e-01 -2.09336594e-01\\n-3.34922075e-01 -1.32289365e-01 -3.42537947e-02 -2.78136700e-01\\n4.86178510e-02 -3.26189548e-02 -5.68354666e-01 4.01592910e-01\\n-3.54342103e-01 1.14290215e-01 -4.94438782e-02 2.47914761e-01\\n-3.51128995e-01 1.41219087e-02 1.05602354e-01 1.01228647e-01\\n-4.12379324e-01 -2.51616985e-01 -1.51185557e-01 -9.22459126e-01\\n2.16241896e-01 1.11814730e-01 2.30259658e-03 1.30155891e-01\\n1.41222611e-01 -5.17130017e-01 2.99351037e-01 -3.10151756e-01\\n6.98730499e-02 -5.79269091e-03 -1.31838545e-01 -3.21361572e-01\\n1.12125315e-01 -2.05199167e-01 -2.26164773e-01 3.05173129e-01\\n-4.47165400e-01 1.64443254e-01 5.56934662e-02 -2.86029037e-02\\n1.72776300e-02 -2.30110541e-01 9.36402529e-02 -2.44628549e-01\\n-5.05659938e-01 -2.23586425e-01 -3.40125531e-01 -2.14576930e-01\\n4.52620722e-02 -2.50640869e-01 -2.81090081e-01 1.57226399e-01\\n2.96636313e-01 1.85992420e-01 -1.21924534e-01 -2.67237097e-01\\n1.21135689e-01 -3.49263847e-01 -3.46458657e-03 -2.36124337e-01\\n-4.73474059e-03 -1.38681665e-01 9.26655903e-02 -2.18589425e-01\\n-2.87742983e-03 -2.70496875e-01 4.17677045e-01 -9.84279364e-02\\n-3.37426156e-01 8.42147321e-02 9.52830091e-02 -4.55865636e-02\\n2.28462979e-01 -4.56675440e-01 -1.84297562e-03 3.55554968e-01\\n1.39379323e-01 6.52208999e-02 2.84189165e-01 -1.20053194e-01\\n-1.91099659e-01 2.37140492e-01 -7.17716455e-01 8.81993249e-02\\n5.51825106e-01 1.67359952e-02 1.31862164e-01 2.09804118e-01\\n9.42107290e-02 4.48537767e-01 4.98610854e-01 1.91285349e-02\\n1.94899496e-02 3.71068269e-01 1.00385845e-02 -4.42720264e-01\\n-9.16478261e-02 -1.93680242e-01 -1.85386002e-01 -2.32740745e-01\\n4.89331067e-01 4.75996703e-01 -3.59787256e-01 -1.89899057e-01\\n-6.42332137e-02 -2.01199278e-01 6.70997873e-02 -1.81127414e-02\\n-7.29242191e-02 -1.11737907e-01 7.75737405e-01 1.33887827e-01\\n2.66701519e-01 5.87847233e-01 -2.30716337e-02 -2.95603096e-01\\n-2.05360010e-01 -1.86668523e-03 6.99609891e-02 3.25399727e-01\\n3.35993171e-02 2.00463369e-01 5.13557456e-02 1.53165013e-01\\n-1.82610843e-02 2.40218297e-01 1.45433158e-01 3.11406720e-02\\n2.27452219e-01 9.21565890e-02 -1.08652478e-02 3.99540305e-01\\n1.72747627e-01 4.35289025e-01 5.37854917e-02 1.15205891e-01\\n2.51383483e-01 5.99183619e-01 4.57638443e-01 1.87290758e-01\\n2.12313533e-02 -3.97947393e-02 -3.73837203e-02 -9.82408449e-02\\n4.22067791e-01 2.91440666e-01 2.50784099e-01 7.20143855e-01\\n3.41325790e-01 1.86915964e-01 6.80540442e-01 -6.31667733e-01\\n-3.89096618e-01 3.28384191e-02 3.23793560e-01 -2.30397195e-01\\n-2.08698407e-01 4.47994396e-02 -2.83383638e-01 1.32448122e-01\\n-5.68106711e-01 -8.47245380e-02 1.45991808e-02 -1.23345435e-01\\n6.42769188e-02 -8.88670422e-03 -2.07806770e-02 1.40572235e-01\\n-3.02947611e-01 -3.45977724e-01 -3.97305787e-01 2.89684646e-02\\n-3.56603086e-01 -2.32118309e-01 1.03148870e-01 -1.17247842e-01\\n-4.28603068e-02 -3.51059943e-01 -8.04522261e-02 1.67108014e-01\\n4.58508819e-01 -2.18350701e-02 -1.89811051e-01 -2.99764454e-01\\n3.95860560e-02 3.77959758e-01 5.05305588e-01 8.63474831e-02\\n7.30258152e-02 -1.56165272e-01 -2.71169543e-01 2.70123035e-02\\n1.75500169e-01 2.98466776e-02 1.93785593e-01 3.63993317e-01\\n-2.82878011e-01 8.58250260e-03 1.19473636e-01 3.45460862e-01\\n-4.14316356e-01 -6.23351261e-02 6.20224737e-02 3.17373157e-01\\n3.67316194e-02 3.27052832e-01 -1.34708345e-01 1.85529217e-01\\n-1.66710943e-01 -4.70392764e-01 5.70532560e-01 -2.17126116e-01\\n-1.36575192e-01 1.68327108e-01 6.94092363e-02 2.44138971e-01\\n-1.14254929e-01 -1.17895819e-01 1.64109247e-03 4.06686127e-01\\n-5.18842228e-02 3.20951104e-01 -2.58050680e-01 -9.74666849e-02\\n-2.91773200e-01 2.58951038e-01 -8.06380510e-02 7.06642270e-02\\n-3.44972461e-01 2.13502273e-01 1.12708852e-01 1.11880980e-01\\n1.75762936e-01 -7.54433870e-02 -1.02868341e-01 -2.08454639e-01\\n-3.53586167e-01 -3.10836196e-01 2.90875375e-01 1.01799428e-01\\n2.51442820e-01 -3.29822004e-01 -6.79453388e-02 -1.98518038e-01\\n-2.18332112e-01 -4.15921509e-01 -1.27230614e-01 5.91702163e-02]]',\n", + " 'Job Informationen Tasks: - Conceptualise and build new features for shared electric mobility systems - Maintain and scale our current infrastructure - Provide technical support for our customers Requirements: - 4+ years professional work experience in software development - Deep knowledge of Ruby on Rails or any other framework - Experience with relational databases (e.g. PostgreSQL) - Experience building large-scale applications - On top of software design and web trends - Familiar with GitHub work flow - Strong communication skills in English and German Benötigte Skills Englisch PostgreSQL Ruby Support',\n", + " '[\"Verbal Communication Skills\", \"Infrastructure\", \"Professionalism\"]',\n", + " '[\"Scale (Map)\", \"Github\", \"Ruby (Programming Language)\", \"Software Development\", \"Relational Databases\", \"PostgreSQL\", \"Maintainability\", \"Electricity\", \"E (Programming Language)\", \"Web Trends\", \"Ruby On Rails\", \"Technical Support\", \"Customer Requirements Analysis\", \"Software Design\", \"Mobility\"]',\n", + " \"['English', 'Japanese', 'Southern Sotho', 'Hausa', 'Limburgan']\"],\n", + " ['41',\n", + " 'software engineer - javascript/scala/machine learning',\n", + " 'Lausanne',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.19342285e-01 1.81136325e-01 4.31088746e-01 -1.60901487e-01\\n4.10918951e-01 -8.67805108e-02 -6.26184195e-02 5.22232115e-01\\n-8.42604712e-02 -2.47504920e-01 -2.18544245e-01 -3.24308634e-01\\n8.97972062e-02 1.08883873e-01 1.65337056e-01 3.10236186e-01\\n3.08304667e-01 2.56755319e-03 -3.04417580e-01 1.82255983e-01\\n2.28875801e-01 -3.78732570e-02 7.41434693e-02 7.44441450e-01\\n4.90626186e-01 1.74559981e-01 4.43047322e-02 -1.50399029e-01\\n-1.28601298e-01 -1.91238746e-01 5.72216988e-01 -4.49501425e-02\\n-6.96651191e-02 -2.08408922e-01 1.79716334e-01 9.49267820e-02\\n-1.79737762e-01 -2.00217351e-01 2.48300210e-02 2.42804617e-01\\n-3.90633553e-01 -2.98790097e-01 -1.17210681e-02 4.17491421e-02\\n-3.32288533e-01 -4.63986248e-01 2.88865060e-01 -1.55572528e-02\\n2.44128436e-01 1.31436244e-01 -4.99969244e-01 2.80061662e-01\\n-1.91263422e-01 -1.31407812e-01 3.73712003e-01 6.18750751e-01\\n-3.97483185e-02 -3.61107945e-01 -5.28609037e-01 -4.22803104e-01\\n-3.90197150e-02 1.13913007e-01 -5.71367480e-02 -2.71627784e-01\\n2.34543040e-01 1.36240572e-01 8.62427987e-03 5.11701405e-01\\n-8.12334001e-01 -1.13012016e-01 -2.39662677e-01 -8.64790380e-02\\n-3.17643136e-01 -3.25453579e-02 -1.90938011e-01 -3.58071417e-01\\n-7.14236870e-02 4.61017787e-01 1.25890851e-01 1.18652925e-01\\n-9.49859694e-02 3.59456241e-01 -1.46789208e-01 4.00276482e-01\\n1.98676348e-01 2.13330477e-01 8.39599371e-02 2.44358882e-01\\n-5.49195588e-01 3.21369290e-01 1.43215090e-01 -2.22701252e-01\\n1.93573520e-01 5.26475534e-03 4.74725157e-01 2.97191720e-02\\n1.24389142e-01 4.51385528e-02 -2.31437340e-01 2.39587903e-01\\n2.43238583e-01 -2.02112943e-01 5.23226857e-02 4.25398909e-02\\n-1.64405137e-01 3.29763144e-02 -4.62663174e-02 1.28205195e-01\\n-3.40232402e-01 4.66732472e-01 2.35703960e-02 -2.01361373e-01\\n-4.33659777e-02 -5.80004752e-01 -2.80267280e-02 1.21275103e-02\\n2.44357046e-02 1.67777181e-01 9.46337134e-02 1.78465709e-01\\n1.37468755e-01 -1.52569190e-01 1.88763335e-01 8.05732965e-01\\n-1.14600785e-01 2.74602827e-02 -2.44367778e-01 3.69928777e-01\\n-1.45950541e-01 -3.67948234e-01 3.50265443e-01 1.72814861e-01\\n4.89646289e-03 -5.96176982e-02 -2.51221180e-01 4.14095700e-01\\n-5.01370132e-02 -1.51512563e-01 -3.23573977e-01 3.54495019e-01\\n-1.70885399e-01 -3.81304085e-01 4.89407748e-01 -5.46506681e-02\\n1.25963286e-01 -1.50730595e-01 -6.12580255e-02 -3.26082595e-02\\n5.54982945e-03 6.91239387e-02 -2.51286495e-02 -1.31055294e-02\\n-2.20789805e-01 -2.38931373e-01 -2.13980854e-01 1.36114031e-01\\n-1.34211496e-01 2.65044689e-01 -5.05102053e-03 -1.08604558e-01\\n3.20245087e-01 -6.41912688e-04 -3.25966150e-01 3.79401356e-01\\n-6.15211353e-02 1.22886002e-01 -1.34850800e-01 2.10042864e-01\\n-2.70947307e-01 1.36978120e-01 -6.49424717e-02 -2.85965234e-01\\n6.70593381e-01 6.31957781e-03 1.32618472e-01 5.88973686e-02\\n2.77708024e-01 -8.46680403e-02 2.79738814e-01 1.20237604e-01\\n-7.62676060e-01 3.91593635e-01 -3.30742635e-02 -1.61631200e-02\\n6.68700337e-02 -1.90229818e-01 2.35450685e-01 -2.91392654e-01\\n3.35854553e-02 2.48182975e-02 -3.72044474e-01 -3.33673626e-01\\n-2.73872346e-01 -3.98267768e-02 3.21471035e-01 -3.50116163e-01\\n-1.99006483e-01 1.43123105e-01 -4.66322035e-01 -4.17253450e-02\\n1.51570708e-01 1.00866437e-01 1.42859682e-01 1.45642295e-01\\n-1.83142051e-01 -4.79768217e-01 5.28754815e-02 -5.36527991e-01\\n-1.89959466e-01 1.07251368e-01 -2.85337418e-01 2.26660341e-01\\n7.51121566e-02 6.71514124e-02 -1.74602315e-01 -8.21924210e-03\\n-2.28629753e-01 -5.91553375e-02 2.00148404e-01 3.31991613e-02\\n3.02762836e-01 1.14476062e-01 -3.41458499e-01 5.03612757e-01\\n-2.45982364e-01 5.12931943e-01 1.23211980e-01 -8.12644958e-01\\n4.57919210e-01 5.22098422e-01 -2.13325527e-02 -4.05561537e-01\\n7.19655275e-01 -2.63673067e-01 -6.28801510e-02 1.86544225e-01\\n-5.86722374e-01 -3.16703498e-01 2.63397336e-01 -3.64431828e-01\\n-1.82355210e-01 6.45250142e-01 6.18461147e-02 6.05282821e-02\\n1.93730548e-01 -1.97166026e-01 -1.26565933e-01 1.47543490e-01\\n-1.15413450e-01 -2.15338185e-01 -4.45533901e-01 -1.61614250e-02\\n-1.49535120e-01 -4.24727201e-01 -2.33451128e-01 -4.60280031e-01\\n-9.29819867e-02 -3.33145261e-01 -2.37518898e-03 2.18881980e-01\\n1.86330870e-01 -6.08280525e-02 1.04105487e-01 6.76739886e-02\\n-1.97936013e-01 -4.13433462e-01 5.88760115e-02 -7.81613495e-03\\n3.58421952e-01 2.71300375e-01 -1.29200204e-03 9.52208489e-02\\n-1.67398865e-03 6.82544708e-01 -3.86782557e-01 -1.17535561e-01\\n1.77442014e-01 1.73393533e-01 4.80011627e-02 -1.06415316e-01\\n9.08299237e-02 2.05960900e-01 -4.11512136e-01 -1.17996456e-02\\n-1.65786251e-01 1.37561172e-01 2.29779616e-01 4.46937270e-02\\n-1.96353987e-01 -3.24490607e-01 -1.54591382e-01 2.63263792e-01\\n-3.61809939e-01 -1.76518843e-01 6.08534455e-01 1.10960938e-01\\n1.41477585e-01 1.86081737e-01 2.43466511e-01 -1.03352562e-01\\n-2.06096902e-01 -2.26634204e-01 1.73313707e-01 2.37825394e-01\\n7.25073889e-02 7.70985857e-02 -2.84317671e-03 -4.88712609e-01\\n-2.71430135e+00 -5.74638397e-02 1.18139923e-01 -1.38285458e-01\\n1.94370031e-01 -2.54102677e-01 1.24196716e-01 -8.79071206e-02\\n-3.64636928e-01 -5.31982817e-02 -1.62161618e-01 -2.50386357e-01\\n2.40171865e-01 3.31475586e-01 1.66182712e-01 2.62444466e-01\\n7.93102533e-02 -3.50262046e-01 -2.56643910e-02 2.82971740e-01\\n-2.40375012e-01 -6.87352836e-01 1.89345852e-01 -7.94614404e-02\\n2.99564868e-01 2.21134931e-01 -4.58120793e-01 -1.83168411e-01\\n-3.27253431e-01 -3.39169681e-01 1.92315131e-01 -3.81347001e-01\\n6.05004318e-02 3.56053263e-01 2.52672285e-01 -1.59194663e-01\\n1.31252840e-01 -3.75197798e-01 -1.64503768e-01 -4.23420101e-01\\n8.64471272e-02 -6.99187517e-01 8.35179910e-02 -1.27526388e-01\\n6.57840014e-01 -3.28761876e-01 1.09929599e-01 8.71486380e-04\\n1.15118906e-01 1.28030613e-01 -6.34490454e-04 1.09039731e-01\\n-2.71551907e-01 -2.59697855e-01 -1.02733955e-01 -1.56282812e-01\\n4.04876202e-01 6.70983613e-01 -2.06097111e-01 1.48781005e-03\\n-4.46171127e-02 -2.83934057e-01 -4.17712122e-01 -4.10557717e-01\\n-2.13394880e-01 -2.10029364e-01 -6.52326882e-01 -3.83003980e-01\\n-4.71648835e-02 -1.27612293e-01 -1.95811931e-02 5.00996768e-01\\n-3.61822158e-01 -2.57012248e-01 -1.07394345e-01 -5.99090993e-01\\n2.63237059e-01 -6.26404658e-02 1.00035612e-02 -1.66280985e-01\\n-2.05776781e-01 -4.43390340e-01 4.44217511e-02 -3.27809416e-02\\n-9.73256677e-02 -3.13276112e-01 1.29013404e-01 -2.09248677e-01\\n-2.82249212e-01 -4.64406490e-01 2.94110566e-01 1.80835947e-01\\n2.89424986e-01 1.72436297e-01 1.29402593e-01 -1.02223583e-01\\n1.11000828e-01 -4.63343551e-03 3.37298103e-02 -3.94715726e-01\\n6.76604435e-02 2.66956119e-03 4.64268237e-01 -2.20577046e-01\\n1.15164973e-01 9.65706706e-02 -2.71096319e-01 -1.07297376e-01\\n2.31599063e-01 2.05715448e-02 4.86085974e-02 -2.81832665e-01\\n3.06731254e-01 -3.31665426e-01 -7.12709725e-02 1.13251600e-02\\n3.07341088e-02 6.67900860e-01 -5.88539951e-02 -3.51268977e-01\\n-2.49013126e-01 5.05070508e-01 6.33997796e-03 -1.83792219e-01\\n-2.04912558e-01 1.87133789e-01 -3.54243994e-01 -9.99365300e-02\\n2.29420699e-02 -1.52171165e-01 -3.42947274e-01 -9.42999870e-02\\n-5.12667149e-02 3.82685244e-01 3.00624460e-01 2.15948790e-01\\n2.79616173e-02 -4.22449261e-01 6.12730682e-02 3.19320142e-01\\n1.97118789e-01 3.32690448e-01 1.68936417e-01 -2.76271641e-01\\n1.28320202e-01 3.88148159e-01 -1.74902081e-01 2.47394174e-01\\n-2.28138819e-01 -2.66975965e-02 -4.52379197e-01 -3.20220023e-01\\n-2.45751008e-01 -2.66670674e-01 1.50615126e-01 2.59572923e-01\\n9.42377187e-03 2.96353381e-02 6.87748194e-02 -3.58052462e-01\\n3.32783669e-01 -3.63968872e-02 2.58961469e-01 1.07383698e-01\\n5.93451075e-02 6.23828888e-01 1.38840020e-01 -5.25347255e-02\\n-1.84954688e-01 3.73546444e-02 -1.58487365e-01 -2.47711375e-01\\n3.01026506e-03 -4.25581127e-01 -2.28361338e-01 3.69653970e-01\\n3.76352556e-02 -2.49631286e-01 -1.13479912e-01 2.19415635e-01\\n5.15291952e-02 -2.18812093e-01 -1.51501268e-01 3.01592462e-02\\n3.78630966e-01 1.53287947e-01 1.86932430e-01 -5.11538029e-01\\n9.72272828e-02 -2.30892524e-02 -1.80621184e-02 4.41557646e-01\\n1.39098063e-01 1.25697991e-02 -2.61261374e-01 -3.08790058e-01\\n3.34632576e-01 -3.42663169e-01 -1.95402093e-02 2.01656707e-02\\n3.63726839e-02 -1.25110298e-01 -4.24573243e-01 9.10349935e-02\\n-6.42896369e-02 -1.16678514e-01 -7.60053173e-02 6.93906471e-02\\n1.95207477e-01 -3.03827897e-02 -6.43123865e-01 -2.44738027e-01\\n-2.82264322e-01 1.56612977e-01 -4.07660613e-03 -4.70483243e-01\\n-3.52718569e-02 -1.61820143e-01 -6.25119627e-01 3.13072085e-01\\n-2.71256030e-01 -1.46929668e-02 1.92158967e-01 3.49590811e-03\\n-3.72740060e-01 -2.59224661e-02 1.99121699e-01 1.96224809e-01\\n-3.38736057e-01 -3.04571658e-01 8.51263553e-02 -9.57494140e-01\\n6.92129508e-02 -3.61912027e-02 -1.63678098e-02 1.53977156e-01\\n6.73978403e-02 -8.00652921e-01 1.17523737e-01 -2.42552936e-01\\n-8.47847611e-02 -8.27525035e-02 -2.08409399e-01 -5.94122231e-01\\n4.70246971e-02 8.07676241e-02 -1.07013792e-01 2.92061239e-01\\n-4.20337498e-01 3.18811625e-01 -6.62466809e-02 4.21071537e-02\\n2.52626725e-02 -2.71317542e-01 1.52913183e-01 -4.19835389e-01\\n-2.17567176e-01 -1.13802657e-01 -2.68537283e-01 -2.79424906e-01\\n-2.64740400e-02 -2.29366049e-01 -7.39524812e-02 1.20868616e-01\\n3.12948197e-01 2.73460913e-02 -9.62467045e-02 -1.79499775e-01\\n1.02025084e-01 -4.32507277e-01 7.13376701e-02 -1.68989927e-01\\n-9.91764069e-02 -1.98152885e-01 2.32822016e-01 1.86861813e-01\\n9.11485553e-02 -4.01329190e-01 4.16251004e-01 -3.85343075e-01\\n-4.98724461e-01 -2.77024768e-02 -3.82275097e-02 -2.71633035e-03\\n4.49894577e-01 -4.09570068e-01 -7.89676607e-02 4.51759219e-01\\n9.49817598e-02 -5.09302355e-02 4.08575326e-01 -2.04133227e-01\\n-6.54539764e-02 3.09752375e-01 -5.06745756e-01 2.93327272e-02\\n7.54946113e-01 7.50260726e-02 1.30431861e-01 1.87825441e-01\\n5.32671958e-02 1.56089142e-01 4.70147043e-01 8.10024794e-03\\n-1.22578867e-01 3.26220810e-01 1.49382323e-01 -5.15533209e-01\\n-1.32689387e-01 -2.19930008e-01 -1.46906778e-01 -3.41371298e-01\\n6.50402606e-01 3.04198772e-01 -2.86466449e-01 -2.05696926e-01\\n-2.29582801e-01 -2.32447207e-01 1.33902729e-01 -7.73866102e-02\\n1.74898244e-02 -4.98972051e-02 4.47491139e-01 2.11403109e-02\\n4.27219003e-01 5.04204273e-01 -9.83430222e-02 -2.72266924e-01\\n-1.04540102e-01 2.06998542e-01 -1.08292736e-01 2.92599291e-01\\n-9.69199836e-02 5.14105797e-01 3.54764275e-02 8.58753994e-02\\n-1.09720446e-01 -1.90725680e-02 9.30355564e-02 1.53255817e-02\\n8.87968764e-02 2.73327738e-01 2.41285786e-01 4.79711711e-01\\n3.92003149e-01 4.46622759e-01 2.95904219e-01 3.48261893e-02\\n5.73025823e-01 5.92399836e-01 4.27761525e-01 5.42831942e-02\\n-5.47832288e-02 2.84770448e-02 3.61264087e-02 1.00322232e-01\\n3.54003787e-01 3.12172234e-01 5.90910055e-02 9.76930201e-01\\n4.03424442e-01 3.03128541e-01 6.96769953e-01 -5.57572961e-01\\n-3.79510522e-01 -1.08129755e-01 4.30003881e-01 -4.55606550e-01\\n-6.66758642e-02 1.36496872e-01 -1.10436454e-01 2.07791626e-01\\n-3.27172130e-01 -1.52637452e-01 -2.90899314e-02 1.88968569e-01\\n2.36313306e-02 -3.48529741e-02 -1.58427462e-01 2.42009610e-02\\n-3.43573332e-01 -2.27847427e-01 -4.82903779e-01 -2.36538006e-03\\n-2.76970983e-01 -2.69974768e-01 -1.45564815e-02 -1.03661746e-01\\n-2.57667601e-01 -2.94177145e-01 -1.21997736e-01 3.09795402e-02\\n3.50861400e-01 -1.64819911e-01 -1.37814760e-01 -2.99447089e-01\\n3.19494784e-01 2.33509839e-01 6.21406555e-01 -1.31062074e-02\\n4.71575856e-02 -2.93080389e-01 -2.61988401e-01 9.25703645e-02\\n1.59121886e-01 5.10298051e-02 1.12252288e-01 2.82947332e-01\\n-2.32727319e-01 -9.53059196e-02 1.26616910e-01 3.61890644e-01\\n-3.67958635e-01 -3.73639390e-02 -7.27146585e-03 2.25033611e-01\\n1.22023478e-01 1.49894476e-01 -2.97193050e-01 1.08350821e-01\\n-1.88325658e-01 -5.72522521e-01 2.64368594e-01 -3.25062014e-02\\n-6.84223920e-02 -7.28884935e-02 2.78501868e-01 2.43510440e-01\\n-1.50746718e-01 -7.76211023e-02 -7.21939877e-02 1.33978903e-01\\n1.19384579e-01 3.44789654e-01 -3.54178101e-01 -2.20660478e-01\\n-1.99023068e-01 2.45924294e-01 -3.51511598e-01 1.08043261e-01\\n5.17625101e-02 4.13835257e-01 5.78689836e-02 -2.94870231e-03\\n3.73335868e-01 -1.30798388e-02 -1.92066714e-01 -2.05476671e-01\\n-1.03885517e-01 -3.33876401e-01 -2.55587772e-02 -1.19787760e-01\\n2.04682708e-01 -3.53458792e-01 -1.34133622e-01 -2.62693256e-01\\n-1.05370209e-01 -1.85946152e-01 4.05000933e-02 1.02388568e-01]]',\n", + " 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer - Javascript/Scala/Machine LearningYour mission : The IIPP Chair at the College of Management at EPFL Switzerland, is seeking a Software Engineer - Javascript/Scala/Machine Learning to lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io. The IIPP Chair is the Chair of Innovation and Intellectual Property Policy of Prof. de Rassenfosse. The Chair is part of the College of Management at EPFL. Main duties and responsibilities include : Lead the development of a web platform to run the highly-strategic IPRoduct research project http://www.iproduct.io Your profile : Self-motivated and talented software engineer who holds a master’s degree in computer science or related disciplines Two years of experience in web development, including Javascript/HTML5/CSS Two years of experience in back-end development Strong knowledge of object-oriented and functional programming languages (preferably Scala) Keen interest in algorithms and machine learning Some knowledge of MySQL and UNIX Familiar with continuous integrating and delivery (DevOps) We offer : We offer a competitive salary commensurate with skills and experience, and subject to EPFL pay scale. Flexible working conditions in a highly international and stimulating environment. EPFL is a highly international, world-class engineering university. It offers many CS-related events and training and hosts a vibrant entrepreneurial community. EPFL is an equal-opportunity employer. Candidates will be recruited on merit only. If you are a passionate engineer and you fit the above criteria, we want to hear from you! Start date : To be agreed Term of employment : Fixed-term (CDD) Work rate : 70-100% Duration : 1 year, renewable Contact : Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " '[\"Self-Motivation\", \"Research\", \"Management\", \"Communications\", \"Innovation\"]',\n", + " '[\"MySQL\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"JavaScript Engine\", \"Machine Learning\", \"Continuous Integration\", \"Educational Research\", \"Scale (Map)\", \"Scala (Programming Language)\", \"HTML5\", \"Machining\", \"Web Development\", \"Software Engineering\", \"Hosting\", \"Library For WWW In Perl\", \"Equalization\", \"Intellectual Property\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Functional Programming\", \"Back End (Software Engineering)\", \"Algorithms\", \"Unix\", \"Web Platforms\", \"DevOps\"]',\n", + " \"['English', 'Nyanja', 'Lingala']\"],\n", + " ['84',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.59864122e-01 3.01538646e-01 4.92225647e-01 -1.93152279e-02\\n5.17405212e-01 -9.19268429e-02 -6.95516883e-06 1.06248260e-01\\n-6.64190203e-02 -2.92094737e-01 -9.83332768e-02 -3.28181207e-01\\n-2.64743507e-01 -2.58114394e-02 7.53682405e-02 5.12615025e-01\\n1.70055211e-01 7.77240098e-02 -1.87301069e-01 2.80951560e-01\\n1.21073343e-01 -2.74600759e-02 -4.42800447e-02 5.66475034e-01\\n4.12018746e-01 -1.38704136e-01 -1.26830712e-01 2.70555969e-02\\n-3.42648953e-01 -1.78577796e-01 3.81166250e-01 4.25771847e-02\\n-1.17943630e-01 -3.72847646e-01 4.66185845e-02 1.27303079e-01\\n-2.22045049e-01 2.76031308e-02 -3.51983421e-02 1.03873990e-01\\n-4.32303637e-01 -3.11049253e-01 3.57612111e-02 -2.33242828e-02\\n-3.49526763e-01 -2.68202543e-01 -4.19423170e-02 -1.39751239e-02\\n9.03236959e-03 7.79562965e-02 -5.32114685e-01 3.80242199e-01\\n-2.69284278e-01 -9.97092426e-02 2.24697798e-01 6.56659663e-01\\n7.67930076e-02 -5.57321370e-01 -3.82070780e-01 -3.01237315e-01\\n1.77832127e-01 -1.50176451e-01 1.25642329e-01 -1.48474336e-01\\n4.21092331e-01 -1.06958576e-01 -1.05356105e-01 3.83905947e-01\\n-6.81691289e-01 -1.38567016e-02 -2.53401995e-01 2.79064290e-03\\n-4.38649952e-01 5.29891253e-02 -3.99499267e-01 -8.38649869e-02\\n-6.04773983e-02 4.80339736e-01 2.21692324e-02 3.79781537e-02\\n-2.34058604e-01 2.17221811e-01 -2.03327656e-01 1.90754235e-01\\n3.80656809e-01 1.14630893e-01 2.22742021e-01 3.41940671e-01\\n-5.47518134e-01 3.31483841e-01 2.68400103e-01 -3.41912478e-01\\n1.91628218e-01 1.33438006e-01 4.77975100e-01 2.63423085e-01\\n-1.78412739e-02 1.80785745e-01 -8.81461501e-02 2.55364358e-01\\n1.91132396e-01 -2.52167821e-01 8.48064870e-02 -8.06812793e-02\\n-1.30314350e-01 -8.67485255e-02 -1.68644059e-02 2.57980764e-01\\n-2.68361747e-01 3.33175510e-01 2.54696757e-01 -1.35289177e-01\\n-4.78511490e-02 -6.11057043e-01 -7.95383751e-02 -7.19936714e-02\\n5.72977066e-02 2.38087133e-01 3.62203568e-01 1.16531141e-01\\n2.39463598e-01 1.35905549e-01 2.38074765e-01 9.82580721e-01\\n-3.87874171e-02 1.10183433e-01 -2.63708353e-01 4.13343430e-01\\n2.08525300e-01 -2.46381283e-01 2.01551408e-01 2.47544348e-01\\n6.16608746e-02 -8.63595977e-02 -2.04890013e-01 3.36909801e-01\\n-1.61743313e-01 -1.73529401e-01 -2.74856210e-01 5.60133122e-02\\n-2.49008551e-01 -4.26667213e-01 5.18822372e-01 1.06489323e-01\\n1.59596160e-01 -9.47507471e-02 -6.73094988e-02 -1.66072190e-01\\n-4.67353500e-02 3.50761533e-01 -3.32292989e-02 2.48569608e-01\\n-3.27590793e-01 -2.84367770e-01 -2.46967912e-01 4.21100557e-01\\n-1.73212677e-01 4.67419289e-02 -1.21566944e-01 -1.21808968e-01\\n2.57509410e-01 2.38048896e-01 -4.11607116e-01 1.34441152e-01\\n-5.14818691e-02 -3.59558523e-01 -3.57041880e-02 3.56209159e-01\\n-1.29884079e-01 3.26764323e-02 -7.54186837e-03 -2.32915848e-01\\n5.61516702e-01 2.85182714e-01 3.25433910e-01 -8.03947449e-02\\n3.30582738e-01 -1.81907341e-01 2.18693689e-01 1.99648768e-01\\n-5.89409471e-01 4.15895998e-01 -1.05789028e-01 -1.89027473e-01\\n1.09639853e-01 1.00847103e-01 5.01944900e-01 -2.90378660e-01\\n-4.91837896e-02 -2.57034332e-01 -4.34662163e-01 -4.49825138e-01\\n-3.22791100e-01 1.10766152e-02 4.46435839e-01 -4.51394945e-01\\n-1.21058732e-01 2.11182460e-01 -6.09888434e-01 -1.75338849e-01\\n1.87866002e-01 1.74391240e-01 1.47711277e-01 2.34641284e-02\\n-8.53154808e-02 -6.97391510e-01 5.51519208e-02 -5.22673011e-01\\n-5.18987417e-01 8.76995027e-02 -2.96523541e-01 2.10182965e-01\\n3.31274606e-02 5.40682441e-03 -1.49634495e-01 2.03421026e-01\\n-3.56682509e-01 -1.99454594e-02 1.65910304e-01 1.75335377e-01\\n2.46710494e-01 -1.57050195e-03 -4.99556065e-01 5.07808387e-01\\n-2.18212441e-01 6.11273348e-01 2.49145105e-01 -9.00253415e-01\\n6.35109961e-01 5.73513694e-02 -1.24825630e-02 -2.63666719e-01\\n4.33391094e-01 -3.98532391e-01 3.80166657e-02 1.23577975e-01\\n-1.68950275e-01 -1.40046239e-01 3.12570214e-01 -7.61174932e-02\\n-2.69749820e-01 6.42573714e-01 2.15982303e-01 -2.61650681e-02\\n2.50492066e-01 -3.85117650e-01 -2.47803584e-01 -4.13786955e-02\\n-1.12726152e-01 -2.61890411e-01 -4.39849228e-01 1.86587662e-01\\n-3.18504013e-02 -5.35001218e-01 -7.08940476e-02 -4.30322260e-01\\n-2.33438596e-01 -4.32938427e-01 -1.97027549e-01 4.54276919e-01\\n1.88348785e-01 6.21834695e-02 3.20143588e-02 -4.58779819e-02\\n-4.33901772e-02 -6.24636889e-01 -1.62761137e-01 9.73014534e-02\\n5.06425023e-01 2.63491809e-01 1.41985163e-01 -6.24018572e-02\\n-4.91994806e-03 4.97716397e-01 -2.67108440e-01 -3.52781087e-01\\n8.63682255e-02 9.04444605e-02 2.64750551e-02 -1.06052078e-01\\n1.41632920e-02 4.10472780e-01 -1.07792430e-01 4.31825630e-02\\n1.25971502e-02 -1.12058319e-01 3.56061667e-01 -5.60762286e-02\\n-2.41172060e-01 -1.49076059e-01 -8.81135613e-02 2.92252868e-01\\n-5.95040143e-01 -2.08458573e-01 5.02864122e-01 3.11905831e-01\\n1.87737644e-01 1.34885728e-01 2.62456089e-01 -1.29248559e-01\\n-3.22163254e-01 -1.52315065e-01 1.90079495e-01 1.43186569e-01\\n2.36036703e-02 1.99365597e-02 -2.45251358e-01 -5.29553533e-01\\n-3.26959872e+00 -2.56146193e-01 1.39366776e-01 -2.42912218e-01\\n1.43636286e-01 -1.62987590e-01 9.23383012e-02 -1.38556454e-02\\n-2.44086832e-01 7.84183592e-02 -2.43884385e-01 -1.80349231e-01\\n-4.01683226e-02 2.96378404e-01 7.76180178e-02 1.81381047e-01\\n2.45224149e-03 -1.63476080e-01 -8.22806954e-02 3.97026300e-01\\n-1.26145139e-01 -7.01179564e-01 1.32919654e-01 -5.65961711e-02\\n1.30506501e-01 5.67401387e-02 -4.03549492e-01 -7.06139728e-02\\n-2.35962436e-01 -2.98038751e-01 1.25317633e-01 -3.09304535e-01\\n-1.92793623e-01 2.53399253e-01 1.65659562e-01 -9.27565321e-02\\n-1.29662212e-02 -3.49138975e-01 -1.12010121e-01 -5.05290031e-01\\n7.76432753e-02 -5.86658716e-01 8.87125134e-02 -2.03306004e-01\\n6.57664299e-01 -3.64288121e-01 1.56203970e-01 1.70474887e-01\\n2.02240705e-01 1.68683037e-01 5.92369772e-02 -5.20663895e-02\\n-2.90857226e-01 -4.06320691e-01 -8.09175894e-02 -2.17727020e-01\\n5.17106473e-01 4.68430668e-01 -4.91501950e-02 3.03255431e-02\\n1.13591209e-01 -3.69442880e-01 -4.03996915e-01 -5.20252049e-01\\n-2.51734138e-01 -1.29451543e-01 -5.87655067e-01 -4.52263981e-01\\n-1.27599031e-01 -2.38071149e-03 -2.50093818e-01 6.46669745e-01\\n-3.24104726e-01 -3.92304540e-01 -3.73162217e-02 -5.24602532e-01\\n1.87518597e-01 -3.49958479e-01 6.42570332e-02 -1.86443344e-01\\n-4.13404942e-01 -5.62080801e-01 2.08511144e-01 -8.77109766e-02\\n-1.69117495e-01 -3.61166485e-02 -9.99097899e-02 -2.33742699e-01\\n-3.10763180e-01 -3.86143625e-01 4.90192920e-01 4.20660935e-02\\n4.25317675e-01 1.39293611e-01 3.89141917e-01 1.32936522e-01\\n4.03480977e-01 -1.96240693e-01 3.93719971e-02 -3.54624540e-01\\n6.38450384e-02 6.46387115e-02 6.41743839e-01 -2.84381360e-01\\n1.04359522e-01 7.67790973e-02 -2.27636725e-01 -1.99619364e-02\\n4.57164526e-01 1.69573650e-02 2.07318012e-02 -3.37012000e-02\\n3.32695514e-01 -5.97836673e-01 -2.73889452e-01 2.34101996e-01\\n4.13223132e-02 6.49182141e-01 3.37538421e-02 -4.91220862e-01\\n-2.71217287e-01 4.59119409e-01 -1.43904790e-01 -2.12113976e-01\\n-1.99332416e-01 1.45009965e-01 -1.81290239e-01 2.70041376e-01\\n4.69088070e-02 -2.03420222e-01 -4.02831972e-01 -9.01431218e-02\\n6.13312051e-02 2.60193497e-01 2.71892309e-01 -2.74077579e-02\\n-4.06201836e-03 -1.58637792e-01 -1.52695149e-01 7.89160505e-02\\n3.30333441e-01 3.19285154e-01 1.94919333e-01 -2.35454082e-01\\n-7.95873031e-02 2.04053357e-01 -2.35418424e-01 2.06877843e-01\\n-2.08154380e-01 3.31962258e-02 -5.25831640e-01 -2.77449638e-01\\n-1.47370875e-01 -3.37646484e-01 2.20849395e-01 2.93827713e-01\\n2.09054142e-01 -6.71690479e-02 6.84492141e-02 -4.79559898e-01\\n4.10875469e-01 7.43935779e-02 1.96158677e-01 1.56394675e-01\\n-1.92992594e-02 6.59825265e-01 1.17858062e-02 -1.81324091e-02\\n-3.01163476e-02 -5.75909987e-02 -3.08191627e-01 -2.60751724e-01\\n9.10956711e-02 -3.14819157e-01 -1.23318978e-01 5.24835408e-01\\n1.49772733e-01 -2.34066278e-01 -1.66986242e-01 3.97266179e-01\\n7.12550655e-02 -1.62122965e-01 -1.32850647e-01 6.72698468e-02\\n2.11275071e-01 1.72613963e-01 2.40995184e-01 -4.10565406e-01\\n-4.05843705e-02 -3.10417935e-02 -6.96671382e-02 5.03475785e-01\\n1.25251353e-01 2.01601252e-01 -1.01759590e-01 -2.48495579e-01\\n5.82380116e-01 -2.04682499e-02 -1.18128799e-01 -4.54731882e-02\\n1.32655933e-01 -2.05148935e-01 -4.22825307e-01 -1.48797454e-02\\n1.22733302e-02 -2.95715183e-01 8.09626877e-02 -2.39419402e-03\\n1.69533700e-01 -6.60513341e-02 -4.73624647e-01 -2.38233864e-01\\n-3.11098188e-01 -1.18043944e-01 5.20513542e-02 -4.90924299e-01\\n4.85214079e-03 -1.25277132e-01 -6.31405234e-01 2.65420794e-01\\n-2.04348564e-01 3.50211258e-03 1.35872081e-01 2.49604970e-01\\n-2.69677162e-01 -1.83686584e-01 9.67645794e-02 1.37023777e-01\\n-3.51724833e-01 -2.00381711e-01 1.19880907e-01 -9.52559352e-01\\n5.19246198e-02 1.61693022e-01 -1.08523816e-01 2.53875321e-03\\n-1.64032672e-02 -6.64067209e-01 1.24535039e-01 -4.12667274e-01\\n-1.34206414e-02 7.90412724e-02 -2.50994086e-01 -3.47121418e-01\\n2.01361716e-01 -2.93696336e-02 -3.68284017e-01 4.87604827e-01\\n-4.26546991e-01 3.88386011e-01 7.84319341e-02 1.04678035e-01\\n1.24918118e-01 -1.88159287e-01 1.81690618e-01 -1.35894120e-01\\n-4.59107786e-01 -2.22340658e-01 -4.21518594e-01 -2.77780086e-01\\n1.34322077e-01 -2.45887846e-01 -1.57188058e-01 -1.29125444e-02\\n4.84645724e-01 2.35253036e-01 -7.13750720e-02 -2.21771553e-01\\n1.53204411e-01 -4.40131992e-01 1.11964099e-01 -2.52618372e-01\\n-1.95792317e-02 -4.66670133e-02 1.40758798e-01 -8.42214897e-02\\n3.26356702e-02 -1.74794853e-01 5.92158973e-01 -2.18197331e-01\\n-2.50208467e-01 -8.78116339e-02 7.22762495e-02 1.20371886e-01\\n2.83597827e-01 -4.17058945e-01 6.86930344e-02 2.33645871e-01\\n1.64324239e-01 6.05717488e-02 2.79225081e-01 -7.36008212e-02\\n-8.77946019e-02 2.06249699e-01 -5.91637492e-01 1.02338456e-01\\n7.57228196e-01 2.02817097e-01 1.55319855e-01 1.45789981e-01\\n2.84777373e-01 1.77202448e-01 5.70581317e-01 1.84486229e-02\\n-7.34474659e-02 3.62903565e-01 -3.99426650e-03 -4.75134552e-01\\n-1.23706661e-01 -2.29985029e-01 -1.92412928e-01 -4.19680715e-01\\n5.49009800e-01 3.71648580e-01 -4.65696782e-01 -2.30238810e-01\\n-1.29057728e-02 -1.03646725e-01 3.64610851e-01 -1.01651683e-01\\n-6.73276484e-02 -5.87902963e-02 5.38373172e-01 -7.31145665e-02\\n3.38303715e-01 4.99626279e-01 -2.01097533e-01 -3.34187925e-01\\n-1.70527264e-01 9.76514742e-02 1.37013391e-01 5.07366121e-01\\n-1.71007693e-01 1.86961353e-01 1.52872931e-02 1.47041515e-01\\n-1.74938828e-01 9.82163697e-02 2.20930487e-01 2.58166045e-02\\n2.51042783e-01 5.83751574e-02 2.25517735e-01 4.71430600e-01\\n1.13394678e-01 4.88456279e-01 2.95384139e-01 6.08368367e-02\\n3.71666372e-01 8.08836877e-01 3.67155880e-01 3.00937176e-01\\n-2.59896480e-02 1.63378909e-01 -9.98355448e-02 -8.59796032e-02\\n3.77373785e-01 4.25703257e-01 2.24330693e-01 8.33069444e-01\\n3.08897555e-01 4.10353422e-01 6.75969183e-01 -5.77205002e-01\\n-5.58773220e-01 1.33554325e-01 6.18767083e-01 -4.04591203e-01\\n-7.61713758e-02 1.50495872e-01 -3.64944220e-01 2.37548754e-01\\n-5.30530930e-01 -1.51069805e-01 8.51040985e-03 -1.56574309e-01\\n1.01066701e-01 -7.83223510e-02 -2.50930041e-01 1.06238663e-01\\n-2.21019521e-01 -1.71510994e-01 -2.78240710e-01 -1.45338535e-01\\n-3.29239786e-01 -5.51173724e-02 -5.89133166e-02 -6.80320188e-02\\n-6.16916306e-02 -3.26743186e-01 -1.34451956e-01 -2.72953957e-02\\n4.07248735e-01 -2.16173276e-01 -1.83890209e-01 -1.31166562e-01\\n-2.66194772e-02 3.19368094e-01 6.14523053e-01 -8.44864547e-03\\n1.72497988e-01 -1.19063482e-01 -3.04284185e-01 3.98241915e-02\\n7.81720281e-02 1.01284474e-01 6.30358532e-02 4.60111260e-01\\n-2.64215082e-01 -9.70120132e-02 2.11409926e-01 2.90353596e-01\\n-4.56584215e-01 -8.47727209e-02 -1.39065459e-01 1.42288044e-01\\n6.46542460e-02 2.54517913e-01 -3.19350421e-01 1.42921850e-01\\n-2.93239564e-01 -5.24355114e-01 4.81686354e-01 -2.35292703e-01\\n-8.76531675e-02 1.28701143e-02 3.11773539e-01 1.58758506e-01\\n-2.45550781e-01 -2.25622263e-02 2.71132626e-02 4.19472545e-01\\n5.02382517e-02 3.59988183e-01 -2.83442378e-01 -1.12552971e-01\\n-2.67483622e-01 2.44254291e-01 -4.52912562e-02 2.80420482e-01\\n-1.36821315e-01 4.43909645e-01 8.59643072e-02 8.66009444e-02\\n1.87259659e-01 1.11921549e-01 -2.38131568e-01 -3.17423493e-01\\n-3.41608316e-01 -1.81519330e-01 1.32211238e-01 -2.87230555e-02\\n1.65485814e-01 -3.92305672e-01 -1.13870747e-01 -1.45994261e-01\\n-1.61202058e-01 -5.10855615e-01 -1.82897329e-01 1.28261624e-02]]',\n", + " 'Über unseren Kunden Our client is the leading private media group in Switzerland. Ihr Aufgabenbereich Architect, build and maintain a data infrastructure that is fast and reliable Develop code as part of a wider team, contributing to code review and solution design Deploy and maintain applications in production environments Build data expertise and own data quality for own areas Design, build and launch new data models, data extraction, transformation and loading processes in production Communicate and document solutions and design decisions Source and clean up complicated datasets for answering challenging business questions Work with the Google Analytics Expert to set up and maintain advanced tracking for user behaviour on the platform of our client (specification, implementation and validation) using the right tools for the right job – especially during deployment of new features Work with our engineering team to set up a new backend tracking system based on defined business requirements Ihr Profil Multiple years of experience delivering code in a production environment Experience working with large volumes of data Strong programming skills (Python, Java, C#, Go) Knowledge of relational databases, Structured Query Language (SQL), good understanding of data structures and algorithms Experience with ETL/ELT design, integrating data sets from various environments into centralised database system Analytical skills to understand the business request for which the sourced data are used Good understanding of front end technologies (web & app) and able to read, write and implement code snippets in JavaScript or Java / Swift Experience with integration of data from multiple data sources; ability to investigate and master new data sets quickly Ability to work well across a different teams and be autonomous Experience with Hadoop, MPP DB platform other NoSQL (Mongo, Cassandra) technologies is a plus Experience with Google Analytics 360, Tag Manager and Big Query is a big plus Degree in a technical subject, e.g. data analytics, statistics, maths, computer science or equivalent Ihre Chance Apply now! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript C# / C++ / C SQL Sprachen: Deutsch Englisch Job ID: 1849',\n", + " '[\"Analytical Skills\", \"Writing\", \"Decisiveness\", \"Investigation\", \"Communications\", \"Reliability\", \"Integration\"]',\n", + " '[\"Data Quality\", \"Tooling\", \"NoSQL\", \"Query Languages\", \"Apache Cassandra\", \"Programming (Music)\", \"Google Analytics\", \"Computer Science\", \"Analytics\", \"Scholastic READ 180\", \"Integrated Data Viewer (IDV)\", \"Python (Programming Language)\", \"Data Extraction\", \"Maintainability\", \"E (Programming Language)\", \"Source (Game Engine)\", \"Tracking (Commercial Airline Flight)\", \"Dataset\", \"Knowledge-Based Systems\", \"Extract Transform Load (ETL)\", \"Issue Tracking Systems\", \"Building Design\", \"Minimum Data Set\", \"Swift (Programming Language)\", \"Business Requirements\", \"C (Programming Language)\", \"Logical Data Models\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Google Tag Manager\", \"Code Review\", \"Data Infrastructure\", \"Database Systems\", \"Data Structures\", \"Front End (Software Engineering)\", \"Transformation (Genetics)\", \"Validations\", \"Relational Databases\", \"Solution Design\", \"Algorithms\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Custom Backend\", \"Code Snippets\", \"Source Data\"]',\n", + " \"['English', 'Central Khmer']\"],\n", + " ['57',\n", + " 'agile java software engineer',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.78160131e-01 2.67130196e-01 5.70411026e-01 -1.30842522e-01\\n4.27903295e-01 -3.28722775e-01 1.97537974e-01 3.46200615e-01\\n-8.44845697e-02 -4.25652683e-01 -1.19350448e-01 -3.08613330e-01\\n-8.41952953e-03 1.19773164e-01 1.29989594e-01 2.47611746e-01\\n4.04780746e-01 1.38171464e-01 -9.55041274e-02 3.19136262e-01\\n1.78276554e-01 -1.57051891e-01 1.03102967e-01 6.74135029e-01\\n4.17927980e-01 7.01802000e-02 -6.03511296e-02 7.57620037e-02\\n-2.42297024e-01 -3.10805351e-01 4.87008274e-01 -3.54262851e-02\\n7.49409050e-02 -2.28499800e-01 1.24900505e-01 6.85209334e-02\\n-2.17767879e-01 8.75495002e-02 -5.37083223e-02 1.19578607e-01\\n-3.13948721e-01 -1.25577465e-01 7.07789510e-02 -1.04314327e-01\\n-2.19303936e-01 -3.89014184e-01 -7.39848893e-03 7.25653917e-02\\n1.89819425e-01 3.32725979e-02 -4.35602427e-01 3.50642622e-01\\n-2.00176999e-01 -2.84803778e-01 2.47689307e-01 5.43670714e-01\\n-1.55405909e-01 -5.20748377e-01 -3.24871689e-01 -2.50717580e-01\\n1.45558402e-01 -1.16749249e-01 8.02816227e-02 -2.44934991e-01\\n3.59537423e-01 6.29842058e-02 3.92465014e-03 3.93199325e-01\\n-7.70260811e-01 5.42437145e-03 -1.73387066e-01 -1.35564879e-01\\n-2.72316456e-01 -1.12519555e-01 -3.51108611e-01 -1.55232236e-01\\n-1.79539174e-01 4.36947197e-01 1.55413970e-01 1.08503610e-01\\n-1.17385410e-01 2.05146357e-01 -3.34686607e-01 2.76330650e-01\\n2.21717283e-01 3.08971316e-01 2.75659949e-01 2.52460808e-01\\n-4.36765432e-01 3.93524349e-01 2.42625788e-01 -3.19777071e-01\\n2.29935780e-01 1.46451071e-01 4.03820187e-01 -5.89570142e-02\\n1.41463429e-01 2.94590313e-02 -1.96779013e-01 1.65309638e-01\\n3.69472533e-01 -1.98846549e-01 -6.00538440e-02 2.01986847e-03\\n-7.43267685e-02 1.33583412e-01 4.98932041e-03 2.80165792e-01\\n-3.84351045e-01 5.49634755e-01 2.24019885e-02 -2.30682507e-01\\n-1.51326209e-01 -5.68269491e-01 -1.44323185e-01 1.39655024e-01\\n2.58465707e-02 1.59917668e-01 2.38786295e-01 2.27584794e-01\\n8.67428556e-02 9.90934074e-02 1.19210139e-01 9.16315436e-01\\n-1.28111094e-01 9.91545767e-02 -2.89951205e-01 3.57165664e-01\\n3.66935655e-02 -2.06005841e-01 2.23964259e-01 2.74577141e-01\\n1.07662916e-01 -1.02316022e-01 -1.50708601e-01 2.97133237e-01\\n4.31279764e-02 -3.11728954e-01 -2.41691485e-01 1.25943303e-01\\n-1.38290644e-01 -5.21051705e-01 6.39917731e-01 -3.27519234e-03\\n8.41241106e-02 6.24339879e-02 9.60209817e-02 -4.58950028e-02\\n-1.48156270e-01 1.59889594e-01 6.85542300e-02 1.09935053e-01\\n-2.69257754e-01 -2.52413243e-01 -3.06875736e-01 2.57043064e-01\\n-2.62502342e-01 1.46533608e-01 -1.23867430e-01 -4.90918569e-02\\n3.82819980e-01 6.09668866e-02 -2.25502297e-01 2.75058091e-01\\n-7.06931204e-02 2.13811733e-03 -1.17167935e-01 3.02860171e-01\\n-1.40975207e-01 1.25141680e-01 -2.06211321e-02 -1.34711638e-01\\n5.17798424e-01 2.26317540e-01 7.69846588e-02 -8.40425566e-02\\n3.47309917e-01 -3.58686633e-02 9.04811770e-02 -4.29619988e-03\\n-7.37084091e-01 4.08807814e-01 -4.82204109e-02 -1.06649905e-01\\n5.75965829e-02 -9.21495818e-03 1.65001914e-01 -2.82155931e-01\\n4.18692678e-02 -1.07451789e-01 -3.57686788e-01 -1.90091759e-01\\n-1.58616319e-01 -7.49249607e-02 4.68324453e-01 -3.91312480e-01\\n-1.26531288e-01 1.85602993e-01 -5.73490024e-01 1.19393408e-01\\n3.14777106e-01 1.93342060e-01 1.45430520e-01 1.44570008e-01\\n-1.11640222e-01 -5.11924684e-01 2.11566716e-01 -3.65166396e-01\\n-2.78891236e-01 2.79641569e-01 -3.12346190e-01 1.68257028e-01\\n2.17111349e-01 8.96758772e-03 -1.37938276e-01 1.41807094e-01\\n-4.42761257e-02 -9.20079127e-02 2.23289952e-01 9.25437510e-02\\n3.52800697e-01 -1.32203652e-02 -3.70376706e-01 5.63992143e-01\\n-2.03071401e-01 3.88557166e-01 1.52892739e-01 -8.03860903e-01\\n4.08387452e-01 3.94792020e-01 3.52213718e-02 -2.81041741e-01\\n6.98131740e-01 -2.74152398e-01 -4.28784601e-02 8.25850591e-02\\n-4.21643019e-01 -2.94504732e-01 1.57066926e-01 -1.86448097e-01\\n-2.19658628e-01 4.22987640e-01 5.47348894e-02 1.29318222e-01\\n2.49792367e-01 -1.30920902e-01 -1.07071862e-01 1.05863988e-01\\n-1.06433161e-01 -2.63647377e-01 -3.72839838e-01 2.37776581e-02\\n2.50276998e-02 -4.76436049e-01 -5.49099036e-02 -5.58836579e-01\\n-2.46918142e-01 -3.86386603e-01 -2.47049555e-01 2.15007216e-01\\n1.35691121e-01 1.16965301e-01 5.47121540e-02 -4.89609390e-02\\n-2.06927404e-01 -5.19196987e-01 1.23222694e-01 4.43304814e-02\\n3.43467891e-01 1.21826857e-01 -3.18867862e-02 -2.22710818e-02\\n3.42824534e-02 7.05453515e-01 -2.11628839e-01 6.15694211e-04\\n6.91623762e-02 8.28913972e-02 1.60337873e-02 -1.08357929e-01\\n-1.22740283e-04 3.91189247e-01 -3.09162945e-01 -1.56578310e-02\\n-1.42235488e-01 3.83666381e-02 3.65968645e-01 -6.36216179e-02\\n-3.55871111e-01 -3.20522130e-01 -1.06393434e-01 1.74282387e-01\\n-5.89847922e-01 -1.48637310e-01 6.87067688e-01 1.49589032e-01\\n6.67906851e-02 2.06769422e-01 1.42071083e-01 -4.09134775e-02\\n-2.27354795e-01 -1.03935920e-01 1.52507871e-01 1.56669114e-02\\n1.29046485e-01 1.95706829e-01 -1.56659871e-01 -5.51076889e-01\\n-3.72830391e+00 -1.71324745e-01 8.98214504e-02 -3.29631805e-01\\n1.52027756e-01 -1.86399892e-01 8.68831202e-02 -1.50878102e-01\\n-1.73397198e-01 4.08666395e-02 -1.14552237e-01 -1.56286731e-01\\n2.08279207e-01 1.94536641e-01 1.71355367e-01 2.57227272e-01\\n2.25260362e-01 -1.87849090e-01 4.88970848e-03 2.89439023e-01\\n-2.24580601e-01 -6.16548777e-01 2.29973063e-01 -6.47037476e-02\\n3.83559078e-01 3.53073716e-01 -4.00153965e-01 -1.12623185e-01\\n-2.75743514e-01 -1.97374463e-01 1.24730840e-01 -2.79241592e-01\\n3.31601012e-03 2.94604331e-01 1.66081578e-01 -8.70042741e-02\\n2.96152383e-01 -3.31744552e-01 6.27479628e-02 -3.89241219e-01\\n1.74452081e-01 -5.59645474e-01 -7.03067780e-02 5.43996431e-02\\n6.39945209e-01 -3.76391053e-01 1.90891057e-01 1.02454059e-01\\n7.95902759e-02 2.17858970e-01 -2.01346632e-02 -1.50116846e-01\\n-2.19345093e-01 -2.33722508e-01 -1.00256942e-01 -1.90459728e-01\\n5.33929169e-01 5.87556541e-01 -2.27276981e-01 8.02583061e-03\\n-6.55508935e-02 -3.36639315e-01 -4.93834257e-01 -3.57855290e-01\\n-2.26524517e-01 -1.04346208e-01 -5.96624136e-01 -5.67752659e-01\\n-1.71218097e-01 -9.10449252e-02 -4.40216959e-02 4.14147913e-01\\n-1.93744436e-01 -4.15538788e-01 -4.90681380e-02 -3.85631979e-01\\n7.86114857e-02 -4.94357534e-02 -5.37771452e-03 -1.25202924e-01\\n-2.06014395e-01 -5.09218276e-01 -7.52145275e-02 2.49828398e-02\\n-6.47674650e-02 -1.37344629e-01 3.04839045e-01 -9.76829082e-02\\n-3.16554099e-01 -4.87523109e-01 3.91679525e-01 1.28040938e-02\\n2.58817673e-01 2.10235849e-01 2.48568192e-01 1.72663972e-01\\n2.56440341e-01 -2.26009741e-01 1.26792520e-01 -4.11793888e-01\\n1.35020390e-01 7.07585961e-02 4.82337266e-01 -1.07088022e-01\\n1.18930280e-01 1.67146772e-01 -2.64577121e-01 -2.94025570e-01\\n3.76370728e-01 -3.30166705e-02 1.61806285e-01 -3.10271561e-01\\n3.22231591e-01 -1.36683941e-01 -2.80664504e-01 7.92777613e-02\\n3.83476205e-02 4.71915632e-01 -8.74610171e-02 -3.69709104e-01\\n-9.62346494e-02 5.35097003e-01 -1.88177824e-01 -1.67427104e-04\\n-2.11830974e-01 3.20973620e-02 -2.94778228e-01 3.28286707e-01\\n-4.83244881e-02 -1.06635749e-01 -3.32567900e-01 -1.86464563e-01\\n-6.96215853e-02 2.08774537e-01 2.94489890e-01 1.00182079e-01\\n-2.47118231e-02 -3.94922018e-01 -4.75246124e-02 8.75485912e-02\\n2.56851375e-01 2.84403503e-01 1.18227273e-01 -7.67369345e-02\\n8.29652101e-02 3.35600406e-01 -1.71246380e-01 1.55224189e-01\\n-3.13721806e-01 6.39763102e-02 -4.25272524e-01 -4.02639478e-01\\n-2.31986403e-01 -3.06628525e-01 -6.01680838e-02 2.21927524e-01\\n2.32626144e-02 -2.39521964e-03 2.18735505e-02 -3.03672373e-01\\n2.68668950e-01 6.27487525e-02 2.26384953e-01 2.74107873e-01\\n1.87287282e-03 4.94118541e-01 -7.84384727e-04 -3.94915901e-02\\n-3.00324678e-01 1.10802494e-01 -2.20425442e-01 -8.29102173e-02\\n3.37837753e-03 -4.44272190e-01 -1.32209752e-02 3.26972336e-01\\n5.79900220e-02 -2.86454082e-01 -5.97493835e-02 2.35195473e-01\\n-7.68666938e-02 -4.48539853e-01 -2.15840921e-01 1.13560982e-01\\n3.29568952e-01 5.07164150e-02 2.91123986e-01 -5.11142612e-01\\n8.33519250e-02 9.73212793e-02 -1.15607589e-01 5.45073807e-01\\n3.05423364e-02 3.50739323e-02 -5.52040674e-02 -3.14175189e-01\\n3.19339901e-01 -2.50681460e-01 3.33448537e-02 -8.31925198e-02\\n1.62728414e-01 -1.33304015e-01 -3.06916803e-01 -2.94076256e-03\\n3.52517673e-04 -1.00440748e-01 2.15996522e-02 -4.09355573e-02\\n-4.43158373e-02 2.01369636e-02 -5.02475560e-01 -3.23775202e-01\\n-2.57070422e-01 -9.67437550e-02 2.19932687e-03 -4.00352716e-01\\n-3.64234149e-02 -4.19948027e-02 -4.77411181e-01 3.94175589e-01\\n-1.46072611e-01 -4.90791455e-04 1.55977502e-01 -8.61729905e-02\\n-3.73163462e-01 -3.83569337e-02 2.16491953e-01 2.10918382e-01\\n-2.16345936e-01 -2.59070873e-01 -6.24600127e-02 -1.10474896e+00\\n2.63509244e-01 -2.46847384e-02 -7.20799789e-02 5.93402609e-02\\n-9.16685835e-02 -5.03946543e-01 1.96820080e-01 -4.12676513e-01\\n-5.27056418e-02 1.51656559e-02 -1.65168583e-01 -4.74302292e-01\\n-4.89118919e-02 5.62123209e-02 -2.26855174e-01 3.94708395e-01\\n-3.31402868e-01 3.31574947e-01 -1.03666954e-01 5.84355146e-02\\n-1.45087034e-01 -2.23123193e-01 1.06916204e-01 -4.24630284e-01\\n-3.09288025e-01 -2.31434837e-01 -2.15537310e-01 -1.70070767e-01\\n-8.82015750e-02 -2.00532913e-01 -3.83642726e-02 1.08000532e-01\\n2.51496464e-01 1.73931494e-01 -5.82006983e-02 -2.49837428e-01\\n1.08384199e-01 -5.00939012e-01 -4.36579511e-02 -2.82342821e-01\\n-6.20780326e-02 -1.26743168e-01 1.16164163e-01 1.11161567e-01\\n6.64132312e-02 -4.67193484e-01 3.77616435e-01 -1.61529690e-01\\n-2.80291766e-01 6.84437156e-02 2.38526743e-02 7.24026784e-02\\n3.74615192e-01 -4.14081722e-01 -9.04863402e-02 2.89408296e-01\\n1.19639106e-01 5.71670868e-02 2.04903811e-01 -4.17599566e-02\\n-1.32050589e-01 3.47151548e-01 -3.50301951e-01 9.01031047e-02\\n5.61449945e-01 8.06979015e-02 1.73084512e-01 2.13066146e-01\\n2.37463295e-01 3.62316310e-01 4.74107653e-01 -5.36775813e-02\\n-5.19113988e-02 4.11155611e-01 7.61439726e-02 -6.19301081e-01\\n1.48386478e-01 4.43577990e-02 -3.26468527e-01 -2.10809857e-01\\n6.45228148e-01 4.67015415e-01 -2.88062423e-01 -2.36867055e-01\\n-2.73070455e-01 -2.52777070e-01 8.47028643e-02 -7.24041313e-02\\n2.25451529e-01 -2.22852856e-01 4.90953773e-01 -1.77075304e-02\\n1.87141493e-01 4.55277324e-01 -2.10530549e-01 -3.59930068e-01\\n3.67894806e-02 2.05321908e-01 8.33088607e-02 2.98135519e-01\\n-2.14313731e-01 2.41460413e-01 -1.35950856e-02 2.01801136e-01\\n-7.62269348e-02 1.24031857e-01 6.46254346e-02 8.95379260e-02\\n2.02929661e-01 -1.92856491e-02 2.75060028e-01 4.51842755e-01\\n3.41969728e-01 4.15778846e-01 2.44980484e-01 9.40669477e-02\\n4.63562518e-01 4.92498696e-01 4.45984185e-01 2.47861713e-01\\n-1.06808068e-02 4.38526273e-02 1.32200215e-02 -1.39781699e-01\\n2.45464474e-01 3.39424640e-01 -6.48410097e-02 8.55444133e-01\\n4.43055153e-01 2.56891429e-01 7.40794480e-01 -5.58294594e-01\\n-3.70125920e-01 -1.38275921e-01 3.91056746e-01 -3.96575600e-01\\n-1.15958788e-01 9.43519846e-02 -2.07092538e-01 1.77408889e-01\\n-4.14318413e-01 -2.09130749e-01 -7.58591145e-02 3.29313502e-02\\n1.40814796e-01 -6.35308400e-02 -2.50638902e-01 -1.40360564e-01\\n-2.42124721e-01 -1.93662345e-01 -5.09034753e-01 6.81995153e-02\\n-1.54312879e-01 -2.45305330e-01 -1.49871469e-01 -1.85353816e-01\\n-4.32178490e-02 -4.06291187e-01 -1.60035998e-01 1.19264856e-01\\n1.79342508e-01 -1.68786258e-01 -1.27332389e-01 -1.46234676e-01\\n2.40853474e-01 2.32593626e-01 5.55238843e-01 2.75885966e-02\\n8.89078528e-02 -2.35266656e-01 -1.19881399e-01 1.21910468e-01\\n1.81221217e-01 1.08767092e-01 3.05743776e-02 3.64834219e-01\\n-3.27006608e-01 -2.13956803e-01 -3.76910903e-02 4.96911436e-01\\n-4.61899966e-01 6.40120506e-02 2.65698172e-02 2.82695562e-01\\n3.71912271e-02 1.06316939e-01 -1.28976256e-01 6.62880391e-02\\n-1.35359108e-01 -4.73220557e-01 2.51688987e-01 -4.41740490e-02\\n-2.14302480e-01 2.74957735e-02 6.89772815e-02 1.31073162e-01\\n-2.23782688e-01 -1.64586231e-01 1.17825065e-02 1.20771073e-01\\n2.76376367e-01 2.89230853e-01 -1.85092300e-01 -3.79303008e-01\\n-3.58382463e-01 1.56327546e-01 -3.67394924e-01 1.85198903e-01\\n-6.29785135e-02 2.41257101e-01 1.21135108e-01 4.42162305e-02\\n2.33979389e-01 -5.77633129e-03 -9.62941125e-02 -1.94045275e-01\\n-2.80786693e-01 -2.05623299e-01 8.68445262e-02 4.49230149e-02\\n1.50801226e-01 -3.96348894e-01 -1.31439054e-02 -1.31574750e-01\\n-1.96709916e-01 -3.87406707e-01 -4.14424241e-02 -1.99492127e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for an Agile Java Software Engineer. This role is permanent position based in Basel Canton. Your Role: < >nsure high-quality functionality of applications. Independently develop solution variants in coordination with customers. Further develop applications within a Scrum team. Undertake programming with Java8. Implement backend service development with Java EE. Utilize Angular in a digitalized environment Integrate different systems in a high-performance & flexible manner. Your Skills: Several years of software development experience. Skills & experience in Java8, Java EE & Angular. A convincing performance record in successfully completed software projects. Experienced in agile methodologies. Scrum Master experience is considered a plus Ideally experienced in testing. Very interested in software architecture. Your Profile: University degree in computer science. Committed, ambitious & enthusiastic personality. Convincing, strong communication skills & a team-player. Innovative, analytical & both solution & service orientated. Entrepreneurial thinking, goal-driven & a strong willingness to learn. A high affinity for agility & fun in the development of high-quality software. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Verbal Communication Skills\", \"Coordinating\", \"Service-Orientation\", \"Willingness To Learn\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Application Development\", \"Agility\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Integrated Language Environments\", \"High Performance Computing\", \"Service Development Studio\", \"Software Quality Management\", \"Java EE Application\", \"Component Object Model (COM)\", \"Scrum (Software Development)\", \"Idealization\", \"Software Engineering\", \"Agile Methodology\", \"Digitization\", \"Personalization\", \"Software Architecture\", \"Receivables\", \"Angular (Web Framework)\", \"Software Development\", \"Software Project Management\", \"Java (Programming Language)\", \"Custom Backend\"]',\n", + " \"['English', 'Haitian', 'Danish']\"],\n", + " ['75',\n", + " 'junior data-scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.65259391e-01 2.37471595e-01 4.02921498e-01 1.00243151e-01\\n4.03606445e-01 -2.84495324e-01 5.22616357e-02 2.92965204e-01\\n-6.68480694e-02 -3.47696990e-01 -1.38469741e-01 -2.65816092e-01\\n-1.49815634e-01 1.45849427e-02 -4.01442274e-02 3.89594674e-01\\n2.18470454e-01 9.74991247e-02 -4.37254608e-02 3.25632930e-01\\n1.81184068e-01 -1.25458285e-01 -1.57004997e-01 7.08373964e-01\\n4.39376473e-01 3.98021676e-02 -8.90317783e-02 1.05163857e-01\\n-2.12917149e-01 -1.11826278e-01 4.44480598e-01 1.41342506e-01\\n-1.13332547e-01 -2.81599075e-01 8.90250504e-02 9.67258215e-02\\n-2.39634782e-01 4.57551219e-02 5.07330671e-02 9.06079784e-02\\n-3.82302314e-01 -2.56410003e-01 -1.10499486e-01 -3.68735217e-03\\n-9.31458771e-02 -2.26927370e-01 1.52826801e-01 4.39070351e-03\\n1.07097767e-01 -7.23425597e-02 -6.30154312e-01 3.55206311e-01\\n-2.56618470e-01 -1.98945343e-01 1.73552498e-01 4.54097092e-01\\n8.23455676e-02 -4.97449309e-01 -5.19702494e-01 -2.60333955e-01\\n3.05381287e-02 -2.00251862e-01 6.28850162e-02 -1.77313492e-01\\n3.98115993e-01 2.79472023e-02 6.15051985e-02 4.02017355e-01\\n-7.28873968e-01 7.41557823e-03 -2.63501316e-01 -4.84086648e-02\\n-4.30597782e-01 -8.93377960e-02 -1.20950200e-01 -5.96159995e-02\\n-1.27885327e-01 2.70291537e-01 1.03023320e-01 1.40650839e-01\\n-1.70349151e-01 3.02430868e-01 -7.06722513e-02 2.56429732e-01\\n3.21581066e-01 1.75991148e-01 2.81737357e-01 3.24973732e-01\\n-4.89475518e-01 4.25270587e-01 -1.50225824e-02 -3.34316194e-01\\n3.03237975e-01 1.16709329e-01 4.48259056e-01 5.99275343e-02\\n8.83978680e-02 8.29369128e-02 -1.57754958e-01 1.40945390e-01\\n1.86626792e-01 -4.05217469e-01 -9.57964733e-02 -3.45108733e-02\\n-1.46836758e-01 1.01107834e-02 5.66654541e-02 8.18052068e-02\\n-3.83570760e-01 4.67964560e-01 2.32737124e-01 -2.30423406e-01\\n-7.10786730e-02 -4.45096463e-01 -7.42365271e-02 7.62551725e-02\\n-3.62130404e-02 1.73038617e-03 3.35518599e-01 1.45967498e-01\\n1.32403955e-01 2.93680821e-02 6.45787418e-02 7.67333925e-01\\n-1.38512803e-02 1.48196429e-01 -1.33719325e-01 2.53971666e-01\\n1.76519722e-01 -4.10493076e-01 2.78548479e-01 4.15549308e-01\\n6.17337637e-02 -1.20927528e-01 -1.78697869e-01 1.86371520e-01\\n-5.07205315e-02 -9.44609344e-02 -3.12949806e-01 7.79691339e-02\\n-2.44871303e-02 -3.45233411e-01 6.34652555e-01 1.47559732e-01\\n2.92232275e-01 5.22346348e-02 6.16950653e-02 -5.70451990e-02\\n-4.04910706e-02 2.30516970e-01 3.09516694e-02 2.42248103e-01\\n-3.53409648e-01 -1.98094949e-01 -1.25594482e-01 2.58810282e-01\\n-1.63262054e-01 2.34451756e-01 -1.02877468e-01 -6.26270175e-02\\n2.31362343e-01 4.11764123e-02 -3.43174934e-01 2.84666866e-01\\n8.91182199e-02 -1.65422589e-01 -1.30116776e-01 3.59108597e-01\\n4.61961962e-02 1.18675932e-01 -5.63206784e-02 -2.24686936e-01\\n6.92797542e-01 2.54175246e-01 1.21430248e-01 -5.56592420e-02\\n4.50366318e-01 -1.50836751e-01 2.12357536e-01 1.33042827e-01\\n-6.79938853e-01 3.56312841e-01 -1.29048126e-02 -1.50303781e-01\\n-3.19864936e-02 5.99157158e-03 2.69934326e-01 -4.61429715e-01\\n6.45606918e-03 -8.65569189e-02 -4.53485250e-01 -2.32634664e-01\\n-2.33120561e-01 1.62114874e-02 3.45313311e-01 -4.74464864e-01\\n-1.29196629e-01 1.55474290e-01 -5.26848435e-01 -1.73454657e-01\\n2.03691453e-01 1.28180295e-01 2.25429609e-01 1.29713953e-01\\n-2.86477525e-02 -4.43474978e-01 -2.34237462e-02 -5.23890615e-01\\n-4.57848549e-01 -1.17869889e-02 -3.08330685e-01 3.78769606e-01\\n1.54169202e-01 -9.41331405e-03 -2.89833963e-01 1.67355582e-01\\n-1.91053510e-01 -1.01237044e-01 1.78767517e-01 8.32180977e-02\\n1.53405204e-01 1.36301341e-02 -4.04747248e-01 3.55580211e-01\\n-2.25095466e-01 5.46011329e-01 2.31024727e-01 -7.32230246e-01\\n5.74651301e-01 3.48143429e-01 2.07070895e-02 -4.09685999e-01\\n4.73898530e-01 -3.27840418e-01 3.63477729e-02 1.85083807e-01\\n-3.49963963e-01 -3.38657081e-01 1.90444514e-01 -1.44300908e-01\\n-3.23285162e-01 5.11384249e-01 1.08282998e-01 8.71376917e-02\\n1.48188993e-01 -2.82800883e-01 6.10570982e-02 1.45225093e-01\\n-7.57299289e-02 -2.24193722e-01 -3.63301039e-01 -4.95508052e-02\\n-2.18269620e-02 -3.97020608e-01 -1.81401312e-01 -3.76587272e-01\\n-1.54027864e-01 -4.16910112e-01 -4.01245415e-01 4.10874486e-01\\n1.52734071e-01 2.89439484e-02 9.42164063e-02 2.42756754e-02\\n-8.22035149e-02 -6.66109085e-01 7.62750357e-02 5.69109991e-02\\n4.83015925e-01 1.79649577e-01 -2.92398874e-02 -1.36256456e-01\\n2.00605895e-02 6.46065176e-01 -3.02666903e-01 -4.36799318e-01\\n1.42087817e-01 1.98449224e-01 9.02390946e-03 -1.90455452e-01\\n2.39054160e-03 4.17563230e-01 -1.84093431e-01 1.57943424e-02\\n-2.09399968e-01 -7.40374625e-02 4.56414938e-01 -4.05411050e-02\\n-3.62800658e-01 -2.12435156e-01 -3.84178460e-02 1.91970006e-01\\n-5.10101199e-01 -2.35967934e-01 4.69315648e-01 2.65499353e-01\\n1.52784169e-01 1.12834655e-01 9.30865631e-02 1.44220725e-01\\n-1.98500738e-01 -3.55066508e-01 1.59675568e-01 1.02170616e-01\\n9.58727077e-02 2.72374731e-02 -1.09751344e-01 -7.05892682e-01\\n-3.57860398e+00 -1.54456064e-01 1.17296532e-01 -3.58474612e-01\\n1.57040104e-01 8.60425830e-03 1.75232008e-01 -1.40169248e-01\\n-3.67234439e-01 1.12563841e-01 -2.73984879e-01 -2.06158653e-01\\n7.84678832e-02 1.99624792e-01 2.62721181e-01 2.44374588e-01\\n2.89620131e-01 -3.38543862e-01 -8.31254274e-02 3.22546363e-01\\n-1.89086691e-01 -5.33013940e-01 1.56328768e-01 -8.07926357e-02\\n3.78168613e-01 2.36845106e-01 -3.02280843e-01 -6.91014752e-02\\n-3.36892247e-01 -3.28467816e-01 7.63467103e-02 -3.27701390e-01\\n-1.06256440e-01 1.78985268e-01 1.40661627e-01 -1.19899362e-01\\n4.04418372e-02 -4.33135271e-01 -5.54569028e-02 -4.21407878e-01\\n1.09078303e-01 -5.13788640e-01 6.36009648e-02 -1.57931134e-01\\n6.95812464e-01 -2.97442794e-01 2.68545449e-01 1.59259781e-01\\n1.96441963e-01 1.76789165e-01 5.63376211e-02 6.63564131e-02\\n-8.24726969e-02 -3.57424796e-01 -6.62016049e-02 -1.17699362e-01\\n5.42770445e-01 5.21977425e-01 -3.21123719e-01 -5.21274768e-02\\n8.28349143e-02 -3.39454353e-01 -2.71534413e-01 -3.85348678e-01\\n-5.05540669e-02 -4.16322611e-02 -6.14069104e-01 -4.93425310e-01\\n-3.02970201e-01 -7.09245279e-02 -1.46553800e-01 6.60475373e-01\\n-3.67950350e-01 -4.86978084e-01 4.62493412e-02 -5.35368860e-01\\n-2.33992692e-02 -2.45249316e-01 1.64906070e-01 -7.92293847e-02\\n-3.86970997e-01 -5.95680892e-01 -2.39894707e-02 -1.20241150e-01\\n-1.54713750e-01 -2.55245835e-01 1.55582979e-01 -3.65699567e-02\\n-3.07641327e-01 -3.54601860e-01 4.15111959e-01 1.21851481e-01\\n3.56321335e-01 1.89730749e-01 2.18801945e-01 1.54360786e-01\\n2.89261252e-01 9.22313891e-03 5.01034781e-02 -3.27154517e-01\\n9.12655592e-02 -2.59304605e-02 4.55766946e-01 -2.09569559e-01\\n-6.88465759e-02 7.36388937e-02 -3.07366729e-01 -1.92095235e-01\\n3.97151887e-01 2.92154141e-02 6.84614927e-02 -1.41952738e-01\\n4.20645714e-01 -2.76961416e-01 -1.63110688e-01 1.76148131e-01\\n8.92080739e-03 5.69060981e-01 5.61799332e-02 -4.54283863e-01\\n-1.40724540e-01 4.72900361e-01 -1.35789603e-01 -5.21575995e-02\\n8.16516578e-02 1.59935027e-01 -2.29043782e-01 4.82896678e-02\\n-1.62993316e-02 -2.80953765e-01 -2.22062886e-01 -9.15302783e-02\\n2.40725428e-02 1.02243997e-01 2.53852516e-01 2.19810177e-02\\n-1.28540620e-01 -2.88948596e-01 -1.95365593e-01 1.83673859e-01\\n2.45797560e-01 4.44608182e-01 1.13275096e-01 -1.45817235e-01\\n-9.22705010e-02 3.28213841e-01 -3.68295051e-02 1.32626116e-01\\n-1.91138089e-01 1.81276709e-01 -4.41945881e-01 -2.07546085e-01\\n-1.39557451e-01 -2.81789333e-01 1.43330291e-01 2.63030827e-01\\n9.53998193e-02 -3.55446674e-02 9.50289518e-02 -5.05297959e-01\\n3.64702284e-01 1.42178252e-01 2.39070311e-01 1.43523350e-01\\n3.79263423e-02 5.00493348e-01 4.00093049e-02 -1.58896729e-01\\n-3.99316192e-01 -7.93984458e-02 -1.11482248e-01 -1.33338869e-01\\n1.23052225e-01 -4.30563211e-01 -7.57423937e-02 2.88160175e-01\\n6.41240627e-02 -2.46326774e-01 -1.88240066e-01 4.27504361e-01\\n5.40549457e-02 -2.18872935e-01 -2.79368877e-01 -4.71048057e-02\\n3.06162477e-01 -1.15522444e-01 1.47318408e-01 -4.01239514e-01\\n-9.33479220e-02 6.45447001e-02 -2.84312088e-02 3.69291037e-01\\n1.59423083e-01 2.35275198e-02 -9.28477794e-02 -1.65495470e-01\\n4.37572420e-01 -2.25587916e-02 -9.69065428e-02 -1.55799881e-01\\n1.39202788e-01 -2.56935745e-01 -5.01692176e-01 5.93043044e-02\\n1.95458364e-02 -7.32901692e-02 9.97361988e-02 9.54829752e-02\\n4.90863882e-02 5.54760285e-02 -4.27533090e-01 -2.42149517e-01\\n-3.19615841e-01 -2.33973026e-01 -6.58251047e-02 -3.48971188e-01\\n-1.42133189e-02 -7.45663643e-02 -5.57183385e-01 2.73410231e-01\\n-3.88336629e-01 -5.00232615e-02 1.06363766e-01 1.16150804e-01\\n-3.62644225e-01 -6.84799775e-02 1.04726546e-01 2.18035460e-01\\n-3.36113334e-01 -2.87639201e-01 4.60156538e-02 -9.57406104e-01\\n1.70239821e-01 8.76221061e-02 -1.07657909e-01 5.42641059e-02\\n-1.63819513e-03 -4.52206135e-01 1.18598230e-01 -4.35451180e-01\\n9.50971805e-03 -8.01053867e-02 -2.58931994e-01 -2.85081565e-01\\n4.24206778e-02 -2.59201527e-01 -3.68386358e-01 3.84738505e-01\\n-3.13146204e-01 3.70339304e-01 -8.41901824e-02 6.82748109e-02\\n2.14676391e-02 -2.43325233e-01 1.67327106e-01 -5.71973741e-01\\n-4.01841313e-01 -2.72359997e-01 -3.27504039e-01 -2.40148768e-01\\n-9.89156403e-03 -3.05033743e-01 -2.41536587e-01 9.60338265e-02\\n2.73960263e-01 1.72606826e-01 -2.42198825e-01 -2.49932870e-01\\n1.65913831e-02 -6.25581741e-01 -4.21068594e-02 -2.32592821e-01\\n-7.67148957e-02 -1.54345244e-01 5.62568270e-02 -4.58587781e-02\\n7.54598528e-02 -5.04122555e-01 3.11357588e-01 -4.24329668e-01\\n-2.00700343e-01 8.13712832e-03 2.19845563e-01 8.46769512e-02\\n2.97267556e-01 -5.95009923e-01 -5.79856597e-02 3.08384418e-01\\n2.34660968e-01 8.14508572e-02 2.49725834e-01 1.62725411e-02\\n-1.08683653e-01 3.41774851e-01 -3.14241529e-01 1.34723827e-01\\n5.91243804e-01 6.94597065e-02 -1.14463463e-01 1.98782101e-01\\n2.70590574e-01 3.58612359e-01 5.90449989e-01 9.28065032e-02\\n4.15862612e-02 2.86983401e-01 6.43214732e-02 -4.33481634e-01\\n-8.49271566e-03 3.03755663e-02 -1.56749398e-01 -2.07867876e-01\\n5.57246685e-01 5.11646628e-01 -6.33273780e-01 -1.81267932e-01\\n-1.18068896e-01 -2.21558914e-01 1.81693301e-01 -2.89348364e-02\\n5.24213351e-02 -1.35913014e-01 5.39654374e-01 1.67307239e-02\\n7.00709149e-02 5.47003567e-01 -1.78729877e-01 -2.22354069e-01\\n-5.52947223e-02 7.47394785e-02 7.27902502e-02 4.99995947e-01\\n-6.96820095e-02 1.92893177e-01 -1.30753741e-01 7.53141716e-02\\n7.35032931e-02 3.09915215e-01 6.63059354e-02 1.23925850e-01\\n1.85047567e-01 3.80894691e-02 3.28887641e-01 4.27067935e-01\\n2.13729516e-01 4.70866084e-01 3.06196243e-01 9.29939970e-02\\n3.70843947e-01 6.15273774e-01 4.82394636e-01 -1.00984117e-02\\n-7.74666369e-02 -2.83566732e-02 1.39895871e-01 -1.17272839e-01\\n3.33040178e-01 4.18442249e-01 7.43177757e-02 8.05904925e-01\\n4.13264871e-01 2.60098010e-01 6.52689040e-01 -6.50068641e-01\\n-2.80000687e-01 9.07276720e-02 4.24983650e-01 -1.18952602e-01\\n-7.96879008e-02 1.52733222e-01 -2.36040607e-01 3.10547143e-01\\n-5.33010364e-01 -4.20841500e-02 2.41075903e-02 9.64438990e-02\\n2.44837597e-01 -5.09312637e-02 -2.05003366e-01 1.40806571e-01\\n-1.82958841e-01 -8.03655535e-02 -4.05690342e-01 -1.37749106e-01\\n-2.54208595e-01 -1.34888753e-01 -6.43124580e-02 -1.56268910e-01\\n1.78459305e-02 -3.27132881e-01 1.87085848e-02 8.74587744e-02\\n2.55218774e-01 -1.36147022e-01 -1.16964810e-01 -1.30390555e-01\\n2.34537989e-01 3.22108567e-01 4.19020355e-01 -8.30409229e-02\\n9.47498530e-02 -1.58502638e-01 -2.52952605e-01 1.81522489e-01\\n1.04169264e-01 4.05840836e-02 6.30686954e-02 2.25942880e-01\\n-2.13793829e-01 -4.27678674e-02 1.62121281e-01 4.09961969e-01\\n-3.88063490e-01 1.48173422e-01 -4.39369120e-02 3.11749399e-01\\n4.87943441e-02 1.76556975e-01 -2.56209075e-01 -3.74992788e-02\\n-2.42193148e-01 -5.11981249e-01 3.20799470e-01 -6.31775111e-02\\n-1.34411916e-01 1.51678413e-01 1.59209400e-01 3.32274228e-01\\n-2.56847143e-01 -4.02567089e-02 -8.80651269e-03 1.46502361e-01\\n-6.76369369e-02 2.87486404e-01 -1.24705561e-01 -3.13114911e-01\\n-2.28602156e-01 2.45329753e-01 -1.40167087e-01 5.90375289e-02\\n-1.95922107e-01 3.12457383e-01 6.56343922e-02 6.26347885e-02\\n3.17683429e-01 -9.38898977e-03 -2.17722446e-01 -1.97292104e-01\\n-3.64258289e-01 -1.21989205e-01 1.43814981e-01 8.17646086e-02\\n1.65961280e-01 -4.60202575e-01 -9.60230604e-02 -2.33497858e-01\\n-8.55634734e-02 -2.00792432e-01 7.28481337e-02 2.38590837e-02]]',\n", + " 'Job Informationen RESPONSIBILITIES: - work closely with other engineering team members, our product team members, and other stakeholders. - implement, test & document new climate change risk computations. - control the data quality at all computational steps. - employ agile development and rapid prototyping techniques. - promote best engineering practices to ensure quality assurance. - promote best team communication practices and train employees. - anticipate problems/opportunities and adapt to new challenges. OUR TECHNOLOGY STACK: - git - Python 3 - Django - PostgreSQL - Celery - UNIX - YouTrack YOU: - have experience in data manipulation and software development, particularly Python. - are interested in modern web technologies. Experience with Django is a big plus. - are a strong logical thinker. - interested in data quality management and project management. - have a Swiss work permit. - love to organize, communicate and collaborate. - would like to join a dedicated, technically savvy and enthusiastic team. - enjoy all aspects of a start-up environment. Benötigte Skills UNIX PostgreSQL Python Test Junior Konzeptionell / Analytisch',\n", + " '[\"Collaboration\", \"Communications\", \"Quality Assurance\", \"Adaptability\"]',\n", + " '[\"Django (Web Framework)\", \"Integrated Product Team\", \"Data Quality\", \"Software Development\", \"Project Management\", \"PostgreSQL\", \"Data Manipulation\", \"Python (Programming Language)\", \"Climate Change Mitigation\", \"Git Flow\", \"YouTrack\", \"Community Organizing\", \"Unix\", \"Rapid Prototyping\", \"Agile Product Development\", \"Controllability\", \"Technical Savvy\", \"Quality Management\"]',\n", + " \"['English']\"],\n", + " ['35',\n", + " 'project manager change control - ballaigues, switzerland',\n", + " 'Ballaigues',\n", + " 'Healthcare Product Manufacturing',\n", + " 'www.dentsplysirona.com',\n", + " '[[-1.84645727e-01 3.13790977e-01 4.66458857e-01 -1.53860360e-01\\n4.18055177e-01 3.52161527e-02 1.04506262e-01 3.77356559e-01\\n9.78349149e-03 -5.31103015e-01 -1.05764158e-02 -3.76608729e-01\\n9.30171907e-02 3.57260495e-01 1.12422600e-01 3.97305042e-01\\n3.95113736e-01 7.79752359e-02 -1.09135091e-01 3.33693027e-01\\n-1.01408795e-01 -1.99804455e-01 2.18506604e-01 8.74046624e-01\\n3.69173646e-01 -1.06594171e-02 -9.47334170e-02 -5.72994873e-02\\n-2.22343802e-01 -2.00983033e-01 4.78578091e-01 2.06905287e-02\\n-2.26208344e-01 -4.30472732e-01 7.92281330e-02 7.97208101e-02\\n-2.27476746e-01 -1.73852950e-01 -2.01787844e-01 1.10723272e-01\\n-5.91382980e-01 -2.44014174e-01 -1.43932372e-01 2.58774497e-02\\n-3.23120445e-01 -2.50614107e-01 -3.82641107e-02 -3.94377485e-02\\n2.70336568e-01 1.68963328e-01 -4.86056447e-01 6.50876015e-02\\n-3.77530903e-01 -2.26628140e-01 3.14617753e-01 5.76608062e-01\\n-4.78843674e-02 -3.18338811e-01 -6.85431480e-01 -3.59097660e-01\\n6.52582501e-04 -1.10413499e-01 5.73555455e-02 -3.52342129e-01\\n2.59592712e-01 9.85476822e-02 6.89226389e-02 2.79916108e-01\\n-8.48283648e-01 -1.26033068e-01 -3.59622389e-01 -1.35431886e-01\\n-1.77961171e-01 -1.20132707e-01 -2.12970823e-01 -9.16205198e-02\\n-3.35602224e-01 3.65115702e-01 1.71880379e-01 6.18759952e-02\\n-1.51253119e-01 3.51545900e-01 -1.97518170e-01 4.66602445e-01\\n1.13407962e-01 2.75801539e-01 2.93954790e-01 2.62581259e-01\\n-2.65407413e-01 5.18979490e-01 -1.47166019e-02 -2.71689653e-01\\n2.89825559e-01 1.07620180e-01 2.60436803e-01 -1.56124502e-01\\n2.56363899e-01 6.00264072e-02 -3.33849370e-01 3.12823176e-01\\n2.41048276e-01 -2.64382988e-01 1.20878547e-01 -1.24791175e-01\\n7.03004450e-02 -5.72720729e-02 1.66985720e-01 6.17712960e-02\\n-3.63255829e-01 3.98907304e-01 1.46304518e-01 -3.49948823e-01\\n-3.08756948e-01 -3.90558720e-01 2.64782477e-02 1.37200356e-01\\n-1.98224932e-02 2.30713915e-02 3.43869366e-02 1.20976716e-02\\n2.70910203e-01 -1.43966943e-01 5.92914298e-02 7.35607266e-01\\n-1.30847827e-01 4.93135005e-02 -2.92023361e-01 2.38328904e-01\\n-9.98833403e-03 -2.25749314e-01 1.72163755e-01 1.83404058e-01\\n-1.73846185e-01 -1.33416012e-01 -2.53383756e-01 3.21501821e-01\\n3.44794914e-02 -2.90222019e-01 -1.59317642e-01 1.94370449e-01\\n5.72747812e-02 -3.69436681e-01 4.50347453e-01 -5.51766828e-02\\n2.28707880e-01 -1.50439203e-01 2.75334120e-02 -4.75746989e-02\\n-6.28176928e-02 5.96789606e-02 2.38983393e-01 1.44950837e-01\\n-1.83393359e-01 -2.38970339e-01 -1.79849789e-02 -5.88390678e-02\\n-4.01569337e-01 1.53627902e-01 -8.59421864e-02 -1.49899155e-01\\n1.95538580e-01 4.09964919e-02 -1.77190661e-01 2.68830508e-01\\n-1.71934485e-01 3.08272503e-02 -7.65683353e-02 3.93049330e-01\\n-3.01680684e-01 2.11846188e-01 -1.11492574e-02 -1.40904516e-01\\n6.06538832e-01 1.11099795e-01 3.35924566e-01 2.65760198e-02\\n3.55467200e-01 1.10997036e-01 1.08061343e-01 9.24652219e-02\\n-7.14544296e-01 4.40607995e-01 -4.55961265e-02 -9.29781944e-02\\n2.17360198e-01 -2.41267622e-01 4.24851835e-01 -2.79067248e-01\\n1.04915150e-01 -1.22131996e-01 -2.91652054e-01 -2.87106633e-01\\n-7.09936395e-02 -1.66927353e-02 2.24254414e-01 -2.83664048e-01\\n-1.08533159e-01 1.53667867e-01 -5.23425817e-01 -2.25271299e-01\\n3.38189304e-02 2.65045822e-01 -2.82399170e-02 1.36599258e-01\\n-2.70546794e-01 -4.36563253e-01 1.21123508e-01 -4.31404412e-01\\n-1.31373301e-01 6.09647110e-02 -2.72032708e-01 6.25330955e-02\\n7.17395544e-03 5.15464172e-02 -1.84412207e-02 1.54377744e-02\\n-1.96467847e-01 -4.44229208e-02 -7.35276714e-02 -1.65370494e-01\\n2.00894713e-01 8.97585303e-02 -2.37043232e-01 3.66493285e-01\\n-1.72866613e-01 5.50346613e-01 -1.03730366e-01 -8.40902328e-01\\n3.95759583e-01 5.18534780e-01 6.80476055e-02 -3.14728498e-01\\n4.53857303e-01 -3.14289063e-01 -7.89228380e-02 2.63119712e-02\\n-3.80263299e-01 -1.96343124e-01 1.94567412e-01 -3.83930653e-01\\n-2.12966949e-01 3.88114929e-01 5.95433190e-02 1.62700593e-01\\n3.13337684e-01 -2.01529756e-01 -4.66018356e-02 2.45095640e-02\\n-1.05790943e-01 -2.10855082e-01 -5.62389374e-01 -3.16118568e-01\\n-1.57493830e-01 -2.20740676e-01 -7.45753348e-02 -4.88158643e-01\\n-1.11407176e-01 -2.59047329e-01 -1.42449617e-01 -5.44775501e-02\\n2.67964125e-01 5.14565222e-02 -6.12127781e-03 4.61335629e-02\\n-7.67190009e-02 -6.61457896e-01 5.44726700e-02 1.45193249e-01\\n3.48141849e-01 1.19762801e-01 1.65659592e-01 1.31395414e-01\\n5.48837855e-02 5.57274640e-01 -2.87403494e-01 -1.62930995e-01\\n1.39284447e-01 2.24446088e-01 6.66060746e-02 -1.12290934e-01\\n1.58100709e-01 2.87533492e-01 -2.29492098e-01 -2.17036009e-02\\n-8.76578093e-02 -1.85488202e-02 3.24690104e-01 -6.91105574e-02\\n-2.91154563e-01 -8.59269202e-02 -8.82758126e-02 -5.47061488e-02\\n-4.76589143e-01 -2.04709083e-01 4.18346167e-01 -2.93522887e-03\\n5.47498614e-02 1.34079903e-01 -1.50107630e-02 7.56811723e-03\\n-1.93159521e-01 -3.23214650e-01 3.73953491e-01 2.04077065e-02\\n2.56806761e-02 1.53472111e-01 1.39222890e-01 -7.13111043e-01\\n-3.37653112e+00 -1.06220558e-01 5.73568493e-02 -1.92644313e-01\\n4.41990256e-01 -1.94569573e-01 1.91812485e-01 6.08306983e-03\\n-3.05028886e-01 1.58673644e-01 1.78798772e-02 -4.83931303e-02\\n2.07327902e-01 9.44557488e-02 1.38021588e-01 2.25795418e-01\\n1.39226049e-01 -1.67035773e-01 4.42020856e-02 4.12288845e-01\\n4.73488793e-02 -8.39409351e-01 1.67033985e-01 -6.75404891e-02\\n2.18167648e-01 1.93010092e-01 -3.71742129e-01 -3.62688340e-02\\n-2.97940969e-01 -1.57876298e-01 -4.38457802e-02 -2.24612996e-01\\n-1.68822348e-01 2.10909829e-01 3.08930188e-01 -1.21165857e-01\\n-2.34291740e-02 -3.56496513e-01 -2.62867153e-01 -6.01278186e-01\\n2.90515631e-01 -5.85058689e-01 -1.18642621e-01 -1.26978606e-01\\n6.33962452e-01 -1.28822923e-01 8.12933296e-02 9.92898792e-02\\n9.14590806e-02 1.98267311e-01 3.68089885e-01 5.17647043e-02\\n-1.71627805e-01 -1.48933560e-01 -5.55741861e-02 -2.12604627e-01\\n5.53425550e-01 2.98654228e-01 -1.84153900e-01 -9.25747082e-02\\n6.38462231e-03 -2.37214595e-01 -5.12214422e-01 -1.19460061e-01\\n-4.05071378e-02 -1.95707172e-01 -6.37990117e-01 -3.64400506e-01\\n-2.02736080e-01 -1.53684288e-01 -8.66343081e-03 6.97330594e-01\\n-4.57485110e-01 -2.23038226e-01 -1.16861388e-01 -5.27572989e-01\\n4.13276255e-01 -1.79830208e-01 -2.47265548e-02 -2.98641860e-01\\n-1.74613893e-01 -4.03933525e-01 6.19093627e-02 5.31499982e-02\\n-3.12031396e-02 -3.30452621e-01 1.13618799e-01 7.42588192e-04\\n-2.95646608e-01 -5.22965610e-01 4.23454434e-01 1.53112054e-01\\n2.55737931e-01 1.20096162e-01 1.75290883e-01 -2.68140882e-01\\n3.07132334e-01 1.77852362e-01 -8.37904066e-02 -3.47285181e-01\\n-1.71253942e-02 -7.20431134e-02 4.42349792e-01 -7.04139546e-02\\n-1.78959500e-02 -1.65938884e-02 -3.03649276e-01 -1.17458418e-01\\n4.60066140e-01 -1.67636186e-01 9.73060504e-02 -8.15106854e-02\\n2.45668963e-01 -2.63665438e-01 7.85874873e-02 -4.85127829e-02\\n8.43226761e-02 6.75987363e-01 1.54649271e-02 -3.72998267e-01\\n6.21821359e-02 5.67383170e-01 -7.88971037e-02 1.54795721e-01\\n-7.92634040e-02 3.87714207e-02 -2.84083068e-01 3.64433229e-01\\n-5.45314215e-02 -1.01301715e-01 -1.38811499e-01 -8.95736367e-02\\n-1.21088549e-01 2.92396486e-01 2.54660696e-01 2.52087504e-01\\n3.85846421e-02 -3.36064965e-01 -3.14346194e-01 2.85317630e-01\\n1.50898457e-01 5.39009213e-01 1.75862536e-01 -2.61243820e-01\\n-1.32858874e-02 3.89818132e-01 -8.01904351e-02 2.98500091e-01\\n-2.07324773e-01 3.13131809e-01 -5.60786247e-01 -2.03016549e-01\\n-3.75081599e-01 -3.63016605e-01 1.98393315e-01 3.09872478e-01\\n1.33259147e-01 -9.04379711e-02 6.72319978e-02 -5.07169962e-01\\n8.27119946e-02 2.47481763e-01 1.64448380e-01 3.84315997e-02\\n-6.06112778e-02 6.45801485e-01 6.52305037e-02 -2.66355515e-01\\n-1.32869840e-01 3.94149423e-02 2.45845914e-02 -1.11619383e-02\\n1.22317467e-02 -5.61590314e-01 -7.96582475e-02 3.36627632e-01\\n1.62140235e-01 -1.67968243e-01 -2.02226222e-01 3.56704414e-01\\n2.84251720e-02 -1.72660351e-01 -3.60678792e-01 -7.06915557e-02\\n2.37744406e-01 1.20801833e-02 2.59649456e-01 -6.48082674e-01\\n-3.73637863e-02 -8.80714655e-02 3.41499597e-02 3.72550011e-01\\n-1.32095575e-01 1.82030499e-02 -2.54675865e-01 -1.46642268e-01\\n2.46656954e-01 -1.00458272e-01 -1.54730588e-01 1.60091490e-01\\n1.70153022e-01 -1.30084842e-01 -4.18796718e-01 1.16406620e-01\\n4.49056327e-02 -3.15874338e-01 3.53038833e-02 3.60813111e-01\\n6.47197589e-02 2.49580324e-01 -5.68191409e-01 -1.96668506e-01\\n-2.00627670e-01 1.91577479e-01 6.09581247e-02 -6.33165777e-01\\n6.50685839e-03 -1.15272991e-01 -4.31340545e-01 2.15969980e-01\\n-2.96684429e-02 -2.87583590e-01 2.31079519e-01 5.26492521e-02\\n-3.07027936e-01 -7.65521638e-03 -2.09016781e-02 2.92268425e-01\\n-1.85366094e-01 -2.25689799e-01 -3.88403162e-02 -9.71567392e-01\\n2.50973910e-01 -2.13524736e-02 -3.32256407e-03 2.86909372e-01\\n-1.58867091e-01 -6.38821423e-01 7.93350562e-02 -3.31051677e-01\\n-2.19826788e-01 -9.72383171e-02 -3.75366002e-01 -2.50517845e-01\\n9.44098458e-03 -5.00097051e-02 -1.56446591e-01 3.74885559e-01\\n-2.06334859e-01 4.96902913e-01 -2.99185455e-01 5.69497719e-02\\n-4.09606844e-04 -2.45174170e-01 2.20738962e-01 -3.80642593e-01\\n-3.44413370e-01 -1.99467480e-01 -3.54156911e-01 -1.99764431e-01\\n-7.03575164e-02 -2.09478095e-01 4.33604792e-02 1.15268216e-01\\n4.86252844e-01 1.00459889e-01 -2.49341935e-01 -1.46017671e-01\\n-8.80204514e-03 -4.89164561e-01 1.66285545e-01 -1.34751266e-02\\n7.23782927e-04 -2.28664309e-01 2.26485640e-01 1.26988947e-01\\n2.69683540e-01 -3.93679857e-01 2.75140911e-01 -3.94309342e-01\\n-3.39797169e-01 -1.88757256e-01 7.17268288e-02 2.26432085e-02\\n3.17455143e-01 -5.69553971e-01 -1.83888257e-01 3.09962064e-01\\n9.37558711e-04 -2.23528855e-02 2.80265212e-01 -1.34643346e-01\\n-6.56384528e-02 3.40541363e-01 -4.54259098e-01 1.54576927e-01\\n6.57110691e-01 2.46742994e-01 1.85089305e-01 3.31453830e-01\\n1.42495304e-01 3.42854559e-01 5.17835677e-01 1.03503913e-02\\n-1.50840878e-01 3.23100537e-01 1.80222213e-01 -5.01859903e-01\\n-1.60714567e-01 -1.62919983e-02 -4.41284925e-02 -5.38053751e-01\\n7.04629898e-01 3.88942301e-01 -4.68298376e-01 -4.86949012e-02\\n-1.71798378e-01 -1.97482765e-01 1.15210325e-01 -9.32246074e-02\\n-9.21602100e-02 -1.07926682e-01 4.01215315e-01 -1.24279276e-01\\n3.19891930e-01 5.80991626e-01 -2.17238724e-01 -2.28825346e-01\\n3.65949348e-02 2.90475190e-01 3.44847590e-02 4.37248588e-01\\n-1.19411521e-01 3.21149290e-01 -2.67499797e-02 9.66356248e-02\\n-1.52802199e-01 1.65527463e-01 9.50314477e-03 1.58491820e-01\\n2.45399103e-01 7.00595826e-02 4.96758491e-01 4.37456727e-01\\n3.57724845e-01 2.79051840e-01 2.21929476e-01 4.40740436e-02\\n5.37222326e-01 4.51813281e-01 2.69344866e-01 -1.69013351e-01\\n1.43741488e-01 2.57030815e-01 3.07410121e-01 -6.68168962e-02\\n4.05590951e-01 3.96757007e-01 -9.48763639e-03 7.99952745e-01\\n1.69359773e-01 2.94007361e-01 5.98220468e-01 -5.10594308e-01\\n-2.68920273e-01 -7.93863088e-02 4.54555511e-01 -4.94535536e-01\\n3.53662036e-02 3.57954949e-01 -1.02382325e-01 2.50315696e-01\\n-3.09754550e-01 -1.69935241e-01 5.25472797e-02 1.72165573e-01\\n2.29917914e-02 -3.16769123e-01 -7.12227523e-02 2.39966735e-01\\n-1.06333874e-01 -1.56265721e-01 -3.71095330e-01 -1.80016667e-01\\n-2.74396002e-01 -2.39759535e-02 -9.64845121e-02 -1.33045614e-01\\n-8.98741484e-02 -2.65110999e-01 7.55990222e-02 -8.71447101e-02\\n1.30892575e-01 -1.56703711e-01 -1.29299432e-01 -8.07367489e-02\\n4.53403354e-01 1.15526006e-01 4.27334905e-01 -4.92155440e-02\\n4.78809886e-02 -2.08649397e-01 -1.77427843e-01 1.92755356e-01\\n3.07864368e-01 8.74086693e-02 -6.11137226e-02 2.18013495e-01\\n-1.59278288e-01 -1.31101996e-01 9.48497653e-02 2.70747244e-01\\n-3.56100649e-01 2.97885798e-02 -2.16340512e-01 1.03425667e-01\\n-8.05890486e-02 1.80036634e-01 -1.07496165e-01 -5.97284548e-02\\n-2.78714448e-02 -4.49156046e-01 1.14211038e-01 -4.67937216e-02\\n-2.26788178e-01 -4.96190041e-02 3.44880134e-01 3.66953433e-01\\n-2.88655043e-01 6.78340048e-02 -1.85356438e-01 6.51989728e-02\\n8.85424018e-03 2.12430105e-01 -1.44109547e-01 -3.75173241e-01\\n-3.05662453e-01 1.31517023e-01 -1.56476557e-01 8.38051923e-03\\n3.95061821e-02 3.78402114e-01 8.06892291e-02 3.33392471e-02\\n5.18024445e-01 -1.93984509e-01 -3.49767029e-01 -2.83212781e-01\\n-1.84087560e-01 -8.89592916e-02 -8.09286609e-02 -7.71420002e-02\\n2.23603815e-01 -2.96618849e-01 7.68085346e-02 -2.87756026e-01\\n-8.00041780e-02 -2.13343903e-01 3.38186249e-02 -7.48392045e-02]]',\n", + " 'Dentsply Sirona is the world’s largest manufacturer of professional dental products and technologies, with a 130-year history of innovation and service to the dental industry and patients worldwide. Dentsply Sirona develops, manufactures, and markets a comprehensive solutions offering including dental and oral health products as well as other consumable medical devices under a strong portfolio of world class brands. Dentsply Sirona’s products provide innovative, high-quality and effective solutions to advance patient care and deliver better and safer dentistry. Dentsply Sirona’s global headquarters is located in Charlotte, North Carolina, USA. The company’s shares are listed in the United States on NASDAQ under the symbol XRAY. Bringing out the best in people As advanced as dentistry is today, we are dedicated to making it even better. Our people have a passion for innovation and are committed to applying it to improve dental care. We live and breathe high performance, working as one global team, bringing out the best in each other for the benefit of dental patients, and the professionals who serve them. If you want to grow and develop as a part of a team that is shaping an industry, then we’re looking for the best to join us. Working at Dentsply Sirona you are able to: Develop faster - with our commitment to the best professional development. Perform better - as part of a high-performance, empowering culture. Shape an industry - with a market leader that continues to drive innovation. Make a difference -by helping improve oral health worldwide. MISSION In this new function as Project Manager Change Control, you will be the central point for coordinating all business functions involved in operational Change Control activities. Results-driven, with a proven talent in managing international and cross-functional project teams, you will ensure that all activities necessary to validate and document manufacturing processes and product design modifications are completed on time. You will be a key contributor to the sustaining engineering process and the new product development program. Finally, you will work closely with the QA/RA teams to ensure labels certifications meet new European MDR requirements. MAIN RESPONSIBLITIES Coordinate the operational cycle dedicated to managing Change Control requests (i.e. manufacturing process change and product design modifications) for the Endodontics unit global product portfolio Manage individual project dedicated to each change request and track deliverables assigned to cross-functional project teams (Marketing, R+D, Clinical Affairs, Operations, QA and RA) Owns process to validate Change Control requests into operational cycle, for tracking action plan and for coordination of individual project teams Analyze and report performance of Change Control management process; identify and implement opportunities for process improvement Coordinate project teams in 3 sites (US and Europe) for deployment of improvements to Change Control management process Support PMO leader for any other initiative in support of business performance improvement PROFILE Engineering Masters’ Degree with specialization in medical devices, industrial processes, quality management, supply chain or equivalent experience; PMP certificate preferred 5 years’ experience planning and managing complex technology projects in an international, highly regulated, industrial environment Strong knowledge of Change Control processes for Medical Devices; experience with European MDR requirements an asset Successful track record of managing international, cross-functional teams Excellent communication skills in English (C1/C2 min.) and French (B2 min.) Command of MS Office (Word, Excel, Powerpoint, Visio); Knowledge of MS Project an asset Strong analytical and organizational skills Ability to keep an overview while diving into detail where necessary Strong drive and motivation with the ability to multi-task Ability to work under pressure and to keep tight deadlines #LI-CM1',\n", + " '[\"Professionalism\", \"Coordinating\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Organizational Skills\", \"Innovation\"]',\n", + " '[\"Diving\", \"Performance Reporting\", \"Analytics\", \"Consumables\", \"High Performance Computing\", \"Supply Chain\", \"Branding\", \"Health Products\", \"Industrialization\", \"Process Improvements\", \"Manufacturing Processes\", \"Endodontics\", \"Activism\", \"Industrial Processes\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Tracking (Commercial Airline Flight)\", \"Dental Care\", \"Management Process\", \"Portfolio Management\", \"Professional Development Programs\", \"Project Coordination\", \"Medical Devices\", \"Product Design\", \"Change Control\", \"Cross-Functional Coordination\", \"Project Management Office (PMO)\", \"Change Request\", \"Cross-Functional Team Leadership\", \"Sustaining Engineering\", \"Validations\", \"Dentistry\", \"Change Management\", \"New Product Development\", \"Performance Improvement\", \"Quality Management\"]',\n", + " \"['English', 'Limburgan', 'Punjabi', 'Wolof', 'Korean']\"],\n", + " ['39',\n", + " 'data engineer',\n", + " 'Bern',\n", + " 'IT Services',\n", + " '',\n", + " '[[-4.88080710e-01 2.58449346e-01 5.23118019e-01 -1.80086773e-02\\n4.56478834e-01 -4.98167723e-02 -1.09972715e-01 3.95245016e-01\\n-2.08908230e-01 -3.84887457e-01 -1.69541612e-01 -2.97027439e-01\\n-9.60512832e-02 1.17807850e-01 2.19974980e-01 4.79626954e-01\\n2.54724503e-01 9.28897262e-02 -2.09499031e-01 3.03051829e-01\\n6.45347536e-02 -3.75785641e-02 6.86234757e-02 7.13960111e-01\\n4.04978663e-01 -1.34375021e-01 -8.83488655e-02 1.06580921e-01\\n-2.41681129e-01 -1.86572239e-01 4.01777387e-01 3.56652625e-02\\n-1.72101617e-01 -2.95837015e-01 1.07834443e-01 9.90013182e-02\\n-2.61548728e-01 -5.27285114e-02 -1.04345880e-01 6.80635050e-02\\n-4.66666877e-01 -1.53118208e-01 -6.50336742e-02 3.03525645e-02\\n-3.40912312e-01 -3.29585195e-01 5.81570528e-02 -2.70689745e-02\\n-3.58481589e-03 -2.62594991e-03 -5.80102742e-01 2.82983601e-01\\n-1.24443091e-01 -2.91620433e-01 2.30460033e-01 5.48951983e-01\\n2.67120358e-02 -4.20045614e-01 -3.09936076e-01 -3.09853822e-01\\n1.71392485e-02 -1.95150077e-01 6.70710802e-02 -3.63646716e-01\\n4.16064024e-01 -9.72882882e-02 -1.58429313e-02 3.81274253e-01\\n-7.51251221e-01 -4.22746353e-02 -2.41789296e-01 8.49242881e-03\\n-3.96629632e-01 7.42806569e-02 -4.56928015e-01 -3.15135419e-01\\n3.93922813e-02 4.90157515e-01 -5.31114731e-03 1.09597027e-01\\n-1.51349261e-01 2.75063068e-01 -1.87770128e-01 3.72965455e-01\\n2.24130765e-01 2.84781545e-01 1.58477694e-01 3.36544722e-01\\n-4.91813809e-01 3.58506680e-01 2.43204206e-01 -3.29293221e-01\\n2.72049576e-01 1.24530286e-01 4.38458622e-01 1.70934096e-01\\n9.65059847e-02 1.67430788e-01 -1.68561608e-01 1.85203061e-01\\n2.24669918e-01 -2.18960434e-01 -6.61202520e-02 -1.75060734e-01\\n-5.52071584e-03 -3.74981537e-02 2.27148645e-03 1.43765941e-01\\n-3.35403144e-01 3.88749301e-01 1.31322354e-01 -1.11921363e-01\\n4.28772084e-02 -5.05427659e-01 -9.07157436e-02 1.05168015e-01\\n1.82921924e-02 2.48542130e-01 2.50279605e-01 1.74497649e-01\\n2.47828931e-01 6.81117028e-02 1.84739247e-01 9.25672233e-01\\n-8.28232244e-02 8.60639960e-02 -1.72762454e-01 3.89640659e-01\\n2.03802183e-01 -2.87431121e-01 2.46729538e-01 1.90574110e-01\\n4.62594256e-02 -1.58721849e-01 -1.72855839e-01 3.54858160e-01\\n-1.25417233e-01 -2.71658421e-01 -3.47269058e-01 1.86486855e-01\\n-2.33052000e-01 -5.29509842e-01 5.06148458e-01 -1.42532750e-03\\n1.90554649e-01 1.98000539e-02 -1.11909732e-01 -8.75182301e-02\\n-1.20384805e-01 2.19469324e-01 -1.29224703e-01 2.08721235e-01\\n-3.39804262e-01 -2.64568478e-01 -2.29304060e-01 2.81115085e-01\\n-3.07949126e-01 1.54763684e-01 -1.32529825e-01 -8.05592313e-02\\n2.58168399e-01 1.15916230e-01 -3.60593170e-01 1.77908868e-01\\n-1.45572066e-01 -2.58308500e-01 -1.45490924e-02 3.56810838e-01\\n-1.77126616e-01 2.16519892e-01 2.96422318e-02 -2.37371922e-01\\n4.38802451e-01 1.46827742e-01 3.63974422e-01 -1.83634553e-02\\n3.48504752e-01 -1.78370610e-01 1.44226074e-01 1.73070043e-01\\n-6.14870846e-01 3.65952879e-01 -3.37626413e-02 -2.26930603e-01\\n4.91819493e-02 3.24125849e-02 3.42423618e-01 -2.45931700e-01\\n-2.81348303e-02 -1.32465124e-01 -3.99612904e-01 -3.96553338e-01\\n-3.59001786e-01 5.69728762e-02 4.00247008e-01 -5.14771581e-01\\n7.95809028e-04 1.64951310e-01 -5.64277947e-01 -1.32167459e-01\\n1.91970542e-01 1.84242263e-01 7.42360651e-02 9.16184671e-03\\n-3.79957706e-02 -5.37259817e-01 4.98834513e-02 -5.50491571e-01\\n-2.89642870e-01 1.67059213e-01 -3.07075232e-01 1.09782904e-01\\n1.42642498e-01 -8.50048140e-02 -3.05166021e-02 1.10802636e-01\\n-2.80528069e-01 5.87514900e-02 2.09973112e-01 1.22226238e-01\\n4.03572619e-01 -2.04290096e-02 -3.45379263e-01 6.75532937e-01\\n-7.97054395e-02 5.18149674e-01 2.81403214e-01 -9.07865644e-01\\n5.89711010e-01 2.67308682e-01 -1.66378170e-03 -1.76213562e-01\\n5.43554962e-01 -4.30779845e-01 -1.12713084e-01 1.05818957e-01\\n-4.30461377e-01 -3.07125032e-01 2.75603443e-01 -2.33108565e-01\\n-1.97707593e-01 6.75981045e-01 1.79867029e-01 6.43787384e-02\\n3.58221710e-01 -3.05250645e-01 -2.99424410e-01 4.50107977e-02\\n-1.83755785e-01 -3.23641419e-01 -5.56773543e-01 9.01362747e-02\\n-1.18716195e-01 -5.65665126e-01 -1.68511391e-01 -4.38051343e-01\\n-1.14867106e-01 -3.51924926e-01 -1.33778542e-01 3.65401536e-01\\n1.25836357e-01 1.00489050e-01 -1.00781351e-01 -6.60510808e-02\\n-3.77262570e-02 -5.15089631e-01 -1.72773778e-01 -2.80870087e-02\\n4.57857847e-01 1.26904413e-01 2.29385585e-01 -6.33817166e-02\\n1.05247110e-01 5.11449575e-01 -3.48449141e-01 -3.02929878e-01\\n1.63844734e-01 8.33675563e-02 -1.75055768e-02 -1.23382919e-01\\n2.13581234e-01 3.97111297e-01 -3.48383248e-01 3.04835159e-02\\n-8.00620914e-02 1.30478501e-01 3.78982395e-01 -5.47720157e-02\\n-2.22666532e-01 -1.76455334e-01 3.67587246e-02 3.23155224e-01\\n-4.67526227e-01 -2.66114712e-01 5.47717273e-01 2.44917616e-01\\n1.68179005e-01 1.53267860e-01 1.95229590e-01 -1.10755593e-01\\n-2.56123900e-01 -1.30251676e-01 2.03251436e-01 1.27288520e-01\\n1.67314738e-01 5.57840504e-02 -7.81720951e-02 -5.35983026e-01\\n-3.48404598e+00 -2.75874615e-01 1.47778109e-01 -1.49247721e-01\\n9.23720077e-02 -1.42145276e-01 9.64686424e-02 -7.11704269e-02\\n-3.31991643e-01 -8.09031203e-02 -2.66701102e-01 -1.43627867e-01\\n1.32241860e-01 2.46843264e-01 1.32039443e-01 1.62333935e-01\\n7.27132931e-02 -1.55805349e-01 8.67354423e-02 3.79597127e-01\\n-2.04604790e-01 -7.26749301e-01 1.19719222e-01 -4.31729779e-02\\n1.07526444e-01 8.53167772e-02 -3.11718166e-01 -8.72057006e-02\\n-2.70258963e-01 -3.03555250e-01 1.64115861e-01 -2.44587943e-01\\n-1.49763614e-01 3.45058262e-01 1.50865525e-01 -6.84344172e-02\\n7.98318088e-02 -2.84004748e-01 -4.32571881e-02 -4.88892585e-01\\n7.94317350e-02 -5.63762724e-01 1.06393903e-01 -8.75314884e-03\\n6.26708984e-01 -3.14638674e-01 2.19086066e-01 1.70357570e-01\\n1.21158041e-01 2.26227134e-01 4.93888445e-02 -4.53606062e-02\\n-2.90715814e-01 -3.81290048e-01 -3.80977453e-03 -2.86511630e-01\\n5.28391898e-01 4.34086978e-01 -5.41208200e-02 1.19354554e-01\\n8.20225105e-02 -2.50958353e-01 -4.63806033e-01 -4.38718498e-01\\n-1.93201527e-01 -1.33598387e-01 -6.02385759e-01 -4.57036346e-01\\n-9.35222488e-03 -2.06880093e-01 -1.38165131e-01 5.45179546e-01\\n-2.50930727e-01 -3.78701389e-01 -4.36986826e-04 -5.77397227e-01\\n3.28695625e-01 -2.35719889e-01 -1.10821165e-02 -1.43472150e-01\\n-2.68096119e-01 -5.72995245e-01 1.54001221e-01 -1.22025739e-02\\n-1.94222271e-01 -9.77213681e-02 6.14832975e-02 -2.28391349e-01\\n-3.73427004e-01 -5.12774229e-01 3.84782284e-01 1.42118335e-02\\n3.99144143e-01 1.72881305e-01 3.40557396e-01 3.22971717e-02\\n2.28681713e-01 -1.04564227e-01 -1.09892143e-02 -5.18376052e-01\\n1.03848219e-01 7.47149587e-02 5.13602495e-01 -1.83969930e-01\\n7.77700990e-02 1.79991886e-01 -1.83219686e-01 -7.87470415e-02\\n3.79723519e-01 2.34899111e-02 1.62039369e-01 -2.27087483e-01\\n2.54985034e-01 -4.97314811e-01 -2.01084316e-01 1.53107136e-01\\n2.46962626e-02 7.30256855e-01 -7.06133544e-02 -3.83487284e-01\\n-2.95985550e-01 4.99348938e-01 -7.30060041e-02 -4.04943563e-02\\n-1.21834680e-01 1.58335030e-01 -2.10915402e-01 1.94291934e-01\\n-4.80912952e-03 -1.54817924e-01 -2.97951788e-01 -1.53682724e-01\\n-9.47334543e-02 3.26727271e-01 3.29419106e-01 3.54330288e-03\\n-2.16006041e-02 -3.68062079e-01 1.54398818e-04 1.62494123e-01\\n3.82593036e-01 4.10673022e-01 1.26968607e-01 -2.48717368e-01\\n-1.39137972e-02 2.70952970e-01 -2.90973634e-01 2.76279420e-01\\n-2.81048119e-01 1.17827490e-01 -5.70337772e-01 -2.22846925e-01\\n-2.68764794e-01 -3.19785982e-01 2.46864319e-01 2.59733617e-01\\n1.63896799e-01 -6.29612282e-02 5.01734018e-02 -3.84214997e-01\\n3.71041149e-01 1.60171241e-02 2.24273250e-01 7.49909356e-02\\n4.47562225e-02 6.83543384e-01 -2.96682771e-02 -5.15647605e-02\\n-9.30895954e-02 1.14319213e-02 -3.51343989e-01 -2.24426255e-01\\n-2.63144877e-02 -4.44142997e-01 -1.96701974e-01 4.27060008e-01\\n1.63380951e-01 -1.13608837e-01 -2.17575088e-01 1.54271707e-01\\n5.31245805e-02 -2.37088814e-01 -1.80748001e-01 1.01215035e-01\\n2.94685781e-01 2.30453253e-01 2.90765047e-01 -4.85814452e-01\\n4.99449149e-02 3.33332568e-02 3.77982520e-02 4.85471338e-01\\n1.03189960e-01 1.32028148e-01 -6.10816777e-02 -3.20689023e-01\\n3.93696070e-01 -2.31498346e-01 -1.02466784e-01 -4.98440936e-02\\n3.76347788e-02 -8.56078565e-02 -2.68498540e-01 1.60330534e-02\\n-1.11729644e-01 -3.35789919e-01 5.33521734e-02 3.99431586e-02\\n1.03078730e-01 -6.91587403e-02 -5.77003181e-01 -2.54919440e-01\\n-3.34349066e-01 5.73266782e-02 2.31226981e-02 -4.21617448e-01\\n7.50150159e-02 -5.32809459e-02 -6.53690040e-01 2.59189844e-01\\n-2.26417497e-01 -7.10023614e-03 1.71873599e-01 4.58962135e-02\\n-3.80352557e-01 -5.23275286e-02 2.19324932e-01 2.30039254e-01\\n-2.78990567e-01 -1.89968050e-01 1.32533545e-02 -9.58980799e-01\\n1.44764781e-01 5.04691899e-02 -1.73739508e-01 1.41219422e-01\\n-7.05820974e-03 -6.70554280e-01 1.13281906e-01 -3.25227797e-01\\n-5.34261599e-05 1.50735956e-02 -2.45827898e-01 -4.44976121e-01\\n1.16216876e-01 6.61068857e-02 -2.62828737e-01 4.06773359e-01\\n-5.39749861e-01 3.11619997e-01 3.87455747e-02 6.83767870e-02\\n2.47951392e-02 -2.52707034e-01 1.48843199e-01 -1.96265221e-01\\n-3.85321826e-01 -2.31008440e-01 -2.94927806e-01 -3.45805824e-01\\n-4.32012640e-02 -4.24220949e-01 -1.01511165e-01 6.25677174e-03\\n4.24294382e-01 9.87886041e-02 -1.26236230e-01 -2.90121645e-01\\n1.58154964e-01 -3.73585820e-01 1.25095382e-01 -1.30304575e-01\\n-9.33962464e-02 -1.07786350e-01 2.10416287e-01 1.15145527e-01\\n1.23329692e-01 -3.42679530e-01 4.39849705e-01 -2.77547061e-01\\n-4.00786102e-01 -1.10524960e-01 2.41745934e-02 9.05909613e-02\\n3.06665480e-01 -5.42094588e-01 7.03900494e-03 2.51866013e-01\\n1.41772538e-01 7.44949058e-02 2.83484519e-01 -1.07629217e-01\\n-5.77467792e-02 3.86182696e-01 -4.30141360e-01 -1.11955320e-02\\n8.87028992e-01 8.08170885e-02 1.00850090e-01 7.94578195e-02\\n1.67972997e-01 2.93403476e-01 4.62875575e-01 -3.47492807e-02\\n-3.88708413e-02 3.55016053e-01 8.06770548e-02 -5.66590726e-01\\n-4.76404428e-02 -2.16895506e-01 -3.56505550e-02 -2.99393356e-01\\n6.83066368e-01 3.31603974e-01 -3.69955629e-01 -2.33629435e-01\\n-8.46160203e-02 -1.30182326e-01 3.56767863e-01 -9.28148255e-02\\n2.61970349e-02 -1.89936161e-01 3.76356244e-01 -9.47207063e-02\\n3.02585572e-01 6.15288556e-01 -1.97078153e-01 -2.64044046e-01\\n-1.30153120e-01 2.04152435e-01 1.08272932e-01 4.84079957e-01\\n-1.72625020e-01 3.19548428e-01 6.58685416e-02 1.14237726e-01\\n-1.02002107e-01 4.83611934e-02 2.11072892e-01 6.79408908e-02\\n2.26109445e-01 9.02840644e-02 2.74445146e-01 5.53237259e-01\\n2.69963384e-01 5.45949280e-01 3.55816305e-01 1.02703258e-01\\n3.29303831e-01 5.23667812e-01 4.70607787e-01 1.63073003e-01\\n3.74352448e-02 1.28166914e-01 5.83189689e-02 -6.79947436e-02\\n2.30745837e-01 3.52295935e-01 1.22299276e-01 9.66224074e-01\\n4.03637558e-01 3.77715170e-01 7.55848944e-01 -6.79753423e-01\\n-4.46252882e-01 2.84961220e-02 5.58641016e-01 -3.62183720e-01\\n1.04366485e-02 4.70777303e-02 -2.65435040e-01 2.30347693e-01\\n-4.85594392e-01 -1.53805554e-01 -3.28570269e-02 -7.03989342e-02\\n3.49147879e-02 -1.61748692e-01 -1.66269749e-01 9.36996415e-02\\n-1.41130179e-01 -1.45356864e-01 -3.29366773e-01 -7.68242627e-02\\n-1.76492885e-01 -1.19746782e-01 -1.24883406e-01 -1.32959068e-01\\n-1.29743993e-01 -2.95736820e-01 -1.52239308e-01 6.15269877e-02\\n4.23552990e-01 -3.98562215e-02 -7.87860453e-02 -1.90938428e-01\\n2.48277962e-01 3.53220195e-01 6.59507155e-01 8.22114199e-03\\n1.47330672e-01 -4.70246971e-02 -1.82519346e-01 3.26219536e-02\\n-4.61884367e-04 1.93634182e-02 -1.36013338e-02 3.77558500e-01\\n-2.75994956e-01 -2.03450739e-01 1.38126060e-01 2.57111520e-01\\n-4.51633036e-01 -7.33265504e-02 -3.21016423e-02 1.30819753e-01\\n1.94332972e-02 2.39152670e-01 -2.85515249e-01 8.04521963e-02\\n-1.39635623e-01 -6.31096423e-01 4.53938842e-01 -2.84843773e-01\\n-6.82316646e-02 8.55871812e-02 3.73131156e-01 2.63525009e-01\\n-2.58038551e-01 -7.17266053e-02 -5.05782031e-02 3.19474638e-01\\n9.17834044e-02 2.68822074e-01 -2.96082586e-01 -1.20748632e-01\\n-2.90982991e-01 1.72468007e-01 -1.56346425e-01 1.67726755e-01\\n-1.03287384e-01 4.01425213e-01 2.13158995e-01 1.26084894e-01\\n2.09551424e-01 -7.93113559e-03 -2.97833174e-01 -2.90800065e-01\\n-1.80631295e-01 -1.72484040e-01 8.13277345e-03 4.30970499e-03\\n2.33255148e-01 -3.29242110e-01 -1.24490581e-01 -2.58233130e-01\\n-1.81781620e-01 -4.65416640e-01 -4.85115722e-02 -9.43885818e-02]]',\n", + " 'In this role As an expert within our growing Analytics-Team you will take over the following tasks: Advisory on mandates at ELCA, inhouse and on the client side Design and conception of analytics solutions to the integration and analysis of different data files on modern data platforms (Hadoop, Spark, Kafka, Analytics Databases, Cloud) Implementation of performing data processing job by means of BigData technologies including Continuous integration & Delivery (DevOps) Operationalization of complex AI algorithms in collaboration with Data Scientists Accompaniment of projects during the whole cycle (Analysis, Design, Development and Implementation) What we offer A challenging work environment in a dynamic team with extensive expertise An organisation with flat hierarchies and collaborations across business departments Close cooperation with customers from various industries An attractive prospect for your professional and personal development About your profile For this vacancy we expect a candidate with an academic degree of a university, university of applied sciences in computer sciences, mathematics or other scientific disciplines and with several years of experience as a Developer of analytics solutions. Experience within IT- and data architecture, as well as in the area of software development Pleasure working with data- and data processing (Batch und Streaming), as well as strong interest in leading edge technologies Knowledge and practical with technologies like (Hadoop, Hive, Kafka, Spark, SAP Hana, Lucene, Elasticsearch, Splunk), Cluster & Cloud Computing (YARN, Kubernetes, Docker, Azure, AWS) and programming languages like (Java, Scala, Python, SQL) Strong communication skills in German & English Further you should be able to deal with clients on all levels. Further you have strong analytical skills, as well as a pleasant and structured way of working. As a strong team player, you are able to deal with internal and external stakeholders to come up with ideas and solutions.',\n", + " '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Cooperation\", \"Collaboration\", \"Professionalism\", \"Integration\"]',\n", + " '[\"Data Architecture\", \"Kubernetes\", \"Advisories\", \"KM Programming Language\", \"Batch Message Processing\", \"Computer Science\", \"Analytics\", \"SAP HANA\", \"Continuous Integration\", \"Industrialization\", \"Scala (Programming Language)\", \"SQL (Programming Language)\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"Hybrid Cloud Computing\", \"Levelling\", \"Splunk\", \"Hostile Work Environment\", \"Operationalization\", \"Applied Science\", \"Data Files\", \"Docker (Software)\", \"Apache Hive\", \"Electronic Data Processing\", \"Software Development\", \"Apache Yarn\", \"Algorithms\", \"Personality Development\", \"Java (Programming Language)\", \"Cloud Database\", \"DevOps\", \"Elasticsearch\"]',\n", + " \"['English', 'Mongolian', 'Czech', 'Marathi', 'Norwegian Nynorsk']\"],\n", + " ['82',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.nicollcurtin.com',\n", + " '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " \"['English', 'Zulu', 'Swahili']\"],\n", + " ['57',\n", + " 'software engineer .net / c#',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-9.39995795e-02 3.35250646e-01 5.78792751e-01 -1.29941076e-01\\n4.64701653e-01 -3.69766057e-01 1.05191454e-01 3.63712847e-01\\n-5.13378531e-02 -3.42865735e-01 -1.91628918e-01 -2.82905370e-01\\n1.18555920e-02 1.20631464e-01 4.96344790e-02 2.93974698e-01\\n2.87849218e-01 6.71490356e-02 -1.34868041e-01 3.21233898e-01\\n2.02394545e-01 -1.30778149e-01 1.28763229e-01 6.65439785e-01\\n3.76757056e-01 -6.70232158e-03 3.41307861e-03 9.77772772e-02\\n-2.33811677e-01 -3.04761469e-01 4.08054709e-01 -2.24661604e-02\\n-4.05807234e-03 -2.65985578e-01 8.79088417e-02 4.40241732e-02\\n-1.74539521e-01 1.22085281e-01 5.57244420e-02 1.70685753e-01\\n-3.72524589e-01 -1.82705134e-01 9.64485928e-02 -3.06541789e-02\\n-1.52956501e-01 -3.96577328e-01 1.02722690e-01 2.05065776e-03\\n1.85473919e-01 4.01727222e-02 -3.96216303e-01 3.93563092e-01\\n-2.82718867e-01 -2.88695216e-01 2.88813591e-01 5.86105168e-01\\n-2.87808683e-02 -6.05412900e-01 -4.17917490e-01 -1.98869005e-01\\n2.20193252e-01 -6.08862601e-02 9.76299867e-02 -2.49703109e-01\\n4.94848758e-01 -6.30363682e-03 4.58837673e-02 3.70801359e-01\\n-8.31132829e-01 4.88173366e-02 -2.14614958e-01 4.26024087e-02\\n-3.06188822e-01 -4.77559641e-02 -2.46833116e-01 -1.40547246e-01\\n-1.37120947e-01 4.27567571e-01 2.03950688e-01 4.74188738e-02\\n-7.58213028e-02 2.70213068e-01 -3.34931374e-01 2.23179609e-01\\n2.85451114e-01 3.23207170e-01 2.47570544e-01 2.34550208e-01\\n-4.75566864e-01 5.14151394e-01 2.19023958e-01 -2.24276215e-01\\n1.74022168e-01 9.22211409e-02 4.09278154e-01 2.57765986e-02\\n1.24465972e-01 6.41222969e-02 -2.28002712e-01 2.03150481e-01\\n2.81742156e-01 -2.36419246e-01 -6.78101555e-02 7.87941366e-02\\n-4.66147736e-02 5.15802465e-02 -5.10821342e-02 4.08931136e-01\\n-3.71488631e-01 6.07856989e-01 3.30002792e-02 -2.16771588e-01\\n-4.99735698e-02 -6.43660605e-01 -2.40363851e-01 9.63097885e-02\\n3.77016999e-02 1.08179785e-01 1.82061657e-01 3.42771620e-01\\n1.24615729e-01 1.31780699e-01 1.82801828e-01 1.00848806e+00\\n-3.51740159e-02 2.01524645e-01 -2.78994381e-01 4.57489371e-01\\n4.06039618e-02 -2.77916789e-01 2.94273019e-01 3.60021681e-01\\n1.67656019e-01 -1.14639737e-01 -1.00077674e-01 2.94764012e-01\\n3.31706032e-02 -3.05054426e-01 -3.42874438e-01 1.27677307e-01\\n-1.40103906e-01 -5.24720609e-01 5.60441852e-01 7.54762962e-02\\n8.10468867e-02 4.69054990e-02 -3.64233293e-02 -7.65441284e-02\\n-1.04856446e-01 2.79342830e-01 6.16928302e-02 1.26006663e-01\\n-2.94955283e-01 -1.98590606e-01 -3.45345467e-01 2.75270402e-01\\n-2.06399292e-01 1.16404884e-01 -1.42051712e-01 -1.20138913e-01\\n3.86669248e-01 -1.49370346e-03 -3.29746932e-01 3.62275094e-01\\n-9.14096385e-02 2.26053619e-03 -1.00520641e-01 2.36930132e-01\\n-1.37323707e-01 1.67278334e-01 -8.75476748e-02 -2.01294601e-01\\n4.28184003e-01 1.23512268e-01 2.00953439e-01 -1.59641877e-01\\n3.57140481e-01 -1.32429183e-01 4.70495634e-02 2.42503993e-02\\n-7.12123096e-01 4.55628633e-01 -4.73668501e-02 -1.05156861e-01\\n4.82615680e-02 -1.69987064e-02 2.71746337e-01 -3.17442954e-01\\n1.08821206e-02 -1.67923570e-01 -3.89507741e-01 -2.87922502e-01\\n-1.20596610e-01 1.32114692e-02 5.45547128e-01 -4.38488662e-01\\n-1.54664502e-01 9.37325209e-02 -6.01531386e-01 9.80301350e-02\\n3.31798553e-01 2.32450500e-01 1.99254230e-01 1.17177546e-01\\n-2.33570963e-01 -4.69137609e-01 1.97242036e-01 -3.82882237e-01\\n-2.14146540e-01 1.82689011e-01 -2.53345102e-01 2.85357445e-01\\n1.42731965e-01 -5.83715551e-02 -1.54751733e-01 9.87009630e-02\\n-8.83767605e-02 -1.07187495e-01 3.09135675e-01 6.02564253e-02\\n3.17919791e-01 -6.83641434e-02 -3.73569489e-01 5.16927361e-01\\n-2.36638024e-01 4.06869829e-01 5.02030253e-02 -8.49887669e-01\\n4.18810159e-01 3.91902357e-01 3.86040546e-02 -4.14703190e-01\\n8.00929070e-01 -1.94809258e-01 -8.26516077e-02 1.40963584e-01\\n-4.87086147e-01 -2.53189653e-01 7.31034949e-02 -1.29148483e-01\\n-2.64219373e-01 5.28288841e-01 1.57841802e-01 2.48751719e-03\\n3.03817570e-01 -1.67177364e-01 -5.63406050e-02 4.20106612e-02\\n-1.03009053e-01 -2.63718486e-01 -3.59898597e-01 2.95773707e-02\\n9.33025032e-04 -5.64894319e-01 -1.64464742e-01 -4.48738456e-01\\n-2.29870215e-01 -3.85623068e-01 -2.84457594e-01 3.02222729e-01\\n7.86871389e-02 1.71372771e-01 4.33371961e-02 -4.39497270e-02\\n-2.78310090e-01 -5.91726780e-01 5.89052066e-02 2.03073859e-01\\n3.46185327e-01 2.10832834e-01 -1.33104362e-02 -1.03311993e-01\\n-5.84570095e-02 6.04193866e-01 -2.05098584e-01 -1.40605584e-01\\n1.08209684e-01 1.39762253e-01 4.72012609e-02 -1.05087914e-01\\n1.53457165e-01 3.73826772e-01 -2.18837425e-01 2.22453242e-03\\n-1.84212878e-01 1.01875596e-01 2.89617628e-01 -1.31458100e-02\\n-3.10870618e-01 -3.99476796e-01 -1.03770129e-01 2.09014311e-01\\n-5.55365026e-01 -1.96462154e-01 5.97025633e-01 1.30548239e-01\\n4.63644043e-02 1.57617778e-01 2.10942939e-01 -9.38930586e-02\\n-1.89529091e-01 -1.20896824e-01 1.92022502e-01 4.83548306e-02\\n1.36211485e-01 1.53590322e-01 -1.63846135e-01 -4.46112633e-01\\n-3.63659501e+00 -1.80078432e-01 -5.42014651e-03 -3.12845737e-01\\n2.97223538e-01 -1.54581055e-01 2.19552338e-01 -1.65595278e-01\\n-1.88669026e-01 3.05460449e-02 -9.51548964e-02 -1.36965632e-01\\n2.81775981e-01 2.40435064e-01 1.09840468e-01 3.13061804e-01\\n1.25040293e-01 -2.22727150e-01 4.76853130e-03 3.64664197e-01\\n-1.93489149e-01 -6.12320125e-01 2.30651960e-01 -1.06236584e-01\\n3.37590873e-01 3.19241226e-01 -4.68604296e-01 -7.57416487e-02\\n-1.80577040e-01 -2.22853854e-01 1.57241955e-01 -2.44731724e-01\\n-1.43219884e-02 2.94258326e-01 1.58158228e-01 -1.20368332e-01\\n2.44422495e-01 -3.11997265e-01 5.91555703e-03 -4.03323650e-01\\n8.40874389e-02 -5.94538689e-01 -6.14618436e-02 -6.66272342e-02\\n6.66004419e-01 -4.09932256e-01 1.95654392e-01 1.23809896e-01\\n2.07823701e-02 2.83911139e-01 4.53063548e-02 -1.76372513e-01\\n-1.97235227e-01 -2.66823083e-01 -5.79562448e-02 -2.25702286e-01\\n4.66666043e-01 6.96216285e-01 -2.94844300e-01 -6.37403950e-02\\n-8.23288560e-02 -3.42556387e-01 -5.09594858e-01 -4.12853509e-01\\n-2.54454225e-01 -1.26878396e-01 -6.33693337e-01 -4.84593600e-01\\n-1.54982507e-01 -1.42191112e-01 -5.85608259e-02 4.69030470e-01\\n-2.36090988e-01 -4.54550534e-01 -6.02466352e-02 -4.16607738e-01\\n8.01975727e-02 -9.71060023e-02 -2.93771345e-02 -9.37598273e-02\\n-2.48133451e-01 -4.78813738e-01 -6.90025929e-03 -1.76193304e-02\\n-1.49136111e-01 -8.99743140e-02 2.71314949e-01 -2.03736812e-01\\n-3.03722858e-01 -5.82876921e-01 4.73527908e-01 4.42071855e-02\\n3.33470196e-01 1.40813708e-01 2.42255077e-01 9.47453231e-02\\n3.66359681e-01 -2.70765573e-01 1.25461772e-01 -3.78114522e-01\\n8.91728625e-02 9.37936008e-02 5.73961973e-01 -2.37132847e-01\\n-2.01754272e-02 7.31562525e-02 -2.53148168e-01 -1.96580127e-01\\n3.42683792e-01 2.64596697e-02 1.71553433e-01 -3.61900806e-01\\n3.61735135e-01 -3.27515870e-01 -3.00484151e-01 1.41570300e-01\\n1.09479986e-01 5.15654206e-01 -9.24759433e-02 -4.34977323e-01\\n-2.27275729e-01 4.21392083e-01 -2.26698771e-01 -1.52374223e-01\\n-2.13429123e-01 2.97520813e-02 -3.47439438e-01 3.04347426e-01\\n-2.04450246e-02 1.73302069e-02 -3.29923093e-01 -4.20465767e-02\\n2.10618768e-02 2.77067512e-01 2.57934481e-01 1.13589779e-01\\n-4.24875617e-02 -3.79611403e-01 -2.14846246e-02 3.23617011e-02\\n1.62662297e-01 3.17998976e-01 6.05719984e-02 -1.21278904e-01\\n-2.18761172e-02 3.60093772e-01 -2.38716230e-01 2.05808297e-01\\n-2.53398567e-01 2.31435914e-02 -4.92392689e-01 -3.88980508e-01\\n-1.43900841e-01 -1.96623087e-01 -1.08339354e-01 2.94260293e-01\\n1.12443842e-01 -4.80814911e-02 4.07402106e-02 -4.20604438e-01\\n2.32162371e-01 -4.18848023e-02 2.91334361e-01 2.43431717e-01\\n-2.35292129e-02 5.76835871e-01 -1.72726139e-02 -1.37904301e-01\\n-1.62628219e-01 5.69730178e-02 -2.79366702e-01 -7.88518339e-02\\n2.56062914e-02 -4.27904785e-01 -8.10970645e-03 3.98097992e-01\\n1.08125590e-01 -3.61608803e-01 -9.99841392e-02 3.23307127e-01\\n-1.15581444e-02 -4.54943866e-01 -1.64581299e-01 1.22221999e-01\\n3.09805959e-01 1.02784693e-01 2.58078277e-01 -4.92193967e-01\\n-7.67409755e-03 9.98756289e-02 -1.29717037e-01 4.82860923e-01\\n-2.86095627e-02 1.20670937e-01 -4.59373035e-02 -3.21812332e-01\\n3.14715654e-01 -1.34326324e-01 -9.52776149e-03 -8.16570669e-02\\n1.50452837e-01 -1.22944333e-01 -4.04615492e-01 -1.07274083e-02\\n-3.86911333e-02 -9.39931050e-02 1.88949164e-02 1.31937265e-02\\n9.20329243e-02 4.48798463e-02 -4.75471020e-01 -2.82731950e-01\\n-3.28823209e-01 -1.26031414e-01 -9.33070257e-02 -3.89814317e-01\\n7.66213536e-02 -4.30215970e-02 -5.35311818e-01 3.65594536e-01\\n-1.47409961e-01 7.34477267e-02 2.19290018e-01 -3.70027847e-03\\n-4.59182531e-01 -1.23398535e-01 2.43806079e-01 2.10411221e-01\\n-3.34555000e-01 -2.70502090e-01 -6.12781830e-02 -9.74847734e-01\\n2.23563954e-01 -1.32047281e-01 -5.51519170e-02 7.02798739e-02\\n-8.03746060e-02 -5.10082066e-01 2.57669002e-01 -4.35314298e-01\\n-1.90430090e-01 -2.80766599e-02 -2.15726376e-01 -4.35656816e-01\\n-7.02216849e-02 -7.43538514e-03 -2.79765308e-01 4.07338262e-01\\n-3.65778923e-01 4.01677161e-01 -8.79502594e-02 3.65646593e-02\\n-1.05069071e-01 -1.64712012e-01 1.11720599e-01 -4.66668516e-01\\n-5.02142787e-01 -1.49727985e-01 -2.39411965e-01 -1.53811529e-01\\n-3.02266255e-02 -1.59854606e-01 -1.39973417e-01 7.52397925e-02\\n2.43774444e-01 1.40858382e-01 -2.69311313e-02 -1.26812980e-01\\n6.14742897e-02 -4.21969086e-01 -5.07393442e-02 -2.01066181e-01\\n4.59013395e-02 -1.58128083e-01 1.33343488e-01 4.38675024e-02\\n3.20338607e-02 -4.69429910e-01 4.61370587e-01 -1.42458960e-01\\n-2.73617834e-01 4.47295234e-02 6.48807660e-02 1.52496308e-01\\n3.29329491e-01 -4.24849182e-01 1.68828312e-02 3.20536673e-01\\n1.39476359e-01 1.10014372e-01 2.33474627e-01 -7.79749379e-02\\n-2.37630859e-01 3.01276982e-01 -3.39940608e-01 9.36526209e-02\\n7.64296114e-01 1.67809755e-01 1.52172565e-01 2.72762775e-01\\n1.77274048e-01 3.55184823e-01 4.46117073e-01 6.18371591e-02\\n-4.26048711e-02 4.17723596e-01 7.46866614e-02 -5.09685516e-01\\n1.17228299e-01 1.03521749e-01 -3.11587095e-01 -2.56383002e-01\\n6.21267259e-01 4.94621307e-01 -3.24777246e-01 -3.22307646e-01\\n-2.52845705e-01 -1.94170386e-01 1.16937272e-01 -2.23922640e-01\\n1.74328923e-01 -2.14896247e-01 5.12992203e-01 9.88713726e-02\\n1.07385509e-01 4.45189208e-01 -2.28208110e-01 -3.57998699e-01\\n1.01103447e-01 1.40395120e-01 1.92834616e-01 2.40782216e-01\\n-1.14868246e-01 2.20514715e-01 -5.86164743e-02 1.77401662e-01\\n-1.33047312e-01 1.18686154e-01 1.21529825e-01 9.31338668e-02\\n1.08821215e-02 7.98870325e-02 3.22156370e-01 5.01354277e-01\\n3.23970228e-01 4.31119919e-01 1.88143447e-01 7.00362027e-03\\n4.64333981e-01 5.49779534e-01 3.90707433e-01 2.16324568e-01\\n-6.71236068e-02 -1.84571594e-02 2.77564861e-02 -1.75713617e-02\\n2.70239383e-01 3.27943951e-01 4.27183136e-02 8.96209955e-01\\n4.15628254e-01 2.01356903e-01 7.06834555e-01 -5.38191974e-01\\n-4.03924614e-01 -2.20054537e-02 4.06180114e-01 -4.42725331e-01\\n-1.56852707e-01 6.34243414e-02 -2.69979745e-01 1.39637470e-01\\n-4.64405179e-01 -1.67816415e-01 -9.86833572e-02 -2.07132902e-02\\n1.56364813e-01 -7.98116028e-02 -2.51188636e-01 -1.63048536e-01\\n-2.13829294e-01 -1.47049710e-01 -4.93398756e-01 -9.49210078e-02\\n-2.43086159e-01 -2.77882189e-01 -1.40593156e-01 -1.97990164e-01\\n-2.70161703e-02 -4.08469588e-01 -2.23765329e-01 5.66765554e-02\\n2.74015367e-01 -1.26930490e-01 -4.19663452e-02 -1.30328238e-01\\n2.51100123e-01 1.97219402e-01 6.05810344e-01 -4.75016888e-03\\n7.04863444e-02 -1.73395634e-01 -1.75210580e-01 7.97345713e-02\\n2.33371556e-01 1.60470307e-01 -3.59520898e-03 4.69539464e-01\\n-4.02127236e-01 -1.48868710e-01 -1.36767412e-02 5.23167729e-01\\n-3.91351730e-01 7.47904927e-02 1.01863958e-01 2.67115712e-01\\n7.03318715e-02 3.38105075e-02 -1.85994923e-01 5.06803989e-02\\n-2.51456648e-01 -5.16831756e-01 2.65523374e-01 -7.86855295e-02\\n-1.57653168e-01 4.39037345e-02 1.11513242e-01 1.54173389e-01\\n-1.71496153e-01 -1.53831363e-01 1.05763435e-01 1.37929469e-01\\n2.76641995e-01 3.32663387e-01 -2.58737832e-01 -2.65550166e-01\\n-3.86903614e-01 1.53313428e-01 -3.75429720e-01 1.95665315e-01\\n-7.92288184e-02 2.23854959e-01 4.78915051e-02 2.10408419e-01\\n2.89527982e-01 -6.43686205e-02 -1.07713558e-01 -2.83538729e-01\\n-3.00297737e-01 -2.80480921e-01 1.03980675e-01 3.08904573e-02\\n1.03786029e-01 -4.48357999e-01 -1.15784578e-01 -5.52665740e-02\\n-1.64544910e-01 -3.73970807e-01 1.89681482e-02 -1.53350011e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Software Engineer .NET / C#. The role is permanent position based in Zürich Canton. Your role: Design and develop core components for a PC-based client-server application Develop & implement concepts independently. Carry out feature development of client & / or server: Analysis, conception, design, implementation & unit testing. Perform design & code reviews with team members. Train & support team members in development work when necessary. Work closely with cooperation partners composed of product managers, requirements engineers & development teams for software instruments. Your Skills & Profile: 3 to 5 years of relevant work experience in software engineering environment. Strong practical experience & expertise with the .NET Framework & C#. Solid know-how of phase models & agile methods. Good Knowledge of OOA / OOD, UML & OO implementations. Ideally experienced with WPF, WCF, NHibernate & Autofac. Your Profile: University Degree in Computer Science. Proactive, self-driven & consistently aim to achieve high performance. Fluent English (spoken & written), German language skills are a big plus If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Proactivity\", \"Positivity\", \"Cooperation\"]',\n", + " '[\"Application Development\", \"Production Management\", \"NHibernate\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"High Performance Computing\", \"Requirements Management\", \"Autofac\", \".NET Framework\", \"Component Object Model (COM)\", \"Instrumentation\", \"Idealization\", \"Feature-Driven Development (FDD)\", \"Reporting Application Server\", \"Software Engineering\", \"Wcf 4\", \"Requirements Engineering\", \"C# (Programming Language)\", \"Phase (Waves)\", \"Code Review\", \"Receivables\", \"Concept Analysis\"]',\n", + " \"['English', 'Faroese']\"],\n", + " ['121',\n", + " 'frontend engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.teralytics.ch',\n", + " '[[-1.23579845e-01 2.93399215e-01 5.25721729e-01 7.85023421e-02\\n4.19699490e-01 -2.49111410e-02 -3.58503014e-02 4.96793211e-01\\n-4.65962850e-02 -5.25776505e-01 5.66240326e-02 -3.19739103e-01\\n-1.27106056e-01 1.03402823e-01 -7.67607242e-04 4.35630441e-01\\n3.35431159e-01 9.88462418e-02 -2.23248124e-01 3.93326521e-01\\n7.20900446e-02 -7.34687746e-02 2.07197875e-01 8.84832740e-01\\n3.73518050e-01 -1.33740097e-01 -4.51790467e-02 5.29524237e-02\\n-2.02978402e-01 -1.64191395e-01 5.08260608e-01 4.06589285e-02\\n-3.14435959e-01 -3.66170794e-01 1.14152431e-01 -4.14469130e-02\\n-2.94421703e-01 -2.69246846e-01 -1.70056671e-01 1.52753592e-01\\n-5.40310740e-01 -2.83601463e-01 -1.90319389e-01 8.26458633e-03\\n-2.35858276e-01 -2.50487238e-01 9.83743817e-02 7.49109238e-02\\n1.11827746e-01 7.21769854e-02 -5.25439143e-01 1.81697950e-01\\n-2.10754052e-01 -1.49727657e-01 3.56817663e-01 5.10881841e-01\\n-5.90718612e-02 -4.22961116e-01 -5.11825025e-01 -4.03737128e-01\\n5.97058013e-02 -5.69449328e-02 2.64540222e-02 -4.63153303e-01\\n2.24637926e-01 1.25168815e-01 1.09981865e-01 3.10152501e-01\\n-6.98030829e-01 -1.43823177e-01 -3.40612382e-01 -1.15538470e-01\\n-2.96571046e-01 -1.16844095e-01 -3.78809333e-01 -1.40633702e-01\\n-1.68254465e-01 4.72057998e-01 5.68039566e-02 5.02098463e-02\\n-2.18380883e-01 4.63668913e-01 -2.18298107e-01 4.32817578e-01\\n1.68341547e-01 3.68644536e-01 1.86919451e-01 3.14986885e-01\\n-3.74770939e-01 4.42581296e-01 1.13608710e-01 -3.85571271e-01\\n2.03325033e-01 1.44699991e-01 4.22388673e-01 -9.77218449e-02\\n3.63011956e-01 -4.82609048e-02 -3.16630065e-01 4.41865563e-01\\n3.64671111e-01 -3.98974359e-01 2.49471486e-01 -1.12911776e-01\\n1.61653131e-01 -1.00586832e-01 1.55575186e-01 1.21311754e-01\\n-2.45256603e-01 3.48027229e-01 1.05345279e-01 -2.48117715e-01\\n-1.67894587e-02 -4.67990041e-01 2.73228027e-02 5.78152835e-02\\n2.87929736e-02 -2.45071203e-02 1.01956859e-01 3.60882320e-02\\n2.37855911e-01 -1.79064330e-02 4.23837639e-02 6.30572140e-01\\n-1.60771668e-01 -1.24343172e-01 -2.02874810e-01 2.53848493e-01\\n2.23280378e-02 -2.53743559e-01 2.40192980e-01 2.38810033e-01\\n-1.28863864e-02 -2.54537821e-01 -2.67847300e-01 3.85174394e-01\\n1.01309299e-01 -2.34340757e-01 -2.28538096e-01 3.40746343e-01\\n7.25050420e-02 -3.58729243e-01 6.99770331e-01 1.00742951e-01\\n2.00497717e-01 -6.63858727e-02 -1.05420277e-02 -1.86222062e-01\\n-6.72279894e-02 -6.03388995e-02 3.35646421e-03 1.43918753e-01\\n-1.78532243e-01 -3.14929008e-01 -8.07268918e-02 -8.87499377e-03\\n-5.17841756e-01 1.93727106e-01 -9.22134519e-02 -4.46382612e-02\\n1.95082463e-02 -7.15325847e-02 -2.45175794e-01 2.87806809e-01\\n-1.96319774e-01 7.24045485e-02 6.12854697e-02 5.29392421e-01\\n-9.18594599e-02 2.56735981e-01 9.18153077e-02 -1.81125790e-01\\n6.16453290e-01 3.30388188e-01 2.27801234e-01 9.50129181e-02\\n1.60699770e-01 2.33827662e-02 -4.02905792e-03 1.45025283e-01\\n-8.44521284e-01 2.95116007e-01 3.45449299e-02 -1.96054369e-01\\n1.64220184e-01 -1.45139575e-01 1.58551440e-01 -2.52801180e-01\\n-3.69728766e-02 -1.27791554e-01 -2.29090452e-01 -2.73631901e-01\\n-7.62037113e-02 -1.87940031e-01 2.54311323e-01 -5.45333028e-01\\n-7.42686614e-02 1.07227545e-02 -5.32564819e-01 -1.64876759e-01\\n-1.01291398e-02 1.83962762e-01 1.44209027e-01 8.03280920e-02\\n-1.02256030e-01 -5.28380156e-01 5.00006117e-02 -3.36201906e-01\\n-3.05362165e-01 -9.96300112e-03 -3.94033492e-01 1.18415929e-01\\n5.80518208e-02 -8.36820602e-02 -1.60000950e-01 4.78587523e-02\\n-2.07779735e-01 -6.09468743e-02 -1.50434867e-01 -4.12155129e-03\\n1.97905034e-01 1.20966122e-01 -3.05731207e-01 4.44832891e-01\\n-1.37671858e-01 6.59154177e-01 4.63377386e-02 -6.96983933e-01\\n4.91092056e-01 4.44897592e-01 -8.76761079e-02 -3.68802160e-01\\n4.57046330e-01 -3.26403081e-01 -1.36404410e-01 -2.02308968e-02\\n-3.43472868e-01 -3.30782712e-01 1.54344887e-01 -2.68709123e-01\\n-2.46033713e-01 4.35492754e-01 6.19320981e-02 1.66537344e-01\\n2.27961063e-01 -3.24186057e-01 -6.39095679e-02 -2.15834491e-02\\n-7.68651292e-02 -2.32477263e-01 -6.68751359e-01 -2.17776939e-01\\n-2.05967546e-01 -3.81371558e-01 -3.24803442e-02 -4.17229533e-01\\n-1.43407971e-01 -3.13632876e-01 -9.87014472e-02 2.20309868e-01\\n3.10815573e-01 -4.17306796e-02 -1.06487602e-01 9.31433365e-02\\n-2.06051186e-01 -6.99862123e-01 4.99978922e-02 1.62259415e-01\\n4.41062331e-01 1.96381152e-01 2.71242410e-01 -1.99359097e-02\\n6.66364208e-02 7.89240837e-01 -1.99498922e-01 -1.20881185e-01\\n1.77721083e-01 2.18578130e-01 1.23111680e-01 -4.69625928e-02\\n1.98409289e-01 3.23943257e-01 -2.97700077e-01 3.40049081e-02\\n5.74410334e-02 -9.90053266e-03 5.05695462e-01 2.30510868e-02\\n-2.98630536e-01 -1.27244949e-01 -1.64279584e-02 3.30367275e-02\\n-4.19255972e-01 -1.97610706e-01 4.46426272e-01 2.09593773e-01\\n2.19281316e-01 5.55627905e-02 1.07027918e-01 1.00451887e-01\\n-1.92829013e-01 -3.29990387e-01 3.68354857e-01 8.79892558e-02\\n7.61021972e-02 1.38752669e-01 5.18997125e-02 -5.20616829e-01\\n-3.20654821e+00 -8.53528976e-02 1.97419852e-01 -1.44088686e-01\\n1.89393193e-01 3.10317911e-02 3.24844383e-03 -7.36726448e-02\\n-2.35015035e-01 7.75593966e-02 -1.78666636e-01 -2.16080248e-01\\n1.37819514e-01 8.12493861e-02 3.67712490e-02 7.77714774e-02\\n2.00591594e-01 -2.47883171e-01 -6.99451268e-02 2.49238819e-01\\n-1.90491140e-01 -7.28970408e-01 1.05000138e-01 -3.53961401e-02\\n2.88512290e-01 2.79749960e-01 -3.72640848e-01 -1.85696110e-01\\n-1.44766510e-01 -2.09772557e-01 -2.58958116e-02 -4.32846606e-01\\n-1.69027567e-01 1.67008698e-01 2.71183193e-01 -3.11063528e-02\\n1.96449645e-03 -3.58851790e-01 -2.75279522e-01 -5.30766428e-01\\n5.29328808e-02 -5.11140645e-01 -8.40596156e-04 -2.07475871e-01\\n8.06700110e-01 -2.43226305e-01 1.42410129e-01 2.50463169e-02\\n4.69836108e-02 5.20456992e-02 2.53179222e-01 1.26054049e-01\\n-2.27574944e-01 -2.54944682e-01 -3.90350968e-02 -1.81579858e-01\\n5.56796074e-01 3.06474060e-01 -1.75938100e-01 -9.23742279e-02\\n1.18065901e-01 -2.08107501e-01 -4.98447090e-01 -1.07085496e-01\\n-1.14153959e-02 -2.07301080e-01 -6.53504431e-01 -3.91476274e-01\\n-7.86846131e-02 -2.17786431e-01 -2.25293085e-01 6.03317440e-01\\n-3.57819617e-01 -2.56108820e-01 1.61022022e-02 -4.77542847e-01\\n4.67649877e-01 -2.00655818e-01 2.15705931e-02 -3.20451081e-01\\n-2.71206945e-01 -4.39194083e-01 2.53454074e-02 -8.34199041e-02\\n-5.01807928e-02 -3.63148808e-01 4.88334075e-02 -6.82196170e-02\\n-1.28324598e-01 -5.70201457e-01 4.67823505e-01 1.67164207e-01\\n2.19043970e-01 1.48196429e-01 4.22282159e-01 -8.18097293e-02\\n1.64819807e-01 1.63131133e-01 -1.41461968e-01 -2.18828723e-01\\n1.22757792e-01 4.85173762e-02 3.27694058e-01 -6.29526824e-02\\n-1.45245371e-02 1.11125901e-01 -2.96625614e-01 6.00766316e-02\\n2.45641023e-01 -7.01929182e-02 8.21780786e-02 -1.15494668e-01\\n3.62400413e-01 -3.08475077e-01 -1.31428773e-02 5.63411862e-02\\n1.56273633e-01 6.38420701e-01 1.67827308e-03 -4.10116792e-01\\n-1.17930342e-02 5.08486092e-01 8.06755479e-03 1.24444082e-01\\n-2.49771222e-01 1.19322285e-01 -3.18730891e-01 2.34040931e-01\\n1.00715168e-01 -2.03780025e-01 -2.05699891e-01 -8.98755938e-02\\n-1.18600890e-01 3.82208228e-01 2.96510309e-01 9.72151011e-02\\n9.50306207e-02 -4.99423563e-01 -2.14457884e-01 2.50590175e-01\\n2.79440045e-01 5.46361685e-01 1.55815333e-01 -2.87146270e-01\\n3.81847806e-02 3.92797828e-01 -1.09684184e-01 1.45992771e-01\\n-2.31144398e-01 1.48204818e-01 -5.06975293e-01 -2.20484823e-01\\n-4.02841985e-01 -3.74466002e-01 2.56819814e-01 3.97695839e-01\\n2.38159001e-01 -1.02527305e-01 6.90770000e-02 -3.79894376e-01\\n2.59567857e-01 2.61136174e-01 2.54649103e-01 8.48751590e-02\\n-3.60576399e-02 5.64549029e-01 1.56342447e-01 -2.44089067e-01\\n-1.13690481e-01 -2.21194960e-02 -1.34670794e-01 1.40346512e-02\\n-1.25516756e-02 -6.12455904e-01 -2.58369476e-01 3.45459074e-01\\n4.92989272e-02 -1.89965308e-01 -1.58773214e-01 3.17962438e-01\\n-1.15542129e-01 -1.15291841e-01 -2.88072765e-01 -5.20853661e-02\\n4.44818854e-01 1.19308330e-01 3.83392096e-01 -4.95261043e-01\\n-1.25604272e-01 2.51072310e-02 -3.39547023e-02 5.22853017e-01\\n-3.13350223e-02 -5.46027757e-02 -1.20501079e-01 -1.92232490e-01\\n3.85082543e-01 -2.77876496e-01 -1.93124339e-01 8.69284272e-02\\n7.32967183e-02 -1.20890826e-01 -3.95751119e-01 1.48965567e-01\\n-6.04763627e-04 -2.49997437e-01 -4.96552438e-02 3.24569464e-01\\n4.58386131e-02 1.19118482e-01 -7.42156863e-01 -2.03458786e-01\\n-2.85418570e-01 1.66426361e-01 8.67159665e-02 -5.40792346e-01\\n4.41426672e-02 -2.40284368e-01 -6.64822459e-01 2.34500900e-01\\n-2.72952318e-01 -1.87562674e-01 9.81483534e-02 1.56662650e-02\\n-2.44002163e-01 -1.50442868e-01 5.62619977e-03 3.20364356e-01\\n-2.45387256e-01 -3.06732267e-01 -8.69671702e-02 -8.80515218e-01\\n2.37986490e-01 1.38007119e-01 -2.04207525e-01 1.36368066e-01\\n-1.44270331e-01 -6.62676275e-01 3.56135294e-02 -1.19254246e-01\\n-1.35989636e-01 -7.91659728e-02 -3.15757841e-01 -2.99689442e-01\\n2.14120060e-01 -1.44177116e-04 -1.68543920e-01 4.33785975e-01\\n-3.16622972e-01 1.86901361e-01 -2.43034333e-01 3.90616991e-02\\n-8.13825205e-02 -2.97911823e-01 1.17707044e-01 -4.15840447e-01\\n-4.85785186e-01 -2.85642296e-01 -1.93121850e-01 -3.87660086e-01\\n-1.89975455e-01 -4.27620590e-01 -2.07964163e-02 -1.18472055e-03\\n2.62154698e-01 -7.60777220e-02 -1.86973438e-01 -2.59558201e-01\\n1.33079782e-01 -4.65987444e-01 1.01078242e-01 -1.36738643e-04\\n-3.67363505e-02 -2.39293382e-01 1.11524791e-01 1.18981272e-01\\n2.95704663e-01 -3.40235949e-01 2.19130903e-01 -6.52194738e-01\\n-2.68620938e-01 -5.88957369e-02 -1.58876404e-02 -2.84191482e-02\\n1.71321675e-01 -5.07032871e-01 6.77375197e-02 4.09710795e-01\\n2.13228345e-01 4.58456427e-02 2.52339602e-01 -1.71565890e-01\\n-4.99894693e-02 4.32166219e-01 -1.51055098e-01 1.39727578e-01\\n7.78289437e-01 7.37064183e-02 2.03044742e-01 2.01079816e-01\\n5.32234013e-02 2.40388662e-01 3.81585479e-01 -2.17770785e-02\\n-8.10138583e-02 1.52336821e-01 1.90713823e-01 -4.79417950e-01\\n-2.21280381e-02 2.35802978e-02 -1.41184777e-01 -3.69127065e-01\\n6.73279703e-01 3.77215564e-01 -4.57994819e-01 -4.19035591e-02\\n-5.52536026e-02 -9.70232263e-02 1.58781782e-01 1.20163709e-03\\n-9.72460955e-04 3.64994071e-02 2.63047457e-01 -1.42033651e-01\\n2.31685042e-01 5.72090387e-01 -4.95424271e-02 -2.62506485e-01\\n-9.04868990e-02 4.28061366e-01 -1.60298683e-02 5.22552848e-01\\n-2.16636449e-01 3.00592393e-01 1.11129969e-01 -6.25464786e-03\\n-6.67265803e-02 2.21259475e-01 1.70181319e-01 1.18232548e-01\\n2.02496052e-01 7.57725388e-02 3.64590108e-01 4.27349478e-01\\n3.60719919e-01 4.74992812e-01 2.70054817e-01 2.06135899e-01\\n3.98745477e-01 5.20626247e-01 4.15227413e-01 1.79552913e-01\\n-4.95510995e-02 5.99726662e-02 1.30621105e-01 -5.29425256e-02\\n3.20703149e-01 4.19076145e-01 7.91069493e-03 9.68700707e-01\\n3.32125962e-01 3.27838987e-01 6.38249278e-01 -6.99022770e-01\\n-2.74809599e-01 1.56081155e-01 4.50889587e-01 -4.40819263e-01\\n1.41057178e-01 4.63673510e-02 -5.43630123e-03 3.80127370e-01\\n-4.53974247e-01 -3.01362485e-01 1.30990725e-02 2.92919755e-01\\n4.74476404e-02 -3.00300449e-01 -2.61320174e-01 4.65546250e-02\\n-8.00867379e-02 -7.68428370e-02 -4.14825678e-01 -1.38973325e-01\\n-2.64064908e-01 -1.27689779e-01 -1.10817418e-01 -1.91261560e-01\\n2.20229663e-02 -2.60212183e-01 -1.99533217e-02 -8.95065144e-02\\n2.76820898e-01 -1.38364211e-01 -1.18192673e-01 -1.37035266e-01\\n3.71873111e-01 2.06051424e-01 5.26858747e-01 -6.35449123e-03\\n2.01185584e-01 -1.62368298e-01 -2.26636186e-01 2.04156503e-01\\n7.40240961e-02 3.95169333e-02 -5.96227795e-02 4.04631533e-02\\n-2.02656090e-01 -2.09689736e-01 1.98953390e-01 2.28882104e-01\\n-4.96074855e-01 2.49252971e-02 -2.06031740e-01 1.89417049e-01\\n-3.95829976e-02 1.88557118e-01 -1.99440986e-01 2.55305078e-02\\n-1.59616143e-01 -4.15746152e-01 2.01386094e-01 -1.42630458e-01\\n-1.43095136e-01 -3.29967663e-02 4.51712608e-01 1.18638173e-01\\n-3.14783841e-01 1.21351052e-02 -9.07522142e-02 8.78540576e-02\\n8.32986087e-04 1.61249295e-01 -1.92122221e-01 -1.87737808e-01\\n-2.37770915e-01 6.33843094e-02 -2.56481916e-01 7.76565969e-02\\n2.00481728e-01 4.43547368e-01 1.94571421e-01 -6.88022077e-02\\n5.89097023e-01 -1.01672202e-01 -2.81858563e-01 -1.74266368e-01\\n-1.23484217e-01 -9.47194621e-02 -1.96634173e-01 -5.86392283e-02\\n2.36270428e-01 -4.21762913e-01 -4.84818313e-03 -2.21713275e-01\\n-9.03806463e-03 -3.48473102e-01 7.35559836e-02 -1.08425640e-01]]',\n", + " \"Would you like to be central to our future success, where you will be a part of a very dynamic team fueled by positive energy, enthusiasm and supportive teammates? We are looking for a smart and passionate Frontend Engineer to join our Engineering Team in Zurich. About Teralytics Teralytics is on a mission to change how the world moves. Until now, cities and mobility services have been designed based on assumptions of how officials and companies expect people to move. But, they aren't taking everyone's journey into consideration. As a result, for many, mobility is limited. Not just physically, but socially and economically. It's stopping people from reaching their full potential. Teralytics partners with mobile network operators to solve this problem with the most accurate indicator of people's movement – their mobile devices. It's the one thing everyone has with them at all times. And the cell towers receiving their signals don't discriminate based on device model or apps. Due to its complexity and scale, mobile network data has been nearly impossible to understand or utilize. That's why we've pioneered a way to translate it into actionable insights. For the first time we've unlocked truly inclusive data on people's journeys. Teralytics is backed by leading investors in the mobility and transport space, including Robert Bosch Venture Capital and Deutsche Bahn Digital Ventures, as well as high-profile VC funds, such as Atomico and Lakestar, and we are continuing to grow across the world. Whether at our headquarters in Zurich or in our offices in New York and Singapore, our people are at the core of our mission to shape the future of mobility. Your Role The frontend team is one of the engineering pillars in Teralytics. The team is responsible for building interactive web applications and data visualizations that present the insights from our aggregated and anonymized data on human mobility to customers in an easily understandable, visually appealing and engaging manner. Located in our Zurich office, you will play a central role in the development of these applications. More specifically, your responsibilities will include: Taking ownership of our web applications and shaping their future direction and architecture in close collaboration with product managers and designers Developing new features, components and experiences for our web applications in close collaboration with our data visualisation specialists, designers, data scientists and backend engineers Mocking up and prototyping new functionality, visualizations and applications Designing and developing internal applications in close collaboration with data scientists and backend engineers Working with our reliability engineers for efficient deployment of web applications Tech Stack We like working with modern browsers and technologies. Our tech stack includes tools such as: React, TypeScript, Node.js, D3, SVG, Canvas, WebGL, webpack, PostgreSQL, ClickHouse, Docker, Kubernetes. Open Source As strong believers in open-source we contribute to the community by releasing some of our work as open source projects ( https://github.com/teralytics/ ). Your Profile You are a CH/EU/EFTA citizen or in possession of a valid Swiss work permit Must-have qualifications Professional experience in building web applications with great UI/UX using state-of-the-art technologies, with a demonstrable portfolio Extensive knowledge of the technologies that power the web: JavaScript, HTML, CSS Experience with modern frontend development stacks Know-how in scalable frontend development architectures Fluency with data, databases, data preparation and transformations Eye for aesthetics and fluent user experiences Open mind about technologies and ways of approaching a problem Excitement about the fast moving web development world. You enjoy staying up to date and learning new technologies. Strong English communication skills, attention to detail, and ability to deliver finished projects on your own Preferred qualifications Experience with React, TypeScript, D3 and Node.js Experience with geospatial data, web mapping and geographic visualization Experience with 2D/3D graphics in the browser (SVG, Canvas, WebGL) Experience with functional programming concepts Knowledge of SQL databases, especially PostgreSQL What we offer We offer the chance to be part of an exciting and ambitious start-up that puts its people at the heart of its business. Be part of a diverse, international, cross-disciplinary team of highly motivated, hands-on experts that tackle unique challenges with a positive spirit and lots of fun. We offer a flexible work schedule, a central office location as well as a wide range of benefits and perks, including financial childcare support, additional company holidays, and career development programs. What to expect Teralytics is an equal opportunity employer and we value diversity. We do not discriminate on the basis of race, religion, colour, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status.\",\n", + " '[\"Verbal Communication Skills\", \"Aesthetics\", \"Collaboration\", \"Mobile Devices\", \"Communications\", \"Scheduling\", \"Enthusiasm\", \"Presentations\", \"Socialization\", \"Positivity\"]',\n", + " '[\"Production Management\", \"Web Applications\", \"Childcare Fundamentals\", \"Disabilities\", \"Kubernetes\", \"Tooling\", \"Hyper SQL Database (HSQLDB)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Joint Application Design (JAD)\", \"Aggregator\", \"2D Animation\", \"TypeScript\", \"Scale (Map)\", \"Visualization\", \"PostgreSQL\", \"Component Object Model (COM)\", \"Node.js\", \"Venture Capital\", \"Prototyping\", \"D3.js\", \"Translations\", \"Limiter\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Mobility\", \"Mobile Network Operator\", \"Data Visualization\", \"React.js\", \"Mock Ups\", \"Open Source Technology\", \"Docker (Software)\", \"Github\", \"Programming Concepts\", \"2D Computer Graphics\", \"Webpack\", \"WebGL\", \"Equalization\", \"Digitization\", \"Architectural Development\", \"JavaScript (Programming Language)\", \"Scalability\", \"Unlocker\", \"Receivables\", \"Functional Programming\", \"Humanism\", \"Appeals\", \"Economics\", \"Career Development\", \"Data Direct Networks\", \"Web Mapping\", \"3D Graphic Design\", \"Additives\", \"User Experience\", \"Eyes\", \"Custom Backend\"]',\n", + " \"['English']\"],\n", + " ['118',\n", + " 'big data engineer',\n", + " 'Bern',\n", + " 'IT Services',\n", + " 'www.swisscom.ch',\n", + " '[[-2.37515822e-01 3.27821583e-01 4.20995831e-01 -5.08009791e-02\\n3.81632239e-01 -2.43010327e-01 1.08985091e-02 3.85306656e-01\\n4.62909192e-02 -2.13611737e-01 -6.37277514e-02 -2.93727368e-01\\n-2.90873051e-01 1.49489000e-01 1.54372424e-01 4.23432171e-01\\n2.22828403e-01 9.23545882e-02 -2.44008526e-01 4.17492867e-01\\n6.86373413e-02 7.27814510e-02 -1.34627029e-01 6.21603370e-01\\n4.03350651e-01 -5.32095619e-02 -1.65685907e-01 -1.05307475e-01\\n-3.72956097e-01 -1.61685959e-01 4.54196304e-01 1.26438990e-01\\n-2.08362356e-01 -4.05997336e-01 5.26735373e-02 1.15206756e-01\\n-1.37977004e-01 -5.89941218e-02 -6.01788200e-02 1.78162575e-01\\n-5.23175359e-01 -3.62893403e-01 5.38302846e-02 1.49870679e-01\\n-1.85276926e-01 -2.17958227e-01 2.51104772e-01 6.37179315e-02\\n-5.45897186e-02 3.93017828e-02 -6.58880770e-01 2.48588890e-01\\n-1.46918803e-01 -2.66802430e-01 2.58605987e-01 5.46580195e-01\\n1.00834295e-01 -4.95901167e-01 -4.50792015e-01 -4.47990000e-01\\n9.66743007e-02 -7.44877607e-02 2.49192845e-02 -3.64111900e-01\\n2.97390580e-01 1.79963920e-03 2.74405652e-03 3.82426083e-01\\n-7.95863688e-01 -1.82803214e-01 -1.18297070e-01 -4.55285832e-02\\n-3.95875394e-01 6.00838959e-02 -2.22109929e-01 -6.15972094e-02\\n-7.32400045e-02 3.25842917e-01 -4.43595536e-02 8.52121636e-02\\n-1.82827339e-01 4.30580705e-01 -6.82247505e-02 3.11964750e-01\\n3.28048706e-01 1.45572141e-01 6.88224211e-02 3.51250947e-01\\n-3.97454917e-01 3.68488133e-01 5.81115559e-02 -2.21373856e-01\\n3.01258802e-01 1.55241787e-01 5.46696544e-01 4.97956723e-02\\n1.59619376e-01 1.90129012e-01 -2.52596438e-01 2.39958867e-01\\n2.17011750e-01 -3.80977780e-01 1.69381872e-01 -7.13851899e-02\\n-1.01593412e-01 -1.46940099e-02 7.03252554e-02 2.09431559e-01\\n-2.26294518e-01 3.89722824e-01 3.08652908e-01 -1.37512237e-01\\n-8.48512277e-02 -5.51381230e-01 -4.79210503e-02 -3.53688933e-03\\n1.14034355e-01 1.02352053e-01 2.18395367e-01 9.08071622e-02\\n2.34005958e-01 5.63564673e-02 1.49540439e-01 7.42017686e-01\\n-1.13778375e-01 1.56902015e-01 -1.26103252e-01 3.56538028e-01\\n2.28007525e-01 -3.20565253e-01 2.98876971e-01 2.50431150e-01\\n2.16553420e-01 -1.06242828e-01 -3.46848845e-01 4.08227354e-01\\n-1.77643582e-01 -1.72903165e-01 -3.70090693e-01 1.04895666e-01\\n-1.09037980e-01 -4.84822035e-01 5.25121629e-01 2.16166899e-01\\n2.57058501e-01 -5.52205816e-02 -3.23333666e-02 -4.57535759e-02\\n-6.25421703e-02 3.69237304e-01 1.90292429e-02 3.24873000e-01\\n-2.93915391e-01 -2.72201121e-01 -1.73601836e-01 2.63056755e-01\\n-3.95872980e-01 1.28986880e-01 6.14040755e-02 -1.66189373e-01\\n3.25342000e-01 5.82416877e-02 -3.56184751e-01 1.54371709e-01\\n-1.18086323e-01 -2.32663214e-01 -3.22058201e-02 3.60680044e-01\\n-2.31387749e-01 3.06946486e-01 -3.56702246e-02 -1.51209891e-01\\n6.02022171e-01 1.46288365e-01 2.05208033e-01 -2.49165483e-02\\n2.82504469e-01 -7.87910372e-02 3.26676905e-01 1.51668772e-01\\n-7.68049181e-01 2.49433547e-01 -2.53462233e-02 -1.66625425e-01\\n1.24892563e-01 5.32665476e-02 3.40551257e-01 -3.29799622e-01\\n2.67900657e-02 -2.14845866e-01 -4.61766034e-01 -3.25357676e-01\\n-4.77361143e-01 5.93500920e-02 3.54495585e-01 -3.46998155e-01\\n-1.10501237e-01 1.25149235e-01 -5.64486682e-01 -1.77245751e-01\\n1.02879219e-01 4.64399420e-02 2.46496964e-02 -2.03646049e-02\\n-9.19718817e-02 -7.03052938e-01 -3.34287062e-02 -4.16015655e-01\\n-4.65385556e-01 7.24769458e-02 -3.27007592e-01 2.22653449e-01\\n-7.72005618e-02 7.73477331e-02 -1.47160992e-01 2.13181123e-01\\n-2.71734953e-01 -2.31534243e-02 1.96659416e-01 5.42957410e-02\\n2.49667451e-01 -1.19377062e-01 -3.94999832e-01 4.26858693e-01\\n-1.44757509e-01 7.27348208e-01 2.79707074e-01 -7.96696544e-01\\n6.29517972e-01 3.10309142e-01 1.01566620e-01 -3.65626991e-01\\n4.98687625e-01 -3.61605316e-01 -1.81186363e-01 1.00357167e-01\\n-3.34465593e-01 -2.76126832e-01 2.87010938e-01 -2.19946787e-01\\n-2.51093447e-01 6.54046118e-01 2.62399912e-01 1.50524853e-02\\n3.76619875e-01 -2.98978597e-01 -6.43304437e-02 4.27519158e-03\\n-1.67029381e-01 -2.43043199e-01 -4.14825588e-01 8.46408084e-02\\n-3.73417735e-02 -4.83296603e-01 -2.03598022e-01 -1.41347036e-01\\n-1.72631428e-01 -3.21708411e-01 -1.94380894e-01 4.81264651e-01\\n2.07750946e-01 7.37131312e-02 1.53929146e-03 5.94995916e-02\\n-9.05224904e-02 -6.47354186e-01 6.45858124e-02 8.31868947e-02\\n4.23580080e-01 2.09187537e-01 7.42333010e-02 -7.47496560e-02\\n8.38232972e-03 5.72409749e-01 -4.14211333e-01 -4.24342632e-01\\n1.05215654e-01 1.45050123e-01 -4.06878479e-02 -1.92919403e-01\\n5.49387373e-02 4.35983390e-01 -3.70846808e-01 3.39646302e-02\\n-9.34038609e-02 -1.08434811e-01 3.09535652e-01 -9.05699059e-02\\n-2.48197347e-01 -2.48376191e-01 -2.17290260e-02 3.10240209e-01\\n-4.62658226e-01 -2.61926025e-01 4.91151154e-01 3.01259309e-01\\n1.83516845e-01 1.24158345e-01 3.01032305e-01 -2.04022944e-01\\n-3.01513761e-01 -3.89198422e-01 1.45998999e-01 2.12264821e-01\\n5.83008043e-02 6.63826466e-02 -2.58908160e-02 -5.81174314e-01\\n-2.79377222e+00 -1.76822752e-01 2.39893243e-01 -1.79324895e-01\\n1.60964921e-01 -7.37733766e-02 -8.86297747e-02 -9.10789073e-02\\n-3.29460412e-01 5.41804694e-02 -9.45919082e-02 -1.69867933e-01\\n2.84727141e-02 3.76368999e-01 1.87100455e-01 1.45676136e-01\\n5.86669594e-02 -2.01920137e-01 -1.15719922e-01 3.79000127e-01\\n-1.45066246e-01 -6.23265803e-01 1.80462509e-01 -1.01669664e-02\\n2.73825705e-01 2.55329818e-01 -2.70087749e-01 -1.12823449e-01\\n-1.24110334e-01 -1.83944881e-01 2.67332792e-02 -2.75999457e-01\\n-1.62102491e-01 3.75868589e-01 7.09924623e-02 3.36317271e-02\\n4.55581136e-02 -3.30238223e-01 -2.08968133e-01 -4.38419372e-01\\n1.75034683e-02 -5.40408731e-01 7.59009738e-04 -3.15894097e-01\\n7.24893153e-01 -3.06543678e-01 1.72562927e-01 6.01168489e-03\\n2.36272767e-01 1.21930875e-01 -4.63882387e-02 7.82464370e-02\\n-2.77718574e-01 -2.71854967e-01 -8.91297683e-02 -2.46021017e-01\\n5.37968040e-01 4.89737034e-01 -1.31939694e-01 -1.55898780e-01\\n2.71017790e-01 -2.53752440e-01 -2.67024010e-01 -4.25180405e-01\\n-8.61372128e-02 -3.14467102e-01 -6.23471200e-01 -3.91440630e-01\\n-7.58717135e-02 -1.15340158e-01 -1.08392075e-01 7.14646280e-01\\n-4.70339477e-01 -2.74625629e-01 5.59775382e-02 -7.52178788e-01\\n1.99839786e-01 -2.26295933e-01 -1.76110007e-02 -1.53353751e-01\\n-2.30650783e-01 -6.04556859e-01 9.50940847e-02 -6.54529557e-02\\n-2.25660041e-01 -2.90835887e-01 -3.78598385e-02 -1.69121906e-01\\n-2.46496156e-01 -5.17673731e-01 4.20730084e-01 1.70003071e-01\\n3.17611516e-01 1.06449224e-01 3.04608434e-01 -2.62698866e-02\\n3.63096088e-01 -1.08289793e-01 1.99334309e-01 -4.14311022e-01\\n1.56713322e-01 1.64450239e-02 5.50319016e-01 -2.73518473e-01\\n6.07944373e-03 2.24829823e-01 -2.80311227e-01 -4.80230041e-02\\n3.68224829e-01 1.29964858e-01 9.04914748e-04 -1.17033064e-01\\n3.79825354e-01 -4.81033444e-01 -1.74813658e-01 2.78963774e-01\\n1.12928025e-01 6.66270137e-01 -4.16088896e-03 -3.80156428e-01\\n-2.58522898e-01 5.22660136e-01 -1.27737686e-01 -1.26743004e-01\\n-1.27574503e-01 1.09952055e-01 -9.60498825e-02 2.11966008e-01\\n1.56671721e-02 -1.46194413e-01 -3.11321765e-01 -1.30641147e-01\\n-1.15131244e-01 2.33409151e-01 2.26387009e-01 2.64064576e-02\\n-6.71111140e-03 -2.49030218e-01 -3.58261280e-02 1.48786977e-01\\n2.84321696e-01 3.64353508e-01 -9.31981485e-03 -1.85774371e-01\\n-1.39272928e-01 3.77890468e-01 -1.24807194e-01 1.92038760e-01\\n-2.53800958e-01 1.01092912e-01 -5.92636585e-01 -2.32990146e-01\\n-1.66735455e-01 -3.03618222e-01 2.75048554e-01 2.28982285e-01\\n1.98361069e-01 2.13006996e-02 2.62222476e-02 -5.75723648e-01\\n3.68358940e-01 1.89023688e-01 1.34584740e-01 1.83677450e-02\\n-6.63080141e-02 4.67741281e-01 -1.80375148e-02 -3.39669804e-03\\n-5.88626303e-02 -3.83439474e-02 -2.53341585e-01 -2.78196245e-01\\n1.78709745e-01 -4.55920666e-01 -2.15738043e-01 4.56094980e-01\\n9.55064893e-02 -3.75245750e-01 -3.85136962e-01 1.82245746e-01\\n1.45845264e-01 -2.03144863e-01 -1.91142753e-01 -8.42086002e-02\\n1.98972821e-01 1.48447111e-01 2.37318754e-01 -3.49746972e-01\\n-1.26460820e-01 9.71029252e-02 -1.03444427e-01 3.95305932e-01\\n1.27991945e-01 4.26144898e-02 -2.62969732e-01 -2.00599611e-01\\n4.25111562e-01 -2.33250529e-01 -7.28306323e-02 -8.29897299e-02\\n2.13285133e-01 -1.71023205e-01 -5.17676353e-01 9.73732620e-02\\n-4.00352068e-02 -2.96395421e-01 8.91325902e-03 3.45707424e-02\\n1.43759847e-01 7.43674710e-02 -4.71034706e-01 -2.44405299e-01\\n-3.25612545e-01 -1.82188481e-01 1.19583771e-01 -2.54178554e-01\\n7.61724263e-02 -5.45064025e-02 -5.56881070e-01 1.68059275e-01\\n-3.64581048e-01 -5.41684628e-02 9.38367397e-02 1.24190144e-01\\n-4.61285770e-01 -4.15245853e-02 6.67510182e-03 2.00377151e-01\\n-4.31792527e-01 -4.43958908e-01 8.09719786e-02 -8.55524063e-01\\n1.03325665e-01 3.59382667e-02 -7.26571530e-02 6.39490560e-02\\n-1.01134986e-01 -7.12303579e-01 8.97002518e-02 -3.97122651e-01\\n-3.24196778e-02 7.16675594e-02 -3.20040494e-01 -2.10587353e-01\\n2.69071251e-01 -2.79395640e-01 -4.04485881e-01 5.09820163e-01\\n-4.73025829e-01 1.71773225e-01 -6.10312866e-03 8.94835293e-02\\n-1.57899957e-03 -1.63599491e-01 1.95006505e-01 -2.98076600e-01\\n-3.65664452e-01 -1.77680150e-01 -3.30997795e-01 -3.13161999e-01\\n3.80180813e-02 -2.77160645e-01 -1.77348703e-01 1.48686409e-01\\n2.88764387e-01 8.10002014e-02 -1.33514047e-01 -1.83961645e-01\\n1.48065075e-01 -4.68307644e-01 7.08416253e-02 -2.05258802e-01\\n1.30885774e-02 -2.43086834e-02 1.23701856e-01 -2.29089577e-02\\n-1.49853984e-02 -3.34903121e-01 3.93113106e-01 -4.23680037e-01\\n-3.51313680e-01 -9.74764600e-02 -1.10818803e-01 -8.45456272e-02\\n1.53341919e-01 -5.26033401e-01 1.63398877e-01 3.85827750e-01\\n3.82424109e-02 -2.38581952e-02 1.66098401e-01 9.68989264e-03\\n-2.27045193e-02 2.93934494e-01 -4.79917675e-01 1.44276954e-02\\n8.33814919e-01 1.47376463e-01 -2.31898371e-02 1.03075989e-01\\n1.86361283e-01 3.57426971e-01 4.47775066e-01 -4.12158528e-03\\n-3.55357602e-02 1.39942989e-01 7.43634403e-02 -4.96736377e-01\\n-2.09169388e-02 1.19745485e-01 -2.15188339e-01 -2.96924233e-01\\n6.87722623e-01 4.06432420e-01 -4.78748739e-01 -3.21693003e-01\\n9.68511850e-02 -5.56703918e-02 3.54306310e-01 -1.20034479e-01\\n-1.03619322e-01 -3.93997543e-02 5.36198735e-01 4.90024686e-02\\n2.36768901e-01 5.70484996e-01 -1.64025739e-01 -4.04676586e-01\\n-1.19671382e-01 1.41104236e-01 1.50366306e-01 5.31778753e-01\\n-1.06964760e-01 2.30960310e-01 -1.11541979e-01 4.17664386e-02\\n-8.83472431e-03 3.30757856e-01 2.79946864e-01 8.27588961e-02\\n2.46844992e-01 -8.60367581e-05 2.91347414e-01 5.09129643e-01\\n1.37710959e-01 4.78811711e-01 2.52485573e-01 4.69638109e-02\\n3.35895717e-01 4.93021965e-01 3.75424564e-01 2.31532335e-01\\n-2.18581203e-02 8.39639977e-02 1.40570134e-01 1.44818556e-02\\n4.42975670e-01 2.82091469e-01 2.05940738e-01 9.34057951e-01\\n3.74598294e-01 2.54715830e-01 7.68483400e-01 -7.22378433e-01\\n-3.87649983e-01 1.01815000e-01 5.09043097e-01 -3.51925492e-01\\n-6.22350983e-02 1.39932066e-01 -1.71189100e-01 2.92440355e-01\\n-5.05330741e-01 -4.36785966e-02 2.84388214e-02 1.93726212e-01\\n-2.58070100e-02 -6.12182952e-02 -2.88419724e-01 1.46615049e-02\\n-2.24268511e-01 -1.33764520e-01 -3.50016326e-01 -3.13072413e-01\\n-2.88937718e-01 -1.69691831e-01 -1.86906710e-01 -7.90367723e-02\\n-9.19008628e-02 -4.79197681e-01 -7.13729784e-02 -5.57798371e-02\\n3.36303979e-01 -1.78764880e-01 3.67732975e-03 -2.20532328e-01\\n2.39723817e-01 3.65229934e-01 5.27588367e-01 -1.35037690e-01\\n2.89134458e-02 -2.00053692e-01 -3.81077647e-01 8.46858397e-02\\n2.52793524e-02 1.48317426e-01 5.40305525e-02 3.50993335e-01\\n-2.08683103e-01 -6.84615001e-02 9.00868326e-02 2.72932619e-01\\n-4.35891002e-01 -1.61528006e-01 -1.41027942e-01 2.18612537e-01\\n1.22167982e-01 1.29202679e-01 -2.94389665e-01 1.97411880e-01\\n-2.54111201e-01 -4.83704835e-01 3.48814577e-01 -1.63745746e-01\\n-9.14216340e-02 3.71205091e-01 3.60128343e-01 2.55130827e-01\\n-2.65109330e-01 -1.42115384e-01 6.94283172e-02 3.87339145e-01\\n-7.96625316e-02 3.53159726e-01 -6.31901994e-02 -2.54419982e-01\\n-2.49674678e-01 3.17460090e-01 -2.13343993e-01 1.25820369e-01\\n-5.59143163e-02 3.91125709e-01 -4.60046995e-03 1.04311660e-01\\n3.37887168e-01 4.59150858e-02 -1.95388675e-01 -3.09314489e-01\\n-1.45938829e-01 -2.63455987e-01 -7.68668875e-02 4.92827967e-02\\n6.87826127e-02 -3.57056469e-01 -1.53861403e-01 -1.70016453e-01\\n-8.15603659e-02 -2.97621459e-01 -2.09456123e-03 6.34652972e-02]]',\n", + " \"You are an expert in gathering knowledge from network engineers, sourcing and processing data, applying anomaly detection models, and making our insights accessible to end users. We are a group of data engineers and data scientists that are passionate about the topics we work on, the methods we apply, and the tools we use. We design and implement end-to-end solutions – all by leveraging domains like distributed systems, data mining, or web development. We create software relying on the Agile approach, and we use state-of-the-art big data technologies such as Kafka, Kafka Streams, or Cassandra. We code mostly in Java, and we are strong supporters of Open Source. Your tasks span from data science (10%) through big data engineering (60%) to DevOps (30%). Thus, you are interacting with data scientists, big data engineers, DevOps as well as product owners and business engineers. Bachelor's degree (ETH/Uni/UAS) with at least 4 years of relevant experience, or Master's degree (ETH/Uni/UAS) with at least 1 year of relevant experience, or PhD in computer science or related field Able to write clean and effective code in Java Solid understanding of data structures and algorithms Experience with Big Data technologies, in particular Kafka, Kafka Streams, and Cassandra is a plus Ability to analyse and visualise data (e.g. with Python, Jupyter) is a plus DevOps know-how: scripting (Unix, Python), Ansible, Prometheus, Grafana, Jenkins is a plus Familiarity with web development technologies such as TypeScript, Angular, HTML, CSS, RESTful APIs is a plus Knowledge in relational databases, relational data modelling, and SQL is a plus Experience with containerization technologies (Docker, Kubernetes) is a plus Very good English, German a plus\",\n", + " '[\"Writing\", \"Sourcing\"]',\n", + " '[\"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Agility\", \"Apache Cassandra\", \"Jenkins\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Data Modeling\", \"Data Engineering\", \"TypeScript\", \"Network Engineering\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Open Source Technology\", \"Data Science\", \"Docker (Software)\", \"Big Data\", \"Java Data Mining\", \"Unmanned Aerial Systems (UAS)\", \"Data Structures\", \"Grafana\", \"Angular (Web Framework)\", \"Relational Databases\", \"Ansible\", \"Algorithms\", \"Scripting\", \"Anomaly Detection\", \"Java (Programming Language)\", \"Data Processing\", \"Unix\", \"Prometheus (Software)\", \"Jupyter\", \"SQL (Programming Language)\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Nauru', 'Samoan', 'Tatar', 'Venda']\"],\n", + " ['14',\n", + " 'navigation software engineer',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.anybotics.com',\n", + " '[[-3.65454137e-01 3.03180605e-01 4.32658046e-01 -4.90374975e-02\\n5.34926891e-01 -2.04220399e-01 -6.77040294e-02 2.93809235e-01\\n-1.27185676e-02 -4.11410570e-01 1.21092899e-02 -2.23751366e-01\\n-1.03251658e-01 9.40477103e-02 1.70659095e-01 4.45899427e-01\\n2.90099680e-01 5.37354797e-02 -2.76247799e-01 4.48428154e-01\\n1.39183789e-01 -1.04265757e-01 1.37354568e-01 8.48674953e-01\\n3.33168149e-01 -7.27674458e-03 -6.13345318e-02 8.60348493e-02\\n-2.37022132e-01 -1.56767070e-01 2.93087959e-01 -3.90353650e-02\\n-1.13746211e-01 -4.37424481e-01 7.77685717e-02 1.24595903e-01\\n-1.99001938e-01 -3.93236615e-02 -1.24038354e-01 1.29215688e-01\\n-4.23992723e-01 -1.52068362e-01 -4.87055741e-02 -1.74764246e-02\\n-1.99220672e-01 -3.03308278e-01 8.97573307e-02 -7.25957751e-02\\n1.15579963e-01 -5.27519062e-02 -4.14977491e-01 2.51682997e-01\\n-2.26809919e-01 -3.07420909e-01 2.94637889e-01 5.29990315e-01\\n-1.28570497e-01 -5.04366696e-01 -3.36030036e-01 -3.48614097e-01\\n-1.36529326e-01 -6.86778780e-03 9.26275030e-02 -3.13591599e-01\\n2.39539221e-01 7.22256899e-02 -8.02190881e-03 3.09142530e-01\\n-7.39558935e-01 -1.10351630e-01 -2.83550650e-01 -7.96735007e-03\\n-3.59147221e-01 -2.64373440e-02 -3.82402122e-01 -2.15000823e-01\\n-3.69495563e-02 3.31150115e-01 -2.81560607e-02 8.95063207e-02\\n-1.07911684e-01 3.26754838e-01 -6.62119389e-02 3.37718427e-01\\n2.48008668e-01 2.10852206e-01 1.12694457e-01 3.28697145e-01\\n-3.38333786e-01 4.14902210e-01 1.06794119e-01 -2.48491451e-01\\n2.34170958e-01 1.99527711e-01 4.21633929e-01 -1.00721769e-01\\n1.58016831e-01 1.07762605e-01 -3.04430962e-01 2.36302331e-01\\n2.44378239e-01 -2.85108894e-01 3.24930176e-02 -1.28217474e-01\\n1.53772548e-01 6.94228709e-02 2.66170949e-02 2.40776390e-01\\n-3.97635311e-01 5.04359066e-01 9.32845995e-02 -1.63739100e-01\\n-1.09376840e-01 -5.95417500e-01 -7.57067651e-02 2.74604298e-02\\n-1.71643291e-02 1.84607938e-01 2.24667192e-01 1.79150909e-01\\n1.90633714e-01 -1.73837747e-02 1.45241708e-01 9.41730738e-01\\n-8.50586519e-02 6.84904680e-02 -9.60040912e-02 2.95937210e-01\\n3.58937606e-02 -3.77100319e-01 2.22502381e-01 2.13563949e-01\\n1.55855656e-01 -1.04072131e-01 -2.64676511e-01 2.81037867e-01\\n-1.18771695e-01 -2.12683767e-01 -2.78553903e-01 3.29246521e-01\\n-1.34525076e-01 -5.68394721e-01 5.93204975e-01 -1.07186120e-02\\n2.22122923e-01 -5.19878871e-04 1.24893583e-01 -9.02527645e-02\\n-1.55405611e-01 1.71034589e-01 1.52161911e-01 1.24719098e-01\\n-3.56195271e-01 -2.56443679e-01 -1.88477322e-01 4.07308340e-02\\n-3.68533105e-01 2.15235725e-01 -1.15645319e-01 -1.32607102e-01\\n1.51272327e-01 -1.63503587e-02 -4.33358550e-01 2.88041443e-01\\n-1.90481171e-01 -2.43252981e-02 -6.88001048e-03 4.40340281e-01\\n-2.21206889e-01 3.06674153e-01 2.30127946e-02 -3.45258042e-02\\n6.04870141e-01 1.86518446e-01 8.44287276e-02 -5.33559881e-02\\n3.19055468e-01 -7.64684984e-03 8.40133950e-02 1.02746829e-01\\n-7.26908386e-01 3.13111931e-01 -1.77127533e-02 -1.92416355e-01\\n5.50586246e-02 -1.04155727e-01 2.72781283e-01 -2.26958081e-01\\n-8.40433016e-02 -2.53165543e-01 -2.35663816e-01 -1.75750241e-01\\n-2.32534856e-01 1.90199334e-02 4.11342680e-01 -2.77086377e-01\\n-1.38832062e-01 2.38145128e-01 -5.10836542e-01 4.40043025e-02\\n1.06670991e-01 1.12866253e-01 1.17893532e-01 1.80323303e-01\\n-5.27573898e-02 -6.14390075e-01 -3.39544863e-02 -4.10006583e-01\\n-3.12837899e-01 1.11898579e-01 -3.93974572e-01 1.62113190e-01\\n1.07567444e-01 -3.16423103e-02 -2.09333405e-01 2.70663321e-01\\n-2.07096398e-01 -1.14626763e-02 9.01832357e-02 -1.10774506e-02\\n2.21597165e-01 8.43742490e-02 -5.55385113e-01 3.54262978e-01\\n-1.95031196e-01 5.68201005e-01 2.85780821e-02 -7.39733577e-01\\n4.13903922e-01 3.14075381e-01 -1.26858115e-01 -4.05693829e-01\\n6.26557052e-01 -3.99890810e-01 -1.26738250e-01 4.75891680e-02\\n-3.29101592e-01 -3.22109133e-01 3.44384491e-01 -2.39428788e-01\\n-2.86160141e-01 5.77122927e-01 9.37213600e-02 2.52764583e-01\\n3.44143808e-01 -3.05880934e-01 -6.22156076e-02 1.60126895e-01\\n-2.01179758e-02 -2.47861713e-01 -6.17269337e-01 -1.08659126e-01\\n-1.50444970e-01 -4.41511005e-01 -1.49445549e-01 -5.25598288e-01\\n-1.67348832e-01 -3.56858730e-01 -2.37745658e-01 1.97227523e-01\\n3.77053589e-01 1.99395597e-01 4.56864685e-02 5.97172929e-03\\n-1.44970581e-01 -6.35497749e-01 7.55072683e-02 2.77137421e-02\\n4.06811118e-01 3.12594175e-01 1.01706222e-01 -4.91957404e-02\\n1.11005232e-01 6.24633789e-01 -2.59952307e-01 -2.23154858e-01\\n3.36115025e-02 1.80295110e-01 -4.27132472e-02 -1.34652138e-01\\n1.86834022e-01 4.21593964e-01 -3.85302365e-01 9.21670645e-02\\n-1.84992805e-01 -8.18830915e-03 4.78436172e-01 -6.70330748e-02\\n-3.18218201e-01 -2.59743452e-01 -2.71236841e-02 5.21514527e-02\\n-5.73787332e-01 -1.41142890e-01 4.18053597e-01 2.06109866e-01\\n2.95077473e-01 2.24693008e-02 1.97483718e-01 -8.15607682e-02\\n-2.58299053e-01 -2.59231776e-01 1.71600312e-01 8.05975124e-02\\n1.01935819e-01 8.12639743e-02 -5.73470071e-02 -6.86783075e-01\\n-3.11407042e+00 3.17352191e-02 1.45011321e-01 -1.09241605e-01\\n2.72219360e-01 9.14474130e-02 2.15101726e-02 -6.05277754e-02\\n-3.62525553e-01 7.01834783e-02 -2.14144796e-01 -2.27167845e-01\\n9.77804810e-02 2.46939346e-01 1.96693093e-01 1.24753326e-01\\n1.78399026e-01 -3.66412163e-01 -5.23452498e-02 3.00741762e-01\\n-5.44728339e-02 -6.81084216e-01 1.30007908e-01 -9.74975005e-02\\n3.06685925e-01 3.78559381e-01 -4.11470205e-01 -2.00529933e-01\\n-3.36717576e-01 -1.44724712e-01 -1.86909118e-03 -2.87585258e-01\\n-1.43032581e-01 2.66890883e-01 1.84047371e-01 1.62518565e-02\\n1.86432347e-01 -3.80646020e-01 6.08798116e-02 -4.35968310e-01\\n1.06690504e-01 -4.72301543e-01 6.01324923e-02 -7.37136602e-02\\n7.27541804e-01 -3.17588359e-01 1.41126156e-01 9.34400633e-02\\n1.95823207e-01 8.90228450e-02 2.02203076e-02 3.29886302e-02\\n-1.56897619e-01 -1.78285971e-01 -1.01710305e-01 -2.60784119e-01\\n6.58959389e-01 4.07693267e-01 -1.75593510e-01 2.94342935e-02\\n-2.23970711e-02 -4.32222873e-01 -4.78064865e-01 -2.32302442e-01\\n-1.19170994e-01 -1.71627551e-01 -5.59193850e-01 -4.68573719e-01\\n-5.83003946e-02 -1.77866742e-01 -1.05435789e-01 5.95056415e-01\\n-3.03894639e-01 -3.10692042e-01 3.02418917e-02 -4.96130258e-01\\n1.87906325e-01 -2.64997154e-01 5.03594987e-02 -2.25820810e-01\\n-3.55956018e-01 -6.86294019e-01 1.66899621e-01 -4.61636595e-02\\n-7.29616210e-02 -2.66528398e-01 2.80516613e-02 -1.45121977e-01\\n-2.33675212e-01 -4.93425876e-01 4.68777597e-01 2.14099162e-03\\n3.00365031e-01 1.20423131e-01 2.56995320e-01 -2.89015681e-03\\n1.95217624e-01 -4.16791365e-02 1.40957743e-01 -3.35617512e-01\\n9.39099491e-02 4.05658446e-02 4.55212533e-01 -1.23390853e-01\\n-7.84516521e-03 1.42175704e-01 -3.12554240e-01 -1.21331714e-01\\n3.30570638e-01 9.68148783e-02 2.25068927e-02 -1.91442609e-01\\n3.18400055e-01 -3.37037235e-01 -4.03813049e-02 1.45985574e-01\\n1.69994742e-01 6.39955938e-01 -4.61196061e-03 -4.01263177e-01\\n-1.43951222e-01 4.24473733e-01 -4.07987973e-03 1.62685812e-01\\n1.59354396e-02 6.82254136e-02 -2.55306572e-01 2.60637879e-01\\n2.29170825e-02 -2.28294760e-01 -1.97289929e-01 -1.22773582e-02\\n-1.28654152e-01 3.89743328e-01 2.73628533e-01 1.60318553e-01\\n-2.34572485e-01 -4.85770255e-01 -9.04010907e-02 3.06712508e-01\\n2.03474224e-01 4.38887119e-01 1.62957504e-01 -3.41204792e-01\\n-2.98428200e-02 2.83670247e-01 -6.94526285e-02 2.38548085e-01\\n-2.71186203e-01 1.46025807e-01 -5.26947737e-01 -2.75323838e-01\\n-3.34688365e-01 -4.45930153e-01 2.61100829e-01 3.56127232e-01\\n7.77451172e-02 -5.45403268e-03 1.43993333e-01 -3.77144843e-01\\n4.14504945e-01 1.35612100e-01 2.58740306e-01 5.78065403e-02\\n-9.97224823e-02 4.80091453e-01 2.88913157e-02 -2.35296190e-01\\n-2.04342112e-01 7.67380372e-02 -1.91279426e-01 -2.70455569e-01\\n8.04772899e-02 -5.52839577e-01 -1.61758259e-01 3.09789985e-01\\n1.11055784e-01 -2.03684852e-01 -1.92787305e-01 9.91084725e-02\\n5.41896513e-03 -3.03815871e-01 -1.88977182e-01 -1.22274132e-02\\n3.75382930e-01 -4.26247492e-02 2.72794604e-01 -5.95370710e-01\\n-7.04058912e-03 -7.01865181e-02 -1.03192680e-01 5.91120481e-01\\n-6.97540045e-02 -8.63338728e-03 -3.29183787e-01 -2.17121974e-01\\n3.81594092e-01 -2.32542064e-02 -2.79618762e-02 -3.17015089e-02\\n4.38088812e-02 -1.91499636e-01 -4.39401567e-01 1.48713037e-01\\n7.07865357e-02 -1.60686553e-01 3.15783210e-02 7.99156874e-02\\n1.25944376e-01 8.91021192e-02 -6.25720799e-01 -2.39240661e-01\\n-1.41752720e-01 -8.63795429e-02 4.31564525e-02 -3.77674401e-01\\n-4.12519276e-02 -1.76614687e-01 -5.97375393e-01 2.35451609e-01\\n-2.74873346e-01 -6.17252663e-02 1.90681115e-01 -7.73611758e-03\\n-3.88211489e-01 -1.84347108e-01 1.03032149e-01 3.67354423e-01\\n-2.06077039e-01 -1.51213512e-01 -7.80211911e-02 -9.36980307e-01\\n1.83209449e-01 -7.81169608e-02 -2.07244560e-01 6.61485493e-02\\n-1.26584381e-01 -7.80465245e-01 6.56293035e-02 -2.84428477e-01\\n1.06929198e-01 1.58776324e-02 -2.49690548e-01 -2.34429836e-01\\n1.48121968e-01 -8.95496160e-02 -3.00016820e-01 3.82119805e-01\\n-2.41107464e-01 2.49795571e-01 -1.11443914e-01 7.39375055e-02\\n-1.45127043e-01 -2.88375556e-01 1.51309028e-01 -3.52362871e-01\\n-2.24865809e-01 -1.79543555e-01 -1.64573595e-01 -2.36765966e-01\\n-1.02496877e-01 -3.36761564e-01 -2.12167457e-01 1.06407516e-01\\n2.18414113e-01 -7.70208091e-02 -2.20322534e-01 -3.55963826e-01\\n1.19069174e-01 -4.40688312e-01 1.50667906e-01 -1.31745204e-01\\n3.81316952e-02 -9.53523070e-02 3.63753475e-02 1.89983502e-01\\n2.85179168e-01 -3.54628861e-01 3.21953565e-01 -4.57286894e-01\\n-3.22361559e-01 2.87501961e-02 1.06958486e-01 -7.18923733e-02\\n1.94092557e-01 -3.04069281e-01 -7.87619650e-02 2.58209497e-01\\n1.22490466e-01 1.43320233e-01 3.19232851e-01 -1.19173512e-01\\n-6.62290752e-02 3.13679934e-01 -2.94598430e-01 8.77797380e-02\\n9.45975542e-01 2.05375969e-01 8.31156522e-02 1.47393823e-01\\n9.50306952e-02 3.97796631e-01 4.99012142e-01 9.04819816e-02\\n-1.21306174e-01 1.26567677e-01 1.52165830e-01 -4.58294928e-01\\n-9.17888805e-02 -3.44369598e-02 -1.49785340e-01 -3.04620862e-01\\n6.10906363e-01 4.75548148e-01 -3.87208641e-01 -1.83649898e-01\\n-9.64250639e-02 -1.59757987e-01 1.66276082e-01 -9.35914554e-03\\n9.71892849e-02 -2.30815157e-01 4.32286382e-01 -7.18877092e-02\\n1.50297448e-01 6.38181746e-01 -1.27957135e-01 -3.02755535e-01\\n-1.06957622e-01 1.87841967e-01 6.15438409e-02 4.85782921e-01\\n-3.07275742e-01 3.21475685e-01 -3.82319055e-02 6.13959096e-02\\n-4.46766131e-02 1.42454326e-01 2.38852739e-01 4.63387668e-02\\n-8.81967368e-04 8.32038522e-02 3.98874760e-01 5.30039012e-01\\n3.03503901e-01 4.64243829e-01 3.06502581e-01 4.66161892e-02\\n3.60639513e-01 5.31081915e-01 4.34573084e-01 1.11873247e-01\\n3.66298743e-02 1.35697067e-01 2.37124711e-01 -1.69443160e-01\\n4.19711113e-01 2.86658317e-01 2.88804304e-02 9.65256274e-01\\n3.39579433e-01 3.49926591e-01 7.93871880e-01 -6.64799571e-01\\n-4.52657312e-01 8.88704583e-02 5.64915955e-01 -4.95719165e-01\\n-6.11534528e-02 1.60432801e-01 -1.26733705e-01 3.38418573e-01\\n-4.80950505e-01 -2.10408568e-01 -1.48988217e-02 5.91853894e-02\\n-6.69532781e-03 -1.95941523e-01 -2.27601141e-01 1.06220521e-01\\n-8.54993537e-02 -1.34587780e-01 -4.66410547e-01 -1.42728731e-01\\n-1.86962098e-01 -3.46354693e-02 -1.09563343e-01 -1.29688069e-01\\n7.62141570e-02 -2.56952852e-01 -5.60034008e-04 1.45400432e-03\\n2.77336210e-01 -1.97630510e-01 -9.40944403e-02 -1.46910548e-01\\n3.22252423e-01 2.29572877e-01 6.26785934e-01 5.77397533e-02\\n1.20051391e-01 -1.81290433e-01 -2.48874739e-01 2.43820980e-01\\n-1.27007824e-03 8.31327066e-02 1.56127359e-03 2.68316269e-01\\n-2.58810490e-01 -1.94161117e-01 9.38965008e-02 2.83591181e-01\\n-3.38881612e-01 -6.51781708e-02 -5.99319786e-02 1.79617241e-01\\n1.77981500e-02 7.88064972e-02 -1.20770968e-01 1.54565014e-02\\n-1.62846401e-01 -5.13798296e-01 2.55577862e-01 -3.11698746e-02\\n-2.67688811e-01 6.55950233e-02 3.56399268e-01 1.58398330e-01\\n-2.74850726e-01 -1.46074416e-02 -1.09750405e-01 2.41863027e-01\\n1.23407124e-02 2.35920310e-01 -9.99098197e-02 -4.66228127e-01\\n-2.08232418e-01 2.17423186e-01 -2.13784650e-01 -2.55917069e-02\\n-1.12880068e-02 4.37451690e-01 -5.12176901e-02 1.47198901e-01\\n4.70210016e-01 2.22200004e-04 -2.87581682e-01 -2.79158294e-01\\n-1.23385422e-01 -1.08231202e-01 -1.28792435e-01 1.37119321e-02\\n2.75177598e-01 -3.68385315e-01 -4.78738882e-02 -2.94309109e-01\\n-4.12864201e-02 -3.23515207e-01 -2.97789201e-02 -3.88256982e-02]]',\n", + " 'ANYbotics is a fast-growing tech startup dedicated to shaping the future of mobile robotics across multiple industries. Join our highly talented and motivated team of more than 30 people and work on cutting-edge robot technology. Our quadrupedal robot ANYmal is equipped with state-of-the-art perception sensors (LIDAR, stereo cameras, GPS) to provide autonomous inspection in challenging environments such as industrial sites, power plants, and subterranean systems. We are seeking a Robotics Engineer to join our highly motivated development team to enhance the robot’s ability to navigate in challenging environments autonomously. You are responsible for the navigation software stack including path planning, obstacle negotiation, and high-level mission planning, which enables the robot to execute complete autonomous surveillance tours. Your tasks and responsibilities: Develop and implement state-of-the-art methods, Integrate, test and evaluate third-party solutions, Debug and test the navigation software in the field with the robot, Develop, maintain and support the navigation software stack, Consult on sensor selection for hardware development. Your profile: Extensive knowledge of state-of-the-art planning algorithms and techniques, Must have a fundamental knowledge of modern map representations (pose graph, point cloud, signed distance fields, etc.), Experience with convex and nonconvex optimization solvers, Familiarity with SLAM, An understanding of mechanics and dynamics, Strong competence in object-oriented programming in C++, Experience with C++ libraries like Eigen, PCL, Boost or likewise, Experience with ROS and Linux, Comfortable with unit testing and debugging hardware systems. You have a Master’s or Ph.D. degree with a focus on robotic engineering and a strong track record with practical experience in robot navigation. You are an engaged personality used to work proactively and with precision – on your own and in the team. You enjoy the research environment of ETH Zurich to broaden your horizon, to get to know new technologies and to expand your skills continuously. Your profile is complemented by a good knowledge of English. We offer you a very exciting and dynamic work environment, the opportunity to become part of a young and ambitious team, a chance to leverage your experience and bring in your own ideas, a fair market salary and a job in the city of Zurich.',\n", + " '[\"Negotiation\", \"Research\", \"Proactivity\", \"Planning\", \"Team Motivation\", \"Consulting\"]',\n", + " '[\"Point Clouds\", \"Unit Testing\", \"Steam Power Plant\", \"Boost (C++ Libraries)\", \"pH Meters\", \"Industrialization\", \"Eigen (C++ Library)\", \"C++ (Programming Language)\", \"Integrity Testing\", \"Linux\", \"Maintainability\", \"JUCE C++ Library\", \"Track (Rail Transport)\", \"Executable\", \"Hostile Work Environment\", \"SLAM Algorithms (Simultaneous Localization And Mapping)\", \"Mobility\", \"Printer Command Language (PCL)\", \"Object-Oriented Programming (OOP)\", \"Integrated Test Facility\", \"Pathing\", \"Robotics\", \"Mission Planning\", \"Mobile Robot Navigation\", \"High-Level Architecture\", \"Mechanics\", \"Algorithms\", \"Mapping\", \"Graphing\", \"Dilution Of Precision (GPS)\", \"GPS Navigation Software\", \"Debugging\"]',\n", + " \"['English']\"],\n", + " ['46',\n", + " 'data centre engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.20992708e-01 3.24868619e-01 4.44623590e-01 -2.06698015e-01\\n5.61702907e-01 1.67399067e-02 2.03571469e-01 3.12604904e-01\\n1.14555821e-01 -2.30956271e-01 -2.95724452e-01 -1.45734802e-01\\n5.05553670e-02 4.16085795e-02 1.42657623e-01 4.23656821e-01\\n2.54625171e-01 1.47843584e-02 -6.55927509e-02 3.09122294e-01\\n1.01366960e-01 -1.19018257e-01 8.50919113e-02 6.65079415e-01\\n3.42924058e-01 -2.08120011e-02 9.75979790e-02 1.13722198e-02\\n-1.84017792e-01 -3.39858294e-01 4.39586669e-01 -6.86746761e-02\\n-1.32881835e-01 -3.33626121e-01 2.41054073e-01 8.20413232e-02\\n-2.09021419e-01 -1.68739520e-02 -1.91325113e-01 3.92315648e-02\\n-4.56807166e-01 -1.14604466e-01 4.69977669e-02 -1.44372091e-01\\n-3.71216565e-01 -2.73618490e-01 2.98053086e-01 -1.46605492e-01\\n1.93083301e-01 1.60194710e-01 -5.39988935e-01 3.01620752e-01\\n-3.19422901e-01 -2.94975251e-01 5.10386229e-01 6.02502227e-01\\n-3.05275898e-04 -7.01068997e-01 -3.71223271e-01 -1.88572586e-01\\n2.71705817e-02 -9.85296667e-02 9.80837792e-02 -8.92247334e-02\\n3.16859275e-01 -1.32081792e-01 2.01097038e-03 5.28337955e-01\\n-6.43169582e-01 -6.33321702e-02 -4.45892006e-01 -5.80698922e-02\\n-2.13415369e-01 1.14282221e-01 -4.74503547e-01 -2.62505710e-01\\n-6.29425496e-02 2.97526747e-01 -7.97732025e-02 1.71661079e-01\\n-1.18019126e-01 2.56952465e-01 -3.35049480e-01 2.62095660e-01\\n2.78805941e-01 1.02468014e-01 1.92153186e-01 1.66629449e-01\\n-4.03576285e-01 7.38112450e-01 4.63144541e-01 -1.77040055e-01\\n2.04118043e-01 8.59789848e-02 2.22872660e-01 1.59763366e-01\\n1.27131179e-01 1.92020372e-01 5.99381141e-03 2.29666912e-04\\n2.64624745e-01 1.79403722e-02 -9.34911892e-02 -1.64213777e-01\\n-7.91446865e-02 -2.81473016e-03 6.64469451e-02 2.00658217e-01\\n-3.72400999e-01 2.67220229e-01 1.39930248e-01 -3.18461388e-01\\n-1.59120008e-01 -3.24656099e-01 -1.11221485e-01 -1.13852412e-01\\n-1.11029960e-01 1.44244403e-01 1.79076102e-02 2.01138005e-01\\n2.60806829e-01 1.03999078e-01 5.79782352e-02 8.42487335e-01\\n-3.85027528e-02 -6.95801079e-02 -2.16275722e-01 3.70730489e-01\\n-5.77730127e-03 -2.21464545e-01 1.08441778e-01 2.45696455e-01\\n-1.86597273e-01 -2.59543478e-01 -3.63568813e-01 3.21496487e-01\\n-1.18903227e-01 -1.72197476e-01 -2.46539921e-01 2.43533224e-01\\n-1.48266852e-01 -4.79707330e-01 4.82727468e-01 -5.92029579e-02\\n8.48442614e-02 -1.10106930e-01 -3.79019693e-05 3.55553813e-02\\n-6.20178739e-03 3.51581961e-01 1.33339778e-01 -3.18575427e-02\\n-1.07156508e-01 -2.32200533e-01 -2.80870885e-01 1.46157727e-01\\n3.24593335e-02 1.44052923e-01 -4.17244673e-01 -1.08726621e-01\\n3.85440767e-01 4.97285165e-02 -3.66288632e-01 3.56455773e-01\\n1.84417531e-01 -4.29348387e-02 -1.81535304e-01 1.49954826e-01\\n-1.16695359e-04 2.36736104e-01 -4.01337855e-02 -1.40929922e-01\\n6.24371946e-01 1.46069244e-01 2.31020704e-01 -7.24323019e-02\\n1.91886440e-01 -5.51386252e-02 1.29945368e-01 -1.40682291e-02\\n-6.11488104e-01 4.65296596e-01 -3.25219370e-02 -7.29846731e-02\\n1.36024877e-01 -5.82411792e-03 2.14516282e-01 -3.57889801e-01\\n-2.76079122e-02 -5.04417941e-02 -3.44033509e-01 -4.76003021e-01\\n-2.26885807e-02 -1.34410188e-01 1.86202839e-01 -4.56571281e-01\\n2.06874358e-03 1.26872778e-01 -4.57212448e-01 -5.69727421e-02\\n3.54857564e-01 1.66321099e-01 1.37243718e-01 2.25789651e-01\\n-8.55193064e-02 -3.49118888e-01 1.90711051e-01 -4.64240402e-01\\n-1.32682085e-01 7.75582716e-02 -2.49923304e-01 1.98378433e-02\\n-1.89537536e-02 3.98312919e-02 -1.02702670e-01 4.85904552e-02\\n-2.53891677e-01 -1.55262008e-01 3.92053202e-02 -8.82065743e-02\\n2.24479303e-01 2.34798998e-01 -2.63095379e-01 5.07711053e-01\\n-1.83350369e-01 3.81080300e-01 6.01966586e-03 -7.20307767e-01\\n4.24280107e-01 1.86561704e-01 1.23244980e-02 -2.94792384e-01\\n4.53267604e-01 -2.96398431e-01 1.17267378e-01 1.88871510e-02\\n-3.34912449e-01 -2.02146210e-02 2.43802950e-01 -1.83349505e-01\\n-2.80408859e-01 5.88341713e-01 1.80868283e-02 1.09298013e-01\\n1.90496162e-01 -3.36814933e-02 -1.97486252e-01 4.95056920e-02\\n-8.80986899e-02 -2.21439116e-02 -4.73396003e-01 -6.57928139e-02\\n-8.16168711e-02 -4.97412443e-01 -8.66268203e-02 -6.85619056e-01\\n-2.47249797e-01 -3.03445399e-01 -2.51491725e-01 1.43816218e-01\\n-3.78490351e-02 1.19386360e-01 -3.09882145e-02 6.85982779e-02\\n-1.36105865e-01 -6.85061991e-01 -8.01299326e-03 6.79907128e-02\\n1.99871972e-01 1.97040305e-01 1.58675492e-01 -1.33471563e-01\\n1.07989442e-02 4.95000303e-01 -2.80969262e-01 -1.73517212e-01\\n2.71584749e-01 2.02667147e-01 1.13012411e-01 -1.47868484e-01\\n1.32153437e-01 2.64528215e-01 -3.26294065e-01 3.05351596e-02\\n4.96717282e-02 7.51984939e-02 3.15145642e-01 -1.27876252e-01\\n-4.00357902e-01 -1.46592468e-01 -8.45369026e-02 1.19746655e-01\\n-5.31511903e-01 -2.43515335e-02 4.39352810e-01 2.38416597e-01\\n-3.59681658e-02 3.28629941e-01 2.08434686e-01 -3.68503183e-02\\n-2.25980595e-01 -7.79229030e-02 1.20354466e-01 1.89528957e-01\\n-5.91190830e-02 8.82301256e-02 -3.06917548e-01 -7.19935954e-01\\n-3.67594314e+00 -1.12381116e-01 1.75884247e-01 -2.27007076e-01\\n4.04413551e-01 -9.98565108e-02 3.79922926e-01 7.81878158e-02\\n-3.22409332e-01 -3.08159627e-02 -2.04330444e-01 -1.40322268e-01\\n3.32918972e-01 1.88908741e-01 8.24078396e-02 2.49415144e-01\\n2.64598001e-02 -3.97464931e-01 2.27922410e-01 3.73837560e-01\\n-3.19178700e-01 -7.36998320e-01 1.67706132e-01 -7.14538023e-02\\n1.21241175e-01 9.32772234e-02 -5.23654699e-01 -3.66293937e-02\\n-2.04351619e-01 -2.44992539e-01 2.23208100e-01 -2.21065760e-01\\n-8.99085402e-02 1.40657857e-01 1.37605861e-01 -1.14235766e-01\\n-2.94447187e-02 -2.44475365e-01 -4.49468382e-02 -7.68135726e-01\\n5.89522645e-02 -5.65950096e-01 -9.49528441e-02 -4.10118699e-02\\n6.01877391e-01 -1.01314165e-01 1.37759060e-01 -1.07751355e-01\\n9.30629522e-02 2.41365522e-01 1.12298779e-01 1.45285383e-01\\n-2.63603657e-01 -3.25437903e-01 -7.21056610e-02 -8.31322223e-02\\n5.68651319e-01 3.79927188e-01 -4.65950549e-01 2.72869971e-03\\n-1.22071005e-01 -2.76108623e-01 -5.45160472e-01 -1.80649400e-01\\n-2.34067068e-01 1.62110150e-01 -7.07921565e-01 -2.82714754e-01\\n-9.99909639e-02 -2.50131696e-01 -4.89306152e-02 4.86768872e-01\\n-2.37586051e-01 -3.45522076e-01 -1.42306477e-01 -6.06279552e-01\\n4.44346130e-01 -6.18551373e-02 1.56405732e-01 -3.47408980e-01\\n-2.07678065e-01 -2.95815915e-01 1.38386652e-01 3.34735252e-02\\n-9.58454311e-02 -6.84963763e-02 8.63185823e-02 -1.38075471e-01\\n-3.59072596e-01 -5.86493552e-01 2.79859543e-01 7.74228424e-02\\n2.08769441e-01 1.41370863e-01 2.12922454e-01 1.12980502e-02\\n2.99592584e-01 -2.45005097e-02 9.83945280e-02 -3.55856538e-01\\n-6.89715743e-02 -2.60696840e-02 5.05209148e-01 -2.39443317e-01\\n9.72434208e-02 1.46529987e-01 -2.74268687e-01 -1.18378751e-01\\n2.93351650e-01 -2.23989919e-01 3.12173188e-01 -2.98116624e-01\\n2.45002553e-01 -3.65975231e-01 -3.34370494e-01 -2.41183396e-02\\n4.43742462e-02 5.83759367e-01 1.00142039e-01 -2.95338154e-01\\n-1.73483342e-01 2.94335037e-01 -3.46422642e-02 9.91996229e-02\\n-4.30163980e-01 -2.82405578e-02 -3.47431034e-01 2.63600320e-01\\n1.26142189e-01 -1.38548240e-01 -2.37378985e-01 -6.22682087e-02\\n-1.13407321e-01 2.97553122e-01 2.44797215e-01 7.06003979e-02\\n-6.73439279e-02 -2.24718019e-01 -9.53003168e-02 2.75603205e-01\\n1.09810531e-01 3.39868993e-01 1.16863534e-01 -2.59342134e-01\\n3.95490937e-02 1.41051844e-01 -3.06910217e-01 1.62998080e-01\\n-1.18638128e-01 1.47596076e-01 -5.45356512e-01 -1.84702083e-01\\n-2.16028884e-01 -3.72006148e-01 1.30186722e-01 4.52358186e-01\\n-2.24302597e-02 -2.03651801e-01 8.53662267e-02 -3.70809227e-01\\n2.26514742e-01 7.99310878e-02 1.08852006e-01 1.68566033e-01\\n4.81652543e-02 6.31120920e-01 -1.09053209e-01 -1.35200918e-01\\n-1.40370622e-01 -1.58051122e-03 -3.95264864e-01 -1.91366836e-01\\n-6.29185094e-03 -4.56136644e-01 4.50522732e-03 5.95702171e-01\\n1.59040406e-01 2.83155963e-02 1.36070162e-01 3.85688692e-01\\n-1.37359928e-02 -4.20102216e-02 -2.66277254e-01 1.16483152e-01\\n2.23654643e-01 2.09650751e-02 2.55407035e-01 -4.15736258e-01\\n1.46293670e-01 -5.34290411e-02 1.29845470e-01 3.60866219e-01\\n-3.01853996e-02 1.87387303e-01 -7.20390603e-02 -1.31535783e-01\\n4.51385915e-01 -6.54133782e-02 -9.06833410e-02 1.34642109e-01\\n2.11314842e-01 -1.32941514e-01 -3.39931607e-01 9.25652310e-02\\n-1.53027371e-01 -1.79714546e-01 8.66961256e-02 3.25545147e-02\\n3.54019180e-03 3.45192570e-03 -4.45268750e-01 -1.44551948e-01\\n-3.26949328e-01 2.60383725e-01 -2.02441350e-01 -6.96382046e-01\\n-1.40338577e-02 6.71015978e-02 -4.92353946e-01 2.64773130e-01\\n-7.66382292e-02 9.06192958e-02 1.66481182e-01 1.44609421e-01\\n-1.99086547e-01 -1.94678605e-01 2.52672762e-01 5.97272478e-02\\n-2.38344982e-01 -1.10085398e-01 -8.84047225e-02 -9.74414825e-01\\n1.87760174e-01 1.19790137e-02 -7.76776448e-02 1.13395445e-01\\n-8.81322324e-02 -7.38363206e-01 2.93696880e-01 -1.29906714e-01\\n-8.54780301e-02 1.35368869e-01 -1.21535540e-01 -3.92318517e-01\\n7.13851079e-02 2.84709353e-02 -1.45143434e-01 2.94810981e-01\\n-3.21252733e-01 3.73886317e-01 3.44846733e-02 4.07734737e-02\\n7.91742001e-03 -2.35158399e-01 7.68799782e-02 -4.66818631e-01\\n-3.90069902e-01 -1.75546423e-01 -1.66483521e-01 -2.53097773e-01\\n2.10644584e-02 -4.21779752e-01 -2.75838263e-02 9.88264009e-02\\n3.88392955e-01 3.93786915e-02 -5.44545762e-02 -8.17874521e-02\\n-1.09014504e-01 -3.92766893e-01 1.28825694e-01 -2.17944682e-01\\n1.51625395e-01 -1.85886785e-01 3.07374597e-01 -4.13127653e-02\\n3.25106204e-01 -2.95887083e-01 5.36980033e-01 -3.19379807e-01\\n-3.22525620e-01 -1.43264204e-01 1.33226901e-01 8.97722393e-02\\n3.82051915e-01 -4.85767931e-01 -1.67253297e-02 2.61806399e-01\\n-4.99421731e-02 -4.21272367e-02 3.75573844e-01 -3.38228345e-01\\n-2.53730595e-01 6.84244260e-02 -4.78008956e-01 2.60893375e-01\\n4.90229666e-01 1.69238955e-01 2.80877143e-01 1.80539608e-01\\n-6.63809255e-02 1.68181852e-01 3.38057458e-01 -1.28881663e-01\\n-1.59039959e-01 4.24895495e-01 3.80028002e-02 -6.40325665e-01\\n-1.43105865e-01 -2.63907880e-01 -1.21160537e-01 -2.52472550e-01\\n6.79355919e-01 2.05923975e-01 -3.15716326e-01 -3.91189665e-01\\n-1.93810731e-01 -2.80402511e-01 8.83146524e-02 3.37027349e-02\\n7.49644125e-03 -9.00202468e-02 5.41021109e-01 6.35374635e-02\\n3.18035275e-01 5.48332870e-01 -1.07328892e-01 -1.89855635e-01\\n1.58851850e-03 3.20116341e-01 -1.67953491e-01 3.51078421e-01\\n6.85634390e-02 2.92062312e-01 -4.61906455e-02 1.35271624e-01\\n-3.67310345e-02 -1.13375902e-01 1.00393958e-01 1.25861317e-01\\n-1.19673312e-01 2.56306708e-01 4.81333435e-01 4.64992344e-01\\n2.14798316e-01 3.36963028e-01 3.28334361e-01 7.83311427e-02\\n5.74850202e-01 6.67642534e-01 3.58128965e-01 5.36153167e-02\\n1.82366893e-01 1.31619200e-02 1.66190714e-02 1.53566594e-03\\n2.41993040e-01 4.50434387e-01 -1.27912806e-02 6.59261405e-01\\n1.94247454e-01 1.72496736e-01 5.75656235e-01 -5.13949454e-01\\n-4.03470457e-01 -2.03149110e-01 4.86505866e-01 -4.74104732e-01\\n1.93211913e-01 1.59332588e-01 -7.50615727e-03 3.39663118e-01\\n-5.07510424e-01 -2.07057089e-01 8.10246542e-02 -1.29740685e-01\\n1.40014097e-01 -1.88831493e-01 -3.58851328e-02 -7.21131917e-04\\n-1.56315446e-01 -1.56389311e-01 -2.94426352e-01 -2.51997322e-01\\n-3.41350526e-01 6.94555119e-02 -1.11559771e-01 -5.82171008e-02\\n-9.69594643e-02 -1.34011596e-01 -1.30870834e-01 7.83628523e-02\\n2.54105866e-01 -1.52538747e-01 -1.65034801e-01 -7.04521164e-02\\n2.46929064e-01 2.89245751e-02 6.04466021e-01 1.05081405e-02\\n6.89821839e-02 -4.67571244e-03 -1.24993986e-02 1.37999713e-01\\n3.58548254e-01 2.61919379e-01 4.46083099e-02 5.13837337e-01\\n-3.38287830e-01 -1.75180569e-01 1.31053075e-01 3.67902517e-01\\n-4.11561877e-01 -1.78137776e-02 5.27100787e-02 1.73103094e-01\\n-5.69220185e-02 -1.85620897e-02 -1.54638961e-01 -7.36809708e-03\\n-1.03106506e-01 -4.16724861e-01 4.85487074e-01 -1.93980247e-01\\n-3.74499291e-01 -2.29139552e-01 4.05710548e-01 4.65710521e-01\\n-7.01933727e-02 1.25290185e-01 -1.69794530e-01 8.58192295e-02\\n5.86466826e-02 9.83409062e-02 -2.16114819e-01 -9.97687280e-02\\n-3.41423601e-01 3.04073513e-01 -9.08160135e-02 2.61446118e-01\\n1.22249559e-01 2.20867783e-01 1.15949877e-01 4.79177199e-02\\n3.41100335e-01 -3.07290733e-01 -2.09567770e-01 -2.60127783e-01\\n-3.00317675e-01 -8.11325237e-02 1.12716630e-01 -1.97108611e-01\\n2.32551321e-01 -3.97126079e-01 -1.08622387e-01 -3.00310940e-01\\n-1.48808002e-01 -2.20378175e-01 -1.74243838e-01 -4.26888745e-03]]',\n", + " 'ExcelRedstone designs, installs, supports and enhances IT infrastructure, networks and connectivity for enterprise‐level clients across the UK and EMEA. Our services, processes and tools are built around a unique business vision which emphasizes the life cycle role of IT infrastructure – an understanding that far from being static installations, infrastructures should continually evolve to drive improved business performance. This role will be working as part of the Data Centre Operations team to deliver support activities and input to project related tasks within the Data Centre and ensure that all work carried out complies with agreed standards, providing an operational interface to physical security teams assisting in the proactive management of the site’s security. The DC Engineer will provide an interface to the customer, advising them of any operational issues with the infrastructure and acting as a point of contact to address the customer requirements including being first line of support for incident and recovery duties, contribution to BAU activity to rack, install and decommission devices. Candidates will be fluent in German and English and have worked in a similar role previously. Required Skills / Experience Ideally the candidate will have worked previously in a Data Centre support role.Network patching experience (copper and fibre) install and break/ fixKnowledge of copper termination and previous infrastructure installationsChange management processesUnderstanding of criticality of support in a financial sectorDemonstration of good listening, oral and written communication required.An ability to assimilate technical details required for project delivery in ashort time frame and in pressurised environmentAbility to manage prioritise workload effectivelyTroubleshooting, ability to diagnose potential issues impacting programme and offer resolutionFluent in German and English Job Types: Full-time, Permanent Language: English (Required)German (Required) ',\n", + " '[\"Proactivity\", \"Infrastructure\", \"Management\", \"Operations\", \"Written Communication\"]',\n", + " '[\"Business Performance Management\", \"Logistics Support Activity\", \"Tooling\", \"IT Infrastructure\", \"Installation\", \"Advising\", \"Activism\", \"Acting\", \"Idealization\", \"Physical Security\", \"Life Cycle Assessment\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'Walloon']\"],\n", + " ['75',\n", + " 'backend sw engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.68256277e-01 2.80966550e-01 3.44677925e-01 5.30506372e-02\\n5.80511034e-01 -2.47638822e-01 7.77832866e-02 2.96363652e-01\\n-1.86372668e-01 -3.81059796e-01 -8.01259801e-02 -1.91526100e-01\\n-1.20249137e-01 4.19630893e-02 6.58501759e-02 2.97487617e-01\\n2.96830416e-01 1.03520900e-01 -2.24871874e-01 3.48558217e-01\\n2.44660843e-02 -2.33520754e-02 -7.16324151e-02 7.10306168e-01\\n3.73393893e-01 7.64411092e-02 -7.30364174e-02 3.10215969e-02\\n-2.69114822e-01 -2.33520836e-01 3.59915376e-01 8.74466226e-02\\n-2.01426968e-02 -2.21706823e-01 8.55944529e-02 1.63908675e-02\\n-2.02809051e-01 3.03395186e-02 -7.03047067e-02 1.84850901e-01\\n-3.49794418e-01 -3.19804043e-01 3.57922874e-02 1.16022877e-01\\n-2.03592315e-01 -3.27240318e-01 -7.38833472e-02 -8.32037814e-03\\n1.08916402e-01 -5.48914671e-02 -5.44368207e-01 4.32967663e-01\\n-2.85363168e-01 -2.13028684e-01 3.27406317e-01 4.80463058e-01\\n7.07191764e-04 -5.72555006e-01 -2.74876982e-01 -3.11568081e-01\\n-7.87170604e-04 -2.16793537e-01 9.30675864e-02 -2.66013175e-01\\n2.65337527e-01 -1.99370328e-02 6.45290688e-02 3.96281332e-01\\n-7.15952098e-01 -7.56770745e-02 -2.58975267e-01 4.84445971e-03\\n-3.44652683e-01 -1.32466108e-01 -3.00590098e-01 -7.25278556e-02\\n-6.71878159e-02 3.16180170e-01 -2.17432920e-02 6.17913567e-02\\n-1.51244149e-01 3.00630808e-01 -9.61166099e-02 1.84126168e-01\\n2.33807787e-01 1.18075542e-01 1.84917077e-01 3.30178261e-01\\n-4.02723163e-01 4.94906694e-01 2.78163515e-02 -1.89738944e-01\\n2.46067822e-01 2.03865394e-01 4.66537535e-01 7.31082112e-02\\n-3.48280333e-02 1.81059256e-01 -2.56648839e-01 1.59588724e-01\\n2.00172037e-01 -3.17932218e-01 2.00379938e-02 -1.10025086e-01\\n-8.66630152e-02 1.95057467e-02 4.45732585e-04 2.31951535e-01\\n-2.83212394e-01 4.38437521e-01 2.28525981e-01 -1.96417868e-01\\n-7.44504780e-02 -4.96552169e-01 -1.17808118e-01 -2.58486811e-02\\n-1.42118305e-01 1.98162153e-01 2.90167809e-01 1.20146722e-01\\n1.79669514e-01 5.00745960e-02 1.73523605e-01 9.51189220e-01\\n-2.46720817e-02 1.25142261e-01 -1.97533846e-01 2.33240172e-01\\n2.42920592e-01 -1.90623596e-01 1.76015064e-01 3.12252760e-01\\n1.64266855e-01 1.83322039e-02 -1.87562793e-01 3.77678484e-01\\n-2.49157727e-01 -6.96034804e-02 -3.38936239e-01 1.09828226e-01\\n-1.85315907e-01 -5.79838157e-01 6.25603855e-01 1.71961352e-01\\n2.00974256e-01 1.01519758e-02 5.39434999e-02 -7.08785728e-02\\n-7.03627914e-02 2.46599570e-01 7.77274892e-02 1.78365037e-01\\n-3.97517234e-01 -2.17392102e-01 -1.14692204e-01 2.54033774e-01\\n-2.28492916e-01 7.52320215e-02 -4.59703095e-02 -4.00270000e-02\\n2.37886637e-01 5.03434539e-02 -3.75742763e-01 1.42910615e-01\\n-1.12772316e-01 -2.28844285e-01 -1.34519503e-01 3.83624822e-01\\n-7.34532773e-02 2.68917799e-01 5.40079512e-02 -7.69566670e-02\\n5.54528654e-01 1.61391243e-01 1.55689299e-01 -1.64353289e-02\\n2.59011865e-01 -1.06625922e-01 3.07998925e-01 1.54668242e-01\\n-6.65170670e-01 1.90961540e-01 -2.93293837e-02 -1.18123017e-01\\n7.81614110e-02 1.31149411e-01 2.44318053e-01 -3.87164861e-01\\n-1.18726470e-01 -1.59455091e-01 -3.86809468e-01 -3.32343668e-01\\n-2.47529522e-01 9.23015028e-02 3.47663224e-01 -2.65317112e-01\\n-4.82774228e-02 5.91426976e-02 -3.72780293e-01 -1.42033011e-01\\n1.64764598e-01 1.58674031e-01 3.43571417e-02 8.71408135e-02\\n-4.59054932e-02 -6.15433395e-01 -1.43101104e-02 -5.04064023e-01\\n-6.24376178e-01 6.46936819e-02 -3.60657811e-01 2.46049732e-01\\n-2.42124051e-02 1.28714904e-01 -9.33485851e-02 2.03563452e-01\\n-3.41948122e-01 6.93769604e-02 1.14815541e-01 1.63760811e-01\\n1.60189509e-01 -6.42544180e-02 -4.50130522e-01 4.45112824e-01\\n-2.10934803e-01 5.23637235e-01 2.21961200e-01 -7.07449436e-01\\n6.36946261e-01 1.72863886e-01 -3.61249298e-02 -4.06198651e-01\\n3.93998146e-01 -3.90469640e-01 -1.74895655e-02 8.44453499e-02\\n-2.60609835e-01 -2.46748820e-01 3.50345880e-01 -2.54884869e-01\\n-3.57528716e-01 5.20105898e-01 1.54569283e-01 1.10955499e-01\\n2.70659983e-01 -2.81114399e-01 -4.63892668e-02 1.07461095e-01\\n-9.90929604e-02 -2.05803499e-01 -3.38931829e-01 5.04897423e-02\\n-9.08693597e-02 -4.78580534e-01 -1.01777166e-01 -4.82099354e-01\\n-1.62538871e-01 -3.30503732e-01 -2.43613437e-01 3.15286875e-01\\n2.02044815e-01 1.45659372e-01 7.61852860e-02 -1.54940626e-02\\n-6.57685176e-02 -7.43359923e-01 -9.27251130e-02 -1.06826294e-02\\n5.37342727e-01 1.67797074e-01 2.22710315e-02 -9.00486112e-02\\n3.53892031e-03 4.98980403e-01 -3.74690175e-01 -3.90252203e-01\\n5.71420491e-02 1.52028054e-01 -3.06195877e-02 -2.02539220e-01\\n5.28162764e-03 4.07761842e-01 -2.38233924e-01 1.35247439e-01\\n-5.10711111e-02 -8.85524303e-02 4.05885488e-01 -1.31611060e-02\\n-3.47480059e-01 -1.97392955e-01 -9.28023532e-02 1.45437539e-01\\n-5.24388373e-01 -1.30381510e-01 5.59510589e-01 2.86901951e-01\\n1.90427989e-01 2.36356452e-01 2.60759771e-01 -9.23052505e-02\\n-1.39417976e-01 -2.85702348e-01 1.08309023e-01 1.53566405e-01\\n-3.82178137e-03 1.11081935e-01 -1.30673394e-01 -5.21439373e-01\\n-3.56062269e+00 -5.72392419e-02 2.28134543e-01 -2.83745587e-01\\n1.84516937e-01 -1.33128716e-02 -6.78385142e-03 3.67290564e-02\\n-3.99421692e-01 6.83811009e-02 -2.16967925e-01 -1.92042127e-01\\n4.35629264e-02 3.56590509e-01 7.23295435e-02 1.37255475e-01\\n1.43693984e-01 -2.57922351e-01 -1.95843816e-01 3.23520690e-01\\n-1.59120247e-01 -6.54160619e-01 1.07833773e-01 5.10134958e-02\\n1.85165629e-01 1.51602179e-01 -3.37271720e-01 -2.79328637e-02\\n-7.37449527e-02 -2.80705243e-01 -9.30318311e-02 -1.46301761e-01\\n-2.10048124e-01 3.16557288e-01 1.60904914e-01 -1.03805587e-01\\n-7.55465627e-02 -3.03779960e-01 -5.29515669e-02 -4.60794389e-01\\n1.47117585e-01 -5.53129137e-01 3.23036462e-02 -1.01737969e-01\\n7.63723314e-01 -2.43185744e-01 1.68201491e-01 -1.92443337e-02\\n1.34243369e-01 1.03382960e-01 -2.04743315e-02 3.98349464e-02\\n-2.16008723e-01 -3.03375393e-01 -3.02219372e-02 -2.41419956e-01\\n4.70418245e-01 4.26415265e-01 -2.55726814e-01 -4.89498526e-02\\n9.98428166e-02 -3.56135607e-01 -2.20863923e-01 -2.58219093e-01\\n-1.28375947e-01 -1.67964280e-01 -7.53873765e-01 -4.53482836e-01\\n-1.39948219e-01 -1.30637571e-01 -1.79183066e-01 6.85823739e-01\\n-3.26341331e-01 -4.67525035e-01 4.03417125e-02 -5.45589864e-01\\n9.74138454e-02 -2.54920065e-01 7.36849010e-02 -1.48353577e-01\\n-2.53879339e-01 -4.79702592e-01 9.93387476e-02 -2.29159947e-02\\n-1.47317365e-01 -1.29291221e-01 -1.78953316e-02 -1.56996712e-01\\n-3.52823853e-01 -2.84348994e-01 3.98072630e-01 1.54219553e-01\\n3.36670429e-01 1.61767811e-01 3.46327454e-01 9.29220691e-02\\n2.54116535e-01 4.29166704e-02 1.13745682e-01 -2.56963491e-01\\n1.17407493e-01 -1.33167744e-01 6.75389588e-01 -2.10271806e-01\\n-3.06424163e-02 2.17618912e-01 -1.58588171e-01 -1.52335107e-01\\n4.65653092e-01 -3.48148644e-02 -4.37473841e-02 -9.63325799e-02\\n3.44315141e-01 -4.37570572e-01 -1.39008015e-01 1.31856829e-01\\n1.22326307e-01 7.11004436e-01 6.48837164e-02 -3.90598357e-01\\n-3.15256923e-01 5.10156810e-01 -1.70436800e-02 -4.39828150e-02\\n-1.38245210e-01 9.51706916e-02 -1.49762645e-01 1.48976564e-01\\n1.69290587e-01 -2.52623677e-01 -1.34392485e-01 -2.07254682e-02\\n-1.28508016e-01 1.82498679e-01 2.94994891e-01 1.21286921e-01\\n-7.36759230e-02 -3.18882346e-01 -2.82738686e-01 2.13413090e-01\\n1.78033501e-01 3.21200728e-01 2.33400777e-01 -2.96987057e-01\\n-8.88423845e-02 2.74162829e-01 -6.39112070e-02 2.36131728e-01\\n-1.91125125e-01 1.17985599e-01 -5.77232420e-01 -1.51990280e-01\\n-1.82451352e-01 -3.55341643e-01 -9.63377487e-03 3.92011106e-01\\n1.12721696e-01 -2.80157998e-02 1.37635335e-01 -4.28060919e-01\\n3.83078098e-01 1.65574297e-01 2.16329724e-01 3.94830592e-02\\n2.24087574e-02 5.06155550e-01 -2.36281455e-02 -1.44592866e-01\\n-1.81049764e-01 -3.10048577e-03 -2.26907879e-01 -1.86938718e-01\\n9.39327627e-02 -4.24537361e-01 -1.03394493e-01 3.78989726e-01\\n1.09884910e-01 -2.03449875e-01 -2.22843081e-01 1.92236215e-01\\n1.26634508e-01 -2.22964704e-01 -2.68124551e-01 -8.59432817e-02\\n2.69510955e-01 4.22532149e-02 2.69445181e-01 -3.63558859e-01\\n-1.24990664e-01 -4.05609459e-02 -1.04681544e-01 3.71735752e-01\\n4.38280068e-02 1.25749245e-01 -2.25489825e-01 -8.71866271e-02\\n4.16496962e-01 -1.99916437e-01 -1.01017416e-01 -5.68775786e-03\\n2.14488301e-02 -2.21383125e-01 -5.36945581e-01 3.34589146e-02\\n-2.31792871e-02 -9.16041583e-02 1.03917226e-01 4.95176688e-02\\n1.12624101e-01 2.97736600e-02 -4.76847261e-01 -2.42387205e-01\\n-3.20910484e-01 -1.01022720e-01 2.21627682e-01 -3.39469522e-01\\n2.06570011e-02 -7.44875893e-02 -6.46117508e-01 2.20176965e-01\\n-2.93631554e-01 6.44078925e-02 2.09118575e-01 6.84900731e-02\\n-2.89846301e-01 -7.18417093e-02 5.40907830e-02 2.68675357e-01\\n-2.00353399e-01 -9.69718024e-02 -1.32815599e-01 -9.32604074e-01\\n2.26728067e-01 -6.84717745e-02 -6.46681637e-02 -4.70831804e-02\\n4.15480183e-03 -6.18592799e-01 1.54709801e-01 -3.55068088e-01\\n2.02562585e-02 9.17806178e-02 -2.54402548e-01 -2.93878287e-01\\n8.91731530e-02 -1.47753209e-01 -2.84847856e-01 3.83184791e-01\\n-4.57132012e-01 1.83667257e-01 1.60041936e-02 1.10351361e-01\\n-2.38874350e-02 -2.93784559e-01 2.02276498e-01 -4.16057378e-01\\n-3.50548148e-01 -1.97443083e-01 -2.71469623e-01 -3.08780611e-01\\n5.73224500e-02 -3.66917074e-01 -1.48068368e-01 6.08434752e-02\\n2.30457067e-01 4.75714169e-02 -1.31713197e-01 -2.82507241e-01\\n-3.21307369e-02 -5.15598178e-01 2.60962754e-01 -1.64898157e-01\\n4.75019254e-02 -2.06220839e-02 2.24028453e-01 9.45636630e-02\\n1.84180185e-01 -3.89262885e-01 3.92789364e-01 -3.63392323e-01\\n-3.01650137e-01 -4.81558852e-02 -5.16412966e-02 6.42930493e-02\\n2.61086762e-01 -5.41121542e-01 1.01180077e-02 1.86398819e-01\\n7.75865912e-02 7.26497918e-02 2.30011582e-01 -1.09838851e-01\\n-1.73561439e-01 1.53525159e-01 -2.96756804e-01 8.38316903e-02\\n7.66189814e-01 1.42351881e-01 1.14174858e-01 1.68061465e-01\\n9.82450545e-02 3.79284948e-01 4.92646873e-01 1.93414406e-03\\n3.30070704e-02 2.17681155e-01 3.02026719e-02 -4.71996814e-01\\n-1.98831648e-01 -5.58554381e-02 -2.32645109e-01 -3.01343143e-01\\n4.88483787e-01 3.37962657e-01 -4.36467230e-01 -3.03671569e-01\\n8.37995932e-02 -9.90793705e-02 3.49347502e-01 7.99787715e-02\\n-4.62359339e-02 -2.34577790e-01 5.53103149e-01 3.91831249e-02\\n3.02090526e-01 5.90380311e-01 -6.04438595e-02 -4.08283502e-01\\n-1.40415251e-01 2.38491431e-01 4.59875353e-02 4.55891699e-01\\n-8.67438391e-02 2.29221463e-01 -2.01717131e-02 5.56300431e-02\\n3.30250449e-02 6.81054220e-02 1.29672989e-01 1.54104605e-01\\n1.95514098e-01 1.66474506e-01 3.70199621e-01 5.40943503e-01\\n7.32200742e-02 4.85517889e-01 2.70979524e-01 5.00193834e-02\\n2.99673736e-01 6.42767489e-01 4.52486783e-01 2.01659963e-01\\n6.43692091e-02 1.64361969e-01 1.21771529e-01 -1.07977420e-01\\n3.70519519e-01 2.84178942e-01 1.81891605e-01 8.49902451e-01\\n3.34213793e-01 1.84644729e-01 7.72197366e-01 -6.86626375e-01\\n-3.28088492e-01 3.39398682e-02 4.50774461e-01 -2.42100075e-01\\n-4.00201790e-02 1.57529965e-01 -2.51336247e-01 3.51791948e-01\\n-4.80008394e-01 -1.14155754e-01 3.30991074e-02 -6.21156096e-02\\n7.45923668e-02 -9.39129516e-02 -9.83097106e-02 -1.97362620e-02\\n-1.56326681e-01 -1.46081910e-01 -2.79602110e-01 -1.78151205e-01\\n-3.31089139e-01 5.21156229e-02 -1.19059257e-01 -1.49056032e-01\\n-1.86889935e-02 -4.32440907e-01 -5.47806136e-02 1.09304845e-01\\n3.38639438e-01 -6.29020408e-02 -6.29020631e-02 -8.41925852e-03\\n1.99822500e-01 3.48794281e-01 5.95449805e-01 -7.12604076e-02\\n9.79602411e-02 -2.22206548e-01 -2.13774800e-01 7.25805014e-02\\n2.28640297e-03 -6.96777776e-02 1.04644112e-01 3.42532545e-01\\n-3.15297872e-01 -7.83983991e-02 -1.87895447e-02 2.60366470e-01\\n-4.01568830e-01 -9.28893909e-02 -1.57994911e-01 2.52415776e-01\\n-2.83473004e-02 1.41502365e-01 -2.46584997e-01 -8.50632787e-03\\n-1.97978795e-01 -3.97043020e-01 4.11216497e-01 -1.76645890e-01\\n-1.31972298e-01 2.76845545e-01 2.00490072e-01 1.43336028e-01\\n-2.52448678e-01 2.04628538e-02 -8.30664188e-02 1.74150482e-01\\n-3.00979521e-02 4.37407762e-01 -2.07550764e-01 -1.64763391e-01\\n-2.82055020e-01 3.11717063e-01 -1.00641996e-01 1.29502967e-01\\n-6.62696660e-02 2.52333671e-01 1.82071149e-01 -6.27015159e-02\\n3.45473260e-01 9.84240919e-02 -2.71901995e-01 -1.56051815e-01\\n-8.02501589e-02 -1.78788513e-01 -4.45113108e-02 -5.37209585e-02\\n1.52462572e-01 -3.73692155e-01 -6.55194223e-02 -9.74771529e-02\\n-4.11849990e-02 -3.18096995e-01 -1.56579182e-01 -1.07962815e-02]]',\n", + " \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting our BI environment. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: Bachelor's or higher degree in computer science or equivalent work experience A minimum of three years of software engineering experience Excellent knowledge with Scala or Java Expert knowledge in an enterprise class RDBMS Demonstrated ability in data modeling, ETL development, and data warehousing Experience with big data technologies, such as Kafka, Spark, and Cassandra Excellent troubleshooting and creative problem-solving abilities and analytical skills Excellent written and oral communication and interpersonal skills Advantage: experience with systems for automating deployment, scaling, and management of containerised applications, such as Kubernetes and Mesos experience with machine learning experience with encryption and cryptography standards Benötigte Skills Scala JAVA ETL Datawarehouse Business Intelligence Kryptografie / Verschlüsselung\",\n", + " '[\"Analytical Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " '[\"Machine Learning Methods\", \"Data Warehousing\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Mesos\", \"Apache Cassandra\", \"Encryption\", \"Cryptography\", \"Maintainability\", \"Computer Science\", \"Java (Programming Language)\", \"Data Modeling\", \"Big Data\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Business Intelligence\"]',\n", + " \"['English', 'Javanese']\"],\n", + " ['94',\n", + " 'saas & open-data development engineers',\n", + " 'Rolle',\n", + " '',\n", + " '',\n", + " '[[-8.84736553e-02 2.41919011e-01 6.12432182e-01 1.17697574e-01\\n6.16215467e-01 -6.42231181e-02 -1.31970704e-01 5.38616717e-01\\n-1.32668704e-01 -3.84660423e-01 3.77689451e-02 -3.60987097e-01\\n-6.04589283e-02 2.30093494e-01 1.72765180e-01 4.34548855e-01\\n1.83192998e-01 3.63055579e-02 -1.65740162e-01 2.67881513e-01\\n1.02243528e-01 -4.69515361e-02 3.48026693e-01 7.76968122e-01\\n3.32396507e-01 -1.38146371e-01 -6.98562413e-02 6.62104115e-02\\n-2.60016054e-01 -8.67173597e-02 4.17284906e-01 1.27730161e-01\\n-3.32209557e-01 -4.02919441e-01 1.16316535e-01 5.55696450e-02\\n-2.37498611e-01 -1.31318599e-01 -2.92957388e-02 1.12921357e-01\\n-5.80412507e-01 -3.28383714e-01 -8.09447616e-02 6.74306750e-02\\n-3.46572906e-01 -2.44941428e-01 9.31661949e-03 -1.86708309e-02\\n1.03522837e-01 1.03569023e-01 -5.14847040e-01 1.23196423e-01\\n-1.12720743e-01 -3.01769853e-01 2.20641196e-01 6.71360672e-01\\n6.81209117e-02 -4.06091511e-01 -4.51120973e-01 -3.24904770e-01\\n9.17415917e-02 -1.12229757e-01 6.13092072e-02 -3.56677771e-01\\n3.03087562e-01 -5.87963350e-02 1.64652560e-02 1.93191841e-01\\n-6.93414032e-01 2.38288473e-02 -2.33804762e-01 -1.47518933e-01\\n-3.15329462e-01 6.18902817e-02 -2.97626495e-01 -2.42492035e-01\\n-1.44667029e-01 4.33701217e-01 1.31305158e-01 1.11019388e-01\\n-1.50597528e-01 2.47312263e-01 -1.04015507e-01 3.70837659e-01\\n1.78832054e-01 3.69158030e-01 2.23606929e-01 3.22638959e-01\\n-3.73376667e-01 4.07187790e-01 1.23610720e-01 -2.65248090e-01\\n2.37748519e-01 1.79369792e-01 2.60767937e-01 -3.19731198e-02\\n1.99742496e-01 -3.80939171e-02 -3.38774532e-01 2.55127251e-01\\n1.66170642e-01 -4.89973366e-01 1.56059548e-01 -1.37409851e-01\\n-2.91071110e-03 -9.35484562e-03 5.29987477e-02 1.72150329e-01\\n-3.07736784e-01 3.31511438e-01 -9.75141581e-03 -1.83410212e-01\\n-6.16281517e-02 -4.30995047e-01 -1.41203254e-01 5.74008711e-02\\n4.13490981e-02 2.14751825e-01 2.29491144e-01 1.36725515e-01\\n2.72884190e-01 4.15500924e-02 2.00089261e-01 8.26575220e-01\\n-1.01523191e-01 1.22595973e-01 -2.15934291e-01 2.78273314e-01\\n1.04444064e-01 -3.02430749e-01 2.50487655e-01 2.11041972e-01\\n-4.98010106e-02 -9.42349657e-02 -2.13046059e-01 2.54772991e-01\\n2.46972758e-02 -2.07937703e-01 -2.51234353e-01 1.31882638e-01\\n6.11384101e-02 -4.97514218e-01 5.43788254e-01 8.31065923e-02\\n1.56877622e-01 -1.19561953e-02 -6.43652305e-02 -9.73375663e-02\\n-2.58714594e-02 2.39994973e-01 1.08834561e-02 1.40085697e-01\\n-2.57190377e-01 -1.34198502e-01 -2.20970795e-01 -5.64923510e-02\\n-4.84618783e-01 1.74180657e-01 -2.61870492e-03 -9.50599611e-02\\n2.02970713e-01 -4.20724228e-02 -2.46544674e-01 3.05305272e-01\\n-2.90376037e-01 -1.57171533e-01 1.00669160e-01 3.03827971e-01\\n-3.33609164e-01 1.24858879e-01 -4.12712581e-02 -2.41804451e-01\\n4.68797714e-01 1.51310444e-01 3.22709411e-01 5.13660572e-02\\n2.20861048e-01 -7.63877109e-02 1.25798220e-02 2.25749254e-01\\n-6.80219054e-01 3.12701553e-01 9.46367458e-02 -2.03057796e-01\\n2.09997013e-01 -9.98928025e-02 2.42035434e-01 -2.14426339e-01\\n1.05195731e-01 -1.19733736e-01 -3.10576200e-01 -2.43693173e-01\\n-2.50029624e-01 -1.11449482e-02 3.08066875e-01 -5.88151038e-01\\n-8.85183588e-02 -6.81326771e-03 -4.59642947e-01 -1.65356681e-01\\n8.05867016e-02 2.61000484e-01 8.85389671e-02 -6.61543459e-02\\n-1.77584067e-01 -4.06854153e-01 4.10916144e-03 -3.55987817e-01\\n-1.66966155e-01 -2.51327865e-02 -3.42965454e-01 1.76653370e-01\\n5.54593652e-02 -3.25680003e-02 -9.56261456e-02 -9.40824579e-03\\n-2.53544331e-01 7.96341375e-02 1.03581689e-01 6.38189167e-02\\n3.22969556e-01 1.15117999e-02 -2.08913103e-01 5.06031156e-01\\n-1.80207267e-01 6.66844666e-01 1.73181459e-01 -8.14377546e-01\\n4.54653323e-01 2.86863357e-01 -1.07230963e-02 -2.92135686e-01\\n6.37848198e-01 -3.75582367e-01 -8.85041524e-03 1.87342823e-01\\n-3.45231771e-01 -2.83567667e-01 1.51937395e-01 -2.25106969e-01\\n-2.58491546e-01 5.26574135e-01 1.42717451e-01 1.70898438e-01\\n2.14334786e-01 -3.03610891e-01 -6.75523803e-02 -8.32155868e-02\\n-1.54264092e-01 -3.83195549e-01 -5.73028982e-01 -6.55015782e-02\\n-1.25790730e-01 -3.36801231e-01 -1.47425279e-01 -4.62748349e-01\\n-9.27001834e-02 -4.03450519e-01 -2.65678197e-01 1.94546476e-01\\n2.13997319e-01 1.17348842e-01 -4.25942205e-02 1.22979367e-02\\n-9.76544321e-02 -6.76535070e-01 -8.29224885e-02 5.83552606e-02\\n4.43315655e-01 1.14559479e-01 2.77244925e-01 -1.28652334e-01\\n1.65955558e-01 6.53477192e-01 -1.71655521e-01 -3.07079434e-01\\n1.43087879e-01 2.78428346e-01 1.68222748e-02 -2.66479850e-02\\n3.05576324e-01 2.89223909e-01 -2.62924641e-01 2.34096106e-02\\n-1.91415884e-02 1.05153278e-01 2.40348488e-01 1.25994071e-01\\n-2.08174571e-01 -2.31274411e-01 7.44361654e-02 2.25542650e-01\\n-4.92674112e-01 -2.38332406e-01 5.76628327e-01 1.89323768e-01\\n1.72084689e-01 1.17254898e-01 1.26011491e-01 -1.54321223e-01\\n-6.75572753e-02 -1.61565736e-01 3.12038869e-01 1.21914983e-01\\n1.64828986e-01 4.59882095e-02 5.60047068e-02 -5.16435623e-01\\n-3.68510103e+00 -2.04643905e-01 1.15050748e-01 -1.39377043e-01\\n2.25725040e-01 -1.56521946e-01 1.81444034e-01 6.03725575e-02\\n-2.73012012e-01 8.79794806e-02 -3.70080732e-02 -2.01254904e-01\\n2.38678962e-01 1.67655721e-01 1.16300568e-01 3.35585594e-01\\n1.83759972e-01 -2.25459978e-01 -2.91225165e-02 4.49460089e-01\\n-1.60301223e-01 -7.04077303e-01 1.49113461e-01 9.12655378e-04\\n2.50079185e-01 1.75658807e-01 -2.26983413e-01 -1.39011815e-01\\n-1.59145996e-01 -2.46197671e-01 3.44767347e-02 -3.23523790e-01\\n-1.21446028e-01 3.80035192e-01 1.86080128e-01 -6.75055906e-02\\n9.49894413e-02 -3.48343015e-01 -2.33039573e-01 -3.63653660e-01\\n5.97209223e-02 -5.22657275e-01 2.36434229e-02 -5.33922091e-02\\n6.37204826e-01 -3.07620466e-01 2.31776059e-01 1.63289651e-01\\n1.16568752e-01 1.62227869e-01 1.37857303e-01 -4.81144451e-02\\n-1.36183485e-01 -3.80989969e-01 -4.40786481e-02 -2.41421148e-01\\n5.02203763e-01 4.73702669e-01 -9.83978510e-02 8.17500278e-02\\n8.24889317e-02 -1.00262851e-01 -4.55879271e-01 -3.48340064e-01\\n-1.40129134e-01 -1.73357055e-01 -6.14194393e-01 -3.46351296e-01\\n-7.30605051e-02 -2.31972501e-01 -1.35276854e-01 4.15082425e-01\\n-2.48057410e-01 -4.22986895e-01 -1.10082425e-01 -4.02447820e-01\\n4.98986453e-01 -8.01795423e-02 -8.19751695e-02 -1.77903876e-01\\n-3.06175083e-01 -4.51508850e-01 7.00418726e-02 5.60297556e-02\\n-1.37117594e-01 -2.48543158e-01 8.51005539e-02 -1.93365633e-01\\n-2.53347397e-01 -5.42094886e-01 4.91929710e-01 1.91351861e-01\\n3.88246030e-01 2.44157195e-01 3.35294843e-01 4.24858630e-02\\n2.36765862e-01 -1.30596459e-02 6.96509182e-02 -5.09429812e-01\\n-9.48905386e-03 1.50178969e-01 3.84478986e-01 -2.33487189e-01\\n-7.02647343e-02 5.68344593e-02 -2.13667691e-01 -8.05243030e-02\\n2.36583889e-01 -8.08320493e-02 1.11165784e-01 -1.00594193e-01\\n1.90627620e-01 -4.13162857e-01 -8.43930915e-02 1.21284667e-02\\n1.70217544e-01 6.26987398e-01 2.14895941e-02 -2.68700600e-01\\n-2.38965496e-01 6.31770074e-01 -1.30366474e-01 5.45745008e-02\\n-1.47044957e-01 8.67952630e-02 -2.01769859e-01 3.55974704e-01\\n-2.22864635e-02 -1.99969009e-01 -1.95707530e-01 -9.51852873e-02\\n-7.49362037e-02 2.82125622e-01 2.48614430e-01 8.22490677e-02\\n-3.91706564e-02 -4.08989966e-01 -7.48946741e-02 1.64007694e-01\\n2.83557922e-01 4.55308974e-01 6.03033565e-02 -1.59257561e-01\\n6.31423220e-02 3.57733667e-01 -2.71562994e-01 3.77787858e-01\\n-1.64666668e-01 1.26144394e-01 -6.03301287e-01 -3.17716330e-01\\n-3.47856581e-01 -2.79778987e-01 1.10520743e-01 2.84208000e-01\\n2.91715264e-01 -1.45216689e-01 1.40227275e-02 -4.95666593e-01\\n2.70140141e-01 7.16601461e-02 2.20344976e-01 1.04493171e-01\\n-5.39024696e-02 5.85934341e-01 1.65063702e-02 -6.02708682e-02\\n-2.38422398e-03 6.71600597e-03 -2.37283304e-01 -1.66704476e-01\\n5.08234948e-02 -4.92127687e-01 -2.53342599e-01 3.41810942e-01\\n1.59900710e-01 -4.24070001e-01 -2.68969983e-01 2.13717654e-01\\n7.50737786e-02 -2.27821589e-01 -3.24028492e-01 -6.61231298e-03\\n4.42440689e-01 1.45678639e-01 3.13613474e-01 -4.67149824e-01\\n-1.12178195e-02 7.18855634e-02 6.64622039e-02 4.66007918e-01\\n5.51713025e-03 -1.26265669e-02 -3.20396274e-02 -3.17635536e-01\\n4.47322935e-01 -1.50988325e-01 -1.68358177e-01 -3.33357863e-02\\n4.13880013e-02 -1.05511412e-01 -2.82702744e-01 6.04886040e-02\\n-1.16127856e-01 -3.03594172e-01 -6.26671612e-02 2.03018695e-01\\n1.83796227e-01 -2.95599774e-02 -5.65331638e-01 -3.25130701e-01\\n-2.91991740e-01 -2.10357551e-02 -2.09628493e-02 -3.67239952e-01\\n5.04770912e-02 -9.24000815e-02 -5.30682743e-01 2.08150864e-01\\n-1.51941746e-01 -7.75992721e-02 1.04340725e-01 9.44974422e-02\\n-3.33798975e-01 -1.01228140e-01 1.33059815e-01 2.66825765e-01\\n-3.21399778e-01 -3.43650460e-01 -6.54718503e-02 -7.51138926e-01\\n1.62022933e-01 8.36727098e-02 -1.15217365e-01 1.95982754e-01\\n-1.19607836e-01 -6.26854956e-01 6.60106540e-02 -2.65399069e-01\\n-2.20683664e-01 -2.26165712e-01 -3.15830946e-01 -3.78129840e-01\\n5.39277904e-02 6.49655312e-02 -2.36118942e-01 5.56347489e-01\\n-3.81152928e-01 2.56314486e-01 -7.96183646e-02 4.68397513e-02\\n1.72613356e-02 -2.08499610e-01 2.12732181e-01 -4.15350348e-01\\n-3.55430871e-01 -8.42158422e-02 -3.39894950e-01 -3.17642242e-01\\n-1.93699718e-01 -2.35852674e-01 8.16843566e-03 -7.09362775e-02\\n3.32020283e-01 1.07818626e-01 -1.32470295e-01 -2.26608410e-01\\n1.38176680e-01 -3.49356353e-01 1.51823595e-01 -4.59957086e-02\\n-8.19065049e-02 -1.00773856e-01 1.95760444e-01 6.50079250e-02\\n1.43086642e-01 -3.80741417e-01 2.65167475e-01 -4.40859646e-01\\n-3.23772490e-01 -2.09869534e-01 4.87224460e-02 -1.52072906e-02\\n1.62997901e-01 -5.91819942e-01 5.11376821e-02 1.73154294e-01\\n1.80089161e-01 -3.11979856e-02 3.00230235e-01 -8.87090936e-02\\n-1.05823286e-01 3.49404603e-01 -2.96149760e-01 4.22173403e-02\\n7.77066231e-01 1.09981678e-01 1.27380446e-01 2.90766448e-01\\n4.59263921e-02 1.73994601e-01 3.73097211e-01 9.55682322e-02\\n-8.30591545e-02 2.24705219e-01 1.89638421e-01 -4.55141872e-01\\n-1.00246727e-01 -4.87681068e-02 -1.74890444e-01 -5.11940002e-01\\n6.68703973e-01 3.47757995e-01 -4.26182002e-01 -2.17257574e-01\\n-1.64822757e-01 -1.07148722e-01 2.54087269e-01 -1.47430524e-01\\n-2.87761502e-02 -8.11498165e-02 4.20388699e-01 -3.27016115e-02\\n4.01613861e-01 5.60621262e-01 -1.66709617e-01 -1.95246652e-01\\n-9.10776332e-02 1.88937187e-01 1.67197540e-01 3.59142512e-01\\n-2.30399117e-01 4.22232628e-01 4.30427678e-02 1.42647967e-01\\n-6.48752749e-02 2.64208585e-01 8.52646455e-02 1.48579031e-01\\n1.23587020e-01 4.66456935e-02 4.33193743e-01 4.59638149e-01\\n2.26324245e-01 3.98176759e-01 3.37446034e-01 1.55141249e-01\\n3.14384997e-01 3.97590697e-01 2.74339944e-01 1.04928561e-01\\n7.24257603e-02 3.88792157e-02 1.23805352e-01 -5.80965504e-02\\n2.13122964e-01 4.22387719e-01 1.36452481e-01 8.81558657e-01\\n2.89816082e-01 2.85555631e-01 7.15859413e-01 -6.31844938e-01\\n-3.64297390e-01 -4.20741476e-02 4.30441201e-01 -4.68447536e-01\\n-1.09320067e-01 8.48481655e-02 -7.84363598e-02 2.46285096e-01\\n-4.01375502e-01 -1.64868042e-01 -2.24386752e-02 1.56669080e-01\\n-3.50819714e-02 -2.72874743e-01 -1.08179636e-01 1.21395297e-01\\n-6.77747205e-02 3.43343541e-02 -4.33771253e-01 -2.11069316e-01\\n-1.99396610e-01 -2.85828531e-01 -3.34845006e-01 -5.63718416e-02\\n-1.00726865e-01 -3.20283741e-01 -3.81402075e-02 -2.51298565e-02\\n2.81315476e-01 -3.21915485e-02 -7.25777224e-02 -1.84683770e-01\\n3.78435820e-01 1.55084729e-01 5.29626906e-01 -1.17577322e-01\\n2.12729409e-01 -1.15181141e-01 -1.74979821e-01 3.32621597e-02\\n1.71367526e-01 5.24305478e-02 -4.40387763e-02 2.06716865e-01\\n-2.54046082e-01 -1.07604459e-01 1.70961127e-01 1.84873760e-01\\n-4.32809472e-01 8.43826309e-02 -9.10341218e-02 1.38509825e-01\\n6.28625508e-03 1.02476016e-01 -2.58667499e-01 2.93790270e-02\\n-2.50913560e-01 -5.01246333e-01 3.05110931e-01 -3.14081937e-01\\n-7.71127418e-02 1.12704739e-01 3.78800213e-01 3.17042619e-01\\n-1.24185815e-01 8.15732330e-02 -4.62666750e-02 6.35132119e-02\\n3.96923572e-02 1.50955692e-01 -1.87291533e-01 -2.22348362e-01\\n-4.00322109e-01 9.14957225e-02 -1.98645294e-01 7.54148886e-02\\n4.54623438e-02 4.27334279e-01 1.41853422e-01 3.90491746e-02\\n3.97987515e-01 -1.40597627e-01 -2.23483115e-01 -2.70711303e-01\\n-2.68504232e-01 -6.37652203e-02 -1.10278949e-01 -5.43282293e-02\\n1.98959157e-01 -2.56295085e-01 -3.69881354e-02 -1.92600414e-01\\n-4.39222865e-02 -3.32336396e-01 6.70754462e-02 -1.82466760e-01]]',\n", + " \"You have hands-on experience developing, deploying or managing operating cloud-based services SAAS applications. You have been exposed to one or several IAAS & PAAS infrastructures such as AWS, GE-Digital Predix, IBM-BlueMix/Watson, VMware... You are experienced in finding and structuring and collecting different data streams (weather, finance, industrial signals, social events). You strongly believe automated machine learning and artificial intelligence coupled with big data can change the game in many industrial sectors. You worked open-data correlations with industrial signals, weather, events, calendar, financial markets, economic indicators. You applied it to real use case in operations and markets, for energy, utilities, industry, retail, transport or freight sectors. You cooperate with leading partners like GE - Digital, IBM-Analytics, Cisco-IOT with Industry leader customers in EU & US & Asia, like Arcelor, EDF, ALPIQ, ELIOR, METRO... Predictive Layer will bring you a unique opportunity to develop, deploy, or operate leading-edge predictive services for different customers worldwide, on different markets: Energy, Industry, retail, Catering, Transport and many more... At Predictive Layer, We cultivate a team-based environment where we strive for personal growth and a substantial contribution from all our team members. If you desire a career where you can drive innovation while working in an dynamic environment where innovative thinking, creativity and motivation are recognized and rewarded, then come and join us! Back to opportunities Send us your resume - Let's meet! careers@predictivelayer.com Position reference: #2017-OOE-003\",\n", + " '[\"Cooperation\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Innovation\", \"Socialization\", \"Positivity\"]',\n", + " '[\"Automation\", \"Collections\", \"Analytics\", \"Data Streaming\", \"Prediction\", \"Industrialization\", \"IBM Bluemix\", \"Energy Market\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Component Object Model (COM)\", \"Layering\", \"Weathering\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Cloud Operations\", \"Predix\", \"Financial Market\", \"Machine Learning Methods\", \"Finance\", \"Digitization\", \"Personalization\", \"Cisco Networking\", \"Location-Based Services\", \"Artificial Intelligence\", \"Big Data\", \"Coupling\", \"Operations Management\", \"Economic Indicators\", \"Cultivator\"]',\n", + " \"['English', 'Kyrgyz', 'Sango', 'Dhivehi']\"],\n", + " ['84',\n", + " 'data scientist',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.91686648e-01 2.04061642e-01 4.32900786e-01 5.80541231e-03\\n5.18044472e-01 -4.35516611e-02 6.88831061e-02 3.14570218e-01\\n-2.31416989e-02 -1.06871881e-01 -2.13608995e-01 -3.15169513e-01\\n-2.04013705e-01 4.33192477e-02 2.12641582e-01 4.68771964e-01\\n2.06029788e-01 4.64090845e-03 -2.33336136e-01 3.54226083e-01\\n8.34875479e-02 1.16545513e-01 -8.03779885e-02 6.66175187e-01\\n4.59694654e-01 7.73728266e-02 -9.30137709e-02 -6.06686398e-02\\n-4.31178957e-01 -1.22906849e-01 3.92261207e-01 3.61385271e-02\\n-9.46454480e-02 -3.26138735e-01 2.11242456e-02 1.10569127e-01\\n-2.47097641e-01 -1.50502831e-01 1.68206654e-02 2.04309180e-01\\n-3.79395932e-01 -3.12247723e-01 6.52576089e-02 1.26953319e-01\\n-2.43624642e-01 -2.30153948e-01 -9.27058533e-02 2.55104769e-02\\n-1.03222162e-01 1.84942279e-02 -6.65568054e-01 4.08408523e-01\\n-1.04728453e-02 -2.32192174e-01 2.04855323e-01 5.86999357e-01\\n-3.99021171e-02 -6.51836574e-01 -1.44396707e-01 -3.63383561e-01\\n9.07827243e-02 -1.54940471e-01 1.95662662e-01 -1.43888503e-01\\n2.62164503e-01 -2.54363287e-02 -9.81821939e-02 4.06078011e-01\\n-6.90876722e-01 -2.91096240e-01 -2.70085990e-01 2.83177420e-02\\n-4.25305545e-01 2.47034803e-01 -2.70958364e-01 -1.99569121e-01\\n-7.19892373e-03 3.57395053e-01 -7.33129233e-02 1.79655209e-01\\n-1.30498648e-01 2.68183112e-01 5.49143404e-02 1.56695530e-01\\n3.29132676e-01 1.70341834e-01 6.99401200e-02 3.04478884e-01\\n-4.62187618e-01 3.90775949e-01 2.11236048e-02 -2.53589392e-01\\n7.53163546e-02 7.59304240e-02 5.08834243e-01 1.42248869e-01\\n-3.88880493e-03 1.46473348e-01 -1.14827834e-01 2.20470622e-01\\n1.56753615e-01 -3.96738827e-01 1.68205366e-01 -1.48392871e-01\\n-3.07249308e-01 9.56062824e-02 -5.15857749e-02 1.48669571e-01\\n-3.95480365e-01 3.60392392e-01 3.44294488e-01 -1.48743823e-01\\n4.47677597e-02 -7.07802296e-01 -6.16617687e-03 -1.08273730e-01\\n-3.29244770e-02 2.66690195e-01 3.53786469e-01 1.39948636e-01\\n3.35522771e-01 -2.40337998e-02 3.09950709e-01 9.22345698e-01\\n1.06312841e-01 -6.31182119e-02 -2.80792922e-01 3.81584108e-01\\n1.77828118e-01 -1.56814650e-01 1.29394233e-01 3.10392052e-01\\n1.79872289e-01 -1.06019974e-02 -3.41209352e-01 1.85541242e-01\\n-2.57802755e-01 -2.52250612e-01 -2.50154316e-01 6.68606237e-02\\n-3.00160915e-01 -5.20796239e-01 4.69825923e-01 2.89042899e-03\\n1.94604620e-01 -2.91163594e-01 4.07283343e-02 -2.49617416e-02\\n9.56173986e-02 3.98653984e-01 2.79094782e-02 2.17068866e-01\\n-3.32155615e-01 -2.23185718e-01 -9.21046361e-02 4.37520176e-01\\n-1.27507046e-01 8.61564875e-02 -4.25243825e-02 -1.88912332e-01\\n2.21561462e-01 1.54933020e-01 -4.68802392e-01 8.78279582e-02\\n-7.37207234e-02 -5.42537093e-01 -1.70441732e-01 2.29685605e-01\\n-1.14009015e-01 1.72813907e-01 6.27578199e-02 -4.33599025e-01\\n4.43504423e-01 2.13964894e-01 3.21540713e-01 -1.51990175e-01\\n3.53876829e-01 -2.53861398e-01 3.90937448e-01 9.04271677e-02\\n-5.72262168e-01 2.86348790e-01 -4.35030013e-02 -2.74785340e-01\\n5.26457578e-02 9.81169194e-02 4.16561067e-01 -3.90926689e-01\\n7.44875073e-02 -1.22140825e-01 -5.08401811e-01 -4.69216824e-01\\n-2.30852485e-01 -1.41185215e-02 3.27836186e-01 -2.72792906e-01\\n-1.21926583e-01 1.26300439e-01 -4.60910052e-01 -1.87993661e-01\\n1.98193178e-01 1.49658859e-01 -5.78675941e-02 1.21580981e-01\\n-1.14804476e-01 -5.86582541e-01 -7.11060837e-02 -4.94487405e-01\\n-5.88183165e-01 6.78510685e-03 -1.46117225e-01 1.84540823e-01\\n-4.49923463e-02 6.83041364e-02 -1.15771160e-01 9.27980244e-02\\n-3.67254108e-01 8.01892281e-02 8.07137415e-02 1.34678900e-01\\n2.40965366e-01 -3.53384875e-02 -3.95915896e-01 5.52297473e-01\\n-1.36895254e-01 7.23371267e-01 1.95815772e-01 -7.41342068e-01\\n6.38919592e-01 2.20288649e-01 1.21694058e-01 -3.34901065e-01\\n4.34764653e-01 -4.39412773e-01 1.34969741e-01 1.38143837e-01\\n-1.92996383e-01 -1.85268894e-01 3.54556441e-01 -2.34328449e-01\\n-2.26210520e-01 6.41136110e-01 2.31571779e-01 -4.68387939e-02\\n2.65198618e-01 -3.25872600e-01 -7.42147639e-02 2.10727658e-02\\n-1.24358773e-01 -2.64939845e-01 -3.25193048e-01 2.36042559e-01\\n2.05413494e-02 -4.78125781e-01 -1.34334296e-01 -3.00024182e-01\\n-2.20172137e-01 -3.30865502e-01 -1.60069898e-01 4.58098292e-01\\n2.76281744e-01 6.51849508e-02 1.63065001e-01 -1.41635284e-01\\n3.59781235e-02 -5.04790545e-01 -7.63145015e-02 6.02018833e-02\\n4.72447187e-01 2.22790226e-01 1.42201856e-01 -3.78096811e-02\\n-1.62803754e-01 5.66866040e-01 -2.81950563e-01 -3.03432107e-01\\n7.97862262e-02 1.26851588e-01 -1.34955049e-01 -8.98523182e-02\\n2.16015540e-02 3.30069751e-01 -1.12245493e-01 1.98037133e-01\\n-1.73597977e-01 5.31428717e-02 3.97042304e-01 5.46354742e-04\\n-6.91757128e-02 -9.93821844e-02 2.34444849e-02 4.30463403e-01\\n-4.51289505e-01 -2.72068530e-01 5.25003254e-01 2.51450390e-01\\n1.47409484e-01 1.89006016e-01 2.93197662e-01 -1.90295175e-01\\n-1.99855283e-01 -3.15547258e-01 1.98901683e-01 1.13358460e-01\\n-7.48423561e-02 6.57600686e-02 -1.22415893e-01 -5.27231753e-01\\n-3.09559941e+00 -1.15185134e-01 8.34255666e-02 -2.94988632e-01\\n1.26817331e-01 -5.58995754e-02 -9.95766968e-02 1.78745668e-02\\n-3.18785220e-01 1.68545768e-01 -1.95996329e-01 -1.77107424e-01\\n-3.22351940e-02 2.67682254e-01 2.70675067e-02 6.31248206e-02\\n6.36800081e-02 -1.29271969e-01 -6.45667613e-02 3.60034555e-01\\n-1.04455441e-01 -7.07329273e-01 1.27839133e-01 9.89936143e-02\\n1.60704896e-01 1.39445588e-01 -3.79342139e-01 -2.20478594e-01\\n-2.47751176e-01 -2.63370812e-01 1.02236338e-01 -3.67218524e-01\\n-2.26745471e-01 5.52684784e-01 1.89995721e-01 1.23770475e-01\\n-2.57424414e-02 -3.64202052e-01 5.16005047e-02 -3.72083664e-01\\n4.92196679e-02 -6.75677419e-01 -2.24536229e-02 -6.73445463e-02\\n7.37730682e-01 -3.14650893e-01 2.38339290e-01 1.16855979e-01\\n1.99528173e-01 1.91732794e-01 -9.02530476e-02 -3.59763354e-02\\n-3.00475210e-01 -3.57758582e-01 -3.88732441e-02 -1.25933304e-01\\n1.98664621e-01 5.35580575e-01 -1.26230106e-01 9.72895473e-02\\n1.66875422e-01 -3.12311232e-01 -3.78897369e-01 -4.96209085e-01\\n-3.85520071e-01 -3.04649651e-01 -7.95602918e-01 -4.55968976e-01\\n6.41787574e-02 -2.38715727e-02 -2.03945309e-01 6.33700073e-01\\n-2.67338723e-01 -3.09815854e-01 3.13259922e-02 -5.72830915e-01\\n8.76204297e-02 -3.82605910e-01 7.02480972e-02 -5.17662093e-02\\n-2.30191305e-01 -4.76210207e-01 2.21614793e-01 -4.52983044e-02\\n-8.74392986e-02 -5.20487204e-02 -1.32195219e-01 -3.47441792e-01\\n-3.51087242e-01 -4.01318222e-01 4.83230531e-01 1.67956620e-01\\n3.45731348e-01 1.77679092e-01 3.14586937e-01 1.78574964e-01\\n2.28793174e-01 -1.79718718e-01 1.02619573e-01 -2.74181455e-01\\n1.50165260e-01 7.03793615e-02 6.06749535e-01 -2.58435279e-01\\n2.18768328e-01 7.18174875e-02 -2.40116552e-01 2.39831414e-02\\n3.87367308e-01 1.04221758e-02 -1.10561617e-01 1.06923759e-01\\n3.44872296e-01 -7.11534023e-01 -2.85245121e-01 1.62486106e-01\\n1.03101274e-02 6.29650652e-01 1.19856186e-01 -3.50648224e-01\\n-3.50287288e-01 3.50472361e-01 -1.14624739e-01 -2.77999461e-01\\n-2.41299435e-01 2.00297326e-01 -3.36781219e-02 2.01471657e-01\\n-8.62081870e-02 -2.59894907e-01 -3.28894407e-01 -1.00058675e-01\\n-1.76600572e-02 1.67612225e-01 2.25826800e-01 -2.74837622e-03\\n-1.15479641e-01 -2.98116982e-01 -2.16345146e-01 1.26768455e-01\\n4.86808360e-01 2.68854707e-01 1.05064958e-01 -2.23249957e-01\\n-6.88995793e-02 2.34800488e-01 -9.46756452e-02 2.06882849e-01\\n-1.13547988e-01 2.16431692e-02 -4.87001568e-01 -2.74139404e-01\\n-7.26620257e-02 -2.69470245e-01 1.67877689e-01 4.22688961e-01\\n2.02724263e-01 1.23987952e-02 1.65575430e-01 -4.72110569e-01\\n5.43054283e-01 3.25886011e-02 2.37037271e-01 9.31065083e-02\\n-1.38055921e-01 5.86927772e-01 -2.53712311e-02 7.49213919e-02\\n-3.06381006e-02 -2.15650886e-01 -3.27455670e-01 -2.30519980e-01\\n7.34299496e-02 -1.59435898e-01 -6.76190332e-02 4.90209043e-01\\n8.61545354e-02 -3.16816658e-01 -1.40562698e-01 2.92161793e-01\\n7.88714513e-02 -3.43418807e-01 -2.03560680e-01 2.06449088e-02\\n3.21168929e-01 1.94228709e-01 2.89532244e-01 -3.93969625e-01\\n-1.63746029e-01 1.33334100e-02 -1.36937410e-01 4.68767136e-01\\n1.50372535e-01 4.56012189e-02 -1.45879835e-01 -2.96538979e-01\\n4.93033051e-01 -3.20778310e-01 -1.61193863e-01 1.33040011e-01\\n9.44858417e-02 -1.56003058e-01 -5.19017041e-01 -1.38598129e-01\\n3.73046286e-03 -3.13572586e-01 7.54157901e-02 -3.96254249e-02\\n7.04898387e-02 -1.04615487e-01 -4.65436101e-01 -1.98056504e-01\\n-2.42939785e-01 -1.61022365e-01 2.72263400e-02 -3.25940460e-01\\n-6.75823689e-02 -1.42018273e-01 -5.76319933e-01 2.35365167e-01\\n-2.95892686e-01 3.27474661e-02 1.46657616e-01 1.56496599e-01\\n-3.91837656e-01 -2.18247637e-01 4.59922403e-02 1.58302888e-01\\n-2.15325177e-01 -9.29694772e-02 4.32322398e-02 -1.05566096e+00\\n6.74600303e-02 9.57051888e-02 4.38620970e-02 -1.37444250e-02\\n5.82143925e-02 -4.75047231e-01 9.01588053e-02 -4.09445524e-01\\n1.78429082e-01 1.43065438e-01 -1.89526349e-01 -3.32361102e-01\\n2.36770779e-01 -9.77622718e-03 -1.90614969e-01 4.00422871e-01\\n-4.33595836e-01 2.24015430e-01 1.00988053e-01 2.49428526e-02\\n-1.31894322e-02 -2.22912118e-01 1.54108465e-01 -2.20984921e-01\\n-3.87277067e-01 -7.69300833e-02 -3.49794298e-01 -1.46556661e-01\\n5.36721461e-02 -1.79340631e-01 -1.82234108e-01 -2.12534494e-03\\n2.67346382e-01 1.74136102e-01 -8.22721422e-02 -2.09856361e-01\\n1.65601522e-01 -4.61291492e-01 1.79181471e-01 -2.80783921e-01\\n-7.81702548e-02 -8.81757289e-02 1.14850618e-01 -2.13391781e-02\\n-4.90123481e-02 -1.90039948e-01 4.20607239e-01 -4.21165496e-01\\n-4.26618218e-01 -1.46922663e-01 6.75674528e-02 -6.57596514e-02\\n1.99816599e-01 -5.05904078e-01 9.24960896e-02 1.79652214e-01\\n-1.23600625e-02 5.12330867e-02 3.10125351e-01 1.73377208e-02\\n-7.69033805e-02 2.12042525e-01 -4.49290246e-01 1.49462000e-01\\n7.97258973e-01 2.44524360e-01 1.03667662e-01 1.47585422e-01\\n3.19616884e-01 1.93922266e-01 4.80840445e-01 2.74203829e-02\\n-6.48033759e-03 3.03565234e-01 2.05989815e-02 -5.44946373e-01\\n-1.35170072e-01 -2.17022493e-01 -2.81841010e-01 -3.52884531e-01\\n5.24826765e-01 3.64471138e-01 -2.89452016e-01 -2.52792299e-01\\n4.29466888e-02 -3.98050807e-03 3.09857309e-01 -9.07611772e-02\\n-1.62053388e-02 4.23711911e-03 6.46601498e-01 -4.12539020e-02\\n2.83709884e-01 5.23165226e-01 -1.53776795e-01 -3.81389380e-01\\n-2.21663475e-01 2.19195157e-01 2.47132704e-01 4.67390478e-01\\n-1.41480789e-01 2.21952155e-01 6.55875681e-03 8.12674686e-02\\n1.22969672e-02 5.68068214e-02 1.13815844e-01 1.14773445e-01\\n1.92382187e-01 8.23568106e-02 9.49330479e-02 4.14008975e-01\\n5.60235269e-02 5.41974485e-01 2.57521600e-01 1.12128057e-01\\n2.22433060e-01 6.99137092e-01 2.99825996e-01 2.41511628e-01\\n-2.20777504e-02 1.94488913e-01 -6.79388791e-02 -5.71528152e-02\\n3.13189805e-01 1.79291338e-01 2.53783673e-01 8.21816862e-01\\n4.30064529e-01 4.26190197e-01 6.28211617e-01 -7.05857992e-01\\n-5.40140808e-01 -2.42070891e-02 4.85594153e-01 -4.06843603e-01\\n-8.49680305e-02 7.87440091e-02 -1.83871135e-01 4.23936516e-01\\n-5.04320562e-01 -1.52203068e-01 8.90779197e-02 -1.97354853e-01\\n9.27238986e-02 1.12863235e-01 -2.46302843e-01 1.06928006e-01\\n-3.24640989e-01 -2.52708167e-01 -1.78537622e-01 -1.82979271e-01\\n-2.94684291e-01 7.05610821e-03 -2.19192028e-01 -6.02630153e-02\\n-1.73061714e-01 -2.81221062e-01 -5.15223891e-02 9.77224186e-02\\n3.45926851e-01 -1.70974880e-01 -5.85893318e-02 -8.38431567e-02\\n3.22858468e-02 3.04626942e-01 5.61742485e-01 -2.06052825e-01\\n1.91823915e-01 -2.77284253e-02 -3.05221140e-01 -4.42805402e-02\\n8.79964232e-02 -2.45617349e-02 6.70327097e-02 5.06610870e-01\\n-3.83912235e-01 -9.10310447e-02 1.72058523e-01 2.16033608e-01\\n-3.52536142e-01 -1.22531824e-01 -7.99581185e-02 2.29155853e-01\\n5.28882556e-02 1.27549261e-01 -4.40746605e-01 6.87479153e-02\\n-2.03659371e-01 -5.89218378e-01 3.70585591e-01 -3.16344202e-01\\n-6.58534691e-02 3.46906602e-01 3.73105437e-01 7.74152949e-02\\n-3.17093253e-01 1.34946406e-01 -4.19319198e-02 3.90964121e-01\\n2.11893208e-02 3.65439743e-01 -2.65085846e-01 -2.08954737e-01\\n-1.74587041e-01 2.98991859e-01 -1.84180886e-01 3.04837316e-01\\n-1.71879321e-01 2.79030085e-01 1.64251611e-01 -2.80765109e-02\\n1.37629569e-01 3.68232317e-02 -2.77507752e-01 -2.47004271e-01\\n-2.96162635e-01 -3.46491158e-01 1.46319360e-01 4.40414101e-02\\n1.67378008e-01 -3.22934538e-01 -1.03864007e-01 -2.76259840e-01\\n-1.69470996e-01 -3.75530303e-01 -1.91596404e-01 1.57630280e-01]]',\n", + " 'Über unseren Kunden Unser Kunde ist einer der führenden Bankunternehmen der Schweiz Ihr Aufgabenbereich Sourcing and transformation of both structured and unstructured distributed client data coming from relational database systems using SQL or streaming data feeds using APIs; Application of advanced statistical methods, data mining, machine learning, deep learning or reinforcement learning, where applicable, to build and deploy models aiming at an improved client communication and truly personalized client experience / advice; Turning data analysis results into business insights & actions by using effective communication to various business stakeholders. Ihr Profil a degree in a technical field (Computer Science, Statistics, Mathematics, Physics, Engineering or similar) or equivalent practical experience; experience in Machine Learning / Artificial Intelligence, Data Mining, Natural Language Understanding or Algorithmic Foundations of Optimization; experience in processing data from relational databases using SQL; experience in visualizing data analysis results in an effective, applicable manner; programming experience and proficiency in one or more of the following: Python, R, Julia, Scala, Java, C/C++ (preferable, not required: understanding of object oriented design, programming and analysis); (preferable, not required) experience with learning frameworks/tools (TensorFlow, PyTorch, Caffe, MXNet, H2O, Deeplearning4j, Microsoft Cognitive Toolkit, MLlib, CUDA) and/or ‘Big Data’ analyses involving Apache Spark, Hadoop, Mesos or Kubernetes, and/or distributions such as Hortonworks; ability to explain complex models to both technical and non-technical stakeholders; basic knowledge about core banking products (functional, usage, target groups). Ihre Chance Schicken Sie Ihre Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: JAVA Entwicklung C# / C++ / C SQL Sprachen: Job ID: 7055',\n", + " '[\"Communications\", \"Sourcing\"]',\n", + " '[\"Apache Spark\", \"Julia (Programming Language)\", \"Tooling\", \"Programming (Music)\", \"Apache MXNet\", \"Statistical Methods\", \"Computer Science\", \"Data Streaming\", \"Machine Learning\", \"Nvidia CUDA\", \"Mathematical Statistics\", \"Production Function\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Data Feed\", \"Data Visualization\", \"Natural Language Understanding\", \"Mathematical Physics\", \"TARGET 3001!\", \"C (Programming Language)\", \"C# (Programming Language)\", \"Personalization\", \"R (Programming Language)\", \"Caffe\", \"Artificial Intelligence\", \"Object-Oriented Design\", \"Electronic Data Processing\", \"Deep Learning\", \"Survey Data Analysis\", \"Java Data Mining\", \"TensorFlow\", \"Big Data\", \"Database Systems\", \"Transformation (Genetics)\", \"Microsoft Cognitive Toolkit (CNTK)\", \"Banking\", \"Relational Databases\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Java (Programming Language)\", \"Reinforcement Learning\", \"SQL (Programming Language)\", \"Data Analysis\", \"Apache Mesos\"]',\n", + " \"['English']\"],\n", + " ['31',\n", + " 'business analyst for clinical data (structured authoring / data flow mapping)',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.90058723e-01 2.05467284e-01 3.72426987e-01 -5.80466948e-02\\n5.52426279e-01 -1.35403141e-01 5.06900586e-02 1.17760152e-01\\n-3.51019613e-02 -3.80689293e-01 -3.58271338e-02 -3.32828492e-01\\n9.25450027e-02 1.16106957e-01 7.91445896e-02 5.21173418e-01\\n2.81454057e-01 5.90662435e-02 -6.97103366e-02 2.46027634e-01\\n1.40348732e-01 -1.84725702e-01 1.87619776e-01 7.42999434e-01\\n4.30548191e-01 -2.37730164e-02 -3.94903272e-02 4.01175302e-03\\n-2.58001328e-01 -3.45108211e-01 5.59595764e-01 2.84140371e-02\\n-7.95810297e-02 -2.31803909e-01 1.89016998e-01 5.27131185e-02\\n-2.78515488e-01 -2.54841018e-02 -1.59584612e-01 1.29197359e-01\\n-5.78633547e-01 -6.88090622e-02 -1.67745426e-01 -1.00181960e-01\\n-3.14419061e-01 -3.53397936e-01 6.75246567e-02 -1.19257331e-01\\n1.38581753e-01 2.75538713e-02 -4.41809297e-01 1.85329482e-01\\n-3.28515321e-01 -1.55563995e-01 1.75760448e-01 6.83074951e-01\\n-1.45041153e-01 -4.97234970e-01 -4.81767178e-01 -2.40383357e-01\\n2.14999095e-01 -2.20530555e-01 1.44956876e-02 -2.48666823e-01\\n4.08628583e-01 3.72095555e-02 4.76088412e-02 4.28243935e-01\\n-7.22229540e-01 3.62592284e-03 -3.59028965e-01 6.62287325e-02\\n-2.65752167e-01 -1.49419174e-01 -2.67137557e-01 -1.53566346e-01\\n-7.11820051e-02 5.13301671e-01 -4.40597758e-02 8.67671985e-03\\n-1.46189600e-01 2.18050718e-01 -4.62920547e-01 2.63790548e-01\\n1.33325174e-01 1.50912672e-01 2.62105167e-01 7.72791728e-02\\n-4.37509239e-01 5.39172888e-01 2.45323122e-01 -3.96319926e-01\\n5.41904345e-02 8.98631662e-02 4.34878796e-01 -3.18157524e-02\\n6.24236315e-02 1.66692317e-01 -2.21452668e-01 2.38205418e-01\\n2.77330428e-01 -1.54558778e-01 9.64008570e-02 -5.01327850e-02\\n5.52161001e-02 -4.44939733e-02 3.50220017e-02 1.70944035e-01\\n-2.74819344e-01 4.77229238e-01 1.67230517e-01 -1.71569705e-01\\n-6.93121776e-02 -5.75600922e-01 -1.39177486e-01 1.42730139e-02\\n9.78661627e-02 1.22890607e-01 1.73482195e-01 3.08965772e-01\\n1.35107741e-01 3.33782285e-02 1.90341100e-01 8.82140756e-01\\n-4.52443548e-02 9.46592242e-02 -2.19695911e-01 3.27983350e-01\\n5.48824295e-02 -1.86934635e-01 2.39293039e-01 2.42590547e-01\\n-3.60377319e-02 -1.58151969e-01 -2.53053665e-01 4.14843231e-01\\n-9.26750004e-02 -2.17903927e-01 -1.93283975e-01 1.59457773e-01\\n-1.03982978e-01 -4.09473747e-01 5.79520702e-01 1.81898065e-02\\n1.21529602e-01 5.02033830e-02 -4.37205508e-02 -1.26886711e-01\\n-1.33194476e-01 3.43388498e-01 8.80149305e-02 1.16420120e-01\\n-1.20533943e-01 -2.96015114e-01 -8.47650021e-02 -2.92673451e-03\\n-2.82999754e-01 2.02451006e-01 -2.91905552e-01 -1.36052728e-01\\n4.50310171e-01 1.38760164e-01 -2.50322551e-01 3.11224759e-01\\n2.23671906e-02 9.41399764e-03 -9.75012034e-02 3.11580926e-01\\n-1.38899744e-01 9.29924380e-03 -1.01195633e-01 -3.15653920e-01\\n6.40886545e-01 2.92992163e-02 1.49095446e-01 4.01243046e-02\\n2.86743194e-01 -1.16093077e-01 1.56278908e-01 1.03367336e-01\\n-6.29719377e-01 4.76476073e-01 -1.67793274e-01 -1.35034740e-01\\n1.79337367e-01 -3.14125791e-02 3.62498045e-01 -3.12276870e-01\\n4.72382717e-02 -1.02296822e-01 -2.82601982e-01 -3.01525712e-01\\n-1.39809862e-01 -7.39141032e-02 3.35491955e-01 -3.87600124e-01\\n-5.22675663e-02 1.23412631e-01 -5.80588639e-01 -3.56190056e-02\\n1.82278842e-01 2.21916214e-01 2.37710059e-01 9.78602320e-02\\n-1.38567075e-01 -4.41609710e-01 1.90374434e-01 -4.09482688e-01\\n-1.62757501e-01 1.67970449e-01 -2.81430900e-01 2.90771395e-01\\n1.04229055e-01 4.54522334e-02 -9.80815664e-02 1.36675030e-01\\n-6.86575174e-02 -8.45099539e-02 1.90347210e-01 8.13273564e-02\\n2.58637458e-01 8.65791272e-03 -4.48414534e-01 5.19765198e-01\\n-1.46892890e-01 5.25546491e-01 4.04729247e-02 -8.02604318e-01\\n4.84955102e-01 3.28606844e-01 4.90329508e-03 -3.45496327e-01\\n6.34484172e-01 -2.96592027e-01 3.57473753e-02 1.14029065e-01\\n-3.74130130e-01 -1.55934751e-01 1.93257228e-01 -2.80833155e-01\\n-2.54598439e-01 5.66658378e-01 1.71225250e-01 1.22440688e-01\\n2.46449471e-01 -1.12304188e-01 -1.61031783e-01 3.93293388e-02\\n-1.09233826e-01 -1.59679577e-01 -5.42315364e-01 2.20103208e-02\\n-5.44199310e-02 -5.21671116e-01 -1.64359301e-01 -4.73229885e-01\\n-2.22590208e-01 -3.99813920e-01 -1.23955354e-01 1.52796328e-01\\n2.41797999e-01 1.89214319e-01 7.03435449e-04 6.00679442e-02\\n-2.03024209e-01 -6.13151848e-01 9.76223405e-03 1.94850072e-01\\n3.26987088e-01 1.81718230e-01 1.09383836e-01 -6.29059151e-02\\n-2.81207077e-02 6.03085160e-01 -3.78800511e-01 -1.43379867e-01\\n1.59969315e-01 1.44424990e-01 1.08571462e-01 -1.28893808e-01\\n1.00390203e-01 2.20234051e-01 -1.22250162e-01 1.16356000e-01\\n-9.71533358e-03 2.74036508e-02 2.64457822e-01 5.27017713e-02\\n-2.11649492e-01 -2.20533460e-01 -2.12174371e-01 1.36218324e-01\\n-5.66270471e-01 -1.68751776e-01 5.57263374e-01 1.96176916e-01\\n2.31138896e-02 2.06497937e-01 2.60912329e-01 1.40063316e-02\\n-1.86564744e-01 -2.50271380e-01 3.06731373e-01 1.39617130e-01\\n4.91467072e-03 8.59659389e-02 -1.58902809e-01 -5.63892365e-01\\n-3.36324835e+00 -1.95348442e-01 -2.57976372e-02 -3.31049293e-01\\n2.67073482e-01 -1.52796730e-01 2.15132862e-01 1.49351754e-03\\n-3.03503662e-01 -3.72367315e-02 -2.49930769e-01 -1.72204837e-01\\n1.95170596e-01 1.84270158e-01 2.22979248e-01 1.99243888e-01\\n9.71098244e-02 -3.84600371e-01 3.56917419e-02 4.55390334e-01\\n-2.75605559e-01 -6.55007243e-01 1.02833264e-01 -9.52682719e-02\\n2.18457982e-01 3.87460850e-02 -5.06822050e-01 4.01939675e-02\\n-3.26002091e-01 -3.26755911e-01 1.74597755e-01 -2.80557960e-01\\n-1.15135446e-01 3.00766826e-01 2.10835248e-01 -9.21319202e-02\\n2.01859493e-02 -3.09540629e-01 -6.25620186e-02 -5.02174973e-01\\n1.39221653e-01 -7.48782754e-01 -2.29106117e-02 -8.43984261e-02\\n6.82296038e-01 -2.06351340e-01 1.58082068e-01 6.03727959e-02\\n1.60576686e-01 2.37639233e-01 1.68077677e-01 -9.73077640e-02\\n-2.21897140e-01 -2.23018304e-01 -8.54433775e-02 -1.05844475e-01\\n4.97144729e-01 4.77709442e-01 -3.72599483e-01 -1.25010937e-01\\n1.26520265e-03 -3.95392537e-01 -5.39183795e-01 -3.55889976e-01\\n-1.82988077e-01 -1.65971920e-01 -5.98074198e-01 -4.89699215e-01\\n-1.69689685e-01 -5.22753857e-02 -9.69398320e-02 6.29267812e-01\\n-4.56043243e-01 -3.27973336e-01 -1.36905029e-01 -4.16652203e-01\\n3.64232719e-01 -1.40386030e-01 4.82365191e-02 -1.64482132e-01\\n-3.03558350e-01 -3.77842963e-01 1.53750509e-01 -1.40761002e-03\\n-1.05671883e-01 3.29723628e-03 1.91893131e-01 -1.58676445e-01\\n-4.67132956e-01 -4.86495197e-01 3.63789976e-01 1.12330779e-01\\n3.19108844e-01 9.38904658e-02 2.04925835e-01 -1.67214990e-01\\n3.45781952e-01 -1.01561062e-01 3.10841277e-02 -4.23262358e-01\\n1.04609415e-01 5.74371479e-02 6.00706935e-01 -3.17351311e-01\\n5.98249547e-02 8.66804086e-03 -3.55762303e-01 -1.69922203e-01\\n4.05487090e-01 -1.71734676e-01 1.45549789e-01 -2.55932659e-01\\n4.65459824e-01 -2.32990474e-01 -2.58921206e-01 8.84296596e-02\\n3.44560556e-02 5.93665957e-01 4.33094725e-02 -3.81689578e-01\\n-1.36192173e-01 3.46844792e-01 -2.33442813e-01 -1.14016002e-02\\n-2.97092140e-01 -2.78521120e-03 -2.86134452e-01 3.25320870e-01\\n1.79793350e-02 1.36247342e-02 -3.05606812e-01 -1.16075486e-01\\n-2.22237781e-01 2.78074563e-01 2.48078033e-01 1.04994647e-01\\n3.92782018e-02 -2.90544689e-01 -2.21576579e-02 1.78106561e-01\\n1.97863743e-01 3.11772466e-01 2.50887990e-01 -1.97766602e-01\\n3.65854464e-02 2.61411071e-01 -1.85083926e-01 2.09362686e-01\\n-3.16109180e-01 1.83555037e-01 -4.71541733e-01 -3.05407405e-01\\n-2.74768382e-01 -3.01650256e-01 4.81360294e-02 3.17884713e-01\\n1.84605837e-01 -1.26579300e-01 1.13542378e-01 -3.97090137e-01\\n1.75426275e-01 6.47886097e-02 3.09046596e-01 1.10835157e-01\\n1.54837798e-02 6.90805435e-01 7.56438961e-03 -1.86061949e-01\\n-8.64344686e-02 -2.18231790e-02 -3.02438736e-01 -2.13097379e-01\\n-3.77570726e-02 -4.37880397e-01 -1.36320382e-01 5.21356404e-01\\n2.12662950e-01 -1.17049828e-01 -2.23888665e-01 4.21675026e-01\\n-1.04807533e-01 -2.89238513e-01 -2.33994931e-01 1.70107074e-02\\n2.38820776e-01 1.21531785e-01 3.27122211e-01 -5.72849154e-01\\n4.25495170e-02 -3.70287299e-02 -6.70568123e-02 4.55349743e-01\\n-8.82798284e-02 4.26646434e-02 -8.30525458e-02 -2.02754885e-01\\n4.62697774e-01 -1.05037587e-02 -3.79085578e-02 1.50842577e-01\\n1.53091252e-01 -1.48680389e-01 -3.60697865e-01 2.47949865e-02\\n5.42031927e-03 -1.69533595e-01 -3.07298042e-02 2.30486184e-01\\n-3.22773159e-02 -1.26512581e-02 -5.36381721e-01 -2.77305484e-01\\n-3.79520148e-01 1.10953912e-01 4.94207703e-02 -5.74059784e-01\\n-2.40406562e-02 -5.92880771e-02 -5.31799555e-01 3.52786601e-01\\n3.99696194e-02 3.55030992e-03 2.20114842e-01 -5.40738627e-02\\n-2.07238182e-01 2.74938289e-02 1.40771806e-01 1.77916586e-01\\n-3.20066273e-01 -1.24813147e-01 -4.21409756e-02 -1.00083768e+00\\n6.17662743e-02 -5.81398010e-02 -2.27742255e-01 -7.84645230e-02\\n-5.70750758e-02 -6.73011124e-01 1.56866506e-01 -3.75677913e-01\\n-1.35025844e-01 -3.26495692e-02 -1.94318771e-01 -4.80438232e-01\\n7.32820779e-02 7.08678141e-02 -2.59072930e-01 3.58302265e-01\\n-3.15421879e-01 5.69595933e-01 -3.25746797e-02 1.39233574e-01\\n1.49428308e-01 -2.99422473e-01 2.61943817e-01 -3.16289306e-01\\n-3.12164992e-01 -7.06595257e-02 -3.26704234e-01 -3.03210281e-02\\n1.59444753e-02 -3.72253507e-01 -8.93174708e-02 2.51654629e-02\\n4.20899272e-01 1.17759682e-01 -7.91604891e-02 -1.15705572e-01\\n-7.60770589e-02 -5.72640002e-01 8.90200585e-02 -1.83142200e-01\\n-7.09273070e-02 -2.49870092e-01 1.62189975e-01 6.42067418e-02\\n1.62905350e-01 -4.44488853e-01 5.38042307e-01 -3.75340700e-01\\n-3.86815488e-01 -3.85302603e-02 9.07124206e-02 2.24585772e-01\\n3.77011776e-01 -3.36327940e-01 -1.70112059e-01 3.32089007e-01\\n1.02199934e-01 4.30839807e-02 4.24716175e-01 -1.08520336e-01\\n-2.66716599e-01 3.30352992e-01 -4.68949050e-01 1.53835192e-01\\n7.49873340e-01 2.36410528e-01 9.15419385e-02 1.41658217e-01\\n1.12863034e-01 2.10397005e-01 6.14363253e-01 1.43037084e-02\\n-2.13048026e-01 4.15264815e-01 1.66876927e-01 -5.53050637e-01\\n-6.26244396e-02 -3.43547277e-02 -8.16872567e-02 -2.88008571e-01\\n6.48481727e-01 3.29474777e-01 -4.74155843e-01 -3.31726372e-01\\n-2.24546596e-01 -1.11521989e-01 2.33570635e-02 -9.96116549e-02\\n2.03585684e-01 -7.48839453e-02 5.69579542e-01 -1.32354528e-01\\n2.23881453e-01 3.81198406e-01 -1.33831441e-01 -1.99641168e-01\\n-3.89527483e-03 2.74768919e-01 9.25894603e-02 3.73406380e-01\\n-1.43348351e-01 3.85353506e-01 -4.41071466e-02 2.42703632e-01\\n-2.15426698e-01 -9.45277512e-02 8.71850848e-02 5.71766421e-02\\n2.82602292e-02 2.87284255e-01 3.53981495e-01 3.94976556e-01\\n5.18484414e-01 3.16292405e-01 3.31387311e-01 -1.36872130e-02\\n6.21182144e-01 5.48778236e-01 3.16485077e-01 1.66908786e-01\\n2.95532458e-02 3.21119875e-02 4.21687774e-02 1.20075606e-01\\n2.93636560e-01 3.91016692e-01 -1.28857955e-01 8.20029259e-01\\n2.07150191e-01 1.95323646e-01 6.16483450e-01 -4.59836185e-01\\n-3.04637015e-01 2.23926548e-02 4.22337085e-01 -4.24316525e-01\\n-2.73490436e-02 1.27998784e-01 -1.71738088e-01 1.52612880e-01\\n-5.36341071e-01 -1.95624113e-01 -4.59611453e-02 1.60018072e-01\\n8.32308456e-02 -1.97743505e-01 -6.88581169e-02 8.20619091e-02\\n-1.60508141e-01 -1.51786119e-01 -4.34448063e-01 -1.48529962e-01\\n-3.15490246e-01 -1.94764793e-01 -9.56727378e-03 -3.66451107e-02\\n-5.82360886e-02 -3.47061098e-01 -1.68079302e-01 9.04041901e-02\\n3.78298700e-01 -2.75742620e-01 -2.15663522e-01 -5.59319109e-02\\n3.26137811e-01 1.48957595e-01 6.44164503e-01 -2.01805308e-02\\n7.21882433e-02 -2.97726005e-01 -7.25260302e-02 8.84919241e-02\\n3.17623973e-01 1.69884153e-02 -3.61636654e-02 4.03722882e-01\\n-3.20163220e-01 -2.03439623e-01 1.62111670e-01 2.62114495e-01\\n-5.25738239e-01 4.39740345e-02 5.77369109e-02 1.19100720e-01\\n3.81210968e-02 1.54335558e-01 -2.63213992e-01 -4.05454896e-02\\n-2.64186382e-01 -4.75535959e-01 2.03858420e-01 -3.36489640e-02\\n-3.60339195e-01 -1.20649017e-01 3.70815158e-01 2.83264041e-01\\n-1.06371954e-01 -5.33371754e-02 -4.30159755e-02 1.47116631e-01\\n7.66743273e-02 3.16765666e-01 -2.20451593e-01 -1.99113846e-01\\n-5.02811968e-01 3.22249591e-01 -1.61620945e-01 2.70153135e-01\\n1.02248322e-02 2.73758203e-01 1.17077924e-01 8.08801129e-02\\n3.63581091e-01 -1.06259495e-01 -1.75246626e-01 -3.59386027e-01\\n-2.13463098e-01 -2.83043563e-01 2.65992060e-02 -1.48835197e-01\\n1.77828223e-01 -4.12614316e-01 -5.42294122e-02 -1.44876689e-01\\n-3.00119191e-01 -3.97373110e-01 -7.46742338e-02 -3.69519033e-02]]',\n", + " \"LocationBaselContract typetemporary contract For our pharma client in the Basel area we are looking for a Business Analyst for clinical data- 100% Background : Development Excellence improves efficiency and effectiveness of drug development by leading cross-functional non-molecule projects. In this case the team is supporting an acceleration project in the regulatory space. You should be able to analyze data to establish options to optimize the flow of data and documents through the process. Tasks & Responsibilities: Responsible to support global project Execute process analysis as assigned by lead of process stream Reports to lead of process stream, works with process team and SME's Responsible for documenting and maintaining current and future state process documentation Work on several distinct initiatives at the same time Must Haves: 5 to 7 years of Business Analysis experience of Product Development / Clinical Data with a strong understanding of data controls and cleaning principles Experience in Data Flow Mapping Experience in BPMN 2.0 Experience and understanding of Structured Authoring Experience in Process Mapping Experience in software development and software specification design Data mining and data visualization experience Experience in Documentum Ability to work independently and deliver according agreed timelines Regulatory/Filing knowledge Analytic and able to understand complex structure Good communication skills Team spirit Fluent English Nice to Have: Lean Six Sigma certification Experience and understanding of Structured Authoring Start date : 01/11/2019 End date : 31/12/2019 Location: Basel Are you interested to work in this challenging position? Eda Kraja, Talent Acquisition Consultant, is looking forward to receiving your complete profile. Please send an e-mail to eda.kraja@coopers.ch By sending us your CV per E-Mail you are giving us your consent to the processing of your personal data according to our Data Privacy Policy.\",\n", + " '[\"Communications\", \"Timelines\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Nice (Unix Utility)\", \"Business Process Mapping\", \"Analytics\", \"Global Project Management\", \"Electronic Design Automation (EDA) Software\", \"Talent Acquisition\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Executable\", \"Process Analysis\", \"Data Visualization\", \"Lean Six Sigma\", \"Stream Processing\", \"Regulatory Filings\", \"Cross-Functional Coordination\", \"Document Processing\", \"Personalization\", \"Business Analysis\", \"Data Privacy Laws\", \"Java Data Mining\", \"Clinical Data Warehouse\", \"Receivables\", \"Software Development\", \"Language Experience Approach\", \"Process State\", \"Mapping\", \"Data Control\", \"Drug Development\", \"Data-Flow Analysis\", \"Agile Product Development\", \"Team Processes\"]',\n", + " \"['English']\"],\n", + " ['37',\n", + " 'data engineer ef education first - associate level',\n", + " 'Zürich',\n", + " 'Education Training Services',\n", + " 'www.ef.com',\n", + " '[[-7.13831335e-02 2.68712938e-01 5.48830986e-01 -4.31743711e-02\\n5.21940768e-01 -1.67066246e-01 4.45478074e-02 5.89715421e-01\\n-5.27753942e-02 -4.89541143e-01 -9.27176699e-02 -3.03665847e-01\\n-1.92509759e-02 1.33665353e-01 1.40386775e-01 3.85331780e-01\\n2.08407477e-01 1.43563733e-01 -2.08950177e-01 2.60225773e-01\\n1.23485737e-01 -1.18826583e-01 1.69246092e-01 7.96625495e-01\\n4.88331318e-01 -2.07768544e-03 -1.98247842e-02 -9.05586109e-02\\n-2.09431201e-01 -3.23135942e-01 4.59163219e-01 -5.85045330e-02\\n-1.80026218e-01 -3.68967324e-01 5.66360988e-02 -5.88107714e-03\\n-2.51680404e-01 -9.98953283e-02 -6.86669946e-02 1.97209686e-01\\n-4.87213641e-01 -2.98452914e-01 -1.55093381e-02 -4.09873612e-02\\n-3.11148912e-01 -3.80632073e-01 9.77071673e-02 3.67947854e-02\\n1.84638500e-01 1.02800563e-01 -4.32717264e-01 2.44622692e-01\\n-2.51461744e-01 -1.58534482e-01 2.56993383e-01 7.07744896e-01\\n-1.68754887e-02 -4.19182718e-01 -5.87125063e-01 -3.31701249e-01\\n1.58648759e-01 -9.95023400e-02 -1.40892677e-02 -2.77910113e-01\\n3.49790931e-01 2.48045269e-02 1.47327662e-01 2.40685910e-01\\n-6.85154259e-01 -6.83094636e-02 -2.23256782e-01 -2.86017153e-02\\n-2.40029916e-01 -1.45453392e-02 -3.41388822e-01 -9.27574709e-02\\n-1.55565903e-01 4.14132088e-01 4.27225754e-02 -1.30996769e-02\\n-1.47944003e-01 3.20776701e-01 -1.99172065e-01 4.37319696e-01\\n1.98036090e-01 2.80869067e-01 9.07239243e-02 2.61881948e-01\\n-3.86323720e-01 4.56956893e-01 1.30886525e-01 -3.28037798e-01\\n1.64370582e-01 6.92902282e-02 5.18994212e-01 -1.09715328e-01\\n1.11935712e-01 3.95040065e-02 -3.07159930e-01 3.28623056e-01\\n2.26784378e-01 -3.02808225e-01 1.18445635e-01 -9.15177464e-02\\n2.75544617e-02 -7.83294290e-02 1.22149296e-01 1.21135697e-01\\n-2.17962772e-01 3.96692365e-01 -5.71839046e-03 -2.28258803e-01\\n-9.52792987e-02 -5.46339333e-01 -7.99353141e-03 -1.18300999e-02\\n2.09644027e-02 7.82603323e-02 1.58882409e-01 1.96947828e-01\\n2.20907047e-01 -5.27852289e-02 1.53433830e-01 8.20567429e-01\\n-1.15729064e-01 2.87624858e-02 -3.65544707e-01 2.48024285e-01\\n5.38649522e-02 -3.51763725e-01 2.77504981e-01 1.74894050e-01\\n-4.04908918e-02 -1.52767166e-01 -1.86067089e-01 3.18166584e-01\\n-2.15057414e-02 -2.33161837e-01 -2.62625843e-01 2.13937521e-01\\n-5.19695990e-02 -3.47727090e-01 5.54340601e-01 8.26471671e-02\\n1.51873425e-01 -1.00771308e-01 -3.40677500e-02 -1.40321150e-01\\n-8.19023922e-02 3.80302742e-02 1.07732274e-01 -2.86382250e-02\\n-2.45429799e-01 -3.03641230e-01 -2.05550775e-01 6.61794320e-02\\n-2.77993590e-01 1.72421023e-01 -4.15852219e-02 -1.41670808e-01\\n2.59412378e-01 8.86371173e-03 -2.85456747e-01 2.97867745e-01\\n-1.53674692e-01 9.79248341e-03 -6.38451986e-03 3.80456299e-01\\n-2.63276577e-01 2.31363058e-01 -4.08444963e-02 -8.53994563e-02\\n5.64438283e-01 1.03420779e-01 1.14589408e-01 -1.02162883e-01\\n2.54717022e-01 4.62259129e-02 1.11438185e-01 1.44903317e-01\\n-7.10092902e-01 3.07486624e-01 -2.21159942e-02 -5.99461719e-02\\n1.79916009e-01 -1.00868776e-01 3.21888000e-01 -2.41313711e-01\\n6.19043072e-04 -9.98877361e-02 -2.78433561e-01 -2.65704662e-01\\n-1.21995308e-01 -8.79946649e-02 3.59849155e-01 -4.31571662e-01\\n-1.37589857e-01 2.01866716e-01 -4.76746887e-01 7.00860023e-02\\n9.44742784e-02 2.12313682e-01 1.78495303e-01 1.87152803e-01\\n-2.44722024e-01 -3.98013532e-01 1.10801257e-01 -3.03785920e-01\\n-2.17823133e-01 9.22078341e-02 -3.22812676e-01 1.95749447e-01\\n1.14573129e-01 1.41997576e-01 -1.64266780e-01 3.15525122e-02\\n-2.70967871e-01 -8.69031698e-02 1.52310625e-01 -9.12559219e-03\\n2.91625023e-01 6.99107125e-02 -3.57145488e-01 3.76401752e-01\\n-1.16416179e-01 5.27362704e-01 1.80935428e-01 -7.55879104e-01\\n4.55930114e-01 3.08919579e-01 -6.27308413e-02 -4.45452124e-01\\n5.85036278e-01 -2.09046766e-01 -4.08806838e-02 1.03890002e-01\\n-2.90055960e-01 -3.54207128e-01 2.21493304e-01 -1.06751956e-01\\n-2.14926898e-01 4.60274845e-01 4.31803800e-03 7.88214132e-02\\n1.87831357e-01 -1.56073689e-01 -9.34108868e-02 -9.47151519e-03\\n-2.05107816e-02 -1.56666800e-01 -4.77372229e-01 1.83835011e-02\\n-9.34585929e-02 -3.68961811e-01 -2.17227861e-01 -4.25705403e-01\\n-1.97244704e-01 -2.84532070e-01 -4.77311648e-02 1.88150033e-01\\n2.63245136e-01 -4.09824625e-02 9.84308198e-02 1.53723387e-02\\n-1.95845023e-01 -5.91944933e-01 -9.34703127e-02 7.79384524e-02\\n4.63563561e-01 2.23107547e-01 2.14337096e-01 -1.28215423e-03\\n1.50879368e-01 6.77174270e-01 -1.56564161e-01 -2.34799057e-01\\n1.40170127e-01 1.75392359e-01 9.98444855e-02 -1.30685970e-01\\n1.65973976e-01 2.75251418e-01 -2.91769654e-01 5.26739806e-02\\n-4.72565144e-02 -6.11450784e-02 3.45654070e-01 2.33171228e-02\\n-3.07081580e-01 -2.62908190e-01 5.55850156e-02 1.56849995e-02\\n-5.11130691e-01 -1.82921022e-01 5.78301668e-01 1.52453646e-01\\n1.23635463e-01 2.81612352e-02 8.34764242e-02 -1.02098500e-02\\n-5.94204180e-02 -1.54227093e-01 1.86254531e-01 5.52650541e-02\\n6.28160164e-02 1.71710938e-01 -5.18863536e-02 -6.17394626e-01\\n-3.13916326e+00 -1.27605498e-01 8.70268866e-02 -2.23092660e-01\\n2.21001789e-01 -1.28477111e-01 1.82656631e-01 -1.75802112e-02\\n-2.80088276e-01 2.08897870e-02 -1.42730489e-01 -9.79821905e-02\\n1.80087700e-01 1.76493883e-01 1.38014361e-01 3.01599711e-01\\n1.61845759e-01 -3.31117779e-01 -7.37131760e-02 4.71889198e-01\\n-1.47669032e-01 -6.29151940e-01 2.49845803e-01 4.69561033e-02\\n3.49155635e-01 1.54819503e-01 -4.21009243e-01 -1.89997628e-01\\n-2.28841797e-01 -1.95354596e-01 5.11328615e-02 -3.05028796e-01\\n-1.82475403e-01 2.09260032e-01 2.46516287e-01 -2.50196785e-01\\n2.25126401e-01 -4.45908338e-01 -7.02921376e-02 -5.01263738e-01\\n1.05987601e-01 -7.02100515e-01 3.90252061e-02 -9.39371586e-02\\n6.86094284e-01 -2.95523703e-01 9.63675976e-02 7.06995800e-02\\n9.67510790e-02 1.19490810e-01 9.00948569e-02 9.35866684e-02\\n-2.14881793e-01 -3.20908785e-01 -1.07006580e-01 -2.07213044e-01\\n5.64140558e-01 5.15030384e-01 -1.38298288e-01 -9.24741998e-02\\n1.29300535e-01 -2.90203065e-01 -4.80586827e-01 -3.05213213e-01\\n-1.26189753e-01 -9.50096622e-02 -7.49234438e-01 -4.99551147e-01\\n-1.14083238e-01 -1.59414485e-01 -8.46208036e-02 4.93285179e-01\\n-2.55941391e-01 -3.19047481e-01 -9.36704427e-02 -5.97325861e-01\\n3.25245112e-01 -1.13075592e-01 3.44722234e-02 -2.65649736e-01\\n-1.76887959e-01 -4.79935408e-01 1.09366938e-01 5.54132573e-02\\n-1.69700179e-02 -3.43682349e-01 8.82017165e-02 -1.47823736e-01\\n-2.26915210e-01 -6.03165329e-01 4.53798473e-01 1.25047445e-01\\n3.33470970e-01 2.02171013e-01 2.92658865e-01 -3.75372134e-02\\n3.05391252e-01 -2.64529828e-02 6.26453757e-02 -4.04180646e-01\\n9.04138684e-02 1.32592171e-02 4.54954416e-01 -1.53502911e-01\\n-1.97766829e-04 7.95999691e-02 -1.52082741e-01 -1.28754675e-01\\n3.31119746e-01 -9.92281269e-03 7.64469057e-02 -1.14746928e-01\\n2.44977131e-01 -3.09446484e-01 -2.09425151e-01 -6.05222536e-03\\n1.37601197e-01 5.31468451e-01 -3.53007801e-02 -4.13755596e-01\\n-1.79686502e-01 4.08746779e-01 -4.63801250e-02 1.18333444e-01\\n-2.23730862e-01 1.13763496e-01 -2.52912372e-01 2.69637018e-01\\n-2.78718509e-02 -2.26117522e-01 -3.15797627e-01 -1.83173761e-01\\n4.28928882e-02 3.45161378e-01 2.05633178e-01 2.18997508e-01\\n3.32254916e-02 -3.93077731e-01 -6.87589571e-02 2.38591313e-01\\n1.96190283e-01 5.15604436e-01 7.86670074e-02 -1.64035812e-01\\n1.31621305e-02 3.70633841e-01 -2.18468681e-01 2.90395141e-01\\n-2.37421796e-01 1.10710837e-01 -5.13327539e-01 -2.85359085e-01\\n-3.10449094e-01 -3.18995565e-01 1.70534283e-01 3.50027710e-01\\n1.12887070e-01 -6.62314966e-02 1.07193813e-02 -4.18144643e-01\\n2.86941379e-01 5.77094639e-03 1.50794238e-01 2.21258223e-01\\n9.35514048e-02 6.36898577e-01 1.54077202e-01 -2.36396238e-01\\n-1.74863771e-01 1.07087895e-01 -1.36547104e-01 -1.22860111e-02\\n4.81486917e-02 -4.78642851e-01 -1.21583499e-01 4.45488632e-01\\n1.36594296e-01 -1.82137117e-01 -9.58000943e-02 2.59965807e-01\\n-1.27143105e-02 -2.29163289e-01 -1.79696277e-01 6.18980527e-02\\n2.41429090e-01 1.33856624e-01 2.80803919e-01 -4.75254416e-01\\n6.59961207e-03 -7.48020336e-02 -4.07617204e-02 4.58080322e-01\\n2.26680059e-02 1.42067913e-02 -1.06166795e-01 -1.05436996e-01\\n3.73385161e-01 -1.11556262e-01 -8.60560238e-02 5.09797595e-02\\n1.02307603e-01 -2.50768691e-01 -4.23362404e-01 1.13883607e-01\\n-7.35991597e-02 -1.86456949e-01 -6.44132271e-02 1.71926588e-01\\n9.11646113e-02 1.05796441e-01 -5.75231612e-01 -2.11849734e-01\\n-2.14949906e-01 2.62124408e-02 -1.00850143e-01 -4.60794330e-01\\n-3.16246599e-02 -6.07812107e-02 -4.97432351e-01 1.97956875e-01\\n-2.18977720e-01 -4.28529158e-02 2.62351066e-01 2.73256488e-02\\n-3.28045189e-01 -5.87259717e-02 9.93866622e-02 2.53748715e-01\\n-2.47936323e-01 -2.53832012e-01 -7.88784549e-02 -9.66813445e-01\\n8.95514935e-02 4.75212336e-02 -1.68126404e-01 1.61822438e-01\\n-1.59288064e-01 -6.35768652e-01 1.31555945e-01 -3.65607709e-01\\n-2.67166346e-01 -8.22343901e-02 -1.74507141e-01 -4.73198175e-01\\n8.38323683e-02 4.99980301e-02 -2.54873902e-01 3.38549376e-01\\n-2.65259117e-01 2.65541703e-01 -1.41262308e-01 5.54067679e-02\\n2.20962912e-02 -2.62250602e-01 1.55997574e-01 -4.51870441e-01\\n-3.10551822e-01 -1.39656037e-01 -3.19957227e-01 -2.54593998e-01\\n-2.19257604e-02 -2.59118289e-01 -2.23030761e-01 9.88457352e-02\\n2.91177660e-01 8.41098651e-02 -1.15374498e-01 -1.59809843e-01\\n7.46977702e-02 -5.33654332e-01 9.09858048e-02 -1.14166833e-01\\n-5.65610602e-02 -1.65707082e-01 3.12940776e-01 1.77297257e-02\\n1.32765800e-01 -3.61309022e-01 4.66877818e-01 -3.46883267e-01\\n-3.54196429e-01 -6.42637461e-02 6.16060235e-02 -3.88318039e-02\\n3.34254920e-01 -4.38408792e-01 2.62832157e-02 3.56866837e-01\\n1.40200034e-01 1.70936808e-01 2.07970858e-01 -1.75544649e-01\\n-1.86026648e-01 3.39122087e-01 -4.99673784e-01 -1.20304562e-02\\n7.47456789e-01 7.01971054e-02 1.82522744e-01 2.13648006e-01\\n1.30306005e-01 1.94348395e-01 3.93598169e-01 6.85305074e-02\\n-2.08614364e-01 2.77723223e-01 3.75845358e-02 -5.12498677e-01\\n-2.73742285e-02 1.55909555e-02 -2.28356943e-01 -4.58390236e-01\\n6.10684872e-01 4.33689624e-01 -4.65060145e-01 -2.18137279e-01\\n-1.83053926e-01 -2.01842666e-01 1.09394066e-01 -7.99208134e-02\\n9.16358083e-02 -8.99005979e-02 3.86361003e-01 -6.32352754e-02\\n2.21016839e-01 5.28857827e-01 -1.28057778e-01 -2.32101157e-01\\n-5.34384921e-02 1.00591600e-01 -1.40818572e-02 4.34716314e-01\\n-2.29571342e-01 3.48156273e-01 5.59089631e-02 1.51447460e-01\\n-1.54795915e-01 7.38499910e-02 8.48646760e-02 6.97239907e-03\\n8.16447437e-02 1.73018903e-01 4.22664136e-01 3.75741690e-01\\n3.35442483e-01 3.80889952e-01 2.90468633e-01 4.76717688e-02\\n4.38380539e-01 4.09026742e-01 4.32644635e-01 1.39618129e-01\\n3.43482234e-02 9.28358361e-03 1.60197884e-01 6.86306506e-02\\n3.12051982e-01 2.57358909e-01 6.90622255e-02 9.46969986e-01\\n2.44098276e-01 2.37869844e-01 7.52016842e-01 -5.97580492e-01\\n-3.42552543e-01 -1.16324173e-02 4.27714765e-01 -6.05044127e-01\\n-5.65975942e-02 1.65098578e-01 -2.56243080e-01 1.50134608e-01\\n-4.60014254e-01 -3.49378169e-01 -6.31586090e-02 1.92720383e-01\\n-7.96000957e-02 -1.39946938e-01 -2.41793036e-01 1.49368078e-01\\n-6.48017228e-02 -9.06797424e-02 -5.36240458e-01 -1.89643174e-01\\n-9.18619037e-02 -1.68333188e-01 -1.63700432e-01 -1.73725769e-01\\n-2.14935139e-01 -2.39658326e-01 -9.19167418e-03 -3.50553468e-02\\n2.57400453e-01 -1.26432702e-01 7.88807347e-02 -2.17238739e-01\\n3.28027993e-01 2.07587048e-01 5.00584126e-01 -7.60600623e-03\\n1.81865185e-01 -2.44340435e-01 -2.25482523e-01 7.38184080e-02\\n2.28666022e-01 6.88113412e-03 8.66552591e-02 2.78624058e-01\\n-2.00570881e-01 -1.67664587e-01 1.27727315e-01 3.53889376e-01\\n-3.94326687e-01 4.02186811e-02 -2.54571959e-02 2.19157308e-01\\n6.57689795e-02 1.21368185e-01 -1.87020943e-01 1.50549933e-01\\n-2.47281700e-01 -3.92455041e-01 1.66152492e-01 -7.51631558e-02\\n-1.01014964e-01 5.29704690e-02 2.45454937e-01 1.69752434e-01\\n-3.15871954e-01 1.14148818e-01 -6.88738227e-02 1.78047195e-01\\n2.15988066e-02 2.87830561e-01 -2.20087335e-01 -1.90772191e-01\\n-2.95863628e-01 2.28187561e-01 -1.68326214e-01 6.93639368e-02\\n6.39170222e-03 4.02594477e-01 2.28410633e-03 -2.81913187e-02\\n5.03594518e-01 -1.87721044e-01 -2.00153977e-01 -2.87870377e-01\\n-2.18039900e-01 -1.29720658e-01 -7.76425600e-02 -1.31955951e-01\\n2.09464073e-01 -4.49019969e-01 -6.10463805e-02 -1.79197833e-01\\n-1.27301276e-01 -4.15583700e-01 8.53738487e-02 -1.39782622e-01]]',\n", + " 'EF Travel, the flights division of EF Tours, is currently looking for a Data Engineer to join our BI team in Zurich, Switzerland. We are an autonomous and dynamic BI team working on a multitude of technical solutions for EF’s flights department. We provide vital functions in the areas of technical development, business intelligence and innovation and everything we do has a direct impact on our business. We enjoy a fantastic work environment right on the doorstep to the Swiss Alps. As a Data Engineer your main focus will be to provide all the back-end development and architecture for supporting our operational and executive deliveries. We expect you to be forward thinker, innovative and ready for a position where you will get to make an impact from day one. The role Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Requirements Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English About EF Since 1965, we have helped millions of people transform their lives by opening the world through education. Today we are the world’s largest private education company - offering every imaginable way to learn a language, travel abroad, experience another culture, or earn an academic degree. We offer competitive salaries and a multicultural working environment. The position is situated in Zurich, Switzerland and you will be working with people from all over the world. What’s it like to work here? https://vimeo.com/111638911 and https://www.youtube.com/watch?v=fGlnMgNtivw',\n", + " '[\"Self-Motivation\", \"Imagination\", \"Problem Solving\", \"Operations\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Computer Science\", \"Analytics\", \"Data Engineering\", \"Data Warehousing\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"AWS Directory Service\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Business Intelligence\", \"Cloud Services\", \"Dimensional Modeling\", \"Library For WWW In Perl\", \"SQL Server Integration Services (SSIS)\", \"Big Data\", \"End Systems\", \"Adapter Scripting Language\", \"Front End (Software Engineering)\", \"Technical Solution Design\", \"Back End (Software Engineering)\", \"Vimeo\", \"Business Development\"]',\n", + " \"['English', 'Estonian', 'Quechua', 'Thai', 'Kyrgyz']\"],\n", + " ['78',\n", + " 'data science support (m/f/d) 80%',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-2.10731536e-01 3.69907647e-01 5.37105322e-01 -8.32841396e-02\\n4.53694373e-01 -1.47729725e-01 8.38730298e-03 3.66918534e-01\\n-1.57625392e-01 -3.26307744e-01 -1.58176333e-01 -2.35379845e-01\\n-2.38481447e-01 2.98396703e-02 2.55294055e-01 4.43618059e-01\\n3.02331537e-01 1.41056091e-01 -2.33044013e-01 3.40792924e-01\\n1.05844527e-01 -4.63881083e-02 4.21047024e-02 5.62856317e-01\\n3.92587990e-01 -4.81727114e-03 -4.79921885e-02 2.79685240e-02\\n-3.64072233e-01 -2.69238085e-01 3.66391331e-01 3.59552540e-02\\n-1.34150833e-01 -2.66587615e-01 1.03522204e-01 6.95136935e-02\\n-2.00103402e-01 7.58919716e-02 -5.40180467e-02 1.23594776e-01\\n-5.28827906e-01 -2.32451200e-01 2.22892419e-01 6.08282946e-02\\n-3.06051791e-01 -3.61976653e-01 2.70672292e-01 -1.21745132e-01\\n1.05021968e-01 3.80751602e-02 -5.13953090e-01 3.23753357e-01\\n-3.42199296e-01 -2.47083098e-01 3.48262936e-01 6.11278951e-01\\n9.53011885e-02 -6.74879730e-01 -4.09028232e-01 -3.56984079e-01\\n1.20385014e-01 -7.89638385e-02 4.85966466e-02 -2.45383576e-01\\n3.89639914e-01 1.41319744e-02 -4.61677052e-02 2.58769363e-01\\n-7.97479451e-01 -1.70608252e-01 -2.26641998e-01 -4.86740191e-03\\n-3.62574607e-01 1.64110716e-02 -2.51666874e-01 -5.32444119e-02\\n-2.19522864e-02 4.17514384e-01 -9.81100276e-02 1.05325781e-01\\n-8.26765671e-02 3.55940074e-01 -4.79766764e-02 2.58681506e-01\\n3.57513756e-01 1.48636431e-01 2.21547097e-01 4.55340981e-01\\n-3.70224148e-01 3.42689931e-01 2.75950491e-01 -2.66333252e-01\\n1.65974915e-01 8.30710828e-02 5.42722106e-01 2.02049866e-01\\n-1.75791152e-04 1.33832678e-01 -2.63876855e-01 2.21400827e-01\\n1.66453093e-01 -2.34147057e-01 -3.30838151e-02 -6.34793565e-02\\n-1.27191529e-01 -2.67711636e-02 3.20337676e-02 3.54278088e-01\\n-2.83879459e-01 4.84825373e-01 2.16134235e-01 -2.29279399e-01\\n9.40535497e-03 -5.89384675e-01 -2.06433266e-01 1.01783410e-01\\n-2.25730333e-03 2.10527003e-01 2.31992200e-01 1.74135640e-01\\n3.19889098e-01 -3.15156579e-02 2.13990450e-01 8.40982378e-01\\n4.22333144e-02 9.80159268e-02 -1.79195553e-01 3.17088604e-01\\n1.96465924e-01 -2.52695858e-01 9.05093029e-02 2.92772293e-01\\n1.11302800e-01 -3.07344832e-02 -2.13593394e-01 3.53802264e-01\\n-1.20423749e-01 -2.31578842e-01 -3.34817171e-01 1.01689406e-01\\n-1.87317386e-01 -4.29675370e-01 4.25123721e-01 4.16812375e-02\\n1.92523807e-01 3.16351168e-02 -2.10788380e-02 -3.32988910e-02\\n-1.02190524e-01 2.74721473e-01 2.06413623e-02 1.67150736e-01\\n-2.31359556e-01 -1.98495328e-01 -3.33338976e-01 1.55785426e-01\\n-1.54996380e-01 4.85239401e-02 -1.82880208e-01 -1.52975649e-01\\n4.09928620e-01 1.43778712e-01 -4.56775039e-01 2.95035273e-01\\n-8.29395130e-02 -5.84062114e-02 -1.31028056e-01 3.09784204e-01\\n1.79350760e-03 1.59098104e-01 -3.69025879e-02 -9.39987674e-02\\n6.04301214e-01 1.63868502e-01 9.18486267e-02 -5.02227321e-02\\n4.48493987e-01 -1.02813385e-01 2.58800775e-01 7.20917583e-02\\n-7.56281018e-01 2.76264727e-01 -1.70021988e-02 1.36750611e-02\\n5.17535061e-02 -9.41074193e-02 3.79714787e-01 -4.48161483e-01\\n-3.15036043e-04 -1.80644721e-01 -4.23877507e-01 -3.36619824e-01\\n-3.10977668e-01 -6.40199557e-02 4.66459930e-01 -3.72265697e-01\\n-1.44634172e-01 1.32286146e-01 -5.18678129e-01 -1.01235799e-01\\n3.18453759e-01 2.02263758e-01 1.35310516e-01 1.27309144e-01\\n-8.50867406e-02 -6.43747032e-01 8.50918069e-02 -5.18019795e-01\\n-4.41043556e-01 1.74783766e-01 -3.35100293e-01 2.37536967e-01\\n1.96872242e-02 -2.43050847e-02 -1.49733007e-01 3.46708335e-02\\n-3.01479399e-01 -5.76477572e-02 5.21038249e-02 1.37543768e-01\\n2.39318788e-01 -5.09910621e-02 -4.48510081e-01 4.46121961e-01\\n-3.15744102e-01 5.17616034e-01 1.74525827e-01 -9.39459682e-01\\n6.35799408e-01 2.25852892e-01 6.60003871e-02 -3.09500933e-01\\n5.45736969e-01 -3.38004231e-01 -6.53736964e-02 1.70085728e-01\\n-3.41892570e-01 -3.98401648e-01 2.42864385e-01 -1.54370323e-01\\n-3.47090453e-01 5.43048084e-01 1.28654554e-01 -5.45445383e-02\\n2.30093777e-01 -1.89999372e-01 -1.07986249e-01 1.61216408e-01\\n-4.12692949e-02 -1.26108602e-01 -4.68378842e-01 -2.25561322e-03\\n1.77530814e-02 -5.04604638e-01 -2.01132506e-01 -3.45662057e-01\\n-2.27212965e-01 -4.87672180e-01 -3.04211050e-01 3.64536822e-01\\n1.14621542e-01 9.87400115e-02 3.52037661e-02 1.10753790e-01\\n-7.49558136e-02 -6.44169867e-01 5.61154410e-02 6.19635079e-03\\n3.60969901e-01 2.74347961e-01 9.77665707e-02 -8.57716873e-02\\n-7.96219483e-02 6.21131063e-01 -2.42698669e-01 -2.47656479e-01\\n7.22179785e-02 8.03811327e-02 -4.18683030e-02 -1.60559595e-01\\n1.29437938e-01 3.19870889e-01 -1.90356866e-01 1.25097275e-01\\n-1.40182316e-01 -6.52400702e-02 3.25557083e-01 -9.52481106e-02\\n-3.21648359e-01 -2.26222768e-01 -7.16273189e-02 2.45786533e-01\\n-6.41996443e-01 -2.53398776e-01 5.57601035e-01 2.06552386e-01\\n1.78267136e-01 1.85761213e-01 3.36458981e-01 -1.68710142e-01\\n-1.93185434e-01 -2.64896035e-01 2.64908403e-01 2.03485817e-01\\n9.00784805e-02 1.47578567e-01 -1.86626181e-01 -7.16610551e-01\\n-3.04160571e+00 -1.91848218e-01 2.20283180e-01 -2.43747458e-01\\n2.49602973e-01 -4.69423123e-02 9.96891558e-02 -8.37535411e-02\\n-2.02624813e-01 1.85490195e-02 -2.27678329e-01 -1.28193051e-01\\n8.46198350e-02 3.12644690e-01 2.30448581e-02 1.09214991e-01\\n2.21879795e-01 -2.41276398e-01 -4.87298183e-02 2.50997812e-01\\n-5.79752848e-02 -6.78818941e-01 1.47857651e-01 -9.10229981e-02\\n2.70248204e-01 2.87184983e-01 -3.47423702e-01 -1.15189284e-01\\n-1.77563325e-01 -2.33028993e-01 -5.27828047e-03 -2.18604803e-01\\n-1.26371324e-01 2.43191153e-01 8.17344487e-02 2.07444187e-02\\n1.09996334e-01 -2.64710516e-01 -3.94320190e-02 -4.73364085e-01\\n1.90876693e-01 -7.61241436e-01 -6.93584606e-03 -3.00038189e-01\\n5.65630257e-01 -3.78603607e-01 7.37286657e-02 8.87229964e-02\\n2.03951299e-01 1.90445587e-01 -1.29225114e-02 -2.91848276e-02\\n-3.36547554e-01 -1.90935165e-01 -2.47057453e-02 -1.74102336e-01\\n5.69267035e-01 5.52759528e-01 -2.82387435e-01 -1.20747909e-02\\n2.30162367e-01 -4.22629595e-01 -4.79909986e-01 -3.93579215e-01\\n-1.81753576e-01 -2.34211892e-01 -6.72134399e-01 -4.21625942e-01\\n-1.07680894e-01 -2.36486625e-02 -1.30403176e-01 6.27168238e-01\\n-2.63569385e-01 -4.22517121e-01 7.73259476e-02 -5.42714596e-01\\n6.60096705e-02 -1.60290018e-01 3.80783305e-02 -2.83471107e-01\\n-2.12179765e-01 -5.04125297e-01 1.34427428e-01 2.13479735e-02\\n-2.59686083e-01 -7.66295642e-02 6.57235384e-02 -1.64675400e-01\\n-3.07906032e-01 -4.45219874e-01 4.71308798e-01 9.29133445e-02\\n4.22378957e-01 1.41857862e-01 2.24425539e-01 5.19355014e-02\\n3.46008539e-01 -1.35627702e-01 1.39423057e-01 -4.64231133e-01\\n-2.32318249e-02 3.39566283e-02 6.78254366e-01 -1.66035190e-01\\n3.68114002e-02 1.84258372e-01 -2.93843061e-01 -1.76310286e-01\\n4.49197143e-01 5.42719327e-02 7.52034485e-02 -2.74298429e-01\\n4.07258928e-01 -3.58387351e-01 -2.90008128e-01 1.65129423e-01\\n7.86686316e-02 8.04310918e-01 2.43452508e-02 -4.00982440e-01\\n-3.22587609e-01 5.00058353e-01 -1.70635581e-01 -1.00941248e-01\\n-2.18243495e-01 9.68409479e-02 -7.13226050e-02 2.53408551e-01\\n1.28468573e-01 -1.32461771e-01 -2.81297266e-01 -9.55562368e-02\\n-5.88952862e-02 1.64605901e-01 2.40022659e-01 1.17620990e-01\\n5.44424057e-02 -2.58559525e-01 3.75962071e-02 9.65941772e-02\\n2.03767017e-01 3.00640851e-01 4.79891486e-02 -2.63623118e-01\\n-1.25996962e-01 3.49057406e-01 -1.26180321e-01 2.85049856e-01\\n-1.07221283e-01 7.77212754e-02 -4.42887455e-01 -2.15981871e-01\\n-2.64151275e-01 -3.44455302e-01 -1.42485797e-02 3.19568813e-01\\n2.03205854e-01 -2.58313771e-03 8.56234401e-04 -4.99171108e-01\\n3.69079143e-01 6.00580201e-02 2.40228683e-01 1.47707209e-01\\n3.11386529e-02 4.57619697e-01 1.67504977e-02 -4.82043885e-02\\n-1.56614050e-01 6.45890087e-02 -2.26106972e-01 -1.42165214e-01\\n1.26978621e-01 -3.98276120e-01 -1.34162083e-01 4.79718417e-01\\n7.48340338e-02 -2.24436224e-01 -2.46876180e-01 2.53256112e-01\\n1.12354472e-01 -4.18088794e-01 -1.43996909e-01 -1.16118439e-01\\n1.80104852e-01 -7.71564245e-03 3.22382241e-01 -4.10689503e-01\\n4.73950878e-02 -7.78159574e-02 -8.01018625e-02 5.06661594e-01\\n1.40267909e-01 -6.53904155e-02 -1.13426521e-01 -1.00845240e-01\\n4.14705426e-01 -3.11442595e-02 -5.09249195e-02 -6.01374470e-02\\n1.09685875e-01 -1.55536339e-01 -4.71183330e-01 -3.14764641e-02\\n-1.79735139e-01 -1.81970939e-01 2.47871261e-02 -5.92177212e-02\\n1.61049157e-01 7.15048537e-02 -3.25409830e-01 -2.41035104e-01\\n-3.53654683e-01 -9.79515016e-02 -2.78428663e-02 -4.18056190e-01\\n-7.17561617e-02 7.88506269e-02 -6.23365343e-01 1.66162580e-01\\n-3.72024417e-01 9.72304679e-03 1.27361983e-01 1.06142581e-01\\n-4.63612705e-01 -7.47699961e-02 6.00101687e-02 8.39792117e-02\\n-4.04772997e-01 -2.63746500e-01 6.20788112e-02 -8.82543206e-01\\n1.13375835e-01 8.09631404e-03 -1.17724486e-01 9.11231562e-02\\n-6.74665049e-02 -7.57364333e-01 1.87944233e-01 -3.06501180e-01\\n-9.60846618e-02 6.81713745e-02 -2.36296549e-01 -4.31807041e-01\\n1.54325068e-01 -1.51437119e-01 -3.24556172e-01 3.25155675e-01\\n-4.66710329e-01 2.93473542e-01 5.08545376e-02 1.39016703e-01\\n-1.82869360e-02 -2.73568720e-01 9.91006494e-02 -2.60581940e-01\\n-5.66838145e-01 -8.38299394e-02 -3.70923787e-01 -2.70012081e-01\\n6.23657443e-02 -2.22421110e-01 -1.69736937e-01 5.42394072e-02\\n3.77027720e-01 7.91343823e-02 -1.16932280e-01 -6.00278601e-02\\n7.70480111e-02 -3.59642178e-01 -7.37779513e-02 -7.50138685e-02\\n4.24185693e-02 -6.26866072e-02 1.67623848e-01 -6.76227510e-02\\n2.14640558e-01 -3.22585434e-01 5.53006947e-01 -3.04440349e-01\\n-3.90158355e-01 7.15670437e-02 1.36208147e-01 2.66614128e-02\\n2.43216410e-01 -5.51566362e-01 6.44580880e-03 3.18377525e-01\\n-2.62574442e-02 2.46096812e-02 2.21603945e-01 5.41184656e-02\\n-1.66352704e-01 1.80906594e-01 -4.50848997e-01 2.89608892e-02\\n9.16644335e-01 2.13164806e-01 1.00765549e-01 2.21899688e-01\\n-4.68453253e-03 3.57225716e-01 6.30633533e-01 -8.35323483e-02\\n-8.77875835e-02 3.00511867e-01 3.09560765e-02 -6.27168596e-01\\n-1.20123118e-01 1.93521176e-02 -2.52246201e-01 -3.12236071e-01\\n7.15249062e-01 4.20263350e-01 -3.16046119e-01 -2.66715616e-01\\n-9.70485583e-02 -2.16722295e-01 1.43152848e-01 -9.62061286e-02\\n1.53920442e-01 -1.70903847e-01 5.34658790e-01 -5.13083562e-02\\n2.63260216e-01 5.43530464e-01 -2.89680779e-01 -3.15014750e-01\\n-1.32023379e-01 8.76243263e-02 2.58956775e-02 3.52872372e-01\\n-1.76191330e-01 9.32432115e-02 3.79043557e-02 3.62920798e-02\\n-1.45068914e-01 1.68738782e-01 7.30930492e-02 9.16383043e-02\\n3.00069243e-01 1.36907056e-01 2.40522832e-01 4.28248256e-01\\n2.56061375e-01 4.94731307e-01 2.87909806e-01 8.41541961e-02\\n4.59914416e-01 5.29126585e-01 3.98894638e-01 1.50522739e-01\\n-9.35459882e-03 9.87020284e-02 9.05465558e-02 4.84659933e-02\\n4.86199409e-01 2.45884418e-01 2.55503476e-01 8.98801684e-01\\n2.40435839e-01 3.93020213e-01 7.24668622e-01 -5.91465414e-01\\n-3.86379510e-01 8.73027816e-02 4.67809558e-01 -3.04379612e-01\\n-8.79099444e-02 8.69089887e-02 -1.27297148e-01 2.40333095e-01\\n-5.35327196e-01 -1.26873240e-01 -6.66621979e-03 -4.57532220e-02\\n4.01203558e-02 -5.37147373e-02 -2.37362385e-01 -9.71688554e-02\\n-2.82674223e-01 -1.28103331e-01 -3.33885342e-01 -1.44143492e-01\\n-2.04035088e-01 -1.15397640e-01 -2.27123648e-02 -2.15493590e-01\\n-9.80089605e-02 -4.24606293e-01 -1.93304464e-01 -6.99681602e-03\\n2.54074991e-01 -1.17220215e-01 -1.17312118e-01 -1.75538078e-01\\n1.40722409e-01 2.83962280e-01 6.06930852e-01 -4.92974222e-02\\n1.58067986e-01 -1.79238141e-01 -2.44933218e-01 1.17063165e-01\\n1.09505802e-01 -2.61869393e-02 1.52552158e-01 5.52039444e-01\\n-2.80846357e-01 -1.25043973e-01 8.24225470e-02 4.18685585e-01\\n-4.79618251e-01 -5.28519116e-02 -9.48673114e-02 2.07414091e-01\\n2.17076708e-02 1.94035232e-01 -2.88582593e-01 1.38456881e-01\\n-2.30339989e-01 -6.26011491e-01 3.91725063e-01 -4.80942726e-02\\n-1.98783219e-01 9.38457623e-02 3.44199896e-01 2.01732203e-01\\n-2.10025847e-01 -7.50362799e-02 -1.70447174e-02 3.25209022e-01\\n9.07730833e-02 4.24107790e-01 -2.89709508e-01 -1.78466812e-01\\n-2.09643975e-01 2.59959042e-01 -1.39734179e-01 3.53505984e-02\\n-1.43826276e-01 4.34967756e-01 2.37054244e-01 4.38335016e-02\\n3.85028005e-01 -3.62493470e-02 -1.86462611e-01 -1.50911972e-01\\n-2.36064956e-01 -3.10038149e-01 4.92999479e-02 -4.00034413e-02\\n1.33595288e-01 -3.83559704e-01 -8.59049633e-02 -1.85931802e-01\\n-9.34243575e-02 -4.32149053e-01 -1.32399768e-01 1.03199765e-01]]',\n", + " 'For our client, an international pharmaceutical company, we are in search for a Programmer (Data Science Support). What the company offers you: You will support scientists by building and deploying modeling and simulation user-friendly applications through digital tools An international environment Large and diverse infrastructure Competitive salary Contract till 31.07.2020 with a possibility of extension Your responsibilities: Using programming expertise to develop tailor-made software solutions based on various programming languages (e.g. JavaScript, C#, php, python etc.) Supporting and being responsible for defined system administration activities on an allocated/defined system or environment Supporting operational requirements of defined areas of the business e.g. troubleshooting and migration to new versions Writing all required documentation (e.g. user guides, etc.) Tracking, troubleshooting and resolving systems related issues Applying and writing appropriate testing procedures and scripts Your profile: Being proficient in one or more programming language / environment, including HTML, CSS, JavaScript, .NET (C#), SQL, Python, vba macros (MS Office) Being familiar with Frameworks/applications: Svelte, React, Git (gitbucket), VS code Strong interpersonal communication skills and ability to manage in a dynamic, ever-changing working environment Fluent English (oral and written) Welcome to nemensis! We look forward to getting to know you!',\n", + " '[\"Writing\", \"Infrastructure\", \"Friendliness\", \"Interpersonal Communications\", \"Management\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"Tooling\", \"KM Programming Language\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Integrated Language Environments\", \"Activism\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Tracking (Commercial Airline Flight)\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Web Application Frameworks\", \"React.js\", \"Data Science\", \"Project-Based Solutions\", \"C# (Programming Language)\", \"Digitization\", \"JavaScript (Programming Language)\", \"User Guide\", \"Simulations\", \"Pharmaceuticals\", \"Macros\", \"Svelte (Software)\", \"System Administration\", \"Scripting\", \"Git Flow\", \"SQL (Programming Language)\", \"E-Business\"]',\n", + " \"['English', 'Bislama', 'Punjabi']\"],\n", + " ['118',\n", + " 'big data engineer',\n", + " 'Bern',\n", + " 'IT Services',\n", + " 'www.swisscom.ch',\n", + " '[[-2.37515822e-01 3.27821583e-01 4.20995831e-01 -5.08009791e-02\\n3.81632239e-01 -2.43010327e-01 1.08985091e-02 3.85306656e-01\\n4.62909192e-02 -2.13611737e-01 -6.37277514e-02 -2.93727368e-01\\n-2.90873051e-01 1.49489000e-01 1.54372424e-01 4.23432171e-01\\n2.22828403e-01 9.23545882e-02 -2.44008526e-01 4.17492867e-01\\n6.86373413e-02 7.27814510e-02 -1.34627029e-01 6.21603370e-01\\n4.03350651e-01 -5.32095619e-02 -1.65685907e-01 -1.05307475e-01\\n-3.72956097e-01 -1.61685959e-01 4.54196304e-01 1.26438990e-01\\n-2.08362356e-01 -4.05997336e-01 5.26735373e-02 1.15206756e-01\\n-1.37977004e-01 -5.89941218e-02 -6.01788200e-02 1.78162575e-01\\n-5.23175359e-01 -3.62893403e-01 5.38302846e-02 1.49870679e-01\\n-1.85276926e-01 -2.17958227e-01 2.51104772e-01 6.37179315e-02\\n-5.45897186e-02 3.93017828e-02 -6.58880770e-01 2.48588890e-01\\n-1.46918803e-01 -2.66802430e-01 2.58605987e-01 5.46580195e-01\\n1.00834295e-01 -4.95901167e-01 -4.50792015e-01 -4.47990000e-01\\n9.66743007e-02 -7.44877607e-02 2.49192845e-02 -3.64111900e-01\\n2.97390580e-01 1.79963920e-03 2.74405652e-03 3.82426083e-01\\n-7.95863688e-01 -1.82803214e-01 -1.18297070e-01 -4.55285832e-02\\n-3.95875394e-01 6.00838959e-02 -2.22109929e-01 -6.15972094e-02\\n-7.32400045e-02 3.25842917e-01 -4.43595536e-02 8.52121636e-02\\n-1.82827339e-01 4.30580705e-01 -6.82247505e-02 3.11964750e-01\\n3.28048706e-01 1.45572141e-01 6.88224211e-02 3.51250947e-01\\n-3.97454917e-01 3.68488133e-01 5.81115559e-02 -2.21373856e-01\\n3.01258802e-01 1.55241787e-01 5.46696544e-01 4.97956723e-02\\n1.59619376e-01 1.90129012e-01 -2.52596438e-01 2.39958867e-01\\n2.17011750e-01 -3.80977780e-01 1.69381872e-01 -7.13851899e-02\\n-1.01593412e-01 -1.46940099e-02 7.03252554e-02 2.09431559e-01\\n-2.26294518e-01 3.89722824e-01 3.08652908e-01 -1.37512237e-01\\n-8.48512277e-02 -5.51381230e-01 -4.79210503e-02 -3.53688933e-03\\n1.14034355e-01 1.02352053e-01 2.18395367e-01 9.08071622e-02\\n2.34005958e-01 5.63564673e-02 1.49540439e-01 7.42017686e-01\\n-1.13778375e-01 1.56902015e-01 -1.26103252e-01 3.56538028e-01\\n2.28007525e-01 -3.20565253e-01 2.98876971e-01 2.50431150e-01\\n2.16553420e-01 -1.06242828e-01 -3.46848845e-01 4.08227354e-01\\n-1.77643582e-01 -1.72903165e-01 -3.70090693e-01 1.04895666e-01\\n-1.09037980e-01 -4.84822035e-01 5.25121629e-01 2.16166899e-01\\n2.57058501e-01 -5.52205816e-02 -3.23333666e-02 -4.57535759e-02\\n-6.25421703e-02 3.69237304e-01 1.90292429e-02 3.24873000e-01\\n-2.93915391e-01 -2.72201121e-01 -1.73601836e-01 2.63056755e-01\\n-3.95872980e-01 1.28986880e-01 6.14040755e-02 -1.66189373e-01\\n3.25342000e-01 5.82416877e-02 -3.56184751e-01 1.54371709e-01\\n-1.18086323e-01 -2.32663214e-01 -3.22058201e-02 3.60680044e-01\\n-2.31387749e-01 3.06946486e-01 -3.56702246e-02 -1.51209891e-01\\n6.02022171e-01 1.46288365e-01 2.05208033e-01 -2.49165483e-02\\n2.82504469e-01 -7.87910372e-02 3.26676905e-01 1.51668772e-01\\n-7.68049181e-01 2.49433547e-01 -2.53462233e-02 -1.66625425e-01\\n1.24892563e-01 5.32665476e-02 3.40551257e-01 -3.29799622e-01\\n2.67900657e-02 -2.14845866e-01 -4.61766034e-01 -3.25357676e-01\\n-4.77361143e-01 5.93500920e-02 3.54495585e-01 -3.46998155e-01\\n-1.10501237e-01 1.25149235e-01 -5.64486682e-01 -1.77245751e-01\\n1.02879219e-01 4.64399420e-02 2.46496964e-02 -2.03646049e-02\\n-9.19718817e-02 -7.03052938e-01 -3.34287062e-02 -4.16015655e-01\\n-4.65385556e-01 7.24769458e-02 -3.27007592e-01 2.22653449e-01\\n-7.72005618e-02 7.73477331e-02 -1.47160992e-01 2.13181123e-01\\n-2.71734953e-01 -2.31534243e-02 1.96659416e-01 5.42957410e-02\\n2.49667451e-01 -1.19377062e-01 -3.94999832e-01 4.26858693e-01\\n-1.44757509e-01 7.27348208e-01 2.79707074e-01 -7.96696544e-01\\n6.29517972e-01 3.10309142e-01 1.01566620e-01 -3.65626991e-01\\n4.98687625e-01 -3.61605316e-01 -1.81186363e-01 1.00357167e-01\\n-3.34465593e-01 -2.76126832e-01 2.87010938e-01 -2.19946787e-01\\n-2.51093447e-01 6.54046118e-01 2.62399912e-01 1.50524853e-02\\n3.76619875e-01 -2.98978597e-01 -6.43304437e-02 4.27519158e-03\\n-1.67029381e-01 -2.43043199e-01 -4.14825588e-01 8.46408084e-02\\n-3.73417735e-02 -4.83296603e-01 -2.03598022e-01 -1.41347036e-01\\n-1.72631428e-01 -3.21708411e-01 -1.94380894e-01 4.81264651e-01\\n2.07750946e-01 7.37131312e-02 1.53929146e-03 5.94995916e-02\\n-9.05224904e-02 -6.47354186e-01 6.45858124e-02 8.31868947e-02\\n4.23580080e-01 2.09187537e-01 7.42333010e-02 -7.47496560e-02\\n8.38232972e-03 5.72409749e-01 -4.14211333e-01 -4.24342632e-01\\n1.05215654e-01 1.45050123e-01 -4.06878479e-02 -1.92919403e-01\\n5.49387373e-02 4.35983390e-01 -3.70846808e-01 3.39646302e-02\\n-9.34038609e-02 -1.08434811e-01 3.09535652e-01 -9.05699059e-02\\n-2.48197347e-01 -2.48376191e-01 -2.17290260e-02 3.10240209e-01\\n-4.62658226e-01 -2.61926025e-01 4.91151154e-01 3.01259309e-01\\n1.83516845e-01 1.24158345e-01 3.01032305e-01 -2.04022944e-01\\n-3.01513761e-01 -3.89198422e-01 1.45998999e-01 2.12264821e-01\\n5.83008043e-02 6.63826466e-02 -2.58908160e-02 -5.81174314e-01\\n-2.79377222e+00 -1.76822752e-01 2.39893243e-01 -1.79324895e-01\\n1.60964921e-01 -7.37733766e-02 -8.86297747e-02 -9.10789073e-02\\n-3.29460412e-01 5.41804694e-02 -9.45919082e-02 -1.69867933e-01\\n2.84727141e-02 3.76368999e-01 1.87100455e-01 1.45676136e-01\\n5.86669594e-02 -2.01920137e-01 -1.15719922e-01 3.79000127e-01\\n-1.45066246e-01 -6.23265803e-01 1.80462509e-01 -1.01669664e-02\\n2.73825705e-01 2.55329818e-01 -2.70087749e-01 -1.12823449e-01\\n-1.24110334e-01 -1.83944881e-01 2.67332792e-02 -2.75999457e-01\\n-1.62102491e-01 3.75868589e-01 7.09924623e-02 3.36317271e-02\\n4.55581136e-02 -3.30238223e-01 -2.08968133e-01 -4.38419372e-01\\n1.75034683e-02 -5.40408731e-01 7.59009738e-04 -3.15894097e-01\\n7.24893153e-01 -3.06543678e-01 1.72562927e-01 6.01168489e-03\\n2.36272767e-01 1.21930875e-01 -4.63882387e-02 7.82464370e-02\\n-2.77718574e-01 -2.71854967e-01 -8.91297683e-02 -2.46021017e-01\\n5.37968040e-01 4.89737034e-01 -1.31939694e-01 -1.55898780e-01\\n2.71017790e-01 -2.53752440e-01 -2.67024010e-01 -4.25180405e-01\\n-8.61372128e-02 -3.14467102e-01 -6.23471200e-01 -3.91440630e-01\\n-7.58717135e-02 -1.15340158e-01 -1.08392075e-01 7.14646280e-01\\n-4.70339477e-01 -2.74625629e-01 5.59775382e-02 -7.52178788e-01\\n1.99839786e-01 -2.26295933e-01 -1.76110007e-02 -1.53353751e-01\\n-2.30650783e-01 -6.04556859e-01 9.50940847e-02 -6.54529557e-02\\n-2.25660041e-01 -2.90835887e-01 -3.78598385e-02 -1.69121906e-01\\n-2.46496156e-01 -5.17673731e-01 4.20730084e-01 1.70003071e-01\\n3.17611516e-01 1.06449224e-01 3.04608434e-01 -2.62698866e-02\\n3.63096088e-01 -1.08289793e-01 1.99334309e-01 -4.14311022e-01\\n1.56713322e-01 1.64450239e-02 5.50319016e-01 -2.73518473e-01\\n6.07944373e-03 2.24829823e-01 -2.80311227e-01 -4.80230041e-02\\n3.68224829e-01 1.29964858e-01 9.04914748e-04 -1.17033064e-01\\n3.79825354e-01 -4.81033444e-01 -1.74813658e-01 2.78963774e-01\\n1.12928025e-01 6.66270137e-01 -4.16088896e-03 -3.80156428e-01\\n-2.58522898e-01 5.22660136e-01 -1.27737686e-01 -1.26743004e-01\\n-1.27574503e-01 1.09952055e-01 -9.60498825e-02 2.11966008e-01\\n1.56671721e-02 -1.46194413e-01 -3.11321765e-01 -1.30641147e-01\\n-1.15131244e-01 2.33409151e-01 2.26387009e-01 2.64064576e-02\\n-6.71111140e-03 -2.49030218e-01 -3.58261280e-02 1.48786977e-01\\n2.84321696e-01 3.64353508e-01 -9.31981485e-03 -1.85774371e-01\\n-1.39272928e-01 3.77890468e-01 -1.24807194e-01 1.92038760e-01\\n-2.53800958e-01 1.01092912e-01 -5.92636585e-01 -2.32990146e-01\\n-1.66735455e-01 -3.03618222e-01 2.75048554e-01 2.28982285e-01\\n1.98361069e-01 2.13006996e-02 2.62222476e-02 -5.75723648e-01\\n3.68358940e-01 1.89023688e-01 1.34584740e-01 1.83677450e-02\\n-6.63080141e-02 4.67741281e-01 -1.80375148e-02 -3.39669804e-03\\n-5.88626303e-02 -3.83439474e-02 -2.53341585e-01 -2.78196245e-01\\n1.78709745e-01 -4.55920666e-01 -2.15738043e-01 4.56094980e-01\\n9.55064893e-02 -3.75245750e-01 -3.85136962e-01 1.82245746e-01\\n1.45845264e-01 -2.03144863e-01 -1.91142753e-01 -8.42086002e-02\\n1.98972821e-01 1.48447111e-01 2.37318754e-01 -3.49746972e-01\\n-1.26460820e-01 9.71029252e-02 -1.03444427e-01 3.95305932e-01\\n1.27991945e-01 4.26144898e-02 -2.62969732e-01 -2.00599611e-01\\n4.25111562e-01 -2.33250529e-01 -7.28306323e-02 -8.29897299e-02\\n2.13285133e-01 -1.71023205e-01 -5.17676353e-01 9.73732620e-02\\n-4.00352068e-02 -2.96395421e-01 8.91325902e-03 3.45707424e-02\\n1.43759847e-01 7.43674710e-02 -4.71034706e-01 -2.44405299e-01\\n-3.25612545e-01 -1.82188481e-01 1.19583771e-01 -2.54178554e-01\\n7.61724263e-02 -5.45064025e-02 -5.56881070e-01 1.68059275e-01\\n-3.64581048e-01 -5.41684628e-02 9.38367397e-02 1.24190144e-01\\n-4.61285770e-01 -4.15245853e-02 6.67510182e-03 2.00377151e-01\\n-4.31792527e-01 -4.43958908e-01 8.09719786e-02 -8.55524063e-01\\n1.03325665e-01 3.59382667e-02 -7.26571530e-02 6.39490560e-02\\n-1.01134986e-01 -7.12303579e-01 8.97002518e-02 -3.97122651e-01\\n-3.24196778e-02 7.16675594e-02 -3.20040494e-01 -2.10587353e-01\\n2.69071251e-01 -2.79395640e-01 -4.04485881e-01 5.09820163e-01\\n-4.73025829e-01 1.71773225e-01 -6.10312866e-03 8.94835293e-02\\n-1.57899957e-03 -1.63599491e-01 1.95006505e-01 -2.98076600e-01\\n-3.65664452e-01 -1.77680150e-01 -3.30997795e-01 -3.13161999e-01\\n3.80180813e-02 -2.77160645e-01 -1.77348703e-01 1.48686409e-01\\n2.88764387e-01 8.10002014e-02 -1.33514047e-01 -1.83961645e-01\\n1.48065075e-01 -4.68307644e-01 7.08416253e-02 -2.05258802e-01\\n1.30885774e-02 -2.43086834e-02 1.23701856e-01 -2.29089577e-02\\n-1.49853984e-02 -3.34903121e-01 3.93113106e-01 -4.23680037e-01\\n-3.51313680e-01 -9.74764600e-02 -1.10818803e-01 -8.45456272e-02\\n1.53341919e-01 -5.26033401e-01 1.63398877e-01 3.85827750e-01\\n3.82424109e-02 -2.38581952e-02 1.66098401e-01 9.68989264e-03\\n-2.27045193e-02 2.93934494e-01 -4.79917675e-01 1.44276954e-02\\n8.33814919e-01 1.47376463e-01 -2.31898371e-02 1.03075989e-01\\n1.86361283e-01 3.57426971e-01 4.47775066e-01 -4.12158528e-03\\n-3.55357602e-02 1.39942989e-01 7.43634403e-02 -4.96736377e-01\\n-2.09169388e-02 1.19745485e-01 -2.15188339e-01 -2.96924233e-01\\n6.87722623e-01 4.06432420e-01 -4.78748739e-01 -3.21693003e-01\\n9.68511850e-02 -5.56703918e-02 3.54306310e-01 -1.20034479e-01\\n-1.03619322e-01 -3.93997543e-02 5.36198735e-01 4.90024686e-02\\n2.36768901e-01 5.70484996e-01 -1.64025739e-01 -4.04676586e-01\\n-1.19671382e-01 1.41104236e-01 1.50366306e-01 5.31778753e-01\\n-1.06964760e-01 2.30960310e-01 -1.11541979e-01 4.17664386e-02\\n-8.83472431e-03 3.30757856e-01 2.79946864e-01 8.27588961e-02\\n2.46844992e-01 -8.60367581e-05 2.91347414e-01 5.09129643e-01\\n1.37710959e-01 4.78811711e-01 2.52485573e-01 4.69638109e-02\\n3.35895717e-01 4.93021965e-01 3.75424564e-01 2.31532335e-01\\n-2.18581203e-02 8.39639977e-02 1.40570134e-01 1.44818556e-02\\n4.42975670e-01 2.82091469e-01 2.05940738e-01 9.34057951e-01\\n3.74598294e-01 2.54715830e-01 7.68483400e-01 -7.22378433e-01\\n-3.87649983e-01 1.01815000e-01 5.09043097e-01 -3.51925492e-01\\n-6.22350983e-02 1.39932066e-01 -1.71189100e-01 2.92440355e-01\\n-5.05330741e-01 -4.36785966e-02 2.84388214e-02 1.93726212e-01\\n-2.58070100e-02 -6.12182952e-02 -2.88419724e-01 1.46615049e-02\\n-2.24268511e-01 -1.33764520e-01 -3.50016326e-01 -3.13072413e-01\\n-2.88937718e-01 -1.69691831e-01 -1.86906710e-01 -7.90367723e-02\\n-9.19008628e-02 -4.79197681e-01 -7.13729784e-02 -5.57798371e-02\\n3.36303979e-01 -1.78764880e-01 3.67732975e-03 -2.20532328e-01\\n2.39723817e-01 3.65229934e-01 5.27588367e-01 -1.35037690e-01\\n2.89134458e-02 -2.00053692e-01 -3.81077647e-01 8.46858397e-02\\n2.52793524e-02 1.48317426e-01 5.40305525e-02 3.50993335e-01\\n-2.08683103e-01 -6.84615001e-02 9.00868326e-02 2.72932619e-01\\n-4.35891002e-01 -1.61528006e-01 -1.41027942e-01 2.18612537e-01\\n1.22167982e-01 1.29202679e-01 -2.94389665e-01 1.97411880e-01\\n-2.54111201e-01 -4.83704835e-01 3.48814577e-01 -1.63745746e-01\\n-9.14216340e-02 3.71205091e-01 3.60128343e-01 2.55130827e-01\\n-2.65109330e-01 -1.42115384e-01 6.94283172e-02 3.87339145e-01\\n-7.96625316e-02 3.53159726e-01 -6.31901994e-02 -2.54419982e-01\\n-2.49674678e-01 3.17460090e-01 -2.13343993e-01 1.25820369e-01\\n-5.59143163e-02 3.91125709e-01 -4.60046995e-03 1.04311660e-01\\n3.37887168e-01 4.59150858e-02 -1.95388675e-01 -3.09314489e-01\\n-1.45938829e-01 -2.63455987e-01 -7.68668875e-02 4.92827967e-02\\n6.87826127e-02 -3.57056469e-01 -1.53861403e-01 -1.70016453e-01\\n-8.15603659e-02 -2.97621459e-01 -2.09456123e-03 6.34652972e-02]]',\n", + " \"You are an expert in gathering knowledge from network engineers, sourcing and processing data, applying anomaly detection models, and making our insights accessible to end users. We are a group of data engineers and data scientists that are passionate about the topics we work on, the methods we apply, and the tools we use. We design and implement end-to-end solutions – all by leveraging domains like distributed systems, data mining, or web development. We create software relying on the Agile approach, and we use state-of-the-art big data technologies such as Kafka, Kafka Streams, or Cassandra. We code mostly in Java, and we are strong supporters of Open Source. Your tasks span from data science (10%) through big data engineering (60%) to DevOps (30%). Thus, you are interacting with data scientists, big data engineers, DevOps as well as product owners and business engineers. Bachelor's degree (ETH/Uni/UAS) with at least 4 years of relevant experience, or Master's degree (ETH/Uni/UAS) with at least 1 year of relevant experience, or PhD in computer science or related field Able to write clean and effective code in Java Solid understanding of data structures and algorithms Experience with Big Data technologies, in particular Kafka, Kafka Streams, and Cassandra is a plus Ability to analyse and visualise data (e.g. with Python, Jupyter) is a plus DevOps know-how: scripting (Unix, Python), Ansible, Prometheus, Grafana, Jenkins is a plus Familiarity with web development technologies such as TypeScript, Angular, HTML, CSS, RESTful APIs is a plus Knowledge in relational databases, relational data modelling, and SQL is a plus Experience with containerization technologies (Docker, Kubernetes) is a plus Very good English, German a plus\",\n", + " '[\"Writing\", \"Sourcing\"]',\n", + " '[\"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Agility\", \"Apache Cassandra\", \"Jenkins\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Data Modeling\", \"Data Engineering\", \"TypeScript\", \"Network Engineering\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Web Development\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Open Source Technology\", \"Data Science\", \"Docker (Software)\", \"Big Data\", \"Java Data Mining\", \"Unmanned Aerial Systems (UAS)\", \"Data Structures\", \"Grafana\", \"Angular (Web Framework)\", \"Relational Databases\", \"Ansible\", \"Algorithms\", \"Scripting\", \"Anomaly Detection\", \"Java (Programming Language)\", \"Data Processing\", \"Unix\", \"Prometheus (Software)\", \"Jupyter\", \"SQL (Programming Language)\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Malagasy', 'Faroese']\"],\n", + " ['27',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " 'Banks & Building Societies',\n", + " '',\n", + " '[[-2.03804046e-01 3.90768409e-01 4.67769086e-01 -8.77881497e-02\\n4.87570196e-01 -7.82477483e-02 4.64432091e-02 2.35845342e-01\\n-3.25662307e-02 -4.09615815e-01 -2.12051362e-01 -1.85173452e-01\\n-3.37314159e-02 2.85892887e-03 8.85701180e-02 3.81983519e-01\\n4.20859516e-01 5.20653501e-02 -1.77889988e-01 2.62596428e-01\\n-2.63112150e-02 -4.84103486e-02 8.93685222e-02 7.05695868e-01\\n3.66484374e-01 -4.07317001e-03 -3.99812683e-02 1.14762597e-02\\n-1.80528551e-01 -2.61936098e-01 4.66465175e-01 -1.29114725e-02\\n-1.05974756e-01 -2.18961939e-01 1.30097687e-01 1.13381878e-01\\n-2.33863339e-01 6.26446605e-02 -1.02193907e-01 8.27504918e-02\\n-4.65156496e-01 -2.15260744e-01 4.61863503e-02 1.69673450e-02\\n-2.73656785e-01 -3.25701177e-01 1.41076788e-01 -9.91059318e-02\\n8.86920840e-02 3.25927138e-02 -3.59828532e-01 3.10147762e-01\\n-3.49230528e-01 -2.51716435e-01 3.94583434e-01 6.66098475e-01\\n6.72818422e-02 -4.92215574e-01 -5.22410512e-01 -2.89230585e-01\\n1.19727992e-01 -1.04853883e-01 7.54880682e-02 -2.38034174e-01\\n3.79000843e-01 -3.68774086e-02 -4.54715006e-02 3.40090334e-01\\n-8.06410789e-01 -5.71128950e-02 -3.42003316e-01 -3.79882194e-03\\n-3.69161308e-01 -9.07453969e-02 -3.28373104e-01 -2.37304121e-01\\n-3.78980525e-02 3.99585336e-01 -3.97136770e-02 7.42971301e-02\\n-2.37833411e-01 3.79690588e-01 -3.01380932e-01 2.51185834e-01\\n2.31715769e-01 2.17698529e-01 3.94593537e-01 2.69670486e-01\\n-4.36338782e-01 4.71198261e-01 3.81378710e-01 -4.01021689e-01\\n2.99861073e-01 7.16661960e-02 2.94071645e-01 1.21090993e-01\\n4.55599129e-02 2.07176715e-01 -4.13994640e-02 1.90927461e-01\\n1.63995117e-01 -6.48481101e-02 -2.65146792e-01 -8.46652389e-02\\n-6.79937154e-02 -6.19099960e-02 5.88375144e-02 2.03558311e-01\\n-3.80781233e-01 3.19268405e-01 1.02467567e-01 -3.65109324e-01\\n-1.19307436e-01 -4.81050342e-01 -1.25744179e-01 2.14220621e-02\\n-1.81125551e-01 8.63118023e-02 1.42853677e-01 2.58707881e-01\\n2.07280636e-01 5.52942790e-03 1.49121359e-01 8.42240810e-01\\n-7.94274062e-02 -1.53379310e-02 -2.76485652e-01 3.84893417e-01\\n1.92834020e-01 -2.95513868e-01 1.66953534e-01 2.49384388e-01\\n-1.41898528e-01 -5.93110956e-02 -2.90096939e-01 4.11847413e-01\\n-1.56909823e-02 -1.91932783e-01 -3.28270495e-01 1.57402813e-01\\n-1.80526137e-01 -4.60175455e-01 5.44894278e-01 -3.37428227e-02\\n1.36734962e-01 -3.38697694e-02 5.79121411e-02 -4.10552025e-02\\n-2.21429914e-01 2.58652300e-01 7.20810443e-02 1.28949702e-01\\n-3.42869103e-01 -1.81787699e-01 -1.25452325e-01 3.38497758e-01\\n-1.09896198e-01 2.09553558e-02 -3.38218451e-01 -1.56369090e-01\\n3.00506532e-01 1.03319228e-01 -3.89633536e-01 2.20915735e-01\\n7.37515092e-03 -1.26083091e-01 -1.28226817e-01 3.30436647e-01\\n-9.45730135e-02 1.55070588e-01 -1.45876808e-02 -9.98046845e-02\\n5.83147407e-01 1.13250047e-01 2.33511329e-01 -1.48835555e-01\\n2.55569845e-01 -1.52248889e-01 1.66610152e-01 6.39637411e-02\\n-5.83862901e-01 3.85710686e-01 -1.21061869e-01 2.62319148e-02\\n4.04232070e-02 -1.21016111e-02 2.68036485e-01 -3.26909959e-01\\n-3.89732793e-02 -2.43426889e-01 -3.64712715e-01 -4.16114688e-01\\n-2.31771350e-01 5.16521670e-02 3.14480543e-01 -4.93528724e-01\\n-3.38866264e-02 2.29032874e-01 -6.23656154e-01 -1.13938093e-01\\n2.31761351e-01 2.02805042e-01 5.63333184e-02 1.31169736e-01\\n-1.32118374e-01 -5.36988318e-01 1.87922508e-01 -4.68224108e-01\\n-3.71509492e-01 1.66688889e-01 -2.32319504e-01 1.73263445e-01\\n1.28264099e-01 -3.09862308e-02 -8.89402330e-02 8.46490860e-02\\n-3.74169827e-01 -4.25389297e-02 1.57298416e-01 3.41132544e-02\\n2.00495511e-01 9.53207090e-02 -3.70331585e-01 5.56046605e-01\\n-1.88224792e-01 2.79402107e-01 1.86127856e-01 -1.11399782e+00\\n4.68504429e-01 3.13605785e-01 5.44302762e-02 -3.44051838e-01\\n5.39809585e-01 -3.31697047e-01 -6.30915090e-02 1.32269770e-01\\n-3.40196490e-01 -2.20591009e-01 2.78031409e-01 -1.85036287e-01\\n-2.89583206e-01 5.84917307e-01 4.77691926e-02 6.45212829e-02\\n3.20092380e-01 -2.39338607e-01 -1.98462546e-01 1.41741522e-02\\n-2.01178432e-01 -1.00232869e-01 -5.33763230e-01 -5.23728207e-02\\n-5.50117418e-02 -5.54126143e-01 -2.14222640e-01 -6.14199102e-01\\n-2.14566529e-01 -3.56247604e-01 -2.63777196e-01 2.28898674e-01\\n1.29156232e-01 1.51986346e-01 -1.00486219e-01 2.60264780e-02\\n-1.07011676e-01 -6.38307750e-01 -7.32773319e-02 1.18817471e-01\\n3.27738136e-01 3.04416984e-01 3.80399115e-02 -6.35404363e-02\\n-7.20551834e-02 4.86990243e-01 -2.95677304e-01 -2.85945177e-01\\n2.74363995e-01 1.24624133e-01 -5.15035093e-02 -1.30820215e-01\\n7.80715942e-02 3.36906612e-01 -2.40326658e-01 -3.75703238e-02\\n5.10542020e-02 -9.25578270e-03 3.81516725e-01 8.74746591e-03\\n-3.02216709e-01 -1.89894408e-01 -5.15234210e-02 2.64405489e-01\\n-5.87001085e-01 -2.12707072e-01 6.60117388e-01 2.66089380e-01\\n6.90679625e-03 2.57129878e-01 2.88240254e-01 -6.67196661e-02\\n-2.29125023e-01 -1.44214928e-01 2.58206844e-01 1.17328785e-01\\n1.82096273e-01 4.88546379e-02 -1.67807341e-01 -5.59000731e-01\\n-3.50456190e+00 -2.27051646e-01 2.08202973e-01 -3.04246664e-01\\n2.53372312e-01 -1.08278304e-01 1.91876993e-01 -4.90713157e-02\\n-2.64295340e-01 -2.56928876e-02 -1.29935309e-01 -1.25814736e-01\\n1.74039871e-01 2.99989998e-01 1.39695248e-02 2.43258417e-01\\n1.36782706e-01 -1.53154761e-01 2.03970186e-02 3.56555462e-01\\n-4.52529266e-02 -7.84795880e-01 1.62590116e-01 -3.57159898e-02\\n1.62149251e-01 1.74659938e-02 -4.31057900e-01 -6.35004044e-02\\n-2.95321792e-01 -2.20802099e-01 1.23770088e-01 -1.49104103e-01\\n-1.79627061e-01 2.00907424e-01 1.39965430e-01 -1.98137999e-01\\n4.84757535e-02 -2.97858715e-01 -6.63966835e-02 -5.24165630e-01\\n2.49262959e-01 -6.58757210e-01 9.06176046e-02 -4.34906930e-02\\n6.34322166e-01 -2.73911119e-01 1.93695098e-01 1.28422379e-01\\n1.93415821e-01 1.77321672e-01 1.49514958e-01 -3.03439610e-03\\n-3.35032463e-01 -3.42313588e-01 -1.05996579e-02 -1.00922011e-01\\n6.47520006e-01 2.78520614e-01 -2.39458829e-01 5.25724776e-02\\n-2.13818606e-02 -2.53913909e-01 -4.61148381e-01 -2.76440054e-01\\n-1.60496026e-01 -4.53968756e-02 -6.99442148e-01 -4.07145858e-01\\n-1.35753185e-01 -1.81316569e-01 -8.11915696e-02 7.43607044e-01\\n-2.19896764e-01 -3.91651213e-01 -1.13684237e-01 -5.66930830e-01\\n1.81098491e-01 -1.69850588e-01 2.75039431e-02 -2.53439754e-01\\n-2.56627977e-01 -3.89817357e-01 1.37756169e-01 9.64485481e-03\\n-1.76757276e-01 -5.65620176e-02 7.32280761e-02 -1.33123338e-01\\n-3.41263175e-01 -4.70330536e-01 4.47685182e-01 7.75322318e-02\\n3.83713365e-01 7.77238309e-02 3.09280843e-01 -3.14922258e-02\\n2.94075549e-01 -6.97753802e-02 -1.73235089e-02 -4.73299772e-01\\n1.25298530e-01 6.32203296e-02 5.97068727e-01 -2.41783768e-01\\n5.08673787e-02 1.72237828e-01 -1.30143434e-01 -1.05525434e-01\\n4.89634752e-01 3.22905257e-02 7.00303391e-02 -2.34990343e-01\\n2.50719965e-01 -5.09002507e-01 -2.58920729e-01 9.37308669e-02\\n4.22939211e-02 6.29909635e-01 -5.00193983e-02 -4.46703672e-01\\n-1.96332157e-01 4.14849043e-01 -5.90387657e-02 -1.45725369e-01\\n-2.64161825e-01 1.03701666e-01 -3.24410617e-01 2.13341534e-01\\n2.78311111e-02 -1.16578788e-01 -2.89350361e-01 -5.92018887e-02\\n-6.37676120e-02 2.14282051e-01 2.73974359e-01 1.53323740e-01\\n1.56883597e-02 -2.90722519e-01 -1.04385540e-02 8.78996402e-02\\n1.78481176e-01 4.22182024e-01 2.35109508e-01 -3.15822065e-01\\n-2.09998339e-02 2.70354152e-01 -2.64137089e-01 2.48385996e-01\\n-1.10622399e-01 6.13665693e-02 -4.60509717e-01 -2.24325269e-01\\n-1.94375932e-01 -3.43253702e-01 8.35158154e-02 3.38662028e-01\\n9.61739048e-02 -1.31071836e-01 -4.18518633e-02 -4.87964720e-01\\n3.29023242e-01 5.29233217e-02 2.60018945e-01 1.50793836e-01\\n5.82220033e-04 6.98550224e-01 3.17230541e-03 -2.35252410e-01\\n-4.26415615e-02 7.78964832e-02 -1.29145354e-01 -2.12308973e-01\\n2.01781467e-03 -5.06595016e-01 -6.14632294e-02 4.72236097e-01\\n1.43387616e-02 -2.06427887e-01 -1.83539301e-01 2.93051451e-01\\n-9.07769054e-03 -2.36076578e-01 -1.40851036e-01 3.21042836e-02\\n1.79151565e-01 1.20031558e-01 3.02308261e-01 -4.28472728e-01\\n-7.28138238e-02 1.57823786e-03 2.21211221e-02 4.42300737e-01\\n1.62282705e-01 1.87535763e-01 4.70180344e-03 -1.40022159e-01\\n4.52322900e-01 8.20135102e-02 -1.98109269e-01 -4.35945429e-02\\n9.77521837e-02 -2.22388268e-01 -4.59461898e-01 2.02564411e-02\\n-1.06711335e-01 -1.54663831e-01 7.07870796e-02 5.52929752e-03\\n1.57346129e-01 8.51361528e-02 -5.52490473e-01 -2.43216082e-01\\n-3.75035822e-01 3.76921259e-02 -8.24845433e-02 -6.22166872e-01\\n6.61400482e-02 -3.46626900e-03 -6.24173701e-01 2.93617368e-01\\n-9.53998864e-02 4.07506339e-03 1.08901881e-01 1.39287218e-01\\n-2.57879496e-01 -1.73907652e-01 1.76795453e-01 1.44949555e-01\\n-2.68176168e-01 -2.57146358e-01 5.49259484e-02 -9.39684093e-01\\n2.83430904e-01 1.42679606e-02 -1.52050465e-01 9.51161385e-02\\n2.79563963e-02 -7.10500598e-01 2.55846113e-01 -4.01708126e-01\\n-1.25617549e-01 8.61931518e-02 -2.53956288e-01 -4.20040190e-01\\n4.53875512e-02 -5.81300855e-02 -3.03170592e-01 3.82353485e-01\\n-4.74330693e-01 4.81081545e-01 5.73964864e-02 1.20966241e-01\\n1.90057248e-01 -1.97504357e-01 2.67975479e-02 -3.06911439e-01\\n-4.97036368e-01 -2.75405288e-01 -2.02862799e-01 -3.59575391e-01\\n-2.62710303e-02 -2.78152287e-01 -2.02199370e-01 1.38330394e-02\\n3.32245708e-01 1.58109933e-01 -1.46111727e-01 -2.12831154e-01\\n-3.04572470e-03 -3.13678443e-01 1.74370408e-01 -2.02957094e-01\\n4.02330384e-02 -1.44340038e-01 3.06579709e-01 5.06446101e-02\\n1.30468190e-01 -3.69112730e-01 4.75309312e-01 -1.63741708e-01\\n-3.38913560e-01 -1.41455650e-01 8.39800090e-02 7.56729767e-02\\n3.14627945e-01 -5.91121078e-01 6.94257468e-02 3.47659469e-01\\n2.90944055e-02 8.04835185e-02 2.68158376e-01 -1.39273971e-01\\n-1.10903807e-01 1.40584588e-01 -5.01240313e-01 2.18151540e-01\\n6.66464090e-01 7.49852508e-02 1.95262119e-01 1.86863691e-01\\n2.01701790e-01 3.20096374e-01 5.13015330e-01 6.13382570e-02\\n-1.42312437e-01 3.26856196e-01 7.44533837e-02 -5.75528502e-01\\n-1.50138080e-01 -9.12020504e-02 -1.70393273e-01 -3.46687496e-01\\n6.51755333e-01 3.66033256e-01 -3.54396939e-01 -3.06159616e-01\\n-2.12369904e-01 -2.11850137e-01 3.04177284e-01 -6.47637695e-02\\n9.48208123e-02 -1.31843403e-01 5.69609165e-01 -4.61567119e-02\\n3.49865377e-01 5.45184851e-01 -2.07545966e-01 -3.22709620e-01\\n-3.56575176e-02 1.85333088e-01 3.63333151e-02 3.61937046e-01\\n-5.57535924e-02 2.15400964e-01 4.50925007e-02 1.95634782e-01\\n-1.57729372e-01 -1.79023705e-02 1.77537173e-01 5.44928163e-02\\n1.21926248e-01 4.00297269e-02 5.35466194e-01 4.90870714e-01\\n2.53744483e-01 4.85611647e-01 2.95513093e-01 7.86431059e-02\\n4.61681604e-01 7.16442108e-01 3.73337686e-01 4.58531976e-02\\n4.86913733e-02 1.07038990e-01 1.14339441e-01 -2.03900598e-03\\n2.95529544e-01 4.59290028e-01 1.14118382e-01 8.28918219e-01\\n3.50034237e-01 2.63442695e-01 7.43815720e-01 -6.84027612e-01\\n-3.18231404e-01 3.24992016e-02 4.80759114e-01 -3.47550154e-01\\n5.37812598e-02 1.76892847e-01 -3.14115793e-01 2.13397101e-01\\n-4.35995698e-01 -9.89361480e-02 -4.85197008e-02 -7.37838596e-02\\n9.04889777e-02 -1.53131485e-01 -1.23386778e-01 4.04317081e-02\\n-9.11652222e-02 -2.25712687e-01 -3.18940163e-01 -1.54745772e-01\\n-3.53496075e-01 -3.01715732e-03 -7.69090094e-03 -1.21485524e-01\\n-7.78919086e-02 -3.67699444e-01 -1.52253151e-01 -3.00908461e-04\\n2.89667517e-01 -9.51254964e-02 -1.77729085e-01 -1.30902007e-01\\n1.68675929e-01 2.60561228e-01 7.08278000e-01 4.87506390e-02\\n7.11908042e-02 -4.17976305e-02 -2.15041518e-01 7.63209462e-02\\n1.35584325e-01 9.81297344e-02 2.62277992e-03 5.09274065e-01\\n-2.51530170e-01 -8.81310180e-02 9.35409218e-02 3.21951330e-01\\n-3.35471511e-01 5.32840490e-02 -8.02944526e-02 1.86750114e-01\\n5.06229475e-02 1.79993495e-01 -2.25691020e-01 9.54378843e-02\\n-5.42874001e-02 -5.05900621e-01 4.70868051e-01 -1.25084698e-01\\n-1.71430796e-01 4.48656976e-02 1.56392992e-01 3.96338940e-01\\n-2.43341744e-01 -7.82990232e-02 -1.14482857e-01 1.52971774e-01\\n9.15328860e-02 4.52844322e-01 -2.54536510e-01 -1.00404203e-01\\n-2.80676812e-01 1.80780619e-01 -2.11960450e-02 1.34971946e-01\\n-7.15983436e-02 3.56249154e-01 1.07109055e-01 1.15570664e-01\\n2.51057893e-01 -2.60895379e-02 -2.25229293e-01 -2.30285615e-01\\n-2.43377358e-01 -1.18941270e-01 2.58340891e-02 -6.87678605e-02\\n3.26687604e-01 -2.70393074e-01 -1.15278289e-02 -1.90212190e-01\\n-2.16400623e-01 -4.26365733e-01 -1.54515609e-01 -4.96382965e-03]]',\n", + " 'As a Software Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, software design and development activities for the Bank’s existing and new applications. You will be responsible for providing the design, development, configuration and maintenance for changes on existing systems and also for introducing new applications and interfaces with other systems. You will be developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Work with experienced engineers to design and develop new modules and/or applications Undertake the technical ownership of Cembra Money Bank’s Applications Integrate with the existing applications portfolio as well as third parties’ software Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 5+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Knowledge of messaging systems, Java applications servers (WAS, JBoss, Tomcat) and relational databases and also working experience with common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Executable\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"Operating Systems\", \"Java Application Server\", \"Application Portfolio Management\", \"Finance\", \"Personalization\", \"Production Support\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Modulation\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Custom Backend\", \"Apache Tomcat\"]',\n", + " \"['English', 'Dutch', 'Nuosu']\"],\n", + " ['102',\n", + " 'network/communication engineer voice/data/iot cloud (m/f)',\n", + " 'Ebikon',\n", + " 'Architectural & Engineering Services',\n", + " '',\n", + " '[[-3.27513874e-01 3.24660480e-01 5.21371543e-01 -1.62468553e-02\\n5.91535270e-01 -8.14866796e-02 -1.04570977e-01 3.87994260e-01\\n-1.16121575e-01 -5.39816916e-01 -1.18672751e-01 -3.28160822e-01\\n-6.97539747e-02 1.01617917e-01 1.26957491e-01 4.57225680e-01\\n2.86172837e-01 1.27504524e-02 -1.35993049e-01 4.08540070e-01\\n-4.54294533e-02 -1.76228747e-01 1.54578373e-01 7.69525468e-01\\n3.63228202e-01 2.51078280e-03 -4.80197184e-02 1.84496343e-02\\n-1.91533342e-01 -1.80703580e-01 5.27288854e-01 -2.50414629e-02\\n-1.47910759e-01 -3.24717611e-01 2.09152505e-01 4.26316895e-02\\n-2.58283377e-01 -1.72954500e-01 -1.76298320e-01 1.30219355e-01\\n-3.99071485e-01 -2.62460321e-01 -6.01413660e-02 -7.39195570e-02\\n-2.72856742e-01 -3.06711048e-01 7.47550055e-02 -1.13377146e-01\\n4.55387942e-02 1.15295567e-01 -5.28470993e-01 1.74004734e-01\\n-2.39586130e-01 -1.09819934e-01 3.19648713e-01 5.66717029e-01\\n-5.62827066e-02 -4.40692395e-01 -3.75974089e-01 -3.13365668e-01\\n-2.06132252e-02 -8.53484720e-02 1.03175610e-01 -3.37115735e-01\\n2.81001925e-01 -3.46716642e-02 4.76756543e-02 2.34627813e-01\\n-6.88664317e-01 -8.27201381e-02 -3.45584303e-01 -8.71054232e-02\\n-2.89789796e-01 -8.39989483e-02 -3.84652764e-01 -2.62295246e-01\\n-5.21809980e-02 3.90245616e-01 4.74985726e-02 2.07424566e-01\\n-2.71471918e-01 3.28349024e-01 -1.12410374e-01 3.93511087e-01\\n1.96112767e-01 3.39792639e-01 1.99637756e-01 4.01514471e-01\\n-3.74668598e-01 3.33852857e-01 2.18639955e-01 -3.28995675e-01\\n2.03536034e-01 1.72603622e-01 4.07894641e-01 7.57448673e-02\\n1.82540178e-01 1.10496216e-01 -1.42393813e-01 2.66890228e-01\\n3.89432013e-01 -2.79655129e-01 9.57917944e-02 -1.82758003e-01\\n1.05117656e-01 -1.05627105e-01 -8.98787938e-03 1.63817599e-01\\n-3.51882994e-01 3.52546304e-01 -2.56119128e-02 -2.32492223e-01\\n-4.77882139e-02 -5.11577427e-01 -2.13184189e-02 7.70586357e-02\\n-2.66295951e-02 2.28512749e-01 2.70617664e-01 1.75524026e-01\\n3.16701025e-01 1.38448924e-02 1.38567597e-01 8.73835385e-01\\n-8.03365782e-02 -1.36452690e-01 -2.43228614e-01 3.83873343e-01\\n6.82242289e-02 -2.31580213e-01 2.31080398e-01 1.38615936e-01\\n-1.18714005e-01 -1.91908538e-01 -2.93087095e-01 2.73527801e-01\\n2.46396065e-02 -2.71611810e-01 -2.67762184e-01 2.02132508e-01\\n-1.49194703e-01 -4.27448124e-01 5.93013287e-01 6.80002496e-02\\n1.50144815e-01 -1.08504139e-01 -4.25162865e-03 -9.51935723e-02\\n1.56872924e-02 8.86611417e-02 -1.62230060e-02 7.62731582e-02\\n-2.10765898e-01 -3.16631019e-01 -2.71194398e-01 2.03075022e-01\\n-2.76791751e-01 2.59861439e-01 -1.83953404e-01 -1.04282446e-01\\n3.00375491e-01 -2.95789745e-02 -4.14569199e-01 3.03779364e-01\\n-7.85541385e-02 -7.83197135e-02 -8.97465795e-02 3.64640385e-01\\n-1.95868090e-01 2.46197015e-01 1.62467048e-01 -2.64871508e-01\\n3.55387032e-01 1.52724057e-01 1.74062461e-01 -4.42357399e-02\\n3.13367993e-01 -6.06129877e-02 1.83351804e-02 3.24684530e-02\\n-6.78511500e-01 3.17961156e-01 -5.22133037e-02 -3.18828821e-02\\n1.38803169e-01 -1.43666267e-01 1.87273085e-01 -2.27463573e-01\\n-1.16540954e-01 -1.21680096e-01 -3.45243812e-01 -2.98851967e-01\\n-5.71038648e-02 -1.08912475e-01 3.70764643e-01 -5.06577969e-01\\n-7.10808262e-02 1.60293579e-01 -5.83544075e-01 -7.10899383e-02\\n1.73581809e-01 2.60179132e-01 1.39542431e-01 1.01052463e-01\\n-9.42812413e-02 -3.94584328e-01 -2.64257975e-02 -5.18444777e-01\\n-3.08894545e-01 -2.12829206e-02 -2.49823347e-01 2.36584339e-02\\n1.35457322e-01 -4.77718636e-02 -5.70311248e-02 5.20856008e-02\\n-2.04273731e-01 1.51985139e-01 1.67370066e-01 8.89553502e-02\\n3.35058182e-01 -9.80378245e-04 -3.30758125e-01 5.58796585e-01\\n-1.24561548e-01 4.94186759e-01 1.02958322e-01 -9.04405355e-01\\n5.18464208e-01 3.21163923e-01 -8.30996782e-02 -3.88071090e-01\\n4.15933698e-01 -4.71666008e-01 -6.90504685e-02 1.37438163e-01\\n-3.02692831e-01 -2.84801275e-01 1.93483233e-01 -2.39759028e-01\\n-2.97848880e-01 5.39437056e-01 -6.00135475e-02 2.00159773e-01\\n2.06587210e-01 -2.55644023e-01 -2.30926901e-01 -5.13056219e-02\\n-1.15931593e-01 -2.45423108e-01 -6.83319628e-01 1.40414149e-01\\n-9.91661698e-02 -4.97665823e-01 -1.90721661e-01 -5.92316806e-01\\n-1.04571581e-01 -3.54603946e-01 -8.52397978e-02 1.13461651e-01\\n3.40921432e-01 1.51163712e-01 1.02779241e-02 -5.31652980e-02\\n-1.51786238e-01 -6.22432232e-01 -1.36023447e-01 6.72485754e-02\\n3.29794019e-01 2.25694478e-01 1.99960142e-01 -2.83192564e-02\\n6.62022308e-02 6.17610693e-01 -2.21514359e-01 -4.73511256e-02\\n1.89005136e-01 2.80751556e-01 1.44715898e-03 -1.85540304e-01\\n1.38656750e-01 3.39429736e-01 -2.48522252e-01 6.45111352e-02\\n1.57161858e-02 8.43688250e-02 3.89033794e-01 -7.52486512e-02\\n-3.27784956e-01 -2.93004096e-01 1.93272121e-02 2.15596527e-01\\n-5.52058220e-01 -2.13446513e-01 7.63560474e-01 2.90295899e-01\\n1.09796621e-01 7.96814486e-02 3.53985518e-01 -1.47030652e-02\\n-2.94581562e-01 -1.14138328e-01 2.03341484e-01 9.16361660e-02\\n1.21246092e-01 1.45441592e-02 1.23775639e-01 -5.94759166e-01\\n-3.36037040e+00 -5.03432639e-02 8.96371081e-02 -1.12125799e-01\\n1.31805941e-01 -1.60832077e-01 2.59601861e-01 5.43079190e-02\\n-3.43426049e-01 8.39406028e-02 -1.70776755e-01 -1.19675010e-01\\n1.86225340e-01 1.50555223e-01 1.26509950e-01 1.64279506e-01\\n1.55550033e-01 -2.93290675e-01 7.62005001e-02 2.69882143e-01\\n-1.82754934e-01 -8.28160465e-01 2.55432099e-01 2.18617264e-02\\n2.58824617e-01 1.32115558e-01 -4.64618385e-01 -1.37046531e-01\\n-4.11220402e-01 -1.86510757e-01 3.87926102e-02 -3.48403275e-01\\n-1.63929567e-01 2.07432970e-01 2.42121607e-01 -1.19454347e-01\\n2.34880820e-01 -4.24138844e-01 -1.84982121e-01 -4.73628819e-01\\n1.78783312e-01 -5.58705091e-01 9.87137184e-02 -2.47042961e-02\\n6.57637000e-01 -2.48868823e-01 2.19270527e-01 8.54982361e-02\\n1.41012892e-01 3.32378715e-01 8.49945992e-02 3.65371071e-02\\n-1.86636791e-01 -3.57099622e-01 -3.35906856e-02 -1.86176300e-01\\n5.38908780e-01 4.48816270e-01 -1.46378428e-01 2.30602138e-02\\n-2.84460746e-02 -1.40096515e-01 -4.99003887e-01 -3.64343941e-01\\n-1.06642656e-01 -5.85098676e-02 -8.08445692e-01 -4.06611741e-01\\n-2.37639993e-02 -1.71512902e-01 -9.26528871e-02 7.11760759e-01\\n-1.41420975e-01 -2.51086503e-01 -4.42037918e-02 -4.85016644e-01\\n3.08057994e-01 -9.69668552e-02 1.09091461e-01 -2.27823779e-01\\n-1.85756698e-01 -5.01895189e-01 1.72485262e-01 8.43094662e-02\\n-3.21795493e-02 -9.94629487e-02 1.65858760e-01 -1.74258515e-01\\n-2.37484470e-01 -3.77254754e-01 5.16202152e-01 1.79990917e-01\\n2.43812591e-01 1.59626722e-01 2.84311384e-01 -6.43900931e-02\\n1.89222753e-01 -7.48564769e-03 -2.01029982e-02 -3.92843723e-01\\n9.34003517e-02 4.54701111e-02 3.64105612e-01 -9.93067101e-02\\n2.41816081e-02 1.41539156e-01 -1.27920508e-01 -1.41588643e-01\\n3.14303637e-01 2.04959996e-02 1.01463616e-01 -1.37022913e-01\\n2.00388908e-01 -4.02250797e-01 -1.62613049e-01 -5.02123591e-03\\n-1.75396558e-02 5.82829893e-01 -4.30466384e-02 -3.78703237e-01\\n-5.40718734e-02 4.89849508e-01 1.68551087e-01 -1.23128638e-01\\n-1.69199705e-01 1.25431135e-01 -2.89218873e-01 2.53283322e-01\\n1.08463250e-01 -2.55980730e-01 -2.59510577e-01 -1.30348176e-01\\n-1.77185997e-01 2.83998787e-01 3.08499575e-01 2.28232741e-01\\n-4.70168106e-02 -4.00181919e-01 -1.00700893e-02 2.75412470e-01\\n2.70956278e-01 3.32526505e-01 3.97499576e-02 -2.84159720e-01\\n7.09340125e-02 3.03442270e-01 -2.84474045e-01 3.29544485e-01\\n-2.93078244e-01 1.88381761e-01 -4.62186426e-01 -3.28931719e-01\\n-2.87744015e-01 -1.93596855e-01 1.20026514e-01 3.65172088e-01\\n1.68440819e-01 -9.36336219e-02 1.45505086e-01 -3.17222923e-01\\n4.15858895e-01 1.41671076e-01 1.32314011e-01 1.63809478e-01\\n2.96870470e-02 7.31750727e-01 1.10378951e-01 -2.65857071e-01\\n-1.01532027e-01 -2.54534348e-03 -1.90973505e-01 -2.13842258e-01\\n-5.95245026e-02 -4.00511980e-01 -1.22063912e-01 3.24088871e-01\\n9.06218514e-02 -8.37417468e-02 -1.73615962e-01 2.47586191e-01\\n9.10967216e-02 -2.13465869e-01 -3.10294271e-01 1.51814250e-02\\n4.15357023e-01 -5.50950617e-02 2.83966631e-01 -5.24871349e-01\\n2.17666663e-02 -4.10080180e-02 1.71994910e-01 5.79818428e-01\\n1.73562661e-01 2.96159722e-02 -7.19696935e-03 -2.79803187e-01\\n4.32911456e-01 -2.55871266e-01 -1.02094665e-01 3.30886431e-02\\n1.03257904e-02 -1.89997911e-01 -3.58432740e-01 1.40144855e-01\\n-1.52019769e-01 -1.97788432e-01 5.81325814e-02 1.65497020e-01\\n4.23153527e-02 1.16341701e-02 -6.29566252e-01 -2.31208980e-01\\n-2.81840473e-01 1.58807144e-01 -1.25848547e-01 -5.77765226e-01\\n5.04219010e-02 -4.09946442e-02 -6.99675679e-01 3.37090284e-01\\n-1.23379774e-01 -6.40249997e-02 2.13825032e-01 1.79764628e-02\\n-2.31894255e-01 -8.29418097e-03 1.32375985e-01 2.14657813e-01\\n-2.23746583e-01 -2.12855920e-01 -1.04096577e-01 -9.43876624e-01\\n2.77446121e-01 4.19552214e-02 -9.71219316e-02 1.84454322e-01\\n-2.76348311e-02 -8.35131109e-01 1.08362749e-01 -1.11244164e-01\\n-6.87608719e-02 -5.17777205e-02 -3.96820128e-01 -4.07126427e-01\\n4.31538075e-02 6.34478256e-02 -1.00891516e-01 3.71420860e-01\\n-4.03365135e-01 3.28341335e-01 -1.54476598e-01 9.42487344e-02\\n4.22401652e-02 -3.86239082e-01 2.70123094e-01 -3.93358082e-01\\n-3.36805463e-01 -1.90284446e-01 -2.62699723e-01 -4.13225532e-01\\n-1.07892029e-01 -4.24284846e-01 -8.22053924e-02 6.12269193e-02\\n3.97718936e-01 9.59841460e-02 -2.09994614e-01 -1.72678515e-01\\n-2.18727365e-02 -3.57981503e-01 1.90649360e-01 -8.72199237e-02\\n-7.78945815e-03 -2.56240010e-01 1.78784549e-01 4.79481667e-02\\n2.68488437e-01 -3.50159138e-01 3.80245090e-01 -3.84505093e-01\\n-4.62238640e-01 -2.03633711e-01 7.25907013e-02 1.26037281e-02\\n2.67358452e-01 -3.75358462e-01 -4.78357449e-02 2.06129327e-01\\n2.12642357e-01 4.40218784e-02 2.59728432e-01 -2.50591934e-01\\n-1.69104651e-01 2.98558295e-01 -4.07273382e-01 6.40522540e-02\\n6.86830163e-01 1.40162870e-01 2.25232556e-01 3.39472324e-01\\n6.92997649e-02 2.63427883e-01 5.14701664e-01 -1.13038644e-02\\n-1.24019712e-01 2.69727290e-01 2.08534703e-01 -5.01908123e-01\\n-2.20044628e-01 -1.26682177e-01 -2.04689696e-01 -3.99459124e-01\\n6.51107669e-01 3.08370709e-01 -3.76178175e-01 -1.95170447e-01\\n-1.54901713e-01 -1.75387457e-01 2.55599737e-01 -7.81800598e-02\\n1.49855148e-02 -1.29351422e-01 3.91716242e-01 3.74770090e-02\\n2.90432125e-01 7.00941145e-01 -1.38747275e-01 -2.20108002e-01\\n-2.14061990e-01 2.21550688e-01 4.50823344e-02 4.90299761e-01\\n-1.65550590e-01 3.53758335e-01 1.54228643e-01 2.87240773e-01\\n-2.52003640e-01 1.06205763e-02 -1.84188429e-02 1.03008516e-01\\n7.70246759e-02 1.08019009e-01 2.06982285e-01 4.37477440e-01\\n3.93363625e-01 4.20071065e-01 2.73457319e-01 -3.57226878e-02\\n4.49796319e-01 4.97542888e-01 4.65569288e-01 1.04407206e-01\\n1.52608722e-01 1.29665425e-02 9.86074954e-02 1.93880852e-02\\n1.78321242e-01 3.11838239e-01 5.34165464e-02 9.25270438e-01\\n3.85199904e-01 2.75272101e-01 7.13053644e-01 -6.34602308e-01\\n-3.52738470e-01 -4.91714142e-02 3.63732487e-01 -6.33798301e-01\\n5.06059751e-02 1.00064732e-01 -1.99652500e-02 1.56513333e-01\\n-4.36128885e-01 -2.57992536e-01 8.74973927e-03 1.75881013e-01\\n-1.25169819e-02 -2.39217699e-01 -9.07450914e-02 3.22986729e-02\\n-1.66479722e-01 -6.79788664e-02 -3.74026805e-01 -1.68724880e-01\\n-3.31220359e-01 -4.18441556e-02 -1.04686014e-01 -1.38955116e-01\\n-4.55393977e-02 -2.08739221e-01 -4.07044776e-02 -6.78791702e-02\\n3.25168729e-01 -1.17470562e-01 -1.57082662e-01 -2.19392136e-01\\n2.38439679e-01 1.67944476e-01 6.86512589e-01 7.81027079e-02\\n1.69539824e-01 -1.70379564e-01 -1.61114633e-01 9.97188613e-02\\n1.98233888e-01 5.57702444e-02 -6.09421283e-02 3.05139512e-01\\n-3.62043798e-01 -2.16848016e-01 1.29000157e-01 2.78099209e-01\\n-2.70894587e-01 8.03873688e-03 -2.75711194e-02 1.56064838e-01\\n4.30997908e-02 9.56550092e-02 -2.48001665e-01 -3.71234156e-02\\n-1.40115619e-01 -6.08305335e-01 2.88078219e-01 -1.89320028e-01\\n-8.88819993e-02 -1.33956611e-01 3.73163939e-01 2.17610478e-01\\n-2.34744370e-01 -2.26301420e-03 -9.57401376e-03 1.52759850e-01\\n5.47575653e-02 1.70270965e-01 -3.61910343e-01 -1.46282598e-01\\n-2.80051321e-01 1.41597673e-01 -1.31227165e-01 2.19925512e-02\\n1.55574143e-01 4.58222568e-01 1.37632698e-01 1.57527309e-02\\n2.63416827e-01 -9.63477269e-02 -1.81800380e-01 -1.51688501e-01\\n-2.71295339e-01 -1.65408790e-01 -1.30727530e-01 -2.21904069e-01\\n3.60058963e-01 -2.78569669e-01 -1.38587251e-01 -2.13272557e-01\\n-1.13256447e-01 -3.96746129e-01 -6.48873672e-03 -1.11167207e-01]]',\n", + " 'Our success has been built on leadership through Service, constant innovation and our ability to identify with customers and their needs. We invite you to learn more about our company and to consider what we can offer - not a job, but a career - to people who have the skills and passion to move AHEAD with Schindler. Therefore, we need you as part of our dynamic, collaborativ, innovative team. Join us in our mission to digitize elevators and escalators creating additional benefits for customers like uptime, insights, convenience by developing new digital product offerings. In your role as Network/communication engineer Voice/Data/IoT-Cloud you have ownership for the following subjects: providing robust (wired/wireless) Ethernet based network technology in industrial controller system (ICS) network and IoT environment Implementing and maintaining of highly scalable, converged and secured networks voice/data/multimedia in Schindler products Supporting existing processes in project management and product creation cycles Establishing network monitoring in industrial and IoT communication systems Participating the 2/3 level support Mobility needs you As Network/communication engineer Voice/Data/IoT-Cloud you will be responsible for supporting the teams in developing, implementing, monitoring and maintaining highly scaled communication network systems globally. Therefore, Schindler seeks for a flexible and independently working person that is willing to work in a dynamic and agile environment, dealing with IoT (Internet of Things) and communication technologies). Further expectations include: Fluent in English and German Understand state of the art wired/wireless communication technology principles (IPv4/6) Understand IoT/embedded system design principles in end to end communication aspects Understand leading edge security requirements in ICT in heterogenous environment Know cloud technologies and its automation and management aspects Used to participate global projects in virtual teams This role is an excellent opportunity for joining a successful global ambitious company. You will have the opportunity to grow and develop both personally and professionally in a supportive and inclusive environment, working with a great bunch of people. Package includes an attractive salary, flexible working hours and a modern multi-space office, in the center of Switzerland, close to Lucerne.',\n", + " '[\"Leadership\", \"Professionalism\", \"Management\", \"Communications\", \"Virtual Teams\", \"Wireless Communications\", \"Innovation\"]',\n", + " '[\"Automation\", \"Wireless Mesh Networks\", \"Agility\", \"Juniper Network Technologies\", \"IPv4\", \"Ethernet\", \"Communications Systems\", \"Global Project Management\", \"Genesis Communications Networks\", \"Industrialization\", \"Maintainability\", \"Controller Development System (CoDeSys)\", \"Levelling\", \"Uptime\", \"Hostile Work Environment\", \"Mobility\", \"Corporate Governance Of ICT\", \"Multimedia\", \"Industrial Control Systems\", \"Embedded Systems\", \"Digitization\", \"Personalization\", \"Network Communications\", \"Scalability\", \"Network Monitoring\", \"Office Space Planning\", \"Network Security\", \"Security Requirements Analysis\", \"Systems Design\", \"Digital Product Management\", \"Data Direct Networks\", \"Project Management\", \"Additives\", \"Product Support\", \"Centering\", \"Internet Of Things (IoT)\", \"New Product Development\", \"Cloud Technologies\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'software engineer c++',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-6.15360327e-02 1.70069948e-01 3.69094670e-01 -4.79845591e-02\\n4.70457852e-01 -2.11933196e-01 -7.08187371e-02 2.78565824e-01\\n2.95023248e-02 -3.25105608e-01 4.88465913e-02 -2.35919148e-01\\n-1.46300763e-01 1.73026562e-01 9.29632112e-02 4.72389370e-01\\n3.19536090e-01 1.15963891e-01 -1.04019299e-01 3.63617152e-01\\n1.43307418e-01 -1.01917334e-01 1.59268215e-01 8.21938634e-01\\n3.83604348e-01 -5.87992370e-02 -6.00261986e-02 -1.12783508e-02\\n-2.19714239e-01 -1.16500683e-01 4.06501740e-01 1.43361226e-01\\n-7.79786855e-02 -4.00314540e-01 1.12267867e-01 9.94002298e-02\\n-3.23229134e-01 -1.82109043e-01 -7.37718642e-02 2.78239369e-01\\n-6.93649173e-01 -3.34074050e-01 -1.09158486e-01 4.11223480e-03\\n-2.48544917e-01 -3.11541736e-01 9.05178413e-02 -1.98799707e-02\\n1.34833902e-01 1.27673984e-01 -5.62962174e-01 2.21756414e-01\\n-2.10308075e-01 -2.62162238e-01 3.25115085e-01 6.20196640e-01\\n-2.27006990e-02 -4.35605645e-01 -5.04936755e-01 -3.91674995e-01\\n1.13927722e-01 -3.29396389e-02 -2.19221115e-02 -4.49590206e-01\\n2.82134950e-01 1.72711641e-01 -1.41567702e-03 3.11003178e-01\\n-8.41401517e-01 -1.87418044e-01 -2.62502939e-01 -4.23106924e-02\\n-3.74724805e-01 -6.10184185e-02 -1.53444380e-01 -1.05216317e-01\\n-3.86757702e-02 4.45064425e-01 4.06113677e-02 2.74664257e-02\\n-1.18220136e-01 3.87540281e-01 -2.12884188e-01 4.82440561e-01\\n2.04456359e-01 2.64162630e-01 9.84276012e-02 3.67818415e-01\\n-2.89154917e-01 3.47585022e-01 8.66943151e-02 -2.95485616e-01\\n1.91895068e-01 1.64032191e-01 5.06912708e-01 -4.85357083e-02\\n1.75279051e-01 7.67979398e-02 -4.09418195e-01 4.15128171e-01\\n2.56524861e-01 -2.89466470e-01 1.52836516e-01 -8.29043686e-02\\n2.56755557e-02 7.06810690e-03 5.92649616e-02 9.95903388e-02\\n-3.35495234e-01 3.97334129e-01 1.79926112e-01 -1.67149797e-01\\n-9.08892229e-02 -5.27441084e-01 -9.68079120e-02 7.15265423e-02\\n3.22680026e-02 6.92483634e-02 2.05185950e-01 1.00141227e-01\\n2.00903103e-01 5.54731786e-02 1.24387629e-01 9.73621309e-01\\n-9.67924595e-02 1.05454505e-03 -2.20986232e-01 3.07325393e-01\\n9.67770815e-02 -2.29671940e-01 2.70837277e-01 2.67831624e-01\\n1.17196687e-01 -2.18854681e-01 -2.33814448e-01 3.32441896e-01\\n6.03992306e-02 -1.98460042e-01 -2.73256570e-01 3.27207297e-01\\n-1.73127912e-02 -4.35801446e-01 6.63786471e-01 8.04563169e-04\\n1.08474314e-01 -6.42981231e-02 -4.31750156e-02 -1.32302165e-01\\n-4.51721065e-02 9.94271636e-02 1.71530137e-05 1.28383666e-01\\n-3.33145291e-01 -2.77937800e-01 -1.77992642e-01 3.96329463e-02\\n-3.68313164e-01 2.45561734e-01 -6.94993064e-02 -8.68954509e-02\\n1.61983281e-01 -5.77542335e-02 -2.28144571e-01 1.90994188e-01\\n-9.29187015e-02 1.43895280e-02 1.28230169e-01 3.89805436e-01\\n-2.57628709e-01 1.84226617e-01 -9.49219689e-02 -1.92838654e-01\\n5.26776254e-01 1.61258817e-01 5.37235290e-02 -1.29591525e-02\\n3.48932832e-01 -7.67435208e-02 2.30441481e-01 1.94344297e-01\\n-7.39030600e-01 2.87194252e-01 -1.10939883e-01 -2.32322782e-01\\n5.48879281e-02 -9.29856747e-02 3.56184244e-01 -2.82974631e-01\\n6.24019280e-03 -1.33209199e-01 -4.22763020e-01 -2.21646339e-01\\n-2.18117923e-01 -1.09508045e-01 4.99452442e-01 -4.08331901e-01\\n-1.73319593e-01 2.35321969e-01 -5.33958673e-01 -1.73191801e-01\\n2.77047064e-02 1.54111966e-01 2.19252974e-01 5.59129268e-02\\n-2.15247378e-01 -6.58071518e-01 2.61800531e-02 -4.71388608e-01\\n-2.88910538e-01 1.06464036e-01 -2.71896720e-01 2.80620754e-01\\n1.57240890e-02 -1.16062984e-02 -1.38100922e-01 1.26544744e-01\\n-2.41793022e-01 -1.44608505e-02 4.18391004e-02 3.19084874e-03\\n1.49102375e-01 8.21789205e-02 -3.18843246e-01 4.15687382e-01\\n-1.20143242e-01 7.38887548e-01 3.69345732e-02 -8.46216321e-01\\n5.17916620e-01 4.16019678e-01 -2.47838199e-02 -2.54223287e-01\\n5.48627019e-01 -3.83861870e-01 -1.78377882e-01 8.34225565e-02\\n-3.85464251e-01 -3.09331357e-01 2.20392063e-01 -2.58056343e-01\\n-2.86358505e-01 5.10280252e-01 9.39785838e-02 1.65612295e-01\\n3.19207907e-01 -2.90657401e-01 -2.78760176e-02 3.75616029e-02\\n-6.73609450e-02 -3.21334898e-01 -5.35726249e-01 -1.92885008e-02\\n-8.12788680e-02 -5.42707980e-01 -1.92736667e-02 -2.92269826e-01\\n-2.14521497e-01 -3.33490461e-01 -1.58306435e-01 2.17022285e-01\\n3.65034133e-01 1.07456565e-01 5.07156439e-02 5.49834557e-02\\n-1.00595355e-01 -5.40471494e-01 -4.16955128e-02 9.11187828e-02\\n3.76946747e-01 2.35252365e-01 9.54194516e-02 2.92639006e-02\\n-6.87321424e-02 6.42781734e-01 -2.67857581e-01 -2.19242021e-01\\n6.90786615e-02 2.02000931e-01 7.91040063e-03 -1.28834143e-01\\n1.65220633e-01 4.50034738e-01 -2.96262890e-01 1.26958698e-01\\n-1.34764001e-01 -5.05113006e-02 2.92828709e-01 1.26045197e-01\\n-1.94791853e-01 -1.95052609e-01 -1.40913844e-01 1.03951588e-01\\n-6.05008483e-01 -1.83572680e-01 4.42369729e-01 1.09146349e-01\\n2.54844993e-01 4.24901210e-02 2.81471282e-01 -1.26183674e-01\\n-2.41876170e-01 -2.70716846e-01 2.89479256e-01 1.83888420e-01\\n8.02820921e-02 1.79018348e-01 5.91687895e-02 -6.09297395e-01\\n-3.08833504e+00 -1.05858885e-01 1.48121655e-01 -2.28792489e-01\\n1.83724329e-01 1.54572483e-02 -1.58700813e-03 -7.97645003e-02\\n-3.01324129e-01 -7.38255903e-02 -1.98433593e-01 -1.89353421e-01\\n7.25826174e-02 1.54209048e-01 1.30315199e-01 7.80134127e-02\\n1.58667877e-01 -2.15334713e-01 -5.90466484e-02 3.51647347e-01\\n-7.55011812e-02 -5.56001663e-01 2.29559690e-01 2.89353542e-03\\n2.90803820e-01 1.15721308e-01 -4.58708256e-01 -1.40416771e-01\\n-1.97826967e-01 -1.74721807e-01 1.22433864e-01 -3.34654421e-01\\n-2.62786727e-02 2.80139416e-01 2.13215187e-01 -8.45521223e-03\\n9.90886539e-02 -4.09547955e-01 -1.57552987e-01 -3.98427546e-01\\n8.93677548e-02 -5.92201233e-01 1.49425101e-02 -2.24194452e-01\\n6.44605637e-01 -3.58653814e-01 5.59022129e-02 1.42211378e-01\\n1.29999787e-01 1.80157095e-01 6.98166490e-02 -9.50836670e-03\\n-1.79287121e-01 -2.34690279e-01 -1.07470900e-01 -1.67225555e-01\\n4.14665759e-01 5.71505427e-01 -6.46524057e-02 -1.03732109e-01\\n1.03607267e-01 -3.12021434e-01 -5.84030449e-01 -2.59165794e-01\\n-1.46081179e-01 -2.82951742e-01 -6.61847055e-01 -5.12746096e-01\\n-1.02164105e-01 -6.58482462e-02 -1.72628209e-01 6.29353225e-01\\n-3.62532377e-01 -2.96469182e-01 6.82153851e-02 -4.01356131e-01\\n2.07945466e-01 -3.01011622e-01 8.25977698e-02 -1.82450116e-01\\n-2.43590087e-01 -5.25997043e-01 5.61017692e-02 -1.22373914e-02\\n-8.28509033e-02 -3.87998402e-01 -3.69610526e-02 -2.26924196e-01\\n-2.69980758e-01 -4.20370936e-01 4.44941819e-01 1.89435720e-01\\n3.84555459e-01 7.72801861e-02 2.40476906e-01 -7.58712664e-02\\n2.93458164e-01 -2.79153474e-02 -8.12219381e-02 -3.12662840e-01\\n9.56308767e-02 4.49968651e-02 4.18010473e-01 -2.31686622e-01\\n-1.23370908e-01 6.86325273e-03 -3.47004056e-01 -2.70640012e-02\\n2.42457211e-01 6.42290339e-03 -2.80408263e-02 -1.83198184e-01\\n4.20002937e-01 -2.60792702e-01 -5.39209023e-02 1.71582073e-01\\n1.03063829e-01 5.64295292e-01 7.88486097e-03 -4.70834166e-01\\n-1.76993132e-01 3.81603271e-01 -9.43878070e-02 -8.10479224e-02\\n-2.05782261e-02 8.10663924e-02 -1.77646801e-01 2.37053588e-01\\n2.87216473e-02 -1.13345399e-01 -2.40583047e-01 -1.42416790e-01\\n-1.97484285e-01 4.30378973e-01 1.60710394e-01 6.20446391e-02\\n-9.95636359e-02 -3.69042218e-01 -1.04530133e-01 3.02616805e-01\\n2.10095316e-01 2.97285259e-01 2.55060077e-01 -2.53092885e-01\\n-3.25052515e-02 4.38893020e-01 -1.64433017e-01 1.94279432e-01\\n-2.45469734e-01 1.46761820e-01 -5.46583712e-01 -1.81154430e-01\\n-3.56602460e-01 -3.56532365e-01 2.15946585e-01 3.15783054e-01\\n2.37833053e-01 -5.06811887e-02 2.43615285e-01 -4.46075439e-01\\n3.10165942e-01 2.31263995e-01 2.07819521e-01 9.53669101e-02\\n-4.35707122e-02 6.34144068e-01 6.52131140e-02 -1.62557006e-01\\n-3.82012092e-02 -9.35275257e-02 -2.57405698e-01 -2.77863681e-01\\n7.12738335e-02 -4.90726084e-01 -1.72003627e-01 4.14939225e-01\\n1.19929798e-02 -3.07115704e-01 -2.88133264e-01 2.94350863e-01\\n4.53745499e-02 -2.82645762e-01 -2.94721484e-01 -5.60613954e-03\\n3.82236689e-01 -4.77441307e-03 2.89465189e-01 -5.32921195e-01\\n-7.05306306e-02 3.91185209e-02 -1.81442440e-01 6.03978574e-01\\n3.97017039e-02 -1.00307420e-01 -2.24660754e-01 -2.48657122e-01\\n3.46579373e-01 2.32381560e-03 -6.21865317e-02 -1.62810743e-01\\n1.29670411e-01 -1.65993020e-01 -2.93401748e-01 1.06150880e-01\\n2.69722436e-02 -1.20677598e-01 -5.41348942e-02 1.69817641e-01\\n1.54999360e-01 1.12913847e-01 -5.28884590e-01 -2.29777098e-01\\n-1.02099009e-01 1.38140861e-02 1.18286014e-01 -3.90523583e-01\\n-6.65493011e-02 -1.18845843e-01 -5.28726816e-01 2.59356290e-01\\n-1.79995090e-01 -6.33876771e-02 1.45757407e-01 4.41674665e-02\\n-3.90196830e-01 -1.64533883e-01 4.47562188e-02 2.68592030e-01\\n-3.36038888e-01 -3.03508312e-01 6.61023259e-02 -9.65365887e-01\\n4.73210663e-02 1.49925891e-02 -1.90606847e-01 1.99255109e-01\\n-3.77111137e-02 -5.96411288e-01 7.57368356e-02 -3.77188802e-01\\n-8.60775039e-02 -2.25442369e-03 -3.39427918e-01 -2.95279413e-01\\n9.80416313e-02 4.45397496e-02 -2.35997617e-01 3.71618241e-01\\n-3.83907884e-01 3.09884787e-01 -1.32649317e-01 2.36986764e-02\\n1.58124976e-02 -3.93595904e-01 1.76851645e-01 -4.58706349e-01\\n-4.17498320e-01 -1.73629120e-01 -3.23113531e-01 -2.72197038e-01\\n-2.72364486e-02 -1.95713922e-01 -1.68837935e-01 7.13770688e-02\\n2.79908746e-01 -9.94471982e-02 -8.80589262e-02 -2.27695882e-01\\n1.68260515e-01 -4.83649850e-01 1.19827949e-02 -4.67570685e-02\\n-8.20605643e-03 -1.69822350e-02 -2.08840072e-02 2.41146222e-01\\n1.97596639e-01 -3.65467548e-01 3.72829825e-01 -5.38573682e-01\\n-3.30811411e-01 -1.32995948e-01 1.48362368e-01 -3.14110778e-02\\n3.71939570e-01 -3.56714100e-01 -5.29241301e-02 2.47981116e-01\\n2.43250102e-01 3.42292972e-02 2.91329414e-01 -1.13652714e-01\\n7.07688332e-02 1.68619052e-01 -2.65314132e-01 1.41771108e-01\\n7.72444069e-01 1.22193418e-01 2.15246305e-01 1.34034827e-01\\n1.28308043e-01 1.52254969e-01 5.55234313e-01 6.95531145e-02\\n-1.14367470e-01 2.72008508e-01 2.12265760e-01 -3.27417433e-01\\n-1.41368076e-01 8.19723308e-03 -2.52981126e-01 -3.25297564e-01\\n6.97446167e-01 3.99260610e-01 -4.64953572e-01 -1.37237877e-01\\n-3.37966206e-03 -1.63995266e-01 1.53066546e-01 -1.16496146e-01\\n-5.37558272e-02 8.47891904e-03 4.39934969e-01 -1.53064996e-01\\n2.09769323e-01 4.32819247e-01 -1.90943584e-01 -4.02021229e-01\\n-8.35089013e-02 2.52721548e-01 2.67330874e-02 3.89168471e-01\\n-2.06106126e-01 3.97763252e-01 -2.31360290e-02 1.82387516e-01\\n-1.34223104e-01 1.28499418e-01 1.48220837e-01 1.01867869e-01\\n1.40002280e-01 2.21560262e-02 3.17652166e-01 4.30151075e-01\\n4.15707290e-01 4.00314301e-01 3.39364469e-01 -4.15941991e-04\\n4.22308087e-01 4.82627124e-01 3.39602828e-01 1.72086298e-01\\n-1.02666616e-01 1.35161459e-01 1.16447151e-01 -9.29013267e-03\\n4.46575284e-01 3.10713321e-01 1.69557795e-01 8.66306782e-01\\n2.88405806e-01 4.02954042e-01 7.08498836e-01 -5.74246526e-01\\n-3.02493989e-01 1.04537144e-01 4.32984531e-01 -4.73917127e-01\\n-3.20942923e-02 2.91799400e-02 -7.84139708e-02 2.18662664e-01\\n-3.52175862e-01 -2.40139216e-01 -6.56247139e-02 2.98952550e-01\\n3.18449363e-02 -1.09455273e-01 -2.52477109e-01 -4.17815186e-02\\n-2.21452832e-01 -1.38408095e-01 -4.76561010e-01 -4.83902432e-02\\n-2.63522714e-01 -1.87849909e-01 -5.20092212e-02 -7.35315457e-02\\n-1.07168294e-01 -4.00403649e-01 -2.41890792e-02 -3.53890248e-02\\n3.72063041e-01 -2.52057493e-01 -1.26549691e-01 -1.32459551e-01\\n3.33964020e-01 1.72105044e-01 6.11153305e-01 1.45205811e-01\\n7.46073276e-02 -2.52712697e-01 -1.76032111e-01 1.78253978e-01\\n5.91773912e-02 2.05314562e-01 1.16952769e-02 2.88733304e-01\\n-2.32696250e-01 -8.67840126e-02 1.55609652e-01 2.49566868e-01\\n-4.32942241e-01 -3.41088213e-02 -2.21731827e-01 5.89229763e-02\\n7.92885646e-02 1.10918105e-01 -2.37465367e-01 8.01573619e-02\\n-1.48676142e-01 -4.22992140e-01 2.37759501e-01 -1.23083465e-01\\n-1.79243162e-01 1.24646559e-01 3.69961411e-01 1.29486054e-01\\n-1.83342010e-01 -5.48164956e-02 5.47658280e-02 2.03589797e-01\\n4.67065908e-02 3.29977661e-01 -1.21937901e-01 -4.15521920e-01\\n-2.71547139e-01 2.37298384e-01 -2.21335277e-01 1.05093651e-01\\n2.18326636e-02 5.59969187e-01 1.23413667e-01 -2.92986855e-02\\n5.44673085e-01 -1.60206351e-02 -2.12896615e-01 -3.33475024e-01\\n-1.86459005e-01 -3.62796038e-01 -1.18960917e-01 7.16214404e-02\\n8.03726092e-02 -2.91677982e-01 -6.38136789e-02 -2.12681860e-01\\n-2.19799299e-02 -3.06136400e-01 -2.12664269e-02 -1.28117993e-01]]',\n", + " '(Internship 4-12 months) MaxWell Biosystems is an electronics-focused biotech company based in Basel, Switzerland, developing and selling advanced cell imaging platforms helping our customers in the pharmaceutical industry and in academia to make their drug discovery and research more efficient. We are an ETH Spin-off company, seeking highly motivated and talented individuals who want to contribute in shaping the future of drug discovery. Our core technology consists of a bio-sensor made out of an application specific integrated circuit (ASIC) chip. Together with an FPGA-based data acquisition platform and with our software suite MaxLab Live, this technology is used for drug discovery and to investigate brain cells at unprecedented detail and resolution. We are now enhancing our software MaxLab Live to perform automated experiment routines by means of a Python API (boost.python). Additionally, we are implementing various data analysis and visualization routines to enhance the user experience of our customers and to help them improve their research and drug discovery applications. For both of these activitieswe are seeking a highly motivated software engineer to help us either on the backend to improve the Python API and/or on the frontend with the user interface for data analysis and visualization. Your Profile Studies in computer science, electrical engineering, biology or related field Experience with C++ (C++11/14) and Linux Enjoy pushing technology to its limits You Get Working with cutting-edge technology Working on a modern C++11 code base Freedom to come up with and work on your own ideas Be part of a fast-paced technology startup at the intersection between biology, engineering and data science Are you motivated, innovative and committed to delivering first-rate performance? Have you ever wanted to work with cutting-edge technology involving both engineering and biology? Do you enjoy working in an international, multidisciplinary, and interactive team? Then we might have a position for you. Join MaxWellBiosystems in innovating the future of electrophysiology for drug discovery and basic research. Jan Müller looks forward to receiving your application documents (cover letter, short CV) by email at jan.mueller@mxwbio.com.',\n", + " '[\"Research\", \"Positivity\", \"Innovation\", \"Investigation\"]',\n", + " '[\"Automation\", \"Live Cell Imaging\", \"Basic Research\", \"Interactivity\", \"Field-Programmable Gate Array (FPGA)\", \"Computer Science\", \"Boost (C++ Libraries)\", \"Documentation Based Coding\", \"Industrialization\", \"Visualization\", \"Software Suite\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Push Technology\", \"Component Object Model (COM)\", \"Linux\", \"Agile Edge Technologies\", \"Limiter\", \"Application Specific Integrated Circuits\", \"Software Engineering\", \"Data Science\", \"Electronics\", \"Biology\", \"Electrical Engineering\", \"Electrophysiology\", \"Data Acquisition\", \"Biological Engineering\", \"Receivables\", \"Pharmaceuticals\", \"Drug Discovery\", \"Additives\", \"User Experience\", \"Custom Backend\", \"ASIC Programming Language\", \"Application Programming Interface (API)\", \"Integrated Circuits\", \"User Interface\", \"Data Analysis\", \"Advanced Imaging Technology\"]',\n", + " \"['English', 'Tsonga']\"],\n", + " ['75',\n", + " 'data scientist (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.41230571e-01 3.20579290e-01 3.75774533e-01 -5.87651171e-02\\n4.43441123e-01 -1.29961938e-01 -1.92020759e-02 4.41386491e-01\\n-1.59575537e-01 -4.24713194e-01 -1.46686330e-01 -3.25343221e-01\\n1.14388704e-01 2.04729050e-01 -1.23882887e-03 4.20161128e-01\\n3.73519152e-01 -1.16898101e-02 -2.07619742e-01 1.32103652e-01\\n8.86699557e-02 -3.35102119e-02 4.04846482e-02 7.49066710e-01\\n4.03577298e-01 3.07110511e-02 9.69275273e-03 2.29009271e-01\\n-2.27694642e-02 -3.00659746e-01 4.20081764e-01 6.77612126e-02\\n-9.78656411e-02 -1.45831376e-01 1.00099869e-01 1.93986848e-01\\n-1.76201001e-01 -4.38924991e-02 -4.48319092e-02 1.02736801e-01\\n-4.25482512e-01 -7.39343241e-02 -1.93309754e-01 -9.40649137e-02\\n-2.36881807e-01 -3.55241865e-01 1.84402809e-01 -7.85545632e-02\\n1.81506589e-01 1.02683842e-01 -5.44188201e-01 3.21053684e-01\\n-2.46664912e-01 -2.24747032e-01 2.26115018e-01 6.36301339e-01\\n-4.64538336e-02 -4.17762935e-01 -4.72036988e-01 -2.27010503e-01\\n3.72807076e-03 -2.47032586e-02 1.63690284e-01 -2.71987379e-01\\n5.68070114e-01 2.97356918e-02 8.11387785e-03 3.70946676e-01\\n-7.85762906e-01 -7.95092732e-02 -5.25898218e-01 5.51936179e-02\\n-4.09012586e-01 -1.16724238e-01 -3.26011032e-01 -1.84702218e-01\\n-9.00333896e-02 2.66361088e-01 5.27836494e-02 5.73817641e-02\\n-5.46626411e-02 1.83182925e-01 -3.73869807e-01 2.18665108e-01\\n1.80035621e-01 3.55550379e-01 2.71658927e-01 1.24420635e-01\\n-5.61292708e-01 4.55916524e-01 1.60459146e-01 -3.16164434e-01\\n2.51621008e-01 1.12377949e-01 4.22266543e-01 1.91384722e-02\\n3.23856115e-01 7.96804950e-02 -1.73500240e-01 2.88461983e-01\\n3.24480802e-01 -2.72537529e-01 -4.57357392e-02 -2.22847443e-02\\n-7.05420151e-02 -2.36930493e-02 1.81777403e-02 8.52361992e-02\\n-4.42855358e-01 4.49962378e-01 2.38556601e-02 -3.29873711e-01\\n-8.54108781e-02 -4.92196053e-01 -1.26708031e-01 1.13501027e-01\\n4.74727973e-02 1.55081972e-01 5.56165911e-02 3.36634696e-01\\n9.23086330e-02 7.44584203e-02 1.71667546e-01 8.73141706e-01\\n-1.59719318e-01 9.80157852e-02 -1.35535583e-01 3.73292476e-01\\n5.89516051e-02 -4.22692955e-01 3.69895428e-01 1.48211956e-01\\n-5.48070716e-03 -2.23484635e-01 -2.28235051e-01 3.02637547e-01\\n-8.38862732e-02 -1.75278768e-01 -4.07274961e-01 2.79555261e-01\\n-4.80480082e-02 -4.97038513e-01 5.77611804e-01 -6.62990361e-02\\n2.56282687e-01 5.75698167e-03 -1.20063998e-01 -6.44469708e-02\\n-5.58342263e-02 2.05851644e-01 1.05513319e-01 1.50529891e-01\\n-2.80206472e-01 -1.23960570e-01 -2.12028727e-01 2.41515830e-01\\n-3.25081259e-01 1.42981023e-01 -1.64810762e-01 2.47103572e-02\\n2.97217578e-01 -1.06815249e-01 -3.58129829e-01 2.71518111e-01\\n-1.08762622e-01 -9.28396657e-02 -1.04522936e-01 3.48139197e-01\\n-1.49847686e-01 2.89581656e-01 -7.47042149e-03 -1.49303108e-01\\n4.85912025e-01 -3.17747407e-02 1.42754778e-01 -1.14044540e-01\\n1.87778026e-01 -1.54224485e-01 1.40239537e-01 1.00261755e-01\\n-7.44436622e-01 3.75441790e-01 -1.33631974e-01 -2.50234485e-01\\n1.03924565e-01 -2.11706422e-02 1.20492116e-01 -3.17121565e-01\\n-2.60668900e-02 4.86982241e-02 -2.25412384e-01 -2.37696111e-01\\n-2.98636377e-01 3.06145400e-02 4.75394011e-01 -5.51669955e-01\\n6.42826129e-03 8.85091349e-02 -5.41709900e-01 -4.73886430e-02\\n2.20377043e-01 1.63471773e-01 1.72797069e-01 1.99010149e-01\\n-9.34576318e-02 -4.07977581e-01 1.05349876e-01 -5.64375281e-01\\n-2.33918458e-01 1.47594362e-01 -4.07128572e-01 2.71355361e-01\\n2.08260804e-01 -8.85742530e-02 -6.84777424e-02 1.75756514e-01\\n-1.47204876e-01 8.39553475e-02 1.92527175e-01 5.17481156e-02\\n4.29474980e-01 -1.31909158e-02 -4.88036036e-01 4.87025589e-01\\n-1.17629059e-01 3.22765619e-01 1.28966480e-01 -6.33928299e-01\\n5.18156767e-01 3.87201309e-01 1.34119019e-01 -3.40296209e-01\\n7.73359656e-01 -2.09232211e-01 -1.53796226e-01 1.28882870e-01\\n-5.41336775e-01 -2.04530403e-01 2.09910870e-01 -2.85638869e-01\\n-2.04468206e-01 6.05933845e-01 1.46033973e-01 1.70462862e-01\\n4.07893091e-01 -1.25825554e-01 -2.04333976e-01 1.82618171e-01\\n-1.61599264e-01 -2.83577591e-01 -4.41130549e-01 -1.46593213e-01\\n-1.38645932e-01 -5.25331318e-01 -2.12554470e-01 -5.44122219e-01\\n-1.19418189e-01 -3.49090397e-01 -1.90421775e-01 2.98726946e-01\\n2.70572782e-01 1.56919345e-01 -1.27486894e-02 -3.89354005e-02\\n-2.16649249e-01 -6.33001685e-01 1.12677880e-01 2.43788790e-02\\n2.78449357e-01 5.46571165e-02 -1.01318525e-03 -8.76794234e-02\\n9.30171683e-02 4.80634838e-01 -4.45369393e-01 -4.65957880e-01\\n1.67595834e-01 2.88126379e-01 -6.29331991e-02 -1.63987651e-01\\n7.48787075e-02 2.02743486e-01 -3.77554804e-01 4.87946309e-02\\n-3.19412686e-02 7.09454566e-02 3.11002165e-01 4.75667939e-02\\n-2.25134403e-01 -2.73619622e-01 -1.19784929e-01 2.03147247e-01\\n-4.44426179e-01 -3.51640642e-01 5.16058743e-01 2.27594838e-01\\n-8.20012465e-02 2.19246358e-01 1.83445424e-01 2.56463606e-02\\n-3.11640471e-01 -1.73988789e-01 1.85515121e-01 1.07422307e-01\\n7.74253830e-02 1.50473043e-01 -2.39359498e-01 -5.16104043e-01\\n-3.70907736e+00 -5.90654090e-02 2.16919612e-02 -3.38318013e-02\\n2.63239056e-01 -9.49420929e-02 2.72949815e-01 -1.70295238e-01\\n-3.73317093e-01 2.23193280e-02 -3.49745035e-01 -2.36381829e-01\\n2.36413643e-01 3.80795240e-01 1.85329095e-01 3.37170660e-01\\n8.95158853e-03 -3.26061338e-01 1.55033227e-02 3.53047460e-01\\n-1.01034768e-01 -5.98247468e-01 9.17824358e-02 -2.74122953e-02\\n3.05051386e-01 3.23851973e-01 -4.45890903e-01 4.46502045e-02\\n-2.90478021e-01 -3.03679377e-01 2.81372607e-01 -3.05325180e-01\\n-1.04047373e-01 3.29313606e-01 3.19882810e-01 -1.35911644e-01\\n8.91114213e-03 -3.04096609e-01 -2.21896827e-01 -4.22515392e-01\\n1.57804459e-01 -4.90906239e-01 -1.28313333e-01 -3.78867239e-02\\n7.59345353e-01 -2.76979506e-01 2.90725946e-01 -1.25216572e-02\\n-3.79199944e-02 2.58015037e-01 4.34338264e-02 -3.02164797e-02\\n-1.59291670e-01 -4.10524219e-01 -2.00489357e-01 -1.38318598e-01\\n7.19663858e-01 4.77971762e-01 -3.27104688e-01 -6.32395521e-02\\n3.40273418e-02 -2.62451947e-01 -4.98666763e-01 -3.22024316e-01\\n-2.16446906e-01 -9.33134332e-02 -5.49440205e-01 -5.07502139e-01\\n-6.88180998e-02 -2.11285770e-01 6.72993669e-03 5.60048044e-01\\n-3.87955904e-01 -4.22377199e-01 -1.19003303e-01 -5.84407449e-01\\n2.33222038e-01 -1.50476933e-01 1.93103589e-02 -6.49409369e-02\\n-2.87916183e-01 -4.92121696e-01 -3.83201055e-02 1.25485957e-01\\n-1.22601926e-01 -1.80888444e-01 1.67992145e-01 -2.10358664e-01\\n-4.12067920e-01 -5.70630968e-01 3.19926620e-01 7.52659366e-02\\n2.06089333e-01 3.11958551e-01 7.43244067e-02 9.38261375e-02\\n2.09748298e-01 -1.18292257e-01 -2.77300477e-02 -3.33694518e-01\\n6.80211857e-02 2.71623526e-02 4.78780895e-01 -2.68519908e-01\\n5.22808619e-02 3.14865038e-02 -1.65933669e-01 -1.00066185e-01\\n3.60404819e-01 2.91085709e-03 2.48318762e-01 -2.93007404e-01\\n2.49018162e-01 -4.09965307e-01 -1.22578003e-01 1.50597855e-01\\n8.01002532e-02 5.93329430e-01 -1.38859358e-02 -2.87190259e-01\\n-1.81143865e-01 4.63179588e-01 -7.93593749e-02 -1.28168138e-02\\n-1.41236469e-01 1.22826479e-01 -3.01261604e-01 4.57582884e-02\\n8.31399858e-02 -9.90217179e-02 -2.10034654e-01 -7.69866481e-02\\n-6.24854602e-02 3.36862296e-01 3.39921534e-01 2.14407220e-01\\n-1.19193226e-01 -3.77245843e-01 -3.04245334e-02 2.41239384e-01\\n2.78555810e-01 3.43841553e-01 1.13287218e-01 -3.09911937e-01\\n-3.05522885e-02 2.28456452e-01 -2.43753612e-01 2.83019274e-01\\n-2.08737180e-01 1.85385078e-01 -4.71682221e-01 -1.98949471e-01\\n-3.35636973e-01 -3.02228987e-01 1.68202549e-01 2.78751761e-01\\n4.78324443e-02 -1.47481069e-01 7.40066096e-02 -2.79685259e-01\\n1.28714785e-01 1.26459092e-01 1.72895581e-01 9.00546685e-02\\n4.25361320e-02 5.08100033e-01 -1.34723365e-01 -8.66496190e-02\\n-3.79136987e-02 1.55094236e-01 -2.98904300e-01 -1.67882740e-01\\n3.26476581e-02 -4.96705264e-01 -1.38876662e-01 3.30863655e-01\\n1.33994266e-01 -2.44507063e-02 -1.56706899e-01 2.71681696e-01\\n-6.29353225e-02 -4.21984881e-01 -1.89854845e-01 -3.77752148e-02\\n3.91769797e-01 1.97067633e-01 1.99220017e-01 -4.72003251e-01\\n3.39651704e-02 -1.60421096e-02 -6.23232126e-02 4.92524296e-01\\n-1.64510719e-02 1.27280802e-01 -3.88157777e-02 -2.85643280e-01\\n4.07037139e-01 -1.82942048e-01 -8.02245066e-02 1.08663850e-01\\n6.57938644e-02 -2.33758911e-01 -2.71264285e-01 4.50135991e-02\\n-1.33240342e-01 -2.20708475e-01 5.43981744e-03 2.07883753e-02\\n6.81371242e-02 1.14125408e-01 -6.96763396e-01 -1.31494328e-01\\n-3.38128626e-01 -2.66433377e-02 -2.57064160e-02 -5.89495063e-01\\n9.37665924e-02 -1.76048622e-01 -4.83618677e-01 3.92892152e-01\\n-2.18248978e-01 1.59633476e-02 2.26147965e-01 -2.03592633e-03\\n-2.53043085e-01 -1.80282846e-01 3.03423852e-01 2.25411966e-01\\n-3.14275414e-01 -1.91533878e-01 -2.80531328e-02 -9.39720631e-01\\n2.66930401e-01 -5.04413843e-02 -2.22142965e-01 2.92951893e-02\\n4.60405312e-02 -5.75743496e-01 1.47720560e-01 -2.36621723e-01\\n-1.12835318e-01 -5.46076670e-02 -2.26170704e-01 -3.88530970e-01\\n9.35971644e-03 -7.93675333e-02 -2.26015106e-01 4.02906537e-01\\n-3.38889658e-01 1.84469283e-01 -2.24166885e-02 2.16775984e-02\\n-2.04286929e-02 -3.47074330e-01 3.10599487e-02 -2.67032415e-01\\n-3.94339442e-01 -1.74878016e-01 -8.28907788e-02 -2.08658576e-01\\n-1.93180924e-04 -4.40714270e-01 -1.09175496e-01 6.83374777e-02\\n2.36038581e-01 -6.47720993e-02 -2.07359180e-01 -6.37338012e-02\\n-4.02890518e-02 -4.36068565e-01 8.02344978e-02 -1.47829279e-01\\n-9.34714600e-02 -1.64646432e-01 1.75696179e-01 7.70144016e-02\\n1.71934247e-01 -3.83518070e-01 4.33824152e-01 -3.38958740e-01\\n-2.44281590e-01 -4.73154634e-02 1.36464551e-01 8.58591031e-03\\n3.32300365e-01 -5.70898592e-01 -1.79186478e-01 4.85027581e-01\\n1.21535219e-01 9.76505410e-03 2.74466872e-01 -2.22782210e-01\\n-2.85697460e-01 4.10868973e-01 -2.47874334e-01 2.06477046e-01\\n7.59367347e-01 2.34027103e-01 2.15660274e-01 1.85695961e-01\\n5.54197058e-02 3.72010559e-01 3.88585508e-01 7.35035837e-02\\n1.14770360e-01 4.62758750e-01 1.29114717e-01 -4.50532645e-01\\n6.51421919e-02 7.48575628e-02 -1.76990125e-02 -3.38613302e-01\\n5.71200788e-01 4.18865412e-01 -4.79401261e-01 -3.71115088e-01\\n-1.93321466e-01 -2.30509773e-01 2.57935256e-01 -3.96324694e-02\\n8.67455155e-02 -2.13403881e-01 4.65888798e-01 4.22241725e-02\\n1.19340211e-01 5.51934600e-01 -1.13279380e-01 -1.61001548e-01\\n-1.25377461e-01 1.63823247e-01 4.23096791e-02 5.02787948e-01\\n-1.01218373e-01 3.05310696e-01 -5.16975336e-02 1.80466488e-01\\n-1.23121917e-01 6.84957281e-02 3.06439400e-01 6.38772696e-02\\n-6.71916008e-02 3.13701838e-01 4.36375111e-01 4.52330589e-01\\n3.90467167e-01 4.19316918e-01 1.97180539e-01 4.10353169e-02\\n4.91685063e-01 4.94395077e-01 5.09132862e-01 9.87051949e-02\\n5.70210889e-02 -5.83960749e-02 6.65263906e-02 1.34733200e-01\\n2.76557297e-01 3.56498957e-01 -8.12474638e-02 8.53647649e-01\\n4.01272386e-01 2.59191155e-01 5.45863628e-01 -5.74813366e-01\\n-2.21465662e-01 9.34437066e-02 4.16498542e-01 -4.43234384e-01\\n-1.01665333e-01 9.72616524e-02 -2.36519665e-01 1.63716167e-01\\n-5.61485291e-01 -1.28513530e-01 -9.49923843e-02 4.80301902e-02\\n1.37602508e-01 -2.54826486e-01 -1.08912319e-01 2.56002657e-02\\n-3.76788527e-02 -2.07991019e-01 -5.21685421e-01 -2.01340169e-01\\n-2.61706352e-01 -1.59582540e-01 -1.58688724e-02 -4.76816446e-02\\n5.23601212e-02 -2.41665795e-01 -8.35303143e-02 1.02412224e-01\\n3.16163391e-01 -1.00517683e-01 -1.23253323e-01 -5.70156612e-02\\n4.24657643e-01 2.49227658e-01 6.50379419e-01 -8.71798173e-02\\n-4.85449545e-02 -1.09967537e-01 -1.61423773e-01 1.47626474e-01\\n2.10443869e-01 3.41736265e-02 5.91592267e-02 3.84093881e-01\\n-3.55219305e-01 -1.77509859e-01 1.67385608e-01 3.86279911e-01\\n-4.82749164e-01 1.87266737e-01 1.45087525e-01 3.19950968e-01\\n9.58703905e-02 1.88496649e-01 -1.79843903e-01 -3.18964124e-02\\n-3.08908075e-02 -5.10407269e-01 3.40934604e-01 2.78361328e-03\\n-1.12154096e-01 -6.76452518e-02 3.03985864e-01 3.73336256e-01\\n-1.07625850e-01 -1.99855298e-01 -8.22607577e-02 1.28288463e-01\\n4.12612483e-02 2.98357785e-01 -3.38464051e-01 -2.86627203e-01\\n-4.40334797e-01 1.09875180e-01 -5.98270334e-02 8.50374252e-02\\n-7.56504759e-03 2.46335596e-01 1.15903437e-01 2.67920941e-01\\n3.53387326e-01 -1.08669966e-01 -1.63407981e-01 -1.41656354e-01\\n-2.09220603e-01 -8.75437409e-02 1.10776484e-01 -7.38353282e-02\\n2.71980941e-01 -4.22552913e-01 -2.09828228e-01 -2.45986238e-01\\n-1.38953432e-01 -3.73937756e-01 4.29354645e-02 -8.54095817e-02]]',\n", + " 'Job Informationen Your tasks: You are the key contact person for the consolidation and analysis of needs of our scientists and will compile the information needed for strategic decisions of the board of directors. As a coordinator you will identify, propose and support solutions for relevant topics such as: - high performance data management documentation, exchange and curation systems - e-lab journals, repository systems, data management plans - identification, architecture and design of new technologies As contact person for data management you will lead a user group consisting of experts out of our research departments and you will organize and partly lead trainings and workshops or working groups and coordinate various activities with external partner. Your profile: You have a university degree (MSc degree) in computational science, or a related scientific discipline. You have already demonstrated experience in research and project management. You are interested to work closely together with our researchers on data science questions. You are a team player and your strengths include taking personal responsibility, high motivation for excellence, flair for elaborating out-of-the-box solutions. Strong interpersonal and communication skills are essential alongside the ability to collaborate with peers and scientific partners. Excellent communication skills in English and German are mandatory. The position is first limited to 2 years. Benötigte Skills Englisch Datawarehouse',\n", + " '[\"Coordinating\", \"Research\", \"Verbal Communication Skills\", \"Collaboration\"]',\n", + " '[\"MSC Software\", \"Compilers\", \"Computer Science\", \"Data Management\", \"Strategic Decision-Making\", \"Instructor-Led Training\", \"Journals\", \"Activism\", \"E (Programming Language)\", \"Data System\", \"Limiter\", \"Data Science\", \"Consolidation\", \"Data Management Plan\", \"Personalization\", \"High Performance Fortran (Concurrent Programming Language)\", \"Clinical Data Management\", \"Group Work\", \"Project Management\", \"Curation\", \"Document Management\"]',\n", + " \"['English', 'Limburger', 'Armenian', 'Burmese', 'Marshallese']\"],\n", + " ['75',\n", + " 'backend engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.93609878e-01 2.38891289e-01 4.06519204e-01 8.61738622e-02\\n4.30715382e-01 -3.36003989e-01 -1.61139861e-01 4.15474802e-01\\n-2.22977281e-01 -4.06614542e-01 3.22800167e-02 -2.33797461e-01\\n-1.81276754e-01 3.70774493e-02 1.14459306e-01 3.06226760e-01\\n2.59609461e-01 1.38207167e-01 -1.49424911e-01 2.96247959e-01\\n2.26440821e-02 -1.15986533e-01 -7.01595917e-02 6.96500957e-01\\n2.38875687e-01 2.42276047e-03 -7.36258850e-02 8.17331579e-03\\n-3.74730796e-01 -2.12735474e-01 3.14971775e-01 8.04221109e-02\\n-1.93355992e-01 -3.48446935e-01 1.14553824e-01 -1.63933206e-02\\n-5.59780225e-02 5.46178818e-02 -4.02057730e-02 1.58703566e-01\\n-3.46587300e-01 -3.32108766e-01 6.46114647e-02 -1.01506516e-01\\n-1.74282655e-01 -2.04824984e-01 1.58100843e-01 1.23577155e-02\\n1.80191755e-01 -5.01877740e-02 -6.75082028e-01 2.83348083e-01\\n-2.94771165e-01 -1.77697107e-01 2.59799689e-01 4.32879180e-01\\n-9.26483870e-02 -5.27739286e-01 -3.44643801e-01 -2.36072272e-01\\n-3.45843919e-02 -2.29838520e-01 -3.18135917e-02 -2.46542886e-01\\n4.45711583e-01 5.74431792e-02 5.61939552e-02 3.09277266e-01\\n-8.14386129e-01 2.50118244e-02 -2.65291959e-01 1.99728534e-02\\n-3.72764885e-01 -9.62876305e-02 -1.77409217e-01 -8.27456713e-02\\n-1.31562427e-01 3.56826633e-01 9.23013389e-02 1.01975895e-01\\n-1.28166929e-01 3.41862798e-01 -4.89135161e-02 2.48563722e-01\\n2.97479749e-01 1.69398651e-01 1.25267029e-01 3.27102959e-01\\n-3.98054957e-01 4.20897961e-01 5.09159975e-02 -1.93239093e-01\\n1.64171532e-01 2.00794071e-01 4.55226481e-01 -1.19181676e-03\\n5.25993556e-02 1.89613581e-01 -2.00487807e-01 2.93803096e-01\\n1.45152658e-01 -3.49965125e-01 8.76319483e-02 -1.85571685e-01\\n-3.33059840e-02 -3.20639014e-02 -8.61280039e-03 2.72219449e-01\\n-2.23039925e-01 4.03921366e-01 9.93230939e-02 -1.35570511e-01\\n-4.14746962e-02 -4.92252499e-01 -1.07711010e-01 1.11355364e-01\\n-1.04618661e-01 4.85642366e-02 2.16749683e-01 2.86736665e-03\\n3.32172841e-01 2.07647771e-01 1.98120639e-01 9.30774868e-01\\n-1.64547250e-01 1.20297529e-01 -2.23193675e-01 2.93913275e-01\\n2.06457078e-01 -3.05778980e-01 1.92143530e-01 3.55971813e-01\\n1.32995337e-01 -1.19181678e-01 -2.06582144e-01 2.63321638e-01\\n-1.14014521e-01 -1.08888298e-01 -3.24816316e-01 1.07738346e-01\\n-5.34843318e-02 -4.39587772e-01 5.70724070e-01 2.10099176e-01\\n3.10971588e-01 1.33211896e-01 6.17062300e-02 -6.54556081e-02\\n-1.67697757e-01 2.17937693e-01 2.98321620e-02 3.95708978e-01\\n-3.12394023e-01 -2.07883716e-01 -1.46958038e-01 2.38432676e-01\\n-2.57893324e-01 1.56059146e-01 -4.17890362e-02 -1.27407759e-01\\n2.68129200e-01 1.47033066e-01 -3.21199149e-01 2.32876346e-01\\n-1.22794658e-01 -8.21662322e-02 -1.24143466e-01 4.21050042e-01\\n-9.30321515e-02 3.07438165e-01 -8.63883644e-02 -8.50551799e-02\\n3.67024392e-01 4.13951501e-02 2.15933882e-02 -6.62171543e-02\\n3.52650434e-01 -9.36069936e-02 1.92063496e-01 8.87553915e-02\\n-7.27480292e-01 3.16697806e-01 1.00090923e-02 -2.19500527e-01\\n4.24255766e-02 8.01644698e-02 3.02408308e-01 -2.62604147e-01\\n-4.88790423e-02 -1.56213805e-01 -4.13161844e-01 -2.36048266e-01\\n-3.19609612e-01 1.34402290e-02 5.10799348e-01 -3.87044489e-01\\n-1.13480836e-01 1.59627795e-01 -4.51957405e-01 -2.31548818e-03\\n1.46003291e-01 2.20162228e-01 8.68461803e-02 -9.90828220e-03\\n-1.54263660e-01 -5.71936309e-01 -1.91813540e-02 -4.70927209e-01\\n-4.51677084e-01 1.20089911e-01 -2.75478691e-01 2.59934515e-01\\n1.17856026e-01 6.19736463e-02 -1.28895000e-01 9.96115282e-02\\n-1.53735220e-01 -8.12084526e-02 1.64510593e-01 7.38456398e-02\\n3.23495746e-01 -9.34387222e-02 -3.81825566e-01 5.07051528e-01\\n-1.89304501e-01 4.31637198e-01 2.24017218e-01 -7.86682129e-01\\n5.20439684e-01 2.74043739e-01 -2.99668219e-02 -3.13462645e-01\\n3.44040006e-01 -3.81539524e-01 -6.39368445e-02 1.96082950e-01\\n-3.24838191e-01 -2.26552024e-01 1.98541224e-01 -1.54704243e-01\\n-3.28236192e-01 4.71681178e-01 1.40720382e-01 5.63852228e-02\\n3.13498616e-01 -4.33293134e-01 -7.83182159e-02 1.27258673e-01\\n-1.06406502e-01 -1.69061497e-01 -3.92591506e-01 9.94565040e-02\\n-4.80437055e-02 -4.98033851e-01 -1.40958935e-01 -2.57244170e-01\\n-1.20046243e-01 -2.53951907e-01 -3.18261802e-01 4.51069862e-01\\n2.66787469e-01 1.67708591e-01 9.88931954e-03 -1.66336056e-02\\n-4.58749570e-02 -6.88831985e-01 -5.52613437e-02 5.17901108e-02\\n5.06908178e-01 2.22246930e-01 3.00061423e-02 -1.48189127e-01\\n7.61991441e-02 4.98650491e-01 -2.72759050e-01 -4.26857024e-01\\n-2.43592970e-02 2.61391342e-01 -4.54875566e-02 -1.18633829e-01\\n1.27020419e-01 3.54829013e-01 -1.84543654e-01 2.92894486e-02\\n-7.42090195e-02 -1.04620993e-01 3.75977576e-01 -8.64647776e-02\\n-4.39321637e-01 -2.64059275e-01 -3.06752715e-02 1.57340258e-01\\n-6.35601878e-01 -1.54002532e-01 5.35644293e-01 3.23377192e-01\\n2.93191224e-01 1.43129870e-01 1.90904245e-01 -6.30392432e-02\\n-2.00198635e-01 -2.56239027e-01 1.30318984e-01 1.79456592e-01\\n4.58607972e-02 -9.91028640e-03 -1.02244593e-01 -6.28867209e-01\\n-3.56497335e+00 -1.09059595e-01 2.95530744e-02 -2.01199010e-01\\n1.51337430e-01 -3.90374698e-02 8.31093714e-02 -2.36304998e-02\\n-2.40197793e-01 5.50046377e-02 -1.55483678e-01 -3.31812501e-02\\n3.34858485e-02 3.66769046e-01 1.48168042e-01 2.89231867e-01\\n1.93419337e-01 -2.58534819e-01 -1.26192480e-01 2.91335732e-01\\n-3.32587436e-02 -6.20354533e-01 1.36375114e-01 -1.18142828e-01\\n2.46186942e-01 3.04621696e-01 -3.31380665e-01 1.43322451e-02\\n-2.59599864e-01 -2.68341511e-01 -1.53494999e-01 -1.76931530e-01\\n-1.97081149e-01 1.16458192e-01 6.44529685e-02 -1.32931620e-01\\n1.55163378e-01 -3.02147418e-01 -1.07161582e-01 -4.40383226e-01\\n9.55890939e-02 -5.82825780e-01 -7.76957721e-02 -1.27146691e-01\\n5.73833227e-01 -2.02072829e-01 1.73009068e-01 7.46131167e-02\\n2.10641861e-01 2.12821007e-01 -8.39439854e-02 1.16213341e-03\\n-9.89572853e-02 -4.18801725e-01 -1.18972965e-01 -2.75553346e-01\\n5.45228302e-01 5.61980426e-01 -2.41372064e-01 1.25805782e-02\\n1.54746547e-01 -4.06510532e-01 -2.86750644e-01 -3.52933437e-01\\n-1.56786039e-01 -2.24532202e-01 -7.57250547e-01 -4.33150202e-01\\n-1.35912135e-01 -3.32371332e-02 -1.81100398e-01 5.64168572e-01\\n-3.49484354e-01 -4.85767275e-01 1.13857023e-01 -6.55135572e-01\\n1.34307534e-01 -1.33043200e-01 1.39974430e-01 -2.74026275e-01\\n-2.29048133e-01 -4.89738882e-01 3.58809344e-02 4.80971374e-02\\n-1.65877774e-01 -1.67593494e-01 4.86486889e-02 -2.02189684e-01\\n-1.89152449e-01 -3.54811162e-01 4.06996608e-01 8.73230770e-02\\n3.26633424e-01 2.06164971e-01 3.51561010e-01 6.33392017e-03\\n2.87124157e-01 3.16155888e-02 -2.42189933e-02 -3.94499272e-01\\n1.97839543e-01 2.54175495e-02 5.35093725e-01 -2.28016257e-01\\n-3.70822437e-02 2.56957918e-01 -2.74864316e-01 -1.72441691e-01\\n3.40094924e-01 1.25207439e-01 -3.68755348e-02 -6.99666813e-02\\n3.77682418e-01 -4.86819208e-01 -2.50421137e-01 2.89516091e-01\\n3.14677693e-02 6.27655566e-01 2.67627067e-03 -4.07129467e-01\\n-2.93779939e-01 5.02326727e-01 -4.95841689e-02 -2.20926069e-02\\n-7.29439314e-03 1.67353258e-01 -1.13846846e-01 3.03356677e-01\\n-2.55704410e-02 -2.27774605e-01 -2.19074965e-01 -1.00820020e-01\\n-1.48912519e-02 9.50258076e-02 2.78793752e-01 5.22605069e-02\\n-1.07417010e-01 -2.20965907e-01 -1.10825241e-01 2.27296069e-01\\n1.15736507e-01 4.09057498e-01 9.79579911e-02 -1.35097861e-01\\n-1.13826342e-01 3.99900675e-01 -7.19479099e-02 2.14880407e-01\\n-1.27812982e-01 8.08658004e-02 -4.81646746e-01 -2.99193949e-01\\n-2.26996407e-01 -3.35824043e-01 -1.60585716e-02 3.69948566e-01\\n9.82603356e-02 1.85063314e-02 1.04750998e-01 -4.31171715e-01\\n2.97974497e-01 2.32055530e-01 1.35562375e-01 8.32751691e-02\\n4.72751819e-02 4.55825627e-01 -2.82913167e-02 -1.81868866e-01\\n-2.64092475e-01 3.11721917e-02 -2.47771934e-01 -1.77410111e-01\\n8.89511481e-02 -4.98778582e-01 -6.30569011e-02 3.77205878e-01\\n1.12663455e-01 -1.19142421e-01 -2.32778132e-01 3.34653616e-01\\n1.30876824e-01 -2.34998763e-01 -2.06198379e-01 9.22033489e-02\\n2.89426178e-01 3.80586609e-02 2.05401108e-01 -2.96563178e-01\\n-1.38198838e-01 2.89196800e-02 -1.74159575e-02 3.57182264e-01\\n1.22165747e-01 3.35684717e-02 -2.02647895e-01 -2.37464920e-01\\n4.63229746e-01 -5.35888299e-02 -1.29708782e-01 -1.89220220e-01\\n2.00605448e-02 -1.16237901e-01 -3.91905874e-01 1.16337918e-01\\n-2.55453889e-03 -6.86675310e-02 1.18453857e-02 6.07794374e-02\\n1.97381109e-01 1.53668895e-01 -4.19552833e-01 -2.13881642e-01\\n-2.68490940e-01 -2.54990816e-01 9.55193639e-02 -2.67180711e-01\\n8.25620368e-02 -5.32196239e-02 -5.24900377e-01 2.15598673e-01\\n-3.72449130e-01 -3.28205116e-02 1.60175920e-01 1.21457875e-01\\n-3.71385604e-01 -1.22445514e-02 3.55883427e-02 2.43479848e-01\\n-2.84140080e-01 -3.29540282e-01 -1.27125725e-01 -9.54927325e-01\\n2.62994736e-01 -2.15929113e-02 -1.31272033e-01 2.29328889e-02\\n-5.55946641e-02 -5.28777301e-01 8.80087018e-02 -4.27142113e-01\\n-1.35827914e-01 -9.56085250e-02 -1.93846345e-01 -2.57752895e-01\\n2.83961631e-02 -1.86536327e-01 -3.61455292e-01 3.05089831e-01\\n-4.34960246e-01 2.67076105e-01 -1.04473136e-01 3.08978353e-02\\n1.59328002e-02 -2.91863114e-01 1.57511756e-01 -3.22308868e-01\\n-4.21874553e-01 -3.29817414e-01 -2.85484910e-01 -2.63700336e-01\\n1.65135544e-02 -3.33607763e-01 -2.31386229e-01 1.34944648e-01\\n3.32801700e-01 2.06625700e-01 -2.04392746e-01 -2.01781780e-01\\n1.41719446e-01 -4.08606708e-01 -1.87410060e-02 -2.61192799e-01\\n-2.63936948e-02 -3.14512625e-02 3.41264099e-01 2.63043698e-02\\n1.14875734e-01 -4.06881154e-01 4.87597555e-01 -2.83275306e-01\\n-3.52412343e-01 -5.08526340e-02 7.50014931e-02 2.49135233e-02\\n2.39399076e-01 -5.32572627e-01 -3.96086928e-03 2.39025190e-01\\n1.34059623e-01 8.01380649e-02 2.15935051e-01 1.32551156e-02\\n-3.40506099e-02 2.00467199e-01 -4.40197736e-01 5.45715913e-02\\n6.91948175e-01 1.50111631e-01 -1.32525647e-02 2.74009436e-01\\n9.68970284e-02 4.82644707e-01 5.02747834e-01 4.70060818e-02\\n-4.54125926e-02 2.57688522e-01 1.18416458e-01 -4.61049050e-01\\n-9.44672748e-02 -5.70178702e-02 -2.14389935e-01 -2.51579702e-01\\n5.80012918e-01 4.97951359e-01 -4.62980747e-01 -3.10142189e-01\\n8.26426223e-03 -1.38878793e-01 2.76910514e-01 -5.78650692e-03\\n-1.75659321e-02 -1.74563751e-01 4.13125604e-01 -1.73979476e-02\\n1.82498664e-01 6.18550777e-01 -2.02543497e-01 -3.57427508e-01\\n-1.72339514e-01 1.78634912e-01 1.07070766e-01 5.20022571e-01\\n-2.14211613e-01 1.14053443e-01 -5.12657054e-02 1.68751761e-01\\n-1.81583334e-02 2.80707985e-01 1.73050076e-01 4.02726941e-02\\n2.26445660e-01 9.24593806e-02 3.53091866e-01 5.52189708e-01\\n1.97609529e-01 4.55545247e-01 2.31048226e-01 2.76453495e-02\\n3.91012192e-01 5.79747736e-01 4.00589377e-01 7.03532696e-02\\n7.84077048e-02 3.33520584e-02 1.11131221e-01 -7.91525543e-02\\n4.17556673e-01 3.62965763e-01 3.53308201e-01 8.84305596e-01\\n3.17459077e-01 1.74994960e-01 7.03384638e-01 -6.07203960e-01\\n-3.31194848e-01 2.77323425e-02 4.10406977e-01 -2.76196927e-01\\n-1.63556769e-01 2.03860238e-01 -2.53282338e-01 2.22693563e-01\\n-5.18233478e-01 -8.51147845e-02 2.46700714e-03 -2.14886051e-02\\n4.83288020e-02 -6.70591965e-02 -2.50459880e-01 7.66222775e-02\\n-1.04427367e-01 -9.44490880e-02 -2.75075495e-01 -2.52621531e-01\\n-2.58810312e-01 -2.54299715e-02 -9.66081172e-02 -1.48612633e-01\\n4.54210769e-03 -4.13908422e-01 -5.64513765e-02 -7.10941777e-02\\n3.72165203e-01 -1.06282502e-01 3.30390001e-04 -1.42651796e-01\\n7.53116235e-02 3.75107080e-01 6.28862202e-01 8.91210791e-03\\n2.26281077e-01 -1.53021544e-01 -1.58797950e-01 1.04411848e-01\\n1.83248427e-02 2.60638651e-02 6.80985898e-02 2.36380041e-01\\n-3.44355226e-01 -5.78044131e-02 4.09140736e-02 3.98082346e-01\\n-3.22269320e-01 -1.31370157e-01 -1.16176158e-01 2.37682253e-01\\n-3.89103591e-02 1.06229022e-01 -2.14491755e-01 6.19591065e-02\\n-2.59762526e-01 -5.56123495e-01 4.27867442e-01 -1.30392566e-01\\n-4.90329042e-02 2.54992638e-02 2.39688084e-01 1.71841636e-01\\n-2.21876353e-01 -1.11957178e-01 7.04075536e-03 1.77370280e-01\\n-5.51433535e-04 2.96390235e-01 -1.65025413e-01 -2.16927961e-01\\n-2.08410129e-01 2.79140890e-01 -9.12882686e-02 2.19906922e-02\\n-1.73163503e-01 3.68318945e-01 3.82369272e-02 -3.87145840e-02\\n2.72268564e-01 8.05011764e-03 -2.18180999e-01 -2.49690548e-01\\n-3.06666374e-01 -1.14471808e-01 1.37831271e-01 7.59873306e-03\\n2.48591796e-01 -3.64565909e-01 -3.83512788e-02 4.01993887e-03\\n1.16353389e-02 -2.40991428e-01 -1.00444414e-01 -7.91347027e-03]]',\n", + " 'Job Informationen ABOUT THE POSITION: As a Senior Backend Engineer at our company, you build scalable, reliable and secure cloud based distributed data processing systems. You are passionate about complex data processing pipelines and keep up to date with best practices and new technology. You like to mentor your colleagues. You do not believe in big rewrites, but in continuous improvements. You will shape and implement our API services at internet scale. Together with your team, you are going to be constantly improving existing features, reliability, flexibility and scalability of our system. REQUIREMENTS: - Extensive experience with data pipelines, service oriented architecture and distributed systems - Experience with web-scale systems handling hundreds of concurrent requests at low latency - Extensive experience with relational and document oriented Databases - Experience with Docker, Kubernetes on GCP and/or AWS - Fluency in Python, C++ and another language - MSc/PhD in computer science or similar Benötigte Skills Senior C++ Python',\n", + " '[\"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"MSC Software\", \"Kubernetes\", \"Low Latency\", \"System Requirements\", \"Web Operating Systems\", \"Computer Science\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Pipelining\", \"Data Processing Systems\", \"Document-Oriented Databases\", \"Docker (Software)\", \"Handle Systems\", \"Scalability\", \"Continuous Improvement Process\", \"Electronic Data Processing\", \"Google Cloud Platform (GCP)\", \"Amazon Data Pipeline\", \"Application Programming Interface (API)\", \"Custom Backend\"]',\n", + " \"['English', 'Oromo']\"],\n", + " ['125',\n", + " 'natural sciences analyst in the data analytics center 80-100%',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.57026637e-01 2.32859910e-01 4.49538589e-01 2.51548178e-02\\n4.80997980e-01 -1.22811340e-01 -1.84660733e-01 3.95710647e-01\\n-5.45534715e-02 -3.93182874e-01 -1.87619075e-01 -3.27390939e-01\\n-2.68942527e-02 1.70797706e-01 6.34973347e-02 4.91061807e-01\\n4.01009321e-01 -3.90403382e-02 -1.41165122e-01 1.73101842e-01\\n1.14961557e-01 2.94276085e-02 -6.37388974e-03 7.87521958e-01\\n4.24799711e-01 1.53540839e-02 -4.53360938e-02 2.09784389e-01\\n-9.32722986e-02 -2.03079015e-01 5.21673143e-01 1.01629809e-01\\n-1.11199744e-01 -3.08389753e-01 1.08123966e-01 3.45423520e-01\\n-1.89463586e-01 -2.57994652e-01 1.03104617e-02 9.31920558e-02\\n-4.41020846e-01 -2.07396895e-01 -2.56249994e-01 2.99774483e-03\\n-3.44060540e-01 -4.18555379e-01 1.56056300e-01 4.51763347e-02\\n1.78728074e-01 9.71842408e-02 -5.34556985e-01 2.67277926e-01\\n-2.15723664e-01 -1.93916112e-01 2.80144215e-01 6.12116814e-01\\n-3.25951613e-02 -3.85909796e-01 -4.62889642e-01 -3.14310908e-01\\n-1.61973722e-02 1.03870193e-02 7.69643337e-02 -3.60796928e-01\\n5.45450985e-01 1.55598924e-01 -5.07377982e-02 3.48809659e-01\\n-8.46281052e-01 -2.54447907e-01 -2.78374255e-01 8.86999890e-02\\n-4.10117805e-01 -2.42118910e-02 -3.07875961e-01 -3.25006306e-01\\n-1.12284027e-01 3.49935472e-01 -3.58467773e-02 7.70632923e-02\\n-8.21742490e-02 3.30984592e-01 -1.51708692e-01 2.51516461e-01\\n1.28069192e-01 3.22894782e-01 2.13751376e-01 1.80065840e-01\\n-4.23576057e-01 3.60498965e-01 3.87176797e-02 -2.50796497e-01\\n2.10082620e-01 1.96960568e-01 5.14130116e-01 6.04663454e-02\\n2.28174776e-01 3.01261023e-02 -3.45859945e-01 3.34119916e-01\\n2.15730801e-01 -2.73031831e-01 5.89941293e-02 -5.78461327e-02\\n-4.04592976e-02 7.71831125e-02 7.44080590e-03 5.35540655e-02\\n-6.39500499e-01 4.05967832e-01 -2.58963741e-02 -1.59378290e-01\\n-1.04025096e-01 -5.57688296e-01 -7.46137723e-02 2.05339700e-01\\n9.54833552e-02 6.00272119e-02 2.62174103e-02 2.21273273e-01\\n1.14882171e-01 -1.11209609e-01 1.49443239e-01 8.08853865e-01\\n-2.08337545e-01 1.03631347e-01 -7.34756663e-02 3.28317583e-01\\n6.19633161e-02 -4.33119774e-01 3.78388941e-01 1.87561601e-01\\n1.08988397e-01 -1.70387745e-01 -1.73783183e-01 2.32716531e-01\\n-9.32767242e-02 -2.16305017e-01 -4.03837621e-01 4.00942534e-01\\n-7.67959207e-02 -5.38568616e-01 6.38004184e-01 -1.47096679e-01\\n1.64926335e-01 -1.09805048e-01 -3.99201885e-02 -7.18866214e-02\\n-1.56253502e-02 1.96676075e-01 9.17166471e-02 8.61058086e-02\\n-3.64854276e-01 -1.91198319e-01 -1.94103539e-01 1.42814532e-01\\n-4.05855834e-01 3.68909031e-01 -5.29045910e-02 -3.41837592e-02\\n2.72442937e-01 -1.65721506e-01 -3.78602564e-01 1.32145315e-01\\n-1.09018356e-01 -1.52125686e-01 -1.68152303e-02 3.45511705e-01\\n-2.73657978e-01 3.45603287e-01 -9.80914831e-02 -3.44916314e-01\\n5.18423736e-01 -1.66100096e-02 1.79128438e-01 -9.52855051e-02\\n2.41020843e-01 1.10802222e-02 2.17567071e-01 9.62459445e-02\\n-9.51022685e-01 3.58012259e-01 -6.82983696e-02 -2.56234527e-01\\n4.77700904e-02 -5.43281212e-02 3.20888788e-01 -3.55847061e-01\\n3.50575112e-02 -5.23100756e-02 -2.15538830e-01 -2.24566191e-01\\n-3.54361832e-01 -1.91397220e-03 4.13029253e-01 -3.57138634e-01\\n-6.19838051e-02 1.85428426e-01 -6.48666620e-01 -1.50099248e-01\\n2.77622789e-03 6.16695881e-02 2.33756259e-01 1.59729227e-01\\n-5.99138364e-02 -6.18933558e-01 -5.98843656e-02 -4.58616912e-01\\n-2.13881373e-01 1.10051550e-01 -3.40521485e-01 2.26632237e-01\\n9.17410403e-02 2.67065540e-02 -6.05090484e-02 1.00387201e-01\\n-3.03604960e-01 1.49411008e-01 1.78440809e-01 2.41558328e-02\\n4.22505319e-01 1.37451708e-01 -2.93442428e-01 5.30336082e-01\\n5.26351808e-03 5.79741538e-01 1.15536407e-01 -6.10773981e-01\\n6.34115100e-01 5.60458899e-01 5.88066429e-02 -3.41705859e-01\\n7.68642545e-01 -2.79623061e-01 -2.65128970e-01 1.64247870e-01\\n-5.17295718e-01 -2.30743378e-01 2.82620370e-01 -3.74629498e-01\\n-1.85256630e-01 6.19185209e-01 4.99050096e-02 2.19829753e-01\\n2.67357349e-01 -3.23548019e-01 -1.60016790e-01 2.73893237e-01\\n-1.66666746e-01 -4.09484565e-01 -4.98129070e-01 -9.21313688e-02\\n-2.18864664e-01 -4.43600565e-01 -2.86780417e-01 -3.66399109e-01\\n-6.08428717e-02 -2.76474983e-01 -4.69804853e-02 2.45209485e-01\\n2.68670946e-01 1.48205876e-01 -6.63997829e-02 -3.56292576e-02\\n-1.16876923e-01 -5.48016071e-01 -3.35141793e-02 -1.23014562e-01\\n2.78979421e-01 1.17278479e-01 -3.97346821e-03 -2.98613757e-02\\n1.28887758e-01 5.45204997e-01 -5.90454996e-01 -3.58010232e-01\\n1.53878808e-01 1.11363992e-01 -1.49001077e-01 -9.94416326e-02\\n1.82871968e-01 2.62295634e-01 -4.45262730e-01 4.85505797e-02\\n-2.04700381e-01 1.39749035e-01 2.51096010e-01 -5.24999984e-02\\n-1.19583309e-02 -3.15133482e-01 -1.32949978e-01 2.06718504e-01\\n-3.90434504e-01 -3.06351721e-01 3.97500098e-01 6.45411983e-02\\n1.82518095e-01 1.17900390e-02 1.69844478e-01 1.89772081e-02\\n-4.10269916e-01 -3.58275145e-01 1.93300679e-01 1.62263632e-01\\n8.06408525e-02 2.38803267e-01 -1.84621420e-02 -4.33840066e-01\\n-3.01369357e+00 -9.25986003e-03 2.71226522e-02 2.88780667e-02\\n2.41721958e-01 -9.19614583e-02 9.53968242e-02 -1.27794430e-01\\n-3.56067061e-01 -3.76129411e-02 -2.84587443e-01 -3.65566522e-01\\n6.43449500e-02 3.26058656e-01 1.97178990e-01 1.71657294e-01\\n4.54631373e-02 -3.98157537e-01 5.04033677e-02 4.05748069e-01\\n-1.98825121e-01 -7.34363675e-01 1.00544751e-01 -1.77852884e-02\\n2.72573799e-01 3.26390594e-01 -4.44615573e-01 -1.22324243e-01\\n-3.77843887e-01 -3.32682520e-01 2.77853876e-01 -3.77132684e-01\\n-5.85132018e-02 4.68275964e-01 3.62387419e-01 5.06925881e-02\\n8.85643512e-02 -2.49168128e-01 -2.06807554e-01 -4.21991050e-01\\n1.27034932e-01 -5.22061706e-01 -4.78484072e-02 -1.07993633e-01\\n7.50361800e-01 -2.46234536e-01 1.64006770e-01 1.42132133e-01\\n9.56447572e-02 1.49268121e-01 2.07988136e-02 9.36464965e-02\\n-2.22134590e-01 -2.49629468e-01 -1.20853513e-01 -2.74069279e-01\\n5.03938198e-01 5.81365943e-01 -2.17699885e-01 -7.17258006e-02\\n1.51621580e-01 -2.58919388e-01 -4.84758794e-01 -3.56745064e-01\\n-3.02731693e-01 -7.63115808e-02 -6.53507531e-01 -4.33541000e-01\\n1.22266700e-02 -8.61201435e-02 9.29719061e-02 6.39364302e-01\\n-3.54325533e-01 -2.19040900e-01 -7.25362897e-02 -5.98300040e-01\\n3.17874789e-01 -2.71902025e-01 2.73977406e-02 -1.41174957e-01\\n-1.30984172e-01 -5.70347190e-01 5.47683872e-02 5.62292859e-02\\n2.99988985e-02 -3.14170897e-01 1.22435212e-01 -2.67989993e-01\\n-3.44589651e-01 -5.15109360e-01 3.46117795e-01 9.28433985e-02\\n3.35208863e-01 2.59848922e-01 7.12175444e-02 4.05142456e-03\\n3.14271271e-01 6.22371025e-02 -4.83980216e-02 -3.21013927e-01\\n2.37014264e-01 -3.14252190e-02 3.50010157e-01 -2.20663249e-01\\n-7.88869038e-02 -2.24479288e-03 -2.32809201e-01 -6.40945509e-02\\n2.43184239e-01 4.75468114e-02 7.41802529e-02 -2.92238295e-01\\n2.97158450e-01 -3.85935724e-01 8.52149650e-02 1.90458402e-01\\n-2.49815732e-03 6.39606059e-01 -2.68411953e-02 -2.19962552e-01\\n-1.06874026e-01 4.31823432e-01 2.45202314e-02 3.44640948e-02\\n4.93701585e-02 1.28278717e-01 -3.21355581e-01 1.23101771e-01\\n-1.68633945e-02 -1.90198392e-01 -3.13608706e-01 -8.11837316e-02\\n-1.29237413e-01 4.52779114e-01 3.01990867e-01 2.26245284e-01\\n-2.10702077e-01 -4.33065146e-01 3.85124572e-02 2.88214266e-01\\n4.01564062e-01 3.81129503e-01 1.81791902e-01 -2.31978312e-01\\n1.65736407e-01 3.30299556e-01 -9.77759510e-02 2.72958249e-01\\n-2.68060625e-01 1.13535941e-01 -4.45803642e-01 -2.44421035e-01\\n-3.07307631e-01 -1.60357624e-01 3.11684012e-01 3.22335184e-01\\n1.17697671e-01 -7.86273926e-02 1.40108496e-01 -2.56674290e-01\\n2.11889625e-01 1.78246737e-01 2.19879150e-01 7.79627860e-02\\n-3.41139585e-02 5.86338282e-01 -1.58264846e-01 -1.27774790e-01\\n-1.26485825e-01 5.37346900e-02 -2.02410668e-01 -2.54812121e-01\\n5.96531294e-02 -5.43468654e-01 -1.78533524e-01 2.56937742e-01\\n1.26081288e-01 -1.38659909e-01 -1.77114591e-01 1.64927959e-01\\n7.37129524e-02 -4.26522344e-01 -2.69472569e-01 3.13849300e-02\\n4.05274540e-01 2.44829357e-01 2.36457422e-01 -5.19285500e-01\\n3.90290990e-02 8.07213038e-02 5.95652983e-02 3.69214296e-01\\n1.58686787e-02 5.24478965e-02 -3.23414743e-01 -3.29418272e-01\\n2.93491066e-01 -2.64199942e-01 -4.00011204e-02 9.75667536e-02\\n5.13917282e-02 -6.48334250e-02 -3.00796986e-01 3.90332490e-02\\n-7.95642436e-02 -2.39373431e-01 1.27652176e-02 4.66234349e-02\\n1.16232663e-01 9.41022113e-03 -7.49878109e-01 -1.96364552e-01\\n4.27595712e-02 1.04536831e-01 4.76645902e-02 -4.39880252e-01\\n3.45617384e-02 -2.61739194e-01 -6.19036198e-01 2.71417648e-01\\n-1.87229097e-01 -9.29183662e-02 3.03549886e-01 -9.23155844e-02\\n-2.88450152e-01 -1.23714231e-01 1.33523107e-01 2.65539348e-01\\n-2.96349823e-01 -2.33279362e-01 3.23117822e-02 -9.61833537e-01\\n1.36610880e-01 -1.06027767e-01 -1.45877868e-01 -1.34234987e-02\\n4.05852012e-02 -6.24699116e-01 -1.61697119e-02 -3.52300882e-01\\n-3.01595815e-02 1.28174461e-02 -2.65058011e-01 -3.34245294e-01\\n1.24676473e-01 -2.07298994e-03 -1.12535149e-01 4.65211421e-01\\n-3.40684533e-01 2.08662748e-01 -9.98018682e-02 -1.08090229e-03\\n-7.04711452e-02 -3.15981746e-01 7.85160884e-02 -1.78168193e-01\\n-2.67534167e-01 -2.92007804e-01 -1.19538620e-01 -2.74561763e-01\\n5.94165735e-03 -4.36324805e-01 -1.00406162e-01 8.87636617e-02\\n1.89011216e-01 -1.54783845e-01 -1.62415236e-01 -2.05399036e-01\\n1.76479712e-01 -3.96805048e-01 4.96299602e-02 -1.03275657e-01\\n-8.74767751e-02 -1.09891616e-01 7.98672587e-02 1.49992362e-01\\n2.70124882e-01 -2.58046716e-01 4.42743182e-01 -5.01851261e-01\\n-4.42844242e-01 -6.45101592e-02 1.90198235e-02 -8.62704813e-02\\n2.76149064e-01 -5.21948934e-01 -5.89596555e-02 5.15529275e-01\\n9.91999358e-02 -2.89785434e-02 2.62380362e-01 -3.02511573e-01\\n-5.61039969e-02 2.75320441e-01 -3.62686753e-01 4.52141203e-02\\n8.41727614e-01 2.58628964e-01 1.69141591e-01 2.11347669e-01\\n1.39386319e-02 2.88870871e-01 5.00673294e-01 -2.10309811e-02\\n-2.34550536e-02 3.79900962e-01 3.08323950e-01 -3.57062221e-01\\n-2.04509437e-01 8.08746740e-03 -1.37418360e-02 -3.08307022e-01\\n5.64902663e-01 3.32624018e-01 -4.47578967e-01 -2.53448695e-01\\n-1.21224403e-01 -7.70931244e-02 2.81691968e-01 -5.45202009e-02\\n-9.25263017e-03 -1.12561271e-01 3.41794401e-01 -1.72428358e-02\\n1.89360797e-01 5.46753168e-01 -1.52272701e-01 -1.66926399e-01\\n-1.24997534e-01 2.82572925e-01 -5.51241636e-03 4.45639849e-01\\n-1.14057139e-01 4.88606989e-01 -4.75103222e-02 1.27330065e-01\\n-7.71888271e-02 2.03393735e-02 2.07223326e-01 1.83528010e-02\\n6.85198084e-02 3.05145442e-01 3.52287441e-01 5.30791044e-01\\n3.33111644e-01 4.07866985e-01 1.60128489e-01 -2.88168322e-02\\n5.09625256e-01 4.52942550e-01 4.65596467e-01 6.90903366e-02\\n-1.78485960e-02 1.02063738e-01 1.56433553e-01 6.60609230e-02\\n3.14570576e-01 2.35686138e-01 -2.30064690e-02 8.92342806e-01\\n3.05503190e-01 4.02906358e-01 6.81557953e-01 -5.76159835e-01\\n-3.37559819e-01 5.55145331e-02 5.48905730e-01 -4.37043011e-01\\n-3.18805315e-02 -1.70637444e-02 -1.02974996e-01 2.52092272e-01\\n-4.82573569e-01 -9.30496007e-02 -7.10384548e-03 1.51796699e-01\\n2.43809409e-02 -1.30091310e-01 -1.93892628e-01 6.91255508e-03\\n-1.80541307e-01 -2.75741577e-01 -4.48408097e-01 -2.14134976e-01\\n-2.66081750e-01 -1.81547940e-01 -8.90488625e-02 -2.87575088e-02\\n-2.69867741e-02 -2.43930742e-01 2.25435495e-02 -2.05790587e-02\\n4.78397489e-01 -1.95816696e-01 -1.97785676e-01 -2.01633722e-02\\n4.62873816e-01 2.74234325e-01 6.33875489e-01 -6.54845014e-02\\n4.02360857e-02 -2.50678241e-01 -1.90865740e-01 1.19856469e-01\\n3.45932841e-02 5.90173155e-02 8.04963857e-02 2.63062805e-01\\n-2.32039064e-01 -1.52065128e-01 1.05749458e-01 3.21067572e-01\\n-4.82729375e-01 2.09050551e-02 -8.86834115e-02 1.23163007e-01\\n2.90174168e-02 2.28717268e-01 -2.68276185e-01 1.40786961e-01\\n-8.89001340e-02 -5.85573614e-01 2.36395612e-01 -3.11900526e-02\\n-1.48994923e-01 -5.77228554e-02 3.04284632e-01 3.02178234e-01\\n-1.14178017e-01 -2.04233490e-02 -1.49043538e-02 6.24620393e-02\\n4.20494601e-02 3.27142537e-01 -2.23094240e-01 -3.70707750e-01\\n-3.39821547e-01 1.25315398e-01 -2.64248669e-01 -2.79772356e-02\\n-1.44816607e-01 4.03059065e-01 2.28753611e-02 1.07820839e-01\\n4.20216829e-01 6.19112328e-03 -2.10129634e-01 -2.68353790e-01\\n-6.64839000e-02 -2.17292935e-01 -1.02714658e-01 -3.29420753e-02\\n2.31097609e-01 -3.14566046e-01 -3.02571386e-01 -3.95944893e-01\\n1.33118182e-02 -2.33249456e-01 1.08794644e-01 3.77419591e-03]]',\n", + " \"80-100% The University of Basel is the oldest university in Switzerland, and ranked among the best universities in the world due to its research achievements. It counts over 12'000 students and 4'300 researchers in 7 faculties active in domains from humanities and social sciences to natural sciences. The University of Basel is promoting the growing area of Data Science by establishing a university-wide Data Analytics Center (DAC). The goal of the DAC is the advancement of research and the development of transdisciplinary synergies at the University of Basel and its partners. The service and support activities of the DAC will be provided by the Center for Scientific Computing (sciCORE) and the Digital Humanities Lab (DHLab) in collaboration with the Department of Mathematics and Computer Science (DMI). We invite applications for a data analysis support specialist (80-100%) to support quantitative research in biomedical and natural sciences. Your position The successful candidate will provide consulting and execute data analysis in research projects in various domains of natural sciences (life sciences, physics, chemistry). The primary mandate is to support research groups in need of data analysis by applying appropriate statistical, computational, and visualization methods, helping with experimental design, and making fundamental methodological advances. The position will involve hands-on data analysis and contributions to teaching (postgraduate courses), and will be hosted at sciCORE. Your profile Our ideal candidate has a strong and diversified experience (postdoctoral level) in data analysis, in particular with applications involving analysis of complex data sets (multi-scale data) using machine learning, deep learning, and other advanced statistics. Experience in high-performance computing environments (Linux) and knowledge of R and Python are required. Previous work with imaging data or *omics data, and familiarity with at least one state of the art deep learning framework will be an asset. Given the important service aspect of the position, we expect our candidate to be flexible, proactive, capable of following several projects in parallel and to have a curiosity for natural sciences in general. We offer you At sciCORE, you will be part of a highly efficient and motivated team of diverse data analysts (from biostatistics to astrophysics), data managers, and scientific IT specialists. As a member of the DAC you will also join forces with support scientists at the DHLab and DMI. External collaborations and co-authorship in publications can be expected. We support our team members in their own training, networking and career development. You will have the opportunity to contribute in shaping the organization and development of this data analysis platform. The initial contract is for 2 years, with possibility of renewal into a permanent contract. The University of Basel is an equal opportunity and family friendly employer committed to excellence through diversity. Application / Contact We look forward to receiving your complete application via the university's online application portal (see button below). Applications should include a curriculum vitae, list of publications indicating the five most significant papers, a link to your code repository or portfolio of data analysis projects, and names of three potential referees. Applications by email cannot be considered. For further information, please contact Dr. Geoffrey Fucile scicore@unibas.ch. The position will remain open until filled.\",\n", + " '[\"Research\", \"Collaboration\", \"Proactivity\", \"Friendliness\", \"Team Motivation\", \"Teaching\", \"Curiosity\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Physical Chemistry\", \"Social Sciences\", \"Computer Science\", \"Analytics\", \"Life Sciences\", \"Data Management\", \"High Performance Computing\", \"Machine Learning\", \"Physical Science\", \"Visualization\", \"Natural Sciences\", \"Scale (Map)\", \"Activism\", \"Python (Programming Language)\", \"Levelling\", \"Computational Statistics\", \"Executable\", \"DR-DOS\", \"Hosting\", \"Minimum Data Set\", \"Quantitative Research\", \"Data Science\", \"Scientific Computing\", \"Equalization\", \"R (Programming Language)\", \"Biostatistics\", \"Deep Learning\", \"Survey Data Analysis\", \"Receivables\", \"Humanism\", \"Imaging\", \"Astrophysics\", \"Digital Humanities\", \"Logistics Support Activity\", \"Career Development\", \"Centering\", \"Experimental Design\", \"Data Analysis\"]',\n", + " \"['English', 'Kanuri', 'Malayalam']\"],\n", + " ['84',\n", + " 'data management software engineer (w/m)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-4.04619247e-01 2.37983733e-01 5.40266812e-01 -1.12129927e-01\\n4.37007159e-01 -1.66741446e-01 9.36558768e-02 1.43781796e-01\\n-5.95327504e-02 -2.85568804e-01 -8.73139426e-02 -3.11490208e-01\\n-1.39583722e-01 3.46547067e-02 1.82638094e-01 5.57610631e-01\\n2.44249985e-01 3.16596553e-02 -2.86290497e-01 2.62290210e-01\\n8.15777108e-02 2.19135615e-03 -1.83395296e-03 7.27779508e-01\\n4.82069224e-01 -1.06577566e-02 -5.05015664e-02 -9.33204442e-02\\n-2.81174451e-01 -2.42011547e-01 4.95320857e-01 8.96196067e-03\\n-1.20651104e-01 -2.40456611e-01 8.06236491e-02 1.22564416e-02\\n-1.48057103e-01 -1.06481209e-01 1.21796452e-01 1.73215896e-01\\n-4.96022940e-01 -2.60411412e-01 2.62095500e-02 1.38251418e-02\\n-3.01295906e-01 -3.48673105e-01 -1.62118301e-01 3.50100663e-03\\n5.86734824e-02 1.94859207e-02 -5.66971362e-01 3.77061307e-01\\n-3.04460287e-01 -8.67407545e-02 2.38588333e-01 5.48194766e-01\\n4.77187969e-02 -6.60159528e-01 -3.13554347e-01 -2.63900489e-01\\n2.55775660e-01 -7.51654506e-02 1.72610834e-01 -1.17358841e-01\\n2.44545251e-01 -9.78455096e-02 -1.42277703e-01 4.92575258e-01\\n-5.47234476e-01 -2.31302887e-01 -3.20883602e-01 -1.02473021e-01\\n-2.80921131e-01 6.80592237e-03 -2.66840160e-01 -1.10580124e-01\\n-9.71888304e-02 3.42994839e-01 -3.02659478e-02 9.73834097e-03\\n-2.83317894e-01 2.43967295e-01 -5.57391606e-02 2.09963724e-01\\n2.92557299e-01 2.54828036e-01 2.88724452e-01 3.51320118e-01\\n-5.62426984e-01 5.28845251e-01 1.95096627e-01 -4.15902555e-01\\n1.82263881e-01 4.19072211e-02 5.09649217e-01 1.01629868e-01\\n1.08120821e-01 1.42978922e-01 -7.13947639e-02 1.65729195e-01\\n2.17857599e-01 -2.52555430e-01 2.44665697e-01 -8.46438557e-02\\n-2.55009592e-01 9.78587121e-02 5.92012145e-02 2.32916564e-01\\n-3.92669410e-01 3.68564278e-01 3.05657625e-01 -2.71317095e-01\\n-2.13548332e-01 -6.32961214e-01 -1.21821808e-02 -5.68022579e-03\\n-7.13676736e-02 1.82955071e-01 3.73892099e-01 1.40550569e-01\\n2.75219262e-01 -4.41518910e-02 2.56982148e-01 8.66636574e-01\\n1.41872661e-02 1.26892710e-02 -4.14273530e-01 3.25541824e-01\\n1.10272102e-01 -1.38247252e-01 1.38583824e-01 1.94496036e-01\\n4.75180782e-02 -6.52725175e-02 -3.39238822e-01 3.52184981e-01\\n-8.06421489e-02 -2.05381155e-01 -2.65099943e-01 4.25683819e-02\\n-3.20510209e-01 -4.84697640e-01 4.83849496e-01 2.18779724e-02\\n1.63596675e-01 -2.04687044e-01 3.37807052e-02 -8.81746039e-02\\n1.17199585e-01 3.58839929e-01 8.93602595e-02 1.60861626e-01\\n-2.86633253e-01 -1.86741233e-01 -2.15303034e-01 3.45746040e-01\\n-9.84168425e-02 1.60792157e-01 -6.55362234e-02 -9.98022407e-02\\n2.64480740e-01 1.16503663e-01 -3.36339295e-01 2.58920819e-01\\n9.31335315e-02 -3.83129209e-01 -2.39339858e-01 3.04429919e-01\\n-1.87159404e-01 9.06329826e-02 1.20504260e-01 -2.82558709e-01\\n5.19752383e-01 1.43018082e-01 3.21446151e-01 -1.10254951e-01\\n3.34982723e-01 -2.15550095e-01 1.95001960e-01 1.37457967e-01\\n-6.17527902e-01 3.15541923e-01 -7.87449032e-02 -4.68976311e-02\\n1.05896004e-01 6.64212331e-02 2.44559258e-01 -4.23880428e-01\\n5.57942614e-02 -2.21643612e-01 -2.94313461e-01 -5.07443964e-01\\n-1.27429634e-01 -1.25017837e-01 4.02090639e-01 -2.68896610e-01\\n-1.84477210e-01 1.64503783e-01 -4.57849234e-01 -1.02896854e-01\\n2.10981965e-01 1.05404221e-01 2.76525412e-02 1.89035341e-01\\n-1.05318569e-01 -5.74167550e-01 3.17176222e-03 -4.74228531e-01\\n-5.94800651e-01 2.15164591e-02 -1.05155818e-01 2.14459583e-01\\n-2.41729058e-02 3.10297739e-02 -8.35366398e-02 1.39171839e-01\\n-3.50253761e-01 1.09422497e-01 7.46040866e-02 1.94349006e-01\\n2.93067276e-01 -2.10401583e-02 -4.28189695e-01 5.57240784e-01\\n-1.77550480e-01 4.45131987e-01 2.71552801e-01 -8.76573265e-01\\n5.07878959e-01 1.11600816e-01 1.47071555e-01 -3.84725988e-01\\n4.93396819e-01 -4.78541642e-01 1.11739859e-01 1.55768320e-01\\n-3.06489319e-01 -1.61424905e-01 3.56450975e-01 -1.92792878e-01\\n-2.88099974e-01 5.55766046e-01 2.09969431e-01 5.25403954e-02\\n2.23205253e-01 -3.01926821e-01 -4.44831327e-02 -1.43713474e-01\\n-1.59706011e-01 -2.00237438e-01 -4.59070593e-01 2.37458393e-01\\n3.41521055e-02 -6.08120799e-01 -1.42498448e-01 -4.44842309e-01\\n-2.13198870e-01 -3.42192918e-01 -2.08161578e-01 3.53546679e-01\\n2.42999882e-01 1.24524780e-01 1.11621581e-01 -7.79664516e-02\\n-1.20637394e-01 -4.84014243e-01 -2.31873423e-01 1.95983127e-01\\n4.54764992e-01 2.13018864e-01 -9.15084928e-02 5.85114770e-02\\n-4.07321863e-02 6.29579961e-01 -2.68378079e-01 -2.62396902e-01\\n1.45282626e-01 2.31789425e-01 7.99286515e-02 -1.04344845e-01\\n-3.76019627e-04 3.13822210e-01 -7.85001516e-02 4.32799980e-02\\n-6.18564850e-03 3.33624659e-03 5.20001888e-01 3.62874530e-02\\n-1.70965791e-01 -1.37271687e-01 2.88175382e-02 1.97090745e-01\\n-5.59848905e-01 -1.42540261e-01 5.46197951e-01 2.76924551e-01\\n1.55028656e-01 2.68276006e-01 3.25991839e-01 -1.03694253e-01\\n-2.92399228e-01 -2.51350880e-01 1.94376737e-01 9.74271670e-02\\n-9.42894369e-02 -5.86205721e-02 -1.53127804e-01 -3.40821087e-01\\n-2.85217285e+00 -1.88795060e-01 8.91871527e-02 -2.93270886e-01\\n1.11793593e-01 -9.50155631e-02 5.40353321e-02 1.88888106e-02\\n-3.14325631e-01 2.54123181e-01 -1.26362681e-01 -2.08593294e-01\\n9.16382745e-02 1.61194175e-01 9.26532596e-02 1.73650503e-01\\n1.66929603e-01 -1.71514511e-01 -1.51542291e-01 3.25114310e-01\\n-8.72226208e-02 -7.84008026e-01 2.36325994e-01 1.07066128e-02\\n2.11145118e-01 1.19726062e-01 -4.96786267e-01 -3.76782939e-02\\n-3.36528689e-01 -3.32790852e-01 1.26519725e-01 -3.50257486e-01\\n-1.11090176e-01 3.04731518e-01 2.54530996e-01 -1.38892651e-01\\n4.96143885e-02 -4.33304876e-01 -6.62626624e-02 -4.68338072e-01\\n2.27370530e-01 -6.71676695e-01 5.24142049e-02 -1.57562181e-01\\n7.03120589e-01 -3.63721788e-01 1.08109847e-01 4.35707867e-02\\n2.26515263e-01 1.07248716e-01 5.76627254e-03 1.00331218e-03\\n-2.63620168e-01 -3.64444584e-01 7.23023489e-02 -1.44800738e-01\\n3.63338292e-01 5.34996629e-01 -1.85651228e-01 -7.53171090e-03\\n-7.91930314e-03 -2.85261929e-01 -3.88378143e-01 -3.76208991e-01\\n-3.92676264e-01 -1.56235620e-01 -6.93375170e-01 -3.87414664e-01\\n-1.55271247e-01 -1.07208885e-01 -2.15029687e-01 6.76994145e-01\\n-3.23091567e-01 -3.30971569e-01 -5.64591549e-02 -5.44489086e-01\\n1.13336138e-01 -3.74319553e-01 9.50227976e-02 -1.93543166e-01\\n-3.51352990e-01 -5.35526335e-01 2.84751415e-01 -5.11846952e-02\\n-8.59607309e-02 -4.58651856e-02 -5.46038151e-04 -2.23485962e-01\\n-2.80590624e-01 -2.99374610e-01 4.29836422e-01 1.94793969e-01\\n3.72653335e-01 1.76799670e-01 3.39215457e-01 1.62148267e-01\\n2.73224264e-01 -1.83394566e-01 8.96622986e-02 -2.28090391e-01\\n1.13777220e-01 3.39884534e-02 6.75155759e-01 -2.06183940e-01\\n1.39843807e-01 9.27630812e-02 -2.50225365e-01 -7.90078864e-02\\n5.19218922e-01 -5.60257360e-02 8.24456438e-02 -7.16828927e-02\\n3.97831857e-01 -6.23222709e-01 -2.19044089e-01 7.03658462e-02\\n-2.54930090e-02 6.92952991e-01 3.89781594e-03 -4.58891869e-01\\n-2.32829571e-01 3.48263830e-01 -9.64898318e-02 -1.83875874e-01\\n-3.95994991e-01 2.77174264e-01 -2.41616726e-01 3.10650080e-01\\n-1.76558569e-01 -2.08769560e-01 -4.05650616e-01 -1.15276769e-01\\n1.49738509e-02 2.06496015e-01 2.57720381e-01 -7.65000063e-04\\n4.83232215e-02 -2.22599074e-01 -2.77172297e-01 1.79709479e-01\\n4.09779131e-01 3.68144661e-01 1.30963072e-01 -1.97389871e-01\\n-4.37393710e-02 2.51729459e-01 -2.18878135e-01 1.55812651e-01\\n-1.66286543e-01 7.31632859e-02 -4.00317848e-01 -2.74588138e-01\\n-1.69619750e-02 -3.40102255e-01 7.36577734e-02 4.18122441e-01\\n9.39067453e-02 -9.00268331e-02 3.44443768e-02 -3.66995543e-01\\n4.74671423e-01 7.72488341e-02 1.44116610e-01 1.71139553e-01\\n3.50709967e-02 7.12831914e-01 -1.42141372e-01 -4.03422974e-02\\n-1.01996899e-01 -2.06455708e-01 -2.98413903e-01 -1.83103055e-01\\n5.37399873e-02 -2.48847485e-01 -5.99636100e-02 5.33710301e-01\\n6.03590570e-02 -3.34941447e-01 -1.24634756e-02 4.08279240e-01\\n2.58461274e-02 -1.74661115e-01 -2.11270183e-01 1.36494741e-01\\n2.27859169e-01 1.09098926e-01 2.69303143e-01 -3.99424285e-01\\n-2.49650642e-01 1.82069223e-02 -7.86261186e-02 4.70528781e-01\\n1.63750738e-01 2.16054171e-01 -1.42498940e-01 -3.37230057e-01\\n4.91614431e-01 -3.02777261e-01 -2.81928837e-01 8.89430791e-02\\n1.36825651e-01 -1.46780685e-01 -4.68305677e-01 -4.25700322e-02\\n1.25938654e-02 -2.86509663e-01 1.70969367e-01 6.38114437e-02\\n1.44428164e-01 -7.26535404e-03 -5.86546123e-01 -2.51299322e-01\\n-2.54348367e-01 -1.70128066e-02 1.00141779e-01 -5.17459631e-01\\n-6.78743050e-02 -2.26186380e-01 -6.03169024e-01 3.15219253e-01\\n-2.58965820e-01 -5.17338291e-02 8.25141817e-02 1.67500153e-01\\n-3.25172901e-01 -1.97020054e-01 1.64911360e-01 1.29827052e-01\\n-2.44464055e-01 -1.70529023e-01 2.05898136e-02 -9.78021085e-01\\n9.99073982e-02 4.30547968e-02 -1.15357511e-01 -1.54904025e-02\\n-8.92051905e-02 -6.16842747e-01 1.51459068e-01 -2.25688696e-01\\n1.55858826e-02 1.21558681e-01 -1.74848154e-01 -4.15118963e-01\\n1.14509590e-01 -4.48607132e-02 -1.11757629e-01 3.45323801e-01\\n-3.38240057e-01 2.83532441e-01 -1.15263164e-01 7.12145194e-02\\n4.04450260e-02 -2.41171733e-01 2.69744545e-01 -3.17019463e-01\\n-4.24472809e-01 -1.50734916e-01 -4.60670203e-01 -2.84482986e-01\\n7.25717172e-02 -2.55070865e-01 -2.73223966e-01 2.94841938e-02\\n3.70932639e-01 1.77226558e-01 -1.61630258e-01 -2.04684839e-01\\n5.69073744e-02 -4.37787563e-01 2.40399837e-01 -2.60320008e-01\\n-7.59520684e-04 -2.56424040e-01 3.55218127e-02 -3.45481597e-02\\n-4.89706658e-02 -3.05138052e-01 4.13746417e-01 -2.70617336e-01\\n-3.71311367e-01 -1.46093354e-01 5.72561212e-02 1.21661641e-01\\n4.23636138e-01 -4.58766431e-01 2.95110010e-02 1.84038773e-01\\n6.31051585e-02 1.28558025e-01 3.33770335e-01 -1.09484695e-01\\n-1.41081139e-01 3.05547804e-01 -5.24600089e-01 2.37237453e-01\\n7.29221284e-01 2.45229721e-01 7.28756264e-02 2.62991637e-01\\n2.53038913e-01 2.12367058e-01 3.98523778e-01 6.73928438e-03\\n-8.80630836e-02 2.46501848e-01 -1.33792758e-02 -5.46766818e-01\\n-1.59371302e-01 -1.98051453e-01 -2.22146437e-01 -4.31959093e-01\\n5.79992890e-01 3.94977093e-01 -3.29748213e-01 -2.03464001e-01\\n1.03392769e-02 -4.71854322e-02 2.42079481e-01 -1.22004353e-01\\n-8.00133795e-02 9.67349038e-02 6.49829924e-01 6.81088045e-02\\n3.74114037e-01 5.67824483e-01 -1.71621829e-01 -3.62950176e-01\\n-2.26238772e-01 2.73131073e-01 1.12081580e-01 4.49022204e-01\\n-7.55982846e-02 2.46758863e-01 1.81800462e-02 2.28397503e-01\\n7.48162204e-03 -5.31575009e-02 4.60344665e-02 4.39571479e-04\\n1.68793470e-01 1.15588017e-01 1.36030719e-01 3.72072428e-01\\n1.93238571e-01 4.16310579e-01 2.90624470e-01 4.13490459e-02\\n3.95109653e-01 8.31477165e-01 4.60052967e-01 2.18542576e-01\\n6.23000935e-02 -2.00765226e-02 -9.23007354e-02 1.53437881e-02\\n2.89922953e-01 3.11228842e-01 -3.01881172e-02 8.65579605e-01\\n2.89954245e-01 2.57361382e-01 5.90918660e-01 -5.42949975e-01\\n-5.10221243e-01 4.02284265e-02 4.53992575e-01 -3.54481161e-01\\n-5.39796688e-02 9.78207737e-02 -2.55533010e-01 2.75271803e-01\\n-3.95960122e-01 -1.46565646e-01 6.82097152e-02 -1.97503805e-01\\n9.75523442e-02 -2.27495469e-02 -1.88074842e-01 1.75879851e-01\\n-2.64562488e-01 -2.34696865e-01 -1.70675278e-01 -1.10963091e-01\\n-3.21500808e-01 1.37956869e-02 -1.00710325e-01 -5.56597374e-02\\n-8.15834776e-02 -3.74000490e-01 -1.12941198e-01 1.76065519e-01\\n3.51574689e-01 -1.30940035e-01 -7.18945116e-02 -5.37310503e-02\\n1.88916214e-02 2.46333972e-01 5.37510812e-01 -9.72419009e-02\\n1.26664028e-01 -1.12915412e-01 -4.05702323e-01 1.72997769e-02\\n1.33593902e-01 7.45546445e-02 6.65446296e-02 4.03454989e-01\\n-3.97048533e-01 -8.17728117e-02 2.23992869e-01 3.37566942e-01\\n-4.01896626e-01 9.17375088e-02 -2.29286686e-01 1.92628279e-01\\n2.24581107e-01 1.60014763e-01 -3.16188604e-01 8.65127072e-02\\n-2.07978994e-01 -5.02468884e-01 3.69291455e-01 -2.60421067e-01\\n-1.35686085e-01 1.44794315e-01 1.94411069e-01 1.72236651e-01\\n-4.05288428e-01 1.01948716e-01 -1.18795119e-01 3.52785915e-01\\n2.78403722e-02 2.67738551e-01 -2.71615237e-01 -1.68528873e-02\\n-2.70849913e-01 2.13211104e-01 -1.21285208e-01 1.93018094e-01\\n-3.81334983e-02 2.27157235e-01 1.16759017e-01 -4.44551781e-02\\n1.99618146e-01 1.60197970e-02 -2.00895458e-01 -2.73232073e-01\\n-2.25943699e-01 -2.96091080e-01 2.19793394e-01 -2.18684927e-01\\n1.98216841e-01 -4.06210095e-01 -1.91734508e-01 -2.20438987e-01\\n-1.61545664e-01 -3.84984344e-01 -1.62086561e-01 -2.44810116e-02]]',\n", + " 'Über unseren Kunden Our client is a strong brand – more than 1.4 million Swiss customers place their trust in our products and services. Ihr Aufgabenbereich Developing and supporting Data Management Framework application(s) ranging from small integration tools to full-blown applications, over time building up an integrated solution suite enabling Data Management to support the enterprise in becoming even more data driven Contributing to overall data management capability development, spanning various topics like data modeling, metadata management, data standardization and master & reference data management Being part of the development team supporting the Risk Modelling Platform generic components underpinning a range of business critical capital modelling applications Supporting incident resolution; working with the BUs to mitigate associated impacts Ihr Profil University level education, e.g. Computer Science, Computer Engineering, or Engineering Discipline 10+ years of experience in enterprise-grade software development 10+ years of experience with C# .NET framework development High degree of customer focus & end-to-end solution delivery attitude Proficiency in C# and object-oriented programming concepts, enjoys writing clear, maintainable code, tests and documentation Familiarity with enterprise application architecture patterns (concurrency models, unit-of-work etc.), transactional processing, domain driven design, REST APIs and service oriented architecture including solid skills in managing complexity with decoupling and dependency injection Knows how to approach a problem statement, steer the requirements engineering and drive the technical solution design Experience in the data management domain (metadata, master & reference, data quality, etc.) are a plus Has excellent communication skills, both written and oral, able to interact with different management levels Fluent in written & spoken English, German is a plus Ihre Chance Haben wir Ihr Interesse geweckt und Sie sind bereit eine neue Herausforderung anzunehmen? Dann schicken Sie Ihre vollständigen Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C .NET Entwicklung Sprachen: Deutsch Englisch Job ID: 7379',\n", + " '[\"Writing\", \"Management\", \"Integration\"]',\n", + " '[\"Code Testing\", \"Reference Data\", \"Mitigation\", \"Tooling\", \"Capitalization\", \"Interactivity\", \"Computer Science\", \"Metadata\", \"Data Management\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Build Time\", \"Branding\", \".NET Framework\", \"Service Level Management\", \"E (Programming Language)\", \"Levelling\", \"Applications Architecture\", \"Concurrency Pattern\", \"Programming Concepts\", \"C (Programming Language)\", \"Domain Driven Design\", \"Application Portfolio Management\", \"C# (Programming Language)\", \"Dependency Injection\", \"Solution Delivery\", \"Requirements Engineering\", \"Clinical Data Management\", \"Capability Development\", \"Computer Engineering\", \"Technical Solution Design\", \"Transaction Processing (Business)\", \"Software Development\", \"Solution Design\", \"Metadata Modeling\", \"Maintaining Code\", \"RESTful API\"]',\n", + " \"['English', 'Welsh', 'Sundanese']\"],\n", + " ['82',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.nicollcurtin.com',\n", + " '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " \"['English', 'Sinhalese']\"],\n", + " ['107',\n", + " 'software engineer, full-stack',\n", + " 'Lausanne',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.spotme.com',\n", + " '[[-2.40400463e-01 1.97630540e-01 5.63323975e-01 3.51318382e-02\\n5.01096666e-01 -1.70995638e-01 1.30098253e-01 3.23587179e-01\\n5.76776499e-03 -4.04238015e-01 -2.61640493e-02 -3.40038747e-01\\n-2.14768038e-03 2.19531074e-01 1.51836947e-01 4.26689506e-01\\n1.15004860e-01 1.13718919e-01 -1.38945699e-01 2.45707050e-01\\n5.85400686e-02 -2.23842412e-01 3.17868888e-02 7.21959472e-01\\n4.38476354e-01 -1.36701493e-02 -9.36722308e-02 -8.37761015e-02\\n-2.61980355e-01 -1.31882980e-01 4.96534377e-01 4.42499928e-02\\n-1.43099621e-01 -3.95369768e-01 1.17438890e-01 9.74113569e-02\\n-2.47757256e-01 -1.06715642e-01 1.81171149e-02 2.25266770e-01\\n-6.19741678e-01 -3.02673876e-01 8.98771957e-02 3.95925492e-02\\n-2.01780722e-01 -1.54720053e-01 -1.49527356e-01 -9.32055414e-02\\n1.37238517e-01 6.89389706e-02 -5.80855489e-01 2.89805204e-01\\n-1.24821439e-01 -2.60120928e-01 1.52547538e-01 5.81285417e-01\\n1.19390659e-01 -4.93634701e-01 -3.81300509e-01 -3.08212280e-01\\n3.37897874e-02 -8.07853490e-02 3.25256065e-02 -3.23344827e-01\\n1.85178548e-01 -2.40102768e-01 -1.30819798e-01 3.72485608e-01\\n-7.33904541e-01 1.32199168e-01 -1.81066379e-01 1.80613846e-02\\n-2.75795043e-01 4.19326760e-02 -3.56090963e-01 -6.84670731e-03\\n-1.23984255e-01 4.11063135e-01 9.92610902e-02 4.34811302e-02\\n-2.15636075e-01 1.80195943e-01 -9.93093476e-02 3.65351588e-01\\n2.72442222e-01 2.28126019e-01 2.88385779e-01 2.81622082e-01\\n-3.06123674e-01 4.95402157e-01 9.07175168e-02 -2.06902191e-01\\n3.20295393e-01 9.28660333e-02 3.82545590e-01 1.06864892e-01\\n5.80978133e-02 4.74007279e-02 -2.83134878e-01 2.41040051e-01\\n2.68704444e-01 -3.42991710e-01 7.12204948e-02 -1.25418184e-02\\n2.85970792e-03 3.95689867e-02 2.36287992e-02 4.98494580e-02\\n-2.10560367e-01 3.11114401e-01 1.71718091e-01 -1.95118234e-01\\n-1.64982736e-01 -4.40360963e-01 -5.28094731e-02 1.09355785e-01\\n-6.95057726e-03 2.44240910e-01 1.27988279e-01 -2.44312789e-02\\n2.74561971e-01 1.59978181e-01 4.91214693e-02 8.51621449e-01\\n-1.02241769e-01 1.10107340e-01 -2.23378107e-01 3.96864593e-01\\n1.48746207e-01 -1.92108780e-01 1.50460780e-01 1.75290361e-01\\n-3.76281794e-03 -2.11077020e-01 -1.74743220e-01 2.57089257e-01\\n9.83193964e-02 -1.96954861e-01 -2.19653800e-01 7.74057508e-02\\n2.91319508e-02 -3.83033007e-01 5.74635208e-01 7.32359141e-02\\n1.98952630e-01 3.49525623e-02 2.07471788e-01 -9.73836482e-02\\n-1.53020486e-01 2.15654999e-01 1.02469295e-01 1.90818146e-01\\n-3.57469320e-01 -2.27697641e-01 -1.40938312e-01 1.56861141e-01\\n-3.47734481e-01 6.63239509e-02 -1.20990023e-01 -2.92543471e-02\\n9.19779539e-02 1.27250358e-01 -2.42252797e-01 1.86331928e-01\\n-1.68862864e-01 -3.52367945e-02 9.25690234e-02 2.58517951e-01\\n-1.24217302e-01 4.40193750e-02 1.54193521e-01 -1.37341663e-01\\n4.83789444e-01 1.63370654e-01 2.82406002e-01 -5.40166628e-03\\n2.72691607e-01 -9.06459242e-02 3.32005955e-02 2.83354640e-01\\n-5.95211327e-01 2.60163009e-01 4.86185886e-02 -1.52183875e-01\\n2.20841601e-01 -4.89621498e-02 3.33764344e-01 -2.44724527e-01\\n2.61320379e-02 -2.20419809e-01 -3.11882973e-01 -2.12899357e-01\\n-2.55517989e-01 1.90029945e-02 3.29124451e-01 -3.43474627e-01\\n-9.94950980e-02 1.39676213e-01 -3.58133048e-01 -1.51155218e-01\\n1.50586545e-01 2.29285702e-01 -3.03761177e-02 5.29668778e-02\\n-2.36380532e-01 -5.55879474e-01 -5.89318760e-02 -3.61062557e-01\\n-4.21809763e-01 -1.47245407e-01 -3.73610705e-01 2.24480957e-01\\n9.62531865e-02 7.77265504e-02 -7.62180164e-02 -1.71432626e-02\\n-2.18350619e-01 -8.58573169e-02 -1.03445470e-01 1.41953513e-01\\n2.14144662e-01 1.14593627e-02 -3.42618734e-01 4.67578143e-01\\n-3.13855320e-01 5.82264483e-01 9.68542695e-02 -8.92894149e-01\\n4.12237108e-01 3.77169281e-01 -8.22556391e-02 -3.35643679e-01\\n4.07640457e-01 -3.16129506e-01 3.12804338e-03 5.68594038e-02\\n-2.50917792e-01 -2.00854242e-01 3.10433626e-01 -1.79649144e-01\\n-1.70935139e-01 3.82668793e-01 1.54696882e-01 6.39696941e-02\\n2.31497645e-01 -2.84989446e-01 -6.99492916e-02 6.34367540e-02\\n-1.37858063e-01 -2.95477837e-01 -4.79834139e-01 -8.27073157e-02\\n-1.78520665e-01 -3.65665585e-01 -3.85746285e-02 -4.41298306e-01\\n-3.88754196e-02 -4.11427677e-01 -2.73065954e-01 2.30137557e-01\\n2.25607872e-01 7.53567442e-02 -7.97303021e-02 2.22392678e-02\\n-8.69884938e-02 -7.11877584e-01 -7.27395713e-02 1.99392304e-01\\n4.49619472e-01 1.92375094e-01 2.04983681e-01 -1.68405119e-02\\n1.58491224e-01 5.30636847e-01 -2.31263474e-01 -3.14097911e-01\\n1.68046057e-01 1.60174206e-01 6.06726594e-02 -1.16466008e-01\\n6.95126504e-02 1.71664342e-01 -1.25021547e-01 -1.11185797e-01\\n-8.75117406e-02 3.37184183e-02 3.21332246e-01 1.37699870e-02\\n-3.83301795e-01 -1.18764602e-01 1.81452371e-02 8.19623694e-02\\n-4.72699285e-01 -5.35693914e-02 4.39307272e-01 2.09295675e-01\\n1.74808860e-01 3.05434950e-02 -6.21095262e-02 -7.89260343e-02\\n-1.67857304e-01 -2.88180739e-01 4.49139923e-01 -3.40612698e-03\\n1.07076745e-02 -6.04003668e-03 -9.97231007e-02 -5.62836945e-01\\n-3.85604334e+00 -3.06096256e-01 -2.17095427e-02 -1.52174667e-01\\n1.81380302e-01 -9.87992808e-02 5.11485487e-02 2.75125541e-02\\n-1.86300442e-01 1.84034601e-01 -1.01250380e-01 -4.98850867e-02\\n5.03376834e-02 1.35255694e-01 -9.79454815e-02 3.08787674e-01\\n2.53067732e-01 -1.18250117e-01 -3.93342413e-02 3.37812692e-01\\n-2.70375490e-01 -6.28200591e-01 2.04252541e-01 8.02262314e-03\\n2.01692507e-01 8.28427076e-02 -3.18369120e-01 1.73995793e-02\\n-1.46909699e-01 -2.28586525e-01 4.65484373e-02 -2.11322740e-01\\n-2.00234175e-01 1.45331606e-01 1.60587937e-01 -3.60628739e-02\\n-1.03552967e-01 -4.02897358e-01 -1.78891435e-01 -4.11203653e-01\\n1.74476996e-01 -5.54367483e-01 4.62452024e-02 -7.14308098e-02\\n7.17277169e-01 -2.75852293e-01 1.01454988e-01 4.51595709e-02\\n9.03848335e-02 -7.46952519e-02 1.66990489e-01 -9.55210999e-02\\n-2.45651945e-01 -3.15913409e-01 5.39972410e-02 -3.16813231e-01\\n5.11650681e-01 3.72740358e-01 -1.89699292e-01 4.99364883e-02\\n2.29884490e-01 -2.32672051e-01 -4.17112857e-01 -2.49968946e-01\\n-1.64882451e-01 -1.46982625e-01 -7.23980308e-01 -2.68446833e-01\\n-3.37805092e-01 -1.84834450e-01 -1.40902787e-01 6.67070746e-01\\n-2.43701920e-01 -4.37611312e-01 -2.15024408e-02 -5.18822670e-01\\n4.24354702e-01 -7.06763938e-02 -1.25403345e-01 -2.13564053e-01\\n-4.25147444e-01 -4.48690772e-01 4.47396673e-02 -3.22221667e-02\\n-2.69515842e-01 -2.23609880e-01 2.86455359e-02 -1.20944344e-01\\n-2.66924053e-01 -4.59144086e-01 3.98916066e-01 5.32186404e-02\\n2.79953420e-01 8.20406973e-02 4.02146697e-01 -4.86590760e-03\\n2.50995070e-01 4.59606051e-02 1.90061722e-02 -2.79628307e-01\\n5.70133142e-02 5.75441420e-02 5.20314276e-01 -2.65294492e-01\\n-9.76848975e-02 1.34546280e-01 -1.52699664e-01 -1.41446531e-01\\n3.74082446e-01 -8.56827796e-02 -6.84424862e-02 -1.64177939e-02\\n2.27126315e-01 -3.68513793e-01 -1.21798851e-01 1.94658190e-01\\n1.60996690e-01 6.11565530e-01 -3.13959643e-02 -3.92673045e-01\\n-1.66057959e-01 5.16290188e-01 -1.17700689e-01 1.62404940e-01\\n-1.77671224e-01 1.56527475e-01 -3.30200613e-01 3.76040846e-01\\n3.51698846e-02 -3.15770686e-01 -1.89164832e-01 -1.77387014e-01\\n3.12955454e-02 3.30063850e-01 2.76066095e-01 -9.61499438e-02\\n5.76080084e-02 -3.06134343e-01 -2.53567338e-01 1.03917137e-01\\n1.85485005e-01 4.96149451e-01 2.26737782e-01 -2.46465400e-01\\n8.96139815e-02 2.96713352e-01 -1.50801674e-01 1.90327451e-01\\n-2.79412210e-01 1.70360342e-01 -5.34062684e-01 -3.74208331e-01\\n-1.95670053e-01 -5.39525032e-01 1.01839729e-01 3.99693936e-01\\n2.29516774e-01 -2.54050922e-02 -8.41786712e-03 -5.85178256e-01\\n1.79648578e-01 1.74315333e-01 2.08718777e-01 1.37811378e-01\\n3.43236662e-02 5.60864985e-01 -6.34282306e-02 -1.11126661e-01\\n-1.53333917e-01 -7.51884133e-02 -1.52754799e-01 -2.00737521e-01\\n1.46958545e-01 -5.13727725e-01 4.81228046e-02 3.81421566e-01\\n3.13540608e-01 -3.45883340e-01 -1.36690885e-01 3.71160507e-01\\n5.16890511e-02 -2.06954211e-01 -2.72507161e-01 1.01223938e-01\\n3.48876745e-01 1.40752152e-01 2.88368076e-01 -3.08144778e-01\\n-1.13375448e-02 2.68610287e-02 -2.94122864e-02 3.67565364e-01\\n-1.07029259e-01 1.46502331e-01 -2.24190041e-01 -1.49244398e-01\\n4.55777228e-01 -2.11892114e-03 -1.60293877e-01 -2.13626385e-01\\n6.69422001e-02 -1.72527656e-01 -4.21129644e-01 1.30561054e-01\\n6.72175065e-02 -3.84037852e-01 4.06961553e-02 2.66011268e-01\\n7.27313990e-03 5.31712435e-02 -4.64924991e-01 -2.75938570e-01\\n-1.38838232e-01 -1.32132366e-01 2.36682311e-01 -3.22118938e-01\\n3.44947018e-02 -1.30300894e-01 -5.58969975e-01 1.38452813e-01\\n-1.14771716e-01 -1.97601676e-01 2.23057032e-01 1.81729779e-01\\n-2.39020601e-01 -1.36484087e-01 1.06901906e-01 4.19840723e-01\\n-2.96230674e-01 -3.65360707e-01 2.50597317e-02 -8.91939461e-01\\n1.23446621e-01 1.68549821e-01 -1.83998756e-02 1.66467950e-01\\n-1.96006536e-01 -5.17029345e-01 1.62770927e-01 -2.92382628e-01\\n-2.42331594e-01 -5.86269759e-02 -2.44610310e-01 -2.37711310e-01\\n1.51871960e-03 -4.39848192e-02 -2.89438814e-01 4.55137223e-01\\n-3.32576960e-01 3.08391154e-01 -9.84539241e-02 -4.37901309e-03\\n-3.77516299e-02 -1.09420314e-01 1.79311886e-01 -3.24526399e-01\\n-3.88705760e-01 -2.83786774e-01 -5.84797442e-01 -3.96170646e-01\\n1.04313493e-02 -2.04382032e-01 -1.93081290e-01 1.47021294e-01\\n3.70075703e-01 1.83904618e-01 6.72855647e-03 -2.88460284e-01\\n1.42788552e-02 -3.97846609e-01 5.68935759e-02 -1.28721520e-01\\n-1.56347856e-01 -1.48226574e-01 1.39715388e-01 4.06385101e-02\\n1.14916235e-01 -3.09361577e-01 3.59990150e-01 -2.22535878e-01\\n-1.67667061e-01 -1.65897831e-01 1.56193659e-01 5.94566800e-02\\n4.13833588e-01 -4.97422665e-01 -5.72539028e-03 2.95953006e-01\\n3.04187119e-01 8.42670649e-02 2.48572409e-01 -1.59057796e-01\\n-2.40869317e-02 2.70083547e-01 -4.24831033e-01 1.22771971e-01\\n7.88593769e-01 1.08405456e-01 9.50905308e-02 3.09542745e-01\\n1.07267030e-01 3.49410117e-01 4.68152851e-01 -7.82711357e-02\\n-7.01195672e-02 1.58612415e-01 1.68700982e-02 -4.97931391e-01\\n-7.70498961e-02 -2.13841856e-01 -9.85378213e-03 -3.85547101e-01\\n6.80855036e-01 4.10206407e-01 -5.41015565e-01 -9.76659134e-02\\n-1.95511982e-01 5.97619712e-02 1.74981326e-01 -1.72058031e-01\\n-1.79874837e-01 7.67515376e-02 4.01973784e-01 -5.26772700e-02\\n3.93320858e-01 4.97244209e-01 -2.15347454e-01 -2.55875707e-01\\n8.49097595e-02 2.26783648e-01 8.81636515e-02 3.65109891e-01\\n-8.19970667e-02 3.01959604e-01 1.64512433e-02 5.86670116e-02\\n3.10088452e-02 1.95851356e-01 3.10313087e-02 1.03131369e-01\\n2.91167021e-01 3.23149352e-03 3.44047517e-01 4.85890359e-01\\n1.48825914e-01 3.66759241e-01 2.74307668e-01 1.16941094e-01\\n3.89395326e-01 5.45209467e-01 3.51046056e-01 1.25307485e-01\\n7.41359778e-03 2.78202921e-01 1.83109358e-01 -2.21778765e-01\\n3.36743444e-01 4.36189294e-01 2.21177951e-01 7.27999091e-01\\n1.78551748e-01 2.80192137e-01 6.82907164e-01 -6.31415546e-01\\n-3.61072242e-01 -2.07454357e-02 5.18087566e-01 -1.79085419e-01\\n2.72523798e-02 1.84116080e-01 -1.64862677e-01 3.18325609e-01\\n-4.81542468e-01 -2.53237188e-01 2.93147415e-02 -9.60127115e-02\\n-7.17113912e-02 -2.21688762e-01 -1.07721120e-01 2.52417803e-01\\n-2.95714755e-02 -5.12633100e-02 -3.57824862e-01 -8.76091495e-02\\n-2.95486867e-01 -1.54236436e-03 -1.63140401e-01 -2.39619128e-02\\n-8.29311460e-02 -4.78738964e-01 -1.51337445e-01 5.83953448e-02\\n2.81994373e-01 -1.08892716e-01 -1.15706667e-01 -1.29689023e-01\\n2.04286471e-01 1.41418874e-01 4.44979668e-01 7.00490177e-02\\n1.11582890e-01 -1.57231435e-01 -2.71010131e-01 1.76119238e-01\\n3.09009850e-01 1.73285574e-01 -5.29381558e-02 6.33167326e-02\\n-2.59368807e-01 -2.28079744e-02 1.47774071e-01 2.09792033e-01\\n-3.47668588e-01 2.75182482e-02 -2.21802399e-01 1.87954590e-01\\n1.04003519e-01 2.36185834e-01 -1.22217782e-01 -1.09230898e-01\\n-2.59534597e-01 -3.02032083e-01 2.36030072e-01 -2.52569526e-01\\n-2.11328000e-01 2.26224685e-04 1.88181028e-01 1.44600198e-01\\n-2.27011964e-02 8.94951671e-02 -8.74709412e-02 1.76339775e-01\\n8.19404349e-02 2.61252373e-01 -1.42132759e-01 -2.53835708e-01\\n-3.13864112e-01 1.99815556e-01 -8.79455283e-02 1.60409808e-01\\n-4.21903431e-02 4.07238275e-01 -8.63590860e-04 -3.10702845e-02\\n4.69367892e-01 -2.25390941e-02 -2.94991642e-01 -2.93238759e-01\\n-2.69924879e-01 -1.81846306e-01 -1.17371390e-02 7.37380311e-02\\n8.04606900e-02 -4.19147760e-01 9.30623934e-02 -1.25831604e-01\\n-8.83002859e-03 -2.89686382e-01 -2.08228920e-02 -1.52727827e-01]]',\n", + " 'Since 2011, SpotMe has been the mobile engagement platform for visionary leaders who believe that events can drive transformative change. SpotMe has been recognized by G2 Crowd as the leading pure play mobile event app, a growing space that represents more than $1 billion in potential annual revenue. Our ambition is to double down on this opportunity, use events as a springboard and extend our positioning into Digital Experience Platforms (DXP) for employees and customers. Today, SpotMe serves over 220 global brands, including 80 Fortune 500 companies. Some of the world’s largest companies – including Novartis, L’Oréal and Daimler – use SpotMe to connect every event to their greater story. Responsibilities: Develop new features of the SpotMe Backstage, our CMS Optimise user experience, streamline workflows, improve feedback and reporting Perform complete UI/UX re-design with ease of use, contextual aid in mind Work in cross-team projects on new & improving existing features Participate in brainstorming, specification and design sessions Maintain documentation, samples & best practices up to the highest standards Requirements & Skills: Native JavaScript and CSS speaker, proficient in Angular & Node.js Experience with SQL & No-SQL databases is a plus Demonstrated success in designing and building complex web applications Strong analytical, communication and collaboration skills Proactive, independent, completes tasks down to resolution ',\n", + " '[\"Visionary\", \"Collaboration\", \"Proactivity\", \"Brainstorming\", \"Communications\", \"Positivity\"]',\n", + " '[\"Web Applications\", \"Angular (Web Framework)\", \"Streamlines\", \"Springboard\", \"Hyper SQL Database (HSQLDB)\", \"Node.js\", \"Cascading Style Sheets (CSS)\", \"Digitization\", \"User Experience\", \"Maintainability\", \"Workflows\", \"Performance Reporting\", \"JavaScript (Programming Language)\", \"Analytics\", \"SQL (Programming Language)\", \"Branding\", \"Zope (CMS)\", \"Mobility\"]',\n", + " \"['English', 'Tajik', 'Dhivehi']\"],\n", + " ['10',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.adnovum.ch',\n", + " '[[-1.95624158e-01 3.97409528e-01 5.07171333e-01 -4.06459570e-02\\n5.41350424e-01 -8.11445639e-02 7.53710493e-02 3.58455390e-01\\n-3.10194045e-02 -5.43209136e-01 -1.87547192e-01 -1.59705579e-01\\n7.89334401e-02 1.13280721e-01 1.94852591e-01 3.26767713e-01\\n4.62987572e-01 7.56500736e-02 3.62817454e-03 3.83732766e-01\\n-1.62129730e-01 -9.87617448e-02 1.34480879e-01 6.40779495e-01\\n3.55763644e-01 -6.63058320e-03 4.31952588e-02 1.95201710e-01\\n-1.69206694e-01 -2.27221057e-01 3.46927643e-01 1.05911903e-02\\n-2.97944099e-01 -3.87432247e-01 -1.45010026e-05 1.29607841e-01\\n-2.42596522e-01 -5.24028204e-02 -2.67326087e-01 -1.58433039e-02\\n-4.46291417e-01 -2.01589301e-01 4.42150049e-02 -1.79851949e-01\\n-1.79206029e-01 -3.21800798e-01 1.82369471e-01 -1.13667451e-01\\n2.50975862e-02 4.72655185e-02 -4.30564284e-01 2.53324062e-01\\n-3.65517229e-01 -1.60606518e-01 3.87259394e-01 5.59639513e-01\\n-1.88216809e-02 -5.02482116e-01 -4.32932138e-01 -2.39122108e-01\\n6.77069798e-02 5.77977858e-02 6.16381504e-02 -4.02935296e-01\\n3.95106882e-01 -7.13882595e-03 6.12844415e-02 3.46813172e-01\\n-7.82036722e-01 -1.11264586e-01 -3.94327670e-01 6.17695414e-02\\n-4.45784539e-01 -9.46496725e-02 -3.18790168e-01 -1.40831918e-01\\n-7.18333498e-02 2.78311759e-01 -5.31314164e-02 1.69110179e-01\\n-1.93873212e-01 4.05293345e-01 -1.11126892e-01 2.41512299e-01\\n2.11167693e-01 2.15905383e-01 3.33343178e-01 3.32163930e-01\\n-2.75249958e-01 4.72428232e-01 2.29435265e-01 -2.92683333e-01\\n3.56134921e-01 1.88539982e-01 4.00257349e-01 -1.86471045e-02\\n3.63188028e-01 1.57960311e-01 -2.94262588e-01 3.16787750e-01\\n2.10242912e-01 -2.16880009e-01 -1.53617248e-01 -1.52181879e-01\\n1.06247939e-01 -4.00558710e-02 1.53568670e-01 6.42814860e-02\\n-5.40712059e-01 3.17350656e-01 4.25663637e-03 -4.39264148e-01\\n-1.80099253e-02 -4.20830518e-01 -1.94832996e-01 1.09065272e-01\\n-1.27117842e-01 -1.78300459e-02 1.61055312e-01 2.81734705e-01\\n2.96234101e-01 2.08901186e-02 7.77569041e-02 6.87539816e-01\\n-1.42687380e-01 -7.21321180e-02 -9.09945667e-02 2.80803591e-01\\n8.90855268e-02 -4.26961750e-01 1.82805791e-01 2.67846197e-01\\n1.29560689e-02 -6.07539155e-02 -2.09661439e-01 2.44960114e-01\\n6.67836592e-02 -1.25187263e-01 -3.06900293e-01 2.84918934e-01\\n-1.10217661e-01 -4.37027723e-01 5.40440679e-01 -9.84745994e-02\\n1.05262004e-01 -3.44979875e-02 1.76990386e-02 -1.61867276e-01\\n-9.46249720e-03 5.13485782e-02 6.31012097e-02 2.84552068e-01\\n-2.72600949e-01 -1.43201530e-01 -1.93577111e-01 2.96319813e-01\\n-1.85642079e-01 2.29487836e-01 -3.83103758e-01 -1.16362981e-01\\n3.21503192e-01 -1.34444818e-01 -3.00263554e-01 2.76550680e-01\\n-1.20592952e-01 1.00659430e-01 -1.09035082e-01 4.46274400e-01\\n4.15161140e-02 2.09956050e-01 -2.23392639e-02 -1.41820863e-01\\n4.69897777e-01 7.85709023e-02 1.45230621e-01 -1.70136049e-01\\n2.47340381e-01 7.07232654e-02 1.35360375e-01 -1.52775897e-02\\n-9.03002203e-01 2.34042764e-01 -1.06187217e-01 -1.31816819e-01\\n7.46678784e-02 -1.00906678e-01 2.55571693e-01 -3.59913737e-01\\n-3.09356362e-01 -5.98081499e-02 -3.36733460e-01 -4.95625228e-01\\n-1.90093324e-01 -1.57889247e-01 4.08337146e-01 -5.14456928e-01\\n-1.30040959e-01 1.57178730e-01 -7.05170453e-01 -8.26142132e-02\\n2.94075102e-01 1.77711561e-01 1.54172167e-01 9.45387259e-02\\n-1.30368426e-01 -6.33772254e-01 2.52397954e-02 -5.54250419e-01\\n-1.56634346e-01 1.66506395e-01 -3.99333686e-01 1.42835215e-01\\n1.17151611e-01 -1.63288504e-01 -1.04410527e-02 8.61984789e-02\\n-2.59264022e-01 6.96199611e-02 6.56216815e-02 -4.76955809e-02\\n4.74010140e-01 4.35532629e-02 -3.22253406e-01 4.16309327e-01\\n-2.20494866e-01 3.30039501e-01 6.24361373e-02 -6.50266886e-01\\n4.96558398e-01 3.21802765e-01 1.07861534e-02 -2.39032403e-01\\n5.10881364e-01 -3.56151015e-01 -1.79238841e-01 3.99765857e-02\\n-5.18438697e-01 -1.97887138e-01 -8.43936298e-03 -2.31724203e-01\\n-2.69446611e-01 6.06323123e-01 -1.00959159e-01 2.81071048e-02\\n4.66097504e-01 -2.12304890e-01 -1.53426036e-01 5.58594130e-02\\n-1.20743968e-01 -1.42654479e-01 -5.19885480e-01 -2.44537219e-01\\n-7.60620534e-02 -4.52454776e-01 -1.96117774e-01 -4.48424816e-01\\n-1.74352661e-01 -1.13148250e-01 -2.29993418e-01 1.56282708e-01\\n1.11307472e-01 4.63168323e-02 -3.59596498e-02 1.52980998e-01\\n-2.17158958e-01 -6.15378201e-01 -5.00781648e-03 5.57754934e-02\\n1.17143959e-01 1.67028829e-01 1.74357638e-01 -1.17288947e-01\\n-5.97898057e-03 5.61891913e-01 -3.81898165e-01 -2.19329491e-01\\n1.87622890e-01 8.11487809e-02 4.72141020e-02 -8.01655352e-02\\n1.80726364e-01 2.85143465e-01 -2.65156418e-01 7.41504431e-02\\n1.91574264e-02 -4.95185377e-03 4.13127631e-01 -2.15063453e-01\\n-2.16969445e-01 -1.84668198e-01 1.15098841e-02 1.87303782e-01\\n-5.22225201e-01 -2.81741589e-01 5.12124121e-01 4.57480364e-02\\n1.70271516e-01 3.96027952e-01 2.18809143e-01 -5.99434413e-02\\n-2.29900107e-01 -2.69758075e-01 2.54665107e-01 1.44434601e-01\\n8.19870010e-02 5.17033339e-02 -2.48508155e-01 -5.01990139e-01\\n-3.73741245e+00 -1.69829369e-01 1.93886802e-01 -8.66274312e-02\\n3.20012122e-01 1.24837577e-04 1.10940278e-01 -1.63704202e-01\\n-9.60515365e-02 6.13048710e-02 -2.45151937e-01 -1.96209326e-01\\n4.60789017e-02 1.98648751e-01 -7.37502202e-02 1.55523524e-01\\n1.81890652e-01 -2.25274503e-01 3.96934561e-02 2.60546356e-01\\n-7.54942074e-02 -7.34942734e-01 1.48128420e-01 -4.17279154e-02\\n2.77780980e-01 2.98262835e-01 -5.44760764e-01 -7.52332509e-02\\n-2.81963140e-01 -1.14054412e-01 9.17405784e-02 -3.89748901e-01\\n-1.13525487e-01 2.45817378e-01 1.76462010e-01 -1.95382237e-01\\n-4.85088676e-03 -1.55170932e-01 -4.23069112e-02 -5.38104355e-01\\n1.44984946e-01 -4.23481464e-01 9.92596895e-03 -1.04317732e-01\\n6.58848822e-01 -3.74893039e-01 8.49266425e-02 1.08089656e-01\\n1.22379780e-01 3.44221443e-01 1.83680534e-01 5.41547649e-02\\n-1.18564516e-01 -3.35045964e-01 -1.05374746e-01 -2.29010463e-01\\n6.47573769e-01 2.96443701e-01 -2.25249454e-01 8.94729272e-02\\n4.30189185e-02 -3.75931382e-01 -4.93100256e-01 -2.45927736e-01\\n-1.47599861e-01 -6.20698743e-02 -7.65075743e-01 -4.23622251e-01\\n-1.40338719e-01 -1.36029586e-01 4.94882017e-02 6.91641331e-01\\n-4.57934827e-01 -4.45010036e-01 -1.33881465e-01 -5.73298395e-01\\n2.76140660e-01 -1.53949559e-01 8.61736462e-02 -2.09675625e-01\\n-7.28234425e-02 -4.19816941e-01 4.59864140e-02 1.26932159e-01\\n-6.11431487e-02 -1.13501020e-01 1.34266838e-01 -1.93334091e-02\\n-2.73179561e-01 -4.89091426e-01 3.33182782e-01 1.02330655e-01\\n3.38543296e-01 4.35405411e-02 1.34716466e-01 1.42232096e-02\\n1.95962787e-01 -9.32971109e-03 -2.95996457e-01 -3.60452890e-01\\n5.86061291e-02 -9.68666375e-02 3.30863744e-01 -5.01703024e-02\\n4.16423678e-02 1.69599220e-01 -1.15280233e-01 -1.74085096e-01\\n4.76422697e-01 1.34312762e-02 7.50607029e-02 -2.62095004e-01\\n1.69395149e-01 -3.08273464e-01 -2.30495766e-01 7.52963349e-02\\n-1.26745686e-01 5.76520503e-01 9.31925103e-02 -3.09095651e-01\\n-1.10085808e-01 5.36023021e-01 1.61138978e-02 6.40568733e-02\\n-1.78747341e-01 1.21696383e-01 -3.32444042e-01 1.21629395e-01\\n-3.74581702e-02 -1.01423480e-01 -1.52004421e-01 1.67065987e-03\\n-5.64004779e-02 1.94245100e-01 3.62157464e-01 1.93723932e-01\\n3.54437158e-02 -3.65789801e-01 -6.51486078e-03 5.68960309e-02\\n2.69350708e-01 5.12906611e-01 2.18058273e-01 -2.60197908e-01\\n-2.96228100e-02 2.86592603e-01 -1.91321090e-01 1.04290463e-01\\n-1.56939536e-01 1.49414435e-01 -3.53981167e-01 -1.75616622e-01\\n-3.89933556e-01 -2.26607218e-01 1.83177982e-02 2.86728173e-01\\n1.60088092e-01 -1.69027686e-01 6.76730350e-02 -3.05084616e-01\\n3.07842433e-01 1.85946599e-01 2.05674753e-01 2.41451606e-01\\n-9.06339809e-02 5.01223266e-01 -5.94297089e-02 -1.80611566e-01\\n-1.70813486e-01 1.76880643e-01 -7.35193118e-02 -1.48713067e-01\\n8.11968371e-02 -5.29519558e-01 -1.36745140e-01 2.39613071e-01\\n4.86317538e-02 -1.41108623e-02 -1.69857025e-01 2.49989271e-01\\n-8.25471058e-02 -3.16823393e-01 -2.92034388e-01 -1.13830082e-02\\n2.13950217e-01 2.02135608e-01 2.74918973e-01 -4.14322227e-01\\n-6.34821057e-02 -6.65557906e-02 1.31719545e-01 4.69626516e-01\\n-4.74022925e-02 5.66381812e-02 -1.48473442e-01 -2.82566190e-01\\n4.03746963e-01 -5.34192733e-02 -1.76694453e-01 -5.31154275e-02\\n7.85092860e-02 -3.77384350e-02 -2.76284754e-01 7.40090981e-02\\n-1.52061716e-01 -1.59391850e-01 2.88550686e-02 1.68561060e-02\\n1.32478476e-01 1.21951967e-01 -5.28629899e-01 -2.07124755e-01\\n-3.09237152e-01 3.44422720e-02 -2.03306437e-01 -5.35484731e-01\\n1.37280509e-01 -1.45939156e-01 -5.39872587e-01 2.81580299e-01\\n-2.25011960e-01 -1.00715496e-01 1.68772504e-01 1.50281981e-01\\n-4.27882403e-01 -9.54971984e-02 1.41966119e-01 1.88962862e-01\\n-4.18896228e-01 -1.88078880e-01 -6.64666072e-02 -8.23264062e-01\\n2.95560300e-01 -1.29990652e-01 -5.45138493e-03 4.89177965e-02\\n-1.31034717e-01 -5.87537587e-01 1.11939467e-01 -1.64533958e-01\\n-1.05697572e-01 8.67673457e-02 -1.85601771e-01 -3.03874016e-01\\n7.26094693e-02 -1.73494980e-01 -1.19071417e-01 2.35415936e-01\\n-4.70925927e-01 2.73304254e-01 -2.33205333e-01 2.94341054e-02\\n5.51923625e-02 -2.63867110e-01 1.08813308e-01 -1.68278635e-01\\n-4.77744430e-01 -2.24186108e-01 -1.20687574e-01 -2.15005577e-01\\n-4.40847166e-02 -4.31432575e-01 -1.40312118e-02 2.49734018e-02\\n3.42152476e-01 -1.86173040e-02 -2.45851651e-01 -1.22430079e-01\\n3.35471444e-02 -2.64644295e-01 1.14545450e-02 -3.15855406e-02\\n1.04539298e-01 -3.95798981e-02 2.40147948e-01 5.25263511e-02\\n3.02339226e-01 -3.38018298e-01 4.12936062e-01 -3.26547056e-01\\n-2.99328417e-01 -1.20408893e-01 -1.03438273e-03 9.94906668e-03\\n3.48492384e-01 -5.65469265e-01 2.16063019e-02 4.17885035e-01\\n5.90350665e-02 1.31136701e-02 1.96933493e-01 -2.06139255e-02\\n-3.91580611e-02 4.00822908e-01 -2.68910855e-01 1.51081681e-01\\n8.05222929e-01 1.23100244e-01 2.22835556e-01 2.39065811e-01\\n6.61984310e-02 4.55249518e-01 3.76264066e-01 -3.29954438e-02\\n-2.69405190e-02 3.62387568e-01 1.92488596e-01 -4.58240986e-01\\n8.92967451e-03 2.65243258e-02 -1.76343262e-01 -2.24504188e-01\\n6.40138268e-01 3.59989643e-01 -3.65842313e-01 -2.83531159e-01\\n-1.71031818e-01 -3.97459388e-01 2.82339364e-01 -6.89230859e-02\\n2.07787883e-02 -2.04716727e-01 4.02844995e-01 1.19541027e-02\\n1.80359051e-01 7.35158503e-01 -2.34106705e-01 -3.34822744e-01\\n-1.52588636e-01 2.95565993e-01 1.04012579e-01 4.59747642e-01\\n-1.08243853e-01 2.77069926e-01 1.27821257e-02 5.54686785e-02\\n-7.73639008e-02 1.47383735e-01 1.73800305e-01 1.46056980e-01\\n2.30573535e-01 3.30295533e-01 5.34503043e-01 4.98811692e-01\\n3.04300189e-01 3.67333174e-01 2.31833622e-01 9.10304561e-02\\n5.18943369e-01 4.31326002e-01 4.51881647e-01 5.73795326e-02\\n1.44129721e-02 2.46286616e-01 1.24434501e-01 4.62027341e-02\\n2.63589889e-01 4.34119821e-01 -1.06435297e-02 9.17801201e-01\\n3.97906274e-01 2.60819077e-01 6.05717063e-01 -7.42412508e-01\\n-1.63220003e-01 9.56422612e-02 3.73246938e-01 -3.71888280e-01\\n5.20412959e-02 1.56332329e-01 -1.44453868e-01 2.95470715e-01\\n-4.40726310e-01 -2.19140649e-01 2.57894546e-02 1.62777096e-01\\n1.63460687e-01 -4.18730378e-02 -1.47528782e-01 -6.64786920e-02\\n-7.76151791e-02 -3.76542322e-02 -3.44924062e-01 -1.83253124e-01\\n-2.71405041e-01 -2.09814999e-02 -4.12860177e-02 -2.38330677e-01\\n8.82498696e-02 -3.12943548e-01 -5.40300012e-02 -2.07890019e-01\\n3.62136245e-01 -1.68464601e-01 -4.36339229e-02 3.95724317e-03\\n3.03939849e-01 2.41475508e-01 6.91587865e-01 -1.04941487e-01\\n1.04229458e-01 -8.08869898e-02 -1.64956421e-01 1.22152209e-01\\n4.13262360e-02 1.95013985e-01 1.27756938e-01 2.95504242e-01\\n-2.36357883e-01 -2.22418547e-01 2.53336102e-01 2.69581676e-01\\n-3.67388129e-01 -1.55440171e-03 -7.16302916e-02 1.96484342e-01\\n-1.05625711e-01 1.21191286e-01 -6.69479445e-02 1.74651649e-02\\n-8.62853602e-02 -5.46514571e-01 3.23153853e-01 -1.94367453e-01\\n-1.37836905e-02 -7.64152333e-02 3.71804714e-01 3.08940917e-01\\n-1.64258018e-01 3.89989913e-02 -1.03479110e-01 1.03970937e-01\\n1.27854899e-01 3.61236781e-01 -2.60132492e-01 -1.70172587e-01\\n-2.23325595e-01 1.31388679e-01 -5.96998036e-02 -8.69416818e-02\\n-8.74217525e-02 3.96499157e-01 1.15623929e-01 2.07069650e-01\\n2.53376275e-01 -1.53874323e-01 -2.12854162e-01 -1.77685454e-01\\n-2.93299466e-01 -3.35060735e-03 6.77606091e-02 -9.50272605e-02\\n2.36362293e-01 -4.38735336e-01 -2.61465132e-01 -1.96449637e-01\\n3.37974578e-02 -4.40327674e-01 9.80812684e-03 5.00930659e-02]]',\n", + " \"That's your role You will, together with an international team, develop and support individual mobile and web applications for our customers. Your main working language with our customers will be German. We look for Software Engineers for our locations in Bern and in Zurich. Depending on your qualifications, past experience and project, you will be involved in the analysis, specification and implementation of technical requirements in one of the following disciplines: Application development You implement the functional requirements of our customers with a broad spectrum of technologies and development processes. Integration Your focus is on quality attributes (non-functional requirements). You get the developed solutions up and running (deployment, technical architecture, etc.) and connect them to the customer's systems. By operating at the interface between customers and highly qualified development teams, you will gain a deeper insight into the broader interrelationships in the software development process and benefit from the extensive experience of our application development, integration and security specialists.\",\n", + " '[\"Operations\", \"Integration\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Process Development\", \"Software Development\", \"Functional Requirement\", \"Software Engineering\", \"Process Integration\", \"Mobility\"]',\n", + " \"['English', 'Malagasy']\"],\n", + " ['75',\n", + " 'software engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.32771158e-01 3.23575675e-01 3.22079837e-01 2.11038645e-02\\n4.28447992e-01 -8.46897438e-02 -6.14280589e-02 2.52944112e-01\\n-7.71240592e-02 -4.60035145e-01 7.07489923e-02 -1.96435317e-01\\n-1.78112105e-01 -8.70894343e-02 1.49234504e-01 5.19659817e-01\\n1.30023852e-01 6.24674968e-02 -6.89474419e-02 4.44085509e-01\\n9.07824561e-02 -5.03305718e-02 -1.05173320e-01 8.01011920e-01\\n3.50438774e-01 -3.50439884e-02 -1.50030240e-01 9.87674147e-02\\n-2.45800763e-01 -3.04026783e-01 3.85356247e-01 9.66515467e-02\\n-4.94073480e-02 -4.21713650e-01 7.00240061e-02 1.49487287e-01\\n-2.98419803e-01 -5.70223527e-03 -4.43303734e-02 3.14540148e-01\\n-4.76185888e-01 -3.82286489e-01 8.77431855e-02 -8.39554518e-02\\n-2.73328215e-01 -2.70228058e-01 -1.36637434e-01 -3.58960554e-02\\n1.82698742e-01 1.38409203e-02 -6.53364897e-01 3.19564313e-01\\n-5.54208234e-02 -2.65608639e-01 2.20117152e-01 5.59088290e-01\\n2.13892773e-01 -5.63026249e-01 -2.97065943e-01 -3.22461277e-01\\n-1.21113444e-02 -7.90259987e-02 2.29474884e-02 -2.54588515e-01\\n3.62604648e-01 -3.44214551e-02 -5.50057646e-03 4.41134989e-01\\n-7.93977916e-01 -6.65304065e-02 -2.90753692e-01 1.12066105e-01\\n-3.99506778e-01 2.76150443e-02 -4.74426746e-01 -5.71803264e-02\\n-6.50339723e-02 5.21396756e-01 5.91075122e-02 -7.43939308e-03\\n-1.08375654e-01 1.97234809e-01 -1.18143134e-01 1.76221237e-01\\n3.73093277e-01 1.72580466e-01 2.82087952e-01 4.23345745e-01\\n-4.46676701e-01 3.12253535e-01 1.68932348e-01 -3.16638231e-01\\n1.36125520e-01 1.79201022e-01 6.16097927e-01 2.92444676e-01\\n-4.26084027e-02 2.34113351e-01 -1.82206258e-01 2.94912457e-01\\n1.28224760e-01 -3.22535902e-01 3.59990075e-02 -3.49719152e-02\\n-3.56369764e-02 -2.18581297e-02 3.02300155e-02 1.87007338e-01\\n-1.94472402e-01 4.12699461e-01 1.33930504e-01 -1.79334164e-01\\n-8.22932124e-02 -6.31163597e-01 -1.34373516e-01 -5.11797741e-02\\n-1.02793135e-01 2.86621451e-01 3.03357720e-01 1.34482637e-01\\n8.08005258e-02 8.93958956e-02 1.68459520e-01 9.82253253e-01\\n-7.72180706e-02 7.07321614e-02 -2.38974407e-01 2.89491653e-01\\n3.54515731e-01 -2.41681039e-01 1.44744173e-01 2.18987748e-01\\n7.72629231e-02 -1.84187219e-01 -2.27921769e-01 3.50836307e-01\\n-1.30407602e-01 -1.31864026e-01 -2.74684757e-01 2.11499538e-03\\n-2.04148084e-01 -5.28920710e-01 6.04730725e-01 1.27012849e-01\\n2.44040325e-01 -5.61796129e-02 -3.76490131e-02 -9.34772417e-02\\n-8.36838260e-02 1.74382433e-01 -3.01180724e-02 2.45826200e-01\\n-4.03422266e-01 -2.69273341e-01 -1.88620761e-01 3.08993787e-01\\n-1.59166008e-01 1.85574248e-01 -4.02123332e-02 -6.99926019e-02\\n2.64162451e-01 9.58682448e-02 -3.49406540e-01 1.60112053e-01\\n-1.32765770e-01 -3.35921764e-01 -1.21516682e-01 3.20315927e-01\\n-7.10094869e-02 1.42433047e-01 1.83020942e-02 -1.77537426e-01\\n6.77544355e-01 2.71468610e-01 2.04124644e-01 -1.80610970e-01\\n3.40131015e-01 -1.66294858e-01 2.03096256e-01 1.83016315e-01\\n-5.12547612e-01 3.44441116e-01 -2.15425417e-02 -1.65736780e-01\\n6.10829592e-02 8.30597803e-02 4.21715498e-01 -3.53513718e-01\\n1.25296591e-02 -1.66147277e-01 -3.93632889e-01 -3.87479275e-01\\n-2.07493186e-01 8.10356438e-03 4.93143469e-01 -4.30294871e-01\\n-1.18622705e-01 2.99510360e-01 -5.02010465e-01 -1.60760239e-01\\n1.81376800e-01 9.53095779e-02 1.51596904e-01 -2.62368061e-02\\n-6.15368634e-02 -6.44030929e-01 -6.08694181e-02 -5.46753109e-01\\n-5.46886444e-01 -3.70682143e-02 -3.16950917e-01 1.46724552e-01\\n1.07491381e-01 3.35342102e-02 -1.67341709e-01 5.27262464e-02\\n-3.85501444e-01 3.34403254e-02 1.71075776e-01 1.51324078e-01\\n3.25184941e-01 -6.33193851e-02 -4.03964400e-01 4.01005834e-01\\n-2.60051757e-01 5.42895257e-01 2.40626290e-01 -8.45698833e-01\\n6.58155262e-01 2.65417248e-01 -8.84738937e-02 -2.26467952e-01\\n3.50536287e-01 -4.23037708e-01 -3.59490700e-02 1.79078192e-01\\n-2.96971351e-01 -2.95722693e-01 3.29562575e-01 -1.38216436e-01\\n-3.02644074e-01 5.20400822e-01 2.39866853e-01 3.78323197e-02\\n3.38624060e-01 -2.90953726e-01 -1.45004779e-01 -1.50345871e-02\\n-1.29658982e-01 -2.41204768e-01 -3.50444943e-01 1.95962861e-01\\n-3.56839076e-02 -5.94943225e-01 -1.88304707e-01 -2.80902416e-01\\n-1.90194875e-01 -3.66979092e-01 -3.32771063e-01 4.56198812e-01\\n1.44989178e-01 1.76227644e-01 -2.90204026e-02 2.48519629e-02\\n1.12619922e-01 -6.57110274e-01 -1.48633480e-01 3.08304206e-02\\n5.71922243e-01 3.30424309e-01 6.86325654e-02 -1.22720093e-01\\n1.39883310e-01 5.43043494e-01 -3.74155372e-01 -3.88006479e-01\\n6.07419983e-02 4.47508097e-02 -1.06314711e-01 -1.88183933e-01\\n-1.92357216e-03 3.12522650e-01 -2.50745267e-01 3.42481583e-02\\n-8.66321772e-02 5.12787923e-02 2.91952789e-01 -9.81471017e-02\\n-3.59933734e-01 -1.65861428e-01 -3.71611537e-03 3.45752239e-01\\n-5.28455436e-01 -2.32274204e-01 5.20879149e-01 2.88068026e-01\\n2.03717783e-01 1.67829275e-01 2.71252394e-01 -1.05374016e-01\\n-2.67258316e-01 -1.41384318e-01 1.74634099e-01 1.85415179e-01\\n4.12994437e-02 1.64123341e-01 -8.99589211e-02 -6.76442623e-01\\n-3.22283173e+00 -1.65213332e-01 2.10589617e-01 -3.05456519e-01\\n1.78245440e-01 -1.56153724e-01 6.04089946e-02 -4.86874692e-02\\n-4.42327768e-01 -5.32054901e-02 -2.71715462e-01 -1.08623251e-01\\n-1.31011754e-01 2.37731919e-01 7.29682595e-02 2.88561374e-01\\n7.04864711e-02 -2.53304899e-01 -1.10939004e-01 4.20523256e-01\\n-8.88754725e-02 -7.15417922e-01 6.86133131e-02 9.97603387e-02\\n1.42124325e-01 1.10106796e-01 -4.12043214e-01 1.14969105e-01\\n-2.11065620e-01 -2.57921875e-01 1.03344943e-03 -2.66380727e-01\\n-1.57726526e-01 3.40127796e-01 1.37293532e-01 -2.20522806e-02\\n4.00137231e-02 -1.88013166e-01 1.08728498e-01 -5.23898363e-01\\n-1.28307998e-01 -5.89351714e-01 -2.82236058e-02 -1.30385801e-01\\n6.17146432e-01 -3.08652610e-01 2.26161167e-01 2.13282928e-01\\n5.13157509e-02 7.70782158e-02 -3.54103222e-02 7.10783387e-03\\n-4.08289820e-01 -3.61567765e-01 -1.77459400e-02 -3.37245733e-01\\n5.59190750e-01 4.33864683e-01 -1.21879302e-01 7.77162891e-03\\n1.27230659e-01 -3.23641509e-01 -3.79713744e-01 -4.83888090e-01\\n-1.65496305e-01 -2.08638564e-01 -8.43017876e-01 -5.59587121e-01\\n-2.42586046e-01 7.20592029e-03 -1.55099973e-01 6.84438050e-01\\n-3.61629784e-01 -5.16476929e-01 -1.13526331e-02 -5.55763185e-01\\n1.23817816e-01 -2.24447966e-01 1.15944289e-01 -1.74416289e-01\\n-4.46848243e-01 -4.99530137e-01 2.41874456e-01 -4.84364107e-02\\n-2.77655512e-01 -1.80772599e-02 -1.56947621e-03 -2.69827813e-01\\n-3.55094761e-01 -3.92081738e-01 4.10161167e-01 7.36151487e-02\\n3.12595636e-01 2.01257154e-01 4.60317403e-01 7.17918649e-02\\n4.48793143e-01 -6.87518939e-02 -1.12969764e-02 -4.00511712e-01\\n1.65219173e-01 -3.09082028e-02 4.92543459e-01 -2.77522236e-01\\n9.53317285e-02 2.02135533e-01 -3.03460479e-01 -1.46783972e-02\\n5.62721729e-01 -5.70466667e-02 -5.08335978e-02 -3.61850485e-02\\n2.95242935e-01 -4.48523939e-01 -2.87652642e-01 3.00116330e-01\\n1.38880499e-02 7.23209560e-01 -2.26064064e-02 -3.98977339e-01\\n-2.85103440e-01 5.28487742e-01 -1.87839031e-01 -1.44902632e-01\\n-1.54840544e-01 1.68592528e-01 -6.18593022e-02 2.46762633e-01\\n8.09662789e-03 -3.30122799e-01 -2.94705182e-01 -1.86642960e-01\\n-7.81869218e-02 1.48894340e-01 2.03733802e-01 -3.62406783e-02\\n-1.07890375e-01 -1.15412295e-01 -3.02606821e-01 1.55602947e-01\\n3.13823283e-01 3.26663554e-01 3.12385648e-01 -3.77679259e-01\\n1.92490276e-02 2.05863640e-01 -2.20341906e-01 2.63513088e-01\\n-2.88031816e-01 1.43910959e-01 -5.40859163e-01 -2.76224315e-01\\n-2.10433528e-01 -3.53873789e-01 1.37799159e-01 3.43861908e-01\\n7.62189701e-02 -8.79569561e-04 1.05259597e-01 -4.81570899e-01\\n3.82623732e-01 9.87121314e-02 1.94569826e-01 1.27861142e-01\\n1.15318671e-01 5.63545823e-01 9.30358022e-02 -1.42259330e-01\\n-2.32419685e-01 -1.69394925e-01 -3.07754338e-01 -2.50631273e-01\\n9.11021680e-02 -4.45085108e-01 -1.39545634e-01 4.57939625e-01\\n1.76461384e-01 -2.24776089e-01 -2.88547784e-01 3.30854803e-01\\n1.67811528e-01 -2.95660943e-01 -2.51585364e-01 -3.69841605e-02\\n1.53245464e-01 4.72640544e-02 2.94627070e-01 -3.74298871e-01\\n3.07159983e-02 2.87471209e-02 -1.00898251e-01 5.99937260e-01\\n2.51359552e-01 3.06058079e-02 -1.76503748e-01 -9.27447304e-02\\n6.12627447e-01 -2.84990780e-02 -6.72675371e-02 -6.86853528e-02\\n1.01782314e-01 -2.99873382e-01 -5.21072328e-01 1.84393115e-02\\n-8.41496661e-02 -2.22033516e-01 9.42429081e-02 2.07711756e-03\\n2.56550405e-02 1.71182863e-02 -4.15086061e-01 -4.49740291e-01\\n-3.87827158e-01 -1.49130672e-01 2.06654415e-01 -4.17182684e-01\\n-6.48360774e-02 5.75842038e-02 -5.84694505e-01 2.71852255e-01\\n-2.74196535e-01 4.88489531e-02 5.92570528e-02 2.48928860e-01\\n-2.78596669e-01 -7.04363436e-02 -4.91667241e-02 2.18839675e-01\\n-4.03681606e-01 -3.23717684e-01 4.06410173e-02 -8.27127457e-01\\n1.49263427e-01 1.36651859e-01 -1.86433747e-01 7.78386220e-02\\n-9.44809755e-04 -6.35998130e-01 2.09475294e-01 -4.32126313e-01\\n3.65819968e-02 1.98617931e-02 -1.50505513e-01 -3.14826429e-01\\n1.88688755e-01 -9.63194575e-03 -3.90022516e-01 4.74443167e-01\\n-5.30495942e-01 2.48197898e-01 4.78367060e-02 7.58247375e-02\\n7.92486891e-02 -3.05282891e-01 1.34887934e-01 -2.51360148e-01\\n-4.15204316e-01 -2.26260215e-01 -4.13159758e-01 -1.75755903e-01\\n4.81594466e-02 -2.33462662e-01 -9.53705311e-02 1.25544205e-01\\n3.01008493e-01 2.41857320e-01 -7.67108724e-02 -3.94017160e-01\\n1.51887000e-01 -4.74282265e-01 1.94843803e-02 -3.20908606e-01\\n-4.68999259e-02 -1.50185198e-01 1.66657001e-01 -1.71755299e-01\\n1.52233198e-01 -1.79880217e-01 6.19434059e-01 -1.81528702e-01\\n-2.86699057e-01 -1.67552620e-01 1.61399245e-02 1.50878364e-02\\n2.29463756e-01 -4.59013045e-01 9.66397859e-03 2.19766065e-01\\n1.92026109e-01 5.43899424e-02 1.46592289e-01 -4.03624251e-02\\n-2.54280157e-02 1.89142987e-01 -5.58319449e-01 1.46615669e-01\\n7.32634485e-01 4.53247577e-02 5.77360988e-02 1.56172186e-01\\n1.90630123e-01 4.52069402e-01 6.34704471e-01 -7.09303888e-04\\n-2.18145121e-02 2.65557438e-01 3.04066855e-02 -4.44260985e-01\\n-1.66460171e-01 -2.26848334e-01 -1.79455474e-01 -2.98462182e-01\\n5.66974819e-01 4.12166446e-01 -3.90005529e-01 -1.88780248e-01\\n4.69222143e-02 -5.19786105e-02 3.53922397e-01 7.64702559e-02\\n-1.09916247e-01 -3.56483981e-02 5.43048263e-01 -3.51193477e-03\\n3.80765676e-01 5.87606013e-01 -1.27567559e-01 -3.44867855e-01\\n-2.84700487e-02 2.06801474e-01 1.39937997e-01 4.05073404e-01\\n-1.56302720e-01 2.76910782e-01 4.54904847e-02 2.53554173e-02\\n-3.72206531e-02 1.59755051e-01 2.39282370e-01 3.60498242e-02\\n3.23107094e-01 1.21613434e-02 2.46318296e-01 5.43167830e-01\\n2.00530708e-01 4.31431085e-01 2.47552916e-01 1.98286504e-01\\n2.69804925e-01 6.13274693e-01 4.02387112e-01 1.08076043e-01\\n5.25225699e-02 6.28960282e-02 1.26886621e-01 -1.35727376e-01\\n3.57431263e-01 3.99179399e-01 2.13221952e-01 9.50212300e-01\\n3.08432430e-01 3.07941347e-01 7.33944535e-01 -8.28180730e-01\\n-2.83514708e-01 1.41495898e-01 6.16533101e-01 -2.06349060e-01\\n-5.76663576e-02 1.93498597e-01 -2.33924165e-01 3.13546360e-01\\n-5.31943142e-01 -2.35884562e-01 1.62740592e-02 -1.69678926e-02\\n1.29374983e-02 -6.65253475e-02 -2.17781052e-01 1.51064426e-01\\n-1.60624161e-01 -1.65527865e-01 -2.68893987e-01 -1.44846603e-01\\n-3.87791991e-01 -4.25691716e-02 -6.77338317e-02 -1.08303018e-02\\n-1.32121667e-01 -4.65577155e-01 -2.00620919e-01 4.70577888e-02\\n4.70681757e-01 -1.79116860e-01 -1.46525860e-01 -1.93146318e-01\\n4.47265571e-03 3.31226438e-01 6.28223181e-01 7.35087544e-02\\n2.03161657e-01 -1.58458531e-01 -2.39049450e-01 5.79397641e-02\\n1.89758882e-01 -8.42017028e-03 1.28200009e-01 4.24213886e-01\\n-3.13301653e-01 -8.71934667e-02 1.30094886e-01 2.69486070e-01\\n-4.57791090e-01 -1.48240566e-01 -5.81148192e-02 3.34406376e-01\\n5.97886834e-03 3.24914128e-01 -3.07897568e-01 1.81322888e-01\\n-1.66851655e-01 -5.11189997e-01 4.81978774e-01 -1.93455845e-01\\n-1.21979207e-01 2.57710814e-01 1.68983772e-01 1.21297017e-01\\n-2.46108204e-01 -3.99563946e-02 -9.20972303e-02 2.89270997e-01\\n-3.49839665e-02 4.90244478e-01 -2.02553615e-01 -1.74713135e-01\\n-3.91795903e-01 2.53912449e-01 -6.32460490e-02 1.61259428e-01\\n-2.01776400e-01 3.90940279e-01 1.61536694e-01 1.89745039e-01\\n1.84292421e-01 1.53588504e-01 -2.48056233e-01 -2.02077478e-01\\n-1.82787538e-01 -2.53081918e-01 1.07800871e-01 -3.43111269e-02\\n6.59308732e-02 -3.48187774e-01 2.88559310e-02 -2.02361494e-01\\n-2.63630450e-01 -3.82653534e-01 -1.28160104e-01 2.40338184e-02]]',\n", + " 'Job Informationen Your tasks: Create and deploy production-ready machine learning models, life-cycle management Evaluate and assess model quality through metrics and experiments End-to-end responsibility for socio-demographic predictions, audience expansions and interest inference Writing production code with Spark and Scala and creating advanced pipelines with Luigi Working with git on github, various services on AWS, Jira and Confluence with an agile software development culture Your profile: Deep knowledge in Scala, Java or C++ and strong skills in either Python or Bash Expertise in using Spark, Hadoop, etc. for scalable data processing and machine learning Understanding and experience in various machine learning algorithms Experience in applying machine learning and deep learning for real-world applications In-depth understanding of concepts such as algorithms, networking and internet technology Able to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala C++ JAVA Python Python Bash Englisch',\n", + " '[\"Communications\", \"Writing\"]',\n", + " '[\"Python Server Pages\", \"Luigi (Python Package)\", \"Prediction\", \"Machine Learning\", \"Project Management Life Cycle\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Pipelining\", \"Machine Learning Methods\", \"Github\", \"Agile Software Development\", \"Machine Learning Algorithms\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Deep Learning\", \"Atlassian Confluence\", \"Software Development\", \"Algorithms\", \"Production Code\", \"Git Flow\", \"JIRA Studio\", \"Java (Programming Language)\", \"Data Processing\"]',\n", + " \"['English', 'Corsican', 'Marathi', 'Bulgarian']\"],\n", + " ['48',\n", + " 'front-end software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-5.42001687e-02 2.34355092e-01 4.70845371e-01 -8.38351250e-02\\n5.17368853e-01 -7.06578940e-02 -1.99809670e-03 4.08608556e-01\\n1.68794662e-01 -4.28181887e-01 -2.20953487e-03 -2.94494361e-01\\n-7.07552657e-02 1.58489607e-02 -1.06429569e-02 3.90653312e-01\\n3.52239162e-01 2.10637957e-01 -1.57270715e-01 3.66716325e-01\\n9.27976817e-02 -9.69800055e-02 1.61560595e-01 8.27780902e-01\\n3.65579188e-01 -1.17771421e-02 -7.89073557e-02 -2.29799375e-02\\n-1.33444965e-01 -2.06020236e-01 6.04864717e-01 5.29014133e-02\\n-1.13141350e-01 -5.20530462e-01 6.96166828e-02 2.14777626e-02\\n-1.41484380e-01 -5.19886687e-02 -9.82794762e-02 1.72007114e-01\\n-5.24042189e-01 -1.84206218e-01 -7.36353695e-02 -5.95488697e-02\\n-2.74145186e-01 -2.52162039e-01 7.53166750e-02 -1.49903381e-02\\n1.09067567e-01 8.41844901e-02 -3.49104464e-01 1.96151495e-01\\n-2.90760070e-01 -1.62467375e-01 2.75079459e-01 5.52700400e-01\\n-1.33403212e-01 -3.43463838e-01 -5.58273494e-01 -2.87445307e-01\\n8.55758041e-02 -1.04298562e-01 -2.94660777e-02 -3.81673813e-01\\n3.08068454e-01 1.38305873e-02 3.72508429e-02 3.30130994e-01\\n-6.88989401e-01 3.51769812e-02 -3.23612779e-01 -2.03064352e-01\\n-3.42129111e-01 -2.23024786e-01 -1.94613308e-01 -1.10773385e-01\\n-1.49912506e-01 3.69927913e-01 1.49090260e-01 7.60992318e-02\\n-2.62983024e-01 2.75917351e-01 -2.12134093e-01 3.92707705e-01\\n1.85297593e-01 2.50479460e-01 2.30644330e-01 3.26948464e-01\\n-2.76169777e-01 4.36597824e-01 1.32471621e-01 -2.61928082e-01\\n3.10585558e-01 3.09559777e-02 4.30574894e-01 -1.38166904e-01\\n1.48666859e-01 9.55320299e-02 -3.07648540e-01 3.39842200e-01\\n2.51760721e-01 -3.27350110e-01 2.54817866e-02 -1.84555892e-02\\n3.53922248e-02 -3.11717391e-02 8.55188519e-02 1.24883264e-01\\n-3.77162606e-01 4.55627084e-01 8.48014206e-02 -2.83630610e-01\\n-1.54337376e-01 -3.25129986e-01 -8.21679831e-02 9.16553736e-02\\n-2.35646404e-02 4.87753302e-02 1.59532979e-01 1.49018973e-01\\n1.46556765e-01 -1.67647228e-02 4.26516905e-02 6.89166665e-01\\n-1.36813983e-01 3.67884859e-02 -2.34464467e-01 3.64617407e-01\\n4.32107300e-02 -3.50614607e-01 4.15215164e-01 1.88589334e-01\\n-2.12789141e-02 -1.01771131e-01 -2.34496415e-01 3.76090944e-01\\n1.10846192e-01 -1.96781307e-01 -1.69015169e-01 2.19961807e-01\\n3.15777771e-02 -4.16440010e-01 6.28884196e-01 6.89357147e-02\\n1.61422580e-01 -8.96962732e-02 1.14122611e-02 -1.64178699e-01\\n-2.63705123e-02 1.09161898e-01 9.81994271e-02 1.92581177e-01\\n-2.76841462e-01 -2.88816422e-01 -1.23627961e-01 1.33993372e-01\\n-4.39780295e-01 1.08827010e-01 -1.43013656e-01 -1.10157490e-01\\n2.94943452e-01 -2.86315568e-02 -2.82646894e-01 2.25954652e-01\\n-3.72470170e-02 -2.38342397e-03 -4.07479703e-02 4.53073382e-01\\n-1.89338207e-01 2.05003485e-01 -2.91258190e-02 -1.66371301e-01\\n6.25780344e-01 2.05250129e-01 1.73375875e-01 -3.86715271e-02\\n2.84306288e-01 -2.49507111e-02 1.05408058e-01 1.22200295e-01\\n-7.16595411e-01 3.85239542e-01 -4.74359915e-02 -1.40881315e-01\\n9.08691883e-02 -1.70705587e-01 2.32108742e-01 -3.63659054e-01\\n-1.95645001e-02 -1.25681877e-01 -2.70100743e-01 -3.06232482e-01\\n-1.69374511e-01 -1.91183332e-02 2.82902211e-01 -5.21857500e-01\\n-1.96258366e-01 2.10099488e-01 -4.87000108e-01 -1.43227845e-01\\n1.41200691e-01 1.88984662e-01 1.23287052e-01 1.47592798e-01\\n-1.81208014e-01 -4.62999046e-01 1.20758433e-02 -4.41406190e-01\\n-2.19748974e-01 1.08473383e-01 -3.23920667e-01 2.62133002e-01\\n2.28372693e-01 -1.44839510e-02 -1.66250199e-01 1.99155480e-01\\n-1.07902393e-01 -2.13105790e-02 9.08888429e-02 -2.19714250e-02\\n1.77839607e-01 1.20283745e-01 -4.35772896e-01 4.74177003e-01\\n-2.55027413e-01 4.88480270e-01 1.53333381e-01 -7.56549597e-01\\n3.51292551e-01 4.13150489e-01 -9.41897631e-02 -2.98738599e-01\\n5.03396690e-01 -2.39731878e-01 1.61967892e-02 4.64043021e-02\\n-3.41424823e-01 -1.93572104e-01 2.03667164e-01 -2.22409874e-01\\n-2.20863700e-01 4.50543046e-01 2.71165650e-02 8.78648013e-02\\n7.89952725e-02 -2.34577805e-01 -2.79603545e-02 1.32942617e-01\\n-1.59201473e-01 -1.87078670e-01 -5.06142437e-01 -1.91023439e-01\\n-7.25492984e-02 -3.75788391e-01 -4.32180688e-02 -4.89510119e-01\\n-2.02339858e-01 -2.88615942e-01 -1.07910596e-01 3.07877064e-01\\n2.51054019e-01 -2.03505903e-02 5.79112954e-02 4.72193435e-02\\n-2.03094646e-01 -5.94334722e-01 1.31010897e-02 1.09577626e-01\\n3.52463961e-01 2.49223053e-01 1.49552047e-01 8.54988676e-03\\n-2.43343841e-02 6.74785137e-01 -2.31591433e-01 -1.86594307e-01\\n1.84435517e-01 2.78537720e-01 1.08690992e-01 -1.04254276e-01\\n9.13513452e-02 3.63563836e-01 -2.21467257e-01 7.58785903e-02\\n-4.72123288e-02 -1.62948161e-01 5.11746049e-01 -4.37237658e-02\\n-4.03745711e-01 -1.66785210e-01 -6.61444515e-02 1.21691674e-01\\n-4.91796732e-01 -2.50097960e-01 5.82885861e-01 2.19699115e-01\\n1.32803276e-01 1.41867161e-01 1.55721277e-01 3.46104242e-02\\n-1.32226914e-01 -3.53808522e-01 3.07837099e-01 1.15893483e-01\\n1.23779237e-01 3.41952071e-02 -2.43840199e-02 -6.60068274e-01\\n-3.59858561e+00 -1.91759348e-01 1.21772893e-01 -2.22645640e-01\\n1.94363326e-01 -1.47387475e-01 7.37033635e-02 -1.25644922e-01\\n-2.12562442e-01 2.28356272e-01 -8.41122270e-02 -1.79364979e-01\\n1.04589656e-01 1.45522565e-01 1.16311796e-01 1.99215457e-01\\n1.11552909e-01 -3.03366333e-01 -2.84181777e-02 3.14219773e-01\\n-2.35126019e-01 -5.79310894e-01 2.36771822e-01 -2.73830332e-02\\n3.52808297e-01 2.81629026e-01 -3.18864107e-01 -1.25244007e-01\\n-2.86033392e-01 -1.12069875e-01 -8.07832833e-03 -2.59101450e-01\\n-1.99895948e-01 2.12190926e-01 3.19670051e-01 -6.83308840e-02\\n6.57833219e-02 -4.61620212e-01 -1.22044049e-01 -3.83365422e-01\\n1.54885069e-01 -4.87097889e-01 -3.50606963e-02 -1.77613094e-01\\n7.66932964e-01 -2.64610469e-01 1.20386809e-01 -2.42949203e-02\\n1.72910765e-01 9.26042274e-02 1.97168201e-01 4.68848869e-02\\n-1.16068557e-01 -1.53544277e-01 5.89146186e-03 -1.11718327e-01\\n5.92903614e-01 4.59742844e-01 -1.58696160e-01 -7.77386799e-02\\n-8.62235054e-02 -2.86360085e-01 -5.00461876e-01 -2.10148513e-01\\n1.64027661e-02 -1.61578253e-01 -5.18305957e-01 -4.07081187e-01\\n-1.59781769e-01 -3.06602232e-02 -1.21592991e-01 5.65199196e-01\\n-2.55324215e-01 -3.27818185e-01 -1.37555286e-01 -5.33102155e-01\\n1.64348736e-01 -1.27243802e-01 2.92216502e-02 -1.98386192e-01\\n-2.13190809e-01 -4.82716709e-01 -7.52465799e-02 -3.51886712e-02\\n2.83312798e-03 -3.71589363e-01 8.91566575e-02 7.63843581e-03\\n-2.93043941e-01 -3.98492992e-01 4.20894563e-01 2.45878041e-01\\n2.99016863e-01 3.08950413e-02 2.23889619e-01 2.97841523e-02\\n2.45053858e-01 -1.16223484e-01 -3.84172425e-03 -3.35933417e-01\\n4.83188182e-02 -3.02931108e-02 4.49657500e-01 -1.66136175e-01\\n7.80265033e-02 6.94564730e-02 -2.53501683e-01 -1.15942784e-01\\n3.38073313e-01 -1.25041276e-01 4.96917516e-02 -1.56201735e-01\\n2.47353524e-01 -2.70015806e-01 -1.43927842e-01 3.30770388e-03\\n8.89796615e-02 5.74460387e-01 -4.16822769e-02 -3.72638881e-01\\n-8.02110061e-02 5.18151820e-01 -9.86938104e-02 -3.97884846e-02\\n-1.53020650e-01 5.55951633e-02 -2.64979482e-01 1.65183097e-01\\n1.10838406e-01 -9.85378623e-02 -2.98354626e-01 -1.00711718e-01\\n4.18888181e-02 3.66749465e-01 2.79540598e-01 2.03975201e-01\\n-2.98624113e-03 -4.15535331e-01 -2.18448639e-01 2.00178623e-01\\n1.74125001e-01 3.61331999e-01 1.61815733e-01 -1.73070937e-01\\n1.52426325e-02 3.26834708e-01 -1.18488371e-01 9.94749069e-02\\n-1.86725169e-01 1.01170443e-01 -3.88369739e-01 -2.07503691e-01\\n-2.47959092e-01 -3.03525209e-01 8.21034238e-02 2.58240640e-01\\n1.20882720e-01 -2.24431269e-02 -4.19498309e-02 -4.27704334e-01\\n3.71368706e-01 -5.22990078e-02 2.28221178e-01 1.58329159e-01\\n3.63649428e-02 5.85544586e-01 5.98297566e-02 -1.46352634e-01\\n-2.34547630e-01 4.44496535e-02 -1.25891250e-02 -1.02973655e-01\\n2.97532622e-02 -4.66632754e-01 -1.52713150e-01 2.99653649e-01\\n8.47446248e-02 -2.59561419e-01 -1.61045849e-01 2.64525801e-01\\n-1.76227257e-01 -2.72785932e-01 -2.51461089e-01 -1.47569150e-01\\n3.25329363e-01 2.35195123e-02 3.38687807e-01 -5.40250540e-01\\n-6.51074052e-02 -5.40428460e-02 -6.13803342e-02 4.48702931e-01\\n7.67198950e-03 -1.39379930e-02 -1.06233224e-01 -1.83382213e-01\\n4.05244470e-01 -7.99717009e-02 -9.25955027e-02 3.38664427e-02\\n5.74631914e-02 -1.60488486e-01 -5.76912165e-01 8.41579661e-02\\n7.01146871e-02 -1.98696062e-01 8.26717541e-02 1.75201327e-01\\n7.95333982e-02 2.23702043e-01 -6.43078089e-01 -2.61258304e-01\\n-2.46307164e-01 -5.83102703e-02 -1.05735853e-01 -5.56548119e-01\\n-2.29602102e-02 -1.16353199e-01 -4.81107473e-01 2.27179080e-01\\n-2.64079273e-01 -2.13978037e-01 3.15370858e-02 6.96945563e-03\\n-2.73305893e-01 -4.84699123e-02 1.57877147e-01 2.35617414e-01\\n-2.48942673e-01 -3.95612299e-01 9.73041952e-02 -8.83401692e-01\\n3.08862805e-01 8.33350047e-02 -1.53690577e-01 5.18677682e-02\\n-1.29490808e-01 -6.52248263e-01 1.46879226e-01 -2.72534966e-01\\n-6.18488491e-02 -6.13794476e-02 -2.39853576e-01 -3.07855606e-01\\n1.51126653e-01 7.59874582e-02 -2.54959971e-01 3.00465971e-01\\n-2.65511274e-01 3.79898071e-01 -2.11843818e-01 1.14548363e-01\\n1.54430903e-02 -2.54233986e-01 3.62084210e-02 -5.97950816e-01\\n-4.29953575e-01 -4.60287854e-02 -2.21724629e-01 -2.30584756e-01\\n-1.05949193e-01 -2.54104525e-01 -6.35505840e-02 6.98616803e-02\\n3.51374865e-01 1.11116856e-01 -2.22409189e-01 -1.91932335e-01\\n-5.50917722e-03 -3.90563190e-01 6.34375736e-02 -8.26173425e-02\\n-1.37054503e-01 -1.86746478e-01 1.98608756e-01 1.59327775e-01\\n6.54455721e-02 -3.51890832e-01 2.16901183e-01 -4.41379249e-01\\n-2.02145621e-01 -4.80008498e-02 9.91929471e-02 -2.62392825e-03\\n3.63564283e-01 -5.60829282e-01 -7.75943846e-02 3.85019898e-01\\n1.25989258e-01 1.19761765e-01 2.39824414e-01 -6.22060373e-02\\n3.64952609e-02 2.90100068e-01 -3.40883732e-01 1.69886544e-01\\n6.13146186e-01 1.00623406e-01 1.39180198e-01 1.38217479e-01\\n1.52971804e-01 2.14029044e-01 4.21449602e-01 1.39933705e-01\\n-1.38669014e-01 3.25544655e-01 1.36331335e-01 -6.16463661e-01\\n-4.59305234e-02 5.07320464e-02 -2.01713040e-01 -4.86057639e-01\\n5.76632142e-01 3.74846935e-01 -3.77397954e-01 -1.31990314e-01\\n-1.96178675e-01 -2.07945779e-01 5.37686050e-02 -4.22590263e-02\\n1.35144964e-01 -1.65300772e-01 4.28255558e-01 -1.13569498e-01\\n1.41685069e-01 5.64504385e-01 -1.32713422e-01 -2.51572132e-01\\n-1.34577498e-01 2.29997441e-01 1.13049969e-02 5.27569413e-01\\n-2.22804680e-01 2.97497898e-01 -9.61238239e-03 1.22012421e-01\\n-1.14972159e-01 1.99259639e-01 4.33888957e-02 1.11383535e-01\\n1.32531524e-01 1.21649101e-01 4.29489881e-01 3.80240202e-01\\n4.25669193e-01 4.20920521e-01 1.93905652e-01 8.64363909e-02\\n5.54483414e-01 6.26987576e-01 3.53179544e-01 -1.60816647e-02\\n-5.30245081e-02 7.22485259e-02 3.98595557e-02 -3.17636654e-02\\n4.25622582e-01 4.32650089e-01 -4.05639932e-02 8.54408741e-01\\n3.94513726e-01 2.38099277e-01 6.71892405e-01 -5.62213957e-01\\n-2.50269920e-01 7.87894279e-02 3.58505875e-01 -4.01327044e-01\\n-1.89535487e-02 2.19336987e-01 -2.57916600e-01 1.84428096e-01\\n-3.36098731e-01 -2.51055092e-01 -5.01784682e-02 2.13523045e-01\\n-2.55111679e-02 -1.55956283e-01 -2.17018813e-01 1.26630142e-01\\n-6.64239079e-02 -1.27065763e-01 -5.01424730e-01 -1.07387742e-02\\n-2.27471590e-01 -2.25099958e-02 -1.71294749e-01 -1.70998067e-01\\n-7.63860643e-02 -3.39218795e-01 -1.09551802e-01 -8.64733309e-02\\n1.72074646e-01 -2.99663514e-01 -1.06064111e-01 -1.33756608e-01\\n3.07657182e-01 1.92410961e-01 5.27699709e-01 -1.26560673e-01\\n1.39605656e-01 -2.07228929e-01 -2.10670114e-01 2.29752466e-01\\n2.08537325e-01 1.51748732e-01 -1.61329806e-02 1.89585313e-01\\n-1.61327168e-01 -1.21763192e-01 1.32539392e-01 2.87907988e-01\\n-3.97140384e-01 7.32619911e-02 -1.23376854e-01 2.69635022e-01\\n7.69453496e-02 3.71492431e-02 -1.59713656e-01 5.47447056e-03\\n-1.23327777e-01 -4.50538844e-01 2.18381286e-01 -4.59142923e-02\\n-6.18188232e-02 1.22052707e-01 2.96927631e-01 1.24312915e-01\\n-3.27293336e-01 -1.13116190e-01 -8.22888091e-02 2.08650097e-01\\n4.83332574e-02 1.98945820e-01 -1.66449919e-01 -2.85801202e-01\\n-1.41614929e-01 1.50194257e-01 -1.92084998e-01 6.92138821e-02\\n1.13935433e-02 3.15719306e-01 -2.49072537e-03 1.09081075e-01\\n4.35756654e-01 -4.84098420e-02 -2.28269339e-01 -2.38923982e-01\\n-3.03419769e-01 -1.15310267e-01 -6.33409321e-02 -1.26942441e-01\\n2.26360664e-01 -2.40976885e-01 -7.41824210e-02 -2.35900879e-02\\n-6.44095391e-02 -2.80245662e-01 7.33688325e-02 -1.03815094e-01]]',\n", + " \"FRONT-END SOFTWARE ENGINEER (TECHNOLOGY) Start: As soon as possible Location: Zürich, 100% THE FELFEL TECHNOLOGY TEAM & YOUR IMPACT FELFEL is a startup based in Zürich, Switzerland. The company has revolutionized how people eat at work with its intelligent technology - the FELFEL fridge. The company is among the fastest growing startups in Switzerland with over 80 employees. Our Technology team - currently consisting of 10 engineers - has built the heart of FELFEL's product and is responsible for our success as a leading European foodtech company. In this role, you will work very directly with the CTO, our founders and other teams at FELFEL (product, growth, sales, support, etc.) to improve the experience for our end customers eating at work every day, as well as the internal users of our technology. YOUR ROLE: Drive the evolution of the front-ends serving consumers and internal users. Build high-quality mockups and design prototypes around customer needs. Coordinate with our backend engineers to evolve the APIs required by the front-ends. Iteratively improve the user experience by incorporating feedback from customers and internal users. Assist with the development of our React Native based mobile apps. Maintain build automation pipelines to ensure efficient & reliable front-end deployment. WHO YOU ARE: You are an experienced front-end engineer with broad programming skills. You are able to build production-ready software that meets the needs of our customers and internal users. You have significant experience in building front-ends with the React framework. You can architect and implement robust software capable of embracing change. You are able to create effective user experiences from product specifications and insight into user psychology. Experience in building mobile apps with React Native is a plus. You possess a degree in Computer Science or related fields. You thrive in a collaborative environment involving different stakeholders and domain experts. Curiosity is key. We like to learn new stuff, fail fast and explore new territories - so do you. Your attitude is positive. ‘The Answer is Yes’. You are fluent in written and spoken English. If you speak German and/or French - even better. Authentic love & passion for good food. Non-smoker during work time: You never smell like cigarettes and don’t smoke during the day: FELFEL is about healthy living. EU/EFTA or Swiss work permit. WHAT WE OFFER: Lots of good (like really good ;)) food. Just steps away from your desk – we make all food dreams come true… Barista: Our office barista makes fresh coffee & tea for the whole team every day: be it Cappuccino, Americano, Espresso, Chai or Matcha – whatever you prefer the most! Holidays: Enjoy 5 weeks of holidays every year Birthday retreat: On top of your 5 weeks off, take a half day off work to enjoy your birthday Transport: We encourage employees to use public transport by financing the half-fare card Family: FELFEL is a family business with strong values and traditions. We support parenting by giving 1 week of holidays for new dads, 16 weeks for new mums, and paying for up to two days per week of child care People: A great international & diverse team (20 different nationalities!) of talented people who turn their passion into a career (English is our company language) Location: We are located in the heart of Zurich - on the top floor in a bright, open office // We are located in the heart of Lausanne - a lovely office with a beautiful view. Every now and then, get the chance to work from your second office and enjoy an evening in a different city ;) Makers. We are looking for people who want to make a difference - Ownership is an important FELFEL credo. Fun. We 'host' various events, including team aperitifs, sleigh rides, breakfast events and the well-known FELFEL summer & winter-outings… In the summer days we offer working outside in the lake beach clubs or similar locations for a refreshing working day :) Modern way of working. We use the latest technologies and offer time flexibility to individual team members (it matters ‘what’ you do, not ‘when’ in the day). Deep & variegated tech stack - we do everything from monitoring fridge temperature to creating management dashboards. Relocation support if you are based outside of Switzerland. We know that moving can be a challenge in terms of housing & documentation – we will do our best to make it as smooth as possible. HOW YOU APPLY: Interested? Please click on the link “APPLY NOW” and introduce your details in the form on careers.felfel.ch. We can only consider applications submitted via the form and we will get back to you latest 72 hours after your submission. What do we need? CV & short cover letter where you explain why you are our new Front-End Software Engineer. WHO WE ARE, THE FELFEL COMPANY FELFEL revolutionizes how people eat at work with smart technology. Our intelligent fridge makes it possible - good food all day long for employees at work, created by the best local chefs. Over 60'000 employees at more than 400 companies in Switzerland already benefit from a FELFEL fridge at work. FELFEL is a family-owned company and supports small, local producers in Switzerland. Sustainability is a core company value. The company has won several prestigious awards, among others the Swiss Economic Forum Award in 2017. The company was founded in 2013 and counts over 80 employees today. Friendship, respect, 'eating good food together' are key elements of our company culture. You can find more insights on the company and the team on LinkedIn, Facebook, Instagramand of course our website.\",\n", + " '[\"Positivity\", \"Coordinating\", \"Collaboration\", \"Management\", \"Reliability\", \"Curiosity\", \"Sales\"]',\n", + " '[\"Mockup\", \"Programming (Music)\", \"Sustainability\", \"Computer Science\", \"Consumables\", \"Psychology\", \"Building Automation\", \"Mobile App\", \"Authentications\", \"Office Open XML\", \"React Native\", \"Prototyping\", \"Maintainability\", \"Iterators\", \"Pipelining\", \"Software Engineering\", \"Dashboard\", \"React.js\", \"Hosting\", \"Espresso (Android Testing Framework)\", \"Finance\", \"User Assistance\", \"Flooring\", \"Foods\", \"Public Transport\", \"Child Care Policy\", \"Front End (Software Engineering)\", \"Economics\", \"Build Automation\", \"User Experience\", \"Custom Backend\"]',\n", + " \"['English', 'Venda', 'Hiri Motu']\"],\n", + " ['40',\n", + " 'java software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.epam.com',\n", + " '[[-1.71919584e-01 2.81732976e-01 4.84064937e-01 -5.69593236e-02\\n4.68256027e-01 -3.42160948e-02 1.02954051e-02 2.62089521e-01\\n-2.28129048e-02 -3.24739158e-01 -2.06437349e-01 -2.69569308e-01\\n-4.12275195e-02 -5.38917370e-02 1.63495794e-01 4.88623798e-01\\n2.90773839e-01 7.33274827e-03 -1.84407234e-01 3.64538878e-01\\n1.37059212e-01 -1.07738093e-01 8.29301625e-02 7.77324319e-01\\n4.40808922e-01 7.30543584e-02 -7.26303160e-02 3.25239971e-02\\n-2.48149872e-01 -3.70282769e-01 5.62941849e-01 4.10772711e-02\\n-6.69803694e-02 -2.80117482e-01 2.85782546e-01 1.05221912e-01\\n-2.15670288e-01 3.22967358e-02 -1.60293326e-01 7.20751658e-02\\n-3.89699817e-01 -1.22789666e-01 3.39950100e-02 1.68695260e-04\\n-3.35550547e-01 -3.55818629e-01 -2.22640531e-03 -1.48606315e-01\\n1.77784547e-01 7.46651143e-02 -4.60888356e-01 2.63323814e-01\\n-2.68141299e-01 -2.83383459e-01 4.06603992e-01 7.84524679e-01\\n-6.99770302e-02 -5.94139755e-01 -4.24086094e-01 -3.70293081e-01\\n3.79855298e-02 -1.72399089e-01 1.12645008e-01 -1.59389257e-01\\n2.92536199e-01 -9.60010886e-02 -2.55580824e-02 3.14662695e-01\\n-7.01461375e-01 -8.52232352e-02 -3.00141186e-01 -3.62822637e-02\\n-4.20129687e-01 -1.14736967e-01 -5.02167881e-01 -1.26343474e-01\\n-1.39673635e-01 4.78894204e-01 -1.87342893e-02 7.03255013e-02\\n-1.10106021e-01 2.78921962e-01 -2.82969147e-01 3.23967695e-01\\n3.29088479e-01 1.95822984e-01 2.84555167e-01 3.31168562e-01\\n-4.19477940e-01 5.02915382e-01 3.09483618e-01 -3.11178982e-01\\n1.92650154e-01 7.88890570e-02 4.20271009e-01 2.29248732e-01\\n4.33826447e-02 1.46156892e-01 -6.29642308e-02 1.21827081e-01\\n2.58275628e-01 -1.19165085e-01 -5.07609062e-02 -1.80285230e-01\\n5.69037683e-02 -5.39673609e-04 3.79325449e-02 9.19675454e-02\\n-3.66221726e-01 3.54981542e-01 7.58465901e-02 -3.14536095e-01\\n-1.31201655e-01 -5.10037303e-01 -1.16903126e-01 -4.81957905e-02\\n-1.06746361e-01 2.95047998e-01 2.06738546e-01 2.23915368e-01\\n2.17652053e-01 -9.50488672e-02 1.02999650e-01 9.01753306e-01\\n-8.98940563e-02 6.87399134e-02 -2.28422076e-01 3.20472330e-01\\n1.49375647e-01 -2.42888182e-01 2.25913718e-01 1.82129696e-01\\n-1.94654092e-01 -1.04907021e-01 -2.56095111e-01 3.02702785e-01\\n-1.37177572e-01 -2.37009943e-01 -2.77807176e-01 1.33254096e-01\\n-1.74192190e-01 -5.29696822e-01 6.49683356e-01 -3.45626995e-02\\n1.16750129e-01 -1.34211913e-01 6.32655025e-02 -8.07553381e-02\\n-9.66741368e-02 2.16834903e-01 7.73973241e-02 1.13380492e-01\\n-2.16948643e-01 -2.03120202e-01 -1.86517745e-01 2.34471038e-01\\n-8.59403983e-02 1.16346151e-01 -3.24103862e-01 -1.76558018e-01\\n3.11060995e-01 1.34218112e-01 -2.86858708e-01 2.47557282e-01\\n5.50704412e-02 -8.18937793e-02 -1.63809314e-01 2.31823668e-01\\n-1.93685442e-01 2.27208197e-01 -5.42349480e-02 -2.41532493e-02\\n7.64591157e-01 1.24833368e-01 2.85915852e-01 -1.26268819e-01\\n2.83260047e-01 -8.15177262e-02 2.26839527e-01 1.87850133e-01\\n-5.57293713e-01 3.07172984e-01 -5.68480650e-03 -5.77630587e-02\\n1.17821805e-01 -6.97071552e-02 2.13178620e-01 -3.69680792e-01\\n8.70050564e-02 -1.09583028e-01 -3.56728494e-01 -3.62782180e-01\\n-9.46436748e-02 -7.79080614e-02 3.44352692e-01 -5.26448011e-01\\n1.01827569e-02 2.70497024e-01 -5.91163397e-01 -1.84783429e-01\\n2.06232592e-01 2.47477159e-01 1.38238341e-01 2.08066106e-01\\n-1.32898092e-01 -4.68614787e-01 1.34221435e-01 -3.81671399e-01\\n-3.35919261e-01 1.09545164e-01 -2.35484689e-01 1.29149228e-01\\n5.88874482e-02 5.02655096e-02 -1.92479372e-01 1.06266379e-01\\n-2.97162920e-01 1.59906072e-03 2.05155089e-01 9.34998244e-02\\n2.74592370e-01 1.49871558e-01 -3.80010724e-01 5.46890497e-01\\n-2.17333153e-01 4.26605344e-01 7.14566857e-02 -9.88181949e-01\\n5.42867184e-01 2.85078704e-01 -3.30983698e-02 -3.36631507e-01\\n4.19231951e-01 -4.12984788e-01 1.20959125e-01 1.29474282e-01\\n-3.42794001e-01 -2.58195996e-01 3.57731909e-01 -2.30537266e-01\\n-2.70753711e-01 5.99315047e-01 -1.22890901e-02 7.36503974e-02\\n1.95343316e-01 -9.47185233e-02 -1.82541668e-01 7.05934828e-03\\n-2.33077452e-01 -1.13625921e-01 -5.93707621e-01 1.05579488e-01\\n-9.65390876e-02 -4.75049764e-01 -1.20107755e-01 -6.11977935e-01\\n-3.01712692e-01 -3.93612832e-01 -2.15479359e-01 6.18445538e-02\\n1.40492663e-01 1.35498285e-01 -1.76348180e-01 -6.04385845e-02\\n-8.96640569e-02 -7.13332951e-01 -3.98706868e-02 5.96145056e-02\\n3.92174095e-01 2.66706288e-01 8.68079513e-02 -4.11208346e-02\\n5.08651733e-02 5.46246529e-01 -3.25899899e-01 -1.13582291e-01\\n1.54191479e-01 1.15970299e-01 8.69006291e-02 -1.41533658e-01\\n1.13556879e-02 2.71666408e-01 -3.59004736e-01 -3.10435928e-02\\n-1.00238919e-01 6.74099401e-02 3.83340687e-01 -9.57019180e-02\\n-3.66176307e-01 -2.39621192e-01 -6.72222227e-02 2.19832659e-01\\n-6.47780180e-01 -2.36217186e-01 7.56670356e-01 1.87729806e-01\\n4.20486555e-02 3.15089315e-01 2.01971918e-01 -3.01755108e-02\\n-2.07486093e-01 -1.10348739e-01 3.69705915e-01 4.70934138e-02\\n1.53266639e-01 1.58329383e-01 -1.82434276e-01 -6.99135959e-01\\n-3.30875325e+00 -1.40472740e-01 1.23780124e-01 -2.27444500e-01\\n2.48103052e-01 -1.87426418e-01 2.31958002e-01 -5.12921102e-02\\n-3.83744091e-01 -1.11498155e-01 -1.37218490e-01 -1.11436285e-01\\n1.35792524e-01 2.48466298e-01 1.32421955e-01 3.64632994e-01\\n1.68590963e-01 -2.42952749e-01 1.45405367e-01 4.04380083e-01\\n-2.75270909e-01 -7.54139364e-01 1.67608276e-01 5.28822877e-02\\n1.95483565e-01 4.29810509e-02 -4.52280015e-01 -7.58045241e-02\\n-2.96889514e-01 -2.51669407e-01 5.53993396e-02 -1.70366690e-01\\n-2.52960414e-01 1.64696291e-01 2.30514735e-01 -1.87001467e-01\\n1.20414391e-01 -4.73970115e-01 -1.18615925e-01 -5.47729433e-01\\n2.26956280e-03 -6.72837079e-01 2.68606972e-02 -2.13380996e-02\\n6.34693027e-01 -2.38545164e-01 1.93822309e-01 1.43922597e-01\\n2.17761263e-01 1.37691110e-01 1.45964101e-01 6.94967285e-02\\n-3.41597587e-01 -3.07024539e-01 -1.16236143e-01 -2.10364684e-01\\n5.73414326e-01 4.61988360e-01 -1.40686989e-01 3.22067924e-02\\n-8.31708312e-02 -2.74249613e-01 -4.45239305e-01 -3.09342563e-01\\n-3.28293085e-01 3.60417590e-02 -7.21698105e-01 -4.91704315e-01\\n-1.96297809e-01 -2.41964355e-01 -1.49175137e-01 6.45357847e-01\\n-1.59837812e-01 -3.35736632e-01 -4.90242317e-02 -4.86358702e-01\\n3.28123122e-01 -8.53832960e-02 1.33512139e-01 -1.88681409e-01\\n-1.83597207e-01 -3.96379173e-01 2.43595928e-01 -4.67403568e-02\\n-1.64900422e-01 -1.35136634e-01 8.16346332e-02 -5.69810644e-02\\n-3.65135431e-01 -5.40824533e-01 4.05861557e-01 5.87495044e-02\\n3.33712816e-01 1.04988001e-01 3.58494788e-01 6.20415434e-02\\n3.41854930e-01 -4.13585752e-02 -8.74069333e-03 -4.58473414e-01\\n1.42114214e-03 1.04126289e-01 5.60548306e-01 -2.19750553e-01\\n1.86550915e-01 1.59535557e-01 -3.22372139e-01 -1.16958385e-02\\n4.24700171e-01 -5.06309047e-02 1.79881409e-01 -2.65685916e-01\\n2.82050073e-01 -2.51965314e-01 -3.18642944e-01 -3.90035249e-02\\n2.29194742e-02 6.74745917e-01 -6.89919339e-03 -4.34743881e-01\\n-1.60144493e-01 4.45980161e-01 -6.94843754e-02 -1.03051830e-02\\n-2.98297822e-01 1.53930381e-01 -2.88108498e-01 2.91676909e-01\\n5.52276969e-02 -1.37562051e-01 -3.69112849e-01 -1.37981340e-01\\n-9.84194353e-02 2.47453615e-01 2.19683245e-01 1.19268313e-01\\n-9.28810239e-02 -2.26653650e-01 -5.49519956e-02 2.65233308e-01\\n1.57322660e-01 3.91252965e-01 2.62707263e-01 -3.17310363e-01\\n7.57882595e-02 2.23599523e-01 -1.98541880e-01 3.02110225e-01\\n-3.05316776e-01 1.83055922e-01 -5.82228422e-01 -2.25112885e-01\\n-2.42460132e-01 -4.16365325e-01 1.26069367e-01 3.75059754e-01\\n6.00344427e-02 5.74178714e-03 1.47806883e-01 -4.70705986e-01\\n3.84077638e-01 4.94497679e-02 1.58891872e-01 1.32541269e-01\\n1.17428556e-01 6.33234322e-01 4.88760741e-03 -1.57410577e-01\\n-2.16880485e-01 5.69334403e-02 -3.25867206e-01 -2.15343311e-01\\n8.51912051e-02 -5.32782495e-01 -6.87642321e-02 4.03517127e-01\\n1.46207377e-01 -9.37833562e-02 -1.47742718e-01 2.90811896e-01\\n1.81198493e-02 -2.49550626e-01 -2.52390951e-01 2.45402986e-03\\n2.44264826e-01 5.38487360e-02 3.00696164e-01 -4.90627229e-01\\n1.05952457e-01 -1.23984665e-01 8.34117681e-02 5.25035381e-01\\n1.69569731e-01 2.20710039e-01 -1.37485033e-02 -1.80477440e-01\\n5.24444580e-01 -1.00963816e-01 -1.12638921e-01 -3.81861515e-02\\n9.92491096e-02 -1.73227772e-01 -5.04171431e-01 4.38575894e-02\\n-9.10531208e-02 -1.45354718e-01 9.59565639e-02 1.11411311e-01\\n1.06030457e-01 -2.92574968e-02 -6.41000152e-01 -3.24678749e-01\\n-3.33363861e-01 1.63768753e-01 1.16787739e-02 -6.62823319e-01\\n-6.39719591e-02 5.50428145e-02 -5.98048985e-01 2.57290781e-01\\n-3.89619870e-03 -4.88169044e-02 1.88672781e-01 7.62674138e-02\\n-1.71412870e-01 -9.44894925e-02 1.36151388e-01 1.30378932e-01\\n-2.10719228e-01 -1.62710994e-01 3.63288657e-03 -1.07502043e+00\\n2.25441024e-01 7.30384216e-02 -2.00783119e-01 9.21990052e-02\\n-4.71623205e-02 -8.58056366e-01 2.26553410e-01 -3.93634170e-01\\n-7.61694834e-02 1.12937696e-01 -1.31912380e-01 -4.96871710e-01\\n6.80479556e-02 -7.11151026e-03 -2.83148915e-01 3.24218273e-01\\n-3.98939878e-01 4.25331652e-01 -4.78918850e-02 1.81701779e-01\\n1.47260875e-01 -3.05740237e-01 3.44472118e-02 -3.49052161e-01\\n-3.86572897e-01 -2.27709249e-01 -2.72239596e-01 -1.91561729e-01\\n4.21302058e-02 -2.93487489e-01 -6.65989071e-02 -2.89108679e-02\\n4.81133968e-01 2.28502020e-01 -1.98604494e-01 -3.35714102e-01\\n2.15981696e-02 -5.51821828e-01 2.56159976e-02 -1.91342056e-01\\n2.53805090e-02 -2.86454499e-01 3.09090316e-01 -9.52417776e-03\\n3.14948350e-01 -4.38213319e-01 5.12106419e-01 -1.91226378e-01\\n-4.20582384e-01 -9.96183231e-02 8.75280574e-02 3.45657580e-02\\n3.31998438e-01 -4.87252146e-01 -1.56253695e-01 3.10691506e-01\\n-1.68279912e-02 -9.44731943e-03 3.31054658e-01 -1.93903074e-01\\n-1.74969390e-01 2.00190648e-01 -5.59068322e-01 2.07319483e-01\\n6.73894763e-01 2.44034287e-02 1.16923988e-01 9.69735458e-02\\n1.34544000e-01 2.28441358e-01 6.37487769e-01 -5.95330708e-02\\n-1.54868022e-01 3.40685725e-01 -8.31345022e-02 -6.81346893e-01\\n-3.15954648e-02 -1.77135572e-01 -7.96217173e-02 -4.00322050e-01\\n6.64742172e-01 3.37964803e-01 -2.74512768e-01 -2.91313142e-01\\n-1.98888719e-01 -2.59303451e-01 2.69883871e-01 7.92102367e-02\\n9.83724557e-03 -6.33535981e-02 4.96266574e-01 -1.78306736e-03\\n3.90143067e-01 4.91152257e-01 -1.94394901e-01 -1.92403585e-01\\n-4.98873219e-02 2.48325482e-01 3.13150845e-02 4.71769035e-01\\n-1.47375509e-01 2.33435497e-01 9.97645333e-02 1.93992764e-01\\n-1.93518654e-01 -5.30297644e-02 1.65692478e-01 1.29700169e-01\\n1.36714384e-01 -8.32184311e-03 5.06102324e-01 4.54964310e-01\\n3.26938540e-01 3.89599085e-01 3.09572160e-01 1.76237114e-02\\n4.97174054e-01 6.87113583e-01 4.14649457e-01 1.56375319e-01\\n8.47204626e-02 5.82023300e-02 9.82664451e-02 -4.75001074e-02\\n3.15815508e-01 4.59129393e-01 3.72670479e-02 7.28798866e-01\\n3.48006755e-01 3.09118271e-01 7.11241066e-01 -7.06816018e-01\\n-3.38940054e-01 -1.00262761e-01 6.42797351e-01 -3.96856219e-01\\n9.55101475e-02 2.35689089e-01 -1.90204471e-01 2.00395957e-01\\n-4.29340839e-01 -1.39828324e-01 1.05848722e-01 -1.11335829e-01\\n1.70839131e-01 -1.45234898e-01 -1.33434087e-01 1.76549882e-01\\n-2.31828839e-01 -2.41125032e-01 -3.57971132e-01 -8.26558471e-02\\n-3.11307758e-01 1.56581104e-02 -5.73256388e-02 -6.57175034e-02\\n-2.23926112e-01 -2.45213434e-01 -1.84875518e-01 1.64091066e-02\\n3.14159483e-01 -1.62863210e-01 -1.78881496e-01 -1.67792171e-01\\n1.88264742e-01 3.26184303e-01 6.50709927e-01 -3.53121869e-02\\n1.79076210e-01 -2.98844159e-01 -1.25256985e-01 1.58627063e-01\\n2.64280349e-01 -4.73334491e-02 6.48877323e-02 4.95882303e-01\\n-3.43580276e-01 -2.56434500e-01 1.60778254e-01 3.03699344e-01\\n-3.88005406e-01 1.73377059e-02 -1.03157029e-01 1.47013232e-01\\n2.18542060e-03 1.85138464e-01 -2.16427162e-01 -1.24779353e-02\\n-3.59577164e-02 -6.00027144e-01 4.63126838e-01 -9.34181362e-02\\n-2.15923011e-01 6.38946891e-02 2.44623274e-01 3.46377730e-01\\n-2.93448657e-01 7.12933913e-02 -1.90976307e-01 8.93735141e-02\\n5.29000424e-02 3.44804287e-01 -2.63412654e-01 -2.32178330e-01\\n-2.79406607e-01 2.81543851e-01 -1.27655476e-01 1.36797443e-01\\n6.75568208e-02 3.87520343e-01 1.28951252e-01 -4.25912030e-02\\n3.03428620e-01 9.69086811e-02 -2.97073752e-01 -2.14627206e-01\\n-2.70903647e-01 -8.77839997e-02 4.59462851e-02 -1.89668775e-01\\n2.02823713e-01 -3.21965694e-01 2.41124891e-02 -2.42942855e-01\\n-3.19720268e-01 -3.65619898e-01 -2.03693494e-01 -3.58000025e-02]]',\n", + " 'We are looking for a Java Software Engineer to come on board and support our operation in Zürich. The team provides server-side solutions for pricing and execution of a wide range of financial instruments including FX Vanilla & Exotic Options. The programme of work has a very high profile and is recognised to be a key part of our business strategy. Responsibilities Design and implement solutions, writing high quality code and adhere to coding standards Work across full delivery cycle to ensure high quality delivery, utilizing automated testing Support the system / team in resolving high-priority defects and deploying fixes to production systems Work as part of an agile development team and collaborate with global business and IT stakeholders Perform level 3 support, assisting production operations team in rollout and support-related matters Requirements Strong server-side Java skills, including expertise in multi-threaded performance critical programming Large-scale enterprise, object-oriented design experience and hands-on experience in building distributed systems Applied solutions to cater for non-functional requirements including stability, manageability, scalability, capacity and performance Strong analytical, problem-solving and synthesizing skills (you know how to figure stuff out) Working experience in agile SDLC and TDD methodology, with Git/GitHub and continuous integration Ability to work closely with business partners, as part of a global team, delivering iteratively Interest in financial industry or FX derivatives business knowledge Exposure to electronic trading platforms and FIX engines is an added advantage Nice to have: some Java Swing knowledge, Apache Kafka Passionate about what you do, you value excellence, learning and integrity, you like a work Environment that places emphasis on teamwork, collaboration and delivering business value while Working at a sustainable pace Someone who is technically excellent and can aspire, and inspire others, to our values and culture Proactive, detail-oriented and comfortable working in dynamic environments with fast paced deliveries and changing requirements Quick learner An excellent communicator, strong written and verbal communication skills in English We offer Large developer community around the world Career development across technologies and domains Competitive compensation Extensive in-house educational opportunities Dynamic teams and creative work environments Corporate and social events Being part of an international organization servicing both local and global clients Unlimited access to LinkedIn learning solutions Additional Please note that any offers will be subject to appropriate background checks We do not accept CVs from recruiting or staffing agencies Due to the Swiss labour legislation we can only accept EU candidates and applicants who have open work permit for Switzerland',\n", + " '[\"Verbal Communication Skills\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Proactivity\", \"Management\", \"Problem Solving\", \"Communications\", \"Operations\", \"Detail Oriented\", \"Integration\", \"Creativity\", \"Socialization\"]',\n", + " '[\"Distributed File Systems\", \"Electronic Trading Platform\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Agility\", \"Programming (Music)\", \"Sustainability\", \"Analytics\", \"Automated Testing Framework\", \"Business Partnering\", \"Continuous Integration\", \"Business Strategies\", \"Industrialization\", \"Legislation\", \"Scale (Map)\", \"Financial Instrument\", \"Functional Requirement\", \"Financial Information eXchange (FIX) Protocol\", \"Levelling\", \"Apache Kafka\", \"Executable\", \"Server-Side\", \"Iterators\", \"Hostile Work Environment\", \"Software Engineering\", \"Github\", \"AD Model Builder (ADMB)\", \"International Organizations\", \"Electronic Trading\", \"Scalability\", \"Object-Oriented Design\", \"Production Systems\", \"Community Development\", \"Swing (Dance)\", \"Career Development\", \"Quality Cost Delivery\", \"Additives\", \"Git Flow\", \"Derivatives\", \"Java (Programming Language)\", \"Agile Product Development\"]',\n", + " \"['English']\"],\n", + " ['57',\n", + " 'java software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.57583886e-01 2.24278361e-01 6.10608578e-01 -1.32473692e-01\\n5.40641129e-01 -2.66387910e-01 8.89475271e-03 4.58861977e-01\\n-1.72101825e-01 -3.97874653e-01 -8.91604796e-02 -2.91676521e-01\\n-8.50128308e-02 1.08348310e-01 1.90760925e-01 3.06241989e-01\\n2.47287810e-01 1.53054461e-01 -1.96567520e-01 3.35067272e-01\\n1.45332381e-01 -1.12508059e-01 -7.27547472e-03 7.02277780e-01\\n4.61279154e-01 2.71470379e-02 -1.81327716e-01 8.36401954e-02\\n-2.35679656e-01 -3.43126655e-01 4.10136104e-01 5.15991859e-02\\n-1.31657824e-01 -2.32896119e-01 1.05538338e-01 6.84699789e-02\\n-2.18084857e-01 -3.67332511e-02 -2.30334215e-02 2.25426018e-01\\n-5.01278996e-01 -1.63770318e-01 1.30645633e-01 6.71180561e-02\\n-1.26623824e-01 -2.61265814e-01 6.97741583e-02 -1.47142988e-02\\n1.72037661e-01 -2.97129825e-02 -6.49174213e-01 3.30680430e-01\\n-1.55511528e-01 -2.63963342e-01 2.68973827e-01 4.72108305e-01\\n-4.33117971e-02 -4.72319245e-01 -3.66739392e-01 -3.31185967e-01\\n2.78378241e-02 -7.84204528e-02 6.00680336e-02 -2.67986476e-01\\n3.97579104e-01 7.72539079e-02 -2.74479538e-02 5.11141241e-01\\n-8.47846448e-01 1.67120546e-02 -1.65963203e-01 -2.01355200e-02\\n-2.79158711e-01 -4.66028079e-02 -1.80689424e-01 -1.19035348e-01\\n-1.13500163e-01 4.33825254e-01 4.05250527e-02 1.67095691e-01\\n-1.50328681e-01 3.01293820e-01 -1.80330515e-01 2.73952365e-01\\n2.92767763e-01 3.08838934e-01 1.68060079e-01 2.75948644e-01\\n-4.49267596e-01 3.06172073e-01 1.29521906e-01 -2.80103236e-01\\n3.08810920e-01 1.29945800e-01 4.92417008e-01 2.91899834e-02\\n1.26032025e-01 1.16703376e-01 -2.09692717e-01 2.45438933e-01\\n3.06585014e-01 -2.21688688e-01 -1.63578391e-02 -7.32325576e-03\\n-1.04856305e-01 9.18223113e-02 -5.71673140e-02 2.61083424e-01\\n-2.53644526e-01 5.49844742e-01 6.22525327e-02 -1.51834682e-01\\n-6.30524307e-02 -6.14064991e-01 -7.06819668e-02 9.67485309e-02\\n6.90301135e-03 2.34434962e-01 2.93787748e-01 2.27627635e-01\\n2.80523807e-01 1.67687774e-01 1.23844877e-01 8.71379435e-01\\n-1.82832405e-01 9.04105231e-02 -2.78920680e-01 3.73587191e-01\\n1.80734247e-01 -2.07606792e-01 2.95285702e-01 2.73443729e-01\\n1.04889244e-01 -8.28641951e-02 -1.67222515e-01 3.88706326e-01\\n-3.12034157e-03 -1.65013686e-01 -2.57144272e-01 6.45506606e-02\\n-3.01792145e-01 -5.02516091e-01 5.44718802e-01 6.26810715e-02\\n2.46172652e-01 8.28823298e-02 5.09679615e-02 9.72435251e-03\\n-1.11060306e-01 2.47699976e-01 -9.23224241e-02 2.67207742e-01\\n-2.26901218e-01 -1.86406955e-01 -3.44459444e-01 2.10952193e-01\\n-1.94614425e-01 1.52743965e-01 7.67313689e-03 -1.09751500e-01\\n3.48649651e-01 5.49802324e-03 -2.35884979e-01 3.92635882e-01\\n-1.60011068e-01 -7.97309354e-02 -8.07939023e-02 1.72748089e-01\\n-7.33570755e-02 2.08269522e-01 -5.12530096e-02 -1.99508652e-01\\n5.30699611e-01 2.09235191e-01 1.67233557e-01 -1.24382891e-03\\n3.02465677e-01 -9.44857597e-02 1.60577103e-01 2.96599604e-02\\n-7.74726152e-01 3.57794464e-01 9.02968086e-03 -1.97710410e-01\\n-2.40483936e-02 4.89026718e-02 3.22064966e-01 -3.60242337e-01\\n3.90120037e-02 -1.09087110e-01 -4.32024777e-01 -3.24579269e-01\\n-2.91374266e-01 2.05730181e-02 5.21267474e-01 -4.00459617e-01\\n-1.88750923e-01 1.21945046e-01 -5.36569834e-01 8.41926709e-02\\n2.73975492e-01 1.45664349e-01 4.63981889e-02 9.78739560e-02\\n-9.55403820e-02 -5.65264702e-01 1.01441719e-01 -4.49343890e-01\\n-3.34717840e-01 1.56051546e-01 -3.32833171e-01 1.59459874e-01\\n1.13084018e-01 5.55495638e-03 -1.48442328e-01 1.43238753e-01\\n-1.96646258e-01 -1.05383925e-01 1.46250531e-01 1.19363889e-01\\n4.66866642e-01 3.92461829e-02 -4.67435658e-01 5.82722247e-01\\n-2.25528777e-01 5.99116564e-01 2.35894561e-01 -9.59693789e-01\\n4.82131422e-01 3.71363550e-01 1.48339868e-01 -3.19856167e-01\\n6.29062474e-01 -3.06101829e-01 -3.23906057e-02 8.90640467e-02\\n-4.93299723e-01 -3.05044800e-01 1.90983251e-01 -1.27752498e-01\\n-2.36862689e-01 5.44315636e-01 8.07897523e-02 5.43228053e-02\\n3.09236169e-01 -1.60474315e-01 -1.26948327e-01 3.25009264e-02\\n-8.38085935e-02 -3.34769607e-01 -4.15257961e-01 1.26669094e-01\\n-1.25170767e-01 -5.50664842e-01 -2.15689465e-02 -3.51278663e-01\\n-2.71888644e-01 -3.93545747e-01 -2.41604358e-01 4.65740472e-01\\n1.58422768e-01 6.64536431e-02 7.47429505e-02 5.78101538e-02\\n-1.86671585e-01 -5.68167865e-01 4.53361645e-02 1.48970649e-01\\n4.26604778e-01 1.72204286e-01 4.92882468e-02 -6.85800239e-02\\n-9.20698866e-02 6.17161632e-01 -3.84079069e-01 -1.71341613e-01\\n4.82404903e-02 1.28838614e-01 -8.05882514e-02 -3.45155559e-02\\n4.02178541e-02 3.69528681e-01 -2.97649592e-01 -1.45858210e-02\\n-2.42435172e-01 1.22509353e-01 3.80285054e-01 -4.77877595e-02\\n-4.00515109e-01 -2.42902219e-01 -1.05139568e-01 2.32550383e-01\\n-5.29595256e-01 -1.70521870e-01 6.26755953e-01 1.90487877e-01\\n1.26379415e-01 1.48844153e-01 2.16809675e-01 -1.03928514e-01\\n-1.66048914e-01 -3.39489549e-01 1.83162794e-01 1.21256530e-01\\n1.33968458e-01 1.19143903e-01 -9.55008939e-02 -5.60689390e-01\\n-3.42344046e+00 -2.39997104e-01 1.67549223e-01 -3.20032984e-01\\n1.46800205e-01 -2.19089493e-01 3.13191414e-02 -1.23652548e-01\\n-1.85080037e-01 8.42759535e-02 -1.28616914e-01 -1.73912361e-01\\n1.78927839e-01 1.99459776e-01 1.23740532e-01 2.49317273e-01\\n2.23415017e-01 -1.33193567e-01 3.32326964e-02 2.85424203e-01\\n-2.34543428e-01 -6.23800755e-01 2.13373452e-01 -1.33986175e-01\\n3.30299973e-01 3.47469807e-01 -2.91469574e-01 -1.33075312e-01\\n-1.52270198e-01 -3.00877184e-01 9.87958685e-02 -2.66842902e-01\\n-6.67360565e-03 3.50001693e-01 9.53909531e-02 -8.19347203e-02\\n1.62400961e-01 -3.30659777e-01 -6.44750819e-02 -3.84279698e-01\\n2.10682005e-01 -5.68385720e-01 -7.26196468e-02 -5.35071008e-02\\n8.01595747e-01 -3.73670071e-01 1.61102027e-01 2.02670902e-01\\n1.19603641e-01 2.72307217e-01 1.10587738e-02 -2.03825563e-01\\n-2.92967081e-01 -2.54518807e-01 5.74550815e-02 -2.10433111e-01\\n4.81725276e-01 5.25332153e-01 -2.15332612e-01 6.45343512e-02\\n9.51613262e-02 -2.67256469e-01 -4.68601495e-01 -4.69010770e-01\\n-2.03330263e-01 -2.50050813e-01 -6.21195197e-01 -5.24641514e-01\\n-1.80896204e-02 -2.04285845e-01 -1.45651698e-01 6.63150966e-01\\n-2.77416438e-01 -4.18004483e-01 -6.61919042e-02 -4.88435388e-01\\n1.46508873e-01 -1.57860979e-01 -1.22777857e-01 -1.40238583e-01\\n-2.35778838e-01 -4.86413300e-01 -2.80342400e-02 9.30318888e-03\\n-1.70999244e-01 -2.64476478e-01 1.17607556e-01 -2.74324179e-01\\n-3.43522936e-01 -4.97430861e-01 5.32748282e-01 4.64134552e-02\\n3.52548718e-01 6.05197437e-02 2.32776672e-01 1.96070179e-01\\n3.41220170e-01 -2.76282161e-01 1.35229342e-02 -3.96473050e-01\\n1.98206753e-01 -1.70233604e-02 5.56876004e-01 -1.55463874e-01\\n1.56599268e-01 1.46961689e-01 -1.49105847e-01 -2.65505373e-01\\n3.74508858e-01 6.98375702e-02 1.09697461e-01 -2.43835911e-01\\n3.70247096e-01 -3.38080436e-01 -3.80105317e-01 1.75932795e-01\\n-9.13916603e-02 6.44052148e-01 -6.21827394e-02 -3.98258924e-01\\n-2.20207095e-01 5.83137810e-01 -1.32708713e-01 -1.29001111e-01\\n-2.18515709e-01 1.03773534e-01 -1.84651583e-01 1.87637970e-01\\n1.05787858e-01 -1.42905623e-01 -2.34073803e-01 -8.59974846e-02\\n-3.47021855e-02 1.72941983e-01 2.49844164e-01 1.05177071e-02\\n9.54391882e-02 -4.10854250e-01 -9.24184918e-02 1.65698677e-01\\n2.36222535e-01 3.29858273e-01 9.73102823e-02 -1.40055329e-01\\n-9.37038586e-02 2.91175365e-01 -1.75197363e-01 1.75014988e-01\\n-2.01614231e-01 4.50126342e-02 -4.46310073e-01 -2.99648821e-01\\n-2.21855998e-01 -3.37423831e-01 -1.04301898e-02 1.09562039e-01\\n3.50798219e-02 9.86902416e-02 -1.22194523e-02 -4.31680053e-01\\n2.63424724e-01 -2.93281977e-03 3.24295431e-01 1.97017312e-01\\n-5.85931167e-02 4.81887072e-01 9.85051692e-03 -1.68752149e-02\\n-1.14188395e-01 6.37781769e-02 -2.12607101e-01 -1.69618189e-01\\n-3.37427221e-02 -4.13840383e-01 -5.98542579e-02 4.40601289e-01\\n1.20637789e-01 -3.84090811e-01 -2.78004616e-01 1.58101082e-01\\n-3.38055007e-02 -3.79125088e-01 -1.87674120e-01 1.76028647e-02\\n3.53184938e-01 3.64386216e-02 2.67181337e-01 -5.67322731e-01\\n-2.40153447e-02 6.06786348e-02 -5.43791689e-02 5.30635655e-01\\n7.94282258e-02 -2.64340062e-02 -1.40363812e-01 -3.73206735e-01\\n2.75253862e-01 -1.81798264e-01 2.71342136e-03 -1.91415489e-01\\n5.78765757e-02 -1.91194728e-01 -4.30463880e-01 9.47066769e-02\\n-1.20195381e-01 -1.97345063e-01 -1.00383554e-02 -1.10037394e-01\\n1.28113870e-02 8.55104923e-02 -5.22974193e-01 -3.40321243e-01\\n-3.75218987e-01 -1.36259794e-01 8.72427225e-03 -3.40312690e-01\\n3.80098224e-02 7.86961913e-02 -6.10029101e-01 2.69160658e-01\\n-3.51555824e-01 -1.90250054e-02 1.95648685e-01 3.75189856e-02\\n-4.43506300e-01 2.99211536e-02 2.37376034e-01 2.38107502e-01\\n-4.26049471e-01 -2.94054478e-01 6.88863546e-02 -1.05952585e+00\\n1.68002829e-01 -1.82837900e-02 9.42894723e-03 9.42927226e-02\\n2.72770203e-03 -5.96114576e-01 1.11601770e-01 -3.04830909e-01\\n3.42156366e-02 -3.88490111e-02 -2.66441762e-01 -4.86245155e-01\\n3.69999409e-02 -6.02515116e-02 -2.97504127e-01 3.25485736e-01\\n-4.79360372e-01 3.11842769e-01 -3.43450122e-02 7.73108527e-02\\n-1.19152948e-01 -2.94846177e-01 1.19015217e-01 -4.17509913e-01\\n-4.01873678e-01 -1.60769135e-01 -2.82100290e-01 -2.19216838e-01\\n2.73652915e-02 -2.20999643e-01 -3.92215289e-02 1.66129991e-01\\n2.81601399e-01 6.46452382e-02 -9.92305651e-02 -3.05598080e-01\\n1.90013528e-01 -4.92806882e-01 -1.84919387e-02 -1.99532181e-01\\n-8.59614611e-02 -7.06908107e-02 1.34359270e-01 3.09030451e-02\\n5.18640690e-02 -4.61079270e-01 3.47921878e-01 -3.82179558e-01\\n-2.88794219e-01 -9.04683769e-03 4.36630473e-02 1.43059000e-01\\n2.72067726e-01 -5.45432448e-01 5.42921908e-02 3.90583038e-01\\n1.40932888e-01 2.18462422e-02 3.15219194e-01 1.47120990e-02\\n-5.35729676e-02 3.30026537e-01 -3.97946328e-01 1.11142218e-01\\n7.23168433e-01 1.97301209e-01 3.01393624e-02 2.18443334e-01\\n2.66600341e-01 4.12593305e-01 4.83061522e-01 -5.21094771e-03\\n3.72509547e-02 3.10118258e-01 1.46340996e-01 -7.00845063e-01\\n-3.45321521e-02 3.51000904e-06 -2.53404707e-01 -2.32473060e-01\\n6.99832916e-01 3.81607503e-01 -3.86612773e-01 -1.96372911e-01\\n-2.25604028e-01 -1.91897944e-01 1.48289829e-01 -1.98129028e-01\\n1.91521928e-01 -6.81058392e-02 4.98257279e-01 6.99881688e-02\\n2.91142613e-01 5.60273588e-01 -2.00168639e-01 -3.82358938e-01\\n-1.75074711e-01 9.17116627e-02 3.61310467e-02 3.82802635e-01\\n-1.48656413e-01 2.39627823e-01 7.68905580e-02 2.05974072e-01\\n-8.36420283e-02 1.98483497e-01 6.49647787e-02 7.32829943e-02\\n1.43256813e-01 5.69299832e-02 2.48082027e-01 4.36084986e-01\\n2.99941689e-01 5.98405302e-01 3.51424456e-01 1.60797238e-01\\n4.58824277e-01 5.06752849e-01 3.79154474e-01 1.69674128e-01\\n-9.54269320e-02 9.48182419e-02 -9.80877038e-03 -9.86820906e-02\\n3.83263320e-01 2.84612358e-01 1.10103093e-01 9.56705511e-01\\n4.68186408e-01 2.81715065e-01 7.83853412e-01 -5.84079981e-01\\n-4.61227208e-01 -3.10950503e-02 4.12851751e-01 -3.56342793e-01\\n-1.12012103e-01 9.01244730e-02 -1.96246818e-01 2.92169422e-01\\n-4.62409914e-01 -7.29872808e-02 -5.34939393e-02 7.95590430e-02\\n1.78047851e-01 -4.43895645e-02 -3.40434492e-01 -1.83744311e-01\\n-2.56870270e-01 -8.13818946e-02 -4.77654159e-01 -3.79056185e-02\\n-2.52517223e-01 -2.76095837e-01 -1.86661422e-01 -1.44891188e-01\\n-1.35957487e-02 -4.37088102e-01 -1.52315408e-01 8.73189047e-02\\n3.51048410e-01 -1.05664022e-01 -6.36203587e-02 -1.28768042e-01\\n2.88004637e-01 3.01429033e-01 5.00274122e-01 -9.48877037e-02\\n7.36109912e-02 -9.37480628e-02 -1.85977116e-01 7.53349364e-02\\n1.09136917e-01 1.11559808e-01 -2.09253817e-03 3.97442669e-01\\n-3.82200241e-01 -1.68757334e-01 7.99579769e-02 4.40565467e-01\\n-4.37371194e-01 -1.25770405e-01 7.78131038e-02 2.90759116e-01\\n1.28357157e-01 1.73150063e-01 -3.54894847e-01 5.46495467e-02\\n-2.68999010e-01 -5.13819516e-01 3.45636040e-01 -1.09166019e-01\\n-8.25389698e-02 5.99216558e-02 3.03997487e-01 1.59141764e-01\\n-1.88917920e-01 -1.03359103e-01 1.25873491e-01 2.11416766e-01\\n1.26016781e-01 3.47677231e-01 -2.63669252e-01 -2.25019798e-01\\n-2.77623743e-01 2.68201560e-01 -3.32442760e-01 1.74849391e-01\\n-1.55298963e-01 3.42802942e-01 1.53565735e-01 1.28540710e-01\\n1.73937172e-01 -4.52347361e-02 -1.25829980e-01 -2.02888966e-01\\n-3.53951782e-01 -2.95110673e-01 8.25848579e-02 -2.93367654e-02\\n1.67923048e-01 -4.18692261e-01 -4.70832735e-02 -6.47504330e-02\\n-2.66997725e-01 -2.90285826e-01 -9.46866497e-02 -1.43150270e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Java Software Engineer. This role is a permanent position based in Zürich or Bern Canton depending on candidate preference. Your role: Develop sophisticated web / JEE applications. Develop software & enterprise architectures. Design technical solutions in collaboration with customers. Making cost estimates. Contribute to the further development of software development within the business. Your Skills: Experienced in the development of solutions based on Java technologies / open source frameworks. Good knowledge in the following areas: JAVA frameworks for dependency injection O / R mapping & access control (Spring, Hibernate) JAVA application server (Tomcat, JBoss, WebSphere or WildFly) Spring & Vaadin JAVA Web technologies (JSF and PrimeFaces ) Client-side JavaScript UI technologies (Angular 2, React) JAVA UI technologies (JavaFX) Cloud technologies (Docker, Openshift, Kubernetes) Database technologies (Oracle, MySQL, Maria DB) Experience in agile software development is advantageous. Your Profile: Higher education in Computer Science. Self-driven, self-motivation, open-minded & solution-oriented. Cooperative, quality-focused & both customer & team-oriented. Analytical, conceptual & in possession of a quick understanding. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Self-Motivation\", \"Team Oriented\", \"Cooperation\", \"Collaboration\", \"Positivity\"]',\n", + " '[\"MySQL\", \"OpenShift\", \"Kubernetes\", \"Computer Science\", \"Analytics\", \"Mobile Application Software\", \"Higher Education\", \"Vaadin\", \"Hibernate (Java)\", \"Primefaces\", \"WildFly (JBoss AS)\", \"Application Servers\", \"Software Engineering\", \"React.js\", \"Agile Software Development\", \"Open Source Technology\", \"Docker (Software)\", \"Conceptualization\", \"Enterprise Architecture\", \"Java Application Server\", \"Java Collections Framework\", \"Project-Based Solutions\", \"Access Controls\", \"Dependency Injection\", \"Cost Estimation\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"JavaFX\", \"Receivables\", \"Angular (Web Framework)\", \"Technical Solution Design\", \"Java Web Services\", \"Software Development\", \"Mapping\", \"Java (Programming Language)\", \"Apache Tomcat\", \"JSF 2\", \"Cloud Technologies\"]',\n", + " \"['English', 'Marathi', 'Luxembourgish', 'Tatar', 'Amharic']\"],\n", + " ['145',\n", + " 'c++ back end software engineer',\n", + " 'Zürich',\n", + " 'Aerospace & Defence',\n", + " 'www.veritystudios.com',\n", + " '[[-1.94348380e-01 3.86654705e-01 4.00781035e-01 3.70950587e-02\\n5.85618258e-01 -1.16143979e-01 -2.10347958e-02 2.62955159e-01\\n9.63716656e-02 -3.22371721e-01 -3.28790210e-03 -4.09738719e-01\\n-1.03634223e-01 1.12887949e-01 1.03849776e-01 5.52141428e-01\\n1.49206609e-01 8.52243900e-02 -2.57271886e-01 4.74316716e-01\\n4.91118729e-02 -1.25223652e-01 2.05478594e-01 7.69396424e-01\\n3.64225090e-01 3.89648750e-02 -1.39195040e-01 -4.26500700e-02\\n-2.08582491e-01 -1.09238833e-01 4.75828141e-01 5.23496680e-02\\n-9.49341282e-02 -5.54989219e-01 9.54063684e-02 1.13951951e-01\\n-2.43345976e-01 -9.42346230e-02 -1.37205228e-01 1.81399405e-01\\n-6.20150268e-01 -3.76232624e-01 -1.90401711e-02 -5.18785492e-02\\n-2.56950259e-01 -2.90452719e-01 2.08597437e-01 -4.42349464e-02\\n1.94856718e-01 1.55506432e-01 -4.80879009e-01 2.56232858e-01\\n-2.71040171e-01 -2.02431560e-01 3.92223150e-01 6.80856705e-01\\n-7.35888816e-03 -5.72267056e-01 -5.27735770e-01 -3.53371978e-01\\n-1.14412621e-01 7.49448501e-03 5.79795986e-03 -4.91108209e-01\\n2.28589207e-01 1.75274536e-02 4.16966900e-02 3.17887187e-01\\n-7.51130104e-01 -2.12072551e-01 -2.44154096e-01 6.68729767e-02\\n-2.11111039e-01 6.88102678e-04 -3.54203582e-01 -1.08962491e-01\\n-1.74808428e-01 4.08681929e-01 -1.71357617e-02 5.22712208e-02\\n-2.80045837e-01 3.80608797e-01 -1.84791982e-01 4.91457522e-01\\n2.58180529e-01 2.22371593e-01 1.46396101e-01 4.12636131e-01\\n-4.22194183e-01 2.82379359e-01 2.55765796e-01 -3.04087698e-01\\n2.12951303e-01 2.51925766e-01 4.26021308e-01 1.24225654e-02\\n1.30858853e-01 1.22331142e-01 -3.38515162e-01 3.50557268e-01\\n2.82593668e-01 -2.25958616e-01 1.80094838e-01 -1.17000706e-01\\n9.96977240e-02 3.40466462e-02 -1.05605088e-02 1.96294650e-01\\n-2.98010051e-01 4.40183282e-01 2.92286754e-01 -2.62683153e-01\\n-2.80870438e-01 -6.03706241e-01 -8.66058841e-02 1.24744773e-01\\n6.80034012e-02 1.55019149e-01 1.67781740e-01 1.36747375e-01\\n2.56217003e-01 -2.28316426e-01 1.38594314e-01 9.59096313e-01\\n-1.20944403e-01 -1.06562912e-01 -9.43699926e-02 2.96076536e-01\\n6.83789402e-02 -2.07362235e-01 1.06674537e-01 2.20443696e-01\\n1.64292753e-03 -1.12748906e-01 -2.58314788e-01 3.79270852e-01\\n-2.08699375e-01 -2.31089517e-01 -3.64469945e-01 3.73177230e-01\\n-8.84922594e-02 -4.07817453e-01 6.93808079e-01 -9.13595706e-02\\n1.55761823e-01 -6.82402402e-02 -1.00391861e-02 -8.44192207e-02\\n-1.73603505e-01 9.44158286e-02 1.71843827e-01 9.16444734e-02\\n-2.89607733e-01 -2.55266875e-01 -1.83834285e-01 7.56159425e-05\\n-3.28682244e-01 1.91302657e-01 -9.58610699e-02 -2.57399350e-01\\n9.22529697e-02 1.61047012e-01 -4.93340701e-01 2.54223198e-01\\n-2.60539949e-01 -5.10076284e-02 -1.06215641e-01 5.88988900e-01\\n-2.99050450e-01 1.81946009e-01 1.15071118e-01 -4.58161533e-03\\n6.70732617e-01 2.11163267e-01 2.14643508e-01 -4.08851169e-03\\n3.56607616e-01 -5.95619977e-02 1.60351783e-01 3.06355059e-01\\n-6.48547053e-01 2.98541784e-01 -3.01667303e-02 -4.08495888e-02\\n1.75974697e-01 -1.22684069e-01 3.81435752e-01 -3.70929122e-01\\n-1.45529807e-01 -2.39799082e-01 -3.69456649e-01 -2.49319673e-01\\n-2.42206037e-01 2.75893211e-02 2.64834553e-01 -3.15773010e-01\\n-1.13668546e-01 2.13936031e-01 -5.83916962e-01 -1.79358006e-01\\n1.34995207e-01 2.36872315e-01 1.13412507e-01 9.53873619e-02\\n-1.81309313e-01 -7.04969883e-01 2.62625329e-02 -3.30105901e-01\\n-3.53265941e-01 -8.25124886e-03 -3.63148212e-01 7.86953121e-02\\n-5.23837376e-03 1.06715329e-01 -9.11118388e-02 -1.03900405e-02\\n-4.67082709e-01 7.70175457e-02 1.55674182e-02 2.12781113e-02\\n1.81793809e-01 1.49291366e-01 -4.73080993e-01 4.15229946e-01\\n-3.30170363e-01 6.61423385e-01 -5.33360988e-03 -9.15490806e-01\\n5.17282128e-01 3.93017024e-01 -1.01353824e-01 -2.93962955e-01\\n4.41249788e-01 -5.61162293e-01 -1.82171702e-01 8.12476277e-02\\n-2.13682398e-01 -3.20696175e-01 3.53610575e-01 -2.90364683e-01\\n-3.31247091e-01 5.76578736e-01 9.49058980e-02 1.48613229e-01\\n3.28464121e-01 -3.25202525e-01 -4.09282818e-02 -1.10570649e-02\\n3.41901705e-02 -6.60564676e-02 -5.88007748e-01 -3.28038353e-04\\n-8.25570822e-02 -3.20418328e-01 -4.91697714e-03 -4.24571842e-01\\n-1.72771990e-01 -3.51472884e-01 -2.36000866e-01 6.52843341e-02\\n3.14039648e-01 6.66677952e-02 1.26211658e-01 5.10686710e-02\\n-4.77119833e-02 -7.13394165e-01 8.03755373e-02 1.41587138e-01\\n4.36300814e-01 2.40824565e-01 2.26307362e-01 3.89044136e-02\\n9.88297313e-02 7.40357459e-01 -3.34132850e-01 -1.72303617e-01\\n6.86783195e-02 5.21656834e-02 -5.52305952e-03 -1.56777561e-01\\n2.23208010e-01 3.59668225e-01 -3.70971888e-01 2.63797939e-02\\n-9.84190032e-02 -1.49103738e-02 4.26121116e-01 -3.55978794e-02\\n-2.56633550e-01 -2.88104475e-01 -6.99774474e-02 2.89968103e-02\\n-5.49732089e-01 -1.71457857e-01 2.87345707e-01 1.19387046e-01\\n2.19713330e-01 6.14910126e-02 1.89015821e-01 -1.04090348e-01\\n-4.03904200e-01 -3.34496081e-01 1.19874060e-01 1.41578615e-01\\n1.02881631e-02 1.29338220e-01 6.20501265e-02 -7.23011672e-01\\n-2.74403715e+00 6.99990392e-02 1.94179654e-01 -1.98129460e-01\\n3.31099153e-01 -4.24483381e-02 1.18164673e-01 -5.42396791e-02\\n-3.57023358e-01 4.83668596e-02 -4.51247841e-02 -1.66139901e-01\\n6.14394769e-02 1.95229843e-01 1.62246078e-01 3.45406234e-02\\n7.32393041e-02 -3.55535269e-01 -1.07255429e-01 3.29666942e-01\\n-9.88674611e-02 -8.09641182e-01 1.94888711e-01 -1.26043633e-01\\n2.35473365e-01 2.07285136e-01 -4.70242858e-01 -1.72521576e-01\\n-2.42911816e-01 -9.14510190e-02 -7.45956413e-03 -2.74616748e-01\\n-2.48923689e-01 1.75973639e-01 1.88311443e-01 -1.18151568e-02\\n4.88506407e-02 -4.30095166e-01 -1.29800916e-01 -4.22971904e-01\\n1.58135757e-01 -6.11115277e-01 -1.69929117e-02 -2.36758724e-01\\n6.36546731e-01 -2.68018872e-01 1.48008317e-01 1.01492599e-01\\n1.28540158e-01 9.21779126e-03 2.32910261e-01 6.36900738e-02\\n-1.04076728e-01 -2.12966844e-01 -1.22163326e-01 -2.07928255e-01\\n6.46013975e-01 3.48692626e-01 -1.74919873e-01 -3.61822024e-02\\n5.89438230e-02 -3.30791771e-01 -5.45068443e-01 -1.62129432e-01\\n-4.25833389e-02 -2.00564444e-01 -5.97938418e-01 -3.89251560e-01\\n-1.88893706e-01 -1.35106727e-01 -9.77274030e-02 7.81335473e-01\\n-4.24825996e-01 -1.95501357e-01 1.01534091e-01 -5.88133454e-01\\n3.98333102e-01 -3.09325695e-01 -2.91742384e-03 -3.36537600e-01\\n-2.90060163e-01 -5.32378316e-01 3.81393880e-02 -1.97494775e-01\\n-2.43927091e-01 -3.12586069e-01 -4.25507054e-02 -1.66882694e-01\\n-2.09519833e-01 -5.96426427e-01 4.14967030e-01 1.88189447e-01\\n3.73050392e-01 3.79138961e-02 4.67485160e-01 -9.76439714e-02\\n3.70446831e-01 9.83746499e-02 5.27738705e-02 -2.91795731e-01\\n-2.70669051e-02 6.19108602e-02 5.67464948e-01 -2.84999609e-01\\n-2.73748711e-02 1.20541707e-01 -2.42657110e-01 -2.53723022e-02\\n3.65089566e-01 -9.52648744e-03 1.20986626e-02 -2.36147970e-01\\n3.56049895e-01 -3.93347144e-01 -1.16834849e-01 4.02766541e-02\\n2.51747429e-01 9.25063491e-01 9.96294804e-03 -4.16298777e-01\\n-1.56970009e-01 5.31791568e-01 -1.01576313e-01 1.26609653e-01\\n-3.70809510e-02 9.55945551e-02 -3.07060957e-01 3.53125095e-01\\n8.83109644e-02 -3.23164701e-01 -2.26022094e-01 -5.50459325e-02\\n-1.97638005e-01 4.83863473e-01 2.12989390e-01 9.36524719e-02\\n-1.10740632e-01 -5.04475057e-01 -1.82314321e-01 3.66933763e-01\\n8.52924287e-02 4.03339148e-01 1.84236139e-01 -3.86461377e-01\\n7.86487833e-02 4.84791756e-01 -1.51966259e-01 3.30968797e-01\\n-1.66502088e-01 2.40495518e-01 -6.06689155e-01 -2.96466827e-01\\n-4.36145306e-01 -4.51705694e-01 2.15952858e-01 4.97588903e-01\\n1.42149478e-01 -9.33180451e-02 1.77505195e-01 -5.06020844e-01\\n3.29226971e-01 2.58765280e-01 7.57804289e-02 1.12430677e-01\\n-1.21103190e-01 6.17438197e-01 9.38253626e-02 -2.43761778e-01\\n-9.16939527e-02 -6.53584450e-02 -1.37578160e-01 -2.48489872e-01\\n3.09196830e-01 -4.70775664e-01 -1.52180880e-01 4.04896677e-01\\n1.15728825e-01 -1.67713001e-01 -3.18809211e-01 2.71318376e-01\\n-2.88665518e-02 -2.42043167e-01 -2.73779690e-01 -1.70384288e-01\\n2.77543008e-01 5.45997173e-05 3.24233413e-01 -5.54642081e-01\\n6.35441467e-02 -9.80389863e-02 1.53191388e-04 4.51469928e-01\\n-8.40948597e-02 -1.37639761e-01 -3.24330807e-01 -6.85842037e-02\\n5.50812721e-01 6.90345094e-02 -6.45619705e-02 1.26046687e-03\\n1.80941164e-01 -3.08956325e-01 -4.01521444e-01 1.47785321e-01\\n-9.48236883e-02 -2.42157891e-01 -2.57043242e-02 1.05868958e-01\\n1.17377549e-01 -1.51959341e-02 -5.77378631e-01 -1.53081864e-01\\n-1.56328872e-01 8.44021440e-02 6.40902147e-02 -4.91706759e-01\\n-5.91321550e-02 -6.39774650e-02 -6.19694352e-01 1.97925523e-01\\n-3.12732130e-01 -1.29718900e-01 2.18066067e-01 1.50096774e-01\\n-3.35887134e-01 -1.72422752e-01 -8.34710598e-02 3.11568677e-01\\n-2.11163819e-01 -2.63360202e-01 -1.00984812e-01 -9.09781694e-01\\n1.37166232e-01 -4.83959131e-02 -1.25977427e-01 2.41968870e-01\\n-1.19125366e-01 -1.07242119e+00 1.32499874e-01 -2.89771110e-01\\n-8.48900825e-02 -3.69656533e-02 -2.74208903e-01 -1.43308371e-01\\n2.44020492e-01 5.00505194e-02 -3.29325736e-01 4.32396591e-01\\n-2.57793128e-01 2.52530009e-01 -1.77076325e-01 7.71406293e-02\\n-7.41853118e-02 -1.58875823e-01 1.25217795e-01 -2.78681636e-01\\n-4.20094609e-01 -2.41497099e-01 -2.50834346e-01 -3.11401874e-01\\n-2.18652636e-01 -2.33420581e-01 -1.72874585e-01 2.00443476e-01\\n3.32501113e-01 -4.99922112e-02 -5.66647351e-02 -2.61541963e-01\\n1.33424774e-01 -4.32124674e-01 1.28403097e-01 -9.85285938e-02\\n1.09072886e-01 -2.07313448e-01 9.47110355e-02 1.89788938e-01\\n4.28275883e-01 -3.34297359e-01 4.58373010e-01 -3.77920240e-01\\n-4.51831698e-01 -2.54580617e-01 -1.84555911e-02 -1.59376979e-01\\n4.02824402e-01 -3.38583887e-01 2.46431641e-02 2.70457983e-01\\n8.73155892e-03 -4.26252931e-03 3.03365290e-01 -2.03865439e-01\\n4.72228788e-02 7.12948143e-02 -3.87658656e-01 8.59391168e-02\\n7.80834079e-01 2.42679700e-01 1.49043277e-01 1.57790676e-01\\n-6.39243424e-02 1.94103137e-01 5.94968319e-01 -1.97389215e-01\\n-9.55838040e-02 1.49378330e-01 1.23923987e-01 -5.29262066e-01\\n-1.99680671e-01 -6.92083910e-02 -2.76806206e-01 -4.14020479e-01\\n6.44936740e-01 3.09056759e-01 -3.89846623e-01 -1.35602862e-01\\n1.26670077e-02 -1.49116606e-01 3.08682203e-01 7.45331571e-02\\n-7.23476335e-03 1.80483833e-02 4.33214247e-01 -3.59783918e-02\\n3.49011838e-01 5.79561591e-01 -1.33380815e-01 -3.34973693e-01\\n-8.86593312e-02 2.34578103e-01 6.14541732e-02 2.85951436e-01\\n-2.73300529e-01 2.79059827e-01 -5.12432978e-02 1.88746415e-02\\n-2.73229569e-01 1.77643299e-01 3.92559469e-02 1.07234448e-01\\n1.42944053e-01 1.34662390e-01 4.75228608e-01 5.64220428e-01\\n1.41923174e-01 4.09929156e-01 3.42808336e-01 8.16699788e-02\\n4.85394716e-01 5.94147682e-01 4.33412969e-01 1.18196920e-01\\n1.58504888e-01 3.42586815e-01 2.13065773e-01 -1.05134800e-01\\n5.24901628e-01 4.71619695e-01 1.02652028e-01 9.16308761e-01\\n1.34127229e-01 4.65298146e-01 8.06036353e-01 -7.13045597e-01\\n-3.63786340e-01 1.07391700e-01 5.67864895e-01 -5.50294757e-01\\n6.91470504e-02 6.77960142e-02 7.79256225e-04 4.53837335e-01\\n-6.10303640e-01 -3.06261599e-01 -5.06565571e-02 1.99330881e-01\\n-9.76914465e-02 -1.67890057e-01 -1.95862100e-01 8.86225179e-02\\n-1.44565254e-01 -1.80502370e-01 -3.15023482e-01 -9.91068929e-02\\n-2.15810150e-01 9.61633474e-02 -1.38593853e-01 -1.41481280e-01\\n1.01224624e-01 -3.06619763e-01 -1.77458916e-02 -1.04608089e-01\\n3.87455285e-01 -1.71470925e-01 -1.54313698e-01 -1.11381777e-01\\n3.59237820e-01 1.26212806e-01 5.35712242e-01 3.34419757e-02\\n2.26921797e-01 -2.03877375e-01 -2.37678200e-01 1.71350718e-01\\n1.29083954e-02 1.21650308e-01 6.95552081e-02 3.14468980e-01\\n-2.64892995e-01 -1.31549671e-01 3.21061909e-02 2.84654200e-01\\n-3.72310460e-01 -1.13970362e-01 -2.16578126e-01 2.02571396e-02\\n-1.10586621e-02 1.97952718e-01 -1.07882887e-01 -6.12098351e-02\\n-1.48926139e-01 -4.18089688e-01 2.90469408e-01 -1.08911335e-01\\n-2.76985735e-01 -1.21864483e-01 4.14815813e-01 1.16447099e-01\\n-2.97790080e-01 1.34231612e-01 -2.24058777e-01 2.58389711e-01\\n2.68316083e-03 3.27553451e-01 3.48364562e-03 -2.27977157e-01\\n-2.57403910e-01 2.02079326e-01 -6.06240481e-02 3.02909240e-02\\n2.14175239e-01 5.97551703e-01 -9.08737108e-02 -1.38386235e-01\\n6.94867492e-01 -1.68568194e-02 -2.82355875e-01 -3.09340656e-01\\n-1.02787226e-01 -1.61273569e-01 -1.48593396e-01 -1.59613132e-01\\n1.58633083e-01 -3.81464362e-01 -1.02209583e-01 -2.70916820e-01\\n1.15288861e-01 -2.44386196e-01 -1.37193218e-01 -3.85446660e-02]]',\n", + " \"To complement its growing team, Verity Studios is looking for an experienced and versatile back end software engineer capable of designing and developing high quality software for Verity's indoor drone systems. Designing software back ends for drone systems requires addressing new and challenging problems such as: (a) defining robust and reliable communication protocols to interact with embedded devices (both on wired and wireless connections), (b) implementing components to retrieve, store, and process significant amount of data in an efficient and responsive fashion, and (c) designing algorithms to easily and safely coordinate the operation of hundreds of drones and other system components. Our software team works on a multitude of challenging and interesting tasks, such as implementing drivers for proprietary embedded platform, defining robust and efficient communication protocols, designing algorithms to retrieve, process, and analyze significant amount of data, and implementing graphical user interfaces for control stations. Verity is the global leader in autonomous indoor drone systems and a leading provider of drone failsafe technology. Founded in 2014, Verity's drones have completed more than 150,000 autonomous flights safely above people, in more than 100 facilities in 20 countries worldwide. Its systems also enable the deployment of dynamic sensors and other payloads anywhere in commercial and industrial facilities. Verity's drones have been used by some of the world's biggest names in entertainment, including Cirque du Soleil and Madison Square Garden, and in global tours of major artists including Drake and Metallica. We are entrepreneurs, engineers, artists, professionals, mathematicians, and designers; all working as one. Do you want to join a fast-moving start-up where your contributions will make a difference? Then join us! Responsibilities. Design and develop robust and efficient solutions for advanced robotic systems Participate in all the stages of the development process, including requirements gathering, design, implementation, testing, review, documentation, and deployment Interact with other engineering teams to define and review design documents Cooperate with control engineers to design protocols to interact with robotic systems in order to send commands and collect feedback data Cooperate with embedded engineers to understand the constraints of embedded platforms and design smart and reliable embedded applications Interact with front end engineers to define the interfaces between back ends and front ends Design general purpose libraries that can be used across Verity's code base Qualifications. University degree in a relevant field Proven track record in designing and developing industrial-grade software Solid knowledge of software engineering principles In-depth understanding of algorithms and data structures Experience with database design and handling large amount of data is a plus Experience with distributed systems is a plus Good written and spoken English language skills Excellent knowledge of C++ and STL Familiar with GDB and other debugging and program analysis tools Knowledge of libraries such as Boost and Qt and is a plus Experience in Python, C and modern C++ is a plus Experience with PCB schematics and digital communication interfaces (e.g. SPI, CAN, I2C) is a plus Team player and self-driven Creative approach to problem solving Benefits. Work in an interdisciplinary, highly-skilled team Create ground-breaking systems, used by some of the world's most prominent stage productions Shape the culture and have a significant impact in a rapidly growing young company\",\n", + " '[\"Professionalism\", \"Coordinating\", \"Cooperation\", \"Problem Solving\", \"Operations\", \"Reliability\", \"Creativity\"]',\n", + " '[\"Distributed File Systems\", \"Tooling\", \"Control Engineering\", \"System Requirements\", \"Software Design Documents\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Collections\", \"Digital Communications\", \"Repository Protocol Design\", \"Staging\", \"Industrialization\", \"C++ (Programming Language)\", \"Software Quality Management\", \"Python (Programming Language)\", \"Track (Rail Transport)\", \"E (Programming Language)\", \"Library\", \"Embedding\", \"Program Analysis\", \"Process Driven Development\", \"Database Design\", \"Software Engineering\", \"C (Programming Language)\", \"Front End Design\", \"Robotics\", \"Qt (Software)\", \"Standard Template Library (STL)\", \"Sage SAFE X3\", \"Payloads\", \"Autodesk Design Review\", \"Graphical User Interface\", \"Data Structures\", \"Systems Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Algorithms\", \"Communications Protocols\", \"Gardening\", \"Algorithm Design\", \"Public Address Systems\", \"Commercialization\", \"B (Programming Language)\", \"User Interface\", \"Debugging\", \"Documentation Based Coding\", \"Controllability\"]',\n", + " \"['English', 'Chamorro', 'Amharic', 'Moldavian']\"],\n", + " ['75',\n", + " 'data ingenieur (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.73539215e-01 2.95446873e-01 3.41366827e-01 3.93180214e-02\\n4.40420538e-01 -1.47717759e-01 -5.48443720e-02 2.30844498e-01\\n-8.91414285e-02 -4.39024776e-01 1.05183357e-02 -9.85265374e-02\\n-2.43622586e-01 -5.89660660e-04 -1.47397863e-02 4.74850059e-01\\n2.80426443e-01 6.34839982e-02 -1.43790379e-01 3.84318888e-01\\n1.05363093e-01 -3.25387642e-02 -2.00483307e-01 8.03782105e-01\\n3.08296889e-01 -3.17984521e-02 2.24749073e-02 9.14418623e-02\\n-6.67959005e-02 -1.43164203e-01 3.64695042e-01 1.60059065e-01\\n-1.00824147e-01 -3.22888434e-01 1.22831404e-01 2.00250655e-01\\n-1.94558889e-01 6.35166764e-02 -1.37775987e-01 7.37599581e-02\\n-3.76453847e-01 -1.73091054e-01 -8.04219916e-02 3.95079516e-02\\n-1.57729849e-01 -2.51143217e-01 1.44618124e-01 -2.24684939e-01\\n2.97256261e-01 4.46853787e-03 -6.94204330e-01 3.18485349e-01\\n-2.28280187e-01 -1.62220791e-01 2.34000966e-01 4.64561015e-01\\n5.01000471e-02 -4.63844717e-01 -4.39903587e-01 -3.53651315e-01\\n-1.08716330e-02 -5.98834120e-02 -2.82261074e-02 -3.53043616e-01\\n3.16754729e-01 3.56427347e-03 8.99656042e-02 2.43225127e-01\\n-8.23725402e-01 -1.05068073e-01 -4.20428991e-01 -2.26258989e-02\\n-4.38156933e-01 -5.65539226e-02 -3.59581858e-01 2.61795521e-02\\n-7.72417337e-02 2.87032902e-01 4.55488116e-02 6.78809881e-02\\n-2.35347003e-01 2.70585775e-01 -2.93253362e-01 3.29408884e-01\\n2.76014954e-01 1.38341695e-01 2.38590196e-01 3.69926006e-01\\n-5.02795100e-01 4.07005459e-01 4.97104935e-02 -2.92263478e-01\\n2.34251171e-01 2.25896820e-01 4.27680135e-01 2.05386490e-01\\n1.81894228e-01 1.50503382e-01 -2.51848787e-01 3.50331217e-01\\n2.39382461e-01 -4.51936007e-01 4.24619950e-02 -2.21537635e-01\\n1.52646035e-01 -8.92313197e-02 5.49507774e-02 1.02773488e-01\\n-3.34391266e-01 4.40531641e-01 1.65045276e-01 -1.65558740e-01\\n-1.39052868e-01 -5.76995373e-01 -9.55668762e-02 -2.39929892e-02\\n-2.56161001e-02 2.14993089e-01 1.74376845e-01 2.35086322e-01\\n1.71372846e-01 6.88543022e-02 5.23202829e-02 8.91119480e-01\\n-1.43159017e-01 -1.57657713e-02 -1.82234228e-01 2.13842094e-01\\n1.70693681e-01 -3.74809951e-01 3.11169416e-01 3.57347637e-01\\n1.67213112e-01 -1.85709864e-01 -2.94184357e-01 2.98517853e-01\\n2.02898104e-02 -9.60549787e-02 -3.80438834e-01 2.33673573e-01\\n4.12185639e-02 -5.39134681e-01 7.73584545e-01 1.40000045e-01\\n3.27907830e-01 8.81463066e-02 2.57994700e-02 -8.59297886e-02\\n3.52902198e-03 1.23795435e-01 -5.53409755e-02 3.36271733e-01\\n-2.23474592e-01 -1.77447617e-01 -9.64029431e-02 1.90260187e-01\\n-4.62801039e-01 2.66632259e-01 -1.32285237e-01 -1.45230874e-01\\n1.87922180e-01 -2.94205658e-02 -3.24101150e-01 1.10768579e-01\\n-1.26643166e-01 -1.52376890e-01 8.02242681e-02 5.69777429e-01\\n-7.82675371e-02 2.43639350e-01 -1.51042221e-02 -8.74454230e-02\\n7.25178540e-01 1.66858494e-01 -1.07229850e-03 -6.43134788e-02\\n3.50875914e-01 3.57049294e-02 2.90560871e-01 9.05217603e-02\\n-6.39829993e-01 3.67502570e-01 1.42371282e-02 -1.98851094e-01\\n8.54345784e-02 2.50803903e-02 3.50216717e-01 -4.67205524e-01\\n-1.24535322e-01 -1.13375433e-01 -2.95392036e-01 -1.33079529e-01\\n-3.10479373e-01 -1.50215775e-01 4.03197229e-01 -2.97243237e-01\\n-1.56392843e-01 1.65585518e-01 -6.80798471e-01 -1.17076978e-01\\n1.95750073e-01 1.22090451e-01 8.98842216e-02 6.79821372e-02\\n-5.84428012e-02 -6.84136391e-01 -1.17838711e-01 -5.61434746e-01\\n-4.79235709e-01 -1.62391197e-02 -4.43102211e-01 3.12348336e-01\\n9.61948857e-02 2.23491900e-02 -2.70209312e-01 1.73036739e-01\\n-3.16214174e-01 2.91104000e-02 2.20800668e-01 1.30040003e-02\\n3.07837993e-01 5.19551933e-02 -3.73211861e-01 3.93969983e-01\\n-1.10023595e-01 6.05572820e-01 2.04976350e-01 -6.67174816e-01\\n5.68976700e-01 4.10228640e-01 -1.32097639e-02 -3.06244224e-01\\n4.71904486e-01 -3.28421414e-01 -1.11632749e-01 5.80066219e-02\\n-3.02488774e-01 -4.29130524e-01 1.21426813e-01 -1.13919549e-01\\n-3.05754006e-01 5.60343683e-01 1.06565334e-01 2.19404157e-02\\n3.08832675e-01 -3.60765815e-01 -1.36797220e-01 2.37932205e-01\\n-1.19924918e-01 -2.33903900e-01 -4.15719062e-01 -3.11465207e-02\\n-7.49295428e-02 -4.38354939e-01 -1.42351896e-01 -3.94857258e-01\\n-1.94070101e-01 -3.19405705e-01 -4.09768730e-01 4.61869001e-01\\n1.85869917e-01 9.61013809e-02 -9.09118578e-02 -1.33323530e-02\\n-1.00047491e-01 -8.27483296e-01 4.93074320e-02 4.75524329e-02\\n4.48125720e-01 1.53993413e-01 7.36384690e-02 -1.83055058e-01\\n7.37257004e-02 6.65648341e-01 -4.05947179e-01 -3.05492789e-01\\n3.27343158e-02 1.57261103e-01 -2.55504027e-02 -4.86530960e-02\\n1.07461832e-01 4.97097760e-01 -3.26111466e-01 8.08469281e-02\\n-1.97301358e-01 -1.11661203e-01 3.29602003e-01 -1.07117631e-01\\n-3.10849756e-01 -2.20599413e-01 -6.18796982e-02 3.00643623e-01\\n-5.62083840e-01 -3.92843187e-01 4.34898883e-01 2.90442258e-01\\n2.31254756e-01 1.32649526e-01 1.95963055e-01 -5.02265617e-02\\n-2.53306299e-01 -4.08284217e-01 2.67852932e-01 1.85309544e-01\\n8.72170553e-02 1.72761410e-01 -4.57098894e-02 -6.49209142e-01\\n-3.35005069e+00 -1.19049266e-01 1.95204079e-01 -1.42373562e-01\\n2.34189317e-01 2.28987448e-02 4.00891975e-02 -8.33868012e-02\\n-3.62264037e-01 8.28131512e-02 -1.28010809e-01 -2.70860106e-01\\n-1.12116292e-01 3.58870476e-01 1.30933970e-01 2.05565602e-01\\n2.01939940e-01 -3.27510476e-01 -5.64833544e-02 3.45400125e-01\\n-1.45829007e-01 -6.70550108e-01 5.40195368e-02 -1.53561831e-02\\n2.53562301e-01 3.77783775e-01 -3.13458294e-01 -1.30594134e-01\\n-3.04139614e-01 -1.88112676e-01 -4.13720001e-04 -3.99223834e-01\\n-1.23340622e-01 2.06579968e-01 2.54610330e-01 5.58344275e-02\\n-2.98778922e-03 -3.05615544e-01 -9.70033854e-02 -5.04232526e-01\\n3.41190351e-03 -4.49428767e-01 1.86609123e-02 -1.19894370e-01\\n6.79200590e-01 -1.91292331e-01 1.84738591e-01 1.52017057e-01\\n1.70434773e-01 1.63962543e-01 3.62524390e-02 1.06787182e-01\\n-9.38766524e-02 -2.97862411e-01 -1.19559780e-01 -2.31664062e-01\\n7.04229474e-01 5.14253438e-01 -6.92761242e-02 -2.63523054e-03\\n1.08825430e-01 -3.91366541e-01 -4.67752814e-01 -3.18818301e-01\\n-9.39716697e-02 -2.29888588e-01 -6.51591003e-01 -4.13950711e-01\\n-1.85595721e-01 -4.32047024e-02 -2.12076157e-01 5.42313576e-01\\n-3.38225871e-01 -3.48974556e-01 2.69715283e-02 -5.62692642e-01\\n1.61460757e-01 -2.43679285e-01 1.53686360e-01 -3.89631204e-02\\n-2.38289446e-01 -6.71593368e-01 -1.06749736e-01 -1.78200170e-01\\n-1.30260393e-01 -3.03197592e-01 -1.18988305e-01 -5.86845353e-02\\n-2.56225020e-01 -6.05665445e-01 3.79024357e-01 1.43792480e-01\\n2.94720531e-01 1.84704378e-01 4.59055811e-01 -8.26915428e-02\\n4.23558921e-01 4.58418652e-02 -7.91794136e-02 -3.60442162e-01\\n-5.48459366e-02 -7.40971416e-02 4.52599943e-01 -1.13543294e-01\\n1.53942466e-01 1.17062114e-01 -2.18255490e-01 -3.83212119e-02\\n3.62344861e-01 4.19153161e-02 -4.17718217e-02 -1.44397959e-01\\n4.22746927e-01 -2.72830397e-01 -2.31825694e-01 1.60845831e-01\\n1.15813628e-01 6.28076434e-01 1.86652504e-02 -4.49732155e-01\\n-2.33861983e-01 5.65137684e-01 -1.11333020e-01 6.58415928e-02\\n-9.03046578e-02 1.49235427e-01 -1.35980144e-01 1.95091501e-01\\n-9.82831270e-02 -2.44395882e-01 -1.49072662e-01 -1.22328259e-01\\n-1.10931545e-01 3.91953558e-01 2.35398397e-01 6.10994501e-03\\n-1.11531682e-01 -2.95550257e-01 -1.54909506e-01 1.46287695e-01\\n2.94560939e-01 4.09787089e-01 1.78593561e-01 -3.12423974e-01\\n-7.02138990e-02 3.77872974e-01 -1.01519451e-02 9.31342468e-02\\n-2.08368748e-01 4.09455299e-02 -3.92957956e-01 -2.46942624e-01\\n-3.59082162e-01 -4.25442368e-01 2.39385858e-01 3.73319775e-01\\n8.39539096e-02 -3.97312529e-02 2.85563558e-01 -5.47754049e-01\\n4.19133395e-01 2.72235364e-01 1.17853925e-01 1.09099276e-01\\n-1.24561578e-01 5.02645969e-01 -7.49223679e-02 -1.08004563e-01\\n-2.52406061e-01 1.05447508e-02 -1.95723534e-01 -2.71729171e-01\\n1.70587212e-01 -6.02116942e-01 -1.91897884e-01 4.44209516e-01\\n2.45881185e-01 -2.02954754e-01 -3.22783262e-01 2.50395596e-01\\n-5.23507297e-02 -3.28757972e-01 -2.32960701e-01 -1.76553190e-01\\n1.73108369e-01 1.33014014e-02 2.78843582e-01 -2.93195784e-01\\n-5.48861660e-02 -4.37954850e-02 -3.27146351e-02 5.07661879e-01\\n1.77467212e-01 5.08969948e-02 -2.54120320e-01 -1.10497549e-01\\n5.29563785e-01 -8.29265043e-02 -1.36750340e-02 -1.43619433e-01\\n1.45741969e-01 -2.30486944e-01 -4.08401132e-01 8.31735954e-02\\n-3.91913131e-02 -1.56264216e-01 -9.30302888e-02 1.48367554e-01\\n-1.03273369e-01 7.85977989e-02 -7.10077345e-01 -3.36266488e-01\\n-4.08053666e-01 -1.86203495e-01 2.09359936e-02 -3.18180740e-01\\n1.15589714e-02 -6.17773943e-02 -5.33395767e-01 3.53105187e-01\\n-3.28015059e-01 -7.26068690e-02 1.17504291e-01 1.76224634e-01\\n-4.20059055e-01 -1.74938381e-01 -4.77401055e-02 2.87048846e-01\\n-3.99624974e-01 -2.75250167e-01 4.49762493e-03 -9.77015793e-01\\n1.42093718e-01 6.76126555e-02 -2.14485288e-01 5.88524789e-02\\n-1.42176464e-01 -5.97350597e-01 -3.74841020e-02 -5.06289542e-01\\n-2.76711397e-02 2.12920353e-01 -2.74026603e-01 -8.27496871e-02\\n1.76449582e-01 -1.70337725e-02 -3.88304412e-01 3.80793124e-01\\n-3.33709151e-01 2.41502866e-01 -1.98908761e-01 1.61453217e-01\\n-5.55104762e-02 -1.27174959e-01 7.43299574e-02 -2.05290601e-01\\n-4.01791364e-01 -2.92716295e-01 -2.03706503e-01 -1.25526950e-01\\n7.93420374e-02 -3.92119318e-01 -1.65071607e-01 1.69550125e-02\\n3.70709479e-01 8.66900459e-02 -1.10151120e-01 -2.79189885e-01\\n1.13218136e-01 -5.50931931e-01 -3.59931495e-03 -2.49128968e-01\\n-6.20403215e-02 -9.75676626e-02 2.24061534e-01 8.71564671e-02\\n2.17803076e-01 -3.08463454e-01 4.82191592e-01 -4.08337027e-01\\n-2.46548027e-01 -4.72327955e-02 4.22134995e-02 -1.22209042e-01\\n1.28084630e-01 -4.84935492e-01 -2.40670261e-03 3.19071472e-01\\n4.58413996e-02 -8.80386010e-02 2.65195668e-01 -5.87772876e-02\\n5.09641804e-02 2.46959642e-01 -2.27597073e-01 1.25412136e-01\\n7.23162532e-01 1.03838801e-01 3.38800512e-02 1.74701512e-01\\n1.91928566e-01 3.41389924e-01 5.37623644e-01 5.94294816e-02\\n4.50938381e-02 2.90370047e-01 1.37288779e-01 -3.51034641e-01\\n-2.80057173e-02 1.58480443e-02 -2.50718445e-01 -2.66983002e-01\\n7.02537000e-01 4.61657256e-01 -5.05702734e-01 -2.70402133e-01\\n-3.14138494e-02 -2.01632008e-01 3.57618004e-01 5.21320701e-02\\n1.47703802e-02 -3.18478309e-02 5.02444267e-01 -1.48917615e-01\\n6.63390383e-02 6.09450161e-01 -2.44767696e-01 -3.23840827e-01\\n-5.24812154e-02 2.82150477e-01 5.42860888e-02 5.81487775e-01\\n-2.77523935e-01 3.18400472e-01 -3.25301811e-02 -2.94691208e-03\\n1.19819464e-02 2.43483633e-01 2.22774833e-01 3.47710103e-02\\n2.87638277e-01 -3.39678638e-02 3.22743118e-01 6.37781262e-01\\n8.24697763e-02 3.68883431e-01 2.42546946e-01 1.49033964e-01\\n3.51512939e-01 5.71332753e-01 3.89838547e-01 1.88696101e-01\\n1.60439685e-02 2.80597359e-01 1.32400841e-01 -1.03801303e-01\\n3.83920342e-01 3.97256941e-01 9.42822918e-02 8.88749540e-01\\n3.38519901e-01 4.03219104e-01 5.19377470e-01 -7.30246723e-01\\n-3.18686038e-01 2.07738429e-01 5.71277797e-01 -2.21303478e-01\\n-2.68598981e-02 1.79136291e-01 -2.70904154e-01 2.96401203e-01\\n-4.99009192e-01 -1.91606760e-01 4.54262830e-03 9.40883979e-02\\n-6.65409490e-02 -1.88375816e-01 -2.88819104e-01 -7.96906054e-02\\n-1.59726128e-01 -3.83828394e-02 -3.83251727e-01 -1.96621731e-01\\n-2.81151384e-01 -9.25636012e-03 -1.77532867e-01 -1.97292909e-01\\n5.14329709e-02 -3.68404061e-01 -6.41435608e-02 7.43891373e-02\\n3.96721900e-01 -1.96322531e-01 -1.47753030e-01 -1.43119931e-01\\n1.71592310e-01 3.70279372e-01 5.63981056e-01 -5.77464662e-02\\n1.34021595e-01 -9.81474966e-02 -2.07689196e-01 1.38016596e-01\\n-9.37613845e-03 4.72647473e-02 1.47420689e-01 1.93972245e-01\\n-2.21584007e-01 -1.64701194e-01 2.09619597e-01 3.02007616e-01\\n-4.17190611e-01 -1.25701442e-01 -2.01619834e-01 2.83955842e-01\\n-3.84229496e-02 1.66154966e-01 -1.89610735e-01 1.00306846e-01\\n-1.40607163e-01 -4.21521395e-01 4.70354974e-01 -1.07023336e-01\\n-4.63431776e-02 2.26062387e-01 4.34537768e-01 1.93338960e-01\\n-3.22088212e-01 -3.84056941e-02 -4.56718132e-02 2.38319427e-01\\n-8.59484002e-02 3.83177549e-01 -2.02118486e-01 -3.81131172e-01\\n-2.67352015e-01 1.53150648e-01 -2.25777149e-01 1.22528940e-01\\n-9.30396840e-03 3.44943106e-01 1.03135789e-02 5.86238913e-02\\n4.39161271e-01 6.83616400e-02 -2.40586132e-01 -1.51674092e-01\\n-2.48169482e-01 -7.94871524e-02 9.09963921e-02 -7.05700042e-03\\n8.89195278e-02 -3.81218761e-01 -2.01335952e-01 -6.06442541e-02\\n1.93256270e-02 -2.59877086e-01 -2.84286719e-02 1.12730607e-01]]',\n", + " 'Job Informationen Responsibilities: You build prototypes, you set up automatic benchmarking procedures and you assess the scalability and robustness of different machine learning methods. You optimise the use of available CPU and GPU resources for training machine learning models on large datasets on platforms such as AWS and Azure. You work with our engineers to ensure that new models can be seamlessly integrated into our applications and reliably deployed on production systems. You actively share your know-how with our other data scientists (which already includes specialists in areas such as natural language processing, recurrent neural networks and mathematics) and in turn you learn from their ideas and expertise. Requirements: You can produce scalable, reliable and easy-to-understand code in Scala, Java and/or Python. You have deployed machine learning models in production, having tested their robustness and scalability in different environments. You are familiar with a wide range of machine learning approaches, in particular deep learning models. You are passionate about the newest neural network architectures, but you also remain pragmatic and recognise that a simpler traditional machine learning model might work just as well for many use cases. You enjoy solving mathematical problems. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills Scala JAVA Python Python',\n", + " '[\"Proactivity\", \"Communications\", \"Reliability\", \"Integration\"]',\n", + " '[\"Python Server Pages\", \"Graphics Processing Unit (GPU)\", \"Agility\", \"Natural Language Processing\", \"Scala (Programming Language)\", \"Activism\", \"Python (Programming Language)\", \"Prototyping\", \"Dataset\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Benchmarking\", \"Scalability\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Resourcing\", \"Java (Programming Language)\", \"Network Architecture\"]',\n", + " \"['English', 'Gaelic']\"],\n", + " ['13',\n", + " 'c++ software engineer',\n", + " 'Valais',\n", + " 'Architectural & Engineering Services',\n", + " 'www.albelissa.com',\n", + " '[[-1.93023220e-01 2.84971774e-01 5.76747715e-01 8.09191689e-02\\n3.79462004e-01 -1.60719037e-01 -1.95983723e-02 1.81595489e-01\\n-5.43494560e-02 -2.47605875e-01 -1.26799166e-01 -2.36014664e-01\\n-1.87159881e-01 1.18354205e-02 1.56876445e-01 4.07753825e-01\\n3.69153708e-01 4.60872538e-02 -1.42274782e-01 3.09822500e-01\\n1.29416794e-01 -2.26810370e-02 1.69744864e-01 5.97809672e-01\\n2.97849417e-01 -1.80582833e-02 -4.90233414e-02 3.23238313e-01\\n-2.40271091e-01 -2.75693744e-01 3.91724914e-01 -3.35422345e-02\\n-2.27663711e-01 -3.17115307e-01 1.81185693e-01 1.33092746e-01\\n-2.71566808e-01 6.53250888e-02 -7.05304891e-02 1.93278491e-01\\n-3.56408805e-01 -3.36260289e-01 6.35209084e-02 8.21651742e-02\\n-3.27285498e-01 -2.78838396e-01 1.88201442e-02 3.02441306e-02\\n1.01771019e-01 3.14762294e-02 -3.92157257e-01 2.94625401e-01\\n-1.20578289e-01 -1.44571900e-01 3.47032636e-01 6.02841318e-01\\n-8.03779215e-02 -5.35582244e-01 -2.47117892e-01 -3.32369059e-01\\n-1.82846859e-02 -1.27541929e-01 9.16568190e-02 -1.90231383e-01\\n4.96628195e-01 -4.21262309e-02 -6.79767877e-02 3.87758881e-01\\n-6.40235245e-01 2.03417847e-03 -3.07453334e-01 -3.56304087e-02\\n-2.71039307e-01 5.07144397e-03 -2.06913248e-01 -2.31157541e-01\\n-4.04809378e-02 2.85882771e-01 1.29741356e-01 5.24331965e-02\\n-1.08462982e-01 2.33123407e-01 -9.08612013e-02 1.85076386e-01\\n3.72805327e-01 3.00237656e-01 2.10820600e-01 2.00532600e-01\\n-4.36785936e-01 4.06616688e-01 1.59396961e-01 -3.73646885e-01\\n1.45827159e-01 2.00291306e-01 4.31923985e-01 -2.82509867e-02\\n-9.82719138e-02 3.07383742e-02 -2.64602184e-01 1.95478678e-01\\n2.06393048e-01 -3.46922219e-01 8.94336328e-02 4.82789241e-02\\n-1.64601028e-01 -1.07527025e-01 -8.49649590e-03 2.71790743e-01\\n-2.49963090e-01 5.16679466e-01 6.80635348e-02 -1.88341990e-01\\n-8.44592229e-02 -5.78167856e-01 -2.08876789e-01 7.41825700e-02\\n-1.51014701e-01 1.50385112e-01 3.14733952e-01 3.26260388e-01\\n2.00032711e-01 1.51999995e-01 2.45978162e-01 8.72025967e-01\\n-1.79239750e-01 1.23001553e-01 -7.15389252e-02 3.89586270e-01\\n2.33427554e-01 -2.90309370e-01 2.57669955e-01 3.22876245e-01\\n1.44438803e-01 -1.55339599e-01 -1.75612897e-01 9.73040089e-02\\n-1.87438726e-01 -2.91707158e-01 -3.68469000e-01 1.42460003e-01\\n-1.68224335e-01 -6.61118329e-01 6.50804460e-01 2.49196626e-02\\n2.92072982e-01 6.66861311e-02 -3.84853557e-02 -5.23812696e-02\\n-1.09184988e-01 3.19606721e-01 -3.18275928e-03 2.14698762e-01\\n-3.27821374e-01 -2.77011812e-01 -2.85831511e-01 2.95772552e-01\\n-8.16220939e-02 1.81969047e-01 -2.33848482e-01 -1.64082125e-01\\n2.77564734e-01 -7.94791877e-02 -3.21719646e-01 2.68638283e-01\\n-1.40423492e-01 -2.08896756e-01 8.28243233e-03 4.97536302e-01\\n-1.66883662e-01 2.11816326e-01 3.01943142e-02 -1.75269142e-01\\n3.62579346e-01 2.80470755e-02 8.56711492e-02 -1.13940515e-01\\n2.93263197e-01 -1.44733131e-01 2.05978885e-01 6.41251504e-02\\n-6.76442742e-01 4.34491962e-01 -6.28121719e-02 3.07337120e-02\\n-1.62847891e-01 -6.64470494e-02 4.32688743e-01 -4.26729113e-01\\n-8.22884217e-03 -1.97257832e-01 -3.51870894e-01 -2.82241851e-01\\n-3.46485734e-01 1.93993561e-02 5.30176520e-01 -4.15287465e-01\\n-3.28391120e-02 1.57842889e-01 -4.71407413e-01 -7.51680229e-03\\n1.43371403e-01 1.17811762e-01 1.84757173e-01 -3.42583517e-03\\n-2.64382631e-01 -5.62316358e-01 4.85258214e-02 -3.50103498e-01\\n-4.39741403e-01 1.43307466e-02 -1.41345173e-01 1.87769085e-01\\n4.71102595e-02 4.25483361e-02 -1.20546483e-01 9.45197046e-03\\n-3.22040796e-01 2.47450527e-02 2.91196406e-01 2.01789394e-01\\n1.92784369e-01 -7.61114731e-02 -3.08057785e-01 4.80427712e-01\\n-2.62463987e-01 6.31210625e-01 2.85822660e-01 -8.07167649e-01\\n4.31979686e-01 2.35709533e-01 7.08875358e-02 -3.98039699e-01\\n5.12551546e-01 -4.14534599e-01 -1.75894320e-01 2.15526253e-01\\n-2.88839549e-01 -1.37294233e-01 3.31055880e-01 -2.24120185e-01\\n-2.21103713e-01 6.42048657e-01 9.74993408e-02 3.48896720e-02\\n3.80524337e-01 -4.25285190e-01 -1.47565097e-01 3.17999045e-03\\n-9.69451144e-02 -2.16694087e-01 -3.51917416e-01 -1.41600622e-02\\n4.62215394e-02 -5.03255010e-01 -2.26462200e-01 -4.05337572e-01\\n-2.13770062e-01 -3.81369621e-01 -9.36022401e-02 2.23631740e-01\\n9.27278250e-02 1.51227310e-01 1.34733409e-01 -1.17643990e-01\\n-2.49269962e-01 -5.39430320e-01 -1.50111541e-01 1.80291273e-02\\n4.39711958e-01 3.57158393e-01 5.25986543e-03 -1.54796792e-02\\n9.96850505e-02 5.39542794e-01 -2.33960435e-01 -5.09997785e-01\\n1.95541620e-01 1.48514599e-01 -7.17050284e-02 -1.80345237e-01\\n2.21236143e-02 3.70704591e-01 -1.83929473e-01 -2.93744318e-02\\n-2.46051043e-01 1.49638832e-01 2.79841483e-01 -6.72466680e-02\\n-2.27851123e-01 -2.73935616e-01 -4.27316390e-02 8.00766721e-02\\n-5.02077401e-01 -2.32208908e-01 6.17888272e-01 2.07111806e-01\\n2.38259956e-01 2.26038918e-02 2.41767481e-01 -7.24759325e-02\\n-1.33666918e-01 -1.89319775e-02 7.63500184e-02 2.99648270e-02\\n-5.45546636e-02 -7.66083673e-02 -2.07644179e-01 -3.96772236e-01\\n-3.52680349e+00 -4.75487970e-02 6.23236038e-02 -1.87649578e-01\\n2.29745731e-01 -5.70304804e-02 1.27997890e-01 1.81619767e-02\\n-2.89883733e-01 8.34556371e-02 -1.24892227e-01 -6.82225823e-02\\n5.02106361e-03 2.09312797e-01 1.88645884e-01 1.91557005e-01\\n9.69992056e-02 -3.53137523e-01 -1.06242701e-01 3.42037588e-01\\n9.88449752e-02 -7.25111187e-01 1.53379947e-01 -1.48783419e-02\\n2.82547802e-01 1.09135099e-02 -3.90976220e-01 -8.66443738e-02\\n-2.80368924e-01 -2.20440567e-01 4.44171391e-02 -2.00245351e-01\\n-1.54095218e-01 1.96305126e-01 1.20309539e-01 -1.46327719e-01\\n1.77151129e-01 -2.31519029e-01 -1.20392524e-01 -3.22773516e-01\\n4.01089452e-02 -5.85949719e-01 1.48317993e-01 -1.21823274e-01\\n6.27528727e-01 -2.74833888e-01 1.57375019e-02 1.98437437e-01\\n1.16189860e-01 1.13506280e-01 -3.58787887e-02 -7.84481466e-02\\n-2.78231025e-01 -1.98788300e-01 -4.72309999e-02 -3.98397774e-01\\n5.00525475e-01 5.32321513e-01 -2.25421876e-01 -5.14891930e-02\\n-2.66299564e-02 -3.10648412e-01 -4.01851118e-01 -4.94376242e-01\\n-1.92128077e-01 1.37983739e-01 -7.86833405e-01 -6.63788140e-01\\n-1.90485895e-01 5.86663336e-02 -1.45413280e-01 3.74451458e-01\\n-2.82953382e-01 -4.91457194e-01 -2.50308984e-03 -4.09625888e-01\\n1.45391986e-01 -1.40860528e-01 1.10345855e-01 -2.18848884e-01\\n-2.58358806e-01 -5.28694034e-01 1.23043016e-01 -1.09075765e-04\\n-1.81524754e-02 -7.69573376e-02 -1.27501741e-01 -3.35102767e-01\\n-2.62436688e-01 -2.25428104e-01 5.30628204e-01 -7.06033316e-03\\n4.49202120e-01 8.04683473e-03 1.28231838e-01 8.88944715e-02\\n4.75103796e-01 -1.68030839e-02 2.38922089e-01 -4.37832505e-01\\n6.48542866e-02 4.33753915e-02 6.10117912e-01 -3.10926557e-01\\n-6.88958168e-02 1.81218326e-01 -3.35536212e-01 -6.17533773e-02\\n4.54336703e-01 4.92603369e-02 -3.32282931e-02 -3.11262250e-01\\n2.82797605e-01 -4.25663769e-01 -4.67174612e-02 1.19527042e-01\\n6.47183359e-02 6.66389048e-01 8.93400833e-02 -3.51489514e-01\\n-2.62787610e-01 3.96891832e-01 -1.35237798e-01 -2.33242027e-02\\n-1.74163505e-01 9.65479389e-02 -1.95121795e-01 2.83886701e-01\\n-1.53991226e-02 -2.44298086e-01 -3.01724523e-01 -3.43440212e-02\\n3.38082872e-02 1.04805753e-01 2.51252323e-01 1.76965550e-01\\n-9.68178660e-02 -1.85262188e-01 -9.91895720e-02 3.56270559e-02\\n2.86910802e-01 1.34213224e-01 2.57296324e-01 -2.90597141e-01\\n3.51994969e-02 3.34553808e-01 -1.03289165e-01 2.50428826e-01\\n-1.13137707e-01 1.65966734e-01 -4.61433560e-01 -2.12833852e-01\\n-8.89929831e-02 -2.98652053e-01 -5.07398210e-02 4.26158518e-01\\n7.68801346e-02 -8.72694254e-02 1.12909548e-01 -4.88994062e-01\\n5.08778036e-01 7.03571737e-02 1.80435330e-01 1.46698818e-01\\n2.85777263e-02 6.80919826e-01 1.46579891e-02 -1.21986784e-01\\n-1.58208877e-01 1.28067359e-01 -1.05399445e-01 -1.45108327e-01\\n4.62610740e-03 -3.98118615e-01 -1.06731830e-02 3.56154650e-01\\n8.90209600e-02 -1.93076968e-01 -1.61920667e-01 3.37398499e-01\\n2.03744367e-01 -3.06835860e-01 -9.18369740e-02 -1.66637208e-02\\n2.84768969e-01 -3.16000730e-02 1.82370663e-01 -4.10906315e-01\\n-8.05889219e-02 -1.05070874e-01 1.88400003e-03 4.26721215e-01\\n1.52733207e-01 -3.98115022e-03 -1.07361659e-01 -2.74852574e-01\\n4.13479298e-01 1.27881482e-01 -8.79582688e-02 -2.38127232e-01\\n-4.01609298e-03 -1.78775564e-01 -3.06777537e-01 -2.88935732e-02\\n1.45492166e-01 -6.66133920e-03 1.12127036e-01 3.33956815e-02\\n1.19929589e-01 4.84050140e-02 -4.63071823e-01 -3.44539076e-01\\n-2.48355538e-01 -1.18324526e-01 -8.31865445e-02 -3.82269174e-01\\n3.10625862e-02 -5.27249947e-02 -5.93813717e-01 1.81866094e-01\\n-3.11311722e-01 2.14212183e-02 9.58050042e-02 -5.22036515e-02\\n-3.32061589e-01 -9.43717584e-02 -3.28533389e-02 1.61685705e-01\\n-4.29066002e-01 -2.49400392e-01 -1.34284675e-01 -8.48411500e-01\\n2.67388433e-01 -2.13558059e-02 -1.15095809e-01 3.62662151e-02\\n-1.00073352e-01 -5.77638626e-01 8.51545110e-02 -2.92366743e-01\\n1.10153602e-02 1.70191738e-03 -1.70019597e-01 -2.54895926e-01\\n1.15180604e-01 2.42098179e-02 -2.00091377e-01 2.70929575e-01\\n-4.13661897e-01 3.25733423e-01 -2.22014878e-02 1.28626004e-01\\n-7.24688321e-02 -2.57328153e-01 1.91305518e-01 -3.29103738e-01\\n-2.68333733e-01 -2.22385898e-01 -2.40738660e-01 -1.87114298e-01\\n-1.85926750e-01 -4.88936342e-02 -1.96887836e-01 1.22379653e-01\\n3.28160733e-01 1.42361894e-01 -9.31878015e-02 -2.40325078e-01\\n7.43252188e-02 -2.19420478e-01 -1.19804423e-02 -3.95451933e-01\\n1.15312941e-01 -7.64120594e-02 1.09175451e-01 -1.23228908e-01\\n6.94909021e-02 -3.07562083e-01 4.26732570e-01 -2.19584346e-01\\n-4.03388828e-01 2.93509066e-02 2.04352155e-01 -6.21642172e-02\\n2.99982011e-01 -4.45957392e-01 -1.05718330e-01 2.31080785e-01\\n5.38153062e-03 7.10275993e-02 2.93371081e-01 -9.55037251e-02\\n-1.69300377e-01 3.14331651e-01 -5.54181039e-01 4.49242219e-02\\n5.73993742e-01 2.46420249e-01 1.59777477e-01 1.32012099e-01\\n1.13615900e-01 4.06407207e-01 4.81314570e-01 -6.78323815e-03\\n-5.26680686e-02 3.13821703e-01 1.24980271e-01 -4.05068159e-01\\n-1.48893774e-01 -1.41417444e-01 -2.56702572e-01 -2.26249665e-01\\n5.15847743e-01 3.12024325e-01 -1.88372970e-01 -2.93507457e-01\\n-3.27169895e-03 -1.89708531e-01 8.03721771e-02 -3.86354066e-02\\n2.31652081e-01 -3.78894545e-02 6.56130791e-01 1.10042781e-01\\n2.02738047e-01 6.41581774e-01 -2.46023104e-01 -4.56133455e-01\\n3.30727696e-02 2.31501684e-01 1.00457981e-01 3.12128186e-01\\n-1.14007063e-01 4.25962001e-01 3.76946516e-02 9.20343176e-02\\n-1.29603103e-01 1.57816723e-01 1.49577051e-01 5.71878487e-03\\n1.74194545e-01 1.72803089e-01 2.44996503e-01 5.20447075e-01\\n1.53932810e-01 4.89728868e-01 1.21829741e-01 5.81851788e-02\\n3.90776604e-01 5.12025714e-01 4.82425094e-01 7.24556148e-02\\n9.98450518e-02 5.31431399e-02 1.20104682e-02 -7.24868244e-03\\n2.86504656e-01 2.44183764e-01 2.50385553e-01 8.27449977e-01\\n2.80537218e-01 2.36078605e-01 8.79954040e-01 -7.18434930e-01\\n-3.30775946e-01 9.56443101e-02 4.61866975e-01 -3.82468164e-01\\n-2.33527899e-01 9.95463654e-02 -3.38779628e-01 2.57915676e-01\\n-2.85843819e-01 -1.57489657e-01 6.35072216e-03 -1.41251069e-02\\n2.47995052e-02 -6.64199423e-03 -1.64762139e-01 7.38743246e-02\\n-2.59277105e-01 -2.15228960e-01 -3.97931933e-01 -1.82363465e-01\\n-4.41712320e-01 -2.38952309e-01 -1.88669357e-02 -1.87597409e-01\\n-1.52685225e-01 -4.08340305e-01 -4.19915318e-02 -1.12481892e-01\\n2.16905132e-01 -1.80489942e-01 -1.69659227e-01 -1.77615494e-01\\n7.73277506e-02 2.99770415e-01 6.58399403e-01 1.17505580e-01\\n2.62801349e-02 -1.45018429e-01 -1.98117211e-01 6.87367544e-02\\n6.86697438e-02 -3.98421362e-02 7.64967129e-02 4.90854084e-01\\n-2.98463106e-01 -7.27979988e-02 3.66051346e-02 2.26996809e-01\\n-3.53975505e-01 -1.05500175e-02 1.05356229e-02 2.80984342e-01\\n-5.82098365e-02 6.68152198e-02 -1.53334782e-01 2.48753652e-02\\n-7.48076960e-02 -5.86891949e-01 4.08051610e-01 1.22734904e-02\\n-4.33160476e-02 4.12606411e-02 2.81995952e-01 1.92616120e-01\\n-1.73784629e-01 -1.99561656e-01 -2.58685965e-02 3.03664476e-01\\n1.10460080e-01 2.98650563e-01 -1.48724526e-01 -1.87458232e-01\\n-2.04714715e-01 2.95864999e-01 -2.02737838e-01 1.35312364e-01\\n-7.71338269e-02 4.57371384e-01 1.45977944e-01 1.79110870e-01\\n1.92659155e-01 -1.17105119e-01 -2.01586396e-01 -2.49867678e-01\\n-2.11017817e-01 -1.15493901e-01 3.53023037e-03 -1.00921161e-01\\n2.66618729e-01 -2.91890979e-01 5.63797504e-02 -1.02415636e-01\\n-1.26619309e-01 -4.01673198e-01 -1.41128674e-01 5.22736348e-02]]',\n", + " 'Our Swiss client, a leading worldwide supplier of high performance optical sensor solutions is in search of a:C++ Software Engineer Responsibilities:- Optimize and port C++ algorithms to mobile platforms - Design, implement and port algorithms to GPU and DSP - Port machine learning algorithms from research to production ready implementation - Profile production code for performance reportingRequired Skills & Knowledge: - Master’s degree in computer science (or equivalent) - Very good C++ and C programming skills - Good code architecture skills - 3+ years’ experience in algorithm development, profiling and optimization - Good understanding of mobile platforms (CPU, GPU, DSP, memory, etc.) - Good knowledge of computer architecture - Open-minded, fast learner and willingness to learn - English fluency',\n", + " '[\"Research\", \"Willingness To Learn\"]',\n", + " '[\"C++ (Programming Language)\", \"High Performance Computing\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Algorithms\", \"Production Code\", \"Machine Learning Algorithms\", \"Optics\", \"Computer Science\", \"Machine Learning\", \"Open Control Architecture\", \"Profiling (Computer Programming)\", \"Software Engineering\", \"Mobility\"]',\n", + " \"['English', 'Oromo', 'Akan']\"],\n", + " ['47',\n", + " 'ibm db2 database administrator',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.experis.com',\n", + " '[[-1.33371219e-01 2.05799371e-01 4.27507818e-01 -8.84635597e-02\\n4.37172949e-01 -3.16156307e-03 -3.06391846e-02 5.13258874e-01\\n-2.95675732e-02 -3.94192606e-01 -2.01171979e-01 -2.67313808e-01\\n1.37568980e-01 1.12885877e-01 1.31004639e-02 3.83273035e-01\\n1.72422290e-01 1.65948167e-01 -1.06670171e-01 2.37314016e-01\\n2.23816603e-01 -1.18073300e-01 2.15529710e-01 6.61718309e-01\\n4.79833275e-01 7.61424601e-02 -1.29026584e-02 -8.44122767e-02\\n-2.25638673e-01 -3.24105531e-01 4.50888962e-01 -1.13730066e-01\\n-8.93626139e-02 -3.56032670e-01 6.08137175e-02 -1.28504187e-02\\n-1.71385452e-01 -1.97236657e-01 -3.40837426e-02 1.25147820e-01\\n-5.09844601e-01 -1.83028415e-01 6.94296136e-02 -5.83921261e-02\\n-2.32285038e-01 -2.86633551e-01 3.42995785e-02 -5.24260998e-02\\n2.25405842e-01 1.19900726e-01 -6.06682599e-01 2.41676927e-01\\n-1.93707049e-01 -1.61098734e-01 2.93181986e-01 6.24811649e-01\\n-1.12407513e-01 -4.61319566e-01 -4.94477212e-01 -1.64419949e-01\\n1.28550693e-01 -1.08417459e-01 -4.77717444e-02 -2.39821345e-01\\n3.84628087e-01 1.56205609e-01 6.04600869e-02 4.29563761e-01\\n-6.78335965e-01 -4.72522303e-02 -2.68250316e-01 -1.91572264e-01\\n-3.38681847e-01 -4.70067095e-03 -2.36700535e-01 -1.21357195e-01\\n-1.55554056e-01 4.59851742e-01 1.41336560e-01 4.45492826e-02\\n-5.19889034e-02 2.56126344e-01 -1.38313919e-01 2.78513879e-01\\n3.35668951e-01 2.09135503e-01 7.53053129e-02 2.11518690e-01\\n-3.43744427e-01 4.56794381e-01 1.91642210e-01 -2.24156693e-01\\n2.23755181e-01 -8.29801783e-02 4.49587494e-01 -9.64650512e-02\\n1.31258085e-01 -3.56153585e-02 -2.42913410e-01 2.50014395e-01\\n2.52737015e-01 -2.11360604e-01 1.19521514e-01 -1.53503299e-01\\n-4.36405204e-02 -4.64391373e-02 1.86601728e-02 2.22570449e-01\\n-2.80826151e-01 5.25702000e-01 1.26672029e-01 -1.21648550e-01\\n-3.02330814e-02 -5.66365063e-01 -1.15302496e-01 -5.63428923e-03\\n1.00152194e-01 9.43064168e-02 4.19501700e-02 1.90304488e-01\\n3.50161225e-01 1.42082470e-02 1.46841824e-01 7.57015526e-01\\n-9.55087095e-02 -1.35471271e-02 -1.69464603e-01 2.95132726e-01\\n5.55998124e-02 -2.50527501e-01 2.37814009e-01 2.82920510e-01\\n-2.25777794e-02 -1.91665947e-01 -1.47990644e-01 2.72137165e-01\\n-9.49046761e-02 -2.32338518e-01 -2.51700163e-01 1.79357499e-01\\n-1.24941748e-02 -1.78573072e-01 5.29013693e-01 -1.18365921e-02\\n1.63641229e-01 -5.13781793e-03 8.63534678e-03 -8.74784067e-02\\n-1.34268114e-02 2.43661821e-01 7.02125803e-02 3.64533290e-02\\n-2.31779277e-01 -2.06587642e-01 -2.19731897e-01 1.42144710e-01\\n-8.95717591e-02 6.35875985e-02 -1.38894528e-01 -1.40497714e-01\\n3.61997813e-01 -6.15258189e-03 -2.08519518e-01 3.36080760e-01\\n-1.31961303e-02 3.03063616e-02 -8.67127031e-02 1.93593919e-01\\n-1.38765439e-01 1.64297193e-01 -2.00799763e-01 -2.49628350e-01\\n5.01382351e-01 -4.94180098e-02 4.91536260e-02 6.84183389e-02\\n2.90598154e-01 3.01255845e-02 1.12851351e-01 8.52651056e-03\\n-7.24557996e-01 3.57022494e-01 -5.31258583e-02 -2.09017217e-01\\n1.95543289e-01 -1.37829840e-01 2.21508384e-01 -2.49300569e-01\\n9.99711901e-02 6.73290342e-02 -4.05430257e-01 -3.93910974e-01\\n-5.58184534e-02 -9.46291611e-02 3.31483811e-01 -3.58847767e-01\\n-2.71675915e-01 1.70472294e-01 -3.50292116e-01 4.55967104e-03\\n2.71476865e-01 2.57223755e-01 1.35824844e-01 1.09580472e-01\\n-1.99854210e-01 -4.11877960e-01 1.12364389e-01 -4.17932838e-01\\n-8.12283307e-02 1.84159219e-01 -2.65517682e-01 1.73987523e-01\\n7.07757547e-02 -3.41742076e-02 -7.96643272e-02 7.40498751e-02\\n3.75508191e-03 -8.43756124e-02 1.37403831e-01 4.33149375e-02\\n3.05522144e-01 1.58095136e-01 -3.47859979e-01 3.70992035e-01\\n-1.53892010e-01 6.38485610e-01 4.33101542e-02 -7.65384555e-01\\n5.28118730e-01 3.83646905e-01 5.92860244e-02 -2.91692227e-01\\n7.21271276e-01 -1.59387097e-01 2.94404998e-02 1.23070106e-01\\n-5.17444432e-01 -3.24670792e-01 2.14289933e-01 -1.96364522e-01\\n-2.63157755e-01 4.44370210e-01 8.39110278e-03 1.33906275e-01\\n8.40515196e-02 -9.98430699e-02 -2.04734266e-01 1.07181117e-01\\n-6.45012548e-03 -2.15333268e-01 -5.29146135e-01 -1.39669195e-01\\n-1.89094990e-01 -4.73088443e-01 -1.19034655e-01 -3.50639373e-01\\n-2.46458426e-01 -2.79653937e-01 -1.13373756e-01 1.63403839e-01\\n2.56636351e-01 7.50516504e-02 5.85452504e-02 1.18373044e-01\\n-2.15260163e-01 -5.54025531e-01 -4.33990210e-02 8.45257565e-02\\n3.54685247e-01 2.11181521e-01 5.60365431e-02 -3.00813969e-02\\n-1.13356233e-01 7.13183641e-01 -1.48901433e-01 -5.89994974e-02\\n1.77890956e-01 2.81891704e-01 1.71173170e-01 -2.10834257e-02\\n1.30546004e-01 1.19427219e-01 -2.02108696e-01 8.49028379e-02\\n-1.23910785e-01 1.01220638e-01 2.85901129e-01 -6.73929825e-02\\n-3.68915528e-01 -3.09713811e-01 -1.94293290e-01 9.19063389e-02\\n-4.10428911e-01 -3.70769948e-02 7.03782916e-01 2.08521470e-01\\n1.08355664e-01 1.99403301e-01 1.91989705e-01 -6.29624948e-02\\n-3.64044197e-02 -1.47809908e-01 2.16696903e-01 8.90232548e-02\\n-6.46961331e-02 6.40876889e-02 -1.67246625e-01 -6.92745507e-01\\n-3.42176318e+00 -1.23497441e-01 9.01969969e-02 -3.22278053e-01\\n2.65568882e-01 -1.95588917e-01 1.78975254e-01 -3.50061916e-02\\n-2.55003572e-01 4.50879335e-02 -1.72089458e-01 -1.86167493e-01\\n2.63491154e-01 1.32787660e-01 9.03407037e-02 3.80113930e-01\\n1.36247039e-01 -1.58177197e-01 -1.36389188e-03 3.31812084e-01\\n-3.16919744e-01 -6.08626246e-01 3.15553844e-01 -5.79803661e-02\\n2.64587820e-01 3.92388672e-01 -3.64307582e-01 -1.10873200e-01\\n-1.85079142e-01 -2.41591007e-01 2.44352967e-01 -4.56115514e-01\\n-1.10426798e-01 3.89783680e-01 1.79563209e-01 -1.78729072e-01\\n1.28573611e-01 -4.04469341e-01 3.04594561e-02 -5.78631938e-01\\n5.43392524e-02 -6.25710130e-01 3.94522659e-02 -2.58353949e-02\\n6.62804663e-01 -3.31731856e-01 2.36898512e-02 7.02679455e-02\\n2.34228984e-01 2.39032984e-01 4.28735688e-02 -4.50738035e-02\\n-1.81983411e-01 -2.89416641e-01 -1.03766114e-01 -1.54740855e-01\\n3.00505221e-01 6.10849917e-01 -2.35515565e-01 7.02915415e-02\\n5.53140193e-02 -2.58784682e-01 -4.02440399e-01 -3.39439750e-01\\n-1.89735144e-01 -1.50278851e-01 -6.57278895e-01 -3.34497631e-01\\n-1.15860552e-01 -1.83503523e-01 -9.66823399e-02 3.12969416e-01\\n-2.29674950e-01 -2.75914937e-01 -8.53286535e-02 -4.79041696e-01\\n2.45226189e-01 7.09865913e-02 -7.04380348e-02 -1.69022635e-01\\n-1.63950503e-01 -3.43916655e-01 7.77869523e-02 1.85001064e-02\\n-4.48846817e-02 -1.83759302e-01 5.08454405e-02 -2.12779567e-01\\n-3.53567809e-01 -4.99482483e-01 2.98669696e-01 1.33216321e-01\\n3.15942168e-01 1.77221835e-01 2.23191250e-02 1.09549277e-02\\n2.99648404e-01 -3.01277041e-01 7.17213079e-02 -3.20920199e-01\\n1.38174683e-01 1.47417234e-02 4.28012878e-01 -3.05463344e-01\\n3.75528075e-02 1.15785310e-02 -3.77472490e-01 -1.79261222e-01\\n2.48683989e-01 -6.81184828e-02 1.66927159e-01 -3.01256686e-01\\n1.91228762e-01 -3.06610703e-01 -3.07828188e-01 5.75505458e-02\\n-6.64626583e-02 4.72549587e-01 6.06770143e-02 -3.61382455e-01\\n-2.04380199e-01 3.94715458e-01 -6.65246770e-02 -3.95309106e-02\\n-2.47686937e-01 2.87414901e-02 -3.55923831e-01 2.48838723e-01\\n-6.09782860e-02 -9.42683741e-02 -2.64787734e-01 -1.01991758e-01\\n-9.61587280e-02 3.13363642e-01 2.40723893e-01 1.41399637e-01\\n4.53760615e-03 -3.37665379e-01 -2.27243267e-02 2.94157714e-01\\n1.51349425e-01 4.76930737e-01 6.50615171e-02 -7.80015960e-02\\n6.58115596e-02 3.34465206e-01 -1.36432245e-01 1.06814414e-01\\n-1.53895825e-01 2.22882088e-02 -4.29047823e-01 -3.44791353e-01\\n-2.50608712e-01 -2.02324137e-01 3.47349718e-02 2.86271662e-01\\n1.68628082e-01 -1.35763541e-01 -4.67459597e-02 -2.57006675e-01\\n2.47827232e-01 -6.23320788e-02 1.48508608e-01 2.05369368e-01\\n1.08742602e-01 4.15658206e-01 1.51533067e-01 -2.32296050e-01\\n-1.25905991e-01 -3.79431201e-03 -3.03833425e-01 3.70254013e-04\\n8.41520354e-02 -3.76123279e-01 -1.21948943e-01 4.77743357e-01\\n1.37785375e-01 -1.08983040e-01 5.99971646e-03 4.72064167e-01\\n-1.09932609e-01 -2.48965263e-01 -2.54145086e-01 1.44819900e-01\\n4.11230296e-01 1.78455874e-01 2.47661233e-01 -4.71388102e-01\\n3.11464351e-02 -8.22136030e-02 -7.83164799e-03 3.43756557e-01\\n9.00764316e-02 5.74659072e-02 -1.19600102e-01 -3.09496939e-01\\n3.61400843e-01 -8.47936496e-02 -6.30013645e-02 2.09444657e-01\\n4.74296696e-02 -5.81431016e-02 -4.91343170e-01 8.80029425e-02\\n-1.04511052e-01 -1.26672506e-01 7.36680925e-02 3.50665972e-02\\n1.17334209e-01 7.30119925e-03 -5.59879422e-01 -2.10101113e-01\\n-1.99574202e-01 1.47355869e-01 -1.44189507e-01 -4.80099916e-01\\n-2.33495142e-02 -3.12063619e-02 -5.60033143e-01 2.23822355e-01\\n-1.61080107e-01 1.67009886e-02 2.32773080e-01 -4.48173061e-02\\n-2.70627886e-01 5.00976145e-02 2.31770024e-01 1.35631919e-01\\n-3.08689982e-01 -1.87755674e-01 -5.80563471e-02 -1.04349649e+00\\n1.64861321e-01 -2.45977864e-02 -5.41159734e-02 1.30992085e-01\\n8.63255039e-02 -5.65017939e-01 8.36776718e-02 -2.12323114e-01\\n-2.06730217e-01 -1.63068071e-01 -8.32395926e-02 -4.93767947e-01\\n-3.51195298e-02 6.54743239e-02 -1.41817629e-01 2.52416819e-01\\n-2.48661324e-01 2.38354698e-01 -1.46934465e-02 5.94691783e-02\\n-3.21889296e-02 -3.14568996e-01 2.23100230e-01 -3.77518475e-01\\n-3.53369057e-01 -1.49075598e-01 -3.33571643e-01 -1.28569245e-01\\n4.02850732e-02 -2.92416692e-01 -7.36466795e-02 2.61670291e-01\\n2.98244804e-01 7.06951842e-02 -7.13124722e-02 -6.95739836e-02\\n7.35802874e-02 -4.98523146e-01 1.51330948e-01 8.95632058e-02\\n-1.64705336e-01 -5.01828417e-02 3.33137184e-01 5.34483641e-02\\n1.74539492e-01 -4.12812471e-01 3.61971527e-01 -4.92386401e-01\\n-3.06161344e-01 1.67556491e-03 1.34837672e-01 4.10571098e-02\\n4.43473637e-01 -4.38564599e-01 -1.11866124e-01 4.09112155e-01\\n1.26230836e-01 1.12702549e-01 3.18779349e-01 -1.06237084e-01\\n-1.32878780e-01 3.01319301e-01 -5.55391848e-01 8.46253186e-02\\n7.08826423e-01 2.07657054e-01 1.55981839e-01 1.90416127e-01\\n-2.26936564e-02 2.27222875e-01 3.77483875e-01 1.36525454e-02\\n-2.62449235e-01 3.45059931e-01 -1.42353140e-02 -7.68584073e-01\\n-1.42146602e-01 -1.57654524e-01 -2.80348778e-01 -4.64638770e-01\\n6.58223987e-01 4.27320302e-01 -4.56058502e-01 -2.40133464e-01\\n-2.30779856e-01 -2.33429775e-01 -6.89104348e-02 -1.68819129e-01\\n5.95154203e-02 -1.51475146e-01 4.61679161e-01 -1.36592919e-02\\n2.01342061e-01 4.21174079e-01 -1.62242711e-01 -1.41490623e-01\\n-8.22958052e-02 6.27560169e-02 -7.81479627e-02 3.58443141e-01\\n-1.26534119e-01 2.95761943e-01 -2.20252741e-02 2.42983475e-01\\n-2.37127040e-02 -4.72395644e-02 -4.19845097e-02 -3.83028202e-02\\n-5.60388826e-02 3.19579959e-01 2.95404166e-01 2.90586531e-01\\n4.10978079e-01 3.58087301e-01 3.00400764e-01 5.93846999e-02\\n6.17043436e-01 3.52668822e-01 3.26820016e-01 1.83177322e-01\\n-1.39118299e-01 7.32062533e-02 -6.74592480e-02 1.11791618e-01\\n2.71139145e-01 2.34200418e-01 -3.19756083e-02 8.03222239e-01\\n2.34582201e-01 1.84454560e-01 5.70965052e-01 -5.00223398e-01\\n-3.43580008e-01 -1.56258583e-01 3.94312531e-01 -4.59701687e-01\\n3.53975222e-02 2.24629249e-02 -1.14779077e-01 1.30188957e-01\\n-4.32968676e-01 -3.01344872e-01 1.16653154e-02 1.10374108e-01\\n1.10670902e-01 -7.09238499e-02 -2.22948164e-01 -2.32056025e-02\\n-1.53612942e-01 -2.05817133e-01 -4.20883030e-01 -4.60624024e-02\\n-1.63215458e-01 -1.82119161e-01 -2.94461790e-02 -2.71312952e-01\\n-8.58309120e-02 -2.24729747e-01 -5.36047295e-02 -2.34992523e-03\\n2.97083676e-01 -1.38589311e-02 -9.60794452e-04 -1.53908446e-01\\n2.70777553e-01 1.76755264e-01 5.47148764e-01 -6.68331236e-03\\n1.23513870e-01 -2.16279805e-01 -6.16046712e-02 1.68843731e-01\\n4.43239272e-01 4.92541566e-02 9.19680372e-02 3.52449983e-01\\n-3.38073671e-01 -1.69344291e-01 1.02153651e-01 3.03860456e-01\\n-5.02762198e-01 -3.82813662e-02 1.01749767e-02 2.27467090e-01\\n1.22416452e-01 1.63998008e-01 -2.18629256e-01 7.30605498e-02\\n-2.25328013e-01 -4.44776922e-01 2.13889554e-01 5.48362173e-02\\n-1.57049388e-01 -7.29980916e-02 2.77926683e-01 9.75853279e-02\\n-8.32841843e-02 6.18050098e-02 1.90277845e-02 1.63488731e-01\\n2.14833230e-01 2.88607210e-01 -3.55266660e-01 -2.97078073e-01\\n-3.03522408e-01 1.68096393e-01 -2.22219825e-01 1.80516332e-01\\n-1.01062082e-01 3.22808862e-01 1.26399755e-01 5.62091954e-02\\n4.42894995e-01 -1.83020994e-01 -1.87508419e-01 -3.21166813e-01\\n-3.33363861e-01 -2.98934102e-01 8.22979361e-02 -2.58180588e-01\\n1.47568077e-01 -3.60976130e-01 -1.93068773e-01 -1.32323831e-01\\n-1.40512407e-01 -3.32886577e-01 1.71561129e-02 -5.65489605e-02]]',\n", + " 'IBM DB2 Database AdministratorExperis is the global leader in professional resourcing and project-based workforce solutions. Our suite services range from interim and permanent to managed services and consulting, enabling businesses and candidates to achieve their goals. We accelerate organisational growth by attracting, assessing and placing specialised professional talents.On behalf of our client, a global pharmaceutical company, we are looking for an IBM DB2 Database Administrator, who is eager to join an international and dynamic team in Zurich, Switzerland. Duration: 6-8 weeks Start date: ASAPLocation: Zurich, Switzerland Languages: Fluency in English. German and any other languages are considered an asset. Responsibilities: Set-up of UAT Big Data Environment (DB2 / Attunity / HortonWorks) with the help of the Data ArchitectWriting of installation guidelines and operating guidelines for the set-up componentsReproduction of the installation for the production environmentTransfer of knowledge to the client Required Skills & Experience: Senior experience level Are you interested in this opportunity? Kindly send us your CV today via the link in the advert. Should you have any questions, please contact Nina-Beatriz Schröter on: +41 44 229 99 38.If this position is not a perfect fit for you, you may still reach out to us, as we have hundreds of open positions across Switzerland at Experis IT.To view more jobs in Zurich, please visit: https://www.experis.ch/it-jobs-zurich',\n", + " '[\"Consulting\", \"Operations\", \"Positivity\", \"Professionalism\"]',\n", + " '[\"Pharmaceuticals\", \"Attunity\", \"Database Administration\", \"Resourcing\", \"Installation\", \"Project-Based Solutions\", \"Library For WWW In Perl\", \"Big Data\", \"IBM DB2\", \"Levelling\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Managed Services\", \"DB2 SQL\"]',\n", + " \"['English', 'Maori', 'Marathi', 'Pali', 'Flemish']\"],\n", + " ['115',\n", + " 'backend software engineer for iptiq emea p&c',\n", + " 'Zürich',\n", + " 'Insurance Agencies & Brokerages',\n", + " 'www.swissre.com',\n", + " '[[-1.51607335e-01 2.45700851e-01 5.71299732e-01 4.21508439e-02\\n5.47416329e-01 -1.59287214e-01 -3.46607268e-02 2.49995232e-01\\n4.47569564e-02 -5.64005554e-01 -3.09100077e-02 -2.73756176e-01\\n-1.55617520e-01 7.43689314e-02 1.28326714e-01 5.27891755e-01\\n3.57368231e-01 6.98308200e-02 -1.72142819e-01 4.35592949e-01\\n6.27982244e-03 -1.40930757e-01 5.72162420e-02 7.86320627e-01\\n3.96925211e-01 -3.37414071e-02 -4.83073890e-02 -1.80194154e-03\\n-2.76713967e-01 -1.84191778e-01 5.40569782e-01 4.71941195e-02\\n-2.48609483e-01 -5.41587353e-01 1.29495695e-01 1.21562771e-01\\n-2.14085653e-01 -7.96991810e-02 -1.70730978e-01 1.45557150e-01\\n-5.21042585e-01 -2.40828693e-01 -1.19071640e-02 -1.18121207e-01\\n-2.12115049e-01 -4.30957049e-01 2.39199027e-04 -1.01336256e-01\\n1.51791707e-01 6.14694990e-02 -5.03482044e-01 1.75401777e-01\\n-3.11641276e-01 -1.63465053e-01 3.40275019e-01 6.12610102e-01\\n3.72616574e-02 -5.89699626e-01 -5.19559443e-01 -3.46681595e-01\\n2.01193392e-02 -1.55878305e-01 1.31854326e-01 -3.45781684e-01\\n2.26804391e-01 -3.06797773e-03 -3.30993049e-02 3.56631339e-01\\n-7.48796403e-01 -5.61239310e-02 -2.76137501e-01 -6.57028519e-03\\n-3.51451337e-01 -8.54304135e-02 -3.96596462e-01 -1.35090426e-01\\n-1.73384756e-01 4.97799933e-01 5.18363528e-02 5.38194738e-02\\n-1.72606051e-01 3.76287282e-01 -2.27606595e-01 5.04966378e-01\\n2.99681634e-01 2.04901561e-01 3.53502095e-01 4.53148961e-01\\n-4.12867457e-01 5.42658091e-01 2.02847391e-01 -3.73002917e-01\\n2.50773400e-01 1.86028242e-01 4.22769696e-01 4.58819829e-02\\n2.43803024e-01 7.17079192e-02 -1.47466838e-01 3.20022345e-01\\n2.57693321e-01 -2.10487992e-01 -5.09887598e-02 -2.71403998e-01\\n-2.26936322e-02 2.54654512e-03 9.37806070e-02 1.23303540e-01\\n-2.83563733e-01 3.92254889e-01 5.35078049e-02 -2.80434072e-01\\n-1.54238239e-01 -4.39132601e-01 -3.73535082e-02 -2.39585638e-02\\n-3.55188176e-02 2.55148947e-01 2.25412637e-01 8.42405632e-02\\n2.41174310e-01 1.07006706e-01 5.93280420e-02 8.43412459e-01\\n-6.20268798e-03 -3.21134776e-02 -2.92062670e-01 3.62573266e-01\\n7.63421357e-02 -3.17435592e-01 2.79244602e-01 1.94348395e-01\\n-2.00742841e-01 -1.88946709e-01 -2.94854790e-01 4.66094911e-01\\n-2.52451058e-02 -2.70842493e-01 -2.60526985e-01 1.56662136e-01\\n7.92032406e-02 -4.89735723e-01 6.84454858e-01 7.17296749e-02\\n1.68903977e-01 -7.14911819e-02 1.08660772e-01 -1.14922643e-01\\n-7.60371387e-02 9.44318324e-02 4.58407998e-02 1.40101999e-01\\n-1.80131972e-01 -2.17888832e-01 -2.11512744e-01 1.79843843e-01\\n-4.03750479e-01 2.45457649e-01 -1.89657360e-01 -9.94548798e-02\\n2.52676576e-01 9.19565707e-02 -3.15387964e-01 2.55572796e-01\\n-8.97467583e-02 8.15720484e-03 1.86879635e-02 4.01351511e-01\\n-1.95168734e-01 6.87448084e-02 8.25260766e-04 -1.96216777e-01\\n6.70043766e-01 2.61465043e-01 2.06621528e-01 6.73682392e-02\\n3.95032972e-01 -4.18851152e-02 3.40355933e-02 1.34208024e-01\\n-7.06217647e-01 3.68079007e-01 -5.14578447e-02 -8.74001831e-02\\n5.46051972e-02 -4.45525423e-02 2.10410863e-01 -2.72858799e-01\\n-5.63940443e-02 -1.54990345e-01 -3.97879362e-01 -2.44130164e-01\\n-1.69587210e-01 -1.80972487e-01 3.64111960e-01 -6.05951667e-01\\n-1.14200369e-01 2.85567760e-01 -6.68980241e-01 -1.59817696e-01\\n1.52009562e-01 2.24529460e-01 1.81540653e-01 1.11764856e-01\\n-2.06065565e-01 -5.30062973e-01 -1.11364797e-02 -5.69816232e-01\\n-3.49971771e-01 5.44129610e-02 -3.49038780e-01 6.89770803e-02\\n5.81736118e-02 6.10862300e-02 -1.25391319e-01 1.19754393e-02\\n-1.36266589e-01 -3.47451344e-02 1.21357404e-01 4.25939411e-02\\n2.65452474e-01 5.27256355e-02 -3.26346517e-01 4.77183431e-01\\n-2.29264617e-01 5.70963979e-01 1.21736772e-01 -1.00509179e+00\\n5.85437655e-01 3.58790159e-01 -1.01564661e-01 -3.15641820e-01\\n3.17170918e-01 -4.15061057e-01 -4.31151576e-02 1.64486498e-01\\n-3.25988591e-01 -2.50679672e-01 1.84413105e-01 -2.64790028e-01\\n-3.05539548e-01 4.23391670e-01 4.23845463e-02 1.42683476e-01\\n2.96188712e-01 -2.29181707e-01 -2.31676966e-01 1.65705830e-02\\n-1.75288200e-01 -2.55442142e-01 -6.99486732e-01 4.60998639e-02\\n-1.14344880e-01 -4.82824206e-01 -7.32759237e-02 -4.98251528e-01\\n-1.46104693e-01 -4.10333812e-01 -2.40190282e-01 1.12137184e-01\\n2.13270932e-01 9.14745778e-02 -1.29924864e-01 -3.09933126e-02\\n2.01663934e-02 -7.00964689e-01 -5.94696309e-03 1.02839254e-01\\n3.74797970e-01 1.32841855e-01 9.76127759e-02 3.58268432e-02\\n1.15872577e-01 6.72438443e-01 -2.34618783e-01 -2.10130006e-01\\n2.08724231e-01 2.64791667e-01 2.58660931e-02 -1.60817921e-01\\n3.05834897e-02 3.11138421e-01 -3.02934200e-01 -1.18448213e-03\\n5.02564088e-02 3.90601568e-02 4.59220827e-01 -1.14960298e-01\\n-4.22099233e-01 -5.55464178e-02 -9.98506416e-03 1.00901648e-01\\n-7.05993295e-01 -1.47137925e-01 7.00239360e-01 1.77009597e-01\\n1.23192295e-01 1.90565437e-01 5.12596518e-02 -6.19042665e-02\\n-3.36743832e-01 -2.54050046e-01 3.45681518e-01 1.64667219e-01\\n2.12107912e-01 1.08523108e-01 2.97815856e-02 -6.53734207e-01\\n-2.96928358e+00 -1.94780499e-01 1.37721986e-01 -1.28120512e-01\\n1.27507553e-01 -1.70227081e-01 5.63224070e-02 -8.29518214e-02\\n-2.55149364e-01 1.19226445e-02 -6.39807805e-02 -1.54268891e-01\\n1.17435344e-01 1.13361835e-01 1.34498805e-01 2.37024307e-01\\n2.50927776e-01 -1.24392226e-01 4.23465855e-02 2.44113877e-01\\n-1.31829381e-01 -8.28639865e-01 2.01336920e-01 3.85021940e-02\\n2.30335027e-01 1.11758836e-01 -4.44711566e-01 -1.34559482e-01\\n-3.23703766e-01 -1.92273781e-01 2.59722173e-02 -3.45683277e-01\\n-1.18936643e-01 2.00283542e-01 1.87649086e-01 -7.99838752e-02\\n8.28027874e-02 -3.81826401e-01 -3.03422064e-01 -5.07337928e-01\\n8.24332833e-02 -6.71792865e-01 7.75821730e-02 -2.03144222e-01\\n5.72810590e-01 -2.17529297e-01 2.23930269e-01 1.19926929e-01\\n1.26079857e-01 1.99299574e-01 1.52441457e-01 9.11917537e-02\\n-2.76066005e-01 -3.35463345e-01 -1.03997886e-01 -1.44256145e-01\\n6.24363899e-01 3.26365411e-01 -2.17629801e-02 5.32800555e-02\\n1.41887307e-01 -1.96928799e-01 -5.22651911e-01 -2.12304950e-01\\n-6.34393021e-02 -1.35689989e-01 -6.88690782e-01 -5.08009076e-01\\n-2.22282708e-01 -8.03410783e-02 -1.87203109e-01 7.38792241e-01\\n-2.69677222e-01 -1.89316869e-01 -9.69721824e-02 -6.09651506e-01\\n3.91033947e-01 -1.64330423e-01 5.76500669e-02 -2.51962543e-01\\n-2.16293544e-01 -5.39816141e-01 8.98807272e-02 1.34898908e-02\\n-3.99983414e-02 -2.47507975e-01 1.19101197e-01 -1.18828356e-01\\n-2.73174405e-01 -4.76839840e-01 4.02263522e-01 2.26547837e-01\\n3.05459380e-01 1.73775733e-01 3.36529911e-01 -5.57742566e-02\\n2.55649805e-01 -1.92559641e-02 -1.89690650e-01 -3.25314164e-01\\n1.39680326e-01 8.31988007e-02 3.54917705e-01 -1.34529799e-01\\n-1.22191742e-01 1.20385304e-01 -2.48277068e-01 -9.30234641e-02\\n4.11407650e-01 -1.05201475e-01 5.34394346e-02 -8.42848569e-02\\n3.60394597e-01 -2.84647226e-01 -1.71526939e-01 2.44031455e-02\\n9.84324589e-02 7.68158793e-01 -5.58939017e-03 -5.24926305e-01\\n1.18317567e-02 5.55643141e-01 9.24163684e-03 1.06751174e-02\\n-3.16886902e-01 1.05011672e-01 -2.51011759e-01 3.11813265e-01\\n1.13789886e-02 -1.80304289e-01 -2.08910257e-01 -2.19813764e-01\\n-1.74070269e-01 2.21201599e-01 2.46137515e-01 1.27475619e-01\\n-2.11120062e-02 -3.21910262e-01 -2.00424045e-01 2.49503508e-01\\n2.17861995e-01 4.82915819e-01 2.19339967e-01 -2.42882714e-01\\n-2.17846297e-02 3.27325761e-01 -1.56466872e-01 1.49184167e-01\\n-2.85380065e-01 1.20912708e-01 -5.34851074e-01 -2.26842359e-01\\n-2.31371552e-01 -3.94340336e-01 1.85542971e-01 4.00716305e-01\\n1.29319355e-01 -1.42921120e-01 1.82845831e-01 -4.70712543e-01\\n3.13165516e-01 2.96505928e-01 6.77503571e-02 1.51993483e-01\\n3.59634310e-02 7.26995587e-01 1.41285229e-02 -2.37567574e-01\\n-1.36250168e-01 -5.21105193e-02 -2.30557352e-01 -2.33205393e-01\\n4.86279763e-02 -5.67141891e-01 -1.25840366e-01 4.14481312e-01\\n5.88311441e-02 -2.83619344e-01 -3.22829664e-01 2.45125219e-01\\n5.49949184e-02 -1.34644657e-01 -2.48466015e-01 -6.68199211e-02\\n4.28889245e-01 -1.04629792e-01 2.66903758e-01 -5.28803825e-01\\n5.76970093e-02 -5.18402420e-02 8.69944245e-02 5.62788904e-01\\n1.44799650e-01 1.29055366e-01 -9.65894759e-02 -1.86028093e-01\\n4.47029442e-01 -8.16727281e-02 -1.73637822e-01 4.33749333e-02\\n1.59072548e-01 -1.88954622e-01 -4.18685973e-01 8.80020037e-02\\n-1.26815930e-01 -1.92775324e-01 5.35170734e-02 1.92247659e-01\\n4.43729423e-02 1.28883183e-01 -6.84196293e-01 -3.06600809e-01\\n-2.64415205e-01 6.82324171e-02 7.87351578e-02 -5.64081311e-01\\n1.37114814e-02 -1.26930326e-01 -5.97811222e-01 2.47712940e-01\\n-2.21192390e-02 -2.26999164e-01 2.62781024e-01 1.14665180e-01\\n-2.72057712e-01 -1.39947653e-01 1.45706441e-02 1.53290555e-01\\n-3.28228235e-01 -3.67780328e-01 -7.27485642e-02 -1.07193446e+00\\n2.25077853e-01 1.47885740e-01 -2.19207317e-01 2.59622931e-01\\n-5.94061539e-02 -7.99730062e-01 4.55757938e-02 -3.83859366e-01\\n-7.41356015e-02 -2.41216943e-02 -2.48026133e-01 -3.44804168e-01\\n1.00986212e-01 5.09668663e-02 -2.06268176e-01 4.35465693e-01\\n-4.18261558e-01 3.78620923e-01 -2.08440125e-01 8.04942548e-02\\n7.31090456e-02 -3.64128858e-01 9.13885608e-02 -4.15105283e-01\\n-4.14787710e-01 -3.36221993e-01 -3.67865145e-01 -3.05270970e-01\\n-3.15383524e-02 -5.04256546e-01 -5.12754917e-02 -1.08980350e-02\\n4.78007495e-01 2.24641651e-01 -1.37601987e-01 -2.90719271e-01\\n-3.88187319e-02 -4.48888600e-01 -1.50886178e-03 -1.48260236e-01\\n-7.53376558e-02 -2.36101285e-01 2.12596506e-01 1.41000703e-01\\n1.67472482e-01 -4.29942071e-01 4.02122855e-01 -2.61439055e-01\\n-3.32473546e-01 -2.36470938e-01 4.54503596e-02 7.02080354e-02\\n2.95249760e-01 -4.96690899e-01 -2.72229593e-03 2.65036881e-01\\n2.38607287e-01 -2.41885986e-02 2.81740010e-01 -9.40708667e-02\\n9.59842931e-03 2.71147907e-01 -3.35410416e-01 2.15242654e-01\\n5.97622633e-01 1.17543370e-01 1.61616325e-01 1.95294216e-01\\n2.08071470e-01 2.82338947e-01 5.33342242e-01 -2.03958657e-02\\n-9.53450799e-04 3.20085645e-01 1.23949036e-01 -4.19393659e-01\\n-7.51649141e-02 -1.06877126e-01 -8.01247805e-02 -3.45256776e-01\\n7.05132365e-01 4.47373152e-01 -3.37100178e-01 -1.10133410e-01\\n-2.72297800e-01 -1.98818237e-01 2.10725039e-01 -4.95266467e-02\\n-7.95061886e-02 1.15052342e-01 4.89127755e-01 -1.14399776e-01\\n2.45970488e-01 5.72366297e-01 -2.94472724e-01 -2.63495028e-01\\n-2.15922967e-01 3.08524549e-01 2.59994641e-02 4.65615124e-01\\n-2.61387885e-01 3.02861780e-01 1.30239576e-01 1.64290771e-01\\n-2.39229113e-01 1.53996617e-01 8.62301067e-02 1.52675718e-01\\n3.51831257e-01 -7.26979226e-02 4.23496485e-01 4.77612317e-01\\n3.31548274e-01 4.07338709e-01 4.06877995e-01 5.42258695e-02\\n5.01626194e-01 5.56577444e-01 5.29224038e-01 1.18944295e-01\\n7.49630481e-02 9.72353369e-02 1.84845626e-01 2.36443616e-02\\n2.87443548e-01 5.45897841e-01 1.04046673e-01 8.42569947e-01\\n3.72719526e-01 3.46872628e-01 6.95742011e-01 -7.36663818e-01\\n-3.64543170e-01 -3.96736562e-02 5.49128413e-01 -3.17222297e-01\\n1.33364141e-01 1.55748993e-01 -1.49561867e-01 2.36745656e-01\\n-4.29289550e-01 -2.32609928e-01 3.15140411e-02 1.58049643e-01\\n1.15368053e-01 -2.16189295e-01 -2.00409368e-01 2.03507170e-01\\n-2.21010342e-01 -1.21603936e-01 -3.85199457e-01 -7.55350813e-02\\n-2.26084024e-01 -3.12810093e-02 7.77518190e-03 -1.56865671e-01\\n-9.85272080e-02 -2.70421267e-01 -1.40903935e-01 -8.31648260e-02\\n3.84521157e-01 -1.18471131e-01 -1.19114116e-01 -1.15869805e-01\\n2.73873448e-01 1.70746401e-01 5.60358405e-01 -1.93594024e-03\\n1.10007524e-01 -1.85535356e-01 -1.53566033e-01 1.86564520e-01\\n2.14750424e-01 6.70564473e-02 3.20854485e-02 3.44990492e-01\\n-2.08808005e-01 -1.58831000e-01 2.20954776e-01 2.57213444e-01\\n-3.36503953e-01 -3.82269397e-02 -2.01983526e-01 9.50355455e-02\\n5.96063510e-02 2.46583730e-01 -2.47002587e-01 -6.63466230e-02\\n-1.17401727e-01 -6.07196689e-01 3.90233815e-01 -3.57466161e-01\\n-1.40969843e-01 -5.50134256e-02 2.76421249e-01 3.49114597e-01\\n-2.89102852e-01 4.72083874e-02 -1.62901469e-02 7.42716640e-02\\n5.01377285e-02 2.60579735e-01 -3.17225426e-01 -2.50775605e-01\\n-3.19044083e-01 2.03708112e-01 -1.09380811e-01 1.43182650e-01\\n8.52500722e-02 4.42883044e-01 2.20652685e-01 2.83812545e-02\\n3.43937576e-01 5.49533404e-03 -2.42628515e-01 -1.54690981e-01\\n-3.12048793e-01 -1.30345121e-01 -1.26126364e-01 -6.13558106e-02\\n1.60341278e-01 -2.96005070e-01 -7.62861073e-02 -2.50045031e-01\\n-1.88376456e-01 -3.98542941e-01 -9.68363881e-02 -7.16263428e-02]]',\n", + " \"About iptiQ EMEA P&C

iptiQ EMEA Property & Casualty is a newly built unit within Swiss Re Life Capital, established to deliver digital-native and creative solutions for Property & Casualty (P&C) clients and partners across Europe that engage with consumers in non-traditional ways. About the role As a Backend Software Engineer you will have an unusual and great opportunity to join us: a diverse and motivated team, committed to delivering value and creative services together with our clients and partners in the primary insurance space. Responsibilities You will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a high-traffic distributed infrastructure by designing, implementing and testing simple, scalable and reliable solutions. This will include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability End-to-end responsibility on the applications implemented, including monitoring, identifying issues or bottlenecks and delivering improvements of the platform Optimise applications and components to maximize speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications About the team We put the consumers' needs at the center of what we do, seek to become a digital champion and believe in data based learning. We use the Swiss Re network to access state of the art technologies and capabilities, combine it with local expertise and an innovative mind-set, constantly questioning current ways of offering insurance. Our aim is to drive the digitalization of the P&C insurance business in Europe, combining insurance know-how and e-commerce competencies, as well as the dynamic spirit of a start-up with the backing of Swiss Re. Do you enjoy thinking ahead and identifying new opportunities or anticipate future challenges? Do you like driving complex, multi-functional projects in an agile way? Do you enjoy pushing borders and have a passion for the latest technologies? About you Proven software development capabilities (5+ years hands-on experience) in any modern language (Java/Kotlin/Scala/C++/C#/Go/Python…) ***we are working in Java environment*** Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality overtime You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience designing data-models for relational and NoSQL data stores Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long term vision the adoption of new technologies Master’s or PhD degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re\",\n", + " '[\"Complex Problem Solving\", \"Leadership\", \"Collaboration\", \"Infrastructure\", \"Team Motivation\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " '[\"Disabilities\", \"Performance Improvement\", \"NoSQL\", \"Accessioning\", \"Agility\", \"Capitalization\", \"Computer Science\", \"Collections\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"Scale (Map)\", \"Activity-Based Learning\", \"Streamlines\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Prototyping\", \"Maintainability\", \"Library\", \"Iterators\", \"Micro Channel Architecture\", \"Message Passing\", \"Concurrent Versions System (Software)\", \"E-Commerce\", \"Business Process\", \"Equalization\", \"C# (Programming Language)\", \"Digitization\", \"Performance Metric\", \"Scalability\", \"Java Runtime Environment\", \"Experience Design\", \"Software Development\", \"Centering\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Kotlin\", \"Adoptions\", \"RESTful API\", \"Java Scripting Languages\"]',\n", + " \"['English', 'Basque', 'Gujarati']\"],\n", + " ['9',\n", + " 'software engineer frontend (m/w)',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.29411924e-01 3.69570881e-01 4.05117869e-01 -9.23201814e-02\\n4.00253803e-01 -1.96479231e-01 -3.31471823e-02 4.53161091e-01\\n-8.15106258e-02 -3.87246817e-01 -8.96338522e-02 -2.40364134e-01\\n-1.78286508e-01 5.12044504e-02 1.76763207e-01 3.77947927e-01\\n3.02914709e-01 1.31900102e-01 -2.00987652e-01 3.42699260e-01\\n7.53284618e-02 -8.97139087e-02 -2.94442456e-02 7.02488601e-01\\n3.25351417e-01 1.07417889e-02 -3.31698805e-02 -8.29202756e-02\\n-2.61225253e-01 -2.32835680e-01 3.87040228e-01 1.65966637e-02\\n-9.27388221e-02 -3.60517710e-01 8.05779919e-02 7.85665810e-02\\n-1.49701387e-01 1.11210449e-02 -2.71107778e-02 1.73086390e-01\\n-4.95559961e-01 -2.36285791e-01 1.87594235e-01 -2.54552811e-03\\n-1.19406827e-01 -3.99426579e-01 2.31142834e-01 -4.11266237e-02\\n1.42262325e-01 -1.39738563e-02 -6.67806029e-01 1.82873860e-01\\n-3.02327514e-01 -1.91834658e-01 4.21090394e-01 4.75494474e-01\\n5.96510693e-02 -5.02350688e-01 -4.68741387e-01 -3.23751360e-01\\n5.00352047e-02 -6.45478070e-02 1.25537902e-01 -3.54868680e-01\\n3.50229591e-01 7.04007223e-02 2.94305775e-02 3.95864725e-01\\n-8.07034492e-01 -5.06236218e-02 -2.34445035e-01 -1.19389305e-02\\n-4.53674287e-01 -1.83947399e-01 -2.66975850e-01 -5.07865623e-02\\n-1.25643134e-01 3.16604376e-01 -8.07620361e-02 6.20083399e-02\\n-1.92136452e-01 3.58563244e-01 -1.96704954e-01 4.84612137e-01\\n2.37676635e-01 1.84111580e-01 2.35324442e-01 3.53205860e-01\\n-4.17643011e-01 4.26375836e-01 2.31587321e-01 -2.68785179e-01\\n3.11311007e-01 3.05274967e-02 4.46601897e-01 5.85986041e-02\\n2.14686230e-01 8.38731676e-02 -2.45889008e-01 2.03965932e-01\\n2.06985757e-01 -2.63606668e-01 -1.32197678e-01 -1.34364218e-01\\n-2.37532513e-04 1.42218713e-02 7.10352184e-03 2.31911212e-01\\n-1.58053622e-01 5.14584839e-01 2.49390170e-01 -1.23238206e-01\\n-1.31678358e-01 -5.28611302e-01 -9.17088389e-02 4.26199846e-02\\n-8.95039141e-02 4.86033857e-02 1.97904795e-01 8.70702490e-02\\n2.45701268e-01 4.46167290e-02 6.42111450e-02 8.11113477e-01\\n-8.71537924e-02 7.23166764e-02 -1.57811627e-01 3.86564374e-01\\n9.73562226e-02 -3.39138538e-01 1.33837491e-01 3.47027004e-01\\n1.12876065e-01 -1.56601027e-01 -2.10042566e-01 3.36655289e-01\\n-6.77346066e-02 -1.78810269e-01 -3.28392357e-01 1.03942566e-01\\n-1.30089775e-01 -5.43019891e-01 5.14666319e-01 1.15517050e-01\\n2.11252630e-01 8.44955891e-02 1.09585926e-01 -1.08988255e-01\\n-1.67187542e-01 2.02998176e-01 3.29276882e-02 2.19192848e-01\\n-2.62528121e-01 -2.95220882e-01 -2.30744511e-01 1.29503042e-01\\n-1.86414227e-01 1.22461922e-01 -7.28980824e-02 -1.25563279e-01\\n3.91089648e-01 9.01127309e-02 -3.89580131e-01 3.25837731e-01\\n-2.96039265e-02 7.32740760e-02 -1.73700258e-01 3.51689696e-01\\n1.13036372e-02 2.26558372e-01 9.32053030e-02 -5.85043877e-02\\n5.41109443e-01 3.37963142e-02 2.49247745e-01 -4.23603207e-02\\n3.73318166e-01 -9.71680284e-02 1.92851096e-01 3.28308158e-02\\n-6.21452749e-01 1.97901428e-01 -5.31012230e-02 -3.59770395e-02\\n1.07706808e-01 -3.11045144e-02 2.90326744e-01 -3.05278003e-01\\n4.10244241e-02 -1.62066251e-01 -4.43341225e-01 -3.42027724e-01\\n-2.92095184e-01 -3.00347056e-05 4.76545930e-01 -3.98269385e-01\\n-1.25014722e-01 1.77671731e-01 -5.25608063e-01 -8.17053095e-02\\n2.53624022e-01 2.23039031e-01 1.06225893e-01 1.11317560e-01\\n-2.20318407e-01 -5.56012452e-01 4.24042828e-02 -5.06793082e-01\\n-4.24928844e-01 1.39224917e-01 -3.33594203e-01 2.07066193e-01\\n1.06761746e-01 -7.13509321e-02 -1.42024100e-01 5.63105606e-02\\n-2.45518357e-01 -9.25257802e-02 1.67488351e-01 1.06218018e-01\\n2.82514632e-01 -1.60132367e-02 -3.91320944e-01 5.45516670e-01\\n-2.07576782e-01 4.84423816e-01 8.30163807e-02 -8.63820076e-01\\n5.29234767e-01 4.03689086e-01 1.70482323e-02 -4.29077387e-01\\n5.68604767e-01 -3.38719010e-01 -4.87028770e-02 1.79560736e-01\\n-4.23586935e-01 -4.16793406e-01 2.49534130e-01 -1.28347069e-01\\n-2.44486988e-01 5.52456677e-01 7.65677765e-02 5.66585287e-02\\n2.63584852e-01 -2.79061884e-01 -1.83097646e-01 6.19198382e-02\\n-1.02029957e-01 -1.81545436e-01 -5.69159269e-01 4.90567461e-02\\n-5.71765266e-02 -5.12661278e-01 -1.59197271e-01 -3.78707260e-01\\n-2.35236287e-01 -4.07423347e-01 -3.33275080e-01 3.46463472e-01\\n1.90752208e-01 1.18661016e-01 -4.99214903e-02 1.18422091e-01\\n-1.45164147e-01 -6.48951769e-01 5.65320365e-02 1.40068904e-01\\n3.99149865e-01 1.57687411e-01 1.33428708e-01 -7.52682388e-02\\n-7.49949962e-02 5.97881436e-01 -2.96335161e-01 -2.47993588e-01\\n1.51850387e-01 2.04703584e-01 4.02054604e-04 -1.41496122e-01\\n1.18283741e-01 3.04508865e-01 -3.38581204e-01 -2.00866219e-02\\n-1.14004619e-01 2.07603048e-03 3.97050172e-01 -1.79522738e-01\\n-4.23588037e-01 -2.48989001e-01 -1.15061529e-01 1.76054463e-01\\n-5.33380151e-01 -2.13539794e-01 6.13665521e-01 3.21149409e-01\\n1.31031826e-01 2.04565778e-01 2.74301261e-01 -9.03357044e-02\\n-2.50618696e-01 -3.84346724e-01 2.98153579e-01 1.62363291e-01\\n1.54614463e-01 1.11201599e-01 -2.00536415e-01 -6.05881572e-01\\n-3.10678220e+00 -1.11332886e-01 2.43699685e-01 -2.34393403e-01\\n2.21965104e-01 -7.14346394e-02 1.11621946e-01 -6.25328720e-02\\n-2.62996674e-01 2.69727828e-03 -2.08455190e-01 -1.43144622e-01\\n1.09476000e-01 3.54203433e-01 1.04733236e-01 1.75140977e-01\\n2.29415357e-01 -2.34874815e-01 2.01575309e-02 2.80038327e-01\\n-2.20643982e-01 -6.92691386e-01 1.59317523e-01 -7.19114169e-02\\n2.05907077e-01 3.57553571e-01 -2.76850402e-01 -9.86656472e-02\\n-1.60291374e-01 -2.22065330e-01 9.19965357e-02 -2.89611846e-01\\n-9.40682888e-02 1.85911208e-01 1.41933128e-01 -6.64288253e-02\\n3.28832343e-02 -3.96721900e-01 -1.79942846e-01 -5.49185932e-01\\n1.70321688e-01 -5.97442806e-01 1.05505064e-01 -1.74614400e-01\\n7.38923609e-01 -3.13181967e-01 2.88300775e-02 6.46378621e-02\\n1.66261196e-01 1.77568853e-01 2.27926262e-02 1.51935574e-02\\n-3.33069384e-01 -3.41732055e-01 -4.03173938e-02 -2.76493996e-01\\n5.61342776e-01 4.01285380e-01 -2.73374557e-01 5.12259779e-03\\n1.56088069e-01 -2.21656680e-01 -4.30077165e-01 -3.17961127e-01\\n-1.44211724e-01 -1.24780893e-01 -6.84318304e-01 -4.54844266e-01\\n-1.27156168e-01 -1.68069690e-01 -6.41700402e-02 7.41744041e-01\\n-3.28977764e-01 -3.47371250e-01 -9.86098964e-03 -6.81394637e-01\\n1.94150820e-01 -2.31482938e-01 2.41207760e-02 -2.03758359e-01\\n-2.32270256e-01 -4.61979359e-01 5.73927388e-02 4.15991955e-02\\n-1.80058643e-01 -7.67726153e-02 7.98474401e-02 -1.05169445e-01\\n-2.69929051e-01 -5.51191330e-01 4.67386663e-01 1.44844174e-01\\n3.31390470e-01 1.49854526e-01 2.65491754e-01 -9.00676325e-02\\n4.04459149e-01 -2.45536566e-02 -1.83354337e-02 -4.13371325e-01\\n2.29118884e-01 7.02057332e-02 5.63765764e-01 -2.08509088e-01\\n-4.39126929e-03 3.24514747e-01 -1.66267022e-01 -1.66295394e-01\\n4.44916666e-01 -2.81692692e-03 9.39762294e-02 -2.35529691e-01\\n3.72845113e-01 -4.99007255e-01 -2.79690892e-01 1.62263930e-01\\n6.50707260e-02 6.79179490e-01 -4.62868176e-02 -4.07837003e-01\\n-1.45643756e-01 5.92358530e-01 -2.68287994e-02 -3.81400101e-02\\n-1.59143195e-01 1.90688744e-01 -1.69566676e-01 2.11906001e-01\\n7.83518404e-02 -1.83542281e-01 -2.62169242e-01 -4.94430438e-02\\n-9.38159972e-02 2.56094605e-01 1.93756148e-01 1.54458731e-01\\n1.85032953e-02 -4.16298151e-01 -1.09462939e-01 1.71553329e-01\\n2.32540503e-01 4.73408222e-01 2.56309900e-02 -2.50505865e-01\\n-7.08528906e-02 3.12660068e-01 -1.67381495e-01 1.95748866e-01\\n-2.51374364e-01 1.77247152e-01 -4.89304394e-01 -2.81294286e-01\\n-3.07072520e-01 -3.44712198e-01 2.19907779e-02 2.45001048e-01\\n2.15368003e-01 1.71730258e-02 9.67314020e-02 -4.89545405e-01\\n2.33887285e-01 4.17286009e-02 2.09033161e-01 1.75459236e-01\\n6.57896549e-02 5.22310913e-01 -5.55800423e-02 -1.59081459e-01\\n-2.12825298e-01 2.26340666e-02 -2.12228030e-01 -1.30399451e-01\\n1.28516719e-01 -4.60697681e-01 -1.47388235e-01 3.98855448e-01\\n1.28584683e-01 -1.85337469e-01 -2.24879280e-01 2.00295970e-01\\n2.95178732e-03 -2.28929460e-01 -2.45843783e-01 -2.93837171e-02\\n2.75664061e-01 6.57641962e-02 2.95062721e-01 -4.09785092e-01\\n-4.07891683e-02 1.04561551e-02 -1.35437781e-02 4.34687287e-01\\n1.31916359e-01 -8.60692002e-03 -1.58321127e-01 -2.11187065e-01\\n4.18992668e-01 -1.60342500e-01 -1.04373552e-01 -4.44057547e-02\\n1.48072585e-01 -1.85886979e-01 -4.69280154e-01 8.08674544e-02\\n-2.00714096e-01 -1.47033080e-01 1.56165868e-01 4.47960123e-02\\n3.98036651e-02 1.20192535e-01 -5.49052715e-01 -2.34389722e-01\\n-3.28624845e-01 -4.41376343e-02 1.15211010e-01 -5.70016205e-01\\n1.55493505e-02 8.15795269e-03 -6.38714314e-01 1.96569309e-01\\n-2.46831536e-01 -4.55087684e-02 1.55861527e-01 1.41786739e-01\\n-4.19364989e-01 -6.18827343e-02 1.00808263e-01 2.71678746e-01\\n-3.90558630e-01 -3.26926380e-01 -6.28312826e-02 -1.05453587e+00\\n2.29835749e-01 -1.07707851e-01 -2.80444503e-01 2.65343562e-02\\n-2.40594968e-02 -7.19151497e-01 5.64527102e-02 -3.33742708e-01\\n-8.38625282e-02 9.29665193e-02 -2.90800959e-01 -3.91880780e-01\\n1.24277040e-01 -9.24262404e-02 -3.13667327e-01 4.52166200e-01\\n-4.91245717e-01 2.90124625e-01 -3.98732871e-02 9.69134346e-02\\n-7.86277950e-02 -3.67054850e-01 1.37411773e-01 -4.33616459e-01\\n-4.65432167e-01 -2.12991685e-01 -3.69023800e-01 -2.83506781e-01\\n6.37267232e-02 -3.57645780e-01 -7.93143287e-02 1.49083808e-01\\n2.66231418e-01 6.93375915e-02 -5.67990355e-02 -1.98315829e-01\\n5.03223762e-02 -4.86519575e-01 4.27958369e-02 -9.35251340e-02\\n-1.91907454e-02 -1.22224070e-01 2.18753368e-01 5.62345572e-02\\n1.48162648e-01 -3.73725444e-01 4.54626232e-01 -3.08522969e-01\\n-3.94377708e-01 -9.17724520e-02 4.11946364e-02 1.07083796e-02\\n2.10496694e-01 -6.59699619e-01 -2.93771774e-02 3.78252089e-01\\n1.77783608e-01 7.48921884e-03 1.41644970e-01 -6.53472096e-02\\n-3.11940163e-02 3.19561124e-01 -4.28473741e-01 7.72890523e-02\\n8.03155065e-01 1.04914188e-01 -9.26881097e-03 2.30272353e-01\\n1.10204071e-01 3.35492373e-01 5.15445471e-01 -1.35111455e-02\\n-8.65495503e-02 2.99768776e-01 5.77457845e-02 -6.36009276e-01\\n-1.93279043e-01 -1.25310393e-02 -1.19154349e-01 -3.08667332e-01\\n6.95102811e-01 3.49992901e-01 -4.15083408e-01 -2.33824492e-01\\n-9.59376693e-02 -1.38059989e-01 2.60134935e-01 -8.02251995e-02\\n2.13269778e-02 -1.74361482e-01 5.24038792e-01 1.20265998e-01\\n3.40502143e-01 5.41308582e-01 -1.41582504e-01 -3.37894022e-01\\n-1.25669673e-01 1.28656000e-01 6.10002922e-03 3.55155498e-01\\n-1.55080050e-01 2.16957033e-01 -2.66384110e-02 2.15285808e-01\\n-1.86379910e-01 8.16482529e-02 -1.73866432e-02 1.58651382e-01\\n1.77946299e-01 9.09013227e-02 4.73535925e-01 3.48686725e-01\\n3.07873636e-01 5.59899449e-01 2.56952941e-01 1.46173865e-01\\n4.97570693e-01 4.95077401e-01 4.91139591e-01 5.72649315e-02\\n2.02857777e-02 1.38471335e-01 1.60988525e-01 -2.30022985e-02\\n4.55447614e-01 3.73011321e-01 9.69769433e-02 9.09893811e-01\\n2.63892829e-01 2.91585386e-01 7.37418652e-01 -7.00027406e-01\\n-3.41046154e-01 1.42620400e-01 4.08385426e-01 -4.52853829e-01\\n-1.21834837e-02 1.15986437e-01 -2.04505742e-01 2.87938744e-01\\n-4.94186431e-01 -1.59595266e-01 -2.45441124e-02 1.03444837e-01\\n6.10486679e-02 -7.21836314e-02 -2.32636109e-01 -1.86584871e-02\\n-1.33059517e-01 -1.21303864e-01 -3.42725992e-01 -1.06091879e-01\\n-1.54547065e-01 -9.56852883e-02 -6.15939163e-02 -1.54421628e-01\\n-1.86023526e-02 -4.55810010e-01 -1.64407387e-01 2.58800052e-02\\n3.81081372e-01 7.22546177e-03 5.10656349e-02 -1.49288088e-01\\n2.68291146e-01 3.61838728e-01 6.41104460e-01 -7.41466507e-02\\n1.28239766e-01 -3.31496716e-01 -1.62876248e-01 1.26637995e-01\\n1.22773126e-01 7.49756917e-02 7.29571506e-02 3.56549025e-01\\n-3.29781264e-01 -9.12872702e-02 1.50337309e-01 4.64791358e-01\\n-4.04272437e-01 -5.86483777e-02 -7.41252825e-02 2.06489816e-01\\n1.07363746e-01 1.22886963e-01 -2.73597389e-01 1.29549608e-01\\n-2.65247673e-01 -5.01372039e-01 4.16632324e-01 -1.39432535e-01\\n-2.59529743e-02 5.72796352e-02 3.19551617e-01 2.14657202e-01\\n-1.99605718e-01 -4.39755581e-02 2.79396344e-02 1.99439138e-01\\n6.27974868e-02 3.43864381e-01 -2.23075032e-01 -1.38274357e-01\\n-2.89120644e-01 1.91538960e-01 -1.01570398e-01 5.28164692e-02\\n-7.71433935e-02 3.91924173e-01 8.37674290e-02 7.61969537e-02\\n3.88105720e-01 7.08745494e-02 -2.46042758e-01 -2.11832866e-01\\n-2.45644569e-01 -2.33632281e-01 -1.56008741e-02 -6.01415820e-02\\n1.88023865e-01 -3.92546386e-01 -1.06564753e-01 -1.59330621e-01\\n-8.31586793e-02 -3.26125592e-01 -9.23803002e-02 4.95209694e-02]]',\n", + " 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customer-specific solutions based on EmberJS, HTML, CSS Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of all web technologies (Javascript, HTML, CSS, REST, etc.) Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Know-how in User Interaction and User Experience Design Willingness to take on responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Hosting\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"User Experience Design (UX)\", \"Functional Programming\", \"Experience Design\", \"Additives\", \"Rust (Programming Language)\", \"User Experience\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English']\"],\n", + " ['145',\n", + " 'cloud bi and data warehouse specialist',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-2.94456601e-01 2.48325408e-01 4.84606385e-01 1.44675300e-01\\n6.30575418e-01 -9.66933519e-02 -7.38720000e-02 1.34106100e-01\\n-4.31993529e-02 -3.80754590e-01 -1.57507971e-01 -1.78477168e-01\\n-3.20349187e-02 5.63224629e-02 9.40698311e-02 3.59987199e-01\\n2.89046407e-01 7.13369474e-02 -5.23303300e-02 2.69134611e-01\\n-1.37218833e-02 -1.50290489e-01 -5.17377481e-02 6.82634473e-01\\n3.94660652e-01 -1.12333372e-02 -4.08147909e-02 3.39767449e-02\\n-2.30431169e-01 -2.32317239e-01 4.26721752e-01 9.46487859e-03\\n-2.21591294e-01 -3.54394317e-01 7.06284419e-02 1.38953894e-01\\n-2.79211313e-01 -6.63644224e-02 -1.56360179e-01 5.59348091e-02\\n-4.64337826e-01 -1.28819913e-01 9.90000293e-02 -1.74332224e-02\\n-3.15286309e-01 -3.27180266e-01 9.41369496e-03 -1.38765678e-01\\n-3.30512822e-02 4.59450670e-02 -4.97947127e-01 3.65237653e-01\\n-3.88124436e-01 -1.82546124e-01 3.19714576e-01 7.43747115e-01\\n1.01209357e-01 -5.55799127e-01 -3.50036263e-01 -3.20983469e-01\\n5.03872260e-02 -8.80709738e-02 1.30930483e-01 -3.20293546e-01\\n3.90409052e-01 -2.44937167e-02 -6.80421665e-03 2.50290126e-01\\n-6.92720294e-01 -1.96003430e-02 -4.05999303e-01 6.69496283e-02\\n-2.56989509e-01 2.61742752e-02 -4.98316467e-01 -6.42776340e-02\\n-9.88724232e-02 4.12648231e-01 -6.13628104e-02 1.37926161e-01\\n-2.52504557e-01 2.31436089e-01 -2.33917832e-01 1.85494736e-01\\n2.90195763e-01 1.55339301e-01 3.89562488e-01 3.17629218e-01\\n-3.48300695e-01 5.66295862e-01 3.14937890e-01 -2.92322218e-01\\n2.82441318e-01 1.69063613e-01 3.47751409e-01 1.72949955e-01\\n1.42155886e-01 1.73264742e-01 -1.83166131e-01 2.34904364e-01\\n2.91860700e-01 -1.69900045e-01 -1.14408508e-02 -1.64061949e-01\\n-9.83618200e-03 -1.21301353e-01 3.63234244e-02 1.48171380e-01\\n-4.51698840e-01 3.69412452e-01 3.92975844e-02 -2.62675583e-01\\n-6.50725067e-02 -4.15342212e-01 4.68479916e-02 4.52349298e-02\\n-5.35338745e-03 2.40349025e-01 2.62831897e-01 1.02917135e-01\\n2.96008468e-01 8.47877376e-03 1.34815231e-01 7.73816705e-01\\n1.55418925e-02 2.44230665e-02 -2.22126707e-01 3.47933412e-01\\n1.12205625e-01 -2.04293251e-01 1.40859649e-01 1.75966233e-01\\n-1.01404361e-01 -1.58585668e-01 -3.03288221e-01 3.42481911e-01\\n-9.85604599e-02 -7.74083808e-02 -2.36967504e-01 2.26930767e-01\\n-1.72496557e-01 -5.23870826e-01 6.12761140e-01 -8.97391066e-02\\n1.13145292e-01 -7.58891404e-02 1.30506143e-01 -1.03224427e-01\\n-1.30781442e-01 2.62694508e-01 1.28463715e-01 2.34109819e-01\\n-2.65197635e-01 -2.62552112e-01 -1.12032756e-01 2.97461689e-01\\n-2.78420597e-01 1.30209088e-01 -2.64673561e-01 -1.49742201e-01\\n2.69057959e-01 1.81268930e-01 -4.09318238e-01 1.02064975e-01\\n-1.17628664e-01 -1.99191749e-01 -1.10227495e-01 3.80161405e-01\\n-8.89033675e-02 2.58585215e-01 9.64579582e-02 -1.38277873e-01\\n4.61921483e-01 2.20902652e-01 3.41443211e-01 7.74658099e-03\\n3.11140776e-01 -5.94998896e-02 1.65977135e-01 4.08669077e-02\\n-6.65361762e-01 4.11846220e-01 -3.39032412e-02 -2.21361414e-01\\n1.49531662e-01 6.80991635e-02 4.67673957e-01 -3.18426460e-01\\n-7.63108134e-02 -2.21786678e-01 -3.75582218e-01 -4.53994870e-01\\n-1.88959152e-01 -8.60249773e-02 3.06719184e-01 -4.43890452e-01\\n-3.65283825e-02 2.26670563e-01 -5.76359570e-01 -2.40739197e-01\\n2.97878385e-01 2.23707318e-01 1.29622877e-01 1.22349508e-01\\n-1.55047737e-02 -5.00079691e-01 8.26865584e-02 -4.35134113e-01\\n-3.65287960e-01 2.89627556e-02 -2.89738566e-01 -2.47918703e-02\\n7.77775794e-03 -1.07729025e-02 5.68401739e-02 5.87757118e-02\\n-3.57727677e-01 -1.92392152e-02 1.36188835e-01 2.32384466e-02\\n3.89966965e-01 3.39486338e-02 -4.34811085e-01 5.34210622e-01\\n-2.10796595e-01 3.91614944e-01 1.94993600e-01 -9.50507998e-01\\n6.40812516e-01 1.95426896e-01 -4.50216010e-02 -3.41325849e-01\\n4.44963098e-01 -4.25216943e-01 -5.20462170e-03 3.12038437e-02\\n-2.11603403e-01 -1.51304200e-01 2.46093258e-01 -1.86756134e-01\\n-4.00261611e-01 6.56291962e-01 -3.17994431e-02 7.73108974e-02\\n2.45013759e-01 -2.55990237e-01 -2.45398015e-01 -4.88037318e-02\\n-2.21447036e-01 -1.49521738e-01 -5.78557491e-01 1.09255001e-01\\n-5.35336770e-02 -5.47171891e-01 -1.22840390e-01 -4.95657444e-01\\n-1.74710542e-01 -3.44119042e-01 -2.50823349e-01 1.13149315e-01\\n1.41759813e-01 1.27258509e-01 -1.18396193e-01 -7.03995824e-02\\n-4.36423123e-02 -6.10437632e-01 -1.62004173e-01 5.56988865e-02\\n3.44814509e-01 2.81324387e-01 1.29175276e-01 -1.03621371e-01\\n7.14616776e-02 5.12507677e-01 -3.51269782e-01 -2.74730563e-01\\n1.95104629e-01 1.07703879e-01 -5.68498746e-02 -9.63004827e-02\\n2.06701130e-01 2.78652608e-01 -1.65631741e-01 -2.03819722e-02\\n3.89728136e-03 -2.21241079e-02 4.12939996e-01 -8.70399848e-02\\n-2.44848698e-01 -2.12935418e-01 -2.84403712e-02 2.82905638e-01\\n-4.86345053e-01 -2.68255860e-01 5.80669761e-01 2.16072917e-01\\n-1.00779682e-02 2.87891418e-01 1.50749743e-01 4.17280272e-02\\n-2.81666994e-01 -2.65512496e-01 2.82907546e-01 1.03553414e-01\\n1.36321127e-01 8.42825472e-02 -1.26609504e-01 -5.26513815e-01\\n-3.39327526e+00 -1.50292516e-01 3.62325720e-02 -1.92042649e-01\\n1.38392940e-01 -1.81347594e-01 2.15763241e-01 3.48792635e-02\\n-2.41526321e-01 3.65372188e-02 -2.23948821e-01 -1.45000458e-01\\n-1.51177905e-02 3.14476967e-01 7.67854005e-02 2.11993724e-01\\n8.86006951e-02 -2.88194001e-01 9.07110944e-02 3.81492943e-01\\n-1.59434348e-01 -8.43709052e-01 8.82793516e-02 -1.11684442e-01\\n1.36998489e-01 7.71812201e-02 -5.94315588e-01 -5.60590252e-03\\n-3.76335800e-01 -1.88278705e-01 8.30260217e-02 -2.08591878e-01\\n-2.69140273e-01 2.03400493e-01 1.29052937e-01 -1.46043390e-01\\n-9.40586347e-03 -2.17581853e-01 -7.73055851e-02 -5.98796427e-01\\n8.75477493e-02 -5.89399695e-01 9.54345390e-02 4.81922142e-02\\n6.42069280e-01 -2.34651521e-01 2.78422236e-01 1.48738325e-01\\n1.67575642e-01 1.53412223e-01 1.61667243e-01 1.04647204e-02\\n-2.56857514e-01 -3.52027684e-01 -3.98449339e-02 -1.87060580e-01\\n7.47249365e-01 3.30611259e-01 -1.64734006e-01 7.00008646e-02\\n1.84890300e-01 -4.22895342e-01 -4.12562191e-01 -3.95471185e-01\\n-2.56511718e-01 -3.00600380e-03 -7.83981562e-01 -3.73882055e-01\\n-1.94832832e-01 -1.55848280e-01 -1.12747893e-01 6.87511444e-01\\n-3.06581676e-01 -3.18843663e-01 -7.38033429e-02 -6.02983057e-01\\n3.75579983e-01 -2.17352048e-01 2.74661835e-03 -3.31739366e-01\\n-2.63680160e-01 -4.35816675e-01 2.10163265e-01 5.13261408e-02\\n-1.66691691e-01 -3.47792953e-02 8.06096196e-02 -1.00692421e-01\\n-3.61551762e-01 -4.95462239e-01 3.36409837e-01 9.46225673e-02\\n3.54638457e-01 5.96623719e-02 4.05088872e-01 -6.41696528e-02\\n3.68525982e-01 -2.49275938e-03 -8.33104849e-02 -4.22168672e-01\\n-2.12540030e-02 3.86307351e-02 5.03316045e-01 -1.74712315e-01\\n4.70771715e-02 9.67440158e-02 -1.80077270e-01 -9.07273144e-02\\n4.13953125e-01 -6.67332858e-02 1.29753903e-01 -1.05602503e-01\\n2.38430709e-01 -4.56395268e-01 -2.37036794e-01 1.65760398e-01\\n2.13423781e-02 7.36270189e-01 3.56953889e-02 -3.06479514e-01\\n-1.55991480e-01 4.42644179e-01 8.01946037e-03 4.25950997e-02\\n-2.73337245e-01 6.05188832e-02 -2.64612526e-01 3.66736412e-01\\n6.88102916e-02 -1.67750403e-01 -3.30837846e-01 -2.64469404e-02\\n-8.24493542e-02 2.19712824e-01 2.54464298e-01 3.53205949e-02\\n-1.50629729e-02 -1.81070775e-01 -8.77439976e-02 1.56211659e-01\\n2.73749501e-01 4.71746355e-01 2.23312706e-01 -3.33938658e-01\\n-1.51535124e-03 2.87248582e-01 -3.06464106e-01 3.93607795e-01\\n-2.53719300e-01 2.04404131e-01 -5.43246031e-01 -2.29711860e-01\\n-2.62219727e-01 -3.94261777e-01 9.22262296e-02 3.86951745e-01\\n1.89164028e-01 -1.48763597e-01 1.18467912e-01 -4.59082425e-01\\n2.38246202e-01 8.40461329e-02 2.04578996e-01 1.16616234e-01\\n-1.41610783e-02 7.16277361e-01 -1.05455108e-02 -2.02121451e-01\\n-1.24213815e-01 7.31128529e-02 -2.33276069e-01 -2.55476892e-01\\n4.56899256e-02 -5.62105238e-01 -1.61327407e-01 3.88908267e-01\\n2.45255828e-01 -1.20687716e-01 -1.38321489e-01 3.97101521e-01\\n3.90420817e-02 -3.01579177e-01 -2.88960606e-01 -1.74910463e-02\\n2.33944237e-01 1.89798683e-01 2.33934194e-01 -4.60302949e-01\\n-2.05722041e-02 9.02691483e-03 1.50269493e-01 4.20739353e-01\\n5.08563370e-02 1.51011869e-01 -2.79967021e-02 -9.95412767e-02\\n4.53924567e-01 2.85081323e-02 -1.70697093e-01 -1.71528608e-02\\n7.65945315e-02 -2.40998402e-01 -4.28655744e-01 1.08503632e-01\\n-9.36032012e-02 -2.36684576e-01 3.80872041e-02 1.20046511e-01\\n6.61455318e-02 -5.93762994e-02 -5.32872736e-01 -1.81030214e-01\\n-3.60207736e-01 1.02999046e-01 3.12972814e-04 -5.77941418e-01\\n1.26363561e-02 -5.09075746e-02 -5.46884060e-01 2.11529955e-01\\n1.01565942e-02 -1.14195216e-02 2.35447630e-01 1.09671287e-01\\n-1.16823696e-01 -8.98106769e-02 1.64494187e-01 1.89219713e-01\\n-2.87388355e-01 -2.38597095e-01 -5.57237044e-02 -9.99749541e-01\\n9.55764800e-02 8.17667693e-02 -1.71285987e-01 3.01404446e-02\\n1.07278191e-02 -7.37914801e-01 1.39817327e-01 -3.47168446e-01\\n-1.49594367e-01 -2.54796930e-02 -2.17392191e-01 -3.73441786e-01\\n6.55198768e-02 -3.29482369e-02 -2.67293245e-01 3.49238217e-01\\n-3.66197944e-01 3.40663075e-01 -4.50974964e-02 2.01004408e-02\\n9.27205756e-02 -2.21489295e-01 1.81136861e-01 -1.12962678e-01\\n-4.42471981e-01 -2.51401871e-01 -3.08267742e-01 -2.53633678e-01\\n-2.21125893e-02 -3.67434502e-01 -1.23770900e-01 3.94412614e-02\\n4.45771396e-01 1.43392310e-01 -1.87875271e-01 -1.16049357e-01\\n-2.74144113e-02 -4.77848291e-01 1.38263285e-01 -1.64959133e-01\\n3.70795056e-02 -2.11060777e-01 2.80568957e-01 -6.54495358e-02\\n2.63695240e-01 -3.42901349e-01 6.10882401e-01 -2.41967693e-01\\n-4.29100722e-01 -1.48699805e-01 9.58679244e-02 1.77848786e-01\\n3.44269365e-01 -3.43600005e-01 6.51866123e-02 2.84224123e-01\\n8.71548504e-02 2.02386100e-02 2.67932177e-01 -2.11893380e-01\\n-1.35363072e-01 2.35245213e-01 -5.13063669e-01 1.48185089e-01\\n8.29711676e-01 2.20413655e-01 2.21491590e-01 1.77120671e-01\\n1.23312965e-01 3.59576344e-01 4.08321738e-01 -6.92100599e-02\\n-4.19813097e-02 3.40069830e-01 1.35639489e-01 -5.50942063e-01\\n-1.37065917e-01 -1.49925217e-01 -5.33976033e-02 -2.98083067e-01\\n6.56088829e-01 3.22136045e-01 -3.94684285e-01 -3.33503366e-01\\n-1.96384579e-01 -1.86412096e-01 4.01673675e-01 5.66398911e-03\\n-1.46571666e-01 -9.02745500e-02 4.06370163e-01 -3.21017280e-02\\n3.62719357e-01 5.07876277e-01 -1.69476703e-01 -2.88130701e-01\\n-6.33474588e-02 2.60850579e-01 1.71289295e-02 5.32063127e-01\\n-1.28504187e-01 1.84178144e-01 5.98905273e-02 1.53362095e-01\\n-1.79759219e-01 -2.22435854e-02 1.97355300e-01 1.35769308e-01\\n1.77023441e-01 1.85824305e-01 4.91914928e-01 4.51744378e-01\\n1.67134315e-01 3.68182361e-01 3.32414985e-01 -5.02880365e-02\\n3.76617372e-01 6.37455285e-01 3.32440674e-01 8.64446983e-02\\n3.05770375e-02 3.68129052e-02 3.83531414e-02 -2.39207949e-02\\n2.35514849e-01 4.19595778e-01 1.15671478e-01 8.14598680e-01\\n2.54569739e-01 3.90959740e-01 6.95160985e-01 -6.84908450e-01\\n-4.00667071e-01 -1.87409986e-02 4.80772972e-01 -3.93209159e-01\\n1.47944435e-01 1.62374109e-01 -1.77399591e-01 3.46289277e-01\\n-5.33585489e-01 -2.05511525e-01 3.20605040e-02 -7.02608302e-02\\n9.03806835e-02 -1.19226202e-01 -6.53574541e-02 8.21389556e-02\\n-6.98537380e-02 -1.87525392e-01 -2.07739860e-01 -1.95940003e-01\\n-2.87689507e-01 1.23787194e-01 9.41040814e-02 -4.03273441e-02\\n3.91049311e-02 -2.45344371e-01 -1.41246513e-01 7.74136372e-03\\n4.34300631e-01 -9.20285881e-02 -1.38275161e-01 -1.50976107e-01\\n1.51041716e-01 2.42315859e-01 6.33151054e-01 -3.80161032e-02\\n1.54961273e-01 -1.18170179e-01 -1.57036677e-01 4.37915660e-02\\n1.39799505e-01 9.70572531e-02 1.39814332e-01 4.29721117e-01\\n-3.15538436e-01 -2.32771307e-01 1.13981515e-01 2.28204206e-01\\n-3.92206669e-01 -1.17909670e-01 -1.23574615e-01 1.37190670e-01\\n-5.93758002e-03 2.19976395e-01 -2.25787595e-01 -8.01794901e-02\\n-1.92397475e-01 -5.77941179e-01 3.31095576e-01 -2.26138592e-01\\n-2.32834786e-01 -3.07113156e-02 3.41755867e-01 2.66180575e-01\\n-1.36216134e-01 4.48379628e-02 -6.68076426e-02 1.87626749e-01\\n1.64654795e-02 3.57991278e-01 -1.76944524e-01 -1.47745281e-01\\n-3.46171021e-01 2.73418307e-01 1.50377266e-02 2.00730562e-01\\n-4.35493886e-03 3.80385131e-01 -8.43160674e-02 8.10263380e-02\\n2.24465311e-01 -6.25960231e-02 -3.17475826e-01 -2.43184552e-01\\n-2.79021829e-01 -7.09466264e-02 8.55661929e-02 -1.69684842e-01\\n2.68610001e-01 -4.29979682e-01 -1.55944452e-01 -2.83360839e-01\\n-1.70483828e-01 -4.22639132e-01 -1.20198593e-01 -1.72344632e-02]]',\n", + " \"If you’re looking for a position that brings personal growth and fulfillment then Vicara is the right place for you. For you to thrive in this environment; you should be dynamic, willing to collaborate with our clients and provide solutions based on the understanding of customer needs. We are looking to fill this position urgently and this position is only open to Swiss and EU citizens or with a valid work permit. Our requirement is for a Cloud Business Intelligence and Data Warehouse Expert with strong analytical and problem-solving skills, along with interpersonal skills to work across the organization and with external partners to drive forward projects and recommendations. Regional travel maybe required for this position. Responsibilities: Ability to provide innovative, performance ready and integrated cloud based BI technical solutions for business problems Understand business requirements and owning technical design and solution and migrating traditional BI setups to the cloud (such as Azure) Responsible for various project requirements, from high level business requirements to detailed functional and non-functional specifications. The individual will also be assisting in mock-up / design of solution, and managing the requirements for any changes and conflicting prioritization The individual will have to serve as the Lead Designer of all ETL activities for projects and work closely with project Business Analyst and Data Modeler to ensure that the end to end designs meet the business and data requirements Coordinating with teams across different functions/platforms and streams for multiple projects Own the roadmap to deliver scalable and robust data infrastructure and BI capabilities across all operations Maintain a strong understanding of evolving data warehouse and provide technical guidance across all operations Mandatory Qualifications and Skills: Master's degree in Computer Science or Information Science, or related field 5+ years’ experience in a data architecture role as leading senior technical staff in demanding customer contexts 5+ years in the areas of Data Quality, Data Governance, data integration (ETL, ELT) and Data Security Experience with Enterprise workload migration to one or more Cloud platforms Experience with Azure, Azure SQL Data Warehouse, BI tools on Azure Advanced knowledge of data architecture principles, methods, and techniques Demonstrated awareness of new systems technologies and how they could be leveraged to benefit customers and new business strategies Experience with BI concepts (i.e metadata and master data management, data standardization, data pipeline, and integration of data silos) and data warehousing methodologies (i.e dimension models, data marts, and normalized repositories) Expert knowledge of OLAP, modeling tools (such as Erwin and/or Rational Rose), business intelligence tools and ETL tools (Informatica, Data Stage, Data Manager, SSIS, or other) Excellent Data Profiling abilities Good knowledge in Reporting tools Expert knowledge of SQL and related query and procedure languages Experience in managing data warehouse project and lifecycle initiatives Strong verbal & written communication skills in English Excellent interpersonal and presentation skills with a proven ability to effectively communicate in both written and verbal formats across various levels of management and peer Able to work with divergent and virtual team with a proven ability to influence Ability to work with resources across the region Action orientated with ability to work quickly and efficiently in a fast-paced environment Possess the qualities, business acumen and discipline to ensure business and systems architecture alignment Preferred Skills: Subject matter expertise in Financial Services Experience with Big Data and NoSQL technologies\",\n", + " '[\"Collaboration\", \"Coordinating\", \"Management\", \"Problem Solving\", \"Communications\", \"Operations\", \"Working Quickly\", \"Virtual Teams\", \"Business Acumen\", \"Integration\", \"Presentations\", \"Innovation\", \"Prioritization\", \"Positivity\", \"Written Communication\", \"Action Oriented\"]',\n", + " '[\"Data Architecture\", \"Data Warehouse Systems\", \"Tooling\", \"NoSQL\", \"Micro Systems Technologies\", \"Business Intelligence Tools\", \"Computer Science\", \"Analytics\", \"Metadata\", \"Data Security\", \"Azure Data Factory\", \"Data Management\", \"Staging\", \"Business Strategies\", \"Data Integration\", \"Financial Services\", \"Data Warehousing\", \"Activism\", \"Apex Data Loader\", \"Maintainability\", \"E (Programming Language)\", \"Azure Web Apps\", \"Systems Architecture\", \"Data Governance\", \"Cloud Platform System\", \"Data Mart\", \"Extract Transform Load (ETL)\", \"Functional Specification\", \"Data Warehouse Appliance\", \"Toad Data Modeler\", \"Business Intelligence\", \"Mock Ups\", \"Patentable Subject Matter\", \"Business Requirements\", \"Information Sciences\", \"SQL Server Integration Services (SSIS)\", \"Front End Design\", \"Logical Data Models\", \"Personalization\", \"Scalability\", \"Big Data\", \"High-Level Architecture\", \"Clinical Data Warehouse\", \"Clinical Data Management\", \"Data Infrastructure\", \"Technical Solution Design\", \"Erwin (Data Modeling Software)\", \"Dimensioning\", \"Language Experience Approach\", \"Resourcing\", \"Amazon Data Pipeline\", \"Informatica\", \"SQL (Programming Language)\", \"Profiling (Computer Programming)\", \"Reporting Tools\"]',\n", + " \"['English', 'Moldavian']\"],\n", + " ['86',\n", + " 'full stack web application engineer',\n", + " 'Zürich',\n", + " 'Security Services',\n", + " 'www.open-systems.com',\n", + " '[[-3.17957133e-01 3.46389115e-01 3.89491558e-01 -3.21595445e-02\\n5.47099888e-01 -2.52057105e-01 1.19775601e-01 4.27356750e-01\\n-2.69577876e-02 -4.45008129e-01 -1.14103749e-01 -2.02499047e-01\\n-8.60764459e-02 6.90063164e-02 1.94518670e-01 3.55485588e-01\\n3.41190726e-01 1.12909868e-01 -1.41569227e-01 4.89856005e-01\\n4.27033752e-02 -1.30995095e-01 4.85031717e-02 7.52265155e-01\\n4.26227689e-01 -3.18181980e-03 -8.98265168e-02 2.08703224e-02\\n-2.44165137e-01 -2.73249954e-01 3.26298892e-01 -1.04821555e-01\\n-7.59880915e-02 -4.93569523e-01 7.06598237e-02 6.10551722e-02\\n-2.48633206e-01 -9.26238373e-02 -1.26214534e-01 2.20894963e-01\\n-5.46437979e-01 -2.03694150e-01 9.57597792e-02 -4.09916788e-02\\n-1.17594033e-01 -3.00222963e-01 1.58938259e-01 -7.88319390e-03\\n1.69749066e-01 8.69346112e-02 -5.74281931e-01 2.77996898e-01\\n-2.53192782e-01 -2.76665032e-01 4.04574513e-01 5.27458131e-01\\n-1.04940504e-01 -4.91359204e-01 -4.40244555e-01 -3.21139395e-01\\n4.49523218e-02 -3.41433920e-02 1.06954977e-01 -4.54942495e-01\\n2.10506827e-01 1.47364080e-01 9.09315422e-02 4.18028682e-01\\n-7.96747327e-01 -1.23051666e-01 -2.11931065e-01 4.83873719e-03\\n-3.40003461e-01 -1.12704732e-01 -2.32655272e-01 -7.71910250e-02\\n-1.51445717e-01 3.14400613e-01 -8.78645480e-02 8.16881210e-02\\n-2.42152691e-01 4.06859607e-01 -1.96380913e-01 3.39642167e-01\\n2.24399850e-01 1.33446842e-01 1.50234178e-01 3.55518043e-01\\n-3.76299322e-01 5.47876894e-01 2.43909862e-02 -1.90546989e-01\\n2.35892311e-01 2.05133080e-01 4.93840456e-01 -1.20741732e-01\\n2.72940546e-01 1.05226330e-01 -3.37884486e-01 3.16735029e-01\\n2.26761714e-01 -2.65390307e-01 2.74141170e-02 -1.15541853e-01\\n1.60161871e-02 1.23560103e-02 7.36827776e-02 1.89412162e-01\\n-2.96290547e-01 4.35608566e-01 2.17686459e-01 -2.42853463e-01\\n-1.70292541e-01 -4.95200157e-01 -6.64721355e-02 9.77687687e-02\\n1.03903778e-01 4.13565561e-02 1.20665722e-01 4.76577319e-02\\n2.13716090e-01 7.07028359e-02 1.28067777e-01 7.54609525e-01\\n-3.33775617e-02 -4.79815081e-02 -1.86167181e-01 2.25350335e-01\\n9.84847844e-02 -3.47499192e-01 1.01765737e-01 2.47770607e-01\\n1.35233268e-01 -1.61645174e-01 -2.70701975e-01 4.28736508e-01\\n-4.04644310e-02 -1.50215998e-01 -3.39992046e-01 3.33525509e-01\\n-2.42999941e-02 -3.92903835e-01 6.74369037e-01 1.46597683e-01\\n2.44624674e-01 4.66031842e-02 1.14331000e-01 -1.14503413e-01\\n-1.13514826e-01 2.12754190e-01 3.90690453e-02 1.81982353e-01\\n-3.00874203e-01 -2.41636962e-01 -2.58203894e-01 1.78066298e-01\\n-3.48155260e-01 2.64073014e-01 -4.20289263e-02 -1.06782876e-01\\n3.09588611e-01 5.90845523e-03 -3.68086725e-01 3.67620319e-01\\n-1.05782501e-01 1.15263246e-01 -5.34173846e-02 3.71192694e-01\\n-1.09338857e-01 3.00737083e-01 -2.18968000e-02 7.64149101e-03\\n5.54143012e-01 1.35591924e-01 1.07178427e-01 -9.01777484e-03\\n3.05944234e-01 1.64379794e-02 7.41080418e-02 2.71832701e-02\\n-7.85640955e-01 1.17021069e-01 -4.26308140e-02 -2.20000520e-01\\n9.34198424e-02 -2.02861633e-02 2.75185525e-01 -3.19841266e-01\\n-9.91580412e-02 -1.09273158e-01 -4.28054124e-01 -2.76276737e-01\\n-1.65073320e-01 -9.06704646e-03 3.69913608e-01 -4.40424442e-01\\n-1.96099818e-01 1.81671157e-01 -5.52416444e-01 -3.07945460e-02\\n2.31437281e-01 1.81865767e-01 1.43393546e-01 7.64940903e-02\\n-1.46329716e-01 -5.71325958e-01 -5.29930890e-02 -4.36371535e-01\\n-3.22329074e-01 1.02476284e-01 -3.54254812e-01 1.97251499e-01\\n7.99020454e-02 3.46084908e-02 -6.43852875e-02 7.43075758e-02\\n-1.01185657e-01 -4.43144664e-02 7.26245195e-02 1.54840918e-02\\n2.52201259e-01 4.69018854e-02 -3.78696471e-01 4.77530539e-01\\n-9.12952051e-02 5.21065533e-01 5.06401509e-02 -7.02111542e-01\\n6.05801105e-01 4.07491505e-01 -7.68442750e-02 -4.45064068e-01\\n5.72859585e-01 -2.93170631e-01 -6.84666485e-02 1.18993104e-01\\n-4.61221486e-01 -3.32666427e-01 2.01899692e-01 -2.62311399e-01\\n-2.69756168e-01 4.33777541e-01 4.47497107e-02 1.28752500e-01\\n3.09070170e-01 -2.55755067e-01 -1.89371314e-02 1.10282086e-01\\n2.56098453e-02 -1.69690162e-01 -4.68102574e-01 -3.34036872e-02\\n-1.05558939e-01 -5.02024770e-01 -2.28240520e-01 -3.52649599e-01\\n-2.10032925e-01 -2.88501769e-01 -2.20751137e-01 2.11570054e-01\\n3.58125597e-01 1.27706051e-01 -3.27368937e-02 1.53566003e-01\\n-1.69241130e-01 -7.30481029e-01 4.84158099e-02 1.21620789e-01\\n3.93260062e-01 1.35030329e-01 7.89637640e-02 -1.39907718e-01\\n4.03648354e-02 6.60474122e-01 -2.35167861e-01 -1.80679515e-01\\n1.87646702e-01 1.55477181e-01 -2.75418647e-02 -1.48216262e-01\\n1.15306802e-01 3.75697494e-01 -3.03794801e-01 3.99204195e-02\\n-6.01590239e-02 -9.78769436e-02 4.65614825e-01 -1.12096399e-01\\n-3.48604530e-01 -1.94803149e-01 -3.80763076e-02 1.13495745e-01\\n-5.19424558e-01 -1.92997321e-01 5.56229889e-01 1.84489548e-01\\n1.76611036e-01 1.79377154e-01 2.69371003e-01 -5.38812615e-02\\n-1.92319259e-01 -4.49233204e-01 1.52706459e-01 1.85660064e-01\\n3.87645885e-02 1.49512947e-01 -1.10662237e-01 -6.07183337e-01\\n-3.13286400e+00 -1.14501432e-01 1.86877415e-01 -2.77484596e-01\\n1.41552925e-01 3.03500071e-02 9.89959165e-02 -9.19869691e-02\\n-2.32641295e-01 -2.02264069e-04 -2.08785906e-01 -1.63579240e-01\\n2.25899354e-01 2.19554275e-01 6.82780892e-02 1.44386515e-01\\n2.50501931e-01 -3.54680568e-01 -7.91747048e-02 3.53798985e-01\\n-2.09628493e-01 -6.58907890e-01 1.65987730e-01 -1.23932049e-01\\n2.65876293e-01 3.29649925e-01 -3.39721620e-01 -1.53539389e-01\\n-1.12494364e-01 -1.77220985e-01 1.70867324e-01 -2.61521429e-01\\n-1.54491186e-01 2.21460700e-01 2.02100933e-01 -6.65310472e-02\\n1.61021203e-01 -3.54507089e-01 -2.28864610e-01 -4.85336155e-01\\n2.00379089e-01 -5.86918950e-01 -8.24745521e-02 -1.90911263e-01\\n6.94261730e-01 -1.94824278e-01 1.19847812e-01 6.07037507e-02\\n1.37646064e-01 2.34228656e-01 4.71794605e-02 9.07998309e-02\\n-1.04215816e-01 -3.03033203e-01 1.19026634e-03 -1.60643101e-01\\n5.68521082e-01 3.81689638e-01 -1.87572062e-01 -1.93162709e-01\\n1.54592827e-01 -3.23764056e-01 -3.34773690e-01 -1.68628871e-01\\n-4.69333120e-02 -2.53888488e-01 -7.32491434e-01 -3.33992243e-01\\n-1.54034451e-01 -1.60925210e-01 -1.10497199e-01 7.51931727e-01\\n-3.79072875e-01 -3.37486833e-01 -9.05068964e-03 -6.13309205e-01\\n2.02447772e-01 -2.41526768e-01 -1.35589652e-02 -2.76897520e-01\\n-2.04679877e-01 -4.70768780e-01 2.75579141e-03 7.46099651e-02\\n-7.73346275e-02 -2.33702704e-01 1.10456750e-01 -9.95911732e-02\\n-2.12389037e-01 -5.48683405e-01 4.08601940e-01 1.95013434e-01\\n2.26209521e-01 1.32945120e-01 2.82616109e-01 -9.96729136e-02\\n3.22639108e-01 -6.87282532e-02 -5.49646765e-02 -3.37978899e-01\\n1.62868485e-01 -1.87516194e-02 4.86517251e-01 -2.40476042e-01\\n-5.25436476e-02 2.78704077e-01 -2.48368323e-01 -1.22600950e-01\\n3.76673907e-01 -1.46528380e-02 -3.22154677e-03 -1.90073922e-01\\n3.27841878e-01 -4.24081594e-01 -1.61813736e-01 1.64856791e-01\\n9.25865248e-02 6.25278652e-01 1.81071293e-02 -4.38238144e-01\\n-1.64067969e-01 4.84205157e-01 8.74420181e-02 1.19034842e-01\\n-1.66575283e-01 1.06102586e-01 -1.69412151e-01 1.84004202e-01\\n1.41489848e-01 -1.84998080e-01 -2.53216773e-01 -7.63335004e-02\\n-1.14709005e-01 3.59787464e-01 2.77822167e-01 1.42149165e-01\\n-5.74641638e-02 -5.22582889e-01 -1.23194441e-01 1.99648932e-01\\n1.24138914e-01 4.82731998e-01 2.92330747e-03 -2.09343746e-01\\n-8.60012770e-02 4.03038114e-01 -1.07682832e-01 1.96464971e-01\\n-2.66828775e-01 1.09435424e-01 -5.08722842e-01 -2.24511251e-01\\n-3.19141299e-01 -3.28222126e-01 3.56741622e-02 3.48222464e-01\\n1.85456514e-01 -8.73688981e-03 2.66966093e-02 -3.44979525e-01\\n2.54003346e-01 1.94488287e-01 1.06250808e-01 1.61319092e-01\\n-5.43124117e-02 4.48600531e-01 3.42440605e-02 -2.58526772e-01\\n-1.44315124e-01 -2.37494670e-02 -2.26721421e-01 -1.31833866e-01\\n1.33627787e-01 -5.76189935e-01 -1.45383716e-01 3.22851747e-01\\n6.84645995e-02 -2.83004224e-01 -1.33953989e-01 2.10355148e-01\\n2.06986605e-03 -2.95229852e-01 -2.95636714e-01 2.90269870e-02\\n2.89142996e-01 2.67953780e-02 3.43758136e-01 -3.94800007e-01\\n-7.77711421e-02 3.00285202e-02 -5.75258024e-02 3.75425071e-01\\n-7.86335394e-02 3.03283446e-02 -2.51882166e-01 -1.72195703e-01\\n4.29914951e-01 -7.52227604e-02 -1.11945435e-01 7.81935230e-02\\n9.73584801e-02 -1.50054157e-01 -4.91888344e-01 1.19270407e-01\\n-1.38712302e-01 -7.83049166e-02 3.04556955e-02 6.15339205e-02\\n7.04397559e-02 1.09279469e-01 -5.24496675e-01 -2.09913269e-01\\n-2.54649192e-01 -3.27235572e-02 1.90025628e-01 -4.69346881e-01\\n-9.09959227e-02 -5.52273057e-02 -6.18522227e-01 2.38586769e-01\\n-3.16056460e-01 -6.06192090e-02 2.37740174e-01 8.90933052e-02\\n-3.04333270e-01 -1.04371428e-01 1.79925412e-02 2.74827629e-01\\n-3.92499000e-01 -3.11261356e-01 2.42314041e-02 -9.76937711e-01\\n2.94974208e-01 -1.00287952e-01 -1.79324657e-01 3.25834900e-02\\n-1.41378924e-01 -6.97744191e-01 2.50876881e-02 -2.79181689e-01\\n-1.15042403e-01 -3.51326726e-02 -2.04039142e-01 -3.63788098e-01\\n3.21779400e-02 -1.82736635e-01 -3.40582192e-01 3.87623101e-01\\n-3.33451599e-01 2.37268642e-01 -9.60848853e-02 7.21412599e-02\\n-1.30347461e-02 -3.10815781e-01 1.09990388e-01 -4.08573955e-01\\n-4.00553018e-01 -2.61758447e-01 -3.02531093e-01 -2.63614774e-01\\n-4.73727919e-02 -3.47075433e-01 -2.57021468e-02 1.62009239e-01\\n2.27930993e-01 -9.98363458e-03 -8.04812312e-02 -3.19451869e-01\\n8.27896819e-02 -4.75351155e-01 6.36880398e-02 -1.48393465e-02\\n-1.86869642e-03 -1.08936422e-01 8.40525925e-02 1.62282929e-01\\n2.52297789e-01 -3.55913818e-01 2.94258505e-01 -4.25280601e-01\\n-2.90224582e-01 -6.83074817e-02 -1.05769441e-01 -1.29082110e-02\\n3.00846905e-01 -4.91198272e-01 2.23449785e-02 3.73590678e-01\\n1.12625800e-01 8.67099017e-02 1.77705556e-01 -6.49443045e-02\\n-1.02254115e-01 2.86103904e-01 -3.14258784e-01 1.36403978e-01\\n7.75529206e-01 9.81408805e-02 6.92448067e-03 3.12625974e-01\\n1.22414492e-01 4.13226575e-01 4.88337934e-01 3.52014933e-04\\n-1.44282743e-01 1.94699198e-01 1.14453651e-01 -5.26063681e-01\\n-8.14016014e-02 6.43597320e-02 -2.09092230e-01 -3.36164057e-01\\n6.69802368e-01 4.14263695e-01 -4.57418740e-01 -2.41373301e-01\\n-1.38956279e-01 -1.81377560e-01 1.06757239e-01 -6.73089921e-02\\n-1.37804328e-02 -1.14203028e-01 5.01829922e-01 -5.63766435e-03\\n1.72867507e-01 5.98401845e-01 -9.26457644e-02 -4.24071789e-01\\n-1.02994695e-01 2.27244094e-01 1.31103089e-02 4.98054624e-01\\n-1.60583213e-01 2.41314918e-01 2.11817026e-02 1.59914345e-01\\n-1.04281180e-01 1.72808826e-01 5.19606620e-02 1.77664697e-01\\n7.32279867e-02 1.83608159e-01 5.06464124e-01 4.42793936e-01\\n3.00168693e-01 4.43760365e-01 2.35433146e-01 2.29846947e-02\\n5.31396151e-01 4.08648819e-01 4.97671515e-01 1.52437434e-01\\n6.08255565e-02 2.06853241e-01 2.17744365e-01 7.78767839e-02\\n3.70430946e-01 2.86156893e-01 8.90241712e-02 8.81004512e-01\\n3.42060626e-01 2.25520417e-01 7.98166037e-01 -6.52752697e-01\\n-3.75869304e-01 3.90703119e-02 4.31025714e-01 -4.74906176e-01\\n-5.58187664e-02 5.70952892e-02 -1.24275073e-01 3.14276159e-01\\n-5.57963073e-01 -2.32347578e-01 -5.93300611e-02 2.17000827e-01\\n1.49198808e-02 -2.02581167e-01 -2.23299891e-01 3.47343013e-02\\n-1.26407027e-01 -1.38148353e-01 -4.44794595e-01 -1.67534888e-01\\n-2.28633046e-01 -6.33168966e-02 -8.13389570e-02 -2.03161627e-01\\n5.84210306e-02 -3.88770878e-01 -4.07264195e-02 -9.29877236e-02\\n2.98769116e-01 -4.53008562e-02 -6.50997739e-03 -9.11024120e-03\\n3.44113141e-01 2.25517541e-01 6.37861669e-01 1.69867147e-02\\n7.08297417e-02 -2.75487095e-01 -2.02902600e-01 1.60759270e-01\\n5.29393815e-02 1.78294584e-01 6.96251616e-02 2.16959298e-01\\n-3.35007817e-01 -1.98974237e-01 1.43792942e-01 3.77561033e-01\\n-4.76269126e-01 -2.31554881e-02 -9.83069241e-02 2.37876683e-01\\n3.16139683e-02 1.14257373e-01 -1.43238261e-01 -2.60084327e-02\\n-1.63131550e-01 -5.09828031e-01 3.25618684e-01 -4.60752398e-02\\n-9.06016901e-02 6.81380779e-02 3.07196707e-01 2.04111695e-01\\n-2.25322306e-01 5.73124625e-02 7.86416158e-02 7.46644512e-02\\n1.10234201e-01 3.60729367e-01 -8.97766650e-02 -3.19468617e-01\\n-2.96407491e-01 1.87342674e-01 -1.46991193e-01 -4.61427383e-02\\n-3.37555222e-02 3.37481409e-01 -5.64520098e-02 9.76285711e-02\\n3.58092904e-01 -4.46299836e-02 -2.66143739e-01 -2.66801000e-01\\n-1.53056338e-01 -2.55317211e-01 -4.51381430e-02 -3.47080268e-02\\n1.95612729e-01 -4.55677122e-01 -1.10574611e-01 -9.88458768e-02\\n-2.49608960e-02 -2.35832348e-01 -2.35158112e-02 -1.15717314e-01]]',\n", + " 'Join our team of web application developers and face the challenge of making IT security visible, understandable, and beautiful. As a Web Application Engineer, you will extend and improve the Mission Control Portal and thus help our customers to better manage and understand their global network security setups. Together with service engineers, UI designers, and product owners you discuss, shape, specify, and implement solutions that emphasise the value of strong IT security services, ease the operation of thousands of devices deployed across the planet, and provide intelligent insights into security-relevant data and processes. As part of the Mission Control team, you share operational duties with your colleagues. We expect you to bring the following skills to the table: ETH, university, or FH degree in Computer Science Experience in web application development on the client side (JavaScript, CSS3, HTML5, React) and the server side (Java, Spring) Familiarity with SQL and relational databases Basic knowledge of build and deployment environments (Atlassian Bamboo, Maven, Tomcat) Fluent in English and preferably German Furthermore, we expect basic knowledge and a high motivation to participate a coached training program in these areas: Knowledge of Linux operating systems Understanding networking in general and the major internet protocols Knowledge of network security concepts and practices You will join one of our small development teams that works with agile methods. The team will rely on you to focus on its goals and efforts as a team player while being able to work independently. At Open Systems we are passionate about what we do. We work in an environment in which innovative solutions, rapid development times, creativity and open communication are practiced and continuously fostered. The pursuit of technical advancement is at the center of our attention. You will be based at our office in Zurich (CH) and will get the opportunity to work out of our office in Redwood City (US) for a few months. We look forward to receiving your complete online application (letter of motivation, CV, diplomas/reference letters/transcript of records. Compress your application into two attachments). For further questions and inquiries about applications, please feel free to contact Helena Grimm at +41 58 100 10 10.',\n", + " '[\"Management\", \"Communications\", \"Operations\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Agility\", \"Computer Science\", \"Compression\", \"Internet Protocols\", \"Atlassian Bamboo\", \"European Training Programs\", \"Rapid Application Development\", \"Linux\", \"HTML5\", \"Server-Side\", \"React.js\", \"Operating Systems\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Network Security\", \"Small Business Development\", \"Receivables\", \"Relational Databases\", \"Centering\", \"Network Security Services\", \"Java (Programming Language)\", \"Inquiry\", \"SQL (Programming Language)\", \"Web Application Development\", \"Apache Tomcat\", \"Controllability\", \"Open Systems SnapVault\"]',\n", + " \"['English']\"],\n", + " ['108',\n", + " 'business analyst - application support analyst',\n", + " 'Neuchâtel',\n", + " 'Staffing & Outsourcing',\n", + " 'www.springasia.com',\n", + " '[[-7.98924267e-02 2.59289831e-01 5.11253893e-01 -1.63195536e-01\\n5.41876137e-01 -6.50344864e-02 5.36384843e-02 4.95411247e-01\\n-8.99371356e-02 -4.07855600e-01 -2.79204804e-03 -1.95963010e-01\\n1.08054146e-01 1.84690446e-01 6.11677282e-02 3.77246529e-01\\n2.71335125e-01 1.28439441e-01 -1.46379501e-01 2.17710495e-01\\n9.71265659e-02 -2.04063430e-01 3.18544149e-01 6.75113976e-01\\n4.77256864e-01 2.31007412e-02 -1.12440735e-02 -3.01566254e-02\\n-1.06329560e-01 -3.68513316e-01 4.60609674e-01 -5.54353185e-03\\n-7.52649307e-02 -2.76399463e-01 8.18261877e-02 9.52620525e-03\\n-1.25392541e-01 -1.50145337e-01 -2.02265933e-01 7.00096786e-02\\n-5.86391687e-01 -2.58492351e-01 -1.73578128e-01 -1.94698386e-02\\n-2.97244221e-01 -3.52446437e-01 -4.82900925e-02 -2.25767583e-01\\n1.95709676e-01 3.25830169e-02 -4.51255113e-01 2.97174364e-01\\n-3.82982999e-01 -2.59264737e-01 2.50475675e-01 6.25597775e-01\\n-1.71111494e-01 -3.92183036e-01 -5.78981042e-01 -2.41885290e-01\\n1.67432681e-01 -1.93347365e-01 2.19293963e-02 -2.73001313e-01\\n3.05080920e-01 1.29748940e-01 1.14961706e-01 2.56365985e-01\\n-7.90543258e-01 -2.43340302e-02 -3.43085349e-01 -2.36545518e-01\\n-1.62968606e-01 -9.80864391e-02 -2.22788051e-01 -1.34469196e-01\\n-1.37229472e-01 4.65027630e-01 1.25252023e-01 2.78254114e-02\\n-3.73945497e-02 2.90234238e-01 -2.77456701e-01 3.54456693e-01\\n1.06741123e-01 3.03979814e-01 1.45118743e-01 1.71867132e-01\\n-1.85761973e-01 4.47866678e-01 1.71011537e-01 -3.35191816e-01\\n2.12033048e-01 9.09468979e-02 4.04881150e-01 -1.87102541e-01\\n2.29882702e-01 1.98098961e-02 -3.42608273e-01 3.71331573e-01\\n3.54826421e-01 -3.00808430e-01 7.84931406e-02 -1.35568857e-01\\n-1.81999784e-02 -2.68950369e-02 1.39047176e-01 1.78426102e-01\\n-3.02507311e-01 4.60028917e-01 4.94900867e-02 -1.90250203e-01\\n-6.15063570e-02 -4.00417835e-01 -8.60558823e-02 2.25734003e-02\\n8.27145055e-02 1.52719736e-01 1.44878596e-01 2.28450015e-01\\n2.31984034e-01 -1.29117161e-01 4.61059436e-02 7.62308002e-01\\n-8.12031031e-02 8.96027908e-02 -2.83116877e-01 2.51733482e-01\\n-8.32209811e-02 -2.57841587e-01 1.57165483e-01 1.99877009e-01\\n1.14249729e-03 -1.51403844e-01 -1.27003714e-01 2.08152458e-01\\n-7.29180872e-02 -3.09326887e-01 -2.57022738e-01 2.19715357e-01\\n3.54448557e-02 -2.09024459e-01 5.46122849e-01 -4.54814248e-02\\n1.78580672e-01 -5.84518500e-02 -2.02156045e-02 -1.00779332e-01\\n-7.35567063e-02 1.46995693e-01 5.59131801e-02 5.71952537e-02\\n-2.33673826e-01 -2.17597798e-01 -2.57218152e-01 2.17550844e-02\\n-3.47150475e-01 7.69870579e-02 -1.05707988e-01 -1.07805200e-01\\n2.97659069e-01 -4.86813895e-02 -8.85978118e-02 4.41497803e-01\\n6.81825876e-02 1.24072298e-01 -1.22382361e-02 2.18790159e-01\\n-2.05779955e-01 2.72613376e-01 -7.57139921e-02 -1.10984497e-01\\n5.91628850e-01 -8.20761621e-02 -1.21793686e-03 -5.84570877e-02\\n2.65924007e-01 1.01073965e-01 4.35245149e-02 7.09008574e-02\\n-5.98314047e-01 3.73772770e-01 -5.46989813e-02 -3.85149680e-02\\n1.76446423e-01 -1.33124828e-01 2.54455358e-01 -1.50395840e-01\\n7.04003349e-02 7.26733208e-02 -2.59342790e-01 -2.97883123e-01\\n-1.67111009e-01 -2.37446368e-01 2.75469393e-01 -4.09321964e-01\\n-1.16294481e-01 1.87024981e-01 -4.83416051e-01 1.01419486e-01\\n2.00232744e-01 2.07871273e-01 1.57517493e-01 1.87758595e-01\\n-2.13158146e-01 -2.78174639e-01 2.17597589e-01 -2.77160108e-01\\n4.73389257e-04 2.40825847e-01 -1.46028355e-01 2.78637946e-01\\n1.77592814e-01 4.63477820e-02 -1.30877256e-01 3.81055363e-02\\n7.62739265e-03 -6.20929524e-02 2.16815442e-01 2.85425056e-02\\n3.06444615e-01 6.60696849e-02 -3.73005211e-01 3.28473985e-01\\n-1.49954826e-01 5.10130107e-01 -1.31402081e-02 -9.78403449e-01\\n3.07965159e-01 3.02256048e-01 7.43931904e-02 -2.11438477e-01\\n7.26615131e-01 -1.37031063e-01 -6.21670932e-02 1.81469589e-01\\n-4.32785034e-01 -4.38685834e-01 1.88053966e-01 -1.93247840e-01\\n-2.23518670e-01 4.32121128e-01 7.30948374e-02 1.94255084e-01\\n9.42110494e-02 3.34045216e-02 -2.48274952e-01 1.31222621e-01\\n1.13273244e-02 -1.27347916e-01 -4.79466617e-01 -2.68873841e-01\\n-1.09296910e-01 -4.24703360e-01 -1.08062841e-01 -4.72294092e-01\\n-2.43403137e-01 -2.23537639e-01 -2.02321038e-02 7.37641081e-02\\n2.08996996e-01 1.17070638e-01 1.00070596e-01 2.24544302e-01\\n-2.65068591e-01 -5.08855939e-01 -2.02704053e-02 2.67819196e-01\\n2.25794822e-01 1.62689164e-01 1.77619644e-02 6.11115769e-02\\n-1.13532960e-01 7.47612238e-01 -1.33176282e-01 6.83325753e-02\\n2.29049072e-01 3.07138771e-01 7.46914521e-02 -1.23554006e-01\\n9.66506153e-02 2.91159958e-01 -3.15868855e-01 2.36598924e-01\\n-8.39449186e-03 7.60951191e-02 1.89736471e-01 1.98400691e-01\\n-3.48620474e-01 -2.38706350e-01 -1.25665843e-01 9.32488367e-02\\n-5.44840276e-01 -2.66175568e-01 6.81383014e-01 3.16820182e-02\\n7.25592524e-02 2.16726840e-01 3.01087439e-01 -4.45276946e-02\\n-4.29125939e-04 -1.59981221e-01 1.88298702e-01 9.21824798e-02\\n1.50726333e-01 1.31440327e-01 -6.41306490e-02 -7.02000618e-01\\n-3.80704212e+00 -1.42281294e-01 1.30562618e-01 -2.16669187e-01\\n2.65530527e-01 -2.02920839e-01 7.92901516e-02 6.10076152e-02\\n-2.93332309e-01 1.66843478e-02 -2.05057070e-01 -2.03793630e-01\\n2.81725943e-01 1.96156144e-01 1.05186217e-01 3.86720777e-01\\n1.75895765e-01 -2.58535117e-01 9.53703094e-03 4.40447092e-01\\n-2.34167591e-01 -5.86043477e-01 3.01093161e-01 -2.31882520e-02\\n3.35297793e-01 3.91580850e-01 -3.04021597e-01 -6.25082999e-02\\n-1.61756352e-01 -2.05100581e-01 2.47069523e-01 -2.46489212e-01\\n-1.47597760e-01 2.61685342e-01 1.71133846e-01 -1.24095321e-01\\n1.72406226e-01 -5.11024654e-01 -1.19607873e-01 -4.09476906e-01\\n1.24028400e-01 -6.50349140e-01 -9.71165672e-02 1.13761753e-01\\n6.89809084e-01 -3.57772142e-01 -2.94654891e-02 -1.15372939e-02\\n1.24158539e-01 1.96933359e-01 7.96591341e-02 3.93592194e-02\\n-1.00539848e-01 -2.76507646e-01 -3.45253535e-02 3.19250040e-02\\n4.57459569e-01 4.25301224e-01 -1.43165544e-01 -7.62795806e-02\\n-1.92781314e-02 -1.49372131e-01 -5.22970259e-01 -2.26284251e-01\\n-2.14612842e-01 -3.14310968e-01 -5.85163891e-01 -3.48056406e-01\\n-6.42482936e-02 -2.11126372e-01 -1.50802732e-01 3.75272423e-01\\n-2.17984915e-01 -3.30024183e-01 -2.05289736e-01 -3.53669226e-01\\n2.41714865e-01 2.40416266e-02 6.56506792e-03 -1.80272296e-01\\n-3.10425401e-01 -3.66544187e-01 1.77970026e-02 8.62218067e-02\\n1.78041123e-02 -2.62165129e-01 1.05341971e-01 -1.76303163e-02\\n-3.09632838e-01 -5.05125701e-01 4.55966264e-01 2.24633247e-01\\n2.40406349e-01 1.45919502e-01 1.54616728e-01 3.86796854e-02\\n2.38418475e-01 -2.55402625e-01 2.72809551e-03 -4.44108367e-01\\n-9.51500144e-03 4.26706150e-02 4.81598198e-01 -2.07486346e-01\\n1.39602631e-01 -7.85032436e-02 -2.40593642e-01 -1.42798096e-01\\n1.56412542e-01 4.88127172e-02 2.74273634e-01 -3.26643825e-01\\n1.36225194e-01 -7.70054385e-02 -2.63992339e-01 -6.77016973e-02\\n-2.82797385e-02 5.16307175e-01 -2.13080794e-02 -2.90863514e-01\\n-1.43432409e-01 4.21866983e-01 -1.78539827e-01 -5.78832030e-02\\n-3.80438119e-01 6.39445987e-03 -2.78718621e-01 2.57908940e-01\\n-1.22576594e-01 -1.85893441e-03 -1.23988271e-01 -2.06648782e-01\\n-2.48281896e-01 3.15575033e-01 2.11921498e-01 9.53447968e-02\\n1.18864387e-01 -4.28381264e-01 -3.06604896e-02 2.46309653e-01\\n1.02581404e-01 3.62972796e-01 5.67226224e-02 -6.79383650e-02\\n-7.70052671e-02 2.54394859e-01 -1.61883265e-01 5.14153577e-02\\n-2.68833607e-01 1.56669796e-01 -3.96953583e-01 -3.41309577e-01\\n-2.64310718e-01 -3.85328382e-01 7.97808096e-02 2.84942716e-01\\n1.82863653e-01 -4.91889752e-02 2.13245284e-02 -5.11059225e-01\\n2.26544619e-01 -1.72971692e-02 2.69211054e-01 1.45900860e-01\\n2.82175206e-02 4.81230170e-01 7.76677877e-02 -9.66231227e-02\\n-9.84158888e-02 2.09978983e-01 -2.40100399e-01 -7.62000680e-02\\n-2.37415321e-02 -4.58954453e-01 -1.56572282e-01 4.51792926e-01\\n6.83386326e-02 -1.77264109e-01 -1.64168686e-01 2.36912891e-01\\n-4.70824167e-02 -3.96263421e-01 -2.76888311e-01 -5.07901888e-03\\n4.26292866e-01 1.49641335e-01 3.23466092e-01 -4.72902358e-01\\n-2.76648812e-02 -1.67382956e-01 -1.24403931e-01 4.40783828e-01\\n-5.14334301e-03 6.88844249e-02 -5.99356964e-02 -3.26699048e-01\\n2.68668115e-01 -1.49494112e-01 4.79223132e-02 1.36637613e-01\\n6.39315397e-02 -1.52786583e-01 -4.55858231e-01 1.29234761e-01\\n-1.09809702e-02 -2.38628164e-01 3.39676850e-02 9.79606584e-02\\n1.63781531e-02 1.16254926e-01 -5.39465308e-01 -2.36866072e-01\\n-2.58848399e-01 -1.42332744e-02 -1.89977184e-01 -4.96607155e-01\\n-8.98463875e-02 -1.51905324e-02 -4.50351030e-01 2.36930236e-01\\n-1.21533699e-01 -1.47279566e-02 2.07264587e-01 -6.93266373e-03\\n-3.30008119e-01 -4.44798060e-02 2.47283146e-01 1.74816102e-01\\n-1.95314974e-01 -1.75170660e-01 5.92069365e-02 -9.92224097e-01\\n1.55794919e-01 -9.75198001e-02 -1.12431660e-01 2.07266301e-01\\n-9.37234312e-02 -5.65540552e-01 1.00372076e-01 -2.59651303e-01\\n-2.57782608e-01 -2.05472782e-01 -1.47393629e-01 -5.47632873e-01\\n-6.10617362e-02 1.52903557e-01 -1.84746623e-01 2.58980930e-01\\n-2.55757898e-01 4.47258383e-01 -1.26137454e-02 1.93031758e-01\\n-2.04017852e-02 -3.25386375e-01 7.25502148e-02 -5.03702819e-01\\n-3.44253212e-01 -2.53998097e-02 -2.48401076e-01 -4.94648218e-02\\n2.78973337e-02 -2.41970718e-01 -6.69860020e-02 1.56903058e-01\\n2.56730318e-01 1.12027019e-01 -1.03057101e-01 -4.43051979e-02\\n-5.03396578e-02 -5.01549661e-01 1.07736565e-01 1.19684406e-01\\n-1.10048562e-01 -9.53512415e-02 3.06258649e-01 1.62655324e-01\\n1.23670980e-01 -4.12296057e-01 3.62996042e-01 -4.37082916e-01\\n-3.50896895e-01 1.32284658e-02 1.62078127e-01 2.12254804e-02\\n4.96368855e-01 -4.11515802e-01 -5.14579415e-02 3.31881911e-01\\n-1.16536170e-02 7.68011063e-02 4.24065024e-01 -6.79081604e-02\\n-1.32647142e-01 2.87115186e-01 -3.10263485e-01 1.66179508e-01\\n7.18590140e-01 1.14779569e-01 1.86875120e-01 1.62332535e-01\\n9.62227210e-02 3.27473849e-01 3.91634434e-01 1.66884298e-03\\n-2.63387442e-01 3.59060913e-01 1.35685161e-01 -7.91403830e-01\\n-1.50277037e-02 7.40124565e-03 -2.85941750e-01 -4.14998949e-01\\n6.34299397e-01 3.83178711e-01 -3.16669881e-01 -2.70034879e-01\\n-1.58385426e-01 -2.90230572e-01 -9.33067352e-02 -1.10463902e-01\\n1.23002648e-01 -9.75013375e-02 5.07175326e-01 -2.76348740e-02\\n2.81856090e-01 4.23068523e-01 -2.48352289e-01 -2.27416843e-01\\n-9.75315198e-02 4.81003113e-02 -4.35649753e-02 4.54058230e-01\\n-1.97684407e-01 4.06698316e-01 -6.78121373e-02 1.73170015e-01\\n1.59275364e-02 -4.90957173e-03 5.98848052e-02 4.50165272e-02\\n-3.62397805e-02 2.20353171e-01 4.98650908e-01 3.47803026e-01\\n4.64346081e-01 4.13573891e-01 3.17018867e-01 1.94470976e-02\\n6.41468287e-01 4.05263722e-01 2.43156463e-01 1.66549832e-01\\n-1.78390574e-02 -3.73893157e-02 1.36562986e-02 1.03015505e-01\\n2.61256397e-01 3.17620158e-01 -4.81634736e-02 9.04621899e-01\\n2.53947735e-01 1.57476395e-01 5.72103262e-01 -5.19562602e-01\\n-3.17309707e-01 -1.04960881e-01 3.36126715e-01 -5.09433448e-01\\n-2.62446776e-02 2.03736946e-01 -1.09704137e-01 7.06598833e-02\\n-3.17346960e-01 -3.01300377e-01 -1.56441644e-01 2.50904381e-01\\n-5.74126504e-02 -2.77126998e-01 -3.05499405e-01 1.54772168e-02\\n-1.03286821e-02 -1.25997245e-01 -5.24463534e-01 -1.46286208e-02\\n-2.53040463e-01 -3.04010242e-01 -1.09803759e-01 -1.19308963e-01\\n-1.99296787e-01 -1.73695907e-01 -1.42646924e-01 1.40575673e-02\\n8.55722502e-02 -1.19131617e-01 6.13201708e-02 -2.25797802e-01\\n4.03514117e-01 1.78444117e-01 5.18263280e-01 1.98284984e-02\\n4.90216613e-02 -2.58069098e-01 -4.86606508e-02 1.00017168e-01\\n3.44709992e-01 -8.84006917e-03 4.10662964e-02 4.93100196e-01\\n-3.47445816e-01 -2.28194162e-01 1.32526085e-01 4.30495232e-01\\n-5.41497529e-01 -1.45699903e-02 -2.67877094e-02 1.74632758e-01\\n1.43123060e-01 1.47417188e-01 -1.41513661e-01 -4.21168469e-02\\n-2.15064466e-01 -3.86253297e-01 5.43414205e-02 7.25285932e-02\\n-1.64784998e-01 -4.13618349e-02 1.22846141e-01 1.57080382e-01\\n-5.22804335e-02 -2.55230157e-06 -3.28832716e-02 7.82996044e-02\\n7.59337246e-02 2.46097177e-01 -3.01330388e-01 -4.13263112e-01\\n-2.03879863e-01 8.41342732e-02 -2.56603569e-01 1.05397530e-01\\n7.99833462e-02 2.49770135e-01 8.50051865e-02 1.21625558e-01\\n4.14514840e-01 -5.96566014e-02 -1.14100568e-01 -2.70163536e-01\\n-3.05794388e-01 -3.45417321e-01 4.97989655e-02 -2.53002256e-01\\n2.89954156e-01 -3.18723351e-01 -6.08104914e-02 -2.44881306e-02\\n-1.89783335e-01 -3.65372658e-01 5.28156012e-02 -3.26108150e-02]]',\n", + " \"For one of our clients in the Romandie the French speaking part of Switzerland, in Lausanne, we are looking for a Business Analyst - Application Support Analyst who is open-minded and client-oriented, is passionate about his work, who believes in success and has a strong team spirit. Are you looking for you next challenging position? This opportunity is for you! Your challenges You manage new applications and new functionalities in a manufacturing environment. You are in charge of lifecycle and support in manufacturing and application Level 2. Your skills Experience in a validated environment At least 3-4 years' experience Experience in application development lifecycle (supply chain) ITSM mandatory GxP systems and computer validation system Medical device Labelling systems a plus French and English mandatory Your horizons Do you think you have what it takes to face this challenge ? Don't hesitate to contact me on +41 58 233 27 08 or apply directly on this advert. About Spring Professional Advance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals. Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.ch Your contact Madame Joanna Fumey, Recruitment Trainee, looks forward to answer your questions by phone +41 58 233 2706. You can apply directly online.\",\n", + " '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " '[\"Application Development\", \"Validations\", \"Business Computer Systems\", \"Medical Devices\", \"Computerized System Validation\", \"Supply Chain\", \"Customer Support Analyst\", \"Application-Level Gateway\"]',\n", + " \"['English', 'Hiri Motu', 'Norwegian']\"],\n", + " ['81',\n", + " 'software engineer (front end)',\n", + " 'Lausanne',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.nexthink.com',\n", + " '[[-2.18650475e-01 3.10543031e-01 5.08035719e-01 3.03931441e-03\\n4.21418309e-01 -2.14236557e-01 2.91899424e-02 2.95808613e-01\\n5.73431440e-02 -5.24873555e-01 -9.40842833e-03 -2.48995304e-01\\n9.99815203e-03 1.91425860e-01 -7.16918334e-03 3.98366034e-01\\n4.54603791e-01 3.92952859e-02 -1.19716473e-01 3.06733519e-01\\n5.08440584e-02 -9.71822217e-02 7.24048764e-02 6.85338199e-01\\n3.53578418e-01 2.81452313e-02 -7.67235905e-02 -4.43683825e-02\\n-1.33352861e-01 -1.97455615e-01 4.47656810e-01 1.42974705e-02\\n-1.90549523e-01 -3.33959162e-01 2.18503568e-02 5.90090230e-02\\n-1.44699752e-01 1.44732028e-01 -2.95598749e-02 1.43360391e-01\\n-3.96953762e-01 -2.25514472e-01 -1.22275986e-02 -3.22799273e-02\\n-3.00597966e-01 -3.91413957e-01 -2.83471141e-02 1.62228327e-02\\n1.82165176e-01 3.34369950e-02 -3.92836869e-01 3.24186146e-01\\n-3.39547396e-01 -2.18174532e-01 3.24194044e-01 6.37363434e-01\\n6.63487613e-02 -4.25195754e-01 -4.63421196e-01 -3.69157493e-01\\n1.20278507e-01 -1.59252822e-01 7.71521181e-02 -2.59632885e-01\\n4.06898022e-01 5.99455871e-02 8.86699930e-03 3.31543863e-01\\n-7.84377635e-01 -1.32360458e-02 -2.88025737e-01 -9.13999230e-02\\n-2.87193090e-01 -1.53338820e-01 -3.65910769e-01 -1.73348159e-01\\n-1.54442072e-01 4.29219306e-01 1.54133225e-02 5.22672273e-02\\n-1.82157487e-01 1.86675027e-01 -2.68549562e-01 3.66621137e-01\\n1.50970176e-01 2.26079956e-01 5.02338409e-01 2.81122088e-01\\n-5.16310036e-01 4.25990015e-01 2.88981467e-01 -4.23285484e-01\\n2.98094183e-01 1.59841537e-01 3.95843208e-01 -2.57112402e-02\\n2.02608541e-01 1.68573126e-01 -1.97369292e-01 2.96764284e-01\\n2.59543300e-01 -2.34327137e-01 -9.73427296e-02 -1.70254722e-01\\n-7.88961351e-02 -4.31400687e-02 3.02129835e-02 2.10880741e-01\\n-3.14638287e-01 4.37536716e-01 7.57455155e-02 -2.70836443e-01\\n-1.49044722e-01 -3.45062673e-01 -5.67172095e-02 7.31222630e-02\\n-6.93883151e-02 1.28326297e-01 1.93164557e-01 2.18365997e-01\\n9.62266177e-02 5.69934808e-02 1.57027930e-01 7.51616597e-01\\n-1.76009417e-01 9.60751101e-02 -3.11997116e-01 3.22137982e-01\\n1.05268911e-01 -2.79821515e-01 1.14652589e-01 1.15436807e-01\\n-1.97467148e-01 -6.09609112e-02 -3.57288659e-01 3.18996280e-01\\n4.27553616e-03 -2.33447671e-01 -3.39717001e-01 2.04964921e-01\\n-1.64175093e-01 -5.16131341e-01 5.84234536e-01 -3.38917077e-02\\n1.45381942e-01 -2.07380038e-02 -8.15092865e-03 -8.32221657e-02\\n-1.81774318e-01 3.80541176e-01 1.10570259e-01 1.69137433e-01\\n-3.47502589e-01 -2.39976898e-01 -2.10208327e-01 1.60587370e-01\\n-2.37786770e-01 2.03429669e-01 -2.39257798e-01 -5.45330420e-02\\n2.79003829e-01 2.29750164e-02 -2.67033786e-01 2.63592303e-01\\n6.02098927e-03 -5.20320088e-02 -8.48794207e-02 3.88192177e-01\\n-1.51540205e-01 2.55170166e-01 2.49514971e-02 -9.61196423e-02\\n6.09905005e-01 1.19947776e-01 1.99527681e-01 -1.08556472e-01\\n3.58797491e-01 -1.12489790e-01 1.13122821e-01 1.22773632e-01\\n-6.24625802e-01 4.00636077e-01 -1.12962253e-01 -7.96596706e-03\\n8.40483904e-02 2.00637616e-02 1.47217587e-01 -3.15164089e-01\\n-1.34918094e-03 -1.52171999e-01 -2.58474350e-01 -3.68334711e-01\\n-2.23935187e-01 -9.76097286e-02 4.85715985e-01 -4.07684445e-01\\n1.62908770e-02 2.63122439e-01 -7.13247538e-01 -1.99186523e-02\\n2.62963623e-01 1.58582091e-01 1.36089921e-01 2.22164884e-01\\n-1.67677462e-01 -4.62270409e-01 2.13828981e-01 -3.55782151e-01\\n-3.70185733e-01 2.33332932e-01 -2.29924709e-01 2.75243878e-01\\n1.27697870e-01 -2.12527718e-02 -2.18119368e-01 5.96873835e-02\\n-1.18005306e-01 -5.54043055e-02 2.99016178e-01 6.70550391e-03\\n2.94208884e-01 1.27696507e-02 -4.13457513e-01 5.14396131e-01\\n-1.95209146e-01 3.79187226e-01 8.73363912e-02 -9.81898665e-01\\n3.69979799e-01 2.65994757e-01 -7.76384771e-02 -3.99151742e-01\\n6.66981578e-01 -3.09518993e-01 -5.01649380e-02 1.68589264e-01\\n-3.36642206e-01 -1.73619062e-01 1.79963082e-01 -2.14542627e-01\\n-2.25747406e-01 6.82093740e-01 2.21200436e-02 1.07294559e-01\\n2.58162320e-01 -2.54559577e-01 -1.30232871e-01 1.01824194e-01\\n-2.08605796e-01 -2.96463341e-01 -5.22100568e-01 -5.78982159e-02\\n2.14181952e-02 -5.24374485e-01 -2.30907246e-01 -4.71731722e-01\\n-2.12596595e-01 -4.44021851e-01 -2.84505844e-01 1.78727031e-01\\n2.78781891e-01 1.45726591e-01 -1.39762521e-01 4.35733646e-02\\n-1.11581042e-01 -5.74458361e-01 5.61864711e-02 3.66289318e-02\\n3.91725093e-01 2.36579418e-01 -4.43175659e-02 1.86401941e-02\\n1.54694542e-01 5.41999698e-01 -3.35956722e-01 -2.86364138e-01\\n2.93111563e-01 1.71467796e-01 5.75373881e-03 -2.24929601e-01\\n3.14889997e-02 4.42665577e-01 -2.93741345e-01 1.18415490e-01\\n6.80408999e-02 9.76198819e-03 3.94192874e-01 -6.04331009e-02\\n-3.55990797e-01 -2.32366383e-01 -6.55177236e-02 1.86422333e-01\\n-5.30665755e-01 -2.06025496e-01 6.72770679e-01 1.57291710e-01\\n3.83236632e-02 1.66843489e-01 1.08706817e-01 -3.75144444e-02\\n-3.02943826e-01 -9.62411612e-02 3.06542158e-01 1.05481461e-01\\n2.43690372e-01 1.73278511e-01 -1.09039657e-01 -5.83939791e-01\\n-3.42961693e+00 -2.88475662e-01 1.78627431e-01 -2.59557962e-01\\n2.39439636e-01 -1.96460426e-01 1.00570343e-01 -6.41465634e-02\\n-2.80953646e-01 7.90572912e-02 -4.71993908e-03 -1.19920239e-01\\n1.75035626e-01 3.09008181e-01 1.44353449e-01 2.15894654e-01\\n1.15331039e-01 -1.38937026e-01 1.07381120e-02 3.37179214e-01\\n-1.37612671e-01 -6.78623378e-01 1.95904553e-01 -5.47194406e-02\\n3.90071332e-01 5.52000105e-02 -5.27021527e-01 -3.12946923e-03\\n-3.53106380e-01 -1.49800360e-01 1.00697495e-01 -1.29036233e-01\\n-1.15855575e-01 2.56190777e-01 1.92257553e-01 -1.67073146e-01\\n1.99266583e-01 -4.30702984e-01 -1.59624651e-01 -4.19768870e-01\\n1.20416448e-01 -6.66463375e-01 -1.91507190e-02 -8.74533355e-02\\n5.91144443e-01 -2.83851981e-01 1.97345778e-01 6.23492040e-02\\n2.28051364e-01 1.66373983e-01 4.75738943e-03 3.73997912e-02\\n-2.95104682e-01 -3.12852204e-01 -1.65972948e-01 -1.97991312e-01\\n6.70500636e-01 4.11265463e-01 -2.91703999e-01 -9.93811190e-02\\n-6.84431121e-02 -2.61007965e-01 -4.95092660e-01 -2.61539996e-01\\n-8.06117058e-02 -8.59712064e-02 -5.14091849e-01 -4.03526902e-01\\n-3.30611110e-01 -1.46348312e-01 -1.73689332e-02 5.58362424e-01\\n-3.70218277e-01 -3.23816180e-01 1.83795542e-02 -4.86035526e-01\\n2.40504637e-01 1.72993317e-02 2.60216817e-02 -1.66959643e-01\\n-3.04401398e-01 -4.54181314e-01 1.37668118e-01 5.26537672e-02\\n-1.12466268e-01 -1.30350694e-01 1.72437474e-01 -2.11157650e-01\\n-3.59475553e-01 -3.89787734e-01 4.31623340e-01 3.59745622e-02\\n2.29804322e-01 1.80383980e-01 3.40899289e-01 -1.47292381e-02\\n3.78327578e-01 -9.53480303e-02 5.26392795e-02 -5.67894936e-01\\n1.41585872e-01 8.94055516e-02 5.49226999e-01 -9.49313715e-02\\n-1.79228187e-03 1.26087785e-01 -2.02977926e-01 -5.30949384e-02\\n4.93942916e-01 -4.68480289e-02 2.27714211e-01 -2.72660792e-01\\n2.35983223e-01 -2.28329897e-01 -2.42622882e-01 6.21621944e-02\\n9.63953137e-02 5.67263961e-01 -1.77137554e-02 -3.26565325e-01\\n-1.52350247e-01 4.66162115e-01 -2.62642682e-01 -7.00976327e-02\\n-2.78548688e-01 8.65641162e-02 -1.99453175e-01 2.91738987e-01\\n-4.46970649e-02 -8.57394636e-02 -2.68089235e-01 -1.35370076e-01\\n-2.12737650e-01 2.15577587e-01 2.65350401e-01 1.11112416e-01\\n-7.84778222e-02 -3.24843466e-01 2.86233239e-02 4.19249535e-02\\n2.38920778e-01 3.70558739e-01 9.58826691e-02 -2.45087549e-01\\n9.91144553e-02 3.02839547e-01 -1.37624845e-01 6.02397025e-02\\n-3.18162739e-01 1.55188411e-01 -4.82320249e-01 -2.42762893e-01\\n-2.70919740e-01 -3.57495278e-01 -1.43710468e-02 3.47067177e-01\\n1.30311817e-01 -2.03643173e-01 -2.23056637e-02 -4.31199282e-01\\n2.30452180e-01 1.74985781e-01 1.83588281e-01 4.49117459e-02\\n1.05446205e-01 5.80689907e-01 1.33321062e-03 -2.05909774e-01\\n-1.85165733e-01 9.88214612e-02 -7.79286474e-02 -5.91340028e-02\\n-1.28817841e-01 -5.45139849e-01 -1.39691845e-01 4.39800858e-01\\n3.06236036e-02 -1.81369647e-01 -1.64389983e-01 2.46628463e-01\\n-7.06614107e-02 -2.30152056e-01 -1.47590101e-01 -1.73633285e-02\\n2.23877192e-01 3.38118263e-02 2.25666344e-01 -4.57440287e-01\\n-5.77850454e-03 7.26865679e-02 -2.94799916e-02 4.68265891e-01\\n7.07896799e-03 7.69850984e-02 -8.52518976e-02 -1.08089797e-01\\n3.97263527e-01 -1.89865023e-01 -1.33330464e-01 -4.77305800e-02\\n1.03413686e-01 -1.64530441e-01 -3.85604352e-01 3.05615682e-02\\n2.82565486e-02 -1.89160734e-01 5.03238700e-02 2.02855155e-01\\n1.30436972e-01 1.07358813e-01 -5.78121960e-01 -2.88562804e-01\\n-3.83050472e-01 -2.90591195e-02 2.27706730e-02 -6.84259295e-01\\n3.98030803e-02 -6.15718029e-03 -5.17811537e-01 2.43406296e-01\\n-1.47185596e-02 -4.53435183e-02 8.67597982e-02 -3.19680944e-02\\n-3.43416631e-01 -1.58811837e-01 2.15249747e-01 1.55890033e-01\\n-8.72706771e-02 -3.57164025e-01 2.29963027e-02 -9.35744345e-01\\n2.57687926e-01 5.79344854e-02 -2.67125964e-01 3.50094289e-02\\n-5.94987050e-02 -5.73277235e-01 2.15281010e-01 -4.66434896e-01\\n-1.55453920e-01 -3.40049677e-02 -2.35462666e-01 -5.20292759e-01\\n1.91742592e-02 -5.40319234e-02 -2.74187624e-01 4.01990891e-01\\n-3.33486021e-01 5.04636526e-01 -7.45254382e-02 1.35415629e-01\\n4.62736823e-02 -3.00582141e-01 7.07020834e-02 -3.55981171e-01\\n-4.61019695e-01 -2.68139482e-01 -2.69087911e-01 -3.44955504e-01\\n-6.54678047e-02 -3.27477336e-01 -1.40419632e-01 9.66827124e-02\\n2.66112745e-01 1.40503675e-01 -1.97049379e-01 -2.39267886e-01\\n-9.15869884e-03 -5.24257302e-01 5.55966720e-02 -1.73484683e-01\\n-1.39855426e-02 -2.03051150e-01 3.19361150e-01 1.54229701e-02\\n4.16555628e-02 -3.57903063e-01 4.74453419e-01 -2.66763628e-01\\n-2.93199241e-01 -1.75132439e-01 5.13447858e-02 -1.43138506e-03\\n1.89437687e-01 -6.11606956e-01 -1.30874664e-03 2.87226111e-01\\n1.15044616e-01 1.49256960e-02 1.23625211e-01 -1.70697957e-01\\n-1.61471128e-01 2.39040181e-01 -3.47934425e-01 1.43006414e-01\\n5.83060980e-01 9.56750065e-02 1.92932352e-01 1.75836027e-01\\n2.05924332e-01 3.36876214e-01 4.82374936e-01 -1.23282000e-02\\n-9.26382095e-02 3.64101768e-01 1.91988349e-01 -5.35904408e-01\\n-5.29485568e-02 8.43399763e-02 -2.03730375e-01 -3.25397462e-01\\n7.26255655e-01 3.79542261e-01 -3.18130404e-01 -3.21482599e-01\\n-2.32722089e-01 -2.34033614e-01 2.74998307e-01 -2.99524143e-02\\n8.58696997e-02 -1.36936963e-01 5.23999810e-01 -2.57582664e-02\\n2.09209770e-01 6.24615550e-01 -2.96937823e-01 -3.70776176e-01\\n1.43919643e-02 3.11371326e-01 4.54956181e-02 4.81295675e-01\\n-2.30672628e-01 1.89841986e-01 -4.06072624e-02 1.72707975e-01\\n-9.17960927e-02 7.44964331e-02 2.03814000e-01 1.01318695e-02\\n2.27396518e-01 5.95719032e-02 6.36656284e-01 3.88105989e-01\\n3.29555571e-01 4.30302858e-01 2.98791915e-01 1.20390616e-02\\n5.30248284e-01 6.91076040e-01 3.55923772e-01 -3.36932614e-02\\n9.18637812e-02 1.01069450e-01 1.36885881e-01 4.92398590e-02\\n2.96294391e-01 4.36577290e-01 -5.21144643e-02 9.44994390e-01\\n3.91165257e-01 2.95906991e-01 6.17039800e-01 -5.93331635e-01\\n-2.80339003e-01 7.19083659e-03 5.06428003e-01 -2.33637393e-01\\n-9.43668261e-02 1.69965640e-01 -2.19012082e-01 1.13339700e-01\\n-2.69366056e-01 -6.90435320e-02 -4.05337363e-02 1.89710915e-01\\n1.54301420e-01 -1.03272207e-01 -1.46025360e-01 8.44389424e-02\\n-1.09260894e-01 -1.51410341e-01 -4.71823961e-01 -1.56549096e-01\\n-2.44043767e-01 -4.83967587e-02 -1.15732014e-01 -4.66924571e-02\\n-1.89224228e-01 -3.97264361e-01 -1.54194176e-01 2.09202301e-02\\n2.84019440e-01 -1.87653422e-01 -1.80525601e-01 -8.96091983e-02\\n3.13960403e-01 2.63720453e-01 6.40362561e-01 6.63462505e-02\\n4.07070257e-02 -2.14153498e-01 -2.05213308e-01 1.01068333e-01\\n1.21944025e-01 4.23617363e-02 -9.23030451e-03 4.68520284e-01\\n-2.54377484e-01 -1.36466593e-01 5.95699064e-02 4.01126266e-01\\n-3.88959169e-01 -1.08222114e-02 -1.09633714e-01 2.05865651e-01\\n5.32033294e-02 8.47350508e-02 -1.49514288e-01 2.30091438e-02\\n-1.47371352e-01 -5.29899359e-01 3.37847292e-01 -3.56885269e-02\\n-2.03789771e-01 6.57325238e-02 1.59064323e-01 3.79705042e-01\\n-2.91163266e-01 -1.35766745e-01 -7.58540183e-02 9.20963138e-02\\n1.76287457e-01 3.62564623e-01 -1.77641660e-01 -2.08424717e-01\\n-3.06486785e-01 9.99477208e-02 -5.36687113e-02 1.13125294e-01\\n-6.10419177e-03 2.56920189e-01 5.33921160e-02 1.98925287e-01\\n2.63360143e-01 -3.15163806e-02 -1.91018373e-01 -1.80443853e-01\\n-1.56191021e-01 -1.04184300e-01 -7.05121085e-03 -5.53378686e-02\\n2.82284439e-01 -2.27335125e-01 -7.27892816e-02 -1.26072466e-01\\n-2.33592898e-01 -3.55403900e-01 1.64451785e-02 -1.71223745e-01]]',\n", + " 'Job DescriptionWe are looking for a Senior Software Engineer with strong front-end programming skills and with test automation capabilities to play a major role in the company. The candidate should be heavily motivated by the product and experienced in Software development and testing. The position entails a high level of responsibility within the R&D team. Your contribution will have a significant impact on the satisfaction of hundreds of our happy customers. As a Senior Software engineer at Nexthink, your duty is to ensure that the software we deliver fulfil the product requirements by collaborating with our product experts. You will participate in all stages of software development: design, implementation, validation, maintenance and will collaborate with our experts and with the different teams. If you are highly motivated and result driven, you have a high sense of product ownership, constantly learning and enhancing your skills, you are open to feedback and you like being accountable and work within a team, then, do not hesitate to apply. Your main responsibilities will include: Design, implement and validate solutions for new features in our different frontendsMaintain the highest code quality standards by using different metrics and by helping the team to improve its best practices in developmentPut in place the necessary front-end test automation to achieve excellent software qualityHelp us bring high decoupling of the different front components Make sure that web and mobile technological trends are assessed and followedWork with the agile iterative/incremental mindset and best practices and participate actively to the different ceremonialsDocument the solutions and architecture according to our standardsSeniority level: Mid-Senior LevelFunction: Engineering Qualifications 5+ years of experience in Software Engineering with proven front-end expertiseB.S. or Master in Computer Science (or equivalent) Very strong technical background, with clear focus on web technologies. Knowledge of mobile technologies is a plusStrong programming skills and ability to code in JavaScript, TypeScript. Java and Scala highly valuedTeamwork and collaboration is part of your DNA Good leadership and soft skillset (e.g. proactivity, pragmatism, open-minded, excellent communication skills, )Experience with libraries and frameworks. React is a big plus. Others like Angular, jQuery, Ember will be valuedMastery of CSS and design is a big plusExperience with micro-services, containers, API gateway, REST is a plusExperience in an agile environment is a mustStrong motivation for complex challenges and learning new technologiesFluent in English (spoken and written), French is a plus Additional InformationThis is an exceptional opportunity to join a fast-growing, successful and innovative company. Nexthink allows you to thrive in a unique work environment where the emphasis is on excellence, innovation, openness and collaboration.',\n", + " '[\"Verbal Communication Skills\", \"Leadership\", \"Collaboration\", \"Proactivity\", \"Accountability\", \"Innovation\"]',\n", + " '[\"Agility\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Good Agricultural Practices\", \"Staging\", \"TypeScript\", \"Scala (Programming Language)\", \"Activism\", \"E (Programming Language)\", \"Test Automation\", \"Levelling\", \"Library\", \"Iterators\", \"Hostile Work Environment\", \"Software Engineering\", \"Mobility\", \"React.js\", \"Senior TeleCommunications Engineer\", \"JQuery\", \"JavaScript (Programming Language)\", \"Decoupling\", \"API Gateway\", \"Validations\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Software Development\", \"Additives\", \"Java (Programming Language)\", \"Product Requirements\"]',\n", + " \"['English', 'Venda', 'Gikuyu']\"],\n", + " ['44',\n", + " 'software engineer',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-3.12801331e-01 3.16512048e-01 4.18633461e-01 -7.91569278e-02\\n5.23473918e-01 -2.02009022e-01 1.43224448e-02 3.96541834e-01\\n-2.95258015e-02 -3.80351514e-01 -1.71148345e-01 -2.60764986e-01\\n-1.86775640e-01 3.46598998e-02 2.29364529e-01 4.35211420e-01\\n2.13361993e-01 7.31811300e-02 -2.71519899e-01 3.62178653e-01\\n6.76888525e-02 -9.00769681e-02 3.08419261e-02 7.49629259e-01\\n3.51514131e-01 1.39445933e-02 7.99249671e-03 -1.12452928e-03\\n-3.08921933e-01 -2.86021382e-01 2.84034193e-01 -1.54524837e-02\\n-1.17725946e-01 -3.36671174e-01 1.80350006e-01 3.94491404e-02\\n-1.42310113e-01 -6.50811344e-02 -2.96018068e-02 1.36475191e-01\\n-4.86237645e-01 -2.83786476e-01 2.09684446e-01 8.14381912e-02\\n-7.68273175e-02 -3.60551596e-01 1.40205085e-01 -1.42227501e-01\\n1.89237390e-02 -6.57460168e-02 -4.99913871e-01 3.54694098e-01\\n-2.39417732e-01 -1.58044338e-01 3.51311326e-01 5.19925475e-01\\n-1.20911978e-01 -6.11969590e-01 -3.13406318e-01 -2.62099057e-01\\n4.18638550e-02 -7.50373229e-02 -1.30443517e-02 -3.59687090e-01\\n3.79999757e-01 7.91939124e-02 -7.55848140e-02 3.19918513e-01\\n-8.10813129e-01 -2.05031931e-01 -2.33121410e-01 4.83161956e-02\\n-3.55063528e-01 -9.04140249e-02 -1.34746566e-01 -1.46796510e-01\\n1.85451377e-02 3.83641899e-01 -1.53264469e-02 3.23173665e-02\\n-1.09364137e-01 3.71241242e-01 -4.62248400e-02 3.77704322e-01\\n3.20841372e-01 1.68776840e-01 1.32807031e-01 3.55924428e-01\\n-3.59836102e-01 4.87569720e-01 7.26686940e-02 -2.88253397e-01\\n1.25274226e-01 2.05301002e-01 5.00716269e-01 1.26226461e-02\\n3.97542417e-02 1.97526187e-01 -3.04165840e-01 2.99141109e-01\\n2.02088848e-01 -1.69397727e-01 6.65759528e-03 -7.11626336e-02\\n-6.61653057e-02 -8.45232680e-02 2.61793938e-02 3.13128084e-01\\n-2.93170273e-01 5.02677441e-01 1.24285914e-01 -7.22864345e-02\\n5.16628325e-02 -5.67255735e-01 -1.40350863e-01 1.53846378e-02\\n-8.00355077e-02 9.77878496e-02 3.32642287e-01 1.70066193e-01\\n2.57896721e-01 4.31124158e-02 9.32393223e-02 9.67842042e-01\\n1.71050604e-03 1.68293089e-01 -2.51748562e-01 4.06392246e-01\\n1.53977498e-01 -3.17053527e-01 1.74288854e-01 3.45592886e-01\\n2.39519402e-01 -1.12963505e-01 -2.27179065e-01 3.27402472e-01\\n-1.98341832e-01 -2.90694505e-01 -3.96096706e-01 1.96666941e-01\\n-2.44850695e-01 -4.90286648e-01 4.87498850e-01 1.40147626e-01\\n2.05087215e-01 1.03209866e-02 -9.43975672e-02 -4.17625979e-02\\n-1.00627251e-01 2.33817548e-01 3.21568996e-02 1.13600150e-01\\n-3.47780794e-01 -1.75770327e-01 -3.02637100e-01 1.32408574e-01\\n-1.58637851e-01 1.71912894e-01 -1.09562412e-01 -1.44348353e-01\\n3.51832122e-01 3.17592826e-03 -5.07710516e-01 3.64246964e-01\\n8.38328060e-03 -2.77027320e-02 -4.36405130e-02 4.02636915e-01\\n-9.95365232e-02 2.98923433e-01 -2.54423991e-02 -6.76289275e-02\\n3.59841526e-01 1.76911224e-02 -2.52633691e-02 -1.65009215e-01\\n3.01501960e-01 -1.43668905e-01 1.70410991e-01 6.89919889e-02\\n-7.37222970e-01 2.55105525e-01 -5.80111742e-02 1.35410186e-02\\n1.21948551e-02 -2.48319414e-02 3.62341821e-01 -3.71194720e-01\\n-1.72665700e-01 -1.85158774e-01 -3.90695781e-01 -3.93356651e-01\\n-3.03242415e-01 -1.41313951e-02 4.49884295e-01 -3.03693563e-01\\n-1.78244039e-01 2.21627623e-01 -5.13013422e-01 7.02287033e-02\\n2.58289307e-01 1.97849259e-01 1.26958489e-01 1.41438901e-01\\n-3.51326987e-02 -5.98378539e-01 7.58757666e-02 -4.24420714e-01\\n-3.60226482e-01 1.34903803e-01 -3.12238276e-01 2.69950598e-01\\n1.49554044e-01 1.00095376e-01 -6.44305274e-02 6.67490140e-02\\n-2.30115294e-01 -6.73026517e-02 1.71835586e-01 6.78511634e-02\\n1.98214769e-01 3.73082533e-02 -4.94558334e-01 4.80509192e-01\\n-2.18076795e-01 4.77721304e-01 8.23358148e-02 -8.05065870e-01\\n5.48103392e-01 3.26535404e-01 3.47400866e-02 -4.32201236e-01\\n6.10359013e-01 -3.83548349e-01 -9.53272209e-02 1.43837258e-01\\n-4.00688887e-01 -3.12934250e-01 1.97759032e-01 -1.26089916e-01\\n-2.75784433e-01 5.80727637e-01 9.97411311e-02 2.69413833e-03\\n2.87883818e-01 -2.82297134e-01 -1.53541237e-01 7.27819875e-02\\n-2.70451121e-02 -2.21376926e-01 -4.47217792e-01 -1.82413007e-03\\n-1.61377676e-02 -5.08080542e-01 -1.74873129e-01 -4.52164561e-01\\n-2.09689453e-01 -3.83565933e-01 -1.85078964e-01 3.29800218e-01\\n2.43226454e-01 1.48317978e-01 1.01001821e-01 9.96082556e-03\\n-1.42926037e-01 -6.03709698e-01 -5.56448624e-02 6.82088509e-02\\n4.28021967e-01 2.43521348e-01 7.49348253e-02 -4.66759428e-02\\n-6.68673441e-02 6.31377578e-01 -3.06268126e-01 -2.56342620e-01\\n8.89747813e-02 1.52975783e-01 -3.74802798e-02 -7.81136826e-02\\n1.56144172e-01 4.08918172e-01 -2.41116136e-01 3.76945175e-02\\n-2.23806977e-01 8.41687992e-02 3.68939638e-01 7.07777450e-04\\n-3.46594244e-01 -2.57924855e-01 -2.69735418e-02 1.82354793e-01\\n-5.86630285e-01 -1.80287495e-01 5.61579823e-01 2.65502125e-01\\n2.08557695e-01 1.54528826e-01 3.47996920e-01 -1.95836157e-01\\n-5.38512878e-02 -1.69183508e-01 1.18805401e-01 2.48434573e-01\\n8.71337280e-02 1.91436857e-02 -1.81508169e-01 -5.99153221e-01\\n-3.05484533e+00 1.10294959e-02 1.36477068e-01 -1.99948147e-01\\n1.39525965e-01 -6.62112907e-02 2.88588461e-02 -1.17691398e-01\\n-2.62980223e-01 6.02071807e-02 -3.20721596e-01 -1.26113206e-01\\n8.52785930e-02 2.04672530e-01 1.25590280e-01 1.42709404e-01\\n2.15302050e-01 -3.65236789e-01 -6.41188771e-02 2.48403624e-01\\n-6.28827065e-02 -7.12549269e-01 1.79696992e-01 -8.72801095e-02\\n2.93931693e-01 2.97597945e-01 -3.60176116e-01 -1.36338770e-01\\n-1.74095780e-01 -2.83319741e-01 1.11630552e-01 -2.43421271e-01\\n-1.40295044e-01 3.74410242e-01 4.93827872e-02 -1.42165184e-01\\n1.41054377e-01 -3.48098963e-01 5.34460805e-02 -4.17488962e-01\\n1.58350185e-01 -5.95151544e-01 1.27165481e-01 -9.31036696e-02\\n6.22393191e-01 -3.27441275e-01 9.71521661e-02 2.07087368e-01\\n1.36256769e-01 2.67784446e-01 -6.76104426e-02 -3.57137341e-03\\n-1.95487037e-01 -2.08670855e-01 -1.30109107e-02 -2.11488754e-01\\n5.04943311e-01 4.60878670e-01 -1.69685796e-01 -3.30233909e-02\\n8.74223039e-02 -3.65866989e-01 -4.38640147e-01 -4.03927565e-01\\n-2.57940143e-01 -1.97407663e-01 -8.23525071e-01 -3.83654982e-01\\n-8.59944522e-02 -7.49429986e-02 -1.59311533e-01 5.48014581e-01\\n-2.91549981e-01 -3.61807287e-01 4.08007912e-02 -5.12999594e-01\\n7.83261284e-02 -2.03186750e-01 7.11726546e-02 -2.37453148e-01\\n-2.17922196e-01 -5.08351088e-01 1.26214266e-01 7.54575729e-02\\n-1.60454854e-01 -1.76717415e-01 7.34414905e-02 -2.33689398e-01\\n-1.70308679e-01 -5.09858668e-01 4.56348330e-01 1.57323986e-01\\n2.63603836e-01 1.53788000e-01 2.11083204e-01 -6.76111970e-03\\n3.25063020e-01 -6.80102259e-02 1.06913075e-01 -4.63090241e-01\\n5.46183102e-02 8.84331390e-02 5.33161044e-01 -1.95888788e-01\\n-3.46129909e-02 2.00686380e-01 -1.66580871e-01 -1.78392231e-01\\n2.72686183e-01 1.22653231e-01 8.36533904e-02 -2.49631599e-01\\n3.34251016e-01 -5.11177361e-01 -2.40285367e-01 1.53864443e-01\\n1.60415947e-01 7.00615287e-01 6.49797218e-03 -4.78652209e-01\\n-2.99368918e-01 3.67539376e-01 3.14667053e-03 -7.26779178e-02\\n-4.08478267e-02 1.43154070e-01 -2.79801160e-01 1.69476718e-01\\n2.17109397e-02 -1.75495341e-01 -2.85740227e-01 -1.06599860e-01\\n-7.87442923e-02 3.19206625e-01 2.99442440e-01 1.19668327e-01\\n-4.11337912e-02 -4.85817999e-01 -1.08940728e-01 1.37533471e-01\\n1.45772815e-01 3.25233519e-01 9.24873874e-02 -3.06976318e-01\\n-5.98290935e-02 4.24621344e-01 -1.02247730e-01 1.36669278e-01\\n-2.22659975e-01 -3.18024606e-02 -5.38682222e-01 -1.71118721e-01\\n-2.39801943e-01 -2.24327132e-01 -4.66067716e-02 3.97736639e-01\\n1.48451328e-01 -7.31302006e-03 7.61822239e-02 -5.14854372e-01\\n4.06590223e-01 2.58336309e-02 2.52168030e-01 1.23999245e-01\\n1.66050624e-02 4.88307595e-01 -5.61133353e-03 -1.70740664e-01\\n-1.57895908e-01 9.37199071e-02 -2.77358770e-01 -2.33088717e-01\\n1.40401438e-01 -2.93494672e-01 -9.65822786e-02 2.91272163e-01\\n4.91943881e-02 -2.76045293e-01 -1.84342369e-01 1.74787879e-01\\n1.16718769e-01 -3.74120444e-01 -2.05214411e-01 4.75183539e-02\\n2.56592423e-01 1.78696364e-02 1.84482783e-01 -4.47677374e-01\\n-6.68130070e-02 -2.09452629e-01 -1.43975437e-01 5.01841247e-01\\n2.16458008e-01 2.91687232e-02 -2.43994996e-01 -2.70706505e-01\\n4.12215650e-01 -8.92977789e-02 -5.60359061e-02 -1.98209986e-01\\n2.95626111e-02 -1.62104219e-01 -3.88458967e-01 4.40001711e-02\\n-5.18975742e-02 -5.11773489e-02 2.22649239e-02 3.13011184e-02\\n1.29123017e-01 7.45195895e-02 -5.29471934e-01 -2.07720190e-01\\n-2.53031343e-01 -1.08118638e-01 1.40799694e-02 -4.06599522e-01\\n5.92197292e-02 -7.43468385e-03 -6.36318207e-01 3.06066871e-01\\n-3.06495547e-01 9.54146758e-02 1.30129576e-01 8.76834095e-02\\n-4.51240152e-01 -1.30911306e-01 1.65414929e-01 1.52794510e-01\\n-2.88830251e-01 -1.08976416e-01 -9.61446315e-02 -1.08853316e+00\\n2.96982944e-01 -9.61849242e-02 -7.25740790e-02 2.27480270e-02\\n-4.63116020e-02 -7.93134034e-01 9.86428708e-02 -3.43419343e-01\\n1.87187120e-02 -2.07975358e-02 -1.08778752e-01 -4.32107568e-01\\n6.74312338e-02 -1.27865180e-01 -2.87211865e-01 2.68414289e-01\\n-4.44613755e-01 3.72799575e-01 -1.56655312e-01 1.28634110e-01\\n-3.51930298e-02 -3.12616080e-01 1.57254413e-01 -4.55645651e-01\\n-3.98627371e-01 -1.27781808e-01 -2.95688212e-01 -1.76665843e-01\\n-5.17622195e-02 -3.53044599e-01 -1.56716421e-01 1.14772148e-01\\n3.16042304e-01 1.14111893e-01 -6.10143542e-02 -2.41039008e-01\\n1.12457089e-01 -2.69582003e-01 3.24008316e-02 -1.21879131e-01\\n1.20718703e-01 -3.03700138e-02 1.75463855e-01 -4.79134964e-03\\n2.41457626e-01 -4.57437903e-01 4.01130646e-01 -3.77908587e-01\\n-4.42508519e-01 2.64437217e-03 4.21154946e-02 3.97810936e-02\\n3.01885575e-01 -4.86610025e-01 1.11247646e-02 2.37946510e-01\\n1.73222974e-01 1.22796781e-01 2.48659536e-01 1.86481662e-02\\n-1.54597655e-01 1.36411369e-01 -3.85708928e-01 9.71544441e-03\\n8.32945168e-01 1.75121665e-01 1.13029771e-01 9.02787372e-02\\n3.18379104e-02 3.77394587e-01 5.02191901e-01 -8.99109989e-03\\n-1.20048493e-01 2.51982510e-01 1.11550167e-01 -4.91380543e-01\\n-2.24850014e-01 -2.65921708e-02 -2.05087617e-01 -1.75069168e-01\\n6.28130555e-01 4.36543196e-01 -2.94996500e-01 -2.88637042e-01\\n-9.96529013e-02 -2.03501254e-01 1.74984753e-01 -5.48226386e-02\\n1.01103045e-01 -2.30957493e-01 6.27895594e-01 6.22641146e-02\\n2.44934604e-01 6.21182382e-01 -1.85486361e-01 -3.99862140e-01\\n-9.16196033e-02 1.68436378e-01 5.53882271e-02 3.10499460e-01\\n-1.42887026e-01 2.84558684e-01 1.68681350e-02 4.10193764e-02\\n-1.99829996e-01 5.01204096e-02 1.52698874e-01 4.43148576e-02\\n1.40622944e-01 2.18024269e-01 3.18108648e-01 5.23011446e-01\\n3.41097444e-01 5.57101846e-01 2.71017879e-01 3.59637737e-02\\n4.87620115e-01 4.76558000e-01 4.54230547e-01 2.08986163e-01\\n-1.76320306e-03 1.02056921e-01 2.16901347e-01 5.01393266e-02\\n4.69051331e-01 2.94091463e-01 1.79922462e-01 9.98627603e-01\\n3.48797649e-01 2.87032545e-01 8.43538225e-01 -6.43991292e-01\\n-3.18332583e-01 5.51734343e-02 4.55668807e-01 -4.48792756e-01\\n-1.03208646e-01 -2.35917289e-02 -1.22589260e-01 2.35548720e-01\\n-4.74328876e-01 -2.55274892e-01 -9.27144364e-02 1.68489486e-01\\n4.89928350e-02 -8.48086700e-02 -2.35221758e-01 5.56751527e-02\\n-2.20822483e-01 -1.62228793e-01 -4.53381389e-01 -1.14544705e-01\\n-2.33592719e-01 -1.03915513e-01 -7.65084699e-02 -1.84562787e-01\\n-3.26370820e-02 -3.98711294e-01 -2.02082708e-01 2.68614795e-02\\n3.79045993e-01 -2.30294168e-01 2.94798687e-02 -1.81650251e-01\\n2.43176535e-01 2.39570662e-01 6.50650203e-01 1.27208696e-04\\n1.63850382e-01 -2.21740499e-01 -2.02035472e-01 9.17099938e-02\\n2.68027466e-02 1.37803748e-01 1.17072977e-01 3.76176268e-01\\n-4.04191136e-01 -2.14482509e-02 1.21888354e-01 5.50979197e-01\\n-3.42247546e-01 -9.31182057e-02 -1.53794706e-01 1.38029650e-01\\n6.04198799e-02 1.23234972e-01 -1.84309915e-01 -2.02576760e-02\\n-2.62405872e-01 -5.71299553e-01 3.52944851e-01 -1.24262683e-01\\n-1.58385515e-01 1.21032149e-01 3.36867213e-01 1.86535716e-01\\n-2.29159430e-01 9.08462738e-04 4.92382459e-02 1.94130823e-01\\n1.63496256e-01 3.55838865e-01 -3.36899340e-01 -2.02272743e-01\\n-1.60276696e-01 2.56040275e-01 -1.89696684e-01 2.15142649e-02\\n-9.00366232e-02 4.16060656e-01 2.68871486e-02 9.36951786e-02\\n3.94507438e-01 -4.32611518e-02 -1.73853770e-01 -2.69220442e-01\\n-1.61375061e-01 -2.79768169e-01 5.43620624e-02 -1.25683665e-01\\n2.65155464e-01 -3.70299548e-01 -8.55093896e-02 -1.29202113e-01\\n-5.75658605e-02 -3.69844526e-01 -1.52958527e-01 4.67682397e-03]]',\n", + " 'We are looking for young, enthusiastic and talented Software Engineer In this position you will be responsible for embedded software development in C++ and other programming languages. You will develop software under different operating systems using provided Application Programming Interfaces (APIs). In dynamic, multicultural environment of our company, you will be part of a team working on projects in the area of Telecommunications, Wireless, Networked Entertainment and Multimedia. In cooperation with leading European companies, you will be developing cutting-edge technology products. Exciting, challenging tasks are waiting for you! As a successful candidate for this position you must be able to demonstrate the following qualifications: 2+ years of experience in software development Strong knowledge of object-oriented (OO) design principles Extensive programming experience in C++ and multi-threading environments Basic computer engineering knowledge (processor and memory organization, stack, calling conventions, interrupt handling, etc.) Good written and verbal communication skills in English Good analytical and problem-solving skills Any of the following qualifications will be a plus: Experience with real-time operating systems (RTOS) and Linux Software design and development process using UML Understanding of embedded software development principles Hands-on experience with hardware debuggers and device-level programming Practical knowledge of MS VS, GCC, STL, Perl, CVS/Subversion, ADS (RealView), Socket API Familiarity with the ARM architecture and assembler Software analysis, review and re-factoring skills We offer: Exciting carrier and professional opportunities in a dynamically developing company with Swiss quality standards and stability Enjoyable working atmosphere in our engineering offices, conveniently located in 5-minute walking distance from Zug railway station. If you are interested in this position, please, send your resume at jobs@epscom.net We are looking forward to your application!',\n", + " '[\"Verbal Communication Skills\", \"Cooperation\", \"Professionalism\", \"Problem Solving\", \"Positivity\"]',\n", + " '[\"KM Programming Language\", \"Programming (Music)\", \"UML Tool\", \"Analytics\", \"Perl (Programming Language)\", \"C++ (Programming Language)\", \"Linux\", \"Agile Edge Technologies\", \"Process Driven Development\", \"Software Engineering\", \"ARM Architecture\", \"Operating Systems\", \"Multimedia\", \"AD Model Builder (ADMB)\", \"Standard Template Library (STL)\", \"Object-Oriented Design\", \"Wireless Telecommunications\", \"Software Design\", \"Computer Engineering\", \"Wireless Networks\", \"Software Development\", \"Software Business Analysis\", \"Application Programming Interface (API)\", \"Embedded Software\", \"Apache Subversion\", \"Real-Time Operating Systems\", \"Interrupt Handling\", \"Threading (Manufacturing)\"]',\n", + " \"['English', 'Maltes', 'Luxembourgish']\"],\n", + " ['84',\n", + " 'software engineer - .net developer w/m',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.01657408e-01 2.30316505e-01 5.26042521e-01 -8.72600079e-02\\n4.53993380e-01 -1.98693052e-01 -4.32159677e-02 4.65722531e-01\\n-1.48710459e-01 -3.88769388e-01 -1.91301897e-01 -3.22442859e-01\\n-7.62060061e-02 1.10869899e-01 2.56091684e-01 3.47763777e-01\\n3.33220124e-01 1.18078180e-01 -2.80989975e-01 2.60545522e-01\\n1.94182679e-01 2.88035795e-02 8.21112022e-02 7.07120717e-01\\n3.54223788e-01 4.11188267e-02 -8.30323398e-02 -8.85845050e-02\\n-2.78669566e-01 -2.18544230e-01 3.54387879e-01 -1.13285892e-01\\n9.43706837e-03 -3.22178423e-01 3.10933106e-02 2.85002198e-02\\n-1.44600525e-01 -4.73411791e-02 5.77373095e-02 7.23253414e-02\\n-5.18574059e-01 -2.85762548e-01 9.77040604e-02 1.04219258e-01\\n-1.26700684e-01 -2.94646025e-01 1.31777346e-01 5.10048755e-02\\n-7.62825226e-03 1.76417325e-02 -6.26534224e-01 3.51388305e-01\\n-1.37516931e-01 -1.61844820e-01 2.68187255e-01 5.19277930e-01\\n9.07676667e-02 -4.50406134e-01 -3.79254997e-01 -2.19055891e-01\\n1.39114901e-01 -6.55782670e-02 1.14454091e-01 -1.67829424e-01\\n4.26876605e-01 4.10379702e-03 -1.53040802e-02 3.15018803e-01\\n-6.47643447e-01 -6.51689023e-02 -1.40244767e-01 -9.32807848e-02\\n-3.80440384e-01 -6.90393150e-02 -1.61267996e-01 -1.86128616e-01\\n-1.57983258e-01 3.76804471e-01 2.10373942e-02 6.85177967e-02\\n-1.69157624e-01 2.39717484e-01 -1.01084098e-01 1.99774280e-01\\n2.34521732e-01 3.20394963e-01 1.94464326e-01 3.26440394e-01\\n-4.34007525e-01 4.29572970e-01 1.73872471e-01 -3.14605385e-01\\n2.68397987e-01 8.12376440e-02 4.69510794e-01 -6.63764775e-04\\n-2.89315172e-02 5.91853261e-02 -1.55917436e-01 1.95396334e-01\\n1.83167130e-01 -2.79840797e-01 5.58342924e-03 -4.80667055e-02\\n-1.07893668e-01 7.28609413e-02 -3.61531787e-02 2.64011979e-01\\n-3.36755455e-01 3.47040176e-01 1.94233999e-01 -1.80412635e-01\\n-1.41463339e-01 -6.26322746e-01 -6.01723269e-02 4.15914170e-02\\n8.80032256e-02 1.40708074e-01 3.84188771e-01 1.16005167e-01\\n2.81707048e-01 -7.74355186e-03 2.41218403e-01 9.65571523e-01\\n-4.74150740e-02 1.07582688e-01 -2.76836783e-01 4.63726968e-01\\n1.14230432e-01 -2.82994151e-01 1.59000471e-01 2.51056403e-01\\n8.21049288e-02 -5.54673411e-02 -1.60506502e-01 3.05519760e-01\\n-1.55198360e-02 -1.57149702e-01 -2.81945586e-01 7.26208910e-02\\n-2.24192902e-01 -4.12770182e-01 5.26985168e-01 1.16957948e-01\\n1.21497825e-01 -1.62992656e-01 -6.64501591e-03 -1.71597436e-01\\n-7.73010999e-02 2.91583210e-01 -5.16703166e-03 1.44726664e-01\\n-3.10260117e-01 -1.66110381e-01 -1.79787949e-01 2.85868943e-01\\n-8.10527653e-02 1.28754824e-01 -5.21859489e-02 -1.62502185e-01\\n3.78315240e-01 7.79769644e-02 -3.39269757e-01 2.55399853e-01\\n-1.87735632e-02 -1.86854005e-01 -8.24888498e-02 1.77755430e-01\\n-1.45436704e-01 1.77360132e-01 -2.99099693e-03 -1.59789100e-01\\n4.00778800e-01 1.08157024e-01 2.41037488e-01 -8.32973868e-02\\n3.35556924e-01 -2.23514304e-01 1.19611971e-01 1.30593076e-01\\n-6.25571430e-01 3.50767910e-01 -4.21801992e-02 -2.29649469e-01\\n9.87343118e-02 8.38403329e-02 4.01858002e-01 -2.06678331e-01\\n1.82592683e-02 -2.28926122e-01 -3.76924276e-01 -3.97141963e-01\\n-2.18826801e-01 -2.89369700e-03 3.97470921e-01 -4.26047057e-01\\n-8.48829001e-02 1.33379266e-01 -4.62853640e-01 -5.70487529e-02\\n1.54725134e-01 2.35626012e-01 -3.24324286e-03 7.60859177e-02\\n-1.41524315e-01 -5.09381235e-01 -3.49010644e-03 -4.50809926e-01\\n-4.86829937e-01 5.03723435e-02 -2.36261696e-01 2.75848210e-01\\n7.04765841e-02 -5.20541742e-02 -1.09029301e-01 1.82467371e-01\\n-2.19011903e-01 2.38632932e-02 1.98784277e-01 1.13973178e-01\\n3.25975686e-01 -4.55042906e-03 -4.06870842e-01 5.26638925e-01\\n-2.47084171e-01 4.39072043e-01 1.11540489e-01 -8.62606168e-01\\n5.28003752e-01 2.48369306e-01 3.06366738e-02 -4.21203971e-01\\n6.95800781e-01 -2.86491513e-01 4.32357490e-02 1.74495146e-01\\n-4.44431126e-01 -2.48281032e-01 2.98005164e-01 -1.40056849e-01\\n-2.04928413e-01 6.21417522e-01 1.27516091e-01 -4.95990328e-02\\n1.78120956e-01 -2.57954895e-01 -1.56515077e-01 1.92018244e-02\\n-8.06622505e-02 -3.19092661e-01 -4.05395478e-01 3.80146466e-02\\n-1.01809837e-01 -4.17731792e-01 -2.30812058e-01 -4.69049394e-01\\n-1.55004919e-01 -3.93153608e-01 -2.32734516e-01 4.07873452e-01\\n1.60260320e-01 8.18269253e-02 2.64743790e-02 -1.81194380e-04\\n-1.10518225e-01 -4.83779132e-01 -6.53129295e-02 3.62274945e-02\\n5.01109958e-01 2.79971659e-01 8.92833024e-02 2.73971411e-04\\n-1.14397459e-01 4.87327367e-01 -1.84871808e-01 -2.12629586e-01\\n1.37901425e-01 1.89772755e-01 9.74273309e-03 -8.47181585e-03\\n1.16365952e-02 3.24117631e-01 -1.43951297e-01 -3.57133821e-02\\n-1.18272565e-01 7.76449144e-02 3.41947585e-01 -2.78005321e-02\\n-2.86080629e-01 -1.93823889e-01 8.93855281e-03 3.27466756e-01\\n-5.47079623e-01 -1.95203200e-01 5.30026436e-01 2.14526981e-01\\n1.23824030e-01 2.05431223e-01 2.03975216e-01 -1.29122138e-01\\n-1.45172358e-01 -2.84640193e-01 1.59101963e-01 1.02967583e-01\\n1.81799874e-01 5.56185506e-02 -9.27492827e-02 -5.30307472e-01\\n-3.47864795e+00 -2.21044689e-01 7.52913281e-02 -3.34521145e-01\\n1.27890781e-01 -1.61596462e-01 1.15579637e-02 -7.93188959e-02\\n-2.88460523e-01 1.16560817e-01 -2.06608340e-01 -1.59368202e-01\\n1.86076507e-01 2.10269094e-01 1.30117182e-02 2.95698315e-01\\n2.01134309e-02 -1.17637962e-01 -1.05754500e-02 2.47143000e-01\\n-2.29296297e-01 -7.16016412e-01 2.09988266e-01 -1.09744065e-01\\n1.80342078e-01 3.02353233e-01 -4.32897776e-01 -1.82762668e-01\\n-1.96550995e-01 -2.67577052e-01 1.68055788e-01 -2.68152297e-01\\n-7.09383935e-02 3.81940663e-01 1.73063174e-01 -8.92019570e-02\\n1.43478513e-01 -3.20594817e-01 -3.08055058e-02 -4.85928386e-01\\n1.94170386e-01 -6.12210691e-01 -5.52832037e-02 -2.24623755e-02\\n6.88734412e-01 -3.89870226e-01 2.27409959e-01 1.69976309e-01\\n2.13257432e-01 2.59818673e-01 -3.58176641e-02 -9.12822559e-02\\n-2.17227474e-01 -3.35270166e-01 -3.78949642e-02 -2.29675874e-01\\n4.11398321e-01 6.01249933e-01 -1.26634508e-01 7.15008527e-02\\n1.40247047e-02 -1.86520129e-01 -3.93612623e-01 -3.71801317e-01\\n-2.04945609e-01 -1.79050490e-01 -6.16498411e-01 -3.83029193e-01\\n-1.35347635e-01 -1.33216962e-01 -1.25852257e-01 6.14490092e-01\\n-2.44769752e-01 -4.28459883e-01 5.69914617e-02 -5.85926533e-01\\n1.43331140e-01 -2.82705218e-01 -6.41627163e-02 -1.94557354e-01\\n-3.09480935e-01 -5.03614187e-01 9.93304178e-02 5.06230630e-02\\n-1.18170395e-01 -1.20080650e-01 9.96291414e-02 -3.15063119e-01\\n-2.71412045e-01 -4.22720760e-01 4.33024794e-01 1.73821226e-01\\n3.42947215e-01 1.56143218e-01 2.25925952e-01 2.15346172e-01\\n2.74255693e-01 -1.82794109e-01 1.23248592e-01 -4.69160557e-01\\n1.29776895e-01 6.87053800e-02 4.86953706e-01 -2.07567602e-01\\n-3.05376090e-02 1.39112726e-01 -1.63504586e-01 -1.01614945e-01\\n3.60747784e-01 2.60422993e-02 -3.13207367e-03 -9.00996253e-02\\n3.19215596e-01 -5.20843327e-01 -1.69356793e-01 8.80354941e-02\\n-7.25154653e-02 5.89414954e-01 -5.49721196e-02 -3.76794934e-01\\n-2.66839206e-01 4.94782120e-01 -5.85391708e-02 -1.56812772e-01\\n-1.05907381e-01 2.18588755e-01 -1.65321618e-01 1.30275801e-01\\n-2.15784367e-02 -2.94437289e-01 -3.67575526e-01 -4.00124863e-02\\n-5.17578758e-02 1.65222615e-01 2.54662424e-01 5.76269068e-02\\n-2.38845591e-02 -3.60036224e-01 -1.58335660e-02 9.85415876e-02\\n3.61271858e-01 4.21312064e-01 1.17894366e-01 -1.05998643e-01\\n5.57792410e-02 2.79089570e-01 -1.48224354e-01 2.46851549e-01\\n-1.94381893e-01 1.50626488e-02 -4.15307850e-01 -3.39877933e-01\\n-1.93253696e-01 -3.39001805e-01 2.73951888e-02 2.59762317e-01\\n2.18290761e-01 1.39832934e-02 -1.97436893e-03 -4.34294939e-01\\n3.72914881e-01 -1.42825218e-02 1.90003067e-01 1.57943472e-01\\n7.91264400e-02 5.56112766e-01 1.52871171e-02 1.07662287e-02\\n-1.51287407e-01 -5.66689298e-02 -1.49415433e-01 -1.85012564e-01\\n8.68122429e-02 -2.75461316e-01 -7.65203536e-02 4.16148633e-01\\n8.19613114e-02 -4.18476760e-01 -5.35611957e-02 3.66258353e-01\\n1.63969565e-02 -2.66350508e-01 -1.59743309e-01 1.54506087e-01\\n2.45470434e-01 1.17358617e-01 1.99685410e-01 -4.57636237e-01\\n-8.44222903e-02 8.59304816e-02 8.80188029e-03 4.32779789e-01\\n9.22154933e-02 1.69989437e-01 -7.78091177e-02 -3.54519725e-01\\n3.06295246e-01 -2.19712734e-01 -9.55667049e-02 -5.89797124e-02\\n1.66751444e-02 -1.22725308e-01 -4.78102893e-01 1.26251578e-02\\n-1.00458845e-01 -2.04753175e-01 -3.46274227e-02 7.36821517e-02\\n1.83986962e-01 6.98039215e-03 -4.16574866e-01 -2.69577563e-01\\n-3.43822837e-01 -4.97456305e-02 -1.73592614e-03 -3.06948841e-01\\n2.68069445e-03 -6.63644001e-02 -6.32181644e-01 2.35883236e-01\\n-2.22123325e-01 -2.98697669e-02 1.35699525e-01 3.24799083e-02\\n-4.05016124e-01 -4.21436615e-02 1.90183878e-01 1.27946869e-01\\n-2.61944354e-01 -2.62508035e-01 1.52523324e-01 -1.00188899e+00\\n9.55086276e-02 -2.13378090e-02 -8.59925449e-02 3.44850682e-03\\n-6.64010197e-02 -5.69378734e-01 1.08484477e-01 -3.78643245e-01\\n-7.40260854e-02 -2.36359835e-02 -1.77935869e-01 -3.82951349e-01\\n6.66894987e-02 -7.95539990e-02 -2.78036922e-01 4.15881753e-01\\n-3.99640292e-01 3.00654590e-01 -1.09746747e-01 5.15957139e-02\\n-3.69774527e-03 -2.46386111e-01 1.61697209e-01 -2.61516273e-01\\n-4.01421487e-01 -7.71443620e-02 -3.94240409e-01 -2.76821703e-01\\n3.57873850e-02 -1.53610215e-01 -1.86638400e-01 5.67276217e-02\\n3.73638779e-01 2.47095488e-02 -1.59127712e-01 -2.94166416e-01\\n9.39259678e-02 -4.03371543e-01 1.43163174e-01 -1.32697701e-01\\n-8.23514313e-02 -4.85573411e-02 1.66207984e-01 4.88710515e-02\\n2.04997882e-02 -3.80417973e-01 4.43856895e-01 -2.50555933e-01\\n-3.48599523e-01 9.30380728e-03 3.47732529e-02 1.22084141e-01\\n3.03717852e-01 -6.10043049e-01 8.09883233e-03 3.31897169e-01\\n1.84408203e-01 1.27481028e-01 2.00592205e-01 -6.08587563e-02\\n-2.08650157e-01 3.51026207e-01 -4.32103574e-01 5.26391529e-02\\n7.39688993e-01 1.03679873e-01 4.80277278e-02 2.23765269e-01\\n2.68755585e-01 2.79728711e-01 4.53116268e-01 -6.14792705e-02\\n-1.08761452e-01 2.46584654e-01 4.00902778e-02 -5.60584128e-01\\n-8.19079801e-02 -1.13639809e-01 -2.35606298e-01 -4.45130467e-01\\n5.28547227e-01 4.19264525e-01 -3.58696282e-01 -2.11495176e-01\\n-1.49978608e-01 -1.95933655e-02 2.14915201e-01 -1.91650569e-01\\n2.85303332e-02 -1.09086350e-01 5.22689521e-01 2.33817622e-02\\n3.44725966e-01 5.76641798e-01 -1.00705497e-01 -4.19857830e-01\\n-1.46472007e-01 7.99509585e-02 1.97171360e-01 3.88619274e-01\\n-5.48314080e-02 2.21585870e-01 -4.78931982e-03 1.48326591e-01\\n-4.92946617e-02 1.34689555e-01 1.30722765e-02 3.48390117e-02\\n1.78639799e-01 4.74532433e-02 3.11515361e-01 4.28870976e-01\\n2.12452784e-01 5.22460938e-01 2.77625203e-01 1.18570812e-01\\n4.00064975e-01 6.08640611e-01 3.78539920e-01 1.62183523e-01\\n-6.17025681e-02 1.15506850e-01 -3.20145972e-02 -1.32013381e-01\\n3.20725799e-01 2.34900519e-01 1.06777489e-01 8.96721423e-01\\n4.49434876e-01 3.10035318e-01 8.22513819e-01 -5.25242031e-01\\n-4.49845880e-01 8.07984248e-02 4.30306405e-01 -3.32671404e-01\\n-9.97834131e-02 1.33153394e-01 -2.08684355e-01 2.31077909e-01\\n-4.54648018e-01 -9.72831920e-02 -4.57446463e-02 -3.57262604e-02\\n7.16367364e-02 -1.18041195e-01 -3.09559584e-01 -3.28844264e-02\\n-1.96422726e-01 -1.37569100e-01 -4.35113788e-01 -1.13557264e-01\\n-3.07073414e-01 -1.60342231e-01 -1.84387580e-01 -1.41903803e-01\\n-4.31750268e-02 -3.27618837e-01 -1.70762718e-01 6.36838377e-02\\n3.12531412e-01 -5.77795990e-02 -5.97471707e-02 -2.34154075e-01\\n2.49766469e-01 2.59165406e-01 5.31386673e-01 -3.04018054e-02\\n1.72598854e-01 -1.49280891e-01 -2.80146003e-01 2.45943945e-02\\n1.28066838e-01 4.25493345e-02 1.01034142e-01 4.06463742e-01\\n-3.15971553e-01 -1.21132933e-01 1.78289935e-01 4.70815331e-01\\n-3.65720093e-01 -1.82724502e-02 -5.54929627e-03 2.99797535e-01\\n1.42836750e-01 6.46017864e-02 -2.51224697e-01 1.06767423e-01\\n-3.01643193e-01 -5.51688313e-01 3.36228400e-01 -1.55969128e-01\\n-5.94274607e-03 9.92349982e-02 3.02237481e-01 2.23221362e-01\\n-1.66063339e-01 -6.45069033e-03 -2.30027214e-02 3.03805888e-01\\n1.61926821e-01 3.61758471e-01 -2.70284951e-01 -1.81942612e-01\\n-2.39786342e-01 1.87577620e-01 -2.68125266e-01 1.32000387e-01\\n-1.61910027e-01 3.24789643e-01 4.35116850e-02 1.38164937e-01\\n1.37695134e-01 4.01956551e-02 -2.39966556e-01 -2.63764739e-01\\n-3.34358811e-01 -2.49595091e-01 1.14812411e-01 -1.49073293e-02\\n2.13729322e-01 -3.78666103e-01 -4.26807813e-02 -1.60440341e-01\\n-1.12145901e-01 -2.99565375e-01 6.32503927e-02 -1.10410452e-01]]',\n", + " 'Über unseren Kunden With already 25 000 consultants around the world and revenues of CHF. 2 Bn., our client is already the global leader in innovation and high-tech engineering consulting. In Switzerland, our client employs more than 200 consultants and aims towards large growth. We operate particularly in Life Sciences (Pharma, Biotech, and Medical Devices), Industry (Watches, MEMs), Aerospace, Automotive, Energy, Railways, Finance and Telecoms sectors. Our client deploys activities throughout Switzerland with premises in Zürich, Basel, Lausanne and Geneva. Ihr Aufgabenbereich Detailed requirements analysis, designing, and developing code. Architecture discussion. Coding, testing, debugging, and documenting programs. Revising and updating programs. Integration and deployment scripts. Participating in production support including investigation and fixing bugs. Ihr Profil Education level: Master or Engineering Degree in Software Engineering (EPFL, ETH, HES or equivalent). Requirements: Minimum 7 years of experience in .NET development. Minimum of 4 years of relevant experience with WPF. Proven experience in UI web technologies: HTML, CSS, Javascript. Professional use of programming languages: .NET / C#, ASP.NET, Web Services (WCF), MVC patterns and Web API. Experience with traditional RDBMS databases, such as SQL Server, Oracle SQL, NoSQL. Extensive experience with a common application server (JBoss, IBM Websphere or BEA Weblogic). Microsoft Prism/ MVVM and unity/ IOC grandly appreciated. Experience with Big Data (Hadoop, Teradata) is a plus. Any experience in mobile development (Android, iOS, Xamarin) is a plus. Ability to work with Agile Methodology (Scrum, XP, TFS etc…) Key qualities: You know how to take initiative You like to work in a multidisciplinary team You value knowledge-sharing You must have strong verbal and writing communication capabilities. Ihre Chance Our client offers an exciting tailored career path for your professional and personal development within an international company. You will be accompanied from the beginning with specific coaching and mentoring programs and intensive training on innovation and management in a fast-moving and results driven environment. Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung:Sprachen: Job ID: 384',\n", + " '[\"Professionalism\", \"Investigation\", \"Management\", \"Operations\", \"Integration\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Code Testing\", \"NoSQL\", \"ASP.NET\", \"KM Programming Language\", \"Micro Electro-Mechanical Systems (MEMS)\", \"Cascading Style Sheets (CSS)\", \"Life Sciences\", \"Industrialization\", \"IBM WebSphere MQ\", \"Xamarin.ios\", \"Activism\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"High Tech Manufacturing\", \"Scrum (Software Development)\", \"Application Servers\", \"Levelling\", \"HyperText Markup Language (HTML)\", \"Software Engineering\", \"Web Services\", \"Medical Devices\", \"Agile Methodology\", \"Finance\", \"Mobile Application Development\", \"Wcf 4\", \"C# (Programming Language)\", \"Pathing\", \"JavaScript (Programming Language)\", \"Production Support\", \"Revisions\", \"Big Data\", \"Android Software Development\", \"SQL Server Reporting Services\", \"Requirements Analysis\", \"Scripting\", \"Prism\", \"Personality Development\", \"Web UI\", \"Application Programming Interface (API)\", \"Debugging\"]',\n", + " \"['English', 'Kongo', 'Mongolian', 'Arabic']\"],\n", + " ['118',\n", + " 'software engineer java/angular',\n", + " 'Bern',\n", + " 'IT Services',\n", + " 'www.swisscom.ch',\n", + " '[[-4.16965753e-01 1.30104199e-01 4.12405014e-01 6.62759691e-02\\n5.24131119e-01 -1.54747233e-01 -1.10941164e-01 3.15400183e-01\\n5.01498487e-03 -4.59576726e-01 -7.31892511e-02 -2.16326535e-01\\n-7.85968266e-03 6.35129139e-02 2.68234499e-02 2.81249076e-01\\n2.22770005e-01 1.49195611e-01 -5.70747331e-02 2.98343271e-01\\n2.94750719e-03 6.12106640e-04 4.79604304e-02 6.42730057e-01\\n2.36743227e-01 -2.35249307e-02 -1.09836005e-03 1.31894052e-01\\n-2.80982643e-01 -2.08444446e-01 3.20984006e-01 8.68297070e-02\\n-2.55135387e-01 -2.73158967e-01 1.95114147e-02 4.28909529e-03\\n-1.55160323e-01 -1.11353546e-01 -1.64435342e-01 2.09473521e-01\\n-4.63653892e-01 -2.72957653e-01 1.62932873e-01 -4.54873890e-02\\n-1.73800826e-01 -3.21503878e-01 3.67197134e-02 4.73831035e-02\\n1.22575253e-01 -1.79998409e-02 -4.91408706e-01 3.43986124e-01\\n-1.92458361e-01 -6.51295483e-02 3.65059495e-01 5.32947600e-01\\n1.32279560e-01 -5.17428935e-01 -1.20849021e-01 -2.04999149e-01\\n1.13797523e-01 -1.49653954e-02 3.54290940e-02 -3.41850042e-01\\n4.25276220e-01 -2.53574084e-02 -6.66119903e-02 2.89302230e-01\\n-8.39613497e-01 6.77393824e-02 -3.63426059e-01 2.06609238e-02\\n-3.67710322e-01 -3.18991323e-03 -2.33224675e-01 -1.79964557e-01\\n-1.80586711e-01 3.15427184e-01 2.00152975e-02 6.37574717e-02\\n-1.88595518e-01 2.41701156e-01 -1.80167347e-01 1.59231380e-01\\n3.61279190e-01 2.26766855e-01 1.51898175e-01 3.65981787e-01\\n-4.94116664e-01 3.48006397e-01 3.06154937e-01 -3.08871567e-01\\n2.74513632e-01 1.63364306e-01 4.15625036e-01 1.15806662e-01\\n5.63020855e-02 1.32569134e-01 -3.52692641e-02 2.60529876e-01\\n1.74956843e-01 -2.90122896e-01 3.54597578e-03 -1.06906518e-02\\n-2.09732950e-02 -1.97978109e-01 -5.05161695e-02 2.13225916e-01\\n-1.37910724e-01 3.15148264e-01 -2.11975742e-02 -2.24811912e-01\\n1.32495865e-01 -5.09428740e-01 -1.95863158e-01 1.03410311e-01\\n-7.80245364e-02 1.11808166e-01 3.92824113e-01 1.86180040e-01\\n1.61953643e-01 2.58579403e-01 1.44823343e-01 9.15312350e-01\\n-9.76408198e-02 7.21175000e-02 -2.74113327e-01 4.10181344e-01\\n2.95039803e-01 -1.92865103e-01 1.15603603e-01 2.58610994e-01\\n1.07934520e-01 -7.53626525e-02 -1.93637982e-01 2.74594545e-01\\n-4.74146195e-03 -1.30470783e-01 -3.07514757e-01 1.18611164e-01\\n-2.48394772e-01 -4.10477161e-01 5.70455432e-01 5.42136654e-02\\n2.16763198e-01 4.46080267e-02 -1.20422751e-01 -1.27334818e-01\\n-4.69524488e-02 2.91306615e-01 -2.78197229e-02 2.23080143e-01\\n-3.29148352e-01 -1.08958676e-01 -2.85340458e-01 3.84520918e-01\\n-3.57390866e-02 2.34732300e-01 -1.95870429e-01 -7.61557296e-02\\n3.03184748e-01 1.35816082e-01 -3.81674081e-01 2.01700926e-01\\n-8.26081336e-02 -2.75783807e-01 -2.88942140e-02 3.10904443e-01\\n-1.11283638e-01 1.83016554e-01 -2.94257700e-03 -1.62167698e-01\\n3.77638847e-01 2.28634030e-02 1.45538256e-01 -1.29991829e-01\\n3.25775653e-01 -1.85651183e-01 2.04807788e-01 1.34500608e-01\\n-9.24480975e-01 4.20826972e-01 -3.57663147e-02 -1.67947143e-01\\n4.50120904e-02 2.20494881e-01 2.95506090e-01 -3.20345789e-01\\n-9.87959281e-02 -1.30967140e-01 -4.16571736e-01 -3.96771371e-01\\n-3.19675416e-01 -1.39415115e-01 4.35057461e-01 -5.26652992e-01\\n-1.21576801e-01 7.36181214e-02 -6.25250757e-01 4.65291925e-02\\n2.10757092e-01 1.18189856e-01 1.61424309e-01 -3.85909639e-02\\n-5.91973104e-02 -6.01194561e-01 -1.10409640e-01 -5.66511810e-01\\n-4.00432318e-01 3.91143039e-02 -2.22967073e-01 1.61883801e-01\\n2.32775405e-01 -2.22137067e-02 -9.90659371e-03 3.88161391e-02\\n-3.02774340e-01 1.20767765e-01 2.21966311e-01 1.71355829e-01\\n4.19490516e-01 -5.31572066e-02 -4.74512458e-01 6.12745821e-01\\n-1.80613965e-01 3.94169003e-01 2.33826146e-01 -7.68422782e-01\\n5.69250762e-01 3.13053995e-01 -1.58719532e-02 -2.95920402e-01\\n5.03066659e-01 -4.57818836e-01 -6.79840669e-02 1.21548608e-01\\n-3.16965133e-01 -9.12178010e-02 1.11171283e-01 -1.07267901e-01\\n-3.10171127e-01 6.78246856e-01 2.21274793e-01 1.13478517e-02\\n3.61348510e-01 -3.88759911e-01 -2.16541097e-01 -5.25174849e-02\\n-7.59290457e-02 -4.34731841e-01 -3.93855542e-01 -2.99651008e-02\\n2.40504500e-02 -5.79887211e-01 -2.37244666e-01 -3.87573272e-01\\n-9.93303135e-02 -2.74275839e-01 -2.41276845e-01 3.60665202e-01\\n1.75839931e-01 1.30588949e-01 9.85012483e-03 -1.10853761e-01\\n-1.00692220e-01 -5.95754564e-01 -1.51801839e-01 8.11340958e-02\\n3.40381205e-01 2.44508788e-01 7.51497224e-02 -1.70356095e-01\\n4.24038246e-02 4.98554528e-01 -3.67914855e-01 -3.87517810e-01\\n1.88244984e-01 2.30676621e-01 -1.66751146e-01 -3.61844227e-02\\n1.20888636e-01 3.03480566e-01 -1.55497745e-01 2.45344527e-02\\n-2.52503976e-02 5.61942812e-03 3.57555002e-01 -1.76548809e-01\\n-3.32578778e-01 -3.08885664e-01 -1.60639398e-02 2.64064312e-01\\n-4.83480006e-01 -1.65796533e-01 5.09334385e-01 3.20726454e-01\\n1.23452082e-01 2.50657916e-01 2.68863589e-01 -1.10400707e-01\\n-2.98446804e-01 -1.98842838e-01 1.55635148e-01 2.41629958e-01\\n6.32404834e-02 -1.25994354e-01 -2.15171218e-01 -4.25918430e-01\\n-3.71031594e+00 -2.06708834e-01 7.64100179e-02 -2.50097185e-01\\n1.60580367e-01 -2.03822985e-01 1.52532831e-01 -2.91017685e-02\\n-2.54189640e-01 1.59514591e-01 -1.55910194e-01 -2.08235398e-01\\n8.34776908e-02 2.60665536e-01 1.21871129e-01 1.79051265e-01\\n-1.36366012e-02 -2.23522887e-01 8.75492208e-03 1.49504662e-01\\n-5.27866520e-02 -7.54071355e-01 1.14222683e-01 -5.51748788e-03\\n2.78662026e-01 1.88581184e-01 -4.84750569e-01 3.47348899e-02\\n-2.65270740e-01 -2.81141222e-01 9.62765813e-02 -2.68056661e-01\\n-4.54057008e-02 1.93962872e-01 1.04722910e-01 -1.37201622e-01\\n1.05578318e-01 -1.59167096e-01 -7.62828216e-02 -4.80932504e-01\\n9.49903280e-02 -3.57180685e-01 9.43092406e-02 7.17177391e-02\\n6.98014319e-01 -5.09829760e-01 1.73476100e-01 1.48964942e-01\\n1.67947039e-01 2.08687767e-01 8.41878727e-03 -2.87849805e-03\\n-2.38069981e-01 -2.74399132e-01 -1.11900508e-01 -3.36805135e-01\\n5.15845537e-01 4.69196230e-01 -3.53009135e-01 9.41464677e-02\\n1.16820678e-01 -2.89207309e-01 -3.86897951e-01 -6.34125531e-01\\n-2.02307075e-01 -6.29894882e-02 -8.47320497e-01 -4.50233817e-01\\n-1.35690004e-01 -8.88980031e-02 -1.29135624e-01 5.61428905e-01\\n-3.07437688e-01 -5.64943016e-01 1.59795150e-01 -5.41460514e-01\\n1.51367202e-01 -1.92374423e-01 9.74119231e-02 -1.53761804e-01\\n-2.90510237e-01 -4.35157329e-01 1.75956205e-01 7.71812350e-02\\n-1.83545440e-01 -1.01211995e-01 7.09175989e-02 -3.59477192e-01\\n-2.80232936e-01 -4.22915161e-01 4.50320065e-01 9.78807583e-02\\n3.22098166e-01 1.40627414e-01 3.01782966e-01 1.64809331e-01\\n2.68706083e-01 -1.13207392e-01 2.21518688e-02 -4.36120450e-01\\n2.26189539e-01 -4.72658500e-02 4.52802300e-01 -1.24808170e-01\\n6.96225930e-03 2.28588402e-01 -9.00310278e-02 -2.20794380e-01\\n4.75347549e-01 7.92894512e-02 1.12674832e-01 -2.52055973e-01\\n4.57653731e-01 -5.35212696e-01 -2.66738504e-01 3.03288907e-01\\n4.15205173e-02 5.70316076e-01 1.51331648e-01 -3.41046005e-01\\n-1.91799864e-01 3.31092447e-01 9.03495699e-02 -1.91132590e-01\\n-1.00879692e-01 5.85719645e-02 -2.56096214e-01 2.22761318e-01\\n5.98856434e-02 -2.56870925e-01 -2.68317491e-01 -7.40766600e-02\\n6.12970218e-02 1.89645544e-01 2.69917220e-01 8.65752809e-03\\n-3.24452370e-02 -1.71158478e-01 5.55060953e-02 -2.52961256e-02\\n2.33417749e-01 3.12664837e-01 2.26507843e-01 -2.49126509e-01\\n2.45479606e-02 2.34137237e-01 -1.51635721e-01 1.72924548e-01\\n-1.14183106e-01 1.40568158e-02 -4.59291816e-01 -2.65914470e-01\\n-2.19637409e-01 -1.96592078e-01 -2.56383289e-02 2.07217753e-01\\n1.68785259e-01 -1.27785355e-01 -3.66337597e-02 -4.36480850e-01\\n3.42743725e-01 1.07747324e-01 2.18913108e-01 1.58411354e-01\\n-4.88634594e-03 5.89559853e-01 -1.00946046e-01 -1.35332450e-01\\n-6.29404485e-02 4.68722433e-02 -1.13991290e-01 -3.14046621e-01\\n7.06611350e-02 -3.69416475e-01 -1.40634641e-01 3.98946881e-01\\n8.17260370e-02 -1.59549892e-01 -1.17849052e-01 3.07710290e-01\\n5.91988042e-02 -3.41218084e-01 -2.01079324e-01 8.43514130e-02\\n3.44300330e-01 1.44250751e-01 1.22745007e-01 -3.40225190e-01\\n-5.21201305e-02 3.62516451e-03 1.31625682e-02 4.77725565e-01\\n1.40264615e-01 1.15722409e-02 -1.52682262e-02 -3.83803397e-01\\n3.76472950e-01 -3.43810841e-02 -1.17076293e-01 -2.20121160e-01\\n6.05035946e-02 -1.94559053e-01 -3.60515416e-01 7.63352588e-02\\n-9.53050181e-02 -1.84883550e-01 1.77356422e-01 -2.96661220e-02\\n1.34988353e-01 -5.68971746e-02 -5.65454602e-01 -3.54356378e-01\\n-4.50919271e-01 -5.65552749e-02 -3.97699550e-02 -2.60951251e-01\\n1.62301272e-01 -6.83107376e-02 -6.40741289e-01 3.22200507e-01\\n-1.33710369e-01 2.98819542e-02 -4.24663201e-02 1.28247902e-01\\n-4.25150752e-01 3.91874872e-02 2.30269343e-01 1.44947588e-01\\n-3.69862467e-01 -2.41471455e-01 9.64986682e-02 -7.26475656e-01\\n1.49814293e-01 -4.67106141e-02 1.82336811e-02 7.44731259e-03\\n-3.07640061e-02 -6.07158422e-01 8.18970576e-02 -1.98816374e-01\\n-2.11938024e-01 2.94022262e-02 -2.54669875e-01 -4.07304406e-01\\n5.17774411e-02 2.51599178e-02 -1.33850962e-01 3.24586093e-01\\n-5.18390298e-01 2.39376634e-01 -6.41655698e-02 -6.40304610e-02\\n2.30907239e-02 -3.23037416e-01 1.52388439e-01 -2.26431146e-01\\n-4.70235020e-01 -1.68607205e-01 -3.27592522e-01 -2.57250100e-01\\n-1.48808584e-01 -3.88059318e-01 -1.54103070e-01 8.20179209e-02\\n3.56649637e-01 1.05882414e-01 -9.90509242e-02 -1.16317049e-01\\n8.70532915e-02 -2.69588232e-01 3.86495404e-02 -3.29617798e-01\\n1.04773685e-01 -1.45419151e-01 2.24165753e-01 -2.11259305e-01\\n1.69271126e-01 -4.00312603e-01 4.71799880e-01 -1.63305491e-01\\n-3.24291140e-01 -1.36818692e-01 1.15733683e-01 8.35935622e-02\\n3.26394051e-01 -3.92056018e-01 2.40395544e-03 2.35812396e-01\\n1.28508076e-01 8.09123740e-02 2.13397995e-01 -1.11992583e-01\\n-1.19032852e-01 2.84677863e-01 -4.12001431e-01 1.74837843e-01\\n6.94359481e-01 1.08362257e-01 2.87316084e-01 1.81212306e-01\\n2.01477632e-01 4.70642686e-01 3.82438779e-01 -1.65630430e-02\\n1.82134192e-02 3.38364363e-01 1.38883397e-01 -3.77498358e-01\\n-1.13297805e-01 -7.21196905e-02 -1.81230173e-01 -2.78479338e-01\\n5.90270936e-01 4.48540926e-01 -3.19836468e-01 -2.30239674e-01\\n-1.50932416e-01 -1.63957879e-01 2.83457011e-01 -1.63493901e-01\\n7.31403306e-02 -2.05569267e-01 4.92319077e-01 -1.58148259e-02\\n3.59941721e-01 6.27415657e-01 -1.83655605e-01 -3.56612891e-01\\n-1.25856921e-01 2.19271988e-01 1.73008025e-01 4.24125940e-01\\n-4.18089740e-02 2.22565442e-01 6.46811202e-02 1.99034289e-01\\n-2.32563674e-01 1.08026415e-01 1.39667809e-01 3.76389059e-03\\n2.09188610e-01 2.04737633e-01 2.71923214e-01 4.81290251e-01\\n2.00560242e-01 5.03998578e-01 2.45639205e-01 1.07631296e-01\\n4.00016040e-01 5.61661601e-01 3.57929498e-01 2.30250835e-01\\n3.77309546e-02 -6.58496171e-02 5.62515222e-02 -2.24808007e-02\\n2.65263855e-01 3.65401745e-01 2.04275697e-01 9.61841822e-01\\n4.26072598e-01 3.40301484e-01 7.16388226e-01 -6.38603687e-01\\n-2.23219424e-01 1.33489519e-01 3.41158897e-01 -4.05229300e-01\\n-7.45538399e-02 -1.82763748e-02 -1.94842234e-01 3.10239017e-01\\n-3.82595688e-01 -6.64950386e-02 -7.36969858e-02 4.09397446e-02\\n4.37910408e-02 -8.55748877e-02 -2.70717174e-01 3.46050821e-02\\n-2.68448144e-01 -5.26038297e-02 -3.00674558e-01 -1.81628123e-01\\n-3.98996711e-01 -1.02000639e-01 -3.25170532e-02 -4.89291251e-02\\n8.54481906e-02 -3.75761181e-01 -1.16685785e-01 -3.08248736e-02\\n5.13482273e-01 -2.74440557e-01 -7.53607079e-02 -5.46776950e-02\\n1.25323206e-01 3.97798240e-01 5.97222090e-01 -5.14587946e-03\\n2.01593131e-01 -1.29633933e-01 -1.31169349e-01 -3.58453835e-03\\n8.86023045e-02 1.40538946e-01 3.43197733e-02 4.84244794e-01\\n-3.69804710e-01 -1.52543988e-02 1.49311438e-01 4.01481748e-01\\n-3.73973459e-01 -1.26186624e-01 -2.93826754e-03 2.16573909e-01\\n-1.34283083e-03 2.31182337e-01 -4.00869280e-01 1.16140082e-01\\n-2.84557730e-01 -5.14003158e-01 4.82769072e-01 -3.09981853e-01\\n1.45161916e-02 -3.69073376e-02 3.51175070e-01 2.83484727e-01\\n-1.01108514e-01 -6.14298172e-02 6.03399910e-02 1.74972430e-01\\n2.59292163e-02 4.61997539e-01 -2.08805770e-01 -5.52008264e-02\\n-4.52130049e-01 2.80071557e-01 3.07434350e-02 6.05844110e-02\\n-1.27791241e-01 3.38768244e-01 -5.31824008e-02 2.49198541e-01\\n1.60466686e-01 -1.64894044e-01 -3.44681621e-01 -3.45432103e-01\\n-2.19625250e-01 -1.98326588e-01 2.37062022e-01 -2.17157409e-01\\n2.00774014e-01 -3.07922751e-01 -2.06978008e-01 -4.11195308e-02\\n-8.21736902e-02 -3.61798257e-01 -1.27709150e-01 5.85834049e-02]]',\n", + " 'The application provides frontend and backend features to configure data center / core backbones. Our partners and cloud platforms can integrate these into their customer dashboards. This enables customer-specific configuration of the network on demand. You develop backend functions in Java for the orchestration tools and attractive user interfaces in Angular7 for our customers. To implement the requirements of different areas, you always find the technically and economically optimal solution. Degree (ETH/Uni/UAS) in computer science Several years of experience in Java and Spring development (DevOps environment) Good knowledge of web technologies (e.g. Angular7) as well as software architecture and design Know-how in CI/CD and business process modelling, practical experience in developing microservice-oriented software for database systems Several years of experience in developing network orchestration tools is a plus Solution-oriented, assertive, communicative Good German and English',\n", + " '[\"Assertiveness\", \"Communications\", \"Integration\"]',\n", + " '[\"Tooling\", \"Computer Science\", \"E (Programming Language)\", \"Cloud Platform System\", \"Process Modeling\", \"Microservices\", \"Dashboard\", \"Data Centers\", \"Business Process Modeling\", \"Business Process\", \"Software Architecture\", \"Develop Networks\", \"Database Systems\", \"Unmanned Aerial Systems (UAS)\", \"Economics\", \"Java (Programming Language)\", \"User Interface\", \"Custom Backend\", \"DevOps\"]',\n", + " \"['English', 'Shona', 'Sango', 'Gaelic', 'Nauru']\"],\n", + " ['57',\n", + " 'clinical database developer',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-1.68560281e-01 4.86681968e-01 3.66085529e-01 -2.04478484e-02\\n5.87187111e-01 -2.46527672e-01 -7.28633627e-02 1.55251235e-01\\n-6.58313408e-02 -1.05748273e-01 -2.22682968e-01 -7.55839944e-02\\n9.79829952e-02 1.45604283e-01 1.98571354e-01 4.86466646e-01\\n3.86392385e-01 2.18806863e-02 8.20364133e-02 2.05639333e-01\\n7.26672113e-02 -1.83295324e-01 3.67924459e-02 5.90038359e-01\\n2.74913996e-01 1.06455155e-01 -4.58606444e-02 1.08608514e-01\\n-3.13255429e-01 -3.32061917e-01 4.52678949e-01 -2.18480621e-02\\n-1.81287169e-01 -7.24749416e-02 1.65782809e-01 1.79669544e-01\\n-3.06512296e-01 7.02212229e-02 -1.79152682e-01 8.37668628e-02\\n-4.49693114e-01 -1.81056499e-01 -1.29891872e-01 1.03442214e-01\\n-3.11710626e-01 -3.38022560e-01 1.37747362e-01 -1.88123688e-01\\n8.23829398e-02 1.06810212e-01 -4.88927275e-01 2.96919405e-01\\n-3.96460176e-01 -1.24455653e-01 3.23220640e-01 7.03162670e-01\\n4.28794362e-02 -5.52584410e-01 -4.10397381e-01 -2.08542526e-01\\n1.81494027e-01 -1.44335032e-01 2.86549963e-02 -1.87727481e-01\\n5.18172681e-01 -3.48430611e-02 1.03587308e-03 2.84309894e-01\\n-6.94705188e-01 -6.99295551e-02 -4.94929403e-01 9.11390111e-02\\n-3.90751481e-01 1.75121333e-02 -4.45953637e-01 -7.11274818e-02\\n1.91181680e-04 2.86413282e-01 -1.27695709e-01 -4.76878919e-02\\n-9.51963142e-02 2.77056128e-01 -3.31757516e-01 1.80138588e-01\\n2.52496183e-01 1.81494817e-01 2.65657425e-01 2.66098440e-01\\n-3.40561569e-01 5.03526568e-01 2.86573827e-01 -2.36302882e-01\\n2.75807865e-02 3.19409110e-02 3.39604080e-01 1.41111434e-01\\n-1.10450894e-01 9.44928527e-02 -1.57291278e-01 2.21507698e-01\\n1.76824987e-01 -1.07992850e-01 2.24937554e-02 2.12741364e-02\\n-1.01921447e-01 -1.00012869e-01 -5.95358089e-02 2.02064440e-01\\n-4.16203767e-01 3.73272747e-01 1.69335157e-01 -1.82169855e-01\\n-1.08955260e-02 -7.20351040e-01 -1.56407863e-01 1.15327522e-01\\n1.17388614e-01 1.97736293e-01 2.28200763e-01 4.93099123e-01\\n2.50589579e-01 -5.67625053e-02 1.58501521e-01 7.57764637e-01\\n-1.12613784e-02 1.76216528e-01 -7.12545142e-02 3.54674041e-01\\n3.50010134e-02 -1.63224474e-01 6.31615222e-02 3.35125715e-01\\n6.14754073e-02 -1.78886816e-01 -3.30058157e-01 2.48454481e-01\\n-5.32297790e-02 -2.57002681e-01 -2.64033079e-01 1.28997117e-01\\n-8.99011567e-02 -5.28241515e-01 4.31227714e-01 -1.56025052e-01\\n3.85102555e-02 -8.96073207e-02 -2.08254248e-01 -2.30822433e-02\\n-1.32130489e-01 4.48131472e-01 2.99089044e-01 1.97991699e-01\\n-1.63361549e-01 -2.21884996e-01 -6.18459769e-02 2.09032059e-01\\n-1.13737784e-01 1.53609276e-01 -3.44211102e-01 -1.91077992e-01\\n3.17667067e-01 1.96626112e-01 -5.11676550e-01 3.04898113e-01\\n8.91920459e-03 -8.12718570e-02 -1.02392405e-01 3.99749666e-01\\n-2.13563628e-02 1.22042015e-01 -1.31196737e-01 -2.75553197e-01\\n3.73715818e-01 7.06698652e-03 3.48300874e-01 -1.53970882e-01\\n4.21449870e-01 -1.48500353e-01 3.44346911e-01 5.51659428e-02\\n-6.03439033e-01 4.10731465e-01 -5.92194051e-02 -2.28632972e-01\\n2.29128495e-01 -1.36510404e-02 6.28236294e-01 -2.92134851e-01\\n4.65101488e-02 -1.81562632e-01 -3.12519312e-01 -3.34721208e-01\\n-1.92188665e-01 -1.03871539e-01 3.47810477e-01 -4.08198655e-01\\n2.25167334e-01 2.81307429e-01 -5.64418554e-01 -1.26150027e-01\\n3.54979634e-01 3.11255187e-01 2.63648421e-01 1.68868333e-01\\n-1.06754452e-01 -5.48622966e-01 1.74592406e-01 -5.09275734e-01\\n-2.92663842e-01 1.52679205e-01 -1.54337525e-01 2.61495054e-01\\n1.88902393e-02 1.53544499e-02 1.23083591e-01 -4.05280851e-02\\n-2.69141257e-01 1.10517725e-01 2.49509320e-01 4.31743041e-02\\n3.11115652e-01 -5.57305254e-02 -4.55954164e-01 5.76230824e-01\\n-2.83205330e-01 4.94328409e-01 1.24147512e-01 -7.99203992e-01\\n5.30896962e-01 2.51967013e-01 5.46083897e-02 -2.95430005e-01\\n7.33345568e-01 -3.17502648e-01 1.77035499e-02 1.60075754e-01\\n-4.11401868e-01 -1.48806766e-01 2.20626369e-01 -1.86839163e-01\\n-2.59845763e-01 6.03980243e-01 1.69175774e-01 -1.74813241e-01\\n3.94455880e-01 -2.01470107e-01 -2.41836548e-01 4.11278792e-02\\n-2.31337637e-01 -4.17878032e-02 -3.48479033e-01 -4.67761699e-03\\n-3.29631083e-02 -5.29091358e-01 -2.19337866e-01 -3.27506751e-01\\n-1.97808906e-01 -4.12582248e-01 -2.25202367e-01 1.63108453e-01\\n2.94099525e-02 1.53081641e-01 2.95570157e-02 7.54131842e-03\\n-2.77212393e-02 -6.44629240e-01 -2.26978473e-02 5.41828312e-02\\n2.63514638e-01 4.37330782e-01 3.08005393e-01 -1.70579895e-01\\n-6.15834780e-02 4.35802013e-01 -4.18911964e-01 -3.78330141e-01\\n2.39216670e-01 7.86989555e-02 -9.39939171e-03 3.83936577e-02\\n1.66753754e-01 1.65923908e-01 -1.09478436e-01 -4.71647736e-03\\n-1.43641353e-01 5.58918901e-02 2.46250659e-01 -5.58691658e-02\\n-1.50145233e-01 -2.96077222e-01 -2.28679582e-01 3.73295933e-01\\n-5.55744171e-01 -4.51806337e-01 3.99015039e-01 9.40045863e-02\\n-4.81348857e-02 3.32462579e-01 3.54473591e-01 1.50509411e-02\\n-1.49133906e-01 -1.92415789e-01 3.02498996e-01 9.00284201e-02\\n5.91730922e-02 1.02111861e-01 -3.06883276e-01 -4.89227802e-01\\n-3.68908787e+00 -1.71683699e-01 -4.37697023e-03 -2.99511462e-01\\n3.40820104e-01 -3.97793874e-02 2.90705204e-01 -1.84709262e-02\\n-3.08123142e-01 1.79027375e-02 -2.84664392e-01 -1.24278851e-01\\n1.90220356e-01 3.54641378e-01 5.78620955e-02 1.69575810e-01\\n-7.91746601e-02 -4.52922642e-01 7.18482062e-02 5.12359381e-01\\n-6.32933481e-03 -8.91038895e-01 -5.57616912e-03 -1.44528374e-01\\n1.03657655e-01 1.45292267e-01 -5.61869740e-01 9.80626270e-02\\n-3.71791929e-01 -3.15129697e-01 1.88382834e-01 -2.28532106e-01\\n-9.30480883e-02 2.55030781e-01 1.44544736e-01 -1.15916848e-01\\n-2.49161571e-02 -1.05254836e-01 5.06465547e-02 -6.25242889e-01\\n1.39055058e-01 -7.89402604e-01 -1.05835330e-02 9.47473347e-02\\n5.55384398e-01 -1.95627242e-01 2.99044162e-01 1.34232789e-01\\n1.09461628e-01 2.57667780e-01 9.71452892e-02 -3.58233489e-02\\n-2.74826944e-01 -2.76571840e-01 -1.91612646e-01 -1.32931396e-01\\n5.19695044e-01 4.14197385e-01 -3.95292044e-01 3.06542329e-02\\n9.13037136e-02 -4.31805581e-01 -6.04953706e-01 -4.76485401e-01\\n-2.84407109e-01 -3.93337235e-02 -7.31427550e-01 -5.40723145e-01\\n-1.96784794e-01 5.09702088e-03 7.74462847e-03 5.84109902e-01\\n-5.24256766e-01 -4.35782313e-01 -4.01459821e-02 -7.19916463e-01\\n3.88339043e-01 -1.62912980e-01 1.18710183e-01 -2.77258307e-01\\n-2.40868852e-01 -4.07298148e-01 1.74358949e-01 1.21211752e-01\\n-1.65348470e-01 4.82334197e-02 1.06161050e-01 -1.28368124e-01\\n-4.90997583e-01 -6.62565231e-01 4.35149580e-01 6.03361009e-03\\n3.93211931e-01 9.98159796e-02 1.76750913e-01 -4.92063724e-02\\n4.97342139e-01 -1.41848242e-02 1.33379176e-01 -5.19317329e-01\\n2.14645136e-02 7.26893172e-02 6.22243166e-01 -2.74458736e-01\\n-3.11782267e-02 4.89086136e-02 -3.27343911e-01 -1.05109774e-02\\n3.60379964e-01 -1.24242164e-01 5.39791733e-02 -1.92020550e-01\\n4.49660569e-01 -4.48704600e-01 -3.05286437e-01 1.81378514e-01\\n8.17829370e-02 6.83981895e-01 1.98301561e-02 -2.50770092e-01\\n-1.24911770e-01 5.18753529e-01 -1.28571585e-01 3.24374512e-02\\n-1.25816375e-01 3.80167179e-02 -2.02260971e-01 3.09285492e-01\\n5.28839864e-02 -1.06283955e-01 -3.41085672e-01 -3.46607566e-02\\n-2.54158434e-02 1.08791322e-01 3.07576001e-01 1.29410088e-01\\n-1.01829588e-01 -1.51821032e-01 8.56233239e-02 2.05802232e-01\\n2.43720591e-01 3.14294070e-01 1.98645383e-01 -2.81681865e-01\\n1.59514114e-01 1.36079237e-01 -2.14612082e-01 4.08221096e-01\\n-2.22169846e-01 9.60678309e-02 -4.45303291e-01 -1.83044851e-01\\n-2.58694351e-01 -2.41452426e-01 4.87098806e-02 1.98881790e-01\\n2.51475334e-01 -8.21784586e-02 1.15739822e-01 -6.22132123e-01\\n2.36071140e-01 -5.72002046e-02 1.99729502e-01 -2.00653039e-02\\n-1.96126048e-02 6.55131042e-01 -9.40204635e-02 -1.71967983e-01\\n-1.01202771e-01 1.25528336e-01 -2.39509702e-01 -2.21570820e-01\\n1.83175623e-01 -3.73027921e-01 -2.13975847e-01 3.47458810e-01\\n1.75267413e-01 -2.50084382e-02 -1.76661670e-01 4.09010231e-01\\n-2.26706080e-02 -4.27673995e-01 -2.25141659e-01 1.11307569e-01\\n1.54992893e-01 2.47268736e-01 1.80334955e-01 -4.64837193e-01\\n1.91410128e-02 -6.04266189e-02 1.45941466e-01 3.89567852e-01\\n7.47549832e-02 7.40541071e-02 -1.48085788e-01 -2.12737203e-01\\n3.00801277e-01 7.72340596e-02 -1.61436442e-02 2.63567753e-02\\n2.46392250e-01 -1.82521522e-01 -3.27939481e-01 -1.38957694e-01\\n-6.61976123e-03 -2.27547169e-01 -4.55591567e-02 6.60495162e-02\\n3.25397365e-02 -1.31943785e-02 -4.69185680e-01 -2.13031188e-01\\n-4.99778509e-01 7.59211332e-02 -1.05219208e-01 -5.58243811e-01\\n-1.42764971e-01 1.90961566e-02 -5.62448621e-01 2.44937956e-01\\n1.62002727e-01 1.24564104e-01 2.09941342e-01 1.25718117e-01\\n-3.25594395e-01 -1.36200637e-01 1.97895601e-01 -1.50032088e-01\\n-3.35141659e-01 -1.21711254e-01 -1.12406656e-01 -9.49571490e-01\\n5.19356988e-02 -1.00372769e-01 -1.85237706e-01 -6.74441978e-02\\n-2.03575209e-01 -4.40119237e-01 2.55929708e-01 -3.19189221e-01\\n-2.68733174e-01 8.90868679e-02 -2.12066576e-01 -3.95988107e-01\\n6.35863394e-02 -4.13218290e-02 -1.44288510e-01 2.96998173e-01\\n-3.67379248e-01 5.10733485e-01 -9.25207958e-02 -1.64414360e-03\\n7.00171739e-02 -2.13520110e-01 2.27486029e-01 -1.25856474e-01\\n-3.23976904e-01 -1.02901392e-01 -3.17729652e-01 -1.34588510e-01\\n1.04841255e-01 -2.23519772e-01 -1.47741616e-01 7.65471607e-02\\n4.19747442e-01 1.94867160e-02 -1.08509161e-01 4.70741726e-02\\n4.95036598e-03 -4.37013656e-01 1.41614303e-01 -3.32222939e-01\\n-1.55060859e-02 -1.68393746e-01 3.40625614e-01 -1.24884993e-01\\n2.76548058e-01 -3.65130424e-01 7.41309941e-01 -2.12202564e-01\\n-4.02636051e-01 1.50811933e-02 2.33168602e-01 9.01967213e-02\\n2.92385727e-01 -4.85284030e-01 -1.43646494e-01 4.06657904e-01\\n-3.26638925e-03 2.93990001e-02 3.89123261e-01 -1.93818152e-01\\n-3.85461748e-01 2.17758015e-01 -6.15916371e-01 1.71599641e-01\\n7.23630488e-01 3.68036002e-01 1.75260991e-01 6.41833842e-02\\n9.33544040e-02 3.85443032e-01 6.65354013e-01 -1.47998020e-01\\n-5.77385090e-02 3.90731394e-01 9.79045555e-02 -6.17084026e-01\\n-1.87427074e-01 -5.05152792e-02 -7.43524060e-02 -3.81466389e-01\\n6.23678505e-01 2.79082835e-01 -4.22845781e-01 -3.77291173e-01\\n-3.04208219e-01 -2.55536854e-01 1.79399401e-01 5.31424992e-02\\n1.21399730e-01 -3.18675578e-01 5.51212013e-01 -2.42802477e-03\\n2.27090523e-01 4.57185298e-01 -1.90935016e-01 -2.43773878e-01\\n1.84934795e-01 1.64315984e-01 1.85541183e-01 3.10098320e-01\\n3.04405242e-02 1.78469971e-01 -6.82984293e-02 1.63802758e-01\\n-2.28550553e-01 -2.76485503e-01 1.76225334e-01 1.92592312e-02\\n3.55033726e-02 2.55160689e-01 4.76495922e-01 4.28284049e-01\\n3.16479862e-01 4.00882512e-01 1.36859268e-01 5.92119433e-03\\n4.52715665e-01 5.73742986e-01 2.49000639e-01 8.55507180e-02\\n6.88674897e-02 1.83812648e-01 8.77671912e-02 1.52575195e-01\\n3.12801749e-01 2.78387070e-01 1.03773803e-01 6.72179341e-01\\n5.42753004e-02 3.41798753e-01 6.56069875e-01 -4.36897367e-01\\n-2.35313088e-01 7.25249499e-02 4.42236125e-01 -4.18397933e-01\\n9.35086235e-02 1.25925303e-01 -2.40521491e-01 1.94508836e-01\\n-6.76722288e-01 -1.95459187e-01 2.39629578e-03 -6.97698221e-02\\n7.41876587e-02 -1.35813102e-01 -3.89732420e-02 2.95729041e-02\\n-1.20592050e-01 -2.06858248e-01 -2.33948186e-01 -4.72765803e-01\\n-4.18748409e-01 -1.40443280e-01 2.90774647e-02 -7.48938918e-02\\n1.09027410e-02 -2.83599406e-01 -2.97835588e-01 7.17386156e-02\\n3.40595663e-01 -2.73021340e-01 -1.61091506e-01 -1.58825576e-01\\n3.00577313e-01 1.93100587e-01 7.18517661e-01 -1.20732017e-01\\n5.38749285e-02 -1.14536278e-01 -1.57240987e-01 -2.70104520e-02\\n1.53698102e-01 5.04470207e-02 1.06326260e-01 6.46555722e-01\\n-3.19105446e-01 -2.37292588e-01 1.83037564e-01 3.62156004e-01\\n-3.35848451e-01 -1.01055987e-01 8.47785473e-02 1.87121525e-01\\n5.34312576e-02 1.28071442e-01 -2.84901828e-01 8.04541931e-02\\n-2.69391984e-01 -5.41143060e-01 2.65248686e-01 -6.24122545e-02\\n-3.26482773e-01 6.26728963e-03 5.40157378e-01 3.63774359e-01\\n-2.12363480e-03 -1.05618583e-02 -2.70550579e-01 1.97846144e-01\\n-1.16404658e-02 3.94765288e-01 -2.77920783e-01 -1.33807555e-01\\n-4.02474254e-01 3.50736082e-01 -2.11011041e-02 2.46636823e-01\\n-5.01717515e-02 3.80953997e-01 4.14801799e-02 2.18504056e-01\\n2.64451206e-01 -1.68413222e-01 -3.08688372e-01 -4.05884296e-01\\n-1.59014151e-01 -8.22703466e-02 2.47341916e-01 -1.15853280e-01\\n1.46781072e-01 -4.42090958e-01 -1.57109857e-01 -2.94182420e-01\\n-1.51223332e-01 -3.54026049e-01 -2.04641327e-01 1.63526177e-01]]',\n", + " 'We are looking for a Clinical Database Developer who will provide Clinical Data Management support to the Clinical Research Department in all phases of projects related to clinical development programs. Key Responsibilities: Databases setup, testing and maintenance Data system compliance by following guidelines of international regulatory authorities and internal policies Specifications related to data management: data transfers, Data Management Plan (DMP) Data Validation Plan (DVP), internal tools Implementation of edit checks Execution of User Acceptance Tests (UAT) for electronic case report forms (eCRF) and edit checks Review of external data specifications Data transfers with other functions and CRO Design and development of data management tools Development and maintenance of procedures and working instructions necessary to support clinical data management conforming to the function quality standards and regulation in the clinical environment. Education / Qualifications: At least two years of clinical database development experience is required, gained in the pharmaceutical industry, CRO or Life science related industry Some experience working with Oracle and clinical database applications is required Knowledge of SQL, PL-SQL, SAS, VBA, Excel, Access and CDISC Understanding of the research environment and good knowledge of global regulatory requirements such as ICH GCP and CFR 21 part 11 Ability to prioritize multiple tasks and manage time efficiently Detail-oriented with excellent organizational and communication skills Fluency in English is required (oral and written). ',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Editing\", \"Planning\", \"Time Management\", \"Detail Oriented\", \"Prioritization\"]',\n", + " '[\"PL/SQL\", \"Database Application\", \"Tooling\", \"Accessioning\", \"Clinical Decision Support\", \"Data Validation\", \"Life Sciences\", \"Data Management\", \"SAS (Software)\", \"Regulatory Requirements\", \"Pre-Clinical Development\", \"Database Development\", \"Quality Function Deployment (QFD)\", \"Industrialization\", \"Case Report Forms\", \"External Data Representation\", \"PHP Development Tools\", \"Executable\", \"Data Definition Specification\", \"Professional Development Programs\", \"Data Management Plan\", \"Electronics\", \"Clinical Research\", \"Acceptance Test Procedures\", \"Clinical Data Management\", \"Pharmaceuticals\", \"Instructing\", \"Industrial Relations\", \"Google Cloud Platform (GCP)\", \"Data Transfer Object\", \"Title 47 CFR Part 15\", \"Integrated Maintenance Data System\"]',\n", + " \"['English', 'Ukrainian', 'Tswana']\"],\n", + " ['111',\n", + " 'sr data scientist',\n", + " 'Zürich',\n", + " 'Beauty & Personal Accessories Shops',\n", + " 'www.swarovskigroup.com',\n", + " '[[-2.09799975e-01 2.45371357e-01 6.03603840e-01 6.65826350e-02\\n6.28002167e-01 -5.45458421e-02 -6.58793822e-02 2.91150063e-01\\n-6.86659962e-02 -2.81901330e-01 -1.01180449e-01 -2.93105602e-01\\n-4.69956063e-02 1.10560685e-01 1.52176216e-01 4.46738005e-01\\n1.84649959e-01 6.83167763e-03 -1.40062466e-01 3.86521727e-01\\n1.60238087e-01 -7.46410787e-02 1.35514885e-01 6.91295743e-01\\n4.71817344e-01 -7.00502619e-02 -1.84293017e-01 7.81575888e-02\\n-3.05802584e-01 -2.15384960e-01 4.40561414e-01 1.01593733e-01\\n-2.21173674e-01 -2.81539381e-01 1.46945849e-01 1.27915904e-01\\n-2.39650205e-01 -1.07696213e-01 -4.91712093e-02 2.10452095e-01\\n-4.77263451e-01 -1.86048687e-01 -1.93999968e-02 5.71769997e-02\\n-4.58154023e-01 -3.44038099e-01 -1.64944798e-01 -4.65223044e-02\\n-1.71431303e-02 -3.47411372e-02 -5.08247018e-01 5.07455289e-01\\n-1.87961996e-01 -3.32929909e-01 1.81491062e-01 7.77180195e-01\\n8.16262960e-02 -4.41816837e-01 -2.88736641e-01 -3.22279125e-01\\n1.39828607e-01 -1.39261201e-01 1.05930358e-01 -2.60379732e-01\\n3.49323750e-01 -1.18844472e-01 -4.92149815e-02 3.73246312e-01\\n-8.06652904e-01 -1.02319047e-02 -2.64190763e-01 1.28488140e-02\\n-3.59484255e-01 6.32514060e-03 -4.15515184e-01 -1.07252255e-01\\n-2.61936449e-02 4.68915761e-01 -3.26903500e-02 1.79436989e-02\\n-1.88427016e-01 1.56293541e-01 -2.56668031e-01 2.16429219e-01\\n2.87340581e-01 2.70213604e-01 3.00496101e-01 3.69778156e-01\\n-4.05632734e-01 4.71168667e-01 1.73107982e-01 -3.42354000e-01\\n3.28884304e-01 2.00922936e-01 3.90934616e-01 1.26115218e-01\\n4.34674844e-02 1.83341235e-01 -1.95466250e-01 1.70233279e-01\\n1.53203428e-01 -3.74033451e-01 5.72343618e-02 -1.04884446e-01\\n-2.90690362e-03 -8.55158493e-02 3.33965756e-02 3.21339548e-01\\n-3.69909763e-01 3.80383641e-01 7.14902654e-02 -2.31179118e-01\\n-5.78089990e-02 -5.07297933e-01 -5.90494126e-02 4.60678712e-04\\n2.27862056e-02 3.68130505e-01 2.67655194e-01 2.20130831e-01\\n1.89239532e-01 5.63188121e-02 2.24790573e-01 8.95125031e-01\\n4.94131818e-05 2.13259459e-01 -1.98088393e-01 3.75671685e-01\\n2.23204494e-01 -1.77884191e-01 1.55582488e-01 2.47954980e-01\\n6.34295717e-02 -1.43953651e-01 -2.61841536e-01 2.82252133e-01\\n-1.98383242e-01 -1.95317805e-01 -2.15177074e-01 8.45345035e-02\\n-1.68082371e-01 -5.67597151e-01 5.61937451e-01 -1.46172978e-02\\n2.14652508e-01 -1.61124498e-01 -1.36450790e-02 -1.48383483e-01\\n-6.32035732e-02 3.44431520e-01 1.60245463e-01 1.56117409e-01\\n-3.73151690e-01 -2.01693147e-01 -1.74334228e-01 3.51265371e-01\\n-3.62037033e-01 2.10803617e-02 -1.91299692e-01 -1.08752280e-01\\n3.35064411e-01 1.07541487e-01 -4.62480426e-01 1.83829054e-01\\n-1.52365565e-01 -3.36052805e-01 -1.38628222e-02 2.52761900e-01\\n-3.39334339e-01 1.20274886e-01 -5.15389070e-02 -2.03660935e-01\\n5.96760988e-01 1.65874481e-01 2.83887804e-01 2.43828055e-02\\n3.19413126e-01 -1.24233887e-01 1.79487839e-01 2.26185530e-01\\n-6.68202996e-01 4.49051440e-01 -5.95071986e-02 -2.32003793e-01\\n6.36987388e-02 3.35326344e-02 4.96706396e-01 -3.58301282e-01\\n8.52545947e-02 -2.98817098e-01 -3.08600307e-01 -4.08272177e-01\\n-3.15689832e-01 1.88987702e-02 4.64316964e-01 -4.70127076e-01\\n-4.25915793e-02 1.77360266e-01 -5.57965040e-01 -6.80355132e-02\\n2.36749128e-01 1.49165794e-01 9.43288580e-02 1.28181130e-01\\n-9.75340754e-02 -6.28468573e-01 4.23967727e-02 -4.34795260e-01\\n-3.62985730e-01 5.17709404e-02 -3.29233825e-01 1.16838276e-01\\n6.65556192e-02 -4.78616767e-02 -1.09651797e-02 1.19249865e-01\\n-2.77674139e-01 -5.75821698e-02 1.36752725e-01 6.02857843e-02\\n3.37924838e-01 2.12269835e-02 -4.21200514e-01 4.89454895e-01\\n-2.05419332e-01 5.78478992e-01 1.92950860e-01 -1.05891299e+00\\n5.48521578e-01 1.65580854e-01 5.36602959e-02 -2.19873041e-01\\n6.59864664e-01 -3.86876702e-01 -7.36442432e-02 1.36705875e-01\\n-2.21223608e-01 -1.57597989e-01 2.34535247e-01 -1.56565130e-01\\n-3.23738933e-01 6.53199911e-01 2.23730117e-01 2.16413110e-01\\n3.22187483e-01 -2.64825583e-01 -2.19263792e-01 -6.78867549e-02\\n-2.12333634e-01 -3.00087333e-01 -6.01269007e-01 1.47598952e-01\\n-8.57096463e-02 -5.54377794e-01 -1.66279405e-01 -4.44679201e-01\\n-1.52338192e-01 -4.99079943e-01 -1.61132857e-01 2.39972651e-01\\n2.55431861e-01 2.03105658e-01 -8.44481662e-02 -7.45449141e-02\\n-1.05656758e-01 -6.19558394e-01 -2.01907963e-01 7.25115687e-02\\n3.66698623e-01 3.05634677e-01 1.08013675e-01 -9.42812711e-02\\n2.12396085e-01 5.46940446e-01 -2.62860745e-01 -3.90725851e-01\\n2.56794304e-01 1.93955839e-01 -7.05626011e-02 -1.42199829e-01\\n6.64772913e-02 3.47756326e-01 -1.45360798e-01 9.54262763e-02\\n-5.52647337e-02 3.59337106e-02 2.81855404e-01 2.88254116e-02\\n-1.42872274e-01 -1.99947268e-01 -7.00158775e-02 3.41586798e-01\\n-5.88303685e-01 -2.01732054e-01 5.26862562e-01 1.66323185e-01\\n1.51168466e-01 1.74102366e-01 2.07534105e-01 -1.02659345e-01\\n-2.77054965e-01 -1.08338818e-01 2.08979368e-01 1.61649346e-01\\n1.52664334e-01 6.82457238e-02 -2.27358453e-02 -5.38438082e-01\\n-3.34786677e+00 -2.78339684e-01 1.93841174e-01 -3.07963789e-01\\n1.52499408e-01 -2.32752219e-01 3.11252140e-02 3.85489017e-02\\n-3.05252820e-01 1.29264537e-02 -1.39703229e-01 -2.10177839e-01\\n-9.70971957e-03 2.90589929e-01 2.01760560e-01 2.14379847e-01\\n1.39220804e-01 -2.77686417e-01 3.06891631e-02 4.90279227e-01\\n-1.88724577e-01 -6.68499053e-01 1.63968682e-01 6.80816099e-02\\n9.22040343e-02 1.92572787e-01 -4.28868830e-01 -1.45176485e-01\\n-3.14542592e-01 -2.54573494e-01 9.87289548e-02 -2.55834371e-01\\n-2.36711353e-01 4.28729117e-01 1.56401202e-01 -2.40467750e-02\\n1.26972377e-01 -3.82168919e-01 -6.69598579e-02 -3.13567638e-01\\n1.24312632e-01 -5.61982393e-01 -1.10066608e-02 -1.83733385e-02\\n6.88484788e-01 -3.33484232e-01 2.45489687e-01 9.50278640e-02\\n1.95794046e-01 8.91050026e-02 1.22013539e-01 -7.50614926e-02\\n-2.64467895e-01 -2.61123776e-01 -6.54282421e-03 -2.00955272e-01\\n5.57687759e-01 4.55683529e-01 -8.89362097e-02 1.57598555e-02\\n1.62847489e-01 -2.02769488e-01 -4.13719416e-01 -4.84344453e-01\\n-1.89464420e-01 -1.57274917e-01 -6.68248892e-01 -4.42558616e-01\\n-1.09671734e-01 -1.55005068e-01 -1.80255607e-01 5.32664776e-01\\n-2.85376668e-01 -3.19284141e-01 -1.84183463e-01 -4.28066790e-01\\n3.26113105e-01 -1.21988043e-01 -6.88493401e-02 -2.42111251e-01\\n-3.00011039e-01 -4.62455124e-01 1.49375349e-01 1.98300891e-02\\n-1.90829724e-01 -1.78703815e-01 7.83607885e-02 -3.21322381e-01\\n-3.67240548e-01 -6.06400371e-01 5.10240734e-01 5.01437038e-02\\n3.21464896e-01 9.35488418e-02 4.05482531e-01 1.65233970e-01\\n4.68293250e-01 -2.16517299e-01 1.99372992e-02 -5.01922488e-01\\n5.60409389e-02 9.94057581e-02 5.30611873e-01 -3.31511796e-01\\n8.33786875e-02 1.93395689e-02 -1.93567008e-01 -8.96800756e-02\\n3.95433724e-01 -1.10582680e-01 8.45000148e-02 -1.23021722e-01\\n1.40888274e-01 -3.43454361e-01 -2.34716564e-01 1.70378521e-01\\n5.01665995e-02 6.85591519e-01 9.87084303e-03 -2.88986921e-01\\n-2.34547764e-01 3.87772918e-01 -1.79013297e-01 -7.12770373e-02\\n-1.92878410e-01 5.59632704e-02 -1.67553902e-01 4.89995778e-01\\n-3.49330716e-02 -2.27003336e-01 -3.06034505e-01 -6.35150969e-02\\n-3.14649306e-02 2.31136292e-01 3.11601400e-01 5.02099935e-03\\n7.32846931e-03 -2.69898176e-01 6.50875419e-02 1.52970552e-01\\n3.11731637e-01 3.47614527e-01 1.59135371e-01 -1.81848377e-01\\n-5.11044823e-03 1.75755844e-01 -2.80089378e-01 3.19548815e-01\\n-1.56890735e-01 1.14408858e-01 -6.99656844e-01 -2.07303375e-01\\n-2.33856991e-01 -3.51432383e-01 2.18290687e-01 2.73868263e-01\\n1.93503395e-01 -1.34510010e-01 3.96089032e-02 -5.60966313e-01\\n4.17424977e-01 3.07608843e-02 2.38305271e-01 1.36265278e-01\\n-1.38160408e-01 6.42040014e-01 1.49055403e-02 -9.00889114e-02\\n2.12995261e-02 -7.02845901e-02 -2.50569701e-01 -3.74849439e-01\\n-7.71632120e-02 -5.01042545e-01 -2.22917616e-01 5.01166105e-01\\n2.32340351e-01 -2.75700450e-01 -3.00715655e-01 2.47045338e-01\\n-2.07648799e-03 -3.48439634e-01 -1.91038251e-01 -1.95536427e-02\\n4.21733975e-01 2.03236043e-01 2.15271831e-01 -5.09783983e-01\\n-4.12427671e-02 -1.99437886e-03 5.13441451e-02 3.95825207e-01\\n4.86878678e-02 7.70572647e-02 1.76383331e-02 -2.15963036e-01\\n4.71484840e-01 -1.26622066e-01 -1.58588886e-01 -9.08944942e-03\\n6.95930049e-02 -2.31100619e-01 -4.75203753e-01 1.06377654e-01\\n7.17108548e-02 -2.76686162e-01 2.34388672e-02 2.84813702e-01\\n1.14846796e-01 -5.65712154e-02 -5.64158440e-01 -2.80859828e-01\\n-3.76927882e-01 -3.10570598e-02 2.94076093e-02 -5.09059906e-01\\n-5.01472577e-02 -5.55850118e-02 -5.47834575e-01 1.60150439e-01\\n9.38598067e-04 -1.25446051e-01 2.69870237e-02 7.02489167e-02\\n-1.51851356e-01 -8.99457633e-02 2.74703145e-01 6.76705986e-02\\n-3.61029059e-01 -2.91764826e-01 3.35525349e-02 -9.23433781e-01\\n1.64770484e-01 8.08696598e-02 -8.29554349e-02 9.35930908e-02\\n-4.54211719e-02 -6.40485227e-01 1.96050838e-01 -4.14140582e-01\\n-1.03219584e-01 -3.49580497e-02 -3.47130746e-01 -3.07760686e-01\\n1.50172010e-01 8.62397850e-02 -2.23386690e-01 4.76308763e-01\\n-4.22934234e-01 3.60915869e-01 8.21577236e-02 1.08809143e-01\\n1.09146066e-01 -2.31922194e-01 1.49670810e-01 -2.01601475e-01\\n-4.28917229e-01 -1.65964767e-01 -3.64023507e-01 -2.43195221e-01\\n-1.09552301e-01 -2.43464917e-01 -8.64679217e-02 -9.14174095e-02\\n3.86218101e-01 2.38143176e-01 -8.20938349e-02 -2.37207264e-01\\n1.04419157e-01 -3.70944679e-01 2.14817643e-01 -2.07821250e-01\\n-7.66050369e-02 -4.07870114e-03 2.57409096e-01 3.90612632e-02\\n9.94898826e-02 -3.03352386e-01 4.20089185e-01 -2.73924828e-01\\n-3.69899303e-01 -1.25064090e-01 1.13083005e-01 6.06005415e-02\\n3.05719852e-01 -4.33376133e-01 -3.87399755e-02 3.03135633e-01\\n1.71009302e-01 9.08471420e-02 3.37848634e-01 -1.19021952e-01\\n-9.27144140e-02 2.32433006e-01 -5.04758596e-01 2.34265402e-02\\n8.66339445e-01 2.07176566e-01 1.03915267e-01 1.74714789e-01\\n1.83114618e-01 2.63173461e-01 4.52601910e-01 -2.48411726e-02\\n-4.55543734e-02 3.62650990e-01 8.14497173e-02 -5.83231568e-01\\n-6.22273311e-02 -1.97110221e-01 -1.04681581e-01 -3.86264384e-01\\n6.43242836e-01 2.63900548e-01 -3.20712328e-01 -3.29176009e-01\\n-1.26017183e-01 -6.93392754e-02 3.08513880e-01 -1.07354105e-01\\n-8.15618262e-02 -2.17281468e-02 5.42413771e-01 -1.25997394e-01\\n3.72197866e-01 5.55598617e-01 -2.37150341e-01 -2.41545692e-01\\n-3.73511985e-02 1.95191994e-01 1.43049464e-01 5.08144975e-01\\n-2.30075732e-01 3.07303786e-01 -2.82148663e-02 1.19852617e-01\\n-5.55610359e-02 -6.53974861e-02 3.03768396e-01 -2.76075304e-03\\n1.24757454e-01 9.48950797e-02 3.42823237e-01 4.39409018e-01\\n1.58643782e-01 4.55600798e-01 4.51086938e-01 -9.09918081e-03\\n4.47711945e-01 5.93799353e-01 1.98461354e-01 1.71895653e-01\\n3.83092836e-02 7.02570826e-02 1.53879479e-01 1.09632704e-02\\n2.62667477e-01 4.00550842e-01 1.30756453e-01 8.90647173e-01\\n3.07902813e-01 3.35808814e-01 7.56363273e-01 -6.92148209e-01\\n-4.68996763e-01 9.66669712e-03 5.39399564e-01 -3.32095772e-01\\n-7.83604607e-02 1.16883710e-01 -2.78222501e-01 1.99468821e-01\\n-4.72943932e-01 -1.64867476e-01 -1.06299631e-02 5.97502068e-02\\n-4.68078814e-03 -9.71571431e-02 -1.76315337e-01 2.11670488e-01\\n-1.22933701e-01 -9.89432633e-02 -3.11540514e-01 -1.67365417e-01\\n-2.43699670e-01 -1.54376477e-01 -1.46191359e-01 6.70025349e-02\\n-1.93508402e-01 -2.60474741e-01 -8.43837783e-02 -2.39111669e-03\\n3.95866513e-01 -1.74888596e-01 -1.31021395e-01 -1.27704903e-01\\n1.28855005e-01 1.93803698e-01 4.90049481e-01 -1.08613335e-01\\n1.50120899e-01 -1.62467808e-01 -3.15842897e-01 6.15190715e-02\\n1.70021921e-01 2.32337303e-02 -3.66747528e-02 5.11497140e-01\\n-3.61222804e-01 -9.62386951e-02 4.94451113e-02 1.80054307e-01\\n-4.24924374e-01 -6.25192821e-02 -5.31624667e-02 1.25187337e-01\\n1.61396936e-02 1.81298614e-01 -3.28637958e-01 6.18106388e-02\\n-2.85210133e-01 -6.18053198e-01 3.34192634e-01 -2.58327603e-01\\n-7.98284635e-02 1.24681711e-01 3.11910391e-01 2.25521237e-01\\n-1.63778022e-01 -1.21444069e-01 -1.08826831e-01 2.40983799e-01\\n1.04229311e-02 2.73642004e-01 -2.20998675e-01 -2.64012426e-01\\n-2.44926214e-01 2.60452509e-01 -8.05139914e-02 1.92846134e-01\\n-3.89664248e-02 3.47567856e-01 6.47892356e-02 2.17252135e-01\\n1.77034318e-01 -4.84667346e-03 -2.26465583e-01 -2.66422719e-01\\n-2.02238947e-01 -2.20473707e-01 1.04610845e-02 -6.55374154e-02\\n1.87096000e-01 -2.73063213e-01 -4.98912148e-02 -2.15667069e-01\\n-2.76900828e-01 -4.73196507e-01 -2.64370814e-02 -7.66175687e-02]]',\n", + " 'Here at Swarovski, our people sparkle just as much as our products. Come and join us as a Senior data Scientist where you will get a chance to work in a growing team in the Zurich area and develop your skills in use cases at global scale. Be part of a truly iconic global brand, learn and grow with us. ABOUT THE JOB Drive the development and implementation of Advanced Analytics use cases for the Consumer Goods Business Partner with relevant departments (e.g. e-Commerce, Omnichannel Management, CRM, Marketing Management) to understand and frame the problem, estimate the business impact, develop the solution & monitor it Identify internal and external data for the question at hand and work with BI/IT to assure data provisioning Develop model prototypes both using latest AI and machine learning techniques like Gradient Boost, Neural Networks or Random Forests as well as classic methods. Test and continuously improve model along AA best in class standards Provide output to target systems like marketing automation or dashboards and assures automation and monitoring of use cases, in alignment with relevant departments Assure reporting of Use Case KPIs and feed them into functional dashboards Monitor the execution of statistical models & performance in use cases and identify improvement / extension opportunities ABOUT YOU We are looking for a motivated talent, who brings along the following background: University degree/ Education, preferably in in Mathematics, Statistics, Computer Science, Physics or similar More than 5-8 years of experience in advanced analytics field Proven track record of creating impact in at least 2 of the following fields (Personalization of e-Mails, Websites & Advertising, Assortment Optimization, Dynamic Pricing & Promotions, Marketing Mix Optimization, Store level forecasting, Social Media/Network analysis) Strong technical experience in the following areas: R and/or Python (min. 5 years), modelling & real time analytics (process parallelization), familiarity to SAS a plus Familiarity with one of the following AI verticals: text mining, image recognition, conversational interface, automatic classification, network analytics, predictive modeling - incl deep learning framework (PyTorch, Keras, Tensorflow, etc.) a plus Database management (SQL & NoSQL, Spark a plus) Robust knowledge on Data management & IT infrastructure management, Proven ability to structure, build & optimize complex data science pipelines, Big data cloud providers (e.g. AWS, Google Cloud, Azure) Tableau skills a plus Substantial prior experience in modelling large scale retail data sets, digital & tracking data & data enrichment (data scraping/crawling a plus) Ability to work in cross-functional teams & agile ways of working Excellent English proficiency ABOUT SWAROVSKI Swarovski is a family-run company, founded more than 120 years ago in Wattens, Austria. We are leading group of global companies committed to stable growth and maintaining our place at the forefront of design, creativity, and technological innovation. Working for Swarovski is more than just a job. You will work for a groundbreaking, modern, premium brand, which is globally known for its quality and creativity. We place people at the heart of our business and offer global pay programs, supported by a range of local benefits. In addition, we provide rich development opportunities which recognize and reward the brilliant contributions of our passionate individuals and teams who contribute to the success of our company – sparkling every day. Whether you are just starting your career or celebrating an existing one, we invite you to make your own mark on Swarovski’s rich history. Grow your own career through our blended learning and development programs. Learning opportunities are everywhere at Swarovski and will help you grow and develop your own career. We are an equal opportunity employer and value diversity at our company.',\n", + " '[\"Social Media\", \"Creativity\", \"Innovation\", \"Management\"]',\n", + " '[\"Real Time Data\", \"E-Learning Development\", \"Automation\", \"Advertisement\", \"Tableau (Business Intelligence Software)\", \"NoSQL\", \"Analytic Hierarchy Process\", \"Agility\", \"Data Scraping\", \"Computer Science\", \"Analytics\", \"Text Mining\", \"Data Management\", \"SAS (Software)\", \"Machine Learning\", \"Customer Relationship Management (CRM) Software\", \"Branding\", \"Business Partnering\", \"Marketing Management\", \"Mathematical Statistics\", \"Scale (Map)\", \"Marketing Automation\", \"Estimators\", \"IT Infrastructure\", \"Blended Learning\", \"Network Analysis\", \"Python (Programming Language)\", \"Parallel Processing\", \"External Data Representation\", \"Prototyping\", \"E (Programming Language)\", \"Random Forest Algorithm\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Track (Rail Transport)\", \"Computational Statistics\", \"Levelling\", \"Tracking (Commercial Airline Flight)\", \"Executable\", \"Keras (Neural Network Library)\", \"Statistical Modeling\", \"SQL Plan Management\", \"Use Case Diagram\", \"Infrastructure Management\", \"Test Method\", \"Dashboard\", \"Pipelining\", \"Minimum Data Set\", \"Marketing Mix\", \"Data Science\", \"Professional Development Programs\", \"TARGET 3001!\", \"E-Commerce\", \"Equalization\", \"Personalization\", \"R (Programming Language)\", \"Digitization\", \"TensorFlow\", \"Google Cloud\", \"Big Data\", \"Deep Learning\", \"Predictive Modeling\", \"Cross-Functional Team Leadership\", \"Physics\", \"Maintainability\", \"Imaging\", \"Consumer Packaged Goods\", \"Predictive Analytics\", \"Recurrent Neural Network (RNN)\", \"Forecasting\", \"Additives\", \"PyTorch (Machine Learning Library)\", \"Amazon Data Pipeline\", \"Gradient Boosting\", \"Assortment Optimization\", \"Conversational User Interface\"]',\n", + " \"['English', 'Pali', 'Croatian', 'Kazakh']\"],\n", + " ['18',\n", + " 'pl/sql developer with avaloq experience and/or certification',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-3.13505888e-01 2.25676537e-01 4.94336933e-01 -1.10997431e-01\\n5.00059366e-01 -1.46009773e-01 6.33367477e-03 4.37126428e-01\\n-2.71575595e-03 -2.77291059e-01 -1.92970946e-01 -1.76570728e-01\\n1.08183816e-01 3.01874634e-02 1.26210079e-01 1.70721531e-01\\n3.39352190e-01 1.26081884e-01 -1.65360451e-01 2.77324528e-01\\n2.02321947e-01 -1.03745975e-01 1.53151751e-01 7.31896520e-01\\n3.38048279e-01 6.03996441e-02 -1.08721014e-02 -1.89579763e-02\\n-2.23226696e-01 -2.75348067e-01 3.87274563e-01 -2.01872066e-02\\n-8.11380297e-02 -2.54527539e-01 2.51477927e-01 -2.02515703e-02\\n-2.25338519e-01 2.73438953e-02 -1.74218714e-01 -1.13461185e-02\\n-2.64139205e-01 -8.32525492e-02 9.71880183e-02 1.14277259e-01\\n-2.22081631e-01 -3.70131105e-01 1.43041819e-01 -5.61417677e-02\\n1.08728580e-01 -1.50922006e-02 -4.82406884e-01 2.60246754e-01\\n-1.67487517e-01 -2.68497735e-01 4.23574507e-01 6.49840355e-01\\n-6.66429102e-02 -5.47274232e-01 -4.54208881e-01 -3.19246799e-01\\n1.29397348e-01 -6.66984394e-02 2.58226395e-02 -2.62087435e-01\\n3.80460083e-01 3.05206198e-02 7.33466297e-02 3.85000408e-01\\n-8.66699457e-01 -1.33454967e-02 -2.64105409e-01 -4.18104678e-02\\n-4.13654894e-01 -6.52424917e-02 -4.74523515e-01 -1.55804604e-01\\n-1.32233322e-01 3.95601273e-01 -1.57053545e-02 1.20831870e-01\\n-8.72799009e-02 1.90223947e-01 -2.39056528e-01 2.54214466e-01\\n1.90656021e-01 1.90327883e-01 1.52354881e-01 1.69292748e-01\\n-2.89042324e-01 5.59022725e-01 1.73426032e-01 -2.59276062e-01\\n2.14212626e-01 1.54793844e-01 3.30740124e-01 -2.97552161e-02\\n1.47202253e-01 2.16019303e-01 -2.12081552e-01 1.82862118e-01\\n3.03658217e-01 -3.16032678e-01 -4.44155075e-02 -2.49843784e-02\\n1.62045239e-03 3.49316895e-02 -3.24592106e-02 1.40808001e-01\\n-3.73727173e-01 4.68760014e-01 8.56839940e-02 -2.01469272e-01\\n4.31629941e-02 -5.49779058e-01 -1.93952009e-01 -8.58052969e-02\\n-6.42616898e-02 1.29477456e-01 2.14856565e-01 2.26580620e-01\\n2.11266443e-01 -9.05679464e-02 1.61286682e-01 8.97106707e-01\\n-1.72662642e-02 4.32890095e-02 -2.18549639e-01 3.55478704e-01\\n-2.50826608e-02 -2.63867140e-01 1.97118551e-01 2.37657398e-01\\n7.62812570e-02 -2.70406511e-02 -1.74689010e-01 2.50309229e-01\\n-7.49686360e-02 -2.55958706e-01 -1.76618129e-01 1.70993492e-01\\n-6.03567623e-02 -4.63697672e-01 5.24712205e-01 5.92822954e-02\\n6.44474030e-02 -8.44114125e-02 6.68513551e-02 -1.17506824e-01\\n-2.51340959e-02 1.19340599e-01 3.43455300e-02 1.61518589e-01\\n-2.35834002e-01 -3.05694968e-01 -1.62289634e-01 1.90971270e-01\\n-1.85730770e-01 4.14421335e-02 -2.53246844e-01 -1.89795136e-01\\n2.98461616e-01 4.55926135e-02 -3.22965115e-01 1.96334660e-01\\n1.45396525e-02 3.66493016e-02 -1.01456821e-01 2.43520200e-01\\n-1.55359805e-01 2.96954095e-01 -1.12310052e-01 -1.21962421e-01\\n5.08188784e-01 1.27711520e-01 8.87355506e-02 -2.79984456e-02\\n2.21990898e-01 -4.53062207e-02 2.94044912e-01 3.37931924e-02\\n-7.40335107e-01 4.56572235e-01 -4.88654040e-02 -1.59077272e-01\\n1.91522345e-01 -3.35196964e-02 2.97192991e-01 -3.32289726e-01\\n-1.32584916e-02 -9.98062491e-02 -3.77890855e-01 -3.12321484e-01\\n-2.63868272e-01 -1.28236637e-01 2.73498446e-01 -5.31979144e-01\\n8.26959871e-03 2.09560320e-01 -5.21369517e-01 2.76892018e-02\\n1.84769541e-01 2.91110396e-01 1.57324925e-01 1.92036569e-01\\n-9.76754129e-02 -5.22699475e-01 1.43841699e-01 -4.32533950e-01\\n-1.72745213e-01 2.23321810e-01 -3.33327621e-01 2.40808740e-01\\n1.10804737e-01 -3.95779638e-03 -1.42567217e-01 1.48387551e-01\\n-1.83268353e-01 4.88819368e-02 1.44207776e-01 8.35886523e-02\\n2.88407654e-01 4.51891944e-02 -3.85806441e-01 5.18241823e-01\\n-1.95140511e-01 5.13497174e-01 1.01359591e-01 -7.71982610e-01\\n5.12168825e-01 2.77616739e-01 3.25088911e-02 -3.43879879e-01\\n6.15161121e-01 -3.60904813e-01 -4.17738445e-02 1.39305353e-01\\n-4.79231775e-01 -3.14677954e-01 9.43712518e-02 -2.26560473e-01\\n-2.16890037e-01 5.78126371e-01 5.51722087e-02 6.74266517e-02\\n3.02211642e-01 -1.50130197e-01 -1.57777339e-01 6.30151927e-02\\n-1.14738189e-01 -1.85685232e-01 -4.63802874e-01 -1.22751445e-01\\n-7.76513815e-02 -4.50132817e-01 -2.05209315e-01 -5.65085649e-01\\n-2.24781126e-01 -3.53338361e-01 -2.06232443e-01 1.10515364e-01\\n1.45879388e-01 1.65532365e-01 6.54752329e-02 5.63768074e-02\\n-1.34061128e-01 -5.68979263e-01 3.02805863e-02 4.00163010e-02\\n3.05268914e-01 1.99289173e-01 1.10505179e-01 -2.10561343e-02\\n-6.09337203e-02 6.55841470e-01 -3.64445806e-01 -1.76484212e-01\\n6.04400076e-02 1.71181768e-01 1.03521556e-01 -4.04950790e-02\\n1.27860382e-01 2.72784650e-01 -3.33948940e-01 -6.52224943e-03\\n-3.78074162e-02 -8.85075107e-02 2.74505496e-01 -4.66307849e-02\\n-3.06940556e-01 -3.26009542e-01 -4.29011174e-02 2.29161575e-01\\n-5.48056960e-01 -2.44233057e-01 5.86831570e-01 1.72917679e-01\\n1.14062726e-01 2.84505218e-01 2.68076807e-01 -1.14130639e-01\\n-9.83022600e-02 -2.51824230e-01 2.18887106e-01 9.70181152e-02\\n1.51812762e-01 6.77424148e-02 -1.90525785e-01 -7.08982348e-01\\n-3.24527597e+00 -9.83210579e-02 5.37957773e-02 -3.46471965e-01\\n3.55732203e-01 -1.34616777e-01 1.77753940e-01 -5.10864817e-02\\n-4.03739393e-01 3.88030745e-02 -1.67540923e-01 -2.06917837e-01\\n2.25713223e-01 2.29321122e-01 9.52715427e-02 2.70147830e-01\\n1.06661446e-01 -2.24826247e-01 9.40784290e-02 3.58945638e-01\\n-1.86706945e-01 -7.46163487e-01 1.21594585e-01 -2.72880811e-02\\n3.26745480e-01 2.84515858e-01 -4.58543986e-01 -1.52638555e-01\\n-2.80961454e-01 -1.25917330e-01 7.74110407e-02 -3.85799646e-01\\n-3.70077863e-02 2.66156346e-01 2.13670537e-01 -1.29333109e-01\\n8.15823115e-03 -2.94720620e-01 9.63109359e-02 -4.94713426e-01\\n7.45884180e-02 -5.73351264e-01 3.58112119e-02 6.74156845e-02\\n7.25357711e-01 -3.71745199e-01 1.94991037e-01 7.73049966e-02\\n1.25213787e-01 2.09269986e-01 5.27658612e-02 -5.37075510e-04\\n-2.83465952e-01 -2.55079895e-01 -1.84426844e-01 -1.76656708e-01\\n4.57737803e-01 5.44439554e-01 -2.15440705e-01 1.64349169e-01\\n-4.75559048e-02 -3.94987017e-01 -4.46086138e-01 -3.30132812e-01\\n-2.58629650e-01 -1.39309838e-01 -6.91900074e-01 -6.09815061e-01\\n-7.16798306e-02 -1.04310267e-01 -7.61944614e-03 4.61881071e-01\\n-2.22761706e-01 -2.97273725e-01 -1.05872648e-02 -5.89910209e-01\\n3.32740664e-01 -7.30889142e-02 1.08377188e-01 -1.22612536e-01\\n-7.14141354e-02 -4.23443586e-01 5.24793826e-02 -8.99949949e-03\\n-9.19280350e-02 -1.30372420e-01 1.06537633e-01 -9.67368931e-02\\n-4.05013025e-01 -6.00732207e-01 4.33678001e-01 7.75734261e-02\\n3.07028323e-01 1.13045581e-01 1.61959395e-01 -2.20943950e-02\\n2.73065418e-01 -1.14517391e-01 5.75593635e-02 -4.94413882e-01\\n8.58318899e-03 7.16281682e-02 5.62934816e-01 -2.48638898e-01\\n2.34890580e-02 1.23342305e-01 -2.79204816e-01 -1.34033784e-01\\n2.53702104e-01 -2.78197620e-02 6.39409050e-02 -2.01471880e-01\\n3.85558754e-01 -2.89121389e-01 -3.04993391e-01 1.55427560e-01\\n8.70495010e-03 4.81643528e-01 2.83414628e-02 -2.97116965e-01\\n-1.76386267e-01 4.48837489e-01 3.54262739e-02 -1.34738177e-01\\n-1.53975934e-01 -3.21901217e-02 -3.21917385e-01 1.40067801e-01\\n-9.07587673e-05 -1.70422420e-01 -2.99439728e-01 -9.04336348e-02\\n-3.24249379e-02 3.12872082e-01 2.03046411e-01 1.29424229e-01\\n-2.12194994e-01 -4.26910192e-01 -6.88625849e-04 1.94322571e-01\\n1.36465415e-01 4.04798806e-01 1.48197830e-01 -3.07572007e-01\\n6.12774976e-02 2.12033316e-01 -1.81309044e-01 2.53710598e-01\\n-2.06727639e-01 1.67902276e-01 -5.93734205e-01 -3.15401882e-01\\n-3.23848128e-01 -3.30435425e-01 9.26089659e-02 2.86891818e-01\\n1.47721440e-01 5.36211347e-03 7.08993226e-02 -3.78346771e-01\\n3.48350972e-01 -9.62175615e-03 2.56625384e-01 1.06612064e-01\\n5.54321473e-03 5.00910640e-01 -4.40958180e-02 -1.37442365e-01\\n-1.81327984e-01 1.49753496e-01 -2.23903418e-01 -2.34680429e-01\\n1.37174636e-01 -5.23396254e-01 -9.07166228e-02 4.49097991e-01\\n1.11089900e-01 -8.21309090e-02 -8.15702528e-02 2.17900977e-01\\n-4.97922674e-02 -3.01927954e-01 -3.37916404e-01 4.15159352e-02\\n3.34000438e-01 2.20325053e-01 2.73833692e-01 -4.97964472e-01\\n1.54959872e-01 -2.62581557e-02 -3.76029802e-03 4.43627745e-01\\n-5.36328964e-02 1.23908252e-01 -1.52028963e-01 -2.53328264e-01\\n4.24353629e-01 -1.88547838e-02 -1.96958333e-02 8.82230327e-02\\n3.70823853e-02 -1.51496619e-01 -4.65980411e-01 4.20641266e-02\\n2.38742009e-02 -1.37682781e-01 9.86736789e-02 7.29344636e-02\\n1.34340584e-01 -1.70264691e-02 -5.70336759e-01 -2.92256057e-01\\n-2.68857807e-01 1.51632046e-02 -2.57112756e-02 -3.53985339e-01\\n-2.40771230e-02 -2.88755819e-02 -5.34162760e-01 2.91371733e-01\\n-1.45012125e-01 -4.59438041e-02 2.71247238e-01 -9.00504738e-03\\n-4.42018658e-01 -4.22238335e-02 2.15222076e-01 2.62176991e-01\\n-2.79281169e-01 -1.31206095e-01 -6.58725649e-02 -9.58643198e-01\\n2.48883888e-01 -1.32099003e-01 -5.36124445e-02 1.69137105e-01\\n-1.25057846e-01 -7.50647366e-01 1.75455809e-01 -4.21255380e-01\\n-1.17679581e-01 4.21561450e-02 -1.85840666e-01 -4.21346426e-01\\n1.22832343e-01 -7.46336579e-02 -2.25876197e-01 4.05995280e-01\\n-3.74102920e-01 3.63710552e-01 -1.00987658e-01 4.88177724e-02\\n2.84191524e-03 -2.86147535e-01 1.45366609e-01 -4.31975812e-01\\n-3.60874414e-01 -1.08531386e-01 -2.84198731e-01 -1.63346410e-01\\n4.21037618e-03 -2.99949914e-01 -5.56920506e-02 2.02413443e-02\\n4.08039600e-01 5.64120151e-02 -1.32539168e-01 -1.63916230e-01\\n3.37721184e-02 -4.59013730e-01 1.77485228e-01 -2.09137917e-01\\n6.53753802e-03 -1.17975004e-01 2.45392904e-01 1.36956483e-01\\n1.66505173e-01 -5.01433253e-01 4.68517244e-01 -2.90196687e-01\\n-4.45065796e-01 -3.88198160e-02 8.20334256e-02 1.29098753e-02\\n3.82705182e-01 -4.35926020e-01 -7.13932514e-02 3.35871279e-01\\n2.77164541e-02 -5.27233779e-02 2.43552685e-01 -5.36459424e-02\\n-1.55055806e-01 3.68713975e-01 -4.64435399e-01 1.11540943e-01\\n7.64247060e-01 2.11214021e-01 2.34409034e-01 1.80559039e-01\\n1.97899833e-01 4.42156315e-01 4.13545310e-01 5.54455146e-02\\n-6.07773326e-02 3.78328800e-01 1.41907111e-01 -6.00179255e-01\\n-1.71131454e-02 -1.28583759e-01 -1.99612156e-01 -3.78658384e-01\\n6.21825874e-01 3.80464703e-01 -2.98762739e-01 -2.91284293e-01\\n-2.62536556e-01 -1.95770532e-01 1.13236383e-01 -9.08564255e-02\\n1.86662048e-01 -2.58907348e-01 4.50066447e-01 -3.74419913e-02\\n2.53141403e-01 5.38776577e-01 -2.09225699e-01 -3.42618376e-01\\n-7.14973211e-02 1.94250286e-01 7.22212195e-02 4.16994005e-01\\n-1.30392537e-01 2.46725500e-01 -2.35554799e-02 1.78460151e-01\\n-1.37709871e-01 3.77712920e-02 1.61794871e-01 4.55175526e-03\\n1.85070783e-01 1.65081888e-01 3.97132814e-01 4.36072528e-01\\n2.97018021e-01 5.02614439e-01 2.38122895e-01 4.30402532e-02\\n5.07481754e-01 5.86602151e-01 4.04883713e-01 1.49632201e-01\\n-6.08793162e-02 8.49951357e-02 4.70912969e-03 3.08333058e-03\\n3.02210122e-01 3.62614900e-01 1.15864370e-02 9.12414253e-01\\n4.11557198e-01 3.08369905e-01 8.08166623e-01 -5.83395839e-01\\n-4.16567206e-01 -6.25687931e-03 5.22746503e-01 -4.59154397e-01\\n1.16123985e-02 1.81052670e-01 -2.61414528e-01 3.33840281e-01\\n-3.80022556e-01 -1.78984508e-01 2.33988874e-02 -7.03074709e-02\\n-2.76222415e-02 1.57800671e-02 -1.86525851e-01 7.64693925e-03\\n-2.12475255e-01 -2.10408732e-01 -5.21903217e-01 -1.10752761e-01\\n-2.95979142e-01 -8.31125528e-02 -1.18233018e-01 -1.48936778e-01\\n-1.48180112e-01 -3.09835225e-01 -1.52388081e-01 -8.80184397e-03\\n3.23110908e-01 -1.57268211e-01 -1.32724166e-01 -2.02975318e-01\\n3.78830165e-01 1.75158963e-01 6.76213980e-01 2.01145113e-02\\n9.45379138e-02 -2.35519812e-01 -1.63976222e-01 1.33471057e-01\\n2.00232476e-01 1.24660894e-01 4.36808430e-02 4.40089256e-01\\n-3.52115452e-01 -2.06055716e-01 1.30682766e-01 3.42669278e-01\\n-3.96928489e-01 -1.48671167e-02 -6.53938949e-03 2.07837954e-01\\n1.23359077e-01 8.48608986e-02 -1.85038075e-01 1.45648569e-01\\n-1.99263036e-01 -5.28940082e-01 3.01312894e-01 -1.19065963e-01\\n-8.97404999e-02 4.02265936e-02 2.05652609e-01 1.98669940e-01\\n-3.25926468e-02 2.00213194e-02 -1.40320644e-01 1.57324195e-01\\n1.28684729e-01 3.53975385e-01 -2.74407923e-01 -3.20546746e-01\\n-2.39693552e-01 2.41033450e-01 -2.47134432e-01 1.82797775e-01\\n-6.27521332e-03 3.15889686e-01 4.10882151e-03 8.94808248e-02\\n3.28599662e-01 -5.00399806e-02 -2.41735324e-01 -3.58677864e-01\\n-2.59882540e-01 -1.66964218e-01 5.80436699e-02 -4.47663032e-02\\n1.53210089e-01 -4.07208264e-01 -1.22531153e-01 -1.63937047e-01\\n-1.84956759e-01 -3.59827310e-01 -6.44601807e-02 -5.63750416e-02]]',\n", + " 'After an initial training period on the AVALOQ core banking application, our developers will join a project team and work hand in hand with our clients to help them implement the system. Ayaval offers you a diversified and challenging assignment, exposure to top tier international banks, possibilities to develop multi-disciplinary IT skills, a dynamic atmosphere in terms of colleagues and clients and a good working climate. You get a competitive compensation package and the chance of being part of a growing and dynamic consultancy. Our collaboration is based on a mutual trust and responsibility. Your main responsibilities: Extend and enhance the core business functionality of the AVALOQ core banking system based on Oracle PL/SQL. Analyse, design and develop new functionality, interfaces and enhancements to the product core. Integrate our solutions into the customer environment in close cooperation with our consultants and with the clients business analysts. Your qualifications (for all positions): University degree in computer science or similar. Avaloq parametrisation experience (Avaloq certification is a clear advantage). Strong skills in object oriented and relational data modelling. Good knowledge of and proven practical experience with at least one DBMS. Strong analytical skills and willingness to focus on Database Engineering. Working knowledge of English. Willingness to work remotely at clients premises on short and long-term projects in Switzerland and abroad (i.e. up to 18 months). An asset is: Working knowledge of German, French or Spanish. Experience with PL/SQL optimisation and tuning. Working experience in a bank environment, the financial industry or insurance industry. Experience in data and process modelling, use case oriented requirements engineering and interface development third party systems. Additional qualifications for senior positions: Valid Avaloq Certification and at least 1 year full time experience as Avaloq developer At least 2 years full time experience in software engineering and database development. Experience with Oracle 10/11g. Working experience with PL/SQL development in real-life projects. If you are interested, please send your complete application in English by email to: office@ayaval.com.',\n", + " '[\"Analytical Skills\", \"Cooperation\", \"Collaboration\", \"Integration\", \"Positivity\", \"Consulting\"]',\n", + " '[\"PL/SQL\", \"Computer Science\", \"Data Modeling\", \"Database Development\", \"Industrialization\", \"Component Object Model (COM)\", \"E (Programming Language)\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Process Modeling\", \"Knowledge-Based Systems\", \"Software Engineering\", \"Requirements Engineering\", \"Core Product\", \"Database Engines\", \"Banking\", \"Additives\", \"Atmospheric Dynamics\", \"Long-Term Potentiation\", \"Functional Interface\", \"Integrated Product Team\"]',\n", + " \"['English', 'Shona', 'French', 'Flemish', 'Haitian']\"],\n", + " ['17',\n", + " 'data science manager f/m switzerland',\n", + " 'Switzerland',\n", + " 'Consulting',\n", + " 'www.axxiome.com',\n", + " '[[-2.45921910e-01 3.64944696e-01 5.66830039e-01 -4.42552194e-03\\n6.07137740e-01 -3.58532816e-02 -7.13070855e-04 2.29102582e-01\\n-8.79856385e-03 -4.23271626e-01 -1.12019163e-02 -2.79152483e-01\\n1.17464408e-01 1.81373224e-01 2.31768861e-02 4.22521472e-01\\n2.09838718e-01 3.76365110e-02 -1.79761857e-01 4.03860956e-01\\n2.34120376e-02 -1.44892216e-01 2.07821861e-01 7.00868130e-01\\n4.20755804e-01 -2.49336548e-02 -4.27808836e-02 -4.32553031e-02\\n-2.81308353e-01 -2.11954385e-01 5.24052203e-01 2.60045230e-02\\n-1.87911510e-01 -2.90406376e-01 1.07913442e-01 3.05315405e-02\\n-2.64642119e-01 -9.09706503e-02 -1.89330533e-01 1.44601107e-01\\n-4.73985076e-01 -1.82331115e-01 -1.06650069e-02 -2.91811861e-03\\n-3.76790941e-01 -5.17107308e-01 -1.25920102e-01 -1.00769050e-01\\n1.08134978e-01 9.05703604e-02 -4.54427838e-01 1.93579257e-01\\n-2.60035336e-01 -2.59526730e-01 2.71923423e-01 7.75269151e-01\\n-2.98850853e-02 -4.39171314e-01 -5.32690525e-01 -3.93370718e-01\\n1.47971913e-01 -7.26859272e-02 7.86159933e-02 -3.06278467e-01\\n2.78093457e-01 -3.30605730e-03 3.75598557e-02 2.43363649e-01\\n-7.56314635e-01 -1.50222898e-01 -3.26991111e-01 4.13803719e-02\\n-3.66385281e-01 -1.05629474e-01 -4.33392674e-01 -2.40224093e-01\\n-1.23682141e-01 4.59726006e-01 1.06721871e-01 -3.25710848e-02\\n-2.64199972e-01 2.76415229e-01 -3.26216042e-01 2.17330575e-01\\n1.81030706e-01 3.17788005e-01 3.44060987e-01 3.91795516e-01\\n-3.28861833e-01 4.00029361e-01 2.92857468e-01 -3.70870233e-01\\n2.56032765e-01 1.52590707e-01 3.01409543e-01 -1.02013722e-02\\n1.69352084e-01 1.29102111e-01 -1.88280120e-01 3.37971598e-01\\n2.92865813e-01 -2.53491759e-01 1.13441981e-02 -1.18685320e-01\\n7.98881799e-02 -4.54057828e-02 1.68322399e-02 1.24850497e-01\\n-3.90109837e-01 2.84585595e-01 -4.44836654e-02 -3.66795272e-01\\n-1.00431263e-01 -4.57162291e-01 -1.06918573e-01 -8.01978409e-02\\n-5.70156518e-03 1.87075034e-01 1.78632349e-01 2.35677660e-01\\n2.10754246e-01 -5.03677428e-02 1.70380592e-01 8.76710653e-01\\n-8.34595039e-03 4.89493869e-02 -3.32669228e-01 4.18295622e-01\\n7.65853748e-03 -1.90081030e-01 1.90014482e-01 1.06433108e-01\\n-1.29714862e-01 -5.53015508e-02 -3.17486405e-01 3.26737285e-01\\n-5.01306206e-02 -2.85634041e-01 -1.82487592e-01 1.18685432e-01\\n-2.42170654e-02 -4.91118252e-01 6.07552648e-01 -2.95297876e-02\\n1.18727639e-01 -2.52901286e-01 5.49544487e-03 -1.00099713e-01\\n-1.47795305e-03 1.36073396e-01 1.42462879e-01 1.10068917e-01\\n-2.93086052e-01 -2.61587262e-01 -9.45952386e-02 2.04275176e-01\\n-3.72313261e-01 5.68338484e-03 -2.17546254e-01 -6.04286306e-02\\n2.10390940e-01 1.22314103e-01 -4.67245340e-01 1.52860612e-01\\n-7.63912871e-02 -6.53198585e-02 -6.28637057e-03 4.08639252e-01\\n-3.66601586e-01 2.10801393e-01 -6.10959157e-02 -1.05927579e-01\\n6.28257394e-01 1.36030614e-01 3.37295145e-01 1.67331984e-03\\n2.35847265e-01 -6.34730384e-02 1.65461987e-01 2.23834157e-01\\n-5.79585254e-01 4.36830193e-01 -8.55116397e-02 -1.90968633e-01\\n1.48631006e-01 -8.61020237e-02 3.19376707e-01 -2.54164547e-01\\n1.09994173e-01 -1.79887325e-01 -2.81099111e-01 -3.52362216e-01\\n-9.43516865e-02 -4.85175848e-02 3.22893560e-01 -5.07194817e-01\\n-7.61729479e-03 2.63135016e-01 -5.76938748e-01 -2.25446984e-01\\n1.20687030e-01 2.38363579e-01 7.45931938e-02 2.11705700e-01\\n-1.76185995e-01 -5.34414768e-01 1.38204321e-01 -4.11061585e-01\\n-2.34608501e-01 1.61183521e-01 -2.93112636e-01 1.30785525e-01\\n4.76591624e-02 2.24735159e-02 -1.05475865e-01 6.95926100e-02\\n-3.24384570e-01 -1.61868110e-02 1.67739503e-02 7.41715729e-02\\n3.55591476e-01 1.47779748e-01 -4.31447506e-01 5.21407366e-01\\n-1.65915996e-01 3.91414404e-01 1.80935234e-01 -1.00179696e+00\\n4.41542685e-01 3.47838730e-01 6.50071129e-02 -3.69515121e-01\\n5.59662938e-01 -3.95547062e-01 -2.96869520e-02 1.25100851e-01\\n-3.11068058e-01 -2.29845583e-01 2.32175797e-01 -2.63683528e-01\\n-2.66220629e-01 5.03459215e-01 -2.03863233e-02 1.43936604e-01\\n3.03789854e-01 -2.84333766e-01 -2.92014003e-01 -1.28883198e-01\\n-2.25134090e-01 -2.67191052e-01 -6.82415664e-01 2.43814290e-03\\n-9.48423892e-02 -4.56080288e-01 -9.62660015e-02 -4.14302230e-01\\n-1.35782093e-01 -3.27197075e-01 -1.55999899e-01 4.64870185e-02\\n2.03237012e-01 1.12335689e-01 -1.31886184e-01 -2.83232890e-02\\n2.26668492e-02 -6.32648706e-01 -8.35290700e-02 1.24586798e-01\\n3.28894079e-01 2.66649902e-01 1.72872901e-01 4.07448635e-02\\n3.69883366e-02 6.54320240e-01 -2.93933392e-01 -2.73528099e-01\\n2.35190347e-01 1.35438293e-01 -6.35076314e-02 -1.96907341e-01\\n7.97661915e-02 2.46569231e-01 -2.67043054e-01 -1.50392763e-03\\n8.39423537e-02 -5.40301390e-02 3.38879973e-01 1.77628547e-02\\n-1.90582663e-01 -2.03127712e-01 -6.51058555e-02 1.30328491e-01\\n-5.84850669e-01 -2.64413476e-01 6.32897258e-01 1.34088337e-01\\n9.50071029e-03 2.51613736e-01 2.29802251e-01 1.88265294e-02\\n-3.66359562e-01 -2.13709712e-01 3.07417035e-01 8.39281529e-02\\n1.96068406e-01 6.11872748e-02 5.12848124e-02 -5.77519417e-01\\n-3.24799728e+00 -1.69826210e-01 1.06522381e-01 -2.25405872e-01\\n3.08175147e-01 -1.89206302e-01 1.63121253e-01 4.45353314e-02\\n-4.54820126e-01 1.42139625e-02 -9.49461311e-02 -1.37367144e-01\\n5.78579307e-02 1.89332396e-01 8.62061977e-02 1.91817939e-01\\n1.42997324e-01 -1.68550238e-01 7.36394152e-02 3.95097315e-01\\n-8.34486261e-02 -7.82853246e-01 1.66983396e-01 1.36964232e-01\\n1.21752001e-01 1.05963036e-01 -4.65968609e-01 -1.36122018e-01\\n-3.57103407e-01 -2.17097014e-01 1.21184766e-01 -2.82251537e-01\\n-1.90611392e-01 2.12878883e-01 2.40197480e-01 -6.95260763e-02\\n2.69690920e-02 -3.47148955e-01 -5.56462631e-02 -5.26130319e-01\\n8.72342363e-02 -6.10046625e-01 1.80049986e-03 -6.27218187e-02\\n7.39886522e-01 -2.77540952e-01 1.94530487e-01 1.91638410e-01\\n1.06656328e-01 1.63295954e-01 1.92849159e-01 6.54033944e-02\\n-2.34414548e-01 -3.04287136e-01 -1.06991798e-01 -1.35043666e-01\\n6.06157124e-01 3.87201041e-01 -1.21685475e-01 4.22015078e-02\\n1.07443072e-01 -2.14714855e-01 -5.31587601e-01 -2.41496980e-01\\n-1.90920800e-01 -1.38890103e-01 -7.47319221e-01 -5.13473034e-01\\n-1.52645022e-01 -1.69929966e-01 -1.20133206e-01 6.72429919e-01\\n-1.25722989e-01 -2.56621331e-01 -1.95590854e-01 -4.87632364e-01\\n3.40316892e-01 -1.53406411e-01 7.67541304e-02 -1.80450037e-01\\n-1.68858439e-01 -3.90759051e-01 1.63518235e-01 -4.90865484e-02\\n-9.50010121e-02 -9.49073732e-02 6.59806374e-03 -1.33534163e-01\\n-3.63709539e-01 -5.95687926e-01 3.92257780e-01 8.04415345e-02\\n4.33541536e-01 8.36967230e-02 4.16038752e-01 -4.92727235e-02\\n3.91176701e-01 -6.91211596e-02 -1.48355290e-01 -4.93212640e-01\\n-6.06559515e-02 9.93431583e-02 5.32403588e-01 -2.09267661e-01\\n4.22511026e-02 -8.34257901e-03 -1.90606460e-01 -5.67713603e-02\\n3.45819980e-01 -8.13398361e-02 1.63348898e-01 -7.88199306e-02\\n2.25743979e-01 -2.68304437e-01 -1.04395591e-01 8.70596319e-02\\n7.67047983e-04 6.03134334e-01 -6.25669211e-02 -3.56460929e-01\\n-4.75177765e-02 4.08956170e-01 -4.37586159e-02 -1.00416765e-01\\n-3.08997571e-01 -2.62237713e-02 -2.88998842e-01 4.15641457e-01\\n-8.36860985e-02 -1.96044520e-01 -2.42734015e-01 -1.15270570e-01\\n-8.46666247e-02 3.39749098e-01 2.38535404e-01 2.01701581e-01\\n-3.77592780e-02 -4.09201711e-01 -1.04267605e-01 1.88862771e-01\\n2.72506565e-01 3.84476304e-01 2.52921373e-01 -2.66126782e-01\\n7.01435935e-03 2.31164202e-01 -3.12745273e-01 2.70031601e-01\\n-1.71409488e-01 2.28548393e-01 -7.02564120e-01 -2.83752441e-01\\n-2.08915830e-01 -3.24911743e-01 2.07820892e-01 4.84418899e-01\\n2.14780331e-01 -8.35779980e-02 1.30925566e-01 -5.00762582e-01\\n2.89361715e-01 1.76102281e-01 1.22894250e-01 3.34063694e-02\\n-7.21575618e-02 8.39317024e-01 2.67627873e-02 -1.64550453e-01\\n1.71246715e-02 3.88621166e-03 -2.45666057e-01 -2.18836084e-01\\n4.54920530e-02 -5.34934044e-01 -1.49418220e-01 5.12873352e-01\\n1.72530025e-01 -1.44415632e-01 -1.38982147e-01 2.46456265e-01\\n1.22482069e-02 -2.55173147e-01 -2.92161405e-01 5.41106947e-02\\n3.45119476e-01 2.08441824e-01 2.88472503e-01 -5.93923628e-01\\n2.30947826e-02 -5.04769832e-02 4.61579151e-02 4.76999313e-01\\n8.36529136e-02 1.59786820e-01 -8.18593726e-02 -1.12589180e-01\\n5.34571588e-01 -5.26609458e-02 -1.31717294e-01 9.87673700e-02\\n1.06258601e-01 -1.84308559e-01 -3.16501886e-01 6.96009547e-02\\n5.76907173e-02 -3.07378501e-01 -6.59161657e-02 2.06394672e-01\\n3.99399847e-02 5.78490570e-02 -6.52556181e-01 -2.13704571e-01\\n-3.81309569e-01 4.25295159e-02 4.56301644e-02 -6.49009824e-01\\n6.15077205e-02 -1.15735121e-01 -5.84666252e-01 3.19792658e-01\\n1.10377073e-01 -1.85834795e-01 1.54304832e-01 4.23192978e-04\\n-2.16205731e-01 -2.47395664e-01 1.75002486e-01 2.98761457e-01\\n-2.44280308e-01 -2.60217011e-01 -4.22296152e-02 -9.04650927e-01\\n1.16268277e-01 6.54700696e-02 -8.91539603e-02 2.45658457e-01\\n6.58497214e-04 -7.33578205e-01 2.82283366e-01 -3.81602824e-01\\n-2.09483862e-01 -5.65385260e-02 -2.51575977e-01 -4.11636323e-01\\n1.18698716e-01 3.70347053e-02 -2.05585554e-01 4.49339628e-01\\n-3.05426568e-01 5.05944610e-01 -1.73813432e-01 3.70150656e-02\\n1.34803578e-01 -2.33847052e-01 9.02599767e-02 -2.93336451e-01\\n-4.29284632e-01 -2.21725553e-01 -2.75201023e-01 -3.27438116e-01\\n-1.66207999e-01 -2.50342637e-01 -7.11620376e-02 1.43014807e-02\\n4.78029847e-01 2.18206286e-01 -1.06679216e-01 -1.48405358e-01\\n1.47682920e-01 -4.79291230e-01 2.66344696e-01 -1.88953221e-01\\n-1.12153590e-03 -1.21023074e-01 2.01207161e-01 1.29752934e-01\\n1.83702007e-01 -3.42673153e-01 4.05458778e-01 -3.06599140e-01\\n-3.56773376e-01 -1.80469215e-01 7.36860558e-02 2.57491227e-02\\n3.50551903e-01 -3.83217722e-01 -1.26342922e-01 3.16002071e-01\\n8.86447430e-02 1.28272325e-02 2.90792197e-01 -1.86736703e-01\\n-1.81795321e-02 3.06658030e-01 -5.24818480e-01 2.60160446e-01\\n8.48055899e-01 1.10449523e-01 2.42968410e-01 2.89506137e-01\\n2.52098680e-01 2.30567485e-01 3.99969548e-01 -9.57072824e-02\\n-2.05243990e-01 3.93826306e-01 7.53218457e-02 -4.83305424e-01\\n-1.09464027e-01 -1.73052430e-01 -2.26075500e-01 -4.59894568e-01\\n5.80006897e-01 3.13304365e-01 -3.13438594e-01 -2.22106159e-01\\n-2.80672997e-01 -9.55687389e-02 3.41950446e-01 -2.10532285e-02\\n-4.04935032e-02 -9.00340267e-03 5.80752373e-01 -1.76937386e-01\\n3.75622749e-01 5.29786289e-01 -2.13048786e-01 -3.02188903e-01\\n-6.72305599e-02 2.84235120e-01 9.90334079e-02 4.56026256e-01\\n-1.88996643e-01 2.73309767e-01 6.46158233e-02 2.06541523e-01\\n-2.26517797e-01 2.90215742e-02 2.25946650e-01 9.79579613e-02\\n1.49736643e-01 5.40722013e-02 5.74282885e-01 3.40536207e-01\\n2.84645557e-01 3.55635285e-01 3.58910799e-01 5.27420491e-02\\n5.05891562e-01 5.76545477e-01 3.40940446e-01 1.43006518e-01\\n-2.32622474e-02 6.61864057e-02 9.19683054e-02 -2.67255381e-02\\n1.70390472e-01 5.23409128e-01 1.00115307e-01 8.55834246e-01\\n3.27121615e-01 3.83333921e-01 6.89056873e-01 -6.68171346e-01\\n-2.98700750e-01 2.68845912e-02 5.15031815e-01 -4.69754308e-01\\n4.44980338e-02 1.96003169e-01 -2.65809357e-01 1.55805796e-01\\n-5.26422739e-01 -2.39244461e-01 1.97987724e-03 6.03208318e-02\\n-4.44223732e-02 -1.33598968e-01 -1.68413088e-01 2.28887111e-01\\n-1.31252766e-01 -1.42758027e-01 -3.60055506e-01 -1.09288201e-01\\n-2.75815457e-01 3.34134996e-02 -9.96145308e-02 4.40237001e-02\\n-1.06014490e-01 -2.81776607e-01 -1.68639589e-02 -1.39402419e-01\\n3.60379785e-01 -6.96187615e-02 -1.12020478e-01 -2.50156727e-02\\n2.43043721e-01 1.32869542e-01 6.48293138e-01 1.78837478e-02\\n8.48599896e-02 -2.50000209e-01 -1.40357256e-01 6.23552762e-02\\n2.28759289e-01 2.34695189e-02 -3.91375320e-03 3.76838803e-01\\n-2.33588368e-01 -2.61357486e-01 7.96170682e-02 1.75206900e-01\\n-4.07878757e-01 -4.38190587e-02 -1.18612051e-01 8.47824514e-02\\n-1.34902820e-03 1.98414788e-01 -3.02337587e-01 2.15135142e-02\\n-5.74270822e-02 -4.99403059e-01 3.29176903e-01 -1.74990714e-01\\n-1.49460539e-01 1.25245526e-02 2.70362228e-01 1.41746044e-01\\n-2.46404469e-01 8.99055600e-02 -1.87737614e-01 1.59438118e-01\\n-6.67132884e-02 2.97512829e-01 -1.98901206e-01 -2.20736310e-01\\n-3.31923842e-01 1.41132772e-01 -9.16024297e-02 1.81684241e-01\\n3.55431437e-02 4.12354469e-01 7.65552893e-02 4.04589027e-02\\n3.89421374e-01 -1.51551468e-02 -2.70998240e-01 -2.18103588e-01\\n-2.26548940e-01 -1.72021717e-01 -1.16660625e-01 -9.22714770e-02\\n2.63544202e-01 -2.78902918e-01 -6.21061912e-03 -2.97500670e-01\\n-2.16268674e-01 -5.27362585e-01 1.41717307e-02 -1.07467048e-01]]',\n", + " 'OUR COMPANY Our mission is to deliver solutions to the financial services industry, driving business and technology change through proven global expertise. Axxiome is a name synonymous with quality and value for financial services organizations that are looking to improve or build upon their IT operations. With offices and subsidiaries in many countries across 4 continents, Axxiome excels in transforming legacy banking and insurance platforms to modern solutions and is considered a leader in implementation and integration of digitization initiatives across the globe. In Cooperation with the Business Engineering Institute St.Gallen AG (BEI AG) we are building up a Data Science team for financial services. Innovation based on science and projects will lead us to success. BEI AG is the leading company for turning knowledge gained from research and science into practice-oriented consulting and innovative solutions. Join our team as DATA SCIENCE MANAGER F/M SWITZERLAND JOB DESCRIPTION As Data Science Manager you will manage a team of 3-5 highly educated and experienced data science analysts and developers, collaborate with the BEI AG and be responsible with your team for innovation and accurate data collection, processing, modelling and analysis to drive business. Lead data science projects end to end and coordinate functional teams/developers of 3-5 employees Mine, analyze customer data to drive optimization and improvement of products, marketing techniques and business strategy with your team Develop/use predictive statistics behavioral or other models by machine learning and/or traditional statist. modeling techniques to increase and optimize customer experience and revenue generation Develop data models, algorithms, tools and methods Applied knowledge of the configuration options of modules within or across packages to functional solutions using detailed knowledge of package capabilities to meet business requirements Create showcases how BI data can help to facilitate and drive business decisions focused on Financial Services Industries Connect findings to business initiatives and approach customer at various management levels to create opportunities REQUIREMENTS Master’s degree in engineering, computer science, physics, math or economics Familiar with the principles of modelling 5 years of experience Project Management SQL database management and maintenance skills Several years developing sustainable customer relations Fluent in German and English ADDITIONAL AS A PLUS Machine Learning, AI Python; R and/or SPSS knowledge or equivalent tools WE OFFER Unleash your potential in an international company with flat hierarchies. Enjoy a maximum of personal freedom. A structured onboarding process ensure that our new hires get familiar with Axxiome, receive right tools and feel seen and accountable. An attractive salary model with performance-based bonuses, a generous home office regulation, a company car for private use and other benefits of a modern consulting company round off our offer to you. As a top performer, you also participate directly in the company’s success through an investment model. To ensure that your knowledge is always “state-of-the-art”, you regularly take part in internal and external training courses. An intensive training and a regular coaching enable you to reach your personal goals. YOUR APPLICATION Please apply online with your complete set of documents, including your desired salary and your possible starting date at recruiting.dach@axxiome.com. For any questions please don’t hesitate to contact Hardy Schwarzer, Recruiting Manager Europe at Axxiome (hardy.schwarzer@axxiome.com, +49 151 27 655 588).',\n", + " '[\"Research\", \"Cooperation\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Management\", \"Accountability\", \"Operations\", \"Integration\", \"Innovation\", \"Consulting\"]',\n", + " '[\"Tooling\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Technological Change\", \"Business Strategies\", \"Financial Services\", \"Sustainable Development\", \"Service Level Management\", \"Onboarding\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Customer Data Integration\", \"Performance Based Contracting\", \"Process Modeling\", \"Statistical Modeling\", \"SQL Plan Management\", \"Investments\", \"Machine Learning Methods\", \"Data Science\", \"Business Requirements\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Personalization\", \"Physics\", \"Receivables\", \"Service Innovation\", \"Modulation\", \"Economics\", \"Product Marketing\", \"Banking\", \"Project Management\", \"Algorithms\", \"Customer Experience\", \"Service Industries\", \"Additives\", \"Data Collection\", \"Job Descriptions\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"New Hire Orientations\"]',\n", + " \"['English', 'Basque']\"],\n", + " ['114',\n", + " 'internship aircraft data analytics (all genders)',\n", + " 'Zürich',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " \"['English', 'Welsh']\"],\n", + " ['11',\n", + " 'computer vision & machine learning engineer (m/f) in tech-startup (zh/sg)',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.advertima.com',\n", + " '[[-7.48125613e-02 2.07835570e-01 4.13504213e-01 2.60667298e-02\\n5.27177691e-01 -1.57908928e-02 4.35426906e-02 5.12840092e-01\\n-4.83831353e-02 -5.26692152e-01 5.49370311e-02 -1.96710870e-01\\n-1.63398251e-01 6.90943524e-02 -2.87500788e-02 4.91514653e-01\\n3.48133087e-01 3.24850567e-02 -2.51344264e-01 4.14437264e-01\\n1.43588513e-01 -7.46505931e-02 1.35740444e-01 8.27436090e-01\\n4.11910862e-01 3.23479883e-02 -9.66688618e-02 6.09110648e-05\\n-1.28485680e-01 -1.53699204e-01 4.46923971e-01 -4.01104465e-02\\n-2.93530434e-01 -4.21549112e-01 1.61809966e-01 6.34851307e-02\\n-3.26294124e-01 -4.79399338e-02 -8.50537494e-02 1.99593470e-01\\n-5.31336725e-01 -2.39011541e-01 -1.98493809e-01 -1.52248878e-03\\n-3.57401073e-01 -4.12513912e-01 -2.35237963e-02 -7.23645417e-03\\n5.08585274e-02 1.97815597e-01 -4.25257891e-01 2.77907193e-01\\n-2.71358579e-01 -2.68183023e-01 2.50582248e-01 6.71763241e-01\\n3.00997347e-02 -3.51465911e-01 -5.90603232e-01 -3.74534220e-01\\n7.55006745e-02 -1.31098658e-01 6.19654544e-02 -3.68496984e-01\\n2.20492423e-01 1.04646027e-01 2.00463384e-01 2.14055791e-01\\n-7.28041708e-01 -2.26604640e-02 -3.77883226e-01 -1.77688897e-01\\n-2.52983540e-01 -2.65825894e-02 -2.75271893e-01 -1.30633980e-01\\n-8.04400519e-02 4.66312200e-01 1.08041100e-01 4.48809601e-02\\n-2.31912181e-01 3.08458298e-01 -2.04646558e-01 4.24157351e-01\\n1.26530781e-01 1.97570026e-01 8.99697542e-02 3.40761513e-01\\n-3.61919165e-01 4.94392663e-01 1.11442529e-01 -4.32582140e-01\\n2.05883458e-01 1.31741717e-01 3.92908216e-01 -4.69278097e-02\\n2.06392407e-01 9.47498456e-02 -3.98474246e-01 3.61459047e-01\\n2.86300510e-01 -3.59656632e-01 1.79673314e-01 -1.02912620e-01\\n8.76625925e-02 5.08109620e-03 2.07532957e-01 6.40464500e-02\\n-2.69463092e-01 4.55623835e-01 7.12066442e-02 -2.54219562e-01\\n-1.40845012e-02 -4.14022803e-01 -1.09639913e-01 -1.97120439e-02\\n-1.85655802e-02 1.98791206e-01 2.59927630e-01 6.10037372e-02\\n1.84396625e-01 -1.22795209e-01 5.97733594e-02 8.13485563e-01\\n-1.17612004e-01 2.09934749e-02 -3.09005052e-01 3.31056267e-01\\n1.18769221e-01 -4.59516913e-01 3.24716330e-01 3.47765476e-01\\n-1.72157399e-02 -2.07467362e-01 -1.88085467e-01 3.84308130e-01\\n4.94885724e-03 -2.66732812e-01 -3.39586377e-01 2.21659973e-01\\n4.17912714e-02 -5.40848494e-01 7.15782225e-01 1.56245932e-01\\n2.29486614e-01 -1.22062832e-01 5.10278419e-02 -1.48741230e-01\\n5.54006286e-02 1.46335363e-01 1.58569664e-01 5.42617999e-02\\n-2.45616004e-01 -3.14456284e-01 -2.00252637e-01 1.04914345e-01\\n-5.13096273e-01 1.48689479e-01 2.35152207e-02 -2.02239119e-02\\n2.13221356e-01 -4.46189158e-02 -3.41341317e-01 4.23323125e-01\\n-1.15832798e-01 -6.50786534e-02 3.90008017e-02 3.46165001e-01\\n-1.77494243e-01 3.14297438e-01 -4.28830534e-02 -1.56724855e-01\\n8.56056571e-01 2.55528182e-01 7.45730698e-02 4.07931767e-03\\n2.39926547e-01 6.78101406e-02 1.62786499e-01 2.03532577e-01\\n-7.40827978e-01 3.89650315e-01 -9.40904170e-02 -1.71619162e-01\\n8.91325101e-02 -1.81489915e-01 3.66186887e-01 -3.46606731e-01\\n-7.09829256e-02 -1.20310955e-01 -1.65692300e-01 -3.29915166e-01\\n-2.54832983e-01 -6.61463141e-02 3.79581422e-01 -4.96371925e-01\\n-1.96535900e-01 1.39401987e-01 -4.53027189e-01 -5.71447536e-02\\n1.68783993e-01 1.22829907e-01 2.26199523e-01 1.06280930e-01\\n-1.07998066e-01 -4.76163507e-01 2.09548678e-02 -3.76099199e-01\\n-3.64155114e-01 6.42323717e-02 -3.21632832e-01 1.98440403e-01\\n2.61040945e-02 2.30498938e-03 -8.14980045e-02 5.08852862e-02\\n-1.99491262e-01 -5.70860542e-02 1.00729175e-01 2.59538670e-03\\n2.50436038e-01 8.80186632e-02 -4.22680736e-01 3.72438908e-01\\n-1.68824807e-01 6.67744458e-01 1.31584153e-01 -8.62265408e-01\\n4.68892068e-01 1.97639048e-01 -8.74200687e-02 -3.32371950e-01\\n5.32641172e-01 -2.51138568e-01 -1.45662561e-01 8.23543444e-02\\n-2.31744900e-01 -4.14200634e-01 2.86004007e-01 -2.36347720e-01\\n-3.12744141e-01 3.67305607e-01 8.68527368e-02 2.42738292e-01\\n6.99582323e-02 -2.06447572e-01 -7.88005963e-02 -2.95100827e-02\\n-9.62020159e-02 -1.76612437e-01 -6.69884384e-01 -1.18874162e-01\\n-1.06973559e-01 -4.23873425e-01 -1.12240344e-01 -5.02191663e-01\\n-2.85304040e-01 -4.31075394e-01 -1.05588853e-01 2.01871991e-01\\n2.04943374e-01 1.56390533e-01 -1.19793285e-02 5.41197434e-02\\n-1.83353871e-01 -7.38529205e-01 -9.11356583e-02 2.25708351e-01\\n4.25021917e-01 2.59195596e-01 1.10391319e-01 -4.90930155e-02\\n1.53416425e-01 8.14056754e-01 -2.10384831e-01 -2.12434754e-01\\n2.29098693e-01 2.32892513e-01 5.91132380e-02 -1.94783002e-01\\n1.38658270e-01 4.19793934e-01 -3.79100353e-01 1.32807255e-01\\n-9.02396515e-02 -1.84316114e-02 2.98213214e-01 1.83588639e-01\\n-3.09759229e-01 -2.45619372e-01 -8.40093866e-02 1.41065866e-01\\n-6.25453651e-01 -1.97557300e-01 5.71390390e-01 1.96120083e-01\\n2.63788164e-01 6.04571588e-03 2.09466890e-01 -6.48538470e-02\\n-7.48273656e-02 -1.89074472e-01 2.80521274e-01 5.00234077e-03\\n3.98609154e-02 6.98407665e-02 1.13726825e-01 -5.63144803e-01\\n-2.94568491e+00 -1.47614136e-01 3.08415532e-01 -1.99678242e-01\\n2.23228112e-01 -1.24285780e-01 1.43789828e-01 -6.15976155e-02\\n-3.96182090e-01 3.12300492e-02 -2.39219248e-01 -2.13510722e-01\\n5.36912307e-02 2.23684579e-01 3.49516660e-01 8.87812972e-02\\n2.51385599e-01 -3.28710556e-01 -1.59784481e-01 4.13269639e-01\\n-2.26513982e-01 -6.51242316e-01 1.98655382e-01 3.01423185e-02\\n2.34614179e-01 4.51477170e-01 -3.47378135e-01 -1.16808653e-01\\n-2.71248430e-01 -1.91095963e-01 1.90173276e-02 -3.31858397e-01\\n-2.18587369e-01 2.45439574e-01 2.45007798e-01 -1.56097347e-02\\n1.44496277e-01 -5.28135836e-01 -2.24401224e-02 -3.73407483e-01\\n-1.62471496e-02 -6.72421098e-01 4.29715663e-02 -1.01453289e-01\\n7.49893248e-01 -2.60108680e-01 7.59656355e-02 -1.08131453e-01\\n1.61183015e-01 3.61445583e-02 1.27395421e-01 1.01962723e-01\\n-2.04769015e-01 -2.55298108e-01 1.22324824e-01 -9.33513343e-02\\n5.19265950e-01 5.60826778e-01 -1.10651478e-01 -9.31328982e-02\\n4.90874909e-02 -2.47624919e-01 -4.11607355e-01 -1.79984957e-01\\n-9.65348333e-02 -2.46315837e-01 -7.04983532e-01 -5.00326455e-01\\n-5.38956048e-03 -1.63189769e-01 -9.01276246e-02 4.97162312e-01\\n-3.47494543e-01 -2.86464363e-01 -1.29615456e-01 -3.70553464e-01\\n3.23888659e-01 -1.99949071e-01 7.77457356e-02 -1.59244329e-01\\n-2.55513161e-01 -4.50424880e-01 1.01163844e-02 8.33788794e-03\\n-9.00736079e-02 -3.79168838e-01 1.33313358e-01 -1.01498343e-01\\n-3.20504636e-01 -4.65898812e-01 4.24958318e-01 2.36298382e-01\\n3.33041281e-01 1.82261050e-01 4.59996611e-01 2.81010158e-02\\n2.93453097e-01 -2.87624057e-02 2.23959237e-02 -3.52932364e-01\\n-5.34184016e-02 -3.92107219e-02 5.01218259e-01 -2.53014117e-01\\n3.71430442e-02 8.44733566e-02 -3.80612522e-01 -6.10129386e-02\\n3.41987520e-01 -1.01841472e-01 9.57975835e-02 -2.26451829e-01\\n2.39010364e-01 -7.73808137e-02 -1.07169293e-01 -2.25295220e-02\\n6.46802783e-02 6.58057213e-01 -5.93172610e-02 -3.02687138e-01\\n-1.37431264e-01 4.80119377e-01 1.36458268e-02 3.35414708e-02\\n-2.65986502e-01 2.80338284e-02 -2.33829752e-01 2.09015667e-01\\n1.69411618e-02 -2.08195403e-01 -2.67624676e-01 -5.94747290e-02\\n-8.60798135e-02 3.57821405e-01 2.71177292e-01 8.43654424e-02\\n2.18449123e-02 -3.40232581e-01 -1.46594182e-01 2.83499271e-01\\n3.40087444e-01 4.36206043e-01 2.27067277e-01 -2.19285488e-01\\n-8.62284526e-02 4.85615253e-01 -2.78541118e-01 1.76007196e-01\\n-2.18323544e-01 2.04620361e-01 -6.23414874e-01 -2.63426363e-01\\n-3.50454718e-01 -4.65650290e-01 2.64340103e-01 3.47794712e-01\\n9.47226305e-03 -2.42124181e-02 3.84898856e-02 -4.19354141e-01\\n2.93535322e-01 1.03877403e-01 2.24952534e-01 1.06221318e-01\\n1.43218217e-02 5.59086561e-01 -2.27070674e-02 -2.02024609e-01\\n-1.72525287e-01 5.61809391e-02 -1.24175198e-01 -2.01452971e-01\\n1.17491605e-02 -5.36128938e-01 -1.92975804e-01 4.12077069e-01\\n1.98053092e-01 -3.01922917e-01 -2.72895008e-01 3.29305589e-01\\n1.76602527e-02 -2.04209313e-01 -2.31350243e-01 -9.57332626e-02\\n5.10580540e-01 -1.74978133e-02 3.55504662e-01 -5.30909836e-01\\n-7.65369982e-02 -4.41194139e-02 -5.59273548e-02 3.58745098e-01\\n1.13446809e-01 -8.07073042e-02 -1.44687474e-01 8.84606224e-03\\n4.71067876e-01 -3.60574536e-02 -5.53475820e-06 8.31435397e-02\\n1.61708087e-01 -2.64543653e-01 -4.70685095e-01 1.25135724e-02\\n4.78825457e-02 -2.32196271e-01 9.67384949e-02 1.99749872e-01\\n5.52381389e-02 1.31472230e-01 -7.30037510e-01 -2.13792220e-01\\n-3.26187432e-01 -1.08023331e-01 4.91690859e-02 -4.82414067e-01\\n-2.59728022e-02 -9.40333903e-02 -5.76544881e-01 2.52427220e-01\\n-2.68262714e-01 -1.04450382e-01 1.59083351e-01 -6.06603501e-03\\n-2.84948021e-01 -1.62871733e-01 -9.12071147e-04 2.44397566e-01\\n-3.01917046e-01 -2.42015421e-01 -7.48318210e-02 -1.03533852e+00\\n1.60527363e-01 6.39708489e-02 -1.17310330e-01 1.73966944e-01\\n-5.95262051e-02 -7.00972021e-01 4.61294651e-02 -3.75033319e-01\\n-1.69396892e-01 -4.17529270e-02 -2.76075423e-01 -3.02262902e-01\\n1.69621363e-01 1.48250923e-01 -2.56628394e-01 3.64276320e-01\\n-2.41461664e-01 3.18687856e-01 -8.98490921e-02 1.00449860e-01\\n-1.55152142e-01 -2.36089498e-01 1.34332627e-01 -5.82177401e-01\\n-3.94688457e-01 -4.97919209e-02 -2.61311263e-01 -2.14216113e-01\\n-2.22407281e-01 -4.91788626e-01 -2.56183237e-01 -1.71271153e-02\\n2.88931608e-01 1.03159569e-01 -4.94758524e-02 -2.82297462e-01\\n1.88523114e-01 -4.60476160e-01 1.42803475e-01 -6.42988235e-02\\n-1.54645085e-01 -1.63130984e-01 1.80930957e-01 1.32193342e-01\\n1.97630629e-01 -4.20587391e-01 2.62340307e-01 -5.08404076e-01\\n-2.89801419e-01 2.71923840e-02 1.05498713e-02 3.57106030e-02\\n3.93313110e-01 -4.90743697e-01 2.21123290e-03 2.95393825e-01\\n1.31535843e-01 7.66709670e-02 3.06000561e-01 -3.07087362e-01\\n2.32098587e-02 3.68755579e-01 -3.18982273e-01 -1.06272763e-02\\n7.85786927e-01 1.04951635e-01 1.18482150e-01 2.08068743e-01\\n1.02742158e-01 2.48621747e-01 3.43646824e-01 2.76259277e-02\\n-4.84284870e-02 2.35315084e-01 7.49419034e-02 -5.12280881e-01\\n-1.06589667e-01 -2.82703862e-02 -2.33133242e-01 -3.23688596e-01\\n6.18175268e-01 3.96639913e-01 -5.53844452e-01 -1.86758637e-01\\n-8.96660239e-02 -2.22536281e-01 1.23838320e-01 4.87790629e-02\\n-4.62098010e-02 1.46604814e-02 4.85837370e-01 -1.49229048e-02\\n2.96656013e-01 5.50299942e-01 -2.87422597e-01 -2.32082099e-01\\n-8.24133232e-02 2.62375563e-01 2.95545869e-02 5.53577900e-01\\n-2.35687807e-01 3.75991851e-01 5.44276414e-03 8.37347433e-02\\n3.79191190e-02 5.67225851e-02 1.49264082e-01 3.37557644e-02\\n5.79684973e-02 1.04574330e-01 4.85482961e-01 5.09096801e-01\\n3.89920890e-01 3.77573103e-01 4.24028665e-01 1.62315577e-01\\n4.56680566e-01 5.52138031e-01 3.55916619e-01 6.99591860e-02\\n-1.23630196e-03 -9.76197422e-03 2.03912035e-01 -6.26806021e-02\\n3.75773311e-01 3.32866609e-01 -1.36190532e-02 9.42473710e-01\\n2.98499227e-01 2.79507488e-01 7.44784653e-01 -6.74631059e-01\\n-3.12969059e-01 1.50091290e-01 3.88896376e-01 -3.96772623e-01\\n-8.16438869e-02 1.35524377e-01 -1.24494344e-01 2.79605299e-01\\n-4.06364650e-01 -2.96852410e-01 -1.19995482e-01 2.21407130e-01\\n-1.00813881e-02 -2.34616414e-01 -2.10542589e-01 8.23616982e-02\\n-4.67322990e-02 -2.92843822e-02 -4.85481292e-01 -9.15615559e-02\\n-1.32098481e-01 -1.94786936e-01 -9.76953432e-02 -6.16302490e-02\\n-1.03723638e-01 -2.56065875e-01 -5.71998470e-02 -1.86263397e-02\\n1.06210925e-01 -1.75023645e-01 4.24486063e-02 -1.69261903e-01\\n2.53040224e-01 6.50412068e-02 6.34551167e-01 2.62695607e-02\\n2.05661863e-01 -2.99769163e-01 -9.33705494e-02 1.01154484e-01\\n5.98798729e-02 -5.26588857e-02 -2.04691011e-02 2.32411399e-01\\n-2.95312762e-01 -2.24729270e-01 9.96834189e-02 3.59177619e-01\\n-4.85568792e-01 6.32534847e-02 -2.40274489e-01 1.13494985e-01\\n9.02093574e-02 1.11282296e-01 -1.68600410e-01 -4.23413664e-02\\n-1.95959970e-01 -4.70459282e-01 9.94396955e-02 -2.41598450e-02\\n-1.68525234e-01 6.38668239e-02 2.90277541e-01 1.53806180e-01\\n-3.53918493e-01 -5.69059066e-02 -1.42201662e-01 1.74924031e-01\\n-1.87559798e-02 1.26507863e-01 -5.22771105e-02 -3.42573524e-01\\n-1.97158292e-01 2.09949896e-01 -2.35219568e-01 1.12652808e-01\\n8.66327733e-02 2.98721105e-01 3.38055119e-02 3.19180489e-02\\n4.98309731e-01 1.65570900e-02 -3.12753171e-01 -2.60851681e-01\\n-3.73559520e-02 -1.91683665e-01 -1.32150292e-01 -1.21907175e-01\\n2.36478999e-01 -4.58974749e-01 -1.12187766e-01 -1.27420351e-01\\n-1.18253261e-01 -3.04006726e-01 4.16994765e-02 -4.56260564e-03]]',\n", + " \"Are you looking for a job? Then keep looking. We've got a mission for you instead. You're the best at what you do. You don't just want a job. You're looking for the ultimate challenge. In a team that knows no limits, because you don't either. Welcome to Advertima. We combine machine learning, computer vision, and smart data to visually interpret human behavior in the physical world. More specifically, we detect people's physical appearance, their full-body motion and the situational context in real-time. In short: We are a Tech-Startup and we develop an AI-driven computer vision technology to enable organizations to better understand their customers and audiences and engage with them in the physical world. Our software is already operational with prominent clients, and now it is time to conquer the world. Do you want to help shape our success story? Join our team as Computer Vision & Machine Learning Engineer: Your role... Participate in cutting edge research in computer vision, artificial intelligence and machine learning applications Develop solutions for real world, large scale problems Your profile... MSc/PhD in Computer Science, Artificial Intelligence, Machine Learning, Math or related technical field Algorithmic background and rock-solid problem solving skills Strong background in computer vision or machine learning Solid coding experience in system components and experience in various software engineering systems Passion for quality, performance and reliability Excellent teamwork and communication skills Ideally you will also have... Experience in deep learning & non linear optimization What we offer... An international, young and highly motivated team of start-up professionals A fast-paced, dynamic and innovative working environment The opportunity to strongly impact on the future of Advertima An organizational model that distributes power across peers A workplace in the modern Y&R Coworking Space (ZH) and/or STARTFELD Innovation Hub (SG) Flexible vacation policy Self-development budget Monthly team brunch Competitive compensation Phantom stock options Ready for the mission? Don't keep us in suspense.\",\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Teamwork\", \"Professionalism\", \"Problem Solving\", \"Operations\", \"Team Motivation\", \"Reliability\", \"Innovation\"]',\n", + " '[\"Real Time Data\", \"Application Development\", \"MSC Software\", \"Computer Science\", \"Machine Learning\", \"Visualization\", \"Scale (Map)\", \"Computer Vision\", \"Limiter\", \"Idealization\", \"Software Engineering\", \"Machine Learning Methods\", \"Artificial Intelligence\", \"Deep Learning\", \"Budget Development\", \"Physics\", \"Humanism\", \"Incentive Stock Option\", \"Algorithms\", \"Power Distribution\", \"Linearization\"]',\n", + " \"['English']\"],\n", + " ['66',\n", + " 'sr. software engineer (jee)',\n", + " 'Sursee',\n", + " 'Computer Hardware & Software',\n", + " '',\n", + " '[[-3.59140545e-01 2.14985952e-01 3.99593562e-01 7.47437701e-02\\n5.97911000e-01 -2.91271418e-01 -1.53353848e-02 2.72424370e-01\\n8.65566544e-03 -3.56101155e-01 1.00290766e-02 -2.18779534e-01\\n-2.08245158e-01 1.02874584e-01 2.83053696e-01 4.66352105e-01\\n2.49129981e-01 1.74954772e-01 -2.08015949e-01 4.80245262e-01\\n1.06187262e-01 -1.34192914e-01 -3.24562639e-02 7.48353422e-01\\n2.94979960e-01 -1.74370455e-03 -1.74593985e-01 -1.98903382e-01\\n-4.08579350e-01 -1.41832247e-01 3.23671609e-01 2.61603445e-02\\n-1.68415487e-01 -4.89255846e-01 5.62287308e-02 1.01798244e-01\\n-3.11282456e-01 5.77073917e-02 -8.58186856e-02 1.42956197e-01\\n-6.93300366e-01 -4.19151723e-01 2.14420065e-01 6.40792251e-02\\n-1.28609091e-01 -2.45959461e-01 1.26493365e-01 -6.68771267e-02\\n-2.13176385e-02 8.53607804e-03 -6.65722191e-01 2.67347455e-01\\n-2.80167311e-01 -2.85073161e-01 3.45911980e-01 5.13616323e-01\\n1.92300528e-01 -6.36415601e-01 -3.47609878e-01 -4.26453382e-01\\n-1.15390606e-01 -8.39847922e-02 -5.38811572e-02 -3.64828050e-01\\n2.15325370e-01 1.45649230e-02 2.03194823e-02 3.17851812e-01\\n-7.65799165e-01 -3.32071185e-02 -9.53334793e-02 1.16522629e-02\\n-3.26856583e-01 3.01859304e-02 -3.28330815e-01 -7.84200057e-03\\n-1.07520677e-01 5.00679970e-01 2.37438474e-02 7.71400481e-02\\n-2.02081069e-01 3.24178129e-01 -4.54307348e-02 4.04399991e-01\\n3.19481462e-01 1.58569843e-01 1.74619496e-01 4.41463858e-01\\n-4.83307630e-01 3.96462828e-01 3.69919166e-02 -2.17701629e-01\\n3.06889057e-01 2.24917248e-01 4.19290185e-01 1.05420828e-01\\n2.42398381e-02 2.40396306e-01 -2.78469265e-01 3.66270870e-01\\n1.47189200e-01 -3.65447611e-01 1.21482708e-01 -1.17198296e-01\\n-4.69425879e-02 5.47754467e-02 -2.67522205e-02 1.17511988e-01\\n-2.18609333e-01 4.09478337e-01 1.97810546e-01 -1.28436059e-01\\n-8.48821551e-02 -4.97678995e-01 -6.63976520e-02 1.03133455e-01\\n4.33529392e-02 2.02133581e-01 3.01330388e-01 -9.63915512e-02\\n2.82894164e-01 1.64732821e-02 8.38655606e-02 9.48516071e-01\\n-3.35577875e-02 1.20503291e-01 -1.55044407e-01 3.20303112e-01\\n2.63782680e-01 -1.58164158e-01 1.66031513e-02 3.27381909e-01\\n1.39746591e-01 -1.17424294e-01 -2.18241856e-01 4.19413358e-01\\n-1.55524299e-01 -1.71532661e-01 -2.89140731e-01 9.24619213e-02\\n-6.92198575e-02 -5.05993962e-01 5.92344463e-01 1.45465240e-01\\n2.37012252e-01 6.38825633e-03 1.36477157e-01 -2.94672195e-02\\n-7.24028274e-02 2.77583450e-01 2.96698846e-02 1.83918700e-01\\n-3.43328983e-01 -2.67430574e-01 -1.49654314e-01 1.95940286e-01\\n-3.05878639e-01 1.03185363e-01 1.07147116e-02 -1.50992379e-01\\n1.66214824e-01 1.92711994e-01 -4.03672278e-01 2.12912083e-01\\n-1.14551313e-01 -1.24027066e-01 4.00168002e-02 3.25854540e-01\\n-1.34027928e-01 3.18210632e-01 4.38608639e-02 -1.61071625e-02\\n4.78085190e-01 2.39609182e-01 1.92840144e-01 -4.08564806e-02\\n4.38337266e-01 -2.28527263e-01 2.08125934e-01 2.31889009e-01\\n-6.04985237e-01 1.79358795e-01 -5.31815784e-03 -2.28794843e-01\\n1.67600304e-01 -3.12883779e-02 4.67690080e-01 -2.56510198e-01\\n-8.61563906e-02 -3.42738748e-01 -4.94056970e-01 -2.92866498e-01\\n-3.28362912e-01 2.96565481e-02 3.75261456e-01 -3.02060932e-01\\n-1.45419016e-01 2.97271937e-01 -4.47354585e-01 -1.12804659e-01\\n2.71004200e-01 2.50776619e-01 3.41000780e-02 6.22081617e-03\\n-1.56346336e-01 -6.63615525e-01 -4.07908820e-02 -5.09478390e-01\\n-5.84851563e-01 2.87754741e-02 -3.68840635e-01 1.04534075e-01\\n-8.30786973e-02 9.01416466e-02 -2.85243019e-02 8.63545388e-02\\n-2.44477659e-01 -1.04726650e-01 2.01141298e-01 4.67919819e-02\\n2.61013299e-01 -1.08078822e-01 -3.25344712e-01 4.67303455e-01\\n-3.16353142e-01 6.82672501e-01 2.46882156e-01 -1.09293807e+00\\n6.89088106e-01 2.80120045e-01 -1.19891099e-03 -3.37090075e-01\\n4.11354214e-01 -5.70863664e-01 -2.83778161e-02 4.35246676e-02\\n-2.52764910e-01 -3.70473385e-01 2.75692254e-01 -1.69052377e-01\\n-3.18890750e-01 5.97497880e-01 1.25928938e-01 -4.00718451e-02\\n3.54555547e-01 -3.58050555e-01 -1.19076304e-01 3.45927775e-02\\n-4.87102680e-02 -1.66204497e-01 -4.86148745e-01 1.73715577e-01\\n-5.69110475e-02 -4.74281609e-01 -9.61758941e-02 -3.04102093e-01\\n-2.13119775e-01 -3.06411415e-01 -2.82633156e-01 3.63916665e-01\\n2.34888583e-01 9.22573432e-02 -8.95299390e-02 1.40345782e-01\\n7.92562962e-02 -7.97855914e-01 7.80948848e-02 6.83736503e-02\\n5.69462359e-01 3.38594347e-01 1.68318823e-01 -4.87911552e-02\\n7.75671229e-02 6.01238906e-01 -2.49276847e-01 -2.78023273e-01\\n-3.53451036e-02 3.79000716e-02 -4.00593802e-02 -5.68204187e-02\\n2.43540078e-01 5.28935730e-01 -3.93423289e-01 5.00212125e-02\\n-3.33835594e-02 -3.29537690e-02 3.91057849e-01 -1.70480490e-01\\n-4.30596888e-01 -1.03494570e-01 1.86453220e-02 2.59832114e-01\\n-6.09304607e-01 -1.91358089e-01 5.62231243e-01 1.69317901e-01\\n2.30401680e-01 1.86170399e-01 1.92530319e-01 -1.98338822e-01\\n-1.86776370e-01 -2.93643475e-01 1.93424359e-01 1.10538065e-01\\n1.25486523e-01 1.33014590e-01 3.25820222e-03 -6.78729177e-01\\n-3.02968431e+00 -1.64733008e-01 2.94037789e-01 -2.30525911e-01\\n1.38884202e-01 -1.49873897e-01 -5.53125553e-02 -1.18580991e-02\\n-2.70127773e-01 1.16413645e-01 -1.40688464e-01 -6.88409507e-02\\n1.84081569e-02 3.30921084e-01 2.82745212e-02 1.77129135e-01\\n1.80618092e-01 -2.13503823e-01 -1.19663276e-01 3.52496922e-01\\n-1.30314440e-01 -7.14205444e-01 1.73913524e-01 -3.09373885e-02\\n1.99755281e-01 1.62980571e-01 -4.18903589e-01 -4.94657829e-02\\n-4.82036546e-02 -2.38112494e-01 1.94168687e-02 -2.55795807e-01\\n-2.45681927e-01 2.40613088e-01 9.24154092e-03 -1.05352113e-02\\n7.51384646e-02 -3.71547103e-01 -1.11809686e-01 -5.63753664e-01\\n1.41792938e-01 -6.57378018e-01 -1.91586614e-02 -4.32715677e-02\\n6.03190958e-01 -3.09732854e-01 1.29175141e-01 1.57157898e-01\\n2.33670622e-01 8.49056467e-02 9.03856941e-03 4.64980714e-02\\n-2.06346691e-01 -3.58047932e-01 -1.63211133e-02 -2.49112368e-01\\n4.83281225e-01 3.02857786e-01 -9.96795893e-02 1.09858528e-01\\n3.09875906e-01 -2.84569860e-01 -4.39362824e-01 -3.44064444e-01\\n-1.50141776e-01 -2.52484530e-01 -7.90437281e-01 -2.75485963e-01\\n-1.84734285e-01 -4.34323102e-02 -2.06440732e-01 6.95610762e-01\\n-3.31079632e-01 -3.30904037e-01 1.27264112e-01 -6.63184166e-01\\n2.99937189e-01 -3.04647893e-01 -4.02918365e-03 -3.18165004e-01\\n-3.24599534e-01 -4.74954665e-01 1.60354897e-01 -1.65417902e-02\\n-2.74585545e-01 -1.35358438e-01 -6.78182691e-02 -3.84551100e-02\\n-2.30980143e-01 -4.17516649e-01 4.58189994e-01 1.58557206e-01\\n2.94039875e-01 1.10753559e-01 5.52804947e-01 -7.60128722e-02\\n3.82173836e-01 7.71620721e-02 5.18296380e-03 -3.62911701e-01\\n1.44410823e-02 2.66282149e-02 5.56607366e-01 -2.48109698e-01\\n-8.46340135e-02 2.94083923e-01 -2.95413554e-01 -1.15545578e-01\\n3.85310382e-01 4.81810793e-02 -7.73006380e-02 2.98006134e-03\\n3.19571048e-01 -3.52579892e-01 -2.11414739e-01 1.63416073e-01\\n1.66518345e-01 8.83441269e-01 4.45842743e-04 -3.81531030e-01\\n-2.82961249e-01 6.38796926e-01 -6.13223985e-02 2.19613742e-02\\n-8.97796676e-02 1.52679458e-01 -4.94410731e-02 3.50327492e-01\\n1.32470559e-02 -3.56396735e-01 -2.83354878e-01 -2.27178603e-01\\n-1.46985963e-01 2.32430905e-01 1.48612052e-01 7.43683288e-03\\n-5.49935624e-02 -3.21658283e-01 -1.65663704e-01 1.60599977e-01\\n2.27022886e-01 4.66034681e-01 1.39568686e-01 -1.82106093e-01\\n1.48305367e-03 3.19706917e-01 -2.24734336e-01 2.59605318e-01\\n-3.10565948e-01 1.62956700e-01 -6.24524832e-01 -2.59586841e-01\\n-1.56687498e-01 -4.39807951e-01 5.45527413e-02 3.30551535e-01\\n2.44172513e-01 3.08549814e-02 1.35955766e-01 -6.46464586e-01\\n3.38027030e-01 1.74484611e-01 6.17844984e-02 7.63140153e-03\\n2.49219523e-03 4.21890378e-01 -5.38765863e-02 -1.72121853e-01\\n-1.30897835e-01 -6.54230863e-02 -2.03455210e-01 -2.54353255e-01\\n2.96545535e-01 -5.21669924e-01 -1.13839313e-01 3.11975479e-01\\n1.83707625e-01 -3.88236582e-01 -2.47944444e-01 2.71010965e-01\\n2.10424930e-01 -1.86878219e-01 -2.47602791e-01 -4.84839194e-02\\n2.94839948e-01 -2.07209233e-02 2.92301089e-01 -3.32095921e-01\\n-1.32310743e-04 -4.67430316e-02 -5.07606864e-02 4.57950562e-01\\n2.44528547e-01 1.12880012e-02 -2.91687906e-01 -1.12961292e-01\\n5.32411635e-01 -1.55245647e-01 -9.33347121e-02 -1.86505675e-01\\n8.93089399e-02 -8.39429051e-02 -4.69422072e-01 1.70883864e-01\\n-3.75418440e-02 -2.58899063e-01 -3.00870743e-02 -3.48422714e-02\\n1.49219573e-01 1.23273708e-01 -4.48829979e-01 -2.56764710e-01\\n-2.78885573e-01 -8.74090269e-02 3.19470644e-01 -2.78574347e-01\\n-4.60292287e-02 1.86245963e-02 -5.86488783e-01 2.59166211e-01\\n-3.09428364e-01 -8.54080915e-02 1.97234765e-01 2.00140357e-01\\n-4.47484851e-01 1.55396014e-02 2.37046815e-02 2.45800689e-01\\n-2.58217573e-01 -3.46178681e-01 -6.11793809e-02 -1.08007526e+00\\n1.00250579e-01 3.05740032e-02 -1.96941704e-01 8.01054761e-02\\n-1.61697119e-01 -7.44671047e-01 8.08203593e-02 -4.16147500e-01\\n-3.62664945e-02 5.67052178e-02 -2.57417828e-01 -3.43923420e-01\\n4.32008021e-02 -1.44574605e-02 -3.70647490e-01 4.33134913e-01\\n-4.63282526e-01 3.00051719e-01 -2.10830808e-01 7.14535713e-02\\n6.97714277e-03 -1.87210009e-01 1.47016302e-01 -3.45265985e-01\\n-3.49844754e-01 -2.67215163e-01 -5.37152410e-01 -3.90266031e-01\\n-1.42886769e-02 -3.11907083e-01 -1.15726091e-01 1.05029717e-01\\n2.95390874e-01 2.23784000e-01 -3.37222666e-02 -4.07550573e-01\\n2.78661817e-01 -4.85380322e-01 1.52519392e-02 -2.73122460e-01\\n3.21673490e-02 -1.08061716e-01 1.85616046e-01 4.64729853e-02\\n1.87275410e-01 -3.97490174e-01 5.02618372e-01 -2.67293811e-01\\n-3.87547612e-01 -1.78973258e-01 -2.45054923e-02 5.07123955e-02\\n2.63544053e-01 -5.58651149e-01 4.14139554e-02 1.52039081e-01\\n1.35533512e-01 -3.73425968e-02 1.83417931e-01 -8.13848432e-03\\n1.92759857e-02 1.72055840e-01 -4.66128856e-01 5.41372262e-02\\n8.94944072e-01 1.32951602e-01 -2.55786832e-02 1.03053764e-01\\n2.35550538e-01 4.54222530e-01 5.70481598e-01 -1.04312629e-01\\n9.89628769e-03 2.27908000e-01 -2.06019282e-02 -6.14049196e-01\\n-1.60267964e-01 -1.81636974e-01 -1.76981032e-01 -3.11468810e-01\\n6.84495211e-01 3.26817751e-01 -4.20823067e-01 -1.60921991e-01\\n-1.10746004e-01 -1.48182601e-01 3.04823130e-01 3.67237208e-03\\n-1.08729653e-01 -1.19788669e-01 4.51514691e-01 3.39987851e-03\\n4.53031182e-01 6.18699610e-01 -2.52691299e-01 -4.84011233e-01\\n-1.07165150e-01 2.07058623e-01 1.65678456e-01 3.47062409e-01\\n-1.18496157e-01 1.72558323e-01 -1.17746241e-01 3.52860764e-02\\n-1.60739735e-01 1.93895459e-01 1.28720105e-01 1.15685619e-01\\n3.92618954e-01 -5.90706058e-02 4.10141736e-01 4.08648849e-01\\n9.46822464e-02 4.82899249e-01 2.76164621e-01 1.27298787e-01\\n3.13044548e-01 4.87805218e-01 3.13855708e-01 1.77488640e-01\\n3.68758999e-02 2.11508989e-01 1.34360701e-01 -2.53728449e-01\\n3.80788773e-01 3.25406581e-01 3.77087981e-01 9.25790608e-01\\n2.13581488e-01 3.42635244e-01 9.78252828e-01 -7.21503735e-01\\n-4.88778800e-01 4.26922366e-02 5.66395104e-01 -3.39419037e-01\\n-6.76623872e-03 2.31389597e-01 -1.66323140e-01 3.66537750e-01\\n-4.85446066e-01 -1.89327180e-01 6.38370812e-02 4.61666919e-02\\n-8.29492807e-02 -1.04809284e-01 -2.70108283e-01 1.14919804e-01\\n-1.98394313e-01 -5.23257181e-02 -2.93915629e-01 -9.04433057e-02\\n-1.27969369e-01 -4.28299233e-02 -1.60277158e-01 -3.93470190e-02\\n-1.01959296e-01 -4.81896013e-01 -1.45679355e-01 -4.53921072e-02\\n4.18310374e-01 -5.80909885e-02 1.24395303e-01 -2.32716799e-01\\n2.37782612e-01 2.75281787e-01 4.97156709e-01 -5.77912554e-02\\n2.11122736e-01 -2.34258294e-01 -2.20230788e-01 1.23899087e-01\\n2.72566676e-02 8.48191753e-02 2.38910504e-02 2.95267016e-01\\n-2.75234580e-01 -9.68883932e-02 9.56616551e-02 4.18630183e-01\\n-2.71179110e-01 -2.43866503e-01 -2.71051615e-01 7.09974840e-02\\n1.35059908e-01 1.75600842e-01 -2.32238725e-01 6.27258420e-02\\n-3.11817944e-01 -6.18101597e-01 4.37010646e-01 -2.62267828e-01\\n-1.68230906e-01 2.02680200e-01 4.16226804e-01 2.00393528e-01\\n-2.70699263e-01 1.06937625e-01 -7.24396408e-02 1.65149331e-01\\n5.91270849e-02 4.23454285e-01 -9.66151133e-02 -2.08272070e-01\\n-2.53871173e-01 3.09258908e-01 -1.79275140e-01 5.09080663e-02\\n-6.06958047e-02 5.15875578e-01 -8.73451307e-03 4.27482948e-02\\n3.30507815e-01 1.04264200e-01 -3.69591087e-01 -3.62218678e-01\\n-1.92903012e-01 -1.87381998e-01 5.12942038e-02 -1.42367920e-02\\n5.29789254e-02 -4.38718796e-01 -5.45011135e-03 -2.13688821e-01\\n5.55509217e-02 -3.55192810e-01 -1.37375101e-01 -3.35964784e-02]]',\n", + " 'Want to work on some of the most in-demand & exciting technologies in the IT industry? Come join us at Ishi Systems. At Ishi, we have built an enduring platform for innovation that pursues excellence to create products, systems and solutions that delight our customers and exceed their expectations. Our engineers solve a variety of complex and challenging business problems with cutting edge technology. We actively explore new and emerging technologies in Big Data No-SQL databases, Middleware Messaging platforms, High Availability Architectures, Advanced Analytics, Machine Learning, and contemporary web and mobile user interface frameworks. Do you take pride in writing quality code and building software that is reliable, testable and maintainable? Do you thrive on creating simple and elegant solutions to complex problems? Are you ready to compete head-to-head with some of the top and most fast-paced and innovative organizations in the industry? Mandatory Skills and Experience 5+ years of experience in application development including analysis, design, coding and implementation of large scale enterprise systems Strong Java language skills – core and advanced Extensive OO knowledge, including design patterns Experience in one or more frameworks such as Spring, Hibernate, JBPM, Drools, Quartz, etc Experience with relational databases and solid SQL skills Solid experience with Unix/Linux, including basic shell scripting Strong communication skills and ability to interface with customers Desired Skills and Experience Experience on user interface frameworks and technologies such as AngularJS, Play, JSF, JQuery, JavaScript, etc. Experience with messaging platforms such as RabbitMQ, HornetQ, Kafka, ActiveMQ Experience developing RESTful services and APIs Experience in No-SQL databases such as MongoDB, Hadoop HBase, Couchbase, etc Experience in application server clustering, performance tuning and scalability design Experience working in agile environments using Scrum, Continuous Integration and TDD/BDD practices Additional languages such as Scala, Clojure, Golang, Python, R',\n", + " '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Writing\", \"Reliability\", \"Innovation\"]',\n", + " '[\"Application Development\", \"Test-Driven Development (TDD)\", \"Agility\", \"Hyper SQL Database (HSQLDB)\", \"High Availability Clusters\", \"Shell Script\", \"Analytics\", \"Middleware\", \"Distributed Design Patterns\", \"Continuous Integration\", \"Industrialization\", \"Scale (Map)\", \"Hibernate (Java)\", \"Scala (Programming Language)\", \"Activism\", \"Metal Building Software\", \"Python (Programming Language)\", \"Linux\", \"Maintainability\", \"Drools\", \"Agile Edge Technologies\", \"Application Servers\", \"MongoDB\", \"Scrum (Software Development)\", \"Hornetq\", \"Mobility\", \"Machine Learning Methods\", \"Quartz (Graphics Layer)\", \"RabbitMQ\", \"Clojure\", \"JQuery\", \"Testability\", \"Enterprise Planning Systems\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Apache ActiveMQ\", \"Scalability\", \"Production Systems\", \"Big Data\", \"User Experience Design (UX)\", \"Design Codes\", \"Performance Tuning\", \"Relational Databases\", \"Language Experience Approach\", \"Apache HBase\", \"Additives\", \"Unix\", \"Emerging Technologies\", \"SQL (Programming Language)\", \"User Interface\", \"JSF 2\", \"Java Scripting Languages\"]',\n", + " \"['English']\"],\n", + " ['49',\n", + " 'software engineer (full time\\xa0and internship)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " '[\"Writing\", \"Planning\"]',\n", + " '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " \"['English']\"],\n", + " ['57',\n", + " 'oracle database specialist',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-1.50344044e-01 2.99868912e-01 5.50742328e-01 -8.36134702e-02\\n5.68544745e-01 -2.65012980e-01 1.25814363e-01 4.24314201e-01\\n-1.92428425e-01 -1.74037442e-01 -2.41665691e-01 -3.46283823e-01\\n-3.23801525e-02 4.87368219e-02 4.95956279e-02 3.16335648e-01\\n3.56342822e-01 1.39567122e-01 -7.31303692e-02 2.66264588e-01\\n1.69047534e-01 -1.29467577e-01 1.56061396e-01 5.98502934e-01\\n3.61385316e-01 9.83440578e-02 -1.57679245e-01 1.17900304e-01\\n-3.65872294e-01 -3.41019779e-01 3.84579003e-01 4.00338881e-02\\n-1.65814415e-01 -9.72165763e-02 1.31032333e-01 -2.45395675e-03\\n-1.36326745e-01 1.75180323e-02 3.47431637e-02 1.62477508e-01\\n-2.48829797e-01 -2.69782655e-02 1.03121489e-01 8.20975453e-02\\n-3.28827858e-01 -3.65580380e-01 2.20062166e-01 -4.09145094e-02\\n2.38919392e-01 -4.01984937e-02 -4.30999607e-01 4.50154752e-01\\n-2.36004829e-01 -3.34120214e-01 3.16861004e-01 5.76608181e-01\\n-1.43594697e-01 -5.74257374e-01 -3.91342789e-01 -1.87209502e-01\\n1.89507544e-01 -2.10906371e-01 8.99885669e-02 -2.61813521e-01\\n4.86060888e-01 7.18827769e-02 5.33668287e-02 3.59765857e-01\\n-7.60632753e-01 -3.68128088e-03 -2.46613190e-01 -8.53761509e-02\\n-3.52674961e-01 -2.27976998e-04 -3.23778927e-01 -4.58565494e-03\\n-4.50931378e-02 4.66178983e-01 8.74290541e-02 1.68304548e-01\\n-3.99443209e-02 2.73903221e-01 -1.35031775e-01 1.69238433e-01\\n2.64134526e-01 2.38735020e-01 9.01743844e-02 2.11429551e-01\\n-3.01218837e-01 4.63288248e-01 2.31534705e-01 -2.92255104e-01\\n2.28532806e-01 1.29726723e-01 2.48588115e-01 6.02029152e-02\\n2.00216174e-01 8.31226408e-02 -1.41769022e-01 2.63627499e-01\\n2.91055858e-01 -2.58690685e-01 1.18627129e-02 2.19210405e-02\\n-4.21017483e-02 2.64915321e-02 7.90824443e-02 4.09882694e-01\\n-4.01165128e-01 5.72586715e-01 2.44457778e-02 -1.56676993e-01\\n-6.74437582e-02 -5.77431321e-01 -2.89555579e-01 1.19530857e-01\\n-4.03646007e-02 -2.40212735e-02 1.70099542e-01 2.95797676e-01\\n2.14618072e-01 5.06621525e-02 2.17613012e-01 8.55161309e-01\\n-1.27205662e-02 5.14612421e-02 -1.19237639e-01 3.73150796e-01\\n8.32098871e-02 -2.76429981e-01 2.23874971e-01 4.86609042e-01\\n1.52684331e-01 -5.53184412e-02 -1.47194460e-01 1.87543795e-01\\n-8.18634704e-02 -2.42548525e-01 -1.76519558e-01 1.45320639e-01\\n-1.29047826e-01 -5.30931234e-01 5.24457932e-01 5.21680480e-03\\n1.09040692e-01 -3.10333557e-02 -1.18403919e-02 -2.11007372e-02\\n-8.20503682e-02 1.98070288e-01 1.78878918e-01 8.17778856e-02\\n-2.48747468e-01 -1.67122751e-01 -3.78896713e-01 1.37126282e-01\\n-2.64571041e-01 -9.78433937e-02 -2.35998347e-01 -8.70659128e-02\\n4.21234190e-01 -1.92164425e-02 -3.29638600e-01 4.01808739e-01\\n-7.52056241e-02 -5.90403341e-02 -1.65488675e-01 2.21466959e-01\\n-1.10831313e-01 2.11020663e-01 -2.94468433e-01 -1.08377084e-01\\n4.27365273e-01 6.49237037e-02 3.81381325e-02 -3.02022118e-02\\n3.38242650e-01 5.16137108e-04 2.24531800e-01 1.13080293e-02\\n-7.92481422e-01 4.07549709e-01 2.19546980e-03 -7.87545070e-02\\n9.41997916e-02 1.26496390e-01 2.62682110e-01 -2.88416326e-01\\n1.29888430e-01 -1.82406679e-01 -4.31333274e-01 -2.95589477e-01\\n-1.85058028e-01 -1.50061548e-02 3.70781511e-01 -4.67244118e-01\\n-2.14029238e-01 8.85621905e-02 -5.87092817e-01 8.37548524e-02\\n3.47697467e-01 2.14996129e-01 2.02805400e-01 8.14359486e-02\\n-9.88976881e-02 -5.39520979e-01 2.57641017e-01 -3.95575941e-01\\n-1.16240196e-01 2.84675032e-01 -3.68804127e-01 1.94553494e-01\\n6.93748146e-02 7.75319412e-02 -8.32814798e-02 1.61023200e-01\\n-1.07206188e-01 -1.76077440e-01 1.15711398e-01 6.69607744e-02\\n4.34747219e-01 1.07930355e-01 -4.59999442e-01 6.55410945e-01\\n-2.53371567e-01 3.84891748e-01 1.23931378e-01 -7.72607625e-01\\n4.18274522e-01 3.11403006e-01 1.15485363e-01 -2.31430069e-01\\n7.50813067e-01 -2.82341331e-01 1.26042599e-02 6.69983625e-02\\n-4.55215275e-01 -3.27777654e-01 1.06438383e-01 -1.07356638e-01\\n-3.08551878e-01 4.97365564e-01 4.35727984e-02 1.17535688e-01\\n3.30232471e-01 -5.27512506e-02 -1.88408583e-01 2.90741604e-02\\n-1.24852739e-01 -1.77497551e-01 -4.22181964e-01 2.54762988e-03\\n-1.38306869e-02 -5.68121970e-01 -5.26690036e-02 -5.70605755e-01\\n-1.85014293e-01 -1.62004888e-01 -2.03082114e-01 2.20118552e-01\\n2.50092125e-03 1.38598904e-01 3.95965837e-02 -4.49507460e-02\\n-3.42395276e-01 -5.73601484e-01 -3.96765321e-02 2.20874831e-01\\n3.19226384e-01 1.77587673e-01 -4.26600873e-03 -1.87898681e-01\\n-6.14274889e-02 6.90328836e-01 -2.17607468e-01 -1.53107643e-01\\n-2.16693208e-02 2.90729553e-01 4.55933716e-03 -9.21536982e-02\\n1.43671513e-01 3.24280947e-01 -2.11498484e-01 1.40329197e-01\\n-1.30637884e-01 -1.12636248e-02 2.80874640e-01 -6.28885627e-02\\n-3.25269729e-01 -4.19982821e-01 -1.29318655e-01 9.63561907e-02\\n-5.82228363e-01 -2.41820529e-01 6.50394440e-01 1.67511910e-01\\n5.52900806e-02 2.58343160e-01 3.31641883e-01 -6.93516508e-02\\n-1.77122012e-01 -1.71651617e-01 1.37424394e-01 5.47310412e-02\\n2.03108415e-03 1.27780169e-01 -2.72520959e-01 -5.46763182e-01\\n-3.67851758e+00 -1.07219957e-01 1.10660531e-01 -3.23858052e-01\\n2.47935802e-01 -1.57187149e-01 2.88007468e-01 -8.45322832e-02\\n-2.23977402e-01 5.93658611e-02 -1.34607568e-01 -1.94025353e-01\\n2.99265563e-01 2.82040834e-01 1.06960975e-01 2.59087443e-01\\n3.41742903e-01 -2.46477947e-01 2.37383004e-02 2.69323528e-01\\n-2.07011864e-01 -6.37321711e-01 2.99886197e-01 -6.01440743e-02\\n3.35886687e-01 5.48691392e-01 -3.12769592e-01 -8.43790844e-02\\n-1.56674847e-01 -2.89406091e-01 1.52986750e-01 -2.63179034e-01\\n-1.21529937e-01 2.96120971e-01 1.89323202e-01 -6.87250644e-02\\n1.80136085e-01 -3.40261549e-01 5.23467511e-02 -4.24237639e-01\\n1.32251009e-01 -6.31319702e-01 -7.00130165e-02 -6.71439394e-02\\n7.58784652e-01 -3.90633196e-01 2.17326544e-02 -1.88544579e-02\\n1.01620957e-01 3.37837577e-01 1.06822960e-01 -2.11049527e-01\\n-2.40405098e-01 -2.09129676e-01 -3.05872578e-02 -1.55725375e-01\\n4.24672812e-01 6.68926358e-01 -2.59950817e-01 2.86586508e-02\\n4.19696197e-02 -3.49278837e-01 -4.54057276e-01 -3.54308605e-01\\n-3.57671440e-01 -7.08710626e-02 -6.64852977e-01 -5.60403526e-01\\n3.33710574e-02 -4.70280461e-02 -4.47280928e-02 4.77390528e-01\\n-1.96592674e-01 -4.81749386e-01 -1.84579790e-01 -4.08670127e-01\\n4.29462679e-02 2.95097977e-02 -6.09803163e-02 -1.62162885e-01\\n-8.92863572e-02 -4.15206730e-01 -1.72136784e-01 -4.65405956e-02\\n-1.76524401e-01 -2.09040031e-01 1.26130700e-01 -1.89721748e-01\\n-3.87841940e-01 -5.64676106e-01 4.82218325e-01 3.45765352e-02\\n3.24065655e-01 1.97742090e-01 1.47551864e-01 2.21240342e-01\\n3.22948217e-01 -3.12136739e-01 6.52425662e-02 -3.99301022e-01\\n2.08723977e-01 1.70524612e-01 7.03334868e-01 -3.11024040e-01\\n1.45836756e-01 2.84163915e-02 -2.65702337e-01 -1.98777989e-01\\n1.86738357e-01 -2.53383331e-02 1.50296003e-01 -4.21443701e-01\\n2.81243503e-01 -4.46012288e-01 -4.07073230e-01 1.19376332e-01\\n1.08825870e-01 6.16555691e-01 -2.28778925e-02 -3.34809750e-01\\n-1.93834931e-01 3.88231009e-01 -1.96265653e-01 -1.81126326e-01\\n-2.78138697e-01 -1.75813213e-02 -3.14066410e-01 3.41635346e-01\\n1.20524831e-01 -1.46943899e-02 -2.17535079e-01 -9.68547761e-02\\n3.41110751e-02 3.51485699e-01 2.92355388e-01 1.78553060e-01\\n4.52560522e-02 -3.93174708e-01 1.08899757e-01 2.12006241e-01\\n1.34727627e-01 2.20185041e-01 1.73186902e-02 2.74178050e-02\\n-4.91308756e-02 3.02060843e-01 -1.64208457e-01 2.27174640e-01\\n-3.34652252e-02 9.58792567e-02 -5.59185863e-01 -3.73958617e-01\\n-1.86907813e-01 -1.86061367e-01 -2.05658060e-02 3.26790452e-01\\n1.43890277e-01 -3.38630304e-02 -9.15467069e-02 -3.03534359e-01\\n1.43392250e-01 -1.01385243e-01 3.84435982e-01 2.60852337e-01\\n-1.09422944e-01 4.35409397e-01 1.66016594e-02 -1.53932258e-01\\n-1.86502874e-01 1.57390490e-01 -4.07057285e-01 -2.25469880e-02\\n9.39822122e-02 -3.46799314e-01 -3.54322232e-02 3.48026216e-01\\n1.98349357e-01 -2.14511305e-01 -5.75737804e-02 1.79050207e-01\\n-1.45205408e-01 -4.05240983e-01 -2.22403198e-01 -3.78827341e-02\\n3.55395406e-01 8.32724720e-02 2.82284409e-01 -4.58255023e-01\\n-3.37302941e-03 -8.97446368e-03 1.32864686e-02 4.08360392e-01\\n-4.98161912e-02 9.33496561e-03 6.37324601e-02 -3.47337842e-01\\n4.61662263e-01 -5.15633039e-02 -3.58784758e-02 6.17126413e-02\\n1.63957119e-01 -1.75808091e-02 -4.10534561e-01 4.89798523e-02\\n-9.02213231e-02 -7.17921853e-02 3.73984315e-02 -5.66902570e-02\\n2.50325631e-02 8.08443800e-02 -5.39205909e-01 -1.88293576e-01\\n-3.81888539e-01 -8.43304545e-02 -1.74573302e-01 -4.79754716e-01\\n7.41466973e-03 3.21177430e-02 -5.18002927e-01 3.10618758e-01\\n-1.78096890e-01 1.45629436e-01 2.10393578e-01 -7.82343149e-02\\n-4.00201291e-01 -1.24277547e-01 3.33773434e-01 1.27438471e-01\\n-3.24243516e-01 -1.29123241e-01 -1.66171759e-01 -9.95943069e-01\\n2.65177816e-01 -1.95115969e-01 -9.41480231e-03 8.54606852e-02\\n2.56666308e-03 -4.87043649e-01 2.22561225e-01 -3.62459272e-01\\n-2.31111124e-01 -4.08805571e-02 -2.55128324e-01 -3.91455770e-01\\n4.06730808e-02 5.05709201e-02 -2.25117698e-01 3.17290455e-01\\n-3.44240993e-01 3.38977307e-01 -2.66766436e-02 1.42045811e-01\\n6.91696927e-02 -1.89942077e-01 -3.54596879e-03 -5.23240566e-01\\n-3.62083673e-01 -1.27398446e-01 -1.24019913e-01 -4.63463105e-02\\n-5.50492816e-02 -1.78591877e-01 8.23139772e-03 1.36974910e-02\\n3.80780071e-01 2.29671881e-01 -1.99328348e-01 2.52699945e-02\\n1.14986688e-01 -3.65228772e-01 -8.25979263e-02 -1.22287512e-01\\n3.57515402e-02 -1.67211279e-01 1.90315634e-01 1.62759900e-01\\n4.32456806e-02 -5.18814921e-01 3.53566170e-01 -2.19230160e-01\\n-2.81259626e-01 7.14839324e-02 1.49458915e-01 9.09223035e-03\\n2.81989336e-01 -4.65097606e-01 -1.37101084e-01 3.45818073e-01\\n7.88298175e-02 1.14434347e-01 2.57998496e-01 -2.74207518e-02\\n-1.42109543e-01 2.72109985e-01 -4.37683046e-01 1.23329088e-02\\n8.33764911e-01 2.53213048e-01 1.01695225e-01 2.49616325e-01\\n1.51883494e-02 2.44343713e-01 3.87706578e-01 1.21419407e-01\\n-2.16146987e-02 4.78671849e-01 -1.81764085e-02 -6.87834442e-01\\n9.95376483e-02 -1.85063910e-02 -2.35239774e-01 -3.04442823e-01\\n6.38441265e-01 4.60555255e-01 -3.53409946e-01 -4.44168240e-01\\n-2.02166691e-01 -2.15724707e-01 -4.65193801e-02 -1.05919778e-01\\n2.41688669e-01 -2.70377398e-01 5.08318186e-01 -3.28088216e-02\\n1.08665094e-01 5.17178178e-01 -1.43142626e-01 -2.62475431e-01\\n-6.47307560e-02 5.50841913e-02 1.21137895e-01 4.05580401e-01\\n-1.45933479e-01 2.11201400e-01 -4.65157516e-02 1.94335118e-01\\n-1.99252635e-01 1.52460514e-02 1.38617471e-01 9.46106687e-02\\n1.83712412e-02 1.63487032e-01 3.25548291e-01 4.01360333e-01\\n3.44879717e-01 5.27180016e-01 2.06052750e-01 -7.24249007e-03\\n7.11077571e-01 5.08523405e-01 2.93867767e-01 2.77169943e-01\\n-1.01757556e-01 3.05843372e-02 3.46198902e-02 -6.95794672e-02\\n2.49344662e-01 3.08107585e-01 3.22118998e-02 8.25287700e-01\\n3.96732420e-01 1.70224041e-01 5.58603048e-01 -4.36760694e-01\\n-3.83109093e-01 -1.28457949e-01 3.92501354e-01 -5.14883995e-01\\n-4.80463803e-02 -6.26916885e-02 -2.75684655e-01 1.68438509e-01\\n-5.38641632e-01 -2.45701253e-01 -2.15521865e-02 -1.40079454e-01\\n2.45970026e-01 -4.85178605e-02 -3.74405235e-01 -1.67981923e-01\\n-1.50379583e-01 7.49530876e-03 -4.77015644e-01 -1.26347452e-01\\n-1.91276401e-01 -1.27341136e-01 -1.44395798e-01 -3.62022191e-01\\n9.89248157e-02 -3.21793616e-01 -9.78836343e-02 6.62921146e-02\\n1.92977145e-01 -1.83094248e-01 4.35643904e-02 -1.61129221e-01\\n2.03401208e-01 2.57215530e-01 5.73963165e-01 -2.55213603e-02\\n9.38783139e-02 -1.80271953e-01 -4.37991954e-02 1.43296078e-01\\n1.72994554e-01 1.41194284e-01 -4.67405980e-03 4.33169454e-01\\n-4.19555873e-01 -2.34488904e-01 -1.37800530e-01 4.58843350e-01\\n-5.12693822e-01 6.09200224e-02 4.28633429e-02 8.00583139e-02\\n3.23438942e-02 2.08423063e-02 -2.73821652e-01 7.73949474e-02\\n-3.35285544e-01 -4.57355887e-01 3.70146304e-01 -1.73096862e-02\\n-6.28818795e-02 -6.78678304e-02 2.37066865e-01 1.04409143e-01\\n-2.13372022e-01 -1.11256436e-01 -6.49941340e-02 7.16841519e-02\\n2.57636040e-01 2.04123557e-01 -2.49845341e-01 -3.49484921e-01\\n-3.42307717e-01 2.49408156e-01 -2.13888392e-01 4.26927097e-02\\n-6.67438284e-02 3.02733839e-01 1.77777156e-01 1.11881152e-01\\n4.14010465e-01 -1.78985521e-01 -1.79693669e-01 -3.38950247e-01\\n-3.89300317e-01 -2.06772342e-01 8.99277106e-02 -8.23896378e-02\\n2.09541619e-01 -4.81432587e-01 -1.45769671e-01 -5.81401587e-02\\n-1.30580723e-01 -3.64867061e-01 -5.96029386e-02 -1.95593819e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for an Oracle Database Specialist. This role is permanent position based in Bern Canton. Your Role: Carry out complex tasks in the DB management of our customers covering consulting, planning, designing, installation, configuration, monitoring, tuning, backup / recovery, troubleshooting, replication, high availability & security. Work on interesting problem cases of customers SLAs. Support & advise software development projects on database-specific issues. Your Skills: Several years of experience in the management of Oracle databases on Unix / Linux & MS Windows platforms. Experienced with SQL Server databases (or motivated to gain experience). Good know-how of associated processes corresponding customer orders. Skilled & experienced in a variety of customer platforms & installations. Your Profile: University Degree in Computer Science. Customer-oriented & ready to occasionally work irregular hours & be on-call. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Positivity\", \"Planning\", \"Management\", \"Troubleshooting (Problem Solving)\", \"Consulting\"]',\n", + " '[\"Software Development\", \"Advising\", \"Installation\", \"High Availability Clusters\", \"Linux\", \"Computer Science\", \"Unix\", \"Microsoft SQL Servers\", \"Oracle Databases\", \"Receivables\"]',\n", + " \"['English', 'Interlingua', 'Nyanja', 'Aragonese']\"],\n", + " ['57',\n", + " 'software engineer (c++)',\n", + " 'Grisons',\n", + " '',\n", + " '',\n", + " '[[-1.16711386e-01 3.69977802e-01 6.53656304e-01 -1.72255784e-01\\n5.88140547e-01 -3.33259344e-01 9.66208726e-02 4.75413740e-01\\n-2.72345636e-02 -3.65770549e-01 -2.28218153e-01 -2.25554496e-01\\n-7.41186514e-02 6.04369007e-02 1.97732136e-01 3.27083737e-01\\n2.00537607e-01 1.16075017e-01 -2.26755738e-01 4.17729795e-01\\n1.69004664e-01 -9.03910771e-02 1.99338242e-01 6.34134054e-01\\n4.05396968e-01 3.55938412e-02 -7.77124912e-02 2.38766924e-01\\n-3.44107985e-01 -3.78096640e-01 4.31581736e-01 -9.72639211e-03\\n-1.39755324e-01 -2.25263029e-01 3.90292406e-02 1.01073189e-02\\n-1.72666207e-01 -7.84307495e-02 6.53899759e-02 1.09139636e-01\\n-4.60478842e-01 -9.38126966e-02 1.30447701e-01 -5.34073934e-02\\n-1.41176522e-01 -2.39984795e-01 9.79479998e-02 -5.82291484e-02\\n7.52111673e-02 1.11586623e-01 -4.05352294e-01 4.21035081e-01\\n-1.05114304e-01 -3.17079872e-01 3.09022993e-01 5.66848218e-01\\n-1.38330340e-01 -5.71752667e-01 -3.36598128e-01 -2.24763289e-01\\n1.59878835e-01 -3.42855342e-02 -1.31786207e-03 -2.53890932e-01\\n5.05875111e-01 1.61292255e-02 -7.08251214e-03 3.91902059e-01\\n-7.72519290e-01 -3.04813646e-02 -1.59922108e-01 -1.43293990e-02\\n-2.85866410e-01 -1.02017954e-01 -1.32235438e-01 -1.27378702e-01\\n-1.03301249e-01 3.99073809e-01 1.62749320e-01 6.53543174e-02\\n-6.01348542e-02 2.58790582e-01 -7.88265839e-02 1.63398460e-01\\n3.16419989e-01 3.18248510e-01 1.62652597e-01 1.88770548e-01\\n-3.78257006e-01 4.51556772e-01 7.73684382e-02 -2.71137327e-01\\n1.55507594e-01 1.59369335e-01 4.97536838e-01 -9.41084251e-02\\n-3.34032578e-03 9.91925225e-02 -1.86006695e-01 2.90743977e-01\\n2.86107123e-01 -2.99640834e-01 -6.60556415e-03 1.05154112e-01\\n-1.27310291e-01 8.37048814e-02 -1.24502005e-02 4.32000875e-01\\n-4.04928386e-01 5.20336747e-01 2.61143073e-02 -2.56315827e-01\\n-5.85182682e-02 -5.88435292e-01 -2.07071260e-01 1.35785863e-01\\n9.70073491e-02 1.88490257e-01 2.73035645e-01 2.62574762e-01\\n2.71510065e-01 1.18219644e-01 2.37232521e-01 9.17314291e-01\\n-2.27055252e-02 1.43360555e-01 -2.36847863e-01 4.45430636e-01\\n2.33983815e-01 -2.72568822e-01 2.83426732e-01 4.16507065e-01\\n2.25006878e-01 -7.98987374e-02 -1.02084890e-01 3.23664784e-01\\n-3.49117592e-02 -3.26600671e-01 -2.85006404e-01 1.21353686e-01\\n-1.25970393e-01 -4.97893721e-01 5.34921288e-01 -3.77789140e-02\\n7.25846887e-02 2.21318733e-02 -1.08871147e-01 -7.02012926e-02\\n-1.82155088e-01 3.08609456e-01 4.50302474e-02 1.64936066e-01\\n-3.15706223e-01 -1.51499733e-01 -3.49420518e-01 1.54188469e-01\\n-2.10170060e-01 7.91070983e-02 -1.63186565e-01 -1.20792709e-01\\n3.69687170e-01 -3.42964344e-02 -3.37685764e-01 4.05079395e-01\\n-6.84471279e-02 -7.80858696e-02 -3.83921899e-04 2.37096041e-01\\n-9.32143852e-02 2.05766439e-01 -1.09598212e-01 -2.12515682e-01\\n4.17773545e-01 1.53356671e-01 -2.95169484e-02 2.85217568e-04\\n3.17192972e-01 -6.26497492e-02 9.05531645e-02 1.84589569e-02\\n-7.31127858e-01 4.26629871e-01 -1.53094390e-02 -9.58687738e-02\\n2.56067747e-03 -1.03043646e-01 3.41259688e-01 -4.42950338e-01\\n3.27930823e-02 -1.52984858e-01 -4.20181483e-01 -2.77616352e-01\\n-1.08803608e-01 5.04173338e-02 3.91158432e-01 -4.23386306e-01\\n-1.87374637e-01 1.86705947e-01 -4.89517689e-01 1.48329437e-01\\n2.80189097e-01 1.18947722e-01 1.66594684e-01 1.35390311e-01\\n-1.28598154e-01 -4.80886579e-01 5.47020920e-02 -3.44852924e-01\\n-2.96400040e-01 1.86056912e-01 -2.96169072e-01 3.10237408e-01\\n1.09568559e-01 -5.77458069e-02 -5.80030493e-02 7.11321756e-02\\n-1.62732765e-01 -8.06782693e-02 1.65838569e-01 1.35787083e-02\\n3.39788735e-01 3.71498279e-02 -3.55951458e-01 5.52621782e-01\\n-2.66015798e-01 4.97784674e-01 2.78246645e-02 -8.54062259e-01\\n4.37975973e-01 3.09957266e-01 1.20274842e-01 -4.21788186e-01\\n8.09961915e-01 -2.42925301e-01 -8.79951566e-02 1.99235514e-01\\n-4.92259830e-01 -2.48918548e-01 1.67581573e-01 -9.99145508e-02\\n-2.33109534e-01 5.06046474e-01 4.73874435e-02 1.14738755e-01\\n3.36238056e-01 -1.05512552e-01 -9.59602594e-02 1.05055280e-01\\n-5.63491434e-02 -2.65342623e-01 -2.76865631e-01 1.23997517e-02\\n-9.50430334e-02 -5.05195796e-01 -7.79650360e-02 -4.92430300e-01\\n-2.37440541e-01 -3.42677504e-01 -2.41447687e-01 4.15722221e-01\\n1.47478282e-01 1.91034034e-01 1.36973977e-01 -1.05778813e-01\\n-3.69926006e-01 -5.58501184e-01 7.85498470e-02 1.10308319e-01\\n3.40198278e-01 2.62860090e-01 -1.41615719e-02 1.18716592e-02\\n-9.97479353e-03 6.00542486e-01 -2.10044965e-01 -1.72546804e-01\\n7.55989701e-02 1.80868611e-01 -2.83137672e-02 -1.05669327e-01\\n5.61012095e-03 2.79175758e-01 -1.34512067e-01 4.73080501e-02\\n-2.15229824e-01 9.66726914e-02 4.19400722e-01 -1.27904683e-01\\n-2.43028238e-01 -2.24865094e-01 -3.55767906e-02 1.69522658e-01\\n-5.85402608e-01 -1.70030743e-01 6.77510321e-01 1.02680288e-01\\n1.36742488e-01 1.64846867e-01 2.08982795e-01 -1.48838565e-01\\n-1.63827673e-01 -1.38488188e-01 1.19801164e-01 8.61028358e-02\\n3.81607041e-02 8.20862949e-02 -1.47709176e-01 -6.28463566e-01\\n-3.50947976e+00 -6.95905015e-02 5.07893264e-02 -3.72887284e-01\\n1.43510669e-01 -1.50710538e-01 7.12516829e-02 -1.38609752e-01\\n-2.00685814e-01 1.01449788e-01 -1.35460034e-01 -8.09203684e-02\\n2.40336463e-01 2.56954104e-01 1.58219889e-01 2.82151729e-01\\n1.52612552e-01 -3.15944642e-01 -3.23855467e-02 3.23411018e-01\\n-1.52248532e-01 -5.29062748e-01 2.49401480e-01 -1.58318996e-01\\n3.28707129e-01 4.12410408e-01 -2.65092045e-01 -1.83035776e-01\\n-2.04936936e-01 -2.71626413e-01 8.75706896e-02 -1.32820472e-01\\n-8.63167793e-02 4.32731628e-01 1.31058872e-01 -2.55311597e-02\\n2.76955485e-01 -3.29590142e-01 9.93246660e-02 -3.40305567e-01\\n1.80777878e-01 -6.28704965e-01 -2.09031224e-01 -1.21652536e-01\\n7.08598495e-01 -3.72197270e-01 2.19632417e-01 2.46222168e-01\\n2.34237034e-02 2.15063289e-01 -2.56573781e-02 -2.07122162e-01\\n-1.74588308e-01 -1.54770523e-01 6.19011335e-02 -2.14341536e-01\\n4.37666327e-01 6.55901790e-01 -2.70582527e-01 -3.77648547e-02\\n-2.48237886e-03 -3.62921506e-01 -5.51371455e-01 -3.95588845e-01\\n-2.17601657e-01 -2.15747893e-01 -6.76740646e-01 -5.65148592e-01\\n-8.26388001e-02 -1.02130324e-01 -9.64230970e-02 4.79382306e-01\\n-2.28729382e-01 -4.77629453e-01 -9.30461511e-02 -4.05157149e-01\\n-2.29590246e-03 -8.91579315e-02 -7.72675276e-02 -2.57509589e-01\\n-1.96866661e-01 -4.84418631e-01 -5.16214706e-02 5.99558316e-02\\n-1.39842182e-01 -2.63973624e-01 1.52468383e-01 -3.80292684e-01\\n-3.15077811e-01 -5.33970773e-01 5.21470845e-01 1.80925406e-03\\n2.36462653e-01 1.86493006e-02 7.34937415e-02 2.13390514e-01\\n3.46110016e-01 -3.61156315e-01 9.35771316e-02 -3.63734692e-01\\n1.54972419e-01 -4.90688123e-02 5.55797756e-01 -2.57378846e-01\\n2.24332269e-02 1.26618547e-02 -2.80926794e-01 -2.09525824e-01\\n3.79286021e-01 9.04691312e-03 8.71878639e-02 -3.54801357e-01\\n3.14843595e-01 -3.13439608e-01 -2.51327842e-01 1.48195505e-01\\n-2.83258893e-02 5.31957865e-01 1.69493835e-02 -4.53518063e-01\\n-2.60654271e-01 4.11312819e-01 -1.64336920e-01 -1.52471438e-01\\n-2.12484986e-01 1.24927163e-01 -2.73192763e-01 2.81573653e-01\\n-3.07346899e-02 -8.07940215e-02 -3.34147722e-01 -4.19421755e-02\\n6.67361394e-02 2.78611422e-01 2.70861745e-01 1.04750291e-01\\n2.68488657e-02 -3.38486463e-01 -5.09995185e-02 9.68300998e-02\\n1.96424991e-01 1.31580681e-01 8.58114287e-02 -5.55838086e-02\\n-9.02327374e-02 3.12772304e-01 -3.63683514e-02 1.69118002e-01\\n-2.02881634e-01 5.33792982e-03 -4.32185948e-01 -3.11757088e-01\\n-2.34637871e-01 -1.99070841e-01 -4.97425832e-02 1.85789227e-01\\n7.90603012e-02 6.99176118e-02 4.43564057e-02 -4.84900266e-01\\n3.12888354e-01 6.56095287e-03 2.36435771e-01 2.56482065e-01\\n-1.53860375e-02 5.14553189e-01 -3.91432978e-02 -9.76500958e-02\\n-2.08385333e-01 7.58687183e-02 -1.15223534e-01 -1.67661846e-01\\n2.99498923e-02 -4.22137976e-01 5.02133518e-02 4.19399768e-01\\n9.34664235e-02 -4.51933324e-01 -9.18925926e-02 1.94801286e-01\\n7.11812600e-02 -5.00110328e-01 -1.86339810e-01 -4.69098687e-02\\n3.39295238e-01 8.08603987e-02 3.00206274e-01 -4.78857219e-01\\n-1.49908653e-02 6.38589412e-02 -7.26479962e-02 4.57627088e-01\\n-2.87861656e-02 -1.09844789e-01 -1.54343322e-01 -3.14789176e-01\\n3.13623607e-01 -8.95420983e-02 1.63352601e-02 -1.58542499e-01\\n9.80145782e-02 -1.82016328e-01 -3.92133355e-01 1.49127077e-02\\n-7.50780851e-02 -4.96307425e-02 7.98115879e-02 -2.85340082e-02\\n-9.17275529e-03 2.28842095e-01 -4.16089118e-01 -3.23949546e-01\\n-2.11008728e-01 -1.77796990e-01 -1.16793767e-01 -3.91357929e-01\\n-1.17879873e-02 3.07394583e-02 -5.91648042e-01 1.69889897e-01\\n-2.03339905e-01 9.93298665e-02 1.63410068e-01 -7.50962198e-02\\n-4.63738143e-01 -1.40932754e-01 1.79322317e-01 1.25857338e-01\\n-2.99066931e-01 -2.22860530e-01 -4.64089997e-02 -1.05796325e+00\\n3.09133977e-01 -3.70868966e-02 -9.30716544e-02 8.77699852e-02\\n-1.13217734e-01 -5.29284716e-01 5.77498488e-02 -4.45535809e-01\\n8.15899968e-02 -8.52857009e-02 -2.34513983e-01 -3.28693181e-01\\n4.14934643e-02 1.20808696e-03 -2.98262268e-01 3.22513193e-01\\n-4.64317948e-01 4.33100849e-01 -7.01674297e-02 9.87059250e-02\\n-1.81445464e-01 -2.37510800e-01 -8.32750276e-02 -4.72027481e-01\\n-3.20247620e-01 -3.29432823e-03 -1.56630918e-01 -1.01540424e-01\\n-4.87841256e-02 -1.07461452e-01 -5.64100742e-02 1.68540359e-01\\n2.01142639e-01 9.19365585e-02 -1.48744896e-01 -2.30574012e-01\\n1.27764106e-01 -3.48798871e-01 -1.12877749e-01 -2.45345697e-01\\n-1.99884037e-03 -1.34268641e-01 8.59831274e-02 4.99136262e-02\\n8.18226188e-02 -4.08268958e-01 2.46638194e-01 -2.19635412e-01\\n-2.65179217e-01 1.27597153e-01 9.61963832e-02 2.98351236e-02\\n3.26674938e-01 -4.32969749e-01 6.50746301e-02 4.32970554e-01\\n1.54156402e-01 7.47783408e-02 3.12804580e-01 -3.51573154e-02\\n-1.57069296e-01 3.28820378e-01 -3.70093048e-01 -6.26958068e-03\\n7.23390341e-01 2.56467938e-01 2.16047183e-01 1.50831118e-01\\n1.46253854e-01 4.29901093e-01 5.35103202e-01 3.79811972e-02\\n-4.43797223e-02 3.32762122e-01 1.33511052e-01 -5.81681311e-01\\n2.62734969e-03 1.36860296e-01 -3.46690238e-01 -1.78885773e-01\\n5.91478169e-01 4.84318405e-01 -1.85664684e-01 -2.64854610e-01\\n-1.58704728e-01 -1.70813039e-01 6.28725737e-02 -2.59820849e-01\\n1.28600985e-01 -1.49432093e-01 5.41126609e-01 2.04228368e-02\\n1.02435432e-01 5.25909603e-01 -1.71489850e-01 -4.08588886e-01\\n4.27409522e-02 1.60675019e-01 9.12388936e-02 3.91908646e-01\\n-5.68377376e-02 2.20628083e-01 -3.00593860e-02 1.44636214e-01\\n-7.56790070e-03 1.12187557e-01 1.80983394e-01 1.01613887e-01\\n5.53483739e-02 1.24664254e-01 2.33092979e-01 4.74534512e-01\\n3.29038262e-01 5.44925272e-01 2.02747494e-01 2.94067282e-02\\n5.19816697e-01 4.83248144e-01 3.56505841e-01 2.23239601e-01\\n-1.30469352e-01 3.18705849e-02 3.87590565e-02 3.91295105e-02\\n3.67519468e-01 2.05684423e-01 8.29173923e-02 8.87367845e-01\\n4.60609883e-01 2.24310040e-01 8.01133752e-01 -5.63878536e-01\\n-4.82321978e-01 -1.07662659e-02 4.28492367e-01 -3.59514236e-01\\n-1.81902692e-01 3.04455664e-02 -1.57501683e-01 2.36600444e-01\\n-4.64959174e-01 -2.55713373e-01 -6.61714748e-02 1.48822162e-02\\n1.31853908e-01 2.44303904e-02 -2.90832311e-01 -1.07912384e-01\\n-2.63285965e-01 -1.35341734e-01 -5.58718979e-01 -9.74957943e-02\\n-2.76884496e-01 -2.85969198e-01 -2.20553190e-01 -1.91538259e-01\\n-1.32141483e-03 -3.88017774e-01 -2.11133480e-01 -7.66447140e-03\\n2.39107743e-01 -2.42102683e-01 -1.56475216e-01 -2.26466298e-01\\n2.02102274e-01 2.30737865e-01 4.39694464e-01 5.16717648e-03\\n7.17471242e-02 -1.42468229e-01 -1.73422769e-01 9.34361666e-02\\n1.74857035e-01 1.93065718e-01 3.61060724e-02 4.36068177e-01\\n-5.05770743e-01 -1.42243817e-01 -2.15190705e-02 4.40266579e-01\\n-3.81555676e-01 -2.23313607e-02 4.66185212e-02 2.86167890e-01\\n1.58502370e-01 4.72187363e-02 -2.63696939e-01 5.61964251e-02\\n-2.35109761e-01 -6.21603608e-01 3.07471395e-01 -1.93317793e-02\\n-4.35243696e-02 8.15627500e-02 2.24592671e-01 1.68232828e-01\\n-1.44399852e-01 -6.73820823e-02 4.81659286e-02 1.74050152e-01\\n1.84404537e-01 2.96647310e-01 -2.78818280e-01 -2.71556973e-01\\n-2.63028324e-01 1.79821342e-01 -3.99351835e-01 1.50010198e-01\\n-1.85142070e-01 3.40973079e-01 1.63936377e-01 2.12806374e-01\\n2.40478829e-01 -9.63066891e-02 -1.44197762e-01 -1.82251900e-01\\n-3.47981423e-01 -3.75767440e-01 8.34576711e-02 1.65334567e-02\\n2.28697106e-01 -3.40034485e-01 -1.08673126e-02 -3.97506915e-02\\n-2.24749312e-01 -3.18071693e-01 -7.72343501e-02 -1.89313531e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Embedded Software Engineer (C++). The role is a permanent position based in Graubünden Canton. Your Role: Specify, analyze (architecture & design), develop & test near-hardware embedded real-time software for the product range. Utilize state-of-the-art methods (Driven Development) & tools (IBM Rhapsody, WindRiver VxWorks & Linux) in C++ programming. Your Skills & Profile: In-depth knowledge in technical computer science. Good level of C ++ / UML knowledge & motivated to use & further develop it. Skills & experience in any of the following are considered advantageous: Programming microcontroller software. Creating & performing software test. GUI development, including Qt Quick, QML. Control engineering. iOS & Android app programming. Communication standards such as Bluetooth & wireless. Completed University Degree in engineering (applications from graduates are welcome). Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Positivity\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Control Engineering\", \"Programming (Music)\", \"VxWorks\", \"Computer Science\", \"UML Tool\", \"Windows Software Development\", \"C++ (Programming Language)\", \"Qt Modeling Language (QML)\", \"Android (Operating System)\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Linux\", \"Real Time Systems\", \"QT Quick\", \"Communication Program Generator (Programming Language)\", \"C (Programming Language)\", \"Time Tracking Software\", \"Hazard Communication Standard (HCS)\", \"Receivables\", \"Software Testing\", \"Bluetooth\", \"Embedded Software\"]',\n", + " \"['English', 'Tajik', 'Afrikaans']\"],\n", + " ['122',\n", + " 'application scientist, chemical ionization mass spectrometry',\n", + " 'Thun',\n", + " '',\n", + " '',\n", + " '[[-3.22071165e-01 3.35994661e-01 4.83776540e-01 -6.40972853e-02\\n6.11253023e-01 -7.13514015e-02 -1.14054918e-01 1.98036522e-01\\n1.12699583e-01 -2.06944034e-01 -1.58244222e-01 -3.54309440e-01\\n2.49078125e-02 2.25402951e-01 7.10181594e-02 6.34336233e-01\\n3.25270057e-01 5.24713621e-02 4.69298139e-02 4.38917756e-01\\n9.60446000e-02 -1.46910578e-01 1.38095424e-01 7.59765983e-01\\n3.24976802e-01 -2.94832662e-02 -4.38018888e-02 1.22776538e-01\\n-1.77218154e-01 -2.16217875e-01 5.02378941e-01 9.38742235e-02\\n-2.22176850e-01 -4.03737217e-01 9.49825048e-02 2.32561350e-01\\n-2.25547686e-01 -2.98123956e-02 -1.24865249e-01 1.93640873e-01\\n-6.83146060e-01 -3.22210491e-01 4.83767800e-02 -6.82667047e-02\\n-2.93613076e-01 -3.39217901e-01 1.45096183e-01 -1.12511292e-01\\n2.76587382e-02 1.45025745e-01 -4.27522898e-01 2.11642951e-01\\n-1.87756449e-01 -2.60515660e-01 3.73523861e-01 8.18408966e-01\\n-2.92102545e-02 -5.68019032e-01 -4.50492203e-01 -2.96409249e-01\\n1.07475119e-02 -1.24969650e-02 8.14223215e-02 -3.71924520e-01\\n4.69474673e-01 4.97827865e-02 -3.50979343e-03 2.19129920e-01\\n-7.30725646e-01 -2.13264644e-01 -3.03966403e-01 1.61905855e-01\\n-4.08347398e-01 4.16619927e-02 -1.48494124e-01 -1.34820372e-01\\n-8.88818949e-02 3.99366617e-01 -8.53884891e-02 8.67198110e-02\\n-3.45002525e-02 3.27037930e-01 -2.68398166e-01 3.53007913e-01\\n2.10795075e-01 1.39860064e-01 2.86855876e-01 2.88504630e-01\\n-2.99485713e-01 4.43927169e-01 1.62827209e-01 -2.95417964e-01\\n2.14850798e-01 4.97248173e-02 3.65435719e-01 -5.71940653e-02\\n1.89987376e-01 1.07137293e-01 -3.54181767e-01 2.38421440e-01\\n2.66428292e-01 -2.44015634e-01 3.65765579e-02 -9.35238600e-02\\n6.67725131e-02 2.26250626e-02 -2.73920931e-02 1.54613601e-02\\n-5.24358511e-01 4.52765703e-01 1.46474883e-01 -2.14989126e-01\\n-5.19621857e-02 -5.93617141e-01 -1.56798974e-01 -1.37796532e-02\\n-6.69724271e-02 8.90561342e-02 4.62685786e-02 1.77838862e-01\\n3.26121300e-01 1.20813958e-02 9.50876772e-02 8.72025311e-01\\n2.41289437e-02 8.79597515e-02 -5.67165613e-02 4.61607456e-01\\n5.15877455e-02 -2.40077183e-01 2.97346979e-01 9.03361440e-02\\n-3.11097074e-02 -1.03263885e-01 -2.22860560e-01 2.63914824e-01\\n-1.02852240e-01 -3.23492259e-01 -2.59753287e-01 3.29096258e-01\\n-1.74353197e-02 -4.56009716e-01 5.22334278e-01 -1.96926221e-01\\n7.77562410e-02 -1.05281353e-01 -5.14109358e-02 -3.26890908e-02\\n-1.44234210e-01 2.15448797e-01 1.81884229e-01 1.24584571e-01\\n-2.91880339e-01 -2.07166284e-01 -1.68662578e-01 7.95932636e-02\\n-2.74402499e-01 2.47937605e-01 -2.39675030e-01 -1.61837593e-01\\n2.73200095e-01 1.93460882e-02 -4.42898840e-01 2.58858263e-01\\n-1.01767957e-01 -1.36146277e-01 -8.04063827e-02 4.65727776e-01\\n-2.59148479e-01 2.08761364e-01 2.87646018e-02 -2.04146594e-01\\n6.17075503e-01 4.15205546e-02 2.51093328e-01 -6.53549582e-02\\n2.86037147e-01 -1.47970736e-01 2.42254108e-01 2.09540769e-01\\n-6.48887277e-01 4.47108328e-01 -8.04359540e-02 -1.30039364e-01\\n3.79298851e-02 -1.66308314e-01 5.29851019e-01 -3.41786265e-01\\n-7.15541467e-02 -1.97946444e-01 -3.24780196e-01 -3.81483734e-01\\n-3.14209044e-01 -8.85766521e-02 3.07037562e-01 -3.65383625e-01\\n5.35375997e-02 1.01774052e-01 -5.69337010e-01 -2.89981008e-01\\n2.08624199e-01 2.59375304e-01 2.13857174e-01 1.68030396e-01\\n-2.40718067e-01 -6.50057316e-01 7.35826194e-02 -5.34984350e-01\\n-7.20526129e-02 8.34865049e-02 -2.83299446e-01 2.65487105e-01\\n7.77441487e-02 -4.36626263e-02 -1.96749061e-01 5.85632250e-02\\n-3.24441493e-01 1.49356484e-01 6.86924532e-02 5.87357320e-02\\n2.13346779e-01 1.27405956e-01 -3.84200364e-01 4.62790132e-01\\n-2.50309169e-01 5.30068517e-01 5.39943501e-02 -9.67972815e-01\\n5.16683519e-01 5.74802756e-01 5.30515127e-02 -4.01740909e-01\\n6.12028360e-01 -4.48840499e-01 -2.18429625e-01 1.43864572e-01\\n-3.92809629e-01 -7.81859681e-02 3.13722670e-01 -3.24343204e-01\\n-2.43544191e-01 6.64350629e-01 1.92120746e-01 2.01540589e-01\\n3.75425965e-01 -1.15122199e-01 -1.61432792e-02 1.35955065e-01\\n-1.45501152e-01 -1.76568642e-01 -5.07044435e-01 -7.47955143e-02\\n-1.20463520e-01 -4.73117054e-01 -8.90543759e-02 -4.81914520e-01\\n-1.58354104e-01 -2.90354818e-01 -7.60099813e-02 7.71325678e-02\\n1.90583169e-01 5.43439649e-02 1.46061212e-01 1.96301639e-02\\n-1.07335329e-01 -7.67278850e-01 1.18593358e-01 -1.57433599e-02\\n2.44572103e-01 2.84206092e-01 1.87653422e-01 8.72246325e-02\\n-1.23348963e-02 5.44273973e-01 -5.19644678e-01 -3.17016423e-01\\n8.69193673e-02 6.35529906e-02 -1.75551996e-01 -1.36884004e-01\\n2.58261323e-01 2.67141849e-01 -2.94593900e-01 1.47626251e-01\\n-1.76367611e-01 3.75982672e-02 3.81409824e-01 -2.53120251e-02\\n-2.25336194e-01 -1.46812513e-01 -1.55685738e-01 6.15317933e-02\\n-4.97732550e-01 -2.56312937e-01 2.71816611e-01 1.56659577e-02\\n1.72362819e-01 2.60542303e-01 2.10443199e-01 -5.83785623e-02\\n-3.64409864e-01 -3.83100927e-01 2.14357316e-01 1.83322728e-01\\n-1.80672258e-02 6.76504672e-02 -1.29908741e-01 -6.54375613e-01\\n-2.79908323e+00 -1.23159684e-01 3.50847542e-02 -1.53656602e-01\\n4.65550214e-01 -1.09387070e-01 1.96244806e-01 -8.46396685e-02\\n-4.14233088e-01 1.64728284e-01 -2.14522690e-01 -2.35280752e-01\\n9.66513455e-02 5.62695563e-02 1.90110996e-01 4.68250588e-02\\n-1.06818303e-02 -4.07430887e-01 1.57529533e-01 4.34014946e-01\\n-5.00358976e-02 -7.59915829e-01 1.07479513e-01 4.87836078e-02\\n2.62701094e-01 2.17019558e-01 -5.97976029e-01 -7.68634379e-02\\n-3.27123761e-01 -2.30037183e-01 1.35682285e-01 -3.72972488e-01\\n-1.75831258e-01 2.31695116e-01 2.41476491e-01 -8.81463103e-03\\n-5.15482426e-02 -3.78988206e-01 -8.20081234e-02 -4.45041806e-01\\n7.43470490e-02 -6.34494662e-01 -3.65943983e-02 -7.86084384e-02\\n6.89913750e-01 -1.32354721e-01 2.04089046e-01 1.17671430e-01\\n1.10012017e-01 2.63050109e-01 2.31961489e-01 7.93322474e-02\\n-1.25771239e-01 -2.11531669e-01 -5.65928556e-02 -1.08543336e-01\\n4.80061769e-01 4.26655352e-01 -1.76116854e-01 -1.07978091e-01\\n1.82572436e-02 -3.59977007e-01 -7.17721581e-01 -4.23244908e-02\\n-3.46820623e-01 -5.78375757e-02 -7.69396186e-01 -3.59955430e-01\\n-6.20905459e-02 -2.11180151e-01 -5.68541884e-02 7.70458937e-01\\n-3.83617759e-01 -2.70362854e-01 -2.83906981e-02 -6.00602150e-01\\n3.28278601e-01 -2.22286701e-01 3.72322947e-02 -7.73643926e-02\\n-3.45586002e-01 -4.55108136e-01 1.48932084e-01 -6.09154254e-03\\n-1.60074204e-01 -2.51260817e-01 1.95340980e-02 -1.94570482e-01\\n-4.47593063e-01 -6.62861228e-01 4.03402686e-01 1.07800528e-01\\n3.88790488e-01 -1.27314180e-02 2.01849699e-01 -9.46250558e-02\\n3.28960717e-01 9.95439813e-02 1.17847554e-01 -4.43078339e-01\\n-3.04384679e-02 -1.22414287e-02 5.69319844e-01 -2.56601453e-01\\n-1.59537066e-02 -6.56263530e-02 -3.97187054e-01 -1.36839375e-01\\n2.84766197e-01 -7.85306543e-02 5.17561734e-02 -1.75073758e-01\\n2.64304042e-01 -2.89100647e-01 5.40050771e-03 1.57532096e-01\\n7.65489414e-02 7.85804272e-01 6.28712997e-02 -3.18475664e-01\\n-8.42032731e-02 3.53727639e-01 -1.08276501e-01 9.22434498e-03\\n4.87649217e-02 -7.09222117e-03 -3.20107073e-01 3.88561428e-01\\n-5.38056307e-02 -9.08005387e-02 -2.26392925e-01 -2.58532651e-02\\n-2.41315290e-01 4.11914945e-01 3.72470349e-01 3.22843254e-01\\n-2.25378826e-01 -3.69885445e-01 -1.32335916e-01 3.15627038e-01\\n1.45535111e-01 3.18097115e-01 2.13341445e-01 -2.45503902e-01\\n1.10960584e-02 3.68367732e-01 -1.77435786e-01 2.88998038e-01\\n-1.31619781e-01 8.66411775e-02 -5.51874220e-01 -1.51292235e-01\\n-3.13471854e-01 -3.47445786e-01 1.79899424e-01 4.33494151e-01\\n1.77767158e-01 -1.51875600e-01 1.64088011e-01 -5.00433564e-01\\n2.39484161e-01 1.53381437e-01 1.93355709e-01 -1.35048945e-02\\n-1.69267833e-01 5.87525427e-01 -1.05123676e-01 -9.58819315e-02\\n5.59639037e-02 -3.30140628e-02 -2.89241403e-01 -3.77500772e-01\\n1.63769469e-01 -5.40195405e-01 -1.60197005e-01 3.98302853e-01\\n1.51308447e-01 -1.69362992e-01 -2.08383128e-01 3.18847239e-01\\n-3.85672152e-02 -2.93277323e-01 -3.83144975e-01 5.28388098e-02\\n3.46008599e-01 1.76176548e-01 2.76199818e-01 -5.93356729e-01\\n1.36092573e-01 -3.31758671e-02 -5.41806966e-02 4.04620796e-01\\n-8.13515484e-02 7.18372390e-02 -4.35290575e-01 -3.05844545e-01\\n3.99080575e-01 -3.93500552e-02 -5.99032752e-02 -1.40683949e-02\\n5.55592403e-02 -2.32374951e-01 -2.94043571e-01 4.44828197e-02\\n-2.51961462e-02 -2.44572848e-01 -2.79224068e-02 1.34612918e-01\\n7.48762265e-02 -3.06981094e-02 -5.54868817e-01 -1.32118642e-01\\n-7.72951692e-02 1.74364805e-01 -2.53934823e-02 -4.29614663e-01\\n-7.62047842e-02 -1.45285934e-01 -4.00995523e-01 2.15944916e-01\\n-6.63143098e-02 -1.86884701e-01 2.11304754e-01 -1.59485079e-02\\n-2.73282498e-01 -2.20773190e-01 1.90122157e-01 1.66708380e-01\\n-3.21528465e-01 -2.35284761e-01 -1.25715539e-01 -8.77228022e-01\\n1.23679921e-01 -8.38333368e-02 -1.15303196e-01 2.43682876e-01\\n1.94252953e-02 -8.22788477e-01 2.11156607e-01 -2.09233195e-01\\n-2.74240002e-02 -8.52119252e-02 -2.64390945e-01 -2.24004343e-01\\n7.98411220e-02 1.93789322e-02 8.32750201e-02 2.76013434e-01\\n-2.44845241e-01 4.74416971e-01 -1.55817166e-01 -9.30967629e-02\\n-9.56344083e-02 -2.40649492e-01 2.41330832e-01 -3.32357526e-01\\n-3.92562091e-01 -1.56487405e-01 -2.26712108e-01 -2.20085114e-01\\n-2.16433525e-01 -1.89405039e-01 -1.64508730e-01 3.49242017e-02\\n4.08531964e-01 5.83917871e-02 -2.20097825e-01 -1.49208412e-01\\n8.54256302e-02 -3.25875998e-01 1.03538074e-01 -1.10601783e-01\\n1.26354754e-01 -5.08532189e-02 1.33721307e-01 2.46858120e-01\\n1.36273786e-01 -3.07841659e-01 3.82927120e-01 -4.35529888e-01\\n-4.98367727e-01 -1.56510159e-01 1.69563949e-01 -1.53531507e-03\\n3.58934402e-01 -3.51289213e-01 -2.13212013e-01 3.15565348e-01\\n-5.50941154e-02 -8.40158984e-02 3.95422101e-01 -2.20634609e-01\\n-2.09009275e-01 1.79741129e-01 -4.30357277e-01 2.04788595e-01\\n8.30743194e-01 3.25510085e-01 1.74998604e-02 1.40910268e-01\\n6.87763542e-02 3.28109562e-01 5.60177028e-01 -5.66273369e-02\\n6.07278338e-03 3.23202938e-01 2.27420866e-01 -4.17084992e-01\\n-1.96479812e-01 -1.53758824e-01 -1.02760829e-03 -4.64945912e-01\\n4.90882397e-01 3.19201469e-01 -2.79180944e-01 -2.14740127e-01\\n-2.88104683e-01 -2.05734491e-01 2.90126204e-01 -3.75250317e-02\\n6.63378611e-02 -5.83293512e-02 5.44876158e-01 -6.81349337e-02\\n1.47334024e-01 5.05152822e-01 -2.01801166e-01 -2.61362076e-01\\n-1.75539464e-01 2.03189760e-01 1.61162660e-01 4.23275590e-01\\n-1.12217359e-01 3.14255595e-01 -1.33299038e-01 1.83682948e-01\\n-1.95814580e-01 8.43852535e-02 1.50031224e-01 -2.68648528e-02\\n-8.52944255e-02 2.45723158e-01 4.08645660e-01 4.48904812e-01\\n4.09840196e-01 3.92711341e-01 2.93104261e-01 2.12088395e-02\\n5.03329754e-01 5.60217023e-01 2.39641666e-01 4.66271304e-02\\n5.99698536e-03 1.61154702e-01 9.89949405e-02 3.42507884e-02\\n4.10280645e-01 2.69631863e-01 1.11378603e-01 9.16861653e-01\\n2.13574246e-01 4.45441425e-01 7.33426094e-01 -6.49558902e-01\\n-3.66797984e-01 5.95637560e-02 4.31729555e-01 -5.58744371e-01\\n3.28731090e-02 1.96207166e-01 1.88608933e-02 2.29131699e-01\\n-5.27038932e-01 -1.88437074e-01 2.89539713e-02 1.14500336e-01\\n1.81479037e-01 -9.59135368e-02 -1.35038614e-01 2.36179009e-01\\n-2.82172322e-01 -2.62147784e-01 -4.30314124e-01 -2.33607978e-01\\n-2.64321178e-01 8.98233149e-03 -3.46091688e-02 -1.02093562e-01\\n-5.33997826e-02 -2.47440755e-01 8.31302404e-02 -6.23095147e-02\\n3.76782954e-01 -1.79653257e-01 -1.76410705e-01 -8.13263729e-02\\n7.08274484e-01 1.16025582e-01 5.89377761e-01 -9.00212824e-02\\n9.20626372e-02 -2.85596848e-01 -2.28821635e-01 1.02161586e-01\\n1.76186681e-01 1.87908232e-01 5.90837048e-03 4.18738365e-01\\n-2.38294661e-01 -6.98183253e-02 4.01096791e-02 3.08326930e-01\\n-2.65782952e-01 -1.15349948e-01 -1.95698112e-01 -6.09375015e-02\\n-3.13130207e-02 1.85329616e-01 -1.64328247e-01 1.20316356e-01\\n3.74259166e-02 -5.07009983e-01 3.77264142e-01 -4.61399332e-02\\n-3.29699874e-01 1.29200742e-02 4.16063130e-01 2.55316556e-01\\n-8.87309909e-02 -3.49061452e-02 -1.18126377e-01 1.64474785e-01\\n2.93811113e-02 3.67938459e-01 -1.11943677e-01 -4.43264812e-01\\n-4.05919790e-01 1.78947031e-01 -2.66234577e-01 1.12964772e-03\\n6.46589026e-02 4.32083786e-01 -2.48052292e-02 8.70360062e-02\\n4.95590389e-01 -1.95871115e-01 -2.87681282e-01 -4.21056271e-01\\n-1.87379614e-01 -2.11080045e-01 -1.12561956e-01 -5.73445633e-02\\n1.99748904e-01 -3.09953570e-01 -2.45363235e-01 -4.99587715e-01\\n8.14421773e-02 -2.94173717e-01 -3.18146124e-03 -3.42493095e-02]]',\n", + " 'Headquartered in Thun, Switzerland, TOFWERK aims to bring the advantages of our time-of-flight technology to new markets and applications. With team members in Switzerland, Germany, China and the United States, we offer a family of end-user research products and custom instrument designs for OEM partners and research laboratories. TOFWERK is seeking an analytical scientist to develop and demonstrate new applications of our chemical ionization (CI) time-of-flight mass spectrometers (TOFMS), with emphasis on the Vocus PTR-TOF. The scientist will work within our Applications Department in support of our Vocus PTR-TOF and API-TOF product teams. He/she will be independently tasked with increasing the breadth and quality of analyses based on these instruments. The scientist will be active in relevant scientific communities in order to stay updated on trends and advances and to engage potential customers and collaborators. As the company’s expert on CI-TOFMS applications, he/she will communicate the capabilities of TOFWERK technology to prospective customers; lead product demonstrations; represent TOFWERK at international scientific meetings; support the Marketing Department in the production of technical promotional material; and formally present data in conference presentations, research reports, application notes, and peer-reviewed publications. He/she will work with other members of the Applications Department to ensure that all analyses at TOFWERK utilize the best available methods and technology. Based on his/her knowledge of the field and use of TOFWERK technology, the application scientist will provide suggestions and feedback to the Software and R&D Departments regarding potential short- and long-term product improvements and developments. Requirements PhD in Analytical Chemistry or related field 4+ years of experience using mass spectrometry for applied research or sample analysis, including method development Ability to work independently in the laboratory, including: experiment design, sample preparation, operation of scientific equipment, and data interpretation Strong background in data analysis, including statistics and spectral interpretation Interest in interacting with customers and prospective customers Confident and effective communicator Willingness to travel up to 30% per year for scientific conferences and customer site visits at European and international locations Fluency in English Desirable Experience and Expertise Use of any of the following: PTR-MS, chemical ionization MS, TOFMS, real-time trace gas analyzers Expertise in any of the following fields: biogenic VOCs, forensics, fragrances, flavors, breath analysis, atmospheric science Experience running and characterizing prototype scientific equipment Familiarity with any of the following: high vacuum systems, ion optics, ion-molecule reaction chemistry Competence in laboratory electronics and use of diagnostic equipment We Offer Exciting projects in state-of-the-art mass spectrometry An open culture that encourages new ideas A creative international team Flexible work times A bright, spacious workplace on the river in beautiful Thun We look forward to receiving your application at jobs@tofwerk.com. Please send all attachments in pdf format.',\n", + " '[\"Research\", \"Collaboration\", \"Communications\", \"Operations\", \"Presentations\", \"Creativity\"]',\n", + " '[\"Real Time Data\", \"Product Demonstration\", \"Chemical Ionization\", \"Research Reports\", \"Sample Preparation\", \"Data Presentation\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Vienna Development Methods\", \"Prototype (Manufacturing)\", \"Spectrometer\", \"Activism\", \"Mass Spectrometry\", \"Analytical Chemistry\", \"Instrumentation\", \"Vacuum Systems\", \"Productivity Improvement\", \"IText (Free PDF Software)\", \"Atmospheric Sciences\", \"Electronics\", \"Optics\", \"Survey Data Analysis\", \"Applied Research\", \"Receivables\", \"Chemistry\", \"Sample Analysis\", \"Experience Design\", \"Sampling Design\", \"Residual Gas Analyzer\", \"Peer Review\", \"Application Notes\", \"Long-Term Potentiation\", \"User Research\", \"Application Programming Interface (API)\", \"Integrated Product Team\"]',\n", + " \"['English', 'Shona', 'Turkish', 'Nyanja']\"],\n", + " ['75',\n", + " 'business application analyst',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.95008665e-01 3.99013340e-01 4.29643035e-01 6.23621792e-02\\n6.08087063e-01 6.52238876e-02 1.04930684e-01 1.14952393e-01\\n7.00906217e-02 -2.68205762e-01 -1.38870880e-01 -1.20139062e-01\\n-5.62866032e-02 -7.93280452e-02 1.21173106e-01 4.18069065e-01\\n3.15848827e-01 -5.43995164e-02 -3.28657031e-03 2.79873222e-01\\n-5.72428331e-02 8.00456665e-03 2.15325020e-02 5.92675447e-01\\n4.05653894e-01 1.20013863e-01 -3.50275636e-02 1.12025894e-01\\n-2.48493224e-01 -3.62214535e-01 3.75085354e-01 3.69461626e-02\\n-2.33532578e-01 -3.03215653e-01 6.88816160e-02 1.64522588e-01\\n-1.85275301e-01 1.21623948e-02 -1.24451324e-01 3.28230113e-03\\n-4.66755688e-01 -2.48992056e-01 -4.48130071e-02 -1.80105090e-01\\n-3.70480001e-01 -2.55145013e-01 2.06496492e-01 -2.15973467e-01\\n3.28031704e-02 2.48962641e-02 -5.00505447e-01 3.85336757e-01\\n-2.19557941e-01 -1.46872059e-01 3.15424025e-01 6.28724456e-01\\n1.65173799e-01 -5.98815799e-01 -4.74887490e-01 -3.30780447e-01\\n1.29434094e-01 -1.59070551e-01 1.68393940e-01 -2.64650136e-02\\n4.71206695e-01 -2.15121865e-01 -2.69760732e-02 2.99594939e-01\\n-6.15362763e-01 -1.15436874e-02 -5.40289640e-01 1.83903314e-02\\n-3.03136885e-01 5.53766713e-02 -4.26471055e-01 -2.40658224e-01\\n-6.99507166e-03 4.13340658e-01 1.20811388e-02 7.35970587e-02\\n-1.71227008e-01 3.18997502e-01 -1.79942995e-01 1.24712914e-01\\n2.69173622e-01 2.31143702e-02 4.02183950e-01 2.32091874e-01\\n-4.57810193e-01 5.29850721e-01 3.74625385e-01 -3.48989129e-01\\n2.59545594e-01 1.34253064e-02 2.31121942e-01 2.04598159e-01\\n1.49972821e-02 2.93230921e-01 -1.39868483e-02 9.22784302e-03\\n7.95998573e-02 -6.44016117e-02 -2.07560703e-01 -9.70576480e-02\\n-5.49077168e-02 -2.28717700e-01 6.58551455e-02 1.34303480e-01\\n-4.52967733e-01 4.46573734e-01 8.08416307e-02 -2.33199641e-01\\n-5.34538068e-02 -3.31894696e-01 -1.15534864e-01 -1.13618165e-01\\n-1.22120567e-01 9.63859782e-02 2.09814861e-01 3.08730274e-01\\n2.74116784e-01 6.90218508e-02 1.88973278e-01 7.02065170e-01\\n6.16038144e-02 1.22587457e-01 -8.43458250e-03 2.99832821e-01\\n5.18384874e-02 -2.89068192e-01 1.17042631e-01 2.91722059e-01\\n-2.23484665e-01 -6.48168400e-02 -3.67855966e-01 1.77600279e-01\\n-1.94459617e-01 -1.14878140e-01 -2.18792319e-01 2.13929236e-01\\n-2.00481564e-01 -6.06310368e-01 3.66872668e-01 -5.05070537e-02\\n9.99847203e-02 -1.49258733e-01 3.67650762e-03 -2.67140083e-02\\n-2.41359979e-01 3.47323537e-01 1.75061330e-01 3.08430970e-01\\n-2.97674477e-01 -2.55726039e-01 -9.77141187e-02 3.67457777e-01\\n-1.13222837e-01 8.72353166e-02 -5.40520310e-01 -2.04681039e-01\\n3.79402757e-01 2.12867528e-01 -5.21773994e-01 2.86651731e-01\\n-5.87734487e-03 -9.59016234e-02 -1.91565380e-01 4.30359900e-01\\n3.59341130e-02 -4.29353565e-02 -4.49364595e-02 -1.73897684e-01\\n5.46396017e-01 1.60005078e-01 1.95677131e-01 -7.37396628e-02\\n3.58966947e-01 -1.32059127e-01 2.50623226e-01 -6.79093227e-03\\n-5.72852254e-01 4.15170729e-01 -1.74482450e-01 3.14541906e-03\\n-6.03997782e-02 -3.82388160e-02 5.31919897e-01 -3.52441043e-01\\n2.11916752e-02 -2.08766580e-01 -4.14281428e-01 -4.38057303e-01\\n-1.38663471e-01 -3.98902483e-02 4.54661429e-01 -4.58312869e-01\\n5.53567521e-03 1.29119918e-01 -5.71516037e-01 -1.85264051e-01\\n4.02185559e-01 1.87568933e-01 2.13938653e-01 1.50399074e-01\\n-9.81053412e-02 -4.81393695e-01 1.11682698e-01 -5.46461701e-01\\n-3.75030160e-01 2.44040415e-01 -2.47653693e-01 6.63139895e-02\\n1.80318117e-01 -6.35833014e-03 -3.96272466e-02 1.30210929e-02\\n-3.61765027e-01 -5.96959107e-02 2.44559735e-01 -5.10137081e-02\\n1.82738453e-01 1.76333308e-01 -2.88261354e-01 6.08550787e-01\\n-2.95774102e-01 3.35119009e-01 1.87874585e-01 -9.53545034e-01\\n4.56823647e-01 1.94832981e-01 -3.92278694e-02 -3.21594030e-01\\n2.93811142e-01 -3.59783113e-01 5.99214900e-03 1.76124096e-01\\n-1.87629536e-01 -1.09368242e-01 2.09992945e-01 -1.58685684e-01\\n-3.12051386e-01 6.60686314e-01 1.05416395e-01 1.07662939e-02\\n2.86886156e-01 -1.42430902e-01 -3.27407420e-01 -4.90555428e-02\\n-3.45832944e-01 -1.50670335e-01 -5.37451744e-01 1.14824072e-01\\n-2.77052037e-02 -5.12728751e-01 -1.22580498e-01 -5.49357653e-01\\n-2.18824804e-01 -4.69523907e-01 -2.82027304e-01 2.13616759e-01\\n6.35256767e-02 1.39032960e-01 -1.55497581e-01 2.79446207e-02\\n-4.28187400e-02 -6.23596072e-01 -2.66356803e-02 1.49163604e-01\\n2.00827986e-01 4.23853099e-01 1.98534369e-01 -2.79200673e-01\\n3.93205695e-02 5.08246005e-01 -4.05801445e-01 -3.40488493e-01\\n3.75211567e-01 1.54240757e-01 -6.00795001e-02 -1.78934500e-01\\n2.73097940e-02 2.95856416e-01 -1.80580080e-01 5.62755466e-02\\n1.25635564e-01 -9.06742215e-02 2.75325835e-01 -2.66111314e-01\\n-2.56982237e-01 -1.17668010e-01 -1.43375665e-01 3.09205562e-01\\n-5.11835814e-01 -3.01409364e-01 6.02433622e-01 1.83108971e-01\\n-4.19602580e-02 3.06000352e-01 1.99281752e-01 7.44044175e-03\\n-3.36609691e-01 -1.70412421e-01 2.61179686e-01 1.76363379e-01\\n1.30626291e-01 -4.54344749e-02 -3.01077724e-01 -5.49743652e-01\\n-3.55569029e+00 -2.82751650e-01 5.50696328e-02 -2.48541459e-01\\n1.85145915e-01 -4.22971770e-02 2.74901390e-01 -2.18013488e-02\\n-2.70694554e-01 7.35134333e-02 -2.01510012e-01 -8.64264816e-02\\n-3.46118249e-02 3.53509903e-01 1.68244332e-01 1.43488690e-01\\n1.93885267e-02 -2.96424508e-01 1.26230046e-01 4.56099212e-01\\n-1.37910172e-01 -8.56148124e-01 7.47311115e-02 -7.26257861e-02\\n1.17508277e-01 1.38784558e-01 -4.04958606e-01 -1.12103790e-01\\n-3.46385002e-01 -1.60494342e-01 6.99183345e-02 -1.60134003e-01\\n-2.52299368e-01 2.49085829e-01 1.06362417e-01 -8.64721388e-02\\n-3.53455804e-02 -3.59373569e-01 -2.24601962e-02 -6.53341055e-01\\n3.26970555e-02 -6.95949554e-01 1.48876294e-01 3.61051299e-02\\n4.64770705e-01 -1.56582966e-02 2.45510906e-01 1.63776100e-01\\n1.69339389e-01 2.33648822e-01 1.70241073e-01 -8.08064919e-03\\n-3.03983480e-01 -2.80499369e-01 -1.99072599e-01 -2.36861020e-01\\n6.57795072e-01 1.94023579e-01 -1.99919999e-01 3.74202840e-02\\n-4.98504452e-02 -3.43164265e-01 -4.75379229e-01 -4.13300067e-01\\n-1.74542099e-01 1.01825230e-01 -6.86987460e-01 -4.31307584e-01\\n-2.44460553e-01 -1.73468426e-01 -1.26737446e-01 6.47513747e-01\\n-4.35722947e-01 -2.20222995e-01 -2.16420054e-01 -5.94370723e-01\\n2.52624780e-01 -8.20131153e-02 8.62736106e-02 -1.86010838e-01\\n-3.27403426e-01 -3.50784421e-01 1.98355496e-01 -2.75172293e-03\\n-2.44776979e-01 1.02648735e-02 1.77890003e-01 -1.08397275e-01\\n-3.86105478e-01 -3.74359012e-01 4.77235377e-01 4.26571816e-03\\n4.57176685e-01 6.10954463e-02 3.10741782e-01 1.59194395e-02\\n5.06574988e-01 -8.55695084e-02 9.16682854e-02 -5.37249565e-01\\n2.93198694e-02 6.69127926e-02 6.19441628e-01 -1.38995737e-01\\n-1.60193462e-02 4.74740826e-02 -2.56839752e-01 -2.49762386e-02\\n5.38749158e-01 -1.63856179e-01 1.38494700e-01 -3.35919678e-01\\n2.67729521e-01 -4.32539463e-01 -3.34229290e-01 6.38738275e-02\\n7.81847909e-02 7.43538260e-01 1.29113436e-01 -3.38600814e-01\\n-2.58372545e-01 3.27801645e-01 -1.52215630e-01 -7.24039972e-02\\n-2.09616601e-01 1.41601801e-01 -2.36046284e-01 2.61437654e-01\\n1.76726252e-01 3.02040782e-02 -2.80137837e-01 3.49889025e-02\\n-1.48878694e-01 1.18181966e-01 2.62158394e-01 1.75832957e-01\\n3.65262851e-03 -2.22498298e-01 -6.84153587e-02 1.14416696e-01\\n2.34426767e-01 3.24253023e-01 2.33186617e-01 -3.89072716e-01\\n2.86060870e-02 1.03369638e-01 -2.36514941e-01 2.98341453e-01\\n-1.03237309e-01 2.26938367e-01 -5.21813989e-01 -2.76915312e-01\\n-2.54761577e-01 -2.65493602e-01 2.29397453e-02 4.41016793e-01\\n1.09912843e-01 -2.51434445e-01 1.10836118e-01 -5.09543180e-01\\n3.66670161e-01 -5.71772903e-02 2.26971194e-01 4.31929063e-03\\n-1.36781614e-02 7.32295930e-01 7.96074718e-02 -2.41586313e-01\\n-5.31088933e-02 1.55605733e-01 -2.05185592e-01 -3.17513853e-01\\n3.06285396e-02 -3.52946162e-01 -1.32428646e-01 4.91699934e-01\\n7.55733997e-02 3.69209722e-02 -1.30102739e-01 4.33190167e-01\\n-6.32488281e-02 -2.58107305e-01 -2.31630683e-01 -1.81962162e-01\\n2.35331021e-02 7.26722330e-02 2.61114061e-01 -5.45908093e-01\\n3.81588191e-02 -1.29535586e-01 1.75660253e-01 4.11845297e-01\\n1.14919640e-01 1.88628212e-02 1.49087429e-01 -1.69886172e-01\\n5.05914688e-01 2.76735544e-01 -1.43848300e-01 -8.47352445e-02\\n1.94630563e-01 -2.57028848e-01 -3.90511125e-01 -3.60201709e-02\\n-9.97323319e-02 -1.41303703e-01 1.43579289e-01 2.12300956e-01\\n1.71816796e-01 3.36324200e-02 -4.70748782e-01 -1.37881815e-01\\n-4.19336766e-01 8.37518796e-02 -2.39282846e-01 -8.23341370e-01\\n6.73615187e-02 -3.51095833e-02 -6.13993406e-01 2.21830845e-01\\n-6.80322275e-02 1.18058249e-01 1.02512687e-01 1.82622120e-01\\n-1.90888226e-01 -3.03844094e-01 2.23368987e-01 -1.36131853e-01\\n-3.05934250e-01 -3.46114695e-01 2.39739753e-02 -9.21545088e-01\\n2.76762545e-01 7.67990723e-02 -1.86048716e-01 3.07146758e-02\\n1.19301431e-01 -7.44753361e-01 3.17702353e-01 -2.37914801e-01\\n-1.33371681e-01 1.43889353e-01 -3.11614990e-01 -3.48008454e-01\\n1.53147981e-01 1.45591050e-03 -1.91140026e-01 2.88545072e-01\\n-3.08448493e-01 6.43162549e-01 2.17807382e-01 1.92919865e-01\\n2.00574994e-01 -2.33969927e-01 -1.39634572e-02 -3.33765209e-01\\n-4.21945453e-01 -2.28561282e-01 -1.99784607e-01 -2.11759627e-01\\n-5.40009476e-02 -1.53570965e-01 -1.05935186e-01 -1.13392070e-01\\n4.73212868e-01 3.49675536e-01 -2.36959338e-01 4.88043763e-02\\n-3.90611514e-02 -2.73881495e-01 2.26684019e-01 -2.59959221e-01\\n-6.96395934e-02 -2.72628725e-01 4.93727446e-01 -1.14674158e-01\\n2.04172567e-01 -1.64891273e-01 6.67558193e-01 -1.67972893e-01\\n-3.62935126e-01 -1.09879233e-01 1.50007069e-01 4.50675115e-02\\n2.88204223e-01 -6.10142827e-01 5.38021401e-02 3.56592685e-01\\n9.64097083e-02 5.85207455e-02 3.72008562e-01 -1.59248084e-01\\n-2.30890840e-01 2.10392445e-01 -6.78520679e-01 1.51378185e-01\\n7.01343715e-01 2.80828059e-01 1.27947688e-01 1.64826989e-01\\n5.65739870e-02 1.68446481e-01 5.30752659e-01 7.68702477e-02\\n-2.02321798e-01 5.14730573e-01 1.92759395e-01 -7.11550891e-01\\n-3.36884797e-01 -1.59894601e-01 -3.37813422e-03 -2.42597044e-01\\n6.20835900e-01 1.33443847e-01 -4.70507681e-01 -3.80021691e-01\\n-3.76374185e-01 -2.80495912e-01 3.32177192e-01 5.52777313e-02\\n1.24651492e-01 -1.00803256e-01 5.91643929e-01 -3.90242860e-02\\n3.01796436e-01 4.75176245e-01 -1.80343539e-02 -1.34569585e-01\\n-5.11511564e-02 2.42801830e-01 1.28010020e-01 3.61895084e-01\\n-5.64892739e-02 1.49931237e-01 3.91129851e-02 1.27426535e-01\\n-3.17187309e-01 -5.31696826e-02 2.20459417e-01 -1.27257854e-02\\n1.10019527e-01 2.12586641e-01 5.36637545e-01 3.36952329e-01\\n2.47376382e-01 4.84607428e-01 3.80346388e-01 -2.83900667e-02\\n4.39093977e-01 6.83360755e-01 1.82947829e-01 -1.08023643e-01\\n1.34323090e-02 1.19458131e-01 1.03729367e-01 -3.07833347e-02\\n4.12101150e-01 5.54117441e-01 9.07534659e-02 7.66765833e-01\\n3.47824782e-01 3.59968692e-01 5.83235145e-01 -5.53700447e-01\\n-1.98314428e-01 5.60754687e-02 5.19675672e-01 -2.61983693e-01\\n1.31907567e-01 1.67795941e-01 -2.51441777e-01 2.32583821e-01\\n-4.59881693e-01 -2.24262774e-01 -5.18954396e-02 -1.45882815e-01\\n2.27639586e-01 -1.86824724e-02 4.49294001e-02 1.42247528e-01\\n-3.87051068e-02 -2.37777084e-01 -2.11852521e-01 -3.39132100e-01\\n-3.74523491e-01 5.73425647e-03 8.44365954e-02 -6.97888136e-02\\n-6.77605197e-02 -2.72388935e-01 -7.20749199e-02 -1.55324727e-01\\n2.70112395e-01 -1.10158734e-01 -3.34998935e-01 -1.07086696e-01\\n1.45143438e-02 3.06369156e-01 9.21783447e-01 -1.77824765e-01\\n1.66461051e-01 -1.78993165e-01 -1.86832607e-01 -2.54484080e-02\\n1.61697477e-01 1.01951584e-01 -2.91782729e-02 6.06689692e-01\\n-2.57903636e-01 -4.82439697e-02 1.52224541e-01 2.31140733e-01\\n-2.43201107e-01 1.32235307e-02 -5.22389561e-02 5.44080250e-02\\n4.37594205e-03 1.22165650e-01 -1.84865832e-01 3.06754448e-02\\n-2.30701506e-01 -6.49197519e-01 2.72451490e-01 -1.19080722e-01\\n-2.70071149e-01 -9.45970863e-02 2.54023075e-01 4.36552346e-01\\n-8.99736732e-02 -1.55729830e-01 -8.55943188e-02 1.97303742e-01\\n1.10036470e-01 3.79391223e-01 -2.18155861e-01 -1.33596122e-01\\n-2.61167705e-01 4.08169508e-01 7.51660541e-02 1.51080757e-01\\n-7.55340159e-02 3.85382116e-01 2.61615179e-02 2.32520312e-01\\n1.59027353e-01 -2.20937565e-01 -3.69323730e-01 -3.04829597e-01\\n-4.35190201e-01 -1.16633028e-02 1.11955486e-01 -8.50889459e-02\\n2.64335275e-01 -2.27494001e-01 -6.81183934e-02 -2.76735246e-01\\n-2.44057477e-01 -4.49558347e-01 -1.16036996e-01 1.09312750e-01]]',\n", + " 'Job Informationen Responsibilities: Manages the maintenance of key Applications - Ensure a proper functional and technical support to the business departments on IS applications - Supervise end users in order to ensure a proper understanding of internal Business Processes (Trading, Shipping, Finance, Legal, Cross-functions) - Provide support to Trading and Operations team in their usage and ramp-up on the Application (training, coaching, change management) - Supervise end users application’s usage in order to guarantee the efficient use of the software - Coach and Train new comers in the understanding of our processes and a proper usage of the applications related to the function of the employee. - Perform review on application usage and data quality and trigger necessary training or process improvements - Define and Implement Projects for new requirements and/or evolution of the applications - Manage the continuous improvement of our Business processes: - Help in ensuring the defined IS applications matches the business requirements of internal departments - Review Processes supported by IS systems and work in coordination with the functional departments to propose processes/Systems changes. - Specify and implement necessary system changes - Manage the testing phases and ensuring quality performance with the external developers involved in various IS improvement projects - Lead Change Management with the users whilst implementing change - Get user-feedback and trigger necessary tasks or subprojects to reach a balance between Processes, Controls, user satisfaction and capability/cost efficiency of the IS Solution - Follow-up on processes implemented, new and existing, and ensure continuous improvement - Identify user needs for reporting and implement them once specified and approved - With the support and in relation with the Business Process Owners, review the processes defined by each BPO and ensure our Operating Model is updated - Manage specific and ad-hoc IS/IT Projects - Gather Requirements and Objectives of the Project - Manage the different Project Phases from Requirements till post-support implementation - Ensure a proper handover and transition of Project deliverables to the employees (Training, support of employees on requests) Profile required: Educational Background / Qualifications: - Degree in Computer science with experience in project management - Secondary Education in cross functional areas Technical Skills: - CRM Systems (SalesForce, Oracle) - Good knowledge of Reporting systems and Business Intelligence tools (IBM Cognos, Quickview,..) - General understanding of main ERP functionalities (SAP) - Scripting language (SQL, JavaScript, any other scripting languages) - First experience on Mobility and Mobile Apps development Experience required: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in the current Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs - Proven capabilities in coaching, training and development Competency profile: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Good experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs Interpersonal competencies / communication - Service-oriented - Communication capability with specialists and non-specialists (oral and written) - Listening skills - Ability to manage diversity and complexity of processes - Negotiation/conflict resolution skills - Reactivity - Time management skills - English professional. Good German. Any other language is a plus Benötigte Skills Englisch Projektleitung Qualitätssicherung CRM ERP Oracle Cognos SAP SQL JavaScript Requirements Engineering Schulung Strategie',\n", + " '[\"Negotiation\", \"Professionalism\", \"Supervision\", \"Management\", \"Listening Skills\", \"Operations\", \"Training And Development\", \"Time Management\"]',\n", + " '[\"Data Quality\", \"QuickView\", \"Business Intelligence Tools\", \"Ad Hoc Testing\", \"Computer Science\", \"Customer Relationship Management (CRM) Software\", \"Asynchronous Serial Communication\", \"Process Automation Systems\", \"Reactivity\", \"Process Improvements\", \"Performance Review\", \"Mobile App\", \"SAP Sybase SQL\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Secondary Education\", \"Dashboard\", \"Business Intelligence\", \"Mobility\", \"Process Control\", \"Business Requirements\", \"MFG/Pro (ERP)\", \"Cross-Functional Coordination\", \"Finance\", \"Business Process\", \"SAP Functional\", \"Specific Performance\", \"Requirements Engineering\", \"JavaScript (Programming Language)\", \"Continuous Improvement Process\", \"Implement Projects\", \"Adapter Scripting Language\", \"User Feedback\", \"Project Management\", \"Scripting\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Diversity Management\", \"SQL (Programming Language)\", \"Technical Support\", \"International Business\", \"Conflict Resolution\", \"Change Management\"]',\n", + " \"['English', 'Korean', 'Chewa', 'Estonian']\"],\n", + " ['52',\n", + " 'junior software developer internship',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-2.45473623e-01 2.19922841e-01 3.95095408e-01 -8.58976841e-02\\n5.51735580e-01 -2.02397883e-01 -7.35367462e-03 5.00029922e-01\\n-1.52281597e-01 -1.19535170e-01 -1.25269637e-01 -2.06219703e-01\\n-3.24371420e-02 -2.62237042e-02 1.49601355e-01 3.16426218e-01\\n4.82166260e-01 5.57406731e-02 -2.89484859e-01 2.85835177e-01\\n9.59658772e-02 -1.58541277e-01 1.09840846e-02 6.16762042e-01\\n3.71483356e-01 3.89521345e-02 -5.42104766e-02 -7.87682310e-02\\n-2.99870104e-01 -1.31022558e-01 5.30076027e-01 3.96904498e-02\\n-1.54182715e-02 -2.32307419e-01 2.21703202e-01 6.51573688e-02\\n-4.44421172e-02 -3.38877067e-02 -1.95203587e-01 1.99599862e-01\\n-4.15456951e-01 -1.94820508e-01 9.43321958e-02 1.80630758e-01\\n-2.37349615e-01 -4.10376310e-01 2.75215745e-01 -1.24317423e-01\\n1.27079174e-01 1.30634263e-01 -4.77396876e-01 2.48626798e-01\\n-7.80712068e-02 -2.59655833e-01 3.82703841e-01 6.09389007e-01\\n-6.21135309e-02 -6.32945001e-01 -4.94459152e-01 -5.03488004e-01\\n1.41859800e-01 -5.00296317e-02 6.92079887e-02 -3.10608923e-01\\n2.81814247e-01 1.06972054e-01 6.34988472e-02 4.08018589e-01\\n-8.53355050e-01 -1.41253442e-01 -1.99521750e-01 1.27827227e-01\\n-2.35327348e-01 -1.28637239e-01 -2.89901704e-01 -1.46020539e-02\\n-4.02461849e-02 3.85970861e-01 -7.86702484e-02 1.10203102e-01\\n-1.18088454e-01 4.06786680e-01 -1.19136840e-01 4.12524074e-01\\n2.32734367e-01 2.22471863e-01 1.13852687e-01 2.04134822e-01\\n-2.62728989e-01 5.30867875e-01 1.18389353e-01 -3.25752825e-01\\n8.66854116e-02 1.89736113e-01 3.32002491e-01 7.25791082e-02\\n2.59054393e-01 1.63287669e-01 -3.93455297e-01 9.31832939e-02\\n1.52656317e-01 -3.05316985e-01 1.56553492e-01 1.01894297e-01\\n-7.74925202e-02 1.58645004e-01 -2.57805847e-02 1.22793607e-01\\n-3.99372756e-01 4.78572071e-01 2.29489118e-01 -2.61536270e-01\\n-6.53430074e-02 -6.29386663e-01 -9.89215374e-02 -3.66564021e-02\\n-1.07020393e-01 9.30459425e-02 1.22054107e-01 2.31111541e-01\\n2.79944867e-01 -2.46658698e-01 1.62418559e-01 7.94231951e-01\\n-8.29315260e-02 7.32356235e-02 -1.21068135e-01 3.64816099e-01\\n-2.01784577e-02 -2.27983460e-01 1.07244946e-01 2.09850580e-01\\n1.83243096e-01 -3.70334089e-02 -3.29061538e-01 3.32001060e-01\\n-2.13583335e-01 -3.62991035e-01 -2.46123090e-01 2.57668674e-01\\n-8.47623125e-03 -6.20967448e-01 5.99171996e-01 -5.08470796e-02\\n1.71031147e-01 -1.22229189e-01 -3.71582294e-03 -2.85885227e-03\\n-6.02269247e-02 2.71905333e-01 1.54449850e-01 5.59690259e-02\\n-2.21181631e-01 -2.00638339e-01 -2.49279261e-01 9.30614993e-02\\n-3.13635081e-01 4.16235253e-02 -1.51886299e-01 -1.30846292e-01\\n3.12026650e-01 5.16252145e-02 -2.85045058e-01 3.01462114e-01\\n2.68437937e-02 1.37891591e-01 -1.29512757e-01 3.69422823e-01\\n-3.86612773e-01 3.78587157e-01 -1.09693602e-01 -4.92961481e-02\\n6.62681937e-01 -5.58964070e-03 3.45770293e-03 -1.36714743e-03\\n8.77903700e-02 -3.74430716e-02 4.15127844e-01 1.42090647e-02\\n-6.65074527e-01 2.18379006e-01 5.93557321e-02 2.60124449e-02\\n2.85582215e-01 -1.43258989e-01 2.20245868e-01 -4.66184407e-01\\n2.68916897e-02 -1.84423387e-01 -3.68056208e-01 -2.35640734e-01\\n-2.82810897e-01 -6.77277595e-02 2.33487561e-01 -3.84310931e-01\\n5.17817847e-02 1.52055189e-01 -5.22442460e-01 -1.37363091e-01\\n1.94653317e-01 1.43800065e-01 8.01353976e-02 1.96248382e-01\\n-5.50853051e-02 -6.92686617e-01 1.88014284e-01 -4.37903315e-01\\n-1.72082201e-01 1.60971716e-01 -2.34674081e-01 2.28002980e-01\\n-1.62200615e-01 2.13294610e-01 3.05494084e-03 1.35160014e-01\\n-1.70606539e-01 -6.18163645e-02 1.21334381e-01 1.63340583e-01\\n2.27279961e-01 6.45199744e-03 -4.75051045e-01 5.05639911e-01\\n-2.41032824e-01 5.92652738e-01 3.97885917e-03 -7.68352866e-01\\n3.66328567e-01 4.27883416e-01 3.70802619e-02 -2.53934503e-01\\n7.48160958e-01 -4.13161248e-01 -1.56835496e-01 1.40595153e-01\\n-5.70764601e-01 -3.49678636e-01 1.58749789e-01 -3.99365425e-01\\n-3.17865402e-01 5.79256415e-01 1.11226074e-01 1.05091304e-01\\n2.74932951e-01 -1.35770738e-01 1.67993754e-02 7.77744427e-02\\n-2.37597600e-01 -1.84271887e-01 -5.27741194e-01 -1.13836981e-01\\n3.20441201e-02 -4.99126554e-01 -1.66044325e-01 -3.18567008e-01\\n-1.66296780e-01 -2.96055734e-01 -7.16652945e-02 5.04269190e-02\\n3.49717081e-01 1.67163357e-01 1.36661291e-01 9.67797637e-02\\n-2.39999846e-01 -5.70889950e-01 2.10115343e-01 1.03598259e-01\\n1.56007677e-01 2.52406627e-01 5.03194295e-02 -7.17848837e-02\\n-6.94592223e-02 6.78895473e-01 -3.37098598e-01 -2.99918324e-01\\n1.59823507e-01 7.49776289e-02 4.04712446e-02 -2.48348653e-01\\n1.06766306e-01 3.89184177e-01 -3.87663752e-01 1.38602734e-01\\n-2.48314053e-01 -1.64672490e-02 3.31007600e-01 7.64871538e-02\\n-1.22879997e-01 -2.32466772e-01 -1.28548086e-01 1.41489357e-01\\n-4.15204942e-01 -2.39170030e-01 5.57497323e-01 1.00887470e-01\\n1.57292590e-01 3.10246229e-01 3.94553602e-01 -1.07318595e-01\\n-1.92710996e-01 -3.69626492e-01 1.35761783e-01 8.85161757e-02\\n1.43931657e-01 6.97454810e-02 -9.40581188e-02 -5.88764906e-01\\n-2.61776710e+00 -3.70270498e-02 1.54413387e-01 -3.08222562e-01\\n2.22388059e-01 -8.61221626e-02 -1.68882310e-01 -7.46942833e-02\\n-5.02890408e-01 7.83290640e-02 -9.78340954e-02 -2.75557995e-01\\n1.76349327e-01 3.71665418e-01 1.93544462e-01 9.65916663e-02\\n1.15380600e-01 -2.84991413e-01 -1.43430429e-02 3.59965742e-01\\n-1.51247576e-01 -6.32064342e-01 1.47848114e-01 4.74647656e-02\\n4.74401683e-01 4.91123945e-01 -5.39658964e-01 -2.43761733e-01\\n-1.52173072e-01 -2.56942779e-01 1.61740094e-01 -2.92044282e-01\\n-4.96272147e-02 4.84879673e-01 1.21359810e-01 4.54459414e-02\\n3.41642387e-02 -3.72570783e-01 7.99332559e-03 -2.69092530e-01\\n2.22852696e-02 -7.21908152e-01 -1.36210471e-01 -8.45591500e-02\\n8.16650748e-01 -2.96223730e-01 1.57203883e-01 -9.54588503e-02\\n1.26440257e-01 1.74636230e-01 8.94863717e-03 1.92048252e-02\\n-4.01789278e-01 -1.95247695e-01 -5.05155604e-03 3.23557369e-02\\n4.60078239e-01 4.78760779e-01 -3.04901659e-01 -3.00131459e-02\\n8.12928677e-02 -4.24017549e-01 -4.02201265e-01 -2.28107348e-01\\n-2.17574567e-01 -3.73260498e-01 -6.86394215e-01 -4.28051353e-01\\n-8.42068053e-04 -1.90977529e-02 2.80474909e-02 5.86344838e-01\\n-2.83237129e-01 -2.33287498e-01 -8.16170499e-02 -6.24902487e-01\\n2.21570775e-01 -1.46495730e-01 4.69842777e-02 -2.03845352e-01\\n-1.18891701e-01 -5.26580393e-01 2.96362191e-02 -1.84443727e-01\\n3.16750854e-02 -1.08838528e-01 -7.95118883e-03 -6.29516914e-02\\n-4.15167511e-01 -6.67237759e-01 3.67964208e-01 1.17280856e-01\\n2.67264128e-01 6.96267784e-02 1.84422359e-01 7.76985753e-03\\n3.16727191e-01 -1.06417999e-01 1.56561643e-01 -4.11961645e-01\\n-4.54064319e-03 3.50753367e-02 5.33268094e-01 -1.34442493e-01\\n2.53753085e-02 1.58909738e-01 -2.84534991e-01 -6.49948865e-02\\n1.83838159e-01 3.11604869e-02 1.20041080e-01 -3.32923681e-01\\n3.78964812e-01 -2.08193779e-01 -1.34031609e-01 -3.84025723e-02\\n7.95439854e-02 6.67521775e-01 -9.07117948e-02 -2.24580631e-01\\n-2.13326246e-01 4.56168592e-01 -1.12361178e-01 -1.46115884e-01\\n-2.14275673e-01 -2.15088353e-02 -1.04602940e-01 1.15005344e-01\\n3.29497643e-03 -1.11089461e-01 -1.78989664e-01 -1.31157324e-01\\n-1.16287135e-01 3.25007915e-01 1.54645443e-01 1.50567740e-01\\n-1.01972483e-01 -4.60030079e-01 -4.56119771e-04 2.91093320e-01\\n1.84487551e-01 3.56197119e-01 -2.82094330e-02 -3.12071234e-01\\n-2.80383360e-02 2.40914762e-01 6.59707654e-03 3.67216259e-01\\n-1.90381423e-01 1.51898801e-01 -6.77344382e-01 -2.78151125e-01\\n-1.73992589e-01 -3.61348301e-01 8.12298954e-02 3.76010925e-01\\n1.52181134e-01 -5.52453399e-02 1.63824514e-01 -5.86592138e-01\\n4.21698332e-01 3.86788137e-02 2.89200068e-01 -4.65883091e-02\\n-1.28184959e-01 4.76823449e-01 -3.10150534e-02 -4.38425131e-02\\n-2.43651316e-01 1.95553139e-01 -1.46640718e-01 -3.30681711e-01\\n1.89789012e-01 -4.15319085e-01 -2.33142838e-01 3.87686461e-01\\n8.60225409e-02 -2.28306726e-01 -1.93042859e-01 7.39180297e-02\\n3.75953177e-03 -4.54503089e-01 -2.52650738e-01 -7.54570439e-02\\n3.61787736e-01 1.26784205e-01 2.71633297e-01 -3.22847873e-01\\n8.42160285e-02 -8.58866274e-02 -8.21855739e-02 4.04488921e-01\\n3.69907655e-02 -6.22059144e-02 -3.12176198e-01 -1.59623578e-01\\n4.58450079e-01 -1.77133292e-01 -2.37016864e-02 1.18872933e-01\\n9.29111540e-02 -2.95646757e-01 -4.90285933e-01 -6.99271709e-02\\n8.66693556e-02 -5.21860123e-02 -3.77704613e-02 6.90912455e-02\\n7.78119341e-02 6.17326982e-02 -4.36556190e-01 -1.64108545e-01\\n-3.48309845e-01 -7.25517198e-02 7.01059550e-02 -4.57707703e-01\\n-1.65634096e-01 -6.01060577e-02 -4.67383236e-01 2.44101763e-01\\n-2.37860709e-01 2.27316972e-02 2.92285055e-01 -1.65588990e-01\\n-3.80428076e-01 -1.89400643e-01 9.47308093e-02 2.87066013e-01\\n-2.46226490e-01 -2.07789451e-01 -9.66834798e-02 -1.00555551e+00\\n2.02925876e-01 -1.30872637e-01 -4.98056374e-02 3.58184017e-02\\n-3.64202596e-02 -7.89154887e-01 2.68895179e-01 -4.10526931e-01\\n-1.03596546e-01 -2.84045357e-02 -1.72376692e-01 -3.78441185e-01\\n2.35497072e-01 -2.96965484e-02 -2.47622490e-01 2.40348652e-01\\n-3.28644991e-01 4.43502098e-01 1.64369512e-02 3.72146703e-02\\n-1.23621419e-01 -2.95922965e-01 2.03749095e-03 -4.54361647e-01\\n-2.46674791e-01 -1.00867443e-01 -3.12553525e-01 4.19228598e-02\\n-9.00717229e-02 -1.30740345e-01 -1.94600612e-01 7.42791146e-02\\n4.15088296e-01 1.21921368e-01 -7.93483406e-02 -1.43306211e-01\\n1.72423363e-01 -5.09902239e-01 1.69317350e-01 -3.27898473e-01\\n1.00524195e-01 -1.32626623e-01 2.60226458e-01 2.19739541e-01\\n1.35404274e-01 -4.91473883e-01 3.29101801e-01 -4.48009372e-01\\n-5.26750445e-01 1.43201500e-02 6.79285973e-02 -1.54193386e-01\\n4.65061665e-01 -5.41942716e-01 -1.84909865e-01 3.91988754e-01\\n-3.80467884e-02 -3.87774631e-02 2.29927927e-01 -8.31914991e-02\\n-1.54848412e-01 1.93777397e-01 -3.63993645e-01 2.78356988e-02\\n7.29109347e-01 2.97423631e-01 1.50550744e-02 2.45707139e-01\\n2.04123780e-01 3.12750310e-01 4.08034384e-01 1.01338901e-01\\n-5.38795581e-03 3.50028157e-01 -5.73848337e-02 -6.59256220e-01\\n5.85917477e-03 -5.09761833e-03 -3.33802193e-01 -3.10916871e-01\\n6.43007040e-01 3.93528640e-01 -4.00413543e-01 -3.07851851e-01\\n-2.00726002e-01 -2.13978842e-01 2.55529165e-01 3.70820202e-02\\n2.39879712e-01 4.26364318e-03 6.05877399e-01 1.43179610e-01\\n2.80882865e-01 6.50168717e-01 -1.66484520e-01 -3.05924505e-01\\n3.54904085e-02 3.28848094e-01 -3.73973995e-02 4.60030496e-01\\n-1.35907263e-01 2.84458667e-01 -9.23225358e-02 -3.37796248e-02\\n-9.76275653e-02 1.43223435e-01 1.78526103e-01 -3.26318368e-02\\n1.16038181e-01 7.29452744e-02 4.23307061e-01 4.27861929e-01\\n2.92726010e-01 3.76757383e-01 2.97999948e-01 3.12964395e-02\\n4.99812603e-01 4.65014637e-01 3.86114776e-01 1.27076000e-01\\n4.80362698e-02 1.34755716e-01 1.05135947e-01 7.07183555e-02\\n2.49690160e-01 3.30388665e-01 8.25779736e-02 9.25211728e-01\\n3.68591398e-01 2.69573301e-01 7.10277975e-01 -5.85745335e-01\\n-3.28817725e-01 -2.13221475e-01 5.07364154e-01 -3.62576783e-01\\n-5.21593206e-02 8.35919529e-02 -9.39361230e-02 3.43980849e-01\\n-3.31892371e-01 -2.30632693e-01 4.35365252e-02 2.30933771e-01\\n5.45152687e-02 2.59559005e-02 -1.37752265e-01 1.47144021e-02\\n-2.34334201e-01 -2.95307875e-01 -5.97996235e-01 -1.71406239e-01\\n-1.91932321e-01 -8.37542489e-02 -1.69033170e-01 -9.45577174e-02\\n-2.39471942e-01 -3.43974501e-01 -9.28418264e-02 -9.75252464e-02\\n3.05595368e-01 -2.03515068e-01 -4.90560047e-02 -1.77224323e-01\\n4.21410710e-01 1.90544441e-01 5.85261703e-01 -3.29012275e-02\\n6.19723536e-02 -4.69307840e-01 -2.07040191e-01 1.13210708e-01\\n7.64514282e-02 2.52238158e-02 4.38707955e-02 4.78126526e-01\\n-2.79441535e-01 -2.42833152e-01 4.90680570e-03 3.51825029e-01\\n-4.21927482e-01 -8.22668001e-02 3.52508128e-02 1.42494947e-01\\n5.55643328e-02 2.74579115e-02 -1.36973664e-01 -4.16733511e-02\\n-9.12409797e-02 -4.46850061e-01 2.21877247e-01 1.64352339e-02\\n-2.63824046e-01 2.75128007e-01 2.32905328e-01 1.85319960e-01\\n-1.28736332e-01 -9.35236067e-02 -1.17537715e-01 8.76640752e-02\\n-7.66385347e-03 3.47190261e-01 -1.64434120e-01 -4.21817601e-01\\n-2.38005117e-01 2.00991228e-01 -3.99697393e-01 9.29051936e-02\\n2.57381517e-02 2.95806766e-01 4.98581231e-02 -5.15647605e-02\\n4.65222955e-01 3.06350384e-02 -1.82640076e-01 -2.53989995e-01\\n-7.15851411e-02 -3.08803678e-01 -4.61579598e-02 -1.35998756e-01\\n1.36391968e-01 -2.77447462e-01 -1.13779701e-01 -3.12114954e-01\\n-1.25723988e-01 -2.47070983e-01 -1.69569999e-01 -1.25062257e-01]]',\n", + " 'We are an investment and trading firm with offices based in Zug, Zürich and Ziegelbrücke, Switzerland. We are looking for a Junior Software Developer Internship (f / m, 100%) who is motivated to learn in a small but growing team. This position is being offered either as a 6 to 12-month internship or as an entry level role for recent graduates. The successful candidate will work on projects involving futures and cryptocurrencies and gain exposure to financial markets trading. Your Responsibilities: • Developing an automated trading system with the Senior Portfolio Managers. • Building front end framework and GUI. • Managing short-term quantitative strategies and market risk issues. • Directing system testing and validation procedures. Your Profile: • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Effective communicator, fluency in English is a must. • Excellent at multi-tasking and working under pressure. • Highly motivated and interested to learn from experienced professionals. • An interest in finance and cryptocurrencies will be beneficial. Did we raise your interest? Please send your CV and cover letter. Requirements • Completed or in the process of completing a quantitative degree in Finance, Business, Economics, Engineering, Political Science, Math or Physics. • Top-notch computer programming skills with excellent command of programming languages such as Python, C#, or JavaScript. • Experience with VUE or other similar front end frameworks. • Fluency in English. • Excellent at multi-tasking and working under pressure.',\n", + " '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " '[\"Market Risk\", \"Automation\", \"KM Programming Language\", \"Vue.js\", \"Notching\", \"Python (Programming Language)\", \"M (Programming Language)\", \"Levelling\", \"Financial Market\", \"Investments\", \"Business Economics\", \"Cryptocurrency\", \"Portfolio Management\", \"Finance\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Physics\", \"Computer Programming\", \"Validations\", \"Front End (Software Engineering)\", \"Software Development\", \"Political Sciences\", \"System Testing\"]',\n", + " \"['English', 'Armenian', 'Arabic']\"],\n", + " ['82',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.nicollcurtin.com',\n", + " '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " \"['English', 'Chuang', 'Portuguese']\"],\n", + " ['2',\n", + " 'computer scientist internship',\n", + " 'Schlieren',\n", + " '',\n", + " '',\n", + " '[[-1.53602079e-01 2.75295228e-01 4.44754988e-01 -8.74064746e-04\\n4.65142727e-01 -9.00841281e-02 3.52950059e-02 3.23823810e-01\\n-1.11643709e-01 -2.68267572e-01 -1.73975769e-02 -2.35319495e-01\\n-1.20843843e-01 2.28507612e-02 5.45536652e-02 5.17031670e-01\\n2.56125003e-01 1.02014244e-01 -2.13766143e-01 2.48112679e-01\\n1.99942648e-01 -1.53428212e-01 6.28897268e-03 6.94221199e-01\\n4.73785073e-01 -2.12082770e-02 -2.33641006e-02 2.71139015e-02\\n-2.70769387e-01 -1.71507776e-01 3.80241275e-01 3.10115572e-02\\n-6.24167882e-02 -2.51691252e-01 2.07952544e-01 1.08487733e-01\\n-1.45617232e-01 -2.82728225e-02 -6.40606135e-02 2.39154637e-01\\n-5.00803411e-01 -2.27012783e-01 8.28664154e-02 -5.88480802e-03\\n-3.01922083e-01 -3.96644235e-01 8.84282812e-02 -8.25946853e-02\\n1.18442819e-01 -8.04540887e-02 -6.21175110e-01 3.25554013e-01\\n-2.62513757e-01 -5.28069809e-02 2.67046869e-01 6.22997642e-01\\n1.75173637e-02 -6.24342501e-01 -4.32742864e-01 -3.23103011e-01\\n1.22896388e-01 -1.14720605e-01 3.08250189e-02 -3.29822838e-01\\n2.65377522e-01 4.73865680e-02 -2.78202314e-02 3.78728628e-01\\n-8.09108377e-01 -1.08554766e-01 -3.13643754e-01 1.07773039e-02\\n-3.61554801e-01 -6.85201064e-02 -3.57690275e-01 -3.95499766e-02\\n-7.07582310e-02 3.94466072e-01 -6.43955618e-02 2.41639651e-02\\n-1.60574973e-01 2.75085330e-01 -2.96322286e-01 2.96128988e-01\\n2.90642321e-01 1.64011940e-01 1.63925856e-01 3.54308426e-01\\n-3.22756439e-01 3.94301832e-01 1.48467347e-01 -3.28850389e-01\\n1.20087259e-01 6.70346916e-02 4.90757972e-01 6.25806823e-02\\n3.58981788e-02 1.51024401e-01 -1.96921900e-01 2.80004263e-01\\n1.89411595e-01 -1.99639887e-01 1.19231425e-01 -1.45926535e-01\\n-9.98239890e-02 -6.31182492e-02 2.92794481e-02 2.85648704e-01\\n-2.38075405e-01 4.63762730e-01 1.81371108e-01 -1.43252566e-01\\n-6.10677749e-02 -5.97779214e-01 -1.46738470e-01 -4.79835421e-02\\n9.90228541e-03 2.02259764e-01 2.18669951e-01 2.95556247e-01\\n1.69639215e-01 -3.66647467e-02 1.54743403e-01 8.88356924e-01\\n-9.27291214e-02 5.57114333e-02 -2.22520947e-01 3.36524427e-01\\n1.26762688e-01 -1.30034193e-01 1.63136125e-01 2.66448766e-01\\n1.24527909e-01 -1.38661847e-01 -3.04444641e-01 3.01279366e-01\\n-2.03299493e-01 -1.97715744e-01 -3.21733028e-01 1.13359720e-01\\n-1.26464516e-01 -4.22883570e-01 6.39714837e-01 9.57419500e-02\\n1.21580683e-01 -9.35149714e-02 -7.06192404e-02 -1.13021635e-01\\n-3.90886664e-02 2.97870904e-01 1.03825651e-01 1.72982365e-01\\n-2.62146205e-01 -2.37105966e-01 -1.72257408e-01 1.39742464e-01\\n-1.87868550e-01 4.04359885e-02 -5.32390587e-02 -2.33344249e-02\\n3.58087838e-01 8.36327672e-02 -3.97071511e-01 1.94158182e-01\\n-3.52918170e-02 -2.11089835e-01 -1.75920546e-01 4.78833765e-01\\n-1.18805371e-01 1.79205075e-01 -5.62654808e-04 -1.64773479e-01\\n5.25384128e-01 1.44765720e-01 1.78613380e-01 -4.08485346e-02\\n2.23982945e-01 -7.63998181e-02 2.21726879e-01 1.56658426e-01\\n-5.92209995e-01 3.01452816e-01 -4.26033325e-02 -4.11835201e-02\\n2.04418361e-01 -3.64146824e-03 3.92587543e-01 -3.19166958e-01\\n-5.28447852e-02 -2.06167892e-01 -3.61407131e-01 -3.17565650e-01\\n-2.08405003e-01 -4.14628610e-02 3.93401176e-01 -3.70006919e-01\\n-3.59406881e-02 2.75770038e-01 -4.60921288e-01 -6.29739612e-02\\n1.79042384e-01 2.41301447e-01 1.20403916e-01 9.09609646e-02\\n-1.29892007e-01 -5.92998028e-01 4.95606810e-02 -4.56167519e-01\\n-4.74848419e-01 1.49121329e-01 -3.27060908e-01 2.70537883e-01\\n3.40833180e-02 1.07858978e-01 -2.38053408e-02 1.65477246e-01\\n-2.84833610e-01 2.82191560e-02 1.29977316e-01 1.20445400e-01\\n1.72923639e-01 6.56228513e-03 -5.48824072e-01 4.51307535e-01\\n-2.10540816e-01 5.27005076e-01 1.68574885e-01 -8.17633152e-01\\n5.33210993e-01 1.99961245e-01 3.69334333e-02 -3.84959430e-01\\n5.93608081e-01 -2.71225005e-01 3.69302817e-02 7.62620866e-02\\n-2.92427510e-01 -1.94473416e-01 3.05666536e-01 -1.91071451e-01\\n-2.24033490e-01 5.12881935e-01 1.79499090e-01 4.11442108e-02\\n2.20911309e-01 -3.12304884e-01 -1.89719886e-01 1.93197485e-02\\n-7.74767250e-02 -1.71716079e-01 -3.82747442e-01 8.98938105e-02\\n-1.57072946e-01 -5.97255647e-01 -1.09047018e-01 -3.44104916e-01\\n-2.22361147e-01 -3.33881289e-01 -1.40929669e-01 3.06869119e-01\\n2.32386425e-01 1.76017642e-01 4.14241441e-02 -4.21105511e-02\\n-1.02337524e-01 -6.38835013e-01 -1.30182765e-02 9.28274840e-02\\n4.14528966e-01 2.46585473e-01 1.00189492e-01 -1.08352512e-01\\n-1.34536363e-02 5.63502908e-01 -2.98841238e-01 -2.59328812e-01\\n1.66434571e-01 1.20348431e-01 4.84061241e-02 -1.37787819e-01\\n1.03051558e-01 3.02864045e-01 -2.38909870e-01 1.71409659e-02\\n-2.08655015e-01 -2.27689594e-02 3.71344924e-01 8.83662179e-02\\n-2.36278132e-01 -2.64207989e-01 -7.14703351e-02 2.85397261e-01\\n-4.78906929e-01 -3.33927780e-01 5.50480902e-01 2.29390293e-01\\n1.59361452e-01 2.00587839e-01 3.37863207e-01 -6.27067909e-02\\n-2.08654270e-01 -2.34520793e-01 2.09387496e-01 1.28037736e-01\\n3.18930075e-02 1.29974142e-01 -6.10775873e-02 -5.29053390e-01\\n-3.31904364e+00 -3.03261280e-02 1.80773512e-01 -3.98429722e-01\\n2.63521940e-01 -6.72795698e-02 9.67778862e-02 -1.48871168e-03\\n-2.89413452e-01 3.38058285e-02 -2.19606504e-01 -1.37703061e-01\\n8.67493078e-02 3.28529149e-01 6.77003413e-02 8.40484649e-02\\n1.18505172e-01 -2.53358155e-01 -9.06607434e-02 3.63431036e-01\\n-7.43994564e-02 -6.83497608e-01 2.05274612e-01 -1.03583140e-03\\n1.29385397e-01 2.04781815e-01 -3.53495568e-01 -8.14406425e-02\\n-2.27504790e-01 -3.86991531e-01 1.31423518e-01 -2.98274875e-01\\n-1.09821446e-01 3.74471933e-01 1.31086841e-01 -9.22293961e-02\\n3.43438797e-02 -2.58354902e-01 1.03413537e-01 -5.27502418e-01\\n1.02804273e-01 -6.92639351e-01 -5.99695509e-03 -4.89108190e-02\\n7.20850110e-01 -2.44364783e-01 1.69846669e-01 3.73018347e-02\\n1.09367788e-01 1.31801307e-01 4.38581482e-02 6.80840611e-02\\n-2.21455514e-01 -2.74322629e-01 -1.43507928e-01 -1.25110578e-02\\n5.53489149e-01 4.78209078e-01 -1.82596117e-01 -3.78921889e-02\\n6.07531294e-02 -3.79607439e-01 -4.55506444e-01 -3.64566326e-01\\n-2.95426548e-01 -2.66789854e-01 -7.51881361e-01 -3.51188600e-01\\n-1.01255216e-01 -8.94137472e-02 -1.61856756e-01 4.91799623e-01\\n-2.62051702e-01 -3.82540882e-01 5.27941287e-02 -5.45134604e-01\\n2.04817384e-01 -2.36882463e-01 7.90828466e-02 -2.22677827e-01\\n-3.38443071e-01 -5.18638790e-01 1.41649127e-01 -8.06449205e-02\\n-1.50153324e-01 -1.45016685e-01 1.12725787e-01 -2.33602986e-01\\n-2.63774306e-01 -6.57187581e-01 3.59553933e-01 9.72402915e-02\\n2.16489419e-01 1.92879051e-01 2.76198804e-01 2.82964390e-02\\n2.97138959e-01 -1.62054688e-01 1.28524438e-01 -3.25920075e-01\\n1.81981772e-01 1.60352886e-03 5.16854465e-01 -2.13908657e-01\\n7.25013986e-02 1.73593313e-01 -2.31560022e-01 -3.98134850e-02\\n3.51356238e-01 -3.96473780e-02 2.29825471e-02 -1.28120020e-01\\n3.36034834e-01 -4.42079693e-01 -2.51009583e-01 4.77879457e-02\\n-9.91837773e-03 6.52624488e-01 -4.55294475e-02 -3.37199748e-01\\n-1.98198393e-01 4.99084771e-01 -9.45051089e-02 -1.46985814e-01\\n-2.23353311e-01 3.17299664e-02 -5.64684533e-02 2.54696399e-01\\n-2.37339754e-02 -2.12478101e-01 -3.04327756e-01 -2.36206114e-01\\n-1.20887786e-01 2.94198930e-01 2.27759540e-01 1.04324706e-01\\n-6.01769648e-02 -2.64845997e-01 4.10931744e-03 2.33577281e-01\\n2.01172799e-01 4.38109010e-01 9.93783101e-02 -2.01888978e-01\\n-2.45959405e-02 3.29944402e-01 -1.85227722e-01 2.50515729e-01\\n-2.62063146e-01 8.12042356e-02 -5.32123625e-01 -2.42141888e-01\\n-1.77016839e-01 -4.21145201e-01 1.71328336e-01 3.76035631e-01\\n2.00258568e-01 -1.51827540e-02 5.48333041e-02 -5.50627172e-01\\n3.95117015e-01 6.71457797e-02 1.24630883e-01 1.76317126e-01\\n-3.42798308e-02 6.08054280e-01 -8.20547864e-02 -3.61471586e-02\\n-9.51210335e-02 -5.19671030e-02 -4.01220590e-01 -1.45096704e-01\\n1.37507185e-01 -2.92499453e-01 -1.58439726e-01 5.20828187e-01\\n1.57981351e-01 -2.76140422e-01 -1.93701386e-01 2.32864216e-01\\n4.07198109e-02 -3.41823220e-01 -1.70939103e-01 4.63949218e-02\\n1.83589429e-01 1.35904029e-01 2.67145723e-01 -3.25727969e-01\\n-7.40477219e-02 -3.42329964e-02 -8.51560533e-02 4.55039650e-01\\n1.26481712e-01 9.49736312e-03 -1.49191186e-01 -1.13087840e-01\\n5.34564316e-01 -1.82246551e-01 -6.97943419e-02 3.16317305e-02\\n8.63784030e-02 -2.12962717e-01 -5.09177744e-01 -2.39348952e-02\\n-9.27379131e-02 -2.03457683e-01 6.73676468e-03 1.17026418e-01\\n1.91402230e-02 1.63133647e-02 -5.19271195e-01 -2.74993420e-01\\n-3.39055181e-01 -9.21681374e-02 7.69305825e-02 -4.94073808e-01\\n-8.33783001e-02 4.38126875e-03 -5.22319496e-01 2.59860784e-01\\n-1.33243337e-01 8.21146071e-02 2.44402304e-01 1.29367441e-01\\n-2.22957805e-01 -5.61451837e-02 1.05035231e-01 1.35916740e-01\\n-2.87162334e-01 -1.55335665e-01 -3.73689085e-02 -9.48419929e-01\\n1.08483002e-01 3.63766290e-02 -2.27224320e-01 8.53658766e-02\\n-9.98522937e-02 -6.38040960e-01 7.99505338e-02 -2.67035365e-01\\n-6.33292571e-02 1.30717024e-01 -1.75862640e-01 -4.65874404e-01\\n1.84822276e-01 -4.79171500e-02 -2.68487513e-01 4.86784220e-01\\n-4.51096803e-01 2.36563906e-01 -4.88459459e-03 6.66545257e-02\\n1.81141365e-02 -2.96540648e-01 2.36885384e-01 -3.87453526e-01\\n-3.62312794e-01 -1.24784864e-01 -3.31068814e-01 -1.99850261e-01\\n2.81495191e-02 -2.86687404e-01 -2.05103293e-01 1.48562342e-01\\n3.41107190e-01 9.43034887e-02 -5.29122427e-02 -1.87834129e-02\\n1.56127214e-01 -5.22367358e-01 1.59767792e-01 -2.65975177e-01\\n-1.92024186e-02 -9.14664045e-02 2.33556747e-01 4.48940955e-02\\n1.25893012e-01 -3.80189270e-01 5.29064834e-01 -3.79257649e-01\\n-3.03653628e-01 -5.98012209e-02 7.63095170e-02 -1.10951759e-01\\n2.58604735e-01 -4.86270815e-01 -2.46902625e-03 2.57016569e-01\\n5.52281328e-02 4.64873761e-02 2.46626511e-01 -1.20789148e-01\\n-1.33198872e-01 1.97786078e-01 -3.95724744e-01 1.34468943e-01\\n8.05878341e-01 1.70482650e-01 2.23702371e-01 1.55435383e-01\\n8.07280242e-02 1.66414827e-01 4.50633854e-01 6.02854006e-02\\n-4.00055386e-02 2.02548847e-01 -1.40654994e-02 -6.12739563e-01\\n-1.40906781e-01 2.99106236e-03 -3.03913206e-01 -3.85297626e-01\\n6.10250294e-01 4.19392794e-01 -3.41209680e-01 -2.83789486e-01\\n-3.43055390e-02 -6.30171224e-02 2.49566779e-01 3.96046601e-02\\n4.37033474e-02 -7.09792972e-02 6.17688596e-01 1.33136824e-01\\n2.72374123e-01 6.27636790e-01 -7.70956725e-02 -3.37699294e-01\\n-2.24497281e-02 1.04215860e-01 1.23015186e-02 4.65817928e-01\\n-1.53456241e-01 3.03762197e-01 -7.52975866e-02 4.81290258e-02\\n-1.76822886e-01 4.14056592e-02 1.54297844e-01 6.65575191e-02\\n-3.50689306e-03 1.51965484e-01 3.07770431e-01 4.46553409e-01\\n2.95417964e-01 4.33602542e-01 2.44903997e-01 8.97686277e-03\\n3.55134785e-01 5.37818611e-01 3.51399630e-01 1.69588760e-01\\n-1.28439134e-02 -3.50305741e-03 6.35744408e-02 9.70817953e-02\\n3.28252256e-01 2.32104287e-01 1.17576182e-01 8.33265483e-01\\n2.01204404e-01 2.54175752e-01 7.06625640e-01 -6.05233788e-01\\n-3.78463447e-01 3.14637050e-02 4.13594455e-01 -3.38910133e-01\\n-7.14619756e-02 -4.99815941e-02 -2.14538276e-01 2.12544665e-01\\n-5.87455273e-01 -2.92000294e-01 -1.03563458e-01 1.49492890e-01\\n3.04851145e-03 -1.55858397e-01 -2.05256075e-01 4.89827618e-02\\n-1.17417656e-01 -2.33712941e-01 -3.12006712e-01 -1.40339702e-01\\n-2.71431237e-01 -1.61594227e-01 -8.80464762e-02 -1.29857227e-01\\n3.30242398e-03 -3.17338735e-01 -1.09425105e-01 4.73867878e-02\\n3.99813056e-01 -6.35411963e-02 -1.07857376e-01 -1.17407404e-01\\n1.59771547e-01 2.19781592e-01 6.06037140e-01 -5.21835964e-03\\n4.32929322e-02 -8.84532034e-02 -1.84936315e-01 6.05457760e-02\\n1.64109558e-01 -1.76302008e-02 2.20615249e-02 4.35199469e-01\\n-3.65858197e-01 -2.10721031e-01 1.42830670e-01 2.85131961e-01\\n-4.26858008e-01 -1.72297835e-01 -9.65421721e-02 2.62670070e-01\\n1.14978068e-01 8.11369047e-02 -1.28767908e-01 1.50073841e-01\\n-2.53151804e-01 -5.65897822e-01 3.53234738e-01 -1.08609751e-01\\n-2.51548767e-01 1.47412837e-01 2.65972912e-01 1.25600129e-01\\n-2.99150169e-01 5.42248860e-02 -1.10516652e-01 3.11142594e-01\\n-4.14242372e-02 3.58103096e-01 -2.31343597e-01 -1.38978601e-01\\n-3.16997170e-01 2.78861016e-01 1.54354423e-02 2.06445649e-01\\n1.53465010e-02 3.12084377e-01 7.54139572e-02 2.84364261e-02\\n3.65073174e-01 4.29855920e-02 -1.99872911e-01 -2.62116760e-01\\n-1.56631842e-01 -2.72377610e-01 7.96584263e-02 -8.69565755e-02\\n1.27506420e-01 -3.95920098e-01 -2.01144278e-01 -2.10773960e-01\\n-9.52333510e-02 -3.58040333e-01 -4.27656509e-02 5.42212911e-02]]',\n", + " 'Job: Expanding and optimizing the existing data pipeline architectures of 3+’s Machine Learning projects aimed at predicting TV viewership Working closely with the Data Science team to collect requirements and use cases for onboarding new data sources Designing the architecture of a Data pipeline suiting use cases, building a data pipeline using your own design choices Supporting the Data Science team in their data gathering and data analysis projects such as - not limited to – analyzing, modeling and predicting TV viewer behavior, analyzing and optimizing TV Advertisement strategies, analyzing and optimizing Social Media exposure Enriching existing datasets such as TV schedule with additional metadata Your Profile: Bachelor or master’s degree in computer science or shortly before graduation Excellent knowledge of at least one of the following programming languages Python, R, or Ruby Good Knowledge of data structures and algorithms Experience with SQL or NoSQL databases Proficiency with Logging Systems such as Graylog or Elasticsearch Familiarity with MVC Frameworks such as Ruby on Rails Knowledge of distributed computing platforms and query interfaces such as MapReduce, Pig or/and Hive Great level of autonomy, self-managed approach to projects Dealing with critical and confidential data which requires high level of confidentiality, integrity and responsibility Written and spoken fluency is mandatory in either German or English This position offers you the chance to prove your analytical and programming skills in a fast-paced environment. The TV and media industry are data driven industries. Your results and contributions will be essential in the decision-making process. We also offer you a modern workplace with an open feedback culture and a competitive salary. Interested? Then, please apply at job(at)3plus.tv. 3 Plus TV Network AG Eva Felsberg Wagistrasse 21 8952 Schlieren Tel. +41 43 336 36 36',\n", + " '[\"Social Media\", \"Management\", \"Scheduling\", \"Integration\", \"Decision Making\", \"Positivity\"]',\n", + " '[\"Advertisement\", \"NoSQL\", \"Elasticsearch\", \"KM Programming Language\", \"Programming (Music)\", \"Computer Science\", \"Collections\", \"Metadata\", \"Prediction\", \"Analytics\", \"Industrialization\", \"Distributed Computing\", \"Ruby (Programming Language)\", \"MapReduce\", \"Onboarding\", \"Python (Programming Language)\", \"Data Pipeline\", \"Levelling\", \"Limiter\", \"Dataset\", \"Graylog\", \"Microsoft Modern Workplace\", \"Logging (Construction)\", \"Use Case Diagram\", \"Computing Platforms\", \"Machine Learning Methods\", \"Data Science\", \"Survey Data Analysis\", \"Ruby On Rails\", \"High-Level Architecture\", \"Data Structures\", \"Algorithms\", \"Additives\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Source Data\"]',\n", + " \"['English', 'Southern Sotho']\"],\n", + " ['3',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.25972161e-01 1.82309926e-01 4.60240096e-01 3.88041548e-02\\n5.27822554e-01 -2.00513646e-01 3.07385270e-02 3.83118659e-01\\n8.81233513e-02 -3.35077792e-01 -3.31870243e-02 -3.11059833e-01\\n-1.40460432e-01 1.27683818e-01 -8.64985678e-03 3.43016297e-01\\n3.68590027e-01 1.36323437e-01 -1.77311301e-01 4.07873333e-01\\n1.12691619e-01 -1.01935767e-01 1.18176444e-02 8.02999854e-01\\n5.14983177e-01 1.09390533e-02 -9.28386971e-02 1.86021086e-02\\n-2.69973010e-01 -1.68353513e-01 4.47183996e-01 -4.36146222e-02\\n-1.05818823e-01 -3.45961630e-01 1.67472348e-01 7.74640739e-02\\n-2.25931183e-01 8.37413743e-02 -1.18933901e-01 9.82481018e-02\\n-4.62380052e-01 -2.33057842e-01 -1.11393016e-02 3.71388569e-02\\n-2.39295825e-01 -2.68159091e-01 9.56443623e-02 4.43644859e-02\\n8.14447030e-02 9.37325507e-02 -4.83117551e-01 2.99364716e-01\\n-2.41431952e-01 -1.92126647e-01 2.47133553e-01 5.65697193e-01\\n-3.69032025e-02 -5.38636148e-01 -4.52528417e-01 -4.23976004e-01\\n3.02578770e-02 -6.65280148e-02 8.93900543e-02 -4.17196304e-01\\n4.03923780e-01 -4.95664291e-02 -1.60344839e-02 3.26124519e-01\\n-7.66836762e-01 5.57993306e-03 -2.70500004e-01 -8.28465149e-02\\n-4.10270035e-01 -5.49467020e-02 -3.70843530e-01 -2.25932058e-03\\n-1.23264879e-01 3.71388048e-01 1.09313175e-01 1.79937452e-01\\n-2.68536717e-01 2.97999561e-01 -2.28436574e-01 4.39626038e-01\\n2.38174379e-01 2.11773112e-01 2.14993790e-01 3.42533946e-01\\n-3.90221357e-01 4.78368282e-01 1.77198201e-01 -2.72695988e-01\\n2.97895491e-01 8.05688575e-02 3.30556244e-01 -3.28749642e-02\\n1.50311276e-01 6.86438158e-02 -2.63857186e-01 2.51930207e-01\\n2.75529921e-01 -3.63178968e-01 2.85147037e-02 -7.69500658e-02\\n8.40694178e-04 7.35757574e-02 4.67434004e-02 2.34161988e-01\\n-2.43389234e-01 5.17325580e-01 1.59513518e-01 -1.49813384e-01\\n-1.62780598e-01 -4.95391697e-01 -6.07719794e-02 4.03835438e-02\\n3.63908112e-02 1.19789228e-01 2.16845468e-01 5.70448861e-02\\n2.19390929e-01 -1.67973265e-02 5.53100705e-02 8.34067106e-01\\n-4.36116643e-02 -3.59342694e-02 -2.24684000e-01 3.02282155e-01\\n1.30359948e-01 -3.43923748e-01 2.39593014e-01 2.92837113e-01\\n9.61170495e-02 -1.19641654e-01 -2.61175185e-01 3.80248010e-01\\n-8.27484280e-02 -2.14978993e-01 -2.17670843e-01 2.04866171e-01\\n4.06045988e-02 -4.70596492e-01 6.80355132e-01 5.21477051e-02\\n1.59599200e-01 -7.48544633e-02 9.12806317e-02 -1.27606601e-01\\n-9.67475325e-02 2.02053592e-01 8.97060707e-02 1.58364475e-01\\n-2.99857438e-01 -3.24041158e-01 -1.76518500e-01 1.73897550e-01\\n-4.07551467e-01 1.38561815e-01 -8.72857869e-02 -1.46169052e-01\\n2.94432759e-01 1.03343114e-01 -3.62105727e-01 2.29781941e-01\\n-2.01501116e-01 7.56594492e-03 -5.33736832e-02 4.63217854e-01\\n-1.95115134e-01 2.03369319e-01 3.49731073e-02 -2.21205391e-02\\n6.66948497e-01 3.38200182e-01 1.17670707e-01 2.31263749e-02\\n2.66580343e-01 -2.71575223e-03 2.14269355e-01 5.80774248e-02\\n-7.59289086e-01 3.65284413e-01 1.55970324e-02 -1.97686449e-01\\n5.90963326e-02 -9.50042233e-02 2.84486622e-01 -4.16169494e-01\\n-5.18031940e-02 -2.11864278e-01 -4.41584378e-01 -2.12039143e-01\\n-2.73039371e-01 1.43839624e-02 3.07349741e-01 -5.35399795e-01\\n-6.99087679e-02 3.00495446e-01 -5.63752651e-01 -2.14882940e-01\\n1.70416176e-01 3.03622931e-01 1.15070254e-01 5.40704578e-02\\n-7.48782679e-02 -6.79392278e-01 6.67964146e-02 -4.31898981e-01\\n-3.59579831e-01 -1.43316174e-02 -4.50412571e-01 2.13948086e-01\\n6.20485321e-02 4.17212211e-02 -1.09753035e-01 1.65961176e-01\\n-2.48744145e-01 -1.38504773e-01 1.11490592e-01 2.05052812e-02\\n3.02611202e-01 6.07155859e-02 -4.64979678e-01 4.30662125e-01\\n-2.81098306e-01 5.11593163e-01 1.85008258e-01 -7.57326186e-01\\n5.74034393e-01 3.37535799e-01 -9.99366492e-02 -4.42817807e-01\\n5.50441027e-01 -3.39149714e-01 -1.15464889e-01 5.64512089e-02\\n-3.20634305e-01 -3.06303531e-01 2.40475267e-01 -3.26777190e-01\\n-2.76131868e-01 4.50085253e-01 4.65395935e-02 1.02973126e-01\\n2.72129059e-01 -2.19907060e-01 -5.01147732e-02 6.58455640e-02\\n-7.29757920e-02 -2.17130125e-01 -4.91143376e-01 -3.91559079e-02\\n-3.90565358e-02 -4.26554710e-01 -8.78385678e-02 -4.46184009e-01\\n-1.93908229e-01 -4.06153977e-01 -1.88737169e-01 1.85721308e-01\\n2.46318460e-01 3.63205895e-02 1.24839339e-02 -3.16444822e-02\\n-1.89068869e-01 -6.94603801e-01 3.42434384e-02 1.10273719e-01\\n4.47300375e-01 1.93019032e-01 1.37744710e-01 -6.61570206e-02\\n1.21055312e-01 8.20595801e-01 -1.98637009e-01 -2.56368279e-01\\n1.20762415e-01 7.03201145e-02 7.16204941e-02 -1.56968191e-01\\n1.37659520e-01 3.55493516e-01 -3.32486242e-01 -4.54530641e-02\\n-1.08643413e-01 -1.61953300e-01 4.28994507e-01 -4.50886041e-03\\n-3.58219385e-01 -2.58688301e-01 -7.62887523e-02 6.36898950e-02\\n-5.80926001e-01 -1.99150175e-01 5.45143485e-01 2.65415907e-01\\n2.31855735e-01 1.17926307e-01 1.64546266e-01 -3.04037426e-02\\n-1.89089417e-01 -3.36750120e-01 2.76831359e-01 7.82701671e-02\\n6.05927221e-02 5.68566136e-02 1.70564018e-02 -6.60516083e-01\\n-3.07928133e+00 -1.36260435e-01 2.04543009e-01 -2.74991542e-01\\n1.91050038e-01 -1.05118133e-01 3.24771553e-02 -9.82534960e-02\\n-2.67867535e-01 1.35505736e-01 -1.01696119e-01 -1.93334833e-01\\n8.59103650e-02 1.48705438e-01 2.39607707e-01 1.04718499e-01\\n2.03483790e-01 -1.54805556e-01 -1.76227372e-03 3.25024307e-01\\n-1.30704090e-01 -6.79139614e-01 1.71775267e-01 -1.18264861e-01\\n3.35542530e-01 1.99890092e-01 -3.63701522e-01 -2.04560608e-01\\n-3.09739292e-01 -2.09116235e-01 1.51127940e-02 -3.46992493e-01\\n-1.23579942e-01 2.46115938e-01 1.91082001e-01 -1.80376664e-01\\n1.12678662e-01 -4.30446923e-01 -1.47436500e-01 -5.14610350e-01\\n9.26637650e-02 -5.87351799e-01 6.45765429e-03 -1.46780223e-01\\n7.23004282e-01 -3.28756422e-01 2.51842976e-01 4.21436690e-02\\n1.84404105e-01 1.31646618e-01 1.77398622e-01 -2.16096975e-02\\n-2.61649340e-01 -3.39562446e-01 -5.68366647e-02 -2.36328632e-01\\n6.20820045e-01 5.02843976e-01 -2.34211728e-01 1.68539421e-03\\n5.83029352e-02 -3.73863041e-01 -3.79948556e-01 -2.51776069e-01\\n-1.03984557e-01 -2.88192630e-01 -5.92338860e-01 -4.39090133e-01\\n-1.99536726e-01 2.05398947e-02 -2.09143851e-02 5.99308193e-01\\n-1.99688837e-01 -3.59549403e-01 3.71728390e-02 -5.83014250e-01\\n2.70767689e-01 -1.94168940e-01 7.62940794e-02 -2.17999488e-01\\n-2.01216474e-01 -5.55336356e-01 4.19292673e-02 -1.34545371e-01\\n-5.63517213e-02 -2.84844607e-01 -3.22182290e-02 -5.24639934e-02\\n-2.52541602e-01 -4.98524815e-01 4.01998371e-01 1.40139192e-01\\n3.65950167e-01 1.13092780e-01 3.14593226e-01 -7.91940540e-02\\n2.85575092e-01 -1.01126945e-02 1.27692074e-01 -4.00050700e-01\\n7.50818998e-02 6.88411221e-02 4.92206573e-01 -1.99832082e-01\\n8.79143178e-02 1.14784412e-01 -2.99478799e-01 -1.30216449e-01\\n3.41384590e-01 -1.84303466e-02 -9.10376722e-04 -2.55819317e-02\\n2.81386167e-01 -3.75699550e-01 -2.20978394e-01 5.63926548e-02\\n1.11726739e-01 6.29562736e-01 -7.38921240e-02 -3.61767173e-01\\n-1.50198326e-01 5.49922049e-01 -6.29680678e-02 3.74586135e-02\\n-7.85078034e-02 8.07458013e-02 -2.23857969e-01 2.64670968e-01\\n5.98244555e-02 -2.92934418e-01 -2.77020276e-01 -1.58345506e-01\\n3.21874022e-02 2.88698405e-01 1.94495127e-01 5.37030026e-02\\n1.69680326e-03 -4.04658556e-01 -8.22796971e-02 2.21844509e-01\\n2.03910291e-01 4.42292601e-01 8.61155540e-02 -2.13491425e-01\\n-5.57508580e-02 4.79698181e-01 -1.64071262e-01 2.69057572e-01\\n-1.97141424e-01 9.52728316e-02 -5.15679836e-01 -2.45657250e-01\\n-3.22022200e-01 -3.71634990e-01 1.93703368e-01 3.49903047e-01\\n7.76421353e-02 4.56004776e-02 2.01864983e-03 -4.83336985e-01\\n2.80215442e-01 1.12315468e-01 2.08314106e-01 1.22792087e-01\\n-8.20273906e-02 5.79760373e-01 3.24717499e-02 -5.08821942e-02\\n-2.39353120e-01 1.13580570e-01 -1.14677094e-01 -1.93785697e-01\\n1.23440668e-01 -5.38683772e-01 -1.38539299e-01 3.60751271e-01\\n1.24218032e-01 -2.41286412e-01 -1.84318155e-01 2.92224586e-01\\n-6.73509091e-02 -2.53834635e-01 -2.27760807e-01 -4.76558469e-02\\n3.96245092e-01 1.05850078e-01 2.44866207e-01 -4.22976792e-01\\n2.05802731e-02 3.16218771e-02 -1.43547226e-02 4.22730148e-01\\n-1.71101075e-02 1.29679842e-02 -1.20946005e-01 -2.43411556e-01\\n4.93974090e-01 2.66678631e-02 -9.43832770e-02 1.07316479e-01\\n1.14340901e-01 -2.69126475e-01 -4.78230238e-01 -1.83768501e-03\\n6.10399842e-02 -1.26717374e-01 1.39015108e-01 8.91534984e-02\\n6.47467896e-02 2.45339144e-02 -4.89231169e-01 -2.13751778e-01\\n-2.41733104e-01 -5.25473431e-02 8.90705511e-02 -4.27102387e-01\\n-1.28822297e-01 -8.90454352e-02 -5.10802388e-01 2.21324235e-01\\n-2.87056953e-01 -3.76962796e-02 2.15834185e-01 6.72568679e-02\\n-2.09871203e-01 -9.88579616e-02 1.56540453e-01 3.48584861e-01\\n-3.25046778e-01 -2.82673597e-01 7.45313913e-02 -1.01789093e+00\\n2.13743508e-01 4.56102900e-02 -1.55562028e-01 1.86216429e-01\\n-3.99098545e-02 -6.89056277e-01 1.72192335e-01 -4.02195692e-01\\n-5.65077178e-02 -7.54329488e-02 -2.22990453e-01 -2.01319993e-01\\n1.76147789e-01 -9.39187557e-02 -3.54897320e-01 4.24434870e-01\\n-3.25181097e-01 3.02044421e-01 -2.01269343e-01 3.35145444e-02\\n-7.22902939e-02 -1.49711028e-01 1.56923294e-01 -3.07342172e-01\\n-3.89001220e-01 -2.93077677e-01 -3.21712136e-01 -2.22281530e-01\\n6.21619113e-02 -3.82596821e-01 -5.76206334e-02 4.63966280e-02\\n5.10748148e-01 8.87594223e-02 -1.10826522e-01 -2.57768571e-01\\n1.46319307e-02 -4.75860626e-01 1.25647308e-02 -1.62303537e-01\\n-1.24252543e-01 -1.23974390e-01 1.82830751e-01 1.87634900e-01\\n1.35423243e-01 -5.11440337e-01 3.18530381e-01 -2.70976335e-01\\n-3.25612277e-01 -9.84951034e-02 5.77368364e-02 9.12609398e-02\\n3.62453222e-01 -4.62031066e-01 -4.99801338e-02 2.84197778e-01\\n1.41021430e-01 1.02387734e-01 2.26282150e-01 -2.20260210e-02\\n5.47817759e-02 2.36834422e-01 -4.02780563e-01 -3.49529125e-02\\n7.28735864e-01 6.36048317e-02 1.15245074e-01 2.95333892e-01\\n1.85252503e-01 2.47042060e-01 4.55743581e-01 -5.11097312e-02\\n-2.18262132e-02 1.85932666e-01 3.15329619e-02 -4.92577523e-01\\n-8.17644522e-02 -3.12537067e-02 -2.31141374e-01 -4.03899044e-01\\n6.45071983e-01 3.74137402e-01 -4.41730797e-01 -3.31220478e-01\\n-6.60742223e-02 -1.72294557e-01 2.29084805e-01 -3.09711043e-02\\n4.13585752e-02 -1.02447808e-01 3.47379178e-01 -8.83611515e-02\\n1.95212439e-01 6.36070848e-01 -1.72376364e-01 -3.08130860e-01\\n-1.36338130e-01 1.54107779e-01 -2.84463987e-02 4.89341855e-01\\n-3.37848395e-01 2.51304418e-01 2.76741106e-02 1.54452650e-02\\n-4.97861356e-02 2.47311175e-01 9.70601439e-02 9.09015536e-02\\n2.34690502e-01 7.73711037e-03 3.79537553e-01 5.72275221e-01\\n1.76239148e-01 4.32909101e-01 3.31621319e-01 3.40414606e-02\\n3.96334589e-01 5.77271402e-01 4.54982519e-01 1.50337741e-01\\n-3.17969918e-02 1.48689970e-01 7.57291541e-02 -1.28129736e-01\\n4.21068937e-01 3.50408405e-01 1.12657823e-01 9.19663668e-01\\n3.82002026e-01 3.76989096e-01 7.07433760e-01 -7.12125480e-01\\n-4.20664757e-01 1.46591654e-02 5.99066019e-01 -4.36608076e-01\\n6.86650351e-02 1.36931196e-01 -1.71794161e-01 3.37077260e-01\\n-4.96647477e-01 -2.04845399e-01 1.44012654e-02 3.19488980e-02\\n-4.25091246e-03 -8.02719370e-02 -2.50780493e-01 2.59769950e-02\\n-1.50735885e-01 -5.72400168e-02 -4.78805929e-01 -1.38075545e-01\\n-1.54214069e-01 -4.13403427e-03 -5.40589243e-02 -2.15688750e-01\\n1.38140293e-02 -2.37362400e-01 -5.31846620e-02 -1.01747744e-01\\n3.10975015e-01 -1.91179052e-01 -5.38796932e-03 -1.46132916e-01\\n2.99586833e-01 1.75029308e-01 5.59096694e-01 4.66897599e-02\\n1.29685640e-01 -2.11708397e-01 -2.73740321e-01 9.53275338e-02\\n1.37150571e-01 1.07840657e-01 4.53513041e-02 1.82484195e-01\\n-2.41997555e-01 -1.58939764e-01 1.47235051e-01 3.35812151e-01\\n-4.67892677e-01 2.51869555e-03 -1.16797432e-01 1.01557821e-01\\n6.62344098e-02 1.12400115e-01 -1.95465058e-01 -5.14276363e-02\\n-1.72580302e-01 -4.18463498e-01 3.72841954e-01 -1.69517606e-01\\n-2.11953759e-01 5.89743443e-02 3.09473425e-01 1.87666088e-01\\n-3.02863181e-01 -8.14485699e-02 -1.68710276e-01 1.27660379e-01\\n1.31128252e-01 2.06666306e-01 -1.34282395e-01 -3.07062209e-01\\n-3.01935047e-01 6.54495880e-02 -1.54230207e-01 9.62111428e-02\\n4.46040519e-02 4.56519783e-01 -3.60696353e-02 -6.11511432e-02\\n4.58282471e-01 3.95893641e-02 -3.27029467e-01 -1.56432047e-01\\n-2.33172983e-01 -1.71896622e-01 1.05248708e-02 -2.92119868e-02\\n1.34704441e-01 -4.27240282e-01 -9.03581455e-02 -1.77082211e-01\\n-3.39127742e-02 -3.07589471e-01 3.26588051e-03 -1.20717153e-01]]',\n", + " \"42matters.com is a Swiss company operating in the mobile app space. We offer a full suite of products and services for App Market Data and Mobile App Intelligence. Bringing a unique combination of technical and business skills together, we provide our customers with a thorough analysis of the latest developments on the app stores and mobile industry. We are a truly international team, with an innovative and fast-paced company culture. As a Data Engineer, you are someone who is passionate about processing large data sets. You will be responsible for building and maintaining data pipelines to support our products and our Data Science team. You will contribute to the entire stack, working with DevOps on maintenance and tuning, alongside collaborating with Data Scientists to build applications and algorithms. To thrive as a member of team 42matters, you must embrace our exciting work-hard, play-hard environment. We're not afraid to move fast and break things as we release, launch, iterate, update and announce; sometimes all in the same day. We're a closely-knit team and, especially at the end of a long day over beers, we feel like we're inventing the future together. Job type: Full-time Location: Zurich Starting date: As soon as possible RESPONSIBILITIES Write data pipelines to extract, transform and load (ETL) data automatically, using a variety of traditional as well as large-scale distributed technologies. Extend and optimize the current system by making the enormous amounts of data accessible for both our data scientists and our products. Help to build a reliable, sustainable and scalable data infrastructure. Requirements 3+ years of work experience as a Data Engineer. Strong experience with big data technologies on Amazon Web Services (e.g. Redshift, EC2, MapReduce, Spark). Strong knowledge of Python programming language. Familiar working with relational data stores (e.g. PostgreSQL, Redshift). Good abilities in DevOps. Fluent English. Ability to work autonomously but also be a strong team player. Self-motivated, team player comfortable in a small, intense and high-growth start-up environment. PREFERRED QUALIFICATIONS Strong educational background: Bachelor/Master degree in CS or other technical/science/math field Proficiency in more than one programming language (Java, Python, Bash). Strong SQL skills and the ability to write and analyze complex SQL queries. Experience designing data models and data warehouses. Ability to identify and resolve performance issues. \",\n", + " '[\"Self-Motivation\", \"Writing\", \"Collaboration\", \"Operations\", \"Team Motivation\", \"Reliability\", \"Innovation\"]',\n", + " '[\"Accessioning\", \"KM Programming Language\", \"Sustainability\", \"Data Modeling\", \"Data Engineering\", \"Industrialization\", \"Scale (Map)\", \"Mobile App\", \"MapReduce\", \"PostgreSQL\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Data Pipeline\", \"Iterators\", \"Extract Transform Load (ETL)\", \"Mobility\", \"Minimum Data Set\", \"App Store (IOS)\", \"Data Science\", \"Web Services\", \"Bash (Scripting Language)\", \"Big Data\", \"Amazon Web Services\", \"Data Store\", \"Clinical Data Warehouse\", \"Data Infrastructure\", \"Experience Design\", \"Algorithms\", \"Amazon Data Pipeline\", \"Market Data\", \"Amazon Redshift\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " \"['English', 'Aymara']\"],\n", + " ['115',\n", + " 'software engineer iptiq emea l&h',\n", + " 'Zürich',\n", + " 'Insurance Agencies & Brokerages',\n", + " 'www.swissre.com',\n", + " '[[-0.16013445 0.22569531 0.6324923 0.0093284 0.5381161 -0.15063666\\n0.02804223 0.22192875 0.0804841 -0.5566739 -0.05377465 -0.22114146\\n-0.0635557 0.15569699 0.07420799 0.4024698 0.35071748 0.04559055\\n-0.17357785 0.36030537 -0.05258026 -0.13976526 0.17141452 0.8126224\\n0.39405257 -0.05420893 0.02658164 0.0669645 -0.18605134 -0.16940922\\n0.61019754 0.04421813 -0.26045662 -0.49868867 0.14402446 0.1133811\\n-0.3265548 -0.07206324 -0.19434878 0.1366287 -0.5640813 -0.20671928\\n-0.00484867 -0.11940594 -0.2566663 -0.4276902 -0.09391475 -0.12914988\\n0.21712852 0.09122949 -0.5167943 0.13234454 -0.43572438 -0.18555266\\n0.3473823 0.64281857 -0.01877485 -0.51746744 -0.58717346 -0.31216794\\n0.05296207 -0.14169925 0.04470246 -0.3586021 0.20672527 0.00513785\\n-0.06634439 0.32732528 -0.78683954 -0.10825328 -0.3622216 -0.12849367\\n-0.39812824 -0.13340186 -0.39907455 -0.10162166 -0.24909116 0.43582568\\n0.132881 0.05161656 -0.17402288 0.3722129 -0.34263194 0.48173034\\n0.28077042 0.26178318 0.2645293 0.407089 -0.39901644 0.60142374\\n0.28084603 -0.39879245 0.2519967 0.14626864 0.35663164 0.0199902\\n0.3638214 0.05232989 -0.21968359 0.35149288 0.37217534 -0.1669535\\n-0.05630765 -0.30762923 0.00977344 -0.01739726 0.05714284 0.09921033\\n-0.3436755 0.35215402 0.07392196 -0.2615611 -0.20392063 -0.38403392\\n-0.12568156 0.1104831 -0.03981927 0.130726 0.15037507 0.09968171\\n0.2939635 0.05092125 0.0480513 0.8383652 -0.06602217 -0.00972072\\n-0.3147748 0.41917026 0.09688261 -0.25703558 0.22176698 0.17896798\\n-0.21078846 -0.18107401 -0.29519355 0.42146087 0.00450771 -0.22707087\\n-0.27705064 0.23537846 0.02504312 -0.40808925 0.653803 0.00907745\\n0.17120449 -0.0867567 0.14699079 -0.06369095 -0.01400576 0.06371022\\n0.09028128 0.02925777 -0.15305611 -0.24966249 -0.2782688 0.15637854\\n-0.35522842 0.25771683 -0.20717666 -0.09271187 0.1781751 0.03062406\\n-0.2981939 0.18425421 -0.12160124 0.05446175 0.06502359 0.48255816\\n-0.21363288 0.08157681 0.05503492 -0.16622514 0.5736625 0.17721191\\n0.26463193 0.03931585 0.30628657 0.03197074 0.03622271 0.10854442\\n-0.77321416 0.3573644 -0.02368134 -0.09357305 0.06378625 -0.23908003\\n0.15491968 -0.2522272 -0.14073934 -0.09421994 -0.43916798 -0.2532613\\n-0.06951328 -0.21427104 0.3185327 -0.64268804 -0.06692332 0.20854887\\n-0.6760795 -0.16730264 0.15824308 0.30428874 0.03057984 0.09509704\\n-0.22778475 -0.49636096 0.06770271 -0.49541703 -0.30820942 0.12206858\\n-0.3004557 0.09221523 0.09849553 0.04281051 -0.10593906 0.01366595\\n-0.19553773 -0.03658759 0.09230068 0.01350832 0.24786624 0.12695242\\n-0.32523236 0.4795437 -0.21530142 0.48865807 0.06208376 -1.0141566\\n0.6021327 0.31790122 -0.06770398 -0.29719913 0.41510794 -0.3965518\\n-0.05750413 0.12294842 -0.3778852 -0.2775185 0.15396163 -0.28327\\n-0.24703422 0.34905678 -0.01761276 0.13682309 0.30852357 -0.21486424\\n-0.243568 -0.01676573 -0.14107007 -0.22038767 -0.7448733 -0.14908151\\n-0.12331474 -0.3887121 -0.12026404 -0.54146755 -0.1858001 -0.33976147\\n-0.25853744 0.09848069 0.16770257 0.0632818 -0.0815158 0.09296314\\n-0.09039203 -0.68518585 -0.06439137 0.1128249 0.22259352 0.18818715\\n0.11566081 0.06957845 0.07998963 0.66875434 -0.18705809 -0.1860685\\n0.24124813 0.28704306 0.00799356 -0.10846223 0.09541228 0.33870882\\n-0.3641743 -0.01941412 0.10707999 0.06003562 0.5392841 -0.07175145\\n-0.42407453 -0.01981154 -0.07469543 0.10141239 -0.64646316 -0.1165273\\n0.69823015 0.1545197 0.10505688 0.2405594 0.08883108 -0.03347543\\n-0.25282767 -0.19056109 0.4210915 0.12550277 0.14556864 0.18055618\\n0.05195802 -0.6311406 -3.081627 -0.1283467 0.11716287 -0.07776258\\n0.24527021 -0.20968121 0.13600793 -0.20074566 -0.31327087 0.01506016\\n-0.05316637 -0.17916 0.18526715 0.11917259 0.02193177 0.28071046\\n0.25740469 -0.1015265 0.05021273 0.26707208 -0.12241758 -0.81380516\\n0.1583159 0.00816396 0.17814791 0.05138441 -0.37223655 -0.13103151\\n-0.35106757 -0.10924783 0.07986216 -0.40065467 -0.08894084 0.13866593\\n0.22593346 -0.15557577 0.08142647 -0.42611378 -0.2775317 -0.53003216\\n0.20126998 -0.51322544 0.17369011 -0.09812284 0.61196804 -0.34422588\\n0.17633726 0.10492297 0.15324688 0.22975972 0.23025535 0.05007998\\n-0.24972597 -0.33091235 -0.1701434 -0.10267623 0.61977315 0.36141425\\n-0.10096284 0.10670355 0.05966059 -0.2331739 -0.5349126 -0.22021344\\n-0.04346237 -0.08657146 -0.6467296 -0.51393414 -0.24589428 -0.12970239\\n-0.08622187 0.6962105 -0.26699084 -0.20531073 -0.1463249 -0.5831491\\n0.4802823 -0.19844246 0.06776978 -0.29828995 -0.17425182 -0.5371694\\n0.13849473 0.04670556 0.02974892 -0.16454256 0.19963542 -0.02383537\\n-0.2708159 -0.5471761 0.3928965 0.2516849 0.3171095 0.12576966\\n0.24436723 -0.12214725 0.22957903 0.01402971 -0.21181291 -0.37168694\\n0.0811003 0.07606825 0.3674984 -0.05019451 -0.09716113 0.1549606\\n-0.2530123 -0.1372352 0.3550142 -0.14896688 0.10341606 -0.12537394\\n0.2873585 -0.23056783 -0.17599878 -0.0532253 0.06095642 0.6800467\\n0.06081703 -0.43761712 0.03754508 0.54194343 0.08056065 0.03575584\\n-0.23201953 0.04096289 -0.22721481 0.34851074 0.01121191 -0.22587857\\n-0.17866373 -0.19733056 -0.13480324 0.345998 0.21853667 0.12043013\\n0.02644263 -0.31951317 -0.14485547 0.24324805 0.19145188 0.54552203\\n0.24733266 -0.2751147 0.04460098 0.35668653 -0.21056437 0.23678058\\n-0.34104759 0.14459226 -0.5142007 -0.21468142 -0.2582834 -0.4393332\\n0.15578938 0.36023808 0.0912687 -0.15416221 0.0912361 -0.5028437\\n0.24647024 0.31486398 0.13142335 0.18981326 -0.01143549 0.82554036\\n-0.02524091 -0.2450667 -0.1700413 -0.01808267 -0.22026308 -0.19436356\\n0.0131777 -0.6058825 -0.08199731 0.39627188 0.10237826 -0.21943909\\n-0.23501423 0.32967526 -0.00364209 -0.12037507 -0.3365658 -0.04569908\\n0.43356857 0.04168545 0.27158183 -0.5670419 -0.01895915 -0.02852984\\n0.10061146 0.6469649 0.11711884 0.08525299 -0.16700143 -0.24209073\\n0.33992875 -0.11298209 -0.20078577 0.05365457 0.1889652 -0.05202819\\n-0.3996982 0.10855186 -0.1001902 -0.2913378 0.05911896 0.2432932\\n0.01971641 0.14239292 -0.6830838 -0.3055412 -0.25487846 0.16684622\\n-0.00665429 -0.59992397 -0.01541862 -0.14597997 -0.45903403 0.2310698\\n-0.04988953 -0.30240905 0.2864958 0.13950919 -0.3069916 -0.10557632\\n0.1367812 0.22697711 -0.30555403 -0.2837118 -0.11507441 -0.95683044\\n0.28167176 0.07258306 -0.25268692 0.27544135 -0.03730151 -0.7137953\\n0.10189239 -0.3025553 -0.20895764 0.0165339 -0.26404715 -0.36059865\\n0.06258297 -0.01737979 -0.15570256 0.43387073 -0.38439894 0.4781201\\n-0.2735098 0.0352231 0.02533549 -0.31223714 0.17834967 -0.43766588\\n-0.39671534 -0.2996428 -0.36842722 -0.34175605 -0.01124634 -0.44870952\\n-0.09127378 -0.06817497 0.56492937 0.13606751 -0.1400832 -0.19298841\\n0.0139726 -0.44665563 0.04117493 -0.14176124 -0.09738734 -0.19947115\\n0.21778451 0.13756384 0.28400087 -0.47293845 0.3367325 -0.33220202\\n-0.34243086 -0.23844784 0.09158944 0.2176717 0.36617756 -0.47864392\\n-0.01937048 0.28571653 0.17911117 -0.02081473 0.27840793 -0.17211673\\n-0.01493381 0.27509218 -0.30517408 0.24044263 0.6775731 0.08980174\\n0.2403217 0.27485448 0.26281542 0.29313517 0.42540127 -0.00516532\\n-0.03439115 0.28897023 0.12682307 -0.41001284 -0.069356 -0.0820428\\n-0.08815394 -0.38286322 0.7096766 0.40364543 -0.42673922 -0.11556775\\n-0.2956983 -0.3125646 0.13663779 -0.05662314 -0.10298808 0.05792071\\n0.38164866 -0.14711449 0.2562728 0.62503755 -0.36950028 -0.27002478\\n-0.16774127 0.30325148 -0.01144586 0.44140142 -0.2789078 0.40553102\\n0.09945858 0.13423295 -0.1858715 0.03612029 0.06808963 0.12924291\\n0.30012578 -0.06560097 0.4541993 0.4227412 0.32304925 0.38507473\\n0.34188455 0.08855829 0.5232739 0.6083925 0.44842845 0.11167987\\n0.10293694 0.07394881 0.15695551 0.03637059 0.2800699 0.5044471\\n0.01594558 0.8973056 0.32786474 0.29364562 0.6607263 -0.7320093\\n-0.3230073 -0.02565218 0.4902855 -0.41587403 0.1842958 0.23208293\\n-0.18154085 0.28503093 -0.37801886 -0.26306102 0.07145222 0.27663648\\n0.08543089 -0.19616826 -0.13253435 0.12097526 -0.2487054 -0.14608598\\n-0.36596775 -0.06776987 -0.29512188 -0.01710189 -0.04259263 -0.16281095\\n-0.04752951 -0.2427069 -0.0629724 -0.02904047 0.3292541 -0.11305804\\n-0.10725418 -0.09259688 0.2707351 0.03973428 0.5765066 0.05632727\\n0.07062726 -0.20020807 -0.19021964 0.15924925 0.16616696 0.10787661\\n0.02068041 0.32434893 -0.20018832 -0.23230952 0.27139422 0.28753123\\n-0.3172104 -0.02308438 -0.21542422 0.12829441 -0.02174878 0.22059989\\n-0.22172804 -0.11814848 -0.10398397 -0.50562686 0.39507186 -0.29421997\\n-0.15330392 -0.08005292 0.29164767 0.3118668 -0.28548992 0.05173009\\n-0.06569502 0.08745544 0.13454048 0.24019808 -0.24229437 -0.16081002\\n-0.23639451 0.13946804 -0.12286778 0.21028614 0.19049786 0.39571697\\n0.22189674 0.0309509 0.40308183 -0.05175998 -0.22418468 -0.18241107\\n-0.27678344 -0.04288498 -0.08565736 -0.15285426 0.18129054 -0.36927295\\n-0.1356483 -0.233388 -0.0831958 -0.41842946 -0.08858338 -0.03124702]]',\n", + " 'About iptiQ

Become a part of a growing and dynamic entrepreneurial team within the established Swiss Re Group. iptiQ is a start-up unit, established to provide innovative protection solutions directly to consumers. Our team delivers the coordination, infrastructure and competences that are key to driving forward this new business; working closely with our partners and clients. Our mission is to reduce the protection gap by simplifying life insurance and making it more accessible to people. Our motto is \"now life is easier for everyone\". For us this means making life insurance easier to sell, to buy and to trust. About the Role You will join a team of software engineers for the technology platform within the iptiQ EMEA Technology & Operations department. This is a rare opportunity to join a new business unit within an established company; combining the dynamic spirit of a startup with the backing of Swiss Re\\'s strong organisation. As a software engineer, you will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a distributed infrastructure by designing, implementing and testing simple, scalable, reliable and configurable solutions. Your responsibilities include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability Optimise applications and components to maximize configurability, speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications End-to-end responsibility on the applications implemented, including automated testing, monitoring, identifying issues or bottlenecks and delivering improvements of the platform We are looking forward to working with you as a software engineer. You will report directly to the Head of Digital Innovation of iptiQ EMEA. About the Team iptiQ is a unit within the newly built Swiss Re Life Capital; established to deliver white-label life insurance solutions to be sold through partners, directly to consumers. iptiQ is young, motivated and technology driven team, organised to provide creative solutions for life insurance distributors across Europe that engage with consumers in non-traditional ways. Through our strong operational infrastructure, creative thinking, insurance know-how and ecommerce competences we want to drive the digitalization of the life insurance business in Europe. About you Qualifications: Proven software development capabilities, i.e. 5+ years hands-on experience as a full-stack developer. Experienced in the following languages and frameworks: Mandatory: Enterprise Java Desirable: JavaScript, TypeScript, Docker, React Optional: Camunda, Kafka, RestAssured, WireMock, OpenShift, AWS Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality over time You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience in the design of data-models for relational and NoSQL data stores Experience in test-drive-development (TDD) and in the automated testing of APIs and user interfaces About you: Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Open to pair programming and XP techniques Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long-term vision the adoption of new technologies Master’s degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re',\n", + " '[\"Complex Problem Solving\", \"Leadership\", \"Coordinating\", \"Collaboration\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " '[\"Disabilities\", \"Camunda\", \"Performance Improvement\", \"OpenShift\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Accessioning\", \"Computer Science\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Automated Testing Framework\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"TypeScript\", \"Scale (Map)\", \"New Business Development\", \"Wiremock\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Test Automation\", \"Library\", \"Iterators\", \"Software Engineering\", \"Micro Channel Architecture\", \"React.js\", \"Message Passing\", \"Docker (Software)\", \"Concurrent Versions System (Software)\", \"Business Process\", \"Life Insurance Sales\", \"Equalization\", \"Digitization\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Scalability\", \"Information Technology Operations\", \"White Labelling\", \"Software Development\", \"Algorithms\", \"Java Enterprise Edition\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Pair Programming\", \"User Interface\", \"RESTful API\"]',\n", + " \"['English']\"],\n", + " ['97',\n", + " 'paid internship in information technology - data scientist -switzerland, 6 months (m/f)',\n", + " 'Geneva',\n", + " '',\n", + " 'www.pg.com',\n", + " '[[-1.46625876e-01 2.97089696e-01 5.98815024e-01 5.52584045e-02\\n6.63380027e-01 5.05736098e-03 4.31522243e-02 2.83696324e-01\\n5.46164811e-05 -3.58041972e-01 1.07462779e-02 -2.28334308e-01\\n-3.17019373e-02 2.05632702e-01 1.95266500e-01 5.14388084e-01\\n2.72215247e-01 6.76571280e-02 -1.62535056e-01 4.03577745e-01\\n8.36891234e-02 -1.76670998e-01 1.46190464e-01 7.74135113e-01\\n5.82006931e-01 1.19468421e-02 -1.48957238e-01 3.10910121e-02\\n-2.50926822e-01 -2.35392228e-01 4.49550807e-01 1.04054168e-01\\n-2.38533258e-01 -3.36627632e-01 1.50475189e-01 7.38798529e-02\\n-3.67153525e-01 -7.34119341e-02 -1.45952046e-01 2.00175762e-01\\n-4.50292140e-01 -2.15128899e-01 -9.07714441e-02 2.74249017e-02\\n-3.05803537e-01 -3.77696753e-01 -1.83832064e-01 -4.45742644e-02\\n2.35005468e-02 7.14937001e-02 -3.84729803e-01 3.83611172e-01\\n-9.96154994e-02 -3.55441809e-01 1.70554936e-01 7.75690913e-01\\n3.60512547e-02 -3.82699996e-01 -4.66619432e-01 -3.58019590e-01\\n5.00244498e-02 -1.18224978e-01 2.10219175e-01 -2.97615707e-01\\n2.49363601e-01 -6.19977452e-02 9.08441190e-03 2.49283105e-01\\n-7.74306417e-01 -8.10025558e-02 -3.50942314e-01 -3.44854370e-02\\n-2.63833225e-01 4.28281724e-04 -4.77425992e-01 -1.77426815e-01\\n-4.91471179e-02 4.59216475e-01 1.73763677e-01 8.12058672e-02\\n-1.47140831e-01 1.75030917e-01 -2.15033948e-01 2.82546192e-01\\n1.45197511e-01 3.42268765e-01 2.76879787e-01 3.44273150e-01\\n-3.22444350e-01 3.64846021e-01 2.07499027e-01 -3.66537750e-01\\n3.12495232e-01 1.94600195e-01 4.33068842e-01 -2.06331871e-02\\n1.31348819e-01 9.49978679e-02 -2.88555801e-01 2.75159001e-01\\n1.73106253e-01 -3.75627130e-01 1.27045780e-01 -6.62551075e-02\\n-5.30463196e-02 8.75604525e-03 1.43937515e-02 6.98049143e-02\\n-3.27641428e-01 4.67955828e-01 -2.47577261e-02 -2.06768572e-01\\n-1.28039673e-01 -4.07353073e-01 -6.75275698e-02 -1.35964155e-02\\n-2.02514641e-02 3.33678365e-01 2.09505290e-01 1.76706225e-01\\n9.33874995e-02 -1.10308509e-02 1.15899965e-01 7.80142188e-01\\n-3.72556597e-02 8.78705978e-02 -2.43952289e-01 2.38540158e-01\\n2.13185579e-01 -2.48349726e-01 2.22224861e-01 1.78140461e-01\\n-4.17644083e-02 -1.19771257e-01 -2.71934420e-01 2.26071075e-01\\n-3.93532291e-02 -2.98456430e-01 -1.22461766e-01 2.15724915e-01\\n-3.12453546e-02 -5.93349516e-01 6.23180211e-01 -6.00920711e-03\\n1.74817964e-01 -1.53801233e-01 -8.74667987e-03 -7.88041055e-02\\n-3.92587446e-02 1.78148687e-01 5.46641387e-02 2.29622722e-01\\n-2.64808416e-01 -2.60687411e-01 -1.93305671e-01 1.11035876e-01\\n-5.14232397e-01 1.31877095e-01 -9.71325934e-02 -5.85907474e-02\\n1.97940797e-01 9.89877284e-02 -3.39746445e-01 2.64409065e-01\\n-1.99533522e-01 -1.75205648e-01 5.06825671e-02 4.54981089e-01\\n-2.98453212e-01 1.73153609e-01 3.02604809e-02 -1.45189315e-01\\n5.76241016e-01 2.69048870e-01 2.98345447e-01 5.83518222e-02\\n3.04198146e-01 -5.25966510e-02 9.29361507e-02 1.93861246e-01\\n-5.72419167e-01 3.68082583e-01 -1.84971407e-01 -2.90293515e-01\\n5.90719581e-02 -1.57388046e-01 3.55120540e-01 -2.30196908e-01\\n1.07912645e-01 -1.03712857e-01 -2.83419400e-01 -2.50865996e-01\\n-8.93106982e-02 8.74926895e-03 3.41615915e-01 -5.10797858e-01\\n3.15235667e-02 2.08735704e-01 -4.91805196e-01 -1.11982219e-01\\n1.20349154e-01 1.47516891e-01 8.50317720e-03 6.21916428e-02\\n-1.49881989e-01 -5.08829892e-01 -8.51720572e-03 -4.26416397e-01\\n-2.44404584e-01 5.41032106e-02 -3.79858851e-01 1.46746904e-01\\n8.54083821e-02 -7.63888843e-03 -1.31499872e-01 -1.75580662e-02\\n-2.43993342e-01 2.91733705e-02 4.59788516e-02 4.37083542e-02\\n1.94412410e-01 1.02460295e-01 -3.46118927e-01 4.83212531e-01\\n-2.63057172e-01 5.13956189e-01 1.93336755e-01 -9.28895354e-01\\n4.58037764e-01 1.99196383e-01 -2.73814946e-02 -3.12786549e-01\\n5.66497087e-01 -4.03608382e-01 -5.83759993e-02 2.07428142e-01\\n-2.47247845e-01 -2.88090110e-01 1.97575137e-01 -2.42127806e-01\\n-2.56387502e-01 4.97271359e-01 1.24795869e-01 1.70185894e-01\\n2.17580035e-01 -1.30556300e-01 -1.13175049e-01 9.42278802e-02\\n-2.03288078e-01 -2.46712834e-01 -6.38752759e-01 5.88763282e-02\\n-9.35888365e-02 -3.85042250e-01 -4.00742963e-02 -4.26307529e-01\\n-1.89873621e-01 -4.25766468e-01 -1.52606875e-01 1.03556961e-01\\n3.27954054e-01 1.92350075e-01 -3.72943953e-02 -1.26396656e-01\\n-3.67903337e-02 -6.43004119e-01 -1.35628700e-01 1.07975513e-01\\n4.16285336e-01 1.96093351e-01 1.97558045e-01 -4.68288623e-02\\n2.13901460e-01 6.62105620e-01 -2.02041864e-01 -3.02116960e-01\\n1.94451243e-01 1.33849382e-01 -1.59646291e-02 -1.56211421e-01\\n1.29034147e-01 2.59791553e-01 -2.90636390e-01 7.41391554e-02\\n-4.86015007e-02 4.76026535e-02 3.81776571e-01 1.57405958e-02\\n-2.13094845e-01 -2.35063344e-01 -5.05603068e-02 1.80122048e-01\\n-5.30554771e-01 -2.05156893e-01 6.16245389e-01 6.68901131e-02\\n9.75368321e-02 6.81096315e-02 3.40779871e-02 -1.02391634e-02\\n-1.38622478e-01 -1.73848212e-01 2.88696051e-01 7.95263499e-02\\n1.93889961e-01 1.01825446e-01 8.15253332e-02 -5.93242049e-01\\n-3.59176254e+00 -2.48596728e-01 3.81323993e-02 -1.66917682e-01\\n2.47269541e-01 -2.57904112e-01 8.75673071e-02 2.83037685e-02\\n-3.33868563e-01 1.42402589e-01 -2.11599514e-01 -2.06320465e-01\\n4.32894640e-02 1.23296291e-01 1.65230855e-01 1.99653119e-01\\n1.76120371e-01 -2.06816360e-01 -5.53095788e-02 5.16425669e-01\\n-1.50242686e-01 -6.90240443e-01 1.67507827e-01 7.63816684e-02\\n2.93795586e-01 1.34509757e-01 -3.26899260e-01 -1.29727662e-01\\n-3.15243065e-01 -1.80568129e-01 3.68714780e-02 -2.64436841e-01\\n-1.99155122e-01 3.90549362e-01 1.89543426e-01 -6.54361248e-02\\n1.08399168e-01 -3.96811515e-01 -9.94347185e-02 -3.82092357e-01\\n4.89588119e-02 -6.64116263e-01 -9.30344388e-02 -8.53366628e-02\\n7.15531588e-01 -1.71126708e-01 2.34689236e-01 1.68843389e-01\\n1.12720951e-01 1.33092115e-02 9.35156569e-02 -3.94485667e-02\\n-1.67037755e-01 -2.84408867e-01 -3.53569612e-02 -1.43924683e-01\\n5.60148001e-01 4.11696374e-01 -1.35116488e-01 -1.00722071e-02\\n1.24426112e-01 -1.34410173e-01 -5.08586526e-01 -3.38261008e-01\\n-1.67830929e-01 -1.66109636e-01 -7.41971791e-01 -5.14543295e-01\\n-1.54742867e-01 -1.34314358e-01 -1.57274857e-01 5.45019209e-01\\n-1.79529369e-01 -2.11379528e-01 -1.31653517e-01 -3.18932980e-01\\n3.24488401e-01 -4.58307452e-02 -5.60571104e-02 -1.34983733e-01\\n-2.93032020e-01 -5.28362989e-01 9.22956765e-02 4.87315357e-02\\n-1.90210760e-01 -2.72065759e-01 9.48319808e-02 -1.26954779e-01\\n-4.29644823e-01 -4.69773948e-01 4.69080836e-01 3.71185131e-02\\n2.59852260e-01 1.48498118e-01 3.88921678e-01 -1.08408919e-02\\n3.13204467e-01 -1.18586823e-01 -9.79972631e-03 -4.50827777e-01\\n2.70048492e-02 5.20006120e-02 4.35374081e-01 -2.35581741e-01\\n3.45722511e-02 -1.87900849e-02 -1.83354601e-01 -1.13277789e-03\\n3.81821930e-01 -7.77769387e-02 7.91429132e-02 4.24028225e-02\\n1.55009419e-01 -2.18639731e-01 -9.75505710e-02 4.69379090e-02\\n6.96843788e-02 6.49002552e-01 1.85191315e-02 -3.12850684e-01\\n-1.52622640e-01 3.64467859e-01 -1.74426585e-01 -7.59934541e-03\\n-2.29537308e-01 7.09246397e-02 -2.09646523e-01 3.93172234e-01\\n-1.50768962e-02 -1.90625027e-01 -2.19742730e-01 -2.31166974e-01\\n-1.20229721e-01 2.34180376e-01 3.71145666e-01 7.69891292e-02\\n-6.66841120e-02 -4.48181182e-01 -9.69401672e-02 2.09734321e-01\\n4.07551467e-01 3.46975744e-01 2.39197850e-01 -1.74763530e-01\\n-8.08972791e-02 2.39324912e-01 -2.75705546e-01 2.01958671e-01\\n-2.81147182e-01 9.61922407e-02 -6.47115350e-01 -3.07859242e-01\\n-2.92454481e-01 -3.65987003e-01 2.27803126e-01 4.46995854e-01\\n1.73977375e-01 -8.16863850e-02 1.17244929e-01 -4.70234692e-01\\n2.76065588e-01 5.64550841e-03 1.32812575e-01 6.18906617e-02\\n-1.31162271e-01 6.62208438e-01 -1.61584467e-05 -1.75784975e-01\\n-8.30981582e-02 2.02771183e-02 -2.29303136e-01 -1.55026212e-01\\n-1.04611188e-01 -5.42949975e-01 -1.52880341e-01 3.01126301e-01\\n2.12495103e-01 -2.83316851e-01 -2.26651222e-01 2.04502329e-01\\n-4.88832891e-02 -3.02814096e-01 -2.27337599e-01 -5.23123033e-02\\n4.16536510e-01 8.34350139e-02 2.82918096e-01 -5.33548594e-01\\n4.04903665e-02 -2.21000016e-02 -5.96635342e-02 4.77883399e-01\\n-1.15390830e-02 9.95267630e-02 8.45957268e-03 -1.07848123e-01\\n4.71558869e-01 2.66339630e-02 -1.21857315e-01 8.48133415e-02\\n8.04677680e-02 -2.62561500e-01 -3.85840058e-01 1.08799823e-02\\n7.25580901e-02 -3.01310390e-01 -1.01090008e-02 2.47946113e-01\\n-3.82981636e-02 8.68202746e-03 -5.66247344e-01 -2.37429291e-01\\n-3.27022493e-01 -8.59834254e-02 -8.01572762e-03 -5.54027140e-01\\n-1.54837817e-01 -1.06725030e-01 -5.16012490e-01 2.16088504e-01\\n-2.49270927e-02 -1.53991118e-01 9.96070877e-02 5.65100461e-02\\n-1.35449141e-01 -1.44496113e-01 1.98386222e-01 2.46859506e-01\\n-2.70817250e-01 -2.85278678e-01 3.21337394e-02 -8.64739776e-01\\n1.92481965e-01 1.58444226e-01 -1.06236815e-01 1.45081952e-01\\n-9.26926211e-02 -5.58218122e-01 1.55765414e-01 -4.11275804e-01\\n-1.17287561e-01 -1.42168880e-01 -2.97917366e-01 -4.38430250e-01\\n1.23975128e-01 1.14716120e-01 -2.57658035e-01 4.46679115e-01\\n-3.03191781e-01 3.25460553e-01 -9.80649516e-02 8.86136442e-02\\n7.36139566e-02 -2.16459244e-01 1.51887894e-01 -3.78057718e-01\\n-3.78298789e-01 -1.50157705e-01 -2.87086487e-01 -2.09018663e-01\\n-1.31245881e-01 -1.72453046e-01 -1.40407562e-01 4.29235771e-02\\n3.61408472e-01 2.22641379e-01 -1.67668447e-01 -3.22013438e-01\\n4.70559187e-02 -4.42969680e-01 8.78485888e-02 -8.26380402e-02\\n-1.44174933e-01 -1.02946624e-01 1.53302610e-01 6.86193258e-02\\n1.73456222e-01 -2.84451038e-01 3.90342325e-01 -4.53755200e-01\\n-1.99048325e-01 -1.58408299e-01 4.78072539e-02 5.20601347e-02\\n2.36808002e-01 -4.37245131e-01 2.40360387e-02 3.00536931e-01\\n1.04633503e-01 1.85837209e-01 3.52854908e-01 -1.19050696e-01\\n-1.11401640e-01 2.57135093e-01 -3.34527433e-01 1.61557928e-01\\n8.68196130e-01 1.19382471e-01 1.33350745e-01 2.42692173e-01\\n2.13040769e-01 2.20479786e-01 4.49616879e-01 2.50931010e-02\\n-9.78141949e-02 3.40593398e-01 1.26733139e-01 -4.30560350e-01\\n-6.33596629e-02 -8.00765455e-02 -9.54978541e-02 -3.31881583e-01\\n7.45690346e-01 3.20768327e-01 -3.01714629e-01 -2.01066017e-01\\n-2.35518783e-01 -1.19151413e-01 2.28711292e-01 -3.36469971e-02\\n-2.03638170e-02 1.68020818e-02 4.72643465e-01 -1.11908972e-01\\n2.39745766e-01 5.13241053e-01 -2.08051294e-01 -2.39870399e-01\\n-1.21385135e-01 2.08733857e-01 6.87775910e-02 5.58869839e-01\\n-3.44918430e-01 3.11169803e-01 2.14506872e-02 8.84221196e-02\\n-1.77302390e-01 1.18435226e-01 2.28702664e-01 1.35135904e-01\\n1.52885109e-01 1.33021683e-01 4.85519469e-01 4.08172131e-01\\n2.55011618e-01 4.62241113e-01 3.77689481e-01 9.35338810e-03\\n3.93570542e-01 4.95040715e-01 2.62960136e-01 4.06806581e-02\\n1.72233656e-02 1.14742205e-01 1.69294789e-01 -1.04481116e-01\\n2.74797320e-01 4.19516504e-01 3.12785879e-02 8.27302694e-01\\n3.53839278e-01 3.36508811e-01 6.71891451e-01 -7.20949709e-01\\n-3.90495062e-01 -1.35154407e-02 6.23018861e-01 -3.08391839e-01\\n6.83952495e-02 2.25676432e-01 -1.19365104e-01 2.58398116e-01\\n-5.16853809e-01 -2.27873415e-01 -8.28940421e-02 3.38437445e-02\\n2.53287069e-02 -1.43886864e-01 -2.09054083e-01 1.88411236e-01\\n1.72548406e-02 -6.04042821e-02 -4.04927254e-01 -1.19684309e-01\\n-2.01444566e-01 -3.11949085e-02 -1.80023223e-01 -6.10500202e-02\\n-6.67620301e-02 -2.43953198e-01 -4.77997437e-02 -9.84043628e-02\\n2.43683174e-01 -1.48762807e-01 -2.26418987e-01 -1.12095363e-02\\n2.98861265e-01 4.46163565e-02 5.58758318e-01 -9.53576788e-02\\n1.06483690e-01 -1.55647799e-01 -2.48059124e-01 3.99314985e-03\\n2.13611126e-01 -2.05972996e-02 -1.02880910e-01 3.25925052e-01\\n-3.33385944e-01 -2.61040270e-01 -4.54178080e-05 1.45592868e-01\\n-4.17892188e-01 3.59568745e-02 -6.96446598e-02 2.32273042e-01\\n1.17788985e-01 1.68844461e-01 -2.08954096e-01 -9.81199294e-02\\n-1.19740486e-01 -5.60607910e-01 1.52102232e-01 -4.64368239e-03\\n-2.15597123e-01 5.05738854e-02 2.60670125e-01 1.54831007e-01\\n-2.74442494e-01 -7.44385049e-02 -1.49428099e-01 9.48665440e-02\\n5.17737716e-02 1.21388718e-01 -1.08646825e-01 -2.95511276e-01\\n-2.38656044e-01 2.55911589e-01 -1.62446368e-02 2.86795884e-01\\n5.60653247e-02 3.79945576e-01 6.96440935e-02 2.49366552e-01\\n2.62124538e-01 9.03570801e-02 -2.53754497e-01 -2.08785594e-01\\n-2.16483608e-01 -1.60309911e-01 -1.24970056e-01 -3.94104384e-02\\n2.22455859e-01 -2.52866566e-01 -1.00973621e-02 -2.42963284e-01\\n-2.37086371e-01 -4.39810336e-01 5.09778224e-02 -1.58611730e-01]]',\n", + " 'Do you have passion to transform P&G\\'s brand building while enabling better decision-making through advanced analytics and machine learning; enhance business results and improving consumer\\'s lives every single day? We are looking for Data Scientist Interns (Female or Male) 6-months - Based in Geneva CompensatedYour responsibilities will be:Get into the details on Marketing and Data Science, using artificial intelligence, data visualization and analytic engines, release business building insights, generating plans from our data to serve consumers worldwide in better way. You will learn through from data we generate from 1.5TB individual consumer touchpoints daily, and information on 500MM consumers\\' behaviors. You will answer business questions and propose solution for business problems by applying machine learning techniques and automatize analysis of consumer touch point information or other deep learning data, explore their patterns and recommend marketing activities.You will discover and invent next-generation business analytic tools for our category analysts and business partners, own our new applications from design-thinking up to user adoption.Full-stack development of innovative and creative tailor-made algorithms that will drive real-life business recommendation and activation, using your favorite tools or environment.Team up with technology partners to translate your innovations into robust, scaled, analytic solutions Collaborate actively and effectively with the data science team, other function\\'s partners and senior management to achieve your project\\'s objectives.Participate to P&G\\'s analytic capability program at different levels of skill and seniority To qualify for this role you should possess the following: Doing a Master Degree in a quantitative field (Operation Research, Computer Science, Engineering, Applied Math, Statistics, Analytics, Data Science, Life-science etc)Passion to try new things, learn quickly and work well with diverse backgrounds.Excellent interpersonal skills, self-motivated, dynamic and can-do attitudeEnthusiasm and curiosity about the intersection of business, technology and data.Very good English (written and oral) and you should have knowledge of Business Intelligence Tools such as KNIME, Tableau, SpotfireBig Data Ecosystem: Hadoop, Spark, MapReduce, SQL, HiveScientific Computing: R, Python, C++, Java, ScalaAdvanced Analytical models (Bayesian, Optimization (global, local, stochastic methods), Uncertainty Quantification, etc.) We offer: Competitive compensationOwn your responsibilities and project leadership as of day 1Dynamic, Diverse, Multi-cultural and Flexible working environment\\'Vibrant Living\\' offering on-site: Gym / Yoga / Sports-teams, Hair-Salon, Canteen, Agile workspace design, Flex-work arrangements possible and \"new-hire network activities\"Help with housing, subsidized meals, free public transport in Geneva and access to our company store, are some examples of our benefits.Equal Opportunities for everybody #WeSeeEqual #LikeAGirl #GABLE #P&GJob Location: Geneva, Petit-Lancy Due to legal restrictions, immigration sponsorship is available only for EU/EFTA nationalities. All candidate with non EU/EFTA nationalities are encouraged to check out opportunities in countries where they can obtain a work permit.Further helpful information to make the application process smooth: Just apply via clicking the button belowHave your CV in English ready to attachPlease note individual attachments cannot be larger than 500 KB ',\n", + " '[\"Self-Motivation\", \"Leadership\", \"Collaboration\", \"Planning\", \"Management\", \"Decision Making\", \"Innovation\", \"Creativity\", \"Curiosity\"]',\n", + " '[\"Business Analytics\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Data Explorers\", \"Agility\", \"Accessioning\", \"Business Intelligence Tools\", \"Computer Science\", \"Life Sciences\", \"Analytics\", \"Consumables\", \"Statistics\", \"Bayesian Modeling\", \"Branding\", \"Business Partnering\", \"KNIME\", \"Activism\", \"MapReduce\", \"Python (Programming Language)\", \"Yoga\", \"Operations Research\", \"Levelling\", \"Translations\", \"Hostile Work Environment\", \"Business Intelligence\", \"Data Visualization\", \"Machine Learning Methods\", \"Data Science\", \"Uncertainty Quantification\", \"Release Engineering\", \"Equalization\", \"R (Programming Language)\", \"Artificial Intelligence\", \"Deep Learning\", \"Design Thinking\", \"Adoptions\", \"Public Transport\", \"Subsidized Housing\", \"Algorithms\", \"Business Technologies\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Touchpoint\", \"New Hire Orientations\"]',\n", + " \"['English', 'Haitian Creole', 'Yoruba']\"],\n", + " ['4',\n", + " 'business analyst - application support analyst',\n", + " 'Neuchâtel',\n", + " '',\n", + " '',\n", + " '[[-1.66816726e-01 2.85162449e-01 4.95247245e-01 -7.54986182e-02\\n5.17806172e-01 -1.34886459e-01 7.60038346e-02 4.32544142e-01\\n-8.29061940e-02 -4.25131202e-01 -2.95873592e-03 -1.83584690e-01\\n9.61176306e-02 2.15909109e-01 1.05633009e-02 3.52613240e-01\\n2.66447812e-01 1.37014166e-01 -1.48201928e-01 2.16381490e-01\\n1.25430062e-01 -1.72634274e-01 3.35497499e-01 6.12776577e-01\\n4.23927665e-01 3.30772921e-02 -2.56940257e-02 -1.53158531e-01\\n-1.23470135e-01 -2.56299287e-01 3.67050439e-01 -9.53961536e-03\\n-2.50251982e-02 -2.93682307e-01 6.65732324e-02 -5.90753835e-03\\n-1.93510950e-01 -1.60548806e-01 -1.45955786e-01 3.65572944e-02\\n-5.26386201e-01 -3.39580148e-01 -2.28963360e-01 -6.91483840e-02\\n-2.80557990e-01 -3.24102759e-01 -9.15291905e-03 -1.48155108e-01\\n1.82212859e-01 7.26522505e-02 -4.75324601e-01 2.69055218e-01\\n-3.30000103e-01 -2.03725293e-01 2.42885351e-01 6.28940821e-01\\n-2.85409689e-02 -3.79264444e-01 -4.72581893e-01 -2.54332900e-01\\n1.76641077e-01 -2.23826885e-01 3.89919020e-02 -2.20772594e-01\\n2.78967142e-01 2.02960521e-01 1.42488971e-01 3.70038003e-01\\n-7.76884913e-01 -1.40156075e-01 -3.32717627e-01 -2.39798233e-01\\n-1.49233565e-01 -9.14947912e-02 -1.49845034e-01 -1.88158885e-01\\n-9.45164785e-02 4.63348299e-01 1.23411208e-01 8.18541348e-02\\n-4.00788076e-02 2.69109011e-01 -2.31787860e-01 3.21324795e-01\\n8.58864859e-02 2.63024807e-01 1.04690574e-01 1.11424729e-01\\n-2.43329868e-01 4.18507725e-01 2.25649655e-01 -2.40596652e-01\\n2.23352090e-01 1.01557516e-01 3.95808041e-01 -2.47453704e-01\\n2.17678934e-01 2.30605043e-02 -2.61458695e-01 3.84560764e-01\\n2.94863254e-01 -3.24450463e-01 1.01686813e-01 -1.92390114e-01\\n-7.05779865e-02 -3.26319039e-02 9.00029615e-02 9.10945833e-02\\n-2.42432758e-01 4.81475919e-01 6.77301213e-02 -1.03688523e-01\\n-3.28537524e-02 -3.50481927e-01 1.81190129e-02 1.48204993e-03\\n9.13675204e-02 1.26485348e-01 2.01980963e-01 1.82763562e-01\\n2.78376192e-01 -8.81460756e-02 6.53274804e-02 6.54171109e-01\\n-1.05632469e-01 4.24783602e-02 -2.75458485e-01 2.27828890e-01\\n-2.77840551e-02 -1.56604737e-01 1.21966206e-01 1.94903582e-01\\n-2.02449113e-02 -1.33911476e-01 -1.51002795e-01 1.31977484e-01\\n-9.53805074e-02 -2.70285606e-01 -2.16760933e-01 1.45205572e-01\\n-2.02276465e-02 -1.81995362e-01 4.59509641e-01 -9.95344669e-02\\n1.54643893e-01 -6.64847717e-02 4.90071699e-02 -8.27436745e-02\\n-1.04522534e-01 2.26501137e-01 3.14468183e-02 5.26629947e-02\\n-1.86016604e-01 -2.29177713e-01 -2.01230317e-01 -1.15925521e-01\\n-2.18725786e-01 1.46933421e-01 -3.53244133e-02 -1.40077416e-02\\n2.48875499e-01 -3.61084230e-02 -7.27863610e-02 3.78438652e-01\\n6.28798753e-02 5.30594662e-02 4.58895788e-03 2.32622206e-01\\n-1.41313732e-01 2.28673071e-01 -7.18937814e-02 -1.59278110e-01\\n5.01531720e-01 -8.31596851e-02 -3.37360352e-02 2.20002420e-02\\n3.80361110e-01 1.69208460e-02 1.06049635e-01 6.94921240e-02\\n-6.85974836e-01 3.24633330e-01 -6.15523160e-02 -7.24900514e-02\\n1.80995688e-01 -5.40063418e-02 1.82919949e-01 -1.76368594e-01\\n1.16254650e-01 1.08255669e-01 -3.00764263e-01 -3.24148387e-01\\n-4.82118055e-02 -2.70950079e-01 3.17378998e-01 -3.62578064e-01\\n-1.01960555e-01 2.19249845e-01 -4.43402588e-01 3.50450166e-02\\n2.21723080e-01 2.19678774e-01 1.60573512e-01 1.74959153e-01\\n-1.87104136e-01 -1.07577771e-01 2.11339355e-01 -2.92870849e-01\\n-4.04642597e-02 2.01489881e-01 -1.51171640e-01 2.52423763e-01\\n1.80193394e-01 8.58183578e-02 -1.33273408e-01 -3.71211246e-02\\n7.67256096e-02 -1.27010360e-01 2.91456729e-01 2.45403033e-02\\n2.02699035e-01 6.92233145e-02 -3.49474669e-01 3.17839295e-01\\n-1.64470896e-01 5.17099142e-01 1.79933235e-02 -9.06439424e-01\\n2.98671514e-01 2.40180403e-01 9.21225641e-03 -2.06164390e-01\\n6.60073578e-01 -2.37542599e-01 -1.86836775e-02 2.21317619e-01\\n-4.16005880e-01 -3.51475030e-01 2.17292264e-01 -1.60689533e-01\\n-2.04272598e-01 4.95882601e-01 6.34944066e-02 1.67960897e-01\\n2.99192779e-02 7.70038180e-03 -1.76692083e-01 1.43731236e-01\\n6.70351461e-02 -2.26195082e-01 -4.81849194e-01 -2.13338256e-01\\n-9.12654176e-02 -3.93154383e-01 -1.60786033e-01 -4.35936034e-01\\n-2.99532652e-01 -2.26393089e-01 -3.79842259e-02 9.68500972e-02\\n2.70522445e-01 1.19380295e-01 1.02652572e-01 2.36744285e-01\\n-2.17602983e-01 -4.10830438e-01 4.99545895e-02 1.80105016e-01\\n2.03366339e-01 1.63581371e-01 -1.74756907e-02 1.00715175e-01\\n-5.69107533e-02 7.79145777e-01 -1.69867963e-01 1.17225260e-01\\n2.50453949e-01 2.46209681e-01 2.09222510e-02 -1.38754234e-01\\n1.37883991e-01 3.16180587e-01 -3.32972646e-01 3.08759868e-01\\n1.20447921e-02 9.94644165e-02 1.83122978e-01 1.02680460e-01\\n-3.20344627e-01 -2.38243774e-01 -1.52315661e-01 9.39186066e-02\\n-4.23535496e-01 -9.78240296e-02 6.99331999e-01 -5.90619892e-02\\n6.72758743e-02 1.79002061e-01 2.24290609e-01 1.89715829e-02\\n-7.98832476e-02 -1.42766654e-01 1.67589679e-01 1.30283430e-01\\n7.71711171e-02 1.14916414e-01 -2.10767351e-02 -7.03401506e-01\\n-3.66119194e+00 -1.91520050e-01 7.63729215e-02 -2.67383516e-01\\n2.88053155e-01 -2.38004535e-01 6.30816072e-02 3.02737895e-02\\n-2.82982022e-01 2.84561813e-02 -1.82005599e-01 -1.69044077e-01\\n2.74280638e-01 1.47940725e-01 8.84595513e-02 3.70418876e-01\\n8.69562328e-02 -2.43361235e-01 -4.54022363e-02 4.39097166e-01\\n-2.59551674e-01 -5.01000047e-01 3.15047622e-01 3.06553431e-02\\n4.55406636e-01 3.17829907e-01 -2.86230743e-01 -1.84408929e-02\\n-2.13597432e-01 -1.67652160e-01 2.65707254e-01 -2.18014374e-01\\n-1.17986098e-01 3.12351078e-01 1.57812402e-01 -1.49565056e-01\\n1.99206904e-01 -5.47767043e-01 -1.39021069e-01 -4.40096915e-01\\n1.54843882e-01 -6.80866301e-01 -7.54826590e-02 9.22882408e-02\\n6.30724728e-01 -3.05221558e-01 -6.51504621e-02 2.05139779e-02\\n1.68092549e-01 2.16654554e-01 3.85348462e-02 8.41422305e-02\\n-1.09303966e-01 -2.92187899e-01 -8.05607587e-02 -2.65527274e-02\\n4.02626842e-01 4.19412136e-01 -1.93728492e-01 -2.92385668e-02\\n2.37763692e-02 -7.16327429e-02 -5.14202237e-01 -2.44632438e-01\\n-2.33901113e-01 -2.90591866e-01 -5.91090381e-01 -2.97825873e-01\\n-8.16299990e-02 -1.50004745e-01 -1.77371711e-01 3.61755818e-01\\n-2.59540766e-01 -3.28153163e-01 -9.77436230e-02 -3.13551068e-01\\n2.44248971e-01 8.71416405e-02 2.70596631e-02 -1.75347775e-01\\n-3.33077371e-01 -2.62013882e-01 5.40916584e-02 3.51502821e-02\\n7.43630230e-02 -2.43363753e-01 1.34339169e-01 -5.82472086e-02\\n-3.48647982e-01 -4.38914150e-01 3.72188121e-01 1.82587147e-01\\n2.95160979e-01 1.29808903e-01 1.70364648e-01 3.97798568e-02\\n2.68732101e-01 -1.93118274e-01 3.27250399e-02 -4.54264104e-01\\n1.21773429e-01 3.01426500e-02 4.19101030e-01 -2.39311561e-01\\n1.34406894e-01 -6.85461611e-02 -3.17651659e-01 -9.01133940e-02\\n1.73144713e-01 1.64044555e-02 3.10877353e-01 -2.86493987e-01\\n9.10846144e-02 -9.45265517e-02 -3.37682039e-01 -9.01720226e-02\\n3.98449898e-02 5.40296733e-01 1.88922714e-02 -2.44994655e-01\\n-1.95327938e-01 4.30162072e-01 -1.86767906e-01 -1.05130345e-01\\n-4.22023684e-01 1.42143909e-02 -2.52014607e-01 2.62868404e-01\\n-1.59118950e-01 1.02813933e-02 -1.38729379e-01 -2.49796048e-01\\n-3.30721319e-01 2.21400172e-01 1.93553895e-01 6.19933493e-02\\n1.81442440e-01 -4.46847945e-01 -2.18381714e-02 2.21937165e-01\\n2.35554442e-01 3.14708680e-01 8.33338797e-02 -8.71262327e-02\\n-3.45915444e-02 2.58472115e-01 -9.51578617e-02 3.27858049e-03\\n-3.19740862e-01 1.95240930e-01 -3.61432314e-01 -3.58379364e-01\\n-1.91436127e-01 -2.91244745e-01 5.32719046e-02 2.95230061e-01\\n1.79268554e-01 -1.24208011e-01 -5.72530739e-02 -4.92347062e-01\\n2.27682278e-01 -5.71119692e-03 2.34419107e-01 8.71739462e-02\\n1.38690248e-01 4.49256152e-01 7.72836208e-02 -1.18679494e-01\\n-9.27810892e-02 1.10134482e-01 -2.03555584e-01 -1.90139338e-02\\n-8.88487920e-02 -4.82167929e-01 -1.86358348e-01 4.85445172e-01\\n1.02756664e-01 -1.65900752e-01 -1.38045281e-01 2.81440318e-01\\n-2.19744761e-02 -2.87334770e-01 -2.87153959e-01 -9.03102197e-03\\n3.98945391e-01 1.02387711e-01 2.84408033e-01 -4.59530681e-01\\n-3.58351991e-02 -1.12431869e-01 -1.31006092e-01 3.69533986e-01\\n-9.26976837e-03 -1.71559677e-02 -5.80750890e-02 -2.80332834e-01\\n3.09269339e-01 -2.40515903e-01 -1.20958863e-02 1.83207259e-01\\n2.16813069e-02 -7.87165537e-02 -4.90577340e-01 8.22712928e-02\\n-4.84090522e-02 -2.34726727e-01 6.49087131e-02 9.93404239e-02\\n4.13053259e-02 8.31290260e-02 -4.33365464e-01 -1.60270169e-01\\n-2.73173273e-01 -1.48864184e-02 -1.01929843e-01 -4.78242606e-01\\n-1.35987833e-01 -1.06385751e-02 -4.61583883e-01 2.18421265e-01\\n-1.72643021e-01 -2.78825797e-02 1.16837531e-01 -3.33104916e-02\\n-3.43747765e-01 -4.07880358e-02 1.90739334e-01 1.22684263e-01\\n-1.04270823e-01 -1.92071080e-01 3.72905508e-02 -1.04549646e+00\\n1.30296722e-01 -5.25312796e-02 -6.33966699e-02 1.53619871e-01\\n-6.23431951e-02 -4.66623932e-01 1.21072285e-01 -2.26599574e-01\\n-2.59526759e-01 -1.82114974e-01 -1.79347202e-01 -5.78566909e-01\\n1.74562130e-02 1.73893452e-01 -2.43642583e-01 9.91964042e-02\\n-1.80627495e-01 4.67720926e-01 2.90250368e-02 1.34733438e-01\\n-5.92419803e-02 -3.22629094e-01 5.51503785e-02 -5.42692065e-01\\n-3.99296254e-01 -7.62159452e-02 -2.77674198e-01 -7.62889013e-02\\n-4.42121699e-02 -2.38437042e-01 -2.38500629e-02 1.04686610e-01\\n1.33098677e-01 1.38216212e-01 -6.88350797e-02 -3.02352849e-02\\n4.38568145e-02 -5.49843848e-01 7.60013284e-03 1.25216827e-01\\n-6.87079430e-02 -6.15439788e-02 3.10668319e-01 5.94193302e-02\\n1.51098415e-01 -3.42876405e-01 3.04079890e-01 -4.73696858e-01\\n-3.52422208e-01 -1.02299422e-01 1.15718827e-01 3.09767015e-02\\n4.40727264e-01 -3.89883310e-01 -1.77950673e-02 2.15530694e-01\\n-5.26006185e-02 4.49993052e-02 3.74439180e-01 -9.81108323e-02\\n-1.72202095e-01 1.94005996e-01 -3.28821987e-01 1.58162490e-01\\n6.44426525e-01 9.71629992e-02 1.63278416e-01 1.99211195e-01\\n8.51648599e-02 2.57614285e-01 4.42488700e-01 -2.15315223e-02\\n-2.30379656e-01 3.38848710e-01 1.34154290e-01 -7.84104347e-01\\n-7.12086558e-02 5.24897780e-03 -3.45720202e-01 -4.09364492e-01\\n6.32258475e-01 3.74652267e-01 -3.20911914e-01 -2.64206171e-01\\n-2.14571998e-01 -2.93611228e-01 -9.04613882e-02 -8.07626769e-02\\n1.04360253e-01 -5.89491874e-02 5.14246285e-01 -5.77799827e-02\\n2.98325330e-01 3.94017309e-01 -2.33465746e-01 -2.60939300e-01\\n-9.88230407e-02 7.20113888e-02 -3.50659736e-03 4.40833092e-01\\n-2.17162192e-01 3.58903855e-01 -8.39845389e-02 2.06221074e-01\\n2.67525464e-02 -8.42386633e-02 1.27595710e-02 4.33015125e-03\\n-2.67094956e-03 2.48375416e-01 5.03314912e-01 2.64433086e-01\\n4.17895287e-01 3.51910889e-01 2.83470899e-01 1.02277135e-03\\n5.92872977e-01 4.03473586e-01 1.70991674e-01 7.97142535e-02\\n2.95545254e-02 -8.40264745e-03 -1.32184243e-02 8.39368030e-02\\n1.93413943e-01 2.76795000e-01 -4.69836257e-02 8.57254922e-01\\n2.83694625e-01 1.85646594e-01 5.20147920e-01 -4.81117815e-01\\n-3.03524613e-01 -1.04773149e-01 3.16642702e-01 -4.28495944e-01\\n-4.38466556e-02 1.62076697e-01 -4.81925383e-02 1.38399273e-01\\n-2.65730709e-01 -2.46834874e-01 -1.22185603e-01 3.39174837e-01\\n6.21627606e-02 -2.77915150e-01 -3.24637145e-01 5.30817024e-02\\n-3.90307568e-02 -1.64872363e-01 -4.78122920e-01 -3.55879478e-02\\n-1.62898108e-01 -2.85573632e-01 -1.14847891e-01 -7.87149295e-02\\n-1.75909787e-01 -2.35179320e-01 -3.18051800e-02 2.51442962e-03\\n9.02554691e-02 -4.39501815e-02 3.29973735e-02 -1.78352058e-01\\n4.22430009e-01 1.93573773e-01 5.28786302e-01 8.96317437e-02\\n1.22774325e-01 -2.80449748e-01 -7.57336169e-02 9.47676525e-02\\n3.08251590e-01 -5.87870739e-02 4.26246412e-02 4.77853417e-01\\n-3.60689729e-01 -1.48818403e-01 1.36610836e-01 3.36928487e-01\\n-4.77062523e-01 -1.50291482e-02 -2.92839017e-02 1.94664672e-01\\n1.48600787e-01 9.61889699e-02 -2.06270605e-01 -3.70850451e-02\\n-2.19964057e-01 -3.76349926e-01 5.17789945e-02 9.52670947e-02\\n-1.77644908e-01 -2.95919012e-02 1.50312439e-01 2.24202201e-01\\n-1.13957815e-01 8.58803652e-03 -2.93815825e-02 3.66153903e-02\\n1.59092173e-01 2.14664996e-01 -2.48889595e-01 -3.92054886e-01\\n-2.03100368e-01 1.72215775e-01 -1.91089347e-01 7.64004812e-02\\n1.24061391e-01 2.84464210e-01 -2.04099212e-02 1.77199900e-01\\n3.70478779e-01 -1.84260115e-01 -1.40958399e-01 -2.90715069e-01\\n-3.34070265e-01 -2.93073833e-01 1.55471340e-02 -2.60204047e-01\\n2.29036763e-01 -2.44325683e-01 -7.27668405e-02 4.04270813e-02\\n-1.92970902e-01 -3.44104618e-01 9.01933610e-02 -2.75175422e-02]]',\n", + " \"For one of our clients in the Romandie the French speaking part of Switzerland, in Lausanne, we are looking for a Business Analyst - Application Support Analyst who is open-minded and client-oriented, is passionate about his work, who believes in success and has a strong team spirit. Are you looking for you next challenging position? This opportunity is for you!Your challengesYou manage new applications and new functionalities in a manufacturing environment. You are in charge of lifecycle and support in manufacturing and application Level 2.Your skillsExperience in a validated environmentAt least 3-4 years' experienceExperience in application development lifecycle (supply chain)ITSM mandatoryGxP systems and computer validation systemMedical deviceLabelling systems a plusFrench and English mandatoryYour horizonsDo you think you have what it takes to face this challenge ? Don't hesitate to contact me on +41 58 233 27 08 or apply directly on this advert.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactMadame Joanna Fumey, Recruitment Trainee, looks forward to answer your questions by phone +41 58 233 2706.You can apply directly online.JN -072019-296587\",\n", + " '[\"Positivity\", \"Management\", \"Professionalism\"]',\n", + " '[\"Application Development\", \"Validations\", \"Supply Chain\", \"Customer Support Analyst\", \"Application-Level Gateway\"]',\n", + " \"['English', 'Shona']\"],\n", + " ['75',\n", + " 'software security engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.36230105e-01 3.40883940e-01 2.81349361e-01 -5.84128685e-02\\n5.47161996e-01 -2.54661232e-01 1.41434878e-01 3.16309333e-01\\n4.87177633e-02 -3.90651971e-01 -1.82920620e-01 -1.13990486e-01\\n-1.21490248e-01 -7.10763875e-03 1.15474664e-01 3.96341264e-01\\n3.46896559e-01 4.84734140e-02 -1.74251467e-01 4.21952516e-01\\n7.64683634e-02 -1.49408370e-01 -8.72187540e-02 7.74587631e-01\\n3.13406676e-01 -2.46134493e-02 -3.04220952e-02 1.50954768e-01\\n-1.50724828e-01 -3.50249588e-01 4.00979340e-01 4.63254005e-02\\n-1.28971055e-01 -3.24213773e-01 2.34067291e-01 1.58148006e-01\\n-2.10834980e-01 1.20885037e-01 -1.35070443e-01 1.65216610e-01\\n-5.10458589e-01 -1.04725800e-01 5.01477830e-02 2.51809712e-02\\n-2.11760834e-01 -3.09845030e-01 3.15770984e-01 -1.35060102e-01\\n1.24602653e-01 7.66976327e-02 -4.37074661e-01 3.75989974e-01\\n-2.94328362e-01 -3.68989676e-01 4.36579168e-01 5.09961724e-01\\n-5.27991168e-02 -5.38764060e-01 -4.31116283e-01 -1.90824926e-01\\n6.19377568e-02 -6.86014965e-02 -4.21723016e-02 -3.26115668e-01\\n2.99222350e-01 9.48643312e-03 2.78786221e-03 3.64717215e-01\\n-7.29737163e-01 -1.80096805e-01 -3.16305786e-01 9.88234058e-02\\n-4.97047871e-01 -3.47018689e-02 -3.79566193e-01 -1.19525082e-02\\n-1.81558058e-02 3.07648748e-01 -9.52588245e-02 -3.01134288e-02\\n-1.21238358e-01 2.20981687e-01 -2.47208968e-01 2.13575080e-01\\n4.23745781e-01 1.37277186e-01 1.81152225e-01 3.38626206e-01\\n-3.79729688e-01 5.52518249e-01 2.88632601e-01 -1.70796961e-01\\n2.81181544e-01 1.57423228e-01 3.53093922e-01 5.03442436e-02\\n1.12062328e-01 2.26662979e-01 -1.42871857e-01 2.70301759e-01\\n2.21988454e-01 -1.20011128e-01 -6.85149580e-02 -1.20571703e-01\\n6.25788122e-02 9.27873105e-02 7.87840709e-02 2.77712196e-01\\n-4.26590204e-01 4.18029517e-01 1.96169317e-01 -2.55520731e-01\\n-1.48707628e-01 -4.51909155e-01 -2.43758321e-01 -5.10128289e-02\\n-1.17735304e-01 9.00925845e-02 2.64664531e-01 1.79659739e-01\\n1.97700128e-01 -6.36972953e-04 7.23178089e-02 9.32077706e-01\\n-1.08792521e-02 6.59423098e-02 -1.67940706e-01 3.25408518e-01\\n1.62026212e-01 -3.70135695e-01 1.33355960e-01 3.26324701e-01\\n3.66832018e-02 -1.56788230e-01 -3.31980437e-01 3.93040627e-01\\n-1.44323066e-01 -3.67674679e-02 -3.30581248e-01 1.98745370e-01\\n-1.40233617e-02 -4.36291784e-01 5.96548259e-01 7.30163753e-02\\n1.84971839e-01 2.72194091e-02 1.81709845e-02 -7.61415735e-02\\n-8.24494660e-02 2.89668769e-01 1.54739022e-01 1.44882604e-01\\n-3.41305047e-01 -1.87448189e-01 -1.70738891e-01 2.10534185e-01\\n-1.75602078e-01 3.74115780e-02 -3.29094648e-01 -1.96294829e-01\\n3.34982753e-01 1.22533953e-02 -4.07652676e-01 2.37174183e-01\\n-9.67284441e-02 -5.40716201e-02 -2.08191097e-01 4.53883559e-01\\n-1.03561372e-01 4.28381175e-01 -6.88905939e-02 6.15608506e-02\\n6.39488280e-01 1.53334647e-01 9.44825336e-02 -9.71933454e-02\\n2.20040947e-01 -8.50457251e-02 2.01068178e-01 4.42939438e-02\\n-6.26628935e-01 3.22842687e-01 -1.62956235e-03 3.90988216e-02\\n7.16277882e-02 3.87711525e-02 3.06310087e-01 -4.42335248e-01\\n-1.62914664e-01 -1.42152160e-01 -3.99116457e-01 -2.72928387e-01\\n-2.01035529e-01 -4.25517559e-02 2.71728188e-01 -3.73294204e-01\\n8.22718441e-02 1.78085834e-01 -6.80272639e-01 -9.47691277e-02\\n2.69779712e-01 2.57384449e-01 1.04040302e-01 2.52503186e-01\\n-2.48469725e-01 -5.79682529e-01 6.82116970e-02 -4.86944020e-01\\n-4.25309569e-01 3.73534188e-02 -3.25412571e-01 2.44017318e-01\\n-4.95814122e-02 1.41965272e-02 -1.38159350e-01 1.81642517e-01\\n-2.79801518e-01 7.80287571e-03 1.57224596e-01 -5.46181016e-02\\n2.54166067e-01 9.47151110e-02 -5.06887794e-01 4.25634056e-01\\n-2.07324430e-01 4.20397013e-01 2.67268419e-02 -7.53952384e-01\\n4.88478005e-01 1.26151085e-01 -3.06204595e-02 -3.86928558e-01\\n6.13707244e-01 -3.77691954e-01 3.22655728e-03 5.49104773e-02\\n-4.00810063e-01 -3.12262058e-01 2.79005140e-01 -1.50151044e-01\\n-3.26824099e-01 5.61275244e-01 4.35390659e-02 1.56094730e-01\\n3.69414151e-01 -1.55140787e-01 -3.42161953e-02 1.48553550e-01\\n-6.20831214e-02 9.49347019e-03 -4.87843871e-01 -8.44901428e-02\\n-1.49304971e-01 -6.18570268e-01 -1.63102061e-01 -4.71113980e-01\\n-3.02495509e-01 -2.37608239e-01 -5.16763210e-01 2.95706570e-01\\n7.75307044e-02 1.94282621e-01 -2.26013698e-02 -2.45508794e-02\\n-1.52564794e-01 -8.02806795e-01 5.18825604e-03 -8.91132187e-03\\n2.77503550e-01 2.89175957e-01 1.91706061e-01 -1.63295612e-01\\n2.09223516e-02 4.54722226e-01 -3.53377044e-01 -4.56867397e-01\\n1.52050421e-01 1.94183365e-01 1.51615962e-01 -3.27445827e-02\\n7.23549500e-02 5.12989759e-01 -3.16475660e-01 8.43358040e-02\\n-1.19275972e-01 -1.47877514e-01 4.99412894e-01 -7.39354417e-02\\n-4.20261860e-01 -1.18375905e-01 -2.22943816e-02 1.97365984e-01\\n-6.10212266e-01 -2.08742931e-01 4.09803361e-01 2.07657307e-01\\n1.28626570e-01 2.08876580e-01 3.11899364e-01 -1.64812163e-01\\n-5.23272119e-02 -2.17160031e-01 2.24296078e-01 1.75063029e-01\\n2.89972015e-02 5.68758436e-02 -2.46734247e-01 -8.08490455e-01\\n-3.25950909e+00 -7.77465031e-02 2.56558150e-01 -3.11545849e-01\\n2.17199519e-01 7.36336261e-02 2.43846208e-01 -1.34971619e-01\\n-2.79663533e-01 -2.54189931e-02 -9.45741236e-02 -1.26895010e-01\\n2.23539561e-01 3.34059834e-01 1.96272641e-01 2.70244867e-01\\n1.76725432e-01 -4.36620384e-01 6.67353394e-03 3.42941493e-01\\n-1.50901914e-01 -6.45757318e-01 1.47648141e-01 -8.43802914e-02\\n1.95986539e-01 2.94450045e-01 -4.18046832e-01 -1.54150218e-01\\n-2.35296890e-01 -1.82726070e-01 1.64092388e-02 -2.32571706e-01\\n-1.84014887e-01 1.98720574e-01 1.59188673e-01 -1.25567064e-01\\n-5.72018512e-02 -2.78977513e-01 -3.05294879e-02 -4.47643399e-01\\n1.73253402e-01 -5.61142743e-01 -1.02939665e-01 -4.64177132e-02\\n6.74403191e-01 -1.69352248e-01 2.33202070e-01 -3.67168970e-02\\n9.62695479e-02 1.39173493e-01 7.95989558e-02 4.70517091e-02\\n-2.58132160e-01 -9.94803607e-02 -1.79577380e-01 -1.46327376e-01\\n6.43202364e-01 4.20495212e-01 -2.52693594e-01 -1.08996131e-01\\n-4.35153656e-02 -5.29760897e-01 -3.94579470e-01 -1.55387923e-01\\n-2.05819502e-01 -9.72050205e-02 -6.68632269e-01 -5.10835528e-01\\n-1.47219554e-01 -1.22221485e-01 -9.57783870e-03 5.74590862e-01\\n-3.57182384e-01 -3.87805670e-01 -4.65258881e-02 -6.15057528e-01\\n1.33895144e-01 -1.90831289e-01 2.21085459e-01 -3.08029890e-01\\n-2.47318089e-01 -4.56562817e-01 9.17264819e-03 -2.89619435e-02\\n-1.51640609e-01 -3.00886512e-01 3.78662460e-02 -9.16975513e-02\\n-3.23639631e-01 -6.74402177e-01 4.89945173e-01 9.53548998e-02\\n2.50703305e-01 4.92298715e-02 3.08223277e-01 1.16943039e-01\\n3.30529332e-01 -2.00284123e-02 1.24237575e-01 -3.97573739e-01\\n-4.31656912e-02 -1.01144060e-01 6.85418963e-01 -3.43283415e-01\\n-4.72046956e-02 1.17155313e-01 -1.48077071e-01 -1.20038562e-01\\n3.46016526e-01 -9.01595652e-02 2.98824050e-02 -3.96859765e-01\\n3.80515456e-01 -3.80597204e-01 -2.20115975e-01 5.73851913e-02\\n8.94033983e-02 7.13838100e-01 3.52916233e-02 -4.22264934e-01\\n-2.24139586e-01 3.45110565e-01 -2.20934525e-02 1.30381629e-01\\n-1.62001267e-01 5.90957925e-02 -2.02190891e-01 2.45297626e-01\\n1.74445450e-01 -1.50996879e-01 -2.05005556e-01 -4.78054490e-03\\n-1.08965382e-01 3.47263217e-01 2.92444229e-01 1.68419123e-01\\n-8.69051740e-02 -3.25881243e-01 -1.82808340e-01 2.71455556e-01\\n8.19426477e-02 3.61980557e-01 9.24000293e-02 -1.67669296e-01\\n-8.67289826e-02 2.97123730e-01 -9.91074145e-02 2.03018740e-01\\n-1.51235372e-01 2.01531515e-01 -6.04083896e-01 -7.84956217e-02\\n-2.78156489e-01 -4.85281259e-01 1.37753665e-01 4.83223945e-01\\n9.70770195e-02 -1.23621123e-02 5.62536065e-03 -4.28890139e-01\\n2.61601508e-01 1.85150445e-01 1.54221147e-01 1.75877139e-01\\n6.49666553e-03 4.20802027e-01 -1.86976135e-01 -2.94356316e-01\\n-2.74620742e-01 1.32322265e-02 -3.08156550e-01 -2.24496707e-01\\n2.05708385e-01 -5.60212433e-01 -3.82583849e-02 5.01132011e-01\\n2.46724878e-02 -2.23943934e-01 -1.54025510e-01 1.52332693e-01\\n-8.55983421e-02 -2.58852214e-01 -3.03468436e-01 4.85359244e-02\\n2.18769804e-01 7.17325583e-02 3.18865091e-01 -4.65372741e-01\\n-2.49821153e-02 -6.14283681e-02 -4.44378005e-03 4.13851619e-01\\n-3.05573083e-03 1.34010538e-01 -2.73883492e-01 -4.29241806e-02\\n3.77903819e-01 1.09724663e-02 -9.79698673e-02 -2.02823952e-02\\n1.96577579e-01 -1.91107541e-01 -4.69758004e-01 4.34129685e-02\\n-1.19597837e-01 -1.50982112e-01 1.13489293e-01 2.15941593e-02\\n3.67697999e-02 1.46094233e-01 -5.36949873e-01 -3.43258649e-01\\n-4.00119752e-01 1.87548418e-02 -4.00977321e-02 -4.45265353e-01\\n-5.50834201e-02 -6.85993433e-02 -5.59171617e-01 2.21888825e-01\\n-3.03995192e-01 3.52224000e-02 2.42005885e-01 1.38644055e-01\\n-4.65052575e-01 -2.47741029e-01 2.28008449e-01 1.48820817e-01\\n-1.56793013e-01 -2.00521752e-01 -1.17222913e-01 -8.74291003e-01\\n3.31814498e-01 -7.02759624e-02 -2.39935994e-01 1.06690258e-01\\n-1.52971342e-01 -7.02292800e-01 1.02817498e-01 -3.09247017e-01\\n-1.29236951e-01 5.61997853e-02 -1.43841773e-01 -2.19313934e-01\\n-9.90737136e-03 -1.75113901e-01 -2.79561341e-01 3.67884457e-01\\n-4.18372154e-01 2.97890067e-01 1.71297733e-02 1.15648262e-01\\n-3.62195186e-02 -2.67172217e-01 -7.24951876e-03 -3.90505672e-01\\n-3.18844646e-01 -2.10138723e-01 -2.43131146e-01 -2.43045926e-01\\n3.63116548e-03 -3.44717532e-01 -1.28210053e-01 9.48946550e-02\\n3.08772743e-01 2.64947284e-02 -1.25894204e-01 -1.92879200e-01\\n-2.35227216e-02 -4.17649865e-01 1.93553809e-02 -2.37915143e-01\\n2.40150452e-01 -1.19511820e-01 1.84080794e-01 1.35001853e-01\\n2.09862396e-01 -4.25568819e-01 4.57503796e-01 -2.58021623e-01\\n-2.41932496e-01 -1.88143682e-02 1.05044529e-01 -6.85671568e-02\\n1.87770233e-01 -5.98344266e-01 1.28205836e-01 4.00086075e-01\\n-6.40014699e-03 5.94226457e-02 2.52312869e-01 -9.36126411e-02\\n-1.77493304e-01 2.48076469e-01 -2.58027643e-01 1.67275533e-01\\n6.68133855e-01 1.63989767e-01 1.09757155e-01 9.42717493e-02\\n7.97632858e-02 3.82863969e-01 5.51314950e-01 4.05256869e-03\\n-6.01771381e-03 3.15127671e-01 4.03704643e-02 -5.67876577e-01\\n-4.89383638e-02 -1.09230034e-01 -2.60376573e-01 -2.18073890e-01\\n6.57648563e-01 4.64694828e-01 -4.12794203e-01 -3.81209671e-01\\n-8.40802342e-02 -2.91532427e-01 1.91639841e-01 7.16924854e-03\\n-2.88871862e-02 -2.21757248e-01 6.71080768e-01 6.26463145e-02\\n1.50676534e-01 5.82162917e-01 -1.78084701e-01 -3.16340059e-01\\n6.88933283e-02 2.70010173e-01 -2.88737530e-04 4.89798218e-01\\n-1.10594749e-01 1.58395901e-01 -1.34423032e-01 3.52054238e-02\\n-3.28748208e-03 1.20212458e-01 2.27221891e-01 1.84195310e-01\\n9.16336551e-02 8.27381760e-02 4.65532511e-01 6.44301474e-01\\n1.35872886e-01 5.17247617e-01 2.88858056e-01 5.50503395e-02\\n3.51726860e-01 6.97570503e-01 4.08822656e-01 6.21180721e-02\\n-2.90510133e-02 2.35902220e-01 1.55987859e-01 3.33707519e-02\\n4.15488988e-01 3.97846311e-01 6.23514280e-02 8.61464441e-01\\n3.14967036e-01 1.72480643e-01 7.78439343e-01 -5.32875597e-01\\n-2.99070477e-01 9.50443223e-02 4.36996490e-01 -1.80994526e-01\\n-1.20303994e-02 1.48653895e-01 -1.56031653e-01 2.54098207e-01\\n-5.90734482e-01 -2.97638565e-01 2.63393391e-02 -4.36099572e-03\\n6.64930493e-02 -1.31585404e-01 -1.88900888e-01 -3.77781573e-03\\n-2.10251406e-01 -1.08694516e-01 -4.06018078e-01 -2.85509497e-01\\n-1.91541821e-01 1.30689204e-01 -1.70066193e-01 -2.11650997e-01\\n-4.28749099e-02 -4.33932841e-01 -1.24317467e-01 7.71997571e-02\\n3.64081919e-01 -1.61468804e-01 -1.22163266e-01 -1.08903296e-01\\n2.88340122e-01 2.54437834e-01 5.19906402e-01 -7.03713819e-02\\n8.31739753e-02 -9.22845900e-02 -1.90660119e-01 1.43151581e-01\\n2.79047037e-03 2.97594368e-01 1.14800535e-01 4.55013812e-01\\n-4.39203113e-01 -1.89027250e-01 3.12027000e-02 4.29935753e-01\\n-3.67066145e-01 -4.82384376e-02 -1.53742284e-01 1.84001431e-01\\n2.35982146e-02 3.93803008e-02 -1.40048414e-01 1.25499651e-01\\n-1.53455585e-01 -5.57482123e-01 4.38541204e-01 -1.53940231e-01\\n-2.68663466e-02 1.76729456e-01 2.40116671e-01 3.90539944e-01\\n-1.21646017e-01 6.55655116e-02 -5.61428517e-02 1.87141508e-01\\n6.52832240e-02 3.88164759e-01 -1.76751003e-01 -2.92770028e-01\\n-2.38778323e-01 2.61063039e-01 -1.25930890e-01 1.07358687e-01\\n4.39232141e-02 2.41340667e-01 4.89918776e-02 3.99572682e-03\\n4.37632263e-01 -1.16230391e-01 -3.27830195e-01 -2.12156311e-01\\n-2.14274064e-01 -7.37738535e-02 1.03754140e-01 -3.99301248e-03\\n2.03367069e-01 -4.08034354e-01 -1.35590762e-01 -1.84247792e-01\\n-6.44982085e-02 -2.49246821e-01 -1.43534496e-01 5.95390126e-02]]',\n", + " 'Job Informationen You will work with other engineers to ensure that new features are designed, implemented and operated to the highest possible security standard. You will review designs, code, perform in-depth assessments and closely work with the engineers to resolve issues at a very detailed level. Further responsibilities include the engineering, implementation and monitoring of security tooling for automated monitoring, code review, security tests, scanning and much more - all to ensure the day-to-day operational security tasks are as automated as possible, enabling a deeper product security focus. You should be as comfortable reviewing code across multiple platforms as you are handling a security incident. Your passion for the field should see you keeping yourself up-to-date about the latest vulnerabilities, exploits and trends, as well as the latest countermeasures. Requirements University degree in Computer Science or Engineering, or equivalent experience A minimum 8 years of work experience Proficient in at least one of the top languages, particularly Go, Java or Python and be willing to learn more. You have experience with performing application code reviews, design reviews and penetration testing. Strong communication skills in verbal and written English and German (optional) Experience working with distributed systems Experience in penetration testing web-based apps, mobile apps and back-end infrastructure Experience implementing modern-day cryptosystems Problem solving skills and ability to work under pressure Benötigte Skills JAVA Go Python Security',\n", + " '[\"Verbal Communication Skills\", \"Infrastructure\", \"Problem Solving\", \"Operations\", \"Written English\"]',\n", + " '[\"Distributed File Systems\", \"Automation\", \"Tooling\", \"Cryptosystem\", \"Security Testing\", \"Computer Science\", \"Automated Code Review\", \"Mobile App\", \"Python (Programming Language)\", \"Levelling\", \"Code Review\", \"Penetration Testing\", \"Operations Security\", \"Design Codes\", \"Design Review\", \"Exploitation\", \"Vulnerability\", \"Back End (Software Engineering)\", \"Cyber Security Standards\", \"Java (Programming Language)\"]',\n", + " \"['English', 'Zhuang', 'Kanuri', 'Aragonese', 'Sundanese']\"],\n", + " ['16',\n", + " 'software engineer (position keeping)',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-2.00253054e-01 2.56725699e-01 5.41780770e-01 1.75821991e-03\\n6.37378335e-01 -1.04170382e-01 -1.41443953e-01 3.36291552e-01\\n4.73299511e-02 -3.86223912e-01 -9.24882665e-02 -2.22091779e-01\\n-5.11610657e-02 8.25501010e-02 5.00927716e-02 2.74111688e-01\\n3.84074479e-01 9.62766334e-02 -1.62377097e-02 3.53015929e-01\\n-9.56607461e-02 -7.12777674e-02 2.28637919e-01 7.16766953e-01\\n2.95270681e-01 1.58153847e-02 -2.89820302e-02 9.78332385e-02\\n-1.86303765e-01 -2.61680901e-01 4.63883519e-01 1.39251798e-01\\n-1.14017770e-01 -4.11439210e-01 1.05947703e-01 1.25802327e-02\\n-1.97914332e-01 -5.92882782e-02 -1.81843191e-01 7.56517053e-02\\n-3.72939497e-01 -1.64551973e-01 -5.02287298e-02 2.99674440e-02\\n-3.19385767e-01 -3.25118363e-01 4.09052595e-02 -1.09895587e-01\\n1.43684015e-01 6.73452020e-03 -4.49263215e-01 2.82347739e-01\\n-2.86655545e-01 -2.74314195e-01 3.36229086e-01 6.40236855e-01\\n-3.23326290e-02 -3.94684106e-01 -5.29504478e-01 -3.50726783e-01\\n9.62220505e-02 -8.91209543e-02 5.98588958e-04 -3.87542486e-01\\n2.81670064e-01 8.58276263e-02 8.47088397e-02 1.75000131e-01\\n-8.25500727e-01 -2.54480932e-02 -2.44124860e-01 -4.48711999e-02\\n-4.52388227e-01 -1.70490518e-01 -3.83371115e-01 -1.39028877e-01\\n-1.02107912e-01 4.15430784e-01 9.28360373e-02 1.35098070e-01\\n-1.43828779e-01 2.96394020e-01 -2.77781337e-01 3.85856628e-01\\n2.43246153e-01 1.56070054e-01 2.78646111e-01 3.36835504e-01\\n-3.46685737e-01 5.21448731e-01 1.40832931e-01 -3.61034691e-01\\n2.23812938e-01 8.62870216e-02 3.17121625e-01 -1.20271102e-01\\n2.05742329e-01 1.31442502e-01 -2.62441099e-01 3.29913855e-01\\n2.93149441e-01 -2.20600396e-01 -4.45324816e-02 -1.18442461e-01\\n1.57576174e-01 6.96880091e-03 6.20250627e-02 5.62660508e-02\\n-3.16687644e-01 3.24837029e-01 1.35181457e-01 -3.27113897e-01\\n-5.94355613e-02 -4.68972206e-01 -7.50185996e-02 2.92240232e-02\\n-3.86207886e-02 -5.50734401e-02 4.20788452e-02 1.29700080e-01\\n2.58344591e-01 3.35050561e-02 1.27199009e-01 7.15238571e-01\\n-1.23955905e-01 1.23675019e-02 -2.46815771e-01 3.10856521e-01\\n1.58585683e-02 -2.45879143e-01 2.65575141e-01 2.38004178e-01\\n-5.44337668e-02 -4.73384969e-02 -2.09684461e-01 2.54482865e-01\\n2.71537900e-02 -2.18452170e-01 -1.68906957e-01 2.88479239e-01\\n3.26526165e-02 -3.96604836e-01 5.29513240e-01 1.12845905e-01\\n8.37704539e-02 -6.57300875e-02 -7.67123699e-03 -1.08603001e-01\\n-1.37339652e-01 7.28671402e-02 1.66302323e-02 2.16577023e-01\\n-3.23907197e-01 -1.83171421e-01 -1.48729801e-01 5.99237233e-02\\n-3.25153410e-01 2.22405754e-02 -3.21388006e-01 -8.18846151e-02\\n1.77942067e-01 7.75477216e-02 -3.52483124e-01 1.07007399e-01\\n-1.01218246e-01 1.76572576e-02 2.84767412e-02 4.71396267e-01\\n-1.25606745e-01 2.78333068e-01 -1.26631886e-01 -7.14727491e-02\\n5.55412769e-01 1.11355364e-01 1.36499241e-01 -2.83601359e-02\\n2.72205830e-01 -1.11410439e-01 2.26684660e-01 1.28734440e-01\\n-7.28409708e-01 3.75975966e-01 -3.14003825e-02 -9.20988172e-02\\n1.23331614e-01 -8.31139237e-02 2.32134283e-01 -2.88026512e-01\\n2.50054095e-02 -1.30247504e-01 -3.46476257e-01 -3.17628682e-01\\n-2.22340673e-01 -2.36976855e-02 3.39171141e-01 -6.03927374e-01\\n-9.88859981e-02 2.09592640e-01 -4.75752652e-01 -1.39879227e-01\\n1.12196058e-01 2.41157711e-01 7.27632567e-02 9.49385762e-02\\n-1.29994363e-01 -5.39737880e-01 1.06692791e-01 -4.30015087e-01\\n-1.46197557e-01 7.51147792e-02 -3.08089226e-01 1.83631301e-01\\n4.22103442e-02 -1.23760127e-01 -9.68625546e-02 1.03868321e-01\\n-3.25016290e-01 7.52039701e-02 8.79803002e-02 2.01716926e-02\\n3.10152590e-01 6.95693344e-02 -3.28544855e-01 4.52286065e-01\\n-2.73740590e-01 5.01670837e-01 1.39824659e-01 -8.16060662e-01\\n4.77836221e-01 3.00695479e-01 -1.13826972e-02 -4.11189437e-01\\n4.92633164e-01 -4.66104746e-01 -6.43799603e-02 3.47560160e-02\\n-4.45547581e-01 -2.66873002e-01 2.23177165e-01 -1.26347423e-01\\n-2.28768274e-01 4.55716640e-01 -3.17573696e-02 1.35509700e-01\\n2.91828573e-01 -2.65423059e-01 -2.18783289e-01 5.08541316e-02\\n-1.20374113e-01 -2.24416673e-01 -6.57539368e-01 -2.00394273e-01\\n-9.45184305e-02 -4.13397253e-01 -1.88765258e-01 -3.79548490e-01\\n-2.05975950e-01 -3.39237422e-01 -1.41895562e-01 2.10496709e-01\\n1.66640177e-01 1.07752115e-01 -1.08117715e-01 1.54858291e-01\\n-7.02537224e-02 -6.94647074e-01 1.28809109e-01 1.71377152e-01\\n3.67131680e-01 1.42096207e-01 2.12058812e-01 -7.37743452e-03\\n1.18400291e-01 6.43516064e-01 -1.80779666e-01 -3.06719422e-01\\n1.69384822e-01 2.09129632e-01 3.20081487e-02 -7.99533799e-02\\n1.19974628e-01 3.15935552e-01 -2.79965997e-01 6.27184510e-02\\n1.04158998e-01 -8.03146660e-02 4.62717175e-01 -4.06848043e-02\\n-2.27733374e-01 -1.81162283e-01 -1.44526690e-01 1.43507496e-01\\n-6.49266958e-01 -2.75185823e-01 5.65653145e-01 1.76949769e-01\\n1.34163052e-01 1.77874684e-01 1.78720891e-01 2.95347460e-02\\n-1.62256420e-01 -2.09216177e-01 3.48073125e-01 5.55691607e-02\\n1.85492843e-01 1.53151914e-01 -1.34279877e-01 -5.94111085e-01\\n-3.63031387e+00 -1.63273960e-01 1.27723739e-01 -2.09938049e-01\\n3.03180784e-01 -1.35935947e-01 1.66427746e-01 -7.51478970e-02\\n-2.72680581e-01 3.74052152e-02 -2.01947421e-01 -1.70289621e-01\\n1.74876869e-01 1.84517235e-01 1.17071882e-01 1.52325481e-01\\n2.00516403e-01 -2.01605752e-01 3.65168005e-02 3.80984306e-01\\n-1.50154218e-01 -7.36844182e-01 1.27956614e-01 6.06299844e-03\\n2.09820688e-01 1.86120242e-01 -3.86659533e-01 -1.20411530e-01\\n-1.94244727e-01 -1.24452516e-01 -3.10685672e-02 -3.10537159e-01\\n-9.64259729e-02 1.75015509e-01 2.53979445e-01 -1.36170164e-01\\n2.05385052e-02 -3.64001334e-01 -1.19523451e-01 -4.65491086e-01\\n2.50575870e-01 -5.55996299e-01 1.03412412e-01 -1.50008857e-01\\n6.73502803e-01 -3.12322378e-01 3.52610089e-02 9.23263282e-02\\n1.12087086e-01 1.86502263e-01 2.65754282e-01 2.31253300e-02\\n-1.86453700e-01 -3.16389680e-01 -1.84369117e-01 -2.05597937e-01\\n5.79190969e-01 3.83203626e-01 -1.86523110e-01 4.86568362e-02\\n2.04424020e-02 -3.87336195e-01 -4.66488749e-01 -2.94489980e-01\\n-5.20526543e-02 -2.26973802e-01 -6.37695789e-01 -5.16025901e-01\\n-1.53665274e-01 -1.11677542e-01 -1.14568867e-01 6.42892361e-01\\n-3.43562305e-01 -3.42501760e-01 -8.81535262e-02 -4.38975126e-01\\n3.91891986e-01 -1.68852240e-01 6.01179525e-02 -2.38230497e-01\\n-1.14625640e-01 -3.52115631e-01 6.79871291e-02 1.08076036e-02\\n-8.73502344e-02 -3.53127420e-01 1.62091777e-01 3.82128358e-02\\n-3.98470044e-01 -5.83948195e-01 5.34913242e-01 1.31564349e-01\\n3.34865600e-01 2.92871799e-02 2.85449088e-01 -1.22587450e-01\\n2.15833515e-01 -1.76380761e-03 -1.87780172e-01 -4.18067336e-01\\n1.07344396e-01 1.65638374e-03 4.98883307e-01 -1.54417634e-01\\n2.26072166e-02 1.82448663e-02 -2.26226658e-01 -2.20833421e-02\\n2.89610982e-01 9.23598483e-02 9.42889899e-02 -1.52496353e-01\\n3.27075779e-01 -3.47938538e-01 -1.18684903e-01 1.34175777e-01\\n9.59727168e-02 4.82382983e-01 7.01077059e-02 -2.90034086e-01\\n-1.29983306e-01 5.01850665e-01 7.04220980e-02 -6.64546192e-02\\n-2.43571371e-01 3.27995792e-02 -2.47607172e-01 2.65242249e-01\\n1.36703819e-01 -1.77528664e-01 -1.51104778e-01 -1.08857922e-01\\n-4.54243273e-04 3.10188472e-01 2.79992044e-01 2.61576384e-01\\n2.88770832e-02 -3.60387146e-01 2.65394039e-02 8.55474472e-02\\n1.53134391e-01 5.25461912e-01 1.39566079e-01 -2.29223579e-01\\n2.15089098e-02 2.63457060e-01 -5.50530814e-02 3.45617533e-01\\n-1.04265384e-01 9.42513794e-02 -5.71432710e-01 -1.94097340e-01\\n-3.89731348e-01 -3.22093606e-01 1.47665679e-01 3.28908920e-01\\n1.84581414e-01 -1.42440632e-01 3.54361013e-02 -3.96993577e-01\\n2.85804272e-01 2.03175485e-01 2.42241174e-01 9.43106413e-02\\n-2.21238658e-02 6.35178268e-01 -8.03719684e-02 -2.23663226e-01\\n-1.17810845e-01 1.92082286e-01 -1.19993366e-01 -1.15948178e-01\\n-1.13024935e-03 -5.72870076e-01 -1.03039861e-01 3.77402246e-01\\n5.44861518e-02 -1.56006277e-01 -2.58324683e-01 3.16854775e-01\\n-8.12807381e-02 -2.52403647e-01 -2.52755523e-01 -4.13993970e-02\\n3.33888173e-01 1.16900906e-01 2.76557446e-01 -4.87096906e-01\\n-5.35831414e-02 8.24420750e-02 8.67883582e-03 5.19230366e-01\\n2.29519866e-02 -8.39923620e-02 -3.77933644e-02 -1.70647204e-01\\n3.90929878e-01 7.31684119e-02 -1.55213296e-01 6.44790977e-02\\n6.47011101e-02 -9.93148424e-03 -4.11862195e-01 1.34115517e-01\\n2.99596079e-02 -2.36174673e-01 1.69366430e-02 1.02244094e-01\\n1.90463886e-01 2.15886056e-01 -6.62147284e-01 -1.93811089e-01\\n-3.01491439e-01 3.33852470e-02 -1.30592082e-02 -5.82640409e-01\\n3.95435691e-02 -1.07773766e-01 -5.62166095e-01 2.06546962e-01\\n-1.86582774e-01 -1.44707263e-01 1.20220572e-01 8.67137834e-02\\n-3.07883322e-01 -8.31605196e-02 1.14147916e-01 2.12470651e-01\\n-3.22657138e-01 -7.83331394e-02 -1.30013213e-03 -8.68655860e-01\\n2.79167414e-01 -1.24874398e-01 -1.59177005e-01 1.47986889e-01\\n-1.06386617e-01 -7.33532667e-01 1.23930290e-01 -3.04254234e-01\\n-2.71986634e-01 -5.28188311e-02 -2.98714519e-01 -3.26280057e-01\\n5.28810620e-02 -5.87306879e-02 -2.06700444e-01 4.07494843e-01\\n-3.54368836e-01 4.34832066e-01 -1.12032548e-01 8.02555978e-02\\n1.02613956e-01 -3.30150545e-01 4.11836915e-02 -2.81693280e-01\\n-4.30717915e-01 -2.15868890e-01 -2.13985473e-01 -3.17880780e-01\\n3.89149114e-02 -4.11271572e-01 -1.46660924e-01 -9.40907449e-02\\n4.58888561e-01 6.67166263e-02 -2.56692648e-01 -1.64144963e-01\\n9.61420983e-02 -4.57513869e-01 1.42309725e-01 -1.30509183e-01\\n3.38265002e-02 -4.77819107e-02 2.90095806e-01 4.27330136e-02\\n3.04952294e-01 -4.42543030e-01 3.38397205e-01 -3.58795792e-01\\n-2.84870386e-01 -4.03209068e-02 9.17144120e-02 1.79410353e-03\\n3.06283861e-01 -5.19559860e-01 -1.16780385e-01 3.54429722e-01\\n1.62966013e-01 -4.06953469e-02 1.20828465e-01 -1.11686379e-01\\n-9.14954208e-03 3.50122899e-01 -3.54900599e-01 2.55668849e-01\\n8.67429614e-01 1.32999972e-01 2.08330557e-01 2.36940712e-01\\n1.50042430e-01 3.74801934e-01 5.20135283e-01 5.55534437e-02\\n-5.65125011e-02 3.55697870e-01 8.15863386e-02 -4.36548173e-01\\n-8.99201930e-02 7.03963637e-02 -2.54195571e-01 -4.26608473e-01\\n6.11744940e-01 3.92454714e-01 -4.62679505e-01 -2.50969708e-01\\n-2.60644406e-01 -2.76888996e-01 1.19455062e-01 -5.44107109e-02\\n5.24482839e-02 -9.80955064e-02 3.18294346e-01 -1.05274394e-01\\n2.66278744e-01 4.97735262e-01 -2.08518088e-01 -3.21853042e-01\\n-1.00336641e-01 1.85142577e-01 1.01524562e-01 5.35207033e-01\\n-1.63123682e-01 2.32019380e-01 5.19704595e-02 9.70381647e-02\\n-2.18808323e-01 2.18079500e-02 1.74398422e-01 3.64172980e-02\\n1.72202706e-01 -7.47798337e-03 5.02774477e-01 3.54192972e-01\\n3.18867683e-01 4.11955774e-01 2.78473496e-01 1.10735014e-01\\n4.79550600e-01 6.35231137e-01 3.29063356e-01 -2.42453422e-02\\n-3.02273128e-02 2.70658322e-02 2.21769631e-01 -1.56988092e-02\\n3.93181562e-01 4.55491900e-01 1.22193001e-01 8.49608481e-01\\n3.34301829e-01 4.55593169e-01 7.10908353e-01 -5.58823824e-01\\n-3.81833434e-01 1.46765828e-01 4.47062314e-01 -4.68874991e-01\\n1.15477867e-01 2.01174736e-01 -2.34872669e-01 3.04798305e-01\\n-4.36026812e-01 -1.08221345e-01 -4.11844216e-02 1.10485032e-01\\n-5.94637729e-02 -2.38137227e-02 -1.49816036e-01 1.57871544e-01\\n-3.42082344e-02 -1.76473469e-01 -4.36335921e-01 -1.74998760e-01\\n-2.49478176e-01 -1.20562389e-01 -3.31049301e-02 -1.44635081e-01\\n1.07141063e-02 -3.20616901e-01 -1.61507241e-02 -1.64926887e-01\\n3.21701884e-01 -2.14850962e-01 -1.52012318e-01 -9.34731215e-02\\n1.94382578e-01 1.54722810e-01 6.29607797e-01 4.83101234e-02\\n1.05783090e-01 -2.15384468e-01 -1.73423439e-01 1.25273660e-01\\n9.59721729e-02 3.21118794e-02 -4.87010926e-04 2.75926292e-01\\n-3.35823894e-01 -1.42027318e-01 3.11543584e-01 2.41832569e-01\\n-3.40193033e-01 1.06543511e-01 -1.17866851e-01 2.33647957e-01\\n4.28262986e-02 1.38848811e-01 -2.57634938e-01 -4.66632843e-03\\n-2.01022461e-01 -4.91586745e-01 3.36051822e-01 -1.45804316e-01\\n-4.30267751e-02 -4.40209210e-02 3.04796189e-01 2.28961736e-01\\n-2.67180443e-01 -4.76936437e-02 -1.82190120e-01 7.17667788e-02\\n7.49549493e-02 3.25387239e-01 -2.11756170e-01 -2.72507697e-01\\n-8.94372761e-02 2.04111487e-01 -4.81966697e-02 3.57159674e-02\\n-2.52138823e-03 4.49052632e-01 4.92451340e-02 1.02756284e-01\\n4.61591363e-01 -1.04408383e-01 -3.28928888e-01 -2.09496215e-01\\n-3.29737782e-01 -5.82334995e-02 -3.58589552e-02 -1.09553680e-01\\n2.23121434e-01 -3.33356142e-01 -5.99271208e-02 -1.56568512e-01\\n-1.52160063e-01 -4.27850902e-01 -1.30253602e-02 -2.51228604e-02]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team When you buy shares, take out a loan, withdraw money from an ATM or perform some other financial transaction, there is a good chance that you have used our software. We implement the technical banking framework which manages how financial systems keep track of financial transactions and positions. We are looking for a motivated software engineer who is interested in the banking business and challenging technical problems. We want you to join us to build on the best banking software product on the market. As a member of the development team Subledger and Position Keeping, you will be part of a group of highly skilled, motivated and dynamic people that are responsible for very central parts, such as the whole position keeping for varied financial products, within the Avaloq Banking Suite. We will place a large amount of trust in you and give you the freedom to help us shape the core banking technical framework on which the rest of the company is based. The company’s non-hierarchical structure will put you in contact with a wide range of industry experts. Along with these experts, external partners and customers will constantly help and challenge you to improve your knowledge of how to create great software and of the business which it serves. Together with our software professionals you analyse customer requirements and drive the design of new functionalities or the enhancement of existing features. The Avaloq Banking Suite is one of the largest PL/SQL applications in the world. Development takes place in our integrated development environment - a customized Eclipse platform, which is tightly integrated with a build automation and delivery system, allowing a standardised and automated process to be followed. Your mission Drive the design of new products and functionality in collaboration with the business analysts, product owners, software architects and fellow developer Analyse and implement customer requirements Maintenance of existing functionality Work in an Agile environment, helping us to improve our processes Provide support to other development teams (some in other international locations) that need to modify/use the software that is under your care Technical support of customer projects (new implementation of the Avaloq Banking Suite or upgrades) Work on interdisciplinary innovation projects Extension of Avaloq’s standard product configuration (Avaloq Banking Reference). Development of automated tests) What you need A university degree in computer science, business informatics, computer/electronic engineering or equivalent experience Open minded, team oriented and communicative Eager to learn and take on new challenges Solid knowledge of software engineering Experience in development of complex applications Interested in the banking business Strong written and spoken English language skills You will get extra points for the following Strong analytical and problem-solving skills and the ability to think abstractly is a strong plus Knowledge of SQL/relational database systems Experience with PL/SQL Basic understanding of double entry bookkeeping German language Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zürich Don’t be shy – apply! Avaloq Evolution AG Alina Tauscher, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " '[\"Writing\", \"Team Oriented\", \"Professionalism\", \"Motivational Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Integration\", \"Innovation\", \"Positivity\"]',\n", + " '[\"PL/SQL\", \"Automation\", \"EN 1993 Building Codes\", \"Agility\", \"Development Environment\", \"Computer Science\", \"Analytics\", \"Building Automation\", \"Industrialization\", \"Wealth Management\", \"Product Configuration\", \"Electronic Engineering\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Track (Rail Transport)\", \"Bookkeeping\", \"Eclipse (Software)\", \"Business Informatics\", \"Software Engineering\", \"Technical Support\", \"Software Product Management\", \"Library For WWW In Perl\", \"Database Systems\", \"Banking Software\", \"Build Automation\", \"Financial Transaction Tax\", \"Banking\", \"Relational Databases\", \"Loans\", \"New Product Development\", \"SQL (Programming Language)\", \"Financial Systems\", \"Integrated Delivery Systems\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'Sundanese', 'Zhuang', 'Church Slavonic', 'Inuktitut']\"],\n", + " ['57',\n", + " 'data scientist',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.74159169e-01 3.37610811e-01 6.32986605e-01 -1.04096882e-01\\n5.10776281e-01 -1.76928371e-01 1.23440638e-01 3.22047621e-01\\n-2.33702168e-01 -3.37552518e-01 -1.90123260e-01 -2.75692314e-01\\n7.80085241e-03 7.53872395e-02 1.09145135e-01 3.93530756e-01\\n3.25709432e-01 6.66375384e-02 -1.34673268e-01 2.74409086e-01\\n1.91011846e-01 -4.79138009e-02 1.01544745e-01 6.11031294e-01\\n5.03775716e-01 -2.43258756e-02 -1.26253977e-01 1.90617010e-01\\n-2.13395208e-01 -2.97951698e-01 4.78870898e-01 7.68620595e-02\\n-1.54280111e-01 -8.58569890e-02 1.20153680e-01 1.32139876e-01\\n-1.98134676e-01 -1.18758297e-02 -1.84955318e-02 8.06215107e-02\\n-3.25358719e-01 -6.90306362e-04 -5.68117760e-02 -4.85117733e-02\\n-3.09198499e-01 -4.18812394e-01 -9.12849512e-03 7.69227967e-02\\n1.34908944e-01 4.71007489e-02 -4.08304185e-01 4.18267071e-01\\n-1.96686268e-01 -3.48830640e-01 1.54758364e-01 6.97228849e-01\\n-1.30681545e-01 -4.81871367e-01 -3.51434112e-01 -2.41023108e-01\\n1.58826023e-01 -1.42202780e-01 9.51188058e-02 -3.16717595e-01\\n6.11325502e-01 -3.72919887e-02 -7.09644705e-02 3.16210002e-01\\n-7.93446243e-01 -1.25272404e-02 -2.60333747e-01 -5.62610999e-02\\n-3.81852329e-01 3.03002503e-02 -3.53429973e-01 -1.82362080e-01\\n-7.90536255e-02 4.73523527e-01 4.97084558e-02 1.70599446e-01\\n-6.70160353e-02 2.16389358e-01 -3.22141975e-01 2.18345866e-01\\n1.92865342e-01 4.67429608e-01 1.74280331e-01 2.93980598e-01\\n-4.25263464e-01 3.78605843e-01 1.35690093e-01 -2.79087335e-01\\n1.88520551e-01 1.75940886e-01 4.24600840e-01 6.07181676e-02\\n1.93554625e-01 5.80913648e-02 -2.74738461e-01 2.51863897e-01\\n2.85106689e-01 -3.78318608e-01 6.08693212e-02 6.29624492e-03\\n-1.15190089e-01 1.12603977e-01 2.96976157e-02 2.66180962e-01\\n-3.74638081e-01 5.85921526e-01 -3.53540778e-02 -1.68602869e-01\\n-3.10806669e-02 -6.26818895e-01 -2.42606565e-01 1.63050294e-01\\n1.76286101e-01 2.74258226e-01 1.73404694e-01 4.34776276e-01\\n1.55279592e-01 6.03402182e-02 2.51504123e-01 9.16888773e-01\\n-7.53450319e-02 1.51415005e-01 -2.12091118e-01 4.77181941e-01\\n1.02437474e-01 -2.65336782e-01 2.58151263e-01 3.27646822e-01\\n1.49589211e-01 -1.00332119e-01 -2.57143557e-01 3.00071329e-01\\n-2.83816997e-02 -3.42744738e-01 -3.26590002e-01 1.53501138e-01\\n-1.20047443e-01 -6.43521845e-01 6.01870775e-01 -1.41520258e-02\\n8.65502134e-02 -6.21086843e-02 -3.15526091e-02 -6.91452920e-02\\n-3.84814292e-02 2.12042525e-01 1.22506566e-01 7.51162395e-02\\n-2.87874371e-01 -1.88766375e-01 -3.12698990e-01 2.30228215e-01\\n-4.70165908e-01 7.82576278e-02 -1.03938386e-01 -3.21434364e-02\\n2.73469776e-01 -9.23965797e-02 -3.50062072e-01 3.06634456e-01\\n-1.85352996e-01 -2.12948650e-01 -5.90674169e-02 3.77094477e-01\\n-2.21138328e-01 2.02790678e-01 -6.15214892e-02 -2.66010076e-01\\n4.94493216e-01 1.13771051e-01 1.51890993e-01 3.03541608e-02\\n3.27505678e-01 2.59406422e-03 1.61155343e-01 1.24708213e-01\\n-8.91785026e-01 4.54784781e-01 -8.39888752e-02 -2.64141798e-01\\n5.33160791e-02 3.78018804e-02 3.57734919e-01 -3.40982914e-01\\n1.64094016e-01 -1.48132905e-01 -2.67909676e-01 -2.25646198e-01\\n-2.81551391e-01 1.42808603e-02 4.81201559e-01 -4.54883993e-01\\n-1.28290832e-01 1.18064046e-01 -6.25424445e-01 9.40724686e-02\\n1.89791322e-01 1.58928111e-01 1.57106251e-01 1.86391696e-01\\n-1.04942575e-01 -5.48361540e-01 1.57844722e-01 -3.81006211e-01\\n-2.72294879e-01 2.51898885e-01 -3.62704009e-01 2.42142648e-01\\n1.84072226e-01 -4.22423594e-02 -7.22486302e-02 1.05826102e-01\\n-1.09347440e-01 -7.03085884e-02 1.98767096e-01 4.30995300e-02\\n4.77663964e-01 -2.46721320e-02 -4.03442204e-01 5.76572180e-01\\n-1.34788185e-01 3.98016423e-01 2.19209433e-01 -8.84030879e-01\\n4.94953811e-01 2.88229972e-01 1.45768628e-01 -3.08245629e-01\\n8.53734434e-01 -1.42586574e-01 -1.76400557e-01 1.20398231e-01\\n-3.90305042e-01 -2.70595014e-01 1.19539447e-01 -1.88488930e-01\\n-2.80934364e-01 4.93767858e-01 1.43255383e-01 1.38819575e-01\\n3.03464800e-01 -1.40080228e-01 -2.03393102e-01 1.66626304e-01\\n-1.98669434e-01 -3.08718443e-01 -4.08456147e-01 6.64917007e-02\\n7.11182645e-03 -4.77914691e-01 -1.55877903e-01 -5.15757501e-01\\n-1.95145741e-01 -3.99363995e-01 -8.38577896e-02 3.38394940e-01\\n8.70238394e-02 1.62593469e-01 3.34079415e-02 -1.75831303e-01\\n-3.02891076e-01 -5.37948549e-01 -1.00566909e-01 5.72912507e-02\\n3.89182061e-01 5.86620048e-02 8.34489763e-02 -8.49191099e-03\\n5.35918064e-02 6.51558101e-01 -2.04254881e-01 -3.06933492e-01\\n1.34450763e-01 1.86007053e-01 -7.45788813e-02 -7.07061961e-02\\n7.64248893e-02 3.43336195e-01 -2.72923529e-01 3.51957530e-02\\n-1.80335760e-01 1.04238272e-01 2.40936533e-01 -5.18822409e-02\\n-1.46691486e-01 -3.63116264e-01 -1.19817019e-01 2.13153124e-01\\n-5.62546313e-01 -3.18529159e-01 6.55937493e-01 1.69471055e-01\\n8.93241465e-02 5.82798906e-02 1.91726893e-01 -4.78999391e-02\\n-1.93732589e-01 -1.79378957e-01 1.76786900e-01 3.99150960e-02\\n8.46013352e-02 2.00013831e-01 -9.15069133e-02 -4.43638533e-01\\n-3.65405273e+00 -1.80417344e-01 5.57221957e-02 -2.16846511e-01\\n1.96865469e-01 -1.54008791e-01 1.13001958e-01 -1.26782551e-01\\n-2.77021796e-01 5.87999411e-02 -1.87859878e-01 -2.12990791e-01\\n1.36187643e-01 3.23811203e-01 2.21168250e-01 2.28244528e-01\\n1.26086324e-01 -3.07552189e-01 -1.10397546e-03 4.13926870e-01\\n-1.31254688e-01 -5.19708812e-01 2.01134101e-01 -1.73543058e-02\\n2.95369476e-01 3.02609861e-01 -2.93488979e-01 -5.15297875e-02\\n-2.84671158e-01 -3.21647346e-01 1.61086455e-01 -2.64134288e-01\\n-8.95985961e-02 3.90048444e-01 2.06880972e-01 -5.77176958e-02\\n1.64156452e-01 -2.89775580e-01 -6.22943006e-02 -3.23340029e-01\\n1.39087975e-01 -5.36502004e-01 -9.58459303e-02 -5.49979731e-02\\n7.41481781e-01 -4.08422053e-01 1.48745805e-01 5.43498583e-02\\n3.83405536e-02 1.68305933e-01 1.13388680e-01 -1.37711480e-01\\n-1.60727710e-01 -2.55754650e-01 -9.91198514e-03 -2.29229152e-01\\n5.91568172e-01 5.70663154e-01 -2.11375773e-01 -3.89424413e-02\\n1.32358760e-01 -2.59089291e-01 -5.44301391e-01 -5.43766141e-01\\n-1.90121710e-01 -1.08825684e-01 -6.17098927e-01 -6.46651328e-01\\n-4.82969135e-02 -1.77191257e-01 -3.60663049e-02 4.10772413e-01\\n-1.59459904e-01 -3.39491725e-01 -2.11655825e-01 -3.72076541e-01\\n2.38791540e-01 -9.86162797e-02 -5.07791862e-02 -1.40017658e-01\\n-1.92202359e-01 -5.30235171e-01 -8.94910395e-02 1.18634114e-02\\n-3.75514589e-02 -1.73680425e-01 2.29940057e-01 -2.28304684e-01\\n-4.32053179e-01 -5.18529356e-01 4.99954104e-01 -7.67195877e-03\\n3.18934977e-01 2.12811425e-01 1.49624303e-01 1.29515380e-01\\n3.09919089e-01 -3.20411235e-01 1.13498129e-01 -4.08704728e-01\\n9.09916162e-02 1.69389054e-01 4.96629179e-01 -2.34345302e-01\\n1.25310868e-01 2.34390646e-02 -2.03795344e-01 -1.73669636e-01\\n3.52008194e-01 -5.70731908e-02 1.70348614e-01 -3.07011366e-01\\n3.11449587e-01 -2.83378541e-01 -2.27256149e-01 1.52462289e-01\\n1.73500478e-02 5.52225530e-01 -6.99145254e-03 -3.12685609e-01\\n-1.47209316e-01 4.92266357e-01 -2.52374232e-01 -2.91149691e-02\\n-2.34611601e-01 3.48516144e-02 -2.61596382e-01 4.06386822e-01\\n-2.39280164e-02 -1.01019949e-01 -2.50219136e-01 -9.87142473e-02\\n5.67541905e-02 2.96956778e-01 4.05433059e-01 1.56943098e-01\\n4.71533574e-02 -3.97662193e-01 1.09559581e-01 1.06699608e-01\\n3.92384082e-01 2.73458868e-01 1.37981817e-01 -9.81113464e-02\\n-2.39373278e-02 2.68778980e-01 -2.07633033e-01 2.64224529e-01\\n-2.17288226e-01 7.86127374e-02 -4.73005831e-01 -3.88711005e-01\\n-2.35718265e-01 -2.67476469e-01 9.55964401e-02 2.06315786e-01\\n1.39542207e-01 -4.15066369e-02 3.40873003e-02 -4.32593286e-01\\n2.78660059e-01 7.75712505e-02 3.13747793e-01 1.62353545e-01\\n-1.47387087e-01 5.31094313e-01 -9.23211426e-02 -1.93027630e-02\\n-1.00148626e-01 1.34893343e-01 -2.40341946e-01 -1.42186627e-01\\n-5.76126687e-02 -5.16118944e-01 -7.39175379e-02 3.58045697e-01\\n1.33834869e-01 -3.27100962e-01 -2.05918342e-01 1.99233532e-01\\n-2.94661783e-02 -5.32969058e-01 -1.46249935e-01 4.08891514e-02\\n3.89277220e-01 1.20783843e-01 2.22787216e-01 -5.01138210e-01\\n6.90986076e-03 4.00661752e-02 -7.14216828e-02 4.03163612e-01\\n-6.88392371e-02 7.22995540e-03 2.91326130e-03 -2.84324795e-01\\n3.34298730e-01 -2.41863951e-01 -2.12238356e-02 4.35231403e-02\\n1.82643220e-01 -1.84244752e-01 -2.67392218e-01 -3.28050628e-02\\n-1.01621144e-01 -1.94732815e-01 -2.11356115e-02 9.28728208e-02\\n-5.55513203e-02 1.28251106e-01 -6.03217006e-01 -2.66701251e-01\\n-2.56851703e-01 -1.70726895e-01 -2.73046847e-02 -3.88177931e-01\\n-5.63815609e-03 -8.98531079e-02 -5.11775911e-01 2.94380754e-01\\n-8.52831081e-02 2.20850557e-02 2.17043966e-01 -8.43321308e-02\\n-3.31014484e-01 -1.76363513e-01 2.91098952e-01 2.31171250e-01\\n-3.23097408e-01 -1.76223069e-01 -1.07879072e-01 -9.66995060e-01\\n1.99077353e-01 1.06915655e-02 -6.90839067e-02 1.18711203e-01\\n-2.86572352e-02 -3.70634198e-01 1.82055548e-01 -5.09319782e-01\\n-9.18113440e-02 -3.87641340e-02 -3.02337617e-01 -3.81228417e-01\\n1.13231614e-01 1.85672238e-01 -2.77727932e-01 4.40083146e-01\\n-3.88970673e-01 3.21915329e-01 -2.35065687e-02 8.29701573e-02\\n-1.47689611e-01 -1.45058513e-01 5.09721562e-02 -3.35019141e-01\\n-3.69671762e-01 -9.01376382e-02 -1.43321022e-01 -1.21432342e-01\\n-4.56349030e-02 -2.64179885e-01 -1.05055653e-01 -2.61708396e-03\\n2.68238187e-01 1.43156394e-01 -1.52140945e-01 -7.02191889e-02\\n1.20972924e-01 -3.92282397e-01 -3.18160504e-02 -2.48903632e-01\\n-1.26688406e-01 -1.08237855e-01 1.46992385e-01 1.04872912e-01\\n3.54236327e-02 -3.75292987e-01 2.62142450e-01 -3.00062656e-01\\n-2.87245572e-01 9.10059437e-02 1.80830836e-01 5.76909110e-02\\n3.01194131e-01 -4.65094179e-01 -8.72469991e-02 4.44143713e-01\\n9.57387537e-02 1.40904382e-01 3.07736427e-01 -1.10900603e-01\\n-2.69042850e-01 4.30029869e-01 -3.69489223e-01 -5.09288646e-02\\n7.83908725e-01 3.38351876e-01 1.94277927e-01 2.04525501e-01\\n1.37326777e-01 3.10297310e-01 4.44158882e-01 1.19708017e-01\\n2.10691541e-02 4.54800189e-01 8.74161124e-02 -6.25064850e-01\\n6.27248585e-02 1.11879274e-01 -2.81737536e-01 -2.33830795e-01\\n6.12611711e-01 3.86091083e-01 -3.12427223e-01 -3.53459537e-01\\n-1.69712156e-01 -1.30875319e-01 2.38891542e-01 -1.44318774e-01\\n1.04649961e-01 -1.29990354e-01 4.90545720e-01 -1.06933720e-01\\n5.33149876e-02 4.58107203e-01 -2.55324900e-01 -2.50051677e-01\\n-6.25605732e-02 1.83780521e-01 1.07071139e-01 5.42647541e-01\\n-2.58609056e-01 3.29797059e-01 1.81031018e-03 2.23683327e-01\\n-1.17190361e-01 6.49629980e-02 3.58218431e-01 5.34724556e-02\\n1.39362976e-01 1.00770570e-01 2.26585850e-01 4.42650199e-01\\n2.80875623e-01 4.57783580e-01 2.31022030e-01 -2.32531372e-02\\n4.20621693e-01 4.24853265e-01 3.07903945e-01 2.23433584e-01\\n-2.98549552e-02 -7.71939233e-02 5.42614721e-02 -5.79893216e-03\\n1.99025795e-01 3.22845250e-01 4.48922664e-02 9.02114034e-01\\n3.66207510e-01 3.05928946e-01 6.80964649e-01 -6.25916004e-01\\n-4.06780779e-01 4.88804504e-02 4.54970151e-01 -4.67326999e-01\\n-1.15761392e-01 2.47231834e-02 -3.23830873e-01 1.46203905e-01\\n-5.53568959e-01 -2.17055753e-01 -1.41743705e-01 -3.95824201e-02\\n6.01592399e-02 -9.71162394e-02 -3.03052634e-01 -1.11460380e-01\\n-1.21884130e-01 -5.95332310e-02 -5.35667181e-01 -1.99593082e-01\\n-2.40810275e-01 -2.36846045e-01 -1.80764094e-01 -1.65303960e-01\\n-6.06713295e-02 -2.65615165e-01 -1.42208546e-01 2.98326034e-02\\n2.57583439e-01 -1.29467160e-01 -9.14196447e-02 -8.67619216e-02\\n1.91464648e-01 2.21810520e-01 5.27695298e-01 -1.22102991e-01\\n1.13259822e-01 -8.16389024e-02 -1.65111929e-01 5.92556484e-02\\n1.42112523e-01 6.17391169e-02 -2.76884641e-02 4.42933500e-01\\n-3.05534720e-01 -2.91576058e-01 -6.22137114e-02 3.31866473e-01\\n-5.64794004e-01 6.98598847e-02 6.28677979e-02 2.60065317e-01\\n6.28395844e-03 9.75773409e-02 -2.74697989e-01 4.44726720e-02\\n-2.29628667e-01 -4.98106003e-01 2.32364729e-01 -5.01548946e-02\\n-1.58210844e-01 8.27104971e-02 2.23257557e-01 1.51190028e-01\\n-1.45603970e-01 -2.35383749e-01 2.30863527e-03 1.16091892e-01\\n7.44408891e-02 2.37303838e-01 -2.10784853e-01 -2.89057612e-01\\n-3.27812672e-01 1.97639823e-01 -3.14291835e-01 2.05503881e-01\\n-5.88432923e-02 2.87641495e-01 1.26970172e-01 2.35756472e-01\\n2.58210897e-01 1.25476317e-02 -9.92365330e-02 -2.08201453e-01\\n-2.19911724e-01 -2.02710077e-01 1.33314148e-01 -2.05924429e-04\\n2.15275779e-01 -3.84161532e-01 -1.18480779e-01 -2.07286224e-01\\n-2.25694269e-01 -4.85371411e-01 -2.79661678e-02 -1.75728783e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Data Scientist. This role is permanent position based in Basel Canton. Your Role: Design & implement Predictive Analytics & Data Science applications. Look for solutions for the analysis & visualization of data for different problems. Act as a business enabler & advise departments on technology, methodology & operationalization. Partake in the development of new ideas & areas of application. Your Skills: Several years of professional experience as a Data Analyst or Data Scientist. Experience in the application & communication of machine learning algorithms or deep learning (e.g. GLMs, Random Forests, Support Vector Machines, Neural Networks). Sound experience in dealing with complex data structures. Good knowledge of relevant tools (R or R Studio, SQL, Python) & common BI tools (SAS VA, SAS EG, DataRobot). Your Profile: Completed University Degree with quantitative orientation (mathematics, statistics, business informatics). Very good understanding of overall corporate relationships. Strong analytical & conceptual skills & highly team & customer-oriented. Open, creative & innovative with a high level of self-initiative. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers',\n", + " '[\"Communications\", \"Creativity\", \"Innovation\", \"Positivity\"]',\n", + " '[\"E-Learning Development\", \"Tooling\", \"Advising\", \"Analytics\", \"SAS (Software)\", \"Business Statistics\", \"Mathematical Statistics\", \"Visualization\", \"Python (Programming Language)\", \"Random Forest Algorithm\", \"Business Informatics\", \"Machine Learning Methods\", \"Data Science\", \"Operationalization\", \"Conceptualization\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Deep Learning\", \"Receivables\", \"Data Structures\", \"Predictive Analytics\", \"Algorithms\", \"Support Vector Machine\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\"]',\n", + " \"['English', 'Afar']\"],\n", + " ['87',\n", + " 'data scientist',\n", + " 'Geneva',\n", + " '',\n", + " '',\n", + " '[[-1.59030765e-01 3.05771738e-01 5.39892972e-01 1.05333783e-01\\n6.34533286e-01 -9.08267200e-02 -8.61300528e-03 2.87301600e-01\\n5.87390922e-03 -4.79659677e-01 -8.92648548e-02 -2.97052383e-01\\n-7.39292577e-02 1.21020332e-01 2.20781658e-02 5.07072091e-01\\n3.03567469e-01 8.14346448e-02 -1.87940747e-01 2.96953142e-01\\n7.43706524e-02 -9.29804146e-02 4.58251089e-02 7.89629340e-01\\n4.74143952e-01 -1.43151702e-02 -5.69073483e-02 1.16670132e-01\\n-2.57331669e-01 -2.64452934e-01 4.85168397e-01 -3.23529169e-02\\n-1.77421510e-01 -3.80118400e-01 1.02973044e-01 1.70703515e-01\\n-1.99125260e-01 -1.37598187e-01 -1.47851795e-01 1.84715852e-01\\n-5.14566362e-01 -7.57456720e-02 -6.60754070e-02 8.39721486e-02\\n-3.16365123e-01 -3.91451836e-01 2.58635208e-02 -1.45247295e-01\\n1.44362122e-01 1.18642278e-01 -4.94508386e-01 2.12052822e-01\\n-2.75080264e-01 -1.84870929e-01 2.35694036e-01 6.70478582e-01\\n1.51512399e-03 -4.02477354e-01 -4.97543126e-01 -3.59198302e-01\\n9.25767720e-02 -1.50658906e-01 1.22838624e-01 -3.70105982e-01\\n3.99690211e-01 4.66080830e-02 -3.78477722e-02 2.71259785e-01\\n-8.29329014e-01 -2.01589614e-02 -3.52537245e-01 -2.43826732e-02\\n-4.90647256e-01 -5.53952791e-02 -4.04283166e-01 -1.27910212e-01\\n-6.88232630e-02 4.70293909e-01 -1.91524401e-02 9.96799320e-02\\n-2.43997827e-01 3.20378065e-01 -3.00431609e-01 3.05811107e-01\\n2.13524207e-01 2.67991275e-01 1.98792115e-01 3.72229755e-01\\n-4.57275450e-01 3.74540091e-01 1.32012665e-01 -3.45818639e-01\\n2.93994308e-01 1.82646096e-01 3.72238606e-01 -1.20889582e-02\\n8.55105221e-02 1.32453173e-01 -2.79835612e-01 3.51269901e-01\\n2.60522366e-01 -3.23884189e-01 9.79204290e-03 -1.84816107e-01\\n7.83771276e-02 -1.14791347e-02 4.54166234e-02 1.35431662e-01\\n-4.48100626e-01 3.87194514e-01 5.47514111e-02 -1.89774543e-01\\n-1.00859955e-01 -5.31426430e-01 -8.41822624e-02 1.87524240e-02\\n3.56121100e-02 2.73803324e-01 1.75294876e-01 2.39225447e-01\\n2.60785371e-01 2.59427428e-02 1.26777500e-01 8.75468612e-01\\n-6.65241927e-02 6.24817796e-02 -1.93348557e-01 3.70736480e-01\\n1.06152520e-01 -3.87865722e-01 3.76142263e-01 1.93805918e-01\\n-4.00710292e-02 -9.28439051e-02 -3.11713934e-01 3.63564134e-01\\n-1.03381619e-01 -1.68766648e-01 -2.56578386e-01 1.59328997e-01\\n2.22570561e-02 -4.50528562e-01 6.80511534e-01 2.96660811e-02\\n1.48321137e-01 -1.88584358e-01 3.07629183e-02 -1.52311921e-01\\n-4.35568169e-02 2.51223862e-01 9.43309814e-02 1.46918371e-01\\n-3.62109125e-01 -2.34360546e-01 -1.65322587e-01 1.82315782e-01\\n-3.68251473e-01 4.00787517e-02 -1.69931367e-01 -1.06244527e-01\\n2.35770434e-01 6.47546351e-02 -3.63037944e-01 1.42801493e-01\\n-1.76551580e-01 -1.61157206e-01 1.82815436e-02 4.30654168e-01\\n-2.19070479e-01 2.14081004e-01 -8.94428194e-02 -1.26985952e-01\\n6.53856993e-01 1.14813000e-01 1.87033758e-01 7.39253685e-02\\n2.65714169e-01 -1.08091660e-01 1.80647612e-01 1.63359404e-01\\n-6.92936718e-01 4.49766338e-01 -8.54044482e-02 -1.96179986e-01\\n-6.70234859e-03 -4.67847288e-02 3.97213846e-01 -3.42820287e-01\\n1.02030039e-01 -1.31503850e-01 -3.38540733e-01 -2.53503203e-01\\n-2.67525852e-01 -5.99108450e-02 3.87871921e-01 -4.51569259e-01\\n-1.08800761e-01 2.91868091e-01 -6.89661026e-01 -1.67544901e-01\\n2.24679321e-01 2.17188537e-01 1.47019506e-01 1.11050546e-01\\n-1.26096845e-01 -6.39830828e-01 7.90960044e-02 -4.17203248e-01\\n-3.09273958e-01 1.21181607e-01 -4.10011172e-01 2.27763891e-01\\n9.26660299e-02 2.00748760e-02 -9.76395607e-02 2.06245109e-01\\n-3.16069722e-01 6.30938187e-02 1.39655471e-01 1.21952645e-01\\n3.34119260e-01 1.29984662e-01 -4.83021438e-01 4.64959651e-01\\n-1.76645607e-01 5.52956462e-01 1.32602856e-01 -8.21493864e-01\\n5.68687677e-01 2.32872188e-01 -8.21049698e-03 -3.41377825e-01\\n5.64420342e-01 -2.94616103e-01 -9.45989937e-02 7.32582808e-02\\n-4.05787438e-01 -3.41530144e-01 2.59587258e-01 -2.25991756e-01\\n-2.30908424e-01 5.12654424e-01 6.33081645e-02 1.76561415e-01\\n3.35086226e-01 -2.59798169e-01 -2.09386185e-01 9.08679739e-02\\n-1.54719874e-01 -2.49461696e-01 -6.68012083e-01 -7.10431784e-02\\n-1.61639228e-01 -4.31262940e-01 -1.70586914e-01 -4.59480703e-01\\n-2.30761081e-01 -3.55232269e-01 -1.67282999e-01 1.71095833e-01\\n2.25346655e-01 9.81860682e-02 -5.55006117e-02 -9.08858515e-03\\n-2.61083301e-02 -6.74250126e-01 -1.11320503e-01 7.37647265e-02\\n4.16855007e-01 2.46798277e-01 1.86147928e-01 -6.19552583e-02\\n1.37825996e-01 6.32594109e-01 -3.01396310e-01 -3.20776671e-01\\n1.78155988e-01 1.86649293e-01 -6.21309280e-02 -1.03117228e-01\\n1.72680840e-02 3.02052557e-01 -2.99066454e-01 5.02593368e-02\\n-7.34004602e-02 -1.20045662e-01 3.79832238e-01 -1.43049890e-02\\n-2.35488400e-01 -1.02642223e-01 -1.27101332e-01 1.79272294e-01\\n-6.03544831e-01 -2.40956366e-01 5.63507676e-01 2.17952460e-01\\n1.15734547e-01 4.32819873e-02 1.74331978e-01 -1.23426132e-03\\n-3.16734642e-01 -3.15939426e-01 2.60061234e-01 1.30881459e-01\\n2.71845199e-02 7.08227605e-02 2.23778337e-02 -6.08213425e-01\\n-3.17743540e+00 -1.70196354e-01 1.97488070e-01 -1.24468379e-01\\n2.21855685e-01 -1.89477116e-01 9.38503742e-02 -3.80806178e-02\\n-3.51354808e-01 1.21730901e-02 -1.36174113e-01 -2.10491180e-01\\n1.19224511e-01 2.76874959e-01 2.04873800e-01 1.55968249e-01\\n1.57576278e-01 -1.70956895e-01 1.81853212e-02 3.36094767e-01\\n-1.87098414e-01 -6.74995184e-01 8.84502307e-02 4.89529371e-02\\n1.60497069e-01 1.73584610e-01 -3.77615869e-01 -1.26529232e-01\\n-4.25991803e-01 -2.16349274e-01 1.24512464e-01 -3.68418097e-01\\n-1.50319219e-01 3.33108127e-01 2.75634676e-01 -4.50410992e-02\\n4.15721200e-02 -3.86071026e-01 -1.12181097e-01 -4.49187577e-01\\n1.52586967e-01 -5.31645000e-01 3.62432227e-02 -1.84321448e-01\\n7.68089414e-01 -2.66724169e-01 1.41376495e-01 9.10261795e-02\\n2.11971268e-01 1.76255971e-01 1.75027803e-01 -2.43053194e-02\\n-2.04278857e-01 -2.16697186e-01 -7.91370794e-02 -1.25030801e-01\\n6.51459098e-01 4.21992242e-01 -8.70550871e-02 4.54677045e-02\\n1.32283255e-01 -3.13277006e-01 -4.72089291e-01 -3.54025781e-01\\n-1.02192104e-01 -1.91666216e-01 -6.30087495e-01 -5.00930011e-01\\n-1.25017822e-01 -1.09933004e-01 -9.57808569e-02 6.21958256e-01\\n-2.20591068e-01 -2.63849050e-01 -1.62353277e-01 -5.23940206e-01\\n3.04816455e-01 -1.56880111e-01 6.68366775e-02 -2.12421015e-01\\n-2.06047237e-01 -4.98067737e-01 6.55934662e-02 -1.14533730e-01\\n-6.44067973e-02 -2.65470207e-01 1.19246498e-01 -2.58918673e-01\\n-3.62003922e-01 -5.80730617e-01 4.64366287e-01 1.43551931e-01\\n3.57930422e-01 1.30190820e-01 2.80367404e-01 7.39007294e-02\\n3.14366579e-01 -9.95346829e-02 -3.66679728e-02 -4.07696277e-01\\n1.32289737e-01 -4.54177521e-03 5.34758091e-01 -2.32690901e-01\\n1.09110966e-01 6.20269477e-02 -1.85508043e-01 -8.44253041e-03\\n4.24233377e-01 -6.90897554e-02 9.39006358e-02 -7.29631037e-02\\n2.88661927e-01 -2.90754288e-01 -1.27394795e-01 7.13018849e-02\\n2.08074283e-02 6.66703463e-01 -9.58561338e-03 -3.97192240e-01\\n-1.01832286e-01 4.55227613e-01 -2.20513158e-03 -1.57666598e-02\\n-1.91517413e-01 4.60521840e-02 -2.32737124e-01 3.05560172e-01\\n6.33228347e-02 -1.86548799e-01 -2.26331174e-01 -1.20969936e-01\\n-8.47954601e-02 3.78145933e-01 2.77770400e-01 9.43115205e-02\\n3.92162912e-02 -2.61308610e-01 -6.68023825e-02 1.97399005e-01\\n2.85816401e-01 4.56207633e-01 1.59711540e-01 -2.90865600e-01\\n3.60465236e-02 3.24102104e-01 -2.31038034e-01 2.34874040e-01\\n-2.35038638e-01 1.71805829e-01 -6.20764494e-01 -2.47152835e-01\\n-2.84685701e-01 -3.32703859e-01 2.85452843e-01 3.09866697e-01\\n1.50265574e-01 -1.14759177e-01 1.23647988e-01 -4.74036723e-01\\n1.83292627e-01 1.16261922e-01 7.70372897e-02 1.37081489e-01\\n-6.97835833e-02 6.30670607e-01 -3.63648161e-02 -1.43692762e-01\\n-5.40530495e-02 4.12623286e-02 -1.43003777e-01 -2.39440635e-01\\n-1.33306161e-02 -5.71379185e-01 -1.56605408e-01 5.17979622e-01\\n1.52683213e-01 -1.61630690e-01 -2.49379769e-01 2.56131768e-01\\n-4.10065614e-02 -2.50987291e-01 -3.06443542e-01 -3.12646106e-02\\n3.70909214e-01 9.42561030e-02 2.66026884e-01 -5.55427074e-01\\n-2.71757729e-02 -3.14550325e-02 3.10596749e-02 4.40249085e-01\\n6.74048960e-02 9.54427570e-02 -8.45930725e-02 -1.55234963e-01\\n4.78581667e-01 -2.33779028e-02 -1.05317608e-01 8.31170976e-02\\n1.21630549e-01 -1.95525244e-01 -4.05170023e-01 5.08420467e-02\\n-5.22412509e-02 -2.79171795e-01 -5.24923578e-03 1.26784906e-01\\n3.39550823e-02 6.80388808e-02 -7.15861201e-01 -2.64017224e-01\\n-2.74708569e-01 -2.64740605e-02 -3.03358920e-02 -5.99282026e-01\\n9.67526622e-03 -6.56723976e-02 -5.92737317e-01 2.06087291e-01\\n-4.85515557e-02 -1.27572209e-01 2.66050547e-01 9.21314359e-02\\n-1.70739204e-01 -1.64208233e-01 1.05365485e-01 2.35541642e-01\\n-3.14189494e-01 -3.14502895e-01 2.35910323e-02 -1.03202939e+00\\n1.49435431e-01 4.67146300e-02 -1.52312815e-01 1.75042748e-01\\n-4.47638594e-02 -7.28783727e-01 4.44093626e-03 -5.02347708e-01\\n-9.28632692e-02 -3.69641297e-02 -3.32820266e-01 -3.16317260e-01\\n2.41263881e-01 2.59111207e-02 -3.06516767e-01 4.02457356e-01\\n-2.91539848e-01 3.31742018e-01 -1.40207082e-01 8.31270814e-02\\n1.50313210e-02 -2.35611007e-01 1.05457276e-01 -2.30357647e-01\\n-4.41213667e-01 -2.25564048e-01 -2.90609598e-01 -1.89984217e-01\\n-2.20973082e-02 -3.63293320e-01 -8.30393881e-02 -4.06620838e-03\\n4.37233597e-01 6.93235546e-02 -1.43981159e-01 -1.81296349e-01\\n2.38894504e-02 -4.92097497e-01 9.41353142e-02 -1.74424797e-01\\n-1.44561499e-01 -1.29146457e-01 2.23065168e-01 1.33950740e-01\\n2.02414483e-01 -3.79122019e-01 3.54407281e-01 -4.11331624e-01\\n-3.16368192e-01 -1.12294346e-01 1.53473496e-01 1.20775867e-02\\n2.89116472e-01 -5.55721045e-01 -4.86623570e-02 3.54006022e-01\\n1.67378843e-01 1.01174437e-01 1.94381908e-01 -1.20795116e-01\\n-4.15558554e-02 3.22082102e-01 -3.85399282e-01 1.92366466e-01\\n7.77423143e-01 1.56715289e-01 2.55483031e-01 2.02775508e-01\\n1.49902433e-01 1.92512453e-01 5.22049129e-01 -4.63298298e-02\\n-8.48824233e-02 3.41965020e-01 1.19712472e-01 -4.85389531e-01\\n-9.57515687e-02 -1.38722792e-01 -1.01346597e-01 -4.18860018e-01\\n6.03593826e-01 3.72973472e-01 -3.84411007e-01 -1.98999465e-01\\n-2.21729815e-01 -1.40847385e-01 2.16368303e-01 -4.81138900e-02\\n-5.56027144e-03 7.63970613e-03 4.95413125e-01 -1.43391997e-01\\n2.70427555e-01 6.23119593e-01 -2.05229759e-01 -1.98007613e-01\\n-1.64004564e-01 1.38220489e-01 8.90119374e-02 4.81946826e-01\\n-2.51306415e-01 3.35482627e-01 3.31126861e-02 1.26351595e-01\\n-1.85365856e-01 1.15142856e-02 1.81594223e-01 5.60680330e-02\\n2.84443408e-01 1.05913840e-01 4.42639053e-01 4.89554703e-01\\n2.98851520e-01 4.61419255e-01 3.37799907e-01 3.98081280e-02\\n4.87007201e-01 6.28740311e-01 3.27270508e-01 1.31242365e-01\\n-1.04074046e-01 6.15621842e-02 1.32443964e-01 5.46563454e-02\\n3.57561767e-01 4.37979758e-01 9.83204097e-02 8.84886146e-01\\n3.41650814e-01 4.14826632e-01 7.38113463e-01 -6.91786230e-01\\n-4.12733614e-01 1.05300061e-01 5.08996606e-01 -3.75417709e-01\\n4.28313650e-02 1.09011978e-01 -2.05224708e-01 1.95717663e-01\\n-5.24787784e-01 -2.68553376e-01 -7.20147416e-03 1.54804692e-01\\n4.51246761e-02 -1.79716766e-01 -2.53418922e-01 6.52807131e-02\\n-2.82835457e-02 -1.56747341e-01 -4.23655570e-01 -1.46627933e-01\\n-2.98509896e-01 -3.21703963e-04 -8.41278657e-02 -8.06338936e-02\\n-5.42402156e-02 -2.03423023e-01 -7.59879276e-02 -7.42149875e-02\\n3.90399307e-01 -1.30170211e-01 -1.33048460e-01 -5.94723858e-02\\n2.52007753e-01 2.21921444e-01 5.78148663e-01 -3.06925196e-02\\n1.31111592e-01 -1.95450708e-01 -1.55934274e-01 1.56199068e-01\\n1.13677546e-01 3.99182588e-02 -1.48708262e-02 3.24543953e-01\\n-2.24775285e-01 -2.28666738e-01 1.37617216e-01 2.02691942e-01\\n-4.62405682e-01 -3.38517735e-03 -1.16616607e-01 4.38019857e-02\\n1.11007690e-02 1.05276942e-01 -2.42747754e-01 -2.58832378e-03\\n-1.45034805e-01 -4.46990609e-01 3.43142748e-01 -1.85870260e-01\\n-1.21610701e-01 2.49618702e-02 3.22385073e-01 1.82445332e-01\\n-2.71367848e-01 -3.05650681e-02 -9.76397097e-02 2.23537922e-01\\n7.04431161e-02 2.99833775e-01 -1.97206497e-01 -3.89607996e-01\\n-3.22382808e-01 1.88481301e-01 -9.56893116e-02 6.66301772e-02\\n-3.27497721e-02 3.94575268e-01 9.35088024e-02 6.05378747e-02\\n3.99799466e-01 -1.10708326e-02 -2.55383015e-01 -2.16320395e-01\\n-2.32584447e-01 -1.71583980e-01 -7.31828436e-03 -5.69336824e-02\\n2.30353102e-01 -3.11911047e-01 -1.28770679e-01 -1.94872081e-01\\n-9.02821422e-02 -4.46041435e-01 -3.26940343e-02 -9.28692371e-02]]',\n", + " \"Open Web Technology is a technology and strategy consulting firm. We help our clients leverage new technologies to reshape their business, invent new products or transform their organization. With a large growth every year and now over 150 employees, we're a fast growing and highly connected team. Beginning of 2016, we created together with Swisscom Entreprise the joint venture Swisscom Digital Technology SA. Operating under the Open Web Technology brand, it is our goal to become a leading provider of digital transformation consulting services for large companies in Switzerland in the Telecommunications, Banks, Insurances, Media, Healthcare and Consumer Goods industries. Learn more about us at https://www.openwt.com/ Open Web Technology has an opening for a Data Scientist that will join our Team in Geneva. You bring value out of data. You enthusiastically fetch information from various sources and analyze it for better understanding about how the business performs and build AI tools that automate certain processes within the company. You help discover the information hidden in vast amounts of data, and help making smarter decisions. The main focus will be in applying machine learning and data mining techniques, doing statistical analysis, and building high quality prediction systems integrated with our clients products or processes. What responsibilities we can offer you Select features and data to build and optimize classifiers using i) machine learning techniques ii) data mining methods Extend the project’s data with third party sources of information when needed Enhance data collection procedures to include information that is relevant for building analytic systems; Automate and integrate work-/data-flow from diverse systems. Process, cleanse, and verify the integrity of data used for analysis Apply state-of-the-art neural network/deep learning algorithms if suitable in a project context Contribute to the creation of an AI value proposition at Open Web Technology and to the acquisition of new clients thanks to a clear value proposition definition Requirements What you bring At least three years experience working as a Data Scientist in a similar environment Master degree (or ongoing Master/PhD) in one of Europe’s leading universities in one of the following fields: Statistics, Mathematics, Data Mining, Computer Science, Computational Linguistics or related Ability to learn fast, take initiative, lead oneself and work independently with minimal management direction. Able and willing to acquire new skills Above-average communication and analytical skills. Independent resolution of complex tasks Dynamic, dedicated and a demanding team player Solid understanding of the main machine learning methods (supervised and unsupervised learning), and optimization techniques. Experience with data visualisation tools, such as ggplot, tableau, etc... Proficiency in using SQL databases such as MySQL, Microsoft SQL, MariaDB, etc… Experience with NoSQL databases such as MongoDB, Cassandra, etc… Experience in text analytics and Natural Language Processing (text classification, NER, topics mining, sentiment analysis) Understanding of state-of-the-art deep learning techniques. Experience working with one or more frameworks such as TensorFlow, Torch, Caffe, Theano, Keras etc. Fluency in English; French and German a plus Benefits Why join Open Web Technology? From your first day, you will actively contribute to the digitalization of Switzerland by serving local and global companies. From digital strategy to complex software engineering, you will help our clients reshape their business, invent new products and transform their organization using the latest technologies. You will take part in every step of our clients' digital journey and work for industries including finance, healthcare, telecommunication, media and many others. More than the diverse projects you will be part of, becoming an Openwebber will make you feel valued, stimulated and encouraged in a passionate, focused and creative team. Can we spark your interest? We look forward to receiving your application!\",\n", + " '[\"Analytical Skills\", \"Decisiveness\", \"Management\", \"Supervision\", \"Communications\", \"Operations\", \"Integration\", \"Creativity\", \"Sourcing\", \"Consulting\"]',\n", + " '[\"Automation\", \"MySQL\", \"Sentiment Analysis\", \"Tooling\", \"Tableau (Business Intelligence Software)\", \"NoSQL\", \"Apache Cassandra\", \"Hyper SQL Database (HSQLDB)\", \"Natural Language Processing\", \"Theano (Software)\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Branding\", \"Process Automation Systems\", \"Industrialization\", \"Mathematical Statistics\", \"Value Propositions\", \"Activism\", \"Open Web\", \"Component Object Model (COM)\", \"Digital Transformation\", \"Systems Integration\", \"MariaDB\", \"Keras (Neural Network Library)\", \"Quality Management Systems\", \"Software Engineering\", \"Data-Flow Analysis\", \"Machine Learning Methods\", \"Computational Linguistics\", \"Digital Technology\", \"Library For WWW In Perl\", \"Finance\", \"Digitization\", \"Bank Insurance Model (BIM)\", \"TensorFlow\", \"Deep Learning\", \"Data Mining\", \"Java Data Mining\", \"Receivables\", \"Consumer Packaged Goods\", \"Recurrent Neural Network (RNN)\", \"Text Classification\", \"Algorithms\", \"Data Collection\", \"Microsoft SQL Servers\", \"New Product Development\", \"Telecommunications\", \"Unsupervised Learning\", \"Feature Selection\", \"Joint Ventures\", \"Text Processing\", \"Integrated Delivery Systems\"]',\n", + " \"['English', 'Maori', 'Swati', 'Panjabi']\"],\n", + " ['39',\n", + " 'junior software engineer (java/.net)',\n", + " 'Bern',\n", + " 'IT Services',\n", + " '',\n", + " '[[-1.58827543e-01 2.78695405e-01 4.78867859e-01 -1.40555575e-01\\n4.73880589e-01 -2.29799300e-01 1.18673015e-02 5.41712344e-01\\n-1.29821241e-01 -4.76364672e-01 -1.58624187e-01 -1.81938067e-01\\n4.80378605e-02 7.95653313e-02 2.17752740e-01 3.67459863e-01\\n4.41360325e-01 7.91803077e-02 -2.36952901e-01 2.59149373e-01\\n8.82902965e-02 -9.55050960e-02 2.38359142e-02 7.61771441e-01\\n3.76127362e-01 -8.69915858e-02 2.29717679e-02 3.41004245e-02\\n-1.39177978e-01 -2.78147906e-01 4.10465032e-01 -4.33184467e-02\\n-1.17008306e-01 -2.25145057e-01 1.31188542e-01 1.38856128e-01\\n-1.25351340e-01 -5.25613613e-02 -1.53748631e-01 4.86257859e-02\\n-5.14377654e-01 -2.02427134e-01 -2.05447972e-02 -1.84176508e-02\\n-2.09004015e-01 -3.33692968e-01 1.72833309e-01 -1.39994975e-02\\n1.31572768e-01 -9.98403784e-03 -4.73160774e-01 2.33639076e-01\\n-1.81318372e-01 -1.78376257e-01 3.14814419e-01 5.54818749e-01\\n-3.95433977e-02 -4.44730997e-01 -3.76411676e-01 -2.83830196e-01\\n3.44227068e-02 -9.47789662e-03 1.22087888e-01 -2.85488904e-01\\n3.67980450e-01 -7.87562970e-03 9.07403044e-03 3.48818094e-01\\n-8.14982414e-01 -1.68173745e-01 -2.94127077e-01 -6.67742416e-02\\n-3.78268152e-01 -7.66451210e-02 -4.20350105e-01 -2.10033372e-01\\n-1.07887097e-01 2.65489012e-01 5.23711927e-02 2.09682733e-02\\n-1.86930656e-01 3.08594942e-01 -1.73784181e-01 3.63948613e-01\\n2.48869896e-01 3.63521367e-01 1.64428174e-01 2.72433609e-01\\n-3.77314508e-01 4.13331836e-01 1.41549259e-01 -3.45169276e-01\\n2.43585914e-01 1.02383338e-01 4.17286038e-01 4.24816944e-02\\n2.50019222e-01 1.57336622e-01 -2.64836699e-01 3.02274495e-01\\n2.93807298e-01 -2.79321969e-01 -2.38636043e-02 -9.86920949e-03\\n-5.60049936e-02 2.31792517e-02 -6.16665813e-04 1.17856622e-01\\n-3.47929269e-01 4.11345243e-01 1.00593649e-01 -2.85953283e-01\\n-5.89340702e-02 -5.28664768e-01 -1.35897920e-01 -3.37957442e-02\\n-6.15946315e-02 2.11408257e-01 2.33356938e-01 2.40028992e-01\\n1.73432574e-01 -7.98824802e-02 1.34229273e-01 7.63626695e-01\\n-8.75543430e-02 -7.15625882e-02 -3.16814929e-01 3.73807162e-01\\n-2.67740134e-02 -4.11100835e-01 2.59840757e-01 2.11753845e-01\\n1.16921723e-01 -1.25389710e-01 -2.14210510e-01 3.41955751e-01\\n3.45799513e-02 -1.71745077e-01 -3.71429801e-01 2.30877593e-01\\n-1.22679412e-01 -3.75482708e-01 5.65133452e-01 7.24253282e-02\\n1.81915075e-01 3.86341778e-03 -4.98558767e-03 -1.22229494e-01\\n-3.95373395e-03 1.60084143e-01 6.99667186e-02 1.24577120e-01\\n-2.30207920e-01 -2.21925631e-01 -2.30002046e-01 3.13030601e-01\\n-3.64954174e-01 1.97183296e-01 -1.34738863e-01 -2.07204714e-01\\n2.64092565e-01 -1.13843828e-02 -2.69747227e-01 2.82127708e-01\\n-3.53487544e-02 1.22332918e-02 -1.36799812e-01 3.96395475e-01\\n-2.09637105e-01 3.49883676e-01 5.23413643e-02 -2.85093896e-02\\n5.61599016e-01 8.99781883e-02 2.71654595e-02 -2.03372002e-01\\n2.06880957e-01 -2.98014246e-02 1.15183085e-01 6.57073855e-02\\n-6.60079360e-01 3.07879359e-01 -9.49652120e-02 -1.27565965e-01\\n9.22757983e-02 -6.22084215e-02 1.81700677e-01 -3.32530349e-01\\n-9.13730934e-02 -2.39496194e-02 -3.23593050e-01 -1.28294677e-01\\n-3.21318537e-01 -1.14021793e-01 3.54481518e-01 -4.49458659e-01\\n-2.99405996e-02 2.49697998e-01 -5.77152431e-01 -2.73775402e-02\\n1.21829838e-01 1.55680776e-01 9.72019136e-02 2.03857154e-01\\n-2.03631241e-02 -5.92750371e-01 4.81511131e-02 -4.10569489e-01\\n-2.38378733e-01 1.76799178e-01 -2.41349548e-01 2.00967252e-01\\n1.55110434e-01 7.11145550e-02 -1.30593866e-01 1.42261624e-01\\n-2.02240467e-01 7.53328204e-02 2.06379533e-01 5.90732023e-02\\n3.36558282e-01 -2.42210203e-03 -3.62746119e-01 4.73185003e-01\\n-1.79395214e-01 4.32618946e-01 8.20220932e-02 -7.40790486e-01\\n4.99322742e-01 3.16077262e-01 1.87335107e-02 -2.89647877e-01\\n7.35326290e-01 -2.16304600e-01 -1.00801133e-01 3.21742892e-02\\n-5.23423493e-01 -3.58700395e-01 1.92116454e-01 -2.96618879e-01\\n-2.33964980e-01 4.45686579e-01 1.65504087e-02 1.98386401e-01\\n2.95771122e-01 -1.97146222e-01 -5.09892814e-02 1.61430672e-01\\n-1.64429456e-01 -2.37755612e-01 -3.73731345e-01 -7.80293196e-02\\n-4.40856926e-02 -3.88676941e-01 -2.37136006e-01 -5.08576810e-01\\n-2.19527751e-01 -3.54987919e-01 -1.41787678e-01 2.72372574e-01\\n1.58604011e-01 8.70653242e-02 1.32660553e-01 4.78086174e-02\\n-2.08709374e-01 -5.99440336e-01 1.99819263e-02 -8.94805416e-03\\n2.47664079e-01 1.52464449e-01 7.94050545e-02 5.17726168e-02\\n3.41715738e-02 6.48942888e-01 -3.20831656e-01 -1.91042066e-01\\n1.09203830e-01 1.48161173e-01 1.04698956e-01 -3.97733003e-02\\n5.07630408e-02 3.09694499e-01 -3.20202678e-01 -9.60228369e-02\\n-2.18024597e-01 -3.28182168e-02 4.66330886e-01 -1.81492523e-03\\n-2.81329036e-01 -2.52997398e-01 1.24677047e-02 2.45771989e-01\\n-4.65997130e-01 -2.84224808e-01 6.24197304e-01 1.23508401e-01\\n1.34853527e-01 1.71850488e-01 2.86073506e-01 -7.81232268e-02\\n-1.75063163e-01 -1.45206824e-01 1.15165994e-01 1.11263581e-01\\n2.11658254e-01 8.14656988e-02 -1.33688629e-01 -5.13552487e-01\\n-3.52109337e+00 -1.17624223e-01 2.69350410e-01 -1.77220568e-01\\n2.68861860e-01 2.68066535e-03 6.19634688e-02 -1.62257150e-01\\n-4.13883030e-01 4.62229177e-02 -1.27573296e-01 -2.28280216e-01\\n8.44606683e-02 3.29648674e-01 1.57195091e-01 3.08645725e-01\\n1.29263967e-01 -2.22141087e-01 -1.22946640e-02 3.62971544e-01\\n-1.39546975e-01 -6.86518013e-01 1.83385700e-01 2.85891108e-02\\n2.96255052e-01 2.73318321e-01 -4.13080931e-01 -1.90542772e-01\\n-2.95050502e-01 -1.80301338e-01 1.26884058e-01 -3.64466250e-01\\n-3.32780965e-02 3.19563150e-01 2.83203334e-01 -6.28919676e-02\\n1.33865908e-01 -2.76239842e-01 -4.78464812e-02 -4.32089269e-01\\n6.00930601e-02 -5.00135064e-01 -7.45047629e-02 -5.60372248e-02\\n7.28386939e-01 -3.76320213e-01 2.14657098e-01 1.32776007e-01\\n9.21246503e-03 1.30457014e-01 3.32576558e-02 7.75809363e-02\\n-1.70795739e-01 -3.18200201e-01 -9.86755341e-02 -1.54593468e-01\\n5.84324300e-01 5.08086622e-01 -1.61577046e-01 5.21287620e-02\\n1.53204089e-03 -2.86226988e-01 -5.30879080e-01 -2.80238062e-01\\n-1.05648682e-01 -2.30384082e-01 -6.41126037e-01 -5.36254942e-01\\n-3.83740999e-02 -1.15055107e-01 -4.74285781e-02 5.37634552e-01\\n-2.52482742e-01 -3.95210832e-01 -1.65556222e-02 -5.78961492e-01\\n1.98314011e-01 -1.45615041e-01 8.62899870e-02 -1.42745286e-01\\n-1.24511473e-01 -5.49315929e-01 2.70422958e-02 4.75546084e-02\\n-2.47622523e-02 -2.47174740e-01 1.22326352e-01 -1.49212986e-01\\n-2.52571464e-01 -5.40702343e-01 3.74891996e-01 1.36767313e-01\\n2.08872885e-01 1.40689880e-01 2.40576521e-01 1.01999514e-01\\n1.67921364e-01 -9.52362344e-02 -3.61311324e-02 -4.44859505e-01\\n8.95510316e-02 -1.04696140e-01 3.82164299e-01 -3.26634869e-02\\n6.03698343e-02 2.00049117e-01 -1.46399140e-01 -1.01913661e-01\\n3.26237798e-01 1.08943908e-02 1.12008460e-01 -2.20066637e-01\\n3.19959432e-01 -2.72757381e-01 -1.28581539e-01 -1.83506012e-02\\n4.90713445e-03 5.74966431e-01 -7.06424713e-02 -3.90848041e-01\\n-1.47595271e-01 6.00507021e-01 -6.79052100e-02 -3.97872925e-02\\n-1.17952898e-01 7.98804238e-02 -2.74480075e-01 5.67922881e-03\\n-3.06092072e-02 -2.11964339e-01 -2.54958183e-01 -1.58343881e-01\\n-2.52743382e-02 2.50926197e-01 2.46412784e-01 1.84663594e-01\\n-1.68434650e-01 -4.49379891e-01 -5.07851020e-02 2.13145614e-01\\n2.47640848e-01 4.30739164e-01 1.75509617e-01 -3.08284581e-01\\n9.53409970e-02 2.99105197e-01 -1.54446036e-01 2.29702756e-01\\n-2.52739400e-01 7.84975961e-02 -4.36804354e-01 -2.90216118e-01\\n-2.59949058e-01 -3.24193925e-01 1.25374228e-01 1.87814057e-01\\n6.76294044e-02 1.33603681e-02 1.14257529e-01 -4.02388960e-01\\n3.39951277e-01 5.46802655e-02 1.78838268e-01 2.34859586e-01\\n-1.44989258e-02 5.66608250e-01 -2.93977652e-02 -2.72655915e-02\\n-2.06471995e-01 1.31502539e-01 -1.16314121e-01 -1.70047715e-01\\n-1.53268073e-02 -4.18426305e-01 -1.25635967e-01 3.95572037e-01\\n-1.51341744e-02 -1.98892385e-01 -1.84293345e-01 1.33103088e-01\\n-1.24523873e-02 -4.26679999e-01 -1.68256223e-01 4.72400412e-02\\n3.17882925e-01 1.31157205e-01 2.37877235e-01 -4.51426506e-01\\n-4.36960720e-02 -8.59291479e-02 -9.19071771e-03 5.38052976e-01\\n9.78387520e-02 2.43968032e-02 -1.85595438e-01 -3.31986129e-01\\n3.40757281e-01 -2.35036463e-01 -4.49520610e-02 -9.49716642e-02\\n1.09524071e-01 -2.29051903e-01 -3.94466668e-01 1.12901796e-02\\n-2.28889715e-02 -1.57082766e-01 4.99600731e-02 -5.62684201e-02\\n5.32312579e-02 1.14234164e-01 -6.65734053e-01 -3.08978528e-01\\n-3.15116107e-01 -1.32280253e-02 3.26039875e-03 -4.10727203e-01\\n-1.57596990e-02 -1.82145894e-01 -5.69393694e-01 3.07676047e-01\\n-2.93911099e-01 -1.48574477e-02 1.86498404e-01 4.93605547e-02\\n-4.61528271e-01 -1.57485783e-01 1.40986159e-01 2.44371355e-01\\n-2.01365843e-01 -2.32848778e-01 3.08321370e-03 -1.03073108e+00\\n2.20900252e-01 -1.38987526e-01 -7.84655735e-02 8.88724849e-02\\n-8.37963969e-02 -7.31486976e-01 8.10461566e-02 -3.53159219e-01\\n-1.50128268e-02 -3.72301266e-02 -1.43916145e-01 -4.17995423e-01\\n5.00536673e-02 -1.84866600e-02 -2.48600647e-01 3.91701728e-01\\n-3.62792760e-01 2.24280521e-01 -1.86300918e-01 5.38041890e-02\\n-9.67377126e-02 -3.68721902e-01 7.33922124e-02 -3.73454690e-01\\n-3.44112813e-01 -1.37546062e-01 -2.37962887e-01 -2.54413038e-01\\n1.16084358e-02 -3.28658849e-01 -6.08670749e-02 9.40840244e-02\\n2.77582705e-01 2.66999863e-02 -1.74799994e-01 -2.48681396e-01\\n6.78614751e-02 -3.78883272e-01 1.66547179e-01 -2.07185209e-01\\n6.27262667e-02 -1.06813110e-01 3.06599170e-01 7.80118108e-02\\n1.21283166e-01 -4.46942568e-01 3.80641311e-01 -2.89954752e-01\\n-3.20932388e-01 5.85157536e-02 4.20724303e-02 -1.23140395e-01\\n3.69675606e-01 -5.54781973e-01 -2.06679776e-02 4.28485304e-01\\n8.46811384e-02 5.97820766e-02 3.17055672e-01 -7.15464577e-02\\n-1.09568961e-01 4.51631516e-01 -3.66588026e-01 9.77575928e-02\\n7.44794071e-01 1.27400473e-01 2.58273005e-01 1.80481389e-01\\n1.57584041e-01 4.34243172e-01 4.23174053e-01 -4.54297960e-02\\n4.08817418e-02 3.91179770e-01 1.07984982e-01 -5.50856769e-01\\n5.44481678e-03 7.19335973e-02 -2.54584849e-01 -2.51239806e-01\\n6.41991615e-01 4.47902858e-01 -3.08286816e-01 -3.16318631e-01\\n-1.60260692e-01 -1.67772382e-01 2.61525780e-01 -7.24956840e-02\\n1.73292905e-01 -1.90510035e-01 4.76444274e-01 7.25093633e-02\\n2.79668629e-01 5.98666668e-01 -1.68798998e-01 -4.63422179e-01\\n-6.67553768e-02 2.49895677e-01 -5.61951799e-03 5.59397578e-01\\n-1.99815243e-01 3.07910413e-01 -3.81668541e-03 9.51393619e-02\\n-7.72468969e-02 2.07414761e-01 1.83281481e-01 9.25850868e-02\\n1.99795917e-01 1.58821672e-01 4.23609674e-01 4.99398202e-01\\n3.23253930e-01 4.63131130e-01 2.66349792e-01 4.53740209e-02\\n4.42332268e-01 4.39093471e-01 6.10854387e-01 1.24034561e-01\\n2.70760749e-02 1.35199070e-01 -3.34587088e-03 -2.65484080e-02\\n3.17961782e-01 3.41834605e-01 -2.74997614e-02 9.60237682e-01\\n4.50954556e-01 3.41277361e-01 6.73647583e-01 -6.31285608e-01\\n-2.82306641e-01 1.83541942e-02 4.15009975e-01 -3.90704185e-01\\n-1.07998855e-01 8.41566995e-02 -2.38736510e-01 2.20124871e-01\\n-3.84852022e-01 -3.00646037e-01 -5.36313877e-02 8.61279517e-02\\n2.65489910e-02 -1.19192466e-01 -2.08627075e-01 -1.65807530e-02\\n-1.76002905e-01 -1.24855906e-01 -5.09822190e-01 -1.34648541e-02\\n-2.38185540e-01 -2.20769331e-01 -1.34820342e-01 -1.33086696e-01\\n-1.20534085e-01 -2.65057206e-01 -9.40930173e-02 3.00957412e-02\\n1.81991190e-01 -1.37859479e-01 -1.01571336e-01 -2.45375454e-01\\n3.61819506e-01 2.96767086e-01 5.06321073e-01 -1.22618140e-03\\n1.05124742e-01 -2.19792813e-01 -3.25285435e-01 1.08996965e-01\\n6.82698861e-02 7.99415112e-02 4.71303686e-02 3.68025988e-01\\n-1.77926347e-01 -1.64311856e-01 1.06142387e-01 3.94598186e-01\\n-4.38350856e-01 5.98285422e-02 -8.29191133e-02 3.12816650e-01\\n4.62172218e-02 7.52945840e-02 -1.42926052e-01 2.19236463e-02\\n-5.24606146e-02 -5.29077649e-01 3.10505122e-01 -1.89693198e-01\\n-7.29181617e-02 1.79550022e-01 2.31941864e-01 2.65209377e-01\\n-2.43209913e-01 -3.36528458e-02 -7.77457729e-02 1.48966402e-01\\n2.96344887e-02 2.88941920e-01 -3.16526979e-01 -1.69977471e-01\\n-2.23189056e-01 1.41295016e-01 -3.24264973e-01 8.26542974e-02\\n-4.16963585e-02 3.40689451e-01 6.85338825e-02 7.51652122e-02\\n4.13419455e-01 -6.90255836e-02 -1.82402045e-01 -1.72046363e-01\\n-2.15069085e-01 -1.78717017e-01 2.70129666e-02 -1.14340223e-01\\n2.40369633e-01 -3.34704936e-01 -1.08840436e-01 -2.16799378e-01\\n-9.73969996e-02 -3.66852075e-01 4.89581600e-02 -9.68382210e-02]]',\n", + " 'Drucken Share Bewerben For our locations Zurich, Bern, Lausanne, Geneva and Granada, we are looking for Junior Software Engineers (Java/.Net). In this role Develop innovative web and mobile applications, using state-of-the-art tools and agile methodologies. Work closely with a multidisciplinary team of business analysts, architects and developers. Be involved in the complete project lifecycle, from requirements analysis to final delivery. What we offer A dynamic work environment with a young and highly motivated team. Ample opportunities to expand your knowledge and experience by working on a broad range of exciting projects, customers and technologies. Attractive prospects for career and personal development through training and coaching. A flat hierarchy and a culture of collaboration across all disciplines. The chance to make a difference in peoples’ life by building great software. About your profile You hold a MSc or BSc from a leading university or institute of technology. You already have some experience in developing Java or .Net applications from internships or course-related activities. You are passionate about technology and software engineering. You are familiar with the fundamentals of underlying technologies such as web-based user interfaces, relational and non-relational databases, application security, and communication protocols. You have a good command of English and either French or German (depending on working location). For Zurich and Bern you have very good language skills in German and English. For Lausanne and Geneva you have very good language skills in French and English. For Granada you have very good language skills in English.',\n", + " '[\"Collaboration\", \"Innovation\", \"Team Motivation\"]',\n", + " '[\"MSC Software\", \"Database Application\", \"Tooling\", \"Hostile Work Environment\", \"Relational Databases\", \"Requirements Analysis\", \"Agile Methodology\", \"Application Security\", \"Personality Development\", \"Communications Protocols\", \"Java (Programming Language)\", \"Mobile Application Software\", \"User Interface\", \"Software Engineering\", \"Finalization\"]',\n", + " \"['English', 'Arabic']\"],\n", + " ['75',\n", + " 'database engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.70764947e-01 3.80482614e-01 4.18749332e-01 9.27205384e-02\\n5.02905071e-01 -1.98723689e-01 4.03951481e-03 2.72517890e-01\\n-7.10982308e-02 -2.41693258e-01 -6.16132170e-02 -4.16763760e-02\\n-6.36384077e-03 8.13919604e-02 1.72464192e-01 4.24755275e-01\\n3.09276372e-01 5.89461923e-02 1.49260964e-02 2.67620534e-01\\n1.34396106e-01 -1.19489536e-01 1.02892451e-01 5.66048265e-01\\n2.07293138e-01 1.47447407e-01 -9.67616495e-03 7.97666535e-02\\n-3.16824704e-01 -2.92747468e-01 2.82683641e-01 1.20330453e-01\\n-1.92091256e-01 -1.64798424e-01 4.28377353e-02 1.16624087e-02\\n-2.04767510e-01 -1.26587655e-02 1.53321072e-01 -1.62825026e-02\\n-7.53927603e-02 -2.69863933e-01 1.32300509e-02 8.78657494e-03\\n-3.56649160e-01 -1.09220482e-01 -3.92759331e-02 -8.24821293e-02\\n1.47108018e-01 -2.04093084e-01 -6.32436514e-01 4.13603216e-01\\n-9.26709324e-02 -1.77231640e-01 3.14854234e-01 4.34895456e-01\\n3.61038037e-02 -5.12671828e-01 -2.82791048e-01 -9.18632522e-02\\n7.27044046e-02 -2.59977221e-01 -7.81142432e-03 -1.03520207e-01\\n3.98269027e-01 -1.16136126e-01 1.00655770e-02 4.46817130e-01\\n-5.31788588e-01 5.11298887e-03 -3.66952062e-01 5.04493937e-02\\n-4.32678193e-01 -5.12507446e-02 -2.38883883e-01 -1.09187528e-01\\n-5.98026300e-03 2.12750196e-01 8.18139836e-02 6.39620051e-02\\n-9.10167396e-03 1.66780144e-01 2.24938225e-02 -1.10837230e-02\\n2.81920254e-01 6.61859242e-03 2.23566964e-01 2.55997956e-01\\n-2.71070689e-01 4.55642790e-01 2.59188652e-01 -2.53095746e-01\\n2.67622828e-01 1.04668252e-01 2.18283415e-01 3.30537707e-02\\n-4.24923860e-02 1.45234808e-01 1.06808819e-01 9.32760909e-02\\n1.44925386e-01 -2.39109680e-01 -1.01675197e-01 -8.16746056e-02\\n-7.04701245e-02 -1.44837007e-01 -1.09807901e-01 2.35594884e-01\\n-3.08379978e-01 4.09874678e-01 6.56969026e-02 -9.79458764e-02\\n-4.72002244e-03 -3.61802071e-01 -2.64445931e-01 1.86284201e-03\\n-1.78630665e-01 7.06110969e-02 3.05572897e-01 2.49758869e-01\\n2.67743349e-01 2.61802912e-01 2.32880920e-01 8.51773024e-01\\n-3.00463364e-02 9.18525830e-02 -1.36282906e-01 2.82282442e-01\\n1.15949638e-01 -2.05275342e-01 1.68994486e-01 2.20680907e-01\\n-4.16226592e-03 -6.79015834e-03 -1.62871167e-01 -2.66052615e-02\\n-1.38219118e-01 -6.44442290e-02 -1.55478328e-01 1.26214534e-01\\n-2.20614806e-01 -4.67813283e-01 3.02148074e-01 2.73883343e-02\\n2.40259260e-01 -4.35412768e-03 -8.33147168e-02 -1.83054283e-02\\n-1.42258881e-02 4.13970292e-01 -1.34123206e-01 3.03680629e-01\\n-3.32957149e-01 -1.83034033e-01 -2.14656830e-01 2.39048511e-01\\n-7.74940699e-02 1.18667945e-01 -2.69004256e-01 -7.33714774e-02\\n3.60295713e-01 -9.79447458e-03 -3.55655551e-01 3.60418141e-01\\n4.75275181e-02 -3.91682059e-01 -2.15859547e-01 4.15043771e-01\\n4.75670584e-02 1.23827137e-01 -1.22079141e-01 -3.14791292e-01\\n2.76966661e-01 2.07283739e-02 8.99648741e-02 1.86553667e-03\\n3.61201137e-01 -1.90529332e-01 8.28468874e-02 1.08368754e-01\\n-5.52015245e-01 3.80213529e-01 4.21508774e-02 -9.47545096e-03\\n-5.94542585e-02 7.10613802e-02 2.44265020e-01 -2.46711016e-01\\n1.36112705e-01 -1.36641145e-01 -3.25306207e-01 -3.34831506e-01\\n6.34716125e-03 -1.67915085e-03 3.71547312e-01 -3.29468250e-01\\n-1.14514671e-01 1.02617271e-01 -4.32701200e-01 -3.30369547e-02\\n4.20483440e-01 1.87133610e-01 1.17937503e-02 8.82378146e-02\\n-2.04707161e-01 -2.56533653e-01 4.18332294e-02 -5.93345582e-01\\n-2.94325620e-01 8.57808515e-02 -2.85274893e-01 1.93881080e-01\\n1.35875121e-01 -4.42772247e-02 2.36624666e-02 1.16387270e-01\\n-3.64681244e-01 9.72153321e-02 2.91628838e-01 6.92657903e-02\\n3.36356133e-01 -6.75864741e-02 -3.54334563e-01 4.92776603e-01\\n-2.40151539e-01 4.62714523e-01 2.77643442e-01 -6.72637522e-01\\n4.11479950e-01 2.11659446e-01 1.47904783e-01 -1.87863037e-01\\n3.57819527e-01 -4.71898764e-01 1.22086406e-01 2.25684851e-01\\n-2.95098364e-01 -2.13322878e-01 2.18939960e-01 -7.72679597e-02\\n-2.41847530e-01 5.81861377e-01 5.89128993e-02 6.02204353e-02\\n3.18042964e-01 -2.61105657e-01 -1.29103377e-01 -1.53848290e-01\\n-2.09282726e-01 -2.44212970e-01 -3.77224863e-01 2.26704776e-03\\n-7.94857368e-02 -5.46626270e-01 -1.74651027e-01 -4.26742852e-01\\n-1.13773160e-01 -1.70524120e-01 -3.05949360e-01 2.50412017e-01\\n7.74390101e-02 1.18507132e-01 -5.56022301e-02 -1.27137348e-01\\n5.74168041e-02 -4.87553120e-01 -7.69816563e-02 1.57215204e-02\\n3.27196360e-01 2.78806776e-01 7.25970641e-02 -2.99964517e-01\\n1.94517195e-01 3.58133793e-01 -3.79963189e-01 -3.56582224e-01\\n1.17316768e-01 3.08850944e-01 -8.92335549e-02 -1.79890305e-01\\n5.69752045e-02 3.67708921e-01 -1.50463089e-01 1.24846123e-01\\n-6.16659336e-02 9.93803740e-02 3.70127320e-01 -1.85547158e-01\\n-2.72887886e-01 -3.22162509e-01 -1.19921453e-02 3.09700757e-01\\n-3.69176000e-01 -2.07033798e-01 5.75120986e-01 2.99480647e-01\\n-9.41088001e-05 2.63390213e-01 1.92775220e-01 4.18238016e-03\\n-2.67701060e-01 -7.91750252e-02 -7.33833164e-02 8.12797472e-02\\n9.85543653e-02 -7.77804181e-02 -3.17840934e-01 -5.37053287e-01\\n-4.30504608e+00 -3.08360588e-02 -7.73874372e-02 -2.22823381e-01\\n1.52751550e-01 -1.46149963e-01 1.79027617e-01 1.58602655e-01\\n-2.89329588e-01 7.40446076e-02 -2.63787538e-01 -1.10482037e-01\\n1.22622102e-01 3.38531703e-01 1.30481303e-01 3.45031947e-01\\n2.95381516e-01 -3.25298578e-01 7.11191222e-02 3.16688657e-01\\n1.52683314e-02 -7.06119955e-01 5.71307465e-02 -6.11882657e-02\\n4.25201505e-02 3.23242635e-01 -2.60717571e-01 6.00600839e-02\\n-2.43984848e-01 -2.10711211e-01 4.02387828e-02 -2.32252568e-01\\n-1.56914338e-01 3.46349657e-01 3.87219638e-02 -1.79150671e-01\\n1.08784232e-02 -2.71173120e-01 -3.27146538e-02 -4.91972446e-01\\n6.42255768e-02 -5.33955753e-01 1.34940624e-01 1.36563212e-01\\n4.42563266e-01 -2.45066866e-01 1.69967160e-01 2.05120325e-01\\n1.94879889e-01 1.58966720e-01 -4.96476181e-02 -1.37066945e-01\\n-2.65961826e-01 -3.28777641e-01 -2.37413764e-01 -3.46467763e-01\\n4.39812869e-01 3.89918834e-01 -1.11154459e-01 5.05039580e-02\\n-1.05886273e-01 -3.11073333e-01 -2.94818640e-01 -4.59784567e-01\\n-3.06161493e-01 1.66427895e-01 -6.93567276e-01 -4.89499658e-01\\n-2.84662023e-02 -3.44134197e-02 -1.77855670e-01 4.83848572e-01\\n-3.33003134e-01 -4.72433984e-01 -3.17299366e-02 -5.31272769e-01\\n1.13127738e-01 -4.77387421e-02 1.08714901e-01 -8.11626241e-02\\n-2.80820370e-01 -4.56554949e-01 1.21841677e-01 3.96574438e-02\\n-1.46636561e-01 -3.35093439e-02 1.18002884e-01 -1.47341549e-01\\n-4.16376084e-01 -3.04768562e-01 4.85285610e-01 -1.07428515e-02\\n4.35039401e-01 1.46653175e-01 2.52369672e-01 2.60240167e-01\\n2.93618143e-01 -1.33284807e-01 1.89405262e-01 -3.70070457e-01\\n2.24102393e-01 1.66856602e-01 5.76015949e-01 -2.37886101e-01\\n-4.23823856e-02 1.35433361e-01 -1.65749222e-01 -1.09654024e-01\\n5.20451009e-01 7.07869679e-02 5.39543070e-02 -1.62050843e-01\\n2.81815946e-01 -4.87247586e-01 -2.30131328e-01 1.45535156e-01\\n-1.78700546e-03 5.65422177e-01 1.74928382e-01 -3.22919875e-01\\n-1.83554620e-01 3.27672988e-01 3.18201147e-02 -2.20363617e-01\\n-2.68335119e-02 6.36626035e-02 -2.24550009e-01 2.38265187e-01\\n1.56959519e-01 -1.54462367e-01 -2.35577524e-01 -1.54480329e-02\\n-5.94599135e-02 1.81890115e-01 2.69194841e-01 5.72329462e-02\\n-1.64241031e-01 -2.36346021e-01 -1.54765680e-01 1.49112508e-01\\n2.14499846e-01 1.82263434e-01 1.50400668e-01 -8.89383033e-02\\n4.80591655e-02 1.74056262e-01 -7.37534910e-02 1.20663665e-01\\n-1.44387811e-01 1.34751692e-01 -4.79542136e-01 -2.41103455e-01\\n-1.42490268e-01 -1.49614692e-01 -8.03369954e-02 3.60542506e-01\\n2.09526047e-01 -1.28700688e-01 7.41112530e-02 -3.00515503e-01\\n4.33313340e-01 -9.22398120e-02 2.64875293e-01 6.50296733e-02\\n1.29448503e-01 5.66303909e-01 3.41924815e-03 -2.84663171e-01\\n-1.87255308e-01 1.38023511e-01 -3.17382902e-01 -1.25782654e-01\\n6.44829571e-02 -2.62982041e-01 -6.70783315e-03 2.24723488e-01\\n1.88453346e-01 -2.85637025e-02 -8.36273655e-02 2.33084783e-01\\n-8.06129053e-02 -1.33166954e-01 -2.77333379e-01 7.27839395e-02\\n2.40309715e-01 -1.10012293e-03 1.51007280e-01 -3.91991824e-01\\n-5.43580987e-02 -5.22595942e-02 1.96869865e-01 3.62520337e-01\\n1.72606096e-01 1.10475160e-01 5.07885255e-02 -3.66143614e-01\\n4.25003797e-01 9.30979773e-02 -1.49404928e-01 -6.48168772e-02\\n1.07491672e-01 -1.12839855e-01 -3.68518174e-01 4.42494117e-02\\n-7.83619657e-02 -1.66494861e-01 2.31656522e-01 2.77469493e-02\\n8.90479758e-02 -5.20769395e-02 -4.04213935e-01 -1.81027845e-01\\n-2.48201355e-01 6.66322634e-02 -1.35266976e-02 -5.80770552e-01\\n-2.52953842e-02 6.47834390e-02 -5.63979268e-01 2.30325684e-01\\n-2.32393950e-01 1.46712109e-01 1.90329477e-02 3.81421633e-02\\n-2.39439160e-01 -5.31105772e-02 3.74628514e-01 -2.05257703e-02\\n-3.62264395e-01 -1.44534498e-01 -1.16461543e-02 -6.81164026e-01\\n2.10316882e-01 -1.39638126e-01 -2.53788441e-01 -3.59374955e-02\\n7.91927874e-02 -5.53475857e-01 2.19622031e-01 -2.71812916e-01\\n-3.28819528e-02 -8.21738318e-02 -2.49019846e-01 -3.07344526e-01\\n-2.55303774e-02 -1.97017625e-01 -1.10558458e-01 2.45045513e-01\\n-3.72373790e-01 3.70978922e-01 -8.42841528e-03 9.68909562e-02\\n1.45247206e-01 -3.72409821e-01 1.88435882e-01 -3.33387047e-01\\n-2.86380798e-01 -2.09097177e-01 -2.95100987e-01 -1.93460912e-01\\n-4.88442592e-02 -4.07931693e-02 -6.54291362e-02 -2.58242022e-02\\n2.53914565e-01 1.22465208e-01 -3.30628425e-01 -1.50074691e-01\\n7.58033693e-02 -3.46004188e-01 1.59437843e-02 -1.67228520e-01\\n-7.91710895e-03 -2.32482888e-02 2.21467286e-01 -2.49810591e-01\\n6.88032955e-02 -2.70387858e-01 4.86088365e-01 -5.40458672e-02\\n-3.14256907e-01 -1.36600018e-01 9.79795456e-02 6.79384694e-02\\n6.56604245e-02 -4.48888212e-01 -1.30255461e-01 2.36114174e-01\\n2.48830214e-01 1.62899733e-01 2.69786775e-01 -1.16645448e-01\\n-1.54523998e-01 2.31660023e-01 -6.11691236e-01 5.08534871e-02\\n6.47831559e-01 2.14162916e-01 3.35853472e-02 1.50039747e-01\\n-1.41143883e-02 5.00303507e-01 5.02642572e-01 7.12186769e-02\\n-8.07293579e-02 3.23166102e-01 1.79011106e-01 -5.46630263e-01\\n-2.17709124e-01 -2.12556571e-01 5.11331931e-02 -1.28550082e-01\\n5.45960605e-01 3.32146078e-01 -4.05467331e-01 -3.75077903e-01\\n-2.62413695e-02 -1.85728237e-01 -4.94477618e-03 -5.56833632e-02\\n3.87714766e-02 -3.44808370e-01 5.72980762e-01 4.57259715e-02\\n1.50245577e-01 5.87748170e-01 -2.29656659e-02 -1.65700898e-01\\n-4.39063273e-02 -4.48782369e-03 2.24708572e-01 1.71340123e-01\\n3.62066887e-02 2.23898128e-01 -1.05163552e-01 2.57129729e-01\\n-1.87560171e-01 -1.14559837e-01 -2.27715131e-02 8.70154127e-02\\n3.72791220e-03 1.92913145e-01 2.80505449e-01 2.89855689e-01\\n2.70798266e-01 4.72418129e-01 1.51201010e-01 5.04177399e-02\\n4.67858434e-01 4.62481171e-01 3.44654828e-01 -7.07194209e-02\\n9.23467521e-03 -7.29600200e-03 4.87732217e-02 -3.97568271e-02\\n2.54340291e-01 3.70028287e-01 1.45252600e-01 7.61656582e-01\\n2.82434344e-01 2.15063110e-01 6.27487659e-01 -4.68006104e-01\\n-3.14145565e-01 -2.48940401e-02 4.65045631e-01 -4.33412760e-01\\n-3.97228412e-02 -2.92391703e-03 -4.07598048e-01 -1.04498276e-02\\n-4.59011883e-01 -1.26563892e-01 9.05431807e-02 -2.24144384e-01\\n2.02035144e-01 -3.47004347e-02 -1.09594010e-01 2.54878581e-01\\n-7.38227442e-02 -2.25456744e-01 -2.67048150e-01 -2.72668540e-01\\n-3.16334963e-01 -6.18873127e-02 8.93824175e-03 -1.23509131e-01\\n1.33660093e-01 -3.38436037e-01 -4.22289260e-02 7.25715458e-02\\n3.78760368e-01 -8.82091075e-02 -1.45551324e-01 -1.20544843e-01\\n4.87549677e-02 3.06263864e-01 6.65579557e-01 -3.59557047e-02\\n1.01192921e-01 -1.96387209e-02 -1.29716069e-01 -1.00155100e-02\\n1.38584390e-01 4.15863991e-02 7.06940591e-02 5.33690274e-01\\n-4.59870458e-01 -1.96968336e-02 2.66726594e-02 3.53691995e-01\\n-2.90817887e-01 6.57966435e-02 7.97382742e-02 1.02914721e-01\\n7.74745271e-02 5.30694202e-02 -3.04382831e-01 1.58175215e-01\\n-2.37163916e-01 -5.82946837e-01 3.82542759e-01 -7.46670589e-02\\n-8.55535492e-02 -3.75871286e-02 1.85024709e-01 1.84259951e-01\\n-2.99542904e-01 -6.36216104e-02 -1.34176716e-01 2.70591199e-01\\n6.87954295e-03 2.37124860e-01 -3.01606178e-01 -2.38960132e-01\\n-3.22479457e-01 3.13418955e-01 1.21872477e-01 2.27395422e-03\\n-2.45224327e-01 3.77896607e-01 1.26993507e-01 1.76121458e-01\\n7.23407045e-02 -2.43791133e-01 -2.40951732e-01 -2.50291169e-01\\n-3.00154269e-01 -4.04937863e-02 6.60772845e-02 -1.24320529e-01\\n2.27274880e-01 -3.30703080e-01 -2.64657605e-02 -2.14440331e-01\\n-1.69417113e-01 -2.58702189e-01 -2.00911481e-02 -1.78634003e-02]]',\n", + " 'Job Informationen In this role you will be performing the following activities: - Develop and implement Oracle database related solutions - Database Performance-analysis, -tuning and problem monitoring - Keeping the Patch-Level of Databases, Oracle- Cluster ware and Database Machines up to date. - Maintain the availability of our database HA solutions in Dataguard and RAC configurations - rman backup/recovery configuration, execution and monitoring - Administer Linux machines Our requirements: - At least 5 years’ experience in Oracle Database administration and -tuning - Experience in Linux administration - Expert skills in several of these technologies: Oracle RAC, Data Guard, Golden Gate, RMAN, OEM - Work-experience with Oracle ODA - Good communication and documentation skills - Customer Orientation, capability of working independently and flexibility - English and German are mandatory Benötigte Skills Englisch Oracle Linux',\n", + " '[\"Communications\"]',\n", + " '[\"Oracle Autonomous Database\", \"Oracle Linux\", \"Executable\", \"Database Administration\", \"Linux Administration\", \"Activism\", \"Linux\", \"Maintainability\", \"Machining\", \"Performance Analysis\", \"Oracle Databases\", \"Oracle Rac\", \"Recovery Manager (RMAN)\", \"Guarding\"]',\n", + " \"['English', 'Malay', 'Tagalog', 'Scottish Gaelic']\"],\n", + " ['38',\n", + " 'data scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.03343868e-01 2.30763748e-01 5.38993478e-01 4.34119478e-02\\n5.34979820e-01 -3.87130156e-02 -4.73924242e-02 2.99967110e-01\\n5.45151979e-02 -4.72891748e-01 -3.38513441e-02 -2.34363019e-01\\n-3.71357948e-02 1.22097448e-01 2.06475183e-01 5.27176976e-01\\n2.40563542e-01 1.57984551e-02 -9.60903391e-02 4.04276520e-01\\n1.24177679e-01 -1.25039771e-01 1.65932745e-01 7.62462139e-01\\n5.29685259e-01 -8.97750445e-03 -1.24191806e-01 -4.64070216e-02\\n-2.87370294e-01 -2.17502296e-01 5.09112000e-01 -1.38884196e-02\\n-1.59409046e-01 -2.75068492e-01 9.88993719e-02 1.18097454e-01\\n-2.40171224e-01 -1.03529440e-02 -4.62151542e-02 1.98938057e-01\\n-5.37210405e-01 -1.83637619e-01 -1.04602285e-01 -1.73897892e-02\\n-2.81807959e-01 -3.76029849e-01 -1.03991032e-02 -7.30309933e-02\\n4.46095839e-02 9.46762040e-02 -5.20715833e-01 3.41190279e-01\\n-1.78565487e-01 -2.86245823e-01 1.94672897e-01 7.81848311e-01\\n-6.73715547e-02 -4.83343661e-01 -5.43830872e-01 -3.55475992e-01\\n6.82389885e-02 -1.03316627e-01 1.20132297e-01 -3.13315928e-01\\n2.56372482e-01 -7.92228281e-02 -3.25507075e-02 2.17792124e-01\\n-7.56444931e-01 -1.46264017e-01 -2.32868388e-01 1.22063048e-01\\n-3.37095857e-01 6.25872314e-02 -3.81291270e-01 -9.43925902e-02\\n-9.64849815e-02 4.85821396e-01 8.87235813e-03 3.02395243e-02\\n-2.51084000e-01 2.62842774e-01 -1.56530038e-01 2.78546005e-01\\n1.88077927e-01 2.25880608e-01 2.82864809e-01 4.12221372e-01\\n-3.45938176e-01 3.23628724e-01 1.46459535e-01 -3.64160955e-01\\n2.53715008e-01 1.53682172e-01 4.33273703e-01 9.38322768e-03\\n1.52849674e-01 7.00151250e-02 -2.55638897e-01 2.77255595e-01\\n2.14355350e-01 -4.02089208e-01 1.07306987e-01 -1.08542912e-01\\n4.83603477e-02 -3.14614624e-02 8.09155032e-02 1.45625159e-01\\n-3.34811091e-01 3.45012963e-01 9.47378501e-02 -1.91496909e-01\\n-1.03878319e-01 -5.78423202e-01 2.09226320e-03 6.21747449e-02\\n1.69600055e-01 3.47162873e-01 1.45100474e-01 1.73138872e-01\\n1.79351330e-01 -3.73074263e-02 2.26460546e-01 7.75896430e-01\\n-5.87454215e-02 1.09416865e-01 -2.26481706e-01 2.88228422e-01\\n1.37839764e-01 -3.48483711e-01 2.24569038e-01 1.06233917e-01\\n-9.72716063e-02 -1.62953645e-01 -2.27057829e-01 2.29367316e-01\\n-1.48686722e-01 -3.13442111e-01 -2.09349230e-01 2.24907875e-01\\n1.07625842e-01 -3.90913725e-01 6.48622394e-01 -2.25769859e-02\\n1.28989398e-01 -1.60373926e-01 -1.19314983e-01 -1.03887036e-01\\n-6.55472353e-02 2.31716350e-01 9.95418355e-02 1.43068016e-01\\n-2.36593410e-01 -2.74164379e-01 -1.92878976e-01 9.17827189e-02\\n-5.07121801e-01 1.41971961e-01 -1.28286719e-01 -5.80766685e-02\\n2.16732055e-01 1.30471557e-01 -3.74847740e-01 1.70343876e-01\\n-1.88910753e-01 -1.12336844e-01 4.73561250e-02 3.87542367e-01\\n-3.26294988e-01 2.43841320e-01 6.55612256e-03 -1.10927440e-01\\n6.92139864e-01 2.11853623e-01 2.66393989e-01 2.04083491e-02\\n2.68992305e-01 -7.00954795e-02 8.40476602e-02 1.90958872e-01\\n-5.65881014e-01 2.81723291e-01 -1.62538618e-01 -2.79493868e-01\\n1.63718700e-01 -9.16426331e-02 4.11607772e-01 -3.17451298e-01\\n-7.04959966e-03 -1.48183599e-01 -2.82437176e-01 -3.07242721e-01\\n-1.23239353e-01 -4.47026864e-02 3.73835117e-01 -4.41698372e-01\\n-1.04132816e-02 2.62968272e-01 -4.99885499e-01 -1.78865910e-01\\n1.24962807e-01 1.68164492e-01 2.20379427e-01 1.63153321e-01\\n-1.49005428e-01 -5.92436850e-01 1.52511112e-02 -4.19609368e-01\\n-2.74719924e-01 5.10507487e-02 -3.20439607e-01 1.53898492e-01\\n2.49173902e-02 1.21990308e-01 -9.90692154e-02 7.39639346e-03\\n-1.45518035e-01 -2.58275270e-02 5.90835735e-02 8.38483572e-02\\n3.89136314e-01 8.13181847e-02 -4.09939945e-01 4.84633327e-01\\n-2.12312192e-01 6.25264525e-01 1.24346152e-01 -9.80473638e-01\\n6.03938639e-01 2.57790625e-01 -7.54845962e-02 -2.96940148e-01\\n4.95682538e-01 -3.28293592e-01 -2.50406321e-02 1.40372217e-01\\n-3.13391507e-01 -2.89684147e-01 2.86162943e-01 -2.45242536e-01\\n-2.09089339e-01 4.86634016e-01 1.18346840e-01 1.36726320e-01\\n2.51162916e-01 -2.08349466e-01 -1.09957770e-01 -1.47282276e-02\\n-6.36356100e-02 -1.83957636e-01 -6.79240525e-01 1.62515659e-02\\n-2.06544250e-01 -4.28036094e-01 -8.14266726e-02 -3.42492938e-01\\n-1.99275434e-01 -4.22752440e-01 -7.85707012e-02 1.07396990e-01\\n2.85738617e-01 4.50169966e-02 -6.88309968e-02 -1.73347015e-02\\n-9.23098624e-03 -6.72113478e-01 -9.80941206e-02 1.58549115e-01\\n4.23470438e-01 2.36782342e-01 1.86994627e-01 -4.48385850e-02\\n1.52598917e-01 5.64646721e-01 -2.90545642e-01 -2.69818246e-01\\n2.44540215e-01 7.58445039e-02 -4.31387424e-02 -1.99641079e-01\\n1.43902540e-01 1.33284569e-01 -2.58983791e-01 1.82899870e-02\\n-2.67209746e-02 -1.08145542e-01 4.16582584e-01 -6.53029829e-02\\n-1.60018533e-01 -1.34350806e-01 -8.05444196e-02 1.10381968e-01\\n-5.20404458e-01 -2.84330100e-01 5.72608829e-01 1.55429363e-01\\n1.86988324e-01 1.18153542e-01 1.17237493e-01 -1.54355513e-02\\n-2.30902433e-01 -2.05100387e-01 2.86329567e-01 1.00271851e-01\\n1.55057907e-01 1.26079127e-01 1.06383944e-02 -7.20139861e-01\\n-3.44800234e+00 -1.82609260e-01 4.30243351e-02 -1.96099296e-01\\n1.95774332e-01 -1.48200765e-01 5.49846441e-02 -2.05202941e-02\\n-3.28661978e-01 -6.08064514e-03 -1.72436684e-01 -1.58486858e-01\\n3.62683386e-02 1.83919847e-01 1.77659392e-01 2.68530309e-01\\n1.29694968e-01 -2.15548575e-01 -5.68717271e-02 4.37355548e-01\\n-1.49075866e-01 -6.16673946e-01 1.91888273e-01 1.10642478e-01\\n2.67340422e-01 2.81551063e-01 -4.76889908e-01 -5.68605810e-02\\n-2.46072859e-01 -1.89359590e-01 8.92390236e-02 -2.98651874e-01\\n-3.07158023e-01 2.21285135e-01 1.28742963e-01 -9.79780592e-03\\n6.51369542e-02 -4.29293752e-01 -1.93411380e-01 -3.96880031e-01\\n7.00733140e-02 -6.37853026e-01 -5.56009859e-02 -2.32573241e-01\\n6.48625255e-01 -2.07555249e-01 2.29414165e-01 9.05872881e-03\\n1.34549215e-01 4.07421812e-02 1.09364912e-02 4.42888215e-03\\n-1.85166627e-01 -2.84320414e-01 -5.82451448e-02 -1.26468763e-01\\n5.89282155e-01 3.98808688e-01 -6.92917481e-02 -4.39435914e-02\\n1.47232845e-01 -2.30870485e-01 -5.42497396e-01 -2.31308341e-01\\n-1.60647899e-01 -1.15518063e-01 -5.98265529e-01 -3.24230373e-01\\n-1.47600383e-01 -2.45622486e-01 -1.31393686e-01 6.13225281e-01\\n-2.78479934e-01 -2.55971283e-01 -1.35177180e-01 -4.87251073e-01\\n2.98640102e-01 -2.43487999e-01 1.75515171e-02 -2.28454083e-01\\n-3.08400631e-01 -4.75210547e-01 1.01907417e-01 5.80981225e-02\\n-1.68490678e-01 -1.61768049e-01 6.26888312e-03 -1.62818938e-01\\n-3.71261150e-01 -5.65067768e-01 3.76451552e-01 5.54502234e-02\\n2.87895203e-01 6.31127357e-02 4.25403416e-01 -8.10361207e-02\\n3.75872374e-01 -3.48828770e-02 -1.11873597e-02 -3.89423788e-01\\n1.18140824e-01 9.08161998e-02 5.27094364e-01 -2.68927664e-01\\n1.90385170e-02 -3.35797668e-05 -2.53355294e-01 1.25018701e-01\\n4.00337219e-01 -5.45716584e-02 7.79160485e-02 -2.56094635e-02\\n2.34904900e-01 -2.86127806e-01 -7.24384040e-02 8.38469863e-02\\n5.98106235e-02 7.43247092e-01 -6.52511939e-02 -3.21561068e-01\\n-1.81491941e-01 3.96404177e-01 -7.91395307e-02 1.20543212e-01\\n-2.03741252e-01 5.26347756e-02 -2.22391814e-01 3.08321863e-01\\n1.28396992e-02 -2.62069553e-01 -1.93990469e-01 -1.79392695e-01\\n-1.71351105e-01 3.48474145e-01 2.73936212e-01 7.98977241e-02\\n-4.12340909e-02 -3.73255998e-01 -9.65191200e-02 2.32484221e-01\\n2.36619368e-01 4.33709383e-01 1.66129589e-01 -2.33165488e-01\\n-6.02655485e-02 3.04455936e-01 -3.14703584e-01 2.45226040e-01\\n-2.79060721e-01 1.51490450e-01 -5.53827107e-01 -3.14107418e-01\\n-2.38843292e-01 -4.02781725e-01 2.66242951e-01 4.66194034e-01\\n2.34550923e-01 -3.20919603e-02 3.68824936e-02 -4.01094377e-01\\n2.46412605e-01 1.23772793e-01 1.39846355e-01 1.02486245e-01\\n-5.85739538e-02 6.21647954e-01 -3.02647129e-02 -6.69649988e-02\\n6.69175200e-03 -2.60228328e-02 -2.16520414e-01 -2.27943569e-01\\n1.20660909e-01 -4.60824877e-01 -2.15061098e-01 3.52002770e-01\\n1.62245959e-01 -2.07402229e-01 -2.13199899e-01 2.96611488e-01\\n1.54158995e-02 -3.48368824e-01 -1.56249791e-01 3.02210450e-02\\n3.39117289e-01 1.60919815e-01 4.06444311e-01 -4.95779157e-01\\n4.41726949e-03 -6.86247349e-02 -6.38718531e-02 3.20025444e-01\\n6.74214959e-02 1.46527588e-01 -2.14669406e-01 -1.43222302e-01\\n5.86831510e-01 -8.58149454e-02 -1.09388560e-01 1.20669849e-01\\n6.21372685e-02 -2.31922582e-01 -4.20078635e-01 1.10732280e-01\\n2.08665319e-02 -2.74237394e-01 -8.93482864e-02 1.23018801e-01\\n1.33224249e-01 7.95503706e-03 -6.00904703e-01 -1.77618414e-01\\n-2.46541262e-01 -1.24588655e-02 6.86416253e-02 -5.38020313e-01\\n-1.23260379e-01 -1.48033977e-01 -5.83821714e-01 1.96651459e-01\\n-4.02568281e-02 -1.76495910e-01 1.91098973e-01 -1.31880408e-02\\n-1.61894828e-01 -1.07534558e-01 3.25636789e-02 2.03372359e-01\\n-3.55641127e-01 -2.94837594e-01 4.73181531e-02 -1.00536239e+00\\n1.54831737e-01 2.31558830e-01 -2.15233818e-01 1.73128635e-01\\n-1.30525738e-01 -7.24637866e-01 2.07911938e-01 -3.98372769e-01\\n-1.35630697e-01 -1.97347388e-01 -2.23729491e-01 -3.53678495e-01\\n1.29845485e-01 2.77230814e-02 -3.50977927e-01 3.65032017e-01\\n-2.00580746e-01 3.48097801e-01 -6.32193238e-02 3.48044410e-02\\n8.07574913e-02 -2.04395056e-01 1.29091650e-01 -1.71415567e-01\\n-3.61894071e-01 -2.25210398e-01 -3.50763321e-01 -3.31488639e-01\\n-4.83489297e-02 -3.56270432e-01 -1.22437119e-01 1.23067573e-01\\n3.67484093e-01 1.23033345e-01 -1.08701333e-01 -2.82381922e-01\\n5.29918894e-02 -4.41964149e-01 2.59627029e-03 -8.37394819e-02\\n-1.12422422e-01 -1.03708744e-01 2.01126456e-01 1.30498931e-01\\n2.22310692e-01 -3.30033958e-01 5.16164184e-01 -3.22866023e-01\\n-2.88791299e-01 -1.13699548e-01 7.13948980e-02 -2.86400691e-02\\n3.49663764e-01 -3.80113661e-01 -1.22857526e-01 3.57985884e-01\\n5.56704886e-02 1.17764287e-01 2.28677183e-01 -1.25039518e-01\\n-1.44594312e-01 2.08710432e-01 -3.47990990e-01 1.46066338e-01\\n8.58892322e-01 1.94254965e-01 4.54286672e-03 1.63686037e-01\\n1.82376876e-01 2.70020843e-01 4.68955785e-01 -6.62302226e-02\\n-1.05469622e-01 2.50506431e-01 2.16680951e-03 -5.09775877e-01\\n4.29906361e-02 -9.70313475e-02 -1.44155771e-01 -4.28741783e-01\\n6.95365906e-01 2.81730115e-01 -3.87791812e-01 -2.00902045e-01\\n-1.25765711e-01 -1.32133171e-01 3.21253628e-01 1.71411373e-02\\n-4.07167748e-02 -1.88163556e-02 4.65991288e-01 -1.06553853e-01\\n2.35197514e-01 5.22611737e-01 -7.12134838e-02 -1.95413053e-01\\n-5.78605980e-02 2.71702111e-01 1.15357876e-01 5.55390179e-01\\n-2.26667404e-01 3.05121839e-01 -2.77492907e-02 1.14857983e-02\\n-1.45579338e-01 4.80127484e-02 2.20011339e-01 1.41912729e-01\\n1.88839644e-01 1.57106966e-01 4.43282783e-01 4.10943627e-01\\n2.02149630e-01 3.39008719e-01 3.82430017e-01 2.48419587e-03\\n3.67669463e-01 5.26082754e-01 3.51263911e-01 1.82386249e-01\\n7.02510402e-02 1.87211633e-01 1.64228886e-01 -2.75378507e-02\\n3.37155372e-01 3.99722606e-01 1.72077432e-01 7.55692363e-01\\n2.10361362e-01 3.92354727e-01 7.19956040e-01 -6.97514713e-01\\n-3.52785289e-01 5.96530624e-02 5.91005683e-01 -3.72862190e-01\\n6.57504946e-02 2.13819697e-01 -1.45916030e-01 2.33916909e-01\\n-6.23194933e-01 -2.83223033e-01 -7.62025416e-02 8.73444602e-02\\n-7.09280074e-02 -2.69449949e-01 -2.40030959e-01 2.17971206e-01\\n-3.53029743e-02 -1.22371718e-01 -3.37026238e-01 -1.70222163e-01\\n-1.27067745e-01 -6.04245439e-02 -7.36331865e-02 -2.87338793e-02\\n-1.31561309e-01 -2.19521314e-01 -7.96688497e-02 -1.25363886e-01\\n3.39101136e-01 -1.01144299e-01 -9.03323740e-02 -8.32718685e-02\\n2.82446116e-01 1.32077485e-01 4.87239152e-01 -7.30038062e-03\\n1.78945690e-01 -2.17060119e-01 -1.62933826e-01 1.06201150e-01\\n2.20534787e-01 -1.87682062e-02 1.15030715e-02 3.27968180e-01\\n-2.92840838e-01 -2.74773717e-01 1.22440085e-01 1.99164167e-01\\n-3.87138903e-01 -2.13555619e-02 -9.11058486e-02 1.97499231e-01\\n4.55599390e-02 2.95288444e-01 -2.16878295e-01 -2.00727303e-02\\n-8.38285685e-02 -5.03587782e-01 2.03642949e-01 2.16289982e-03\\n-2.94709623e-01 -1.47831887e-02 3.58099073e-01 1.31506920e-01\\n-3.29994977e-01 -2.94567980e-02 -1.17542207e-01 6.90163970e-02\\n8.11603814e-02 2.86071718e-01 -1.23395130e-01 -3.46197993e-01\\n-2.84858912e-01 1.57085583e-01 -2.50125080e-02 1.50009379e-01\\n4.36485000e-02 4.55555677e-01 -2.82361582e-02 1.96897149e-01\\n3.77941638e-01 1.08558245e-01 -2.24067509e-01 -2.88678646e-01\\n-2.03996092e-01 -1.60455674e-01 -1.09643020e-01 -8.79208148e-02\\n8.09622258e-02 -3.78949165e-01 -9.10735503e-02 -1.95933908e-01\\n-1.41849011e-01 -4.18155074e-01 7.02059418e-02 -8.77872258e-02]]',\n", + " 'Are you curious, confident and would you like to be part of creating a new data platform from start? Furthermore, do you want to work with world’s biggest Language Company in the world? Then please read on! We are looking for a Data Scientist to be based in our headquarters in Zurich, Switzerland. EF International Language Campuses is building a new data platform and is looking for new T-profiles, combining general and in-depth technology skills, to join the team to build the future of data processing at EF. The role Work with large complex data sets to solve difficult, non-routine analysis problems applying advanced analytical methods as needed Conduct end-to-end analysis including data gathering and requirements specification, processing, analysis, ongoing deliverables and presentations Make business recommendations with effective presentations of findings at multiple levels of stakeholders through use of visual displays of quantitative information Collaborate with business customers to understand needs, recommend strategy enhancements and deploy predictive analytics across multiple platforms Develop, consult on, deploy and analyse testing strategies to leverage learnings for future business endeavours Present technical issues to non-technical audiences You will work in a highly international company with development offices in Zurich, London, Shanghai, Boston and Bangalore Your profile You are curious and want to stay on top of new technologies You have an entrepreneurial drive and focus on progress and results You are a team-player and have an agile mind-set You are hands-on with an attention to details and quality Requirements Bachelor / Master / PhD degree in Math, Statistics, Physics, CS, or other quantitative disciplines Experience articulating business questions, using mathematical techniques to arrive at an answer using available data, and translating technical/analysis results into business recommendations Extensive experience with programming/analytical tools (Python, R, Julia, etc.) Experience cleaning and processing data (structured, unstructured) Experience with data visualization tools (Qlik, PowerBI, D3, etc.) Experience with data querying tools (SQL, DB2, Hive, Pig etc.) Excellent communication (written and verbal), presentation, and facilitation skills Ability to manage multiple goals and deadlines Fluency English About Us EF Education First is a global education company focusing on language, academic, cultural exchange, and educational travel programs. We are 52,000 staff, faculty and teachers, working in over 612 offices and schools across 52 countries, and having a global presence in 116 countries. While we continue to grow, we strive to stay small so as to ensure agility, smart thinking and a fun place to work. For the past 53 years, EF has grown to include a range of programs that give students of all ages the freedom and confidence to explore the world through language, travel and education. EF is committed to safeguarding and promoting the welfare of children and young adults and expects all staff and volunteers to share this commitment. References will be followed up and will ask specifically whether there is any reason that the applicant should not be engaged in situations where they have responsibility for, or substantial access to, persons under 18. Upon interview all gaps in CVs must be explained satisfactorily and proof of identity and, where applicable, qualifications will be required. Appropriate suitability checks and Garda Vetting will be conducted prior to confirmation of appointment.',\n", + " '[\"Collaboration\", \"Management\", \"Articulation\", \"Presentations\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Julia (Programming Language)\", \"Tooling\", \"Agility\", \"Programming (Music)\", \"Analytics\", \"Scholastic READ 180\", \"Visualization\", \"Requirements Specifications\", \"Python (Programming Language)\", \"Levelling\", \"D3.js\", \"Test Strategy\", \"Process Analysis\", \"DB2 SQL\", \"Technical Translation\", \"Data Visualization\", \"Apache Hive\", \"Personalization\", \"Cultural Exchange\", \"R (Programming Language)\", \"Young Adult Literature\", \"Electronic Data Processing\", \"Statistical Physics\", \"Technical Analysis\", \"Data Structures\", \"Predictive Analytics\", \"Data Management Platforms\", \"Data Processing\"]',\n", + " \"['English', 'Assamese', 'Amharic']\"],\n", + " ['78',\n", + " 'data science support (m/f/d) 80%',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-2.10731536e-01 3.69907647e-01 5.37105322e-01 -8.32841396e-02\\n4.53694373e-01 -1.47729725e-01 8.38730298e-03 3.66918534e-01\\n-1.57625392e-01 -3.26307744e-01 -1.58176333e-01 -2.35379845e-01\\n-2.38481447e-01 2.98396703e-02 2.55294055e-01 4.43618059e-01\\n3.02331537e-01 1.41056091e-01 -2.33044013e-01 3.40792924e-01\\n1.05844527e-01 -4.63881083e-02 4.21047024e-02 5.62856317e-01\\n3.92587990e-01 -4.81727114e-03 -4.79921885e-02 2.79685240e-02\\n-3.64072233e-01 -2.69238085e-01 3.66391331e-01 3.59552540e-02\\n-1.34150833e-01 -2.66587615e-01 1.03522204e-01 6.95136935e-02\\n-2.00103402e-01 7.58919716e-02 -5.40180467e-02 1.23594776e-01\\n-5.28827906e-01 -2.32451200e-01 2.22892419e-01 6.08282946e-02\\n-3.06051791e-01 -3.61976653e-01 2.70672292e-01 -1.21745132e-01\\n1.05021968e-01 3.80751602e-02 -5.13953090e-01 3.23753357e-01\\n-3.42199296e-01 -2.47083098e-01 3.48262936e-01 6.11278951e-01\\n9.53011885e-02 -6.74879730e-01 -4.09028232e-01 -3.56984079e-01\\n1.20385014e-01 -7.89638385e-02 4.85966466e-02 -2.45383576e-01\\n3.89639914e-01 1.41319744e-02 -4.61677052e-02 2.58769363e-01\\n-7.97479451e-01 -1.70608252e-01 -2.26641998e-01 -4.86740191e-03\\n-3.62574607e-01 1.64110716e-02 -2.51666874e-01 -5.32444119e-02\\n-2.19522864e-02 4.17514384e-01 -9.81100276e-02 1.05325781e-01\\n-8.26765671e-02 3.55940074e-01 -4.79766764e-02 2.58681506e-01\\n3.57513756e-01 1.48636431e-01 2.21547097e-01 4.55340981e-01\\n-3.70224148e-01 3.42689931e-01 2.75950491e-01 -2.66333252e-01\\n1.65974915e-01 8.30710828e-02 5.42722106e-01 2.02049866e-01\\n-1.75791152e-04 1.33832678e-01 -2.63876855e-01 2.21400827e-01\\n1.66453093e-01 -2.34147057e-01 -3.30838151e-02 -6.34793565e-02\\n-1.27191529e-01 -2.67711636e-02 3.20337676e-02 3.54278088e-01\\n-2.83879459e-01 4.84825373e-01 2.16134235e-01 -2.29279399e-01\\n9.40535497e-03 -5.89384675e-01 -2.06433266e-01 1.01783410e-01\\n-2.25730333e-03 2.10527003e-01 2.31992200e-01 1.74135640e-01\\n3.19889098e-01 -3.15156579e-02 2.13990450e-01 8.40982378e-01\\n4.22333144e-02 9.80159268e-02 -1.79195553e-01 3.17088604e-01\\n1.96465924e-01 -2.52695858e-01 9.05093029e-02 2.92772293e-01\\n1.11302800e-01 -3.07344832e-02 -2.13593394e-01 3.53802264e-01\\n-1.20423749e-01 -2.31578842e-01 -3.34817171e-01 1.01689406e-01\\n-1.87317386e-01 -4.29675370e-01 4.25123721e-01 4.16812375e-02\\n1.92523807e-01 3.16351168e-02 -2.10788380e-02 -3.32988910e-02\\n-1.02190524e-01 2.74721473e-01 2.06413623e-02 1.67150736e-01\\n-2.31359556e-01 -1.98495328e-01 -3.33338976e-01 1.55785426e-01\\n-1.54996380e-01 4.85239401e-02 -1.82880208e-01 -1.52975649e-01\\n4.09928620e-01 1.43778712e-01 -4.56775039e-01 2.95035273e-01\\n-8.29395130e-02 -5.84062114e-02 -1.31028056e-01 3.09784204e-01\\n1.79350760e-03 1.59098104e-01 -3.69025879e-02 -9.39987674e-02\\n6.04301214e-01 1.63868502e-01 9.18486267e-02 -5.02227321e-02\\n4.48493987e-01 -1.02813385e-01 2.58800775e-01 7.20917583e-02\\n-7.56281018e-01 2.76264727e-01 -1.70021988e-02 1.36750611e-02\\n5.17535061e-02 -9.41074193e-02 3.79714787e-01 -4.48161483e-01\\n-3.15036043e-04 -1.80644721e-01 -4.23877507e-01 -3.36619824e-01\\n-3.10977668e-01 -6.40199557e-02 4.66459930e-01 -3.72265697e-01\\n-1.44634172e-01 1.32286146e-01 -5.18678129e-01 -1.01235799e-01\\n3.18453759e-01 2.02263758e-01 1.35310516e-01 1.27309144e-01\\n-8.50867406e-02 -6.43747032e-01 8.50918069e-02 -5.18019795e-01\\n-4.41043556e-01 1.74783766e-01 -3.35100293e-01 2.37536967e-01\\n1.96872242e-02 -2.43050847e-02 -1.49733007e-01 3.46708335e-02\\n-3.01479399e-01 -5.76477572e-02 5.21038249e-02 1.37543768e-01\\n2.39318788e-01 -5.09910621e-02 -4.48510081e-01 4.46121961e-01\\n-3.15744102e-01 5.17616034e-01 1.74525827e-01 -9.39459682e-01\\n6.35799408e-01 2.25852892e-01 6.60003871e-02 -3.09500933e-01\\n5.45736969e-01 -3.38004231e-01 -6.53736964e-02 1.70085728e-01\\n-3.41892570e-01 -3.98401648e-01 2.42864385e-01 -1.54370323e-01\\n-3.47090453e-01 5.43048084e-01 1.28654554e-01 -5.45445383e-02\\n2.30093777e-01 -1.89999372e-01 -1.07986249e-01 1.61216408e-01\\n-4.12692949e-02 -1.26108602e-01 -4.68378842e-01 -2.25561322e-03\\n1.77530814e-02 -5.04604638e-01 -2.01132506e-01 -3.45662057e-01\\n-2.27212965e-01 -4.87672180e-01 -3.04211050e-01 3.64536822e-01\\n1.14621542e-01 9.87400115e-02 3.52037661e-02 1.10753790e-01\\n-7.49558136e-02 -6.44169867e-01 5.61154410e-02 6.19635079e-03\\n3.60969901e-01 2.74347961e-01 9.77665707e-02 -8.57716873e-02\\n-7.96219483e-02 6.21131063e-01 -2.42698669e-01 -2.47656479e-01\\n7.22179785e-02 8.03811327e-02 -4.18683030e-02 -1.60559595e-01\\n1.29437938e-01 3.19870889e-01 -1.90356866e-01 1.25097275e-01\\n-1.40182316e-01 -6.52400702e-02 3.25557083e-01 -9.52481106e-02\\n-3.21648359e-01 -2.26222768e-01 -7.16273189e-02 2.45786533e-01\\n-6.41996443e-01 -2.53398776e-01 5.57601035e-01 2.06552386e-01\\n1.78267136e-01 1.85761213e-01 3.36458981e-01 -1.68710142e-01\\n-1.93185434e-01 -2.64896035e-01 2.64908403e-01 2.03485817e-01\\n9.00784805e-02 1.47578567e-01 -1.86626181e-01 -7.16610551e-01\\n-3.04160571e+00 -1.91848218e-01 2.20283180e-01 -2.43747458e-01\\n2.49602973e-01 -4.69423123e-02 9.96891558e-02 -8.37535411e-02\\n-2.02624813e-01 1.85490195e-02 -2.27678329e-01 -1.28193051e-01\\n8.46198350e-02 3.12644690e-01 2.30448581e-02 1.09214991e-01\\n2.21879795e-01 -2.41276398e-01 -4.87298183e-02 2.50997812e-01\\n-5.79752848e-02 -6.78818941e-01 1.47857651e-01 -9.10229981e-02\\n2.70248204e-01 2.87184983e-01 -3.47423702e-01 -1.15189284e-01\\n-1.77563325e-01 -2.33028993e-01 -5.27828047e-03 -2.18604803e-01\\n-1.26371324e-01 2.43191153e-01 8.17344487e-02 2.07444187e-02\\n1.09996334e-01 -2.64710516e-01 -3.94320190e-02 -4.73364085e-01\\n1.90876693e-01 -7.61241436e-01 -6.93584606e-03 -3.00038189e-01\\n5.65630257e-01 -3.78603607e-01 7.37286657e-02 8.87229964e-02\\n2.03951299e-01 1.90445587e-01 -1.29225114e-02 -2.91848276e-02\\n-3.36547554e-01 -1.90935165e-01 -2.47057453e-02 -1.74102336e-01\\n5.69267035e-01 5.52759528e-01 -2.82387435e-01 -1.20747909e-02\\n2.30162367e-01 -4.22629595e-01 -4.79909986e-01 -3.93579215e-01\\n-1.81753576e-01 -2.34211892e-01 -6.72134399e-01 -4.21625942e-01\\n-1.07680894e-01 -2.36486625e-02 -1.30403176e-01 6.27168238e-01\\n-2.63569385e-01 -4.22517121e-01 7.73259476e-02 -5.42714596e-01\\n6.60096705e-02 -1.60290018e-01 3.80783305e-02 -2.83471107e-01\\n-2.12179765e-01 -5.04125297e-01 1.34427428e-01 2.13479735e-02\\n-2.59686083e-01 -7.66295642e-02 6.57235384e-02 -1.64675400e-01\\n-3.07906032e-01 -4.45219874e-01 4.71308798e-01 9.29133445e-02\\n4.22378957e-01 1.41857862e-01 2.24425539e-01 5.19355014e-02\\n3.46008539e-01 -1.35627702e-01 1.39423057e-01 -4.64231133e-01\\n-2.32318249e-02 3.39566283e-02 6.78254366e-01 -1.66035190e-01\\n3.68114002e-02 1.84258372e-01 -2.93843061e-01 -1.76310286e-01\\n4.49197143e-01 5.42719327e-02 7.52034485e-02 -2.74298429e-01\\n4.07258928e-01 -3.58387351e-01 -2.90008128e-01 1.65129423e-01\\n7.86686316e-02 8.04310918e-01 2.43452508e-02 -4.00982440e-01\\n-3.22587609e-01 5.00058353e-01 -1.70635581e-01 -1.00941248e-01\\n-2.18243495e-01 9.68409479e-02 -7.13226050e-02 2.53408551e-01\\n1.28468573e-01 -1.32461771e-01 -2.81297266e-01 -9.55562368e-02\\n-5.88952862e-02 1.64605901e-01 2.40022659e-01 1.17620990e-01\\n5.44424057e-02 -2.58559525e-01 3.75962071e-02 9.65941772e-02\\n2.03767017e-01 3.00640851e-01 4.79891486e-02 -2.63623118e-01\\n-1.25996962e-01 3.49057406e-01 -1.26180321e-01 2.85049856e-01\\n-1.07221283e-01 7.77212754e-02 -4.42887455e-01 -2.15981871e-01\\n-2.64151275e-01 -3.44455302e-01 -1.42485797e-02 3.19568813e-01\\n2.03205854e-01 -2.58313771e-03 8.56234401e-04 -4.99171108e-01\\n3.69079143e-01 6.00580201e-02 2.40228683e-01 1.47707209e-01\\n3.11386529e-02 4.57619697e-01 1.67504977e-02 -4.82043885e-02\\n-1.56614050e-01 6.45890087e-02 -2.26106972e-01 -1.42165214e-01\\n1.26978621e-01 -3.98276120e-01 -1.34162083e-01 4.79718417e-01\\n7.48340338e-02 -2.24436224e-01 -2.46876180e-01 2.53256112e-01\\n1.12354472e-01 -4.18088794e-01 -1.43996909e-01 -1.16118439e-01\\n1.80104852e-01 -7.71564245e-03 3.22382241e-01 -4.10689503e-01\\n4.73950878e-02 -7.78159574e-02 -8.01018625e-02 5.06661594e-01\\n1.40267909e-01 -6.53904155e-02 -1.13426521e-01 -1.00845240e-01\\n4.14705426e-01 -3.11442595e-02 -5.09249195e-02 -6.01374470e-02\\n1.09685875e-01 -1.55536339e-01 -4.71183330e-01 -3.14764641e-02\\n-1.79735139e-01 -1.81970939e-01 2.47871261e-02 -5.92177212e-02\\n1.61049157e-01 7.15048537e-02 -3.25409830e-01 -2.41035104e-01\\n-3.53654683e-01 -9.79515016e-02 -2.78428663e-02 -4.18056190e-01\\n-7.17561617e-02 7.88506269e-02 -6.23365343e-01 1.66162580e-01\\n-3.72024417e-01 9.72304679e-03 1.27361983e-01 1.06142581e-01\\n-4.63612705e-01 -7.47699961e-02 6.00101687e-02 8.39792117e-02\\n-4.04772997e-01 -2.63746500e-01 6.20788112e-02 -8.82543206e-01\\n1.13375835e-01 8.09631404e-03 -1.17724486e-01 9.11231562e-02\\n-6.74665049e-02 -7.57364333e-01 1.87944233e-01 -3.06501180e-01\\n-9.60846618e-02 6.81713745e-02 -2.36296549e-01 -4.31807041e-01\\n1.54325068e-01 -1.51437119e-01 -3.24556172e-01 3.25155675e-01\\n-4.66710329e-01 2.93473542e-01 5.08545376e-02 1.39016703e-01\\n-1.82869360e-02 -2.73568720e-01 9.91006494e-02 -2.60581940e-01\\n-5.66838145e-01 -8.38299394e-02 -3.70923787e-01 -2.70012081e-01\\n6.23657443e-02 -2.22421110e-01 -1.69736937e-01 5.42394072e-02\\n3.77027720e-01 7.91343823e-02 -1.16932280e-01 -6.00278601e-02\\n7.70480111e-02 -3.59642178e-01 -7.37779513e-02 -7.50138685e-02\\n4.24185693e-02 -6.26866072e-02 1.67623848e-01 -6.76227510e-02\\n2.14640558e-01 -3.22585434e-01 5.53006947e-01 -3.04440349e-01\\n-3.90158355e-01 7.15670437e-02 1.36208147e-01 2.66614128e-02\\n2.43216410e-01 -5.51566362e-01 6.44580880e-03 3.18377525e-01\\n-2.62574442e-02 2.46096812e-02 2.21603945e-01 5.41184656e-02\\n-1.66352704e-01 1.80906594e-01 -4.50848997e-01 2.89608892e-02\\n9.16644335e-01 2.13164806e-01 1.00765549e-01 2.21899688e-01\\n-4.68453253e-03 3.57225716e-01 6.30633533e-01 -8.35323483e-02\\n-8.77875835e-02 3.00511867e-01 3.09560765e-02 -6.27168596e-01\\n-1.20123118e-01 1.93521176e-02 -2.52246201e-01 -3.12236071e-01\\n7.15249062e-01 4.20263350e-01 -3.16046119e-01 -2.66715616e-01\\n-9.70485583e-02 -2.16722295e-01 1.43152848e-01 -9.62061286e-02\\n1.53920442e-01 -1.70903847e-01 5.34658790e-01 -5.13083562e-02\\n2.63260216e-01 5.43530464e-01 -2.89680779e-01 -3.15014750e-01\\n-1.32023379e-01 8.76243263e-02 2.58956775e-02 3.52872372e-01\\n-1.76191330e-01 9.32432115e-02 3.79043557e-02 3.62920798e-02\\n-1.45068914e-01 1.68738782e-01 7.30930492e-02 9.16383043e-02\\n3.00069243e-01 1.36907056e-01 2.40522832e-01 4.28248256e-01\\n2.56061375e-01 4.94731307e-01 2.87909806e-01 8.41541961e-02\\n4.59914416e-01 5.29126585e-01 3.98894638e-01 1.50522739e-01\\n-9.35459882e-03 9.87020284e-02 9.05465558e-02 4.84659933e-02\\n4.86199409e-01 2.45884418e-01 2.55503476e-01 8.98801684e-01\\n2.40435839e-01 3.93020213e-01 7.24668622e-01 -5.91465414e-01\\n-3.86379510e-01 8.73027816e-02 4.67809558e-01 -3.04379612e-01\\n-8.79099444e-02 8.69089887e-02 -1.27297148e-01 2.40333095e-01\\n-5.35327196e-01 -1.26873240e-01 -6.66621979e-03 -4.57532220e-02\\n4.01203558e-02 -5.37147373e-02 -2.37362385e-01 -9.71688554e-02\\n-2.82674223e-01 -1.28103331e-01 -3.33885342e-01 -1.44143492e-01\\n-2.04035088e-01 -1.15397640e-01 -2.27123648e-02 -2.15493590e-01\\n-9.80089605e-02 -4.24606293e-01 -1.93304464e-01 -6.99681602e-03\\n2.54074991e-01 -1.17220215e-01 -1.17312118e-01 -1.75538078e-01\\n1.40722409e-01 2.83962280e-01 6.06930852e-01 -4.92974222e-02\\n1.58067986e-01 -1.79238141e-01 -2.44933218e-01 1.17063165e-01\\n1.09505802e-01 -2.61869393e-02 1.52552158e-01 5.52039444e-01\\n-2.80846357e-01 -1.25043973e-01 8.24225470e-02 4.18685585e-01\\n-4.79618251e-01 -5.28519116e-02 -9.48673114e-02 2.07414091e-01\\n2.17076708e-02 1.94035232e-01 -2.88582593e-01 1.38456881e-01\\n-2.30339989e-01 -6.26011491e-01 3.91725063e-01 -4.80942726e-02\\n-1.98783219e-01 9.38457623e-02 3.44199896e-01 2.01732203e-01\\n-2.10025847e-01 -7.50362799e-02 -1.70447174e-02 3.25209022e-01\\n9.07730833e-02 4.24107790e-01 -2.89709508e-01 -1.78466812e-01\\n-2.09643975e-01 2.59959042e-01 -1.39734179e-01 3.53505984e-02\\n-1.43826276e-01 4.34967756e-01 2.37054244e-01 4.38335016e-02\\n3.85028005e-01 -3.62493470e-02 -1.86462611e-01 -1.50911972e-01\\n-2.36064956e-01 -3.10038149e-01 4.92999479e-02 -4.00034413e-02\\n1.33595288e-01 -3.83559704e-01 -8.59049633e-02 -1.85931802e-01\\n-9.34243575e-02 -4.32149053e-01 -1.32399768e-01 1.03199765e-01]]',\n", + " 'For our client, an international pharmaceutical company, we are in search for a Programmer (Data Science Support). What the company offers you: You will support scientists by building and deploying modeling and simulation user-friendly applications through digital tools An international environment Large and diverse infrastructure Competitive salary Contract till 31.07.2020 with a possibility of extension Your responsibilities: Using programming expertise to develop tailor-made software solutions based on various programming languages (e.g. JavaScript, C#, php, python etc.) Supporting and being responsible for defined system administration activities on an allocated/defined system or environment Supporting operational requirements of defined areas of the business e.g. troubleshooting and migration to new versions Writing all required documentation (e.g. user guides, etc.) Tracking, troubleshooting and resolving systems related issues Applying and writing appropriate testing procedures and scripts Your profile: Being proficient in one or more programming language / environment, including HTML, CSS, JavaScript, .NET (C#), SQL, Python, vba macros (MS Office) Being familiar with Frameworks/applications: Svelte, React, Git (gitbucket), VS code Strong interpersonal communication skills and ability to manage in a dynamic, ever-changing working environment Fluent English (oral and written) Welcome to nemensis! We look forward to getting to know you!',\n", + " '[\"Writing\", \"Infrastructure\", \"Friendliness\", \"Interpersonal Communications\", \"Management\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"Tooling\", \"KM Programming Language\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Integrated Language Environments\", \"Activism\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Tracking (Commercial Airline Flight)\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Web Application Frameworks\", \"React.js\", \"Data Science\", \"Project-Based Solutions\", \"C# (Programming Language)\", \"Digitization\", \"JavaScript (Programming Language)\", \"User Guide\", \"Simulations\", \"Pharmaceuticals\", \"Macros\", \"Svelte (Software)\", \"System Administration\", \"Scripting\", \"Git Flow\", \"SQL (Programming Language)\", \"E-Business\"]',\n", + " \"['English', 'Kikuyu', 'Esperanto']\"],\n", + " ['84',\n", + " 'data management software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.70292574e-01 2.81326264e-01 5.57755888e-01 -1.05053246e-01\\n4.39890504e-01 -1.87018290e-01 -2.12570298e-02 1.82688296e-01\\n-1.11956023e-01 -2.71211058e-01 -6.09315820e-02 -2.72902936e-01\\n-1.56906664e-01 4.73471079e-03 2.16479912e-01 5.41969240e-01\\n2.12923542e-01 6.95028827e-02 -2.96415985e-01 3.37609589e-01\\n1.24483429e-01 -7.90992752e-02 1.05031012e-02 6.93491995e-01\\n4.42851573e-01 -5.01158126e-02 -9.53608975e-02 -1.98568478e-02\\n-3.66580039e-01 -2.78387070e-01 4.37171996e-01 3.30377854e-02\\n-1.42621577e-01 -2.60440350e-01 9.61181894e-02 3.09303794e-02\\n-1.77142277e-01 -7.05773458e-02 3.99670117e-02 1.64713264e-01\\n-4.21976060e-01 -2.00841635e-01 2.26881467e-02 1.26410648e-02\\n-2.82974273e-01 -3.59689742e-01 -1.15469299e-01 -8.91362950e-02\\n6.67788535e-02 2.01953575e-02 -5.58817029e-01 3.60430270e-01\\n-3.72531027e-01 -1.85242146e-01 2.52384126e-01 6.05830491e-01\\n1.29636098e-02 -6.29486024e-01 -3.52056503e-01 -3.48986030e-01\\n1.94348097e-01 -8.57317746e-02 8.79204571e-02 -1.42898038e-01\\n2.42052555e-01 -1.96762569e-02 -1.12512000e-01 4.62455034e-01\\n-6.77478790e-01 -1.31137282e-01 -3.03896457e-01 -6.70878962e-02\\n-3.09089601e-01 -2.54116338e-02 -3.41115236e-01 -1.22281708e-01\\n-5.40802144e-02 3.67330432e-01 -2.92156301e-02 3.64422947e-02\\n-2.29004785e-01 2.49715611e-01 -9.91315767e-02 2.21881762e-01\\n3.64463598e-01 2.08059222e-01 2.77260840e-01 3.92164767e-01\\n-4.87864077e-01 4.72324520e-01 2.13847727e-01 -3.54043365e-01\\n1.34183824e-01 7.21081644e-02 4.96910572e-01 8.91512260e-02\\n9.26143825e-02 1.79028794e-01 -1.45859241e-01 1.57059535e-01\\n1.81636333e-01 -1.94797412e-01 1.30155325e-01 -7.77149945e-02\\n-1.86036229e-01 4.71877679e-02 3.42899784e-02 3.48258257e-01\\n-3.20100695e-01 3.96905094e-01 2.39035696e-01 -2.42097124e-01\\n-1.92998186e-01 -6.07923746e-01 -1.09215779e-02 1.82565432e-02\\n-2.09005061e-03 1.85316220e-01 3.74360442e-01 1.81953639e-01\\n2.54145712e-01 -5.00331372e-02 2.00790659e-01 9.04943824e-01\\n-2.77125631e-02 1.07413061e-01 -2.84514189e-01 3.34158540e-01\\n1.71823993e-01 -2.13762343e-01 1.53681695e-01 1.70487955e-01\\n8.37758034e-02 -1.15845136e-01 -2.90561527e-01 3.85896802e-01\\n-1.11527853e-01 -1.87116593e-01 -2.71454513e-01 1.97439548e-02\\n-2.87898451e-01 -5.90330362e-01 4.77310836e-01 -4.73777251e-03\\n1.56665415e-01 -1.22813262e-01 -3.91339064e-02 -5.63950948e-02\\n-4.56838403e-03 3.78255308e-01 8.70847702e-02 2.02759475e-01\\n-2.72098005e-01 -2.29454458e-01 -1.78882852e-01 3.27739954e-01\\n-1.37157530e-01 1.19671993e-01 -1.00329980e-01 -9.53236371e-02\\n3.19252610e-01 9.84994546e-02 -3.59065086e-01 2.83695042e-01\\n5.73738068e-02 -3.08815897e-01 -1.60348162e-01 3.06522310e-01\\n-2.10577190e-01 8.03513601e-02 5.16003370e-03 -2.77335912e-01\\n5.18592536e-01 1.87782079e-01 2.35965654e-01 -9.35928449e-02\\n3.86316955e-01 -1.64961159e-01 1.99199781e-01 1.17016427e-01\\n-6.19549692e-01 3.62743914e-01 -6.67514279e-02 -7.54005611e-02\\n9.21741053e-02 4.40084934e-02 3.15578282e-01 -3.77536505e-01\\n2.42003631e-02 -2.31159329e-01 -3.30907375e-01 -4.51200426e-01\\n-2.06652418e-01 -7.83104673e-02 4.27163392e-01 -2.79257685e-01\\n-1.30804226e-01 1.64026409e-01 -5.22862673e-01 -1.02706864e-01\\n2.06718788e-01 1.43548399e-01 5.07345721e-02 1.59358099e-01\\n-1.05502360e-01 -5.88102758e-01 1.81058478e-02 -4.62521762e-01\\n-5.43015659e-01 6.73736483e-02 -1.87761709e-01 2.51580387e-01\\n-2.42819600e-02 1.15281111e-02 -3.59412581e-02 1.60218030e-01\\n-3.32984984e-01 2.88123991e-02 1.02974594e-01 1.59279764e-01\\n2.96763361e-01 3.37335025e-03 -4.23487902e-01 5.41962743e-01\\n-2.03524396e-01 4.75730568e-01 2.76837468e-01 -8.91944706e-01\\n5.73816657e-01 7.40262344e-02 1.16694637e-01 -2.73546785e-01\\n4.94151890e-01 -4.60089207e-01 6.47174418e-02 1.25293434e-01\\n-2.92972922e-01 -1.75939918e-01 3.54199469e-01 -1.55538231e-01\\n-2.82111496e-01 5.29784918e-01 1.48372889e-01 9.01989117e-02\\n2.60414332e-01 -2.48044044e-01 -1.16512619e-01 -1.12489082e-01\\n-1.47846088e-01 -1.71143055e-01 -5.03914177e-01 1.90883383e-01\\n-2.01894250e-02 -6.14933193e-01 -1.32633418e-01 -3.82474273e-01\\n-2.55724788e-01 -3.84858936e-01 -3.01838994e-01 3.79406512e-01\\n1.65603846e-01 1.53353035e-01 2.73791291e-02 -8.97240117e-02\\n-6.87647015e-02 -5.23659050e-01 -1.94121301e-01 1.55255124e-01\\n4.59062368e-01 2.55280107e-01 -3.19904573e-02 3.28240991e-02\\n-2.24086903e-02 5.77081084e-01 -2.34184951e-01 -2.75515348e-01\\n1.40691236e-01 1.93803683e-01 6.49124235e-02 -9.24895704e-02\\n-2.26984005e-02 2.92352289e-01 -1.50341153e-01 6.86011789e-03\\n2.15091519e-02 3.35001424e-02 4.28775847e-01 5.76944239e-02\\n-2.32026607e-01 -1.24385804e-01 -4.50810418e-02 2.08737463e-01\\n-5.76928675e-01 -1.02075458e-01 5.81767261e-01 2.52229422e-01\\n2.31030211e-01 2.75238395e-01 3.69861007e-01 -1.35389850e-01\\n-3.37142378e-01 -2.18381867e-01 2.22820759e-01 9.40597281e-02\\n-1.87114943e-02 -2.91629620e-02 -9.81784016e-02 -4.15278941e-01\\n-3.00679040e+00 -2.07076758e-01 1.15285367e-01 -2.99824595e-01\\n1.48332626e-01 -1.03474289e-01 1.14717528e-01 2.93125375e-03\\n-2.80232728e-01 1.20290816e-01 -1.42425358e-01 -1.76887959e-01\\n9.58830714e-02 2.48012990e-01 1.76215678e-01 2.07192257e-01\\n2.01685518e-01 -1.89298734e-01 -1.22108571e-01 3.14803928e-01\\n-1.03367224e-01 -7.32086241e-01 1.65693462e-01 3.47145125e-02\\n1.05822742e-01 1.40546009e-01 -4.46331114e-01 -3.10765654e-02\\n-2.59204894e-01 -2.86579221e-01 1.17987216e-01 -2.73724735e-01\\n-1.63907662e-01 3.13615710e-01 2.01817781e-01 -1.24358267e-01\\n-1.47416983e-02 -3.46294999e-01 -5.73649257e-02 -4.48227704e-01\\n1.98319897e-01 -6.59012496e-01 8.91178250e-02 -1.87152013e-01\\n7.03532875e-01 -3.47390503e-01 1.87748343e-01 6.23209253e-02\\n2.49624908e-01 9.81964692e-02 1.07042091e-02 -3.45543213e-02\\n-2.52645999e-01 -2.96896249e-01 5.34235127e-02 -1.72995597e-01\\n5.04732311e-01 4.68306452e-01 -1.59807354e-01 2.06755344e-02\\n8.07546452e-02 -3.30439270e-01 -3.49689603e-01 -4.10873562e-01\\n-3.56101424e-01 -1.28247663e-01 -6.70646608e-01 -4.28215504e-01\\n-2.02621609e-01 -1.00035951e-01 -2.30059400e-01 6.27511978e-01\\n-2.99580932e-01 -3.80923718e-01 -6.68587983e-02 -5.19155800e-01\\n1.37443885e-01 -3.18979830e-01 1.17669880e-01 -2.66918182e-01\\n-3.09857309e-01 -5.24894655e-01 2.72378743e-01 -5.20828553e-02\\n-1.53475314e-01 -9.37151462e-02 3.41364220e-02 -1.87963292e-01\\n-2.71902859e-01 -4.07887161e-01 3.88528556e-01 1.73449725e-01\\n3.27306330e-01 1.72445208e-01 2.44999319e-01 1.59487233e-01\\n3.04804295e-01 -1.96822405e-01 8.81054848e-02 -3.02988976e-01\\n8.72355998e-02 1.63066313e-02 6.49742842e-01 -2.31694177e-01\\n6.54784217e-02 1.09045744e-01 -2.95519173e-01 -1.53040722e-01\\n4.74532008e-01 -4.01679501e-02 8.97865966e-02 -1.29278377e-01\\n4.44742352e-01 -5.84247112e-01 -2.31928140e-01 2.15962768e-01\\n4.72479388e-02 7.54454494e-01 -2.22351756e-02 -4.53572065e-01\\n-2.21685186e-01 3.64661485e-01 -9.69577208e-02 -6.86363801e-02\\n-2.96663076e-01 2.06189945e-01 -1.84080362e-01 3.02615166e-01\\n-8.52538049e-02 -1.69328988e-01 -3.80246013e-01 -1.44977987e-01\\n9.33646038e-03 2.62198716e-01 2.67987370e-01 -2.94822957e-02\\n5.72012328e-02 -1.87239453e-01 -1.67305976e-01 1.33853540e-01\\n3.37203562e-01 3.49137187e-01 1.26482770e-01 -2.23075747e-01\\n-1.53270841e-03 2.42047787e-01 -2.37563223e-01 2.50603706e-01\\n-1.32816464e-01 1.01964533e-01 -4.71296638e-01 -1.73137769e-01\\n-6.59048185e-02 -2.97777414e-01 2.53320262e-02 3.33302289e-01\\n6.81554750e-02 -8.43670070e-02 2.38669030e-02 -3.86873871e-01\\n4.91279662e-01 8.13033506e-02 1.86996669e-01 1.60336748e-01\\n4.30921093e-02 6.54275477e-01 -1.48466870e-01 -4.73781377e-02\\n-1.27377436e-01 -1.08686931e-01 -2.88999617e-01 -2.63836294e-01\\n6.02700077e-02 -2.77791530e-01 -1.37849435e-01 5.01835763e-01\\n1.70436367e-01 -3.05157840e-01 -7.96188489e-02 3.77350539e-01\\n5.27075529e-02 -2.26139188e-01 -2.36791521e-01 9.98539105e-02\\n1.83768496e-01 1.21347830e-01 2.91761756e-01 -4.26280946e-01\\n-2.16883004e-01 -5.52592287e-03 -5.87790981e-02 4.77342457e-01\\n1.57390147e-01 1.47559300e-01 -1.11198455e-01 -2.81600296e-01\\n4.59962130e-01 -1.58780724e-01 -1.95896387e-01 -2.36885492e-02\\n1.21590197e-01 -1.67239055e-01 -4.55151469e-01 -4.86931466e-02\\n-3.10168415e-02 -2.76671410e-01 1.76637247e-01 6.63259774e-02\\n1.41483098e-01 -7.68534048e-03 -5.55119097e-01 -2.89687932e-01\\n-3.08328003e-01 -1.08148687e-01 9.75039527e-02 -4.95561033e-01\\n-3.02156024e-02 -1.63144797e-01 -5.70814013e-01 2.62267262e-01\\n-1.81233481e-01 -1.80588569e-02 4.04895619e-02 1.15486853e-01\\n-3.24928880e-01 -1.18755840e-01 1.59849897e-01 1.54983521e-01\\n-3.35972905e-01 -2.10335389e-01 4.39419337e-02 -1.00806582e+00\\n1.46304116e-01 8.93483162e-02 -9.11566913e-02 -1.26727605e-02\\n-4.18219492e-02 -6.87542140e-01 1.64052874e-01 -3.21139902e-01\\n-4.36208509e-02 8.07907656e-02 -1.56738356e-01 -4.22464937e-01\\n2.01131716e-01 -5.22537678e-02 -1.70517638e-01 3.43359143e-01\\n-4.12267536e-01 2.88634032e-01 -4.41590175e-02 7.48884827e-02\\n1.91136915e-02 -2.66092837e-01 2.29615673e-01 -3.31646442e-01\\n-4.57971305e-01 -1.70771345e-01 -3.84818524e-01 -2.51089782e-01\\n4.70236130e-02 -2.39243701e-01 -2.88949192e-01 5.99629618e-02\\n3.59639168e-01 2.12070614e-01 -9.13261324e-02 -1.78368151e-01\\n2.90506762e-02 -4.23835605e-01 1.65251732e-01 -2.57589102e-01\\n2.90219374e-02 -1.77508801e-01 1.23099715e-01 6.03318401e-03\\n1.14358952e-02 -3.67693424e-01 4.79975015e-01 -2.89860487e-01\\n-3.88507903e-01 -1.10971637e-01 1.10011347e-01 1.28919601e-01\\n4.30074155e-01 -4.65584785e-01 4.06313352e-02 1.86186627e-01\\n6.44897670e-02 1.13622993e-01 2.89205283e-01 -9.09078121e-02\\n-1.15943819e-01 2.48185009e-01 -5.52143097e-01 1.54513299e-01\\n7.42216945e-01 2.41519630e-01 1.06562331e-01 2.26688534e-01\\n1.81796223e-01 2.80676425e-01 4.62622344e-01 -8.11659023e-02\\n-1.05545014e-01 2.29320228e-01 3.03105870e-03 -5.76003909e-01\\n-1.47117838e-01 -1.16706878e-01 -1.48186386e-01 -4.03552085e-01\\n6.30353689e-01 4.08468068e-01 -3.39721590e-01 -2.49167949e-01\\n-6.02707677e-02 -7.74010792e-02 2.55341142e-01 -8.73840451e-02\\n-8.87019485e-02 1.40945734e-02 5.84042370e-01 6.99315453e-03\\n3.58958006e-01 5.73696673e-01 -2.29277924e-01 -3.53772759e-01\\n-1.37871191e-01 2.69755989e-01 1.64598286e-01 4.00257021e-01\\n-1.21634804e-01 1.76562279e-01 -5.00363531e-03 1.77722111e-01\\n-1.97251588e-02 -2.22994108e-02 5.18739559e-02 1.81624666e-02\\n1.80039600e-01 9.53746960e-02 2.00973466e-01 4.70073670e-01\\n1.91159248e-01 4.61270034e-01 3.41069877e-01 -9.96945798e-03\\n3.95830721e-01 7.13277698e-01 4.15081263e-01 2.70778000e-01\\n5.71153089e-02 -5.62140197e-02 -1.34937810e-02 5.41997962e-02\\n3.18848073e-01 3.68342817e-01 6.68679457e-03 8.79053056e-01\\n3.00608993e-01 2.40280002e-01 6.98952317e-01 -5.70342124e-01\\n-4.63592976e-01 2.31184065e-02 5.35128355e-01 -3.18313986e-01\\n-2.67374199e-02 1.23612225e-01 -2.59276241e-01 2.43955836e-01\\n-4.71544921e-01 -1.30222812e-01 2.94075324e-03 -1.48924962e-01\\n7.84014612e-02 -6.24120906e-02 -1.38550386e-01 5.65694533e-02\\n-2.61736125e-01 -2.33677804e-01 -2.68874079e-01 -1.40818998e-01\\n-3.11408550e-01 -2.48596855e-02 -4.12263013e-02 -2.86668353e-02\\n-1.24997780e-01 -3.90314430e-01 -1.28355220e-01 8.91917050e-02\\n3.54920864e-01 -1.15812808e-01 -8.14978108e-02 -1.19258992e-01\\n5.21535501e-02 1.85887218e-01 5.59405029e-01 -5.08556701e-02\\n1.00841500e-01 -1.55992880e-01 -2.96297252e-01 3.92407738e-02\\n1.36431202e-01 1.18467294e-01 1.36087731e-01 3.88555765e-01\\n-3.84214669e-01 -7.68129155e-02 1.30664051e-01 3.44611168e-01\\n-4.00536478e-01 7.53649771e-02 -1.97978318e-01 1.73257187e-01\\n1.35396674e-01 1.91371560e-01 -3.35557103e-01 6.25645071e-02\\n-2.43111238e-01 -5.32230616e-01 3.71022195e-01 -2.59317577e-01\\n-1.60639033e-01 1.07533835e-01 2.50894994e-01 2.07663432e-01\\n-3.09702396e-01 1.78403351e-02 -1.00629181e-01 2.89874583e-01\\n1.82960480e-02 2.94732779e-01 -2.06338093e-01 -5.99913038e-02\\n-2.99882829e-01 2.96326041e-01 -7.54930452e-02 1.93120614e-01\\n-7.43991062e-02 2.91364491e-01 9.63511318e-02 6.72644516e-03\\n2.48291060e-01 5.44800274e-02 -2.52132535e-01 -2.85151273e-01\\n-2.09588379e-01 -2.83753872e-01 1.99802279e-01 -1.10176422e-01\\n2.01264024e-01 -3.85354459e-01 -1.32988065e-01 -1.93733394e-01\\n-2.31567115e-01 -3.74207228e-01 -1.57430694e-01 1.84634961e-02]]',\n", + " 'Über unseren Kunden Our client is a world wide leading insurance company Ihr Aufgabenbereich Developing and supporting Data Management Framework application(s) ranging from small integration tools to full-blown applications, over time building up an integrated solution suite enabling Data Management to support the enterprise in becoming even more data driven Contributing to overall data management capability development, spanning various topics like data modeling, metadata management, data standardization and master & reference data management Being part of the development team supporting the Risk Modelling Platform generic components underpinning a range of business critical capital modelling applications Supporting incident resolution; working with the BUs to mitigate associated impacts Ihr Profil University level education, e.g. Computer Science, Computer Engineering, or Engineering Discipline 10+ years of experience in enterprise-grade software development 10+ years of experience with C# .NET framework development High degree of customer focus & end-to-end solution delivery attitude Proficiency in C# and object-oriented programming concepts, enjoys writing clear, maintainable code, tests and documentation Familiarity with enterprise application architecture patterns (concurrency models, unit-of-work etc.), transactional processing, domain driven design, REST APIs and service oriented architecture including solid skills in managing complexity with decoupling and dependency injection Knows how to approach a problem statement, steer the requirements engineering and drive the technical solution design Experience in the data management domain (metadata, master & reference, data quality, etc.) are a plus Has excellent communication skills, both written and oral, able to interact with different management levels Fluent in written & spoken English, German is a plus Ihre Chance Did you get your attention and you are looking for a new challenge? Then send your complete application documents to jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C .NET Entwicklung Sprachen: Deutsch Englisch Job ID: 7357',\n", + " '[\"Writing\", \"Management\", \"Integration\"]',\n", + " '[\"Code Testing\", \"Reference Data\", \"Mitigation\", \"Tooling\", \"Capitalization\", \"Interactivity\", \"Computer Science\", \"Metadata\", \"Data Management\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Build Time\", \"World Wide Web\", \".NET Framework\", \"Service Level Management\", \"E (Programming Language)\", \"Levelling\", \"Applications Architecture\", \"Concurrency Pattern\", \"Programming Concepts\", \"C (Programming Language)\", \"Domain Driven Design\", \"Application Portfolio Management\", \"C# (Programming Language)\", \"Dependency Injection\", \"Solution Delivery\", \"Requirements Engineering\", \"Clinical Data Management\", \"Capability Development\", \"Computer Engineering\", \"Technical Solution Design\", \"Transaction Processing (Business)\", \"Software Development\", \"Solution Design\", \"Metadata Modeling\", \"Maintaining Code\", \"RESTful API\"]',\n", + " \"['English', 'Mongolian', 'Armenian', 'South Ndebele', 'Maltes']\"],\n", + " ['117',\n", + " 'data scientist',\n", + " 'Lausanne',\n", + " '',\n", + " '',\n", + " '[[-1.98490053e-01 1.68447852e-01 5.34035742e-01 1.06047787e-01\\n5.86748719e-01 -1.64473459e-01 -1.20681524e-02 3.75144809e-01\\n3.11087854e-02 -4.82621431e-01 1.08029217e-01 -2.64965594e-01\\n-4.24936302e-02 1.79403901e-01 4.39701453e-02 4.36141640e-01\\n1.80472717e-01 8.43676999e-02 -1.63410068e-01 3.29295218e-01\\n1.13052651e-01 -1.84331536e-01 1.54782996e-01 8.92038584e-01\\n4.35893834e-01 2.22152937e-02 -1.08888783e-01 -5.51389158e-03\\n-1.97020054e-01 -1.57019198e-01 5.22132397e-01 2.31429040e-02\\n-2.02051908e-01 -4.68408644e-01 1.68216944e-01 1.09614417e-01\\n-2.70741880e-01 -9.14032832e-02 -5.62994629e-02 2.48039246e-01\\n-6.21851087e-01 -1.67824715e-01 -4.63125668e-02 5.22936247e-02\\n-3.25999469e-01 -3.72982562e-01 -1.35743007e-01 -6.46300837e-02\\n1.58920780e-01 1.82162970e-02 -4.20258880e-01 2.32335225e-01\\n-2.93916643e-01 -3.86448324e-01 2.66541123e-01 7.05900788e-01\\n-5.26017696e-02 -3.64010692e-01 -5.49109697e-01 -3.05890381e-01\\n8.15853179e-02 -1.81274474e-01 7.18047097e-02 -4.93999779e-01\\n1.36774898e-01 3.02586965e-02 6.14990145e-02 3.75392914e-01\\n-8.38087678e-01 -4.62461896e-02 -2.13762134e-01 -1.04728319e-01\\n-3.03522468e-01 -4.99219745e-02 -4.08171833e-01 -5.91531098e-02\\n-3.01084161e-01 4.70264167e-01 5.98923452e-02 -1.35122277e-02\\n-2.37765253e-01 2.84317821e-01 -2.13795438e-01 4.82043564e-01\\n1.57344908e-01 3.31291556e-01 2.78843254e-01 4.06588346e-01\\n-3.29693198e-01 6.00341678e-01 7.40409344e-02 -3.79007518e-01\\n2.68371969e-01 1.87614530e-01 4.32731837e-01 -4.40297574e-02\\n1.86995834e-01 6.54741526e-02 -3.53593290e-01 4.73700464e-01\\n2.86135823e-01 -4.65687990e-01 1.92917854e-01 -1.91417694e-01\\n1.39314681e-01 1.57137141e-02 9.35017243e-02 1.52080506e-01\\n-3.23441148e-01 2.82992095e-01 1.50865227e-01 -2.09911555e-01\\n-2.89470315e-01 -3.91164958e-01 1.15666874e-02 4.93022762e-02\\n1.30984157e-01 1.29873797e-01 1.53342888e-01 1.41196167e-02\\n2.75103807e-01 -2.21970007e-02 8.42160806e-02 7.94201910e-01\\n-8.52690637e-02 3.10839601e-02 -2.84211278e-01 2.55872875e-01\\n2.07810014e-01 -3.15589964e-01 2.48669237e-01 1.86385036e-01\\n-9.52237844e-02 -3.03176194e-01 -2.18086660e-01 4.76966023e-01\\n-7.79461265e-02 -2.07063124e-01 -2.67586976e-01 2.19157845e-01\\n1.32983014e-01 -4.11680341e-01 7.84787714e-01 9.47176069e-02\\n2.39536852e-01 -2.36116424e-02 1.72144517e-01 -2.52073884e-01\\n-1.50427684e-01 1.71814546e-01 1.58970639e-01 1.49749070e-01\\n-3.29409420e-01 -2.72307247e-01 -1.29685476e-01 -4.26201522e-02\\n-6.09343171e-01 1.41062260e-01 -7.84448683e-02 -1.18277241e-02\\n5.69632985e-02 -3.99046801e-02 -2.54334301e-01 1.35922119e-01\\n-1.81844965e-01 -8.05051103e-02 1.08543545e-01 3.46745372e-01\\n-3.40663314e-01 3.27113837e-01 6.50227666e-02 -5.33827022e-02\\n7.32531905e-01 2.69181877e-01 3.42125416e-01 6.00659512e-02\\n2.86090672e-01 -8.14728439e-04 8.44561756e-02 2.68181562e-01\\n-6.65334761e-01 2.67431557e-01 -3.85735631e-02 -2.69177854e-01\\n1.51878506e-01 -6.96610659e-02 2.80838668e-01 -2.71945447e-01\\n1.09034896e-01 -2.01537520e-01 -2.67104089e-01 -2.56473482e-01\\n-2.01278329e-01 2.74221562e-02 2.96878666e-01 -5.33602834e-01\\n-1.66825712e-01 2.11294040e-01 -4.35611427e-01 -1.50216639e-01\\n5.46448827e-02 1.30145490e-01 8.36823136e-02 8.58128667e-02\\n-2.24893093e-01 -5.74182510e-01 6.90102130e-02 -3.57991695e-01\\n-3.83243233e-01 2.26196740e-02 -3.93899381e-01 1.50892377e-01\\n7.20620230e-02 3.22730541e-02 -8.89464468e-02 1.47711128e-01\\n-2.42046684e-01 -7.89298713e-02 -7.71543831e-02 4.56787944e-02\\n2.80799389e-01 7.47262165e-02 -3.62081766e-01 3.89577091e-01\\n-1.42074376e-01 6.33597255e-01 5.39880991e-02 -9.04366970e-01\\n5.91697454e-01 2.82826871e-01 -3.77332680e-02 -4.51708794e-01\\n5.62316239e-01 -2.29422852e-01 -3.87869701e-02 2.16090661e-02\\n-4.02199686e-01 -3.95050228e-01 2.63352156e-01 -2.42722213e-01\\n-2.76190221e-01 3.83899897e-01 3.83671112e-02 2.30598614e-01\\n2.29331478e-01 -3.79312515e-01 -1.15541540e-01 -2.25963816e-03\\n-1.01682216e-01 -2.60021448e-01 -6.44318581e-01 -1.28046274e-01\\n-2.20174879e-01 -4.35055792e-01 -1.72082037e-01 -3.12714815e-01\\n-1.83354825e-01 -3.97215337e-01 -2.05919594e-01 1.03983790e-01\\n4.64447081e-01 1.33211598e-01 -1.33309245e-01 -1.33447405e-02\\n3.50766294e-02 -7.19582558e-01 -1.50310546e-01 1.34287849e-01\\n5.24787664e-01 2.26768404e-01 2.04036921e-01 4.96204160e-02\\n2.40692675e-01 6.74461544e-01 -2.07198635e-01 -3.32440853e-01\\n1.58490211e-01 2.04457343e-01 3.53739783e-03 -2.03716174e-01\\n1.80965483e-01 2.89989710e-01 -3.10778916e-01 5.78088686e-02\\n-1.80166028e-03 -1.15563311e-01 4.36029315e-01 8.43280777e-02\\n-2.41839737e-01 -9.56889614e-02 -6.22347146e-02 5.50791100e-02\\n-5.89935660e-01 -1.93254620e-01 5.09841681e-01 1.66533917e-01\\n2.19324440e-01 4.34344634e-02 8.15409049e-02 -2.48789787e-02\\n-2.67628551e-01 -2.34903574e-01 3.32112432e-01 1.01189539e-01\\n7.25044459e-02 1.55793279e-01 1.51826307e-01 -6.25371635e-01\\n-3.20623994e+00 -1.49784967e-01 1.68044001e-01 -2.80160785e-01\\n1.65643036e-01 -1.01801991e-01 1.34259522e-01 2.15092525e-02\\n-3.50563824e-01 2.48651318e-02 -1.22443222e-01 -1.72080040e-01\\n4.94490005e-02 1.84719846e-01 1.95669681e-01 1.40335456e-01\\n2.42038965e-01 -2.51577318e-01 -1.79296046e-01 3.47900063e-01\\n-1.50240153e-01 -6.05059683e-01 1.86683416e-01 3.17553878e-02\\n1.80850029e-01 1.58773795e-01 -3.26912194e-01 -4.62732427e-02\\n-2.19008893e-01 -2.15007514e-01 1.22700110e-02 -2.68822640e-01\\n-2.24717632e-01 2.18789965e-01 1.58057183e-01 -7.19448552e-02\\n2.81711179e-03 -4.10910755e-01 -2.38027632e-01 -4.60491240e-01\\n9.93805677e-02 -6.00141346e-01 -8.91721174e-02 -1.95648015e-01\\n8.62054229e-01 -2.85229027e-01 1.94139540e-01 4.74047475e-02\\n1.57917485e-01 -7.77313858e-02 1.50879011e-01 5.67601062e-02\\n-2.13472083e-01 -4.05702293e-01 -1.95058677e-02 -1.53746560e-01\\n6.11362994e-01 4.19011056e-01 -1.89428449e-01 -5.66643700e-02\\n2.08604977e-01 -2.03314975e-01 -3.61062944e-01 -1.17042221e-01\\n-1.69410147e-02 -2.99540311e-01 -6.58533394e-01 -3.73089492e-01\\n-1.34791106e-01 -2.24593833e-01 -1.76497772e-01 6.09089017e-01\\n-2.97758639e-01 -3.02233458e-01 -8.96530375e-02 -4.20221031e-01\\n3.65690708e-01 -1.72455221e-01 1.61491111e-02 -3.01233411e-01\\n-2.54266441e-01 -4.54686254e-01 7.82393962e-02 -2.00521480e-03\\n-1.18253559e-01 -2.77457058e-01 6.67528361e-02 -9.85487476e-02\\n-3.17083597e-01 -6.13618672e-01 3.36089909e-01 1.37260824e-01\\n2.82092035e-01 1.04266375e-01 4.27308202e-01 -2.08502412e-01\\n2.58303106e-01 4.92885560e-02 -1.78995162e-01 -2.88959026e-01\\n9.36131328e-02 -1.89439347e-03 5.03188968e-01 -2.86683559e-01\\n-7.22547472e-02 4.08482365e-02 -2.37298369e-01 5.89789078e-03\\n3.58722210e-01 -7.53989816e-02 3.75323109e-02 6.47131205e-02\\n2.84136295e-01 -3.09225082e-01 -4.52344567e-02 7.80943856e-02\\n1.22554593e-01 6.47270083e-01 -2.36292649e-02 -3.75358284e-01\\n-5.43820262e-02 4.90269899e-01 -7.02736378e-02 1.71730682e-01\\n-2.13375509e-01 1.28487516e-02 -1.26006141e-01 4.08423603e-01\\n5.60422204e-02 -3.27795237e-01 -2.40091056e-01 -2.17458859e-01\\n-1.27567679e-01 3.45424205e-01 2.41528869e-01 8.66085291e-02\\n-5.91539666e-02 -3.82090509e-01 -1.91814333e-01 3.11532617e-01\\n2.38167256e-01 6.07097685e-01 2.76135802e-01 -2.52990812e-01\\n-1.65165067e-01 3.57886434e-01 -1.73181459e-01 2.75649965e-01\\n-3.06775212e-01 2.13971138e-01 -7.21015215e-01 -1.63446605e-01\\n-2.72623777e-01 -5.55309415e-01 2.82396287e-01 4.76165920e-01\\n1.85164973e-01 -2.68256553e-02 1.26950622e-01 -5.11545658e-01\\n1.72404706e-01 2.51561522e-01 1.39455095e-01 9.32410955e-02\\n-4.36163917e-02 6.40143991e-01 -1.47140566e-02 -1.92858368e-01\\n-7.69074932e-02 -5.10496125e-02 -1.92039073e-01 -1.69946104e-01\\n1.03745170e-01 -6.42351449e-01 -1.20565593e-01 4.14614916e-01\\n1.91677496e-01 -3.02934855e-01 -2.30394423e-01 2.62013912e-01\\n-1.81987435e-02 -2.33089596e-01 -3.53265166e-01 9.29084122e-02\\n4.17391568e-01 1.69648916e-01 3.08351576e-01 -4.95054424e-01\\n-1.03488266e-01 1.95822418e-02 -1.13396540e-01 4.36611772e-01\\n5.13156876e-03 1.17455177e-01 -2.20528394e-01 -5.19436821e-02\\n5.04881144e-01 -9.73169506e-02 -1.58189476e-01 5.31852208e-02\\n9.87734422e-02 -2.07360879e-01 -3.70632887e-01 1.58462584e-01\\n1.10152006e-01 -2.72187889e-01 3.91138569e-02 3.00333917e-01\\n1.28344983e-01 1.72873646e-01 -6.10368729e-01 -2.51271278e-01\\n-2.37106159e-01 6.37514740e-02 2.44956851e-01 -5.00010371e-01\\n-2.50633229e-02 -1.08812183e-01 -6.01011992e-01 1.98806792e-01\\n-1.77623630e-01 -2.60716617e-01 2.80915648e-01 1.66567385e-01\\n-2.15954244e-01 -1.00538023e-01 -1.63552612e-02 4.31187004e-01\\n-2.57406890e-01 -3.66084754e-01 -2.97625158e-02 -1.05347943e+00\\n1.78860158e-01 1.54210538e-01 -2.16569722e-01 2.40157783e-01\\n-1.06771655e-01 -5.95843077e-01 3.03459018e-02 -4.52450454e-01\\n-1.70776471e-01 -1.47550017e-01 -2.40937576e-01 -3.20262849e-01\\n7.18483031e-02 4.63522002e-02 -3.54259253e-01 6.23313487e-01\\n-1.97199836e-01 2.66138107e-01 -1.66601285e-01 5.13235703e-02\\n6.74048364e-02 -2.28564024e-01 2.75622845e-01 -2.93762088e-01\\n-4.38206345e-01 -3.24746072e-01 -4.06680822e-01 -3.45362902e-01\\n-1.62110135e-01 -4.32901204e-01 -1.23458363e-01 1.42602041e-01\\n3.57138753e-01 1.11862049e-01 -1.00561082e-01 -4.47919190e-01\\n1.80069178e-01 -6.26722932e-01 1.00688308e-01 -7.38652050e-02\\n-1.97166830e-01 -1.08951122e-01 1.67460084e-01 8.84525180e-02\\n2.53220260e-01 -4.23621833e-01 2.16237202e-01 -4.83118892e-01\\n-3.24870735e-01 -1.73149645e-01 4.66404222e-02 2.52885744e-04\\n3.01216811e-01 -4.70385373e-01 -5.24459854e-02 3.46703112e-01\\n2.21672252e-01 3.46441455e-02 2.59166241e-01 -2.22074270e-01\\n-2.77883150e-02 3.37142140e-01 -2.97550499e-01 1.33782133e-01\\n9.80508685e-01 5.79408463e-03 1.57590389e-01 3.33879590e-01\\n1.73465908e-01 3.60501409e-01 4.97638971e-01 -3.62647735e-02\\n-1.30439132e-01 2.44274229e-01 1.09367687e-02 -4.30978417e-01\\n1.35228010e-02 -5.83141707e-02 -1.82679608e-01 -4.98491466e-01\\n6.82632089e-01 3.93440276e-01 -4.67156023e-01 -9.14927423e-02\\n-9.45386887e-02 -4.25627157e-02 1.56919152e-01 -3.31078246e-02\\n-1.62858278e-01 6.22135960e-02 4.24956024e-01 -1.13205925e-01\\n3.39500904e-01 4.99209374e-01 -2.22567901e-01 -3.02963257e-01\\n-3.59921250e-04 2.86644578e-01 -7.77633339e-02 5.80886960e-01\\n-2.50393897e-01 3.82342577e-01 -3.66649665e-02 8.49810094e-02\\n-6.23237193e-02 8.48399252e-02 2.50705659e-01 1.99864551e-01\\n1.95929199e-01 5.08617796e-02 5.55004120e-01 4.31450546e-01\\n1.89251930e-01 3.77211571e-01 3.30564678e-01 1.24150634e-01\\n4.19602394e-01 6.01479769e-01 3.68801951e-01 1.13870010e-01\\n9.81845055e-03 4.36148494e-02 2.53709644e-01 -7.97661245e-02\\n2.91473299e-01 5.21867990e-01 1.68353617e-01 8.84965003e-01\\n2.30840862e-01 3.20075691e-01 6.85470164e-01 -7.34844446e-01\\n-3.85260165e-01 1.75446086e-02 5.25078297e-01 -3.47879291e-01\\n-2.03201063e-02 1.76938742e-01 -1.84120700e-01 3.04136336e-01\\n-5.72602689e-01 -2.78642595e-01 5.69656957e-03 1.44848689e-01\\n-7.09198192e-02 -2.53389299e-01 -2.01469466e-01 2.86206871e-01\\n1.72310136e-02 -1.11196861e-01 -3.79156709e-01 -1.50908515e-01\\n-1.63486823e-01 -7.88276866e-02 -6.63947463e-02 -3.82226743e-02\\n-1.20323971e-01 -3.73594820e-01 -2.05948222e-02 1.45254387e-02\\n2.90173411e-01 -1.22973733e-01 -4.64409702e-02 -8.25230405e-02\\n2.54829764e-01 1.90161332e-01 4.92462516e-01 1.00153014e-01\\n6.48191124e-02 -3.17996979e-01 -2.72515297e-01 2.38044083e-01\\n2.39662200e-01 -5.15776686e-03 -1.20936483e-01 1.59862399e-01\\n-2.02828944e-01 -1.85424566e-01 1.19412929e-01 2.20155999e-01\\n-5.12123287e-01 5.75460568e-02 -1.90062851e-01 7.94272497e-02\\n3.39544900e-02 2.95824349e-01 -1.54211283e-01 -2.94568222e-02\\n-1.61088258e-01 -4.97217685e-01 1.97504610e-01 -1.72420919e-01\\n-2.45600611e-01 5.09801134e-02 2.04261571e-01 1.16024092e-01\\n-2.94619024e-01 8.77607614e-03 -1.22478306e-01 1.52068555e-01\\n-1.43381581e-01 2.22774521e-01 -3.56514901e-02 -2.75545478e-01\\n-2.92736769e-01 1.29977956e-01 -1.19818397e-01 2.06783414e-01\\n8.01312923e-02 3.69586587e-01 5.04262745e-02 4.83560152e-02\\n5.57063341e-01 -4.65005934e-02 -2.53236681e-01 -2.53618389e-01\\n-1.51917458e-01 -1.08010136e-01 -1.65727615e-01 -5.30804787e-03\\n2.03608751e-01 -4.56284881e-01 2.78644115e-02 -1.29650235e-01\\n-6.48330152e-02 -4.08598959e-01 2.67550573e-02 -1.88246176e-01]]',\n", + " 'Headquartered in Switzerland with additional offices in Toronto and London, SwissBorg aims to fundamentally change the way individuals manage their wealth. As a product obsessed team, we believe that advanced technology combined with an intuitive user experience will empower people to invest with more freedom, confidence, and belief. In 2018, we successfully raised funds from over 23,800 global participants who share our vision of a wealth management industry with more community-centric values. We are now working towards the next phase of disruption. In Q4 of 2019, individuals across the globe will have the opportunity to purchase digital assets such as Bitcoin at the best prices, and become members of our ecosystem to unlock first of its kind investment features. Your Mission: Data sits at the heart of what we do, and you’ll play a crucial role in helping our teams to build personalized customer experiences, track metrics, optimize processes, enhance our products, and everything in-between. As a data scientist, you will be one of the first members of our growing world-class data team with an impact across all business lines. We’ll give you the tools and autonomy to build the data structures & solutions that will fundamentally underpin all operations at SwissBorg. If you’re looking to explore uncharted territory in the digital assets space with a team that thinks long term, has an agile mindset, and wants to challenge the old-school money managers let’s chat! What You’ll Be Doing Develop statistical analysis, and models and apply them to solve real problems Build and deploy algorithms for anomaly detection, forecasting and churn prediction based on users behavior Work with our product & marketing teams to guide product & marketing decisions through data-based recommendations Define and report on metrics and KPIs Automate analysis and data pipelines while ensuring our data infrastructure is set up for scale What You Might Look Like Masters or PhD degree in math, statistics, physics, computer science, or related fields Expertise in a variety of data manipulation tools and programming languages (Python, SQL) Strong experience and theoretical knowledge in machine learning, prediction algorithms for classification and study of time series Track record in product analytics and experience to make decisions autonomously Outstanding communications and collaboration skills working cross-functionally Past experience building and working with AWS as well as building and maintaining databases Knowledge of Keras, Tensorflow library, SageMaker, and SDK a plus Benefits Being part of the lifetime opportunity to launch a product at scale Get in on the ground floor as a pioneer in the fast paced fintech/blockchain space Salary and competitive bonus based on our meritocratic system Continuous opportunities to learn, grow fast, and create alongside an experienced team of financial experts, engineers, scientists, designers, and marketing gurus Excellent benefits (health, etc…) Standard 5 weeks vacation Centrally located office in a beautiful historic building.',\n", + " '[\"Decisiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Operations\"]',\n", + " '[\"AWS SageMaker\", \"Automation\", \"Tooling\", \"Agility\", \"KM Programming Language\", \"Health Care Benefits\", \"Blockchain\", \"Computer Science\", \"Analytics\", \"Prediction\", \"Industrialization\", \"Wealth Management\", \"Scale (Map)\", \"Data Manipulation\", \"Python (Programming Language)\", \"Bitcoin\", \"Track (Rail Transport)\", \"Maintainability\", \"Data Pipeline\", \"Library\", \"Money Management\", \"Keras (Neural Network Library)\", \"Investments\", \"Process Optimization\", \"Machine Learning Methods\", \"Purchasing\", \"Physical Computing\", \"Time Series\", \"Personalization\", \"Digital Assets\", \"TensorFlow\", \"Statistical Physics\", \"Phase (Waves)\", \"Flooring\", \"Unlocker\", \"Data Infrastructure\", \"Data Structures\", \"Data Class\", \"Forecasting\", \"Algorithms\", \"Customer Experience\", \"Additives\", \"User Experience\", \"Anomaly Detection\", \"Long-Term Potentiation\", \"Advanced Imaging Technology\"]',\n", + " \"['English', 'Telugu', 'Norwegian', 'Valencian']\"],\n", + " ['74',\n", + " 'junior software engineer',\n", + " 'Münchenstein',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.magnolia-cms.com',\n", + " '[[-1.60679221e-01 3.68930846e-01 4.16745067e-01 -3.88244018e-02\\n4.15491134e-01 -3.23015302e-01 8.35841596e-02 3.70260090e-01\\n2.13421583e-02 -4.76614356e-01 -4.07999232e-02 -1.16958067e-01\\n-1.36614189e-01 8.17567408e-02 1.31035298e-01 3.82973284e-01\\n2.81916738e-01 1.52902648e-01 -1.85554162e-01 4.33594078e-01\\n5.45625538e-02 -1.63067564e-01 -7.65008703e-02 6.50917649e-01\\n5.19227684e-01 -4.31982316e-02 -1.43059507e-01 -2.60175727e-02\\n-1.92804098e-01 -2.23986909e-01 3.75782400e-01 8.06307569e-02\\n-3.15804929e-02 -4.87709284e-01 -5.27154375e-03 1.03821389e-01\\n-1.23615436e-01 1.11355975e-01 -1.60322040e-02 2.82018185e-01\\n-6.81401312e-01 -2.20705524e-01 1.26708955e-01 8.33734572e-02\\n-1.81194395e-02 -3.79842579e-01 -4.10833815e-03 -4.15885821e-02\\n1.77191108e-01 1.14431031e-01 -4.04673576e-01 2.51459092e-01\\n-4.15340185e-01 -2.73570091e-01 3.19933385e-01 5.36368787e-01\\n1.06485246e-03 -5.88501215e-01 -5.21084845e-01 -2.80204594e-01\\n7.19211996e-02 -1.48018032e-01 -1.80275030e-02 -4.19118166e-01\\n2.13626742e-01 7.21386299e-02 5.05566336e-02 4.00456756e-01\\n-8.99003267e-01 -9.91906412e-03 -1.82177424e-01 -7.17270300e-02\\n-3.07594508e-01 -1.85742870e-01 -3.26091796e-01 9.81103107e-02\\n-2.81870365e-01 3.92194271e-01 -1.09521955e-01 -5.76525219e-02\\n-2.57906467e-01 4.24762487e-01 -2.73574471e-01 4.17522401e-01\\n1.99832514e-01 1.00130633e-01 3.10718715e-01 4.09255177e-01\\n-3.63054872e-01 5.79405725e-01 1.14465259e-01 -3.31384182e-01\\n2.62970537e-01 1.15792722e-01 5.09078205e-01 2.15635728e-02\\n1.71413511e-01 2.50871718e-01 -4.13919657e-01 4.16562349e-01\\n2.93307930e-01 -2.54961610e-01 1.47210583e-02 -1.93873182e-01\\n2.21024714e-02 8.29485506e-02 9.23370272e-02 1.21053256e-01\\n-3.57360274e-01 5.24424374e-01 2.82916337e-01 -2.44688675e-01\\n-2.21764162e-01 -4.62534547e-01 -1.39986901e-02 2.10941564e-02\\n7.88916349e-02 1.01335034e-01 2.17049807e-01 9.65074822e-02\\n2.06261799e-01 -1.52150933e-02 7.46688396e-02 9.42466438e-01\\n-4.96086702e-02 1.08044751e-01 -3.83996457e-01 3.31787884e-01\\n2.20178843e-01 -3.40619057e-01 2.09017247e-01 2.46376172e-01\\n8.34461823e-02 -1.48374304e-01 -2.24086612e-01 4.65934247e-01\\n-5.17497323e-02 -2.23284766e-01 -3.72437149e-01 1.40500829e-01\\n-4.46036980e-02 -3.09851021e-01 6.49305761e-01 1.72397807e-01\\n2.97198683e-01 1.92727610e-01 8.59414861e-02 -1.01249449e-01\\n-8.68251994e-02 2.76353180e-01 9.10961851e-02 1.09205678e-01\\n-3.99161160e-01 -2.89162934e-01 -2.61726290e-01 1.43362716e-01\\n-4.10145074e-01 1.82488441e-01 -8.38645101e-02 -1.03869304e-01\\n2.88247406e-01 -2.69719888e-03 -2.38456830e-01 2.03228459e-01\\n-9.80909914e-02 1.17346622e-01 -6.47177622e-02 3.65310818e-01\\n-9.31973010e-02 2.70182878e-01 7.47014731e-02 2.37438697e-02\\n6.70466542e-01 2.84662396e-01 2.16225281e-01 -1.09380044e-01\\n2.99420565e-01 3.21493447e-02 1.01995945e-01 1.72216758e-01\\n-6.63550854e-01 2.68793553e-01 -1.24107622e-01 -9.65125784e-02\\n1.41646996e-01 -3.55946831e-02 2.35650688e-01 -3.39414924e-01\\n-9.90237445e-02 -2.72896737e-01 -3.66911680e-01 -3.19412231e-01\\n-3.74963135e-01 6.48366734e-02 5.85401177e-01 -4.09494042e-01\\n-2.10412741e-01 2.34612167e-01 -5.43981731e-01 -4.24037836e-02\\n2.99912125e-01 1.57992184e-01 9.32270065e-02 6.55519292e-02\\n-2.57914424e-01 -6.91120863e-01 8.03297535e-02 -3.21569175e-01\\n-4.47568119e-01 8.90637860e-02 -3.82488519e-01 3.33370477e-01\\n9.39517170e-02 -1.10756867e-02 -1.50849372e-01 1.99262038e-01\\n-1.59452379e-01 -1.24524482e-01 -1.69372205e-02 1.38996676e-01\\n2.46176004e-01 -6.48803711e-02 -4.18915987e-01 2.89974153e-01\\n-1.83330074e-01 6.29177928e-01 5.24248108e-02 -8.14357936e-01\\n4.91981477e-01 3.81475359e-01 -7.40497559e-02 -3.53811324e-01\\n6.05206847e-01 -1.21244252e-01 -1.29820868e-01 8.52394328e-02\\n-3.72504085e-01 -3.44074905e-01 2.74734974e-01 -1.68891117e-01\\n-2.62404680e-01 4.11027551e-01 9.83003154e-02 6.19617961e-02\\n2.05528200e-01 -2.58369565e-01 -1.37421757e-01 4.00593318e-02\\n-1.45064062e-02 -1.33568019e-01 -5.51834345e-01 -2.47071423e-02\\n-1.21721879e-01 -5.25484443e-01 -1.39386132e-01 -1.91840932e-01\\n-2.97995031e-01 -4.59047407e-01 -3.90087426e-01 1.94029227e-01\\n3.04884911e-01 2.22298592e-01 -8.73894840e-02 1.40213683e-01\\n-7.60578662e-02 -8.15819621e-01 -3.36689763e-02 2.16023117e-01\\n4.69106227e-01 2.18861714e-01 6.49913624e-02 -4.57650460e-02\\n-1.50739383e-02 6.17051363e-01 -3.34784716e-01 -1.51707709e-01\\n1.17291279e-01 7.57198781e-02 7.19992146e-02 -2.91802585e-01\\n1.13619305e-01 3.37702125e-01 -2.64799178e-01 1.03524841e-01\\n-2.62727775e-02 -1.16377361e-01 4.37785715e-01 1.35042546e-02\\n-5.13992667e-01 -1.88280523e-01 -4.73561250e-02 9.62976143e-02\\n-6.10698283e-01 -2.38466144e-01 5.03079653e-01 2.18033478e-01\\n2.83356279e-01 2.08738446e-01 2.02670589e-01 -2.00688586e-01\\n-2.13190600e-01 -3.73910457e-01 2.88109541e-01 8.88075903e-02\\n1.40337572e-01 2.50664949e-01 -1.08334616e-01 -7.32511401e-01\\n-3.24383831e+00 -2.28542209e-01 2.23770171e-01 -2.94359297e-01\\n8.90524015e-02 -1.55172318e-01 7.14404210e-02 -1.53261736e-01\\n-2.40805253e-01 -3.53666246e-02 -1.38321921e-01 -1.55370712e-01\\n1.01041980e-01 2.61033386e-01 4.83500399e-02 2.79859871e-01\\n3.30142856e-01 -2.02825457e-01 -1.92219973e-01 3.41009587e-01\\n-1.89424023e-01 -5.74225008e-01 1.74469158e-01 -4.26352695e-02\\n2.88729429e-01 2.64180005e-01 -3.55070859e-01 -6.53564706e-02\\n-1.90217435e-01 -2.13249743e-01 1.09171726e-01 -2.71372348e-01\\n-2.02008784e-01 2.92373240e-01 1.50572732e-01 -5.37993498e-02\\n7.53536597e-02 -3.77498597e-01 -1.14621438e-01 -4.52764452e-01\\n1.49746433e-01 -5.43859541e-01 -9.31551903e-02 -1.74670070e-01\\n7.41971254e-01 -3.69983166e-01 1.45954236e-01 1.73672605e-02\\n1.68864772e-01 1.10820033e-01 -2.63867844e-02 -7.57677108e-02\\n-2.00322717e-01 -2.96679288e-01 -2.44188309e-02 -6.73457384e-02\\n6.95638001e-01 4.95295912e-01 -1.93891361e-01 -1.33834809e-01\\n2.14891240e-01 -4.45628643e-01 -3.95137399e-01 -1.62700802e-01\\n-1.40484929e-01 -2.91806191e-01 -5.76192975e-01 -3.54250610e-01\\n-2.54458815e-01 -1.22581445e-01 -1.80709109e-01 7.61820972e-01\\n-3.77383053e-01 -3.83344114e-01 -1.56457368e-02 -4.80437070e-01\\n1.18101612e-01 -2.57534683e-01 -3.16900164e-02 -3.20240736e-01\\n-2.61372119e-01 -4.95116979e-01 -6.80894684e-03 2.14587599e-02\\n-2.55878121e-01 -2.24051327e-01 1.38940141e-01 -4.66228537e-02\\n-1.98074430e-01 -5.41265965e-01 4.02079910e-01 1.57926798e-01\\n1.66735187e-01 6.60963058e-02 3.39224219e-01 -5.96601143e-03\\n4.18291420e-01 -1.46251842e-01 -9.26036537e-02 -3.39963853e-01\\n1.73348188e-01 1.83527172e-02 6.19644880e-01 -2.83996969e-01\\n-8.77889246e-03 2.27092966e-01 -1.68483123e-01 -1.41409472e-01\\n4.18806285e-01 7.52485916e-02 -4.78949547e-02 -2.16686323e-01\\n3.14309984e-01 -2.71117508e-01 -2.18282655e-01 1.10133111e-01\\n1.17369547e-01 6.79565847e-01 -1.71453491e-01 -4.00075734e-01\\n-1.32896706e-01 5.28279603e-01 -1.59980863e-01 1.22722492e-01\\n-2.68697083e-01 8.06693211e-02 -1.27711728e-01 3.42424840e-01\\n3.96502726e-02 -2.22975016e-01 -2.17433363e-01 -2.49493107e-01\\n-1.04127415e-01 3.05870950e-01 2.11997077e-01 3.51466686e-02\\n-5.23720728e-03 -3.86369914e-01 -1.44641235e-01 1.16503544e-01\\n1.12701416e-01 5.21926522e-01 1.21575646e-01 -2.44482175e-01\\n-7.52010643e-02 3.78840357e-01 -2.09290594e-01 3.75989191e-02\\n-3.51746589e-01 3.24962027e-02 -5.46160400e-01 -8.50946084e-02\\n-2.43070424e-01 -5.31324446e-01 8.94428939e-02 2.59590954e-01\\n-2.67958418e-02 3.51595096e-02 2.13583745e-02 -4.67157960e-01\\n1.59165576e-01 2.56269366e-01 2.34677374e-01 1.60873234e-01\\n1.01220366e-02 4.16673124e-01 -1.90674514e-02 -1.87440991e-01\\n-2.20092490e-01 -1.16490684e-02 -1.10280737e-01 -1.42113462e-01\\n1.47661194e-01 -5.97217739e-01 7.23096728e-03 4.46493715e-01\\n1.76123559e-01 -1.96802989e-01 -1.92387149e-01 3.06057185e-01\\n7.50177056e-02 -3.29547346e-01 -2.99040049e-01 6.67238459e-02\\n2.17907339e-01 4.69029881e-02 2.94471085e-01 -3.82901132e-01\\n1.12494687e-02 -2.24147923e-02 -3.00224692e-01 3.58758956e-01\\n-5.36938421e-02 1.08673014e-01 -3.84921312e-01 -1.40831009e-01\\n4.04445916e-01 -1.38136208e-01 -3.16662772e-04 -8.97609740e-02\\n1.66405112e-01 -1.55574694e-01 -5.30687511e-01 9.50787365e-02\\n-2.29802355e-02 -1.70632586e-01 1.46642044e-01 3.34951729e-02\\n1.17556669e-01 1.82509691e-01 -4.12328303e-01 -3.36382896e-01\\n-2.35060990e-01 -1.78666323e-01 3.09892178e-01 -5.21881342e-01\\n-8.02810341e-02 -1.81842614e-02 -4.67334777e-01 1.66039228e-01\\n-2.91058153e-01 -1.86443135e-01 2.87617832e-01 1.87035814e-01\\n-3.86211872e-01 -1.27086177e-01 -4.60394584e-02 3.77195835e-01\\n-3.23979586e-01 -3.05757225e-01 4.25617658e-02 -8.61832500e-01\\n1.74911842e-01 4.60610949e-02 -2.82493472e-01 7.16117444e-03\\n-1.74401805e-01 -5.84051371e-01 1.47693276e-01 -4.95612442e-01\\n-2.30572343e-01 -3.82944755e-03 -1.37175307e-01 -3.54228288e-01\\n-7.80891953e-03 -2.21554101e-01 -4.41220224e-01 5.05550683e-01\\n-3.87380719e-01 4.01441514e-01 -2.84970887e-02 4.03218940e-02\\n-5.08988462e-02 -3.25799316e-01 1.15362830e-01 -4.35758710e-01\\n-4.68291551e-01 -2.67978549e-01 -4.52333063e-01 -2.42031395e-01\\n5.81075624e-02 -2.38921940e-01 -1.78990975e-01 2.73289502e-01\\n2.19766602e-01 9.70192552e-02 -2.54947832e-03 -4.00723189e-01\\n1.40419381e-03 -6.95461810e-01 7.27773272e-03 -6.30403459e-02\\n-9.75846797e-02 -1.30009614e-02 2.55679697e-01 1.05021872e-01\\n1.88570023e-01 -3.93009275e-01 4.20319647e-01 -3.64130944e-01\\n-2.28437722e-01 -6.38152435e-02 5.22683598e-02 1.37117624e-01\\n3.32883984e-01 -5.18797636e-01 -1.16139716e-02 3.04095656e-01\\n1.42127872e-01 4.87091988e-02 8.88541415e-02 2.86883023e-02\\n5.01168966e-02 2.42572039e-01 -2.43594080e-01 1.74103647e-01\\n9.14198637e-01 2.67782509e-02 7.01377615e-02 1.80324376e-01\\n1.55434236e-01 5.20884037e-01 5.67652225e-01 -5.68896048e-02\\n-1.11704886e-01 2.54307002e-01 -5.60473353e-02 -4.81336653e-01\\n2.60468330e-02 8.49873126e-02 -1.49703011e-01 -3.17059457e-01\\n7.63967931e-01 4.86272901e-01 -5.67126870e-01 -1.67997658e-01\\n-1.06884666e-01 -1.46637812e-01 9.53586251e-02 -6.55129254e-02\\n-7.24421442e-02 -1.51824087e-01 5.63527644e-01 2.00193729e-02\\n1.86234683e-01 4.52720821e-01 -3.41604620e-01 -4.33222681e-01\\n1.53244808e-02 3.18384022e-01 -1.17349112e-03 3.67279857e-01\\n-2.39703834e-01 1.33328006e-01 -7.12617189e-02 2.96351817e-02\\n1.97014883e-02 3.06935042e-01 1.01497635e-01 2.00858712e-01\\n1.75542310e-01 2.96578687e-02 6.23490751e-01 4.64773685e-01\\n2.38921270e-01 4.04996336e-01 3.68146062e-01 5.77279255e-02\\n4.63373631e-01 5.77111781e-01 5.12369096e-01 1.68802246e-01\\n-4.63637821e-02 2.00610280e-01 2.09636763e-01 6.95872828e-02\\n4.12154913e-01 4.47543651e-01 1.45510286e-01 8.22054863e-01\\n2.46541217e-01 2.69642949e-01 7.22844839e-01 -7.52548397e-01\\n-3.29300880e-01 5.83879538e-02 4.52963740e-01 -1.56045854e-01\\n-8.31726491e-02 2.02261358e-01 -2.77144074e-01 2.64976829e-01\\n-5.37766993e-01 -3.12358230e-01 -3.48965377e-02 2.36524567e-01\\n2.29706476e-03 -1.73857078e-01 -2.74012089e-01 6.44763112e-02\\n-8.65766555e-02 -1.25181869e-01 -4.15774435e-01 6.68083690e-03\\n-1.50970936e-01 -6.62733912e-02 -4.80771139e-02 -1.05851114e-01\\n1.03976240e-03 -5.42091370e-01 -2.07554609e-01 9.24014021e-03\\n2.62537897e-01 -1.33099571e-01 1.64427888e-02 2.90702395e-02\\n3.32931846e-01 3.04638922e-01 5.53012192e-01 3.39725353e-02\\n-5.27993552e-02 -2.56473780e-01 -2.24237755e-01 2.87707716e-01\\n1.79429978e-01 1.55407935e-01 7.99591616e-02 2.10661069e-01\\n-1.79939687e-01 -1.59373134e-01 1.08868137e-01 4.65517819e-01\\n-5.25004566e-01 -6.21148422e-02 -2.15271473e-01 2.10635498e-01\\n1.16936393e-01 3.21010113e-01 -1.24142408e-01 1.10931564e-02\\n-2.24678546e-01 -3.95728171e-01 2.62682289e-01 -5.71468100e-02\\n-1.77860767e-01 2.16301516e-01 -1.66932382e-02 2.12029725e-01\\n-2.24564254e-01 -7.50159919e-02 -1.19272154e-03 2.24027961e-01\\n2.60029472e-02 4.02184188e-01 -7.40523962e-03 -3.36262494e-01\\n-3.20258170e-01 1.63622141e-01 -1.12212420e-01 1.07477628e-01\\n-7.07450956e-02 2.83025295e-01 3.18890326e-02 6.34735227e-02\\n5.04220963e-01 4.21469361e-02 -1.32805273e-01 -1.28055140e-01\\n-2.38631800e-01 -2.62690991e-01 -4.57504652e-02 3.97312600e-04\\n1.40179321e-01 -4.40688729e-01 -6.14893213e-02 -1.00837052e-02\\n-3.48397009e-02 -3.65142763e-01 -5.27044497e-02 -1.92419350e-01]]',\n", + " \"We’re looking for a developer with a passion for solving problems within an agile team. You’ll develop on the heart of the Magnolia core in a group of awesome colleagues and help shape the future of it. Working closely together with all other developers as well as product management, user experience, and support is key. If you're ready to strive to create value in newer ways and to really think outside of the box you're the perfect match for us. Your Responsibilities Develop new features for Magnolia and assure they comply with our quality standards Maintain the core content management functionality: from the user interface to rendered content including the template system, resources, and integration with front-end technologies. Facilitate collaboration with other engineers, product owner, and designers to solve interesting and challenging problems Deal with and improve dependency management, source control, issue tracking tools, and testing frameworks we use Spread and develop YOUR ideas What you ideally offer Bachelor degree in Computer Science or equivalent Smart, knowledgeable, curious and enthusiastic Experience with newest Java technologies User interface development experience using languages such as CSS, HTML/HTML5, JavaScript or JSON Angular/React Js Excitement about working within an agile team Must be independent, responsible, self-motivated, with the ability to learn and achieve superior results Experience with Vaadin/GWT is a bonus Fluent in English Does this description sound attractive to you? Then hit the button below and apply now!\",\n", + " '[\"Collaboration\", \"Complex Problem Solving\", \"Integration\"]',\n", + " '[\"Tooling\", \"Agility\", \"Cascading Style Sheets (CSS)\", \"Product Management\", \"Rendering\", \"Computer Science\", \"Automated Testing Framework\", \"Resource Management Systems\", \"Content Management\", \"Vaadin\", \"Creating Shareholder Value\", \"Maintainability\", \"HTML5\", \"Source (Game Engine)\", \"HyperText Markup Language (HTML)\", \"Issue Tracking Systems\", \"React.js\", \"Product Engineering\", \"JavaScript (Programming Language)\", \"Web Template Systems\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"User Experience\", \"Java (Programming Language)\", \"JSON\", \"Dependency Management\", \"User Interface\"]',\n", + " \"['English', 'Bislama']\"],\n", + " ['75',\n", + " 'software engineer (data science) m/w',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.29078621e-01 2.86381602e-01 3.87263089e-01 -2.57961228e-02\\n4.08634216e-01 -2.08080828e-01 1.00172028e-01 2.67145544e-01\\n-2.80442387e-01 -3.42231154e-01 -1.61632020e-02 -1.26012817e-01\\n-3.55845504e-02 1.33705944e-01 3.06054465e-02 5.24969995e-01\\n2.52899349e-01 1.41963558e-02 -1.90385491e-01 3.31452966e-01\\n9.77868363e-02 -4.48788106e-02 -4.53196876e-02 6.13716722e-01\\n5.87531805e-01 -8.47341027e-03 -1.76560044e-01 3.20396483e-01\\n-2.04809859e-01 -1.75819874e-01 3.50302517e-01 7.41681978e-02\\n-1.86123371e-01 -2.77868688e-01 3.91494036e-02 2.30170295e-01\\n-2.17136428e-01 7.19370246e-02 -4.02505994e-02 2.99546391e-01\\n-3.06641042e-01 -2.45850369e-01 1.58566777e-02 -1.38478428e-02\\n-1.42297074e-01 -3.89905959e-01 7.48738879e-03 -3.87680195e-02\\n1.01641707e-01 -1.21569104e-01 -5.94286680e-01 4.23843920e-01\\n-2.43663222e-01 -2.32895538e-01 1.82664186e-01 5.89253008e-01\\n5.50985262e-02 -4.24010575e-01 -2.50089496e-01 -3.19432497e-01\\n-5.46539342e-03 -1.55685663e-01 2.41270158e-02 -4.74044442e-01\\n5.35589755e-01 2.45049879e-01 -1.34531662e-01 3.44403118e-01\\n-6.43273950e-01 -4.91829477e-02 -2.25844383e-01 7.92533308e-02\\n-4.70231205e-01 -3.20809782e-02 -3.88186634e-01 -1.45054772e-01\\n3.28304581e-02 3.03631157e-01 4.49132659e-02 -8.32254440e-02\\n7.92804733e-02 2.50212312e-01 -1.05572633e-01 2.42794573e-01\\n3.78268242e-01 2.91966647e-01 2.67932653e-01 3.55013609e-01\\n-4.76783514e-01 3.32046986e-01 2.22171023e-02 -2.51247376e-01\\n9.70003605e-02 2.03136653e-01 6.74170375e-01 1.90023538e-02\\n1.83895707e-01 5.94974309e-02 -3.35526198e-01 4.10990477e-01\\n2.16933042e-01 -4.54486579e-01 1.09835376e-03 -3.01458780e-02\\n1.05320387e-01 1.83744868e-03 -2.38841726e-03 1.98910534e-01\\n-3.06852728e-01 4.57929701e-01 3.91810313e-02 -2.02153921e-01\\n9.52306092e-02 -5.48041821e-01 -1.02590770e-01 2.21395031e-01\\n1.30319461e-01 2.77992874e-01 6.71021417e-02 2.58245111e-01\\n-4.06966172e-02 4.28298041e-02 1.25507861e-01 8.75843346e-01\\n-8.77591521e-02 1.40732512e-01 -2.72833202e-02 3.68196458e-01\\n2.65529871e-01 -4.15701360e-01 2.85022050e-01 2.60373414e-01\\n1.86847597e-01 -2.14056969e-01 -1.05674833e-01 1.19059920e-01\\n-9.89295691e-02 -2.39567086e-01 -4.80280906e-01 2.18911350e-01\\n-1.45716399e-01 -4.61154521e-01 7.24399865e-01 2.89834873e-03\\n2.19016552e-01 9.90792364e-03 -1.00965396e-01 3.00422888e-02\\n2.59138420e-02 2.06355974e-01 3.82413194e-02 1.10885799e-01\\n-4.40133184e-01 -1.99978307e-01 -3.33130598e-01 2.13960797e-01\\n-3.99123520e-01 1.82844684e-01 -1.67441115e-01 4.44701873e-02\\n2.02417254e-01 -1.47609919e-01 -3.51888895e-01 3.01973283e-01\\n-1.50516450e-01 -1.47682279e-01 1.36249065e-01 4.00772005e-01\\n1.00912014e-02 3.79219741e-01 -1.22343406e-01 -1.46385252e-01\\n3.76158446e-01 -2.78287008e-02 1.92462921e-01 -9.87817422e-02\\n4.72127736e-01 -6.54650703e-02 1.60669297e-01 1.56228080e-01\\n-6.23726785e-01 1.82104036e-01 -1.46698162e-01 -2.46706367e-01\\n7.17807338e-02 2.22296007e-02 3.71183872e-01 -2.62819350e-01\\n-7.48349577e-02 -5.92610128e-02 -2.76252121e-01 -3.11585665e-01\\n-3.98164183e-01 -2.75340155e-02 5.94706476e-01 -4.25908417e-01\\n-1.84320718e-01 3.25553209e-01 -5.01419425e-01 -7.97540769e-02\\n1.16553709e-01 1.22543968e-01 1.87983781e-01 2.49150276e-01\\n-2.17129782e-01 -5.11061847e-01 1.00759551e-01 -3.77158433e-01\\n-3.88784021e-01 1.90428466e-01 -3.54576409e-01 3.21806759e-01\\n5.05144661e-03 -1.19235642e-01 -4.08064649e-02 1.08567216e-01\\n-1.77845940e-01 -4.09424268e-02 1.29065484e-01 1.33713230e-01\\n4.57344890e-01 -1.08983383e-01 -4.07701463e-01 4.78532910e-01\\n9.11262110e-02 5.51762581e-01 3.12421411e-01 -7.89242148e-01\\n5.54903686e-01 1.68220401e-01 6.97345138e-02 -1.96290925e-01\\n6.93204880e-01 -3.23246181e-01 -3.51667702e-01 1.52500182e-01\\n-3.95953476e-01 -3.42924505e-01 1.06867343e-01 -2.28599012e-01\\n-3.19883853e-01 5.09674430e-01 1.10843524e-01 2.22160481e-02\\n4.70124394e-01 -3.25921506e-01 -1.92882299e-01 2.30021477e-01\\n-1.32468864e-01 -2.62313873e-01 -3.99459392e-01 -9.56754317e-04\\n-7.70924166e-02 -5.59001207e-01 -2.06356302e-01 -3.08411181e-01\\n-7.63765424e-02 -3.60274345e-01 -6.05427772e-02 4.52622026e-01\\n1.85067013e-01 2.11983025e-01 1.90124124e-01 4.05958444e-02\\n-1.88197970e-01 -6.16204381e-01 -1.15312576e-01 4.31114016e-03\\n4.08201188e-01 1.30482256e-01 3.77127528e-02 -1.39246583e-01\\n5.57749197e-02 6.24705434e-01 -1.92961454e-01 -5.16687393e-01\\n4.46148328e-02 1.86840549e-01 -1.16784461e-01 -7.61956275e-02\\n1.48436874e-01 4.65058744e-01 -2.94191182e-01 1.73424289e-01\\n-2.07185879e-01 1.71074852e-01 3.20369214e-01 -5.99025227e-02\\n-1.90577120e-01 -1.54587835e-01 -1.06230035e-01 1.76136628e-01\\n-6.53127253e-01 -4.59328443e-01 6.87943161e-01 8.61000493e-02\\n2.19040900e-01 3.00647207e-02 1.99056014e-01 -7.79543445e-02\\n-2.56420404e-01 -2.27676202e-02 8.13090708e-03 6.50731921e-02\\n-3.01462002e-02 1.43684402e-01 -1.88488930e-01 -4.75991040e-01\\n-3.56742835e+00 -1.22448742e-01 1.08438112e-01 -1.58683747e-01\\n9.35013890e-02 -4.11672182e-02 6.24342375e-02 -1.69939384e-01\\n-2.73458183e-01 -2.03841627e-02 -2.08430707e-01 -2.20414430e-01\\n4.50342819e-02 3.15817088e-01 8.29988420e-02 2.12723687e-01\\n3.48931670e-01 -3.13878417e-01 -6.18177615e-02 4.88582522e-01\\n1.04918309e-01 -5.40735900e-01 -3.68785709e-02 1.03268372e-02\\n3.84548396e-01 2.71973193e-01 -4.28131342e-01 6.48724213e-02\\n-2.51206338e-01 -2.79642761e-01 1.35660857e-01 -3.85443687e-01\\n-1.87379986e-01 2.06670374e-01 1.45292148e-01 -2.31674444e-02\\n-4.84330021e-03 -3.47527802e-01 -1.33838758e-01 -1.65740266e-01\\n3.19169164e-02 -4.79574591e-01 5.03211506e-02 -1.80771694e-01\\n8.33041549e-01 -3.49992901e-01 7.29165822e-02 7.87506774e-02\\n3.12485304e-02 1.85878113e-01 5.34628592e-02 -7.29639381e-02\\n-1.10068187e-01 -3.89459848e-01 -7.99712464e-02 -2.12954625e-01\\n6.18170083e-01 4.50131267e-01 -2.82101035e-01 -1.28864557e-01\\n2.34002456e-01 -2.99423426e-01 -4.11750823e-01 -3.50717604e-01\\n-3.89514029e-01 -1.58853441e-01 -6.55832529e-01 -6.79704309e-01\\n-2.63427883e-01 -2.53659964e-01 -1.73614368e-01 4.30536926e-01\\n-4.84625399e-01 -5.31789064e-01 -6.09464012e-02 -2.44700164e-01\\n1.57664135e-01 -1.70096517e-01 1.00062281e-01 -2.03284264e-01\\n-2.69760400e-01 -6.23104751e-01 -1.01352312e-01 1.30361855e-01\\n-9.01662335e-02 -8.16716179e-02 -1.79384053e-02 -2.02890500e-01\\n-5.33758461e-01 -3.63676667e-01 4.04420733e-01 -8.04705843e-02\\n2.86330193e-01 1.95288628e-01 3.15853626e-01 2.08538324e-01\\n3.30535769e-01 -1.69279743e-02 5.73479459e-02 -2.54297256e-01\\n-5.57533763e-02 6.06172159e-03 5.84588289e-01 -2.76199907e-01\\n5.00230789e-02 2.93437503e-02 -3.33406091e-01 8.67541283e-02\\n4.10657138e-01 7.28827193e-02 1.67845711e-01 -1.79375082e-01\\n2.61154234e-01 -2.07764909e-01 -9.20947716e-02 3.43214214e-01\\n8.67149234e-02 6.97462440e-01 -1.89235136e-02 -3.42706829e-01\\n-3.57642323e-01 5.02580166e-01 -9.04328376e-02 1.13529198e-01\\n-1.30390927e-01 1.58151612e-01 -1.83950558e-01 2.33466491e-01\\n-4.13589664e-02 -1.46179333e-01 -2.69825310e-01 -2.94717047e-02\\n-3.43747959e-02 3.58415157e-01 4.21577483e-01 2.32309308e-02\\n-1.36430293e-01 -4.66434866e-01 -3.21043693e-02 1.04723178e-01\\n4.66308206e-01 3.23629409e-01 -3.76321212e-03 -1.59758940e-01\\n-7.14605227e-02 3.10920924e-01 -2.26615623e-01 2.42029116e-01\\n-2.24254206e-01 2.14839295e-01 -5.27010560e-01 -2.51147777e-01\\n-1.89533651e-01 -2.71585196e-01 1.84318483e-01 2.28126511e-01\\n2.03223228e-01 -3.70794609e-02 3.30763966e-01 -4.31313396e-01\\n3.07743609e-01 2.66629159e-01 1.91426024e-01 1.08968325e-01\\n2.52702497e-02 4.07645941e-01 -5.88917434e-02 -1.57739937e-01\\n-2.15157881e-01 1.83812693e-01 -2.67424822e-01 -9.50107872e-02\\n-7.86045194e-02 -6.34321153e-01 -1.38791934e-01 1.07940413e-01\\n3.98377478e-02 -1.64353326e-01 -2.82390535e-01 2.61431545e-01\\n6.86078370e-02 -3.14356238e-01 -1.31920904e-01 1.27763152e-01\\n3.57933968e-01 1.40246421e-01 1.86674997e-01 -5.64529419e-01\\n-6.06538691e-02 -4.70073475e-03 -3.02316606e-01 4.78716642e-01\\n5.66418171e-02 4.51362394e-02 -3.04455042e-01 -1.55716985e-01\\n4.52510864e-01 -6.72244281e-02 8.06999765e-03 3.82379331e-02\\n-3.75776440e-02 -1.28938720e-01 -1.58425212e-01 4.34455462e-02\\n1.72775880e-01 -2.62276292e-01 3.20517719e-02 -3.02826501e-02\\n-9.43470672e-02 1.44023851e-01 -5.95465481e-01 -1.24057770e-01\\n-2.92981505e-01 -2.50484735e-01 1.42083345e-02 -4.08683509e-01\\n-6.95034191e-02 -8.50751102e-02 -5.44655621e-01 2.59291500e-01\\n-2.67302752e-01 -2.65083145e-02 1.99467734e-01 -4.69694138e-02\\n-3.80409628e-01 -1.69289321e-01 1.78382933e-01 2.84624666e-01\\n-4.08713907e-01 -4.49865423e-02 -2.07871810e-01 -8.89347553e-01\\n1.70488626e-01 2.23317537e-02 -1.23359174e-01 1.24611802e-01\\n-1.17886394e-01 -4.60833669e-01 9.48977545e-02 -4.16832805e-01\\n-8.71105120e-02 -1.76602796e-01 -1.90854311e-01 -3.11236143e-01\\n7.31306374e-02 -1.09397650e-01 -1.95076495e-01 4.75263625e-01\\n-3.88413489e-01 2.45238379e-01 -8.25539231e-02 1.08486965e-01\\n-1.70761451e-01 -3.70792150e-01 7.76525140e-02 -2.92954296e-01\\n-3.65170211e-01 -3.11549723e-01 -2.78835654e-01 -2.81399786e-01\\n4.37543727e-02 -3.88051093e-01 -2.66322047e-01 1.55013829e-01\\n3.20634484e-01 5.13773896e-02 -1.44097760e-01 -3.07141542e-01\\n1.74089968e-01 -4.12364960e-01 -1.67529836e-01 -8.84682387e-02\\n-7.72396103e-02 -4.10492867e-02 1.60406493e-02 1.69670451e-02\\n2.32027218e-01 -2.82843649e-01 4.81261581e-01 -3.11639458e-01\\n-3.22973192e-01 3.25628854e-02 9.38505754e-02 2.30876785e-02\\n3.96650642e-01 -4.03154761e-01 -1.66947052e-01 3.51412475e-01\\n6.35201782e-02 4.83379886e-02 2.09350526e-01 -1.49551287e-01\\n-2.59609014e-01 3.81303996e-01 -1.97331727e-01 1.73351184e-01\\n7.91055083e-01 2.85044700e-01 3.64246033e-02 1.17907047e-01\\n-1.73918661e-02 3.36787611e-01 4.06204998e-01 -6.84190392e-02\\n9.36488900e-03 3.74048173e-01 9.97290462e-02 -2.42690191e-01\\n3.68908457e-02 1.97544068e-01 -2.18458727e-01 -1.34343252e-01\\n6.07685745e-01 5.15794814e-01 -4.24180597e-01 -1.82269633e-01\\n-6.99812546e-02 -2.74394035e-01 2.26543918e-01 1.04461499e-01\\n-8.12147185e-02 -1.48707256e-01 4.94916439e-01 -1.16664872e-01\\n-1.12876385e-01 5.91809452e-01 -3.26332659e-01 -2.91918963e-01\\n3.43156569e-02 2.17134476e-01 -6.50778860e-02 5.70419610e-01\\n-2.20061973e-01 3.33715588e-01 -8.85379687e-02 4.33868030e-03\\n-2.78020874e-02 -1.86405685e-02 3.82860780e-01 1.22185014e-02\\n3.42570454e-01 2.19154626e-01 1.57592863e-01 4.56549853e-01\\n2.65996009e-01 4.20051277e-01 1.32879838e-01 6.30503297e-02\\n2.50056803e-01 4.41739410e-01 4.51863408e-01 1.59671128e-01\\n-5.36160432e-02 -1.05534658e-04 3.17312151e-01 1.36153460e-01\\n2.78396010e-01 1.51762456e-01 1.40357032e-01 9.23001826e-01\\n4.18907583e-01 2.80676246e-01 6.49222314e-01 -7.03041136e-01\\n-3.92802715e-01 2.33179063e-01 5.68709254e-01 -2.21093416e-01\\n-1.20763890e-01 2.61729565e-02 -3.35082114e-01 1.23367153e-01\\n-5.18793821e-01 -5.28750010e-02 -5.58184413e-03 4.43795770e-02\\n1.53982490e-01 -1.23515882e-01 -1.78730428e-01 -3.93660739e-02\\n-1.87264830e-02 -6.47684857e-02 -5.20371795e-01 -1.92973018e-01\\n-2.67392129e-01 -1.74119934e-01 -3.68186203e-03 -1.58199117e-01\\n-2.21839696e-02 -3.10001135e-01 -1.57793164e-01 1.12845287e-01\\n3.11703771e-01 -2.71136053e-02 6.83787614e-02 -1.44933581e-01\\n1.28837734e-01 4.22842622e-01 6.76879168e-01 4.52585369e-02\\n4.23577689e-02 -1.49941221e-01 -1.23949461e-01 1.28979340e-01\\n-5.05858734e-02 -1.43334806e-01 8.61237869e-02 3.46731186e-01\\n-4.52521324e-01 -2.25270137e-01 2.26860065e-02 4.24205571e-01\\n-5.20391166e-01 3.45945954e-02 -2.98913326e-02 1.51712239e-01\\n-6.17790557e-02 2.62394607e-01 -2.01326430e-01 -7.28729367e-03\\n-2.07396314e-01 -5.96492648e-01 3.31731707e-01 -2.37001833e-02\\n-3.11802477e-02 3.90972868e-02 1.42133221e-01 1.84165254e-01\\n-2.54970253e-01 -1.44183725e-01 -4.75915633e-02 1.68822721e-01\\n2.25609038e-02 2.00655133e-01 -2.47797698e-01 -3.26203793e-01\\n-2.13428348e-01 1.82715490e-01 -1.71977639e-01 1.77289154e-02\\n-1.90177679e-01 3.92620444e-01 1.68538243e-01 3.78477067e-01\\n2.36950532e-01 -2.72329291e-03 -2.33181879e-01 -7.83161595e-02\\n-2.58168459e-01 -2.50963330e-01 1.54999308e-02 1.60254359e-01\\n1.89160034e-01 -5.01667202e-01 -8.36799145e-02 -2.90903658e-01\\n-8.28303695e-02 -4.52830136e-01 -7.78395459e-02 -1.24705449e-01]]',\n", + " 'Job Informationen Your tasks: We currently face a couple of interesting challenges in the field of computer vision and data science. These challenges need to be thoroughly analyzed together with experts from the related field, solutions proposed and implemented. We are looking for a person, who is able to take initiative and work independently on research topics while considering and incorporating the ideas and proposals from the rest of our international team. Your profile: Strong mathematical skills (statistics, numerical analysis, optimization) Data science Good programming skills C++, Python Self-starter Analytical thinking and problem solving Computer vision & geometry processing Benötigte Skills Mathematik C++ Python Python Englisch',\n", + " '[\"Self Starter\", \"Research\", \"Problem Solving\"]',\n", + " '[\"C++ (Programming Language)\", \"Python Server Pages\", \"Data Science\", \"Numerical Analysis\", \"Programming (Music)\", \"Computer Vision\", \"Python (Programming Language)\", \"Personalization\", \"Statistics\", \"Geometry\", \"Analytical Thinking\"]',\n", + " \"['English', 'German', 'Tsonga', 'Tsonga']\"],\n", + " ['92',\n", + " 'beamline scientist',\n", + " 'Villigen',\n", + " 'Research & Development',\n", + " '',\n", + " '[[-3.45809698e-01 2.40760267e-01 3.86761814e-01 -1.41333997e-01\\n4.54120249e-01 -1.82031512e-01 -2.59941280e-01 3.03020418e-01\\n-5.06130755e-02 -3.54118764e-01 -1.63982719e-01 -4.68991011e-01\\n-2.05224663e-01 2.58927822e-01 1.64388344e-02 7.08726466e-01\\n3.99915755e-01 -6.20405376e-02 -1.15255043e-01 2.97411680e-01\\n1.85923219e-01 1.92877464e-02 2.04463810e-01 8.37673247e-01\\n2.70993084e-01 -6.91604614e-02 -1.41646788e-02 7.16641396e-02\\n4.87585040e-03 -7.52151459e-02 5.64723074e-01 1.62882075e-01\\n-2.03815117e-01 -2.86213338e-01 2.54533201e-01 3.56649399e-01\\n-2.43268669e-01 -1.10123068e-01 -1.56665351e-02 1.56770706e-01\\n-5.84460258e-01 -5.04559457e-01 -2.97786534e-01 -1.11032128e-02\\n-3.39402497e-01 -3.09013903e-01 2.96466410e-01 -5.06600700e-02\\n5.38071543e-02 1.56672657e-01 -5.71766913e-01 1.50984317e-01\\n-1.63360715e-01 -9.36386436e-02 2.64369518e-01 6.69528306e-01\\n-2.21422806e-01 -3.76176119e-01 -5.28578460e-01 -1.56794935e-01\\n-9.67135355e-02 -8.63044038e-02 -2.92635299e-02 -3.26595902e-01\\n5.01759291e-01 1.06564306e-01 9.99007449e-02 2.21450150e-01\\n-7.19509840e-01 -1.52579114e-01 -2.69892693e-01 7.70695284e-02\\n-2.77819395e-01 -7.71931559e-02 5.24960831e-02 -2.24402428e-01\\n-1.38893992e-01 3.43119502e-01 5.03780320e-02 7.26718679e-02\\n-1.26976579e-01 3.99083763e-01 -2.14835852e-01 2.70659059e-01\\n6.82644472e-02 3.04811418e-01 6.75827712e-02 2.66681939e-01\\n-4.42713916e-01 3.92651886e-01 -1.33917551e-03 -3.58318985e-01\\n1.72328770e-01 1.30207866e-01 5.04208803e-01 -4.05891053e-02\\n2.21757561e-01 6.40647411e-02 -2.94102699e-01 4.63778496e-01\\n3.37146103e-01 -6.19560406e-02 1.96224093e-01 4.35618833e-02\\n-7.07868487e-02 -2.03720093e-01 2.27487590e-02 -9.14328732e-03\\n-3.51798952e-01 3.38611662e-01 3.60218212e-02 -2.79057771e-01\\n-3.37158412e-01 -7.15076208e-01 -1.06256425e-01 -7.18494654e-02\\n2.57016011e-02 -1.88628733e-02 3.10433745e-01 3.01956683e-01\\n2.21182570e-01 5.68175549e-03 1.32828474e-01 9.08930302e-01\\n-1.96331874e-01 1.98670663e-02 -7.71393441e-03 4.39201623e-01\\n2.66786758e-02 -2.46281981e-01 3.55188400e-01 3.32521081e-01\\n3.98515463e-02 -2.87895262e-01 -1.40692741e-01 1.18540943e-01\\n-8.13064054e-02 -2.50040650e-01 -4.47571754e-01 4.01631534e-01\\n-5.59104197e-02 -3.82852018e-01 5.80591917e-01 -1.49704218e-02\\n1.44920781e-01 -1.95709556e-01 -9.14238766e-02 -1.14982143e-01\\n1.27150387e-01 1.73118591e-01 2.98465006e-02 1.51056759e-02\\n-3.18475276e-01 -1.86753318e-01 -2.56250620e-01 -4.79933135e-02\\n-2.68640310e-01 4.11803901e-01 -1.33990586e-01 -1.46340415e-01\\n3.20837498e-01 -1.45542443e-01 -2.99591124e-01 4.51312423e-01\\n-1.02879189e-01 -1.01027444e-01 8.49661976e-03 4.04606223e-01\\n-2.96354949e-01 1.62089974e-01 -2.28302479e-02 -4.15693104e-01\\n4.89489704e-01 -5.08041643e-02 -9.25617572e-03 5.85887767e-03\\n2.68584907e-01 -5.64731658e-02 1.13961428e-01 1.10013202e-01\\n-7.46925533e-01 2.05857426e-01 -2.99774744e-02 6.47832602e-02\\n1.01645365e-01 -2.11973228e-02 5.61715901e-01 -2.67359823e-01\\n-9.64637399e-02 -2.03056574e-01 -2.29629397e-01 -1.72231153e-01\\n-2.23611683e-01 2.41424683e-02 4.04588282e-01 -3.51689905e-01\\n-8.71918947e-02 9.25695449e-02 -5.21928191e-01 -2.22333848e-01\\n-1.65140599e-01 1.93033114e-01 2.76066571e-01 2.08562136e-01\\n-2.86134005e-01 -5.01437664e-01 1.68071929e-02 -4.80697244e-01\\n-1.29399329e-01 1.26776978e-01 -1.44325584e-01 4.70583662e-02\\n3.97809483e-02 8.65317285e-02 -2.42027611e-01 1.40861413e-02\\n-3.10616076e-01 -5.20778541e-03 1.46430328e-01 9.37623084e-02\\n1.78942502e-01 9.55171883e-02 -3.41007590e-01 4.25902605e-01\\n-1.21985711e-01 7.14845300e-01 9.37000066e-02 -6.87866688e-01\\n4.45264995e-01 6.15007639e-01 -8.32524151e-04 -5.22736907e-01\\n8.59574080e-01 -3.89872015e-01 -1.23316176e-01 2.20034212e-01\\n-4.67379868e-01 -2.04989061e-01 1.93395495e-01 -3.42955977e-01\\n-2.18238682e-01 6.82741404e-01 2.06239253e-01 2.79475570e-01\\n2.42790908e-01 -2.41475821e-01 -8.78192112e-02 1.18884847e-01\\n-1.99934721e-01 -3.35704684e-01 -4.58944082e-01 -4.46644053e-02\\n-8.43228847e-02 -3.87640506e-01 -3.59113049e-03 -5.47983646e-01\\n-7.01359510e-02 -2.85246670e-01 5.85510805e-02 2.53617436e-01\\n2.88158834e-01 -1.07170954e-01 1.28562897e-01 1.00407302e-02\\n-2.87427217e-01 -6.40394807e-01 5.80714867e-02 4.78657670e-02\\n2.98324913e-01 1.41319811e-01 4.86830696e-02 1.45219356e-01\\n-4.21842635e-02 5.98069787e-01 -4.12827760e-01 -2.28340060e-01\\n7.23405257e-02 6.98399842e-02 -1.01957403e-01 -4.79738750e-02\\n2.29019046e-01 2.80903310e-01 -3.66281211e-01 1.58332273e-01\\n-2.83897579e-01 1.16952267e-02 3.83291543e-01 5.76225631e-02\\n-1.03777170e-01 -3.39173496e-01 -2.17351243e-01 7.36750290e-02\\n-5.66741526e-01 -2.92441368e-01 1.83423460e-01 1.80575594e-01\\n1.71114445e-01 -4.13333401e-02 2.59165287e-01 -4.86990362e-02\\n-3.41019392e-01 -4.05753464e-01 1.24298155e-01 2.22978741e-01\\n2.63237301e-02 -3.36475298e-03 4.52119447e-02 -5.36467791e-01\\n-2.48188829e+00 7.85219520e-02 -1.18475594e-02 -9.82554033e-02\\n3.07876289e-01 -8.55706781e-02 -8.79981667e-02 1.01506431e-02\\n-4.67441052e-01 7.92015642e-02 -3.10824454e-01 -3.26058716e-01\\n7.89732113e-02 9.02246237e-02 2.01924622e-01 1.97807644e-02\\n-1.60633743e-01 -3.64493608e-01 5.46896569e-02 3.78157020e-01\\n-9.36601907e-02 -6.97075248e-01 1.95206866e-01 -2.06763536e-01\\n3.20534915e-01 1.41952857e-01 -4.56909209e-01 -2.07273245e-01\\n-3.41205090e-01 -3.02655101e-01 1.24217838e-01 -3.90627980e-01\\n-1.07618451e-01 2.11928278e-01 2.78403252e-01 5.28788939e-02\\n7.39757866e-02 -4.11585420e-01 -8.63629133e-02 -5.36580682e-01\\n1.60470635e-01 -5.27852297e-01 -8.33108351e-02 -1.23676457e-01\\n7.91242599e-01 -1.05762511e-01 1.66914254e-01 2.38038406e-01\\n8.54494423e-02 3.80013168e-01 1.68680042e-01 6.87090307e-02\\n-1.76705003e-01 -3.88859391e-01 -1.24609828e-01 -2.22830340e-01\\n3.03601801e-01 6.22459531e-01 -2.01547831e-01 -2.11238578e-01\\n-4.94279861e-02 -1.13650329e-01 -7.15984583e-01 -2.17597574e-01\\n-1.31451577e-01 -6.81305677e-02 -6.10427856e-01 -3.04470688e-01\\n5.06750681e-03 -2.22039297e-01 -1.77767575e-02 8.21896315e-01\\n-4.81288910e-01 -1.27176374e-01 -4.85077612e-02 -5.03491640e-01\\n3.56350601e-01 -4.02850211e-01 3.52946296e-02 -5.58663495e-02\\n-3.22295606e-01 -5.35560727e-01 1.91964626e-01 3.33730355e-02\\n1.03961535e-01 -3.13841373e-01 -2.76895724e-02 -3.79646301e-01\\n-3.68857533e-01 -5.78027844e-01 4.07614797e-01 1.47311330e-01\\n4.02638018e-01 8.41324776e-02 1.04301319e-01 -1.31242260e-01\\n2.61280745e-01 1.89854652e-01 9.66012999e-02 -2.65808821e-01\\n1.07359469e-01 -1.26699321e-02 5.32254577e-01 -2.18555123e-01\\n-3.28736715e-02 2.81389654e-02 -3.00247639e-01 2.07408480e-02\\n2.36194059e-02 8.39301422e-02 -2.72555090e-02 -3.07861328e-01\\n3.03385973e-01 -2.36406267e-01 1.00457236e-01 7.42449611e-02\\n5.07685505e-02 6.40259326e-01 -1.36890719e-02 -2.96718985e-01\\n-2.13718176e-01 3.79791319e-01 6.97991624e-03 -2.77193666e-01\\n1.91347003e-02 9.82096121e-02 -3.45803201e-01 2.50712484e-01\\n5.86071610e-02 -1.72310725e-01 -2.86427140e-01 5.66873178e-02\\n-3.03193718e-01 2.87834853e-01 2.73239851e-01 3.02359819e-01\\n-2.60871649e-01 -3.42498481e-01 -1.43479928e-01 4.42345500e-01\\n3.82398069e-01 1.96156815e-01 2.04745919e-01 -3.05308402e-01\\n9.85153168e-02 3.70981276e-01 -8.95058662e-02 3.23548555e-01\\n-1.93556488e-01 -8.63525271e-03 -4.70659971e-01 -2.47499496e-01\\n-3.43874365e-01 -2.95479327e-01 3.04496825e-01 3.88104975e-01\\n1.00817353e-01 -1.97061762e-01 6.98339343e-02 -4.01460588e-01\\n3.01824570e-01 2.24672675e-01 2.78110743e-01 -3.18264263e-03\\n-2.12903783e-01 7.60145903e-01 4.95729297e-02 -6.84433803e-02\\n8.71081352e-02 -3.22130769e-02 -2.50670910e-01 -2.48286098e-01\\n9.05192643e-02 -5.52165031e-01 -3.55697870e-01 5.11308253e-01\\n7.54418224e-02 -2.96924919e-01 -1.85742944e-01 3.81201386e-01\\n5.93147613e-03 -1.13518104e-01 -1.71170354e-01 1.11547768e-01\\n1.82311013e-01 2.48405505e-02 2.56972849e-01 -5.77492118e-01\\n4.81822453e-02 -8.07079375e-02 2.15251073e-01 4.60442126e-01\\n6.17659241e-02 -1.40849799e-02 -3.96825850e-01 -3.82223397e-01\\n2.61422187e-01 -1.20779887e-01 5.67430817e-02 6.79491460e-03\\n-4.23998609e-02 -2.34470665e-01 -3.82789850e-01 1.49799645e-01\\n-1.08190261e-01 -2.89712071e-01 -1.90536663e-01 1.66775525e-01\\n2.09501058e-01 4.23453888e-03 -5.50093293e-01 -2.88947999e-01\\n-1.58106625e-01 1.93713278e-01 -4.33786958e-02 -4.23162341e-01\\n-7.35912751e-03 -1.31652936e-01 -5.53546250e-01 2.83875942e-01\\n-1.15396291e-01 -1.44187838e-01 2.90813059e-01 -6.14260919e-02\\n-1.45987034e-01 -1.75757349e-01 1.66905209e-01 1.70598298e-01\\n-2.79904962e-01 -2.72356093e-01 -1.09784506e-01 -7.50319302e-01\\n2.31985673e-01 -1.79974943e-01 -1.36926234e-01 2.47590214e-01\\n1.44959867e-01 -8.47737432e-01 -2.81981789e-02 -3.51557806e-02\\n-4.15872149e-02 -1.08306736e-01 -2.97942400e-01 -3.60341072e-01\\n1.88647851e-01 2.98499595e-02 1.86299950e-01 2.66827583e-01\\n-3.24826360e-01 3.50115776e-01 -1.63529590e-01 -5.95295094e-02\\n1.14686333e-01 -4.38195705e-01 3.35826516e-01 -4.05177653e-01\\n-2.33751938e-01 -1.58398956e-01 -1.46460295e-01 -3.10499340e-01\\n-2.04065055e-01 -1.65390432e-01 -2.03085750e-01 4.59843725e-02\\n3.60766411e-01 2.19513476e-03 -2.52138615e-01 -1.58766493e-01\\n2.73846090e-01 -2.29012355e-01 2.15433925e-01 -1.61596298e-01\\n3.11880652e-02 -1.87858403e-01 1.22183934e-03 2.55314410e-01\\n1.20783404e-01 -2.37280145e-01 3.82095069e-01 -5.39723933e-01\\n-5.31245053e-01 -2.66796462e-02 1.68584093e-01 -1.36082739e-01\\n4.35275286e-01 -3.74710053e-01 -1.70460925e-01 4.82203603e-01\\n7.29043484e-02 6.12219982e-03 4.18551505e-01 -3.97491157e-01\\n-2.09333509e-01 1.63863674e-01 -3.99607241e-01 1.93790436e-01\\n7.51308262e-01 3.62087578e-01 2.58520953e-02 2.22431332e-01\\n4.95855138e-03 1.64091989e-01 3.33375990e-01 6.46231920e-02\\n1.19703844e-01 1.65906265e-01 3.51426452e-01 -3.05862963e-01\\n-2.74645358e-01 -4.20168042e-04 -1.27942711e-01 -2.91398168e-01\\n5.14018416e-01 2.91541100e-01 -4.78274584e-01 -2.32945487e-01\\n-1.89964548e-01 -4.08878177e-03 2.96094596e-01 3.07504255e-02\\n3.04530896e-02 1.51658863e-01 3.68120819e-01 -4.52038422e-02\\n6.22645020e-02 5.17324328e-01 4.71297912e-02 -2.14374572e-01\\n-3.30490589e-01 1.47188783e-01 6.48699477e-02 4.25095797e-01\\n5.39490208e-02 3.91915500e-01 -4.82826829e-02 1.55732155e-01\\n-1.41831219e-01 2.46662274e-02 6.44592196e-02 -1.30825177e-01\\n-1.41736001e-01 2.21100539e-01 2.01558292e-01 4.39204961e-01\\n5.07578373e-01 5.00967383e-01 2.18115643e-01 2.51558376e-03\\n5.15514493e-01 4.94697690e-01 4.24764246e-01 -5.24234623e-02\\n2.91975774e-02 6.29625618e-02 -1.28203239e-02 2.84622777e-02\\n3.69149685e-01 2.08649606e-01 9.06033814e-02 9.07156289e-01\\n2.42310524e-01 4.47250992e-01 5.23406446e-01 -4.98723030e-01\\n-3.74662876e-01 -2.53628008e-03 4.03031111e-01 -5.62860250e-01\\n-1.05003431e-01 -8.55161771e-02 5.83845712e-02 1.61441296e-01\\n-2.95660853e-01 -3.66350040e-02 -6.52897656e-02 2.90814579e-01\\n1.12193540e-01 -7.38110244e-02 -1.52578816e-01 1.17978677e-01\\n-2.60110885e-01 -1.61791578e-01 -5.00850916e-01 -3.36037695e-01\\n-4.47054625e-01 -1.85329109e-01 -2.57674083e-02 1.00367386e-02\\n1.79492719e-02 -1.65376797e-01 1.99737221e-01 -1.09691340e-02\\n5.77859521e-01 -2.67868102e-01 -1.38407469e-01 -2.31462479e-01\\n5.25919437e-01 2.30033308e-01 5.42341113e-01 -1.27677575e-01\\n1.08313262e-02 -4.23326880e-01 -1.79315448e-01 2.51365993e-02\\n9.70965400e-02 1.51231304e-01 4.65523824e-02 4.40123379e-01\\n-2.04064324e-01 -3.36268768e-02 3.16305682e-02 3.20813358e-01\\n-2.78688788e-01 3.01793609e-02 -7.19959140e-02 -5.04226759e-02\\n-9.13985148e-02 8.77118781e-02 -3.10290396e-01 2.50814915e-01\\n-5.91894500e-02 -6.35081768e-01 2.48365790e-01 -1.56630874e-02\\n-2.68759251e-01 -1.31524116e-01 5.77500701e-01 2.05051094e-01\\n-3.08491439e-02 -1.47888869e-01 9.37148333e-02 2.59473115e-01\\n1.02441013e-01 2.75669992e-01 -3.93415213e-01 -2.91762561e-01\\n-3.83897066e-01 9.31471959e-02 -2.82130897e-01 7.43618328e-03\\n6.20297529e-02 5.94205499e-01 1.50216296e-02 4.52903770e-02\\n6.08782291e-01 -1.96345031e-01 -1.72456682e-01 -4.11166191e-01\\n-1.57634676e-01 -2.51504600e-01 -1.23404920e-01 6.95163012e-03\\n1.29820973e-01 -1.68730915e-01 -2.03990757e-01 -4.34988976e-01\\n2.73905694e-02 -2.02042356e-01 7.43188858e-02 -1.08718477e-01]]',\n", + " 'The Paul Scherrer Institute PSI is the largest research institute for natural and engineering sciences within Switzerland. We perform cutting-edge research in the fields of matter and materials, energy and environment and human health. By performing fundamental and applied research, we work on sustainable solutions for major challenges facing society, science and economy. PSI is committed to the training of future generations. Therefore, about one quarter of our staff are post-docs, post-graduates or apprentices. Altogether, PSI employs 2100 people. The Swiss Light Source (SLS) is one of the most advanced radiation sources worldwide. The SLS Macromolecular Crystallography team operates two high performance undulator beamlines as well as a state-of-the-art superbending magnet beamline for Macromolecular Crystallography. The focus is on methods development in Macromolecular Crystallography including advanced beamline instrumentations, novel data collection methods for experimental phasing, in situ serial crystallography, and time-resolved crystallography. The team is also involved in the development and user operation of serial femtosecond crystallography (SFX) instruments at the Swiss X-Ray free-electron laser facility Swiss X-Ray free-electron laser facility (SwissFEL) Alvra and Bernina end stations, and in the design of the new SFX Cristallina end station. We are looking for a Beamline Scientist Serial Femtosecond Crystallography Your tasks You will lead the development and user operation of the SFX instruments at the SwissFEL. In addition, you will contribute to time-resolved serial crystallography development at the macromolecular crystallography beamlines of the SLS and SLS 2.0 Your main tasks are: Lead the design, implementation and commissioning of the SFX instrument in the Cristallina-MX end station at the SwissFEL Further develop and commission the current SFX instruments at the Alvra and Bernina end stations of the SwissFEL Develop new concepts and implement advanced methods focused on experimental control and online data analysis Support academic and industrial users Publish in peer-reviewed scientific journals and present your results at international conferences Supervise assigned personnel, and mentor PhD students and postdoctoral fellows Your profile You hold a PhD degree in biology, chemistry or physics and have substantial experience in macromolecular crystallography and beamline instrumentation at storage rings or XFELs Experience in experimental control and data analysis, especially in high throughput applications You are a good team player with fine communication skills, sense of responsibility, and very good command in spoken and written English; knowledge of German is an advantage We offer Our institution is based on an interdisciplinary, innovative and dynamic collaboration. You will profit from a systematic training on the job, in addition to personal development possibilities and our pronounced vocational training culture. If you wish to optimally combine work and family life or other personal interests, we are able to support you with our modern employment conditions and the on-site infrastructure. This is a Tenure Track position. The employment contract will initially be limited to 3 years. For further information please contact Dr Meitian Wang, phone +41 56 310 41 75 or Dr Bill Pedrini, phone +41 56 310 33 71. Please submit your application online by 30 November 2019 (including list of publications and addresses of referees) for the position as a Beamline Scientist (index no. 6121-00). Paul Scherrer Institut, Human Resources Management, Elke Baumann, 5232 Villigen PSI, Switzerland',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Positivity\", \"Collaboration\", \"Infrastructure\", \"Supervision\", \"Written English\", \"Operations\", \"Presentations\", \"Innovation\", \"Sourcing\"]',\n", + " '[\"Economy\", \"Resource Management\", \"Sustainability\", \"Indexer\", \"Employment Contracts\", \"Institutional Research\", \"Commissioning\", \"High Performance Computing\", \"Vienna Development Methods\", \"Laser\", \"Journals\", \"X-Rays\", \"Industrialization\", \"Survey Data Collection\", \"Naturalization\", \"Track (Rail Transport)\", \"Instrumentation\", \"Source (Game Engine)\", \"Limiter\", \"Experimentation\", \"DR-DOS\", \"Academic Support Services\", \"Crystallography\", \"Human Resource Management\", \"Storages\", \"Electronics\", \"Biology\", \"High Throughput Screening\", \"Personalization\", \"Survey Data Analysis\", \"Applied Research\", \"Physics\", \"Humanism\", \"Serializer\", \"Chemistry\", \"Peer Review\", \"Additives\", \"Personality Development\", \"S/SL Programming Language\", \"Data Analysis\", \"Controllability\"]',\n", + " \"['English']\"],\n", + " ['102',\n", + " 'data engineer (m/f)',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.robertwalters.com',\n", + " '[[-3.69240314e-01 8.25279877e-02 4.91174340e-01 -8.14468637e-02\\n4.39075351e-01 -2.59894431e-01 1.08117752e-01 4.42793339e-01\\n-1.29006039e-02 -2.21820161e-01 -1.11764878e-01 -3.46410513e-01\\n3.82579044e-02 1.88376933e-01 1.42550454e-01 3.87582600e-01\\n3.24492037e-01 8.68002847e-02 -2.41615415e-01 3.03820312e-01\\n7.33862519e-02 -1.92458019e-01 1.04501899e-02 5.67554653e-01\\n5.09980440e-01 3.85048613e-02 -5.28866909e-02 4.88218740e-02\\n-2.86617905e-01 -2.13553339e-01 4.07707930e-01 -7.75738806e-03\\n-1.74949616e-01 -2.43239209e-01 -2.87563782e-02 3.63004394e-02\\n-9.17406008e-02 -5.80493137e-02 -2.32187226e-01 1.50015563e-01\\n-5.16039729e-01 -4.32223529e-01 6.05612919e-02 1.88062310e-01\\n-3.61154497e-01 -4.52994496e-01 -2.24923361e-02 -1.28107816e-01\\n1.56975076e-01 1.21473804e-01 -5.52773178e-01 5.16897440e-01\\n-3.28382015e-01 -3.29085082e-01 2.34204695e-01 7.44919598e-01\\n6.68055490e-02 -5.67464232e-01 -4.49748307e-01 -3.07602376e-01\\n1.28797784e-01 -1.05079904e-01 -3.27876620e-02 -3.29013437e-01\\n2.58923858e-01 5.65505028e-02 3.23734991e-02 4.74667639e-01\\n-9.46887016e-01 -2.08655745e-02 -3.92103791e-01 -8.98579508e-02\\n-7.63695613e-02 -2.71036364e-02 -4.35818046e-01 -1.99281469e-01\\n-9.98111144e-02 3.66229266e-01 5.51985623e-03 2.55612023e-02\\n-2.49248818e-01 3.81793588e-01 -2.52502412e-01 3.90147835e-01\\n2.25170612e-01 2.25819886e-01 1.64574474e-01 2.83999294e-01\\n-3.49378407e-01 5.91016293e-01 2.62454599e-01 -3.40145677e-01\\n1.22616664e-01 1.90349996e-01 3.58295411e-01 1.93632245e-01\\n1.19423456e-01 1.77830189e-01 -1.17937751e-01 2.77026951e-01\\n4.14565653e-01 -4.21201766e-01 2.00246368e-02 -6.19453080e-02\\n-1.44699827e-01 1.83656125e-03 1.45882025e-01 2.49355152e-01\\n-1.68656945e-01 3.71681005e-01 7.77733102e-02 -2.91046947e-01\\n9.79752466e-02 -5.00715256e-01 -1.92763239e-01 -9.94219538e-03\\n-3.09221111e-02 1.51602447e-01 2.32413709e-02 1.75464928e-01\\n1.82368442e-01 -9.10306126e-02 3.19169872e-02 9.06018913e-01\\n-1.62834436e-01 1.60859853e-01 -2.55465746e-01 4.82394278e-01\\n3.65963280e-02 -3.08085859e-01 2.89399147e-01 8.57370272e-02\\n-1.28514627e-02 -1.37735412e-01 -3.06986302e-01 4.68420506e-01\\n-1.23031072e-01 -2.40614563e-01 -3.76867175e-01 2.40593895e-01\\n-1.45341277e-01 -4.81125623e-01 6.94297433e-01 -4.25317436e-02\\n2.93819904e-01 7.18387440e-02 -3.35147940e-02 1.09219998e-01\\n-1.16232067e-01 2.59424686e-01 1.61119401e-01 3.90311368e-02\\n-3.80033821e-01 -1.99606299e-01 -2.26258412e-01 2.48691201e-01\\n-3.04851562e-01 1.48026451e-01 -1.19070835e-01 -5.28749637e-02\\n3.63795847e-01 7.07269683e-02 -4.21763450e-01 2.84870386e-01\\n-7.16133714e-02 1.26203494e-02 -1.35152161e-01 2.22982615e-01\\n-2.49662444e-01 3.71707886e-01 -7.46834353e-02 -1.62973374e-01\\n6.31901920e-01 1.79023117e-01 1.27076954e-01 -1.92455918e-01\\n2.05039203e-01 1.50246611e-02 2.82670289e-01 8.74235947e-03\\n-5.76988459e-01 5.77274323e-01 8.00961480e-02 -3.62565964e-02\\n1.31659001e-01 -1.58827946e-01 2.79630303e-01 -3.37808341e-01\\n-1.71705693e-01 -7.68935084e-02 -3.57631236e-01 -3.71480584e-01\\n-3.98912698e-01 -1.60966754e-01 3.51980805e-01 -5.92204332e-01\\n-1.15984946e-01 1.47292793e-01 -6.94108427e-01 -3.90457958e-02\\n3.79650533e-01 5.97690009e-02 1.25385270e-01 2.49188349e-01\\n-7.30868354e-02 -5.69591284e-01 1.96737736e-01 -5.03612638e-01\\n-2.61735320e-01 1.83000907e-01 -2.41609454e-01 2.58737057e-01\\n1.21974787e-02 1.15283407e-01 -8.84649605e-02 1.64380625e-01\\n-2.57929474e-01 1.23197976e-02 1.49216354e-01 7.02007413e-02\\n3.75430167e-01 4.47768904e-02 -3.95253450e-01 4.68276441e-01\\n-1.77164346e-01 6.51994050e-01 2.37045184e-01 -9.41641271e-01\\n4.30420101e-01 3.86938542e-01 -2.22837422e-02 -3.35657001e-01\\n6.22202337e-01 -4.11555946e-01 -2.55740225e-01 1.85853124e-01\\n-4.10764307e-01 -2.41395324e-01 1.20760888e-01 -1.47041410e-01\\n-3.14059198e-01 6.41126454e-01 8.66300166e-02 1.03188545e-01\\n2.68038988e-01 -2.27926910e-01 -1.11606024e-01 8.50964058e-03\\n-1.20851956e-01 -2.73170412e-01 -5.17953157e-01 -6.10137917e-02\\n-4.92346212e-02 -5.31678259e-01 -2.43596941e-01 -3.87654454e-01\\n-2.97718436e-01 -3.48096311e-01 -9.66810063e-02 1.40077755e-01\\n2.61486441e-01 2.07811981e-01 7.43704289e-02 7.26435408e-02\\n-1.68329492e-01 -5.96635401e-01 3.81935760e-02 9.25624892e-02\\n4.07238305e-01 3.13320696e-01 4.26565669e-02 1.26552610e-02\\n1.59102291e-01 6.05940461e-01 -5.42859614e-01 -4.28777367e-01\\n2.65189856e-01 1.14223011e-01 1.42616229e-02 -2.85975605e-01\\n2.08352283e-01 3.53475600e-01 -2.87568897e-01 1.15516424e-01\\n3.82988229e-02 -1.90840811e-02 3.18307340e-01 2.20453829e-01\\n-2.95485467e-01 -4.60772365e-01 -1.32605851e-01 1.99360758e-01\\n-5.42560339e-01 -2.34567016e-01 5.63095748e-01 1.27885014e-01\\n9.43219140e-02 2.82934636e-01 3.53706986e-01 -1.25921980e-01\\n-2.05265597e-01 -9.71540958e-02 1.25345737e-01 1.75501317e-01\\n-2.05488969e-02 1.06356412e-01 -2.36835014e-02 -5.97698867e-01\\n-3.04537058e+00 -1.11750372e-01 1.53187677e-01 -1.77589059e-01\\n2.46047720e-01 -2.62942314e-01 -4.22593439e-03 -5.31064197e-02\\n-3.67481142e-01 -3.43310572e-02 -1.58565044e-01 -5.02117649e-02\\n2.79857516e-01 1.70414746e-01 5.01893423e-02 2.07946002e-01\\n9.91830304e-02 -3.02427709e-01 1.48815373e-02 4.32165027e-01\\n-1.35586068e-01 -6.13655031e-01 1.18142068e-01 -1.14492625e-01\\n3.72311562e-01 2.26920635e-01 -6.28906131e-01 -1.30676880e-01\\n-2.61219114e-01 -3.51524591e-01 9.90687683e-02 -3.19350392e-01\\n-8.49257633e-02 2.38111585e-01 1.38117835e-01 -5.17274141e-02\\n2.10168883e-01 -2.74930149e-01 6.48810249e-03 -4.06912386e-01\\n9.22796428e-02 -7.78051853e-01 -4.57377778e-03 7.00837001e-02\\n8.47651482e-01 -3.33411098e-01 1.35327116e-01 1.00539345e-03\\n1.75501794e-01 2.34811381e-02 -5.58712333e-02 2.58948356e-02\\n-2.96528161e-01 -2.22639069e-01 -5.51448092e-02 -5.27355634e-02\\n5.56573629e-01 6.04797423e-01 -2.10573778e-01 -7.92994630e-03\\n5.03490772e-03 -3.90890926e-01 -4.43472683e-01 -3.75228852e-01\\n-1.34297282e-01 -1.73222393e-01 -6.30488336e-01 -3.76986712e-01\\n-2.00325802e-01 -5.92841096e-02 3.38628963e-02 5.17028153e-01\\n-3.20278496e-01 -4.54628080e-01 4.91282754e-02 -6.50902867e-01\\n2.83607721e-01 4.01125252e-02 1.65570542e-01 -2.10148931e-01\\n-2.08284259e-01 -6.25866592e-01 6.11026324e-02 1.59246139e-02\\n-1.02232650e-01 -1.29592821e-01 1.92116246e-01 -5.08912280e-02\\n-4.47158694e-01 -5.67521036e-01 3.35128903e-01 1.88271970e-01\\n3.57883453e-01 2.70942956e-01 1.78484857e-01 -8.19721296e-02\\n3.33459556e-01 -2.29541108e-01 1.68070987e-01 -4.68866616e-01\\n-1.07093222e-01 1.76562686e-02 4.21825290e-01 -1.05930820e-01\\n1.42581211e-02 1.58526078e-01 -2.63683200e-01 -1.31640941e-01\\n3.71041089e-01 7.31290430e-02 1.58227757e-01 -2.94220090e-01\\n2.49974340e-01 -1.83012262e-01 -2.83738881e-01 2.00685225e-02\\n-4.58043702e-02 7.52873778e-01 -3.57089341e-02 -2.33635828e-01\\n-1.47344217e-01 4.05440360e-01 -1.23900034e-01 -1.33360520e-01\\n-2.97999382e-01 7.44065642e-02 -1.65027201e-01 1.17701374e-01\\n-2.65431013e-02 -1.76033884e-01 -1.74560517e-01 -3.44776437e-02\\n-6.59584254e-02 3.36652368e-01 1.79248646e-01 1.17356203e-01\\n-1.49229556e-01 -1.68255821e-01 1.06160425e-01 1.52614608e-01\\n1.13357365e-01 4.04965907e-01 -5.30397035e-02 -3.61947894e-01\\n-6.38192426e-03 2.67998606e-01 -1.98803574e-01 1.59754753e-01\\n-1.18419252e-01 7.22104609e-02 -5.21541059e-01 -9.00286064e-02\\n-1.73611239e-01 -4.03191656e-01 1.04705997e-01 2.99585462e-01\\n6.16946220e-02 -6.16030544e-02 -5.56084746e-03 -5.43981612e-01\\n3.44774365e-01 1.44660071e-01 1.91595122e-01 1.85645342e-01\\n9.85863581e-02 6.46382093e-01 9.32209641e-02 -1.44844264e-01\\n-7.15427101e-02 1.38203114e-01 -1.60976112e-01 -1.97612703e-01\\n-3.59524675e-02 -4.38107967e-01 -9.09141824e-02 4.59769309e-01\\n2.16785371e-01 -1.42289534e-01 -1.53489828e-01 1.51401520e-01\\n1.67063192e-01 -2.85538405e-01 -2.51075476e-01 2.07387462e-01\\n3.03312838e-01 1.76931575e-01 1.66444331e-01 -3.34908217e-01\\n1.16699815e-01 -5.99436350e-02 -3.19329426e-02 4.00114626e-01\\n5.52689172e-02 8.10881555e-02 -3.10386151e-01 -1.70473322e-01\\n4.47864205e-01 -1.20368242e-01 1.02191949e-02 -9.47455317e-02\\n1.21399492e-01 -9.88917500e-02 -3.88200611e-01 -1.73262078e-02\\n6.73961267e-02 -1.66287690e-01 -3.07188295e-02 2.22887564e-02\\n-6.97165355e-02 8.39978233e-02 -5.55479765e-01 -1.45383850e-01\\n-3.19203943e-01 -1.24511970e-02 -2.40216311e-02 -4.02724534e-01\\n-2.93622725e-02 -4.79101501e-02 -5.91854036e-01 3.09091866e-01\\n-2.45220408e-01 7.09153116e-02 1.43204525e-01 3.54842581e-02\\n-2.91385025e-01 -1.09686986e-01 2.30921805e-01 2.70083815e-01\\n-4.37682152e-01 -3.74605626e-01 -7.58123770e-02 -8.43400478e-01\\n7.97160417e-02 7.05200359e-02 3.56022529e-02 1.84208810e-01\\n-7.22778440e-02 -7.36995459e-01 1.95281148e-01 -3.85950476e-01\\n-1.12499490e-01 1.57817140e-01 -1.21935330e-01 -5.77650726e-01\\n7.19749136e-03 -5.23175895e-02 -3.03457439e-01 3.51405919e-01\\n-4.47346359e-01 4.70710754e-01 1.15978811e-02 9.89015102e-02\\n6.55442551e-02 -2.69383490e-01 2.15770558e-01 -4.35787439e-01\\n-3.01557153e-01 -2.28800222e-01 -4.12436515e-01 -2.26584911e-01\\n7.16811717e-02 -2.72909164e-01 -2.49867991e-01 2.91146934e-01\\n3.36367160e-01 6.77164271e-02 -1.96278304e-01 -1.40293375e-01\\n9.66690108e-02 -6.28951967e-01 -8.10428858e-02 -3.45174670e-01\\n1.27673475e-02 -1.89390689e-01 2.53704280e-01 9.43263154e-03\\n-5.09825535e-02 -5.16686440e-01 3.55138719e-01 -1.84811935e-01\\n-4.14885342e-01 -2.85570249e-02 -4.58882935e-02 -8.85541737e-02\\n3.52662504e-01 -3.84442478e-01 -8.65319148e-02 3.37665141e-01\\n2.97105834e-02 -5.82179846e-03 1.46150365e-01 -1.64327249e-01\\n-5.83229810e-02 2.75725156e-01 -2.73209512e-01 6.86290637e-02\\n7.35783935e-01 8.20402279e-02 1.96759775e-01 1.93554014e-01\\n7.23883212e-02 6.84811532e-01 4.66410697e-01 1.96852525e-05\\n-9.12774354e-02 4.57006127e-01 3.31962965e-02 -6.45995140e-01\\n4.94029187e-03 9.72336903e-02 -3.24362963e-01 -4.38717097e-01\\n6.42769217e-01 5.05809546e-01 -4.11734581e-01 -3.73307616e-01\\n-4.15916517e-02 -2.61462599e-01 1.01649202e-01 -9.41994637e-02\\n4.94386703e-02 -1.51041806e-01 4.94082779e-01 1.26020029e-01\\n2.82762051e-01 5.56713820e-01 -2.17469290e-01 -2.74312615e-01\\n-8.92571956e-02 3.12633127e-01 2.19900194e-05 4.21211421e-01\\n-1.09959774e-01 3.37148130e-01 -6.02169447e-02 4.98960353e-02\\n-1.63255379e-01 1.24646962e-01 2.24700108e-01 -1.28953131e-02\\n1.22753046e-01 2.51483887e-01 5.08446455e-01 5.58867514e-01\\n3.33869934e-01 3.82212788e-01 3.05241525e-01 -2.85167377e-02\\n5.87329447e-01 5.51419437e-01 4.99584943e-01 8.79136175e-02\\n1.87435865e-01 -7.92128071e-02 8.22473913e-02 2.82038182e-01\\n2.55124360e-01 3.38618636e-01 1.76435679e-01 9.76337910e-01\\n4.11718339e-01 3.39573652e-01 9.17758465e-01 -6.99731290e-01\\n-4.69203502e-01 -1.09365188e-01 3.75902653e-01 -4.35338497e-01\\n-1.73421487e-01 5.12854718e-02 -3.03368539e-01 2.32427806e-01\\n-3.91536474e-01 -2.40698233e-01 4.70994748e-02 2.40797609e-01\\n3.24683227e-02 -1.06977649e-01 -1.60973072e-01 1.24271929e-01\\n-1.36761367e-01 -1.29743770e-01 -5.04181027e-01 -2.21394375e-01\\n-2.28577644e-01 -2.33825266e-01 -1.32123470e-01 -4.22072634e-02\\n-2.11774945e-01 -3.69155914e-01 -2.03979090e-01 8.96567665e-03\\n3.68860573e-01 -1.83114663e-01 -1.22481093e-01 -2.20666572e-01\\n2.69309878e-01 2.53335923e-01 5.33374310e-01 3.50270495e-02\\n-9.90169868e-02 -2.64434367e-01 -2.56926030e-01 5.80486469e-02\\n1.80510178e-01 1.00967146e-01 -1.86418649e-02 4.72050220e-01\\n-2.79831648e-01 -1.43928662e-01 1.94978625e-01 3.72866988e-01\\n-4.82679248e-01 4.60712351e-02 -1.13081839e-02 2.25041091e-01\\n1.63797706e-01 1.86475858e-01 -2.10605159e-01 8.51506144e-02\\n-1.85691059e-01 -3.70014280e-01 3.67387235e-01 -4.17417586e-02\\n-2.70970970e-01 2.91785412e-02 2.86757737e-01 3.41690451e-01\\n-2.81337500e-01 -1.67826250e-01 -1.55289918e-01 1.83858752e-01\\n1.80897731e-02 3.08114976e-01 -2.24041209e-01 -2.26730615e-01\\n-2.63909638e-01 1.42573684e-01 -2.19681978e-01 1.35659665e-01\\n-9.44996253e-03 3.24079543e-01 9.65003520e-02 2.04437196e-01\\n3.27318549e-01 -7.35462606e-02 -2.52505839e-01 -4.74324644e-01\\n-6.42108470e-02 -2.88562030e-01 -9.16094482e-02 -3.51239368e-02\\n2.10844904e-01 -4.13383812e-01 -1.10539921e-01 -4.69673015e-02\\n-1.54880226e-01 -3.86361837e-01 -1.16001265e-02 -1.44560263e-01]]',\n", + " 'A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform. Data Engineer (m/f) Zurich Key Responsibilities: Drive and develop a new Data platform, and the future of Data processing for the firm Ensure delivery is meeting the highest quality and standards With a strong track record in Data engineering / Science you have: Profile: Experience designing and implementing Data technologies Strong in Java, Python and SQL programming languages Skilled in Docker and Kubernetes, AWS, Shell scripting Strong team player and leader with excellent interpersonal skills Fluency in English required, other languages are a plus Apply for the Data Engineer (m/f) position if you believe this is your next challenge. A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform.',\n", + " '[\"Positivity\"]',\n", + " '[\"Docker (Software)\", \"Kubernetes\", \"Experience Design\", \"KM Programming Language\", \"Python (Programming Language)\", \"Shell Script\", \"M (Programming Language)\", \"Track (Rail Transport)\", \"Data Storage Technologies\", \"Java (Programming Language)\", \"Electronic Data Processing\", \"SQL (Programming Language)\", \"Data Engineering\"]',\n", + " \"['English', 'Maori', 'Nuosu']\"],\n", + " ['84',\n", + " 'performance and capacity software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.30073804e-01 1.82333335e-01 3.54817897e-01 -5.20979427e-02\\n5.10860205e-01 -1.22414924e-01 2.82488745e-02 2.72785813e-01\\n-1.15607768e-01 -3.26799512e-01 -1.11309655e-01 -2.12444499e-01\\n-8.61595422e-02 -1.48624741e-02 4.88055050e-02 3.60669583e-01\\n2.52864659e-01 8.21797773e-02 -1.60429567e-01 2.47678310e-01\\n1.60236150e-01 8.47721845e-02 -3.28864232e-02 5.70113063e-01\\n3.05923551e-01 -2.21794099e-02 -4.29356657e-02 -1.01206535e-02\\n-2.90633291e-01 -2.93833345e-01 2.91792929e-01 1.42507821e-01\\n-1.79832801e-02 -2.77961284e-01 5.96094914e-02 8.56781006e-03\\n-1.92503572e-01 2.94639599e-02 -1.21581797e-02 2.57650942e-01\\n-4.94087309e-01 -3.40133756e-01 2.19089016e-01 9.27771479e-02\\n-1.98074311e-01 -3.33119124e-01 -4.20717038e-02 1.25107333e-01\\n9.90826711e-02 -1.52135466e-03 -5.68861842e-01 4.33658928e-01\\n-3.42078775e-01 -1.59071058e-01 3.34775239e-01 5.16615987e-01\\n1.23486966e-01 -6.02040648e-01 -2.54358351e-01 -1.72925562e-01\\n4.27933671e-02 -1.80797324e-01 -1.94736551e-02 -2.13368505e-01\\n3.85865420e-01 -4.73097712e-02 4.77422681e-03 4.85355318e-01\\n-6.55387104e-01 -3.95587049e-02 -2.18750030e-01 5.58237499e-03\\n-4.11192596e-01 -4.77760695e-02 -2.71876872e-01 -1.38512224e-01\\n-1.32361978e-01 4.09661174e-01 3.28550152e-02 2.40756124e-02\\n-9.90290940e-02 2.64150530e-01 -2.01560453e-01 1.04968637e-01\\n3.12396526e-01 1.75488651e-01 2.02447832e-01 3.45405906e-01\\n-4.69548881e-01 3.23275238e-01 1.70898482e-01 -2.66092062e-01\\n1.76185027e-01 1.11972116e-01 4.67801899e-01 1.37578890e-01\\n-1.36103958e-03 2.02677161e-01 -1.51316524e-01 2.16347933e-01\\n2.77863204e-01 -2.29205355e-01 7.41887931e-03 -7.47556835e-02\\n-1.54904678e-01 -7.94864595e-02 3.69605832e-02 3.00210983e-01\\n-2.28934377e-01 4.66917127e-01 2.48645455e-01 -1.53634951e-01\\n4.84108105e-02 -6.18979216e-01 -1.97858319e-01 -3.90853137e-02\\n-6.34250864e-02 1.03680804e-01 3.55034769e-01 1.38934612e-01\\n2.30153799e-01 1.33356348e-01 2.14993834e-01 9.48184609e-01\\n-9.60684344e-02 1.34332046e-01 -1.91521540e-01 4.42718744e-01\\n2.27070659e-01 -9.60380360e-02 1.29597291e-01 2.91562080e-01\\n9.07142237e-02 -6.79604486e-02 -1.30698845e-01 3.21554065e-01\\n-1.96740106e-01 -1.62336931e-01 -3.00839394e-01 4.67570126e-02\\n-2.30881751e-01 -3.78175676e-01 4.21992153e-01 2.14933470e-01\\n2.24276319e-01 6.22885115e-02 -1.29535735e-01 -1.47376478e-01\\n-7.71731436e-02 3.06255430e-01 -3.10579711e-03 2.24452630e-01\\n-4.21280921e-01 -1.68350056e-01 -2.57366657e-01 3.25396627e-01\\n-4.14102823e-02 -5.56321517e-02 -2.05037206e-01 -2.53207367e-02\\n4.03468192e-01 1.62803173e-01 -4.16183978e-01 1.73810244e-01\\n1.79960001e-02 -1.98173061e-01 -1.10953875e-01 3.22205514e-01\\n6.86136931e-02 4.19434272e-02 -2.71140020e-02 -2.32080355e-01\\n4.39068943e-01 1.63994372e-01 2.55078375e-01 -9.27375108e-02\\n3.19547594e-01 -2.37060875e-01 1.67243704e-01 1.43001735e-01\\n-7.64194608e-01 3.49804223e-01 -1.00723602e-01 -4.32931818e-02\\n6.64263666e-02 1.67375371e-01 4.36342418e-01 -2.97968328e-01\\n-3.43194455e-02 -1.25300348e-01 -4.11930978e-01 -4.39560980e-01\\n-3.20832789e-01 -6.17662631e-02 4.63308752e-01 -4.23120141e-01\\n-1.11471586e-01 8.72113630e-02 -4.06286538e-01 -6.50587380e-02\\n2.78680831e-01 1.50325269e-01 1.39742553e-01 1.23357274e-01\\n-9.99730602e-02 -6.45759463e-01 4.93513756e-02 -5.53170204e-01\\n-6.51424468e-01 2.03363642e-01 -3.37543935e-01 3.24965686e-01\\n4.90081795e-02 -4.96285930e-02 -7.64552057e-02 1.34767964e-01\\n-2.90950358e-01 -3.03710494e-02 2.14166567e-01 1.92777067e-01\\n3.22863340e-01 -1.06282458e-01 -4.95130479e-01 4.48232293e-01\\n-1.87311664e-01 6.10837579e-01 3.28270197e-01 -8.22558105e-01\\n5.51853120e-01 2.49696285e-01 2.08081752e-02 -2.43036106e-01\\n4.93680358e-01 -3.27291816e-01 1.03242129e-01 1.91898674e-01\\n-3.89319420e-01 -1.60931885e-01 2.79397696e-01 -1.38655543e-01\\n-1.91730037e-01 6.94694102e-01 3.00835699e-01 -9.12323967e-02\\n2.87442118e-01 -3.39344501e-01 -2.17560291e-01 2.39655245e-02\\n-6.08682372e-02 -2.26159245e-01 -3.42510402e-01 1.13443382e-01\\n-7.19419569e-02 -6.28250003e-01 -2.00320467e-01 -2.79967934e-01\\n-1.76502600e-01 -2.77691245e-01 -2.55579531e-01 4.62377936e-01\\n1.31371945e-01 8.09600353e-02 5.54099120e-02 4.61477004e-02\\n1.03529030e-02 -5.77242613e-01 -7.95560032e-02 1.20993666e-01\\n4.62944359e-01 1.34782940e-01 1.58111639e-02 -9.27790552e-02\\n-1.66906133e-01 4.92247909e-01 -4.08307552e-01 -2.80381382e-01\\n1.99652493e-01 2.28363305e-01 -2.96534915e-02 -2.97715645e-02\\n-2.62488071e-02 3.58998865e-01 -2.31767744e-01 9.31122452e-02\\n2.07621139e-02 -5.43867648e-02 3.57003689e-01 1.26718106e-02\\n-3.05724502e-01 -2.60966629e-01 -1.35750517e-01 2.38892213e-01\\n-5.42422473e-01 -2.27652848e-01 5.09047568e-01 3.12668264e-01\\n2.67595172e-01 2.59124547e-01 3.16894531e-01 -1.76190242e-01\\n-2.10237309e-01 -3.26757759e-01 1.36874944e-01 1.84106454e-01\\n3.07802893e-02 5.31448685e-02 -2.85138667e-01 -5.79706550e-01\\n-3.42623782e+00 -2.57639974e-01 1.77104592e-01 -2.89912045e-01\\n2.05162063e-01 -1.25140816e-01 4.01510037e-02 -4.77603301e-02\\n-2.84156770e-01 1.65888574e-02 -2.24702448e-01 -2.28117853e-01\\n1.78591125e-02 2.89764702e-01 1.17374370e-02 1.91709936e-01\\n5.03975041e-02 -2.23670229e-01 -2.35336404e-02 1.84431195e-01\\n-9.19547603e-02 -6.45670235e-01 1.31950900e-01 -1.88954771e-02\\n1.60361871e-01 1.86640397e-01 -3.48967224e-01 -9.66397766e-03\\n-1.56231850e-01 -2.50950754e-01 7.61029720e-02 -2.56303400e-01\\n-3.16909701e-02 2.40510955e-01 1.55150726e-01 -6.91247061e-02\\n-3.09370132e-03 -2.61119366e-01 -3.30378450e-02 -4.15529728e-01\\n1.77946866e-01 -4.46394265e-01 1.27670184e-01 -1.05741262e-01\\n7.21635878e-01 -3.20548564e-01 6.46116361e-02 1.13885358e-01\\n1.94188505e-01 1.89525098e-01 -8.98239613e-02 -4.34088521e-02\\n-2.05631226e-01 -3.64561498e-01 -1.50392577e-01 -2.38582268e-01\\n4.13422674e-01 4.58273172e-01 -1.70710593e-01 2.71493495e-02\\n8.72483850e-02 -3.68835688e-01 -2.82347411e-01 -4.49311376e-01\\n-3.16838205e-01 -8.17013755e-02 -6.21190786e-01 -4.69199389e-01\\n-1.47983313e-01 -4.81707752e-02 -2.40671426e-01 6.09202802e-01\\n-3.61060023e-01 -5.25859177e-01 -2.72691343e-02 -5.95469892e-01\\n6.58769161e-02 -3.23380083e-01 2.50169411e-02 -1.55658454e-01\\n-3.31984013e-01 -5.08418679e-01 1.17903545e-01 1.14932163e-02\\n-1.62465319e-01 -2.63561979e-02 3.66140902e-02 -2.13755623e-01\\n-3.63111049e-01 -3.36871862e-01 3.86156857e-01 -3.23000886e-02\\n3.42006117e-01 1.64944157e-01 2.64157563e-01 1.60016283e-01\\n3.51128548e-01 -1.43643394e-01 5.75878210e-02 -2.63508350e-01\\n9.05488357e-02 4.52248529e-02 6.50635481e-01 -3.15508306e-01\\n-1.96186788e-02 2.82834440e-01 -3.30466211e-01 -9.64236930e-02\\n4.18354869e-01 1.17020309e-02 -6.00626357e-02 -1.70579657e-01\\n3.74546766e-01 -5.14261365e-01 -2.39538118e-01 2.31087044e-01\\n2.99923774e-03 6.34977996e-01 6.66428953e-02 -3.83366704e-01\\n-2.90473938e-01 4.16613221e-01 -1.16571605e-01 -2.90686876e-01\\n-2.56845295e-01 1.41445801e-01 -1.74778581e-01 2.28649050e-01\\n1.25533268e-01 -2.03080118e-01 -3.58451247e-01 -5.99483326e-02\\n-2.37415009e-03 2.32676327e-01 2.51253366e-01 -2.57089012e-03\\n-1.98258199e-02 -1.62917003e-01 -1.18764773e-01 3.24689187e-02\\n1.94024220e-01 3.49367082e-01 1.86742589e-01 -2.12615997e-01\\n-4.00626361e-02 1.59869075e-01 -1.84370518e-01 1.65367633e-01\\n-1.62551686e-01 -5.09238569e-03 -4.79976833e-01 -3.55994195e-01\\n-1.11810304e-01 -3.18132609e-01 4.55938242e-02 3.09165448e-01\\n2.29074731e-01 -6.85298070e-03 -9.52612534e-02 -4.31866795e-01\\n4.39125836e-01 8.97091553e-02 3.31817776e-01 1.60687953e-01\\n5.46569936e-02 4.67481583e-01 -1.24708256e-02 -5.63992411e-02\\n-4.36708145e-02 -7.14600459e-02 -3.34591389e-01 -1.49619147e-01\\n1.38863757e-01 -3.11357796e-01 -1.15039617e-01 4.64470237e-01\\n1.22343995e-01 -1.66878000e-01 -1.22501962e-01 3.52641940e-01\\n3.69313136e-02 -1.39942616e-01 -2.11236015e-01 1.46495908e-01\\n2.09854782e-01 4.26724404e-02 1.90415129e-01 -4.06624377e-01\\n-7.45907519e-03 -5.45794098e-03 -1.45663843e-01 4.58337039e-01\\n9.51535776e-02 7.91616291e-02 -2.29619250e-01 -3.08905721e-01\\n4.10526097e-01 -2.26803422e-01 -1.50345191e-01 -6.14170395e-02\\n7.13979639e-03 -1.65313542e-01 -5.12980580e-01 -8.50594230e-03\\n-2.57864222e-02 -2.16652706e-01 1.82691664e-01 2.18039192e-02\\n1.32936582e-01 7.31126219e-03 -4.88532007e-01 -3.52014482e-01\\n-3.83595258e-01 -7.46418685e-02 1.78375453e-01 -3.41993362e-01\\n-1.23027631e-03 -1.00328781e-01 -7.07307339e-01 2.75399357e-01\\n-2.53393620e-01 3.64375673e-02 6.64788336e-02 2.21344620e-01\\n-3.87919247e-01 -5.72460331e-02 2.36454979e-01 1.10961460e-02\\n-3.45647871e-01 -1.05850652e-01 5.25349937e-02 -8.86347532e-01\\n1.55046687e-01 -1.84995215e-02 -8.42969492e-02 -5.45322634e-02\\n-1.12192012e-01 -5.35455704e-01 7.25509077e-02 -3.15937251e-01\\n-8.84019658e-02 5.44081107e-02 -1.66798398e-01 -4.16263640e-01\\n1.10183090e-01 -1.43082306e-01 -2.10641041e-01 4.75535512e-01\\n-3.96454722e-01 2.85692662e-01 1.84612498e-02 6.07071631e-02\\n7.44938180e-02 -3.49799603e-01 1.91862211e-01 -2.67542511e-01\\n-4.95829493e-01 -1.78072289e-01 -3.67329121e-01 -2.96086609e-01\\n8.14664289e-02 -3.12245935e-01 -1.74484134e-01 7.75493979e-02\\n2.32949644e-01 8.38425308e-02 4.21654545e-02 -2.32604727e-01\\n8.63509849e-02 -3.43068957e-01 1.83110610e-01 -2.44171441e-01\\n5.30973636e-02 2.89008021e-02 1.71390250e-01 -6.64871410e-02\\n3.74223739e-02 -2.35376567e-01 5.74966133e-01 -1.53920859e-01\\n-3.49559069e-01 -1.04342707e-01 7.04299510e-02 1.24070220e-01\\n2.55497396e-01 -4.30946201e-01 4.05236445e-02 1.78632215e-01\\n1.33616030e-01 1.31333634e-01 2.80095488e-01 -5.69849387e-02\\n-8.63757730e-02 2.42840976e-01 -5.11824846e-01 1.43571794e-01\\n7.96909571e-01 1.77939326e-01 7.18609989e-02 6.05499819e-02\\n1.81018770e-01 4.02316600e-01 6.38038993e-01 8.03692117e-02\\n-8.94313008e-02 3.78729910e-01 2.54143942e-02 -4.94806111e-01\\n-1.53936997e-01 -1.24556318e-01 -1.65885419e-01 -3.10592711e-01\\n5.07842422e-01 4.50095177e-01 -4.56072479e-01 -2.62396842e-01\\n-4.25777882e-02 -3.79710458e-02 1.31090984e-01 -4.72590178e-02\\n-3.33616696e-02 -2.39915505e-01 5.41548729e-01 1.03328619e-02\\n2.61459380e-01 5.08723617e-01 -2.03432173e-01 -3.36867899e-01\\n-1.22156158e-01 1.53257295e-01 1.90806285e-01 3.22494507e-01\\n-1.88110047e-03 2.31287509e-01 -6.89021647e-02 1.40960693e-01\\n-4.16624993e-02 3.67468186e-02 9.78776366e-02 -2.16810256e-02\\n1.78294957e-01 1.34170339e-01 2.24142402e-01 3.53844345e-01\\n2.83491403e-01 5.09663463e-01 2.05206499e-01 1.93228442e-02\\n4.50385094e-01 6.47124827e-01 3.66184801e-01 2.06926152e-01\\n1.13189239e-02 8.03468227e-02 -1.44448383e-02 -6.38912618e-02\\n3.67286593e-01 3.50150526e-01 1.92237616e-01 8.29155922e-01\\n3.20328772e-01 1.46881089e-01 6.99906826e-01 -5.96941710e-01\\n-4.20468062e-01 8.05909708e-02 4.10809785e-01 -2.56357491e-01\\n-1.08847864e-01 1.64834797e-01 -3.91001582e-01 2.53619045e-01\\n-4.20835257e-01 -1.14055730e-01 -5.26589155e-02 -5.44624403e-02\\n8.05206224e-02 -3.90173309e-02 -2.50499636e-01 5.13612516e-02\\n-2.59468019e-01 -1.98543802e-01 -2.86656767e-01 -8.94601867e-02\\n-3.80045712e-01 -1.51607081e-01 -6.88789226e-03 -1.48545370e-01\\n-6.99518668e-03 -4.33371812e-01 -2.12975621e-01 -1.95745975e-02\\n3.66152406e-01 -1.46261647e-01 -6.44944459e-02 -1.86123356e-01\\n-2.24388354e-02 3.83276045e-01 6.65033698e-01 -4.60890755e-02\\n1.84980780e-01 -2.06447378e-01 -2.17129931e-01 7.94143975e-02\\n6.88401535e-02 3.72105353e-02 4.87285219e-02 5.31002820e-01\\n-3.98630857e-01 -1.53744547e-03 1.11140005e-01 4.10521388e-01\\n-4.35798645e-01 -7.39716738e-02 -1.11880824e-01 3.03153604e-01\\n1.25727981e-01 1.97139785e-01 -3.18615019e-01 2.19469562e-01\\n-3.36157531e-01 -5.87719262e-01 3.97367001e-01 -1.42112792e-01\\n2.18525846e-02 1.52800441e-01 2.63327748e-01 1.58383697e-01\\n-2.67522991e-01 -7.42008686e-02 5.45852892e-02 3.68455827e-01\\n1.27233967e-01 3.65198791e-01 -3.58217061e-01 -5.32075502e-02\\n-1.87639788e-01 2.50360608e-01 -1.01450682e-02 1.93004787e-01\\n-1.92182183e-01 3.18927675e-01 1.16276972e-01 1.96226478e-01\\n1.61264166e-01 -7.74201006e-03 -1.50772929e-01 -3.40490013e-01\\n-2.49975815e-01 -1.55658543e-01 1.83007151e-01 -1.55558446e-02\\n1.60224006e-01 -4.80183542e-01 -4.78968434e-02 -8.43011364e-02\\n-1.86920613e-01 -4.58354652e-01 -5.21401502e-02 1.21805631e-02]]',\n", + " 'About our client Our client is one of the international leading providers of secure communication platforms and solutions for the next generation of mobile communication. Your responsibilities Regular execution of performance tests Automation of performance testing environments Analysis and presentation of test results, suggestions for improvements Bottleneck analysis, database queries optimization, etc. Full cooperation with the development team to improve the overall product performance Dimensioning and capacity planning for the solution Your profile Master university degree in computer science or equivalent work experience At least 3 years of experience with performance testing Excellent analytic thinking and preciseness Advanced Java knowledge with code profiling, JVM monitoring and tuning Working experience with MySQL/Percona/MariaDB and good knowledge of their internals (e.g., InnoDB engine, Galera replication, etc.) Working knowledge of Linux OS and its monitoring tools Experience with infrastructure deployment automation (e.g. monitoring and deployment using Puppet/Chef/Ansible and Graphite) Knowledge of statistics Fluent in English Your chance Are you interested? Then apply now! Ort: Zürich Spezialisierung: JAVA Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1297',\n", + " '[\"Presentations\", \"Communications\", \"Infrastructure\", \"Cooperation\"]',\n", + " '[\"Galera\", \"MySQL\", \"Automation\", \"Tooling\", \"Puppet (Configuration Management Tool)\", \"Capacity Planning\", \"Computer Science\", \"Statistics\", \"Database Queries\", \"Linux\", \"E (Programming Language)\", \"Test Automation\", \"MariaDB\", \"Executable\", \"Chef (Configuration Management Tool)\", \"Analytical Thinking\", \"InnoDB\", \"Performance Testing\", \"Java Virtual Machine (JVM)\", \"Ansible\", \"Secure Network Communications\", \"Dimensioning\", \"Graphite (Software)\", \"Java (Programming Language)\", \"Bottleneck Analysis\", \"SQL (Programming Language)\", \"Profiling (Computer Programming)\", \"Query Optimization\"]',\n", + " \"['English', 'Central Khmer', 'Latin']\"],\n", + " ['125',\n", + " 'big data/spark engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.08247542e-01 2.31795996e-01 5.07690728e-01 2.15499327e-01\\n6.39641523e-01 -1.80837587e-01 -2.42910534e-01 2.05270618e-01\\n6.81032613e-02 -4.56488371e-01 -5.55087626e-02 -2.32204020e-01\\n-1.20247580e-01 6.25318512e-02 -6.54416382e-02 3.83164227e-01\\n3.54464412e-01 1.28045883e-02 -6.50804639e-02 3.72120678e-01\\n3.64708528e-02 -6.95785508e-02 5.09506613e-02 8.33609819e-01\\n2.60781795e-01 -5.56108989e-02 -2.40294524e-02 1.22337840e-01\\n-2.59663582e-01 -1.85927868e-01 3.39075804e-01 1.20859765e-01\\n-2.21114069e-01 -4.45232630e-01 6.20348006e-02 1.99150205e-01\\n-2.44912326e-01 2.15405375e-02 -7.17084408e-02 1.55942947e-01\\n-4.20176148e-01 -1.84351593e-01 -1.27598912e-01 3.70255001e-02\\n-3.22722137e-01 -3.58836293e-01 -2.12725252e-02 -1.29031867e-01\\n7.81545714e-02 2.39076838e-02 -4.76100028e-01 2.71858841e-01\\n-2.19930261e-01 -2.26962656e-01 2.40505785e-01 6.76981926e-01\\n3.15245613e-02 -4.26282018e-01 -5.00358462e-01 -3.36714119e-01\\n7.11330026e-02 -8.99462774e-02 1.01468429e-01 -3.49203229e-01\\n2.86823690e-01 5.11036813e-03 -3.29463743e-02 2.20849037e-01\\n-8.27230453e-01 -4.34976295e-02 -2.67707199e-01 1.61274448e-02\\n-5.21562338e-01 -9.45441127e-02 -2.56457448e-01 -1.18740499e-01\\n-9.07180607e-02 5.16877532e-01 9.28491652e-02 1.61562085e-01\\n-2.50543594e-01 2.67287999e-01 -2.63746709e-01 3.06004971e-01\\n2.68332720e-01 2.12616652e-01 3.10116589e-01 3.45089376e-01\\n-4.86461341e-01 4.67585921e-01 1.73763216e-01 -3.26676279e-01\\n2.86604017e-01 9.29690376e-02 3.42475533e-01 2.82518640e-02\\n2.00618356e-01 2.09291637e-01 -1.67347252e-01 3.52929175e-01\\n2.15926558e-01 -3.59394193e-01 2.40589213e-02 -1.39136046e-01\\n-8.94624740e-03 -8.02108049e-02 2.68610194e-03 1.16329640e-01\\n-3.86477530e-01 3.51273298e-01 1.12071887e-01 -2.35143930e-01\\n-1.11597247e-01 -4.56508964e-01 -8.82475153e-02 -7.13257864e-03\\n7.22553954e-03 1.70091420e-01 2.63477266e-01 1.57337874e-01\\n1.93398982e-01 1.84208490e-02 1.67795181e-01 8.52066278e-01\\n-7.12043941e-02 9.80755687e-02 -1.96436554e-01 4.20176178e-01\\n2.18004972e-01 -3.30089569e-01 2.71699727e-01 1.91834748e-01\\n-3.90764922e-02 -1.49430513e-01 -2.48072535e-01 2.96457291e-01\\n-2.70407964e-02 -1.33645415e-01 -2.52736926e-01 1.90905735e-01\\n2.73119640e-02 -3.35931003e-01 6.63635075e-01 7.38568678e-02\\n1.50661618e-01 -9.29107517e-02 7.01680407e-03 -1.71091527e-01\\n-1.09687790e-01 2.61298299e-01 5.63690402e-02 2.86445141e-01\\n-3.10963452e-01 -2.33559132e-01 -1.18632220e-01 2.47523487e-01\\n-3.84164572e-01 9.65968072e-02 -1.85459137e-01 -6.83654472e-02\\n1.68779731e-01 4.74224575e-02 -3.62813234e-01 8.47976506e-02\\n-1.10326432e-01 -1.93157047e-01 4.94038463e-02 2.83295870e-01\\n-2.21056104e-01 1.97139919e-01 -6.36348967e-04 -3.73530276e-02\\n6.13529980e-01 2.79359728e-01 2.92255282e-01 -2.46288702e-02\\n2.87658304e-01 -1.13076717e-01 1.26443684e-01 1.78609192e-01\\n-6.73825681e-01 3.84390712e-01 -4.76324596e-02 -1.87373936e-01\\n7.13876486e-02 -1.08887777e-02 3.16349804e-01 -2.61249602e-01\\n3.80762760e-03 -1.58052832e-01 -3.62426072e-01 -2.40824223e-01\\n-2.10803747e-01 -4.16489318e-02 3.91981602e-01 -5.35388112e-01\\n-5.43197468e-02 3.18961173e-01 -5.31809092e-01 -1.89905226e-01\\n1.56166509e-01 2.22047120e-01 1.52261883e-01 -1.55416057e-02\\n-9.38130617e-02 -5.70211112e-01 5.52827902e-02 -4.17227030e-01\\n-3.02402854e-01 2.57823113e-02 -2.61736900e-01 1.22255102e-01\\n4.69229883e-03 3.12589668e-03 -1.50731832e-01 1.44857287e-01\\n-3.02397251e-01 -1.35404151e-02 1.96527883e-01 8.20491910e-02\\n3.93124580e-01 6.33319318e-02 -3.84598017e-01 4.44820821e-01\\n-3.26753199e-01 5.01536369e-01 2.10532233e-01 -9.37517285e-01\\n5.99034309e-01 3.00365567e-01 -6.07616305e-02 -3.85130256e-01\\n4.78431821e-01 -4.76025194e-01 -4.54422436e-04 1.40490100e-01\\n-3.14652026e-01 -2.13530809e-01 2.88239837e-01 -1.05826735e-01\\n-2.49496639e-01 6.47490978e-01 -2.94865551e-03 1.03766032e-01\\n2.51507998e-01 -2.94830978e-01 -1.39646128e-01 -1.65035501e-02\\n-1.64638251e-01 -2.78221220e-01 -6.84535146e-01 4.89793718e-03\\n-1.21157438e-01 -4.90176737e-01 -1.67851076e-01 -4.06260729e-01\\n-2.32010588e-01 -2.90079236e-01 -2.38044009e-01 2.04944164e-01\\n2.57651508e-01 1.32148013e-01 -1.57518879e-01 4.91404906e-02\\n-6.41166419e-02 -6.21647358e-01 -3.49879749e-02 1.27177209e-01\\n4.32576746e-01 2.83053100e-01 1.54670790e-01 -7.17661828e-02\\n1.62650466e-01 6.25156999e-01 -3.22139174e-01 -3.96485031e-01\\n6.50667548e-02 1.96854800e-01 -8.17412436e-02 -1.56226560e-01\\n1.42870292e-01 3.13650787e-01 -2.37995625e-01 8.12020153e-03\\n7.19960034e-03 1.27064735e-02 3.52273554e-01 7.44335353e-03\\n-1.96977645e-01 -2.01293483e-01 -1.00268573e-01 2.13205367e-01\\n-6.13397896e-01 -1.86979070e-01 5.65048814e-01 1.99828178e-01\\n3.32873575e-02 1.32529378e-01 2.04330534e-01 1.70596018e-02\\n-2.83830673e-01 -1.72008872e-01 3.88564467e-01 9.60233808e-02\\n1.48682773e-01 1.01653591e-01 8.36778525e-03 -6.38726473e-01\\n-3.40883303e+00 -2.30462015e-01 1.84052646e-01 -2.47338727e-01\\n2.39281848e-01 -2.14260519e-01 6.28921166e-02 -4.88664620e-02\\n-2.50998348e-01 3.40968892e-02 -1.72814429e-01 -1.73174322e-01\\n2.20826194e-02 1.49629354e-01 1.82101011e-01 2.37171710e-01\\n1.88028246e-01 -1.56021446e-01 2.13607568e-02 3.91514540e-01\\n-2.00857073e-01 -6.71127081e-01 1.52192131e-01 4.35928106e-02\\n1.94052905e-01 9.66057703e-02 -3.76970947e-01 -4.61179279e-02\\n-3.19799662e-01 -2.32141256e-01 1.25606693e-02 -3.38132262e-01\\n-1.87689662e-01 3.17041159e-01 2.41352722e-01 -1.76207393e-01\\n1.05921969e-01 -2.89399385e-01 -1.63604558e-01 -4.16996300e-01\\n6.34419918e-02 -5.93445301e-01 7.74564892e-02 -1.81356862e-01\\n6.52160227e-01 -3.05068463e-01 1.55527562e-01 7.44187012e-02\\n2.40790248e-01 2.14253932e-01 1.56252593e-01 2.59192847e-02\\n-1.88618124e-01 -2.93381065e-01 -1.14334136e-01 -1.74804360e-01\\n5.98532677e-01 5.03645062e-01 -1.44101962e-01 1.92568935e-02\\n-1.18800271e-02 -1.98447704e-01 -4.21580702e-01 -3.33689809e-01\\n-1.49552509e-01 -1.68571800e-01 -6.41294360e-01 -4.03473020e-01\\n-1.93158671e-01 -7.17165470e-02 -1.02564342e-01 7.06679583e-01\\n-2.60323644e-01 -3.44354242e-01 -5.81443906e-02 -4.37046498e-01\\n2.54761070e-01 -2.23346427e-01 4.53234240e-02 -6.72288612e-02\\n-2.28335977e-01 -5.45118570e-01 1.18654244e-01 -8.90654922e-02\\n-1.29130721e-01 -1.91976547e-01 4.35904302e-02 -1.30162477e-01\\n-3.13044608e-01 -5.64507604e-01 4.34636861e-01 3.27280760e-02\\n3.68811429e-01 7.97757208e-02 4.23314095e-01 -1.31813101e-02\\n3.58244538e-01 -2.07008831e-02 -1.42248303e-01 -4.10258651e-01\\n7.46989623e-02 -4.04140055e-02 4.83184099e-01 -2.29483664e-01\\n1.53589509e-02 4.71685380e-02 -2.02130735e-01 2.41549257e-02\\n3.12455058e-01 -8.80870968e-03 1.01002783e-01 -1.03169873e-01\\n3.06556165e-01 -3.95881921e-01 -1.58473164e-01 1.95368439e-01\\n1.25041083e-01 6.30329788e-01 -4.44194600e-02 -3.73514652e-01\\n-1.46184251e-01 3.57682467e-01 -4.06747162e-02 -1.06483370e-01\\n-2.20282629e-01 1.07288979e-01 -2.77346194e-01 2.60700732e-01\\n-1.05116796e-03 -1.46603674e-01 -3.13481987e-01 -1.05250806e-01\\n-8.19871277e-02 2.57958502e-01 2.72276282e-01 7.40796477e-02\\n-5.79699464e-02 -2.79590666e-01 -8.36595986e-03 1.29918814e-01\\n3.14173222e-01 4.64640170e-01 2.27505267e-01 -2.08548665e-01\\n-2.32695863e-02 3.49206805e-01 -2.71768689e-01 2.09220588e-01\\n-2.37268269e-01 1.23735614e-01 -6.00836456e-01 -2.02454776e-01\\n-2.57654965e-01 -4.19843495e-01 1.61877856e-01 3.73372495e-01\\n1.47686422e-01 -7.84001648e-02 2.51766928e-02 -4.45630103e-01\\n2.62499958e-01 1.74096867e-01 1.44732207e-01 3.52637023e-02\\n8.28053802e-03 6.93126500e-01 6.27800226e-02 -1.89244717e-01\\n-1.40930235e-01 2.63986681e-02 -1.18499637e-01 -3.10618460e-01\\n1.01215035e-01 -5.47829568e-01 -1.92491114e-01 4.03863847e-01\\n2.08225057e-01 -2.50975668e-01 -2.79967129e-01 3.37112248e-01\\n-2.73203887e-02 -2.58915812e-01 -2.57701218e-01 -7.27014709e-03\\n3.25961351e-01 1.10789746e-01 2.66634971e-01 -5.23473382e-01\\n-1.57746822e-01 7.51889646e-02 4.70008366e-02 4.34031337e-01\\n1.26972437e-01 1.50932103e-01 4.49455380e-02 -1.37006268e-01\\n5.22908270e-01 8.27380568e-02 -1.57272160e-01 -4.54451777e-02\\n8.01657885e-02 -1.76417619e-01 -4.59239244e-01 1.13194317e-01\\n7.02392012e-02 -2.99876750e-01 1.39320996e-02 1.05446279e-01\\n1.68887526e-01 1.60032026e-02 -6.18985772e-01 -2.84545004e-01\\n-3.91011119e-01 -1.10534370e-01 7.91987628e-02 -5.80472112e-01\\n3.66193615e-03 -1.08854502e-01 -5.77886045e-01 2.70096213e-01\\n-1.18214250e-01 -8.08485970e-02 7.01831430e-02 7.14182854e-02\\n-1.63745910e-01 -1.54541060e-01 8.73373747e-02 2.95210600e-01\\n-3.60262126e-01 -2.64701009e-01 5.05418852e-02 -1.01634669e+00\\n1.65685445e-01 8.94840062e-02 -1.86727986e-01 1.20674014e-01\\n-1.61471069e-02 -6.81688607e-01 9.64287594e-02 -4.21150506e-01\\n-1.69627607e-01 -1.22993952e-02 -2.87024677e-01 -3.04457426e-01\\n1.36308819e-01 -4.26788777e-02 -3.04632604e-01 4.38294202e-01\\n-3.58185768e-01 3.17368209e-01 -6.32788911e-02 6.49528354e-02\\n8.12146217e-02 -1.67480290e-01 1.69395477e-01 -2.62316048e-01\\n-4.40227717e-01 -3.40559959e-01 -2.70070314e-01 -3.02517295e-01\\n-2.26188637e-02 -3.35748136e-01 -9.12295952e-02 -2.92932168e-02\\n4.22660530e-01 1.73581809e-01 -1.81824028e-01 -3.55043352e-01\\n8.87860209e-02 -4.96617258e-01 7.79114738e-02 -1.24089554e-01\\n-6.62564859e-02 -1.08450115e-01 1.38393477e-01 6.18134141e-02\\n1.42531097e-01 -3.21131945e-01 4.38298017e-01 -3.29791814e-01\\n-2.69131243e-01 -1.64394200e-01 6.86998740e-02 8.81655738e-02\\n2.38311306e-01 -3.85418922e-01 3.63033004e-02 3.03153992e-01\\n2.45654374e-01 6.42747134e-02 2.28441432e-01 -1.31591290e-01\\n-2.38574892e-02 2.96150863e-01 -3.68910462e-01 1.41023010e-01\\n8.46527934e-01 9.48617011e-02 1.38801381e-01 2.37876385e-01\\n2.41052955e-01 2.72992074e-01 4.89751935e-01 -3.61392908e-02\\n-6.80491403e-02 3.30488145e-01 6.22310676e-02 -3.47451061e-01\\n-5.90303466e-02 -1.19871147e-01 -1.50533020e-01 -4.29576218e-01\\n6.02295578e-01 3.78315151e-01 -4.88971174e-01 -2.67461360e-01\\n-1.89870849e-01 -1.06084853e-01 2.92157590e-01 -7.85756484e-02\\n-4.74730581e-02 -1.06530204e-01 4.39867526e-01 -1.10935733e-01\\n2.83126771e-01 5.72443724e-01 -2.03138709e-01 -3.19971889e-01\\n-2.17168313e-02 1.56396240e-01 2.47604162e-01 4.53571707e-01\\n-2.89345145e-01 2.36071065e-01 -2.18012519e-02 1.60131022e-01\\n-1.46323591e-01 1.61584631e-01 2.49932110e-01 1.10463522e-01\\n2.26018339e-01 -3.17756832e-02 4.92574185e-01 4.95783627e-01\\n2.40881205e-01 4.22222733e-01 4.23355401e-01 -2.91714929e-02\\n4.50779796e-01 6.24181032e-01 3.39135319e-01 8.69047195e-02\\n-2.99975798e-02 1.37670726e-01 1.48635849e-01 -9.99520719e-02\\n2.79643744e-01 4.86781001e-01 1.13222256e-01 8.68086696e-01\\n3.92106950e-01 4.04552341e-01 6.62222564e-01 -6.17080808e-01\\n-3.77365589e-01 3.98384109e-02 4.73802269e-01 -3.90451163e-01\\n-3.75041105e-02 8.43430758e-02 -2.81165451e-01 1.56228215e-01\\n-5.06851017e-01 -1.84138820e-01 -4.34812456e-02 5.43425195e-02\\n7.20871836e-02 -9.52041447e-02 -2.14099675e-01 1.25054121e-01\\n-3.10577769e-02 -1.01137742e-01 -3.96161079e-01 -8.47912580e-02\\n-2.83776402e-01 -4.96029779e-02 1.22009665e-02 -4.17151637e-02\\n-4.38448712e-02 -3.62115920e-01 -2.25929543e-02 -6.75187707e-02\\n2.08292559e-01 -1.34927928e-01 -1.33137569e-01 -1.28726855e-01\\n2.89957732e-01 1.93753809e-01 5.19462049e-01 6.83760494e-02\\n5.50446399e-02 -2.84820199e-01 -2.54280925e-01 1.36913940e-01\\n1.29251897e-01 4.51861992e-02 -1.93468109e-02 3.51282120e-01\\n-2.71862447e-01 -1.60170257e-01 2.04873756e-01 2.48101294e-01\\n-3.30449104e-01 4.29738909e-02 -1.65898025e-01 1.13079593e-01\\n5.22401296e-02 1.53852731e-01 -2.12032989e-01 -3.13155726e-02\\n-2.46620074e-01 -6.13209367e-01 3.97020102e-01 -1.75713718e-01\\n-9.39587429e-02 1.02836251e-01 2.56085634e-01 2.26512343e-01\\n-3.32940012e-01 -5.96431680e-02 2.94785947e-04 1.58428833e-01\\n1.20609440e-02 2.99338281e-01 -1.22441150e-01 -2.82858133e-01\\n-3.26080024e-01 2.29760721e-01 -6.99198544e-02 1.74302936e-01\\n-9.48989391e-03 3.76675904e-01 -4.39033583e-02 1.23578668e-01\\n3.59761894e-01 4.43524159e-02 -2.57656753e-01 -2.76704818e-01\\n-2.25956440e-01 -6.30828291e-02 -3.47759835e-02 -2.65054926e-02\\n1.74919456e-01 -3.04374039e-01 -1.42208651e-01 -1.03374600e-01\\n-1.42178416e-01 -3.70490432e-01 2.73623429e-02 -1.37706369e-01]]',\n", + " 'Unit8 is looking for Big Data/Spark Engineer to join our team. You will use Spark (pyspark) and a full set of other Big Data tools to understand the data and drive the development of ETL pipelines in the financial sector in Zurich. Our perfect candidate has already a background in working with financial data and data modelling or is willing to pick up financial domain knowledge. He/she is capable of translating complex technical and business requirements into readable, maintainable and efficient Spark pipelines that fit in the bigger picture of complete data platform. RequirementsWhat You’ll Do Design, build, maintain, and troubleshoot data pipelines that are relied on for both production and analytics applications using modern tools like Spark/Cloudera. Use your skills in Big Data and basic Data Science to harness the heterogenous financial data and enable other teams to use it Use software best practices in continuous integration and delivery, supervise code and data evolution (code reviews, versioning) Drive optimization, testing and tooling to improve data quality. Closely collaborate with other software engineers, data scientists and business owners, learning from them but also driving the discussions to analyze the nature of current problems in order to propose, implement and test proper solutions Work in multi-functional agile teams to continuously experiment, iterate and deliver on new product objectives. Who You Are You know how to work with high volume heterogeneous data, preferably with distributed systems such as Hadoop You know how to write distributed services in Python/jvm based languages You are happy to work with more junior developers - code reviewing, mentoring You are happy to work with business stakeholders - requirement gathering, prioritization You are knowledgeable about data modeling, data access, and data storage techniques. You appreciate agile software processes, data-driven development, reliability, and responsible experimentation You understand the value of teamwork. BenefitsWhat We Offer Competitive salary Sharing our profit - we offer equity Yearly bonus depending on performance of the company Work with state-of-the-art technology on projects with impact Challenging work close to a customer inside an experienced 10x engineering team Tailor-made mentorship program Dedicated budget for training 10% of the time for self-development Who We AreUnit8 is a Swiss-based startup focused on solving problems of big industries like chemical, pharma, automotive and finance. Our team comprised of world-class experts in ML and Software Engineering who previously worked for Sillicon Valley companies like Google, Amazon, Palantir or Microsoft. We work with some of the biggest companies in the world to solve the problems that directly affect their business. Apart from that, Unit8 dedicates a part of resources and time on things that deeply matter to us - that includes collaboration on pro-bono and engineering for good cases.',\n", + " '[\"Complex Problem Solving\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Mentorship\", \"Supervision\", \"Reliability\", \"Prioritization\"]',\n", + " '[\"Distributed File Systems\", \"Data Quality\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Stakeholder Requirements\", \"Data Modeling\", \"Analytic Applications\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Pyspark\", \"Naturalization\", \"Python (Programming Language)\", \"Maintainability\", \"Data Pipeline\", \"Translations\", \"Experimentation\", \"Iterators\", \"Pipelining\", \"Software Engineering\", \"Extract Transform Load (ETL)\", \"Building Design\", \"NetApp Data Storage\", \"Data Science\", \"Budgeting\", \"Business Requirements\", \"Financial Data\", \"Finance\", \"Logical Data Models\", \"Readability\", \"Close Work Orders\", \"Big Data\", \"Code Review\", \"Equities\", \"Java Virtual Machine (JVM)\", \"Data Management Platforms\", \"Resourcing\", \"Agile Model Driven Development\", \"New Product Development\", \"Process Driven Development\", \"Agile Unified Process\"]',\n", + " \"['English']\"],\n", + " ['68',\n", + " 'data analyst',\n", + " 'Chiasso',\n", + " 'Film Production & Distribution',\n", + " '',\n", + " '[[-3.38149607e-01 2.12852880e-01 5.54565072e-01 7.74446726e-02\\n5.90422690e-01 -5.07920608e-02 -1.11888032e-02 1.51384220e-01\\n-8.76617357e-02 -3.32557529e-01 -6.27142489e-02 -1.80280969e-01\\n6.76233880e-03 1.01418659e-01 4.53740098e-02 4.77790743e-01\\n2.11669892e-01 -8.31534807e-03 -1.46940216e-01 3.01756352e-01\\n2.34398499e-01 1.00015663e-02 2.94445455e-03 6.40289307e-01\\n4.87266839e-01 -4.11698371e-02 -1.35547474e-01 -1.15632471e-02\\n-2.72088438e-01 -2.69771934e-01 4.78497654e-01 2.26774830e-02\\n-2.30391636e-01 -2.26873815e-01 -5.37410472e-03 8.19530264e-02\\n-3.66986781e-01 -1.10001275e-02 -1.12134963e-01 1.66520134e-01\\n-3.81010771e-01 -2.20596179e-01 -1.18746981e-01 -2.79099476e-02\\n-4.60540146e-01 -3.57416749e-01 -1.34639174e-01 -3.96952853e-02\\n1.07431635e-02 6.70751631e-02 -4.74763513e-01 3.79682690e-01\\n-2.19794884e-01 -2.62366831e-01 1.70072228e-01 8.25430393e-01\\n1.97134599e-01 -4.92436260e-01 -3.56618553e-01 -3.26189071e-01\\n1.21640824e-01 -1.40193626e-01 2.07844585e-01 -2.25834176e-01\\n4.23753589e-01 -8.02325010e-02 -6.48332611e-02 3.46908212e-01\\n-7.65331745e-01 2.92398743e-02 -2.41225988e-01 1.97413983e-03\\n-3.52103800e-01 1.34175017e-01 -5.27944386e-01 -2.52336293e-01\\n-5.89859448e-02 5.41121423e-01 1.16814785e-02 6.59462363e-02\\n-1.60551324e-01 1.47678450e-01 -2.86848962e-01 2.11204022e-01\\n1.85841709e-01 2.08210677e-01 3.45193595e-01 2.67590165e-01\\n-5.16483963e-01 3.50221336e-01 3.85842025e-01 -3.70797306e-01\\n2.73933381e-01 1.79630637e-01 4.03135926e-01 1.11813337e-01\\n8.55037570e-02 1.96594685e-01 -1.18598402e-01 2.03542039e-01\\n2.36077592e-01 -2.03969762e-01 -3.04210116e-04 -4.88952287e-02\\n-3.87686640e-02 -1.18685454e-01 -4.73618582e-02 8.41772631e-02\\n-2.95252591e-01 4.75520045e-01 -5.04566655e-02 -2.24889025e-01\\n-4.40934524e-02 -5.03349841e-01 -5.79555593e-02 -7.18935728e-02\\n1.06629334e-01 3.77004594e-01 2.57671356e-01 2.03708544e-01\\n2.26748288e-01 6.77864030e-02 2.86337733e-01 7.93014944e-01\\n-4.58151586e-02 1.05087906e-01 -2.63087988e-01 3.66162360e-01\\n1.94100082e-01 -1.00710645e-01 1.58674389e-01 7.72588551e-02\\n-1.75476432e-01 -1.01312019e-01 -3.49074513e-01 2.66808182e-01\\n-2.00405166e-01 -2.49301448e-01 -2.49950260e-01 1.12715952e-01\\n-1.99616060e-01 -4.86044198e-01 4.49547589e-01 -6.23036325e-02\\n2.18831345e-01 -2.22845241e-01 3.25092988e-04 -2.56824773e-02\\n-5.02134785e-02 3.97722930e-01 9.20681432e-02 7.24966526e-02\\n-2.12524772e-01 -3.15903634e-01 -1.68724030e-01 2.24141508e-01\\n-2.58459985e-01 2.93522105e-02 -1.04997247e-01 1.28438342e-02\\n2.19086289e-01 2.19529375e-01 -4.73772287e-01 1.04929976e-01\\n-1.11654110e-01 -3.47639292e-01 -2.49251593e-02 3.37305129e-01\\n-1.47402957e-01 1.48362964e-01 6.31393120e-02 -2.27549553e-01\\n6.03551209e-01 1.74302712e-01 3.45455557e-01 7.61069506e-02\\n2.94259906e-01 -2.22531080e-01 1.46529347e-01 2.37130284e-01\\n-6.23151600e-01 4.43485528e-01 -1.55365273e-01 -3.56491953e-01\\n1.28196016e-01 6.42251447e-02 3.26360881e-01 -2.52412796e-01\\n1.82596043e-01 -1.94200411e-01 -2.15825140e-01 -5.06402910e-01\\n-1.79254591e-01 2.48463843e-02 4.18379486e-01 -4.65203822e-01\\n3.60530540e-02 2.00677574e-01 -4.74377960e-01 -2.17853859e-01\\n2.16211841e-01 1.11762360e-01 1.56247512e-01 2.12106317e-01\\n-2.75916252e-02 -4.66336310e-01 1.60286739e-01 -4.38865513e-01\\n-4.60602939e-01 1.90611318e-01 -3.54077667e-01 1.30366296e-01\\n1.15324669e-01 1.36907201e-03 -9.63207185e-02 4.72051911e-02\\n-3.68924022e-01 -4.07267287e-02 1.78667024e-01 1.43545598e-01\\n2.61467367e-01 6.21263012e-02 -4.75833744e-01 5.70281804e-01\\n-2.78852820e-01 4.67560172e-01 2.21588627e-01 -9.83033001e-01\\n4.90477622e-01 1.80314779e-01 -2.98965480e-02 -1.99029759e-01\\n5.82079113e-01 -3.86446536e-01 -7.63201341e-02 1.20203041e-01\\n-1.18384190e-01 -1.57224387e-01 2.95399398e-01 -1.86327919e-01\\n-2.44353712e-01 6.01786971e-01 2.36909300e-01 1.46838039e-01\\n2.53157824e-01 -1.61264494e-01 -3.31677824e-01 5.45360409e-02\\n-1.36292875e-01 -2.76681393e-01 -5.78074634e-01 1.07087284e-01\\n-1.16597712e-01 -5.29382527e-01 -8.17509964e-02 -5.05293310e-01\\n-1.53840512e-01 -5.05189955e-01 -1.28748119e-01 2.08358571e-01\\n2.42010638e-01 2.35019431e-01 -1.50914252e-01 1.24556366e-02\\n-2.38559693e-02 -5.87309718e-01 -1.85862094e-01 4.32619378e-02\\n3.91286910e-01 3.21221560e-01 1.00895330e-01 -2.10041255e-02\\n1.29592255e-01 5.88878989e-01 -2.91328520e-01 -3.25157017e-01\\n2.62268573e-01 8.25000331e-02 -1.79945394e-01 -2.94671088e-01\\n8.03272799e-02 2.45287284e-01 -1.09925836e-01 1.72894657e-01\\n9.51674953e-02 2.50143111e-02 2.77092904e-01 -7.10275099e-02\\n-1.68340385e-01 -1.42645225e-01 -1.31187692e-01 3.19387704e-01\\n-4.32836324e-01 -1.90610811e-01 5.88323772e-01 2.30586082e-01\\n4.99614514e-02 1.35580510e-01 8.12382028e-02 -6.93436638e-02\\n-3.48507524e-01 -1.04025051e-01 2.11222559e-01 5.10759801e-02\\n1.81408748e-01 7.28858560e-02 -3.54932398e-02 -5.88429272e-01\\n-3.40289950e+00 -3.32470387e-01 7.85404146e-02 -2.74100631e-01\\n2.18741745e-01 -2.61070609e-01 1.34377778e-01 8.68248101e-03\\n-3.67111355e-01 3.17968987e-02 -2.10541129e-01 -1.39615908e-01\\n7.43147358e-02 2.43852407e-01 9.69320983e-02 1.88089594e-01\\n1.71452463e-02 -1.96222171e-01 -1.54119385e-02 4.33891565e-01\\n-5.51851317e-02 -6.21944904e-01 1.07423216e-01 1.45503029e-01\\n2.11701140e-01 -6.25489056e-02 -4.39763427e-01 1.17345765e-01\\n-2.64257044e-01 -2.60373443e-01 1.36874542e-01 -1.29512265e-01\\n-2.35253349e-01 3.12920541e-01 1.41774639e-01 -9.51308757e-02\\n9.80277210e-02 -3.77572894e-01 -3.46104093e-02 -4.51977998e-01\\n3.52210701e-02 -6.51019931e-01 6.35705218e-02 -1.31862368e-02\\n5.93065321e-01 -2.32162029e-01 2.14713529e-01 9.54260901e-02\\n1.53369650e-01 8.50713179e-02 5.72051294e-02 -3.30890007e-02\\n-3.70765150e-01 -2.65341312e-01 -8.62429217e-02 -2.46560752e-01\\n7.17375338e-01 2.86840379e-01 -3.09495717e-01 4.23219353e-02\\n1.89084455e-01 -1.71135068e-01 -4.30560231e-01 -4.61305261e-01\\n-1.93452820e-01 -9.79751814e-03 -5.64219832e-01 -4.34993476e-01\\n-1.19108967e-01 -1.75926939e-01 -1.74924299e-01 6.28420591e-01\\n-2.00322986e-01 -3.21912527e-01 -5.06970175e-02 -4.38216895e-01\\n3.58603299e-01 -1.24829613e-01 6.04954697e-02 -1.92125201e-01\\n-4.47905302e-01 -3.36468965e-01 2.69833028e-01 4.95460741e-02\\n-2.17165872e-01 -5.96456288e-04 1.00138232e-01 -2.12977976e-01\\n-5.15004516e-01 -4.27742541e-01 4.65796590e-01 -1.22498490e-01\\n4.01974916e-01 1.71083361e-01 4.01310444e-01 9.31361765e-02\\n3.28548998e-01 -1.87925383e-01 9.69661996e-02 -5.11283100e-01\\n9.26292166e-02 7.32403472e-02 6.17983520e-01 -2.14253053e-01\\n9.66667980e-02 -9.46716685e-03 -2.43321449e-01 1.29464990e-03\\n4.59418327e-01 -7.22381175e-02 2.03681350e-01 -7.67657859e-03\\n2.39033267e-01 -2.76156694e-01 -2.20740810e-01 1.46999657e-01\\n1.35129437e-01 7.20522642e-01 -1.18372003e-02 -2.92955816e-01\\n-2.16937304e-01 2.94286698e-01 -2.00921535e-01 -1.25651076e-01\\n-2.95645982e-01 4.97483872e-02 -2.32350662e-01 3.79253000e-01\\n1.43093169e-02 -1.12403899e-01 -3.21700752e-01 -1.80571467e-01\\n-3.80800664e-02 1.58555701e-01 3.63040656e-01 -8.97138715e-02\\n-7.20688552e-02 -2.94582278e-01 -7.25387409e-02 1.28338352e-01\\n3.50423306e-01 3.00292462e-01 1.98763087e-01 -2.86371469e-01\\n-7.60660022e-02 1.31471783e-01 -3.01662624e-01 2.97120124e-01\\n-3.25154632e-01 2.59853780e-01 -6.58265293e-01 -2.71341950e-01\\n-1.14746958e-01 -3.67323130e-01 2.70229816e-01 3.06636333e-01\\n1.85640156e-01 -1.48014188e-01 6.37765154e-02 -5.54762483e-01\\n2.41104409e-01 4.15450037e-02 2.29346320e-01 3.33544277e-02\\n2.92247590e-02 6.82974935e-01 -5.41973077e-02 -1.58082783e-01\\n-3.70879173e-02 -3.57148163e-02 -2.48219773e-01 -3.07637006e-01\\n-1.71753213e-01 -4.99070674e-01 -2.33896866e-01 5.89169383e-01\\n1.94027573e-01 -1.01706274e-01 -1.76878631e-01 3.68113518e-01\\n-5.79065122e-02 -2.49609336e-01 -1.12928867e-01 -2.97409482e-02\\n2.71567881e-01 2.31146663e-01 2.31538415e-01 -4.92011040e-01\\n6.02773689e-02 -4.97626839e-03 -9.31991637e-02 4.66773421e-01\\n6.85764402e-02 3.60571556e-02 2.14156844e-02 -1.21898346e-01\\n6.14952862e-01 -1.52369276e-01 -9.95755047e-02 6.55921102e-02\\n7.69764408e-02 -3.04804653e-01 -3.37626904e-01 -3.55847850e-02\\n-3.87881771e-02 -3.79064590e-01 1.10738657e-01 2.08260685e-01\\n-1.89622436e-02 2.15952843e-02 -4.87457365e-01 -2.02925235e-01\\n-3.95221204e-01 -1.15116687e-04 9.00863484e-02 -5.51045597e-01\\n-7.50061544e-03 -3.97703983e-02 -6.21905506e-01 2.52165020e-01\\n5.96419489e-03 -8.71499628e-02 7.04007572e-04 5.91974407e-02\\n-1.44005701e-01 -1.25019625e-01 3.38560373e-01 1.98422477e-01\\n-2.24783137e-01 -2.20628977e-01 1.28247425e-01 -9.15271163e-01\\n9.76620540e-02 1.93567798e-01 -1.53008357e-01 1.20959766e-01\\n4.91970778e-02 -5.29274940e-01 3.26737940e-01 -4.79616940e-01\\n-6.89852461e-02 -4.75270897e-02 -2.38689661e-01 -4.42184150e-01\\n2.46909529e-01 1.52817413e-01 -2.30463028e-01 3.73967826e-01\\n-3.38222742e-01 4.49786752e-01 1.23107031e-01 -1.40323332e-02\\n8.86442289e-02 -2.50173360e-01 1.53406650e-01 -2.49623358e-01\\n-4.09712315e-01 -1.65738851e-01 -3.10625196e-01 -2.91869730e-01\\n-7.19121322e-02 -2.55407512e-01 -1.25474676e-01 -2.68792007e-02\\n3.03301543e-01 2.53720909e-01 -1.03353985e-01 -1.86840892e-01\\n5.13642281e-02 -5.45175552e-01 2.14024454e-01 -2.08808839e-01\\n-9.49892551e-02 -5.51625602e-02 2.14699760e-01 2.36911490e-03\\n1.26159474e-01 -1.98572576e-01 6.06348693e-01 -2.18807518e-01\\n-4.18961465e-01 -1.73661187e-01 1.20434664e-01 1.54408365e-01\\n3.35194588e-01 -3.82975519e-01 -1.18794598e-01 2.50081360e-01\\n5.40934354e-02 5.98458126e-02 3.04101318e-01 -2.13782698e-01\\n-2.55616039e-01 2.03356430e-01 -5.51714897e-01 1.27289608e-01\\n7.25632250e-01 1.33732975e-01 1.88798696e-01 1.88592389e-01\\n2.00784460e-01 1.93091035e-01 4.37869072e-01 -1.04626395e-01\\n-1.48373172e-01 3.51962477e-01 1.00411564e-01 -5.79532504e-01\\n-8.19096193e-02 -2.11182654e-01 -1.30349785e-01 -3.32569480e-01\\n5.88449895e-01 2.86809564e-01 -3.12303334e-01 -3.85551214e-01\\n-2.58021563e-01 -3.93161923e-03 3.45213681e-01 1.42844524e-02\\n-2.81501804e-02 6.25147717e-03 5.62359333e-01 -1.36418566e-01\\n4.47655201e-01 4.79111075e-01 -1.54884279e-01 -2.08057523e-01\\n-2.84904763e-02 1.75190181e-01 5.88216707e-02 5.35362780e-01\\n-1.75222248e-01 2.15409279e-01 1.18696848e-02 1.23092495e-01\\n-1.07222326e-01 -9.89648923e-02 3.80108029e-01 5.53783923e-02\\n1.74870208e-01 1.47867829e-01 3.77402782e-01 3.01737517e-01\\n1.55507088e-01 3.95431936e-01 3.04984927e-01 3.81979556e-03\\n3.56433690e-01 6.55488431e-01 1.40427992e-01 1.51776075e-01\\n1.05838478e-01 -2.77978685e-02 1.46516711e-01 -8.33807439e-02\\n1.70682639e-01 4.64491487e-01 1.26944721e-01 7.93600619e-01\\n3.10802490e-01 3.69408250e-01 6.19980037e-01 -6.88356102e-01\\n-4.39137936e-01 1.91148631e-02 5.55646122e-01 -3.64469528e-01\\n7.78956804e-03 1.95564985e-01 -2.59237468e-01 2.44021147e-01\\n-5.68714201e-01 -1.40316978e-01 -4.75701615e-02 -7.14225695e-02\\n1.90099016e-01 -1.25549659e-01 -2.13974163e-01 2.15678871e-01\\n-5.15355356e-02 -1.80212110e-01 -3.89927804e-01 -2.18300208e-01\\n-2.38127321e-01 -8.99356529e-02 -4.35105339e-02 9.61688161e-02\\n-1.36115015e-01 -2.94012159e-01 -1.20098732e-01 -5.36609739e-02\\n3.03400338e-01 -1.56379715e-01 -1.86595738e-01 -8.88280496e-02\\n1.60746828e-01 1.99016884e-01 6.38710141e-01 2.25816965e-02\\n1.03761971e-01 -1.37438521e-01 -1.32459417e-01 -1.24917766e-02\\n1.95770845e-01 -1.08611614e-01 -5.10375900e-03 5.37195981e-01\\n-3.37896377e-01 -2.20316932e-01 -3.24509479e-02 1.72011942e-01\\n-4.69907373e-01 -4.48745564e-02 6.06302954e-02 1.46277815e-01\\n-5.80988778e-03 2.42020428e-01 -2.80274659e-01 7.40841776e-02\\n-1.52766228e-01 -5.75809658e-01 2.88002551e-01 -8.73554945e-02\\n-2.82912612e-01 -1.20374328e-02 1.97796017e-01 1.75703824e-01\\n-2.20229015e-01 -1.49473369e-01 -5.41104935e-02 1.53688252e-01\\n4.69293967e-02 2.80852884e-01 -1.78425685e-01 -2.41739750e-01\\n-3.28268290e-01 2.96966016e-01 3.99281792e-02 3.00957292e-01\\n-1.75359286e-02 3.61858815e-01 4.08480950e-02 3.30049157e-01\\n1.86315447e-01 2.27617342e-02 -2.64187068e-01 -2.89263874e-01\\n-9.94643718e-02 -1.76507905e-01 6.81010541e-03 -8.43258426e-02\\n2.17222288e-01 -2.90454596e-01 5.88175515e-03 -3.45394164e-01\\n-3.50374758e-01 -5.95274925e-01 -4.50894386e-02 -7.38337636e-02]]',\n", + " 'Job Descriptionlm group is looking for a Data Analyst for its Data & Analytics department team based in Chiasso. The candidate will act within Data & Analytics department perimeters supporting, inspiring and delivering data integrations, data models, analysis, reports and dashboards to help the business look data in a comprehensive way, take proper decisions and steer directions of the units. Key Responsibilities Understand stakeholders business areas and take ownership of their data need, collect/support business requirement definition - be able to influence and partner with them leveraging on an in-depth cross-functional data knowledgePerforming analysis with the aim of providing insights and summaries to direct manager, the rest of the team and other functionsData model creation, design of ETL activities and use of data exploration and reporting tools to create report, analysis and testsWriting documents for mapping of data flows according to business rules Skills and Experience Essential 1-2 years of experience in a similar role in a fast-paced environmentKnowledge of statistical analysis techniquesDemonstrable ability to work creatively and analytically with a strong attitude for problem solvingStrong knowledge in SQL like languagesFluent in English both written and verbalGood interpersonal, communication and presentation skillsGood knowledge of Google Work Suite Desirable Bachelor or master degree in Statistics, Mathematics,, Engineering or Physics or PhysicsExpertise with BI tools (e.g:. Tibco Spotfire, QlikView, Business Objects, Tableau, Power BI, Cognos Analytics, SAS Visual Analytics)Expertise with workflow management tools (e.g.: Talend, Data Stage, Informatica, Rundeck)Expertise with analytical databases (e.g.: Vertica) and NoSQL DBsGood knowledge in analytics and web analytics techniques, enabling to support the business, guiding company growth efforts and key business outcomesKnowledge and application of a programming language (e.g: Python, R, JAVA)Previous experience in the travel industry Abilities/qualities Analytical and data driven mindset: improve the business providing insights coming from dataPassionate about digital world, ambitious and motivated with a can-do attitudeOpen minded and proactiveness in problem solvingStrong communication skills with willingness to challenge existing processes and applicationsStrong team player and excellent communicator Qualifications null Additional Information null',\n", + " '[\"Verbal Communication Skills\", \"Decisiveness\", \"Proactivity\", \"Interpersonal Communications\", \"Management\", \"Communications\", \"Presentations\", \"Creativity\"]',\n", + " '[\"Tableau (Business Intelligence Software)\", \"Vertica\", \"NoSQL\", \"Data Explorers\", \"KM Programming Language\", \"Collections\", \"Analytics\", \"SAS (Software)\", \"TIBCO Designer\", \"Staging\", \"Industrialization\", \"Statistical Coupling Analysis\", \"Mathematical Statistics\", \"Activism\", \"Python (Programming Language)\", \"Talend\", \"E (Programming Language)\", \"Visual Analytics\", \"Extract Transform Load (ETL)\", \"Rundeck\", \"Dashboard\", \"Power BI\", \"Business Objects Framework\", \"QlikView (Data Analytics Software)\", \"Business Requirements\", \"Cross-Functional Coordination\", \"Spotfire (Data Analytics Software)\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Physics\", \"Perimeter\", \"E-Tools\", \"Web Analytics\", \"Workflow Management\", \"Mapping\", \"Additives\", \"Java (Programming Language)\", \"Informatica\", \"SQL (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\", \"Reporting Tools\"]',\n", + " \"['English', 'South Ndebele', 'Venda', 'Central Khmer']\"],\n", + " ['55',\n", + " 'software engineer – infrastructure',\n", + " 'Lugano',\n", + " '',\n", + " '',\n", + " '[[-3.00879031e-01 2.93186873e-01 3.91317397e-01 -1.03268325e-01\\n4.78794605e-01 -1.63716614e-01 -1.24025993e-01 2.78238416e-01\\n-6.44701272e-02 -3.18700671e-01 -7.58499131e-02 -1.74116194e-01\\n-1.89848706e-01 1.01615131e-01 1.67488351e-01 3.75592083e-01\\n7.28601813e-02 1.78860985e-02 -1.73786789e-01 4.24716145e-01\\n2.16276094e-01 2.71240622e-02 -1.07081458e-01 6.44125879e-01\\n3.15437347e-01 5.05755246e-02 -5.42306490e-02 -5.84535860e-02\\n-3.49566609e-01 -1.99953839e-01 2.56783605e-01 6.70977086e-02\\n1.96225531e-02 -3.30467224e-01 1.08449347e-01 2.42889076e-02\\n-2.29073167e-01 -5.94328903e-02 -3.90555374e-02 2.29642987e-01\\n-3.40409666e-01 -4.15655464e-01 5.97661510e-02 8.12869519e-02\\n-1.48136511e-01 -2.05082506e-01 7.47181177e-02 -3.82940099e-02\\n5.89827774e-04 -8.48522335e-02 -6.36883378e-01 3.25887978e-01\\n-1.50449380e-01 -2.98596263e-01 2.88268328e-01 5.38708150e-01\\n1.01485834e-01 -5.24987757e-01 -1.54847637e-01 -2.85892755e-01\\n-1.14543185e-01 -3.50345345e-03 4.57349531e-02 -1.50619000e-01\\n3.75841975e-01 7.53906788e-03 1.35511905e-03 5.05759835e-01\\n-7.84257889e-01 -9.27326009e-02 -1.27454743e-01 8.22741687e-02\\n-3.21160525e-01 1.42420497e-04 -1.32573649e-01 -5.03220595e-02\\n-2.40474250e-02 3.39716822e-01 3.41495313e-02 2.46226862e-02\\n-1.69638231e-01 2.87897348e-01 1.65269598e-02 2.04493821e-01\\n4.02450442e-01 2.36347482e-01 7.48850852e-02 3.92977804e-01\\n-3.39092374e-01 3.55543703e-01 2.47102734e-02 -1.09525576e-01\\n1.88436851e-01 2.02240899e-01 5.58090806e-01 2.57104754e-01\\n-7.99437333e-03 1.26798749e-01 -2.11416706e-01 2.19073489e-01\\n1.39928490e-01 -2.47061670e-01 3.79527397e-02 -2.11745803e-03\\n-1.67742223e-01 -7.72309601e-02 -9.44179222e-02 4.14851397e-01\\n-2.27359101e-01 2.94415325e-01 2.77031094e-01 -1.16150575e-02\\n-4.84739244e-02 -6.33450627e-01 -6.82621896e-02 -6.77805319e-02\\n9.44998041e-02 2.23461345e-01 2.79766053e-01 1.96791470e-01\\n1.20394945e-01 2.21997783e-01 2.04271674e-01 1.04545474e+00\\n-3.14405672e-02 1.30599171e-01 -1.79279611e-01 2.89214373e-01\\n2.56017148e-01 -2.04995364e-01 1.33666202e-01 3.32151592e-01\\n2.34139726e-01 -1.66957349e-01 -1.12822250e-01 3.86550277e-01\\n-1.50696322e-01 -8.32101330e-02 -3.40334445e-01 8.20770711e-02\\n-3.26552123e-01 -4.50612068e-01 4.32520688e-01 1.72729358e-01\\n2.65590787e-01 7.00112954e-02 -1.12124145e-01 -5.71813285e-02\\n-1.32182136e-01 4.17161673e-01 -1.36189863e-01 2.00398117e-01\\n-3.94227594e-01 -2.32892543e-01 -2.65055507e-01 3.24277580e-01\\n1.94085333e-02 2.17623770e-01 -2.80663036e-02 -1.22584902e-01\\n3.84874254e-01 -1.05298301e-02 -4.64051157e-01 1.62944660e-01\\n-7.85158500e-02 -2.75155514e-01 -1.40553564e-01 1.35943472e-01\\n-1.63567178e-02 1.68804660e-01 -3.54842730e-02 -2.26342067e-01\\n4.01549637e-01 9.38663911e-03 2.06304863e-02 -1.38568610e-01\\n3.02643180e-01 -1.90038607e-01 2.58602947e-01 2.33357385e-01\\n-7.79680669e-01 2.28618413e-01 1.83338230e-03 -2.30762839e-01\\n-6.24184161e-02 6.95198402e-02 4.03260529e-01 -3.76663059e-01\\n4.90600877e-02 -8.83588344e-02 -5.29202044e-01 -3.57074797e-01\\n-3.48177403e-01 4.85689677e-02 4.90368754e-01 -2.28337407e-01\\n-1.97726265e-01 1.56603396e-01 -4.55536842e-01 -6.93446994e-02\\n1.95589215e-01 4.90938239e-02 5.23668975e-02 -1.92485955e-02\\n-1.23538025e-01 -6.17735505e-01 -1.30851611e-01 -4.73395258e-01\\n-4.96935308e-01 9.46354792e-02 -2.57593751e-01 2.05382109e-01\\n9.74708796e-02 8.88068452e-02 3.13008651e-02 7.31329471e-02\\n-2.58341074e-01 -1.69609636e-01 2.72056669e-01 1.95337325e-01\\n3.00849140e-01 -3.00326869e-02 -3.81042659e-01 3.68223310e-01\\n-1.41485795e-01 6.92153692e-01 2.43943647e-01 -7.69371688e-01\\n6.31583691e-01 2.05738083e-01 6.82776570e-02 -5.04139245e-01\\n3.87583196e-01 -3.35701734e-01 1.33027285e-01 2.38910377e-01\\n-2.80704081e-01 -2.22749725e-01 2.28209972e-01 -1.55083522e-01\\n-3.29826891e-01 5.61209142e-01 1.56247288e-01 -1.28462151e-01\\n3.26708049e-01 -3.72736812e-01 3.36158983e-02 1.22877941e-01\\n-2.56286263e-02 -2.63898283e-01 -2.63618708e-01 1.44047424e-01\\n-9.48781222e-02 -5.00595927e-01 -1.52707145e-01 -2.55044729e-01\\n-1.97757691e-01 -3.34501833e-01 -1.93009913e-01 6.02746010e-01\\n7.68776983e-02 2.11635008e-01 1.11528002e-01 -4.46646959e-02\\n-1.07868664e-01 -6.05864823e-01 -1.57366246e-01 2.32590437e-02\\n4.55449015e-01 1.69754624e-01 2.43884269e-02 -1.47687703e-01\\n-1.59047142e-01 4.01418388e-01 -4.28975642e-01 -3.23695570e-01\\n1.07912615e-01 6.90169856e-02 -7.20065981e-02 -7.71670565e-02\\n1.73102003e-02 2.38392562e-01 -1.88736975e-01 1.10893138e-01\\n-2.04206035e-01 3.82827297e-02 2.22324267e-01 -5.50262891e-02\\n-2.91198194e-01 -4.14358139e-01 3.97748388e-02 3.50211859e-01\\n-5.15438914e-01 1.82694849e-02 5.84305644e-01 3.86929184e-01\\n2.27325216e-01 1.33536994e-01 2.65554458e-01 -2.44909897e-01\\n-3.12612474e-01 -3.36751431e-01 1.46923047e-02 3.15787226e-01\\n1.04217216e-01 2.15013735e-02 -1.71257675e-01 -6.16138995e-01\\n-3.46713924e+00 -1.93301052e-01 2.10031301e-01 -2.07476407e-01\\n1.69475362e-01 -1.26025841e-01 -1.88950039e-02 -3.53714600e-02\\n-2.33969301e-01 -2.87974030e-02 -3.69860321e-01 -8.93848613e-02\\n-2.42614243e-02 4.09246206e-01 1.66151851e-01 2.65335411e-01\\n7.07896501e-02 -1.83095276e-01 -1.39254153e-01 3.00904304e-01\\n-1.94392174e-01 -6.19301975e-01 1.11721240e-01 -6.54913187e-02\\n2.41897032e-01 9.04766396e-02 -4.36451584e-01 -7.91861266e-02\\n-1.65939137e-01 -1.55749217e-01 -2.86726677e-03 -2.13719219e-01\\n-7.01692402e-02 2.79045135e-01 1.80733837e-02 5.08422144e-02\\n1.14969879e-01 -1.59121975e-01 3.51332538e-02 -4.39557374e-01\\n-6.27788827e-02 -4.98567462e-01 -3.39253470e-02 -1.71872228e-01\\n6.59773350e-01 -3.86580676e-01 1.53439745e-01 8.71985853e-02\\n2.36954257e-01 2.12036982e-01 -2.15092361e-01 2.88824667e-03\\n-2.06664979e-01 -2.81206608e-01 1.96247753e-02 -2.78526068e-01\\n3.92579943e-01 6.37125134e-01 -2.56244302e-01 3.20588686e-02\\n1.38102338e-01 -2.77370691e-01 -3.24303627e-01 -5.99954844e-01\\n-2.45553732e-01 -1.67872697e-01 -8.09775829e-01 -4.80559677e-01\\n-9.27682668e-02 5.57722151e-02 -2.77839214e-01 5.80034375e-01\\n-4.61603671e-01 -5.49676895e-01 5.37728257e-02 -6.60362124e-01\\n-1.48893967e-02 -2.39232764e-01 6.95940033e-02 -1.50372148e-01\\n-2.75305599e-01 -4.36389297e-01 1.79174632e-01 -2.66638640e-02\\n-2.32112467e-01 -7.29342997e-02 2.64724847e-02 -4.31868285e-01\\n-3.33787382e-01 -2.96306759e-01 3.55388194e-01 1.82731822e-01\\n2.57711589e-01 1.22675538e-01 3.77857834e-01 4.52391468e-02\\n3.50659311e-01 -1.07281409e-01 1.37129828e-01 -3.18001330e-01\\n2.20700189e-01 -1.83648709e-02 5.41036308e-01 -3.50027502e-01\\n6.09605946e-02 3.58645976e-01 -2.61133105e-01 -1.08122624e-01\\n4.89372790e-01 7.29590505e-02 -2.53005847e-02 -1.19581163e-01\\n3.83681297e-01 -6.37967885e-01 -2.56187499e-01 3.02944511e-01\\n6.42761439e-02 5.80740988e-01 1.77910313e-01 -4.58288223e-01\\n-3.97374719e-01 4.02542263e-01 -1.14063472e-01 -2.51584977e-01\\n7.01158047e-02 2.22222611e-01 -2.47803312e-02 1.56336799e-01\\n1.49435177e-01 -2.45852709e-01 -3.88448298e-01 -3.64366956e-02\\n-2.88377376e-03 1.35575101e-01 1.75859213e-01 -1.34832412e-01\\n-1.03112653e-01 -1.22031204e-01 -3.78820710e-02 3.63153294e-02\\n2.02119753e-01 2.13538945e-01 1.67728022e-01 -3.20858240e-01\\n1.06952675e-01 2.63561010e-01 -1.07260503e-01 1.80178538e-01\\n-1.90651059e-01 -3.21749039e-02 -3.79539311e-01 -3.60461771e-01\\n-2.92769372e-02 -2.89781660e-01 4.04551104e-02 2.00645357e-01\\n1.21491902e-01 -2.21123779e-03 2.21114308e-02 -5.50375700e-01\\n4.33755368e-01 2.21633743e-02 1.70349032e-01 1.90832749e-01\\n1.01743355e-01 5.09069443e-01 8.50913823e-02 -3.16508114e-02\\n-1.28230691e-01 -1.78902075e-01 -2.77893186e-01 -3.07526469e-01\\n6.95318282e-02 -3.47837031e-01 -6.79813325e-02 4.49735999e-01\\n9.83924344e-02 -3.83342206e-01 -1.76466197e-01 3.50526214e-01\\n2.00574055e-01 -1.81934759e-01 -7.84528032e-02 6.54289722e-02\\n2.51233399e-01 1.86822750e-02 2.19002098e-01 -3.69453162e-01\\n-3.07673905e-02 9.28495377e-02 -7.56931677e-02 4.58273828e-01\\n3.47311378e-01 3.89679009e-03 -2.08536431e-01 -1.76302195e-01\\n4.58923221e-01 -1.23154871e-01 -5.91280498e-03 -2.05564216e-01\\n4.69516702e-02 -1.32719114e-01 -4.13890392e-01 1.62447691e-01\\n5.50124086e-02 -8.15157220e-02 8.06250274e-02 -8.07496235e-02\\n1.36916637e-01 -2.86610387e-02 -4.20104235e-01 -2.98656136e-01\\n-3.37828279e-01 -1.96709454e-01 1.80388913e-01 -2.43398353e-01\\n2.01923400e-02 8.52477700e-02 -6.56238735e-01 1.99699700e-01\\n-2.64420927e-01 1.25517324e-01 7.42155686e-02 1.42937839e-01\\n-3.03225577e-01 7.98135400e-02 5.34233153e-02 3.85028943e-02\\n-4.53491926e-01 -1.94671988e-01 2.70261150e-02 -9.74631250e-01\\n6.65682331e-02 -7.66236261e-02 9.40824393e-03 1.14252483e-02\\n-3.37707587e-02 -5.66168427e-01 1.99193791e-01 -4.40826386e-01\\n5.04017062e-02 1.68569401e-01 -1.71417952e-01 -4.21216071e-01\\n4.89115417e-02 -1.16364248e-01 -2.85581082e-01 4.42956597e-01\\n-5.01606703e-01 1.50286421e-01 1.17784612e-01 -2.47211792e-02\\n7.88761377e-02 -3.69431317e-01 2.02608258e-01 -2.65531957e-01\\n-4.03134644e-01 -1.08709678e-01 -3.43860686e-01 -1.39599085e-01\\n1.24647722e-01 -2.48197094e-01 -2.75886297e-01 1.18766770e-01\\n1.85462266e-01 1.42471671e-01 3.56539823e-02 -2.15658531e-01\\n1.34770572e-01 -2.79345363e-01 8.64735246e-02 -1.25774384e-01\\n-6.48249164e-02 1.20532081e-01 1.17231280e-01 -1.51869193e-01\\n3.61631177e-02 -2.31839910e-01 5.80160201e-01 -2.75261730e-01\\n-3.89089018e-01 -4.63009402e-02 2.69977842e-02 2.59587876e-02\\n3.00831139e-01 -4.15258884e-01 7.68277934e-03 2.38041312e-01\\n1.35940179e-01 -4.23567295e-02 2.50154495e-01 -1.02111273e-01\\n-6.99340552e-02 5.91482520e-02 -4.61507529e-01 5.96984252e-02\\n7.70102501e-01 1.17011242e-01 -3.14755850e-02 2.10223675e-01\\n8.15835297e-02 4.50068951e-01 4.52602684e-01 -9.18183774e-02\\n-7.12006986e-02 2.26993382e-01 5.87383583e-02 -4.99704361e-01\\n-9.72609445e-02 -2.50003844e-01 -1.67176172e-01 -1.97197720e-01\\n6.97801113e-01 4.70982462e-01 -3.04457128e-01 -2.08735168e-01\\n-7.25482479e-02 -1.89349130e-01 2.06093788e-01 -8.18968266e-02\\n-4.73494381e-02 -2.35091895e-02 5.78519821e-01 -3.08102984e-02\\n3.02670270e-01 4.66560930e-01 -2.38135278e-01 -4.34572309e-01\\n-1.09416001e-01 6.20297752e-02 1.08913675e-01 3.00506949e-01\\n-2.07963195e-02 3.11317265e-01 1.28179276e-02 9.26745385e-02\\n6.71412284e-03 6.13207445e-02 1.66868046e-01 -3.61097255e-03\\n2.78235048e-01 1.06410727e-01 1.77996550e-02 5.14176905e-01\\n1.24909259e-01 4.76623207e-01 3.16883922e-01 1.94185615e-01\\n3.43783319e-01 5.46812057e-01 4.46297884e-01 1.82734951e-01\\n5.96060567e-02 -4.68132943e-02 3.98530997e-02 -9.10039544e-02\\n4.55725998e-01 2.51346052e-01 3.44859511e-01 8.16920877e-01\\n3.29367936e-01 2.14782894e-01 7.78392732e-01 -6.70003235e-01\\n-3.85428339e-01 9.29093286e-02 4.82959777e-01 -3.44925046e-01\\n-1.25408113e-01 8.58220458e-02 -2.41764829e-01 1.66485399e-01\\n-5.78623474e-01 -9.24738348e-02 -2.86182649e-02 -9.08896625e-02\\n-8.81325174e-03 -3.48114334e-02 -2.86627918e-01 -1.63740069e-01\\n-1.73640594e-01 -2.34352484e-01 -1.87768996e-01 -1.47904441e-01\\n-2.90678680e-01 -1.45760730e-01 -4.97637577e-02 8.18882789e-03\\n-1.45734906e-01 -4.97592241e-01 -3.21818113e-01 1.17715396e-01\\n4.49432760e-01 -1.57377616e-01 -1.74466502e-02 -1.72294587e-01\\n-7.82589335e-03 3.52455467e-01 5.74620426e-01 -4.30326909e-02\\n1.46646231e-01 -1.62685096e-01 -2.04753563e-01 -1.72511884e-03\\n1.58810183e-01 -8.75630975e-03 6.10316806e-02 4.70520645e-01\\n-3.79225045e-01 2.03973040e-01 1.42406151e-01 2.75100172e-01\\n-4.41362977e-01 -1.60239324e-01 -1.55947730e-03 2.82590985e-01\\n4.11767662e-02 3.16154599e-01 -3.87521476e-01 1.47677600e-01\\n-3.44438523e-01 -5.26079834e-01 5.24405301e-01 -2.34351486e-01\\n-6.83412999e-02 1.53566837e-01 3.28152776e-01 1.14282914e-01\\n-2.03067213e-01 -5.59285916e-02 1.45715505e-01 2.76590496e-01\\n-6.31856248e-02 4.04603094e-01 -3.04258376e-01 -1.08718514e-01\\n-1.91801056e-01 3.90092880e-01 -6.51417673e-02 1.82144478e-01\\n-1.73569724e-01 3.82095128e-01 1.23801269e-01 1.74502939e-01\\n1.27364665e-01 6.34968802e-02 -5.40365130e-02 -2.22627968e-01\\n-2.57311881e-01 -4.27096128e-01 1.71497643e-01 2.96526961e-02\\n1.64752096e-01 -3.71100157e-01 -1.09345570e-01 1.18856607e-02\\n-1.66199088e-01 -3.77908051e-01 -2.34627366e-01 1.25755101e-01]]',\n", + " 'Lugano, Switzerland / Austin, TX Full Time Description Implement internal machine learning software infrastructure Integrate existing open-source tools in order to facilitate ML research Interface our proprietary platform with large data sets and customer platforms Contribute to the our proprietary code base Minimum Qualifications Masters in computer science 2 years in the industry, experience with IT systems Experience with parallel computing architectures “DevOps” Command of C/C++ and Python Knowledge of Unix environment, GNU/Linux Engineering mindset Large data management skills Fluent in written and spoken English Plusses Theoretical knowledge of machine learning methods (deep learning, reinforcement learning, evolutionary computation) Experience of machine learning frameworks (TensorFlow, PyTorch) Experience with containers and orchestration (Docker, Kubernetes, OpenStack) Experience with cluster environments (e.g. SGE, Condor) Experience with GPU programming (Cuda, OpenCL, Metal) Contact E-mail: jobs@nnaisense.com start subject with: [infrastructure engineer] submit both your cover letter and resume in English, PDF format',\n", + " '[\"Research\", \"Infrastructure\", \"Integration\"]',\n", + " '[\"Kubernetes\", \"Tooling\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Computer Science\", \"Data Management\", \"Machine Learning\", \"Nvidia CUDA\", \"OpenStack\", \"Industrialization\", \"Component Object Model (COM)\", \"Association Rule Learning\", \"E (Programming Language)\", \"OpenCL\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Condor\", \"C (Programming Language)\", \"Metallization\", \"TensorFlow\", \"Deep Learning\", \"Parallel Computing\", \"Clinical Data Management\", \"SliTaz GNU/Linux\", \"PyTorch (Machine Learning Library)\", \"Unix\", \"Documentation Based Coding\"]',\n", + " \"['English', 'Maldivian', 'Cree', 'Uzbek']\"],\n", + " ['84',\n", + " 'software engineer – full stack java developer (m/f)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.38020450e-01 2.89252847e-01 5.50936282e-01 -1.30269632e-01\\n6.12978935e-01 -8.19544271e-02 5.71732745e-02 3.72604609e-01\\n-1.01555577e-02 -2.83596218e-01 -1.40971750e-01 -3.23409617e-01\\n-3.14746574e-02 7.91962594e-02 1.81828246e-01 3.82863671e-01\\n1.36100456e-01 1.24225371e-01 -2.51341254e-01 2.05138013e-01\\n2.22766399e-01 3.69416066e-02 6.50205761e-02 6.44660056e-01\\n4.77383882e-01 4.81395796e-02 -8.17026719e-02 -5.71360067e-02\\n-3.49323899e-01 -2.90569216e-01 3.19683284e-01 -7.50034377e-02\\n-7.97010437e-02 -3.43942076e-01 -6.57866258e-05 6.16875663e-02\\n-2.29268506e-01 -1.57014519e-01 1.21674597e-01 2.21074298e-01\\n-4.57505256e-01 -3.14544857e-01 1.12679780e-01 1.93631779e-02\\n-1.70714349e-01 -2.40523934e-01 -8.86114612e-02 5.60749099e-02\\n7.20198750e-02 1.52499955e-02 -5.93267560e-01 3.58435810e-01\\n-1.65146336e-01 -1.77558690e-01 2.21322000e-01 6.25901818e-01\\n2.21056938e-02 -5.38928628e-01 -3.00852805e-01 -1.58400357e-01\\n1.26864061e-01 -5.99948466e-02 1.11612581e-01 -9.25844088e-02\\n3.34102780e-01 -1.37619432e-02 -1.06739715e-01 5.10814607e-01\\n-6.92016065e-01 -1.40844852e-01 -1.97262257e-01 -4.78972308e-02\\n-3.65765244e-01 4.41076234e-02 -1.77011207e-01 -1.83325410e-01\\n-1.10413872e-01 3.79701436e-01 8.56751204e-02 8.75183269e-02\\n-1.45346746e-01 2.47045785e-01 -5.86439371e-02 1.37468889e-01\\n3.10909122e-01 1.98889345e-01 1.72130585e-01 2.82537401e-01\\n-4.18444604e-01 3.42172325e-01 1.52799442e-01 -2.70126998e-01\\n1.99976727e-01 4.22309972e-02 4.70033348e-01 1.59599587e-01\\n-1.28056884e-01 1.97013989e-01 -1.58288538e-01 1.88701764e-01\\n2.81195015e-01 -2.75208771e-01 7.48789161e-02 5.58504313e-02\\n-2.01686770e-01 8.37526657e-03 -1.09921299e-01 3.29367876e-01\\n-2.90000677e-01 3.18743885e-01 3.01654547e-01 -1.13300286e-01\\n-8.77433270e-02 -6.64337516e-01 -9.70620513e-02 -1.85516838e-04\\n-2.09898055e-02 2.75159985e-01 3.50670427e-01 1.68694675e-01\\n1.86507478e-01 7.00895265e-02 2.44398564e-01 9.76149261e-01\\n1.92380685e-03 9.88360569e-02 -3.35690439e-01 3.56263638e-01\\n1.67176902e-01 -1.47717237e-01 1.53779745e-01 2.82772154e-01\\n5.43613359e-02 -6.97367936e-02 -9.91211683e-02 2.81315118e-01\\n-1.10305935e-01 -2.03170463e-01 -2.97168553e-01 1.00079319e-02\\n-3.55954051e-01 -2.92480677e-01 4.04611081e-01 1.52087316e-01\\n1.52592465e-01 -1.32529885e-01 -3.47781964e-02 -9.05324072e-02\\n-3.80969383e-02 4.63801235e-01 -5.51058911e-02 9.66308117e-02\\n-3.24663430e-01 -1.34776920e-01 -2.63138443e-01 3.39556366e-01\\n2.93166302e-02 2.77217720e-02 -2.56409366e-02 -9.49944779e-02\\n2.62268662e-01 1.05040252e-01 -3.00486475e-01 2.65005440e-01\\n2.03071535e-02 -3.78961802e-01 -2.18933553e-01 8.99778381e-02\\n-4.39079851e-02 6.25727326e-02 -8.24522134e-03 -4.00816560e-01\\n5.02790451e-01 1.50370613e-01 2.65438437e-01 -5.51680215e-02\\n2.77819335e-01 -3.14357042e-01 1.85936734e-01 1.34428054e-01\\n-5.75830758e-01 4.72359717e-01 -7.66385794e-02 -4.62857261e-02\\n-8.07601213e-03 9.18425620e-02 2.85387009e-01 -3.00662011e-01\\n4.30009589e-02 -1.23459332e-01 -3.70249748e-01 -4.44266140e-01\\n-2.42830873e-01 -4.30059172e-02 3.79342973e-01 -3.16577703e-01\\n-2.45095313e-01 1.59768596e-01 -4.31715161e-01 -2.09588334e-02\\n2.31050819e-01 8.41777772e-02 4.63253111e-02 6.70099854e-02\\n-1.96656346e-01 -4.68193501e-01 6.35992810e-02 -4.62202936e-01\\n-4.72822964e-01 2.01036185e-02 -1.33874133e-01 2.27562383e-01\\n4.64889174e-03 2.14723032e-02 -1.35936961e-01 1.53460860e-01\\n-2.88668931e-01 -1.71842519e-03 1.67433813e-01 1.95620060e-01\\n3.51910174e-01 -5.94950803e-02 -4.60408956e-01 4.08402652e-01\\n-2.20206290e-01 6.26231492e-01 2.14929655e-01 -8.86515319e-01\\n5.28552055e-01 2.28554472e-01 1.93027526e-01 -3.16511899e-01\\n5.78254580e-01 -3.11755955e-01 9.27779451e-02 1.54366255e-01\\n-2.71233976e-01 -1.94316059e-01 2.91994870e-01 -1.51084125e-01\\n-1.91353559e-01 6.21547043e-01 2.17407599e-01 -9.14107189e-02\\n2.34955773e-01 -2.88192898e-01 -8.78031775e-02 -2.75330115e-02\\n-9.50687677e-02 -2.10383937e-01 -2.65386373e-01 3.16576138e-02\\n-1.00774676e-01 -5.51855624e-01 -1.62710950e-01 -3.50965858e-01\\n-1.95501700e-01 -3.39059561e-01 -2.14682370e-01 4.42352951e-01\\n1.54243261e-01 4.29301374e-02 2.02507690e-01 1.44880516e-02\\n-8.83691460e-02 -4.96162862e-01 -1.59177035e-01 1.58905014e-01\\n4.77563828e-01 1.98162287e-01 1.08159751e-01 7.55139887e-02\\n-1.17749952e-01 4.81403738e-01 -1.87761173e-01 -2.59304792e-01\\n2.79184096e-02 1.78507432e-01 5.60347699e-02 -6.34062337e-04\\n-3.22487727e-02 3.08857769e-01 -1.69641554e-01 5.66251725e-02\\n-1.20917149e-01 8.68206024e-02 3.67467374e-01 8.29522163e-02\\n-2.21779063e-01 -1.41900405e-01 -2.14982461e-02 3.56089562e-01\\n-5.38258731e-01 -8.23074207e-02 5.42882860e-01 1.99035496e-01\\n1.48049146e-01 2.04901442e-01 2.06315845e-01 -7.74357393e-02\\n-2.19568953e-01 -2.29717135e-01 2.11249348e-02 1.82433113e-01\\n2.65084319e-02 -7.97534361e-02 -1.60047248e-01 -5.27031302e-01\\n-3.54178619e+00 -2.84901559e-01 1.38511434e-01 -3.77141625e-01\\n2.66091734e-01 -1.61941662e-01 3.50508019e-02 -4.56209332e-02\\n-2.60498703e-01 1.98321253e-01 -1.26741782e-01 -2.09564790e-01\\n1.85918793e-01 2.23036841e-01 -4.96789329e-02 3.86239737e-01\\n3.48385796e-02 -8.70032161e-02 -1.12861343e-01 2.36653149e-01\\n-1.76234245e-01 -6.99593663e-01 2.28095502e-01 -3.25627178e-02\\n2.24040374e-01 1.21776663e-01 -3.63060385e-01 -9.99307930e-02\\n-2.11064100e-01 -3.14668924e-01 8.01843628e-02 -3.25702131e-01\\n-1.03933245e-01 3.18474323e-01 9.80125517e-02 -8.81212205e-02\\n9.12363082e-02 -3.30125570e-01 -3.94337662e-02 -4.35465187e-01\\n1.10590704e-01 -6.15617812e-01 3.24216969e-02 -6.75836802e-02\\n7.63267577e-01 -4.59775120e-01 1.15445584e-01 1.85604662e-01\\n8.89748037e-02 2.28061393e-01 -8.58870000e-02 -7.81288221e-02\\n-2.05075026e-01 -3.31004113e-01 -2.39581540e-02 -2.22654447e-01\\n2.38349766e-01 5.83191991e-01 -1.46879256e-01 1.30760506e-01\\n7.04084113e-02 -2.82894731e-01 -3.51952612e-01 -4.48720038e-01\\n-1.92900524e-01 -2.12042451e-01 -7.14372218e-01 -3.52817953e-01\\n-2.63507478e-02 -1.27763420e-01 -2.23986119e-01 5.15876412e-01\\n-3.50340068e-01 -5.05989730e-01 3.27456780e-02 -4.80723232e-01\\n1.70539618e-01 -2.93665677e-01 1.12654055e-02 -1.21890225e-01\\n-3.82389784e-01 -3.94218206e-01 1.03041127e-01 -2.18628291e-02\\n-1.62893429e-01 -1.06765799e-01 -1.15785249e-01 -2.82497346e-01\\n-3.22430015e-01 -4.04749900e-01 4.86515909e-01 9.43618268e-02\\n3.42906654e-01 1.44595236e-01 2.50178367e-01 2.26239398e-01\\n2.27700219e-01 -2.86327422e-01 1.55903652e-01 -2.98213512e-01\\n8.98097605e-02 -6.50783554e-02 6.23444557e-01 -3.24934363e-01\\n2.44784385e-01 2.94484477e-02 -1.65272832e-01 -9.58171636e-02\\n4.27217513e-01 5.06709516e-02 -5.92720844e-02 -8.48875418e-02\\n3.08340430e-01 -5.63556671e-01 -2.87194073e-01 1.56728685e-01\\n-2.70848870e-02 5.61526060e-01 4.32400741e-02 -4.30436790e-01\\n-3.19916219e-01 4.05228764e-01 -1.55668736e-01 -3.17943841e-01\\n-2.48376131e-01 1.74195513e-01 -2.18273640e-01 2.07645729e-01\\n5.37468754e-02 -2.62315184e-01 -3.93784463e-01 -1.54407188e-01\\n3.67662124e-02 1.06552243e-01 2.84065425e-01 -1.28338067e-03\\n-1.05517050e-02 -2.82616377e-01 -1.75470859e-01 7.17858896e-02\\n3.25393707e-01 2.58180290e-01 2.06340641e-01 -1.98932976e-01\\n-2.50130780e-02 1.80420548e-01 -2.10632473e-01 1.36321381e-01\\n-2.50451237e-01 -4.11855653e-02 -4.22207087e-01 -4.31581616e-01\\n-1.77385402e-03 -2.87051439e-01 3.83492373e-02 3.00618708e-01\\n1.53480962e-01 1.05704344e-03 -4.22209734e-03 -4.89090115e-01\\n4.39332157e-01 -4.76558283e-02 2.43036523e-01 2.46567830e-01\\n6.78351000e-02 5.62839985e-01 3.25265005e-02 3.70239541e-02\\n-1.05156459e-01 -1.16570167e-01 -1.82399914e-01 -1.22748815e-01\\n-2.68969014e-02 -2.83407688e-01 -8.79672840e-02 4.69463587e-01\\n6.02037348e-02 -3.82131457e-01 -7.22853616e-02 2.86176860e-01\\n-5.75769786e-03 -1.82065234e-01 -1.39762893e-01 2.13512272e-01\\n2.61039108e-01 1.24260634e-01 3.30021769e-01 -4.70841229e-01\\n-1.41792908e-01 -1.62844155e-02 -1.22230940e-01 5.02285421e-01\\n1.52945101e-01 1.30606890e-01 -1.47797197e-01 -3.21403086e-01\\n4.32655990e-01 -1.13359578e-01 -1.38657540e-01 -2.77049895e-02\\n7.33215511e-02 -1.61464572e-01 -4.92186159e-01 -2.12933961e-03\\n2.45043039e-02 -2.11841419e-01 9.96652339e-03 -4.53871600e-02\\n1.83296740e-01 -4.92533743e-02 -4.47698474e-01 -3.66287172e-01\\n-2.59250969e-01 -3.34795490e-02 -5.90482056e-02 -3.13203156e-01\\n6.36998788e-02 -7.66855478e-02 -6.70806527e-01 3.07972938e-01\\n-3.21460545e-01 5.20851053e-02 5.89342564e-02 1.66582629e-01\\n-4.00910139e-01 -7.34523758e-02 2.07888693e-01 1.82939306e-01\\n-2.44174361e-01 -2.24472553e-01 1.03586391e-01 -8.82101655e-01\\n2.14485973e-02 -5.84667511e-02 4.45943736e-02 1.65245421e-02\\n1.21019013e-01 -4.58705485e-01 9.07473713e-02 -3.45605016e-01\\n1.72777269e-02 3.49135287e-02 -9.11911502e-02 -5.35429478e-01\\n1.54478639e-01 -1.87612772e-02 -1.72969714e-01 4.00750130e-01\\n-3.74087632e-01 2.72814661e-01 8.21048468e-02 5.22678643e-02\\n1.23135149e-02 -2.79991329e-01 2.20273837e-01 -2.73592830e-01\\n-4.19310778e-01 -2.50178427e-02 -4.32076931e-01 -1.83773890e-01\\n6.79792091e-02 -1.91945523e-01 -2.25047380e-01 4.83310893e-02\\n2.70755380e-01 1.79264903e-01 -9.16757509e-02 -1.81922391e-01\\n9.65546817e-02 -4.13502544e-01 1.43198624e-01 -2.28944674e-01\\n-6.36033807e-03 -1.20038107e-01 1.04245476e-01 -8.27134028e-02\\n-2.93544345e-02 -2.03951523e-01 5.26307523e-01 -1.93659887e-01\\n-3.62300992e-01 -5.81620485e-02 1.27072006e-01 6.64793253e-02\\n3.67500991e-01 -5.38610458e-01 9.27537307e-02 2.74419069e-01\\n6.41250163e-02 9.31206569e-02 2.74266213e-01 -8.19841772e-02\\n-1.69328630e-01 3.52548093e-01 -5.40599644e-01 2.51047313e-01\\n6.83496535e-01 1.49086371e-01 1.01109095e-01 1.65924579e-01\\n2.66905367e-01 2.78452963e-01 4.96260941e-01 8.16215277e-02\\n-6.46899343e-02 3.37262213e-01 -1.23044718e-02 -5.31052887e-01\\n-1.49271246e-02 -2.24097297e-01 -2.46348739e-01 -4.71074551e-01\\n5.32783747e-01 4.38686162e-01 -3.27105165e-01 -1.50508970e-01\\n-1.20658344e-02 -1.11432552e-01 1.29622698e-01 -1.81924134e-01\\n-1.33055234e-02 -1.01621732e-01 5.76984644e-01 -2.97110118e-02\\n4.50150192e-01 5.82568228e-01 -7.74706155e-02 -3.65792900e-01\\n-1.68011814e-01 7.37372637e-02 1.56098664e-01 3.56772333e-01\\n-4.81507145e-02 2.48289526e-01 -1.22198619e-01 1.91505447e-01\\n8.85055065e-02 2.59307865e-02 6.49932995e-02 6.00459240e-02\\n1.29552454e-01 1.85686871e-01 7.72312954e-02 3.46096784e-01\\n1.99982315e-01 5.07180095e-01 2.75846809e-01 1.46655455e-01\\n4.28752482e-01 6.38981879e-01 3.71005505e-01 1.67296156e-01\\n-2.58338898e-02 2.03597266e-02 -1.72940627e-01 -1.32870436e-01\\n2.78154433e-01 3.13985378e-01 1.53902113e-01 8.14617097e-01\\n3.22214395e-01 2.36675248e-01 7.02649891e-01 -6.05626881e-01\\n-5.17295718e-01 -2.69987248e-02 4.72564101e-01 -2.55426794e-01\\n-1.98075294e-01 1.39499515e-01 -2.86522985e-01 1.69820786e-01\\n-4.87000793e-01 -8.44143927e-02 5.74471010e-03 -1.51706025e-01\\n1.31652847e-01 -5.90725541e-02 -2.53984660e-01 7.47379139e-02\\n-2.45405197e-01 -1.96631834e-01 -3.31543505e-01 -5.18850051e-02\\n-3.39998990e-01 -1.35444805e-01 -1.28733888e-01 -1.67223334e-01\\n-6.72441870e-02 -3.11282307e-01 -1.49802029e-01 1.53711230e-01\\n4.65594500e-01 -9.91084501e-02 -9.04410556e-02 -1.21041991e-01\\n-7.87149090e-03 2.61934012e-01 4.05741125e-01 -1.12175874e-01\\n1.49162993e-01 -3.32798734e-02 -3.56227726e-01 -6.55620247e-02\\n1.90045550e-01 3.65935415e-02 -4.65964302e-02 5.00743687e-01\\n-3.40142608e-01 5.77112995e-02 1.09722473e-01 2.58588284e-01\\n-3.58537614e-01 -1.56976376e-02 9.94263031e-03 3.79866898e-01\\n1.91385031e-01 2.11970180e-01 -2.86552012e-01 2.17511371e-01\\n-2.61249274e-01 -4.33736473e-01 4.01196331e-01 -1.72018886e-01\\n-3.56429331e-02 1.68645233e-01 1.96501881e-01 1.17264748e-01\\n-3.21697086e-01 1.94661692e-02 -1.54590569e-02 4.08345699e-01\\n1.38100579e-01 3.41536433e-01 -3.65895391e-01 -1.07981980e-01\\n-2.32519433e-01 2.34447092e-01 -1.72387525e-01 1.93839952e-01\\n-1.84268057e-01 3.26715201e-01 8.13060328e-02 1.33784905e-01\\n1.99187040e-01 -6.98598698e-02 -2.10739136e-01 -2.28092819e-01\\n-2.95322090e-01 -3.31125885e-01 1.71492130e-01 -4.79243211e-02\\n2.16375485e-01 -3.68897915e-01 -1.23232454e-01 -1.45375162e-01\\n-2.50475407e-01 -4.45141196e-01 -3.81494686e-02 -5.45614399e-02]]',\n", + " 'Über unseren Kunden Our client is a globally integrated technology and consulting company with operations in more than 170 countries. Ihr Aufgabenbereich Understand and prioritize product requirements and end-user needs and drivers Elicit and analyze all requirements, including business rules Design, develop and support application solutions to meet client requirements Ihr Profil A degree in Computer Science (IT apprenticeship graduates, higher education in IT, bachelor) Demonstrated work experience and knowledge of Web Development using Java, JavaScript, Python Experience in one or more of the following (AngularJS, NodeJS, Django / Flask, Bootstrap, Knockout, AureliaJS or similar. Build Chain: SVN Git, Ant, Maven) Knowledge of databases (SQL) Experience on agile development methodologies Excited to explore new technologies and able to quickly learn An ability to pro-actively take ownership of and analytical problem solving skills Good knowledge of the German & English languages (written & spoken) Swiss nationality or valid Swiss work permit / EU passport Ihre Chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript Web SQL Sprachen: Deutsch Englisch Job ID: 2064',\n", + " '[\"Prioritization\", \"Consulting\", \"Operations\", \"Problem Solving\"]',\n", + " '[\"Knockout.js\", \"Hyper SQL Database (HSQLDB)\", \"Product Requirements\", \"Computer Science\", \"Analytics\", \"Web SQL Databases\", \"Higher Education\", \"Technology Integration\", \"Activism\", \"Python (Programming Language)\", \"Web Development\", \"Flask (Web Framework)\", \"Business Card Design\", \"Django (Web Framework)\", \"Apache Ant\", \"Bootstrap (Front-End Framework)\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Git Flow\", \"Java (Programming Language)\", \"Agile Product Development\"]',\n", + " \"['English', 'Chuang', 'Chewa']\"],\n", + " ['84',\n", + " '.net consultant / software engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.61061400e-01 2.82405615e-01 4.39843953e-01 -1.06197216e-01\\n4.96441543e-01 -2.55543470e-01 -1.15714118e-01 3.84546578e-01\\n-1.00942172e-01 -4.29098755e-01 -2.52556149e-02 -3.17635238e-01\\n-6.96545914e-02 2.52955910e-02 1.92746475e-01 4.94967282e-01\\n2.63134420e-01 8.39160010e-02 -2.18112051e-01 3.45846862e-01\\n1.22279868e-01 -8.40979908e-03 4.93846759e-02 7.05662966e-01\\n4.00918156e-01 3.21412012e-02 -9.74281803e-02 -4.59116995e-02\\n-3.10366064e-01 -2.24626094e-01 4.49564248e-01 3.62390056e-02\\n-1.24232292e-01 -3.17485422e-01 9.18334946e-02 7.17850849e-02\\n-1.80965066e-01 -8.28596354e-02 -5.51367439e-02 2.85666823e-01\\n-4.35210824e-01 -1.99896142e-01 8.98752287e-02 7.58509710e-02\\n-1.29840925e-01 -3.99345368e-01 6.93388283e-02 -9.92942005e-02\\n8.34268406e-02 3.81236561e-02 -5.19869387e-01 2.04275459e-01\\n-2.16927439e-01 -1.56002060e-01 3.18006873e-01 5.80775738e-01\\n2.44086739e-02 -4.98956293e-01 -4.65747952e-01 -3.39738786e-01\\n1.40105024e-01 -8.36121908e-05 2.46197395e-02 -3.41030449e-01\\n3.73587847e-01 7.15952069e-02 5.05458517e-03 3.23967606e-01\\n-8.48127425e-01 -1.43008575e-01 -2.12373853e-01 1.90450437e-02\\n-4.12282288e-01 -2.78401989e-02 -2.38644406e-01 -1.41654789e-01\\n-1.06879830e-01 4.43170369e-01 -1.93899423e-02 -1.70567427e-02\\n-1.40919730e-01 3.19316477e-01 -1.43043086e-01 2.88516313e-01\\n2.34780833e-01 2.94918388e-01 2.10442826e-01 3.75243038e-01\\n-4.31245834e-01 3.55803728e-01 1.84469894e-01 -3.79628241e-01\\n2.21618503e-01 2.10281517e-02 4.76391912e-01 3.15011013e-03\\n1.38864532e-01 1.14987269e-01 -2.77029723e-01 3.41122001e-01\\n1.86061472e-01 -1.68644488e-01 4.34421264e-02 -6.81454688e-02\\n-3.84778902e-02 5.65203242e-02 3.68006118e-02 2.23805130e-01\\n-2.58395851e-01 4.46176380e-01 1.18645146e-01 -1.51735380e-01\\n-3.33415419e-02 -6.22109115e-01 -1.51888743e-01 -1.21548190e-03\\n2.25975271e-02 1.43732384e-01 1.95251018e-01 1.83794543e-01\\n2.08858818e-01 -9.62470993e-02 1.94579110e-01 9.65843856e-01\\n-4.66822274e-02 2.38388553e-02 -2.86113352e-01 3.70040089e-01\\n1.72202840e-01 -2.50677079e-01 1.96682021e-01 1.97969154e-01\\n8.39239061e-02 -5.43384179e-02 -1.82683915e-01 3.15192640e-01\\n-1.28099501e-01 -3.00945669e-01 -3.71956706e-01 7.89373964e-02\\n-1.59114286e-01 -4.56348926e-01 6.03847146e-01 1.07984297e-01\\n1.67446434e-01 -1.56945422e-01 -4.35541803e-03 -1.54890746e-01\\n-9.89364646e-03 1.82144046e-01 -1.73465051e-02 1.98373925e-02\\n-3.93176079e-01 -2.22950116e-01 -1.73748061e-01 2.18064487e-01\\n-1.49262607e-01 6.47005364e-02 -9.92368683e-02 -1.08271062e-01\\n2.37163559e-01 1.29458890e-03 -2.90941119e-01 2.40611359e-01\\n2.13453714e-02 -1.76653355e-01 -6.03716075e-02 2.63112158e-01\\n-1.47585168e-01 1.89769506e-01 -7.04779625e-02 -2.11540177e-01\\n5.45767546e-01 4.10812534e-02 2.02351227e-01 4.08065366e-03\\n2.84436166e-01 -2.25074619e-01 1.93208128e-01 1.12986304e-01\\n-6.34288013e-01 3.34666550e-01 -6.33460954e-02 -1.02804773e-01\\n1.66738793e-01 5.86899221e-02 3.49167794e-01 -2.19903380e-01\\n7.31283873e-02 -1.63252726e-01 -2.80016392e-01 -4.13257271e-01\\n-3.15646976e-01 -4.60813977e-02 3.36676151e-01 -3.53214890e-01\\n-1.72820374e-01 2.44597197e-01 -5.43659866e-01 -1.30678803e-01\\n1.18069492e-01 1.81975648e-01 3.32590416e-02 2.07384631e-01\\n-2.52361774e-01 -5.69460690e-01 8.64793584e-02 -5.13334334e-01\\n-3.85820150e-01 1.28958747e-01 -2.49752745e-01 2.49418542e-01\\n2.07245089e-02 1.77062266e-02 -1.80193633e-01 1.30770490e-01\\n-3.05217117e-01 4.12850790e-02 1.23431556e-01 2.15713680e-01\\n3.30951124e-01 5.51810674e-02 -4.40088689e-01 5.43328047e-01\\n-1.27796948e-01 4.92609322e-01 1.60326600e-01 -9.73326802e-01\\n4.51699823e-01 3.52508068e-01 9.75953862e-02 -3.81554037e-01\\n6.76976204e-01 -3.32376361e-01 -6.34292141e-02 1.37686193e-01\\n-4.60948914e-01 -3.52548182e-01 2.48909488e-01 -1.90905079e-01\\n-2.20866904e-01 5.69935441e-01 8.78207535e-02 1.33400820e-02\\n3.52307618e-01 -2.83530086e-01 -2.35882461e-01 -2.50920169e-02\\n-1.10039435e-01 -2.52096117e-01 -4.88583863e-01 5.34434468e-02\\n2.07100287e-02 -5.58353841e-01 -1.04677498e-01 -3.23822826e-01\\n-2.31217682e-01 -3.37153435e-01 -1.87967539e-01 3.07265759e-01\\n2.10479677e-01 9.01447982e-02 3.26610692e-02 4.12330701e-04\\n-9.44381729e-02 -5.49226820e-01 -2.54393667e-02 1.26453042e-01\\n4.28147286e-01 1.71481848e-01 1.33025944e-01 8.33098888e-02\\n-7.47130439e-02 6.30581260e-01 -1.94379896e-01 -2.84884542e-01\\n4.64021564e-02 1.74978033e-01 7.10744187e-02 -4.52108905e-02\\n1.55839786e-01 3.88529271e-01 -2.32466757e-01 6.21679276e-02\\n-1.92457691e-01 -9.83112585e-03 3.26006532e-01 -1.43725267e-02\\n-1.65859058e-01 -1.86779484e-01 4.81200926e-02 1.77215740e-01\\n-5.83463013e-01 -2.16852948e-01 5.17063022e-01 2.26086602e-01\\n2.07482010e-01 1.57962576e-01 2.94357538e-01 -1.15060575e-01\\n-2.32433751e-01 -2.64887840e-01 1.87108070e-01 1.23880945e-01\\n1.23403162e-01 8.35000426e-02 -5.64389639e-02 -5.83317637e-01\\n-2.91366673e+00 -1.84168890e-01 1.30148560e-01 -2.49361515e-01\\n2.01651335e-01 -1.24938056e-01 8.57203379e-02 -9.90010649e-02\\n-3.49942714e-01 2.12433636e-02 -1.86857596e-01 -1.93448663e-01\\n1.74762264e-01 1.99333534e-01 1.86368059e-02 2.54788965e-01\\n1.50162444e-01 -1.21618822e-01 -1.18164957e-01 3.06661755e-01\\n-8.38257372e-02 -6.72026038e-01 2.46227354e-01 -2.89916843e-02\\n2.66872913e-01 2.66664326e-01 -4.51344132e-01 -1.73367262e-02\\n-2.80026585e-01 -2.50998974e-01 8.89280215e-02 -3.56341481e-01\\n-5.94833270e-02 2.97525436e-01 1.24153361e-01 -9.61018577e-02\\n9.65004861e-02 -3.26996267e-01 1.43701239e-02 -4.41497594e-01\\n8.57499391e-02 -5.87770879e-01 1.11087067e-02 -1.67933479e-01\\n7.76146054e-01 -4.05393720e-01 3.07848398e-02 1.30273372e-01\\n1.00030296e-01 2.50005275e-01 4.75976914e-02 -2.75536440e-02\\n-2.63364404e-01 -3.63615125e-01 -4.76867668e-02 -2.40496412e-01\\n5.13928890e-01 4.85458016e-01 -2.06249937e-01 6.19305037e-02\\n1.72705695e-01 -3.29640627e-01 -5.07084548e-01 -2.68978685e-01\\n-2.32588470e-01 -2.16017082e-01 -6.37931287e-01 -4.84856725e-01\\n-1.31795168e-01 -9.87995788e-02 -1.63614437e-01 6.49480581e-01\\n-2.68594474e-01 -3.20474416e-01 -4.77039777e-02 -5.23691773e-01\\n1.64337054e-01 -2.48191327e-01 1.27129167e-01 -1.91941082e-01\\n-2.64397830e-01 -4.88260150e-01 2.23465860e-02 -2.36735702e-03\\n-1.11003906e-01 -1.45433888e-01 4.82440135e-03 -2.79917747e-01\\n-3.69830012e-01 -5.28301001e-01 3.94007176e-01 1.53065205e-01\\n3.74419272e-01 1.69714421e-01 2.34437823e-01 1.02108106e-01\\n2.52446979e-01 -1.65792555e-01 3.10008768e-02 -3.82771164e-01\\n1.42912179e-01 1.09709008e-03 6.10804498e-01 -2.29342028e-01\\n1.50328115e-01 1.45601466e-01 -1.68598771e-01 -2.07371954e-02\\n3.42909783e-01 6.26643598e-02 8.41468722e-02 -1.82631075e-01\\n3.20092678e-01 -4.23888743e-01 -1.54926941e-01 1.58292919e-01\\n-4.73851152e-03 5.73954642e-01 -4.60129092e-03 -3.93465519e-01\\n-2.09658086e-01 4.13632423e-01 -2.46579535e-02 -1.67109922e-01\\n-1.99939683e-01 1.60442561e-01 -2.62140095e-01 1.86097726e-01\\n-4.25574519e-02 -1.94411874e-01 -3.34699184e-01 -1.41411692e-01\\n-9.03424323e-02 2.73254693e-01 2.99515814e-01 1.53691620e-01\\n-4.48876098e-02 -3.81153733e-01 -1.52592167e-01 7.96307102e-02\\n3.03573072e-01 3.83774519e-01 8.97634923e-02 -2.53035575e-01\\n-3.86298336e-02 2.58262277e-01 -1.69947296e-01 1.72767118e-01\\n-2.09663615e-01 1.81314908e-02 -5.26860476e-01 -2.88891226e-01\\n-1.26227543e-01 -3.33087802e-01 1.24050312e-01 3.58696729e-01\\n1.40719503e-01 1.88418925e-02 7.50028268e-02 -4.36043829e-01\\n3.87669742e-01 9.33569819e-02 2.14441881e-01 2.08596408e-01\\n-6.02947827e-03 5.44767737e-01 -5.13728820e-02 -5.89922443e-02\\n-1.58588693e-01 -2.42266562e-02 -2.30279207e-01 -1.47303686e-01\\n-1.54793113e-02 -4.47216570e-01 -1.50253311e-01 4.47553694e-01\\n7.76415542e-02 -3.25555980e-01 -2.08210409e-01 2.25479960e-01\\n2.58214884e-02 -2.12774947e-01 -2.40443587e-01 1.96861088e-01\\n2.23486498e-01 1.35469928e-01 3.04366291e-01 -4.62919235e-01\\n-8.35931078e-02 3.00603639e-02 -1.96293905e-01 5.45302272e-01\\n1.34474903e-01 1.69315279e-01 -1.61481097e-01 -2.26466194e-01\\n4.37355399e-01 -2.03286231e-01 -6.57850131e-02 2.33856831e-02\\n1.06682569e-01 -1.11521319e-01 -3.49828750e-01 5.52670844e-02\\n-5.65088578e-02 -2.70249337e-01 6.94669709e-02 4.74213157e-03\\n1.05160117e-01 4.85265255e-02 -5.60092211e-01 -2.81867564e-01\\n-2.95326650e-01 -1.25853807e-01 8.79566669e-02 -4.27554995e-01\\n8.79403353e-02 -9.02630463e-02 -6.39229536e-01 3.32679212e-01\\n-2.11237013e-01 -1.18213251e-01 1.75968915e-01 3.87088023e-02\\n-4.12068099e-01 -1.64926305e-01 1.42290413e-01 3.00444782e-01\\n-2.47365698e-01 -1.97585940e-01 -4.48082350e-02 -9.85156655e-01\\n1.39615819e-01 -4.13161851e-02 -7.39687085e-02 2.45203048e-01\\n-7.69408345e-02 -7.33268499e-01 1.25889406e-01 -3.64666820e-01\\n-6.76216930e-02 -6.41948031e-03 -1.50699005e-01 -5.01313984e-01\\n1.13210909e-01 -1.70278847e-02 -2.16318071e-01 4.94197339e-01\\n-3.73672336e-01 2.97962636e-01 -8.10647085e-02 8.12380537e-02\\n6.98016509e-02 -3.23110044e-01 1.87229127e-01 -3.42388660e-01\\n-4.26362872e-01 -1.54664084e-01 -2.97529280e-01 -2.75209755e-01\\n-1.16788363e-02 -3.35932612e-01 -2.44856432e-01 1.28172338e-01\\n4.14402068e-01 8.37660059e-02 -1.10845692e-01 -1.61402941e-01\\n1.37393013e-01 -4.63932842e-01 1.89728569e-02 -1.95594743e-01\\n-7.16201738e-02 -1.77967533e-01 1.21252045e-01 5.96221201e-02\\n7.49127641e-02 -3.83069605e-01 4.60307598e-01 -3.08368385e-01\\n-4.09402162e-01 -5.54539263e-02 8.25899094e-02 -7.30063170e-02\\n3.73752505e-01 -5.27427912e-01 -9.53287259e-02 2.53553867e-01\\n8.95565450e-02 4.90040965e-02 1.45704359e-01 -1.09710388e-01\\n-1.32416531e-01 3.32815111e-01 -4.25824970e-01 1.89764500e-01\\n8.64145935e-01 1.31961837e-01 1.53689817e-01 1.81878939e-01\\n2.13383749e-01 2.90007263e-01 4.89651352e-01 3.65276486e-02\\n-1.13949902e-01 3.58917564e-01 5.82671277e-02 -4.99208272e-01\\n-6.46283180e-02 -7.04978481e-02 -2.65846848e-01 -4.21163619e-01\\n5.73399127e-01 4.99142677e-01 -2.68035978e-01 -2.08846241e-01\\n-1.38075918e-01 -8.09096247e-02 2.34304592e-01 -8.25008899e-02\\n6.79305987e-03 -1.17978409e-01 5.43559849e-01 -1.11066857e-02\\n2.57869542e-01 5.90674579e-01 -2.20843449e-01 -3.89542550e-01\\n-1.36682928e-01 1.22545168e-01 4.86585572e-02 5.18713832e-01\\n-1.89380556e-01 2.76773602e-01 -2.64079999e-02 1.20500043e-01\\n-1.42428353e-01 1.01841144e-01 2.35280812e-01 3.36247310e-02\\n1.92598119e-01 7.48084560e-02 2.56457388e-01 4.77919519e-01\\n3.16520274e-01 4.78911072e-01 3.53773743e-01 1.71004906e-02\\n3.77350420e-01 6.31164432e-01 3.59651387e-01 2.35680759e-01\\n-1.11265063e-01 5.35906218e-02 3.26568447e-02 -8.02013129e-02\\n3.66984695e-01 3.24954271e-01 1.58921152e-01 9.29159880e-01\\n4.10655946e-01 2.79419482e-01 7.83787429e-01 -6.16033554e-01\\n-4.08982426e-01 1.28367066e-01 4.73427802e-01 -3.94076914e-01\\n-1.53975725e-01 9.97934118e-02 -2.67411977e-01 1.06774047e-01\\n-5.25260270e-01 -1.96036577e-01 -5.87552227e-02 4.93013710e-02\\n5.79093210e-02 -2.38608196e-02 -2.39395544e-01 5.57023771e-02\\n-1.70425415e-01 -1.44715697e-01 -4.81284797e-01 -6.27614334e-02\\n-1.92634031e-01 -1.01945490e-01 -9.18012187e-02 -1.92142069e-01\\n-1.12601012e-01 -3.46467227e-01 -1.49029762e-01 -1.72512997e-02\\n3.50676805e-01 -2.07750034e-02 6.39625778e-03 -1.84406146e-01\\n2.12827221e-01 3.57400656e-01 5.73160112e-01 -4.71568927e-02\\n6.14709333e-02 -2.17457592e-01 -2.00597003e-01 8.66437182e-02\\n1.16189495e-01 2.56672446e-02 5.00885732e-02 4.15923715e-01\\n-2.90545017e-01 -3.98523286e-02 8.89121965e-02 3.66499841e-01\\n-4.37477410e-01 -5.54743409e-02 -1.43565804e-01 2.50385910e-01\\n1.18160158e-01 2.05749154e-01 -2.73230851e-01 2.23534301e-01\\n-1.76171213e-01 -4.98140484e-01 3.76931012e-01 -1.86177120e-01\\n-5.55484071e-02 1.13522485e-01 1.48661166e-01 1.06151067e-01\\n-2.98583746e-01 -1.50560280e-02 -7.38669261e-02 2.43403733e-01\\n1.17248699e-01 3.90392631e-01 -2.88708091e-01 -2.08459586e-01\\n-1.98375627e-01 1.91929340e-01 -1.61302656e-01 9.50233117e-02\\n-4.86731194e-02 4.19884473e-01 5.19586727e-02 7.03756213e-02\\n3.32891434e-01 3.86182740e-02 -2.57498175e-01 -2.73904592e-01\\n-1.58494756e-01 -2.86519676e-01 4.40173931e-02 2.00525895e-02\\n2.43188187e-01 -4.20273751e-01 -1.18139595e-01 -2.74821341e-01\\n-1.39369920e-01 -3.49531591e-01 -3.17811519e-02 -6.11166731e-02]]',\n", + " 'About our client Our Client is a growing Swiss consulting and technology firm with more than 20 employees. He primarily serves banks, insurers, investment firms and e-commerce companies. Both global and local players belong to his clients. Our Client offers products and services in quantitative finance, predictive analytics, machine learning, software engineering and business consulting. Your responsibilities In this role, you will primarily be working with his clients but also with his internal development team and contribute to the design and implementation of the next generation of financial industry applications. You will work in a challenging and varying environment with both national as well as international clients. Your profile Master or Bachelor in computer science or electrical engineering Multiple years of experience in C#/.Net development including Asp.Net and Entity Framework Solid knowledge in JavaScript including state of the art frameworks like AngularJS Experience in SQL, C/C++, Python and Java is a plus Broad knowledge of software development processes, principles and practices (like Scrum, Kanban, extreme programming, SOLID, TDD, continuous integration etc.) Interested in new technologies and methods and able to incorporate them into projects and products Team player with a reliable and customer-oriented working attitude with the ability to understand and approach complex problems Fluent in English, German is an advantage Your chance Challenging and interesting projects in the fintech domain Work with new technologies Work within an interdisciplinary team of experts Modern and flexible collaboration methods and a flat hierarchy Interested? Please do not hesitate to find out more about this unique opportunity and send your complete application file to jobs@oneagency.ch. Ort: Zürich Spezialisierung: JAVA Entwicklung Scrum (Methode) JavaScript C# / C++ / C .NET Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 1140',\n", + " '[\"Collaboration\", \"Complex Problem Solving\", \"Reliability\", \"Consulting\"]',\n", + " '[\"ASP.NET\", \"Test-Driven Development (TDD)\", \"Computer Science\", \"Machine Learning\", \"Continuous Integration\", \"Industrialization\", \"Python (Programming Language)\", \"Scrum (Software Development)\", \"Entity Framework\", \"Software Engineering\", \"Investments\", \"C (Programming Language)\", \"Finance\", \"E-Commerce\", \"Electrical Engineering\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Predictive Analytics\", \"Banking\", \"Software Development\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Extreme Programming\", \"Integrated Product Team\"]',\n", + " \"['English', 'Javanese']\"],\n", + " ['75',\n", + " 'backend sw engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.68256277e-01 2.80966550e-01 3.44677925e-01 5.30506372e-02\\n5.80511034e-01 -2.47638822e-01 7.77832866e-02 2.96363652e-01\\n-1.86372668e-01 -3.81059796e-01 -8.01259801e-02 -1.91526100e-01\\n-1.20249137e-01 4.19630893e-02 6.58501759e-02 2.97487617e-01\\n2.96830416e-01 1.03520900e-01 -2.24871874e-01 3.48558217e-01\\n2.44660843e-02 -2.33520754e-02 -7.16324151e-02 7.10306168e-01\\n3.73393893e-01 7.64411092e-02 -7.30364174e-02 3.10215969e-02\\n-2.69114822e-01 -2.33520836e-01 3.59915376e-01 8.74466226e-02\\n-2.01426968e-02 -2.21706823e-01 8.55944529e-02 1.63908675e-02\\n-2.02809051e-01 3.03395186e-02 -7.03047067e-02 1.84850901e-01\\n-3.49794418e-01 -3.19804043e-01 3.57922874e-02 1.16022877e-01\\n-2.03592315e-01 -3.27240318e-01 -7.38833472e-02 -8.32037814e-03\\n1.08916402e-01 -5.48914671e-02 -5.44368207e-01 4.32967663e-01\\n-2.85363168e-01 -2.13028684e-01 3.27406317e-01 4.80463058e-01\\n7.07191764e-04 -5.72555006e-01 -2.74876982e-01 -3.11568081e-01\\n-7.87170604e-04 -2.16793537e-01 9.30675864e-02 -2.66013175e-01\\n2.65337527e-01 -1.99370328e-02 6.45290688e-02 3.96281332e-01\\n-7.15952098e-01 -7.56770745e-02 -2.58975267e-01 4.84445971e-03\\n-3.44652683e-01 -1.32466108e-01 -3.00590098e-01 -7.25278556e-02\\n-6.71878159e-02 3.16180170e-01 -2.17432920e-02 6.17913567e-02\\n-1.51244149e-01 3.00630808e-01 -9.61166099e-02 1.84126168e-01\\n2.33807787e-01 1.18075542e-01 1.84917077e-01 3.30178261e-01\\n-4.02723163e-01 4.94906694e-01 2.78163515e-02 -1.89738944e-01\\n2.46067822e-01 2.03865394e-01 4.66537535e-01 7.31082112e-02\\n-3.48280333e-02 1.81059256e-01 -2.56648839e-01 1.59588724e-01\\n2.00172037e-01 -3.17932218e-01 2.00379938e-02 -1.10025086e-01\\n-8.66630152e-02 1.95057467e-02 4.45732585e-04 2.31951535e-01\\n-2.83212394e-01 4.38437521e-01 2.28525981e-01 -1.96417868e-01\\n-7.44504780e-02 -4.96552169e-01 -1.17808118e-01 -2.58486811e-02\\n-1.42118305e-01 1.98162153e-01 2.90167809e-01 1.20146722e-01\\n1.79669514e-01 5.00745960e-02 1.73523605e-01 9.51189220e-01\\n-2.46720817e-02 1.25142261e-01 -1.97533846e-01 2.33240172e-01\\n2.42920592e-01 -1.90623596e-01 1.76015064e-01 3.12252760e-01\\n1.64266855e-01 1.83322039e-02 -1.87562793e-01 3.77678484e-01\\n-2.49157727e-01 -6.96034804e-02 -3.38936239e-01 1.09828226e-01\\n-1.85315907e-01 -5.79838157e-01 6.25603855e-01 1.71961352e-01\\n2.00974256e-01 1.01519758e-02 5.39434999e-02 -7.08785728e-02\\n-7.03627914e-02 2.46599570e-01 7.77274892e-02 1.78365037e-01\\n-3.97517234e-01 -2.17392102e-01 -1.14692204e-01 2.54033774e-01\\n-2.28492916e-01 7.52320215e-02 -4.59703095e-02 -4.00270000e-02\\n2.37886637e-01 5.03434539e-02 -3.75742763e-01 1.42910615e-01\\n-1.12772316e-01 -2.28844285e-01 -1.34519503e-01 3.83624822e-01\\n-7.34532773e-02 2.68917799e-01 5.40079512e-02 -7.69566670e-02\\n5.54528654e-01 1.61391243e-01 1.55689299e-01 -1.64353289e-02\\n2.59011865e-01 -1.06625922e-01 3.07998925e-01 1.54668242e-01\\n-6.65170670e-01 1.90961540e-01 -2.93293837e-02 -1.18123017e-01\\n7.81614110e-02 1.31149411e-01 2.44318053e-01 -3.87164861e-01\\n-1.18726470e-01 -1.59455091e-01 -3.86809468e-01 -3.32343668e-01\\n-2.47529522e-01 9.23015028e-02 3.47663224e-01 -2.65317112e-01\\n-4.82774228e-02 5.91426976e-02 -3.72780293e-01 -1.42033011e-01\\n1.64764598e-01 1.58674031e-01 3.43571417e-02 8.71408135e-02\\n-4.59054932e-02 -6.15433395e-01 -1.43101104e-02 -5.04064023e-01\\n-6.24376178e-01 6.46936819e-02 -3.60657811e-01 2.46049732e-01\\n-2.42124051e-02 1.28714904e-01 -9.33485851e-02 2.03563452e-01\\n-3.41948122e-01 6.93769604e-02 1.14815541e-01 1.63760811e-01\\n1.60189509e-01 -6.42544180e-02 -4.50130522e-01 4.45112824e-01\\n-2.10934803e-01 5.23637235e-01 2.21961200e-01 -7.07449436e-01\\n6.36946261e-01 1.72863886e-01 -3.61249298e-02 -4.06198651e-01\\n3.93998146e-01 -3.90469640e-01 -1.74895655e-02 8.44453499e-02\\n-2.60609835e-01 -2.46748820e-01 3.50345880e-01 -2.54884869e-01\\n-3.57528716e-01 5.20105898e-01 1.54569283e-01 1.10955499e-01\\n2.70659983e-01 -2.81114399e-01 -4.63892668e-02 1.07461095e-01\\n-9.90929604e-02 -2.05803499e-01 -3.38931829e-01 5.04897423e-02\\n-9.08693597e-02 -4.78580534e-01 -1.01777166e-01 -4.82099354e-01\\n-1.62538871e-01 -3.30503732e-01 -2.43613437e-01 3.15286875e-01\\n2.02044815e-01 1.45659372e-01 7.61852860e-02 -1.54940626e-02\\n-6.57685176e-02 -7.43359923e-01 -9.27251130e-02 -1.06826294e-02\\n5.37342727e-01 1.67797074e-01 2.22710315e-02 -9.00486112e-02\\n3.53892031e-03 4.98980403e-01 -3.74690175e-01 -3.90252203e-01\\n5.71420491e-02 1.52028054e-01 -3.06195877e-02 -2.02539220e-01\\n5.28162764e-03 4.07761842e-01 -2.38233924e-01 1.35247439e-01\\n-5.10711111e-02 -8.85524303e-02 4.05885488e-01 -1.31611060e-02\\n-3.47480059e-01 -1.97392955e-01 -9.28023532e-02 1.45437539e-01\\n-5.24388373e-01 -1.30381510e-01 5.59510589e-01 2.86901951e-01\\n1.90427989e-01 2.36356452e-01 2.60759771e-01 -9.23052505e-02\\n-1.39417976e-01 -2.85702348e-01 1.08309023e-01 1.53566405e-01\\n-3.82178137e-03 1.11081935e-01 -1.30673394e-01 -5.21439373e-01\\n-3.56062269e+00 -5.72392419e-02 2.28134543e-01 -2.83745587e-01\\n1.84516937e-01 -1.33128716e-02 -6.78385142e-03 3.67290564e-02\\n-3.99421692e-01 6.83811009e-02 -2.16967925e-01 -1.92042127e-01\\n4.35629264e-02 3.56590509e-01 7.23295435e-02 1.37255475e-01\\n1.43693984e-01 -2.57922351e-01 -1.95843816e-01 3.23520690e-01\\n-1.59120247e-01 -6.54160619e-01 1.07833773e-01 5.10134958e-02\\n1.85165629e-01 1.51602179e-01 -3.37271720e-01 -2.79328637e-02\\n-7.37449527e-02 -2.80705243e-01 -9.30318311e-02 -1.46301761e-01\\n-2.10048124e-01 3.16557288e-01 1.60904914e-01 -1.03805587e-01\\n-7.55465627e-02 -3.03779960e-01 -5.29515669e-02 -4.60794389e-01\\n1.47117585e-01 -5.53129137e-01 3.23036462e-02 -1.01737969e-01\\n7.63723314e-01 -2.43185744e-01 1.68201491e-01 -1.92443337e-02\\n1.34243369e-01 1.03382960e-01 -2.04743315e-02 3.98349464e-02\\n-2.16008723e-01 -3.03375393e-01 -3.02219372e-02 -2.41419956e-01\\n4.70418245e-01 4.26415265e-01 -2.55726814e-01 -4.89498526e-02\\n9.98428166e-02 -3.56135607e-01 -2.20863923e-01 -2.58219093e-01\\n-1.28375947e-01 -1.67964280e-01 -7.53873765e-01 -4.53482836e-01\\n-1.39948219e-01 -1.30637571e-01 -1.79183066e-01 6.85823739e-01\\n-3.26341331e-01 -4.67525035e-01 4.03417125e-02 -5.45589864e-01\\n9.74138454e-02 -2.54920065e-01 7.36849010e-02 -1.48353577e-01\\n-2.53879339e-01 -4.79702592e-01 9.93387476e-02 -2.29159947e-02\\n-1.47317365e-01 -1.29291221e-01 -1.78953316e-02 -1.56996712e-01\\n-3.52823853e-01 -2.84348994e-01 3.98072630e-01 1.54219553e-01\\n3.36670429e-01 1.61767811e-01 3.46327454e-01 9.29220691e-02\\n2.54116535e-01 4.29166704e-02 1.13745682e-01 -2.56963491e-01\\n1.17407493e-01 -1.33167744e-01 6.75389588e-01 -2.10271806e-01\\n-3.06424163e-02 2.17618912e-01 -1.58588171e-01 -1.52335107e-01\\n4.65653092e-01 -3.48148644e-02 -4.37473841e-02 -9.63325799e-02\\n3.44315141e-01 -4.37570572e-01 -1.39008015e-01 1.31856829e-01\\n1.22326307e-01 7.11004436e-01 6.48837164e-02 -3.90598357e-01\\n-3.15256923e-01 5.10156810e-01 -1.70436800e-02 -4.39828150e-02\\n-1.38245210e-01 9.51706916e-02 -1.49762645e-01 1.48976564e-01\\n1.69290587e-01 -2.52623677e-01 -1.34392485e-01 -2.07254682e-02\\n-1.28508016e-01 1.82498679e-01 2.94994891e-01 1.21286921e-01\\n-7.36759230e-02 -3.18882346e-01 -2.82738686e-01 2.13413090e-01\\n1.78033501e-01 3.21200728e-01 2.33400777e-01 -2.96987057e-01\\n-8.88423845e-02 2.74162829e-01 -6.39112070e-02 2.36131728e-01\\n-1.91125125e-01 1.17985599e-01 -5.77232420e-01 -1.51990280e-01\\n-1.82451352e-01 -3.55341643e-01 -9.63377487e-03 3.92011106e-01\\n1.12721696e-01 -2.80157998e-02 1.37635335e-01 -4.28060919e-01\\n3.83078098e-01 1.65574297e-01 2.16329724e-01 3.94830592e-02\\n2.24087574e-02 5.06155550e-01 -2.36281455e-02 -1.44592866e-01\\n-1.81049764e-01 -3.10048577e-03 -2.26907879e-01 -1.86938718e-01\\n9.39327627e-02 -4.24537361e-01 -1.03394493e-01 3.78989726e-01\\n1.09884910e-01 -2.03449875e-01 -2.22843081e-01 1.92236215e-01\\n1.26634508e-01 -2.22964704e-01 -2.68124551e-01 -8.59432817e-02\\n2.69510955e-01 4.22532149e-02 2.69445181e-01 -3.63558859e-01\\n-1.24990664e-01 -4.05609459e-02 -1.04681544e-01 3.71735752e-01\\n4.38280068e-02 1.25749245e-01 -2.25489825e-01 -8.71866271e-02\\n4.16496962e-01 -1.99916437e-01 -1.01017416e-01 -5.68775786e-03\\n2.14488301e-02 -2.21383125e-01 -5.36945581e-01 3.34589146e-02\\n-2.31792871e-02 -9.16041583e-02 1.03917226e-01 4.95176688e-02\\n1.12624101e-01 2.97736600e-02 -4.76847261e-01 -2.42387205e-01\\n-3.20910484e-01 -1.01022720e-01 2.21627682e-01 -3.39469522e-01\\n2.06570011e-02 -7.44875893e-02 -6.46117508e-01 2.20176965e-01\\n-2.93631554e-01 6.44078925e-02 2.09118575e-01 6.84900731e-02\\n-2.89846301e-01 -7.18417093e-02 5.40907830e-02 2.68675357e-01\\n-2.00353399e-01 -9.69718024e-02 -1.32815599e-01 -9.32604074e-01\\n2.26728067e-01 -6.84717745e-02 -6.46681637e-02 -4.70831804e-02\\n4.15480183e-03 -6.18592799e-01 1.54709801e-01 -3.55068088e-01\\n2.02562585e-02 9.17806178e-02 -2.54402548e-01 -2.93878287e-01\\n8.91731530e-02 -1.47753209e-01 -2.84847856e-01 3.83184791e-01\\n-4.57132012e-01 1.83667257e-01 1.60041936e-02 1.10351361e-01\\n-2.38874350e-02 -2.93784559e-01 2.02276498e-01 -4.16057378e-01\\n-3.50548148e-01 -1.97443083e-01 -2.71469623e-01 -3.08780611e-01\\n5.73224500e-02 -3.66917074e-01 -1.48068368e-01 6.08434752e-02\\n2.30457067e-01 4.75714169e-02 -1.31713197e-01 -2.82507241e-01\\n-3.21307369e-02 -5.15598178e-01 2.60962754e-01 -1.64898157e-01\\n4.75019254e-02 -2.06220839e-02 2.24028453e-01 9.45636630e-02\\n1.84180185e-01 -3.89262885e-01 3.92789364e-01 -3.63392323e-01\\n-3.01650137e-01 -4.81558852e-02 -5.16412966e-02 6.42930493e-02\\n2.61086762e-01 -5.41121542e-01 1.01180077e-02 1.86398819e-01\\n7.75865912e-02 7.26497918e-02 2.30011582e-01 -1.09838851e-01\\n-1.73561439e-01 1.53525159e-01 -2.96756804e-01 8.38316903e-02\\n7.66189814e-01 1.42351881e-01 1.14174858e-01 1.68061465e-01\\n9.82450545e-02 3.79284948e-01 4.92646873e-01 1.93414406e-03\\n3.30070704e-02 2.17681155e-01 3.02026719e-02 -4.71996814e-01\\n-1.98831648e-01 -5.58554381e-02 -2.32645109e-01 -3.01343143e-01\\n4.88483787e-01 3.37962657e-01 -4.36467230e-01 -3.03671569e-01\\n8.37995932e-02 -9.90793705e-02 3.49347502e-01 7.99787715e-02\\n-4.62359339e-02 -2.34577790e-01 5.53103149e-01 3.91831249e-02\\n3.02090526e-01 5.90380311e-01 -6.04438595e-02 -4.08283502e-01\\n-1.40415251e-01 2.38491431e-01 4.59875353e-02 4.55891699e-01\\n-8.67438391e-02 2.29221463e-01 -2.01717131e-02 5.56300431e-02\\n3.30250449e-02 6.81054220e-02 1.29672989e-01 1.54104605e-01\\n1.95514098e-01 1.66474506e-01 3.70199621e-01 5.40943503e-01\\n7.32200742e-02 4.85517889e-01 2.70979524e-01 5.00193834e-02\\n2.99673736e-01 6.42767489e-01 4.52486783e-01 2.01659963e-01\\n6.43692091e-02 1.64361969e-01 1.21771529e-01 -1.07977420e-01\\n3.70519519e-01 2.84178942e-01 1.81891605e-01 8.49902451e-01\\n3.34213793e-01 1.84644729e-01 7.72197366e-01 -6.86626375e-01\\n-3.28088492e-01 3.39398682e-02 4.50774461e-01 -2.42100075e-01\\n-4.00201790e-02 1.57529965e-01 -2.51336247e-01 3.51791948e-01\\n-4.80008394e-01 -1.14155754e-01 3.30991074e-02 -6.21156096e-02\\n7.45923668e-02 -9.39129516e-02 -9.83097106e-02 -1.97362620e-02\\n-1.56326681e-01 -1.46081910e-01 -2.79602110e-01 -1.78151205e-01\\n-3.31089139e-01 5.21156229e-02 -1.19059257e-01 -1.49056032e-01\\n-1.86889935e-02 -4.32440907e-01 -5.47806136e-02 1.09304845e-01\\n3.38639438e-01 -6.29020408e-02 -6.29020631e-02 -8.41925852e-03\\n1.99822500e-01 3.48794281e-01 5.95449805e-01 -7.12604076e-02\\n9.79602411e-02 -2.22206548e-01 -2.13774800e-01 7.25805014e-02\\n2.28640297e-03 -6.96777776e-02 1.04644112e-01 3.42532545e-01\\n-3.15297872e-01 -7.83983991e-02 -1.87895447e-02 2.60366470e-01\\n-4.01568830e-01 -9.28893909e-02 -1.57994911e-01 2.52415776e-01\\n-2.83473004e-02 1.41502365e-01 -2.46584997e-01 -8.50632787e-03\\n-1.97978795e-01 -3.97043020e-01 4.11216497e-01 -1.76645890e-01\\n-1.31972298e-01 2.76845545e-01 2.00490072e-01 1.43336028e-01\\n-2.52448678e-01 2.04628538e-02 -8.30664188e-02 1.74150482e-01\\n-3.00979521e-02 4.37407762e-01 -2.07550764e-01 -1.64763391e-01\\n-2.82055020e-01 3.11717063e-01 -1.00641996e-01 1.29502967e-01\\n-6.62696660e-02 2.52333671e-01 1.82071149e-01 -6.27015159e-02\\n3.45473260e-01 9.84240919e-02 -2.71901995e-01 -1.56051815e-01\\n-8.02501589e-02 -1.78788513e-01 -4.45113108e-02 -5.37209585e-02\\n1.52462572e-01 -3.73692155e-01 -6.55194223e-02 -9.74771529e-02\\n-4.11849990e-02 -3.18096995e-01 -1.56579182e-01 -1.07962815e-02]]',\n", + " \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting our BI environment. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: Bachelor's or higher degree in computer science or equivalent work experience A minimum of three years of software engineering experience Excellent knowledge with Scala or Java Expert knowledge in an enterprise class RDBMS Demonstrated ability in data modeling, ETL development, and data warehousing Experience with big data technologies, such as Kafka, Spark, and Cassandra Excellent troubleshooting and creative problem-solving abilities and analytical skills Excellent written and oral communication and interpersonal skills Advantage: experience with systems for automating deployment, scaling, and management of containerised applications, such as Kubernetes and Mesos experience with machine learning experience with encryption and cryptography standards Benötigte Skills Scala JAVA ETL Datawarehouse Business Intelligence Kryptografie / Verschlüsselung\",\n", + " '[\"Analytical Skills\", \"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " '[\"Machine Learning Methods\", \"Data Warehousing\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Mesos\", \"Apache Cassandra\", \"Encryption\", \"Cryptography\", \"Maintainability\", \"Computer Science\", \"Java (Programming Language)\", \"Data Modeling\", \"Big Data\", \"Extract Transform Load (ETL)\", \"Software Engineering\", \"Business Intelligence\"]',\n", + " \"['English', 'Polish', 'Sinhala']\"],\n", + " ['57',\n", + " 'c++ software development engineer',\n", + " 'Unterentfelden',\n", + " 'Computer Hardware & Software',\n", + " 'www.hexagon.com',\n", + " '[[-1.54618099e-01 3.89143944e-01 5.09049058e-01 -9.65741798e-02\\n5.67536414e-01 -1.22960091e-01 3.81881520e-02 2.98756510e-01\\n1.69447549e-02 -3.23508859e-01 -2.24941477e-01 -2.90438056e-01\\n-3.86461541e-02 -5.35851857e-03 8.62632096e-02 5.29451251e-01\\n2.92639971e-01 1.63329821e-02 -1.65439174e-01 4.00280774e-01\\n6.70399740e-02 -1.30536363e-01 2.01959938e-01 6.72956049e-01\\n3.42955559e-01 -1.08423401e-02 2.89842095e-02 -3.85596324e-03\\n-2.37996221e-01 -1.99050456e-01 3.79731923e-01 5.61525002e-02\\n-2.26014644e-01 -4.15623635e-01 6.20941594e-02 1.91115588e-01\\n-1.41476810e-01 -3.33002470e-02 -2.62992252e-02 1.44758776e-01\\n-5.25140822e-01 -3.53081107e-01 4.92205285e-02 -2.67142914e-02\\n-2.35074744e-01 -3.20273072e-01 1.25041455e-01 -4.27913480e-02\\n-2.77809538e-02 9.13154632e-02 -4.32981879e-01 3.22847962e-01\\n-2.56377965e-01 -1.72818854e-01 3.14492792e-01 6.58517838e-01\\n-5.39667271e-02 -4.93250698e-01 -3.99023503e-01 -2.53276348e-01\\n7.95491114e-02 -1.47057194e-02 -6.60235574e-03 -2.35741213e-01\\n4.19521838e-01 -9.13119540e-02 -1.21985853e-01 2.98219681e-01\\n-7.44005322e-01 -1.05459958e-01 -2.86731422e-01 -2.61336342e-02\\n-3.62767637e-01 -8.04213062e-02 -2.21055940e-01 -2.20309466e-01\\n-7.58841410e-02 3.58574450e-01 1.36963390e-02 7.88454153e-03\\n-1.61824793e-01 3.40631902e-01 -1.10626824e-01 2.45939761e-01\\n3.21417809e-01 2.30065927e-01 2.46290490e-01 3.01855117e-01\\n-4.49905902e-01 3.92784715e-01 1.65125445e-01 -2.68059313e-01\\n1.99164286e-01 8.76920745e-02 3.97254705e-01 1.31248310e-01\\n-3.52488048e-02 1.35279298e-01 -2.35336572e-01 2.64528424e-01\\n2.65920848e-01 -1.61506638e-01 -1.27661116e-02 -3.64867002e-02\\n-4.28374968e-02 -5.77242374e-02 4.80339862e-02 2.54126906e-01\\n-3.65552574e-01 3.78500879e-01 1.62364274e-01 -2.46197507e-01\\n-8.83050077e-03 -5.86377323e-01 -2.22073004e-01 -2.59210430e-02\\n6.17630333e-02 2.02233925e-01 2.84768641e-01 2.73241550e-01\\n3.09558481e-01 -5.99102452e-02 1.26509041e-01 9.52667296e-01\\n-6.49159849e-02 1.71797320e-01 -2.49836832e-01 5.14901161e-01\\n1.46904901e-01 -3.76003593e-01 1.68846786e-01 3.30233425e-01\\n5.89482440e-03 -8.89862105e-02 -2.00748339e-01 2.89657682e-01\\n-1.02835499e-01 -2.56204426e-01 -3.28726679e-01 1.99098542e-01\\n-1.57101363e-01 -4.88311738e-01 5.59774458e-01 -5.31339273e-03\\n4.41078916e-02 -7.15244189e-02 -1.60193771e-01 3.52091156e-02\\n-5.01323007e-02 3.35492104e-01 5.45355007e-02 4.19197232e-02\\n-3.57471675e-01 -2.40365535e-01 -2.64163077e-01 2.29739904e-01\\n-1.66869283e-01 1.75985515e-01 -2.40751207e-01 -2.41244689e-01\\n2.86476672e-01 2.20193267e-02 -4.67349827e-01 3.57372195e-01\\n-4.93327528e-02 -1.25278726e-01 -4.00690846e-02 3.29458535e-01\\n-1.75488248e-01 2.12900296e-01 5.71311451e-02 -1.99481413e-01\\n5.21703124e-01 6.31898195e-02 1.50833979e-01 -1.08988911e-01\\n3.82068306e-01 -1.06803991e-01 1.95333704e-01 1.77968040e-01\\n-6.06419981e-01 4.08256501e-01 -8.65222365e-02 1.61584560e-02\\n9.99960229e-02 -2.51125265e-02 4.64302182e-01 -2.73517698e-01\\n-1.21717393e-01 -2.42528856e-01 -3.16910386e-01 -3.59680772e-01\\n-2.47763604e-01 -3.01649794e-02 3.50776553e-01 -3.80049020e-01\\n-7.13144317e-02 2.52459884e-01 -5.92665613e-01 -3.44788842e-02\\n2.44498491e-01 2.35957220e-01 2.60260582e-01 1.52683243e-01\\n-1.90540418e-01 -5.53931236e-01 1.78228449e-02 -3.70877773e-01\\n-3.31059068e-01 1.42616451e-01 -1.59629449e-01 2.55565315e-01\\n9.54848006e-02 5.09208925e-02 -1.32721588e-01 2.83760559e-02\\n-3.29497635e-01 -1.45419668e-02 2.01949939e-01 1.10824652e-01\\n1.27135441e-01 -6.70668250e-03 -4.01907593e-01 4.87152219e-01\\n-1.50453374e-01 5.46891749e-01 9.91660282e-02 -9.85745192e-01\\n5.01998425e-01 2.71160603e-01 2.70486027e-02 -4.34481680e-01\\n6.56641424e-01 -3.80730182e-01 -9.90642980e-02 1.49804756e-01\\n-3.47977817e-01 -2.19491869e-01 2.10256264e-01 -1.93183899e-01\\n-2.38661394e-01 5.88405192e-01 7.46780485e-02 3.26739401e-02\\n2.78656602e-01 -2.15997443e-01 -1.54089645e-01 4.80760299e-02\\n-1.04387522e-01 -2.03592911e-01 -4.48495477e-01 6.27460331e-02\\n-8.64931494e-02 -4.97938931e-01 -2.37147391e-01 -5.29505908e-01\\n-1.32020146e-01 -3.72561216e-01 -1.65834263e-01 2.56583840e-01\\n1.87403455e-01 7.21768439e-02 5.18181361e-02 4.05724421e-02\\n-1.98745161e-01 -7.35531271e-01 -8.36018249e-02 4.70702536e-02\\n2.87959218e-01 2.49204084e-01 1.54015720e-01 4.37249728e-02\\n5.36141032e-03 5.35523713e-01 -3.07178229e-01 -2.22894415e-01\\n1.28105760e-01 1.66731790e-01 -2.49532182e-02 -4.97771055e-02\\n1.76257998e-01 4.02080834e-01 -2.35741422e-01 7.36688077e-02\\n-1.21377960e-01 8.22339803e-02 3.63423914e-01 -7.93753043e-02\\n-2.06546098e-01 -2.36631289e-01 -6.38097897e-02 2.39078268e-01\\n-6.17504120e-01 -2.92727828e-01 5.40913045e-01 1.39390618e-01\\n7.89543018e-02 9.67703983e-02 3.77769232e-01 -2.06822544e-01\\n-1.84880599e-01 -8.94260630e-02 1.43946320e-01 1.54490948e-01\\n5.26454076e-02 1.35100922e-02 -9.28519964e-02 -5.59488237e-01\\n-3.15681767e+00 -5.34394942e-02 9.84933823e-02 -2.42253110e-01\\n1.35125652e-01 -1.21987276e-01 7.66179115e-02 -3.80421393e-02\\n-3.40037465e-01 1.08533345e-01 -1.79354280e-01 -9.04224962e-02\\n1.36228815e-01 2.71269530e-01 1.35766849e-01 1.48275822e-01\\n8.66556838e-02 -3.32028836e-01 -5.33029623e-03 4.03992951e-01\\n-8.77189934e-02 -7.13490546e-01 1.83653161e-01 -7.43045956e-02\\n3.00741404e-01 5.16787060e-02 -4.52029556e-01 -1.43654272e-01\\n-2.52759218e-01 -2.78138578e-01 1.49115935e-01 -1.74116760e-01\\n-1.21141948e-01 3.53979588e-01 2.08349809e-01 -1.13166399e-01\\n1.40428826e-01 -3.03774476e-01 -4.23392542e-02 -4.20055956e-01\\n3.86209786e-02 -5.99688649e-01 2.72603780e-02 -5.20411618e-02\\n5.83321452e-01 -2.11528897e-01 1.95961818e-01 1.84097171e-01\\n1.20724119e-01 2.78540641e-01 3.58227342e-02 -2.43673250e-02\\n-2.24705845e-01 -2.85149634e-01 -8.39482918e-02 -1.20878614e-01\\n5.52769601e-01 5.23924172e-01 -2.22827509e-01 -2.98601203e-02\\n-2.84989569e-02 -2.74463177e-01 -5.69567621e-01 -3.52037907e-01\\n-1.79550514e-01 -9.86900404e-02 -8.01472247e-01 -4.09514010e-01\\n-1.31633580e-01 -1.47927210e-01 -1.36325583e-01 6.01689935e-01\\n-3.48467201e-01 -3.26819628e-01 1.20757688e-02 -4.60074574e-01\\n1.86222658e-01 -2.30171859e-01 4.63781739e-03 -1.90983057e-01\\n-2.02970862e-01 -4.23297822e-01 1.45552441e-01 1.12203717e-01\\n-1.29378811e-01 -1.30980834e-01 2.05250382e-02 -3.02450716e-01\\n-2.34245285e-01 -4.51907545e-01 4.98113096e-01 9.35951620e-02\\n3.76581460e-01 -2.46702619e-02 2.19077557e-01 8.70767224e-04\\n4.49835509e-01 -8.15717429e-02 8.94814804e-02 -5.20929217e-01\\n-5.98815121e-02 4.44927625e-02 6.23434901e-01 -2.84598112e-01\\n-6.73542991e-02 1.20774508e-01 -1.66066527e-01 -3.14577296e-02\\n4.10794973e-01 6.30336627e-02 6.72706440e-02 -2.73384869e-01\\n2.53057390e-01 -4.63822275e-01 -1.91310689e-01 8.41301605e-02\\n4.41267230e-02 6.45666003e-01 -7.21386895e-02 -4.60637689e-01\\n-2.05543861e-01 3.93736243e-01 -6.58919439e-02 -1.87078550e-01\\n-1.61248982e-01 1.62874460e-01 -3.57508391e-01 2.48478547e-01\\n1.56116299e-02 -1.42154545e-01 -3.87192786e-01 -5.57514466e-02\\n-2.15552896e-02 2.26344749e-01 2.88914800e-01 1.47699311e-01\\n-9.48880315e-02 -3.94125104e-01 -6.11509271e-02 1.26902714e-01\\n2.44433612e-01 2.08002940e-01 7.47048557e-02 -3.43898803e-01\\n7.62036964e-02 3.16252023e-01 -1.96142450e-01 2.10682303e-01\\n-1.61187977e-01 1.02039158e-01 -4.93739396e-01 -2.25151464e-01\\n-2.17559651e-01 -2.12366790e-01 9.61583257e-02 3.38968277e-01\\n1.81513876e-01 -9.73146502e-03 1.17653251e-01 -5.90803027e-01\\n3.63143325e-01 1.22776702e-01 1.91177860e-01 1.50318995e-01\\n1.18326999e-01 6.55165911e-01 1.51795167e-02 -1.88765362e-01\\n-1.80702955e-01 3.14146020e-02 -1.24567062e-01 -2.52788216e-01\\n5.77417389e-03 -4.29123878e-01 -1.20776571e-01 4.04752254e-01\\n9.66578946e-02 -2.58190721e-01 -2.21192017e-01 2.18194321e-01\\n1.09097309e-01 -2.81112015e-01 -2.06215680e-01 7.34604895e-02\\n1.89475611e-01 8.28502178e-02 2.65355200e-01 -4.25878108e-01\\n7.85965621e-02 -1.06037922e-01 1.85314212e-02 3.82015914e-01\\n1.61986902e-01 8.66450071e-02 -2.14960858e-01 -2.33081266e-01\\n3.65050465e-01 -3.06593049e-02 -9.85030085e-02 -1.00614466e-01\\n8.86598006e-02 -2.11213365e-01 -3.47770154e-01 4.16011848e-02\\n3.07001527e-02 -1.70261025e-01 -1.72148217e-02 4.02693078e-02\\n1.29924491e-01 3.55638415e-02 -5.64481854e-01 -2.84480691e-01\\n-2.45546892e-01 -1.99344214e-02 -6.91005737e-02 -4.56210077e-01\\n9.63350199e-03 2.17225007e-03 -6.37623072e-01 2.32062608e-01\\n-1.74986616e-01 -1.19105093e-02 1.50779977e-01 8.22377279e-02\\n-3.78822297e-01 -2.72701830e-01 1.18326984e-01 1.56765163e-01\\n-2.19174176e-01 -1.89722896e-01 -3.91815566e-02 -9.95388150e-01\\n2.10241348e-01 -2.96791047e-02 6.11168938e-03 1.64729521e-01\\n-1.38270035e-01 -8.34559977e-01 7.99586847e-02 -4.59912628e-01\\n-5.03978617e-02 2.40749903e-02 -1.55293316e-01 -4.21584427e-01\\n3.18494043e-03 -1.28338132e-02 -1.93308219e-01 3.53885561e-01\\n-4.86355841e-01 4.53691512e-01 -9.24880803e-02 1.28068745e-01\\n-4.22302708e-02 -2.96799242e-01 1.24242246e-01 -4.30849582e-01\\n-4.45544690e-01 -1.01224877e-01 -3.42922360e-01 -2.43550718e-01\\n-8.01290423e-02 -2.14901939e-01 -1.86146945e-01 7.90995583e-02\\n3.49012494e-01 1.16718866e-01 -9.44228992e-02 -1.45397976e-01\\n-1.29492208e-02 -3.70724142e-01 1.52573809e-01 -2.36557230e-01\\n2.96522360e-02 -1.05543584e-01 2.60140777e-01 9.28126741e-03\\n1.39393806e-01 -3.34815681e-01 4.48461026e-01 -3.06142509e-01\\n-3.73616040e-01 -4.76591988e-03 8.22496414e-02 4.78394739e-02\\n4.15680468e-01 -4.46204513e-01 7.08519369e-02 3.15320730e-01\\n-1.03978328e-02 7.72280395e-02 3.03771585e-01 -1.84963062e-01\\n-1.51519775e-01 1.76267520e-01 -5.08940935e-01 7.60158673e-02\\n6.44866407e-01 2.23713979e-01 1.94563866e-01 1.21470325e-01\\n8.55949819e-02 2.62387365e-01 5.29690027e-01 -9.65695828e-02\\n-8.17004591e-02 3.01401079e-01 1.18478060e-01 -4.89300370e-01\\n-1.68362871e-01 3.42328362e-02 -2.10482910e-01 -3.36371869e-01\\n5.87874711e-01 4.00158763e-01 -3.26516360e-01 -2.25504622e-01\\n-1.75248578e-01 -2.00424492e-01 2.48733640e-01 -9.29925963e-02\\n3.47641222e-02 -1.46142602e-01 5.25421202e-01 -1.31914811e-02\\n2.87766814e-01 6.70130134e-01 -1.39748409e-01 -3.74768436e-01\\n-6.27821237e-02 1.86250106e-01 4.95405607e-02 4.38594848e-01\\n-2.92769261e-02 2.68550515e-01 2.84384135e-02 1.50260583e-01\\n-2.28690878e-01 7.69244134e-02 1.99819177e-01 1.25651926e-01\\n1.72179699e-01 1.81311443e-01 4.19532597e-01 4.85740602e-01\\n3.44022393e-01 5.25828540e-01 2.24859208e-01 2.90669631e-02\\n5.23472309e-01 5.46586692e-01 3.70946079e-01 1.85443550e-01\\n9.28168278e-03 1.96565613e-01 3.36900800e-02 5.63553646e-02\\n4.02377874e-01 3.33543152e-01 2.30170459e-01 9.00894821e-01\\n3.10412109e-01 4.19768780e-01 8.59087229e-01 -5.77185392e-01\\n-3.81871909e-01 3.82917933e-02 4.85036314e-01 -3.99065405e-01\\n-1.15501128e-01 9.95718315e-02 -1.37473613e-01 1.99428588e-01\\n-4.26239312e-01 -2.26816311e-01 -6.75036311e-02 6.18164130e-02\\n7.81300515e-02 -6.11863472e-02 -1.94224134e-01 5.13911061e-02\\n-3.04338753e-01 -1.30060166e-01 -4.28534299e-01 -1.48547679e-01\\n-3.31156373e-01 -6.62256405e-02 -1.21509805e-01 -1.64979786e-01\\n-1.01810642e-01 -2.82223254e-01 -1.42185792e-01 -4.73085679e-02\\n2.92213887e-01 -2.70095736e-01 -2.03561604e-01 -2.46930420e-01\\n2.22086355e-01 2.54910082e-01 4.95715588e-01 -2.20354497e-02\\n1.68087900e-01 -1.77644938e-01 -2.64950603e-01 1.13510517e-02\\n1.67651191e-01 1.40842751e-01 6.50413036e-02 5.22554576e-01\\n-2.45464087e-01 -1.02193050e-01 7.51220658e-02 4.58513826e-01\\n-2.71154523e-01 -5.72787113e-02 -1.57778591e-01 7.29441792e-02\\n-2.14735549e-02 1.49690762e-01 -2.94493526e-01 1.99490208e-02\\n-1.67247891e-01 -6.37611985e-01 3.59891146e-01 -2.50506103e-01\\n-1.03410117e-01 8.73118788e-02 2.96337545e-01 2.74575025e-01\\n-1.06553182e-01 1.31165946e-03 -1.54510468e-01 2.71891892e-01\\n1.16456620e-01 3.82360667e-01 -3.56671482e-01 -1.77260950e-01\\n-1.68665811e-01 1.46800652e-01 -2.26669163e-01 7.94112086e-02\\n-9.15244296e-02 4.05253470e-01 5.24261482e-02 1.19566478e-01\\n4.05661762e-01 1.78980362e-02 -2.99085587e-01 -2.62189686e-01\\n-1.98534638e-01 -2.97964066e-01 8.36004876e-03 3.85739356e-02\\n2.90382475e-01 -2.68002659e-01 -7.38082975e-02 -2.05758408e-01\\n-2.26247638e-01 -4.50070679e-01 -3.18310373e-02 4.15710136e-02]]',\n", + " 'Hexagon Manufacturing Intelligence offers a comprehensive range of products and services for all industrial metrology applications in sectors such as automotive, aerospace, energy and medical. By empowering our customers to fully control their manufacturing processes, we enhance the quality of products and increase efficiency in manufacturing plants around the world. To strengthen our R&D Team in Unterentfelden (Switzerland) we are looking for a C++ Software Development Engineer Develop innovative Windows software in a team for our Portable industrial measurement instruments, contribute to entirely new interdisciplinary technology developments for industry automation and production intelligence! Main responsibilities Design and develop software for highest precision Portable Arms, Scanners and Laser Trackers in a team Analyse customer needs in cooperation with requirements engineering team and form functional software specifications Develop prototypes of the technical solution for validation of requirements Define, plan and implement technical as well as functional testing of the software in cooperation with test team Analyse the technical and functional quality, propose fixes and put in technical compliance Edit technical documents and media for developers, users, IT services and further relevant stakeholders Required skills Programming language C ++, Visual Studio 2012 or greater Windows System Programming Mandatory (Multi-threading environment and good knowledge of communication protocols based on USB, TCP/IP) University degree (ETH, EPFL, FH, Haute école) in Electrical Engineering, Computer Science or other relevant education At least 5 years experiences in a similar working environment Application Architecture experience SQL language skills appreciated C# and C++/CLI experience appreciated Knowledge of DevExpress recommended Knowledge of algorithms and maths Reliable analysis and synthesis skills Very good English and German skills are mandatory, French is an advantage Willingness to travel (10-20%) between Unterentfelden (CH) and Montoire (F) If you are ready to work within a culture of high-performance and feel at home in a high-tech environment and you are ready to take the challenge at Hexagon Manufacturing Intelligence, join our team. E-mail',\n", + " '[\"Editing\", \"Innovation\", \"Planning\", \"Cooperation\"]',\n", + " '[\"Common Technical Document\", \"KM Programming Language\", \"Stakeholder Requirements\", \"Computer Science\", \"High Performance Computing\", \"System Programming\", \"Industrialization\", \"C++ (Programming Language)\", \"Windows System Administration\", \"Prototyping\", \"Industrial Automation\", \"Instrumentation\", \"E (Programming Language)\", \"TCP/IP\", \"Medic\", \"C++/CLI\", \"Microsoft Visual Studio\", \"Applications Architecture\", \"ARM Architecture\", \"Functional Testing\", \"USB\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Windows Software\", \"Requirements Engineering\", \"Laser Tracker\", \"Application Environments\", \"Validations\", \"DevExpress\", \"Software Requirements Specification\", \"Technical Solution Design\", \"Software Development\", \"Language Experience Approach\", \"Algorithms\", \"Communications Protocols\", \"SQL (Programming Language)\", \"Controllability\", \"Threading (Manufacturing)\", \"Manufacturing Processes\"]',\n", + " \"['English', 'Lingala']\"],\n", + " ['84',\n", + " 'software engineer - full stack java developer (m/f)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-1.52013659e-01 3.14987391e-01 4.98675883e-01 -1.49462566e-01\\n6.19377375e-01 -6.78769723e-02 9.46942419e-02 3.59441549e-01\\n-5.46060055e-02 -3.28247279e-01 -8.47038850e-02 -2.60736674e-01\\n-3.26999873e-02 4.30207029e-02 2.16524333e-01 3.62203747e-01\\n1.75307781e-01 1.38287872e-01 -1.98144704e-01 2.09692672e-01\\n2.24972352e-01 1.75803062e-02 1.10203400e-02 6.03493869e-01\\n4.49026883e-01 5.54661714e-02 -1.17764167e-01 -9.89851262e-03\\n-3.59952360e-01 -3.18271458e-01 2.86048055e-01 -2.20888034e-02\\n-6.49549812e-02 -3.34450632e-01 6.64654234e-03 3.99620943e-02\\n-1.93437636e-01 -1.25377804e-01 8.67926478e-02 2.43884459e-01\\n-4.46313620e-01 -2.93730140e-01 2.08373979e-01 -1.08789410e-02\\n-2.32537538e-01 -2.71868497e-01 5.33793075e-03 7.86093064e-03\\n1.23631380e-01 5.12073711e-02 -5.45509934e-01 3.78219366e-01\\n-1.96481898e-01 -2.16456637e-01 2.80130923e-01 6.11890554e-01\\n3.02445032e-02 -5.38867831e-01 -3.68399858e-01 -1.80720180e-01\\n1.13001727e-01 -2.86440887e-02 5.77266403e-02 -1.08761162e-01\\n3.31922084e-01 3.57862972e-02 -6.14863038e-02 4.93751824e-01\\n-7.28502512e-01 -5.00550009e-02 -1.96709752e-01 -4.33579944e-02\\n-3.69874388e-01 -2.16356907e-02 -1.77239120e-01 -1.17191471e-01\\n-1.08489729e-01 3.76541823e-01 7.69375041e-02 4.62846756e-02\\n-1.09650023e-01 2.70926714e-01 -8.78617391e-02 1.25371963e-01\\n3.49326909e-01 1.66316420e-01 1.79949626e-01 2.84806699e-01\\n-3.59135240e-01 3.73519361e-01 1.37599751e-01 -2.78775901e-01\\n2.40665749e-01 1.02022931e-01 4.57077265e-01 1.49675861e-01\\n-1.48923546e-01 1.91349044e-01 -1.60248905e-01 2.90379882e-01\\n2.64441788e-01 -2.41746664e-01 2.42725313e-02 2.79728305e-02\\n-2.27288797e-01 -1.31982323e-02 -1.03420459e-01 4.03144151e-01\\n-3.42770696e-01 4.09669727e-01 2.35441700e-01 -1.32976085e-01\\n-1.18057735e-01 -6.43509865e-01 -9.27304551e-02 -2.66000070e-02\\n-4.11300454e-03 2.27015838e-01 3.07156414e-01 1.44650027e-01\\n1.42468497e-01 5.22581190e-02 2.42307961e-01 9.28773642e-01\\n1.53279128e-02 1.59247294e-01 -3.10776442e-01 2.67138481e-01\\n1.94132328e-01 -1.77301362e-01 1.69608220e-01 3.16468745e-01\\n5.54946363e-02 -6.26173541e-02 -7.30333626e-02 2.80940622e-01\\n-1.85103953e-01 -1.82989106e-01 -2.45965749e-01 4.43233885e-02\\n-3.64470452e-01 -3.20324123e-01 4.56060618e-01 2.12975398e-01\\n1.47280589e-01 -1.02576725e-01 -5.25261164e-02 -7.34806284e-02\\n-1.08379818e-01 4.83625680e-01 -6.45359829e-02 1.32759511e-01\\n-3.21604788e-01 -1.01441301e-01 -2.98326701e-01 3.23897451e-01\\n3.45285051e-02 -6.90036593e-03 -4.04880792e-02 -7.87153468e-02\\n3.62320393e-01 9.77900773e-02 -3.14826787e-01 3.14715594e-01\\n3.88534293e-02 -2.77465105e-01 -1.84018537e-01 8.37236717e-02\\n3.71313058e-02 1.02877013e-01 -5.72167933e-02 -3.44568670e-01\\n4.63517457e-01 1.43529117e-01 1.64343193e-01 -8.68767500e-02\\n2.46774018e-01 -2.71988004e-01 1.92623451e-01 9.61904675e-02\\n-5.74545324e-01 3.81451786e-01 -9.91794541e-02 -6.46880791e-02\\n-1.52259246e-02 8.35656449e-02 3.40527415e-01 -2.43739039e-01\\n4.49806936e-02 -1.54684111e-01 -4.05371457e-01 -4.24218118e-01\\n-2.15315282e-01 -5.56302033e-02 3.97577792e-01 -3.96517426e-01\\n-2.79720038e-01 1.92272380e-01 -4.18679506e-01 -4.86529581e-02\\n2.70251691e-01 7.74495229e-02 9.75372568e-02 1.00433484e-01\\n-1.68625742e-01 -4.96924192e-01 6.31347522e-02 -4.79828387e-01\\n-3.95207167e-01 5.58082312e-02 -1.98821679e-01 1.79806828e-01\\n-4.88716848e-02 7.27397762e-03 -1.63596481e-01 2.01401189e-01\\n-3.10167611e-01 -7.52772689e-02 1.69226721e-01 1.85118288e-01\\n3.55585635e-01 -3.29437442e-02 -4.19796795e-01 3.70267302e-01\\n-2.12005854e-01 6.05258524e-01 2.24691793e-01 -9.10604656e-01\\n5.20170152e-01 2.32071623e-01 1.29163653e-01 -3.61692876e-01\\n6.24730766e-01 -2.38394991e-01 1.31199375e-01 1.96175426e-01\\n-3.01004618e-01 -2.63884455e-01 3.00934702e-01 -1.31390914e-01\\n-2.22206622e-01 5.78279555e-01 9.26048309e-02 -5.70313260e-02\\n2.03894049e-01 -2.64398217e-01 -1.08757056e-01 4.37385589e-02\\n-1.57204531e-02 -2.20091820e-01 -2.82680720e-01 -1.50626171e-02\\n-1.03365071e-01 -5.29074669e-01 -1.71930596e-01 -3.51354390e-01\\n-2.28636026e-01 -3.40003103e-01 -2.36452207e-01 4.60241884e-01\\n1.13807186e-01 1.14731990e-01 1.60406336e-01 4.63031083e-02\\n-8.42834637e-02 -5.52983820e-01 -1.51225343e-01 1.13453895e-01\\n4.76827532e-01 2.35291198e-01 1.28665924e-01 -2.72304211e-02\\n-1.52782395e-01 4.44225460e-01 -1.69254705e-01 -2.20837906e-01\\n2.50568129e-02 1.69954792e-01 5.21501601e-02 7.94483162e-03\\n-6.90949559e-02 2.98909038e-01 -1.90549955e-01 4.69063781e-02\\n-1.05067164e-01 4.88601625e-02 3.59492719e-01 1.44397140e-01\\n-3.11700553e-01 -1.96354210e-01 -7.23533854e-02 3.20021570e-01\\n-5.60514450e-01 -1.44133985e-01 6.30275071e-01 1.89523518e-01\\n1.67969808e-01 2.18249738e-01 2.81058908e-01 -6.46038130e-02\\n-1.29435658e-01 -2.20126629e-01 6.25483915e-02 1.90288603e-01\\n9.59240124e-02 6.57864427e-03 -1.54906392e-01 -5.57151198e-01\\n-3.66709495e+00 -3.21674794e-01 2.05407217e-01 -3.87526035e-01\\n2.24158123e-01 -1.59376472e-01 3.74792777e-02 -5.64840659e-02\\n-2.05428258e-01 9.88458768e-02 -2.15622723e-01 -2.12164864e-01\\n1.42023712e-01 3.07459921e-01 -2.35642884e-02 4.35731500e-01\\n9.42200795e-02 -1.49753049e-01 -9.04236063e-02 3.25699478e-01\\n-1.89385489e-01 -6.56188071e-01 1.91409037e-01 -5.36648482e-02\\n2.29743153e-01 2.18132108e-01 -3.40216339e-01 -1.21686369e-01\\n-2.30724692e-01 -2.56748945e-01 8.31776410e-02 -2.70381123e-01\\n-1.09648369e-01 3.04436058e-01 7.92108104e-02 -9.35184509e-02\\n1.31706938e-01 -3.06655288e-01 -8.83650407e-03 -4.54950750e-01\\n7.50941709e-02 -6.27078712e-01 2.69191749e-02 -3.82305756e-02\\n7.92820156e-01 -4.23646122e-01 8.19388554e-02 1.69780940e-01\\n1.54763624e-01 2.09114775e-01 -1.37851089e-01 -1.09411791e-01\\n-1.53931648e-01 -3.36255670e-01 -3.71555462e-02 -1.84392989e-01\\n3.12065512e-01 5.85979044e-01 -1.81631461e-01 1.02423146e-01\\n8.65050554e-02 -3.31391305e-01 -3.37217778e-01 -4.62312967e-01\\n-1.95031002e-01 -2.00464517e-01 -7.34988511e-01 -4.08285916e-01\\n-9.11605656e-02 -7.35024065e-02 -2.31328994e-01 4.81819510e-01\\n-3.69307727e-01 -5.26586950e-01 4.32224898e-03 -4.69191641e-01\\n1.60464227e-01 -2.87549436e-01 -9.37615288e-04 -1.97339326e-01\\n-4.18792039e-01 -3.76754999e-01 7.56531358e-02 3.62008251e-02\\n-1.50471807e-01 -1.08118720e-01 -3.78506593e-02 -2.24661604e-01\\n-3.39920759e-01 -3.91010493e-01 4.81264979e-01 8.71512443e-02\\n3.09229970e-01 1.52905688e-01 2.10187986e-01 2.46850610e-01\\n2.70715773e-01 -3.15705866e-01 8.74501020e-02 -2.93342084e-01\\n1.35655046e-01 -1.53619098e-02 6.00271642e-01 -3.57020408e-01\\n1.71679258e-01 6.39556497e-02 -2.10834026e-01 -9.81244147e-02\\n3.96443903e-01 7.00421259e-02 -1.14076577e-01 -1.16771087e-01\\n2.11876944e-01 -4.54549164e-01 -3.27892870e-01 1.53480634e-01\\n-3.78838219e-02 5.53942442e-01 1.56106399e-02 -4.48511600e-01\\n-2.95677662e-01 4.42950070e-01 -1.33867830e-01 -2.81414390e-01\\n-2.23944098e-01 9.99811292e-02 -1.40910774e-01 1.96330965e-01\\n1.19188286e-01 -2.36660287e-01 -3.80270749e-01 -1.69880748e-01\\n-3.01252375e-03 9.91581231e-02 2.83685327e-01 7.49830306e-02\\n3.61404233e-02 -2.55435884e-01 -1.10166661e-01 2.25364920e-02\\n3.01906377e-01 2.67345279e-01 2.47903302e-01 -1.53308153e-01\\n-2.57727318e-02 1.91328034e-01 -2.80551553e-01 1.74871564e-01\\n-2.32761279e-01 -4.64997590e-02 -4.33564782e-01 -3.76308382e-01\\n-4.30411883e-02 -3.19108278e-01 5.94043322e-02 2.49856457e-01\\n1.62800565e-01 -3.94068513e-04 -8.13521296e-02 -4.79383111e-01\\n4.69607770e-01 -1.34153157e-01 2.35822797e-01 3.10918242e-01\\n3.40024158e-02 4.95612055e-01 5.46760783e-02 3.17408368e-02\\n-1.01716511e-01 -7.59381056e-02 -2.49474093e-01 -9.57049876e-02\\n5.58564141e-02 -3.24062824e-01 -9.18781459e-02 4.29501921e-01\\n3.94939072e-02 -3.58935565e-01 -9.49870497e-02 2.54377812e-01\\n-6.24632882e-03 -2.16304705e-01 -5.65836541e-02 1.95615813e-01\\n2.53782541e-01 1.21416062e-01 3.02514553e-01 -4.50497717e-01\\n-1.11187093e-01 1.60290569e-03 -1.30796805e-01 4.99308914e-01\\n1.78695589e-01 9.70774889e-02 -1.29326120e-01 -2.76138425e-01\\n4.24660414e-01 -7.25370646e-02 -1.03055663e-01 -5.31438664e-02\\n4.44369540e-02 -1.61086947e-01 -5.24770319e-01 -2.89943372e-03\\n2.28512157e-02 -1.15287147e-01 2.29626130e-02 -4.93510626e-02\\n1.51296824e-01 -3.75148766e-02 -3.62063050e-01 -3.82388532e-01\\n-3.37493032e-01 -8.73018578e-02 -5.24179414e-02 -4.16568726e-01\\n-5.35183446e-03 5.95281948e-04 -6.24756575e-01 3.41604978e-01\\n-2.75126934e-01 3.46427336e-02 9.51784775e-02 1.54588282e-01\\n-3.40726852e-01 -1.76001452e-02 1.78427130e-01 2.01702312e-01\\n-2.81614572e-01 -2.20565051e-01 1.09290175e-01 -8.67535174e-01\\n6.25886694e-02 -9.98759791e-02 -5.01983277e-02 1.10529200e-03\\n1.09972350e-01 -3.99392664e-01 1.24992162e-01 -3.57988685e-01\\n2.82402411e-02 5.10724969e-02 -7.61764795e-02 -5.82448363e-01\\n1.25016361e-01 -1.06185094e-01 -2.59459227e-01 4.08513993e-01\\n-3.88595104e-01 3.01654071e-01 1.08958885e-01 1.12777755e-01\\n5.38329519e-02 -3.41170073e-01 1.99196577e-01 -2.50295907e-01\\n-3.93673182e-01 -4.84476723e-02 -3.89033109e-01 -1.74576104e-01\\n5.82356863e-02 -1.34176061e-01 -1.92337245e-01 1.01923749e-01\\n2.61102587e-01 1.37022555e-01 -8.17436278e-02 -2.04074338e-01\\n1.63056642e-01 -4.44226444e-01 4.37822714e-02 -2.05641136e-01\\n-3.06552351e-02 -4.44442481e-02 1.19641609e-01 -7.66662508e-02\\n-3.15643772e-02 -1.99992269e-01 5.91043115e-01 -1.95216879e-01\\n-2.93505847e-01 -4.66335937e-02 7.15174377e-02 8.55314881e-02\\n3.40944499e-01 -5.18271208e-01 9.12138671e-02 3.28552485e-01\\n5.93471974e-02 1.53613970e-01 2.34052882e-01 -4.99007627e-02\\n-1.32086501e-01 3.12549889e-01 -5.03949463e-01 1.99456379e-01\\n7.58330464e-01 1.21423610e-01 9.51919332e-02 1.67282090e-01\\n2.11784631e-01 3.37930739e-01 5.50765514e-01 1.02067903e-01\\n-1.42138913e-01 3.58938187e-01 -2.59078424e-02 -6.46496415e-01\\n4.94361809e-03 -1.14232913e-01 -2.54989743e-01 -4.44882423e-01\\n5.56324482e-01 3.99009615e-01 -3.28670889e-01 -2.07943082e-01\\n-4.15909924e-02 -1.65855423e-01 5.36641441e-02 -1.22537367e-01\\n8.36050417e-03 -2.06697732e-01 5.76773286e-01 -2.45219208e-02\\n3.81942928e-01 5.32828033e-01 -1.04024626e-01 -4.31479514e-01\\n-2.11436272e-01 3.91425518e-03 1.33288920e-01 3.69787633e-01\\n-6.87014759e-02 2.45271862e-01 -1.12063035e-01 1.58983946e-01\\n8.25871229e-02 5.76661080e-02 1.42010286e-01 4.79134321e-02\\n8.32314119e-02 1.85751423e-01 1.79356813e-01 3.42706323e-01\\n2.58858800e-01 5.28152764e-01 2.55628347e-01 1.74982756e-01\\n3.99481475e-01 6.04519844e-01 3.55694264e-01 1.61918715e-01\\n-6.49639294e-02 1.32824266e-02 -1.63286835e-01 -8.08830410e-02\\n2.80871809e-01 2.71701097e-01 1.93301246e-01 8.42167199e-01\\n3.04525375e-01 1.99922547e-01 6.98669016e-01 -6.03024483e-01\\n-5.31206906e-01 -2.84119975e-02 5.33286572e-01 -2.71053165e-01\\n-1.54287487e-01 1.32848889e-01 -3.26116294e-01 1.63779929e-01\\n-5.13619602e-01 -9.44642127e-02 -5.10765873e-02 -9.32022631e-02\\n1.46036565e-01 -8.07197019e-02 -2.30095029e-01 -1.70089751e-02\\n-1.72730550e-01 -1.90615252e-01 -3.85003328e-01 -6.02812320e-02\\n-3.13139558e-01 -1.66533947e-01 -1.18718743e-01 -2.01102540e-01\\n-7.21588284e-02 -3.44249576e-01 -1.79235116e-01 1.42913252e-01\\n4.69955057e-01 -7.31411278e-02 -1.21854678e-01 -8.97288546e-02\\n-6.86200988e-03 2.69235164e-01 4.66608673e-01 -1.19274244e-01\\n9.24327001e-02 -1.18086897e-01 -2.65166670e-01 -1.49913905e-02\\n1.97604567e-01 4.23635766e-02 -9.24727507e-03 4.84428227e-01\\n-3.17772239e-01 3.65552641e-02 8.14083815e-02 2.80802608e-01\\n-4.12942976e-01 -1.21794520e-02 2.11322083e-04 4.14862454e-01\\n1.48256123e-01 2.07748875e-01 -2.89492637e-01 2.25406602e-01\\n-2.48036593e-01 -4.52533871e-01 3.92580628e-01 -1.13978498e-01\\n-4.47406881e-02 1.85066402e-01 1.94632500e-01 1.30893290e-01\\n-2.74947315e-01 -4.72730882e-02 1.34449070e-02 3.27950835e-01\\n1.49212852e-01 3.89517605e-01 -3.53329629e-01 -1.15753040e-01\\n-1.85057268e-01 2.64325917e-01 -9.13657174e-02 1.53681889e-01\\n-1.61684871e-01 3.21962178e-01 1.08942069e-01 2.02699363e-01\\n2.11249799e-01 -1.85731351e-02 -2.22650334e-01 -2.71842867e-01\\n-3.53455395e-01 -3.11012745e-01 1.71248302e-01 -1.56482831e-02\\n1.82968259e-01 -3.95491630e-01 -1.29597157e-01 -1.61594078e-01\\n-2.44051546e-01 -4.61211562e-01 -6.47406504e-02 -8.16108584e-02]]',\n", + " 'About our client Our client belongs to the leading IT companies in Switzerland. Your responsibilities Understand and prioritize product requirements and end-user needs and drivers Elicit and analyze all requirements, including business rules Design, develop and support application solutions to meet client requirements Your profile A degree in Computer Science (IT apprenticeship graduates, higher education in IT, bachelor) Demonstrated work experience and knowledge of Web Development using Java, JavaScript, Python Experience on one or more of the following (AngularJS, NodeJS, Django / Flask, Bootstrap, Knockout, AureliaJS or similar. Build Chain: SVN Git, Ant, Maven) Knowledge of databases (SQL) Experience on Agile development methodologies Excited to explore new technologies and able to quickly learn An ability to pro-actively take ownership of and analytical problem solving skills Good knowledge of the German & English language (written & spoken) Swiss nationality or valid Swiss work permit / EU passport Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung JavaScript SQL Sprachen: Deutsch Englisch Job ID: 2411',\n", + " '[\"Prioritization\", \"Problem Solving\"]',\n", + " '[\"Knockout.js\", \"Hyper SQL Database (HSQLDB)\", \"Computer Science\", \"Analytics\", \"Higher Education\", \"Activism\", \"Python (Programming Language)\", \"Web Development\", \"Flask (Web Framework)\", \"Business Card Design\", \"Django (Web Framework)\", \"Apache Ant\", \"Bootstrap (Front-End Framework)\", \"Agile Software Development\", \"Apache Maven\", \"Git (Version Control System)\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Product Requirements\"]',\n", + " \"['English', 'Bambara']\"],\n", + " ['106',\n", + " 'software development engineer i (software test intern)',\n", + " 'Lausanne',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.sophiagenetics.com',\n", + " '[[-1.45040169e-01 2.43918747e-01 2.49610946e-01 -6.05511628e-02\\n4.35218841e-01 -3.24340552e-01 2.13359501e-02 4.61109936e-01\\n-3.59165035e-02 -3.28257531e-01 -1.32986948e-01 -2.04800457e-01\\n-4.93541099e-02 4.20732200e-02 1.48836568e-01 3.60697687e-01\\n3.89183313e-01 7.73257464e-02 -1.16200820e-01 4.09679890e-01\\n6.71140254e-02 -2.16532841e-01 -6.70551881e-02 6.29718304e-01\\n3.70783478e-01 3.16479988e-02 1.83080453e-02 1.96677893e-01\\n-2.37260416e-01 -3.38546485e-01 3.34148109e-01 2.28177607e-02\\n5.55341365e-04 -3.58055234e-01 8.63800570e-02 1.60942480e-01\\n-1.67472865e-02 4.60683070e-02 -1.22591250e-01 2.13016942e-01\\n-5.81918120e-01 -2.63937026e-01 2.48504467e-02 1.55272158e-02\\n-9.84513983e-02 -4.79042977e-01 2.47301653e-01 -1.95607930e-01\\n2.14319080e-01 5.72143234e-02 -4.46977884e-01 3.43618035e-01\\n-3.38282228e-01 -2.42594972e-01 4.10583347e-01 6.00365520e-01\\n-2.38164589e-01 -5.85897863e-01 -5.78331053e-01 -2.52606601e-01\\n1.75116554e-01 -1.72457799e-01 -1.76500864e-02 -4.29261893e-01\\n4.01976734e-01 2.14231044e-01 1.91741865e-02 4.92938131e-01\\n-7.11642265e-01 -1.57387689e-01 -3.42758924e-01 2.46393103e-02\\n-3.03741753e-01 -2.08730459e-01 -2.56044120e-01 -3.27072293e-02\\n-1.36367872e-01 4.09183979e-01 -9.30086076e-02 1.34123638e-02\\n-1.12481169e-01 4.15539324e-01 -3.69695514e-01 2.39552900e-01\\n2.46067286e-01 1.48024291e-01 2.21520856e-01 2.32972607e-01\\n-3.61598730e-01 4.13265526e-01 3.29298489e-02 -3.03235471e-01\\n1.80740714e-01 5.12200035e-02 4.00378019e-01 -4.78562415e-02\\n2.40603387e-01 1.99943900e-01 -3.53114456e-01 3.01069736e-01\\n3.30538005e-01 -1.76839322e-01 -1.61917135e-02 -2.03690045e-02\\n4.76897415e-03 1.46301640e-02 1.11529313e-01 2.23647743e-01\\n-2.86237776e-01 5.36657453e-01 1.84208691e-01 -2.94665158e-01\\n-1.25850916e-01 -6.01912558e-01 -2.76139110e-01 1.28839642e-01\\n-1.55592454e-04 -4.09998298e-02 1.23937182e-01 2.12408841e-01\\n1.43723711e-01 -1.92411751e-01 1.39603570e-01 7.03543603e-01\\n-1.06781922e-01 1.17349446e-01 -2.60870606e-01 2.95540273e-01\\n7.87486807e-02 -1.76147789e-01 1.44951060e-01 2.31700897e-01\\n2.20957965e-01 -2.09934101e-01 -2.30768532e-01 3.11236978e-01\\n-1.84955582e-01 -1.91931292e-01 -4.42250222e-01 2.34433487e-01\\n-3.25413011e-02 -1.92228839e-01 5.93491554e-01 -5.38276955e-02\\n1.38339832e-01 8.78025442e-02 -5.02368771e-02 -7.85138384e-02\\n-2.06102103e-01 2.70728827e-01 1.31037340e-01 1.47144347e-01\\n-3.29785287e-01 -1.96652994e-01 -2.04668432e-01 1.73613936e-01\\n-3.44449610e-01 1.45161837e-01 -2.87512153e-01 -7.09201247e-02\\n4.66383725e-01 -1.08579397e-02 -2.83172458e-01 2.36123487e-01\\n6.41300157e-02 1.13296121e-01 -2.66319495e-02 2.95455575e-01\\n-5.26588298e-02 2.31064036e-01 -1.75690755e-01 -1.52691513e-01\\n7.82397926e-01 1.54860198e-01 1.39157444e-01 -1.57523200e-01\\n3.51078629e-01 3.71129625e-02 1.31214857e-01 -1.98092759e-02\\n-7.53940284e-01 2.13924512e-01 -2.37318259e-02 -2.89923679e-02\\n3.34641673e-02 -7.99368918e-02 2.07605511e-01 -3.32854182e-01\\n-1.92613289e-01 -1.07796133e-01 -3.27506304e-01 -3.28069597e-01\\n-3.80480975e-01 -1.02159176e-02 3.82657140e-01 -3.88001025e-01\\n-2.01829359e-01 2.62035698e-01 -5.70175469e-01 -3.96248773e-02\\n3.62336099e-01 1.96242630e-01 1.81612849e-01 2.10568830e-01\\n-2.31701389e-01 -5.87687731e-01 1.71487942e-01 -4.15798694e-01\\n-2.42546350e-01 2.54431933e-01 -3.18957686e-01 3.73573333e-01\\n1.16286948e-01 -3.38030956e-03 -1.47232741e-01 2.58611500e-01\\n-6.88580126e-02 -4.76695336e-02 1.32913530e-01 -2.22192071e-02\\n3.14100057e-01 1.13955759e-01 -5.04622221e-01 3.53166729e-01\\n-8.38970914e-02 4.15190488e-01 9.51870680e-02 -6.71262562e-01\\n4.88334686e-01 4.12686259e-01 5.85948415e-02 -2.78756946e-01\\n6.70250535e-01 -1.75703451e-01 -1.83946997e-01 1.02670617e-01\\n-4.81866300e-01 -3.26760113e-01 2.26163968e-01 -1.51018485e-01\\n-2.50708848e-01 5.39674938e-01 6.50392920e-02 2.01199338e-01\\n4.28813070e-01 -1.15872510e-01 2.88410243e-02 2.56727815e-01\\n-6.76439479e-02 -9.73750651e-02 -4.41832066e-01 -2.50632972e-01\\n-4.28051837e-02 -5.61066806e-01 -2.19127536e-01 -3.94207746e-01\\n-2.93946296e-01 -2.82612652e-01 -2.55513489e-01 2.52856314e-01\\n3.02235097e-01 1.85128018e-01 4.85412963e-02 1.60172537e-01\\n-2.31194004e-01 -6.66877031e-01 1.10724188e-01 1.82035044e-01\\n1.85575426e-01 2.36542314e-01 -2.83286721e-02 -6.71639666e-02\\n-3.49858068e-02 6.03506923e-01 -3.94858569e-01 -2.22049758e-01\\n1.79341808e-01 1.31845042e-01 1.76905859e-02 -7.43295997e-02\\n1.38744801e-01 4.02610898e-01 -4.16190475e-01 2.07002833e-01\\n-7.06594577e-03 -1.90075159e-01 3.07962328e-01 1.90253317e-01\\n-3.96299601e-01 -3.29710126e-01 -2.71249235e-01 7.17191547e-02\\n-5.59353769e-01 -2.25110009e-01 6.22588158e-01 8.66115317e-02\\n2.63328969e-01 2.61410803e-01 3.56450766e-01 -1.85606942e-01\\n-1.70293868e-01 -2.54973054e-01 1.90015584e-01 1.46230653e-01\\n1.38721243e-01 2.58141279e-01 -2.06138462e-01 -6.94226086e-01\\n-3.42255473e+00 -8.36404115e-02 2.57267803e-01 -3.99933070e-01\\n2.13762164e-01 -7.19644502e-02 1.51995376e-01 -1.82992756e-01\\n-3.39635313e-01 -4.82935868e-02 -1.44751340e-01 -2.13988289e-01\\n2.14998737e-01 3.28329951e-01 9.54044089e-02 2.87558526e-01\\n2.96765566e-01 -1.96990013e-01 -5.89065738e-02 3.79674494e-01\\n-2.43185923e-01 -5.10029912e-01 6.21210933e-02 -7.10221529e-02\\n3.19601685e-01 3.44973922e-01 -3.26814115e-01 -6.19499721e-02\\n-2.32265234e-01 -1.83021933e-01 1.50150895e-01 -2.25283429e-01\\n-1.61146015e-01 2.57369161e-01 1.07881673e-01 -2.91693900e-02\\n1.14675276e-01 -2.86688894e-01 1.67473495e-01 -3.67356151e-01\\n4.44465429e-02 -6.13409102e-01 -1.58971325e-02 -7.98409283e-02\\n8.25196862e-01 -3.03853601e-01 1.27551153e-01 1.29744699e-02\\n1.76556945e-01 3.27768952e-01 -1.56830344e-02 -1.26941176e-02\\n-1.64255634e-01 -1.91301778e-01 -9.97355729e-02 -7.54038841e-02\\n5.73324561e-01 4.93259013e-01 -2.11900324e-01 -9.39043909e-02\\n-4.37686890e-02 -4.95605558e-01 -4.52373117e-01 -1.49517879e-01\\n-1.79922208e-01 -3.52123767e-01 -4.33427155e-01 -3.61528546e-01\\n-1.38956115e-01 -5.14511168e-02 -5.93510978e-02 5.94122350e-01\\n-4.58097726e-01 -5.12728631e-01 -9.63635370e-02 -4.92741138e-01\\n6.03403561e-02 -5.12107797e-02 4.66527678e-02 -1.74912855e-01\\n-3.25792193e-01 -5.05182862e-01 3.50125208e-02 3.25536095e-02\\n-1.01458371e-01 -1.68556765e-01 8.12185034e-02 -5.13748340e-02\\n-3.49517733e-01 -6.98574603e-01 3.55509341e-01 1.20651878e-01\\n1.76240981e-01 1.14340216e-01 1.03831366e-01 4.46319878e-02\\n3.47419113e-01 -2.18904451e-01 4.75204922e-02 -3.45050067e-01\\n3.91468257e-02 -3.49460617e-02 6.90425038e-01 -2.64231384e-01\\n2.81520113e-02 1.16268657e-01 -3.66393328e-01 -1.65717423e-01\\n2.72890329e-01 1.01640642e-01 1.49667382e-01 -4.35814679e-01\\n4.09428000e-01 -2.27107301e-01 -2.81640202e-01 1.21098325e-01\\n-1.40129533e-02 5.80821157e-01 -1.80200599e-02 -2.88078398e-01\\n-2.09441751e-01 4.05577481e-01 -1.50888175e-01 -6.20271266e-02\\n-1.34861737e-01 6.95050880e-02 -3.31925541e-01 1.07105039e-01\\n1.79025471e-01 -9.37107205e-02 -1.11174338e-01 -1.68807451e-02\\n-1.53111696e-01 3.75387788e-01 1.69666678e-01 3.55107300e-02\\n-1.24839172e-01 -3.65374923e-01 7.04516694e-02 1.57292232e-01\\n-8.80743098e-03 4.25543576e-01 1.09774247e-02 -3.06900233e-01\\n-7.55000338e-02 3.37228477e-01 -1.77001894e-01 -5.44317998e-03\\n-1.75682455e-01 7.21209124e-02 -3.99006516e-01 -1.73145980e-01\\n-3.06020826e-01 -4.80457455e-01 3.19376774e-02 2.54238904e-01\\n1.05495043e-01 -3.13129229e-03 3.60671319e-02 -3.81018817e-01\\n1.88479543e-01 2.07004666e-01 3.26578766e-01 2.56011218e-01\\n-4.68259752e-02 4.96040463e-01 1.12041004e-01 -1.40338048e-01\\n-1.66195944e-01 8.52999985e-02 -2.57190943e-01 -1.81974813e-01\\n1.37128532e-01 -4.67000097e-01 -5.87725155e-02 4.03841794e-01\\n5.42038083e-02 -2.13119358e-01 -2.35106394e-01 1.53255090e-01\\n-9.10241529e-02 -4.79228348e-01 -1.98599368e-01 4.40861247e-02\\n2.09810749e-01 9.70690995e-02 3.51488769e-01 -3.79534364e-01\\n-2.92679816e-02 -1.11681908e-01 -2.05702990e-01 3.82717848e-01\\n-1.15497205e-02 5.58792464e-02 -3.50603104e-01 -2.00386927e-01\\n3.17643762e-01 -1.45951748e-01 -3.57574038e-02 3.00789974e-03\\n1.45071402e-01 -2.32527554e-01 -4.20417666e-01 7.90153965e-02\\n-4.72478382e-02 6.07494917e-03 5.02597541e-02 -1.06767891e-02\\n-7.72509584e-03 9.66040567e-02 -5.78982890e-01 -2.85135567e-01\\n-2.86035180e-01 -1.20438166e-01 -7.78919980e-02 -4.26137775e-01\\n-4.18244898e-02 -2.12376136e-02 -5.16903341e-01 3.00814927e-01\\n-3.07659179e-01 8.80233645e-02 2.78412312e-01 5.55151924e-02\\n-2.94673741e-01 -1.29076019e-01 2.19872102e-01 1.85419261e-01\\n-3.96872759e-01 -2.63088167e-01 -1.30388677e-01 -8.63465548e-01\\n2.26877525e-01 -1.77130654e-01 -2.04664469e-01 6.14290908e-02\\n-9.26524252e-02 -6.64731085e-01 1.88998684e-01 -3.61344576e-01\\n-1.20619036e-01 4.96506505e-02 -1.78972501e-02 -3.75305414e-01\\n-6.53465018e-02 -2.40656286e-01 -3.50097775e-01 3.77256691e-01\\n-3.46721262e-01 4.08829361e-01 -4.84675243e-02 1.27424002e-01\\n-1.60014808e-01 -3.13275754e-01 1.06276743e-01 -5.36897838e-01\\n-5.23146391e-01 -1.34195879e-01 -1.49747267e-01 -7.48694763e-02\\n2.03489169e-01 -3.40704381e-01 -1.26067489e-01 2.26069212e-01\\n1.65339366e-01 -8.04451779e-02 -1.11579694e-01 -2.59146094e-01\\n-3.55778560e-02 -4.91988778e-01 3.26792300e-02 -3.68297547e-02\\n1.63655788e-01 -7.77110904e-02 1.47230819e-01 2.11117193e-01\\n1.57889545e-01 -4.85724419e-01 3.92404050e-01 -2.21464410e-01\\n-2.74112344e-01 7.66450390e-02 1.16690636e-01 -2.17486992e-02\\n3.82355362e-01 -4.51687872e-01 -3.55237201e-02 5.05842268e-01\\n6.38002306e-02 5.78423291e-02 1.26966804e-01 -9.32557858e-04\\n-1.07497826e-01 1.54630318e-01 -8.31102654e-02 1.96933031e-01\\n7.07163811e-01 2.13611796e-01 1.14802539e-01 1.28329083e-01\\n8.36823508e-02 5.12113750e-01 5.73780894e-01 5.17482460e-02\\n1.40407318e-02 3.34495157e-01 2.01663896e-02 -4.75423455e-01\\n-1.52026699e-03 1.74411893e-01 -3.03197265e-01 -2.48266786e-01\\n5.50229251e-01 5.26378214e-01 -5.01606166e-01 -4.37584341e-01\\n-1.23171255e-01 -3.34311903e-01 2.70197336e-02 -8.27212110e-02\\n9.15229246e-02 -2.27184281e-01 5.52674353e-01 3.94441746e-02\\n7.27965087e-02 4.84600097e-01 -6.07173555e-02 -2.60610461e-01\\n5.68313301e-02 2.26621062e-01 1.22975133e-01 2.41837040e-01\\n-1.16584487e-01 3.84050399e-01 -2.33138010e-01 1.11699380e-01\\n-1.09851907e-03 1.15121618e-01 2.06875086e-01 1.32145375e-01\\n-8.94461274e-02 2.74272591e-01 5.86958051e-01 6.17474616e-01\\n3.26788038e-01 4.66203272e-01 3.01612705e-01 4.68677022e-02\\n5.80097914e-01 5.07889211e-01 4.50936288e-01 2.26419061e-01\\n-2.55675241e-02 1.22042373e-01 7.99114704e-02 1.10607937e-01\\n3.39621574e-01 3.95953089e-01 4.94239293e-02 8.02499294e-01\\n3.21913302e-01 2.38352314e-01 6.71470106e-01 -6.59073591e-01\\n-2.66737431e-01 -1.50125399e-01 3.68587524e-01 -2.68445998e-01\\n-1.16957344e-01 7.21373037e-02 -2.48553842e-01 2.37540692e-01\\n-4.64693457e-01 -2.67977178e-01 -7.80038461e-02 2.63734162e-01\\n1.19255126e-01 -1.59966618e-01 -2.19834715e-01 -3.35408077e-02\\n-1.51003987e-01 -1.22006103e-01 -5.20483851e-01 -4.92177270e-02\\n-2.68192500e-01 -2.68123478e-01 8.21355730e-02 -1.52703568e-01\\n-9.29683000e-02 -4.28811729e-01 -2.06460446e-01 -6.29300028e-02\\n2.86403745e-01 -2.33321145e-01 -5.49746770e-03 -2.01876491e-01\\n3.01622272e-01 1.79429933e-01 5.59706807e-01 1.30797829e-03\\n-3.67049836e-02 -2.71118075e-01 -1.61450744e-01 1.88510746e-01\\n9.14105698e-02 1.18125379e-01 1.47389323e-01 5.04118741e-01\\n-4.04495090e-01 -2.27436021e-01 1.11900426e-01 5.06911933e-01\\n-4.92988825e-01 1.13700956e-01 -4.16578278e-02 2.39623979e-01\\n1.27752572e-01 1.80794075e-01 -1.16537116e-01 4.37987857e-02\\n-1.37106299e-01 -5.09634733e-01 3.09846908e-01 1.21800512e-01\\n-2.09993750e-01 1.72209039e-01 2.16535896e-01 2.67192364e-01\\n-2.03697667e-01 -1.15874194e-01 2.58746147e-02 9.78002027e-02\\n3.89603116e-02 4.58330959e-01 -2.35796437e-01 -5.25199294e-01\\n-2.85331398e-01 1.97863638e-01 -1.81492120e-01 1.30396970e-02\\n-3.28934938e-02 2.86172211e-01 1.51159555e-01 1.45528644e-01\\n3.45906913e-01 2.50907242e-02 -1.38750181e-01 -1.58663154e-01\\n-2.79851574e-02 -2.20315740e-01 8.45866799e-02 4.18383069e-03\\n5.55489510e-02 -5.17130911e-01 -1.15104608e-01 -9.28531215e-02\\n-1.51568115e-01 -1.93232164e-01 -3.25193144e-02 -3.88728194e-02]]',\n", + " 'The Integration & Release (IR) Team is looking for a Test Engineer Intern. You will contribute to the testing and continuous integration of the SOPHiA platform by: Scripted and exploratory (manual) testing of the SOPHiA platform Documenting and reporting on test results Bug reporting and verification You will work alongside a team of project managers, developers and test engineers giving you an insight into the world of agile development. Who are you? You are currently enrolled at University (or just finished your studies) in or near Lausanne studying Computer Science, Natural Sciences, Engineering or a related field. You: Are reliable and show attention to detail You have an interest in software development and ideally have a basic understanding of the role of QA in software development You are thorough and enthusiastic, able to grasp complex scenarios and work independently Location : Lausanne – Switzerland If you think you fit this position, please send a CV and a cover letter in English. Please note that incomplete applications will not be considered. Apply',\n", + " '[\"Reliability\", \"Integration\"]',\n", + " '[\"Document Enterprise Platform\", \"Natural Sciences\", \"Manual Testing\", \"Agile Software Development\", \"Bug Reporting\", \"Software Development\", \"Test Engineering\", \"Scripting\", \"Computer Science\", \"Idealization\", \"Management Development\", \"Continuous Integration\"]',\n", + " \"['English', 'Arabic']\"],\n", + " ['73',\n", + " 'computer vision engineer/researcher',\n", + " 'Lausanne',\n", + " 'Computer Hardware & Software',\n", + " 'www.magicleap.com',\n", + " '[[-1.70618728e-01 1.67502195e-01 3.97089243e-01 1.50855575e-02\\n3.99008274e-01 -5.12205064e-02 -8.26455951e-02 3.30113530e-01\\n-6.83513731e-02 -2.62684971e-01 3.93931717e-02 -5.75845718e-01\\n-3.31154257e-01 4.92468998e-02 2.72632867e-01 6.10013485e-01\\n4.12173718e-01 -7.06573576e-02 -1.83186620e-01 4.23021257e-01\\n2.57290244e-01 -1.79152369e-01 2.63028502e-01 6.75490081e-01\\n5.30646145e-01 -3.45708169e-02 -5.05066477e-02 7.21097708e-01\\n1.66826278e-01 -3.20330113e-01 6.76681042e-01 1.15466714e-02\\n-3.98195624e-01 -2.75924653e-01 1.20026231e-01 3.79139870e-01\\n-2.78232992e-01 -3.08883965e-01 1.44500792e-01 1.74813524e-01\\n-5.48939764e-01 -5.41626215e-01 -3.32396209e-01 -2.27715299e-01\\n-4.28845316e-01 4.24622744e-02 -5.78902289e-03 -2.48406559e-01\\n6.48002177e-02 1.20612029e-02 -4.67220962e-01 2.86467493e-01\\n7.24971667e-02 -1.26043946e-01 -3.45352069e-02 8.56330335e-01\\n-6.43315315e-02 -5.52858233e-01 -7.44307280e-01 -1.59170657e-01\\n8.11413080e-02 -3.88505980e-02 -9.74192321e-02 -3.16488713e-01\\n9.81581807e-02 -1.62229568e-01 1.17170596e-02 3.65323216e-01\\n-8.61484110e-01 -1.42740443e-01 -4.43125457e-01 -1.30678594e-01\\n-4.21785116e-01 2.11144298e-01 -5.36883846e-02 -1.24575809e-01\\n-2.73067225e-02 3.11144114e-01 1.91520795e-01 -1.18664347e-01\\n-4.07044828e-01 1.28293008e-01 9.53268707e-02 3.87960434e-01\\n3.18956971e-01 8.06877017e-02 2.75330879e-02 1.24430284e-01\\n-3.91759455e-01 7.46808529e-01 4.09647748e-02 -4.24600482e-01\\n2.11246520e-01 -6.27677515e-02 5.16090870e-01 1.69245213e-01\\n-1.16191611e-01 2.21505553e-01 -7.91412219e-02 -6.52020797e-02\\n-1.05028637e-02 -7.46090770e-01 -7.70816952e-02 9.40678492e-02\\n6.16672523e-02 4.02663648e-03 9.44018885e-02 1.98029697e-01\\n-2.58738726e-01 5.98842978e-01 1.74107905e-02 -1.80257130e-02\\n-1.03302412e-01 -4.96822715e-01 -8.59279409e-02 -2.80114651e-01\\n-1.13839239e-01 3.04831982e-01 2.34789997e-01 9.98577103e-02\\n1.19052194e-01 -7.94764161e-02 1.21003486e-01 6.32827759e-01\\n-1.58433110e-01 3.17800403e-01 -8.76917168e-02 4.89164114e-01\\n8.99693184e-03 -2.36432761e-01 4.27913040e-01 4.54951018e-01\\n-1.39142260e-01 -2.38892242e-01 -3.59908462e-01 3.84085923e-02\\n-3.04861605e-01 -1.21745862e-01 -3.31322968e-01 1.65413797e-01\\n7.13121146e-04 -5.39001763e-01 6.65223002e-01 -1.22964457e-02\\n5.59728265e-01 1.00114465e-01 8.56973231e-02 -3.98225635e-02\\n-5.68880141e-03 1.99816376e-01 -1.36339918e-01 9.44193453e-02\\n-8.67444277e-03 -3.79978299e-01 4.58980203e-02 -9.30381417e-02\\n-1.75054491e-01 4.97224063e-01 -3.08617443e-01 5.57600334e-02\\n4.07935172e-01 3.19439650e-01 -1.48177832e-01 5.31996608e-01\\n3.34765166e-02 1.01191513e-01 -1.55552663e-02 7.33569860e-01\\n-2.88273811e-01 -2.70513818e-02 2.18735307e-01 -5.44549227e-01\\n8.51711392e-01 4.11415964e-01 -3.17014396e-01 1.66380703e-01\\n4.89662498e-01 -3.05212319e-01 1.20733425e-01 -9.62114260e-02\\n-6.55611515e-01 4.50217992e-01 1.75243139e-01 1.41576394e-01\\n-2.43033007e-01 -5.33276439e-01 3.18784028e-01 -4.05632973e-01\\n-8.88067782e-02 -2.68834829e-01 -3.52477908e-01 2.52059221e-01\\n-1.59842402e-01 -5.90864904e-02 4.36759710e-01 -2.56489575e-01\\n-4.58585806e-02 -1.91150114e-01 -4.93093044e-01 7.34926015e-02\\n1.87005982e-01 2.50616729e-01 2.97342688e-01 3.36833782e-02\\n-2.95583427e-01 -2.81652033e-01 -2.30907619e-01 -3.29837114e-01\\n-3.67509961e-01 -2.48329267e-01 -1.42112970e-01 6.22789741e-01\\n3.56850713e-01 2.20100164e-01 -5.88748455e-01 1.60534874e-01\\n-1.05127722e-01 -2.05249965e-01 3.50350618e-01 2.07987130e-01\\n-3.81190896e-01 -7.74383694e-02 -3.40253055e-01 4.09039825e-01\\n-5.86327314e-01 5.31859457e-01 -8.77570361e-02 -5.62217772e-01\\n6.62192822e-01 6.16512477e-01 -3.16913165e-02 -5.85106969e-01\\n4.04051960e-01 -6.12749994e-01 -1.48169948e-02 6.16421774e-02\\n-1.49791300e-01 -1.95498154e-01 3.43432784e-01 -3.47200811e-01\\n-2.79410839e-01 8.26134205e-01 3.00523996e-01 6.25752732e-02\\n-8.67804140e-03 -3.11816990e-01 -8.57768953e-03 -1.27049267e-01\\n-3.11827529e-02 -3.30838203e-01 -4.59492087e-01 -3.71201366e-01\\n-1.86751872e-01 -7.76112795e-01 -2.10016817e-01 -7.90452778e-01\\n-3.67405474e-01 -4.40413177e-01 -5.96359849e-01 7.21626952e-02\\n4.30818766e-01 1.91734403e-01 1.93843693e-01 -1.76970124e-01\\n-4.63185668e-01 -5.56329966e-01 1.51692361e-01 2.13582560e-01\\n3.66441995e-01 4.16642815e-01 -1.78302079e-03 -3.33150327e-01\\n2.51072168e-01 7.78438747e-01 -2.10113540e-01 -2.68880516e-01\\n5.01617610e-01 3.90631258e-01 -2.44751841e-01 -1.79516211e-01\\n3.97369415e-01 6.18091702e-01 -3.62189710e-01 9.16847065e-02\\n-1.35775879e-01 -1.38725042e-01 3.85787010e-01 1.22617766e-01\\n-1.70626864e-01 -5.79293847e-01 -1.38623759e-01 2.81235456e-01\\n-4.41307247e-01 -3.30082119e-01 4.32713926e-01 1.79932892e-01\\n3.09389889e-01 -8.61205012e-02 -7.08659291e-02 2.89666057e-01\\n-2.74128795e-01 -4.44182456e-01 -1.44562900e-01 4.02839109e-02\\n-2.40173846e-01 6.68193996e-02 -1.10825635e-01 -6.80467844e-01\\n-2.68133116e+00 4.37540323e-01 2.11132869e-01 -3.50769460e-01\\n-2.26326078e-01 -1.36544500e-02 2.89060920e-01 6.49802089e-02\\n-3.78795207e-01 5.11811018e-01 -4.11279112e-01 -3.02102685e-01\\n1.70379460e-01 4.78720665e-03 6.31666780e-01 1.95725292e-01\\n2.52580881e-01 -4.20181841e-01 -4.62787747e-01 3.64701748e-01\\n-1.61036074e-01 -4.46027994e-01 1.77675501e-01 -2.78756201e-01\\n1.67249799e-01 4.26246107e-01 -3.37909833e-02 -2.42364317e-01\\n-1.52053714e-01 -3.08882833e-01 1.45818666e-01 -5.22744000e-01\\n-2.64815867e-01 4.07355428e-01 2.78183311e-01 1.23984456e-01\\n1.29176706e-01 -7.90587664e-01 -3.42546344e-01 -3.90709996e-01\\n-3.56837641e-03 -1.31034052e+00 2.05749601e-01 -2.29825526e-02\\n7.95656800e-01 1.83158636e-01 -3.16733122e-03 1.95068605e-02\\n-5.07497266e-02 -2.65388817e-01 -2.62179002e-02 -2.78136998e-01\\n-4.14764345e-01 2.78994516e-02 -1.63753420e-01 -6.32640794e-02\\n7.27809310e-01 5.58078408e-01 -2.52164662e-01 -2.42034763e-01\\n-2.12453865e-03 -3.84242833e-01 -7.09258497e-01 -2.80910492e-01\\n1.13219887e-01 -2.60265052e-01 -6.76868439e-01 -2.66251057e-01\\n-4.48125675e-02 -1.90135568e-01 -1.23483278e-01 2.07655087e-01\\n-1.66905895e-01 2.52303295e-02 -1.04185659e-02 -4.47418988e-01\\n2.01448113e-01 -3.29038411e-01 2.34796584e-01 -1.28649399e-01\\n-3.47196698e-01 -7.32261300e-01 -4.26445063e-03 3.65451872e-02\\n-1.74629331e-01 -3.04337054e-01 2.44078636e-01 -4.31938022e-02\\n-4.07533914e-01 -5.80906510e-01 6.95126653e-01 6.05330393e-02\\n2.37349868e-01 -1.18767679e-01 3.14733312e-02 3.97343159e-01\\n5.20797968e-01 -1.56484097e-01 3.00743461e-01 -2.75554359e-01\\n2.51509011e-01 9.46410075e-02 6.98439956e-01 -3.97687674e-01\\n-8.29855353e-02 -5.35061434e-02 -6.22640550e-01 -2.65864551e-01\\n1.34745792e-01 -1.09809048e-01 1.72971502e-01 -6.70731783e-01\\n3.94450337e-01 -1.26547158e-01 -2.09764093e-01 1.92362711e-01\\n-1.17986158e-01 6.71631694e-01 2.94696540e-01 -3.29299629e-01\\n-2.55343795e-01 2.43420407e-01 -9.59671587e-02 -3.68313551e-01\\n6.25236034e-01 1.07311057e-02 -2.32862130e-01 9.24339220e-02\\n2.51406252e-01 -1.16216876e-01 -2.63131768e-01 2.97895446e-03\\n-3.24717551e-01 1.25603750e-01 1.97750196e-01 2.02262819e-01\\n-6.75592050e-02 -2.02006370e-01 -2.08754361e-01 5.46865523e-01\\n1.77441135e-01 1.04609750e-01 -1.39645085e-01 -9.56379250e-02\\n-2.68466264e-01 6.90704465e-01 1.97048083e-01 -7.21134245e-02\\n-1.96713567e-01 2.37802386e-01 -6.96032047e-01 -2.00520501e-01\\n-1.30795255e-01 -5.77659011e-01 4.28623259e-01 5.94750881e-01\\n7.31410831e-02 -2.50587821e-01 2.61903077e-01 -6.38745666e-01\\n4.43649769e-01 3.24190378e-01 4.63692009e-01 3.98116529e-01\\n-1.87036768e-03 4.86652792e-01 6.32132590e-02 -1.48679346e-01\\n-2.78915912e-01 -2.65558869e-01 -3.01019192e-01 -4.85829055e-01\\n-1.03568092e-01 -8.19643617e-01 -3.75034474e-02 2.36386210e-01\\n-1.17213950e-02 -1.49962515e-01 -1.91345364e-01 2.67547607e-01\\n-1.08446836e-01 -3.07786077e-01 -5.07405959e-02 -2.02790469e-01\\n3.97155046e-01 -2.32588843e-01 3.36937129e-01 -4.27192986e-01\\n-2.93962181e-01 1.37337241e-02 -3.12705100e-01 5.32572031e-01\\n2.31359571e-01 -6.21327683e-02 -2.72714794e-02 -1.79218844e-01\\n4.37099516e-01 3.48084390e-01 3.40118222e-02 -2.00135469e-01\\n8.87158215e-02 -4.07668293e-01 -3.56629938e-01 1.50159746e-01\\n2.64466822e-01 -8.33796635e-02 8.35386217e-02 2.16312051e-01\\n2.45802015e-01 -2.23110095e-02 -4.56936717e-01 -3.80412906e-01\\n-5.33428118e-02 -1.04053378e-01 -4.03765514e-02 -4.52430427e-01\\n5.68658412e-02 -2.07568586e-01 -4.04327542e-01 5.16947657e-02\\n-3.97277296e-01 -1.15578756e-01 1.86151311e-01 1.81636810e-01\\n-3.12619925e-01 -1.03700198e-01 2.22894847e-01 1.76250324e-01\\n-2.86928385e-01 -7.45913208e-01 2.94783175e-01 -9.72420692e-01\\n1.61702216e-01 4.28646922e-01 -3.73816460e-01 -2.57313430e-01\\n1.36520267e-01 -1.07614803e+00 1.35503262e-01 -1.81312501e-01\\n4.30959404e-01 -7.78276473e-02 2.25923061e-02 1.46406949e-01\\n5.18923737e-02 1.39128372e-01 -1.83031499e-01 7.59307742e-02\\n-6.53481334e-02 6.60320044e-01 -1.31951123e-01 1.79775894e-01\\n1.60312504e-01 -1.63763925e-01 1.69477146e-02 -1.00962830e+00\\n-1.53439119e-01 -4.13932726e-02 -3.26148868e-01 -1.77192628e-01\\n-2.30143502e-01 -8.73169154e-02 -1.58260345e-01 4.16869372e-02\\n2.21992314e-01 8.26030076e-02 -1.48114428e-01 3.39892693e-02\\n-4.91014794e-02 -2.80294657e-01 -3.57958049e-01 -1.89737260e-01\\n-2.69985273e-02 -5.90520352e-02 -9.55775976e-02 -3.65237236e-01\\n1.37959689e-01 -5.92823207e-01 5.36397621e-02 -5.84597349e-01\\n-3.47196430e-01 -4.67536971e-02 3.80887985e-01 2.44763382e-02\\n1.21204779e-01 -4.40120935e-01 -1.99407235e-01 2.56229460e-01\\n1.61017522e-01 1.26550868e-01 4.68818843e-01 3.17062996e-02\\n1.42844617e-02 3.07303101e-01 -5.87886035e-01 3.15817475e-01\\n6.00997865e-01 7.23887756e-02 -1.26827136e-03 -1.15204751e-02\\n-8.65586847e-02 -3.56338173e-03 2.75984704e-01 3.09045017e-01\\n-1.35463662e-02 6.96634203e-02 3.91483724e-01 -3.39707434e-01\\n-8.41041058e-02 2.41148546e-02 -2.24556446e-01 1.13270260e-01\\n5.15619457e-01 2.27412745e-01 -1.67447820e-01 -1.13914777e-02\\n-3.00671220e-01 -3.83771174e-02 -1.13396347e-02 6.44215643e-02\\n6.99077323e-02 1.26949638e-01 1.05426097e+00 2.30551213e-01\\n3.29549789e-01 6.79373384e-01 -7.03519136e-02 -3.07410121e-01\\n-3.05911005e-01 1.80154577e-01 6.40074834e-02 3.08081746e-01\\n-1.54298484e-01 3.35851461e-01 1.24743342e-01 -5.43169975e-02\\n-2.12720186e-01 8.63474682e-02 1.80937469e-01 -2.15723544e-01\\n-4.61291641e-01 4.73163784e-01 2.38553792e-01 6.52506590e-01\\n4.65125114e-01 4.81594145e-01 1.82139412e-01 6.54803216e-02\\n4.35106754e-01 5.80458641e-01 4.31897312e-01 3.03088725e-01\\n1.16654374e-01 -1.19311392e-01 2.31155559e-01 -1.49072735e-02\\n4.23333347e-01 4.82348979e-01 -4.22320068e-02 8.45156729e-01\\n2.80171871e-01 3.31104219e-01 8.54741931e-01 -3.73065591e-01\\n-4.24657136e-01 2.85935968e-01 2.37475961e-01 -7.82437250e-02\\n-4.13819671e-01 -9.33625102e-02 -1.02956116e-01 2.09204435e-01\\n-3.39783728e-01 8.32832903e-02 -3.85550290e-01 4.55488920e-01\\n2.76888341e-01 -1.77255571e-01 -3.81752193e-01 4.03891504e-01\\n-2.20834792e-01 -3.00260842e-01 -2.09868431e-01 2.96560191e-02\\n-2.48980448e-01 -5.81076980e-01 -1.26858920e-01 5.55934235e-02\\n-5.97705059e-02 -2.62293190e-01 2.88752198e-01 1.50765106e-02\\n2.90045500e-01 4.67911549e-02 -3.20460856e-01 -1.52593642e-01\\n2.64764279e-01 1.99642241e-01 8.07064414e-01 2.35222459e-01\\n1.78928852e-01 -5.27676642e-02 -2.88725495e-01 1.67655006e-01\\n4.62310910e-01 4.40191664e-03 5.47943600e-02 5.60182035e-01\\n-3.22265267e-01 5.44343144e-03 -1.29558161e-01 5.82708001e-01\\n-4.18319672e-01 3.39368582e-01 -4.35823351e-01 -7.57289827e-02\\n2.26324975e-01 2.61183888e-01 -2.82926679e-01 -8.73967260e-02\\n-9.34458748e-02 -8.29747498e-01 8.30447823e-02 -5.84226511e-02\\n-3.23683292e-01 -8.95144790e-03 1.25865683e-01 3.40034276e-01\\n-9.11064260e-03 -5.35828173e-02 3.72066915e-01 5.44959247e-01\\n-1.95612103e-01 9.46409330e-02 1.17489964e-01 -4.45527554e-01\\n-3.13069671e-01 3.47881675e-01 -2.91316718e-01 4.06008363e-01\\n-2.59034205e-02 3.65587026e-01 1.70802265e-01 1.65100306e-01\\n2.83076912e-01 -1.56515315e-01 -4.99108195e-01 -1.66544065e-01\\n-2.59428442e-01 -4.85505283e-01 -7.41059482e-02 -8.94542560e-02\\n2.07328826e-01 -4.12793934e-01 -3.13336194e-01 -4.55499470e-01\\n-3.43337953e-01 -6.19067661e-02 -1.00756429e-01 2.13142604e-01]]',\n", + " 'Job Description -------------- Qualified candidates will use their experience in Computer Vision with specialization in at least one of the following areas: ---------------------------------------------------------------------------------------------------------------------------------- SLAM: Design and implement algorithms for creating consistent maps of the environment that enable accurate tracking in real-time. Visual-Inertial Pose Tracking: Design and implement advanced algorithms for estimating the 3D pose of a head-mounted device by optimally fusing visual and inertial measurements collected from multiple cameras and IMUs. Sensor Calibration: Design and implement algorithms for online and offline calibration of complex devices composed of several sensors, cameras, IMUs, depth sensors, and images. Collaborate with other engineers on the design and deployment of a fully automatic robotics-aided calibration process targeted for factory production. 3D Scene Understanding: Design and implement 3D scene segmentation algorithms based on depth, motion or texture data. 3D Object Tracking: Design and implement robust algorithms for detecting and tracking the 6 DOF pose of known moving objects from multiple cameras in presence of clutter and occlusions. Machine Learning: Use collected data to design and implement algorithms that can be superior over traditional algorithms or that can be used for behavior detection Qualifications: -------------- Fluent in C/C++ (programming and debugging) Knowledge software optimization and embedded programming is a plus Experience working with Computer Vision libraries such as OpenCV is a plus Knowledge of parallel computing, OpenCL, GPGPU is a plus Education: --------------------- Ph.D. or MSc in Computer Science or related areas of study Additional Information --------------------- All your information will be kept confidential according to Equal Employment Opportunities guidelines. ',\n", + " '[\"Collaboration\"]',\n", + " '[\"Real Time Data\", \"MSC Software\", \"Programming (Music)\", \"pH Meters\", \"Computer Science\", \"Collections\", \"Texturing\", \"OpenCV\", \"Machine Learning\", \"Visualization\", \"Estimators\", \"Debugging\", \"Computer Vision\", \"Knowledge Management Software\", \"Optimization Software\", \"Tracking (Commercial Airline Flight)\", \"Library\", \"OpenCL\", \"Embedding\", \"SLAM Algorithms (Simultaneous Localization And Mapping)\", \"TARGET 3001!\", \"C (Programming Language)\", \"Equalization\", \"Robotics\", \"Object-Oriented Design\", \"Parallel Computing\", \"Imaging\", \"Factorials\", \"Algorithms\", \"Additives\", \"Mapping\", \"Data Collection\", \"Job Descriptions\", \"Calibration\", \"Fuses\"]',\n", + " \"['English', 'Danish', 'Persian']\"],\n", + " ['36',\n", + " 'ibm cloud software engineer',\n", + " 'Lausanne',\n", + " '',\n", + " '',\n", + " '[[-3.72165710e-01 2.52090961e-01 4.62761223e-01 5.80096543e-02\\n5.32154024e-01 -2.42089435e-01 -1.11294508e-01 3.14517647e-01\\n-5.75950332e-02 -4.13470566e-01 -1.29214302e-01 -3.54309112e-01\\n-2.35665649e-01 -2.37643416e-03 1.69808969e-01 3.30033869e-01\\n3.43411744e-01 1.17903978e-01 -1.95102558e-01 3.92981589e-01\\n6.99448958e-02 -9.21433419e-02 -1.19605489e-01 7.38587141e-01\\n2.77704120e-01 -5.18972725e-02 -9.97508690e-02 6.03851937e-02\\n-2.73360431e-01 -1.99144915e-01 3.87391657e-01 -1.08257663e-02\\n1.61297817e-03 -2.88451582e-01 8.47925991e-02 9.04506296e-02\\n-2.35576913e-01 7.77631551e-02 -1.49677902e-01 1.06110759e-01\\n-5.08172929e-01 -2.59937853e-01 1.01417810e-01 1.36326263e-02\\n-2.46759191e-01 -2.47933254e-01 2.01960772e-01 6.16600364e-02\\n-1.46693410e-02 1.09530993e-01 -6.25983834e-01 2.93800026e-01\\n-2.19624281e-01 -2.06446812e-01 2.75159925e-01 6.43892646e-01\\n2.04597384e-01 -5.18103421e-01 -3.29160720e-01 -3.56751263e-01\\n7.04146326e-02 -8.59435648e-02 8.40510726e-02 -3.52052331e-01\\n3.70457083e-01 -1.22008279e-01 8.86758789e-02 3.36152196e-01\\n-7.43329406e-01 -5.55792302e-02 -2.16684267e-01 4.11948934e-02\\n-4.17638540e-01 2.82712243e-02 -4.33340847e-01 -1.26270607e-01\\n-8.03594440e-02 4.10189062e-01 3.42294276e-02 9.12066773e-02\\n-3.12458456e-01 1.69430971e-01 -2.51208156e-01 3.89408022e-01\\n2.95937449e-01 1.85092032e-01 2.21788749e-01 3.63916308e-01\\n-5.57043552e-01 4.53466564e-01 2.47821987e-01 -2.12231666e-01\\n2.43180841e-01 1.72566786e-01 4.06989902e-01 2.40923718e-01\\n2.67766137e-02 1.66967317e-01 -1.66458890e-01 1.59520179e-01\\n1.69826999e-01 -2.68324435e-01 -1.50419936e-01 -2.95784827e-02\\n-2.13658437e-02 -2.14272738e-02 -5.27008995e-02 3.08431298e-01\\n-3.41673404e-01 2.96032369e-01 2.03851581e-01 -1.67560041e-01\\n-9.08847749e-02 -5.67686975e-01 1.14644682e-02 -2.49200081e-03\\n9.18986369e-03 1.37966856e-01 3.64087105e-01 7.02824146e-02\\n3.39869171e-01 1.83764607e-01 1.18451171e-01 1.04920959e+00\\n-6.69740438e-02 1.50212303e-01 -1.93717599e-01 3.16177815e-01\\n2.25088447e-01 -1.33813530e-01 2.40900248e-01 2.99515814e-01\\n8.17135498e-02 -1.15653321e-01 -1.62739038e-01 4.08497870e-01\\n-1.11885503e-01 -5.76469488e-02 -1.79808870e-01 1.14577465e-01\\n-2.02749759e-01 -5.62742114e-01 5.60976267e-01 3.74981873e-02\\n1.88679039e-01 1.67075191e-02 5.85492142e-02 -1.36150539e-01\\n-1.01547070e-01 3.45693201e-01 -1.92144662e-02 3.16687882e-01\\n-2.56446600e-01 -3.23632985e-01 -1.38324976e-01 3.88696879e-01\\n-2.04724014e-01 7.60901794e-02 -5.76850772e-02 -2.03957289e-01\\n3.36445004e-01 2.51151919e-01 -4.92502749e-01 1.56872496e-01\\n-1.21857345e-01 -1.77321777e-01 -6.12538047e-02 2.91877896e-01\\n-1.37559501e-02 8.91257152e-02 -1.21113630e-02 -1.89755782e-01\\n5.01128078e-01 3.82254004e-01 1.22045249e-01 -1.58331424e-01\\n4.04442400e-01 -2.65327394e-01 2.04443097e-01 9.48448479e-02\\n-6.13374054e-01 3.90430987e-01 -5.63397259e-02 -1.81503281e-01\\n1.40600979e-01 1.09760910e-01 5.51337481e-01 -3.19600016e-01\\n-4.55679819e-02 -2.27371246e-01 -4.74234730e-01 -4.09691989e-01\\n-3.68624866e-01 -4.32519838e-02 4.64810044e-01 -5.52534938e-01\\n-3.57695818e-02 2.04989269e-01 -6.49785697e-01 -9.86546651e-02\\n2.61650145e-01 2.48298615e-01 2.20909342e-01 2.10774243e-02\\n6.09660812e-04 -7.34842241e-01 -8.66221413e-02 -5.05891860e-01\\n-4.09271359e-01 6.74456879e-02 -3.52565527e-01 1.06678039e-01\\n1.82233024e-02 2.92703435e-02 -5.21624982e-02 7.28931725e-02\\n-2.86913812e-01 -3.98236737e-02 2.08399251e-01 1.55194432e-01\\n4.64111894e-01 -5.08319922e-02 -4.31635797e-01 5.93768358e-01\\n-3.44345063e-01 5.85091949e-01 2.02759802e-01 -9.00726974e-01\\n6.99288607e-01 2.39193067e-01 -4.16974118e-03 -2.88485199e-01\\n5.50167084e-01 -4.41071630e-01 2.01078951e-02 1.14189729e-01\\n-2.23408356e-01 -1.87992588e-01 2.03641921e-01 -1.46043330e-01\\n-2.82760590e-01 5.94685197e-01 1.12038441e-01 -1.21711642e-01\\n3.28104764e-01 -3.43344003e-01 -2.00900003e-01 1.59067046e-02\\n-1.04536541e-01 -2.38818079e-01 -4.91268277e-01 2.42381483e-01\\n-9.50461179e-02 -5.46618104e-01 -1.91763654e-01 -4.34820265e-01\\n-2.12969840e-01 -4.33682948e-01 -3.96028340e-01 4.58711714e-01\\n5.14584444e-02 9.58351716e-02 -1.07257463e-01 -5.69851436e-02\\n-4.17242162e-02 -6.52592123e-01 -4.63568904e-02 7.94918388e-02\\n5.53822219e-01 2.54091471e-01 2.13841274e-01 -1.48719192e-01\\n1.62654910e-02 4.47360724e-01 -3.86423588e-01 -2.71045506e-01\\n1.12089559e-01 1.40598446e-01 -2.18519624e-02 -9.28497761e-02\\n5.81104234e-02 2.91863412e-01 -2.32600719e-01 -3.40323262e-02\\n-2.64396537e-02 -5.64857759e-02 3.37040097e-01 -1.50986403e-01\\n-3.24885845e-01 -2.05470547e-01 -3.27475555e-02 3.96375418e-01\\n-5.92557013e-01 -2.42801026e-01 5.38110018e-01 2.74647206e-01\\n1.16636999e-01 2.53552675e-01 2.72733927e-01 -6.54237866e-02\\n-2.93133914e-01 -3.99130344e-01 2.39977166e-01 1.55471355e-01\\n1.05199277e-01 8.47236291e-02 -1.34232312e-01 -5.43659925e-01\\n-3.34659219e+00 -1.85470805e-01 1.86272144e-01 -2.67219186e-01\\n6.18328005e-02 -9.41918865e-02 4.48853821e-02 -5.37375584e-02\\n-2.90855289e-01 5.52063249e-02 -2.43412822e-01 -1.02909677e-01\\n4.96202260e-02 2.96419948e-01 8.11782330e-02 1.76798895e-01\\n7.40350932e-02 -1.71706751e-01 7.81029016e-02 3.17506760e-01\\n-2.41974741e-01 -7.62605906e-01 7.11414404e-03 -1.11710042e-01\\n1.50512964e-01 1.27103031e-01 -5.20420849e-01 -1.65682167e-01\\n-1.78132668e-01 -1.97268918e-01 1.90611884e-01 -2.30426610e-01\\n-1.41355917e-01 1.74635366e-01 2.09344208e-01 3.72012742e-02\\n-1.40046533e-02 -1.86804295e-01 -3.05520743e-02 -4.99733388e-01\\n1.58237413e-01 -5.96771598e-01 -2.34803986e-02 3.67735513e-02\\n6.85898781e-01 -3.44681948e-01 2.77018905e-01 1.87210754e-01\\n1.59712881e-01 1.34746701e-01 8.62920508e-02 -6.94189668e-02\\n-3.21058005e-01 -2.69485235e-01 1.60773676e-02 -2.58882672e-01\\n4.94025141e-01 5.00414073e-01 -2.23780394e-01 3.14590074e-02\\n7.99297765e-02 -4.14086789e-01 -5.07454038e-01 -5.53609252e-01\\n-1.67316124e-01 -1.03689037e-01 -7.02839077e-01 -5.34316838e-01\\n-1.10308588e-01 -4.65105847e-02 -1.57320321e-01 6.66950285e-01\\n-2.69748211e-01 -4.10632491e-01 1.09882315e-03 -6.47832870e-01\\n2.64732718e-01 -3.15544724e-01 3.61436680e-02 -2.58415520e-01\\n-2.95829117e-01 -4.23755527e-01 8.88980106e-02 -6.36920109e-02\\n-2.51588106e-01 -9.55295339e-02 1.47750387e-02 -2.37851545e-01\\n-3.02470624e-01 -5.49105048e-01 4.24516588e-01 5.85083812e-02\\n3.33881915e-01 5.86331300e-02 5.47786117e-01 -2.22886689e-02\\n4.02965397e-01 -8.28737989e-02 3.99610326e-02 -4.93511647e-01\\n1.97333217e-01 5.50208203e-02 5.80219626e-01 -2.50018358e-01\\n1.13145195e-01 2.63751894e-01 -1.79616138e-01 -1.14448532e-01\\n4.46358800e-01 -4.98348090e-04 -3.70323397e-02 -3.29126865e-02\\n3.64446342e-01 -5.32423377e-01 -3.33300948e-01 1.56077594e-01\\n9.01528150e-02 7.03270674e-01 -1.17788278e-01 -4.30188537e-01\\n-2.38772318e-01 5.62075555e-01 -7.50778466e-02 -7.18446821e-02\\n-1.36628926e-01 1.29814252e-01 -1.86438784e-01 2.62755394e-01\\n9.07548368e-02 -2.72256136e-01 -3.42007965e-01 -8.24400634e-02\\n2.56186556e-02 1.20042615e-01 1.66230008e-01 -3.30677070e-02\\n-2.87710764e-02 -2.05477089e-01 1.34528643e-02 8.92774314e-02\\n2.50322640e-01 4.24044937e-01 1.79104179e-01 -2.78451771e-01\\n4.72770594e-02 2.97680169e-01 -2.53424674e-01 2.70401627e-01\\n-1.70247421e-01 2.91763563e-02 -5.54789245e-01 -2.36818478e-01\\n-3.56453419e-01 -2.93065965e-01 1.69935033e-01 1.12680502e-01\\n2.15020701e-01 -6.44032881e-02 8.67749825e-02 -4.62153852e-01\\n3.15461338e-01 -3.70477489e-03 2.26723358e-01 1.47592038e-01\\n-1.16751892e-02 6.03889465e-01 -3.11708935e-02 6.40076995e-02\\n-1.14331253e-01 -1.00600524e-02 -1.63181379e-01 -3.62836033e-01\\n1.31446570e-01 -4.39260453e-01 -1.73105106e-01 4.62152481e-01\\n1.65932193e-01 -1.98236808e-01 -2.02898830e-01 4.00496662e-01\\n3.61347124e-02 -1.85442239e-01 -2.51966417e-01 -4.06260379e-02\\n1.85756505e-01 1.53034493e-01 2.54712075e-01 -4.36145216e-01\\n5.53748496e-02 1.39850914e-01 3.56785543e-02 4.93247211e-01\\n4.84593995e-02 3.23899239e-02 -5.24902605e-02 -1.89248309e-01\\n4.86704499e-01 -5.69227487e-02 -1.12096176e-01 -2.03981146e-01\\n1.27977058e-02 -1.74649075e-01 -5.89996219e-01 4.73707654e-02\\n-1.28556732e-02 -2.13214219e-01 4.66677137e-02 9.50431898e-02\\n1.17584385e-01 -2.52358988e-02 -4.91814971e-01 -2.63277352e-01\\n-4.43365186e-01 -8.97283852e-02 4.80223633e-02 -3.54797006e-01\\n4.71865721e-02 -6.65075704e-03 -5.13880253e-01 2.10237503e-01\\n-1.59854338e-01 9.45790634e-02 1.49945363e-01 1.74532428e-01\\n-3.33978564e-01 -5.00608608e-02 9.28767696e-02 1.49773344e-01\\n-3.94185960e-01 -3.88539582e-01 1.14003032e-01 -1.00975716e+00\\n9.37254354e-02 4.78034839e-02 -1.35683522e-01 -2.15668213e-02\\n-2.41998453e-02 -7.25695848e-01 1.97929025e-01 -3.63556892e-01\\n-3.62688154e-02 5.97281121e-02 -2.96226978e-01 -3.74101788e-01\\n1.96578294e-01 -4.03228886e-02 -4.21175599e-01 4.32101369e-01\\n-4.60387737e-01 2.73794711e-01 -7.81528801e-02 -6.88246936e-02\\n9.14617255e-02 -2.14492574e-01 1.26816735e-01 -2.41184205e-01\\n-4.60537732e-01 -1.76688552e-01 -4.00467455e-01 -3.17903906e-01\\n2.27430486e-03 -3.30569386e-01 -1.12711966e-01 -9.81530640e-03\\n4.84089911e-01 1.33995324e-01 -7.84346908e-02 -2.69043595e-01\\n5.11095040e-02 -4.70661730e-01 1.33391887e-01 -3.19221884e-01\\n-3.63155976e-02 -1.39551103e-01 2.78282791e-01 -1.00044925e-02\\n1.64159536e-01 -3.32813829e-01 6.79388821e-01 -1.85312018e-01\\n-4.33018923e-01 -6.51442930e-02 9.14761126e-02 1.70146748e-01\\n2.93954521e-01 -5.03762960e-01 1.36249989e-01 3.03121150e-01\\n2.69080549e-01 -1.39889158e-02 2.20592469e-01 -1.36350796e-01\\n7.42800459e-02 1.93731308e-01 -4.44490254e-01 1.88779280e-01\\n7.78465867e-01 1.51724115e-01 1.55441061e-01 1.41939759e-01\\n2.42036760e-01 3.53440672e-01 5.18178642e-01 -6.98996782e-02\\n-5.75617068e-02 2.41093680e-01 1.17671952e-01 -5.14681339e-01\\n-1.02658167e-01 -2.28828207e-01 -1.50963113e-01 -3.68218780e-01\\n6.92465186e-01 2.95690894e-01 -4.80754673e-01 -2.64776200e-01\\n-2.54985571e-01 -8.77965987e-02 3.89253259e-01 -1.16550833e-01\\n-4.52024397e-03 -9.09133330e-02 4.35217857e-01 7.87920132e-03\\n3.91538650e-01 5.03461957e-01 -2.14380041e-01 -3.88900220e-01\\n-1.33473322e-01 1.87866271e-01 1.53757274e-01 3.47062111e-01\\n-1.14306830e-01 1.40867725e-01 -5.30260243e-03 1.18934177e-01\\n-2.42927790e-01 9.41305757e-02 8.51570517e-02 4.71035726e-02\\n3.51350754e-01 -3.23312730e-02 3.40125889e-01 4.92908895e-01\\n1.41081780e-01 5.41592002e-01 3.10832113e-01 1.20370597e-01\\n3.78399640e-01 6.43078268e-01 3.40096653e-01 2.64853239e-01\\n3.01046073e-02 1.99350104e-01 -1.89743899e-02 -4.64694835e-02\\n3.52204859e-01 3.28673244e-01 1.46795750e-01 8.86695147e-01\\n3.32531780e-01 4.12808537e-01 8.48938584e-01 -5.13273418e-01\\n-4.89991188e-01 9.32485238e-02 5.47522545e-01 -3.59978467e-01\\n1.28826266e-02 8.09605643e-02 -2.54163265e-01 3.91615361e-01\\n-4.97708648e-01 -1.22465476e-01 4.73299287e-02 7.39889368e-02\\n2.06746254e-02 -1.18016042e-01 -1.47685260e-01 -7.48841912e-02\\n-2.22785532e-01 -2.86765456e-01 -2.57837087e-01 -1.05210856e-01\\n-2.85868973e-01 -5.64084798e-02 -7.36665055e-02 5.78969382e-02\\n1.80955194e-02 -3.58420610e-01 -1.60148457e-01 6.41921610e-02\\n4.33266968e-01 -2.40184397e-01 -2.15065807e-01 -2.11921751e-01\\n1.72974721e-01 1.77835315e-01 6.63578153e-01 9.20417979e-02\\n2.17247754e-01 -1.78491876e-01 -1.81709394e-01 4.97374982e-02\\n3.64046916e-02 1.15619376e-01 5.76811135e-02 4.14359778e-01\\n-2.90331453e-01 -5.89574650e-02 1.66844234e-01 2.37461403e-01\\n-3.12234402e-01 -2.12106124e-01 6.05743825e-02 2.64162868e-01\\n-2.18059644e-02 9.65858176e-02 -2.73928612e-01 1.50378123e-01\\n-3.99898142e-01 -5.17399132e-01 4.80782270e-01 -2.76247591e-01\\n-2.08895151e-02 2.64553335e-02 3.49517345e-01 2.31085256e-01\\n-1.49710298e-01 2.90703718e-02 -1.86282825e-02 3.37806761e-01\\n1.08412087e-01 3.77807230e-01 -2.54255235e-01 -1.78854495e-01\\n-3.68686050e-01 3.10246855e-01 -1.93599015e-01 3.14195126e-01\\n-9.02616903e-02 4.16895956e-01 -6.84328675e-02 4.50011678e-02\\n1.49650335e-01 2.95631457e-02 -2.29219407e-01 -3.03037673e-01\\n-2.95177370e-01 -1.97104678e-01 2.18565777e-01 -2.86840405e-02\\n1.99898750e-01 -4.43882376e-01 -9.71251801e-02 -1.02621987e-01\\n-3.71873081e-02 -4.33594972e-01 -8.47087502e-02 4.78878021e-02]]',\n", + " 'We are looking for an IBM Cloud Software Engineer to join the team involved in the development of the next intelligent big data platform. This position will consist in creating, optimizing, evolving and developing with the IBM Watson Platform ( Cognitives APIs) all relying on IBM Cloud Platform. Description To design and implement the Backend BigData and Cognitives platform (APIs). Integrate applications by designing database architecture and server scripting Participate in designing a highly scalable web architecture. Support and maintain the web architecture and infrastructure. Scale the resources (nodes, clusters) according to the user growth. Target for high availability for mass consuming. Define specs and communicate clearly with the rest of the team and management. Identify new state of the art web patterns, frameworks, environments and adopt them. Work in a cross-functional team, including external partners to design the integration with other API’s, mobile apps or big data software. Profile Advanced degree in Computer Science or significant experience working with highly scalable and available web projects. Understanding fundamental design principles behind a scalable application. Integration of multiple data sources and databases into one system. Software quality: experience with GIT and Continuous Integration, deployment in multiple environments & automation. Backend architecture & infrastructure: experience in scaling & maintaining large web infrastructures Experience in Machine Learning and Cognitives Approach Experience in BigData and DataScience Culture Experience in developing applications running in cloud environments such as SoftLayer, Bluemix, Amazon Web Services, Azure or other cloud providers and prior experience in designing and building components in a cloud environment Experience with databases like DB2, MySQL, PostgresSQL or Cassandra. Experience with Search like Elastic Search, Solr, Lucene, Experience in processing data in formats such as XML, HTML, or JSON in a large scale environment Experience in Agile/Test-driven development methodologies 5+ years of web engineering / architecture. Ability to take ownership of projects with minimal supervision. Good level of English / French with good verbal and written communication. Swiss working permit or EU citizen.',\n", + " '[\"Infrastructure\", \"Management\", \"Communications\", \"Integration\", \"Written Communication\"]',\n", + " '[\"Application Development\", \"Automation\", \"MySQL\", \"Test-Driven Development (TDD)\", \"Enterprise Application Integration\", \"Apache Cassandra\", \"High Availability Clusters\", \"Web Engineering\", \"Computer Science\", \"Consumables\", \"Continuous Integration\", \"System Software\", \"Scale (Map)\", \"Mobile App\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Node.js\", \"Maintainability\", \"SoftLayer\", \"Levelling\", \"Azure Web Apps\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"DB2 SQL\", \"Machine Learning Methods\", \"Web Project\", \"Web Services\", \"TARGET 3001!\", \"Software Quality (SQA/SQC)\", \"Data Recovery Software\", \"Scalability\", \"Big Data\", \"Amazon Web Services\", \"Cross-Functional Team Leadership\", \"Apache Solr\", \"Agile Testing\", \"Resourcing\", \"Language Experience Approach\", \"Scripting\", \"Git Flow\", \"Extensible Markup Language (XML)\", \"Application Programming Interface (API)\", \"Data Processing\", \"JSON\", \"Custom Backend\", \"Adoptions\", \"Source Data\"]',\n", + " \"['English', 'Moldovan', 'Czech']\"],\n", + " ['84',\n", + " 'application engineer - java',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.55808532e-01 3.37073445e-01 4.68456328e-01 5.96076213e-02\\n5.44890523e-01 -1.30339459e-01 -6.62898943e-02 3.29940349e-01\\n-1.33533999e-01 -4.37654316e-01 -9.55163836e-02 -9.86115709e-02\\n-2.44956892e-02 8.97528455e-02 1.91370547e-01 4.12870944e-01\\n3.98574650e-01 4.05492671e-02 -1.95302904e-01 3.74782205e-01\\n4.89123389e-02 -1.11160949e-01 5.33090308e-02 7.80794084e-01\\n4.13207948e-01 1.13232441e-01 -6.04151897e-02 6.60173744e-02\\n-2.10499361e-01 -3.23715150e-01 4.23470140e-01 -2.09919382e-02\\n-1.34444311e-01 -2.64349818e-01 9.52050239e-02 1.19265221e-01\\n-2.31448621e-01 -5.00229672e-02 -1.45653486e-01 1.76977158e-01\\n-4.10124719e-01 -1.29672006e-01 -3.39588299e-02 3.45962495e-02\\n-2.20398188e-01 -3.71905416e-01 6.46123067e-02 -7.94861168e-02\\n1.17574111e-01 3.11294086e-02 -4.69237506e-01 4.03305441e-01\\n-2.40431517e-01 -2.43310541e-01 3.38967860e-01 6.33943081e-01\\n2.96667460e-02 -5.11293590e-01 -4.87605125e-01 -3.44192207e-01\\n7.87505060e-02 -1.29626557e-01 9.30146426e-02 -2.42762446e-01\\n4.47398901e-01 1.04160108e-01 -8.24963972e-02 3.83848429e-01\\n-7.97209024e-01 -1.07523687e-01 -3.29579711e-01 3.70689780e-02\\n-3.70374799e-01 -8.13968852e-02 -3.12633991e-01 -1.14763446e-01\\n-8.15293640e-02 3.55602741e-01 -1.03652045e-01 1.35296375e-01\\n-6.63444549e-02 3.51141989e-01 -1.81835383e-01 2.70721883e-01\\n2.73774385e-01 2.31659353e-01 3.50735873e-01 3.75950336e-01\\n-3.80406201e-01 4.46385920e-01 1.94512874e-01 -2.76750147e-01\\n2.33661681e-01 1.19846925e-01 4.12772179e-01 6.91626519e-02\\n2.01970413e-01 1.45325661e-01 -1.91437185e-01 1.84454829e-01\\n1.30477324e-01 -2.56454110e-01 -6.58136792e-03 -9.07894596e-02\\n4.78952155e-02 -4.00098674e-02 -4.03733477e-02 1.06311999e-01\\n-3.49379867e-01 5.01761436e-01 6.22101501e-02 -3.02358806e-01\\n-8.92782956e-02 -5.99835992e-01 -8.50415826e-02 8.68865922e-02\\n-4.39783782e-02 1.91453785e-01 1.59146443e-01 2.95719832e-01\\n1.90271661e-01 -9.04824436e-02 1.08334050e-01 8.31530809e-01\\n-1.22043923e-01 4.49038930e-02 -2.67735660e-01 2.90029049e-01\\n1.27206907e-01 -2.70772278e-01 1.79501295e-01 2.63166666e-01\\n1.74689665e-03 6.09629638e-02 -3.04220974e-01 3.00966203e-01\\n-7.15184137e-02 -2.06152022e-01 -3.32405835e-01 2.25395441e-01\\n-1.69399813e-01 -5.35365522e-01 5.83341897e-01 -3.82870249e-02\\n2.75041968e-01 -1.18573099e-01 2.17579566e-02 -2.60559805e-02\\n-1.23969451e-01 3.01834524e-01 7.54818618e-02 2.21436217e-01\\n-3.15245390e-01 -1.66647941e-01 -1.93758175e-01 2.47777402e-01\\n-2.97981381e-01 1.46861881e-01 -1.49710953e-01 -1.04214452e-01\\n3.01210731e-01 2.52711959e-02 -4.04339701e-01 3.56099248e-01\\n-6.74385354e-02 -1.64164379e-01 -1.02923870e-01 3.31898332e-01\\n-1.37728736e-01 2.39060670e-01 -1.13384187e-01 -1.24124274e-01\\n6.32526994e-01 7.46572912e-02 2.40839735e-01 -1.07302647e-02\\n2.22918794e-01 -9.25877169e-02 2.69894093e-01 8.15138370e-02\\n-7.03108072e-01 2.74010420e-01 -6.40975982e-02 -2.34274596e-01\\n6.22633584e-02 -4.20332737e-02 3.22813958e-01 -4.21590626e-01\\n-5.65426871e-02 -1.72655284e-01 -2.85524338e-01 -3.58665943e-01\\n-2.36733884e-01 -2.36240551e-02 4.88393277e-01 -4.98519540e-01\\n-5.10029830e-02 1.99642405e-01 -6.13220513e-01 -6.79643303e-02\\n2.18699187e-01 1.64105758e-01 6.95907474e-02 1.90601468e-01\\n-7.42574036e-02 -5.63156486e-01 1.37512803e-01 -4.56095994e-01\\n-3.15934867e-01 1.56589180e-01 -3.28141838e-01 2.17608362e-01\\n8.49500522e-02 -1.23327123e-02 -1.04825869e-01 1.11761570e-01\\n-2.85331249e-01 4.45580557e-02 1.35202497e-01 3.80220972e-02\\n3.29133093e-01 4.05695960e-02 -4.49544370e-01 5.78053594e-01\\n-2.12196633e-01 4.15153384e-01 1.59640163e-01 -9.36754048e-01\\n5.18396258e-01 3.31254005e-01 3.14372852e-02 -3.10493439e-01\\n6.27963066e-01 -3.67640793e-01 -1.48033082e-01 2.36281469e-01\\n-4.27161992e-01 -2.44814724e-01 1.93949476e-01 -2.02260315e-01\\n-2.75662482e-01 6.55525923e-01 1.09605700e-01 1.94541007e-01\\n4.22844380e-01 -1.77056521e-01 -1.06027231e-01 -5.68426475e-02\\n-2.33480513e-01 -2.83239096e-01 -5.74048519e-01 3.81746776e-02\\n-8.32576007e-02 -6.05826735e-01 -2.30568081e-01 -4.92524147e-01\\n-1.92836434e-01 -3.80383462e-01 -1.81332529e-01 2.67955780e-01\\n1.41903698e-01 2.17924520e-01 -2.59663761e-02 -2.82805413e-05\\n-1.04236759e-01 -6.34298444e-01 6.45491295e-03 3.85725275e-02\\n3.33907098e-01 3.68606746e-01 6.91049248e-02 -1.53220534e-01\\n7.54841194e-02 5.43214202e-01 -3.79810214e-01 -3.71833265e-01\\n1.80991501e-01 1.37095332e-01 -8.96518975e-02 -1.18662618e-01\\n1.00606620e-01 3.50473344e-01 -3.23105812e-01 5.36582321e-02\\n-1.40380487e-01 9.02424827e-02 3.43137801e-01 -1.16156861e-01\\n-2.37240762e-01 -2.30305433e-01 -6.20119125e-02 2.76989222e-01\\n-5.26858091e-01 -2.83450663e-01 6.36926591e-01 1.41324237e-01\\n9.57625210e-02 2.04510853e-01 3.18703741e-01 -6.05596676e-02\\n-2.34628364e-01 -2.48275146e-01 2.10501537e-01 1.15231000e-01\\n2.48011678e-01 1.00390658e-01 -7.82887638e-02 -5.29437125e-01\\n-3.07844353e+00 -2.50917226e-01 1.20902330e-01 -2.61083633e-01\\n2.78342307e-01 -1.24349117e-01 1.32776409e-01 1.43680759e-02\\n-4.02289629e-01 5.13123870e-02 -1.07671551e-01 -1.73335433e-01\\n1.48070514e-01 2.33742535e-01 1.60335720e-01 1.71329409e-01\\n2.15245724e-01 -2.29246348e-01 4.06482965e-02 4.06005919e-01\\n-6.58445060e-02 -8.09059501e-01 1.01522341e-01 -3.60648707e-03\\n3.07430267e-01 2.79584885e-01 -4.22020316e-01 -6.92063645e-02\\n-3.40389699e-01 -2.67280400e-01 4.57585379e-02 -2.82098770e-01\\n-1.55224264e-01 4.03723001e-01 1.53713584e-01 -1.74165189e-01\\n1.02423690e-01 -3.70172977e-01 -9.85361114e-02 -4.75336730e-01\\n1.46209925e-01 -6.77501917e-01 -3.63746211e-02 -3.01472694e-02\\n6.60295725e-01 -3.21714073e-01 2.27353185e-01 8.08809549e-02\\n1.93406820e-01 1.98059082e-01 1.02558687e-01 -9.37359408e-03\\n-3.49216551e-01 -2.95364887e-01 -1.17402233e-01 -1.88076094e-01\\n6.45881295e-01 4.75026369e-01 -2.77792782e-01 2.24572215e-02\\n4.18757983e-02 -3.29170465e-01 -4.85821426e-01 -3.31049681e-01\\n-1.85520738e-01 -2.00931773e-01 -6.25781417e-01 -4.96386766e-01\\n-1.67225331e-01 -1.53440312e-01 -5.19684516e-02 7.37138569e-01\\n-2.70267487e-01 -2.81533390e-01 -8.99527594e-02 -5.24616003e-01\\n2.43159264e-01 -1.89375639e-01 -4.52903137e-02 -2.34442040e-01\\n-2.27502540e-01 -5.09904444e-01 1.63961247e-01 6.39593452e-02\\n-1.58689231e-01 -1.05306461e-01 1.59754351e-01 -2.05803767e-01\\n-3.69312346e-01 -5.18929958e-01 5.75707674e-01 6.63628876e-02\\n3.21575999e-01 1.86075434e-01 3.19788098e-01 1.09983027e-01\\n4.29221332e-01 -1.02604628e-01 1.37512162e-02 -5.35878062e-01\\n7.15918392e-02 3.97919342e-02 5.22148609e-01 -1.40084922e-01\\n1.24339759e-02 4.87452000e-03 -1.84229299e-01 -2.08469592e-02\\n4.39739347e-01 6.02326244e-02 1.33663625e-01 -2.71868944e-01\\n2.80583382e-01 -3.50069523e-01 -2.49759808e-01 1.41578719e-01\\n-4.02060151e-02 6.59861267e-01 3.47793438e-02 -2.96816379e-01\\n-1.62126109e-01 4.53513265e-01 -7.98134431e-02 -1.62108783e-02\\n-1.94086432e-01 1.07621238e-01 -2.27464229e-01 2.19464988e-01\\n1.83093138e-02 -9.78198126e-02 -1.91391110e-01 4.86656697e-03\\n-1.51257411e-01 1.95946336e-01 2.46717036e-01 2.09692076e-01\\n-5.34470789e-02 -3.02856624e-01 -7.21270591e-03 1.93470493e-01\\n2.53031969e-01 3.25770289e-01 1.66620940e-01 -2.34616667e-01\\n3.85101140e-02 3.16680670e-01 -1.49006814e-01 2.45270267e-01\\n-2.36596435e-01 8.04373771e-02 -6.37423277e-01 -2.30439693e-01\\n-2.30456978e-01 -3.34649503e-01 -6.83899829e-03 2.91253537e-01\\n4.45786752e-02 -5.21223731e-02 8.56707990e-02 -4.97735322e-01\\n2.78131902e-01 4.10677344e-02 2.26697251e-01 3.00913006e-02\\n-6.06206506e-02 5.89340568e-01 -7.83510059e-02 -2.26526827e-01\\n-1.43483758e-01 1.50425300e-01 -1.28624856e-01 -2.77871430e-01\\n2.21437011e-02 -5.10774732e-01 -1.24284521e-01 3.86217386e-01\\n1.49989963e-01 -2.12735116e-01 -2.60763764e-01 1.82894036e-01\\n-2.10438296e-03 -4.07131851e-01 -2.56571651e-01 -1.91104766e-02\\n3.39273393e-01 1.41859427e-01 2.06782162e-01 -5.00617266e-01\\n-9.58528928e-03 -5.77640384e-02 1.32779256e-02 3.28384459e-01\\n1.16819277e-01 1.23974651e-01 -8.56348872e-02 -2.47029841e-01\\n3.91880929e-01 -5.13763018e-02 -6.37968630e-02 -6.45359531e-02\\n1.15723625e-01 -2.61147946e-01 -4.43698198e-01 -5.20283356e-03\\n-6.28705919e-02 -2.16344774e-01 -2.21439749e-02 5.34471273e-02\\n6.54756948e-02 5.56902997e-02 -6.02025211e-01 -1.81921363e-01\\n-3.93161595e-01 -1.01522189e-02 -1.80128962e-03 -5.54661036e-01\\n2.57067755e-03 -5.91491163e-02 -6.17012143e-01 2.27462009e-01\\n-1.93288505e-01 -7.72827305e-03 1.46137372e-01 2.70685507e-03\\n-3.74308825e-01 -1.38795897e-01 1.30044013e-01 1.26882434e-01\\n-2.59685308e-01 -2.41290480e-01 -1.71773992e-02 -9.16896820e-01\\n2.41099849e-01 -4.47780043e-02 -1.46295428e-01 8.71659443e-03\\n5.96119016e-02 -7.86224246e-01 2.13490158e-01 -4.42587554e-01\\n-7.34034330e-02 -5.32511994e-02 -2.99654871e-01 -4.19603884e-01\\n3.32528539e-02 -4.87955436e-02 -2.67345995e-01 3.14116657e-01\\n-4.43440706e-01 4.77910995e-01 -5.23517281e-02 6.92546889e-02\\n3.75449434e-02 -3.45616579e-01 2.75129788e-02 -3.67159486e-01\\n-3.87125075e-01 -2.75124967e-01 -2.27405623e-01 -3.12143117e-01\\n-5.44109643e-02 -2.16156214e-01 -1.21164486e-01 9.74652767e-02\\n3.21979523e-01 1.05820104e-01 -2.83785611e-01 -2.47695193e-01\\n1.01856500e-01 -4.55958515e-01 9.02074426e-02 -1.49648845e-01\\n-3.45571898e-02 -1.57413781e-01 2.15351492e-01 6.77896887e-02\\n2.28583157e-01 -3.68386686e-01 4.44630802e-01 -2.92355150e-01\\n-3.59969676e-01 -8.22744370e-02 1.13130346e-01 4.51801717e-02\\n2.53296554e-01 -6.18026316e-01 -6.44735321e-02 3.72729301e-01\\n1.04283050e-01 6.92583397e-02 2.28760540e-01 -1.70242697e-01\\n-1.63246632e-01 2.34861016e-01 -4.79902893e-01 1.48090035e-01\\n7.77719855e-01 2.28743553e-01 5.85735962e-02 2.23965555e-01\\n1.58306122e-01 3.82422984e-01 4.55016315e-01 1.49419159e-02\\n-9.50162858e-02 3.85829329e-01 1.96012005e-01 -5.41675091e-01\\n-1.24380015e-01 -9.51157883e-03 -1.40057385e-01 -3.01467419e-01\\n6.94568574e-01 3.71726364e-01 -4.20915484e-01 -3.55089873e-01\\n-2.26755977e-01 -2.35909551e-01 2.98081458e-01 -6.97169602e-02\\n5.14107719e-02 -1.42977446e-01 5.49829006e-01 -1.31223723e-02\\n2.81506836e-01 6.61413014e-01 -1.87012076e-01 -2.85775006e-01\\n-7.63901770e-02 2.90733933e-01 9.05569568e-02 4.20053661e-01\\n-1.76569521e-01 2.53755927e-01 -3.02340109e-02 1.76752418e-01\\n-1.60879016e-01 6.01500645e-02 2.92551577e-01 6.61502779e-03\\n1.34982318e-01 1.12038657e-01 5.60967207e-01 4.95282680e-01\\n2.00496227e-01 5.04207850e-01 3.72471899e-01 -1.62782501e-02\\n4.71184939e-01 5.92214525e-01 3.25640649e-01 2.45483033e-02\\n-2.64912676e-02 1.69008434e-01 2.05812186e-01 5.43586574e-02\\n3.22243929e-01 4.08530116e-01 8.90217051e-02 9.97545362e-01\\n3.87153029e-01 3.19197863e-01 7.53401756e-01 -7.12076545e-01\\n-2.79803216e-01 -1.47552006e-02 4.94328380e-01 -4.31035519e-01\\n-1.32653294e-02 2.12294117e-01 -2.65596122e-01 3.15961719e-01\\n-4.04976249e-01 -7.22043738e-02 -2.86986753e-02 9.25575048e-02\\n1.18286289e-01 -1.01890124e-01 -1.91296682e-01 4.56276685e-02\\n-1.74387008e-01 -2.33241647e-01 -4.21412408e-01 -2.96364427e-01\\n-2.45122820e-01 -6.12163916e-02 -1.05807714e-01 -7.34834746e-02\\n-4.70886268e-02 -3.62323701e-01 -8.82291272e-02 -3.69754508e-02\\n3.59874010e-01 -1.34197772e-01 -7.44640976e-02 -1.35085329e-01\\n3.40849400e-01 2.69734621e-01 7.25262880e-01 -9.86575484e-02\\n6.82408363e-02 -1.93322390e-01 -2.12183774e-01 3.83212455e-02\\n1.16222426e-02 2.72300448e-02 6.09408990e-02 6.09072864e-01\\n-4.38957065e-01 -2.35902786e-01 3.38127762e-02 3.76781821e-01\\n-3.67565483e-01 -1.03730634e-01 -8.06691051e-02 1.36216834e-01\\n5.58694601e-02 1.21972516e-01 -2.23918110e-01 3.74377519e-02\\n-1.55979425e-01 -5.45422792e-01 3.82009685e-01 -1.06562130e-01\\n-1.06963478e-01 1.02384321e-01 2.55640328e-01 3.24659407e-01\\n-2.01840848e-01 -1.92697197e-02 -6.82788491e-02 3.50340195e-02\\n5.35736457e-02 4.43974257e-01 -1.17212661e-01 -2.35562384e-01\\n-3.46341729e-01 2.55334347e-01 -1.38096064e-01 4.98439968e-02\\n-2.76826546e-02 3.61386091e-01 1.17341019e-02 1.87336355e-01\\n1.89934328e-01 8.19223654e-03 -3.49441022e-01 -2.55365729e-01\\n-1.77964300e-01 -8.43334943e-02 -6.15842268e-03 -1.66509047e-01\\n2.88866103e-01 -2.58812249e-01 -1.03354618e-01 -2.33927459e-01\\n-1.81191191e-01 -2.71966875e-01 -6.74397647e-02 -7.69971758e-02]]',\n", + " 'About our client Our client is the world’s leading wholesale providers of reinsurance, insurance and other innovative forms of insurance-based risk transfer. Your responsibilities Our client is hiring an application engineer to work in a team with IT specialists and business analysts to design and develop solutions for global IT projects. The role is focused on maintaining and developing reporting applications for the Finance division. Maintaining, analyzing, designing, documenting, implementing, testing and deploying high-quality applications is within the responsibility of the team and you. You are interested to find out how you can apply your software engineering skills in the area of object-oriented design and analysis. Knowledge in surrounding technologies like J2EE, HTML5, JavaScript and WebSphere Liberty will help you by understanding the bigger picture. You are not afraid to learn other technologies like z/OS mainframe (i.e. JCL, JES, DB2) In addition, providing Level 3 support for ongoing operations is an integral part of the job. You enjoy solving challenging problems and you are equipped with good analytical skills and are highly motivated. You are willing to constantly develop your knowledge of IT methods and tools. You bring in an interest for reinsurance, financial topics, business requirements engineering and solution design. You will cooperate closely with the team lead, team members and internal clients, promoting teamwork within the project and the department across the globe. Your profile Graduates in computer science are preferred. Graduates in mathematics, technical studies, or natural sciences with software engineering experience are also considered. Persons with multiple years with professional experience in software engineering and projects are preferred. Knowledge in all of the following areas is required: Object Oriented Design & Analysis Java (programming language and libraries), J2EE Web services technologies (RESTful) and WebSphere liberty profile SQL and relational database design Creation and maintenance of technical documentation Strong command of German and English The ideal candidate also offers: Experience with data- and compute-intensive applications (batch processing, scheduling) Know-how in HTML5/JavaScript web-application development, Spring, Hibernate, IBM WebSphere Application Server Good analytical skills Cooperative, team-oriented work-style Experience with agile and test-driven and/or test-oriented software development (JUnit/bamboo/Jira) Above average quality awareness Passion to deliver innovative technical solutions which focus on business requirements and system stability Curiosity and open-mindedness; willingness to learn and develop skills on requirements engineering, test case engineering and solution definition and design Innovative, showing a high degree of own initiative Ability to work under pressure Ability to express him-/herself effectively in one-to-one conversations and small groups Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung HTML JavaScript Web JEE/J2EE Agile Hibernate (Framework) Spring (Framework) SQL Sprachen: Deutsch Englisch Job ID: 2085',\n", + " '[\"Analytical Skills\", \"Team Oriented\", \"Teamwork\", \"Cooperation\", \"Willingness To Learn\", \"Integration\", \"Innovation\", \"Curiosity\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Risk-Based Testing\", \"Test Case\", \"Tooling\", \"KM Programming Language\", \"Software Design Documents\", \"Agility\", \"Computer Science\", \"Junit\", \"Atlassian Bamboo\", \"Natural Sciences\", \"Hibernate (Java)\", \"SQL (Programming Language)\", \"Maintainability\", \"z/OS\", \"HTML5\", \"Application Servers\", \"E (Programming Language)\", \"Levelling\", \"Library\", \"HyperText Markup Language (HTML)\", \"Database Design\", \"Software Engineering\", \"Reinsurance\", \"DB2 SQL\", \"Web Services\", \"Business Requirements\", \"Finance\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Object-Oriented Design\", \"Job Control Language (JCL)\", \"Technical Documentation\", \"IBM Websphere Application Server\", \"Technical Solution Design\", \"Batch Processing\", \"Relational Databases\", \"Software Development\", \"Solution Design\", \"Additives\", \"JIRA Studio\", \"Java (Programming Language)\", \"Spring Framework\", \"Web Application Development\"]',\n", + " \"['English', 'Chuang', 'Turkmen']\"],\n", + " ['22',\n", + " 'software engineer',\n", + " 'Bergdietikon',\n", + " 'Consulting',\n", + " 'www.behind-digital.com',\n", + " '[[-5.90697229e-02 1.92498304e-02 3.87356907e-01 -7.15880617e-02\\n3.22084755e-01 -2.15501979e-01 -6.63695857e-02 3.97634625e-01\\n2.09165141e-02 -4.51799512e-01 3.30017544e-02 -3.08219016e-01\\n6.15430474e-02 2.43660837e-01 -1.32951746e-02 2.38168046e-01\\n1.30762652e-01 6.25353456e-02 -1.15504324e-01 3.06345403e-01\\n8.64320099e-02 -1.85176179e-01 9.84735712e-02 7.57409096e-01\\n4.93705899e-01 -1.89804821e-03 -1.15245106e-02 2.10546136e-01\\n-1.36642814e-01 -2.55426347e-01 4.77892250e-01 1.50667066e-02\\n-1.15244262e-01 -4.56027895e-01 3.66785228e-01 5.06629683e-02\\n-4.15707976e-01 -1.10122919e-01 -2.40538403e-01 2.55900007e-02\\n-6.56731427e-01 -1.60800725e-01 -6.83459416e-02 1.19278561e-02\\n-1.62522569e-01 -2.54644960e-01 1.79070234e-01 -2.12749720e-01\\n1.61552966e-01 -1.11505739e-01 -5.78838289e-01 1.57199815e-01\\n-2.30957001e-01 -2.47693166e-01 2.93649733e-01 6.66485846e-01\\n-1.37940675e-01 -3.74371409e-01 -6.05260015e-01 -1.80233270e-01\\n1.51930302e-01 -2.64761120e-01 -1.46372899e-01 -4.46116209e-01\\n1.95855469e-01 1.90346427e-02 1.64089173e-01 4.98041749e-01\\n-9.10122037e-01 -2.09277458e-02 -2.66835630e-01 -1.10039823e-01\\n-3.09296191e-01 -4.78990860e-02 -3.65474015e-01 -1.02367423e-01\\n-9.73782167e-02 3.39759290e-01 7.56907761e-02 3.24463546e-02\\n-1.49492070e-01 4.42747980e-01 -3.23321164e-01 4.96977329e-01\\n1.30325064e-01 1.85690328e-01 1.42984599e-01 2.62793213e-01\\n-3.76342177e-01 6.27630711e-01 1.47171915e-01 -2.97406137e-01\\n2.87895463e-02 6.20058030e-02 4.12518919e-01 5.81836468e-03\\n2.87557662e-01 5.20693213e-02 -1.00697219e-01 3.65672529e-01\\n3.59967202e-01 -3.58083248e-01 -8.25724080e-02 -2.22581610e-01\\n1.45372719e-01 -1.80870984e-02 7.81507567e-02 1.72770873e-01\\n-1.73971608e-01 2.20883921e-01 2.04097897e-01 -8.25681016e-02\\n-1.32840797e-01 -4.67537969e-01 -1.65118545e-01 -4.39303368e-02\\n-1.25740960e-01 1.13545030e-01 4.13704738e-02 1.18052058e-01\\n5.31233326e-02 1.52762249e-01 3.42401117e-02 8.89394939e-01\\n-1.70897812e-01 3.77048440e-02 -1.46692693e-01 4.35713142e-01\\n4.82495204e-02 -3.23864341e-01 2.76832759e-01 2.67522722e-01\\n5.93155585e-02 -4.47779328e-01 -1.03766508e-01 2.69337773e-01\\n-3.87678705e-02 -1.26786411e-01 -3.05339307e-01 8.67760181e-02\\n3.06430878e-03 -2.38800988e-01 6.92716181e-01 2.80005664e-01\\n2.24171594e-01 1.76719040e-01 1.24009795e-01 -1.99632630e-01\\n-2.82599241e-01 2.23259091e-01 -3.35459299e-02 1.82143718e-01\\n-1.96323127e-01 -2.32997432e-01 -2.72435784e-01 -1.94149315e-02\\n-3.13872874e-01 2.03990370e-01 -1.28979459e-01 4.63761464e-02\\n3.95511538e-01 -1.43596172e-01 -7.70782977e-02 3.47966790e-01\\n-7.60922655e-02 3.18855822e-01 1.48644239e-01 1.67898506e-01\\n-8.68766680e-02 2.27451980e-01 -9.88272950e-02 -7.69993514e-02\\n6.38916910e-01 1.17101176e-02 1.47830203e-01 -7.81669617e-02\\n1.95734799e-01 9.37228575e-02 1.18589282e-01 5.22155426e-02\\n-7.41063654e-01 1.95023298e-01 8.17947164e-02 -4.84484807e-02\\n2.93577585e-04 -1.81881979e-01 1.29528821e-01 -3.25801998e-01\\n-2.54525449e-02 -1.13045484e-01 -4.49147582e-01 -1.74974531e-01\\n-2.36789584e-01 -1.16625316e-01 4.83282268e-01 -4.48038965e-01\\n-1.45088971e-01 6.16411790e-02 -2.64690369e-01 7.79283419e-02\\n2.51147687e-01 2.97649324e-01 2.67692089e-01 7.03499690e-02\\n-2.05553398e-01 -6.09242558e-01 5.01984507e-02 -2.68959701e-01\\n-2.63000578e-01 1.48040742e-01 -3.12735438e-01 2.80186623e-01\\n1.49960667e-01 -3.08451712e-01 -7.66111836e-02 1.12253748e-01\\n-7.62751997e-02 -5.64620756e-02 1.01130698e-02 -4.41561500e-03\\n3.43583584e-01 1.89318642e-01 -3.41510415e-01 3.69745851e-01\\n-1.56446658e-02 7.06944048e-01 1.78014617e-02 -7.84260869e-01\\n5.07012129e-01 3.36031735e-01 -1.82145670e-01 -3.02309602e-01\\n4.83803898e-01 -1.82280526e-01 -4.67858352e-02 1.02060385e-01\\n-6.14063680e-01 -4.60184366e-01 7.69026577e-02 -2.04062939e-01\\n-2.17569798e-01 4.47465092e-01 -7.65245361e-03 9.05045122e-02\\n3.30235273e-01 -2.14643240e-01 -1.81797370e-01 -1.66454576e-02\\n7.63276815e-02 -2.51149982e-01 -5.45484126e-01 -1.76503733e-01\\n-1.76720366e-01 -5.24456978e-01 -1.94476992e-01 -3.86347324e-01\\n-2.77320027e-01 -4.55801487e-01 -1.96946904e-01 2.88875774e-02\\n2.34343782e-01 2.01302260e-01 5.15171327e-02 1.24490641e-01\\n-2.12943345e-01 -5.94643831e-01 2.99840383e-02 1.77204460e-01\\n3.33040446e-01 1.18492641e-01 1.43386200e-01 -1.04594290e-01\\n-2.61927973e-02 6.41000986e-01 -2.16013163e-01 -1.97362646e-01\\n2.29460239e-01 1.05897479e-01 5.82566038e-02 -2.86858708e-01\\n7.50339106e-02 3.05699438e-01 -4.28190589e-01 1.03366174e-01\\n-1.23979226e-01 -1.47475824e-01 4.88919169e-01 -6.37356006e-03\\n-3.63598615e-01 -1.58088371e-01 -2.52051324e-01 8.24041814e-02\\n-5.83899081e-01 -4.71512862e-02 6.44982100e-01 1.06046848e-01\\n1.80375293e-01 1.10018857e-01 1.02523491e-01 -8.58148634e-02\\n-1.37858063e-01 -1.18157968e-01 2.49138579e-01 2.56441593e-01\\n-1.64678916e-01 1.61965743e-01 -1.50298804e-01 -6.03684187e-01\\n-3.53884387e+00 -1.66385338e-01 1.43651798e-01 -3.44596684e-01\\n1.43189982e-01 -1.56618446e-01 -2.35876217e-02 -1.16823934e-01\\n-1.88289329e-01 -2.25103721e-01 -2.28481054e-01 -1.61166966e-01\\n1.47299856e-01 2.46515367e-02 1.68859929e-01 3.00495982e-01\\n3.71193111e-01 -1.39538765e-01 4.21666615e-02 1.73326060e-01\\n-3.72239739e-01 -5.27086914e-01 1.04839034e-01 -1.17252864e-01\\n3.10631633e-01 3.70246857e-01 -3.31588715e-01 -1.47960335e-01\\n-1.96688399e-01 -1.83902517e-01 7.21079707e-02 -4.44871098e-01\\n1.47916764e-01 1.89034641e-01 3.30240056e-02 -3.28062661e-02\\n1.09414786e-01 -4.66481328e-01 -9.94480327e-02 -4.43042457e-01\\n4.88443263e-02 -4.97565687e-01 4.05698121e-02 -1.42104521e-01\\n8.87242138e-01 -4.50150430e-01 1.21466431e-03 2.68027745e-02\\n1.19330682e-01 2.31589615e-01 4.17047106e-02 9.26459953e-02\\n-3.78078759e-01 -3.12201321e-01 -1.18358061e-01 1.04628233e-02\\n3.08340162e-01 4.56080198e-01 -2.58575231e-01 6.50123209e-02\\n-1.57848019e-02 -2.69014060e-01 -4.29757208e-01 -2.26546124e-01\\n-8.53807330e-02 -1.99883997e-01 -4.87628967e-01 -3.54114622e-01\\n-5.72812222e-02 -2.75813699e-01 -7.38668591e-02 4.70817953e-01\\n-2.85164058e-01 -4.69380409e-01 3.53815593e-02 -4.16886240e-01\\n3.46859962e-01 5.00312112e-02 1.32368684e-01 -1.77790269e-01\\n-2.89823830e-01 -6.01796687e-01 6.41048476e-02 -4.47928421e-02\\n-2.07037494e-01 -3.01630348e-01 7.71933943e-02 -2.04316065e-01\\n-2.60478377e-01 -6.11738622e-01 3.55137557e-01 4.60728034e-02\\n1.53969526e-01 4.44217622e-02 2.20213488e-01 -2.16164261e-01\\n1.66568115e-01 1.35732777e-02 -1.55497611e-01 -2.54577696e-01\\n1.78706467e-01 -2.79983580e-02 2.88263530e-01 -1.08268999e-01\\n4.67528094e-04 9.93764475e-02 -2.01266706e-01 -6.70529306e-02\\n2.28374794e-01 1.50854867e-02 1.65409744e-01 -3.65247518e-01\\n4.13163364e-01 -8.08945149e-02 -2.30804265e-01 1.79677561e-01\\n4.03349735e-02 4.17586803e-01 1.51773766e-02 -2.28993714e-01\\n-8.47993791e-02 3.83248806e-01 5.98196611e-02 -7.28707016e-02\\n-2.08068326e-01 7.96936899e-02 -3.05856109e-01 2.39873976e-01\\n5.05812541e-02 -1.97099045e-01 -1.92490175e-01 -4.00975347e-02\\n-2.53551096e-01 3.63657713e-01 2.06890151e-01 -2.28365194e-02\\n-1.23668313e-01 -4.56591427e-01 4.94027175e-02 2.60141224e-01\\n9.73235667e-02 5.74870646e-01 2.07484946e-01 -1.64960101e-01\\n3.39396521e-02 3.46997142e-01 -2.24972904e-01 -6.64325431e-02\\n-3.06013584e-01 6.27606139e-02 -5.69776058e-01 -3.28463376e-01\\n-3.62535059e-01 -4.44711357e-01 3.91949303e-02 2.02419132e-01\\n9.97913778e-02 -6.12550527e-02 -2.19105314e-02 -3.99106383e-01\\n2.30006993e-01 1.34858280e-01 3.26067001e-01 2.44457424e-01\\n1.17442429e-01 5.29643893e-01 4.08034660e-02 -1.76353827e-01\\n-1.33579224e-01 7.03076497e-02 -2.70969599e-01 -2.23659158e-01\\n-1.96700227e-02 -5.67251086e-01 -2.03932519e-03 4.59441632e-01\\n-2.36693118e-02 -2.24491745e-01 -8.57427642e-02 3.07308614e-01\\n-8.25798139e-02 -2.04445377e-01 -3.13317001e-01 1.59328580e-01\\n4.25629288e-01 2.72927344e-01 1.91312522e-01 -3.48455280e-01\\n7.42041245e-02 6.58947602e-02 -2.22712278e-01 6.19362593e-01\\n4.16553244e-02 1.03516646e-01 -2.39900678e-01 -2.52179086e-01\\n3.16543758e-01 -8.90434161e-02 3.97701077e-02 -1.11334361e-01\\n3.19872677e-01 -1.55574024e-01 -2.39475131e-01 2.49652624e-01\\n1.13142423e-01 -1.87225044e-01 1.13470986e-01 1.38564616e-01\\n3.70389707e-02 1.62575573e-01 -6.30668223e-01 -2.92453557e-01\\n-3.99146110e-01 1.10396124e-01 1.48829103e-01 -4.67499167e-01\\n1.79926883e-02 1.88286242e-03 -3.89978766e-01 1.98242381e-01\\n-1.27938315e-01 -5.81056960e-02 2.43402243e-01 1.17657907e-01\\n-2.96742618e-01 -6.33418858e-02 1.79303214e-01 2.29626194e-01\\n-2.45782837e-01 -2.06666693e-01 -3.35800461e-02 -9.29463148e-01\\n2.23673359e-01 7.29157180e-02 -1.01103127e-01 2.93183923e-01\\n3.25593874e-02 -5.68493187e-01 4.36539426e-02 -1.48256943e-01\\n-2.46190101e-01 1.03062510e-01 -2.97377054e-02 -5.30274987e-01\\n-6.50946498e-02 7.83666410e-03 -1.15137413e-01 5.28556108e-01\\n-3.76523614e-01 4.49867010e-01 -3.80168147e-02 5.84761426e-02\\n-4.32460755e-02 -2.61065722e-01 1.81839705e-01 -5.76361179e-01\\n-3.13833743e-01 -3.02043676e-01 -3.43342632e-01 -2.57068694e-01\\n8.23177397e-02 -5.64761162e-01 -1.16347261e-02 2.12286144e-01\\n4.02159691e-01 -1.50288653e-03 -1.49140298e-01 -3.75115067e-01\\n2.13044494e-01 -5.29640257e-01 5.57774715e-02 -1.76500734e-02\\n9.50891674e-02 -1.97668195e-01 1.06907263e-01 1.05619892e-01\\n2.34327182e-01 -6.49115503e-01 2.76991069e-01 -3.63622487e-01\\n-2.72558421e-01 4.26127249e-03 1.12596355e-01 -1.62064582e-02\\n3.82132679e-01 -4.21694070e-01 -6.79756105e-02 4.06790286e-01\\n3.41996074e-01 -1.79658890e-01 2.92355984e-01 -3.69793028e-02\\n-1.46797478e-01 4.33824927e-01 -2.15216279e-01 1.20397866e-01\\n8.20362866e-01 -1.17482141e-01 1.87678188e-01 1.56477958e-01\\n1.83569774e-01 4.26871330e-01 3.82140905e-01 2.88187619e-03\\n-1.79248855e-01 3.37101251e-01 2.25690141e-01 -4.70945835e-01\\n2.25053087e-01 -1.37736395e-01 -1.37479767e-01 -1.92626432e-01\\n6.18137240e-01 5.72110116e-01 -4.77607995e-01 -4.73110601e-02\\n-5.64659685e-02 -2.01015130e-01 -1.86540000e-02 -4.96195024e-03\\n-4.80545219e-03 -6.90571442e-02 4.20113027e-01 -7.68214539e-02\\n1.19988456e-01 4.61118281e-01 -2.54854888e-01 -2.74702638e-01\\n9.11292881e-02 2.88592160e-01 -1.54909000e-01 3.42322022e-01\\n-2.79259354e-01 4.46368515e-01 2.97971480e-02 4.33158278e-02\\n-1.11211315e-02 6.12120591e-02 1.81251779e-01 6.78690299e-02\\n4.58965227e-02 -2.43143607e-02 3.78362030e-01 3.70555788e-01\\n4.14361179e-01 5.12473047e-01 2.92659730e-01 1.58590242e-01\\n5.06956339e-01 5.71667790e-01 4.27521676e-01 2.02264220e-01\\n-9.96391848e-02 -5.88743091e-02 1.27711564e-01 1.56993553e-01\\n3.08242857e-01 4.10435021e-01 1.33390680e-01 9.25025523e-01\\n4.79304373e-01 1.61568135e-01 5.29406548e-01 -6.68632030e-01\\n-3.90176207e-01 -3.76478769e-03 3.00428540e-01 -2.43273661e-01\\n-8.05053189e-02 9.34481770e-02 -7.39339814e-02 3.32135856e-01\\n-2.37521321e-01 -2.65890777e-01 -9.14464518e-02 3.95459294e-01\\n2.76408289e-02 -1.98852390e-01 -2.02611387e-01 2.68706027e-02\\n-1.13139100e-01 -1.74532145e-01 -4.40434188e-01 -8.28698501e-02\\n-3.15015316e-01 -3.78962278e-01 -4.51962575e-02 2.85281017e-02\\n-8.46900418e-02 -4.02702838e-01 -7.79105946e-02 1.53156281e-01\\n3.20196211e-01 -1.77886724e-01 -2.26824582e-02 -2.78161138e-01\\n3.10718983e-01 1.47873133e-01 4.92353380e-01 1.92223951e-01\\n8.09796676e-02 -3.04575056e-01 -6.47391826e-02 1.90143943e-01\\n1.97994009e-01 2.04498395e-01 -4.80325706e-02 2.47786894e-01\\n-2.66602904e-01 -1.52968258e-01 3.36418957e-01 3.85989040e-01\\n-5.03808141e-01 9.83584672e-02 -6.18576668e-02 7.58966953e-02\\n-7.66670331e-02 2.66651601e-01 -1.10115066e-01 1.02342097e-02\\n-1.61913842e-01 -4.29271072e-01 2.23915756e-01 -1.76836461e-01\\n-1.11590564e-01 -1.34869531e-01 2.30460331e-01 2.56823242e-01\\n-7.08037764e-02 3.77928764e-02 2.96847411e-02 2.40338728e-01\\n2.57309787e-02 2.80185193e-01 -2.65034318e-01 -2.86984533e-01\\n-2.41443217e-01 3.72472554e-02 -1.90118030e-01 1.21536605e-01\\n8.08183923e-02 3.02979201e-01 2.20730409e-01 -6.66994750e-02\\n5.34560204e-01 -2.20442221e-01 -4.85056033e-03 -1.33125797e-01\\n-3.28821123e-01 -1.15221068e-01 -6.67722300e-02 -4.28645238e-02\\n2.74226576e-01 -3.71595293e-01 -1.22148730e-01 2.98989881e-02\\n-8.56320336e-02 -3.00180584e-01 2.52191182e-02 -5.35060428e-02]]',\n", + " \"The DIADEM project will use blockchain technology to solve real problems in the mobile telecoms billing and contract space. It’s an ambitious project with huge potential to both transform the mobile telecoms sector, and to generate substantial revenue. The project is in the startup phase and we need to expand the core team to help transform the vision into a robust project. These will be your tasks We are seeking blockchain developers with the following skills Experience developing blockchain software and smart contracts Knowledge of HyperLedger and Ethereum development Experience with developing software more broadly You're offering these qualifications Full-stack development HyperLedger Fabric Blockchain We're offering these benefits The project is not funded at this time so initially you will need to be prepared to devote time to the project in return for an eventual share of token equity. Once the project is funded a salary will be provided. This is a great opportunity to get in at the start with a project with real-world tangible application and massive scope for development, so please get in touch if you like to come on-board.\",\n", + " '[\"\"]',\n", + " '[\"Equities\", \"MASSIVE (Software)\", \"Hyperledger\", \"Billing\", \"Software Development\", \"Blockchain\", \"Ethereum\", \"Phase (Waves)\", \"Mobility\"]',\n", + " \"['English', 'Tigrinya', 'Southern Sotho']\"],\n", + " ['75',\n", + " 'data scientist (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.11555862e-01 2.90439308e-01 2.43743166e-01 -6.73134923e-02\\n5.26016116e-01 -1.71804175e-01 -1.54827498e-02 3.27446796e-02\\n-2.04832897e-01 -3.60443443e-01 -5.93928993e-02 -1.11598141e-01\\n-9.30588394e-02 -9.82516408e-02 1.18764192e-01 6.31380558e-01\\n1.98650539e-01 1.30750062e-02 -2.13116661e-01 2.35080779e-01\\n5.07640541e-02 5.95810125e-03 5.48583828e-02 5.70251405e-01\\n3.36387813e-01 -4.28584293e-02 -1.89078376e-01 1.25269055e-01\\n-2.11285919e-01 -1.25119597e-01 1.98547840e-01 1.64403260e-01\\n-6.48555011e-02 -1.93890929e-01 -1.12815481e-02 2.41606012e-01\\n-1.78396910e-01 7.00846910e-02 2.14162581e-02 3.37384015e-01\\n-3.17803293e-01 -1.89752460e-01 -4.00397666e-02 -5.83578125e-02\\n-3.76946032e-01 -4.48038787e-01 -5.03118001e-02 -9.86058712e-02\\n1.58417061e-01 -2.47141525e-01 -4.22548532e-01 2.86312491e-01\\n-6.35446534e-02 -5.90158775e-02 1.99346364e-01 6.85207367e-01\\n9.88571495e-02 -4.28662062e-01 -1.03581704e-01 -2.02687562e-01\\n-9.93999559e-03 -1.12690456e-01 -9.03542936e-02 -1.94134966e-01\\n5.91465473e-01 1.22063033e-01 1.56430006e-02 2.72757053e-01\\n-7.88408458e-01 -1.01638965e-01 -1.85445800e-01 1.53270736e-01\\n-3.62269640e-01 -1.40357226e-01 -2.16223165e-01 -1.24481566e-01\\n1.22514643e-01 3.15117657e-01 -5.72549999e-02 6.58501983e-02\\n-1.27125829e-01 2.40262479e-01 -2.08158925e-01 7.11812750e-02\\n2.96646804e-01 2.65437573e-01 1.41527385e-01 3.49135011e-01\\n-3.71321589e-01 1.83299661e-01 1.32367179e-01 -2.57658720e-01\\n1.60240427e-01 1.51241958e-01 5.07546782e-01 1.20145254e-01\\n-9.14805308e-02 1.82396650e-01 -1.85440287e-01 3.79287213e-01\\n1.36634469e-01 -2.10370824e-01 -3.57755348e-02 7.12437276e-03\\n-7.95886293e-02 -1.72915235e-01 -3.00242696e-02 3.16566557e-01\\n-2.46039420e-01 3.64842594e-01 1.20915711e-01 -2.42251143e-01\\n9.33149531e-02 -6.76228344e-01 -2.91599274e-01 -7.51264244e-02\\n-1.34301543e-01 2.09640756e-01 3.04557830e-01 3.18822473e-01\\n7.95031711e-02 8.63540918e-02 3.87014925e-01 1.18354905e+00\\n-9.42070857e-02 2.55286515e-01 -5.38273826e-02 4.10368413e-01\\n1.66878939e-01 -2.20077470e-01 1.10328980e-01 3.76161784e-01\\n2.88229942e-01 -6.57120422e-02 -1.83342583e-02 1.52587667e-01\\n-2.80916572e-01 -3.03427875e-01 -3.79278898e-01 1.43539757e-01\\n-1.78206876e-01 -5.10638297e-01 5.83467960e-01 3.49937901e-02\\n1.03938371e-01 -1.51902050e-01 -1.20379880e-01 -7.03316107e-02\\n-1.26891017e-01 3.43891472e-01 1.43059522e-01 6.14267178e-02\\n-4.26526904e-01 -2.56333947e-01 -2.54625082e-01 1.92367613e-01\\n-2.00437099e-01 8.64835903e-02 -2.37875402e-01 -1.54359415e-02\\n1.90354496e-01 1.50561687e-02 -4.71203744e-01 1.60527661e-01\\n2.12555681e-03 -5.21052241e-01 -7.49117881e-02 4.98623580e-01\\n-9.78956372e-02 2.47593269e-01 -5.06086983e-02 -2.22749561e-01\\n5.81299126e-01 6.36968836e-02 5.34296446e-02 -1.83920458e-01\\n3.45435202e-01 -1.65651396e-01 2.52314806e-01 2.03706607e-01\\n-6.74226284e-01 2.70633548e-01 -1.54546738e-01 -2.04136074e-01\\n1.92002311e-01 1.07969724e-01 6.03751302e-01 -3.36163640e-01\\n-2.13438328e-02 -1.46973848e-01 -2.82903790e-01 -2.60321736e-01\\n-2.87149638e-01 2.27827784e-02 4.77642506e-01 -7.18863904e-02\\n-6.90290146e-03 2.23712072e-01 -5.49547434e-01 -5.46188056e-02\\n1.15351357e-01 2.16850802e-01 2.73859441e-01 1.10779583e-01\\n-1.26846343e-01 -6.54958904e-01 -2.46623904e-02 -4.12901253e-01\\n-4.53823358e-01 2.55083263e-01 -1.69219643e-01 2.85879850e-01\\n1.84488997e-01 9.73493829e-02 6.93552662e-04 1.20703936e-01\\n-3.48493636e-01 1.26679754e-02 2.11851016e-01 2.14580268e-01\\n3.13206837e-02 4.63391580e-02 -5.13124704e-01 3.91052097e-01\\n-3.52221951e-02 6.17624402e-01 3.67429554e-01 -8.10084522e-01\\n5.38096130e-01 4.02823687e-01 1.16752625e-01 -2.54842848e-01\\n5.57982206e-01 -3.00403655e-01 -7.87999257e-02 1.04020417e-01\\n-2.49045014e-01 -1.57891899e-01 3.17537129e-01 -1.32099360e-01\\n-3.30077976e-01 5.91726363e-01 3.55832905e-01 1.64920524e-01\\n3.61044586e-01 -3.35754871e-01 -1.31146476e-01 1.27146989e-01\\n-1.33231238e-01 -2.97007203e-01 -4.39045340e-01 7.25508630e-02\\n-5.76176718e-02 -5.06333351e-01 -1.10034250e-01 -4.12959337e-01\\n-1.79132521e-01 -4.12871659e-01 -4.30766903e-02 4.75330621e-01\\n9.58494768e-02 1.40172631e-01 1.14418812e-01 -1.17533199e-01\\n-9.75390971e-02 -5.52489340e-01 -1.73331439e-01 -9.95348468e-02\\n4.63406146e-01 2.63907492e-01 2.07709502e-02 -4.49075401e-02\\n2.38032639e-03 3.57018918e-01 -5.59494853e-01 -5.19638836e-01\\n7.17170676e-03 7.78084844e-02 -2.14344725e-01 -2.05588229e-02\\n5.84143102e-02 5.40068686e-01 -1.94340661e-01 2.73501307e-01\\n-3.10353786e-01 3.87848057e-02 2.27466494e-01 -8.67832974e-02\\n-1.77429259e-01 -2.32428044e-01 -1.91218644e-01 2.38477394e-01\\n-7.27529585e-01 -3.66210639e-01 4.48359877e-01 2.00410128e-01\\n1.50636598e-01 -9.00894310e-03 1.16743378e-01 -1.63753822e-01\\n-2.84284770e-01 -1.84285387e-01 -1.03945754e-01 1.24566190e-01\\n-1.95649207e-01 5.49074225e-02 -2.59083986e-01 -4.41251993e-01\\n-3.83032179e+00 -1.12078888e-02 9.95448530e-02 -2.30838463e-01\\n1.25900716e-01 -5.85343465e-02 1.37677148e-01 -1.20255435e-02\\n-3.61738920e-01 -1.32911429e-02 -3.92558992e-01 -2.24743068e-01\\n-1.74907774e-01 4.80667293e-01 1.60809442e-01 -1.24164917e-01\\n-2.23787874e-02 -3.65350395e-01 -2.12771669e-02 4.33080643e-01\\n1.42978385e-01 -6.35747194e-01 -2.78150924e-02 6.63202703e-02\\n7.33892247e-02 9.88208354e-02 -3.03018242e-01 7.14696050e-02\\n-3.20187062e-01 -4.12855715e-01 5.30754738e-02 -2.79922694e-01\\n-1.33402068e-02 2.68121749e-01 1.77963570e-01 8.56625363e-02\\n-1.74222812e-01 -2.49606416e-01 1.74995333e-01 -3.12451929e-01\\n-9.16491747e-02 -4.74989623e-01 6.48437813e-02 -7.61047229e-02\\n6.51225686e-01 -2.41680205e-01 1.00490831e-01 1.99631497e-01\\n2.65959978e-01 2.66152680e-01 -3.99318822e-02 1.81837790e-02\\n-2.72162974e-01 -1.72152102e-01 -6.75251484e-02 -3.54183882e-01\\n4.02745277e-01 3.57949913e-01 -2.61477947e-01 -8.52075368e-02\\n1.25592589e-01 -2.87037104e-01 -4.64866310e-01 -3.40538234e-01\\n-3.59270006e-01 -7.23846331e-02 -8.52823913e-01 -6.17260337e-01\\n-5.35104424e-02 -1.49468258e-01 -1.73587695e-01 4.98814523e-01\\n-4.20341790e-01 -5.93547463e-01 -9.93520766e-02 -3.72091532e-01\\n3.85716408e-02 -2.85469085e-01 1.64575145e-01 4.83522099e-03\\n-3.50459367e-01 -5.09117544e-01 4.09958810e-02 2.06249505e-02\\n-6.33743107e-02 -2.61272073e-01 -1.63085356e-01 -4.27231163e-01\\n-4.42923754e-01 -4.67792958e-01 5.27583063e-01 4.38655494e-03\\n2.88466185e-01 1.79134965e-01 3.35528851e-01 1.64853334e-01\\n4.00547385e-01 -4.27129567e-02 3.22156161e-01 -3.53896528e-01\\n9.08770338e-02 -2.25402161e-01 7.77115583e-01 -3.30181777e-01\\n2.62016594e-01 2.25058317e-01 -3.48582029e-01 -7.54140839e-02\\n4.51124430e-01 3.10696121e-02 -8.62401277e-02 -2.13893861e-01\\n4.27063555e-01 -4.00535226e-01 -2.22272173e-01 1.98532298e-01\\n6.77602515e-02 7.04245627e-01 5.53727001e-02 -4.28555667e-01\\n-2.94217885e-01 3.28479856e-01 -1.80308357e-01 -2.61540145e-01\\n6.04375452e-02 2.08908677e-01 -1.38546556e-01 2.51392990e-01\\n2.68681888e-02 -1.19131297e-01 -1.67560622e-01 -1.30164614e-02\\n-5.49458563e-02 2.89081097e-01 3.18010449e-01 8.74031261e-02\\n-1.62215054e-01 -1.66866407e-01 -1.18104838e-01 1.95303157e-01\\n3.95396411e-01 6.09003641e-02 3.62601250e-01 -4.03633595e-01\\n7.65063539e-02 3.00281525e-01 -7.28415176e-02 2.04496399e-01\\n-1.31483957e-01 1.48580790e-01 -4.96283472e-01 -2.58033037e-01\\n-1.63887277e-01 -2.82742083e-01 1.46742925e-01 3.90289068e-01\\n1.38425052e-01 -1.23477124e-01 1.17292941e-01 -4.02351737e-01\\n3.06721479e-01 1.37483031e-01 3.77373099e-01 1.65012345e-01\\n1.93018466e-03 4.71057445e-01 -1.22117914e-01 -8.62892643e-02\\n4.22921265e-04 7.21396878e-02 -2.57544875e-01 -3.19395065e-01\\n-9.24516469e-03 -5.07275045e-01 -8.76470208e-02 4.41440314e-01\\n1.34612262e-01 1.10771903e-03 -4.05421972e-01 1.68883130e-01\\n1.38025045e-01 -3.84095043e-01 -1.40642807e-01 1.46499947e-01\\n3.21914405e-01 5.61968088e-02 1.35492712e-01 -3.54174376e-01\\n-6.81156665e-02 -9.66459215e-02 -4.60865758e-02 4.65203673e-01\\n1.00904584e-01 -1.23450689e-01 -2.23651290e-01 -7.25204349e-02\\n5.23207486e-01 1.28401443e-01 1.08874045e-01 -9.44120511e-02\\n4.10713851e-02 -2.98162073e-01 -3.17022979e-01 -3.74734146e-03\\n-3.52426171e-02 -1.50398612e-01 5.82138589e-03 -3.02747004e-02\\n-6.39000013e-02 -5.85089698e-02 -5.51018059e-01 -3.41060460e-01\\n-2.04344869e-01 -1.70999840e-01 9.83914882e-02 -1.92710459e-01\\n-1.40080014e-02 5.75304404e-03 -5.66341698e-01 3.06389630e-01\\n-2.17712045e-01 1.56970069e-01 6.82923570e-02 4.29574884e-02\\n-6.35352805e-02 -2.86520481e-01 -1.40593782e-01 -1.03187241e-01\\n-2.19198570e-01 4.38316783e-04 -7.94080272e-02 -8.64568353e-01\\n8.47481042e-02 -8.72977450e-02 -7.45702982e-02 8.20272639e-02\\n3.59908491e-02 -4.69099224e-01 3.36571336e-01 -4.36736166e-01\\n1.36879832e-01 6.29045349e-03 -2.79745996e-01 -3.37061554e-01\\n1.83193102e-01 5.47118112e-03 -1.38494074e-01 2.99332619e-01\\n-4.71499383e-01 4.17314112e-01 3.09013892e-02 3.00412662e-02\\n-4.63865921e-02 -3.35199118e-01 2.36106366e-01 -1.71397045e-01\\n-4.23774868e-01 -1.84465379e-01 -1.37731850e-01 -4.53911535e-02\\n-4.69204411e-02 -1.92002997e-01 -3.64799052e-01 -1.23858266e-02\\n2.88580388e-01 2.15197802e-01 -9.18181315e-02 -1.69454858e-01\\n3.26777905e-01 -2.61554897e-01 1.60487100e-01 -3.26245070e-01\\n7.25609884e-02 -2.09928514e-03 1.38524681e-01 -1.80013888e-02\\n2.51632363e-01 -9.61889327e-02 4.71095651e-01 -2.64951468e-01\\n-3.09443176e-01 9.15616304e-02 1.57881349e-01 -2.50032898e-02\\n4.05039400e-01 -3.97604048e-01 -2.23590165e-01 1.48998216e-01\\n-5.39502352e-02 5.30702509e-02 3.39304477e-01 -2.92504489e-01\\n-2.48874128e-01 7.15326667e-02 -5.11425793e-01 1.56250715e-01\\n7.92902112e-01 3.26483339e-01 1.78219453e-01 -6.45415112e-02\\n4.53465953e-02 4.17138755e-01 5.38294017e-01 6.16513006e-02\\n-1.14381224e-01 5.25526822e-01 3.04398894e-01 -3.13834935e-01\\n-3.00320476e-01 -3.40229198e-02 -2.97332525e-01 -2.83326954e-01\\n3.96476001e-01 3.60264063e-01 -2.94625938e-01 -2.54714847e-01\\n3.34303938e-02 -1.70149863e-01 3.99628043e-01 1.47498935e-01\\n1.65449351e-01 -1.72678083e-01 6.68344915e-01 -1.23177938e-01\\n-2.11596638e-02 5.17369628e-01 -9.23807845e-02 -2.27742210e-01\\n-7.51344934e-02 2.43138656e-01 1.51831388e-01 4.25618857e-01\\n1.70464758e-02 3.18144977e-01 -1.97831877e-02 7.07197115e-02\\n-1.90828681e-01 -1.37546420e-01 3.35149676e-01 -4.03568428e-03\\n1.86002061e-01 2.16113210e-01 1.32362396e-01 5.42475522e-01\\n2.29950264e-01 4.71922696e-01 1.88410088e-01 5.66283278e-02\\n4.35977399e-01 5.48723102e-01 3.23334396e-01 1.32846355e-01\\n-5.37463911e-02 -6.68602670e-03 1.40852690e-01 -2.59610377e-02\\n4.31640029e-01 2.85018951e-01 3.29702377e-01 8.02512765e-01\\n2.83427566e-01 3.55214804e-01 6.70197964e-01 -6.10703409e-01\\n-3.12079042e-01 2.86798328e-01 4.21084553e-01 -2.12784454e-01\\n-5.29389903e-02 -1.15354098e-01 -2.29805619e-01 3.42949741e-02\\n-5.47114789e-01 -2.68398345e-01 -1.16630785e-01 -8.35573822e-02\\n7.30164647e-02 -7.20057562e-02 -1.53006986e-01 4.77067418e-02\\n-1.91035271e-01 -1.34206966e-01 -3.53421688e-01 -9.49072689e-02\\n-3.51143390e-01 -1.70744300e-01 1.38726495e-02 -7.23473132e-02\\n-3.91830355e-02 -2.70605922e-01 9.93625727e-03 1.24776773e-01\\n4.52637166e-01 -2.00411543e-01 -2.25509688e-01 -1.63642719e-01\\n8.90555978e-02 3.99075627e-01 6.13787234e-01 -3.32886875e-02\\n2.47478873e-01 -2.69005030e-01 -2.46622749e-02 2.54332926e-03\\n-1.60905257e-01 -1.15170747e-01 1.08869158e-01 5.94666243e-01\\n-2.29927763e-01 -6.39724359e-02 -1.32484427e-02 3.26294750e-01\\n-4.02566910e-01 -2.51201540e-01 4.70000990e-02 -2.22480241e-02\\n-2.57276863e-01 1.82088256e-01 -2.37886935e-01 1.32778004e-01\\n-2.05992445e-01 -5.79181850e-01 4.54015732e-01 -3.65798995e-02\\n-2.93435574e-01 1.23249166e-01 2.83016652e-01 9.88727137e-02\\n-1.05349481e-01 -1.62999198e-01 8.25201743e-04 4.95322943e-01\\n-1.09235734e-01 4.64137256e-01 -2.12948650e-01 -2.31351659e-01\\n-3.43019068e-01 2.73095012e-01 -1.50117679e-02 1.87179610e-01\\n-1.65419698e-01 3.49284858e-01 1.38665020e-01 2.70874053e-01\\n3.27627510e-01 3.30057070e-02 -2.86800146e-01 -3.65440309e-01\\n-9.52540189e-02 -3.24586481e-01 4.25875075e-02 4.11919765e-02\\n1.61682487e-01 -2.07667306e-01 -1.00019239e-01 -3.55895281e-01\\n-2.69634426e-01 -4.21904534e-01 -2.30305210e-01 2.05671206e-01]]',\n", + " 'Job Informationen Responsibilities: Development of special algorithms for pattern recognition in magnetic resonance applications New development and implementation of methods for curve fitting routines in the automated analysis and interpretation of magnetic resonance spectra Numerical simulations and optimizations with restrained computing time and power Development of algorithms and programs to analyze NMR spectra Maintenance and further development of existing algorithms and program code Your profile: Experience in the development of numerical algorithms for scientific questions Background in natural sciences, preferably chemistry Favorably experience in machine learning and possibly pattern recognition Extensive programming experience in Java or other object oriented language Very good English and German skills Project experience and team spirit Benötigte Skills OO-Design / Analyse JAVA Englisch',\n", + " '[\"\"]',\n", + " '[\"Magnetic Resonance Imaging\", \"Machine Learning Methods\", \"Application Development Languages\", \"Natural Sciences\", \"Automation\", \"Chemistry\", \"Programming (Music)\", \"New Business Development\", \"Algorithms\", \"Java (Programming Language)\", \"NMR Spectra Database\", \"Object Oriented Programming Language\", \"Simulations\", \"Curve Fitting\", \"Pattern Recognition\"]',\n", + " \"['English', 'Breton', 'Burmese', 'Breton']\"],\n", + " ['47',\n", + " 'professional business analyst for clinical data',\n", + " 'Basel',\n", + " 'Staffing & Outsourcing',\n", + " 'www.experis.com',\n", + " '[[-2.03268051e-01 1.92566589e-01 5.46450555e-01 -6.85060397e-02\\n4.90139514e-01 -1.12623818e-01 1.10257626e-01 3.02090555e-01\\n-7.07901269e-02 -3.51043582e-01 -4.00437266e-02 -3.11868668e-01\\n2.02759281e-02 1.17219932e-01 1.05032353e-02 4.42456365e-01\\n2.24403203e-01 7.70653933e-02 -1.03095055e-01 2.08658218e-01\\n1.30311251e-01 -6.38914555e-02 1.68224022e-01 6.81208670e-01\\n3.75938326e-01 -3.00612841e-02 -1.60918981e-01 -1.80058405e-01\\n-2.58042604e-01 -1.97706223e-01 3.66205543e-01 2.57284893e-03\\n-9.75649282e-02 -2.31664538e-01 1.19551614e-01 5.51055223e-02\\n-2.28973702e-01 -1.17216855e-01 -9.45978686e-02 1.46547839e-01\\n-4.58308965e-01 -2.00964689e-01 -1.05334900e-01 -2.99457964e-02\\n-4.06848758e-01 -3.87259632e-01 -5.35964631e-02 -7.16857985e-02\\n2.16340765e-01 3.81404646e-02 -5.03534913e-01 2.46555150e-01\\n-2.78494358e-01 -1.53776944e-01 2.26930067e-01 6.87259078e-01\\n9.68727749e-03 -4.54673141e-01 -4.37581211e-01 -3.20973217e-01\\n1.68687403e-01 -1.88612670e-01 -4.44467179e-02 -2.48099908e-01\\n3.07905287e-01 1.08567402e-01 5.76670505e-02 5.05622208e-01\\n-7.66351402e-01 -1.12744659e-01 -2.71591902e-01 -3.67983468e-02\\n-2.24006265e-01 -6.35871217e-02 -2.58585632e-01 -2.45288312e-01\\n-1.26519427e-01 5.05294979e-01 5.45981005e-02 5.15176319e-02\\n-1.55458912e-01 2.62322932e-01 -2.55229920e-01 2.87816316e-01\\n2.37178683e-01 1.78217873e-01 1.16763592e-01 1.23551384e-01\\n-3.52134794e-01 4.87456739e-01 2.96229035e-01 -3.57698053e-01\\n1.52377635e-01 6.00952059e-02 3.64102393e-01 -2.03070045e-02\\n1.26090363e-01 1.64600849e-01 -2.24420711e-01 2.16355398e-01\\n3.33362818e-01 -1.87877238e-01 1.50080413e-01 -1.01900987e-01\\n3.48121561e-02 -6.68441579e-02 4.34996597e-02 1.74975395e-01\\n-2.88991809e-01 4.52587277e-01 1.03926763e-01 -8.13157558e-02\\n-9.17867646e-02 -4.35235023e-01 3.90437953e-02 1.47584165e-02\\n3.15432958e-02 1.05556399e-01 2.25241125e-01 1.49303809e-01\\n1.59390211e-01 -3.91172245e-02 1.91483736e-01 8.27205479e-01\\n-1.34387985e-01 1.03664592e-01 -2.64815658e-01 3.86269063e-01\\n3.23058888e-02 -1.97776034e-01 1.62266836e-01 2.34214798e-01\\n-8.44981149e-02 -1.57951102e-01 -2.05152139e-01 3.30332160e-01\\n-1.03898637e-01 -2.16078281e-01 -2.09386989e-01 1.66796148e-01\\n-1.18264169e-01 -3.16138506e-01 5.31774580e-01 -5.92957996e-02\\n3.96406688e-02 -6.23877626e-03 2.17261501e-02 -8.06570277e-02\\n-5.03620841e-02 3.09469670e-01 9.19645801e-02 6.63675591e-02\\n-2.03742281e-01 -3.23336184e-01 -1.26182958e-01 2.34329421e-02\\n-2.04958260e-01 1.16317108e-01 -7.76427686e-02 -1.03831924e-01\\n3.23573470e-01 5.51546663e-02 -2.13407680e-01 3.01959544e-01\\n-2.43741479e-02 -1.60539877e-02 -1.96589883e-02 2.64483243e-01\\n-1.11077212e-01 2.17781395e-01 -1.12911321e-01 -1.80706576e-01\\n5.42541146e-01 6.49909526e-02 1.64732501e-01 5.58114797e-02\\n3.49351525e-01 -1.11881800e-01 1.01339020e-01 1.50398061e-01\\n-6.15134180e-01 4.48378205e-01 -1.04998164e-01 -9.65003893e-02\\n2.45070130e-01 -3.35846394e-02 2.65434414e-01 -2.41672605e-01\\n6.85873404e-02 -7.23266825e-02 -3.09003174e-01 -4.09542590e-01\\n-1.01338781e-01 -1.52989447e-01 3.55066627e-01 -3.76655817e-01\\n-4.26262766e-02 2.14422956e-01 -5.42763770e-01 -1.05305150e-01\\n2.07543671e-01 2.45003358e-01 2.15705782e-01 1.60618290e-01\\n-1.13578930e-01 -3.66197616e-01 1.94014072e-01 -2.83260137e-01\\n-2.49593183e-01 1.75474495e-01 -2.31132954e-01 1.78048372e-01\\n2.92506348e-02 1.20078318e-01 -1.95109233e-01 9.36219618e-02\\n-1.21396817e-01 -1.55143037e-01 2.59630114e-01 4.56381403e-02\\n2.63468921e-01 3.79633941e-02 -4.11579847e-01 4.34763938e-01\\n-2.12912902e-01 4.96183306e-01 1.01574987e-01 -9.32015240e-01\\n3.98536772e-01 2.32614130e-01 3.20648663e-02 -2.45903805e-01\\n6.21360123e-01 -2.97258854e-01 1.02699725e-02 1.44965678e-01\\n-4.33339715e-01 -2.01815739e-01 1.46481395e-01 -2.22285539e-01\\n-1.73075944e-01 6.02710009e-01 1.99438483e-01 1.37279987e-01\\n1.15053162e-01 -1.73396423e-01 -1.79994687e-01 3.49168852e-02\\n-6.09414130e-02 -2.31630772e-01 -5.80207050e-01 -3.25308442e-02\\n-9.28029418e-02 -4.96884167e-01 -1.55561924e-01 -4.43307757e-01\\n-2.27859184e-01 -3.34940195e-01 -2.23495513e-02 2.24134073e-01\\n3.40402156e-01 1.09881341e-01 6.27687946e-02 1.16621517e-01\\n-1.71766609e-01 -4.11657453e-01 -3.47674489e-02 1.33986041e-01\\n3.49448830e-01 2.70606488e-01 7.89938644e-02 6.23526983e-02\\n3.38099375e-02 6.68753862e-01 -3.03462535e-01 -1.21913165e-01\\n1.58694312e-01 2.30971321e-01 1.14342615e-01 -1.13909818e-01\\n9.28640515e-02 3.35898638e-01 -2.85414338e-01 9.12629142e-02\\n-5.36235310e-02 8.21762532e-02 2.31886297e-01 1.81449622e-01\\n-2.54483432e-01 -1.99649602e-01 -1.51512429e-01 1.67802989e-01\\n-4.98327941e-01 -1.26510799e-01 6.63905919e-01 3.84538323e-02\\n6.21180087e-02 1.56950071e-01 2.52577722e-01 -1.97987389e-02\\n-2.04801068e-01 -1.43354744e-01 2.80862182e-01 9.09585133e-02\\n2.01273374e-02 6.91879913e-02 -4.97522578e-03 -6.31815851e-01\\n-3.22934484e+00 -2.02222511e-01 6.51045814e-02 -3.18751842e-01\\n1.92945480e-01 -2.29831278e-01 1.08663574e-01 4.55231033e-02\\n-3.45248312e-01 1.04069067e-02 -9.20069665e-02 -1.33928761e-01\\n1.49095789e-01 1.40080556e-01 1.07477181e-01 1.85077056e-01\\n7.68983364e-02 -1.72658950e-01 4.45143655e-02 4.24751967e-01\\n-2.60819703e-01 -5.95473886e-01 2.97251463e-01 3.95127013e-02\\n3.00670117e-01 1.75438702e-01 -4.82105792e-01 -2.52229087e-02\\n-3.49123031e-01 -2.44282663e-01 2.56371826e-01 -2.33171180e-01\\n-7.50310794e-02 4.39225435e-01 1.81035995e-01 -1.54223889e-01\\n1.69876575e-01 -3.93083602e-01 -1.23922199e-01 -5.05811155e-01\\n1.53156564e-01 -7.47039616e-01 6.01683976e-03 -5.84366657e-02\\n6.17975175e-01 -3.71172041e-01 6.87469468e-02 7.28888437e-02\\n2.62789339e-01 1.72643289e-01 5.75470664e-02 -3.01005505e-02\\n-3.54258478e-01 -2.80782819e-01 -1.77918635e-02 -2.08473668e-01\\n4.59095001e-01 5.22678912e-01 -2.56193757e-01 -7.08456188e-02\\n7.34925717e-02 -2.54494220e-01 -4.83377397e-01 -3.15943420e-01\\n-2.67289013e-01 -1.23838648e-01 -6.26717627e-01 -3.75561059e-01\\n-1.76392138e-01 -1.02939464e-01 -1.58392340e-01 4.49262023e-01\\n-3.07415605e-01 -2.91500956e-01 -1.29519906e-02 -4.65934724e-01\\n3.30396712e-01 -2.07796805e-02 4.12527891e-03 -2.27356866e-01\\n-2.68901378e-01 -3.56120437e-01 1.66627020e-01 9.52889863e-03\\n4.70736064e-04 -6.85117245e-02 7.25044757e-02 -2.08185658e-01\\n-4.25820857e-01 -4.55684602e-01 3.45046192e-01 1.18180230e-01\\n3.08906674e-01 1.77157059e-01 2.61199355e-01 2.75733750e-02\\n2.72211879e-01 -1.02184132e-01 4.79237773e-02 -4.82137710e-01\\n8.06337968e-02 9.11229998e-02 4.89372700e-01 -2.84355521e-01\\n6.45272136e-02 -6.20781519e-02 -3.17492664e-01 -5.22510298e-02\\n3.12264621e-01 -1.25170052e-01 2.26878300e-01 -2.12578267e-01\\n2.34333858e-01 -2.17530951e-01 -3.17991734e-01 7.29915053e-02\\n5.36829291e-04 6.47444725e-01 -1.42149599e-02 -3.35881561e-01\\n-2.21612900e-01 3.55304122e-01 -1.82956710e-01 -1.10793948e-01\\n-3.00837636e-01 4.21329513e-02 -2.60422111e-01 3.24601680e-01\\n-3.36254500e-02 -4.02169786e-02 -3.46878082e-01 -2.37727806e-01\\n-1.58570379e-01 2.62122780e-01 2.58973122e-01 4.63069417e-02\\n3.65829580e-02 -3.37618351e-01 3.63456383e-02 2.56228417e-01\\n2.93483227e-01 3.66554976e-01 2.02512324e-01 -9.33693424e-02\\n-2.81720106e-02 3.28789830e-01 -1.42513052e-01 1.15391746e-01\\n-3.20789397e-01 1.47123829e-01 -5.04736960e-01 -3.15703720e-01\\n-2.17566028e-01 -3.08203131e-01 4.97720353e-02 3.46336275e-01\\n2.28648707e-01 -1.60968930e-01 -2.71564126e-02 -4.35088336e-01\\n2.61011213e-01 -4.35093082e-02 1.78205311e-01 8.05341676e-02\\n1.74634710e-01 5.27562678e-01 -4.29300545e-03 -1.16584130e-01\\n-8.88076127e-02 -4.91013154e-02 -2.78312862e-01 -1.16517633e-01\\n-7.92520419e-02 -4.44486201e-01 -2.76060790e-01 4.97955471e-01\\n1.80351794e-01 -1.41246378e-01 -2.27377862e-01 3.67965281e-01\\n-1.05628878e-01 -2.30200425e-01 -2.17244789e-01 3.77549529e-02\\n2.90296078e-01 1.34080037e-01 2.37228855e-01 -4.93863732e-01\\n-9.85211059e-02 -2.16863118e-02 -1.32787526e-01 4.14855391e-01\\n9.78607833e-02 -5.29592149e-02 -1.09640680e-01 -2.02763364e-01\\n4.05323267e-01 -1.59125030e-01 -3.12434249e-02 1.29444078e-01\\n6.18684702e-02 -9.14613754e-02 -4.37892288e-01 -2.42273845e-02\\n2.67361552e-02 -2.45746329e-01 4.63941060e-02 1.80370688e-01\\n3.55317816e-02 -1.87267233e-02 -4.76462364e-01 -2.09293187e-01\\n-4.15178716e-01 1.18489087e-01 5.34053519e-03 -6.46864235e-01\\n-6.09034896e-02 -6.39331266e-02 -5.10345101e-01 2.79323757e-01\\n-4.74734828e-02 3.15640122e-02 3.74180377e-02 -6.50535077e-02\\n-2.55368143e-01 4.10858840e-02 1.63370267e-01 1.22780830e-01\\n-1.91653803e-01 -2.26294741e-01 -2.40142867e-02 -9.98201549e-01\\n1.25351265e-01 5.89029901e-02 -1.11966625e-01 1.60986613e-02\\n-3.13995108e-02 -6.50110185e-01 1.73888251e-01 -3.40209335e-01\\n-1.61561310e-01 -5.35407439e-02 -9.91210714e-02 -5.73660314e-01\\n1.48288280e-01 1.96573243e-01 -1.55229166e-01 1.87803432e-01\\n-3.17698210e-01 4.50851321e-01 -2.87739467e-02 7.05741122e-02\\n2.05459688e-02 -2.84933001e-01 1.57313883e-01 -3.61594439e-01\\n-4.19843465e-01 -1.71388552e-01 -3.67413938e-01 -1.88570008e-01\\n3.17576751e-02 -3.58414441e-01 -1.18447676e-01 9.20842066e-02\\n3.81433815e-01 1.91270962e-01 -9.91753787e-02 -7.70728663e-02\\n6.42939433e-02 -5.93569994e-01 -1.88944507e-02 -6.53355196e-02\\n-9.20880288e-02 -1.93313390e-01 3.16378832e-01 6.40169680e-02\\n9.70375538e-02 -3.59815687e-01 4.55996126e-01 -3.76457572e-01\\n-3.81640047e-01 -1.52657315e-01 8.94325152e-02 1.52641892e-01\\n4.53683168e-01 -3.68719667e-01 -1.23467021e-01 1.71673819e-01\\n7.73958266e-02 1.21574655e-01 3.25167626e-01 -1.64263815e-01\\n-1.91466227e-01 2.37253770e-01 -4.97604489e-01 1.25456586e-01\\n7.34239459e-01 2.03186616e-01 1.97750717e-01 1.43335730e-01\\n1.59632117e-01 1.15058318e-01 4.79789019e-01 -6.46027029e-02\\n-2.04234794e-01 3.80170226e-01 8.32715183e-02 -6.31408095e-01\\n-6.00159578e-02 -3.21934558e-02 -2.36507207e-01 -3.15015167e-01\\n6.13726497e-01 2.95836627e-01 -3.20697576e-01 -2.47974217e-01\\n-1.76842526e-01 -1.60647675e-01 7.06172436e-02 -4.36107069e-02\\n1.11324497e-01 -3.60955708e-02 5.19797623e-01 -1.54624850e-01\\n3.35260808e-01 5.33329964e-01 -2.12213129e-01 -1.66263819e-01\\n4.72531933e-03 2.32700035e-01 4.02586497e-02 4.38681751e-01\\n-1.90709502e-01 3.54149848e-01 -1.24341331e-01 1.65532053e-01\\n-1.55903861e-01 -1.18098788e-01 1.75011978e-01 -3.75308804e-02\\n1.19056985e-01 2.32835412e-01 4.34971571e-01 3.21420670e-01\\n4.21155840e-01 3.40911776e-01 3.69908512e-01 -2.06723101e-02\\n6.22560501e-01 5.14613748e-01 2.78126150e-01 5.82580902e-02\\n-1.78164232e-03 -9.34129581e-03 5.57815321e-02 2.70732380e-02\\n2.63666272e-01 3.31435204e-01 9.28050652e-03 8.42741191e-01\\n2.67577440e-01 2.88054973e-01 6.14724457e-01 -5.14676929e-01\\n-3.30963403e-01 -5.20879515e-02 4.69279230e-01 -3.94008577e-01\\n-7.69956736e-03 1.01224400e-01 -1.15648657e-01 2.38063768e-01\\n-4.07877237e-01 -2.11430997e-01 -5.37412465e-02 2.01128170e-01\\n1.44365802e-01 -1.72499716e-01 -1.43401369e-01 9.49271023e-02\\n-1.56470731e-01 -1.77874684e-01 -4.64865237e-01 -5.65525554e-02\\n-1.92901134e-01 -1.67265341e-01 -4.43692654e-02 -9.87489149e-02\\n-2.06326976e-01 -2.42855281e-01 -1.16673224e-01 -5.14328294e-02\\n3.36006850e-01 -2.49751359e-01 -2.68343911e-02 -1.68834671e-01\\n2.68193811e-01 2.33703285e-01 6.51905835e-01 7.07226172e-02\\n1.31329939e-01 -3.15642834e-01 -1.00642726e-01 8.80039185e-02\\n2.38439575e-01 -6.29773596e-04 -1.27973510e-02 4.34830457e-01\\n-3.35439831e-01 -1.27333283e-01 1.08026005e-01 2.61002153e-01\\n-4.71062154e-01 -8.63107517e-02 -8.61832276e-02 4.30506468e-02\\n9.34774652e-02 2.66018156e-02 -2.50113606e-01 1.21248318e-02\\n-2.95201451e-01 -4.84787375e-01 2.23981306e-01 -7.50340372e-02\\n-2.31188536e-01 1.05014900e-02 2.14996532e-01 2.20963910e-01\\n-2.29885325e-01 -4.06685378e-03 -5.04873656e-02 1.54209837e-01\\n1.84858680e-01 1.75735921e-01 -2.32681453e-01 -2.78435111e-01\\n-3.34369451e-01 2.52183139e-01 -1.51645169e-01 1.80677146e-01\\n1.29410177e-01 3.79607350e-01 2.83999052e-02 1.48872375e-01\\n3.17155868e-01 -8.58057886e-02 -1.84193492e-01 -3.73310477e-01\\n-1.44966409e-01 -3.25179577e-01 -4.09117714e-03 -2.18174681e-01\\n1.25872150e-01 -3.64110976e-01 -6.93134144e-02 -1.51939139e-01\\n-2.31523350e-01 -3.65001410e-01 8.97836834e-02 -1.25341088e-01]]',\n", + " \"Professional Business Analyst for Clinical Data Experis IT is Europe's leading IT recruitment agency. We are dedicated to connecting talented individuals with Business opportunities across a number of professional sectors, with IT being at the heart of our operations.For one of our clients, specialized in the pharmaceutical area with HQ in Basel, we are looking for a Business Analyst for Clinical Data.This is a challenging contracting position starting in November until the end of the year with extension possibilities. Tasks & Responsibilities: Responsible to support global projectExecute process analysis as assigned by lead of process streamReports to lead of process stream, works with process team and SME'sResponsible for documenting and maintaining current and future state process documentationWork on several distinct initiatives at the same timeRequirements: 7+ years of Business Analysis experience of Product Development / Clinical Data with a strong understanding of data controls and cleaning principlesLean Six Sigma certificationExperience in Data Flow Mapping Experience in BPMN 2.0 Experience and understanding of Structured AuthoringExperience in Process MappingExperience in software development and software specification designData mining and data visualization experienceExperience in DocumentumAbility to work independently and deliver according agreed timelinesRegulatory/Filing knowledgeAnalytic and able to understand complex structuresStrong communication skills in EnglishExperience and understanding of Structured Authoring Location: BaselStart Date: 01.11.2019End date: 31.12.2019Extension: possibleWorkload: 100% If you are a result-oriented Business Analyst currently looking for a challenging new position that applies to your skills, then we look forward to receiving your application! Not the right job for you? Since new jobs are coming in every day just give us a call +41 (0)61 282 22 17. Experis, the leading IT recruitment agency in Switzerland has many open jobs, just browse our website now to find interesting professional opportunities!\",\n", + " '[\"Verbal Communication Skills\", \"Filing\", \"Professionalism\", \"Operations\", \"Positivity\"]',\n", + " '[\"Data Visualization\", \"Pharmaceuticals\", \"Stream Processing\", \"Software Requirements Specification\", \"Software Development\", \"Process Analysis\", \"Process State\", \"Maintainability\", \"Data Control\", \"Business Analysis\", \"Agile Product Development\", \"Data-Flow Analysis\", \"Clinical Data Warehouse\", \"Receivables\", \"Team Processes\"]',\n", + " \"['English', 'Navaho', 'Somali', 'Pashto', 'Javanese']\"],\n", + " ['110',\n", + " 'web frontend engineer',\n", + " 'Zürich',\n", + " 'Security Services',\n", + " 'www.sunflower-labs.com',\n", + " '[[-1.97345108e-01 3.24228615e-01 2.84632653e-01 -5.53627126e-03\\n6.07294440e-01 -1.85925871e-01 9.37802903e-03 2.42352486e-01\\n7.33421445e-02 -3.48081857e-01 -1.36039570e-01 -2.57465392e-01\\n-1.01737559e-01 -1.13914020e-01 1.11071751e-01 3.36952806e-01\\n3.14909488e-01 1.31907687e-01 -1.79240704e-01 3.76434505e-01\\n1.68947980e-01 -1.66812345e-01 -6.93389028e-02 7.35236049e-01\\n3.49332988e-01 -3.99425626e-02 -6.62238523e-02 -9.38844606e-02\\n-3.23157638e-01 -2.62265742e-01 3.93790364e-01 -3.10797896e-02\\n-2.73034796e-02 -3.26212406e-01 7.74423704e-02 7.62141049e-02\\n-1.95640549e-01 3.29714268e-02 -8.87628868e-02 2.01062456e-01\\n-6.27534330e-01 -3.11942935e-01 7.48322085e-02 3.19042504e-02\\n-1.40513614e-01 -2.85481364e-01 2.62891531e-01 -8.26638341e-02\\n5.97197525e-02 1.06615692e-01 -4.61682141e-01 3.27616990e-01\\n-1.64939463e-01 -1.93884432e-01 3.96622032e-01 5.34527242e-01\\n9.02771484e-03 -7.06020236e-01 -3.76671493e-01 -3.53928536e-01\\n9.83100459e-02 -1.36317657e-02 7.89198801e-02 -3.12867045e-01\\n3.90022635e-01 1.08693046e-02 2.26046820e-03 4.90909368e-01\\n-7.45857000e-01 -1.08255707e-01 -2.96585053e-01 6.42749518e-02\\n-3.32182229e-01 -8.51879939e-02 -2.20728934e-01 -8.66726115e-02\\n-4.82119247e-02 4.24780905e-01 -8.70240480e-02 9.61901322e-02\\n-2.36477390e-01 2.98454106e-01 -1.66456044e-01 3.38933378e-01\\n3.60408932e-01 6.12876080e-02 9.56560373e-02 1.92394882e-01\\n-4.39060688e-01 4.14943129e-01 1.80634931e-01 -1.70756355e-01\\n1.97063535e-01 2.14994401e-01 4.75046039e-01 1.11958936e-01\\n8.61554593e-03 2.45986789e-01 -1.67927802e-01 1.99508980e-01\\n1.50230855e-01 -2.49064654e-01 -5.10915369e-03 2.43586861e-02\\n-6.72818050e-02 7.09210522e-03 3.69846188e-02 3.38157326e-01\\n-3.32984865e-01 4.11306620e-01 2.26202980e-01 -1.49961904e-01\\n-5.81872649e-02 -5.73249996e-01 -5.25609702e-02 -1.63140282e-01\\n-6.50958642e-02 1.38084471e-01 4.17818010e-01 1.64904386e-01\\n2.50903726e-01 -1.69851836e-02 1.09124072e-01 1.04576731e+00\\n-6.80947118e-03 7.53380433e-02 -2.66514897e-01 3.55896384e-01\\n1.55839771e-01 -2.37706900e-01 1.63239300e-01 3.26600134e-01\\n1.78340226e-01 -9.32063460e-02 -2.31795460e-01 4.18154895e-01\\n-2.40299165e-01 -1.44734055e-01 -2.78046817e-01 1.34216368e-01\\n-1.64967105e-01 -4.45874751e-01 4.89280850e-01 1.17464535e-01\\n2.51944542e-01 -9.52630043e-02 -2.93539092e-02 -3.19010876e-02\\n-2.18220800e-01 2.85353631e-01 4.63960394e-02 1.83281466e-01\\n-2.27521330e-01 -2.41757125e-01 -1.96625456e-01 2.18617693e-01\\n-9.27789882e-02 5.52555807e-02 -3.19442973e-02 -1.71897024e-01\\n3.61291021e-01 2.33350903e-01 -4.83547270e-01 3.09485495e-01\\n-1.59324240e-02 -1.15046883e-02 -1.99916109e-01 3.09227407e-01\\n-1.11775674e-01 2.16534764e-01 -3.02705783e-02 -2.87463851e-02\\n6.32465720e-01 1.76399887e-01 5.39313070e-02 -1.00723684e-01\\n2.35032216e-01 -1.51864275e-01 2.91042954e-01 1.47718906e-01\\n-6.30995631e-01 3.12836438e-01 -3.94238681e-02 -5.40720634e-02\\n3.18477899e-02 7.08017647e-02 3.95930260e-01 -3.27801824e-01\\n-9.44400579e-02 -2.35484496e-01 -4.13704962e-01 -3.64341587e-01\\n-3.76024306e-01 6.20848238e-02 3.40034425e-01 -3.70491982e-01\\n-6.51753023e-02 2.87788928e-01 -6.12909615e-01 -6.87157363e-02\\n2.89819717e-01 1.25736535e-01 2.79029548e-01 2.29976848e-01\\n-4.01941165e-02 -6.28049910e-01 5.73074818e-02 -4.72834975e-01\\n-4.22279835e-01 3.43193859e-02 -2.88495183e-01 2.78595209e-01\\n6.33585081e-02 1.99363649e-01 -1.19933546e-01 1.62669495e-01\\n-3.14195663e-01 -1.39738917e-01 1.63050622e-01 1.34270072e-01\\n2.01068744e-01 -8.73838738e-03 -4.66002524e-01 4.05189782e-01\\n-2.51184553e-01 5.48543632e-01 1.53733030e-01 -8.04983437e-01\\n5.15101194e-01 3.07370663e-01 -9.03877094e-02 -3.70151579e-01\\n4.59540993e-01 -2.98909575e-01 -2.82173809e-02 1.19836994e-01\\n-2.55357653e-01 -2.69054115e-01 2.49056980e-01 -1.39845774e-01\\n-3.52149695e-01 5.68952739e-01 1.90324873e-01 3.91690657e-02\\n2.70177752e-01 -2.03653932e-01 -3.56600843e-02 -3.12821530e-02\\n9.60500073e-03 -7.46422261e-02 -4.18900996e-01 7.99173042e-02\\n-9.13527384e-02 -5.75225770e-01 -7.85956904e-02 -4.07828003e-01\\n-2.03599304e-01 -3.57844293e-01 -2.21606418e-01 2.55156785e-01\\n2.45323658e-01 2.05397725e-01 9.74067077e-02 7.96591043e-02\\n-9.60233808e-02 -7.67645240e-01 -2.51136292e-02 4.95927297e-02\\n4.61043835e-01 4.26908344e-01 1.16448633e-01 -1.36186481e-01\\n-3.15692164e-02 5.44775903e-01 -3.84055316e-01 -1.87792525e-01\\n8.20890665e-02 1.27622396e-01 1.12485075e-02 -9.08977538e-02\\n1.33464575e-01 4.52577651e-01 -1.65055200e-01 6.39722943e-02\\n-7.80935064e-02 -1.13191023e-01 3.29472005e-01 -1.12019837e-01\\n-3.75086516e-01 -3.36929679e-01 -2.24106628e-02 3.30436110e-01\\n-4.51916873e-01 -2.06390321e-01 4.93935704e-01 3.27748269e-01\\n2.23642290e-01 3.22372198e-01 4.06219184e-01 -1.74011141e-01\\n-2.58319795e-01 -3.22023928e-01 7.01877624e-02 1.74744383e-01\\n1.10378385e-01 3.27469558e-02 -1.30561784e-01 -7.57871330e-01\\n-2.86290956e+00 3.31626311e-02 2.56150573e-01 -3.69371474e-01\\n2.23945364e-01 -1.12298243e-01 8.12904071e-03 -1.03259180e-02\\n-3.34622413e-01 6.06039949e-02 -1.76818758e-01 -2.11211860e-01\\n7.69786909e-02 3.10709208e-01 1.78360328e-01 1.72828794e-01\\n5.70579022e-02 -3.22053939e-01 -6.46548048e-02 2.70141661e-01\\n-2.94070542e-01 -6.20606422e-01 1.74562603e-01 -9.49055403e-02\\n2.74052739e-01 2.44676620e-01 -4.91125643e-01 -1.44868121e-01\\n-2.72900462e-01 -2.47249514e-01 9.01499689e-02 -2.25803003e-01\\n-1.68288857e-01 2.72157937e-01 1.41616181e-01 -8.84362087e-02\\n4.81451489e-02 -2.90106326e-01 4.47057672e-02 -4.95713443e-01\\n3.60467695e-02 -6.18023157e-01 -5.88159710e-02 -8.03837478e-02\\n5.56906343e-01 -2.92740285e-01 2.62986124e-01 3.89250256e-02\\n2.21267954e-01 1.98342845e-01 7.91205280e-03 -6.51158567e-04\\n-3.38854671e-01 -1.73350409e-01 -5.62585779e-02 -1.15663305e-01\\n4.77080077e-01 4.57372665e-01 -2.87935019e-01 -6.08441904e-02\\n6.82021352e-03 -3.97662818e-01 -4.54139560e-01 -3.63884956e-01\\n-1.22053206e-01 -2.19558910e-01 -6.39528096e-01 -4.57377583e-01\\n-1.13043353e-01 -8.25832561e-02 -1.34456068e-01 7.48631179e-01\\n-2.91930377e-01 -4.00788367e-01 3.60055678e-02 -6.86005473e-01\\n6.43023774e-02 -3.87998432e-01 3.72918174e-02 -2.58401036e-01\\n-2.80192047e-01 -4.46755409e-01 1.17128864e-01 -8.88805464e-02\\n-2.63643503e-01 -1.02506571e-01 2.57707443e-02 -2.09750861e-01\\n-2.43446335e-01 -4.89779174e-01 4.43002254e-01 1.49392709e-01\\n3.27058941e-01 -7.31587559e-02 3.20791274e-01 1.28182620e-01\\n4.98435646e-01 -1.45184830e-01 1.39850125e-01 -4.26877499e-01\\n5.89827448e-02 -3.50659601e-02 6.48847938e-01 -3.90757918e-01\\n1.32712737e-01 3.06710809e-01 -2.42066443e-01 -1.68356568e-01\\n3.56044978e-01 1.77656673e-02 -4.94988374e-02 -3.33474159e-01\\n3.96928608e-01 -4.75788295e-01 -3.59932065e-01 1.34424314e-01\\n1.49838686e-01 7.33433664e-01 -4.00893353e-02 -4.40610021e-01\\n-2.24125534e-01 3.98688793e-01 -5.64199015e-02 -2.06975296e-01\\n-6.66801184e-02 3.39390077e-02 -2.29909807e-01 1.28785938e-01\\n1.03138253e-01 -2.23519430e-01 -3.53766561e-01 -8.50708485e-02\\n-1.05845720e-01 2.75810570e-01 1.78457111e-01 -1.11785121e-02\\n-7.26089403e-02 -2.71586120e-01 -1.20208181e-01 2.02075586e-01\\n1.13453574e-01 2.58439511e-01 9.30101201e-02 -3.00772965e-01\\n3.35262679e-02 3.54731292e-01 -2.16172948e-01 2.26575002e-01\\n-2.29042500e-01 4.71004881e-02 -6.55566931e-01 -2.28080764e-01\\n-2.83497453e-01 -3.34932625e-01 -2.21167896e-02 3.28185558e-01\\n2.15321779e-01 5.41238934e-02 7.07647651e-02 -5.39160848e-01\\n3.29184800e-01 -4.64814492e-02 2.04450935e-01 1.23403341e-01\\n-2.46326975e-03 4.59395647e-01 8.27974901e-02 -7.35729486e-02\\n-1.71867073e-01 3.37559395e-02 -1.59510106e-01 -4.02907431e-01\\n2.52698362e-01 -3.80396575e-01 -1.07381530e-01 4.84688073e-01\\n1.18678942e-01 -2.43842199e-01 -1.69347942e-01 2.50866055e-01\\n6.70448989e-02 -2.67971188e-01 -2.04848930e-01 -4.31304909e-02\\n1.93155259e-01 4.57112193e-02 2.07018346e-01 -4.31137681e-01\\n1.18966689e-02 -8.12864974e-02 -7.55924210e-02 3.25497717e-01\\n8.89868587e-02 3.30699012e-02 -1.84540108e-01 -8.03751275e-02\\n5.25481701e-01 -5.28396331e-02 2.05400560e-04 -9.86088738e-02\\n7.71133378e-02 -3.43398243e-01 -6.44347727e-01 1.15423426e-01\\n-5.78299798e-02 -4.13826406e-02 6.13406040e-02 1.13307573e-02\\n1.22570880e-01 -4.17365469e-02 -3.87488365e-01 -2.15273812e-01\\n-3.42898101e-01 -1.31285742e-01 1.17841676e-01 -4.40789521e-01\\n-2.91533228e-02 8.12058598e-02 -5.16072154e-01 2.37783253e-01\\n-3.40996563e-01 6.09528609e-02 2.01356396e-01 1.11669548e-01\\n-3.44835699e-01 -4.85857502e-02 5.26021942e-02 2.18374416e-01\\n-2.58737683e-01 -1.87138140e-01 3.02020013e-02 -1.05123365e+00\\n1.07760720e-01 3.96591835e-02 -9.52001289e-02 -5.44561632e-02\\n-5.16168326e-02 -8.86006057e-01 2.29001701e-01 -4.27794784e-01\\n3.38291004e-02 1.26389852e-02 -2.03112349e-01 -3.85154277e-01\\n1.04278773e-01 -6.78284839e-02 -4.88475442e-01 3.07186782e-01\\n-3.33031446e-01 3.90876591e-01 -4.43755016e-02 2.58875079e-02\\n9.79769751e-02 -2.34703109e-01 8.86242241e-02 -3.72205198e-01\\n-4.01015341e-01 -1.91952601e-01 -3.57259363e-01 -1.95409596e-01\\n-4.52243797e-02 -2.40285948e-01 -7.83261731e-02 1.77762985e-01\\n2.19619602e-01 1.19151473e-01 -4.96888645e-02 -2.27677628e-01\\n4.00573760e-02 -5.03957510e-01 4.43414748e-02 -1.66573301e-01\\n8.67541954e-02 -8.58806819e-02 1.98419034e-01 9.58023891e-02\\n1.92348912e-01 -3.25199425e-01 5.20363212e-01 -2.98354208e-01\\n-4.59563911e-01 -1.17354520e-01 -1.96626056e-02 3.00916955e-02\\n3.54102761e-01 -4.27763283e-01 1.12409316e-01 3.22934121e-01\\n2.17208862e-02 8.24974626e-02 2.85015255e-01 -3.22085693e-02\\n-2.43972987e-02 7.46308863e-02 -5.52053571e-01 4.47645783e-02\\n6.55934870e-01 2.03648627e-01 7.28675723e-02 9.41255838e-02\\n2.94905007e-02 2.87294716e-01 5.55354416e-01 5.37511371e-02\\n-1.64699852e-01 1.86711594e-01 6.79391846e-02 -6.16140246e-01\\n-1.66103646e-01 -7.50412717e-02 -2.95922637e-01 -3.13107669e-01\\n6.85622156e-01 3.13173026e-01 -4.30689275e-01 -2.53591508e-01\\n-1.44582853e-01 -2.16056168e-01 2.35819861e-01 3.21078822e-02\\n1.50100142e-02 -1.48348644e-01 6.46556497e-01 -5.14612359e-04\\n3.71604592e-01 5.51314116e-01 -1.24810085e-01 -3.52494955e-01\\n-1.63277790e-01 2.33963534e-01 1.73248630e-02 3.17002058e-01\\n-1.20549038e-01 1.41605705e-01 -4.59448770e-02 1.71863079e-01\\n-2.21509844e-01 7.37597868e-02 8.43838975e-02 7.99054131e-02\\n1.18918531e-01 1.82719842e-01 4.03279334e-01 4.90988731e-01\\n1.76861748e-01 5.53107381e-01 2.62085080e-01 1.07646704e-01\\n5.29861748e-01 6.92372620e-01 3.53259534e-01 2.53186911e-01\\n-1.86242443e-02 2.50860929e-01 -2.87988316e-02 4.64306548e-02\\n4.88850236e-01 3.74706328e-01 7.10797608e-02 8.78084302e-01\\n2.91077197e-01 2.56915718e-01 8.30257356e-01 -5.34894645e-01\\n-4.03644770e-01 1.55795235e-02 5.38303673e-01 -4.02006447e-01\\n-5.60756288e-02 1.16701081e-01 -2.16002360e-01 4.12588626e-01\\n-5.07389009e-01 -1.77469656e-01 -1.23044010e-02 1.19388476e-01\\n1.53488051e-02 -1.12591729e-01 -3.48989159e-01 -1.18860684e-01\\n-1.99146539e-01 -2.72191793e-01 -4.15738374e-01 -1.07463986e-01\\n-2.42538691e-01 -1.71708670e-02 -4.53299023e-02 -4.92444960e-03\\n-1.07836574e-01 -3.73808652e-01 -2.57636905e-01 -1.99864935e-02\\n4.26751375e-01 -1.94708496e-01 -8.79315212e-02 -1.67949796e-01\\n2.13966712e-01 3.14000905e-01 7.15817988e-01 1.64747294e-02\\n1.79704800e-01 -2.97372371e-01 -2.29922906e-01 1.30629167e-01\\n1.14051640e-01 1.80160075e-01 1.69001520e-01 5.32293975e-01\\n-3.36938351e-01 -7.42170364e-02 8.11318830e-02 4.57631886e-01\\n-4.10823613e-01 -2.41111249e-01 -8.13343078e-02 1.60042733e-01\\n1.59551516e-01 1.15756638e-01 -1.88469499e-01 7.20787272e-02\\n-2.49831319e-01 -5.68957806e-01 3.85371357e-01 -8.65364894e-02\\n-1.58999577e-01 7.04628676e-02 3.29713613e-01 1.68037787e-01\\n-1.52517617e-01 3.09096202e-02 -1.88164990e-02 2.42127374e-01\\n3.14752455e-03 4.64181393e-01 -2.24343076e-01 -1.92967057e-01\\n-3.13223720e-01 3.55042636e-01 -1.22983024e-01 1.85472220e-01\\n-6.58114403e-02 3.18399280e-01 -7.14983493e-02 5.02421968e-02\\n3.15712363e-01 -2.00780090e-02 -2.69879311e-01 -3.80563587e-01\\n-1.32891893e-01 -2.17865333e-01 4.70931679e-02 -1.51026443e-01\\n1.56056434e-01 -3.91724020e-01 -1.38768613e-01 -7.69705921e-02\\n-1.49306014e-01 -2.63549328e-01 -2.15849355e-01 3.44449654e-02]]',\n", + " '(Zurich, Switzerland) Experienced, hands-on web frontend developer with excellent software engineering skills who is motivated to work in a local drone startup. Responsibilities include design and development of web frontend interfaces for a drone-based home security system. You will work with backend and firmware engineers in the development of data storage and retrieval schemas, remote system access and authentication, and cloud data processing and analysis. Responsibilities Development of a web frontend interface capable of real-time controls and video streaming Work on Amazon AWS and/or Google Cloud Understanding of serverless architecture Write unit test procedures, run tests, and evaluate test results Design and develop testing tools Formulate requirements, design descriptions, and test procedures Work hands-on with firmware and backend engineers to integrate system components Skills and Qualifications Strong programming skills in Javascript (Python, or Go are a plus). Knowledge and experience with various Javascript frameworks, i.e. jQuery, etc. In-depth understanding of CSS5, HTML5, LESS and SASS. Knowledge of C/C++ is desired. Experience with Amazon AWS and/or Google Cloud A strong understanding of system security, encryption, and authentication Experience with relational and/or non-relational databases. Experience with back-end technologies for web applications/APIs. Experience with distributed systems Good oral and written skills in English Ability to prioritize tasks and work independently Must be flexible and be able to work in a multicultural environment Must have experience in related engineering fields 3+ years of experience preferred but not a must Willing to work full-time in Zurich at our R&D lab Work permit in Switzerland required If you are interested in this position, please send your resume or CV to: jobs@sunflower-labs.com',\n", + " '[\"Writing\", \"Prioritization\", \"Positivity\"]',\n", + " '[\"Real Time Data\", \"Web Applications\", \"Development Testing\", \"Distributed File Systems\", \"Design Verification Test\", \"Programming (Music)\", \"Unit Testing\", \"Authentications\", \"Optical Data Storage\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"HTML5\", \"E (Programming Language)\", \"Systems Integration\", \"Software Engineering\", \"SASS\", \"Remote Access Service\", \"Security Systems\", \"C (Programming Language)\", \"Encryption\", \"Serverless Computing\", \"JQuery\", \"JavaScript (Programming Language)\", \"Firmware\", \"Google Cloud\", \"Electronic Data Processing\", \"Acceptance Test Procedures\", \"JavaScript Frameworks\", \"GUI Testing Tools\", \"Software Design Description\", \"Back End (Software Engineering)\", \"Relational Databases\", \"Information Systems Security\", \"Custom Backend\", \"Controllability\", \"Integrated Delivery Systems\"]',\n", + " \"['English', 'Kannada', 'Dhivehi']\"],\n", + " ['84',\n", + " 'data engineer',\n", + " 'Bern',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.34095418e-01 2.73776919e-01 4.29008782e-01 -1.45812035e-01\\n4.26754355e-01 -1.04837127e-01 5.60075492e-02 2.76683807e-01\\n1.74667817e-02 -2.96783775e-01 -1.03320286e-01 -3.36444616e-01\\n-1.25498727e-01 -6.30288851e-03 4.91948910e-02 5.38937986e-01\\n2.65689790e-01 9.48986411e-02 -1.56839013e-01 3.40051681e-01\\n1.06237948e-01 -3.86243104e-03 -7.10057542e-02 7.61575699e-01\\n5.19459486e-01 -5.01584262e-02 -5.72566837e-02 4.87949215e-02\\n-2.31794804e-01 -2.67416865e-01 4.41990167e-01 -2.59516463e-02\\n-4.07457650e-02 -3.13291073e-01 1.02095798e-01 1.79664060e-01\\n-2.10702032e-01 -1.18956261e-03 -5.22736683e-02 2.42715463e-01\\n-5.71045935e-01 -3.42772543e-01 7.12673515e-02 -1.01455674e-01\\n-2.16893017e-01 -3.69050026e-01 -3.41974795e-02 5.32544926e-02\\n1.01365112e-01 2.29551028e-02 -5.32390952e-01 3.23228478e-01\\n-1.85612947e-01 -1.71352670e-01 1.92537248e-01 6.53049707e-01\\n5.76728024e-02 -5.07487237e-01 -4.18671131e-01 -2.34733373e-01\\n6.79820180e-02 -6.83744103e-02 5.97014986e-02 -1.95169032e-01\\n3.68298918e-01 -3.43155898e-02 -1.17371649e-01 4.91714954e-01\\n-6.39529288e-01 -9.04735401e-02 -3.44102442e-01 -6.82718530e-02\\n-3.85171741e-01 1.97697971e-02 -3.79736423e-01 -1.68706939e-01\\n-5.59789613e-02 3.82227540e-01 1.83971636e-02 8.34003240e-02\\n-2.44903192e-01 1.90350890e-01 -2.01888487e-01 2.09854126e-01\\n2.64233291e-01 2.03309342e-01 2.42317125e-01 3.26199651e-01\\n-4.23543751e-01 4.27912295e-01 1.89678937e-01 -3.92024457e-01\\n1.79089338e-01 4.35493030e-02 5.21297634e-01 7.48718977e-02\\n1.19697470e-02 2.49081850e-01 -2.07372934e-01 2.40003839e-01\\n3.17620635e-01 -2.91925013e-01 1.18318908e-01 -3.89867872e-02\\n-8.26429129e-02 6.81209192e-02 9.85358357e-02 1.86564609e-01\\n-3.46344739e-01 4.56862837e-01 2.23356158e-01 -2.37069383e-01\\n-6.35267496e-02 -6.12408161e-01 -1.44821510e-01 -1.44844409e-03\\n-6.54563829e-02 1.42169580e-01 2.96194404e-01 1.59094796e-01\\n1.77186579e-01 -1.74342450e-02 1.45020381e-01 9.43545043e-01\\n-4.88304645e-02 5.72102070e-02 -4.00284797e-01 4.79179353e-01\\n1.67574421e-01 -1.45144925e-01 2.81761408e-01 1.85625479e-01\\n3.12229842e-02 -7.07646236e-02 -2.59504020e-01 3.53854001e-01\\n-8.29943456e-03 -1.83544472e-01 -3.81311029e-01 2.68082544e-02\\n-2.87683219e-01 -4.23644900e-01 5.74253976e-01 1.93456352e-01\\n1.72908470e-01 -1.23010501e-01 -2.50515938e-02 -2.33706273e-02\\n-2.76359059e-02 2.79729873e-01 2.08379421e-03 1.67345569e-01\\n-3.53029996e-01 -2.23779812e-01 -1.79828018e-01 3.93573821e-01\\n-5.77512570e-02 1.99124366e-01 -6.86855912e-02 -9.82096642e-02\\n3.25843126e-01 8.01508129e-02 -2.19682083e-01 1.69486851e-01\\n-3.25829946e-02 -3.60083073e-01 -1.76058874e-01 2.93865323e-01\\n-1.50267720e-01 2.16403171e-01 8.56792629e-02 -3.73076022e-01\\n5.02852619e-01 2.40294769e-01 3.16435337e-01 -1.50818989e-01\\n3.98800313e-01 -1.72050729e-01 2.28472665e-01 9.04336348e-02\\n-5.86091399e-01 4.68973041e-01 -3.47233042e-02 -4.91310023e-02\\n1.14655688e-01 8.81577432e-02 3.11448514e-01 -3.15963447e-01\\n-1.08606644e-01 -1.15696929e-01 -3.87348443e-01 -4.79412168e-01\\n-2.55454838e-01 -9.93610397e-02 3.59908402e-01 -4.20792550e-01\\n-1.47385895e-01 1.12712771e-01 -5.53137124e-01 -6.39277697e-02\\n2.22534850e-01 1.82469502e-01 6.99036345e-02 5.51364981e-02\\n-1.13623992e-01 -5.66386402e-01 -1.77261382e-02 -5.05372047e-01\\n-5.51212609e-01 3.15483212e-02 -2.08802968e-01 3.03742200e-01\\n7.92741589e-03 5.77656217e-02 -2.54715621e-01 1.34352550e-01\\n-2.98926920e-01 3.52985933e-02 2.29407802e-01 1.83054805e-01\\n3.08428556e-01 -8.41315240e-02 -4.69776779e-01 4.54683036e-01\\n-8.64884183e-02 5.36191583e-01 2.58661330e-01 -8.99191916e-01\\n5.46525061e-01 2.42056116e-01 1.75609924e-02 -3.55133772e-01\\n5.07570207e-01 -4.09429193e-01 -2.30579339e-02 5.87160662e-02\\n-3.43424469e-01 -2.04044729e-01 3.47485155e-01 -1.75325528e-01\\n-1.79965973e-01 5.52717388e-01 2.24433929e-01 -5.03826775e-02\\n2.99686700e-01 -3.09740275e-01 -1.42359555e-01 -5.93316928e-02\\n-1.35678649e-01 -1.95778161e-01 -3.94106269e-01 1.52259439e-01\\n7.53374712e-04 -6.09668314e-01 -2.07938805e-01 -4.03600723e-01\\n-2.22292840e-01 -3.54032397e-01 -3.24557126e-01 4.24783885e-01\\n2.28581518e-01 1.45497024e-01 1.80080056e-01 -9.37494077e-03\\n-1.09873883e-01 -4.69158471e-01 -1.81724951e-01 1.40493721e-01\\n4.76088136e-01 2.46167943e-01 -2.12556031e-02 7.13153854e-02\\n-7.10453689e-02 5.98563790e-01 -3.89922082e-01 -4.25575435e-01\\n5.47480099e-02 1.92588568e-01 2.83323526e-02 -7.42674768e-02\\n7.02248514e-02 3.80211204e-01 -2.61850774e-01 2.64179725e-02\\n-6.47430718e-02 5.31164706e-02 4.38651174e-01 1.89859360e-01\\n-2.75171727e-01 -1.99241698e-01 -5.77088855e-02 2.23152310e-01\\n-6.51415884e-01 -2.31510118e-01 6.28346205e-01 2.08146840e-01\\n2.03928143e-01 2.06928164e-01 3.24949533e-01 -6.81945160e-02\\n-1.46608546e-01 -2.15964124e-01 2.30296478e-01 1.31047249e-01\\n-4.56741415e-02 -7.46131316e-02 -1.60408333e-01 -5.15422940e-01\\n-3.05881691e+00 -2.46115118e-01 5.97916767e-02 -2.19004974e-01\\n1.49660185e-01 -1.06067300e-01 2.01608464e-02 -7.25696087e-02\\n-3.45388979e-01 -4.73201135e-03 -1.85428575e-01 -2.57845223e-01\\n1.14683844e-01 1.34972408e-01 2.64217984e-02 1.84691340e-01\\n7.19669834e-02 -1.45789817e-01 -8.39853734e-02 3.23775440e-01\\n-9.76662338e-02 -7.12043762e-01 1.59387931e-01 3.37555856e-02\\n2.58927703e-01 7.29843527e-02 -3.89537424e-01 4.28741099e-03\\n-2.83054799e-01 -2.51264334e-01 1.08744785e-01 -3.43084514e-01\\n-8.29879194e-02 3.46485168e-01 2.36478820e-01 -1.59078255e-01\\n3.47986743e-02 -3.54712486e-01 -4.78096753e-02 -3.67458224e-01\\n1.02962054e-01 -5.81620336e-01 9.12230089e-02 -1.05720691e-01\\n8.41169357e-01 -3.98733348e-01 1.39378354e-01 8.53355154e-02\\n1.36508852e-01 1.75440803e-01 -2.41795518e-02 -1.58991609e-02\\n-2.19890893e-01 -4.09864336e-01 1.56552792e-02 -1.57891974e-01\\n4.31164265e-01 6.17986321e-01 -1.26724988e-01 4.51988727e-02\\n9.84236076e-02 -2.77329892e-01 -3.94732982e-01 -3.98947775e-01\\n-3.65065575e-01 -1.31872252e-01 -7.74544656e-01 -5.02000809e-01\\n-1.69640511e-01 -1.04251735e-01 -1.99221313e-01 5.92218339e-01\\n-4.17497694e-01 -4.58365589e-01 6.02742843e-03 -6.00270689e-01\\n1.78554356e-01 -2.86027551e-01 8.04664120e-02 -1.06255494e-01\\n-2.99394131e-01 -5.99589586e-01 1.70468062e-01 -9.69657823e-02\\n-1.66607216e-01 -1.29738137e-01 -4.65008244e-02 -2.53995180e-01\\n-2.81396151e-01 -3.52893889e-01 4.64716554e-01 1.79180652e-01\\n3.69885117e-01 1.20817125e-01 2.86861748e-01 6.94473162e-02\\n2.94146955e-01 -1.60911858e-01 3.69631946e-02 -3.28750104e-01\\n8.43549594e-02 7.26338662e-03 6.63111389e-01 -2.59787410e-01\\n1.18036024e-01 1.63624376e-01 -2.65614808e-01 -1.02577046e-01\\n4.30439621e-01 9.56737846e-02 3.05000525e-02 -6.20463416e-02\\n3.21036577e-01 -4.63005394e-01 -2.39929140e-01 1.24347992e-01\\n-3.89193334e-02 5.85942507e-01 -2.46172678e-02 -4.87460464e-01\\n-2.72942036e-01 3.85455608e-01 -6.02109507e-02 -1.60620838e-01\\n-2.12509573e-01 2.38913521e-01 -1.79294378e-01 2.99886972e-01\\n3.29646729e-02 -1.84623837e-01 -3.22277337e-01 -1.07528791e-01\\n4.44122441e-02 2.30374381e-01 2.48805299e-01 1.26231954e-01\\n-3.98034900e-02 -2.73710102e-01 -1.93810865e-01 1.67807296e-01\\n3.88934731e-01 3.82806867e-01 2.03985125e-01 -2.39666656e-01\\n-4.20156308e-02 3.06916803e-01 -2.63592869e-01 6.31754696e-02\\n-2.21793249e-01 7.19127655e-02 -4.34812963e-01 -2.46420681e-01\\n-9.04863924e-02 -3.60369921e-01 1.41660690e-01 4.00373608e-01\\n6.78079873e-02 6.47832900e-02 4.37994525e-02 -3.37331533e-01\\n4.46006387e-01 1.46112055e-01 1.38967201e-01 1.66508466e-01\\n5.86866438e-02 6.02247417e-01 -3.55606824e-02 5.66939227e-02\\n-9.43408012e-02 -1.89710498e-01 -2.42291272e-01 -2.30863333e-01\\n9.42611396e-02 -3.52341086e-01 -1.12429440e-01 5.09735346e-01\\n4.77332771e-02 -3.44819248e-01 -1.48354366e-01 2.90229619e-01\\n3.92077863e-02 -2.40525573e-01 -2.42990553e-01 1.16002813e-01\\n1.92062289e-01 1.59345210e-01 3.43961984e-01 -4.92938906e-01\\n-1.63487226e-01 1.75915565e-02 -1.96422204e-01 5.13373613e-01\\n1.66007310e-01 2.50180900e-01 -1.97201326e-01 -3.15121591e-01\\n4.89279419e-01 -2.97080278e-01 -1.94435105e-01 3.31013091e-02\\n1.00080380e-02 -1.73536524e-01 -3.58556211e-01 2.32813368e-03\\n-2.68780775e-02 -2.36970454e-01 4.96660694e-02 -8.20500311e-03\\n1.28028825e-01 5.08584781e-03 -5.44844747e-01 -3.78941894e-01\\n-3.06225419e-01 -3.36552337e-02 -2.63501704e-02 -3.97554487e-01\\n1.39672933e-02 -1.20770261e-01 -6.20216072e-01 3.34514707e-01\\n-3.70891511e-01 -1.10473102e-02 9.67968181e-02 1.74747288e-01\\n-3.82828653e-01 -2.05048591e-01 1.44879937e-01 2.69676238e-01\\n-3.22435349e-01 -2.65681207e-01 1.94177702e-02 -8.71194661e-01\\n1.42822415e-01 5.12337647e-02 -8.51174593e-02 1.09895490e-01\\n-4.97788973e-02 -5.51025569e-01 1.37180313e-01 -2.96103030e-01\\n7.89723417e-05 7.31267706e-02 -1.35336578e-01 -3.76711369e-01\\n1.44046605e-01 -1.01301722e-01 -1.82028815e-01 4.59668845e-01\\n-4.51700062e-01 2.65634179e-01 -3.90165187e-02 1.44335642e-01\\n2.00795718e-02 -2.66896218e-01 2.66425222e-01 -2.75177300e-01\\n-4.73187327e-01 -2.06489667e-01 -3.54128629e-01 -2.95822978e-01\\n5.13138920e-02 -3.15571427e-01 -2.95318484e-01 2.41542477e-02\\n3.81711870e-01 9.50799808e-02 -1.27721980e-01 -1.70941263e-01\\n-3.60802673e-02 -4.70515579e-01 1.86881632e-01 -2.84833968e-01\\n-1.29260466e-01 -1.79615483e-01 1.48664206e-01 -9.64908581e-03\\n-4.25917804e-02 -2.69528478e-01 4.74330515e-01 -2.74236321e-01\\n-3.76831084e-01 -4.97810952e-02 -2.70215217e-02 6.02321103e-02\\n3.51844460e-01 -4.90786135e-01 4.61954735e-02 2.34168604e-01\\n2.71563996e-02 8.24308470e-02 2.77475208e-01 -1.02362476e-01\\n-1.12748735e-01 4.39530909e-01 -4.47575808e-01 1.94211602e-01\\n8.04173172e-01 1.89228147e-01 1.34465203e-01 1.77896172e-01\\n3.23425531e-01 2.82374382e-01 4.37978268e-01 -2.12607663e-02\\n-4.16656490e-03 3.25100601e-01 2.41660699e-03 -4.24110651e-01\\n-7.99821038e-03 -2.01301947e-01 -2.28338391e-01 -3.77416402e-01\\n5.05203545e-01 4.92491037e-01 -3.29951137e-01 -2.78160512e-01\\n-4.55235206e-02 -1.20352991e-01 2.77606905e-01 -1.44076914e-01\\n-3.29748467e-02 -6.25228286e-02 5.76341748e-01 1.14694498e-01\\n3.04585367e-01 5.07460058e-01 -2.03560352e-01 -4.10911769e-01\\n-9.86474380e-02 2.01326460e-01 1.43166170e-01 4.63549644e-01\\n-1.13494433e-01 2.25295171e-01 -1.16808817e-01 1.96360409e-01\\n-6.67527989e-02 1.59337744e-01 1.92558125e-01 5.44711389e-02\\n1.60342291e-01 1.30295992e-01 2.23465040e-01 5.50060689e-01\\n3.26125115e-01 5.02811015e-01 2.62240916e-01 7.24272132e-02\\n3.41198772e-01 7.00757742e-01 4.47417110e-01 2.81176835e-01\\n-4.85398546e-02 2.30243299e-02 -1.07092805e-01 -2.41078995e-02\\n2.50387520e-01 3.22646081e-01 1.35083839e-01 9.21271086e-01\\n3.63900721e-01 2.18752131e-01 6.98304772e-01 -6.85294747e-01\\n-4.49772775e-01 3.26978713e-02 4.15330827e-01 -3.87796581e-01\\n-1.60723060e-01 1.37236208e-01 -3.46083075e-01 2.62403935e-01\\n-5.10770321e-01 -1.37977615e-01 -2.80315392e-02 -3.35540511e-02\\n1.35373786e-01 -1.32425772e-02 -1.07980601e-01 -2.94934236e-03\\n-2.79053569e-01 -1.62697449e-01 -2.79539734e-01 -1.04222130e-02\\n-4.64932293e-01 -6.05345853e-02 -6.83496520e-02 -2.33537197e-01\\n-9.19168964e-02 -4.37342316e-01 -1.51102111e-01 1.50047123e-01\\n3.35844725e-01 -1.79025933e-01 2.64765765e-03 -1.34256810e-01\\n7.03805909e-02 2.83669889e-01 6.37778878e-01 -1.18853301e-01\\n1.05558380e-01 -5.53949289e-02 -3.44676375e-01 2.57128291e-02\\n1.22970104e-01 5.93876578e-02 4.16587405e-02 4.37147737e-01\\n-3.21840167e-01 -1.25453413e-01 9.97943059e-02 3.82271796e-01\\n-4.33810979e-01 3.54909431e-03 -7.13840276e-02 3.10256779e-01\\n1.37387231e-01 1.18593521e-01 -2.75910199e-01 1.56978175e-01\\n-2.15641946e-01 -4.74043190e-01 3.43139201e-01 -1.89482570e-01\\n-9.23431963e-02 1.91655263e-01 2.26326659e-01 1.68600157e-01\\n-3.89385849e-01 -2.37186756e-02 -5.62300459e-02 3.94517124e-01\\n1.32282674e-01 4.04587716e-01 -2.70195365e-01 -1.00168072e-01\\n-2.54767448e-01 1.59004569e-01 -2.24676996e-01 1.42532751e-01\\n-1.44012962e-02 2.99954802e-01 6.76034810e-03 8.61083940e-02\\n2.06475273e-01 7.85386860e-02 -2.71092445e-01 -2.57254541e-01\\n-2.62379587e-01 -2.38739505e-01 1.26035228e-01 -6.05210178e-02\\n2.29872644e-01 -4.16574508e-01 -9.33737904e-02 -1.03422254e-01\\n-2.61195004e-01 -4.65718955e-01 -7.15738237e-02 -2.15218980e-02]]',\n", + " 'Über unseren Kunden Our client operates in the telecommunication business. Ihr Aufgabenbereich Collaboration with data scientists, data engineers, devops, product owners and business partners to design end-to-end solutions Designing, coding and documenting data products Architecture, optimization and automation of your entire work environment Cooperation with your team to define the technical roadmap for the product Your tasks vary from data science (20%) through data engineering (60%) to devops (20%) Ihr Profil Master or PhD in Computer Science or similar qualification Very good knowledge of FP (Scala) and good knowledge of OOP (Java) Hands-on experience in end to end projects: from requirements engineering to deploying products into production Thorough know-how of Hadoop, Spark, Kafka, SQL & NoSQL Solid understanding of data structures and algorithms and experience in agile/lean development of scalable solutions Good abstraction and conceptual skills are combined with a self-reliant, team-minded, communicative, proactive personality Good English and good German Ihre Chance Apply now! Ort: Bern Spezialisierung: JAVA Entwicklung JavaScript Agile SQL Sprachen: Deutsch Englisch Job ID: 1809',\n", + " '[\"Cooperation\", \"Collaboration\", \"Proactivity\", \"Communications\", \"Operations\"]',\n", + " '[\"Automation\", \"NoSQL\", \"Agility\", \"Computer Science\", \"Business Partnering\", \"Data Engineering\", \"Scala (Programming Language)\", \"Product Data Management\", \"Hostile Work Environment\", \"Lean Product Development\", \"Data Science\", \"Conceptualization\", \"Front End Design\", \"Requirements Engineering\", \"Personalization\", \"JavaScript (Programming Language)\", \"Scalability\", \"Design Codes\", \"Data Structures\", \"Solution Design\", \"Algorithms\", \"Java (Programming Language)\", \"Telecommunications\", \"Abstractions\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'data scientist (m/w) 100%',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.23716041e-01 3.20143580e-01 4.61641818e-01 -2.05259416e-02\\n6.13241017e-01 -4.79093939e-02 -2.30252333e-02 1.98744759e-01\\n-1.34202063e-01 -1.96182340e-01 -4.97631691e-02 -2.56434619e-01\\n-6.27211928e-02 2.06369996e-01 -5.32674324e-03 6.17873311e-01\\n2.97053814e-01 5.61233275e-02 -1.88491389e-01 4.00563776e-01\\n1.42491430e-01 -2.70447787e-02 -1.21198185e-01 5.93753159e-01\\n3.99801463e-01 -8.75585228e-02 -1.63281158e-01 2.01077059e-01\\n-3.72864723e-01 -2.82330781e-01 3.36710244e-01 1.44757003e-01\\n-1.59963891e-01 -2.09601268e-01 1.65841520e-01 3.35064441e-01\\n-2.00217217e-01 3.46014574e-02 -1.05763890e-01 2.79501051e-01\\n-5.05677402e-01 -2.14998290e-01 -2.52348860e-03 2.02676445e-01\\n-2.50211239e-01 -2.93983370e-01 1.21236078e-01 -9.72635448e-02\\n3.07807289e-02 2.08511069e-01 -6.00388110e-01 4.58682895e-01\\n-2.66696334e-01 -1.44867152e-01 1.21694997e-01 6.99495792e-01\\n1.14676617e-01 -4.80412275e-01 -3.87103498e-01 -3.26806664e-01\\n1.20056719e-01 -5.80563322e-02 -1.89169496e-02 -4.07083392e-01\\n6.13145053e-01 -2.45869160e-02 6.21792227e-02 1.36961102e-01\\n-8.03324640e-01 -1.47417277e-01 -2.39962220e-01 9.04255509e-02\\n-5.42023301e-01 -1.09991012e-02 -2.27525771e-01 -4.17410508e-02\\n-4.09408771e-02 2.87546873e-01 -3.75437513e-02 5.03469743e-02\\n-3.81505378e-02 2.52418011e-01 -2.67105997e-01 1.42803013e-01\\n2.55896926e-01 2.15732753e-01 1.52351171e-01 3.53950739e-01\\n-2.65049189e-01 3.23000133e-01 8.91181454e-02 -1.63550049e-01\\n5.21807335e-02 2.27609918e-01 6.13169014e-01 8.98124650e-02\\n-5.71217202e-02 1.73562869e-01 -3.27084422e-01 3.01347315e-01\\n1.50213867e-01 -5.02408326e-01 1.56832278e-01 5.99309653e-02\\n-2.18358606e-01 1.47065772e-02 1.06818423e-01 3.46595347e-01\\n-3.39315087e-01 3.95113170e-01 1.26598790e-01 -9.95166376e-02\\n2.12791120e-03 -7.72975385e-01 -2.06442714e-01 3.03555299e-02\\n2.58866727e-01 3.64359409e-01 1.10903189e-01 2.81008750e-01\\n3.07509638e-02 -1.06449567e-01 2.73809701e-01 1.02503753e+00\\n-3.58710857e-03 2.19989955e-01 2.18298566e-02 2.49157384e-01\\n3.78833532e-01 -9.47678834e-02 2.25171417e-01 3.72929424e-01\\n2.11653545e-01 -1.93468124e-01 -1.15013942e-01 3.29230368e-01\\n-1.90758213e-01 -8.06486681e-02 -2.15190604e-01 1.22849852e-01\\n-5.23954444e-02 -3.95497888e-01 6.46436810e-01 2.23891094e-01\\n2.15203524e-01 -4.53961715e-02 -1.26244262e-01 -9.93883237e-02\\n-5.65535575e-02 3.84217352e-01 7.24602565e-02 2.24270090e-01\\n-3.67361069e-01 -7.41464347e-02 -8.75755679e-04 3.88787299e-01\\n-4.02648449e-01 -6.22885115e-02 -1.59833610e-01 -1.04757927e-01\\n3.52072269e-01 4.92596738e-02 -3.77662182e-01 1.03288010e-01\\n-1.68151140e-01 -4.00151968e-01 9.30070225e-03 4.66121584e-01\\n-3.41998227e-02 3.66243064e-01 -1.48893550e-01 -3.07992637e-01\\n6.21138513e-01 6.65008277e-02 7.51883537e-02 3.20020914e-02\\n3.45407903e-01 -3.70111614e-02 2.55501688e-01 1.85259908e-01\\n-6.91452563e-01 5.28156757e-01 -1.73739251e-02 -3.10814947e-01\\n7.50623345e-02 3.13052796e-02 7.32099116e-01 -3.74661237e-01\\n6.66110441e-02 -1.90925464e-01 -3.17391664e-01 -2.23569080e-01\\n-3.99595797e-01 4.00653891e-02 4.33836162e-01 -3.20580840e-01\\n-1.30015463e-02 2.42763266e-01 -4.50524032e-01 -2.65976250e-01\\n2.13548928e-01 1.84102744e-01 2.05443785e-01 -1.92683730e-02\\n-2.03957751e-01 -7.33364999e-01 -3.49229649e-02 -4.76192802e-01\\n-4.36677843e-01 5.12599126e-02 -3.09764445e-01 3.70899439e-01\\n9.95766092e-03 -2.13379078e-02 -9.47733596e-02 1.22342207e-01\\n-3.29395950e-01 7.08684698e-02 1.90020695e-01 6.84869140e-02\\n2.62767881e-01 -7.08706304e-02 -3.06048155e-01 4.46448863e-01\\n-1.35941297e-01 5.95533907e-01 3.03283513e-01 -7.33221710e-01\\n6.49586201e-01 2.74479866e-01 9.00814608e-02 -1.85406253e-01\\n6.49651527e-01 -2.87393749e-01 -2.26535246e-01 2.26282910e-01\\n-1.70604751e-01 -2.64377177e-01 1.73837617e-01 -2.38251939e-01\\n-3.24990690e-01 5.23796439e-01 3.18378031e-01 5.84871024e-02\\n4.38380718e-01 -3.50164443e-01 -1.95987225e-01 2.18986660e-01\\n-2.08209530e-01 -2.13969424e-01 -3.26557130e-01 -1.27061978e-01\\n-1.05304942e-01 -3.33187759e-01 -1.00043215e-01 -2.36923471e-01\\n-1.09552406e-01 -2.43016347e-01 -2.51085132e-01 3.91932517e-01\\n1.87940132e-02 2.48053044e-01 7.43893534e-02 -1.33403838e-01\\n-1.86374843e-01 -7.92374492e-01 -2.36991525e-01 1.88020468e-02\\n3.96040827e-01 2.65920728e-01 1.17609419e-01 -1.54432803e-01\\n-3.68056484e-02 3.65844995e-01 -2.59463310e-01 -5.67649782e-01\\n-4.54556866e-04 8.93254802e-02 -7.61158094e-02 2.80874241e-02\\n2.13181809e-01 3.39081049e-01 -2.83662975e-02 1.33899808e-01\\n-2.37549126e-01 -9.14158747e-02 2.24248618e-01 -1.54136505e-03\\n-2.80098636e-02 -1.91755489e-01 -2.39881024e-01 2.35570565e-01\\n-5.17950118e-01 -3.49207819e-01 4.21409398e-01 1.29324600e-01\\n1.81953609e-01 4.33499627e-02 2.76737571e-01 -1.14268690e-01\\n-2.67161965e-01 -4.76207256e-01 1.86808169e-01 1.96115449e-01\\n-1.33756593e-01 2.56362319e-01 -5.25274128e-02 -5.47557235e-01\\n-3.54796791e+00 -1.26988158e-01 7.74990395e-02 -3.28409195e-01\\n2.17335880e-01 -1.38542846e-01 8.74826610e-02 -7.92198535e-03\\n-3.16212207e-01 -4.02606353e-02 -1.63929343e-01 -1.66111037e-01\\n4.63367105e-02 4.75754023e-01 9.14881527e-02 1.57539889e-01\\n3.60287465e-02 -2.09682807e-01 -1.13135435e-01 4.51695889e-01\\n1.07384562e-01 -6.74493730e-01 -1.47334009e-01 1.02827653e-01\\n1.43027240e-02 3.01118195e-01 -2.93269515e-01 -2.92928107e-02\\n-2.33911142e-01 -3.52692276e-01 8.88642967e-02 -3.43986928e-01\\n-2.00320408e-01 3.84371966e-01 1.56916723e-01 2.58099377e-01\\n-1.24714084e-01 -1.27830938e-01 -2.65972950e-02 -3.83334965e-01\\n-8.56846571e-02 -5.73763847e-01 -1.86509430e-01 -2.16690391e-01\\n6.85116947e-01 -3.34135234e-01 2.16818646e-01 2.18049437e-01\\n7.08826035e-02 6.46075187e-03 6.38954043e-02 -3.25175077e-02\\n-1.14304058e-01 -2.69846141e-01 -1.27916723e-01 -2.06454590e-01\\n4.66286778e-01 6.75529003e-01 -2.49701440e-01 -1.14757173e-01\\n2.94628531e-01 -3.64959419e-01 -4.07697737e-01 -4.85185832e-01\\n-2.22349912e-01 -2.22621486e-01 -7.31948495e-01 -6.16865098e-01\\n-1.53911822e-02 -6.67736232e-02 -1.06547579e-01 3.96667868e-01\\n-3.15740794e-01 -4.50640351e-01 -1.36186525e-01 -4.63380486e-01\\n2.31105626e-01 -1.01682968e-01 9.52863395e-02 -1.49022996e-01\\n-3.25556457e-01 -6.01751924e-01 -4.10873182e-02 -1.82784200e-01\\n-1.94659397e-01 -1.06083043e-01 -1.44784644e-01 -2.73545057e-01\\n-5.07642686e-01 -4.00643468e-01 4.09976393e-01 -2.95111202e-02\\n3.13107312e-01 2.14005321e-01 3.29447150e-01 1.82287097e-01\\n3.85622829e-01 -8.04841667e-02 1.89810082e-01 -4.25219744e-01\\n1.14251450e-01 -4.17058207e-02 6.98472798e-01 -4.60248113e-01\\n-3.65476497e-02 3.42792347e-02 -4.12867993e-01 2.83561833e-02\\n3.84360522e-01 -1.40575126e-01 -1.50678521e-02 -1.24135733e-01\\n3.79494220e-01 -3.53775203e-01 -1.08327065e-02 2.28223309e-01\\n8.21757317e-02 7.23202169e-01 1.30189106e-01 -2.93464720e-01\\n-2.10505113e-01 5.33006370e-01 -2.41514578e-01 -1.81471407e-01\\n2.35888176e-02 8.05610195e-02 4.28265613e-03 1.76993862e-01\\n-1.25941485e-02 -2.20608622e-01 -1.71644479e-01 2.68579312e-02\\n4.10232618e-02 4.18173552e-01 3.01259339e-01 -8.62357169e-02\\n-1.05879463e-01 -1.76628187e-01 1.84876174e-02 1.71240568e-01\\n3.39527667e-01 1.95929587e-01 1.66274697e-01 -2.57875353e-01\\n-1.04218423e-01 2.60362446e-01 -2.31339887e-01 2.57316202e-01\\n-1.73618067e-02 9.58253816e-02 -5.41330993e-01 -2.28512540e-01\\n-3.09431583e-01 -1.95623383e-01 3.26638967e-01 2.45920599e-01\\n1.72698751e-01 -1.01384409e-01 1.79248288e-01 -5.50921857e-01\\n1.85736969e-01 9.71695259e-02 1.62668958e-01 9.08823982e-02\\n-2.30574146e-01 3.79771560e-01 -9.49454233e-02 -6.73414543e-02\\n4.12209593e-02 3.77316400e-02 -2.49557018e-01 -3.07161033e-01\\n1.61056399e-01 -4.97589529e-01 -1.48147881e-01 4.60163504e-01\\n2.45712176e-01 -2.16726944e-01 -4.53359693e-01 2.80347377e-01\\n1.17998399e-01 -5.22898793e-01 -1.76845685e-01 -6.68539777e-02\\n1.80567667e-01 2.89604187e-01 3.49867433e-01 -4.62755829e-01\\n-1.07764795e-01 1.20698653e-01 -2.28490412e-01 2.60124624e-01\\n-6.53296337e-02 -4.49316949e-02 -1.88457355e-01 -6.55024126e-02\\n4.13993418e-01 1.15629815e-01 1.31830886e-01 6.54704273e-02\\n1.16681978e-01 -2.44838968e-01 -3.86529833e-01 -1.52831629e-01\\n-3.22700664e-02 -3.36367011e-01 -6.58417791e-02 9.52823237e-02\\n-5.16501628e-02 1.88946985e-02 -4.64449793e-01 -2.34803036e-01\\n-3.11341822e-01 -1.21355198e-01 1.14418246e-01 -2.96686500e-01\\n-6.57539815e-02 -1.21492364e-01 -5.54341555e-01 2.12612987e-01\\n-1.46835923e-01 5.88714965e-02 1.54687017e-01 1.63746744e-01\\n-1.68712050e-01 -2.03044608e-01 -2.95699425e-02 -1.26604876e-02\\n-3.37728202e-01 -1.80189058e-01 -9.26229432e-02 -8.94587755e-01\\n-1.79911964e-02 -9.43466276e-02 -2.54343785e-02 6.36632070e-02\\n-3.70044447e-02 -5.32659233e-01 9.50756297e-02 -5.03579795e-01\\n-6.06375672e-02 7.38632530e-02 -2.73170173e-01 -2.99890250e-01\\n2.11142138e-01 -5.11150882e-02 -2.51265973e-01 3.45696598e-01\\n-4.38469082e-01 2.59521902e-01 1.20507916e-02 2.65063699e-02\\n-8.60092044e-02 -1.33072302e-01 2.85489440e-01 -1.79590404e-01\\n-3.59274447e-01 -2.25066125e-01 -2.18973279e-01 -1.12617761e-01\\n7.81064034e-02 -3.10509801e-01 -1.24466002e-01 5.06553277e-02\\n4.66983974e-01 9.12235007e-02 9.35848951e-02 -5.83754517e-02\\n1.66940004e-01 -4.07591313e-01 4.08400781e-02 -1.85476631e-01\\n5.70867537e-03 -2.65677813e-02 9.81193855e-02 -4.63928748e-03\\n1.94933891e-01 -2.60055810e-01 4.85100597e-01 -3.24405253e-01\\n-3.36590856e-01 2.06747465e-02 8.84414464e-02 -9.01453719e-02\\n2.55286962e-01 -4.23512727e-01 1.05555743e-01 3.15425038e-01\\n-3.87395211e-02 1.28511470e-02 2.96840459e-01 -1.26061022e-01\\n-1.46638080e-01 3.40263322e-02 -3.37229908e-01 1.09715857e-01\\n8.92882466e-01 3.54014635e-01 2.31530860e-01 -1.79855488e-02\\n1.98128987e-02 3.28601569e-01 5.11649966e-01 -6.65510446e-02\\n4.16291803e-02 2.83035278e-01 1.29808739e-01 -3.79802138e-01\\n-8.21665376e-02 -3.63377184e-02 -2.45722517e-01 -3.49682778e-01\\n5.35786688e-01 4.19564664e-01 -3.88633162e-01 -3.60367537e-01\\n-1.70477152e-01 -6.36361539e-02 2.76914835e-01 7.36309662e-02\\n-6.02521896e-02 -7.45706782e-02 4.73733157e-01 -1.14864826e-01\\n8.96347910e-02 3.95497054e-01 -1.48684710e-01 -2.75012046e-01\\n7.05825090e-02 2.51531422e-01 1.61452785e-01 4.56404030e-01\\n-1.72256321e-01 3.04862231e-01 -2.65032232e-01 -2.83073708e-02\\n-7.17234612e-02 1.43022969e-01 3.65398824e-01 1.01229839e-01\\n3.47938776e-01 1.42199293e-01 1.90705702e-01 5.50340295e-01\\n7.50354230e-02 4.50197875e-01 1.44890875e-01 -5.68637475e-02\\n2.19591558e-01 4.71372426e-01 1.74839318e-01 1.88041866e-01\\n-1.21701300e-01 2.49426752e-01 1.26800567e-01 -4.52978946e-02\\n5.06105661e-01 1.33941993e-01 1.93406597e-01 7.47801483e-01\\n1.88911587e-01 2.83947051e-01 6.79957926e-01 -6.68273211e-01\\n-2.85148442e-01 1.45910472e-01 6.42837644e-01 -2.58315951e-01\\n-1.67321786e-01 5.65501824e-02 -2.17108727e-01 3.31937522e-01\\n-6.27733707e-01 -9.26453769e-02 -4.73746918e-02 -2.25290973e-02\\n-3.23625840e-02 -1.41235411e-01 -1.70949265e-01 -5.69994785e-02\\n-1.39623314e-01 -1.47041321e-01 -2.65226036e-01 -2.92698473e-01\\n-4.10194814e-01 -1.83458805e-01 -1.08290933e-01 3.44705284e-02\\n1.12354299e-02 -3.08143526e-01 -3.03840693e-02 9.40502435e-03\\n4.07808006e-01 -2.70557970e-01 -1.77884400e-01 -8.01614076e-02\\n2.12041140e-01 1.37782648e-01 5.39726079e-01 -4.58837152e-02\\n4.74968478e-02 -2.24078577e-02 -2.45592833e-01 -2.55202632e-02\\n-6.12193421e-02 6.86581656e-02 1.16753660e-01 3.30354571e-01\\n-2.20859677e-01 -1.72410309e-01 6.34556860e-02 2.32380524e-01\\n-5.39662778e-01 -2.22145945e-01 -5.97488843e-02 2.02112988e-01\\n2.36609280e-02 5.92152663e-02 -2.88785428e-01 3.44763696e-02\\n-2.07524940e-01 -5.18594980e-01 3.90656143e-01 -2.00291649e-01\\n-1.92863345e-01 1.66448012e-01 3.33111137e-01 1.35801867e-01\\n2.93051992e-02 -7.45473728e-02 -1.41294762e-01 3.24375957e-01\\n-9.80077684e-02 2.68547297e-01 -1.65431440e-01 -3.66666287e-01\\n-3.03484440e-01 2.61496305e-01 -1.63154855e-01 5.44528849e-02\\n-2.15493917e-01 3.37821364e-01 5.80103546e-02 1.66370571e-01\\n3.92386943e-01 1.19650319e-01 -2.88032770e-01 -2.46147707e-01\\n-1.53031349e-01 -3.88381958e-01 1.41235158e-01 7.55776614e-02\\n6.05716147e-02 -3.88700008e-01 -1.37486890e-01 -2.52680987e-01\\n-1.53663591e-01 -3.57751340e-01 -1.35426074e-01 1.24687716e-01]]',\n", + " 'Job Informationen Main tasks: Analyze and integrate data from mobile medical devices, large multivariate clinical data sets and real-world data (such as medical claims) Use modern analysis techniques to improve how we extract medically relevant information from this wealth of data Other tasks may include evaluating and improving performance of published and new algorithms on clinical datasets, establishing software frameworks for efficient and effective data exploration, or scientific publication of results. Your profile: MSc. (with 2-3 years of experience) or PhD in fields like computational science, life sciences, statistics, maths or physics Experience in working with complex numerical challenges/ tasks Fluency in Python, R, and/or Matlab Benötigte Skills Python Python R MATLAB',\n", + " '[\"\"]',\n", + " '[\"MSC Software\", \"Python Server Pages\", \"Data Explorers\", \"Computer Science\", \"Life Sciences\", \"Statistics\", \"MATLAB\", \"Integrated Data Viewer (IDV)\", \"Python (Programming Language)\", \"Medical Insurance Claims\", \"Medic\", \"Dataset\", \"Mobility\", \"Minimum Data Set\", \"Medical Devices\", \"R (Programming Language)\", \"Clinical Data Warehouse\", \"Physics\", \"Algorithms\", \"Performance Improvement\"]',\n", + " \"['English', 'Tibetan', 'Serbian', 'Yiddish']\"],\n", + " ['29',\n", + " 'data engineer',\n", + " 'Mendrisio',\n", + " 'Internet',\n", + " 'www.cloudacademy.com',\n", + " '[[-2.00082242e-01 2.25635409e-01 6.63298070e-01 1.74696892e-01\\n6.88305974e-01 -1.10866912e-01 -2.90110726e-02 2.65614241e-01\\n-2.35257614e-02 -4.37820047e-01 -8.71222764e-02 -3.46750170e-01\\n-2.09086202e-02 2.07687795e-01 5.08692972e-02 2.84356058e-01\\n2.62650102e-01 1.12316065e-01 -1.31888419e-01 2.61616021e-01\\n1.10120215e-01 -1.65580377e-01 8.55592117e-02 7.12094665e-01\\n4.60100949e-01 -3.22972201e-02 -8.23161080e-02 4.79430258e-02\\n-2.42024899e-01 -2.07945868e-01 4.00503367e-01 9.90183055e-02\\n-1.68391764e-01 -4.36540097e-01 -1.29079288e-02 5.07858321e-02\\n-2.61611253e-01 -3.81427705e-02 -9.31642056e-02 1.41921714e-01\\n-5.55662572e-01 -2.24112660e-01 6.92034978e-03 -1.08542638e-02\\n-2.79660046e-01 -2.66668320e-01 -8.36663768e-02 -1.11763008e-01\\n2.00705647e-01 -6.99487561e-03 -5.58448434e-01 3.48983556e-01\\n-2.88526475e-01 -2.46745616e-01 2.39355683e-01 6.85674608e-01\\n4.49190289e-02 -4.27034050e-01 -4.39924151e-01 -2.56394088e-01\\n1.13245778e-01 -6.92416877e-02 9.98810232e-02 -3.23293477e-01\\n2.55826384e-01 -1.81462809e-01 9.63137597e-02 3.35469514e-01\\n-7.63127029e-01 -2.70059351e-02 -2.77449757e-01 -4.96551301e-03\\n-2.85952985e-01 -1.98064167e-02 -3.34825546e-01 -2.86463182e-02\\n-1.50923669e-01 4.24297959e-01 1.09618232e-01 6.03514910e-02\\n-2.17139214e-01 2.07503587e-01 -1.46180332e-01 2.86496907e-01\\n2.82279164e-01 2.36213192e-01 2.47824579e-01 3.82822365e-01\\n-4.06622767e-01 5.14600873e-01 1.88137859e-01 -2.50667244e-01\\n3.68505806e-01 1.85147226e-01 4.08479184e-01 1.13837942e-01\\n1.17324583e-01 6.71341866e-02 -1.97632447e-01 2.49295205e-01\\n1.90685228e-01 -3.85536134e-01 1.27438754e-01 -5.75072542e-02\\n-1.22359786e-02 -2.18886863e-02 -1.91269210e-03 1.73894539e-01\\n-3.79568487e-01 4.52667356e-01 7.39621297e-02 -2.30535835e-01\\n-2.37085432e-01 -4.82903600e-01 3.09503917e-02 -2.38423888e-02\\n3.84458192e-02 2.74018168e-01 2.87682801e-01 1.53203428e-01\\n2.83823878e-01 1.07762538e-01 1.95443094e-01 8.07184935e-01\\n-3.42021585e-02 1.52695969e-01 -2.77493209e-01 2.74105042e-01\\n2.30065420e-01 -1.55148596e-01 1.56199798e-01 1.40333340e-01\\n-6.77077938e-03 -2.29165610e-02 -2.60127693e-01 3.49779546e-01\\n-1.20351188e-01 -1.71180844e-01 -9.96858478e-02 1.40617922e-01\\n2.41409279e-02 -4.00373459e-01 6.49785757e-01 9.60879922e-02\\n1.70826301e-01 -8.47234055e-02 3.16374898e-02 -2.15287581e-01\\n-4.41876911e-02 3.79038364e-01 9.70669836e-02 3.19313496e-01\\n-2.39135265e-01 -3.27318609e-01 -2.11985081e-01 1.22383900e-01\\n-4.09909338e-01 3.01523842e-02 -7.33427033e-02 -9.95295718e-02\\n1.95114493e-01 1.58882067e-01 -3.46398115e-01 2.18756318e-01\\n-2.36978412e-01 -1.33958653e-01 8.46584216e-02 2.56152511e-01\\n-2.70831287e-01 1.06760204e-01 -1.96390077e-02 -4.49482463e-02\\n5.92858613e-01 2.87783831e-01 3.76510829e-01 1.57887504e-01\\n3.49147648e-01 -2.94567682e-02 4.21640910e-02 1.57492325e-01\\n-6.28208101e-01 3.47462296e-01 -7.02861473e-02 -2.95179129e-01\\n2.01829880e-01 -1.82228331e-02 4.31417555e-01 -3.02745104e-01\\n-3.28100822e-03 -2.41454840e-01 -3.37192923e-01 -3.48820478e-01\\n-1.01075239e-01 -6.60636872e-02 3.42532456e-01 -5.57855785e-01\\n-2.57703904e-02 2.23957747e-01 -3.46328467e-01 -2.67351151e-01\\n1.44567579e-01 2.26748168e-01 1.04867168e-01 2.91624311e-02\\n-1.42461047e-01 -5.94898641e-01 -2.96882857e-02 -4.60280687e-01\\n-3.16621095e-01 -6.79194331e-02 -4.56243396e-01 1.48905888e-01\\n1.10946912e-02 4.40111756e-02 -2.29711477e-02 5.85411415e-02\\n-3.44295382e-01 -2.66771112e-02 2.32449546e-02 8.76419693e-02\\n2.92141825e-01 9.27962512e-02 -4.53015924e-01 3.90051514e-01\\n-3.80894870e-01 5.72727084e-01 1.79034054e-01 -8.32445323e-01\\n5.75927973e-01 1.99583724e-01 -1.32156849e-01 -4.01137143e-01\\n3.85893583e-01 -3.76241833e-01 5.72103374e-02 1.33344650e-01\\n-2.76199341e-01 -2.28468224e-01 2.32691363e-01 -2.22493067e-01\\n-3.23248893e-01 4.80825454e-01 1.17888339e-02 1.28483877e-01\\n2.18720943e-01 -2.91855901e-01 -8.61173049e-02 -2.94803157e-02\\n-1.84825182e-01 -2.65061200e-01 -6.22734785e-01 -4.59723435e-02\\n-1.55446321e-01 -4.42602873e-01 -1.28232107e-01 -4.23898399e-01\\n-2.14341074e-01 -4.10265714e-01 -3.43282193e-01 2.53153652e-01\\n3.40299070e-01 2.14686573e-01 -5.27324751e-02 2.04038378e-02\\n-4.39856574e-02 -7.11411357e-01 -1.26831025e-01 2.11433336e-01\\n5.01188278e-01 2.48775229e-01 2.18476385e-01 -1.47287682e-01\\n1.77839920e-01 6.00828350e-01 -3.09406728e-01 -2.80862719e-01\\n2.17531860e-01 2.08177805e-01 1.45641966e-02 -9.61460695e-02\\n9.39673558e-02 2.99324602e-01 -2.52875119e-01 5.53668663e-02\\n3.86620909e-02 -1.08227931e-01 4.21970367e-01 -4.29246575e-02\\n-2.49852225e-01 -2.26163939e-01 -1.11575253e-01 1.89098254e-01\\n-4.47607070e-01 -1.37752548e-01 4.68564689e-01 1.85808524e-01\\n1.35806024e-01 1.70576558e-01 5.93733490e-02 1.49952965e-02\\n-1.84288934e-01 -3.19368720e-01 3.96014452e-01 1.00406803e-01\\n1.71300486e-01 2.63545886e-02 5.65059073e-02 -6.84754848e-01\\n-3.29882193e+00 -1.29368231e-01 1.12093002e-01 -2.58684248e-01\\n1.98881641e-01 -2.24619567e-01 8.87670368e-02 -3.54548432e-02\\n-2.53153235e-01 1.60149708e-01 -1.93070188e-01 -2.14312136e-01\\n-9.60368104e-03 1.85116231e-01 1.41748101e-01 1.62633300e-01\\n1.71462834e-01 -2.24512383e-01 -2.54045501e-02 3.98863107e-01\\n-2.68425316e-01 -5.75734317e-01 1.89656749e-01 -9.24922992e-03\\n1.29011825e-01 1.61735445e-01 -3.94575417e-01 -4.79263403e-02\\n-2.94606388e-01 -2.58855581e-01 3.94836813e-02 -3.02826524e-01\\n-1.69015825e-01 2.31173575e-01 2.05302283e-01 -1.10380255e-01\\n-2.29525771e-02 -2.83569694e-01 -9.85960588e-02 -4.64898437e-01\\n2.29971185e-01 -6.82347894e-01 1.70826563e-03 -1.70031786e-01\\n7.67421246e-01 -2.53621846e-01 2.41331354e-01 5.32200001e-02\\n1.98563531e-01 7.72579014e-02 1.83079496e-01 -4.80950512e-02\\n-2.93160707e-01 -3.03587914e-01 -7.72290230e-02 -2.10390672e-01\\n5.72774589e-01 4.68876898e-01 -2.32954219e-01 1.00567788e-01\\n8.97916257e-02 -2.50250399e-01 -3.38004082e-01 -3.67808491e-01\\n-8.47953334e-02 -1.90154105e-01 -6.44422889e-01 -3.58307689e-01\\n-2.37692565e-01 -5.35098948e-02 -1.73348784e-01 6.83309138e-01\\n-2.23537713e-01 -3.40627760e-01 -4.50060032e-02 -5.49930453e-01\\n2.92525142e-01 -2.26350710e-01 -3.54556181e-02 -2.19424278e-01\\n-3.84449244e-01 -5.46058536e-01 2.00572610e-01 -1.46286935e-02\\n-1.70405999e-01 -1.90486237e-01 -7.12514594e-02 -1.11887105e-01\\n-3.27220827e-01 -5.28734922e-01 4.53813314e-01 7.47138634e-02\\n3.89641225e-01 4.50258516e-02 3.42192531e-01 -5.83290234e-02\\n3.66619319e-01 -4.39553559e-02 -1.18861243e-01 -2.91084558e-01\\n1.67029945e-03 -5.19434027e-02 4.72310871e-01 -2.14802042e-01\\n-5.62340021e-02 1.30633181e-02 -2.05137238e-01 -7.26636574e-02\\n3.83473903e-01 -5.91421202e-02 -1.91919561e-02 -1.73676014e-02\\n1.49899006e-01 -3.12187254e-01 -1.23561025e-01 1.09912425e-01\\n7.66745880e-02 6.77045226e-01 -4.77517908e-03 -3.79470497e-01\\n-1.69385076e-01 4.10028815e-01 2.98419930e-02 -3.22889574e-02\\n-1.82013303e-01 1.13103665e-01 -1.85907215e-01 3.64134163e-01\\n1.58624128e-01 -2.54524708e-01 -2.21764252e-01 -8.18207934e-02\\n9.81799210e-04 2.37839743e-01 2.93095320e-01 -3.10851261e-02\\n3.69392671e-02 -2.76173055e-01 -1.15463503e-01 2.45575801e-01\\n2.15234429e-01 5.35252392e-01 2.80419290e-01 -1.21189475e-01\\n-7.09661543e-02 3.48761678e-01 -2.61405408e-01 2.60237485e-01\\n-2.85427600e-01 1.26180246e-01 -7.14460313e-01 -1.98975205e-01\\n-3.96215558e-01 -4.54480767e-01 2.23042920e-01 3.25305134e-01\\n2.24712506e-01 2.15919479e-03 6.41972348e-02 -5.01045287e-01\\n3.11040223e-01 5.87692596e-02 1.88704818e-01 6.48616254e-02\\n-1.27303720e-01 7.35857010e-01 3.20191355e-03 -1.81023076e-01\\n-4.05069627e-02 -5.12045994e-02 -1.48772836e-01 -3.27150643e-01\\n9.48814377e-02 -5.37663460e-01 -1.67420164e-01 4.80783254e-01\\n2.42198750e-01 -3.29493672e-01 -1.80699497e-01 3.88646007e-01\\n-7.60499313e-02 -1.86901271e-01 -2.79845953e-01 -7.35238791e-02\\n3.15637708e-01 2.81177342e-01 2.61436522e-01 -4.49708462e-01\\n2.57047471e-02 7.10664466e-02 4.39580567e-02 4.50114101e-01\\n-9.27429199e-02 9.11136791e-02 -1.22978285e-01 -1.54046938e-01\\n5.39652109e-01 1.26949728e-01 -9.98347178e-02 -5.32008428e-03\\n7.32606510e-03 -3.16352934e-01 -4.79247510e-01 1.39600426e-01\\n2.86864899e-02 -2.87878633e-01 3.37244943e-02 3.99078190e-01\\n7.60375410e-02 -1.99807379e-02 -5.66408038e-01 -2.90984780e-01\\n-4.14100200e-01 -1.03131138e-01 7.49235898e-02 -5.34403384e-01\\n-5.59889227e-02 -1.14912890e-01 -5.45652151e-01 1.62470236e-01\\n-1.09022275e-01 -1.72669262e-01 7.09402487e-02 1.14660144e-01\\n-1.58122212e-01 -1.39632910e-01 1.61323324e-01 2.20779091e-01\\n-3.81904364e-01 -3.71773392e-01 1.92661569e-01 -8.71955574e-01\\n9.49129388e-02 7.87084773e-02 -1.10037871e-01 4.20953818e-02\\n-1.04353778e-01 -6.15664482e-01 1.58753976e-01 -4.14265662e-01\\n-1.45693198e-01 -3.46349068e-02 -3.60484034e-01 -3.20388347e-01\\n1.93313137e-01 -1.94700863e-02 -3.00010473e-01 4.07644212e-01\\n-2.63488710e-01 4.00100559e-01 -1.35406509e-01 -4.44483012e-02\\n1.51757598e-01 -2.00149119e-01 1.61718547e-01 -2.86785990e-01\\n-4.19289023e-01 -2.14120299e-01 -3.94909799e-01 -2.70132959e-01\\n-1.47896111e-02 -2.25182533e-01 -2.84535717e-02 5.81240132e-02\\n4.31330621e-01 1.28466085e-01 -1.02975480e-01 -3.42939675e-01\\n8.98802727e-02 -6.12769902e-01 1.86899617e-01 -1.15531527e-01\\n-9.15887877e-02 6.27326220e-03 2.03187928e-01 8.49358663e-02\\n1.66386053e-01 -3.11109543e-01 3.65905881e-01 -2.81435341e-01\\n-3.31665874e-01 -2.27461219e-01 2.42027408e-03 1.14350490e-01\\n3.87221217e-01 -3.51583600e-01 5.32052070e-02 3.62708539e-01\\n3.00327033e-01 2.11734265e-01 2.93572366e-01 -1.35290504e-01\\n-8.57323110e-02 2.89969236e-01 -4.33671653e-01 1.32000312e-01\\n8.17723393e-01 1.70845255e-01 1.20184541e-01 2.79863536e-01\\n2.37380981e-01 2.99207360e-01 4.94850248e-01 -4.24323492e-02\\n-8.02195743e-02 3.11893940e-01 4.57821153e-02 -5.10120869e-01\\n-9.27260965e-02 -4.67517860e-02 -1.01373769e-01 -4.63973373e-01\\n5.49229980e-01 3.39088768e-01 -5.88029146e-01 -1.91776097e-01\\n-1.65974170e-01 -8.41565207e-02 2.90564120e-01 -1.19086705e-01\\n-9.30366293e-02 -5.15116192e-02 4.38387096e-01 -3.48028243e-02\\n2.62130946e-01 5.64313650e-01 -1.63257420e-01 -2.91046381e-01\\n-1.45677835e-01 1.50090024e-01 8.47534314e-02 5.19238114e-01\\n-2.61489242e-01 2.66655147e-01 3.78726684e-02 8.95607248e-02\\n-1.39705539e-01 1.27351612e-01 1.68887764e-01 3.63932587e-02\\n1.53656244e-01 4.34682518e-02 5.11553943e-01 4.35245067e-01\\n1.68042347e-01 4.31544572e-01 3.78251702e-01 1.70791782e-02\\n4.54069227e-01 6.33443415e-01 2.05257058e-01 1.55574843e-01\\n1.94717553e-02 1.21155813e-01 8.99212807e-02 -9.27966535e-02\\n3.37685257e-01 4.72893596e-01 3.71972322e-02 7.62906134e-01\\n2.58406311e-01 3.27719122e-01 6.48398161e-01 -6.60321414e-01\\n-4.51613516e-01 4.49905768e-02 5.38177073e-01 -3.23654026e-01\\n1.95264723e-02 2.16557428e-01 -1.76611483e-01 3.19603801e-01\\n-5.55349529e-01 -2.57436872e-01 7.04749301e-02 1.57999676e-02\\n-6.65021092e-02 -8.54203925e-02 -1.74164981e-01 1.99467555e-01\\n-9.37347934e-02 -8.00428465e-02 -4.80387747e-01 -1.51882321e-01\\n-2.44141921e-01 2.26639062e-02 -1.34149954e-01 -2.77896561e-02\\n-2.61368994e-02 -2.76046395e-01 -5.96836507e-02 -3.38545591e-02\\n3.51283640e-01 -1.52411431e-01 -1.14355490e-01 -1.40807554e-01\\n2.95329064e-01 8.31074715e-02 5.08750319e-01 -1.15922838e-02\\n1.54916584e-01 -2.34697178e-01 -3.54662359e-01 4.98404987e-02\\n1.79183751e-01 8.54688883e-02 -7.04176677e-03 2.63531327e-01\\n-3.15759987e-01 -1.64064705e-01 1.71020180e-01 2.17373580e-01\\n-4.33389336e-01 -1.60579756e-02 -9.65989605e-02 1.86059102e-01\\n9.78053436e-02 1.49035260e-01 -3.71706039e-01 -1.19697273e-01\\n-2.28046790e-01 -4.42699254e-01 2.73321688e-01 -2.14537129e-01\\n-6.13162369e-02 -1.68225598e-02 3.33334237e-01 1.11436725e-01\\n-2.00642869e-01 2.95370501e-02 -1.15176305e-01 7.70796686e-02\\n-1.50255606e-01 3.01825523e-01 -1.50554284e-01 -2.27331847e-01\\n-3.23002756e-01 3.32887322e-01 6.60262182e-02 1.67546555e-01\\n-5.55528812e-02 3.39907467e-01 -2.28524338e-02 1.39183551e-01\\n3.69270712e-01 -2.38381289e-02 -3.01697582e-01 -2.68617421e-01\\n-2.02936634e-01 -5.76473847e-02 -6.89984933e-02 -5.75511493e-02\\n1.31067246e-01 -4.47860688e-01 -4.76802550e-02 -1.22213572e-01\\n-1.44428954e-01 -3.72405082e-01 -3.93482782e-02 -9.27502811e-02]]',\n", + " 'PLEASE NOTE: This position is based in our Swiss HQ in Mendrisio, Switzerland, just 7km over the border from Como, Italy. Mendrisio is easily commutable from Milan, Como, Varese or Lugano and Cloud Academy provides the train ticket for you! Cloud Academy is the leading digital skills development platform that enables every enterprise to become a tech company through guided Learning Paths, Hands-on Labs, and Skill Assessment. Cloud Academy delivers role-specific training on leading clouds (AWS, Azure, Google Cloud Platform), essential methodologies needed to operate on and between clouds (DevOps, security, containers), and capabilities that are unlocked by the cloud (big data, machine learning). Companies like Turner, Cognizant, SAS, and ThermoFisher customize Cloud Academy to contextualize learning and leverage the platform to assign, manage, and measure cloud enablement at scale. Role Description As a Data Engineer, you will design, build and improve our Data Warehouse. You will explore our data to find actionable insights from it. Data is the greatest accelerator for our business and you will be responsible for the full data stack. You will design, build and manage scalable data pipelines that provide reports to multiple business stakeholders. You will analyze data to find key insights and make product recommendations through funnels, cohort analyses, long-term trends, user segmentation, regression models, and more This role will enable you to work on the latest Cloud technologies and Cloud data warehouse to develop state of the art data analytics systems. Main responsibilities: Develop and manage our cloud data warehousing platform supporting the needs of critical BI reporting and analytical requirements Build data pipelines and own data quality for our data flows Identify, translate, and answer important product questions with data Create dashboards to track key product and business metrics Launch and support new data models and tools that provide intuitive analytics to internal customers Experience building and maintaining an AWS RedShift DWH. S3 Datalake design. Familiarity with Apache Parquet or other column-oriented data storage format a plus. SQL and NoSQL schema design expertise. Monitoring and alert management. Charting and graphing with ChartIO or similar. ETL design. Benefits Competitive salary with an annual bonus Train ticket paid for by the company Budget for professional development 4 weeks paid vacation per year 15 paid holidays per year Great company culture and work environment! Highly-skilled teammates and lots of opportunities for growth and development',\n", + " '[\"Operations\", \"Management\"]',\n", + " '[\"Data Warehouse Systems\", \"Data Quality\", \"Tooling\", \"NoSQL\", \"KM Programming Language\", \"Funnels\", \"Analytics\", \"Data Modeling\", \"SAS (Software)\", \"Machine Learning\", \"Apache Parquet\", \"Data Engineering\", \"Scale (Map)\", \"Data Warehousing\", \"Container Security\", \"SQL (Programming Language)\", \"Optical Data Storage\", \"Track (Rail Transport)\", \"Maintainability\", \"Censored Regression Model\", \"Data Pipeline\", \"Translations\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Building Design\", \"Dashboard\", \"Professional Development Programs\", \"Budgeting\", \"Pathing\", \"Column-Oriented DBMS\", \"Google Cloud\", \"Big Data\", \"Unlocker\", \"Clinical Data Warehouse\", \"Google Cloud Platform (GCP)\", \"Customer Experience\", \"Graphing\", \"Amazon Data Pipeline\", \"Digital Skills\", \"Long-Term Potentiation\", \"Amazon Redshift\", \"Data-Flow Analysis\", \"DevOps\", \"Cloud Technologies\"]',\n", + " \"['English', 'Tahitian', 'Dutch']\"],\n", + " ['22',\n", + " 'data analyst - reward - careerplus ag',\n", + " 'Vaud',\n", + " 'Consulting',\n", + " 'www.careerplus.ch/career',\n", + " '[[-2.92807728e-01 2.49484152e-01 5.17897129e-01 -2.04964243e-02\\n5.03775358e-01 4.79193330e-02 -4.91306558e-03 2.22196281e-01\\n-9.57313478e-02 -2.94222355e-01 -5.14931567e-02 -1.89331293e-01\\n2.17424572e-01 3.47227976e-02 1.17391795e-01 5.40095329e-01\\n2.23624900e-01 -4.39064167e-02 -1.78647742e-01 1.24300145e-01\\n1.74209356e-01 -1.31224871e-01 1.35293141e-01 5.82972527e-01\\n4.79634225e-01 1.45123020e-01 5.55340424e-02 -6.74915314e-02\\n-1.62668422e-01 -3.79930794e-01 4.87149775e-01 5.43474741e-02\\n-2.52798885e-01 -1.68198258e-01 1.46908700e-01 1.57194003e-01\\n-2.18937084e-01 -5.19923009e-02 7.88300531e-05 1.01035371e-01\\n-3.54064494e-01 -2.37514034e-01 -2.33541995e-01 -4.05795407e-03\\n-4.16233659e-01 -3.54876995e-01 3.36350016e-02 -1.81600705e-01\\n-5.56478910e-02 1.47341385e-01 -5.06300688e-01 3.36834222e-01\\n-2.07008317e-01 -3.09854716e-01 2.00348452e-01 7.45260000e-01\\n-2.41848029e-04 -4.15680438e-01 -3.83806884e-01 -2.72388399e-01\\n7.73532167e-02 -2.17611685e-01 2.13331729e-01 -1.44179091e-01\\n3.26887190e-01 -1.29860803e-01 9.79032964e-02 3.73884261e-01\\n-5.93981743e-01 -2.25384459e-01 -4.55781043e-01 -2.85508521e-02\\n-3.57793927e-01 1.11816861e-01 -3.78699839e-01 -2.52537608e-01\\n4.57380936e-02 4.15611416e-01 2.62043979e-02 6.77202046e-02\\n1.71525299e-03 2.25806519e-01 -2.78027833e-01 2.32643455e-01\\n2.44076699e-01 3.33147228e-01 4.15818810e-01 2.90371090e-01\\n-3.48088622e-01 3.44111949e-01 3.44426781e-01 -2.54290104e-01\\n1.99634552e-01 1.57101259e-01 4.24583346e-01 2.98259035e-02\\n1.96415022e-01 1.47921234e-01 -1.59335673e-01 2.49806240e-01\\n2.86896676e-01 -1.24613784e-01 1.63917802e-02 -2.91413534e-02\\n-1.06210001e-01 -4.34550680e-02 -2.94366460e-02 7.09833801e-02\\n-3.81873190e-01 4.03445840e-01 8.21186230e-02 -1.81224376e-01\\n-1.17309570e-01 -4.82728899e-01 -5.48721366e-02 -3.12304962e-02\\n1.56406239e-01 2.93370754e-01 9.01803225e-02 3.61370176e-01\\n2.31609970e-01 -4.35394198e-02 2.74227291e-01 7.19301105e-01\\n9.43277497e-03 3.55669633e-02 -1.40127480e-01 3.34680498e-01\\n9.72637609e-02 -2.36396343e-01 1.33891195e-01 5.20664491e-02\\n-1.94027752e-01 -1.20845273e-01 -2.22322553e-01 6.48572519e-02\\n-8.74188095e-02 -2.42824838e-01 -1.21442296e-01 3.75104956e-02\\n-1.05740033e-01 -3.64575654e-01 5.26833177e-01 -1.99331746e-01\\n1.28249913e-01 -5.69389276e-02 -1.65914565e-01 -2.02501733e-02\\n-9.06353295e-02 2.89669335e-01 2.41958618e-01 8.38008747e-02\\n-1.04285151e-01 -2.23296747e-01 -7.23098963e-02 9.80277508e-02\\n-2.45159313e-01 4.62356023e-02 -2.24775180e-01 -4.43001613e-02\\n3.49812567e-01 1.21501036e-01 -3.48953843e-01 2.12346286e-01\\n-5.89323118e-02 -1.11650214e-01 -1.05385639e-01 2.94752210e-01\\n-1.55899048e-01 2.56639570e-01 -4.03030030e-02 -1.46253720e-01\\n6.46015465e-01 -5.71680181e-02 2.03306660e-01 -2.60278247e-02\\n2.68023551e-01 -5.18381000e-02 1.21561222e-01 2.33049229e-01\\n-4.90553498e-01 3.43359232e-01 -1.49579048e-01 -2.29938790e-01\\n2.31814221e-01 9.11547337e-03 3.17964464e-01 -2.69416988e-01\\n-9.31287708e-04 -7.59353582e-03 -1.97048053e-01 -3.91775221e-01\\n-1.85339630e-01 -1.70011297e-01 2.49484479e-01 -4.16117400e-01\\n1.76510200e-01 2.78248250e-01 -4.16252375e-01 -7.76430666e-02\\n2.13353857e-01 2.23150298e-01 1.90509826e-01 2.29954839e-01\\n-5.70872538e-02 -3.52336496e-01 1.56435356e-01 -4.11385506e-01\\n-2.93577939e-01 1.90014228e-01 -2.02031001e-01 1.71946272e-01\\n1.10902667e-01 9.85754281e-02 -1.24510020e-01 3.98426764e-02\\n-4.18151543e-02 2.05012358e-04 1.45837754e-01 1.39613450e-01\\n4.07487392e-01 1.02339126e-01 -2.96056241e-01 6.33538425e-01\\n-2.38188162e-01 3.58768940e-01 2.22109452e-01 -8.11640859e-01\\n3.67092192e-01 2.73561627e-01 1.86295807e-02 -2.18771517e-01\\n6.34175837e-01 -3.30929250e-01 3.46937985e-03 7.76533410e-02\\n-3.55292261e-01 -1.78364798e-01 2.45974377e-01 -2.02756807e-01\\n-2.04766452e-01 6.19655013e-01 2.36004159e-01 1.20264463e-01\\n1.77044287e-01 -6.23706244e-02 -1.13642655e-01 2.27062598e-01\\n-2.11139396e-01 -1.43515885e-01 -5.30399978e-01 2.98961028e-02\\n-1.69910863e-01 -4.11377132e-01 -2.08604515e-01 -4.18698043e-01\\n-1.18193962e-01 -3.78028601e-01 -3.54471877e-02 1.67336494e-01\\n2.15364218e-01 2.22132593e-01 3.34526040e-02 -2.89345421e-02\\n-2.25567613e-02 -5.34587741e-01 -1.29745692e-01 -4.01797444e-02\\n2.32752353e-01 3.20354551e-01 2.18023300e-01 1.03602260e-02\\n-1.38135133e-02 5.86848378e-01 -3.27669650e-01 -2.30981871e-01\\n2.04553694e-01 7.09214658e-02 -3.07821929e-02 -1.63559511e-01\\n8.59709010e-02 1.69269234e-01 -2.29933068e-01 6.99177310e-02\\n3.36774550e-02 8.83765593e-02 2.64966339e-01 4.00313996e-02\\n-1.64133087e-01 -2.46609986e-01 -1.02021053e-01 3.38139862e-01\\n-3.07671964e-01 -2.31801808e-01 7.73478746e-01 7.45766088e-02\\n1.08141853e-02 2.50741720e-01 2.74939388e-01 2.38365363e-02\\n-2.09479362e-01 -1.82558864e-01 3.16131145e-01 3.37982886e-02\\n6.95002601e-02 3.79140489e-02 -1.30585268e-01 -6.73632264e-01\\n-3.82798314e+00 -1.91044480e-01 4.66539301e-02 -1.85087696e-01\\n3.07614774e-01 -2.62535989e-01 2.82215178e-01 -5.04504703e-02\\n-4.25621539e-01 2.27900178e-04 -1.98130056e-01 -1.34890050e-01\\n1.04165822e-01 3.05800259e-01 1.35605007e-01 2.02937216e-01\\n4.91464883e-02 -3.17067415e-01 1.04402274e-01 3.54781449e-01\\n-1.08920634e-01 -6.34532630e-01 9.27509367e-02 1.45179257e-01\\n1.87821895e-01 1.89701527e-01 -3.53751153e-01 -2.01682989e-02\\n-4.12370831e-01 -2.71910667e-01 2.43152291e-01 -1.87033936e-01\\n-1.25722006e-01 3.38573337e-01 1.23678602e-01 -1.56453237e-01\\n6.40785694e-02 -3.19020420e-01 -1.83386028e-01 -5.14295459e-01\\n1.48560423e-02 -6.43576264e-01 5.17886430e-02 -4.11559492e-02\\n6.98832929e-01 -1.72314465e-01 1.01254255e-01 -1.11673819e-02\\n1.54864475e-01 1.28706217e-01 1.17632680e-01 6.80226833e-02\\n-2.49146119e-01 -2.39811659e-01 -1.88842162e-01 -1.48558870e-01\\n5.46723425e-01 3.19685817e-01 -2.42419168e-01 -1.74864940e-02\\n1.61094725e-01 -1.43375814e-01 -4.70130593e-01 -3.43046486e-01\\n-1.84929371e-01 -1.26760587e-01 -6.91271245e-01 -4.17398959e-01\\n-1.24878511e-01 -1.20434113e-01 -9.15611386e-02 3.27238590e-01\\n-3.26957107e-01 -3.19581360e-01 -1.75155461e-01 -5.68320572e-01\\n3.43096048e-01 3.59299257e-02 7.19898418e-02 -6.30485937e-02\\n-2.51967788e-01 -3.12358260e-01 1.48753345e-01 -4.85609584e-02\\n-2.24839583e-01 -4.39677313e-02 1.17708310e-01 -1.02119699e-01\\n-5.39550483e-01 -5.88740170e-01 3.02530378e-01 -6.59187557e-03\\n2.52082676e-01 1.06097408e-01 1.81812048e-01 8.54525939e-02\\n3.28449339e-01 -8.88749361e-02 1.10937268e-01 -4.82921779e-01\\n-5.00840694e-02 -8.73403400e-02 5.34672558e-01 -3.17915112e-01\\n6.14494942e-02 -4.95008901e-02 -3.48138571e-01 6.60801679e-03\\n4.03120458e-01 -1.05266176e-01 2.09771156e-01 -2.05323040e-01\\n1.44424021e-01 -3.22828382e-01 -1.81625366e-01 4.68288474e-02\\n-2.18213964e-02 6.10500932e-01 -3.97641474e-04 -2.27759480e-01\\n-7.60752782e-02 3.43674451e-01 -2.52524644e-01 1.94884744e-02\\n-3.32107604e-01 -3.98220159e-02 -1.91715553e-01 2.38440007e-01\\n-6.23567514e-02 -1.67001877e-02 -2.20612690e-01 -2.18230456e-01\\n-3.08839321e-01 1.86227098e-01 3.92580032e-01 5.61631583e-02\\n-9.95813683e-02 -1.71130270e-01 -5.91154501e-04 2.83885747e-01\\n3.78166527e-01 2.47558996e-01 1.17952764e-01 -1.35925710e-01\\n-2.58399807e-02 1.30871221e-01 -3.14149946e-01 3.13218504e-01\\n-3.23312074e-01 1.73780978e-01 -5.46690047e-01 -3.48422348e-01\\n-2.14184523e-01 -2.36149579e-01 5.49806170e-02 2.56292284e-01\\n2.73810685e-01 -1.41505882e-01 -3.17259766e-02 -4.69738692e-01\\n1.36060417e-01 -3.23298783e-03 1.54710814e-01 9.68048722e-02\\n8.37241933e-02 5.46857476e-01 -7.90028572e-02 -9.90717933e-02\\n-1.02386046e-02 -2.37745908e-03 -3.14815193e-01 -1.92746237e-01\\n-1.11373537e-03 -4.64389563e-01 -1.87721133e-01 4.42664027e-01\\n2.97294378e-01 -2.18733232e-02 -1.42969266e-01 2.21551806e-01\\n-1.03578754e-01 -2.80066609e-01 -1.34844273e-01 9.46347043e-02\\n2.54331231e-01 2.06244305e-01 2.56608605e-01 -4.00748789e-01\\n-1.30822835e-02 -6.35702685e-02 -1.03939921e-02 3.72703433e-01\\n7.96988532e-02 3.55907306e-02 -1.02591552e-01 -2.11652473e-01\\n5.00992537e-01 -1.15009263e-01 -9.93147567e-02 2.29951933e-01\\n4.52876166e-02 -2.59161472e-01 -2.88915873e-01 -6.09055012e-02\\n-1.38794139e-01 -4.31407869e-01 -5.30247437e-03 5.26427366e-02\\n-5.45670763e-02 -1.34544820e-01 -5.58946550e-01 -1.44385621e-01\\n-4.39100355e-01 5.86260743e-02 -2.64023487e-02 -6.36194110e-01\\n-1.56636104e-01 -8.56428370e-02 -5.68331301e-01 4.72408384e-01\\n8.43668506e-02 -2.70385575e-02 -1.88171435e-02 4.56746183e-02\\n-1.51285753e-01 -1.16489366e-01 2.37081498e-01 5.73098771e-02\\n-1.72211125e-01 -1.59373105e-01 -6.26735166e-02 -9.15573955e-01\\n9.90821123e-02 3.38610969e-02 -6.15950339e-02 3.74277234e-02\\n-1.61738228e-02 -5.03424287e-01 2.65701950e-01 -3.10010970e-01\\n-1.24647848e-01 -1.28880173e-01 -1.37904823e-01 -5.72070062e-01\\n1.65153548e-01 1.66095361e-01 -8.25605690e-02 1.86751485e-01\\n-2.54866928e-01 4.60192829e-01 -6.07885271e-02 8.10760856e-02\\n5.18160574e-02 -2.72850156e-01 1.31389320e-01 -1.90626621e-01\\n-3.70012522e-01 -2.66933382e-01 -2.18123361e-01 -8.98007154e-02\\n-9.44960490e-02 -3.25810164e-01 -1.03750825e-01 8.93225968e-02\\n3.60930800e-01 1.34899750e-01 -2.81905774e-02 2.77143251e-02\\n3.47865857e-02 -3.19763273e-01 5.54116368e-02 -1.84001684e-01\\n-1.04908630e-01 -1.62066430e-01 3.06123793e-01 -1.60078686e-02\\n5.42841405e-02 -2.90793985e-01 6.55854821e-01 -3.51014316e-01\\n-3.66542280e-01 -1.43741444e-01 1.49283499e-01 9.28857028e-02\\n2.52769381e-01 -4.28187490e-01 -2.44174629e-01 2.65337050e-01\\n-5.03823534e-02 4.21923846e-02 4.57499534e-01 -2.51772940e-01\\n-3.33101004e-01 1.59681082e-01 -4.96445179e-01 1.67737246e-01\\n6.01235509e-01 2.08328292e-01 -4.24949937e-02 2.11482391e-01\\n5.84092960e-02 1.89005136e-01 4.47757453e-01 -6.54521808e-02\\n-1.18993491e-01 4.50450659e-01 9.47508216e-02 -5.98891973e-01\\n-2.52614319e-02 -1.32938683e-01 -8.49289745e-02 -4.22369659e-01\\n6.51286125e-01 2.45060951e-01 -2.44177952e-01 -3.56246859e-01\\n-2.32966051e-01 -2.06434965e-01 2.21360460e-01 6.99854270e-02\\n-8.14646482e-04 2.37384457e-02 6.33953750e-01 -3.37907560e-02\\n2.60523170e-01 4.42820013e-01 -1.29458934e-01 -1.25179425e-01\\n7.29270130e-02 2.24530995e-01 1.70701087e-01 6.03003919e-01\\n-1.71363279e-01 2.18244433e-01 -9.98080969e-02 8.34806412e-02\\n-2.23042950e-01 -1.58569261e-01 2.64286727e-01 1.02007426e-01\\n3.10000964e-02 2.80019283e-01 4.57617164e-01 2.52010167e-01\\n3.00936550e-01 2.77910411e-01 2.99330354e-01 -8.88086483e-03\\n5.68773866e-01 4.25679058e-01 2.88365990e-01 6.98861480e-02\\n2.44877785e-01 -1.16200102e-02 2.83846818e-02 1.24049164e-01\\n1.47922784e-01 3.53529394e-01 3.05384435e-02 6.88762784e-01\\n1.10410459e-01 2.03235954e-01 4.44429129e-01 -5.47876596e-01\\n-2.98101485e-01 -1.06862940e-01 4.76930678e-01 -2.10015133e-01\\n2.96239499e-02 1.17520146e-01 -1.60778672e-01 1.11862861e-01\\n-5.71863592e-01 -2.39320666e-01 3.35921012e-02 4.76931036e-02\\n1.24705255e-01 -2.65769392e-01 -1.14316419e-01 2.71872073e-01\\n-8.02594721e-02 -3.04331720e-01 -3.58398080e-01 -2.18096286e-01\\n-2.64741093e-01 -3.15170037e-03 -1.65616404e-02 -5.75651526e-02\\n-1.18179344e-01 -1.41884610e-01 -7.06317574e-02 -2.27782577e-02\\n2.61324435e-01 -6.21302128e-02 -1.71103179e-01 -1.16848528e-01\\n2.92841852e-01 1.13314904e-01 6.68359637e-01 -7.81475306e-02\\n4.04097028e-02 -1.56131983e-01 -7.96927363e-02 8.81968439e-02\\n3.48450750e-01 9.45734512e-03 3.75038348e-02 4.82997626e-01\\n-4.97146755e-01 -3.23453486e-01 2.33763028e-02 2.13830411e-01\\n-4.28546071e-01 1.77113991e-02 6.24992736e-02 6.81621432e-02\\n-3.12935859e-02 2.31950670e-01 -2.33727381e-01 -1.30394027e-01\\n-1.80645630e-01 -5.73991418e-01 2.47440994e-01 2.13290676e-02\\n-1.75795346e-01 -3.05417692e-03 2.82727331e-01 2.61612386e-01\\n-1.20194063e-01 -2.32921652e-02 -1.69710323e-01 1.32358000e-01\\n8.95941183e-02 2.62208670e-01 -1.12875976e-01 -1.70468539e-01\\n-3.81984055e-01 2.47090742e-01 1.50484862e-02 2.27425903e-01\\n7.91528597e-02 2.21344605e-01 1.02727368e-01 1.80787221e-01\\n2.42698088e-01 1.94107683e-03 -1.63231403e-01 -3.06096852e-01\\n-2.27223650e-01 -1.85125530e-01 9.02209580e-02 -1.72899321e-01\\n2.35681489e-01 -3.52716058e-01 -1.80768311e-01 -3.58611137e-01\\n-2.83901781e-01 -4.77604181e-01 -7.98367560e-02 8.31644423e-03]]',\n", + " 'Are you interested in a new challenging job opportunity?Do you have work experience in a Compensation & Benefit field?Your mother tongue is french and you are fluent in english ? We look forward to receiving your application ! We are looking for a Data Analyst - Reward for an international service company based in the canton of Vaud. You will be in charge of the following tasks : Participate in the highest quality data and survey products and service across Europe through: Analysis, and implementation of the annual survey cycle / Managing client relationships, and sitting on Steering Committee meetings-callsPrepare/ review materials and lead round table and conference meetings, including annual conference/ results delivery meetingsSupport clients with data submission training, collect data, analysis of client compensation levels, recommendations of appropriate survey products, interpretation of compensation surveys and survey access supportUnderstand complexities of data gathering and handling, data nuances and caveats, and best practicesLiaise with local/regional/global colleagues to manage client relationshipsMarket research and competitor analysisInterpret trends and market data patterns, implications for client compensation programmes and HR strategies identify insights in the data Requirements : Maturity, university degree in Economics, Human Resources or equivalent1-4 years experience with Compensation & Benefit, Data Analysis, ReportingExperience in using compensation/benefits surveysExperience in data analysis, surveys/surveys data and reportingExperience in producing and presenting reports, in a clear and concise manor, to a variety of audiencesExcellent MS Excel skillsGood knowledge of French and English (minimum C1 level)Teamwork, analytical skill, stress management, versatility and rigorous ',\n", + " '[\"Analytical Skills\", \"Research\", \"Concision\", \"Teamwork\", \"Stress Management\", \"Presentations\"]',\n", + " '[\"Economics\", \"Data Quality\", \"Human Resource Management\", \"Surveys\", \"Accessioning\", \"Intelligence Data Handling\", \"Market Data\", \"Levelling\", \"Data Collection\", \"Managing Client Expectations\", \"Survey Data Analysis\", \"Data Analysis\", \"Receivables\"]',\n", + " \"['English', 'Navajo']\"],\n", + " ['41',\n", + " 'software engineer (100%) – web and data science',\n", + " 'Lausanne',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.65671992e-01 1.45940229e-01 3.86579961e-01 -5.96222728e-02\\n4.40720975e-01 -1.17932484e-01 -5.53719737e-02 5.01133442e-01\\n-6.70614690e-02 -3.90774101e-01 -2.40968078e-01 -3.33446920e-01\\n-2.98712663e-02 4.49025333e-02 4.81980816e-02 3.25744450e-01\\n4.09833908e-01 5.76693937e-03 -1.84553653e-01 2.21736267e-01\\n1.58151448e-01 7.42802769e-03 6.68215826e-02 7.74974823e-01\\n4.26653177e-01 3.95111814e-02 -8.13630000e-02 8.06319192e-02\\n-1.23878241e-01 -1.93758741e-01 4.81303036e-01 -4.36533578e-02\\n-5.75363971e-02 -2.78646976e-01 1.52562439e-01 1.53269842e-01\\n-1.69085369e-01 -1.44976303e-01 1.58054326e-02 1.32952496e-01\\n-3.66461992e-01 -1.98856890e-01 -1.35921940e-01 -2.06342489e-02\\n-2.50288725e-01 -3.20023537e-01 1.66707382e-01 7.32310712e-02\\n1.94391698e-01 1.21158890e-01 -5.73420227e-01 3.27536047e-01\\n-1.59305811e-01 -2.10323647e-01 2.62402833e-01 5.85820317e-01\\n-4.31489646e-02 -3.49614322e-01 -4.45077181e-01 -3.20531785e-01\\n-3.72604914e-02 8.26465804e-03 2.51845773e-02 -3.39872897e-01\\n4.32266474e-01 7.68900961e-02 -1.74692422e-02 4.08467025e-01\\n-7.77748108e-01 -1.19041376e-01 -1.80832863e-01 -3.07215638e-02\\n-4.31059688e-01 -9.34521481e-02 -2.04030812e-01 -3.37942868e-01\\n3.92130949e-03 3.90388906e-01 4.84944806e-02 1.46399632e-01\\n-1.26081616e-01 3.08380604e-01 -1.73809811e-01 2.64557004e-01\\n2.00204268e-01 2.24971503e-01 1.22631535e-01 2.03790337e-01\\n-4.58802283e-01 3.04537326e-01 1.20717525e-01 -3.34799170e-01\\n2.20548585e-01 1.06594443e-01 4.94277716e-01 -2.64986046e-02\\n1.33682892e-01 1.20210752e-01 -2.74110585e-01 2.19658196e-01\\n1.65380284e-01 -2.70546913e-01 6.74144253e-02 1.08242229e-01\\n-1.60465941e-01 6.08422644e-02 -1.85638703e-02 1.67464122e-01\\n-4.69229460e-01 3.80220354e-01 1.42995641e-01 -2.04860896e-01\\n-5.75360730e-02 -5.27833998e-01 -5.02122864e-02 7.55536705e-02\\n1.28539905e-01 2.48511523e-01 1.00582331e-01 2.20322356e-01\\n1.80671632e-01 -1.19153254e-01 1.77313268e-01 8.00523818e-01\\n-1.65828735e-01 4.92043868e-02 -1.09462552e-01 2.98142612e-01\\n1.40939914e-02 -4.12092865e-01 3.59669060e-01 2.41447479e-01\\n6.60205856e-02 -9.69279334e-02 -1.92451924e-01 3.51833910e-01\\n-5.27645983e-02 -1.07739866e-01 -2.72441983e-01 2.93499619e-01\\n-6.37685955e-02 -3.98500741e-01 5.46387792e-01 -3.29662189e-02\\n1.38507351e-01 -1.19825944e-01 -1.50499977e-02 -1.06342621e-01\\n-1.75223872e-03 1.77395970e-01 -1.65576115e-02 1.13179833e-01\\n-2.77129471e-01 -2.60744929e-01 -2.11151257e-01 2.11403474e-01\\n-2.17946619e-01 1.65860862e-01 -1.15631759e-01 -7.70363733e-02\\n3.89654279e-01 -1.46581009e-02 -3.62541020e-01 2.69966841e-01\\n-1.63040996e-01 -7.66931847e-02 -1.56875193e-01 2.75265068e-01\\n-1.57152399e-01 1.70637965e-01 -8.45586434e-02 -2.88989067e-01\\n6.04902506e-01 9.84405205e-02 7.97428861e-02 2.04659179e-02\\n3.77252936e-01 -1.16546281e-01 2.71022826e-01 1.23651460e-01\\n-8.31082702e-01 3.86215389e-01 -7.69033059e-02 -1.41677290e-01\\n5.73826246e-02 -9.23963487e-02 3.63402575e-01 -3.26572210e-01\\n-4.28737048e-03 -6.35979474e-02 -4.10261333e-01 -3.56522679e-01\\n-2.93922603e-01 1.17526241e-02 3.80106091e-01 -4.41879064e-01\\n-1.07742257e-01 2.29473859e-01 -4.35201019e-01 -5.65388687e-02\\n1.20207965e-01 1.47222951e-01 2.17267781e-01 1.16263881e-01\\n-1.37646094e-01 -5.49800515e-01 -4.99382168e-02 -4.79152948e-01\\n-2.49541163e-01 1.10701770e-01 -3.63124132e-01 2.43841216e-01\\n1.00868732e-01 -9.69737396e-03 -1.25990167e-01 6.72070533e-02\\n-1.80060863e-01 1.93080287e-02 2.23223478e-01 9.92939174e-02\\n2.69773066e-01 2.12840606e-02 -3.51220042e-01 5.13492465e-01\\n-2.67470479e-01 5.66492081e-01 1.12878934e-01 -7.32331932e-01\\n5.85182548e-01 3.70277882e-01 2.30081119e-02 -4.11384702e-01\\n6.64948702e-01 -3.22872043e-01 -1.39720738e-01 2.16031119e-01\\n-5.10149181e-01 -2.79087454e-01 2.25954041e-01 -2.85820723e-01\\n-1.71467245e-01 5.68640590e-01 1.11486539e-01 5.34686446e-03\\n1.91207111e-01 -2.09477827e-01 -5.11966310e-02 2.03552753e-01\\n-5.67220896e-02 -3.04019392e-01 -4.41351265e-01 6.44363463e-03\\n-1.00489557e-01 -5.02600849e-01 -2.21974134e-01 -4.52862322e-01\\n-1.32305488e-01 -3.67884755e-01 -8.69197994e-02 3.19357514e-01\\n1.78226694e-01 1.15841031e-02 5.40474430e-02 -1.46193001e-02\\n-2.18150109e-01 -4.65944588e-01 5.52844405e-02 -4.87956665e-02\\n3.54325950e-01 2.22053930e-01 5.17959297e-02 7.71746412e-03\\n1.20537810e-01 5.90416431e-01 -4.31589901e-01 -2.04296216e-01\\n1.92698970e-01 1.77802205e-01 -1.65455453e-02 -9.36991945e-02\\n6.47983104e-02 1.84358478e-01 -2.80127943e-01 6.28573596e-02\\n-1.97841823e-01 6.18828088e-03 3.12159479e-01 -3.37022841e-02\\n-1.72033250e-01 -2.81366050e-01 -2.01874048e-01 2.41755426e-01\\n-4.15241957e-01 -1.46145418e-01 5.02776742e-01 1.94308281e-01\\n1.26098216e-01 9.35502499e-02 1.64956897e-01 -5.51386178e-02\\n-2.27688760e-01 -2.75434315e-01 1.64273471e-01 2.11716086e-01\\n9.52063203e-02 1.16905600e-01 7.06956442e-03 -5.39504468e-01\\n-3.16318107e+00 -1.43631786e-01 8.27458352e-02 -2.16717392e-01\\n1.96872801e-01 -1.81011736e-01 7.57007673e-02 -1.56750932e-01\\n-3.19366306e-01 8.51342082e-03 -2.65844643e-01 -2.52728224e-01\\n2.42721364e-01 3.00038517e-01 2.11652458e-01 1.78828925e-01\\n6.91802874e-02 -2.70938516e-01 -3.27821411e-02 3.37593853e-01\\n-2.02352136e-01 -6.36483133e-01 1.80496231e-01 -1.10360548e-01\\n2.89911449e-01 2.12548465e-01 -3.64683986e-01 -1.52064413e-01\\n-3.71091872e-01 -2.66302556e-01 1.55196354e-01 -3.94480646e-01\\n-1.90219581e-02 3.70257854e-01 2.72065759e-01 -8.62296000e-02\\n1.26356497e-01 -3.15278769e-01 -8.34692791e-02 -4.33622539e-01\\n9.70664546e-02 -6.00667834e-01 3.41655426e-02 -1.36053458e-01\\n6.46572888e-01 -2.92690754e-01 2.10369080e-01 -6.23375773e-02\\n1.25545070e-01 1.81514800e-01 7.08480626e-02 2.23776102e-02\\n-2.35551387e-01 -1.89410746e-01 -2.88651381e-02 -2.43645459e-01\\n4.85781610e-01 5.86879492e-01 -2.45114237e-01 5.31861279e-03\\n1.39248502e-02 -3.06160778e-01 -4.03995007e-01 -4.26138461e-01\\n-1.84742033e-01 -2.08667144e-01 -5.83256066e-01 -3.99220407e-01\\n4.32866812e-02 -8.51115957e-03 -1.75034963e-02 5.42504251e-01\\n-3.46156836e-01 -3.08009803e-01 -7.46407062e-02 -5.06666541e-01\\n1.90752119e-01 -1.30440563e-01 3.77066061e-02 -1.53395131e-01\\n-2.05087990e-01 -5.11045337e-01 -2.26585865e-02 -6.74601644e-02\\n-7.92954639e-02 -3.09072286e-01 1.44901365e-01 -2.73926258e-01\\n-3.10961783e-01 -4.97012854e-01 3.87421727e-01 7.26928636e-02\\n2.68800616e-01 1.60214692e-01 1.13335781e-01 -4.80764695e-02\\n1.84253618e-01 -7.91472644e-02 7.70884603e-02 -3.75289261e-01\\n1.73179924e-01 -3.24712358e-02 4.67437983e-01 -2.92596370e-01\\n9.26188082e-02 9.33798477e-02 -2.40125269e-01 -9.63956937e-02\\n3.16478431e-01 2.82150581e-02 5.46283498e-02 -2.18946502e-01\\n3.16442132e-01 -3.99932027e-01 -1.06561989e-01 1.22343890e-01\\n7.86487013e-04 5.63141465e-01 -9.13602859e-02 -3.18641096e-01\\n-2.43854791e-01 4.75256920e-01 -3.92867178e-02 -6.24148473e-02\\n-2.72917636e-02 6.82791173e-02 -2.72959262e-01 8.36367439e-03\\n1.05782643e-01 -1.77339256e-01 -3.27258199e-01 -6.63473010e-02\\n-4.37629186e-02 2.60152191e-01 3.49061579e-01 1.23251729e-01\\n-4.43817750e-02 -3.90107691e-01 4.30728868e-02 2.38825619e-01\\n2.05731302e-01 4.10272509e-01 1.64604485e-01 -2.82640755e-01\\n1.16258956e-01 4.40718293e-01 -1.38385400e-01 2.99130321e-01\\n-2.55757272e-01 2.94040069e-02 -4.51910585e-01 -2.76521027e-01\\n-3.08819771e-01 -2.09950149e-01 2.33417332e-01 2.39462256e-01\\n6.02208003e-02 -7.66653344e-02 2.06329226e-02 -2.36203387e-01\\n2.68072933e-01 3.77498157e-02 2.47298986e-01 1.95489034e-01\\n7.02776536e-02 5.05241871e-01 6.19248040e-02 -4.02613468e-02\\n-1.11321114e-01 9.74437874e-03 -1.82372719e-01 -2.55358249e-01\\n2.59953812e-02 -4.51805174e-01 -1.71005443e-01 3.30977261e-01\\n8.71234760e-02 -2.15608418e-01 -1.51789695e-01 3.16470623e-01\\n2.74791047e-02 -2.69510776e-01 -1.83940381e-01 4.27336209e-02\\n3.36368263e-01 1.95188791e-01 2.39873916e-01 -5.45838594e-01\\n2.16232799e-02 8.71053934e-02 6.00444637e-02 3.49319577e-01\\n7.42349587e-03 4.74575683e-02 -2.14556947e-01 -3.09754163e-01\\n3.78174186e-01 -1.18754230e-01 -7.81170204e-02 2.21334770e-02\\n-5.10758124e-02 -1.01043999e-01 -4.98390257e-01 6.23926409e-02\\n-7.73448050e-02 -1.69122234e-01 2.25923546e-02 3.02437153e-02\\n1.88040107e-01 1.60920154e-03 -5.90171278e-01 -2.60729134e-01\\n-2.39859760e-01 1.21823907e-01 -6.59736991e-03 -4.12824333e-01\\n-3.31509188e-02 -1.43836319e-01 -5.90028405e-01 2.51630843e-01\\n-3.01294565e-01 2.14015245e-02 1.66689724e-01 -2.85166893e-02\\n-2.90737748e-01 -1.66129358e-02 2.14256197e-01 1.43998519e-01\\n-3.52507979e-01 -2.76134938e-01 1.63707078e-01 -9.68044043e-01\\n2.28630215e-01 -4.89335358e-02 -2.76113488e-03 5.22096828e-02\\n5.19602746e-02 -6.59997046e-01 6.40762374e-02 -3.23857099e-01\\n3.16361152e-02 -5.28077185e-02 -1.89562067e-01 -3.75486195e-01\\n1.65075988e-01 2.86792889e-02 -2.53136873e-01 4.25950587e-01\\n-3.73569787e-01 2.23947644e-01 -6.23741485e-02 8.54542851e-02\\n-9.47628915e-03 -2.60334611e-01 1.60610527e-01 -3.55486512e-01\\n-3.97661686e-01 -1.08092077e-01 -2.31303632e-01 -2.40255073e-01\\n2.04730574e-02 -3.08231413e-01 -1.32807940e-01 1.14467770e-01\\n2.77534485e-01 -2.14315578e-03 -1.54656783e-01 -2.02471212e-01\\n6.36121482e-02 -4.14339721e-01 6.53293878e-02 -9.79014263e-02\\n-1.74235195e-01 -5.83656654e-02 1.44413859e-01 1.49172083e-01\\n1.79759547e-01 -2.99676359e-01 4.11857545e-01 -4.19254601e-01\\n-3.48256886e-01 9.24141146e-03 2.44993679e-02 7.12200850e-02\\n4.10732448e-01 -4.47869778e-01 -1.06420852e-02 4.83556926e-01\\n1.58661678e-01 4.26347740e-02 3.35807711e-01 -1.40962273e-01\\n-6.75651282e-02 3.55195940e-01 -4.03500348e-01 8.11336488e-02\\n7.59608150e-01 1.82093397e-01 1.61473811e-01 1.83877945e-01\\n8.28263089e-02 2.08341986e-01 4.96791363e-01 -6.81689978e-02\\n-4.55492884e-02 2.34692231e-01 1.66272134e-01 -4.87056762e-01\\n-3.79559584e-02 -7.23590404e-02 -1.19591534e-01 -3.12258154e-01\\n6.38360381e-01 2.92919099e-01 -3.86653483e-01 -2.76258111e-01\\n-1.80285275e-01 -8.55756849e-02 1.83038861e-01 -1.20801419e-01\\n-1.20878769e-02 -1.25445127e-01 3.60706985e-01 -1.79722719e-02\\n3.25670779e-01 5.15507519e-01 -1.36967659e-01 -2.27989957e-01\\n-1.24316573e-01 1.55378118e-01 -2.40206271e-02 4.30340767e-01\\n-1.24636143e-01 3.93962950e-01 -2.61003356e-02 7.84785450e-02\\n-7.83978105e-02 6.78520948e-02 1.60332724e-01 1.56171434e-02\\n1.71123862e-01 2.25997478e-01 2.28904232e-01 4.57809508e-01\\n4.19697940e-01 4.20207202e-01 2.50340521e-01 1.02351159e-02\\n5.12344360e-01 5.60570955e-01 3.82814586e-01 5.80348261e-02\\n-1.36158187e-02 6.44954741e-02 2.43339259e-02 3.39429080e-02\\n3.61855984e-01 2.38496885e-01 7.39051476e-02 8.66282940e-01\\n3.72847259e-01 3.94555718e-01 7.58402288e-01 -5.22506416e-01\\n-3.68315160e-01 -9.77809355e-03 4.80227858e-01 -3.72988820e-01\\n-2.26168558e-02 4.76302467e-02 -1.46486595e-01 2.68404514e-01\\n-4.04040635e-01 -1.36018753e-01 -3.36954966e-02 5.21584116e-02\\n8.01622570e-02 -6.15493730e-02 -1.92121118e-01 -5.70904277e-02\\n-2.76259631e-01 -2.42562056e-01 -4.39272940e-01 -2.10140608e-02\\n-2.95146763e-01 -1.82361647e-01 -6.06999770e-02 -1.34291872e-01\\n-1.40891895e-01 -3.11350852e-01 -6.07098565e-02 -7.84874409e-02\\n2.48353630e-01 -2.02380747e-01 -1.92393035e-01 -1.98216036e-01\\n3.09174687e-01 1.87624231e-01 5.69564581e-01 3.12692448e-02\\n5.37515357e-02 -1.99505210e-01 -2.62128711e-01 5.34336045e-02\\n1.47601604e-01 6.16584383e-02 1.04133293e-01 2.15175718e-01\\n-3.02895337e-01 -1.61912888e-01 2.15130210e-01 2.95713663e-01\\n-4.23356444e-01 -7.45199993e-03 -3.20259519e-02 2.60154426e-01\\n9.83207449e-02 9.41179097e-02 -2.00363994e-01 1.09424725e-01\\n-1.80405974e-01 -6.02317691e-01 2.75040656e-01 -1.84674039e-02\\n-7.90801942e-02 -3.01857069e-02 2.44553834e-01 1.65890366e-01\\n-1.48469836e-01 -7.37166107e-02 -5.72709739e-03 1.91942930e-01\\n1.08315811e-01 3.56584936e-01 -2.70975500e-01 -3.18293184e-01\\n-2.75185645e-01 2.19380870e-01 -2.39802092e-01 7.16267228e-02\\n-7.55953044e-02 4.12379742e-01 2.35632937e-02 1.06797941e-01\\n3.06158900e-01 -2.49416716e-02 -1.43308297e-01 -2.47206077e-01\\n-1.26511961e-01 -2.64839530e-01 4.24703807e-02 -3.16180363e-02\\n1.42942041e-01 -3.56728315e-01 -1.51308179e-01 -2.08909661e-01\\n-9.97731909e-02 -2.28749037e-01 8.07694867e-02 4.54790238e-03]]',\n", + " 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer (100%) – Web and Data ScienceYour mission : The Distributed Information Systems Laboratory (LSIR) headed by Prof. Karl Aberer at EPFL in Lausanne is currently looking for a software engineer with experience in Web development and Data Science. If you are interested in being at the crossroad of Web technologies, Machine learning and Computational Journalism, this job is for you. You will join our research team. Our goal is to develop a web platform to collect news articles from all around the world and to analyze the media landscape in real-time. You will be in charge of the Web platform development and will help us integrating some of the algorithms developed by our researchers. Interest in the field of journalism is a plus. Main duties and responsibilities include : Participate in the development and optimization of the platform in close collaboration with research staff. Support research staff to the transition of research prototypes into production-grade software tools. Implement best practices for sustainable and maintainable software development. Your profile : Master’s degree in computer science or equivalent. Ideally, at least 2 years of experience in software development. Fluent English in speech and writing Skills required Experience in web application development (Full-stack). Expertise in Python. Experience in managing and processing large-scale datasets. Effective team player. Skills preferred Experience in front-end and with at least one Javascript framework (e.g., Node.js, React, or Angular). Experience with at least one Machine/Deep Learning framework (e.g., scikit-learn, PyTorch, or Tensorflow). Experience with at least one Natural Language Processing framework (e.g., SpaCy, NLTK). We offer : A young, dynamic and interdisciplinary team Collaboration with strategic external partners and with advanced scientists Start date : Immediatly Term of employment : Fixed-term (CDD) Duration : 1 year, renewable Contact : For additional information, please contact J. Rappaz: jeremie.rappaz@epfl.ch Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " '[\"Research\", \"Writing\", \"Team Effectiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Integration\", \"Innovation\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Real Time Data\", \"Tooling\", \"Natural Language Processing\", \"Sustainability\", \"Computer Science\", \"Collections\", \"Good Agricultural Practices\", \"Web Application Development\", \"Scikit-learn (Machine Learning Library)\", \"Educational Research\", \"Scale (Map)\", \"Landscaping\", \"Python (Programming Language)\", \"Node.js\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Machining\", \"Web Development\", \"Dataset\", \"Software Engineering\", \"React.js\", \"Data Science\", \"SpaCy (NLP Software)\", \"Therapeutic Support Staff\", \"TensorFlow\", \"Deep Learning\", \"JavaScript Frameworks\", \"NLTK (NLP Analysis)\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Digital Learning Technology\", \"Software Development\", \"Algorithms\", \"Additives\", \"PyTorch (Machine Learning Library)\", \"Journalism\", \"Web Platforms\", \"Information Systems\"]',\n", + " \"['English', 'Volapük', 'Southern Sotho']\"],\n", + " ['92',\n", + " 'beamline scientist',\n", + " 'Villigen',\n", + " 'Research & Development',\n", + " '',\n", + " '[[-3.45809698e-01 2.40760267e-01 3.86761814e-01 -1.41333997e-01\\n4.54120249e-01 -1.82031512e-01 -2.59941280e-01 3.03020418e-01\\n-5.06130755e-02 -3.54118764e-01 -1.63982719e-01 -4.68991011e-01\\n-2.05224663e-01 2.58927822e-01 1.64388344e-02 7.08726466e-01\\n3.99915755e-01 -6.20405376e-02 -1.15255043e-01 2.97411680e-01\\n1.85923219e-01 1.92877464e-02 2.04463810e-01 8.37673247e-01\\n2.70993084e-01 -6.91604614e-02 -1.41646788e-02 7.16641396e-02\\n4.87585040e-03 -7.52151459e-02 5.64723074e-01 1.62882075e-01\\n-2.03815117e-01 -2.86213338e-01 2.54533201e-01 3.56649399e-01\\n-2.43268669e-01 -1.10123068e-01 -1.56665351e-02 1.56770706e-01\\n-5.84460258e-01 -5.04559457e-01 -2.97786534e-01 -1.11032128e-02\\n-3.39402497e-01 -3.09013903e-01 2.96466410e-01 -5.06600700e-02\\n5.38071543e-02 1.56672657e-01 -5.71766913e-01 1.50984317e-01\\n-1.63360715e-01 -9.36386436e-02 2.64369518e-01 6.69528306e-01\\n-2.21422806e-01 -3.76176119e-01 -5.28578460e-01 -1.56794935e-01\\n-9.67135355e-02 -8.63044038e-02 -2.92635299e-02 -3.26595902e-01\\n5.01759291e-01 1.06564306e-01 9.99007449e-02 2.21450150e-01\\n-7.19509840e-01 -1.52579114e-01 -2.69892693e-01 7.70695284e-02\\n-2.77819395e-01 -7.71931559e-02 5.24960831e-02 -2.24402428e-01\\n-1.38893992e-01 3.43119502e-01 5.03780320e-02 7.26718679e-02\\n-1.26976579e-01 3.99083763e-01 -2.14835852e-01 2.70659059e-01\\n6.82644472e-02 3.04811418e-01 6.75827712e-02 2.66681939e-01\\n-4.42713916e-01 3.92651886e-01 -1.33917551e-03 -3.58318985e-01\\n1.72328770e-01 1.30207866e-01 5.04208803e-01 -4.05891053e-02\\n2.21757561e-01 6.40647411e-02 -2.94102699e-01 4.63778496e-01\\n3.37146103e-01 -6.19560406e-02 1.96224093e-01 4.35618833e-02\\n-7.07868487e-02 -2.03720093e-01 2.27487590e-02 -9.14328732e-03\\n-3.51798952e-01 3.38611662e-01 3.60218212e-02 -2.79057771e-01\\n-3.37158412e-01 -7.15076208e-01 -1.06256425e-01 -7.18494654e-02\\n2.57016011e-02 -1.88628733e-02 3.10433745e-01 3.01956683e-01\\n2.21182570e-01 5.68175549e-03 1.32828474e-01 9.08930302e-01\\n-1.96331874e-01 1.98670663e-02 -7.71393441e-03 4.39201623e-01\\n2.66786758e-02 -2.46281981e-01 3.55188400e-01 3.32521081e-01\\n3.98515463e-02 -2.87895262e-01 -1.40692741e-01 1.18540943e-01\\n-8.13064054e-02 -2.50040650e-01 -4.47571754e-01 4.01631534e-01\\n-5.59104197e-02 -3.82852018e-01 5.80591917e-01 -1.49704218e-02\\n1.44920781e-01 -1.95709556e-01 -9.14238766e-02 -1.14982143e-01\\n1.27150387e-01 1.73118591e-01 2.98465006e-02 1.51056759e-02\\n-3.18475276e-01 -1.86753318e-01 -2.56250620e-01 -4.79933135e-02\\n-2.68640310e-01 4.11803901e-01 -1.33990586e-01 -1.46340415e-01\\n3.20837498e-01 -1.45542443e-01 -2.99591124e-01 4.51312423e-01\\n-1.02879189e-01 -1.01027444e-01 8.49661976e-03 4.04606223e-01\\n-2.96354949e-01 1.62089974e-01 -2.28302479e-02 -4.15693104e-01\\n4.89489704e-01 -5.08041643e-02 -9.25617572e-03 5.85887767e-03\\n2.68584907e-01 -5.64731658e-02 1.13961428e-01 1.10013202e-01\\n-7.46925533e-01 2.05857426e-01 -2.99774744e-02 6.47832602e-02\\n1.01645365e-01 -2.11973228e-02 5.61715901e-01 -2.67359823e-01\\n-9.64637399e-02 -2.03056574e-01 -2.29629397e-01 -1.72231153e-01\\n-2.23611683e-01 2.41424683e-02 4.04588282e-01 -3.51689905e-01\\n-8.71918947e-02 9.25695449e-02 -5.21928191e-01 -2.22333848e-01\\n-1.65140599e-01 1.93033114e-01 2.76066571e-01 2.08562136e-01\\n-2.86134005e-01 -5.01437664e-01 1.68071929e-02 -4.80697244e-01\\n-1.29399329e-01 1.26776978e-01 -1.44325584e-01 4.70583662e-02\\n3.97809483e-02 8.65317285e-02 -2.42027611e-01 1.40861413e-02\\n-3.10616076e-01 -5.20778541e-03 1.46430328e-01 9.37623084e-02\\n1.78942502e-01 9.55171883e-02 -3.41007590e-01 4.25902605e-01\\n-1.21985711e-01 7.14845300e-01 9.37000066e-02 -6.87866688e-01\\n4.45264995e-01 6.15007639e-01 -8.32524151e-04 -5.22736907e-01\\n8.59574080e-01 -3.89872015e-01 -1.23316176e-01 2.20034212e-01\\n-4.67379868e-01 -2.04989061e-01 1.93395495e-01 -3.42955977e-01\\n-2.18238682e-01 6.82741404e-01 2.06239253e-01 2.79475570e-01\\n2.42790908e-01 -2.41475821e-01 -8.78192112e-02 1.18884847e-01\\n-1.99934721e-01 -3.35704684e-01 -4.58944082e-01 -4.46644053e-02\\n-8.43228847e-02 -3.87640506e-01 -3.59113049e-03 -5.47983646e-01\\n-7.01359510e-02 -2.85246670e-01 5.85510805e-02 2.53617436e-01\\n2.88158834e-01 -1.07170954e-01 1.28562897e-01 1.00407302e-02\\n-2.87427217e-01 -6.40394807e-01 5.80714867e-02 4.78657670e-02\\n2.98324913e-01 1.41319811e-01 4.86830696e-02 1.45219356e-01\\n-4.21842635e-02 5.98069787e-01 -4.12827760e-01 -2.28340060e-01\\n7.23405257e-02 6.98399842e-02 -1.01957403e-01 -4.79738750e-02\\n2.29019046e-01 2.80903310e-01 -3.66281211e-01 1.58332273e-01\\n-2.83897579e-01 1.16952267e-02 3.83291543e-01 5.76225631e-02\\n-1.03777170e-01 -3.39173496e-01 -2.17351243e-01 7.36750290e-02\\n-5.66741526e-01 -2.92441368e-01 1.83423460e-01 1.80575594e-01\\n1.71114445e-01 -4.13333401e-02 2.59165287e-01 -4.86990362e-02\\n-3.41019392e-01 -4.05753464e-01 1.24298155e-01 2.22978741e-01\\n2.63237301e-02 -3.36475298e-03 4.52119447e-02 -5.36467791e-01\\n-2.48188829e+00 7.85219520e-02 -1.18475594e-02 -9.82554033e-02\\n3.07876289e-01 -8.55706781e-02 -8.79981667e-02 1.01506431e-02\\n-4.67441052e-01 7.92015642e-02 -3.10824454e-01 -3.26058716e-01\\n7.89732113e-02 9.02246237e-02 2.01924622e-01 1.97807644e-02\\n-1.60633743e-01 -3.64493608e-01 5.46896569e-02 3.78157020e-01\\n-9.36601907e-02 -6.97075248e-01 1.95206866e-01 -2.06763536e-01\\n3.20534915e-01 1.41952857e-01 -4.56909209e-01 -2.07273245e-01\\n-3.41205090e-01 -3.02655101e-01 1.24217838e-01 -3.90627980e-01\\n-1.07618451e-01 2.11928278e-01 2.78403252e-01 5.28788939e-02\\n7.39757866e-02 -4.11585420e-01 -8.63629133e-02 -5.36580682e-01\\n1.60470635e-01 -5.27852297e-01 -8.33108351e-02 -1.23676457e-01\\n7.91242599e-01 -1.05762511e-01 1.66914254e-01 2.38038406e-01\\n8.54494423e-02 3.80013168e-01 1.68680042e-01 6.87090307e-02\\n-1.76705003e-01 -3.88859391e-01 -1.24609828e-01 -2.22830340e-01\\n3.03601801e-01 6.22459531e-01 -2.01547831e-01 -2.11238578e-01\\n-4.94279861e-02 -1.13650329e-01 -7.15984583e-01 -2.17597574e-01\\n-1.31451577e-01 -6.81305677e-02 -6.10427856e-01 -3.04470688e-01\\n5.06750681e-03 -2.22039297e-01 -1.77767575e-02 8.21896315e-01\\n-4.81288910e-01 -1.27176374e-01 -4.85077612e-02 -5.03491640e-01\\n3.56350601e-01 -4.02850211e-01 3.52946296e-02 -5.58663495e-02\\n-3.22295606e-01 -5.35560727e-01 1.91964626e-01 3.33730355e-02\\n1.03961535e-01 -3.13841373e-01 -2.76895724e-02 -3.79646301e-01\\n-3.68857533e-01 -5.78027844e-01 4.07614797e-01 1.47311330e-01\\n4.02638018e-01 8.41324776e-02 1.04301319e-01 -1.31242260e-01\\n2.61280745e-01 1.89854652e-01 9.66012999e-02 -2.65808821e-01\\n1.07359469e-01 -1.26699321e-02 5.32254577e-01 -2.18555123e-01\\n-3.28736715e-02 2.81389654e-02 -3.00247639e-01 2.07408480e-02\\n2.36194059e-02 8.39301422e-02 -2.72555090e-02 -3.07861328e-01\\n3.03385973e-01 -2.36406267e-01 1.00457236e-01 7.42449611e-02\\n5.07685505e-02 6.40259326e-01 -1.36890719e-02 -2.96718985e-01\\n-2.13718176e-01 3.79791319e-01 6.97991624e-03 -2.77193666e-01\\n1.91347003e-02 9.82096121e-02 -3.45803201e-01 2.50712484e-01\\n5.86071610e-02 -1.72310725e-01 -2.86427140e-01 5.66873178e-02\\n-3.03193718e-01 2.87834853e-01 2.73239851e-01 3.02359819e-01\\n-2.60871649e-01 -3.42498481e-01 -1.43479928e-01 4.42345500e-01\\n3.82398069e-01 1.96156815e-01 2.04745919e-01 -3.05308402e-01\\n9.85153168e-02 3.70981276e-01 -8.95058662e-02 3.23548555e-01\\n-1.93556488e-01 -8.63525271e-03 -4.70659971e-01 -2.47499496e-01\\n-3.43874365e-01 -2.95479327e-01 3.04496825e-01 3.88104975e-01\\n1.00817353e-01 -1.97061762e-01 6.98339343e-02 -4.01460588e-01\\n3.01824570e-01 2.24672675e-01 2.78110743e-01 -3.18264263e-03\\n-2.12903783e-01 7.60145903e-01 4.95729297e-02 -6.84433803e-02\\n8.71081352e-02 -3.22130769e-02 -2.50670910e-01 -2.48286098e-01\\n9.05192643e-02 -5.52165031e-01 -3.55697870e-01 5.11308253e-01\\n7.54418224e-02 -2.96924919e-01 -1.85742944e-01 3.81201386e-01\\n5.93147613e-03 -1.13518104e-01 -1.71170354e-01 1.11547768e-01\\n1.82311013e-01 2.48405505e-02 2.56972849e-01 -5.77492118e-01\\n4.81822453e-02 -8.07079375e-02 2.15251073e-01 4.60442126e-01\\n6.17659241e-02 -1.40849799e-02 -3.96825850e-01 -3.82223397e-01\\n2.61422187e-01 -1.20779887e-01 5.67430817e-02 6.79491460e-03\\n-4.23998609e-02 -2.34470665e-01 -3.82789850e-01 1.49799645e-01\\n-1.08190261e-01 -2.89712071e-01 -1.90536663e-01 1.66775525e-01\\n2.09501058e-01 4.23453888e-03 -5.50093293e-01 -2.88947999e-01\\n-1.58106625e-01 1.93713278e-01 -4.33786958e-02 -4.23162341e-01\\n-7.35912751e-03 -1.31652936e-01 -5.53546250e-01 2.83875942e-01\\n-1.15396291e-01 -1.44187838e-01 2.90813059e-01 -6.14260919e-02\\n-1.45987034e-01 -1.75757349e-01 1.66905209e-01 1.70598298e-01\\n-2.79904962e-01 -2.72356093e-01 -1.09784506e-01 -7.50319302e-01\\n2.31985673e-01 -1.79974943e-01 -1.36926234e-01 2.47590214e-01\\n1.44959867e-01 -8.47737432e-01 -2.81981789e-02 -3.51557806e-02\\n-4.15872149e-02 -1.08306736e-01 -2.97942400e-01 -3.60341072e-01\\n1.88647851e-01 2.98499595e-02 1.86299950e-01 2.66827583e-01\\n-3.24826360e-01 3.50115776e-01 -1.63529590e-01 -5.95295094e-02\\n1.14686333e-01 -4.38195705e-01 3.35826516e-01 -4.05177653e-01\\n-2.33751938e-01 -1.58398956e-01 -1.46460295e-01 -3.10499340e-01\\n-2.04065055e-01 -1.65390432e-01 -2.03085750e-01 4.59843725e-02\\n3.60766411e-01 2.19513476e-03 -2.52138615e-01 -1.58766493e-01\\n2.73846090e-01 -2.29012355e-01 2.15433925e-01 -1.61596298e-01\\n3.11880652e-02 -1.87858403e-01 1.22183934e-03 2.55314410e-01\\n1.20783404e-01 -2.37280145e-01 3.82095069e-01 -5.39723933e-01\\n-5.31245053e-01 -2.66796462e-02 1.68584093e-01 -1.36082739e-01\\n4.35275286e-01 -3.74710053e-01 -1.70460925e-01 4.82203603e-01\\n7.29043484e-02 6.12219982e-03 4.18551505e-01 -3.97491157e-01\\n-2.09333509e-01 1.63863674e-01 -3.99607241e-01 1.93790436e-01\\n7.51308262e-01 3.62087578e-01 2.58520953e-02 2.22431332e-01\\n4.95855138e-03 1.64091989e-01 3.33375990e-01 6.46231920e-02\\n1.19703844e-01 1.65906265e-01 3.51426452e-01 -3.05862963e-01\\n-2.74645358e-01 -4.20168042e-04 -1.27942711e-01 -2.91398168e-01\\n5.14018416e-01 2.91541100e-01 -4.78274584e-01 -2.32945487e-01\\n-1.89964548e-01 -4.08878177e-03 2.96094596e-01 3.07504255e-02\\n3.04530896e-02 1.51658863e-01 3.68120819e-01 -4.52038422e-02\\n6.22645020e-02 5.17324328e-01 4.71297912e-02 -2.14374572e-01\\n-3.30490589e-01 1.47188783e-01 6.48699477e-02 4.25095797e-01\\n5.39490208e-02 3.91915500e-01 -4.82826829e-02 1.55732155e-01\\n-1.41831219e-01 2.46662274e-02 6.44592196e-02 -1.30825177e-01\\n-1.41736001e-01 2.21100539e-01 2.01558292e-01 4.39204961e-01\\n5.07578373e-01 5.00967383e-01 2.18115643e-01 2.51558376e-03\\n5.15514493e-01 4.94697690e-01 4.24764246e-01 -5.24234623e-02\\n2.91975774e-02 6.29625618e-02 -1.28203239e-02 2.84622777e-02\\n3.69149685e-01 2.08649606e-01 9.06033814e-02 9.07156289e-01\\n2.42310524e-01 4.47250992e-01 5.23406446e-01 -4.98723030e-01\\n-3.74662876e-01 -2.53628008e-03 4.03031111e-01 -5.62860250e-01\\n-1.05003431e-01 -8.55161771e-02 5.83845712e-02 1.61441296e-01\\n-2.95660853e-01 -3.66350040e-02 -6.52897656e-02 2.90814579e-01\\n1.12193540e-01 -7.38110244e-02 -1.52578816e-01 1.17978677e-01\\n-2.60110885e-01 -1.61791578e-01 -5.00850916e-01 -3.36037695e-01\\n-4.47054625e-01 -1.85329109e-01 -2.57674083e-02 1.00367386e-02\\n1.79492719e-02 -1.65376797e-01 1.99737221e-01 -1.09691340e-02\\n5.77859521e-01 -2.67868102e-01 -1.38407469e-01 -2.31462479e-01\\n5.25919437e-01 2.30033308e-01 5.42341113e-01 -1.27677575e-01\\n1.08313262e-02 -4.23326880e-01 -1.79315448e-01 2.51365993e-02\\n9.70965400e-02 1.51231304e-01 4.65523824e-02 4.40123379e-01\\n-2.04064324e-01 -3.36268768e-02 3.16305682e-02 3.20813358e-01\\n-2.78688788e-01 3.01793609e-02 -7.19959140e-02 -5.04226759e-02\\n-9.13985148e-02 8.77118781e-02 -3.10290396e-01 2.50814915e-01\\n-5.91894500e-02 -6.35081768e-01 2.48365790e-01 -1.56630874e-02\\n-2.68759251e-01 -1.31524116e-01 5.77500701e-01 2.05051094e-01\\n-3.08491439e-02 -1.47888869e-01 9.37148333e-02 2.59473115e-01\\n1.02441013e-01 2.75669992e-01 -3.93415213e-01 -2.91762561e-01\\n-3.83897066e-01 9.31471959e-02 -2.82130897e-01 7.43618328e-03\\n6.20297529e-02 5.94205499e-01 1.50216296e-02 4.52903770e-02\\n6.08782291e-01 -1.96345031e-01 -1.72456682e-01 -4.11166191e-01\\n-1.57634676e-01 -2.51504600e-01 -1.23404920e-01 6.95163012e-03\\n1.29820973e-01 -1.68730915e-01 -2.03990757e-01 -4.34988976e-01\\n2.73905694e-02 -2.02042356e-01 7.43188858e-02 -1.08718477e-01]]',\n", + " 'The Paul Scherrer Institute PSI is the largest research institute for natural and engineering sciences within Switzerland. We perform cutting-edge research in the fields of matter and materials, energy and environment and human health. By performing fundamental and applied research, we work on sustainable solutions for major challenges facing society, science and economy. PSI is committed to the training of future generations. Therefore, about one quarter of our staff are post-docs, post-graduates or apprentices. Altogether, PSI employs 2100 people. The Swiss Light Source (SLS) is one of the most advanced radiation sources worldwide. The SLS Macromolecular Crystallography team operates two high performance undulator beamlines as well as a state-of-the-art superbending magnet beamline for Macromolecular Crystallography. The focus is on methods development in Macromolecular Crystallography including advanced beamline instrumentations, novel data collection methods for experimental phasing, in situ serial crystallography, and time-resolved crystallography. The team is also involved in the development and user operation of serial femtosecond crystallography (SFX) instruments at the Swiss X-Ray free-electron laser facility Swiss X-Ray free-electron laser facility (SwissFEL) Alvra and Bernina end stations, and in the design of the new SFX Cristallina end station. We are looking for a Beamline Scientist Serial Femtosecond Crystallography Your tasks You will lead the development and user operation of the SFX instruments at the SwissFEL. In addition, you will contribute to time-resolved serial crystallography development at the macromolecular crystallography beamlines of the SLS and SLS 2.0 Your main tasks are: Lead the design, implementation and commissioning of the SFX instrument in the Cristallina-MX end station at the SwissFEL Further develop and commission the current SFX instruments at the Alvra and Bernina end stations of the SwissFEL Develop new concepts and implement advanced methods focused on experimental control and online data analysis Support academic and industrial users Publish in peer-reviewed scientific journals and present your results at international conferences Supervise assigned personnel, and mentor PhD students and postdoctoral fellows Your profile You hold a PhD degree in biology, chemistry or physics and have substantial experience in macromolecular crystallography and beamline instrumentation at storage rings or XFELs Experience in experimental control and data analysis, especially in high throughput applications You are a good team player with fine communication skills, sense of responsibility, and very good command in spoken and written English; knowledge of German is an advantage We offer Our institution is based on an interdisciplinary, innovative and dynamic collaboration. You will profit from a systematic training on the job, in addition to personal development possibilities and our pronounced vocational training culture. If you wish to optimally combine work and family life or other personal interests, we are able to support you with our modern employment conditions and the on-site infrastructure. This is a Tenure Track position. The employment contract will initially be limited to 3 years. For further information please contact Dr Meitian Wang, phone +41 56 310 41 75 or Dr Bill Pedrini, phone +41 56 310 33 71. Please submit your application online by 30 November 2019 (including list of publications and addresses of referees) for the position as a Beamline Scientist (index no. 6121-00). Paul Scherrer Institut, Human Resources Management, Elke Baumann, 5232 Villigen PSI, Switzerland',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Positivity\", \"Collaboration\", \"Infrastructure\", \"Supervision\", \"Written English\", \"Operations\", \"Presentations\", \"Innovation\", \"Sourcing\"]',\n", + " '[\"Economy\", \"Resource Management\", \"Sustainability\", \"Indexer\", \"Employment Contracts\", \"Institutional Research\", \"Commissioning\", \"High Performance Computing\", \"Vienna Development Methods\", \"Laser\", \"Journals\", \"X-Rays\", \"Industrialization\", \"Survey Data Collection\", \"Naturalization\", \"Track (Rail Transport)\", \"Instrumentation\", \"Source (Game Engine)\", \"Limiter\", \"Experimentation\", \"DR-DOS\", \"Academic Support Services\", \"Crystallography\", \"Human Resource Management\", \"Storages\", \"Electronics\", \"Biology\", \"High Throughput Screening\", \"Personalization\", \"Survey Data Analysis\", \"Applied Research\", \"Physics\", \"Humanism\", \"Serializer\", \"Chemistry\", \"Peer Review\", \"Additives\", \"Personality Development\", \"S/SL Programming Language\", \"Data Analysis\", \"Controllability\"]',\n", + " \"['English', 'Amharic', 'Slovak', 'Welsh', 'Pashto']\"],\n", + " ['78',\n", + " 'python software engineer',\n", + " 'Ecublens',\n", + " '',\n", + " '',\n", + " '[[-1.83854505e-01 3.13536018e-01 4.22254711e-01 3.44365053e-02\\n4.65702027e-01 -2.22730830e-01 5.41637130e-02 3.56434554e-01\\n-4.34068441e-02 -4.36030000e-01 -1.64858475e-02 -1.34045780e-01\\n5.05928732e-02 8.50647688e-02 1.05993062e-01 3.68707150e-01\\n2.89231479e-01 1.16412111e-01 -1.73810720e-01 3.55999857e-01\\n1.94137946e-01 -2.04991162e-01 1.48378909e-01 6.91550195e-01\\n4.17710066e-01 4.06444147e-02 -7.38515556e-02 -9.26300585e-02\\n-2.40960449e-01 -2.58311301e-01 2.96355516e-01 -8.26480985e-02\\n1.37014529e-02 -2.94709831e-01 1.00075617e-01 4.72450033e-02\\n-2.92439312e-01 6.23716004e-02 -1.22555047e-01 1.43531516e-01\\n-4.23669010e-01 -2.48998210e-01 -1.45149454e-02 4.47185040e-02\\n-2.87419587e-01 -3.76777261e-01 -4.35665064e-02 -2.11596657e-02\\n1.54236898e-01 1.02737240e-01 -4.06005830e-01 2.72632867e-01\\n-1.83327883e-01 -2.78033435e-01 2.66389161e-01 6.01276040e-01\\n8.39586332e-02 -3.88004154e-01 -4.53456998e-01 -3.02583277e-01\\n1.22131824e-01 -1.10317320e-01 8.38165805e-02 -2.27188751e-01\\n2.21157342e-01 1.12012766e-01 3.58807817e-02 3.92592728e-01\\n-7.54998982e-01 -1.71705246e-01 -2.17439070e-01 3.84816132e-03\\n-3.67293835e-01 -5.32518402e-02 -3.43586773e-01 -1.75129980e-01\\n-9.15751383e-02 3.99368107e-01 8.88368934e-02 4.82066423e-02\\n-1.44171953e-01 2.73338735e-01 -2.94052929e-01 2.80525893e-01\\n8.89399946e-02 3.07182252e-01 2.92147160e-01 3.36172462e-01\\n-3.79227877e-01 4.27910030e-01 2.01296017e-01 -2.18055949e-01\\n1.99569240e-01 1.31854713e-01 3.72218281e-01 -5.68479076e-02\\n8.93755034e-02 1.24701537e-01 -2.86539167e-01 3.40909779e-01\\n2.41709575e-01 -3.76927644e-01 -4.63990122e-03 -8.93799663e-02\\n-5.57769723e-02 9.71650556e-02 1.47829913e-02 2.13050053e-01\\n-2.42960364e-01 5.10131419e-01 1.41508564e-01 -1.51766762e-01\\n-2.71893531e-01 -4.69466954e-01 -1.60336271e-01 1.18879199e-01\\n5.43652624e-02 1.97682679e-01 2.12093249e-01 2.34369531e-01\\n1.21746019e-01 7.16879368e-02 1.19382657e-01 8.08339715e-01\\n-1.12368919e-01 5.78540005e-02 -2.38146588e-01 2.88646162e-01\\n1.25378698e-01 -2.04947263e-01 1.52810946e-01 2.55510211e-01\\n2.24832911e-02 -7.21717328e-02 -2.09090948e-01 1.99924842e-01\\n-8.68414901e-03 -2.16348439e-01 -2.94800460e-01 1.22627586e-01\\n-1.25011384e-01 -4.01160389e-01 5.59230268e-01 -3.76495384e-02\\n1.09912604e-01 -4.21210751e-02 1.42728211e-02 -1.98151078e-02\\n-1.17887765e-01 3.02445650e-01 9.79868621e-02 7.90295824e-02\\n-2.59168088e-01 -2.52759248e-01 -2.00077608e-01 6.34471253e-02\\n-2.82681406e-01 1.40626594e-01 -1.19020663e-01 -8.49884972e-02\\n2.75136799e-01 5.82743287e-02 -3.45815182e-01 2.88975745e-01\\n-1.51949316e-01 -4.40673009e-02 -2.55139600e-02 2.97942609e-01\\n-9.65181887e-02 2.21694544e-01 -4.46106717e-02 -6.24480322e-02\\n4.88128573e-01 1.73573375e-01 1.56886697e-01 5.01425639e-02\\n4.58676159e-01 -6.02609776e-02 1.34521931e-01 1.49736390e-01\\n-6.17692649e-01 3.02045256e-01 -1.07444696e-01 -2.24348813e-01\\n2.31781472e-02 -8.98709744e-02 2.03081921e-01 -2.41018176e-01\\n8.84831622e-02 -9.58148614e-02 -3.56079489e-01 -2.04897404e-01\\n-1.94516689e-01 -4.39879345e-03 4.89132971e-01 -4.05715287e-01\\n-5.64642325e-02 3.32567662e-01 -4.73960340e-01 1.48255816e-02\\n2.20368221e-01 2.10675478e-01 1.03842326e-01 1.90437973e-01\\n-1.99413195e-01 -5.07555842e-01 1.07281804e-01 -4.04630840e-01\\n-3.09696853e-01 7.83817321e-02 -2.45411694e-01 3.36472481e-01\\n1.33485854e-01 -5.40559134e-03 -1.60929933e-01 1.71383381e-01\\n-1.06812216e-01 -1.08879551e-01 2.67731786e-01 2.45865099e-02\\n2.18638629e-01 5.67065291e-02 -3.61529559e-01 4.16100174e-01\\n-1.90633252e-01 5.84218800e-01 1.44300342e-01 -8.43032062e-01\\n4.33352262e-01 2.36040980e-01 -3.46538164e-02 -3.34052742e-01\\n6.46217287e-01 -2.86919773e-01 -4.32270952e-02 1.71872094e-01\\n-3.76946330e-01 -3.46421778e-01 2.00288013e-01 -1.49988279e-01\\n-1.63399935e-01 4.79662716e-01 1.55881541e-02 1.12495720e-01\\n1.42329723e-01 -1.79428622e-01 -1.74207557e-02 1.80392757e-01\\n-3.51361483e-02 -2.71079093e-01 -5.08884251e-01 2.38020681e-02\\n-2.32987758e-02 -4.49971855e-01 -2.23834217e-01 -4.62566137e-01\\n-2.79075444e-01 -3.99096906e-01 -1.75621539e-01 1.49052367e-01\\n3.37494165e-01 2.24078804e-01 -7.67990276e-02 7.93152768e-03\\n-6.72702119e-02 -5.67534029e-01 4.88837482e-03 -4.41446481e-03\\n3.20021987e-01 2.73139566e-01 1.27957031e-01 5.06691448e-02\\n3.76954973e-02 6.24832332e-01 -2.70586848e-01 -8.64854231e-02\\n1.83450818e-01 1.85280025e-01 -2.99990606e-02 -1.83927700e-01\\n1.05380177e-01 2.90925980e-01 -2.75966674e-01 -1.50427513e-03\\n-1.05112188e-01 2.71822289e-02 2.59410679e-01 2.85334140e-02\\n-3.23628634e-01 -3.07909578e-01 -1.82162285e-01 2.30234683e-01\\n-4.82012987e-01 -8.35859999e-02 6.38418853e-01 1.15988553e-01\\n2.03159153e-01 9.22499523e-02 1.44464552e-01 -7.35452548e-02\\n-2.45179325e-01 -2.01752543e-01 2.51730591e-01 8.61008763e-02\\n9.74621549e-02 8.73875394e-02 4.05845903e-02 -6.13074005e-01\\n-3.60807538e+00 -1.56459346e-01 1.59213051e-01 -3.36877286e-01\\n1.79116026e-01 -1.19283952e-01 2.88836025e-02 -3.15272063e-02\\n-2.82874703e-01 -3.17993085e-03 -1.37448549e-01 -3.91491987e-02\\n1.26683444e-01 3.10841918e-01 1.61530107e-01 3.38875532e-01\\n2.01024801e-01 -1.64875492e-01 -1.00166760e-01 3.43691409e-01\\n-1.83085755e-01 -5.74825048e-01 1.61550462e-01 1.90665182e-02\\n3.25571239e-01 1.62230074e-01 -3.62847686e-01 -3.47967148e-02\\n-2.70251632e-01 -2.16401741e-01 1.85651660e-01 -2.51749694e-01\\n-8.45417604e-02 3.59161496e-01 1.12812229e-01 -6.74937516e-02\\n1.78500786e-01 -3.93139094e-01 -3.38029116e-02 -3.93471897e-01\\n5.20180278e-02 -8.35730135e-01 -6.24690428e-02 -6.72424734e-02\\n6.25159740e-01 -2.67437100e-01 1.13958977e-01 4.40572738e-04\\n2.33763054e-01 1.01217367e-01 -1.22215204e-01 -6.17421865e-02\\n-1.53872639e-01 -2.02363983e-01 -1.33112594e-01 -1.29501626e-01\\n5.53237319e-01 5.48809409e-01 -2.95008898e-01 4.54086997e-03\\n6.68706149e-02 -2.37182125e-01 -5.36164582e-01 -2.79586166e-01\\n-2.14452714e-01 -1.12541631e-01 -5.18542886e-01 -4.15151387e-01\\n-1.73022687e-01 -6.47204146e-02 -8.97274539e-02 5.21756947e-01\\n-2.47729301e-01 -3.68129253e-01 4.64192107e-02 -4.40942675e-01\\n1.98812142e-01 -2.70047709e-02 -1.11793010e-02 -1.37700275e-01\\n-2.11662158e-01 -3.82933289e-01 1.29433945e-02 8.46709982e-02\\n-1.07657589e-01 -1.49050757e-01 1.63339913e-01 -1.92669198e-01\\n-3.22787195e-01 -4.57881808e-01 4.27879244e-01 5.29456809e-02\\n3.18697482e-01 1.07264444e-01 3.26580584e-01 4.55382392e-02\\n3.42633724e-01 -2.13378370e-01 6.16228469e-02 -4.71835017e-01\\n1.15533210e-01 1.15101479e-01 4.58314747e-01 -2.57812977e-01\\n-3.58812809e-02 7.24732429e-02 -2.74093181e-01 -7.23180547e-02\\n3.68877649e-01 2.67448407e-02 1.04110397e-01 -1.06102906e-01\\n2.57055342e-01 -1.59591660e-01 -1.79497167e-01 1.49396151e-01\\n9.73035991e-02 5.10731757e-01 -2.12335773e-02 -3.74474496e-01\\n-9.95678902e-02 4.66497332e-01 -1.40816107e-01 -1.85114164e-02\\n-2.35039204e-01 8.24710354e-02 -1.86436296e-01 3.14074129e-01\\n-9.48823150e-03 -2.07338765e-01 -2.73957610e-01 -1.26650408e-01\\n-2.05142617e-01 2.24996924e-01 2.16780052e-01 5.91512695e-02\\n-1.25494425e-03 -4.32422042e-01 6.62727430e-02 1.65055782e-01\\n2.74168909e-01 2.78098136e-01 1.35948092e-01 -2.87630498e-01\\n1.33550828e-02 2.43893713e-01 -2.04039201e-01 1.11436613e-01\\n-2.34048039e-01 9.60922539e-02 -5.17248631e-01 -3.18022549e-01\\n-2.13809520e-01 -2.78456986e-01 1.61215328e-02 2.21385404e-01\\n8.64495263e-02 -2.35156249e-02 3.51036293e-03 -4.66592968e-01\\n2.45225117e-01 6.08302318e-02 1.36826560e-01 8.60461965e-02\\n8.88402611e-02 4.51788723e-01 -8.68314132e-02 -1.59263566e-01\\n-8.59555379e-02 4.01085280e-02 -1.88010469e-01 -9.62855145e-02\\n-7.38373538e-03 -4.68632251e-01 -1.14006937e-01 3.44908863e-01\\n1.94163173e-01 -2.32397109e-01 -2.09345773e-01 2.27193311e-01\\n8.26890618e-02 -3.23692143e-01 -2.03930363e-01 7.55390674e-02\\n3.40344608e-01 -7.84023665e-04 2.89408833e-01 -4.20174003e-01\\n-7.36906901e-02 1.24970227e-02 -1.80752456e-01 3.45428377e-01\\n9.49521810e-02 7.33099058e-02 -1.41062096e-01 -1.29876301e-01\\n3.53113502e-01 -1.62955701e-01 -4.63835560e-02 -4.86105122e-02\\n7.83211663e-02 -1.43355429e-01 -3.79651517e-01 -2.24196464e-02\\n-2.48414110e-02 -1.53878495e-01 3.46394628e-02 4.58384790e-02\\n-1.85313579e-02 4.18657809e-02 -4.40943092e-01 -2.55837977e-01\\n-2.90215909e-01 -3.97109240e-02 8.72222036e-02 -4.25135970e-01\\n-2.07857698e-01 -2.07643844e-02 -5.89752436e-01 2.67387033e-01\\n-1.28892243e-01 2.63465513e-02 1.04684927e-01 -1.21683162e-02\\n-2.39343122e-01 -2.81182714e-02 1.64795190e-01 2.60770917e-01\\n-2.07734257e-01 -2.74755001e-01 -2.96298005e-02 -1.03120303e+00\\n1.45582184e-01 -2.06318814e-02 -1.34849623e-01 1.13084719e-01\\n-9.35699567e-02 -5.67853570e-01 2.21977323e-01 -4.50070322e-01\\n-1.47491470e-01 -2.02272390e-03 -2.42225289e-01 -4.41374600e-01\\n-1.51963599e-04 -4.14062943e-03 -3.82462919e-01 2.97317028e-01\\n-3.00246716e-01 3.64383548e-01 -1.08668976e-01 2.25383919e-02\\n-2.42492314e-02 -3.32234651e-01 1.26525208e-01 -4.52324629e-01\\n-4.13053393e-01 -2.16503426e-01 -3.87033463e-01 -2.15564027e-01\\n-4.28158417e-02 -2.75769413e-01 -2.12677270e-01 1.41234204e-01\\n1.39678448e-01 1.05996445e-01 -2.92705558e-02 -2.59992808e-01\\n1.08309500e-01 -5.43522537e-01 -1.42402817e-02 -7.26744384e-02\\n-8.74239206e-02 5.03421575e-02 2.64104515e-01 1.02759607e-01\\n1.30421966e-01 -3.30535173e-01 3.40338916e-01 -2.55461752e-01\\n-2.57084906e-01 -8.68986025e-02 1.17111415e-01 5.35987131e-02\\n3.45667720e-01 -4.11615372e-01 -4.32775393e-02 2.52515644e-01\\n7.85239413e-02 7.06172064e-02 1.99472725e-01 -1.50284052e-01\\n-9.70525220e-02 1.09580219e-01 -3.26428950e-01 1.37482524e-01\\n7.09143519e-01 1.03468791e-01 1.16612241e-01 1.50718242e-01\\n1.71337456e-01 3.82334620e-01 5.51352859e-01 -4.27995101e-02\\n-7.22283572e-02 2.64805973e-01 4.33636270e-02 -4.65714633e-01\\n-6.87800348e-02 1.68755874e-02 -2.25771651e-01 -3.16154778e-01\\n7.46669710e-01 3.73340458e-01 -3.34144413e-01 -2.64604747e-01\\n-2.47089371e-01 -2.23196134e-01 1.16633154e-01 -1.49449691e-01\\n-3.17115337e-02 -1.68722704e-01 5.26809275e-01 -1.67585760e-02\\n2.11080477e-01 4.33066398e-01 -2.71808058e-01 -3.54930669e-01\\n-3.51133943e-02 1.73847899e-01 1.28463507e-01 3.66318852e-01\\n-2.22672075e-01 2.62082011e-01 -8.09992254e-02 1.94859326e-01\\n-1.65854111e-01 2.90295482e-02 1.60784200e-01 2.21153170e-01\\n1.85064569e-01 1.13407731e-01 5.00552952e-01 4.06333834e-01\\n3.13801408e-01 4.24546182e-01 3.14721853e-01 3.74882631e-02\\n3.93097371e-01 5.12624502e-01 2.83737212e-01 6.56319261e-02\\n-3.28865498e-02 1.57031193e-01 2.19195411e-01 -2.55202726e-02\\n2.65230447e-01 3.04799825e-01 1.24868512e-01 7.49586582e-01\\n3.33848506e-01 3.84398848e-01 7.34807909e-01 -5.14755130e-01\\n-3.87509376e-01 -3.92927825e-02 4.82603043e-01 -3.43237072e-01\\n-7.95091093e-02 1.77127302e-01 -1.56568274e-01 2.67745614e-01\\n-4.33659941e-01 -2.52876759e-01 -3.26214768e-02 1.54378757e-01\\n2.83774566e-02 -1.05004989e-01 -2.42276981e-01 4.77619208e-02\\n-6.95840120e-02 -1.89622626e-01 -4.33167309e-01 -1.03496782e-01\\n-1.59179807e-01 -5.13687246e-02 -9.06260312e-02 -7.85004348e-02\\n-1.38599440e-01 -3.72130215e-01 -6.94615766e-02 -1.03127230e-02\\n2.95885712e-01 -9.11673084e-02 -1.77479744e-01 -5.82132721e-03\\n2.40863100e-01 9.08658132e-02 5.77560484e-01 3.58492173e-02\\n4.12605554e-02 -2.59109288e-01 -2.01846078e-01 8.82450119e-02\\n2.38397285e-01 4.86583933e-02 -1.08193234e-03 4.18534130e-01\\n-3.78507942e-01 -2.44811326e-01 -1.38382660e-02 2.83928692e-01\\n-3.53988439e-01 -2.63351918e-04 2.02052714e-03 2.84852564e-01\\n8.40892792e-02 9.21496823e-02 -1.97487384e-01 -6.34175465e-02\\n-1.44567922e-01 -4.39394772e-01 2.08622217e-01 -1.78502742e-02\\n-1.92697421e-01 1.19683444e-01 1.63583606e-01 1.55272827e-01\\n-2.27259085e-01 -8.24973136e-02 -8.80286172e-02 1.21255040e-01\\n1.30779624e-01 3.41004401e-01 -9.22361240e-02 -4.18915153e-01\\n-2.82891780e-01 2.63603508e-01 -1.00076646e-01 1.80406496e-01\\n3.69230434e-02 3.82384449e-01 6.24729954e-02 2.07829341e-01\\n3.36590588e-01 3.82261761e-02 -1.60713851e-01 -2.62553692e-01\\n-1.18662544e-01 -1.93601504e-01 1.00766523e-02 -8.17293301e-02\\n1.66552082e-01 -2.93026596e-01 -8.24030340e-02 -1.35522947e-01\\n-1.77249268e-01 -3.40951324e-01 1.90074984e-02 -1.59024447e-01]]',\n", + " \"What we are looking for To accelerate projects and growth, Nanolive is looking for strengthening its development team with a highly self-motivated, enthusiastic, result oriented Python Software Engineer. Mission and activities Implement advanced statistical tools related to Nanolive Core Technology and Quantitative biology applicationsPrepare test protocols, run tests and analyse resultsDocument work results with Python notebooks or similar reports Required Master’s degree in Computer Science, Mathematics, Engineering or related area.Experience in Python scientific coding & djangoExperience in big data managementExperience in software industrialization and deploymentExperience with CI/CD, source management An Asset Experienceof unit testingKnowledge of hdf5, java programming, image analysis Key asset of the candidate Have a team player spirit, a quick perception, and a resourceful and fast-learning mindsetHave a strong sense of commitment and responsibility to respect planning and qualityHave a high analytical capacity and an adaptable, autonomous, rigorous and service-oriented mindsetHave effective communication in English (both written & oral – including technical documentation) What we offer You will get the opportunity to work in a fast-growing scale-up environment with highly motivated, competent and experienced individuals, and make a real difference for our customers. You will be working with a cutting-edge technology and facing the exclusive challenge of making it accessible to a wide audience by implementing creative solutions. Interested? Please visit our website, then click on “Apply Now” and fill your application including your cover letter and CV. We do not accept any recruitment agencies. Job Types: Full-time, Permanent Experience: Python: 1 year (Preferred) Education: Master's (Preferred) \",\n", + " '[\"Self-Motivation\", \"Adaptability\", \"Resourcefulness\", \"Planning\", \"Communications\", \"Creativity\"]',\n", + " '[\"Scale (Map)\", \"Tooling\", \"Accessioning\", \"Activism\", \"Industrial Software\", \"Programming (Music)\", \"Python (Programming Language)\", \"Biology\", \"Service-Oriented Modeling\", \"Agile Edge Technologies\", \"Computer Science\", \"Image Analysis\", \"Statistics\", \"Source (Game Engine)\", \"Analytics\", \"Big Data\", \"Technical Documentation\", \"Software Engineering\"]',\n", + " \"['English', 'Malayalam', 'Ossetian', 'Urdu']\"],\n", + " ['92',\n", + " 'product specialist - preclinical software',\n", + " 'Pratteln',\n", + " '',\n", + " '',\n", + " '[[-2.41236180e-01 2.90319145e-01 4.68818903e-01 -9.23457518e-02\\n5.66722870e-01 -4.17652465e-02 -3.56336087e-02 3.46196562e-01\\n3.00159715e-02 -3.08371961e-01 -3.29736546e-02 -3.26030612e-01\\n1.48460746e-01 2.54644424e-01 -4.24939804e-02 4.34395999e-01\\n3.37981522e-01 1.26956776e-01 -1.75786436e-01 2.45356038e-01\\n1.81513168e-02 -1.67816430e-01 2.34795898e-01 7.89804459e-01\\n3.97713900e-01 -2.32347809e-02 -1.05665080e-01 -6.33461997e-02\\n-1.60741121e-01 -1.71358630e-01 5.27925313e-01 -1.99466757e-02\\n-1.54859722e-01 -3.14400315e-01 7.80410245e-02 1.13540187e-01\\n-2.80140907e-01 -6.28394634e-02 -1.53352886e-01 1.40269026e-01\\n-6.47592664e-01 -2.66026974e-01 -9.40905064e-02 8.47475231e-02\\n-3.34530920e-01 -3.29408914e-01 5.53082451e-02 -7.76224285e-02\\n1.67329133e-01 1.71046063e-01 -4.49607134e-01 1.66265577e-01\\n-3.25467885e-01 -2.84837902e-01 2.95220584e-01 6.41033173e-01\\n5.08179255e-02 -3.86479795e-01 -5.68061709e-01 -3.14716160e-01\\n1.74129382e-01 -4.79413718e-02 -3.23455818e-02 -3.15818429e-01\\n3.74750853e-01 1.35440528e-01 5.28140143e-02 3.19644034e-01\\n-8.42938304e-01 -1.09258085e-01 -1.88590288e-01 -6.64544106e-02\\n-2.67158985e-01 9.89961624e-03 -2.77759373e-01 -2.08844185e-01\\n-1.38790771e-01 4.15404975e-01 5.56623116e-02 -1.50841763e-02\\n-1.65076584e-01 2.79891521e-01 -3.14373672e-01 3.39975476e-01\\n1.75061300e-01 2.81090587e-01 2.64529854e-01 2.20599443e-01\\n-2.87707150e-01 4.69859570e-01 2.49250501e-01 -3.26760292e-01\\n2.66165137e-01 -1.60747021e-02 3.26063842e-01 -1.10008880e-01\\n1.84474319e-01 3.96711901e-02 -3.22044462e-01 3.55394065e-01\\n2.18067840e-01 -2.12915629e-01 3.70260552e-02 -4.53471430e-02\\n1.65863335e-02 -6.41060174e-02 1.65947020e-01 1.94752991e-01\\n-4.16675478e-01 4.18574452e-01 1.44840509e-01 -2.24833727e-01\\n-8.82302150e-02 -4.61693347e-01 -1.60161436e-01 1.52758211e-01\\n1.95015734e-03 1.63820744e-01 1.07539549e-01 7.15142936e-02\\n2.36166805e-01 -1.06738776e-01 5.16195111e-02 8.20751667e-01\\n-1.39197648e-01 6.94318563e-02 -2.30538666e-01 3.61465096e-01\\n1.60673708e-01 -1.96954340e-01 2.19268352e-01 1.60646111e-01\\n-9.38709080e-02 -8.41007829e-02 -1.73420042e-01 3.82595897e-01\\n4.05185558e-02 -2.65480280e-01 -2.89069951e-01 1.88551471e-01\\n-6.08726814e-02 -2.97211200e-01 5.47578216e-01 -1.34295329e-01\\n6.16129600e-02 -1.78153425e-01 -2.31506862e-03 -2.20270455e-02\\n-1.34399533e-01 1.75396591e-01 1.65797025e-01 6.03906363e-02\\n-2.85318613e-01 -2.52690494e-01 -9.86328870e-02 7.81935453e-03\\n-2.96563983e-01 1.36996150e-01 -1.80051327e-01 -1.38085485e-01\\n2.83705920e-01 7.10104108e-02 -2.61219949e-01 2.21112803e-01\\n-1.29115090e-01 -4.96139228e-02 -7.42911994e-02 2.80305326e-01\\n-2.75938630e-01 2.36028209e-01 -6.36880025e-02 -1.94869161e-01\\n5.58151722e-01 -3.05296965e-02 2.15724230e-01 3.32269296e-02\\n3.27327669e-01 -6.85470849e-02 2.49059379e-01 1.81374013e-01\\n-6.19416952e-01 3.66627216e-01 -1.52457982e-01 -1.06910378e-01\\n1.90078408e-01 -1.44409597e-01 3.54053676e-01 -2.57481694e-01\\n9.33321789e-02 -1.21398635e-01 -2.80310214e-01 -3.45704138e-01\\n-1.78863674e-01 -3.40287685e-02 3.07799697e-01 -3.73375386e-01\\n-9.49840173e-02 2.42244601e-01 -4.94794905e-01 -2.72151947e-01\\n1.81298330e-01 2.77989566e-01 1.07822105e-01 2.12005049e-01\\n-2.67193109e-01 -4.33954716e-01 1.90990478e-01 -4.75398183e-01\\n-1.27627894e-01 9.74676609e-02 -1.63165629e-01 2.17331663e-01\\n-3.00837439e-02 6.02189675e-02 -1.34491056e-01 1.13878042e-01\\n-2.24483415e-01 -2.96750274e-02 1.38052091e-01 -5.24428934e-02\\n1.69936776e-01 1.46973401e-01 -3.14377785e-01 4.33021069e-01\\n-2.36965179e-01 5.27099967e-01 4.71851081e-02 -1.09638453e+00\\n4.55236375e-01 3.79381835e-01 8.58560950e-02 -3.83684218e-01\\n7.20253706e-01 -3.48269701e-01 -1.48789242e-01 5.56652769e-02\\n-4.50578064e-01 -2.59066522e-01 2.37096444e-01 -2.13534772e-01\\n-2.42498323e-01 5.72614312e-01 5.66710308e-02 1.98284373e-01\\n2.63031125e-01 -2.06195593e-01 -9.12628323e-02 1.36586085e-01\\n-1.66414395e-01 -3.14506173e-01 -5.98668218e-01 -1.28232792e-01\\n-6.26697466e-02 -3.74196649e-01 -1.92491770e-01 -4.52266276e-01\\n-1.84717983e-01 -3.07367295e-01 -3.62683386e-02 1.25330046e-01\\n2.41897121e-01 1.36977166e-01 -4.77643497e-02 1.28264099e-01\\n-1.52111486e-01 -5.72612762e-01 3.63987312e-02 1.13705680e-01\\n3.11079651e-01 2.68742919e-01 1.15773961e-01 1.22746974e-01\\n7.63054937e-03 5.74436784e-01 -3.21661830e-01 -2.32951015e-01\\n1.61837205e-01 1.84737727e-01 6.71269372e-02 -6.42310381e-02\\n2.06276909e-01 2.92135149e-01 -1.89365357e-01 7.48000666e-02\\n-1.53152734e-01 -2.54523214e-02 3.12078714e-01 1.21913083e-01\\n-2.51913160e-01 -1.58904463e-01 -1.60549045e-01 1.11034438e-01\\n-5.08551478e-01 -1.89358413e-01 4.03058946e-01 -4.48963158e-02\\n5.95425926e-02 1.54752895e-01 1.74113512e-01 -1.03809685e-03\\n-3.13960373e-01 -2.60382056e-01 2.46689737e-01 1.04118034e-01\\n2.88166776e-02 9.54283178e-02 4.65270355e-02 -5.76100171e-01\\n-3.05432415e+00 -2.47175038e-01 5.52850701e-02 -2.27834955e-01\\n3.77492189e-01 -2.53612757e-01 1.17268167e-01 2.82918308e-02\\n-4.61560547e-01 1.34097055e-01 -4.38342467e-02 -8.94619226e-02\\n2.06331909e-01 1.52879611e-01 1.25963196e-01 1.45902306e-01\\n2.03863084e-02 -2.35907033e-01 2.40214355e-02 3.73251021e-01\\n-1.31283209e-01 -6.99433446e-01 2.30796337e-01 1.09518990e-02\\n2.59216726e-01 2.37477928e-01 -5.91582656e-01 -4.81126606e-02\\n-2.64471263e-01 -2.47499496e-01 1.01105012e-01 -2.92708308e-01\\n-1.52469844e-01 2.34721750e-01 2.34890997e-01 -9.73203182e-02\\n4.88628894e-02 -4.27352488e-01 -1.34496212e-01 -4.66077954e-01\\n1.79880589e-01 -7.87260652e-01 1.50660295e-02 -5.96798584e-02\\n6.47072315e-01 -2.11035937e-01 7.33514801e-02 1.08368084e-01\\n1.49367884e-01 1.55379802e-01 1.87394187e-01 4.70388532e-02\\n-2.93936372e-01 -2.71456659e-01 -4.94870022e-02 -1.80771366e-01\\n4.53548431e-01 4.45369363e-01 -2.40923464e-01 -1.34767517e-02\\n3.70594189e-02 -2.00335830e-01 -6.43863559e-01 -2.02807933e-01\\n-1.23539269e-01 -6.67786300e-02 -6.79483533e-01 -3.58735472e-01\\n-2.19045505e-01 -1.45952150e-01 -1.46569815e-02 6.15537465e-01\\n-3.48911196e-01 -3.35577130e-01 -5.46068773e-02 -6.07149839e-01\\n3.29453588e-01 -1.24562748e-01 -8.70473683e-03 -2.61351585e-01\\n-2.21393973e-01 -2.73619324e-01 1.35207146e-01 1.30115692e-02\\n-7.73050077e-03 -2.94414103e-01 2.72318460e-02 -2.01653138e-01\\n-3.44254613e-01 -5.95703423e-01 4.04787391e-01 1.75976694e-01\\n4.80892420e-01 1.30705416e-01 2.73006618e-01 -4.89520542e-02\\n2.76696801e-01 1.03536181e-01 2.32754163e-02 -4.81830835e-01\\n1.57766137e-02 5.88140637e-02 5.99879384e-01 -2.52358407e-01\\n-4.29520160e-02 -5.48180267e-02 -3.77218783e-01 -8.75121653e-02\\n3.14200521e-01 -1.67970031e-01 1.49244294e-01 -1.78529218e-01\\n2.16544390e-01 -2.99259752e-01 -1.41383275e-01 6.15706965e-02\\n7.34815001e-02 7.03947127e-01 -4.29884121e-02 -3.96385312e-01\\n-1.24017030e-01 5.36005080e-01 -3.76713611e-02 -1.89417601e-02\\n-1.81841284e-01 6.42269477e-02 -3.07847381e-01 3.53685558e-01\\n3.57882828e-02 -9.97645706e-02 -2.46962011e-01 -1.04008161e-01\\n-2.00272858e-01 3.01968783e-01 2.38865972e-01 2.00720623e-01\\n-1.81205310e-02 -3.58551085e-01 -1.51374504e-01 2.64122427e-01\\n1.83315873e-01 4.08937752e-01 2.23230869e-01 -2.08229631e-01\\n9.00992565e-03 2.98316270e-01 -9.84220654e-02 2.84117669e-01\\n-1.24116063e-01 2.50775576e-01 -5.77524364e-01 -2.26405069e-01\\n-2.79812992e-01 -2.81492829e-01 2.09600627e-01 3.59326929e-01\\n2.57427990e-01 -1.04996741e-01 -3.41524445e-02 -5.40265203e-01\\n2.01001272e-01 8.43514800e-02 1.67679042e-01 6.96230531e-02\\n6.64825886e-02 6.20321631e-01 -4.25532088e-03 -1.54301718e-01\\n-2.98099741e-02 5.46312034e-02 -1.25024289e-01 -8.52171183e-02\\n1.97442826e-02 -5.10105968e-01 -1.82496816e-01 4.24987525e-01\\n1.36418283e-01 -1.68541238e-01 -1.99241474e-01 3.47902566e-01\\n1.55603532e-02 -2.35988528e-01 -3.30263436e-01 8.61595385e-03\\n4.40368831e-01 1.14850968e-01 3.01565289e-01 -6.38768554e-01\\n-1.81759242e-02 -4.07677740e-02 1.09443665e-01 3.95688474e-01\\n6.63183406e-02 -7.02548772e-04 -2.40801483e-01 -1.70762584e-01\\n3.43879640e-01 -9.45673212e-02 -3.16042379e-02 5.47040254e-02\\n1.10958137e-01 -1.97015524e-01 -3.66111547e-01 6.79327697e-02\\n1.44685451e-02 -2.40357772e-01 -1.30340569e-02 2.10021287e-01\\n1.03559315e-01 1.30700931e-01 -5.57247877e-01 -1.24307737e-01\\n-1.46306559e-01 2.24174321e-01 -6.62564114e-02 -5.34228146e-01\\n2.08634567e-02 -8.16479474e-02 -6.27481580e-01 2.53940344e-01\\n-6.26832247e-02 -1.54147536e-01 1.66639626e-01 -7.34204501e-02\\n-3.47485095e-01 -1.07499398e-01 1.27088025e-01 1.64875433e-01\\n-2.24140018e-01 -2.92828679e-01 -8.52679312e-02 -9.98834252e-01\\n1.61549687e-01 -6.22524507e-02 -1.03856340e-01 2.35304683e-01\\n7.15738237e-02 -6.71869397e-01 2.24896505e-01 -3.41781080e-01\\n-1.85046613e-01 -4.84870449e-02 -2.47522876e-01 -3.52721840e-01\\n8.70035142e-02 1.01530962e-02 -1.67791694e-01 2.78187692e-01\\n-2.55334944e-01 4.73080397e-01 -1.16868265e-01 5.80164902e-02\\n5.94448075e-02 -2.94115335e-01 1.95320338e-01 -2.80452460e-01\\n-5.00358820e-01 -1.41624987e-01 -4.02969241e-01 -2.75825560e-01\\n-1.25201538e-01 -2.63486445e-01 -1.18998230e-01 9.71369967e-02\\n3.90923709e-01 -8.01141001e-03 -2.27863804e-01 -1.18037961e-01\\n1.22868650e-01 -4.72276628e-01 6.44065142e-02 -5.86490259e-02\\n6.40667975e-02 -1.07901827e-01 3.12192082e-01 1.06208593e-01\\n1.87864840e-01 -3.72850478e-01 4.30174798e-01 -3.68719012e-01\\n-3.95097286e-01 -1.34036019e-01 5.21657765e-02 -1.27120689e-02\\n4.62632090e-01 -4.89726245e-01 -1.92438483e-01 2.91215986e-01\\n4.97106649e-02 5.16386963e-02 2.45956913e-01 -3.00750196e-01\\n-1.33681566e-01 2.08136052e-01 -4.81870770e-01 1.46243244e-01\\n7.36215353e-01 1.17799714e-01 1.85424075e-01 1.53745860e-01\\n1.05588660e-01 1.81233451e-01 5.41279912e-01 -1.00047126e-01\\n-1.53822467e-01 3.76902461e-01 1.02789871e-01 -5.83520770e-01\\n-2.19591543e-01 -8.88781622e-02 -2.07525596e-01 -5.31996012e-01\\n6.70110047e-01 3.42069000e-01 -3.68149310e-01 -1.37957528e-01\\n-2.85643458e-01 -1.78617150e-01 1.69482529e-01 -7.79995769e-02\\n6.32206947e-02 1.73296724e-02 4.28825736e-01 -9.10877436e-02\\n3.78224224e-01 5.39284587e-01 -1.18567228e-01 -3.45023006e-01\\n-8.49296898e-03 2.36933216e-01 4.98025231e-02 3.67129803e-01\\n-9.56572071e-02 3.15325588e-01 -7.26283118e-02 1.76652014e-01\\n-2.04078645e-01 -2.29342114e-02 1.27721339e-01 4.82517369e-02\\n1.11746714e-01 1.26809284e-01 5.67301214e-01 3.77317607e-01\\n3.69036525e-01 3.64863962e-01 3.62920642e-01 2.13109478e-02\\n6.41618848e-01 5.60789168e-01 3.06158721e-01 5.74386567e-02\\n5.98285720e-03 1.43182710e-01 9.94853526e-02 7.05905259e-02\\n3.88389528e-01 3.75024140e-01 7.89907351e-02 8.80754530e-01\\n2.03281358e-01 3.54392767e-01 7.64046788e-01 -5.08702040e-01\\n-2.37442940e-01 5.78153059e-02 4.53920066e-01 -4.18236315e-01\\n1.46451816e-02 1.54308513e-01 -1.66453674e-01 1.74687192e-01\\n-4.32583988e-01 -2.73530126e-01 -4.54448722e-02 1.63447604e-01\\n1.10739008e-01 -1.68307006e-01 -8.80681574e-02 1.73683375e-01\\n-2.05804944e-01 -2.21955836e-01 -4.44325268e-01 -1.61756992e-01\\n-1.70715705e-01 -1.01643704e-01 -9.78280455e-02 -1.24371216e-01\\n-2.97053576e-01 -2.91949153e-01 -4.74195257e-02 -4.72845361e-02\\n3.47535044e-01 -1.54852197e-01 -5.99856228e-02 -1.38944760e-01\\n4.86571610e-01 1.52548760e-01 4.97602046e-01 -6.16845712e-02\\n1.50039569e-01 -3.05339038e-01 -1.92212015e-01 1.41560704e-01\\n1.98608413e-01 5.95956109e-03 -2.04618126e-02 3.66302967e-01\\n-2.24097788e-01 -1.07699960e-01 3.79665568e-02 3.40706855e-01\\n-3.43427092e-01 -6.89847469e-02 -1.09495625e-01 5.90764023e-02\\n-1.95106119e-03 1.25781789e-01 -2.18631774e-01 2.25808974e-02\\n-1.31311983e-01 -3.88595939e-01 2.35820234e-01 -1.12303726e-01\\n-2.89228737e-01 -2.37815902e-02 3.13339174e-01 3.05543602e-01\\n-1.81422740e-01 8.48787278e-03 -2.04124957e-01 1.62539214e-01\\n1.13118701e-01 2.36490965e-01 -1.83568254e-01 -3.13529670e-01\\n-2.87322700e-01 1.42046392e-01 -1.52944729e-01 9.69607458e-02\\n8.79425853e-02 4.77454960e-01 5.50093278e-02 7.58895352e-02\\n5.18808842e-01 -2.17739552e-01 -2.67346710e-01 -4.30566519e-01\\n-1.45898923e-01 -2.89213628e-01 -1.66083410e-01 -1.13029540e-01\\n2.25474715e-01 -2.85954416e-01 -5.95154688e-02 -3.37856412e-01\\n-1.27866745e-01 -3.71786416e-01 -6.93245605e-03 -6.75079301e-02]]',\n", + " \"PDS Life sciences is a leading global provider of software solutions and services dedicated to life science and pharmaceutical preclinical research. Our unique products and outsourced services accelerate the development and regulatory submission of biopharma products. For more than 30 years, we have developed software by scientists, for scientists - a hallmark that is unrivaled in our field. For that reason, eight of the world’s top 10 pharma companies have relied on PDS software, as do industry-leading CROs, chemical companies, universities and regulatory agencies. Over the past several years, PDS has undergone many changes and is now competing in new fast-growth segments of our markets. We are still nimble with a rewarding start-up culture that allows you to make an immediate impact on the business. With business offices in New Jersey, Switzerland and Tokyo, we think globally, but act locally and now we have an exciting opportunity for a Product Specialist located in our Pratteln Basel office. PDS Life Sciences is searching for a motivated person to join a global leader in Preclinical LIMS Software Solutions as a Preclinical Product Specialist. Are you looking for an exciting new opportunity to become a key subject matter expert in the development of preclinical software? Join our team of scientists and software development experts in this unique opportunity. PDS prides itself on its reputation to create solutions For Scientists By Scientists. Job Description: Responsible for a full range of activities which ensure operational effectiveness and excellence in product implementation and optimization with customers.Responsible for creating/maintaining training materialsResponsible for providing first level support to existing customers as requiredResponsible for providing consulting services to customers as requiredAssists the Validation team during the customer’s OQ ProcessAssists with internal acceptance testing (OQ) Assisting with writing Test Scripts Assists with functional specifications development Assists with writing user stories and test specifications Assisting with updates to user manuals and release notes Provides suggestions for product improvement Some domestic travel and infrequent international travel needed Duties as directed by manager(s) Requirements: Degree in life sciences, Biology, Toxicology, Pathology, Animal Science or other related field 1-3 years’ laboratory experience in a preclinical research facility (CRO, pharmaceutical industry)Knowledge of Laboratory Information Management System(s) (LIMS) a plusGxP knowledge a plusHigh level of communication, organization and intercultural skillsGood knowledge of IT technology and IT methodologyMust be fluent in EnglishExcellent writing skillsStrong attention to detailAbility to work in a team and independentlyCustomer service orientation skills a plusAble to travel (approximately 10%... domestic and international) Job Type: Full-time Salary: CHF70,000.00 to CHF80,000.00 /year Experience: Biological Lab: 1 year (Preferred) Education: Bachelor's (Preferred) \",\n", + " '[\"Research\", \"Writing\", \"Service-Orientation\", \"Management\", \"Operations\", \"Consulting\"]',\n", + " '[\"User Story\", \"Life Sciences\", \"PD 5500 Standard\", \"Outsourcing\", \"Animal Science\", \"Industrialization\", \"Activism\", \"Maintainability\", \"Levelling\", \"Business Office Procedures\", \"Toxicology\", \"Productivity Improvement\", \"Localization\", \"Functional Specification\", \"Patentable Subject Matter\", \"Release Notes\", \"Biology\", \"Management Systems\", \"Personalization\", \"Information Management\", \"Laboratory Information Management Systems\", \"Validations\", \"Pharmaceuticals\", \"Pathology\", \"Software Development\", \"Community Organizing\", \"Test Script\", \"Job Descriptions\", \"Acceptance and Commitment Therapy (ACT)\", \"Acceptance Testing\"]',\n", + " \"['English', 'Dutch', 'Luba-Katanga']\"],\n", + " ['51',\n", + " 'data scientist',\n", + " 'Lausanne',\n", + " 'Publishing',\n", + " 'www.frontiersin.org',\n", + " '[[-3.23620260e-01 1.65432483e-01 5.47806978e-01 -9.65909287e-03\\n5.04691005e-01 -1.45443231e-01 -1.68182068e-02 3.73564124e-01\\n-1.41375095e-01 -2.55717307e-01 -1.63371891e-01 -3.02160978e-01\\n-3.07451673e-02 1.00709498e-01 7.07954466e-02 3.89789879e-01\\n2.98010319e-01 7.77123943e-02 -1.99934587e-01 3.57004225e-01\\n2.15718716e-01 1.70266069e-02 4.30273786e-02 7.14776516e-01\\n4.52711970e-01 -2.04108581e-02 -9.44484323e-02 -1.08742341e-03\\n-2.32649595e-01 -2.60220081e-01 3.91138554e-01 6.62056878e-02\\n-4.85408343e-02 -2.89379120e-01 1.45596102e-01 3.25471908e-02\\n-2.81610548e-01 -9.93527398e-02 -5.85513674e-02 1.15260646e-01\\n-3.89131010e-01 -1.89934582e-01 -1.30890161e-01 5.77544682e-02\\n-2.29421124e-01 -3.14038038e-01 -1.00636892e-02 3.17899249e-02\\n7.32482225e-02 2.48574093e-02 -5.81554472e-01 3.34173322e-01\\n-1.95960939e-01 -3.63358319e-01 2.90703595e-01 6.10002398e-01\\n-9.26823169e-03 -4.20875132e-01 -3.95973414e-01 -3.41955006e-01\\n5.40865362e-02 -4.61537801e-02 9.87069756e-02 -2.61458337e-01\\n3.47255349e-01 -1.58766359e-02 -4.24101837e-02 3.69343579e-01\\n-7.52086937e-01 -1.23136498e-01 -1.59443542e-01 -4.50584218e-02\\n-3.62983227e-01 -4.35134433e-02 -2.62905478e-01 -1.15757331e-01\\n-4.09901068e-02 3.70094001e-01 7.49101490e-02 7.64602348e-02\\n-1.53311819e-01 2.60333002e-01 -1.41948298e-01 3.52964729e-01\\n2.48547167e-01 2.87942410e-01 1.60191029e-01 3.21800560e-01\\n-2.95165956e-01 3.67222488e-01 1.03354774e-01 -3.09045851e-01\\n3.03145021e-01 2.54780166e-02 4.78841871e-01 -4.43191603e-02\\n5.89889586e-02 9.58938301e-02 -2.81749189e-01 2.38329083e-01\\n1.68482825e-01 -2.65582353e-01 -8.22274238e-02 -1.49876224e-02\\n-1.50991455e-01 4.43655327e-02 -2.63195671e-03 1.12853512e-01\\n-2.91430414e-01 3.52151752e-01 1.50968745e-01 -1.96673810e-01\\n-7.41392672e-02 -5.65136611e-01 -1.05935276e-01 3.96694914e-02\\n1.20681226e-01 3.01773220e-01 1.32640362e-01 2.21806511e-01\\n1.37880832e-01 -3.48036662e-02 2.37931564e-01 8.56292009e-01\\n2.93570571e-02 6.53645396e-02 -2.25084320e-01 3.63558412e-01\\n1.09175593e-01 -3.85137737e-01 2.54658312e-01 1.23366833e-01\\n2.32598558e-03 -1.46580011e-01 -1.52304113e-01 3.13179225e-01\\n-1.18868135e-01 -2.82121181e-01 -3.27698112e-01 1.47605032e-01\\n-6.81117103e-02 -3.70158851e-01 5.29176652e-01 1.82845294e-02\\n1.76340371e-01 -1.22635946e-01 -6.16876036e-03 -1.58654988e-01\\n-1.32940367e-01 1.99952528e-01 4.54030260e-02 1.69180214e-01\\n-3.41237843e-01 -2.72817850e-01 -1.95173651e-01 2.93573141e-01\\n-3.71046275e-01 1.62922591e-01 -4.96223383e-02 -1.58326417e-01\\n2.79333711e-01 -2.03351248e-02 -3.47462416e-01 2.22208947e-01\\n-1.36852175e-01 -9.27618369e-02 -6.38279319e-02 3.59472275e-01\\n-1.99447125e-01 1.77148879e-01 4.24892968e-03 -1.05568759e-01\\n5.87178290e-01 1.40826046e-01 1.81951404e-01 1.85155850e-02\\n2.76644528e-01 -2.43610218e-02 1.97085261e-01 2.08757252e-01\\n-7.59136677e-01 2.15457231e-01 -1.08531356e-01 -1.84313685e-01\\n5.95834292e-02 -5.55676669e-02 2.91484594e-01 -3.21903884e-01\\n3.24487872e-02 -1.08091742e-01 -3.61806333e-01 -2.40661040e-01\\n-2.61542976e-01 1.81745868e-02 4.38810766e-01 -3.92342150e-01\\n-3.19991335e-02 1.84231162e-01 -4.70170736e-01 -9.95009392e-02\\n5.63114621e-02 1.59401149e-01 1.12422839e-01 2.14885727e-01\\n-1.94653541e-01 -5.30927122e-01 -2.43488438e-02 -3.52199763e-01\\n-4.33190435e-01 7.52772093e-02 -3.96642089e-01 2.91794896e-01\\n2.23210171e-01 6.18438236e-02 -6.18833564e-02 8.95115808e-02\\n-2.41694093e-01 -4.79392968e-02 1.16851941e-01 7.35366717e-03\\n2.67348021e-01 5.27810752e-02 -3.49978626e-01 4.41888094e-01\\n-1.77379161e-01 5.59392571e-01 2.06028372e-01 -8.24701130e-01\\n5.40869832e-01 3.12987328e-01 -3.39220762e-02 -4.07472193e-01\\n6.51117027e-01 -3.14576924e-01 -4.27126288e-02 1.10485256e-01\\n-3.41662019e-01 -3.52510303e-01 3.13591927e-01 -2.83939779e-01\\n-1.98362321e-01 5.65555930e-01 2.03474224e-01 8.24658275e-02\\n3.12163711e-01 -1.33935273e-01 -1.00574270e-01 1.66883096e-01\\n-1.03483379e-01 -3.25571597e-01 -3.55585843e-01 2.20346414e-02\\n-1.27732545e-01 -3.97267580e-01 -1.60839900e-01 -4.21703756e-01\\n-1.15043268e-01 -4.06756043e-01 -7.73856789e-02 3.30611467e-01\\n2.19520569e-01 6.77385852e-02 2.23435462e-04 -9.29842703e-03\\n-8.30927193e-02 -5.18940091e-01 -8.29912797e-02 -4.73280512e-02\\n4.13527489e-01 1.73696131e-01 8.66399705e-02 -2.73247808e-02\\n-9.62332636e-03 6.14185333e-01 -3.32279563e-01 -2.53139704e-01\\n1.73606724e-01 1.17107414e-01 -4.06417623e-03 -1.54564604e-01\\n1.08964033e-02 2.80226052e-01 -2.24829555e-01 7.51984715e-02\\n-1.71627164e-01 1.03015732e-02 2.86375374e-01 8.56194049e-02\\n-2.02701032e-01 -1.79032832e-01 6.79061487e-02 3.15019429e-01\\n-4.58204627e-01 -1.99522644e-01 5.48496723e-01 2.24034607e-01\\n1.19595662e-01 1.05544880e-01 1.62443548e-01 -6.61340579e-02\\n-1.50072068e-01 -2.09361345e-01 2.30658501e-01 9.92927402e-02\\n2.02541411e-01 8.80833492e-02 -5.60785718e-02 -6.23536825e-01\\n-3.16979003e+00 -1.86775967e-01 3.27786654e-02 -1.95791587e-01\\n1.59112796e-01 -1.34312049e-01 5.60030565e-02 -7.23799467e-02\\n-3.76877785e-01 1.02252819e-01 -2.48728991e-01 -1.07845411e-01\\n1.03419885e-01 2.99970329e-01 2.71668851e-01 2.44458169e-01\\n8.91170353e-02 -2.24427491e-01 1.34254806e-02 3.42730939e-01\\n-2.08115786e-01 -5.85654438e-01 1.49542376e-01 1.23668276e-02\\n2.77389765e-01 1.73639148e-01 -2.91748732e-01 -1.50888592e-01\\n-3.11033368e-01 -2.17754006e-01 7.77131924e-03 -2.67796427e-01\\n-1.24385461e-01 2.85731196e-01 2.01798335e-01 -2.31783129e-02\\n6.69709593e-02 -4.03130054e-01 -7.37714395e-02 -3.62459302e-01\\n1.26456887e-01 -5.74353218e-01 -1.72074400e-02 -1.02758668e-01\\n6.97864830e-01 -2.90143967e-01 2.23118752e-01 1.38400659e-01\\n1.14546739e-01 1.45780265e-01 2.23210156e-02 1.90953426e-02\\n-2.73965061e-01 -2.05903128e-01 -1.47767723e-01 -2.31625095e-01\\n5.44678986e-01 4.05652583e-01 -1.63281500e-01 -3.38711776e-03\\n7.64856040e-02 -2.34418094e-01 -3.78105998e-01 -4.55883026e-01\\n-2.23505586e-01 -1.69414908e-01 -7.09790826e-01 -4.93211120e-01\\n-1.01940088e-01 -1.16907962e-01 -9.27609354e-02 4.96109903e-01\\n-2.61199892e-01 -3.33940059e-01 -7.98101351e-02 -4.91935790e-01\\n2.50751138e-01 -1.07392155e-01 4.39548269e-02 -1.50725722e-01\\n-2.48350620e-01 -5.00371099e-01 7.17161447e-02 3.97429839e-02\\n-1.67816907e-01 -3.53487462e-01 2.36469228e-02 -2.57019192e-01\\n-3.42294991e-01 -5.64785004e-01 4.17617738e-01 8.16207826e-02\\n3.14737797e-01 1.33658588e-01 2.77174681e-01 5.47087267e-02\\n2.22186863e-01 -3.56181674e-02 1.21544421e-01 -4.62775767e-01\\n4.07396629e-02 3.81776206e-02 4.66597527e-01 -2.73326010e-01\\n8.92255753e-02 1.10370018e-01 -2.70808786e-01 -1.05110034e-01\\n3.77222836e-01 -1.94731969e-02 2.39385627e-02 -1.38955191e-01\\n3.29614878e-01 -3.33715379e-01 -1.48851782e-01 1.59556806e-01\\n1.64208878e-02 6.29700541e-01 -5.61287999e-02 -3.50058258e-01\\n-2.68224478e-01 4.50883329e-01 -1.00336425e-01 -4.40170243e-02\\n-8.05671811e-02 1.38604850e-01 -2.00660139e-01 9.08940509e-02\\n1.01137301e-02 -2.33601272e-01 -3.21560681e-01 -1.43357188e-01\\n-1.45922512e-01 2.38126561e-01 2.48324037e-01 7.92580843e-02\\n-1.15023106e-01 -4.05751795e-01 -7.42079020e-02 2.24842682e-01\\n2.28087932e-01 3.55925918e-01 2.09924355e-01 -1.98415399e-01\\n-1.05614364e-02 3.22105259e-01 -4.94190343e-02 2.99835086e-01\\n-2.48321414e-01 1.32740393e-01 -5.27489841e-01 -2.69231886e-01\\n-1.85111701e-01 -3.44432294e-01 2.31833458e-01 2.63935804e-01\\n1.10579006e-01 4.91882376e-02 6.23443387e-02 -4.81034815e-01\\n3.15678120e-01 2.88462695e-02 2.64380097e-01 6.44250065e-02\\n2.05427799e-02 5.65230787e-01 -7.78614506e-02 -3.14238369e-02\\n-1.72415018e-01 -4.03944999e-02 -1.51559934e-01 -1.63338393e-01\\n2.08600089e-02 -4.38177109e-01 -1.51188016e-01 3.59754860e-01\\n1.01780027e-01 -2.78949738e-01 -2.53652662e-01 2.68811464e-01\\n3.65119725e-02 -3.48602325e-01 -1.62747353e-01 8.90160352e-02\\n3.56554210e-01 1.62038684e-01 3.01494122e-01 -4.84773219e-01\\n6.85238242e-02 -6.25320151e-03 -7.91508257e-02 5.12995362e-01\\n6.39363676e-02 -4.30298299e-02 -1.91633880e-01 -2.03577459e-01\\n3.82396996e-01 -6.47144243e-02 -6.45050704e-02 -1.96774676e-02\\n7.36241043e-02 -2.87759721e-01 -4.20034260e-01 3.51770334e-02\\n1.99882556e-02 -2.94351697e-01 8.98229033e-02 4.82170619e-02\\n-1.59686320e-02 1.40773281e-01 -5.86805582e-01 -2.72610754e-01\\n-2.28592545e-01 -5.70670441e-02 4.86582816e-02 -4.17476356e-01\\n-4.54618596e-02 -9.49505195e-02 -5.97147703e-01 2.08436444e-01\\n-1.69567138e-01 -5.27002029e-02 1.33236900e-01 -4.33763936e-02\\n-3.48582953e-01 -4.62219752e-02 2.54445285e-01 2.16704980e-01\\n-2.44743451e-01 -2.42058292e-01 1.46664798e-01 -1.01773190e+00\\n9.09140110e-02 4.72458079e-03 -8.56475532e-02 1.47448480e-01\\n-5.55325150e-02 -6.62070334e-01 9.24239159e-02 -4.22755748e-01\\n-4.88925353e-02 -4.46581542e-02 -2.82679111e-01 -3.84262949e-01\\n1.18092313e-01 1.21551203e-02 -2.58042753e-01 4.26241398e-01\\n-3.45735073e-01 2.46939600e-01 -1.81680307e-01 6.53380826e-02\\n8.45739245e-03 -2.34786540e-01 8.29503685e-02 -2.74647266e-01\\n-3.75164598e-01 -1.10909812e-01 -2.79862106e-01 -1.91920131e-01\\n-9.69739817e-03 -1.66262656e-01 -1.92562908e-01 6.84735999e-02\\n3.46227348e-01 8.26583058e-02 -6.86542392e-02 -2.63727039e-01\\n4.00895029e-02 -3.58503640e-01 7.16762617e-02 -1.71385556e-01\\n-5.71516566e-02 -5.93046844e-02 1.63507596e-01 1.14501871e-01\\n1.63626790e-01 -3.44101429e-01 3.69428158e-01 -3.32228243e-01\\n-3.41807604e-01 -4.70149145e-02 1.24053106e-01 1.73103996e-02\\n3.66282463e-01 -4.41138268e-01 1.14867128e-02 4.13039237e-01\\n1.16150424e-01 1.06417485e-01 3.77014160e-01 -1.29735276e-01\\n-1.78737327e-01 2.60883749e-01 -4.02148306e-01 -4.70731333e-02\\n7.59097099e-01 1.21579580e-01 1.41547620e-02 1.78122506e-01\\n9.43285972e-02 2.64794469e-01 5.11714339e-01 -8.38906690e-02\\n-9.95272025e-02 2.88725525e-01 1.03639916e-01 -5.53333580e-01\\n-1.25835225e-01 -5.79989105e-02 -1.42845571e-01 -3.06955844e-01\\n6.47354007e-01 3.50905269e-01 -3.84233594e-01 -2.29736000e-01\\n-6.76969066e-02 -1.39093533e-01 2.47056156e-01 -6.59322143e-02\\n4.31413651e-02 -8.25019926e-03 4.83063161e-01 -1.31079063e-01\\n1.61263391e-01 4.95075524e-01 -1.47687972e-01 -2.07649529e-01\\n-6.84743375e-02 1.10798985e-01 4.16051187e-02 4.27471995e-01\\n-1.97387636e-01 3.78600478e-01 3.55290212e-02 2.99282577e-02\\n-2.44724900e-02 9.79919434e-02 1.48927033e-01 6.68599308e-02\\n2.78640658e-01 1.18765578e-01 3.35627645e-01 4.37491685e-01\\n2.62404740e-01 4.69391942e-01 2.79026598e-01 7.93944374e-02\\n4.31390285e-01 5.15699089e-01 4.75666046e-01 1.37933478e-01\\n1.56198721e-03 -8.99512507e-03 1.03070743e-01 -1.07463121e-01\\n3.79752696e-01 2.34324723e-01 1.32710025e-01 8.24950755e-01\\n3.74107659e-01 3.85940552e-01 6.63528323e-01 -6.60792887e-01\\n-3.61078799e-01 9.60889459e-02 5.44209838e-01 -3.67819369e-01\\n-2.31635757e-03 2.98896432e-01 -1.92460984e-01 2.55515188e-01\\n-4.86708462e-01 -2.34412253e-01 -8.72043669e-02 -4.91743758e-02\\n-7.85126090e-02 -1.37448713e-01 -2.38438129e-01 1.44272596e-01\\n-8.27772766e-02 -1.57265827e-01 -5.26360512e-01 -1.30208641e-01\\n-1.85009658e-01 -1.06008559e-01 -1.01573907e-01 -1.02737948e-01\\n-2.55844206e-01 -2.90049255e-01 -1.27558947e-01 -2.42334288e-02\\n2.19865948e-01 -2.26348996e-01 -6.82573169e-02 -2.01967090e-01\\n3.08085918e-01 1.86506599e-01 5.08746564e-01 -1.78434774e-02\\n1.28120676e-01 -2.96473026e-01 -2.03225017e-01 7.84814656e-02\\n2.32179135e-01 8.51059109e-02 4.56133112e-02 3.44617993e-01\\n-1.99825615e-01 -1.26985595e-01 1.62222400e-01 3.74641240e-01\\n-4.23205227e-01 1.84925385e-02 -7.16514513e-03 1.56717062e-01\\n2.43495256e-02 2.22087264e-01 -2.51316786e-01 3.46892476e-02\\n-1.84435457e-01 -5.49358368e-01 2.81348139e-01 -9.92960781e-02\\n-1.12073302e-01 1.65197462e-01 2.24849612e-01 1.85496926e-01\\n-2.19552204e-01 -7.77656883e-02 -8.10285583e-02 2.21970424e-01\\n4.88741249e-02 2.54761010e-01 -1.95738494e-01 -2.89558232e-01\\n-2.18244046e-01 2.14415789e-01 -2.03575104e-01 2.08239257e-01\\n-5.54334521e-02 3.71965170e-01 5.47456518e-02 1.24660820e-01\\n3.69822264e-01 7.83464909e-02 -1.84343308e-01 -1.90978542e-01\\n-2.50606656e-01 -3.30570877e-01 1.16118919e-02 3.65510583e-02\\n1.78353846e-01 -3.13494980e-01 1.52242184e-02 -2.52051294e-01\\n-1.78945258e-01 -3.51709485e-01 3.80060077e-03 7.93921202e-03]]',\n", + " \"Frontiers is a fast-growing open-access academic publisher with headquarters in Lausanne Switzerland, employing over 500 people. In the last 3 years, Frontiers has massively invested in data acquisition and modeling, leading to the deployment of sophisticated data products to further accelerate its business. We are looking for a Data Scientist to join our data science team in Lausanne. Your main focus will be developing state-of-the-art machine learning algorithms for a variety of applications (e.g. computer vision, NLP, recommendations systems) to improve our editorial workflow. You will contribute to the “full-stack” of data science, from experimentation to deployment in production. You will work together with product owners, machine-learning engineers and data engineers in order to build machine learning products that can advance Frontiers’ business. We are a diverse team of people from over 30 different countries with offices in Lausanne, Madrid, London, Seattle and Beijing. We are smart, hungry, and fast moving; operating in small teams, with freedom for independent work and fast decision making. Responsibilities Development, optimization and evaluation of machine learning models and pipelines Technological review of data science solutions and communication to management Proactive identification of opportunities for potential products within Frontiers Requirements Degree in Computer Science, Statistics or similar Demonstrable experience in data modeling and machine learning prototype development Proficiency in Python, including its scientific/statistical/NLP/Computer vision packages (e.g. NumPy, SciPy, scikit-learn, spaCy, OpenCV) Experience with SQL Experience with deep learning frameworks (e.g. PyTorch, Keras, Tensorflow) Willingness to share and adopt best work practices on a common codebase Fluency in English and strong communication skills Familiarity with big data platforms (e.g. Spark, Azure Databricks) is a plus Familiarity with deployment tools (e.g. Docker, Flask) is a plus Expertise in the field of scientometrics is a plus Benefits: 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " '[\"Verbal Communication Skills\", \"Proactivity\", \"Management\", \"Communications\", \"Operations\", \"Decision Making\", \"Socialization\"]',\n", + " '[\"Codebase\", \"Computer Science\", \"Data Modeling\", \"Statistics\", \"OpenCV\", \"Machine Learning\", \"Open Access\", \"Scikit-learn (Machine Learning Library)\", \"Recommender Systems\", \"Data Engineering\", \"Prototype (Manufacturing)\", \"NumPy\", \"Scheme (Programming Language)\", \"Activism\", \"Computer Vision\", \"Python (Programming Language)\", \"Yoga\", \"E (Programming Language)\", \"Experimentation\", \"Flask (Web Framework)\", \"Keras (Neural Network Library)\", \"Pipelining\", \"Investments\", \"Machine Learning Methods\", \"Professional Development Programs\", \"Data Science\", \"SpaCy (NLP Software)\", \"Docker (Software)\", \"Machine Learning Algorithms\", \"TensorFlow\", \"Deep Learning\", \"Big Data\", \"Data Acquisition\", \"Azure Databricks\", \"E-Tools\", \"Data Management Platforms\", \"SciPy\", \"PyTorch (Machine Learning Library)\", \"Workflows\", \"SQL (Programming Language)\", \"Adoptions\"]',\n", + " \"['English', 'Marshallese', 'Flemish', 'Malay']\"],\n", + " ['75',\n", + " 'software back-end engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.71552032e-01 2.91270584e-01 3.82932365e-01 -6.69109868e-03\\n3.55228841e-01 -2.36295044e-01 2.26878119e-03 3.73446047e-01\\n-7.57382885e-02 -2.04707831e-01 -3.22159790e-02 -2.29785040e-01\\n-3.30118656e-01 -6.83388487e-02 1.30850390e-01 4.15461659e-01\\n2.63428152e-01 1.37489960e-01 -2.57047325e-01 3.84930313e-01\\n2.22024724e-01 -7.94562511e-03 -2.06433833e-01 6.13091886e-01\\n4.15168166e-01 6.67720009e-03 -1.12058461e-01 7.38009950e-03\\n-3.43387604e-01 -2.87937373e-01 3.34174991e-01 7.63941417e-03\\n-1.57293066e-01 -3.32568496e-01 5.75951636e-02 9.28215086e-02\\n-1.49799198e-01 8.00929070e-02 1.27713457e-01 1.74960107e-01\\n-3.93162608e-01 -3.42083246e-01 1.08727805e-01 8.67118537e-02\\n-1.47588775e-01 -1.52126253e-01 2.10592359e-01 9.10648331e-02\\n-2.10765786e-02 -3.92282307e-02 -6.59780800e-01 3.43442112e-01\\n-8.31183717e-02 -2.07812771e-01 2.16222495e-01 4.91686881e-01\\n4.11508940e-02 -5.77887833e-01 -3.88974547e-01 -2.97275513e-01\\n2.31454279e-02 -1.32889286e-01 3.95712890e-02 -1.05743386e-01\\n3.91338438e-01 -1.82317849e-02 -4.78573702e-02 4.16116089e-01\\n-8.47215474e-01 -6.76593408e-02 -1.85629666e-01 -4.92557592e-04\\n-4.70055312e-01 5.79526927e-03 -2.32034683e-01 -1.14024647e-01\\n-3.29488441e-02 3.36776853e-01 -1.81190353e-02 2.23107822e-02\\n-1.55476764e-01 3.64888161e-01 -2.63778642e-02 2.41699785e-01\\n4.27926391e-01 1.31522655e-01 2.00191230e-01 2.82205403e-01\\n-3.44663799e-01 3.55268836e-01 1.06206812e-01 -2.61881053e-01\\n2.20112368e-01 6.26756251e-02 5.29973447e-01 6.86371550e-02\\n-5.19335903e-02 2.03620479e-01 -2.35724568e-01 2.06270605e-01\\n4.91508283e-02 -4.36996609e-01 1.66943334e-02 4.89583462e-02\\n-2.12178469e-01 5.97290578e-04 -6.27001747e-02 2.48238236e-01\\n-2.20404372e-01 4.37218487e-01 3.19672555e-01 -1.38408870e-01\\n-3.07972301e-02 -5.30560970e-01 -1.10544503e-01 -5.11436462e-02\\n-1.35645494e-01 1.19996652e-01 2.81457543e-01 4.55717333e-02\\n2.29059979e-01 6.89450949e-02 1.90196216e-01 8.30775797e-01\\n-4.81531629e-03 1.43571213e-01 -1.09598301e-01 3.17951143e-01\\n2.34613374e-01 -2.92001992e-01 2.36804947e-01 3.17300707e-01\\n1.80220842e-01 -1.24423750e-01 -2.22232983e-01 1.42850056e-01\\n-2.20663503e-01 -1.41652822e-01 -3.27037811e-01 2.30795220e-02\\n-2.36305907e-01 -3.40515554e-01 4.23087716e-01 1.79520994e-01\\n3.51594478e-01 5.37443794e-02 9.51535162e-03 -1.89058054e-02\\n-1.16214804e-01 4.00311351e-01 -5.94490506e-02 3.61276656e-01\\n-3.22990745e-01 -1.89081177e-01 -1.81312338e-01 2.26882532e-01\\n-3.92700918e-02 6.78772926e-02 -8.64418522e-02 -1.64703727e-01\\n3.33705008e-01 6.17516739e-03 -3.46669644e-01 3.09836566e-01\\n4.64579090e-03 -2.21798107e-01 -2.48315468e-01 2.84495652e-01\\n1.46735425e-03 1.85809314e-01 4.42082658e-02 -2.35127211e-01\\n5.95170021e-01 2.13921338e-01 1.51697561e-01 -1.10353552e-01\\n3.08895916e-01 -2.26111159e-01 3.89481217e-01 1.00061595e-01\\n-5.22963941e-01 3.20854336e-01 3.63583281e-03 -9.48745906e-02\\n-6.19910732e-02 -6.23289542e-03 3.94909829e-01 -4.06044781e-01\\n5.53050917e-03 -1.39790267e-01 -4.68294382e-01 -2.78005540e-01\\n-4.05888945e-01 8.81420448e-02 4.97142404e-01 -2.70147741e-01\\n-1.03628926e-01 2.27419496e-01 -4.37061489e-01 -1.60997108e-01\\n2.11786717e-01 5.25522418e-02 3.59879546e-02 5.48441522e-02\\n-1.07693158e-01 -5.52978516e-01 -3.83146703e-02 -4.12344992e-01\\n-4.95637387e-01 -3.90525423e-02 -2.60240853e-01 2.45997369e-01\\n6.05285913e-02 4.61989269e-02 -2.68846571e-01 1.62094191e-01\\n-3.56144667e-01 -4.94657271e-02 1.77361831e-01 8.39198604e-02\\n7.48449983e-03 -4.85855900e-02 -3.68663698e-01 3.33473414e-01\\n-3.12864661e-01 6.86015606e-01 1.62761614e-01 -8.00490975e-01\\n5.09792209e-01 2.72990912e-01 9.67471153e-02 -4.08024341e-01\\n3.85270149e-01 -3.59974176e-01 2.11722385e-02 1.32646307e-01\\n-2.51146883e-01 -2.08991200e-01 3.66078168e-01 -2.22752526e-01\\n-2.28856921e-01 5.99907577e-01 1.60703599e-01 -1.00016877e-01\\n2.43155837e-01 -3.12022746e-01 4.54199240e-02 7.11110905e-02\\n-4.94847409e-02 -2.09228575e-01 -3.13219726e-01 9.92925763e-02\\n-5.45884483e-02 -5.07564366e-01 -1.58324882e-01 -2.00389817e-01\\n-2.44116247e-01 -4.81824845e-01 -2.66392827e-01 4.89725292e-01\\n1.97891027e-01 1.73390254e-01 2.32866406e-02 2.11820845e-02\\n-2.95376331e-02 -6.54248714e-01 -3.60433422e-02 -1.55964505e-03\\n5.41053236e-01 2.92158574e-01 9.50837657e-02 -2.00500414e-01\\n5.22423442e-03 5.12299895e-01 -3.55726033e-01 -4.05372113e-01\\n1.20549180e-01 1.05580322e-01 -7.22159371e-02 -2.10635707e-01\\n1.00136381e-02 4.09225345e-01 -1.87066749e-01 1.82405710e-02\\n-2.51781464e-01 -4.46655117e-02 3.96122158e-01 -3.20786759e-02\\n-3.65153044e-01 -1.97646201e-01 2.50058211e-02 3.15762997e-01\\n-4.66854125e-01 -1.97033182e-01 5.36266327e-01 3.61193776e-01\\n2.29305580e-01 8.84390697e-02 1.61574215e-01 -6.51850998e-02\\n-1.32268608e-01 -3.56735647e-01 1.42277256e-01 1.72209576e-01\\n9.17599201e-02 1.47943720e-02 -1.60055235e-01 -6.15658522e-01\\n-3.21531630e+00 -2.12728217e-01 1.22804336e-01 -2.98083454e-01\\n2.13541210e-01 -3.50307524e-02 -9.24410447e-02 -4.93167713e-02\\n-2.67344326e-01 1.39072552e-01 -2.37250715e-01 -1.90550774e-01\\n1.06130071e-01 2.89520502e-01 1.82777897e-01 2.16425985e-01\\n1.48011312e-01 -3.38041574e-01 -1.27020434e-01 4.07761693e-01\\n-3.02785262e-02 -5.47685266e-01 1.55806541e-01 -2.80483644e-02\\n2.99305737e-01 2.25676537e-01 -3.96532953e-01 -1.09443136e-01\\n-1.26231849e-01 -2.47124657e-01 9.73018538e-03 -2.28223816e-01\\n-1.61810681e-01 3.40885431e-01 2.88150832e-03 -8.12282115e-02\\n6.85799941e-02 -3.54570776e-01 -1.27157778e-01 -4.48255777e-01\\n3.03039718e-02 -5.81036568e-01 1.05025560e-01 -2.21932739e-01\\n6.88779414e-01 -2.38863349e-01 1.40365764e-01 1.66100726e-01\\n1.89708382e-01 1.54716283e-01 -1.99603364e-01 3.39167267e-02\\n-3.83035690e-01 -2.34601557e-01 -6.61461800e-02 -1.97902307e-01\\n4.41991895e-01 5.26856661e-01 -1.59432009e-01 -1.15105910e-02\\n6.83370307e-02 -4.25648957e-01 -3.10858637e-01 -4.61101264e-01\\n-1.10442527e-01 -1.97666124e-01 -7.28578150e-01 -4.36597466e-01\\n-1.48746774e-01 -1.11884661e-01 -1.67722151e-01 5.20081401e-01\\n-4.28153574e-01 -3.76730144e-01 1.77470669e-01 -6.19699836e-01\\n2.83889603e-02 -2.09998652e-01 1.58616647e-01 -1.32310525e-01\\n-2.86271602e-01 -5.62087953e-01 1.07411735e-01 -6.34800494e-02\\n-2.95787632e-01 -2.19763026e-01 -2.46233828e-02 -2.41134852e-01\\n-2.13767067e-01 -4.15614277e-01 4.44184095e-01 3.52122486e-02\\n3.48372221e-01 1.15963683e-01 2.33315155e-01 1.90185934e-01\\n3.27564895e-01 -1.04253747e-01 1.51733905e-01 -3.84352356e-01\\n1.77130848e-01 5.07899560e-02 5.77076316e-01 -3.53925884e-01\\n3.07852533e-02 1.02570504e-01 -3.12118649e-01 -6.47103712e-02\\n4.78083432e-01 1.02319084e-01 -7.60655850e-02 -2.71291705e-04\\n3.63896132e-01 -4.82758850e-01 -2.48481452e-01 2.63567328e-01\\n5.22926860e-02 5.45598626e-01 -7.35057378e-03 -4.49981332e-01\\n-2.76595652e-01 4.24551576e-01 -7.38812685e-02 -7.87267014e-02\\n-9.80214626e-02 7.38268495e-02 -9.36382562e-02 1.02683939e-01\\n1.34772748e-01 -1.73409685e-01 -2.71898299e-01 -5.14883772e-02\\n-1.07444510e-01 1.02417774e-01 2.56944835e-01 -1.68367010e-02\\n-7.96495080e-02 -2.56493777e-01 -1.84047312e-01 9.48862806e-02\\n1.70557544e-01 2.59262651e-01 1.08699098e-01 -2.05751419e-01\\n4.59911749e-02 2.83028573e-01 -9.88159180e-02 1.23980112e-01\\n-2.19104975e-01 6.04601689e-02 -5.67805111e-01 -9.60743502e-02\\n-1.41311049e-01 -3.29733670e-01 1.67957515e-01 2.87787825e-01\\n1.22639768e-01 7.49320388e-02 1.90897379e-02 -5.88104963e-01\\n4.85986233e-01 3.86591405e-02 1.84442759e-01 1.57832965e-01\\n8.49223733e-02 3.86732548e-01 5.59855625e-02 -2.46757865e-02\\n-2.88682759e-01 -7.09388852e-02 -2.12403029e-01 -2.41041854e-01\\n8.88784826e-02 -3.76955807e-01 -1.01718135e-01 4.93554741e-01\\n1.21331379e-01 -2.55023152e-01 -2.16292471e-01 3.44459981e-01\\n1.91898480e-01 -2.48215914e-01 -1.69099540e-01 -2.30740774e-02\\n1.64175734e-01 8.49669054e-02 2.47845650e-01 -2.99475521e-01\\n-1.13549232e-01 -3.72391082e-02 -9.62547436e-02 4.02917773e-01\\n1.77824914e-01 -5.58110476e-02 -2.50293285e-01 -1.96637750e-01\\n4.55981255e-01 -5.52653037e-02 -9.05464590e-02 -1.80311352e-01\\n1.19824909e-01 -1.72574267e-01 -4.25881386e-01 -7.99653679e-03\\n-2.82678157e-02 -1.03793480e-01 8.86163563e-02 -8.37067794e-03\\n4.46492061e-02 5.08746058e-02 -2.72957027e-01 -2.69796610e-01\\n-3.08599532e-01 -2.72410512e-01 1.09905988e-01 -3.47291589e-01\\n-5.94342500e-02 1.25488238e-02 -4.83871609e-01 1.98036402e-01\\n-4.84319150e-01 -3.25461216e-02 8.49067494e-02 1.88526034e-01\\n-4.10423994e-01 -8.27222466e-02 5.83636202e-02 1.80127323e-01\\n-3.97754490e-01 -3.04423094e-01 7.42776021e-02 -8.80911291e-01\\n2.44409680e-01 1.25364274e-01 -3.83193344e-02 -6.24485426e-02\\n1.27528906e-02 -6.39937639e-01 1.18093662e-01 -4.30548936e-01\\n1.36846855e-01 2.44638212e-02 -1.14779845e-01 -3.13872814e-01\\n9.81192812e-02 -3.01212609e-01 -3.76202196e-01 3.32452834e-01\\n-4.69170123e-01 3.62234920e-01 7.22761452e-02 3.16124111e-02\\n1.70641560e-02 -3.60128194e-01 1.34400517e-01 -3.56733531e-01\\n-4.46172118e-01 -2.00980604e-01 -3.27178180e-01 -1.92323342e-01\\n-2.00275946e-02 -1.21833265e-01 -2.67280459e-01 1.20325729e-01\\n2.30594710e-01 1.47440016e-01 -8.54876861e-02 -2.68745542e-01\\n1.25888065e-01 -4.56336677e-01 -9.20768827e-02 -2.98691243e-01\\n-3.92760225e-02 -7.81482235e-02 1.98152348e-01 -1.35454759e-01\\n-6.43529138e-03 -3.14422220e-01 4.48826969e-01 -3.90015244e-01\\n-2.53161818e-01 -5.69062717e-02 8.35730731e-02 -3.96893024e-02\\n7.21535310e-02 -6.21991098e-01 1.28632396e-01 3.00864995e-01\\n4.32584248e-02 8.93807262e-02 1.70158774e-01 4.39386666e-02\\n-1.15548633e-01 2.51294792e-01 -5.33888400e-01 7.29920790e-02\\n7.34216094e-01 1.88444138e-01 -4.53827903e-02 2.05532685e-01\\n1.80256173e-01 3.46677691e-01 6.25255048e-01 -1.58300735e-02\\n-6.36261851e-02 1.95396304e-01 -8.11186060e-03 -5.56946039e-01\\n-7.40337968e-02 -2.21901406e-02 -1.26143485e-01 -2.40240976e-01\\n6.87060058e-01 4.04825062e-01 -4.13822025e-01 -2.91439056e-01\\n3.61502692e-02 -9.95048881e-02 1.95578024e-01 -5.24000861e-02\\n4.81917225e-02 -1.43123582e-01 6.63339198e-01 2.29177531e-02\\n2.12729827e-01 5.21273911e-01 -2.16799572e-01 -3.60699326e-01\\n-1.31314471e-01 1.21853605e-01 1.46436349e-01 4.64680225e-01\\n-9.96639132e-02 1.42780274e-01 -1.70964241e-01 -9.87535343e-03\\n5.24808615e-02 3.65480453e-01 1.88426703e-01 5.98822944e-02\\n2.25514665e-01 2.62132864e-02 2.09612682e-01 4.40072298e-01\\n1.51625708e-01 5.62719107e-01 2.43154541e-01 9.69170108e-02\\n2.98865467e-01 5.84474385e-01 4.25144553e-01 1.06067978e-01\\n4.63227916e-04 1.30929381e-01 1.26784027e-01 -1.55534642e-02\\n5.67120492e-01 3.01957577e-01 3.11675012e-01 8.11192989e-01\\n3.56013745e-01 3.20000678e-01 8.16168189e-01 -6.44952953e-01\\n-4.14494336e-01 1.56656414e-01 5.79559267e-01 -8.77263844e-02\\n-1.00557365e-01 2.27869898e-01 -3.03167403e-01 2.77273148e-01\\n-4.44567323e-01 -4.58748937e-02 -7.66223716e-03 5.48736602e-02\\n1.57649234e-01 2.79718284e-02 -1.81998238e-01 1.28152013e-01\\n-1.78937778e-01 -2.04069078e-01 -3.17970604e-01 -1.29812643e-01\\n-2.28384390e-01 -8.92306194e-02 -3.68082039e-02 -1.11019917e-01\\n-1.62650570e-01 -4.25846338e-01 -1.39929235e-01 -6.24607392e-02\\n2.56200671e-01 -1.11240223e-01 -5.44522069e-02 -1.22756742e-01\\n1.21525697e-01 3.49149644e-01 5.09233117e-01 -7.22431093e-02\\n2.27792561e-03 -8.86761472e-02 -3.47578973e-01 9.58653316e-02\\n1.05713233e-02 5.99187315e-02 1.71711832e-01 3.97532582e-01\\n-3.25093776e-01 3.96073759e-02 7.60146305e-02 2.94799089e-01\\n-3.76254261e-01 -1.27146795e-01 -6.88758567e-02 2.37431064e-01\\n3.66044864e-02 1.65688723e-01 -2.88238704e-01 1.48570761e-01\\n-2.71678150e-01 -4.97985840e-01 3.86771530e-01 -8.33091810e-02\\n-2.14117393e-01 3.84571582e-01 2.27011263e-01 2.31966868e-01\\n-2.88752824e-01 -1.02611370e-01 3.28605585e-02 3.17585021e-01\\n3.31836864e-02 4.34862018e-01 -6.68492541e-02 -1.53409272e-01\\n-2.56073743e-01 3.44886363e-01 -1.47571176e-01 5.51983938e-02\\n-1.33935079e-01 3.75227064e-01 -6.68831393e-02 6.00299649e-02\\n2.49299124e-01 -3.56536247e-02 -2.53164083e-01 -2.66369313e-01\\n-3.13599885e-01 -2.52270013e-01 1.04922302e-01 8.08849111e-02\\n1.73435137e-01 -3.68906528e-01 -6.80530630e-03 -9.99413431e-02\\n-1.09519497e-01 -1.98148310e-01 -1.26212746e-01 1.66497573e-01]]',\n", + " 'Job Informationen Responsibilities: - Design and enhance an intuitive, easy-to-use API (used by our own front-end and by third-party applications) - Collaborate closely with fellow engineers, data scientists, and business people - Contribute your ideas to our product development and system architecture Requirements: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with web development, API design, and third-party integration - Advanced knowledge of relational databases - Some experience with the technologies we’re using is a plus: - Python, Django, Flask, SQLAlchemy, Pytest - PostgreSQL, PostGIS - JavaScript, Angular, HTML5, CSS3, Bootstrap - Git, Bitbucket, CircleCI - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Are comfortable working in English and German; you have a great read, good spoken command of it. Benötigte Skills Englisch JavaScript Angular HTML5 CSS3 Bootstrap PostgreSQL Python',\n", + " '[\"Collaboration\", \"Integration\"]',\n", + " '[\"Bitbucket\", \"Control Systems\", \"MSC Software\", \"Test-Driven Development (TDD)\", \"Agility\", \"Circleci\", \"API Design\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Data Engineering\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"HTML5\", \"Systems Architecture\", \"Web Development\", \"Flask (Web Framework)\", \"Software Engineering\", \"Django (Web Framework)\", \"Object-Oriented Programming (OOP)\", \"Bootstrap (Front-End Framework)\", \"JavaScript (Programming Language)\", \"SQLAlchemy\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Structures\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Relational Databases\", \"Algorithms\", \"Git Flow\", \"Application Programming Interface (API)\", \"Agile Product Development\"]',\n", + " \"['English']\"],\n", + " ['57',\n", + " 'java software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.57583886e-01 2.24278361e-01 6.10608578e-01 -1.32473692e-01\\n5.40641129e-01 -2.66387910e-01 8.89475271e-03 4.58861977e-01\\n-1.72101825e-01 -3.97874653e-01 -8.91604796e-02 -2.91676521e-01\\n-8.50128308e-02 1.08348310e-01 1.90760925e-01 3.06241989e-01\\n2.47287810e-01 1.53054461e-01 -1.96567520e-01 3.35067272e-01\\n1.45332381e-01 -1.12508059e-01 -7.27547472e-03 7.02277780e-01\\n4.61279154e-01 2.71470379e-02 -1.81327716e-01 8.36401954e-02\\n-2.35679656e-01 -3.43126655e-01 4.10136104e-01 5.15991859e-02\\n-1.31657824e-01 -2.32896119e-01 1.05538338e-01 6.84699789e-02\\n-2.18084857e-01 -3.67332511e-02 -2.30334215e-02 2.25426018e-01\\n-5.01278996e-01 -1.63770318e-01 1.30645633e-01 6.71180561e-02\\n-1.26623824e-01 -2.61265814e-01 6.97741583e-02 -1.47142988e-02\\n1.72037661e-01 -2.97129825e-02 -6.49174213e-01 3.30680430e-01\\n-1.55511528e-01 -2.63963342e-01 2.68973827e-01 4.72108305e-01\\n-4.33117971e-02 -4.72319245e-01 -3.66739392e-01 -3.31185967e-01\\n2.78378241e-02 -7.84204528e-02 6.00680336e-02 -2.67986476e-01\\n3.97579104e-01 7.72539079e-02 -2.74479538e-02 5.11141241e-01\\n-8.47846448e-01 1.67120546e-02 -1.65963203e-01 -2.01355200e-02\\n-2.79158711e-01 -4.66028079e-02 -1.80689424e-01 -1.19035348e-01\\n-1.13500163e-01 4.33825254e-01 4.05250527e-02 1.67095691e-01\\n-1.50328681e-01 3.01293820e-01 -1.80330515e-01 2.73952365e-01\\n2.92767763e-01 3.08838934e-01 1.68060079e-01 2.75948644e-01\\n-4.49267596e-01 3.06172073e-01 1.29521906e-01 -2.80103236e-01\\n3.08810920e-01 1.29945800e-01 4.92417008e-01 2.91899834e-02\\n1.26032025e-01 1.16703376e-01 -2.09692717e-01 2.45438933e-01\\n3.06585014e-01 -2.21688688e-01 -1.63578391e-02 -7.32325576e-03\\n-1.04856305e-01 9.18223113e-02 -5.71673140e-02 2.61083424e-01\\n-2.53644526e-01 5.49844742e-01 6.22525327e-02 -1.51834682e-01\\n-6.30524307e-02 -6.14064991e-01 -7.06819668e-02 9.67485309e-02\\n6.90301135e-03 2.34434962e-01 2.93787748e-01 2.27627635e-01\\n2.80523807e-01 1.67687774e-01 1.23844877e-01 8.71379435e-01\\n-1.82832405e-01 9.04105231e-02 -2.78920680e-01 3.73587191e-01\\n1.80734247e-01 -2.07606792e-01 2.95285702e-01 2.73443729e-01\\n1.04889244e-01 -8.28641951e-02 -1.67222515e-01 3.88706326e-01\\n-3.12034157e-03 -1.65013686e-01 -2.57144272e-01 6.45506606e-02\\n-3.01792145e-01 -5.02516091e-01 5.44718802e-01 6.26810715e-02\\n2.46172652e-01 8.28823298e-02 5.09679615e-02 9.72435251e-03\\n-1.11060306e-01 2.47699976e-01 -9.23224241e-02 2.67207742e-01\\n-2.26901218e-01 -1.86406955e-01 -3.44459444e-01 2.10952193e-01\\n-1.94614425e-01 1.52743965e-01 7.67313689e-03 -1.09751500e-01\\n3.48649651e-01 5.49802324e-03 -2.35884979e-01 3.92635882e-01\\n-1.60011068e-01 -7.97309354e-02 -8.07939023e-02 1.72748089e-01\\n-7.33570755e-02 2.08269522e-01 -5.12530096e-02 -1.99508652e-01\\n5.30699611e-01 2.09235191e-01 1.67233557e-01 -1.24382891e-03\\n3.02465677e-01 -9.44857597e-02 1.60577103e-01 2.96599604e-02\\n-7.74726152e-01 3.57794464e-01 9.02968086e-03 -1.97710410e-01\\n-2.40483936e-02 4.89026718e-02 3.22064966e-01 -3.60242337e-01\\n3.90120037e-02 -1.09087110e-01 -4.32024777e-01 -3.24579269e-01\\n-2.91374266e-01 2.05730181e-02 5.21267474e-01 -4.00459617e-01\\n-1.88750923e-01 1.21945046e-01 -5.36569834e-01 8.41926709e-02\\n2.73975492e-01 1.45664349e-01 4.63981889e-02 9.78739560e-02\\n-9.55403820e-02 -5.65264702e-01 1.01441719e-01 -4.49343890e-01\\n-3.34717840e-01 1.56051546e-01 -3.32833171e-01 1.59459874e-01\\n1.13084018e-01 5.55495638e-03 -1.48442328e-01 1.43238753e-01\\n-1.96646258e-01 -1.05383925e-01 1.46250531e-01 1.19363889e-01\\n4.66866642e-01 3.92461829e-02 -4.67435658e-01 5.82722247e-01\\n-2.25528777e-01 5.99116564e-01 2.35894561e-01 -9.59693789e-01\\n4.82131422e-01 3.71363550e-01 1.48339868e-01 -3.19856167e-01\\n6.29062474e-01 -3.06101829e-01 -3.23906057e-02 8.90640467e-02\\n-4.93299723e-01 -3.05044800e-01 1.90983251e-01 -1.27752498e-01\\n-2.36862689e-01 5.44315636e-01 8.07897523e-02 5.43228053e-02\\n3.09236169e-01 -1.60474315e-01 -1.26948327e-01 3.25009264e-02\\n-8.38085935e-02 -3.34769607e-01 -4.15257961e-01 1.26669094e-01\\n-1.25170767e-01 -5.50664842e-01 -2.15689465e-02 -3.51278663e-01\\n-2.71888644e-01 -3.93545747e-01 -2.41604358e-01 4.65740472e-01\\n1.58422768e-01 6.64536431e-02 7.47429505e-02 5.78101538e-02\\n-1.86671585e-01 -5.68167865e-01 4.53361645e-02 1.48970649e-01\\n4.26604778e-01 1.72204286e-01 4.92882468e-02 -6.85800239e-02\\n-9.20698866e-02 6.17161632e-01 -3.84079069e-01 -1.71341613e-01\\n4.82404903e-02 1.28838614e-01 -8.05882514e-02 -3.45155559e-02\\n4.02178541e-02 3.69528681e-01 -2.97649592e-01 -1.45858210e-02\\n-2.42435172e-01 1.22509353e-01 3.80285054e-01 -4.77877595e-02\\n-4.00515109e-01 -2.42902219e-01 -1.05139568e-01 2.32550383e-01\\n-5.29595256e-01 -1.70521870e-01 6.26755953e-01 1.90487877e-01\\n1.26379415e-01 1.48844153e-01 2.16809675e-01 -1.03928514e-01\\n-1.66048914e-01 -3.39489549e-01 1.83162794e-01 1.21256530e-01\\n1.33968458e-01 1.19143903e-01 -9.55008939e-02 -5.60689390e-01\\n-3.42344046e+00 -2.39997104e-01 1.67549223e-01 -3.20032984e-01\\n1.46800205e-01 -2.19089493e-01 3.13191414e-02 -1.23652548e-01\\n-1.85080037e-01 8.42759535e-02 -1.28616914e-01 -1.73912361e-01\\n1.78927839e-01 1.99459776e-01 1.23740532e-01 2.49317273e-01\\n2.23415017e-01 -1.33193567e-01 3.32326964e-02 2.85424203e-01\\n-2.34543428e-01 -6.23800755e-01 2.13373452e-01 -1.33986175e-01\\n3.30299973e-01 3.47469807e-01 -2.91469574e-01 -1.33075312e-01\\n-1.52270198e-01 -3.00877184e-01 9.87958685e-02 -2.66842902e-01\\n-6.67360565e-03 3.50001693e-01 9.53909531e-02 -8.19347203e-02\\n1.62400961e-01 -3.30659777e-01 -6.44750819e-02 -3.84279698e-01\\n2.10682005e-01 -5.68385720e-01 -7.26196468e-02 -5.35071008e-02\\n8.01595747e-01 -3.73670071e-01 1.61102027e-01 2.02670902e-01\\n1.19603641e-01 2.72307217e-01 1.10587738e-02 -2.03825563e-01\\n-2.92967081e-01 -2.54518807e-01 5.74550815e-02 -2.10433111e-01\\n4.81725276e-01 5.25332153e-01 -2.15332612e-01 6.45343512e-02\\n9.51613262e-02 -2.67256469e-01 -4.68601495e-01 -4.69010770e-01\\n-2.03330263e-01 -2.50050813e-01 -6.21195197e-01 -5.24641514e-01\\n-1.80896204e-02 -2.04285845e-01 -1.45651698e-01 6.63150966e-01\\n-2.77416438e-01 -4.18004483e-01 -6.61919042e-02 -4.88435388e-01\\n1.46508873e-01 -1.57860979e-01 -1.22777857e-01 -1.40238583e-01\\n-2.35778838e-01 -4.86413300e-01 -2.80342400e-02 9.30318888e-03\\n-1.70999244e-01 -2.64476478e-01 1.17607556e-01 -2.74324179e-01\\n-3.43522936e-01 -4.97430861e-01 5.32748282e-01 4.64134552e-02\\n3.52548718e-01 6.05197437e-02 2.32776672e-01 1.96070179e-01\\n3.41220170e-01 -2.76282161e-01 1.35229342e-02 -3.96473050e-01\\n1.98206753e-01 -1.70233604e-02 5.56876004e-01 -1.55463874e-01\\n1.56599268e-01 1.46961689e-01 -1.49105847e-01 -2.65505373e-01\\n3.74508858e-01 6.98375702e-02 1.09697461e-01 -2.43835911e-01\\n3.70247096e-01 -3.38080436e-01 -3.80105317e-01 1.75932795e-01\\n-9.13916603e-02 6.44052148e-01 -6.21827394e-02 -3.98258924e-01\\n-2.20207095e-01 5.83137810e-01 -1.32708713e-01 -1.29001111e-01\\n-2.18515709e-01 1.03773534e-01 -1.84651583e-01 1.87637970e-01\\n1.05787858e-01 -1.42905623e-01 -2.34073803e-01 -8.59974846e-02\\n-3.47021855e-02 1.72941983e-01 2.49844164e-01 1.05177071e-02\\n9.54391882e-02 -4.10854250e-01 -9.24184918e-02 1.65698677e-01\\n2.36222535e-01 3.29858273e-01 9.73102823e-02 -1.40055329e-01\\n-9.37038586e-02 2.91175365e-01 -1.75197363e-01 1.75014988e-01\\n-2.01614231e-01 4.50126342e-02 -4.46310073e-01 -2.99648821e-01\\n-2.21855998e-01 -3.37423831e-01 -1.04301898e-02 1.09562039e-01\\n3.50798219e-02 9.86902416e-02 -1.22194523e-02 -4.31680053e-01\\n2.63424724e-01 -2.93281977e-03 3.24295431e-01 1.97017312e-01\\n-5.85931167e-02 4.81887072e-01 9.85051692e-03 -1.68752149e-02\\n-1.14188395e-01 6.37781769e-02 -2.12607101e-01 -1.69618189e-01\\n-3.37427221e-02 -4.13840383e-01 -5.98542579e-02 4.40601289e-01\\n1.20637789e-01 -3.84090811e-01 -2.78004616e-01 1.58101082e-01\\n-3.38055007e-02 -3.79125088e-01 -1.87674120e-01 1.76028647e-02\\n3.53184938e-01 3.64386216e-02 2.67181337e-01 -5.67322731e-01\\n-2.40153447e-02 6.06786348e-02 -5.43791689e-02 5.30635655e-01\\n7.94282258e-02 -2.64340062e-02 -1.40363812e-01 -3.73206735e-01\\n2.75253862e-01 -1.81798264e-01 2.71342136e-03 -1.91415489e-01\\n5.78765757e-02 -1.91194728e-01 -4.30463880e-01 9.47066769e-02\\n-1.20195381e-01 -1.97345063e-01 -1.00383554e-02 -1.10037394e-01\\n1.28113870e-02 8.55104923e-02 -5.22974193e-01 -3.40321243e-01\\n-3.75218987e-01 -1.36259794e-01 8.72427225e-03 -3.40312690e-01\\n3.80098224e-02 7.86961913e-02 -6.10029101e-01 2.69160658e-01\\n-3.51555824e-01 -1.90250054e-02 1.95648685e-01 3.75189856e-02\\n-4.43506300e-01 2.99211536e-02 2.37376034e-01 2.38107502e-01\\n-4.26049471e-01 -2.94054478e-01 6.88863546e-02 -1.05952585e+00\\n1.68002829e-01 -1.82837900e-02 9.42894723e-03 9.42927226e-02\\n2.72770203e-03 -5.96114576e-01 1.11601770e-01 -3.04830909e-01\\n3.42156366e-02 -3.88490111e-02 -2.66441762e-01 -4.86245155e-01\\n3.69999409e-02 -6.02515116e-02 -2.97504127e-01 3.25485736e-01\\n-4.79360372e-01 3.11842769e-01 -3.43450122e-02 7.73108527e-02\\n-1.19152948e-01 -2.94846177e-01 1.19015217e-01 -4.17509913e-01\\n-4.01873678e-01 -1.60769135e-01 -2.82100290e-01 -2.19216838e-01\\n2.73652915e-02 -2.20999643e-01 -3.92215289e-02 1.66129991e-01\\n2.81601399e-01 6.46452382e-02 -9.92305651e-02 -3.05598080e-01\\n1.90013528e-01 -4.92806882e-01 -1.84919387e-02 -1.99532181e-01\\n-8.59614611e-02 -7.06908107e-02 1.34359270e-01 3.09030451e-02\\n5.18640690e-02 -4.61079270e-01 3.47921878e-01 -3.82179558e-01\\n-2.88794219e-01 -9.04683769e-03 4.36630473e-02 1.43059000e-01\\n2.72067726e-01 -5.45432448e-01 5.42921908e-02 3.90583038e-01\\n1.40932888e-01 2.18462422e-02 3.15219194e-01 1.47120990e-02\\n-5.35729676e-02 3.30026537e-01 -3.97946328e-01 1.11142218e-01\\n7.23168433e-01 1.97301209e-01 3.01393624e-02 2.18443334e-01\\n2.66600341e-01 4.12593305e-01 4.83061522e-01 -5.21094771e-03\\n3.72509547e-02 3.10118258e-01 1.46340996e-01 -7.00845063e-01\\n-3.45321521e-02 3.51000904e-06 -2.53404707e-01 -2.32473060e-01\\n6.99832916e-01 3.81607503e-01 -3.86612773e-01 -1.96372911e-01\\n-2.25604028e-01 -1.91897944e-01 1.48289829e-01 -1.98129028e-01\\n1.91521928e-01 -6.81058392e-02 4.98257279e-01 6.99881688e-02\\n2.91142613e-01 5.60273588e-01 -2.00168639e-01 -3.82358938e-01\\n-1.75074711e-01 9.17116627e-02 3.61310467e-02 3.82802635e-01\\n-1.48656413e-01 2.39627823e-01 7.68905580e-02 2.05974072e-01\\n-8.36420283e-02 1.98483497e-01 6.49647787e-02 7.32829943e-02\\n1.43256813e-01 5.69299832e-02 2.48082027e-01 4.36084986e-01\\n2.99941689e-01 5.98405302e-01 3.51424456e-01 1.60797238e-01\\n4.58824277e-01 5.06752849e-01 3.79154474e-01 1.69674128e-01\\n-9.54269320e-02 9.48182419e-02 -9.80877038e-03 -9.86820906e-02\\n3.83263320e-01 2.84612358e-01 1.10103093e-01 9.56705511e-01\\n4.68186408e-01 2.81715065e-01 7.83853412e-01 -5.84079981e-01\\n-4.61227208e-01 -3.10950503e-02 4.12851751e-01 -3.56342793e-01\\n-1.12012103e-01 9.01244730e-02 -1.96246818e-01 2.92169422e-01\\n-4.62409914e-01 -7.29872808e-02 -5.34939393e-02 7.95590430e-02\\n1.78047851e-01 -4.43895645e-02 -3.40434492e-01 -1.83744311e-01\\n-2.56870270e-01 -8.13818946e-02 -4.77654159e-01 -3.79056185e-02\\n-2.52517223e-01 -2.76095837e-01 -1.86661422e-01 -1.44891188e-01\\n-1.35957487e-02 -4.37088102e-01 -1.52315408e-01 8.73189047e-02\\n3.51048410e-01 -1.05664022e-01 -6.36203587e-02 -1.28768042e-01\\n2.88004637e-01 3.01429033e-01 5.00274122e-01 -9.48877037e-02\\n7.36109912e-02 -9.37480628e-02 -1.85977116e-01 7.53349364e-02\\n1.09136917e-01 1.11559808e-01 -2.09253817e-03 3.97442669e-01\\n-3.82200241e-01 -1.68757334e-01 7.99579769e-02 4.40565467e-01\\n-4.37371194e-01 -1.25770405e-01 7.78131038e-02 2.90759116e-01\\n1.28357157e-01 1.73150063e-01 -3.54894847e-01 5.46495467e-02\\n-2.68999010e-01 -5.13819516e-01 3.45636040e-01 -1.09166019e-01\\n-8.25389698e-02 5.99216558e-02 3.03997487e-01 1.59141764e-01\\n-1.88917920e-01 -1.03359103e-01 1.25873491e-01 2.11416766e-01\\n1.26016781e-01 3.47677231e-01 -2.63669252e-01 -2.25019798e-01\\n-2.77623743e-01 2.68201560e-01 -3.32442760e-01 1.74849391e-01\\n-1.55298963e-01 3.42802942e-01 1.53565735e-01 1.28540710e-01\\n1.73937172e-01 -4.52347361e-02 -1.25829980e-01 -2.02888966e-01\\n-3.53951782e-01 -2.95110673e-01 8.25848579e-02 -2.93367654e-02\\n1.67923048e-01 -4.18692261e-01 -4.70832735e-02 -6.47504330e-02\\n-2.66997725e-01 -2.90285826e-01 -9.46866497e-02 -1.43150270e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Java Software Engineer. This role is a permanent position based in Zürich or Bern Canton depending on candidate preference. Your role: Develop sophisticated web / JEE applications. Develop software & enterprise architectures. Design technical solutions in collaboration with customers. Making cost estimates. Contribute to the further development of software development within the business. Your Skills: Experienced in the development of solutions based on Java technologies / open source frameworks. Good knowledge in the following areas: JAVA frameworks for dependency injection O / R mapping & access control (Spring, Hibernate) JAVA application server (Tomcat, JBoss, WebSphere or WildFly) Spring & Vaadin JAVA Web technologies (JSF and PrimeFaces ) Client-side JavaScript UI technologies (Angular 2, React) JAVA UI technologies (JavaFX) Cloud technologies (Docker, Openshift, Kubernetes) Database technologies (Oracle, MySQL, Maria DB) Experience in agile software development is advantageous. Your Profile: Higher education in Computer Science. Self-driven, self-motivation, open-minded & solution-oriented. Cooperative, quality-focused & both customer & team-oriented. Analytical, conceptual & in possession of a quick understanding. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Self-Motivation\", \"Team Oriented\", \"Cooperation\", \"Collaboration\", \"Positivity\"]',\n", + " '[\"MySQL\", \"OpenShift\", \"Kubernetes\", \"Computer Science\", \"Analytics\", \"Mobile Application Software\", \"Higher Education\", \"Vaadin\", \"Hibernate (Java)\", \"Primefaces\", \"WildFly (JBoss AS)\", \"Application Servers\", \"Software Engineering\", \"React.js\", \"Agile Software Development\", \"Open Source Technology\", \"Docker (Software)\", \"Conceptualization\", \"Enterprise Architecture\", \"Java Application Server\", \"Java Collections Framework\", \"Project-Based Solutions\", \"Access Controls\", \"Dependency Injection\", \"Cost Estimation\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"JavaFX\", \"Receivables\", \"Angular (Web Framework)\", \"Technical Solution Design\", \"Java Web Services\", \"Software Development\", \"Mapping\", \"Java (Programming Language)\", \"Apache Tomcat\", \"JSF 2\", \"Cloud Technologies\"]',\n", + " \"['English', 'Slovak', 'Cree', 'Telugu']\"],\n", + " ['75',\n", + " 'business application analyst (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.95008665e-01 3.99013340e-01 4.29643035e-01 6.23621792e-02\\n6.08087063e-01 6.52238876e-02 1.04930684e-01 1.14952393e-01\\n7.00906217e-02 -2.68205762e-01 -1.38870880e-01 -1.20139062e-01\\n-5.62866032e-02 -7.93280452e-02 1.21173106e-01 4.18069065e-01\\n3.15848827e-01 -5.43995164e-02 -3.28657031e-03 2.79873222e-01\\n-5.72428331e-02 8.00456665e-03 2.15325020e-02 5.92675447e-01\\n4.05653894e-01 1.20013863e-01 -3.50275636e-02 1.12025894e-01\\n-2.48493224e-01 -3.62214535e-01 3.75085354e-01 3.69461626e-02\\n-2.33532578e-01 -3.03215653e-01 6.88816160e-02 1.64522588e-01\\n-1.85275301e-01 1.21623948e-02 -1.24451324e-01 3.28230113e-03\\n-4.66755688e-01 -2.48992056e-01 -4.48130071e-02 -1.80105090e-01\\n-3.70480001e-01 -2.55145013e-01 2.06496492e-01 -2.15973467e-01\\n3.28031704e-02 2.48962641e-02 -5.00505447e-01 3.85336757e-01\\n-2.19557941e-01 -1.46872059e-01 3.15424025e-01 6.28724456e-01\\n1.65173799e-01 -5.98815799e-01 -4.74887490e-01 -3.30780447e-01\\n1.29434094e-01 -1.59070551e-01 1.68393940e-01 -2.64650136e-02\\n4.71206695e-01 -2.15121865e-01 -2.69760732e-02 2.99594939e-01\\n-6.15362763e-01 -1.15436874e-02 -5.40289640e-01 1.83903314e-02\\n-3.03136885e-01 5.53766713e-02 -4.26471055e-01 -2.40658224e-01\\n-6.99507166e-03 4.13340658e-01 1.20811388e-02 7.35970587e-02\\n-1.71227008e-01 3.18997502e-01 -1.79942995e-01 1.24712914e-01\\n2.69173622e-01 2.31143702e-02 4.02183950e-01 2.32091874e-01\\n-4.57810193e-01 5.29850721e-01 3.74625385e-01 -3.48989129e-01\\n2.59545594e-01 1.34253064e-02 2.31121942e-01 2.04598159e-01\\n1.49972821e-02 2.93230921e-01 -1.39868483e-02 9.22784302e-03\\n7.95998573e-02 -6.44016117e-02 -2.07560703e-01 -9.70576480e-02\\n-5.49077168e-02 -2.28717700e-01 6.58551455e-02 1.34303480e-01\\n-4.52967733e-01 4.46573734e-01 8.08416307e-02 -2.33199641e-01\\n-5.34538068e-02 -3.31894696e-01 -1.15534864e-01 -1.13618165e-01\\n-1.22120567e-01 9.63859782e-02 2.09814861e-01 3.08730274e-01\\n2.74116784e-01 6.90218508e-02 1.88973278e-01 7.02065170e-01\\n6.16038144e-02 1.22587457e-01 -8.43458250e-03 2.99832821e-01\\n5.18384874e-02 -2.89068192e-01 1.17042631e-01 2.91722059e-01\\n-2.23484665e-01 -6.48168400e-02 -3.67855966e-01 1.77600279e-01\\n-1.94459617e-01 -1.14878140e-01 -2.18792319e-01 2.13929236e-01\\n-2.00481564e-01 -6.06310368e-01 3.66872668e-01 -5.05070537e-02\\n9.99847203e-02 -1.49258733e-01 3.67650762e-03 -2.67140083e-02\\n-2.41359979e-01 3.47323537e-01 1.75061330e-01 3.08430970e-01\\n-2.97674477e-01 -2.55726039e-01 -9.77141187e-02 3.67457777e-01\\n-1.13222837e-01 8.72353166e-02 -5.40520310e-01 -2.04681039e-01\\n3.79402757e-01 2.12867528e-01 -5.21773994e-01 2.86651731e-01\\n-5.87734487e-03 -9.59016234e-02 -1.91565380e-01 4.30359900e-01\\n3.59341130e-02 -4.29353565e-02 -4.49364595e-02 -1.73897684e-01\\n5.46396017e-01 1.60005078e-01 1.95677131e-01 -7.37396628e-02\\n3.58966947e-01 -1.32059127e-01 2.50623226e-01 -6.79093227e-03\\n-5.72852254e-01 4.15170729e-01 -1.74482450e-01 3.14541906e-03\\n-6.03997782e-02 -3.82388160e-02 5.31919897e-01 -3.52441043e-01\\n2.11916752e-02 -2.08766580e-01 -4.14281428e-01 -4.38057303e-01\\n-1.38663471e-01 -3.98902483e-02 4.54661429e-01 -4.58312869e-01\\n5.53567521e-03 1.29119918e-01 -5.71516037e-01 -1.85264051e-01\\n4.02185559e-01 1.87568933e-01 2.13938653e-01 1.50399074e-01\\n-9.81053412e-02 -4.81393695e-01 1.11682698e-01 -5.46461701e-01\\n-3.75030160e-01 2.44040415e-01 -2.47653693e-01 6.63139895e-02\\n1.80318117e-01 -6.35833014e-03 -3.96272466e-02 1.30210929e-02\\n-3.61765027e-01 -5.96959107e-02 2.44559735e-01 -5.10137081e-02\\n1.82738453e-01 1.76333308e-01 -2.88261354e-01 6.08550787e-01\\n-2.95774102e-01 3.35119009e-01 1.87874585e-01 -9.53545034e-01\\n4.56823647e-01 1.94832981e-01 -3.92278694e-02 -3.21594030e-01\\n2.93811142e-01 -3.59783113e-01 5.99214900e-03 1.76124096e-01\\n-1.87629536e-01 -1.09368242e-01 2.09992945e-01 -1.58685684e-01\\n-3.12051386e-01 6.60686314e-01 1.05416395e-01 1.07662939e-02\\n2.86886156e-01 -1.42430902e-01 -3.27407420e-01 -4.90555428e-02\\n-3.45832944e-01 -1.50670335e-01 -5.37451744e-01 1.14824072e-01\\n-2.77052037e-02 -5.12728751e-01 -1.22580498e-01 -5.49357653e-01\\n-2.18824804e-01 -4.69523907e-01 -2.82027304e-01 2.13616759e-01\\n6.35256767e-02 1.39032960e-01 -1.55497581e-01 2.79446207e-02\\n-4.28187400e-02 -6.23596072e-01 -2.66356803e-02 1.49163604e-01\\n2.00827986e-01 4.23853099e-01 1.98534369e-01 -2.79200673e-01\\n3.93205695e-02 5.08246005e-01 -4.05801445e-01 -3.40488493e-01\\n3.75211567e-01 1.54240757e-01 -6.00795001e-02 -1.78934500e-01\\n2.73097940e-02 2.95856416e-01 -1.80580080e-01 5.62755466e-02\\n1.25635564e-01 -9.06742215e-02 2.75325835e-01 -2.66111314e-01\\n-2.56982237e-01 -1.17668010e-01 -1.43375665e-01 3.09205562e-01\\n-5.11835814e-01 -3.01409364e-01 6.02433622e-01 1.83108971e-01\\n-4.19602580e-02 3.06000352e-01 1.99281752e-01 7.44044175e-03\\n-3.36609691e-01 -1.70412421e-01 2.61179686e-01 1.76363379e-01\\n1.30626291e-01 -4.54344749e-02 -3.01077724e-01 -5.49743652e-01\\n-3.55569029e+00 -2.82751650e-01 5.50696328e-02 -2.48541459e-01\\n1.85145915e-01 -4.22971770e-02 2.74901390e-01 -2.18013488e-02\\n-2.70694554e-01 7.35134333e-02 -2.01510012e-01 -8.64264816e-02\\n-3.46118249e-02 3.53509903e-01 1.68244332e-01 1.43488690e-01\\n1.93885267e-02 -2.96424508e-01 1.26230046e-01 4.56099212e-01\\n-1.37910172e-01 -8.56148124e-01 7.47311115e-02 -7.26257861e-02\\n1.17508277e-01 1.38784558e-01 -4.04958606e-01 -1.12103790e-01\\n-3.46385002e-01 -1.60494342e-01 6.99183345e-02 -1.60134003e-01\\n-2.52299368e-01 2.49085829e-01 1.06362417e-01 -8.64721388e-02\\n-3.53455804e-02 -3.59373569e-01 -2.24601962e-02 -6.53341055e-01\\n3.26970555e-02 -6.95949554e-01 1.48876294e-01 3.61051299e-02\\n4.64770705e-01 -1.56582966e-02 2.45510906e-01 1.63776100e-01\\n1.69339389e-01 2.33648822e-01 1.70241073e-01 -8.08064919e-03\\n-3.03983480e-01 -2.80499369e-01 -1.99072599e-01 -2.36861020e-01\\n6.57795072e-01 1.94023579e-01 -1.99919999e-01 3.74202840e-02\\n-4.98504452e-02 -3.43164265e-01 -4.75379229e-01 -4.13300067e-01\\n-1.74542099e-01 1.01825230e-01 -6.86987460e-01 -4.31307584e-01\\n-2.44460553e-01 -1.73468426e-01 -1.26737446e-01 6.47513747e-01\\n-4.35722947e-01 -2.20222995e-01 -2.16420054e-01 -5.94370723e-01\\n2.52624780e-01 -8.20131153e-02 8.62736106e-02 -1.86010838e-01\\n-3.27403426e-01 -3.50784421e-01 1.98355496e-01 -2.75172293e-03\\n-2.44776979e-01 1.02648735e-02 1.77890003e-01 -1.08397275e-01\\n-3.86105478e-01 -3.74359012e-01 4.77235377e-01 4.26571816e-03\\n4.57176685e-01 6.10954463e-02 3.10741782e-01 1.59194395e-02\\n5.06574988e-01 -8.55695084e-02 9.16682854e-02 -5.37249565e-01\\n2.93198694e-02 6.69127926e-02 6.19441628e-01 -1.38995737e-01\\n-1.60193462e-02 4.74740826e-02 -2.56839752e-01 -2.49762386e-02\\n5.38749158e-01 -1.63856179e-01 1.38494700e-01 -3.35919678e-01\\n2.67729521e-01 -4.32539463e-01 -3.34229290e-01 6.38738275e-02\\n7.81847909e-02 7.43538260e-01 1.29113436e-01 -3.38600814e-01\\n-2.58372545e-01 3.27801645e-01 -1.52215630e-01 -7.24039972e-02\\n-2.09616601e-01 1.41601801e-01 -2.36046284e-01 2.61437654e-01\\n1.76726252e-01 3.02040782e-02 -2.80137837e-01 3.49889025e-02\\n-1.48878694e-01 1.18181966e-01 2.62158394e-01 1.75832957e-01\\n3.65262851e-03 -2.22498298e-01 -6.84153587e-02 1.14416696e-01\\n2.34426767e-01 3.24253023e-01 2.33186617e-01 -3.89072716e-01\\n2.86060870e-02 1.03369638e-01 -2.36514941e-01 2.98341453e-01\\n-1.03237309e-01 2.26938367e-01 -5.21813989e-01 -2.76915312e-01\\n-2.54761577e-01 -2.65493602e-01 2.29397453e-02 4.41016793e-01\\n1.09912843e-01 -2.51434445e-01 1.10836118e-01 -5.09543180e-01\\n3.66670161e-01 -5.71772903e-02 2.26971194e-01 4.31929063e-03\\n-1.36781614e-02 7.32295930e-01 7.96074718e-02 -2.41586313e-01\\n-5.31088933e-02 1.55605733e-01 -2.05185592e-01 -3.17513853e-01\\n3.06285396e-02 -3.52946162e-01 -1.32428646e-01 4.91699934e-01\\n7.55733997e-02 3.69209722e-02 -1.30102739e-01 4.33190167e-01\\n-6.32488281e-02 -2.58107305e-01 -2.31630683e-01 -1.81962162e-01\\n2.35331021e-02 7.26722330e-02 2.61114061e-01 -5.45908093e-01\\n3.81588191e-02 -1.29535586e-01 1.75660253e-01 4.11845297e-01\\n1.14919640e-01 1.88628212e-02 1.49087429e-01 -1.69886172e-01\\n5.05914688e-01 2.76735544e-01 -1.43848300e-01 -8.47352445e-02\\n1.94630563e-01 -2.57028848e-01 -3.90511125e-01 -3.60201709e-02\\n-9.97323319e-02 -1.41303703e-01 1.43579289e-01 2.12300956e-01\\n1.71816796e-01 3.36324200e-02 -4.70748782e-01 -1.37881815e-01\\n-4.19336766e-01 8.37518796e-02 -2.39282846e-01 -8.23341370e-01\\n6.73615187e-02 -3.51095833e-02 -6.13993406e-01 2.21830845e-01\\n-6.80322275e-02 1.18058249e-01 1.02512687e-01 1.82622120e-01\\n-1.90888226e-01 -3.03844094e-01 2.23368987e-01 -1.36131853e-01\\n-3.05934250e-01 -3.46114695e-01 2.39739753e-02 -9.21545088e-01\\n2.76762545e-01 7.67990723e-02 -1.86048716e-01 3.07146758e-02\\n1.19301431e-01 -7.44753361e-01 3.17702353e-01 -2.37914801e-01\\n-1.33371681e-01 1.43889353e-01 -3.11614990e-01 -3.48008454e-01\\n1.53147981e-01 1.45591050e-03 -1.91140026e-01 2.88545072e-01\\n-3.08448493e-01 6.43162549e-01 2.17807382e-01 1.92919865e-01\\n2.00574994e-01 -2.33969927e-01 -1.39634572e-02 -3.33765209e-01\\n-4.21945453e-01 -2.28561282e-01 -1.99784607e-01 -2.11759627e-01\\n-5.40009476e-02 -1.53570965e-01 -1.05935186e-01 -1.13392070e-01\\n4.73212868e-01 3.49675536e-01 -2.36959338e-01 4.88043763e-02\\n-3.90611514e-02 -2.73881495e-01 2.26684019e-01 -2.59959221e-01\\n-6.96395934e-02 -2.72628725e-01 4.93727446e-01 -1.14674158e-01\\n2.04172567e-01 -1.64891273e-01 6.67558193e-01 -1.67972893e-01\\n-3.62935126e-01 -1.09879233e-01 1.50007069e-01 4.50675115e-02\\n2.88204223e-01 -6.10142827e-01 5.38021401e-02 3.56592685e-01\\n9.64097083e-02 5.85207455e-02 3.72008562e-01 -1.59248084e-01\\n-2.30890840e-01 2.10392445e-01 -6.78520679e-01 1.51378185e-01\\n7.01343715e-01 2.80828059e-01 1.27947688e-01 1.64826989e-01\\n5.65739870e-02 1.68446481e-01 5.30752659e-01 7.68702477e-02\\n-2.02321798e-01 5.14730573e-01 1.92759395e-01 -7.11550891e-01\\n-3.36884797e-01 -1.59894601e-01 -3.37813422e-03 -2.42597044e-01\\n6.20835900e-01 1.33443847e-01 -4.70507681e-01 -3.80021691e-01\\n-3.76374185e-01 -2.80495912e-01 3.32177192e-01 5.52777313e-02\\n1.24651492e-01 -1.00803256e-01 5.91643929e-01 -3.90242860e-02\\n3.01796436e-01 4.75176245e-01 -1.80343539e-02 -1.34569585e-01\\n-5.11511564e-02 2.42801830e-01 1.28010020e-01 3.61895084e-01\\n-5.64892739e-02 1.49931237e-01 3.91129851e-02 1.27426535e-01\\n-3.17187309e-01 -5.31696826e-02 2.20459417e-01 -1.27257854e-02\\n1.10019527e-01 2.12586641e-01 5.36637545e-01 3.36952329e-01\\n2.47376382e-01 4.84607428e-01 3.80346388e-01 -2.83900667e-02\\n4.39093977e-01 6.83360755e-01 1.82947829e-01 -1.08023643e-01\\n1.34323090e-02 1.19458131e-01 1.03729367e-01 -3.07833347e-02\\n4.12101150e-01 5.54117441e-01 9.07534659e-02 7.66765833e-01\\n3.47824782e-01 3.59968692e-01 5.83235145e-01 -5.53700447e-01\\n-1.98314428e-01 5.60754687e-02 5.19675672e-01 -2.61983693e-01\\n1.31907567e-01 1.67795941e-01 -2.51441777e-01 2.32583821e-01\\n-4.59881693e-01 -2.24262774e-01 -5.18954396e-02 -1.45882815e-01\\n2.27639586e-01 -1.86824724e-02 4.49294001e-02 1.42247528e-01\\n-3.87051068e-02 -2.37777084e-01 -2.11852521e-01 -3.39132100e-01\\n-3.74523491e-01 5.73425647e-03 8.44365954e-02 -6.97888136e-02\\n-6.77605197e-02 -2.72388935e-01 -7.20749199e-02 -1.55324727e-01\\n2.70112395e-01 -1.10158734e-01 -3.34998935e-01 -1.07086696e-01\\n1.45143438e-02 3.06369156e-01 9.21783447e-01 -1.77824765e-01\\n1.66461051e-01 -1.78993165e-01 -1.86832607e-01 -2.54484080e-02\\n1.61697477e-01 1.01951584e-01 -2.91782729e-02 6.06689692e-01\\n-2.57903636e-01 -4.82439697e-02 1.52224541e-01 2.31140733e-01\\n-2.43201107e-01 1.32235307e-02 -5.22389561e-02 5.44080250e-02\\n4.37594205e-03 1.22165650e-01 -1.84865832e-01 3.06754448e-02\\n-2.30701506e-01 -6.49197519e-01 2.72451490e-01 -1.19080722e-01\\n-2.70071149e-01 -9.45970863e-02 2.54023075e-01 4.36552346e-01\\n-8.99736732e-02 -1.55729830e-01 -8.55943188e-02 1.97303742e-01\\n1.10036470e-01 3.79391223e-01 -2.18155861e-01 -1.33596122e-01\\n-2.61167705e-01 4.08169508e-01 7.51660541e-02 1.51080757e-01\\n-7.55340159e-02 3.85382116e-01 2.61615179e-02 2.32520312e-01\\n1.59027353e-01 -2.20937565e-01 -3.69323730e-01 -3.04829597e-01\\n-4.35190201e-01 -1.16633028e-02 1.11955486e-01 -8.50889459e-02\\n2.64335275e-01 -2.27494001e-01 -6.81183934e-02 -2.76735246e-01\\n-2.44057477e-01 -4.49558347e-01 -1.16036996e-01 1.09312750e-01]]',\n", + " 'Job Informationen Responsibilities: Manages the maintenance of key Applications - Ensure a proper functional and technical support to the business departments on IS applications - Supervise end users in order to ensure a proper understanding of internal Business Processes (Trading, Shipping, Finance, Legal, Cross-functions) - Provide support to Trading and Operations team in their usage and ramp-up on the Application (training, coaching, change management) - Supervise end users application’s usage in order to guarantee the efficient use of the software - Coach and Train new comers in the understanding of our processes and a proper usage of the applications related to the function of the employee. - Perform review on application usage and data quality and trigger necessary training or process improvements - Define and Implement Projects for new requirements and/or evolution of the applications - Manage the continuous improvement of our Business processes: - Help in ensuring the defined IS applications matches the business requirements of internal departments - Review Processes supported by IS systems and work in coordination with the functional departments to propose processes/Systems changes. - Specify and implement necessary system changes - Manage the testing phases and ensuring quality performance with the external developers involved in various IS improvement projects - Lead Change Management with the users whilst implementing change - Get user-feedback and trigger necessary tasks or subprojects to reach a balance between Processes, Controls, user satisfaction and capability/cost efficiency of the IS Solution - Follow-up on processes implemented, new and existing, and ensure continuous improvement - Identify user needs for reporting and implement them once specified and approved - With the support and in relation with the Business Process Owners, review the processes defined by each BPO and ensure our Operating Model is updated - Manage specific and ad-hoc IS/IT Projects - Gather Requirements and Objectives of the Project - Manage the different Project Phases from Requirements till post-support implementation - Ensure a proper handover and transition of Project deliverables to the employees (Training, support of employees on requests) Profile required: Educational Background / Qualifications: - Degree in Computer science with experience in project management - Secondary Education in cross functional areas Technical Skills: - CRM Systems (SalesForce, Oracle) - Good knowledge of Reporting systems and Business Intelligence tools (IBM Cognos, Quickview,..) - General understanding of main ERP functionalities (SAP) - Scripting language (SQL, JavaScript, any other scripting languages) - First experience on Mobility and Mobile Apps development Experience required: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in the current Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs - Proven capabilities in coaching, training and development Competency profile: - Good knowledge and practice in usage of CRM, ERP and Reporting software - Ability to successfully identify strengths and areas of improvement in processes and further lead change management across all functional departments - Good experience in project management, as well as implementation and deployment of IS systems - Technical ability in managing directly small evolutions in Applications - Ability to perform specific adhoc analysis and queries through systems to assess usage and provide reports, dashboard, KPIs Interpersonal competencies / communication - Service-oriented - Communication capability with specialists and non-specialists (oral and written) - Listening skills - Ability to manage diversity and complexity of processes - Negotiation/conflict resolution skills - Reactivity - Time management skills - English professional. Good German. Any other language is a plus Benötigte Skills Englisch Projektleitung Qualitätssicherung CRM ERP Oracle Cognos SAP SQL JavaScript Requirements Engineering Schulung Strategie',\n", + " '[\"Negotiation\", \"Professionalism\", \"Supervision\", \"Management\", \"Listening Skills\", \"Operations\", \"Training And Development\", \"Time Management\"]',\n", + " '[\"Data Quality\", \"QuickView\", \"Business Intelligence Tools\", \"Ad Hoc Testing\", \"Computer Science\", \"Customer Relationship Management (CRM) Software\", \"Asynchronous Serial Communication\", \"Process Automation Systems\", \"Reactivity\", \"Process Improvements\", \"Performance Review\", \"Mobile App\", \"SAP Sybase SQL\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Secondary Education\", \"Dashboard\", \"Business Intelligence\", \"Mobility\", \"Process Control\", \"Business Requirements\", \"MFG/Pro (ERP)\", \"Cross-Functional Coordination\", \"Finance\", \"Business Process\", \"SAP Functional\", \"Specific Performance\", \"Requirements Engineering\", \"JavaScript (Programming Language)\", \"Continuous Improvement Process\", \"Implement Projects\", \"Adapter Scripting Language\", \"User Feedback\", \"Project Management\", \"Scripting\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Diversity Management\", \"SQL (Programming Language)\", \"Technical Support\", \"International Business\", \"Conflict Resolution\", \"Change Management\"]',\n", + " \"['English', 'Welsh', 'Swedish']\"],\n", + " ['62',\n", + " 'project manager for training, media and communication in global logistics',\n", + " 'Chuang-li',\n", + " 'Industrial Manufacturing',\n", + " 'www.hilti.com',\n", + " '[[-8.40743482e-02 2.58469582e-01 4.16815966e-01 1.25929350e-02\\n5.25840521e-01 -4.37766649e-02 6.82556182e-02 3.49865973e-01\\n-3.04325055e-02 -5.84392428e-01 6.65341020e-02 -2.43442863e-01\\n6.04313426e-02 1.90676123e-01 9.68776345e-02 4.08527315e-01\\n2.18765289e-01 3.15529779e-02 -1.17172852e-01 2.58254617e-01\\n-9.10764784e-02 -1.76381901e-01 1.24905832e-01 8.89787197e-01\\n5.35619736e-01 2.36047674e-02 -8.25883169e-03 -5.04554808e-02\\n-4.91807461e-02 -2.50231594e-01 4.02163744e-01 -2.47387923e-02\\n-2.00507849e-01 -4.89541411e-01 2.22342759e-02 3.68701220e-02\\n-1.77508354e-01 6.31671958e-03 -1.87721014e-01 -2.37870365e-02\\n-5.00963748e-01 -1.42871737e-01 -1.82981253e-01 -9.55498517e-02\\n-3.27548385e-01 -2.47066766e-01 -5.44267222e-02 -1.70721129e-01\\n2.64375567e-01 8.61753225e-02 -3.87723863e-01 1.68585360e-01\\n-2.77408302e-01 -2.51319766e-01 2.35492259e-01 6.27697170e-01\\n7.52717853e-02 -2.72130907e-01 -5.95689476e-01 -2.91512430e-01\\n7.22421557e-02 -8.94315392e-02 1.04437888e-01 -2.63986290e-01\\n2.67910421e-01 -1.17426589e-02 1.33359894e-01 2.38874361e-01\\n-7.09236264e-01 -7.22351670e-02 -3.96133125e-01 -6.82128370e-02\\n-1.88037276e-01 -1.27517879e-01 -4.06178176e-01 -1.82262927e-01\\n-2.00772136e-01 3.20278764e-01 6.62821382e-02 7.70666301e-02\\n-2.02604800e-01 2.43933365e-01 -3.11103344e-01 3.83765846e-01\\n1.22821629e-01 3.08580846e-01 3.48467886e-01 3.74795198e-01\\n-2.84400076e-01 5.80680907e-01 1.45527065e-01 -3.97300065e-01\\n2.54285604e-01 2.56191075e-01 3.40148509e-01 -1.44673660e-01\\n3.74658763e-01 1.15751639e-01 -1.87879384e-01 3.88455272e-01\\n3.38469505e-01 -4.37917769e-01 9.33118612e-02 -2.69454837e-01\\n9.19012055e-02 -4.58682738e-02 2.30888546e-01 -5.29355891e-02\\n-3.71519268e-01 3.04514289e-01 -1.14691807e-02 -3.32168221e-01\\n-2.91482568e-01 -2.65040040e-01 1.50209479e-03 1.62847880e-02\\n1.85857154e-02 1.65778130e-01 1.42384112e-01 2.07206890e-01\\n2.15507865e-01 5.03542386e-02 6.61029965e-02 7.21781969e-01\\n-9.59540159e-02 -1.84900127e-02 -2.87707657e-01 2.67805934e-01\\n-5.99117056e-02 -4.39930201e-01 2.51819193e-01 1.57360122e-01\\n-1.54183269e-01 -2.43988141e-01 -3.31923962e-01 2.80689329e-01\\n1.93541616e-01 -1.67974412e-01 -2.09094420e-01 2.41716415e-01\\n1.62506849e-01 -4.10672843e-01 6.62356615e-01 1.84774771e-02\\n2.15192571e-01 -1.06828630e-01 2.73401849e-03 -2.51844466e-01\\n-4.85691503e-02 2.82341465e-02 2.29909584e-01 1.99484497e-01\\n-1.29276142e-01 -2.53016144e-01 -1.76325053e-01 1.07140020e-01\\n-5.49397469e-01 1.33622602e-01 -2.17098117e-01 -1.30049452e-01\\n2.50664830e-01 -1.57037064e-01 -2.30589613e-01 2.03706145e-01\\n-1.58311218e-01 5.42772040e-02 1.34539939e-02 3.83579254e-01\\n-2.44279265e-01 2.14494213e-01 -3.25616822e-02 5.47887832e-02\\n6.81307793e-01 1.94693595e-01 1.63947463e-01 -1.02098383e-01\\n2.31734470e-01 1.83363661e-01 2.75991224e-02 1.71739459e-01\\n-6.47551417e-01 2.79080927e-01 -1.19871460e-01 -2.90313691e-01\\n1.43057227e-01 -1.17326573e-01 2.32743233e-01 -2.03488186e-01\\n-5.06606102e-02 4.53841537e-02 -2.34795064e-01 -2.78241724e-01\\n-1.51226208e-01 -2.09548146e-01 3.23209405e-01 -5.77496409e-01\\n-7.30032772e-02 1.97642505e-01 -4.72325265e-01 -1.51119947e-01\\n9.62095112e-02 1.61083505e-01 1.42574251e-01 1.53789192e-01\\n-1.16691470e-01 -4.07331228e-01 2.22442560e-02 -3.25153828e-01\\n-2.25879967e-01 1.03323936e-01 -3.07513893e-01 5.74217401e-02\\n7.71653131e-02 -2.36525051e-02 1.31734051e-02 9.59394053e-02\\n-1.18316106e-01 3.75229195e-02 1.96893699e-03 -7.56179541e-02\\n4.56498235e-01 8.43281299e-02 -2.49041766e-01 3.31880331e-01\\n-2.04901218e-01 4.67329443e-01 1.05082523e-02 -8.05799842e-01\\n4.15321052e-01 2.78056383e-01 5.18802553e-02 -3.10032487e-01\\n4.04965281e-01 -2.08444640e-01 -5.92219569e-02 -4.08325344e-04\\n-3.76921296e-01 -2.62250185e-01 1.04717463e-01 -2.47086346e-01\\n-2.11388618e-01 3.61531019e-01 -1.24819539e-01 2.65242338e-01\\n1.76396802e-01 -1.52056098e-01 -5.67691363e-02 7.62480311e-03\\n-1.01702638e-01 -1.06743872e-01 -5.67107141e-01 -1.48717940e-01\\n-9.30724815e-02 -2.35699311e-01 -1.28617585e-01 -5.58523774e-01\\n-2.03244328e-01 -3.98762137e-01 -1.35912657e-01 1.33407190e-02\\n3.23684692e-01 5.33060841e-02 -1.17308073e-01 6.17803186e-02\\n-1.08587161e-01 -6.29146039e-01 5.15846163e-02 1.26124740e-01\\n3.77395570e-01 2.07045555e-01 2.20774740e-01 3.84604111e-02\\n9.90462825e-02 5.46254754e-01 -2.32597291e-01 -1.92428708e-01\\n2.06738725e-01 1.78939059e-01 1.58438459e-01 -1.97715014e-01\\n2.98980679e-02 2.06530586e-01 -3.94860208e-01 1.95623767e-02\\n1.55059248e-01 -1.99543126e-02 4.17134285e-01 -4.39672433e-02\\n-3.22034687e-01 -1.18730247e-01 -1.37025416e-02 7.95559287e-02\\n-5.45453846e-01 -2.97409385e-01 7.49153376e-01 1.33132815e-01\\n-3.45483720e-02 1.73544973e-01 -5.47120348e-03 1.17789224e-01\\n-2.64169455e-01 -1.67102486e-01 4.16701972e-01 9.25823152e-02\\n1.11929893e-01 1.23912819e-01 -2.91907527e-02 -5.62133372e-01\\n-3.94764233e+00 -2.21454591e-01 1.80969238e-01 -1.81031197e-01\\n2.53551215e-01 -1.42856836e-01 1.13700882e-01 -3.54639478e-02\\n-2.13742614e-01 7.69787505e-02 -1.80049315e-01 -9.10034925e-02\\n2.98240036e-02 2.01403201e-01 1.53158903e-01 3.01327735e-01\\n1.75809562e-01 -1.53357267e-01 7.94503372e-03 4.18291956e-01\\n-1.44939274e-01 -6.75106347e-01 2.44357184e-01 3.86985093e-02\\n2.07101688e-01 2.43951932e-01 -4.12645280e-01 -9.45634022e-02\\n-3.33640009e-01 -1.82919443e-01 7.93724656e-02 -2.75510192e-01\\n-1.87589139e-01 1.76081941e-01 2.25857407e-01 -1.78290501e-01\\n6.95392638e-02 -4.86219704e-01 -2.33247787e-01 -5.57718277e-01\\n1.28402740e-01 -5.32841563e-01 -1.63864374e-01 -2.34032068e-02\\n6.86088443e-01 -1.97434127e-01 2.12084472e-01 -2.54952833e-02\\n2.22779550e-02 1.29567474e-01 2.43963659e-01 1.63500637e-01\\n-1.31249905e-01 -3.08083117e-01 -1.07815385e-01 -1.04557678e-01\\n5.79446673e-01 3.23098987e-01 -4.66593094e-02 -7.38661885e-02\\n5.29460274e-02 -1.61190808e-01 -5.19420564e-01 -2.08581209e-01\\n-1.26669779e-01 -1.59519970e-01 -6.36324763e-01 -4.52374220e-01\\n-1.60976708e-01 -2.79710531e-01 -9.40341577e-02 5.71674764e-01\\n-3.10929418e-01 -2.44900167e-01 -1.69763267e-01 -4.39508677e-01\\n3.75844210e-01 -7.57706538e-02 3.02525554e-02 -2.03929782e-01\\n-2.18563676e-01 -3.87130737e-01 5.51697016e-02 1.14703119e-01\\n8.12435895e-03 -2.79399157e-01 1.87582463e-01 -5.83585724e-02\\n-2.33685344e-01 -5.00634670e-01 3.65390092e-01 1.67401075e-01\\n1.53983906e-01 1.68915793e-01 3.45447600e-01 -1.61245897e-01\\n2.19978124e-01 6.26730397e-02 -2.18038931e-01 -4.35719252e-01\\n-7.95871392e-03 -1.12998739e-01 2.88545251e-01 5.66942990e-03\\n-2.69833282e-02 -1.45034138e-02 -2.01553047e-01 -6.13385998e-02\\n3.99099529e-01 -9.10937488e-02 2.10542917e-01 6.01239428e-02\\n1.29313022e-01 -1.40563592e-01 -1.03979647e-01 -6.82359412e-02\\n-5.41637801e-02 5.46680391e-01 6.97013438e-02 -3.32642347e-01\\n-1.10638216e-02 5.62430859e-01 -4.88555729e-02 3.40930462e-01\\n-2.90427327e-01 4.43888977e-02 -2.28580385e-01 2.62806803e-01\\n-7.70779252e-02 -1.76226318e-01 -1.06690668e-01 -1.54645875e-01\\n-6.73477724e-02 2.71901786e-01 1.67708233e-01 1.47525668e-01\\n9.11052898e-03 -2.92391121e-01 -1.27843246e-01 1.95279688e-01\\n2.65807360e-01 5.91725051e-01 1.84523180e-01 -2.05751956e-01\\n-7.67403170e-02 2.82037854e-01 -2.63195753e-01 2.51173735e-01\\n-2.92140335e-01 2.47334033e-01 -4.97321904e-01 -2.43594617e-01\\n-4.20798004e-01 -4.55444515e-01 1.33028090e-01 3.27022016e-01\\n1.11824915e-01 -1.92242235e-01 1.73050493e-01 -4.78143394e-01\\n1.37256801e-01 2.05488786e-01 9.57686007e-02 1.73359513e-01\\n1.06840869e-02 5.20275474e-01 6.38638530e-03 -1.94139704e-01\\n-1.74674451e-01 1.43114805e-01 -6.24279603e-02 -1.31330520e-01\\n9.93070379e-03 -6.07772827e-01 -1.80330142e-01 4.01308715e-01\\n1.54932499e-01 -1.62273854e-01 -1.38392806e-01 4.12985086e-01\\n-2.34765001e-02 -2.85152435e-01 -2.99318463e-01 -8.95058513e-02\\n2.84278005e-01 7.00266212e-02 2.85052121e-01 -4.21257734e-01\\n-1.10147506e-01 -6.06728010e-02 -1.76553000e-02 4.35293674e-01\\n3.07011977e-03 9.49329585e-02 -1.16761863e-01 -1.28300652e-01\\n3.17327321e-01 1.20570939e-02 -5.44656403e-02 3.04063261e-02\\n1.75823092e-01 -2.05140948e-01 -3.69727254e-01 1.97816283e-01\\n2.79976912e-02 -3.33476126e-01 -3.11218482e-02 2.29069769e-01\\n4.03233208e-02 1.76239967e-01 -6.39955282e-01 -2.23328933e-01\\n-3.68789375e-01 8.23318399e-03 2.99215261e-02 -6.71709299e-01\\n-4.04630378e-02 -2.07612827e-01 -4.10776556e-01 3.43104839e-01\\n6.34002611e-02 -2.35280588e-01 2.28734717e-01 1.14739686e-01\\n-2.38524601e-01 -4.79914322e-02 -2.55090408e-02 1.89372674e-01\\n-2.51750112e-01 -2.28531092e-01 -2.58771069e-02 -1.04859900e+00\\n2.40671605e-01 1.63684651e-01 -1.40454948e-01 1.21072985e-01\\n-2.36333907e-01 -5.74760556e-01 1.61852688e-01 -2.78525472e-01\\n-2.44845301e-01 -7.42048845e-02 -2.55428582e-01 -3.58862489e-01\\n9.23467875e-02 8.73806924e-02 -2.32250512e-01 4.52167392e-01\\n-2.54099667e-01 3.05973887e-01 -2.51253486e-01 5.38473204e-02\\n-2.23680437e-02 -3.16661716e-01 1.51145816e-01 -3.03030133e-01\\n-4.84323025e-01 -1.80845141e-01 -3.14035684e-01 -1.72937632e-01\\n-1.64167099e-02 -4.22721803e-01 -1.31323412e-01 3.66606824e-02\\n4.01354581e-01 8.46928805e-02 -2.46287227e-01 -2.68915147e-01\\n-2.20570248e-04 -5.02850175e-01 9.30902064e-02 -6.18607551e-03\\n-9.14471895e-02 -2.32242167e-01 3.36830258e-01 1.05769739e-01\\n3.40727031e-01 -3.48002017e-01 3.25387418e-01 -4.50710773e-01\\n-2.30001152e-01 -6.25995323e-02 2.32579429e-02 -4.34126332e-02\\n2.73882389e-01 -5.20508349e-01 -1.20421767e-01 2.66817212e-01\\n1.73854098e-01 -8.51445049e-02 3.24640393e-01 -1.77047774e-01\\n-1.28683537e-01 5.24109721e-01 -3.35807651e-01 1.87891781e-01\\n7.71039724e-01 4.58810255e-02 2.22254276e-01 2.90707409e-01\\n2.35723257e-01 3.84947002e-01 3.53067577e-01 -1.05397254e-01\\n-1.06983423e-01 3.25383604e-01 1.71505153e-01 -5.50171137e-01\\n4.29351665e-02 7.34012127e-02 -1.00883245e-01 -3.77746075e-01\\n6.61653340e-01 3.28182697e-01 -4.88130629e-01 -1.97904333e-02\\n-2.12527037e-01 -2.63930142e-01 2.65029728e-01 -7.83672631e-02\\n-4.02277224e-02 -1.92227811e-02 3.97215724e-01 -3.30482349e-02\\n3.18275034e-01 5.40801764e-01 -2.46287823e-01 -3.21044952e-01\\n-1.06650002e-01 3.03066045e-01 -6.22306094e-02 6.77918434e-01\\n-2.86907792e-01 3.26790154e-01 -3.37926298e-03 1.22265533e-01\\n-1.48329409e-02 2.38707870e-01 2.32175916e-01 1.27275273e-01\\n1.68684274e-01 1.46489263e-01 6.15396261e-01 3.49223256e-01\\n3.92903328e-01 2.98387706e-01 3.06499422e-01 1.14283830e-01\\n3.29346895e-01 4.15820837e-01 3.07956100e-01 -3.50653417e-02\\n2.65976656e-02 -1.27079263e-02 2.82396376e-01 7.64356926e-03\\n3.31102073e-01 4.95255589e-01 -1.16407536e-02 8.13368917e-01\\n3.81755292e-01 3.30624819e-01 6.30647540e-01 -6.30690098e-01\\n-2.15685636e-01 1.46872848e-02 3.83711755e-01 -4.11241919e-01\\n1.76732212e-01 2.50810206e-01 -1.34737775e-01 1.66641891e-01\\n-3.53505015e-01 -3.70308578e-01 -2.35846695e-02 1.63096651e-01\\n-7.22845942e-02 -4.17674065e-01 -1.20729670e-01 1.65907383e-01\\n6.19453378e-02 -7.16656297e-02 -4.13753211e-01 -1.23452649e-01\\n-2.19013140e-01 4.36485335e-02 -1.54438496e-01 1.04949269e-02\\n-1.48485333e-01 -1.88259929e-01 3.02355010e-02 -5.32700345e-02\\n1.56755939e-01 -5.27805276e-03 1.26039423e-02 -7.82055855e-02\\n3.42981815e-01 1.35030523e-01 4.55368638e-01 1.24912597e-02\\n4.63825725e-02 -1.82033420e-01 -1.86582953e-01 2.30203599e-01\\n3.48383963e-01 1.30817536e-02 -4.37957495e-02 1.54901505e-01\\n-8.08587968e-02 -2.76071846e-01 2.65143335e-01 2.46993884e-01\\n-4.08186436e-01 1.74535476e-02 -1.52755722e-01 2.31162786e-01\\n2.76306085e-02 1.86376497e-01 -9.97461155e-02 2.46973168e-02\\n-1.50751829e-01 -4.15521204e-01 1.17535584e-01 -8.24429616e-02\\n-1.69555515e-01 1.32224895e-02 3.77371758e-01 3.35330486e-01\\n-2.99781621e-01 3.06778345e-02 -1.12416171e-01 1.21003404e-01\\n-1.14030302e-01 1.70745701e-01 -1.28754660e-01 -2.81391144e-01\\n-3.28848183e-01 1.49257451e-01 -4.51760553e-02 1.01898402e-01\\n4.68550436e-02 2.63695002e-01 1.40488725e-02 4.00250629e-02\\n3.89912277e-01 -9.32000726e-02 -1.88357100e-01 -1.33996591e-01\\n-2.88251102e-01 7.23837093e-02 -6.42600060e-02 -1.68910474e-01\\n2.40446597e-01 -3.39556009e-01 -1.02752298e-02 -1.25127956e-01\\n-5.28026633e-02 -3.32377017e-01 1.13458291e-01 -1.24936044e-01]]',\n", + " \"You will work in Global Logistics business development and derive and define from our strategy and future business potentials concrete project opportunities in the field of trainings, digital media and communication. You can drive, lead and implement global logistics projects with focus on competencies and trainings. You design and create digital media supported communication materials to strengthen our offering in transfer of knowledge and communication in an effective, target group-oriented approach. Who is Hilti? If you’re new to the industry, you might not have heard of us. We provide leading-edge tools, technologies, software and services for the global construction sector. We have a proud heritage, built over 75 years, and a worldwide reputation for pioneering products and exceptional service. With some 29,000 people in more than 120 countries, which we’re looking to expand, we’re a great place for you to show us your worth, step up to new challenges and grow your career. What does the role involve? You lead and drive project execution within global logistics where design tasks play a key role. You drive the learning experience of your stakeholders through training program and platform design. You ensure proper implementation including hand-over and trainings to the end users. You know which methods contribute to understanding a communicative problem in all its complexity. You formulate precise communication goals and define the working steps necessary to achieve a specific goal. Out of the box thinking and creativity helps to find innovative solutions. You design required film and picture material to serve your stakeholders requirements. After a sound analysis and fact base of the as-is situation you define the required steps to achieve the targeted solution. You manage the change with different stakeholder groups and communicate regularly to our management team. Our department drives overarching, cross-functional initiatives in a global set-up and it’s your opportunity to be part of this. What do we offer? Show us what you’re made of and we’ll offer you opportunities to move around the business – to work abroad, experience different job functions and tackle different markets. It’s a great way to find the right match for your ambitions and achieve the exciting career you’re after. We have a very thorough people review process, unlike any we know of in any other business. We screen everyone in the company in a yearly career performance matching process. It means we can pair talent with opportunities - developing our people in their current roles or challenging them to work in new ways or in new places. It’s how we find the right fit and further our teams personally and professionally. Additionally, we offer you a competitive salary and a wide range of benefits, these may include day care for your kids or a free in-house gym. Why should you apply? Within this role you have a unique chance to connect with many people in a wide variety of roles across our global organisation. Hilti's unique company culture stands for an ambitious but caring working environment. If you are looking to develop your career with a global player and international innovation driver and want to be part of a great, international team, we strongly appreciate your application. What you need is: A University degree ideally in Supply Chain or Media related Arts and Design Excellent networking and interpersonal communication skills Experience in project management, film production, photography and interactive design Ideally functional expertise in logistics and/or communications Fluent in English any other language a clear benefit\",\n", + " '[\"Professionalism\", \"Construction\", \"Interpersonal Communications\", \"Management\", \"Communications\", \"Distributed Team Management\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Tooling\", \"Stakeholder Requirements\", \"Global Logistics\", \"Supply Chain\", \"Industrialization\", \"European Training Programs\", \"Films\", \"Digital Media\", \"Idealization\", \"Executable\", \"Hostile Work Environment\", \"TARGET 3001!\", \"Cross-Functional Coordination\", \"Logistics\", \"Personalization\", \"Product Photography\", \"Project Management\", \"Interactive Design\", \"Additives\", \"Derivatives\", \"Media Relations\", \"Business Development\"]',\n", + " \"['English', 'Macedonian']\"],\n", + " ['4',\n", + " 'embedded software engineer',\n", + " 'Baden',\n", + " 'Electrical & Electronic Manufacturing',\n", + " 'www.abb.com',\n", + " '[[ 9.44455937e-02 8.19157958e-02 5.63502014e-01 -5.08848056e-02\\n3.50969344e-01 -2.76040912e-01 1.35221630e-01 4.39686060e-01\\n-7.29296496e-03 -5.64344585e-01 1.68385301e-02 -3.31927925e-01\\n-7.71635994e-02 3.30822080e-01 7.84534141e-02 4.18443978e-01\\n2.33627394e-01 2.24189907e-01 -5.43862756e-04 3.76309365e-01\\n3.00296783e-01 -1.11178532e-01 3.19490731e-01 7.81470060e-01\\n5.00186384e-01 -6.43389253e-03 -2.03709714e-02 -7.39227235e-02\\n-1.69755980e-01 -1.86947197e-01 4.51649994e-01 -6.46332875e-02\\n-4.97290678e-02 -3.76096576e-01 1.77508175e-01 -1.00913970e-02\\n-3.07140112e-01 -3.19499522e-01 -4.56102341e-02 1.97524652e-01\\n-6.06874764e-01 -3.33050638e-01 1.42538724e-02 9.72480476e-02\\n-1.78674817e-01 -3.15128088e-01 4.44012880e-02 1.24002632e-03\\n1.55759931e-01 4.79675159e-02 -3.24427664e-01 2.61151373e-01\\n-8.45210701e-02 -1.46565199e-01 1.67618081e-01 5.33854008e-01\\n-1.25312686e-01 -3.62050444e-01 -5.42131126e-01 -3.03777784e-01\\n1.04489349e-01 -3.23164687e-02 6.64573982e-02 -3.28283191e-01\\n1.78316414e-01 1.38283700e-01 6.71447292e-02 3.86733562e-01\\n-8.10554385e-01 -7.17492104e-02 -2.34958604e-01 -1.59622386e-01\\n-1.70426518e-01 -1.31457970e-01 -2.15910524e-01 -1.86017692e-01\\n-3.30140442e-01 4.40005094e-01 1.24550775e-01 -3.98064889e-02\\n-1.28412932e-01 3.68464947e-01 -2.82093316e-01 3.35493565e-01\\n1.45991147e-01 2.73889422e-01 6.49796352e-02 1.82568297e-01\\n-2.84798414e-01 6.21928215e-01 -3.85314934e-02 -2.73899406e-01\\n1.80488214e-01 1.93990231e-01 4.08272952e-01 -3.46982121e-01\\n2.69452423e-01 -1.48110688e-01 -4.16598380e-01 3.68031174e-01\\n2.74698526e-01 -2.59090900e-01 2.07451329e-01 -1.32720396e-01\\n-1.69383287e-02 6.57975227e-02 1.89303588e-02 3.90754826e-02\\n-1.10728025e-01 3.34800750e-01 1.19307578e-01 -5.96255511e-02\\n-1.52843833e-01 -3.19730073e-01 -2.44778022e-02 3.54123637e-02\\n1.69239059e-01 7.44370222e-02 1.27002433e-01 4.07956056e-02\\n3.29249859e-01 -6.86074421e-02 -1.40775423e-02 7.91250110e-01\\n-4.14038412e-02 3.44226435e-02 -3.03046018e-01 1.90383583e-01\\n-1.24875885e-02 -3.24122757e-01 4.27497447e-01 2.57954508e-01\\n-2.78365482e-02 -3.52918565e-01 -2.17592463e-01 4.37834114e-01\\n1.41081452e-01 -1.64363578e-01 8.35175347e-03 2.56889999e-01\\n-2.13042516e-02 -3.59973967e-01 6.68168604e-01 1.41048953e-01\\n1.97151482e-01 -8.83003175e-02 1.03019504e-02 -2.09597439e-01\\n-3.99627313e-02 1.15589567e-01 -4.47824486e-02 -9.88535509e-02\\n-2.02743039e-01 -1.84443504e-01 -1.99140027e-01 -1.85560465e-01\\n-3.06696892e-01 2.15332791e-01 -1.45277334e-03 1.16878739e-02\\n1.73185199e-01 -2.29488052e-02 -1.53873354e-01 3.33860338e-01\\n-1.91176489e-01 9.26422924e-02 8.44702572e-02 2.14684725e-01\\n-3.33916724e-01 1.40199840e-01 -1.45089298e-01 -2.95139104e-01\\n6.12009406e-01 1.40692964e-01 1.04293779e-01 1.08021639e-01\\n2.85288215e-01 -2.04046932e-03 -7.12855160e-02 2.24155709e-01\\n-6.95347726e-01 3.54402214e-01 -1.69917084e-02 -2.34084100e-01\\n2.01069131e-01 -9.71908644e-02 2.08226830e-01 -9.05465111e-02\\n1.25118181e-01 -3.41816922e-04 -3.44321370e-01 -1.58369228e-01\\n-6.73106685e-02 -1.87789146e-02 2.63772607e-01 -4.01616484e-01\\n-2.58740604e-01 5.88964298e-02 -3.81265372e-01 -1.76473528e-01\\n8.97735134e-02 1.54854015e-01 1.68160468e-01 1.23055570e-01\\n-2.55390167e-01 -2.80643344e-01 2.48652622e-02 -2.87167042e-01\\n-9.85697377e-03 -1.03435092e-01 -3.42951089e-01 1.04550891e-01\\n1.34153083e-01 2.18130695e-03 -1.66670367e-01 -4.54536900e-02\\n-7.90764242e-02 -1.09120041e-01 -7.47692510e-02 3.42213288e-02\\n2.22355321e-01 7.39929453e-02 -3.76479417e-01 2.46167049e-01\\n4.24047932e-02 6.74152911e-01 -3.15958913e-03 -6.32288039e-01\\n2.51921892e-01 4.10951376e-01 1.63629986e-02 -3.94905686e-01\\n6.04256809e-01 -2.03794643e-01 -4.64639515e-02 7.96079412e-02\\n-5.78041494e-01 -4.00112897e-01 2.23781183e-01 -2.65668094e-01\\n-1.62301823e-01 2.95313567e-01 6.50481731e-02 2.27765158e-01\\n8.82459208e-02 -1.86405927e-01 -3.94323654e-03 3.95162813e-02\\n3.00392527e-02 -3.59372228e-01 -4.80258614e-01 -2.26390854e-01\\n-1.08292773e-01 -1.85057580e-01 -6.70908093e-02 -5.54728091e-01\\n-1.72343016e-01 -3.20154458e-01 -1.11754857e-01 2.23503318e-02\\n3.53846848e-01 -1.61104873e-01 7.61720017e-02 -2.01956201e-02\\n-1.27225384e-01 -5.95888853e-01 4.19439524e-02 1.51977643e-01\\n4.34980184e-01 9.41428021e-02 1.58808127e-01 7.91271999e-02\\n3.08799557e-02 7.31841266e-01 -5.17323986e-02 1.35452384e-02\\n3.36634845e-01 1.63595289e-01 2.91258637e-02 -7.08558634e-02\\n1.95284531e-01 2.73507267e-01 -3.05921912e-01 -8.49243030e-02\\n-1.47697851e-01 -3.53786610e-02 3.74224454e-01 8.98819044e-02\\n-2.78714418e-01 -1.27261341e-01 -9.57526565e-02 -5.27788140e-02\\n-4.67785060e-01 -8.71129483e-02 5.62344134e-01 1.77540407e-01\\n1.99571848e-01 2.15717405e-01 1.30024254e-01 3.50807831e-02\\n-9.59059000e-02 -2.74598867e-01 1.31242633e-01 1.92393079e-01\\n1.42739356e-01 1.58372849e-01 8.66615251e-02 -4.77718532e-01\\n-3.21362376e+00 -1.27706468e-01 3.26143615e-02 -2.68081337e-01\\n2.05809757e-01 -3.82707305e-02 7.37870336e-02 2.11014859e-02\\n-2.93290764e-01 1.11339755e-01 -1.72796607e-01 -2.04338148e-01\\n3.88372153e-01 8.05683434e-02 1.24325275e-01 2.46699095e-01\\n2.55205095e-01 -2.48132244e-01 -1.07070617e-01 3.39558244e-01\\n-2.23342210e-01 -6.05645299e-01 1.08856656e-01 -9.45410728e-02\\n4.60526258e-01 1.76293656e-01 -2.54504383e-01 -2.29922578e-01\\n-1.65887669e-01 -1.37719348e-01 1.15290739e-01 -3.51856679e-01\\n-1.59016680e-02 2.42202967e-01 1.70210123e-01 -7.53217414e-02\\n1.73121825e-01 -3.95802498e-01 -1.84000269e-01 -3.22794557e-01\\n8.42883363e-02 -4.82069016e-01 -9.83572453e-02 -5.14811054e-02\\n7.75866330e-01 -3.32187623e-01 1.04762517e-01 1.16812140e-01\\n7.87405148e-02 2.11078182e-01 2.33645082e-01 1.43218964e-01\\n-7.97652751e-02 -4.58181322e-01 -1.20451055e-01 -1.96667109e-03\\n3.83032233e-01 6.11046851e-01 -1.33877143e-01 -1.93955660e-01\\n7.84833804e-02 -1.36416361e-01 -3.51072460e-01 -9.84001756e-02\\n-1.37892693e-01 -2.94640511e-01 -6.61565542e-01 -3.89979810e-01\\n-4.98056822e-02 -9.31452215e-02 -2.25687966e-01 5.78052580e-01\\n-3.16207737e-01 -2.44107723e-01 -3.19399349e-02 -3.02168846e-01\\n3.49516004e-01 -2.80135125e-02 3.74437869e-02 -2.39450470e-01\\n-2.09895670e-01 -3.71009320e-01 -2.48589981e-02 1.29967764e-01\\n8.83619562e-02 -2.92860776e-01 2.01229677e-01 -8.56387392e-02\\n-3.23801994e-01 -4.06084776e-01 2.40027636e-01 1.90647408e-01\\n2.10866034e-01 1.81887999e-01 2.46568084e-01 -1.08552910e-01\\n1.01922199e-01 4.67082523e-02 -5.03175519e-02 -3.43639135e-01\\n7.68815577e-02 5.68023324e-02 3.76061589e-01 -1.56299278e-01\\n-4.53602336e-02 4.25811764e-03 -2.26291105e-01 -1.34856224e-01\\n2.04281479e-01 -1.97058305e-01 8.05095062e-02 -4.54995558e-02\\n2.25895807e-01 -1.75859019e-01 3.35132740e-02 -1.32233098e-01\\n8.30542892e-02 5.35013199e-01 -9.71869752e-02 -2.91745096e-01\\n-1.09304696e-01 4.72423226e-01 -3.31872627e-02 -8.99708495e-02\\n-2.45047897e-01 -4.56154011e-02 -2.69466490e-01 2.54187733e-01\\n-3.05677764e-03 -2.20200762e-01 -2.15338156e-01 -1.99912146e-01\\n-1.98552936e-01 3.01215798e-01 2.15023547e-01 1.47305392e-02\\n-1.15542058e-02 -6.41823530e-01 -1.27334923e-01 3.29276323e-01\\n1.98866010e-01 5.29311478e-01 5.62018678e-02 -1.49173990e-01\\n5.27883396e-02 4.30156589e-01 -1.45481661e-01 1.85976923e-01\\n-2.19328642e-01 9.48670357e-02 -3.97800267e-01 -2.93729365e-01\\n-3.20212513e-01 -3.63587707e-01 5.07303476e-02 2.90860862e-01\\n2.12402880e-01 2.30785441e-02 1.42129272e-01 -4.96962368e-01\\n1.86539158e-01 1.45900780e-02 1.97389245e-01 1.61676094e-01\\n6.99649286e-03 5.04018247e-01 7.32800290e-02 -2.58128405e-01\\n-7.83297867e-02 -8.96098763e-02 -1.92659065e-01 6.46668896e-02\\n3.63535993e-02 -5.02627850e-01 -1.32412851e-01 5.23041010e-01\\n1.11213453e-01 -4.58703339e-01 -1.41389631e-02 2.75449008e-01\\n-3.86839621e-02 -2.23374858e-01 -3.79868358e-01 9.73156020e-02\\n3.35787833e-01 -1.24054300e-02 3.97544742e-01 -4.82110023e-01\\n1.87838823e-02 4.01211604e-02 -1.09320797e-01 3.96244347e-01\\n-1.34764379e-03 -9.03705359e-02 -3.43555748e-01 -3.56148869e-01\\n3.28660697e-01 -3.49560380e-01 -1.68091938e-01 1.48189038e-01\\n-9.82989818e-02 -5.67697026e-02 -5.49072087e-01 5.75330928e-02\\n2.58149467e-02 -2.37905443e-01 -7.42336363e-02 2.20078424e-01\\n6.35638684e-02 1.33077085e-01 -5.31428874e-01 -3.21336210e-01\\n-2.04310462e-01 6.72797710e-02 2.32783869e-01 -4.82693374e-01\\n-9.54718217e-02 -1.19405188e-01 -4.76042122e-01 1.44646332e-01\\n-7.67546520e-02 -2.05383465e-01 2.89014608e-01 -6.78008795e-02\\n-2.32997820e-01 1.08635791e-01 -7.49682337e-02 3.77301484e-01\\n-2.78715938e-01 -3.62616211e-01 -7.87638053e-02 -9.38132584e-01\\n1.04415484e-01 4.44545090e-04 -1.22815266e-01 2.24401146e-01\\n-2.10810497e-01 -6.81899428e-01 7.30247721e-02 -2.38315985e-01\\n-7.75491819e-02 -1.98459625e-01 -1.47122890e-01 -6.17725074e-01\\n9.21134949e-02 3.67256626e-02 -2.69750655e-01 4.78108823e-01\\n-1.57720134e-01 2.34296352e-01 -2.26533115e-01 -1.31450146e-02\\n-1.79156929e-01 -3.71780127e-01 3.11059862e-01 -5.66659153e-01\\n-3.47285718e-01 -6.33208081e-02 -4.06613290e-01 -2.90342480e-01\\n-2.55671024e-01 -2.17174739e-01 -1.48582747e-02 1.42903924e-01\\n2.50248790e-01 3.47621419e-04 -2.03440398e-01 -3.05097580e-01\\n1.36327922e-01 -6.15627408e-01 6.71369806e-02 4.54327799e-02\\n-1.80895597e-01 -9.97001976e-02 1.11819811e-01 1.29602730e-01\\n2.22770259e-01 -5.11447251e-01 8.74531493e-02 -5.91291428e-01\\n-3.03895891e-01 1.13610886e-01 4.38556708e-02 1.03639066e-02\\n3.44823927e-01 -3.51157576e-01 -1.19346000e-01 2.50242084e-01\\n1.16898037e-01 5.75972125e-02 2.25279734e-01 3.98896858e-02\\n-8.93052816e-02 2.18623236e-01 -1.11724257e-01 1.80145100e-01\\n8.07665169e-01 -3.82628664e-02 1.16244428e-01 2.39452764e-01\\n7.68164769e-02 2.05941901e-01 3.17413390e-01 9.55351628e-03\\n-1.07600510e-01 2.07584918e-01 1.65418819e-01 -4.05929059e-01\\n1.09308343e-02 7.45122880e-02 -8.57119858e-02 -3.43335658e-01\\n5.62768221e-01 5.83105683e-01 -4.34369296e-01 -8.02773908e-02\\n-2.01161817e-01 -1.32535130e-01 -1.46283492e-01 -1.08907737e-01\\n5.08581549e-02 -3.35581861e-02 4.59822893e-01 -1.18309528e-01\\n1.98013857e-01 4.46396947e-01 -1.28376156e-01 -2.63805896e-01\\n-1.29928187e-01 2.46007517e-01 -1.36377230e-01 2.99094707e-01\\n-1.86225832e-01 4.51189786e-01 3.33295646e-03 -7.89308269e-03\\n3.44015472e-02 1.43721476e-01 -5.31604923e-02 1.64403096e-01\\n2.57151723e-02 2.34947771e-01 4.47311908e-01 2.78538823e-01\\n3.43313724e-01 2.46951282e-01 2.01369703e-01 2.73908973e-01\\n4.32493299e-01 3.41295451e-01 3.28536987e-01 1.80722520e-01\\n-1.66969493e-01 -1.67034850e-01 2.23061427e-01 -1.02027925e-02\\n2.74556816e-01 3.16698849e-01 8.14201385e-02 8.30318570e-01\\n2.16436699e-01 4.17690068e-01 7.69516468e-01 -5.66127598e-01\\n-3.51016462e-01 -1.21938698e-01 3.46753716e-01 -3.02452326e-01\\n-2.77351458e-02 6.54722974e-02 8.17182958e-02 1.91140622e-01\\n-3.84580553e-01 -2.14866295e-01 -7.41764009e-02 4.19903427e-01\\n-1.29716927e-02 -3.57169569e-01 -1.46903768e-01 1.48658946e-01\\n-1.55098394e-01 4.79572453e-03 -6.50560617e-01 -5.31746494e-03\\n-3.07356194e-02 -2.35623032e-01 -2.00663209e-01 -1.61033690e-01\\n8.27816315e-03 -3.17662925e-01 2.50534546e-02 -1.25128021e-02\\n2.05654472e-01 2.26222705e-02 -6.37163445e-02 -1.22207463e-01\\n3.95160764e-01 1.18295871e-01 4.28587854e-01 -5.12531251e-02\\n2.27269307e-01 -2.57274747e-01 -1.91123277e-01 7.90884495e-02\\n3.91663879e-01 3.40597369e-02 -5.86856119e-02 1.36408791e-01\\n-1.55783832e-01 -5.58848307e-02 9.23187286e-02 1.72170177e-01\\n-4.31719422e-01 1.47555500e-01 -1.45519406e-01 1.19274996e-01\\n1.65213689e-01 1.08521074e-01 -1.65876150e-01 -4.70097130e-03\\n-1.69363707e-01 -3.52916181e-01 6.09842241e-02 -8.54521021e-02\\n-2.09128663e-01 6.20565936e-02 2.18479842e-01 2.39659548e-01\\n-2.32759282e-01 1.37871429e-01 -6.60920143e-02 5.27954213e-02\\n1.25214398e-01 1.65092751e-01 -2.77583569e-01 -4.04194832e-01\\n-2.70463765e-01 4.47819419e-02 -2.66466200e-01 7.59509951e-02\\n1.09994300e-01 4.21287537e-01 1.20219663e-01 -1.25737451e-02\\n4.97084409e-01 -2.33047187e-01 -1.74440071e-01 -1.36895373e-01\\n-2.20770702e-01 -1.71705157e-01 -1.18277475e-01 3.76205035e-02\\n7.50041977e-02 -3.03812832e-01 4.59756411e-04 -2.19658047e-01\\n2.19671056e-02 -2.26559922e-01 1.80308178e-01 -3.30553919e-01]]',\n", + " 'Our global R&D team in Substation Automation area within the Power Grids currently has an opening for an Embedded Software Developer. Do you combine an excellent understanding of software engineering with the ability to improve your skills continuously as technology evolves? Imagine what we could achieve together. Join us!Your responsibilitiesYour backgroundMore about usBring your very own sense of pride and purpose as you help us drive forward the Fourth Industrial Revolution – creating a sustainable future for our planet, and your career. Join ABB and harness the power of our diverse global network, as you collaborate with and learn from our world-class teams. Above all, challenge yourself every day. Let’s write the future, together. It is an exciting time to join ABB Power Grids. ABB and Hitachi have signed an agreement to create a joint venture (JV). By combining ABB Power Grids’ with Hitachi’s complementary strengths, we plan to form a new and stronger global leader in the power sector. ABB Power Grids and Hitachi will have more than 230 years of combined heritage and experience. Together, we will be well-positioned to shape the future of energy, with pioneering technologies, as the partner of choice for enabling a stronger, smarter and greener grid. The transaction is expected to be completed by the first half of 2020, subject to regulatory approvals. Join us on this exciting journey. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Tamara Hofmann Talent Partner Phone: +41 79 627 53 03 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer',\n", + " '[\"Collaboration\", \"Writing\", \"Planning\"]',\n", + " '[\"Automation\", \"Tooling\", \"Imagine (3D Modeling Software)\", \"Receivables\", \"Library For WWW In Perl\", \"Component Object Model (COM)\", \"Sustainability\", \"Embedded Software\", \"Joint Ventures\", \"Software Engineering\", \"Industrialization\"]',\n", + " \"['English', 'Zulu']\"],\n", + " ['75',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.88269430e-01 2.94415712e-01 4.65653837e-01 3.20367999e-02\\n4.92364705e-01 -2.39974439e-01 4.56440225e-02 4.08633798e-01\\n-6.60782233e-02 -3.07340473e-01 -4.99879420e-02 -3.57966393e-01\\n-9.61383581e-02 5.20589724e-02 1.92756921e-01 5.40300012e-01\\n1.87373698e-01 1.09871030e-01 -1.71182752e-01 2.59725928e-01\\n1.42362937e-01 -1.25704765e-01 -1.36242777e-01 6.12491786e-01\\n4.32368129e-01 1.18007004e-01 -1.07605234e-01 7.32942373e-02\\n-3.29941064e-01 -3.53537619e-01 3.49485755e-01 1.35626510e-01\\n-1.16302557e-01 -2.76263446e-01 2.23853681e-02 1.38314828e-01\\n-2.66342759e-01 1.49740279e-01 -1.62441775e-01 2.28874490e-01\\n-5.21949828e-01 -3.80610555e-01 1.24726042e-01 5.69287576e-02\\n-2.30980337e-01 -5.01978517e-01 7.23628253e-02 -3.05285007e-02\\n1.09335929e-01 6.63760398e-03 -4.89709556e-01 3.88951659e-01\\n-3.05253148e-01 -8.65540206e-02 2.22193271e-01 6.54473662e-01\\n1.17712185e-01 -6.19670570e-01 -3.76711220e-01 -2.44475782e-01\\n1.50301576e-01 -1.77701354e-01 -9.41498484e-03 -2.03335077e-01\\n5.17016411e-01 -4.54563851e-04 6.75522164e-02 3.42320621e-01\\n-7.57416010e-01 5.64196780e-02 -3.46332759e-01 9.00896564e-02\\n-4.55955803e-01 1.02034509e-01 -4.42752272e-01 -1.41146794e-01\\n-9.41302851e-02 3.13929319e-01 -4.72511426e-02 -3.22457924e-02\\n-1.46124184e-01 2.57565498e-01 -2.47943297e-01 1.48762167e-01\\n4.10624862e-01 1.33050188e-01 1.75440699e-01 4.01848853e-01\\n-4.85546678e-01 4.60051149e-01 2.22902313e-01 -2.23825961e-01\\n1.53370634e-01 1.62705094e-01 4.68522191e-01 1.93209842e-01\\n-1.46002352e-01 2.39386395e-01 -7.94379115e-02 3.35381895e-01\\n2.51808047e-01 -3.22899401e-01 -2.33118404e-02 -3.80338654e-02\\n-1.08537808e-01 -7.96778575e-02 2.23216135e-02 3.32087636e-01\\n-2.49405578e-02 4.29585963e-01 6.98812976e-02 -2.82362998e-01\\n3.15989330e-02 -6.76843107e-01 -2.32206449e-01 -5.72673269e-02\\n-8.31612796e-02 9.41125154e-02 2.68918991e-01 1.88929692e-01\\n1.42619118e-01 1.22361168e-01 1.45803049e-01 9.84593272e-01\\n-3.56659815e-02 1.46662146e-01 -3.42771411e-01 3.87273967e-01\\n2.31375441e-01 -1.02947369e-01 9.60003957e-02 2.71409214e-01\\n1.70765609e-01 -1.14817403e-01 -2.57995903e-01 2.82744199e-01\\n-1.83053941e-01 -1.74135938e-01 -3.14179838e-01 6.30063266e-02\\n-3.00478548e-01 -4.43784714e-01 5.34118712e-01 1.70564398e-01\\n1.72401741e-01 -6.15626872e-02 -7.76170567e-02 -7.75335729e-02\\n-5.96762970e-02 3.84190351e-01 1.36616379e-02 1.66177511e-01\\n-4.02474284e-01 -2.59148717e-01 -2.29905739e-01 3.73752713e-01\\n-5.01178838e-02 1.80127993e-01 -1.03990331e-01 -1.56563133e-01\\n3.36988568e-01 1.71260595e-01 -4.13469106e-01 1.93749726e-01\\n3.04330755e-02 -3.78943592e-01 -1.17401466e-01 3.68799865e-01\\n-2.40738094e-02 2.79067218e-01 -9.15336683e-02 -1.95646629e-01\\n5.87581933e-01 1.51379406e-01 2.17097074e-01 -1.96243688e-01\\n2.55245507e-01 -8.68586376e-02 2.38740906e-01 1.34917200e-01\\n-5.91969073e-01 5.58868766e-01 -2.94694286e-02 -2.50663590e-02\\n1.24925524e-01 1.57795876e-01 4.20997888e-01 -3.48696798e-01\\n-6.63081408e-02 -1.84676439e-01 -4.95259345e-01 -4.02716339e-01\\n-3.63201350e-01 1.06723115e-01 3.83304536e-01 -4.68432069e-01\\n-1.38331056e-01 3.06237906e-01 -6.14820957e-01 3.45885679e-02\\n2.12301895e-01 1.15671493e-01 1.21694863e-01 7.94289932e-02\\n-1.76821858e-01 -6.52069092e-01 1.13280021e-01 -4.75694895e-01\\n-4.46079373e-01 1.16742484e-01 -3.05171400e-01 2.74726480e-01\\n8.47948343e-02 1.32256150e-01 -1.17063478e-01 1.30361006e-01\\n-4.11757946e-01 8.03957954e-02 2.72610307e-01 2.37280726e-01\\n4.01941359e-01 -7.23059326e-02 -5.88317811e-01 4.64930117e-01\\n-1.68919563e-01 4.97859657e-01 3.22472930e-01 -8.22564006e-01\\n5.97204208e-01 1.51202470e-01 -8.07265937e-03 -3.30127418e-01\\n5.56988657e-01 -4.04959708e-01 -5.25767021e-02 2.07152545e-01\\n-3.21261585e-01 -1.85271740e-01 1.76528409e-01 -1.33488148e-01\\n-3.00491065e-01 5.81469536e-01 2.31704623e-01 2.19702050e-02\\n3.97684693e-01 -2.90044606e-01 -1.78917259e-01 -5.47224469e-02\\n-1.72405824e-01 -1.83843717e-01 -2.90238708e-01 1.16904005e-01\\n-6.23293184e-02 -6.24746144e-01 -2.48198256e-01 -3.72073293e-01\\n-2.36780941e-01 -3.40866953e-01 -2.02594623e-01 4.03384119e-01\\n-1.69117358e-02 1.97999984e-01 9.64366198e-02 1.79960020e-02\\n-1.31307647e-01 -7.31711149e-01 -1.81940123e-01 9.58087966e-02\\n4.74857628e-01 3.06269854e-01 2.04044715e-01 -2.15230018e-01\\n5.43423258e-02 5.20833135e-01 -3.91076326e-01 -5.10909975e-01\\n8.04083869e-02 8.38253573e-02 -2.09352896e-02 -4.89137657e-02\\n1.06654584e-01 3.47636938e-01 -1.47396967e-01 7.50367418e-02\\n-2.24379916e-02 -6.17144965e-02 2.97782183e-01 7.78684095e-02\\n-3.70039821e-01 -3.71601492e-01 -2.07914226e-02 3.22257519e-01\\n-5.85093915e-01 -1.73515260e-01 5.93572378e-01 2.70621628e-01\\n1.01286247e-01 6.59207925e-02 2.50757813e-01 -2.79402465e-01\\n-2.15501592e-01 -1.99446365e-01 1.39222890e-01 1.30496740e-01\\n1.39067909e-02 1.92791484e-02 -1.46118179e-01 -4.49922264e-01\\n-3.26628208e+00 -1.83848679e-01 1.29504561e-01 -2.57297575e-01\\n2.93382823e-01 -1.19348779e-01 1.17003702e-01 -9.17301793e-03\\n-3.43547434e-01 -2.31638812e-02 -1.62096292e-01 -8.59299004e-02\\n9.27341953e-02 3.08395326e-01 1.35128096e-01 2.46906385e-01\\n7.40614980e-02 -3.62794608e-01 -1.66733041e-01 4.27620411e-01\\n-3.01885102e-02 -7.50591338e-01 -2.08644569e-03 5.48664331e-02\\n1.69532642e-01 9.09391567e-02 -5.13134539e-01 -9.71382391e-03\\n-1.28732964e-01 -2.87581205e-01 1.40282854e-01 -2.65846550e-01\\n-7.02532455e-02 2.08129898e-01 1.53679892e-01 -1.83512464e-01\\n-9.56930500e-03 -1.07265070e-01 1.67970583e-01 -4.52375710e-01\\n1.61412619e-02 -6.52698815e-01 4.20273244e-02 3.07864919e-02\\n7.38025486e-01 -3.98148507e-01 1.42608374e-01 1.42954201e-01\\n1.07787035e-01 1.38841912e-01 -2.98916493e-02 -2.72784233e-02\\n-4.30978686e-01 -3.60739470e-01 -1.67954788e-01 -1.83997095e-01\\n5.14927328e-01 5.80702424e-01 -1.72071397e-01 6.79594576e-02\\n1.09852158e-01 -4.39544380e-01 -3.35568398e-01 -6.08719170e-01\\n-2.26582527e-01 -9.81216431e-02 -8.28376353e-01 -6.36689603e-01\\n-2.30126157e-01 -1.85489673e-02 -8.43982399e-02 4.40272421e-01\\n-3.63685220e-01 -5.73580086e-01 8.03272426e-02 -6.34262264e-01\\n1.28704607e-01 -2.09271654e-01 1.21051632e-01 -1.17246836e-01\\n-2.66701639e-01 -5.48058629e-01 1.66525021e-01 -2.36293226e-02\\n-9.25231725e-02 -3.40342559e-02 3.14600430e-02 -2.32290566e-01\\n-2.99544483e-01 -5.13821840e-01 4.36507612e-01 6.16393834e-02\\n4.35568750e-01 2.38425359e-01 3.52417886e-01 4.17936258e-02\\n4.15293515e-01 -1.38938040e-01 2.15083629e-01 -3.43741506e-01\\n1.20799124e-01 1.11079076e-02 6.40127301e-01 -3.06822687e-01\\n7.86329284e-02 2.39339143e-01 -1.57358259e-01 -6.36452213e-02\\n3.96684915e-01 5.40778413e-02 -2.96583008e-02 -1.58676744e-01\\n3.87061626e-01 -5.05089402e-01 -3.75695884e-01 2.03914136e-01\\n7.48626888e-02 6.22667253e-01 -3.44784409e-02 -4.05052185e-01\\n-2.28026584e-01 4.73160416e-01 -1.11095876e-01 -1.32100478e-01\\n-2.11307898e-01 7.26202279e-02 -9.08297524e-02 3.71532977e-01\\n5.89091592e-02 -1.60640642e-01 -2.34678239e-01 -8.17123279e-02\\n1.31652385e-01 1.71306983e-01 2.64088392e-01 6.39370177e-03\\n-4.95412461e-02 -1.86557814e-01 -9.97203887e-02 1.47302657e-01\\n3.20441782e-01 3.59083414e-01 1.70089215e-01 -2.62004346e-01\\n4.19486174e-03 1.98775649e-01 -2.35620216e-01 1.57035351e-01\\n-1.54587030e-01 5.32341339e-02 -5.76328695e-01 -2.40192547e-01\\n-1.85274109e-01 -2.75353342e-01 1.83276311e-01 3.45907241e-01\\n2.13971525e-01 -1.92787685e-02 2.79673748e-02 -5.24753749e-01\\n3.62661719e-01 -5.39995497e-03 1.44009039e-01 1.66412532e-01\\n3.58638889e-03 5.68999708e-01 2.19895821e-02 -9.74650458e-02\\n-1.15681797e-01 8.82823765e-02 -3.18924010e-01 -2.56032735e-01\\n1.30526051e-01 -3.14962476e-01 -6.52428642e-02 4.95611578e-01\\n1.57210216e-01 -1.39663652e-01 -2.36905754e-01 9.80673209e-02\\n8.05183798e-02 -2.15315253e-01 -2.70868212e-01 8.39223936e-02\\n1.57498688e-01 2.17461273e-01 2.35859647e-01 -3.01899046e-01\\n-1.97961573e-02 -1.52016887e-02 -8.28664452e-02 4.38381135e-01\\n1.49015188e-01 1.34544492e-01 -9.36422944e-02 -7.01053068e-02\\n5.55711865e-01 -1.10828727e-02 -1.04761655e-02 -7.94074908e-02\\n1.32688716e-01 -2.13220030e-01 -3.96389753e-01 -8.32196251e-02\\n-4.39364389e-02 -2.43469998e-01 4.50570509e-02 3.65874432e-02\\n-1.93033516e-02 -1.21232029e-02 -4.89858806e-01 -2.89203376e-01\\n-3.50638598e-01 -1.77833036e-01 -6.83412142e-03 -3.03559899e-01\\n7.37999827e-02 3.67550831e-03 -5.26130676e-01 3.60974431e-01\\n-2.69663036e-01 1.18405014e-01 1.03282526e-01 2.15934843e-01\\n-3.17366451e-01 -1.06024392e-01 1.38342336e-01 1.96118608e-01\\n-4.12399411e-01 -2.06632197e-01 -1.37588352e-01 -8.35273504e-01\\n1.09795474e-01 -2.02095881e-02 -5.46226762e-02 1.26306331e-02\\n-9.51614901e-02 -6.41413450e-01 1.32072583e-01 -4.08385307e-01\\n-1.87089548e-01 4.98459004e-02 -1.47300452e-01 -4.85029340e-01\\n8.89711753e-02 -3.22291739e-02 -3.26668173e-01 3.39644670e-01\\n-5.87148488e-01 3.29909474e-01 5.32525927e-02 -5.65984240e-03\\n5.43242842e-02 -2.47889578e-01 1.93650723e-01 -2.83480674e-01\\n-4.01788175e-01 -2.56651103e-01 -4.11701262e-01 -2.06531197e-01\\n7.36939311e-02 -3.21049303e-01 -2.27502972e-01 1.33325294e-01\\n2.93392479e-01 1.10224262e-01 3.08118667e-02 -1.98137075e-01\\n9.04416740e-02 -3.98728043e-01 1.08537883e-01 -5.09829760e-01\\n3.66253331e-02 -1.47239700e-01 2.38342732e-01 -1.32043272e-01\\n-3.13957371e-02 -3.19389880e-01 5.13188839e-01 -9.96211618e-02\\n-3.63722235e-01 -1.12524793e-01 4.93032821e-02 -1.85008142e-02\\n2.54790604e-01 -3.77825648e-01 3.78271192e-02 2.35134497e-01\\n6.29791990e-02 9.69918370e-02 2.15945154e-01 -7.78869390e-02\\n-1.52547985e-01 2.24341705e-01 -6.00901484e-01 1.60096258e-01\\n6.97119534e-01 1.90966219e-01 1.19050197e-01 1.90383464e-01\\n1.40702561e-01 4.29484576e-01 5.86250424e-01 6.00471124e-02\\n-3.44946831e-02 3.65413249e-01 3.89545970e-02 -4.59372997e-01\\n-1.16598956e-01 -9.56146717e-02 -2.64635921e-01 -3.34165961e-01\\n6.02541625e-01 4.70442206e-01 -3.92377406e-01 -4.59040672e-01\\n-1.25688002e-01 -1.74879730e-01 2.52172202e-01 6.23230077e-03\\n2.97981538e-02 -1.98150590e-01 6.18046880e-01 2.23093834e-02\\n2.39663437e-01 5.54432690e-01 -1.12897284e-01 -3.42652708e-01\\n-6.25952706e-02 1.14304714e-01 1.21803008e-01 3.25528234e-01\\n-1.30162194e-01 2.47227207e-01 -1.27884209e-01 1.84263319e-01\\n-1.72431171e-01 4.45892476e-02 2.58114755e-01 -6.52618334e-02\\n2.65697539e-01 1.07856952e-01 3.36658925e-01 5.02422273e-01\\n1.07916109e-01 5.28823495e-01 2.42764458e-01 9.28311273e-02\\n2.83513486e-01 5.70623457e-01 4.19378012e-01 1.44155234e-01\\n1.51990866e-02 -3.81157808e-02 1.08616546e-01 3.67246047e-02\\n3.12347233e-01 3.23816121e-01 1.06659077e-01 9.35589433e-01\\n3.23552191e-01 2.40449160e-01 8.18321705e-01 -7.09024608e-01\\n-3.49416822e-01 8.47360864e-03 5.07838666e-01 -3.73273492e-01\\n-2.07140177e-01 9.39184725e-02 -4.60854501e-01 2.19281718e-01\\n-5.40825546e-01 -8.59108269e-02 8.75860155e-02 -5.14688389e-03\\n-3.84437367e-02 -5.14600705e-03 -1.45537660e-01 -2.62594912e-02\\n-1.79057494e-01 -2.16343343e-01 -3.51240128e-01 -3.36673349e-01\\n-3.89728695e-01 -6.03612587e-02 -9.58376080e-02 -8.10959786e-02\\n-8.04964900e-02 -4.85166192e-01 -1.81779921e-01 1.45714119e-01\\n5.73406875e-01 -3.41155261e-01 -1.04799578e-02 -1.19274989e-01\\n8.88882652e-02 3.12621593e-01 5.99316657e-01 2.29373854e-02\\n9.64188054e-02 -1.22467466e-01 -2.70515412e-01 -4.99280468e-02\\n6.98246881e-02 3.98938358e-02 1.61720231e-01 5.11642456e-01\\n-3.64882261e-01 -6.47068322e-02 1.11164786e-01 3.86735111e-01\\n-3.48130554e-01 -1.22803524e-01 3.41155119e-02 3.76313865e-01\\n2.98823360e-02 6.34424686e-02 -2.63587207e-01 2.58080095e-01\\n-3.08461338e-01 -4.07713860e-01 4.67306405e-01 -2.12988108e-01\\n-6.47220090e-02 2.10495219e-01 2.34960943e-01 2.31564343e-01\\n-2.05114931e-01 -3.25790830e-02 -1.02772698e-01 3.21424782e-01\\n3.66750825e-03 5.37799299e-01 -2.01844692e-01 -3.96722555e-02\\n-3.85987490e-01 3.28774035e-01 -1.04661807e-01 1.19756602e-01\\n-6.99125901e-02 3.29342991e-01 -4.32736985e-02 7.71732256e-02\\n2.62525737e-01 2.51134075e-02 -3.44168723e-01 -3.03609818e-01\\n-1.20019034e-01 -2.24394307e-01 2.33965442e-01 -7.28315338e-02\\n1.13918729e-01 -3.42948467e-01 -8.61774758e-02 -7.15436563e-02\\n-2.23539948e-01 -4.78280008e-01 -1.65433869e-01 -2.22498905e-02]]',\n", + " 'Job Informationen Your tasks: Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Your profile: Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English and German Benötigte Skills SQL Server ETL Python Python Englisch',\n", + " '[\"Self-Motivation\", \"Problem Solving\"]',\n", + " '[\"Cloud Services\", \"Front End (Software Engineering)\", \"Dimensional Modeling\", \"Data Warehousing\", \"Python Server Pages\", \"Back End (Software Engineering)\", \"SQL Server Integration Services (SSIS)\", \"Python (Programming Language)\", \"Maintainability\", \"Computer Science\", \"AWS Directory Service\", \"Analytics\", \"Microsoft SQL Servers\", \"Big Data\", \"End Systems\", \"Extract Transform Load (ETL)\", \"Adapter Scripting Language\"]',\n", + " \"['English', 'Venda']\"],\n", + " ['50',\n", + " 'software engineer javascript - electron',\n", + " 'Lausanne',\n", + " '',\n", + " '',\n", + " '[[-2.16984361e-01 2.47328326e-01 4.60690200e-01 -3.80829582e-03\\n4.87593353e-01 -2.68072516e-01 8.08769986e-02 2.64659286e-01\\n1.61599770e-01 -3.96945119e-01 6.94409311e-02 -2.25233674e-01\\n-1.61666527e-01 7.16917813e-02 1.57274976e-01 3.59286427e-01\\n2.89349854e-01 7.53144771e-02 -1.98476180e-01 4.11089778e-01\\n9.10920650e-02 -1.32271528e-01 2.36991700e-02 6.71722054e-01\\n3.67895424e-01 -6.82418644e-02 -2.14523859e-02 -1.44821107e-01\\n-2.87555277e-01 -1.81710750e-01 3.87989283e-01 5.53557798e-02\\n-5.61316609e-02 -4.68790889e-01 8.26489627e-02 1.18044794e-01\\n-1.47008866e-01 1.06756628e-01 -1.54238110e-02 2.88446635e-01\\n-5.19205689e-01 -3.14793885e-01 1.94545373e-01 5.22180535e-02\\n-2.40611762e-01 -3.24620247e-01 1.10267892e-01 -6.39113411e-02\\n5.65126128e-02 2.42470242e-02 -3.89719546e-01 3.32597494e-01\\n-2.75146514e-01 -2.31190830e-01 3.01180601e-01 5.92786551e-01\\n8.60205963e-02 -5.83757043e-01 -4.46018606e-01 -4.07138616e-01\\n1.05363883e-01 -6.14329576e-02 4.36731353e-02 -2.68622667e-01\\n1.64465219e-01 8.96117464e-03 4.09288928e-02 3.73042405e-01\\n-7.71875322e-01 -1.45588517e-02 -1.62073240e-01 3.62619311e-02\\n-2.59667784e-01 -1.56469345e-01 -2.63043940e-01 3.48353758e-02\\n-9.27758366e-02 4.04197216e-01 3.31437141e-02 2.98860334e-02\\n-2.82013893e-01 2.92782843e-01 -1.22094467e-01 4.14290249e-01\\n2.26899236e-01 8.18269029e-02 3.69244456e-01 3.71543169e-01\\n-5.04046440e-01 4.09329832e-01 2.61473119e-01 -3.45394373e-01\\n3.04668427e-01 1.35600030e-01 4.78092402e-01 5.79328090e-02\\n6.85956627e-02 1.99669063e-01 -1.72991455e-01 2.25648314e-01\\n2.85468102e-01 -2.79792368e-01 -2.10790709e-03 -1.17031604e-01\\n9.76025127e-03 5.87621555e-02 -2.86973454e-02 2.74083495e-01\\n-2.63338655e-01 4.75749433e-01 9.23206955e-02 -1.29403532e-01\\n-2.28634030e-01 -4.34640646e-01 -6.38407469e-02 -3.48960273e-02\\n-6.01267908e-03 1.13618001e-01 2.93628037e-01 1.01091713e-01\\n6.83554038e-02 3.98610458e-02 7.18107671e-02 8.95993471e-01\\n-9.97973606e-02 1.75446525e-01 -2.75549322e-01 3.02362978e-01\\n1.39838517e-01 -2.20115304e-01 1.64899975e-01 2.04838097e-01\\n7.92315155e-02 -1.10137433e-01 -2.89252758e-01 3.39985430e-01\\n-8.26392248e-02 -2.26362675e-01 -2.82664239e-01 1.50429577e-01\\n-2.11454719e-01 -5.34839988e-01 6.05862439e-01 1.40454605e-01\\n2.02780113e-01 -3.25939357e-02 9.98170376e-02 -7.15177581e-02\\n-1.56599164e-01 3.27252388e-01 8.38044956e-02 2.10411549e-01\\n-3.46827447e-01 -2.58362055e-01 -2.54080772e-01 2.81304687e-01\\n-2.82904685e-01 1.27986267e-01 -1.12628475e-01 -4.90492471e-02\\n3.24771255e-01 1.43401921e-01 -4.09493178e-01 2.07560822e-01\\n3.64974141e-02 1.06685586e-01 -7.93958008e-02 3.68882567e-01\\n-2.47049242e-01 1.52841642e-01 1.77369080e-03 -9.59287956e-02\\n6.60194278e-01 1.89219490e-01 2.03718841e-01 -1.29405418e-02\\n3.48510474e-01 -1.05178162e-01 1.67732030e-01 9.72393975e-02\\n-5.59597790e-01 2.83899873e-01 -6.15893826e-02 -7.45582432e-02\\n1.61689594e-01 -6.56509995e-02 2.49162346e-01 -3.12815130e-01\\n-8.86580795e-02 -3.10372949e-01 -3.38151902e-01 -3.45325708e-01\\n-3.32324296e-01 -1.68456566e-02 5.51559567e-01 -4.54664230e-01\\n-2.06233919e-01 3.39147866e-01 -5.15813649e-01 -6.68930858e-02\\n2.94150025e-01 1.43077657e-01 1.34460509e-01 1.78093165e-01\\n-1.84689194e-01 -5.90401769e-01 2.09511518e-01 -3.94358099e-01\\n-3.72225970e-01 9.92313176e-02 -3.23168039e-01 1.99441552e-01\\n1.34515855e-02 1.28358245e-01 -1.11713298e-01 1.51010096e-01\\n-2.74894059e-01 -1.39553383e-01 1.64458394e-01 8.39664042e-02\\n1.53742909e-01 -2.44655162e-02 -4.16840911e-01 4.92656529e-01\\n-2.84584701e-01 5.51777959e-01 1.68906569e-01 -1.00097179e+00\\n4.38948750e-01 1.92848623e-01 -1.62233442e-01 -3.35709214e-01\\n4.42121625e-01 -4.00379002e-01 9.81585309e-03 1.21614471e-01\\n-1.55655682e-01 -3.16591114e-01 1.92220986e-01 -1.57167971e-01\\n-2.92347044e-01 6.02918983e-01 1.30972207e-01 1.42911673e-01\\n2.28936940e-01 -3.14608276e-01 -1.30989611e-01 -1.35281552e-02\\n-1.08695008e-01 -1.58863664e-01 -4.98564959e-01 6.50189966e-02\\n2.73016281e-03 -4.63766992e-01 -9.62938666e-02 -3.54545832e-01\\n-2.45752513e-01 -4.40001249e-01 -3.11814308e-01 2.08316505e-01\\n2.14735508e-01 2.10002229e-01 -8.39423090e-02 8.83655697e-02\\n-1.73518300e-01 -6.63348913e-01 2.68893093e-02 1.84902430e-01\\n4.66085285e-01 3.59491587e-01 8.73700753e-02 -6.97378516e-02\\n1.20485835e-02 5.87421060e-01 -3.12461793e-01 -1.94899768e-01\\n1.49408579e-01 1.09702587e-01 2.80579589e-02 -1.99345678e-01\\n1.11310825e-01 5.23705900e-01 -1.84226438e-01 5.12134619e-02\\n4.66163494e-02 -1.59853935e-01 4.32887137e-01 -6.33104593e-02\\n-3.97349715e-01 -3.28812331e-01 -5.16835526e-02 1.57020032e-01\\n-5.44940293e-01 -2.17102870e-01 6.18588686e-01 1.80390954e-01\\n2.43462533e-01 1.95605338e-01 2.63834804e-01 -1.30215988e-01\\n-2.64377534e-01 -2.53432006e-01 1.79646716e-01 6.39385730e-02\\n1.98577404e-01 1.75295115e-01 -1.19914547e-01 -7.02425957e-01\\n-3.07003021e+00 -1.36040241e-01 1.49187088e-01 -3.09070349e-01\\n5.50686829e-02 -2.00229019e-01 -3.22225131e-02 -9.00149941e-02\\n-3.45073581e-01 5.20896800e-02 -9.11865383e-02 -6.14099279e-02\\n4.34269123e-02 2.21733853e-01 1.00709438e-01 9.85089540e-02\\n1.59025460e-01 -1.29781649e-01 -1.09124132e-01 3.51755738e-01\\n-1.68738872e-01 -5.36181688e-01 1.48150370e-01 1.02083357e-02\\n3.38299781e-01 2.17580259e-01 -4.01134193e-01 -1.55760884e-01\\n-1.73380449e-01 -1.81903750e-01 1.14815474e-01 -2.37456322e-01\\n-1.68774500e-01 2.88195401e-01 5.44258431e-02 -6.77648783e-02\\n1.57867223e-01 -3.37007284e-01 -1.00821115e-01 -4.38146204e-01\\n8.42749774e-02 -6.83093369e-01 6.65058941e-03 -8.09046179e-02\\n5.86494505e-01 -3.92720014e-01 1.93776578e-01 1.22755587e-01\\n2.25612402e-01 1.37519509e-01 -4.31953818e-02 2.84514595e-02\\n-4.16152626e-01 -2.58888811e-01 -9.36979726e-02 -1.21094331e-01\\n6.62016869e-01 4.33622599e-01 -2.52848566e-01 -8.90492126e-02\\n1.31818764e-02 -3.73630464e-01 -3.77596021e-01 -2.67544270e-01\\n-1.23406455e-01 -2.20760658e-01 -5.63392103e-01 -3.80340248e-01\\n-2.00155929e-01 -1.14884526e-02 -1.28494143e-01 7.78153121e-01\\n-2.83503830e-01 -2.70865351e-01 7.41136372e-02 -5.21069765e-01\\n6.68309256e-02 -1.52217478e-01 3.16018015e-02 -2.29842335e-01\\n-3.04683149e-01 -4.70074952e-01 6.51771426e-02 4.49224077e-02\\n-2.67719477e-01 -7.20729828e-02 1.31475374e-01 -5.37025854e-02\\n-2.40662932e-01 -3.82742345e-01 4.08334970e-01 1.03325598e-01\\n2.25683242e-01 5.07460423e-02 4.23877180e-01 1.06237503e-03\\n3.85524869e-01 -1.39866978e-01 8.25928524e-02 -4.32771534e-01\\n1.19701825e-01 1.07950002e-01 6.12856567e-01 -1.86873198e-01\\n1.13904439e-02 2.12520659e-01 -1.84825376e-01 -8.64824131e-02\\n3.96646410e-01 4.68606241e-02 5.30983582e-02 -2.08287954e-01\\n2.71222115e-01 -2.78652012e-01 -2.23458499e-01 2.89867502e-02\\n1.43857330e-01 6.73935473e-01 -7.79244080e-02 -3.74739140e-01\\n-1.81756362e-01 4.72727865e-01 -2.58567572e-01 -2.14481860e-01\\n-2.09033966e-01 9.96449292e-02 -1.38533697e-01 3.01110297e-01\\n-2.99443342e-02 -1.30604878e-01 -3.11401606e-01 -1.20983437e-01\\n-1.20461702e-01 2.73498714e-01 1.88145876e-01 -9.42462683e-03\\n-7.57297501e-02 -3.36187899e-01 -8.71223435e-02 1.65335327e-01\\n1.44711792e-01 2.64719725e-01 1.22458756e-01 -2.42398992e-01\\n-6.40826821e-02 2.94860691e-01 -2.56375551e-01 1.77914664e-01\\n-3.61854136e-01 2.38189846e-02 -5.64908803e-01 -2.25544348e-01\\n-1.78597718e-01 -4.69179690e-01 -4.38483693e-02 3.85635853e-01\\n7.48370588e-02 2.37769913e-02 6.99562132e-02 -5.81194520e-01\\n3.45479310e-01 5.62986806e-02 1.99924543e-01 1.22870184e-01\\n-1.25300940e-02 5.21078348e-01 1.66819189e-02 -1.19722322e-01\\n-2.19763309e-01 5.87157607e-02 -1.83466062e-01 -2.70245492e-01\\n6.59055859e-02 -5.11168599e-01 -8.94808322e-02 3.98130536e-01\\n8.99154097e-02 -2.86901861e-01 -2.06030890e-01 1.75973430e-01\\n3.17826346e-02 -2.28518620e-01 -1.93754286e-01 -5.41976914e-02\\n2.71290421e-01 1.13633089e-02 2.53194094e-01 -3.86509001e-01\\n2.63030678e-02 6.24104924e-02 -9.37760323e-02 5.05959630e-01\\n8.67090821e-02 9.53999758e-02 -2.38585979e-01 -6.89462721e-02\\n4.42473173e-01 -1.44382492e-02 -1.02754589e-03 -6.23494610e-02\\n8.09553266e-02 -1.82391942e-01 -5.34317195e-01 1.11188151e-01\\n7.31943399e-02 -1.23662427e-01 6.21760823e-02 1.29745901e-01\\n5.05409986e-02 3.49212363e-02 -4.32053626e-01 -2.52123386e-01\\n-2.84409881e-01 -1.24557734e-01 1.77319512e-01 -5.06900907e-01\\n-8.67056027e-02 1.14911534e-02 -5.10100603e-01 1.67585030e-01\\n-1.40648559e-01 -1.01001129e-01 1.33004218e-01 1.77821293e-02\\n-2.83589602e-01 -1.40907511e-01 1.19096428e-01 2.04352111e-01\\n-2.31966853e-01 -3.59862715e-01 7.18338937e-02 -9.49804187e-01\\n1.50645852e-01 5.29109240e-02 -1.85262650e-01 2.66557503e-02\\n-1.69065475e-01 -8.28825593e-01 2.18786657e-01 -4.41792965e-01\\n-1.76108629e-02 3.22476551e-02 -1.92668214e-01 -4.30712640e-01\\n3.54483724e-02 -1.38740525e-01 -3.46884936e-01 3.58093500e-01\\n-4.05479282e-01 4.44563270e-01 -7.17559829e-02 2.55626626e-02\\n2.17006709e-02 -2.33418167e-01 1.87738299e-01 -4.36710060e-01\\n-3.86021405e-01 -1.27527043e-01 -4.08952147e-01 -3.22280645e-01\\n-5.47178984e-02 -1.98090896e-01 -1.53779030e-01 2.41343632e-01\\n3.42161179e-01 1.37568355e-01 -2.63713673e-02 -3.33576262e-01\\n4.61857580e-03 -5.46018898e-01 -2.28937492e-02 -1.72043920e-01\\n1.89963952e-02 -6.59265742e-02 7.03580976e-02 -2.18595937e-02\\n-2.62241159e-03 -3.22152436e-01 4.95053679e-01 -2.25646734e-01\\n-2.97927618e-01 -1.55594021e-01 -1.68976858e-02 5.57310134e-03\\n2.21843317e-01 -4.20982987e-01 1.70520730e-02 2.13474542e-01\\n1.20399334e-01 1.25198998e-03 1.75928682e-01 -1.83131583e-02\\n8.57932214e-03 6.24902844e-02 -3.35361898e-01 1.41968250e-01\\n7.41594315e-01 3.52552049e-02 4.94780838e-02 1.82384670e-01\\n1.24809414e-01 4.85684842e-01 5.23619950e-01 -7.81468004e-02\\n-1.55109525e-01 2.20729530e-01 2.78808251e-02 -5.39772630e-01\\n-9.08242762e-02 2.75702514e-02 -2.15274036e-01 -2.58071780e-01\\n5.96438706e-01 4.18965131e-01 -3.18432331e-01 -2.76196361e-01\\n-6.34936765e-02 -1.42010525e-01 1.91059843e-01 -3.12325973e-02\\n4.18535657e-02 -2.72309128e-02 5.86416483e-01 -5.81058264e-02\\n3.13183606e-01 5.73815703e-01 -1.97425291e-01 -4.44959998e-01\\n-8.29540789e-02 3.04298729e-01 1.11568041e-01 4.03736055e-01\\n-2.54313529e-01 2.94784904e-01 -5.83625585e-02 6.84980154e-02\\n-9.39929783e-02 1.40189052e-01 1.11439131e-01 8.48587751e-02\\n1.78242907e-01 1.98641643e-02 5.81739306e-01 4.75910366e-01\\n2.74134010e-01 4.08336252e-01 2.64992446e-01 -2.15851553e-02\\n4.42332476e-01 5.94704032e-01 4.46243525e-01 7.14097470e-02\\n6.84871804e-03 1.38607219e-01 9.82580930e-02 -7.98280984e-02\\n3.36412996e-01 4.14020658e-01 9.79866982e-02 8.68765414e-01\\n3.16779554e-01 2.56117463e-01 7.56189823e-01 -6.99035287e-01\\n-3.20901334e-01 -2.09675021e-02 4.62622046e-01 -1.60190627e-01\\n-1.08261831e-01 1.78128019e-01 -2.16427624e-01 2.82039672e-01\\n-3.77715051e-01 -1.34102494e-01 7.36189187e-02 1.99536473e-01\\n-4.06759270e-02 -7.54856616e-02 -2.61872649e-01 5.20264432e-02\\n-2.44342238e-01 -1.23691022e-01 -4.12283212e-01 -6.74104616e-02\\n-1.77591473e-01 -7.07603469e-02 -7.32911676e-02 -8.03401545e-02\\n-8.44757110e-02 -5.59031844e-01 -1.59675717e-01 -7.58429393e-02\\n3.94403756e-01 -1.72692046e-01 -1.13487430e-01 -2.46830374e-01\\n1.83891520e-01 2.16649681e-01 6.61592603e-01 7.54659325e-02\\n4.09996547e-02 -3.14098120e-01 -2.57685393e-01 8.80814046e-02\\n6.05154969e-02 1.24365196e-01 2.27700435e-02 4.48763907e-01\\n-3.46452594e-01 -2.27796789e-02 1.10161468e-01 3.74919593e-01\\n-4.02372777e-01 -1.13916636e-01 -1.47083551e-01 2.39988059e-01\\n1.73752695e-01 2.24646986e-01 -1.43700778e-01 4.26136218e-02\\n-2.18796313e-01 -5.21755278e-01 4.21288639e-01 -9.56290588e-02\\n-2.28566378e-01 6.92903697e-02 7.14899525e-02 1.93465650e-01\\n-1.99437886e-01 -5.82605675e-02 -7.64628425e-02 2.60631084e-01\\n-6.78495085e-03 3.43266100e-01 -9.45562869e-02 -2.27547258e-01\\n-1.89396024e-01 1.46091804e-01 -1.29217923e-01 9.11255628e-02\\n-2.33365148e-02 3.07112068e-01 7.91931003e-02 9.92485285e-02\\n2.95175403e-01 1.12718396e-01 -2.10318327e-01 -2.53449202e-01\\n-1.79807454e-01 -1.99405625e-01 -9.46371332e-02 -9.20641124e-02\\n1.64653271e-01 -3.04555833e-01 -6.15240484e-02 -1.50633171e-01\\n-1.95748568e-01 -2.82617152e-01 -9.10217911e-02 -1.04441129e-01]]',\n", + " 'Software Engineer JavaScript - Electron Starting date: as soon as possible YOUR ROLE: To grow our software engineering team, we are seeking a full stack web developer who will be responsible for defining, designing, implementing, testing and supporting our desktop Electron based application. This application will create added value outputs for our customers. You have a strong knowledge of HTML5/CSS/JavaScript technologies, love TypeScript even more and want to use it to build a cutting edge desktop application. You are familiar with terms like unit tests, integration tests, regression tests and stress tests. You know when good is “good enough” and where to take a closer look. RESPONSIBILITIES: Define, architecture, build, maintain and document our Electron based desktop application Write robust, stable, reliable and maintainable code within committed time frames Develop for testability, ensure software quality, and contribute to test automation/CI infrastructure development and maintenance. Contribute to end-to-end test in typical customer scenarios as well as stress and scale scenarios Deliver fixes for defects and regressions Integrate Flyability low level APIs in the Electron application YOUR PROFILE: 3+ years experienced full stack web developer BS/MS degree in Computer Science or related disciplines Highly Proficient in ES8+ JavaScript, HTML5, CSS You have a passion for building products with great UX Experience with Node.js and Webpack Know how to create a RESTful APIs, including secure authentication Strong knowledge and experience with modern database technologies Familiar with agile methodologies You have excellent communication skills and like challenging the status quo Previous experience of Electron based app development is a major plus Prefer TypeScript over JavaScript is a major plus Experience with one of the following JavaScript frameworks is a plus: Vue.js, React.js, Angular.js or other Experience with other programming language like C++ or Java is a plus Previous experience writing C++/node wrapper is a plus Previous experience with subscription system is a plus 3D graphics (three.js/WebGL/OpenGL) programming experience is a plus In addition to your passion for high tech products, and your motivation to work in a challenging and innovative environment, you can be represented by the following traits: Team player, willing to collaborate with multicultural people from various horizons Passion for web technologies Problem-solving mindset, hands-on, proactive and willing to take ownership Strong commitment to quality, architecture and documentation Flexible and self-motivated with a strong desire to learn Sensitive to the user’s point of view, willing to improve the overall user experience Fluent in English, French would be a plus',\n", + " '[\"Verbal Communication Skills\", \"Self-Motivation\", \"Writing\", \"Collaboration\", \"Proactivity\", \"Infrastructure\", \"Problem Solving\", \"Reliability\", \"Integration\", \"Innovation\"]',\n", + " '[\"Secure Password Authentication\", \"KM Programming Language\", \"Programming (Music)\", \"Cascading Style Sheets (CSS)\", \"Value-Added Services\", \"Unit Testing\", \"Computer Science\", \"Vue.js\", \"JavaScript Engine\", \"TypeScript\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Node.js\", \"Maintainability\", \"HTML5\", \"High Tech Manufacturing\", \"Test Automation\", \"Web Development\", \"Software Engineering\", \"React.js\", \"Software Quality (SQA/SQC)\", \"Webpack\", \"Agile Methodology\", \"Three.js\", \"Electronics\", \"Testability\", \"WebGL\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Cardiac Stress Tests\", \"Angular (Web Framework)\", \"3D Graphic Design\", \"Additives\", \"User Experience\", \"Maintaining Code\", \"Java (Programming Language)\", \"Joint Test Action (IEEE Standards)\", \"OpenGL\", \"RESTful API\"]',\n", + " \"['English', 'Assamese']\"],\n", + " ['78',\n", + " 'data scientist',\n", + " 'Ecublens',\n", + " '',\n", + " '',\n", + " '[[-2.33694956e-01 3.10694486e-01 4.18160260e-01 2.11881120e-02\\n5.00443697e-01 -1.94497660e-01 1.55600877e-02 3.68219316e-01\\n-5.10560069e-03 -4.21176910e-01 -1.71631239e-02 -1.40576616e-01\\n2.05046013e-02 5.14465123e-02 1.00804456e-01 4.40635741e-01\\n2.66335875e-01 1.03887580e-01 -1.78714707e-01 3.87045324e-01\\n1.99175939e-01 -1.87521607e-01 1.27502203e-01 6.93333447e-01\\n4.92713183e-01 -2.11830791e-02 -7.92485103e-02 -5.25545701e-02\\n-2.31206372e-01 -2.70013183e-01 3.10707182e-01 -5.74332699e-02\\n2.15872210e-02 -2.99329877e-01 1.26689702e-01 6.63633347e-02\\n-2.88466960e-01 9.91255492e-02 -1.12298958e-01 1.70360520e-01\\n-4.55864787e-01 -2.54954934e-01 -4.65565622e-02 2.24263333e-02\\n-3.10011983e-01 -3.62532288e-01 -3.89026776e-02 -6.13107905e-02\\n1.89088270e-01 7.77875111e-02 -4.44443345e-01 2.64167577e-01\\n-1.99776679e-01 -2.33396560e-01 2.95734167e-01 6.23479247e-01\\n4.50934917e-02 -4.20679539e-01 -4.89458710e-01 -2.78634846e-01\\n1.16557688e-01 -1.16639726e-01 6.18355535e-02 -2.42787793e-01\\n2.31323600e-01 8.86910409e-02 1.85002424e-02 4.35410947e-01\\n-7.84092247e-01 -1.91704020e-01 -2.07681894e-01 1.23402951e-02\\n-4.06007141e-01 -3.22623886e-02 -3.86694640e-01 -1.56241968e-01\\n-1.01129234e-01 4.20151114e-01 4.80038337e-02 1.50772352e-02\\n-1.61528647e-01 2.81036943e-01 -3.04915220e-01 2.73584455e-01\\n1.02941796e-01 2.79036343e-01 2.70860821e-01 3.73432189e-01\\n-3.85613143e-01 4.36079144e-01 2.41754726e-01 -2.32633501e-01\\n1.76205307e-01 1.06240548e-01 4.02684838e-01 -3.40732709e-02\\n5.77798896e-02 1.65189445e-01 -2.88379312e-01 2.76702106e-01\\n2.82096684e-01 -3.95611554e-01 7.87914172e-03 -8.94999653e-02\\n-6.25511557e-02 8.40330943e-02 -1.40251601e-02 2.31189877e-01\\n-2.59275526e-01 5.51684439e-01 1.46659464e-01 -1.37547225e-01\\n-2.28251547e-01 -5.54201663e-01 -1.58757374e-01 5.78126982e-02\\n7.47821108e-02 2.12494642e-01 2.19253793e-01 2.26380914e-01\\n1.16370395e-01 2.24813446e-02 9.47291628e-02 8.04549098e-01\\n-1.16630517e-01 9.60807726e-02 -2.40479290e-01 3.10207963e-01\\n1.13190107e-01 -1.79855525e-01 1.54276356e-01 2.36554399e-01\\n3.56984660e-02 -9.47168022e-02 -2.18061045e-01 2.29521587e-01\\n-6.06105588e-02 -2.31227845e-01 -2.83477813e-01 1.18313588e-01\\n-8.22055563e-02 -4.50509131e-01 5.74952066e-01 2.31584758e-02\\n1.53814897e-01 -4.48159203e-02 -2.24550851e-02 -8.20790709e-04\\n-7.56019875e-02 3.03169787e-01 9.13372710e-02 1.23072930e-01\\n-3.03916544e-01 -2.50226796e-01 -2.05550730e-01 5.83877154e-02\\n-3.36428940e-01 1.21093690e-01 -1.49086595e-01 -8.47567096e-02\\n2.71635681e-01 2.08488125e-02 -3.83767873e-01 2.71044642e-01\\n-1.30235463e-01 -8.42409208e-02 -3.11831720e-02 2.99951226e-01\\n-1.61675259e-01 2.33679801e-01 -6.71690926e-02 -1.30883873e-01\\n5.50217986e-01 2.00362459e-01 1.86730698e-01 5.74072637e-02\\n4.16112304e-01 -7.64654353e-02 1.65985912e-01 1.46445289e-01\\n-6.16053522e-01 2.94797331e-01 -1.32572711e-01 -2.28586271e-01\\n7.21781477e-02 -7.12005943e-02 2.70072997e-01 -2.85197854e-01\\n1.02354713e-01 -1.22964345e-01 -3.76513153e-01 -2.02733293e-01\\n-2.33798623e-01 -9.22281202e-03 4.65564877e-01 -4.22957778e-01\\n-1.76289026e-02 3.41121376e-01 -4.72027391e-01 -2.33024880e-02\\n2.61357486e-01 2.06141934e-01 1.31217614e-01 1.74730763e-01\\n-1.67744666e-01 -5.34387946e-01 1.35052264e-01 -4.33909267e-01\\n-3.29078257e-01 9.94107500e-02 -2.26713926e-01 3.33410501e-01\\n1.11036092e-01 -1.82715862e-03 -1.51139751e-01 1.67970553e-01\\n-1.18425325e-01 -1.10447332e-01 2.83209413e-01 3.28941941e-02\\n2.14923769e-01 6.44942671e-02 -3.72515410e-01 4.12083060e-01\\n-1.71891153e-01 6.03396297e-01 1.51938602e-01 -8.25392425e-01\\n4.90812927e-01 2.63826311e-01 -4.59370501e-02 -3.21155071e-01\\n6.44851744e-01 -2.84966499e-01 -7.32831145e-03 1.82045624e-01\\n-3.86190504e-01 -3.75351101e-01 2.37068579e-01 -1.66365340e-01\\n-1.99741721e-01 4.85785127e-01 4.40158285e-02 1.30692467e-01\\n1.79745406e-01 -1.60787553e-01 -3.98576073e-02 1.52663261e-01\\n-5.35914041e-02 -2.94805288e-01 -5.18397212e-01 9.26941931e-02\\n-3.32034752e-03 -4.76196647e-01 -2.17280313e-01 -4.25665081e-01\\n-2.85543621e-01 -4.39662457e-01 -1.57982692e-01 1.62631392e-01\\n3.31044137e-01 2.13499740e-01 -7.93696195e-02 -1.45712877e-02\\n-6.71145394e-02 -5.73744237e-01 1.61153320e-02 -3.42152314e-03\\n3.32856089e-01 2.50352800e-01 1.27441794e-01 4.36256528e-02\\n-2.19522528e-02 6.58323348e-01 -2.66560346e-01 -7.67623484e-02\\n1.85713053e-01 1.61428437e-01 -4.22756560e-03 -1.84829593e-01\\n1.29164323e-01 3.03757608e-01 -3.01778555e-01 3.38381715e-02\\n-9.51857269e-02 2.57780049e-02 2.92345256e-01 1.55617343e-02\\n-3.14502805e-01 -2.91422993e-01 -1.84992716e-01 1.99362904e-01\\n-5.02870262e-01 -1.22930110e-01 6.11743093e-01 1.40754446e-01\\n2.12122321e-01 1.37849808e-01 1.78483725e-01 -5.49887866e-02\\n-2.52730638e-01 -2.37880677e-01 2.72285432e-01 1.19225636e-01\\n1.00995198e-01 1.08278088e-01 3.67361568e-02 -6.45773768e-01\\n-3.37454438e+00 -1.89724252e-01 1.42814428e-01 -3.38577360e-01\\n1.43696800e-01 -1.30025804e-01 7.90460850e-04 5.75618772e-03\\n-3.24257165e-01 -6.59538507e-02 -1.53357282e-01 -8.79887938e-02\\n1.11312129e-01 2.64822900e-01 2.32304096e-01 2.98638642e-01\\n1.27467379e-01 -1.62867710e-01 -9.62174162e-02 3.77242118e-01\\n-2.11324051e-01 -5.81725299e-01 1.73958287e-01 6.06971495e-02\\n3.06207120e-01 1.59802139e-01 -3.38576555e-01 -5.65338843e-02\\n-2.50230163e-01 -2.47252196e-01 1.56811714e-01 -2.66218424e-01\\n-9.78930295e-02 3.70669335e-01 1.11472450e-01 -3.69110554e-02\\n1.24919102e-01 -3.92606795e-01 -1.68069433e-02 -3.88697505e-01\\n3.36455740e-03 -8.20426643e-01 -1.06883690e-01 -7.53684193e-02\\n6.40119731e-01 -2.71099359e-01 1.90349251e-01 3.63641493e-02\\n1.95785105e-01 1.30269691e-01 -1.12082675e-01 -2.06818786e-02\\n-1.78427428e-01 -2.77495384e-01 -1.03456229e-01 -9.79371369e-02\\n5.67298770e-01 5.69631875e-01 -2.69044399e-01 8.01320001e-03\\n8.58934447e-02 -2.63506502e-01 -5.48892736e-01 -3.06886792e-01\\n-2.30444178e-01 -9.26887095e-02 -5.49840808e-01 -4.26731259e-01\\n-1.73887193e-01 -8.43783766e-02 -9.15077925e-02 5.37236929e-01\\n-2.44740486e-01 -3.07523429e-01 2.18364410e-02 -4.46015954e-01\\n2.17726916e-01 -5.78427985e-02 5.55722602e-02 -1.57294363e-01\\n-2.49102935e-01 -4.09702212e-01 5.71653396e-02 4.89288606e-02\\n-1.03141606e-01 -1.70892045e-01 1.20945215e-01 -2.24966794e-01\\n-3.17171067e-01 -5.10713279e-01 4.32295084e-01 4.87467349e-02\\n3.29036176e-01 1.11190058e-01 3.36199135e-01 -2.32616439e-03\\n3.67397785e-01 -2.11079836e-01 8.26304704e-02 -4.73270059e-01\\n1.30975902e-01 1.23217061e-01 4.57422286e-01 -2.57095784e-01\\n-2.90559363e-02 7.17845038e-02 -3.32812697e-01 -1.39272260e-02\\n3.24670821e-01 -9.72553063e-03 8.99634138e-02 -1.17377803e-01\\n2.99210072e-01 -1.75929055e-01 -1.96166590e-01 1.49432853e-01\\n1.25814483e-01 5.53664744e-01 -2.02456564e-02 -3.95146817e-01\\n-1.58705860e-01 4.65312690e-01 -1.28688559e-01 -1.64453685e-02\\n-2.20121115e-01 1.04714744e-01 -1.52595073e-01 3.03967416e-01\\n-1.62819047e-02 -2.08631858e-01 -3.24698567e-01 -8.55872259e-02\\n-2.00148061e-01 2.88713664e-01 2.10529864e-01 8.84781405e-03\\n-2.34209150e-02 -4.25555855e-01 4.88475226e-02 2.26361573e-01\\n3.02192241e-01 2.84149259e-01 1.32213458e-01 -3.12475771e-01\\n-2.65542488e-03 2.49389172e-01 -2.19128251e-01 1.43899396e-01\\n-2.30714470e-01 1.13670349e-01 -5.54150343e-01 -3.49009186e-01\\n-1.89482644e-01 -3.14781696e-01 5.19638248e-02 2.31541350e-01\\n9.33595821e-02 -3.79794538e-02 3.64829339e-02 -4.96978492e-01\\n2.50132710e-01 8.91704634e-02 1.41821250e-01 1.04199350e-01\\n6.50435165e-02 4.86761510e-01 -7.43257999e-02 -1.51026547e-01\\n-8.15386027e-02 8.31517857e-03 -2.52564102e-01 -1.61107272e-01\\n2.35367175e-02 -4.73139077e-01 -1.57440469e-01 4.31908786e-01\\n1.75614521e-01 -2.24854723e-01 -2.10265309e-01 2.33494282e-01\\n1.08112328e-01 -3.23333591e-01 -2.15742409e-01 7.69484714e-02\\n3.64243120e-01 2.84955073e-02 3.17728549e-01 -4.48985428e-01\\n-2.92366315e-02 -8.68766103e-03 -1.67075247e-01 3.85697901e-01\\n9.01811421e-02 6.34265393e-02 -1.42284945e-01 -1.18283749e-01\\n4.05384213e-01 -2.07938403e-01 -3.12987890e-04 -3.71236634e-03\\n7.22786337e-02 -1.72924995e-01 -4.16090906e-01 -3.35295871e-03\\n-2.77986359e-02 -1.46082133e-01 6.18476830e-02 6.88482150e-02\\n1.95526797e-02 2.18948331e-02 -4.36302602e-01 -2.52694368e-01\\n-2.61161715e-01 -5.27560525e-02 8.58162493e-02 -4.58270907e-01\\n-2.03491196e-01 -4.92448779e-03 -5.92003286e-01 2.99318612e-01\\n-1.66229084e-01 1.24176955e-02 1.36493877e-01 1.25456434e-02\\n-2.27434918e-01 -6.18282631e-02 1.50179550e-01 2.79138029e-01\\n-2.83006787e-01 -2.85566092e-01 -5.33556268e-02 -1.08658040e+00\\n1.17247723e-01 -1.71513241e-02 -1.50322318e-01 1.47311568e-01\\n-5.30583151e-02 -6.02376044e-01 1.81220829e-01 -4.92458552e-01\\n-1.17195107e-01 -2.31137616e-03 -2.27269471e-01 -4.26067472e-01\\n2.71027815e-02 6.99616503e-04 -3.77176076e-01 3.43522787e-01\\n-3.14913243e-01 3.73485088e-01 -8.71398374e-02 2.94337738e-02\\n-6.90276967e-03 -3.24979097e-01 1.40533581e-01 -4.38480079e-01\\n-4.09763217e-01 -2.08348125e-01 -3.62754285e-01 -2.31102183e-01\\n-1.69482473e-02 -2.97968119e-01 -1.93098947e-01 1.07559025e-01\\n1.68603167e-01 1.07703343e-01 -1.24213314e-02 -2.61103392e-01\\n1.42630473e-01 -5.54382861e-01 1.18775908e-02 -1.13759488e-01\\n-1.04505032e-01 9.37627908e-03 2.58785665e-01 1.09534644e-01\\n1.62994713e-01 -3.25260311e-01 3.87850344e-01 -2.82961816e-01\\n-2.96962291e-01 -1.11226268e-01 1.57088652e-01 2.77211051e-02\\n3.73301774e-01 -4.14922833e-01 -4.56987023e-02 2.81111509e-01\\n3.69533338e-02 3.61954235e-02 2.27839813e-01 -1.51926070e-01\\n-1.39332205e-01 1.41031131e-01 -3.47362369e-01 1.36559248e-01\\n7.64166594e-01 1.19722612e-01 1.56051457e-01 1.89553708e-01\\n2.05733135e-01 3.62886488e-01 5.64511836e-01 -5.12254164e-02\\n-1.73758976e-02 3.16232383e-01 5.70267364e-02 -5.05842447e-01\\n-9.85049382e-02 -2.23243665e-02 -2.16953263e-01 -3.45784515e-01\\n7.71083236e-01 4.01447922e-01 -3.67944747e-01 -2.82530814e-01\\n-2.55333722e-01 -1.92200005e-01 1.42441377e-01 -1.16522320e-01\\n-9.79781989e-03 -1.26149982e-01 5.14795363e-01 -3.24882604e-02\\n2.08125204e-01 3.93640727e-01 -2.60371715e-01 -3.43324125e-01\\n1.63293071e-02 1.88208476e-01 1.11930065e-01 4.07239705e-01\\n-2.15424418e-01 2.83919811e-01 -1.22542873e-01 1.88305587e-01\\n-1.27313986e-01 1.96085144e-02 1.89664289e-01 1.68041557e-01\\n1.80253655e-01 1.08201332e-01 4.59819973e-01 4.03178215e-01\\n2.92060554e-01 4.58663821e-01 3.07962656e-01 -1.35585456e-03\\n3.76005560e-01 5.67339182e-01 3.34267914e-01 8.10878128e-02\\n-5.83318770e-02 1.47555828e-01 1.75408408e-01 -5.63990604e-03\\n3.17342997e-01 3.03035587e-01 1.17216766e-01 7.82497466e-01\\n3.29421192e-01 3.70164484e-01 7.33907044e-01 -5.39341152e-01\\n-3.96218210e-01 -3.00336406e-02 5.11527240e-01 -3.55568469e-01\\n-6.71447963e-02 1.90549448e-01 -1.98653817e-01 3.30384016e-01\\n-4.94013518e-01 -2.87787050e-01 -4.27875258e-02 1.15459569e-01\\n-1.06900260e-02 -9.41596478e-02 -2.70226032e-01 4.06322256e-02\\n-1.03962436e-01 -2.38350481e-01 -4.39694673e-01 -1.43574566e-01\\n-1.89686015e-01 -7.99104199e-02 -9.22728628e-02 -4.60672863e-02\\n-1.92324534e-01 -3.46632600e-01 -5.92208356e-02 -2.77661178e-02\\n3.29893082e-01 -1.22675225e-01 -1.51904777e-01 -3.79742756e-02\\n2.40926623e-01 1.20706424e-01 6.16295457e-01 3.35358083e-02\\n4.00059335e-02 -2.89301723e-01 -2.29083687e-01 1.22933194e-01\\n2.12325722e-01 6.46721423e-02 2.37110034e-02 4.38026875e-01\\n-3.71639788e-01 -2.26398498e-01 2.32170895e-03 2.69654214e-01\\n-3.83572161e-01 -1.58126410e-02 -8.60816706e-03 2.86389381e-01\\n9.71846208e-02 1.35595635e-01 -2.06738442e-01 1.67916343e-02\\n-1.40680835e-01 -5.05075216e-01 2.39574060e-01 -2.87663825e-02\\n-2.16864496e-01 7.66880587e-02 2.03975469e-01 1.66094288e-01\\n-2.24961445e-01 -1.08198360e-01 -8.59026983e-02 1.07447505e-01\\n1.05783455e-01 3.37293684e-01 -1.13268092e-01 -3.77458513e-01\\n-3.05585086e-01 2.97581404e-01 -1.55567721e-01 1.88475400e-01\\n2.21482329e-02 3.81440490e-01 2.80639566e-02 1.98177546e-01\\n3.36726397e-01 3.79857793e-02 -1.58774555e-01 -2.81602234e-01\\n-1.30580917e-01 -2.01127902e-01 -5.71283454e-04 -6.60051405e-02\\n1.24478027e-01 -3.39486122e-01 -9.33265388e-02 -1.62183732e-01\\n-1.76691249e-01 -3.75046730e-01 -1.39651662e-02 -1.21429220e-01]]',\n", + " \"What we are looking for To accelerate projects and growth, Nanolive is looking for strengthening its development team with a highly self-motivated, enthusiastic, result oriented Python Data Scientist. Mission and activities Implement advanced statistical and data analysis tools related to Nanolive Core Technology and Quantitative biology applicationsImplement environment development and architecture in PythonValidate proofs of concepts through modelling and simulationPrepare test protocols, run tests and analyse resultsDocument work results with Python notebooks or similar reports Required Master’s or PhD degree in Computational Science, Mathematics, Engineering or related area.Experience in Python scientific codingExperience in big data managementStrong background in Mathematics, Physics or Biology An Asset Experience with CI/CD, source management & djangoKnowledge of unit testingKnowledge of hdf5, java programming, image analysis Key asset of the candidate Have a team player spirit, a quick perception, and a resourceful and fast-learning mindsetHave a strong sense of commitment and responsibility to respect planning and qualityHave a high analytical capacity and an adaptable, autonomous, rigorous and service-oriented mindsetHave effective communication in English (both written & oral – including technical documentation) What we offer You will get the opportunity to work in a fast-growing scale-up environment with highly motivated, competent and experienced individuals, and make a real difference for our customers. You will be working with a cutting-edge technology and facing the exclusive challenge of making it accessible to a wide audience by implementing creative solutions. Interested? Please visit our website, then click on “Apply Now” and fill your application including your cover letter and CV. We do not accept any recruitment agencies. Job Types: Full-time, Permanent Experience: python: 1 year (Preferred)Big Data management: 1 year (Preferred) Education: Master's (Required) \",\n", + " '[\"Self-Motivation\", \"Adaptability\", \"Resourcefulness\", \"Planning\", \"Management\", \"Communications\", \"Creativity\"]',\n", + " '[\"Computational Science And Engineering\", \"Integrated Development Environments\", \"Accessioning\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Data Management\", \"Statistics\", \"Mathematical Sciences\", \"Scale (Map)\", \"Activism\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"Source (Game Engine)\", \"Image Analysis\", \"Mathematical Physics\", \"Biology\", \"Service-Oriented Modeling\", \"Big Data\", \"Technical Documentation\", \"Survey Data Analysis\"]',\n", + " \"['English', 'Navaho', 'Kwanyama', 'Sango', 'Aymara']\"],\n", + " ['57',\n", + " 'clinical data manager basel or geneva',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-2.43991524e-01 2.85242081e-01 4.62841421e-01 1.99227966e-02\\n6.94778085e-01 -1.56374216e-01 -7.59084746e-02 1.50286024e-02\\n5.05998619e-02 -1.37084067e-01 -1.70611352e-01 -2.42785543e-01\\n9.61267203e-02 2.86597311e-01 7.53745288e-02 5.25513709e-01\\n2.94130743e-01 -5.45377210e-02 1.08797222e-01 1.44836098e-01\\n1.73172504e-01 -2.29952484e-01 2.33992785e-02 6.59537077e-01\\n2.34644532e-01 3.31432372e-02 -6.26116619e-02 9.01515931e-02\\n-2.85675704e-01 -2.41672039e-01 3.67392004e-01 2.34722719e-02\\n-1.82812825e-01 -2.20582113e-01 1.07994050e-01 2.53953129e-01\\n-2.81879961e-01 1.81317627e-01 -1.64238185e-01 9.83854234e-02\\n-5.59793353e-01 -2.30555341e-01 -1.83942273e-01 1.12524278e-01\\n-2.75563776e-01 -3.16240877e-01 1.90194637e-01 -5.93483075e-02\\n7.46725053e-02 1.95476666e-01 -4.01438028e-01 3.37381840e-01\\n-3.65407586e-01 -1.92945853e-01 2.48925090e-01 6.68023884e-01\\n2.27749571e-02 -5.62040210e-01 -4.73960578e-01 -1.66202620e-01\\n2.16018468e-01 -1.36847913e-01 2.58068919e-01 -1.81460470e-01\\n6.21001124e-01 1.05747078e-02 8.36017430e-02 2.23694384e-01\\n-7.34925508e-01 -8.04408491e-02 -4.59232450e-01 1.92541823e-01\\n-3.12643141e-01 2.86907852e-02 -2.72306353e-01 -1.79490075e-01\\n8.86017829e-03 3.69777441e-01 -1.13286907e-02 7.51171783e-02\\n-1.45151496e-01 2.43034124e-01 -4.43607152e-01 1.58863217e-01\\n1.64208710e-01 1.99453920e-01 3.68345737e-01 1.90089166e-01\\n-4.38287526e-01 5.21513939e-01 3.22225720e-01 -2.01658845e-01\\n1.44146711e-01 3.10911201e-02 2.88483679e-01 2.15209424e-01\\n1.18635893e-01 2.26299971e-01 -2.08588079e-01 1.84245616e-01\\n2.48034269e-01 -9.89875197e-02 7.35347122e-02 -1.37142660e-02\\n-7.26549849e-02 -1.37058675e-01 -4.22883220e-02 1.68245763e-01\\n-4.90313053e-01 5.16932786e-01 1.24919415e-01 -1.90424472e-01\\n-9.07356516e-02 -6.33006215e-01 -1.13292560e-01 7.78622106e-02\\n1.33692950e-01 1.16609551e-01 2.01029211e-01 3.94601226e-01\\n1.52685434e-01 5.66840218e-03 1.85538381e-01 8.39418590e-01\\n3.97037640e-02 1.53781861e-01 -5.02934828e-02 3.58043671e-01\\n3.98553386e-02 -8.32296908e-02 1.22385502e-01 3.30494642e-01\\n7.59462500e-03 -8.83786455e-02 -2.45989323e-01 2.48671383e-01\\n-2.93969195e-02 -2.80551851e-01 -1.40869290e-01 2.13118821e-01\\n-9.49339569e-02 -5.82999468e-01 4.00984645e-01 -1.06919222e-01\\n-1.66371893e-02 -1.10226132e-01 -1.43751323e-01 -7.64359385e-02\\n-1.96759835e-01 3.83854747e-01 3.14922988e-01 2.38380551e-01\\n-8.52784961e-02 -2.70943433e-01 -5.82807511e-03 2.85016030e-01\\n-3.11144173e-01 2.15279520e-01 -2.86216736e-01 -2.07359523e-01\\n3.63047540e-01 2.24028230e-01 -5.08489609e-01 2.97018409e-01\\n-1.40469253e-01 -9.07349214e-02 -7.43367970e-02 2.68487185e-01\\n-1.86008930e-01 6.90419674e-02 -1.41885430e-01 -2.04294160e-01\\n4.57140297e-01 6.93022609e-02 4.04542446e-01 -7.60114416e-02\\n3.82873714e-01 -2.39880294e-01 2.40438998e-01 -6.37419708e-03\\n-6.32399678e-01 4.23590124e-01 -1.40339285e-01 -3.78642023e-01\\n1.96472377e-01 -5.69182336e-02 7.35688031e-01 -3.04093361e-01\\n1.96409877e-02 -1.71883389e-01 -3.87986451e-01 -4.11036313e-01\\n-1.57277256e-01 -4.04928923e-02 3.81637245e-01 -4.38128829e-01\\n1.15155801e-01 2.42897272e-01 -6.37879550e-01 -2.27662355e-01\\n4.03003663e-01 3.83745372e-01 2.77280450e-01 1.09831855e-01\\n-9.21756104e-02 -5.95725298e-01 1.56497106e-01 -4.99341547e-01\\n-2.09607646e-01 1.26900375e-01 -2.64266253e-01 1.58621699e-01\\n-7.94810578e-02 4.68174033e-02 -1.80619117e-02 -7.98789263e-02\\n-1.40006408e-01 -3.36812101e-02 1.94172919e-01 1.05493609e-03\\n2.38649607e-01 -6.65402925e-03 -4.55217302e-01 5.65480471e-01\\n-2.95842975e-01 5.26448846e-01 7.06462711e-02 -8.10075760e-01\\n5.73327363e-01 3.54858458e-01 1.76080596e-02 -2.80160666e-01\\n7.49042153e-01 -3.18258435e-01 -4.09599394e-02 2.21206501e-01\\n-3.18006575e-01 -9.74004939e-02 2.30929255e-01 -1.65839583e-01\\n-2.68872082e-01 6.41820133e-01 2.96116471e-01 -1.95247740e-01\\n3.97757947e-01 -7.02481568e-02 -2.33029008e-01 3.74110192e-02\\n-2.51232505e-01 -1.65776253e-01 -4.83463883e-01 1.64276689e-01\\n-9.49009955e-02 -5.29884160e-01 -1.94603384e-01 -2.80688375e-01\\n-1.50118589e-01 -5.32343328e-01 -2.69235969e-01 8.83164555e-02\\n1.40855700e-01 1.74065739e-01 -4.53316160e-02 -1.54996598e-02\\n-8.93952474e-02 -7.29703069e-01 -2.04617046e-02 2.21978262e-01\\n1.98321998e-01 3.97939086e-01 2.90494204e-01 -9.57923532e-02\\n-3.25236879e-02 4.76933718e-01 -4.66469646e-01 -3.40668559e-01\\n2.60797322e-01 -2.89258193e-02 -7.89960846e-02 -6.87651634e-02\\n2.39370823e-01 7.32663870e-02 -2.76594944e-02 1.44459739e-01\\n-6.50832951e-02 -8.98641907e-03 2.39415199e-01 -2.91253142e-02\\n-1.66654781e-01 -2.77279973e-01 -2.28702635e-01 3.56883496e-01\\n-5.37678123e-01 -3.31992179e-01 3.38003397e-01 -5.43923452e-02\\n-1.05007298e-01 2.57273674e-01 2.37705439e-01 8.61702710e-02\\n-2.08313033e-01 -2.65642881e-01 3.73123586e-01 1.02593966e-01\\n1.95756301e-01 1.50899678e-01 -1.47900641e-01 -5.18822134e-01\\n-3.34511948e+00 -2.23232001e-01 -3.24563384e-02 -2.66675144e-01\\n3.40113223e-01 -4.05545160e-02 1.74479514e-01 -7.94104338e-02\\n-4.05725598e-01 3.23300287e-02 -2.54473716e-01 -2.65368342e-01\\n1.39018670e-01 1.92189306e-01 1.67110592e-01 1.47056475e-01\\n-1.10449046e-01 -3.76231492e-01 1.32936493e-01 4.31121290e-01\\n-6.03756458e-02 -8.87272239e-01 2.20471919e-02 -3.99244167e-02\\n1.17329106e-01 2.24200577e-01 -5.40385246e-01 2.28383131e-02\\n-3.71105969e-01 -2.61468321e-01 2.42476165e-01 -2.34382123e-01\\n-8.94613266e-02 3.43135178e-01 7.82296285e-02 -1.11272469e-01\\n-4.39702682e-02 -2.19443947e-01 -6.35450408e-02 -6.38985753e-01\\n1.43641055e-01 -7.31969595e-01 -1.12251610e-01 -8.04253221e-02\\n5.42788029e-01 -1.57395065e-01 2.91407943e-01 1.91379979e-01\\n3.96642126e-02 2.78113782e-01 2.79004335e-01 -1.67768255e-01\\n-2.71148235e-01 -1.84950799e-01 -2.11008251e-01 -1.42331868e-01\\n4.41909611e-01 3.39518428e-01 -4.23727274e-01 -2.13734657e-02\\n1.49357945e-01 -3.71392548e-01 -5.97635984e-01 -4.29301381e-01\\n-2.84049124e-01 -1.71122625e-02 -6.17903590e-01 -4.80762899e-01\\n-2.62747467e-01 4.78429198e-02 -2.68748663e-02 6.42070353e-01\\n-4.54377532e-01 -2.67116249e-01 -8.31938088e-02 -5.98228931e-01\\n3.53126198e-01 -2.58495510e-01 -1.19884685e-01 -2.16239929e-01\\n-3.05990636e-01 -3.84515464e-01 3.14616561e-01 1.22261904e-02\\n-2.20107287e-01 2.15363484e-02 4.13176604e-02 -1.37258098e-01\\n-4.72058982e-01 -6.68276548e-01 3.23135018e-01 6.34032190e-02\\n3.98526311e-01 1.06272697e-02 2.35594749e-01 -9.62028205e-02\\n5.76973975e-01 4.73464206e-02 1.03742599e-01 -4.88671929e-01\\n6.39932975e-03 8.08084756e-02 6.08229399e-01 -2.88537264e-01\\n-1.20463416e-01 -5.94639257e-02 -3.46711457e-01 -2.59306040e-02\\n2.83980906e-01 -1.78130597e-01 1.16233438e-01 -1.72940567e-01\\n3.53730738e-01 -5.15026808e-01 -2.33856916e-01 8.97527188e-02\\n2.19969749e-01 7.62103617e-01 -3.58014964e-02 -2.51166582e-01\\n-1.16652772e-01 3.05541158e-01 -2.47056156e-01 -5.98620251e-02\\n6.14076331e-02 3.38256881e-02 -2.41877645e-01 3.62324297e-01\\n1.24148935e-01 -5.75802401e-02 -2.60719180e-01 -1.08963298e-02\\n-5.72028942e-03 1.17650755e-01 2.88622737e-01 9.04601961e-02\\n-1.55539587e-01 -2.61169016e-01 3.89409102e-02 2.43159056e-01\\n2.59655178e-01 3.22957754e-01 2.11727351e-01 -2.37514496e-01\\n4.42053750e-02 2.03031152e-01 -2.90793896e-01 3.48428965e-01\\n-2.33299464e-01 8.26958641e-02 -5.94675422e-01 -1.80958271e-01\\n-3.39999825e-01 -1.97839379e-01 1.12401277e-01 2.21900567e-01\\n2.85651833e-01 -1.55798629e-01 1.02211609e-01 -5.99561810e-01\\n7.78692886e-02 -2.76846066e-02 1.87687129e-01 -3.39956395e-02\\n-2.05637008e-01 7.43264675e-01 -4.01754305e-03 -2.14604869e-01\\n1.11887895e-01 3.48549783e-02 -3.41538966e-01 -1.99666128e-01\\n1.55028030e-01 -3.01452279e-01 -2.04494298e-01 4.20735955e-01\\n2.26981223e-01 -8.77599716e-02 -1.09028429e-01 5.89897573e-01\\n-1.33005381e-01 -4.42201912e-01 -1.62344158e-01 -9.43928659e-02\\n1.98327243e-01 2.98030555e-01 1.96244121e-01 -5.27809322e-01\\n-2.27807574e-02 2.05028262e-02 1.77317441e-01 3.76372546e-01\\n-3.30027267e-02 1.15023896e-01 -5.28581329e-02 -2.49843210e-01\\n4.24578160e-01 7.79389814e-02 -1.27210338e-02 1.08806983e-01\\n1.72877267e-01 -2.23753452e-01 -3.51405859e-01 -7.43783489e-02\\n-2.67295875e-02 -3.09420764e-01 -9.42020863e-02 2.17390567e-01\\n1.00680195e-01 -8.02527219e-02 -4.42603409e-01 -1.61944747e-01\\n-4.88623798e-01 4.84581478e-02 5.41466475e-03 -5.53890586e-01\\n-5.29806241e-02 -1.41253114e-01 -3.85298550e-01 3.19706678e-01\\n2.04246402e-01 3.85264084e-02 1.37003377e-01 1.10713132e-01\\n-2.64749467e-01 -2.32030392e-01 1.95986509e-01 -8.30853283e-02\\n-4.22221065e-01 -1.49623424e-01 5.26328832e-02 -9.84155715e-01\\n8.36564675e-02 -5.80758378e-02 -2.53389597e-01 -1.11918092e-01\\n-1.56964719e-01 -4.53259826e-01 3.69443446e-01 -4.75871891e-01\\n-2.58214891e-01 2.70690005e-02 -3.03208321e-01 -2.68926829e-01\\n1.25821054e-01 2.94281654e-02 -2.02830881e-01 3.22806984e-01\\n-1.85926408e-01 6.67708874e-01 -5.71764708e-02 -7.44123459e-02\\n2.42068052e-01 -2.14179486e-01 3.05773675e-01 -1.23978928e-01\\n-4.99888450e-01 -1.91364676e-01 -2.58343935e-01 -8.46970156e-02\\n-3.67670618e-02 -1.77624542e-02 -6.06328398e-02 5.22985402e-03\\n4.72709626e-01 9.58673581e-02 -5.51297292e-02 -4.61797938e-02\\n-1.52590685e-03 -4.69712257e-01 1.50790960e-01 -3.05667639e-01\\n-1.40802190e-02 -1.41537145e-01 3.34254086e-01 2.21996643e-02\\n2.07272768e-01 -3.46563518e-01 7.39099622e-01 -1.76643223e-01\\n-4.06165719e-01 -2.20175505e-01 8.79630446e-02 2.39010751e-01\\n2.59124696e-01 -4.86553252e-01 -1.31546423e-01 3.80332202e-01\\n9.97922793e-02 3.65450568e-02 3.69998157e-01 -1.85572743e-01\\n-3.75818193e-01 1.51572093e-01 -5.34952998e-01 1.81514710e-01\\n8.10283422e-01 4.04320270e-01 1.59186810e-01 1.57550499e-01\\n1.88397035e-01 2.81127512e-01 5.42297184e-01 -1.65500075e-01\\n-1.07364386e-01 4.83080626e-01 1.73528463e-01 -4.39520717e-01\\n-9.33992416e-02 2.64368281e-02 6.10203370e-02 -4.91919607e-01\\n6.79621279e-01 1.81240976e-01 -5.33401728e-01 -4.34063613e-01\\n-3.60523134e-01 -1.70290306e-01 3.37384760e-01 -5.92264347e-03\\n1.54716000e-01 -1.69077873e-01 5.17231286e-01 -7.08082542e-02\\n2.11393386e-01 3.47954988e-01 -1.24384671e-01 -1.81492254e-01\\n1.74927458e-01 1.70893773e-01 3.52808833e-01 2.71994919e-01\\n-5.64906225e-02 8.71762261e-02 -1.32278323e-01 1.97109997e-01\\n-3.30084592e-01 -7.81590790e-02 1.89297467e-01 -1.28401682e-01\\n-4.09535803e-02 1.93087101e-01 4.28501904e-01 3.92036110e-01\\n2.99284428e-01 3.43642175e-01 2.16933876e-01 -1.08793423e-01\\n5.08146107e-01 5.90662062e-01 1.32862478e-01 5.35267107e-02\\n3.90827805e-02 1.96098223e-01 2.46114656e-02 3.32112461e-02\\n2.35788137e-01 3.21358860e-01 4.24374044e-02 7.69451618e-01\\n1.34213984e-01 3.18054616e-01 6.03440762e-01 -4.80277777e-01\\n-3.36176157e-01 1.02937296e-01 5.55460215e-01 -4.60631371e-01\\n8.16015378e-02 1.45286247e-01 -1.56125188e-01 2.38037705e-01\\n-6.61642671e-01 -1.33144855e-01 -3.35047767e-02 -3.94031629e-02\\n1.99811012e-01 -1.93622410e-01 -1.45663098e-01 7.73173720e-02\\n-6.92285970e-02 -1.31202370e-01 -2.96579659e-01 -4.51391697e-01\\n-2.76918590e-01 -1.29647493e-01 -9.19156671e-02 -3.10691148e-02\\n9.65477526e-02 -2.08516523e-01 -1.36616677e-01 -2.66307071e-02\\n3.06058347e-01 -2.85867810e-01 -1.40565276e-01 -9.29473191e-02\\n4.26739544e-01 1.63342565e-01 7.02730894e-01 -1.16476759e-01\\n6.83375299e-02 -1.71918422e-01 -1.69342861e-01 5.36286831e-03\\n1.66072026e-01 9.80730653e-02 4.02236097e-02 5.93285441e-01\\n-3.23686242e-01 -1.76464409e-01 1.09354302e-01 3.16734225e-01\\n-3.84919703e-01 -1.83929317e-02 5.54715768e-02 2.50932891e-02\\n-4.05071378e-02 6.97254911e-02 -3.34505260e-01 -1.40933990e-01\\n-2.33710200e-01 -4.82871175e-01 2.41333619e-01 -1.23346433e-01\\n-3.39529723e-01 -1.13958620e-01 5.70202470e-01 3.43593925e-01\\n-3.81726883e-02 -8.65434855e-02 -1.55017436e-01 7.46369883e-02\\n7.97446519e-02 3.58048677e-01 -1.92373782e-01 -2.03921288e-01\\n-4.24902022e-01 2.36916468e-01 -1.28424108e-01 2.55955994e-01\\n7.19210207e-02 3.83944631e-01 -1.55547619e-01 2.18073830e-01\\n3.66450667e-01 -1.65159777e-01 -2.92505741e-01 -4.39564705e-01\\n-1.74445257e-01 -7.92542920e-02 1.46334410e-01 -7.29630142e-02\\n1.74720407e-01 -3.97605479e-01 -1.52007505e-01 -2.94425905e-01\\n-2.23125577e-01 -4.01335359e-01 -5.22471294e-02 2.59413198e-03]]',\n", + " 'For one of our clients, we are lookinf for a Clinical Data Manager Reporting to the Head of Clinical Data Management, the selected candidate will collaborate with the team with the objective of making clinical data, coming from different sites, available for the analysis and decisions of our Clinical Science and Medical professionals. Key responsibilities Lead and coordinate all data management activities from study start up through database lock and perform vendor oversight for outsourced activities. Lead the development and revision of Data Management Documentation, such as Case Report Form (pCRF or eCRF), Study Validation Plan (SVP), Data Management Plan (DMP), Data Validation Plan (DVP), Data Management Report (DMR), EDC specifications, reports, throughout the lifecycle of the project and ensures compliance with established SOPs, GCP and international regulatory guidelines. Develop Data Transfer Agreement (DTA) between XXXXXX and vendors and reconcile data within the Clinical Database. Develop test scripts and execution logs for User Acceptance Testing (UAT), coordinate UAT of eCRF build and validation documents. Provide Clinical Data Management support to Clinical Operations, Project Management, Drug Safety, Clinical Science and Biostatistics team. Provide input and review clinical documents such as Protocols, Clinical Study Reports, Laboratory Analysis Plan and Statistical Analysis Plan. Provide training on study trial tools and create user guides. Assist in definition and design of CDISC compliant data listings, summary table validation, data specifications and/or process data transfers in preparation for statistical review. Coordinate the archiving / filing in TMF of study databases and CDM related documents. Assist in reconciling AE/SAE data in Safety database and/or other Data Collaborate with IT and Clinical Database Developers (DBD) to address Clinical application requests and/or changes to Clinical database systems, support development and implementation of new technologies. Participate in Clinical Trial Meetings, conference calls and/or meetings with vendors. Develop, revise and maintain standard operating procedures and working instructions Coaching and mentoring of other CDM staff and newcomers Skills and competencies Strong Clinical Data Management experience is required, gained in pharmaceutical industry, CRO or Life Science related industry. Ability to coordinate the data management activities with the project team, prioritize multiple tasks and manage time efficiently. Detail oriented, solution oriented with excellent organizational and communication skills. Knowledge of CDISC standards. Knowledge of RDBMS, clinical database applications, SQL, SAS, Excel, Access, VBA. Fluent in English is required. Working knowledge of Good Clinical Practices, Clinical research, Clinical trial process and related regulatory requirements and terminology. Understanding of the research environment and good knowledge of global regulatory requirements such as ICH GCP and CFR 21 part 11',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Professionalism\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Planning\", \"Time Management\", \"Operations\", \"Detail Oriented\", \"Prioritization\"]',\n", + " '[\"Development Testing\", \"Clinical Document Architecture\", \"Database Application\", \"Tooling\", \"Accessioning\", \"Clinical Laboratory Science\", \"Data Validation\", \"Life Sciences\", \"Data Management\", \"Statistics\", \"SAS (Software)\", \"Clinical Trials\", \"System Support\", \"Standard Operating Procedure\", \"Outsourcing\", \"Database Development\", \"Statistical Coupling Analysis\", \"Industrialization\", \"Case Report Forms\", \"Good Clinical Practices (GCP)\", \"File Archiver\", \"Activism\", \"Maintainability\", \"Executable\", \"Clinical Practices\", \"Validation Master Plan\", \"Data Management Plan\", \"Biostatistics\", \"User Guide\", \"Clinical Research\", \"Activity Manager\", \"Revisions\", \"Clinical Data Warehouse\", \"Clinical Data Management\", \"Database Systems\", \"Validations\", \"Pharmaceuticals\", \"Instructing\", \"Locks\", \"Clinical Study Reports\", \"Google Cloud Platform (GCP)\", \"Data Transfer Object\", \"Project Management\", \"Test Script\", \"Industrial Relations\", \"Title 47 CFR Part 15\", \"Electronic Data Capture (EDC)\", \"Data Processing\", \"SQL (Programming Language)\", \"Regulatory Requirements\", \"Acceptance Testing\"]',\n", + " \"['English', 'Telugu']\"],\n", + " ['17',\n", + " 'data science manager f/m switzerland',\n", + " 'Switzerland',\n", + " 'Consulting',\n", + " 'www.axxiome.com',\n", + " '[[-2.45921910e-01 3.64944696e-01 5.66830039e-01 -4.42552194e-03\\n6.07137740e-01 -3.58532816e-02 -7.13070855e-04 2.29102582e-01\\n-8.79856385e-03 -4.23271626e-01 -1.12019163e-02 -2.79152483e-01\\n1.17464408e-01 1.81373224e-01 2.31768861e-02 4.22521472e-01\\n2.09838718e-01 3.76365110e-02 -1.79761857e-01 4.03860956e-01\\n2.34120376e-02 -1.44892216e-01 2.07821861e-01 7.00868130e-01\\n4.20755804e-01 -2.49336548e-02 -4.27808836e-02 -4.32553031e-02\\n-2.81308353e-01 -2.11954385e-01 5.24052203e-01 2.60045230e-02\\n-1.87911510e-01 -2.90406376e-01 1.07913442e-01 3.05315405e-02\\n-2.64642119e-01 -9.09706503e-02 -1.89330533e-01 1.44601107e-01\\n-4.73985076e-01 -1.82331115e-01 -1.06650069e-02 -2.91811861e-03\\n-3.76790941e-01 -5.17107308e-01 -1.25920102e-01 -1.00769050e-01\\n1.08134978e-01 9.05703604e-02 -4.54427838e-01 1.93579257e-01\\n-2.60035336e-01 -2.59526730e-01 2.71923423e-01 7.75269151e-01\\n-2.98850853e-02 -4.39171314e-01 -5.32690525e-01 -3.93370718e-01\\n1.47971913e-01 -7.26859272e-02 7.86159933e-02 -3.06278467e-01\\n2.78093457e-01 -3.30605730e-03 3.75598557e-02 2.43363649e-01\\n-7.56314635e-01 -1.50222898e-01 -3.26991111e-01 4.13803719e-02\\n-3.66385281e-01 -1.05629474e-01 -4.33392674e-01 -2.40224093e-01\\n-1.23682141e-01 4.59726006e-01 1.06721871e-01 -3.25710848e-02\\n-2.64199972e-01 2.76415229e-01 -3.26216042e-01 2.17330575e-01\\n1.81030706e-01 3.17788005e-01 3.44060987e-01 3.91795516e-01\\n-3.28861833e-01 4.00029361e-01 2.92857468e-01 -3.70870233e-01\\n2.56032765e-01 1.52590707e-01 3.01409543e-01 -1.02013722e-02\\n1.69352084e-01 1.29102111e-01 -1.88280120e-01 3.37971598e-01\\n2.92865813e-01 -2.53491759e-01 1.13441981e-02 -1.18685320e-01\\n7.98881799e-02 -4.54057828e-02 1.68322399e-02 1.24850497e-01\\n-3.90109837e-01 2.84585595e-01 -4.44836654e-02 -3.66795272e-01\\n-1.00431263e-01 -4.57162291e-01 -1.06918573e-01 -8.01978409e-02\\n-5.70156518e-03 1.87075034e-01 1.78632349e-01 2.35677660e-01\\n2.10754246e-01 -5.03677428e-02 1.70380592e-01 8.76710653e-01\\n-8.34595039e-03 4.89493869e-02 -3.32669228e-01 4.18295622e-01\\n7.65853748e-03 -1.90081030e-01 1.90014482e-01 1.06433108e-01\\n-1.29714862e-01 -5.53015508e-02 -3.17486405e-01 3.26737285e-01\\n-5.01306206e-02 -2.85634041e-01 -1.82487592e-01 1.18685432e-01\\n-2.42170654e-02 -4.91118252e-01 6.07552648e-01 -2.95297876e-02\\n1.18727639e-01 -2.52901286e-01 5.49544487e-03 -1.00099713e-01\\n-1.47795305e-03 1.36073396e-01 1.42462879e-01 1.10068917e-01\\n-2.93086052e-01 -2.61587262e-01 -9.45952386e-02 2.04275176e-01\\n-3.72313261e-01 5.68338484e-03 -2.17546254e-01 -6.04286306e-02\\n2.10390940e-01 1.22314103e-01 -4.67245340e-01 1.52860612e-01\\n-7.63912871e-02 -6.53198585e-02 -6.28637057e-03 4.08639252e-01\\n-3.66601586e-01 2.10801393e-01 -6.10959157e-02 -1.05927579e-01\\n6.28257394e-01 1.36030614e-01 3.37295145e-01 1.67331984e-03\\n2.35847265e-01 -6.34730384e-02 1.65461987e-01 2.23834157e-01\\n-5.79585254e-01 4.36830193e-01 -8.55116397e-02 -1.90968633e-01\\n1.48631006e-01 -8.61020237e-02 3.19376707e-01 -2.54164547e-01\\n1.09994173e-01 -1.79887325e-01 -2.81099111e-01 -3.52362216e-01\\n-9.43516865e-02 -4.85175848e-02 3.22893560e-01 -5.07194817e-01\\n-7.61729479e-03 2.63135016e-01 -5.76938748e-01 -2.25446984e-01\\n1.20687030e-01 2.38363579e-01 7.45931938e-02 2.11705700e-01\\n-1.76185995e-01 -5.34414768e-01 1.38204321e-01 -4.11061585e-01\\n-2.34608501e-01 1.61183521e-01 -2.93112636e-01 1.30785525e-01\\n4.76591624e-02 2.24735159e-02 -1.05475865e-01 6.95926100e-02\\n-3.24384570e-01 -1.61868110e-02 1.67739503e-02 7.41715729e-02\\n3.55591476e-01 1.47779748e-01 -4.31447506e-01 5.21407366e-01\\n-1.65915996e-01 3.91414404e-01 1.80935234e-01 -1.00179696e+00\\n4.41542685e-01 3.47838730e-01 6.50071129e-02 -3.69515121e-01\\n5.59662938e-01 -3.95547062e-01 -2.96869520e-02 1.25100851e-01\\n-3.11068058e-01 -2.29845583e-01 2.32175797e-01 -2.63683528e-01\\n-2.66220629e-01 5.03459215e-01 -2.03863233e-02 1.43936604e-01\\n3.03789854e-01 -2.84333766e-01 -2.92014003e-01 -1.28883198e-01\\n-2.25134090e-01 -2.67191052e-01 -6.82415664e-01 2.43814290e-03\\n-9.48423892e-02 -4.56080288e-01 -9.62660015e-02 -4.14302230e-01\\n-1.35782093e-01 -3.27197075e-01 -1.55999899e-01 4.64870185e-02\\n2.03237012e-01 1.12335689e-01 -1.31886184e-01 -2.83232890e-02\\n2.26668492e-02 -6.32648706e-01 -8.35290700e-02 1.24586798e-01\\n3.28894079e-01 2.66649902e-01 1.72872901e-01 4.07448635e-02\\n3.69883366e-02 6.54320240e-01 -2.93933392e-01 -2.73528099e-01\\n2.35190347e-01 1.35438293e-01 -6.35076314e-02 -1.96907341e-01\\n7.97661915e-02 2.46569231e-01 -2.67043054e-01 -1.50392763e-03\\n8.39423537e-02 -5.40301390e-02 3.38879973e-01 1.77628547e-02\\n-1.90582663e-01 -2.03127712e-01 -6.51058555e-02 1.30328491e-01\\n-5.84850669e-01 -2.64413476e-01 6.32897258e-01 1.34088337e-01\\n9.50071029e-03 2.51613736e-01 2.29802251e-01 1.88265294e-02\\n-3.66359562e-01 -2.13709712e-01 3.07417035e-01 8.39281529e-02\\n1.96068406e-01 6.11872748e-02 5.12848124e-02 -5.77519417e-01\\n-3.24799728e+00 -1.69826210e-01 1.06522381e-01 -2.25405872e-01\\n3.08175147e-01 -1.89206302e-01 1.63121253e-01 4.45353314e-02\\n-4.54820126e-01 1.42139625e-02 -9.49461311e-02 -1.37367144e-01\\n5.78579307e-02 1.89332396e-01 8.62061977e-02 1.91817939e-01\\n1.42997324e-01 -1.68550238e-01 7.36394152e-02 3.95097315e-01\\n-8.34486261e-02 -7.82853246e-01 1.66983396e-01 1.36964232e-01\\n1.21752001e-01 1.05963036e-01 -4.65968609e-01 -1.36122018e-01\\n-3.57103407e-01 -2.17097014e-01 1.21184766e-01 -2.82251537e-01\\n-1.90611392e-01 2.12878883e-01 2.40197480e-01 -6.95260763e-02\\n2.69690920e-02 -3.47148955e-01 -5.56462631e-02 -5.26130319e-01\\n8.72342363e-02 -6.10046625e-01 1.80049986e-03 -6.27218187e-02\\n7.39886522e-01 -2.77540952e-01 1.94530487e-01 1.91638410e-01\\n1.06656328e-01 1.63295954e-01 1.92849159e-01 6.54033944e-02\\n-2.34414548e-01 -3.04287136e-01 -1.06991798e-01 -1.35043666e-01\\n6.06157124e-01 3.87201041e-01 -1.21685475e-01 4.22015078e-02\\n1.07443072e-01 -2.14714855e-01 -5.31587601e-01 -2.41496980e-01\\n-1.90920800e-01 -1.38890103e-01 -7.47319221e-01 -5.13473034e-01\\n-1.52645022e-01 -1.69929966e-01 -1.20133206e-01 6.72429919e-01\\n-1.25722989e-01 -2.56621331e-01 -1.95590854e-01 -4.87632364e-01\\n3.40316892e-01 -1.53406411e-01 7.67541304e-02 -1.80450037e-01\\n-1.68858439e-01 -3.90759051e-01 1.63518235e-01 -4.90865484e-02\\n-9.50010121e-02 -9.49073732e-02 6.59806374e-03 -1.33534163e-01\\n-3.63709539e-01 -5.95687926e-01 3.92257780e-01 8.04415345e-02\\n4.33541536e-01 8.36967230e-02 4.16038752e-01 -4.92727235e-02\\n3.91176701e-01 -6.91211596e-02 -1.48355290e-01 -4.93212640e-01\\n-6.06559515e-02 9.93431583e-02 5.32403588e-01 -2.09267661e-01\\n4.22511026e-02 -8.34257901e-03 -1.90606460e-01 -5.67713603e-02\\n3.45819980e-01 -8.13398361e-02 1.63348898e-01 -7.88199306e-02\\n2.25743979e-01 -2.68304437e-01 -1.04395591e-01 8.70596319e-02\\n7.67047983e-04 6.03134334e-01 -6.25669211e-02 -3.56460929e-01\\n-4.75177765e-02 4.08956170e-01 -4.37586159e-02 -1.00416765e-01\\n-3.08997571e-01 -2.62237713e-02 -2.88998842e-01 4.15641457e-01\\n-8.36860985e-02 -1.96044520e-01 -2.42734015e-01 -1.15270570e-01\\n-8.46666247e-02 3.39749098e-01 2.38535404e-01 2.01701581e-01\\n-3.77592780e-02 -4.09201711e-01 -1.04267605e-01 1.88862771e-01\\n2.72506565e-01 3.84476304e-01 2.52921373e-01 -2.66126782e-01\\n7.01435935e-03 2.31164202e-01 -3.12745273e-01 2.70031601e-01\\n-1.71409488e-01 2.28548393e-01 -7.02564120e-01 -2.83752441e-01\\n-2.08915830e-01 -3.24911743e-01 2.07820892e-01 4.84418899e-01\\n2.14780331e-01 -8.35779980e-02 1.30925566e-01 -5.00762582e-01\\n2.89361715e-01 1.76102281e-01 1.22894250e-01 3.34063694e-02\\n-7.21575618e-02 8.39317024e-01 2.67627873e-02 -1.64550453e-01\\n1.71246715e-02 3.88621166e-03 -2.45666057e-01 -2.18836084e-01\\n4.54920530e-02 -5.34934044e-01 -1.49418220e-01 5.12873352e-01\\n1.72530025e-01 -1.44415632e-01 -1.38982147e-01 2.46456265e-01\\n1.22482069e-02 -2.55173147e-01 -2.92161405e-01 5.41106947e-02\\n3.45119476e-01 2.08441824e-01 2.88472503e-01 -5.93923628e-01\\n2.30947826e-02 -5.04769832e-02 4.61579151e-02 4.76999313e-01\\n8.36529136e-02 1.59786820e-01 -8.18593726e-02 -1.12589180e-01\\n5.34571588e-01 -5.26609458e-02 -1.31717294e-01 9.87673700e-02\\n1.06258601e-01 -1.84308559e-01 -3.16501886e-01 6.96009547e-02\\n5.76907173e-02 -3.07378501e-01 -6.59161657e-02 2.06394672e-01\\n3.99399847e-02 5.78490570e-02 -6.52556181e-01 -2.13704571e-01\\n-3.81309569e-01 4.25295159e-02 4.56301644e-02 -6.49009824e-01\\n6.15077205e-02 -1.15735121e-01 -5.84666252e-01 3.19792658e-01\\n1.10377073e-01 -1.85834795e-01 1.54304832e-01 4.23192978e-04\\n-2.16205731e-01 -2.47395664e-01 1.75002486e-01 2.98761457e-01\\n-2.44280308e-01 -2.60217011e-01 -4.22296152e-02 -9.04650927e-01\\n1.16268277e-01 6.54700696e-02 -8.91539603e-02 2.45658457e-01\\n6.58497214e-04 -7.33578205e-01 2.82283366e-01 -3.81602824e-01\\n-2.09483862e-01 -5.65385260e-02 -2.51575977e-01 -4.11636323e-01\\n1.18698716e-01 3.70347053e-02 -2.05585554e-01 4.49339628e-01\\n-3.05426568e-01 5.05944610e-01 -1.73813432e-01 3.70150656e-02\\n1.34803578e-01 -2.33847052e-01 9.02599767e-02 -2.93336451e-01\\n-4.29284632e-01 -2.21725553e-01 -2.75201023e-01 -3.27438116e-01\\n-1.66207999e-01 -2.50342637e-01 -7.11620376e-02 1.43014807e-02\\n4.78029847e-01 2.18206286e-01 -1.06679216e-01 -1.48405358e-01\\n1.47682920e-01 -4.79291230e-01 2.66344696e-01 -1.88953221e-01\\n-1.12153590e-03 -1.21023074e-01 2.01207161e-01 1.29752934e-01\\n1.83702007e-01 -3.42673153e-01 4.05458778e-01 -3.06599140e-01\\n-3.56773376e-01 -1.80469215e-01 7.36860558e-02 2.57491227e-02\\n3.50551903e-01 -3.83217722e-01 -1.26342922e-01 3.16002071e-01\\n8.86447430e-02 1.28272325e-02 2.90792197e-01 -1.86736703e-01\\n-1.81795321e-02 3.06658030e-01 -5.24818480e-01 2.60160446e-01\\n8.48055899e-01 1.10449523e-01 2.42968410e-01 2.89506137e-01\\n2.52098680e-01 2.30567485e-01 3.99969548e-01 -9.57072824e-02\\n-2.05243990e-01 3.93826306e-01 7.53218457e-02 -4.83305424e-01\\n-1.09464027e-01 -1.73052430e-01 -2.26075500e-01 -4.59894568e-01\\n5.80006897e-01 3.13304365e-01 -3.13438594e-01 -2.22106159e-01\\n-2.80672997e-01 -9.55687389e-02 3.41950446e-01 -2.10532285e-02\\n-4.04935032e-02 -9.00340267e-03 5.80752373e-01 -1.76937386e-01\\n3.75622749e-01 5.29786289e-01 -2.13048786e-01 -3.02188903e-01\\n-6.72305599e-02 2.84235120e-01 9.90334079e-02 4.56026256e-01\\n-1.88996643e-01 2.73309767e-01 6.46158233e-02 2.06541523e-01\\n-2.26517797e-01 2.90215742e-02 2.25946650e-01 9.79579613e-02\\n1.49736643e-01 5.40722013e-02 5.74282885e-01 3.40536207e-01\\n2.84645557e-01 3.55635285e-01 3.58910799e-01 5.27420491e-02\\n5.05891562e-01 5.76545477e-01 3.40940446e-01 1.43006518e-01\\n-2.32622474e-02 6.61864057e-02 9.19683054e-02 -2.67255381e-02\\n1.70390472e-01 5.23409128e-01 1.00115307e-01 8.55834246e-01\\n3.27121615e-01 3.83333921e-01 6.89056873e-01 -6.68171346e-01\\n-2.98700750e-01 2.68845912e-02 5.15031815e-01 -4.69754308e-01\\n4.44980338e-02 1.96003169e-01 -2.65809357e-01 1.55805796e-01\\n-5.26422739e-01 -2.39244461e-01 1.97987724e-03 6.03208318e-02\\n-4.44223732e-02 -1.33598968e-01 -1.68413088e-01 2.28887111e-01\\n-1.31252766e-01 -1.42758027e-01 -3.60055506e-01 -1.09288201e-01\\n-2.75815457e-01 3.34134996e-02 -9.96145308e-02 4.40237001e-02\\n-1.06014490e-01 -2.81776607e-01 -1.68639589e-02 -1.39402419e-01\\n3.60379785e-01 -6.96187615e-02 -1.12020478e-01 -2.50156727e-02\\n2.43043721e-01 1.32869542e-01 6.48293138e-01 1.78837478e-02\\n8.48599896e-02 -2.50000209e-01 -1.40357256e-01 6.23552762e-02\\n2.28759289e-01 2.34695189e-02 -3.91375320e-03 3.76838803e-01\\n-2.33588368e-01 -2.61357486e-01 7.96170682e-02 1.75206900e-01\\n-4.07878757e-01 -4.38190587e-02 -1.18612051e-01 8.47824514e-02\\n-1.34902820e-03 1.98414788e-01 -3.02337587e-01 2.15135142e-02\\n-5.74270822e-02 -4.99403059e-01 3.29176903e-01 -1.74990714e-01\\n-1.49460539e-01 1.25245526e-02 2.70362228e-01 1.41746044e-01\\n-2.46404469e-01 8.99055600e-02 -1.87737614e-01 1.59438118e-01\\n-6.67132884e-02 2.97512829e-01 -1.98901206e-01 -2.20736310e-01\\n-3.31923842e-01 1.41132772e-01 -9.16024297e-02 1.81684241e-01\\n3.55431437e-02 4.12354469e-01 7.65552893e-02 4.04589027e-02\\n3.89421374e-01 -1.51551468e-02 -2.70998240e-01 -2.18103588e-01\\n-2.26548940e-01 -1.72021717e-01 -1.16660625e-01 -9.22714770e-02\\n2.63544202e-01 -2.78902918e-01 -6.21061912e-03 -2.97500670e-01\\n-2.16268674e-01 -5.27362585e-01 1.41717307e-02 -1.07467048e-01]]',\n", + " 'OUR COMPANY Our mission is to deliver solutions to the financial services industry, driving business and technology change through proven global expertise. Axxiome is a name synonymous with quality and value for financial services organizations that are looking to improve or build upon their IT operations. With offices and subsidiaries in many countries across 4 continents, Axxiome excels in transforming legacy banking and insurance platforms to modern solutions and is considered a leader in implementation and integration of digitization initiatives across the globe. In Cooperation with the Business Engineering Institute St.Gallen AG (BEI AG) we are building up a Data Science team for financial services. Innovation based on science and projects will lead us to success. BEI AG is the leading company for turning knowledge gained from research and science into practice-oriented consulting and innovative solutions. Join our team as DATA SCIENCE MANAGER F/M SWITZERLAND JOB DESCRIPTION As Data Science Manager you will manage a team of 3-5 highly educated and experienced data science analysts and developers, collaborate with the BEI AG and be responsible with your team for innovation and accurate data collection, processing, modelling and analysis to drive business. Lead data science projects end to end and coordinate functional teams/developers of 3-5 employees Mine, analyze customer data to drive optimization and improvement of products, marketing techniques and business strategy with your team Develop/use predictive statistics behavioral or other models by machine learning and/or traditional statist. modeling techniques to increase and optimize customer experience and revenue generation Develop data models, algorithms, tools and methods Applied knowledge of the configuration options of modules within or across packages to functional solutions using detailed knowledge of package capabilities to meet business requirements Create showcases how BI data can help to facilitate and drive business decisions focused on Financial Services Industries Connect findings to business initiatives and approach customer at various management levels to create opportunities REQUIREMENTS Master’s degree in engineering, computer science, physics, math or economics Familiar with the principles of modelling 5 years of experience Project Management SQL database management and maintenance skills Several years developing sustainable customer relations Fluent in German and English ADDITIONAL AS A PLUS Machine Learning, AI Python; R and/or SPSS knowledge or equivalent tools WE OFFER Unleash your potential in an international company with flat hierarchies. Enjoy a maximum of personal freedom. A structured onboarding process ensure that our new hires get familiar with Axxiome, receive right tools and feel seen and accountable. An attractive salary model with performance-based bonuses, a generous home office regulation, a company car for private use and other benefits of a modern consulting company round off our offer to you. As a top performer, you also participate directly in the company’s success through an investment model. To ensure that your knowledge is always “state-of-the-art”, you regularly take part in internal and external training courses. An intensive training and a regular coaching enable you to reach your personal goals. YOUR APPLICATION Please apply online with your complete set of documents, including your desired salary and your possible starting date at recruiting.dach@axxiome.com. For any questions please don’t hesitate to contact Hardy Schwarzer, Recruiting Manager Europe at Axxiome (hardy.schwarzer@axxiome.com, +49 151 27 655 588).',\n", + " '[\"Research\", \"Cooperation\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Management\", \"Accountability\", \"Operations\", \"Integration\", \"Innovation\", \"Consulting\"]',\n", + " '[\"Tooling\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Technological Change\", \"Business Strategies\", \"Financial Services\", \"Sustainable Development\", \"Service Level Management\", \"Onboarding\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Customer Data Integration\", \"Performance Based Contracting\", \"Process Modeling\", \"Statistical Modeling\", \"SQL Plan Management\", \"Investments\", \"Machine Learning Methods\", \"Data Science\", \"Business Requirements\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Personalization\", \"Physics\", \"Receivables\", \"Service Innovation\", \"Modulation\", \"Economics\", \"Product Marketing\", \"Banking\", \"Project Management\", \"Algorithms\", \"Customer Experience\", \"Service Industries\", \"Additives\", \"Data Collection\", \"Job Descriptions\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"New Hire Orientations\"]',\n", + " \"['English']\"],\n", + " ['114',\n", + " 'internship aircraft data analytics (all genders)',\n", + " 'Zürich',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " \"['English', 'Swedish', 'Marathi', 'Ganda', 'Sinhalese']\"],\n", + " ['88',\n", + " 'embedded software / firmware engineer',\n", + " 'Novazzano',\n", + " '',\n", + " '',\n", + " '[[-2.13615626e-01 3.17603946e-01 4.27932680e-01 -1.25628533e-02\\n4.90105957e-01 -2.43438557e-01 -1.54078931e-01 2.02477500e-01\\n4.33974117e-02 -3.79182458e-01 -1.06364094e-01 -1.07854694e-01\\n-9.39297900e-02 3.13575529e-02 1.66416869e-01 5.32419205e-01\\n1.97336540e-01 -2.97122821e-02 -1.78777009e-01 3.57035637e-01\\n2.01637655e-01 -6.21538907e-02 1.81951001e-01 7.39068508e-01\\n2.49216363e-01 4.96998876e-02 8.57981592e-02 -5.09540699e-02\\n-1.93515807e-01 -2.18473032e-01 3.70928347e-01 7.80771312e-04\\n-1.92874700e-01 -2.83852786e-01 1.98007628e-01 1.08621575e-01\\n-2.56384790e-01 -2.98345443e-02 9.53033392e-04 1.88259110e-01\\n-5.22574425e-01 -3.78825158e-01 1.54568151e-01 1.98277049e-02\\n-1.99459121e-01 -1.97073326e-01 2.41436049e-01 -1.25941247e-01\\n-1.67161168e-03 1.33093903e-02 -5.10663688e-01 2.57662266e-01\\n-1.85914695e-01 -9.40051973e-02 3.70991021e-01 5.84934533e-01\\n1.39318453e-02 -6.26290083e-01 -3.18143487e-01 -2.61174589e-01\\n-1.01508172e-02 -4.69355285e-02 -3.85899357e-02 -1.76207855e-01\\n4.30924803e-01 -4.79861535e-02 -1.45215131e-02 2.38672793e-01\\n-7.43308008e-01 -8.91094431e-02 -3.01801592e-01 1.41941145e-01\\n-2.70113200e-01 -9.48204175e-02 -8.91206637e-02 -2.17152372e-01\\n-4.84045446e-02 4.73446190e-01 1.08767003e-01 5.89200705e-02\\n-1.54117346e-01 2.45117933e-01 -1.83999330e-01 3.04542422e-01\\n3.64919037e-01 1.90130368e-01 1.78765997e-01 2.30319157e-01\\n-4.90135700e-01 4.82555211e-01 1.40564606e-01 -2.70800740e-01\\n2.28467628e-01 2.37322196e-01 3.72663826e-01 1.34433731e-01\\n-3.04082409e-02 1.75479487e-01 -2.18265370e-01 3.20110232e-01\\n2.02055991e-01 -8.26829821e-02 5.71785383e-02 -7.60381073e-02\\n-5.45725785e-02 -1.39089838e-01 -8.04027691e-02 2.53518462e-01\\n-3.86491567e-01 3.19884717e-01 2.03466788e-01 -1.90679535e-01\\n-4.82671522e-03 -5.67386329e-01 -1.84879079e-01 -1.10986479e-01\\n3.95083800e-02 1.81810409e-01 4.02116239e-01 1.43526614e-01\\n2.64169514e-01 1.40972883e-01 1.27205506e-01 9.40545738e-01\\n2.71296520e-02 6.75052702e-02 -1.77686766e-01 4.00302112e-01\\n1.11154333e-01 -1.96357012e-01 6.27346113e-02 3.73464465e-01\\n8.85079354e-02 -1.71951801e-01 -2.27159813e-01 3.81341398e-01\\n-1.83499366e-01 -1.83863550e-01 -2.95124829e-01 2.10124746e-01\\n-1.94515944e-01 -5.07162750e-01 5.38344145e-01 8.02005678e-02\\n1.73450232e-01 6.77218009e-03 -1.95334122e-01 -1.35974467e-01\\n-1.13445953e-01 2.91479647e-01 -1.37274504e-01 1.35638729e-01\\n-2.15806961e-01 -1.18195236e-01 -2.18589589e-01 1.61318243e-01\\n-9.39082876e-02 1.42454669e-01 -1.69721991e-01 -1.60035044e-01\\n1.88406393e-01 -2.93005612e-02 -4.66676623e-01 3.11927915e-01\\n7.52880275e-02 -1.19047865e-01 1.15923965e-02 2.12985978e-01\\n-2.60096043e-02 2.28089020e-01 1.01668008e-01 -2.29837924e-01\\n4.53271389e-01 -1.93684120e-02 1.13036066e-01 -5.64340986e-02\\n2.70376444e-01 -2.48045549e-01 1.04951061e-01 2.20495954e-01\\n-6.11997426e-01 3.40168178e-01 -7.45792910e-02 -8.40912387e-02\\n6.02940246e-02 3.47783864e-02 5.13315380e-01 -2.81815708e-01\\n-1.90750867e-01 -2.14558065e-01 -4.37251568e-01 -3.57132137e-01\\n-1.22602016e-01 1.04225010e-01 3.65291327e-01 -3.25048864e-01\\n-8.10481515e-03 1.88891798e-01 -5.28185129e-01 -7.52027482e-02\\n1.89279214e-01 1.47062317e-01 1.97137594e-01 5.52048087e-02\\n-1.12083293e-01 -4.50272977e-01 -9.11734649e-04 -4.60650265e-01\\n-3.83177787e-01 -1.59306917e-02 -2.07977116e-01 8.40752348e-02\\n6.59514964e-02 4.39317003e-02 -4.75919992e-02 -5.83197698e-02\\n-3.46631825e-01 -1.01401277e-01 3.47464770e-01 2.04043072e-02\\n1.66993752e-01 -2.64409427e-02 -3.22962970e-01 5.55691957e-01\\n-1.98424384e-01 6.23353720e-01 9.12558585e-02 -8.80992115e-01\\n5.08653164e-01 2.73281366e-01 6.18680473e-03 -4.41968709e-01\\n5.85278809e-01 -3.82349670e-01 -3.43779922e-02 1.61146745e-01\\n-2.69647151e-01 -1.46287277e-01 3.04615110e-01 -1.68651342e-01\\n-2.58253783e-01 7.50985920e-01 3.16121988e-02 2.32393760e-02\\n2.45293498e-01 -2.91727006e-01 -1.10613793e-01 -3.18405330e-02\\n-8.50957353e-03 -1.38805136e-01 -4.52556640e-01 5.06341495e-02\\n-3.68159190e-02 -4.85896945e-01 -1.13366991e-01 -4.72997546e-01\\n-2.09320381e-01 -3.68603706e-01 -2.42011860e-01 2.70866752e-01\\n4.90001217e-02 9.03357491e-02 6.28236085e-02 -1.12989359e-01\\n-4.36357930e-02 -6.52041733e-01 -1.03172332e-01 1.25165254e-01\\n4.10856873e-01 1.89809501e-01 9.67685506e-02 -2.07927562e-02\\n-8.65276437e-03 4.08555806e-01 -3.35262716e-01 -2.02630028e-01\\n1.38800189e-01 1.65642664e-01 -2.30085198e-02 -5.85364290e-02\\n1.93177819e-01 3.92142951e-01 -1.63369477e-01 1.76578686e-02\\n-1.78787872e-01 2.61949927e-01 3.41409445e-01 -1.20622367e-01\\n-2.78005302e-01 -2.31522307e-01 9.59087163e-03 2.48363614e-01\\n-5.69014072e-01 -1.46737233e-01 5.21248281e-01 2.69822627e-01\\n1.42906040e-01 9.90066454e-02 3.09970558e-01 -1.80262238e-01\\n-2.06849173e-01 -1.56655833e-01 1.77267700e-01 2.69904763e-01\\n1.34267524e-01 -1.36507687e-03 -9.25226137e-02 -5.05831718e-01\\n-3.35974598e+00 -7.78948069e-02 1.26412779e-01 -2.20854715e-01\\n2.46262729e-01 -1.48269773e-01 1.13978095e-01 3.93725038e-02\\n-2.57997483e-01 4.14314866e-03 -2.96879202e-01 2.77396590e-02\\n6.70287684e-02 1.86882660e-01 7.61982873e-02 1.15807585e-01\\n-1.72087643e-02 -3.65535885e-01 7.94063136e-03 2.93128252e-01\\n-4.43775281e-02 -7.50760913e-01 5.23510389e-02 -7.76177496e-02\\n1.52237520e-01 2.04464234e-02 -4.84314531e-01 -3.67103145e-02\\n-1.79086909e-01 -2.76567042e-01 7.47754648e-02 -1.45245999e-01\\n-1.87711492e-01 2.72608548e-01 9.96245667e-02 -6.91403896e-02\\n1.54967010e-01 -2.69678950e-01 -4.99216653e-02 -4.76781845e-01\\n1.54059142e-01 -6.01470232e-01 4.26412411e-02 -4.18870449e-02\\n5.55779457e-01 -2.07746297e-01 1.67691574e-01 2.37433195e-01\\n1.88324586e-01 2.23544717e-01 -1.16171036e-02 1.45912180e-02\\n-1.62799433e-01 -2.22819641e-01 3.45742442e-02 -1.86524421e-01\\n3.80082846e-01 4.36799288e-01 -1.63528994e-01 6.59017032e-03\\n3.02480590e-02 -2.36541495e-01 -5.63062847e-01 -4.45505798e-01\\n-2.79537767e-01 -2.31425930e-03 -8.35139036e-01 -3.32142889e-01\\n-6.37628213e-02 -1.25564247e-01 -2.28101730e-01 6.11906111e-01\\n-2.85325021e-01 -4.34123427e-01 1.00644715e-01 -5.21095276e-01\\n1.68804392e-01 -2.28059471e-01 8.91194958e-03 -1.51878625e-01\\n-3.55547607e-01 -3.85782301e-01 1.64432928e-01 3.02778799e-02\\n-2.42166772e-01 -1.15629420e-01 4.56676539e-03 -3.60858917e-01\\n-1.85024723e-01 -4.20315981e-01 3.43158305e-01 6.58821762e-02\\n1.87560439e-01 -2.60717310e-02 4.07299787e-01 -1.05985843e-01\\n3.66322458e-01 1.23444587e-01 3.09603103e-03 -4.04457241e-01\\n8.08022842e-02 5.73125519e-02 5.07592618e-01 -3.81816834e-01\\n-8.06697533e-02 2.83759773e-01 -1.69347823e-01 -8.64818543e-02\\n3.89604837e-01 -1.89869814e-02 4.74369228e-02 -2.22536966e-01\\n2.22102553e-01 -4.84652758e-01 -2.61584282e-01 6.94676265e-02\\n1.12537995e-01 7.12387204e-01 7.03076273e-02 -5.36348224e-01\\n-3.19597840e-01 4.31444585e-01 -5.23735993e-02 -1.01119079e-01\\n-2.02145025e-01 1.56548887e-01 -2.76135087e-01 2.80552685e-01\\n-2.09145844e-02 -2.13371053e-01 -2.89409310e-01 -4.18318994e-03\\n-9.78080630e-02 2.68653929e-01 2.13753060e-01 1.90209374e-02\\n-1.28258258e-01 -2.23560676e-01 -1.60319090e-01 1.35719597e-01\\n2.59728760e-01 2.09842116e-01 2.52726465e-01 -3.06646585e-01\\n1.02880977e-01 3.18875015e-01 -2.41391823e-01 2.74829686e-01\\n-2.31854632e-01 3.23471688e-02 -4.37294692e-01 -1.71337560e-01\\n-2.11366117e-01 -3.13611507e-01 9.01343897e-02 3.96325946e-01\\n1.59915239e-01 -9.06231031e-02 1.07103899e-01 -6.48653567e-01\\n3.88436824e-01 5.63523732e-02 1.53864384e-01 1.26992971e-01\\n1.00376919e-01 5.80158591e-01 -4.45190165e-03 -1.81093350e-01\\n-6.70662969e-02 -5.60314097e-02 -3.02075744e-01 -3.18605483e-01\\n9.90825146e-02 -4.07604486e-01 -6.63771629e-02 4.77536231e-01\\n1.30792663e-01 -2.52824575e-01 -1.65807709e-01 2.46659562e-01\\n1.63359791e-01 -1.71207651e-01 -1.53131187e-01 1.59657598e-02\\n1.42545924e-01 -7.09341466e-02 1.96353734e-01 -4.10430908e-01\\n-7.10747093e-02 -1.19179197e-01 -3.12241563e-03 4.44491684e-01\\n2.41926059e-01 1.41502544e-01 -1.22594148e-01 -1.28999636e-01\\n4.64510769e-01 -7.33023509e-02 -1.46394610e-01 -1.90454423e-01\\n4.65387963e-02 -1.71441019e-01 -3.97646517e-01 1.09348238e-01\\n-9.04715806e-02 -8.20900649e-02 4.25095297e-02 2.04721801e-02\\n1.04630195e-01 -3.88379730e-02 -4.11793411e-01 -3.66126776e-01\\n-3.46227676e-01 3.11534357e-04 4.11169901e-02 -4.62630808e-01\\n-2.50173304e-02 8.08892399e-02 -6.07332170e-01 2.06717402e-01\\n-1.11323714e-01 6.35536909e-02 2.20514342e-01 1.36409163e-01\\n-3.37913424e-01 -1.03530116e-01 1.65066216e-02 1.20304063e-01\\n-1.67234808e-01 -8.78458172e-02 -7.15491027e-02 -1.16939998e+00\\n1.96219653e-01 7.32894838e-02 -1.05154008e-01 2.68162731e-02\\n-1.35187224e-01 -7.81627834e-01 5.28430790e-02 -2.31267601e-01\\n1.85298324e-02 -1.77148189e-02 -2.30370224e-01 -3.99369836e-01\\n9.22446102e-02 4.85526584e-03 -1.76725328e-01 3.77589226e-01\\n-5.61588228e-01 3.97005945e-01 -9.22150910e-02 7.64394477e-02\\n-4.26446134e-03 -1.62273139e-01 2.70926148e-01 -3.46793920e-01\\n-3.14043045e-01 -1.51008025e-01 -3.29169899e-01 -3.18077236e-01\\n-1.35447949e-01 -2.57869601e-01 -1.29413709e-01 1.40353441e-01\\n2.79273242e-01 1.03060819e-01 -4.92629185e-02 -2.54885942e-01\\n8.99574161e-02 -2.47070059e-01 6.05689250e-02 -2.84231812e-01\\n1.26314655e-01 -6.92555383e-02 1.32175133e-01 -2.36125980e-02\\n1.42273977e-01 -2.55191028e-01 5.54597735e-01 -2.46380955e-01\\n-4.13167983e-01 -3.35914418e-02 5.44341393e-02 8.94631445e-02\\n3.02655637e-01 -3.98012996e-01 1.18419021e-01 1.95767596e-01\\n1.04228340e-01 -1.00291474e-02 3.66578281e-01 -1.58633292e-01\\n-2.16297567e-01 1.56728551e-01 -4.74798471e-01 -1.41962152e-02\\n6.86935365e-01 1.75731689e-01 2.19123513e-01 7.13868886e-02\\n1.59895584e-01 3.11452806e-01 4.90792006e-01 -8.43182653e-02\\n-5.37714995e-02 1.51669502e-01 9.22257751e-02 -4.77616012e-01\\n-2.90272117e-01 -2.51314223e-01 -1.32028759e-01 -2.19231978e-01\\n5.31454444e-01 3.47626001e-01 -2.64559060e-01 -2.33002067e-01\\n-1.08870707e-01 -7.23061711e-02 2.23448753e-01 -1.15844913e-01\\n9.57976189e-03 -7.18130246e-02 5.05025029e-01 1.99624300e-02\\n3.01606625e-01 5.88312387e-01 -2.33808592e-01 -4.92363185e-01\\n-4.18100879e-02 1.80526033e-01 8.66459161e-02 3.05853486e-01\\n-5.52699640e-02 2.99046814e-01 -4.30786936e-03 1.46482661e-01\\n-2.32413694e-01 3.99071686e-02 1.22281820e-01 1.45327836e-01\\n8.51866454e-02 9.13102850e-02 2.11871356e-01 5.18447161e-01\\n2.73576409e-01 4.72106427e-01 2.94362187e-01 5.15267029e-02\\n3.41447145e-01 5.03679454e-01 3.21332157e-01 1.82144061e-01\\n3.32080610e-02 1.81557000e-01 1.59525424e-02 -1.58420429e-02\\n3.30299973e-01 3.05504203e-01 2.46051654e-01 8.15553606e-01\\n3.69960785e-01 3.26444268e-01 8.58832181e-01 -6.30624890e-01\\n-4.16969836e-01 8.03778470e-02 5.02247334e-01 -5.13933241e-01\\n-4.16544117e-02 1.09219208e-01 -1.41629636e-01 3.11378032e-01\\n-3.59295219e-01 -2.00052947e-01 -1.08525135e-01 -5.22813350e-02\\n3.81500311e-02 -1.87376574e-01 -2.31756940e-01 -5.76272644e-02\\n-2.90530950e-01 -1.68902457e-01 -3.06070447e-01 -1.97270662e-01\\n-3.44917446e-01 -8.99145678e-02 -7.88704231e-02 7.76850339e-03\\n-8.81865695e-02 -3.70745838e-01 -1.56380743e-01 -5.72847575e-02\\n3.04666132e-01 -1.63572207e-01 -8.70613307e-02 -2.35739201e-01\\n2.10646361e-01 2.01737583e-01 5.65600753e-01 1.18469894e-01\\n1.74891397e-01 -1.21805683e-01 -1.12904519e-01 7.36565189e-03\\n5.47935776e-02 1.43977404e-01 1.94167525e-01 4.57959384e-01\\n-4.14447665e-01 -8.32151398e-02 2.11560056e-01 3.87843221e-01\\n-2.57223994e-01 -2.03888148e-01 -1.10551700e-01 1.33483514e-01\\n2.99808681e-02 2.17544101e-02 -2.46060103e-01 4.70941551e-02\\n-2.05596983e-01 -7.01582074e-01 4.40840304e-01 -1.81198820e-01\\n-9.23837721e-02 2.02917904e-01 5.75891495e-01 2.57588953e-01\\n-1.62014306e-01 1.95842683e-02 6.29364625e-02 3.36315125e-01\\n-1.97805669e-02 3.32437903e-01 -2.87119001e-01 -7.47981295e-02\\n-2.95398295e-01 2.61865586e-01 -1.98986098e-01 2.37158388e-01\\n5.60664982e-02 3.99855912e-01 6.40698299e-02 5.39857335e-02\\n2.11699948e-01 -1.23724967e-01 -2.03969374e-01 -3.10359120e-01\\n-2.73683697e-01 -1.18881196e-01 -3.63972150e-02 -8.16555843e-02\\n2.15899736e-01 -3.69622737e-01 -3.57220136e-03 -1.08101241e-01\\n-4.87410203e-02 -2.81445950e-01 -2.10505068e-01 3.23460698e-02]]',\n", + " '– ref. “PE_EmbeddedSW_2019” He/she will be part of the embedded software design team, defining the design specification, coding and testing embedded software for complex low power, RF IoT devices. Main responsibilities Develop low level drivers, protocol stacks and low power applications software for both, RTOS and embedded Linux based platforms Promote new technologies, proactively looking at innovative protocols and solutions Qualifications University degree in Computer Science or Electronics Engineering or equivalent discipline Proven experience in architecture definition and software development in C/C++ for embedded applications Knowledge of IoT technologies and application protocols for embedded systems – such as CoAP, MQTT, LWM2M and data models Good knowledge of microcontrollers, in particular Cortex-M microcontrollers and peripherals Experience with embedded Linux platforms, such as RPI and BBB Experience with radio networking protocols such as 802.15.4, 6LoWPAN, IPv6, TCP-IP, ZigBee, Bluetooth Good knowledge of low power design techniques Experience in debugging and validating complex embedded systems and protocol stacks Ability to read schematics and debug at PCB level using typical lab equipment if needed Knowledge and experience on software engineering methodologies: lifecycle, quality assurance and testing techniques, continuous integration and continuous deployment technologies, Agile scrum methodology Knowledge of RF and IoT platforms Knowledge of embedded OS and embedded Linux platforms Proficient understanding of code versioning tools, such as Git Soft skills Flexibility, ability to prioritise activities and efficiently manage time, meeting deadlines Problem solving approach and ability to manage pressure Able to work cross-functionally in dynamic and international environments Effective communication in English (both written & oral – including technical documentation) If you want to employ your talent with us, have a look at our open positions and apply for the one that best fits your profile by writing to recruitment@pdxeng.ch. All job opportunities are intended for Paradox Engineering’s offices in Novazzano (Ticino, Switzerland). We offer Swiss Labour contracts and remuneration in line with candidates’ experience.',\n", + " '[\"Writing\", \"Proactivity\", \"Problem Solving\", \"Communications\", \"Innovation\", \"Quality Assurance\", \"Time Management\"]',\n", + " '[\"Tooling\", \"Enterprise Application Software\", \"Computer Science\", \"Continuous Integration\", \"Scholastic READ 180\", \"Cortex M\", \"IPv6\", \"Activism\", \"Electronic Engineering\", \"Linux\", \"Message Queuing Telemetry Transport (MQTT)\", \"M (Programming Language)\", \"Wireless Application Protocol (WAP)\", \"Design Specifications\", \"Levelling\", \"Agile Edge Technologies\", \"Scrum (Software Development)\", \"TCP/IP\", \"Embedding\", \"Remuneration\", \"Software Engineering\", \"C (Programming Language)\", \"6LoWPAN\", \"Embedded Systems\", \"Technical Documentation\", \"Power Supply Design\", \"Software Design\", \"Validations\", \"Software Development\", \"Radio Link Protocols\", \"Bluetooth\", \"Git Flow\", \"Embedded Software\", \"Zigbee\", \"Debugging\", \"Protocol Stack\"]',\n", + " \"['English', 'Thai']\"],\n", + " ['12',\n", + " 'software engineer (frontend)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.78922907e-01 3.55448157e-01 4.88102317e-01 -3.51948030e-02\\n4.67797935e-01 -1.70703396e-01 9.27720815e-02 3.92824143e-01\\n-9.62727610e-03 -4.02688235e-01 -1.11521326e-01 -2.64397591e-01\\n-2.05018103e-01 -2.62584928e-02 1.57824904e-01 3.75637710e-01\\n2.70717621e-01 1.05991788e-01 -2.43489340e-01 4.56669450e-01\\n1.17389515e-01 -1.64541304e-01 4.27792780e-02 6.05228186e-01\\n3.81771863e-01 -2.08762567e-02 -8.39423016e-03 -2.77622156e-02\\n-2.54470646e-01 -3.36419642e-01 4.04787600e-01 5.57277426e-02\\n-8.66845772e-02 -3.84343773e-01 1.30399317e-01 1.63941905e-01\\n-1.92733854e-01 6.47729859e-02 -1.13592103e-01 2.38667086e-01\\n-5.13946176e-01 -3.20402056e-01 2.06290632e-01 3.03195193e-02\\n-2.63389856e-01 -3.28499317e-01 7.42018446e-02 -4.36670892e-02\\n1.01065589e-02 1.13035850e-01 -4.92823809e-01 3.52665365e-01\\n-2.70722836e-01 -2.29886189e-01 3.88456643e-01 6.40526116e-01\\n1.36341257e-02 -6.05229735e-01 -4.04989541e-01 -3.45802486e-01\\n-1.74601153e-02 -9.23213437e-02 1.73901226e-02 -2.34383360e-01\\n2.93811738e-01 -5.82932793e-02 -3.41405384e-02 3.49083990e-01\\n-8.06545794e-01 -1.52956560e-01 -1.89421639e-01 -6.29523695e-02\\n-4.40919906e-01 -9.89280343e-02 -3.38117957e-01 -1.31155118e-01\\n-4.48256433e-02 3.63102943e-01 2.05049571e-02 -3.76158990e-02\\n-1.03467852e-01 2.99938053e-01 -2.16447189e-01 3.67752254e-01\\n3.30257565e-01 1.62808686e-01 1.71647936e-01 3.90070766e-01\\n-3.05149883e-01 4.56653208e-01 1.89734340e-01 -2.82773584e-01\\n2.82818168e-01 8.21557492e-02 5.44450700e-01 1.33719757e-01\\n3.96797769e-02 2.36074895e-01 -2.61114866e-01 1.99121818e-01\\n1.85450792e-01 -3.06542814e-01 1.52592734e-02 -6.99026976e-03\\n5.35986992e-03 6.42567128e-02 -4.35438892e-03 3.05716723e-01\\n-3.23275238e-01 4.05633360e-01 1.99510828e-01 -2.36179158e-01\\n-1.18824065e-01 -5.46549737e-01 -1.18428402e-01 2.07686257e-02\\n-7.03419223e-02 1.99784756e-01 2.27878883e-01 2.04501018e-01\\n2.36695766e-01 7.16216862e-02 1.08540505e-01 9.47432756e-01\\n3.31168552e-03 9.92044508e-02 -2.72871792e-01 3.65683109e-01\\n1.81012377e-01 -2.36323521e-01 1.83069065e-01 2.71910012e-01\\n1.38166547e-01 -8.54842588e-02 -2.05078989e-01 4.07163829e-01\\n-1.03497222e-01 -1.63003862e-01 -3.49696130e-01 1.57956332e-01\\n-1.67962402e-01 -4.24092263e-01 5.85016191e-01 1.20792881e-01\\n2.30834678e-01 3.30699198e-02 -4.78492044e-02 -9.25175026e-02\\n-1.32876277e-01 2.91427910e-01 -4.10104655e-02 1.62246585e-01\\n-3.56431812e-01 -1.89583585e-01 -2.65788436e-01 3.63306820e-01\\n-1.64262444e-01 1.05906136e-01 -1.18803665e-01 -1.26820743e-01\\n3.34083170e-01 9.33930352e-02 -3.40233237e-01 2.19756141e-01\\n-4.81734984e-02 4.12173942e-03 -1.54276520e-01 4.10689265e-01\\n-1.18096903e-01 2.35731348e-01 3.20759416e-02 -1.69868499e-01\\n6.06490552e-01 2.21001655e-01 7.45974109e-02 -1.89875394e-01\\n3.84249568e-01 -1.49615973e-01 2.71877080e-01 1.55050084e-01\\n-5.64137459e-01 2.75998265e-01 -8.36666524e-02 2.20207926e-02\\n3.58547047e-02 -9.20107737e-02 3.56237322e-01 -3.28862280e-01\\n-1.36724621e-01 -2.19927773e-01 -3.73622268e-01 -2.61899710e-01\\n-3.98012221e-01 -5.86396083e-02 4.82442200e-01 -3.61741662e-01\\n-1.85132310e-01 3.51507008e-01 -4.94710028e-01 -6.37531206e-02\\n2.44943678e-01 2.33882636e-01 5.77834249e-02 9.62779522e-02\\n-1.96045280e-01 -5.62014580e-01 1.08679384e-01 -4.11072731e-01\\n-4.01271552e-01 5.74265942e-02 -2.94659376e-01 2.36572996e-01\\n7.98545480e-02 1.48096785e-01 -1.09918378e-01 1.22838929e-01\\n-2.53579497e-01 -6.03199750e-02 1.33814022e-01 1.28411576e-01\\n1.96500659e-01 -1.60635356e-02 -4.23595995e-01 4.24498945e-01\\n-2.11646780e-01 5.89651704e-01 2.00502202e-01 -8.95950258e-01\\n5.73925853e-01 2.92546481e-01 -1.33032784e-01 -3.46242756e-01\\n4.63493288e-01 -2.81891704e-01 -1.09126163e-03 1.84285998e-01\\n-2.22881570e-01 -3.19260478e-01 3.01764965e-01 -2.17959687e-01\\n-3.13490868e-01 5.16770422e-01 1.30831748e-01 -8.50890484e-03\\n3.05247217e-01 -2.79850066e-01 -5.35130650e-02 2.79267319e-02\\n-1.15611523e-01 -9.45947468e-02 -3.61089766e-01 1.10834375e-01\\n-1.03269994e-01 -4.66271281e-01 -1.41084641e-01 -3.98525447e-01\\n-2.96719044e-01 -5.30869067e-01 -2.77024269e-01 3.44659269e-01\\n1.32252604e-01 2.28231996e-01 2.20924430e-02 -1.23448891e-03\\n-1.23933747e-01 -7.44655490e-01 -1.10830069e-01 9.61943641e-02\\n3.31979662e-01 2.80724525e-01 1.49593741e-01 -1.20860273e-02\\n5.65661490e-03 4.57743287e-01 -2.28030473e-01 -1.47788197e-01\\n6.63646981e-02 1.09343946e-01 5.12040108e-02 -1.38613358e-01\\n4.43690792e-02 4.29511249e-01 -2.57224202e-01 7.64143392e-02\\n-1.54677451e-01 -4.06077206e-02 3.94137114e-01 -3.32218148e-02\\n-4.17912364e-01 -1.94282860e-01 7.72332251e-02 2.31991246e-01\\n-5.99252105e-01 -2.01512456e-01 6.38359070e-01 1.79156944e-01\\n2.10216656e-01 1.84793636e-01 2.93368310e-01 -1.11161239e-01\\n-9.29565951e-02 -2.29346082e-01 2.30499804e-01 1.29533485e-01\\n1.03708282e-01 1.50776982e-01 -1.81928188e-01 -6.59106493e-01\\n-3.30501652e+00 -2.12112293e-01 2.57875174e-01 -2.55741686e-01\\n9.49615017e-02 -6.19515330e-02 -1.90068521e-02 -1.39448568e-01\\n-2.59523332e-01 1.74383745e-02 -8.90106931e-02 -8.21046904e-02\\n-1.45371975e-02 3.31775457e-01 1.14749618e-01 2.13930920e-01\\n1.26423717e-01 -2.49267906e-01 -2.90117916e-02 3.58675241e-01\\n-1.44142836e-01 -6.64317131e-01 1.96043685e-01 2.46282257e-02\\n2.20226631e-01 1.68360099e-01 -3.82827610e-01 -1.98850736e-01\\n-1.34301871e-01 -1.49265423e-01 1.09297700e-01 -2.42078200e-01\\n-2.25767896e-01 2.41257355e-01 1.28610536e-01 -3.13541405e-02\\n1.09000705e-01 -2.83460170e-01 1.26731535e-02 -3.97939414e-01\\n8.47425163e-02 -6.30286098e-01 -4.25320864e-03 -1.04424566e-01\\n6.64433658e-01 -3.33851337e-01 1.09902717e-01 1.62779272e-01\\n9.26153585e-02 1.47065148e-01 1.00370990e-02 6.48986399e-02\\n-2.43596047e-01 -1.94930300e-01 -2.68069599e-02 -9.52583104e-02\\n4.95012999e-01 5.27192831e-01 -1.85347617e-01 -1.36851193e-02\\n3.09094172e-02 -3.79243821e-01 -4.65794116e-01 -3.64159077e-01\\n-1.42165020e-01 -1.69476599e-01 -7.75138557e-01 -4.75094140e-01\\n-1.06478117e-01 -7.11980239e-02 -2.02330485e-01 6.38430119e-01\\n-3.03299546e-01 -3.73731166e-01 1.94707140e-02 -5.02759993e-01\\n1.39587715e-01 -2.39000201e-01 1.33444846e-01 -1.49044290e-01\\n-2.98530787e-01 -4.97581601e-01 6.83359131e-02 1.15239266e-02\\n-2.22240955e-01 -1.49615258e-01 8.76732245e-02 -1.38306245e-01\\n-2.27306008e-01 -4.64726180e-01 4.54068214e-01 1.49758577e-01\\n2.30911538e-01 7.38290846e-02 4.33404267e-01 1.29351139e-01\\n3.81670713e-01 -1.58384547e-01 -1.84710342e-02 -4.38052088e-01\\n1.05294704e-01 -8.44452158e-02 6.20211184e-01 -2.41563350e-01\\n7.60696679e-02 2.56425053e-01 -2.30598375e-01 -9.12607536e-02\\n4.18525726e-01 9.38687697e-02 -6.19958043e-02 -1.84219137e-01\\n3.17593843e-01 -2.38526911e-01 -1.61275819e-01 1.01525433e-01\\n5.54845855e-02 6.68446004e-01 -4.29223701e-02 -4.51189518e-01\\n-2.93660939e-01 5.39456964e-01 -9.34294909e-02 -4.58560698e-02\\n-8.25249180e-02 7.91256353e-02 -1.17044725e-01 2.97098339e-01\\n1.17495373e-01 -2.28234842e-01 -3.40609848e-01 -9.42004174e-02\\n-7.37800673e-02 2.58564085e-01 2.72915989e-01 9.47997794e-02\\n-8.03504810e-02 -2.10542321e-01 -1.38925165e-01 1.52696207e-01\\n1.27516836e-01 2.61971623e-01 1.56818226e-01 -2.83674657e-01\\n1.34788929e-02 3.37328315e-01 -3.53877008e-01 1.57746673e-01\\n-3.01743269e-01 6.85129687e-02 -5.65846682e-01 -2.25872025e-01\\n-1.93249166e-01 -4.43850040e-01 2.00943694e-01 3.10309112e-01\\n1.21174924e-01 3.85396443e-02 8.72906744e-02 -5.51306605e-01\\n3.93148661e-01 1.25574991e-01 1.50422081e-01 1.62287757e-01\\n-2.07547117e-02 4.90954012e-01 3.14802453e-02 -1.45233274e-01\\n-1.76747471e-01 -3.27166333e-03 -1.15450978e-01 -2.55162984e-01\\n4.97839935e-02 -4.80956852e-01 -1.31804839e-01 3.44045341e-01\\n6.22132756e-02 -3.13989043e-01 -3.16055447e-01 1.64222851e-01\\n4.91249040e-02 -2.78783202e-01 -1.58229530e-01 -6.99101239e-02\\n2.29877695e-01 7.41120502e-02 3.24746907e-01 -4.50890541e-01\\n1.70710795e-02 -4.06720787e-02 -1.24081835e-01 5.78812003e-01\\n9.37142819e-02 9.70870629e-02 -2.33463109e-01 -8.07855651e-02\\n3.71065050e-01 -1.16233323e-02 -8.50457028e-02 -2.30395436e-01\\n7.27652833e-02 -2.09904909e-01 -4.42491353e-01 -5.20256869e-02\\n-2.71695219e-02 -2.14853421e-01 3.84062007e-02 1.20354816e-01\\n5.18461503e-02 6.28214926e-02 -5.24341822e-01 -3.81905973e-01\\n-2.99018919e-01 -6.44295588e-02 1.07040808e-01 -4.03912932e-01\\n-1.20974354e-01 2.56382395e-02 -5.17824709e-01 2.20881298e-01\\n-2.62708694e-01 -8.74553099e-02 9.04018730e-02 6.25457615e-02\\n-3.85046691e-01 -1.71938747e-01 6.04259372e-02 1.84546605e-01\\n-2.38561183e-01 -3.01425278e-01 1.79628003e-03 -9.73869085e-01\\n1.46615118e-01 -9.89611726e-03 -9.11089405e-02 8.09409469e-02\\n-1.20665215e-01 -6.94028735e-01 1.68348640e-01 -4.64141011e-01\\n-3.80818397e-02 1.43982232e-01 -1.90838486e-01 -5.22742093e-01\\n1.61216825e-01 -5.75895794e-02 -3.73812079e-01 4.22220379e-01\\n-4.78931367e-01 3.47566962e-01 -7.36224949e-02 1.42886579e-01\\n4.86982707e-03 -3.25738102e-01 8.64106715e-02 -4.85417485e-01\\n-3.81422788e-01 -1.39931768e-01 -3.49498898e-01 -2.56977767e-01\\n2.61707045e-03 -2.44352669e-01 -1.92040801e-01 1.07397720e-01\\n3.04328263e-01 7.89873227e-02 1.76774971e-02 -3.00457209e-01\\n3.81981321e-02 -4.31241632e-01 1.49818763e-01 -2.65903175e-01\\n-1.50644304e-02 -4.82627563e-02 1.31531999e-01 1.31294569e-02\\n1.31699309e-01 -2.97244489e-01 4.77939457e-01 -2.57500231e-01\\n-3.12052876e-01 -8.52251872e-02 3.07801254e-02 -1.23529911e-01\\n2.46413007e-01 -4.79605854e-01 1.08726315e-01 2.95331478e-01\\n1.33364528e-01 6.28307536e-02 2.62253970e-01 -7.97557756e-02\\n-4.73396108e-02 2.08961412e-01 -3.91412258e-01 6.17673621e-02\\n7.49656558e-01 9.31150913e-02 1.21268883e-01 6.88883364e-02\\n1.22154683e-01 4.00165260e-01 5.49427509e-01 -5.40848263e-02\\n-1.27538070e-01 2.68180013e-01 4.76519652e-02 -5.60504735e-01\\n-8.64585266e-02 -9.63782705e-03 -2.54406691e-01 -2.67033070e-01\\n6.14805222e-01 3.67003560e-01 -3.69655490e-01 -2.54054308e-01\\n-6.96756989e-02 -2.84299165e-01 1.76220238e-01 -8.20616856e-02\\n8.88836221e-04 -8.71996656e-02 5.51236033e-01 -1.67109370e-02\\n2.85067320e-01 4.29125637e-01 -1.95513934e-01 -4.58275348e-01\\n-4.01689224e-02 2.76612133e-01 9.57520381e-02 4.37745452e-01\\n-1.40753403e-01 2.08457083e-01 -3.05032525e-02 9.51060951e-02\\n-1.09410845e-01 1.61342233e-01 1.25883102e-01 1.45913079e-01\\n2.74403840e-01 -3.48217599e-02 4.67480332e-01 5.44867456e-01\\n2.68328577e-01 5.21563292e-01 2.81905860e-01 -2.50274651e-02\\n4.08552676e-01 6.24021053e-01 5.64436674e-01 1.98118195e-01\\n-2.79348698e-02 2.08998054e-01 7.27418661e-02 -9.30695310e-02\\n3.59967500e-01 3.88077199e-01 1.77123383e-01 9.12606955e-01\\n3.72257262e-01 3.11306894e-01 7.89697468e-01 -7.02055097e-01\\n-3.73968661e-01 -1.08235124e-02 5.04804969e-01 -2.39846572e-01\\n-9.43948925e-02 1.58365071e-01 -2.50876576e-01 2.64156193e-01\\n-5.61132789e-01 -1.77727878e-01 -1.02137499e-01 9.70658958e-02\\n6.58167079e-02 -3.79927754e-02 -1.81985423e-01 9.08017717e-03\\n-1.70794129e-01 -1.00028887e-01 -4.07123238e-01 -8.93212780e-02\\n-2.94101000e-01 -1.21426687e-01 -1.80248410e-01 -5.68395294e-02\\n-1.33289039e-01 -4.18637037e-01 -1.54207796e-01 1.02372905e-02\\n3.56526703e-01 -1.57676116e-01 -1.50807872e-01 -1.87103927e-01\\n1.99290231e-01 2.13615775e-01 4.96453613e-01 1.10436473e-02\\n1.83816791e-01 -2.14351565e-01 -2.13810146e-01 4.96212281e-02\\n1.86507151e-01 1.00986630e-01 3.24017629e-02 4.28416759e-01\\n-3.06897193e-01 -5.89341633e-02 4.98863757e-02 3.41522276e-01\\n-3.88958842e-01 -1.43921629e-01 -1.36662304e-01 2.91213661e-01\\n5.25037311e-02 7.37457126e-02 -1.62694737e-01 -5.60752023e-03\\n-1.70936346e-01 -5.53949058e-01 3.92576993e-01 -2.40571141e-01\\n-2.77313031e-02 1.95851520e-01 1.89989224e-01 1.58554196e-01\\n-2.19413921e-01 -4.42927441e-04 -8.90174657e-02 2.70325691e-01\\n2.43269317e-02 3.12974840e-01 -2.21448317e-01 -2.17067912e-01\\n-2.34445170e-01 2.99326956e-01 -1.82680622e-01 7.19675645e-02\\n1.90522317e-02 3.16149265e-01 1.32012397e-01 3.20912711e-02\\n3.94970089e-01 1.50531214e-02 -2.03942940e-01 -2.17166722e-01\\n-1.77158162e-01 -2.91779071e-01 2.22502258e-02 9.04712081e-03\\n1.53742775e-01 -2.69261390e-01 -5.39068617e-02 -8.58788490e-02\\n-1.45702839e-01 -4.24641967e-01 -1.44201264e-01 4.17050943e-02]]',\n", + " \"aiai! Join our agile engineering team and help us build our new Software as a Service platform for AI, Chatbots and business automation. Your Role Create stunning, highly interactive interfaces without losing focus on accessibility Find and solve user experience problems Design and implement code with a focus on robustness, scalability, reliability and performance Participate in DevOps strategy, including automation efforts and monitoring improvements Challenge our product and user experience designers Ensure high quality of our software products with Unit-, Integration- and End-to-End-Tests Work together in small, highly motivated, interdisciplinary teams and bring Machine Learning, Natural Language Processing and Chatbots to the cloud Turn our customers into fans You're offering these qualifications BS/MS degree in Computer Science, similar technical field of study or equivalent practical experience Very good knowledge of JavaScript, CSS3 and HTML5. Experience with Typescript is a plus. Good knowledge of Browser APIs Experience with one or more modern JavaScript frameworks including but not limited to: Vuejs, React or Angular Good knowledge of REST API architectures. You are feeling confident in working with one of the following languages: Python, Go, Java, Ruby or PHP An interest or understanding of at least one of the following: DevOps, Data Visualization, Software Architecture, User Experience Design or Interaction Design Very good communication (written and spoken) in German and English Valid work permission for Switzerland or Swiss/EU citizenship We're offering these benefits 6 weeks paid holiday Work in an agile environment The chance to solve very interesting challenges with cutting edge technologies Boost your skills and work with a highly skilled team \",\n", + " '[\"Written Communication\", \"Reliability\", \"Integration\"]',\n", + " '[\"Automation\", \"Accessioning\", \"Agility\", \"Natural Language Processing\", \"Interactivity\", \"Boost (C++ Libraries)\", \"Computer Science\", \"Machine Learning\", \"Interaction Design\", \"TypeScript\", \"Ruby (Programming Language)\", \"Python (Programming Language)\", \"Business Process Automation\", \"HTML5\", \"Agile Edge Technologies\", \"SARS Software Products\", \"Limiter\", \"PHP (Scripting Language)\", \"React.js\", \"Data Visualization\", \"Software as a Service (SaaS)\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Scalability\", \"User Experience Design (UX)\", \"JavaScript Frameworks\", \"Angular (Web Framework)\", \"Chatbot\", \"Experience Design\", \"User Experience\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Chuang', 'Yiddish', 'Guarani', 'Mongolian']\"],\n", + " ['39',\n", + " 'supply chain data analyst (m/f)',\n", + " 'Reinach',\n", + " '',\n", + " '',\n", + " '[[-1.28764436e-01 2.81232744e-01 5.46897054e-01 2.39168555e-02\\n4.87601131e-01 -6.08971901e-02 4.35195379e-02 4.44313020e-01\\n4.20789011e-02 -4.31067914e-01 -1.91733837e-02 -3.02204907e-01\\n3.51779163e-02 1.44612134e-01 8.17054585e-02 4.81249332e-01\\n1.42991006e-01 1.65683970e-01 -1.51579052e-01 3.48072678e-01\\n2.09333420e-01 -2.18113601e-01 7.05627799e-02 7.14393258e-01\\n4.98119146e-01 -6.37528971e-02 -1.55709073e-01 -1.68627456e-01\\n-2.36410141e-01 -3.39036733e-01 4.54381227e-01 5.54485712e-03\\n-1.61002666e-01 -4.03046042e-01 1.40599489e-01 9.48599353e-02\\n-2.53681690e-01 -4.97404113e-02 -1.01542100e-01 1.12951100e-01\\n-6.37218893e-01 -2.34703541e-01 -4.95794192e-02 9.76033881e-02\\n-2.75957376e-01 -2.97132343e-01 -5.73506653e-02 -2.48469338e-01\\n2.09559321e-01 8.78555998e-02 -5.83139241e-01 3.46242964e-01\\n-1.92888424e-01 -2.47145981e-01 1.82381585e-01 7.37409353e-01\\n1.74885569e-03 -4.08297062e-01 -5.97543061e-01 -3.69059891e-01\\n1.30141020e-01 -9.84064490e-02 4.46544914e-03 -2.91452259e-01\\n3.14586639e-01 -7.59287998e-02 1.18152283e-01 2.99740523e-01\\n-8.21612120e-01 4.24459465e-02 -2.43652329e-01 -1.28605068e-01\\n-2.57679760e-01 1.08537858e-03 -4.34394687e-01 -5.57115339e-02\\n-2.08737388e-01 4.20561612e-01 8.39779153e-03 -4.25238200e-02\\n-2.47895733e-01 2.11780921e-01 -3.11896324e-01 2.68603921e-01\\n2.55449712e-01 1.98734924e-01 2.60259956e-01 3.08454037e-01\\n-2.94404984e-01 4.71016556e-01 1.89391658e-01 -2.19466552e-01\\n2.33851194e-01 5.03624640e-02 3.70529205e-01 -5.71726635e-02\\n1.81744277e-01 7.04566017e-02 -3.35229099e-01 2.67888129e-01\\n3.17238927e-01 -2.22069517e-01 1.02975346e-01 -1.64164007e-01\\n-1.49377957e-02 -1.03025148e-02 8.76927897e-02 2.58724988e-01\\n-2.09802106e-01 4.20759737e-01 1.89734448e-03 -1.35146201e-01\\n-1.74052626e-01 -5.28820217e-01 -8.59992057e-02 -4.80410531e-02\\n1.60068527e-01 2.23622769e-01 6.08341135e-02 1.92289785e-01\\n2.59475261e-01 -1.01211637e-01 1.17319666e-01 8.31721067e-01\\n-6.45617917e-02 9.63801742e-02 -3.02544653e-01 2.67725468e-01\\n3.75905149e-02 -3.39066982e-01 1.97602138e-01 1.97701111e-01\\n-5.33101559e-02 -2.25135505e-01 -2.48776421e-01 3.21419805e-01\\n-5.57252504e-02 -1.77175358e-01 -2.28699103e-01 1.72681823e-01\\n5.63719012e-02 -3.40610832e-01 6.64120913e-01 3.98432277e-02\\n1.32725552e-01 -7.50221461e-02 -1.22490590e-02 -9.61322710e-02\\n-1.06725395e-02 1.79952651e-01 1.79459795e-01 3.62738930e-02\\n-2.68734813e-01 -3.02008092e-01 -1.64258212e-01 7.36802816e-02\\n-4.23053592e-01 1.65526420e-01 -1.21396191e-01 -6.75761551e-02\\n2.78499693e-01 4.19373624e-02 -2.49632671e-01 2.97974378e-01\\n-1.41237676e-01 -3.93906608e-02 4.55705635e-02 2.84124881e-01\\n-3.14811349e-01 2.40439937e-01 -2.54387408e-02 -3.44077051e-02\\n7.52553821e-01 1.05511174e-01 1.48284167e-01 1.14828460e-01\\n2.93795794e-01 5.58137558e-02 1.14752688e-01 1.48557410e-01\\n-5.69136381e-01 4.73231554e-01 -4.47113849e-02 -2.88504273e-01\\n2.22794443e-01 -1.48736566e-01 4.33844626e-01 -2.50106335e-01\\n2.28771213e-02 -1.69143304e-01 -2.93767840e-01 -3.18153739e-01\\n-2.34207004e-01 -1.10197656e-01 3.52335513e-01 -4.39643592e-01\\n-9.36490600e-04 1.63303152e-01 -5.21103859e-01 -1.30809531e-01\\n1.29113913e-01 2.10481793e-01 8.03400502e-02 1.64008901e-01\\n-1.90959945e-01 -5.11997581e-01 8.97692814e-02 -3.57128710e-01\\n-1.53712615e-01 3.38476859e-02 -3.04998785e-01 1.74673602e-01\\n4.24587950e-02 1.28055185e-01 -1.76694050e-01 1.17558837e-01\\n-2.09624678e-01 -1.46156833e-01 1.21898748e-01 7.49668106e-02\\n2.79185772e-01 1.01576991e-01 -3.90949100e-01 3.76045018e-01\\n-5.54475524e-02 5.68349957e-01 1.51172772e-01 -8.86357725e-01\\n4.50291276e-01 3.85232896e-01 3.96634787e-02 -3.25285345e-01\\n6.29735053e-01 -2.68870085e-01 -8.96312576e-03 4.72313650e-02\\n-3.16972762e-01 -3.50511998e-01 2.52959728e-01 -1.60521537e-01\\n-2.51252055e-01 3.79714221e-01 8.93100277e-02 1.67644322e-01\\n1.32343069e-01 -1.42613187e-01 -1.01433136e-01 7.99286813e-02\\n3.45585681e-02 -1.71544179e-01 -5.02561510e-01 2.48241201e-02\\n-4.21282239e-02 -3.21013868e-01 -1.97903425e-01 -4.85130757e-01\\n-2.10628092e-01 -3.01327229e-01 -2.10874513e-01 2.04483166e-01\\n2.27844417e-01 1.74164772e-01 4.02374417e-02 2.43239030e-02\\n-1.67955235e-01 -6.98134124e-01 -1.54068723e-01 1.07779369e-01\\n4.76227850e-01 2.11453319e-01 9.91025642e-02 -8.23631138e-02\\n4.25253585e-02 6.67702913e-01 -2.53969908e-01 -2.76519090e-01\\n1.98636383e-01 9.62556750e-02 9.65693519e-02 -1.41181692e-01\\n2.12047502e-01 2.67475277e-01 -1.65507913e-01 4.79277819e-02\\n-8.59688371e-02 -1.05508476e-01 2.92466730e-01 2.52837837e-01\\n-2.43043512e-01 -2.84316599e-01 -2.12770537e-01 1.23170137e-01\\n-5.74210823e-01 -2.54680693e-01 5.92390418e-01 1.73833504e-01\\n2.73764312e-01 7.55974799e-02 2.24692807e-01 -6.36000112e-02\\n-1.12850189e-01 -2.61527121e-01 3.19875062e-01 8.92695114e-02\\n1.15731575e-01 1.03525646e-01 -2.16320753e-02 -7.25295603e-01\\n-3.27209759e+00 -1.11953765e-01 1.50066778e-01 -3.59969288e-01\\n2.60609955e-01 -1.66682899e-01 2.60204852e-01 -3.09241191e-02\\n-3.12038511e-01 -2.02162750e-03 -2.92299986e-01 -4.30052206e-02\\n2.04030737e-01 3.22853595e-01 1.60819396e-01 2.29965597e-01\\n2.82271177e-01 -3.15553367e-01 -1.09316343e-02 4.90758866e-01\\n-1.21117197e-01 -5.89842916e-01 1.51041910e-01 1.05359126e-03\\n1.07691906e-01 3.04127365e-01 -2.27182627e-01 -1.27798691e-01\\n-3.33106369e-01 -1.59168601e-01 5.12171537e-02 -3.88463527e-01\\n-2.79219300e-01 1.52779073e-01 1.59717977e-01 -1.93177477e-01\\n4.75535206e-02 -3.68068784e-01 -4.44069803e-02 -4.07263398e-01\\n8.41399878e-02 -6.56183958e-01 1.09731378e-02 -5.49196126e-03\\n8.02021205e-01 -1.69993043e-01 4.20183726e-02 1.01977661e-02\\n1.73705950e-01 1.39366120e-01 1.21844284e-01 6.92329183e-02\\n-9.09658521e-02 -3.29167902e-01 -6.29113391e-02 -1.46915123e-01\\n6.48227155e-01 5.49666941e-01 -1.49214417e-01 -7.62293413e-02\\n9.93361771e-02 -2.69035906e-01 -4.49173868e-01 -2.40427703e-01\\n-2.68591613e-01 -2.68768042e-01 -6.07945263e-01 -4.18401539e-01\\n-2.39425659e-01 -1.21046744e-01 -2.51357079e-01 4.87106442e-01\\n-2.59714514e-01 -2.86263704e-01 -3.08411662e-02 -4.93256301e-01\\n2.96392053e-01 -1.07400380e-01 5.76469265e-02 -2.59572327e-01\\n-1.98630437e-01 -4.93678153e-01 7.52078295e-02 1.73591208e-02\\n-8.65768716e-02 -1.93008080e-01 -8.44383985e-02 -8.81933272e-02\\n-3.58855933e-01 -5.97592890e-01 3.56970996e-01 1.54431000e-01\\n4.20752168e-01 9.87725481e-02 3.29500854e-01 2.99395644e-03\\n4.27996010e-01 -1.14249796e-01 -5.82283512e-02 -4.23470199e-01\\n1.68414935e-02 9.54959318e-02 6.00186944e-01 -3.13914150e-01\\n-2.82981321e-02 2.43159290e-02 -2.70642787e-01 -1.07605867e-01\\n2.73641914e-01 -9.68947187e-02 1.29640445e-01 -1.43695295e-01\\n2.67815471e-01 -3.61983865e-01 -2.72105694e-01 5.84241189e-02\\n-1.14795491e-02 6.01922214e-01 -8.08509141e-02 -3.19103092e-01\\n-6.83792233e-02 3.77756953e-01 -1.30633220e-01 -7.82845169e-03\\n-1.91623122e-01 -8.88505131e-02 -1.71746343e-01 3.28968585e-01\\n4.02713707e-03 -2.05643654e-01 -2.07608745e-01 -1.50207385e-01\\n-6.16584010e-02 4.11203861e-01 8.44620019e-02 1.98279396e-02\\n6.85963482e-02 -4.37513918e-01 -1.02881067e-01 2.94618636e-01\\n1.43739805e-01 4.91804570e-01 3.27605568e-02 -2.03892916e-01\\n-1.44536898e-01 3.18509638e-01 -3.17675769e-01 2.08907351e-01\\n-3.14779729e-01 1.43567502e-01 -4.50716794e-01 -2.25893617e-01\\n-2.50616372e-01 -4.42676306e-01 1.63771242e-01 3.86209577e-01\\n1.75867990e-01 1.12641938e-01 -7.38131851e-02 -4.64854598e-01\\n1.87239066e-01 8.19955245e-02 1.32542700e-01 1.35177106e-01\\n-1.00389585e-01 5.13187528e-01 -1.66302919e-02 -1.45746425e-01\\n-7.90596753e-02 8.47329125e-02 -2.49137819e-01 -2.06960186e-01\\n2.15650439e-01 -5.14498472e-01 -1.01562209e-01 5.59331775e-01\\n3.36833298e-01 -2.60551423e-01 -2.66562879e-01 2.39882037e-01\\n1.52954273e-02 -3.40122819e-01 -3.17193776e-01 9.36554745e-02\\n2.36116081e-01 1.74736917e-01 3.93770725e-01 -3.95841867e-01\\n-3.53140011e-02 -6.94602802e-02 -1.21473633e-01 3.71100724e-01\\n-1.86036844e-02 1.47500172e-01 -2.55385607e-01 -1.71865851e-01\\n4.99527097e-01 8.17651227e-02 -2.09141858e-02 5.35607599e-02\\n2.15555593e-01 -2.07020655e-01 -4.41368908e-01 5.85991330e-02\\n-1.09863123e-02 -2.94837296e-01 4.42870613e-03 1.47256032e-01\\n-2.04709563e-02 8.18594769e-02 -6.33789480e-01 -2.86462963e-01\\n-2.85009295e-01 -8.55261907e-02 9.16512012e-02 -5.34546316e-01\\n-1.14497222e-01 -2.65090447e-02 -5.22750556e-01 2.18540177e-01\\n-1.62362635e-01 -1.44343823e-02 2.27588624e-01 6.51002303e-02\\n-2.38904789e-01 -5.66478930e-02 1.55980766e-01 3.59089673e-01\\n-3.25781494e-01 -2.18924433e-01 -4.40066680e-02 -1.05469048e+00\\n6.98417351e-02 -4.28832248e-02 -1.07498176e-01 2.22774476e-01\\n-1.60633221e-01 -6.48294091e-01 1.29321679e-01 -3.86240840e-01\\n-2.17909515e-01 -1.24346064e-02 -1.27707899e-01 -4.53269213e-01\\n1.18007258e-01 4.10855301e-02 -3.19887191e-01 3.24435651e-01\\n-2.94510871e-01 3.81644309e-01 -1.04961015e-01 1.96778163e-01\\n-4.59882617e-02 -2.11096138e-01 2.48012096e-01 -4.07824934e-01\\n-3.94221961e-01 -1.62064403e-01 -3.68471950e-01 -1.82444930e-01\\n-3.10555864e-02 -3.27453583e-01 -1.64478287e-01 2.13548705e-01\\n5.27119637e-01 1.31892070e-01 -2.52060033e-02 -2.18212396e-01\\n9.63703915e-02 -6.80909097e-01 6.71873614e-02 2.86784079e-02\\n-1.71318114e-01 -6.94778860e-02 3.03647697e-01 8.99076909e-02\\n1.36590913e-01 -3.75100285e-01 3.97345841e-01 -4.19959962e-01\\n-2.76993155e-01 -6.96432889e-02 9.00200233e-02 8.38690065e-03\\n3.54267150e-01 -4.22304958e-01 -6.00282066e-02 2.38856852e-01\\n4.43377048e-02 2.03104958e-01 3.57050508e-01 -1.06125183e-01\\n-1.25015080e-01 2.60633647e-01 -4.33169276e-01 3.24030742e-02\\n8.50722373e-01 1.63823798e-01 7.51696602e-02 2.55658448e-01\\n1.93099126e-01 2.63304532e-01 4.22858655e-01 -3.04937661e-02\\n-1.53546736e-01 2.60877639e-01 -4.24936861e-02 -6.44675136e-01\\n3.65843512e-02 -1.98049787e-02 -1.74176350e-01 -2.94283628e-01\\n6.34519577e-01 3.55780274e-01 -4.74421173e-01 -3.20709735e-01\\n-1.23765759e-01 -6.85335845e-02 1.31463200e-01 -4.83045280e-02\\n-1.81025378e-02 -3.17654386e-02 3.95299375e-01 -6.25251979e-02\\n2.31280953e-01 5.23020566e-01 -2.28155807e-01 -2.67665058e-01\\n-3.25174779e-02 1.23930693e-01 -6.35954877e-03 4.64194626e-01\\n-1.74738348e-01 2.77220070e-01 -5.03048487e-02 7.74902180e-02\\n-9.64803100e-02 7.93015286e-02 8.77303630e-02 1.47348702e-01\\n1.42649159e-01 1.72113106e-01 5.94327867e-01 5.24532080e-01\\n2.27448955e-01 3.83944601e-01 3.43459815e-01 2.46498659e-02\\n4.62378174e-01 4.60709125e-01 3.11339021e-01 1.37289464e-01\\n2.53534503e-02 4.65814508e-02 1.52491257e-01 -5.76507635e-02\\n4.30147469e-01 4.19286102e-01 1.33034512e-01 7.84353971e-01\\n7.58600309e-02 2.92487860e-01 7.04769373e-01 -6.32447302e-01\\n-4.42493916e-01 7.70544540e-03 6.05489135e-01 -4.83824819e-01\\n-9.39632803e-02 1.78962216e-01 -1.78773373e-01 1.81127816e-01\\n-5.38589239e-01 -3.89146745e-01 -2.61195153e-02 1.23999573e-01\\n-7.77707025e-02 -1.66761696e-01 -1.54550359e-01 1.13589913e-01\\n3.58011536e-02 1.79079175e-02 -5.03724158e-01 -8.94336700e-02\\n-8.75824690e-02 -8.19132626e-02 -1.24801084e-01 -1.60023376e-01\\n-7.78837875e-02 -2.92164654e-01 5.34609705e-02 5.16755208e-02\\n2.84003705e-01 -5.19138314e-02 6.38652174e-03 1.71714295e-02\\n2.28366554e-01 1.11782677e-01 5.60524583e-01 -9.85085890e-02\\n7.16386884e-02 -1.07680649e-01 -2.15105012e-01 1.67366683e-01\\n1.61797330e-01 3.88299860e-02 1.48115782e-02 3.01574111e-01\\n-1.89686805e-01 -2.88532019e-01 1.04793906e-01 3.36473018e-01\\n-4.96872932e-01 8.46881568e-02 -1.13916643e-01 1.55542821e-01\\n1.19470850e-01 1.64155975e-01 -2.55628884e-01 -2.87215523e-02\\n-2.07679495e-01 -4.05460387e-01 1.89282626e-01 -5.09027168e-02\\n-1.74691170e-01 3.91284674e-02 2.00842097e-01 1.08325310e-01\\n-1.83323845e-01 9.02697295e-02 -1.92071542e-01 2.42557213e-01\\n6.31390437e-02 2.44066209e-01 -8.26845914e-02 -3.41219455e-01\\n-2.56906986e-01 1.24575324e-01 -7.39657283e-02 2.08857790e-01\\n4.03286107e-02 3.50092351e-01 -5.89012774e-03 -1.63358040e-02\\n5.40917933e-01 1.10420570e-01 -2.30183333e-01 -3.66632402e-01\\n-2.57155389e-01 -2.49119163e-01 1.22341822e-04 -7.09325895e-02\\n1.26313761e-01 -4.68478382e-01 -1.05692431e-01 -3.30885977e-01\\n-1.90472573e-01 -3.49994332e-01 -1.05137248e-02 -1.15497708e-01]]',\n", + " 'Discover your own perfect formula for job satisfaction Our facility in Reinach is currently looking for a Supply Chain Data Analyst (m/f) Endress+Hauser is a global leader in measurement instrumentation, services and solutions for industrial process engineering. Despite employing over 14,000 people worldwide, we have remained a family company, and are proud of our close-knit working environment. There are always two sides to working with us - the professional and the personal. Together they add up to a more rewarding career, day in and day out. Role+Responsibilities Collect, analyze and interpret data from various systems (SAP, Data Warehouse, Transport Management System) for supply chain analytics Define new data collection approaches and improve existing ones Analyze patterns and trends in the data for supply chain improvements Visualize and report your derived findings Maintain supply chain master data and assure data quality Qualification+Profile Degree in Mathematics, Computer Science, Statistics or Economics Experience in data models and reporting packages Ability to analyze large datasets and create comprehensive reports An analytical mind with focus on problem-solving, attention to detail Strong verbal and written communication skills Strong knowledge of English Programming skills and experience with SQL, Oracle, Python, SAP BW, SAP analytics cloud, SAP HANA, Data lakes, Tableau Benefits + Perks You will find the security of working for an international family-owned company You will have a wide range of training opportunities You will get flexible working time You will come across a broad range of options for the reconciliation of family and working life Contact us + Apply If this position sounds appealing to you, we would like to hear from you. Please send your CV to Beatrice Jacob and state your salary expectations and earliest possible start date via our job portal at www.endress.com/career',\n", + " '[\"Professionalism\", \"Written Communication\", \"Problem Solving\"]',\n", + " '[\"Oracle SQL Developer\", \"Data Quality\", \"Tableau (Business Intelligence Software)\", \"Programming (Music)\", \"Computer Science\", \"Collections\", \"Analytics\", \"SAP HANA\", \"Statistics\", \"Supply Chain\", \"Survey Data Collection\", \"Visualization\", \"Computational Mathematics\", \"Industrial Processes\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Maintainability\", \"Python (Programming Language)\", \"Instrumentation\", \"Transport Management Systems\", \"Dataset\", \"SAP Project System\", \"Library For WWW In Perl\", \"Logical Data Models\", \"Management Systems\", \"Personalization\", \"Reconciliation\", \"Appeals\", \"Economics\", \"Data Lakes\", \"Derivatives\", \"Process Engineering\"]',\n", + " \"['English', 'Igbo']\"],\n", + " ['86',\n", + " 'full stack web application engineer',\n", + " 'Zürich',\n", + " 'Security Services',\n", + " 'www.open-systems.com',\n", + " '[[-3.17957133e-01 3.46389115e-01 3.89491558e-01 -3.21595445e-02\\n5.47099888e-01 -2.52057105e-01 1.19775601e-01 4.27356750e-01\\n-2.69577876e-02 -4.45008129e-01 -1.14103749e-01 -2.02499047e-01\\n-8.60764459e-02 6.90063164e-02 1.94518670e-01 3.55485588e-01\\n3.41190726e-01 1.12909868e-01 -1.41569227e-01 4.89856005e-01\\n4.27033752e-02 -1.30995095e-01 4.85031717e-02 7.52265155e-01\\n4.26227689e-01 -3.18181980e-03 -8.98265168e-02 2.08703224e-02\\n-2.44165137e-01 -2.73249954e-01 3.26298892e-01 -1.04821555e-01\\n-7.59880915e-02 -4.93569523e-01 7.06598237e-02 6.10551722e-02\\n-2.48633206e-01 -9.26238373e-02 -1.26214534e-01 2.20894963e-01\\n-5.46437979e-01 -2.03694150e-01 9.57597792e-02 -4.09916788e-02\\n-1.17594033e-01 -3.00222963e-01 1.58938259e-01 -7.88319390e-03\\n1.69749066e-01 8.69346112e-02 -5.74281931e-01 2.77996898e-01\\n-2.53192782e-01 -2.76665032e-01 4.04574513e-01 5.27458131e-01\\n-1.04940504e-01 -4.91359204e-01 -4.40244555e-01 -3.21139395e-01\\n4.49523218e-02 -3.41433920e-02 1.06954977e-01 -4.54942495e-01\\n2.10506827e-01 1.47364080e-01 9.09315422e-02 4.18028682e-01\\n-7.96747327e-01 -1.23051666e-01 -2.11931065e-01 4.83873719e-03\\n-3.40003461e-01 -1.12704732e-01 -2.32655272e-01 -7.71910250e-02\\n-1.51445717e-01 3.14400613e-01 -8.78645480e-02 8.16881210e-02\\n-2.42152691e-01 4.06859607e-01 -1.96380913e-01 3.39642167e-01\\n2.24399850e-01 1.33446842e-01 1.50234178e-01 3.55518043e-01\\n-3.76299322e-01 5.47876894e-01 2.43909862e-02 -1.90546989e-01\\n2.35892311e-01 2.05133080e-01 4.93840456e-01 -1.20741732e-01\\n2.72940546e-01 1.05226330e-01 -3.37884486e-01 3.16735029e-01\\n2.26761714e-01 -2.65390307e-01 2.74141170e-02 -1.15541853e-01\\n1.60161871e-02 1.23560103e-02 7.36827776e-02 1.89412162e-01\\n-2.96290547e-01 4.35608566e-01 2.17686459e-01 -2.42853463e-01\\n-1.70292541e-01 -4.95200157e-01 -6.64721355e-02 9.77687687e-02\\n1.03903778e-01 4.13565561e-02 1.20665722e-01 4.76577319e-02\\n2.13716090e-01 7.07028359e-02 1.28067777e-01 7.54609525e-01\\n-3.33775617e-02 -4.79815081e-02 -1.86167181e-01 2.25350335e-01\\n9.84847844e-02 -3.47499192e-01 1.01765737e-01 2.47770607e-01\\n1.35233268e-01 -1.61645174e-01 -2.70701975e-01 4.28736508e-01\\n-4.04644310e-02 -1.50215998e-01 -3.39992046e-01 3.33525509e-01\\n-2.42999941e-02 -3.92903835e-01 6.74369037e-01 1.46597683e-01\\n2.44624674e-01 4.66031842e-02 1.14331000e-01 -1.14503413e-01\\n-1.13514826e-01 2.12754190e-01 3.90690453e-02 1.81982353e-01\\n-3.00874203e-01 -2.41636962e-01 -2.58203894e-01 1.78066298e-01\\n-3.48155260e-01 2.64073014e-01 -4.20289263e-02 -1.06782876e-01\\n3.09588611e-01 5.90845523e-03 -3.68086725e-01 3.67620319e-01\\n-1.05782501e-01 1.15263246e-01 -5.34173846e-02 3.71192694e-01\\n-1.09338857e-01 3.00737083e-01 -2.18968000e-02 7.64149101e-03\\n5.54143012e-01 1.35591924e-01 1.07178427e-01 -9.01777484e-03\\n3.05944234e-01 1.64379794e-02 7.41080418e-02 2.71832701e-02\\n-7.85640955e-01 1.17021069e-01 -4.26308140e-02 -2.20000520e-01\\n9.34198424e-02 -2.02861633e-02 2.75185525e-01 -3.19841266e-01\\n-9.91580412e-02 -1.09273158e-01 -4.28054124e-01 -2.76276737e-01\\n-1.65073320e-01 -9.06704646e-03 3.69913608e-01 -4.40424442e-01\\n-1.96099818e-01 1.81671157e-01 -5.52416444e-01 -3.07945460e-02\\n2.31437281e-01 1.81865767e-01 1.43393546e-01 7.64940903e-02\\n-1.46329716e-01 -5.71325958e-01 -5.29930890e-02 -4.36371535e-01\\n-3.22329074e-01 1.02476284e-01 -3.54254812e-01 1.97251499e-01\\n7.99020454e-02 3.46084908e-02 -6.43852875e-02 7.43075758e-02\\n-1.01185657e-01 -4.43144664e-02 7.26245195e-02 1.54840918e-02\\n2.52201259e-01 4.69018854e-02 -3.78696471e-01 4.77530539e-01\\n-9.12952051e-02 5.21065533e-01 5.06401509e-02 -7.02111542e-01\\n6.05801105e-01 4.07491505e-01 -7.68442750e-02 -4.45064068e-01\\n5.72859585e-01 -2.93170631e-01 -6.84666485e-02 1.18993104e-01\\n-4.61221486e-01 -3.32666427e-01 2.01899692e-01 -2.62311399e-01\\n-2.69756168e-01 4.33777541e-01 4.47497107e-02 1.28752500e-01\\n3.09070170e-01 -2.55755067e-01 -1.89371314e-02 1.10282086e-01\\n2.56098453e-02 -1.69690162e-01 -4.68102574e-01 -3.34036872e-02\\n-1.05558939e-01 -5.02024770e-01 -2.28240520e-01 -3.52649599e-01\\n-2.10032925e-01 -2.88501769e-01 -2.20751137e-01 2.11570054e-01\\n3.58125597e-01 1.27706051e-01 -3.27368937e-02 1.53566003e-01\\n-1.69241130e-01 -7.30481029e-01 4.84158099e-02 1.21620789e-01\\n3.93260062e-01 1.35030329e-01 7.89637640e-02 -1.39907718e-01\\n4.03648354e-02 6.60474122e-01 -2.35167861e-01 -1.80679515e-01\\n1.87646702e-01 1.55477181e-01 -2.75418647e-02 -1.48216262e-01\\n1.15306802e-01 3.75697494e-01 -3.03794801e-01 3.99204195e-02\\n-6.01590239e-02 -9.78769436e-02 4.65614825e-01 -1.12096399e-01\\n-3.48604530e-01 -1.94803149e-01 -3.80763076e-02 1.13495745e-01\\n-5.19424558e-01 -1.92997321e-01 5.56229889e-01 1.84489548e-01\\n1.76611036e-01 1.79377154e-01 2.69371003e-01 -5.38812615e-02\\n-1.92319259e-01 -4.49233204e-01 1.52706459e-01 1.85660064e-01\\n3.87645885e-02 1.49512947e-01 -1.10662237e-01 -6.07183337e-01\\n-3.13286400e+00 -1.14501432e-01 1.86877415e-01 -2.77484596e-01\\n1.41552925e-01 3.03500071e-02 9.89959165e-02 -9.19869691e-02\\n-2.32641295e-01 -2.02264069e-04 -2.08785906e-01 -1.63579240e-01\\n2.25899354e-01 2.19554275e-01 6.82780892e-02 1.44386515e-01\\n2.50501931e-01 -3.54680568e-01 -7.91747048e-02 3.53798985e-01\\n-2.09628493e-01 -6.58907890e-01 1.65987730e-01 -1.23932049e-01\\n2.65876293e-01 3.29649925e-01 -3.39721620e-01 -1.53539389e-01\\n-1.12494364e-01 -1.77220985e-01 1.70867324e-01 -2.61521429e-01\\n-1.54491186e-01 2.21460700e-01 2.02100933e-01 -6.65310472e-02\\n1.61021203e-01 -3.54507089e-01 -2.28864610e-01 -4.85336155e-01\\n2.00379089e-01 -5.86918950e-01 -8.24745521e-02 -1.90911263e-01\\n6.94261730e-01 -1.94824278e-01 1.19847812e-01 6.07037507e-02\\n1.37646064e-01 2.34228656e-01 4.71794605e-02 9.07998309e-02\\n-1.04215816e-01 -3.03033203e-01 1.19026634e-03 -1.60643101e-01\\n5.68521082e-01 3.81689638e-01 -1.87572062e-01 -1.93162709e-01\\n1.54592827e-01 -3.23764056e-01 -3.34773690e-01 -1.68628871e-01\\n-4.69333120e-02 -2.53888488e-01 -7.32491434e-01 -3.33992243e-01\\n-1.54034451e-01 -1.60925210e-01 -1.10497199e-01 7.51931727e-01\\n-3.79072875e-01 -3.37486833e-01 -9.05068964e-03 -6.13309205e-01\\n2.02447772e-01 -2.41526768e-01 -1.35589652e-02 -2.76897520e-01\\n-2.04679877e-01 -4.70768780e-01 2.75579141e-03 7.46099651e-02\\n-7.73346275e-02 -2.33702704e-01 1.10456750e-01 -9.95911732e-02\\n-2.12389037e-01 -5.48683405e-01 4.08601940e-01 1.95013434e-01\\n2.26209521e-01 1.32945120e-01 2.82616109e-01 -9.96729136e-02\\n3.22639108e-01 -6.87282532e-02 -5.49646765e-02 -3.37978899e-01\\n1.62868485e-01 -1.87516194e-02 4.86517251e-01 -2.40476042e-01\\n-5.25436476e-02 2.78704077e-01 -2.48368323e-01 -1.22600950e-01\\n3.76673907e-01 -1.46528380e-02 -3.22154677e-03 -1.90073922e-01\\n3.27841878e-01 -4.24081594e-01 -1.61813736e-01 1.64856791e-01\\n9.25865248e-02 6.25278652e-01 1.81071293e-02 -4.38238144e-01\\n-1.64067969e-01 4.84205157e-01 8.74420181e-02 1.19034842e-01\\n-1.66575283e-01 1.06102586e-01 -1.69412151e-01 1.84004202e-01\\n1.41489848e-01 -1.84998080e-01 -2.53216773e-01 -7.63335004e-02\\n-1.14709005e-01 3.59787464e-01 2.77822167e-01 1.42149165e-01\\n-5.74641638e-02 -5.22582889e-01 -1.23194441e-01 1.99648932e-01\\n1.24138914e-01 4.82731998e-01 2.92330747e-03 -2.09343746e-01\\n-8.60012770e-02 4.03038114e-01 -1.07682832e-01 1.96464971e-01\\n-2.66828775e-01 1.09435424e-01 -5.08722842e-01 -2.24511251e-01\\n-3.19141299e-01 -3.28222126e-01 3.56741622e-02 3.48222464e-01\\n1.85456514e-01 -8.73688981e-03 2.66966093e-02 -3.44979525e-01\\n2.54003346e-01 1.94488287e-01 1.06250808e-01 1.61319092e-01\\n-5.43124117e-02 4.48600531e-01 3.42440605e-02 -2.58526772e-01\\n-1.44315124e-01 -2.37494670e-02 -2.26721421e-01 -1.31833866e-01\\n1.33627787e-01 -5.76189935e-01 -1.45383716e-01 3.22851747e-01\\n6.84645995e-02 -2.83004224e-01 -1.33953989e-01 2.10355148e-01\\n2.06986605e-03 -2.95229852e-01 -2.95636714e-01 2.90269870e-02\\n2.89142996e-01 2.67953780e-02 3.43758136e-01 -3.94800007e-01\\n-7.77711421e-02 3.00285202e-02 -5.75258024e-02 3.75425071e-01\\n-7.86335394e-02 3.03283446e-02 -2.51882166e-01 -1.72195703e-01\\n4.29914951e-01 -7.52227604e-02 -1.11945435e-01 7.81935230e-02\\n9.73584801e-02 -1.50054157e-01 -4.91888344e-01 1.19270407e-01\\n-1.38712302e-01 -7.83049166e-02 3.04556955e-02 6.15339205e-02\\n7.04397559e-02 1.09279469e-01 -5.24496675e-01 -2.09913269e-01\\n-2.54649192e-01 -3.27235572e-02 1.90025628e-01 -4.69346881e-01\\n-9.09959227e-02 -5.52273057e-02 -6.18522227e-01 2.38586769e-01\\n-3.16056460e-01 -6.06192090e-02 2.37740174e-01 8.90933052e-02\\n-3.04333270e-01 -1.04371428e-01 1.79925412e-02 2.74827629e-01\\n-3.92499000e-01 -3.11261356e-01 2.42314041e-02 -9.76937711e-01\\n2.94974208e-01 -1.00287952e-01 -1.79324657e-01 3.25834900e-02\\n-1.41378924e-01 -6.97744191e-01 2.50876881e-02 -2.79181689e-01\\n-1.15042403e-01 -3.51326726e-02 -2.04039142e-01 -3.63788098e-01\\n3.21779400e-02 -1.82736635e-01 -3.40582192e-01 3.87623101e-01\\n-3.33451599e-01 2.37268642e-01 -9.60848853e-02 7.21412599e-02\\n-1.30347461e-02 -3.10815781e-01 1.09990388e-01 -4.08573955e-01\\n-4.00553018e-01 -2.61758447e-01 -3.02531093e-01 -2.63614774e-01\\n-4.73727919e-02 -3.47075433e-01 -2.57021468e-02 1.62009239e-01\\n2.27930993e-01 -9.98363458e-03 -8.04812312e-02 -3.19451869e-01\\n8.27896819e-02 -4.75351155e-01 6.36880398e-02 -1.48393465e-02\\n-1.86869642e-03 -1.08936422e-01 8.40525925e-02 1.62282929e-01\\n2.52297789e-01 -3.55913818e-01 2.94258505e-01 -4.25280601e-01\\n-2.90224582e-01 -6.83074817e-02 -1.05769441e-01 -1.29082110e-02\\n3.00846905e-01 -4.91198272e-01 2.23449785e-02 3.73590678e-01\\n1.12625800e-01 8.67099017e-02 1.77705556e-01 -6.49443045e-02\\n-1.02254115e-01 2.86103904e-01 -3.14258784e-01 1.36403978e-01\\n7.75529206e-01 9.81408805e-02 6.92448067e-03 3.12625974e-01\\n1.22414492e-01 4.13226575e-01 4.88337934e-01 3.52014933e-04\\n-1.44282743e-01 1.94699198e-01 1.14453651e-01 -5.26063681e-01\\n-8.14016014e-02 6.43597320e-02 -2.09092230e-01 -3.36164057e-01\\n6.69802368e-01 4.14263695e-01 -4.57418740e-01 -2.41373301e-01\\n-1.38956279e-01 -1.81377560e-01 1.06757239e-01 -6.73089921e-02\\n-1.37804328e-02 -1.14203028e-01 5.01829922e-01 -5.63766435e-03\\n1.72867507e-01 5.98401845e-01 -9.26457644e-02 -4.24071789e-01\\n-1.02994695e-01 2.27244094e-01 1.31103089e-02 4.98054624e-01\\n-1.60583213e-01 2.41314918e-01 2.11817026e-02 1.59914345e-01\\n-1.04281180e-01 1.72808826e-01 5.19606620e-02 1.77664697e-01\\n7.32279867e-02 1.83608159e-01 5.06464124e-01 4.42793936e-01\\n3.00168693e-01 4.43760365e-01 2.35433146e-01 2.29846947e-02\\n5.31396151e-01 4.08648819e-01 4.97671515e-01 1.52437434e-01\\n6.08255565e-02 2.06853241e-01 2.17744365e-01 7.78767839e-02\\n3.70430946e-01 2.86156893e-01 8.90241712e-02 8.81004512e-01\\n3.42060626e-01 2.25520417e-01 7.98166037e-01 -6.52752697e-01\\n-3.75869304e-01 3.90703119e-02 4.31025714e-01 -4.74906176e-01\\n-5.58187664e-02 5.70952892e-02 -1.24275073e-01 3.14276159e-01\\n-5.57963073e-01 -2.32347578e-01 -5.93300611e-02 2.17000827e-01\\n1.49198808e-02 -2.02581167e-01 -2.23299891e-01 3.47343013e-02\\n-1.26407027e-01 -1.38148353e-01 -4.44794595e-01 -1.67534888e-01\\n-2.28633046e-01 -6.33168966e-02 -8.13389570e-02 -2.03161627e-01\\n5.84210306e-02 -3.88770878e-01 -4.07264195e-02 -9.29877236e-02\\n2.98769116e-01 -4.53008562e-02 -6.50997739e-03 -9.11024120e-03\\n3.44113141e-01 2.25517541e-01 6.37861669e-01 1.69867147e-02\\n7.08297417e-02 -2.75487095e-01 -2.02902600e-01 1.60759270e-01\\n5.29393815e-02 1.78294584e-01 6.96251616e-02 2.16959298e-01\\n-3.35007817e-01 -1.98974237e-01 1.43792942e-01 3.77561033e-01\\n-4.76269126e-01 -2.31554881e-02 -9.83069241e-02 2.37876683e-01\\n3.16139683e-02 1.14257373e-01 -1.43238261e-01 -2.60084327e-02\\n-1.63131550e-01 -5.09828031e-01 3.25618684e-01 -4.60752398e-02\\n-9.06016901e-02 6.81380779e-02 3.07196707e-01 2.04111695e-01\\n-2.25322306e-01 5.73124625e-02 7.86416158e-02 7.46644512e-02\\n1.10234201e-01 3.60729367e-01 -8.97766650e-02 -3.19468617e-01\\n-2.96407491e-01 1.87342674e-01 -1.46991193e-01 -4.61427383e-02\\n-3.37555222e-02 3.37481409e-01 -5.64520098e-02 9.76285711e-02\\n3.58092904e-01 -4.46299836e-02 -2.66143739e-01 -2.66801000e-01\\n-1.53056338e-01 -2.55317211e-01 -4.51381430e-02 -3.47080268e-02\\n1.95612729e-01 -4.55677122e-01 -1.10574611e-01 -9.88458768e-02\\n-2.49608960e-02 -2.35832348e-01 -2.35158112e-02 -1.15717314e-01]]',\n", + " 'Join our team of web application developers and face the challenge of making IT security visible, understandable, and beautiful. As a Web Application Engineer, you will extend and improve the Mission Control Portal and thus help our customers to better manage and understand their global network security setups. Together with service engineers, UI designers, and product owners you discuss, shape, specify, and implement solutions that emphasise the value of strong IT security services, ease the operation of thousands of devices deployed across the planet, and provide intelligent insights into security-relevant data and processes. As part of the Mission Control team, you share operational duties with your colleagues. We expect you to bring the following skills to the table: ETH, university, or FH degree in Computer Science Experience in web application development on the client side (JavaScript, CSS3, HTML5, React) and the server side (Java, Spring) Familiarity with SQL and relational databases Basic knowledge of build and deployment environments (Atlassian Bamboo, Maven, Tomcat) Fluent in English and preferably German Furthermore, we expect basic knowledge and a high motivation to participate a coached training program in these areas: Knowledge of Linux operating systems Understanding networking in general and the major internet protocols Knowledge of network security concepts and practices You will join one of our small development teams that works with agile methods. The team will rely on you to focus on its goals and efforts as a team player while being able to work independently. At Open Systems we are passionate about what we do. We work in an environment in which innovative solutions, rapid development times, creativity and open communication are practiced and continuously fostered. The pursuit of technical advancement is at the center of our attention. You will be based at our office in Zurich (CH) and will get the opportunity to work out of our office in Redwood City (US) for a few months. We look forward to receiving your complete online application (letter of motivation, CV, diplomas/reference letters/transcript of records. Compress your application into two attachments). For further questions and inquiries about applications, please feel free to contact Helena Grimm at +41 58 100 10 10.',\n", + " '[\"Management\", \"Communications\", \"Operations\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Agility\", \"Computer Science\", \"Compression\", \"Internet Protocols\", \"Atlassian Bamboo\", \"European Training Programs\", \"Rapid Application Development\", \"Linux\", \"HTML5\", \"Server-Side\", \"React.js\", \"Operating Systems\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Network Security\", \"Small Business Development\", \"Receivables\", \"Relational Databases\", \"Centering\", \"Network Security Services\", \"Java (Programming Language)\", \"Inquiry\", \"SQL (Programming Language)\", \"Web Application Development\", \"Apache Tomcat\", \"Controllability\", \"Open Systems SnapVault\"]',\n", + " \"['English', 'Polish', 'Nepali']\"],\n", + " ['95',\n", + " 'software engineer python',\n", + " 'Zürich',\n", + " 'Investment Banking & Asset Management',\n", + " '',\n", + " '[[-1.66524321e-01 2.36480415e-01 4.88435745e-01 5.09883910e-02\\n4.25920516e-01 -6.75612763e-02 -4.10967097e-02 4.44127142e-01\\n4.95000556e-02 -4.54217851e-01 2.97759436e-02 -1.67527705e-01\\n-1.87981855e-02 -1.10482806e-02 -2.85293870e-02 3.19970071e-01\\n3.13170373e-01 7.39108771e-02 -1.67363048e-01 3.72895718e-01\\n1.52327478e-01 5.72269037e-03 1.53119594e-01 7.13517368e-01\\n4.55829859e-01 -5.61857522e-02 -3.51604596e-02 7.21043795e-02\\n-7.37817362e-02 -2.15559617e-01 5.10402381e-01 -2.40190253e-02\\n-1.25872523e-01 -3.50732684e-01 6.93624541e-02 -8.81827697e-02\\n-1.86496809e-01 -5.46120293e-02 -8.39772262e-03 3.77979875e-02\\n-4.07773614e-01 -4.05121371e-02 -5.20944819e-02 2.57673915e-02\\n-2.96334445e-01 -3.38255286e-01 2.45367046e-02 -2.11097468e-02\\n1.26130924e-01 4.80977856e-02 -3.70255768e-01 2.85416245e-01\\n-1.42219201e-01 -1.06501222e-01 2.12706506e-01 5.53136230e-01\\n-5.66586889e-02 -2.93749690e-01 -6.57931268e-01 -3.78655732e-01\\n1.76998347e-01 -9.53267962e-02 7.73403645e-02 -1.87133044e-01\\n2.87533313e-01 -2.21116357e-02 1.95820071e-02 1.95578665e-01\\n-6.52497172e-01 5.28518856e-03 -2.35582560e-01 -1.87617868e-01\\n-3.30770016e-01 -2.26804137e-01 -2.70517975e-01 -1.10039450e-01\\n-9.24303681e-02 3.00017357e-01 1.72820732e-01 1.04541808e-01\\n-1.58879310e-01 1.57025963e-01 -1.68214768e-01 3.21748734e-01\\n2.06259310e-01 1.76667511e-01 2.51468420e-01 2.90166616e-01\\n-3.14084411e-01 4.79007661e-01 1.19219922e-01 -3.93711090e-01\\n2.92196870e-01 5.67649901e-02 4.01883811e-01 -1.28766581e-01\\n2.02912688e-01 7.65633136e-02 -3.17119420e-01 3.06331873e-01\\n1.57889545e-01 -4.26098347e-01 4.27730009e-03 -1.50043041e-01\\n5.08419015e-02 -1.43463816e-03 1.82068467e-01 9.93697792e-02\\n-3.16408575e-01 4.18032348e-01 7.23801479e-02 -2.32697845e-01\\n-1.50211692e-01 -3.41120899e-01 -7.42211416e-02 -5.85581437e-02\\n2.23242976e-02 1.84804708e-01 1.85397461e-01 2.29694277e-01\\n1.38999358e-01 -2.78477627e-03 9.20521095e-02 6.62667274e-01\\n-3.15797403e-02 1.99884977e-02 -3.02146435e-01 2.61989117e-01\\n7.74926990e-02 -4.56153750e-01 3.03276300e-01 1.72436088e-01\\n-9.00331661e-02 -1.17050514e-01 -1.50599509e-01 2.58681059e-01\\n9.10268426e-02 -1.27656639e-01 -1.60832390e-01 1.32838607e-01\\n-2.06696242e-03 -3.69673431e-01 6.19563580e-01 1.72626019e-01\\n1.38548419e-01 -1.00680679e-01 -5.84435686e-02 -1.85810685e-01\\n-3.61086428e-02 1.30312085e-01 1.28693487e-02 1.35236666e-01\\n-1.77529201e-01 -1.80174172e-01 -1.91014796e-01 1.28278166e-01\\n-3.53432804e-01 4.10672799e-02 -1.45788431e-01 -1.19998947e-01\\n2.40744635e-01 -1.90002084e-01 -2.34248623e-01 2.76450932e-01\\n-1.78823136e-02 -5.05503640e-02 6.39600828e-02 3.36982787e-01\\n-1.76703572e-01 2.28857175e-01 -1.30377024e-01 -9.42343771e-02\\n6.62523150e-01 1.32100716e-01 1.90637380e-01 2.09693843e-03\\n1.88691616e-01 -1.51264686e-02 1.26116410e-01 1.35834575e-01\\n-6.93646431e-01 3.20394754e-01 -9.92077142e-02 -1.97006986e-01\\n5.59916720e-04 -1.83330357e-01 2.01296091e-01 -2.56752551e-01\\n4.89158221e-02 1.29177691e-02 -2.81314701e-01 -1.45572960e-01\\n-1.17893264e-01 5.49475849e-03 3.55781168e-01 -4.78741884e-01\\n-8.80204886e-02 1.87150061e-01 -4.25298929e-01 -7.39632174e-02\\n1.71834290e-01 1.11586578e-01 8.69168639e-02 1.87063202e-01\\n-1.21958286e-01 -3.84866804e-01 5.81893548e-02 -3.15982670e-01\\n-2.93863773e-01 9.22991335e-02 -3.06171238e-01 2.13916674e-01\\n1.89885944e-01 -9.57719535e-02 -1.25006005e-01 2.01981023e-01\\n-7.95995444e-02 -7.37470239e-02 1.47779971e-01 1.61737204e-02\\n2.47402832e-01 1.09708287e-01 -3.41233552e-01 3.77945274e-01\\n-1.28295317e-01 4.95419621e-01 7.88466185e-02 -7.96863675e-01\\n3.62104297e-01 2.86986470e-01 -5.21058403e-03 -3.46735507e-01\\n5.33676386e-01 -2.72672832e-01 3.19559984e-02 -2.95088440e-02\\n-3.69093329e-01 -2.91846007e-01 2.17782438e-01 -2.14898199e-01\\n-2.21480519e-01 3.79446030e-01 -1.13313772e-01 1.12736471e-01\\n5.66802919e-02 -2.41934285e-01 -5.09686954e-02 -5.68926334e-05\\n-1.35635540e-01 -2.15326235e-01 -5.57866335e-01 -1.84251875e-01\\n-8.53716861e-03 -3.55286658e-01 -9.05093998e-02 -4.52167869e-01\\n-1.91774771e-01 -3.73968393e-01 -1.40338123e-01 1.59719348e-01\\n2.09952563e-01 1.46329641e-01 -8.02908540e-02 3.58250551e-03\\n-2.35633641e-01 -4.25835401e-01 -4.95496541e-02 9.65694189e-02\\n3.90583515e-01 1.65351450e-01 1.26881629e-01 6.14367574e-02\\n1.09257571e-01 5.13871074e-01 -2.16265559e-01 -1.75646573e-01\\n1.35462299e-01 2.71413863e-01 1.00605458e-01 -8.92553627e-02\\n2.08151117e-02 4.09880877e-01 -1.76051959e-01 -1.14491805e-02\\n-8.82147700e-02 -7.78484419e-02 4.50092107e-01 8.81233066e-03\\n-3.08207870e-01 -1.53613046e-01 -2.30726432e-02 9.53463987e-02\\n-5.18439949e-01 -1.86328858e-01 6.55912519e-01 2.43758455e-01\\n1.95056334e-01 1.37259960e-01 6.19039088e-02 2.01890897e-02\\n-5.90553917e-02 -1.81395620e-01 3.16654652e-01 5.18563539e-02\\n1.84908658e-01 -9.37069952e-02 -1.39329890e-02 -4.95430648e-01\\n-3.96297097e+00 -2.01698452e-01 9.65561271e-02 -1.60854876e-01\\n2.01696008e-01 -1.07142441e-01 3.06199305e-02 -8.17290321e-02\\n-2.98057050e-01 7.43874758e-02 -1.39107421e-01 -1.77205458e-01\\n1.17584355e-01 1.85476437e-01 2.88762510e-01 2.81220675e-01\\n1.58846736e-01 -2.05097213e-01 -4.78320532e-02 2.77138710e-01\\n-2.62195289e-01 -4.20578301e-01 2.54301965e-01 2.61987746e-02\\n3.00091296e-01 3.92993778e-01 -2.28702173e-01 -2.18405992e-01\\n-3.32386076e-01 -1.15053356e-01 -1.64243095e-02 -2.41100878e-01\\n-1.97872445e-01 1.87287495e-01 2.39498436e-01 -1.63626373e-01\\n1.79896325e-01 -5.10852695e-01 -1.79848820e-01 -2.74103165e-01\\n-4.61832471e-02 -4.97804761e-01 2.63463445e-02 -1.05492719e-01\\n6.95494890e-01 -2.69977748e-01 1.38487309e-01 1.30820386e-02\\n1.41751647e-01 1.42479837e-01 1.09177291e-01 1.18867189e-01\\n-1.31268710e-01 -2.19973087e-01 -5.81679866e-03 -1.51850179e-01\\n4.95833129e-01 5.01726866e-01 -5.50014153e-02 -6.29506484e-02\\n-7.63391703e-02 -2.06968293e-01 -3.96796376e-01 -2.78061926e-01\\n5.43978363e-02 -1.73286274e-01 -4.42974448e-01 -3.68398070e-01\\n-1.38676062e-01 -1.22788310e-01 -1.15603566e-01 3.46086144e-01\\n-1.90185964e-01 -3.19064438e-01 -1.18321769e-01 -3.02026749e-01\\n1.49741739e-01 -5.85458837e-02 1.46711886e-01 -1.07005358e-01\\n-1.12792425e-01 -4.94814038e-01 -7.87488520e-02 -1.26430020e-02\\n-6.25668615e-02 -5.17611265e-01 7.18413740e-02 -1.26572937e-01\\n-3.51406336e-01 -3.42792064e-01 4.27952528e-01 1.58343211e-01\\n2.92053550e-01 7.35495538e-02 1.92187250e-01 9.29680467e-02\\n2.42085248e-01 -2.09956437e-01 -6.52197748e-02 -4.28102195e-01\\n1.13753691e-01 1.29677877e-02 3.56757641e-01 -1.39725700e-01\\n5.95265180e-02 -4.74153273e-02 -1.96044385e-01 1.08044177e-01\\n3.51226360e-01 -7.46629536e-02 1.26048654e-01 -9.89988893e-02\\n2.28379756e-01 -1.74221754e-01 -8.06893706e-02 -8.21441934e-02\\n-1.20985508e-02 4.78411973e-01 1.85648389e-02 -4.04103279e-01\\n-1.63658038e-01 4.16564524e-01 -3.50516737e-02 7.55141228e-02\\n-2.73788035e-01 9.54674631e-02 -1.58852607e-01 1.05109513e-01\\n5.19702956e-02 -1.16043687e-01 -2.46563852e-01 -1.48928374e-01\\n-8.38022213e-03 2.41752774e-01 2.39010498e-01 1.70416176e-01\\n-4.66609299e-02 -4.84040946e-01 -3.39100510e-02 1.03743151e-01\\n2.23296911e-01 3.54030848e-01 9.99640450e-02 -1.43432915e-01\\n-5.38823530e-02 2.99958050e-01 -1.42372385e-01 2.04950690e-01\\n-1.67644218e-01 4.60833423e-02 -4.80412751e-01 -3.05830777e-01\\n-1.91224143e-01 -3.04509580e-01 1.25635996e-01 1.78347692e-01\\n1.01358786e-01 -4.71056625e-02 3.66861969e-02 -3.68680596e-01\\n3.60507727e-01 -2.23484002e-02 1.68992192e-01 2.87386417e-01\\n8.05964023e-02 4.78129297e-01 -2.06412114e-02 -2.41654545e-01\\n-2.58198738e-01 6.82896674e-02 -7.50630498e-02 -9.59449485e-02\\n-1.13021538e-01 -4.63119566e-01 -9.00463760e-02 2.91628897e-01\\n8.54387432e-02 -1.79054305e-01 -1.80885807e-01 2.93220252e-01\\n-3.52848060e-02 -2.82161146e-01 -1.89196676e-01 9.93866473e-02\\n3.19101930e-01 4.50062975e-02 3.40891242e-01 -4.57236171e-01\\n-8.12024437e-03 3.75672989e-03 4.27433364e-02 3.87720585e-01\\n1.43703163e-01 3.08227204e-02 2.50835866e-02 -1.03445567e-01\\n4.27705050e-01 4.25322168e-03 -1.47609338e-01 -2.18114220e-02\\n-1.22298999e-02 -2.64833808e-01 -4.12210643e-01 4.53993864e-02\\n1.54387634e-02 -1.87523454e-01 2.00271189e-01 2.26405501e-01\\n1.36943072e-01 1.86846346e-01 -6.23575687e-01 -3.11281234e-01\\n-2.72688270e-01 -7.46220127e-02 -1.61298007e-01 -5.98822951e-01\\n-5.26227653e-02 -1.60619378e-01 -5.12833834e-01 2.23620832e-01\\n-1.99773207e-01 -2.26917550e-01 2.89636683e-02 -2.64805946e-02\\n-2.26892859e-01 -1.72381550e-02 9.05376524e-02 1.92729682e-01\\n-1.90054402e-01 -3.08356494e-01 7.98863545e-02 -9.16494668e-01\\n2.44754165e-01 1.26115948e-01 -1.62654698e-01 1.56000525e-01\\n-5.11898920e-02 -5.43724835e-01 1.10677451e-01 -3.30279768e-01\\n-9.59731117e-02 -1.11055508e-01 -2.14255750e-01 -3.05696964e-01\\n1.29173636e-01 9.90917236e-02 -2.72180349e-01 3.67248654e-01\\n-2.41569310e-01 3.36164087e-01 -1.18225470e-01 1.89681709e-01\\n-2.55045556e-02 -2.50614882e-01 4.90682162e-02 -4.63509172e-01\\n-4.42663938e-01 -4.78289686e-02 -2.93956161e-01 -1.82729542e-01\\n-9.15682167e-02 -3.26429129e-01 -1.58199131e-01 7.88173266e-03\\n3.55013162e-01 1.11321256e-01 -2.15878040e-01 -1.99778080e-01\\n-1.01027749e-02 -4.35269386e-01 7.28160366e-02 -1.24450058e-01\\n-1.72532007e-01 -1.55117095e-01 1.75995022e-01 6.04557730e-02\\n9.23057869e-02 -4.38449442e-01 2.12705374e-01 -4.12990004e-01\\n-1.77700371e-01 3.52775455e-02 1.51766941e-01 -4.27182987e-02\\n3.10191214e-01 -5.31695306e-01 -1.33148372e-01 3.60731542e-01\\n1.92156658e-01 1.22936994e-01 2.48510137e-01 -1.05112694e-01\\n-3.10276225e-02 3.32370639e-01 -3.26704979e-01 2.87546311e-02\\n6.60951138e-01 1.40558146e-02 1.14590161e-01 1.53540939e-01\\n1.36091426e-01 2.02475622e-01 3.73074532e-01 3.98870967e-02\\n-8.17203596e-02 2.78016865e-01 1.23049542e-01 -5.34187078e-01\\n8.56103152e-02 1.60398185e-02 -1.50920987e-01 -3.59249055e-01\\n5.27325094e-01 4.54573154e-01 -3.76812160e-01 -1.04736984e-01\\n-1.46930024e-01 -2.46222705e-01 7.52527863e-02 -8.53082389e-02\\n9.06618014e-02 -6.35242537e-02 3.80300224e-01 -5.05376495e-02\\n1.65290058e-01 5.25279045e-01 -2.02532679e-01 -1.49422392e-01\\n-7.49496296e-02 2.19272479e-01 1.31069452e-01 5.99074841e-01\\n-3.24672759e-01 3.49253654e-01 -2.16777883e-02 6.12939894e-02\\n-3.00563476e-03 1.96641952e-01 1.00822523e-01 1.38888687e-01\\n8.75716805e-02 2.34785248e-02 3.80474001e-01 3.27680051e-01\\n2.96373785e-01 3.49088460e-01 3.61197770e-01 1.22052357e-02\\n3.88095617e-01 5.43448329e-01 3.94161463e-01 7.96898007e-02\\n-1.15765408e-01 -2.32097395e-02 1.70684323e-01 5.45985699e-02\\n2.82389969e-01 4.28620130e-01 8.55596513e-02 7.31409192e-01\\n4.40824747e-01 3.43957067e-01 5.53978682e-01 -5.11166513e-01\\n-2.70876199e-01 9.49715823e-02 3.81921858e-01 -3.81199539e-01\\n-3.34283784e-02 2.62156010e-01 -2.39329025e-01 1.35472953e-01\\n-3.01012158e-01 -2.94908226e-01 -1.06197625e-01 1.01720273e-01\\n1.75570138e-02 -1.36717066e-01 -1.36007130e-01 2.07784176e-01\\n2.53596287e-02 -8.24529231e-02 -5.03892303e-01 -8.20760205e-02\\n-2.29820579e-01 -9.45581198e-02 -8.84789973e-02 -1.06933825e-01\\n-1.95553243e-01 -2.04667881e-01 -7.68022984e-02 -1.68210238e-01\\n1.08764410e-01 -2.25887850e-01 -1.02291167e-01 -1.50993258e-01\\n2.05251634e-01 1.72239333e-01 5.04531920e-01 5.80869466e-02\\n7.53936470e-02 -1.64148331e-01 -1.98206425e-01 2.27361530e-01\\n2.38725513e-01 7.71717280e-02 -3.20064127e-02 1.33442372e-01\\n-1.87769115e-01 -1.63739294e-01 1.48616225e-01 2.12877229e-01\\n-4.14592385e-01 1.82784513e-01 -4.59128544e-02 2.10533783e-01\\n4.82537746e-02 1.78980842e-01 -1.49310291e-01 7.29679316e-02\\n-9.19225067e-02 -3.82822752e-01 1.59175247e-01 4.10398394e-02\\n-5.37545420e-02 6.67795166e-02 2.44416818e-01 1.56278715e-01\\n-3.75526816e-01 -1.17589928e-01 -3.56263891e-02 7.25727156e-02\\n7.34297633e-02 2.33798921e-01 -1.78920031e-01 -2.84998477e-01\\n-1.60907775e-01 1.63124755e-01 -1.81693763e-01 9.81738716e-02\\n4.39910591e-02 3.35243493e-01 4.85722870e-02 1.18394889e-01\\n2.44057685e-01 2.95635611e-02 -2.14248627e-01 -1.78363383e-01\\n-3.35088402e-01 -1.35779217e-01 -6.89581875e-03 -1.33991510e-01\\n2.15163946e-01 -2.76667833e-01 -3.22432965e-02 -2.22511459e-02\\n-9.53167826e-02 -2.80633450e-01 1.29376590e-01 -8.89542606e-03]]',\n", + " \"Start: As soon as possible Location: Zürich, Switzerland, 100% YOUR ROLE: Develop the back-end for our core technology, which allows us to build investment strategies and forecast models on different asset classes and sell products to our customers. Develop tools for our internal teams (sales, support, operations, finance) to more efficiently run the business, and work closely with our mobile and UI-focused team members to integrate their front-ends with our backend services. Continuously improve and maintain systems to ensure we have high performance, up-time, and strong security in place. WHAT WE OFFER: AI leader: we offer a position at the top of the food chain when it comes to artificial intelligence, especially deep and machine learning in financial services. Modern way of working: we use the latest technologies and offer lots time flexibility to individual team members (it matters ‘what’ you do not ‘when’ in the day). Beautiful office in Zürich, Switzerland: a large open space with a great view on river Limmat to work, interact and socialize with other team members - very close to the train station. International start-up atmosphere: the company languages German and English – our team and Investors are very diversified and work internationally from Switzerland to Germany, from Singapore to Boston. Work with direct impact: Exciting backend challenges to solve that will have very direct impact on our product. Very little red tape. If you like to get things done using the latest in tech rather than talking about it, you'll feel right at home. You work directly with the CTO and other decision makers in the team (very little hierarchy). Great place to work: we are a business with strong values & beliefs - a great, warm-hearted team is waiting for you. Great team: we are very selective – and only hire the best chess players, cyclists or e-sports champions! ;-) WHO YOU ARE: Python is your language: Backend software developer with broad back-end programming skills in Python (Python is really a MUST!) You will also shape the whole architecture of services and data stores that you will eventually own and you have deep and machine learning skills. The ideal degree: Computer Science or related field Innovation: You thrive in a collaborative environment for Innovation involving different stakeholders and subject matter experts. Some financial knowledge would be great. Curiosity is key: We like to learn new, fail fast and explore new territories - so do you? The answer is ‘yes’. Entrepreneurial and Team player: you want to tackle something and write your own story and you have an entrepreneurial team driven mindset - then you'll find a team of like-minded people. HOW YOU APPLY: Interested? Then please send your CV to careers@privatealpha.ch including a short motivation letter /E-mail why you are the person who should take on this role. THE PRIVATE ALPHA TECHNOLOGY TEAM & YOUR IMPACT Private Alpha is a start-up based in Meggen and Zurich, Switzerland. The company revolutionizes how asset management decisions are made. The company is a leader in AI for investments in Switzerland and Germany. As a team member of the technology team, you will work very directly with our CTO and our other teams (product, growth, sales, support, etc.) to improve the experience for our end-customers as well as for our internal users of our technology. WHO WE ARE, THE PRIVATE ALPHA COMPANY: Private Alpha is building the next generation of decision making in asset management based on our AI platform “Caesar”. The technology is a multi-staged combination of financial market indicators for ideal asset allocation while formulating new investment insights through the use of AI. Private Alpha is a founder-owned company with strong investors that has recently won the prestigious award of most innovative FinTech at the Finanzsymposium Alpbach. The company was founded in 2017 and has two mutual funds run under its name. Friendship, respect and ‘radical transparency’ are key elements of the company culture. More insights on our company and our team can be found on LinkedIn and of course on our website.\",\n", + " '[\"Decisiveness\", \"Collaboration\", \"Operations\", \"Integration\", \"Decision Making\", \"Innovation\", \"Socialization\", \"Curiosity\", \"Sales\"]',\n", + " '[\"Python Server Pages\", \"Tooling\", \"Operations Support Systems\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Machine Learning\", \"High Performance Computing\", \"Staging\", \"Mutual Fund\", \"Financial Services\", \"Open Space Technology\", \"Customer Development\", \"Python (Programming Language)\", \"Maintainability\", \"E (Programming Language)\", \"Investment Strategy\", \"Financial Market\", \"Investments\", \"Mobility\", \"Asset Classes\", \"Personalization\", \"Artificial Intelligence\", \"Transparency (Human-Computer Interaction)\", \"Asset Management\", \"Front End (Software Engineering)\", \"Indicators (Measuring Device)\", \"Back End (Software Engineering)\", \"Software Development\", \"Forecasting\", \"Operational Data Store\", \"Asset Allocation\", \"Custom Backend\", \"Food Chain\", \"Integrated Product Team\"]',\n", + " \"['English']\"],\n", + " ['57',\n", + " 'backend software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.68327808e-01 2.88997918e-01 6.06209219e-01 -1.18065082e-01\\n4.61353898e-01 -2.79566705e-01 7.50198439e-02 4.28451777e-01\\n-1.58580139e-01 -2.87194103e-01 -2.10660934e-01 -2.72109240e-01\\n-1.37108624e-01 9.40895546e-03 1.53204575e-01 2.60017008e-01\\n2.57712096e-01 1.21481925e-01 -1.62172824e-01 4.43335295e-01\\n2.33582944e-01 -1.39597714e-01 1.08493857e-01 6.06525242e-01\\n3.80916178e-01 9.60881822e-03 -1.27347082e-01 9.18973088e-02\\n-2.61318266e-01 -2.73511469e-01 3.99808526e-01 3.77342515e-02\\n-8.78955573e-02 -2.30336711e-01 1.55127779e-01 9.41094980e-02\\n-2.15945572e-01 -2.35115481e-03 4.33648527e-02 1.71556205e-01\\n-3.73487383e-01 -1.12922370e-01 1.63579941e-01 -1.36431656e-03\\n-2.41777763e-01 -3.52599442e-01 4.46980149e-02 6.44589067e-02\\n6.15909882e-02 7.36622438e-02 -4.74797219e-01 3.69488060e-01\\n-1.98842198e-01 -3.80044729e-01 3.65636736e-01 5.87664545e-01\\n-1.07382186e-01 -5.70897222e-01 -3.34469855e-01 -2.81527370e-01\\n8.64449367e-02 -1.29588485e-01 7.31378719e-02 -2.28471428e-01\\n4.44571137e-01 -8.72097537e-03 -3.77082662e-03 4.10772771e-01\\n-8.64040077e-01 5.08061936e-03 -1.70115456e-01 -3.21726575e-02\\n-3.73025209e-01 -2.57173367e-02 -3.23153585e-01 -1.73933387e-01\\n-8.27575624e-02 4.31260318e-01 7.22060800e-02 8.91933069e-02\\n-7.62688220e-02 2.19301626e-01 -2.03739002e-01 2.56991655e-01\\n3.01228940e-01 3.37567061e-01 1.31325901e-01 2.85300761e-01\\n-4.42526639e-01 3.93509746e-01 1.14144124e-01 -2.46793181e-01\\n1.89402610e-01 1.53402239e-01 4.70462143e-01 5.87971769e-02\\n1.15000069e-01 1.37756944e-01 -2.70295143e-01 2.40788281e-01\\n2.77749300e-01 -2.87898332e-01 -6.59379736e-03 9.61506274e-03\\n-6.64371327e-02 1.09183431e-01 2.55597420e-02 3.92554194e-01\\n-2.82758534e-01 5.14594257e-01 9.37813222e-02 -2.04922810e-01\\n-4.42726649e-02 -5.63912630e-01 -2.10898891e-01 1.54786989e-01\\n3.14938277e-02 2.44438633e-01 1.77832797e-01 2.39199728e-01\\n2.63069302e-01 1.63956717e-01 2.47681737e-01 9.33508754e-01\\n-2.59676725e-02 1.13026448e-01 -3.09538215e-01 4.57743257e-01\\n1.80468932e-01 -2.24663854e-01 1.55328155e-01 4.17303503e-01\\n2.02290535e-01 -1.13016382e-01 -2.17786938e-01 3.57313931e-01\\n-4.30432335e-02 -2.50421107e-01 -3.48022252e-01 9.58674997e-02\\n-1.98610812e-01 -5.66681921e-01 5.73545754e-01 -1.67847630e-02\\n1.51973382e-01 5.46261072e-02 1.22360587e-02 -1.52171645e-02\\n-1.41737074e-01 2.72479087e-01 5.89947775e-02 2.25164756e-01\\n-3.75803977e-01 -2.02913851e-01 -3.90461504e-01 2.86622733e-01\\n-2.25339010e-01 5.58157451e-02 -1.22700140e-01 -1.19432516e-01\\n3.21349621e-01 1.14045676e-03 -2.90985346e-01 2.45440900e-01\\n-1.39948502e-01 -1.41925737e-01 -5.24953268e-02 2.75240391e-01\\n-1.39101326e-01 1.77781016e-01 -8.11469629e-02 -2.61955261e-01\\n4.12588924e-01 1.84827298e-01 1.17103763e-01 -8.33474472e-02\\n4.63825166e-01 -5.35347536e-02 1.57370105e-01 3.18978094e-02\\n-7.63570845e-01 3.44249696e-01 -1.84003841e-02 -1.01598725e-01\\n5.98603301e-02 -2.29223520e-02 3.53295416e-01 -3.07866007e-01\\n3.61402892e-02 -1.64382547e-01 -3.99395585e-01 -1.81458369e-01\\n-2.37607017e-01 1.52610959e-02 4.95529443e-01 -4.28265035e-01\\n-1.83287010e-01 1.56793758e-01 -5.71393073e-01 1.24039918e-01\\n3.01369280e-01 1.85224459e-01 5.15987203e-02 9.95253175e-02\\n-1.59553856e-01 -5.89149356e-01 5.02219498e-02 -3.32661778e-01\\n-3.06385934e-01 1.68171793e-01 -2.94974059e-01 2.44996890e-01\\n8.30432549e-02 1.69385318e-03 -6.00557178e-02 7.01684654e-02\\n-9.94642675e-02 -1.44814000e-01 1.84070185e-01 4.44244742e-02\\n4.06670272e-01 -6.10865839e-03 -3.67002904e-01 5.32256365e-01\\n-2.31230214e-01 4.70968097e-01 1.21119067e-01 -9.13913667e-01\\n5.22341192e-01 3.22603881e-01 6.75142705e-02 -3.21495056e-01\\n7.45306611e-01 -2.73526639e-01 -4.15825248e-02 1.84918866e-01\\n-4.03890759e-01 -3.21176022e-01 1.39324412e-01 -1.42630279e-01\\n-2.66070247e-01 4.50370997e-01 1.34058818e-01 7.37231737e-03\\n3.57046634e-01 -2.25002587e-01 -8.83537531e-02 1.00415245e-01\\n-1.20597236e-01 -2.72231787e-01 -3.11556011e-01 9.88311768e-02\\n-4.80967686e-02 -5.74735761e-01 -1.63506225e-01 -4.42186207e-01\\n-2.02995673e-01 -3.68985444e-01 -2.82697052e-01 3.83587301e-01\\n9.35961008e-02 1.77720845e-01 -4.48016785e-02 -1.14523955e-01\\n-3.02070618e-01 -5.63760519e-01 -8.21181983e-02 7.09232837e-02\\n4.04101133e-01 1.59430340e-01 7.87272602e-02 -7.06966296e-02\\n-1.43905999e-02 5.67039073e-01 -1.78538799e-01 -2.01156989e-01\\n1.03219962e-02 1.79591447e-01 -1.26545932e-02 -8.27154890e-02\\n9.46710780e-02 4.18526053e-01 -2.12220341e-01 6.54221773e-02\\n-2.90187031e-01 5.00434488e-02 3.17655087e-01 -7.31947124e-02\\n-2.53063530e-01 -3.62677634e-01 -5.17979823e-02 1.88844219e-01\\n-5.51630557e-01 -2.16484249e-01 6.19187295e-01 9.02175829e-02\\n1.91296101e-01 1.82551846e-01 1.95665792e-01 -1.11417122e-01\\n-1.23006687e-01 -2.01893151e-01 1.74750775e-01 4.14525010e-02\\n7.01304823e-02 1.25836655e-01 -1.24822013e-01 -5.76592326e-01\\n-3.46865940e+00 -1.86945155e-01 1.36885941e-01 -3.78501296e-01\\n1.64032862e-01 -1.73046589e-01 3.60679775e-02 -1.51348785e-01\\n-2.05243349e-01 1.06528111e-01 -1.19571552e-01 -1.39325619e-01\\n1.66370466e-01 3.48478138e-01 1.78151652e-01 2.67233759e-01\\n1.61532760e-01 -2.29102060e-01 3.73738818e-02 3.41159791e-01\\n-1.52989179e-01 -6.02138638e-01 2.24274322e-01 -9.44571570e-02\\n2.64645666e-01 3.46599728e-01 -3.03624690e-01 -1.73201144e-01\\n-1.94857746e-01 -2.08534718e-01 6.43190295e-02 -1.88253388e-01\\n-6.87035099e-02 3.11124027e-01 1.22598618e-01 -1.60351135e-02\\n2.13391259e-01 -3.00468564e-01 -2.59814115e-04 -3.16053361e-01\\n1.40052095e-01 -6.29313767e-01 -8.58654156e-02 -1.25998989e-01\\n7.40383089e-01 -3.88225108e-01 1.16962701e-01 9.65248793e-02\\n9.27407071e-02 1.85301989e-01 -4.89689261e-02 -1.73253447e-01\\n-2.87009358e-01 -2.15564802e-01 8.88479427e-02 -2.06358761e-01\\n4.62702364e-01 6.47468269e-01 -1.78069368e-01 1.50283789e-02\\n3.95312309e-02 -3.35549891e-01 -5.12294292e-01 -4.56082255e-01\\n-2.45431900e-01 -1.82093188e-01 -6.96725547e-01 -5.55258930e-01\\n-3.84508669e-02 -9.40430537e-02 -7.71226361e-02 4.48249161e-01\\n-2.73056537e-01 -4.11426961e-01 -1.22927666e-01 -3.86893153e-01\\n1.19078316e-01 -8.72609988e-02 -7.04295486e-02 -1.32839546e-01\\n-1.78682536e-01 -4.74731982e-01 -8.42205528e-03 1.34627707e-02\\n-1.39610991e-01 -2.09434614e-01 1.83133125e-01 -2.64224648e-01\\n-3.54165941e-01 -5.46211302e-01 4.95102257e-01 5.61935827e-04\\n2.76502430e-01 1.29186332e-01 2.44543716e-01 1.62630409e-01\\n3.38046610e-01 -2.92971611e-01 2.87834853e-02 -4.07739133e-01\\n1.81251779e-01 5.90993054e-02 5.09459615e-01 -2.53139466e-01\\n9.79114920e-02 1.10175148e-01 -2.73484439e-01 -2.37962514e-01\\n3.29564631e-01 1.94693524e-02 6.30313829e-02 -2.45685250e-01\\n3.71804148e-01 -3.51171732e-01 -3.04073930e-01 1.71011895e-01\\n-1.19597446e-02 5.79581499e-01 -4.97663729e-02 -3.91280711e-01\\n-2.91612834e-01 4.82215077e-01 -1.86549217e-01 -6.92917109e-02\\n-1.74866185e-01 1.10460587e-01 -1.65665343e-01 3.84258151e-01\\n-6.41236687e-03 -1.13032922e-01 -3.11131388e-01 -5.22827245e-02\\n1.27433147e-02 2.64315963e-01 2.83614844e-01 6.88557401e-02\\n-4.31510955e-02 -3.79523844e-01 3.36594996e-03 9.08987448e-02\\n1.71203405e-01 2.27931410e-01 5.99666983e-02 -9.11394134e-02\\n-4.13663313e-02 3.33448201e-01 -2.20026270e-01 2.27947310e-01\\n-2.59243399e-01 3.54401097e-02 -4.98915434e-01 -3.44104648e-01\\n-2.07727909e-01 -2.24626243e-01 4.05816548e-02 2.32940614e-01\\n1.22448355e-01 7.42861629e-02 3.66267450e-02 -4.76045430e-01\\n3.12157840e-01 4.10615727e-02 3.38361561e-01 2.77562976e-01\\n-2.31675673e-02 4.29138869e-01 -1.35364961e-02 -8.54480565e-02\\n-2.12282464e-01 1.38602806e-02 -2.18544066e-01 -1.98667884e-01\\n7.59970695e-02 -4.86538589e-01 1.58778206e-02 4.04897124e-01\\n1.43267632e-01 -4.25572604e-01 -2.06929415e-01 1.45361155e-01\\n4.13133129e-02 -4.66165125e-01 -2.38365948e-01 7.03494325e-02\\n3.98678511e-01 1.63738370e-01 3.83017719e-01 -5.28811395e-01\\n-2.16578059e-02 7.78789893e-02 -9.66671631e-02 4.85743940e-01\\n1.40074072e-02 -3.56043950e-02 -1.16098508e-01 -2.68980265e-01\\n3.52431923e-01 -1.31707594e-01 -6.25412241e-02 -1.14546679e-01\\n1.59151182e-01 -1.16093598e-01 -3.21345627e-01 -7.24060610e-02\\n-2.99962200e-02 -1.40279800e-01 6.26468807e-02 5.38310818e-02\\n5.68054579e-02 1.20631941e-01 -4.90609497e-01 -3.43117833e-01\\n-2.93188334e-01 -1.92923650e-01 2.04099901e-03 -3.68119776e-01\\n-2.82553546e-02 7.39053860e-02 -5.17039776e-01 2.16564387e-01\\n-2.38065749e-01 -4.24684398e-02 2.04412535e-01 -3.07449717e-02\\n-4.33966905e-01 -1.19449779e-01 2.01248869e-01 2.08823383e-01\\n-2.88899869e-01 -2.27872744e-01 -8.65897462e-02 -9.95375931e-01\\n2.07183704e-01 -1.70551091e-02 -3.88392136e-02 5.66780455e-02\\n-8.11761171e-02 -4.90155816e-01 1.40106559e-01 -4.79933023e-01\\n-6.53837398e-02 2.07819324e-02 -1.68692857e-01 -3.99694532e-01\\n6.23343932e-03 6.13960139e-02 -3.30146134e-01 4.16458368e-01\\n-4.62131917e-01 2.92982429e-01 -3.81348655e-02 1.25258356e-01\\n-1.40487090e-01 -2.42994070e-01 1.00351505e-01 -4.23113972e-01\\n-4.12195861e-01 -1.01482287e-01 -2.52108037e-01 -1.20835088e-01\\n-4.47262861e-02 -2.43404090e-01 -1.44951731e-01 1.01637445e-01\\n3.04557949e-01 1.53311655e-01 -1.53362332e-02 -1.99366018e-01\\n1.31030425e-01 -3.91856879e-01 -2.24049501e-02 -2.53464848e-01\\n-5.28498031e-02 -1.07909217e-01 1.62510201e-01 6.31745681e-02\\n3.95297110e-02 -3.84163022e-01 2.95165330e-01 -1.97696134e-01\\n-2.48864457e-01 -1.03712184e-02 1.16109617e-01 2.02564187e-02\\n3.36526334e-01 -4.84454989e-01 -2.47405120e-03 3.22664708e-01\\n1.54902548e-01 9.77049917e-02 3.07357788e-01 -7.42007345e-02\\n-8.61361474e-02 2.75153965e-01 -3.72012407e-01 -1.54213300e-02\\n7.90158689e-01 1.73470184e-01 1.09216809e-01 2.08470672e-01\\n1.63767278e-01 3.89509976e-01 4.56749767e-01 2.80808657e-02\\n-2.77963243e-02 3.47490191e-01 3.17817219e-02 -6.14006042e-01\\n8.73947982e-03 6.17221259e-02 -3.00297469e-01 -2.08753690e-01\\n6.90516591e-01 4.45410132e-01 -3.21076304e-01 -2.46532977e-01\\n-1.38305962e-01 -1.94235414e-01 1.31659240e-01 -2.51473427e-01\\n2.91094538e-02 -1.74326658e-01 5.06649673e-01 1.69214997e-02\\n1.75738797e-01 5.18010497e-01 -2.36081511e-01 -3.63523573e-01\\n2.32048184e-02 2.06012785e-01 1.24282300e-01 4.55320984e-01\\n-1.63492396e-01 1.74027234e-01 -4.31713909e-02 1.62019923e-01\\n-6.00065850e-02 1.16881132e-01 1.82405740e-01 1.37424842e-01\\n1.83379784e-01 3.96294929e-02 3.13010871e-01 4.66241986e-01\\n3.08455944e-01 5.12843788e-01 2.86065012e-01 7.70760104e-02\\n4.68179137e-01 5.29082417e-01 4.15864348e-01 2.69772589e-01\\n-6.60016611e-02 8.09479654e-02 1.01443172e-01 -6.90962449e-02\\n3.38700712e-01 3.13004196e-01 1.12593584e-01 9.15974140e-01\\n4.22800362e-01 2.97852516e-01 7.88711488e-01 -5.73331118e-01\\n-4.46357489e-01 -7.02971518e-02 4.54125136e-01 -3.99061769e-01\\n-1.76951751e-01 5.58977276e-02 -2.73145676e-01 2.29593486e-01\\n-5.08739471e-01 -1.33746654e-01 -5.06053306e-02 -6.24685138e-02\\n1.64495438e-01 -2.70922966e-02 -2.58715540e-01 -1.45168319e-01\\n-2.07898974e-01 -7.99618810e-02 -4.58698660e-01 -9.63251367e-02\\n-1.43159389e-01 -1.44687548e-01 -1.64897352e-01 -1.56510562e-01\\n-6.37447760e-02 -4.32255685e-01 -2.01115564e-01 7.86937550e-02\\n2.78765082e-01 -1.47380814e-01 -4.93810736e-02 -2.05579594e-01\\n1.73270151e-01 2.42304444e-01 4.62734818e-01 -6.47141635e-02\\n1.79656878e-01 -1.53713629e-01 -1.60682648e-01 6.90017641e-02\\n1.88315809e-01 1.37117192e-01 1.17216818e-03 4.32948977e-01\\n-3.93562376e-01 -1.30646646e-01 -1.97206885e-02 3.85259926e-01\\n-4.18970197e-01 -3.13655138e-02 8.89051184e-02 3.05212379e-01\\n-8.58512428e-03 2.53908709e-02 -2.54325032e-01 7.50071406e-02\\n-2.62162000e-01 -5.42051136e-01 3.26056808e-01 -1.67049617e-01\\n-8.64984691e-02 1.32053167e-01 1.66498497e-01 1.09068498e-01\\n-1.96051463e-01 -7.97802955e-02 3.83930504e-02 1.55215353e-01\\n2.21985161e-01 2.43247643e-01 -2.31960833e-01 -3.08756441e-01\\n-3.19108069e-01 2.00245649e-01 -2.94405490e-01 1.67595819e-01\\n-1.00553609e-01 3.42696279e-01 1.54900625e-01 1.70761749e-01\\n2.93891668e-01 -3.86449806e-02 -1.86069071e-01 -2.65285492e-01\\n-2.76596814e-01 -3.12223881e-01 1.38605013e-01 1.16383269e-01\\n1.67722225e-01 -3.55169415e-01 -3.41846459e-02 -7.86806867e-02\\n-1.88007742e-01 -3.66304874e-01 -9.92920548e-02 -1.36310518e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Backend Software Engineer. The role is a permanent position based in Zürich Canton. Your Role: Design & implement code with focus on robustness, scalability, reliability & performance. Participate in DevOps strategy, including automation efforts, monitoring improvements & transition to microservices. Work together in small & motivated interdisciplinary teams & bring Machine Learning, Natural Language Processing & Chatbots to the cloud. Ensure high quality of software products with Unit, Integration & End-to-End Tests. Your Skills & Experience: Very good experience with one or more general purpose programming languages including but not limited to: Python, JavaScript, Java 8+ (Spring, Hibernate/JPA), Ruby or Go. Sound knowledge of relational databases (SQL). Good knowledge of micro-service & REST API architectures. An interest or understanding of at least one of the following: DevOps, Software Architecture, Machine Learning & Natural Language Processing, Business Intelligence & Data Warehouse- Your Profile: University Degree in Computer Science or equivalent practical experience. Enthusiastic to work within an Agile environment & with cutting edge technologies. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Positivity\", \"Reliability\", \"Integration\"]',\n", + " '[\"Data Warehouse Systems\", \"Automation\", \"KM Programming Language\", \"Agility\", \"Natural Language Processing\", \"Computer Science\", \"Machine Learning\", \"Hibernate (Java)\", \"Ruby (Programming Language)\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"SARS Software Products\", \"Limiter\", \"Microservices\", \"Java 8\", \"Software Engineering\", \"Business Intelligence\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Scalability\", \"Receivables\", \"Chatbot\", \"Relational Databases\", \"Application Programming Interface (API)\", \"Custom Backend\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Greek', 'Uzbek']\"],\n", + " ['115',\n", + " 'software engineer iptiq emea l&h',\n", + " 'Zürich',\n", + " 'Insurance Agencies & Brokerages',\n", + " 'www.swissre.com',\n", + " '[[-0.16013445 0.22569531 0.6324923 0.0093284 0.5381161 -0.15063666\\n0.02804223 0.22192875 0.0804841 -0.5566739 -0.05377465 -0.22114146\\n-0.0635557 0.15569699 0.07420799 0.4024698 0.35071748 0.04559055\\n-0.17357785 0.36030537 -0.05258026 -0.13976526 0.17141452 0.8126224\\n0.39405257 -0.05420893 0.02658164 0.0669645 -0.18605134 -0.16940922\\n0.61019754 0.04421813 -0.26045662 -0.49868867 0.14402446 0.1133811\\n-0.3265548 -0.07206324 -0.19434878 0.1366287 -0.5640813 -0.20671928\\n-0.00484867 -0.11940594 -0.2566663 -0.4276902 -0.09391475 -0.12914988\\n0.21712852 0.09122949 -0.5167943 0.13234454 -0.43572438 -0.18555266\\n0.3473823 0.64281857 -0.01877485 -0.51746744 -0.58717346 -0.31216794\\n0.05296207 -0.14169925 0.04470246 -0.3586021 0.20672527 0.00513785\\n-0.06634439 0.32732528 -0.78683954 -0.10825328 -0.3622216 -0.12849367\\n-0.39812824 -0.13340186 -0.39907455 -0.10162166 -0.24909116 0.43582568\\n0.132881 0.05161656 -0.17402288 0.3722129 -0.34263194 0.48173034\\n0.28077042 0.26178318 0.2645293 0.407089 -0.39901644 0.60142374\\n0.28084603 -0.39879245 0.2519967 0.14626864 0.35663164 0.0199902\\n0.3638214 0.05232989 -0.21968359 0.35149288 0.37217534 -0.1669535\\n-0.05630765 -0.30762923 0.00977344 -0.01739726 0.05714284 0.09921033\\n-0.3436755 0.35215402 0.07392196 -0.2615611 -0.20392063 -0.38403392\\n-0.12568156 0.1104831 -0.03981927 0.130726 0.15037507 0.09968171\\n0.2939635 0.05092125 0.0480513 0.8383652 -0.06602217 -0.00972072\\n-0.3147748 0.41917026 0.09688261 -0.25703558 0.22176698 0.17896798\\n-0.21078846 -0.18107401 -0.29519355 0.42146087 0.00450771 -0.22707087\\n-0.27705064 0.23537846 0.02504312 -0.40808925 0.653803 0.00907745\\n0.17120449 -0.0867567 0.14699079 -0.06369095 -0.01400576 0.06371022\\n0.09028128 0.02925777 -0.15305611 -0.24966249 -0.2782688 0.15637854\\n-0.35522842 0.25771683 -0.20717666 -0.09271187 0.1781751 0.03062406\\n-0.2981939 0.18425421 -0.12160124 0.05446175 0.06502359 0.48255816\\n-0.21363288 0.08157681 0.05503492 -0.16622514 0.5736625 0.17721191\\n0.26463193 0.03931585 0.30628657 0.03197074 0.03622271 0.10854442\\n-0.77321416 0.3573644 -0.02368134 -0.09357305 0.06378625 -0.23908003\\n0.15491968 -0.2522272 -0.14073934 -0.09421994 -0.43916798 -0.2532613\\n-0.06951328 -0.21427104 0.3185327 -0.64268804 -0.06692332 0.20854887\\n-0.6760795 -0.16730264 0.15824308 0.30428874 0.03057984 0.09509704\\n-0.22778475 -0.49636096 0.06770271 -0.49541703 -0.30820942 0.12206858\\n-0.3004557 0.09221523 0.09849553 0.04281051 -0.10593906 0.01366595\\n-0.19553773 -0.03658759 0.09230068 0.01350832 0.24786624 0.12695242\\n-0.32523236 0.4795437 -0.21530142 0.48865807 0.06208376 -1.0141566\\n0.6021327 0.31790122 -0.06770398 -0.29719913 0.41510794 -0.3965518\\n-0.05750413 0.12294842 -0.3778852 -0.2775185 0.15396163 -0.28327\\n-0.24703422 0.34905678 -0.01761276 0.13682309 0.30852357 -0.21486424\\n-0.243568 -0.01676573 -0.14107007 -0.22038767 -0.7448733 -0.14908151\\n-0.12331474 -0.3887121 -0.12026404 -0.54146755 -0.1858001 -0.33976147\\n-0.25853744 0.09848069 0.16770257 0.0632818 -0.0815158 0.09296314\\n-0.09039203 -0.68518585 -0.06439137 0.1128249 0.22259352 0.18818715\\n0.11566081 0.06957845 0.07998963 0.66875434 -0.18705809 -0.1860685\\n0.24124813 0.28704306 0.00799356 -0.10846223 0.09541228 0.33870882\\n-0.3641743 -0.01941412 0.10707999 0.06003562 0.5392841 -0.07175145\\n-0.42407453 -0.01981154 -0.07469543 0.10141239 -0.64646316 -0.1165273\\n0.69823015 0.1545197 0.10505688 0.2405594 0.08883108 -0.03347543\\n-0.25282767 -0.19056109 0.4210915 0.12550277 0.14556864 0.18055618\\n0.05195802 -0.6311406 -3.081627 -0.1283467 0.11716287 -0.07776258\\n0.24527021 -0.20968121 0.13600793 -0.20074566 -0.31327087 0.01506016\\n-0.05316637 -0.17916 0.18526715 0.11917259 0.02193177 0.28071046\\n0.25740469 -0.1015265 0.05021273 0.26707208 -0.12241758 -0.81380516\\n0.1583159 0.00816396 0.17814791 0.05138441 -0.37223655 -0.13103151\\n-0.35106757 -0.10924783 0.07986216 -0.40065467 -0.08894084 0.13866593\\n0.22593346 -0.15557577 0.08142647 -0.42611378 -0.2775317 -0.53003216\\n0.20126998 -0.51322544 0.17369011 -0.09812284 0.61196804 -0.34422588\\n0.17633726 0.10492297 0.15324688 0.22975972 0.23025535 0.05007998\\n-0.24972597 -0.33091235 -0.1701434 -0.10267623 0.61977315 0.36141425\\n-0.10096284 0.10670355 0.05966059 -0.2331739 -0.5349126 -0.22021344\\n-0.04346237 -0.08657146 -0.6467296 -0.51393414 -0.24589428 -0.12970239\\n-0.08622187 0.6962105 -0.26699084 -0.20531073 -0.1463249 -0.5831491\\n0.4802823 -0.19844246 0.06776978 -0.29828995 -0.17425182 -0.5371694\\n0.13849473 0.04670556 0.02974892 -0.16454256 0.19963542 -0.02383537\\n-0.2708159 -0.5471761 0.3928965 0.2516849 0.3171095 0.12576966\\n0.24436723 -0.12214725 0.22957903 0.01402971 -0.21181291 -0.37168694\\n0.0811003 0.07606825 0.3674984 -0.05019451 -0.09716113 0.1549606\\n-0.2530123 -0.1372352 0.3550142 -0.14896688 0.10341606 -0.12537394\\n0.2873585 -0.23056783 -0.17599878 -0.0532253 0.06095642 0.6800467\\n0.06081703 -0.43761712 0.03754508 0.54194343 0.08056065 0.03575584\\n-0.23201953 0.04096289 -0.22721481 0.34851074 0.01121191 -0.22587857\\n-0.17866373 -0.19733056 -0.13480324 0.345998 0.21853667 0.12043013\\n0.02644263 -0.31951317 -0.14485547 0.24324805 0.19145188 0.54552203\\n0.24733266 -0.2751147 0.04460098 0.35668653 -0.21056437 0.23678058\\n-0.34104759 0.14459226 -0.5142007 -0.21468142 -0.2582834 -0.4393332\\n0.15578938 0.36023808 0.0912687 -0.15416221 0.0912361 -0.5028437\\n0.24647024 0.31486398 0.13142335 0.18981326 -0.01143549 0.82554036\\n-0.02524091 -0.2450667 -0.1700413 -0.01808267 -0.22026308 -0.19436356\\n0.0131777 -0.6058825 -0.08199731 0.39627188 0.10237826 -0.21943909\\n-0.23501423 0.32967526 -0.00364209 -0.12037507 -0.3365658 -0.04569908\\n0.43356857 0.04168545 0.27158183 -0.5670419 -0.01895915 -0.02852984\\n0.10061146 0.6469649 0.11711884 0.08525299 -0.16700143 -0.24209073\\n0.33992875 -0.11298209 -0.20078577 0.05365457 0.1889652 -0.05202819\\n-0.3996982 0.10855186 -0.1001902 -0.2913378 0.05911896 0.2432932\\n0.01971641 0.14239292 -0.6830838 -0.3055412 -0.25487846 0.16684622\\n-0.00665429 -0.59992397 -0.01541862 -0.14597997 -0.45903403 0.2310698\\n-0.04988953 -0.30240905 0.2864958 0.13950919 -0.3069916 -0.10557632\\n0.1367812 0.22697711 -0.30555403 -0.2837118 -0.11507441 -0.95683044\\n0.28167176 0.07258306 -0.25268692 0.27544135 -0.03730151 -0.7137953\\n0.10189239 -0.3025553 -0.20895764 0.0165339 -0.26404715 -0.36059865\\n0.06258297 -0.01737979 -0.15570256 0.43387073 -0.38439894 0.4781201\\n-0.2735098 0.0352231 0.02533549 -0.31223714 0.17834967 -0.43766588\\n-0.39671534 -0.2996428 -0.36842722 -0.34175605 -0.01124634 -0.44870952\\n-0.09127378 -0.06817497 0.56492937 0.13606751 -0.1400832 -0.19298841\\n0.0139726 -0.44665563 0.04117493 -0.14176124 -0.09738734 -0.19947115\\n0.21778451 0.13756384 0.28400087 -0.47293845 0.3367325 -0.33220202\\n-0.34243086 -0.23844784 0.09158944 0.2176717 0.36617756 -0.47864392\\n-0.01937048 0.28571653 0.17911117 -0.02081473 0.27840793 -0.17211673\\n-0.01493381 0.27509218 -0.30517408 0.24044263 0.6775731 0.08980174\\n0.2403217 0.27485448 0.26281542 0.29313517 0.42540127 -0.00516532\\n-0.03439115 0.28897023 0.12682307 -0.41001284 -0.069356 -0.0820428\\n-0.08815394 -0.38286322 0.7096766 0.40364543 -0.42673922 -0.11556775\\n-0.2956983 -0.3125646 0.13663779 -0.05662314 -0.10298808 0.05792071\\n0.38164866 -0.14711449 0.2562728 0.62503755 -0.36950028 -0.27002478\\n-0.16774127 0.30325148 -0.01144586 0.44140142 -0.2789078 0.40553102\\n0.09945858 0.13423295 -0.1858715 0.03612029 0.06808963 0.12924291\\n0.30012578 -0.06560097 0.4541993 0.4227412 0.32304925 0.38507473\\n0.34188455 0.08855829 0.5232739 0.6083925 0.44842845 0.11167987\\n0.10293694 0.07394881 0.15695551 0.03637059 0.2800699 0.5044471\\n0.01594558 0.8973056 0.32786474 0.29364562 0.6607263 -0.7320093\\n-0.3230073 -0.02565218 0.4902855 -0.41587403 0.1842958 0.23208293\\n-0.18154085 0.28503093 -0.37801886 -0.26306102 0.07145222 0.27663648\\n0.08543089 -0.19616826 -0.13253435 0.12097526 -0.2487054 -0.14608598\\n-0.36596775 -0.06776987 -0.29512188 -0.01710189 -0.04259263 -0.16281095\\n-0.04752951 -0.2427069 -0.0629724 -0.02904047 0.3292541 -0.11305804\\n-0.10725418 -0.09259688 0.2707351 0.03973428 0.5765066 0.05632727\\n0.07062726 -0.20020807 -0.19021964 0.15924925 0.16616696 0.10787661\\n0.02068041 0.32434893 -0.20018832 -0.23230952 0.27139422 0.28753123\\n-0.3172104 -0.02308438 -0.21542422 0.12829441 -0.02174878 0.22059989\\n-0.22172804 -0.11814848 -0.10398397 -0.50562686 0.39507186 -0.29421997\\n-0.15330392 -0.08005292 0.29164767 0.3118668 -0.28548992 0.05173009\\n-0.06569502 0.08745544 0.13454048 0.24019808 -0.24229437 -0.16081002\\n-0.23639451 0.13946804 -0.12286778 0.21028614 0.19049786 0.39571697\\n0.22189674 0.0309509 0.40308183 -0.05175998 -0.22418468 -0.18241107\\n-0.27678344 -0.04288498 -0.08565736 -0.15285426 0.18129054 -0.36927295\\n-0.1356483 -0.233388 -0.0831958 -0.41842946 -0.08858338 -0.03124702]]',\n", + " 'About iptiQ

Become a part of a growing and dynamic entrepreneurial team within the established Swiss Re Group. iptiQ is a start-up unit, established to provide innovative protection solutions directly to consumers. Our team delivers the coordination, infrastructure and competences that are key to driving forward this new business; working closely with our partners and clients. Our mission is to reduce the protection gap by simplifying life insurance and making it more accessible to people. Our motto is \"now life is easier for everyone\". For us this means making life insurance easier to sell, to buy and to trust. About the Role You will join a team of software engineers for the technology platform within the iptiQ EMEA Technology & Operations department. This is a rare opportunity to join a new business unit within an established company; combining the dynamic spirit of a startup with the backing of Swiss Re\\'s strong organisation. As a software engineer, you will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a distributed infrastructure by designing, implementing and testing simple, scalable, reliable and configurable solutions. Your responsibilities include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability Optimise applications and components to maximize configurability, speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications End-to-end responsibility on the applications implemented, including automated testing, monitoring, identifying issues or bottlenecks and delivering improvements of the platform We are looking forward to working with you as a software engineer. You will report directly to the Head of Digital Innovation of iptiQ EMEA. About the Team iptiQ is a unit within the newly built Swiss Re Life Capital; established to deliver white-label life insurance solutions to be sold through partners, directly to consumers. iptiQ is young, motivated and technology driven team, organised to provide creative solutions for life insurance distributors across Europe that engage with consumers in non-traditional ways. Through our strong operational infrastructure, creative thinking, insurance know-how and ecommerce competences we want to drive the digitalization of the life insurance business in Europe. About you Qualifications: Proven software development capabilities, i.e. 5+ years hands-on experience as a full-stack developer. Experienced in the following languages and frameworks: Mandatory: Enterprise Java Desirable: JavaScript, TypeScript, Docker, React Optional: Camunda, Kafka, RestAssured, WireMock, OpenShift, AWS Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality over time You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience in the design of data-models for relational and NoSQL data stores Experience in test-drive-development (TDD) and in the automated testing of APIs and user interfaces About you: Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Open to pair programming and XP techniques Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long-term vision the adoption of new technologies Master’s degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re',\n", + " '[\"Complex Problem Solving\", \"Leadership\", \"Coordinating\", \"Collaboration\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " '[\"Disabilities\", \"Camunda\", \"Performance Improvement\", \"OpenShift\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Accessioning\", \"Computer Science\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Automated Testing Framework\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"TypeScript\", \"Scale (Map)\", \"New Business Development\", \"Wiremock\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Test Automation\", \"Library\", \"Iterators\", \"Software Engineering\", \"Micro Channel Architecture\", \"React.js\", \"Message Passing\", \"Docker (Software)\", \"Concurrent Versions System (Software)\", \"Business Process\", \"Life Insurance Sales\", \"Equalization\", \"Digitization\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Scalability\", \"Information Technology Operations\", \"White Labelling\", \"Software Development\", \"Algorithms\", \"Java Enterprise Edition\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Pair Programming\", \"User Interface\", \"RESTful API\"]',\n", + " \"['English', 'Kazakh']\"],\n", + " ['68',\n", + " 'software engineer',\n", + " 'Chiasso',\n", + " 'Film Production & Distribution',\n", + " '',\n", + " '[[-8.49113762e-02 2.25809559e-01 4.35572803e-01 5.77770174e-04\\n4.61737454e-01 -1.15751214e-01 1.21711008e-01 2.72541702e-01\\n2.24733315e-02 -4.34859872e-01 -1.28242224e-01 -2.39422381e-01\\n-1.68810505e-02 3.28723341e-04 5.52006848e-02 3.64305705e-01\\n2.49415517e-01 -3.55191417e-02 -1.98698819e-01 4.39852417e-01\\n1.53827161e-01 -5.48881926e-02 6.41000420e-02 7.02970088e-01\\n4.44946140e-01 3.81440297e-03 -1.94675773e-02 -5.98828457e-02\\n-2.06658423e-01 -3.26164782e-01 3.83245587e-01 -3.83081101e-02\\n3.06007117e-02 -3.34446728e-01 5.10303415e-02 2.15339847e-02\\n-1.34959370e-01 -8.62915814e-03 5.92968008e-03 1.24371067e-01\\n-4.02711272e-01 -1.14270061e-01 2.60383897e-02 2.62732059e-02\\n-1.95927069e-01 -3.17969322e-01 1.19843021e-01 -1.03730440e-01\\n1.49330661e-01 -1.06803805e-01 -4.42810416e-01 3.63990217e-01\\n-1.89340264e-01 -2.42581278e-01 3.55360746e-01 6.60886228e-01\\n4.20951247e-02 -5.13620317e-01 -5.33503652e-01 -2.86360204e-01\\n1.74719393e-02 -3.64855938e-02 4.38041985e-04 -8.82946923e-02\\n2.44203359e-01 1.44442469e-02 5.32935262e-02 2.75131881e-01\\n-6.65630937e-01 -2.91808993e-02 -2.26767689e-01 1.15828663e-02\\n-3.21959376e-01 -1.46487892e-01 -3.14660132e-01 -9.55613106e-02\\n8.68744776e-03 5.01364231e-01 1.11725636e-01 -1.84947625e-02\\n-2.18013644e-01 1.40736446e-01 -2.99022257e-01 2.11689875e-01\\n2.16919363e-01 1.06588259e-01 3.16890299e-01 3.55043054e-01\\n-4.21436667e-01 4.22536284e-01 1.31850958e-01 -3.90472859e-01\\n2.82573819e-01 7.71765932e-02 5.00961959e-01 1.44945860e-01\\n9.74948704e-02 2.24601209e-01 -1.52598724e-01 2.50848740e-01\\n2.14889914e-01 -1.24983229e-01 -1.33175582e-01 -6.33741617e-02\\n1.06601194e-02 -9.46538374e-02 1.21469572e-02 1.29542530e-01\\n-3.45732450e-01 5.21431923e-01 1.60915524e-01 -2.43679747e-01\\n-5.60138375e-02 -4.30148542e-01 -1.11420490e-01 -1.71810776e-01\\n-3.14691514e-02 1.88544199e-01 1.05323270e-01 1.74692079e-01\\n9.70947146e-02 3.54553796e-02 1.00991711e-01 8.79508972e-01\\n-8.60355049e-02 9.39842612e-02 -2.68965542e-01 2.48763591e-01\\n9.68818814e-02 -3.28381419e-01 2.47085363e-01 1.55388147e-01\\n-1.08907104e-01 -8.28243792e-02 -2.35764116e-01 2.67831296e-01\\n-1.44738585e-01 -2.24609554e-01 -2.49967963e-01 1.76568449e-01\\n-1.12158895e-01 -3.43233347e-01 5.18296778e-01 7.64077604e-02\\n3.52042690e-02 -3.44098695e-02 -1.16150431e-01 -1.16001487e-01\\n-1.41178221e-01 1.77253783e-01 8.10268223e-02 1.36628643e-01\\n-3.01983804e-01 -2.97192603e-01 -2.35803023e-01 2.28848696e-01\\n-3.67536306e-01 4.50374894e-02 -2.38668382e-01 -1.39512360e-01\\n3.56663883e-01 9.07185376e-02 -4.07724857e-01 3.12865317e-01\\n5.74905202e-02 4.70938534e-02 -1.24317057e-01 2.79781878e-01\\n-1.42416835e-01 2.52542287e-01 -3.71186770e-02 -1.94411017e-02\\n6.94741905e-01 2.09489167e-01 1.29594117e-01 -3.92291769e-02\\n3.45826924e-01 -5.17290533e-02 1.67313755e-01 1.00875601e-01\\n-5.82794666e-01 2.33127907e-01 -1.14827201e-01 -8.66967663e-02\\n2.05891401e-01 -1.45047933e-01 1.63398176e-01 -3.17783028e-01\\n3.17019448e-02 -1.42058916e-02 -3.56613219e-01 -3.54514271e-01\\n-2.14240044e-01 -5.12485579e-03 3.91557634e-01 -3.10413003e-01\\n-3.65303904e-02 2.27096468e-01 -5.34308851e-01 -8.00540224e-02\\n3.34767401e-01 2.21091449e-01 2.02621326e-01 2.05701560e-01\\n-8.30954760e-02 -4.48688388e-01 8.27258080e-02 -4.26472545e-01\\n-2.97475040e-01 1.91812918e-01 -2.96631396e-01 2.42648154e-01\\n5.80460578e-02 -7.83631019e-03 -1.99615732e-01 9.86563191e-02\\n-1.40382260e-01 -1.23158604e-01 1.27111197e-01 2.30110250e-02\\n2.11109638e-01 1.76399082e-01 -3.93578559e-01 4.60187674e-01\\n-1.89712286e-01 4.37685668e-01 6.28916472e-02 -9.21872675e-01\\n5.21513224e-01 2.17979237e-01 -7.52495006e-02 -3.45027626e-01\\n4.56723154e-01 -2.57734627e-01 1.63933545e-01 1.15954436e-01\\n-3.11615258e-01 -3.03101450e-01 2.58042991e-01 -1.96891814e-01\\n-2.56974429e-01 5.11971831e-01 9.73193720e-02 1.19868398e-01\\n2.01596111e-01 -6.75798133e-02 -1.99971706e-01 1.41404033e-01\\n-6.87638000e-02 -1.37844145e-01 -5.20411491e-01 6.49190992e-02\\n-1.26504034e-01 -4.34375584e-01 -1.49221152e-01 -5.30810833e-01\\n-2.86877632e-01 -4.51384693e-01 -2.03154951e-01 2.14078099e-01\\n2.02273667e-01 2.07759708e-01 -1.37022376e-01 1.74408630e-02\\n-4.33533043e-02 -6.43820584e-01 2.66052783e-04 1.38769835e-01\\n3.90707433e-01 1.71877787e-01 5.17912284e-02 -4.14657481e-02\\n-6.89766333e-02 5.37056029e-01 -4.73360270e-01 -1.10061362e-01\\n2.01019764e-01 1.40829697e-01 5.74577823e-02 -2.53187567e-01\\n-4.98538837e-04 1.91970825e-01 -2.54619628e-01 1.69565856e-01\\n1.08665768e-02 -5.59319928e-02 2.97970414e-01 -1.75266229e-02\\n-3.90742362e-01 -2.27305368e-01 -2.38285605e-02 2.65093952e-01\\n-5.96930027e-01 -2.05497846e-01 7.31360674e-01 9.60297287e-02\\n8.84768963e-02 1.26899272e-01 3.12753797e-01 -9.50303078e-02\\n-1.92081451e-01 -1.92622229e-01 3.06027532e-01 1.69365734e-01\\n1.79745793e-01 6.47982806e-02 -1.68590397e-01 -7.25288272e-01\\n-3.46152663e+00 -1.55546024e-01 1.82604253e-01 -2.23889008e-01\\n1.83801726e-01 -1.25249147e-01 1.05760351e-01 -1.12668902e-01\\n-2.90277541e-01 5.31129874e-02 -3.47990870e-01 -1.81026421e-02\\n1.59646228e-01 3.37478578e-01 1.34105623e-01 2.09645480e-01\\n1.65201381e-01 -1.81944236e-01 -3.63935530e-03 2.83455253e-01\\n-2.59377748e-01 -5.91504335e-01 2.39498436e-01 3.98090482e-02\\n2.67119288e-01 2.49517247e-01 -3.90929699e-01 -9.36735719e-02\\n-1.57730058e-01 -1.91653967e-01 7.42151886e-02 -1.83659077e-01\\n-1.23045631e-01 3.65723312e-01 2.33973533e-01 -2.31821220e-02\\n7.67990053e-02 -4.82322723e-01 -4.33679000e-02 -3.39384437e-01\\n6.60354793e-02 -7.26410568e-01 1.40737295e-02 -1.21863455e-01\\n5.78427315e-01 -1.72003657e-01 1.62750229e-01 5.86128458e-02\\n2.16893733e-01 1.30257979e-01 -4.09711711e-03 7.54161030e-02\\n-1.99047506e-01 -1.65934324e-01 -8.92325938e-02 -3.65489796e-02\\n5.72809815e-01 4.95695353e-01 -2.42709056e-01 -1.65264606e-01\\n-9.69658121e-02 -2.91380525e-01 -4.98110622e-01 -2.73972780e-01\\n-2.14730710e-01 -2.21536875e-01 -7.30839133e-01 -3.95480394e-01\\n-2.23783702e-01 -1.14699796e-01 -2.15485588e-01 7.08717704e-01\\n-2.62600660e-01 -3.26202422e-01 -2.64388956e-02 -3.33169609e-01\\n5.83702251e-02 -1.07271090e-01 7.04472363e-02 -7.07824975e-02\\n-2.12862179e-01 -3.90626848e-01 1.66928858e-01 2.47192271e-02\\n-2.51512259e-01 -2.63897955e-01 1.59211457e-01 -5.15863709e-02\\n-2.61391819e-01 -4.26261932e-01 4.04754102e-01 1.03886813e-01\\n1.99834660e-01 -1.97163876e-02 3.99401635e-01 1.66104138e-02\\n2.89314866e-01 -1.76774234e-01 4.02138978e-02 -4.06390846e-01\\n1.22198008e-01 1.84565075e-02 6.82155609e-01 -2.07949728e-01\\n1.23464838e-01 8.10787007e-02 -3.17939132e-01 -2.62195896e-02\\n3.82545412e-01 -5.99236898e-02 3.49111445e-02 -2.26549864e-01\\n2.64004827e-01 -3.17264974e-01 -2.77918071e-01 6.80610631e-03\\n1.00186206e-01 7.19029963e-01 -2.46658958e-02 -4.64920759e-01\\n-2.56991148e-01 3.69181335e-01 -6.83801100e-02 -1.75895885e-01\\n-2.06528798e-01 1.28168672e-01 -2.89696753e-01 8.35099071e-02\\n1.01251557e-01 3.91453505e-04 -2.88101792e-01 -1.12076893e-01\\n-1.23720698e-01 2.67035365e-01 2.51824737e-01 2.11991258e-02\\n-3.92286293e-02 -4.28929627e-01 -5.78403994e-02 2.19259977e-01\\n8.26181471e-02 2.74936169e-01 1.37484312e-01 -2.99289256e-01\\n-4.87832613e-02 2.73431093e-01 -1.69514373e-01 1.27810374e-01\\n-2.40944475e-01 1.31605998e-01 -5.18564880e-01 -3.14465463e-01\\n-3.06264400e-01 -3.74721795e-01 2.05584057e-02 4.08720046e-01\\n6.88058957e-02 -3.14771011e-02 3.06842830e-02 -4.21326667e-01\\n2.70342886e-01 -3.67282070e-02 2.62333751e-01 9.52514336e-02\\n1.23665944e-01 5.83797753e-01 -8.50426406e-03 -2.21412688e-01\\n-8.87182653e-02 -1.71836931e-04 -3.07975680e-01 -1.20137542e-01\\n3.87229770e-02 -4.21077192e-01 -4.35593203e-02 4.11308706e-01\\n1.95795849e-01 -2.18307391e-01 -1.24449864e-01 2.47268081e-01\\n-6.49782121e-02 -3.23171020e-01 -2.03858018e-01 -1.23279080e-01\\n4.03922737e-01 -4.11291867e-02 3.07485700e-01 -4.31482524e-01\\n9.91183706e-03 -1.38714194e-01 -9.88192260e-02 4.85061347e-01\\n1.04926020e-01 1.08190238e-01 -7.85610005e-02 -2.12684087e-03\\n5.47457218e-01 -1.11562535e-02 -7.78115466e-02 4.22950946e-02\\n1.17879659e-01 -2.26505905e-01 -5.58343053e-01 8.58392566e-02\\n9.34343133e-03 -1.53606474e-01 2.00214032e-02 1.43296897e-01\\n9.62457284e-02 2.45285481e-02 -5.87873459e-01 -2.78815746e-01\\n-3.87847960e-01 -5.88585921e-02 9.36212242e-02 -6.67056322e-01\\n-1.19546682e-01 1.59116331e-02 -5.41291773e-01 2.90991068e-01\\n-1.33855522e-01 -8.22847560e-02 1.17895097e-01 3.16627473e-02\\n-2.70731509e-01 -1.71020001e-01 1.36903763e-01 8.52297693e-02\\n-2.96634585e-01 -1.34892449e-01 1.68764099e-01 -9.38175440e-01\\n2.07491785e-01 1.44135915e-02 -1.51175693e-01 4.41511609e-02\\n-9.38320532e-02 -6.61740720e-01 2.03051120e-01 -3.99923474e-01\\n-8.19095448e-02 -3.58373672e-03 -2.10438713e-01 -4.30373728e-01\\n5.29158339e-02 -1.04155213e-01 -3.52182567e-01 3.59753549e-01\\n-3.14473391e-01 3.47001702e-01 5.95577285e-02 1.21746823e-01\\n1.10632122e-01 -2.99949408e-01 -1.42693799e-02 -4.20880616e-01\\n-5.30931950e-01 -9.65519175e-02 -2.84130722e-01 -1.11856796e-01\\n6.83050901e-02 -3.42622638e-01 -1.54158682e-01 7.33633935e-02\\n3.13072324e-01 1.42792270e-01 -6.34566471e-02 -2.89023340e-01\\n-5.87716699e-02 -5.18379569e-01 4.92795631e-02 4.93704528e-03\\n-1.91200506e-02 -8.69298950e-02 3.79038393e-01 7.09760785e-02\\n1.81711465e-01 -3.60419035e-01 5.60872674e-01 -3.34105998e-01\\n-2.89579809e-01 -7.89756998e-02 -4.65806276e-02 1.65632874e-01\\n3.45170736e-01 -4.48269844e-01 -9.34465881e-03 3.32729071e-01\\n1.56000644e-01 8.05622637e-02 3.54043365e-01 -1.50596559e-01\\n-1.24718353e-01 2.13257447e-01 -3.53846163e-01 1.96341425e-01\\n7.22616732e-01 -4.29451428e-02 6.69564232e-02 1.24142379e-01\\n7.99880549e-02 2.46518299e-01 5.89167237e-01 -1.22367740e-01\\n-1.72826484e-01 4.14311409e-01 7.43979067e-02 -6.05821133e-01\\n-1.24811575e-01 -1.88255161e-02 -8.50793868e-02 -2.91561306e-01\\n5.99032104e-01 3.71947706e-01 -3.35168898e-01 -2.24807799e-01\\n-1.27652794e-01 -1.63496673e-01 6.00381829e-02 2.08037868e-02\\n1.22432470e-01 3.38933468e-02 5.57466626e-01 -5.04856482e-02\\n1.77082866e-01 4.67105746e-01 -1.21727169e-01 -3.82690072e-01\\n-1.04550198e-01 1.67632848e-01 7.77603239e-02 4.02920395e-01\\n-1.32308692e-01 2.08966002e-01 9.45289582e-02 6.91292360e-02\\n-5.93440309e-02 -4.31737378e-02 9.49291065e-02 1.02117039e-01\\n1.08671270e-01 1.12267599e-01 5.06119668e-01 4.51601952e-01\\n4.21046644e-01 4.56188470e-01 2.97055185e-01 3.95316929e-02\\n5.92457056e-01 7.16416538e-01 3.15798342e-01 1.54960006e-01\\n-7.67525136e-02 4.46541160e-02 1.15493819e-01 -1.43792816e-02\\n4.13044751e-01 4.23596621e-01 9.67985913e-02 7.46523321e-01\\n4.25756931e-01 2.76604116e-01 5.55792451e-01 -6.48511171e-01\\n-3.47402215e-01 1.10264093e-01 5.07477283e-01 -2.12123364e-01\\n6.58451170e-02 1.86530322e-01 -7.30625242e-02 6.47648647e-02\\n-4.63651180e-01 -3.84337783e-01 -3.23074274e-02 -3.99322063e-03\\n1.16976634e-01 -1.60842150e-01 -2.59224355e-01 1.41552404e-01\\n-5.65461032e-02 -1.25368714e-01 -4.64714885e-01 -4.64317724e-02\\n-2.27404356e-01 -3.03152781e-02 -1.20108061e-01 -9.98287946e-02\\n-6.73717186e-02 -2.99113870e-01 -2.28377730e-01 1.04130106e-03\\n1.92984179e-01 -1.61319077e-01 -1.46177843e-01 -1.58860222e-01\\n2.20492631e-01 1.84427351e-01 5.91194868e-01 -1.21135972e-01\\n8.69734287e-02 -3.85303974e-01 -2.26724938e-01 1.42835662e-01\\n2.50737309e-01 5.09545542e-02 2.62620207e-02 4.52395678e-01\\n-3.74933362e-01 -1.22513033e-01 1.28318444e-01 3.42838019e-01\\n-3.99582028e-01 -1.26500465e-02 -1.52608559e-01 1.36314109e-01\\n1.34025410e-01 1.66410446e-01 -1.25721425e-01 -1.19099826e-01\\n-1.30834758e-01 -5.27086854e-01 2.98909128e-01 -3.64877358e-02\\n-1.23877816e-01 -4.77618724e-03 1.81524813e-01 1.78562135e-01\\n-2.70299673e-01 -2.14739833e-02 -1.66518360e-01 1.52228400e-01\\n1.69387404e-02 2.93833613e-01 -3.09932679e-01 -2.03564212e-01\\n-1.72245994e-01 2.20776394e-01 -6.66820481e-02 1.40829548e-01\\n-1.72022656e-02 3.55600417e-01 1.93950996e-01 1.63458973e-01\\n4.38086212e-01 1.02202877e-01 -1.20563470e-01 -1.33919522e-01\\n-3.05767685e-01 -2.27477521e-01 -1.80692822e-02 -6.03313372e-03\\n1.59319818e-01 -3.35456908e-01 -1.29765067e-02 -1.49638087e-01\\n-2.90399879e-01 -2.81302482e-01 -1.15495041e-01 2.28939857e-03]]',\n", + " 'Job Description We are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you don’t feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios You’ll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! Blog: https://technology.lastminute.com/ Twitter: https://twitter.com/lastminute_tech/ Qualifications null Additional Information null',\n", + " '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Job Descriptions\", \"Vert.x\", \"Extreme Programming\"]',\n", + " \"['English']\"],\n", + " ['70',\n", + " 'blockchain engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.68468460e-01 1.95393801e-01 4.78372335e-01 6.75854832e-02\\n4.87819761e-01 -2.82376140e-01 -2.54423451e-02 3.55114311e-01\\n-4.72318605e-02 -4.13300365e-01 1.08802542e-02 -2.17324018e-01\\n-8.63056108e-02 1.96554944e-01 1.50316522e-01 2.86524832e-01\\n2.80053586e-01 1.19370423e-01 -2.13149682e-01 3.43104661e-01\\n1.08419441e-01 -1.43764347e-01 8.43892172e-02 7.31656373e-01\\n5.02883852e-01 1.18845157e-01 -8.51071849e-02 -6.51941374e-02\\n-2.00312302e-01 -1.17461666e-01 4.12943602e-01 -5.08855991e-02\\n1.39200501e-02 -4.22871172e-01 8.63478854e-02 8.00476968e-02\\n-2.75455445e-01 -3.40935774e-02 -1.72808006e-01 6.71390668e-02\\n-5.16399801e-01 -2.47503713e-01 6.95148483e-02 1.02146737e-01\\n-2.13476911e-01 -3.08765799e-01 -1.20800585e-02 -1.02312997e-01\\n2.01180547e-01 -1.14113867e-01 -5.64438999e-01 2.59424984e-01\\n-3.22751343e-01 -2.16957435e-01 3.38575631e-01 5.00837743e-01\\n4.50727064e-03 -5.11066973e-01 -5.08156300e-01 -3.34673554e-01\\n3.30006294e-02 -1.46670029e-01 7.78580038e-03 -4.02091473e-01\\n1.60111576e-01 6.53976947e-02 2.23203283e-02 3.62454116e-01\\n-8.19269180e-01 -2.16271039e-02 -1.65190935e-01 -8.58361796e-02\\n-2.21615225e-01 -1.38777211e-01 -4.41558629e-01 -7.51838610e-02\\n-1.93957537e-01 3.55459452e-01 2.50686556e-02 9.97776389e-02\\n-1.84704602e-01 2.92569965e-01 -2.09179953e-01 5.54519832e-01\\n1.63094535e-01 1.71547756e-01 2.99889207e-01 3.01817238e-01\\n-4.17024523e-01 5.24201453e-01 1.23840585e-01 -2.44275928e-01\\n2.06258327e-01 1.25662357e-01 4.22664255e-01 -8.36619176e-03\\n2.46818751e-01 5.20144776e-02 -2.67222583e-01 2.46677428e-01\\n2.78042644e-01 -2.61716634e-01 -8.61731172e-03 -2.30660141e-01\\n3.63985822e-02 1.24001391e-02 3.13709229e-02 1.80315226e-01\\n-1.92323804e-01 3.92479241e-01 2.65232980e-01 -1.30896226e-01\\n-1.37121320e-01 -3.56515795e-01 -8.72644968e-03 1.14346676e-01\\n-6.79602940e-03 1.68162644e-01 1.66851059e-01 1.06791712e-01\\n1.98243946e-01 1.72827840e-02 1.67909209e-02 7.68485010e-01\\n-1.80048585e-01 1.87098558e-04 -3.54871064e-01 2.75915623e-01\\n1.04191199e-01 -2.87925333e-01 1.62882894e-01 2.11060390e-01\\n-8.03618599e-03 -1.44614473e-01 -2.52845973e-01 3.23427349e-01\\n-5.77862859e-02 -1.90861061e-01 -3.16779524e-01 1.63235545e-01\\n-4.22011986e-02 -4.35643405e-01 6.77681088e-01 1.72786817e-01\\n1.70842141e-01 4.74997424e-02 9.18760970e-02 -1.04974009e-01\\n-1.21745706e-01 2.43502468e-01 1.68498661e-02 1.42088905e-01\\n-2.97266066e-01 -2.48426914e-01 -2.20340118e-01 5.31079359e-02\\n-3.53875995e-01 1.63790390e-01 -4.93040793e-02 -5.10825180e-02\\n2.07125947e-01 2.91259754e-02 -2.09692597e-01 2.98948228e-01\\n-4.38979305e-02 7.54645932e-03 5.21159805e-02 3.19464803e-01\\n-1.56767979e-01 2.43637636e-01 -3.64555307e-02 -4.13924642e-02\\n6.12645805e-01 1.75754026e-01 2.14743182e-01 -6.57452270e-02\\n2.77105480e-01 -3.88757735e-02 1.49376586e-01 3.11876778e-02\\n-6.45414054e-01 2.59329230e-01 5.70899993e-02 -1.21646412e-01\\n1.19097285e-01 -2.98014693e-02 1.75929904e-01 -3.05881202e-01\\n-2.00935407e-04 -1.84454009e-01 -2.73383349e-01 -2.74596423e-01\\n-2.00708032e-01 -1.27511369e-02 3.98670256e-01 -3.94281983e-01\\n-2.26214174e-02 2.51627117e-01 -4.86678213e-01 -8.65713507e-02\\n2.12565795e-01 1.01392210e-01 6.82993084e-02 1.20017014e-01\\n-1.50982037e-01 -4.38944727e-01 1.46156415e-01 -3.56577694e-01\\n-3.26340854e-01 -3.60354297e-02 -3.87990326e-01 2.26337209e-01\\n8.21759552e-02 -1.03959262e-01 -6.09193295e-02 1.40267029e-01\\n-1.43070221e-01 -6.58371001e-02 8.95720348e-02 -2.09132116e-02\\n4.23394650e-01 9.02603641e-02 -3.58470291e-01 4.84389424e-01\\n-2.22347751e-01 6.42471850e-01 1.22036740e-01 -8.54788780e-01\\n4.86847222e-01 4.51029271e-01 -2.22205501e-02 -4.25716311e-01\\n4.57362264e-01 -3.08423281e-01 -8.47894475e-02 9.03135762e-02\\n-4.43624824e-01 -4.21901405e-01 1.91134706e-01 -2.32254505e-01\\n-2.03272209e-01 4.67373133e-01 -2.38604899e-02 8.68854448e-02\\n2.02216119e-01 -2.87575275e-01 -8.46838579e-02 1.26395568e-01\\n-3.71113792e-03 -2.67661542e-01 -4.99800414e-01 -1.36312723e-01\\n-1.33690327e-01 -4.62134868e-01 -6.19769655e-02 -4.29999679e-01\\n-2.10538030e-01 -3.86619866e-01 -3.01822841e-01 9.19876099e-02\\n3.20785791e-01 1.02381416e-01 -3.63909230e-02 8.68297368e-02\\n-9.50479656e-02 -5.93751550e-01 4.63519432e-02 1.04387574e-01\\n5.26489019e-01 2.06089199e-01 1.50072441e-01 5.47099113e-02\\n5.22938147e-02 6.47151351e-01 -2.19208062e-01 -1.75553992e-01\\n1.53151587e-01 1.64307430e-01 7.20725507e-02 -2.12647468e-01\\n1.11584969e-01 4.12869960e-01 -4.19233263e-01 2.04858575e-02\\n-5.99975586e-02 1.84085835e-02 4.28330779e-01 1.48830870e-02\\n-3.37903947e-01 -2.15078473e-01 -9.55346897e-02 1.69807807e-01\\n-5.44620335e-01 -2.22011834e-01 5.47935486e-01 2.34720781e-01\\n1.78123236e-01 1.63674012e-01 1.93995818e-01 4.80238460e-02\\n-2.29804918e-01 -1.87871486e-01 1.75484166e-01 4.52531390e-02\\n9.24961567e-02 1.30912811e-01 -2.06056125e-02 -5.81556797e-01\\n-3.30706358e+00 -1.41556427e-01 2.85968393e-01 -2.57712066e-01\\n2.61773556e-01 -1.12077564e-01 2.05858843e-03 -4.84175496e-02\\n-1.88750342e-01 5.94708286e-02 -1.70638084e-01 -1.68995157e-01\\n1.42115250e-01 1.41707420e-01 1.11504219e-01 1.97914764e-01\\n2.55341053e-01 -1.98245332e-01 -4.48364811e-03 3.02295744e-01\\n-2.51424015e-01 -6.43631041e-01 1.70472294e-01 -5.69942258e-02\\n3.16867918e-01 2.33767211e-01 -3.82321060e-01 -1.67208433e-01\\n-2.35652789e-01 -1.97018191e-01 3.73924002e-02 -2.90840000e-01\\n-5.28034940e-02 2.56689250e-01 1.42779082e-01 -1.19503327e-01\\n7.36161023e-02 -4.03617293e-01 -2.17268869e-01 -5.09667456e-01\\n1.83405012e-01 -5.96939921e-01 -4.73246463e-02 -4.95985746e-02\\n6.87128425e-01 -4.26640600e-01 1.34064451e-01 3.02347168e-02\\n2.26175830e-01 1.46187767e-01 -1.42032728e-02 9.99262277e-03\\n-2.39632025e-01 -2.68486410e-01 -2.79213060e-02 -1.63060337e-01\\n5.58497250e-01 3.98272485e-01 -2.43545681e-01 2.37644929e-02\\n1.01063572e-01 -3.05014789e-01 -3.93647701e-01 -1.66734576e-01\\n-1.12146735e-01 -3.05227906e-01 -5.07612646e-01 -3.61538738e-01\\n-2.28629515e-01 -1.67111933e-01 -1.12317868e-01 5.80709994e-01\\n-3.56066585e-01 -3.25975925e-01 1.08223118e-01 -5.23435771e-01\\n3.02419871e-01 -1.03284545e-01 2.00624764e-02 -2.58486599e-01\\n-2.29125813e-01 -4.98199642e-01 4.29933593e-02 2.20644604e-02\\n-5.02996892e-02 -2.52692878e-01 1.22303784e-01 1.23431534e-03\\n-2.47908100e-01 -5.17464042e-01 3.56322497e-01 1.28059655e-01\\n2.67838597e-01 1.49527460e-01 3.65741640e-01 -9.96899158e-02\\n2.44188562e-01 -5.37273139e-02 -3.33115645e-03 -3.20107847e-01\\n1.05933622e-01 9.40497667e-02 4.21075284e-01 -1.29508510e-01\\n-1.43303787e-02 1.95101112e-01 -2.33309075e-01 -5.84666282e-02\\n3.40079635e-01 5.71669266e-02 9.72953290e-02 -1.47836089e-01\\n2.82720089e-01 -2.05758214e-01 -1.22505061e-01 -5.17642545e-03\\n1.01435564e-01 5.96137822e-01 4.20606546e-02 -3.03145856e-01\\n-7.29568452e-02 6.55649185e-01 -6.28896654e-02 1.03956975e-01\\n-2.74326473e-01 9.81071889e-02 -1.38935447e-01 2.50987560e-01\\n3.80088371e-04 -2.72463024e-01 -1.98690802e-01 -1.62705302e-01\\n-2.13397786e-01 2.28916928e-01 1.92228884e-01 8.48888680e-02\\n-1.81680508e-02 -5.15264213e-01 -1.28227204e-01 1.66177288e-01\\n1.22475505e-01 5.21942496e-01 7.60065690e-02 -2.09310502e-01\\n-8.67229607e-03 3.51030737e-01 -9.00594667e-02 1.10057876e-01\\n-2.94403017e-01 1.10745274e-01 -4.67044026e-01 -1.88935280e-01\\n-2.47998461e-01 -4.90912855e-01 7.85784200e-02 3.07555497e-01\\n1.60013929e-01 2.38027684e-02 9.16237310e-02 -4.92324710e-01\\n2.67835557e-01 1.36283562e-01 1.60886288e-01 6.61901459e-02\\n2.35196743e-02 4.99020576e-01 -1.12882657e-02 -1.02792159e-01\\n-2.74634600e-01 1.29077211e-01 -2.12125927e-01 -1.42922103e-01\\n4.41108271e-02 -5.47638774e-01 -9.05696824e-02 3.47084314e-01\\n1.17797136e-01 -2.01226801e-01 -1.87169597e-01 1.99218735e-01\\n-5.37028862e-03 -2.27552533e-01 -3.25852424e-01 7.24395514e-02\\n3.08488071e-01 4.19133976e-02 3.38949263e-01 -4.31137204e-01\\n-1.87176652e-03 -5.40392590e-04 -8.25907513e-02 4.36573118e-01\\n1.12554058e-01 9.97819975e-02 -2.30789095e-01 -1.69748172e-01\\n3.39253455e-01 -2.28998616e-01 -3.45900469e-02 -8.98252279e-02\\n1.53048232e-01 -1.73386857e-01 -4.55334187e-01 7.99139217e-02\\n4.48237434e-02 -1.51555300e-01 2.40246635e-02 1.12471528e-01\\n1.18461609e-01 9.49100703e-02 -5.37375331e-01 -2.11600646e-01\\n-2.50731826e-01 -2.68278439e-02 1.41972110e-01 -4.82788414e-01\\n-4.90715867e-03 -5.16138412e-02 -5.70338726e-01 2.55860388e-01\\n-3.17929924e-01 -5.40298931e-02 2.64292926e-01 7.54520819e-02\\n-4.19753909e-01 -2.34023947e-02 -5.72428154e-03 3.57419938e-01\\n-2.14723289e-01 -3.12200963e-01 -2.44567301e-02 -1.00946927e+00\\n2.07625613e-01 9.04109329e-03 -2.04298750e-01 6.27626851e-02\\n-9.48740095e-02 -6.10953152e-01 1.06858745e-01 -3.29203516e-01\\n-1.13993071e-01 -6.23001084e-02 -1.51381016e-01 -4.09142077e-01\\n-6.19939677e-02 -3.57124433e-02 -3.21311414e-01 5.05554140e-01\\n-3.08322251e-01 3.16997349e-01 -1.63451836e-01 1.11554004e-01\\n-6.61440790e-02 -2.62815684e-01 1.82336122e-01 -2.66103297e-01\\n-2.35126540e-01 -2.72533685e-01 -3.71606112e-01 -3.66248041e-01\\n-6.66420069e-03 -2.91379094e-01 -5.25111295e-02 1.03590369e-01\\n3.46656442e-01 5.27842119e-02 -1.97942063e-01 -3.68014067e-01\\n1.18761137e-01 -6.21708274e-01 7.21290559e-02 6.34662714e-03\\n-1.21091539e-03 -8.30972791e-02 1.98669359e-01 7.04494193e-02\\n2.07859546e-01 -4.96362567e-01 1.61100447e-01 -3.94922853e-01\\n-3.40922922e-01 -6.16677999e-02 -9.32552293e-02 -2.56164838e-02\\n2.67969668e-01 -5.62462449e-01 -7.58905262e-02 3.19182247e-01\\n2.20162898e-01 -2.55330396e-03 1.84652716e-01 -6.89972490e-02\\n-1.40212104e-02 3.05106342e-01 -2.63114899e-01 7.62887970e-02\\n7.01447606e-01 6.83224620e-03 5.79826236e-02 2.85430223e-01\\n1.50823981e-01 3.89735818e-01 5.13810933e-01 -6.74651861e-02\\n-1.32071644e-01 2.64412433e-01 6.90038949e-02 -5.98099828e-01\\n-8.99822190e-02 6.96351938e-03 -2.12367147e-01 -3.43214810e-01\\n6.98986769e-01 4.31712210e-01 -5.08289754e-01 -2.73067564e-01\\n-9.54403803e-02 -2.23634765e-01 1.31500199e-01 -1.93551425e-02\\n1.61141809e-02 -1.71140298e-01 4.59723830e-01 -7.64352409e-03\\n2.71493435e-01 5.71604908e-01 -2.14388937e-01 -3.39131743e-01\\n-5.01285067e-05 2.77896076e-01 -4.43701968e-02 3.85925025e-01\\n-2.60398299e-01 2.93353736e-01 -4.84673157e-02 1.37485534e-01\\n-2.27613561e-02 1.40965745e-01 8.91220942e-02 1.28761277e-01\\n1.64892420e-01 9.17982757e-02 5.01211405e-01 3.91287029e-01\\n3.25791478e-01 4.08050358e-01 2.84480572e-01 1.24355145e-01\\n4.12808031e-01 5.25912404e-01 3.72525066e-01 2.01204605e-02\\n3.02687120e-02 1.57103255e-01 1.43210307e-01 -1.31073408e-02\\n2.85085768e-01 3.88511449e-01 1.32097295e-02 8.46806228e-01\\n3.23682427e-01 2.35111833e-01 6.71892405e-01 -6.81996763e-01\\n-3.17397386e-01 -9.82349217e-02 4.67956901e-01 -3.36551517e-01\\n-3.84304672e-02 1.28085241e-01 -1.75123677e-01 2.61269599e-01\\n-3.29592764e-01 -1.59790650e-01 4.37929109e-02 2.17978209e-01\\n-2.80238483e-02 -1.49725288e-01 -2.66877204e-01 2.40686350e-02\\n-1.12662025e-01 -1.36445180e-01 -4.49849218e-01 -1.06007829e-01\\n-2.12841228e-01 -7.74007961e-02 -8.63549635e-02 -1.27512977e-01\\n-6.45768270e-02 -4.17522699e-01 -7.05076456e-02 4.98949513e-02\\n2.43879855e-01 -2.94604972e-02 1.60356518e-02 -1.55310646e-01\\n2.67724156e-01 2.14495361e-01 5.61511457e-01 6.49298355e-02\\n3.14930477e-03 -1.66564777e-01 -2.47696981e-01 2.10431531e-01\\n7.07891881e-02 4.42199335e-02 6.24577049e-03 2.12231398e-01\\n-1.98495671e-01 -1.33692339e-01 1.89599201e-01 4.17255402e-01\\n-4.65088487e-01 -1.13009494e-02 -1.05703510e-01 2.32315972e-01\\n1.23387814e-01 1.84252188e-01 -9.26252529e-02 5.24913147e-02\\n-1.81660488e-01 -3.36255163e-01 2.27604270e-01 -4.30321917e-02\\n-2.56600022e-01 8.80173147e-02 2.47832268e-01 2.50911057e-01\\n-3.06455374e-01 6.20137081e-02 -8.59209225e-02 1.35680974e-01\\n1.24824561e-01 3.32288206e-01 -1.81135491e-01 -3.49710584e-01\\n-2.54808426e-01 7.73721039e-02 -2.11469531e-01 6.10313155e-02\\n4.06336188e-02 4.13315892e-01 5.84489554e-02 -3.64887193e-02\\n3.90878409e-01 2.72648949e-02 -2.27666810e-01 -1.72454670e-01\\n-1.09700538e-01 -1.30315378e-01 -7.73871168e-02 -5.33822440e-02\\n1.35982931e-01 -3.59940261e-01 -8.73657912e-02 -4.92828228e-02\\n-9.82103050e-02 -2.88429379e-01 -7.06435740e-03 -6.98495060e-02]]',\n", + " \"The Company Lykke Business is part of the Lykke Ecosystem. It is an innovative, fair and trusted partner committed to reshaping entire business models with cutting edge blockchain technology. Our teams are busy building the future of identity, financial markets, commerce, security infrastructure and more. Our Leadership team has led some of the most innovative production blockchain implementations in the world. The Role We’re looking for a talented Blockchain Engineer with a strong C# background to join our international distributed team. The successful employee will have at least 2-3 years technical experience, and will be responsible for developing, enhancing and maintaining applications and smart contracts together with other team members. Your tasks: Develop quality applications, components and modules using C# (we're using .NET Core) Develop smart contracts Test applications and smart contracts to ensure that they meet the requirements specified Work under an agile scrum methodology Skills & Requirements: Self-motivation and an ability to work autonomously are a must. To be successful in the role, you should ideally possess the following attributes: Strong understanding of blockchain technologies including Ethereum Strong programming skills, including C#, Solidity and JavaScript Experience with the following frameworks and technologies will be a plus: Truffle OpenZeppelin Node.js SQL Databases (MS SQL, Azure SQL) NO SQL Databases (Azure Storage, MongoDB, CosmosDB) Docker and Kubernetes What awaits you: This is an exciting opportunity for a self-motivated individual who is keen to join the growing blockchain ecosystem. The successful candidate will become part of a highly motivated team and enjoy a friendly environment where remote work and flexible working hours are embraced, and a can-do and enterprising spirit is cultivated. We have big plans, and want you to be a key part of those! If you are someone who thrives in a fast-paced environment where being self-directed, determined, and resilient are requirements, we’re looking forward to receiving your application.\",\n", + " '[\"Self-Motivation\", \"Friendliness\", \"Resilience\", \"Team Motivation\", \"Distributed Team Management\", \"Team Leadership\", \"Innovation\"]',\n", + " '[\"Kubernetes\", \"Agility\", \"Programming (Music)\", \"Hyper SQL Database (HSQLDB)\", \"Blockchain\", \"Infrastructure Security\", \"Application Testing\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"Scrum (Software Development)\", \"Product Innovation\", \"Financial Market\", \"Docker (Software)\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"Azure Blob Storage\", \"Self-Directed Learning\", \"Ethereum\", \"Receivables\", \"Modulation\", \"SQL Azure\", \"Business Model\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Cultivator\"]',\n", + " \"['English', 'Korean', 'Maltes', 'Limburgish', 'Mongolian']\"],\n", + " ['145',\n", + " 'software engineer',\n", + " 'Argovia',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.varian.com',\n", + " '[[-6.19051345e-02 2.23809808e-01 3.77727032e-01 -1.40341846e-02\\n4.36400533e-01 -1.93047285e-01 1.66181818e-01 4.62623447e-01\\n2.18171254e-02 -5.70284069e-01 -5.47202863e-02 -2.18292356e-01\\n-8.23639110e-02 1.07243277e-01 1.33008942e-01 4.45098698e-01\\n2.52567559e-01 1.12891711e-01 -2.07773387e-01 3.88301581e-01\\n6.40700758e-02 -1.59709617e-01 3.82796563e-02 8.18270266e-01\\n4.19291675e-01 -2.83275172e-03 -1.33975565e-01 -7.66897276e-02\\n-1.98966995e-01 -3.73720199e-01 3.97122502e-01 -3.06620430e-02\\n-3.53687815e-02 -3.10346633e-01 1.44295797e-01 2.18290575e-02\\n-2.07458287e-01 2.06766576e-02 -1.28369004e-01 2.46458575e-01\\n-5.09799421e-01 -1.93040997e-01 -3.93022858e-02 -5.77651113e-02\\n-1.98354721e-01 -3.52962524e-01 -4.29547951e-02 -1.25301033e-02\\n1.59999371e-01 1.26293987e-01 -4.56239462e-01 2.96637595e-01\\n-2.18936503e-01 -3.10797691e-01 3.19550693e-01 6.11211717e-01\\n-7.16329142e-02 -4.23881590e-01 -5.41440427e-01 -3.12958300e-01\\n2.58810166e-02 -8.72627273e-02 8.81620049e-02 -3.74840736e-01\\n2.19725683e-01 1.10441037e-01 8.09637532e-02 3.45258355e-01\\n-7.83293307e-01 -1.78706750e-01 -2.85338968e-01 -1.10670000e-01\\n-2.03725561e-01 -1.91734046e-01 -2.96925515e-01 -1.18050620e-01\\n-2.18303382e-01 3.73763412e-01 3.21039073e-02 3.28219198e-02\\n-1.93060443e-01 2.61463374e-01 -2.33669266e-01 3.31179410e-01\\n2.65250057e-01 2.65267372e-01 2.23909453e-01 3.57913852e-01\\n-3.20149660e-01 4.17466968e-01 9.39447060e-02 -2.92053252e-01\\n2.12166488e-01 2.14759424e-01 5.07212937e-01 -1.05090447e-01\\n2.28230730e-01 6.97586462e-02 -3.80716234e-01 2.82739937e-01\\n2.63293862e-01 -2.51291364e-01 1.31841123e-01 -1.59610078e-01\\n6.44806623e-02 9.60504711e-02 8.32091942e-02 4.68361601e-02\\n-2.38525227e-01 4.18227524e-01 1.30770311e-01 -2.64154762e-01\\n-1.40862927e-01 -4.51302439e-01 -7.79878050e-02 1.14234343e-01\\n8.38440955e-02 1.44823536e-01 2.20479161e-01 8.32772851e-02\\n1.80476651e-01 -5.13989590e-02 4.45933901e-02 7.54391313e-01\\n-1.31563678e-01 7.30469227e-02 -3.33929747e-01 1.76681161e-01\\n6.82354793e-02 -3.55887681e-01 2.20263481e-01 2.12145552e-01\\n-3.37241888e-02 -1.18309438e-01 -2.43699297e-01 4.11115825e-01\\n8.99417847e-02 -2.04994321e-01 -2.42856935e-01 1.78263351e-01\\n3.08504049e-03 -5.03665864e-01 6.91271424e-01 2.92589646e-02\\n2.48471931e-01 -2.12667007e-02 7.10081384e-02 -3.16120237e-02\\n-8.11973028e-03 1.05657034e-01 2.00559840e-01 -1.40654771e-02\\n-2.58301198e-01 -3.12648833e-01 -2.04233676e-01 1.24557748e-01\\n-3.54256064e-01 1.69771746e-01 -4.75472100e-02 -2.93016294e-03\\n2.93254286e-01 6.35590963e-03 -2.64663070e-01 2.45483398e-01\\n-1.46545604e-01 9.40890759e-02 -5.43725714e-02 3.09407651e-01\\n-1.93029895e-01 2.70644844e-01 -5.71352392e-02 -2.71626655e-02\\n7.03028977e-01 1.52634174e-01 7.56502599e-02 -5.30628525e-02\\n3.20812762e-01 4.59968932e-02 1.79240480e-01 1.26080573e-01\\n-6.81949317e-01 2.40007803e-01 -1.44257888e-01 -2.53743619e-01\\n1.75748646e-01 -8.31371844e-02 2.08529472e-01 -3.24490041e-01\\n-1.12240918e-01 -2.16935892e-02 -2.75911540e-01 -3.50687951e-01\\n-2.11603671e-01 -5.93915172e-02 3.72637123e-01 -3.63240570e-01\\n-1.14702292e-01 1.89016402e-01 -4.80212003e-01 -3.53415008e-03\\n1.05358899e-01 2.27164522e-01 1.13652885e-01 1.70938343e-01\\n-1.68370098e-01 -4.63308275e-01 8.53173211e-02 -4.34184611e-01\\n-2.63931423e-01 9.13070515e-02 -3.48996997e-01 1.99189350e-01\\n7.59472698e-02 8.93558860e-02 -1.40828937e-01 9.02831629e-02\\n-1.60108536e-01 -9.38417241e-02 -3.59690972e-02 -2.63382047e-02\\n1.31465882e-01 8.00487585e-03 -3.67677540e-01 4.40679491e-01\\n-7.58004487e-02 4.84245688e-01 7.46898204e-02 -7.55133092e-01\\n4.71182257e-01 3.71321917e-01 -2.30512172e-02 -4.41640466e-01\\n5.09036839e-01 -2.44831100e-01 -1.22985631e-01 1.04106024e-01\\n-3.84826988e-01 -3.92508864e-01 2.50629932e-01 -2.38448858e-01\\n-2.79916286e-01 3.08033764e-01 5.05701900e-02 1.47781298e-01\\n1.49418846e-01 -9.90435183e-02 -2.11040373e-03 4.40473408e-02\\n9.06787664e-02 -1.27682269e-01 -4.95719016e-01 -9.27683115e-02\\n-7.24465474e-02 -3.66644770e-01 -8.83476958e-02 -4.45811242e-01\\n-1.95732564e-01 -4.11035866e-01 -2.73662865e-01 1.87959954e-01\\n2.67109990e-01 1.06550559e-01 4.80799042e-02 1.56393927e-02\\n-9.67728794e-02 -7.14310586e-01 4.72441427e-02 1.29183576e-01\\n4.76394117e-01 1.46124691e-01 -1.79211039e-03 -3.49180326e-02\\n7.91769922e-02 6.65879190e-01 -3.03834617e-01 -1.51239350e-01\\n1.57427862e-01 1.91515759e-01 8.04590434e-02 -1.58442602e-01\\n1.38004586e-01 3.26720238e-01 -2.85673201e-01 7.82303661e-02\\n-4.98117916e-02 -2.35565286e-02 3.73280078e-01 -4.54107672e-02\\n-4.22941446e-01 -2.50718981e-01 -1.36065856e-01 -2.02492252e-02\\n-5.58721185e-01 -1.27812833e-01 5.82499325e-01 1.54448554e-01\\n2.08465829e-01 1.37783483e-01 2.22538680e-01 -1.86023284e-02\\n-1.64326534e-01 -2.67969698e-01 2.24581838e-01 4.13470268e-02\\n1.86244741e-01 1.31837055e-01 -5.63574024e-02 -6.44176126e-01\\n-3.42675591e+00 -1.40493110e-01 1.49335831e-01 -2.40450040e-01\\n2.34372541e-01 -5.20308428e-02 2.54074663e-01 -3.26240472e-02\\n-3.47976536e-01 -2.30737980e-02 -8.00630152e-02 -6.66800514e-02\\n2.02332050e-01 2.24695489e-01 1.30736426e-01 1.50843203e-01\\n3.11153293e-01 -2.79829234e-01 -1.36982411e-01 3.73772413e-01\\n-1.43773779e-01 -5.95322013e-01 1.30888283e-01 7.20803514e-02\\n3.08980614e-01 2.95025527e-01 -3.60756963e-01 -1.41418185e-02\\n-2.28443831e-01 -1.53815642e-01 5.65927587e-02 -2.32003123e-01\\n-1.82803631e-01 1.57912269e-01 1.78849101e-01 -1.51809886e-01\\n9.93154123e-02 -3.79102230e-01 -1.06419735e-01 -4.23455566e-01\\n1.86578676e-01 -6.68026745e-01 -1.02202401e-01 -1.05853684e-01\\n7.72332966e-01 -2.25147173e-01 2.27826163e-01 -3.25366086e-03\\n1.82527155e-01 1.27701014e-01 7.34136775e-02 4.78709266e-02\\n-1.69970304e-01 -2.22631276e-01 3.55224833e-02 -1.47418693e-01\\n5.90386808e-01 4.17490065e-01 -2.63108253e-01 -1.22895777e-01\\n8.66316557e-02 -1.99856862e-01 -4.15202498e-01 -1.19595885e-01\\n-1.95943117e-01 -1.62509531e-01 -6.32236958e-01 -4.60444897e-01\\n-2.25776985e-01 -1.45664111e-01 -1.18890926e-01 8.01176488e-01\\n-3.25459987e-01 -3.72208863e-01 1.41753340e-02 -4.23251569e-01\\n2.39459917e-01 -2.22117618e-01 1.19567975e-01 -2.00784713e-01\\n-2.10524067e-01 -4.07863915e-01 8.85375366e-02 1.05540954e-01\\n-4.70485650e-02 -2.13901147e-01 2.02927813e-01 -6.49816841e-02\\n-2.92883992e-01 -4.28552598e-01 3.27874482e-01 1.50528044e-01\\n1.94045052e-01 1.87466249e-01 3.77337575e-01 4.61283699e-02\\n2.88764477e-01 2.78802253e-02 4.23989818e-02 -4.04044747e-01\\n5.65041043e-02 -7.53071671e-03 5.46575963e-01 -2.56786585e-01\\n-4.04184498e-02 1.05093881e-01 -3.95375282e-01 -1.57784387e-01\\n3.94620121e-01 -7.13024214e-02 7.79878572e-02 -1.41737014e-01\\n2.97933102e-01 -2.18452558e-01 -1.38576031e-01 -2.84769246e-03\\n1.46004841e-01 5.89523792e-01 -1.03604510e-01 -4.27862078e-01\\n-6.02160841e-02 4.40088958e-01 -3.62040028e-02 2.66031533e-01\\n-6.93737417e-02 3.99331190e-02 -1.35588318e-01 2.30085477e-01\\n9.60702077e-03 -1.62512109e-01 -1.68109655e-01 -1.56932637e-01\\n-1.12189427e-01 3.71553153e-01 1.76513582e-01 7.02599064e-02\\n-6.20615147e-02 -3.52750242e-01 -2.26519123e-01 2.71380305e-01\\n1.88409418e-01 4.08812851e-01 8.34701806e-02 -2.21568167e-01\\n-1.06666451e-02 4.34670448e-01 -2.35793710e-01 2.06491143e-01\\n-2.30906710e-01 1.70160845e-01 -3.97220194e-01 -1.76364839e-01\\n-3.28525662e-01 -4.69216496e-01 1.10041261e-01 3.52864504e-01\\n4.25268374e-02 3.32015157e-02 2.27678474e-02 -4.32758272e-01\\n1.44905180e-01 2.23310068e-01 1.81920871e-01 9.41202641e-02\\n-4.45765331e-02 4.22997713e-01 -2.15715244e-02 -1.82548255e-01\\n-2.59437889e-01 5.58669455e-02 -1.35348856e-01 -2.02564318e-02\\n1.53666705e-01 -5.56855738e-01 -6.15715683e-02 3.74330282e-01\\n6.61150441e-02 -3.00900042e-01 -9.67792794e-02 2.83310175e-01\\n5.75825833e-02 -3.70946199e-01 -2.75105864e-01 -1.14896828e-02\\n3.52942228e-01 2.04697922e-02 2.85356402e-01 -4.97603744e-01\\n-4.17070873e-02 -1.51359886e-02 -1.75125569e-01 3.40960115e-01\\n-7.32143968e-02 -1.38682062e-02 -2.27091759e-01 -9.46134031e-02\\n4.35124099e-01 -7.70500824e-02 -8.69204476e-02 5.84979057e-02\\n8.36682022e-02 -2.70383358e-01 -4.77980614e-01 4.47380310e-03\\n1.52210360e-02 -2.46860474e-01 3.04904189e-02 1.75612032e-01\\n7.71720614e-03 1.67775095e-01 -5.99797189e-01 -1.95308596e-01\\n-2.41540790e-01 -4.46128547e-02 1.67734444e-01 -4.67031687e-01\\n-5.72519340e-02 -4.45629768e-02 -5.14864624e-01 2.67005295e-01\\n-1.87731907e-01 -1.31884202e-01 2.22982988e-01 -7.46260583e-02\\n-2.86601305e-01 -2.78615635e-02 3.58147621e-02 2.89609700e-01\\n-1.53467640e-01 -3.19211751e-01 -1.22640006e-01 -9.69182312e-01\\n2.11302161e-01 4.93915658e-03 -6.10336624e-02 8.28779638e-02\\n-1.67469159e-01 -6.55389190e-01 1.21443860e-01 -3.67105961e-01\\n-8.58141705e-02 -1.86484456e-01 -1.94323853e-01 -4.24718231e-01\\n2.89580002e-02 -6.66416809e-02 -4.09955859e-01 3.22648913e-01\\n-2.63287425e-01 3.19880009e-01 -1.96254104e-01 1.06179588e-01\\n-8.07733759e-02 -3.62405151e-01 1.15657248e-01 -5.13754070e-01\\n-4.11345094e-01 -1.97170198e-01 -2.58108675e-01 -3.05555582e-01\\n-1.13185443e-01 -3.25967818e-01 -9.98986438e-02 2.42138147e-01\\n2.74886131e-01 4.94712852e-02 -8.41187239e-02 -2.86423564e-01\\n3.83117720e-02 -5.76020658e-01 3.79743017e-02 2.86732288e-03\\n-8.99192467e-02 -1.56229481e-01 1.08371712e-01 1.80575892e-01\\n2.57547885e-01 -4.38588381e-01 3.05570751e-01 -4.09507066e-01\\n-2.57537305e-01 -1.23804472e-02 3.35521065e-02 5.98320253e-02\\n3.92850667e-01 -5.25567651e-01 -9.93468016e-02 3.14466119e-01\\n9.28419158e-02 1.26023695e-01 2.13206336e-01 -8.95332247e-02\\n-1.24858238e-01 3.78621340e-01 -2.52148777e-01 1.27089903e-01\\n6.40203178e-01 9.64948460e-02 1.02745488e-01 2.36187518e-01\\n1.48223534e-01 4.32617873e-01 4.30310577e-01 -6.22925609e-02\\n-1.10516548e-01 2.88782746e-01 7.92500004e-02 -4.19815779e-01\\n-7.62072504e-02 1.36457503e-01 -1.59554228e-01 -3.21209371e-01\\n6.04258657e-01 5.10133445e-01 -4.47064072e-01 -2.42787391e-01\\n-1.59943342e-01 -1.82783499e-01 1.49825573e-01 -2.19271928e-02\\n-6.40360638e-02 -1.10977910e-01 4.77722377e-01 -9.67247039e-03\\n1.85170069e-01 5.16971767e-01 -1.67066827e-01 -2.86485285e-01\\n-3.62705812e-02 3.04229856e-01 -8.69823024e-02 5.18900812e-01\\n-1.49199530e-01 2.10024029e-01 2.10246164e-02 9.61648375e-02\\n-3.49113494e-02 1.30785316e-01 7.64887854e-02 1.49120703e-01\\n1.13568604e-01 2.07578972e-01 5.43067038e-01 4.88696992e-01\\n3.48208159e-01 3.62545639e-01 1.83902368e-01 1.40576527e-01\\n4.77726370e-01 4.35412377e-01 4.62036341e-01 1.52298287e-01\\n1.92517154e-02 4.91023511e-02 1.66059241e-01 -8.34274739e-02\\n3.17929745e-01 2.94777095e-01 2.15468053e-02 7.94405878e-01\\n3.05599988e-01 2.21731827e-01 6.44549549e-01 -5.97927451e-01\\n-2.89927423e-01 -4.40224297e-02 5.26176155e-01 -4.14630324e-01\\n4.63907421e-02 1.22942284e-01 -1.15793347e-01 2.82276720e-01\\n-4.43751156e-01 -2.45067984e-01 3.46285962e-02 9.91992876e-02\\n-3.22346874e-02 -2.69848526e-01 -1.87090978e-01 8.31070691e-02\\n-1.33444428e-01 -9.65618342e-02 -5.34595609e-01 -9.97988805e-02\\n-1.55962840e-01 -5.88978864e-02 -9.98019278e-02 -1.61630988e-01\\n-3.25339437e-02 -3.12433571e-01 2.43476834e-02 3.28414477e-02\\n1.22000605e-01 -1.54085293e-01 4.11295071e-02 -6.18786924e-02\\n3.39769840e-01 1.76135346e-01 5.49326003e-01 -1.36982026e-02\\n1.26961261e-01 -2.79514760e-01 -1.58429399e-01 2.07800731e-01\\n1.51075676e-01 8.49278271e-02 9.99814197e-02 2.30352834e-01\\n-2.86293864e-01 -2.04641908e-01 2.65345033e-02 3.97207290e-01\\n-4.39399838e-01 6.91773593e-02 -1.10686667e-01 2.05407068e-01\\n1.24894805e-01 1.35976255e-01 -1.59158573e-01 -1.23784006e-01\\n-1.39007151e-01 -3.78997803e-01 2.10911632e-01 -1.41031723e-02\\n-1.89340219e-01 8.03237185e-02 2.02123672e-01 3.72412533e-01\\n-1.56026512e-01 -3.69975604e-02 -9.56250131e-02 1.61186859e-01\\n2.70681959e-02 2.71852314e-01 -3.48080136e-02 -3.98473173e-01\\n-3.22610557e-01 1.54331222e-01 -2.11616307e-01 2.48909788e-03\\n2.19093077e-02 1.99191466e-01 -2.11749319e-02 -2.73124967e-03\\n3.74597460e-01 -6.76662698e-02 -2.30115682e-01 -2.74733067e-01\\n-1.70839027e-01 -1.46823615e-01 1.20798470e-02 -5.92725873e-02\\n1.10362411e-01 -3.20710540e-01 -1.18725363e-03 -1.55505478e-01\\n-1.70225814e-01 -2.13022575e-01 -4.32575792e-02 -9.27769691e-02]]',\n", + " \"We're driving toward the ultimate victory: a world without the fear of cancer. As a Software Engineer you will be collaborating with a talented, experienced team, providing best-in-class solutions for complex problems. This position involves all software engineering activities from analysis and design through coding and testing of data integration components, as well as maintenance and support during the product life cycle. Specific Responsibilities Analyze, design develop, and maintain connectivity services and the DICOM Import/Export application Investigate escalated customer issues Desired Qualifications Master’s degree in Computer Science / Electrical Engineering or related field 5 years professional work experience in object-oriented programming and test-driven design Cybersecurity skills as a programmer Service API skills (e.g. RESTful) Self-motivated and able to work well in a team environment. Strong problem analysis and solving capability. C# skills welcome DICOM skills welcome SQL skills welcome Excellent communication and teamwork skills, fluency in English You are analytical, communicative and focused. You work structured and have an eye for details. In addition, you can express your ideas and research in written form. You are used to working independently, open to discussing ideas and solutions with your colleagues. You thrive in an international work environment and in cultivating your contacts with partners in Europe and overseas. You’re just one click away from the most impactful work you’ll ever do. Apply now and join our mission to help save lives. Someone, somewhere, will be glad you did. We look forward to receiving your application and CV. www.varian.com/ch/daettwil #LI-OSS1 We're unleashing the power of technology and human ingenuity to achieve new victories in the fight against cancer. Join us and have a global impact.\",\n", + " '[\"Complex Problem Solving\", \"Self-Motivation\", \"Research\", \"Professionalism\", \"Collaboration\", \"Investigation\", \"Communications\"]',\n", + " '[\"Test-Driven Development (TDD)\", \"Computer Science\", \"Analytics\", \"Pentaho Data Integration\", \"Life Cycle Assessment\", \"Activism\", \"Import/Export Logistics\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Hostile Work Environment\", \"Software Engineering\", \"Library For WWW In Perl\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Structural Work\", \"Receivables\", \"Humanism\", \"Cybersecurity Compliance\", \"Additives\", \"Cancer\", \"Eyes\", \"Application Programming Interface (API)\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"Cultivator\", \"Dicom\"]',\n", + " \"['English', 'Amharic', 'Northern Sami', 'Albanian']\"],\n", + " ['75',\n", + " 'data systems engineer',\n", + " 'Zürich',\n", + " 'Financial Analytics & Research',\n", + " 'www.msci.com',\n", + " '[[-2.60954827e-01 2.30167165e-01 4.89781052e-01 7.73578370e-03\\n5.77957988e-01 -4.70237574e-03 1.81176122e-02 4.37544614e-01\\n-1.01420045e-01 -3.37166160e-01 -4.23684120e-02 -2.52674460e-01\\n2.45848950e-03 5.54076396e-02 1.29162595e-01 4.84801292e-01\\n2.50441521e-01 1.00949310e-01 -2.27572680e-01 3.35609496e-01\\n1.57288879e-01 -2.10521013e-01 1.71379447e-01 6.68238580e-01\\n4.78940874e-01 -1.84074454e-02 -1.03338294e-01 -1.26966953e-01\\n-3.52600574e-01 -3.31519693e-01 4.72143859e-01 -1.38572287e-02\\n-1.23099402e-01 -2.54388601e-01 1.76957011e-01 -7.03690723e-02\\n-2.91455328e-01 -6.09623268e-02 5.32634370e-02 1.28683254e-01\\n-4.74885732e-01 -1.59514278e-01 -1.13965869e-01 3.44431885e-02\\n-1.42328441e-01 -2.37396866e-01 1.74945861e-01 -6.97839186e-02\\n1.51579663e-01 1.29282281e-01 -3.79247963e-01 1.12373061e-01\\n-2.24098831e-01 -2.42608488e-01 4.00136441e-01 5.94307482e-01\\n6.80403365e-03 -5.27922750e-01 -5.05874276e-01 -3.82617712e-01\\n1.68281674e-01 -1.95326790e-01 1.81151554e-01 -2.26570442e-01\\n3.39323670e-01 9.37924609e-02 8.88840556e-02 2.86705792e-01\\n-8.22512209e-01 -1.72006756e-01 -1.92659363e-01 -9.49183777e-02\\n-2.64013886e-01 -1.40300304e-01 -2.73998439e-01 -6.98461831e-02\\n-1.64249465e-01 4.50373143e-01 -2.22838372e-02 1.79614216e-01\\n-1.08411901e-01 3.05310100e-01 -2.83141911e-01 3.74445319e-01\\n3.32952291e-02 1.67312905e-01 2.90169775e-01 2.65705824e-01\\n-2.53544450e-01 4.74345952e-01 1.57274678e-01 -1.45639285e-01\\n3.29319984e-01 5.36911115e-02 3.10047030e-01 -5.22075966e-02\\n1.88973412e-01 2.60992674e-03 -1.39244229e-01 3.07156801e-01\\n1.93166643e-01 -2.66058624e-01 3.64463665e-02 -7.60478303e-02\\n-1.01403445e-01 -1.07953670e-02 1.22589611e-01 2.98349351e-01\\n-2.28007272e-01 4.13742930e-01 1.84518278e-01 -8.47880393e-02\\n-8.66883397e-02 -5.66732526e-01 -7.30175525e-02 6.04260378e-02\\n3.08196321e-02 7.93479905e-02 2.25183934e-01 1.43796757e-01\\n2.70122051e-01 2.15441249e-02 4.94919457e-02 6.98111832e-01\\n-8.03366527e-02 3.87868695e-02 -1.39929891e-01 2.05394775e-01\\n1.28563978e-02 -3.10743481e-01 1.61426142e-02 2.55797058e-01\\n-2.30882335e-02 -4.53655832e-02 -1.79876089e-01 2.97518551e-01\\n-1.90598458e-01 -3.15790355e-01 -1.22904159e-01 1.09709717e-01\\n-3.16270851e-02 -4.62865561e-01 4.00723934e-01 -1.24293724e-02\\n1.03961326e-01 -1.45414859e-01 3.71823572e-02 -5.78674935e-02\\n-7.35857487e-02 3.70161772e-01 1.21126808e-01 7.76205286e-02\\n-7.68972114e-02 -1.88366055e-01 -2.69892991e-01 -7.61390403e-02\\n-1.79494992e-01 1.17062472e-01 -1.70260862e-01 -8.66223276e-02\\n2.90869802e-01 5.61691076e-02 -3.17482769e-01 3.85877490e-01\\n-7.67549053e-02 9.63283703e-02 -1.54928938e-01 2.41402209e-01\\n-6.92453161e-02 2.21187219e-01 -6.03424683e-02 -1.45085171e-01\\n6.93868697e-01 1.57940134e-01 1.65913001e-01 1.57189682e-01\\n2.67479330e-01 -3.85347567e-02 1.00015000e-01 1.63309187e-01\\n-7.18533397e-01 3.81083846e-01 -3.33274528e-02 4.40285131e-02\\n1.61134556e-01 -6.48487508e-02 1.06371924e-01 -2.51986593e-01\\n1.37952760e-01 -1.67187959e-01 -2.77618527e-01 -3.96366566e-01\\n-1.84161067e-01 7.13660941e-03 3.08128566e-01 -4.32311177e-01\\n-3.43261361e-02 2.30058372e-01 -4.86939520e-01 -7.81829804e-02\\n1.73818111e-01 1.03981994e-01 2.04886973e-01 1.22892439e-01\\n-1.00254014e-01 -3.69355470e-01 1.75242007e-01 -3.28738391e-01\\n-2.38565654e-01 6.00329451e-02 -2.66127437e-01 2.56380290e-01\\n-1.55227948e-02 6.44364133e-02 -8.82604942e-02 1.45240933e-01\\n-1.40094608e-01 -1.90227494e-01 1.49048775e-01 -1.04944524e-03\\n2.52858073e-01 7.68799931e-02 -4.22021270e-01 3.55969697e-01\\n-2.12167710e-01 5.98011076e-01 -3.45825665e-02 -8.26237321e-01\\n3.87494564e-01 2.65419304e-01 -4.72658873e-03 -3.45760405e-01\\n5.84303021e-01 -2.01670423e-01 1.16849318e-01 8.76247659e-02\\n-3.05694014e-01 -2.34583482e-01 3.18256259e-01 -2.00457200e-01\\n-2.56184906e-01 5.15115440e-01 1.53430626e-01 1.51340172e-01\\n3.49000632e-03 -6.69490993e-02 -7.49845058e-02 1.63927615e-01\\n-1.73049029e-02 -1.65882289e-01 -5.28407872e-01 -3.58102843e-02\\n-9.31794569e-02 -3.94680053e-01 -7.74748027e-02 -4.12597656e-01\\n-8.28688517e-02 -2.81269729e-01 -1.69281632e-01 3.86905447e-02\\n3.10910404e-01 1.47587895e-01 2.50898208e-03 6.48742542e-02\\n-1.48759842e-01 -6.74434602e-01 2.58094426e-02 1.37439147e-01\\n2.53613859e-01 1.87125444e-01 1.37402892e-01 -3.72642241e-02\\n-2.84953583e-02 6.46196485e-01 -2.63657033e-01 -1.42989471e-03\\n2.14734152e-01 2.03995213e-01 3.49928364e-02 -8.54707360e-02\\n2.73245629e-02 1.68852165e-01 -2.82093167e-01 1.37345418e-01\\n-8.54998827e-02 -2.03707125e-02 3.58599961e-01 -5.31007014e-02\\n-4.05755758e-01 -1.43557012e-01 -1.28240392e-01 9.67087895e-02\\n-4.30379659e-01 -1.85243621e-01 6.12233520e-01 2.01234952e-01\\n1.02975190e-01 2.15541184e-01 1.27522528e-01 6.77738786e-02\\n-1.73129767e-01 -2.89521486e-01 2.64053673e-01 3.73969898e-02\\n1.08565696e-01 7.86288306e-02 -3.72575298e-02 -7.19407976e-01\\n-3.34136796e+00 -9.56420004e-02 1.56800047e-01 -2.83602923e-01\\n1.50752053e-01 -1.63948178e-01 3.42537388e-02 -4.55816053e-02\\n-2.87655473e-01 7.02979192e-02 -1.54571459e-01 -1.59423023e-01\\n2.92138487e-01 2.76583076e-01 9.50954556e-02 1.96674570e-01\\n2.03978360e-01 -3.14332157e-01 -1.31275533e-02 3.41309875e-01\\n-3.01324934e-01 -6.67162061e-01 1.70391724e-01 -5.36948368e-02\\n3.00948471e-01 3.75938803e-01 -2.76414424e-01 -2.01152816e-01\\n-2.26076588e-01 -2.88199425e-01 6.11520782e-02 -1.21306323e-01\\n-6.20190315e-02 3.03485304e-01 1.26699939e-01 -1.03643075e-01\\n-3.39763332e-03 -4.56274778e-01 -1.99340209e-01 -4.97938812e-01\\n1.25745863e-01 -7.38937795e-01 -1.60817072e-01 -9.93724614e-02\\n6.32057369e-01 -1.71470538e-01 9.45303217e-02 2.79260650e-02\\n1.80141941e-01 1.20986484e-01 4.62707467e-02 3.69136781e-02\\n-2.83627540e-01 -9.89761204e-02 -6.91730306e-02 4.59738001e-02\\n5.44023216e-01 4.32071507e-01 -3.96562934e-01 -1.13213561e-01\\n8.51117000e-02 -2.41284281e-01 -3.47980320e-01 -1.45862788e-01\\n-1.65199324e-01 -1.86082542e-01 -6.73641026e-01 -3.98597032e-01\\n-2.50327736e-02 -1.12258479e-01 -9.89997759e-02 5.61696053e-01\\n-1.67348862e-01 -3.44960213e-01 -1.72775105e-01 -4.52582806e-01\\n1.96803153e-01 -9.40942243e-02 -9.58063379e-02 -2.29209393e-01\\n-1.62514374e-01 -1.97323620e-01 1.01230919e-01 1.37716848e-02\\n-6.12491369e-02 -2.38523275e-01 1.47896469e-01 -1.16656773e-01\\n-3.49870145e-01 -4.83314067e-01 3.80160123e-01 4.25772890e-02\\n3.20887893e-01 1.54549390e-01 1.92643002e-01 -8.89541674e-03\\n2.17909530e-01 -9.43683386e-02 1.14073887e-01 -3.48426133e-01\\n1.97960973e-01 9.58138406e-02 5.58415830e-01 -2.49107555e-01\\n3.33048515e-02 1.56832695e-01 -1.77858397e-01 -1.31916314e-01\\n2.40522772e-01 -5.64162582e-02 1.02877758e-01 -2.19308823e-01\\n3.01423907e-01 -4.65762913e-01 -2.07626998e-01 -4.33490276e-02\\n1.32642493e-01 6.83965862e-01 -6.24847822e-02 -1.94399163e-01\\n-1.11955047e-01 3.63513917e-01 -1.21220753e-01 -1.27095640e-01\\n-3.08714211e-01 8.76391605e-02 -1.77170560e-01 3.19404125e-01\\n8.13857093e-02 -9.44776684e-02 -1.53254941e-01 -7.97076523e-02\\n-2.09588155e-01 2.26398334e-01 2.00731978e-01 7.72258416e-02\\n3.76302600e-02 -3.30454677e-01 -1.53676778e-01 2.41966993e-01\\n2.19537541e-01 3.97563159e-01 6.48827553e-02 -2.09105939e-01\\n-5.66604920e-02 2.95738518e-01 -1.61289111e-01 1.84062928e-01\\n-2.21198246e-01 1.03478663e-01 -5.96313953e-01 -2.49287039e-01\\n-1.77678272e-01 -1.58353075e-01 1.01324439e-01 4.62234914e-01\\n1.19565278e-01 1.61144312e-03 -1.10707209e-01 -4.62905020e-01\\n1.21459328e-01 -8.59414786e-02 1.98052108e-01 -4.08110619e-02\\n-5.08223101e-02 5.20575821e-01 2.19136104e-02 -1.69921845e-01\\n-1.71282604e-01 1.09148599e-01 -2.54489094e-01 -7.39410445e-02\\n4.65569273e-02 -4.97110158e-01 -8.94262642e-02 3.69453669e-01\\n1.72569200e-01 -1.76930547e-01 -7.17700645e-02 2.85092652e-01\\n-4.09956351e-02 -3.06384653e-01 -2.67858565e-01 -4.15186677e-03\\n2.65071660e-01 -1.48911968e-01 3.40478152e-01 -4.34094608e-01\\n-2.79249847e-02 -5.59915639e-02 -6.97911829e-02 2.84871101e-01\\n1.54336886e-02 -1.65541675e-02 -2.77250204e-02 -1.06251270e-01\\n3.76342028e-01 -2.19735950e-01 -7.29244873e-02 1.90537632e-01\\n1.88147977e-01 -1.53027132e-01 -6.05810821e-01 -2.80591305e-02\\n-1.23907655e-01 -9.87903103e-02 -1.00216363e-02 7.26678371e-02\\n-3.40604931e-02 8.13342631e-02 -5.14082551e-01 -1.96522638e-01\\n-3.07126641e-01 -6.96683256e-03 7.43681639e-02 -4.99419987e-01\\n-2.50115961e-01 -2.49533970e-02 -5.06177962e-01 2.00890213e-01\\n-1.34367675e-01 -4.51769978e-02 1.83645889e-01 2.11655516e-02\\n-2.25460768e-01 -1.21001281e-01 9.48336199e-02 2.09167451e-01\\n-1.92813054e-01 -1.48190469e-01 -5.97960651e-02 -1.11043143e+00\\n6.84764236e-02 1.61726810e-02 -2.84956455e-01 -3.75660062e-02\\n2.94017419e-02 -6.59944773e-01 2.31133252e-01 -3.08595747e-01\\n-1.67358547e-01 1.29430015e-02 -2.69928902e-01 -3.88326049e-01\\n1.62187755e-01 -4.38269936e-02 -3.25591862e-01 2.93834567e-01\\n-2.16191262e-01 4.68618542e-01 -8.50015134e-02 5.32585718e-02\\n-4.37267721e-02 -2.64412135e-01 1.04664773e-01 -3.85986030e-01\\n-3.96685213e-01 -6.71595931e-02 -3.23081195e-01 -1.23782203e-01\\n-1.08896814e-01 -3.13710451e-01 -1.26017526e-01 1.78939346e-02\\n2.42861688e-01 1.40155643e-01 -4.83591519e-02 -1.28824726e-01\\n-6.17012307e-02 -6.19222879e-01 2.54223645e-02 -1.00025505e-01\\n-1.97199360e-02 -2.68218637e-01 3.63855541e-01 5.95049784e-02\\n1.11376986e-01 -3.60960335e-01 4.36872125e-01 -4.06386375e-01\\n-3.30877721e-01 -1.52034298e-01 1.14320189e-01 6.64194971e-02\\n2.90107518e-01 -5.06019413e-01 3.85881588e-02 3.87284756e-01\\n-1.50547057e-01 5.14175883e-03 4.07868564e-01 -1.16421424e-01\\n-1.30217969e-01 1.22561388e-01 -3.98503274e-01 1.08655922e-01\\n7.20093727e-01 1.98098853e-01 -3.57962400e-02 2.06900716e-01\\n3.60875912e-02 1.71833575e-01 4.60537851e-01 4.50354256e-02\\n-1.46604836e-01 1.93522319e-01 2.51940638e-02 -6.82711303e-01\\n-7.54247084e-02 2.57002935e-02 -1.60544753e-01 -3.98817956e-01\\n7.29457319e-01 3.68559927e-01 -3.41810316e-01 -2.82909095e-01\\n-1.63585171e-01 -8.92771259e-02 2.41130501e-01 -1.82656854e-01\\n1.76116183e-01 -1.47575215e-01 4.81769234e-01 -3.16919461e-02\\n3.09871614e-01 4.67903197e-01 -1.05709724e-01 -2.12711215e-01\\n-8.16512853e-02 2.47556657e-01 -4.14035320e-02 4.00542557e-01\\n-1.43828735e-01 1.85986996e-01 -9.79861361e-04 1.04085624e-01\\n-1.68252483e-01 -1.42302047e-02 -1.09707817e-01 2.30500758e-01\\n1.66635606e-02 1.59945503e-01 5.25302172e-01 3.77244264e-01\\n3.36716861e-01 3.62779140e-01 4.00120527e-01 9.30688083e-02\\n5.21131277e-01 4.05512154e-01 2.70837098e-01 4.07630485e-03\\n-2.87877787e-02 1.85326129e-01 1.87534615e-01 5.17853461e-02\\n4.29592341e-01 2.97687829e-01 4.01020534e-02 7.47164965e-01\\n1.67239785e-01 2.01802507e-01 5.99924564e-01 -5.59717357e-01\\n-3.12084705e-01 -1.83200315e-01 4.56246197e-01 -3.25096667e-01\\n8.02274272e-02 1.55370519e-01 -2.27411035e-02 1.58377796e-01\\n-5.77781320e-01 -3.45700741e-01 7.18094688e-03 2.19098538e-01\\n1.70403779e-01 -2.12279558e-01 -2.24467814e-01 1.46288633e-01\\n-1.08499773e-01 -7.79954866e-02 -4.59461302e-01 -2.46832848e-01\\n-1.91410437e-01 6.10161349e-02 -1.29413037e-02 -9.17117968e-02\\n-7.57745355e-02 -2.15769142e-01 2.83371899e-02 -2.97098863e-03\\n2.35817522e-01 -6.63258284e-02 -5.56613430e-02 -7.88358599e-03\\n3.92358601e-01 1.42654210e-01 5.28750241e-01 -7.89464414e-02\\n1.36065632e-01 -1.77556694e-01 -1.68134511e-01 1.10678226e-01\\n2.29738727e-01 -4.50308472e-02 7.24313082e-03 3.32892001e-01\\n-3.92644525e-01 -2.45694786e-01 1.50185935e-02 3.00235331e-01\\n-4.26147640e-01 1.97829287e-02 1.64892361e-01 2.24182501e-01\\n1.27021104e-01 1.41861603e-01 -3.23069245e-01 -7.26903602e-02\\n-1.27123058e-01 -3.49780619e-01 1.80713609e-01 6.65706396e-02\\n-2.80265152e-01 1.26035452e-01 3.80165875e-01 2.10281268e-01\\n-1.18383810e-01 5.12843914e-02 -2.08732858e-01 1.03002563e-01\\n1.93587616e-01 1.69337809e-01 -1.15071006e-01 -3.30473334e-01\\n-2.14798361e-01 2.10309163e-01 -1.20565638e-01 1.71763465e-01\\n4.52692956e-02 2.45327309e-01 6.02112189e-02 -4.87631448e-02\\n5.11050761e-01 -1.26617491e-01 -1.57686576e-01 -2.24531531e-01\\n-1.29754767e-01 -3.22528571e-01 -9.79791358e-02 -1.58760622e-01\\n2.87655175e-01 -4.37817842e-01 -4.03296165e-02 -3.55174094e-01\\n-2.03665599e-01 -3.12948078e-01 -2.16732752e-02 3.60090509e-02]]',\n", + " 'Position Overview We are building cutting-edge software to identify and analyze the exposure to climate change of publicly traded companies. Its our goal to alert investors of the climate risk profiles of companies and to tackle climate change at the roots. Our mission is a big one and were looking for talented people to join us. We are looking for a sharp, energetic and organized person with a positive attitude to extend our existing IT team. Carbon Delta is growing and changing at a fast pace, and as a member of our IT team, you will have a fast learning curve, and will discuss your best fit with the team. Scope of Responsibility configuration and addition of new software services,executing on big data management tasks,enhance and maintain our existing IT infrastructure e.g. for servers or storage,plan and schedule upgrades and maintenance of hardware and software,provide technical support to your co-workers,and develop system monitoring to verify the integrity and availability of all hardware, server resources, systems and key processes Specific Knowledge/Skills Linux and Windows systemsPython, Django, Nginx, Postgres, RedisKVM, Docker, AzureAnsible, git Desired Experience & Qualification Deeply enjoy technical IT challengesFast learnerFlexible to adapt to new challengesHave outstanding communication and interpersonal abilitiesLove to organize and coordinateAre multi-tasker and able to prioritizeHave good written and verbal communication skills in both English and German,Would like to join a dedicated, technically savvy and enthusiastic teamShould have a Swiss work permit Due to the great number of applications we receive for each of our open vacancies, we are unable to respond on an individual basis. To all recruitment agencies: MSCI does not accept unsolicited CVs/Resumes. Please do not forward CVs/Resumes to any MSCI employee, location or website. MSCI is not responsible for any fees related to unsolicited CVs/Resumes. MSCI Inc. is an equal opportunity employer committed to diversifying its workforce. It is the policy of the Firm to ensure equal employment opportunity without discrimination or harassment on the basis of race, color, religion, creed, age, sex, gender, gender identity, sexual orientation, national origin, citizenship, disability, marital and civil partnership/union status, pregnancy (including unlawful discrimination on the basis of a legally protected pregnancy/maternity leave), veteran status, or any other characteristic protected by law',\n", + " '[\"Verbal Communication Skills\", \"Adaptability\", \"Energetic\", \"Planning\", \"Scheduling\", \"Communications\", \"Integration\", \"Positive Mental Attitude\", \"Positivity\"]',\n", + " '[\"Disabilities\", \"Carbonation\", \"Knowledge Process Outsourcing\", \"Data Management\", \"Resource Management Systems\", \"Cardiac Risk Profile\", \"IT Infrastructure\", \"Linux\", \"Climate Change Mitigation\", \"Maintainability\", \"E (Programming Language)\", \"Nginx\", \"Executable\", \"Technical Support\", \"Django (Web Framework)\", \"Docker (Software)\", \"Process Specification\", \"Maternity\", \"Storages\", \"Equalization\", \"Personalization\", \"Big Data\", \"Systems Development\", \"Receivables\", \"Additives\", \"Git Flow\", \"Coloring\", \"Software Plus Services\", \"Patient Monitoring Systems\", \"Technical Savvy\"]',\n", + " \"['English', 'Yoruba', 'Moldovan', 'Albanian', 'Kikuyu']\"],\n", + " ['85',\n", + " 'data architect',\n", + " 'Gland',\n", + " '',\n", + " '',\n", + " '[[-2.26959467e-01 1.85585111e-01 5.45626521e-01 3.39563489e-02\\n6.05104625e-01 -1.55945927e-01 -5.37235290e-02 4.24137056e-01\\n-5.30420169e-02 -5.59546590e-01 -1.57581978e-02 -2.86776245e-01\\n-5.89047931e-02 9.32528079e-02 5.75805977e-02 2.80804247e-01\\n3.88394356e-01 1.43583134e-01 -9.13108140e-02 3.20280671e-01\\n5.94274700e-02 -1.31324381e-01 1.52759761e-01 7.03490376e-01\\n3.10784996e-01 -8.45882148e-02 -7.22268149e-02 5.77587634e-04\\n-2.45001525e-01 -1.74896002e-01 4.48014498e-01 -3.46912369e-02\\n-1.57767504e-01 -2.71948814e-01 8.71570483e-02 3.99834849e-02\\n-2.42521822e-01 -9.74186361e-02 -8.12924951e-02 1.48576885e-01\\n-4.59864229e-01 -1.95110619e-01 -3.96016799e-02 -5.01302406e-02\\n-3.24364960e-01 -3.57881427e-01 -3.16568501e-02 -2.28019431e-02\\n9.56756026e-02 8.54479074e-02 -5.36936462e-01 2.38055050e-01\\n-1.99533910e-01 -2.21855000e-01 2.34013036e-01 5.99914074e-01\\n-2.44867913e-02 -4.06157315e-01 -4.65729982e-01 -3.00640345e-01\\n1.24723166e-01 -1.22358456e-01 6.82379380e-02 -3.77022266e-01\\n3.32380861e-01 -4.05879021e-02 7.21967267e-03 2.54423797e-01\\n-7.77008295e-01 -4.93215546e-02 -2.31322765e-01 -5.22023030e-02\\n-3.57683539e-01 -6.64442480e-02 -3.12843800e-01 -1.17946438e-01\\n-1.10407673e-01 4.06963170e-01 7.18101263e-02 4.32074182e-02\\n-1.70039251e-01 2.63334036e-01 -3.27968091e-01 3.85194957e-01\\n1.93057135e-01 3.37805033e-01 2.32159615e-01 3.35622936e-01\\n-3.29601169e-01 4.71874207e-01 2.34640896e-01 -4.50010121e-01\\n3.10019374e-01 1.37526333e-01 3.99491757e-01 -4.38049585e-02\\n2.71545976e-01 9.92244780e-02 -2.90837228e-01 3.54413271e-01\\n2.94723004e-01 -3.33072484e-01 1.83103047e-02 -1.06500126e-01\\n5.83395213e-02 -4.96790968e-02 4.33552787e-02 2.60357320e-01\\n-3.44801664e-01 3.47575396e-01 5.78447022e-02 -2.11462051e-01\\n-1.71496123e-01 -3.47067535e-01 3.26017961e-02 1.16494820e-01\\n1.51388720e-02 1.90461129e-01 2.49866068e-01 1.05192959e-01\\n1.49268001e-01 1.29982442e-01 1.51803225e-01 8.51687312e-01\\n-8.68032500e-02 4.15343679e-02 -2.65343249e-01 3.88893545e-01\\n7.08726794e-02 -3.76771450e-01 1.20396271e-01 2.16989189e-01\\n5.10175601e-02 -1.58679336e-01 -1.41127795e-01 3.45115006e-01\\n2.40389984e-02 -1.14366800e-01 -2.55188614e-01 2.10665166e-01\\n-5.46168350e-02 -4.10077661e-01 7.07121968e-01 8.35343599e-02\\n1.55393839e-01 -1.27902791e-01 6.13957196e-02 -2.36900002e-01\\n-1.40697092e-01 2.70074844e-01 5.60046826e-03 2.39884168e-01\\n-3.12298775e-01 -2.64583856e-01 -1.81241050e-01 2.10325718e-01\\n-4.61188495e-01 4.53567877e-02 -4.94401902e-02 -8.25300142e-02\\n2.68959701e-01 7.40253776e-02 -2.56187797e-01 2.12850749e-01\\n-1.14951335e-01 -3.87190245e-02 -7.79033452e-03 2.76621759e-01\\n-2.04776049e-01 3.02411556e-01 2.49807052e-02 -7.02316761e-02\\n5.05224228e-01 1.69686064e-01 2.43805707e-01 -1.77225936e-02\\n3.24320078e-01 -1.16108671e-01 1.89941395e-02 1.23341739e-01\\n-6.79099321e-01 3.61986428e-01 -4.96737100e-02 -2.85153985e-01\\n8.32508653e-02 -1.20971110e-02 2.66953468e-01 -1.44139379e-01\\n4.12601754e-02 -2.23777562e-01 -2.75624454e-01 -3.58167648e-01\\n-1.31995499e-01 -9.53156501e-02 4.23225611e-01 -4.70424384e-01\\n-1.00450605e-01 2.67721057e-01 -5.02433300e-01 -9.89936143e-02\\n1.55907154e-01 2.53715187e-01 1.34184793e-01 8.81372988e-02\\n-1.40274107e-01 -4.55875278e-01 8.61041248e-02 -4.16475832e-01\\n-1.91778719e-01 9.50427353e-02 -2.87170172e-01 1.53199196e-01\\n4.96030971e-02 2.07985006e-02 -2.47636810e-03 1.23869956e-01\\n-2.04422146e-01 -8.67343098e-02 1.45801067e-01 5.86524643e-02\\n4.68432724e-01 -1.38773452e-02 -4.06342119e-01 5.09587109e-01\\n-2.20423728e-01 3.40664625e-01 1.99102491e-01 -9.58584666e-01\\n4.62812364e-01 2.41617903e-01 -5.22376038e-02 -3.77645195e-01\\n5.55359244e-01 -3.39550883e-01 -6.08056709e-02 8.15979093e-02\\n-3.78406376e-01 -2.32332528e-01 2.17163503e-01 -2.05676824e-01\\n-2.22324386e-01 4.81574208e-01 -6.59446418e-03 1.56902209e-01\\n2.46098310e-01 -2.17403084e-01 -7.20052719e-02 -8.23026896e-02\\n-2.23928094e-01 -2.56638527e-01 -5.83865523e-01 -2.83847600e-02\\n-1.19565770e-01 -4.77976650e-01 -8.72339830e-02 -4.06859905e-01\\n-1.44480139e-01 -3.08676720e-01 -1.34061366e-01 1.74950525e-01\\n2.72640109e-01 6.58057630e-02 -3.62581685e-02 -1.05888210e-02\\n-6.85257763e-02 -5.43224216e-01 -1.28565550e-01 1.04586363e-01\\n4.47411388e-01 2.00259328e-01 1.34049207e-01 -2.20327452e-03\\n1.40092060e-01 5.44225454e-01 -1.12721696e-01 -2.45586902e-01\\n1.35898918e-01 2.21717715e-01 -5.98804280e-02 -9.36221480e-02\\n1.20501041e-01 3.52077842e-01 -2.01258823e-01 -1.70007870e-02\\n5.04829288e-02 -5.85053004e-02 4.24077034e-01 -7.15166032e-02\\n-2.34046638e-01 -1.92782283e-01 -3.70404273e-02 1.17795125e-01\\n-5.40806174e-01 -2.15985298e-01 5.61462104e-01 2.01966360e-01\\n8.77510086e-02 1.50305018e-01 1.28643885e-01 5.30742556e-02\\n-2.04402238e-01 -1.72198206e-01 2.37726241e-01 -1.45782232e-02\\n1.33992821e-01 1.39474139e-01 3.03623006e-02 -4.82385933e-01\\n-3.65689182e+00 -2.17225552e-01 1.09935775e-01 -2.38370389e-01\\n1.57136500e-01 -1.90947667e-01 7.06102997e-02 -8.49857554e-03\\n-2.47175068e-01 6.77997321e-02 -1.75542355e-01 -1.04899883e-01\\n1.17573455e-01 2.20172614e-01 1.22330606e-01 2.83023328e-01\\n1.20821074e-01 -1.52050063e-01 9.81768966e-03 3.40487629e-01\\n-2.25600421e-01 -6.33613825e-01 2.34256834e-01 -5.10381758e-02\\n2.86565095e-01 2.20938817e-01 -4.87181395e-01 -7.05512986e-02\\n-2.80877680e-01 -1.46693781e-01 1.51599586e-01 -2.69574732e-01\\n-1.71713322e-01 2.51290262e-01 1.49916470e-01 -1.12803563e-01\\n1.67625010e-01 -3.31464112e-01 -1.86671674e-01 -3.63117993e-01\\n1.81667298e-01 -6.02525651e-01 -1.26378521e-01 -5.43828346e-02\\n7.10578203e-01 -4.08134937e-01 2.08737344e-01 -1.31398551e-02\\n1.15536131e-01 1.28852472e-01 1.71796665e-01 -2.02913769e-02\\n-3.15004736e-01 -2.87341446e-01 2.42213272e-02 -2.09831223e-01\\n5.88578224e-01 4.87223625e-01 -9.82524008e-02 2.44502313e-02\\n1.02758966e-03 -2.44175777e-01 -4.18914855e-01 -3.29705209e-01\\n-6.33451119e-02 -1.76176876e-01 -6.20183408e-01 -3.24209034e-01\\n-4.99209948e-02 -2.64289081e-01 -5.50799146e-02 5.51924348e-01\\n-1.96045786e-01 -3.79968762e-01 -1.11754462e-01 -4.98668551e-01\\n3.72878253e-01 -1.41630962e-01 2.97269784e-03 -1.97399944e-01\\n-2.46819228e-01 -3.88384044e-01 1.42496288e-01 4.05891947e-02\\n-8.61663744e-02 -1.84298337e-01 1.56764448e-01 -5.81060536e-02\\n-3.51182014e-01 -4.48128909e-01 4.42874402e-01 7.20234141e-02\\n2.92768091e-01 1.33885309e-01 4.37437177e-01 5.02319597e-02\\n2.86487073e-01 -6.64279908e-02 -1.13959849e-01 -3.96884859e-01\\n5.32958396e-02 -3.16987634e-02 3.55283201e-01 -1.75551221e-01\\n6.98002204e-02 5.57822771e-02 -1.49906099e-01 -9.76474062e-02\\n3.08081359e-01 -6.02369495e-02 1.18858688e-01 -9.25181359e-02\\n2.03153744e-01 -2.62320250e-01 -1.41195461e-01 1.08382568e-01\\n-1.77268554e-02 5.23164034e-01 -3.39981318e-02 -2.86376476e-01\\n-1.66751668e-01 4.34576571e-01 -3.64531353e-02 8.32443982e-02\\n-1.94131002e-01 6.28325716e-02 -2.59017110e-01 3.52153689e-01\\n-6.80536963e-04 -1.16850421e-01 -2.38515273e-01 -9.53974351e-02\\n-1.12213567e-01 2.34908730e-01 2.69449532e-01 1.15753710e-01\\n4.01595235e-02 -3.87199134e-01 -7.02132434e-02 1.97189733e-01\\n2.97677159e-01 5.41889608e-01 1.99013278e-01 -7.89970905e-02\\n-4.93506230e-02 4.03309882e-01 -2.76965439e-01 2.66108245e-01\\n-2.65887320e-01 1.91045523e-01 -5.63682318e-01 -2.36865044e-01\\n-2.36690074e-01 -3.68271440e-01 1.67935774e-01 3.08545589e-01\\n1.93632513e-01 -1.00110710e-01 4.32363227e-02 -3.41073126e-01\\n2.68774360e-01 6.20842427e-02 2.13986412e-01 1.46586746e-01\\n-3.91582400e-03 5.82137644e-01 -3.68144922e-02 -8.39338526e-02\\n-1.12781346e-01 8.07562247e-02 -7.35053718e-02 -2.67687708e-01\\n-7.56375268e-02 -5.92806935e-01 -1.73749655e-01 3.05922389e-01\\n1.30189747e-01 -2.51520574e-01 -2.17959076e-01 2.65842915e-01\\n-9.02624130e-02 -2.10742295e-01 -2.56337404e-01 1.78571213e-02\\n4.28334773e-01 2.28980392e-01 2.91158557e-01 -5.72223544e-01\\n-1.55284077e-01 1.30839691e-01 4.78042811e-02 4.45907384e-01\\n7.44125396e-02 7.10915551e-02 -3.42796110e-02 -2.19178855e-01\\n3.72113943e-01 -1.77247882e-01 -1.65002421e-01 -5.19655161e-02\\n2.80996580e-02 -2.03483969e-01 -4.19769347e-01 1.46650463e-01\\n2.77346633e-02 -2.31144071e-01 6.96433783e-02 9.21656042e-02\\n7.88364708e-02 4.91004102e-02 -5.40481448e-01 -2.46248275e-01\\n-3.21554363e-01 -2.04072092e-02 -5.00875711e-03 -4.72395480e-01\\n-3.75322253e-02 -1.52734537e-02 -5.10069489e-01 2.20498502e-01\\n-1.28554761e-01 -1.10466614e-01 1.07282341e-01 -5.97559325e-02\\n-2.43912935e-01 -6.25356659e-02 1.34809464e-01 2.23447397e-01\\n-2.06007928e-01 -3.22677940e-01 5.07332273e-02 -1.00123668e+00\\n1.44783586e-01 9.66250226e-02 -1.91126361e-01 1.35203421e-01\\n-3.81120294e-02 -5.88949323e-01 1.32115394e-01 -3.33227515e-01\\n-9.02548656e-02 -9.64929610e-02 -2.40156412e-01 -4.53762531e-01\\n8.33714530e-02 5.61530553e-02 -3.36240113e-01 4.28298205e-01\\n-3.44702005e-01 3.84987772e-01 -1.61926836e-01 7.36631304e-02\\n9.26335230e-02 -2.30298609e-01 1.69032454e-01 -3.48049641e-01\\n-3.99106920e-01 -2.09772050e-01 -3.50904882e-01 -3.46295357e-01\\n-8.42668116e-02 -3.91998768e-01 -1.12279184e-01 9.68847424e-04\\n3.35234165e-01 8.36318508e-02 -2.15749770e-01 -2.41622031e-01\\n5.25874607e-02 -3.99399281e-01 2.95056961e-02 -3.45171094e-02\\n-8.57998729e-02 -1.51747674e-01 1.91959172e-01 9.96999443e-02\\n7.15580508e-02 -3.75161916e-01 3.54967535e-01 -2.21317112e-01\\n-3.22383642e-01 -1.24641150e-01 3.58742252e-02 1.13703668e-01\\n3.58011186e-01 -4.26163673e-01 7.49724656e-02 3.52810919e-01\\n2.33830839e-01 9.98689085e-02 1.50147974e-01 -6.65601939e-02\\n-2.86589116e-02 3.04174989e-01 -2.65399963e-01 9.18338373e-02\\n7.84099877e-01 5.02346978e-02 1.82636559e-01 2.08582029e-01\\n1.87070444e-01 2.78064281e-01 3.06016326e-01 6.57563098e-03\\n-1.64317906e-01 3.11114967e-01 1.01092279e-01 -4.95650530e-01\\n7.01944903e-02 -1.41385078e-01 -1.98138103e-01 -3.55826914e-01\\n5.55670381e-01 3.98149759e-01 -4.25234318e-01 -1.87287197e-01\\n-1.47492185e-01 -1.82940811e-01 2.04250246e-01 -5.55424280e-02\\n-1.20563135e-02 -1.55506834e-01 4.03699040e-01 -9.39343348e-02\\n2.61003941e-01 5.06759882e-01 -2.01805353e-01 -2.68972486e-01\\n-1.03064932e-01 2.07742110e-01 8.78320858e-02 5.27607977e-01\\n-2.54912138e-01 3.26455057e-01 -7.58094043e-02 1.86837345e-01\\n-6.29956573e-02 9.34925973e-02 1.43880859e-01 8.85814428e-02\\n2.14524508e-01 1.00339368e-01 3.98836315e-01 4.06579167e-01\\n2.28397071e-01 4.06621933e-01 3.96598727e-01 4.66578752e-02\\n4.17634130e-01 5.18793702e-01 3.49751592e-01 1.24530487e-01\\n-9.08402801e-02 -2.97809243e-02 5.72429337e-02 -4.50264663e-03\\n2.17811584e-01 3.59422326e-01 1.37136616e-02 8.76299500e-01\\n4.04174507e-01 2.33507425e-01 7.47595668e-01 -5.62973619e-01\\n-3.03399324e-01 -3.23097780e-02 3.85947108e-01 -4.07934129e-01\\n-1.84307061e-02 9.77430567e-02 -1.96492076e-01 2.59549141e-01\\n-4.22770113e-01 -2.09420741e-01 -1.02139488e-01 1.70546651e-01\\n-1.55957527e-02 -1.97322205e-01 -2.15798482e-01 6.36097342e-02\\n-2.56009828e-02 -5.54470718e-02 -4.01049674e-01 -4.74738628e-02\\n-2.12462202e-01 -1.38401136e-01 -1.45880237e-01 -3.37801129e-02\\n-8.19974095e-02 -3.22862178e-01 -1.26683861e-01 -4.94351313e-02\\n2.98602998e-01 -1.18570000e-01 -3.51657867e-02 -1.61988229e-01\\n2.83176750e-01 1.98692352e-01 4.86365736e-01 1.10180810e-01\\n1.54946446e-01 -2.28791982e-01 -1.31068513e-01 6.48721606e-02\\n1.57221943e-01 7.41381347e-02 -1.05674397e-02 2.51281559e-01\\n-2.80478984e-01 -1.35317326e-01 4.80526984e-02 2.82038152e-01\\n-4.19973850e-01 8.47353414e-03 -2.25774050e-02 1.27559304e-01\\n4.95847724e-02 1.69391736e-01 -1.79412141e-01 -1.79095082e-02\\n-1.91139311e-01 -4.60211992e-01 2.95223236e-01 -1.50710762e-01\\n-6.59837574e-02 -5.96475117e-02 1.71879962e-01 1.85563564e-01\\n-2.31385738e-01 4.06700931e-02 -3.94193456e-02 1.61757693e-01\\n3.00249681e-02 2.38011852e-01 -1.86747342e-01 -2.63392091e-01\\n-3.38201970e-01 1.50394648e-01 -1.37869179e-01 1.05552524e-01\\n1.92314945e-02 3.33986282e-01 6.93315417e-02 6.29573390e-02\\n2.74678260e-01 -3.27123329e-02 -1.88454747e-01 -2.37737119e-01\\n-2.23285139e-01 -1.92054898e-01 1.35266525e-03 -1.05301365e-01\\n2.26198196e-01 -3.87380958e-01 -7.66208619e-02 -1.71389416e-01\\n-4.70124483e-02 -3.42719615e-01 7.48951584e-02 -1.58928663e-01]]',\n", + " 'We are looking for talents... We are expanding our Data Intelligence Practice in Gland and Zurich and we are looking for dynamic and passionate Data Architects with experience in Large-scale transformation, mass migrations, complex application architectures, multi-cloud Data Lakes, Artificial Intelligence, Data Science and Big Data to name a few. We will be starting very soon our interviews so if you want to be part of our successful story of growth, apply now! Your background: Master Degree in Computer Science or another technical field. 5-10 years in a Data Architect role. Experience as a hands-on technical practitioner/specialist in client facing roles in large enterprises. Demonstrated client facing consulting skills, including building strong client relationships. Excellent verbal, presentation and written communications skills. Strong team skills including the ability to lead and be a team player. Knowledge on Datawarehouse and Big-Data architecture. Knowledge in Advanced Analytics Azure ML, ML Server, BOT framework, Cognitive Services, Azure Databricks, as well as, PowerBI. Learn, learn, and learn by staying up-to-date on all technical developments related to Data Intelligence and Cloud. Fluent English and/or French CH/EU citizenship required What you will do... Are you looking to work with innovative technologies, challenging projects and to join a team of passionate people? Then OSB is where you belong. You will… Architecting and implementing big data solutions that meet customer needs for scalability, reliability, security and performance;; Creating functional design specifications, implementing solutions, and assisting with other project deliverables as required. Keeping abreast of emerging Cloud technology trends and their impact on Cloud solutions.. Why OSB is for you... One Step Beyond is one of the fastest-growing start-up companies in Switzerland. In less than 2 years we have passed the 40 OSBers with an ambition to grow locally and internationally. We are a Native Cloud Consulting company helping organizations embrace Cloud technology that includes Microsoft, AWS, Google, etc. The cloud journey at OSB starts with the Cloud Strategy to then move to the execution that usually covers topics like Modern Workplace, Artificial Intelligence, Machine Learning, SaaS solutions or Blockchain most often multi-cloud. Our approach is to be technology agnostic to always try to find the best solutions comparing various technologies and approaches. We invest part of our time in “Beyond the Cloud” initiatives where our team investigates emerging technologies. Are you looking to grow your career in the Consulting business with the opportunity to work for large organizations but always staying ahead of new technologies? Then let’s discuss as at OSB we are not \"just the usual consulting company\".',\n", + " '[\"Investigation\", \"Reliability\", \"Presentations\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Blockchain\", \"Computer Science\", \"Analytics\", \"Machine Learning\", \"Functional Design\", \"Scale (Map)\", \"Intelligence Data Handling\", \"Azure Cognitive Services\", \"Design Specifications\", \"Executable\", \"Microsoft Modern Workplace\", \"Localization\", \"Investments\", \"Applications Architecture\", \"Data Science\", \"Service Delivery Framework\", \"Artificial Intelligence\", \"Scalability\", \"Learning With Errors\", \"Big Data\", \"Azure Databricks\", \"Transformation (Genetics)\", \"Data Lakes\", \"Emerging Technologies\", \"Cloud-Native Architecture\", \"Cloud Technologies\"]',\n", + " \"['English', 'Vietnamese', 'Uzbek', 'Herero']\"],\n", + " ['105',\n", + " 'backend engineer (golang) (m/f)',\n", + " 'Zürich',\n", + " 'Internet',\n", + " 'www.smallpdf.com',\n", + " '[[-6.82032555e-02 2.19999552e-01 5.21439850e-01 -8.65903124e-02\\n4.72986251e-01 -2.35543504e-01 7.40684429e-03 3.84785414e-01\\n-9.16572586e-02 -4.33151186e-01 -2.31015608e-02 -4.25794780e-01\\n-7.40003288e-02 1.29385337e-01 -1.59085337e-02 3.18082511e-01\\n3.01796824e-01 1.12471402e-01 -2.60325581e-01 3.60066533e-01\\n2.34320998e-01 -5.44881001e-02 1.32510543e-01 7.39464581e-01\\n3.99427980e-01 -5.11745885e-02 -3.47075947e-02 -4.86372150e-02\\n-2.00322583e-01 -2.03341410e-01 4.41235721e-01 -2.91730203e-02\\n1.89792421e-02 -3.88810039e-01 1.20231621e-01 2.30424255e-02\\n-2.14019522e-01 -2.01827943e-01 -1.86246149e-02 2.85180360e-01\\n-4.09456432e-01 -2.63451844e-01 5.00774086e-02 -1.30556887e-02\\n-2.36729369e-01 -3.60389054e-01 9.28594247e-02 -3.36944312e-02\\n2.04566091e-01 6.44522011e-02 -4.41068619e-01 3.33315253e-01\\n-1.89480767e-01 -9.32106376e-02 3.39069217e-01 6.02033019e-01\\n-6.27382323e-02 -4.49664921e-01 -5.92020512e-01 -2.52273738e-01\\n2.74442099e-02 -8.94681364e-02 -5.12706973e-02 -3.45091015e-01\\n2.10953236e-01 8.69945064e-02 4.17328030e-02 4.15648580e-01\\n-7.45295405e-01 -1.01955377e-01 -1.28648281e-01 -1.67734891e-01\\n-3.34729582e-01 -1.22126535e-01 -1.27409026e-01 -8.46048892e-02\\n-1.79331273e-01 4.84157443e-01 2.21155271e-01 -3.54076619e-03\\n-2.13394508e-01 3.47287118e-01 -2.61354327e-01 3.80707920e-01\\n2.94055611e-01 9.92921889e-02 1.20371237e-01 2.97873318e-01\\n-4.04980421e-01 4.17991221e-01 2.39948422e-01 -3.53601456e-01\\n3.12452763e-01 9.02904794e-02 5.69881439e-01 -3.87384519e-02\\n1.00608226e-02 1.20079368e-01 -2.64361441e-01 3.58135790e-01\\n3.53445411e-01 -1.80391937e-01 6.01425245e-02 -9.68503021e-03\\n3.11035546e-03 -5.72640337e-02 1.39548540e-01 2.93708563e-01\\n-2.26172045e-01 4.57688302e-01 1.82593569e-01 -2.22622722e-01\\n-2.13219091e-01 -5.02295911e-01 -6.35024682e-02 -1.09330252e-01\\n9.16810706e-02 8.88086259e-02 2.87648469e-01 9.46028605e-02\\n1.53541446e-01 -4.63129729e-02 1.93849877e-01 8.99928749e-01\\n-8.62501636e-02 -3.11325025e-02 -3.34946662e-01 3.14263940e-01\\n7.91077688e-02 -2.47264653e-01 2.66701043e-01 2.34146401e-01\\n1.44409994e-02 -1.66711435e-01 -2.16718450e-01 3.47822666e-01\\n-9.26150158e-02 -2.09399983e-01 -3.17319870e-01 1.64231107e-01\\n-1.11368522e-01 -2.01005191e-01 4.90044355e-01 2.20915899e-01\\n1.19359367e-01 1.88962016e-02 -7.03376532e-02 -2.10913554e-01\\n-1.66466802e-01 1.20420337e-01 2.90143839e-03 9.31987241e-02\\n-2.98627317e-01 -1.98113874e-01 -2.12766320e-01 1.93617955e-01\\n-2.85072297e-01 3.64289768e-02 -3.22600119e-02 -7.49293342e-02\\n3.24392736e-01 2.83166356e-02 -2.76673794e-01 2.57301539e-01\\n7.31909834e-03 7.90333897e-02 -4.77185696e-02 3.23268801e-01\\n-1.91725507e-01 1.67315349e-01 -2.61430740e-02 -8.92599821e-02\\n6.38113976e-01 1.75565317e-01 1.10356361e-01 5.89940101e-02\\n3.02765757e-01 -1.15985081e-01 1.37043327e-01 1.62356615e-01\\n-6.17488921e-01 3.23068351e-01 -4.16052900e-02 6.24674633e-02\\n9.42560732e-02 -5.43147996e-02 2.45221615e-01 -2.48047248e-01\\n1.19298100e-01 -1.18207417e-01 -3.84562373e-01 -3.20205480e-01\\n-1.05742231e-01 -7.73098832e-03 3.62723082e-01 -4.11645085e-01\\n-2.12827474e-01 2.01173097e-01 -4.61825788e-01 -6.27744421e-02\\n2.00477794e-01 1.92224294e-01 2.11903661e-01 1.43459037e-01\\n-2.62146413e-01 -4.76770997e-01 4.39092554e-02 -4.05939907e-01\\n-3.21332365e-01 3.51062305e-02 -3.25956047e-01 2.78232753e-01\\n9.74083543e-02 9.37658846e-02 -2.51090795e-01 1.73802257e-01\\n-1.70116574e-01 -8.64340886e-02 1.43545985e-01 9.98924002e-02\\n1.55501008e-01 5.96730150e-02 -4.79867011e-01 4.11087543e-01\\n-2.66302675e-01 5.32961071e-01 1.52257875e-01 -8.97100866e-01\\n4.59340006e-01 3.57138664e-01 -1.37560681e-01 -4.03719008e-01\\n5.09573817e-01 -3.50793332e-01 2.81120576e-02 9.32338387e-02\\n-2.98390508e-01 -3.30598831e-01 3.00451487e-01 -2.05480903e-01\\n-1.92368984e-01 4.58151966e-01 1.28391430e-01 1.33520454e-01\\n2.28824154e-01 -1.63856074e-01 -1.25675455e-01 2.50187237e-02\\n-6.58833981e-02 -2.12137535e-01 -4.46765631e-01 -5.42763658e-02\\n-9.71166790e-02 -4.75988746e-01 -2.82302424e-02 -5.36061049e-01\\n-2.39875346e-01 -3.58321071e-01 -1.87064454e-01 2.16319442e-01\\n3.26180160e-01 6.87868223e-02 -1.97866876e-02 4.20669951e-02\\n-2.29415476e-01 -5.39133072e-01 6.25130311e-02 1.92208380e-01\\n4.34868574e-01 2.15212211e-01 1.40968421e-02 2.32712533e-02\\n-8.86682421e-03 6.44919991e-01 -1.38846621e-01 -6.39252365e-02\\n5.59994541e-02 2.64627993e-01 1.09364986e-01 -1.73465714e-01\\n1.36381658e-02 3.66092741e-01 -1.57746226e-01 2.84510292e-02\\n-1.27393473e-02 -1.62359774e-01 3.91579837e-01 1.17934629e-01\\n-3.65199566e-01 -2.12041914e-01 -6.62797242e-02 1.03315771e-01\\n-4.84792948e-01 -1.58757120e-01 5.81823766e-01 1.62003487e-01\\n1.71120912e-01 9.83198062e-02 2.72095263e-01 -5.31134382e-02\\n-2.52521425e-01 -2.42397144e-01 1.96158901e-01 1.21800289e-01\\n1.08961776e-01 1.27080008e-01 -7.05470666e-02 -7.40553677e-01\\n-3.07847953e+00 -1.09116621e-01 9.88526419e-02 -2.56575227e-01\\n1.79191362e-02 -1.83744490e-01 5.03624491e-02 -1.16608426e-01\\n-3.31931204e-01 5.00684939e-02 -1.12848766e-01 -8.08660462e-02\\n2.43242070e-01 1.74921721e-01 9.79962349e-02 2.50185311e-01\\n1.61074340e-01 -1.28338590e-01 -1.03262559e-01 1.70068681e-01\\n-2.43117914e-01 -5.70012867e-01 2.77679235e-01 -6.34934828e-02\\n3.49923402e-01 2.10566640e-01 -2.61619568e-01 -2.04979137e-01\\n-2.66928703e-01 -1.40063554e-01 2.07070634e-02 -2.39513516e-01\\n-7.90130049e-02 1.89604640e-01 1.56907454e-01 -1.46349743e-01\\n2.13425949e-01 -5.10275185e-01 -2.21925884e-01 -4.60793465e-01\\n6.97765723e-02 -7.50240743e-01 2.84209680e-02 -1.69591561e-01\\n7.51741588e-01 -4.03304458e-01 1.01026423e-01 -6.75505539e-03\\n2.15165064e-01 1.46826237e-01 1.41149595e-01 -1.61519963e-02\\n-1.75067648e-01 -2.41486207e-01 -1.34317741e-01 -1.63520262e-01\\n5.82599819e-01 6.72258794e-01 -1.32189035e-01 -6.45605028e-02\\n5.71728731e-03 -2.31515363e-01 -4.86215293e-01 -3.02039891e-01\\n-1.78164691e-01 -3.20030123e-01 -5.86721599e-01 -4.60395306e-01\\n-1.91461205e-01 -9.71381366e-03 -1.85374171e-01 7.16153085e-01\\n-2.29291037e-01 -3.31873089e-01 -7.08615482e-02 -5.10424018e-01\\n1.88157201e-01 -1.60421506e-01 3.34258704e-03 -8.06323588e-02\\n-3.14345866e-01 -4.13969964e-01 -9.81163606e-03 -1.56712368e-01\\n-1.70607477e-01 -4.33450222e-01 4.63282950e-02 -1.17674150e-01\\n-1.88001826e-01 -3.87843668e-01 3.80222797e-01 1.37875184e-01\\n2.94017315e-01 1.01558290e-01 3.55299592e-01 8.37367177e-02\\n2.52137244e-01 -1.77723423e-01 8.57793018e-02 -3.47265303e-01\\n2.07226560e-01 8.39322656e-02 6.13395214e-01 -2.57877231e-01\\n1.18808098e-01 4.21733446e-02 -2.97924995e-01 -8.11859407e-03\\n3.38425636e-01 1.94550268e-02 -8.84827750e-04 -2.32841775e-01\\n3.21706682e-01 -3.61155778e-01 -2.35404342e-01 -5.31986617e-02\\n2.68400222e-01 5.66987872e-01 -6.57440424e-02 -4.91257787e-01\\n-2.09834471e-01 4.24164623e-01 -4.23381254e-02 -3.14639449e-01\\n-1.80289850e-01 1.84377864e-01 -2.35643446e-01 1.70463458e-01\\n8.94050896e-02 -1.01788253e-01 -3.50004077e-01 -1.20688811e-01\\n1.95211153e-02 3.50617796e-01 2.14891553e-01 1.53533742e-01\\n5.11903092e-02 -5.10393500e-01 -4.25917543e-02 2.33422175e-01\\n1.15577810e-01 2.61234850e-01 1.65176049e-01 -1.96823210e-01\\n6.84050545e-02 3.73435110e-01 -1.88080102e-01 1.49944514e-01\\n-2.66280890e-01 8.25849026e-02 -5.24332166e-01 -3.46135020e-01\\n-2.70655215e-01 -3.57893318e-01 1.43268421e-01 3.16217750e-01\\n7.76838064e-02 -4.20921072e-02 7.40121976e-02 -4.34999913e-01\\n3.07942837e-01 -8.06798190e-02 1.69359490e-01 1.68700665e-01\\n2.67784484e-02 5.21999002e-01 1.04577161e-01 -1.66247487e-01\\n-1.37557924e-01 -5.70035679e-03 -1.85115889e-01 -1.35672003e-01\\n-1.18726641e-01 -3.59902143e-01 -1.66541293e-01 5.02412260e-01\\n1.02719806e-01 -2.10290045e-01 -9.72216576e-02 3.30030441e-01\\n-9.15254056e-02 -1.64582148e-01 -1.46854043e-01 -6.29026890e-02\\n3.04071218e-01 7.43821822e-03 3.10952842e-01 -4.15836126e-01\\n2.65534036e-02 8.17134976e-02 -1.34243116e-01 6.08855069e-01\\n1.58943925e-02 -5.17104380e-03 -1.12391636e-01 -2.34387696e-01\\n5.52568734e-01 -6.03970438e-02 -2.01960038e-02 6.17537908e-02\\n2.81645358e-03 -1.80006295e-01 -5.40690184e-01 1.04682334e-01\\n2.20858399e-02 -1.71147481e-01 7.60659277e-02 1.70295969e-01\\n1.63231090e-01 9.96183604e-02 -5.91966391e-01 -2.68716484e-01\\n-3.20793360e-01 1.56783201e-02 -7.10053975e-03 -4.77407902e-01\\n2.35627592e-03 -1.37902170e-01 -5.27522445e-01 2.96274722e-01\\n-2.95964777e-01 -4.94314842e-02 1.44860238e-01 -5.40893897e-02\\n-2.53601521e-01 -7.32333586e-02 1.45605281e-01 2.47943044e-01\\n-2.38115847e-01 -3.21477175e-01 2.04330504e-01 -8.63952756e-01\\n2.08730221e-01 -1.47906775e-02 -1.46130264e-01 1.97695911e-01\\n-1.18184481e-02 -8.23263884e-01 1.32568851e-01 -2.93051422e-01\\n-4.22562622e-02 -6.23918278e-03 -2.18303502e-01 -4.85000789e-01\\n1.28850728e-01 -2.53590830e-02 -3.00814331e-01 2.90901273e-01\\n-3.51346523e-01 3.44051003e-01 -8.71331543e-02 1.14377305e-01\\n1.98345006e-01 -3.14744562e-01 6.77873269e-02 -5.32747030e-01\\n-5.12402475e-01 -1.82805896e-01 -2.85969526e-01 -2.92676061e-01\\n-3.90335172e-02 -1.84295490e-01 -9.36451331e-02 9.10610780e-02\\n4.02367949e-01 1.38348371e-01 -9.10672545e-02 -2.03523263e-01\\n2.87485439e-02 -5.36540627e-01 1.07771978e-01 -6.46100705e-03\\n-6.75484166e-02 -1.86345518e-01 1.58216864e-01 1.52590394e-01\\n1.92342065e-02 -3.89373332e-01 4.47525471e-01 -3.36055517e-01\\n-3.06542337e-01 -1.19537666e-01 1.78256687e-02 -3.46176960e-02\\n3.64082903e-01 -3.33361179e-01 7.68999616e-03 3.24659348e-01\\n1.82376295e-01 1.02678753e-01 2.28069574e-01 -6.53140545e-02\\n-1.05443913e-02 2.92872757e-01 -3.81840914e-01 1.12644963e-01\\n7.42448092e-01 -8.01041350e-03 1.10970475e-01 2.11962327e-01\\n6.76054284e-02 1.22932836e-01 4.86337006e-01 3.30054834e-02\\n-1.85769483e-01 2.69394815e-01 1.12656891e-01 -5.00322938e-01\\n-1.55087322e-01 -8.07639863e-03 -2.73795933e-01 -5.33170879e-01\\n5.66396475e-01 4.94188815e-01 -4.00233388e-01 -2.46146366e-01\\n-2.44201228e-01 -1.09952681e-01 4.06706855e-02 -5.01048602e-02\\n9.35924426e-02 -1.25580966e-01 4.47326034e-01 -4.73805405e-02\\n2.06277996e-01 4.93438303e-01 -1.65537417e-01 -3.52472901e-01\\n-1.32159770e-01 1.13935180e-01 2.62330435e-02 3.80014896e-01\\n-2.54371583e-01 3.77615213e-01 -2.81185210e-02 1.26704231e-01\\n-2.23418325e-01 1.35742560e-01 -2.69087404e-02 -6.52380213e-02\\n1.02817580e-01 6.96604177e-02 3.81392032e-01 4.79319036e-01\\n4.31528658e-01 4.12011534e-01 1.67002037e-01 -3.28439064e-02\\n6.10129833e-01 6.45244539e-01 3.88135046e-01 1.86308905e-01\\n-1.14976302e-01 4.23002690e-02 2.63863392e-02 -2.77687572e-02\\n3.70263577e-01 2.62478769e-01 1.44107118e-02 9.02565718e-01\\n4.00827587e-01 2.10702986e-01 4.35235232e-01 -5.40422022e-01\\n-2.79992908e-01 1.05556352e-02 4.99967575e-01 -4.24879134e-01\\n-1.14769138e-01 3.17645296e-02 -1.45947084e-01 1.13110274e-01\\n-3.70484859e-01 -2.17822924e-01 -3.51154208e-02 1.42038256e-01\\n-1.95038714e-03 -1.89433366e-01 -1.85011044e-01 3.93977724e-02\\n-2.08753720e-01 -1.40075684e-01 -4.71393257e-01 5.79361171e-02\\n-2.03131244e-01 -9.65416059e-02 -5.88907339e-02 -1.73853964e-01\\n-7.35427141e-02 -3.98241252e-01 -7.25910217e-02 -1.24516092e-01\\n2.12491721e-01 -2.14646846e-01 -7.43422583e-02 -2.59087414e-01\\n1.45040169e-01 1.89346939e-01 6.06501043e-01 1.30218625e-01\\n1.22446246e-01 -4.38830435e-01 -2.54959136e-01 1.37799591e-01\\n1.90084592e-01 1.58819690e-01 5.61140068e-02 2.59092838e-01\\n-2.48959899e-01 7.54178315e-02 1.40985519e-01 4.06763732e-01\\n-4.35636669e-01 1.10753790e-01 -1.89146280e-01 1.37781516e-01\\n2.08423316e-01 1.76207513e-01 -2.59276539e-01 1.01416551e-01\\n-2.16352284e-01 -4.27206516e-01 3.29995722e-01 -6.51073530e-02\\n-1.38386257e-03 1.95122156e-02 1.36364475e-01 8.45823362e-02\\n-2.37990469e-01 -3.51820476e-02 -1.37472332e-01 2.64489800e-01\\n1.65760919e-01 2.79269964e-01 -3.20247293e-01 -2.16819599e-01\\n-1.63795575e-01 2.19370767e-01 -9.74259451e-02 2.18969677e-02\\n3.88430431e-02 3.54745865e-01 -1.94028355e-02 3.52453962e-02\\n5.13705373e-01 3.70805264e-02 -1.98480785e-01 -1.58425108e-01\\n-2.10410401e-01 -3.66583377e-01 2.40572859e-02 -4.36119772e-02\\n1.82070062e-01 -4.18408841e-01 4.62703109e-02 -5.09650782e-02\\n-2.12733611e-01 -3.19931179e-01 -2.20053811e-02 -1.28458858e-01]]',\n", + " 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 25 million users worldwide work with documents. We love open-source and using the latest technologies to scale our distributed application to process millions of files every day. As a backend engineer at Smallpdf, you will not only contribute to our backend but also to our infrastructure and tooling. You will work in a cross-functional development team that includes experienced frontend engineers and designers. Our Backend Stack: Golang AWS Docker Ansible Terraform Full stack on Stackshare Responsibilities: Develop new features for Smallpdf Manage and automate our infrastructure that spans across more than 100 machines Analyze and monitor our application to spot problems Help designing our architecture Requirements Golang Experience Work independently and take responsibility and ownership of your work Ability to quickly learn new technologies 5+ years of experience with software development Good programming skills Good knowledge of linux Fluent in English (German is useful but not necessary) Full-time position Permanently based in Zurich (or willing to move) Swiss or EU passport holder (or other permit that allows you to work in Switzerland) Nice to Have: Experience with DevOps tools such as Docker Ansible Terraform Experience scaling (micro-) webservices to millions of users Experience with AWS Benefits The chance to personally impact a successful & rapidly growing startup Tricky challenges scaling a high-traffic web application Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich Do you like the job please apply here: https://apply.workable.com/smallpdf/j/A136D70A95/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " '[\"Infrastructure\", \"Positivity\", \"Management\"]',\n", + " '[\"Web Applications\", \"Automation\", \"Tooling\", \"Nice (Unix Utility)\", \"Programming (Music)\", \"Scale (Map)\", \"Component Object Model (COM)\", \"Linux\", \"Machining\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Terraform\", \"Cross-Functional Coordination\", \"Personalization\", \"Web Traffic\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Software Development\", \"Ansible\", \"User Experience\", \"Custom Backend\", \"DevOps\"]',\n", + " \"['English']\"],\n", + " ['114',\n", + " 'internship aircraft data analytics (all genders)',\n", + " 'Zürich',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-2.29393035e-01 4.43029404e-01 4.40452278e-01 -3.24731357e-02\\n5.66313446e-01 -2.51350254e-02 1.98204517e-02 3.56611371e-01\\n1.22777298e-02 -4.18628752e-01 -1.67430475e-01 -2.36365825e-01\\n4.61913869e-02 -1.03002936e-02 1.74019262e-02 4.89437640e-01\\n3.65228653e-01 -6.94839749e-04 -1.41856313e-01 2.21579075e-01\\n1.07669577e-01 -8.39660168e-02 1.62159696e-01 6.96217299e-01\\n3.76103342e-01 -5.83171099e-03 -1.19225569e-02 1.18672609e-01\\n-2.84578562e-01 -2.36485869e-01 5.12948513e-01 4.07894328e-02\\n-1.26270741e-01 -2.03395501e-01 3.53922844e-02 6.34845570e-02\\n-1.38543606e-01 -8.03156048e-02 5.63103370e-02 1.46765530e-01\\n-3.75764310e-01 -1.16942674e-01 -9.34441313e-02 -1.93723798e-01\\n-3.94001275e-01 -2.99275279e-01 8.43582377e-02 -6.55816421e-02\\n1.85964540e-01 4.61608246e-02 -4.08803135e-01 3.22566748e-01\\n-2.55718797e-01 -1.38752967e-01 3.26327324e-01 6.61779642e-01\\n-4.03964370e-02 -3.95619452e-01 -5.10525048e-01 -2.28281885e-01\\n2.24869698e-01 -5.89729026e-02 8.73775333e-02 -1.93906263e-01\\n4.16299105e-01 9.67942178e-02 -1.50183961e-03 3.07482094e-01\\n-6.50212049e-01 -8.64637792e-02 -2.83396393e-01 2.42916346e-02\\n-3.07074428e-01 -2.75676418e-02 -2.27262273e-01 -2.91129172e-01\\n-7.15790614e-02 3.85841191e-01 -4.04949766e-04 6.32234663e-02\\n-6.70082420e-02 2.72486508e-01 -2.11471185e-01 1.76642701e-01\\n1.06976330e-01 2.31354147e-01 1.50151536e-01 2.75800765e-01\\n-4.55221057e-01 3.70307416e-01 3.07496548e-01 -3.38569403e-01\\n2.06654057e-01 7.18413666e-02 2.75873065e-01 -2.15938389e-02\\n7.59792700e-02 7.01392516e-02 -1.14504680e-01 1.64211676e-01\\n1.41306162e-01 -1.28077388e-01 1.15356646e-01 -7.99991935e-03\\n-1.02321029e-01 -9.53287929e-02 2.19893418e-02 2.74426907e-01\\n-4.77977812e-01 4.91964042e-01 3.09615377e-02 -3.06910872e-01\\n-8.69359076e-02 -5.49557090e-01 -1.72936827e-01 -2.72007417e-02\\n7.52146393e-02 9.30295587e-02 2.13413998e-01 3.51743221e-01\\n1.92966148e-01 -1.06895842e-01 2.53080428e-01 7.29198694e-01\\n-8.25962946e-02 4.57977578e-02 -5.03747277e-02 3.13472599e-01\\n-8.39872211e-02 -2.62590557e-01 1.17562808e-01 1.85414255e-01\\n-6.73400015e-02 1.95195451e-02 -2.39091963e-01 2.50428140e-01\\n-1.36240140e-01 -2.77159512e-01 -2.38709688e-01 2.94012547e-01\\n-1.85029849e-01 -3.93323004e-01 4.30839717e-01 -1.54918894e-01\\n7.40875006e-02 -1.54871166e-01 -1.34891316e-01 -1.40455142e-02\\n-2.93190926e-02 2.79017389e-01 1.55686796e-01 7.69061670e-02\\n-2.77339429e-01 -3.05975437e-01 -2.39222169e-01 1.39872551e-01\\n-2.02111781e-01 1.14611916e-01 -1.76703781e-01 -9.62646306e-02\\n3.72799456e-01 5.00162542e-02 -4.72666711e-01 2.92017967e-01\\n-1.90835595e-02 -1.10503390e-01 -1.83221668e-01 3.73022556e-01\\n-2.69955516e-01 1.56728595e-01 -3.34221572e-02 -2.12676331e-01\\n5.37013173e-01 8.83125514e-02 1.67843819e-01 9.52970535e-02\\n2.50504255e-01 -8.15516785e-02 1.05030030e-01 1.02819197e-01\\n-6.87217057e-01 3.66982996e-01 -2.09189594e-01 -1.02054492e-01\\n4.76429798e-02 -9.62400809e-02 3.54245722e-01 -3.21426898e-01\\n6.35386482e-02 -1.60561785e-01 -3.03694755e-01 -4.36531067e-01\\n-4.78651449e-02 -1.09929159e-01 2.95178950e-01 -3.91025066e-01\\n1.56404823e-02 1.96141794e-01 -5.24082303e-01 -1.21975765e-01\\n2.43220374e-01 2.14786947e-01 1.98564053e-01 2.43864030e-01\\n-3.13941538e-02 -3.91113639e-01 1.31026641e-01 -4.27844495e-01\\n-2.25263521e-01 2.12634072e-01 -2.29907036e-01 1.59417868e-01\\n9.00957733e-02 2.25385670e-02 -2.72573456e-02 7.58079346e-04\\n-2.37658605e-01 -6.52962849e-02 2.28044599e-01 -1.09204575e-02\\n1.65647641e-01 1.26644701e-01 -4.91556644e-01 4.89372611e-01\\n-1.84090823e-01 3.92900765e-01 1.68681324e-01 -7.73368478e-01\\n4.73217428e-01 2.83251971e-01 -1.91039443e-02 -4.02045488e-01\\n6.51306510e-01 -2.06891119e-01 -7.48713836e-02 1.70664191e-01\\n-3.72147143e-01 -7.35911876e-02 2.36749515e-01 -1.57009378e-01\\n-2.21634254e-01 4.63023782e-01 5.60929067e-02 1.18938357e-01\\n1.67148441e-01 -1.32837549e-01 -1.43415704e-01 -1.98381376e-02\\n-1.44427001e-01 -1.58876717e-01 -4.64657784e-01 -8.45956616e-03\\n-7.69669041e-02 -5.12668967e-01 -1.42497033e-01 -4.03461605e-01\\n-9.94464606e-02 -3.82108033e-01 -7.13532194e-02 1.60096869e-01\\n1.67444944e-01 1.59517393e-01 9.12750233e-03 -1.61638223e-02\\n-1.91011995e-01 -5.72429478e-01 -6.41610920e-02 7.92507902e-02\\n2.40618616e-01 3.07832539e-01 1.89739794e-01 -7.00317547e-02\\n1.62128165e-01 5.38959324e-01 -3.86675000e-01 -2.44182259e-01\\n2.68073618e-01 1.37187839e-01 -4.52563725e-02 -5.37530072e-02\\n3.21658291e-02 2.81306475e-01 -1.50741309e-01 5.90311475e-02\\n1.98658854e-02 4.35773097e-02 3.89746010e-01 -9.16479677e-02\\n-2.31925219e-01 -2.27548406e-01 -7.35280365e-02 1.88345566e-01\\n-4.36810613e-01 -2.92822301e-01 4.37662423e-01 1.24851242e-01\\n6.16815127e-02 1.93811327e-01 2.16771066e-01 -4.83170040e-02\\n-2.00224996e-01 -1.98979974e-01 2.22867653e-01 8.08619633e-02\\n4.84240018e-02 5.00641800e-02 -1.99986145e-01 -5.77345490e-01\\n-3.55273438e+00 -6.50387108e-02 -1.97926238e-02 -3.09380114e-01\\n2.28071377e-01 -1.20957702e-01 2.15692967e-01 -3.82777676e-02\\n-3.19965899e-01 6.35606721e-02 -2.17050910e-01 -2.14948863e-01\\n2.30340302e-01 3.40986311e-01 1.54976323e-01 5.56191355e-02\\n2.23366339e-02 -3.96035194e-01 -2.89603658e-02 4.81141567e-01\\n-5.98572791e-02 -6.47487998e-01 2.84538627e-01 4.05202620e-02\\n2.33089238e-01 1.99782938e-01 -4.89309907e-01 -1.39169678e-01\\n-4.17673528e-01 -2.40948841e-01 1.28172755e-01 -1.97126403e-01\\n-1.18874088e-01 3.35315466e-01 1.99560344e-01 -2.11064547e-01\\n1.00738958e-01 -2.63473272e-01 3.32502127e-02 -4.71486896e-01\\n6.54073358e-02 -5.80342591e-01 -1.76605955e-02 -7.80694559e-02\\n5.79820275e-01 -2.29346782e-01 2.37100393e-01 1.00158244e-01\\n1.85193673e-01 2.47931689e-01 9.84126776e-02 5.87480888e-03\\n-1.99593127e-01 -1.66411251e-01 -1.39217466e-01 -9.27392393e-02\\n5.91225386e-01 3.98347318e-01 -2.69089580e-01 -7.04255402e-02\\n2.34186966e-02 -2.58291006e-01 -4.30505872e-01 -2.54423022e-01\\n-2.49218404e-01 -9.16880928e-03 -5.77538610e-01 -4.13788229e-01\\n-2.73544490e-02 -2.15407491e-01 -4.54498641e-02 5.14480531e-01\\n-2.79675186e-01 -3.63067865e-01 -7.02077299e-02 -5.68313599e-01\\n1.68053672e-01 -1.95412964e-01 8.37813318e-02 -1.13001972e-01\\n-2.21203357e-01 -5.26362300e-01 1.30590260e-01 4.76634391e-02\\n-3.43766287e-02 -1.59794495e-01 1.16274871e-01 -1.73853278e-01\\n-3.05476785e-01 -5.32636762e-01 4.66311336e-01 4.78424877e-02\\n3.27884734e-01 1.48974255e-01 1.26268759e-01 5.42036220e-02\\n3.21378350e-01 -1.84974730e-01 2.11145222e-01 -4.46402848e-01\\n1.48540989e-01 4.52787466e-02 5.26773453e-01 -1.87588587e-01\\n-6.21173531e-03 2.32677460e-02 -7.09447488e-02 -6.21858984e-02\\n4.05279845e-01 -6.11445941e-02 2.29954183e-01 -2.59588391e-01\\n2.77786374e-01 -4.29888934e-01 -1.37998596e-01 2.05632076e-02\\n4.82926033e-02 5.93351364e-01 -1.00491196e-01 -3.59760284e-01\\n-1.40757710e-01 2.65516043e-01 -1.13648832e-01 -8.89108106e-02\\n-1.55928552e-01 8.25285763e-02 -3.52688491e-01 2.85934567e-01\\n2.97914930e-02 -1.06490247e-01 -3.25145125e-01 -2.14961879e-02\\n7.62773119e-03 3.04183841e-01 3.80509943e-01 1.50203258e-01\\n2.22446285e-02 -3.66067946e-01 5.21165878e-03 1.98518723e-01\\n2.99201518e-01 3.40139329e-01 8.84552002e-02 -2.11234525e-01\\n4.82958071e-02 3.54807019e-01 -2.17976436e-01 2.49061391e-01\\n-1.52507022e-01 7.48928040e-02 -4.58613843e-01 -2.88450807e-01\\n-2.47398019e-01 -1.38039634e-01 1.90568697e-02 3.17199707e-01\\n1.75151467e-01 -1.24201804e-01 -5.39735556e-02 -3.51537824e-01\\n3.22414547e-01 -5.43680713e-02 2.06449240e-01 8.79006088e-02\\n-6.33604079e-02 6.27986491e-01 7.24375993e-02 -2.15809241e-01\\n-9.04701278e-02 7.18359426e-02 -2.24597782e-01 -1.62445188e-01\\n-6.68370724e-02 -3.00059706e-01 -9.72887129e-02 4.03834045e-01\\n4.13913727e-02 -1.37858421e-01 -2.48933583e-02 2.76195824e-01\\n-2.54678577e-01 -1.95038646e-01 -2.22401053e-01 9.69400406e-02\\n1.96881637e-01 1.68796152e-01 2.79149771e-01 -4.83264506e-01\\n-2.45272871e-02 -3.63811404e-02 1.14107557e-01 3.59902978e-01\\n-2.26793140e-02 1.15557685e-01 -9.96692553e-02 -2.05416322e-01\\n3.62717807e-01 2.27210335e-02 -4.69837599e-02 2.24399179e-01\\n6.84275851e-02 -2.06893906e-01 -3.86226892e-01 -1.90654472e-02\\n-9.95664001e-02 -1.61975786e-01 9.43827927e-02 1.67087972e-01\\n6.60899878e-02 -4.92482334e-02 -6.32683694e-01 -2.58404076e-01\\n-2.93049634e-01 9.70030725e-02 -1.11560337e-01 -5.75953066e-01\\n-1.70119762e-01 -9.80536640e-02 -5.21747947e-01 2.26699650e-01\\n-4.52705994e-02 1.11870877e-02 4.44947183e-02 -3.47779058e-02\\n-2.49904931e-01 -2.51475066e-01 2.32241720e-01 5.09788208e-02\\n-1.89259201e-01 -1.83245301e-01 8.25036615e-02 -8.56020212e-01\\n2.11704105e-01 8.90224576e-02 -1.63538009e-01 1.44234568e-01\\n-6.59303963e-02 -6.48610592e-01 1.81992486e-01 -3.20997983e-01\\n-5.98509014e-02 3.85888703e-02 -1.70509547e-01 -3.58013183e-01\\n1.27731025e-01 3.97007205e-02 -1.26095027e-01 2.71948755e-01\\n-2.66235352e-01 4.20076549e-01 -4.52148542e-02 4.31786254e-02\\n5.49892038e-02 -2.27230370e-01 1.48169115e-01 -3.34799409e-01\\n-3.86087477e-01 -1.72495823e-02 -1.03504598e-01 -1.63981065e-01\\n-8.37235153e-02 -1.58680871e-01 -1.22998439e-01 1.20696813e-01\\n2.38198608e-01 6.07763566e-02 -2.70397127e-01 -3.38695385e-02\\n4.35433164e-02 -4.55756813e-01 2.16871798e-01 -1.29375324e-01\\n-1.08325526e-01 -1.03785545e-01 2.51233906e-01 3.94198298e-02\\n1.27630219e-01 -2.47804046e-01 4.81006503e-01 -2.60999203e-01\\n-3.65495384e-01 -1.25557810e-01 8.33486766e-02 3.86686809e-02\\n2.34843701e-01 -4.23547715e-01 -9.81782749e-02 4.41062719e-01\\n-5.74404411e-02 1.84765399e-01 3.67487371e-01 -1.80824250e-01\\n-2.43645877e-01 3.00653249e-01 -4.66438532e-01 4.92203943e-02\\n6.40229404e-01 3.01664650e-01 2.88540632e-01 1.26673713e-01\\n2.58390736e-02 8.80052075e-02 3.77350867e-01 -8.98010358e-02\\n-2.23171875e-01 2.82934070e-01 1.80511832e-01 -5.24904609e-01\\n-1.43494219e-01 7.67304972e-02 -9.28995013e-02 -3.79470676e-01\\n4.81641740e-01 3.23500931e-01 -1.97469249e-01 -3.44657063e-01\\n-2.36030459e-01 -6.52594119e-02 2.13683620e-01 -5.80448844e-02\\n1.66586831e-01 -1.86696351e-01 4.43381011e-01 -3.22515378e-04\\n1.65693462e-01 5.30810118e-01 -1.64426893e-01 -2.52098680e-01\\n-1.22589106e-02 1.63143024e-01 6.13756180e-02 4.74770069e-01\\n-1.08654626e-01 3.00575256e-01 4.92253229e-02 1.94023341e-01\\n-8.89235884e-02 -8.74310359e-03 2.32890993e-01 5.88192865e-02\\n-6.63072914e-02 2.45126069e-01 4.48434055e-01 4.01743710e-01\\n3.95400584e-01 3.85491729e-01 2.41367042e-01 -3.24516706e-02\\n5.28202891e-01 4.72050548e-01 2.68996030e-01 4.60858084e-02\\n4.10794206e-02 -1.27626881e-02 3.83753553e-02 1.91387087e-01\\n2.26544678e-01 3.03480476e-01 -5.10165431e-02 8.88850570e-01\\n2.56660372e-01 2.89269418e-01 6.58177376e-01 -5.21346927e-01\\n-3.52548778e-01 -2.12712288e-02 4.29535091e-01 -4.46455479e-01\\n1.04286417e-01 1.00977235e-02 -2.67432988e-01 1.03257202e-01\\n-5.77173173e-01 -2.76219040e-01 -1.31460160e-01 5.63369542e-02\\n1.71499506e-01 -6.99338019e-02 -1.40171811e-01 5.21380529e-02\\n-1.70993060e-01 -1.57899499e-01 -4.33164060e-01 -2.28394672e-01\\n-1.73789144e-01 -1.18305072e-01 -1.17377967e-01 -1.40012488e-01\\n5.88004738e-02 -1.20523460e-01 -1.75512210e-02 -5.65710589e-02\\n1.63758084e-01 -1.78759784e-01 -1.92056209e-01 -1.39569089e-01\\n3.14589769e-01 1.68753028e-01 5.82696676e-01 -1.54185265e-01\\n2.09931042e-02 -1.08551010e-01 -1.87402636e-01 -5.88071682e-02\\n1.50615126e-01 1.37930056e-02 -2.14726618e-03 5.24162471e-01\\n-2.97482133e-01 -2.02631503e-01 -1.50654390e-02 3.33558798e-01\\n-4.26486224e-01 1.00934528e-01 4.12137434e-03 1.27123356e-01\\n-2.75949687e-02 7.88914189e-02 -1.84726000e-01 3.45541537e-03\\n-2.48670563e-01 -5.54812908e-01 2.85659373e-01 -8.11010897e-02\\n-6.33815452e-02 -7.19378144e-03 1.50600851e-01 1.72178105e-01\\n-2.63256729e-01 3.64379212e-03 -8.78551155e-02 2.18561321e-01\\n2.80137938e-02 2.77899146e-01 -2.24891305e-01 -1.86252266e-01\\n-2.84121931e-01 1.98352262e-01 -7.48338997e-02 1.63008720e-01\\n-2.31017899e-02 3.14098686e-01 5.13388142e-02 1.08565673e-01\\n3.76814812e-01 -1.35080367e-01 -1.83890715e-01 -2.42334425e-01\\n-1.55569896e-01 -1.19408973e-01 3.10326703e-02 -8.91910270e-02\\n3.24924767e-01 -3.77564788e-01 -1.32263497e-01 -3.38862449e-01\\n-2.69633114e-01 -3.26079309e-01 5.48237152e-02 -6.32639080e-02]]',\n", + " 'The SWISS Engineering Department is responsible for the administration and control of Flight Data Monitoring (FDM). Within this department, you give support to Operational Engineering, Flight Safety and Aircraft Systems Engineering with various flight data analyses. Furthermore, the department is in charge of developing and monitoring the Aircraft Data Acquisition System (ADAS). Your Duties Process aircraft recorded data for visualization and analytical purposes of various kinds and scopes. Discover and visualize (e.g. Tableau) data trends and possible aircraft system malfunctions through dedicated data analytics. Translate the technical understanding of an Aircraft Systems Engineer to the developers’ programming language for the development of specific applications in collaboration with the development team. Collaborate with Aircraft Systems Engineers, pilots and data scientists in order to build stable applications, ready for operation and suitable for predictive maintenance. Coordinate and implement, together with data owners, the needed processes and governance procedures to accurately define and ensure the overall data flow. Act as a point of contact within SWISS for questions and / or requests regarding predictive maintenance applications and data analytics in general. Support the knowledge management within the different departments at SWISS and LH Group that is needed to understand and maintain the data environment needed for data analytics. Proactively identify opportunities for new data analytics projects in strong collaboration with Aircraft Systems Engineering and the reliability team. Your profile Finished Bachelor or Master degree in Engineering, Mathematics, Data Science, IT or related Fluent German and English language skills (written and oral) Good knowledge of MS Office applications and programming (experience with Python or R is regarded as an advantage) Tableau knowledge is an asset Stress resistant, able to work under high pressure Strong analytical and presentation skills Distinctive consulting skills, flexibility and communication skills at all levels Objective oriented person Interest in / Fascination for aviation and the airline industry Details Employment level: 100% Work place: Zurich Kloten Starting date: March 15. 2020 Duration: 6 months Salary: CHF 2,500.- gross per month with a Bachelor’s Degree CHF 3,000.- gross per month with a Master’s Degree Contacts Technical Doc. & Data Engineering: Mr. Michael Wolf Recruiting Support: Tel. +41 44 564 22 66, recruiting.services@swiss.com You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " '[\"Verbal Communication Skills\", \"Collaboration\", \"Proactivity\", \"Coordinating\", \"Governance\", \"Hospitality\", \"Operations\", \"Reliability\", \"Presentations\", \"Consulting\"]',\n", + " '[\"Predictive Maintenance\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Programming (Music)\", \"Systems Engineering\", \"Analytics\", \"Data Engineering\", \"Industrialization\", \"Visualization\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Chrysler LH Platform\", \"Maintainability\", \"E (Programming Language)\", \"Levelling\", \"Translations\", \"Aircraft Records\", \"Knowledge Management\", \"Data Processing Systems\", \"Data Science\", \"Library For WWW In Perl\", \"Personalization\", \"R (Programming Language)\", \"Service Level Objectives\", \"Quantitative Data Analysis\", \"Appeals\", \"Aviation\", \"Application-Specific Information\", \"Data-Flow Analysis\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\", \"General Administrative Support\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.99787438e-01 3.88680488e-01 5.12711525e-01 3.34221646e-02\\n4.54908907e-01 -2.50785351e-01 1.49808303e-01 3.00734907e-01\\n-2.86636548e-03 -2.15177655e-01 -1.06541082e-01 -8.39200616e-02\\n-2.87547499e-01 -5.84743433e-02 2.21543759e-01 4.31679159e-01\\n3.42504054e-01 1.46747127e-01 -1.75969169e-01 4.20372099e-01\\n4.90603223e-02 -6.73034322e-03 -7.80840367e-02 5.52242875e-01\\n3.49670857e-01 -6.43901201e-03 -1.83283389e-01 -1.80383157e-02\\n-4.25572097e-01 -2.34121859e-01 2.85047859e-01 3.41164581e-02\\n-1.33114725e-01 -3.40724826e-01 2.60876380e-02 1.26151681e-01\\n-1.29233494e-01 1.65084302e-02 8.77343267e-02 1.28169432e-01\\n-4.83868301e-01 -3.83685738e-01 1.53332040e-01 1.00188509e-01\\n-2.10774645e-01 -1.85202271e-01 1.22674018e-01 3.70131433e-02\\n-6.68280721e-02 5.81257790e-02 -5.98498702e-01 2.83816487e-01\\n-1.82257771e-01 -2.59702325e-01 2.49934539e-01 5.60541570e-01\\n4.20425050e-02 -5.72159886e-01 -3.80833298e-01 -5.07479846e-01\\n-1.13961418e-04 -1.12598442e-01 1.33307502e-01 -1.07137881e-01\\n3.74992460e-01 -4.02879715e-02 -7.49126226e-02 4.38863665e-01\\n-8.96657705e-01 -1.07015312e-01 -1.77587092e-01 5.21622822e-02\\n-3.81578445e-01 9.39661544e-03 -2.80032039e-01 -4.99533862e-02\\n-1.17990144e-01 2.48122662e-01 -5.28157130e-02 9.56756249e-02\\n-1.81293577e-01 3.39145392e-01 1.41700553e-02 3.84177595e-01\\n3.47767651e-01 1.01955116e-01 2.40130469e-01 4.31879580e-01\\n-3.46908748e-01 4.11575824e-01 4.86100093e-02 -1.42896831e-01\\n3.05578560e-01 1.04223222e-01 4.78840798e-01 1.42097116e-01\\n3.64462622e-02 4.36429381e-02 -1.84361637e-01 1.31565973e-01\\n6.08636849e-02 -3.27105135e-01 4.58396226e-02 -1.60474572e-02\\n-3.15216303e-01 3.74880917e-02 -6.77751154e-02 2.85185039e-01\\n-2.79100984e-01 4.21636581e-01 2.35542253e-01 -1.42628476e-01\\n-1.57544374e-01 -4.75515395e-01 8.42341781e-03 -6.61245510e-02\\n5.75380363e-02 1.71618685e-01 2.12906227e-01 4.91724610e-02\\n3.29758614e-01 8.36819634e-02 1.36942148e-01 7.86839664e-01\\n-4.75108735e-02 8.89957771e-02 -1.80678979e-01 3.23428392e-01\\n2.50919491e-01 -2.88401634e-01 1.13073424e-01 2.74792612e-01\\n1.08794272e-01 -1.93136092e-02 -2.65237212e-01 3.20282191e-01\\n-2.25227967e-01 -1.19276516e-01 -3.13488215e-01 8.17107633e-02\\n-2.79159248e-01 -6.79297566e-01 5.07513463e-01 6.32417053e-02\\n3.71895939e-01 -7.29863495e-02 8.64674151e-02 6.97518066e-02\\n-2.78555211e-02 5.35677195e-01 7.58694336e-02 3.35297495e-01\\n-3.05055201e-01 -2.18531176e-01 -2.88143426e-01 3.43006700e-01\\n-1.92731574e-01 9.72019807e-02 -3.81274298e-02 -1.85649529e-01\\n1.71033576e-01 1.29542172e-01 -4.10371065e-01 2.67585278e-01\\n-1.79185838e-01 -6.35369420e-02 -1.01988934e-01 3.84791076e-01\\n-1.25150591e-01 1.33049145e-01 4.23233062e-02 -1.80492565e-01\\n4.85362947e-01 3.32791954e-01 1.30045354e-01 5.00894478e-03\\n3.88805419e-01 -2.76434392e-01 2.97124326e-01 1.27877772e-01\\n-7.05352187e-01 2.91676700e-01 8.22362024e-03 -1.54678956e-01\\n7.96267763e-02 1.81053244e-02 3.77083719e-01 -4.36537296e-01\\n-3.32233272e-02 -3.29103887e-01 -3.92924011e-01 -2.84194767e-01\\n-4.58156049e-01 7.29164630e-02 5.59028327e-01 -2.80488044e-01\\n-1.08930491e-01 1.64860755e-01 -5.33682346e-01 -1.17259488e-01\\n2.31352314e-01 1.09148003e-01 -2.32329480e-02 6.81808442e-02\\n-7.22167045e-02 -6.45712376e-01 8.18541870e-02 -4.43125904e-01\\n-4.95913595e-01 -4.88432683e-02 -2.91843653e-01 2.04655990e-01\\n3.36373178e-03 1.42852128e-01 -5.43188900e-02 7.86321238e-02\\n-3.01442057e-01 -1.94961637e-01 1.16675444e-01 8.68747011e-02\\n2.03810498e-01 -1.49582610e-01 -4.21693891e-01 4.12802130e-01\\n-3.09151530e-01 6.79318249e-01 2.81088471e-01 -8.70909393e-01\\n5.09479344e-01 3.27425748e-01 3.78732313e-03 -2.84561902e-01\\n3.34590554e-01 -3.46746087e-01 -7.82738179e-02 2.34951362e-01\\n-1.68779835e-01 -2.13370055e-01 2.60542691e-01 -2.88275510e-01\\n-3.36816162e-01 5.75696826e-01 1.97128579e-01 -1.43515542e-02\\n3.54744822e-01 -3.31361383e-01 -8.99749175e-02 7.56918639e-02\\n-1.57534108e-01 -2.58451253e-01 -3.19242507e-01 1.42208964e-01\\n8.06331076e-03 -4.13040191e-01 -1.05667368e-01 -2.83001363e-01\\n-1.57621861e-01 -4.24920291e-01 -2.87701905e-01 4.05744284e-01\\n1.88426435e-01 1.18277818e-01 -1.21309973e-01 1.11325243e-02\\n-1.10778905e-01 -6.76431835e-01 4.55302931e-02 1.20679781e-01\\n5.74198961e-01 3.53124380e-01 9.49393660e-02 -8.38986337e-02\\n-1.74233280e-02 4.80774134e-01 -3.46836507e-01 -3.98785591e-01\\n1.65391088e-01 3.99755463e-02 -4.15221155e-02 -1.99157968e-01\\n5.87486774e-02 4.34695721e-01 -1.32105768e-01 5.62235489e-02\\n-1.69933930e-01 -4.34655026e-02 3.03651512e-01 -2.08776310e-01\\n-2.82493591e-01 -2.10192546e-01 -8.77952576e-03 2.55711466e-01\\n-4.15756941e-01 -2.18705222e-01 5.19347727e-01 2.70714790e-01\\n3.15051615e-01 1.66559502e-01 2.45240495e-01 -1.85489044e-01\\n-1.42113104e-01 -4.96911079e-01 7.90381953e-02 1.61846653e-01\\n1.09909035e-01 7.37418085e-02 -1.52373195e-01 -5.70682526e-01\\n-2.94324613e+00 -1.10809505e-01 1.51190683e-01 -2.90163577e-01\\n1.27602488e-01 -1.07621089e-01 -9.85765532e-02 -5.64506203e-02\\n-2.05774531e-01 1.55145153e-01 -2.83037752e-01 -1.33160740e-01\\n5.27099259e-02 3.74246508e-01 1.01945475e-01 1.46669805e-01\\n1.64357826e-01 -2.49142736e-01 -1.18696459e-01 3.58268172e-01\\n-6.68476224e-02 -6.56991184e-01 1.38739929e-01 -3.40082161e-02\\n2.39793539e-01 2.15252027e-01 -3.80507499e-01 -1.32219017e-01\\n-4.02002223e-02 -2.25430027e-01 4.08227295e-02 -1.31443486e-01\\n-2.10785657e-01 3.99372548e-01 -5.77266235e-03 -4.83675365e-04\\n5.05557144e-03 -3.05415660e-01 -1.52519211e-01 -4.62284356e-01\\n1.34858549e-01 -5.89831531e-01 -3.04082036e-02 -1.72808021e-01\\n4.85518783e-01 -3.09554338e-01 1.25503793e-01 1.08046539e-01\\n1.79840043e-01 1.05049111e-01 -1.24708079e-01 5.14650065e-03\\n-3.96099329e-01 -3.04176003e-01 3.10058035e-02 -2.01345876e-01\\n5.99612474e-01 3.06411266e-01 -2.39533260e-01 -5.46262898e-02\\n3.09009939e-01 -4.13551539e-01 -2.82964498e-01 -4.47592497e-01\\n-1.02171615e-01 -2.76327133e-01 -6.97009563e-01 -4.49805349e-01\\n-1.55987412e-01 -2.75129844e-02 -2.11054370e-01 7.05121100e-01\\n-3.51936519e-01 -3.39003444e-01 7.65312910e-02 -7.07638979e-01\\n4.04674858e-02 -2.65802860e-01 -4.94637638e-02 -1.66820273e-01\\n-3.45270008e-01 -4.83403891e-01 1.32178709e-01 -9.00022127e-03\\n-2.48095021e-01 -1.01937771e-01 7.26139471e-02 -1.47772521e-01\\n-2.21987009e-01 -3.15323263e-01 5.51963985e-01 1.35870188e-01\\n3.67600948e-01 4.97722887e-02 3.87265325e-01 5.14497496e-02\\n4.29017484e-01 -1.96116790e-01 1.76878035e-01 -4.52693492e-01\\n1.87160775e-01 1.46473929e-01 6.63503230e-01 -2.68291831e-01\\n1.16697907e-01 2.92421907e-01 -2.46145919e-01 -3.87510322e-02\\n4.61821318e-01 1.35693252e-01 -9.20522287e-02 -9.91980061e-02\\n3.31150025e-01 -5.05827606e-01 -2.26326525e-01 1.44774139e-01\\n1.58808678e-01 8.79238188e-01 2.78992634e-02 -4.37269837e-01\\n-2.86092758e-01 4.83073026e-01 -2.42408618e-01 -1.98687967e-02\\n-2.81737894e-02 1.38927311e-01 -2.61011478e-02 2.00034812e-01\\n-1.15942638e-02 -1.82831407e-01 -2.53135502e-01 -1.70219213e-01\\n5.24250232e-03 8.94784257e-02 1.38937756e-01 1.13857510e-02\\n-1.19031183e-02 -2.52594620e-01 -2.52161294e-01 7.42999092e-02\\n1.93140641e-01 2.18119249e-01 4.06354330e-02 -2.58527994e-01\\n-8.34369734e-02 3.07861418e-01 -1.91760272e-01 2.72607535e-01\\n-2.24449322e-01 3.56591679e-02 -5.80585480e-01 -1.09115519e-01\\n-1.62448838e-01 -3.69611084e-01 9.88844633e-02 2.30859637e-01\\n2.23811820e-01 6.39791340e-02 7.84875527e-02 -5.90556383e-01\\n4.12032783e-01 7.85621256e-02 7.13188052e-02 9.74066928e-03\\n-1.14741117e-01 3.85012716e-01 5.70096448e-02 4.70630862e-02\\n-2.59257764e-01 9.80976373e-02 -1.94565281e-01 -3.30283761e-01\\n1.47083968e-01 -4.42808539e-01 -1.70220971e-01 3.83516610e-01\\n1.68483406e-01 -3.09311986e-01 -1.30253673e-01 1.49976447e-01\\n2.50777096e-01 -4.05796707e-01 -8.16257969e-02 -8.38466212e-02\\n1.62272945e-01 1.14473738e-02 2.63564438e-01 -3.91524673e-01\\n-8.89681727e-02 -7.08295330e-02 -3.50106061e-02 3.09285045e-01\\n1.17080413e-01 5.06239617e-03 -1.59913063e-01 -1.24797203e-01\\n4.40937489e-01 3.63734812e-02 1.99766196e-02 -9.18133035e-02\\n1.27462745e-01 -2.45001644e-01 -5.79759836e-01 -8.40048045e-02\\n2.05185171e-03 -1.27858534e-01 1.65123835e-01 5.85729405e-02\\n7.55448118e-02 6.15827553e-02 -3.74145687e-01 -1.89364091e-01\\n-1.95206881e-01 -2.72158235e-01 2.26625711e-01 -4.27939564e-01\\n-1.32393762e-01 3.23188975e-02 -5.34779012e-01 4.03654315e-02\\n-3.07216495e-01 -6.51762635e-02 6.36674911e-02 5.03017716e-02\\n-4.18840647e-01 -1.34662166e-01 -1.62633732e-02 1.86304107e-01\\n-3.28659594e-01 -3.90024185e-01 1.16264686e-01 -1.07834268e+00\\n1.07944861e-01 1.70327261e-01 -9.38545242e-02 -6.35712817e-02\\n-1.06335506e-01 -6.03880703e-01 1.98819339e-01 -5.22711217e-01\\n5.73578253e-02 4.29222584e-02 -2.24314690e-01 -2.83157438e-01\\n1.44145757e-01 -1.61291301e-01 -4.76190150e-01 3.61006916e-01\\n-4.13230479e-01 3.58289570e-01 1.93434451e-02 3.04508209e-02\\n-4.30615172e-02 -2.59114623e-01 1.17919222e-01 -2.78860509e-01\\n-4.62303549e-01 -1.16533473e-01 -4.11942542e-01 -1.85845792e-01\\n5.30865788e-02 -8.76148343e-02 -1.29997686e-01 1.52270839e-01\\n2.36377850e-01 2.21895054e-01 -7.30814263e-02 -2.21643880e-01\\n1.21444710e-01 -3.65290046e-01 -1.95311550e-02 -2.87568271e-01\\n-5.65160029e-02 -7.58037791e-02 2.81818181e-01 -6.01227097e-02\\n5.28819859e-02 -3.34945798e-01 4.30148840e-01 -2.89816767e-01\\n-3.27629149e-01 -1.36574969e-01 4.12847474e-02 -2.27427669e-02\\n1.70887306e-01 -6.48625493e-01 1.25836432e-01 2.79436290e-01\\n8.67089406e-02 7.36026317e-02 2.34564394e-01 -3.72098386e-02\\n4.41464260e-02 7.45565668e-02 -4.99303043e-01 5.26763760e-02\\n7.64101446e-01 2.76514798e-01 -1.21437453e-01 2.71814197e-01\\n1.07413113e-01 4.32371169e-01 4.95338827e-01 -1.01882100e-01\\n-3.75609808e-02 1.80847526e-01 2.77970098e-02 -6.54942274e-01\\n-2.32824191e-01 1.08990856e-01 -1.88157171e-01 -2.11990446e-01\\n6.92263663e-01 2.68545836e-01 -3.71630460e-01 -3.08023751e-01\\n-2.31907833e-02 -6.97829202e-02 2.42627740e-01 -6.79927394e-02\\n1.81809403e-02 -1.16729192e-01 5.57809174e-01 8.97161588e-02\\n3.05483162e-01 5.68135738e-01 -1.42414331e-01 -4.22796339e-01\\n-1.35092854e-01 2.70414382e-01 1.29718319e-01 4.17801708e-01\\n-1.29547626e-01 5.76308332e-02 -6.18746085e-03 1.23684872e-02\\n-1.02868244e-01 3.36921513e-01 1.35770440e-01 1.06349245e-01\\n3.19107533e-01 -4.22131680e-02 3.67348701e-01 4.27003473e-01\\n7.67504126e-02 5.37790835e-01 2.68729597e-01 2.64209453e-02\\n2.92664498e-01 5.71823716e-01 3.74563605e-01 1.04903579e-01\\n-2.64029689e-02 3.02820742e-01 1.91343099e-01 -8.86297673e-02\\n5.17580450e-01 3.58687252e-01 3.96968096e-01 8.29537332e-01\\n2.80321866e-01 3.83646607e-01 8.01386833e-01 -6.76360130e-01\\n-2.58799255e-01 -6.14168718e-02 5.73191524e-01 -1.29796937e-01\\n-1.88400313e-01 1.84459448e-01 -2.81503648e-01 4.09835845e-01\\n-4.95754510e-01 -1.13069482e-01 2.34370250e-02 5.65399565e-02\\n3.50160412e-02 2.62797233e-02 -3.27942252e-01 3.91642600e-02\\n-2.51078993e-01 -1.71720043e-01 -4.06690896e-01 -2.13636532e-01\\n-2.92580336e-01 2.44008657e-02 -5.91381975e-02 -7.04076961e-02\\n-2.13120952e-01 -4.87040043e-01 -8.53844211e-02 -4.65814676e-03\\n3.24034899e-01 -1.04784705e-01 1.11053465e-02 -2.02405989e-01\\n1.58589751e-01 4.15374756e-01 5.73277235e-01 -1.69319198e-01\\n6.11902550e-02 -1.33756250e-01 -3.27597141e-01 1.40047699e-01\\n1.45732928e-02 -2.76225954e-02 1.90883949e-01 4.71753776e-01\\n-2.60424048e-01 -5.25301173e-02 1.61214888e-01 3.57157409e-01\\n-3.78179282e-01 -1.37177497e-01 -1.14143416e-01 2.26376668e-01\\n8.58233497e-02 1.34727195e-01 -2.92938828e-01 -9.92484912e-02\\n-2.41253883e-01 -5.13619900e-01 3.84589821e-01 -1.46470234e-01\\n-2.58731097e-01 3.30743015e-01 1.81713611e-01 2.44200975e-01\\n-2.09108278e-01 -7.32990876e-02 7.86402151e-02 3.20835739e-01\\n8.17249268e-02 3.81279618e-01 -1.44462287e-01 -2.46618703e-01\\n-2.57069796e-01 3.19232285e-01 -1.79601297e-01 1.28266349e-01\\n-1.27613410e-01 2.99779952e-01 -1.94051152e-03 1.32326305e-01\\n2.41435647e-01 2.25244481e-02 -2.70891935e-01 -2.75985330e-01\\n-1.65368527e-01 -2.67843246e-01 6.09235987e-02 -1.97763555e-02\\n2.54702091e-01 -2.36386135e-01 -3.21555100e-02 -1.47397175e-01\\n-8.98539871e-02 -2.38863349e-01 -1.75644532e-01 6.26370087e-02]]',\n", + " \"Job Informationen Your Tasks: - Use newest technologies such as Docker, React, and JSONiq - Work in a productive and agile development environment using the latest technology for continuous integration and releases - Work on web application products, web application frameworks, and/or web UI components - Work on C++/C#/Java/Javascript/JSONiq codebases - Work in Linux/bash or Windows environments - Work on customer projects, but also contribute to our vision - Work on REST API implementation, documentation, or test environments - Support customers - Help create new opportunities and support sales processes Qualifications: - Master's or PhD in Computer Science with a strong track record - Knowledge of the essentials of database systems, such as data warehouses and NoSQL databases (including document stores, column stores, or graph databases—any of those is beneficial) - Excellent command of at least one object-oriented programming language, such as C++, Java, or C# - Good command of at least one functional language, such as Scala, Haskell, F#, CAML, XQuery, or JSONiq - Good degree of familiarity with basic web technologies, such as Javascript, CSS, HTML, XML, JSON, etc. - Knowledge of XBRL is a major asset - Familiarity or experience with software development methodologies such as scrum, continuous integration, test-driven development, etc. - Fluent English, both spoken and written; additional languages are an asset - Good entrepreneurial spirit is essential: openness, motivation, autonomy, communication, team spirit, initiative, respect, courage, honesty, and integrity Benötigte Skills OO-Design / Analyse C++ C# JAVA JSON\",\n", + " '[\"Communications\", \"Integration\"]',\n", + " '[\"Web Applications\", \"Codebase\", \"NoSQL\", \"Test-Driven Development (TDD)\", \"Agility\", \"Development Environment\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Application Frameworks\", \"Object Oriented Programming Language\", \"Continuous Integration\", \"Customer Support Analyst\", \"C++ (Programming Language)\", \"Haskell (Programming Language)\", \"Scala (Programming Language)\", \"Linux\", \"Track (Rail Transport)\", \"Scrum (Software Development)\", \"Sales Process\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"XBRL (Extensible Business Reporting Language)\", \"Web Application Frameworks\", \"Help Desk Support\", \"React.js\", \"Docker (Software)\", \"C# (Programming Language)\", \"JavaScript (Programming Language)\", \"F# (Programming Language)\", \"Software Development Methodologies\", \"Bash (Scripting Language)\", \"Clinical Data Warehouse\", \"Windows Preinstallation Environments\", \"Database Systems\", \"Graph Database\", \"Software Development\", \"Test Environment Management\", \"XQuery\", \"Additives\", \"Java (Programming Language)\", \"Web UI\", \"Application Programming Interface (API)\", \"Extensible Markup Language (XML)\", \"JSON\", \"Object-Oriented Programming (OOP)\", \"RESTful API\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'data analyst (w/m)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.11146176e-01 2.39136994e-01 2.90398657e-01 6.72261640e-02\\n4.67736870e-01 -9.18641686e-02 3.97096761e-02 3.05283010e-01\\n-3.36161889e-02 -3.97795141e-01 1.86883882e-02 -2.00990930e-01\\n-2.05021411e-01 -2.35511735e-02 -6.09298535e-02 3.74364942e-01\\n3.14212054e-01 1.27775088e-01 -6.98458254e-02 3.12407762e-01\\n1.45176515e-01 4.35345173e-02 -1.98234499e-01 6.25866890e-01\\n4.50871587e-01 -1.47546995e-02 -1.56236291e-02 1.13502875e-01\\n-2.38367617e-01 -2.32878581e-01 3.74210626e-01 2.20305279e-01\\n-1.62239343e-01 -3.08662742e-01 -9.92584676e-02 1.70678794e-01\\n-5.39318696e-02 8.47874209e-02 -2.23041736e-02 1.64997160e-01\\n-4.43314523e-01 -1.50232136e-01 -4.09958661e-02 1.29467383e-01\\n-2.19754845e-01 -2.51332641e-01 1.42236307e-01 -1.28595188e-01\\n2.61874795e-01 5.05346768e-02 -5.89948416e-01 4.53012794e-01\\n-2.18548268e-01 -1.04258947e-01 1.92739040e-01 5.31125367e-01\\n6.16231486e-02 -4.91898745e-01 -4.69496667e-01 -2.60333568e-01\\n1.46780655e-01 -1.56618625e-01 2.47780476e-02 -3.58066887e-01\\n4.70109582e-01 9.63611081e-02 1.18217655e-01 2.74166346e-01\\n-7.71098852e-01 2.31758263e-02 -3.16714168e-01 1.75135082e-03\\n-4.54640388e-01 -7.57691935e-02 -3.10515761e-01 1.04245499e-01\\n-1.58402070e-01 3.70413184e-01 1.12624932e-02 2.32621282e-02\\n-1.45271048e-01 2.29412317e-01 -2.66939670e-01 2.36535490e-01\\n2.75408685e-01 7.42758662e-02 1.51272535e-01 2.91059673e-01\\n-4.29618418e-01 4.08743739e-01 2.19384152e-02 -2.38176927e-01\\n2.33093336e-01 2.21849307e-01 3.86615813e-01 1.24891602e-01\\n1.73213035e-01 1.52267575e-01 -2.33110532e-01 3.92894864e-01\\n2.57550716e-01 -4.08816308e-01 6.20822236e-02 -1.45078123e-01\\n9.10583436e-02 -8.66806731e-02 3.43637615e-02 1.48119822e-01\\n-2.32768223e-01 4.60640490e-01 1.36696815e-01 -1.41709283e-01\\n-6.29564077e-02 -4.81269240e-01 -1.62305698e-01 -3.27140689e-02\\n7.92074353e-02 4.39742059e-02 1.67982981e-01 2.54728466e-01\\n2.62138724e-01 6.84838220e-02 1.69045091e-01 7.56495953e-01\\n-1.26601845e-01 1.12024628e-01 -1.41819611e-01 3.01273346e-01\\n2.21235931e-01 -2.70826876e-01 2.78461546e-01 4.53133732e-01\\n1.90669015e-01 -1.73137933e-01 -2.82631457e-01 2.21721619e-01\\n-1.44065320e-01 -9.34531391e-02 -3.91228259e-01 1.36929303e-01\\n2.69087613e-01 -3.57735693e-01 6.72580719e-01 1.49582848e-01\\n2.45194852e-01 7.80583099e-02 -1.55788623e-02 -1.30698770e-01\\n-4.36149128e-02 2.64012069e-01 1.34398162e-01 3.10557485e-01\\n-2.63451964e-01 -1.91503137e-01 -1.76833093e-01 8.09168667e-02\\n-4.48427796e-01 7.21118152e-02 -9.89824533e-02 -2.68950202e-02\\n2.14500323e-01 -2.85551287e-02 -3.70262802e-01 1.00155491e-02\\n-8.70728195e-02 -1.81526154e-01 1.52622461e-01 4.11153823e-01\\n-9.36509855e-03 2.46026963e-01 -1.35904059e-01 -5.58928922e-02\\n7.83346057e-01 1.72828659e-01 1.17035866e-01 -2.60019824e-02\\n3.52899522e-01 -3.27306613e-02 2.50832081e-01 1.74996436e-01\\n-7.91738033e-01 3.01586330e-01 -5.47335446e-02 -3.43929827e-01\\n2.41265878e-01 8.60665664e-02 4.28674698e-01 -4.01118368e-01\\n1.48426099e-02 -2.10689008e-01 -3.43077928e-01 -2.08893120e-01\\n-4.12101448e-01 -7.70077705e-02 3.63120854e-01 -3.92112583e-01\\n-1.26116022e-01 1.61451533e-01 -5.51733792e-01 -1.62621871e-01\\n8.11881199e-02 4.88931276e-02 1.87472507e-01 1.75200582e-01\\n-4.73893993e-02 -6.77190542e-01 -1.61201674e-02 -4.77974623e-01\\n-5.38287342e-01 1.16164260e-01 -4.74248141e-01 3.79593611e-01\\n1.23104841e-01 -2.29068901e-02 -2.15525210e-01 2.24809483e-01\\n-2.39478484e-01 -2.39135846e-02 9.75539014e-02 5.92561439e-02\\n1.82818696e-01 5.38635775e-02 -4.57788795e-01 3.51053119e-01\\n-1.28339663e-01 5.41842461e-01 1.60109580e-01 -6.45862103e-01\\n5.85337758e-01 2.81759024e-01 -5.23681045e-02 -3.67121845e-01\\n5.14721453e-01 -2.45323122e-01 -1.36794776e-01 3.26134078e-02\\n-3.29582632e-01 -3.10149074e-01 1.65862188e-01 5.08003943e-02\\n-2.42900312e-01 5.14442205e-01 1.48581460e-01 7.98721611e-03\\n2.41281405e-01 -2.76104212e-01 -2.72475537e-02 2.36466959e-01\\n-1.76059365e-01 -2.04537705e-01 -3.59438539e-01 -8.69369209e-02\\n-6.31464422e-02 -4.35637712e-01 -7.06826448e-02 -3.22943330e-01\\n-2.48178348e-01 -3.95703912e-01 -3.32487941e-01 4.96108174e-01\\n2.13452309e-01 1.44497991e-01 2.19330117e-02 3.61012085e-03\\n-1.15730695e-01 -7.52296329e-01 2.15175860e-02 1.27884224e-01\\n4.23383772e-01 2.19577149e-01 1.08746946e-01 -2.23259747e-01\\n1.15951747e-01 6.33750677e-01 -4.12900329e-01 -4.04958874e-01\\n8.42166096e-02 2.42692947e-01 -1.09316796e-01 -1.01274751e-01\\n3.74676869e-03 5.04493177e-01 -2.80864596e-01 6.11973070e-02\\n-7.58251175e-02 -2.68021524e-01 3.58317584e-01 -1.20434061e-01\\n-2.82962710e-01 -2.45179549e-01 -2.45533884e-01 1.78346798e-01\\n-5.27869880e-01 -4.23619866e-01 3.87473166e-01 2.88734734e-01\\n1.86963141e-01 3.50037329e-02 1.02335550e-01 -4.64270711e-02\\n-1.57854274e-01 -4.39671606e-01 2.50005364e-01 1.52343020e-01\\n6.13475889e-02 2.33513087e-01 -1.95682943e-01 -5.73676109e-01\\n-3.49422789e+00 -6.75360784e-02 2.13890582e-01 -2.54013956e-01\\n2.12645367e-01 4.69190069e-02 7.90548399e-02 -1.11705221e-01\\n-3.43133509e-01 1.22256674e-01 -2.37963364e-01 -2.34372005e-01\\n-3.24390344e-02 4.20925260e-01 1.61963359e-01 6.78747147e-02\\n2.07169950e-01 -2.55124152e-01 -1.45022094e-01 3.11259210e-01\\n-1.39891416e-01 -4.61999357e-01 6.88784420e-02 -4.90603000e-02\\n1.85138121e-01 3.43550116e-01 -1.98736668e-01 -1.55047953e-01\\n-2.49702513e-01 -2.97027469e-01 1.72101911e-02 -2.60298371e-01\\n-1.39920339e-01 2.30585366e-01 1.44387588e-01 1.01313949e-01\\n-6.12024665e-02 -3.14160198e-01 -6.77473843e-02 -5.13232589e-01\\n-4.88445498e-02 -3.88827294e-01 -3.11686601e-02 -1.89167485e-01\\n7.96588957e-01 -1.73933059e-01 1.31757602e-01 5.66122532e-02\\n1.86294615e-01 1.30174458e-01 7.95167387e-02 5.70563860e-02\\n-1.87310830e-01 -1.92057058e-01 -2.69195378e-01 -2.04498693e-01\\n6.55414701e-01 2.99004734e-01 -1.74768910e-01 -1.14557110e-01\\n2.02871352e-01 -4.24003184e-01 -3.15629900e-01 -2.77638942e-01\\n-9.69398096e-02 -2.74193108e-01 -4.93626118e-01 -3.56409341e-01\\n-1.75905108e-01 -3.78155485e-02 -1.10586822e-01 5.74131727e-01\\n-3.95922482e-01 -3.69004101e-01 -2.52287053e-02 -4.76713926e-01\\n1.79998487e-01 -2.77745962e-01 2.28470340e-02 -4.69184443e-02\\n-3.60951602e-01 -6.40597463e-01 -1.33063942e-01 -6.86763898e-02\\n-1.69955894e-01 -3.69998127e-01 -4.64197919e-02 -1.25331938e-01\\n-4.13509786e-01 -7.01379120e-01 3.71452808e-01 3.18277925e-02\\n2.77836591e-01 2.33947918e-01 2.59112298e-01 7.26864636e-02\\n4.94323790e-01 -1.10832341e-01 3.34795713e-02 -3.13854486e-01\\n6.31374940e-02 -1.89838409e-01 6.00906670e-01 -2.14308321e-01\\n-1.43257463e-02 5.43035530e-02 -2.88209081e-01 -1.76593103e-02\\n3.35261792e-01 -4.51940298e-02 6.09509535e-02 -1.37918174e-01\\n4.07751232e-01 -2.84172863e-01 -2.38206550e-01 2.26504251e-01\\n8.88334662e-02 5.83834469e-01 8.97526965e-02 -3.04954678e-01\\n-9.16488841e-02 4.44887698e-01 -2.00251624e-01 -4.79343049e-02\\n-1.48604453e-01 1.67129170e-02 -1.38177127e-01 2.52459079e-01\\n7.11158812e-02 -1.89010307e-01 -7.25988001e-02 -2.97308490e-02\\n-4.05714177e-02 2.88314700e-01 2.54718333e-01 -1.05478473e-01\\n-1.06964335e-02 -1.98784798e-01 -9.49203745e-02 1.21635526e-01\\n2.06361264e-01 3.38137209e-01 6.96667433e-02 -2.31046945e-01\\n-1.68194458e-01 3.03568035e-01 4.44073826e-02 2.44361777e-02\\n-1.92213088e-01 8.31995904e-02 -4.74086881e-01 -2.16079816e-01\\n-3.15263063e-01 -3.54919076e-01 2.37229243e-01 2.40904644e-01\\n1.36307985e-01 -2.25260202e-02 1.29438326e-01 -5.55113852e-01\\n2.18901113e-01 2.41248056e-01 2.08037421e-01 5.78624681e-02\\n-1.57106131e-01 3.58365804e-01 -6.48141950e-02 -1.53316185e-01\\n-1.52344659e-01 1.53613091e-01 -1.76706254e-01 -1.65021494e-01\\n2.33898431e-01 -4.29733545e-01 -1.07338585e-01 4.52064395e-01\\n2.15695009e-01 -1.56864017e-01 -3.44151855e-01 2.93253422e-01\\n-1.32898182e-01 -2.37496436e-01 -2.68674761e-01 -1.11861162e-01\\n1.70387059e-01 1.13470405e-01 1.85515732e-01 -2.20539033e-01\\n-8.65486041e-02 4.12845165e-02 -1.63014472e-01 3.14923882e-01\\n3.07883285e-02 -6.74817115e-02 -3.19910228e-01 -6.12908341e-02\\n4.40704405e-01 7.67102838e-03 -5.92696741e-02 -8.13967586e-02\\n1.94043547e-01 -2.70835936e-01 -4.43066657e-01 -3.19895800e-03\\n-3.60884927e-02 -2.51245588e-01 -4.75164205e-02 2.03575760e-01\\n-1.11812867e-01 1.17998362e-01 -5.84350884e-01 -2.75305152e-01\\n-4.60165620e-01 -3.09753537e-01 2.93318257e-02 -2.59893268e-01\\n7.34278336e-02 -1.64992779e-01 -4.57648486e-01 1.76786691e-01\\n-2.39894867e-01 -5.06835207e-02 1.40728399e-01 1.23337083e-01\\n-3.51873070e-01 -2.61124432e-01 2.81367507e-02 1.68059170e-01\\n-3.21979046e-01 -1.81134939e-01 8.52563977e-02 -8.83151948e-01\\n1.40701473e-01 3.83930728e-02 -1.60850376e-01 -3.55063006e-03\\n-1.63479403e-01 -5.42055547e-01 1.95036083e-03 -5.38012087e-01\\n-8.35062563e-02 1.22421332e-01 -2.37064302e-01 -2.10910305e-01\\n1.84065998e-01 -1.50267959e-01 -4.04174268e-01 4.15074587e-01\\n-2.71812558e-01 4.20973003e-01 -1.73982680e-01 1.04589418e-01\\n-6.80067912e-02 -1.81918353e-01 4.02636938e-02 -2.39861324e-01\\n-4.48657870e-01 -2.48203337e-01 -1.94506347e-01 -1.20701671e-01\\n1.56704098e-01 -4.47014183e-01 -6.41594082e-02 1.65948048e-01\\n3.35748494e-01 6.74316064e-02 -6.04099967e-02 -8.26721340e-02\\n1.63759202e-01 -6.51322722e-01 -5.36895804e-02 -2.14780778e-01\\n-8.72551128e-02 -6.94406480e-02 2.19604433e-01 6.30603731e-03\\n2.03320086e-01 -2.10058764e-01 3.88966173e-01 -4.42216754e-01\\n-1.75246209e-01 1.17239505e-01 7.84682333e-02 -1.87138811e-01\\n1.87136471e-01 -5.00908196e-01 1.68356467e-02 4.43145037e-01\\n1.45313323e-01 2.06638202e-02 1.32052138e-01 5.64344712e-02\\n-1.09408908e-01 2.68779397e-01 -2.59354949e-01 9.61166695e-02\\n6.03839278e-01 2.77027667e-01 1.16187841e-01 1.03234105e-01\\n1.24363542e-01 2.59936631e-01 4.98579562e-01 1.73416823e-01\\n1.98958255e-02 1.88118875e-01 1.11507840e-01 -4.11275744e-01\\n1.81703977e-02 1.41565993e-01 -2.49772146e-01 -2.42393494e-01\\n5.63166380e-01 4.73994672e-01 -6.61361516e-01 -2.61521369e-01\\n-5.62981702e-02 -1.01802915e-01 4.04787481e-01 4.12870385e-02\\n-1.20411702e-02 -1.45893574e-01 4.82355952e-01 -5.69226071e-02\\n-5.45800570e-03 4.72445220e-01 -7.99961537e-02 -9.88873094e-02\\n-3.49095240e-02 2.28066310e-01 6.70130253e-02 6.20501220e-01\\n-1.72415584e-01 2.73590624e-01 -1.94834247e-01 -1.59259641e-03\\n-7.86950514e-02 1.40784889e-01 2.50235498e-01 1.97083335e-02\\n2.09688634e-01 3.72091979e-02 3.98986816e-01 5.09649038e-01\\n4.81452644e-02 4.27708000e-01 2.37353697e-01 -1.38520095e-02\\n3.19628447e-01 5.18140674e-01 2.48830721e-01 1.79288089e-01\\n-5.46329245e-02 2.34286606e-01 1.31370991e-01 -5.62561564e-02\\n4.93212581e-01 3.49074483e-01 6.64937645e-02 8.27935815e-01\\n2.76108474e-01 4.11038131e-01 5.29971719e-01 -5.89560151e-01\\n-2.87481576e-01 2.62181938e-01 5.14390290e-01 -2.24307090e-01\\n-1.83915887e-02 8.86418819e-02 -2.49171734e-01 3.58812451e-01\\n-4.94286478e-01 -1.42611936e-01 5.19214571e-03 1.49646103e-01\\n3.65920514e-02 -1.87115803e-01 -3.37863564e-01 -5.69242164e-02\\n-8.12890530e-02 1.14821516e-01 -4.45865571e-01 -2.48538092e-01\\n-2.85956979e-01 -7.40103945e-02 -5.68135306e-02 -1.03276350e-01\\n1.20315842e-01 -3.10691357e-01 -4.02096696e-02 -2.27799919e-02\\n3.91716212e-01 -2.66793311e-01 -1.35580033e-01 -9.92377102e-02\\n2.05038175e-01 3.00713867e-01 5.45770109e-01 -1.16883837e-01\\n6.89519048e-02 -1.42826974e-01 -1.73881114e-01 8.33186507e-02\\n1.43051641e-02 1.29887804e-01 1.29729494e-01 2.14920774e-01\\n-2.70766467e-01 -2.13403910e-01 1.92004085e-01 3.33850175e-01\\n-4.80226636e-01 -6.80399314e-02 -1.25760242e-01 2.23670140e-01\\n-2.79381480e-02 1.29504248e-01 -2.66258895e-01 1.70314372e-01\\n-2.64819741e-01 -3.20332706e-01 3.34748477e-01 -3.92053574e-02\\n-4.73633558e-02 1.37564570e-01 3.22856426e-01 1.63980454e-01\\n-1.50034964e-01 -6.38918132e-02 -8.22629109e-02 2.60850549e-01\\n-1.00972950e-01 3.52459103e-01 -1.36665376e-02 -3.84961545e-01\\n-2.29706496e-01 2.25182116e-01 -8.39608833e-02 1.11901775e-01\\n-1.02839261e-01 3.37843090e-01 -2.22788919e-02 5.00880219e-02\\n4.07228440e-01 1.11921400e-01 -3.06955397e-01 -2.50825197e-01\\n-2.12032944e-01 -6.51813298e-02 3.31513770e-02 5.26088141e-02\\n2.28047259e-02 -3.78458411e-01 -1.68757498e-01 -1.24368958e-01\\n-7.51227140e-02 -2.64934540e-01 -5.47827929e-02 8.86953324e-02]]',\n", + " 'Job Informationen Responsibilities: You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Our Requirements: You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization. You are always curious to try out new tools and libraries for the analysis and visualisation of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills SQL MySQL NoSQL Python Python',\n", + " '[\"Communications\", \"Writing\", \"Proactivity\"]',\n", + " '[\"MySQL\", \"Python Server Pages\", \"NoSQL\", \"Tooling\", \"Accessioning\", \"Advising\", \"Agility\", \"Statistics\", \"Machine Learning\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Dataset\", \"Data Visualization\", \"Machine Learning Methods\", \"Machine Learning Algorithms\", \"Scalability\", \"Electronic Data Processing\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\", \"Elasticsearch\"]',\n", + " \"['English', 'Corsican', 'Portuguese', 'Javanese']\"],\n", + " ['119',\n", + " 'database engineer',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " '',\n", + " '[[-1.20975100e-01 3.31103057e-01 4.70755935e-01 -1.95247605e-01\\n5.77714682e-01 -1.13337353e-01 6.08497560e-02 5.19751430e-01\\n-1.07258186e-01 -3.00200671e-01 -1.37486890e-01 -2.78690457e-01\\n-2.70901006e-02 -6.92348275e-03 8.78744125e-02 3.75383258e-01\\n3.39582801e-01 1.46115214e-01 -1.12793058e-01 3.51523459e-01\\n1.93994254e-01 -7.74465725e-02 9.23144743e-02 6.02107406e-01\\n5.24787128e-01 5.80808185e-02 -5.59134707e-02 -1.09901510e-01\\n-4.54412788e-01 -4.27330345e-01 5.87014198e-01 -3.26303579e-02\\n4.45826761e-02 -1.42850906e-01 1.39603287e-01 -5.27804531e-02\\n-1.98991850e-01 -2.13811278e-01 -1.65293679e-01 2.04368174e-01\\n-4.54901189e-01 -1.14412948e-01 3.45300771e-02 6.96369857e-02\\n-2.12178931e-01 -4.11561549e-01 1.87091395e-01 -5.93959130e-02\\n2.06382617e-01 1.77657992e-01 -4.71304476e-01 2.88921207e-01\\n-3.05169284e-01 -1.74003825e-01 4.70773876e-01 7.03273654e-01\\n-1.29070714e-01 -6.34591222e-01 -5.46461761e-01 -2.74270147e-01\\n2.61789620e-01 -1.58867031e-01 1.42904267e-01 -3.08122009e-01\\n2.87409514e-01 1.95219487e-01 1.13764204e-01 3.18075627e-01\\n-8.32440495e-01 -3.74555662e-02 -2.66310841e-01 -1.91794764e-02\\n-3.84853274e-01 -2.24027727e-02 -2.37290904e-01 1.14127863e-02\\n-1.20607495e-01 4.21901613e-01 -8.34502652e-02 8.82587656e-02\\n-9.66982916e-02 2.49092847e-01 -2.66199172e-01 3.49167109e-01\\n1.48409143e-01 7.55926371e-02 8.47907364e-02 2.82886773e-01\\n-2.58221120e-01 4.40734595e-01 2.56769657e-01 -2.52138168e-01\\n1.78258345e-01 9.95309874e-02 4.15538639e-01 -2.69203018e-02\\n1.09394751e-01 1.96203832e-02 -1.89602315e-01 3.37628514e-01\\n3.24339569e-01 -1.09681368e-01 6.62792847e-03 -8.34405348e-02\\n-6.55780584e-02 -1.64378546e-02 5.98318949e-02 2.78562099e-01\\n-2.14364693e-01 5.64371169e-01 1.31338924e-01 -1.54747367e-01\\n-1.12938099e-02 -6.85800612e-01 -8.56071562e-02 -8.02856162e-02\\n6.34073094e-02 3.59586850e-02 1.84595734e-01 2.64549404e-01\\n3.21342379e-01 -1.24180131e-01 1.31067127e-01 7.53150105e-01\\n7.74250226e-03 1.81699283e-02 -1.79646626e-01 2.59835660e-01\\n-2.02473998e-02 -2.09481910e-01 2.21969217e-01 2.03542784e-01\\n-1.12804919e-02 -7.22033381e-02 -2.32993200e-01 2.95291454e-01\\n-1.84093252e-01 -3.71824652e-01 -3.15884292e-01 1.72238663e-01\\n-9.19578001e-02 -3.60431969e-01 4.27557141e-01 6.80601224e-02\\n1.47571892e-01 -1.16997041e-01 2.25842055e-02 -6.12978041e-02\\n1.93745121e-02 2.87616849e-01 8.94724727e-02 -2.66900472e-02\\n-1.90230221e-01 -2.64949381e-01 -2.94142991e-01 7.18815625e-02\\n-1.58230081e-01 5.93176633e-02 -4.63017933e-02 -1.49602711e-01\\n4.01696414e-01 1.22753032e-01 -3.89773101e-01 2.55663782e-01\\n4.16161343e-02 1.29930362e-01 -1.69531718e-01 3.10307831e-01\\n-1.08515888e-01 1.78443953e-01 -8.86691660e-02 -3.04826260e-01\\n6.52832329e-01 7.40394369e-02 -4.67814552e-03 9.05548111e-02\\n2.04482451e-01 -4.24092561e-02 2.60112494e-01 -7.17075616e-02\\n-7.58951604e-01 3.83844435e-01 -1.00144977e-02 4.07901779e-02\\n2.12016538e-01 -2.58133933e-02 2.00027227e-01 -3.44744742e-01\\n1.81971535e-01 -4.22325060e-02 -3.97945255e-01 -4.10223275e-01\\n-1.60542503e-01 -9.94833708e-02 4.35568333e-01 -4.47708040e-01\\n-2.01711163e-01 1.30983487e-01 -5.89194536e-01 -4.43756767e-02\\n2.32134193e-01 1.88139960e-01 2.81080067e-01 2.81498194e-01\\n-8.99927765e-02 -4.40479666e-01 2.45185331e-01 -5.23442090e-01\\n-8.07445794e-02 2.00558007e-01 -3.21473718e-01 3.52334708e-01\\n4.69057374e-02 2.62135845e-02 -1.70775697e-01 8.00004900e-02\\n-1.84550479e-01 -4.30135094e-02 1.17278717e-01 1.22237347e-01\\n2.35224694e-01 1.25505909e-01 -5.11937678e-01 4.67557669e-01\\n-5.61823845e-02 5.95318139e-01 4.57723178e-02 -8.26171577e-01\\n4.14968491e-01 3.68540466e-01 -2.23312750e-02 -4.51378465e-01\\n6.64818466e-01 -2.96850592e-01 5.33863865e-02 1.76074281e-01\\n-3.89715374e-01 -3.04116309e-01 2.42173433e-01 -1.94101021e-01\\n-3.96293521e-01 5.52240014e-01 1.60334647e-01 1.83980554e-01\\n1.56003013e-01 -2.68250555e-02 -2.74763465e-01 4.23031636e-02\\n-6.27671108e-02 -1.80743456e-01 -4.75151241e-01 3.43753002e-03\\n-2.48334967e-02 -5.51352203e-01 -1.56966507e-01 -5.17431438e-01\\n-2.56539494e-01 -3.02716523e-01 -8.36052224e-02 1.16343237e-01\\n2.53781289e-01 3.16997729e-02 4.86488678e-02 1.08464129e-01\\n-2.27160379e-01 -6.30086184e-01 8.56279284e-02 1.77027002e-01\\n3.22045475e-01 1.53501406e-01 9.71179530e-02 -1.53599441e-01\\n-1.63145632e-01 7.45727181e-01 -3.26834947e-01 -5.20183519e-02\\n1.97844803e-01 2.45038077e-01 3.41633186e-02 -7.92514235e-02\\n8.47858489e-02 2.49819845e-01 -2.73613751e-01 1.97373137e-01\\n2.07646079e-02 -1.35732934e-01 2.11754799e-01 9.15213749e-02\\n-3.46211106e-01 -3.81502211e-01 -1.68437988e-01 1.57076105e-01\\n-5.74098825e-01 -2.37172589e-01 7.07537949e-01 2.12500945e-01\\n7.71264881e-02 2.60100543e-01 3.68138701e-01 -1.37673885e-01\\n-1.22738272e-01 -2.86316603e-01 1.78309396e-01 1.58890933e-01\\n1.45993516e-01 1.22765765e-01 -1.61473304e-01 -6.50121689e-01\\n-2.48001170e+00 -1.05853984e-02 1.19186811e-01 -3.96464199e-01\\n2.56766289e-01 -9.97513458e-02 1.31397486e-01 -7.92740211e-02\\n-2.62161851e-01 -2.56790072e-02 -2.00499102e-01 -2.45050311e-01\\n3.37216347e-01 2.25140125e-01 1.16996661e-01 1.53571799e-01\\n9.95214805e-02 -3.34998637e-01 -6.75863326e-02 3.60406101e-01\\n-2.91601270e-01 -6.21438920e-01 1.95369825e-01 -1.06876798e-01\\n3.52735370e-01 4.26362127e-01 -4.01168644e-01 -2.34160736e-01\\n-1.39234245e-01 -1.66069344e-01 1.63870722e-01 -2.65311003e-01\\n-6.42548800e-02 2.49747187e-01 1.99189886e-01 -8.02391693e-02\\n6.50330931e-02 -3.64395201e-01 -3.67120607e-04 -5.14470458e-01\\n9.79989842e-02 -7.59679854e-01 -4.35400866e-02 -1.17499925e-01\\n7.29610085e-01 -2.50727028e-01 2.04557385e-02 2.78964955e-02\\n1.84166804e-01 2.23949090e-01 1.40930014e-03 1.30183892e-02\\n-3.26630712e-01 -2.01651618e-01 -1.60248756e-01 -8.95381998e-03\\n5.20919323e-01 5.14502943e-01 -2.68887818e-01 -7.96316937e-02\\n5.38013503e-02 -4.07204807e-01 -4.13622230e-01 -3.32688361e-01\\n-1.57979026e-01 -3.15395653e-01 -7.48214900e-01 -4.74197119e-01\\n6.18743058e-03 -1.29094139e-01 -9.14848298e-02 6.30522132e-01\\n-2.65695304e-01 -2.00793922e-01 -4.71368879e-02 -4.76096123e-01\\n9.17959437e-02 -3.47742438e-02 9.52767730e-02 -2.20430821e-01\\n-1.24083996e-01 -3.33527386e-01 5.39277270e-02 3.36296819e-02\\n-1.18433625e-01 -1.77461490e-01 1.98304161e-01 -9.92225111e-02\\n-3.93855512e-01 -6.08086646e-01 4.32050437e-01 1.51057094e-01\\n3.95971179e-01 2.27903709e-01 1.62472993e-01 5.79074621e-02\\n3.19745988e-01 -3.10527325e-01 2.10403070e-01 -4.17263567e-01\\n2.58253574e-01 2.18425989e-01 6.96792960e-01 -3.51521254e-01\\n1.08613104e-01 1.06250949e-01 -2.97296345e-01 -1.50973931e-01\\n1.89605147e-01 -2.80616637e-02 1.59980193e-01 -3.80168080e-01\\n3.53869200e-01 -4.08080637e-01 -3.51696461e-01 -4.35397848e-02\\n8.66406262e-02 5.85671365e-01 1.11787356e-02 -3.73434991e-01\\n-1.24537244e-01 3.60720962e-01 -2.27123126e-02 -2.90382534e-01\\n-4.26543176e-01 -3.37148719e-02 -2.95823127e-01 1.36576593e-01\\n1.06962830e-01 -2.47776359e-02 -2.36516088e-01 -8.41833428e-02\\n-1.65951297e-01 3.57403755e-01 1.87855482e-01 1.40064061e-01\\n-3.94791085e-03 -3.49197358e-01 3.04616448e-02 2.04366162e-01\\n1.23125151e-01 3.05269390e-01 -5.21282814e-02 -2.36922443e-01\\n-5.07534705e-02 3.50030929e-01 -1.86778992e-01 1.62322193e-01\\n-1.85518607e-01 8.25550035e-02 -5.06058037e-01 -4.19317603e-01\\n-2.19737440e-01 -2.33199865e-01 6.69419616e-02 4.17778134e-01\\n1.57472283e-01 -2.09402014e-02 1.89230358e-03 -3.42324048e-01\\n3.06155086e-01 -9.02212262e-02 2.20889688e-01 1.33629009e-01\\n-1.45283081e-02 4.40574080e-01 2.93611921e-02 -2.13030323e-01\\n-1.44972205e-02 5.63488342e-02 -3.94984841e-01 -5.42825609e-02\\n1.90873779e-02 -3.90034229e-01 -1.42158017e-01 5.55266798e-01\\n1.18490951e-02 -1.96390480e-01 -6.49183244e-02 1.95458010e-01\\n-6.23130724e-02 -3.11125636e-01 -3.12494487e-01 -4.67217615e-04\\n2.90067494e-01 -3.42666954e-02 3.87823015e-01 -5.20088315e-01\\n1.65448904e-01 -8.95490646e-02 -9.75331813e-02 4.04846609e-01\\n7.46485963e-02 -5.04547777e-03 -1.01776123e-01 -2.68569708e-01\\n4.17622685e-01 -2.69596249e-01 -9.61347297e-02 2.64897764e-01\\n1.46735162e-01 -1.80085465e-01 -5.79551935e-01 -3.61166410e-02\\n-1.60754666e-01 -3.44886594e-02 -8.02488327e-02 7.00053796e-02\\n5.16117476e-02 2.42796298e-02 -5.86193204e-01 -2.55034924e-01\\n-2.47302160e-01 5.20222932e-02 -6.74834708e-03 -5.28262615e-01\\n-6.28230337e-04 1.65009703e-02 -6.96749449e-01 2.69149125e-01\\n-1.54897556e-01 5.53345829e-02 3.10384631e-01 -8.96355286e-02\\n-3.63123000e-01 -3.02403551e-02 2.63348192e-01 1.59298688e-01\\n-2.90326566e-01 -1.84110239e-01 -9.35707018e-02 -9.66439188e-01\\n1.79369211e-01 -1.29817486e-01 -1.05577976e-01 1.24053098e-01\\n-3.63651402e-02 -8.52683127e-01 1.80697963e-01 -2.76365221e-01\\n-6.74772114e-02 7.61537477e-02 -2.49893174e-01 -5.67864716e-01\\n1.11955233e-01 -1.03463776e-01 -1.86834604e-01 2.34781280e-01\\n-2.88092554e-01 3.59687150e-01 2.47425456e-02 6.81925565e-02\\n4.20759581e-02 -4.53139305e-01 8.34510550e-02 -5.00769198e-01\\n-4.17620957e-01 -5.53507768e-02 -2.71096647e-01 -9.71766189e-02\\n-1.31646944e-02 -4.00176585e-01 -4.71250862e-02 1.65999383e-01\\n2.36258239e-01 2.79901363e-02 -8.43396336e-02 1.02232575e-01\\n-5.57436422e-02 -6.34718299e-01 7.66110048e-02 -1.29079849e-01\\n4.43085805e-02 -1.84150159e-01 2.93539941e-01 3.47195379e-02\\n1.02848336e-01 -4.38484132e-01 3.98160219e-01 -5.05447268e-01\\n-4.84720826e-01 4.75587964e-04 7.31567368e-02 -1.00966819e-01\\n3.07092965e-01 -4.41011876e-01 -6.95581436e-02 4.04843062e-01\\n-4.55658212e-02 2.06463076e-02 2.20782623e-01 -3.46543044e-02\\n-1.37421370e-01 1.85898989e-01 -4.91658270e-01 1.37946293e-01\\n7.69906402e-01 2.19138175e-01 1.16558604e-01 2.39998400e-01\\n2.99183242e-02 2.21444130e-01 5.70495903e-01 2.02698782e-02\\n-2.53797829e-01 3.67909282e-01 8.04398283e-02 -6.97358608e-01\\n-9.26927328e-02 7.16676116e-02 -2.65937030e-01 -4.70936000e-01\\n6.69618070e-01 4.84663874e-01 -2.98335046e-01 -4.90057915e-01\\n-2.83647269e-01 -2.21722618e-01 5.70726916e-02 -2.65350156e-02\\n2.47380421e-01 -1.61446661e-01 5.39672732e-01 6.59724176e-02\\n2.42740214e-01 3.50360632e-01 -1.09016992e-01 -2.49825746e-01\\n-5.07432111e-02 1.07320294e-01 -1.07629731e-01 3.20314199e-01\\n-1.00190364e-01 2.59497434e-01 1.21346258e-01 1.38152122e-01\\n-1.75048485e-01 -1.99732766e-01 -3.59209627e-02 1.98077381e-01\\n-7.49664381e-02 2.78517932e-01 3.38985175e-01 3.94317985e-01\\n4.05577272e-01 4.73240793e-01 3.30040097e-01 1.01060674e-01\\n6.40843272e-01 5.13722599e-01 3.81022215e-01 3.13090563e-01\\n-1.52192023e-02 -6.66396245e-02 1.15108276e-02 2.55104542e-01\\n3.52333695e-01 1.61691785e-01 -1.80426538e-02 8.85829270e-01\\n3.28897834e-01 1.81608945e-01 6.79846466e-01 -5.70728362e-01\\n-2.73036659e-01 -9.69539061e-02 4.23756987e-01 -5.01040637e-01\\n-1.85211189e-02 1.28530141e-03 -9.21126530e-02 1.22361958e-01\\n-6.01361156e-01 -3.35597366e-01 -8.77689049e-02 2.02269837e-01\\n7.74818584e-02 -1.02901384e-01 -1.68632120e-01 -6.00243621e-02\\n-2.60817528e-01 -2.46326625e-01 -5.24348795e-01 -2.31036782e-01\\n-2.34318554e-01 -1.67602301e-01 5.39790429e-02 -1.65793464e-01\\n-9.75718498e-02 -3.83426964e-01 -5.17599992e-02 1.55167673e-02\\n3.76217693e-01 -1.49388582e-01 -3.43047678e-02 -7.11671710e-02\\n3.27311039e-01 2.68828869e-01 8.00580978e-01 -5.98889813e-02\\n8.61534197e-03 -2.33462557e-01 -8.52878764e-02 7.43729919e-02\\n2.13523284e-01 1.28366664e-04 7.35494569e-02 4.93371427e-01\\n-4.21595246e-01 -2.19593927e-01 4.70047705e-02 3.31216276e-01\\n-5.12659550e-01 -6.18970320e-02 -3.24829482e-02 2.05558911e-01\\n1.94443449e-01 1.43123001e-01 -2.91909099e-01 1.24780402e-01\\n-1.21417843e-01 -4.61528927e-01 2.27030650e-01 -2.27327570e-02\\n-1.74432442e-01 -5.34701422e-02 2.75779158e-01 1.23642422e-01\\n-1.21167004e-01 -3.27971689e-02 -4.74823602e-02 1.98152065e-01\\n1.78780660e-01 2.80799329e-01 -2.78823555e-01 -2.71773547e-01\\n-2.15043291e-01 2.94597417e-01 -1.31561652e-01 1.32185981e-01\\n1.76740494e-02 3.86754781e-01 2.12946996e-01 2.05204301e-02\\n4.65153635e-01 -6.73596188e-02 -1.17068507e-01 -3.40481490e-01\\n-2.16703176e-01 -3.91630590e-01 -6.63601309e-02 -1.96817398e-01\\n2.28895754e-01 -4.18754697e-01 -9.66417938e-02 -1.27981782e-01\\n-2.49003112e-01 -3.84074688e-01 -1.55337229e-01 1.33112473e-02]]',\n", + " 'As part of the Database team at an established Swiss investment bank you will be working on internal enterprise platforms. You will join a German speaking cooperative team that is currently looking for an enthusiastic teammate who is proactive and keen to learn. About our client Our client is an established Swiss investment bank. On behalf of our client, Swisslinx is currently looking for a Database Engineer. This is a permanent role based in Zurich. Your mission Operation and maintenance of Microsoft SQL Server and Oracle Database in a highly automated environment Performance tuning and troubleshooting in collaboration with application managers and infrastructure teams Cooperate in the implementation of application projects Automation of processes in the database environment On call work every five weeks for a week Your background Technical degree or training in computer science or other equivalent field woth emphasis on computer science Minimum of 2 years of professional experience working with databases Oracle / Unix and Windows / SQL Server Knowledge of scripting languages (Perl, Power Shell) is an advantage Conceptual and analytical skills as well as willingness to learn and improve¨ Communicative personality with good cooperation skills Proactive and resilient attitude Good German (B1 minimum) and English language skills Whatâs on offer Work for an established Swiss company Modern and pleasant working environment Competitive bonus scheme and benefits If you think of yourself as a highly motivated, ambitious person, please apply via the portal or per email: katia.kosa@swisslinx.com. For further information, do not hesitate to contact us: +41 (0)58 268 10 40.By applying for this position, I consent to the Swisslinx Group of companies: storing my personal information (including name, contact details, Identification and CV information etc.) on their internal or external servers for the purpose of informing me of potential employment opportunities using my personal information or supplying it to third parties upon express consent for the purpose of informing me of potential job opportunities transferring where applicable my personal information to a country outside the EEA/EFTA I also hereby agree to the Swisslinx privacy policy (http://www.swisslinx.com/en/legal/privacy-policy) and Terms of Use (http://www.swisslinx.com/en/legal/disclaimer)',\n", + " '[\"Analytical Skills\", \"Cooperation\", \"Collaboration\", \"Proactivity\", \"Infrastructure\", \"Willingness To Learn\", \"Management\", \"Resilience\", \"Communications\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"Document Enterprise Platform\", \"Automation\", \"Computer Science\", \"Perl (Programming Language)\", \"Oracle Databases\", \"Investment Banking\", \"Scheme (Programming Language)\", \"Component Object Model (COM)\", \"Hostile Work Environment\", \"Conceptualization\", \"Library For WWW In Perl\", \"Personalization\", \"Adapter Scripting Language\", \"Oracle Autonomous Database\", \"Performance Tuning\", \"Database Engines\", \"Unix\", \"Microsoft SQL Servers\", \"EN 1993 Building Codes\"]',\n", + " \"['English', 'Zulu', 'Hausa']\"],\n", + " ['16',\n", + " 'software engineer - taxes',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-3.69951166e-02 3.45655143e-01 5.60230494e-01 -2.01081280e-02\\n5.78713179e-01 -2.12621808e-01 7.13859275e-02 3.79410565e-01\\n-2.42336839e-02 -3.44944984e-01 -5.74245676e-02 -1.59090847e-01\\n5.23505062e-02 4.15152162e-02 1.74907237e-01 3.38404357e-01\\n2.32827455e-01 8.80177021e-02 -9.49313641e-02 3.25852275e-01\\n1.88456148e-01 -4.39948365e-02 2.05075055e-01 6.88480616e-01\\n4.75102782e-01 9.44360197e-02 -4.73223180e-02 -2.45390348e-02\\n-3.37344348e-01 -3.72952640e-01 5.56296229e-01 4.50348333e-02\\n-5.76497130e-02 -2.91209400e-01 1.02531739e-01 3.64651904e-02\\n-2.53574252e-01 -1.56636745e-01 -9.05244499e-02 1.37901172e-01\\n-3.54086697e-01 -7.31291398e-02 -1.04610704e-01 9.99441296e-02\\n-2.70950675e-01 -4.12356943e-01 -5.51906899e-02 -7.17565715e-02\\n2.01436818e-01 6.10465184e-03 -4.55271214e-01 3.09073687e-01\\n-2.92493254e-01 -2.69567907e-01 2.88108617e-01 6.46703362e-01\\n-1.41725942e-01 -4.88470614e-01 -5.54893613e-01 -3.33868563e-01\\n1.59027591e-01 -9.81261656e-02 4.52614985e-02 -2.88404167e-01\\n2.73688912e-01 1.26266629e-01 1.02508061e-01 3.46181482e-01\\n-7.47558713e-01 -7.60607943e-02 -2.27238506e-01 -9.26762074e-02\\n-4.51047719e-01 -1.60531789e-01 -2.75464445e-01 -1.07895099e-01\\n-2.03859776e-01 4.34002727e-01 9.45216343e-02 2.67187729e-02\\n-1.01273164e-01 2.62687385e-01 -2.48466820e-01 3.20880890e-01\\n2.18258023e-01 1.79043949e-01 1.35816514e-01 3.18818897e-01\\n-2.47190401e-01 4.94730026e-01 1.06638417e-01 -2.80595809e-01\\n2.12317199e-01 1.09491944e-01 4.01029766e-01 -1.34464785e-01\\n1.46761626e-01 1.56938471e-02 -1.57695800e-01 2.90287614e-01\\n2.15313673e-01 -2.50335902e-01 4.65375818e-02 -1.15100279e-01\\n6.24584146e-02 4.55168486e-02 6.11910373e-02 1.70499325e-01\\n-2.91251898e-01 3.88525009e-01 9.97244790e-02 -2.46347293e-01\\n-1.23230122e-01 -4.91174072e-01 -1.24831416e-01 -8.95828158e-02\\n5.65288886e-02 1.68358579e-01 1.25181213e-01 1.86435252e-01\\n2.24045843e-01 -4.00470644e-02 2.03932956e-01 7.36032009e-01\\n7.49399513e-03 4.62784395e-02 -2.79876590e-01 3.02567899e-01\\n4.08514440e-02 -3.48581880e-01 2.43274122e-01 2.02553391e-01\\n-2.51317825e-02 -1.03995623e-02 -2.53941834e-01 2.65766740e-01\\n-1.23367563e-01 -2.57098496e-01 -1.58791065e-01 1.86874047e-01\\n-3.95756811e-02 -3.68234932e-01 5.22305608e-01 1.15929343e-01\\n1.12085957e-02 -1.31378859e-01 -1.08377904e-01 -1.08402289e-01\\n-5.64403459e-02 2.01673925e-01 8.01543146e-02 9.62845832e-02\\n-2.49680430e-01 -2.50143588e-01 -1.66850075e-01 1.04903139e-01\\n-2.79451370e-01 5.24946526e-02 -1.98810458e-01 -1.24544606e-01\\n2.23019004e-01 2.31654812e-02 -3.13400090e-01 2.47353166e-01\\n-1.16952881e-02 -1.67472754e-02 -1.31113119e-02 3.11052620e-01\\n-2.09411979e-01 2.11392432e-01 -1.23666100e-01 -1.21146508e-01\\n6.67195141e-01 1.01902232e-01 1.47004157e-01 2.33114623e-02\\n1.30074933e-01 -1.94097944e-02 1.51412591e-01 1.83593541e-01\\n-7.13611662e-01 3.52525890e-01 -4.87337783e-02 -1.44028351e-01\\n1.80180013e-01 -3.08852829e-02 2.19073623e-01 -2.66101241e-01\\n1.64769128e-01 -1.04989603e-01 -3.79963458e-01 -2.87437886e-01\\n-6.55080825e-02 1.53513700e-02 2.95921087e-01 -4.55361992e-01\\n-1.09440476e-01 3.17423344e-01 -4.63497728e-01 -1.59679592e-01\\n8.92490447e-02 2.01704860e-01 1.04925446e-01 2.30177388e-01\\n-2.25713164e-01 -4.01371181e-01 1.29678950e-01 -3.69636536e-01\\n-2.78756887e-01 4.42835279e-02 -2.86222309e-01 2.43840829e-01\\n4.30407748e-02 -2.34687421e-02 -1.60412550e-01 1.68125600e-01\\n-2.41217017e-01 -3.93397808e-02 5.57865873e-02 1.83352195e-02\\n3.27253103e-01 1.08457014e-01 -3.58237565e-01 3.57521087e-01\\n-1.30506426e-01 4.88535583e-01 4.39491048e-02 -8.68222594e-01\\n4.41113710e-01 3.23666453e-01 1.27051035e-02 -4.61118579e-01\\n6.69676006e-01 -3.17752749e-01 6.99751079e-02 1.28272638e-01\\n-4.49667782e-01 -3.83786052e-01 2.87580162e-01 -1.40270948e-01\\n-3.06006819e-01 4.11239892e-01 -3.48374695e-02 2.37221643e-01\\n1.66262448e-01 -1.98834524e-01 -1.25287801e-01 5.72368726e-02\\n-8.06577802e-02 -1.41752198e-01 -5.32241940e-01 -1.25490963e-01\\n-1.62854850e-01 -4.59709942e-01 -9.92025286e-02 -4.19222951e-01\\n-2.13731200e-01 -3.03757429e-01 -1.28771558e-01 1.12169556e-01\\n2.82974124e-01 1.53644606e-01 2.69080698e-02 -2.22780686e-02\\n1.81081146e-03 -6.99046552e-01 -1.70395672e-02 1.40919626e-01\\n4.10831749e-01 1.72452524e-01 1.19957469e-01 2.20967345e-02\\n9.68115330e-02 6.62361622e-01 -2.12963969e-01 -1.67775363e-01\\n1.44008815e-01 1.35973901e-01 6.17856309e-02 -7.53875226e-02\\n-4.45068255e-02 3.19290817e-01 -2.92737991e-01 2.45755017e-02\\n-1.10676929e-01 2.09890585e-03 4.54198062e-01 1.77935101e-02\\n-2.47854233e-01 -1.23551197e-01 -5.22314571e-02 1.69405445e-01\\n-5.87227583e-01 -2.10668266e-01 6.42023087e-01 2.17890054e-01\\n7.53060877e-02 1.79661870e-01 2.11588800e-01 -9.98500362e-03\\n-1.21951260e-01 -1.94618195e-01 2.64971644e-01 1.42501555e-02\\n2.19792753e-01 7.17970580e-02 -1.39897138e-01 -6.06924117e-01\\n-3.29479361e+00 -8.82915556e-02 1.09095693e-01 -2.73006946e-01\\n2.34146714e-01 -1.65900290e-01 2.29277611e-01 -3.96455824e-02\\n-2.93157190e-01 2.20349170e-02 -1.44111991e-01 -1.13465168e-01\\n2.54835576e-01 1.93013906e-01 9.50707868e-02 2.42019355e-01\\n2.07070321e-01 -2.97793955e-01 -1.30655821e-02 3.42681706e-01\\n-2.09378928e-01 -6.55908585e-01 2.04252467e-01 2.25470774e-02\\n2.17609465e-01 2.96048999e-01 -3.34026217e-01 -1.59448773e-01\\n-2.50045002e-01 -1.91597149e-01 2.73943730e-02 -3.09720814e-01\\n-1.55555204e-01 3.32004845e-01 2.32173949e-01 -1.46822006e-01\\n1.23034693e-01 -4.23497319e-01 -3.10417339e-02 -4.36987072e-01\\n1.40336096e-01 -6.03923917e-01 6.37416542e-03 -1.39846563e-01\\n7.51282930e-01 -3.33728313e-01 1.25664085e-01 1.44118696e-01\\n2.12537736e-01 1.20487474e-01 1.27959460e-01 1.71464495e-02\\n-1.65199161e-01 -2.69790649e-01 -2.04993367e-01 -8.18311498e-02\\n4.45428789e-01 4.78111267e-01 -1.88569605e-01 2.63199955e-03\\n4.56902012e-02 -2.69530833e-01 -3.32527876e-01 -1.91325575e-01\\n-1.21785566e-01 -2.58732200e-01 -7.20323145e-01 -5.64240515e-01\\n-1.39419258e-01 -2.53028363e-01 -1.42126963e-01 6.02528870e-01\\n-2.27586016e-01 -2.75160789e-01 -1.46686718e-01 -4.55412567e-01\\n2.85076886e-01 -1.23943016e-01 -3.58915105e-02 -1.68259576e-01\\n-9.94041860e-02 -3.81339729e-01 8.46914873e-02 -4.28443663e-02\\n-6.66216575e-03 -3.14173877e-01 8.83404911e-02 -2.95992158e-02\\n-3.26587856e-01 -5.94688058e-01 4.40588892e-01 9.83212367e-02\\n3.69544208e-01 1.27080098e-01 1.90202475e-01 8.45181197e-02\\n2.18577147e-01 -1.33115321e-01 -7.05248564e-02 -3.15957189e-01\\n1.01943351e-01 8.90210643e-02 5.43614089e-01 -2.96951294e-01\\n-2.82835029e-02 8.44120756e-02 -1.99600995e-01 8.43055174e-03\\n2.37977967e-01 -7.91839957e-02 1.66683737e-02 -9.03165713e-02\\n2.30992258e-01 -2.91430354e-01 -1.53484046e-01 2.70495582e-02\\n2.64248438e-03 4.55236435e-01 2.66428869e-02 -3.93409908e-01\\n-7.88372010e-02 3.65331352e-01 7.14963675e-02 -5.37737533e-02\\n-2.42067546e-01 -2.85004918e-03 -2.92126358e-01 3.09423417e-01\\n1.00868709e-01 -1.01762034e-01 -1.92996308e-01 -9.35619920e-02\\n-1.27290815e-01 3.39463532e-01 2.72396326e-01 1.54111758e-01\\n1.57700926e-02 -4.26059991e-01 -7.63534307e-02 1.89522207e-01\\n1.91104084e-01 4.22139943e-01 1.51736274e-01 -1.72707587e-01\\n5.95854782e-02 2.89742887e-01 -1.60266906e-01 2.00557947e-01\\n-2.21819401e-01 1.03353120e-01 -5.77568173e-01 -2.44985282e-01\\n-2.11932361e-01 -3.62053394e-01 1.75356388e-01 3.83611232e-01\\n1.75234109e-01 1.55492956e-02 6.36831298e-02 -4.97183859e-01\\n2.61801481e-01 1.19642094e-02 1.93924174e-01 1.33040592e-01\\n-3.71299684e-05 5.37993789e-01 -1.40993930e-02 -2.42739365e-01\\n-1.64872482e-01 9.33868438e-02 -2.10129008e-01 -1.07016712e-01\\n4.21185717e-02 -4.36296284e-01 -8.98144916e-02 3.91320229e-01\\n5.73896170e-02 -2.63004184e-01 -4.56380621e-02 2.13908762e-01\\n-1.05628774e-01 -3.38185579e-01 -2.74703324e-01 1.34671986e-01\\n3.58775020e-01 1.16775051e-01 2.76881367e-01 -4.36510682e-01\\n-3.51449251e-02 -8.40595737e-02 -1.36033297e-02 3.65587234e-01\\n1.57467365e-01 3.31209116e-02 -5.86318448e-02 -2.35338598e-01\\n4.38659906e-01 -1.16057433e-01 -1.40816391e-01 2.01712191e-01\\n5.02230525e-02 -1.38896525e-01 -4.28875506e-01 1.56025290e-02\\n-3.50617543e-02 -1.78522170e-01 -3.39262187e-02 1.48156792e-01\\n2.20859703e-02 1.21168137e-01 -6.34493351e-01 -2.48929098e-01\\n-3.19484323e-01 4.10557799e-02 1.70104504e-02 -6.08769059e-01\\n-3.38591188e-02 -6.21672645e-02 -6.55009389e-01 2.45657593e-01\\n-7.61635080e-02 -1.49740502e-01 2.00906888e-01 3.36974487e-02\\n-2.43646950e-01 -1.05158620e-01 1.18634097e-01 2.96207011e-01\\n-2.70151913e-01 -1.27451494e-01 -7.76243955e-02 -1.01477098e+00\\n2.26748347e-01 -7.58480001e-03 -1.87050670e-01 1.60530001e-01\\n-1.16258442e-01 -6.28124475e-01 1.53057396e-01 -4.07594323e-01\\n-1.61295950e-01 -4.23905328e-02 -2.53373146e-01 -4.12045300e-01\\n8.05107504e-02 -6.04819506e-05 -2.60975659e-01 3.73160541e-01\\n-3.15223813e-01 3.81642729e-01 -1.38292477e-01 1.47337854e-01\\n4.79638837e-02 -2.77433038e-01 9.82578769e-02 -3.75810146e-01\\n-3.30354512e-01 -1.86240762e-01 -2.96361089e-01 -1.62786722e-01\\n2.77641378e-02 -3.10156763e-01 -9.57624093e-02 -3.18254232e-02\\n2.98890710e-01 5.29303737e-02 -1.87460452e-01 -2.48638153e-01\\n9.13327783e-02 -5.73361814e-01 1.45304307e-01 -9.64584425e-02\\n-1.00128025e-01 -9.27492678e-02 2.45453179e-01 1.69633582e-01\\n1.69175386e-01 -4.48225319e-01 2.81603485e-01 -4.39213037e-01\\n-2.82277226e-01 7.25593045e-03 2.80451588e-02 -5.47081903e-02\\n3.43179643e-01 -4.94536102e-01 -6.43737838e-02 4.99978185e-01\\n4.11997512e-02 1.38114765e-01 2.42351264e-01 -6.43621385e-02\\n-1.67087838e-01 3.62065136e-01 -4.24952507e-01 1.79231584e-01\\n7.29371786e-01 1.44141719e-01 1.12156764e-01 1.90790191e-01\\n1.71227545e-01 2.31625080e-01 4.90581512e-01 3.36684361e-02\\n-1.53425246e-01 3.07749867e-01 5.16249090e-02 -5.47651052e-01\\n-3.97713222e-02 1.93007290e-04 -2.69419223e-01 -3.98431480e-01\\n6.12705827e-01 4.90368545e-01 -3.83640140e-01 -2.64176756e-01\\n-2.04941541e-01 -2.12765649e-01 8.35994035e-02 -1.49813779e-02\\n2.53417548e-02 -9.52918679e-02 5.02837241e-01 -1.51598677e-01\\n1.65027380e-01 5.04213810e-01 -8.51858482e-02 -2.59528726e-01\\n-4.41176742e-02 1.34843305e-01 4.05715331e-02 5.02608061e-01\\n-2.18451515e-01 2.07932532e-01 1.21991605e-01 1.70661226e-01\\n-8.40038434e-02 -4.29004803e-02 1.52677417e-01 1.46115527e-01\\n1.61297917e-02 6.83871657e-02 4.16963279e-01 3.85436177e-01\\n3.12853873e-01 4.31114912e-01 2.91184604e-01 6.34451956e-02\\n5.51274657e-01 5.13934255e-01 3.42959881e-01 1.70437232e-01\\n-1.62711799e-01 8.49794596e-04 1.96958691e-01 -1.87542848e-03\\n3.19007277e-01 3.10599148e-01 2.75106914e-02 8.47202539e-01\\n3.33353907e-01 3.18626493e-01 6.55432761e-01 -5.91719508e-01\\n-4.20968831e-01 -4.35312949e-02 4.82966840e-01 -4.20319855e-01\\n4.74783629e-02 1.78930014e-01 -2.89573669e-01 1.18146233e-01\\n-5.54744422e-01 -2.29898453e-01 -3.68408337e-02 3.80045176e-02\\n8.13268274e-02 -1.67084754e-01 -1.50439218e-01 1.88644052e-01\\n-4.62715514e-02 -1.44491643e-01 -5.52000284e-01 -2.17371896e-01\\n-2.16592282e-01 -5.31742573e-02 -5.80829196e-02 -1.33203059e-01\\n-5.55398539e-02 -3.23277831e-01 -9.04628932e-02 1.07647441e-02\\n3.15549225e-01 -3.61801982e-02 -6.97765797e-02 -8.65507573e-02\\n2.10235745e-01 1.84579462e-01 5.56110978e-01 -9.92185175e-02\\n1.45937517e-01 -2.29621902e-01 -1.96239024e-01 1.37797743e-01\\n1.57844856e-01 6.17010742e-02 -4.26600967e-03 2.96170324e-01\\n-2.97316641e-01 -2.34688699e-01 1.40724316e-01 2.85915822e-01\\n-4.23482805e-01 5.93751296e-02 -1.15961999e-01 1.07776701e-01\\n1.07134640e-01 1.60300091e-01 -3.09100002e-01 1.32198408e-02\\n-1.34267464e-01 -4.32812870e-01 3.02577555e-01 -1.66335136e-01\\n-1.05731949e-01 1.34063452e-01 2.65380323e-01 1.46236002e-01\\n-2.33838663e-01 5.00505567e-02 -1.87936813e-01 2.97005568e-02\\n-2.01564915e-02 3.31174433e-01 -2.11917818e-01 -3.31489176e-01\\n-2.08182216e-01 2.32414663e-01 -1.07730284e-01 1.34615511e-01\\n3.61810327e-02 3.60778868e-01 8.23390037e-02 -2.73905694e-04\\n5.04121244e-01 1.05119132e-01 -3.08903933e-01 -2.00668782e-01\\n-2.63254225e-01 -2.13006213e-01 -1.25692308e-01 -4.06870991e-02\\n2.23074764e-01 -3.31324905e-01 -4.16135229e-03 -2.19056427e-01\\n-2.10560128e-01 -3.19706559e-01 3.99379022e-02 -1.04404412e-01]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team The Taxes & Exchange of Information (TAXI) team is a dynamic team of Business Analysts and Software Developers located in Zurich. We follow an agile process, working closely together as a team but also interact with other related teams and clients to develop new product features and maintain existing ones in live use. The team is the owner of functionality around Swiss Taxes, Withholding Taxes, US QI and FATCA Reporting, Automatic Exchange of Information (CRS), Generic Tax Statements for offshore clients (including capital gain calculation), Anti Money Laundering and other highly flexible Tax Reporting Tools used by our clients. This job represents a unique opportunity to advance your development skills, but also to acquire banking know how on a top level. You are encouraged to acquire more detailed and interdisciplinary knowledge about other areas in our banking system, becoming an expert of our core banking software and the corresponding business processes in the industry. Your mission Analyze, design and develop new features for functionality within the team’s responsibility Analyze and resolve software defects, improve and optimize existing functionality Improve quality of our functionality via automated testing and code reviews What you need University degree in Computer Science, Information Technology, Mathematics, Physics Engineering or similar Strong software engineering skills, understanding of software development processes and best practices Strong analytical and problem-solving skills and high standards of quality Team oriented and good communication skills (English) to closely collaborate with customers and colleagues globally You will get extra points for the following Knowledge in Oracle database architecture and PL/SQL is a plus Experience in working with agile methodologies German language skills are a plus Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Don’t be shy – apply! Avaloq Evolution AG Michelle Hiestand, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland careers@avaloq.com www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " '[\"Verbal Communication Skills\", \"Writing\", \"Team Oriented\", \"Professionalism\", \"Collaboration\", \"Problem Solving\", \"Communications\", \"Information Technology\", \"Positivity\"]',\n", + " '[\"PL/SQL\", \"Interactivity\", \"Computer Science\", \"Analytics\", \"Oracle Databases\", \"Automated Testing Framework\", \"Good Agricultural Practices\", \"Anti Money Laundering\", \"Physics Engine\", \"Industrialization\", \"Wealth Management\", \"Offshoring\", \"Calculations\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"Levelling\", \"Software Engineering\", \"Capital Gains\", \"Mathematical Physics\", \"Agile Methodology\", \"Business Process\", \"Library For WWW In Perl\", \"Withholding Tax\", \"Code Review\", \"Business Correspondence\", \"Banking Software\", \"Banking\", \"Software Development\", \"Quality Improvement\", \"New Product Development\", \"EN 1993 Building Codes\", \"Agile Unified Process\", \"Reporting Tools\"]',\n", + " \"['English', 'Tigrinya', 'Ewe', 'Church Slavonic']\"],\n", + " ['113',\n", + " 'database specialist (devops)',\n", + " 'Allschwil',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-2.21629173e-01 3.51055294e-01 5.05267501e-01 1.18262760e-01\\n6.38019383e-01 -1.01799287e-01 1.33608365e-02 2.76150197e-01\\n-4.03008424e-02 -3.46214682e-01 -8.52028355e-02 -2.40979016e-01\\n-3.00033521e-02 5.81459142e-03 7.81021733e-03 4.60274458e-01\\n3.19128931e-01 4.53145057e-02 -1.34454384e-01 3.56937468e-01\\n6.16429299e-02 -9.24826786e-02 2.27725089e-01 7.43774772e-01\\n3.92673194e-01 4.19839658e-02 -9.49965697e-03 6.26118258e-02\\n-3.00799072e-01 -2.54942685e-01 4.22128409e-01 -2.93480717e-02\\n-1.02659807e-01 -3.71596992e-01 1.07033588e-01 3.63783464e-02\\n-1.77193061e-01 1.35531425e-02 -1.20578311e-01 1.20428458e-01\\n-4.14840460e-01 -1.93503901e-01 -1.09855467e-02 5.42598357e-03\\n-3.51396054e-01 -3.41566354e-01 2.69865594e-03 -6.83298558e-02\\n1.12695165e-01 -6.09535873e-02 -4.17772830e-01 3.59378695e-01\\n-3.65660250e-01 -1.18052267e-01 4.12555873e-01 6.69190347e-01\\n7.50916600e-02 -4.66887653e-01 -4.67214227e-01 -3.80778372e-01\\n1.75623566e-01 -9.56601202e-02 7.41594955e-02 -2.60692865e-01\\n3.24577957e-01 -4.10459787e-02 6.63110241e-02 2.68235952e-01\\n-6.48706019e-01 -8.79003033e-02 -3.05865943e-01 -1.38641847e-02\\n-3.63038808e-01 -8.27358663e-02 -4.00437027e-01 -1.48351803e-01\\n-9.42021981e-02 3.54292959e-01 2.24006139e-02 8.10145773e-03\\n-1.82575539e-01 2.75400609e-01 -2.13815585e-01 3.50243390e-01\\n2.39694789e-01 1.15466274e-01 3.85124356e-01 3.94593954e-01\\n-3.68749082e-01 4.19387579e-01 2.50435323e-01 -2.67988980e-01\\n2.72510648e-01 2.57330458e-03 3.37528199e-01 9.52129215e-02\\n2.76866648e-02 8.34188834e-02 -8.44586790e-02 2.55422026e-01\\n1.94873154e-01 -2.83389211e-01 -1.51098028e-01 -1.15273602e-01\\n2.26611421e-02 -1.71444952e-01 6.58626556e-02 2.24550873e-01\\n-3.37050587e-01 4.73765880e-01 1.22472666e-01 -2.51505792e-01\\n-3.61690223e-02 -5.65726876e-01 -1.32268399e-01 -9.94566754e-02\\n-8.59177858e-02 1.12329833e-01 1.93511680e-01 3.13945174e-01\\n2.39498243e-01 -1.19714513e-01 1.36231050e-01 7.73925185e-01\\n-4.73320745e-02 7.45970756e-02 -1.84984326e-01 3.59553158e-01\\n1.01801110e-02 -3.09622318e-01 2.14154869e-01 1.80369988e-01\\n-8.48452896e-02 3.20389830e-02 -1.40360281e-01 2.74115711e-01\\n-5.84994704e-02 -2.55801439e-01 -2.89122522e-01 1.31770015e-01\\n-1.45069718e-01 -5.19979239e-01 4.72908407e-01 4.49520983e-02\\n9.83820930e-02 -1.15136959e-01 -1.00151477e-02 -6.30827323e-02\\n-2.26361863e-02 2.20046386e-01 1.75632447e-01 1.07546911e-01\\n-2.97908783e-01 -2.81033427e-01 -2.11630017e-01 1.93925753e-01\\n-2.47077301e-01 1.07669652e-01 -1.99815288e-01 -1.43131822e-01\\n2.79471427e-01 1.20126285e-01 -5.43374240e-01 2.89191723e-01\\n-1.09231792e-01 -9.97397602e-02 -1.33237123e-01 4.28939521e-01\\n-1.56789288e-01 1.99264675e-01 -4.58718501e-02 -9.22909677e-02\\n5.80593348e-01 9.21433568e-02 1.48296684e-01 -3.45613919e-02\\n3.56731981e-01 -1.04390316e-01 1.76500678e-01 1.46277875e-01\\n-6.67370260e-01 3.57120395e-01 -1.37445241e-01 -2.56091785e-02\\n1.72017127e-01 -8.20191205e-02 4.57576871e-01 -3.31384420e-01\\n1.30478479e-02 -2.12369725e-01 -2.95065641e-01 -4.24093962e-01\\n-2.57632256e-01 -9.81778204e-02 4.08200800e-01 -4.00384247e-01\\n-1.48879915e-01 2.77111977e-01 -5.61296821e-01 -5.76710999e-02\\n2.00339511e-01 3.34574401e-01 1.99223444e-01 1.70863047e-01\\n-5.34708798e-02 -5.36837816e-01 1.28689826e-01 -4.86899465e-01\\n-3.83091897e-01 2.03433588e-01 -3.88229638e-01 1.97994903e-01\\n1.52929991e-01 4.22280729e-02 -1.30433410e-01 4.65176441e-02\\n-2.94609845e-01 9.50609799e-03 2.01399565e-01 8.43048021e-02\\n3.15009058e-01 1.14106603e-01 -4.97842878e-01 5.63679099e-01\\n-2.01272905e-01 5.56879759e-01 1.76251084e-01 -9.52857375e-01\\n5.74285567e-01 4.52440977e-01 -6.04739748e-02 -2.83134848e-01\\n5.80223322e-01 -2.97672689e-01 9.23622921e-02 7.19048232e-02\\n-2.53997743e-01 -1.97578624e-01 2.21234933e-01 -9.74571034e-02\\n-2.80291378e-01 5.31999707e-01 4.45505157e-02 9.45860222e-02\\n1.86144024e-01 -2.12344676e-01 -2.62913734e-01 1.73345823e-02\\n-2.34838888e-01 -2.08484933e-01 -5.14300585e-01 2.35711355e-02\\n-9.29111540e-02 -4.71425623e-01 -2.26326123e-01 -5.06492734e-01\\n-1.74050570e-01 -3.77630085e-01 -1.43745139e-01 1.49846688e-01\\n1.61658242e-01 1.04459576e-01 -1.01332068e-01 1.24571249e-01\\n-1.06837757e-01 -6.45931065e-01 -2.82109957e-02 4.80521359e-02\\n3.47964317e-01 3.27732742e-01 1.82763770e-01 -4.73226234e-02\\n2.68210098e-02 5.92691839e-01 -4.38774496e-01 -1.67595342e-01\\n2.35447586e-01 1.05166167e-01 -1.19639328e-02 -1.04286872e-01\\n5.39473593e-02 3.68830115e-01 -2.09700763e-01 8.10507312e-03\\n6.58780783e-02 3.29981558e-02 3.98972571e-01 -3.77697200e-02\\n-2.85653353e-01 -2.73397654e-01 -2.02915035e-02 2.96222031e-01\\n-5.33287168e-01 -3.40967596e-01 6.29128397e-01 2.38196000e-01\\n1.09747082e-01 1.88914970e-01 3.34026724e-01 -1.85570568e-02\\n-1.40943453e-01 -2.56969452e-01 2.84072995e-01 8.36907923e-02\\n2.35466510e-01 2.02198830e-02 -1.25899732e-01 -6.22702599e-01\\n-3.22854924e+00 -6.20628074e-02 8.40189084e-02 -2.63080686e-01\\n1.96491420e-01 -6.20883554e-02 1.72800481e-01 -3.37070897e-02\\n-4.19271111e-01 2.60505322e-02 -2.94447303e-01 -1.84843913e-01\\n1.33670107e-01 3.09675127e-01 1.69268295e-01 1.25264421e-01\\n1.68156251e-01 -3.20696861e-01 1.77230116e-03 3.70315313e-01\\n-8.54482949e-02 -7.17421412e-01 1.70154661e-01 3.82644013e-02\\n2.04995483e-01 2.07935035e-01 -4.53262836e-01 -1.28619164e-01\\n-2.97975004e-01 -1.84477180e-01 1.21778108e-01 -2.26665780e-01\\n-1.18539222e-01 2.47131109e-01 1.83210567e-01 -1.20658517e-01\\n4.39720713e-02 -4.09950793e-01 7.44160078e-03 -4.67203915e-01\\n5.13603091e-02 -6.66235745e-01 1.69091180e-01 -5.66680953e-02\\n6.20448649e-01 -2.87556767e-01 1.39225721e-01 1.15109831e-01\\n1.96142688e-01 1.70109332e-01 1.27564952e-01 6.73147291e-02\\n-2.46444091e-01 -1.80312485e-01 -1.75561965e-01 -1.92979217e-01\\n5.95670402e-01 2.50608683e-01 -1.38076380e-01 -9.08095948e-03\\n1.56564955e-02 -3.16022158e-01 -4.38112915e-01 -3.01851302e-01\\n-2.43053317e-01 -1.58318907e-01 -6.73852861e-01 -5.72096407e-01\\n-1.33285716e-01 -1.11364178e-01 -1.76170409e-01 5.91026545e-01\\n-3.31824958e-01 -3.49011570e-01 -9.56333652e-02 -5.09308398e-01\\n2.85354793e-01 -1.78240076e-01 2.53555384e-02 -1.59365013e-01\\n-1.76147312e-01 -3.99315894e-01 1.59299344e-01 1.92013569e-02\\n-1.69801936e-01 -2.47375727e-01 9.18467268e-02 -1.32431090e-01\\n-3.32467645e-01 -4.89793748e-01 5.27260780e-01 8.72293860e-02\\n4.05263513e-01 1.33562520e-01 3.46306533e-01 4.94000735e-03\\n3.14892679e-01 -1.31183311e-01 1.14157580e-01 -5.22596061e-01\\n6.59671500e-02 1.10997744e-01 6.33706868e-01 -2.35261098e-01\\n9.76634622e-02 6.24952875e-02 -1.79982454e-01 -6.21374324e-02\\n3.17863077e-01 7.05922395e-02 1.20407850e-01 -1.93389758e-01\\n3.07581097e-01 -4.19857532e-01 -2.67578363e-01 7.94110969e-02\\n1.59294069e-01 6.53479517e-01 -1.01019196e-01 -3.91667902e-01\\n-1.47634909e-01 4.86773521e-01 -5.41872755e-02 -9.12138373e-02\\n-1.73665285e-01 1.75653800e-01 -2.53399640e-01 3.01299840e-01\\n9.87287760e-02 -1.26418412e-01 -3.07479113e-01 -9.17556062e-02\\n-5.43168224e-02 2.74520874e-01 2.10313305e-01 1.90992564e-01\\n-3.23374607e-02 -3.89847249e-01 -8.11638907e-02 1.46820158e-01\\n1.53821826e-01 3.16722125e-01 1.38582170e-01 -3.43104899e-01\\n3.49027030e-02 2.48041496e-01 -1.48090675e-01 2.17820793e-01\\n-1.12040408e-01 1.43708259e-01 -6.53729260e-01 -2.82655299e-01\\n-1.94795012e-01 -2.26225093e-01 5.58278225e-02 2.45235473e-01\\n1.76557630e-01 -2.84765400e-02 1.31965093e-02 -4.04004753e-01\\n4.06089664e-01 -5.80830425e-02 1.89201400e-01 1.05512895e-01\\n-9.47658252e-03 7.15641320e-01 2.76583061e-02 -2.86098540e-01\\n-1.12567134e-01 4.77534495e-02 -1.84447274e-01 -2.27880999e-01\\n6.47322461e-02 -3.51427674e-01 -1.73484832e-01 4.42162991e-01\\n1.51203498e-01 -1.36835873e-01 -1.57478273e-01 2.21023381e-01\\n-2.93393433e-02 -2.40786344e-01 -2.82821417e-01 4.74000871e-02\\n2.47788504e-01 6.56807944e-02 3.07327151e-01 -4.78753507e-01\\n6.30297214e-02 -1.46224320e-01 1.23199724e-01 4.64651018e-01\\n1.98537856e-01 1.23419918e-01 -2.17709783e-02 -2.20453992e-01\\n4.36482400e-01 7.48200417e-02 -1.27123386e-01 8.86408985e-02\\n7.56553859e-02 -2.85125554e-01 -4.97471064e-01 3.25695537e-02\\n-6.20501004e-02 -1.65162608e-01 1.85488284e-01 1.21636532e-01\\n1.29897401e-01 3.28669250e-02 -6.69897377e-01 -1.87718093e-01\\n-3.73038232e-01 1.26751274e-01 -4.15185280e-02 -5.96203089e-01\\n-1.07634827e-01 -2.02940442e-02 -6.59462154e-01 2.54183263e-01\\n-6.84229210e-02 -3.19866203e-02 7.57576674e-02 8.29596445e-03\\n-3.20236981e-01 -1.68030292e-01 2.57312119e-01 5.77080362e-02\\n-3.17427099e-01 -2.42647082e-01 1.54451970e-02 -1.04283738e+00\\n1.85530484e-01 -3.50937285e-02 -1.27189174e-01 1.30267292e-01\\n-7.10264605e-04 -8.14352691e-01 1.52499720e-01 -4.02544230e-01\\n-1.67053297e-01 -2.88234130e-02 -2.33500779e-01 -4.58254963e-01\\n7.57605731e-02 -2.72575002e-02 -1.52952790e-01 3.47417623e-01\\n-3.21920156e-01 3.86313379e-01 -8.51767734e-02 6.07542545e-02\\n7.79158697e-02 -2.98684478e-01 4.74901907e-02 -3.73607248e-01\\n-4.38094705e-01 -1.84958890e-01 -2.64453977e-01 -2.63250083e-01\\n-2.52470113e-02 -2.88695395e-01 -1.23973347e-01 3.53032425e-02\\n3.46445143e-01 1.46735892e-01 -1.26964495e-01 -1.43130749e-01\\n2.38393899e-02 -4.57602441e-01 2.68920183e-01 -1.60758719e-01\\n-1.79780163e-02 -1.69361800e-01 3.83071125e-01 -6.97162515e-03\\n1.99263588e-01 -3.94759506e-01 5.49968719e-01 -2.18504146e-01\\n-4.17035818e-01 -1.69636458e-01 1.02602683e-01 1.55503768e-02\\n2.15556830e-01 -4.78502989e-01 -1.34214953e-01 2.96336055e-01\\n9.32275876e-02 1.11726590e-01 3.58028978e-01 -1.79886252e-01\\n-1.03986681e-01 1.70662612e-01 -5.46999633e-01 8.49941969e-02\\n7.74375141e-01 1.66594803e-01 1.35821372e-01 4.59623039e-02\\n6.00789972e-02 2.53479838e-01 5.66726923e-01 -8.97147059e-02\\n-1.47054955e-01 3.75418693e-01 9.42421332e-02 -6.03301644e-01\\n-1.93042949e-01 -6.25707060e-02 -7.47216716e-02 -4.76640493e-01\\n5.52248836e-01 3.28002304e-01 -3.33323419e-01 -3.41665477e-01\\n-2.05048025e-01 -1.18827537e-01 2.10193202e-01 3.37882489e-02\\n1.44332215e-01 -1.89322665e-01 4.92031157e-01 -2.38805450e-02\\n3.04279089e-01 4.80418980e-01 -2.23561242e-01 -3.31427395e-01\\n-8.33137855e-02 1.59117401e-01 1.05903335e-01 4.28295314e-01\\n-1.15010999e-01 2.38267154e-01 9.68317017e-02 1.30421609e-01\\n-3.47229630e-01 -1.18136190e-01 1.07670449e-01 3.50331180e-02\\n4.91447710e-02 8.53943899e-02 4.54626560e-01 4.07587230e-01\\n3.81283194e-01 4.19060141e-01 2.75823742e-01 -2.00284217e-02\\n5.95641971e-01 5.71206570e-01 3.35548520e-01 1.28747523e-01\\n-1.04015339e-02 1.20058000e-01 1.40788004e-01 2.49215104e-02\\n3.86389792e-01 3.66437554e-01 1.31175771e-01 9.18718100e-01\\n2.63106912e-01 3.64930838e-01 7.04167485e-01 -6.44713998e-01\\n-2.81328052e-01 9.31991786e-02 4.93181825e-01 -4.42482501e-01\\n1.75366178e-02 1.28953248e-01 -2.48012498e-01 1.61904663e-01\\n-5.05342245e-01 -2.56688744e-01 -2.53601652e-02 8.84938166e-02\\n3.17163803e-02 -8.32212269e-02 -1.21480525e-01 2.03955039e-01\\n-1.31659731e-01 -1.43104047e-01 -3.87008816e-01 -2.35884488e-01\\n-2.54936516e-01 -6.71830848e-02 -3.74516435e-02 -1.26769707e-01\\n-1.17008053e-01 -2.62353361e-01 -5.22936098e-02 -2.05557588e-02\\n2.88901150e-01 -1.34044096e-01 -7.39191994e-02 -1.95719972e-01\\n2.35587642e-01 2.32545838e-01 7.16427028e-01 -7.04785138e-02\\n1.36884630e-01 -2.44226828e-01 -1.61389962e-01 2.05334444e-02\\n1.53919250e-01 -3.91046666e-02 -8.28764983e-04 4.11200643e-01\\n-2.72701830e-01 -1.54815972e-01 7.39392266e-02 3.39608550e-01\\n-3.45297128e-01 -1.08373305e-02 -7.35293701e-02 8.43833312e-02\\n1.18863387e-02 1.14998318e-01 -2.24859104e-01 9.62040722e-02\\n-1.84260070e-01 -5.54804564e-01 3.10518622e-01 -2.47360289e-01\\n-1.13714263e-01 -3.35567258e-02 2.20117033e-01 2.01406211e-01\\n-2.55737692e-01 8.83527398e-02 -1.46639079e-01 1.46311060e-01\\n5.25678694e-02 4.28875744e-01 -2.73783475e-01 -1.88229695e-01\\n-2.71586776e-01 2.04715326e-01 -6.02524802e-02 4.89975065e-02\\n-4.30177562e-02 4.41746444e-01 1.40567958e-01 1.19387440e-01\\n4.91982996e-01 4.13853815e-03 -2.72361100e-01 -3.41053933e-01\\n-1.54788256e-01 -1.15021415e-01 2.85966638e-02 -9.95744020e-02\\n3.06358904e-01 -3.30768287e-01 -8.98708254e-02 -2.22869694e-01\\n-2.61587709e-01 -4.23883408e-01 -5.14808781e-02 1.42157506e-02]]',\n", + " 'Swiss AviationSoftware is a 100% subsidiary of Swiss International Air Lines and successfully develops and distributes the software package AMOS which manages the maintenance, engineering and logistics requirements of modern airlines. In order to strengthen our leading market position we are looking for dedicated employees who would like to work in a fascinating international environment with more than 180 customers from all over the world. We are looking for a skilled Database Specialist to be responsible for the further support and development of the interface between our application server and the database systems PostgreSQL, Oracle and SAP ASE. Do you want to be part of a product development team? Do you want to be responsible for optimizing the database access layer and give the development teams tips and tricks about data security, data access, and data modeling? Then help us to continue the success story of AMOS and apply. Tasks Responsible for the communication between the AMOS application server (JDBC) and database system Planning and control of the database usage Definition of the system requirements Support the application development in terms of database design, usage and operation Research new database features and transfer them into development standards Definition of the database maintenance to ensure information accuracy and best performance Comply with the full application life-cycle Work in agile development teams Perform code-reviews and write automated tests Requirements Successfully completed a degree/diploma in software engineering, computer science, or related discipline Strong foundation in DBMS systems (PostgreSQL, Oracle, SAP ASE) and the standard database features Strong foundation in Java and SQL Strong object oriented modelling and analysis skills Significant experience/interest in writing enterprise applications Knowledge of Agile Development principles Excellent organization, communication and interpersonal skills Strong customer orientation, ability to make pragmatic compromises to make progress Fluency in English, German language skills are an advantage What we offer Working in an open and cooperative environment with a motivated and friendly team Good professional and personal development opportunities Active participation in the continuous improvement of processes International work environment with people from around the globe Excellent working conditions in pleasant surroundings: brand new office spaces and ergonomic office furniture, lounge zone, terrace, coffee & break room Ideal work-life balance and different sport possibilities (e.g. squash, soccer, ice skating – partially supported by company) Child allowance and the possibility of home office Fringe benefits: discount on flights, annual TNW abo, discount offers for hotels and hire cars, advantageous credit card conditions, and more',\n", + " '[\"Writing\", \"Cooperation\", \"Professionalism\", \"Planning\", \"Management\", \"Friendliness\", \"Communications\", \"Positivity\"]',\n", + " '[\"Application Development\", \"System Requirements\", \"Computer Science\", \"Data Modeling\", \"Life Cycle Assessment\", \"Branding\", \"Maintenance Engineering\", \"Credit Card Applications\", \"Activism\", \"Apex Data Loader\", \"PostgreSQL\", \"Layering\", \"Operations Research\", \"Application Servers\", \"Test Automation\", \"E (Programming Language)\", \"Hostile Work Environment\", \"Database Design\", \"Software Engineering\", \"JDBC Driver\", \"Ergonomics\", \"Logistics\", \"Continuous Improvement Process\", \"Object-Oriented Design\", \"Transferable Skills Analysis\", \"Office Space Planning\", \"Code Review\", \"Database Systems\", \"Community Organizing\", \"Remote Database Access\", \"New Database Manager (NDBM)\", \"Personality Development\", \"Java (Programming Language)\", \"Database Abstraction Layer\", \"SQL (Programming Language)\", \"Agile Product Development\", \"Controllability\"]',\n", + " \"['English', 'Cornish']\"],\n", + " ['16',\n", + " 'software engineer (perfomance engineering)',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-1.82906210e-01 2.52426744e-01 4.35905248e-01 4.00441661e-02\\n6.18332028e-01 -6.66051209e-02 -5.60500361e-02 3.74677479e-01\\n-2.12279838e-02 -3.41936886e-01 -1.22641459e-01 -1.43844545e-01\\n-4.83607873e-02 3.17012481e-02 1.32659391e-01 3.50069255e-01\\n1.67590097e-01 6.86599836e-02 -9.21582952e-02 2.53600419e-01\\n1.24319188e-01 -5.05499961e-03 1.72717988e-01 6.70853317e-01\\n3.27433825e-01 9.28516164e-02 -7.33415931e-02 -3.40637565e-02\\n-3.21717530e-01 -2.35052809e-01 4.20188397e-01 1.07428022e-01\\n-1.06599212e-01 -3.13745379e-01 1.00218140e-01 8.96744523e-03\\n-2.40329057e-01 -1.03079125e-01 -4.43820842e-02 1.22378163e-01\\n-4.12883431e-01 -1.90165445e-01 1.81480683e-02 8.87348801e-02\\n-2.48983935e-01 -3.52931350e-01 5.14226146e-02 -1.11755818e-01\\n1.27683252e-01 -7.15960860e-02 -5.56132615e-01 3.06931198e-01\\n-3.09140891e-01 -1.73025370e-01 3.43795091e-01 5.64562023e-01\\n-5.63143156e-02 -4.68926519e-01 -4.58973140e-01 -2.57725060e-01\\n8.24214742e-02 -1.51263878e-01 2.18041409e-02 -3.10291916e-01\\n2.84862190e-01 9.20081809e-02 1.07123800e-01 3.27784508e-01\\n-7.33363986e-01 -1.16322666e-01 -1.99419379e-01 -4.98958379e-02\\n-3.45357090e-01 -1.01916187e-01 -2.15091616e-01 -1.09312095e-01\\n-1.67629421e-01 4.55749065e-01 7.34335184e-02 6.24479689e-02\\n-4.61146384e-02 2.88452834e-01 -1.04743071e-01 3.84398609e-01\\n2.34534442e-01 1.26523226e-01 1.25417262e-01 3.09586704e-01\\n-3.80819142e-01 4.17543352e-01 9.00044888e-02 -2.84624308e-01\\n1.71290219e-01 1.10908389e-01 2.75148243e-01 2.73980200e-02\\n5.58708236e-02 6.55611083e-02 -1.25195652e-01 2.30264291e-01\\n1.51971862e-01 -2.32006371e-01 1.20319624e-03 -1.73625246e-01\\n3.47839706e-02 -4.40125726e-02 -3.64483483e-02 1.27246350e-01\\n-2.15813071e-01 3.89259011e-01 1.18292384e-01 -2.16095269e-01\\n-1.33088306e-02 -5.76294601e-01 -8.22655559e-02 -1.12718061e-01\\n-8.00809562e-02 4.04755659e-02 2.44155884e-01 1.42227948e-01\\n3.29833806e-01 7.18303118e-03 1.99982822e-01 8.25950205e-01\\n-1.06709590e-02 3.35207954e-02 -2.33677045e-01 3.34085822e-01\\n8.66844729e-02 -2.31046155e-01 1.14587776e-01 3.08848202e-01\\n-1.57712027e-02 -2.04050986e-04 -1.79856256e-01 2.61582404e-01\\n-1.45300388e-01 -1.97018653e-01 -2.65887588e-01 1.67411789e-01\\n-7.77277052e-02 -3.75383139e-01 4.79981124e-01 1.65114492e-01\\n1.37653127e-01 -1.33229569e-01 -1.05670262e-02 -1.25942349e-01\\n-1.27623603e-02 1.38970897e-01 4.19580042e-02 9.25963148e-02\\n-3.13922286e-01 -2.63045073e-01 -1.82897925e-01 9.34671685e-02\\n-1.64646983e-01 6.32658228e-02 -1.93777099e-01 -6.53774068e-02\\n2.83849865e-01 8.44993666e-02 -3.73850703e-01 2.75878727e-01\\n6.50979578e-02 -9.36596543e-02 9.22660169e-04 3.45211357e-01\\n-1.68675706e-01 2.18734026e-01 -1.21198930e-01 -1.90360829e-01\\n5.44629931e-01 6.68403357e-02 1.18452765e-01 1.18599483e-03\\n1.80529311e-01 -9.38426331e-02 1.98187143e-01 1.40543550e-01\\n-7.50633776e-01 3.61937553e-01 -1.01284102e-01 -6.78293407e-02\\n1.34873256e-01 4.16774154e-02 2.87886530e-01 -2.58184940e-01\\n1.19437978e-01 -1.58639416e-01 -4.11644101e-01 -3.27273905e-01\\n-8.56337398e-02 8.58755857e-02 2.60414094e-01 -4.29878384e-01\\n-1.54058546e-01 1.97101831e-01 -4.39113289e-01 -1.34870857e-01\\n5.70569336e-02 2.53222018e-01 1.21243417e-01 1.10961601e-01\\n-1.45248547e-01 -4.19172466e-01 1.25692934e-01 -4.81229842e-01\\n-3.37245166e-01 6.99787661e-02 -2.52700657e-01 2.09231079e-01\\n3.63427885e-02 -3.05636227e-02 -1.07160300e-01 1.11595854e-01\\n-3.06079417e-01 -4.14347425e-02 1.32139683e-01 -5.22187585e-03\\n2.11292833e-01 6.58922568e-02 -3.95417184e-01 4.21134055e-01\\n-1.43385276e-01 5.25637865e-01 1.11078955e-01 -8.07902157e-01\\n5.47369957e-01 3.36285651e-01 -4.76442650e-02 -3.97759885e-01\\n5.06787419e-01 -3.76066655e-01 9.69695374e-02 3.98267359e-02\\n-4.18794334e-01 -3.04711044e-01 2.64676958e-01 -1.05315506e-01\\n-3.05579305e-01 4.78654772e-01 3.08696236e-02 1.39491796e-01\\n1.29494637e-01 -2.96534240e-01 -2.19724268e-01 -3.34689803e-02\\n-6.61336333e-02 -2.19065815e-01 -5.59328079e-01 -4.46764007e-02\\n-1.34951428e-01 -5.02842844e-01 -2.04459563e-01 -3.73497725e-01\\n-1.93803132e-01 -2.67122746e-01 -1.81590125e-01 2.09313214e-01\\n1.80988684e-01 1.30612910e-01 -4.24767546e-02 5.52331191e-03\\n3.51571813e-02 -6.35633290e-01 -2.08201297e-02 1.17870599e-01\\n4.20489669e-01 1.85242996e-01 1.24665514e-01 -4.49036993e-02\\n-3.00083626e-02 6.40026331e-01 -2.18150526e-01 -2.35985890e-01\\n1.66727081e-01 1.96801424e-01 4.57610488e-02 -1.12095885e-01\\n1.94272697e-02 3.52477908e-01 -2.61198282e-01 4.70939353e-02\\n-9.34519395e-02 1.89260598e-02 4.15669829e-01 7.29280338e-03\\n-2.72885382e-01 -1.72239184e-01 -6.21135980e-02 1.77671090e-01\\n-6.36457920e-01 -1.88840657e-01 5.18195152e-01 2.63589650e-01\\n8.22546631e-02 1.72427610e-01 2.25390017e-01 -5.68012074e-02\\n-1.95789382e-01 -2.00649381e-01 2.88451582e-01 8.79841074e-02\\n1.61821321e-01 4.35318016e-02 -1.62693232e-01 -5.71499228e-01\\n-3.32182097e+00 -7.43211955e-02 1.36232436e-01 -3.00448239e-01\\n2.83079565e-01 -1.18301339e-01 1.97242051e-01 2.45199595e-02\\n-3.19365144e-01 1.56622138e-02 -2.48847410e-01 -1.39874339e-01\\n1.37211323e-01 2.43583083e-01 6.29089475e-02 1.55944243e-01\\n1.51348323e-01 -2.36049086e-01 3.17667834e-02 3.30897570e-01\\n-2.12765902e-01 -7.44360149e-01 1.74080178e-01 -2.99876053e-02\\n9.81430784e-02 2.45850295e-01 -3.78827870e-01 -9.85301808e-02\\n-1.76162526e-01 -2.93792844e-01 -2.51630228e-02 -2.91633993e-01\\n-1.27501443e-01 3.24314207e-01 1.65517241e-01 -1.75156191e-01\\n6.15783893e-02 -4.33426857e-01 -6.68391734e-02 -5.60596824e-01\\n1.72423586e-01 -5.76216698e-01 1.13584138e-01 -1.61047742e-01\\n6.77630901e-01 -2.64965236e-01 9.73110497e-02 1.99335694e-01\\n2.10377946e-01 2.12960020e-01 1.27197966e-01 -1.38053810e-03\\n-1.91605151e-01 -3.23553294e-01 -1.63478151e-01 -1.48815066e-01\\n4.55905825e-01 3.63674313e-01 -1.78330645e-01 5.63401915e-02\\n5.49814515e-02 -2.69376665e-01 -3.10229212e-01 -2.62473941e-01\\n-1.45475477e-01 -1.93988606e-01 -6.91344976e-01 -4.09093797e-01\\n-1.06185958e-01 -1.62578538e-01 -2.05638111e-01 5.86471796e-01\\n-2.54025131e-01 -3.72232854e-01 -8.05504695e-02 -5.12746811e-01\\n2.49118909e-01 -2.17977419e-01 3.75922839e-03 -2.32915163e-01\\n-1.38840884e-01 -3.75329107e-01 1.62459016e-01 -2.73201354e-02\\n-2.11275462e-02 -2.21997246e-01 2.94896923e-02 -9.93119404e-02\\n-2.66580462e-01 -5.45547545e-01 4.10613328e-01 1.41014665e-01\\n3.25743288e-01 1.63330972e-01 3.04599077e-01 7.58913606e-02\\n2.44403452e-01 -7.62296766e-02 -6.89132810e-02 -2.86915809e-01\\n4.42095436e-02 4.56812093e-03 5.23878455e-01 -2.22920313e-01\\n-7.88356140e-02 1.65655985e-01 -2.26394743e-01 -1.09976046e-01\\n2.31734931e-01 -7.12035457e-03 4.04772162e-02 -1.39973566e-01\\n3.15469503e-01 -4.20084834e-01 -1.86696425e-01 8.41410831e-02\\n4.27170210e-02 5.34485102e-01 6.48826286e-02 -4.32866454e-01\\n-1.90379858e-01 4.04676586e-01 1.00964323e-01 -1.97258487e-01\\n-1.06048614e-01 5.78763112e-02 -2.27246806e-01 2.03266099e-01\\n1.09661669e-01 -2.05240890e-01 -2.36547321e-01 -9.76693779e-02\\n-1.13868862e-01 3.34006846e-01 2.78854698e-01 1.31321549e-01\\n5.92407119e-03 -3.74855459e-01 -1.34338275e-01 2.05060184e-01\\n1.91550806e-01 4.30685252e-01 1.65522337e-01 -1.84750810e-01\\n-1.33565851e-02 3.06640983e-01 -9.11113620e-02 2.16731921e-01\\n-8.62888172e-02 9.25924480e-02 -5.74526966e-01 -1.68714449e-01\\n-1.98114231e-01 -2.99016863e-01 7.27392286e-02 4.04763788e-01\\n1.98461980e-01 -5.18546253e-02 4.12180126e-02 -4.33755845e-01\\n3.55989069e-01 5.04327379e-02 2.53204882e-01 7.11234957e-02\\n-2.26804651e-02 5.90403080e-01 3.87650728e-02 -2.72218823e-01\\n-1.60132110e-01 3.56945139e-03 -2.93466568e-01 -1.24100067e-01\\n1.58891320e-01 -3.35114270e-01 -6.03329204e-02 4.27231133e-01\\n7.91163966e-02 -2.09654123e-01 -8.66507590e-02 2.98464507e-01\\n-7.73144187e-04 -1.94057360e-01 -2.04013065e-01 7.55109936e-02\\n3.45185995e-01 9.14732292e-02 2.19782323e-01 -3.83998632e-01\\n-8.98507312e-02 -8.91985223e-02 -2.22079386e-03 4.32574511e-01\\n1.55355945e-01 1.69319902e-02 8.88213515e-03 -1.92968294e-01\\n4.80021745e-01 -5.44891618e-02 -1.26232535e-01 7.53369778e-02\\n7.14635178e-02 -1.38318285e-01 -4.42413211e-01 1.23987578e-01\\n-7.71246701e-02 -1.51369914e-01 -3.89634557e-02 9.29887816e-02\\n1.96417347e-01 6.02713861e-02 -5.23251712e-01 -2.00599283e-01\\n-2.48105153e-01 1.51178008e-02 -2.03983914e-02 -4.82365519e-01\\n5.25247082e-02 -1.99063662e-02 -6.26957536e-01 2.45546848e-01\\n-1.51236147e-01 -5.53638972e-02 2.10748449e-01 9.72626954e-02\\n-3.08041781e-01 -1.51383355e-01 1.39995202e-01 1.84972689e-01\\n-2.48583332e-01 -8.12129453e-02 -6.39055893e-02 -9.97332692e-01\\n1.86777517e-01 -2.99378596e-02 -1.05862789e-01 6.87408820e-02\\n-1.14370128e-02 -6.71852410e-01 8.56250376e-02 -4.11477059e-01\\n-2.15059519e-01 -8.81532803e-02 -2.36681059e-01 -3.67729306e-01\\n3.16065028e-02 -4.62576095e-03 -2.14798570e-01 3.57513994e-01\\n-3.20864201e-01 4.08830971e-01 -2.87946723e-02 1.49627492e-01\\n1.03627443e-01 -2.56902486e-01 6.43411651e-02 -3.75277996e-01\\n-3.22752714e-01 -1.81625664e-01 -2.35591710e-01 -2.08758488e-01\\n-1.34823676e-02 -2.90603459e-01 -4.92686033e-02 -4.30301093e-02\\n3.36467922e-01 1.38462245e-01 -1.73561141e-01 -2.23576337e-01\\n1.42735153e-01 -5.01639605e-01 2.25415066e-01 -9.87363532e-02\\n-3.57767530e-02 -4.87068407e-02 2.26304293e-01 3.43708210e-02\\n2.40737945e-01 -3.93269390e-01 3.72271329e-01 -3.71705443e-01\\n-2.81993866e-01 -6.16615564e-02 6.44923151e-02 2.02106610e-02\\n2.86768883e-01 -5.08924365e-01 -5.20206802e-02 2.91113764e-01\\n1.91317245e-01 1.29833981e-01 2.35679179e-01 -9.12204236e-02\\n-1.22966722e-01 2.19099745e-01 -4.60500836e-01 1.27355933e-01\\n7.68839777e-01 1.34144679e-01 9.14192498e-02 1.83421552e-01\\n1.91008896e-01 2.63511181e-01 4.52782184e-01 1.25928894e-01\\n-1.48008063e-01 3.24581027e-01 3.10449172e-02 -5.49304783e-01\\n-2.07398295e-01 4.71845036e-03 -2.23829448e-01 -3.45799983e-01\\n5.52416205e-01 3.74740362e-01 -4.55725580e-01 -2.37776950e-01\\n-1.71137691e-01 -1.47999540e-01 1.24585249e-01 -4.92168851e-02\\n3.50584239e-02 -1.46508321e-01 5.28742909e-01 -8.87319222e-02\\n2.13684782e-01 5.02661228e-01 -9.52716321e-02 -2.46469155e-01\\n-7.94355273e-02 7.19781443e-02 6.44859448e-02 4.61834878e-01\\n-7.46099502e-02 1.87599376e-01 1.33792102e-01 1.62923977e-01\\n-1.57176659e-01 -7.18753338e-02 1.15339324e-01 1.29159003e-01\\n3.08452472e-02 8.43125954e-02 3.24442267e-01 3.80784780e-01\\n2.79051423e-01 4.26031917e-01 2.96214491e-01 9.21487063e-02\\n4.87705618e-01 5.66652834e-01 3.38803440e-01 7.98304752e-02\\n-1.09472722e-01 -1.51512166e-02 1.51067197e-01 -2.10038684e-02\\n3.13648313e-01 3.90332460e-01 1.55750170e-01 8.46462011e-01\\n3.79553765e-01 3.06424677e-01 6.55691922e-01 -5.45875549e-01\\n-4.46979672e-01 5.48456572e-02 4.31498170e-01 -5.02558827e-01\\n6.41077831e-02 7.27732182e-02 -2.74487674e-01 2.24715799e-01\\n-4.83207643e-01 -1.77759111e-01 -1.53125487e-02 2.29564495e-02\\n7.20159113e-02 -5.32005653e-02 -2.33477324e-01 1.91231653e-01\\n-8.31475034e-02 -1.40289009e-01 -4.62929130e-01 -2.01198533e-01\\n-2.19056666e-01 -1.26235232e-01 -4.58631553e-02 -1.57139957e-01\\n2.23914701e-02 -2.52237260e-01 -4.45623063e-02 -6.76153377e-02\\n3.58685851e-01 -4.40594032e-02 -7.23078251e-02 -1.39536753e-01\\n1.62420347e-01 2.89018691e-01 5.61424792e-01 -3.99986878e-02\\n2.18173429e-01 -1.77561104e-01 -1.29024178e-01 1.90070927e-01\\n1.64823174e-01 7.02724233e-02 9.11395028e-02 3.58130097e-01\\n-3.22331548e-01 -1.26360029e-01 1.46549672e-01 3.33824337e-01\\n-4.06458318e-01 7.52300844e-02 -7.14453161e-02 3.36534381e-02\\n7.34089017e-02 1.59032196e-01 -3.39396238e-01 3.80647443e-02\\n-2.02962875e-01 -5.01476943e-01 3.72704476e-01 -1.51289687e-01\\n-1.14431329e-01 6.58288524e-02 3.03476512e-01 1.24572039e-01\\n-2.26069018e-01 6.84862807e-02 -8.82444531e-02 1.02965131e-01\\n6.51698001e-03 3.57171148e-01 -2.81416684e-01 -2.23405391e-01\\n-1.74177721e-01 2.40599453e-01 -4.90417741e-02 1.30889475e-01\\n-7.32454360e-02 4.10667628e-01 8.69260877e-02 -3.72624444e-03\\n3.99324119e-01 -5.34545556e-02 -3.12475502e-01 -2.62066454e-01\\n-3.13230902e-01 -1.75911576e-01 -1.08885475e-01 -4.76184562e-02\\n2.05915064e-01 -3.98730546e-01 -5.65956086e-02 -1.39209375e-01\\n-1.85753092e-01 -3.37754339e-01 -7.65628740e-02 -7.95166716e-02]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team As a member of the performance engineering team you will be part of an agile team of Software and Performance Engineers located in Zurich. In your new role you are analysing performance problems, implementing optimisations and developing core features for the Avaloq Banking Suite. You will design new features regarding system performance, optimise existing functionality and write technical documentation. Furthermore, you will analyse and fix problems on database and lower software layers (Oracle and OS). Your mission Development and maintenance of the UNIX/Linux scripting layer, which provides administration and configuration services, support for Oracle RAC and Exadata, cloning and anonymization utilities Development and maintenance of the Background Processes framework which enables the scheduling and execution of asynchronous operations and provides an API to control and monitor external systems connecting to the Avaloq Banking Suite, such as gateways to financial services providers and adapters for E-Banking services What you need BSc/MSc degree in Computer or Nature Science Experience with Oracle Databases, Oracle PL/SQL and UNIX/Linux shell scripting Sound knowledge of relational database technologies Solid understanding of modern software engineering principles and design Strong analytical, abstract thinking and problem-solving skills as well as the ability to work under pressure while performing customer support activities and urgent production issues You will get extra points for the following Oracle Certified Professional German skills Experience in agile processes and events as well as in the financial industry Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Manegg Don’t be shy – apply! Avaloq Evolution AG Michelle Hiestand, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online.',\n", + " '[\"Writing\", \"Professionalism\", \"Problem Solving\", \"Communications\", \"Scheduling\", \"Operations\", \"Positivity\"]',\n", + " '[\"PL/SQL\", \"MSC Software\", \"Customer Support\", \"Agility\", \"Shell Script\", \"Analytics\", \"Oracle Databases\", \"Industrialization\", \"Wealth Management\", \"Financial Services\", \"Natural Sciences\", \"Oracle Exadata\", \"Activism\", \"Technical Writing\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Layering\", \"Financial Information eXchange (FIX) Protocol\", \"Linux\", \"E (Programming Language)\", \"Background Process\", \"Adapters\", \"Performance Engineering\", \"Executable\", \"Software Engineering\", \"Academic Support Services\", \"Library For WWW In Perl\", \"Cloning (Biology)\", \"Banking Services\", \"Oracle Rac\", \"Technical Documentation\", \"Service Provider\", \"Relational Databases\", \"Banking\", \"Software Modernization\", \"Scripting\", \"Unix\", \"Application Programming Interface (API)\", \"Abstractions\", \"EN 1993 Building Codes\", \"Performance Systems Analysis\", \"Controllability\", \"Agile Unified Process\"]',\n", + " \"['English', 'Slovenian', 'Chinese', 'Maori', 'Sundanese']\"],\n", + " ['40',\n", + " 'director data solutions (data science, analytics, bi)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.epam.com',\n", + " '[[-3.63576472e-01 3.57174784e-01 5.07355809e-01 -5.48212882e-03\\n5.64902782e-01 -1.19120434e-01 -2.35726312e-02 9.34738442e-02\\n-6.98652416e-02 -3.91176641e-01 -1.88871220e-01 -2.82527417e-01\\n-3.73633429e-02 1.24194644e-01 1.59064069e-01 5.19433975e-01\\n1.78467378e-01 2.64663640e-02 -1.10854633e-01 4.56562936e-01\\n1.39203668e-03 -2.45336741e-01 -3.10287029e-02 8.10639977e-01\\n4.50094044e-01 -2.30896268e-02 -1.04203254e-01 -1.07893810e-01\\n-2.68140197e-01 -2.60504425e-01 3.83764803e-01 -8.66251811e-03\\n-1.37470037e-01 -4.10729587e-01 1.52139425e-01 1.95020616e-01\\n-2.65017360e-01 3.57901789e-02 -1.82937056e-01 1.61129028e-01\\n-6.02907658e-01 -3.46736491e-01 9.21063870e-02 9.60852392e-03\\n-3.54666591e-01 -3.43335092e-01 3.75835225e-03 -7.57036507e-02\\n1.07695475e-01 6.56459928e-02 -5.31843722e-01 3.21593881e-01\\n-3.86054009e-01 -3.17948818e-01 3.79210651e-01 7.03781605e-01\\n2.37147808e-01 -6.08083248e-01 -4.50720906e-01 -4.28188950e-01\\n-4.05985303e-02 -8.18517245e-03 1.01541199e-01 -2.91344702e-01\\n2.54490733e-01 -6.88513070e-02 -4.16915417e-02 4.31582749e-01\\n-8.37191463e-01 -1.11519285e-01 -3.46323788e-01 1.49987414e-02\\n-3.73601586e-01 8.21090937e-02 -4.87527013e-01 -1.49978161e-01\\n-2.49165408e-02 5.47002792e-01 -4.06412408e-03 6.16804548e-02\\n-2.45684981e-01 3.56585741e-01 -2.66190618e-01 2.92696953e-01\\n3.90459269e-01 2.66707301e-01 4.12747204e-01 4.33283806e-01\\n-4.92573231e-01 4.92667913e-01 2.37961337e-01 -3.69400442e-01\\n2.23092467e-01 1.89509273e-01 4.09380972e-01 2.49189973e-01\\n1.15164340e-01 2.40416646e-01 -1.36352330e-01 1.13388419e-01\\n2.60390848e-01 -2.41345167e-01 6.99251890e-04 -1.43603370e-01\\n9.35209468e-02 -4.57718223e-02 -3.96828428e-02 9.69252661e-02\\n-3.46354514e-01 3.51971835e-01 1.24566942e-01 -3.42785060e-01\\n-2.26371184e-01 -5.47077239e-01 -3.79174948e-02 2.06458718e-02\\n-1.29408985e-01 2.18585640e-01 1.61656931e-01 4.34981324e-02\\n2.24770606e-01 -2.13504359e-02 7.98708722e-02 9.60955918e-01\\n-2.85473987e-02 6.37478083e-02 -1.11079186e-01 4.03968930e-01\\n2.07094014e-01 -2.02397063e-01 1.40799105e-01 1.69696689e-01\\n-1.25749648e-01 -1.20663397e-01 -2.78630793e-01 5.03458798e-01\\n-1.29321799e-01 -1.00997604e-01 -1.73379511e-01 1.81229249e-01\\n-6.25076070e-02 -4.86429155e-01 7.68918395e-01 -3.29318047e-02\\n1.69656605e-01 -4.41816561e-02 3.22743580e-02 -3.76124270e-02\\n-2.57316232e-01 2.66678154e-01 9.70636308e-02 2.68386364e-01\\n-2.98201054e-01 -2.65694052e-01 -1.03485934e-01 2.58003533e-01\\n-2.76387453e-01 4.26306576e-02 -2.10560083e-01 -1.17770478e-01\\n2.27768123e-01 2.19993636e-01 -4.84100312e-01 2.88047910e-01\\n-1.05338834e-01 -1.01922177e-01 -6.26790673e-02 2.17401415e-01\\n-1.89853683e-01 1.48522496e-01 -2.53829546e-02 -4.45276946e-02\\n6.12195373e-01 2.09691718e-01 4.70938206e-01 2.14108601e-02\\n3.34042132e-01 -1.62109628e-01 1.72921091e-01 1.33339286e-01\\n-5.25081635e-01 2.93162525e-01 -7.18049146e-03 -2.31386930e-01\\n1.01210251e-01 -6.15820885e-02 4.18209672e-01 -3.00219595e-01\\n-6.76040575e-02 -2.58910656e-01 -5.28843760e-01 -4.17608559e-01\\n-1.58833474e-01 -3.16899270e-02 3.28903764e-01 -4.63445902e-01\\n-6.60011843e-02 2.39427358e-01 -5.53481519e-01 -3.14814031e-01\\n2.22031474e-01 4.00162876e-01 1.49216279e-01 6.07748069e-02\\n-1.25214204e-01 -6.95024788e-01 1.68055277e-02 -4.47393239e-01\\n-3.60933781e-01 3.86893563e-02 -3.88820797e-01 -5.54974005e-02\\n-1.64673448e-01 8.65983777e-03 -5.38832918e-02 3.11082136e-02\\n-3.77855808e-01 9.47088003e-03 5.43735810e-02 8.83491412e-02\\n2.42242381e-01 1.12591743e-01 -3.25078785e-01 5.18395245e-01\\n-2.73491830e-01 5.08152246e-01 2.55798817e-01 -1.04347563e+00\\n6.59130096e-01 2.37191960e-01 3.88494832e-03 -2.07685888e-01\\n3.99278671e-01 -5.56560874e-01 -1.73200630e-02 1.20178558e-01\\n-3.30115408e-01 -3.39684188e-01 2.27272734e-01 -2.89476454e-01\\n-3.77326965e-01 6.34552717e-01 8.64861459e-02 3.03729791e-02\\n4.13930535e-01 -3.42465878e-01 -2.04319745e-01 -9.85281616e-02\\n-1.66472077e-01 -1.98359847e-01 -6.89279616e-01 2.25726128e-01\\n-1.66356787e-01 -5.60674965e-01 -2.13929117e-01 -4.91146982e-01\\n-3.31083715e-01 -4.39136207e-01 -2.17616439e-01 1.29038215e-01\\n1.51739269e-01 1.54084891e-01 -1.59278855e-01 6.49946257e-02\\n3.74720171e-02 -6.73535645e-01 -2.01205164e-02 1.81192458e-01\\n5.21772861e-01 3.69460076e-01 1.37424290e-01 -2.55502835e-02\\n1.23238660e-01 5.39965749e-01 -3.08118582e-01 -3.47381353e-01\\n1.81600809e-01 6.14861026e-02 3.82358357e-02 -1.66817367e-01\\n1.77254289e-01 2.27516368e-01 -3.53161871e-01 -1.88353751e-02\\n2.57616192e-02 1.09940022e-01 4.14108992e-01 -7.76331350e-02\\n-2.35931784e-01 -6.69090673e-02 -8.80983099e-02 1.81121036e-01\\n-6.01407766e-01 -1.34985387e-01 6.14408374e-01 1.07549787e-01\\n3.46593671e-02 2.35933483e-01 1.51577964e-01 -4.73943725e-03\\n-2.77936578e-01 -1.54392630e-01 2.82979578e-01 1.29780471e-01\\n2.03095466e-01 7.97969103e-02 -5.81552088e-02 -6.02149248e-01\\n-2.97816086e+00 -2.81738997e-01 1.38198525e-01 -2.70932466e-01\\n2.25718349e-01 -1.55048937e-01 8.40033516e-02 2.43536737e-02\\n-3.42454553e-01 -2.55234633e-02 -7.55898207e-02 -1.11436181e-01\\n-2.63342634e-02 1.97255343e-01 8.47201347e-02 2.72916138e-01\\n1.07790291e-01 -2.31523409e-01 8.72166157e-02 3.98979962e-01\\n-1.39599398e-01 -8.17559123e-01 3.93783078e-02 -3.57803106e-02\\n1.52733803e-01 9.52988118e-02 -5.42426229e-01 2.52403729e-02\\n-2.21357301e-01 -2.44864747e-01 2.12800801e-01 -2.89952457e-01\\n-2.63011187e-01 2.26683915e-01 9.78436694e-02 -1.25880152e-01\\n-1.89698152e-02 -3.89568150e-01 -9.47977379e-02 -5.65385401e-01\\n1.31657943e-01 -7.09523439e-01 4.92211767e-02 -3.07822879e-02\\n6.54996514e-01 -2.33662158e-01 1.43406644e-01 1.22723475e-01\\n1.35282665e-01 1.40361741e-01 1.87812418e-01 8.63178670e-02\\n-3.36443871e-01 -4.18039620e-01 5.72222956e-02 -2.18425006e-01\\n5.05375743e-01 3.48818183e-01 -2.01309383e-01 1.84819072e-01\\n1.88191488e-01 -3.08060467e-01 -4.79638159e-01 -3.44857305e-01\\n-1.51427597e-01 -3.90247218e-02 -8.73349607e-01 -4.38417047e-01\\n-2.77842760e-01 -2.76912153e-01 -1.69310749e-01 8.50647092e-01\\n-2.97605246e-01 -2.81954885e-01 -4.14744094e-02 -6.17894888e-01\\n4.37255383e-01 -1.71161547e-01 1.76777970e-02 -3.90037715e-01\\n-3.04340273e-01 -3.96138370e-01 2.37718731e-01 -5.20069785e-02\\n-3.10413688e-01 -3.28659043e-02 -1.65836737e-02 -2.82137215e-01\\n-3.40690196e-01 -4.71457005e-01 4.43808556e-01 3.56596299e-02\\n3.54390472e-01 2.52752472e-02 5.49847245e-01 -1.56850934e-01\\n4.03702825e-01 1.08992420e-01 -1.20433256e-01 -3.60562086e-01\\n-3.26997153e-02 2.92951651e-02 4.31577444e-01 -1.31469563e-01\\n3.98666039e-02 7.82681927e-02 -3.19005877e-01 4.40836400e-02\\n4.67709392e-01 -5.21735251e-02 8.88154060e-02 -3.96437794e-02\\n1.90095633e-01 -3.98876369e-01 -2.53088355e-01 1.80650160e-01\\n5.49509041e-02 8.47169518e-01 -1.21224644e-02 -4.27707314e-01\\n-2.20542908e-01 5.09986520e-01 3.09595652e-02 3.30880731e-02\\n-1.82330251e-01 1.72347605e-01 -3.05428833e-01 3.95853102e-01\\n1.01552248e-01 -1.54656112e-01 -2.58326709e-01 -1.72562785e-02\\n-1.40908092e-01 1.60292566e-01 1.99239299e-01 9.85759571e-02\\n-9.71991569e-03 -2.70168662e-01 -9.52287018e-02 2.83263028e-01\\n2.27325499e-01 5.30076444e-01 3.25276077e-01 -3.02395105e-01\\n9.08860564e-03 3.59911501e-01 -3.44047666e-01 4.29008007e-01\\n-2.24601761e-01 1.68019399e-01 -7.50843108e-01 -2.40666986e-01\\n-2.11343855e-01 -4.35440540e-01 8.60272050e-02 3.91547948e-01\\n2.22142518e-01 -1.29694402e-01 1.12035275e-01 -5.35770059e-01\\n2.52620637e-01 1.60501391e-01 1.57536358e-01 1.16571665e-01\\n1.89170819e-02 8.03890705e-01 3.34171914e-02 -2.73917437e-01\\n-8.35716501e-02 -1.12008698e-01 -1.69415355e-01 -2.98059821e-01\\n9.15458128e-02 -5.76527953e-01 -1.92599267e-01 4.95775580e-01\\n2.59527802e-01 -2.03906626e-01 -1.56955212e-01 4.00443196e-01\\n9.20535251e-02 -1.63568810e-01 -3.04475069e-01 2.07472444e-02\\n3.46435726e-01 2.22282410e-01 2.07079500e-01 -4.57917213e-01\\n7.59734511e-02 -1.87164042e-02 7.40832984e-02 5.10385811e-01\\n1.19772963e-01 1.73176035e-01 -1.33135423e-01 -1.08106695e-01\\n6.23073220e-01 -3.57004032e-02 -1.26348913e-01 -1.15352079e-01\\n6.24154918e-02 -2.11699843e-01 -4.13245767e-01 1.77062064e-01\\n-2.40097865e-02 -2.91811019e-01 -3.72824371e-02 8.21652859e-02\\n8.49321485e-02 -4.34110686e-02 -5.12257695e-01 -2.21369326e-01\\n-3.50958109e-01 8.81518945e-02 1.05297498e-01 -5.80127895e-01\\n1.06579503e-02 1.40259610e-02 -6.48246050e-01 2.72065580e-01\\n-2.96669994e-02 -5.63102886e-02 1.17539451e-01 2.62004256e-01\\n-1.98571980e-01 -1.58961296e-01 -5.69470599e-02 1.83247149e-01\\n-3.90571833e-01 -2.99286127e-01 -1.75035447e-02 -9.34062004e-01\\n1.71853587e-01 4.22835574e-02 -8.56328458e-02 2.07117945e-01\\n-5.90059310e-02 -7.98907340e-01 1.95966721e-01 -3.88288200e-01\\n-1.21175379e-01 9.82125327e-02 -2.54017830e-01 -4.51754510e-01\\n1.59220204e-01 -1.10466540e-01 -3.37890506e-01 3.76402617e-01\\n-4.57002968e-01 3.71221989e-01 -5.05173951e-02 1.06210209e-01\\n1.26843914e-01 -1.97136894e-01 1.61136359e-01 -1.57656342e-01\\n-4.97511506e-01 -3.45713317e-01 -4.75287974e-01 -3.89881462e-01\\n-2.83112992e-02 -2.24066168e-01 -9.84957963e-02 -6.42958581e-02\\n5.02590120e-01 1.45264044e-01 -1.26494780e-01 -3.33817512e-01\\n8.38093534e-02 -4.59947467e-01 9.15330350e-02 -1.88771158e-01\\n1.44005820e-01 -1.86749101e-01 2.21076518e-01 8.69511515e-02\\n2.67118096e-01 -3.71050954e-01 5.65755606e-01 -2.12933272e-01\\n-4.30961728e-01 -2.27934867e-01 1.18013928e-02 3.93436179e-02\\n4.40360397e-01 -4.04491425e-01 1.28662929e-01 2.76422024e-01\\n1.65384710e-01 -5.06761596e-02 1.80182651e-01 -2.21774384e-01\\n-1.85506806e-01 2.66259015e-01 -5.72373748e-01 2.21453711e-01\\n8.73465538e-01 6.74107745e-02 8.12394693e-02 2.64265060e-01\\n2.05502063e-01 3.32948625e-01 5.54694653e-01 -1.85809255e-01\\n-3.73299271e-02 3.71729910e-01 5.94576448e-02 -5.00359714e-01\\n-1.31443113e-01 -2.26514846e-01 -8.33870173e-02 -3.87444139e-01\\n6.19335592e-01 2.95332998e-01 -5.06209493e-01 -1.62708551e-01\\n-1.52464896e-01 -1.78997070e-01 4.44298476e-01 5.68569116e-02\\n-2.18178272e-01 1.29952803e-01 5.14284611e-01 -9.06663239e-02\\n5.07833958e-01 5.09405673e-01 -1.50221258e-01 -2.76394367e-01\\n-1.01828560e-01 2.35024661e-01 9.29994434e-02 3.31323534e-01\\n-8.53290781e-02 2.42065117e-01 4.02137935e-02 1.16411746e-01\\n-6.93861693e-02 7.96105266e-02 2.03276500e-01 5.57515770e-04\\n3.37550342e-01 4.46677841e-02 4.34267879e-01 4.32017863e-01\\n1.36831060e-01 4.14835811e-01 3.73750865e-01 -7.88264349e-03\\n3.76029909e-01 7.24507511e-01 3.35191429e-01 1.08177342e-01\\n1.50184901e-02 1.72399312e-01 1.07857168e-01 -6.51382208e-02\\n2.26049751e-01 4.18588281e-01 2.70249337e-01 8.94623458e-01\\n3.61055255e-01 3.82852554e-01 8.54125142e-01 -7.14063406e-01\\n-4.31648016e-01 -2.99029201e-02 6.46532059e-01 -4.24276710e-01\\n1.77340001e-01 1.83080971e-01 -1.69395387e-01 4.18025792e-01\\n-4.67446864e-01 -2.29021832e-01 5.58743440e-02 -1.22290947e-01\\n-5.06795943e-03 -1.37165979e-01 -8.23666900e-02 9.55618024e-02\\n-2.17605338e-01 -2.50391006e-01 -2.72849858e-01 -1.47425115e-01\\n-2.85533369e-01 6.34590536e-02 -3.36760394e-02 -9.75857452e-02\\n-1.67869851e-01 -3.55607152e-01 -1.75099179e-01 -8.56222883e-02\\n4.62106764e-01 -1.07539520e-01 -1.98552281e-01 -1.37285903e-01\\n2.61022866e-01 2.62023568e-01 6.33481145e-01 1.13468617e-01\\n1.51598603e-01 -2.82794178e-01 -2.37514406e-01 1.56066239e-01\\n1.21818386e-01 1.07063122e-01 2.46666297e-02 4.25145686e-01\\n-2.42717028e-01 -1.44384369e-01 4.34923954e-02 2.01778218e-01\\n-3.31542850e-01 -1.17973886e-01 -1.69854075e-01 1.13670230e-02\\n-7.16096312e-02 3.01677704e-01 -1.82160527e-01 4.24347892e-02\\n-1.76178515e-01 -6.07760906e-01 4.85590965e-01 -2.50517309e-01\\n-2.42493987e-01 -6.80154040e-02 3.62749308e-01 2.90805757e-01\\n-1.79727092e-01 5.68774715e-02 -9.17389244e-02 1.02060691e-01\\n4.40541506e-02 4.12335694e-01 -1.80485606e-01 -8.48594904e-02\\n-3.53601456e-01 3.13965261e-01 -5.67597374e-02 1.32554322e-01\\n2.00751312e-02 4.86556530e-01 3.36720236e-02 2.44152397e-02\\n3.67322087e-01 1.62006635e-03 -3.23244572e-01 -3.76704454e-01\\n-2.98058152e-01 -7.05660507e-02 1.00875124e-02 -5.33213019e-02\\n1.50426149e-01 -3.56803864e-01 -1.04211606e-02 -3.09646189e-01\\n-1.04591265e-01 -4.94546026e-01 -1.97232664e-01 -8.55736807e-02]]',\n", + " 'Join us at one of the fastest growing Platform Software Engineering Organizations in the world! With over twenty years’ experience of crafting market leading software, our business has been rapidly evolving and is now a global player in solving business challenges and developing tailor made cutting edge solutions. These challenges require a highly skilled workforce imagining, designing, engineering, and delivering software, through to business consulting services & customer experiences, which are changing the world around us. Within EPAM we establish a consultancy branch to help top-tier clients solve their most complex business and technology issues and to advise them on new technologies. As a Big Data Solution Architect, you will be responsible for conducting activities associated with selling core business consulting capabilities to leading organizations from different branches. Responsibilities Drive European Big Data Projects and provide technical guidance and solutions Develop proposals for implementation and design of scalable big data architecture Participate in customer workshops and presentation of the proposed solutions Design, implement, and deploy high-performance, custom applications at scale on Hadoop Define and develop network infrastructure solutions to enable partners and clients to scale NoSQL and relational database architecture for growing demands and traffic Define common business and development processes, platform and tools usage for data acquisition, storage, transformation, and analysis Develop roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning Review and audit of existing solution, design and system architecture Perform profiling, troubleshooting of existing solutions Create technical documentation Drive new business and get involved in pre-sales activities whilst overseeing and managing Big Data Architects and remote team members who are involved in key projects Requirements Solid experience in a Technical Leadership role Experience of driving large scale Big Data Architecture projects Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra Hands on experience of knowledge of programming and scripting languages such as Java, Python, Scala Experience with big data solutions developed in large cloud computing infrastructures such as Amazon Web Services, Elastic MapReduce or Pivotal Cloud Foundry Experience in client-driven large-scale implementation projects Data Science and Analytics experience is a plus (Machine Learning, Recommendation Engines, Search Personalization) Technical team leading and team management experience, deep understanding of Agile (Scrum), RUP programming process Strong experience in applications design, development and maintenance Solid knowledge of design patterns and refactoring concepts Practical expertise in performance tuning and optimization, bottleneck problems analysis Experience in Object-Oriented Analysis and Design Fluent oral and written English We offer Experience exchange with colleagues all around the world Competitive compensation depending on experience and skills Regular assessments and salary reviews Develop integration modules for interacting with new systems and applications Opportunities for self-realization Friendly team and enjoyable working environment Corporate and social events',\n", + " '[\"Leadership\", \"Troubleshooting (Problem Solving)\", \"Infrastructure\", \"Friendliness\", \"Management\", \"Integration\", \"Presentations\", \"Imagination\", \"Team Management\", \"Socialization\", \"Written English\", \"Consulting\"]',\n", + " '[\"NoSQL\", \"Tooling\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Performance Profiling\", \"Agility\", \"Apache Zookeeper\", \"Joint Application Design (JAD)\", \"Interactivity\", \"Analytics\", \"Project Architecture\", \"Machine Learning\", \"High Performance Computing\", \"Distributed Design Patterns\", \"Scale (Map)\", \"Application Development Languages\", \"Development Review\", \"Scala (Programming Language)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Python (Programming Language)\", \"Apache Mahout\", \"MongoDB\", \"Object-Oriented Analysis And Design\", \"Levelling\", \"Scrum (Software Development)\", \"Limiter\", \"Systems Architecture\", \"Apache Oozie\", \"Network Infrastructure\", \"Apache Flume\", \"Software Engineering\", \"Project Implementation\", \"NetApp Data Storage\", \"Recommendation Engine\", \"Data Science\", \"Web Services\", \"Customer Relationship Building\", \"Storages\", \"Apache Hive\", \"Personalization\", \"Cloud Foundry\", \"Develop Networks\", \"Scalability\", \"Big Data\", \"Amazon Web Services\", \"Predictive Modeling\", \"Technical Documentation\", \"Data Acquisition\", \"Adapter Scripting Language\", \"Auditing\", \"Transformation (Genetics)\", \"Civil Engineering Design\", \"Modulation\", \"Pre-Sales Engineering\", \"Performance Tuning\", \"Proposal Development\", \"Relational Databases\", \"Solution Design\", \"Customer Experience\", \"Apache HBase\", \"AWS Elastic MapReduce (EMR)\", \"Java (Programming Language)\", \"Cloud Computing\", \"Process Driven Development\"]',\n", + " \"['English']\"],\n", + " ['115',\n", + " 'backend software engineer for iptiq emea p&c',\n", + " 'Zürich',\n", + " 'Insurance Agencies & Brokerages',\n", + " 'www.swissre.com',\n", + " '[[-1.51607335e-01 2.45700851e-01 5.71299732e-01 4.21508439e-02\\n5.47416329e-01 -1.59287214e-01 -3.46607268e-02 2.49995232e-01\\n4.47569564e-02 -5.64005554e-01 -3.09100077e-02 -2.73756176e-01\\n-1.55617520e-01 7.43689314e-02 1.28326714e-01 5.27891755e-01\\n3.57368231e-01 6.98308200e-02 -1.72142819e-01 4.35592949e-01\\n6.27982244e-03 -1.40930757e-01 5.72162420e-02 7.86320627e-01\\n3.96925211e-01 -3.37414071e-02 -4.83073890e-02 -1.80194154e-03\\n-2.76713967e-01 -1.84191778e-01 5.40569782e-01 4.71941195e-02\\n-2.48609483e-01 -5.41587353e-01 1.29495695e-01 1.21562771e-01\\n-2.14085653e-01 -7.96991810e-02 -1.70730978e-01 1.45557150e-01\\n-5.21042585e-01 -2.40828693e-01 -1.19071640e-02 -1.18121207e-01\\n-2.12115049e-01 -4.30957049e-01 2.39199027e-04 -1.01336256e-01\\n1.51791707e-01 6.14694990e-02 -5.03482044e-01 1.75401777e-01\\n-3.11641276e-01 -1.63465053e-01 3.40275019e-01 6.12610102e-01\\n3.72616574e-02 -5.89699626e-01 -5.19559443e-01 -3.46681595e-01\\n2.01193392e-02 -1.55878305e-01 1.31854326e-01 -3.45781684e-01\\n2.26804391e-01 -3.06797773e-03 -3.30993049e-02 3.56631339e-01\\n-7.48796403e-01 -5.61239310e-02 -2.76137501e-01 -6.57028519e-03\\n-3.51451337e-01 -8.54304135e-02 -3.96596462e-01 -1.35090426e-01\\n-1.73384756e-01 4.97799933e-01 5.18363528e-02 5.38194738e-02\\n-1.72606051e-01 3.76287282e-01 -2.27606595e-01 5.04966378e-01\\n2.99681634e-01 2.04901561e-01 3.53502095e-01 4.53148961e-01\\n-4.12867457e-01 5.42658091e-01 2.02847391e-01 -3.73002917e-01\\n2.50773400e-01 1.86028242e-01 4.22769696e-01 4.58819829e-02\\n2.43803024e-01 7.17079192e-02 -1.47466838e-01 3.20022345e-01\\n2.57693321e-01 -2.10487992e-01 -5.09887598e-02 -2.71403998e-01\\n-2.26936322e-02 2.54654512e-03 9.37806070e-02 1.23303540e-01\\n-2.83563733e-01 3.92254889e-01 5.35078049e-02 -2.80434072e-01\\n-1.54238239e-01 -4.39132601e-01 -3.73535082e-02 -2.39585638e-02\\n-3.55188176e-02 2.55148947e-01 2.25412637e-01 8.42405632e-02\\n2.41174310e-01 1.07006706e-01 5.93280420e-02 8.43412459e-01\\n-6.20268798e-03 -3.21134776e-02 -2.92062670e-01 3.62573266e-01\\n7.63421357e-02 -3.17435592e-01 2.79244602e-01 1.94348395e-01\\n-2.00742841e-01 -1.88946709e-01 -2.94854790e-01 4.66094911e-01\\n-2.52451058e-02 -2.70842493e-01 -2.60526985e-01 1.56662136e-01\\n7.92032406e-02 -4.89735723e-01 6.84454858e-01 7.17296749e-02\\n1.68903977e-01 -7.14911819e-02 1.08660772e-01 -1.14922643e-01\\n-7.60371387e-02 9.44318324e-02 4.58407998e-02 1.40101999e-01\\n-1.80131972e-01 -2.17888832e-01 -2.11512744e-01 1.79843843e-01\\n-4.03750479e-01 2.45457649e-01 -1.89657360e-01 -9.94548798e-02\\n2.52676576e-01 9.19565707e-02 -3.15387964e-01 2.55572796e-01\\n-8.97467583e-02 8.15720484e-03 1.86879635e-02 4.01351511e-01\\n-1.95168734e-01 6.87448084e-02 8.25260766e-04 -1.96216777e-01\\n6.70043766e-01 2.61465043e-01 2.06621528e-01 6.73682392e-02\\n3.95032972e-01 -4.18851152e-02 3.40355933e-02 1.34208024e-01\\n-7.06217647e-01 3.68079007e-01 -5.14578447e-02 -8.74001831e-02\\n5.46051972e-02 -4.45525423e-02 2.10410863e-01 -2.72858799e-01\\n-5.63940443e-02 -1.54990345e-01 -3.97879362e-01 -2.44130164e-01\\n-1.69587210e-01 -1.80972487e-01 3.64111960e-01 -6.05951667e-01\\n-1.14200369e-01 2.85567760e-01 -6.68980241e-01 -1.59817696e-01\\n1.52009562e-01 2.24529460e-01 1.81540653e-01 1.11764856e-01\\n-2.06065565e-01 -5.30062973e-01 -1.11364797e-02 -5.69816232e-01\\n-3.49971771e-01 5.44129610e-02 -3.49038780e-01 6.89770803e-02\\n5.81736118e-02 6.10862300e-02 -1.25391319e-01 1.19754393e-02\\n-1.36266589e-01 -3.47451344e-02 1.21357404e-01 4.25939411e-02\\n2.65452474e-01 5.27256355e-02 -3.26346517e-01 4.77183431e-01\\n-2.29264617e-01 5.70963979e-01 1.21736772e-01 -1.00509179e+00\\n5.85437655e-01 3.58790159e-01 -1.01564661e-01 -3.15641820e-01\\n3.17170918e-01 -4.15061057e-01 -4.31151576e-02 1.64486498e-01\\n-3.25988591e-01 -2.50679672e-01 1.84413105e-01 -2.64790028e-01\\n-3.05539548e-01 4.23391670e-01 4.23845463e-02 1.42683476e-01\\n2.96188712e-01 -2.29181707e-01 -2.31676966e-01 1.65705830e-02\\n-1.75288200e-01 -2.55442142e-01 -6.99486732e-01 4.60998639e-02\\n-1.14344880e-01 -4.82824206e-01 -7.32759237e-02 -4.98251528e-01\\n-1.46104693e-01 -4.10333812e-01 -2.40190282e-01 1.12137184e-01\\n2.13270932e-01 9.14745778e-02 -1.29924864e-01 -3.09933126e-02\\n2.01663934e-02 -7.00964689e-01 -5.94696309e-03 1.02839254e-01\\n3.74797970e-01 1.32841855e-01 9.76127759e-02 3.58268432e-02\\n1.15872577e-01 6.72438443e-01 -2.34618783e-01 -2.10130006e-01\\n2.08724231e-01 2.64791667e-01 2.58660931e-02 -1.60817921e-01\\n3.05834897e-02 3.11138421e-01 -3.02934200e-01 -1.18448213e-03\\n5.02564088e-02 3.90601568e-02 4.59220827e-01 -1.14960298e-01\\n-4.22099233e-01 -5.55464178e-02 -9.98506416e-03 1.00901648e-01\\n-7.05993295e-01 -1.47137925e-01 7.00239360e-01 1.77009597e-01\\n1.23192295e-01 1.90565437e-01 5.12596518e-02 -6.19042665e-02\\n-3.36743832e-01 -2.54050046e-01 3.45681518e-01 1.64667219e-01\\n2.12107912e-01 1.08523108e-01 2.97815856e-02 -6.53734207e-01\\n-2.96928358e+00 -1.94780499e-01 1.37721986e-01 -1.28120512e-01\\n1.27507553e-01 -1.70227081e-01 5.63224070e-02 -8.29518214e-02\\n-2.55149364e-01 1.19226445e-02 -6.39807805e-02 -1.54268891e-01\\n1.17435344e-01 1.13361835e-01 1.34498805e-01 2.37024307e-01\\n2.50927776e-01 -1.24392226e-01 4.23465855e-02 2.44113877e-01\\n-1.31829381e-01 -8.28639865e-01 2.01336920e-01 3.85021940e-02\\n2.30335027e-01 1.11758836e-01 -4.44711566e-01 -1.34559482e-01\\n-3.23703766e-01 -1.92273781e-01 2.59722173e-02 -3.45683277e-01\\n-1.18936643e-01 2.00283542e-01 1.87649086e-01 -7.99838752e-02\\n8.28027874e-02 -3.81826401e-01 -3.03422064e-01 -5.07337928e-01\\n8.24332833e-02 -6.71792865e-01 7.75821730e-02 -2.03144222e-01\\n5.72810590e-01 -2.17529297e-01 2.23930269e-01 1.19926929e-01\\n1.26079857e-01 1.99299574e-01 1.52441457e-01 9.11917537e-02\\n-2.76066005e-01 -3.35463345e-01 -1.03997886e-01 -1.44256145e-01\\n6.24363899e-01 3.26365411e-01 -2.17629801e-02 5.32800555e-02\\n1.41887307e-01 -1.96928799e-01 -5.22651911e-01 -2.12304950e-01\\n-6.34393021e-02 -1.35689989e-01 -6.88690782e-01 -5.08009076e-01\\n-2.22282708e-01 -8.03410783e-02 -1.87203109e-01 7.38792241e-01\\n-2.69677222e-01 -1.89316869e-01 -9.69721824e-02 -6.09651506e-01\\n3.91033947e-01 -1.64330423e-01 5.76500669e-02 -2.51962543e-01\\n-2.16293544e-01 -5.39816141e-01 8.98807272e-02 1.34898908e-02\\n-3.99983414e-02 -2.47507975e-01 1.19101197e-01 -1.18828356e-01\\n-2.73174405e-01 -4.76839840e-01 4.02263522e-01 2.26547837e-01\\n3.05459380e-01 1.73775733e-01 3.36529911e-01 -5.57742566e-02\\n2.55649805e-01 -1.92559641e-02 -1.89690650e-01 -3.25314164e-01\\n1.39680326e-01 8.31988007e-02 3.54917705e-01 -1.34529799e-01\\n-1.22191742e-01 1.20385304e-01 -2.48277068e-01 -9.30234641e-02\\n4.11407650e-01 -1.05201475e-01 5.34394346e-02 -8.42848569e-02\\n3.60394597e-01 -2.84647226e-01 -1.71526939e-01 2.44031455e-02\\n9.84324589e-02 7.68158793e-01 -5.58939017e-03 -5.24926305e-01\\n1.18317567e-02 5.55643141e-01 9.24163684e-03 1.06751174e-02\\n-3.16886902e-01 1.05011672e-01 -2.51011759e-01 3.11813265e-01\\n1.13789886e-02 -1.80304289e-01 -2.08910257e-01 -2.19813764e-01\\n-1.74070269e-01 2.21201599e-01 2.46137515e-01 1.27475619e-01\\n-2.11120062e-02 -3.21910262e-01 -2.00424045e-01 2.49503508e-01\\n2.17861995e-01 4.82915819e-01 2.19339967e-01 -2.42882714e-01\\n-2.17846297e-02 3.27325761e-01 -1.56466872e-01 1.49184167e-01\\n-2.85380065e-01 1.20912708e-01 -5.34851074e-01 -2.26842359e-01\\n-2.31371552e-01 -3.94340336e-01 1.85542971e-01 4.00716305e-01\\n1.29319355e-01 -1.42921120e-01 1.82845831e-01 -4.70712543e-01\\n3.13165516e-01 2.96505928e-01 6.77503571e-02 1.51993483e-01\\n3.59634310e-02 7.26995587e-01 1.41285229e-02 -2.37567574e-01\\n-1.36250168e-01 -5.21105193e-02 -2.30557352e-01 -2.33205393e-01\\n4.86279763e-02 -5.67141891e-01 -1.25840366e-01 4.14481312e-01\\n5.88311441e-02 -2.83619344e-01 -3.22829664e-01 2.45125219e-01\\n5.49949184e-02 -1.34644657e-01 -2.48466015e-01 -6.68199211e-02\\n4.28889245e-01 -1.04629792e-01 2.66903758e-01 -5.28803825e-01\\n5.76970093e-02 -5.18402420e-02 8.69944245e-02 5.62788904e-01\\n1.44799650e-01 1.29055366e-01 -9.65894759e-02 -1.86028093e-01\\n4.47029442e-01 -8.16727281e-02 -1.73637822e-01 4.33749333e-02\\n1.59072548e-01 -1.88954622e-01 -4.18685973e-01 8.80020037e-02\\n-1.26815930e-01 -1.92775324e-01 5.35170734e-02 1.92247659e-01\\n4.43729423e-02 1.28883183e-01 -6.84196293e-01 -3.06600809e-01\\n-2.64415205e-01 6.82324171e-02 7.87351578e-02 -5.64081311e-01\\n1.37114814e-02 -1.26930326e-01 -5.97811222e-01 2.47712940e-01\\n-2.21192390e-02 -2.26999164e-01 2.62781024e-01 1.14665180e-01\\n-2.72057712e-01 -1.39947653e-01 1.45706441e-02 1.53290555e-01\\n-3.28228235e-01 -3.67780328e-01 -7.27485642e-02 -1.07193446e+00\\n2.25077853e-01 1.47885740e-01 -2.19207317e-01 2.59622931e-01\\n-5.94061539e-02 -7.99730062e-01 4.55757938e-02 -3.83859366e-01\\n-7.41356015e-02 -2.41216943e-02 -2.48026133e-01 -3.44804168e-01\\n1.00986212e-01 5.09668663e-02 -2.06268176e-01 4.35465693e-01\\n-4.18261558e-01 3.78620923e-01 -2.08440125e-01 8.04942548e-02\\n7.31090456e-02 -3.64128858e-01 9.13885608e-02 -4.15105283e-01\\n-4.14787710e-01 -3.36221993e-01 -3.67865145e-01 -3.05270970e-01\\n-3.15383524e-02 -5.04256546e-01 -5.12754917e-02 -1.08980350e-02\\n4.78007495e-01 2.24641651e-01 -1.37601987e-01 -2.90719271e-01\\n-3.88187319e-02 -4.48888600e-01 -1.50886178e-03 -1.48260236e-01\\n-7.53376558e-02 -2.36101285e-01 2.12596506e-01 1.41000703e-01\\n1.67472482e-01 -4.29942071e-01 4.02122855e-01 -2.61439055e-01\\n-3.32473546e-01 -2.36470938e-01 4.54503596e-02 7.02080354e-02\\n2.95249760e-01 -4.96690899e-01 -2.72229593e-03 2.65036881e-01\\n2.38607287e-01 -2.41885986e-02 2.81740010e-01 -9.40708667e-02\\n9.59842931e-03 2.71147907e-01 -3.35410416e-01 2.15242654e-01\\n5.97622633e-01 1.17543370e-01 1.61616325e-01 1.95294216e-01\\n2.08071470e-01 2.82338947e-01 5.33342242e-01 -2.03958657e-02\\n-9.53450799e-04 3.20085645e-01 1.23949036e-01 -4.19393659e-01\\n-7.51649141e-02 -1.06877126e-01 -8.01247805e-02 -3.45256776e-01\\n7.05132365e-01 4.47373152e-01 -3.37100178e-01 -1.10133410e-01\\n-2.72297800e-01 -1.98818237e-01 2.10725039e-01 -4.95266467e-02\\n-7.95061886e-02 1.15052342e-01 4.89127755e-01 -1.14399776e-01\\n2.45970488e-01 5.72366297e-01 -2.94472724e-01 -2.63495028e-01\\n-2.15922967e-01 3.08524549e-01 2.59994641e-02 4.65615124e-01\\n-2.61387885e-01 3.02861780e-01 1.30239576e-01 1.64290771e-01\\n-2.39229113e-01 1.53996617e-01 8.62301067e-02 1.52675718e-01\\n3.51831257e-01 -7.26979226e-02 4.23496485e-01 4.77612317e-01\\n3.31548274e-01 4.07338709e-01 4.06877995e-01 5.42258695e-02\\n5.01626194e-01 5.56577444e-01 5.29224038e-01 1.18944295e-01\\n7.49630481e-02 9.72353369e-02 1.84845626e-01 2.36443616e-02\\n2.87443548e-01 5.45897841e-01 1.04046673e-01 8.42569947e-01\\n3.72719526e-01 3.46872628e-01 6.95742011e-01 -7.36663818e-01\\n-3.64543170e-01 -3.96736562e-02 5.49128413e-01 -3.17222297e-01\\n1.33364141e-01 1.55748993e-01 -1.49561867e-01 2.36745656e-01\\n-4.29289550e-01 -2.32609928e-01 3.15140411e-02 1.58049643e-01\\n1.15368053e-01 -2.16189295e-01 -2.00409368e-01 2.03507170e-01\\n-2.21010342e-01 -1.21603936e-01 -3.85199457e-01 -7.55350813e-02\\n-2.26084024e-01 -3.12810093e-02 7.77518190e-03 -1.56865671e-01\\n-9.85272080e-02 -2.70421267e-01 -1.40903935e-01 -8.31648260e-02\\n3.84521157e-01 -1.18471131e-01 -1.19114116e-01 -1.15869805e-01\\n2.73873448e-01 1.70746401e-01 5.60358405e-01 -1.93594024e-03\\n1.10007524e-01 -1.85535356e-01 -1.53566033e-01 1.86564520e-01\\n2.14750424e-01 6.70564473e-02 3.20854485e-02 3.44990492e-01\\n-2.08808005e-01 -1.58831000e-01 2.20954776e-01 2.57213444e-01\\n-3.36503953e-01 -3.82269397e-02 -2.01983526e-01 9.50355455e-02\\n5.96063510e-02 2.46583730e-01 -2.47002587e-01 -6.63466230e-02\\n-1.17401727e-01 -6.07196689e-01 3.90233815e-01 -3.57466161e-01\\n-1.40969843e-01 -5.50134256e-02 2.76421249e-01 3.49114597e-01\\n-2.89102852e-01 4.72083874e-02 -1.62901469e-02 7.42716640e-02\\n5.01377285e-02 2.60579735e-01 -3.17225426e-01 -2.50775605e-01\\n-3.19044083e-01 2.03708112e-01 -1.09380811e-01 1.43182650e-01\\n8.52500722e-02 4.42883044e-01 2.20652685e-01 2.83812545e-02\\n3.43937576e-01 5.49533404e-03 -2.42628515e-01 -1.54690981e-01\\n-3.12048793e-01 -1.30345121e-01 -1.26126364e-01 -6.13558106e-02\\n1.60341278e-01 -2.96005070e-01 -7.62861073e-02 -2.50045031e-01\\n-1.88376456e-01 -3.98542941e-01 -9.68363881e-02 -7.16263428e-02]]',\n", + " \"About iptiQ EMEA P&C

iptiQ EMEA Property & Casualty is a newly built unit within Swiss Re Life Capital, established to deliver digital-native and creative solutions for Property & Casualty (P&C) clients and partners across Europe that engage with consumers in non-traditional ways. About the role As a Backend Software Engineer you will have an unusual and great opportunity to join us: a diverse and motivated team, committed to delivering value and creative services together with our clients and partners in the primary insurance space. Responsibilities You will work closely in multi-functional teams to shape the technology platform that fulfill our business and product vision and ultimately bring value to our customers and partners by disrupting the traditional insurance proposition. This will require seeking complex problems within a high-traffic distributed infrastructure by designing, implementing and testing simple, scalable and reliable solutions. This will include: Design and implement new features and/or components within our platform and develop prototypes quickly to allow an iterative approach Deliver high-quality code, focusing on simplicity, performance, maintainability and scalability End-to-end responsibility on the applications implemented, including monitoring, identifying issues or bottlenecks and delivering improvements of the platform Optimise applications and components to maximize speed and efficiency, ease of development of new features and the ability to scale business processes Create common libraries and frameworks demonstrated across the platform to streamline development of complex applications About the team We put the consumers' needs at the center of what we do, seek to become a digital champion and believe in data based learning. We use the Swiss Re network to access state of the art technologies and capabilities, combine it with local expertise and an innovative mind-set, constantly questioning current ways of offering insurance. Our aim is to drive the digitalization of the P&C insurance business in Europe, combining insurance know-how and e-commerce competencies, as well as the dynamic spirit of a start-up with the backing of Swiss Re. Do you enjoy thinking ahead and identifying new opportunities or anticipate future challenges? Do you like driving complex, multi-functional projects in an agile way? Do you enjoy pushing borders and have a passion for the latest technologies? About you Proven software development capabilities (5+ years hands-on experience) in any modern language (Java/Kotlin/Scala/C++/C#/Go/Python…) ***we are working in Java environment*** Experience with high-traffic micro services architectures and best practices around designing, scaling and monitoring concurrent systems (using different technologies and preferably RESTful APIs and message passing protocols) You carefully evaluate design trade-offs and strive for simple, elegant, algorithmically efficient solutions Your code is easy to read, test and re-use and you constantly improve quality overtime You understand performance metrics, how to collect and use them to continuously improve performance, scalability and efficiency Experience designing data-models for relational and NoSQL data stores Great team player: you collaborate effectively with team members, express technical leadership supporting your views and ideas while keeping open to different opinions, being fearless and always supplying to the overall growth of the team Continuous learner who stays up-to-date with the latest trends and carefully vet with proper pragmatism and long term vision the adoption of new technologies Master’s or PhD degree in computer science, engineering or equivalent working experience Ability to speak and write English fluently We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, or disability status.
Swiss Re\",\n", + " '[\"Complex Problem Solving\", \"Leadership\", \"Collaboration\", \"Infrastructure\", \"Team Motivation\", \"Reliability\", \"Innovation\", \"Creativity\", \"Written English\"]',\n", + " '[\"Disabilities\", \"Performance Improvement\", \"NoSQL\", \"Accessioning\", \"Agility\", \"Capitalization\", \"Computer Science\", \"Collections\", \"Data Modeling\", \"Consumables\", \"Service-Oriented Architecture\", \"Good Agricultural Practices\", \"Scholastic READ 180\", \"Scale (Map)\", \"Activity-Based Learning\", \"Streamlines\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Prototyping\", \"Maintainability\", \"Library\", \"Iterators\", \"Micro Channel Architecture\", \"Message Passing\", \"Concurrent Versions System (Software)\", \"E-Commerce\", \"Business Process\", \"Equalization\", \"C# (Programming Language)\", \"Digitization\", \"Performance Metric\", \"Scalability\", \"Java Runtime Environment\", \"Experience Design\", \"Software Development\", \"Centering\", \"Operational Data Store\", \"Coloring\", \"Quality Improvement\", \"Kotlin\", \"Adoptions\", \"RESTful API\", \"Java Scripting Languages\"]',\n", + " \"['English', 'Ido', 'Hindi', 'Chamorro', 'Luba-Katanga']\"],\n", + " ['57',\n", + " 'java software engineer (trade & investment industry)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.07997069e-01 2.71493018e-01 5.81448197e-01 -1.59785822e-01\\n5.95430672e-01 -1.83989257e-01 -4.44065556e-02 4.01443958e-01\\n-1.83074832e-01 -2.76829362e-01 -1.98167786e-01 -2.13587329e-01\\n-3.85244712e-02 2.05516014e-02 1.33885384e-01 2.63136685e-01\\n2.72846282e-01 1.42083138e-01 -2.01178864e-01 2.99661219e-01\\n2.13179693e-01 -8.30361471e-02 1.00194871e-01 6.17456794e-01\\n5.13524294e-01 -8.74288162e-05 -1.09176755e-01 1.21137835e-01\\n-2.81737953e-01 -3.02767634e-01 4.92780566e-01 1.52808828e-02\\n-1.14980273e-01 -2.12051153e-01 1.77509665e-01 -1.67227015e-02\\n-2.00571463e-01 -5.96622303e-02 4.62090457e-03 1.59409210e-01\\n-4.50257510e-01 2.95964535e-02 6.94676787e-02 1.57455564e-01\\n-2.57336050e-01 -3.24124426e-01 1.42135620e-01 -1.47686861e-02\\n4.75722328e-02 3.90400514e-02 -5.36183655e-01 3.72811556e-01\\n-2.40281150e-01 -3.30967247e-01 3.44957322e-01 5.05808353e-01\\n-9.40243900e-02 -5.31372070e-01 -3.61098051e-01 -3.74363065e-01\\n1.86227724e-01 -8.19879249e-02 1.35126784e-01 -3.22184235e-01\\n4.43649203e-01 -6.20293878e-02 5.49346628e-03 4.42594677e-01\\n-9.19638336e-01 -2.33739745e-02 -1.14261433e-01 -6.53537735e-02\\n-3.91936243e-01 -1.00792013e-01 -2.18538091e-01 -4.88774963e-02\\n-1.15467601e-01 4.78044868e-01 -3.79081210e-03 1.53089970e-01\\n-1.29923105e-01 2.21422270e-01 -2.18510166e-01 3.26532990e-01\\n2.13340640e-01 2.83659697e-01 1.71255395e-01 2.86598116e-01\\n-3.72018367e-01 4.68351513e-01 1.30656272e-01 -2.69375116e-01\\n1.66513994e-01 1.12929076e-01 4.55543786e-01 -1.87387178e-03\\n1.35446578e-01 6.89652786e-02 -2.46838927e-01 1.83317050e-01\\n2.41293281e-01 -2.87747920e-01 3.70693244e-02 2.24925019e-02\\n-1.22209422e-01 1.00086510e-01 6.47761226e-02 3.58535856e-01\\n-2.91765153e-01 4.33401108e-01 1.39891535e-01 -2.69043177e-01\\n-1.74241196e-02 -6.16032422e-01 -7.45536312e-02 1.10003233e-01\\n5.75732738e-02 1.59366101e-01 2.38207772e-01 3.03742200e-01\\n3.18367273e-01 4.66612726e-02 2.42165983e-01 8.67508650e-01\\n-5.00150435e-02 3.87841202e-02 -1.95406899e-01 3.90115947e-01\\n1.39301807e-01 -2.47587815e-01 2.43341386e-01 4.01863664e-01\\n1.23488098e-01 -1.35056581e-02 -1.57252625e-01 3.44985217e-01\\n-4.75350767e-02 -2.52450109e-01 -2.43839189e-01 3.30109261e-02\\n-1.34452730e-01 -5.41684687e-01 5.97400486e-01 6.34615496e-02\\n1.60602748e-01 -6.21774308e-02 1.52860498e-02 -1.53189838e-01\\n-9.62666646e-02 2.82598794e-01 2.94436160e-02 8.48164335e-02\\n-2.71946102e-01 -1.18174501e-01 -3.05280834e-01 1.00666024e-01\\n-1.66945949e-01 -6.38676882e-02 -1.39714658e-01 -7.06473738e-02\\n3.34962785e-01 -1.43361334e-02 -2.39031941e-01 2.77483165e-01\\n-1.09741226e-01 -1.17468908e-01 -7.29272664e-02 2.47523829e-01\\n-1.72797427e-01 1.72968537e-01 -9.58040878e-02 -1.69858158e-01\\n6.27738297e-01 1.74716160e-01 1.75696269e-01 1.73189752e-02\\n2.24308759e-01 -6.02296703e-02 2.26805255e-01 7.93364495e-02\\n-8.53331566e-01 3.30197990e-01 4.37565260e-02 -1.36784464e-01\\n1.13479495e-01 7.05453102e-03 2.90446371e-01 -4.03887987e-01\\n1.56017438e-01 -2.45620102e-01 -3.69374603e-01 -2.71420926e-01\\n-2.82670885e-01 1.47687737e-02 4.20210600e-01 -5.01214206e-01\\n-9.69523191e-02 7.78333470e-02 -5.21781206e-01 1.36726839e-03\\n1.80250853e-01 1.72566652e-01 9.98427197e-02 1.19547136e-01\\n-6.28567934e-02 -5.36092103e-01 1.53275207e-01 -3.40696245e-01\\n-2.59122074e-01 1.40982747e-01 -3.71774346e-01 3.10497552e-01\\n-9.34011303e-04 -2.29593040e-03 -3.07022668e-02 1.07245453e-01\\n-1.98432669e-01 -1.19936720e-01 9.43303779e-02 1.28760219e-01\\n3.65847439e-01 4.51289453e-02 -3.69863778e-01 5.92650890e-01\\n-2.85719067e-01 5.63080788e-01 1.14903837e-01 -8.54288936e-01\\n5.01074672e-01 3.55065465e-01 1.51168317e-01 -3.47291440e-01\\n7.60201812e-01 -2.26485923e-01 -1.00838736e-01 5.36476672e-02\\n-5.09676278e-01 -3.10811639e-01 2.37251833e-01 -1.77537680e-01\\n-3.16445172e-01 5.65726578e-01 1.25809342e-01 -2.33931504e-02\\n2.60271907e-01 -1.47324115e-01 -1.59478337e-01 4.50410955e-02\\n-1.38279244e-01 -2.37838909e-01 -3.36636782e-01 3.98214906e-02\\n-6.92140087e-02 -5.07633030e-01 -7.24471062e-02 -4.12681311e-01\\n-1.97447851e-01 -3.12829226e-01 -2.01547310e-01 3.06387573e-01\\n1.60016775e-01 1.36799574e-01 8.72558281e-02 -2.15283800e-02\\n-3.02306622e-01 -5.12979686e-01 -1.41309453e-02 1.55545026e-01\\n3.41824472e-01 2.17020348e-01 9.59326401e-02 -5.41585907e-02\\n-2.88391151e-02 6.22576892e-01 -2.36075848e-01 -2.01403573e-01\\n1.69380993e-01 1.70269936e-01 6.26991689e-02 -1.07554168e-01\\n7.96168149e-02 3.73671740e-01 -2.67800242e-01 2.52849758e-02\\n-2.50221193e-01 3.38912569e-02 3.31454247e-01 -6.69719502e-02\\n-2.14489818e-01 -2.54290164e-01 -8.72186869e-02 2.54121333e-01\\n-5.22685170e-01 -2.33238548e-01 5.34146965e-01 2.31605247e-01\\n1.52258411e-01 1.92046881e-01 2.30247125e-01 -1.26328021e-01\\n-1.54321998e-01 -2.68528551e-01 2.16946647e-01 1.04536936e-01\\n1.60217226e-01 1.54661700e-01 -1.56948179e-01 -5.46011627e-01\\n-3.25702453e+00 -2.21038640e-01 2.08590671e-01 -4.11288947e-01\\n2.29660198e-01 -1.79955944e-01 3.18232365e-02 -1.42988473e-01\\n-2.00560972e-01 1.33109381e-02 -1.48443565e-01 -1.65662870e-01\\n1.85593084e-01 1.88209668e-01 1.49156600e-01 2.02702567e-01\\n1.79947078e-01 -2.14688063e-01 3.50614078e-02 3.28466117e-01\\n-2.73460537e-01 -6.09355927e-01 2.55817115e-01 2.71148677e-03\\n2.65117019e-01 4.33849871e-01 -3.11776489e-01 -1.49494365e-01\\n-1.98414728e-01 -3.29774886e-01 5.10012992e-02 -1.77159935e-01\\n-4.05712686e-02 4.06524926e-01 2.03101188e-01 -4.01660837e-02\\n1.29604161e-01 -3.48383009e-01 3.38737890e-02 -4.32152361e-01\\n2.17690423e-01 -4.69175965e-01 -6.23980202e-02 -1.38590291e-01\\n8.13747048e-01 -4.02616739e-01 1.45061105e-01 1.27734736e-01\\n1.06800355e-01 2.10777923e-01 4.75400575e-02 -1.32290244e-01\\n-3.36042464e-01 -1.86079100e-01 9.19160470e-02 -1.99960887e-01\\n3.94881040e-01 5.22353232e-01 -1.92702040e-01 5.73023036e-03\\n1.03054047e-01 -3.03175002e-01 -3.96549433e-01 -3.92134756e-01\\n-1.87749520e-01 -3.08846354e-01 -5.87787449e-01 -4.82632875e-01\\n-5.42762019e-02 -1.25978082e-01 -1.17548369e-01 5.02939403e-01\\n-2.43563756e-01 -4.77920771e-01 -1.69105574e-01 -4.98926252e-01\\n1.85648665e-01 -1.15087196e-01 -1.23189941e-01 -2.84715533e-01\\n-1.60485551e-01 -4.51691419e-01 -5.92231750e-03 -1.22047953e-01\\n-1.53646827e-01 -3.27555746e-01 1.58138946e-01 -2.51421809e-01\\n-3.81294131e-01 -6.02349877e-01 3.82458121e-01 5.12810573e-02\\n2.71342635e-01 6.27465993e-02 1.21326171e-01 1.90936476e-01\\n3.10019225e-01 -2.87883610e-01 9.71045047e-02 -4.24930453e-01\\n1.97411686e-01 4.47879434e-02 6.31277263e-01 -3.07622373e-01\\n1.11268476e-01 1.02020517e-01 -2.23331943e-01 -1.94375888e-01\\n2.92230904e-01 1.21706619e-03 4.91972491e-02 -3.28746676e-01\\n3.69442374e-01 -3.45921069e-01 -3.06262493e-01 1.58500046e-01\\n3.01242457e-03 5.49569488e-01 -3.70646715e-02 -3.18781614e-01\\n-2.00006470e-01 5.02118886e-01 -1.48745462e-01 -1.65820166e-01\\n-1.84718236e-01 1.13321915e-01 -2.04120293e-01 3.15334022e-01\\n1.22930676e-01 -1.14667498e-01 -2.05208793e-01 -1.35922834e-01\\n2.50117369e-02 2.76776344e-01 2.68130988e-01 6.15060627e-02\\n2.40528937e-02 -2.80214518e-01 1.71346124e-02 1.59853294e-01\\n2.41718322e-01 2.69262850e-01 1.86531246e-02 -1.75274536e-01\\n-3.90929468e-02 3.10538083e-01 -1.89180806e-01 2.45492280e-01\\n-1.62411690e-01 8.62074047e-02 -6.09717071e-01 -2.77680725e-01\\n-2.49167353e-01 -2.94593871e-01 7.74359629e-02 1.05941840e-01\\n1.13134846e-01 7.60403275e-03 -2.51356419e-02 -4.62147057e-01\\n2.39586622e-01 1.57740209e-02 3.01600695e-01 1.68682724e-01\\n-1.40204448e-02 4.72402036e-01 -6.15615621e-02 2.21950542e-02\\n-1.80735454e-01 9.61361378e-02 -1.74565166e-01 -2.14087978e-01\\n1.91961434e-02 -4.70343471e-01 -2.13615354e-02 4.73220468e-01\\n1.54089540e-01 -3.44465613e-01 -2.26803109e-01 1.76173940e-01\\n2.90190838e-02 -3.89121681e-01 -2.34947249e-01 -3.61530408e-02\\n3.38768274e-01 6.22863434e-02 3.63549799e-01 -5.15252769e-01\\n3.69226299e-02 6.52786344e-02 -3.67808864e-02 4.00043100e-01\\n-1.27075659e-03 -5.11460565e-02 -4.81655523e-02 -2.78637588e-01\\n3.57009798e-01 -2.07562491e-01 -6.13678917e-02 -6.34675771e-02\\n1.85005814e-01 -1.27843365e-01 -4.46809530e-01 -5.44265173e-02\\n-2.13641822e-02 -1.76650867e-01 4.28966805e-02 1.72662884e-02\\n1.66453406e-01 9.63558406e-02 -4.60519224e-01 -3.34416628e-01\\n-3.39812130e-01 -1.73896194e-01 1.35332486e-02 -3.56287420e-01\\n2.58547459e-02 5.79664446e-02 -5.24960220e-01 1.76273644e-01\\n-2.39259273e-01 1.70525592e-02 1.49962962e-01 -4.61819246e-02\\n-4.66351181e-01 1.00623937e-02 1.81274116e-01 2.38576025e-01\\n-3.30875844e-01 -1.98161125e-01 -4.87643741e-02 -1.08942616e+00\\n2.34838724e-01 -1.89734101e-02 -2.52455212e-02 9.21640918e-02\\n-1.51070625e-01 -6.06678307e-01 1.65609553e-01 -4.13203299e-01\\n-7.17041790e-02 -4.99499477e-02 -2.37654850e-01 -3.86604071e-01\\n9.72810909e-02 -1.50546217e-02 -3.14601719e-01 4.16068286e-01\\n-4.11795288e-01 4.16137516e-01 2.78882831e-02 8.31585303e-02\\n-8.00056458e-02 -1.80119470e-01 -3.56668569e-02 -4.14791971e-01\\n-4.25944656e-01 -1.02271803e-01 -2.56853461e-01 -1.27138704e-01\\n-2.61719413e-02 -2.40393922e-01 -7.35557601e-02 -2.81327069e-02\\n3.50241631e-01 1.20197363e-01 -1.11886576e-01 -2.09438369e-01\\n1.03178717e-01 -4.47728574e-01 8.93576145e-02 -2.64389098e-01\\n-7.85191283e-02 -1.60788432e-01 1.28001794e-01 8.73314142e-02\\n6.26413226e-02 -4.90126073e-01 1.98412761e-01 -2.97399372e-01\\n-2.90372550e-01 3.75618599e-02 1.45758554e-01 4.57505211e-02\\n3.35943848e-01 -5.97316265e-01 -6.48602983e-03 4.75671560e-01\\n8.04977864e-02 2.05764472e-02 2.72438794e-01 -9.58873611e-03\\n-1.25806510e-01 3.70408535e-01 -4.58577394e-01 -7.91533589e-02\\n7.99042225e-01 2.00370908e-01 9.33672786e-02 2.85891920e-01\\n1.65322512e-01 2.61306852e-01 4.42724973e-01 1.20006770e-01\\n1.70014966e-02 3.39651018e-01 4.21677018e-03 -6.30807996e-01\\n4.64295708e-02 1.61210261e-03 -2.58775085e-01 -3.76791507e-01\\n7.25384355e-01 4.13079292e-01 -3.38006347e-01 -2.74556249e-01\\n-2.35424072e-01 -1.38003409e-01 1.85801819e-01 -1.56228125e-01\\n6.69806078e-02 -7.88090676e-02 5.01174808e-01 -5.77876857e-03\\n2.78493017e-01 5.45730770e-01 -2.17684388e-01 -3.15038890e-01\\n-1.65894851e-02 9.41753760e-02 1.62644535e-02 4.83644992e-01\\n-9.37905610e-02 1.79200590e-01 3.49050239e-02 1.07405439e-01\\n2.54548248e-02 1.14561588e-01 1.28037825e-01 1.25580534e-01\\n1.13950208e-01 7.52655230e-03 1.98447481e-01 4.25031990e-01\\n2.92316198e-01 4.91759479e-01 3.91194105e-01 3.15347873e-02\\n4.98853266e-01 5.16909719e-01 3.29930842e-01 1.63069591e-01\\n-9.44739580e-02 5.74367642e-02 7.52014294e-02 -2.21744739e-02\\n2.72962242e-01 2.49209255e-01 9.63768736e-02 9.07246053e-01\\n4.11299139e-01 2.37936959e-01 7.42306769e-01 -5.98914742e-01\\n-4.00211394e-01 -2.64788195e-02 3.95068228e-01 -4.27377373e-01\\n-1.09400943e-01 6.77484050e-02 -1.77307099e-01 2.66318113e-01\\n-4.50107306e-01 -1.22388877e-01 1.16017452e-02 9.07753706e-02\\n1.54870242e-01 2.47633103e-02 -2.81760722e-01 -6.02776557e-02\\n-1.77631438e-01 -1.17812842e-01 -4.59562272e-01 -1.56335741e-01\\n-2.15565398e-01 -2.82099187e-01 -1.87335610e-01 -1.36126205e-01\\n-1.29400492e-01 -3.72103184e-01 -7.74654672e-02 2.89113652e-02\\n1.99649423e-01 -1.16397537e-01 -3.63300927e-02 -2.11628601e-01\\n3.13893020e-01 2.53305972e-01 3.90481889e-01 -8.68993476e-02\\n8.86711180e-02 -1.56069383e-01 -1.99807674e-01 1.06122054e-01\\n1.93565145e-01 1.20453149e-01 -6.29366376e-03 3.83871615e-01\\n-3.89157742e-01 -2.07806394e-01 9.39257294e-02 3.54678214e-01\\n-5.08037388e-01 -1.00584820e-01 3.30101252e-02 2.45319501e-01\\n4.32307310e-02 1.16589703e-01 -3.34304243e-01 6.83211386e-02\\n-2.37132281e-01 -4.74549860e-01 3.00552130e-01 -1.19882397e-01\\n-7.67530352e-02 1.76528841e-01 2.52952337e-01 1.99135378e-01\\n-1.21021979e-01 -9.69005451e-02 -3.95405367e-02 1.74260810e-01\\n1.52742669e-01 2.81706154e-01 -1.71588600e-01 -2.76368648e-01\\n-2.73181260e-01 2.85304159e-01 -3.11419219e-01 1.83875114e-01\\n-9.70125571e-02 3.59673500e-01 1.25148773e-01 1.21744826e-01\\n3.03740859e-01 -7.28292614e-02 -1.53412461e-01 -2.62224138e-01\\n-2.18251452e-01 -2.75559515e-01 7.74684995e-02 -4.42614332e-02\\n1.90829322e-01 -4.26401138e-01 2.19009332e-02 -1.20092414e-01\\n-2.91376650e-01 -2.53624320e-01 -5.18372431e-02 -1.32372469e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Java Software Engineer (Trade & Investment Industry). This role is permanent position based in Zurich. Your Role: Further develop a trading infrastructure (e.g. refinement of execution logic, adaptation of risk check tools or implementation of new investment strategies). Continuously adapt automation processes (in the areas of reporting, fund cash management & customer settlements, etc…). Act as an interface for outsourced IT services / providers & counterparties. Provide support in all areas of IT including the website & colleagues in the field of hardware & software. Hold responsibility for Data (including data collection, transfer & backup). Your Skills: At least 3+ years of professional Java Software Engineering experience. Strong experience in Web Application Development & JavaScript. Ideally experienced in the majority of the following technologies: TypeScript, React & Twitter Bootstrap. Kubernetes on the Google Cloud. Matlab & Excel. Maven, Jenkins & Nexus. MySQL, Kafka, Kibana & ElasticSearch. Jira, Confluence & GitHub. Experience within the Trade & Investment Industry is considered a plus. Your Profile: Completed University Degree in Computer Science or similar. Highly motivated, entrepreneurial, & team-oriented. Willing to work within a small team. Fluent German & English (spoken & written), Swiss-German is considered advantageous. If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Adaptability\", \"Team Oriented\", \"Positivity\", \"Infrastructure\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"MySQL\", \"Tooling\", \"Jenkins\", \"Kibana\", \"Computer Science\", \"MATLAB\", \"Cash Management\", \"Outsourcing\", \"Document Process Automation\", \"Industrialization\", \"Survey Data Collection\", \"TypeScript\", \"E (Programming Language)\", \"Investment Strategy\", \"Idealization\", \"Refinement\", \"Executable\", \"Software Engineering\", \"Investments\", \"React.js\", \"Github\", \"Apache Maven\", \"JavaScript (Programming Language)\", \"Settlement\", \"Google Cloud\", \"Receivables\", \"Atlassian Confluence\", \"Service Provider\", \"JIRA Studio\", \"Java (Programming Language)\", \"Web Application Development\", \"Acceptance and Commitment Therapy (ACT)\", \"Elasticsearch\"]',\n", + " \"['English', 'Nepali']\"],\n", + " ['109',\n", + " 'software engineer (backend / scala)',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.starmind.ai',\n", + " '[[-1.01592772e-01 1.46345213e-01 5.37268758e-01 -1.85465291e-02\\n4.86281574e-01 -1.95392415e-01 3.54091674e-02 4.79321897e-01\\n4.29899152e-03 -5.16053200e-01 7.88678229e-02 -3.12507689e-01\\n-2.04483479e-01 2.45580077e-01 1.52318880e-01 3.90131503e-01\\n2.62056649e-01 2.23478884e-01 -1.90335944e-01 5.64888477e-01\\n1.47807240e-01 -1.10005494e-03 1.26096860e-01 7.48302102e-01\\n3.55393380e-01 -9.10661966e-02 -7.97895566e-02 -4.76140231e-02\\n-2.27066517e-01 -2.62611151e-01 3.94330919e-01 4.17556278e-02\\n-1.38219282e-01 -5.20477474e-01 5.32875769e-02 -1.20180354e-01\\n-3.18828791e-01 -1.66273415e-01 1.18842749e-02 3.21675688e-01\\n-5.89863062e-01 -3.28459978e-01 4.91509773e-02 -2.49100849e-02\\n-2.74906754e-01 -3.53901088e-01 5.68371601e-02 7.24043250e-02\\n2.18781233e-01 9.49345082e-02 -5.11161506e-01 1.75020918e-01\\n-2.29602754e-01 -2.57567048e-01 2.75579065e-01 5.95202208e-01\\n6.27733022e-02 -4.49782610e-01 -5.94296098e-01 -3.31569552e-01\\n5.96662164e-02 -8.75356793e-02 3.11096422e-02 -4.39027846e-01\\n1.17199063e-01 6.28247634e-02 1.08436413e-01 4.08104032e-01\\n-8.07177424e-01 -3.23682241e-02 -1.33790836e-01 -4.37766686e-03\\n-3.60410035e-01 -9.91170034e-02 -2.12163642e-01 -7.88381547e-02\\n-1.06401928e-01 4.92927194e-01 2.16912538e-01 2.57097408e-02\\n-1.51845038e-01 3.28070104e-01 -2.88987488e-01 4.66203332e-01\\n2.43202031e-01 2.57313907e-01 2.35819548e-01 2.95859396e-01\\n-4.92730081e-01 4.68427896e-01 4.67154104e-03 -3.00951689e-01\\n3.25496703e-01 1.34005442e-01 6.06081009e-01 -7.84594789e-02\\n1.65896356e-01 2.68891342e-02 -3.93056363e-01 3.55220407e-01\\n2.41682827e-01 -3.18989575e-01 6.59884885e-02 -1.19958088e-01\\n-2.24109050e-02 -4.10314277e-02 2.94833127e-02 1.55626938e-01\\n-2.08356991e-01 4.23844874e-01 2.15916693e-01 -1.89219102e-01\\n-1.58167109e-01 -4.66886610e-01 -6.75717741e-03 1.48491152e-02\\n5.27691729e-02 7.94817358e-02 2.42189303e-01 2.09244154e-02\\n1.70905232e-01 1.39971614e-01 1.92118272e-01 8.60782385e-01\\n-9.31746066e-02 4.61167395e-02 -2.31625363e-01 2.09068507e-01\\n1.58201396e-01 -2.77244508e-01 3.08872104e-01 2.15313762e-01\\n-4.13790569e-02 -2.24666253e-01 -1.70478046e-01 4.40101206e-01\\n-5.16360477e-02 -1.99897215e-01 -2.68994570e-01 1.82696536e-01\\n-3.12485546e-03 -3.44063342e-01 6.02642119e-01 1.66013092e-01\\n2.19718307e-01 -1.17163230e-02 -3.05571854e-02 -1.92381173e-01\\n-1.90384656e-01 1.99950814e-01 -4.77342382e-02 1.10204883e-01\\n-2.41426572e-01 -2.89075911e-01 -1.57240525e-01 9.32126716e-02\\n-3.55347753e-01 9.32442918e-02 2.16317475e-02 -1.02280630e-02\\n2.16879413e-01 4.50542122e-02 -1.71092838e-01 1.69636264e-01\\n-1.73625395e-01 3.10414657e-03 6.93574026e-02 2.80952632e-01\\n-1.85683757e-01 1.52774900e-01 1.16246622e-02 -1.65895626e-01\\n6.92867637e-01 2.59127498e-01 2.15406984e-01 -4.28879354e-03\\n3.88493180e-01 -4.01352793e-02 7.96003342e-02 1.36562020e-01\\n-7.25314438e-01 2.42253482e-01 -6.94688633e-02 -2.47732252e-01\\n1.08878464e-01 -7.48626813e-02 2.80924529e-01 -2.16145426e-01\\n7.58454204e-02 -1.31078228e-01 -3.60759377e-01 -2.68607557e-01\\n-1.36345118e-01 3.06593999e-02 4.69052553e-01 -4.78536189e-01\\n-2.30089962e-01 1.04937457e-01 -3.86444271e-01 -1.45288229e-01\\n1.49325505e-01 4.40653712e-02 1.10591680e-01 3.84815261e-02\\n-2.28225172e-01 -5.19182563e-01 -9.08824205e-02 -4.75937843e-01\\n-3.30707848e-01 -2.21429728e-02 -3.73344272e-01 1.99006498e-01\\n-1.10129472e-02 -4.89406958e-02 -1.56791091e-01 1.33202523e-01\\n-2.00512499e-01 -1.76506229e-02 -3.34951803e-02 5.95170632e-02\\n1.60303563e-01 5.19279856e-03 -3.29752445e-01 3.03460062e-01\\n-1.88630879e-01 7.16224253e-01 9.75493118e-02 -8.72159898e-01\\n5.30349910e-01 3.91817361e-01 -1.01227224e-01 -4.69050288e-01\\n4.00333285e-01 -2.80178398e-01 -5.19776084e-02 1.03815682e-01\\n-3.57189864e-01 -3.17788303e-01 3.05527985e-01 -2.04057187e-01\\n-2.25126147e-01 5.05400896e-01 1.01094224e-01 7.28609562e-02\\n2.39053249e-01 -3.07462186e-01 -1.38761744e-01 -1.90826971e-02\\n-4.22417074e-02 -3.54048669e-01 -5.74415088e-01 -2.09795740e-02\\n-1.44112676e-01 -4.42410856e-01 -8.16909671e-02 -2.89924800e-01\\n-1.74869061e-01 -4.22599941e-01 -2.88130641e-01 3.09342653e-01\\n3.30315799e-01 3.03872060e-02 -1.46436254e-02 8.75263736e-02\\n-4.28903624e-02 -6.75730407e-01 3.21364775e-02 1.52448758e-01\\n5.42307556e-01 1.59353703e-01 1.93116397e-01 -6.34506643e-02\\n1.09284885e-01 5.76383710e-01 -1.52219668e-01 -2.01958776e-01\\n1.46285787e-01 2.26308987e-01 2.98066251e-02 -9.61002260e-02\\n7.01019391e-02 3.82476836e-01 -3.03788304e-01 1.36588022e-01\\n5.15522808e-02 -1.11081079e-01 4.37712193e-01 -4.49661165e-03\\n-3.14648211e-01 -1.09113775e-01 -1.32104889e-01 6.90852553e-02\\n-5.89970231e-01 -1.52853385e-01 5.24646163e-01 2.25616291e-01\\n1.79402635e-01 9.62046236e-02 7.04067796e-02 -3.91841531e-02\\n-2.97360599e-01 -2.38561571e-01 2.64715701e-01 1.21378325e-01\\n7.25327730e-02 2.35078007e-01 -4.03854698e-02 -5.73226929e-01\\n-3.09675789e+00 -2.10511282e-01 1.63361788e-01 -2.80453116e-01\\n1.90829918e-01 -1.16107695e-01 2.26672776e-02 -1.21202692e-01\\n-2.64878005e-01 9.03697610e-02 -1.35131821e-01 -1.41378194e-01\\n1.78539887e-01 1.77586198e-01 8.08706582e-02 2.29520798e-01\\n1.89861581e-01 -1.50476769e-01 -1.28892496e-01 3.55302870e-01\\n-2.25118488e-01 -5.94068050e-01 1.92100406e-01 -1.01203725e-01\\n3.05534959e-01 3.23108763e-01 -3.82083058e-01 -1.30135983e-01\\n-8.30230936e-02 -8.12996626e-02 -3.62685658e-02 -2.52022266e-01\\n-1.05728149e-01 2.54303217e-01 1.76003337e-01 -4.52123359e-02\\n1.96068138e-01 -3.72125685e-01 -1.95342153e-01 -4.87771749e-01\\n1.54136345e-01 -5.68830013e-01 -1.65685769e-02 -1.95770770e-01\\n7.83108473e-01 -3.57984126e-01 6.71539903e-02 2.03771442e-01\\n1.99687719e-01 1.06508173e-01 4.43027094e-02 2.26407871e-02\\n-1.82020724e-01 -2.42913336e-01 -1.19659640e-01 -2.31995255e-01\\n4.77405429e-01 5.43347359e-01 -5.27781062e-02 -1.17795967e-01\\n1.45652398e-01 -2.41697684e-01 -3.80468965e-01 -2.53293574e-01\\n-5.20366542e-02 -3.86639535e-01 -6.11094654e-01 -3.78037035e-01\\n-1.34541929e-01 -1.93728238e-01 -2.32995361e-01 6.38571143e-01\\n-4.68071580e-01 -3.43100369e-01 4.99086902e-02 -4.34467375e-01\\n2.07718179e-01 -1.87772274e-01 -4.61313576e-02 -1.63079128e-01\\n-2.79258668e-01 -5.01625717e-01 -2.07061432e-02 -5.76271676e-02\\n-2.93333054e-01 -3.77884924e-01 1.43134296e-01 -1.43888429e-01\\n-2.78346837e-01 -4.97152865e-01 3.43537688e-01 5.30824028e-02\\n2.46926859e-01 1.30962193e-01 4.09258842e-01 -2.95389742e-02\\n3.95200998e-01 -4.55493033e-02 -7.20627904e-02 -2.50732660e-01\\n1.63641274e-01 -3.44522670e-02 5.26709199e-01 -2.90968090e-01\\n-8.42539147e-02 9.40553248e-02 -2.26453900e-01 -1.27718467e-02\\n3.73174071e-01 -8.94157290e-02 2.44535394e-02 -1.21028095e-01\\n2.85696745e-01 -2.57033706e-01 -1.33979633e-01 5.98250404e-02\\n1.29245326e-01 5.81819355e-01 -5.75977974e-02 -4.57154214e-01\\n-2.56663978e-01 4.96184945e-01 -1.48743898e-01 -1.13269798e-02\\n-1.81087494e-01 1.02908477e-01 -1.64037481e-01 2.80715942e-01\\n3.69275846e-02 -1.91258252e-01 -2.37365723e-01 -1.94443733e-01\\n-8.09618086e-02 3.44523281e-01 2.07460076e-01 -2.89000385e-03\\n2.95759067e-02 -3.44005466e-01 -9.94288996e-02 1.14229329e-01\\n1.93747908e-01 5.32907784e-01 1.14090011e-01 -1.56560257e-01\\n-9.62035805e-02 4.05209363e-01 -1.12731338e-01 1.25691652e-01\\n-3.04350674e-01 9.47219208e-02 -4.92928445e-01 -2.69566923e-01\\n-2.89163053e-01 -4.58217144e-01 2.38848716e-01 2.03071356e-01\\n1.72875032e-01 -1.14277173e-02 1.95235722e-02 -3.76547396e-01\\n2.52887130e-01 1.60868451e-01 5.58341146e-02 1.65358096e-01\\n4.82037365e-02 4.94607389e-01 1.04185984e-01 -2.00958520e-01\\n-1.00874275e-01 -1.14069216e-01 -1.92048937e-01 -4.44742218e-02\\n9.08128731e-03 -5.44169188e-01 -8.28657597e-02 3.66267830e-01\\n1.54534206e-01 -3.55858773e-01 -2.21891940e-01 2.40925789e-01\\n-8.13351944e-03 -4.49038856e-02 -2.39188552e-01 -9.15807411e-02\\n2.66833305e-01 4.89237905e-02 3.20107996e-01 -4.55914438e-01\\n-1.39290877e-02 1.14867426e-01 -1.49374843e-01 5.63300133e-01\\n1.81853846e-02 -7.66406208e-02 -2.73340821e-01 -1.45501524e-01\\n3.72203261e-01 -1.80963039e-01 -1.18388608e-01 3.11823562e-02\\n9.00389999e-02 -1.25571176e-01 -5.26849866e-01 1.20336995e-01\\n6.13314733e-02 -1.66980013e-01 -1.48605928e-03 1.50407866e-01\\n2.35719517e-01 1.72581792e-01 -5.33189416e-01 -2.79105008e-01\\n-2.78773963e-01 -2.16753781e-02 1.32314920e-01 -4.08448815e-01\\n2.24328339e-02 -6.92937970e-02 -5.82949758e-01 1.46968037e-01\\n-2.84546733e-01 -2.22495168e-01 1.92495525e-01 8.89166668e-02\\n-4.01122689e-01 -5.15243635e-02 7.46391118e-02 2.60076255e-01\\n-2.80338168e-01 -3.74192446e-01 9.06283706e-02 -9.23850536e-01\\n1.79949835e-01 2.33401150e-01 -1.49744704e-01 1.45443261e-01\\n-1.20567098e-01 -6.24237180e-01 3.27122100e-02 -3.32167745e-01\\n-8.02329481e-02 -3.79030481e-02 -2.68051088e-01 -4.17655945e-01\\n4.49228808e-02 -9.90569293e-02 -2.81741977e-01 4.89167392e-01\\n-2.83333182e-01 2.83649474e-01 -1.23424649e-01 2.12460421e-02\\n-1.07515194e-02 -2.97657132e-01 1.26188591e-01 -4.53281164e-01\\n-4.70287323e-01 -1.50162429e-01 -3.96312326e-01 -3.46329212e-01\\n3.49154919e-02 -2.93182045e-01 -9.68781412e-02 8.94234776e-02\\n2.45425314e-01 3.38064395e-02 -4.44300808e-02 -3.83389473e-01\\n1.15585543e-01 -4.91107583e-01 4.66251001e-03 -2.28872281e-02\\n-9.43247229e-02 -9.67839956e-02 2.09604383e-01 8.39657858e-02\\n5.20742498e-02 -3.25619698e-01 3.24006438e-01 -4.62584347e-01\\n-1.36492342e-01 -1.03310019e-01 -5.42838126e-02 7.68677518e-03\\n2.72884548e-01 -4.90212083e-01 1.11373022e-01 3.66794586e-01\\n2.28798583e-01 2.07098555e-02 1.47431299e-01 -8.08860362e-03\\n8.91943648e-02 3.17483276e-01 -2.44612664e-01 1.83751941e-01\\n7.56403208e-01 7.05065876e-02 2.08007634e-01 2.11778313e-01\\n1.64527521e-01 2.76939958e-01 5.29630423e-01 3.65676396e-02\\n-1.11593813e-01 2.25845069e-01 7.44274110e-02 -3.29431355e-01\\n-4.32447083e-02 6.44464940e-02 -1.81195080e-01 -4.26550627e-01\\n6.61536455e-01 5.24586260e-01 -4.23484385e-01 -6.81020841e-02\\n-1.68979198e-01 -1.82760507e-01 1.29070371e-01 -1.19855002e-01\\n-2.71885023e-02 -3.81243676e-02 3.70101869e-01 -9.69858542e-02\\n1.95880085e-01 5.05422711e-01 -2.34471917e-01 -3.08380663e-01\\n-3.57881226e-02 1.80588111e-01 3.59825268e-02 4.81322169e-01\\n-2.67880142e-01 3.28370750e-01 3.73038948e-02 -4.77436557e-03\\n-4.07827571e-02 3.03682327e-01 9.37933549e-02 1.19647764e-01\\n1.87807053e-01 -4.05810177e-02 3.96618515e-01 3.52554440e-01\\n2.70712376e-01 4.57622290e-01 3.03380251e-01 1.05678059e-01\\n4.37485248e-01 5.44675469e-01 3.47415626e-01 1.81498662e-01\\n-7.11984634e-02 1.05193838e-01 1.90369815e-01 2.53982283e-02\\n3.85665596e-01 2.97067165e-01 6.70256764e-02 8.93379927e-01\\n3.26372087e-01 2.96457678e-01 7.60143936e-01 -6.73693717e-01\\n-4.17139232e-01 1.25916094e-01 4.78806943e-01 -3.58049184e-01\\n-2.67572328e-03 1.57845527e-01 -7.78794438e-02 2.06649989e-01\\n-3.22836757e-01 -2.60353237e-01 -5.12662455e-02 2.46540904e-01\\n-4.48986888e-03 -2.42807418e-01 -2.43269742e-01 9.84040573e-02\\n-1.83556288e-01 -4.69758138e-02 -4.45957065e-01 -3.42766158e-02\\n-1.35572985e-01 -1.82775125e-01 -1.12609021e-01 1.12332660e-03\\n-1.01386726e-01 -4.88645077e-01 2.37312168e-03 -2.39620116e-02\\n2.90467799e-01 -1.44320756e-01 -7.22163096e-02 -1.30499646e-01\\n2.40881294e-01 2.39693820e-01 4.73568916e-01 6.47980422e-02\\n1.15294993e-01 -1.95644736e-01 -2.81158566e-01 2.52895117e-01\\n1.60206437e-01 -6.92643225e-04 -4.89055272e-03 5.57079092e-02\\n-2.06084460e-01 -4.36699018e-02 1.22255623e-01 2.40773767e-01\\n-4.19613421e-01 -6.80414811e-02 -1.65815398e-01 2.05291912e-01\\n2.02806249e-01 2.86103010e-01 -2.69605637e-01 4.86027598e-02\\n-1.97464973e-01 -4.74047244e-01 2.87992418e-01 -1.85843229e-01\\n-9.44706053e-02 8.01906660e-02 2.99003482e-01 1.81002676e-01\\n-3.27223063e-01 -1.31131709e-02 -8.75360966e-02 2.08992139e-01\\n1.59212090e-02 2.36179203e-01 -2.41378069e-01 -3.32659841e-01\\n-2.06421629e-01 1.98722810e-01 -1.27391621e-01 1.25863776e-01\\n-1.34928599e-02 4.15549695e-01 1.69683546e-01 3.06750983e-02\\n4.99918550e-01 -8.33742842e-02 -2.45009214e-01 -2.51426101e-01\\n-2.19856188e-01 -2.61714727e-01 -1.76903278e-01 5.47724962e-02\\n8.49267095e-02 -4.52093095e-01 7.50330277e-03 -1.28159732e-01\\n-1.37255564e-02 -2.86284357e-01 3.57561707e-02 -9.12884697e-02]]',\n", + " 'At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology\\'s computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people\\'s advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from Airbnb, Twitter, Salesforce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! ( //player.vimeo.com/video/331165939?title=0&byline=0 ) The Mission Our engineering team is looking for passionate collaborative engineers to design, implement and expand the SaaS platform for our self learning AI technology. The teams work across the stack shipping end user-focused products and APIs (https://docs.starmind.com/api/v1 ( https://docs.starmind.com/api/v1 )) following reactive programming principles. We\\'re constantly innovating our growing platform using the latest open source technologies such as Akka / Akka Http / Akka Cluster and Streams, Kafka, Node.js, Docker and Kubernetes. What You Will Do Be part of an agile development team to contribute at the core of our products and services Work closely together with various stakeholders, designers and the AI team to develop and ship new features to help build a great product Continuously stay on top of current trends in tech to incorporate it into product development and to share with your teammates. Drive our development process by contributing innovative ideas and improve our existing stack. Who You Are You are an expert in Scala (preferably) or Java / Kotlin (experience in other OO or functional programming languages such as Haskell is a plus) You keep up to date with the latest developments in your industry and contribute back to your team REST, GraphQL APIs, Streams and Cats are what makes you smile while coding : -) You have good knowledge of relational databases You have a solid understanding of testing, continuous integration and deployment practices You have a strong desire to work with an agile software development process in small teams, supporting and unblocking your teammates You see the benefits developing with isolated Linux Docker environments and feel confident fiddling with the CLI You have a healthy balance between \"get things done\" and technical debt and you\\'re able to communicate this proactively The Bounty A dynamic, young company where input is welcomed and acted upon A challenging and exciting vision within an innovative and multi-cultural environment High level of personal responsibility and independence Flexible working hours, home office and occasional remote work We strongly believe in team chemistry and team work. We prioritize having fun while building up a great company. If this sounds like you, let\\'s solve the riddle and apply (written in English or German) - We are very excited to meet you. -------------------------------------------------------------------------------------------------------------------------------- ',\n", + " '[\"Collaboration\", \"Proactivity\", \"Communications\", \"Innovation\", \"Prioritization\"]',\n", + " '[\"Corporate Communications\", \"Programming (Music)\", \"Acting\", \"Continuous Integration\", \"Industrialization\", \"Reactivity\", \"Continuity Tests\", \"Haskell (Programming Language)\", \"Scala (Programming Language)\", \"Component Object Model (COM)\", \"Node.js\", \"Linux\", \"GraphQL\", \"Technical Debt\", \"Open Source Technology\", \"Agile Software Development\", \"Docker (Software)\", \"Personalization\", \"Human Intelligence\", \"Continuous Production\", \"High-Level Architecture\", \"Akka (Toolkit)\", \"Functional Programming\", \"Humanism\", \"Chemistry\", \"Akka.net\", \"Vimeo\", \"Relational Databases\", \"Software Development\", \"Application Programming Interface (API)\", \"Agile Product Development\", \"Process Driven Development\"]',\n", + " \"['English']\"],\n", + " ['44',\n", + " 'data engineer',\n", + " 'Lucerne',\n", + " 'Staffing & Outsourcing',\n", + " 'www.eteaminc.com',\n", + " '[[-3.22804481e-01 2.70976543e-01 5.50958633e-01 2.08118975e-01\\n6.63675904e-01 -1.04325473e-01 -3.90734226e-02 2.01102018e-01\\n-2.97926329e-02 -3.52422476e-01 -1.16358221e-01 -2.92432159e-01\\n-1.89296216e-01 4.56891619e-02 5.26155755e-02 4.53551114e-01\\n3.78325582e-01 8.00151974e-02 -1.20225444e-01 2.91532665e-01\\n1.27327800e-01 -1.82676867e-01 2.85511911e-02 7.43576407e-01\\n4.29593414e-01 -1.88660808e-03 -8.59136060e-02 5.91424853e-02\\n-2.86721915e-01 -1.22639902e-01 4.36593652e-01 2.15787999e-02\\n-1.49155796e-01 -3.34228009e-01 1.35512143e-01 2.15444610e-01\\n-2.21267879e-01 6.46889135e-02 -1.35110870e-01 1.37845352e-01\\n-4.66008842e-01 -2.03800827e-01 -9.91208106e-03 1.19807154e-01\\n-3.66004407e-01 -3.93550634e-01 -1.87600590e-02 -1.00118011e-01\\n1.32501870e-02 7.93761946e-03 -5.51936924e-01 3.28865916e-01\\n-3.69585872e-01 -1.79926068e-01 2.62678742e-01 6.62797093e-01\\n7.64294118e-02 -6.44956887e-01 -4.30040598e-01 -3.64012212e-01\\n9.82911214e-02 -1.96052641e-01 1.26743883e-01 -3.75684768e-01\\n4.21485662e-01 -1.82850808e-02 3.61598842e-03 2.08140969e-01\\n-7.79993534e-01 5.25975302e-02 -4.23705459e-01 7.29759037e-02\\n-3.58829290e-01 4.08367366e-02 -4.88614827e-01 -1.22691348e-01\\n-1.28128141e-01 4.15832043e-01 -1.10591903e-01 1.95555255e-01\\n-3.10919046e-01 2.50175834e-01 -2.97719896e-01 3.11578214e-01\\n2.20004275e-01 1.83021098e-01 2.91256726e-01 3.50742579e-01\\n-4.29371119e-01 5.75888872e-01 2.71131337e-01 -3.13786089e-01\\n2.10097700e-01 2.78307796e-01 3.34239841e-01 1.96563467e-01\\n1.50110468e-01 1.77803248e-01 -1.70218199e-01 1.69109911e-01\\n2.88739562e-01 -2.37382099e-01 1.10939577e-01 -1.68924257e-01\\n-1.04111768e-01 -9.83487964e-02 5.19021787e-03 3.38149250e-01\\n-4.52620625e-01 4.30009723e-01 5.29680811e-02 -1.29777625e-01\\n-6.77758902e-02 -4.89970237e-01 -4.63426150e-02 4.74180989e-02\\n-3.47892870e-03 1.04510047e-01 2.22230464e-01 1.67011589e-01\\n2.43199050e-01 2.17419416e-02 1.61366254e-01 8.19422364e-01\\n-8.49089101e-02 4.83259819e-02 -2.18084961e-01 3.59952271e-01\\n1.48104414e-01 -1.48150325e-01 1.85562134e-01 2.31549710e-01\\n-1.00962818e-02 -5.28181940e-02 -3.57915759e-01 3.79369825e-01\\n-1.56056106e-01 -1.60326734e-01 -1.71355352e-01 1.91961393e-01\\n-7.50783235e-02 -6.53168619e-01 7.37035751e-01 -7.29087815e-02\\n1.47584781e-01 -1.14738017e-01 1.12937085e-01 -2.68377289e-02\\n-2.60483716e-02 2.64611840e-01 2.12381020e-01 2.24872828e-01\\n-3.30786407e-01 -3.02878350e-01 -1.44296914e-01 2.21810922e-01\\n-4.54581201e-01 1.12956107e-01 -1.58394367e-01 -1.39845312e-01\\n2.24366739e-01 2.12262869e-01 -4.44899857e-01 1.87893271e-01\\n-8.99126902e-02 -2.16310024e-01 -4.09938358e-02 4.04234886e-01\\n-1.97784796e-01 1.85288787e-01 -3.27840634e-02 -5.15706167e-02\\n5.55175126e-01 2.51878023e-01 2.85140812e-01 -2.40681041e-02\\n3.45292091e-01 -1.11137569e-01 1.97207272e-01 2.20071953e-02\\n-6.86179340e-01 5.55032134e-01 -3.37283909e-02 -1.64428651e-01\\n1.72991857e-01 9.84727964e-03 4.51936871e-01 -3.91395032e-01\\n-4.19355296e-02 -2.58963317e-01 -4.10766989e-01 -4.12213475e-01\\n-2.59580702e-01 -1.38087660e-01 2.55825996e-01 -4.60929513e-01\\n-9.84781701e-03 1.94335356e-01 -7.18451619e-01 -1.86728120e-01\\n3.28121126e-01 2.72420257e-01 1.25313103e-01 1.94839127e-02\\n-1.61619484e-03 -7.04892993e-01 9.67220217e-02 -4.32120800e-01\\n-3.03031147e-01 1.75471112e-01 -3.77180755e-01 1.73058629e-01\\n-5.52049689e-02 3.87522578e-02 -6.06845096e-02 6.22071177e-02\\n-3.16604227e-01 2.03606430e-02 1.26596361e-01 5.65752238e-02\\n4.25346136e-01 1.78600311e-01 -4.30831432e-01 6.48142099e-01\\n-3.35050941e-01 4.89290625e-01 1.86804622e-01 -8.48323941e-01\\n7.04136252e-01 2.02476025e-01 3.77465636e-02 -2.89799273e-01\\n4.83431458e-01 -3.55519623e-01 -1.20496407e-01 1.54853523e-01\\n-2.64490753e-01 -2.38653690e-01 1.66495681e-01 -1.92536622e-01\\n-3.53998989e-01 7.05392122e-01 1.02364779e-01 1.75745636e-02\\n2.65128553e-01 -3.07522058e-01 -1.87810093e-01 2.59193573e-02\\n-2.52481997e-01 -2.31466532e-01 -6.05818927e-01 1.09744407e-01\\n-4.75125946e-02 -4.79581296e-01 -1.18744463e-01 -4.02179331e-01\\n-2.55046338e-01 -3.08804333e-01 -3.30770075e-01 9.10559744e-02\\n1.53494298e-01 1.09362751e-01 -1.27675906e-01 -7.00829923e-02\\n-2.16303058e-02 -6.75706804e-01 -8.96773934e-02 1.25732452e-01\\n4.05845046e-01 3.68694127e-01 2.13143706e-01 -1.17224015e-01\\n1.17900200e-01 6.91832781e-01 -4.00885344e-01 -2.91038811e-01\\n1.89065948e-01 5.34340926e-02 -7.71863237e-02 -2.04617292e-01\\n1.50546163e-01 3.18525374e-01 -2.66646743e-01 2.55678911e-02\\n-5.41968197e-02 -8.18011984e-02 3.93274248e-01 -8.27129036e-02\\n-1.32782310e-01 -2.84217715e-01 -1.82094783e-01 2.24454507e-01\\n-5.08277535e-01 -2.62692928e-01 5.64736724e-01 2.28685200e-01\\n1.43901825e-01 2.33327538e-01 2.01404989e-01 5.45353293e-02\\n-3.44830602e-01 -3.99571717e-01 2.83187807e-01 8.45934749e-02\\n1.98991410e-02 1.73662782e-01 1.84740424e-02 -5.71191788e-01\\n-3.04117966e+00 -4.28970493e-02 1.95683956e-01 -2.00199634e-01\\n2.45879963e-01 -2.24175110e-01 -9.93972737e-03 6.62345663e-02\\n-3.34257245e-01 1.26821743e-02 -2.20631987e-01 -1.75977916e-01\\n6.47863299e-02 2.68860340e-01 1.41878545e-01 1.13885589e-01\\n2.13111788e-01 -2.19556913e-01 7.45937526e-02 3.84026676e-01\\n-1.66236043e-01 -8.78837287e-01 3.83228362e-02 -8.16711113e-02\\n1.88218862e-01 1.59766197e-01 -4.85653639e-01 -9.68823284e-02\\n-2.85087377e-01 -3.29970598e-01 1.22790374e-01 -3.10963869e-01\\n-1.70585930e-01 2.93865174e-01 2.19953567e-01 -7.42740482e-02\\n-2.64682285e-02 -2.30028555e-01 3.73262540e-02 -5.43920100e-01\\n1.40351951e-01 -6.92755222e-01 -3.55868861e-02 -4.88450751e-02\\n7.14915156e-01 -2.61588067e-01 2.54371405e-01 3.68404463e-02\\n2.20365763e-01 6.78984672e-02 1.88757300e-01 -1.29032731e-02\\n-2.47222841e-01 -2.20801592e-01 5.37994504e-03 -1.48758143e-01\\n7.23064661e-01 4.80240643e-01 -2.34120101e-01 3.35332006e-03\\n1.12175599e-01 -4.35595274e-01 -3.71380121e-01 -3.62698257e-01\\n-2.88116902e-01 -8.13841075e-02 -6.84185207e-01 -4.58100796e-01\\n-1.93869919e-01 -9.91103649e-02 -5.44613302e-02 6.70150697e-01\\n-3.44971269e-01 -2.08195657e-01 -2.79129408e-02 -6.16148114e-01\\n3.52813601e-01 -2.10658878e-01 8.87694303e-03 -2.80505508e-01\\n-1.93808615e-01 -5.41147113e-01 2.16687649e-01 -7.44064525e-02\\n-1.08039439e-01 -6.09309413e-02 6.81008399e-02 -2.86092497e-02\\n-4.03871328e-01 -6.16406202e-01 3.46659064e-01 1.15698859e-01\\n4.40575004e-01 8.10641274e-02 4.60290432e-01 -1.29984975e-01\\n4.48715001e-01 -1.61349475e-02 2.95275357e-02 -4.25032407e-01\\n4.87965085e-02 -3.57210860e-02 5.03805041e-01 -1.31346494e-01\\n2.10564211e-02 1.55939206e-01 -3.15104723e-01 -9.30858552e-02\\n3.89641047e-01 -8.51828158e-02 1.46778375e-01 -7.49871507e-02\\n3.22840154e-01 -4.59797323e-01 -2.16098055e-01 1.41986400e-01\\n1.21620394e-01 7.54049957e-01 -5.91242686e-04 -3.22640091e-01\\n-5.87886162e-02 4.35911894e-01 -1.31527990e-01 1.10172853e-02\\n-1.67470261e-01 -1.62779540e-03 -2.08184853e-01 4.26375985e-01\\n2.26394739e-03 -2.08200201e-01 -2.17951924e-01 -7.93430358e-02\\n-1.03022642e-01 2.56857932e-01 1.83291048e-01 -2.36384682e-02\\n1.69812851e-02 -3.12368900e-01 -8.78665596e-02 2.48241782e-01\\n3.12063932e-01 4.96076822e-01 1.47448361e-01 -2.85837442e-01\\n-3.15102041e-02 3.66342366e-01 -1.62103370e-01 2.51696020e-01\\n-2.13180214e-01 1.96920469e-01 -7.34495759e-01 -2.17333913e-01\\n-3.12784314e-01 -3.71911198e-01 1.38041615e-01 4.62128103e-01\\n1.31726384e-01 -9.58946496e-02 1.42473772e-01 -5.04918039e-01\\n2.28117570e-01 1.05097882e-01 2.19683677e-01 -3.30319768e-03\\n-1.86621219e-01 7.68585920e-01 -2.07979083e-02 -1.61296844e-01\\n-1.19609162e-01 1.11395746e-01 -2.65946656e-01 -2.35937029e-01\\n2.11917102e-01 -5.61431229e-01 -1.86098263e-01 4.35013503e-01\\n2.93762803e-01 -1.26219243e-01 -2.14586824e-01 3.25508237e-01\\n-1.76407471e-02 -2.82803416e-01 -3.25930357e-01 -8.28770846e-02\\n3.16408455e-01 2.07512140e-01 2.46340171e-01 -4.49448049e-01\\n-4.42487746e-02 -8.62344503e-02 5.97872809e-02 3.61498535e-01\\n4.16174009e-02 1.13910630e-01 -9.72329974e-02 -1.61783800e-01\\n6.18084848e-01 7.50742704e-02 -1.75565809e-01 8.31825584e-02\\n1.80485353e-01 -2.44884849e-01 -4.42679018e-01 2.45549344e-02\\n-5.97868301e-03 -2.43695304e-01 3.30000743e-03 1.72228724e-01\\n3.58976312e-02 -6.04041368e-02 -5.02973080e-01 -1.14056960e-01\\n-3.48311335e-01 1.31206848e-02 7.90611729e-02 -5.45471907e-01\\n-6.68735383e-03 -2.14182846e-02 -4.53115761e-01 2.16835782e-01\\n-5.89233711e-02 -2.74032354e-02 2.95243055e-01 1.27099499e-01\\n-2.03920335e-01 -1.85925901e-01 1.32569939e-01 2.33393312e-01\\n-3.84144902e-01 -2.99668431e-01 -9.57289338e-03 -1.04195428e+00\\n1.21139549e-01 5.80179095e-02 -2.68456787e-01 1.66838616e-02\\n-1.68470219e-02 -6.75628960e-01 1.48446649e-01 -4.87612784e-01\\n-1.90345645e-01 5.83026670e-02 -2.70547628e-01 -2.34211221e-01\\n1.06267080e-01 -4.80937213e-02 -3.53007913e-01 3.75008166e-01\\n-3.35924357e-01 3.55726659e-01 -1.56110987e-01 5.38591146e-02\\n4.13609669e-02 -5.33411279e-02 1.73721343e-01 -1.81655869e-01\\n-3.86033893e-01 -3.16095382e-01 -3.43081176e-01 -2.01990724e-01\\n-3.94138917e-02 -3.42269242e-01 -8.26354399e-02 2.06765868e-02\\n5.63965261e-01 1.45050734e-01 -1.52274698e-01 -1.23451509e-01\\n1.47062242e-01 -5.81141233e-01 3.41057144e-02 -1.58979252e-01\\n-5.52830808e-02 -2.20477641e-01 2.77230322e-01 6.15456514e-02\\n2.15082973e-01 -4.79138732e-01 5.81376195e-01 -2.88843632e-01\\n-4.74791735e-01 -1.98658913e-01 -2.13715155e-02 1.15963891e-01\\n2.53657341e-01 -4.35331851e-01 9.48357731e-02 2.85515755e-01\\n1.05797499e-01 -3.07497960e-02 2.24884897e-01 -1.47878647e-01\\n-8.62577111e-02 1.28878176e-01 -3.82315010e-01 1.17522955e-01\\n9.19055223e-01 2.66992092e-01 1.34974971e-01 2.62356967e-01\\n1.71070620e-01 2.76140571e-01 4.24219429e-01 -1.63008437e-01\\n-2.32844576e-02 3.45086277e-01 9.46443677e-02 -4.66607571e-01\\n-1.05483852e-01 -1.39638960e-01 -1.09349027e-01 -2.83937454e-01\\n6.90353513e-01 3.34583461e-01 -4.32711512e-01 -4.58117813e-01\\n-2.44369820e-01 -1.18108086e-01 3.99348438e-01 4.60328758e-02\\n-7.19634518e-02 -1.13380879e-01 4.51827675e-01 6.88977726e-03\\n3.21085572e-01 5.59466481e-01 -2.15392426e-01 -2.97259867e-01\\n-5.76043315e-02 3.22080255e-01 5.18005379e-02 4.12191242e-01\\n-2.70679533e-01 1.94218844e-01 -1.29968777e-01 1.10963225e-01\\n-1.58858553e-01 2.15369612e-02 1.56054199e-01 5.76272607e-02\\n2.88325340e-01 1.61272407e-01 5.06486893e-01 4.75357860e-01\\n1.81291178e-01 2.96672493e-01 3.33723247e-01 -1.45049989e-02\\n4.81492937e-01 6.60584688e-01 2.35194579e-01 6.28722459e-02\\n1.12917759e-01 9.86921415e-02 7.53389373e-02 -7.08222687e-02\\n2.72889823e-01 4.30071414e-01 3.44900042e-02 8.90929937e-01\\n2.42698923e-01 3.83027643e-01 7.09475517e-01 -7.51072943e-01\\n-3.92587006e-01 -1.11543752e-01 6.10179722e-01 -3.98497850e-01\\n1.68686762e-01 1.29175276e-01 -2.14012101e-01 4.04663801e-01\\n-5.29262424e-01 -2.67472714e-01 3.58056277e-02 7.77015835e-02\\n4.55004126e-02 -7.06565082e-02 -2.50670612e-01 -8.94935243e-03\\n-1.01367138e-01 -1.64094478e-01 -2.41318703e-01 -2.57379264e-01\\n-2.68373817e-01 9.80970860e-02 -5.90761974e-02 -1.06966369e-01\\n1.29748195e-01 -3.52318943e-01 -1.07255906e-01 -6.25448860e-03\\n3.43124449e-01 -8.91294032e-02 -1.42582342e-01 -2.84530185e-02\\n2.31965497e-01 1.44275337e-01 6.84066653e-01 -1.17205679e-02\\n8.10807943e-02 -1.15317188e-01 -1.71817988e-01 7.10282177e-02\\n3.00357193e-02 6.16302416e-02 6.34646341e-02 3.20236087e-01\\n-3.50193977e-01 -3.40861261e-01 8.95513371e-02 2.26358503e-01\\n-4.33573425e-01 -1.69807583e-01 -6.29360452e-02 4.72783335e-02\\n-1.48959935e-01 9.06267762e-03 -2.28016242e-01 -1.15639865e-01\\n-2.19456658e-01 -5.21588922e-01 3.43620569e-01 -1.93058342e-01\\n-2.59514153e-01 -5.65836579e-02 3.29142928e-01 2.55465329e-01\\n-2.61662543e-01 4.86305505e-02 -8.36994424e-02 1.10155225e-01\\n2.85570212e-02 3.14200878e-01 -5.93752116e-02 -1.88082710e-01\\n-3.93381745e-01 2.36148641e-01 -1.10711314e-01 2.47128949e-01\\n-2.02643536e-02 4.45945323e-01 -8.27778131e-02 -7.90638477e-02\\n4.18869287e-01 6.32362738e-02 -3.04170221e-01 -2.87418842e-01\\n-1.43590540e-01 3.40298750e-02 5.18666506e-02 -1.12994656e-01\\n1.53051019e-01 -3.14471841e-01 -2.14158520e-01 -2.60996372e-01\\n-1.55040268e-02 -3.90009403e-01 -1.52835637e-01 -1.13530040e-01]]',\n", + " \" Duration: 6 months Job Overview A Data Engineer to join our growing team of analytics experts in F1 platform in Finance .The hire will be responsible for expanding and optimizing our data and data pipeline architecture, as well as optimizing data flow and collection for cross functional teams. The ideal candidate is an experienced data pipeline builder and data wrangler who enjoys optimizing data systems and building them from the ground up. The Data Engineer will support our software developers, data architects and data analysts and will ensure optimal data delivery architecture is consistent throughout ongoing projects. They must be self-directed and comfortable supporting the data needs of multiple teams, systems and products. The right candidate will be excited by the prospect of optimizing or even re-designing our company's data architecture to support our next generation of products and data initiatives. This is NOT a leadership role but a hands on role, which is focused on L3 Production Support, solution implementation, following robust governance and assuring best practices are followed in a timely fashion. We are looking for a candidate with 5+ years of experience in a Data Engineer role, who has attained a Graduate degree in Computer Science, Statistics, Informatics, Information Systems or another quantitative field. Experience supporting and working with cross-functional teams in a dynamic environment. Responsibilities for Data Engineer Create and maintain optimal data pipeline architecture, Assemble large, complex data sets that meet functional / non-functional business requirements. Identify, design, and implement internal process improvements: automating manual processes, optimizing data delivery, re-designing infrastructure for greater scalability, etc. Work closely with the infrastructure team for optimal extraction, transformation, and loading of data from a wide variety of data sources using SQL , Sqoop , Rest API . file based and Kafka . Qualifications for Data Engineer Candidate must be from Java background and experienced working in big data platform. Advanced working SQL knowledge and experience working with relational databases, query authoring (SQL) as well as working familiarity with a variety of databases. Experience building and optimizing 'big data' data pipelines, architectures and data sets. Experience performing root cause analysis on internal and external data and processes to answer specific business questions and identify opportunities for improvement. Strong analytic skills related to working with unstructured datasets. Build processes supporting data transformation, data structures, metadata, dependency and workload management. A successful history of manipulating, processing and extracting value from large disconnected datasets. Working knowledge of message queuing, stream processing, and highly scalable 'big data' data stores. Must have experience in operating in an agile and Devops environment. Must have experience setting up Continues Integration and deployment process. Technical Skills Experience with java and big data tools: Hadoop, Spark, Kafka, etc. Experience with relational SQL and NoSQL databases Experience with bash scripting, GIT SVN , Jenkins and deployment tools like Nolio. Experience with object-oriented/object function scripting languages: Python, Java, C++, Scala, etc. \",\n", + " '[\"Analytical Skills\", \"Leadership\", \"Governance\", \"Infrastructure\", \"Management\", \"Operations\"]',\n", + " '[\"Data Architecture\", \"Automation\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"Agility\", \"Computer Science\", \"Analytics\", \"Collections\", \"Statistics\", \"Metadata\", \"Good Agricultural Practices\", \"Informatics\", \"Continuous Integration\", \"Data Engineering\", \"Process Improvements\", \"Scala (Programming Language)\", \"SQL (Programming Language)\", \"Database Queries\", \"Apex Data Loader\", \"Build Process\", \"Python (Programming Language)\", \"Maintainability\", \"External Data Representation\", \"Microsoft Message Queuing\", \"Object Oriented Project Management\", \"Objective Function\", \"Dataset\", \"Root Cause Analysis\", \"Process Optimization\", \"Minimum Data Set\", \"Data Processing Systems\", \"Stream Processing\", \"Business Requirements\", \"Sqoop\", \"Finance\", \"Production Support\", \"Scalability\", \"Evolution-Data Optimized\", \"Self-Directed Learning\", \"Big Data\", \"Bash (Scripting Language)\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"Data Structures\", \"Relational Databases\", \"Software Development\", \"Scripting\", \"Git Flow\", \"Operational Data Store\", \"Amazon Data Pipeline\", \"RESTful API\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"Data-Flow Analysis\", \"Source Data\", \"DevOps\", \"Information Systems\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'bi data scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.53228360e-01 2.70658046e-01 3.72768700e-01 2.32876036e-02\\n4.73175436e-01 -3.48142348e-02 4.43848148e-02 1.15612105e-01\\n-1.16222799e-01 -4.17315096e-01 -8.69316757e-02 -2.73754179e-01\\n1.28849840e-03 -3.55053544e-02 9.30351615e-02 5.92164755e-01\\n2.60430247e-01 -7.29921386e-02 -1.43462941e-01 2.80759007e-01\\n1.13043152e-01 3.26854386e-03 -3.74928024e-03 6.28054202e-01\\n5.01266658e-01 -4.86189499e-02 -1.39927864e-01 8.10021942e-04\\n-2.83568472e-01 -2.93907404e-01 4.30700213e-01 1.90417618e-01\\n-2.04507038e-01 -1.39725327e-01 1.74223661e-01 2.21280828e-01\\n-2.68112808e-01 -2.18087304e-02 -4.55917045e-02 1.86636239e-01\\n-3.85784835e-01 -1.55839011e-01 -9.36613530e-02 -2.32908335e-02\\n-3.20058405e-01 -4.34260011e-01 7.72188464e-03 -1.49482802e-01\\n1.44545674e-01 3.55114006e-02 -4.73832309e-01 3.59030306e-01\\n-2.00130537e-01 -9.85864550e-02 1.77193940e-01 7.32493639e-01\\n1.67759985e-01 -4.77290511e-01 -3.17661017e-01 -2.89300948e-01\\n9.07400995e-02 -1.19298771e-01 1.74425706e-01 -2.26449937e-01\\n4.98205721e-01 -6.78268895e-02 -3.81489769e-02 3.00187409e-01\\n-7.68963575e-01 -7.00643808e-02 -5.04122317e-01 2.91034747e-02\\n-5.01514077e-01 7.15237260e-02 -4.92114902e-01 -2.41598397e-01\\n-9.69854221e-02 4.31301624e-01 -7.54776236e-04 6.35031760e-02\\n-1.80004895e-01 1.99867979e-01 -2.94893831e-01 2.20430288e-02\\n3.28274995e-01 2.59656787e-01 3.95150661e-01 2.70732582e-01\\n-6.38971746e-01 3.42817813e-01 3.59557033e-01 -3.76106590e-01\\n2.06228048e-01 9.56357196e-02 3.87821704e-01 1.75026238e-01\\n8.30380395e-02 2.68665910e-01 -9.66925621e-02 1.91437840e-01\\n2.54116654e-01 -1.83228984e-01 8.51040483e-02 -1.88241843e-02\\n-8.70741010e-02 -8.95733014e-02 -5.79835381e-03 2.88229942e-01\\n-3.43010694e-01 4.16385770e-01 8.14998224e-02 -2.59376943e-01\\n-3.81637141e-02 -6.87244773e-01 -1.66088745e-01 -4.76081930e-02\\n1.15614906e-01 3.20919931e-01 2.44868383e-01 3.19793552e-01\\n1.23230316e-01 1.56525541e-02 2.46658728e-01 9.02533233e-01\\n-9.97713581e-02 -1.64314806e-02 -2.10395560e-01 3.40982646e-01\\n1.42285347e-01 -2.10636824e-01 1.73530221e-01 1.20349862e-01\\n-8.79385024e-02 -1.56978935e-01 -3.71599793e-01 2.74278283e-01\\n-1.30815074e-01 -2.65477896e-01 -2.89545596e-01 1.94819599e-01\\n-1.87495843e-01 -5.32740116e-01 5.44590294e-01 -5.73449694e-02\\n1.75886855e-01 -1.19878463e-01 -1.06123216e-01 -8.35998356e-02\\n-7.90378358e-03 3.60378236e-01 1.56662241e-01 1.28044128e-01\\n-2.99494803e-01 -1.87499851e-01 -2.57826865e-01 3.22055310e-01\\n-2.90916920e-01 1.32908911e-01 -1.75493628e-01 -1.21953040e-01\\n2.12183386e-01 1.91341430e-01 -4.55967247e-01 2.18885571e-01\\n-3.78394686e-02 -4.14544851e-01 -9.25633982e-02 3.14621240e-01\\n-1.06092975e-01 1.59478530e-01 3.93269882e-02 -2.10023180e-01\\n6.58689678e-01 1.77641690e-01 2.58259654e-01 -5.77402720e-03\\n2.99216777e-01 -1.64266557e-01 2.54867494e-01 2.27145433e-01\\n-6.34104550e-01 4.94597346e-01 -1.26761124e-01 -2.15432465e-01\\n1.33578300e-01 7.28269517e-02 3.40186566e-01 -3.48915160e-01\\n5.40970527e-02 -1.18215978e-01 -2.79675275e-01 -4.62359458e-01\\n-2.73962826e-01 3.77700776e-02 3.60140741e-01 -4.67349023e-01\\n-1.37247844e-04 2.08999634e-01 -5.79505682e-01 -1.12369411e-01\\n1.40620053e-01 1.06221452e-01 1.42737046e-01 1.49640828e-01\\n-3.07473484e-02 -5.86120248e-01 1.15899861e-01 -5.32399535e-01\\n-5.11916637e-01 1.25192210e-01 -3.36365521e-01 1.50416896e-01\\n1.24839276e-01 -2.12065247e-03 -5.94098158e-02 1.74330920e-02\\n-3.43664169e-01 9.19923410e-02 2.26174876e-01 1.34943873e-01\\n2.85620898e-01 4.26782586e-04 -5.14031053e-01 5.94782293e-01\\n-8.50423574e-02 4.16900337e-01 2.88964182e-01 -8.67767692e-01\\n5.86152196e-01 1.95046276e-01 3.36433575e-03 -2.13917971e-01\\n5.46193063e-01 -4.40207541e-01 -9.72985700e-02 1.34471223e-01\\n-2.14618921e-01 -1.26227528e-01 3.53284240e-01 -2.60725081e-01\\n-2.35744625e-01 6.07929289e-01 2.53834784e-01 9.04533640e-02\\n2.70213723e-01 -1.63830236e-01 -1.53978139e-01 9.26084723e-03\\n-2.45364785e-01 -2.94786930e-01 -4.19255883e-01 2.03323528e-01\\n-4.52609435e-02 -6.03720069e-01 -1.23750344e-01 -4.40782875e-01\\n-1.46846250e-01 -5.26806056e-01 -1.16202109e-01 1.96450397e-01\\n1.34346977e-01 2.13879466e-01 -4.76987697e-02 -9.98176932e-02\\n-7.73174465e-02 -6.28006101e-01 -1.48752034e-01 6.10618070e-02\\n2.97779292e-01 2.08184659e-01 4.93663885e-02 -1.61685050e-01\\n1.02630436e-01 5.51344812e-01 -4.14876670e-01 -3.80076528e-01\\n1.93800062e-01 1.24731466e-01 -7.70380124e-02 -1.92057908e-01\\n3.93449664e-02 3.08688074e-01 -1.55558065e-01 8.78534093e-02\\n1.32499426e-03 -2.24874653e-02 2.43748799e-01 -6.96774796e-02\\n-1.56302974e-01 -2.43592918e-01 -1.29262045e-01 3.52161646e-01\\n-5.56369126e-01 -2.64301002e-01 5.63510239e-01 2.27051988e-01\\n9.67496913e-03 2.09785208e-01 2.58457601e-01 -3.07648852e-02\\n-3.40321511e-01 -1.82721943e-01 2.76718825e-01 1.93721816e-01\\n7.55183920e-02 7.43258968e-02 -2.20464677e-01 -5.67996740e-01\\n-3.22865629e+00 -2.60756671e-01 6.79577067e-02 -2.21046045e-01\\n1.48255363e-01 -1.12439327e-01 2.59291112e-01 7.14767026e-04\\n-4.06779885e-01 -4.62556779e-02 -2.23362058e-01 -2.77923793e-01\\n-6.68968558e-02 3.28433931e-01 1.13421194e-01 1.72604516e-01\\n1.63818523e-01 -3.59675407e-01 -3.41632254e-02 3.86368424e-01\\n-9.93242338e-02 -7.51867235e-01 1.35493904e-01 1.21474370e-01\\n1.52030066e-01 6.80882111e-02 -4.24672902e-01 1.07145958e-01\\n-3.92278373e-01 -3.53824794e-01 1.78911939e-01 -3.06274831e-01\\n-1.72367081e-01 2.88237333e-01 2.45024964e-01 -8.34199637e-02\\n2.41492521e-02 -3.03867221e-01 6.55318797e-02 -4.45800692e-01\\n-2.70029828e-02 -5.56141138e-01 8.39379355e-02 -3.98967825e-02\\n6.77500308e-01 -1.95858553e-01 2.54096955e-01 8.68168399e-02\\n6.62599206e-02 2.14271918e-01 1.82832345e-01 -4.65994664e-02\\n-2.73569524e-01 -3.90054047e-01 -1.02325946e-01 -1.63536936e-01\\n6.92936778e-01 4.17754084e-01 -1.48398563e-01 1.31508522e-02\\n2.11819187e-01 -2.71905661e-01 -4.16272610e-01 -5.36243260e-01\\n-2.54071862e-01 -2.26704907e-02 -6.66085005e-01 -4.29336309e-01\\n-1.85868084e-01 -1.29400954e-01 -1.47370428e-01 6.07124209e-01\\n-2.90617198e-01 -3.93245727e-01 -4.32111360e-02 -4.55879390e-01\\n2.45771781e-01 -2.02962205e-01 6.72194883e-02 -7.86241889e-02\\n-3.40574950e-01 -4.59473073e-01 2.78422803e-01 7.10601406e-03\\n-1.77404940e-01 5.95858833e-03 8.65333378e-02 -2.51872510e-01\\n-5.12572050e-01 -4.32808965e-01 3.62796605e-01 -5.05743660e-02\\n3.10365438e-01 2.58443266e-01 3.72476995e-01 1.07943118e-01\\n4.53540742e-01 -1.56242803e-01 8.21441263e-02 -4.13175642e-01\\n3.95852551e-02 -1.36093237e-02 6.08008921e-01 -2.34309658e-01\\n9.98863652e-02 1.32685602e-01 -1.96180299e-01 -7.82083347e-02\\n4.91394341e-01 -7.70625919e-02 1.17645510e-01 -1.58099815e-01\\n3.70597988e-01 -5.24517119e-01 -1.21796981e-01 1.86487123e-01\\n1.19355015e-01 6.83457375e-01 -7.52740800e-02 -3.20829004e-01\\n-1.83054760e-01 3.36958498e-01 -1.44581884e-01 -1.28140852e-01\\n-1.70624539e-01 1.28681749e-01 -2.20058873e-01 2.75959462e-01\\n-7.07440358e-03 -1.05151728e-01 -3.54495734e-01 -1.22068062e-01\\n-4.47599106e-02 2.49797940e-01 3.32913190e-01 3.78427748e-03\\n-8.40368420e-02 -2.53089964e-01 -4.66842540e-02 1.28166005e-01\\n4.56225365e-01 3.40315908e-01 1.76328421e-01 -4.15773034e-01\\n-3.67604801e-03 1.90446928e-01 -3.33119333e-01 2.76958287e-01\\n-2.60525286e-01 1.75694779e-01 -4.85705703e-01 -2.54875481e-01\\n-1.94325507e-01 -3.37078631e-01 1.75718918e-01 3.11123610e-01\\n9.88812745e-02 -1.48659438e-01 1.01342008e-01 -3.57318461e-01\\n3.01570922e-01 1.45463973e-01 1.81790292e-01 9.54792872e-02\\n-9.44710057e-03 6.25425458e-01 6.30111247e-02 -1.02025285e-01\\n-2.28634644e-02 -5.66679798e-03 -2.93178499e-01 -3.33782166e-01\\n-1.61816310e-02 -3.59228283e-01 -1.67028993e-01 5.06924748e-01\\n1.77710012e-01 -3.27696018e-02 -2.39065662e-01 3.00631344e-01\\n-2.99783908e-02 -3.38450044e-01 -2.21683457e-01 1.31161138e-02\\n2.45895833e-01 1.06536202e-01 1.87416598e-01 -4.22279537e-01\\n-4.82878387e-02 -8.55379552e-03 -3.01977694e-02 4.43715066e-01\\n1.28790736e-01 2.03533098e-01 6.42684475e-02 -1.65238231e-01\\n6.62732124e-01 -1.08859167e-01 -1.48690671e-01 1.54254079e-01\\n7.05323294e-02 -3.85887712e-01 -3.56273711e-01 -1.30366400e-01\\n-5.17591201e-02 -2.84208685e-01 9.29800570e-02 1.57265499e-01\\n2.44512707e-02 -7.83881769e-02 -6.98582828e-01 -2.69669771e-01\\n-4.73319620e-01 -3.72208953e-02 9.01945755e-02 -5.96462965e-01\\n2.37215888e-02 -1.71058103e-01 -6.33846760e-01 3.80458415e-01\\n2.32115332e-02 7.28861466e-02 6.69282824e-02 2.85018254e-02\\n-8.00337717e-02 -2.43994549e-01 2.29558691e-01 7.85629451e-02\\n-2.49394238e-01 -1.12628661e-01 -4.64711525e-02 -1.01357830e+00\\n1.84528217e-01 1.10707313e-01 -1.21861808e-01 1.04131103e-01\\n1.04629593e-02 -6.43559217e-01 1.41930521e-01 -4.19385642e-01\\n-8.74566883e-02 2.03275550e-02 -1.74127474e-01 -4.82494801e-01\\n1.09424472e-01 9.19790417e-02 -2.15138555e-01 4.66689199e-01\\n-3.76365483e-01 4.10226047e-01 5.01902923e-02 8.28878954e-02\\n7.08239153e-02 -2.65420943e-01 1.86969280e-01 -1.36667565e-01\\n-4.56583261e-01 -1.75961137e-01 -3.01494449e-01 -2.85150379e-01\\n7.69020841e-02 -3.35408121e-01 -1.58017904e-01 -3.54286693e-02\\n3.16636950e-01 2.16917828e-01 -1.11085631e-01 -1.86213672e-01\\n2.53517460e-02 -5.24657190e-01 2.74236381e-01 -3.68653059e-01\\n-6.53515309e-02 -3.09636354e-01 2.58104116e-01 -8.52045789e-02\\n1.10435925e-01 -1.66787058e-01 5.70003390e-01 -1.52468100e-01\\n-2.95944601e-01 -1.71802640e-01 1.65557384e-01 7.27623254e-02\\n3.74397367e-01 -3.87340844e-01 -1.05555281e-01 1.89525619e-01\\n1.07502259e-01 3.74748260e-02 2.95131981e-01 -2.38281488e-01\\n-3.11751664e-01 3.42509538e-01 -6.36243165e-01 1.43761918e-01\\n7.24829376e-01 2.96205163e-01 1.66736186e-01 1.33321762e-01\\n1.87946707e-01 1.74384728e-01 4.89029080e-01 3.66707928e-02\\n-2.92516109e-02 4.12857622e-01 1.21821314e-01 -4.87001777e-01\\n-1.40967324e-01 -8.47460851e-02 -5.50161973e-02 -3.62195730e-01\\n6.05088592e-01 3.57440472e-01 -3.33940268e-01 -4.14918780e-01\\n-1.62353963e-01 -5.85589698e-03 4.53592181e-01 7.60280266e-02\\n-3.53816003e-02 -1.60972714e-01 5.34460485e-01 -7.32716694e-02\\n2.86559492e-01 5.02710462e-01 -8.72613043e-02 -1.85953230e-01\\n-7.50138909e-02 2.60431826e-01 1.77844837e-01 5.74238062e-01\\n-1.46492958e-01 1.75502628e-01 -2.46840063e-02 2.01083258e-01\\n-2.27619126e-01 -3.34830806e-02 2.99778759e-01 -4.10391986e-02\\n2.22419694e-01 1.45205051e-01 3.06440473e-01 4.43235517e-01\\n2.81697541e-01 3.13682050e-01 2.26316959e-01 -7.87229165e-02\\n3.40201676e-01 7.08303750e-01 3.70781332e-01 1.54780135e-01\\n9.65367854e-02 1.27955168e-01 1.05973661e-01 -3.54117416e-02\\n2.32480869e-01 4.07727540e-01 1.20915715e-02 8.74057770e-01\\n3.07803124e-01 4.07227129e-01 5.77730000e-01 -6.95044458e-01\\n-3.61613959e-01 5.99026419e-02 5.80835164e-01 -4.37778831e-01\\n-3.55232321e-02 1.08495735e-01 -1.41744226e-01 1.43411323e-01\\n-5.45357585e-01 -2.74120748e-01 3.76421250e-02 -1.56770453e-01\\n1.86608523e-01 -1.32998109e-01 -1.45200649e-02 2.13955373e-01\\n-1.86401129e-01 -1.78530738e-01 -4.11384493e-01 -1.76619112e-01\\n-3.82446468e-01 -3.20035182e-02 7.38992728e-03 -6.58867508e-02\\n-1.01631969e-01 -2.29573816e-01 -3.76530774e-02 4.70507108e-02\\n3.14588785e-01 -2.18461037e-01 -2.37818196e-01 -8.21798295e-02\\n1.06251061e-01 2.98102289e-01 6.08632267e-01 -8.71866941e-02\\n1.58220723e-01 -1.31576151e-01 -2.21334159e-01 8.17595199e-02\\n1.24775149e-01 4.37059030e-02 7.04651698e-02 5.76302648e-01\\n-3.15513909e-01 -1.98665679e-01 9.54628363e-02 2.85883218e-01\\n-4.67840493e-01 7.46951103e-02 3.03468741e-02 1.46805018e-01\\n6.91654757e-02 2.57251322e-01 -1.99670821e-01 4.85974737e-02\\n-1.70472085e-01 -7.00539052e-01 3.80490154e-01 -1.94243684e-01\\n-2.26387396e-01 2.49131769e-02 2.84959793e-01 2.51800209e-01\\n-2.36095876e-01 -1.89648807e-01 -1.89967677e-01 2.18987748e-01\\n7.25260898e-02 3.75641406e-01 -3.51635963e-01 -1.51973754e-01\\n-3.30530971e-01 2.64453828e-01 4.96981181e-02 1.94040373e-01\\n-3.05700097e-02 2.88163900e-01 2.40110010e-02 2.41249487e-01\\n2.95158386e-01 4.76887152e-02 -2.26107016e-01 -2.16257960e-01\\n-1.31464288e-01 -1.30648002e-01 9.99225378e-02 -1.00234084e-01\\n1.82936624e-01 -3.19637805e-01 -1.38220578e-01 -3.49026084e-01\\n-3.70797694e-01 -5.28683782e-01 -5.35152629e-02 -1.35008693e-01]]',\n", + " 'Job Informationen Your tasks: Continuously and proactively identify drivers of performance and business insights by BI tools, analyze impacts of taken actions to give deep analytical insight to the different stakeholders Define, implement and measure process KPIs and conduct process performance measurement cycles Design standard report portfolio with optimal layouts for management and operational teams to enable data-based decision making Implement statistical forecast models and compute technical budgets Compute and measure business cases for new ideas and projects Define aligned commercial data model. Lead and/or push the HD needs in the different BI relevant projects (e.g. CCM project) Functional leadership of project members in role of project leader Continuously update analytical and methodical skills Your profile: University degree (Master) in mathematics, information technology, engineering, economics or similar Relevant working experience in commercially applied analytics, econometrical modeling and statistical software (e.g. R, python) Experience in reporting/visualization software, ideally Tableau Experience in data warehousing and in relational as well as unstructured data environments Proven SQL skills High project management skills and profound experience in workshop management Good written and verbal communication skills and ability to work in cross cultural environments Excellent conceptual capabilities, able to analytically break-down and solve complex problems with high focus on implementation Written and spoken fluency in English, and preferably also in German Proven team player as well as ability to work independently and unsupervised Willingness to travel (mostly between the groups Hubs) Benötigte Skills Business Intelligence Python Python R SQL Englisch Reisetaetigkeit Projektleitung',\n", + " '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Leadership\", \"Proactivity\", \"Management\", \"Operations\", \"Decision Making\", \"Information Technology\"]',\n", + " '[\"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Engineering Economics\", \"Analytics\", \"Statistics\", \"Visualization\", \"Data Warehousing\", \"SQL (Programming Language)\", \"Statistical Software\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Idealization\", \"Performance Measurement\", \"Business Intelligence\", \"Unstructured Data\", \"Conceptualization\", \"Budgeting\", \"Layout Optimization\", \"Logical Data Models\", \"R (Programming Language)\", \"Econometric Modeling\", \"Cross-Cultural Studies\", \"Forecasting\", \"Project Management\", \"Commercialization\", \"Business Case\"]',\n", + " \"['English']\"],\n", + " ['16',\n", + " 'software engineer application framework 80-100%',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-1.38273299e-01 2.87755728e-01 5.54463685e-01 -7.89426081e-03\\n5.55581212e-01 -1.15915179e-01 6.84729442e-02 3.51902515e-01\\n-1.10367537e-02 -3.52897584e-01 -4.75258008e-02 -1.86945513e-01\\n-1.89395808e-02 2.88173333e-02 1.01893395e-01 3.15285981e-01\\n2.32014522e-01 1.36371285e-01 -1.30550429e-01 2.88902909e-01\\n1.48151129e-01 -2.29120925e-02 2.24251106e-01 7.00022876e-01\\n4.82816964e-01 3.70246209e-02 -6.05696291e-02 -2.93427296e-02\\n-2.86100626e-01 -2.58671373e-01 5.16586721e-01 8.64480212e-02\\n-1.28873259e-01 -3.64261597e-01 2.68727187e-02 -1.10842856e-02\\n-3.46311390e-01 -1.30607516e-01 -9.63586271e-02 1.73514932e-01\\n-3.64723295e-01 -1.67548582e-01 -1.23065434e-01 4.77714837e-02\\n-2.59312600e-01 -3.72619420e-01 -6.58757761e-02 -1.06333941e-01\\n1.78094402e-01 -5.57616279e-02 -4.85783756e-01 2.71259278e-01\\n-2.90288895e-01 -1.85301602e-01 2.22278148e-01 6.68231249e-01\\n-4.34990712e-02 -3.77749473e-01 -5.37635326e-01 -2.99678236e-01\\n1.41215727e-01 -1.01260215e-01 3.88627537e-02 -2.84696579e-01\\n2.29394361e-01 1.04779698e-01 1.08476475e-01 3.72858733e-01\\n-7.96289146e-01 -4.30939607e-02 -2.00616553e-01 -5.57391793e-02\\n-3.20775598e-01 -1.11318573e-01 -2.45476276e-01 -1.74544379e-01\\n-1.78993911e-01 4.60415244e-01 8.36129785e-02 8.62803124e-03\\n-1.75282195e-01 3.12097371e-01 -1.53716102e-01 3.91107470e-01\\n1.55054048e-01 1.86444715e-01 1.61679789e-01 3.15738201e-01\\n-3.55225682e-01 5.09462476e-01 7.01233596e-02 -3.21098655e-01\\n1.70544207e-01 6.15616627e-02 3.94158810e-01 -3.87429409e-02\\n7.94839859e-02 3.15051936e-02 -1.26400501e-01 3.10513288e-01\\n1.82541400e-01 -2.55095005e-01 3.80042605e-02 -1.70093089e-01\\n2.77834181e-02 -8.95043369e-03 -3.02245840e-02 1.17102414e-01\\n-2.29790524e-01 3.68329108e-01 5.55984862e-02 -2.45195627e-01\\n-1.00300230e-01 -5.64314008e-01 -6.23275563e-02 -7.75097385e-02\\n5.82525432e-02 1.25520930e-01 1.26106411e-01 2.39601448e-01\\n2.73205012e-01 1.90176126e-02 1.60155863e-01 6.69777930e-01\\n-2.46780105e-02 4.47492069e-03 -2.86204427e-01 3.57005179e-01\\n4.17362824e-02 -3.00949782e-01 2.23349318e-01 2.55833715e-01\\n-5.95372766e-02 -9.99837667e-02 -2.17078716e-01 3.26070040e-01\\n-1.91153176e-02 -2.43783608e-01 -2.78579652e-01 2.00619563e-01\\n-7.56111145e-02 -3.79696488e-01 4.88838851e-01 1.70256615e-01\\n1.88770413e-01 -9.73684713e-02 -1.19060688e-02 -7.67802596e-02\\n-5.72979487e-02 1.01061232e-01 3.13686132e-02 1.01227693e-01\\n-2.65297532e-01 -3.08722675e-01 -2.23060384e-01 8.39825198e-02\\n-2.26403296e-01 1.23955578e-01 -1.07349820e-01 -3.33474651e-02\\n2.48614207e-01 6.88126544e-03 -3.25920641e-01 3.01950365e-01\\n-3.30567323e-02 -8.99833534e-03 1.01191953e-01 3.72540325e-01\\n-1.85672149e-01 1.51705787e-01 -7.23388419e-02 -2.30719864e-01\\n5.72191834e-01 1.32911831e-01 8.03753734e-02 4.48034927e-02\\n1.51004404e-01 1.44014526e-02 1.48792490e-01 1.13734789e-01\\n-7.75650084e-01 3.86743426e-01 -9.75602046e-02 -1.60448015e-01\\n1.49152458e-01 -8.41695145e-02 2.71072060e-01 -1.68727458e-01\\n1.02989487e-01 -1.13288485e-01 -3.27210069e-01 -3.15071911e-01\\n-2.19576322e-02 5.79457404e-03 3.02874774e-01 -4.69877869e-01\\n-1.54559076e-01 2.89203346e-01 -4.38468844e-01 -5.84359542e-02\\n1.19683705e-01 1.89227566e-01 1.32532567e-01 1.18998446e-01\\n-2.12152049e-01 -3.68010581e-01 6.13485202e-02 -3.82528931e-01\\n-2.70977020e-01 -1.47275638e-03 -2.77693927e-01 2.46533245e-01\\n1.17571950e-01 -6.33373186e-02 -6.92158267e-02 1.15657233e-01\\n-1.57005370e-01 -1.63327418e-02 7.81629309e-02 -4.91488772e-03\\n3.52782220e-01 -1.63083393e-02 -4.06139970e-01 3.53981316e-01\\n-1.67821318e-01 5.32294273e-01 1.74106926e-01 -8.16291988e-01\\n4.62538362e-01 4.09254789e-01 -6.17959760e-02 -4.30448920e-01\\n5.82773209e-01 -3.06598365e-01 -1.82453748e-02 6.14972934e-02\\n-4.01310563e-01 -2.61851132e-01 1.93454012e-01 -1.51092455e-01\\n-2.25953028e-01 4.05689836e-01 -4.00624890e-03 1.61617428e-01\\n1.21346615e-01 -2.89103508e-01 -1.92167416e-01 -1.98535789e-02\\n-1.01712368e-01 -1.93971530e-01 -5.27311742e-01 -1.32193223e-01\\n-1.29379675e-01 -4.72580314e-01 -9.42598507e-02 -3.96205246e-01\\n-1.77029923e-01 -2.06852928e-01 -9.96840745e-02 2.02387601e-01\\n2.03230590e-01 1.05365269e-01 -2.36061495e-02 1.09440468e-01\\n-5.23642860e-02 -6.18069470e-01 3.77774946e-02 1.85805783e-01\\n4.11658138e-01 1.88189104e-01 1.05119832e-01 -6.77421838e-02\\n3.32493298e-02 7.45300531e-01 -1.33908957e-01 -1.97028250e-01\\n2.00982824e-01 1.32788748e-01 4.28100303e-02 -1.11113168e-01\\n1.80451118e-03 3.14230800e-01 -2.96928257e-01 2.79304874e-03\\n-7.81481992e-03 -1.61931105e-02 4.26268220e-01 4.21479829e-02\\n-2.64898539e-01 -9.42052230e-02 -8.19195360e-02 1.87522352e-01\\n-6.00113094e-01 -2.54846871e-01 5.97451150e-01 2.16903970e-01\\n5.20106256e-02 1.11149676e-01 1.82509035e-01 3.51613294e-03\\n-1.93476960e-01 -1.64605483e-01 2.58002341e-01 3.00725345e-02\\n1.72422931e-01 -1.51500637e-02 -9.18130651e-02 -5.14204562e-01\\n-3.35622096e+00 -1.63567275e-01 7.79481903e-02 -2.67684877e-01\\n2.70302802e-01 -1.77100837e-01 1.85198829e-01 -7.89941698e-02\\n-2.11331651e-01 4.54040579e-02 -2.82750517e-01 -1.40611604e-01\\n1.61711589e-01 1.82543427e-01 5.07678948e-02 1.49612442e-01\\n9.19030234e-02 -2.92015582e-01 1.21553643e-02 3.35533053e-01\\n-1.69637308e-01 -6.79307342e-01 1.57476097e-01 3.76132503e-02\\n2.14172587e-01 2.25301489e-01 -3.67257535e-01 -1.16482347e-01\\n-2.07625777e-01 -2.78943628e-01 1.31078884e-02 -3.58343661e-01\\n-1.48125097e-01 2.69722879e-01 2.37703398e-01 -1.75972492e-01\\n1.26580670e-01 -4.57638711e-01 -1.00809135e-01 -5.11167109e-01\\n1.91104919e-01 -6.12208128e-01 5.54144755e-02 -1.00510284e-01\\n7.08829999e-01 -3.40575218e-01 1.00435816e-01 1.65816382e-01\\n2.03736410e-01 1.53406292e-01 1.56337976e-01 -3.36327069e-02\\n-1.74086213e-01 -3.24465215e-01 -9.97988284e-02 -8.21223408e-02\\n4.25224513e-01 3.97322685e-01 -1.68422937e-01 8.55315924e-02\\n6.71281219e-02 -2.65000939e-01 -3.56881469e-01 -2.17421636e-01\\n-1.23896554e-01 -3.14893007e-01 -6.96699679e-01 -4.63148147e-01\\n-1.72815412e-01 -2.34709203e-01 -1.91978425e-01 5.38206398e-01\\n-2.78701812e-01 -3.20859969e-01 -1.33413717e-01 -4.51709777e-01\\n3.33022922e-01 -1.53675243e-01 4.10000309e-02 -1.53944343e-01\\n-1.85941800e-01 -4.30374920e-01 2.54016351e-02 -5.54592609e-02\\n-4.37332038e-03 -2.77075380e-01 9.21046883e-02 -6.93303943e-02\\n-3.13694090e-01 -4.95240599e-01 3.92009526e-01 4.74073328e-02\\n3.15733492e-01 1.35380626e-01 2.65357852e-01 3.71247120e-02\\n1.92722440e-01 -1.03749260e-01 -8.67616311e-02 -2.99365968e-01\\n5.29151969e-02 1.75539777e-02 4.98013020e-01 -2.28466108e-01\\n2.55658617e-03 1.17498092e-01 -1.93382338e-01 -5.84129319e-02\\n2.51751930e-01 -5.35873063e-02 5.77185676e-02 -1.34613261e-01\\n2.90714860e-01 -2.55263597e-01 -1.26494721e-01 2.92047728e-02\\n2.59835366e-02 5.07986128e-01 -2.43468513e-03 -3.82800400e-01\\n-8.08161199e-02 3.66509020e-01 7.45339468e-02 -1.45225316e-01\\n-1.83006600e-01 8.39193985e-02 -2.17867434e-01 2.39261657e-01\\n5.15408777e-02 -1.64540127e-01 -2.29773447e-01 -1.82121903e-01\\n-1.08271368e-01 2.98775941e-01 3.22215527e-01 1.09329663e-01\\n1.53602019e-01 -4.44152415e-01 -7.34024867e-02 7.91218802e-02\\n2.84286112e-01 3.97128284e-01 1.91652060e-01 -1.39215425e-01\\n-3.97816710e-02 2.69526422e-01 -1.74826443e-01 1.96339339e-01\\n-2.21781775e-01 8.22695866e-02 -5.58695555e-01 -2.56037623e-01\\n-1.59120634e-01 -3.90545487e-01 1.22377343e-01 3.42870682e-01\\n1.40801102e-01 -1.84223766e-03 1.89321861e-02 -4.57275093e-01\\n2.88402259e-01 6.42053410e-02 2.29534492e-01 8.58455673e-02\\n-1.84554607e-02 5.61042428e-01 1.62543394e-02 -1.79336697e-01\\n-1.31682813e-01 9.88753587e-02 -1.69198573e-01 -1.41539291e-01\\n1.27405729e-02 -3.71570319e-01 -1.26448467e-01 4.11238492e-01\\n8.17497522e-02 -2.77443200e-01 -7.41037875e-02 2.97010750e-01\\n-1.13847084e-01 -2.91001797e-01 -1.52642891e-01 1.53028831e-01\\n3.70776355e-01 1.10724024e-01 2.89724916e-01 -3.92672926e-01\\n-1.02335669e-01 -2.55021472e-02 -3.68471071e-02 4.27778333e-01\\n1.59778193e-01 -2.27624308e-02 -4.26833145e-02 -2.13100642e-01\\n4.61593091e-01 -1.84153840e-02 -7.85872042e-02 1.91462576e-01\\n6.75358698e-02 -1.53065979e-01 -4.50243682e-01 3.04173641e-02\\n6.63888529e-02 -2.39680350e-01 -2.20124647e-02 1.70551419e-01\\n1.39198795e-01 8.03344101e-02 -7.16826737e-01 -2.08054557e-01\\n-3.30649734e-01 -5.91741176e-03 2.47826595e-02 -5.19831538e-01\\n2.10495456e-03 -1.13316998e-01 -6.50403380e-01 3.30286503e-01\\n-1.60954162e-01 -1.30969658e-01 1.40842006e-01 3.89543511e-02\\n-2.80531913e-01 -3.93950529e-02 1.05912283e-01 2.49199778e-01\\n-2.90803313e-01 -1.24873683e-01 -4.07810062e-02 -1.01631951e+00\\n1.91796139e-01 4.11838070e-02 -9.21229124e-02 1.14617661e-01\\n-6.13707351e-03 -5.94015241e-01 9.94793624e-02 -3.29686642e-01\\n-2.61476696e-01 -1.23567693e-01 -2.25346312e-01 -3.79162490e-01\\n5.18245213e-02 9.82635468e-02 -1.31938979e-01 3.37846428e-01\\n-2.96242625e-01 4.77020830e-01 -1.43288046e-01 1.38059199e-01\\n5.30842654e-02 -2.63816446e-01 9.62098315e-02 -4.05801147e-01\\n-2.93627292e-01 -1.65735304e-01 -2.97372341e-01 -2.05642775e-01\\n-7.35597238e-02 -3.09970230e-01 -1.64156914e-01 2.66325884e-02\\n3.20716918e-01 1.47752553e-01 -1.89612404e-01 -2.52616256e-01\\n2.03697205e-01 -4.70825404e-01 2.58582145e-01 -1.30281612e-01\\n-1.42143101e-01 -1.20861411e-01 1.93868414e-01 6.79805428e-02\\n1.11656278e-01 -3.88162374e-01 2.20317066e-01 -3.91603768e-01\\n-2.92018712e-01 -1.03343338e-01 -2.65877764e-03 1.83103345e-02\\n3.24648619e-01 -4.34348047e-01 -4.57664728e-02 3.40545237e-01\\n1.66408002e-01 1.67666376e-01 2.70226002e-01 -1.14989400e-01\\n-9.81541798e-02 3.50530237e-01 -4.48177457e-01 1.50898606e-01\\n7.52198815e-01 1.41661942e-01 5.20799719e-02 2.50617087e-01\\n2.25755587e-01 2.14501858e-01 4.35126930e-01 1.04345866e-01\\n-1.01131074e-01 2.92828143e-01 2.62429267e-02 -4.61645782e-01\\n-7.12860152e-02 8.39600689e-04 -2.53942728e-01 -3.26342165e-01\\n5.91432989e-01 4.71831292e-01 -4.47428703e-01 -1.73880979e-01\\n-2.87123531e-01 -2.43999347e-01 5.16952462e-02 -5.39358482e-02\\n3.65191549e-02 -8.65401402e-02 4.94822294e-01 -1.00307070e-01\\n1.72979355e-01 5.26022196e-01 -1.37886599e-01 -2.93863803e-01\\n-7.97559917e-02 1.45789206e-01 -2.21098810e-02 5.04659414e-01\\n-1.87479019e-01 2.46961057e-01 1.47062510e-01 1.36397749e-01\\n-1.15569815e-01 3.75028281e-03 1.80923611e-01 1.17790774e-01\\n6.11785837e-02 8.44303742e-02 3.00855100e-01 3.56787562e-01\\n2.85775274e-01 3.76253217e-01 3.20327252e-01 1.50867611e-01\\n4.18718457e-01 5.19121706e-01 3.24094772e-01 9.17147323e-02\\n-1.01765350e-01 4.82655689e-03 1.78552255e-01 -2.58451011e-02\\n2.71547049e-01 3.67018402e-01 -1.10868737e-02 8.92138124e-01\\n3.87509882e-01 3.05710256e-01 6.43296957e-01 -5.97209752e-01\\n-4.10342485e-01 1.43775186e-02 3.83509666e-01 -3.93961608e-01\\n-2.63388604e-02 7.66617432e-02 -3.26835215e-01 1.79850996e-01\\n-4.87463355e-01 -2.09911868e-01 -5.33080846e-02 8.91814977e-02\\n1.38712702e-02 -8.63197818e-02 -2.45540172e-01 2.01887026e-01\\n-8.44345987e-02 -1.11882605e-01 -4.65583175e-01 -1.37784675e-01\\n-1.64606795e-01 -1.68378860e-01 1.46062756e-02 -9.51543823e-02\\n1.42295687e-02 -2.64233381e-01 -5.38926609e-02 6.24569505e-03\\n3.03685158e-01 -3.19231674e-02 -2.34521572e-02 -1.19935766e-01\\n2.13262051e-01 2.56157428e-01 6.11778259e-01 4.20768708e-02\\n1.34981886e-01 -1.90793008e-01 -1.83237538e-01 1.39544114e-01\\n1.32489577e-01 7.87343085e-02 3.68271470e-02 2.73792982e-01\\n-2.88671643e-01 -1.62073001e-01 2.16903105e-01 3.77520978e-01\\n-4.50663269e-01 9.90733430e-02 -9.30561125e-02 1.39128730e-01\\n1.12349756e-01 1.96363434e-01 -2.53986448e-01 4.36829291e-02\\n-1.68973282e-01 -4.76932734e-01 3.08549970e-01 -6.22392334e-02\\n-1.11431010e-01 5.04356362e-02 2.09884092e-01 1.28027290e-01\\n-2.92463154e-01 2.63274834e-02 -3.94295789e-02 9.88065451e-02\\n3.44387703e-02 3.32657993e-01 -2.48527974e-01 -2.94403315e-01\\n-2.20518678e-01 1.67468518e-01 -1.14233404e-01 1.34271413e-01\\n6.58756634e-03 3.51202190e-01 8.29012990e-02 6.29732460e-02\\n4.24099088e-01 -5.92073007e-03 -2.75072098e-01 -2.10236654e-01\\n-2.38847494e-01 -2.27773279e-01 -4.84563634e-02 -1.15021616e-01\\n2.87293017e-01 -3.59749645e-01 -1.00651443e-01 -8.34365636e-02\\n-1.59396157e-01 -3.40648502e-01 6.11006729e-02 -7.27929696e-02]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team Application Framework - The Application Framework Team is mainly responsible for the software framework used in the Avaloq Banking Suite (ABS) for the management of static data and technical business process execution. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Our frameworks process several millions of transactions (e.g. payments) each day and maintain all the static data of our customers. Your mission Drive the future architecture of Avaloq’s search engine Drive and enhance the core frameworks of Avaloq’s current and future products Understand the architectural big picture, support and consult our stakeholders – customers as well as internal business teams Constant self-development What you need University degree in Computer Science (ETH/University) or equivalent experience Solid understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Understanding of relational databases Strong communication abilities and customer-centric Proficient English language skills You will get extra points for the following Experience in PL/SQL and Java/JEE Basic understanding of framework development Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zürich Don’t be shy – apply! Avaloq Evolution AG Alina Tauscher, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " '[\"Writing\", \"Professionalism\", \"Management\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " '[\"PL/SQL\", \"Tooling\", \"Computer Science\", \"Search Engine Submission\", \"Analytics\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Wealth Management\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Executable\", \"Software Engineering\", \"Static Data\", \"Agile Methodology\", \"Business Process\", \"Eclipse Process Framework\", \"Library For WWW In Perl\", \"Banking\", \"Relational Databases\", \"SQL And Java (SQLJ)\", \"Software Modernization\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " \"['English', 'Kazakh']\"],\n", + " ['75',\n", + " 'graduate software engineer (f/m/d)',\n", + " 'Zürich',\n", + " 'Food & Beverage Shops',\n", + " 'www.miacar.ch',\n", + " '[[-1.19583175e-01 2.86539495e-01 4.76057231e-01 -1.15727633e-01\\n4.17969763e-01 -1.97364539e-01 3.42510790e-02 5.64405441e-01\\n-1.70870069e-02 -4.59781438e-01 1.96895208e-02 -3.72487038e-01\\n-6.42487854e-02 1.22317590e-01 9.58525389e-02 4.54896092e-01\\n2.36393154e-01 2.33860388e-01 -2.20972016e-01 3.64538103e-01\\n1.40239030e-01 -1.80585951e-01 1.10236108e-01 7.52131045e-01\\n4.45855349e-01 2.54153162e-02 -8.78150091e-02 -2.13037822e-02\\n-2.73982733e-01 -2.46433243e-01 5.10401368e-01 4.79951873e-03\\n2.00614650e-02 -4.18545157e-01 1.25363141e-01 4.91248146e-02\\n-1.67006582e-01 -5.23090065e-02 -9.75537896e-02 2.58246511e-01\\n-6.18890822e-01 -2.78462082e-01 1.18321188e-01 6.27088025e-02\\n-2.59423286e-01 -3.89691621e-01 4.21248935e-03 -1.58948272e-01\\n1.74228400e-01 5.95890963e-03 -4.08497602e-01 2.83396214e-01\\n-3.44840825e-01 -2.91438699e-01 2.53828585e-01 6.28719926e-01\\n-8.38712901e-02 -4.39590544e-01 -5.94896376e-01 -3.45739067e-01\\n1.21828474e-01 -9.45104659e-02 -4.66839895e-02 -5.30573845e-01\\n2.01036930e-01 1.05101869e-01 1.89508479e-02 3.99949610e-01\\n-7.43384778e-01 -1.55981645e-01 -1.46603942e-01 -1.27718568e-01\\n-2.06896707e-01 -1.14298522e-01 -2.44998172e-01 -1.24431275e-01\\n-1.30063102e-01 4.74571586e-01 7.74803832e-02 -1.24461524e-01\\n-2.36031264e-01 4.48316276e-01 -1.59344584e-01 5.12197495e-01\\n2.01711446e-01 3.00997257e-01 1.75872907e-01 3.48357141e-01\\n-3.90891552e-01 5.49449861e-01 1.23376623e-01 -3.77924830e-01\\n2.42258236e-01 7.82513991e-02 5.02169549e-01 -1.94489241e-01\\n1.06224157e-01 7.90664032e-02 -3.40426624e-01 4.04949367e-01\\n2.04945639e-01 -2.68138528e-01 1.31727874e-01 -1.20113708e-01\\n-2.80685741e-02 5.05104363e-02 2.89237499e-02 2.75072873e-01\\n-1.91378802e-01 3.94906580e-01 2.68258244e-01 -2.38564685e-01\\n-2.20984638e-01 -5.25800705e-01 -5.13884053e-02 3.36940363e-02\\n1.07184552e-01 1.24529570e-01 8.34331885e-02 -7.92623777e-03\\n2.81383932e-01 -1.25661835e-01 9.10368487e-02 7.93693900e-01\\n-3.22509706e-02 2.55097933e-02 -2.56207973e-01 3.17413300e-01\\n1.52010247e-01 -2.76668012e-01 2.09054604e-01 1.43907577e-01\\n2.99591981e-02 -1.81428134e-01 -2.04833239e-01 4.84443486e-01\\n-6.42271712e-02 -2.65718281e-01 -3.47824544e-01 1.26957074e-01\\n-1.30446851e-01 -2.89142400e-01 6.58058286e-01 1.77883282e-01\\n1.71319962e-01 -2.62738075e-02 4.60977852e-02 -1.38173357e-01\\n-1.20146789e-01 1.86634406e-01 1.00517944e-01 3.34720053e-02\\n-4.06893641e-01 -1.82250977e-01 -2.10901842e-01 6.29438534e-02\\n-3.55259389e-01 1.21514328e-01 -7.58993030e-02 -4.89118174e-02\\n2.47262567e-01 6.44266531e-02 -2.53502637e-01 2.28740200e-01\\n-1.18140809e-01 -1.58067681e-02 5.50452136e-02 3.45092922e-01\\n-2.32706457e-01 2.17469007e-01 -1.82862654e-02 -7.30819404e-02\\n5.53231120e-01 1.18064545e-01 8.29051509e-02 -4.74615656e-02\\n4.13413256e-01 -5.21940775e-02 5.64197917e-03 2.09396064e-01\\n-6.23429120e-01 3.20047498e-01 -1.12714469e-02 -2.17590928e-02\\n1.67556956e-01 -1.14068709e-01 3.60218704e-01 -3.05569798e-01\\n3.75771075e-02 -1.87948152e-01 -4.20851618e-01 -2.64991969e-01\\n-2.26186693e-01 3.92525457e-02 3.87320697e-01 -3.18454325e-01\\n-2.48746395e-01 1.35397628e-01 -4.55585122e-01 -7.53269792e-02\\n6.08633868e-02 2.61979312e-01 7.18994215e-02 1.19255140e-01\\n-3.08484465e-01 -5.48476517e-01 4.72812168e-02 -3.41136485e-01\\n-3.17728668e-01 1.31445244e-01 -2.48175472e-01 2.63092309e-01\\n4.89322394e-02 7.67622143e-02 -1.64553374e-01 1.94238737e-01\\n-1.69653073e-01 1.52155226e-02 4.78722192e-02 3.24349329e-02\\n1.66284040e-01 6.13287576e-02 -4.50053424e-01 3.26733053e-01\\n-8.96285176e-02 5.49665749e-01 9.60469916e-02 -1.01394010e+00\\n4.36462730e-01 4.59852755e-01 3.91398668e-02 -4.12744761e-01\\n5.88551641e-01 -2.77938366e-01 2.05036737e-02 1.01839319e-01\\n-4.29253221e-01 -3.60720158e-01 2.53562838e-01 -1.52469710e-01\\n-2.52070695e-01 3.68935943e-01 6.26891926e-02 1.04346558e-01\\n1.44063801e-01 -3.05669427e-01 -1.52747035e-01 1.31278202e-01\\n-1.22844093e-02 -2.16225296e-01 -5.48781157e-01 -7.08767027e-02\\n-3.57223600e-02 -4.39470023e-01 -1.13124356e-01 -3.63005251e-01\\n-2.39526331e-01 -3.21491092e-01 -1.28283635e-01 2.71445990e-01\\n4.14297849e-01 1.07662462e-01 1.21631287e-01 -1.09383613e-02\\n-6.61569238e-02 -6.03772283e-01 -6.74744397e-02 1.43161193e-01\\n4.31548864e-01 3.00599366e-01 1.08162602e-02 8.97024721e-02\\n-1.95389073e-02 7.26932704e-01 -1.28639176e-01 -2.14964747e-01\\n1.70937821e-01 1.97683066e-01 3.14479657e-02 -1.11889817e-01\\n9.93512422e-02 4.14722353e-01 -2.92401880e-01 9.64932144e-02\\n-1.68589130e-01 4.97535150e-03 4.64624614e-01 2.17599154e-01\\n-3.56907845e-01 -1.13911167e-01 -1.31346092e-01 1.45066706e-02\\n-6.62294209e-01 -2.54648119e-01 5.38691103e-01 2.35987201e-01\\n2.68391699e-01 8.13746303e-02 1.97481111e-01 -1.48054987e-01\\n-1.74555942e-01 -2.42284358e-01 2.35597640e-01 1.85122967e-01\\n1.42286301e-01 7.07853585e-02 5.05928397e-02 -6.44900441e-01\\n-3.01524234e+00 -1.35828614e-01 2.34799668e-01 -2.51506835e-01\\n1.73888892e-01 -1.05320737e-01 5.07703349e-02 -1.49952516e-01\\n-2.88332552e-01 4.94260453e-02 -1.57701001e-01 -1.37839347e-01\\n1.71779081e-01 1.80079088e-01 1.40320227e-01 1.59045056e-01\\n2.13591799e-01 -1.74125195e-01 -1.03555672e-01 3.76456648e-01\\n-1.06458060e-01 -6.36080384e-01 2.45579898e-01 -6.05975054e-02\\n2.16315538e-01 2.66289979e-01 -2.94771731e-01 -3.54355760e-02\\n-2.24674836e-01 -1.41966954e-01 4.81301174e-02 -3.07170779e-01\\n-1.88715145e-01 1.89953536e-01 1.85729474e-01 -5.73654287e-02\\n1.74272239e-01 -3.83148223e-01 -1.25991002e-01 -3.18131447e-01\\n2.22193331e-01 -6.43416405e-01 -1.27425075e-01 -1.64878130e-01\\n8.65147948e-01 -3.62816870e-01 2.59192251e-02 1.69650484e-02\\n2.32712209e-01 1.26177669e-01 1.70694098e-01 -3.48463133e-02\\n-6.00855947e-02 -2.89246678e-01 3.26802358e-02 -7.84933046e-02\\n4.44695711e-01 4.53344315e-01 -8.37304071e-02 -6.60024956e-02\\n6.68990240e-02 -2.38519177e-01 -4.62292314e-01 -1.14460826e-01\\n-1.49721637e-01 -3.09581518e-01 -5.97775340e-01 -3.24345171e-01\\n-2.28583395e-01 -9.35359821e-02 -1.22799240e-01 6.36817396e-01\\n-3.07841063e-01 -2.93665022e-01 -6.31364360e-02 -5.40741682e-01\\n1.94167048e-01 -1.45472899e-01 5.59872352e-02 -1.87817365e-01\\n-2.52781868e-01 -5.69725454e-01 1.80512406e-02 -3.12984660e-02\\n-8.21506679e-02 -3.39528054e-01 -4.23782468e-02 -1.56898469e-01\\n-2.77899832e-01 -5.81501067e-01 4.27079618e-01 2.21594661e-01\\n3.27683687e-01 1.73009098e-01 4.02628362e-01 -2.17996426e-02\\n2.74073690e-01 -1.56997725e-01 -1.72499716e-02 -4.08999354e-01\\n8.60510021e-02 5.09130992e-02 5.84005177e-01 -2.46567592e-01\\n-8.18904431e-04 1.61258981e-01 -1.86808959e-01 -1.51595354e-01\\n2.80662358e-01 1.30463289e-02 7.26327524e-02 -1.94038957e-01\\n2.91452616e-01 -2.59659469e-01 -1.80961341e-01 8.22151303e-02\\n5.90481758e-02 5.54426789e-01 -9.52659696e-02 -4.78462487e-01\\n-1.11807004e-01 4.36697423e-01 -1.54987518e-02 -1.04974158e-01\\n-3.42090577e-02 1.91289503e-02 -1.42105624e-01 3.55427206e-01\\n7.23148510e-02 -2.08551213e-01 -3.20464641e-01 -2.12570712e-01\\n-1.61376640e-01 4.01446283e-01 2.35333800e-01 1.01449743e-01\\n1.32898604e-02 -4.94850814e-01 -1.71814024e-01 2.22182348e-01\\n1.89758345e-01 4.72373515e-01 6.86740726e-02 -1.93909734e-01\\n-9.67517048e-02 4.97566551e-01 -2.01320112e-01 1.69489995e-01\\n-1.89996779e-01 1.09436557e-01 -5.05450785e-01 -2.18155697e-01\\n-1.54886842e-01 -5.07041812e-01 1.11381374e-01 3.57134134e-01\\n2.21117243e-01 1.21371061e-01 -5.85470945e-02 -4.63210851e-01\\n3.44523132e-01 1.63740724e-01 9.42939371e-02 2.18948275e-01\\n-6.49673045e-02 5.92483759e-01 1.44601483e-02 -1.82654694e-01\\n-4.75435667e-02 -1.25137903e-02 -1.23728961e-01 -1.25884280e-01\\n1.61587730e-01 -4.79965717e-01 -1.14921302e-01 3.88439447e-01\\n8.76669362e-02 -4.10682917e-01 -2.93355584e-01 1.58128023e-01\\n-4.87466641e-02 -1.57914519e-01 -1.92880541e-01 1.13314800e-01\\n4.11885053e-01 8.03370401e-02 3.80327910e-01 -4.78367835e-01\\n-1.54557377e-01 -6.36592507e-02 -2.51060814e-01 5.46234369e-01\\n1.84363350e-01 1.01532415e-01 -3.67821842e-01 -2.14819416e-01\\n4.62514758e-01 -1.66024223e-01 -2.33468246e-02 -5.98542243e-02\\n4.86896150e-02 -1.74939886e-01 -4.48714912e-01 1.06052294e-01\\n4.02206518e-02 -3.05649489e-01 4.33157459e-02 9.62695703e-02\\n2.13541925e-01 1.93284884e-01 -5.32754838e-01 -2.98446119e-01\\n-1.76570609e-01 6.60525286e-04 6.50514364e-02 -4.72296298e-01\\n-1.52059663e-02 -6.22800924e-02 -6.22111976e-01 1.73800200e-01\\n-2.59042233e-01 -1.61745459e-01 1.16943255e-01 9.14948583e-02\\n-4.57662851e-01 -6.93401182e-03 2.24890877e-02 3.01161021e-01\\n-2.77208149e-01 -3.66617531e-01 -1.07425768e-02 -1.00379109e+00\\n1.76259533e-01 -7.09713101e-02 -1.35190427e-01 2.43439913e-01\\n9.16012563e-03 -6.21394634e-01 1.42315379e-03 -3.38716298e-01\\n-1.32034674e-01 6.22090651e-03 -1.12983167e-01 -4.33292657e-01\\n9.38077122e-02 -1.38310995e-03 -2.32058465e-01 5.25181711e-01\\n-2.83825547e-01 3.50005358e-01 -1.45236209e-01 2.39909127e-01\\n-3.14190495e-03 -2.99050868e-01 1.79394200e-01 -4.60691631e-01\\n-4.05967265e-01 -1.57000065e-01 -3.43088299e-01 -2.29510412e-01\\n-6.28480762e-02 -2.67071098e-01 -2.14909926e-01 1.53019860e-01\\n3.12112391e-01 9.73448977e-02 -1.56503707e-01 -3.18749130e-01\\n1.26397565e-01 -4.23649520e-01 1.70921057e-01 -3.97104882e-02\\n-1.34749860e-01 -1.07638195e-01 2.28622273e-01 1.74037844e-01\\n1.06498972e-01 -4.74747300e-01 3.38321418e-01 -3.82098347e-01\\n-3.30687195e-01 -1.19414896e-01 -2.52510458e-02 -1.14668548e-01\\n3.86767983e-01 -5.12346268e-01 -6.50297478e-02 3.44056606e-01\\n9.46068540e-02 2.08319828e-01 2.82320112e-01 -1.98634807e-02\\n-5.84645011e-02 2.28364766e-01 -2.92623311e-01 1.44736171e-01\\n7.79846370e-01 1.05107255e-01 1.17461905e-01 1.68973163e-01\\n1.42384276e-01 1.94779754e-01 4.66333002e-01 3.68566029e-02\\n-2.05001056e-01 1.95251510e-01 -7.49639347e-02 -5.28831422e-01\\n-1.02342349e-02 -2.05090921e-02 -3.30652952e-01 -3.93281460e-01\\n6.84391081e-01 4.76735711e-01 -4.48911399e-01 -1.24456681e-01\\n-1.15282699e-01 -1.74629673e-01 5.97907752e-02 -2.83874571e-02\\n2.38684323e-02 -1.06755681e-01 5.63582003e-01 -2.01870408e-02\\n2.63815016e-01 4.53272432e-01 -3.12757134e-01 -3.93832326e-01\\n-5.73938936e-02 1.15327924e-01 -6.37650862e-02 4.45472986e-01\\n-2.63900459e-01 3.11249316e-01 -4.90891114e-02 1.72640473e-01\\n-1.00035660e-01 1.06147535e-01 4.27524261e-02 1.55299217e-01\\n1.08361043e-01 9.46153104e-02 4.38003510e-01 5.56897283e-01\\n3.92727315e-01 4.55936015e-01 2.28569344e-01 8.65553170e-02\\n5.67220449e-01 4.56421107e-01 3.16680551e-01 2.38121971e-01\\n-2.80564441e-03 6.71941862e-02 1.99097648e-01 -3.51124589e-04\\n3.43205154e-01 2.48450339e-01 1.68193176e-01 8.63867581e-01\\n1.84724107e-01 2.09637851e-01 6.92038655e-01 -5.88298202e-01\\n-3.03123415e-01 -1.91579945e-02 3.85139704e-01 -4.15609688e-01\\n-1.82039157e-01 1.38147190e-01 -2.34456554e-01 1.42984852e-01\\n-4.65275079e-01 -2.41406828e-01 -1.16552107e-01 2.53528178e-01\\n-1.18937790e-01 -1.65267706e-01 -2.17611805e-01 1.06018350e-01\\n-1.69396177e-01 -9.31952074e-02 -4.74380821e-01 -4.31855069e-03\\n-1.82721660e-01 -2.01083079e-01 -1.18958525e-01 -2.41331667e-01\\n-1.05747819e-01 -4.90128279e-01 -3.85883898e-02 1.36224669e-03\\n2.04767704e-01 -9.82780978e-02 2.10783444e-02 -1.89152941e-01\\n3.04891586e-01 2.24264875e-01 5.50061464e-01 -4.60522287e-02\\n9.63636860e-02 -3.28923017e-01 -3.16072643e-01 1.87890276e-01\\n1.63141116e-01 3.88803519e-02 -1.97183271e-03 2.63293475e-01\\n-2.35788360e-01 -4.44035828e-02 6.77402457e-03 3.61411810e-01\\n-5.06630599e-01 2.18405258e-02 -2.14234635e-01 1.53182298e-01\\n9.61227193e-02 1.08869828e-01 -2.06460342e-01 6.68522194e-02\\n-2.09805667e-01 -3.96511048e-01 2.07910240e-01 -5.45218810e-02\\n-8.66686553e-02 8.81678089e-02 1.11686595e-01 7.83984587e-02\\n-3.70114088e-01 -2.71451790e-02 -1.09926080e-02 2.53908962e-01\\n4.86997329e-02 3.26120794e-01 -1.74463302e-01 -3.18139493e-01\\n-1.33937404e-01 1.50855780e-01 -1.53921485e-01 8.26874524e-02\\n6.17588311e-02 3.55197549e-01 1.05360970e-01 -9.29605216e-02\\n4.99503076e-01 8.24360400e-02 -8.12405050e-02 -3.03757101e-01\\n-1.37327865e-01 -2.95563966e-01 -1.51233390e-01 -8.54848698e-02\\n1.79440498e-01 -3.76806438e-01 -4.39279303e-02 -9.20795947e-02\\n-2.94222683e-02 -3.42573494e-01 9.55150556e-03 -1.90878332e-01]]',\n", + " 'Together we build the future of last mile delivery and grocery shopping. Backed by a major Swiss venture fund, MIACAR successfully launched in the region of Bern and we are now growing our company at high speed. Join us in becoming the category king in Switzerland and help us giving our customers what they really want: More time for the beautiful things in life. Graduate Software Engineer (f/m/d) As a Software Engineer you will be responsible for developing state-of-the-art mobile and web applications that delight our customers. These will be your tasks Contribute to developing MIACAR\\'s scalable, reliable, and secure grocery delivery platform (this includes web and mobile applications for our customers as well as our logistics operations) Take pride in working on projects to successful completion involving a wide variety of technologies and systems Assure quality via testing, validating data, monitoring and implementing best practices Deliver high quality software and user experience within an Agile development environment You\\'re offering these qualifications Solid understanding of Computer Science concepts, algorithms and data structures 2+ years of experience with a modern statically typed programming language (Typescript, Haskell, C++, Java, Scala, or similar) Knowledge of version control techniques using git Interest in functional programming We\\'re offering these benefits Be a key player in the most ambitious Swiss online food story Highly motivated, dynamic and international team Fame and glory for what you will have built No bulls**t, down to earth, yet high caliber work environment Sounds like you? Submit your application for MIACAR and be a \"Hero of the first hour\"! We are looking forward to hearing from you. Contact: MIACAR AG Helen Krähenbühl MIACAR is backed by the Migros group. For more job offerings, please visit: migros-gruppe.jobs',\n", + " '[\"Typing\", \"Quality Assurance\", \"Operations\", \"Reliability\"]',\n", + " '[\"Web Applications\", \"Agility\", \"KM Programming Language\", \"Development Environment\", \"Data Validation\", \"Computer Science\", \"Good Agricultural Practices\", \"Mobile Application Software\", \"TypeScript\", \"Haskell (Programming Language)\", \"Software Quality Management\", \"Version Control\", \"M (Programming Language)\", \"Hostile Work Environment\", \"Quality Management Systems\", \"Software Engineering\", \"Test Data Generation\", \"Mobility\", \"Logistics\", \"Scalability\", \"Functional Programming\", \"Foods\", \"Data Structures\", \"Algorithms\", \"Git Flow\", \"User Experience\", \"Java (Programming Language)\"]',\n", + " \"['English', 'Hindi']\"],\n", + " ['41',\n", + " 'software engineer (100%) – web and data science',\n", + " 'Lausanne',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.65671992e-01 1.45940229e-01 3.86579961e-01 -5.96222728e-02\\n4.40720975e-01 -1.17932484e-01 -5.53719737e-02 5.01133442e-01\\n-6.70614690e-02 -3.90774101e-01 -2.40968078e-01 -3.33446920e-01\\n-2.98712663e-02 4.49025333e-02 4.81980816e-02 3.25744450e-01\\n4.09833908e-01 5.76693937e-03 -1.84553653e-01 2.21736267e-01\\n1.58151448e-01 7.42802769e-03 6.68215826e-02 7.74974823e-01\\n4.26653177e-01 3.95111814e-02 -8.13630000e-02 8.06319192e-02\\n-1.23878241e-01 -1.93758741e-01 4.81303036e-01 -4.36533578e-02\\n-5.75363971e-02 -2.78646976e-01 1.52562439e-01 1.53269842e-01\\n-1.69085369e-01 -1.44976303e-01 1.58054326e-02 1.32952496e-01\\n-3.66461992e-01 -1.98856890e-01 -1.35921940e-01 -2.06342489e-02\\n-2.50288725e-01 -3.20023537e-01 1.66707382e-01 7.32310712e-02\\n1.94391698e-01 1.21158890e-01 -5.73420227e-01 3.27536047e-01\\n-1.59305811e-01 -2.10323647e-01 2.62402833e-01 5.85820317e-01\\n-4.31489646e-02 -3.49614322e-01 -4.45077181e-01 -3.20531785e-01\\n-3.72604914e-02 8.26465804e-03 2.51845773e-02 -3.39872897e-01\\n4.32266474e-01 7.68900961e-02 -1.74692422e-02 4.08467025e-01\\n-7.77748108e-01 -1.19041376e-01 -1.80832863e-01 -3.07215638e-02\\n-4.31059688e-01 -9.34521481e-02 -2.04030812e-01 -3.37942868e-01\\n3.92130949e-03 3.90388906e-01 4.84944806e-02 1.46399632e-01\\n-1.26081616e-01 3.08380604e-01 -1.73809811e-01 2.64557004e-01\\n2.00204268e-01 2.24971503e-01 1.22631535e-01 2.03790337e-01\\n-4.58802283e-01 3.04537326e-01 1.20717525e-01 -3.34799170e-01\\n2.20548585e-01 1.06594443e-01 4.94277716e-01 -2.64986046e-02\\n1.33682892e-01 1.20210752e-01 -2.74110585e-01 2.19658196e-01\\n1.65380284e-01 -2.70546913e-01 6.74144253e-02 1.08242229e-01\\n-1.60465941e-01 6.08422644e-02 -1.85638703e-02 1.67464122e-01\\n-4.69229460e-01 3.80220354e-01 1.42995641e-01 -2.04860896e-01\\n-5.75360730e-02 -5.27833998e-01 -5.02122864e-02 7.55536705e-02\\n1.28539905e-01 2.48511523e-01 1.00582331e-01 2.20322356e-01\\n1.80671632e-01 -1.19153254e-01 1.77313268e-01 8.00523818e-01\\n-1.65828735e-01 4.92043868e-02 -1.09462552e-01 2.98142612e-01\\n1.40939914e-02 -4.12092865e-01 3.59669060e-01 2.41447479e-01\\n6.60205856e-02 -9.69279334e-02 -1.92451924e-01 3.51833910e-01\\n-5.27645983e-02 -1.07739866e-01 -2.72441983e-01 2.93499619e-01\\n-6.37685955e-02 -3.98500741e-01 5.46387792e-01 -3.29662189e-02\\n1.38507351e-01 -1.19825944e-01 -1.50499977e-02 -1.06342621e-01\\n-1.75223872e-03 1.77395970e-01 -1.65576115e-02 1.13179833e-01\\n-2.77129471e-01 -2.60744929e-01 -2.11151257e-01 2.11403474e-01\\n-2.17946619e-01 1.65860862e-01 -1.15631759e-01 -7.70363733e-02\\n3.89654279e-01 -1.46581009e-02 -3.62541020e-01 2.69966841e-01\\n-1.63040996e-01 -7.66931847e-02 -1.56875193e-01 2.75265068e-01\\n-1.57152399e-01 1.70637965e-01 -8.45586434e-02 -2.88989067e-01\\n6.04902506e-01 9.84405205e-02 7.97428861e-02 2.04659179e-02\\n3.77252936e-01 -1.16546281e-01 2.71022826e-01 1.23651460e-01\\n-8.31082702e-01 3.86215389e-01 -7.69033059e-02 -1.41677290e-01\\n5.73826246e-02 -9.23963487e-02 3.63402575e-01 -3.26572210e-01\\n-4.28737048e-03 -6.35979474e-02 -4.10261333e-01 -3.56522679e-01\\n-2.93922603e-01 1.17526241e-02 3.80106091e-01 -4.41879064e-01\\n-1.07742257e-01 2.29473859e-01 -4.35201019e-01 -5.65388687e-02\\n1.20207965e-01 1.47222951e-01 2.17267781e-01 1.16263881e-01\\n-1.37646094e-01 -5.49800515e-01 -4.99382168e-02 -4.79152948e-01\\n-2.49541163e-01 1.10701770e-01 -3.63124132e-01 2.43841216e-01\\n1.00868732e-01 -9.69737396e-03 -1.25990167e-01 6.72070533e-02\\n-1.80060863e-01 1.93080287e-02 2.23223478e-01 9.92939174e-02\\n2.69773066e-01 2.12840606e-02 -3.51220042e-01 5.13492465e-01\\n-2.67470479e-01 5.66492081e-01 1.12878934e-01 -7.32331932e-01\\n5.85182548e-01 3.70277882e-01 2.30081119e-02 -4.11384702e-01\\n6.64948702e-01 -3.22872043e-01 -1.39720738e-01 2.16031119e-01\\n-5.10149181e-01 -2.79087454e-01 2.25954041e-01 -2.85820723e-01\\n-1.71467245e-01 5.68640590e-01 1.11486539e-01 5.34686446e-03\\n1.91207111e-01 -2.09477827e-01 -5.11966310e-02 2.03552753e-01\\n-5.67220896e-02 -3.04019392e-01 -4.41351265e-01 6.44363463e-03\\n-1.00489557e-01 -5.02600849e-01 -2.21974134e-01 -4.52862322e-01\\n-1.32305488e-01 -3.67884755e-01 -8.69197994e-02 3.19357514e-01\\n1.78226694e-01 1.15841031e-02 5.40474430e-02 -1.46193001e-02\\n-2.18150109e-01 -4.65944588e-01 5.52844405e-02 -4.87956665e-02\\n3.54325950e-01 2.22053930e-01 5.17959297e-02 7.71746412e-03\\n1.20537810e-01 5.90416431e-01 -4.31589901e-01 -2.04296216e-01\\n1.92698970e-01 1.77802205e-01 -1.65455453e-02 -9.36991945e-02\\n6.47983104e-02 1.84358478e-01 -2.80127943e-01 6.28573596e-02\\n-1.97841823e-01 6.18828088e-03 3.12159479e-01 -3.37022841e-02\\n-1.72033250e-01 -2.81366050e-01 -2.01874048e-01 2.41755426e-01\\n-4.15241957e-01 -1.46145418e-01 5.02776742e-01 1.94308281e-01\\n1.26098216e-01 9.35502499e-02 1.64956897e-01 -5.51386178e-02\\n-2.27688760e-01 -2.75434315e-01 1.64273471e-01 2.11716086e-01\\n9.52063203e-02 1.16905600e-01 7.06956442e-03 -5.39504468e-01\\n-3.16318107e+00 -1.43631786e-01 8.27458352e-02 -2.16717392e-01\\n1.96872801e-01 -1.81011736e-01 7.57007673e-02 -1.56750932e-01\\n-3.19366306e-01 8.51342082e-03 -2.65844643e-01 -2.52728224e-01\\n2.42721364e-01 3.00038517e-01 2.11652458e-01 1.78828925e-01\\n6.91802874e-02 -2.70938516e-01 -3.27821411e-02 3.37593853e-01\\n-2.02352136e-01 -6.36483133e-01 1.80496231e-01 -1.10360548e-01\\n2.89911449e-01 2.12548465e-01 -3.64683986e-01 -1.52064413e-01\\n-3.71091872e-01 -2.66302556e-01 1.55196354e-01 -3.94480646e-01\\n-1.90219581e-02 3.70257854e-01 2.72065759e-01 -8.62296000e-02\\n1.26356497e-01 -3.15278769e-01 -8.34692791e-02 -4.33622539e-01\\n9.70664546e-02 -6.00667834e-01 3.41655426e-02 -1.36053458e-01\\n6.46572888e-01 -2.92690754e-01 2.10369080e-01 -6.23375773e-02\\n1.25545070e-01 1.81514800e-01 7.08480626e-02 2.23776102e-02\\n-2.35551387e-01 -1.89410746e-01 -2.88651381e-02 -2.43645459e-01\\n4.85781610e-01 5.86879492e-01 -2.45114237e-01 5.31861279e-03\\n1.39248502e-02 -3.06160778e-01 -4.03995007e-01 -4.26138461e-01\\n-1.84742033e-01 -2.08667144e-01 -5.83256066e-01 -3.99220407e-01\\n4.32866812e-02 -8.51115957e-03 -1.75034963e-02 5.42504251e-01\\n-3.46156836e-01 -3.08009803e-01 -7.46407062e-02 -5.06666541e-01\\n1.90752119e-01 -1.30440563e-01 3.77066061e-02 -1.53395131e-01\\n-2.05087990e-01 -5.11045337e-01 -2.26585865e-02 -6.74601644e-02\\n-7.92954639e-02 -3.09072286e-01 1.44901365e-01 -2.73926258e-01\\n-3.10961783e-01 -4.97012854e-01 3.87421727e-01 7.26928636e-02\\n2.68800616e-01 1.60214692e-01 1.13335781e-01 -4.80764695e-02\\n1.84253618e-01 -7.91472644e-02 7.70884603e-02 -3.75289261e-01\\n1.73179924e-01 -3.24712358e-02 4.67437983e-01 -2.92596370e-01\\n9.26188082e-02 9.33798477e-02 -2.40125269e-01 -9.63956937e-02\\n3.16478431e-01 2.82150581e-02 5.46283498e-02 -2.18946502e-01\\n3.16442132e-01 -3.99932027e-01 -1.06561989e-01 1.22343890e-01\\n7.86487013e-04 5.63141465e-01 -9.13602859e-02 -3.18641096e-01\\n-2.43854791e-01 4.75256920e-01 -3.92867178e-02 -6.24148473e-02\\n-2.72917636e-02 6.82791173e-02 -2.72959262e-01 8.36367439e-03\\n1.05782643e-01 -1.77339256e-01 -3.27258199e-01 -6.63473010e-02\\n-4.37629186e-02 2.60152191e-01 3.49061579e-01 1.23251729e-01\\n-4.43817750e-02 -3.90107691e-01 4.30728868e-02 2.38825619e-01\\n2.05731302e-01 4.10272509e-01 1.64604485e-01 -2.82640755e-01\\n1.16258956e-01 4.40718293e-01 -1.38385400e-01 2.99130321e-01\\n-2.55757272e-01 2.94040069e-02 -4.51910585e-01 -2.76521027e-01\\n-3.08819771e-01 -2.09950149e-01 2.33417332e-01 2.39462256e-01\\n6.02208003e-02 -7.66653344e-02 2.06329226e-02 -2.36203387e-01\\n2.68072933e-01 3.77498157e-02 2.47298986e-01 1.95489034e-01\\n7.02776536e-02 5.05241871e-01 6.19248040e-02 -4.02613468e-02\\n-1.11321114e-01 9.74437874e-03 -1.82372719e-01 -2.55358249e-01\\n2.59953812e-02 -4.51805174e-01 -1.71005443e-01 3.30977261e-01\\n8.71234760e-02 -2.15608418e-01 -1.51789695e-01 3.16470623e-01\\n2.74791047e-02 -2.69510776e-01 -1.83940381e-01 4.27336209e-02\\n3.36368263e-01 1.95188791e-01 2.39873916e-01 -5.45838594e-01\\n2.16232799e-02 8.71053934e-02 6.00444637e-02 3.49319577e-01\\n7.42349587e-03 4.74575683e-02 -2.14556947e-01 -3.09754163e-01\\n3.78174186e-01 -1.18754230e-01 -7.81170204e-02 2.21334770e-02\\n-5.10758124e-02 -1.01043999e-01 -4.98390257e-01 6.23926409e-02\\n-7.73448050e-02 -1.69122234e-01 2.25923546e-02 3.02437153e-02\\n1.88040107e-01 1.60920154e-03 -5.90171278e-01 -2.60729134e-01\\n-2.39859760e-01 1.21823907e-01 -6.59736991e-03 -4.12824333e-01\\n-3.31509188e-02 -1.43836319e-01 -5.90028405e-01 2.51630843e-01\\n-3.01294565e-01 2.14015245e-02 1.66689724e-01 -2.85166893e-02\\n-2.90737748e-01 -1.66129358e-02 2.14256197e-01 1.43998519e-01\\n-3.52507979e-01 -2.76134938e-01 1.63707078e-01 -9.68044043e-01\\n2.28630215e-01 -4.89335358e-02 -2.76113488e-03 5.22096828e-02\\n5.19602746e-02 -6.59997046e-01 6.40762374e-02 -3.23857099e-01\\n3.16361152e-02 -5.28077185e-02 -1.89562067e-01 -3.75486195e-01\\n1.65075988e-01 2.86792889e-02 -2.53136873e-01 4.25950587e-01\\n-3.73569787e-01 2.23947644e-01 -6.23741485e-02 8.54542851e-02\\n-9.47628915e-03 -2.60334611e-01 1.60610527e-01 -3.55486512e-01\\n-3.97661686e-01 -1.08092077e-01 -2.31303632e-01 -2.40255073e-01\\n2.04730574e-02 -3.08231413e-01 -1.32807940e-01 1.14467770e-01\\n2.77534485e-01 -2.14315578e-03 -1.54656783e-01 -2.02471212e-01\\n6.36121482e-02 -4.14339721e-01 6.53293878e-02 -9.79014263e-02\\n-1.74235195e-01 -5.83656654e-02 1.44413859e-01 1.49172083e-01\\n1.79759547e-01 -2.99676359e-01 4.11857545e-01 -4.19254601e-01\\n-3.48256886e-01 9.24141146e-03 2.44993679e-02 7.12200850e-02\\n4.10732448e-01 -4.47869778e-01 -1.06420852e-02 4.83556926e-01\\n1.58661678e-01 4.26347740e-02 3.35807711e-01 -1.40962273e-01\\n-6.75651282e-02 3.55195940e-01 -4.03500348e-01 8.11336488e-02\\n7.59608150e-01 1.82093397e-01 1.61473811e-01 1.83877945e-01\\n8.28263089e-02 2.08341986e-01 4.96791363e-01 -6.81689978e-02\\n-4.55492884e-02 2.34692231e-01 1.66272134e-01 -4.87056762e-01\\n-3.79559584e-02 -7.23590404e-02 -1.19591534e-01 -3.12258154e-01\\n6.38360381e-01 2.92919099e-01 -3.86653483e-01 -2.76258111e-01\\n-1.80285275e-01 -8.55756849e-02 1.83038861e-01 -1.20801419e-01\\n-1.20878769e-02 -1.25445127e-01 3.60706985e-01 -1.79722719e-02\\n3.25670779e-01 5.15507519e-01 -1.36967659e-01 -2.27989957e-01\\n-1.24316573e-01 1.55378118e-01 -2.40206271e-02 4.30340767e-01\\n-1.24636143e-01 3.93962950e-01 -2.61003356e-02 7.84785450e-02\\n-7.83978105e-02 6.78520948e-02 1.60332724e-01 1.56171434e-02\\n1.71123862e-01 2.25997478e-01 2.28904232e-01 4.57809508e-01\\n4.19697940e-01 4.20207202e-01 2.50340521e-01 1.02351159e-02\\n5.12344360e-01 5.60570955e-01 3.82814586e-01 5.80348261e-02\\n-1.36158187e-02 6.44954741e-02 2.43339259e-02 3.39429080e-02\\n3.61855984e-01 2.38496885e-01 7.39051476e-02 8.66282940e-01\\n3.72847259e-01 3.94555718e-01 7.58402288e-01 -5.22506416e-01\\n-3.68315160e-01 -9.77809355e-03 4.80227858e-01 -3.72988820e-01\\n-2.26168558e-02 4.76302467e-02 -1.46486595e-01 2.68404514e-01\\n-4.04040635e-01 -1.36018753e-01 -3.36954966e-02 5.21584116e-02\\n8.01622570e-02 -6.15493730e-02 -1.92121118e-01 -5.70904277e-02\\n-2.76259631e-01 -2.42562056e-01 -4.39272940e-01 -2.10140608e-02\\n-2.95146763e-01 -1.82361647e-01 -6.06999770e-02 -1.34291872e-01\\n-1.40891895e-01 -3.11350852e-01 -6.07098565e-02 -7.84874409e-02\\n2.48353630e-01 -2.02380747e-01 -1.92393035e-01 -1.98216036e-01\\n3.09174687e-01 1.87624231e-01 5.69564581e-01 3.12692448e-02\\n5.37515357e-02 -1.99505210e-01 -2.62128711e-01 5.34336045e-02\\n1.47601604e-01 6.16584383e-02 1.04133293e-01 2.15175718e-01\\n-3.02895337e-01 -1.61912888e-01 2.15130210e-01 2.95713663e-01\\n-4.23356444e-01 -7.45199993e-03 -3.20259519e-02 2.60154426e-01\\n9.83207449e-02 9.41179097e-02 -2.00363994e-01 1.09424725e-01\\n-1.80405974e-01 -6.02317691e-01 2.75040656e-01 -1.84674039e-02\\n-7.90801942e-02 -3.01857069e-02 2.44553834e-01 1.65890366e-01\\n-1.48469836e-01 -7.37166107e-02 -5.72709739e-03 1.91942930e-01\\n1.08315811e-01 3.56584936e-01 -2.70975500e-01 -3.18293184e-01\\n-2.75185645e-01 2.19380870e-01 -2.39802092e-01 7.16267228e-02\\n-7.55953044e-02 4.12379742e-01 2.35632937e-02 1.06797941e-01\\n3.06158900e-01 -2.49416716e-02 -1.43308297e-01 -2.47206077e-01\\n-1.26511961e-01 -2.64839530e-01 4.24703807e-02 -3.16180363e-02\\n1.42942041e-01 -3.56728315e-01 -1.51308179e-01 -2.08909661e-01\\n-9.97731909e-02 -2.28749037e-01 8.07694867e-02 4.54790238e-03]]',\n", + " 'The Ecole polytechnique fédérale de Lausanne (EPFL) is one of the most dynamic university campuses in Europe and ranks among the top 20 universities worldwide. The EPFL employs 6,000 people supporting the three main missions of the institutions: education, research and innovation. The EPFL campus offers an exceptional working environment at the heart of a community of 16,000 people, including over 10,000 students and 3,500 researchers from 120 different countries. Software Engineer (100%) – Web and Data ScienceYour mission : The Distributed Information Systems Laboratory (LSIR) headed by Prof. Karl Aberer at EPFL in Lausanne is currently looking for a software engineer with experience in Web development and Data Science. If you are interested in being at the crossroad of Web technologies, Machine learning and Computational Journalism, this job is for you. You will join our research team. Our goal is to develop a web platform to collect news articles from all around the world and to analyze the media landscape in real-time. You will be in charge of the Web platform development and will help us integrating some of the algorithms developed by our researchers. Interest in the field of journalism is a plus. Main duties and responsibilities include : Participate in the development and optimization of the platform in close collaboration with research staff. Support research staff to the transition of research prototypes into production-grade software tools. Implement best practices for sustainable and maintainable software development. Your profile : Master’s degree in computer science or equivalent. Ideally, at least 2 years of experience in software development. Fluent English in speech and writing Skills required Experience in web application development (Full-stack). Expertise in Python. Experience in managing and processing large-scale datasets. Effective team player. Skills preferred Experience in front-end and with at least one Javascript framework (e.g., Node.js, React, or Angular). Experience with at least one Machine/Deep Learning framework (e.g., scikit-learn, PyTorch, or Tensorflow). Experience with at least one Natural Language Processing framework (e.g., SpaCy, NLTK). We offer : A young, dynamic and interdisciplinary team Collaboration with strategic external partners and with advanced scientists Start date : Immediatly Term of employment : Fixed-term (CDD) Duration : 1 year, renewable Contact : For additional information, please contact J. Rappaz: jeremie.rappaz@epfl.ch Remark : Only candidates who applied through EPFL website or our partner Jobup’s website will be considered.',\n", + " '[\"Research\", \"Writing\", \"Team Effectiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Integration\", \"Innovation\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Real Time Data\", \"Tooling\", \"Natural Language Processing\", \"Sustainability\", \"Computer Science\", \"Collections\", \"Good Agricultural Practices\", \"Web Application Development\", \"Scikit-learn (Machine Learning Library)\", \"Educational Research\", \"Scale (Map)\", \"Landscaping\", \"Python (Programming Language)\", \"Node.js\", \"Prototyping\", \"Maintainability\", \"E (Programming Language)\", \"Machining\", \"Web Development\", \"Dataset\", \"Software Engineering\", \"React.js\", \"Data Science\", \"SpaCy (NLP Software)\", \"Therapeutic Support Staff\", \"TensorFlow\", \"Deep Learning\", \"JavaScript Frameworks\", \"NLTK (NLP Analysis)\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Digital Learning Technology\", \"Software Development\", \"Algorithms\", \"Additives\", \"PyTorch (Machine Learning Library)\", \"Journalism\", \"Web Platforms\", \"Information Systems\"]',\n", + " \"['English', 'Czech', 'Akan', 'Wolof']\"],\n", + " ['42',\n", + " 'data science course developer and instructor',\n", + " 'Lausanne',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-2.31003404e-01 2.87446916e-01 4.94195759e-01 6.79244250e-02\\n5.64721525e-01 -1.02165639e-01 4.63781841e-02 4.17711139e-01\\n-7.86895026e-03 -1.81509703e-01 -1.69008210e-01 -1.56376541e-01\\n3.87024619e-02 9.05360281e-02 1.98915392e-01 4.50523078e-01\\n2.97633052e-01 -7.17932507e-02 -1.61911964e-01 3.28495532e-01\\n-1.14688650e-03 -7.13254437e-02 -6.84413910e-02 6.87404990e-01\\n4.78520870e-01 2.86109541e-02 -3.75124589e-02 1.10322885e-01\\n-1.47137582e-01 -2.81869173e-01 3.99212688e-01 3.04904729e-02\\n-1.61513850e-01 -2.38729075e-01 9.89310518e-02 2.52619147e-01\\n-2.68172622e-01 -4.40887362e-02 -6.21260703e-02 1.07455179e-01\\n-4.28696990e-01 -9.98428613e-02 -8.82593393e-02 -2.95048654e-02\\n-3.36095423e-01 -4.59531635e-01 1.23026274e-01 -1.03290364e-01\\n6.20834529e-04 3.56055982e-02 -5.44778466e-01 4.39761668e-01\\n-1.35730311e-01 -3.23014051e-01 3.48975986e-01 5.84638894e-01\\n7.79360309e-02 -5.13422489e-01 -3.21158171e-01 -3.31188142e-01\\n6.59009721e-03 5.93345836e-02 1.15059242e-01 -3.75322759e-01\\n4.96265441e-01 8.32695663e-02 -4.39235568e-02 3.97756755e-01\\n-7.78272510e-01 -2.35683382e-01 -3.41741920e-01 1.29232705e-01\\n-3.44521642e-01 2.37830169e-03 -3.91830802e-01 -2.45640427e-01\\n1.63414627e-02 3.84141773e-01 -6.83548227e-02 4.40262854e-02\\n-1.23958021e-01 2.64283866e-01 -1.14724994e-01 2.09460616e-01\\n3.27660590e-01 3.17478418e-01 2.95925975e-01 2.99240679e-01\\n-3.36664617e-01 3.62148643e-01 1.13312185e-01 -2.17115283e-01\\n1.24307819e-01 2.11683840e-01 4.31248993e-01 1.87687218e-01\\n1.50911048e-01 1.53862894e-01 -2.32318550e-01 1.65267810e-01\\n1.69952616e-01 -2.85433382e-01 1.50708668e-02 -2.91850828e-02\\n-6.49369285e-02 2.32493188e-02 4.04293649e-02 1.53170526e-01\\n-5.29954433e-01 4.79164362e-01 3.15189660e-02 -1.90203995e-01\\n-8.29056203e-02 -5.52888751e-01 -8.88060406e-02 1.47114713e-02\\n4.15727496e-02 2.62016594e-01 7.30043054e-02 3.13638538e-01\\n1.30986143e-02 -1.51458740e-01 2.40085617e-01 7.60027170e-01\\n-1.57077052e-02 1.18302830e-01 -1.73196539e-01 4.49522197e-01\\n4.53876257e-02 -3.54664773e-01 2.35938966e-01 1.83367893e-01\\n1.85337484e-01 -1.62932038e-01 -3.32049310e-01 2.12812752e-01\\n-1.30193219e-01 -3.13953817e-01 -3.05071682e-01 3.67583811e-01\\n-9.63264704e-02 -5.59503555e-01 5.49102426e-01 -1.52608782e-01\\n1.64712220e-01 -1.32861838e-01 -2.31593736e-02 3.95092741e-02\\n-1.56337053e-01 3.02273095e-01 1.50976658e-01 1.20659783e-01\\n-2.98055291e-01 -3.08659792e-01 -1.96123838e-01 2.65830427e-01\\n-3.97287637e-01 2.62330770e-01 -1.97699696e-01 -1.30176604e-01\\n2.88997024e-01 -6.02837205e-02 -4.32466149e-01 2.54582226e-01\\n-7.92892277e-02 -1.96949750e-01 -1.07964709e-01 3.17084491e-01\\n-1.42670602e-01 3.16312104e-01 -2.24624202e-03 -1.57518834e-01\\n4.68530953e-01 5.68536371e-02 1.38920397e-01 -1.02147304e-01\\n2.06417650e-01 -5.25677670e-03 2.32270628e-01 3.01019233e-02\\n-6.43658340e-01 4.09293622e-01 -1.09456345e-01 -2.97767371e-01\\n-4.08874303e-02 -1.50237292e-01 3.31880569e-01 -3.79536033e-01\\n4.65717167e-04 -1.45743906e-01 -3.56840432e-01 -3.50888908e-01\\n-2.01974750e-01 -1.14973783e-01 4.52212751e-01 -4.27399337e-01\\n9.45922360e-02 2.22599894e-01 -5.37195325e-01 -1.23387374e-01\\n2.97544003e-01 8.47045630e-02 6.77325875e-02 2.33672291e-01\\n-7.03923553e-02 -5.14224112e-01 -4.27636094e-02 -4.16508973e-01\\n-2.77256638e-01 7.71398544e-02 -3.21874738e-01 1.69385105e-01\\n1.93832219e-02 -1.50709487e-02 -9.84589159e-02 6.42232150e-02\\n-1.65622771e-01 4.97380123e-02 9.71125215e-02 -5.45912758e-02\\n2.30918497e-01 1.93136297e-02 -1.97713226e-01 4.39587384e-01\\n-2.11931899e-01 5.41410089e-01 1.45848036e-01 -8.10549021e-01\\n5.28569579e-01 2.77768672e-01 -4.51245718e-02 -2.41261035e-01\\n7.39533186e-01 -3.20774376e-01 -1.63611829e-01 1.56835362e-01\\n-4.16375458e-01 -3.16235721e-01 1.60609156e-01 -3.13360482e-01\\n-2.06963629e-01 6.12386465e-01 1.25713557e-01 2.32652530e-01\\n4.03849721e-01 -1.11201078e-01 -1.04214594e-01 2.36096784e-01\\n-2.40118563e-01 -2.02499196e-01 -4.21709120e-01 -7.41359293e-02\\n-7.04286620e-02 -4.49054301e-01 -3.17267209e-01 -4.42634791e-01\\n-2.91957378e-01 -3.96939814e-01 -6.42217696e-02 2.50998020e-01\\n2.07913980e-01 2.01460689e-01 1.54263079e-02 6.43064827e-02\\n-1.18345097e-01 -6.37192667e-01 -5.80030754e-02 -9.48312357e-02\\n2.17214629e-01 2.88922399e-01 1.09871648e-01 -2.80857608e-02\\n7.18850642e-02 5.33952177e-01 -4.43083733e-01 -3.52276981e-01\\n1.43731043e-01 -3.41168158e-02 -1.34080365e-01 -2.08319008e-01\\n1.28986448e-01 2.80030161e-01 -3.40612769e-01 9.30138007e-02\\n-1.54915869e-01 1.20617636e-01 3.02432775e-01 7.27178603e-02\\n-1.25599757e-01 -2.00926438e-01 -8.47024284e-03 3.65366161e-01\\n-4.12218034e-01 -3.61807942e-01 5.99732041e-01 7.80156255e-02\\n1.18444875e-01 4.18116376e-02 2.26424098e-01 -2.46811528e-02\\n-3.18066865e-01 -1.72062218e-01 1.90257668e-01 1.89887315e-01\\n1.10512070e-01 2.02621102e-01 -6.62798136e-02 -6.14492416e-01\\n-3.18385983e+00 -8.61737430e-02 -1.67051069e-02 -1.92723364e-01\\n2.39218771e-01 -1.29859582e-01 8.22698027e-02 -1.07965037e-01\\n-4.14822221e-01 -2.70293895e-02 -2.17805147e-01 -2.28288263e-01\\n8.19297358e-02 3.85564774e-01 2.39353925e-01 1.86116964e-01\\n8.12619403e-02 -3.68545115e-01 8.30439329e-02 4.98793602e-01\\n-9.36334580e-02 -7.01775908e-01 6.26224130e-02 6.69893250e-02\\n2.83887416e-01 3.23210418e-01 -5.26340306e-01 -2.38852426e-01\\n-3.12092900e-01 -2.80221283e-01 2.10756958e-01 -3.86381745e-01\\n-1.72962710e-01 4.48824584e-01 9.95500535e-02 4.05636504e-02\\n5.87340295e-02 -2.62101620e-01 -6.64476901e-02 -4.69732016e-01\\n-3.31405997e-02 -6.56451523e-01 -5.14652692e-02 -3.78488936e-02\\n6.86620593e-01 -2.11389363e-01 3.25228274e-01 5.51153086e-02\\n7.28892758e-02 1.39639884e-01 -2.61269584e-02 9.90545750e-02\\n-2.92601109e-01 -2.81413078e-01 -7.97173157e-02 -1.76129609e-01\\n5.94293475e-01 4.62888837e-01 -1.74475625e-01 -9.64998156e-02\\n2.02523828e-01 -2.70842910e-01 -5.52999735e-01 -4.25574601e-01\\n-2.45930806e-01 -1.98182940e-01 -7.88998723e-01 -5.10514379e-01\\n-5.61938658e-02 -1.18425049e-01 4.63105626e-02 4.43936169e-01\\n-3.89748812e-01 -1.80228293e-01 8.12264532e-03 -5.86206794e-01\\n2.84453034e-01 -1.44447714e-01 5.68003207e-02 -1.34094924e-01\\n-2.32928395e-01 -5.02791464e-01 7.84028023e-02 1.07144251e-01\\n-1.11958057e-01 -6.18842505e-02 1.16104342e-01 -2.17904970e-01\\n-3.98076981e-01 -6.96210086e-01 4.54196572e-01 1.61440179e-01\\n1.34510443e-01 1.35202885e-01 2.07859769e-01 7.85832107e-02\\n3.90064806e-01 2.54892502e-02 1.38828993e-01 -4.29984510e-01\\n2.47982219e-02 -3.06629743e-02 4.02588964e-01 -1.94618955e-01\\n-2.06989963e-02 6.78396598e-03 -2.51226455e-01 6.94036065e-03\\n4.17739093e-01 -9.44852158e-02 1.74487412e-01 -1.45302534e-01\\n1.39832675e-01 -2.54261374e-01 -1.97133183e-01 1.78750902e-01\\n-2.44119726e-02 6.37957454e-01 4.84285727e-02 -2.96111226e-01\\n-1.83989078e-01 4.06624973e-01 -1.03491440e-01 1.06324360e-01\\n-1.14361838e-01 1.07965115e-02 -1.13639295e-01 2.26097092e-01\\n6.32814690e-03 -2.29853064e-01 -1.67530030e-01 -1.03326030e-01\\n-1.67624801e-01 3.45799804e-01 3.06102186e-01 7.44168386e-02\\n-1.31888464e-01 -4.19050545e-01 6.11352101e-02 2.02490836e-01\\n2.27408141e-01 3.46232533e-01 2.17084378e-01 -2.62052476e-01\\n1.57809108e-01 2.41022632e-01 -2.24834099e-01 3.58709395e-01\\n-3.27698976e-01 1.40017599e-01 -4.59648341e-01 -3.53705525e-01\\n-1.59235373e-01 -3.21067572e-01 2.04159558e-01 3.19351524e-01\\n9.36602131e-02 -1.24226846e-01 1.36843532e-01 -5.41144371e-01\\n3.42686653e-01 2.55275778e-02 2.30696529e-01 7.25103468e-02\\n-1.55540816e-02 5.59400797e-01 -1.03322394e-01 -3.79271992e-02\\n-1.06634706e-01 4.86414880e-02 -2.10675210e-01 -3.90113890e-01\\n5.61406016e-02 -4.34974164e-01 -7.01125711e-02 3.43674898e-01\\n1.24531008e-01 -1.02742791e-01 -2.14574218e-01 1.47091269e-01\\n1.29260905e-02 -4.60658789e-01 -2.65020430e-01 1.03339208e-02\\n3.30072194e-01 2.72616327e-01 1.80884808e-01 -4.21812057e-01\\n-3.45458612e-02 1.31012034e-02 -3.48735079e-02 3.44659895e-01\\n8.04558992e-02 7.84783624e-03 -2.75114387e-01 -2.66711593e-01\\n4.26875234e-01 -7.12953135e-02 1.60423405e-02 1.33486569e-01\\n1.16424210e-01 -3.65866244e-01 -3.21741432e-01 1.17537603e-02\\n3.60114798e-02 -2.38814622e-01 3.28370482e-02 -2.55134702e-03\\n-4.12586592e-02 -1.92796066e-03 -5.01938939e-01 -1.73700452e-01\\n-2.62251377e-01 2.47539151e-02 -4.25445922e-02 -4.84438837e-01\\n-1.03477359e-01 -8.45399201e-02 -4.78408545e-01 3.24578911e-01\\n-7.54589364e-02 -4.08388488e-03 2.66001642e-01 6.85392320e-03\\n-2.75628924e-01 -1.97211534e-01 1.45273089e-01 1.68522149e-01\\n-3.61477971e-01 -1.93662807e-01 -1.88592784e-02 -9.13697183e-01\\n2.30780602e-01 7.34619796e-04 -1.30102113e-01 1.14888728e-01\\n9.00049880e-03 -6.27413511e-01 2.22236872e-01 -4.12425697e-01\\n-4.07999456e-02 -2.87149735e-02 -2.23103702e-01 -2.82468796e-01\\n6.39857650e-02 6.13548942e-02 -1.07640043e-01 4.35628623e-01\\n-4.00332510e-01 3.74657094e-01 8.19728971e-02 1.06386468e-02\\n-1.59918904e-01 -2.67904371e-01 5.36289960e-02 -2.39711642e-01\\n-3.67745280e-01 -1.97629690e-01 -1.61681235e-01 -1.51367560e-01\\n-1.62558127e-02 -3.10942918e-01 -1.54078826e-01 1.17232010e-01\\n2.54405946e-01 6.74248785e-02 -1.74289107e-01 -1.56861693e-01\\n9.81979668e-02 -3.45012128e-01 -5.12079746e-02 -2.54509568e-01\\n-1.13212653e-02 -2.04012573e-01 2.25431740e-01 5.33511117e-03\\n1.44774482e-01 -3.43914270e-01 4.25892055e-01 -3.54899168e-01\\n-3.81795228e-01 -3.53643000e-02 1.31507635e-01 -8.38504732e-02\\n2.15190947e-01 -4.23771977e-01 -5.41227385e-02 3.39055508e-01\\n-2.85973027e-02 -8.61832686e-03 2.21703887e-01 -2.31929719e-01\\n-2.18692869e-01 1.73777089e-01 -3.89788270e-01 1.94179967e-01\\n8.58984709e-01 2.69429833e-01 1.48479342e-01 1.45986468e-01\\n1.14385545e-01 3.34845066e-01 4.85574484e-01 -7.07897451e-03\\n-1.16384089e-01 3.96379948e-01 2.58972526e-01 -4.79876667e-01\\n-1.34310648e-01 6.23641536e-04 -1.68905511e-01 -2.82857746e-01\\n6.90891862e-01 2.92142093e-01 -2.81745821e-01 -4.34327185e-01\\n-1.75447688e-01 -2.91182548e-01 2.97718614e-01 3.33137065e-03\\n1.02814306e-02 -7.26098344e-02 4.79893923e-01 3.35310400e-03\\n1.25662729e-01 5.35032868e-01 -1.41155511e-01 -3.38911176e-01\\n8.04195926e-03 2.44172409e-01 4.27544042e-02 4.43400502e-01\\n-2.36339092e-01 4.19066727e-01 -7.80524313e-02 2.27583759e-03\\n1.07888654e-02 8.14306587e-02 3.95104021e-01 7.91760236e-02\\n2.06190109e-01 2.54388928e-01 4.74944651e-01 4.31850851e-01\\n1.58284724e-01 4.55922425e-01 2.55144954e-01 3.37174833e-02\\n3.56650561e-01 4.56913739e-01 3.33302408e-01 -3.67294401e-02\\n5.12746796e-02 3.48897129e-02 1.58293694e-01 1.08111128e-01\\n2.48586968e-01 2.12416649e-01 7.25527704e-02 9.13609803e-01\\n3.57241154e-01 3.72504264e-01 7.28808343e-01 -7.61793256e-01\\n-3.27026904e-01 5.32085150e-02 5.70715249e-01 -4.33401942e-01\\n1.28699243e-01 1.84380561e-01 -1.05722584e-01 2.93921590e-01\\n-5.10548830e-01 -2.21536309e-01 1.84942968e-04 2.96176821e-02\\n-1.20779239e-02 -9.69720483e-02 -1.42002270e-01 6.79766014e-02\\n-1.47011489e-01 -2.78763354e-01 -3.97299111e-01 -2.41472989e-01\\n-1.20626703e-01 -1.28143042e-01 -5.78667969e-02 7.42304139e-04\\n-2.61438608e-01 -1.76344335e-01 -1.73801705e-01 -1.02797128e-01\\n3.96288931e-01 -1.09615475e-01 -1.73398629e-01 -7.74025172e-02\\n4.07509685e-01 1.36152208e-01 6.84605718e-01 -6.96344748e-02\\n5.31440899e-02 -8.30524415e-02 -2.20333874e-01 5.32005429e-02\\n7.67487437e-02 1.05184637e-01 8.83577615e-02 3.42193663e-01\\n-2.16098249e-01 -2.27679521e-01 1.33761302e-01 2.99429834e-01\\n-3.77693832e-01 -9.13020372e-02 -2.64691301e-02 1.78979427e-01\\n-4.85778861e-02 1.48235008e-01 -2.30030924e-01 1.14248127e-01\\n-9.73087400e-02 -6.75089240e-01 2.55484819e-01 -4.51960899e-02\\n-1.62146091e-01 2.38817662e-01 2.58304209e-01 3.01353931e-01\\n-9.96685475e-02 -5.06766327e-02 -1.98560376e-02 1.02724440e-01\\n8.07037354e-02 3.17278266e-01 -1.60176188e-01 -3.63899529e-01\\n-2.77845025e-01 1.61062956e-01 -1.36460155e-01 1.73935249e-01\\n-1.15606241e-01 3.75124216e-01 8.20528418e-02 2.34001011e-01\\n3.11237812e-01 2.16130167e-03 -2.31036037e-01 -2.60388970e-01\\n-2.55011141e-01 -2.74485201e-01 -9.32161957e-02 2.63668932e-02\\n1.97524130e-01 -2.90817380e-01 -2.17477620e-01 -4.10406113e-01\\n-8.84455368e-02 -3.03146005e-01 -1.63367447e-02 2.11844333e-02]]',\n", + " 'The EPFL Extension School is looking for a Data Science Course Developer and Instructor to join our team. Here’s what you’ll get to do in this role: Develop data science and advanced analytics activities, including applications of mathematical modeling, statistical analysis and machine learning techniques (through exercises, public posts, capstone project guidance); Guide learners in acquiring hands-on data science experience using Python (NumPy, Pandas, Scipy, Scikit-Learn, Matplotlib, Seaborn); Apply technical expertise and leadership skills to design, develop, manage and grade learner projects using real-world large datasets and relational databases; Design and lead workshops and hackathons, and participate in conferences to promote the EPFL Extension School, data science and digital skills to a wide audience; Collaborate with partners from academia and the private sector to identify opportunities for development of new courses and workshops as well as learner course projects and capstone projects; Manage additional course development and other activities to support the growth of the EPFL Extension School The audience for the EPFL Extension School courses extends to a large, general public and the knowledge level of the learners will range from novice (no prior experience with Python and/or in data science) to intermediate (strong familiarity, possibly but not necessarily university or post-graduate level knowledge) to advanced (practitioners in the field, seeking to learn specific skills). The course developer should be able to adapt his/her approach and output accordingly. We expect a solid, demonstrable and practical background in all domains of data science relevant to beginner- and intermediate-level learners. In particular, we expect you to be have extensive hands-on experience with the most common tools, methods, and applications of all stages of the data science pipeline (i.e. data mining, data cleaning, data analysis, data visualisation), using Python. You will have advanced knowledge of Python and all relevant data science libraries. You will also have a proven ability to explain basic and difficult concepts in data/data science clearly and effectively to a wide audience. The ideal candidate also has experience with a variety of methods / models / tools relevant to data analytics, statistics and/or machine learning. Additional required qualifications: Background in computer science, data science, statistics, the physical sciences or other quantitative field (academic or equivalent professional experience); Previous experience with data science projects; Previous teaching/TA experience; Excellent communications and relationship management / « people » skills; Excellent written verbal presentation skills and the ability to communicate both to business and technical audiences, with a wide variety of skills / skill levels; Strong organisational skills; Good team player; Self-starter, capable of autonomous time management and work; Ability to rapidly and independently acquire new skills Fluent English, both written and spoken; Comfortable with developer tools: git, the command line, code editors, etc.; Previous experience in time series analysis, natural language processing, or advanced statistics a plus; Start-up experience a plus.',\n", + " '[\"Leadership\", \"Adaptability\", \"Professionalism\", \"Collaboration\", \"Self Starter\", \"Management\", \"Communications\", \"Presentations\", \"Teaching\", \"Time Management\", \"Relationship Management\"]',\n", + " '[\"Matplotlib\", \"Tooling\", \"Qualitative Data Analysis\", \"Natural Language Processing\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Machine Learning\", \"Physical Science\", \"Scikit-learn (Machine Learning Library)\", \"Staging\", \"Activism\", \"NumPy\", \"Apex Data Loader\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Levelling\", \"Course Development\", \"Library\", \"Apple Developer Tools\", \"Dataset\", \"Line Coding (Telecommunication)\", \"Pipelining\", \"Alexa Skills Kit\", \"Code Editor\", \"Data Science\", \"Time Series\", \"Cleaned Data\", \"Management Development\", \"Relational Databases\", \"Mathematical Modeling\", \"Additives\", \"Command-Line Interface\", \"Git Flow\", \"SciPy\", \"Digital Skills\", \"Pandas (Python Package)\", \"Seaborn\"]',\n", + " \"['English', 'Dutch', 'Volapük']\"],\n", + " ['38',\n", + " 'data scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.03343868e-01 2.30763748e-01 5.38993478e-01 4.34119478e-02\\n5.34979820e-01 -3.87130156e-02 -4.73924242e-02 2.99967110e-01\\n5.45151979e-02 -4.72891748e-01 -3.38513441e-02 -2.34363019e-01\\n-3.71357948e-02 1.22097448e-01 2.06475183e-01 5.27176976e-01\\n2.40563542e-01 1.57984551e-02 -9.60903391e-02 4.04276520e-01\\n1.24177679e-01 -1.25039771e-01 1.65932745e-01 7.62462139e-01\\n5.29685259e-01 -8.97750445e-03 -1.24191806e-01 -4.64070216e-02\\n-2.87370294e-01 -2.17502296e-01 5.09112000e-01 -1.38884196e-02\\n-1.59409046e-01 -2.75068492e-01 9.88993719e-02 1.18097454e-01\\n-2.40171224e-01 -1.03529440e-02 -4.62151542e-02 1.98938057e-01\\n-5.37210405e-01 -1.83637619e-01 -1.04602285e-01 -1.73897892e-02\\n-2.81807959e-01 -3.76029849e-01 -1.03991032e-02 -7.30309933e-02\\n4.46095839e-02 9.46762040e-02 -5.20715833e-01 3.41190279e-01\\n-1.78565487e-01 -2.86245823e-01 1.94672897e-01 7.81848311e-01\\n-6.73715547e-02 -4.83343661e-01 -5.43830872e-01 -3.55475992e-01\\n6.82389885e-02 -1.03316627e-01 1.20132297e-01 -3.13315928e-01\\n2.56372482e-01 -7.92228281e-02 -3.25507075e-02 2.17792124e-01\\n-7.56444931e-01 -1.46264017e-01 -2.32868388e-01 1.22063048e-01\\n-3.37095857e-01 6.25872314e-02 -3.81291270e-01 -9.43925902e-02\\n-9.64849815e-02 4.85821396e-01 8.87235813e-03 3.02395243e-02\\n-2.51084000e-01 2.62842774e-01 -1.56530038e-01 2.78546005e-01\\n1.88077927e-01 2.25880608e-01 2.82864809e-01 4.12221372e-01\\n-3.45938176e-01 3.23628724e-01 1.46459535e-01 -3.64160955e-01\\n2.53715008e-01 1.53682172e-01 4.33273703e-01 9.38322768e-03\\n1.52849674e-01 7.00151250e-02 -2.55638897e-01 2.77255595e-01\\n2.14355350e-01 -4.02089208e-01 1.07306987e-01 -1.08542912e-01\\n4.83603477e-02 -3.14614624e-02 8.09155032e-02 1.45625159e-01\\n-3.34811091e-01 3.45012963e-01 9.47378501e-02 -1.91496909e-01\\n-1.03878319e-01 -5.78423202e-01 2.09226320e-03 6.21747449e-02\\n1.69600055e-01 3.47162873e-01 1.45100474e-01 1.73138872e-01\\n1.79351330e-01 -3.73074263e-02 2.26460546e-01 7.75896430e-01\\n-5.87454215e-02 1.09416865e-01 -2.26481706e-01 2.88228422e-01\\n1.37839764e-01 -3.48483711e-01 2.24569038e-01 1.06233917e-01\\n-9.72716063e-02 -1.62953645e-01 -2.27057829e-01 2.29367316e-01\\n-1.48686722e-01 -3.13442111e-01 -2.09349230e-01 2.24907875e-01\\n1.07625842e-01 -3.90913725e-01 6.48622394e-01 -2.25769859e-02\\n1.28989398e-01 -1.60373926e-01 -1.19314983e-01 -1.03887036e-01\\n-6.55472353e-02 2.31716350e-01 9.95418355e-02 1.43068016e-01\\n-2.36593410e-01 -2.74164379e-01 -1.92878976e-01 9.17827189e-02\\n-5.07121801e-01 1.41971961e-01 -1.28286719e-01 -5.80766685e-02\\n2.16732055e-01 1.30471557e-01 -3.74847740e-01 1.70343876e-01\\n-1.88910753e-01 -1.12336844e-01 4.73561250e-02 3.87542367e-01\\n-3.26294988e-01 2.43841320e-01 6.55612256e-03 -1.10927440e-01\\n6.92139864e-01 2.11853623e-01 2.66393989e-01 2.04083491e-02\\n2.68992305e-01 -7.00954795e-02 8.40476602e-02 1.90958872e-01\\n-5.65881014e-01 2.81723291e-01 -1.62538618e-01 -2.79493868e-01\\n1.63718700e-01 -9.16426331e-02 4.11607772e-01 -3.17451298e-01\\n-7.04959966e-03 -1.48183599e-01 -2.82437176e-01 -3.07242721e-01\\n-1.23239353e-01 -4.47026864e-02 3.73835117e-01 -4.41698372e-01\\n-1.04132816e-02 2.62968272e-01 -4.99885499e-01 -1.78865910e-01\\n1.24962807e-01 1.68164492e-01 2.20379427e-01 1.63153321e-01\\n-1.49005428e-01 -5.92436850e-01 1.52511112e-02 -4.19609368e-01\\n-2.74719924e-01 5.10507487e-02 -3.20439607e-01 1.53898492e-01\\n2.49173902e-02 1.21990308e-01 -9.90692154e-02 7.39639346e-03\\n-1.45518035e-01 -2.58275270e-02 5.90835735e-02 8.38483572e-02\\n3.89136314e-01 8.13181847e-02 -4.09939945e-01 4.84633327e-01\\n-2.12312192e-01 6.25264525e-01 1.24346152e-01 -9.80473638e-01\\n6.03938639e-01 2.57790625e-01 -7.54845962e-02 -2.96940148e-01\\n4.95682538e-01 -3.28293592e-01 -2.50406321e-02 1.40372217e-01\\n-3.13391507e-01 -2.89684147e-01 2.86162943e-01 -2.45242536e-01\\n-2.09089339e-01 4.86634016e-01 1.18346840e-01 1.36726320e-01\\n2.51162916e-01 -2.08349466e-01 -1.09957770e-01 -1.47282276e-02\\n-6.36356100e-02 -1.83957636e-01 -6.79240525e-01 1.62515659e-02\\n-2.06544250e-01 -4.28036094e-01 -8.14266726e-02 -3.42492938e-01\\n-1.99275434e-01 -4.22752440e-01 -7.85707012e-02 1.07396990e-01\\n2.85738617e-01 4.50169966e-02 -6.88309968e-02 -1.73347015e-02\\n-9.23098624e-03 -6.72113478e-01 -9.80941206e-02 1.58549115e-01\\n4.23470438e-01 2.36782342e-01 1.86994627e-01 -4.48385850e-02\\n1.52598917e-01 5.64646721e-01 -2.90545642e-01 -2.69818246e-01\\n2.44540215e-01 7.58445039e-02 -4.31387424e-02 -1.99641079e-01\\n1.43902540e-01 1.33284569e-01 -2.58983791e-01 1.82899870e-02\\n-2.67209746e-02 -1.08145542e-01 4.16582584e-01 -6.53029829e-02\\n-1.60018533e-01 -1.34350806e-01 -8.05444196e-02 1.10381968e-01\\n-5.20404458e-01 -2.84330100e-01 5.72608829e-01 1.55429363e-01\\n1.86988324e-01 1.18153542e-01 1.17237493e-01 -1.54355513e-02\\n-2.30902433e-01 -2.05100387e-01 2.86329567e-01 1.00271851e-01\\n1.55057907e-01 1.26079127e-01 1.06383944e-02 -7.20139861e-01\\n-3.44800234e+00 -1.82609260e-01 4.30243351e-02 -1.96099296e-01\\n1.95774332e-01 -1.48200765e-01 5.49846441e-02 -2.05202941e-02\\n-3.28661978e-01 -6.08064514e-03 -1.72436684e-01 -1.58486858e-01\\n3.62683386e-02 1.83919847e-01 1.77659392e-01 2.68530309e-01\\n1.29694968e-01 -2.15548575e-01 -5.68717271e-02 4.37355548e-01\\n-1.49075866e-01 -6.16673946e-01 1.91888273e-01 1.10642478e-01\\n2.67340422e-01 2.81551063e-01 -4.76889908e-01 -5.68605810e-02\\n-2.46072859e-01 -1.89359590e-01 8.92390236e-02 -2.98651874e-01\\n-3.07158023e-01 2.21285135e-01 1.28742963e-01 -9.79780592e-03\\n6.51369542e-02 -4.29293752e-01 -1.93411380e-01 -3.96880031e-01\\n7.00733140e-02 -6.37853026e-01 -5.56009859e-02 -2.32573241e-01\\n6.48625255e-01 -2.07555249e-01 2.29414165e-01 9.05872881e-03\\n1.34549215e-01 4.07421812e-02 1.09364912e-02 4.42888215e-03\\n-1.85166627e-01 -2.84320414e-01 -5.82451448e-02 -1.26468763e-01\\n5.89282155e-01 3.98808688e-01 -6.92917481e-02 -4.39435914e-02\\n1.47232845e-01 -2.30870485e-01 -5.42497396e-01 -2.31308341e-01\\n-1.60647899e-01 -1.15518063e-01 -5.98265529e-01 -3.24230373e-01\\n-1.47600383e-01 -2.45622486e-01 -1.31393686e-01 6.13225281e-01\\n-2.78479934e-01 -2.55971283e-01 -1.35177180e-01 -4.87251073e-01\\n2.98640102e-01 -2.43487999e-01 1.75515171e-02 -2.28454083e-01\\n-3.08400631e-01 -4.75210547e-01 1.01907417e-01 5.80981225e-02\\n-1.68490678e-01 -1.61768049e-01 6.26888312e-03 -1.62818938e-01\\n-3.71261150e-01 -5.65067768e-01 3.76451552e-01 5.54502234e-02\\n2.87895203e-01 6.31127357e-02 4.25403416e-01 -8.10361207e-02\\n3.75872374e-01 -3.48828770e-02 -1.11873597e-02 -3.89423788e-01\\n1.18140824e-01 9.08161998e-02 5.27094364e-01 -2.68927664e-01\\n1.90385170e-02 -3.35797668e-05 -2.53355294e-01 1.25018701e-01\\n4.00337219e-01 -5.45716584e-02 7.79160485e-02 -2.56094635e-02\\n2.34904900e-01 -2.86127806e-01 -7.24384040e-02 8.38469863e-02\\n5.98106235e-02 7.43247092e-01 -6.52511939e-02 -3.21561068e-01\\n-1.81491941e-01 3.96404177e-01 -7.91395307e-02 1.20543212e-01\\n-2.03741252e-01 5.26347756e-02 -2.22391814e-01 3.08321863e-01\\n1.28396992e-02 -2.62069553e-01 -1.93990469e-01 -1.79392695e-01\\n-1.71351105e-01 3.48474145e-01 2.73936212e-01 7.98977241e-02\\n-4.12340909e-02 -3.73255998e-01 -9.65191200e-02 2.32484221e-01\\n2.36619368e-01 4.33709383e-01 1.66129589e-01 -2.33165488e-01\\n-6.02655485e-02 3.04455936e-01 -3.14703584e-01 2.45226040e-01\\n-2.79060721e-01 1.51490450e-01 -5.53827107e-01 -3.14107418e-01\\n-2.38843292e-01 -4.02781725e-01 2.66242951e-01 4.66194034e-01\\n2.34550923e-01 -3.20919603e-02 3.68824936e-02 -4.01094377e-01\\n2.46412605e-01 1.23772793e-01 1.39846355e-01 1.02486245e-01\\n-5.85739538e-02 6.21647954e-01 -3.02647129e-02 -6.69649988e-02\\n6.69175200e-03 -2.60228328e-02 -2.16520414e-01 -2.27943569e-01\\n1.20660909e-01 -4.60824877e-01 -2.15061098e-01 3.52002770e-01\\n1.62245959e-01 -2.07402229e-01 -2.13199899e-01 2.96611488e-01\\n1.54158995e-02 -3.48368824e-01 -1.56249791e-01 3.02210450e-02\\n3.39117289e-01 1.60919815e-01 4.06444311e-01 -4.95779157e-01\\n4.41726949e-03 -6.86247349e-02 -6.38718531e-02 3.20025444e-01\\n6.74214959e-02 1.46527588e-01 -2.14669406e-01 -1.43222302e-01\\n5.86831510e-01 -8.58149454e-02 -1.09388560e-01 1.20669849e-01\\n6.21372685e-02 -2.31922582e-01 -4.20078635e-01 1.10732280e-01\\n2.08665319e-02 -2.74237394e-01 -8.93482864e-02 1.23018801e-01\\n1.33224249e-01 7.95503706e-03 -6.00904703e-01 -1.77618414e-01\\n-2.46541262e-01 -1.24588655e-02 6.86416253e-02 -5.38020313e-01\\n-1.23260379e-01 -1.48033977e-01 -5.83821714e-01 1.96651459e-01\\n-4.02568281e-02 -1.76495910e-01 1.91098973e-01 -1.31880408e-02\\n-1.61894828e-01 -1.07534558e-01 3.25636789e-02 2.03372359e-01\\n-3.55641127e-01 -2.94837594e-01 4.73181531e-02 -1.00536239e+00\\n1.54831737e-01 2.31558830e-01 -2.15233818e-01 1.73128635e-01\\n-1.30525738e-01 -7.24637866e-01 2.07911938e-01 -3.98372769e-01\\n-1.35630697e-01 -1.97347388e-01 -2.23729491e-01 -3.53678495e-01\\n1.29845485e-01 2.77230814e-02 -3.50977927e-01 3.65032017e-01\\n-2.00580746e-01 3.48097801e-01 -6.32193238e-02 3.48044410e-02\\n8.07574913e-02 -2.04395056e-01 1.29091650e-01 -1.71415567e-01\\n-3.61894071e-01 -2.25210398e-01 -3.50763321e-01 -3.31488639e-01\\n-4.83489297e-02 -3.56270432e-01 -1.22437119e-01 1.23067573e-01\\n3.67484093e-01 1.23033345e-01 -1.08701333e-01 -2.82381922e-01\\n5.29918894e-02 -4.41964149e-01 2.59627029e-03 -8.37394819e-02\\n-1.12422422e-01 -1.03708744e-01 2.01126456e-01 1.30498931e-01\\n2.22310692e-01 -3.30033958e-01 5.16164184e-01 -3.22866023e-01\\n-2.88791299e-01 -1.13699548e-01 7.13948980e-02 -2.86400691e-02\\n3.49663764e-01 -3.80113661e-01 -1.22857526e-01 3.57985884e-01\\n5.56704886e-02 1.17764287e-01 2.28677183e-01 -1.25039518e-01\\n-1.44594312e-01 2.08710432e-01 -3.47990990e-01 1.46066338e-01\\n8.58892322e-01 1.94254965e-01 4.54286672e-03 1.63686037e-01\\n1.82376876e-01 2.70020843e-01 4.68955785e-01 -6.62302226e-02\\n-1.05469622e-01 2.50506431e-01 2.16680951e-03 -5.09775877e-01\\n4.29906361e-02 -9.70313475e-02 -1.44155771e-01 -4.28741783e-01\\n6.95365906e-01 2.81730115e-01 -3.87791812e-01 -2.00902045e-01\\n-1.25765711e-01 -1.32133171e-01 3.21253628e-01 1.71411373e-02\\n-4.07167748e-02 -1.88163556e-02 4.65991288e-01 -1.06553853e-01\\n2.35197514e-01 5.22611737e-01 -7.12134838e-02 -1.95413053e-01\\n-5.78605980e-02 2.71702111e-01 1.15357876e-01 5.55390179e-01\\n-2.26667404e-01 3.05121839e-01 -2.77492907e-02 1.14857983e-02\\n-1.45579338e-01 4.80127484e-02 2.20011339e-01 1.41912729e-01\\n1.88839644e-01 1.57106966e-01 4.43282783e-01 4.10943627e-01\\n2.02149630e-01 3.39008719e-01 3.82430017e-01 2.48419587e-03\\n3.67669463e-01 5.26082754e-01 3.51263911e-01 1.82386249e-01\\n7.02510402e-02 1.87211633e-01 1.64228886e-01 -2.75378507e-02\\n3.37155372e-01 3.99722606e-01 1.72077432e-01 7.55692363e-01\\n2.10361362e-01 3.92354727e-01 7.19956040e-01 -6.97514713e-01\\n-3.52785289e-01 5.96530624e-02 5.91005683e-01 -3.72862190e-01\\n6.57504946e-02 2.13819697e-01 -1.45916030e-01 2.33916909e-01\\n-6.23194933e-01 -2.83223033e-01 -7.62025416e-02 8.73444602e-02\\n-7.09280074e-02 -2.69449949e-01 -2.40030959e-01 2.17971206e-01\\n-3.53029743e-02 -1.22371718e-01 -3.37026238e-01 -1.70222163e-01\\n-1.27067745e-01 -6.04245439e-02 -7.36331865e-02 -2.87338793e-02\\n-1.31561309e-01 -2.19521314e-01 -7.96688497e-02 -1.25363886e-01\\n3.39101136e-01 -1.01144299e-01 -9.03323740e-02 -8.32718685e-02\\n2.82446116e-01 1.32077485e-01 4.87239152e-01 -7.30038062e-03\\n1.78945690e-01 -2.17060119e-01 -1.62933826e-01 1.06201150e-01\\n2.20534787e-01 -1.87682062e-02 1.15030715e-02 3.27968180e-01\\n-2.92840838e-01 -2.74773717e-01 1.22440085e-01 1.99164167e-01\\n-3.87138903e-01 -2.13555619e-02 -9.11058486e-02 1.97499231e-01\\n4.55599390e-02 2.95288444e-01 -2.16878295e-01 -2.00727303e-02\\n-8.38285685e-02 -5.03587782e-01 2.03642949e-01 2.16289982e-03\\n-2.94709623e-01 -1.47831887e-02 3.58099073e-01 1.31506920e-01\\n-3.29994977e-01 -2.94567980e-02 -1.17542207e-01 6.90163970e-02\\n8.11603814e-02 2.86071718e-01 -1.23395130e-01 -3.46197993e-01\\n-2.84858912e-01 1.57085583e-01 -2.50125080e-02 1.50009379e-01\\n4.36485000e-02 4.55555677e-01 -2.82361582e-02 1.96897149e-01\\n3.77941638e-01 1.08558245e-01 -2.24067509e-01 -2.88678646e-01\\n-2.03996092e-01 -1.60455674e-01 -1.09643020e-01 -8.79208148e-02\\n8.09622258e-02 -3.78949165e-01 -9.10735503e-02 -1.95933908e-01\\n-1.41849011e-01 -4.18155074e-01 7.02059418e-02 -8.77872258e-02]]',\n", + " 'Are you curious, confident and would you like to be part of creating a new data platform from start? Furthermore, do you want to work with world’s biggest Language Company in the world? Then please read on! We are looking for a Data Scientist to be based in our headquarters in Zurich, Switzerland. EF International Language Campuses is building a new data platform and is looking for new T-profiles, combining general and in-depth technology skills, to join the team to build the future of data processing at EF. The role Work with large complex data sets to solve difficult, non-routine analysis problems applying advanced analytical methods as needed Conduct end-to-end analysis including data gathering and requirements specification, processing, analysis, ongoing deliverables and presentations Make business recommendations with effective presentations of findings at multiple levels of stakeholders through use of visual displays of quantitative information Collaborate with business customers to understand needs, recommend strategy enhancements and deploy predictive analytics across multiple platforms Develop, consult on, deploy and analyse testing strategies to leverage learnings for future business endeavours Present technical issues to non-technical audiences You will work in a highly international company with development offices in Zurich, London, Shanghai, Boston and Bangalore Your profile You are curious and want to stay on top of new technologies You have an entrepreneurial drive and focus on progress and results You are a team-player and have an agile mind-set You are hands-on with an attention to details and quality Requirements Bachelor / Master / PhD degree in Math, Statistics, Physics, CS, or other quantitative disciplines Experience articulating business questions, using mathematical techniques to arrive at an answer using available data, and translating technical/analysis results into business recommendations Extensive experience with programming/analytical tools (Python, R, Julia, etc.) Experience cleaning and processing data (structured, unstructured) Experience with data visualization tools (Qlik, PowerBI, D3, etc.) Experience with data querying tools (SQL, DB2, Hive, Pig etc.) Excellent communication (written and verbal), presentation, and facilitation skills Ability to manage multiple goals and deadlines Fluency English About Us EF Education First is a global education company focusing on language, academic, cultural exchange, and educational travel programs. We are 52,000 staff, faculty and teachers, working in over 612 offices and schools across 52 countries, and having a global presence in 116 countries. While we continue to grow, we strive to stay small so as to ensure agility, smart thinking and a fun place to work. For the past 53 years, EF has grown to include a range of programs that give students of all ages the freedom and confidence to explore the world through language, travel and education. EF is committed to safeguarding and promoting the welfare of children and young adults and expects all staff and volunteers to share this commitment. References will be followed up and will ask specifically whether there is any reason that the applicant should not be engaged in situations where they have responsibility for, or substantial access to, persons under 18. Upon interview all gaps in CVs must be explained satisfactorily and proof of identity and, where applicable, qualifications will be required. Appropriate suitability checks and Garda Vetting will be conducted prior to confirmation of appointment.',\n", + " '[\"Collaboration\", \"Management\", \"Articulation\", \"Presentations\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Julia (Programming Language)\", \"Tooling\", \"Agility\", \"Programming (Music)\", \"Analytics\", \"Scholastic READ 180\", \"Visualization\", \"Requirements Specifications\", \"Python (Programming Language)\", \"Levelling\", \"D3.js\", \"Test Strategy\", \"Process Analysis\", \"DB2 SQL\", \"Technical Translation\", \"Data Visualization\", \"Apache Hive\", \"Personalization\", \"Cultural Exchange\", \"R (Programming Language)\", \"Young Adult Literature\", \"Electronic Data Processing\", \"Statistical Physics\", \"Technical Analysis\", \"Data Structures\", \"Predictive Analytics\", \"Data Management Platforms\", \"Data Processing\"]',\n", + " \"['English', 'Tigrinya']\"],\n", + " ['75',\n", + " 'backend software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.96146512e-01 2.25685984e-01 3.81386131e-01 6.31073164e-03\\n5.44051468e-01 -2.66359210e-01 9.79871210e-03 3.68729413e-01\\n-2.57958770e-01 -3.63048911e-01 -4.27846722e-02 -2.44650826e-01\\n-1.89992860e-01 7.98621103e-02 1.31351292e-01 3.88559461e-01\\n2.86206812e-01 1.14335604e-01 -2.94916004e-01 3.70017171e-01\\n5.59200607e-02 -2.97922634e-06 -3.94451544e-02 7.66554117e-01\\n3.45010400e-01 -1.57250445e-02 -1.05865642e-01 4.27433215e-02\\n-2.50761896e-01 -2.51972258e-01 3.91722500e-01 9.16388854e-02\\n-6.79150671e-02 -2.71345764e-01 7.47358724e-02 2.99406657e-03\\n-1.73540786e-01 3.67118083e-02 -3.28949690e-02 1.02406882e-01\\n-3.89293969e-01 -3.86299521e-01 -1.31230317e-02 8.90230536e-02\\n-2.07433581e-01 -2.27711007e-01 6.55482039e-02 -6.68610036e-02\\n9.57257301e-02 -3.67352106e-02 -5.76359332e-01 3.58721346e-01\\n-3.02708954e-01 -2.23158300e-01 3.07890981e-01 4.61729437e-01\\n8.36970378e-03 -5.25690913e-01 -3.13287854e-01 -2.96148419e-01\\n-6.46865815e-02 -2.27823809e-01 6.36532456e-02 -2.82713115e-01\\n2.77987897e-01 -6.69266284e-02 1.76805593e-02 3.48076642e-01\\n-8.05531442e-01 -1.11406527e-01 -2.55701691e-01 -1.67581066e-02\\n-3.27168614e-01 -1.13382816e-01 -2.97376007e-01 -8.67974013e-02\\n-2.49279151e-03 2.98043609e-01 2.22778530e-03 4.50644307e-02\\n-1.84759200e-01 3.27564687e-01 -8.17147568e-02 1.87909037e-01\\n2.71823198e-01 1.37041613e-01 1.96846083e-01 3.55800182e-01\\n-3.99252176e-01 4.74914730e-01 6.22444972e-02 -2.50799268e-01\\n2.52674788e-01 1.17200777e-01 5.10781288e-01 7.12232888e-02\\n-1.94422137e-02 1.98808089e-01 -2.40859404e-01 1.83766812e-01\\n1.71783924e-01 -3.66276562e-01 7.25136651e-03 -1.45601839e-01\\n-1.04529589e-01 6.37285784e-02 9.36795250e-02 3.36586028e-01\\n-2.25237370e-01 4.13727045e-01 2.51422554e-01 -1.96289316e-01\\n-6.28880039e-02 -4.50352252e-01 -1.46044105e-01 -5.16299391e-03\\n-1.47846431e-01 1.73527420e-01 3.10440302e-01 1.35391027e-01\\n2.32913375e-01 5.63149787e-02 2.12322995e-01 1.00176609e+00\\n-5.54031990e-02 7.29359314e-02 -2.05411926e-01 2.46166497e-01\\n2.39893049e-01 -2.51254976e-01 1.67283967e-01 3.81592065e-01\\n1.24794915e-01 -2.59980410e-02 -2.27838188e-01 4.07280207e-01\\n-2.19630346e-01 9.61505715e-03 -4.11413938e-01 1.15846552e-01\\n-1.34364828e-01 -4.82871950e-01 6.40055299e-01 2.36462861e-01\\n2.59038001e-01 1.04006231e-01 5.25620468e-02 -1.34524792e-01\\n-5.92462122e-02 2.71504462e-01 5.36241904e-02 2.06059739e-01\\n-3.08684468e-01 -1.45982787e-01 -1.20966882e-01 2.70433098e-01\\n-2.19325796e-01 6.27185628e-02 -9.34070647e-02 -9.61261839e-02\\n2.77041972e-01 1.88584568e-03 -3.76766801e-01 1.64261207e-01\\n-1.43390864e-01 -2.16381237e-01 -1.38773814e-01 3.73514354e-01\\n-2.87047643e-02 2.76391625e-01 3.41875032e-02 -5.18735051e-02\\n5.54426432e-01 1.27705857e-01 8.06537420e-02 -5.00559509e-02\\n2.73152024e-01 -1.25188500e-01 2.98683941e-01 1.25220373e-01\\n-6.48123622e-01 2.48765215e-01 4.50515142e-03 -1.50381878e-01\\n4.97784019e-02 1.08504236e-01 2.25529596e-01 -3.15021932e-01\\n-1.19738221e-01 -1.59779355e-01 -3.98117065e-01 -2.34913692e-01\\n-3.39261681e-01 1.02690987e-01 3.87645006e-01 -2.83121347e-01\\n-2.73953099e-02 3.61904688e-02 -4.11414802e-01 -1.12460248e-01\\n1.21409439e-01 2.20011428e-01 -7.40451680e-04 9.41236019e-02\\n-5.17403968e-02 -6.24350309e-01 -3.07392571e-02 -5.67003191e-01\\n-6.13892853e-01 6.51752353e-02 -3.42500508e-01 2.11026967e-01\\n-2.21276321e-02 6.84335306e-02 -1.22847997e-01 2.22263083e-01\\n-2.89490104e-01 1.62976068e-02 1.55959263e-01 1.54940382e-01\\n1.63378343e-01 -5.18211611e-02 -5.00666440e-01 4.99712616e-01\\n-2.51869828e-01 5.72678685e-01 2.04769090e-01 -7.59468317e-01\\n6.22770548e-01 2.10076243e-01 -1.54065583e-02 -4.32466447e-01\\n4.36771423e-01 -3.70565772e-01 -5.43131083e-02 6.75043166e-02\\n-2.75733978e-01 -2.70287097e-01 3.29187512e-01 -2.45832354e-01\\n-3.28681290e-01 5.30238688e-01 1.78291693e-01 4.64592949e-02\\n2.40959570e-01 -3.21133345e-01 -7.51918852e-02 1.33497074e-01\\n-6.52342066e-02 -1.81331709e-01 -3.61952662e-01 1.13359563e-01\\n-1.38990909e-01 -5.04113317e-01 -1.07806183e-01 -4.39256847e-01\\n-1.59562483e-01 -3.12495440e-01 -2.96111971e-01 4.28421110e-01\\n1.62175849e-01 1.31733015e-01 9.25084502e-02 -7.87500571e-03\\n-1.09921664e-01 -7.13658750e-01 -9.95457917e-02 8.01472589e-02\\n5.26105702e-01 1.61516771e-01 2.26015765e-02 -5.90045042e-02\\n-1.09903337e-02 4.90845084e-01 -3.22321862e-01 -4.08838034e-01\\n7.56429657e-02 2.12865382e-01 3.95328552e-02 -1.46358341e-01\\n5.99788390e-02 4.18535233e-01 -2.21491531e-01 8.05787966e-02\\n-1.20871782e-01 -1.07351147e-01 3.83747309e-01 1.01165185e-02\\n-3.32630038e-01 -2.19757631e-01 -6.85275868e-02 1.28504485e-01\\n-5.46890259e-01 -1.45852864e-01 5.15477300e-01 2.78362602e-01\\n2.34046727e-01 2.41533622e-01 2.57811844e-01 -1.21555634e-01\\n-1.60838127e-01 -3.27941120e-01 1.52987689e-01 1.83056548e-01\\n1.36702657e-02 1.16857871e-01 -1.61256477e-01 -5.82535803e-01\\n-3.53865886e+00 -5.25070764e-02 2.33940259e-01 -2.33232975e-01\\n2.22787201e-01 1.93664432e-02 -2.11348711e-03 -2.77434513e-02\\n-3.89675677e-01 2.73402091e-02 -2.74592936e-01 -1.61136702e-01\\n7.54935816e-02 2.99658746e-01 7.66612887e-02 1.68919444e-01\\n1.46122158e-01 -2.01155603e-01 -1.75282300e-01 2.98287570e-01\\n-1.26963273e-01 -6.89685702e-01 1.76773161e-01 2.60658702e-03\\n1.78158760e-01 2.33466223e-01 -3.10038984e-01 -5.44228815e-02\\n-1.00545384e-01 -2.86617875e-01 -1.20354727e-01 -1.95067689e-01\\n-2.18074247e-01 2.56595016e-01 1.47746578e-01 -7.74799958e-02\\n-4.11737561e-02 -2.97930509e-01 -1.16281152e-01 -4.83958364e-01\\n1.30276039e-01 -6.21900797e-01 -1.19844405e-02 -8.96313488e-02\\n7.17292249e-01 -2.75509953e-01 2.14505062e-01 -2.74955179e-03\\n1.12558760e-01 1.26052022e-01 -3.29398587e-02 -1.33748259e-02\\n-1.94945335e-01 -2.86627859e-01 1.36436755e-02 -1.69811055e-01\\n4.45547312e-01 4.89085972e-01 -2.04414487e-01 2.03414517e-03\\n1.39567658e-01 -3.45959991e-01 -2.43075639e-01 -2.90258735e-01\\n-1.47194445e-01 -2.39982158e-01 -6.97500825e-01 -4.12387908e-01\\n-1.01254918e-01 -9.95859951e-02 -2.19648242e-01 6.51868820e-01\\n-2.63530791e-01 -5.37128031e-01 5.46800494e-02 -5.96572042e-01\\n7.01377019e-02 -2.20030382e-01 7.46550113e-02 -1.37784168e-01\\n-2.57477760e-01 -5.15490830e-01 2.98223142e-02 -9.03870165e-02\\n-1.69783309e-01 -1.73673272e-01 -9.51103419e-02 -2.12532490e-01\\n-2.91603178e-01 -3.11852276e-01 3.59889954e-01 1.92676261e-01\\n2.99908549e-01 1.62064180e-01 3.21541339e-01 1.10873409e-01\\n1.86296135e-01 -3.91465910e-02 7.89720044e-02 -2.77826399e-01\\n1.43261954e-01 -1.19530253e-01 6.85186267e-01 -2.48210818e-01\\n-6.71043480e-03 2.73477644e-01 -1.67891324e-01 -1.31178796e-01\\n4.39723670e-01 2.57814024e-02 4.08895500e-03 -1.92016259e-01\\n3.92300397e-01 -5.71952701e-01 -2.36913264e-01 1.18917905e-01\\n1.06494457e-01 7.50011206e-01 6.28736243e-02 -3.96635413e-01\\n-3.91471565e-01 5.61642945e-01 -1.34723172e-01 -8.79992545e-02\\n-1.52301759e-01 1.86250597e-01 -1.59833223e-01 1.28825203e-01\\n1.33469969e-01 -2.56227314e-01 -1.27534226e-01 -7.03896657e-02\\n-6.91740960e-02 1.35372534e-01 2.89200723e-01 9.54434276e-02\\n-6.79581165e-02 -3.19717824e-01 -2.44971946e-01 1.60366073e-01\\n1.46037072e-01 3.29782337e-01 1.54318437e-01 -2.69396722e-01\\n-1.55062735e-01 2.95448422e-01 -1.22497998e-01 1.88510805e-01\\n-1.00630008e-01 4.53787856e-02 -4.60060000e-01 -1.58033416e-01\\n-2.07865193e-01 -3.84061694e-01 1.03902020e-01 3.87394041e-01\\n8.14171210e-02 -1.85729917e-02 1.08406998e-01 -4.39084888e-01\\n4.03984547e-01 1.12623937e-01 2.16721550e-01 8.09297040e-02\\n4.04496081e-02 3.99033725e-01 -6.57609403e-02 -9.03673097e-02\\n-1.71036452e-01 2.01591365e-02 -2.70080090e-01 -1.84027478e-01\\n5.80558591e-02 -3.99814934e-01 -9.87318978e-02 4.24282700e-01\\n1.16935588e-01 -2.35709593e-01 -2.62416065e-01 1.97747558e-01\\n1.11613661e-01 -2.33696416e-01 -1.56210333e-01 -1.32447407e-01\\n2.14814186e-01 4.21500988e-02 2.73926854e-01 -3.72478634e-01\\n-1.63674355e-01 4.51076822e-03 -9.82293263e-02 4.54779059e-01\\n1.24669820e-02 9.87216681e-02 -2.08241060e-01 -1.51800901e-01\\n3.84840637e-01 -1.35899052e-01 -4.86892499e-02 -4.65612710e-02\\n7.25345984e-02 -1.06761351e-01 -4.60397601e-01 2.46398039e-02\\n-3.00988816e-02 -7.92926401e-02 6.58417046e-02 -5.11334501e-02\\n1.80184379e-01 8.64026025e-02 -4.99750733e-01 -3.37446243e-01\\n-3.93075258e-01 -1.58610314e-01 1.84359282e-01 -2.58413464e-01\\n6.51117507e-03 -1.44290239e-01 -6.21417046e-01 2.01031253e-01\\n-3.91525120e-01 4.89966944e-02 1.47439882e-01 9.22599509e-02\\n-3.18078399e-01 8.34538136e-03 8.11690316e-02 1.94992110e-01\\n-1.56328559e-01 -1.06334642e-01 -6.84863031e-02 -1.00273967e+00\\n2.39501759e-01 -2.39953492e-02 -5.01109473e-02 -2.35969573e-03\\n-4.75207251e-03 -7.04596817e-01 6.74694628e-02 -3.24622959e-01\\n7.24786334e-03 4.78375182e-02 -1.91196188e-01 -3.15906167e-01\\n1.29918709e-01 -1.55668318e-01 -2.76734680e-01 3.40826094e-01\\n-4.97100681e-01 1.56361789e-01 9.99132637e-03 1.24302238e-01\\n3.90209779e-02 -3.28728914e-01 1.79683551e-01 -3.74637753e-01\\n-3.78247947e-01 -1.76550090e-01 -2.22631887e-01 -3.12925160e-01\\n4.49395999e-02 -3.48209918e-01 -2.08637148e-01 1.06192246e-01\\n3.15708786e-01 6.72188699e-02 -1.36586234e-01 -2.93032825e-01\\n-7.12274387e-02 -4.72314179e-01 2.50363618e-01 -1.86917022e-01\\n5.63730560e-02 -3.71665731e-02 2.40359381e-01 1.33037359e-01\\n4.64835353e-02 -3.87725025e-01 3.88629586e-01 -3.53516430e-01\\n-2.89711386e-01 3.33548291e-03 3.25403772e-02 4.99740206e-02\\n2.57377356e-01 -6.23883665e-01 7.37987971e-03 2.18040749e-01\\n9.32115689e-02 6.99808225e-02 2.58332789e-01 5.80880418e-03\\n-1.15301207e-01 2.25950524e-01 -2.87278354e-01 8.67727995e-02\\n7.54065871e-01 1.61999524e-01 9.46024284e-02 1.52283698e-01\\n1.48484573e-01 3.84318531e-01 5.36778271e-01 2.17558220e-02\\n4.64519346e-03 2.22276032e-01 -6.29292568e-03 -4.94863868e-01\\n-1.00053661e-01 -6.29699528e-02 -1.61775336e-01 -2.98902482e-01\\n5.68166614e-01 4.07394856e-01 -4.23182547e-01 -2.71510661e-01\\n6.65159822e-02 -7.59990439e-02 3.11885595e-01 3.58162075e-02\\n3.34598981e-02 -1.87891349e-01 5.13635039e-01 -1.16528012e-02\\n2.79682100e-01 6.27047002e-01 -1.38059944e-01 -4.31816071e-01\\n-1.30976960e-01 1.85184613e-01 6.16035014e-02 5.02908170e-01\\n-1.11100718e-01 2.22501397e-01 -5.89813069e-02 1.21240998e-02\\n9.24969558e-03 2.38774836e-01 1.73292637e-01 1.14967421e-01\\n1.82844222e-01 6.59905225e-02 2.92303056e-01 6.04145467e-01\\n1.31791711e-01 5.43202102e-01 3.58735502e-01 6.58187419e-02\\n2.88298935e-01 6.31099224e-01 4.47781831e-01 2.47161061e-01\\n6.90274835e-02 1.94426149e-01 9.28051025e-02 -1.40974417e-01\\n4.09494728e-01 3.35055977e-01 2.37639770e-01 8.94953966e-01\\n3.76655608e-01 2.06508011e-01 7.90702522e-01 -6.95942461e-01\\n-3.39136571e-01 1.22824386e-01 4.27526295e-01 -2.06764847e-01\\n-1.12134710e-01 6.62854463e-02 -1.89896703e-01 3.23662549e-01\\n-4.59862262e-01 -9.07356143e-02 1.61180925e-02 -4.31619436e-02\\n6.76198900e-02 -5.55598699e-02 -1.57312319e-01 -3.97852995e-02\\n-1.96500078e-01 -7.31067955e-02 -2.48670623e-01 -1.65038571e-01\\n-3.46983284e-01 5.32180024e-03 -1.46576539e-01 -2.05453575e-01\\n-7.81072304e-02 -4.58009094e-01 -7.53434598e-02 7.55573288e-02\\n3.09527397e-01 -7.06459209e-02 2.18218714e-02 -8.75489786e-02\\n1.97565377e-01 3.58882308e-01 5.26761174e-01 -1.00220099e-01\\n1.62169889e-01 -1.11063801e-01 -2.30599523e-01 3.94183025e-02\\n2.00516265e-03 6.67308981e-04 9.63001996e-02 3.67192984e-01\\n-3.16834986e-01 -4.78394330e-02 5.36589772e-02 3.52561891e-01\\n-3.81102294e-01 -1.05050661e-01 -1.42782465e-01 2.84201324e-01\\n1.79798547e-02 1.44495070e-01 -2.83834726e-01 -3.74649279e-02\\n-2.04619929e-01 -4.52179700e-01 4.31283027e-01 -2.28166133e-01\\n-1.03941590e-01 2.60026276e-01 3.07673335e-01 1.97034329e-01\\n-2.89613932e-01 4.43160348e-02 -1.08998358e-01 2.99963772e-01\\n2.98879622e-03 4.13744360e-01 -2.30122894e-01 -1.20121427e-01\\n-2.34736517e-01 2.24266812e-01 -1.74272120e-01 1.34532943e-01\\n-1.23346359e-01 2.68748790e-01 2.04904929e-01 -7.65443668e-02\\n3.33752960e-01 1.11883422e-02 -2.88367152e-01 -1.34824961e-01\\n-1.43094748e-01 -1.96044683e-01 1.22624626e-02 -4.52133603e-02\\n2.08444059e-01 -3.33552301e-01 -4.24384251e-02 8.19940120e-03\\n-4.23172973e-02 -3.11812639e-01 -1.73182979e-01 5.89172244e-02]]',\n", + " \"Job Informationen Your tasks: You will be a part of a team that is responsible for developing, releasing, monitoring and troubleshooting large scale micro-service based distributed systems with high transaction volume. You enjoy learning new things and are passionate about developing new features, maintaining existing code, fixing bugs, and contributing to overall system design. You are a great teammate who thrives in a dynamic environment with rapidly changing priorities. Your profile: a Bachelor's or higher degree in technical field of study or equivalent practical experience hands-on experience with highly concurrent production grade systems knowledge of at least one modern programming language, such as Go, Java, C++ and Scala, etc. excellent troubleshooting and creative problem-solving abilities excellent written and oral communication and interpersonal skills Ideally: experience with systems for automating deployment, scaling and management of containerised applications, such as Kubernetes and Mesos experience with big data technologies, such as Kafka, Spark, Storm, Flink and Cassandra experience with encryption and cryptography standards Benötigte Skills JAVA Python Englisch Scala Kryptografie / Verschlüsselung Go\",\n", + " '[\"Management\", \"Problem Solving\", \"Communications\", \"Troubleshooting (Problem Solving)\", \"Creative Problem-Solving\"]',\n", + " '[\"Distributed File Systems\", \"Scale (Map)\", \"Systems Design\", \"Automation\", \"Kubernetes\", \"Scala (Programming Language)\", \"Apache Flink\", \"Apache Cassandra\", \"KM Programming Language\", \"Encryption\", \"Cryptography\", \"Python (Programming Language)\", \"Maintainability\", \"Location-Based Services\", \"Java (Programming Language)\", \"Idealization\", \"Big Data\", \"Apache Mesos\"]',\n", + " \"['English', 'Bambara']\"],\n", + " ['127',\n", + " 'software developer/devops engineer',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-2.79464602e-01 2.83842206e-01 4.32112038e-01 -1.00324735e-01\\n5.33078432e-01 -1.73618779e-01 -1.52223721e-01 4.19416130e-01\\n-1.45017251e-01 -3.03699583e-01 -1.04994282e-01 -2.60173768e-01\\n-1.43293232e-01 1.81950599e-01 7.96944425e-02 4.16553766e-01\\n3.46023202e-01 5.54476380e-02 -1.65452421e-01 3.39596689e-01\\n9.71518457e-02 -7.41897374e-02 -2.95279995e-02 7.51191378e-01\\n3.40693116e-01 3.60643193e-02 -6.12074137e-02 3.74694876e-02\\n-1.72964886e-01 -1.97237477e-01 4.07169700e-01 8.59297439e-03\\n-9.94161814e-02 -3.10695171e-01 1.41966045e-01 8.88439640e-02\\n-2.31730729e-01 -3.43627222e-02 -4.92328741e-02 1.54999971e-01\\n-5.10822654e-01 -2.05332667e-01 2.50285082e-02 2.10643858e-02\\n-2.61815727e-01 -2.56458074e-01 2.33076289e-01 1.57963969e-02\\n1.68109462e-02 6.35271743e-02 -6.01317286e-01 2.60986149e-01\\n-2.41310000e-01 -2.79591978e-01 4.12263215e-01 4.90929574e-01\\n3.68725359e-02 -4.82857406e-01 -4.80296463e-01 -3.86672854e-01\\n-3.69389839e-02 -5.63385636e-02 5.55322766e-02 -2.62381911e-01\\n4.90444332e-01 1.42244026e-01 4.86027151e-02 3.64097983e-01\\n-8.07240009e-01 -1.17384583e-01 -2.17118204e-01 4.93935868e-02\\n-4.00651753e-01 -7.39978552e-02 -2.24744201e-01 -2.38124713e-01\\n-5.23601472e-02 2.84378797e-01 -3.73999216e-02 1.13156356e-01\\n-1.38443843e-01 3.14956784e-01 -1.52378976e-01 3.55061114e-01\\n2.48809427e-01 1.75584108e-01 2.41388589e-01 3.23400140e-01\\n-4.39177632e-01 3.68693173e-01 1.30051628e-01 -3.46206963e-01\\n2.69517899e-01 6.30239174e-02 4.41256940e-01 9.70664620e-02\\n1.73473030e-01 1.56235248e-01 -2.54614145e-01 2.26049468e-01\\n1.87795997e-01 -2.24112585e-01 -9.52708721e-03 -1.08309016e-01\\n-1.74971856e-02 3.51912454e-02 1.13494471e-02 1.90057844e-01\\n-3.92811716e-01 3.65047216e-01 1.66555285e-01 -2.79298306e-01\\n-1.01940468e-01 -5.54690897e-01 -1.35695159e-01 1.47188678e-01\\n1.02047091e-02 -4.35269251e-03 1.42388672e-01 1.20734043e-01\\n2.30692253e-01 -1.14065614e-02 1.53334558e-01 8.57003689e-01\\n-1.11099370e-01 -6.62105605e-02 -1.50400996e-01 2.69138813e-01\\n1.06983401e-01 -3.20981115e-01 1.95703894e-01 3.06491733e-01\\n1.23683475e-01 -1.04964972e-01 -2.51470089e-01 3.84828269e-01\\n-1.39680794e-02 -2.49035478e-01 -3.52663994e-01 2.88842529e-01\\n-1.16512850e-01 -4.62270319e-01 5.31063080e-01 -1.40916035e-02\\n2.09940895e-01 -6.15639575e-02 1.27249993e-02 -8.26895088e-02\\n-7.46292397e-02 1.62108302e-01 6.68128431e-02 2.31477350e-01\\n-3.50668788e-01 -2.26819634e-01 -1.62615985e-01 1.73846588e-01\\n-2.43928879e-01 1.47735655e-01 -9.57861245e-02 -1.50595874e-01\\n3.85887325e-01 1.32020153e-02 -3.29258233e-01 2.15796590e-01\\n-2.32726224e-02 1.40277669e-02 -1.27234012e-01 3.76423717e-01\\n-1.56677157e-01 2.44462982e-01 -7.89805353e-02 -1.40639246e-01\\n5.60129881e-01 4.64583002e-02 1.32265538e-01 -4.20021862e-02\\n3.53185952e-01 -1.44227058e-01 2.94140488e-01 2.87204273e-02\\n-6.99119329e-01 2.00795114e-01 -1.15089677e-02 -1.68672234e-01\\n1.91144552e-02 3.15187797e-02 3.78782630e-01 -3.28442395e-01\\n-5.77069912e-03 -1.80638567e-01 -3.80641013e-01 -3.36305350e-01\\n-2.72626340e-01 7.71208480e-02 4.11807865e-01 -3.61342609e-01\\n-1.38937742e-01 1.64126873e-01 -5.61672747e-01 -1.95011571e-01\\n2.22838432e-01 2.12021202e-01 1.06377326e-01 1.06371827e-01\\n-1.30819038e-01 -7.07461596e-01 3.88835222e-02 -5.06973803e-01\\n-2.66308933e-01 1.27991676e-01 -3.85339975e-01 2.01113269e-01\\n2.72567198e-03 -4.64076363e-02 -1.20951965e-01 1.35125816e-01\\n-3.57031167e-01 -6.55578077e-02 1.24569707e-01 7.23154657e-03\\n2.66686618e-01 1.18325010e-01 -2.78889358e-01 5.18720984e-01\\n-1.51762247e-01 4.87868905e-01 1.15129873e-01 -7.99149632e-01\\n5.06944418e-01 4.05216575e-01 1.00936443e-01 -3.38933617e-01\\n5.95276296e-01 -3.06399256e-01 -7.81174749e-02 1.33428276e-01\\n-4.45213914e-01 -2.47816056e-01 2.42479160e-01 -2.84113765e-01\\n-2.40015641e-01 5.69057465e-01 6.78901225e-02 3.44162621e-02\\n3.70559931e-01 -3.43470663e-01 -1.57107383e-01 1.34557664e-01\\n-1.09013282e-01 -3.20514381e-01 -5.48024118e-01 7.58840889e-03\\n-6.39639646e-02 -5.18943429e-01 -2.07080960e-01 -3.74051273e-01\\n-1.17819875e-01 -2.61833787e-01 -2.10105300e-01 3.62776309e-01\\n1.64972544e-01 9.95036066e-02 -1.11495130e-01 -1.48087498e-02\\n-1.11330859e-01 -6.02296710e-01 7.99088031e-02 -7.07482770e-02\\n4.16953802e-01 1.74963355e-01 1.44379199e-01 -9.94058251e-02\\n4.69598174e-02 6.02424502e-01 -3.62517357e-01 -3.15214694e-01\\n5.98334074e-02 1.01062544e-01 -3.07451282e-02 -4.64696996e-02\\n1.55632883e-01 2.99742132e-01 -2.74719536e-01 9.58754867e-03\\n-2.61927009e-01 2.94026881e-02 3.88387024e-01 -1.09960839e-01\\n-2.08484665e-01 -2.45711356e-01 -1.25462234e-01 2.09994555e-01\\n-4.86043364e-01 -2.19527707e-01 4.00307953e-01 2.01103494e-01\\n1.65323824e-01 1.50955513e-01 2.46531501e-01 -4.49586362e-02\\n-2.93476790e-01 -3.75669569e-01 2.46291667e-01 2.07147896e-01\\n1.17415905e-01 1.37192145e-01 -1.17500588e-01 -5.48532307e-01\\n-2.95971894e+00 -1.83544829e-01 2.09105983e-01 -2.94929028e-01\\n2.95069039e-01 -8.80652517e-02 6.43018112e-02 -9.03702527e-02\\n-3.66998345e-01 -2.19861660e-02 -1.51461050e-01 -2.30737746e-01\\n7.76297823e-02 3.11000943e-01 1.40502885e-01 7.74404928e-02\\n6.10563383e-02 -2.23519802e-01 4.12002057e-02 2.76947588e-01\\n-1.39350832e-01 -7.13903069e-01 1.97508544e-01 -1.17521748e-01\\n2.42447063e-01 3.00263822e-01 -4.43940639e-01 -1.74741119e-01\\n-2.41806135e-01 -2.17974693e-01 1.35723561e-01 -3.02654207e-01\\n-1.05285972e-01 2.93526828e-01 1.90208405e-01 -6.38388246e-02\\n5.45207858e-02 -3.80258799e-01 -1.00464173e-01 -5.70289254e-01\\n2.15484425e-01 -5.81566215e-01 -2.07766816e-02 -1.62599266e-01\\n6.52249813e-01 -2.83655643e-01 1.70264781e-01 1.39111087e-01\\n2.12851346e-01 2.12966532e-01 5.32277077e-02 8.11298415e-02\\n-2.58918464e-01 -3.08156431e-01 -3.48505005e-02 -2.93131113e-01\\n5.50741553e-01 4.61072206e-01 -2.06994534e-01 -5.91572635e-02\\n1.33481473e-01 -3.59127313e-01 -4.41250235e-01 -2.85691261e-01\\n-1.82144552e-01 -1.61260724e-01 -6.10117316e-01 -3.67786348e-01\\n-9.42144841e-02 -8.70551988e-02 -9.11066607e-02 6.92519248e-01\\n-3.29033136e-01 -3.40736330e-01 2.37641856e-04 -6.64864361e-01\\n9.59281847e-02 -2.54156858e-01 7.69339800e-02 -2.29244962e-01\\n-2.17527211e-01 -4.82519865e-01 1.15825519e-01 -7.45242760e-02\\n-1.78468481e-01 -3.25853318e-01 1.08175650e-02 -2.51990974e-01\\n-1.96736485e-01 -5.48918843e-01 3.72074485e-01 1.48789287e-01\\n3.73227239e-01 1.87235728e-01 2.79792160e-01 -3.02228220e-02\\n2.54057199e-01 4.59913686e-02 9.88337398e-03 -3.86143684e-01\\n1.88594133e-01 1.14771081e-02 5.47572374e-01 -1.66220039e-01\\n2.96973977e-02 8.48369226e-02 -2.26786375e-01 -1.48161247e-01\\n3.19172084e-01 1.02132276e-01 2.18638480e-02 -1.70794219e-01\\n3.89539719e-01 -4.40902352e-01 -1.26275241e-01 2.00770795e-01\\n5.52972071e-02 6.58028841e-01 -2.82517858e-02 -3.75799567e-01\\n-2.05240190e-01 5.18371403e-01 -2.56127436e-02 -4.25358750e-02\\n-1.33260954e-02 1.73665404e-01 -1.70200586e-01 1.80013210e-01\\n5.73165119e-02 -1.86277002e-01 -2.49783397e-01 -6.61584362e-02\\n-1.48735046e-01 2.85254598e-01 2.93299198e-01 2.44024932e-01\\n-1.16569683e-01 -3.83201182e-01 -2.85960361e-02 2.89929777e-01\\n2.57171869e-01 3.86809230e-01 1.94505975e-01 -1.84552908e-01\\n1.75652262e-02 4.56595480e-01 -1.22101367e-01 2.24289775e-01\\n-1.16304055e-01 8.74356851e-02 -5.44228673e-01 -1.73254400e-01\\n-3.28137040e-01 -2.58567512e-01 1.12727463e-01 3.15514147e-01\\n1.60010561e-01 -7.87907988e-02 6.16073422e-02 -3.67726862e-01\\n2.38641381e-01 5.87384030e-02 2.11930692e-01 1.08427174e-01\\n-1.09139048e-01 6.21277094e-01 -2.24795006e-03 -7.43742585e-02\\n-1.74894944e-01 -2.39029899e-02 -2.77645767e-01 -1.93252295e-01\\n1.73775434e-01 -3.89436454e-01 -2.07965761e-01 4.34971213e-01\\n1.01803944e-01 -1.34763241e-01 -1.73997581e-01 2.98828721e-01\\n7.53267407e-02 -2.92674392e-01 -2.51752853e-01 1.52706280e-02\\n2.88858354e-01 5.22003956e-02 2.55306214e-01 -4.96981680e-01\\n-2.43663490e-02 8.59514773e-02 3.03198397e-03 4.87323463e-01\\n9.92832407e-02 9.22194868e-03 -2.22706690e-01 -3.04161131e-01\\n3.21964383e-01 -1.68119222e-01 -1.09340131e-01 -1.27167925e-01\\n2.82439459e-02 -1.68987274e-01 -3.97098422e-01 2.43679024e-02\\n-7.73934498e-02 -1.80419490e-01 -3.11975088e-02 1.43067110e-02\\n1.52887195e-01 8.38807821e-02 -5.19711375e-01 -1.86701715e-01\\n-2.16770500e-01 6.33195639e-02 1.38425454e-03 -4.57324743e-01\\n6.11239001e-02 -2.38374416e-02 -5.88806391e-01 2.53286242e-01\\n-1.98784441e-01 -1.34626543e-02 1.98355883e-01 -2.64220275e-02\\n-4.68545556e-01 -1.45779237e-01 1.85521960e-01 1.87078834e-01\\n-3.57208908e-01 -2.97613323e-01 4.85920571e-02 -1.01244283e+00\\n1.84459805e-01 -1.00726582e-01 -1.08461224e-01 1.06752977e-01\\n8.33938494e-02 -7.05569327e-01 8.56838599e-02 -3.74308467e-01\\n7.96690490e-03 7.38189220e-02 -1.86574161e-01 -3.33493531e-01\\n8.04249793e-02 -1.07934795e-01 -2.09191173e-01 4.48658288e-01\\n-4.95503545e-01 2.88990736e-01 -1.00149788e-01 1.84606463e-02\\n3.80047821e-02 -3.09451640e-01 1.40777111e-01 -3.11106473e-01\\n-4.45842415e-01 -2.32447758e-01 -2.52126813e-01 -3.59331548e-01\\n1.49969095e-02 -2.66236484e-01 -1.26821190e-01 9.85354632e-02\\n2.88066506e-01 -2.61946879e-02 -1.87840790e-01 -1.99190393e-01\\n1.01761848e-01 -4.49593842e-01 7.18361288e-02 -6.34766072e-02\\n-7.85707906e-02 -1.43621266e-01 1.96336821e-01 9.59303603e-02\\n1.56136155e-01 -3.50980699e-01 5.22612035e-01 -3.55244815e-01\\n-3.67753178e-01 -7.64256045e-02 8.10516179e-02 9.19122249e-05\\n2.32312262e-01 -6.32257760e-01 -4.24426049e-02 3.90425235e-01\\n1.98571473e-01 3.51112187e-02 2.09758952e-01 -1.38035923e-01\\n3.45931426e-02 2.34450147e-01 -3.78846109e-01 1.51710004e-01\\n8.60364676e-01 1.53342605e-01 1.11291498e-01 2.38088757e-01\\n1.43503010e-01 2.92027563e-01 4.70402002e-01 -1.01451188e-01\\n-9.96608213e-02 2.55892038e-01 1.27410740e-01 -4.64461803e-01\\n-1.49891108e-01 -3.20105441e-02 -3.26732025e-02 -2.76313812e-01\\n6.63094521e-01 3.74243796e-01 -4.39209104e-01 -2.98540115e-01\\n-9.46564302e-02 -9.35236514e-02 2.88884550e-01 -9.35423300e-02\\n3.17315720e-02 -1.61417529e-01 3.99939597e-01 -2.02047452e-02\\n2.87503719e-01 5.67472577e-01 -1.85363308e-01 -3.40382695e-01\\n-1.88358366e-01 2.11724550e-01 4.71704975e-02 4.14248049e-01\\n-1.35417372e-01 2.13033155e-01 -6.92164898e-02 1.60799921e-01\\n-1.27928734e-01 1.89417899e-01 1.10304348e-01 4.84235287e-02\\n1.76691562e-01 1.45349264e-01 3.92406464e-01 4.45726275e-01\\n3.51103306e-01 5.12184501e-01 2.88963407e-01 6.21488243e-02\\n4.97187972e-01 5.38665295e-01 4.61984068e-01 1.49902813e-02\\n-5.86419441e-02 1.42226398e-01 1.02813341e-01 -6.79232925e-02\\n3.92337084e-01 3.19057763e-01 1.72066718e-01 9.48411703e-01\\n3.15637648e-01 3.77954245e-01 7.00901747e-01 -5.57419777e-01\\n-2.96507418e-01 4.93867546e-02 4.84636217e-01 -4.10603940e-01\\n4.03327048e-02 8.18898976e-02 -1.46891564e-01 2.50466168e-01\\n-4.81334478e-01 -8.51175860e-02 -7.72630423e-03 1.47542777e-02\\n1.13921218e-01 -6.86585903e-02 -2.05023959e-01 -3.61171700e-02\\n-2.37343386e-01 -2.38486335e-01 -4.15512323e-01 -2.30404183e-01\\n-2.07346380e-01 -5.66824265e-02 -6.47140965e-02 -2.03935444e-01\\n-7.41475523e-02 -3.64882052e-01 1.55933276e-02 4.50794399e-03\\n3.67774487e-01 -1.26594782e-01 -1.42232239e-01 -1.57701463e-01\\n3.66457641e-01 3.15999508e-01 6.45007014e-01 -1.37276053e-01\\n1.12441916e-03 -1.48463711e-01 -2.45164111e-01 1.32254258e-01\\n4.05558348e-02 1.10500783e-01 1.27781808e-01 2.70691603e-01\\n-2.60735869e-01 -7.96389952e-02 9.80343968e-02 3.37681592e-01\\n-3.72343540e-01 -7.44422525e-02 -9.19867232e-02 1.41576648e-01\\n-8.61211494e-03 1.26920596e-01 -2.72234917e-01 1.08799830e-01\\n-1.92291602e-01 -5.42582452e-01 4.57042933e-01 -1.73048288e-01\\n-1.46631479e-01 5.58332838e-02 3.87549132e-01 2.38362715e-01\\n-2.10598439e-01 1.38804317e-02 2.54046787e-02 2.02264711e-01\\n4.19618003e-02 3.42434466e-01 -1.46258548e-01 -3.06128860e-01\\n-3.53459865e-01 1.87223077e-01 -1.78792700e-01 1.49589665e-02\\n-1.48575693e-01 4.48938221e-01 -3.82950641e-02 2.97433771e-02\\n4.22491163e-01 -1.06343828e-01 -1.57129675e-01 -2.92525560e-01\\n-2.40106285e-01 -2.33014241e-01 -1.22865215e-02 -9.53219086e-03\\n2.36855507e-01 -3.65250289e-01 -1.29179686e-01 -2.96051323e-01\\n4.29405198e-02 -2.48092234e-01 8.75145942e-03 3.60321738e-02]]',\n", + " 'Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum’s scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master’s degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit/ For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).',\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " \"['English', 'Dutch']\"],\n", + " ['9',\n", + " 'software engineer backend (m/w)',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-3.09588939e-01 3.53977472e-01 3.76809657e-01 -7.97372609e-02\\n3.86109412e-01 -2.18868315e-01 -4.56952713e-02 4.92449939e-01\\n-1.11506663e-01 -3.70523840e-01 -6.71701431e-02 -2.23877981e-01\\n-1.67698145e-01 5.79392575e-02 1.56673595e-01 3.58065605e-01\\n2.99305230e-01 1.31248459e-01 -2.14176953e-01 3.80015284e-01\\n8.25560838e-02 -8.59833360e-02 -2.83666942e-02 6.63735986e-01\\n3.03802878e-01 2.84423213e-02 -3.44149023e-02 -8.46213102e-02\\n-2.82238454e-01 -2.07219303e-01 3.54496300e-01 5.60077094e-03\\n-6.89964443e-02 -3.42943102e-01 9.19430554e-02 7.56266713e-02\\n-1.47413090e-01 3.53634655e-02 -2.36538257e-02 1.34321436e-01\\n-4.47326750e-01 -2.01077312e-01 2.11073399e-01 -2.72567337e-03\\n-1.31350085e-01 -3.98559481e-01 2.36390904e-01 -4.78912555e-02\\n1.13416471e-01 -1.35085965e-02 -6.85292482e-01 1.62851706e-01\\n-3.02356482e-01 -2.05522880e-01 4.12076473e-01 4.54081088e-01\\n5.75623102e-02 -4.85956311e-01 -4.84751880e-01 -3.34775031e-01\\n8.47035721e-02 -8.94995704e-02 9.58922505e-02 -3.74082088e-01\\n3.49215090e-01 1.19355589e-01 2.36970205e-02 3.73585284e-01\\n-8.09799850e-01 -5.26394472e-02 -1.97598115e-01 -3.75514068e-02\\n-4.56857324e-01 -2.21681312e-01 -2.82854706e-01 -3.14322151e-02\\n-1.06122546e-01 3.22846234e-01 -7.73782358e-02 6.90491349e-02\\n-1.70771867e-01 3.56611311e-01 -1.88694984e-01 4.72818404e-01\\n2.36417904e-01 1.88856408e-01 2.21740007e-01 3.82991165e-01\\n-3.92668724e-01 3.93701613e-01 2.18303025e-01 -2.79927939e-01\\n3.19552273e-01 4.04363163e-02 4.26905215e-01 2.52112560e-02\\n2.23859206e-01 1.09575085e-01 -2.54584134e-01 2.31614262e-01\\n2.15045586e-01 -2.50346452e-01 -1.31427601e-01 -1.45237774e-01\\n-3.65283340e-03 -2.59867101e-03 8.69962946e-03 2.37902790e-01\\n-1.93462595e-01 4.75418568e-01 2.51735002e-01 -1.21296667e-01\\n-1.05807282e-01 -5.26170552e-01 -9.73739401e-02 5.48740551e-02\\n-6.80509433e-02 4.88583595e-02 2.33428657e-01 1.22526482e-01\\n2.53239810e-01 6.17773682e-02 7.50501826e-02 8.69464695e-01\\n-8.79050121e-02 4.22566533e-02 -1.90922767e-01 3.82644087e-01\\n7.15236813e-02 -3.31572294e-01 8.63230154e-02 3.62228423e-01\\n1.20909728e-01 -1.52072728e-01 -1.78286970e-01 2.95595109e-01\\n-4.96928059e-02 -1.64546043e-01 -3.03301692e-01 8.57781693e-02\\n-1.41552716e-01 -5.21402597e-01 5.25555432e-01 8.79097655e-02\\n2.10065573e-01 6.48114234e-02 1.07701160e-01 -1.24945618e-01\\n-1.83591738e-01 1.93015814e-01 3.16089652e-02 2.11641788e-01\\n-2.81513840e-01 -2.94532567e-01 -2.26535931e-01 1.29564390e-01\\n-1.77221492e-01 1.18093163e-01 -6.23493381e-02 -1.13362864e-01\\n4.00769413e-01 5.84406070e-02 -3.93608004e-01 2.75057971e-01\\n-1.35527030e-02 7.91321620e-02 -1.57444581e-01 3.32714617e-01\\n5.11568934e-02 2.57208169e-01 8.17857832e-02 -7.16295317e-02\\n5.13015926e-01 5.89297712e-02 2.36508265e-01 -4.69877049e-02\\n3.98690253e-01 -1.14578038e-01 1.89958602e-01 5.21120355e-02\\n-6.23266220e-01 2.27140695e-01 -1.29885599e-02 -5.92732094e-02\\n1.01415418e-01 -5.70460281e-04 2.64854670e-01 -2.73588777e-01\\n8.12515691e-02 -1.38104349e-01 -4.48479056e-01 -3.08784008e-01\\n-2.87749738e-01 1.76270548e-02 4.56205338e-01 -3.95314127e-01\\n-1.41020164e-01 1.69671863e-01 -5.19107938e-01 -6.58958480e-02\\n2.44297341e-01 2.50703007e-01 1.05452664e-01 1.21496439e-01\\n-2.02490240e-01 -5.41628778e-01 6.07674569e-02 -4.79461104e-01\\n-4.31516707e-01 1.82647467e-01 -3.28045070e-01 1.81617320e-01\\n1.43425971e-01 -9.41272527e-02 -1.13464572e-01 7.02138469e-02\\n-2.49530360e-01 -1.33739248e-01 1.74917653e-01 9.55125391e-02\\n2.93781549e-01 -5.27568050e-02 -3.58724773e-01 5.17399967e-01\\n-1.64891437e-01 4.62800086e-01 7.47939125e-02 -8.52720559e-01\\n5.30289710e-01 4.17294741e-01 6.39415234e-02 -4.50185597e-01\\n5.95183194e-01 -3.10093790e-01 -5.67182302e-02 1.76095709e-01\\n-4.07054991e-01 -4.27787662e-01 2.47389525e-01 -1.25406101e-01\\n-2.52051502e-01 5.25710285e-01 5.02705090e-02 7.90504962e-02\\n2.63428062e-01 -3.12214673e-01 -1.89260647e-01 6.56605065e-02\\n-1.24992117e-01 -1.63137004e-01 -5.51456153e-01 6.42404780e-02\\n-6.81491867e-02 -5.13618588e-01 -1.45569310e-01 -3.61825168e-01\\n-2.03439265e-01 -3.91297013e-01 -3.26193660e-01 3.58578384e-01\\n1.61247373e-01 1.29636303e-01 -6.57431856e-02 1.28453150e-01\\n-1.29621506e-01 -5.99448323e-01 8.05152878e-02 1.30839869e-01\\n4.30480033e-01 1.23595923e-01 1.14451595e-01 -7.00612962e-02\\n-7.57485703e-02 5.73696971e-01 -3.06785762e-01 -2.34990969e-01\\n1.15763508e-01 2.11738825e-01 -1.06323715e-02 -1.43066451e-01\\n1.04536064e-01 3.24733496e-01 -3.21196645e-01 -4.10941467e-02\\n-1.43590420e-01 -2.91470364e-02 3.71725380e-01 -1.81908756e-01\\n-4.28511560e-01 -2.84574598e-01 -9.74958614e-02 1.76387012e-01\\n-5.44603467e-01 -2.27220550e-01 6.02471948e-01 2.76421964e-01\\n1.18041478e-01 1.94053158e-01 2.71325976e-01 -9.24557671e-02\\n-2.65710652e-01 -3.86517137e-01 2.88857937e-01 1.84291735e-01\\n1.37646988e-01 1.31242454e-01 -1.91350833e-01 -5.97491264e-01\\n-3.23715281e+00 -1.15003020e-01 2.48236299e-01 -2.41898566e-01\\n2.34865636e-01 -3.49950232e-02 9.82355773e-02 -4.53094244e-02\\n-2.67676234e-01 -3.48431319e-02 -1.99626416e-01 -1.26414761e-01\\n9.47018936e-02 3.65055621e-01 9.24764946e-02 1.63285449e-01\\n2.35818177e-01 -2.32232571e-01 7.57715479e-03 2.78240949e-01\\n-2.02137455e-01 -6.94799840e-01 1.78741083e-01 -1.16198801e-01\\n2.09937811e-01 3.84085059e-01 -2.76781678e-01 -1.25744343e-01\\n-1.59148708e-01 -2.15365320e-01 8.64176452e-02 -2.73608834e-01\\n-8.86897519e-02 1.92434788e-01 1.26364231e-01 -5.02105951e-02\\n7.23450407e-02 -3.90691012e-01 -1.41346902e-01 -5.60883105e-01\\n1.56694010e-01 -6.19566202e-01 8.97517651e-02 -1.65568754e-01\\n7.13032365e-01 -3.52395564e-01 5.41938432e-02 7.51003101e-02\\n1.73547879e-01 1.80168658e-01 -2.19061337e-02 1.23705296e-02\\n-3.22736800e-01 -3.54511946e-01 -8.05425420e-02 -2.66410023e-01\\n5.63354909e-01 4.19682980e-01 -2.48007834e-01 -3.39332931e-02\\n1.78986996e-01 -2.24188119e-01 -4.33510900e-01 -3.15909088e-01\\n-1.48620009e-01 -1.67560950e-01 -6.60619140e-01 -4.26278859e-01\\n-1.04835935e-01 -1.49283409e-01 -8.74210000e-02 7.15258658e-01\\n-3.07278872e-01 -3.85980248e-01 1.75549816e-02 -6.92957997e-01\\n1.69897854e-01 -2.14151651e-01 4.77288701e-02 -1.97633356e-01\\n-2.03085423e-01 -4.49166805e-01 3.89887504e-02 2.47536637e-02\\n-1.87829986e-01 -9.82045978e-02 8.72114301e-02 -1.13026634e-01\\n-2.75799125e-01 -5.53627670e-01 4.70937490e-01 1.54341623e-01\\n3.19041699e-01 1.69533432e-01 2.44624689e-01 -5.14727123e-02\\n3.97006959e-01 -5.11348397e-02 -6.32585883e-02 -4.03755069e-01\\n2.26712242e-01 8.70319605e-02 5.69442451e-01 -2.22122848e-01\\n2.43532844e-02 2.93975025e-01 -1.68566391e-01 -1.47208825e-01\\n4.66594398e-01 1.46925142e-02 8.75635818e-02 -2.32631937e-01\\n4.12977993e-01 -5.26539385e-01 -2.73449451e-01 2.03315839e-01\\n7.43526816e-02 6.20340049e-01 -1.21451903e-03 -4.36850518e-01\\n-1.50859818e-01 6.08619213e-01 -4.66704555e-02 -5.92083409e-02\\n-1.71394408e-01 1.64263368e-01 -1.66789517e-01 1.80495754e-01\\n1.04756765e-01 -1.66501135e-01 -2.85801381e-01 -7.95282423e-02\\n-7.58536905e-02 2.26842567e-01 1.56926945e-01 1.39817253e-01\\n-3.83481048e-02 -4.09494877e-01 -9.36418623e-02 1.27841875e-01\\n2.34541148e-01 4.52518046e-01 -1.40752690e-02 -2.23636061e-01\\n-3.01932842e-02 3.35671335e-01 -1.27867222e-01 1.83084950e-01\\n-2.32367977e-01 1.53489783e-01 -4.73929852e-01 -2.92540550e-01\\n-2.79559016e-01 -3.39252383e-01 -1.16810773e-03 2.38654613e-01\\n2.07027152e-01 1.63934287e-02 9.26687047e-02 -4.51065332e-01\\n2.44798183e-01 4.85716648e-02 2.10684657e-01 1.63453460e-01\\n7.79469460e-02 5.20148396e-01 -3.54029797e-02 -1.74611300e-01\\n-2.14245260e-01 1.46214180e-02 -2.46277764e-01 -1.10298149e-01\\n1.11780711e-01 -4.87949759e-01 -1.43235832e-01 3.88653129e-01\\n1.14982188e-01 -1.66046306e-01 -2.55609989e-01 1.82679668e-01\\n6.69051753e-03 -2.69823492e-01 -2.38607332e-01 9.91296116e-03\\n2.70472854e-01 4.08974551e-02 2.92255193e-01 -4.06071097e-01\\n-3.60555761e-02 2.41898671e-02 -3.37772332e-02 4.38061535e-01\\n1.60126671e-01 -4.90090623e-03 -1.53987750e-01 -1.99865669e-01\\n4.15145010e-01 -1.45158798e-01 -1.09175518e-01 -4.97223362e-02\\n1.60733119e-01 -1.64842680e-01 -4.35482979e-01 5.91527186e-02\\n-1.86189398e-01 -1.21297650e-01 1.32337153e-01 -4.63738199e-03\\n7.87262842e-02 1.23606093e-01 -5.11792243e-01 -2.25079089e-01\\n-3.12994987e-01 -6.02369010e-02 1.15266196e-01 -5.36304295e-01\\n4.07283660e-03 2.28858609e-02 -6.21369123e-01 2.09775418e-01\\n-2.09053442e-01 -5.88272363e-02 1.64252281e-01 1.22789100e-01\\n-4.07638580e-01 -6.40896931e-02 9.16406140e-02 2.15890318e-01\\n-3.46147209e-01 -3.15475821e-01 -6.20566569e-02 -1.05058849e+00\\n1.97028711e-01 -1.41107932e-01 -2.64688641e-01 4.49682698e-02\\n1.85613683e-03 -6.71989620e-01 5.24471514e-02 -3.37515563e-01\\n-8.42871591e-02 1.18729517e-01 -2.64562547e-01 -4.26228821e-01\\n9.89981815e-02 -1.25239104e-01 -3.32172215e-01 4.63592678e-01\\n-5.05871892e-01 3.00040126e-01 -4.50361781e-02 9.09817517e-02\\n-7.43934885e-02 -4.00205731e-01 1.50269806e-01 -4.20744747e-01\\n-5.04953861e-01 -2.21894041e-01 -3.48518521e-01 -2.79601127e-01\\n8.39479640e-02 -3.63103926e-01 -8.99961814e-02 1.45294532e-01\\n2.70731360e-01 8.78804848e-02 -6.07641041e-02 -1.47595122e-01\\n7.47060552e-02 -4.82307881e-01 3.56825553e-02 -6.93390593e-02\\n-6.77431561e-03 -1.29935756e-01 2.44944811e-01 7.23651648e-02\\n1.36398122e-01 -3.64098936e-01 4.48227257e-01 -2.95706004e-01\\n-3.81368726e-01 -6.48868531e-02 5.98115027e-02 -2.00187598e-04\\n2.21697047e-01 -6.67186618e-01 -2.56842896e-02 3.96792412e-01\\n1.84273988e-01 1.21751996e-02 1.18582964e-01 -6.15130626e-02\\n1.27690267e-02 2.98362881e-01 -4.12272006e-01 8.37142020e-02\\n7.85624146e-01 1.09577581e-01 6.75976882e-03 2.25301832e-01\\n9.99752507e-02 3.36705416e-01 5.17287791e-01 -3.19842957e-02\\n-1.05091095e-01 3.12191099e-01 8.27515572e-02 -6.58817947e-01\\n-1.54512107e-01 2.76920479e-02 -1.53029546e-01 -2.98763275e-01\\n6.85680270e-01 3.71039033e-01 -3.88709873e-01 -2.31683359e-01\\n-1.06425442e-01 -1.40825063e-01 2.67355412e-01 -8.34991261e-02\\n2.50079092e-02 -1.81745961e-01 5.01077592e-01 8.33394900e-02\\n3.11581939e-01 5.27889848e-01 -1.69223011e-01 -3.54060262e-01\\n-8.34070742e-02 1.12947732e-01 3.70981544e-02 3.41636181e-01\\n-1.45053893e-01 1.80296868e-01 -2.33031474e-02 2.19070077e-01\\n-1.91727579e-01 9.31735486e-02 -8.22807942e-03 1.77548468e-01\\n1.82012275e-01 8.27697292e-02 4.63144898e-01 3.39797169e-01\\n3.20627600e-01 5.61908960e-01 2.78198332e-01 1.41125888e-01\\n4.92009610e-01 4.79488701e-01 5.00399947e-01 9.56353396e-02\\n1.51317543e-03 1.36053205e-01 1.47854343e-01 -3.41123603e-02\\n4.35661644e-01 4.09750640e-01 1.55200481e-01 8.77741933e-01\\n2.31613830e-01 3.12919527e-01 7.15448976e-01 -6.67473197e-01\\n-3.44301283e-01 1.24895893e-01 4.03651059e-01 -4.43001390e-01\\n-4.13868539e-02 8.50534886e-02 -2.07440451e-01 2.44275540e-01\\n-5.27294219e-01 -1.37676135e-01 -1.80673730e-02 1.15240984e-01\\n5.43654598e-02 -6.07110560e-02 -2.46413648e-01 -1.94499809e-02\\n-1.55377597e-01 -1.19439907e-01 -3.55133384e-01 -1.04684137e-01\\n-1.47682443e-01 -9.00456160e-02 -5.53277992e-02 -1.54165640e-01\\n-1.62107591e-02 -4.26176608e-01 -1.77523434e-01 4.41393964e-02\\n3.80702049e-01 3.94175341e-03 7.15221912e-02 -1.28922880e-01\\n2.45743945e-01 3.62213939e-01 6.21322811e-01 -6.13933913e-02\\n1.47941127e-01 -2.88176119e-01 -1.56848311e-01 1.40819401e-01\\n1.07798681e-01 7.40610212e-02 8.40305462e-02 3.53829861e-01\\n-3.36206228e-01 -7.48514384e-02 1.82488695e-01 4.57779020e-01\\n-3.93527806e-01 -4.89911325e-02 -7.02601150e-02 1.60846427e-01\\n8.22223127e-02 1.46882579e-01 -2.57787228e-01 1.27619103e-01\\n-2.86425412e-01 -4.97772187e-01 4.37390059e-01 -1.76774055e-01\\n-3.99529785e-02 7.34976456e-02 3.12458992e-01 1.91788912e-01\\n-2.25058958e-01 -4.58106399e-02 4.65021469e-02 2.58296281e-01\\n5.60588576e-02 3.32565218e-01 -2.31827855e-01 -1.51168138e-01\\n-2.81095624e-01 1.79059610e-01 -1.15645371e-01 6.17654026e-02\\n-8.25238004e-02 3.97589296e-01 9.61149707e-02 4.20853123e-02\\n3.95510256e-01 6.57555610e-02 -2.39014030e-01 -1.87476799e-01\\n-2.81010628e-01 -2.81814039e-01 -1.84999555e-02 4.88361518e-04\\n2.02127323e-01 -3.93764436e-01 -1.19642779e-01 -1.46853864e-01\\n-7.59425461e-02 -3.28372210e-01 -8.23235810e-02 5.68337776e-02]]',\n", + " 'Adfinis SyGroup is a leading open source systems integrator focusing on Linux-based solutions. We design and implement cluster systems, comprehensive virtualization solutions, enterprise hosting and cloud systems as well as complex LDAP solutions for centralized administration and authentication. We offer an unprecedented environment with a team of absolute open source professionals. We also promote community work and actively support the Open Source movement. Your responsibilities: Implementation of customized solutions based on Python (Django) and/or PHP Collaboration on the development of concepts and requirement specifications Support in customer meetings, assistance in the supervision of existing and new projects Participation in the planning and implementation of the realization Your qualifications: For this job you have knowledge in using well-known Open Source products and Linux/Unix as a working tool. In addition, you shine with us with the following characteristics: Very high degree of independence Profound knowledge of Python or PHP Experience in the development of OOP solutions, knowledge of functional programming desired Knowledge of the entire web application stack (Javascript, HTML, CSS; protocols, SQL databases) Security Know-how (SQL Injection, XSS, …) Modern technologies such as DevOps, Containers, CI/CD are no foreign words. Willingness to assume responsibility Familiarity with other programming languages and environments such as C++, Go or Rust are advantageous What we offer: We offer you a working environment with flexible employment conditions and a relaxed working environment with exceptionally talented employees. Short decision-making paths and the opportunity to take on responsibility quickly characterise our company and are an integral part of our philosophy. It is also important to us to make our contribution to Open Source – therefore we contribute to the Open Source movement at various levels, be it through financial support, sponsoring or participation in development. You interested? Then please send your application documents and the next possible starting date by email to Thomas Köchli. We look forward to getting to know you!',\n", + " '[\"Professionalism\", \"Collaboration\", \"Planning\", \"Supervision\", \"Communications\", \"Integration\", \"Decision Making\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Virtualization\", \"Clustered File Systems\", \"C++ (Programming Language)\", \"Requirements Specifications\", \"Authentications\", \"SQL Injection\", \"Activism\", \"Python (Programming Language)\", \"Linux\", \"Levelling\", \"Systems Integration\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Hosting\", \"Django (Web Framework)\", \"Database Security\", \"Open Source Technology\", \"Project-Based Solutions\", \"Ldap Client\", \"JavaScript (Programming Language)\", \"Functional Programming\", \"Additives\", \"Rust (Programming Language)\", \"Unix\", \"SQL (Programming Language)\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English', 'Gaelic']\"],\n", + " ['125',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.88429624e-01 1.98583737e-01 4.23475713e-01 1.82951957e-01\\n6.04900897e-01 -1.18279234e-01 -2.03081205e-01 3.64629149e-01\\n3.46712098e-02 -4.40724462e-01 -3.31022963e-02 -3.14529419e-01\\n-9.01315287e-02 5.02066910e-02 -5.02935611e-02 3.59344751e-01\\n3.67627680e-01 7.54890665e-02 -1.39250651e-01 3.57062072e-01\\n3.43481824e-02 -6.97322488e-02 1.80957884e-01 7.95656264e-01\\n2.98042953e-01 -1.16255090e-01 -8.54918733e-02 6.87133074e-02\\n-1.80363178e-01 -1.75483465e-01 4.29032385e-01 8.67326707e-02\\n-2.11392596e-01 -4.58809465e-01 6.91199154e-02 1.77373588e-01\\n-1.58668861e-01 -3.34640034e-02 -8.88730586e-02 1.04851618e-01\\n-5.17855048e-01 -2.43672878e-01 -1.94103152e-01 1.63487084e-02\\n-2.56109715e-01 -2.77911812e-01 1.19478285e-01 -4.85466346e-02\\n1.80046245e-01 1.38918266e-01 -5.33979833e-01 2.59514928e-01\\n-1.72233954e-01 -2.80555397e-01 2.87880749e-01 6.73805118e-01\\n6.10212386e-02 -4.11208272e-01 -5.89036107e-01 -3.71870399e-01\\n9.93701369e-02 -1.45639345e-01 6.26409203e-02 -3.69822890e-01\\n3.18945646e-01 4.79151085e-02 3.21598165e-02 2.98366576e-01\\n-7.89336860e-01 -1.32052019e-01 -2.59705752e-01 -5.94116822e-02\\n-4.64408815e-01 -8.70198160e-02 -2.05505207e-01 -1.03601567e-01\\n-1.64293081e-01 4.01377916e-01 1.35993242e-01 1.56736195e-01\\n-1.97466999e-01 3.09929162e-01 -1.08983524e-01 3.87615591e-01\\n1.63092569e-01 2.07932964e-01 1.87060937e-01 2.84121513e-01\\n-4.51928377e-01 4.44125414e-01 9.17320848e-02 -2.86035717e-01\\n3.39263260e-01 2.50265121e-01 3.72756511e-01 3.22554447e-02\\n2.88709700e-01 1.39379740e-01 -2.68914253e-01 4.27684605e-01\\n1.93647861e-01 -4.65027273e-01 3.70719396e-02 -1.23815440e-01\\n2.71027777e-02 -2.09795758e-02 1.18731678e-01 8.57883021e-02\\n-3.76653045e-01 4.08035636e-01 1.32654756e-01 -2.18823493e-01\\n-1.41579807e-01 -4.02292907e-01 -1.15498729e-01 -2.74306629e-02\\n-6.28863508e-03 1.14811644e-01 2.07974762e-01 8.88045803e-02\\n1.89713255e-01 2.26841494e-02 1.31103829e-01 7.79900134e-01\\n-9.19464827e-02 2.29460187e-02 -1.81933567e-01 3.64344031e-01\\n1.70638189e-01 -3.52228582e-01 2.40809292e-01 1.67695194e-01\\n2.30580904e-02 -1.51865333e-01 -2.42640376e-01 3.56357574e-01\\n-5.51771522e-02 -1.36377007e-01 -2.96466202e-01 1.61872908e-01\\n1.07995398e-01 -3.63866866e-01 6.49746060e-01 5.16096912e-02\\n2.15570971e-01 -1.14791282e-01 2.92915758e-02 -2.07340017e-01\\n-8.01957026e-02 2.32288226e-01 4.47496325e-02 2.99881339e-01\\n-3.13973814e-01 -2.50618756e-01 -1.67838678e-01 1.48434564e-01\\n-4.98181313e-01 1.34253725e-01 -1.63754985e-01 -5.92838600e-02\\n1.32413059e-01 -1.49993030e-02 -2.93919832e-01 1.48342505e-01\\n-2.19867304e-01 -8.92306119e-03 2.50411946e-02 2.74959683e-01\\n-2.67944604e-01 2.15192169e-01 -4.90611605e-03 -1.47452820e-02\\n6.29520535e-01 2.01777279e-01 2.49850050e-01 -7.58167822e-03\\n2.97119856e-01 -7.60359988e-02 1.28523797e-01 1.99007332e-01\\n-7.04479754e-01 3.41924518e-01 -6.38386142e-03 -1.88399687e-01\\n1.47952884e-01 -9.50368494e-02 2.98026025e-01 -2.93984145e-01\\n9.67463758e-03 -7.68316984e-02 -4.62446928e-01 -2.23728985e-01\\n-2.75179833e-01 -1.70573127e-02 3.76333326e-01 -5.46413124e-01\\n-1.18796624e-01 1.89847127e-01 -5.22299767e-01 -1.52322307e-01\\n5.67739569e-02 1.67434007e-01 1.37937203e-01 -1.26448162e-02\\n-1.58748493e-01 -5.34458876e-01 4.03631181e-02 -4.25987989e-01\\n-2.61071205e-01 8.61648247e-02 -2.59991169e-01 2.27802008e-01\\n-2.89184810e-03 4.44850810e-02 -9.92481709e-02 6.02122061e-02\\n-2.42737561e-01 -9.31348503e-02 1.53449476e-01 4.13637720e-02\\n3.75846356e-01 5.51709272e-02 -3.43426228e-01 4.65168178e-01\\n-3.50253552e-01 6.02663398e-01 1.26904577e-01 -8.30854416e-01\\n5.80330312e-01 2.76893437e-01 -8.15743357e-02 -3.57017130e-01\\n4.58799303e-01 -4.13399905e-01 -5.20821474e-03 1.66370288e-01\\n-4.09931928e-01 -2.70665824e-01 2.71393657e-01 -2.46527061e-01\\n-3.22143346e-01 6.30041301e-01 5.98559007e-02 5.77126928e-02\\n2.57399172e-01 -2.07901031e-01 -1.62551269e-01 -1.53340539e-02\\n-1.70107096e-01 -2.33841330e-01 -6.24514043e-01 -6.82121441e-02\\n-1.41546249e-01 -4.43393677e-01 -1.58732638e-01 -4.34173167e-01\\n-2.20677331e-01 -3.28077704e-01 -2.74508923e-01 1.72392055e-01\\n2.65678167e-01 1.26799017e-01 -4.56807539e-02 7.81246945e-02\\n-1.01587892e-01 -6.32973611e-01 -1.68525185e-02 1.51149556e-01\\n3.47340912e-01 1.90080151e-01 1.44686446e-01 2.59971409e-03\\n1.48129910e-01 6.64408445e-01 -3.29274654e-01 -3.21291476e-01\\n8.61536264e-02 2.80172765e-01 -8.10412690e-02 -1.36325061e-01\\n2.22767830e-01 4.19375867e-01 -2.58678198e-01 1.94884948e-02\\n3.93413827e-02 -2.70908065e-02 3.12490761e-01 -2.07878072e-02\\n-2.53939092e-01 -2.51328707e-01 -3.87673192e-02 1.42291442e-01\\n-5.44385731e-01 -1.98399529e-01 5.19523740e-01 1.40723765e-01\\n1.11953020e-01 1.04060054e-01 1.68583483e-01 3.61770508e-03\\n-2.71368444e-01 -3.29952240e-01 2.68432945e-01 1.20747171e-01\\n7.75021240e-02 6.46435097e-02 8.28349218e-02 -6.87111914e-01\\n-3.30407262e+00 -1.71930954e-01 2.02260360e-01 -1.64086282e-01\\n1.78155467e-01 -2.22340822e-01 6.32198453e-02 -6.37120306e-02\\n-3.18570167e-01 7.59409443e-02 -1.46557778e-01 -1.77360415e-01\\n8.65380764e-02 1.94717795e-01 2.26436749e-01 1.81306228e-01\\n1.82480693e-01 -8.11837018e-02 -4.19288315e-03 3.75504345e-01\\n-2.23508447e-01 -6.22583449e-01 1.80904835e-01 1.41312163e-02\\n2.61846393e-01 2.24492252e-01 -2.50124246e-01 -5.18424548e-02\\n-2.39827022e-01 -2.12106824e-01 4.51090448e-02 -2.85704523e-01\\n-1.36054844e-01 2.90936291e-01 3.29243183e-01 -9.02833790e-02\\n2.52094753e-02 -3.29681277e-01 -2.24715695e-01 -4.00100350e-01\\n3.97180989e-02 -6.19463384e-01 -3.24749500e-02 -2.72314280e-01\\n6.74962342e-01 -2.46959761e-01 1.14707135e-01 -1.67439487e-02\\n1.84859768e-01 2.13072553e-01 2.03018412e-01 3.75383161e-02\\n-1.77529678e-01 -2.25940973e-01 -9.60286483e-02 -1.46943957e-01\\n5.52915096e-01 4.60177362e-01 -1.72459289e-01 1.65214725e-02\\n6.81450665e-02 -1.54102787e-01 -4.47540343e-01 -2.89045066e-01\\n-1.04265667e-01 -3.18057775e-01 -5.37276149e-01 -3.78263116e-01\\n-1.34283856e-01 -1.29943952e-01 -7.08092675e-02 6.88403308e-01\\n-3.14828575e-01 -3.14015359e-01 -3.82952020e-02 -4.46423888e-01\\n2.86891848e-01 -1.68531954e-01 -2.68515814e-02 -8.56998414e-02\\n-2.40316167e-01 -4.66826916e-01 2.45728623e-02 -1.22726701e-01\\n-1.32415667e-01 -3.01519066e-01 4.03790846e-02 -1.16923980e-01\\n-3.57324630e-01 -4.51437056e-01 4.32183355e-01 9.40583572e-02\\n3.63667309e-01 1.04860872e-01 3.95384371e-01 -1.84562951e-02\\n3.24187219e-01 -8.84497364e-04 -1.31552443e-01 -3.86131406e-01\\n4.77729999e-02 -2.79481392e-02 4.40293431e-01 -2.55808830e-01\\n-1.45862717e-02 9.70536768e-02 -3.27170700e-01 2.40220614e-02\\n2.77355015e-01 1.62564032e-02 9.60907787e-02 -1.26853824e-01\\n2.93614596e-01 -2.88604379e-01 -2.13362053e-01 5.83545305e-02\\n1.40569121e-01 7.28971183e-01 2.83783339e-02 -3.86949748e-01\\n-2.14778125e-01 4.32309449e-01 -5.51320389e-02 -3.49988304e-02\\n-1.39775991e-01 1.60014629e-01 -2.80635744e-01 1.41878828e-01\\n-3.57838832e-02 -8.19600672e-02 -2.91420519e-01 -9.03920159e-02\\n-5.92990145e-02 3.60120565e-01 1.70873165e-01 9.08401236e-02\\n-8.28190148e-02 -3.85383785e-01 -1.35001197e-01 2.15703234e-01\\n3.28125447e-01 4.94062632e-01 2.10825935e-01 -1.94372728e-01\\n-4.38519865e-02 4.53651160e-01 -2.01023981e-01 1.15158148e-01\\n-2.57664859e-01 2.00610340e-01 -6.25755548e-01 -2.11565450e-01\\n-3.03273439e-01 -4.14990455e-01 2.31352359e-01 3.79889280e-01\\n1.63083687e-01 -5.73794544e-02 1.12048559e-01 -4.79715586e-01\\n2.72475064e-01 2.33182400e-01 1.44110098e-01 -1.61357317e-02\\n1.79289225e-02 6.33740067e-01 6.68886900e-02 -1.77954674e-01\\n-1.39051691e-01 7.68963024e-02 -5.10016941e-02 -2.42452711e-01\\n1.06987551e-01 -5.95722020e-01 -2.04349965e-01 3.80669743e-01\\n1.96615398e-01 -3.14215243e-01 -2.50706285e-01 3.10253263e-01\\n-2.54265429e-03 -2.29488179e-01 -2.39486665e-01 -1.19683042e-01\\n3.96375120e-01 9.53125358e-02 2.63043195e-01 -4.96156275e-01\\n-1.86428830e-01 3.09792664e-02 -8.35147034e-03 3.76741081e-01\\n1.75751690e-02 1.00763030e-01 -5.63400201e-02 -9.66192633e-02\\n5.07474661e-01 4.09154706e-02 -1.30498379e-01 -4.12117094e-02\\n1.49561614e-01 -1.09006159e-01 -5.24051309e-01 1.25220209e-01\\n4.54301760e-02 -2.69800037e-01 1.51892267e-02 2.16481760e-01\\n1.75233588e-01 1.08305074e-01 -6.51356518e-01 -1.75470546e-01\\n-3.45530629e-01 -9.99106318e-02 1.42639011e-01 -5.25156379e-01\\n8.39736219e-03 -1.16491310e-01 -5.69075167e-01 1.32365420e-01\\n-2.41503209e-01 -1.36286825e-01 1.11986257e-01 5.64111862e-03\\n-2.76751488e-01 -2.25120857e-01 3.48017621e-03 2.92190760e-01\\n-3.65601569e-01 -3.12202126e-01 8.93553123e-02 -1.03620231e+00\\n1.77130565e-01 -3.00842151e-03 -9.45256352e-02 1.30194396e-01\\n-9.40877870e-02 -7.07087398e-01 7.58455545e-02 -4.12557065e-01\\n-1.91171750e-01 -5.82695082e-02 -3.06775004e-01 -1.91936001e-01\\n2.16335729e-01 -3.54591943e-02 -3.92707407e-01 4.14931506e-01\\n-2.95460582e-01 3.28543782e-01 -1.41424060e-01 6.40782416e-02\\n2.17395439e-03 -2.01965272e-01 8.48638713e-02 -3.93716514e-01\\n-4.50954229e-01 -2.80952930e-01 -2.97854125e-01 -2.03546599e-01\\n-7.31886104e-02 -3.14401448e-01 -1.78091396e-02 7.27895498e-02\\n4.02165473e-01 1.89771831e-01 -1.60586879e-01 -2.85020977e-01\\n9.57611799e-02 -5.04237890e-01 9.62570310e-02 -1.63360052e-02\\n-6.52600378e-02 -1.79258913e-01 1.50355294e-01 1.84127271e-01\\n1.91707715e-01 -3.96205574e-01 3.70218635e-01 -4.34058607e-01\\n-3.22905183e-01 -1.00351803e-01 -5.16195372e-02 1.35785500e-02\\n3.72032970e-01 -4.67646658e-01 3.16159315e-02 3.61619055e-01\\n1.80674568e-01 2.57222056e-02 2.24107385e-01 -1.18851684e-01\\n-1.51188793e-02 3.10117781e-01 -3.00640523e-01 6.55708537e-02\\n8.72666895e-01 4.20163684e-02 7.86495805e-02 2.17268884e-01\\n1.50069073e-01 2.91687608e-01 4.82769787e-01 2.16742307e-02\\n-1.04057036e-01 2.88720876e-01 8.32005143e-02 -5.11483967e-01\\n-2.23820042e-02 -7.07458556e-02 -1.33308440e-01 -4.29232001e-01\\n6.61328554e-01 3.50179970e-01 -6.15570307e-01 -1.80379570e-01\\n-1.53254464e-01 -1.75628155e-01 2.62225181e-01 -8.67972448e-02\\n-3.11884843e-02 -3.71223614e-02 4.28674132e-01 -1.07194647e-01\\n2.78546423e-01 5.49401820e-01 -2.29430541e-01 -3.33517790e-01\\n-5.63202761e-02 2.90435523e-01 1.39085636e-01 4.94012386e-01\\n-2.90235519e-01 2.49559969e-01 -5.25460169e-02 1.11588001e-01\\n-1.82662308e-01 2.60656685e-01 1.66221187e-01 1.06202960e-01\\n2.35790983e-01 4.43155281e-02 5.50771892e-01 5.46389163e-01\\n3.06035668e-01 4.85229701e-01 3.77146512e-01 -3.43686491e-02\\n5.57884216e-01 5.74662328e-01 3.33008200e-01 1.36371017e-01\\n-2.27391341e-04 2.00355768e-01 1.18588567e-01 -3.18369269e-02\\n3.99259716e-01 5.15224874e-01 8.03955495e-02 9.08952057e-01\\n4.17786151e-01 2.95784891e-01 6.83504879e-01 -6.65569425e-01\\n-2.90313303e-01 -4.44085570e-03 4.20362055e-01 -4.17078435e-01\\n-9.16199237e-02 1.24885507e-01 -2.34120563e-01 2.43046910e-01\\n-3.99488568e-01 -2.33658969e-01 5.48731908e-02 1.22577302e-01\\n9.95319337e-03 -1.76870450e-01 -2.62214929e-01 1.09910205e-01\\n-1.32925727e-03 -1.28251202e-02 -3.90288800e-01 -9.36507806e-02\\n-3.04343283e-01 -7.60904253e-02 -1.13473728e-01 -1.23712622e-01\\n-4.71565388e-02 -4.06034172e-01 -1.34943509e-02 -1.02940209e-01\\n1.71482638e-01 -1.43575594e-01 -6.59537539e-02 -1.31834328e-01\\n3.60157251e-01 1.78650662e-01 5.14416993e-01 7.50147030e-02\\n2.09285349e-01 -3.44306082e-01 -1.80910021e-01 2.13830918e-01\\n9.65255201e-02 4.07230146e-02 1.14702983e-02 3.13850105e-01\\n-2.39596620e-01 -1.49007052e-01 1.99193373e-01 2.96756953e-01\\n-4.16912347e-01 2.49593034e-02 -1.29148498e-01 1.29698068e-01\\n7.49038830e-02 1.40120104e-01 -2.16383904e-01 -7.80963674e-02\\n-2.47371644e-01 -4.90736991e-01 3.00567418e-01 -1.39332786e-01\\n-1.59559902e-02 1.55718541e-02 3.08467448e-01 2.73821026e-01\\n-2.61679411e-01 -7.85439368e-03 -4.06198800e-02 1.44031033e-01\\n-5.04076667e-03 2.21064001e-01 -1.31533191e-01 -3.20389599e-01\\n-2.73151636e-01 2.28696525e-01 -1.32139415e-01 9.22981128e-02\\n2.58937012e-02 3.68632615e-01 -6.86414987e-02 4.47538160e-02\\n4.31382239e-01 2.66966987e-02 -2.29474261e-01 -2.61173248e-01\\n-2.45649621e-01 -3.27400006e-02 -7.22273067e-02 -1.51843235e-01\\n2.19008878e-01 -3.26671988e-01 -6.45876229e-02 -5.07754050e-02\\n-7.89334103e-02 -2.83684820e-01 -1.49782058e-02 -1.75832555e-01]]',\n", + " \"Unit8 is looking for Data Engineer to join our team. You will build tools and infrastructure to help our client solve problem that directly impact their business - be it operations, finance, manufacturing or R&D. You will have opportunity to work with world-class experts who previously worked for companies like Google, Amazon, Palantir or Microsoft. We're looking to expand our engineering team in Lausanne, Zurich (Switzerland) and Krakow (Poland). What You’ll Do Design, build, maintain, and troubleshoot data pipelines and processing systems that are relied on for both production and analytics applications, using tools like Spark or Airflow. Use best practices in continuous integration and delivery. Help drive optimization, testing and tooling to improve data quality. Collaborate with other software engineers, ML experts and stakeholders, taking learning and leadership opportunities that will arise every single day. Work in multi-functional agile teams to continuously experiment, iterate and deliver on new product objectives. RequirementsWho You Are You know how to work with high volume heterogeneous data, preferably with distributed systems such as Hadoop. You know how to write distributed services in Python or Java or Scala. You are knowledgeable about data modeling, data access, and data storage techniques. You appreciate agile software processes, data-driven development, reliability, and responsible experimentation. You understand the value of teamwork. You are willing to travel up to 20% of your time. BenefitsWhat We Offer Work with cutting edge technology on projects that matter Challenging work close to a customer inside an experienced 10x engineering team Tailor-made mentorship program Dedicated budget for training 10% of the time for self-development Yearly bonus based on the performance of the company A package of shares Who We AreUnit8 is a Swiss-based startup focused on solving problems of big industries like chemical, pharma, automotive and finance. Our team comprised of world-class experts in ML and Software Engineering who previously worked for silicon companies like Google, Amazon, Palantir or Microsoft. We work with some of the biggest companies in the world to solve the problems that directly affect their business. Apart from that, Unit8 dedicate a part of resources and time on things that deeply matter to us - that includes collaboration on pro-bono and engineering for good cases.\",\n", + " '[\"Complex Problem Solving\", \"Leadership\", \"Writing\", \"Teamwork\", \"Collaboration\", \"Mentorship\", \"Infrastructure\", \"Operations\", \"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"Data Quality\", \"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Data Modeling\", \"Build Tools\", \"Analytic Applications\", \"Silicone\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Data Engineering\", \"Industrialization\", \"Apache Airflow\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Maintainability\", \"Agile Edge Technologies\", \"Data Pipeline\", \"Experimentation\", \"Iterators\", \"Transaction Processing Systems\", \"Software Engineering\", \"Building Design\", \"NetApp Data Storage\", \"Budgeting\", \"Finance\", \"Logical Data Models\", \"Close Work Orders\", \"Resourcing\", \"Agile Model Driven Development\", \"Java (Programming Language)\", \"New Product Development\", \"Process Driven Development\", \"Agile Unified Process\"]',\n", + " \"['English', 'Serbian']\"],\n", + " ['75',\n", + " 'data engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.51825631e-01 2.60474980e-01 4.06874985e-01 3.90913012e-03\\n4.12762940e-01 -1.23509467e-01 4.15141247e-02 1.99809834e-01\\n-5.73633872e-02 -3.32715869e-01 -8.14895481e-02 -2.22888529e-01\\n-1.08683847e-01 -8.90786946e-02 6.65177479e-02 4.58354712e-01\\n2.12481126e-01 1.29846826e-01 -1.25317678e-01 2.87066758e-01\\n1.07233323e-01 -2.88710091e-02 -3.41112688e-02 6.10245287e-01\\n4.81369436e-01 -2.63749976e-02 -1.07174106e-01 -1.31487604e-02\\n-2.51145959e-01 -2.75283664e-01 4.13886905e-01 6.83189109e-02\\n-1.65120408e-01 -2.11267978e-01 1.40884995e-01 1.06072046e-01\\n-2.27530733e-01 1.44333303e-01 -6.86841607e-02 2.22526193e-01\\n-3.98599684e-01 -2.54618526e-01 5.05172424e-02 -5.64737916e-02\\n-3.44995409e-01 -2.60444105e-01 -1.10870227e-02 6.98255468e-03\\n1.07521668e-01 3.31220776e-02 -4.24388617e-01 3.93952191e-01\\n-1.72791839e-01 -1.72602102e-01 2.19175339e-01 6.53271139e-01\\n6.78159148e-02 -5.71692646e-01 -3.86664540e-01 -3.44647557e-01\\n4.50987592e-02 -9.91723314e-02 1.18895866e-01 -1.65271431e-01\\n5.11818767e-01 -1.23031735e-01 -1.26418531e-01 3.62204283e-01\\n-7.39447236e-01 -2.74331332e-03 -3.33312154e-01 -5.51505797e-02\\n-3.76908571e-01 1.02122463e-02 -4.44090396e-01 -5.12092002e-02\\n-1.20048098e-01 4.02851760e-01 1.38234887e-02 1.47980705e-01\\n-1.34200513e-01 2.04484105e-01 -2.23475248e-01 2.54216611e-01\\n3.05090219e-01 1.64455652e-01 3.44829649e-01 2.42483169e-01\\n-4.02494699e-01 3.94097179e-01 2.37292767e-01 -3.18601221e-01\\n2.69708216e-01 6.48515150e-02 3.89104009e-01 1.75005004e-01\\n3.66164111e-02 1.09661408e-01 -1.35631844e-01 2.48268828e-01\\n1.88856825e-01 -2.47985587e-01 4.59713377e-02 -1.31332695e-01\\n-8.80389065e-02 3.35684046e-02 3.75377722e-02 2.09851697e-01\\n-1.90073296e-01 4.02840495e-01 1.58524260e-01 -2.16959044e-01\\n-1.32938072e-01 -5.41697264e-01 -2.07490698e-01 -6.17225468e-02\\n7.55854100e-02 2.19490096e-01 2.24812925e-01 1.64613068e-01\\n1.12234317e-01 3.60421627e-03 1.60512492e-01 7.86299706e-01\\n9.62958671e-03 -5.54945506e-03 -2.67482549e-01 3.42391551e-01\\n1.83584869e-01 -2.69618630e-01 2.08376229e-01 1.88845098e-01\\n6.77909032e-02 -1.02915347e-01 -3.08481932e-01 2.69387037e-01\\n-1.52751639e-01 -2.27202863e-01 -2.46799976e-01 9.60297585e-02\\n-1.13200359e-01 -5.01638114e-01 5.74499190e-01 3.83302309e-02\\n2.43318319e-01 -1.86638422e-02 3.16164158e-02 -1.32968292e-01\\n-1.04667917e-01 3.02572399e-01 5.87792173e-02 1.64582431e-01\\n-1.81787014e-01 -2.48159960e-01 -1.69674158e-01 3.35976124e-01\\n-2.33164728e-01 1.25408575e-01 -1.30628213e-01 -1.41185045e-01\\n2.35079348e-01 1.84523135e-01 -3.36098671e-01 1.39131725e-01\\n-4.33384813e-02 -2.79624462e-01 -9.41888094e-02 3.25221926e-01\\n-1.79208934e-01 2.02472001e-01 8.78532082e-02 -1.27766788e-01\\n6.38435960e-01 2.56646931e-01 2.92353541e-01 2.13959310e-02\\n1.52816474e-01 -1.13505729e-01 2.73565948e-01 1.16688170e-01\\n-6.16993725e-01 4.35447454e-01 -7.00093508e-02 -2.90477931e-01\\n9.86669511e-02 9.27900076e-02 3.29949647e-01 -3.07409734e-01\\n-1.34536298e-02 -1.50021210e-01 -3.96039814e-01 -3.82384896e-01\\n-2.97211349e-01 2.81291287e-02 3.56320262e-01 -4.55654114e-01\\n-4.96302024e-02 2.05018222e-01 -5.30018330e-01 -1.18802428e-01\\n1.44493997e-01 9.29223821e-02 8.33150670e-02 1.02669440e-01\\n-1.24997087e-01 -6.28048241e-01 1.10602073e-01 -4.84517217e-01\\n-5.12431026e-01 2.80219689e-02 -3.27802420e-01 1.89743251e-01\\n1.26870364e-01 5.79458438e-02 -1.10783301e-01 1.41091600e-01\\n-2.75790840e-01 -4.83251251e-02 1.58106983e-01 1.96318284e-01\\n2.21045732e-01 -2.85191424e-02 -4.48545605e-01 5.79974473e-01\\n-1.11586012e-01 4.94819164e-01 2.65643537e-01 -9.00029421e-01\\n5.06973147e-01 1.69948176e-01 7.97947776e-03 -3.21403414e-01\\n4.01795536e-01 -3.76653045e-01 3.63695109e-03 1.09997049e-01\\n-1.96758896e-01 -1.43344507e-01 2.97089636e-01 -2.28747949e-01\\n-1.85660958e-01 5.00354826e-01 1.56889275e-01 -2.66454206e-03\\n2.98233360e-01 -2.06315815e-01 -1.24548070e-01 -1.02669075e-02\\n-1.44548327e-01 -1.95586964e-01 -3.82662416e-01 1.58996433e-01\\n-7.86734223e-02 -4.84353006e-01 -8.73262659e-02 -4.72779334e-01\\n-1.16279885e-01 -4.15782481e-01 -1.42055020e-01 2.38905191e-01\\n8.57087448e-02 2.13840440e-01 1.10041238e-02 -5.72525058e-03\\n-5.48504144e-02 -6.91962421e-01 -1.62524998e-01 9.88482684e-03\\n5.10468781e-01 2.04337016e-01 9.47710201e-02 -7.04658628e-02\\n5.84301539e-02 5.51369786e-01 -3.94084901e-01 -3.39456797e-01\\n1.02381475e-01 1.21447504e-01 4.20704260e-02 -8.44804421e-02\\n2.01594774e-02 3.26476187e-01 -1.15393169e-01 6.01187162e-02\\n-1.07294798e-01 9.18031484e-03 3.79638135e-01 -2.72027794e-02\\n-3.50476861e-01 -2.48713583e-01 -8.75295140e-03 2.79276311e-01\\n-4.78896528e-01 -2.76080102e-01 6.66689992e-01 3.53838354e-01\\n1.72114864e-01 2.69477487e-01 1.88976288e-01 -1.05627529e-01\\n-3.06986183e-01 -1.38842985e-01 2.64395922e-01 5.07715084e-02\\n1.79934829e-01 6.87500313e-02 -9.37601998e-02 -5.51650047e-01\\n-3.45617294e+00 -1.59167334e-01 6.00946583e-02 -2.69181520e-01\\n2.22532228e-01 -1.19356267e-01 2.26290971e-01 -1.07640155e-01\\n-3.52591455e-01 1.63185075e-02 -2.38639116e-01 -1.54561669e-01\\n-2.47431025e-02 2.80270457e-01 1.48224413e-01 1.76661178e-01\\n8.34619701e-02 -2.41139367e-01 -6.48709983e-02 3.45764905e-01\\n-5.38675450e-02 -6.52972996e-01 1.25706375e-01 1.62342906e-01\\n2.28207782e-01 9.39554051e-02 -3.68526787e-01 2.16445373e-03\\n-3.19679767e-01 -2.95057744e-01 9.68569592e-02 -2.52098739e-01\\n-1.75540447e-01 1.82250366e-01 1.21507123e-01 -1.99820533e-01\\n-3.66200693e-03 -2.52440810e-01 1.59284158e-03 -4.46149945e-01\\n-9.71083995e-03 -5.48551023e-01 1.31949224e-02 -4.83073853e-02\\n6.27601206e-01 -2.24560305e-01 2.26770341e-01 5.16676456e-02\\n1.40765026e-01 1.36780426e-01 6.56074584e-02 1.35411620e-02\\n-3.66673350e-01 -4.08929765e-01 -2.62509007e-02 -9.66215059e-02\\n6.38189673e-01 4.30419713e-01 -1.71735585e-01 4.97675277e-02\\n1.77173004e-01 -3.06105733e-01 -4.05683547e-01 -4.12492245e-01\\n-1.63999006e-01 -1.37768731e-01 -6.63295805e-01 -4.54915971e-01\\n-1.86964288e-01 -1.10862769e-01 -1.82278544e-01 5.10123312e-01\\n-2.72231877e-01 -4.30654615e-01 5.24025485e-02 -5.82034886e-01\\n2.29737967e-01 -1.78951398e-01 6.68383241e-02 -8.81958529e-02\\n-3.17720562e-01 -4.36096460e-01 1.10377043e-01 1.37527386e-04\\n-1.57818541e-01 -5.13851345e-02 3.10337692e-02 -2.56302059e-01\\n-3.82413656e-01 -4.09794241e-01 3.85798901e-01 -4.93684560e-02\\n3.07307214e-01 1.62749335e-01 3.46961230e-01 -1.23518417e-02\\n3.30809325e-01 -9.38806459e-02 1.22044422e-01 -4.36575681e-01\\n5.88232428e-02 5.99186197e-02 5.30385435e-01 -1.94078073e-01\\n1.38182849e-01 1.99168697e-01 -2.35549599e-01 -1.52561143e-02\\n4.38397706e-01 2.93889996e-02 1.51043683e-01 -8.27541947e-02\\n3.21023911e-01 -4.90401089e-01 -2.41959542e-01 9.52189416e-02\\n3.98007743e-02 6.27971530e-01 1.22550717e-02 -3.19577575e-01\\n-2.19403937e-01 4.94724840e-01 -1.41357496e-01 2.92669167e-03\\n-2.26926267e-01 7.22688213e-02 -1.24678515e-01 3.19668949e-01\\n-2.93432847e-02 -1.32108867e-01 -2.33987346e-01 -1.50121361e-01\\n-1.90603379e-02 1.68865800e-01 3.31338465e-01 4.37973477e-02\\n-4.29568486e-03 -2.61072934e-01 -1.45804599e-01 1.30059779e-01\\n2.15383098e-01 3.09285879e-01 2.19826281e-01 -2.33421117e-01\\n8.64105579e-03 1.80046409e-01 -2.62194335e-01 3.33031684e-01\\n-2.35327572e-01 1.49751469e-01 -4.21157002e-01 -1.95989326e-01\\n-1.43557996e-01 -4.04698461e-01 2.13273093e-01 2.74257511e-01\\n4.02743034e-02 -3.12148705e-02 2.34329477e-02 -4.95411426e-01\\n3.43155980e-01 1.47206247e-01 9.97711048e-02 1.83086798e-01\\n-3.53230610e-02 5.60517550e-01 -6.76355734e-02 -5.54673225e-02\\n-7.39993826e-02 -9.27753672e-02 -2.23753348e-01 -2.72373199e-01\\n-7.40292249e-03 -3.91076952e-01 -1.23958036e-01 5.02334833e-01\\n1.34085983e-01 -4.93663624e-02 -2.04096958e-01 2.16150358e-01\\n4.30973731e-02 -2.40580007e-01 -1.54961780e-01 2.27288101e-02\\n1.69617802e-01 1.44615844e-01 2.80243039e-01 -1.89721644e-01\\n-4.20743078e-02 2.86255460e-02 -6.38674572e-02 3.52844536e-01\\n1.01636231e-01 3.22218478e-01 -9.34881717e-02 -2.06299379e-01\\n6.11861289e-01 -5.66385947e-02 -5.39067276e-02 2.34690774e-02\\n6.22447804e-02 -3.97749394e-01 -3.83638471e-01 -2.45415941e-02\\n-3.19145247e-02 -1.99975058e-01 1.67137936e-01 1.04846403e-01\\n-4.85431850e-02 9.38702282e-03 -5.34934759e-01 -3.33273679e-01\\n-3.90988827e-01 -1.03051923e-01 1.07925296e-01 -4.55331475e-01\\n-1.08745925e-01 -5.02521768e-02 -6.04119301e-01 2.27425337e-01\\n-1.45630702e-01 -8.17643572e-03 6.49053752e-02 1.02700450e-01\\n-2.54541695e-01 -1.35008797e-01 7.72136450e-02 1.52527645e-01\\n-2.81220585e-01 -1.59214705e-01 -7.41408616e-02 -9.39887762e-01\\n1.47070691e-01 1.54017136e-01 -6.54764026e-02 1.71024829e-01\\n-6.76990971e-02 -5.90289056e-01 1.89387321e-01 -4.63828146e-01\\n3.67790752e-04 -1.42353857e-02 -1.91268787e-01 -4.46040869e-01\\n1.01977892e-01 1.03938334e-01 -2.80991137e-01 4.55224127e-01\\n-3.94144893e-01 3.41177791e-01 -9.19238850e-03 4.80700098e-02\\n-9.44248342e-04 -1.75338417e-01 1.51999325e-01 -1.99774384e-01\\n-4.05616432e-01 -2.71523982e-01 -4.00357276e-01 -1.99043810e-01\\n7.20948130e-02 -2.80739278e-01 -2.77766258e-01 1.38193101e-01\\n3.83717149e-01 2.13652223e-01 -1.71549916e-01 -2.23110259e-01\\n-2.52121016e-02 -4.94314730e-01 2.09761068e-01 -3.30540717e-01\\n-1.26056790e-01 -1.46898553e-01 2.22121134e-01 -7.53607601e-02\\n4.37708832e-02 -3.27965051e-01 4.96296585e-01 -1.99786767e-01\\n-3.84689242e-01 -1.52160496e-01 1.13038793e-01 -6.71877386e-03\\n2.90878177e-01 -4.57247913e-01 -8.59604925e-02 2.40713045e-01\\n3.13264430e-02 3.02072684e-03 2.21206695e-01 -5.71260564e-02\\n-1.72777936e-01 2.29112029e-01 -5.92693686e-01 4.41704430e-02\\n6.93508029e-01 2.16440737e-01 9.44155976e-02 1.93545997e-01\\n1.89588726e-01 3.29721212e-01 5.19270420e-01 -3.85815129e-02\\n-2.60146689e-02 3.30117077e-01 -7.49609992e-02 -5.14422357e-01\\n-1.64178293e-02 -6.90113381e-02 -1.46261796e-01 -3.30333859e-01\\n5.92500806e-01 3.05447727e-01 -3.70984644e-01 -3.96625876e-01\\n-5.24157435e-02 -7.65533820e-02 3.15376908e-01 5.88367991e-02\\n9.59437564e-02 -1.77370578e-01 6.23382568e-01 4.11120337e-03\\n2.58878380e-01 4.99415427e-01 -2.23764181e-01 -3.27023894e-01\\n-3.81400771e-02 2.28636205e-01 9.58997533e-02 5.82797706e-01\\n-1.99544638e-01 2.48014122e-01 -2.51014950e-03 1.51223525e-01\\n-1.37478128e-01 1.39519379e-01 3.23196352e-01 7.43699893e-02\\n2.74971843e-01 4.86505069e-02 3.13049614e-01 4.54655409e-01\\n1.14561625e-01 4.06999350e-01 2.44747743e-01 -5.01292385e-03\\n2.92616934e-01 6.24267757e-01 3.98849845e-01 2.05520838e-01\\n9.15469304e-02 1.31170824e-01 -8.34355224e-03 -9.42473114e-02\\n2.98534840e-01 3.63581330e-01 1.83475420e-01 7.57415354e-01\\n2.66097486e-01 3.45554709e-01 6.67964816e-01 -7.07788646e-01\\n-3.71760726e-01 4.05201204e-02 5.45309544e-01 -3.66362095e-01\\n-6.98391050e-02 2.18890563e-01 -3.62161100e-01 2.31792539e-01\\n-5.56723416e-01 -2.26506144e-01 -2.06937846e-02 -2.61557549e-01\\n6.94031343e-02 -1.30092293e-01 -1.64267972e-01 9.55166444e-02\\n-1.88375145e-01 -1.78112999e-01 -2.52038866e-01 -1.61634296e-01\\n-2.69474834e-01 -4.02885936e-02 8.35449202e-04 -1.53247252e-01\\n-2.40387172e-01 -3.31419140e-01 -1.43797219e-01 7.97109082e-02\\n4.36672419e-01 -1.66872621e-01 -2.01521680e-01 -2.22005159e-01\\n1.24346927e-01 2.99951226e-01 6.31840527e-01 -6.47152215e-02\\n6.95404634e-02 -3.65861580e-02 -2.26565167e-01 7.69360876e-03\\n1.27081364e-01 -4.97558825e-02 3.76648381e-02 4.27637070e-01\\n-2.92656422e-01 -1.74525827e-01 1.70096651e-01 2.28486598e-01\\n-4.26923245e-01 -2.30515897e-02 6.63986895e-03 3.15136075e-01\\n5.69084622e-02 2.79291004e-01 -2.14494243e-01 1.42237037e-01\\n-8.87006223e-02 -5.13788521e-01 4.24557716e-01 -9.82723460e-02\\n-1.92426711e-01 1.37909681e-01 2.61321843e-01 2.21965134e-01\\n-2.44948596e-01 -1.62650615e-01 -1.03462324e-01 2.05686703e-01\\n-4.68646847e-02 3.96594554e-01 -1.62942603e-01 -1.18335366e-01\\n-2.76485860e-01 2.85828888e-01 -4.31293733e-02 2.23143354e-01\\n-2.43220050e-02 3.19200069e-01 5.32066412e-02 4.72373590e-02\\n1.79505885e-01 8.35023224e-02 -1.89960346e-01 -2.98485667e-01\\n-2.84553051e-01 -2.47325543e-02 7.51628205e-02 -9.05780494e-02\\n1.64595917e-01 -3.51225585e-01 -7.36308098e-02 -2.48227671e-01\\n-2.13619977e-01 -4.37639117e-01 -1.83824167e-01 -1.47303781e-02]]',\n", + " 'Job Informationen Responsibilities: Define and build data management infrastructure of our development platform with special focus on efficient data pipelines for usage in production environments Study, evaluate and select appropriate infrastructure and tooling Define data management processes and best practices for the full data lifecycle Work with clients to model data landscapes, define data pipelines and curate data for usage in data-driven use cases and services Mentor and educate team members and customers Your profile: Minimum qualifications Master’s degree in Computer Science or equivalent subject Very strong analytical skills with a mindset to make things “as simple as possible, but not simpler” Profound experience with relational databases and very good command of SQL Experience with data pipelines and ETL Experience with BigData platforms (e.g. Spark, Hadoop) Experience with data preparation and data scraping for machine learning models and their deployment to production Programming experience (e.g. Python, R, Java, PL/SQL, etc.) Strong interest in banking and financial services industry Open, curious, team-oriented personality with persistency and tenacity High sense of ownership and quality Excellent communication skills, both towards customers and peers Ability to think ahead, work independently and set priorities Very strong command of English, good command of German (verbal and written) Willingness to travel (mostly within Switzerland, occasionally EU/UK) Benötigte Skills SQL ETL Python Python R JAVA PL/SQL PLSQL Englisch Reisetaetigkeit',\n", + " '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Team Oriented\", \"Infrastructure\", \"Persistence\"]',\n", + " '[\"PL/SQL\", \"Python Server Pages\", \"Tooling\", \"Programming (Music)\", \"Data Scraping\", \"Computer Science\", \"Data Management\", \"Data Modeling\", \"Good Agricultural Practices\", \"Financial Services\", \"Landscaping\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Pipeline\", \"Management Process\", \"Extract Transform Load (ETL)\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Personalization\", \"R (Programming Language)\", \"Data Curation\", \"Banking\", \"Relational Databases\", \"Service Industries\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Serbian', 'Sinhalese']\"],\n", + " ['68',\n", + " 'software engineer',\n", + " 'Chiasso',\n", + " 'Film Production & Distribution',\n", + " '',\n", + " '[[-1.10012941e-01 2.50470519e-01 4.47021544e-01 7.62318075e-03\\n4.62903321e-01 -1.23481639e-01 1.25570491e-01 2.44325876e-01\\n3.67624722e-02 -4.38723087e-01 -1.22936435e-01 -2.46223420e-01\\n-9.11628082e-03 -9.29438695e-03 5.71359470e-02 3.63453090e-01\\n2.53457546e-01 -3.03699821e-02 -2.00233787e-01 4.40562785e-01\\n1.52866721e-01 -6.13864996e-02 6.80958107e-02 6.93907142e-01\\n4.41830158e-01 -4.54013608e-03 -2.18034536e-02 -7.38844723e-02\\n-2.11520836e-01 -3.17640036e-01 3.76719534e-01 -3.89324762e-02\\n2.38037594e-02 -3.50452602e-01 4.59056944e-02 1.72284432e-02\\n-1.31245151e-01 3.04484181e-03 1.87065490e-02 1.28031567e-01\\n-3.92087758e-01 -1.23583615e-01 8.59400630e-03 2.02191919e-02\\n-2.11099193e-01 -3.12084407e-01 1.07930720e-01 -1.05607897e-01\\n1.37010172e-01 -1.06115431e-01 -4.44776684e-01 3.70078236e-01\\n-1.88915402e-01 -2.33930528e-01 3.48369181e-01 6.47744775e-01\\n4.44919392e-02 -5.04125237e-01 -5.12717426e-01 -2.86719531e-01\\n2.40827035e-02 -4.05313857e-02 1.82288419e-02 -8.89614522e-02\\n2.47844741e-01 1.33271776e-02 4.70391214e-02 2.86254257e-01\\n-6.57482862e-01 -4.78459150e-02 -2.32855380e-01 2.18541101e-02\\n-3.31831217e-01 -1.59573227e-01 -3.10385317e-01 -9.38830227e-02\\n2.28110701e-03 5.07326484e-01 1.03619002e-01 -1.55620920e-02\\n-2.12682113e-01 1.42840058e-01 -3.02678108e-01 2.16910616e-01\\n2.14599013e-01 1.06917620e-01 3.28376353e-01 3.62879217e-01\\n-4.29095685e-01 4.19654220e-01 1.63889796e-01 -3.97462189e-01\\n2.85219610e-01 7.79108405e-02 5.06142735e-01 1.44823343e-01\\n1.04369193e-01 2.29737878e-01 -1.33120790e-01 2.49118775e-01\\n2.01877475e-01 -1.39971942e-01 -1.34994239e-01 -7.79017806e-02\\n1.54902413e-03 -1.09885558e-01 -1.25419423e-02 1.33354589e-01\\n-3.39495599e-01 5.18693030e-01 1.54752046e-01 -2.36832231e-01\\n-5.49510121e-02 -4.15887833e-01 -1.02557279e-01 -1.75335348e-01\\n-2.74720285e-02 1.83461428e-01 1.22072347e-01 1.80916414e-01\\n1.14876524e-01 3.59974988e-02 1.27981812e-01 8.67739558e-01\\n-6.35130405e-02 9.16547477e-02 -2.57079810e-01 2.48824105e-01\\n9.98084694e-02 -3.10137630e-01 2.39390135e-01 1.40937150e-01\\n-1.06097065e-01 -8.28493237e-02 -2.39718884e-01 2.44963765e-01\\n-1.51680335e-01 -2.31603056e-01 -2.40500540e-01 1.64550528e-01\\n-1.08818166e-01 -3.25645804e-01 5.18735170e-01 7.27473125e-02\\n3.66622433e-02 -4.17074934e-02 -1.15242466e-01 -1.17945679e-01\\n-1.40849769e-01 1.97806969e-01 7.46065453e-02 1.45685196e-01\\n-2.95734733e-01 -2.95975894e-01 -2.32712477e-01 2.36166328e-01\\n-3.67443323e-01 4.33284156e-02 -2.53742278e-01 -1.26388326e-01\\n3.40133667e-01 1.00808889e-01 -4.23965037e-01 3.15503776e-01\\n5.73892519e-02 2.17308700e-02 -1.33384109e-01 2.85237551e-01\\n-1.41019940e-01 2.38344729e-01 -2.95608807e-02 -1.35206189e-02\\n6.92211628e-01 2.09686011e-01 1.11002862e-01 -3.18190008e-02\\n3.71634990e-01 -7.82537311e-02 1.72736987e-01 1.14630967e-01\\n-5.93129814e-01 2.24569887e-01 -1.18505806e-01 -9.42846090e-02\\n2.02682167e-01 -1.19505987e-01 1.60792902e-01 -3.26074064e-01\\n5.23647219e-02 -1.01331547e-02 -3.60718668e-01 -3.64175647e-01\\n-1.95972383e-01 -1.50333550e-02 3.98813546e-01 -3.07920992e-01\\n-3.43605727e-02 2.31086165e-01 -5.43899894e-01 -8.85231569e-02\\n3.18682313e-01 2.07243979e-01 2.02752739e-01 2.08226055e-01\\n-7.87236691e-02 -4.28158104e-01 8.77275765e-02 -4.39233780e-01\\n-3.03926557e-01 1.84423953e-01 -2.90903538e-01 2.32999921e-01\\n7.16643184e-02 -1.77714974e-05 -1.92187011e-01 8.58783573e-02\\n-1.13346770e-01 -1.35578021e-01 1.41854897e-01 1.08108968e-02\\n2.08949238e-01 1.68700024e-01 -3.94689441e-01 4.46140021e-01\\n-2.10058153e-01 4.28580642e-01 6.09100796e-02 -9.37987447e-01\\n5.27969003e-01 1.96625203e-01 -9.08250809e-02 -3.48471373e-01\\n4.60195720e-01 -2.70923495e-01 1.78242415e-01 1.25302896e-01\\n-2.97267973e-01 -2.76605546e-01 2.57663995e-01 -1.89104229e-01\\n-2.61997879e-01 5.23096919e-01 1.05462879e-01 1.14958160e-01\\n1.95214182e-01 -6.62928373e-02 -1.90549254e-01 1.30824298e-01\\n-7.01125786e-02 -1.71031818e-01 -5.09049892e-01 9.39098448e-02\\n-1.20466843e-01 -4.30068314e-01 -1.43864408e-01 -5.29655814e-01\\n-2.89729059e-01 -4.62442875e-01 -2.12303102e-01 2.20529452e-01\\n2.05937028e-01 2.11702973e-01 -1.40874177e-01 2.23908909e-02\\n-4.60025221e-02 -6.28447890e-01 3.22187692e-03 1.30759418e-01\\n3.92721951e-01 1.89028352e-01 6.16211966e-02 -4.76873741e-02\\n-5.26029132e-02 5.38343430e-01 -4.85375404e-01 -1.02256849e-01\\n2.07169130e-01 1.30829886e-01 4.88320440e-02 -2.56732821e-01\\n4.77302819e-05 1.95507467e-01 -2.53248215e-01 1.70020670e-01\\n3.37195694e-02 -5.72493635e-02 2.94688165e-01 -3.88828143e-02\\n-3.89996946e-01 -2.29939967e-01 -1.79155078e-02 2.80436128e-01\\n-5.88391066e-01 -2.05896407e-01 7.22771227e-01 9.18255672e-02\\n6.50228709e-02 1.25886798e-01 3.01764339e-01 -6.77710250e-02\\n-2.13477463e-01 -1.87686026e-01 3.08631450e-01 1.79099128e-01\\n1.90205395e-01 6.14645258e-02 -1.62507772e-01 -7.37720311e-01\\n-3.44775796e+00 -1.91172779e-01 1.76672369e-01 -2.24034429e-01\\n1.84050381e-01 -1.20466061e-01 9.53514427e-02 -1.09181389e-01\\n-2.83488125e-01 5.99379018e-02 -3.43893468e-01 -3.17648426e-02\\n1.45940855e-01 3.44773591e-01 1.46317691e-01 2.20983759e-01\\n1.50097072e-01 -1.77730531e-01 7.39100575e-03 2.95644373e-01\\n-2.61173785e-01 -5.95391393e-01 2.54958451e-01 4.96640354e-02\\n2.76129901e-01 2.40309894e-01 -4.16081727e-01 -9.39517245e-02\\n-1.87265128e-01 -1.88248605e-01 6.85101599e-02 -1.65217102e-01\\n-1.21384442e-01 3.62184346e-01 2.48463124e-01 -1.76614001e-02\\n8.69665295e-02 -4.95112658e-01 -5.13296798e-02 -3.55179727e-01\\n7.31112882e-02 -7.18506813e-01 1.79983713e-02 -1.26108527e-01\\n5.50911784e-01 -1.72152013e-01 1.72777236e-01 7.36195296e-02\\n2.33043879e-01 1.37694985e-01 -2.97690555e-03 8.18728432e-02\\n-2.08410203e-01 -1.64473727e-01 -9.43721533e-02 -5.95708974e-02\\n5.65099955e-01 4.93477792e-01 -2.35337570e-01 -1.61434025e-01\\n-9.77121294e-02 -2.89260358e-01 -4.93865967e-01 -2.83251077e-01\\n-2.01496512e-01 -2.13037342e-01 -7.29650795e-01 -3.96988511e-01\\n-2.21128583e-01 -8.86087269e-02 -2.25295991e-01 7.05511212e-01\\n-2.62344748e-01 -3.25369298e-01 -2.24544778e-02 -3.19504797e-01\\n5.94823509e-02 -1.12579823e-01 7.60319829e-02 -7.04938099e-02\\n-2.35558450e-01 -3.85741532e-01 1.73618004e-01 2.10461896e-02\\n-2.41451666e-01 -2.65895873e-01 1.46236315e-01 -6.88198581e-02\\n-2.62146860e-01 -4.36277568e-01 4.11964834e-01 1.00677773e-01\\n2.13773400e-01 -8.84544849e-03 4.00483191e-01 2.55469549e-02\\n2.98367441e-01 -1.84673995e-01 5.19332252e-02 -4.18981552e-01\\n1.27792761e-01 2.41414905e-02 6.68128669e-01 -2.00941101e-01\\n1.22046746e-01 8.20060670e-02 -3.10632676e-01 -2.17405520e-02\\n3.95080686e-01 -6.14599846e-02 3.98053080e-02 -2.19420254e-01\\n2.52758324e-01 -3.18713725e-01 -2.80584276e-01 5.47411852e-03\\n1.15285553e-01 7.10785270e-01 -1.69613324e-02 -4.53787863e-01\\n-2.59640664e-01 3.60180259e-01 -8.74342620e-02 -1.95133209e-01\\n-2.17105061e-01 1.32989019e-01 -2.80065060e-01 8.25791135e-02\\n9.76574719e-02 8.70897807e-03 -2.90812433e-01 -1.18685216e-01\\n-1.32323727e-01 2.59659529e-01 2.65245289e-01 1.84636116e-02\\n-1.98791884e-02 -4.13618624e-01 -4.06362638e-02 2.10191756e-01\\n1.06387123e-01 2.69592583e-01 1.47949070e-01 -3.09367061e-01\\n-3.87316979e-02 2.70249963e-01 -1.61175370e-01 1.22753806e-01\\n-2.54008949e-01 1.34274036e-01 -5.28644502e-01 -3.26742232e-01\\n-2.99596965e-01 -3.67729068e-01 1.40982997e-02 4.03252006e-01\\n5.83771132e-02 -5.59020191e-02 3.25823314e-02 -4.28824067e-01\\n2.75585234e-01 -3.23800258e-02 2.45673612e-01 9.68115777e-02\\n1.17397442e-01 5.80042124e-01 1.19286850e-02 -2.32902691e-01\\n-9.16453823e-02 -5.84164076e-03 -3.08908492e-01 -1.20897010e-01\\n2.11256575e-02 -4.19384241e-01 -5.78539446e-02 4.17571425e-01\\n1.93481386e-01 -2.00555071e-01 -1.21428184e-01 2.53280342e-01\\n-7.32681528e-02 -3.08266789e-01 -1.98888183e-01 -1.42246336e-01\\n3.98349404e-01 -4.24597152e-02 2.99416929e-01 -4.40168142e-01\\n3.85698769e-03 -1.20824561e-01 -8.17181244e-02 4.82242882e-01\\n9.03292447e-02 9.30096731e-02 -6.00879043e-02 4.23767604e-03\\n5.61940134e-01 -2.26192474e-02 -7.89087862e-02 4.15842608e-02\\n1.31305724e-01 -2.16246307e-01 -5.49400568e-01 7.76759461e-02\\n2.11669784e-02 -1.59281999e-01 3.95505540e-02 1.52924970e-01\\n9.10619944e-02 1.88257359e-02 -5.72728336e-01 -2.69188702e-01\\n-3.86804700e-01 -6.63298294e-02 9.15820077e-02 -6.65654063e-01\\n-1.15531310e-01 1.94864161e-02 -5.37414730e-01 2.85714805e-01\\n-1.34082735e-01 -8.65770578e-02 8.66236016e-02 2.66879164e-02\\n-2.71023601e-01 -1.83643997e-01 1.38369665e-01 7.02836439e-02\\n-2.98597574e-01 -1.48576126e-01 1.79574877e-01 -9.39351082e-01\\n1.98692918e-01 3.17853093e-02 -1.48597896e-01 4.58805785e-02\\n-6.66105375e-02 -6.60189509e-01 2.14171246e-01 -4.10021335e-01\\n-8.38513523e-02 -3.78951035e-03 -2.16160208e-01 -4.28993344e-01\\n6.69576079e-02 -7.70870000e-02 -3.60684782e-01 3.49363804e-01\\n-3.14594358e-01 3.67190003e-01 5.86253330e-02 1.05138928e-01\\n1.09997109e-01 -3.06649148e-01 -3.99776287e-02 -4.06819642e-01\\n-5.40746808e-01 -8.80865157e-02 -2.89883316e-01 -1.19079255e-01\\n6.20841756e-02 -3.32511544e-01 -1.45653754e-01 5.27217984e-02\\n2.95580089e-01 1.62493378e-01 -6.35830015e-02 -2.88838208e-01\\n-5.77366650e-02 -5.09525597e-01 4.12790850e-02 7.86661357e-03\\n-1.22106746e-02 -1.00146905e-01 3.86836737e-01 5.51682189e-02\\n1.74759194e-01 -3.57936442e-01 5.59384763e-01 -3.30532551e-01\\n-2.88161874e-01 -8.81625041e-02 -4.28027548e-02 1.49170950e-01\\n3.39139372e-01 -4.26507115e-01 -2.70741675e-02 3.27434003e-01\\n1.53594956e-01 9.05248299e-02 3.36502850e-01 -1.47999644e-01\\n-1.27233207e-01 1.97953060e-01 -3.61297190e-01 2.09337264e-01\\n7.11478710e-01 -4.82371859e-02 5.61578982e-02 1.18219934e-01\\n8.48385766e-02 2.30178833e-01 6.17283463e-01 -1.18414551e-01\\n-1.69422269e-01 4.13275808e-01 7.91588649e-02 -6.13373756e-01\\n-1.20063111e-01 -7.75925815e-03 -8.71705711e-02 -2.88340867e-01\\n5.99007308e-01 3.78376871e-01 -3.44215155e-01 -2.44394675e-01\\n-1.40219122e-01 -1.60340875e-01 7.03253672e-02 2.84910873e-02\\n1.30121291e-01 2.98768729e-02 5.67786098e-01 -8.22214931e-02\\n1.71368569e-01 4.61361170e-01 -1.17683873e-01 -3.79283994e-01\\n-1.03428736e-01 1.79372966e-01 9.40807238e-02 3.99562150e-01\\n-1.46710813e-01 2.08850533e-01 1.02987394e-01 7.45752305e-02\\n-7.22869933e-02 -4.52621579e-02 1.06191769e-01 7.38420561e-02\\n1.16560459e-01 1.07244954e-01 5.04447401e-01 4.31542933e-01\\n4.00300741e-01 4.53484833e-01 3.04671258e-01 1.19413100e-02\\n5.91943562e-01 7.32437491e-01 3.23637128e-01 1.51883885e-01\\n-8.27608183e-02 5.83784245e-02 1.13580018e-01 9.21359286e-04\\n4.00977731e-01 4.25269485e-01 8.27398300e-02 7.59780526e-01\\n4.40533578e-01 2.89181948e-01 5.50154865e-01 -6.40766740e-01\\n-3.46369147e-01 1.08832687e-01 5.07788539e-01 -2.19588935e-01\\n6.81672990e-02 1.80244774e-01 -5.94211593e-02 7.11943954e-02\\n-4.75390851e-01 -3.69595319e-01 -3.29450630e-02 2.20857561e-03\\n1.25821665e-01 -1.57366082e-01 -2.72083104e-01 1.53144300e-01\\n-5.56357093e-02 -1.35593921e-01 -4.62019503e-01 -6.21635914e-02\\n-2.14661196e-01 -3.49476039e-02 -1.13270804e-01 -9.83854383e-02\\n-6.86635226e-02 -3.02266419e-01 -2.24063158e-01 4.84197540e-03\\n1.90172717e-01 -1.76232904e-01 -1.63900495e-01 -1.51675224e-01\\n2.25549817e-01 1.98618487e-01 5.85257173e-01 -1.18914410e-01\\n9.39056277e-02 -3.71392995e-01 -2.28455395e-01 1.35586649e-01\\n2.29180649e-01 4.77072932e-02 2.39419267e-02 4.63004887e-01\\n-3.55399609e-01 -1.12099037e-01 1.29001975e-01 3.28360319e-01\\n-3.93815547e-01 -7.02106208e-03 -1.50103256e-01 1.46630272e-01\\n1.33815676e-01 1.71488792e-01 -1.37916759e-01 -9.00065601e-02\\n-1.40100434e-01 -5.20996690e-01 3.12228352e-01 -3.54125425e-02\\n-1.16210610e-01 2.34234333e-03 1.85509741e-01 1.99718326e-01\\n-2.79738724e-01 -2.30321120e-02 -1.68226153e-01 1.43030733e-01\\n4.91208732e-02 2.88100481e-01 -3.06857765e-01 -2.05781162e-01\\n-1.92017049e-01 2.26385653e-01 -6.21558353e-02 1.45950302e-01\\n-1.30987801e-02 3.68991464e-01 1.69430822e-01 1.70710325e-01\\n4.22643721e-01 8.54823887e-02 -1.24446549e-01 -1.45083398e-01\\n-3.09533983e-01 -2.41282701e-01 -2.54385658e-02 -8.20061751e-03\\n1.59541160e-01 -3.19271326e-01 -3.46607044e-02 -1.34387702e-01\\n-2.85385549e-01 -2.86997914e-01 -1.14202261e-01 8.40340462e-03]]',\n", + " 'Job DescriptionWe are looking for brilliant people, not for a list of skills. While reading key responsibilities of the role, please consider that we value attitude more than your expertise. Are you curious and passionate about working in a constantly evolving and challenging international environment? Even if you dont feel to fit the role 100%, please apply: put your willingness to learn and we will grow together! Key Responsibilities will include Designing, writing and testing clean code using design patterns Create resilient, secure and performant applications able to serve millions of requests per day Contribute in simplifying and improving the infrastructure, always focusing on CI/CD Learn from colleagues and share your knowledge Interact with all stakeholders finding solutions for company evolutions Maintain systems by monitoring, identifying and correcting software defects. Contribute in the R&D of the company stack, proposing effective solutions Constantly updating technical knowledge and skills by attending in-house and/or external courses, reading manuals and accessing new applications Skills and Experience Essential Experience as a Software Engineer programming in Object Oriented languages ( C++, Java, Python etc.) Problem solving capabilities Positive and collaborative attitude Willingness to work inside a team Curiosity and passion for continuous improvement Customer orientation fluency in English What We Offer Working in an international agile environment using eXtreme Programming Bleeding edge technology stack (Docker, Kubernetes, Spring Boot, Vert.x, ReactJS, React Native and more ...) Continuous learning program with internal didactic unit Possibility to join conferences around Europe for continuous improvement Coding Dojo: a weekly training to learn and share coding techniques during office hours Internal technical conference (technical lunch) Flexible working hours Remote working up to 2 days per week Possibility to join the Erasmus program (temporary relocation among our offices) Complimentary fruit, beverages, coffees and a dedicated lounge area Preferential prices reserving through our platform Discounts from external partners Hiring Process Candidates for this position can generally expect a hiring process similar to the following one (please consider that based on location and availability the process can be slightly modified) Qualified candidates receive feedback concerning their application from our Recruiting team Based on role and experience, candidate might be requested to solve a coding exercise to submit on a public repository on Github. Exercise will be assessed by our internal Engineering team Onsite Coding -Techical interview: a coding exercise to solve together pairing with our Engineering team in your favourite programming language, plus a talk about technical stuffs, experiences and analyzing possible production scenarios Youll have the opportunity to meet our technical leaders and understand a little bit more about our continuous learning environment! Follow our technical team! -Blog: https://technology.lastminute.com/ -Twitter: https://twitter.com/lastminute_tech/Qualifications null Additional Information null',\n", + " '[\"Reservations\", \"Writing\", \"Collaboration\", \"Infrastructure\", \"Willingness To Learn\", \"Resilience\", \"Problem Solving\", \"Curiosity\", \"Positivity\"]',\n", + " '[\"Kubernetes\", \"Accessioning\", \"Spring Boot\", \"Programming (Music)\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Object Oriented Programming Language\", \"Distributed Design Patterns\", \"Scholastic READ 180\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"React Native\", \"Maintainability\", \"Agile Edge Technologies\", \"Dojo Toolkit\", \"Software Engineering\", \"Object Constraint Language\", \"Docker (Software)\", \"Beverage Products\", \"Blogs\", \"Continuous Improvement Process\", \"Receivables\", \"Virtual Learning Environments\", \"Additives\", \"Code Sharing\", \"Java (Programming Language)\", \"Vert.x\", \"Extreme Programming\"]',\n", + " \"['English']\"],\n", + " ['31',\n", + " 'report specialist (data model - data.one / controlling)',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.25119507e-01 8.17296654e-02 4.75452662e-01 -4.57868166e-02\\n4.19818580e-01 -1.04036637e-01 1.34177998e-01 2.97945648e-01\\n-1.21588849e-01 -3.26886237e-01 4.67494056e-02 -3.42348874e-01\\n5.22543304e-02 1.05158746e-01 -5.45630790e-02 4.21756685e-01\\n2.05081731e-01 1.78786427e-01 -1.47596404e-01 2.74296910e-01\\n2.82686442e-01 -2.65080005e-01 2.36876994e-01 4.95839745e-01\\n4.31182474e-01 2.98775341e-02 -2.05575721e-03 3.25127281e-02\\n-3.16102564e-01 -4.02572900e-01 5.12588620e-01 9.98925641e-02\\n-1.26051903e-01 -1.54986337e-01 1.66265279e-01 8.81956704e-03\\n-1.60408869e-01 -4.30136696e-02 -3.58815701e-03 1.38989374e-01\\n-4.83927667e-01 -1.45400450e-01 -6.59676343e-02 -1.45794556e-01\\n-2.63517767e-01 -4.15705889e-01 7.43594691e-02 -1.41728129e-02\\n7.72370622e-02 2.07193289e-02 -5.07877469e-01 3.57519329e-01\\n-3.25596541e-01 -1.26780763e-01 2.07479626e-01 6.20237470e-01\\n-2.61015207e-01 -5.87778151e-01 -4.78216708e-01 -1.73907265e-01\\n2.15861350e-01 -2.90848106e-01 5.14248013e-02 -2.26675153e-01\\n3.67293298e-01 2.17011906e-02 6.91262539e-03 4.98481512e-01\\n-6.29028022e-01 -3.68082710e-02 -2.66227573e-01 -5.21527603e-02\\n-1.94457784e-01 -1.34328604e-01 -1.72393799e-01 -7.59694204e-02\\n-1.92938969e-01 4.48388904e-01 9.09083709e-02 7.86131397e-02\\n-7.08912686e-02 2.18386009e-01 -3.40767711e-01 1.94131777e-01\\n1.46489173e-01 2.05094919e-01 1.56100363e-01 1.71552643e-01\\n-2.12246895e-01 6.12757206e-01 3.40252429e-01 -2.96824306e-01\\n5.95959201e-02 -1.69138163e-02 4.10388082e-01 -1.78385973e-01\\n4.37658951e-02 -4.01632860e-03 -1.78431273e-01 2.68595517e-01\\n2.19346523e-01 -2.45952487e-01 1.41088530e-01 -1.94230322e-02\\n-6.33862093e-02 -8.14903378e-02 -1.98960360e-02 3.64594012e-01\\n-1.27840176e-01 4.87882197e-01 1.11782655e-01 -1.21525869e-01\\n2.04876848e-02 -5.97794056e-01 -2.18537420e-01 3.48105542e-02\\n1.77411720e-01 8.21160600e-02 5.85173704e-02 2.87171632e-01\\n1.59698173e-01 5.01017347e-02 1.57881096e-01 6.98797345e-01\\n-2.84742145e-03 1.49418086e-01 -8.05258602e-02 3.13565731e-01\\n6.70404062e-02 -2.49112681e-01 1.85600534e-01 2.51727283e-01\\n2.60673277e-02 -1.98142573e-01 -1.59571037e-01 1.90080673e-01\\n-8.38894024e-02 -1.91082716e-01 -1.62855297e-01 1.86677650e-01\\n-1.26657009e-01 -3.18315029e-01 5.41479051e-01 6.16897009e-02\\n1.43709779e-01 1.00808600e-02 -1.30385816e-01 -1.82990074e-01\\n-3.31558622e-02 2.76975363e-01 8.41366649e-02 -3.49429029e-04\\n1.83873344e-02 -1.79673195e-01 -2.26587176e-01 -4.80349250e-02\\n-1.86663225e-01 1.37206987e-01 -2.22942188e-01 -1.12273946e-01\\n5.03137946e-01 4.75715362e-02 -1.50686622e-01 2.93811053e-01\\n5.94460778e-02 7.08826929e-02 -1.00459561e-01 3.57521981e-01\\n-4.06455025e-02 1.46811441e-01 -1.73040122e-01 -2.19505951e-01\\n5.97164512e-01 7.09445626e-02 1.52518898e-01 9.08023044e-02\\n2.67396271e-01 -1.04380613e-02 4.25968543e-02 1.03357755e-01\\n-6.92473114e-01 4.63571221e-01 -1.06400385e-01 -2.49347836e-01\\n1.04804508e-01 -9.16299000e-02 2.39334494e-01 -3.95060867e-01\\n6.62657842e-02 -1.43846786e-02 -3.34883720e-01 -2.65495896e-01\\n6.18168525e-02 -3.99862789e-02 3.56621057e-01 -4.17067945e-01\\n-4.11277898e-02 1.58342525e-01 -4.39974815e-01 5.29200025e-02\\n2.88446486e-01 1.68907374e-01 2.81745493e-01 1.55254349e-01\\n-1.37071714e-01 -3.55300933e-01 3.80256288e-02 -3.14727873e-01\\n1.23672010e-02 2.47758046e-01 -3.04155380e-01 3.07503611e-01\\n6.06116615e-02 6.15633987e-02 -1.96092620e-01 6.20562993e-02\\n4.11489196e-02 -8.37136582e-02 2.69458115e-01 8.78892187e-03\\n2.73510307e-01 1.18763395e-01 -3.42997104e-01 3.89796764e-01\\n-1.31342009e-01 4.87222254e-01 4.44708727e-02 -6.26985967e-01\\n3.68440121e-01 2.31989130e-01 -2.58964766e-02 -3.12917739e-01\\n6.43969953e-01 -2.13615060e-01 3.19836438e-02 1.26654789e-01\\n-3.82118165e-01 -2.63270527e-01 5.87361716e-02 -3.52757692e-01\\n-2.29015440e-01 5.35241187e-01 1.55194759e-01 9.94040370e-02\\n6.71650842e-02 -8.22241902e-02 -7.81099573e-02 1.09575130e-01\\n5.86935394e-02 -1.88650578e-01 -5.20494878e-01 -3.40065248e-02\\n-5.34411892e-02 -3.74672353e-01 -8.81594047e-02 -3.46321762e-01\\n-2.45186463e-01 -2.39187822e-01 -3.60243320e-02 6.72907531e-02\\n1.25554442e-01 1.98840648e-01 1.01027615e-01 1.04281224e-01\\n-3.13410342e-01 -5.72093189e-01 -1.99471172e-02 1.38688803e-01\\n2.92901248e-01 9.08770189e-02 1.33507594e-01 -1.59680054e-01\\n-2.35787239e-02 6.17864311e-01 -2.21300140e-01 -1.57352388e-02\\n1.85899243e-01 2.18938217e-01 1.71602562e-01 -8.88934731e-02\\n1.33885711e-01 1.53315887e-01 1.10288141e-02 1.42469972e-01\\n3.12612741e-03 -1.40243858e-01 2.99757063e-01 -5.85593283e-02\\n-2.06748202e-01 -3.88803929e-01 -3.45895946e-01 1.14543490e-01\\n-4.85015631e-01 -1.75469771e-01 5.55829167e-01 6.96739033e-02\\n5.70364203e-03 3.11277926e-01 2.25486472e-01 -6.30392879e-02\\n-1.82556078e-01 -1.45755529e-01 2.85941809e-01 1.80132180e-01\\n-7.17617720e-02 9.98124629e-02 -1.65643737e-01 -5.46387136e-01\\n-3.82287645e+00 -1.47379398e-01 -5.52464509e-03 -4.06610072e-01\\n3.33110511e-01 -1.28473073e-01 2.90154070e-01 -5.36772273e-02\\n-1.78628951e-01 -2.80204657e-02 -4.98984344e-02 -1.24896035e-01\\n2.22341463e-01 1.47422627e-01 1.75097868e-01 4.05243456e-01\\n1.52597234e-01 -3.84450704e-01 -2.06567943e-02 3.66045177e-01\\n-2.29017690e-01 -5.98092198e-01 2.52634138e-01 -4.19550240e-02\\n2.85055161e-01 3.02909911e-01 -4.59258080e-01 4.42867614e-02\\n-2.99988717e-01 -1.93942472e-01 1.18897878e-01 -3.36513340e-01\\n4.40913774e-02 1.34687617e-01 1.70701057e-01 -1.18515000e-01\\n1.24307908e-01 -2.30261579e-01 -1.34593830e-01 -4.62908715e-01\\n-4.82969023e-02 -5.39837718e-01 -3.13606597e-02 1.32062659e-03\\n6.74695551e-01 -2.44371369e-01 7.36206546e-02 -6.85774088e-02\\n2.03874350e-01 2.95811713e-01 4.50821854e-02 -1.72503427e-01\\n-1.59017399e-01 -2.02915519e-01 -8.15362334e-02 -3.09169330e-02\\n3.74997616e-01 6.23771727e-01 -3.62632483e-01 -1.53531700e-01\\n6.17780760e-02 -3.64223808e-01 -4.63305712e-01 -3.10357571e-01\\n-1.03789434e-01 -1.84965134e-01 -6.37293279e-01 -4.62479681e-01\\n-1.30009577e-01 -8.76208544e-02 -7.29476288e-02 3.53935897e-01\\n-3.77743185e-01 -4.71830875e-01 -1.40914470e-01 -3.48875672e-01\\n2.98031807e-01 7.91057572e-02 1.24557711e-01 -1.73568204e-01\\n-2.41144910e-01 -3.47097397e-01 9.00551081e-02 4.02975222e-03\\n1.21871696e-03 -4.85602207e-02 2.41844654e-01 -2.44461820e-01\\n-4.85590786e-01 -4.25055802e-01 2.45598450e-01 -7.64952749e-02\\n3.05879653e-01 3.30665819e-02 7.80329034e-02 -1.17368817e-01\\n3.69979411e-01 -3.33373070e-01 1.66100502e-01 -2.81108230e-01\\n1.18521996e-01 7.09378570e-02 4.89725292e-01 -3.57012093e-01\\n8.19294602e-02 -1.84666943e-02 -3.66131246e-01 6.02259184e-04\\n3.04387480e-01 -2.06367612e-01 1.87571570e-01 -3.38744879e-01\\n3.69909972e-01 -2.84713387e-01 -2.72264004e-01 6.66050315e-02\\n3.55185159e-02 5.11834323e-01 9.82084349e-02 -3.08612347e-01\\n-1.06595948e-01 4.05138314e-01 -2.08627105e-01 -1.13661133e-01\\n-3.52482080e-01 -2.96414457e-02 -2.65709519e-01 1.85057431e-01\\n8.03125743e-03 -5.91334980e-03 -3.45769227e-01 -1.05608799e-01\\n-2.19269276e-01 2.98034608e-01 3.39207977e-01 7.55533427e-02\\n6.02764124e-03 -1.94743514e-01 7.07101449e-02 1.45102218e-01\\n5.51741533e-02 2.91190118e-01 -1.28281384e-03 2.06884462e-02\\n1.11952610e-03 2.59599507e-01 -1.63524240e-01 1.49572372e-01\\n-2.03070149e-01 8.34550187e-02 -3.27810466e-01 -4.18912143e-01\\n-1.84639260e-01 -1.70302168e-01 -9.03251246e-02 3.18992525e-01\\n2.56783664e-01 -1.02500498e-01 -2.50506811e-02 -2.98250407e-01\\n1.29516348e-01 -5.90546094e-02 2.05861643e-01 2.20728755e-01\\n-2.20624264e-02 4.38368976e-01 1.71892881e-01 -1.59902975e-01\\n-1.13861971e-01 -6.30355477e-02 -3.32198411e-01 -2.34089196e-02\\n-5.39220776e-03 -3.29054624e-01 -3.58321667e-02 4.37983662e-01\\n1.51632503e-01 -2.28649333e-01 -1.11852750e-01 4.35770005e-01\\n-1.64813668e-01 -3.11346322e-01 -2.04003066e-01 1.08577892e-01\\n2.78874367e-01 1.44889221e-01 3.38827431e-01 -4.75011349e-01\\n1.15252621e-01 -5.87808974e-02 -1.69820085e-01 4.01836544e-01\\n-1.11007020e-01 7.24424198e-02 -1.23228021e-01 -1.55766681e-01\\n3.68384391e-01 -8.84340182e-02 4.30168770e-02 3.39945167e-01\\n8.08892399e-02 1.35536501e-02 -3.85404348e-01 3.43506150e-02\\n-3.17491032e-02 -3.20899263e-02 -4.16854434e-02 1.44856319e-01\\n-8.71672183e-02 -1.16824070e-02 -5.25742471e-01 -1.97916061e-01\\n-3.97368878e-01 1.55158073e-01 -6.35814574e-03 -5.14515579e-01\\n-9.42626372e-02 -9.61007550e-02 -4.21151102e-01 2.99530506e-01\\n7.82616138e-02 1.38130918e-01 2.14673713e-01 -9.45240632e-02\\n-1.25438109e-01 1.88868850e-01 1.95379540e-01 4.81183119e-02\\n-2.27698371e-01 -5.04473858e-02 -1.23740070e-01 -8.74879658e-01\\n1.04950957e-01 1.10371104e-02 -1.62471682e-01 5.94913475e-02\\n-7.59907812e-02 -5.72740853e-01 1.41591415e-01 -2.42249727e-01\\n-2.14781404e-01 -9.26003382e-02 -6.60485253e-02 -5.09054244e-01\\n-2.51859389e-02 7.26720542e-02 -1.40108019e-01 2.79927492e-01\\n-2.28024587e-01 4.33173567e-01 -1.00698404e-01 1.45759001e-01\\n-7.35339001e-02 -2.70166665e-01 1.94200873e-01 -4.51548964e-01\\n-2.66389996e-01 -3.86697315e-02 -3.03812176e-01 1.02478944e-01\\n-1.46498056e-02 -2.96976537e-01 -1.82021724e-03 1.95539996e-01\\n3.65542710e-01 3.08462270e-02 -3.74710299e-02 1.24880662e-02\\n-3.72406207e-02 -4.45675135e-01 -4.01471481e-02 -6.23727441e-02\\n-2.41013407e-03 -2.05242649e-01 -3.87418009e-02 -1.00910261e-01\\n1.67073354e-01 -4.91580665e-01 4.13805425e-01 -3.55185181e-01\\n-3.37655962e-01 -1.56197166e-02 5.52233458e-02 4.22697663e-02\\n3.24508756e-01 -3.06072176e-01 -2.70886302e-01 3.05551678e-01\\n-2.01143771e-02 1.84457898e-02 3.94261211e-01 -4.17163319e-05\\n-3.11415911e-01 1.96547180e-01 -3.32900584e-01 1.10647902e-01\\n6.10299289e-01 1.05308540e-01 1.17889389e-01 2.29184940e-01\\n4.19340059e-02 1.29571155e-01 4.41435754e-01 -2.81282756e-02\\n-2.43679360e-01 3.84647548e-01 2.22505331e-02 -5.87102830e-01\\n-4.24193181e-02 4.46640924e-02 -3.28150928e-01 -2.85377771e-01\\n5.91233730e-01 3.51738632e-01 -3.54915828e-01 -3.58076364e-01\\n-2.30241805e-01 -2.21236393e-01 -2.30014190e-01 -2.28345133e-02\\n1.76668763e-01 -8.11873600e-02 5.48510849e-01 1.94233600e-02\\n3.49019207e-02 4.11412656e-01 -1.52474746e-01 -1.51964441e-01\\n1.77911799e-02 1.60060525e-01 6.79340884e-02 4.00483459e-01\\n-1.68418497e-01 3.98120224e-01 -4.56312634e-02 1.47726566e-01\\n-1.04366198e-01 -6.18232004e-02 -1.43377949e-02 1.95789620e-01\\n-7.44087771e-02 4.12455559e-01 3.48134905e-01 3.30090046e-01\\n3.96527231e-01 3.46858412e-01 1.62904590e-01 3.75843942e-02\\n7.23760605e-01 4.13027585e-01 3.51242214e-01 2.84883618e-01\\n-8.75889435e-02 -3.79842520e-02 -2.28159428e-02 2.53702670e-01\\n2.06511170e-01 2.35419288e-01 -1.75568581e-01 6.07075632e-01\\n2.62670934e-01 1.91291049e-01 4.61347878e-01 -4.17233229e-01\\n-2.87611693e-01 -2.50315480e-02 3.81020546e-01 -4.00964826e-01\\n-1.79247707e-02 5.21606803e-02 -5.13036512e-02 8.91088620e-02\\n-5.70092976e-01 -1.46194264e-01 -7.09187984e-02 1.15818746e-01\\n1.46236643e-01 -5.60551286e-02 -6.85518458e-02 -6.82648644e-02\\n-1.46356791e-01 -1.52378961e-01 -4.00799096e-01 -1.99916154e-01\\n-2.51809299e-01 -2.55450964e-01 2.04109997e-02 -1.69776440e-01\\n3.82385962e-02 -2.73497343e-01 -1.66449279e-01 -1.88320782e-02\\n2.57554561e-01 -1.62482247e-01 -9.83320251e-02 4.24150471e-03\\n3.80413532e-01 1.34504646e-01 5.98731995e-01 -4.68926784e-03\\n9.41349484e-04 -3.25036198e-01 -3.63122895e-02 -5.22180088e-02\\n4.25876886e-01 4.25714776e-02 7.29194731e-02 4.63141024e-01\\n-4.42859948e-01 -2.89858669e-01 9.79142189e-02 2.54570395e-01\\n-5.70715725e-01 3.81177338e-03 1.92422912e-01 1.49660155e-01\\n1.94715150e-02 1.41538292e-01 -2.17711374e-01 -9.26676169e-02\\n-2.55530834e-01 -4.76769418e-01 1.06684215e-01 1.89488798e-01\\n-2.55955189e-01 -4.34510969e-02 3.59715641e-01 1.52797922e-01\\n-9.49709937e-02 -5.90479635e-02 -4.29890640e-02 2.03117743e-01\\n1.47516921e-01 7.53174499e-02 -1.97582945e-01 -2.55628794e-01\\n-3.76073420e-01 2.41380468e-01 -2.25037098e-01 2.41238475e-01\\n6.81691319e-02 -2.55144015e-03 1.87051341e-01 1.22922055e-01\\n3.66383404e-01 -8.64518881e-02 -8.92237201e-02 -3.07821572e-01\\n-2.73998827e-01 -2.90129393e-01 3.28818932e-02 -1.78229690e-01\\n1.05165482e-01 -4.45940912e-01 -1.18563101e-01 -9.89066511e-02\\n-2.03019276e-01 -3.56948078e-01 5.07307388e-02 -1.26902331e-02]]',\n", + " 'LocationBaselContract typetemporary contract For our pharma client in Basel we are looking for a Report Specialist (Data Model/Cost Controlling) - 100% Tasks & Responsibilities: Ensure reporting implementation of Regulatory Affairs and Medical Affairs shift in data.one by: Check Actual deliveries of all countries against target status Communicate with country Controllers to ensure implementation of target status Document and track implementation status in each country Support countries with technical questions Must Haves: Strong knowledge of data model - data.one Follow-up with Controllers having different cultural background (i.e. worldwide) Proficiency with Excel and the use of databases Excellent communication skills Good organizational skills Start date : ASAP Duration: 3 months with exention opportunities Location: Basel Are you interested to work in this challenging position? Florence Wespiser, MSP Consultant, is looking forward to receiving your complete profile. Please send an e-mail to florence.wespiser@coopers.ch By sending us your CV per E-Mail you are giving us your consent to the processing of your personal data according to our Data Privacy Policy.',\n", + " '[\"Verbal Communication Skills\", \"Communications\", \"Organizational Skills\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Health Data Specialists\", \"Cost Control\", \"TARGET 3001!\", \"Medical Affairs\", \"Logical Data Models\", \"Track (Rail Transport)\", \"Personalization\", \"E (Programming Language)\", \"Data Modeling\", \"Data Privacy Laws\", \"Receivables\", \"Controllability\"]',\n", + " \"['English', 'Korean', 'Tibetan', 'Malayalam']\"],\n", + " ['75',\n", + " 'data preparation expert (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'Tagalog', 'Fijian', 'Limburgish']\"],\n", + " ['75',\n", + " 'data ingenieur',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.73539215e-01 2.95446873e-01 3.41366827e-01 3.93180214e-02\\n4.40420538e-01 -1.47717759e-01 -5.48443720e-02 2.30844498e-01\\n-8.91414285e-02 -4.39024776e-01 1.05183357e-02 -9.85265374e-02\\n-2.43622586e-01 -5.89660660e-04 -1.47397863e-02 4.74850059e-01\\n2.80426443e-01 6.34839982e-02 -1.43790379e-01 3.84318888e-01\\n1.05363093e-01 -3.25387642e-02 -2.00483307e-01 8.03782105e-01\\n3.08296889e-01 -3.17984521e-02 2.24749073e-02 9.14418623e-02\\n-6.67959005e-02 -1.43164203e-01 3.64695042e-01 1.60059065e-01\\n-1.00824147e-01 -3.22888434e-01 1.22831404e-01 2.00250655e-01\\n-1.94558889e-01 6.35166764e-02 -1.37775987e-01 7.37599581e-02\\n-3.76453847e-01 -1.73091054e-01 -8.04219916e-02 3.95079516e-02\\n-1.57729849e-01 -2.51143217e-01 1.44618124e-01 -2.24684939e-01\\n2.97256261e-01 4.46853787e-03 -6.94204330e-01 3.18485349e-01\\n-2.28280187e-01 -1.62220791e-01 2.34000966e-01 4.64561015e-01\\n5.01000471e-02 -4.63844717e-01 -4.39903587e-01 -3.53651315e-01\\n-1.08716330e-02 -5.98834120e-02 -2.82261074e-02 -3.53043616e-01\\n3.16754729e-01 3.56427347e-03 8.99656042e-02 2.43225127e-01\\n-8.23725402e-01 -1.05068073e-01 -4.20428991e-01 -2.26258989e-02\\n-4.38156933e-01 -5.65539226e-02 -3.59581858e-01 2.61795521e-02\\n-7.72417337e-02 2.87032902e-01 4.55488116e-02 6.78809881e-02\\n-2.35347003e-01 2.70585775e-01 -2.93253362e-01 3.29408884e-01\\n2.76014954e-01 1.38341695e-01 2.38590196e-01 3.69926006e-01\\n-5.02795100e-01 4.07005459e-01 4.97104935e-02 -2.92263478e-01\\n2.34251171e-01 2.25896820e-01 4.27680135e-01 2.05386490e-01\\n1.81894228e-01 1.50503382e-01 -2.51848787e-01 3.50331217e-01\\n2.39382461e-01 -4.51936007e-01 4.24619950e-02 -2.21537635e-01\\n1.52646035e-01 -8.92313197e-02 5.49507774e-02 1.02773488e-01\\n-3.34391266e-01 4.40531641e-01 1.65045276e-01 -1.65558740e-01\\n-1.39052868e-01 -5.76995373e-01 -9.55668762e-02 -2.39929892e-02\\n-2.56161001e-02 2.14993089e-01 1.74376845e-01 2.35086322e-01\\n1.71372846e-01 6.88543022e-02 5.23202829e-02 8.91119480e-01\\n-1.43159017e-01 -1.57657713e-02 -1.82234228e-01 2.13842094e-01\\n1.70693681e-01 -3.74809951e-01 3.11169416e-01 3.57347637e-01\\n1.67213112e-01 -1.85709864e-01 -2.94184357e-01 2.98517853e-01\\n2.02898104e-02 -9.60549787e-02 -3.80438834e-01 2.33673573e-01\\n4.12185639e-02 -5.39134681e-01 7.73584545e-01 1.40000045e-01\\n3.27907830e-01 8.81463066e-02 2.57994700e-02 -8.59297886e-02\\n3.52902198e-03 1.23795435e-01 -5.53409755e-02 3.36271733e-01\\n-2.23474592e-01 -1.77447617e-01 -9.64029431e-02 1.90260187e-01\\n-4.62801039e-01 2.66632259e-01 -1.32285237e-01 -1.45230874e-01\\n1.87922180e-01 -2.94205658e-02 -3.24101150e-01 1.10768579e-01\\n-1.26643166e-01 -1.52376890e-01 8.02242681e-02 5.69777429e-01\\n-7.82675371e-02 2.43639350e-01 -1.51042221e-02 -8.74454230e-02\\n7.25178540e-01 1.66858494e-01 -1.07229850e-03 -6.43134788e-02\\n3.50875914e-01 3.57049294e-02 2.90560871e-01 9.05217603e-02\\n-6.39829993e-01 3.67502570e-01 1.42371282e-02 -1.98851094e-01\\n8.54345784e-02 2.50803903e-02 3.50216717e-01 -4.67205524e-01\\n-1.24535322e-01 -1.13375433e-01 -2.95392036e-01 -1.33079529e-01\\n-3.10479373e-01 -1.50215775e-01 4.03197229e-01 -2.97243237e-01\\n-1.56392843e-01 1.65585518e-01 -6.80798471e-01 -1.17076978e-01\\n1.95750073e-01 1.22090451e-01 8.98842216e-02 6.79821372e-02\\n-5.84428012e-02 -6.84136391e-01 -1.17838711e-01 -5.61434746e-01\\n-4.79235709e-01 -1.62391197e-02 -4.43102211e-01 3.12348336e-01\\n9.61948857e-02 2.23491900e-02 -2.70209312e-01 1.73036739e-01\\n-3.16214174e-01 2.91104000e-02 2.20800668e-01 1.30040003e-02\\n3.07837993e-01 5.19551933e-02 -3.73211861e-01 3.93969983e-01\\n-1.10023595e-01 6.05572820e-01 2.04976350e-01 -6.67174816e-01\\n5.68976700e-01 4.10228640e-01 -1.32097639e-02 -3.06244224e-01\\n4.71904486e-01 -3.28421414e-01 -1.11632749e-01 5.80066219e-02\\n-3.02488774e-01 -4.29130524e-01 1.21426813e-01 -1.13919549e-01\\n-3.05754006e-01 5.60343683e-01 1.06565334e-01 2.19404157e-02\\n3.08832675e-01 -3.60765815e-01 -1.36797220e-01 2.37932205e-01\\n-1.19924918e-01 -2.33903900e-01 -4.15719062e-01 -3.11465207e-02\\n-7.49295428e-02 -4.38354939e-01 -1.42351896e-01 -3.94857258e-01\\n-1.94070101e-01 -3.19405705e-01 -4.09768730e-01 4.61869001e-01\\n1.85869917e-01 9.61013809e-02 -9.09118578e-02 -1.33323530e-02\\n-1.00047491e-01 -8.27483296e-01 4.93074320e-02 4.75524329e-02\\n4.48125720e-01 1.53993413e-01 7.36384690e-02 -1.83055058e-01\\n7.37257004e-02 6.65648341e-01 -4.05947179e-01 -3.05492789e-01\\n3.27343158e-02 1.57261103e-01 -2.55504027e-02 -4.86530960e-02\\n1.07461832e-01 4.97097760e-01 -3.26111466e-01 8.08469281e-02\\n-1.97301358e-01 -1.11661203e-01 3.29602003e-01 -1.07117631e-01\\n-3.10849756e-01 -2.20599413e-01 -6.18796982e-02 3.00643623e-01\\n-5.62083840e-01 -3.92843187e-01 4.34898883e-01 2.90442258e-01\\n2.31254756e-01 1.32649526e-01 1.95963055e-01 -5.02265617e-02\\n-2.53306299e-01 -4.08284217e-01 2.67852932e-01 1.85309544e-01\\n8.72170553e-02 1.72761410e-01 -4.57098894e-02 -6.49209142e-01\\n-3.35005069e+00 -1.19049266e-01 1.95204079e-01 -1.42373562e-01\\n2.34189317e-01 2.28987448e-02 4.00891975e-02 -8.33868012e-02\\n-3.62264037e-01 8.28131512e-02 -1.28010809e-01 -2.70860106e-01\\n-1.12116292e-01 3.58870476e-01 1.30933970e-01 2.05565602e-01\\n2.01939940e-01 -3.27510476e-01 -5.64833544e-02 3.45400125e-01\\n-1.45829007e-01 -6.70550108e-01 5.40195368e-02 -1.53561831e-02\\n2.53562301e-01 3.77783775e-01 -3.13458294e-01 -1.30594134e-01\\n-3.04139614e-01 -1.88112676e-01 -4.13720001e-04 -3.99223834e-01\\n-1.23340622e-01 2.06579968e-01 2.54610330e-01 5.58344275e-02\\n-2.98778922e-03 -3.05615544e-01 -9.70033854e-02 -5.04232526e-01\\n3.41190351e-03 -4.49428767e-01 1.86609123e-02 -1.19894370e-01\\n6.79200590e-01 -1.91292331e-01 1.84738591e-01 1.52017057e-01\\n1.70434773e-01 1.63962543e-01 3.62524390e-02 1.06787182e-01\\n-9.38766524e-02 -2.97862411e-01 -1.19559780e-01 -2.31664062e-01\\n7.04229474e-01 5.14253438e-01 -6.92761242e-02 -2.63523054e-03\\n1.08825430e-01 -3.91366541e-01 -4.67752814e-01 -3.18818301e-01\\n-9.39716697e-02 -2.29888588e-01 -6.51591003e-01 -4.13950711e-01\\n-1.85595721e-01 -4.32047024e-02 -2.12076157e-01 5.42313576e-01\\n-3.38225871e-01 -3.48974556e-01 2.69715283e-02 -5.62692642e-01\\n1.61460757e-01 -2.43679285e-01 1.53686360e-01 -3.89631204e-02\\n-2.38289446e-01 -6.71593368e-01 -1.06749736e-01 -1.78200170e-01\\n-1.30260393e-01 -3.03197592e-01 -1.18988305e-01 -5.86845353e-02\\n-2.56225020e-01 -6.05665445e-01 3.79024357e-01 1.43792480e-01\\n2.94720531e-01 1.84704378e-01 4.59055811e-01 -8.26915428e-02\\n4.23558921e-01 4.58418652e-02 -7.91794136e-02 -3.60442162e-01\\n-5.48459366e-02 -7.40971416e-02 4.52599943e-01 -1.13543294e-01\\n1.53942466e-01 1.17062114e-01 -2.18255490e-01 -3.83212119e-02\\n3.62344861e-01 4.19153161e-02 -4.17718217e-02 -1.44397959e-01\\n4.22746927e-01 -2.72830397e-01 -2.31825694e-01 1.60845831e-01\\n1.15813628e-01 6.28076434e-01 1.86652504e-02 -4.49732155e-01\\n-2.33861983e-01 5.65137684e-01 -1.11333020e-01 6.58415928e-02\\n-9.03046578e-02 1.49235427e-01 -1.35980144e-01 1.95091501e-01\\n-9.82831270e-02 -2.44395882e-01 -1.49072662e-01 -1.22328259e-01\\n-1.10931545e-01 3.91953558e-01 2.35398397e-01 6.10994501e-03\\n-1.11531682e-01 -2.95550257e-01 -1.54909506e-01 1.46287695e-01\\n2.94560939e-01 4.09787089e-01 1.78593561e-01 -3.12423974e-01\\n-7.02138990e-02 3.77872974e-01 -1.01519451e-02 9.31342468e-02\\n-2.08368748e-01 4.09455299e-02 -3.92957956e-01 -2.46942624e-01\\n-3.59082162e-01 -4.25442368e-01 2.39385858e-01 3.73319775e-01\\n8.39539096e-02 -3.97312529e-02 2.85563558e-01 -5.47754049e-01\\n4.19133395e-01 2.72235364e-01 1.17853925e-01 1.09099276e-01\\n-1.24561578e-01 5.02645969e-01 -7.49223679e-02 -1.08004563e-01\\n-2.52406061e-01 1.05447508e-02 -1.95723534e-01 -2.71729171e-01\\n1.70587212e-01 -6.02116942e-01 -1.91897884e-01 4.44209516e-01\\n2.45881185e-01 -2.02954754e-01 -3.22783262e-01 2.50395596e-01\\n-5.23507297e-02 -3.28757972e-01 -2.32960701e-01 -1.76553190e-01\\n1.73108369e-01 1.33014014e-02 2.78843582e-01 -2.93195784e-01\\n-5.48861660e-02 -4.37954850e-02 -3.27146351e-02 5.07661879e-01\\n1.77467212e-01 5.08969948e-02 -2.54120320e-01 -1.10497549e-01\\n5.29563785e-01 -8.29265043e-02 -1.36750340e-02 -1.43619433e-01\\n1.45741969e-01 -2.30486944e-01 -4.08401132e-01 8.31735954e-02\\n-3.91913131e-02 -1.56264216e-01 -9.30302888e-02 1.48367554e-01\\n-1.03273369e-01 7.85977989e-02 -7.10077345e-01 -3.36266488e-01\\n-4.08053666e-01 -1.86203495e-01 2.09359936e-02 -3.18180740e-01\\n1.15589714e-02 -6.17773943e-02 -5.33395767e-01 3.53105187e-01\\n-3.28015059e-01 -7.26068690e-02 1.17504291e-01 1.76224634e-01\\n-4.20059055e-01 -1.74938381e-01 -4.77401055e-02 2.87048846e-01\\n-3.99624974e-01 -2.75250167e-01 4.49762493e-03 -9.77015793e-01\\n1.42093718e-01 6.76126555e-02 -2.14485288e-01 5.88524789e-02\\n-1.42176464e-01 -5.97350597e-01 -3.74841020e-02 -5.06289542e-01\\n-2.76711397e-02 2.12920353e-01 -2.74026603e-01 -8.27496871e-02\\n1.76449582e-01 -1.70337725e-02 -3.88304412e-01 3.80793124e-01\\n-3.33709151e-01 2.41502866e-01 -1.98908761e-01 1.61453217e-01\\n-5.55104762e-02 -1.27174959e-01 7.43299574e-02 -2.05290601e-01\\n-4.01791364e-01 -2.92716295e-01 -2.03706503e-01 -1.25526950e-01\\n7.93420374e-02 -3.92119318e-01 -1.65071607e-01 1.69550125e-02\\n3.70709479e-01 8.66900459e-02 -1.10151120e-01 -2.79189885e-01\\n1.13218136e-01 -5.50931931e-01 -3.59931495e-03 -2.49128968e-01\\n-6.20403215e-02 -9.75676626e-02 2.24061534e-01 8.71564671e-02\\n2.17803076e-01 -3.08463454e-01 4.82191592e-01 -4.08337027e-01\\n-2.46548027e-01 -4.72327955e-02 4.22134995e-02 -1.22209042e-01\\n1.28084630e-01 -4.84935492e-01 -2.40670261e-03 3.19071472e-01\\n4.58413996e-02 -8.80386010e-02 2.65195668e-01 -5.87772876e-02\\n5.09641804e-02 2.46959642e-01 -2.27597073e-01 1.25412136e-01\\n7.23162532e-01 1.03838801e-01 3.38800512e-02 1.74701512e-01\\n1.91928566e-01 3.41389924e-01 5.37623644e-01 5.94294816e-02\\n4.50938381e-02 2.90370047e-01 1.37288779e-01 -3.51034641e-01\\n-2.80057173e-02 1.58480443e-02 -2.50718445e-01 -2.66983002e-01\\n7.02537000e-01 4.61657256e-01 -5.05702734e-01 -2.70402133e-01\\n-3.14138494e-02 -2.01632008e-01 3.57618004e-01 5.21320701e-02\\n1.47703802e-02 -3.18478309e-02 5.02444267e-01 -1.48917615e-01\\n6.63390383e-02 6.09450161e-01 -2.44767696e-01 -3.23840827e-01\\n-5.24812154e-02 2.82150477e-01 5.42860888e-02 5.81487775e-01\\n-2.77523935e-01 3.18400472e-01 -3.25301811e-02 -2.94691208e-03\\n1.19819464e-02 2.43483633e-01 2.22774833e-01 3.47710103e-02\\n2.87638277e-01 -3.39678638e-02 3.22743118e-01 6.37781262e-01\\n8.24697763e-02 3.68883431e-01 2.42546946e-01 1.49033964e-01\\n3.51512939e-01 5.71332753e-01 3.89838547e-01 1.88696101e-01\\n1.60439685e-02 2.80597359e-01 1.32400841e-01 -1.03801303e-01\\n3.83920342e-01 3.97256941e-01 9.42822918e-02 8.88749540e-01\\n3.38519901e-01 4.03219104e-01 5.19377470e-01 -7.30246723e-01\\n-3.18686038e-01 2.07738429e-01 5.71277797e-01 -2.21303478e-01\\n-2.68598981e-02 1.79136291e-01 -2.70904154e-01 2.96401203e-01\\n-4.99009192e-01 -1.91606760e-01 4.54262830e-03 9.40883979e-02\\n-6.65409490e-02 -1.88375816e-01 -2.88819104e-01 -7.96906054e-02\\n-1.59726128e-01 -3.83828394e-02 -3.83251727e-01 -1.96621731e-01\\n-2.81151384e-01 -9.25636012e-03 -1.77532867e-01 -1.97292909e-01\\n5.14329709e-02 -3.68404061e-01 -6.41435608e-02 7.43891373e-02\\n3.96721900e-01 -1.96322531e-01 -1.47753030e-01 -1.43119931e-01\\n1.71592310e-01 3.70279372e-01 5.63981056e-01 -5.77464662e-02\\n1.34021595e-01 -9.81474966e-02 -2.07689196e-01 1.38016596e-01\\n-9.37613845e-03 4.72647473e-02 1.47420689e-01 1.93972245e-01\\n-2.21584007e-01 -1.64701194e-01 2.09619597e-01 3.02007616e-01\\n-4.17190611e-01 -1.25701442e-01 -2.01619834e-01 2.83955842e-01\\n-3.84229496e-02 1.66154966e-01 -1.89610735e-01 1.00306846e-01\\n-1.40607163e-01 -4.21521395e-01 4.70354974e-01 -1.07023336e-01\\n-4.63431776e-02 2.26062387e-01 4.34537768e-01 1.93338960e-01\\n-3.22088212e-01 -3.84056941e-02 -4.56718132e-02 2.38319427e-01\\n-8.59484002e-02 3.83177549e-01 -2.02118486e-01 -3.81131172e-01\\n-2.67352015e-01 1.53150648e-01 -2.25777149e-01 1.22528940e-01\\n-9.30396840e-03 3.44943106e-01 1.03135789e-02 5.86238913e-02\\n4.39161271e-01 6.83616400e-02 -2.40586132e-01 -1.51674092e-01\\n-2.48169482e-01 -7.94871524e-02 9.09963921e-02 -7.05700042e-03\\n8.89195278e-02 -3.81218761e-01 -2.01335952e-01 -6.06442541e-02\\n1.93256270e-02 -2.59877086e-01 -2.84286719e-02 1.12730607e-01]]',\n", + " 'Job Informationen Responsibilities: You build prototypes, you set up automatic benchmarking procedures and you assess the scalability and robustness of different machine learning methods. You optimise the use of available CPU and GPU resources for training machine learning models on large datasets on platforms such as AWS and Azure. You work with our engineers to ensure that new models can be seamlessly integrated into our applications and reliably deployed on production systems. You actively share your know-how with our other data scientists (which already includes specialists in areas such as natural language processing, recurrent neural networks and mathematics) and in turn you learn from their ideas and expertise. Requirements: You can produce scalable, reliable and easy-to-understand code in Scala, Java and/or Python. You have deployed machine learning models in production, having tested their robustness and scalability in different environments. You are familiar with a wide range of machine learning approaches, in particular deep learning models. You are passionate about the newest neural network architectures, but you also remain pragmatic and recognise that a simpler traditional machine learning model might work just as well for many use cases. You enjoy solving mathematical problems. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills Scala JAVA Python Python',\n", + " '[\"Proactivity\", \"Communications\", \"Reliability\", \"Integration\"]',\n", + " '[\"Python Server Pages\", \"Graphics Processing Unit (GPU)\", \"Agility\", \"Natural Language Processing\", \"Scala (Programming Language)\", \"Activism\", \"Python (Programming Language)\", \"Prototyping\", \"Dataset\", \"Use Case Diagram\", \"Machine Learning Methods\", \"Benchmarking\", \"Scalability\", \"Production Systems\", \"Deep Learning\", \"Recurrent Neural Network (RNN)\", \"Resourcing\", \"Java (Programming Language)\", \"Network Architecture\"]',\n", + " \"['English', 'Kirghiz', 'Zulu']\"],\n", + " ['85',\n", + " 'data architect',\n", + " 'Gland',\n", + " '',\n", + " '',\n", + " '[[-2.26959467e-01 1.85585111e-01 5.45626521e-01 3.39563489e-02\\n6.05104625e-01 -1.55945927e-01 -5.37235290e-02 4.24137056e-01\\n-5.30420169e-02 -5.59546590e-01 -1.57581978e-02 -2.86776245e-01\\n-5.89047931e-02 9.32528079e-02 5.75805977e-02 2.80804247e-01\\n3.88394356e-01 1.43583134e-01 -9.13108140e-02 3.20280671e-01\\n5.94274700e-02 -1.31324381e-01 1.52759761e-01 7.03490376e-01\\n3.10784996e-01 -8.45882148e-02 -7.22268149e-02 5.77587634e-04\\n-2.45001525e-01 -1.74896002e-01 4.48014498e-01 -3.46912369e-02\\n-1.57767504e-01 -2.71948814e-01 8.71570483e-02 3.99834849e-02\\n-2.42521822e-01 -9.74186361e-02 -8.12924951e-02 1.48576885e-01\\n-4.59864229e-01 -1.95110619e-01 -3.96016799e-02 -5.01302406e-02\\n-3.24364960e-01 -3.57881427e-01 -3.16568501e-02 -2.28019431e-02\\n9.56756026e-02 8.54479074e-02 -5.36936462e-01 2.38055050e-01\\n-1.99533910e-01 -2.21855000e-01 2.34013036e-01 5.99914074e-01\\n-2.44867913e-02 -4.06157315e-01 -4.65729982e-01 -3.00640345e-01\\n1.24723166e-01 -1.22358456e-01 6.82379380e-02 -3.77022266e-01\\n3.32380861e-01 -4.05879021e-02 7.21967267e-03 2.54423797e-01\\n-7.77008295e-01 -4.93215546e-02 -2.31322765e-01 -5.22023030e-02\\n-3.57683539e-01 -6.64442480e-02 -3.12843800e-01 -1.17946438e-01\\n-1.10407673e-01 4.06963170e-01 7.18101263e-02 4.32074182e-02\\n-1.70039251e-01 2.63334036e-01 -3.27968091e-01 3.85194957e-01\\n1.93057135e-01 3.37805033e-01 2.32159615e-01 3.35622936e-01\\n-3.29601169e-01 4.71874207e-01 2.34640896e-01 -4.50010121e-01\\n3.10019374e-01 1.37526333e-01 3.99491757e-01 -4.38049585e-02\\n2.71545976e-01 9.92244780e-02 -2.90837228e-01 3.54413271e-01\\n2.94723004e-01 -3.33072484e-01 1.83103047e-02 -1.06500126e-01\\n5.83395213e-02 -4.96790968e-02 4.33552787e-02 2.60357320e-01\\n-3.44801664e-01 3.47575396e-01 5.78447022e-02 -2.11462051e-01\\n-1.71496123e-01 -3.47067535e-01 3.26017961e-02 1.16494820e-01\\n1.51388720e-02 1.90461129e-01 2.49866068e-01 1.05192959e-01\\n1.49268001e-01 1.29982442e-01 1.51803225e-01 8.51687312e-01\\n-8.68032500e-02 4.15343679e-02 -2.65343249e-01 3.88893545e-01\\n7.08726794e-02 -3.76771450e-01 1.20396271e-01 2.16989189e-01\\n5.10175601e-02 -1.58679336e-01 -1.41127795e-01 3.45115006e-01\\n2.40389984e-02 -1.14366800e-01 -2.55188614e-01 2.10665166e-01\\n-5.46168350e-02 -4.10077661e-01 7.07121968e-01 8.35343599e-02\\n1.55393839e-01 -1.27902791e-01 6.13957196e-02 -2.36900002e-01\\n-1.40697092e-01 2.70074844e-01 5.60046826e-03 2.39884168e-01\\n-3.12298775e-01 -2.64583856e-01 -1.81241050e-01 2.10325718e-01\\n-4.61188495e-01 4.53567877e-02 -4.94401902e-02 -8.25300142e-02\\n2.68959701e-01 7.40253776e-02 -2.56187797e-01 2.12850749e-01\\n-1.14951335e-01 -3.87190245e-02 -7.79033452e-03 2.76621759e-01\\n-2.04776049e-01 3.02411556e-01 2.49807052e-02 -7.02316761e-02\\n5.05224228e-01 1.69686064e-01 2.43805707e-01 -1.77225936e-02\\n3.24320078e-01 -1.16108671e-01 1.89941395e-02 1.23341739e-01\\n-6.79099321e-01 3.61986428e-01 -4.96737100e-02 -2.85153985e-01\\n8.32508653e-02 -1.20971110e-02 2.66953468e-01 -1.44139379e-01\\n4.12601754e-02 -2.23777562e-01 -2.75624454e-01 -3.58167648e-01\\n-1.31995499e-01 -9.53156501e-02 4.23225611e-01 -4.70424384e-01\\n-1.00450605e-01 2.67721057e-01 -5.02433300e-01 -9.89936143e-02\\n1.55907154e-01 2.53715187e-01 1.34184793e-01 8.81372988e-02\\n-1.40274107e-01 -4.55875278e-01 8.61041248e-02 -4.16475832e-01\\n-1.91778719e-01 9.50427353e-02 -2.87170172e-01 1.53199196e-01\\n4.96030971e-02 2.07985006e-02 -2.47636810e-03 1.23869956e-01\\n-2.04422146e-01 -8.67343098e-02 1.45801067e-01 5.86524643e-02\\n4.68432724e-01 -1.38773452e-02 -4.06342119e-01 5.09587109e-01\\n-2.20423728e-01 3.40664625e-01 1.99102491e-01 -9.58584666e-01\\n4.62812364e-01 2.41617903e-01 -5.22376038e-02 -3.77645195e-01\\n5.55359244e-01 -3.39550883e-01 -6.08056709e-02 8.15979093e-02\\n-3.78406376e-01 -2.32332528e-01 2.17163503e-01 -2.05676824e-01\\n-2.22324386e-01 4.81574208e-01 -6.59446418e-03 1.56902209e-01\\n2.46098310e-01 -2.17403084e-01 -7.20052719e-02 -8.23026896e-02\\n-2.23928094e-01 -2.56638527e-01 -5.83865523e-01 -2.83847600e-02\\n-1.19565770e-01 -4.77976650e-01 -8.72339830e-02 -4.06859905e-01\\n-1.44480139e-01 -3.08676720e-01 -1.34061366e-01 1.74950525e-01\\n2.72640109e-01 6.58057630e-02 -3.62581685e-02 -1.05888210e-02\\n-6.85257763e-02 -5.43224216e-01 -1.28565550e-01 1.04586363e-01\\n4.47411388e-01 2.00259328e-01 1.34049207e-01 -2.20327452e-03\\n1.40092060e-01 5.44225454e-01 -1.12721696e-01 -2.45586902e-01\\n1.35898918e-01 2.21717715e-01 -5.98804280e-02 -9.36221480e-02\\n1.20501041e-01 3.52077842e-01 -2.01258823e-01 -1.70007870e-02\\n5.04829288e-02 -5.85053004e-02 4.24077034e-01 -7.15166032e-02\\n-2.34046638e-01 -1.92782283e-01 -3.70404273e-02 1.17795125e-01\\n-5.40806174e-01 -2.15985298e-01 5.61462104e-01 2.01966360e-01\\n8.77510086e-02 1.50305018e-01 1.28643885e-01 5.30742556e-02\\n-2.04402238e-01 -1.72198206e-01 2.37726241e-01 -1.45782232e-02\\n1.33992821e-01 1.39474139e-01 3.03623006e-02 -4.82385933e-01\\n-3.65689182e+00 -2.17225552e-01 1.09935775e-01 -2.38370389e-01\\n1.57136500e-01 -1.90947667e-01 7.06102997e-02 -8.49857554e-03\\n-2.47175068e-01 6.77997321e-02 -1.75542355e-01 -1.04899883e-01\\n1.17573455e-01 2.20172614e-01 1.22330606e-01 2.83023328e-01\\n1.20821074e-01 -1.52050063e-01 9.81768966e-03 3.40487629e-01\\n-2.25600421e-01 -6.33613825e-01 2.34256834e-01 -5.10381758e-02\\n2.86565095e-01 2.20938817e-01 -4.87181395e-01 -7.05512986e-02\\n-2.80877680e-01 -1.46693781e-01 1.51599586e-01 -2.69574732e-01\\n-1.71713322e-01 2.51290262e-01 1.49916470e-01 -1.12803563e-01\\n1.67625010e-01 -3.31464112e-01 -1.86671674e-01 -3.63117993e-01\\n1.81667298e-01 -6.02525651e-01 -1.26378521e-01 -5.43828346e-02\\n7.10578203e-01 -4.08134937e-01 2.08737344e-01 -1.31398551e-02\\n1.15536131e-01 1.28852472e-01 1.71796665e-01 -2.02913769e-02\\n-3.15004736e-01 -2.87341446e-01 2.42213272e-02 -2.09831223e-01\\n5.88578224e-01 4.87223625e-01 -9.82524008e-02 2.44502313e-02\\n1.02758966e-03 -2.44175777e-01 -4.18914855e-01 -3.29705209e-01\\n-6.33451119e-02 -1.76176876e-01 -6.20183408e-01 -3.24209034e-01\\n-4.99209948e-02 -2.64289081e-01 -5.50799146e-02 5.51924348e-01\\n-1.96045786e-01 -3.79968762e-01 -1.11754462e-01 -4.98668551e-01\\n3.72878253e-01 -1.41630962e-01 2.97269784e-03 -1.97399944e-01\\n-2.46819228e-01 -3.88384044e-01 1.42496288e-01 4.05891947e-02\\n-8.61663744e-02 -1.84298337e-01 1.56764448e-01 -5.81060536e-02\\n-3.51182014e-01 -4.48128909e-01 4.42874402e-01 7.20234141e-02\\n2.92768091e-01 1.33885309e-01 4.37437177e-01 5.02319597e-02\\n2.86487073e-01 -6.64279908e-02 -1.13959849e-01 -3.96884859e-01\\n5.32958396e-02 -3.16987634e-02 3.55283201e-01 -1.75551221e-01\\n6.98002204e-02 5.57822771e-02 -1.49906099e-01 -9.76474062e-02\\n3.08081359e-01 -6.02369495e-02 1.18858688e-01 -9.25181359e-02\\n2.03153744e-01 -2.62320250e-01 -1.41195461e-01 1.08382568e-01\\n-1.77268554e-02 5.23164034e-01 -3.39981318e-02 -2.86376476e-01\\n-1.66751668e-01 4.34576571e-01 -3.64531353e-02 8.32443982e-02\\n-1.94131002e-01 6.28325716e-02 -2.59017110e-01 3.52153689e-01\\n-6.80536963e-04 -1.16850421e-01 -2.38515273e-01 -9.53974351e-02\\n-1.12213567e-01 2.34908730e-01 2.69449532e-01 1.15753710e-01\\n4.01595235e-02 -3.87199134e-01 -7.02132434e-02 1.97189733e-01\\n2.97677159e-01 5.41889608e-01 1.99013278e-01 -7.89970905e-02\\n-4.93506230e-02 4.03309882e-01 -2.76965439e-01 2.66108245e-01\\n-2.65887320e-01 1.91045523e-01 -5.63682318e-01 -2.36865044e-01\\n-2.36690074e-01 -3.68271440e-01 1.67935774e-01 3.08545589e-01\\n1.93632513e-01 -1.00110710e-01 4.32363227e-02 -3.41073126e-01\\n2.68774360e-01 6.20842427e-02 2.13986412e-01 1.46586746e-01\\n-3.91582400e-03 5.82137644e-01 -3.68144922e-02 -8.39338526e-02\\n-1.12781346e-01 8.07562247e-02 -7.35053718e-02 -2.67687708e-01\\n-7.56375268e-02 -5.92806935e-01 -1.73749655e-01 3.05922389e-01\\n1.30189747e-01 -2.51520574e-01 -2.17959076e-01 2.65842915e-01\\n-9.02624130e-02 -2.10742295e-01 -2.56337404e-01 1.78571213e-02\\n4.28334773e-01 2.28980392e-01 2.91158557e-01 -5.72223544e-01\\n-1.55284077e-01 1.30839691e-01 4.78042811e-02 4.45907384e-01\\n7.44125396e-02 7.10915551e-02 -3.42796110e-02 -2.19178855e-01\\n3.72113943e-01 -1.77247882e-01 -1.65002421e-01 -5.19655161e-02\\n2.80996580e-02 -2.03483969e-01 -4.19769347e-01 1.46650463e-01\\n2.77346633e-02 -2.31144071e-01 6.96433783e-02 9.21656042e-02\\n7.88364708e-02 4.91004102e-02 -5.40481448e-01 -2.46248275e-01\\n-3.21554363e-01 -2.04072092e-02 -5.00875711e-03 -4.72395480e-01\\n-3.75322253e-02 -1.52734537e-02 -5.10069489e-01 2.20498502e-01\\n-1.28554761e-01 -1.10466614e-01 1.07282341e-01 -5.97559325e-02\\n-2.43912935e-01 -6.25356659e-02 1.34809464e-01 2.23447397e-01\\n-2.06007928e-01 -3.22677940e-01 5.07332273e-02 -1.00123668e+00\\n1.44783586e-01 9.66250226e-02 -1.91126361e-01 1.35203421e-01\\n-3.81120294e-02 -5.88949323e-01 1.32115394e-01 -3.33227515e-01\\n-9.02548656e-02 -9.64929610e-02 -2.40156412e-01 -4.53762531e-01\\n8.33714530e-02 5.61530553e-02 -3.36240113e-01 4.28298205e-01\\n-3.44702005e-01 3.84987772e-01 -1.61926836e-01 7.36631304e-02\\n9.26335230e-02 -2.30298609e-01 1.69032454e-01 -3.48049641e-01\\n-3.99106920e-01 -2.09772050e-01 -3.50904882e-01 -3.46295357e-01\\n-8.42668116e-02 -3.91998768e-01 -1.12279184e-01 9.68847424e-04\\n3.35234165e-01 8.36318508e-02 -2.15749770e-01 -2.41622031e-01\\n5.25874607e-02 -3.99399281e-01 2.95056961e-02 -3.45171094e-02\\n-8.57998729e-02 -1.51747674e-01 1.91959172e-01 9.96999443e-02\\n7.15580508e-02 -3.75161916e-01 3.54967535e-01 -2.21317112e-01\\n-3.22383642e-01 -1.24641150e-01 3.58742252e-02 1.13703668e-01\\n3.58011186e-01 -4.26163673e-01 7.49724656e-02 3.52810919e-01\\n2.33830839e-01 9.98689085e-02 1.50147974e-01 -6.65601939e-02\\n-2.86589116e-02 3.04174989e-01 -2.65399963e-01 9.18338373e-02\\n7.84099877e-01 5.02346978e-02 1.82636559e-01 2.08582029e-01\\n1.87070444e-01 2.78064281e-01 3.06016326e-01 6.57563098e-03\\n-1.64317906e-01 3.11114967e-01 1.01092279e-01 -4.95650530e-01\\n7.01944903e-02 -1.41385078e-01 -1.98138103e-01 -3.55826914e-01\\n5.55670381e-01 3.98149759e-01 -4.25234318e-01 -1.87287197e-01\\n-1.47492185e-01 -1.82940811e-01 2.04250246e-01 -5.55424280e-02\\n-1.20563135e-02 -1.55506834e-01 4.03699040e-01 -9.39343348e-02\\n2.61003941e-01 5.06759882e-01 -2.01805353e-01 -2.68972486e-01\\n-1.03064932e-01 2.07742110e-01 8.78320858e-02 5.27607977e-01\\n-2.54912138e-01 3.26455057e-01 -7.58094043e-02 1.86837345e-01\\n-6.29956573e-02 9.34925973e-02 1.43880859e-01 8.85814428e-02\\n2.14524508e-01 1.00339368e-01 3.98836315e-01 4.06579167e-01\\n2.28397071e-01 4.06621933e-01 3.96598727e-01 4.66578752e-02\\n4.17634130e-01 5.18793702e-01 3.49751592e-01 1.24530487e-01\\n-9.08402801e-02 -2.97809243e-02 5.72429337e-02 -4.50264663e-03\\n2.17811584e-01 3.59422326e-01 1.37136616e-02 8.76299500e-01\\n4.04174507e-01 2.33507425e-01 7.47595668e-01 -5.62973619e-01\\n-3.03399324e-01 -3.23097780e-02 3.85947108e-01 -4.07934129e-01\\n-1.84307061e-02 9.77430567e-02 -1.96492076e-01 2.59549141e-01\\n-4.22770113e-01 -2.09420741e-01 -1.02139488e-01 1.70546651e-01\\n-1.55957527e-02 -1.97322205e-01 -2.15798482e-01 6.36097342e-02\\n-2.56009828e-02 -5.54470718e-02 -4.01049674e-01 -4.74738628e-02\\n-2.12462202e-01 -1.38401136e-01 -1.45880237e-01 -3.37801129e-02\\n-8.19974095e-02 -3.22862178e-01 -1.26683861e-01 -4.94351313e-02\\n2.98602998e-01 -1.18570000e-01 -3.51657867e-02 -1.61988229e-01\\n2.83176750e-01 1.98692352e-01 4.86365736e-01 1.10180810e-01\\n1.54946446e-01 -2.28791982e-01 -1.31068513e-01 6.48721606e-02\\n1.57221943e-01 7.41381347e-02 -1.05674397e-02 2.51281559e-01\\n-2.80478984e-01 -1.35317326e-01 4.80526984e-02 2.82038152e-01\\n-4.19973850e-01 8.47353414e-03 -2.25774050e-02 1.27559304e-01\\n4.95847724e-02 1.69391736e-01 -1.79412141e-01 -1.79095082e-02\\n-1.91139311e-01 -4.60211992e-01 2.95223236e-01 -1.50710762e-01\\n-6.59837574e-02 -5.96475117e-02 1.71879962e-01 1.85563564e-01\\n-2.31385738e-01 4.06700931e-02 -3.94193456e-02 1.61757693e-01\\n3.00249681e-02 2.38011852e-01 -1.86747342e-01 -2.63392091e-01\\n-3.38201970e-01 1.50394648e-01 -1.37869179e-01 1.05552524e-01\\n1.92314945e-02 3.33986282e-01 6.93315417e-02 6.29573390e-02\\n2.74678260e-01 -3.27123329e-02 -1.88454747e-01 -2.37737119e-01\\n-2.23285139e-01 -1.92054898e-01 1.35266525e-03 -1.05301365e-01\\n2.26198196e-01 -3.87380958e-01 -7.66208619e-02 -1.71389416e-01\\n-4.70124483e-02 -3.42719615e-01 7.48951584e-02 -1.58928663e-01]]',\n", + " 'We are looking for talents... We are expanding our Data Intelligence Practice in Gland and Zurich and we are looking for dynamic and passionate Data Architects with experience in Large-scale transformation, mass migrations, complex application architectures, multi-cloud Data Lakes, Artificial Intelligence, Data Science and Big Data to name a few. We will be starting very soon our interviews so if you want to be part of our successful story of growth, apply now! Your background: Master Degree in Computer Science or another technical field. 5-10 years in a Data Architect role. Experience as a hands-on technical practitioner/specialist in client facing roles in large enterprises. Demonstrated client facing consulting skills, including building strong client relationships. Excellent verbal, presentation and written communications skills. Strong team skills including the ability to lead and be a team player. Knowledge on Datawarehouse and Big-Data architecture. Knowledge in Advanced Analytics Azure ML, ML Server, BOT framework, Cognitive Services, Azure Databricks, as well as, PowerBI. Learn, learn, and learn by staying up-to-date on all technical developments related to Data Intelligence and Cloud. Fluent English and/or French CH/EU citizenship required What you will do... Are you looking to work with innovative technologies, challenging projects and to join a team of passionate people? Then OSB is where you belong. You will… Architecting and implementing big data solutions that meet customer needs for scalability, reliability, security and performance;; Creating functional design specifications, implementing solutions, and assisting with other project deliverables as required. Keeping abreast of emerging Cloud technology trends and their impact on Cloud solutions.. Why OSB is for you... One Step Beyond is one of the fastest-growing start-up companies in Switzerland. In less than 2 years we have passed the 40 OSBers with an ambition to grow locally and internationally. We are a Native Cloud Consulting company helping organizations embrace Cloud technology that includes Microsoft, AWS, Google, etc. The cloud journey at OSB starts with the Cloud Strategy to then move to the execution that usually covers topics like Modern Workplace, Artificial Intelligence, Machine Learning, SaaS solutions or Blockchain most often multi-cloud. Our approach is to be technology agnostic to always try to find the best solutions comparing various technologies and approaches. We invest part of our time in “Beyond the Cloud” initiatives where our team investigates emerging technologies. Are you looking to grow your career in the Consulting business with the opportunity to work for large organizations but always staying ahead of new technologies? Then let’s discuss as at OSB we are not \"just the usual consulting company\".',\n", + " '[\"Investigation\", \"Reliability\", \"Presentations\", \"Innovation\", \"Written Communication\", \"Consulting\"]',\n", + " '[\"Blockchain\", \"Computer Science\", \"Analytics\", \"Machine Learning\", \"Functional Design\", \"Scale (Map)\", \"Intelligence Data Handling\", \"Azure Cognitive Services\", \"Design Specifications\", \"Executable\", \"Microsoft Modern Workplace\", \"Localization\", \"Investments\", \"Applications Architecture\", \"Data Science\", \"Service Delivery Framework\", \"Artificial Intelligence\", \"Scalability\", \"Learning With Errors\", \"Big Data\", \"Azure Databricks\", \"Transformation (Genetics)\", \"Data Lakes\", \"Emerging Technologies\", \"Cloud-Native Architecture\", \"Cloud Technologies\"]',\n", + " \"['English']\"],\n", + " ['102',\n", + " 'data engineer (m/f)',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.robertwalters.com',\n", + " '[[-3.69240314e-01 8.25279877e-02 4.91174340e-01 -8.14468637e-02\\n4.39075351e-01 -2.59894431e-01 1.08117752e-01 4.42793339e-01\\n-1.29006039e-02 -2.21820161e-01 -1.11764878e-01 -3.46410513e-01\\n3.82579044e-02 1.88376933e-01 1.42550454e-01 3.87582600e-01\\n3.24492037e-01 8.68002847e-02 -2.41615415e-01 3.03820312e-01\\n7.33862519e-02 -1.92458019e-01 1.04501899e-02 5.67554653e-01\\n5.09980440e-01 3.85048613e-02 -5.28866909e-02 4.88218740e-02\\n-2.86617905e-01 -2.13553339e-01 4.07707930e-01 -7.75738806e-03\\n-1.74949616e-01 -2.43239209e-01 -2.87563782e-02 3.63004394e-02\\n-9.17406008e-02 -5.80493137e-02 -2.32187226e-01 1.50015563e-01\\n-5.16039729e-01 -4.32223529e-01 6.05612919e-02 1.88062310e-01\\n-3.61154497e-01 -4.52994496e-01 -2.24923361e-02 -1.28107816e-01\\n1.56975076e-01 1.21473804e-01 -5.52773178e-01 5.16897440e-01\\n-3.28382015e-01 -3.29085082e-01 2.34204695e-01 7.44919598e-01\\n6.68055490e-02 -5.67464232e-01 -4.49748307e-01 -3.07602376e-01\\n1.28797784e-01 -1.05079904e-01 -3.27876620e-02 -3.29013437e-01\\n2.58923858e-01 5.65505028e-02 3.23734991e-02 4.74667639e-01\\n-9.46887016e-01 -2.08655745e-02 -3.92103791e-01 -8.98579508e-02\\n-7.63695613e-02 -2.71036364e-02 -4.35818046e-01 -1.99281469e-01\\n-9.98111144e-02 3.66229266e-01 5.51985623e-03 2.55612023e-02\\n-2.49248818e-01 3.81793588e-01 -2.52502412e-01 3.90147835e-01\\n2.25170612e-01 2.25819886e-01 1.64574474e-01 2.83999294e-01\\n-3.49378407e-01 5.91016293e-01 2.62454599e-01 -3.40145677e-01\\n1.22616664e-01 1.90349996e-01 3.58295411e-01 1.93632245e-01\\n1.19423456e-01 1.77830189e-01 -1.17937751e-01 2.77026951e-01\\n4.14565653e-01 -4.21201766e-01 2.00246368e-02 -6.19453080e-02\\n-1.44699827e-01 1.83656125e-03 1.45882025e-01 2.49355152e-01\\n-1.68656945e-01 3.71681005e-01 7.77733102e-02 -2.91046947e-01\\n9.79752466e-02 -5.00715256e-01 -1.92763239e-01 -9.94219538e-03\\n-3.09221111e-02 1.51602447e-01 2.32413709e-02 1.75464928e-01\\n1.82368442e-01 -9.10306126e-02 3.19169872e-02 9.06018913e-01\\n-1.62834436e-01 1.60859853e-01 -2.55465746e-01 4.82394278e-01\\n3.65963280e-02 -3.08085859e-01 2.89399147e-01 8.57370272e-02\\n-1.28514627e-02 -1.37735412e-01 -3.06986302e-01 4.68420506e-01\\n-1.23031072e-01 -2.40614563e-01 -3.76867175e-01 2.40593895e-01\\n-1.45341277e-01 -4.81125623e-01 6.94297433e-01 -4.25317436e-02\\n2.93819904e-01 7.18387440e-02 -3.35147940e-02 1.09219998e-01\\n-1.16232067e-01 2.59424686e-01 1.61119401e-01 3.90311368e-02\\n-3.80033821e-01 -1.99606299e-01 -2.26258412e-01 2.48691201e-01\\n-3.04851562e-01 1.48026451e-01 -1.19070835e-01 -5.28749637e-02\\n3.63795847e-01 7.07269683e-02 -4.21763450e-01 2.84870386e-01\\n-7.16133714e-02 1.26203494e-02 -1.35152161e-01 2.22982615e-01\\n-2.49662444e-01 3.71707886e-01 -7.46834353e-02 -1.62973374e-01\\n6.31901920e-01 1.79023117e-01 1.27076954e-01 -1.92455918e-01\\n2.05039203e-01 1.50246611e-02 2.82670289e-01 8.74235947e-03\\n-5.76988459e-01 5.77274323e-01 8.00961480e-02 -3.62565964e-02\\n1.31659001e-01 -1.58827946e-01 2.79630303e-01 -3.37808341e-01\\n-1.71705693e-01 -7.68935084e-02 -3.57631236e-01 -3.71480584e-01\\n-3.98912698e-01 -1.60966754e-01 3.51980805e-01 -5.92204332e-01\\n-1.15984946e-01 1.47292793e-01 -6.94108427e-01 -3.90457958e-02\\n3.79650533e-01 5.97690009e-02 1.25385270e-01 2.49188349e-01\\n-7.30868354e-02 -5.69591284e-01 1.96737736e-01 -5.03612638e-01\\n-2.61735320e-01 1.83000907e-01 -2.41609454e-01 2.58737057e-01\\n1.21974787e-02 1.15283407e-01 -8.84649605e-02 1.64380625e-01\\n-2.57929474e-01 1.23197976e-02 1.49216354e-01 7.02007413e-02\\n3.75430167e-01 4.47768904e-02 -3.95253450e-01 4.68276441e-01\\n-1.77164346e-01 6.51994050e-01 2.37045184e-01 -9.41641271e-01\\n4.30420101e-01 3.86938542e-01 -2.22837422e-02 -3.35657001e-01\\n6.22202337e-01 -4.11555946e-01 -2.55740225e-01 1.85853124e-01\\n-4.10764307e-01 -2.41395324e-01 1.20760888e-01 -1.47041410e-01\\n-3.14059198e-01 6.41126454e-01 8.66300166e-02 1.03188545e-01\\n2.68038988e-01 -2.27926910e-01 -1.11606024e-01 8.50964058e-03\\n-1.20851956e-01 -2.73170412e-01 -5.17953157e-01 -6.10137917e-02\\n-4.92346212e-02 -5.31678259e-01 -2.43596941e-01 -3.87654454e-01\\n-2.97718436e-01 -3.48096311e-01 -9.66810063e-02 1.40077755e-01\\n2.61486441e-01 2.07811981e-01 7.43704289e-02 7.26435408e-02\\n-1.68329492e-01 -5.96635401e-01 3.81935760e-02 9.25624892e-02\\n4.07238305e-01 3.13320696e-01 4.26565669e-02 1.26552610e-02\\n1.59102291e-01 6.05940461e-01 -5.42859614e-01 -4.28777367e-01\\n2.65189856e-01 1.14223011e-01 1.42616229e-02 -2.85975605e-01\\n2.08352283e-01 3.53475600e-01 -2.87568897e-01 1.15516424e-01\\n3.82988229e-02 -1.90840811e-02 3.18307340e-01 2.20453829e-01\\n-2.95485467e-01 -4.60772365e-01 -1.32605851e-01 1.99360758e-01\\n-5.42560339e-01 -2.34567016e-01 5.63095748e-01 1.27885014e-01\\n9.43219140e-02 2.82934636e-01 3.53706986e-01 -1.25921980e-01\\n-2.05265597e-01 -9.71540958e-02 1.25345737e-01 1.75501317e-01\\n-2.05488969e-02 1.06356412e-01 -2.36835014e-02 -5.97698867e-01\\n-3.04537058e+00 -1.11750372e-01 1.53187677e-01 -1.77589059e-01\\n2.46047720e-01 -2.62942314e-01 -4.22593439e-03 -5.31064197e-02\\n-3.67481142e-01 -3.43310572e-02 -1.58565044e-01 -5.02117649e-02\\n2.79857516e-01 1.70414746e-01 5.01893423e-02 2.07946002e-01\\n9.91830304e-02 -3.02427709e-01 1.48815373e-02 4.32165027e-01\\n-1.35586068e-01 -6.13655031e-01 1.18142068e-01 -1.14492625e-01\\n3.72311562e-01 2.26920635e-01 -6.28906131e-01 -1.30676880e-01\\n-2.61219114e-01 -3.51524591e-01 9.90687683e-02 -3.19350392e-01\\n-8.49257633e-02 2.38111585e-01 1.38117835e-01 -5.17274141e-02\\n2.10168883e-01 -2.74930149e-01 6.48810249e-03 -4.06912386e-01\\n9.22796428e-02 -7.78051853e-01 -4.57377778e-03 7.00837001e-02\\n8.47651482e-01 -3.33411098e-01 1.35327116e-01 1.00539345e-03\\n1.75501794e-01 2.34811381e-02 -5.58712333e-02 2.58948356e-02\\n-2.96528161e-01 -2.22639069e-01 -5.51448092e-02 -5.27355634e-02\\n5.56573629e-01 6.04797423e-01 -2.10573778e-01 -7.92994630e-03\\n5.03490772e-03 -3.90890926e-01 -4.43472683e-01 -3.75228852e-01\\n-1.34297282e-01 -1.73222393e-01 -6.30488336e-01 -3.76986712e-01\\n-2.00325802e-01 -5.92841096e-02 3.38628963e-02 5.17028153e-01\\n-3.20278496e-01 -4.54628080e-01 4.91282754e-02 -6.50902867e-01\\n2.83607721e-01 4.01125252e-02 1.65570542e-01 -2.10148931e-01\\n-2.08284259e-01 -6.25866592e-01 6.11026324e-02 1.59246139e-02\\n-1.02232650e-01 -1.29592821e-01 1.92116246e-01 -5.08912280e-02\\n-4.47158694e-01 -5.67521036e-01 3.35128903e-01 1.88271970e-01\\n3.57883453e-01 2.70942956e-01 1.78484857e-01 -8.19721296e-02\\n3.33459556e-01 -2.29541108e-01 1.68070987e-01 -4.68866616e-01\\n-1.07093222e-01 1.76562686e-02 4.21825290e-01 -1.05930820e-01\\n1.42581211e-02 1.58526078e-01 -2.63683200e-01 -1.31640941e-01\\n3.71041089e-01 7.31290430e-02 1.58227757e-01 -2.94220090e-01\\n2.49974340e-01 -1.83012262e-01 -2.83738881e-01 2.00685225e-02\\n-4.58043702e-02 7.52873778e-01 -3.57089341e-02 -2.33635828e-01\\n-1.47344217e-01 4.05440360e-01 -1.23900034e-01 -1.33360520e-01\\n-2.97999382e-01 7.44065642e-02 -1.65027201e-01 1.17701374e-01\\n-2.65431013e-02 -1.76033884e-01 -1.74560517e-01 -3.44776437e-02\\n-6.59584254e-02 3.36652368e-01 1.79248646e-01 1.17356203e-01\\n-1.49229556e-01 -1.68255821e-01 1.06160425e-01 1.52614608e-01\\n1.13357365e-01 4.04965907e-01 -5.30397035e-02 -3.61947894e-01\\n-6.38192426e-03 2.67998606e-01 -1.98803574e-01 1.59754753e-01\\n-1.18419252e-01 7.22104609e-02 -5.21541059e-01 -9.00286064e-02\\n-1.73611239e-01 -4.03191656e-01 1.04705997e-01 2.99585462e-01\\n6.16946220e-02 -6.16030544e-02 -5.56084746e-03 -5.43981612e-01\\n3.44774365e-01 1.44660071e-01 1.91595122e-01 1.85645342e-01\\n9.85863581e-02 6.46382093e-01 9.32209641e-02 -1.44844264e-01\\n-7.15427101e-02 1.38203114e-01 -1.60976112e-01 -1.97612703e-01\\n-3.59524675e-02 -4.38107967e-01 -9.09141824e-02 4.59769309e-01\\n2.16785371e-01 -1.42289534e-01 -1.53489828e-01 1.51401520e-01\\n1.67063192e-01 -2.85538405e-01 -2.51075476e-01 2.07387462e-01\\n3.03312838e-01 1.76931575e-01 1.66444331e-01 -3.34908217e-01\\n1.16699815e-01 -5.99436350e-02 -3.19329426e-02 4.00114626e-01\\n5.52689172e-02 8.10881555e-02 -3.10386151e-01 -1.70473322e-01\\n4.47864205e-01 -1.20368242e-01 1.02191949e-02 -9.47455317e-02\\n1.21399492e-01 -9.88917500e-02 -3.88200611e-01 -1.73262078e-02\\n6.73961267e-02 -1.66287690e-01 -3.07188295e-02 2.22887564e-02\\n-6.97165355e-02 8.39978233e-02 -5.55479765e-01 -1.45383850e-01\\n-3.19203943e-01 -1.24511970e-02 -2.40216311e-02 -4.02724534e-01\\n-2.93622725e-02 -4.79101501e-02 -5.91854036e-01 3.09091866e-01\\n-2.45220408e-01 7.09153116e-02 1.43204525e-01 3.54842581e-02\\n-2.91385025e-01 -1.09686986e-01 2.30921805e-01 2.70083815e-01\\n-4.37682152e-01 -3.74605626e-01 -7.58123770e-02 -8.43400478e-01\\n7.97160417e-02 7.05200359e-02 3.56022529e-02 1.84208810e-01\\n-7.22778440e-02 -7.36995459e-01 1.95281148e-01 -3.85950476e-01\\n-1.12499490e-01 1.57817140e-01 -1.21935330e-01 -5.77650726e-01\\n7.19749136e-03 -5.23175895e-02 -3.03457439e-01 3.51405919e-01\\n-4.47346359e-01 4.70710754e-01 1.15978811e-02 9.89015102e-02\\n6.55442551e-02 -2.69383490e-01 2.15770558e-01 -4.35787439e-01\\n-3.01557153e-01 -2.28800222e-01 -4.12436515e-01 -2.26584911e-01\\n7.16811717e-02 -2.72909164e-01 -2.49867991e-01 2.91146934e-01\\n3.36367160e-01 6.77164271e-02 -1.96278304e-01 -1.40293375e-01\\n9.66690108e-02 -6.28951967e-01 -8.10428858e-02 -3.45174670e-01\\n1.27673475e-02 -1.89390689e-01 2.53704280e-01 9.43263154e-03\\n-5.09825535e-02 -5.16686440e-01 3.55138719e-01 -1.84811935e-01\\n-4.14885342e-01 -2.85570249e-02 -4.58882935e-02 -8.85541737e-02\\n3.52662504e-01 -3.84442478e-01 -8.65319148e-02 3.37665141e-01\\n2.97105834e-02 -5.82179846e-03 1.46150365e-01 -1.64327249e-01\\n-5.83229810e-02 2.75725156e-01 -2.73209512e-01 6.86290637e-02\\n7.35783935e-01 8.20402279e-02 1.96759775e-01 1.93554014e-01\\n7.23883212e-02 6.84811532e-01 4.66410697e-01 1.96852525e-05\\n-9.12774354e-02 4.57006127e-01 3.31962965e-02 -6.45995140e-01\\n4.94029187e-03 9.72336903e-02 -3.24362963e-01 -4.38717097e-01\\n6.42769217e-01 5.05809546e-01 -4.11734581e-01 -3.73307616e-01\\n-4.15916517e-02 -2.61462599e-01 1.01649202e-01 -9.41994637e-02\\n4.94386703e-02 -1.51041806e-01 4.94082779e-01 1.26020029e-01\\n2.82762051e-01 5.56713820e-01 -2.17469290e-01 -2.74312615e-01\\n-8.92571956e-02 3.12633127e-01 2.19900194e-05 4.21211421e-01\\n-1.09959774e-01 3.37148130e-01 -6.02169447e-02 4.98960353e-02\\n-1.63255379e-01 1.24646962e-01 2.24700108e-01 -1.28953131e-02\\n1.22753046e-01 2.51483887e-01 5.08446455e-01 5.58867514e-01\\n3.33869934e-01 3.82212788e-01 3.05241525e-01 -2.85167377e-02\\n5.87329447e-01 5.51419437e-01 4.99584943e-01 8.79136175e-02\\n1.87435865e-01 -7.92128071e-02 8.22473913e-02 2.82038182e-01\\n2.55124360e-01 3.38618636e-01 1.76435679e-01 9.76337910e-01\\n4.11718339e-01 3.39573652e-01 9.17758465e-01 -6.99731290e-01\\n-4.69203502e-01 -1.09365188e-01 3.75902653e-01 -4.35338497e-01\\n-1.73421487e-01 5.12854718e-02 -3.03368539e-01 2.32427806e-01\\n-3.91536474e-01 -2.40698233e-01 4.70994748e-02 2.40797609e-01\\n3.24683227e-02 -1.06977649e-01 -1.60973072e-01 1.24271929e-01\\n-1.36761367e-01 -1.29743770e-01 -5.04181027e-01 -2.21394375e-01\\n-2.28577644e-01 -2.33825266e-01 -1.32123470e-01 -4.22072634e-02\\n-2.11774945e-01 -3.69155914e-01 -2.03979090e-01 8.96567665e-03\\n3.68860573e-01 -1.83114663e-01 -1.22481093e-01 -2.20666572e-01\\n2.69309878e-01 2.53335923e-01 5.33374310e-01 3.50270495e-02\\n-9.90169868e-02 -2.64434367e-01 -2.56926030e-01 5.80486469e-02\\n1.80510178e-01 1.00967146e-01 -1.86418649e-02 4.72050220e-01\\n-2.79831648e-01 -1.43928662e-01 1.94978625e-01 3.72866988e-01\\n-4.82679248e-01 4.60712351e-02 -1.13081839e-02 2.25041091e-01\\n1.63797706e-01 1.86475858e-01 -2.10605159e-01 8.51506144e-02\\n-1.85691059e-01 -3.70014280e-01 3.67387235e-01 -4.17417586e-02\\n-2.70970970e-01 2.91785412e-02 2.86757737e-01 3.41690451e-01\\n-2.81337500e-01 -1.67826250e-01 -1.55289918e-01 1.83858752e-01\\n1.80897731e-02 3.08114976e-01 -2.24041209e-01 -2.26730615e-01\\n-2.63909638e-01 1.42573684e-01 -2.19681978e-01 1.35659665e-01\\n-9.44996253e-03 3.24079543e-01 9.65003520e-02 2.04437196e-01\\n3.27318549e-01 -7.35462606e-02 -2.52505839e-01 -4.74324644e-01\\n-6.42108470e-02 -2.88562030e-01 -9.16094482e-02 -3.51239368e-02\\n2.10844904e-01 -4.13383812e-01 -1.10539921e-01 -4.69673015e-02\\n-1.54880226e-01 -3.86361837e-01 -1.16001265e-02 -1.44560263e-01]]',\n", + " 'A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform. Data Engineer (m/f) Zurich Key Responsibilities: Drive and develop a new Data platform, and the future of Data processing for the firm Ensure delivery is meeting the highest quality and standards With a strong track record in Data engineering / Science you have: Profile: Experience designing and implementing Data technologies Strong in Java, Python and SQL programming languages Skilled in Docker and Kubernetes, AWS, Shell scripting Strong team player and leader with excellent interpersonal skills Fluency in English required, other languages are a plus Apply for the Data Engineer (m/f) position if you believe this is your next challenge. A very rewarding Data Engineer (m/f) in-house role has become available at a leading firm creating their new data platform.',\n", + " '[\"Positivity\"]',\n", + " '[\"Docker (Software)\", \"Kubernetes\", \"Experience Design\", \"KM Programming Language\", \"Python (Programming Language)\", \"Shell Script\", \"M (Programming Language)\", \"Track (Rail Transport)\", \"Data Storage Technologies\", \"Java (Programming Language)\", \"Electronic Data Processing\", \"SQL (Programming Language)\", \"Data Engineering\"]',\n", + " \"['English', 'Indonesian', 'Latin']\"],\n", + " ['39',\n", + " 'junior software engineer (java/.net)',\n", + " 'Bern',\n", + " 'IT Services',\n", + " '',\n", + " '[[-1.58827543e-01 2.78695405e-01 4.78867859e-01 -1.40555575e-01\\n4.73880589e-01 -2.29799300e-01 1.18673015e-02 5.41712344e-01\\n-1.29821241e-01 -4.76364672e-01 -1.58624187e-01 -1.81938067e-01\\n4.80378605e-02 7.95653313e-02 2.17752740e-01 3.67459863e-01\\n4.41360325e-01 7.91803077e-02 -2.36952901e-01 2.59149373e-01\\n8.82902965e-02 -9.55050960e-02 2.38359142e-02 7.61771441e-01\\n3.76127362e-01 -8.69915858e-02 2.29717679e-02 3.41004245e-02\\n-1.39177978e-01 -2.78147906e-01 4.10465032e-01 -4.33184467e-02\\n-1.17008306e-01 -2.25145057e-01 1.31188542e-01 1.38856128e-01\\n-1.25351340e-01 -5.25613613e-02 -1.53748631e-01 4.86257859e-02\\n-5.14377654e-01 -2.02427134e-01 -2.05447972e-02 -1.84176508e-02\\n-2.09004015e-01 -3.33692968e-01 1.72833309e-01 -1.39994975e-02\\n1.31572768e-01 -9.98403784e-03 -4.73160774e-01 2.33639076e-01\\n-1.81318372e-01 -1.78376257e-01 3.14814419e-01 5.54818749e-01\\n-3.95433977e-02 -4.44730997e-01 -3.76411676e-01 -2.83830196e-01\\n3.44227068e-02 -9.47789662e-03 1.22087888e-01 -2.85488904e-01\\n3.67980450e-01 -7.87562970e-03 9.07403044e-03 3.48818094e-01\\n-8.14982414e-01 -1.68173745e-01 -2.94127077e-01 -6.67742416e-02\\n-3.78268152e-01 -7.66451210e-02 -4.20350105e-01 -2.10033372e-01\\n-1.07887097e-01 2.65489012e-01 5.23711927e-02 2.09682733e-02\\n-1.86930656e-01 3.08594942e-01 -1.73784181e-01 3.63948613e-01\\n2.48869896e-01 3.63521367e-01 1.64428174e-01 2.72433609e-01\\n-3.77314508e-01 4.13331836e-01 1.41549259e-01 -3.45169276e-01\\n2.43585914e-01 1.02383338e-01 4.17286038e-01 4.24816944e-02\\n2.50019222e-01 1.57336622e-01 -2.64836699e-01 3.02274495e-01\\n2.93807298e-01 -2.79321969e-01 -2.38636043e-02 -9.86920949e-03\\n-5.60049936e-02 2.31792517e-02 -6.16665813e-04 1.17856622e-01\\n-3.47929269e-01 4.11345243e-01 1.00593649e-01 -2.85953283e-01\\n-5.89340702e-02 -5.28664768e-01 -1.35897920e-01 -3.37957442e-02\\n-6.15946315e-02 2.11408257e-01 2.33356938e-01 2.40028992e-01\\n1.73432574e-01 -7.98824802e-02 1.34229273e-01 7.63626695e-01\\n-8.75543430e-02 -7.15625882e-02 -3.16814929e-01 3.73807162e-01\\n-2.67740134e-02 -4.11100835e-01 2.59840757e-01 2.11753845e-01\\n1.16921723e-01 -1.25389710e-01 -2.14210510e-01 3.41955751e-01\\n3.45799513e-02 -1.71745077e-01 -3.71429801e-01 2.30877593e-01\\n-1.22679412e-01 -3.75482708e-01 5.65133452e-01 7.24253282e-02\\n1.81915075e-01 3.86341778e-03 -4.98558767e-03 -1.22229494e-01\\n-3.95373395e-03 1.60084143e-01 6.99667186e-02 1.24577120e-01\\n-2.30207920e-01 -2.21925631e-01 -2.30002046e-01 3.13030601e-01\\n-3.64954174e-01 1.97183296e-01 -1.34738863e-01 -2.07204714e-01\\n2.64092565e-01 -1.13843828e-02 -2.69747227e-01 2.82127708e-01\\n-3.53487544e-02 1.22332918e-02 -1.36799812e-01 3.96395475e-01\\n-2.09637105e-01 3.49883676e-01 5.23413643e-02 -2.85093896e-02\\n5.61599016e-01 8.99781883e-02 2.71654595e-02 -2.03372002e-01\\n2.06880957e-01 -2.98014246e-02 1.15183085e-01 6.57073855e-02\\n-6.60079360e-01 3.07879359e-01 -9.49652120e-02 -1.27565965e-01\\n9.22757983e-02 -6.22084215e-02 1.81700677e-01 -3.32530349e-01\\n-9.13730934e-02 -2.39496194e-02 -3.23593050e-01 -1.28294677e-01\\n-3.21318537e-01 -1.14021793e-01 3.54481518e-01 -4.49458659e-01\\n-2.99405996e-02 2.49697998e-01 -5.77152431e-01 -2.73775402e-02\\n1.21829838e-01 1.55680776e-01 9.72019136e-02 2.03857154e-01\\n-2.03631241e-02 -5.92750371e-01 4.81511131e-02 -4.10569489e-01\\n-2.38378733e-01 1.76799178e-01 -2.41349548e-01 2.00967252e-01\\n1.55110434e-01 7.11145550e-02 -1.30593866e-01 1.42261624e-01\\n-2.02240467e-01 7.53328204e-02 2.06379533e-01 5.90732023e-02\\n3.36558282e-01 -2.42210203e-03 -3.62746119e-01 4.73185003e-01\\n-1.79395214e-01 4.32618946e-01 8.20220932e-02 -7.40790486e-01\\n4.99322742e-01 3.16077262e-01 1.87335107e-02 -2.89647877e-01\\n7.35326290e-01 -2.16304600e-01 -1.00801133e-01 3.21742892e-02\\n-5.23423493e-01 -3.58700395e-01 1.92116454e-01 -2.96618879e-01\\n-2.33964980e-01 4.45686579e-01 1.65504087e-02 1.98386401e-01\\n2.95771122e-01 -1.97146222e-01 -5.09892814e-02 1.61430672e-01\\n-1.64429456e-01 -2.37755612e-01 -3.73731345e-01 -7.80293196e-02\\n-4.40856926e-02 -3.88676941e-01 -2.37136006e-01 -5.08576810e-01\\n-2.19527751e-01 -3.54987919e-01 -1.41787678e-01 2.72372574e-01\\n1.58604011e-01 8.70653242e-02 1.32660553e-01 4.78086174e-02\\n-2.08709374e-01 -5.99440336e-01 1.99819263e-02 -8.94805416e-03\\n2.47664079e-01 1.52464449e-01 7.94050545e-02 5.17726168e-02\\n3.41715738e-02 6.48942888e-01 -3.20831656e-01 -1.91042066e-01\\n1.09203830e-01 1.48161173e-01 1.04698956e-01 -3.97733003e-02\\n5.07630408e-02 3.09694499e-01 -3.20202678e-01 -9.60228369e-02\\n-2.18024597e-01 -3.28182168e-02 4.66330886e-01 -1.81492523e-03\\n-2.81329036e-01 -2.52997398e-01 1.24677047e-02 2.45771989e-01\\n-4.65997130e-01 -2.84224808e-01 6.24197304e-01 1.23508401e-01\\n1.34853527e-01 1.71850488e-01 2.86073506e-01 -7.81232268e-02\\n-1.75063163e-01 -1.45206824e-01 1.15165994e-01 1.11263581e-01\\n2.11658254e-01 8.14656988e-02 -1.33688629e-01 -5.13552487e-01\\n-3.52109337e+00 -1.17624223e-01 2.69350410e-01 -1.77220568e-01\\n2.68861860e-01 2.68066535e-03 6.19634688e-02 -1.62257150e-01\\n-4.13883030e-01 4.62229177e-02 -1.27573296e-01 -2.28280216e-01\\n8.44606683e-02 3.29648674e-01 1.57195091e-01 3.08645725e-01\\n1.29263967e-01 -2.22141087e-01 -1.22946640e-02 3.62971544e-01\\n-1.39546975e-01 -6.86518013e-01 1.83385700e-01 2.85891108e-02\\n2.96255052e-01 2.73318321e-01 -4.13080931e-01 -1.90542772e-01\\n-2.95050502e-01 -1.80301338e-01 1.26884058e-01 -3.64466250e-01\\n-3.32780965e-02 3.19563150e-01 2.83203334e-01 -6.28919676e-02\\n1.33865908e-01 -2.76239842e-01 -4.78464812e-02 -4.32089269e-01\\n6.00930601e-02 -5.00135064e-01 -7.45047629e-02 -5.60372248e-02\\n7.28386939e-01 -3.76320213e-01 2.14657098e-01 1.32776007e-01\\n9.21246503e-03 1.30457014e-01 3.32576558e-02 7.75809363e-02\\n-1.70795739e-01 -3.18200201e-01 -9.86755341e-02 -1.54593468e-01\\n5.84324300e-01 5.08086622e-01 -1.61577046e-01 5.21287620e-02\\n1.53204089e-03 -2.86226988e-01 -5.30879080e-01 -2.80238062e-01\\n-1.05648682e-01 -2.30384082e-01 -6.41126037e-01 -5.36254942e-01\\n-3.83740999e-02 -1.15055107e-01 -4.74285781e-02 5.37634552e-01\\n-2.52482742e-01 -3.95210832e-01 -1.65556222e-02 -5.78961492e-01\\n1.98314011e-01 -1.45615041e-01 8.62899870e-02 -1.42745286e-01\\n-1.24511473e-01 -5.49315929e-01 2.70422958e-02 4.75546084e-02\\n-2.47622523e-02 -2.47174740e-01 1.22326352e-01 -1.49212986e-01\\n-2.52571464e-01 -5.40702343e-01 3.74891996e-01 1.36767313e-01\\n2.08872885e-01 1.40689880e-01 2.40576521e-01 1.01999514e-01\\n1.67921364e-01 -9.52362344e-02 -3.61311324e-02 -4.44859505e-01\\n8.95510316e-02 -1.04696140e-01 3.82164299e-01 -3.26634869e-02\\n6.03698343e-02 2.00049117e-01 -1.46399140e-01 -1.01913661e-01\\n3.26237798e-01 1.08943908e-02 1.12008460e-01 -2.20066637e-01\\n3.19959432e-01 -2.72757381e-01 -1.28581539e-01 -1.83506012e-02\\n4.90713445e-03 5.74966431e-01 -7.06424713e-02 -3.90848041e-01\\n-1.47595271e-01 6.00507021e-01 -6.79052100e-02 -3.97872925e-02\\n-1.17952898e-01 7.98804238e-02 -2.74480075e-01 5.67922881e-03\\n-3.06092072e-02 -2.11964339e-01 -2.54958183e-01 -1.58343881e-01\\n-2.52743382e-02 2.50926197e-01 2.46412784e-01 1.84663594e-01\\n-1.68434650e-01 -4.49379891e-01 -5.07851020e-02 2.13145614e-01\\n2.47640848e-01 4.30739164e-01 1.75509617e-01 -3.08284581e-01\\n9.53409970e-02 2.99105197e-01 -1.54446036e-01 2.29702756e-01\\n-2.52739400e-01 7.84975961e-02 -4.36804354e-01 -2.90216118e-01\\n-2.59949058e-01 -3.24193925e-01 1.25374228e-01 1.87814057e-01\\n6.76294044e-02 1.33603681e-02 1.14257529e-01 -4.02388960e-01\\n3.39951277e-01 5.46802655e-02 1.78838268e-01 2.34859586e-01\\n-1.44989258e-02 5.66608250e-01 -2.93977652e-02 -2.72655915e-02\\n-2.06471995e-01 1.31502539e-01 -1.16314121e-01 -1.70047715e-01\\n-1.53268073e-02 -4.18426305e-01 -1.25635967e-01 3.95572037e-01\\n-1.51341744e-02 -1.98892385e-01 -1.84293345e-01 1.33103088e-01\\n-1.24523873e-02 -4.26679999e-01 -1.68256223e-01 4.72400412e-02\\n3.17882925e-01 1.31157205e-01 2.37877235e-01 -4.51426506e-01\\n-4.36960720e-02 -8.59291479e-02 -9.19071771e-03 5.38052976e-01\\n9.78387520e-02 2.43968032e-02 -1.85595438e-01 -3.31986129e-01\\n3.40757281e-01 -2.35036463e-01 -4.49520610e-02 -9.49716642e-02\\n1.09524071e-01 -2.29051903e-01 -3.94466668e-01 1.12901796e-02\\n-2.28889715e-02 -1.57082766e-01 4.99600731e-02 -5.62684201e-02\\n5.32312579e-02 1.14234164e-01 -6.65734053e-01 -3.08978528e-01\\n-3.15116107e-01 -1.32280253e-02 3.26039875e-03 -4.10727203e-01\\n-1.57596990e-02 -1.82145894e-01 -5.69393694e-01 3.07676047e-01\\n-2.93911099e-01 -1.48574477e-02 1.86498404e-01 4.93605547e-02\\n-4.61528271e-01 -1.57485783e-01 1.40986159e-01 2.44371355e-01\\n-2.01365843e-01 -2.32848778e-01 3.08321370e-03 -1.03073108e+00\\n2.20900252e-01 -1.38987526e-01 -7.84655735e-02 8.88724849e-02\\n-8.37963969e-02 -7.31486976e-01 8.10461566e-02 -3.53159219e-01\\n-1.50128268e-02 -3.72301266e-02 -1.43916145e-01 -4.17995423e-01\\n5.00536673e-02 -1.84866600e-02 -2.48600647e-01 3.91701728e-01\\n-3.62792760e-01 2.24280521e-01 -1.86300918e-01 5.38041890e-02\\n-9.67377126e-02 -3.68721902e-01 7.33922124e-02 -3.73454690e-01\\n-3.44112813e-01 -1.37546062e-01 -2.37962887e-01 -2.54413038e-01\\n1.16084358e-02 -3.28658849e-01 -6.08670749e-02 9.40840244e-02\\n2.77582705e-01 2.66999863e-02 -1.74799994e-01 -2.48681396e-01\\n6.78614751e-02 -3.78883272e-01 1.66547179e-01 -2.07185209e-01\\n6.27262667e-02 -1.06813110e-01 3.06599170e-01 7.80118108e-02\\n1.21283166e-01 -4.46942568e-01 3.80641311e-01 -2.89954752e-01\\n-3.20932388e-01 5.85157536e-02 4.20724303e-02 -1.23140395e-01\\n3.69675606e-01 -5.54781973e-01 -2.06679776e-02 4.28485304e-01\\n8.46811384e-02 5.97820766e-02 3.17055672e-01 -7.15464577e-02\\n-1.09568961e-01 4.51631516e-01 -3.66588026e-01 9.77575928e-02\\n7.44794071e-01 1.27400473e-01 2.58273005e-01 1.80481389e-01\\n1.57584041e-01 4.34243172e-01 4.23174053e-01 -4.54297960e-02\\n4.08817418e-02 3.91179770e-01 1.07984982e-01 -5.50856769e-01\\n5.44481678e-03 7.19335973e-02 -2.54584849e-01 -2.51239806e-01\\n6.41991615e-01 4.47902858e-01 -3.08286816e-01 -3.16318631e-01\\n-1.60260692e-01 -1.67772382e-01 2.61525780e-01 -7.24956840e-02\\n1.73292905e-01 -1.90510035e-01 4.76444274e-01 7.25093633e-02\\n2.79668629e-01 5.98666668e-01 -1.68798998e-01 -4.63422179e-01\\n-6.67553768e-02 2.49895677e-01 -5.61951799e-03 5.59397578e-01\\n-1.99815243e-01 3.07910413e-01 -3.81668541e-03 9.51393619e-02\\n-7.72468969e-02 2.07414761e-01 1.83281481e-01 9.25850868e-02\\n1.99795917e-01 1.58821672e-01 4.23609674e-01 4.99398202e-01\\n3.23253930e-01 4.63131130e-01 2.66349792e-01 4.53740209e-02\\n4.42332268e-01 4.39093471e-01 6.10854387e-01 1.24034561e-01\\n2.70760749e-02 1.35199070e-01 -3.34587088e-03 -2.65484080e-02\\n3.17961782e-01 3.41834605e-01 -2.74997614e-02 9.60237682e-01\\n4.50954556e-01 3.41277361e-01 6.73647583e-01 -6.31285608e-01\\n-2.82306641e-01 1.83541942e-02 4.15009975e-01 -3.90704185e-01\\n-1.07998855e-01 8.41566995e-02 -2.38736510e-01 2.20124871e-01\\n-3.84852022e-01 -3.00646037e-01 -5.36313877e-02 8.61279517e-02\\n2.65489910e-02 -1.19192466e-01 -2.08627075e-01 -1.65807530e-02\\n-1.76002905e-01 -1.24855906e-01 -5.09822190e-01 -1.34648541e-02\\n-2.38185540e-01 -2.20769331e-01 -1.34820342e-01 -1.33086696e-01\\n-1.20534085e-01 -2.65057206e-01 -9.40930173e-02 3.00957412e-02\\n1.81991190e-01 -1.37859479e-01 -1.01571336e-01 -2.45375454e-01\\n3.61819506e-01 2.96767086e-01 5.06321073e-01 -1.22618140e-03\\n1.05124742e-01 -2.19792813e-01 -3.25285435e-01 1.08996965e-01\\n6.82698861e-02 7.99415112e-02 4.71303686e-02 3.68025988e-01\\n-1.77926347e-01 -1.64311856e-01 1.06142387e-01 3.94598186e-01\\n-4.38350856e-01 5.98285422e-02 -8.29191133e-02 3.12816650e-01\\n4.62172218e-02 7.52945840e-02 -1.42926052e-01 2.19236463e-02\\n-5.24606146e-02 -5.29077649e-01 3.10505122e-01 -1.89693198e-01\\n-7.29181617e-02 1.79550022e-01 2.31941864e-01 2.65209377e-01\\n-2.43209913e-01 -3.36528458e-02 -7.77457729e-02 1.48966402e-01\\n2.96344887e-02 2.88941920e-01 -3.16526979e-01 -1.69977471e-01\\n-2.23189056e-01 1.41295016e-01 -3.24264973e-01 8.26542974e-02\\n-4.16963585e-02 3.40689451e-01 6.85338825e-02 7.51652122e-02\\n4.13419455e-01 -6.90255836e-02 -1.82402045e-01 -1.72046363e-01\\n-2.15069085e-01 -1.78717017e-01 2.70129666e-02 -1.14340223e-01\\n2.40369633e-01 -3.34704936e-01 -1.08840436e-01 -2.16799378e-01\\n-9.73969996e-02 -3.66852075e-01 4.89581600e-02 -9.68382210e-02]]',\n", + " 'Drucken Share Bewerben For our locations Zurich, Bern, Lausanne, Geneva and Granada, we are looking for Junior Software Engineers (Java/.Net). In this role Develop innovative web and mobile applications, using state-of-the-art tools and agile methodologies. Work closely with a multidisciplinary team of business analysts, architects and developers. Be involved in the complete project lifecycle, from requirements analysis to final delivery. What we offer A dynamic work environment with a young and highly motivated team. Ample opportunities to expand your knowledge and experience by working on a broad range of exciting projects, customers and technologies. Attractive prospects for career and personal development through training and coaching. A flat hierarchy and a culture of collaboration across all disciplines. The chance to make a difference in peoples’ life by building great software. About your profile You hold a MSc or BSc from a leading university or institute of technology. You already have some experience in developing Java or .Net applications from internships or course-related activities. You are passionate about technology and software engineering. You are familiar with the fundamentals of underlying technologies such as web-based user interfaces, relational and non-relational databases, application security, and communication protocols. You have a good command of English and either French or German (depending on working location). For Zurich and Bern you have very good language skills in German and English. For Lausanne and Geneva you have very good language skills in French and English. For Granada you have very good language skills in English.',\n", + " '[\"Collaboration\", \"Innovation\", \"Team Motivation\"]',\n", + " '[\"MSC Software\", \"Database Application\", \"Tooling\", \"Hostile Work Environment\", \"Relational Databases\", \"Requirements Analysis\", \"Agile Methodology\", \"Application Security\", \"Personality Development\", \"Communications Protocols\", \"Java (Programming Language)\", \"Mobile Application Software\", \"User Interface\", \"Software Engineering\", \"Finalization\"]',\n", + " \"['English', 'South Ndebele', 'Welsh', 'Aymara', 'Indonesian']\"],\n", + " ['1',\n", + " 'full stack software engineer',\n", + " 'Neuchâtel',\n", + " '',\n", + " '',\n", + " '[[-2.57387906e-01 2.24195898e-01 4.99606431e-01 7.67015666e-03\\n4.39205438e-01 -1.57651961e-01 1.62919555e-02 2.65592307e-01\\n7.57750422e-02 -5.09545028e-01 -1.28488429e-03 -2.34035105e-01\\n-1.36220977e-01 9.99910831e-02 9.62357596e-02 3.91497105e-01\\n4.33110178e-01 9.11655128e-02 -1.86837465e-01 3.61069202e-01\\n9.07389969e-02 -2.13403106e-01 -2.18327977e-02 7.80924439e-01\\n4.35213625e-01 2.85370983e-02 -1.80516448e-02 -6.72442168e-02\\n-1.89708650e-01 -2.32839704e-01 4.24221277e-01 -2.34960504e-02\\n-6.04972318e-02 -4.63003486e-01 6.75984658e-04 8.46491158e-02\\n-1.33285031e-01 1.73889995e-01 -3.61849405e-02 1.55229151e-01\\n-5.41841626e-01 -3.32599163e-01 2.60884240e-02 3.07021011e-03\\n-1.41364798e-01 -2.91115910e-01 6.25893474e-02 3.99509296e-02\\n1.43256754e-01 4.80507836e-02 -4.74243581e-01 2.86845058e-01\\n-2.92383611e-01 -2.12280035e-01 2.52686083e-01 4.88089323e-01\\n7.45727196e-02 -5.12309074e-01 -5.83395600e-01 -3.71003330e-01\\n-9.40715671e-02 -1.00202873e-01 9.56310332e-02 -2.97852039e-01\\n2.98183799e-01 1.14422236e-02 1.03572812e-02 3.35094213e-01\\n-8.43954563e-01 8.42064619e-03 -2.03350395e-01 -6.37425110e-02\\n-2.80253857e-01 -1.89941585e-01 -2.98184484e-01 -3.52415778e-02\\n-1.45451844e-01 3.86997133e-01 1.25142768e-01 1.36410326e-01\\n-2.01436341e-01 2.76433319e-01 -1.79879740e-01 4.77862537e-01\\n2.18596831e-01 9.53932032e-02 3.49596262e-01 3.13006997e-01\\n-3.50769341e-01 4.72714603e-01 8.32425803e-02 -2.67810434e-01\\n2.54730910e-01 1.15154423e-01 4.81665850e-01 2.85611581e-03\\n1.23618796e-01 1.57140419e-01 -2.56619781e-01 2.50683784e-01\\n2.49171734e-01 -2.85317004e-01 6.73409365e-03 -1.31749257e-01\\n-3.23067680e-02 1.95298083e-02 6.55323416e-02 1.42661870e-01\\n-4.27030414e-01 4.57454562e-01 2.19374508e-01 -2.28910401e-01\\n-1.59789339e-01 -3.83001745e-01 -1.17790073e-01 9.39503908e-02\\n-1.60202701e-02 6.38229847e-02 2.23725945e-01 6.88795745e-02\\n1.96974635e-01 2.60264110e-02 -5.22742048e-04 8.85874748e-01\\n-1.40524998e-01 9.57306996e-02 -2.51644611e-01 2.53697485e-01\\n1.50980324e-01 -2.89986312e-01 2.80801773e-01 2.16312230e-01\\n1.39132887e-02 -1.18245423e-01 -1.95549756e-01 3.32219392e-01\\n-7.19487816e-02 -1.09254085e-01 -2.73653954e-01 2.20479891e-01\\n-1.51173472e-02 -4.65274721e-01 6.94707155e-01 1.68074474e-01\\n2.55161643e-01 4.93885428e-02 1.21857539e-01 -8.68645608e-02\\n-1.27081886e-01 2.56290913e-01 7.76379332e-02 2.72442311e-01\\n-2.18108118e-01 -3.20613831e-01 -2.21017212e-01 2.23724842e-01\\n-3.53618503e-01 1.75051764e-01 -1.28394797e-01 -1.41465947e-01\\n3.30577046e-01 1.05536059e-02 -2.87803292e-01 2.10825711e-01\\n-1.01773039e-01 3.64506356e-02 -7.72139207e-02 2.71981359e-01\\n-1.02155492e-01 2.14078188e-01 9.22173262e-04 -6.45145699e-02\\n5.64561486e-01 2.84836173e-01 2.79161423e-01 -1.23067670e-01\\n3.45087260e-01 -5.11676781e-02 1.63405091e-01 8.21002498e-02\\n-6.31040514e-01 3.10869873e-01 -3.68727036e-02 -1.76589251e-01\\n1.34969518e-01 -6.52770475e-02 3.25856805e-01 -2.57157922e-01\\n-5.15967123e-02 -1.62426069e-01 -3.76122057e-01 -3.22656900e-01\\n-2.83604413e-01 2.77144164e-02 4.97196406e-01 -4.26776201e-01\\n-8.15059394e-02 2.91484952e-01 -5.68268538e-01 -1.38173819e-01\\n2.32215762e-01 1.47685558e-01 1.01201661e-01 7.15292692e-02\\n-1.90153286e-01 -6.05410337e-01 8.48772302e-02 -4.52759802e-01\\n-4.09371853e-01 3.98010090e-02 -3.53863716e-01 1.78142220e-01\\n7.17044398e-02 1.07615422e-02 -8.54406655e-02 1.63991392e-01\\n-1.66344672e-01 -1.10204682e-01 8.21704417e-02 6.00692928e-02\\n1.95020586e-01 2.53835693e-02 -3.49418581e-01 4.34643269e-01\\n-2.08886564e-01 6.72649145e-01 8.37124288e-02 -8.90098214e-01\\n5.02213538e-01 3.19890678e-01 -6.48893192e-02 -3.48706692e-01\\n4.43045735e-01 -2.83987701e-01 -8.49256199e-03 1.15177333e-01\\n-3.37654531e-01 -2.92428941e-01 2.31472522e-01 -1.71367258e-01\\n-2.20631361e-01 4.41119671e-01 1.76952966e-02 9.16481018e-03\\n1.95702165e-01 -2.80308783e-01 -4.14756462e-02 1.09346136e-01\\n-4.77231741e-02 -1.89879775e-01 -4.89079297e-01 1.88513100e-03\\n-8.47586989e-02 -4.07218874e-01 -1.30039483e-01 -3.47180545e-01\\n-2.41055876e-01 -3.97242963e-01 -3.49088669e-01 2.96143562e-01\\n2.25147307e-01 2.32551634e-01 -4.04355973e-02 7.44869709e-02\\n-1.01113021e-01 -7.65807092e-01 -5.17901964e-02 9.09530818e-02\\n4.55614984e-01 2.97814310e-01 1.09813064e-01 -7.03129247e-02\\n4.47022766e-02 5.63230157e-01 -3.85134876e-01 -2.58236289e-01\\n9.64315012e-02 1.24445297e-01 8.34759995e-02 -1.69341728e-01\\n9.87809896e-02 3.20158005e-01 -2.26465285e-01 2.07710825e-03\\n-3.88338137e-03 -5.48758395e-02 4.54785943e-01 -7.30495080e-02\\n-4.50373381e-01 -2.26587906e-01 -8.99599567e-02 1.95765853e-01\\n-5.35101414e-01 -1.89487040e-01 5.62533021e-01 2.48954564e-01\\n2.91302830e-01 1.00056246e-01 1.67688861e-01 -6.92145973e-02\\n-1.73061445e-01 -3.14185739e-01 3.40069145e-01 1.11251567e-02\\n1.78322166e-01 1.65916294e-01 -3.08023635e-02 -6.76074743e-01\\n-3.35571814e+00 -1.75105125e-01 1.85038835e-01 -2.31760085e-01\\n2.18316182e-01 -1.25741452e-01 1.93209387e-02 -1.32110715e-01\\n-2.53572494e-01 5.47187626e-02 -1.86318964e-01 -8.39887932e-02\\n9.73737389e-02 1.58159584e-01 1.00809872e-01 2.19976634e-01\\n2.05799997e-01 -1.63726091e-01 1.10146916e-02 2.65741378e-01\\n-1.71532810e-01 -6.55061483e-01 9.83048826e-02 -8.91530812e-02\\n3.22667509e-01 1.62748769e-01 -3.84980142e-01 -6.11835346e-02\\n-2.69997835e-01 -1.82673231e-01 8.05810913e-02 -2.59896189e-01\\n-1.40804008e-01 2.03420699e-01 1.01352841e-01 -9.51327831e-02\\n8.59824568e-02 -3.63885522e-01 -1.81158930e-01 -5.00918269e-01\\n1.52946234e-01 -5.53841233e-01 -4.17119972e-02 -1.15888700e-01\\n5.94747305e-01 -3.25078219e-01 1.89875484e-01 1.09403998e-01\\n2.83114880e-01 1.29362851e-01 1.23972818e-02 2.62861364e-02\\n-2.21838564e-01 -1.69493467e-01 -5.30149117e-02 -1.88615918e-01\\n5.25774539e-01 4.56460774e-01 -2.93390125e-01 -4.37667966e-02\\n3.56705412e-02 -3.41640472e-01 -4.32385027e-01 -2.23129198e-01\\n-7.13311061e-02 -2.52163529e-01 -5.77911139e-01 -4.77157831e-01\\n-3.09571266e-01 -1.10365443e-01 -1.26469702e-01 6.62187338e-01\\n-3.23219568e-01 -3.27766478e-01 6.65277019e-02 -5.28533757e-01\\n2.30842918e-01 -1.96435735e-01 4.32930477e-02 -2.52803147e-01\\n-2.27631286e-01 -5.73321760e-01 6.24423847e-02 -1.82968341e-02\\n-1.73961565e-01 -1.79617852e-01 6.78169578e-02 -6.17943071e-02\\n-2.32531011e-01 -4.19756383e-01 3.89647216e-01 1.04346447e-01\\n2.93228269e-01 5.08284681e-02 2.81928509e-01 -4.79459763e-02\\n3.37367564e-01 -8.83976743e-02 -1.13041550e-02 -3.93449515e-01\\n1.54537633e-01 2.55006105e-02 5.09475887e-01 -1.81696236e-01\\n-1.32874712e-01 1.52365863e-01 -2.80296147e-01 -9.98495892e-02\\n4.27709907e-01 5.98356500e-02 2.41100192e-02 -1.26159042e-01\\n3.05627704e-01 -2.97293186e-01 -2.31893986e-01 1.07932895e-01\\n8.20666179e-02 6.54827118e-01 -2.06933096e-02 -3.98156404e-01\\n-9.41035450e-02 4.97114569e-01 -7.45334774e-02 6.69855997e-02\\n-1.63031146e-01 1.21430025e-01 -1.41673610e-01 2.03504503e-01\\n5.81516325e-02 -1.41184911e-01 -2.12617084e-01 -7.58793280e-02\\n-1.01767808e-01 2.25126356e-01 1.97094828e-01 6.11173064e-02\\n-9.18186009e-02 -2.76917189e-01 -1.15591481e-01 2.20494658e-01\\n1.40025735e-01 4.62708712e-01 1.79113910e-01 -2.61307478e-01\\n6.93134218e-02 3.74970138e-01 -1.66973844e-01 1.88028678e-01\\n-3.06800246e-01 3.88154015e-02 -5.07762194e-01 -1.43216029e-01\\n-2.85385489e-01 -3.75269949e-01 1.11975931e-01 2.98156142e-01\\n5.36708087e-02 -3.08389924e-02 2.81339567e-02 -4.94714230e-01\\n1.57665610e-01 1.08285412e-01 1.70852378e-01 1.00113593e-01\\n3.32198851e-02 4.90703076e-01 -1.01132318e-03 -1.47146970e-01\\n-1.85693353e-01 3.55091654e-02 -6.82287887e-02 -1.82798803e-01\\n6.06072955e-02 -4.86986220e-01 -5.72313331e-02 3.16250741e-01\\n1.40899912e-01 -2.36131623e-01 -2.40024000e-01 3.50003898e-01\\n4.15401310e-02 -2.47017115e-01 -2.62290299e-01 -2.24967618e-02\\n2.62715280e-01 6.07578978e-02 2.16465384e-01 -3.89911056e-01\\n-8.42264965e-02 4.31800932e-02 -1.22739203e-01 3.84100348e-01\\n2.32975967e-02 1.01430684e-01 -2.31943935e-01 -1.55882329e-01\\n3.36307049e-01 -5.94463050e-02 -4.67284583e-02 -1.03555344e-01\\n5.76151237e-02 -1.34188741e-01 -5.22286177e-01 7.44893253e-02\\n1.70206986e-02 -1.74265087e-01 5.33537157e-02 1.05105408e-01\\n4.18187976e-02 1.32741690e-01 -4.79712486e-01 -2.69251585e-01\\n-2.44657099e-01 -1.28393084e-01 1.26296237e-01 -4.95894432e-01\\n-1.22612000e-01 -1.00875467e-01 -4.81908411e-01 1.76894516e-01\\n-2.77513266e-01 -1.07725382e-01 8.95582885e-02 6.33658022e-02\\n-2.83998668e-01 -2.77838148e-02 -2.29592547e-02 2.75934875e-01\\n-2.86846757e-01 -3.39762658e-01 5.56057990e-02 -9.45985317e-01\\n2.27170900e-01 6.89734519e-02 -2.22424865e-01 -3.26718669e-03\\n-1.74108610e-01 -6.05216146e-01 1.30950481e-01 -4.37011421e-01\\n-1.50994360e-01 -2.34844610e-02 -2.72105157e-01 -2.97714859e-01\\n5.47038652e-02 -1.74721032e-01 -3.68130445e-01 3.76134336e-01\\n-4.05940771e-01 4.43874866e-01 -1.76401973e-01 -4.87243757e-04\\n-2.13410147e-02 -2.63319880e-01 2.02112824e-01 -2.84823000e-01\\n-4.09996748e-01 -2.83034474e-01 -3.78045678e-01 -3.00968587e-01\\n1.11076590e-02 -2.72479594e-01 -1.63361132e-01 2.23125428e-01\\n4.18927550e-01 9.21448693e-02 -8.02528784e-02 -3.98536235e-01\\n-5.82518913e-02 -5.93117774e-01 1.74098760e-02 -5.26624545e-02\\n-7.54604787e-02 -9.09532756e-02 1.88905656e-01 1.10775791e-01\\n1.42395273e-01 -3.75263512e-01 3.93059671e-01 -3.88286471e-01\\n-2.79299974e-01 -7.92382509e-02 -2.73861047e-02 9.36259404e-02\\n2.00426802e-01 -5.31054139e-01 9.77144539e-02 3.01199764e-01\\n1.98462456e-01 2.97670960e-02 1.91203266e-01 -4.87900116e-02\\n-6.87882900e-02 2.27988616e-01 -2.98012584e-01 1.73090607e-01\\n6.54144347e-01 1.17388286e-01 6.31652772e-02 2.00194702e-01\\n1.16988398e-01 5.49446702e-01 5.94745517e-01 -2.47914586e-02\\n-9.24794599e-02 2.57767141e-01 8.51211250e-02 -4.79619801e-01\\n-3.72260362e-02 2.76423022e-02 -1.47639990e-01 -3.80314529e-01\\n7.14551330e-01 3.98576140e-01 -5.47404170e-01 -2.21336380e-01\\n-1.39679372e-01 -1.44555777e-01 2.00027853e-01 -7.04430044e-02\\n-3.39897536e-03 -6.29096925e-02 4.53113943e-01 -4.72913310e-02\\n2.08166152e-01 5.66115141e-01 -2.64952809e-01 -3.55567753e-01\\n-6.86679780e-02 3.62269878e-01 1.28274396e-01 4.08249676e-01\\n-1.98487312e-01 2.37037778e-01 -9.02682822e-03 6.05885573e-02\\n-1.00118443e-01 2.36629352e-01 8.07779133e-02 5.46400510e-02\\n2.47341186e-01 -1.67429149e-02 5.54966450e-01 4.74361002e-01\\n2.85025418e-01 4.20415431e-01 2.60521919e-01 4.21388745e-02\\n4.95278329e-01 6.49276495e-01 3.93783748e-01 7.72576332e-02\\n-1.11409156e-02 2.25496292e-01 1.70007914e-01 -3.44147757e-02\\n4.10633206e-01 4.40927386e-01 1.74155027e-01 8.08846772e-01\\n3.07304114e-01 3.02230656e-01 6.50846004e-01 -6.49663210e-01\\n-3.64356220e-01 -1.44418124e-02 5.23085117e-01 -2.48269573e-01\\n-4.11868766e-02 1.91694826e-01 -1.47834703e-01 3.07997227e-01\\n-3.73023361e-01 -1.27811998e-01 5.36306575e-02 9.21958461e-02\\n3.12214810e-02 -1.92565531e-01 -2.81669199e-01 5.60958087e-02\\n-1.00570589e-01 -1.80167913e-01 -3.31927955e-01 -9.69945937e-02\\n-2.72232592e-01 -2.60736402e-02 -7.23853558e-02 -1.15812071e-01\\n-1.85444765e-02 -3.97107005e-01 -1.34550244e-01 4.04467285e-02\\n3.69552046e-01 -1.67248875e-01 -9.58922058e-02 -1.34342164e-01\\n3.30228537e-01 1.68335885e-01 6.05117857e-01 7.68281966e-02\\n2.46731695e-02 -1.63395479e-01 -2.68286645e-01 1.74666971e-01\\n6.18755706e-02 1.51143685e-01 3.52012813e-02 2.19240040e-01\\n-2.01913804e-01 -1.46688879e-01 2.26790637e-01 3.25612247e-01\\n-3.89241725e-01 -7.37448260e-02 -1.58750713e-01 2.35728651e-01\\n8.98588151e-02 1.61781490e-01 -1.91177696e-01 4.34755534e-03\\n-1.86707377e-01 -4.07727838e-01 3.17683667e-01 -8.36183280e-02\\n-1.94343850e-01 9.68216807e-02 2.67825663e-01 2.44757056e-01\\n-1.58445179e-01 -5.56182899e-02 -5.41100129e-02 1.26169488e-01\\n6.32203966e-02 3.55454206e-01 -1.05133086e-01 -2.34796911e-01\\n-2.68025041e-01 1.81693420e-01 -1.99103922e-01 3.76326554e-02\\n-1.00589730e-01 2.89726645e-01 3.90762649e-02 6.35280684e-02\\n3.77216518e-01 5.01380265e-02 -2.76796132e-01 -2.48932004e-01\\n-2.78387010e-01 -1.10995561e-01 -7.88599625e-03 8.55033547e-02\\n1.08557038e-01 -3.86286855e-01 -5.02902046e-02 -1.17031999e-01\\n-1.29941404e-01 -2.66808242e-01 -3.83708254e-02 -3.63659114e-02]]',\n", + " 'We are seeking a Full Stack Software Engineer to develop software for our portable medical diagnostics system. The candidate will join a multi-disciplinary team dedicated to developing high-quality products. The ideal candidate is a team player, likes overcoming difficult challenges, enjoys learning new skills, and has a “hands-on” problem solving approach. This is an outstanding opportunity for a self-motivated individual to make a key contribution and increase their responsibilities in a high-growth start-up environment. You will build software used by medical professionals and patients. We have build our platform on a modern stack, including Node.js, React, Redux, GraphQL. As a team, we embrace collaboration and independent responsibility: you’ll be supported in your work, and you’ll have the freedom to make your own decisions. This role is for someone who wants to apply their computer science knowledge to have a meaningful impact on personalised medicine and life sciences. We are looking for someone to grow with the organization as a core member of the team. Job responsibilities: As part of the 1Drop Diagnostics team, the candidate will develop software for a distributed portable medical diagnostics system: Provide architecture and design for the overall application according to the requirements Inspire our users with a beautiful and intuitive UI/UX design Develop new features and functionality in collaboration with team members Maintain best practices relating to design, implementation, documentation, testing, and deployment. Ensure an easy-to-read and robust code base and good test coverage. Monitor and optimize code performance Provide integration with external services Provide technical leadership Assess current development processes and recommend changes as needed Our ideal candidate: Minimum 2 years’ experience working in a team with a modern web stack (Node.js, Django, Rails, React, etc.) building high-performance web applications Proficient in modern JavaScript (especially promises), Python, Ruby/Ruby on Rails Passion for front-end engineering and design Desire to push our stack forward. Currently, we use Angular, Redux, and React, GraphQL on the front end, Node.js, Postgres and Rabbitmq on the back end Deep knowledge of the building blocks of the web: HTTP, headers, cookies, caching Knowledge and experience using dev ops (continuous integration: Maven, Jenkins, Git) Open, objective, opinionated. Having technology preferences but happy to use frameworks and tools that get the job done efficiently and with scale in mind Nice to have skills and experience: Interest in personalised medicine, biology, laboratory science Experience with machine learning and image processing Passion for making in your spare time: electronics, robots, art, bikes, cars, anything! Experience with Android or iOS development Experience working with a quality system in a regulated industry ',\n", + " '[\"Self-Motivation\", \"Leadership\", \"Decisiveness\", \"Collaboration\", \"Professionalism\", \"Problem Solving\", \"Integration\"]',\n", + " '[\"Web Applications\", \"Tooling\", \"Jenkins\", \"Nice (Unix Utility)\", \"Clinical Laboratory Science\", \"Computer Science\", \"Life Sciences\", \"High Performance Computing\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Industrialization\", \"Scholastic READ 180\", \"Scale (Map)\", \"Ruby (Programming Language)\", \"Android (Operating System)\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"GraphQL\", \"IOS Development\", \"Quality Management Systems\", \"Software Engineering\", \"React.js\", \"Django (Web Framework)\", \"Threading Building Blocks\", \"Machine Learning Methods\", \"Front-End Engineering\", \"Image Processing\", \"RabbitMQ\", \"Product Quality (QA/QC)\", \"React Redux\", \"Apache Maven\", \"Electronics\", \"Biology\", \"JavaScript (Programming Language)\", \"Robotics\", \"Ruby On Rails\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Http Headers\", \"Software Development\", \"Service Provider\", \"Diagnostic Medical Sonography\", \"Git Flow\", \"Documentation Based Coding\", \"Process Driven Development\"]',\n", + " \"['English', 'Portuguese', 'Panjabi', 'Chechen']\"],\n", + " ['57',\n", + " 'embedded c++ software engineer',\n", + " 'Argovia',\n", + " '',\n", + " '',\n", + " '[[-1.28433421e-01 2.83800691e-01 6.33915722e-01 -1.78634495e-01\\n5.39020002e-01 -3.36250365e-01 6.18693605e-02 3.50471020e-01\\n-7.10186884e-02 -3.54706466e-01 -1.74907476e-01 -2.11526304e-01\\n-9.95143130e-02 4.14948240e-02 1.44126892e-01 3.07880491e-01\\n2.99018383e-01 8.96476954e-02 -1.44576609e-01 3.54188442e-01\\n2.68983066e-01 -1.06261246e-01 1.31449848e-01 6.80427611e-01\\n3.26738596e-01 4.70369793e-02 -4.60847206e-02 1.59742296e-01\\n-2.50792265e-01 -3.15738320e-01 3.22002202e-01 -1.88197382e-02\\n-1.56722188e-01 -2.02449366e-01 9.01135653e-02 3.54674384e-02\\n-2.25774884e-01 3.02493162e-02 4.97582592e-02 1.35087311e-01\\n-3.64428759e-01 -2.31375441e-01 1.10086657e-01 -6.57876655e-02\\n-1.91520810e-01 -3.74891162e-01 5.34251742e-02 1.54175824e-02\\n1.33457497e-01 3.06025743e-02 -3.08697760e-01 4.29379880e-01\\n-2.13567898e-01 -2.57574588e-01 2.82620788e-01 5.16020358e-01\\n-5.81523664e-02 -5.58755100e-01 -3.11011344e-01 -2.14066491e-01\\n1.49219289e-01 -1.04092278e-01 7.29059502e-02 -2.60019720e-01\\n4.82323080e-01 2.15871483e-02 -8.75292625e-03 2.87231207e-01\\n-7.70939112e-01 -2.97951270e-02 -2.14138210e-01 4.92615402e-02\\n-2.69597352e-01 -1.78969763e-02 -1.71551317e-01 -1.08788617e-01\\n-1.45132795e-01 4.40129548e-01 1.38669759e-01 1.37510031e-01\\n-4.95421961e-02 1.91691786e-01 -2.06324264e-01 2.22782061e-01\\n2.85600394e-01 2.98755765e-01 1.22878239e-01 2.50821173e-01\\n-3.89812648e-01 4.43323404e-01 1.48270443e-01 -2.45784834e-01\\n1.55818790e-01 2.37349123e-01 4.09518898e-01 4.22994047e-02\\n1.23376392e-01 9.40941647e-02 -1.87994063e-01 2.51849562e-01\\n2.98664182e-01 -2.55997926e-01 4.81074676e-03 6.54120445e-02\\n-8.02418739e-02 1.01241786e-02 -3.76035161e-02 3.63168985e-01\\n-4.17028069e-01 5.32698572e-01 -7.96160381e-03 -1.28235638e-01\\n4.30529155e-02 -6.28311574e-01 -2.03172490e-01 7.82053992e-02\\n-1.81007723e-03 5.45773357e-02 2.48085499e-01 2.82290280e-01\\n2.03134596e-01 1.23822674e-01 2.10894838e-01 9.86788034e-01\\n-2.25828122e-02 1.95756823e-01 -1.78452313e-01 4.59622473e-01\\n1.73260570e-01 -2.30558112e-01 2.27671489e-01 4.52559143e-01\\n1.71795160e-01 -1.16756052e-01 -1.33527979e-01 2.48957768e-01\\n-3.83067951e-02 -2.56491303e-01 -2.53842205e-01 1.90527380e-01\\n-1.25883251e-01 -5.89017451e-01 5.86031079e-01 4.97433692e-02\\n7.57842213e-02 4.33128327e-02 -6.19511977e-02 -7.17294887e-02\\n-1.44944251e-01 1.76976144e-01 8.22115839e-02 9.14429501e-02\\n-3.51145148e-01 -1.74420819e-01 -3.71995151e-01 1.66720226e-01\\n-2.54291981e-01 8.60551447e-02 -1.11995898e-01 -1.00853324e-01\\n2.36959651e-01 -2.71535553e-02 -3.96469057e-01 3.48099649e-01\\n-8.03437233e-02 -3.56233194e-02 -2.82146148e-02 2.88996488e-01\\n-8.83134902e-02 1.99030668e-01 -1.10869899e-01 -1.88610107e-01\\n3.79173994e-01 1.58160299e-01 8.91948417e-02 -6.74522519e-02\\n3.43650758e-01 -2.61498857e-02 8.30162019e-02 -2.52666343e-02\\n-8.15940619e-01 4.24162418e-01 -1.70750711e-02 -9.35131311e-02\\n5.52144228e-03 -2.17773635e-02 3.21559012e-01 -3.61311913e-01\\n6.65487945e-02 -1.76721483e-01 -3.44664007e-01 -2.30164394e-01\\n-1.99938595e-01 -8.17781966e-03 4.66814369e-01 -4.13906038e-01\\n-1.49052903e-01 1.12112194e-01 -5.38332105e-01 1.61192104e-01\\n3.38802099e-01 2.04717040e-01 2.57980943e-01 1.52376816e-01\\n-1.29490107e-01 -5.06538332e-01 3.04553583e-02 -3.55656892e-01\\n-2.97343463e-01 1.70748323e-01 -2.47116402e-01 2.33990937e-01\\n1.79551721e-01 -7.68691348e-03 -9.27392989e-02 -3.30867805e-03\\n-1.53524086e-01 -1.21811941e-01 2.10250795e-01 6.13110289e-02\\n3.45731229e-01 -4.94562685e-02 -3.23100448e-01 5.71458280e-01\\n-2.19040707e-01 4.19847786e-01 6.44316524e-02 -8.19191635e-01\\n4.59880859e-01 3.33465219e-01 5.42193875e-02 -3.76955301e-01\\n7.01029181e-01 -2.66211987e-01 -1.03540562e-01 1.94682166e-01\\n-4.12295789e-01 -2.49587297e-01 1.17122680e-01 -6.70905486e-02\\n-2.83816338e-01 4.94197756e-01 1.32125109e-01 7.79995546e-02\\n2.35521883e-01 -1.75491020e-01 -1.75365642e-01 -1.14681176e-03\\n-1.25734836e-01 -3.06762069e-01 -3.31499130e-01 1.03825867e-01\\n-2.85401102e-02 -5.48044503e-01 -9.67832357e-02 -4.42876756e-01\\n-2.12768346e-01 -3.55495423e-01 -2.72539377e-01 2.52298743e-01\\n1.18782647e-01 1.00615039e-01 6.52704760e-02 -9.68820751e-02\\n-3.01340014e-01 -5.49830675e-01 2.49984693e-02 1.15947574e-01\\n3.16684127e-01 1.62267193e-01 1.89710036e-02 -5.14201783e-02\\n4.44855075e-03 6.63841128e-01 -1.92240447e-01 -2.12481782e-01\\n8.82792249e-02 2.30699867e-01 -3.59785147e-02 -9.96194407e-02\\n1.37030154e-01 3.83554220e-01 -1.85891986e-01 4.48949970e-02\\n-1.82216585e-01 4.51208092e-02 2.88214743e-01 -1.36769652e-01\\n-2.40017131e-01 -3.82843882e-01 -8.07627663e-02 1.07503720e-01\\n-5.38244605e-01 -2.05664426e-01 5.71824491e-01 1.56202257e-01\\n1.42702460e-01 1.17312402e-01 2.65082389e-01 -1.84468552e-01\\n-1.69798672e-01 -9.33347419e-02 1.12396643e-01 7.14631602e-02\\n4.12950255e-02 1.38561651e-01 -1.49420395e-01 -5.27378559e-01\\n-3.50507236e+00 -1.14133649e-01 5.79554476e-02 -3.30120802e-01\\n1.81312278e-01 -1.57222182e-01 7.08583370e-02 -9.66312438e-02\\n-2.36728773e-01 6.52545020e-02 -1.78822264e-01 -1.36458546e-01\\n1.99731067e-01 2.08037272e-01 9.82021615e-02 1.94051802e-01\\n1.35492131e-01 -2.21733466e-01 -1.84385218e-02 3.17551523e-01\\n-1.14467166e-01 -5.32933831e-01 2.14331567e-01 -1.01963326e-01\\n3.24740142e-01 3.29029381e-01 -3.42188150e-01 -9.57525820e-02\\n-1.99341059e-01 -2.78295010e-01 3.41204964e-02 -1.99339688e-01\\n-2.46953070e-02 3.69957864e-01 1.20396130e-01 -1.27388481e-02\\n2.36453936e-01 -3.24682593e-01 4.56906147e-02 -3.27549428e-01\\n1.67174712e-01 -5.59851646e-01 -8.31977800e-02 -9.68518555e-02\\n5.99866509e-01 -3.87498289e-01 1.60631239e-01 1.92121252e-01\\n6.83304518e-02 2.55310148e-01 6.12892620e-02 -1.65842786e-01\\n-1.36378258e-01 -2.19628200e-01 -4.88314917e-03 -2.33214110e-01\\n3.63233298e-01 6.52706444e-01 -2.15781659e-01 -9.96714607e-02\\n-3.82380262e-02 -3.55498254e-01 -5.41756630e-01 -4.27337825e-01\\n-1.73982471e-01 -1.10364236e-01 -6.65824175e-01 -4.67487693e-01\\n-1.15721680e-01 -1.14774451e-01 -8.58013481e-02 4.10427809e-01\\n-1.81438282e-01 -3.81029010e-01 -7.03048557e-02 -3.50005478e-01\\n7.06800148e-02 -1.30912155e-01 -5.85656986e-02 -1.15818635e-01\\n-1.77744329e-01 -4.48256046e-01 2.95500550e-02 4.52475771e-02\\n-1.27806023e-01 -2.05350921e-01 1.95867211e-01 -2.43503764e-01\\n-2.64017642e-01 -4.62816238e-01 4.72209632e-01 1.48906698e-03\\n3.56957227e-01 5.22785597e-02 2.17943907e-01 5.98901659e-02\\n3.62339199e-01 -2.39116907e-01 1.07705407e-01 -4.01276737e-01\\n1.81415752e-01 8.37729797e-02 5.67245126e-01 -1.69396266e-01\\n-3.70191745e-02 9.10851657e-02 -1.93963408e-01 -1.45988151e-01\\n2.85134494e-01 -7.23942593e-02 8.41377825e-02 -4.28165138e-01\\n2.92338550e-01 -4.22561377e-01 -2.38714069e-01 1.19867243e-01\\n1.04501903e-01 6.01891637e-01 -1.08066655e-03 -3.74050736e-01\\n-2.28009582e-01 3.79262328e-01 -1.94812819e-01 -1.70733213e-01\\n-1.90741628e-01 8.17329139e-02 -3.14837247e-01 2.75991440e-01\\n-2.67412011e-02 -2.98363473e-02 -3.19977432e-01 -4.78463024e-02\\n6.61473274e-02 2.54173577e-01 2.47520044e-01 1.45302698e-01\\n1.88556146e-02 -3.65112722e-01 -2.11988389e-02 8.15870464e-02\\n1.89037308e-01 2.40460590e-01 8.40763003e-02 -1.64467141e-01\\n2.04309411e-02 3.36773962e-01 -9.68240425e-02 2.71660239e-01\\n-2.06773236e-01 9.14297327e-02 -4.53723282e-01 -3.67636085e-01\\n-2.16123655e-01 -1.78860724e-01 -1.04994699e-01 2.98157960e-01\\n9.89428237e-02 -3.67642976e-02 4.06952612e-02 -4.09063011e-01\\n2.62071520e-01 -2.12296639e-02 2.61974841e-01 2.05172285e-01\\n-5.99016100e-02 5.55333853e-01 4.71055359e-02 -1.74346894e-01\\n-1.98169261e-01 1.17390223e-01 -2.03149781e-01 -1.20898336e-01\\n1.85418837e-02 -3.56675744e-01 -3.25325467e-02 3.57393175e-01\\n1.06972635e-01 -3.89072537e-01 -6.25909120e-02 3.01125318e-01\\n8.05768520e-02 -4.11367327e-01 -1.89900219e-01 7.30234459e-02\\n2.93910265e-01 -3.90980439e-03 2.77724475e-01 -4.47771460e-01\\n2.24705078e-02 3.88565548e-02 -5.22622429e-02 4.18771863e-01\\n1.28139080e-02 -5.71447462e-02 -7.10191429e-02 -2.90025443e-01\\n2.80762672e-01 -1.28526226e-01 -6.53350577e-02 -8.17710459e-02\\n1.72963008e-01 -1.24809131e-01 -3.98507923e-01 8.78012460e-03\\n-6.90002367e-02 -5.11021502e-02 7.45286196e-02 -1.47194415e-02\\n7.99602270e-02 8.00486431e-02 -4.67562854e-01 -2.93140441e-01\\n-2.50585288e-01 -1.59029290e-01 2.59294212e-02 -3.90652388e-01\\n3.00317053e-02 -2.66944487e-02 -5.35912812e-01 2.67678171e-01\\n-2.69338906e-01 6.75514936e-02 2.18764707e-01 2.84709428e-02\\n-4.46686655e-01 -1.84435442e-01 2.14141771e-01 1.88673332e-01\\n-2.47588038e-01 -1.68189839e-01 -9.81839597e-02 -1.04709041e+00\\n3.06426793e-01 -6.33917451e-02 -1.01985127e-01 1.21544152e-01\\n-1.20568283e-01 -6.26050234e-01 8.57298225e-02 -4.13252085e-01\\n-1.00614451e-01 -1.49875339e-02 -2.38643572e-01 -3.98722202e-01\\n-2.83432938e-02 3.43034230e-02 -2.01497883e-01 3.57982546e-01\\n-4.22159731e-01 3.86440337e-01 -5.65341264e-02 3.16583551e-02\\n-1.71221972e-01 -2.21855760e-01 7.08112195e-02 -5.40367782e-01\\n-3.45280826e-01 -1.54359028e-01 -1.79634154e-01 -1.46865696e-01\\n-1.13110654e-01 -1.75628528e-01 -1.39088452e-01 1.60523932e-02\\n1.87968925e-01 1.33474991e-01 -8.16908106e-02 -2.01927856e-01\\n1.29431143e-01 -3.81974339e-01 -7.66769145e-03 -2.25014433e-01\\n2.51045842e-02 -1.77515507e-01 1.70466989e-01 -3.03018343e-04\\n9.87488329e-02 -4.01008338e-01 3.97766799e-01 -1.88991487e-01\\n-2.92879462e-01 1.02180161e-01 4.79772016e-02 7.53536895e-02\\n3.57520193e-01 -3.95414799e-01 1.10221513e-01 2.92540908e-01\\n1.13467745e-01 1.12192407e-01 2.77721047e-01 -3.64876129e-02\\n-1.72207966e-01 2.38991588e-01 -3.93743992e-01 8.59974250e-02\\n7.32881427e-01 2.97189057e-01 1.58212021e-01 1.98865160e-01\\n1.37176216e-01 3.69927585e-01 4.75132555e-01 6.58161044e-02\\n2.54429244e-02 3.43930602e-01 1.48603290e-01 -4.97131199e-01\\n1.14491684e-02 9.88937393e-02 -3.17505777e-01 -1.44827485e-01\\n6.66551888e-01 4.91154224e-01 -2.71417469e-01 -2.81774104e-01\\n-1.67884424e-01 -1.89721093e-01 1.27269432e-01 -2.13991731e-01\\n1.51702031e-01 -1.62050515e-01 4.47599441e-01 3.09262984e-02\\n9.18053612e-02 5.02451062e-01 -2.47647077e-01 -3.13656896e-01\\n-1.37542840e-03 1.86178103e-01 8.89784843e-02 3.57871026e-01\\n-1.20338134e-01 1.59948587e-01 -8.52698740e-03 2.14388952e-01\\n-1.72230750e-01 9.49594304e-02 1.60680637e-01 5.09544797e-02\\n8.36217254e-02 9.10788327e-02 2.14982271e-01 4.36046630e-01\\n2.54125178e-01 4.25276756e-01 1.74210683e-01 2.78347898e-02\\n3.91543746e-01 4.93211806e-01 3.12494814e-01 2.18564793e-01\\n-5.16255945e-02 2.27069929e-02 2.10860893e-02 -3.27918492e-02\\n2.91653186e-01 2.70179361e-01 7.11899623e-02 8.53200436e-01\\n4.39373076e-01 3.03306848e-01 7.65148759e-01 -5.56690991e-01\\n-3.87017161e-01 -3.83014716e-02 4.16081369e-01 -3.88589352e-01\\n-1.10108614e-01 -2.64652669e-02 -1.67632952e-01 2.33385071e-01\\n-4.33764011e-01 -2.59843558e-01 -1.19761944e-01 4.60198373e-02\\n1.29545003e-01 -1.68486107e-02 -2.99336761e-01 -1.67779967e-01\\n-2.39868730e-01 -1.56157747e-01 -4.80226755e-01 -1.36668593e-01\\n-1.60112023e-01 -2.05837473e-01 -2.10229024e-01 -1.34707659e-01\\n-1.21074924e-02 -4.04343307e-01 -1.50747716e-01 1.32015934e-02\\n2.08595172e-01 -1.88118473e-01 -9.82663929e-02 -1.66224003e-01\\n1.83278844e-01 1.78857848e-01 5.96804202e-01 3.92737985e-02\\n1.35834053e-01 -2.04810753e-01 -9.05457288e-02 5.02281338e-02\\n1.04900390e-01 2.15764537e-01 5.34457527e-02 4.86155838e-01\\n-4.31596845e-01 -1.22395642e-01 -3.90695035e-03 4.49645370e-01\\n-3.89831394e-01 2.88339853e-02 -3.62098254e-02 1.90990627e-01\\n4.92876917e-02 1.62523501e-02 -2.19567522e-01 3.00055277e-02\\n-2.95063466e-01 -5.91871738e-01 2.66060144e-01 -9.38896760e-02\\n-1.34660274e-01 1.39257926e-02 1.84611619e-01 1.63028345e-01\\n-2.26682484e-01 -1.00893877e-01 1.76355511e-01 1.16851568e-01\\n2.35383123e-01 3.20811391e-01 -2.54373908e-01 -1.80279464e-01\\n-2.78867334e-01 2.42230162e-01 -3.61404300e-01 1.94596037e-01\\n-1.12791874e-01 3.12070161e-01 9.98944789e-02 1.26493871e-01\\n3.19472939e-01 -1.18930086e-01 -1.55731246e-01 -2.04266027e-01\\n-2.57170141e-01 -1.96373388e-01 2.19955202e-02 -5.13605494e-03\\n2.05219075e-01 -3.65293950e-01 -9.23338234e-02 -3.75380516e-02\\n-1.17860779e-01 -3.92964602e-01 -4.78049144e-02 -1.81852803e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for an Embedded C++ Software Engineer. This role is permanent position based in Aargau Canton. Your role: Concept, design & develop multitasking real-time / embedded software with C ++ 11 under QNX. Help shape the architecture, specification & implementation of embedded software for a future generations of Laser Tracker systems. Design & implementation unit & system tests. Create development & troubleshooting tools. Collaborate in agile SW development process with various interdisciplinary teams & cooperate closely also with application testers. Your Skills: Strong knowledge in the development of embedded software with C ++ in real-time applications. Experienced with modern real-time operating systems (QNX, RT Linux etc.). Ideally experienced in planning & implementing software tests (unit, integration & system tests). Knowledge of current design methods (design patterns, UML, TDD, etc.) is desirable. Skills & experience in Python is considered advantageous. Your Profile: Completed University Degree in Electrical Engineering or Computer Science. Dynamic, up for big challenges & comfortable in high-tech environments. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Positivity\", \"Cooperation\", \"Planning\", \"Multitasking\", \"Integration\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"Real Time Data\", \"Test-Driven Development (TDD)\", \"Agility\", \"Real-Time Application Interface (RTAI)\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"Collaboration Tools\", \"Distributed Design Patterns\", \"Embedded C++\", \"QNX (Software)\", \"Web Design Concepts\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Linux\", \"High Tech Manufacturing\", \"Idealization\", \"Software Engineering\", \"Operating Systems\", \"Design Methods\", \"C (Programming Language)\", \"Electrical Engineering\", \"Laser Tracker\", \"Receivables\", \"Systems Design\", \"Software Testing\", \"Embedded Software\", \"Real-Time Operating Systems\", \"System Testing\", \"Process Driven Development\"]',\n", + " \"['English', 'Nyanja', 'Latvian']\"],\n", + " ['75',\n", + " 'big data analytics consultant (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.24657977e-01 2.66480863e-01 4.03708637e-01 5.52951731e-02\\n4.74771887e-01 -1.88399032e-01 -5.48370555e-02 2.70024627e-01\\n-1.03801742e-01 -2.47027114e-01 -6.18684962e-02 -2.31567279e-01\\n-2.09308133e-01 -4.63474020e-02 1.93037182e-01 4.56488281e-01\\n1.97904155e-01 5.74505627e-02 -2.20258549e-01 3.89666051e-01\\n1.63357392e-01 1.68488510e-02 -5.21437824e-02 6.25772059e-01\\n3.44795674e-01 7.12243170e-02 -5.07170185e-02 1.14482321e-01\\n-3.25625151e-01 -2.13749915e-01 3.71888340e-01 1.21615261e-01\\n-1.33393362e-01 -3.26863378e-01 5.64361028e-02 1.36270598e-01\\n-1.32316202e-01 2.17972212e-02 1.11082233e-01 1.48086190e-01\\n-4.13106233e-01 -3.52661520e-01 -2.38295645e-02 4.10655774e-02\\n-2.46083573e-01 -2.19602853e-01 8.51807073e-02 -2.13733166e-01\\n1.32484317e-01 -1.27748907e-01 -7.90116251e-01 3.89926761e-01\\n-8.52794871e-02 -2.30224311e-01 2.80786991e-01 5.43365300e-01\\n1.86808974e-01 -4.82637227e-01 -3.03831816e-01 -3.11922431e-01\\n-1.15718395e-01 -1.55567974e-01 -2.11600773e-02 -8.23215023e-02\\n3.23412627e-01 -6.71108812e-02 3.64408642e-02 4.35833871e-01\\n-6.98343813e-01 -1.50606349e-01 -3.16619515e-01 -3.00216582e-02\\n-3.55540067e-01 6.46120012e-02 -2.14444488e-01 -1.37788743e-01\\n-1.48012256e-02 3.30956072e-01 6.90950379e-02 3.67540829e-02\\n-1.81379065e-01 3.09748471e-01 -7.75800347e-02 1.22237265e-01\\n4.30342048e-01 1.94445644e-02 7.48123676e-02 3.52303624e-01\\n-4.62808579e-01 3.33887339e-01 1.53335541e-01 -2.11710230e-01\\n2.03079537e-01 1.42713949e-01 4.58510756e-01 1.43581778e-01\\n-1.50686800e-02 1.88764468e-01 -6.81302845e-02 9.75959226e-02\\n9.87182334e-02 -2.88198709e-01 -1.22820996e-02 -9.86896306e-02\\n-8.05200562e-02 -1.10864028e-01 -1.04244873e-01 2.25199148e-01\\n-2.51758993e-01 4.45553511e-01 1.97088525e-01 -9.71271843e-02\\n-9.38720331e-02 -5.47962129e-01 -2.04556026e-02 -1.35943323e-01\\n-1.44117447e-02 1.78458765e-01 2.28875130e-01 9.69114304e-02\\n2.11405694e-01 6.05333149e-02 2.32737660e-01 8.63802791e-01\\n-6.67311698e-02 2.47384697e-01 -8.11904967e-02 3.47638994e-01\\n2.14432195e-01 -2.41179988e-01 1.88662812e-01 2.77329832e-01\\n1.43474355e-01 -7.40473941e-02 -2.07542092e-01 1.10111997e-01\\n-2.92777389e-01 -5.58331385e-02 -2.46758729e-01 1.21852063e-01\\n-8.34833756e-02 -4.62628633e-01 5.17256677e-01 1.01963870e-01\\n2.34594867e-01 -8.92134979e-02 -7.63500556e-02 -6.70153499e-02\\n-1.25044286e-01 3.44033271e-01 7.76981413e-02 3.65115821e-01\\n-2.85364807e-01 -2.27430657e-01 -1.68392539e-01 2.59311646e-01\\n-8.93594399e-02 1.50160834e-01 -2.12526381e-01 -2.41358802e-01\\n2.56768703e-01 7.45351017e-02 -4.18954402e-01 2.32971057e-01\\n-9.20282528e-02 -3.01516235e-01 -8.54056776e-02 3.36219639e-01\\n-1.25438124e-01 8.16780105e-02 -1.27540961e-01 -2.10439190e-01\\n5.98792195e-01 1.12959936e-01 1.31542116e-01 -1.06392866e-02\\n3.54528815e-01 -1.48461834e-01 3.67590606e-01 1.16971314e-01\\n-4.75283265e-01 3.85634720e-01 -6.12980053e-02 -1.53823882e-01\\n1.14497095e-01 -7.87231475e-02 3.67246538e-01 -2.63791889e-01\\n7.69605190e-02 -2.29905203e-01 -2.89583474e-01 -3.69110137e-01\\n-3.05458188e-01 -2.28647999e-02 3.73175144e-01 -2.58599192e-01\\n-1.33389667e-01 1.84824601e-01 -4.97243762e-01 -2.12856382e-01\\n2.39376411e-01 1.54149234e-01 1.22257195e-01 8.42629373e-02\\n-1.48538440e-01 -5.13383806e-01 7.67424412e-04 -4.56170738e-01\\n-4.49278057e-01 1.07531317e-01 -2.43529588e-01 1.38666883e-01\\n-8.45465157e-03 1.04444429e-01 -1.45213395e-01 1.39669552e-01\\n-3.42880726e-01 -1.21268956e-02 3.17491710e-01 9.17394534e-02\\n2.27917522e-01 -2.81389691e-02 -4.64619279e-01 3.63580823e-01\\n-2.97530562e-01 6.29668653e-01 2.93676436e-01 -8.58507395e-01\\n6.00406170e-01 2.47421920e-01 -4.38355729e-02 -3.21073115e-01\\n3.82413089e-01 -4.54510212e-01 1.03202961e-01 2.18986854e-01\\n-1.93023339e-01 -2.24297047e-01 2.77094245e-01 -1.42519474e-01\\n-2.75209337e-01 7.15729058e-01 1.09935798e-01 -8.38741660e-03\\n2.78249890e-01 -3.47871870e-01 -1.49277955e-01 -7.54205137e-02\\n-1.26123473e-01 -1.58880651e-01 -3.62710267e-01 4.18873169e-02\\n-5.21921292e-02 -4.43924874e-01 -1.22550637e-01 -3.51599455e-01\\n-2.17439190e-01 -3.58710617e-01 -1.66120365e-01 5.53501368e-01\\n1.72732040e-01 1.48655728e-01 -5.10472991e-02 6.27181157e-02\\n2.13016793e-02 -6.77679121e-01 2.63570119e-02 1.56139031e-01\\n4.29497540e-01 4.26235378e-01 1.20211363e-01 -1.07222706e-01\\n7.20579773e-02 4.58310872e-01 -3.24849933e-01 -4.69362676e-01\\n1.20948359e-01 2.46170700e-01 -8.75075161e-02 -1.43778250e-01\\n3.06717213e-02 4.14513260e-01 -1.52548745e-01 7.98515230e-02\\n-5.09621985e-02 -3.37596647e-02 2.88310885e-01 -8.51243883e-02\\n-2.59129792e-01 -2.48084888e-01 -1.07206732e-01 4.17353839e-01\\n-4.55096900e-01 -2.95699924e-01 4.93359119e-01 2.67585516e-01\\n1.04166932e-01 9.87610891e-02 1.59669712e-01 -9.46748778e-02\\n-2.41889521e-01 -2.06641480e-01 7.19374493e-02 1.14903308e-01\\n1.54794693e-01 1.68604553e-01 -1.65888637e-01 -5.79622149e-01\\n-3.57280254e+00 -1.66369483e-01 9.40934345e-02 -2.50164032e-01\\n1.32519946e-01 -1.60074592e-01 1.77748222e-02 1.24993268e-04\\n-3.09931993e-01 3.48519422e-02 -2.51087934e-01 -9.68015194e-02\\n-5.01769446e-02 3.70906234e-01 1.95662305e-01 1.30219638e-01\\n6.29047602e-02 -2.94956833e-01 -5.97659871e-02 4.51221347e-01\\n-5.71054071e-02 -5.97080767e-01 6.10559136e-02 -2.70614754e-02\\n9.41013396e-02 1.93160430e-01 -2.95033067e-01 -5.33003360e-02\\n-1.59602582e-01 -2.92092144e-01 5.40809594e-02 -1.85575441e-01\\n-2.31511936e-01 3.23763251e-01 1.83153190e-02 2.51424741e-02\\n1.71084553e-02 -3.45862359e-01 4.83627245e-03 -4.63196993e-01\\n1.83083434e-02 -6.50673568e-01 1.10113822e-01 -1.29478052e-01\\n6.19499981e-01 -1.71883479e-01 1.64680645e-01 8.25170428e-02\\n1.52414739e-01 1.44183725e-01 -7.42539540e-02 9.23693925e-02\\n-4.04316783e-01 -3.39711070e-01 -1.52906194e-01 -2.12636232e-01\\n4.92860794e-01 4.52050358e-01 -1.94139645e-01 3.94274406e-02\\n6.12214394e-02 -3.68301123e-01 -3.59432876e-01 -4.59352970e-01\\n-1.79410696e-01 -1.05310522e-01 -7.82973528e-01 -3.89842480e-01\\n-1.07847266e-01 -7.40328655e-02 -1.48246467e-01 5.17379999e-01\\n-4.25732076e-01 -3.02365601e-01 -3.11661046e-02 -5.76998055e-01\\n1.75453022e-01 -2.50924259e-01 1.18869089e-01 -1.08758770e-01\\n-4.28882420e-01 -5.45945108e-01 1.35436788e-01 -6.39963374e-02\\n-2.73836553e-01 -1.25771627e-01 -5.42873964e-02 -1.50473699e-01\\n-3.71174812e-01 -4.78934616e-01 4.55827057e-01 5.81516586e-02\\n4.04190063e-01 5.25167659e-02 3.52820516e-01 5.40281273e-02\\n3.69563937e-01 -1.42850906e-01 1.54164925e-01 -4.40472364e-01\\n-1.50377881e-02 -7.27538094e-02 6.17186785e-01 -3.37619066e-01\\n-7.98815920e-04 1.43601045e-01 -3.87742221e-01 4.51690145e-02\\n4.33017135e-01 6.97335377e-02 -2.84609534e-02 3.85080650e-02\\n3.04149210e-01 -4.39139873e-01 -2.51772523e-01 2.29168221e-01\\n6.25483692e-02 7.46959448e-01 1.53785080e-01 -3.98818523e-01\\n-2.73576587e-01 4.42720085e-01 -1.05279423e-01 -2.92515010e-01\\n-3.94287659e-03 9.64050665e-02 -1.08432928e-02 1.80245802e-01\\n1.91943049e-01 -1.39023125e-01 -3.10651004e-01 -1.01574868e-01\\n-1.01671368e-01 1.81781232e-01 2.54396319e-01 1.73916332e-02\\n-1.77484378e-01 -1.45373225e-01 -8.15279111e-02 1.51666939e-01\\n3.41565043e-01 2.77526647e-01 2.30214342e-01 -2.56547749e-01\\n-1.24195844e-01 2.80876309e-01 -1.46120146e-01 2.03659862e-01\\n-2.31511772e-01 -1.23045258e-02 -6.38915658e-01 -1.40853032e-01\\n-1.16785087e-01 -4.06442106e-01 9.80072320e-02 4.51995403e-01\\n1.47926375e-01 -1.41804880e-02 1.21987112e-01 -6.75949872e-01\\n4.65204954e-01 9.30783618e-03 2.94393063e-01 -4.22049537e-02\\n-7.24454271e-03 6.48691297e-01 8.38677883e-02 -1.06787130e-01\\n-1.78073332e-01 2.57070380e-04 -2.71783113e-01 -3.21119547e-01\\n1.33974046e-01 -3.62626970e-01 -1.67959645e-01 4.62886989e-01\\n2.16455862e-01 -1.96468338e-01 -2.68126875e-01 3.86032373e-01\\n7.36291260e-02 -1.16419293e-01 -1.72267541e-01 -1.54097095e-01\\n9.05091688e-02 8.18365887e-02 2.11391598e-01 -3.84197831e-01\\n-9.24029648e-02 7.25724502e-03 -1.02481991e-01 4.45573270e-01\\n2.33765647e-01 2.17196345e-03 -1.19219415e-01 -1.12279281e-01\\n4.77678895e-01 7.39159212e-02 -1.02440808e-02 -1.83209047e-01\\n5.34331761e-02 -1.61599129e-01 -5.43467045e-01 1.27441689e-01\\n2.26400066e-02 -2.07771003e-01 3.99081334e-02 1.26956865e-01\\n9.48517025e-02 -9.55117643e-02 -5.11640429e-01 -1.34313524e-01\\n-2.96207964e-01 -1.97169781e-01 8.34421720e-03 -4.40010995e-01\\n-6.08646013e-02 -4.08985317e-02 -4.74269569e-01 1.62010312e-01\\n-2.57994533e-01 3.95236127e-02 5.61214499e-02 1.12782247e-01\\n-3.13135445e-01 -5.62288091e-02 1.23703495e-01 6.55236319e-02\\n-3.24727982e-01 -2.33877331e-01 1.73838958e-01 -8.67197335e-01\\n3.66364270e-02 3.81748080e-02 -1.72619909e-01 -9.84981060e-02\\n5.09737171e-02 -6.12470865e-01 1.71933293e-01 -3.79230201e-01\\n9.28858295e-02 1.66427702e-01 -1.86153516e-01 -2.71243542e-01\\n2.15185702e-01 -1.49369046e-01 -3.39394897e-01 2.85160750e-01\\n-4.36540067e-01 3.83276671e-01 3.44243012e-02 6.58520982e-02\\n1.13638245e-01 -2.98370063e-01 1.09630808e-01 -2.60959774e-01\\n-2.95403719e-01 -1.32792309e-01 -2.43005142e-01 -2.14576960e-01\\n-3.28693986e-02 -1.14346907e-01 -1.46675602e-01 -2.34769657e-02\\n3.62576395e-01 1.58618227e-01 -1.49778306e-01 -2.91960686e-01\\n1.44143686e-01 -5.20475268e-01 6.45340383e-02 -2.89951175e-01\\n-1.07838638e-01 -7.67017528e-02 2.47558981e-01 -1.26879007e-01\\n1.26984835e-01 -2.13296577e-01 5.36207199e-01 -2.71530777e-01\\n-3.28695238e-01 -6.12852275e-02 3.49014215e-02 -3.84226814e-02\\n1.45297498e-01 -4.34249490e-01 1.83019135e-02 2.99251199e-01\\n1.45913318e-01 9.08420235e-02 1.94602937e-01 -5.16849495e-02\\n-1.87211692e-01 1.62376866e-01 -5.14262378e-01 2.72320230e-02\\n8.45109284e-01 1.74166545e-01 -1.88028179e-02 7.97598660e-02\\n1.03486285e-01 3.03225011e-01 4.88733262e-01 9.46431905e-02\\n-9.45596248e-02 2.97458827e-01 6.29310310e-02 -5.90335131e-01\\n-1.95201412e-01 -6.40738904e-02 -2.71086156e-01 -1.44361332e-01\\n6.54626906e-01 2.24897325e-01 -4.58670229e-01 -3.24929148e-01\\n1.16491746e-02 -1.60545275e-01 2.98054814e-01 8.12950823e-03\\n2.10847072e-02 -3.35726552e-02 6.36160612e-01 -2.31563225e-02\\n2.61216104e-01 5.44154286e-01 -1.10226095e-01 -2.91567653e-01\\n-1.62452802e-01 9.10881311e-02 1.26755029e-01 4.64957565e-01\\n-7.12975785e-02 2.72732407e-01 -2.02512503e-01 7.26963133e-02\\n-1.18712701e-01 7.99069926e-02 2.48465434e-01 5.95515445e-02\\n1.82864115e-01 7.30946735e-02 3.22981149e-01 4.45086271e-01\\n1.89001605e-01 5.21294594e-01 3.20597351e-01 -2.69004740e-02\\n2.99621433e-01 5.52624345e-01 3.13479841e-01 6.10632785e-02\\n-3.02685029e-03 3.77092673e-03 9.80772898e-02 -1.11338317e-01\\n3.85266244e-01 3.71054232e-01 2.88722426e-01 8.35137248e-01\\n3.64108801e-01 3.88806522e-01 7.95281351e-01 -5.88144183e-01\\n-3.81724179e-01 1.15902364e-01 5.69804192e-01 -2.04880893e-01\\n-6.41120672e-02 2.11715668e-01 -2.93586552e-01 2.35258982e-01\\n-5.24780571e-01 -7.65886232e-02 1.76971741e-02 6.62062541e-02\\n-4.10882719e-02 -6.88370615e-02 -1.65670261e-01 1.30968988e-01\\n-4.51544002e-02 -1.46040648e-01 -2.52888113e-01 -2.47479752e-01\\n-2.92161196e-01 -2.50979420e-02 -1.05498269e-01 -7.72482157e-02\\n-1.63930118e-01 -3.22964728e-01 -6.78818896e-02 -3.20950150e-02\\n3.67162138e-01 -1.40736431e-01 -8.80448148e-02 -1.65193886e-01\\n8.57414156e-02 2.88050681e-01 5.27825534e-01 -1.40973955e-01\\n8.29792172e-02 -1.48120806e-01 -2.58663028e-01 -2.51262728e-03\\n1.08489074e-01 -2.15140264e-02 -2.49596089e-02 4.46018040e-01\\n-3.16060275e-01 4.38817777e-03 1.35541677e-01 3.45733911e-01\\n-2.97989905e-01 -1.62548140e-01 -3.05953622e-02 3.23237240e-01\\n1.05832316e-01 1.03430137e-01 -3.05554956e-01 1.42218113e-01\\n-3.03837776e-01 -4.88143593e-01 4.49125469e-01 -1.28925666e-02\\n-1.08090669e-01 1.81858748e-01 2.93287784e-01 1.43092990e-01\\n-2.14891031e-01 -4.72267233e-02 8.67531914e-03 2.99586505e-01\\n-1.38621971e-01 4.08703804e-01 -1.55412972e-01 -2.81231105e-01\\n-1.68482393e-01 4.46332932e-01 -3.94569971e-02 2.08324715e-01\\n-1.63493440e-01 4.95885223e-01 -5.15786409e-02 2.33150601e-01\\n1.93566099e-01 1.43851181e-02 -2.34564513e-01 -2.67272592e-01\\n-2.88735032e-01 -1.77177429e-01 -2.57319380e-02 -6.86217891e-03\\n7.91436583e-02 -3.60711247e-01 -7.28069469e-02 -1.54376984e-01\\n-2.17273921e-01 -3.21390837e-01 -7.60798082e-02 9.48940292e-02]]',\n", + " 'Job Informationen Your role: - You are taking part in advising our clients on leveraging their big data analytics clusters - You will implement and execute data analytics programs - You will create and maintain predictive statistical models - You will prepare and give trainings for external and internal staff on how to best use the cluster and on how to implement business applications leveraging the cluster resources Your skills: - Minimum of 2 years of Big Data experience and minimum of 3 years of programming experience - Must have a University Degree in Computer Science or Statistics / Mathematical Engineering - Experienced in collecting, tracking and documenting business requirements - Experienced in problem parallelization is a plus - Experienced in data analytics, modelling, mining - Experienced concurrent algorithm design - Experienced in applying supervised and unsupervised machine learning methods - Familiarity with Storage and Network Design for Big Data Analytics Clusters a plus - Background and familiarity with IT infrastructure methodologies, processes, and practices including ITSM and ITIL is a plus Your tools: - Know-how of Python, R, Java, C++ and shell scripting - Know-how of any of the tools matplotlib, pandas, numpy, MongoDB, Hive, ElasticSearch, Cassandra, RapidMiner, OpenMPI, Tableau, Qlik is a plus Benötigte Skills ITIL Python Machine Learning JAVA C++ Shell-Scripts',\n", + " '[\"Supervision\"]',\n", + " '[\"Tableau (Business Intelligence Software)\", \"Tooling\", \"Matplotlib\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Shell Script\", \"RapidMiner\", \"Computer Science\", \"Analytics\", \"Collections\", \"Prediction\", \"Machine Learning\", \"Mathematical Statistics\", \"Network Security Design\", \"IT Infrastructure\", \"NumPy\", \"Python (Programming Language)\", \"Maintainability\", \"MongoDB\", \"Tracking (Commercial Airline Flight)\", \"Executable\", \"Statistical Modeling\", \"Machine Learning Methods\", \"Business Requirements\", \"Storages\", \"Apache Hive\", \"R (Programming Language)\", \"Big Data\", \"Resourcing\", \"Algorithm Design\", \"Java (Programming Language)\", \"Pandas (Python Package)\", \"Elasticsearch\"]',\n", + " \"['English']\"],\n", + " ['55',\n", + " 'software engineer – infrastructure',\n", + " 'Lugano',\n", + " '',\n", + " '',\n", + " '[[-3.00879031e-01 2.93186873e-01 3.91317397e-01 -1.03268325e-01\\n4.78794605e-01 -1.63716614e-01 -1.24025993e-01 2.78238416e-01\\n-6.44701272e-02 -3.18700671e-01 -7.58499131e-02 -1.74116194e-01\\n-1.89848706e-01 1.01615131e-01 1.67488351e-01 3.75592083e-01\\n7.28601813e-02 1.78860985e-02 -1.73786789e-01 4.24716145e-01\\n2.16276094e-01 2.71240622e-02 -1.07081458e-01 6.44125879e-01\\n3.15437347e-01 5.05755246e-02 -5.42306490e-02 -5.84535860e-02\\n-3.49566609e-01 -1.99953839e-01 2.56783605e-01 6.70977086e-02\\n1.96225531e-02 -3.30467224e-01 1.08449347e-01 2.42889076e-02\\n-2.29073167e-01 -5.94328903e-02 -3.90555374e-02 2.29642987e-01\\n-3.40409666e-01 -4.15655464e-01 5.97661510e-02 8.12869519e-02\\n-1.48136511e-01 -2.05082506e-01 7.47181177e-02 -3.82940099e-02\\n5.89827774e-04 -8.48522335e-02 -6.36883378e-01 3.25887978e-01\\n-1.50449380e-01 -2.98596263e-01 2.88268328e-01 5.38708150e-01\\n1.01485834e-01 -5.24987757e-01 -1.54847637e-01 -2.85892755e-01\\n-1.14543185e-01 -3.50345345e-03 4.57349531e-02 -1.50619000e-01\\n3.75841975e-01 7.53906788e-03 1.35511905e-03 5.05759835e-01\\n-7.84257889e-01 -9.27326009e-02 -1.27454743e-01 8.22741687e-02\\n-3.21160525e-01 1.42420497e-04 -1.32573649e-01 -5.03220595e-02\\n-2.40474250e-02 3.39716822e-01 3.41495313e-02 2.46226862e-02\\n-1.69638231e-01 2.87897348e-01 1.65269598e-02 2.04493821e-01\\n4.02450442e-01 2.36347482e-01 7.48850852e-02 3.92977804e-01\\n-3.39092374e-01 3.55543703e-01 2.47102734e-02 -1.09525576e-01\\n1.88436851e-01 2.02240899e-01 5.58090806e-01 2.57104754e-01\\n-7.99437333e-03 1.26798749e-01 -2.11416706e-01 2.19073489e-01\\n1.39928490e-01 -2.47061670e-01 3.79527397e-02 -2.11745803e-03\\n-1.67742223e-01 -7.72309601e-02 -9.44179222e-02 4.14851397e-01\\n-2.27359101e-01 2.94415325e-01 2.77031094e-01 -1.16150575e-02\\n-4.84739244e-02 -6.33450627e-01 -6.82621896e-02 -6.77805319e-02\\n9.44998041e-02 2.23461345e-01 2.79766053e-01 1.96791470e-01\\n1.20394945e-01 2.21997783e-01 2.04271674e-01 1.04545474e+00\\n-3.14405672e-02 1.30599171e-01 -1.79279611e-01 2.89214373e-01\\n2.56017148e-01 -2.04995364e-01 1.33666202e-01 3.32151592e-01\\n2.34139726e-01 -1.66957349e-01 -1.12822250e-01 3.86550277e-01\\n-1.50696322e-01 -8.32101330e-02 -3.40334445e-01 8.20770711e-02\\n-3.26552123e-01 -4.50612068e-01 4.32520688e-01 1.72729358e-01\\n2.65590787e-01 7.00112954e-02 -1.12124145e-01 -5.71813285e-02\\n-1.32182136e-01 4.17161673e-01 -1.36189863e-01 2.00398117e-01\\n-3.94227594e-01 -2.32892543e-01 -2.65055507e-01 3.24277580e-01\\n1.94085333e-02 2.17623770e-01 -2.80663036e-02 -1.22584902e-01\\n3.84874254e-01 -1.05298301e-02 -4.64051157e-01 1.62944660e-01\\n-7.85158500e-02 -2.75155514e-01 -1.40553564e-01 1.35943472e-01\\n-1.63567178e-02 1.68804660e-01 -3.54842730e-02 -2.26342067e-01\\n4.01549637e-01 9.38663911e-03 2.06304863e-02 -1.38568610e-01\\n3.02643180e-01 -1.90038607e-01 2.58602947e-01 2.33357385e-01\\n-7.79680669e-01 2.28618413e-01 1.83338230e-03 -2.30762839e-01\\n-6.24184161e-02 6.95198402e-02 4.03260529e-01 -3.76663059e-01\\n4.90600877e-02 -8.83588344e-02 -5.29202044e-01 -3.57074797e-01\\n-3.48177403e-01 4.85689677e-02 4.90368754e-01 -2.28337407e-01\\n-1.97726265e-01 1.56603396e-01 -4.55536842e-01 -6.93446994e-02\\n1.95589215e-01 4.90938239e-02 5.23668975e-02 -1.92485955e-02\\n-1.23538025e-01 -6.17735505e-01 -1.30851611e-01 -4.73395258e-01\\n-4.96935308e-01 9.46354792e-02 -2.57593751e-01 2.05382109e-01\\n9.74708796e-02 8.88068452e-02 3.13008651e-02 7.31329471e-02\\n-2.58341074e-01 -1.69609636e-01 2.72056669e-01 1.95337325e-01\\n3.00849140e-01 -3.00326869e-02 -3.81042659e-01 3.68223310e-01\\n-1.41485795e-01 6.92153692e-01 2.43943647e-01 -7.69371688e-01\\n6.31583691e-01 2.05738083e-01 6.82776570e-02 -5.04139245e-01\\n3.87583196e-01 -3.35701734e-01 1.33027285e-01 2.38910377e-01\\n-2.80704081e-01 -2.22749725e-01 2.28209972e-01 -1.55083522e-01\\n-3.29826891e-01 5.61209142e-01 1.56247288e-01 -1.28462151e-01\\n3.26708049e-01 -3.72736812e-01 3.36158983e-02 1.22877941e-01\\n-2.56286263e-02 -2.63898283e-01 -2.63618708e-01 1.44047424e-01\\n-9.48781222e-02 -5.00595927e-01 -1.52707145e-01 -2.55044729e-01\\n-1.97757691e-01 -3.34501833e-01 -1.93009913e-01 6.02746010e-01\\n7.68776983e-02 2.11635008e-01 1.11528002e-01 -4.46646959e-02\\n-1.07868664e-01 -6.05864823e-01 -1.57366246e-01 2.32590437e-02\\n4.55449015e-01 1.69754624e-01 2.43884269e-02 -1.47687703e-01\\n-1.59047142e-01 4.01418388e-01 -4.28975642e-01 -3.23695570e-01\\n1.07912615e-01 6.90169856e-02 -7.20065981e-02 -7.71670565e-02\\n1.73102003e-02 2.38392562e-01 -1.88736975e-01 1.10893138e-01\\n-2.04206035e-01 3.82827297e-02 2.22324267e-01 -5.50262891e-02\\n-2.91198194e-01 -4.14358139e-01 3.97748388e-02 3.50211859e-01\\n-5.15438914e-01 1.82694849e-02 5.84305644e-01 3.86929184e-01\\n2.27325216e-01 1.33536994e-01 2.65554458e-01 -2.44909897e-01\\n-3.12612474e-01 -3.36751431e-01 1.46923047e-02 3.15787226e-01\\n1.04217216e-01 2.15013735e-02 -1.71257675e-01 -6.16138995e-01\\n-3.46713924e+00 -1.93301052e-01 2.10031301e-01 -2.07476407e-01\\n1.69475362e-01 -1.26025841e-01 -1.88950039e-02 -3.53714600e-02\\n-2.33969301e-01 -2.87974030e-02 -3.69860321e-01 -8.93848613e-02\\n-2.42614243e-02 4.09246206e-01 1.66151851e-01 2.65335411e-01\\n7.07896501e-02 -1.83095276e-01 -1.39254153e-01 3.00904304e-01\\n-1.94392174e-01 -6.19301975e-01 1.11721240e-01 -6.54913187e-02\\n2.41897032e-01 9.04766396e-02 -4.36451584e-01 -7.91861266e-02\\n-1.65939137e-01 -1.55749217e-01 -2.86726677e-03 -2.13719219e-01\\n-7.01692402e-02 2.79045135e-01 1.80733837e-02 5.08422144e-02\\n1.14969879e-01 -1.59121975e-01 3.51332538e-02 -4.39557374e-01\\n-6.27788827e-02 -4.98567462e-01 -3.39253470e-02 -1.71872228e-01\\n6.59773350e-01 -3.86580676e-01 1.53439745e-01 8.71985853e-02\\n2.36954257e-01 2.12036982e-01 -2.15092361e-01 2.88824667e-03\\n-2.06664979e-01 -2.81206608e-01 1.96247753e-02 -2.78526068e-01\\n3.92579943e-01 6.37125134e-01 -2.56244302e-01 3.20588686e-02\\n1.38102338e-01 -2.77370691e-01 -3.24303627e-01 -5.99954844e-01\\n-2.45553732e-01 -1.67872697e-01 -8.09775829e-01 -4.80559677e-01\\n-9.27682668e-02 5.57722151e-02 -2.77839214e-01 5.80034375e-01\\n-4.61603671e-01 -5.49676895e-01 5.37728257e-02 -6.60362124e-01\\n-1.48893967e-02 -2.39232764e-01 6.95940033e-02 -1.50372148e-01\\n-2.75305599e-01 -4.36389297e-01 1.79174632e-01 -2.66638640e-02\\n-2.32112467e-01 -7.29342997e-02 2.64724847e-02 -4.31868285e-01\\n-3.33787382e-01 -2.96306759e-01 3.55388194e-01 1.82731822e-01\\n2.57711589e-01 1.22675538e-01 3.77857834e-01 4.52391468e-02\\n3.50659311e-01 -1.07281409e-01 1.37129828e-01 -3.18001330e-01\\n2.20700189e-01 -1.83648709e-02 5.41036308e-01 -3.50027502e-01\\n6.09605946e-02 3.58645976e-01 -2.61133105e-01 -1.08122624e-01\\n4.89372790e-01 7.29590505e-02 -2.53005847e-02 -1.19581163e-01\\n3.83681297e-01 -6.37967885e-01 -2.56187499e-01 3.02944511e-01\\n6.42761439e-02 5.80740988e-01 1.77910313e-01 -4.58288223e-01\\n-3.97374719e-01 4.02542263e-01 -1.14063472e-01 -2.51584977e-01\\n7.01158047e-02 2.22222611e-01 -2.47803312e-02 1.56336799e-01\\n1.49435177e-01 -2.45852709e-01 -3.88448298e-01 -3.64366956e-02\\n-2.88377376e-03 1.35575101e-01 1.75859213e-01 -1.34832412e-01\\n-1.03112653e-01 -1.22031204e-01 -3.78820710e-02 3.63153294e-02\\n2.02119753e-01 2.13538945e-01 1.67728022e-01 -3.20858240e-01\\n1.06952675e-01 2.63561010e-01 -1.07260503e-01 1.80178538e-01\\n-1.90651059e-01 -3.21749039e-02 -3.79539311e-01 -3.60461771e-01\\n-2.92769372e-02 -2.89781660e-01 4.04551104e-02 2.00645357e-01\\n1.21491902e-01 -2.21123779e-03 2.21114308e-02 -5.50375700e-01\\n4.33755368e-01 2.21633743e-02 1.70349032e-01 1.90832749e-01\\n1.01743355e-01 5.09069443e-01 8.50913823e-02 -3.16508114e-02\\n-1.28230691e-01 -1.78902075e-01 -2.77893186e-01 -3.07526469e-01\\n6.95318282e-02 -3.47837031e-01 -6.79813325e-02 4.49735999e-01\\n9.83924344e-02 -3.83342206e-01 -1.76466197e-01 3.50526214e-01\\n2.00574055e-01 -1.81934759e-01 -7.84528032e-02 6.54289722e-02\\n2.51233399e-01 1.86822750e-02 2.19002098e-01 -3.69453162e-01\\n-3.07673905e-02 9.28495377e-02 -7.56931677e-02 4.58273828e-01\\n3.47311378e-01 3.89679009e-03 -2.08536431e-01 -1.76302195e-01\\n4.58923221e-01 -1.23154871e-01 -5.91280498e-03 -2.05564216e-01\\n4.69516702e-02 -1.32719114e-01 -4.13890392e-01 1.62447691e-01\\n5.50124086e-02 -8.15157220e-02 8.06250274e-02 -8.07496235e-02\\n1.36916637e-01 -2.86610387e-02 -4.20104235e-01 -2.98656136e-01\\n-3.37828279e-01 -1.96709454e-01 1.80388913e-01 -2.43398353e-01\\n2.01923400e-02 8.52477700e-02 -6.56238735e-01 1.99699700e-01\\n-2.64420927e-01 1.25517324e-01 7.42155686e-02 1.42937839e-01\\n-3.03225577e-01 7.98135400e-02 5.34233153e-02 3.85028943e-02\\n-4.53491926e-01 -1.94671988e-01 2.70261150e-02 -9.74631250e-01\\n6.65682331e-02 -7.66236261e-02 9.40824393e-03 1.14252483e-02\\n-3.37707587e-02 -5.66168427e-01 1.99193791e-01 -4.40826386e-01\\n5.04017062e-02 1.68569401e-01 -1.71417952e-01 -4.21216071e-01\\n4.89115417e-02 -1.16364248e-01 -2.85581082e-01 4.42956597e-01\\n-5.01606703e-01 1.50286421e-01 1.17784612e-01 -2.47211792e-02\\n7.88761377e-02 -3.69431317e-01 2.02608258e-01 -2.65531957e-01\\n-4.03134644e-01 -1.08709678e-01 -3.43860686e-01 -1.39599085e-01\\n1.24647722e-01 -2.48197094e-01 -2.75886297e-01 1.18766770e-01\\n1.85462266e-01 1.42471671e-01 3.56539823e-02 -2.15658531e-01\\n1.34770572e-01 -2.79345363e-01 8.64735246e-02 -1.25774384e-01\\n-6.48249164e-02 1.20532081e-01 1.17231280e-01 -1.51869193e-01\\n3.61631177e-02 -2.31839910e-01 5.80160201e-01 -2.75261730e-01\\n-3.89089018e-01 -4.63009402e-02 2.69977842e-02 2.59587876e-02\\n3.00831139e-01 -4.15258884e-01 7.68277934e-03 2.38041312e-01\\n1.35940179e-01 -4.23567295e-02 2.50154495e-01 -1.02111273e-01\\n-6.99340552e-02 5.91482520e-02 -4.61507529e-01 5.96984252e-02\\n7.70102501e-01 1.17011242e-01 -3.14755850e-02 2.10223675e-01\\n8.15835297e-02 4.50068951e-01 4.52602684e-01 -9.18183774e-02\\n-7.12006986e-02 2.26993382e-01 5.87383583e-02 -4.99704361e-01\\n-9.72609445e-02 -2.50003844e-01 -1.67176172e-01 -1.97197720e-01\\n6.97801113e-01 4.70982462e-01 -3.04457128e-01 -2.08735168e-01\\n-7.25482479e-02 -1.89349130e-01 2.06093788e-01 -8.18968266e-02\\n-4.73494381e-02 -2.35091895e-02 5.78519821e-01 -3.08102984e-02\\n3.02670270e-01 4.66560930e-01 -2.38135278e-01 -4.34572309e-01\\n-1.09416001e-01 6.20297752e-02 1.08913675e-01 3.00506949e-01\\n-2.07963195e-02 3.11317265e-01 1.28179276e-02 9.26745385e-02\\n6.71412284e-03 6.13207445e-02 1.66868046e-01 -3.61097255e-03\\n2.78235048e-01 1.06410727e-01 1.77996550e-02 5.14176905e-01\\n1.24909259e-01 4.76623207e-01 3.16883922e-01 1.94185615e-01\\n3.43783319e-01 5.46812057e-01 4.46297884e-01 1.82734951e-01\\n5.96060567e-02 -4.68132943e-02 3.98530997e-02 -9.10039544e-02\\n4.55725998e-01 2.51346052e-01 3.44859511e-01 8.16920877e-01\\n3.29367936e-01 2.14782894e-01 7.78392732e-01 -6.70003235e-01\\n-3.85428339e-01 9.29093286e-02 4.82959777e-01 -3.44925046e-01\\n-1.25408113e-01 8.58220458e-02 -2.41764829e-01 1.66485399e-01\\n-5.78623474e-01 -9.24738348e-02 -2.86182649e-02 -9.08896625e-02\\n-8.81325174e-03 -3.48114334e-02 -2.86627918e-01 -1.63740069e-01\\n-1.73640594e-01 -2.34352484e-01 -1.87768996e-01 -1.47904441e-01\\n-2.90678680e-01 -1.45760730e-01 -4.97637577e-02 8.18882789e-03\\n-1.45734906e-01 -4.97592241e-01 -3.21818113e-01 1.17715396e-01\\n4.49432760e-01 -1.57377616e-01 -1.74466502e-02 -1.72294587e-01\\n-7.82589335e-03 3.52455467e-01 5.74620426e-01 -4.30326909e-02\\n1.46646231e-01 -1.62685096e-01 -2.04753563e-01 -1.72511884e-03\\n1.58810183e-01 -8.75630975e-03 6.10316806e-02 4.70520645e-01\\n-3.79225045e-01 2.03973040e-01 1.42406151e-01 2.75100172e-01\\n-4.41362977e-01 -1.60239324e-01 -1.55947730e-03 2.82590985e-01\\n4.11767662e-02 3.16154599e-01 -3.87521476e-01 1.47677600e-01\\n-3.44438523e-01 -5.26079834e-01 5.24405301e-01 -2.34351486e-01\\n-6.83412999e-02 1.53566837e-01 3.28152776e-01 1.14282914e-01\\n-2.03067213e-01 -5.59285916e-02 1.45715505e-01 2.76590496e-01\\n-6.31856248e-02 4.04603094e-01 -3.04258376e-01 -1.08718514e-01\\n-1.91801056e-01 3.90092880e-01 -6.51417673e-02 1.82144478e-01\\n-1.73569724e-01 3.82095128e-01 1.23801269e-01 1.74502939e-01\\n1.27364665e-01 6.34968802e-02 -5.40365130e-02 -2.22627968e-01\\n-2.57311881e-01 -4.27096128e-01 1.71497643e-01 2.96526961e-02\\n1.64752096e-01 -3.71100157e-01 -1.09345570e-01 1.18856607e-02\\n-1.66199088e-01 -3.77908051e-01 -2.34627366e-01 1.25755101e-01]]',\n", + " 'Lugano, Switzerland / Austin, TX Full Time Description Implement internal machine learning software infrastructure Integrate existing open-source tools in order to facilitate ML research Interface our proprietary platform with large data sets and customer platforms Contribute to the our proprietary code base Minimum Qualifications Masters in computer science 2 years in the industry, experience with IT systems Experience with parallel computing architectures “DevOps” Command of C/C++ and Python Knowledge of Unix environment, GNU/Linux Engineering mindset Large data management skills Fluent in written and spoken English Plusses Theoretical knowledge of machine learning methods (deep learning, reinforcement learning, evolutionary computation) Experience of machine learning frameworks (TensorFlow, PyTorch) Experience with containers and orchestration (Docker, Kubernetes, OpenStack) Experience with cluster environments (e.g. SGE, Condor) Experience with GPU programming (Cuda, OpenCL, Metal) Contact E-mail: jobs@nnaisense.com start subject with: [infrastructure engineer] submit both your cover letter and resume in English, PDF format',\n", + " '[\"Research\", \"Infrastructure\", \"Integration\"]',\n", + " '[\"Kubernetes\", \"Tooling\", \"Graphics Processing Unit (GPU)\", \"Programming (Music)\", \"Computer Science\", \"Data Management\", \"Machine Learning\", \"Nvidia CUDA\", \"OpenStack\", \"Industrialization\", \"Component Object Model (COM)\", \"Association Rule Learning\", \"E (Programming Language)\", \"OpenCL\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Condor\", \"C (Programming Language)\", \"Metallization\", \"TensorFlow\", \"Deep Learning\", \"Parallel Computing\", \"Clinical Data Management\", \"SliTaz GNU/Linux\", \"PyTorch (Machine Learning Library)\", \"Unix\", \"Documentation Based Coding\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'big data engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.96860814e-01 3.44887048e-01 4.18311268e-01 6.42987788e-02\\n5.49855947e-01 -1.60632238e-01 -7.60548115e-02 2.33741805e-01\\n3.85293690e-03 -3.85250986e-01 -1.00991771e-01 -2.73914307e-01\\n-8.60051885e-02 5.60852103e-02 1.23740666e-01 4.40712243e-01\\n2.10842565e-01 6.70473510e-03 -7.52684474e-02 3.78748119e-01\\n4.04198393e-02 -1.20572872e-01 -2.10955739e-02 6.54336214e-01\\n3.27865958e-01 -4.52837832e-02 -1.05593726e-01 3.76893021e-02\\n-2.93820888e-01 -1.94786966e-01 3.50330234e-01 3.60151418e-02\\n-1.35590002e-01 -3.07242274e-01 1.52788103e-01 1.99274436e-01\\n-2.34797448e-01 3.43347415e-02 -1.69399083e-01 1.40004277e-01\\n-4.76627588e-01 -1.83501318e-01 8.29791743e-03 5.43206558e-02\\n-4.30294186e-01 -3.49034727e-01 9.95754451e-02 -1.81845233e-01\\n3.66332196e-02 6.48680553e-02 -5.33586919e-01 3.09596747e-01\\n-2.28925571e-01 -2.48519540e-01 3.49494070e-01 6.64280176e-01\\n1.17803238e-01 -4.88737762e-01 -3.91648233e-01 -3.63320202e-01\\n-4.55902666e-02 -1.13983192e-01 3.27034444e-02 -2.60845512e-01\\n4.11702573e-01 -1.43740445e-01 2.91686114e-02 2.89151549e-01\\n-8.67187321e-01 -1.14951365e-01 -4.15841609e-01 7.68027594e-03\\n-4.90776718e-01 1.97851080e-02 -3.89639020e-01 -1.84735030e-01\\n-2.03368515e-02 4.76683944e-01 -2.18808297e-02 1.53994739e-01\\n-1.93965256e-01 2.92768687e-01 -3.28353584e-01 2.08600566e-01\\n3.39791447e-01 1.58946797e-01 1.72966585e-01 2.85977483e-01\\n-4.48067993e-01 3.26938391e-01 3.01893115e-01 -2.35333920e-01\\n2.83533931e-01 1.43122420e-01 2.94796169e-01 1.95423141e-01\\n1.10316023e-01 2.62607336e-01 -1.41405299e-01 1.97389156e-01\\n1.77302569e-01 -2.11973563e-01 -5.77723011e-02 -1.51757509e-01\\n4.66307215e-02 -1.21968903e-01 2.33216006e-02 2.01474980e-01\\n-3.48602384e-01 2.91850716e-01 1.18034214e-01 -1.54592186e-01\\n-9.68825817e-02 -4.61926162e-01 -6.63943663e-02 -4.83498536e-02\\n3.31327245e-02 2.76550680e-01 2.49577552e-01 1.99359983e-01\\n2.08295792e-01 1.71896014e-02 1.77252889e-01 9.28946495e-01\\n-6.68200031e-02 2.05227554e-01 -2.60475755e-01 3.75699133e-01\\n2.15705931e-01 -2.50339955e-01 1.58410624e-01 2.42954895e-01\\n8.20262358e-03 -1.29366100e-01 -2.53765494e-01 3.23635042e-01\\n-1.97265580e-01 -1.58971861e-01 -2.35874146e-01 1.43298998e-01\\n-1.32214040e-01 -5.58442056e-01 5.85828841e-01 3.11824419e-02\\n7.42080212e-02 -7.46050179e-02 -8.57746378e-02 -4.10121605e-02\\n-1.85835615e-01 3.00886959e-01 4.28445674e-02 2.43591174e-01\\n-2.85249054e-01 -2.76624262e-01 -9.27137882e-02 2.80250311e-01\\n-2.50699013e-01 2.23866235e-02 -2.20246643e-01 -1.09423146e-01\\n3.43225181e-01 1.69671595e-01 -4.59755123e-01 1.78900361e-01\\n-4.18040380e-02 -3.04155052e-01 -2.19227076e-02 3.29643071e-01\\n-1.41281307e-01 2.50280350e-01 -5.20857498e-02 -6.49947897e-02\\n5.89169621e-01 2.31374398e-01 2.89622128e-01 -2.26045446e-03\\n2.75445729e-01 -1.53110206e-01 2.59232163e-01 1.00722864e-01\\n-5.21611035e-01 4.42454338e-01 -1.14062294e-01 -1.69909835e-01\\n1.13117598e-01 3.67181115e-02 4.13286358e-01 -2.63497382e-01\\n-7.07108453e-02 -1.98499203e-01 -3.56016397e-01 -3.78715783e-01\\n-2.90088266e-01 -3.64230312e-02 3.65426838e-01 -4.69793051e-01\\n-8.84761009e-03 2.49416679e-01 -6.12476766e-01 -1.58732265e-01\\n1.95361480e-01 2.30769902e-01 8.49370733e-02 1.05911754e-02\\n-1.00727543e-01 -6.15024865e-01 7.96834826e-02 -4.60210770e-01\\n-3.49452645e-01 8.61413553e-02 -2.44263411e-01 5.97687773e-02\\n-1.60614122e-03 6.56268820e-02 -1.20289892e-01 1.67419553e-01\\n-4.15087909e-01 4.28542979e-02 1.74081236e-01 1.29645616e-01\\n3.52620065e-01 5.09687811e-02 -4.16413695e-01 5.42360187e-01\\n-1.77880958e-01 4.42510903e-01 2.65277028e-01 -8.83127034e-01\\n5.55521905e-01 2.30198085e-01 -9.16575715e-02 -2.63767302e-01\\n4.45501894e-01 -4.54591215e-01 -5.40335961e-02 7.24373534e-02\\n-2.35520020e-01 -2.41464645e-01 3.15704733e-01 -1.13929532e-01\\n-2.59803593e-01 6.78429484e-01 1.02698766e-01 1.46381631e-01\\n3.78542066e-01 -2.83877075e-01 -1.76055610e-01 -5.64239174e-02\\n-1.50965393e-01 -1.40857562e-01 -5.81143856e-01 1.23960361e-01\\n-1.10634290e-01 -5.12252092e-01 -7.80403093e-02 -5.08696556e-01\\n-2.25422829e-01 -2.84876466e-01 -2.59731680e-01 2.96742439e-01\\n1.92434937e-01 1.74000308e-01 -1.05507866e-01 -4.82587367e-02\\n1.97027866e-02 -6.91412091e-01 -5.02098352e-02 7.15362057e-02\\n4.32042360e-01 2.59835809e-01 2.61846900e-01 -8.58775452e-02\\n1.63848355e-01 4.10003364e-01 -3.58777672e-01 -4.43524987e-01\\n1.27500042e-01 9.73021537e-02 -4.79912274e-02 -1.67048678e-01\\n1.34975895e-01 4.04518425e-01 -2.28389919e-01 1.31865010e-01\\n3.94292101e-02 -3.70270871e-02 3.49040776e-01 -2.57066917e-02\\n-2.43934885e-01 -2.26500019e-01 -8.27875957e-02 2.37687081e-01\\n-5.93317926e-01 -3.17269415e-01 4.88442451e-01 2.47317463e-01\\n8.97993967e-02 2.22598076e-01 2.77755946e-01 -1.23002328e-01\\n-2.06953898e-01 -9.76430625e-02 2.68041551e-01 1.71976075e-01\\n1.31365255e-01 1.24579370e-01 -1.80519164e-01 -5.35281420e-01\\n-3.50417495e+00 -1.75089076e-01 1.43602312e-01 -2.29981154e-01\\n2.04089463e-01 -1.85537279e-01 2.12182850e-01 2.53077671e-02\\n-3.28020453e-01 -8.48561078e-02 -1.88551605e-01 -1.03937112e-01\\n4.07386757e-03 2.98340470e-01 1.08108923e-01 1.88793227e-01\\n1.36490390e-01 -1.91399798e-01 3.84088070e-03 4.26874876e-01\\n-9.22174305e-02 -6.96362674e-01 -2.55561713e-02 3.61620747e-02\\n1.48184657e-01 6.73779026e-02 -4.15742129e-01 -3.92589383e-02\\n-3.21821988e-01 -3.23158115e-01 1.86734870e-01 -2.35624462e-01\\n-2.44609118e-01 2.20956743e-01 1.81667164e-01 -1.17119715e-01\\n-1.62027944e-02 -2.33508959e-01 2.42001936e-02 -5.44063151e-01\\n8.13470855e-02 -5.98324299e-01 8.88843164e-02 -5.79190031e-02\\n6.72810674e-01 -2.52187073e-01 2.44479910e-01 9.77295414e-02\\n1.59578815e-01 2.52789617e-01 1.10288128e-01 5.62349260e-02\\n-3.28595877e-01 -3.20659429e-01 -1.31877035e-01 -2.53720462e-01\\n5.78959882e-01 4.40056324e-01 -1.70335010e-01 6.36792406e-02\\n9.78659373e-03 -3.37250173e-01 -5.06300986e-01 -3.50638479e-01\\n-2.08132833e-01 -8.52709711e-02 -6.69044137e-01 -3.54889631e-01\\n-8.23016539e-02 -1.18027486e-01 -5.46901338e-02 6.62365854e-01\\n-3.13018799e-01 -3.51793170e-01 3.96526530e-02 -5.07278740e-01\\n3.19762141e-01 -2.42803395e-01 6.55853376e-02 -2.58750886e-01\\n-3.28336746e-01 -4.62177157e-01 1.94543123e-01 -3.54599766e-02\\n-2.66761065e-01 -1.32800430e-01 5.46680465e-02 -1.52359337e-01\\n-3.96212727e-01 -6.26075149e-01 4.42959160e-01 3.95017713e-02\\n3.61081600e-01 6.05906993e-02 3.98483485e-01 -6.88349605e-02\\n3.56861442e-01 -9.98112038e-02 -1.31054252e-01 -4.97816831e-01\\n-1.97644290e-02 5.73071130e-02 5.34489989e-01 -2.34072521e-01\\n1.79413199e-01 9.32373255e-02 -1.95057124e-01 3.07738613e-02\\n4.13011312e-01 1.68356635e-02 8.14857408e-02 -6.31378358e-03\\n2.66395926e-01 -5.47979355e-01 -2.69027323e-01 1.55107424e-01\\n1.08892009e-01 7.03123152e-01 8.41865316e-03 -4.54086185e-01\\n-2.29289770e-01 4.41076189e-01 -6.45007417e-02 -1.18308276e-01\\n-2.19390437e-01 6.81811348e-02 -2.17581362e-01 2.63548553e-01\\n6.64121285e-02 -1.17072552e-01 -2.45330110e-01 -1.29564121e-01\\n-5.84770665e-02 3.63042742e-01 2.81433463e-01 1.61634088e-02\\n-7.70878568e-02 -2.21706539e-01 -3.57245468e-02 2.05241695e-01\\n2.32138753e-01 3.97327662e-01 1.66679710e-01 -3.01004171e-01\\n2.78272890e-02 3.06736737e-01 -3.17709178e-01 3.02906156e-01\\n-1.89054146e-01 1.42882586e-01 -6.38502955e-01 -1.44051403e-01\\n-2.66994298e-01 -4.27788824e-01 3.30012947e-01 3.58485937e-01\\n1.79589659e-01 -7.01749548e-02 6.38324022e-02 -5.05131185e-01\\n3.73124063e-01 1.12982221e-01 1.53083429e-01 7.08051994e-02\\n2.80801230e-03 6.69723630e-01 -1.77098811e-02 -1.62208453e-01\\n-6.04958236e-02 -1.97706092e-02 -2.60907173e-01 -3.42045695e-01\\n2.55826283e-02 -4.81955439e-01 -2.02252090e-01 4.90829349e-01\\n2.33723909e-01 -4.75820377e-02 -3.21290106e-01 1.33100957e-01\\n4.35751788e-02 -1.92549407e-01 -2.90783107e-01 -2.42837332e-02\\n2.01531097e-01 2.00762242e-01 2.64001667e-01 -4.20604885e-01\\n-3.78113724e-02 5.16359285e-02 -2.20098253e-02 4.36224848e-01\\n4.84443493e-02 2.14425087e-01 -6.25033826e-02 -1.04120679e-01\\n6.13250196e-01 -1.28150564e-02 -1.69442758e-01 -1.19935304e-01\\n7.93749243e-02 -1.61210597e-01 -4.15824413e-01 5.83286397e-02\\n-2.43440513e-02 -3.14145714e-01 8.84527341e-02 1.02038935e-01\\n1.09011732e-01 -5.32904565e-02 -5.95097363e-01 -1.72616392e-01\\n-3.80835503e-01 -6.19084686e-02 4.15815078e-02 -5.36376238e-01\\n3.89634334e-02 1.94169749e-02 -5.49118102e-01 2.83013165e-01\\n-1.59557611e-01 2.34637130e-02 3.27658169e-02 1.00415193e-01\\n-2.10372925e-01 -1.04411289e-01 1.39792547e-01 1.90717608e-01\\n-2.65638351e-01 -1.59193531e-01 4.23223004e-02 -9.18339968e-01\\n1.52262151e-01 7.36924708e-02 -1.32943735e-01 1.04808800e-01\\n3.55764218e-02 -7.74015486e-01 1.29943520e-01 -3.92476737e-01\\n-6.33490160e-02 1.50974005e-01 -2.50673473e-01 -3.95439118e-01\\n2.08995610e-01 3.50915939e-02 -4.07000482e-01 4.15662140e-01\\n-5.61714411e-01 3.19586158e-01 8.56264532e-02 7.89562017e-02\\n8.55175704e-02 -2.07664788e-01 1.59763098e-01 -2.32482165e-01\\n-3.70378107e-01 -2.01556742e-01 -2.06207275e-01 -3.23712707e-01\\n-8.40868428e-03 -3.26630116e-01 -1.08477421e-01 2.01712493e-02\\n4.21023816e-01 1.32078126e-01 -9.07460302e-02 -2.76236713e-01\\n6.86943457e-02 -4.73630935e-01 1.35386229e-01 -2.70865858e-01\\n-1.13083154e-03 -1.17591299e-01 2.10089207e-01 2.35687066e-02\\n2.07215667e-01 -3.16815883e-01 6.22050405e-01 -2.76310802e-01\\n-3.45916152e-01 -1.43903702e-01 6.32182583e-02 7.51021132e-02\\n2.37726122e-01 -3.78808647e-01 5.21192588e-02 2.72124439e-01\\n9.57002863e-02 7.74144009e-03 2.59716749e-01 -1.75252408e-01\\n-1.14230126e-01 1.79250881e-01 -5.00780165e-01 1.60120592e-01\\n8.63532364e-01 8.99323672e-02 2.56249458e-01 1.37095362e-01\\n1.20234236e-01 2.59131551e-01 4.77859616e-01 1.57975741e-02\\n-8.44413191e-02 2.87263215e-01 5.32845482e-02 -4.52349544e-01\\n-1.33555338e-01 -1.50623873e-01 -1.66257456e-01 -2.96008676e-01\\n6.02666676e-01 2.33034328e-01 -3.36251676e-01 -4.54831868e-01\\n-7.99099877e-02 -1.00721851e-01 4.06935215e-01 1.51048526e-02\\n-1.40468761e-01 -1.76450998e-01 4.19293970e-01 -6.43341243e-02\\n3.23634148e-01 5.25896311e-01 -1.65244415e-01 -2.80985773e-01\\n-1.03312410e-01 2.46023715e-01 1.93510264e-01 4.52180237e-01\\n-1.55434579e-01 1.74752906e-01 -1.07079193e-01 1.43060103e-01\\n-1.89065054e-01 -8.78895074e-03 3.01000088e-01 6.83068782e-02\\n2.19076112e-01 6.77633360e-02 4.65387374e-01 5.59907198e-01\\n1.90063655e-01 5.31919301e-01 3.54384571e-01 -1.32503854e-02\\n3.20093125e-01 6.66606545e-01 3.78609300e-01 1.04473203e-01\\n-3.07683758e-02 1.38937786e-01 6.82053268e-02 -7.74407685e-02\\n2.82814741e-01 3.94464582e-01 2.25611493e-01 8.85194421e-01\\n3.46412063e-01 3.44777614e-01 7.24910855e-01 -6.45051658e-01\\n-4.96049970e-01 9.21939537e-02 6.03345633e-01 -4.64121521e-01\\n5.40326983e-02 1.62939936e-01 -2.49493226e-01 2.17103228e-01\\n-5.56812644e-01 -2.11038455e-01 4.21759440e-03 1.22597618e-02\\n1.01786721e-02 -9.87417027e-02 -9.09411311e-02 1.19228959e-01\\n-1.19134754e-01 -1.98214710e-01 -2.97854602e-01 -1.21630073e-01\\n-2.32164294e-01 -5.52714802e-02 -1.02314711e-01 -2.53677312e-02\\n-2.29588710e-02 -3.22520316e-01 -6.94573820e-02 6.73100026e-03\\n3.18767995e-01 -2.02134550e-01 -2.14769408e-01 -7.11566284e-02\\n1.59569532e-01 2.47494087e-01 5.84787607e-01 5.20478673e-02\\n1.97300874e-02 -1.49446592e-01 -1.87031940e-01 3.72363031e-02\\n6.18296191e-02 1.31450161e-01 7.60812964e-03 3.67187589e-01\\n-2.83870757e-01 -2.00773999e-01 1.73787057e-01 2.05903783e-01\\n-3.76042515e-01 -1.09815635e-01 -4.55926470e-02 2.24547386e-01\\n1.80376992e-02 1.47408113e-01 -2.86194414e-01 1.76045194e-01\\n-2.14229807e-01 -5.73754609e-01 4.62805003e-01 -2.06788361e-01\\n-1.24913402e-01 7.54182637e-02 3.20095986e-01 2.22538635e-01\\n-2.22011238e-01 -3.66530903e-02 -1.39946029e-01 2.69055218e-01\\n-8.69691595e-02 3.73143971e-01 -2.42382780e-01 -2.33777374e-01\\n-2.87254810e-01 3.02292496e-01 2.91829240e-02 1.88529760e-01\\n-2.78444849e-02 4.86935914e-01 -3.09117362e-02 1.36623368e-01\\n3.12452167e-01 3.34689692e-02 -2.60901988e-01 -3.44393373e-01\\n-2.40466744e-01 -8.69643986e-02 6.19944409e-02 -2.59186383e-02\\n1.95385382e-01 -3.49411130e-01 -1.29450992e-01 -2.11682081e-01\\n-1.64196745e-01 -4.55375612e-01 -9.15977806e-02 2.57502776e-02]]',\n", + " 'Job Informationen Responsibilities: Responsible for delivering projects in the Big Data (Engineer and Analytics) field A key position as Big Data Ingenieur, where you are designing and building an analytics platform using state of the art Big Data technologies and provide services to enable Data Scientists to build advanced analytics models You are taking an active part of our transformation into a more data and analytical insights driven bank Within the highly motivated team, you collaborate closely with business teams to understand data and functional requirements You design and build data pipelines to ingest, integrate, standardize, clean and publish data You are responsible for defining and crafting integration patterns with downstream applications You provide input into overall IT architecture of the solution, including technical environment configuration, data modelling, data integration, data presentation, information security and other IT architecture related topics You support Data Scientist in their day-to-day work on a variety of topics, including tools and data analysis methods You operationalize analytical models developed by the Data Scientists to embed them into the bank’s business processes Your profile: A university degree or equivalent education in IT or another technical specialization, ideally with focus on Data Management You have proven work experience of at least two years as a Data Engineer using Big Data technologies Experience with Hadoop based analytical solutions, ideally on Cloudera distribution, as well as practical skills in creating data processing pipelines using Spark, Scala, Python or similar tools Good knowledge of SQL, Hive and Impala databases Ideally experience with Jupyter Notebook, Hue, other end user tools If you already had experience with Tableau, Splunk or an agile work environment you have an advantage You are able to work in a dynamic environment, be comfortable with changing priorities and tight deadlines, manage you own workload with minimum supervision You build strong collaborative relationships with colleagues in IT and business groups Excellent verbal and written communication skills in English and German Benötigte Skills Scala Python Python Englisch Security Datawarehouse',\n", + " '[\"Collaboration\", \"Management\", \"Supervision\", \"Team Motivation\", \"Integration\", \"Positivity\", \"Written Communication\"]',\n", + " '[\"Information Presentation Facility\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Agility\", \"Analytics\", \"Data Management\", \"Data Modeling\", \"Data Engineering\", \"Scala (Programming Language)\", \"Activism\", \"Apex Data Loader\", \"Functional Requirement\", \"Information Security Management\", \"Jupyter Notebook\", \"Data Pipeline\", \"Idealization\", \"Splunk\", \"Hostile Work Environment\", \"Pipelining\", \"Operationalization\", \"Business Process\", \"Apache Hive\", \"Electronic Data Processing\", \"Big Data\", \"Survey Data Analysis\", \"Transformation (Genetics)\", \"Service Provider\", \"Banking\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Icelandic', 'Sardinian', 'Swedish', 'Bambara']\"],\n", + " ['44',\n", + " 'software engineer',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-3.12801331e-01 3.16512048e-01 4.18633461e-01 -7.91569278e-02\\n5.23473918e-01 -2.02009022e-01 1.43224448e-02 3.96541834e-01\\n-2.95258015e-02 -3.80351514e-01 -1.71148345e-01 -2.60764986e-01\\n-1.86775640e-01 3.46598998e-02 2.29364529e-01 4.35211420e-01\\n2.13361993e-01 7.31811300e-02 -2.71519899e-01 3.62178653e-01\\n6.76888525e-02 -9.00769681e-02 3.08419261e-02 7.49629259e-01\\n3.51514131e-01 1.39445933e-02 7.99249671e-03 -1.12452928e-03\\n-3.08921933e-01 -2.86021382e-01 2.84034193e-01 -1.54524837e-02\\n-1.17725946e-01 -3.36671174e-01 1.80350006e-01 3.94491404e-02\\n-1.42310113e-01 -6.50811344e-02 -2.96018068e-02 1.36475191e-01\\n-4.86237645e-01 -2.83786476e-01 2.09684446e-01 8.14381912e-02\\n-7.68273175e-02 -3.60551596e-01 1.40205085e-01 -1.42227501e-01\\n1.89237390e-02 -6.57460168e-02 -4.99913871e-01 3.54694098e-01\\n-2.39417732e-01 -1.58044338e-01 3.51311326e-01 5.19925475e-01\\n-1.20911978e-01 -6.11969590e-01 -3.13406318e-01 -2.62099057e-01\\n4.18638550e-02 -7.50373229e-02 -1.30443517e-02 -3.59687090e-01\\n3.79999757e-01 7.91939124e-02 -7.55848140e-02 3.19918513e-01\\n-8.10813129e-01 -2.05031931e-01 -2.33121410e-01 4.83161956e-02\\n-3.55063528e-01 -9.04140249e-02 -1.34746566e-01 -1.46796510e-01\\n1.85451377e-02 3.83641899e-01 -1.53264469e-02 3.23173665e-02\\n-1.09364137e-01 3.71241242e-01 -4.62248400e-02 3.77704322e-01\\n3.20841372e-01 1.68776840e-01 1.32807031e-01 3.55924428e-01\\n-3.59836102e-01 4.87569720e-01 7.26686940e-02 -2.88253397e-01\\n1.25274226e-01 2.05301002e-01 5.00716269e-01 1.26226461e-02\\n3.97542417e-02 1.97526187e-01 -3.04165840e-01 2.99141109e-01\\n2.02088848e-01 -1.69397727e-01 6.65759528e-03 -7.11626336e-02\\n-6.61653057e-02 -8.45232680e-02 2.61793938e-02 3.13128084e-01\\n-2.93170273e-01 5.02677441e-01 1.24285914e-01 -7.22864345e-02\\n5.16628325e-02 -5.67255735e-01 -1.40350863e-01 1.53846378e-02\\n-8.00355077e-02 9.77878496e-02 3.32642287e-01 1.70066193e-01\\n2.57896721e-01 4.31124158e-02 9.32393223e-02 9.67842042e-01\\n1.71050604e-03 1.68293089e-01 -2.51748562e-01 4.06392246e-01\\n1.53977498e-01 -3.17053527e-01 1.74288854e-01 3.45592886e-01\\n2.39519402e-01 -1.12963505e-01 -2.27179065e-01 3.27402472e-01\\n-1.98341832e-01 -2.90694505e-01 -3.96096706e-01 1.96666941e-01\\n-2.44850695e-01 -4.90286648e-01 4.87498850e-01 1.40147626e-01\\n2.05087215e-01 1.03209866e-02 -9.43975672e-02 -4.17625979e-02\\n-1.00627251e-01 2.33817548e-01 3.21568996e-02 1.13600150e-01\\n-3.47780794e-01 -1.75770327e-01 -3.02637100e-01 1.32408574e-01\\n-1.58637851e-01 1.71912894e-01 -1.09562412e-01 -1.44348353e-01\\n3.51832122e-01 3.17592826e-03 -5.07710516e-01 3.64246964e-01\\n8.38328060e-03 -2.77027320e-02 -4.36405130e-02 4.02636915e-01\\n-9.95365232e-02 2.98923433e-01 -2.54423991e-02 -6.76289275e-02\\n3.59841526e-01 1.76911224e-02 -2.52633691e-02 -1.65009215e-01\\n3.01501960e-01 -1.43668905e-01 1.70410991e-01 6.89919889e-02\\n-7.37222970e-01 2.55105525e-01 -5.80111742e-02 1.35410186e-02\\n1.21948551e-02 -2.48319414e-02 3.62341821e-01 -3.71194720e-01\\n-1.72665700e-01 -1.85158774e-01 -3.90695781e-01 -3.93356651e-01\\n-3.03242415e-01 -1.41313951e-02 4.49884295e-01 -3.03693563e-01\\n-1.78244039e-01 2.21627623e-01 -5.13013422e-01 7.02287033e-02\\n2.58289307e-01 1.97849259e-01 1.26958489e-01 1.41438901e-01\\n-3.51326987e-02 -5.98378539e-01 7.58757666e-02 -4.24420714e-01\\n-3.60226482e-01 1.34903803e-01 -3.12238276e-01 2.69950598e-01\\n1.49554044e-01 1.00095376e-01 -6.44305274e-02 6.67490140e-02\\n-2.30115294e-01 -6.73026517e-02 1.71835586e-01 6.78511634e-02\\n1.98214769e-01 3.73082533e-02 -4.94558334e-01 4.80509192e-01\\n-2.18076795e-01 4.77721304e-01 8.23358148e-02 -8.05065870e-01\\n5.48103392e-01 3.26535404e-01 3.47400866e-02 -4.32201236e-01\\n6.10359013e-01 -3.83548349e-01 -9.53272209e-02 1.43837258e-01\\n-4.00688887e-01 -3.12934250e-01 1.97759032e-01 -1.26089916e-01\\n-2.75784433e-01 5.80727637e-01 9.97411311e-02 2.69413833e-03\\n2.87883818e-01 -2.82297134e-01 -1.53541237e-01 7.27819875e-02\\n-2.70451121e-02 -2.21376926e-01 -4.47217792e-01 -1.82413007e-03\\n-1.61377676e-02 -5.08080542e-01 -1.74873129e-01 -4.52164561e-01\\n-2.09689453e-01 -3.83565933e-01 -1.85078964e-01 3.29800218e-01\\n2.43226454e-01 1.48317978e-01 1.01001821e-01 9.96082556e-03\\n-1.42926037e-01 -6.03709698e-01 -5.56448624e-02 6.82088509e-02\\n4.28021967e-01 2.43521348e-01 7.49348253e-02 -4.66759428e-02\\n-6.68673441e-02 6.31377578e-01 -3.06268126e-01 -2.56342620e-01\\n8.89747813e-02 1.52975783e-01 -3.74802798e-02 -7.81136826e-02\\n1.56144172e-01 4.08918172e-01 -2.41116136e-01 3.76945175e-02\\n-2.23806977e-01 8.41687992e-02 3.68939638e-01 7.07777450e-04\\n-3.46594244e-01 -2.57924855e-01 -2.69735418e-02 1.82354793e-01\\n-5.86630285e-01 -1.80287495e-01 5.61579823e-01 2.65502125e-01\\n2.08557695e-01 1.54528826e-01 3.47996920e-01 -1.95836157e-01\\n-5.38512878e-02 -1.69183508e-01 1.18805401e-01 2.48434573e-01\\n8.71337280e-02 1.91436857e-02 -1.81508169e-01 -5.99153221e-01\\n-3.05484533e+00 1.10294959e-02 1.36477068e-01 -1.99948147e-01\\n1.39525965e-01 -6.62112907e-02 2.88588461e-02 -1.17691398e-01\\n-2.62980223e-01 6.02071807e-02 -3.20721596e-01 -1.26113206e-01\\n8.52785930e-02 2.04672530e-01 1.25590280e-01 1.42709404e-01\\n2.15302050e-01 -3.65236789e-01 -6.41188771e-02 2.48403624e-01\\n-6.28827065e-02 -7.12549269e-01 1.79696992e-01 -8.72801095e-02\\n2.93931693e-01 2.97597945e-01 -3.60176116e-01 -1.36338770e-01\\n-1.74095780e-01 -2.83319741e-01 1.11630552e-01 -2.43421271e-01\\n-1.40295044e-01 3.74410242e-01 4.93827872e-02 -1.42165184e-01\\n1.41054377e-01 -3.48098963e-01 5.34460805e-02 -4.17488962e-01\\n1.58350185e-01 -5.95151544e-01 1.27165481e-01 -9.31036696e-02\\n6.22393191e-01 -3.27441275e-01 9.71521661e-02 2.07087368e-01\\n1.36256769e-01 2.67784446e-01 -6.76104426e-02 -3.57137341e-03\\n-1.95487037e-01 -2.08670855e-01 -1.30109107e-02 -2.11488754e-01\\n5.04943311e-01 4.60878670e-01 -1.69685796e-01 -3.30233909e-02\\n8.74223039e-02 -3.65866989e-01 -4.38640147e-01 -4.03927565e-01\\n-2.57940143e-01 -1.97407663e-01 -8.23525071e-01 -3.83654982e-01\\n-8.59944522e-02 -7.49429986e-02 -1.59311533e-01 5.48014581e-01\\n-2.91549981e-01 -3.61807287e-01 4.08007912e-02 -5.12999594e-01\\n7.83261284e-02 -2.03186750e-01 7.11726546e-02 -2.37453148e-01\\n-2.17922196e-01 -5.08351088e-01 1.26214266e-01 7.54575729e-02\\n-1.60454854e-01 -1.76717415e-01 7.34414905e-02 -2.33689398e-01\\n-1.70308679e-01 -5.09858668e-01 4.56348330e-01 1.57323986e-01\\n2.63603836e-01 1.53788000e-01 2.11083204e-01 -6.76111970e-03\\n3.25063020e-01 -6.80102259e-02 1.06913075e-01 -4.63090241e-01\\n5.46183102e-02 8.84331390e-02 5.33161044e-01 -1.95888788e-01\\n-3.46129909e-02 2.00686380e-01 -1.66580871e-01 -1.78392231e-01\\n2.72686183e-01 1.22653231e-01 8.36533904e-02 -2.49631599e-01\\n3.34251016e-01 -5.11177361e-01 -2.40285367e-01 1.53864443e-01\\n1.60415947e-01 7.00615287e-01 6.49797218e-03 -4.78652209e-01\\n-2.99368918e-01 3.67539376e-01 3.14667053e-03 -7.26779178e-02\\n-4.08478267e-02 1.43154070e-01 -2.79801160e-01 1.69476718e-01\\n2.17109397e-02 -1.75495341e-01 -2.85740227e-01 -1.06599860e-01\\n-7.87442923e-02 3.19206625e-01 2.99442440e-01 1.19668327e-01\\n-4.11337912e-02 -4.85817999e-01 -1.08940728e-01 1.37533471e-01\\n1.45772815e-01 3.25233519e-01 9.24873874e-02 -3.06976318e-01\\n-5.98290935e-02 4.24621344e-01 -1.02247730e-01 1.36669278e-01\\n-2.22659975e-01 -3.18024606e-02 -5.38682222e-01 -1.71118721e-01\\n-2.39801943e-01 -2.24327132e-01 -4.66067716e-02 3.97736639e-01\\n1.48451328e-01 -7.31302006e-03 7.61822239e-02 -5.14854372e-01\\n4.06590223e-01 2.58336309e-02 2.52168030e-01 1.23999245e-01\\n1.66050624e-02 4.88307595e-01 -5.61133353e-03 -1.70740664e-01\\n-1.57895908e-01 9.37199071e-02 -2.77358770e-01 -2.33088717e-01\\n1.40401438e-01 -2.93494672e-01 -9.65822786e-02 2.91272163e-01\\n4.91943881e-02 -2.76045293e-01 -1.84342369e-01 1.74787879e-01\\n1.16718769e-01 -3.74120444e-01 -2.05214411e-01 4.75183539e-02\\n2.56592423e-01 1.78696364e-02 1.84482783e-01 -4.47677374e-01\\n-6.68130070e-02 -2.09452629e-01 -1.43975437e-01 5.01841247e-01\\n2.16458008e-01 2.91687232e-02 -2.43994996e-01 -2.70706505e-01\\n4.12215650e-01 -8.92977789e-02 -5.60359061e-02 -1.98209986e-01\\n2.95626111e-02 -1.62104219e-01 -3.88458967e-01 4.40001711e-02\\n-5.18975742e-02 -5.11773489e-02 2.22649239e-02 3.13011184e-02\\n1.29123017e-01 7.45195895e-02 -5.29471934e-01 -2.07720190e-01\\n-2.53031343e-01 -1.08118638e-01 1.40799694e-02 -4.06599522e-01\\n5.92197292e-02 -7.43468385e-03 -6.36318207e-01 3.06066871e-01\\n-3.06495547e-01 9.54146758e-02 1.30129576e-01 8.76834095e-02\\n-4.51240152e-01 -1.30911306e-01 1.65414929e-01 1.52794510e-01\\n-2.88830251e-01 -1.08976416e-01 -9.61446315e-02 -1.08853316e+00\\n2.96982944e-01 -9.61849242e-02 -7.25740790e-02 2.27480270e-02\\n-4.63116020e-02 -7.93134034e-01 9.86428708e-02 -3.43419343e-01\\n1.87187120e-02 -2.07975358e-02 -1.08778752e-01 -4.32107568e-01\\n6.74312338e-02 -1.27865180e-01 -2.87211865e-01 2.68414289e-01\\n-4.44613755e-01 3.72799575e-01 -1.56655312e-01 1.28634110e-01\\n-3.51930298e-02 -3.12616080e-01 1.57254413e-01 -4.55645651e-01\\n-3.98627371e-01 -1.27781808e-01 -2.95688212e-01 -1.76665843e-01\\n-5.17622195e-02 -3.53044599e-01 -1.56716421e-01 1.14772148e-01\\n3.16042304e-01 1.14111893e-01 -6.10143542e-02 -2.41039008e-01\\n1.12457089e-01 -2.69582003e-01 3.24008316e-02 -1.21879131e-01\\n1.20718703e-01 -3.03700138e-02 1.75463855e-01 -4.79134964e-03\\n2.41457626e-01 -4.57437903e-01 4.01130646e-01 -3.77908587e-01\\n-4.42508519e-01 2.64437217e-03 4.21154946e-02 3.97810936e-02\\n3.01885575e-01 -4.86610025e-01 1.11247646e-02 2.37946510e-01\\n1.73222974e-01 1.22796781e-01 2.48659536e-01 1.86481662e-02\\n-1.54597655e-01 1.36411369e-01 -3.85708928e-01 9.71544441e-03\\n8.32945168e-01 1.75121665e-01 1.13029771e-01 9.02787372e-02\\n3.18379104e-02 3.77394587e-01 5.02191901e-01 -8.99109989e-03\\n-1.20048493e-01 2.51982510e-01 1.11550167e-01 -4.91380543e-01\\n-2.24850014e-01 -2.65921708e-02 -2.05087617e-01 -1.75069168e-01\\n6.28130555e-01 4.36543196e-01 -2.94996500e-01 -2.88637042e-01\\n-9.96529013e-02 -2.03501254e-01 1.74984753e-01 -5.48226386e-02\\n1.01103045e-01 -2.30957493e-01 6.27895594e-01 6.22641146e-02\\n2.44934604e-01 6.21182382e-01 -1.85486361e-01 -3.99862140e-01\\n-9.16196033e-02 1.68436378e-01 5.53882271e-02 3.10499460e-01\\n-1.42887026e-01 2.84558684e-01 1.68681350e-02 4.10193764e-02\\n-1.99829996e-01 5.01204096e-02 1.52698874e-01 4.43148576e-02\\n1.40622944e-01 2.18024269e-01 3.18108648e-01 5.23011446e-01\\n3.41097444e-01 5.57101846e-01 2.71017879e-01 3.59637737e-02\\n4.87620115e-01 4.76558000e-01 4.54230547e-01 2.08986163e-01\\n-1.76320306e-03 1.02056921e-01 2.16901347e-01 5.01393266e-02\\n4.69051331e-01 2.94091463e-01 1.79922462e-01 9.98627603e-01\\n3.48797649e-01 2.87032545e-01 8.43538225e-01 -6.43991292e-01\\n-3.18332583e-01 5.51734343e-02 4.55668807e-01 -4.48792756e-01\\n-1.03208646e-01 -2.35917289e-02 -1.22589260e-01 2.35548720e-01\\n-4.74328876e-01 -2.55274892e-01 -9.27144364e-02 1.68489486e-01\\n4.89928350e-02 -8.48086700e-02 -2.35221758e-01 5.56751527e-02\\n-2.20822483e-01 -1.62228793e-01 -4.53381389e-01 -1.14544705e-01\\n-2.33592719e-01 -1.03915513e-01 -7.65084699e-02 -1.84562787e-01\\n-3.26370820e-02 -3.98711294e-01 -2.02082708e-01 2.68614795e-02\\n3.79045993e-01 -2.30294168e-01 2.94798687e-02 -1.81650251e-01\\n2.43176535e-01 2.39570662e-01 6.50650203e-01 1.27208696e-04\\n1.63850382e-01 -2.21740499e-01 -2.02035472e-01 9.17099938e-02\\n2.68027466e-02 1.37803748e-01 1.17072977e-01 3.76176268e-01\\n-4.04191136e-01 -2.14482509e-02 1.21888354e-01 5.50979197e-01\\n-3.42247546e-01 -9.31182057e-02 -1.53794706e-01 1.38029650e-01\\n6.04198799e-02 1.23234972e-01 -1.84309915e-01 -2.02576760e-02\\n-2.62405872e-01 -5.71299553e-01 3.52944851e-01 -1.24262683e-01\\n-1.58385515e-01 1.21032149e-01 3.36867213e-01 1.86535716e-01\\n-2.29159430e-01 9.08462738e-04 4.92382459e-02 1.94130823e-01\\n1.63496256e-01 3.55838865e-01 -3.36899340e-01 -2.02272743e-01\\n-1.60276696e-01 2.56040275e-01 -1.89696684e-01 2.15142649e-02\\n-9.00366232e-02 4.16060656e-01 2.68871486e-02 9.36951786e-02\\n3.94507438e-01 -4.32611518e-02 -1.73853770e-01 -2.69220442e-01\\n-1.61375061e-01 -2.79768169e-01 5.43620624e-02 -1.25683665e-01\\n2.65155464e-01 -3.70299548e-01 -8.55093896e-02 -1.29202113e-01\\n-5.75658605e-02 -3.69844526e-01 -1.52958527e-01 4.67682397e-03]]',\n", + " 'We are looking for young, enthusiastic and talented Software Engineer In this position you will be responsible for embedded software development in C++ and other programming languages. You will develop software under different operating systems using provided Application Programming Interfaces (APIs). In dynamic, multicultural environment of our company, you will be part of a team working on projects in the area of Telecommunications, Wireless, Networked Entertainment and Multimedia. In cooperation with leading European companies, you will be developing cutting-edge technology products. Exciting, challenging tasks are waiting for you! As a successful candidate for this position you must be able to demonstrate the following qualifications: 2+ years of experience in software development Strong knowledge of object-oriented (OO) design principles Extensive programming experience in C++ and multi-threading environments Basic computer engineering knowledge (processor and memory organization, stack, calling conventions, interrupt handling, etc.) Good written and verbal communication skills in English Good analytical and problem-solving skills Any of the following qualifications will be a plus: Experience with real-time operating systems (RTOS) and Linux Software design and development process using UML Understanding of embedded software development principles Hands-on experience with hardware debuggers and device-level programming Practical knowledge of MS VS, GCC, STL, Perl, CVS/Subversion, ADS (RealView), Socket API Familiarity with the ARM architecture and assembler Software analysis, review and re-factoring skills We offer: Exciting carrier and professional opportunities in a dynamically developing company with Swiss quality standards and stability Enjoyable working atmosphere in our engineering offices, conveniently located in 5-minute walking distance from Zug railway station. If you are interested in this position, please, send your resume at jobs@epscom.net We are looking forward to your application!',\n", + " '[\"Verbal Communication Skills\", \"Cooperation\", \"Professionalism\", \"Problem Solving\", \"Positivity\"]',\n", + " '[\"KM Programming Language\", \"Programming (Music)\", \"UML Tool\", \"Analytics\", \"Perl (Programming Language)\", \"C++ (Programming Language)\", \"Linux\", \"Agile Edge Technologies\", \"Process Driven Development\", \"Software Engineering\", \"ARM Architecture\", \"Operating Systems\", \"Multimedia\", \"AD Model Builder (ADMB)\", \"Standard Template Library (STL)\", \"Object-Oriented Design\", \"Wireless Telecommunications\", \"Software Design\", \"Computer Engineering\", \"Wireless Networks\", \"Software Development\", \"Software Business Analysis\", \"Application Programming Interface (API)\", \"Embedded Software\", \"Apache Subversion\", \"Real-Time Operating Systems\", \"Interrupt Handling\", \"Threading (Manufacturing)\"]',\n", + " \"['English', 'Dhivehi', 'Occitan', 'Ossetic']\"],\n", + " ['16',\n", + " 'software engineer application framework 80-100%',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-1.38273299e-01 2.87755728e-01 5.54463685e-01 -7.89426081e-03\\n5.55581212e-01 -1.15915179e-01 6.84729442e-02 3.51902515e-01\\n-1.10367537e-02 -3.52897584e-01 -4.75258008e-02 -1.86945513e-01\\n-1.89395808e-02 2.88173333e-02 1.01893395e-01 3.15285981e-01\\n2.32014522e-01 1.36371285e-01 -1.30550429e-01 2.88902909e-01\\n1.48151129e-01 -2.29120925e-02 2.24251106e-01 7.00022876e-01\\n4.82816964e-01 3.70246209e-02 -6.05696291e-02 -2.93427296e-02\\n-2.86100626e-01 -2.58671373e-01 5.16586721e-01 8.64480212e-02\\n-1.28873259e-01 -3.64261597e-01 2.68727187e-02 -1.10842856e-02\\n-3.46311390e-01 -1.30607516e-01 -9.63586271e-02 1.73514932e-01\\n-3.64723295e-01 -1.67548582e-01 -1.23065434e-01 4.77714837e-02\\n-2.59312600e-01 -3.72619420e-01 -6.58757761e-02 -1.06333941e-01\\n1.78094402e-01 -5.57616279e-02 -4.85783756e-01 2.71259278e-01\\n-2.90288895e-01 -1.85301602e-01 2.22278148e-01 6.68231249e-01\\n-4.34990712e-02 -3.77749473e-01 -5.37635326e-01 -2.99678236e-01\\n1.41215727e-01 -1.01260215e-01 3.88627537e-02 -2.84696579e-01\\n2.29394361e-01 1.04779698e-01 1.08476475e-01 3.72858733e-01\\n-7.96289146e-01 -4.30939607e-02 -2.00616553e-01 -5.57391793e-02\\n-3.20775598e-01 -1.11318573e-01 -2.45476276e-01 -1.74544379e-01\\n-1.78993911e-01 4.60415244e-01 8.36129785e-02 8.62803124e-03\\n-1.75282195e-01 3.12097371e-01 -1.53716102e-01 3.91107470e-01\\n1.55054048e-01 1.86444715e-01 1.61679789e-01 3.15738201e-01\\n-3.55225682e-01 5.09462476e-01 7.01233596e-02 -3.21098655e-01\\n1.70544207e-01 6.15616627e-02 3.94158810e-01 -3.87429409e-02\\n7.94839859e-02 3.15051936e-02 -1.26400501e-01 3.10513288e-01\\n1.82541400e-01 -2.55095005e-01 3.80042605e-02 -1.70093089e-01\\n2.77834181e-02 -8.95043369e-03 -3.02245840e-02 1.17102414e-01\\n-2.29790524e-01 3.68329108e-01 5.55984862e-02 -2.45195627e-01\\n-1.00300230e-01 -5.64314008e-01 -6.23275563e-02 -7.75097385e-02\\n5.82525432e-02 1.25520930e-01 1.26106411e-01 2.39601448e-01\\n2.73205012e-01 1.90176126e-02 1.60155863e-01 6.69777930e-01\\n-2.46780105e-02 4.47492069e-03 -2.86204427e-01 3.57005179e-01\\n4.17362824e-02 -3.00949782e-01 2.23349318e-01 2.55833715e-01\\n-5.95372766e-02 -9.99837667e-02 -2.17078716e-01 3.26070040e-01\\n-1.91153176e-02 -2.43783608e-01 -2.78579652e-01 2.00619563e-01\\n-7.56111145e-02 -3.79696488e-01 4.88838851e-01 1.70256615e-01\\n1.88770413e-01 -9.73684713e-02 -1.19060688e-02 -7.67802596e-02\\n-5.72979487e-02 1.01061232e-01 3.13686132e-02 1.01227693e-01\\n-2.65297532e-01 -3.08722675e-01 -2.23060384e-01 8.39825198e-02\\n-2.26403296e-01 1.23955578e-01 -1.07349820e-01 -3.33474651e-02\\n2.48614207e-01 6.88126544e-03 -3.25920641e-01 3.01950365e-01\\n-3.30567323e-02 -8.99833534e-03 1.01191953e-01 3.72540325e-01\\n-1.85672149e-01 1.51705787e-01 -7.23388419e-02 -2.30719864e-01\\n5.72191834e-01 1.32911831e-01 8.03753734e-02 4.48034927e-02\\n1.51004404e-01 1.44014526e-02 1.48792490e-01 1.13734789e-01\\n-7.75650084e-01 3.86743426e-01 -9.75602046e-02 -1.60448015e-01\\n1.49152458e-01 -8.41695145e-02 2.71072060e-01 -1.68727458e-01\\n1.02989487e-01 -1.13288485e-01 -3.27210069e-01 -3.15071911e-01\\n-2.19576322e-02 5.79457404e-03 3.02874774e-01 -4.69877869e-01\\n-1.54559076e-01 2.89203346e-01 -4.38468844e-01 -5.84359542e-02\\n1.19683705e-01 1.89227566e-01 1.32532567e-01 1.18998446e-01\\n-2.12152049e-01 -3.68010581e-01 6.13485202e-02 -3.82528931e-01\\n-2.70977020e-01 -1.47275638e-03 -2.77693927e-01 2.46533245e-01\\n1.17571950e-01 -6.33373186e-02 -6.92158267e-02 1.15657233e-01\\n-1.57005370e-01 -1.63327418e-02 7.81629309e-02 -4.91488772e-03\\n3.52782220e-01 -1.63083393e-02 -4.06139970e-01 3.53981316e-01\\n-1.67821318e-01 5.32294273e-01 1.74106926e-01 -8.16291988e-01\\n4.62538362e-01 4.09254789e-01 -6.17959760e-02 -4.30448920e-01\\n5.82773209e-01 -3.06598365e-01 -1.82453748e-02 6.14972934e-02\\n-4.01310563e-01 -2.61851132e-01 1.93454012e-01 -1.51092455e-01\\n-2.25953028e-01 4.05689836e-01 -4.00624890e-03 1.61617428e-01\\n1.21346615e-01 -2.89103508e-01 -1.92167416e-01 -1.98535789e-02\\n-1.01712368e-01 -1.93971530e-01 -5.27311742e-01 -1.32193223e-01\\n-1.29379675e-01 -4.72580314e-01 -9.42598507e-02 -3.96205246e-01\\n-1.77029923e-01 -2.06852928e-01 -9.96840745e-02 2.02387601e-01\\n2.03230590e-01 1.05365269e-01 -2.36061495e-02 1.09440468e-01\\n-5.23642860e-02 -6.18069470e-01 3.77774946e-02 1.85805783e-01\\n4.11658138e-01 1.88189104e-01 1.05119832e-01 -6.77421838e-02\\n3.32493298e-02 7.45300531e-01 -1.33908957e-01 -1.97028250e-01\\n2.00982824e-01 1.32788748e-01 4.28100303e-02 -1.11113168e-01\\n1.80451118e-03 3.14230800e-01 -2.96928257e-01 2.79304874e-03\\n-7.81481992e-03 -1.61931105e-02 4.26268220e-01 4.21479829e-02\\n-2.64898539e-01 -9.42052230e-02 -8.19195360e-02 1.87522352e-01\\n-6.00113094e-01 -2.54846871e-01 5.97451150e-01 2.16903970e-01\\n5.20106256e-02 1.11149676e-01 1.82509035e-01 3.51613294e-03\\n-1.93476960e-01 -1.64605483e-01 2.58002341e-01 3.00725345e-02\\n1.72422931e-01 -1.51500637e-02 -9.18130651e-02 -5.14204562e-01\\n-3.35622096e+00 -1.63567275e-01 7.79481903e-02 -2.67684877e-01\\n2.70302802e-01 -1.77100837e-01 1.85198829e-01 -7.89941698e-02\\n-2.11331651e-01 4.54040579e-02 -2.82750517e-01 -1.40611604e-01\\n1.61711589e-01 1.82543427e-01 5.07678948e-02 1.49612442e-01\\n9.19030234e-02 -2.92015582e-01 1.21553643e-02 3.35533053e-01\\n-1.69637308e-01 -6.79307342e-01 1.57476097e-01 3.76132503e-02\\n2.14172587e-01 2.25301489e-01 -3.67257535e-01 -1.16482347e-01\\n-2.07625777e-01 -2.78943628e-01 1.31078884e-02 -3.58343661e-01\\n-1.48125097e-01 2.69722879e-01 2.37703398e-01 -1.75972492e-01\\n1.26580670e-01 -4.57638711e-01 -1.00809135e-01 -5.11167109e-01\\n1.91104919e-01 -6.12208128e-01 5.54144755e-02 -1.00510284e-01\\n7.08829999e-01 -3.40575218e-01 1.00435816e-01 1.65816382e-01\\n2.03736410e-01 1.53406292e-01 1.56337976e-01 -3.36327069e-02\\n-1.74086213e-01 -3.24465215e-01 -9.97988284e-02 -8.21223408e-02\\n4.25224513e-01 3.97322685e-01 -1.68422937e-01 8.55315924e-02\\n6.71281219e-02 -2.65000939e-01 -3.56881469e-01 -2.17421636e-01\\n-1.23896554e-01 -3.14893007e-01 -6.96699679e-01 -4.63148147e-01\\n-1.72815412e-01 -2.34709203e-01 -1.91978425e-01 5.38206398e-01\\n-2.78701812e-01 -3.20859969e-01 -1.33413717e-01 -4.51709777e-01\\n3.33022922e-01 -1.53675243e-01 4.10000309e-02 -1.53944343e-01\\n-1.85941800e-01 -4.30374920e-01 2.54016351e-02 -5.54592609e-02\\n-4.37332038e-03 -2.77075380e-01 9.21046883e-02 -6.93303943e-02\\n-3.13694090e-01 -4.95240599e-01 3.92009526e-01 4.74073328e-02\\n3.15733492e-01 1.35380626e-01 2.65357852e-01 3.71247120e-02\\n1.92722440e-01 -1.03749260e-01 -8.67616311e-02 -2.99365968e-01\\n5.29151969e-02 1.75539777e-02 4.98013020e-01 -2.28466108e-01\\n2.55658617e-03 1.17498092e-01 -1.93382338e-01 -5.84129319e-02\\n2.51751930e-01 -5.35873063e-02 5.77185676e-02 -1.34613261e-01\\n2.90714860e-01 -2.55263597e-01 -1.26494721e-01 2.92047728e-02\\n2.59835366e-02 5.07986128e-01 -2.43468513e-03 -3.82800400e-01\\n-8.08161199e-02 3.66509020e-01 7.45339468e-02 -1.45225316e-01\\n-1.83006600e-01 8.39193985e-02 -2.17867434e-01 2.39261657e-01\\n5.15408777e-02 -1.64540127e-01 -2.29773447e-01 -1.82121903e-01\\n-1.08271368e-01 2.98775941e-01 3.22215527e-01 1.09329663e-01\\n1.53602019e-01 -4.44152415e-01 -7.34024867e-02 7.91218802e-02\\n2.84286112e-01 3.97128284e-01 1.91652060e-01 -1.39215425e-01\\n-3.97816710e-02 2.69526422e-01 -1.74826443e-01 1.96339339e-01\\n-2.21781775e-01 8.22695866e-02 -5.58695555e-01 -2.56037623e-01\\n-1.59120634e-01 -3.90545487e-01 1.22377343e-01 3.42870682e-01\\n1.40801102e-01 -1.84223766e-03 1.89321861e-02 -4.57275093e-01\\n2.88402259e-01 6.42053410e-02 2.29534492e-01 8.58455673e-02\\n-1.84554607e-02 5.61042428e-01 1.62543394e-02 -1.79336697e-01\\n-1.31682813e-01 9.88753587e-02 -1.69198573e-01 -1.41539291e-01\\n1.27405729e-02 -3.71570319e-01 -1.26448467e-01 4.11238492e-01\\n8.17497522e-02 -2.77443200e-01 -7.41037875e-02 2.97010750e-01\\n-1.13847084e-01 -2.91001797e-01 -1.52642891e-01 1.53028831e-01\\n3.70776355e-01 1.10724024e-01 2.89724916e-01 -3.92672926e-01\\n-1.02335669e-01 -2.55021472e-02 -3.68471071e-02 4.27778333e-01\\n1.59778193e-01 -2.27624308e-02 -4.26833145e-02 -2.13100642e-01\\n4.61593091e-01 -1.84153840e-02 -7.85872042e-02 1.91462576e-01\\n6.75358698e-02 -1.53065979e-01 -4.50243682e-01 3.04173641e-02\\n6.63888529e-02 -2.39680350e-01 -2.20124647e-02 1.70551419e-01\\n1.39198795e-01 8.03344101e-02 -7.16826737e-01 -2.08054557e-01\\n-3.30649734e-01 -5.91741176e-03 2.47826595e-02 -5.19831538e-01\\n2.10495456e-03 -1.13316998e-01 -6.50403380e-01 3.30286503e-01\\n-1.60954162e-01 -1.30969658e-01 1.40842006e-01 3.89543511e-02\\n-2.80531913e-01 -3.93950529e-02 1.05912283e-01 2.49199778e-01\\n-2.90803313e-01 -1.24873683e-01 -4.07810062e-02 -1.01631951e+00\\n1.91796139e-01 4.11838070e-02 -9.21229124e-02 1.14617661e-01\\n-6.13707351e-03 -5.94015241e-01 9.94793624e-02 -3.29686642e-01\\n-2.61476696e-01 -1.23567693e-01 -2.25346312e-01 -3.79162490e-01\\n5.18245213e-02 9.82635468e-02 -1.31938979e-01 3.37846428e-01\\n-2.96242625e-01 4.77020830e-01 -1.43288046e-01 1.38059199e-01\\n5.30842654e-02 -2.63816446e-01 9.62098315e-02 -4.05801147e-01\\n-2.93627292e-01 -1.65735304e-01 -2.97372341e-01 -2.05642775e-01\\n-7.35597238e-02 -3.09970230e-01 -1.64156914e-01 2.66325884e-02\\n3.20716918e-01 1.47752553e-01 -1.89612404e-01 -2.52616256e-01\\n2.03697205e-01 -4.70825404e-01 2.58582145e-01 -1.30281612e-01\\n-1.42143101e-01 -1.20861411e-01 1.93868414e-01 6.79805428e-02\\n1.11656278e-01 -3.88162374e-01 2.20317066e-01 -3.91603768e-01\\n-2.92018712e-01 -1.03343338e-01 -2.65877764e-03 1.83103345e-02\\n3.24648619e-01 -4.34348047e-01 -4.57664728e-02 3.40545237e-01\\n1.66408002e-01 1.67666376e-01 2.70226002e-01 -1.14989400e-01\\n-9.81541798e-02 3.50530237e-01 -4.48177457e-01 1.50898606e-01\\n7.52198815e-01 1.41661942e-01 5.20799719e-02 2.50617087e-01\\n2.25755587e-01 2.14501858e-01 4.35126930e-01 1.04345866e-01\\n-1.01131074e-01 2.92828143e-01 2.62429267e-02 -4.61645782e-01\\n-7.12860152e-02 8.39600689e-04 -2.53942728e-01 -3.26342165e-01\\n5.91432989e-01 4.71831292e-01 -4.47428703e-01 -1.73880979e-01\\n-2.87123531e-01 -2.43999347e-01 5.16952462e-02 -5.39358482e-02\\n3.65191549e-02 -8.65401402e-02 4.94822294e-01 -1.00307070e-01\\n1.72979355e-01 5.26022196e-01 -1.37886599e-01 -2.93863803e-01\\n-7.97559917e-02 1.45789206e-01 -2.21098810e-02 5.04659414e-01\\n-1.87479019e-01 2.46961057e-01 1.47062510e-01 1.36397749e-01\\n-1.15569815e-01 3.75028281e-03 1.80923611e-01 1.17790774e-01\\n6.11785837e-02 8.44303742e-02 3.00855100e-01 3.56787562e-01\\n2.85775274e-01 3.76253217e-01 3.20327252e-01 1.50867611e-01\\n4.18718457e-01 5.19121706e-01 3.24094772e-01 9.17147323e-02\\n-1.01765350e-01 4.82655689e-03 1.78552255e-01 -2.58451011e-02\\n2.71547049e-01 3.67018402e-01 -1.10868737e-02 8.92138124e-01\\n3.87509882e-01 3.05710256e-01 6.43296957e-01 -5.97209752e-01\\n-4.10342485e-01 1.43775186e-02 3.83509666e-01 -3.93961608e-01\\n-2.63388604e-02 7.66617432e-02 -3.26835215e-01 1.79850996e-01\\n-4.87463355e-01 -2.09911868e-01 -5.33080846e-02 8.91814977e-02\\n1.38712702e-02 -8.63197818e-02 -2.45540172e-01 2.01887026e-01\\n-8.44345987e-02 -1.11882605e-01 -4.65583175e-01 -1.37784675e-01\\n-1.64606795e-01 -1.68378860e-01 1.46062756e-02 -9.51543823e-02\\n1.42295687e-02 -2.64233381e-01 -5.38926609e-02 6.24569505e-03\\n3.03685158e-01 -3.19231674e-02 -2.34521572e-02 -1.19935766e-01\\n2.13262051e-01 2.56157428e-01 6.11778259e-01 4.20768708e-02\\n1.34981886e-01 -1.90793008e-01 -1.83237538e-01 1.39544114e-01\\n1.32489577e-01 7.87343085e-02 3.68271470e-02 2.73792982e-01\\n-2.88671643e-01 -1.62073001e-01 2.16903105e-01 3.77520978e-01\\n-4.50663269e-01 9.90733430e-02 -9.30561125e-02 1.39128730e-01\\n1.12349756e-01 1.96363434e-01 -2.53986448e-01 4.36829291e-02\\n-1.68973282e-01 -4.76932734e-01 3.08549970e-01 -6.22392334e-02\\n-1.11431010e-01 5.04356362e-02 2.09884092e-01 1.28027290e-01\\n-2.92463154e-01 2.63274834e-02 -3.94295789e-02 9.88065451e-02\\n3.44387703e-02 3.32657993e-01 -2.48527974e-01 -2.94403315e-01\\n-2.20518678e-01 1.67468518e-01 -1.14233404e-01 1.34271413e-01\\n6.58756634e-03 3.51202190e-01 8.29012990e-02 6.29732460e-02\\n4.24099088e-01 -5.92073007e-03 -2.75072098e-01 -2.10236654e-01\\n-2.38847494e-01 -2.27773279e-01 -4.84563634e-02 -1.15021616e-01\\n2.87293017e-01 -3.59749645e-01 -1.00651443e-01 -8.34365636e-02\\n-1.59396157e-01 -3.40648502e-01 6.11006729e-02 -7.27929696e-02]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team Application Framework - The Application Framework Team is mainly responsible for the software framework used in the Avaloq Banking Suite (ABS) for the management of static data and technical business process execution. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Our frameworks process several millions of transactions (e.g. payments) each day and maintain all the static data of our customers. Your mission Drive the future architecture of Avaloq’s search engine Drive and enhance the core frameworks of Avaloq’s current and future products Understand the architectural big picture, support and consult our stakeholders – customers as well as internal business teams Constant self-development What you need University degree in Computer Science (ETH/University) or equivalent experience Solid understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Understanding of relational databases Strong communication abilities and customer-centric Proficient English language skills You will get extra points for the following Experience in PL/SQL and Java/JEE Basic understanding of framework development Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zürich Don’t be shy – apply! Avaloq Evolution AG Alina Tauscher, Talent Acquisition Professional Allmendstrasse 140 - 8027 Zürich - Switzerland www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " '[\"Writing\", \"Professionalism\", \"Management\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " '[\"PL/SQL\", \"Tooling\", \"Computer Science\", \"Search Engine Submission\", \"Analytics\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Wealth Management\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"E (Programming Language)\", \"Executable\", \"Software Engineering\", \"Static Data\", \"Agile Methodology\", \"Business Process\", \"Eclipse Process Framework\", \"Library For WWW In Perl\", \"Banking\", \"Relational Databases\", \"SQL And Java (SQLJ)\", \"Software Modernization\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " \"['English', 'Nuosu']\"],\n", + " ['14',\n", + " 'computer vision researcher/engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.17035726e-01 2.98950672e-01 4.69268471e-01 -8.73681381e-02\\n5.13036072e-01 -2.32685223e-01 -9.23216119e-02 4.52893853e-01\\n-1.51256517e-01 -3.85924488e-01 -1.29038885e-01 -2.83279926e-01\\n-1.48410395e-01 2.11731523e-01 1.44315660e-01 5.19022346e-01\\n2.31461331e-01 5.25986701e-02 -4.14509892e-01 4.25563246e-01\\n2.55281657e-01 -1.20303407e-01 -9.82607622e-03 6.96228087e-01\\n4.30570960e-01 -7.75224641e-02 1.63752076e-04 2.52568841e-01\\n-2.30209127e-01 -2.83672243e-01 4.30388540e-01 4.22238410e-02\\n-4.68100235e-02 -2.93774396e-01 2.47980967e-01 1.41149491e-01\\n-1.38741374e-01 1.42635778e-02 -7.47205615e-02 2.06415877e-01\\n-4.52843755e-01 -2.24439025e-01 6.93554580e-02 6.55850470e-02\\n-2.22362086e-01 -3.77025455e-01 7.77795464e-02 -1.31554663e-01\\n1.09198682e-01 2.04573702e-02 -4.84884441e-01 4.26645041e-01\\n-1.71004355e-01 -2.04200670e-01 2.15091631e-01 7.36515939e-01\\n-1.19348221e-01 -3.94073159e-01 -4.33158308e-01 -3.06488276e-01\\n6.11925498e-02 -6.40015304e-02 -1.07702546e-01 -2.96205521e-01\\n3.42325360e-01 1.88962460e-01 4.67698984e-02 2.44885057e-01\\n-8.20312381e-01 -3.87265794e-02 -2.01706007e-01 4.81296293e-02\\n-2.59279490e-01 -4.51870970e-02 -2.49911875e-01 -4.29616049e-02\\n2.61862669e-02 3.28220397e-01 -2.75706709e-03 -1.13586254e-01\\n-1.00859813e-01 2.41348118e-01 -1.68194652e-01 2.56577075e-01\\n2.52244443e-01 1.02597348e-01 5.05177006e-02 1.80174783e-01\\n-3.43042403e-01 4.66162294e-01 1.04678467e-01 -3.59962553e-01\\n2.50158787e-01 1.63952008e-01 5.99860132e-01 -3.50063369e-02\\n1.71416849e-01 1.54624537e-01 -2.67824054e-01 2.94125438e-01\\n2.07114294e-01 -3.15089941e-01 4.80773933e-02 7.66728446e-02\\n-1.03797056e-01 -9.48329642e-03 -2.62817871e-02 4.90246713e-01\\n-2.91256428e-01 4.74763781e-01 -4.97973477e-03 -2.51572549e-01\\n-1.20243795e-01 -6.41939759e-01 -1.61465555e-01 -3.94092500e-02\\n1.99101400e-02 2.41597831e-01 1.36434957e-01 1.76024035e-01\\n8.19128379e-02 3.46283941e-03 2.54528016e-01 1.07943833e+00\\n-4.74978276e-02 2.19425991e-01 -4.88763899e-02 3.17451477e-01\\n1.09287001e-01 -2.86467463e-01 2.79915065e-01 2.94623494e-01\\n9.02740806e-02 -1.03666246e-01 -2.18871728e-01 2.78379560e-01\\n-1.23671331e-01 -2.19239980e-01 -4.42984939e-01 2.40879551e-01\\n-1.01094805e-01 -5.26074290e-01 6.60579205e-01 6.65918812e-02\\n2.43507117e-01 -5.06290048e-02 -6.31391704e-02 -6.03117421e-02\\n-1.85745612e-01 4.29179281e-01 7.98044950e-02 1.25700444e-01\\n-3.91211689e-01 -2.43832901e-01 -1.88360050e-01 3.13123405e-01\\n-3.10419858e-01 1.55270413e-01 -2.15107098e-01 -9.91766900e-02\\n3.74924511e-01 -4.61854860e-02 -3.30940843e-01 2.53863722e-01\\n-8.42722133e-02 -1.06144980e-01 2.15888750e-02 3.25099051e-01\\n-1.53583959e-01 3.94235909e-01 -8.42127353e-02 -5.27715646e-02\\n6.07145429e-01 -1.24179669e-01 -9.34389886e-03 -2.17889622e-02\\n2.68143266e-01 -2.16556843e-02 2.08569229e-01 9.56408866e-03\\n-6.15173399e-01 3.03072274e-01 -9.67033301e-03 -1.28808171e-01\\n-1.89812426e-02 -1.50770172e-01 4.80305612e-01 -3.94290954e-01\\n-1.03656620e-01 -1.29369423e-01 -3.41768146e-01 -2.32338861e-01\\n-4.65267986e-01 1.07860398e-02 4.69927669e-01 -4.10198182e-01\\n-1.28028333e-01 1.11130029e-01 -5.40956616e-01 1.48593917e-01\\n2.22055227e-01 1.70908511e-01 5.23780510e-02 2.03228280e-01\\n-2.62902051e-01 -6.49345756e-01 2.99616326e-02 -4.17868018e-01\\n-2.92050630e-01 2.26886749e-01 -2.56252736e-01 3.12439144e-01\\n5.93406036e-02 1.57478601e-01 -1.19805880e-01 1.27759382e-01\\n-3.69976193e-01 -3.95558262e-03 1.56628564e-01 8.54282230e-02\\n2.45059311e-01 1.44087344e-01 -5.17318785e-01 4.20909405e-01\\n-1.69872984e-01 6.15544438e-01 1.32037446e-01 -7.80290425e-01\\n5.38011491e-01 2.18913257e-01 2.30872016e-02 -3.81047100e-01\\n6.64608538e-01 -2.96842813e-01 -8.71951208e-02 2.43682057e-01\\n-2.97810018e-01 -3.10044587e-01 3.14329803e-01 -1.78861514e-01\\n-4.45284724e-01 4.51129287e-01 2.24437565e-01 9.74128544e-02\\n3.34185094e-01 -2.74792314e-01 -9.54287946e-02 1.17172360e-01\\n-7.91442096e-02 -1.67034566e-01 -3.99761945e-01 -6.12472594e-02\\n-1.19446352e-01 -5.21925926e-01 -1.49382398e-01 -4.49620903e-01\\n-3.03322017e-01 -4.63432401e-01 -2.10357919e-01 3.39501858e-01\\n1.59859002e-01 2.23609418e-01 2.00472966e-01 -1.04117736e-01\\n-2.74799496e-01 -6.59818649e-01 1.66699700e-02 1.81827545e-01\\n4.61220860e-01 2.76945502e-01 -8.31258073e-02 -9.25879478e-02\\n9.44696367e-02 4.88944143e-01 -3.28413635e-01 -4.01173562e-01\\n1.97374448e-01 2.82761097e-01 1.72042437e-02 -7.39972815e-02\\n1.01915374e-01 4.48483855e-01 -3.16658735e-01 1.60660431e-01\\n-2.44935796e-01 -2.09203623e-02 2.55809188e-01 1.38096631e-01\\n-3.23692560e-01 -3.53398919e-01 -1.27130419e-01 2.08120540e-01\\n-5.86071849e-01 -2.63090163e-01 4.86389399e-01 1.83118522e-01\\n1.36989042e-01 1.27846720e-02 2.20300615e-01 -2.11982086e-01\\n-2.08984479e-01 -2.33670548e-01 9.24206227e-02 1.94163695e-01\\n-1.29334524e-01 1.83267817e-01 -2.30460256e-01 -6.19110167e-01\\n-3.11664462e+00 -8.05686489e-02 2.40369365e-01 -2.57464916e-01\\n1.99845284e-01 -1.67236015e-01 3.68043706e-02 5.56031652e-02\\n-2.45701179e-01 -4.36835177e-02 -1.75640821e-01 -2.28175640e-01\\n1.28585324e-01 4.19824183e-01 2.76018262e-01 2.79499978e-01\\n2.29533911e-01 -3.21284056e-01 -9.32058990e-02 3.88967812e-01\\n-1.05808645e-01 -6.90544009e-01 1.57541066e-01 -1.43830970e-01\\n2.53037781e-01 3.62953514e-01 -3.53361368e-01 -1.16188690e-01\\n-3.64477694e-01 -2.54562140e-01 1.25512600e-01 -2.35596702e-01\\n-2.10525855e-01 3.40823531e-01 2.59610951e-01 9.47993919e-02\\n1.01299398e-01 -2.90804386e-01 2.80938856e-02 -2.79148698e-01\\n4.27221134e-02 -7.32970715e-01 -1.23153806e-01 -1.70238465e-01\\n8.24480593e-01 -3.50483388e-01 1.98953375e-01 6.31885976e-02\\n2.66721308e-01 1.62735790e-01 -5.41404746e-02 -6.59445301e-02\\n-1.78531557e-01 -2.02568889e-01 -1.90270506e-02 -1.12433217e-01\\n5.36185861e-01 6.71329439e-01 -3.21810246e-01 -1.75951824e-01\\n-2.98887957e-02 -3.93124044e-01 -4.28649217e-01 -3.74091953e-01\\n-1.99111849e-01 -1.77761644e-01 -6.82059467e-01 -5.09291708e-01\\n-7.90584087e-02 -1.32311314e-01 -2.54362989e-02 4.18400735e-01\\n-4.89627481e-01 -4.16765243e-01 -1.30961195e-01 -3.26900691e-01\\n1.95419937e-01 -1.70527667e-01 4.63421494e-02 -1.91731706e-01\\n-2.90601790e-01 -6.19742751e-01 5.26644811e-02 -1.45708630e-02\\n-2.85831481e-01 -2.95991361e-01 -2.96030473e-02 -4.06513661e-01\\n-3.60997677e-01 -5.78343451e-01 4.20680821e-01 1.17324822e-01\\n2.53663510e-01 1.04385965e-01 2.01841578e-01 7.37298951e-02\\n4.07099336e-01 -2.18945354e-01 2.16421992e-01 -3.85481030e-01\\n2.07634687e-01 -8.27214643e-02 6.99065685e-01 -3.10044557e-01\\n4.16436829e-02 1.23935632e-01 -3.66222590e-01 -1.06458910e-01\\n3.23459417e-01 4.12419997e-02 2.66173277e-02 -3.91757667e-01\\n2.73531407e-01 -2.50116378e-01 -2.88912386e-01 9.36420783e-02\\n1.11825339e-01 6.94923341e-01 1.44878894e-01 -3.87016922e-01\\n-3.02916229e-01 4.62186098e-01 -1.78337350e-01 -1.24578826e-01\\n-1.62430316e-01 1.35538504e-01 -1.65623412e-01 2.25651890e-01\\n-3.40400338e-02 -1.27599478e-01 -2.11725861e-01 7.47528151e-02\\n-1.09188654e-01 4.49712068e-01 2.95329064e-01 -1.79079473e-02\\n-3.98830883e-02 -2.07589403e-01 -6.11220952e-03 2.19320729e-01\\n1.65379465e-01 2.36312494e-01 1.47323579e-01 -3.26535821e-01\\n2.31359038e-03 4.72231418e-01 -1.08700193e-01 1.65043876e-01\\n-8.77658129e-02 2.39165369e-02 -6.15838110e-01 -2.81858116e-01\\n-2.73304433e-01 -3.98407549e-01 1.80396557e-01 3.29735905e-01\\n2.34193671e-02 -5.51375486e-02 1.15594201e-01 -5.31719387e-01\\n3.51446956e-01 2.19529286e-01 2.89943606e-01 2.12635726e-01\\n-1.27256781e-01 5.19830585e-01 3.24322726e-03 -1.56378657e-01\\n-1.17015727e-01 1.15028493e-01 -2.46449217e-01 -2.13438272e-01\\n4.58797328e-02 -5.15485406e-01 -1.68101877e-01 3.96053702e-01\\n8.75024199e-02 -3.05238426e-01 -2.47520342e-01 2.48687923e-01\\n1.08888954e-01 -2.89398283e-01 -1.31661132e-01 -3.11982073e-02\\n3.66594195e-01 1.37463450e-01 2.14672402e-01 -5.54337919e-01\\n8.16373974e-02 -6.06036074e-02 -8.55693594e-02 5.26099205e-01\\n-1.55361697e-01 1.89293921e-02 -2.65763432e-01 -6.03662804e-02\\n4.94714826e-01 4.60771564e-03 1.00939848e-01 -1.33585691e-01\\n1.76304672e-02 -2.39504904e-01 -4.30469990e-01 1.48568928e-01\\n2.57115886e-02 -1.58681408e-01 -2.69363169e-02 1.01597466e-01\\n-1.56178856e-02 1.10882610e-01 -5.66456199e-01 -2.54446507e-01\\n-3.27419221e-01 -1.65805638e-01 4.71970998e-02 -4.02482361e-01\\n2.33576968e-02 -7.96365319e-04 -3.84800255e-01 2.05773667e-01\\n-1.38961568e-01 1.62390724e-01 2.97419995e-01 6.15580427e-03\\n-3.07163537e-01 -1.99907199e-01 1.97732031e-01 1.45531356e-01\\n-2.87392557e-01 -1.60337299e-01 -3.12978216e-02 -8.58383000e-01\\n1.22250281e-01 -5.62848784e-02 -1.40660793e-01 1.50318161e-01\\n-4.66634743e-02 -8.30350101e-01 -5.12366975e-03 -3.97481889e-01\\n7.47966208e-03 1.12342983e-02 -1.86315775e-01 -3.33870739e-01\\n2.03316540e-01 -6.97739720e-02 -2.82185525e-01 4.02151942e-01\\n-4.75812972e-01 2.96179771e-01 8.45623203e-03 3.39408368e-02\\n8.93906225e-03 -3.35583448e-01 1.17936119e-01 -4.32155669e-01\\n-3.21212411e-01 -1.03260376e-01 -2.06887782e-01 -1.16271682e-01\\n5.66127244e-03 -3.10035229e-01 -1.70412242e-01 1.35172933e-01\\n2.43972912e-01 1.57793611e-03 -7.74960741e-02 -2.41326675e-01\\n7.23817274e-02 -3.22606415e-01 2.72113848e-02 -1.32495180e-01\\n1.55225638e-02 -1.28486738e-01 8.37377086e-02 9.73379463e-02\\n1.17826730e-01 -4.44315046e-01 5.73109567e-01 -3.93524796e-01\\n-3.81249577e-01 2.63941567e-02 9.90944281e-02 -1.55426800e-01\\n4.97506231e-01 -4.34421390e-01 -3.75014804e-02 4.21753705e-01\\n-3.80420010e-03 7.13804811e-02 2.42156461e-01 -9.56681222e-02\\n-1.36319533e-01 1.16548315e-01 -2.54056096e-01 4.72206660e-02\\n8.50503027e-01 2.42869914e-01 2.20126867e-01 6.52963221e-02\\n2.96079069e-02 3.45052540e-01 3.37082207e-01 1.20170182e-02\\n-1.52402250e-02 1.40239865e-01 1.83024973e-01 -4.96655315e-01\\n-5.33501431e-02 -6.94211349e-02 -2.69478858e-01 -2.15938210e-01\\n6.06432021e-01 4.79145616e-01 -3.31203550e-01 -2.85751760e-01\\n4.18289453e-02 -2.83467680e-01 1.81734249e-01 -3.33805382e-02\\n-7.30824703e-03 -5.08453995e-02 5.55789828e-01 -2.62170862e-02\\n4.46782224e-02 5.25467277e-01 -3.12697500e-01 -3.10060531e-01\\n-1.29906146e-03 1.90938666e-01 -2.37996690e-02 3.50738943e-01\\n-1.88606516e-01 4.71172512e-01 -8.88439640e-02 3.75756659e-02\\n-6.07598461e-02 4.88347262e-02 2.34591424e-01 -5.57595529e-02\\n1.27587482e-01 2.25828946e-01 4.35720682e-01 6.12502158e-01\\n2.62493908e-01 5.41456521e-01 4.09565628e-01 2.96458881e-02\\n4.89281863e-01 6.08497739e-01 4.43592668e-01 1.79996565e-01\\n-3.35513093e-02 5.47011830e-02 1.00962996e-01 8.66869166e-02\\n5.50501227e-01 2.92941809e-01 1.17329955e-01 8.56596887e-01\\n4.33871657e-01 1.68664515e-01 6.44136250e-01 -6.90316856e-01\\n-4.56193000e-01 -7.34282052e-03 4.86049205e-01 -2.90933251e-01\\n-1.63291857e-01 8.41208026e-02 -1.85453236e-01 2.05263868e-01\\n-5.16638339e-01 -2.34654471e-01 -9.37795117e-02 1.81813508e-01\\n-1.97025724e-02 -2.60343519e-03 -1.31245568e-01 -2.34506503e-02\\n-1.80504769e-02 -8.03187788e-02 -5.10931611e-01 -1.85944736e-01\\n-3.30880016e-01 -3.24859589e-01 -7.22184703e-02 2.94357762e-02\\n-1.23180218e-01 -3.71969044e-01 -2.60714650e-01 8.44898596e-02\\n3.46218437e-01 -2.25244448e-01 -1.14703789e-01 -1.01280630e-01\\n1.00308761e-01 2.59002388e-01 6.15002155e-01 -3.57006229e-02\\n3.19671421e-03 -1.90056890e-01 -1.52256459e-01 5.67096099e-02\\n4.82882261e-02 6.62369654e-02 1.12943307e-01 4.19781297e-01\\n-4.79844213e-01 -9.58947092e-02 -8.10999796e-02 3.99318367e-01\\n-4.69480544e-01 -2.62536794e-01 -6.26483175e-04 1.70049429e-01\\n3.46633680e-02 8.46292675e-02 -1.98443308e-01 -4.66455780e-02\\n-1.45482197e-01 -5.42486072e-01 3.24805766e-01 -2.59422585e-02\\n-1.50893196e-01 8.07226170e-03 3.42955440e-01 1.82188049e-01\\n-3.40605043e-02 -4.14949097e-02 1.28683997e-02 3.83335680e-01\\n-1.65945645e-02 2.84696907e-01 -1.41138136e-01 -3.75340104e-01\\n-3.48357618e-01 2.42437959e-01 -1.62165910e-01 1.70202568e-01\\n-5.29040322e-02 1.96052790e-01 2.09912583e-02 1.68673500e-01\\n3.43007058e-01 -5.46199270e-02 -1.44290358e-01 -1.23735689e-01\\n-2.22008958e-01 -4.05785382e-01 -1.06713001e-03 -3.23196501e-02\\n1.27133757e-01 -3.18237513e-01 -6.69296011e-02 -1.51215389e-01\\n-1.03771403e-01 -2.42908493e-01 -2.10208684e-01 3.01287975e-02]]',\n", + " 'Your Responsibilities: You will be working on the core computer vision algorithms, focusing on cutting edge problems. You have extensive experience in Computer Vision with specialization in at least one of the following areas: Dense Mapping Design and implement advanced algorithms for reconstructing dense 3D models of large-scale indoor environments using depth sensors. 3D Scene Understanding Design and implement 3D scene segmentation algorithms based on depth, motion or texture data. Machine learning Detecting known objects and use priors to complete un-observed parts of the object. Your Qualifications:Expert knowledge in at least one area listed below: Fluent in C/C++ (programming and debugging) Experience working with OpenCV Knowledge of parallel computing, OpenCL, GPGPU is a plus Knowledge software optimization and embedded programming is a plus Your Education: MS in Computer Science or Electrical Engineering Ph.D. is preferred What we offer: Nice environment to deploy your enthusiasm for computer vision challenges and cutting-edge technologies Highly skilled team of researchers, scientists and engineers Flexible working hours Should you have any further questions, feel free to reach out to: hr@astrivis.com',\n", + " '[\"Research\", \"Enthusiasm\"]',\n", + " '[\"Nice (Unix Utility)\", \"Programming (Music)\", \"pH Meters\", \"Computer Science\", \"Texturing\", \"OpenCV\", \"Machine Learning\", \"Scale (Map)\", \"Computer Vision\", \"Component Object Model (COM)\", \"Knowledge Management Software\", \"Optimization Software\", \"Agile Edge Technologies\", \"OpenCL\", \"Embedding\", \"C (Programming Language)\", \"Electrical Engineering\", \"3D Modeling\", \"Parallel Computing\", \"Algorithms\", \"Mapping\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Software Plus Services\", \"Debugging\"]',\n", + " \"['English', 'Chuvash', 'Georgian', 'Azerbaijani']\"],\n", + " ['75',\n", + " 'sw engineer (agile mainframe ) m/f',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.26636463e-01 2.10628957e-01 2.84465164e-01 6.37625158e-02\\n5.39467454e-01 -1.21392220e-01 1.15199395e-01 3.36812019e-01\\n-5.75976707e-02 -2.83170789e-01 -9.42050070e-02 -9.40503404e-02\\n-1.01417877e-01 1.34217784e-01 7.30456933e-02 3.74632955e-01\\n1.59113988e-01 9.21894833e-02 3.80891971e-02 3.94355148e-01\\n8.58565569e-02 -4.12746193e-03 -1.67904630e-01 5.46193182e-01\\n3.73073459e-01 9.93920341e-02 -1.68208197e-01 5.40298559e-02\\n-2.41515607e-01 -2.29340911e-01 2.32184663e-01 8.98251683e-02\\n-1.37367249e-01 -3.47499758e-01 -9.35301185e-03 9.20443088e-02\\n-2.42355615e-01 -3.14567164e-02 -3.79332788e-02 2.75066774e-02\\n-3.14715564e-01 -2.59602875e-01 1.46165073e-01 5.58384508e-02\\n-1.64136633e-01 -8.45874995e-02 4.93196994e-02 -1.23905577e-01\\n-5.35298605e-03 1.10124357e-01 -7.59120762e-01 3.96511853e-01\\n-2.83883251e-02 -2.08601192e-01 1.43130943e-01 5.19782245e-01\\n-1.29480559e-05 -5.19415021e-01 -3.98740977e-01 -3.91187429e-01\\n7.99302235e-02 -1.19398490e-01 1.23875648e-01 -2.04913288e-01\\n4.87247437e-01 -3.59987020e-02 1.44062415e-01 4.29173350e-01\\n-8.26709390e-01 6.41477481e-02 -3.16131204e-01 -1.57567561e-02\\n-3.49309742e-01 8.44015256e-02 -2.18329325e-01 -7.70255225e-03\\n-7.39953294e-02 2.97399670e-01 5.82341179e-02 2.05062330e-01\\n-1.58152506e-01 2.63054073e-01 -7.20878318e-02 1.06743373e-01\\n3.79212499e-01 2.27894355e-02 2.25570530e-01 3.19952697e-01\\n-4.09716338e-01 5.18756509e-01 1.11034431e-01 -1.77088246e-01\\n2.16281056e-01 1.45551071e-01 4.65498418e-01 1.42365143e-01\\n1.44715652e-01 1.80644780e-01 -8.20263401e-02 1.85743809e-01\\n1.17970474e-01 -4.24350441e-01 -1.26853868e-01 -1.02573439e-01\\n-1.02459803e-01 -1.53654009e-01 2.90647130e-02 5.64251803e-02\\n-2.48591214e-01 4.20353234e-01 2.81242788e-01 -1.60383865e-01\\n-3.72704268e-02 -3.36907268e-01 -1.37168646e-01 5.34266457e-02\\n-1.20454237e-01 1.32194564e-01 4.01251674e-01 1.72609076e-01\\n2.19232351e-01 2.04841331e-01 1.79426774e-01 9.25525725e-01\\n1.80438012e-02 2.01930195e-01 -1.43018931e-01 2.81188220e-01\\n2.54375815e-01 -4.36652869e-01 1.37831137e-01 3.50209057e-01\\n8.89024511e-02 -1.40290394e-01 -1.39997080e-01 1.91146612e-01\\n-2.49176860e-01 -5.19372411e-02 -3.74173254e-01 9.16089043e-02\\n-1.52514443e-01 -5.42030036e-01 4.55138981e-01 8.92304778e-02\\n4.38752621e-01 1.90353543e-02 1.31884173e-01 -7.81891197e-02\\n-1.59114555e-01 4.40893203e-01 -9.53952596e-02 3.04185927e-01\\n-2.38668233e-01 -2.72479773e-01 -1.76859409e-01 3.32989484e-01\\n-1.05221309e-01 1.64238021e-01 -5.42511642e-02 -1.31401002e-01\\n2.87922651e-01 5.68413250e-02 -3.13029170e-01 7.08925277e-02\\n-1.34358525e-01 -3.02401572e-01 -2.65379548e-02 3.34239483e-01\\n1.27080649e-01 1.30934045e-01 1.70398373e-02 -3.26533318e-01\\n5.93673646e-01 9.44729075e-02 1.96764901e-01 -1.72478259e-01\\n3.72272462e-01 -2.49938056e-01 2.96299487e-01 1.07927948e-01\\n-6.64656281e-01 4.02092278e-01 1.47711471e-01 -2.02493072e-01\\n-2.35233232e-02 -1.40756384e-01 3.21386188e-01 -5.09317756e-01\\n-3.91785763e-02 -9.16757807e-02 -4.23266739e-01 -4.13239837e-01\\n-2.09319562e-01 1.08828619e-01 5.74527740e-01 -3.51246417e-01\\n-1.06323235e-01 2.90360637e-02 -4.30822611e-01 -1.65805876e-01\\n3.29118013e-01 -5.65944053e-02 4.34570089e-02 1.34839952e-01\\n-1.31234184e-01 -4.14747834e-01 -6.97320420e-03 -5.39081931e-01\\n-6.13172770e-01 -1.21600904e-01 -3.44848812e-01 2.12236360e-01\\n1.45456553e-01 -5.31010479e-02 -1.56100288e-01 6.86246008e-02\\n-2.86325276e-01 -8.50514397e-02 7.05847666e-02 -7.61720294e-04\\n2.59246230e-01 -7.64292926e-02 -3.34727615e-01 4.94935423e-01\\n-2.11657420e-01 6.08865976e-01 1.35274231e-01 -8.56843650e-01\\n5.46836376e-01 3.75382811e-01 4.61903075e-03 -4.03340667e-01\\n4.17271405e-01 -4.22482729e-01 -4.51971591e-02 1.25062346e-01\\n-1.42712519e-01 -2.96140760e-01 2.12374896e-01 -6.66801855e-02\\n-3.57976347e-01 5.88667572e-01 1.07419826e-01 1.27955645e-01\\n3.63146335e-01 -1.89560741e-01 -1.21355966e-01 9.28086787e-02\\n-8.11144039e-02 -1.76452875e-01 -2.62960255e-01 -8.66766274e-02\\n-6.93735331e-02 -4.23796684e-01 -1.33136272e-01 -3.98353755e-01\\n-4.12718467e-02 -3.98672402e-01 -4.52825338e-01 4.90612328e-01\\n7.59674385e-02 1.32226944e-01 -8.62541795e-02 -4.33090925e-02\\n3.38962162e-03 -7.40985990e-01 5.02257347e-02 1.29770249e-01\\n5.01134753e-01 3.42237830e-01 1.46174356e-01 -2.11917341e-01\\n2.81733219e-02 4.21723574e-01 -2.94162363e-01 -4.75465745e-01\\n4.91073318e-02 1.45042956e-01 -1.82376161e-01 -1.98923826e-01\\n7.47149885e-02 3.75893414e-01 -1.43509880e-01 1.00021586e-01\\n-1.26340002e-01 -2.51167957e-02 2.60324895e-01 -1.20444164e-01\\n-4.75775123e-01 -2.20304772e-01 -2.44618338e-02 3.15126181e-01\\n-3.94841820e-01 -2.67083287e-01 5.38591921e-01 1.90512076e-01\\n1.94824487e-01 1.42998427e-01 1.81478173e-01 -1.80936813e-01\\n-1.22266807e-01 -3.06919008e-01 3.96946631e-02 5.56218103e-02\\n2.64507104e-02 5.97114563e-02 -1.93702325e-01 -6.56499624e-01\\n-3.70092630e+00 -1.61576048e-01 -1.56681798e-02 -2.59254456e-01\\n2.99491376e-01 -8.34698454e-02 1.09748214e-01 -7.75774717e-02\\n-3.62621784e-01 1.68511733e-01 -2.12015554e-01 1.90964714e-02\\n-4.36212271e-02 1.81211740e-01 9.10189524e-02 1.78071558e-01\\n1.08741164e-01 -3.10175508e-01 -1.22504294e-01 3.01203907e-01\\n-1.70259550e-01 -5.61941922e-01 2.09651254e-02 -5.04408851e-02\\n2.28939712e-01 3.43595922e-01 -2.55892694e-01 -1.17712617e-01\\n-2.12170899e-01 -2.30776757e-01 -5.10789342e-02 -1.40879035e-01\\n-1.20904803e-01 3.25516939e-01 1.01262808e-01 -9.84317735e-02\\n2.13429183e-02 -2.94095129e-01 2.91337799e-02 -4.31746542e-01\\n-1.00104652e-01 -5.01268983e-01 5.83399720e-02 -1.61758557e-01\\n6.47356987e-01 -2.72547066e-01 2.29133531e-01 1.47692531e-01\\n1.97548434e-01 1.24217175e-01 -4.21963036e-02 -7.39524432e-04\\n-2.71803409e-01 -3.82305503e-01 -1.56825632e-01 -2.10828528e-01\\n5.81800640e-01 3.44996393e-01 -2.18962505e-01 3.57047422e-03\\n1.77392453e-01 -3.68026167e-01 -3.32788408e-01 -5.31613231e-01\\n-1.62289307e-01 -2.74633765e-01 -6.07501686e-01 -3.22980255e-01\\n-1.22333713e-01 -3.31974141e-02 -1.05635703e-01 6.09405756e-01\\n-2.62182415e-01 -5.04088879e-01 4.60765325e-02 -5.88038266e-01\\n8.10727403e-02 -1.24908671e-01 1.17259972e-01 1.25569617e-03\\n-4.17048842e-01 -4.64435965e-01 8.78396556e-02 -9.69971344e-03\\n-1.55926019e-01 -7.08667338e-02 1.21562243e-01 -6.78330287e-02\\n-3.51924628e-01 -2.57181853e-01 5.06426334e-01 6.61334097e-02\\n3.95965546e-01 1.13558471e-01 2.38863334e-01 2.00001761e-01\\n3.39263082e-01 -1.03198223e-01 2.54085641e-02 -5.10994256e-01\\n5.30638210e-02 1.51684433e-02 4.72679406e-01 -2.07475722e-01\\n2.57527595e-03 1.28750324e-01 -3.06348264e-01 -1.58437222e-01\\n4.20669198e-01 8.26357380e-02 1.64137959e-01 -1.31204233e-01\\n4.24859136e-01 -3.74789000e-01 -2.60734975e-01 2.05122873e-01\\n-2.81315856e-03 7.75256157e-01 2.44286552e-01 -2.93217450e-01\\n-2.59380281e-01 4.66147840e-01 -2.27562025e-01 -1.16340086e-01\\n-1.38225006e-02 1.06701136e-01 -8.08269829e-02 1.04684032e-01\\n-4.42157723e-02 -2.50644088e-01 -2.42989421e-01 -1.06523260e-01\\n2.03589466e-03 1.21185377e-01 1.12522759e-01 -1.89300328e-02\\n-1.96033075e-01 -2.58265972e-01 -2.13886186e-01 1.26292169e-01\\n3.19900036e-01 2.84289181e-01 1.65915743e-01 -2.33583033e-01\\n3.77939753e-02 1.56703174e-01 -1.30236045e-01 1.52125970e-01\\n-1.87049493e-01 1.50623307e-01 -3.88451397e-01 -2.73037314e-01\\n-1.75591573e-01 -3.19873273e-01 3.71986069e-02 2.58242071e-01\\n8.92357901e-02 -1.72977038e-02 6.17853962e-02 -5.80782712e-01\\n4.16706204e-01 1.05786202e-02 2.26461008e-01 1.12084813e-01\\n1.74365435e-02 3.40805590e-01 3.96405458e-02 -8.64335001e-02\\n-3.53167295e-01 1.17114745e-01 -6.39619604e-02 -1.99290991e-01\\n1.14261724e-01 -4.05909926e-01 -3.05467471e-02 2.33153313e-01\\n1.58405557e-01 -1.44701540e-01 -1.90584511e-01 2.86917359e-01\\n1.02378443e-01 -3.45362931e-01 -2.25436553e-01 -1.84043497e-01\\n1.64277479e-01 2.38892790e-02 2.02500194e-01 -3.36728185e-01\\n4.44756337e-02 9.54504982e-02 -8.68483633e-02 3.41115624e-01\\n2.08435971e-02 -6.68950155e-02 -5.21614589e-02 -2.19686791e-01\\n3.94329101e-01 -3.24801356e-02 -2.20381524e-02 -1.81708947e-01\\n1.65668622e-01 -2.56337702e-01 -5.79712808e-01 -8.96074697e-02\\n-5.33371754e-02 -2.12128818e-01 1.77704185e-01 1.45193085e-01\\n1.18491857e-03 1.75662383e-01 -4.76461977e-01 -2.79815435e-01\\n-3.99352849e-01 -1.82607144e-01 4.35646484e-03 -3.21978122e-01\\n9.21169892e-02 2.77992133e-02 -5.14892220e-01 1.31006062e-01\\n-3.93086582e-01 -4.63564359e-02 2.40267459e-02 2.97676455e-02\\n-4.18975025e-01 1.00628417e-02 9.35334116e-02 8.95410851e-02\\n-3.71560872e-01 -1.90971509e-01 7.47251287e-02 -7.22431600e-01\\n2.29809016e-01 1.52345479e-01 -2.99270507e-02 -4.89394441e-02\\n2.40301080e-02 -5.03880918e-01 2.46576101e-01 -3.53451878e-01\\n1.05643146e-01 -2.94224796e-04 -2.00207949e-01 -3.02336842e-01\\n1.11205854e-01 -1.94624558e-01 -3.00236583e-01 3.77448291e-01\\n-3.19098085e-01 4.67591435e-01 1.47342920e-01 -5.85888475e-02\\n-6.20756149e-02 -2.23317042e-01 1.60522729e-01 -3.57133895e-01\\n-4.22729671e-01 -1.13118291e-01 -3.91600251e-01 -1.09329261e-01\\n-1.67766809e-02 -2.30721906e-01 -1.07825160e-01 4.16142493e-02\\n2.99777567e-01 2.07700774e-01 -1.35300681e-01 -2.16852143e-01\\n1.13270558e-01 -4.34936911e-01 5.04793460e-03 -3.16317916e-01\\n-4.40897979e-02 -9.51865092e-02 1.97396651e-01 -1.59780785e-01\\n1.07489228e-01 -1.74074963e-01 3.79245073e-01 -2.53285855e-01\\n-2.11277202e-01 -1.72474571e-02 1.94452703e-01 -5.20351203e-03\\n2.19588071e-01 -5.60331643e-01 -1.41242445e-01 2.32945606e-01\\n1.11944437e-01 -3.68158780e-02 2.55304664e-01 5.58054969e-02\\n8.40046257e-02 3.05106014e-01 -5.28442562e-01 8.60770121e-02\\n5.67564309e-01 2.29052499e-01 -6.12851121e-02 1.98412493e-01\\n1.48041369e-02 5.97751558e-01 4.93765384e-01 6.74123839e-02\\n-2.27687787e-02 2.82213420e-01 1.51510999e-01 -6.45674169e-01\\n-1.21781655e-01 -1.79824546e-01 -2.10189402e-01 -2.54427433e-01\\n5.74785352e-01 3.63378823e-01 -5.35208583e-01 -2.91092247e-01\\n-6.99249804e-02 -2.49034226e-01 1.70037970e-01 -5.79049699e-02\\n7.31631219e-02 -2.44768590e-01 6.53882742e-01 1.12321135e-02\\n2.24240616e-01 6.07359052e-01 -5.83382994e-02 -2.50914633e-01\\n-1.12359829e-01 7.71462396e-02 1.66421369e-01 2.95562863e-01\\n-5.11290282e-02 2.48052478e-01 -7.53134340e-02 -2.01807395e-02\\n-2.74887495e-02 2.33387321e-01 8.37828144e-02 1.81906193e-01\\n1.48027182e-01 3.12036071e-02 3.89979482e-01 4.12594020e-01\\n1.17707275e-01 5.07520497e-01 2.27609754e-01 2.29477108e-01\\n3.18650872e-01 5.64797580e-01 2.81692654e-01 6.13408685e-02\\n8.22464079e-02 1.48373753e-01 6.84193969e-02 -1.40538529e-01\\n4.22954977e-01 4.43947226e-01 2.46044859e-01 9.08302248e-01\\n3.65534574e-01 2.80616790e-01 7.37166047e-01 -7.06651807e-01\\n-2.81617343e-01 1.21486790e-01 4.82529223e-01 -2.20186427e-01\\n-1.42838493e-01 1.61652744e-01 -2.48693734e-01 3.81675452e-01\\n-4.46367890e-01 -3.31994146e-02 1.61393415e-02 6.77345879e-03\\n1.44996688e-01 -1.05268389e-01 -1.28102064e-01 1.55145973e-01\\n-1.58532813e-01 -1.97255552e-01 -2.94382453e-01 -2.82131404e-01\\n-2.89074123e-01 -7.49421939e-02 -5.33932261e-02 1.88086201e-02\\n8.94927233e-03 -4.60938901e-01 -3.03833131e-02 5.24503328e-02\\n2.91428417e-01 -1.05347574e-01 -1.22994676e-01 -1.65662497e-01\\n7.95127675e-02 3.03836554e-01 4.89766508e-01 -2.00687215e-01\\n1.49067685e-01 -6.69544116e-02 -1.76765859e-01 6.44109249e-02\\n1.62172049e-01 -2.35723648e-02 4.57578711e-02 4.50154513e-01\\n-3.38859379e-01 -3.47833261e-02 2.06382200e-01 2.45431989e-01\\n-3.15121680e-01 -4.02895547e-02 -8.31258148e-02 3.63215774e-01\\n1.77332476e-01 2.15478852e-01 -2.76906550e-01 1.31419636e-02\\n-3.04861944e-02 -4.47059661e-01 3.78581613e-01 -9.31734890e-02\\n-1.89070687e-01 8.00442249e-02 2.43749246e-01 2.15236410e-01\\n-4.89193685e-02 -5.12335263e-03 -1.13563403e-01 3.96782756e-01\\n7.12029114e-02 3.22097212e-01 -1.97272062e-01 -4.78083223e-01\\n-1.90422386e-01 2.93416083e-01 -6.69633672e-02 1.48886636e-01\\n-1.36690557e-01 2.53827482e-01 1.22825794e-01 2.13939518e-01\\n1.64398924e-01 -3.92982662e-02 -3.83275628e-01 -2.61239707e-01\\n-2.89410770e-01 -1.82659477e-01 1.97581828e-01 5.80713619e-04\\n1.02864832e-01 -3.11528921e-01 -1.20212257e-01 -1.40085146e-01\\n-1.84322700e-01 -2.66929448e-01 -2.77319383e-02 1.14538446e-01]]',\n", + " 'Job Informationen REQUIREMENTS: - Ability to design, build and maintain applications using XP practices; - Excellent technical and interpersonal skills; - Able to understand our partners’ requirements and quickly resolve any potential issue both in the project as well as in the productive environment; - Able to communicate to and influence stakeholders; - Work with teams to influence the way they work; - Experience working in an Agile environment; - Expert in the following core technologies: - Operating System: Mainframe-ZOS; - Languages: COBOL, JCL, SQL; - Database: DB2; - Tools: iDZ; - Automated Unit Testing such as xUnit, JUnit or zUnit. - User of /or would like to learn the following technologies: - Test automation tools such as Fitness, JBehave or RSpec; - Experience in specification by example; - Continuous Integration; - Java or other OO languages. Benötigte Skills JAVA SQL JCL',\n", + " '[\"Communications\"]',\n", + " '[\"Automation\", \"Tooling\", \"Agility\", \"Unit Testing\", \"Junit\", \"Continuous Integration\", \"Maintainability\", \"Test Automation\", \"Building Design\", \"DB2 SQL\", \"Operating Systems\", \"Xunit\", \"Job Control Language (JCL)\", \"SQL And Java (SQLJ)\", \"Jbehave\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Rspec\", \"COBOL (Programming Language)\"]',\n", + " \"['English', 'Zulu', 'Navaho', 'Limburgish', 'Malayalam']\"],\n", + " ['99',\n", + " 'software engineer',\n", + " 'Eysins',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.quotientsciences.com',\n", + " '[[-1.67283162e-01 4.96382684e-01 4.73285615e-01 -3.95441093e-02\\n7.15354025e-01 -6.18053414e-02 5.90838194e-02 1.80678621e-01\\n-8.27328418e-04 -3.37114483e-01 -2.18784034e-01 -1.58189401e-01\\n1.52623206e-02 5.06034233e-02 2.28409559e-01 5.84479868e-01\\n2.51608580e-01 1.66614223e-02 -1.66437440e-02 4.06785816e-01\\n-6.73558787e-02 -1.67884827e-01 1.20005667e-01 6.37284100e-01\\n3.13242376e-01 -8.12849903e-04 -3.01359948e-02 -5.76268248e-02\\n-3.09288412e-01 -2.74816602e-01 4.40663099e-01 3.29021849e-02\\n-7.83144087e-02 -3.73824924e-01 1.08930394e-01 1.79451630e-01\\n-1.85445324e-01 1.28055304e-01 -1.78126425e-01 2.40898132e-01\\n-5.89650989e-01 -2.64039427e-01 7.97517747e-02 -1.03131890e-01\\n-3.34392726e-01 -3.88217837e-01 1.39606580e-01 -2.31899530e-01\\n1.11341067e-01 2.21235871e-01 -3.84487182e-01 3.55191052e-01\\n-4.07988071e-01 -2.70934194e-01 5.06339848e-01 5.72794139e-01\\n6.15819991e-02 -5.84330261e-01 -4.68150735e-01 -2.88958251e-01\\n1.22681923e-01 -6.50476888e-02 1.47600770e-01 -1.49397805e-01\\n3.15104038e-01 -9.98749509e-02 4.46192436e-02 2.78863698e-01\\n-6.97212040e-01 -1.29439145e-01 -3.69929761e-01 1.14065811e-01\\n-3.49062771e-01 -1.05505243e-01 -3.53100777e-01 -2.25138947e-01\\n-2.79875807e-02 4.16782022e-01 -1.44749507e-01 2.34315917e-02\\n-1.39191240e-01 4.35574681e-01 -2.01017037e-01 1.43315732e-01\\n3.08255732e-01 1.59997836e-01 3.94490868e-01 3.71993899e-01\\n-5.16115129e-01 3.85041445e-01 3.96353811e-01 -2.77292460e-01\\n2.07770273e-01 7.18651116e-02 3.30229253e-01 1.87326372e-01\\n-3.53857465e-02 2.16005147e-01 -2.13451192e-01 1.46659657e-01\\n1.86481237e-01 2.20601987e-02 -1.00690156e-01 6.19195076e-03\\n1.31012267e-03 -3.19163613e-02 -1.72947580e-03 2.76178092e-01\\n-4.15631890e-01 3.80885810e-01 1.95618063e-01 -2.89628297e-01\\n-1.42698929e-01 -5.80824733e-01 -2.10370094e-01 6.33820519e-02\\n-1.20050618e-02 1.27508745e-01 2.09431335e-01 2.51360834e-01\\n2.47809812e-01 -3.90639044e-02 1.85143441e-01 8.57120037e-01\\n2.29593422e-02 6.75428063e-02 -1.07030220e-01 3.60183030e-01\\n1.33770242e-01 -1.98120549e-01 4.20190096e-02 2.35998571e-01\\n-7.21413940e-02 -2.89273611e-03 -2.67424881e-01 3.36799145e-01\\n-1.72741249e-01 -2.47610480e-01 -2.52588511e-01 1.93755463e-01\\n-2.16580793e-01 -4.31534410e-01 4.68430281e-01 -1.90114602e-01\\n6.76211864e-02 -1.70918375e-01 -6.28996268e-02 4.93098721e-02\\n-2.82016397e-01 3.84538829e-01 2.14667886e-01 1.01979077e-01\\n-2.99329340e-01 -2.84333080e-01 -1.77723631e-01 2.62720913e-01\\n-1.51834592e-01 1.86395928e-01 -3.54028583e-01 -1.64308682e-01\\n3.25742811e-01 2.08727509e-01 -5.31035304e-01 3.02797854e-01\\n-1.36172830e-03 -1.84365958e-01 -2.54335344e-01 2.53711253e-01\\n-6.52396157e-02 1.13642119e-01 3.34032183e-03 -1.01220399e-01\\n5.95475554e-01 1.37235850e-01 2.92575777e-01 -1.20846368e-01\\n3.76828909e-01 -1.28077835e-01 2.47321457e-01 6.49513230e-02\\n-6.44647121e-01 4.44469839e-01 -1.82577640e-01 -1.04603253e-01\\n4.25479412e-02 2.02265009e-02 5.31656384e-01 -3.12031657e-01\\n-1.11082554e-01 -2.75638402e-01 -3.28261137e-01 -5.08254468e-01\\n-8.10283944e-02 -4.24229763e-02 3.78612876e-01 -3.64559412e-01\\n-5.32455631e-02 2.15527326e-01 -7.24871457e-01 -7.97624514e-02\\n3.85937512e-01 2.35226005e-01 1.63823038e-01 1.63700417e-01\\n-1.44805267e-01 -6.02992654e-01 1.59879178e-01 -5.34337342e-01\\n-2.90672660e-01 1.37909099e-01 -2.17367843e-01 6.82096481e-02\\n-1.17913559e-02 3.04325819e-02 -4.39064689e-02 4.63327318e-02\\n-2.95871615e-01 -1.32496711e-02 1.52611867e-01 -2.64245179e-02\\n1.01892352e-01 1.13051072e-01 -4.70750362e-01 5.16115248e-01\\n-2.02063397e-01 4.04750526e-01 7.94736594e-02 -9.69350219e-01\\n5.03957987e-01 2.29500964e-01 -1.11463163e-02 -3.07611734e-01\\n5.91374516e-01 -3.56890380e-01 -8.50174204e-02 1.68656290e-01\\n-2.67049938e-01 -1.69523910e-01 2.77892292e-01 -1.67215213e-01\\n-3.24622005e-01 5.91055214e-01 1.15860440e-01 3.96384932e-02\\n3.08249563e-01 -1.01169541e-01 -1.09347917e-01 -4.04855609e-03\\n-8.63071755e-02 -2.03987453e-02 -4.55997586e-01 1.56496204e-02\\n-4.17355932e-02 -5.50188541e-01 -2.11021900e-01 -4.30515110e-01\\n-1.81023523e-01 -4.42410886e-01 -2.66065687e-01 9.48991179e-02\\n4.56364453e-02 1.18560277e-01 4.24885983e-03 1.21486619e-01\\n-2.12956052e-02 -8.45426083e-01 -7.96089992e-02 1.65583566e-01\\n1.92681685e-01 4.71878022e-01 2.18870610e-01 -1.10170893e-01\\n-8.90544280e-02 3.70567292e-01 -3.46888751e-01 -2.09043488e-01\\n2.47652262e-01 4.48090397e-02 -7.02936798e-02 -1.68070421e-01\\n1.14390329e-01 3.30983073e-01 -2.21414745e-01 1.18749730e-01\\n4.06400003e-02 -1.79618075e-02 3.52299511e-01 -1.07650585e-01\\n-3.03789884e-01 -1.78014934e-01 -1.18170142e-01 2.61042535e-01\\n-6.36415780e-01 -1.78278878e-01 5.25998831e-01 6.65154159e-02\\n3.08961291e-02 3.27643275e-01 3.56017798e-01 -7.01261908e-02\\n-3.34032208e-01 -2.03804418e-01 2.29282916e-01 1.38755873e-01\\n1.61493286e-01 -3.57251838e-02 -2.43090749e-01 -6.85398400e-01\\n-3.36590719e+00 -2.27977782e-01 1.61804214e-01 -3.20039481e-01\\n3.04907292e-01 -3.26754376e-02 2.63678521e-01 6.74046725e-02\\n-4.25667435e-01 2.55601481e-02 -1.76507935e-01 -1.29918844e-01\\n6.98243529e-02 3.32497895e-01 9.73022506e-02 9.07275453e-02\\n7.39738420e-02 -3.95802706e-01 7.48599693e-02 4.51745003e-01\\n-1.51159942e-01 -8.91585350e-01 1.35872159e-02 2.97283512e-02\\n1.60224333e-01 1.03656694e-01 -5.86426854e-01 -3.37138437e-02\\n-2.74967313e-01 -1.87939823e-01 8.74861106e-02 -4.47235852e-02\\n-2.94496089e-01 2.28376254e-01 8.54830891e-02 -1.12324983e-01\\n-2.13490855e-02 -2.79905170e-01 -6.16475232e-02 -6.68594241e-01\\n1.27968386e-01 -7.22252607e-01 5.30232862e-03 -3.13416570e-02\\n4.86633956e-01 -9.97365266e-02 2.40852326e-01 1.50363609e-01\\n1.39815211e-01 2.13297471e-01 1.13651454e-01 -8.13508872e-03\\n-1.95934355e-01 -2.19100252e-01 -1.27989277e-01 -8.76261517e-02\\n6.99163318e-01 3.76516491e-01 -3.27294528e-01 -1.84754550e-03\\n6.28733784e-02 -3.56785595e-01 -4.52331334e-01 -2.76319563e-01\\n-2.30234861e-01 3.18514295e-02 -7.09605217e-01 -4.17568296e-01\\n-1.58655375e-01 -2.18184695e-01 -9.87968445e-02 7.75923133e-01\\n-3.75988603e-01 -3.34090531e-01 -9.81640667e-02 -6.01580977e-01\\n1.40054092e-01 -2.70387918e-01 4.93498845e-03 -2.79449672e-01\\n-3.61586243e-01 -3.52262735e-01 3.09144408e-01 8.34799930e-02\\n-2.16312572e-01 9.06404033e-02 1.16812818e-01 -1.15260594e-01\\n-3.89930755e-01 -5.81773877e-01 4.28370357e-01 7.18084946e-02\\n3.61614108e-01 -3.77777740e-02 3.13419729e-01 -3.83485220e-02\\n5.09930313e-01 -1.59920976e-02 8.59928802e-02 -5.62680304e-01\\n-8.70154873e-02 -2.05737203e-02 7.11441338e-01 -2.34437749e-01\\n-4.87223454e-02 1.74908474e-01 -2.07855225e-01 -2.89404392e-01\\n4.85346377e-01 -2.22759005e-02 1.86039239e-01 -3.06634158e-01\\n3.08273584e-01 -4.84438568e-01 -2.25648656e-01 9.60651413e-02\\n7.29645267e-02 7.78930962e-01 2.44732909e-02 -4.17339504e-01\\n-1.43703416e-01 3.12684953e-01 -1.91466644e-01 5.49326204e-02\\n-1.14602178e-01 2.99004167e-02 -1.62621632e-01 3.82111520e-01\\n7.57742673e-02 -1.53777748e-01 -2.65014112e-01 6.90416917e-02\\n-7.91388154e-02 1.61529616e-01 2.57426709e-01 1.59676507e-01\\n-7.79743344e-02 -2.99858272e-01 -1.12044632e-01 1.72875032e-01\\n1.53421715e-01 3.65172386e-01 1.51879251e-01 -3.79622549e-01\\n1.58237927e-02 2.26691976e-01 -2.57052600e-01 3.30407172e-01\\n-1.41537011e-01 1.48903772e-01 -5.12566447e-01 -9.72853824e-02\\n-2.82519251e-01 -2.72215515e-01 6.81637675e-02 3.29897344e-01\\n1.69731855e-01 -1.33052677e-01 1.19581856e-01 -5.29412985e-01\\n2.96477467e-01 1.48529842e-01 1.75442964e-01 1.10479176e-01\\n-5.50859310e-02 6.96975112e-01 -1.19051998e-02 -1.97875157e-01\\n-1.88725302e-03 8.35982114e-02 -2.07555592e-01 -1.98839322e-01\\n1.11030713e-01 -3.98029923e-01 -8.53429921e-03 4.88453090e-01\\n1.61343187e-01 -4.92162742e-02 -1.55689403e-01 3.33499938e-01\\n4.95009050e-02 -2.77789384e-01 -2.44411871e-01 -2.30552368e-02\\n4.43329699e-02 2.95744333e-02 2.91405320e-01 -4.89995062e-01\\n5.18030189e-02 -7.42126107e-02 6.93076029e-02 3.44546229e-01\\n2.35428400e-02 1.20333031e-01 -1.22529328e-01 -1.13325737e-01\\n4.36666250e-01 9.03463215e-02 -7.92455971e-02 -1.70062520e-02\\n1.87160149e-01 -2.65449584e-01 -5.07697880e-01 -3.45288999e-02\\n-1.14432283e-01 -1.71996027e-01 1.13041736e-01 1.51635790e-02\\n1.86537549e-01 2.14096736e-02 -4.26688641e-01 -1.13187924e-01\\n-2.85175920e-01 2.51499843e-02 -1.81716532e-01 -5.95246792e-01\\n-7.07061365e-02 4.16523144e-02 -5.74558139e-01 2.22292379e-01\\n-5.76059008e-03 -3.85601185e-02 1.76665425e-01 2.27065086e-01\\n-2.69160718e-01 -2.66150981e-01 1.50380164e-01 1.52548440e-02\\n-2.77740210e-01 -1.76942214e-01 -3.68021950e-02 -9.36817467e-01\\n2.31606722e-01 -6.28801808e-02 -1.94569543e-01 3.97571847e-02\\n-1.22179888e-01 -7.56654739e-01 2.09525630e-01 -3.79736274e-01\\n-2.27010787e-01 6.01732954e-02 -2.26237684e-01 -3.40690017e-01\\n7.33671710e-02 -1.24778397e-01 -2.90580541e-01 3.12682569e-01\\n-3.61994475e-01 5.77859223e-01 4.40651514e-02 8.52059051e-02\\n1.41486144e-02 -2.04577833e-01 1.49629980e-01 -2.91375935e-01\\n-4.61250693e-01 -7.70405680e-02 -2.75184125e-01 -3.02751869e-01\\n-7.05734566e-02 -1.75870180e-01 -2.23107040e-01 1.50369853e-01\\n4.01551872e-01 7.57903755e-02 -1.26894414e-01 -1.27012551e-01\\n-1.98444575e-02 -3.85478348e-01 1.54525787e-01 -2.57370502e-01\\n1.39345258e-01 -8.13426226e-02 3.94687921e-01 5.22590708e-04\\n2.64045089e-01 -2.67956823e-01 6.32379532e-01 -1.34969652e-01\\n-3.37119460e-01 -1.68911383e-01 1.19579807e-01 1.14029787e-01\\n4.38407272e-01 -4.84939933e-01 2.94002555e-02 2.85366863e-01\\n-1.13274679e-01 3.18405926e-02 2.24106148e-01 -1.83181569e-01\\n-1.61934376e-01 -9.30105988e-03 -6.15322053e-01 2.19566286e-01\\n6.99552119e-01 2.61645257e-01 1.61991939e-01 1.27732232e-01\\n1.01735376e-01 3.68169546e-01 6.19638860e-01 -1.00752927e-01\\n-1.65866062e-01 3.33156466e-01 7.69180432e-02 -5.56725144e-01\\n-2.86869675e-01 4.59007779e-03 -1.54584095e-01 -3.91991764e-01\\n6.35518789e-01 1.88641161e-01 -4.09015238e-01 -3.64251018e-01\\n-2.77176917e-01 -2.79904515e-01 2.76747167e-01 -5.32844290e-03\\n3.55964079e-02 -1.61833435e-01 6.24098659e-01 5.12679070e-02\\n3.42268229e-01 4.98422861e-01 -5.81675135e-02 -3.33056957e-01\\n5.39596900e-02 1.99790031e-01 4.30069258e-03 2.69510180e-01\\n5.29400678e-03 1.61001727e-01 1.95755623e-02 1.97789967e-01\\n-2.26976275e-01 -1.50916949e-01 1.14374436e-01 1.20383270e-01\\n7.07988888e-02 2.09514692e-01 6.24804974e-01 4.26409602e-01\\n2.15460166e-01 3.52721870e-01 2.75899053e-01 2.86861062e-02\\n5.20019054e-01 6.54697418e-01 2.92867571e-01 4.55033174e-03\\n1.26852065e-01 2.82500923e-01 1.35589138e-01 -5.10333804e-04\\n4.33821231e-01 4.51742291e-01 1.26192093e-01 8.27383220e-01\\n7.43306652e-02 3.70451123e-01 7.68658519e-01 -6.19583428e-01\\n-3.18684846e-01 7.70748928e-02 6.30156457e-01 -4.34582114e-01\\n6.87476946e-03 2.27544695e-01 -1.26900107e-01 2.92407632e-01\\n-5.30891657e-01 -1.48756430e-01 3.55412550e-02 -5.42347208e-02\\n2.24938225e-02 -1.57012284e-01 -1.12404890e-01 -2.40950156e-02\\n-1.66813850e-01 -1.49871975e-01 -2.09899873e-01 -3.25569928e-01\\n-2.51107574e-01 1.11149378e-01 -4.22187746e-02 -1.73717663e-01\\n-3.39396968e-02 -3.10252637e-01 -1.27170131e-01 -8.64047259e-02\\n2.56068021e-01 -1.57345891e-01 -1.95944652e-01 -3.99634242e-02\\n1.51886046e-01 1.73659250e-01 7.09538043e-01 -7.05268085e-02\\n1.20836891e-01 -1.66058779e-01 -1.73461422e-01 7.13922083e-02\\n1.63114458e-01 1.64563686e-01 6.52934685e-02 6.67771041e-01\\n-3.23297441e-01 -1.01821534e-01 8.80909488e-02 3.58815104e-01\\n-2.65383244e-01 -2.23928201e-03 -6.07998855e-02 8.19014534e-02\\n-8.21686909e-02 8.73030797e-02 -2.14701787e-01 -2.82162726e-02\\n-1.36687919e-01 -5.65336287e-01 4.02833879e-01 -1.28295660e-01\\n-3.13870877e-01 -6.42627757e-03 3.26349437e-01 3.45629752e-01\\n-1.57253563e-01 -3.78518030e-02 -1.02381997e-01 1.22643121e-01\\n8.03345293e-02 4.92935359e-01 -1.89984858e-01 -2.59463370e-01\\n-3.32633823e-01 2.66296923e-01 3.80577892e-02 1.66840926e-01\\n-8.88827369e-02 2.90821284e-01 7.16807917e-02 6.53435439e-02\\n3.55444521e-01 -1.56623036e-01 -2.89584488e-01 -3.11671942e-01\\n-1.53793246e-01 -1.34443194e-01 1.05127253e-01 -1.44648746e-01\\n2.45508015e-01 -3.53670835e-01 -4.27128226e-02 -2.88287520e-01\\n-1.39551595e-01 -3.97719026e-01 -2.17192456e-01 1.82976108e-02]]',\n", + " 'Quotient is recruiting for a Software Engineer to join the IT department team based in Eysins. The Software Engineer will define, develop, test, analyze and maintain manufacturing software applications in support of the achievement of business requirements. Participate actively in the implementation and support of Manufacturing information systems solutions Participate in the definition, development, and documentation of software’s business requirements, objectives, deliverables, and specifications in collaboration with internal users and departments and as per our project methodology Write, code, install and analyse software programs and applications throughout the full lifecycle of system implementation (from requirements/design through to deployment and support) Design, run and monitor software testing on new and existing programs for the purposes of correcting errors, isolating areas for improvement, and general debugging Develop interface of MES system to ERP, PLC and other 3rd party system Develop and execute software verification plans following quality assurance procedures Develop and maintain IT documentation, user manuals and guidelines as well as train key users to operate new or modified programs Provide support for Manufacturing Software applications (Incident management and problem resolution) and develop further the manufacturing systems support Knowledge base Ensure timely issue identification, resolution, and appropriate escalation Collaborate with suppliers, internal project and IT team, internal management, and customer project teams and management Research, advice and implement technologies for Digital Factory transformation (Industry 4.0) Qualifications Engineering Diploma (EPF/HES or equivalent) in Computer Science, Information Systems, Industrial Engineering or equivalent Minimum 2 years experience on a similar role Programming skills in NET; C# and SQL language and ability to quickly learn new software/applications Must be a team player and an effective communicator, to enable communication with a wide range of stakeholders and cultures Experience of Manufacturing Information systems (Manufacturing Execution Systems, labelling and Enterprise Resource planning) in the medical devices or pharma industry is a strong asset SLDC and validation experience of enterprise applications is considered an asset Ability to work under pressure, meet deadlines and respond flexibly Excellent spoken and written French. Good English required Videos To Watch',\n", + " '[\"Writing\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Quality Assurance\"]',\n", + " '[\"Development Testing\", \"Systems Implementations\", \"Enterprise Application Software\", \"Knowledge Base\", \"Industry 4.0\", \"Programming (Music)\", \"Computer Science\", \"Mobile Application Software\", \"System Support\", \"Industrialization\", \"Enterprise Resource Planning\", \"Activism\", \"Installation\", \"Maintainability\", \"Resource Planning\", \"Software Manufacturing\", \"Executable\", \"Software Engineering\", \"Simatic S5 PLC\", \"Business Requirements\", \"Medical Devices\", \"MFG/Pro (ERP)\", \"C# (Programming Language)\", \"Digitization\", \"Incident Management\", \"Systems Development\", \"Industrial Engineering\", \"Transformation (Genetics)\", \"Factorials\", \"Software Testing\", \"Manufacturing Execution System (MES)\", \"Debugging\", \"Information Systems\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'software engineer (fullstack) m/f',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.24605471e-01 2.35792488e-01 3.50674033e-01 2.72700526e-02\\n4.90457684e-01 -2.46626914e-01 -5.21922745e-02 3.01519960e-01\\n-7.77062848e-02 -4.58634794e-01 -4.64866422e-02 -7.19136149e-02\\n1.41388196e-02 1.56943202e-01 7.98797086e-02 2.02310681e-01\\n2.62977749e-01 1.65971562e-01 -1.81603163e-01 2.57941931e-01\\n-5.46078756e-02 -1.21250704e-01 1.67568903e-02 5.81306398e-01\\n1.42599940e-01 7.44664893e-02 -3.12827304e-02 2.98494138e-02\\n-3.49539220e-01 -1.25316903e-01 1.95216924e-01 1.55999428e-02\\n-8.56181681e-02 -3.73535842e-01 -8.48868191e-02 3.22658084e-02\\n-3.81886624e-02 7.70482644e-02 -1.01356395e-01 1.46026403e-01\\n-3.66570562e-01 -3.00119489e-01 2.02613756e-01 3.58491503e-02\\n-1.53632417e-01 -2.05142394e-01 1.55590579e-01 -9.49693471e-03\\n1.75400659e-01 4.54362519e-02 -5.49875081e-01 2.49443144e-01\\n-2.25326911e-01 -2.13893041e-01 3.26802254e-01 3.48924875e-01\\n5.00399359e-02 -4.25346047e-01 -3.57175618e-01 -1.64575070e-01\\n1.68628339e-02 -1.50747091e-01 -8.30788165e-03 -2.38605842e-01\\n4.48649079e-01 8.27829316e-02 5.43667786e-02 3.03924561e-01\\n-8.00301909e-01 5.94547279e-02 -1.60441324e-01 4.94198687e-03\\n-4.36797321e-01 -1.12399012e-01 -1.72479913e-01 -1.62552848e-01\\n-1.19267173e-01 2.83322364e-01 7.66915008e-02 1.30577758e-01\\n-1.46320080e-02 2.90099263e-01 -1.31645635e-01 1.45017684e-01\\n1.76305041e-01 1.88088268e-01 1.51320174e-01 2.94285208e-01\\n-3.80012721e-01 3.94938469e-01 1.71205491e-01 -1.36783183e-01\\n2.23714992e-01 1.90685645e-01 4.23567891e-01 8.00922699e-03\\n3.80187258e-02 2.48215199e-01 -2.20471099e-01 3.00102770e-01\\n1.00541331e-01 -2.80173272e-01 -4.33754548e-02 -6.86982423e-02\\n-1.47362787e-03 -2.08937917e-02 -3.46811339e-02 2.43524253e-01\\n-2.69600511e-01 3.61232311e-01 1.08226396e-01 -1.83949396e-01\\n-4.39675748e-02 -3.62533242e-01 -1.92990795e-01 1.72278076e-01\\n-8.61325935e-02 1.00862779e-01 2.33746082e-01 4.81819138e-02\\n1.80200592e-01 1.63338423e-01 2.32209176e-01 9.50801373e-01\\n-1.44107074e-01 7.49656036e-02 -2.77453333e-01 3.41957659e-01\\n2.92942911e-01 -3.11042964e-01 9.86343846e-02 3.00305426e-01\\n2.07038790e-01 -3.01441345e-02 -1.37751445e-01 2.98282564e-01\\n-5.86738773e-02 -1.18939020e-01 -3.08576375e-01 1.17867090e-01\\n-2.18959987e-01 -2.32117042e-01 4.14739907e-01 1.07232906e-01\\n1.89380676e-01 4.97175455e-02 7.42520317e-02 -1.05704792e-01\\n-1.70774892e-01 2.89947361e-01 -3.90568525e-02 2.93861955e-01\\n-3.68492991e-01 -1.74878746e-01 -1.70071989e-01 2.87071586e-01\\n-1.17349543e-01 1.09323360e-01 -2.00096220e-01 -1.29100814e-01\\n3.46003234e-01 1.30378470e-01 -3.29628259e-01 1.27818942e-01\\n-1.05009310e-01 -1.31713226e-01 -1.12614468e-01 2.20942378e-01\\n-4.32991274e-02 2.29747102e-01 -6.90119267e-02 -8.56924206e-02\\n2.79044092e-01 2.91531552e-02 1.15330711e-01 -7.86843151e-02\\n3.85661066e-01 -1.86259449e-01 1.20102689e-01 1.91183820e-01\\n-5.71777999e-01 3.70674103e-01 -1.12332128e-01 -1.36234075e-01\\n1.03117414e-01 6.66463599e-02 2.82770485e-01 -1.51215926e-01\\n-3.34882401e-02 -1.16774976e-01 -4.89195257e-01 -3.93387437e-01\\n-2.56202698e-01 6.97855130e-02 3.94398838e-01 -4.02268499e-01\\n-1.95884228e-01 2.22033903e-01 -3.36705863e-01 -1.51137169e-02\\n1.18485346e-01 1.49535924e-01 -4.51240763e-02 -2.47501582e-02\\n-2.69324094e-01 -4.84288126e-01 -6.53767511e-02 -3.96606505e-01\\n-4.02603477e-01 1.02688491e-01 -2.88938344e-01 2.31069386e-01\\n9.87272039e-02 -1.42977685e-02 -6.57303855e-02 1.17500544e-01\\n-1.87472165e-01 -9.70985815e-02 1.78337067e-01 4.77569737e-03\\n2.93884814e-01 -6.89004138e-02 -3.36164206e-01 4.38773602e-01\\n-2.33316347e-01 3.33888859e-01 1.38489619e-01 -7.11892784e-01\\n4.80490804e-01 2.72375464e-01 -5.10299997e-03 -3.02045465e-01\\n4.04416144e-01 -3.11632842e-01 -4.48470488e-02 1.55473799e-01\\n-3.53522003e-01 -1.33211508e-01 2.01538861e-01 -7.69464821e-02\\n-2.23029539e-01 5.07081330e-01 8.29666108e-02 -1.78595856e-02\\n3.61967236e-01 -3.53160709e-01 -2.76765861e-02 1.31961212e-01\\n-1.85547024e-01 -1.84699878e-01 -3.48035574e-01 -8.42533708e-02\\n-9.21207368e-02 -4.43612486e-01 -1.88697040e-01 -3.04210335e-01\\n-1.02625571e-01 -1.84355468e-01 -2.48895392e-01 4.71187770e-01\\n2.99641967e-01 1.33694112e-01 -7.07919616e-03 3.63945514e-02\\n-1.01618469e-01 -6.41330242e-01 -7.08548352e-02 1.03563927e-01\\n3.67320567e-01 2.72804916e-01 1.46955535e-01 -4.93881516e-02\\n-3.97910513e-02 3.46663684e-01 -3.45312357e-01 -3.81293714e-01\\n-1.47620831e-02 2.47718692e-01 -1.50401592e-01 -1.56966388e-01\\n1.14186883e-01 3.89926255e-01 -1.30922168e-01 6.47133216e-02\\n-1.97017230e-02 -8.37122649e-02 2.90619195e-01 -1.37548923e-01\\n-4.07833368e-01 -2.78625637e-01 5.17133400e-02 2.40662977e-01\\n-5.29676974e-01 -7.92694539e-02 5.67658901e-01 2.07346544e-01\\n2.02312306e-01 1.88934445e-01 8.16133171e-02 -1.95104122e-01\\n-1.37098268e-01 -2.53854334e-01 9.17403698e-02 1.93501920e-01\\n2.00451747e-01 -2.30468214e-02 -9.60684419e-02 -6.53514802e-01\\n-4.09446764e+00 -1.45639494e-01 7.63313696e-02 -1.76984563e-01\\n2.12446183e-01 -1.20542161e-01 6.93006366e-02 -9.31682438e-02\\n-2.42192000e-01 5.84066734e-02 -1.50894359e-01 2.56798305e-02\\n1.02842592e-01 3.52982014e-01 -4.55155261e-02 2.63725519e-01\\n8.09116066e-02 -1.27480373e-01 -7.22381547e-02 4.14806128e-01\\n-4.58634458e-02 -6.79855108e-01 4.80473563e-02 -9.10020471e-02\\n2.23326907e-01 2.19641536e-01 -3.80964428e-01 3.01166475e-02\\n-1.73336208e-01 -2.34584436e-01 5.39045222e-02 -1.40656754e-01\\n-2.29383856e-01 1.95177913e-01 1.17010005e-01 -1.47003219e-01\\n7.36555532e-02 -1.80208966e-01 8.85467455e-02 -3.55997890e-01\\n1.05586194e-01 -5.14980495e-01 -7.39612281e-02 -1.02456070e-01\\n6.14297092e-01 -3.16156358e-01 1.52301162e-01 1.06118590e-01\\n1.67037949e-01 2.30938181e-01 -7.57253692e-02 -4.37466651e-02\\n-8.73185992e-02 -2.92413861e-01 -1.61585197e-01 -3.14579159e-01\\n5.28667927e-01 5.20147681e-01 -2.28293851e-01 8.84603187e-02\\n4.52497825e-02 -3.88702333e-01 -3.04586023e-01 -3.64276320e-01\\n-1.44583076e-01 -1.86536923e-01 -6.36405349e-01 -4.45421189e-01\\n-7.42380098e-02 -1.86127611e-02 -8.85074362e-02 4.68297511e-01\\n-3.25570017e-01 -6.13113999e-01 8.44143182e-02 -6.71948373e-01\\n1.11391880e-01 -1.25453487e-01 7.18368292e-02 -1.33640245e-01\\n-2.65900314e-01 -4.95505273e-01 1.35090306e-01 6.96742460e-02\\n-1.68579549e-01 -3.01842485e-02 7.77150095e-02 -1.99424371e-01\\n-2.48260573e-01 -3.17580968e-01 3.67707849e-01 -1.11353537e-03\\n2.32096300e-01 1.64909735e-01 2.97640085e-01 4.33797427e-02\\n2.74870157e-01 -7.04641193e-02 2.72777677e-02 -4.30708408e-01\\n6.58744127e-02 -1.31898776e-01 5.12929499e-01 -2.81683475e-01\\n2.01799558e-03 2.55510360e-01 -1.16428398e-01 -1.77420288e-01\\n4.33482558e-01 8.89140889e-02 1.74263511e-02 -7.87025616e-02\\n2.66444713e-01 -4.04224634e-01 -1.99179411e-01 2.27218494e-01\\n-6.12920523e-02 5.23230970e-01 2.74981670e-02 -3.87890726e-01\\n-3.17481548e-01 4.32068378e-01 -6.38035089e-02 -7.05217421e-02\\n9.13174730e-03 1.12511471e-01 -1.70653746e-01 2.50539720e-01\\n2.68412009e-02 -2.06721246e-01 -2.40818709e-01 -5.32387244e-03\\n4.98554558e-02 1.67121962e-01 2.24705413e-01 1.95688643e-02\\n-1.30466923e-01 -2.57297307e-01 -1.05094768e-01 1.25803024e-01\\n1.38037190e-01 3.52362901e-01 6.58268183e-02 -2.44220391e-01\\n-8.52385387e-02 2.55793750e-01 -1.30464196e-01 1.43185034e-01\\n-1.40016869e-01 9.43701193e-02 -3.74488115e-01 -2.32729241e-01\\n-1.90757126e-01 -1.97717294e-01 -3.15865278e-02 2.34731629e-01\\n1.57775998e-01 2.52855942e-02 8.57646689e-02 -4.06255066e-01\\n2.23813280e-01 5.93041927e-02 1.17565893e-01 1.22311167e-01\\n2.45984062e-03 3.97634625e-01 5.50202979e-03 -1.50110096e-01\\n-1.22130118e-01 4.44475748e-03 -1.62203282e-01 -1.57190412e-01\\n4.68857586e-02 -4.25616652e-01 -5.60809858e-02 2.33158410e-01\\n1.14213303e-01 -1.11738741e-01 -2.72326559e-01 2.71634728e-01\\n1.05799906e-01 -2.06222311e-01 -2.01017335e-01 3.38234752e-02\\n2.49744743e-01 6.75658360e-02 2.87110656e-01 -3.93085331e-01\\n-1.36054426e-01 6.60276487e-02 -6.65096119e-02 2.87271440e-01\\n3.58893424e-02 1.23215459e-01 -1.91144764e-01 -1.65244609e-01\\n3.94477099e-01 2.07209066e-02 -1.31112874e-01 -1.52195811e-01\\n-6.23822771e-02 -1.22946173e-01 -4.08657312e-01 7.53349066e-02\\n-1.72873680e-02 -1.94264531e-01 4.65675145e-02 -2.19214782e-02\\n9.78830382e-02 9.40494314e-02 -2.88055748e-01 -1.96976215e-01\\n-3.37254971e-01 -1.78404436e-01 -3.39505784e-02 -2.60993242e-01\\n1.11545175e-01 -4.54428121e-02 -5.12780964e-01 1.52724996e-01\\n-2.96986789e-01 -3.26598436e-02 9.10019428e-02 1.43532991e-01\\n-4.11095917e-01 -6.22439086e-02 1.47069126e-01 2.53865838e-01\\n-2.42980272e-01 -2.55354702e-01 3.12472973e-03 -8.19453955e-01\\n2.30123490e-01 -1.03391834e-01 -8.37849155e-02 -5.33658527e-02\\n-1.07105367e-01 -5.55086493e-01 1.30089879e-01 -4.67314214e-01\\n-6.08804710e-02 -1.86855495e-02 -1.32168889e-01 -2.77468234e-01\\n3.77165340e-02 -1.95552945e-01 -3.38158965e-01 3.50805640e-01\\n-3.94212008e-01 3.74013156e-01 -7.10030273e-02 2.51254141e-02\\n1.51733877e-02 -2.43722439e-01 1.95162758e-01 -2.33255461e-01\\n-4.28392440e-01 -1.21079758e-01 -2.88539350e-01 -1.48490086e-01\\n3.88728902e-02 -2.14048550e-01 -2.73025811e-01 1.63121954e-01\\n2.64159203e-01 1.62821606e-01 -1.24055482e-01 -2.87269533e-01\\n1.01968534e-01 -4.20646250e-01 4.11941344e-03 -2.12983370e-01\\n-7.00106099e-03 2.46367827e-02 3.67615640e-01 -6.56137317e-02\\n6.94840997e-02 -2.75272191e-01 5.09144068e-01 -8.54992494e-02\\n-3.56597036e-01 -1.24356203e-01 -1.29099526e-02 1.17997155e-01\\n2.31095165e-01 -4.13730800e-01 9.39262286e-02 1.97188899e-01\\n1.04093470e-01 4.66152690e-02 1.34095922e-01 5.27140014e-02\\n-1.34677265e-03 1.41863719e-01 -3.30207318e-01 1.19930059e-01\\n6.92589700e-01 7.97097757e-02 1.01137422e-01 2.00868085e-01\\n1.27643138e-01 4.07713473e-01 4.70270187e-01 4.39304598e-02\\n-1.48898199e-01 2.64981866e-01 1.69689357e-01 -2.96786308e-01\\n-5.82247004e-02 -1.99823026e-02 -1.57524377e-01 -2.83756405e-01\\n4.84893709e-01 3.85078847e-01 -4.26022440e-01 -2.86312252e-01\\n3.48963439e-02 -1.46888584e-01 2.95680493e-01 -1.89230502e-01\\n-1.37512079e-02 -3.37664127e-01 4.58775014e-01 5.31211942e-02\\n2.30930835e-01 5.14405727e-01 -1.90611541e-01 -3.37608725e-01\\n-9.04862583e-02 1.88599750e-01 2.00673461e-01 4.19423670e-01\\n-1.10537745e-01 1.44784436e-01 -1.65112749e-01 1.41425759e-01\\n-7.22330138e-02 2.25811079e-01 1.20973565e-01 1.37906671e-01\\n2.01754838e-01 1.84795201e-01 3.96430314e-01 4.93051231e-01\\n2.45534718e-01 4.46048319e-01 2.42097095e-01 1.15484804e-01\\n3.58219445e-01 5.87702632e-01 2.96486467e-01 -6.69525191e-02\\n2.98098661e-02 1.35471553e-01 1.63806483e-01 -1.38408944e-01\\n3.21353674e-01 3.74957591e-01 2.55250692e-01 8.18364322e-01\\n2.68075347e-01 1.70309827e-01 7.30905116e-01 -5.57820201e-01\\n-3.13421577e-01 1.31759383e-02 4.82031107e-01 -2.30523303e-01\\n-8.60635713e-02 2.17911780e-01 -2.44417444e-01 2.20278844e-01\\n-5.35482645e-01 1.03289820e-02 -2.93969382e-02 -7.23026469e-02\\n1.60103604e-01 -7.41779059e-02 -1.88917041e-01 1.23574142e-03\\n-6.79145455e-02 -6.56515639e-03 -3.11970979e-01 -1.59253836e-01\\n-2.31774867e-01 -4.03383607e-03 -9.26175416e-02 -9.16105509e-02\\n1.31659908e-02 -4.72722799e-01 -1.58997834e-01 -3.81107517e-02\\n3.99967700e-01 -6.28668889e-02 -1.87699795e-02 -1.31051421e-01\\n1.20034955e-01 1.74168438e-01 5.42354345e-01 2.66046673e-02\\n5.73972836e-02 -7.12310448e-02 -1.82270437e-01 -6.39045471e-03\\n7.31409043e-02 2.71846652e-02 2.75375620e-02 2.34320655e-01\\n-3.71793270e-01 -2.08537802e-02 1.49314150e-01 3.37141901e-01\\n-2.33530968e-01 -8.51985663e-02 -2.24765353e-02 3.51820856e-01\\n7.03752860e-02 4.55144979e-02 -1.32993087e-01 6.88968077e-02\\n-1.67165384e-01 -4.56075549e-01 3.57999116e-01 -1.71138987e-01\\n5.51913492e-02 9.04867351e-02 1.05975471e-01 1.45606413e-01\\n-1.97752029e-01 5.59895718e-03 -3.21914628e-02 1.63666427e-01\\n-1.20122107e-02 3.86949003e-01 -2.12271377e-01 -1.84116364e-01\\n-1.73825040e-01 1.70030266e-01 4.66979444e-02 -5.69188433e-06\\n-2.00273633e-01 4.17718768e-01 3.34502347e-02 1.67236298e-01\\n1.73760399e-01 7.28849974e-03 -2.31685683e-01 -1.56191319e-01\\n-3.33486497e-01 -1.44333690e-01 1.05485007e-01 4.31993268e-02\\n2.06188917e-01 -3.09337348e-01 -3.71767431e-02 -2.85545527e-03\\n-4.57971357e-02 -2.82329828e-01 -3.94500233e-02 -1.79164838e-02]]',\n", + " 'Job Informationen ABOUT THE POSITION: As a Full Stack Software Engineer at our company, you build scalable, reliable, secure and maintainable software from end to end. You will shape and implement products for our customers as well as our internal tooling. Together with your team, you are going to constantly improve existing features, reliability and scalability of our system. You take the opportunity to mentor your colleagues. REQUIREMENTS: – Experience with service oriented architecture and distributed systems – Experience with relational and document oriented Databases – Experience with Docker, Kubernetes on GCP and/or AWS – Fluency in Python, modern JavaScript and another language – Plus: Experience with React and/or developing SPAs – Bachelor or Master degree in Engineering field Benötigte Skills Python JavaScript Softwarearchitektur',\n", + " '[\"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"Document-Oriented Databases\", \"Docker (Software)\", \"Tooling\", \"Google Cloud Platform (GCP)\", \"Kubernetes\", \"Python (Programming Language)\", \"Maintainability\", \"JavaScript (Programming Language)\", \"Scalability\", \"Service-Oriented Architecture\", \"Software Engineering\", \"React.js\"]',\n", + " \"['English', 'Nyanja']\"],\n", + " ['100',\n", + " 'machine learning software engineer',\n", + " 'Zürich',\n", + " 'Research & Development',\n", + " '',\n", + " '[[-3.22625816e-01 3.33112717e-01 4.52924252e-01 3.52539010e-02\\n5.47838271e-01 -2.28002280e-01 -4.55991998e-02 3.76447380e-01\\n-8.65315795e-02 -3.89616251e-01 -1.97276026e-01 -2.42429733e-01\\n-6.10692427e-02 6.09999672e-02 1.51485503e-01 4.84913617e-01\\n2.86018014e-01 5.01429364e-02 -1.70546263e-01 4.25948262e-01\\n1.52440473e-01 -1.16547421e-01 -4.21427041e-02 7.02703238e-01\\n3.97897035e-01 2.84451880e-02 -9.25158933e-02 -8.14431608e-02\\n-3.22459817e-01 -2.54069686e-01 4.96454418e-01 -2.93471888e-02\\n-7.62540922e-02 -3.94513547e-01 1.69230118e-01 1.29330114e-01\\n-2.46572852e-01 -5.82617000e-02 -9.77169126e-02 2.90166229e-01\\n-4.27152514e-01 -1.96198508e-01 -2.82067284e-02 -2.92064212e-02\\n-2.65888572e-01 -3.69894207e-01 8.80088434e-02 -6.96070641e-02\\n1.70499042e-01 8.48460495e-02 -5.95553875e-01 2.93091565e-01\\n-3.02707642e-01 -2.86939681e-01 3.41132373e-01 6.21420264e-01\\n9.08176154e-02 -5.71678102e-01 -4.96494740e-01 -3.24884951e-01\\n7.03406483e-02 9.75353550e-03 8.61043483e-02 -2.72167832e-01\\n3.07714283e-01 6.11423664e-02 6.87452182e-02 4.06307071e-01\\n-7.75700331e-01 -2.15553865e-01 -1.80246487e-01 1.52545571e-01\\n-3.49744111e-01 -9.42434371e-03 -2.53751338e-01 -1.56496242e-01\\n-1.12890601e-01 4.82029557e-01 -4.96412739e-02 1.22485615e-01\\n-1.47245184e-01 3.42353135e-01 -1.57667965e-01 2.43411422e-01\\n2.42252216e-01 1.89640567e-01 3.09183240e-01 3.39900255e-01\\n-3.73832405e-01 3.77201796e-01 2.10184962e-01 -2.64790326e-01\\n2.48795301e-01 1.47673965e-01 3.98199379e-01 7.19643682e-02\\n1.48380280e-01 1.42484277e-01 -3.09018791e-01 1.70877129e-01\\n1.43355414e-01 -1.86620682e-01 8.37099329e-02 -7.72920549e-02\\n-4.52560745e-03 6.16421103e-02 5.07850498e-02 2.76695848e-01\\n-4.03555274e-01 4.33569670e-01 6.79393709e-02 -2.33502015e-01\\n-1.00413144e-01 -6.80732846e-01 -3.22376713e-02 6.12462200e-02\\n5.32555953e-02 8.80275890e-02 2.36167192e-01 1.87875181e-01\\n2.73943275e-01 -8.78051519e-02 2.61031806e-01 8.17635596e-01\\n-4.72094193e-02 -2.46806070e-02 -2.18415201e-01 3.30004036e-01\\n7.83068985e-02 -2.46936068e-01 2.15660959e-01 1.87187701e-01\\n-2.24956647e-02 -6.70873970e-02 -2.21952885e-01 3.63291711e-01\\n-1.47620559e-01 -2.31677026e-01 -2.61106193e-01 2.65189320e-01\\n-5.98174408e-02 -4.15055931e-01 5.56283593e-01 -4.33514379e-02\\n2.03015715e-01 -1.35415614e-01 2.55813971e-02 -1.40815333e-01\\n-8.98338407e-02 2.52024114e-01 9.21302661e-02 1.23844974e-01\\n-2.89417446e-01 -3.49989027e-01 -2.00177819e-01 1.58439115e-01\\n-2.45057851e-01 1.26774803e-01 -6.29183054e-02 -7.21169040e-02\\n2.74072617e-01 6.64618015e-02 -4.47570652e-01 2.10469663e-01\\n-7.21503794e-02 -8.29077959e-02 -8.59995261e-02 2.75797486e-01\\n-2.93421507e-01 2.53080964e-01 -1.57044441e-01 -1.31311998e-01\\n6.18529856e-01 6.30268902e-02 2.67122507e-01 8.32424909e-02\\n3.32832456e-01 -1.82992935e-01 2.35399798e-01 7.28355795e-02\\n-6.47379160e-01 3.39924604e-01 -6.96159676e-02 -1.76996276e-01\\n1.50788009e-01 -6.52457848e-02 4.02419806e-01 -3.99301708e-01\\n4.23512980e-02 -1.76762283e-01 -3.77013922e-01 -3.90612781e-01\\n-1.38292208e-01 -4.55253012e-03 3.48626733e-01 -3.35274756e-01\\n-1.02410972e-01 1.31237820e-01 -5.66043854e-01 -1.37590781e-01\\n2.25182906e-01 1.69641361e-01 1.34779394e-01 1.64307356e-01\\n-1.70788884e-01 -5.86933851e-01 3.75177041e-02 -5.14832139e-01\\n-3.32851887e-01 1.17516086e-01 -2.80529946e-01 2.38662899e-01\\n-9.71932895e-03 -5.29624112e-02 -7.08406717e-02 1.13725357e-01\\n-3.20554852e-01 -5.60691878e-02 2.03177035e-01 9.17061977e-03\\n2.70829022e-01 1.08943351e-01 -3.45430225e-01 4.56163943e-01\\n-1.87294394e-01 5.38919091e-01 1.47070587e-01 -8.31342936e-01\\n5.59469223e-01 3.13948721e-01 -5.58733344e-02 -3.43235254e-01\\n4.79274243e-01 -4.00877506e-01 -5.58704808e-02 1.51772663e-01\\n-3.87377858e-01 -2.80476034e-01 2.53800601e-01 -2.78361291e-01\\n-2.81463563e-01 5.75637341e-01 9.14451554e-02 1.07370883e-01\\n3.37154686e-01 -1.80153221e-01 -1.20615274e-01 8.44265372e-02\\n-7.07583949e-02 -1.86067492e-01 -5.26866555e-01 2.87042018e-02\\n-4.82162461e-02 -5.52793741e-01 -2.08381623e-01 -3.32626224e-01\\n-1.99947551e-01 -2.82925427e-01 -2.52881765e-01 2.00756013e-01\\n2.04420000e-01 9.10955071e-02 1.83544904e-02 2.61773653e-02\\n-1.15250438e-01 -5.92531860e-01 1.62904970e-02 8.11954439e-02\\n3.75394076e-01 3.38145077e-01 8.01910013e-02 -5.57595566e-02\\n3.50869820e-02 5.96170545e-01 -3.52658510e-01 -2.73097456e-01\\n1.67413682e-01 1.10639408e-01 1.00669228e-02 -1.16643965e-01\\n9.56830382e-02 2.59241343e-01 -2.37467945e-01 9.81889442e-02\\n-6.57907873e-02 -7.92741776e-04 3.36579531e-01 -1.05198823e-01\\n-1.93985954e-01 -1.51368320e-01 -1.36361450e-01 1.82038486e-01\\n-5.21708310e-01 -1.60981879e-01 5.31008303e-01 1.46147728e-01\\n2.23285288e-01 1.87725797e-01 2.13452756e-01 1.77565049e-02\\n-3.58698726e-01 -2.85638541e-01 1.79310322e-01 1.36921391e-01\\n9.31749642e-02 9.06088427e-02 -2.25700848e-02 -6.66758299e-01\\n-2.77519655e+00 -1.10337332e-01 1.66860580e-01 -3.29161227e-01\\n2.17140377e-01 -9.32429284e-02 1.44879431e-01 2.86290012e-02\\n-3.74704540e-01 -4.20185365e-02 -1.38717085e-01 -2.31251165e-01\\n1.41163275e-01 3.19540918e-01 1.53108388e-01 1.79332823e-01\\n1.77289650e-01 -3.01470816e-01 -4.21848670e-02 3.64568651e-01\\n-1.51831150e-01 -7.21845388e-01 1.70545086e-01 -1.09993899e-02\\n2.53006727e-01 3.03034425e-01 -5.17640531e-01 -2.71943510e-02\\n-2.79538572e-01 -2.09871501e-01 8.48889276e-02 -2.38223538e-01\\n-2.32455939e-01 3.75519812e-01 1.09415308e-01 -7.56478831e-02\\n2.76149791e-02 -3.55870277e-01 -1.13731958e-01 -5.31487942e-01\\n1.60500422e-01 -6.68777049e-01 2.65172422e-02 -1.69474214e-01\\n6.86714292e-01 -2.70088643e-01 2.14812130e-01 1.82247490e-01\\n2.10063368e-01 1.25926048e-01 3.93582284e-02 6.15160465e-02\\n-2.85141230e-01 -2.71826684e-01 -1.28897922e-02 -2.36822098e-01\\n5.38971186e-01 4.65720236e-01 -1.80322409e-01 4.98766750e-02\\n2.25087598e-01 -3.34879756e-01 -4.40528959e-01 -2.62675107e-01\\n-1.88246936e-01 -1.56823218e-01 -6.92398310e-01 -4.13495183e-01\\n-1.30033582e-01 -1.74239069e-01 -1.02006376e-01 6.72174275e-01\\n-2.98293412e-01 -2.59953916e-01 -4.24452405e-03 -5.75410008e-01\\n1.99369133e-01 -1.94201767e-01 1.08116962e-01 -2.30487645e-01\\n-2.14138508e-01 -4.74923044e-01 1.33092105e-01 1.00157000e-02\\n-1.93718731e-01 -1.62506729e-01 -1.77620798e-02 -1.71441704e-01\\n-3.43611836e-01 -5.86036921e-01 3.44925344e-01 1.20492041e-01\\n3.96972626e-01 4.69363779e-02 3.34340870e-01 -1.11382455e-02\\n3.60106289e-01 -3.13037038e-02 6.22436777e-03 -3.70883584e-01\\n1.79541141e-01 8.82214960e-03 5.56302130e-01 -2.44292930e-01\\n1.27780493e-02 7.05853626e-02 -2.82580554e-01 -1.36823833e-01\\n3.88727278e-01 -2.23391242e-02 6.19570166e-02 -1.66202426e-01\\n2.05229357e-01 -4.58747149e-01 -1.30375311e-01 1.65230200e-01\\n4.43131179e-02 6.77523375e-01 -4.16008942e-02 -4.21186328e-01\\n-1.83238894e-01 3.16430569e-01 -6.59267008e-02 -8.21967870e-02\\n-7.46318474e-02 9.77431089e-02 -2.15143725e-01 1.91480279e-01\\n3.06648500e-02 -1.66869521e-01 -2.76122332e-01 -7.78544247e-02\\n-1.46408796e-01 3.23852718e-01 2.02291578e-01 1.14144728e-01\\n-5.57592325e-02 -3.83589447e-01 -9.61961821e-02 2.08677620e-01\\n2.09923089e-01 4.64028478e-01 1.69972360e-01 -1.89862594e-01\\n4.54692133e-02 3.93027455e-01 -1.45257831e-01 2.45924011e-01\\n-3.09919655e-01 1.75551698e-01 -5.66761136e-01 -2.70698786e-01\\n-2.71877080e-01 -3.03254485e-01 1.16155580e-01 3.76809895e-01\\n1.51557207e-01 -1.68129764e-02 9.53474641e-02 -3.95244837e-01\\n2.83897728e-01 5.20509332e-02 1.40660033e-01 8.00021589e-02\\n-3.94861028e-02 5.74023128e-01 5.09581864e-02 -2.03370988e-01\\n-7.99093693e-02 -4.69647944e-02 -1.80905282e-01 -3.05113494e-01\\n9.87422466e-02 -4.90737885e-01 -1.66682899e-01 4.42647755e-01\\n1.23492286e-01 -1.92200273e-01 -1.95188433e-01 2.18507081e-01\\n4.89884876e-02 -2.89364845e-01 -3.24387193e-01 4.84060012e-02\\n2.61976510e-01 4.68968824e-02 2.73760647e-01 -5.56879044e-01\\n-1.26709258e-02 -2.56102979e-02 1.69508532e-02 4.04951125e-01\\n2.11294182e-02 6.09982572e-02 -2.00466603e-01 -1.17686883e-01\\n5.97051084e-01 -6.98316693e-02 -5.69114387e-02 6.60267025e-02\\n1.42910182e-01 -1.70416787e-01 -4.80897933e-01 5.22442907e-02\\n-9.41925347e-02 -1.21526226e-01 2.41203755e-02 8.53441432e-02\\n1.65352017e-01 7.04902634e-02 -4.88290489e-01 -1.86702341e-01\\n-2.39456803e-01 -4.94838655e-02 -1.20175853e-02 -4.62429106e-01\\n-4.89787236e-02 -8.33494663e-02 -6.09166503e-01 2.25659162e-01\\n-1.58647880e-01 -3.67948674e-02 2.66746104e-01 3.21435146e-02\\n-2.80413896e-01 -1.56015754e-01 3.99671681e-02 2.17584133e-01\\n-3.43022466e-01 -3.79607767e-01 4.60075289e-02 -9.84329522e-01\\n2.25995094e-01 -6.46049902e-03 -1.35461912e-01 8.05633217e-02\\n-1.11532092e-01 -7.15237141e-01 1.51123598e-01 -4.37641591e-01\\n-8.37169439e-02 8.60385597e-04 -2.95032054e-01 -3.49341452e-01\\n9.68855023e-02 -1.02252796e-01 -3.19345236e-01 3.00913244e-01\\n-3.52333456e-01 3.30781519e-01 -1.37406647e-01 5.24273142e-02\\n2.41376664e-02 -2.55426466e-01 1.65821537e-01 -3.01188260e-01\\n-3.95204961e-01 -1.82450891e-01 -2.64464259e-01 -3.27495158e-01\\n-3.50806713e-02 -2.43990958e-01 -5.17659411e-02 4.33811322e-02\\n3.10863435e-01 1.02716655e-01 -1.78452179e-01 -2.85352111e-01\\n1.33632943e-01 -5.70511639e-01 -2.22930796e-02 -1.45399988e-01\\n-4.52062041e-02 -8.98910612e-02 2.48574048e-01 1.16397277e-01\\n1.99484110e-01 -3.37451100e-01 4.31722999e-01 -3.17148328e-01\\n-4.53984588e-01 -9.11324397e-02 1.61628556e-02 -7.21414685e-02\\n4.94503856e-01 -5.14025092e-01 1.12358173e-02 3.09840083e-01\\n9.26969051e-02 7.03378469e-02 1.99127853e-01 -1.70961887e-01\\n-6.12348840e-02 1.92195103e-01 -5.18261135e-01 9.51326787e-02\\n7.81677723e-01 2.55417377e-01 7.68995956e-02 2.77607024e-01\\n1.71848923e-01 2.76825726e-01 5.24686217e-01 -4.26241495e-02\\n-1.72658205e-01 3.06076884e-01 7.64827803e-02 -5.40473819e-01\\n-1.25483766e-01 -7.31042027e-02 -2.27179766e-01 -3.72928888e-01\\n6.22219682e-01 4.14932251e-01 -3.99217665e-01 -3.26644540e-01\\n-1.48093089e-01 -1.59417361e-01 3.18318754e-01 -5.12758223e-03\\n-8.26226622e-02 -1.35454178e-01 5.07455885e-01 -5.38714230e-02\\n2.61386603e-01 5.18763125e-01 -1.26101211e-01 -2.20936507e-01\\n1.11522172e-02 1.48350596e-01 3.67786735e-02 4.36480582e-01\\n-1.10091247e-01 2.57297754e-01 -5.18040098e-02 1.52721748e-01\\n-7.16182292e-02 1.59994289e-02 1.61852777e-01 3.99362445e-02\\n2.03661323e-01 1.57298073e-01 4.45208907e-01 4.71800357e-01\\n2.51458406e-01 3.51913571e-01 3.50550234e-01 -4.76007760e-02\\n4.34016287e-01 5.76673865e-01 3.27949792e-01 4.88114990e-02\\n-2.60265246e-02 7.43572563e-02 1.71774849e-01 -6.98684603e-02\\n3.24344397e-01 3.14850032e-01 8.33281428e-02 8.50742459e-01\\n3.26270103e-01 2.96025455e-01 7.23702192e-01 -6.68882012e-01\\n-3.68921161e-01 -6.21692613e-02 5.69745362e-01 -4.75773305e-01\\n1.68197826e-02 1.95360571e-01 -2.47300714e-01 3.05866718e-01\\n-5.56423783e-01 -2.41036192e-01 5.85246310e-02 5.73525466e-02\\n6.30852506e-02 -9.89965945e-02 -1.86393410e-01 2.74570175e-02\\n-1.89841211e-01 -2.20061868e-01 -4.27120984e-01 -2.44485974e-01\\n-1.84991062e-01 -1.10259783e-02 -2.54261494e-02 -1.25100255e-01\\n-9.00371149e-02 -3.44134927e-01 3.53669226e-02 -3.55437817e-03\\n4.31756228e-01 -1.11046948e-01 -3.57174650e-02 -1.01246506e-01\\n2.47886434e-01 2.23003209e-01 7.08459020e-01 5.25083579e-03\\n1.87055558e-01 -1.93847880e-01 -2.23856255e-01 1.78687692e-01\\n4.81785052e-02 8.13700259e-04 6.22576363e-02 3.42204988e-01\\n-2.46085942e-01 -1.69233173e-01 -6.31877035e-03 2.71324813e-01\\n-3.84408534e-01 -8.15595090e-02 -1.18171863e-01 1.70702845e-01\\n2.44063996e-02 7.55726248e-02 -2.56600827e-01 9.18196142e-02\\n-1.91799358e-01 -5.53236604e-01 2.88154751e-01 -1.93021111e-02\\n-1.83167726e-01 8.11275020e-02 2.98031867e-01 1.87106013e-01\\n-2.79088080e-01 -4.22731042e-04 -1.05171204e-01 1.05988942e-01\\n2.71354821e-02 4.22138184e-01 -1.19378939e-01 -3.53337407e-01\\n-2.84294158e-01 3.27000320e-01 -9.72331613e-02 1.20505184e-01\\n-5.05857691e-02 4.55280274e-01 -3.35106440e-02 8.38366151e-02\\n3.68311822e-01 1.45928329e-02 -2.13267386e-01 -3.22517574e-01\\n-6.24984279e-02 -1.42991677e-01 -6.39420673e-02 -8.64267126e-02\\n2.01358914e-01 -3.69508922e-01 -5.21335714e-02 -2.95316964e-01\\n-4.65065874e-02 -3.33761066e-01 -6.11328445e-02 -5.82180917e-04]]',\n", + " 'Zurich | HeadquartersStampfenbachstrasse 42 + 41 43 300 54 40 contact@reprisk.com 8006 Zurich, Switzerland www.reprisk.com Machine Learning Software Engineer (Python) Full time position in Zürich, Switzerland Starting date: by agreement About RepRisk Founded in 1998 and headquartered in Switzerland, RepRisk is a pioneer in ESG data science that leverages AI technology and human intelligence to systematically analyze public information and largest and most comprehensive due diligence database on ESG and business conduct risks, with expertise in 20 languages and coverage of 130,000+ public and private companies and 30,000+ corporations have trusted RepRisk for due diligence and risk management across their operations, business relationships, and investments. Learn more at www.reprisk.com and follow on Twitter: www.twitter.com/reprisk. Job Description As a Machine Learning Software Engineer you will be involved in all aspects of the machine learning application development process within RepRisk, including design, implementation and operation. The role will primarily involve development and maintenance of data processing and language analysis solutions, mainly written in Python. There will be frequent opportunities to work on a broad range of technologies from data processing and integration, machine learning and NLP, databases (SQL) to deployment and operation on a Unix environment. You will benefit from working with an experienced team that will offer support and the scope to greatly enhance your technical skills and knowledge and you will profit from an agile development ecosystem using state-of-the-art open-source technologies. We want someone who is keen to contribute ideas, thrives in a rapid development environment, and who can consistently bring innovative solutions to problems. The position reports to the Vice President of Operations Technology. Responsibilities Design, implement, deploy and maintain machine learning algorithms and infrastructure, from training to prediction Public RepRisk AG, October 2019 Create and maintain technical documentation Software testing and quality assurance Evaluate and identify new technologies Candidate Profile mathematics, statistics, or another relevant discipline with a strong foundation in quantiative methods, modeling, and machine learning/AI (or equivalent experience) Extracurricular projects and experiences that demonstrate your interest in data analysis/machine learning and/or software design and implementation Ability to manage large datasets and advanced experience in the corresponding software packages and programming languages (strong skills in Python and SQL are a requirement) Experience working with Docker, web servers and RESTful applications, as well as having familiarity with continuous integration and deployment (CI/CD). Knowledge of Django REST Framework is an advantage. Strong interest in real-world problems and analytical skills to come up with workable solutions A team player who loves to work in a highly diverse team and across functions and geographies You are reliable, curious, open-minded and goal oriented, while striving to deliver operational excellence and superior quality. What We Offer technology with respect to ESG risks in investments An entrepreneurial, international and young work environment A shared mission to drive accountability and responsible behavior of companies, thus creating positive change Long-term employment opportunity at a growing global company Please note that we consider only candidates with valid working permits or passport holders. Public RepRisk AG, October 2019',\n", + " '[\"Analytical Skills\", \"Business Operations\", \"Goal Oriented\", \"Infrastructure\", \"Accountability\", \"Operations\", \"Reliability\", \"Integration\", \"Innovation\", \"Quality Assurance\", \"Positivity\"]',\n", + " '[\"Application Development\", \"Web Servers\", \"Managing Large Accounts\", \"KM Programming Language\", \"Hyper SQL Database (HSQLDB)\", \"Development Environment\", \"Prediction\", \"Machine Learning\", \"Continuous Integration\", \"Mathematical Statistics\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Business Relationship Management\", \"Maintainability\", \"Dataset\", \"Hostile Work Environment\", \"Software Engineering\", \"Investments\", \"Django (Web Framework)\", \"Machine Learning Methods\", \"Open Source Technology\", \"Data Science\", \"Risk Management\", \"Docker (Software)\", \"Library For WWW In Perl\", \"Machine Learning Algorithms\", \"Due Diligence\", \"Human Intelligence\", \"Electronic Data Processing\", \"Operational Excellence\", \"Technical Documentation\", \"Agile Product Development\", \"Information Technology Operations\", \"Software Design\", \"Software Testing\", \"Algorithms\", \"Unix\", \"Job Descriptions\", \"Long-Term Potentiation\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Cree', 'Xhosa', 'Southern Sotho', 'Wolof']\"],\n", + " ['66',\n", + " 'sr. software engineer (jee)',\n", + " 'Sursee',\n", + " 'Computer Hardware & Software',\n", + " '',\n", + " '[[-3.59140545e-01 2.14985952e-01 3.99593562e-01 7.47437701e-02\\n5.97911000e-01 -2.91271418e-01 -1.53353848e-02 2.72424370e-01\\n8.65566544e-03 -3.56101155e-01 1.00290766e-02 -2.18779534e-01\\n-2.08245158e-01 1.02874584e-01 2.83053696e-01 4.66352105e-01\\n2.49129981e-01 1.74954772e-01 -2.08015949e-01 4.80245262e-01\\n1.06187262e-01 -1.34192914e-01 -3.24562639e-02 7.48353422e-01\\n2.94979960e-01 -1.74370455e-03 -1.74593985e-01 -1.98903382e-01\\n-4.08579350e-01 -1.41832247e-01 3.23671609e-01 2.61603445e-02\\n-1.68415487e-01 -4.89255846e-01 5.62287308e-02 1.01798244e-01\\n-3.11282456e-01 5.77073917e-02 -8.58186856e-02 1.42956197e-01\\n-6.93300366e-01 -4.19151723e-01 2.14420065e-01 6.40792251e-02\\n-1.28609091e-01 -2.45959461e-01 1.26493365e-01 -6.68771267e-02\\n-2.13176385e-02 8.53607804e-03 -6.65722191e-01 2.67347455e-01\\n-2.80167311e-01 -2.85073161e-01 3.45911980e-01 5.13616323e-01\\n1.92300528e-01 -6.36415601e-01 -3.47609878e-01 -4.26453382e-01\\n-1.15390606e-01 -8.39847922e-02 -5.38811572e-02 -3.64828050e-01\\n2.15325370e-01 1.45649230e-02 2.03194823e-02 3.17851812e-01\\n-7.65799165e-01 -3.32071185e-02 -9.53334793e-02 1.16522629e-02\\n-3.26856583e-01 3.01859304e-02 -3.28330815e-01 -7.84200057e-03\\n-1.07520677e-01 5.00679970e-01 2.37438474e-02 7.71400481e-02\\n-2.02081069e-01 3.24178129e-01 -4.54307348e-02 4.04399991e-01\\n3.19481462e-01 1.58569843e-01 1.74619496e-01 4.41463858e-01\\n-4.83307630e-01 3.96462828e-01 3.69919166e-02 -2.17701629e-01\\n3.06889057e-01 2.24917248e-01 4.19290185e-01 1.05420828e-01\\n2.42398381e-02 2.40396306e-01 -2.78469265e-01 3.66270870e-01\\n1.47189200e-01 -3.65447611e-01 1.21482708e-01 -1.17198296e-01\\n-4.69425879e-02 5.47754467e-02 -2.67522205e-02 1.17511988e-01\\n-2.18609333e-01 4.09478337e-01 1.97810546e-01 -1.28436059e-01\\n-8.48821551e-02 -4.97678995e-01 -6.63976520e-02 1.03133455e-01\\n4.33529392e-02 2.02133581e-01 3.01330388e-01 -9.63915512e-02\\n2.82894164e-01 1.64732821e-02 8.38655606e-02 9.48516071e-01\\n-3.35577875e-02 1.20503291e-01 -1.55044407e-01 3.20303112e-01\\n2.63782680e-01 -1.58164158e-01 1.66031513e-02 3.27381909e-01\\n1.39746591e-01 -1.17424294e-01 -2.18241856e-01 4.19413358e-01\\n-1.55524299e-01 -1.71532661e-01 -2.89140731e-01 9.24619213e-02\\n-6.92198575e-02 -5.05993962e-01 5.92344463e-01 1.45465240e-01\\n2.37012252e-01 6.38825633e-03 1.36477157e-01 -2.94672195e-02\\n-7.24028274e-02 2.77583450e-01 2.96698846e-02 1.83918700e-01\\n-3.43328983e-01 -2.67430574e-01 -1.49654314e-01 1.95940286e-01\\n-3.05878639e-01 1.03185363e-01 1.07147116e-02 -1.50992379e-01\\n1.66214824e-01 1.92711994e-01 -4.03672278e-01 2.12912083e-01\\n-1.14551313e-01 -1.24027066e-01 4.00168002e-02 3.25854540e-01\\n-1.34027928e-01 3.18210632e-01 4.38608639e-02 -1.61071625e-02\\n4.78085190e-01 2.39609182e-01 1.92840144e-01 -4.08564806e-02\\n4.38337266e-01 -2.28527263e-01 2.08125934e-01 2.31889009e-01\\n-6.04985237e-01 1.79358795e-01 -5.31815784e-03 -2.28794843e-01\\n1.67600304e-01 -3.12883779e-02 4.67690080e-01 -2.56510198e-01\\n-8.61563906e-02 -3.42738748e-01 -4.94056970e-01 -2.92866498e-01\\n-3.28362912e-01 2.96565481e-02 3.75261456e-01 -3.02060932e-01\\n-1.45419016e-01 2.97271937e-01 -4.47354585e-01 -1.12804659e-01\\n2.71004200e-01 2.50776619e-01 3.41000780e-02 6.22081617e-03\\n-1.56346336e-01 -6.63615525e-01 -4.07908820e-02 -5.09478390e-01\\n-5.84851563e-01 2.87754741e-02 -3.68840635e-01 1.04534075e-01\\n-8.30786973e-02 9.01416466e-02 -2.85243019e-02 8.63545388e-02\\n-2.44477659e-01 -1.04726650e-01 2.01141298e-01 4.67919819e-02\\n2.61013299e-01 -1.08078822e-01 -3.25344712e-01 4.67303455e-01\\n-3.16353142e-01 6.82672501e-01 2.46882156e-01 -1.09293807e+00\\n6.89088106e-01 2.80120045e-01 -1.19891099e-03 -3.37090075e-01\\n4.11354214e-01 -5.70863664e-01 -2.83778161e-02 4.35246676e-02\\n-2.52764910e-01 -3.70473385e-01 2.75692254e-01 -1.69052377e-01\\n-3.18890750e-01 5.97497880e-01 1.25928938e-01 -4.00718451e-02\\n3.54555547e-01 -3.58050555e-01 -1.19076304e-01 3.45927775e-02\\n-4.87102680e-02 -1.66204497e-01 -4.86148745e-01 1.73715577e-01\\n-5.69110475e-02 -4.74281609e-01 -9.61758941e-02 -3.04102093e-01\\n-2.13119775e-01 -3.06411415e-01 -2.82633156e-01 3.63916665e-01\\n2.34888583e-01 9.22573432e-02 -8.95299390e-02 1.40345782e-01\\n7.92562962e-02 -7.97855914e-01 7.80948848e-02 6.83736503e-02\\n5.69462359e-01 3.38594347e-01 1.68318823e-01 -4.87911552e-02\\n7.75671229e-02 6.01238906e-01 -2.49276847e-01 -2.78023273e-01\\n-3.53451036e-02 3.79000716e-02 -4.00593802e-02 -5.68204187e-02\\n2.43540078e-01 5.28935730e-01 -3.93423289e-01 5.00212125e-02\\n-3.33835594e-02 -3.29537690e-02 3.91057849e-01 -1.70480490e-01\\n-4.30596888e-01 -1.03494570e-01 1.86453220e-02 2.59832114e-01\\n-6.09304607e-01 -1.91358089e-01 5.62231243e-01 1.69317901e-01\\n2.30401680e-01 1.86170399e-01 1.92530319e-01 -1.98338822e-01\\n-1.86776370e-01 -2.93643475e-01 1.93424359e-01 1.10538065e-01\\n1.25486523e-01 1.33014590e-01 3.25820222e-03 -6.78729177e-01\\n-3.02968431e+00 -1.64733008e-01 2.94037789e-01 -2.30525911e-01\\n1.38884202e-01 -1.49873897e-01 -5.53125553e-02 -1.18580991e-02\\n-2.70127773e-01 1.16413645e-01 -1.40688464e-01 -6.88409507e-02\\n1.84081569e-02 3.30921084e-01 2.82745212e-02 1.77129135e-01\\n1.80618092e-01 -2.13503823e-01 -1.19663276e-01 3.52496922e-01\\n-1.30314440e-01 -7.14205444e-01 1.73913524e-01 -3.09373885e-02\\n1.99755281e-01 1.62980571e-01 -4.18903589e-01 -4.94657829e-02\\n-4.82036546e-02 -2.38112494e-01 1.94168687e-02 -2.55795807e-01\\n-2.45681927e-01 2.40613088e-01 9.24154092e-03 -1.05352113e-02\\n7.51384646e-02 -3.71547103e-01 -1.11809686e-01 -5.63753664e-01\\n1.41792938e-01 -6.57378018e-01 -1.91586614e-02 -4.32715677e-02\\n6.03190958e-01 -3.09732854e-01 1.29175141e-01 1.57157898e-01\\n2.33670622e-01 8.49056467e-02 9.03856941e-03 4.64980714e-02\\n-2.06346691e-01 -3.58047932e-01 -1.63211133e-02 -2.49112368e-01\\n4.83281225e-01 3.02857786e-01 -9.96795893e-02 1.09858528e-01\\n3.09875906e-01 -2.84569860e-01 -4.39362824e-01 -3.44064444e-01\\n-1.50141776e-01 -2.52484530e-01 -7.90437281e-01 -2.75485963e-01\\n-1.84734285e-01 -4.34323102e-02 -2.06440732e-01 6.95610762e-01\\n-3.31079632e-01 -3.30904037e-01 1.27264112e-01 -6.63184166e-01\\n2.99937189e-01 -3.04647893e-01 -4.02918365e-03 -3.18165004e-01\\n-3.24599534e-01 -4.74954665e-01 1.60354897e-01 -1.65417902e-02\\n-2.74585545e-01 -1.35358438e-01 -6.78182691e-02 -3.84551100e-02\\n-2.30980143e-01 -4.17516649e-01 4.58189994e-01 1.58557206e-01\\n2.94039875e-01 1.10753559e-01 5.52804947e-01 -7.60128722e-02\\n3.82173836e-01 7.71620721e-02 5.18296380e-03 -3.62911701e-01\\n1.44410823e-02 2.66282149e-02 5.56607366e-01 -2.48109698e-01\\n-8.46340135e-02 2.94083923e-01 -2.95413554e-01 -1.15545578e-01\\n3.85310382e-01 4.81810793e-02 -7.73006380e-02 2.98006134e-03\\n3.19571048e-01 -3.52579892e-01 -2.11414739e-01 1.63416073e-01\\n1.66518345e-01 8.83441269e-01 4.45842743e-04 -3.81531030e-01\\n-2.82961249e-01 6.38796926e-01 -6.13223985e-02 2.19613742e-02\\n-8.97796676e-02 1.52679458e-01 -4.94410731e-02 3.50327492e-01\\n1.32470559e-02 -3.56396735e-01 -2.83354878e-01 -2.27178603e-01\\n-1.46985963e-01 2.32430905e-01 1.48612052e-01 7.43683288e-03\\n-5.49935624e-02 -3.21658283e-01 -1.65663704e-01 1.60599977e-01\\n2.27022886e-01 4.66034681e-01 1.39568686e-01 -1.82106093e-01\\n1.48305367e-03 3.19706917e-01 -2.24734336e-01 2.59605318e-01\\n-3.10565948e-01 1.62956700e-01 -6.24524832e-01 -2.59586841e-01\\n-1.56687498e-01 -4.39807951e-01 5.45527413e-02 3.30551535e-01\\n2.44172513e-01 3.08549814e-02 1.35955766e-01 -6.46464586e-01\\n3.38027030e-01 1.74484611e-01 6.17844984e-02 7.63140153e-03\\n2.49219523e-03 4.21890378e-01 -5.38765863e-02 -1.72121853e-01\\n-1.30897835e-01 -6.54230863e-02 -2.03455210e-01 -2.54353255e-01\\n2.96545535e-01 -5.21669924e-01 -1.13839313e-01 3.11975479e-01\\n1.83707625e-01 -3.88236582e-01 -2.47944444e-01 2.71010965e-01\\n2.10424930e-01 -1.86878219e-01 -2.47602791e-01 -4.84839194e-02\\n2.94839948e-01 -2.07209233e-02 2.92301089e-01 -3.32095921e-01\\n-1.32310743e-04 -4.67430316e-02 -5.07606864e-02 4.57950562e-01\\n2.44528547e-01 1.12880012e-02 -2.91687906e-01 -1.12961292e-01\\n5.32411635e-01 -1.55245647e-01 -9.33347121e-02 -1.86505675e-01\\n8.93089399e-02 -8.39429051e-02 -4.69422072e-01 1.70883864e-01\\n-3.75418440e-02 -2.58899063e-01 -3.00870743e-02 -3.48422714e-02\\n1.49219573e-01 1.23273708e-01 -4.48829979e-01 -2.56764710e-01\\n-2.78885573e-01 -8.74090269e-02 3.19470644e-01 -2.78574347e-01\\n-4.60292287e-02 1.86245963e-02 -5.86488783e-01 2.59166211e-01\\n-3.09428364e-01 -8.54080915e-02 1.97234765e-01 2.00140357e-01\\n-4.47484851e-01 1.55396014e-02 2.37046815e-02 2.45800689e-01\\n-2.58217573e-01 -3.46178681e-01 -6.11793809e-02 -1.08007526e+00\\n1.00250579e-01 3.05740032e-02 -1.96941704e-01 8.01054761e-02\\n-1.61697119e-01 -7.44671047e-01 8.08203593e-02 -4.16147500e-01\\n-3.62664945e-02 5.67052178e-02 -2.57417828e-01 -3.43923420e-01\\n4.32008021e-02 -1.44574605e-02 -3.70647490e-01 4.33134913e-01\\n-4.63282526e-01 3.00051719e-01 -2.10830808e-01 7.14535713e-02\\n6.97714277e-03 -1.87210009e-01 1.47016302e-01 -3.45265985e-01\\n-3.49844754e-01 -2.67215163e-01 -5.37152410e-01 -3.90266031e-01\\n-1.42886769e-02 -3.11907083e-01 -1.15726091e-01 1.05029717e-01\\n2.95390874e-01 2.23784000e-01 -3.37222666e-02 -4.07550573e-01\\n2.78661817e-01 -4.85380322e-01 1.52519392e-02 -2.73122460e-01\\n3.21673490e-02 -1.08061716e-01 1.85616046e-01 4.64729853e-02\\n1.87275410e-01 -3.97490174e-01 5.02618372e-01 -2.67293811e-01\\n-3.87547612e-01 -1.78973258e-01 -2.45054923e-02 5.07123955e-02\\n2.63544053e-01 -5.58651149e-01 4.14139554e-02 1.52039081e-01\\n1.35533512e-01 -3.73425968e-02 1.83417931e-01 -8.13848432e-03\\n1.92759857e-02 1.72055840e-01 -4.66128856e-01 5.41372262e-02\\n8.94944072e-01 1.32951602e-01 -2.55786832e-02 1.03053764e-01\\n2.35550538e-01 4.54222530e-01 5.70481598e-01 -1.04312629e-01\\n9.89628769e-03 2.27908000e-01 -2.06019282e-02 -6.14049196e-01\\n-1.60267964e-01 -1.81636974e-01 -1.76981032e-01 -3.11468810e-01\\n6.84495211e-01 3.26817751e-01 -4.20823067e-01 -1.60921991e-01\\n-1.10746004e-01 -1.48182601e-01 3.04823130e-01 3.67237208e-03\\n-1.08729653e-01 -1.19788669e-01 4.51514691e-01 3.39987851e-03\\n4.53031182e-01 6.18699610e-01 -2.52691299e-01 -4.84011233e-01\\n-1.07165150e-01 2.07058623e-01 1.65678456e-01 3.47062409e-01\\n-1.18496157e-01 1.72558323e-01 -1.17746241e-01 3.52860764e-02\\n-1.60739735e-01 1.93895459e-01 1.28720105e-01 1.15685619e-01\\n3.92618954e-01 -5.90706058e-02 4.10141736e-01 4.08648849e-01\\n9.46822464e-02 4.82899249e-01 2.76164621e-01 1.27298787e-01\\n3.13044548e-01 4.87805218e-01 3.13855708e-01 1.77488640e-01\\n3.68758999e-02 2.11508989e-01 1.34360701e-01 -2.53728449e-01\\n3.80788773e-01 3.25406581e-01 3.77087981e-01 9.25790608e-01\\n2.13581488e-01 3.42635244e-01 9.78252828e-01 -7.21503735e-01\\n-4.88778800e-01 4.26922366e-02 5.66395104e-01 -3.39419037e-01\\n-6.76623872e-03 2.31389597e-01 -1.66323140e-01 3.66537750e-01\\n-4.85446066e-01 -1.89327180e-01 6.38370812e-02 4.61666919e-02\\n-8.29492807e-02 -1.04809284e-01 -2.70108283e-01 1.14919804e-01\\n-1.98394313e-01 -5.23257181e-02 -2.93915629e-01 -9.04433057e-02\\n-1.27969369e-01 -4.28299233e-02 -1.60277158e-01 -3.93470190e-02\\n-1.01959296e-01 -4.81896013e-01 -1.45679355e-01 -4.53921072e-02\\n4.18310374e-01 -5.80909885e-02 1.24395303e-01 -2.32716799e-01\\n2.37782612e-01 2.75281787e-01 4.97156709e-01 -5.77912554e-02\\n2.11122736e-01 -2.34258294e-01 -2.20230788e-01 1.23899087e-01\\n2.72566676e-02 8.48191753e-02 2.38910504e-02 2.95267016e-01\\n-2.75234580e-01 -9.68883932e-02 9.56616551e-02 4.18630183e-01\\n-2.71179110e-01 -2.43866503e-01 -2.71051615e-01 7.09974840e-02\\n1.35059908e-01 1.75600842e-01 -2.32238725e-01 6.27258420e-02\\n-3.11817944e-01 -6.18101597e-01 4.37010646e-01 -2.62267828e-01\\n-1.68230906e-01 2.02680200e-01 4.16226804e-01 2.00393528e-01\\n-2.70699263e-01 1.06937625e-01 -7.24396408e-02 1.65149331e-01\\n5.91270849e-02 4.23454285e-01 -9.66151133e-02 -2.08272070e-01\\n-2.53871173e-01 3.09258908e-01 -1.79275140e-01 5.09080663e-02\\n-6.06958047e-02 5.15875578e-01 -8.73451307e-03 4.27482948e-02\\n3.30507815e-01 1.04264200e-01 -3.69591087e-01 -3.62218678e-01\\n-1.92903012e-01 -1.87381998e-01 5.12942038e-02 -1.42367920e-02\\n5.29789254e-02 -4.38718796e-01 -5.45011135e-03 -2.13688821e-01\\n5.55509217e-02 -3.55192810e-01 -1.37375101e-01 -3.35964784e-02]]',\n", + " 'Want to work on some of the most in-demand & exciting technologies in the IT industry? Come join us at Ishi Systems. At Ishi, we have built an enduring platform for innovation that pursues excellence to create products, systems and solutions that delight our customers and exceed their expectations. Our engineers solve a variety of complex and challenging business problems with cutting edge technology. We actively explore new and emerging technologies in Big Data No-SQL databases, Middleware Messaging platforms, High Availability Architectures, Advanced Analytics, Machine Learning, and contemporary web and mobile user interface frameworks. Do you take pride in writing quality code and building software that is reliable, testable and maintainable? Do you thrive on creating simple and elegant solutions to complex problems? Are you ready to compete head-to-head with some of the top and most fast-paced and innovative organizations in the industry? Mandatory Skills and Experience 5+ years of experience in application development including analysis, design, coding and implementation of large scale enterprise systems Strong Java language skills – core and advanced Extensive OO knowledge, including design patterns Experience in one or more frameworks such as Spring, Hibernate, JBPM, Drools, Quartz, etc Experience with relational databases and solid SQL skills Solid experience with Unix/Linux, including basic shell scripting Strong communication skills and ability to interface with customers Desired Skills and Experience Experience on user interface frameworks and technologies such as AngularJS, Play, JSF, JQuery, JavaScript, etc. Experience with messaging platforms such as RabbitMQ, HornetQ, Kafka, ActiveMQ Experience developing RESTful services and APIs Experience in No-SQL databases such as MongoDB, Hadoop HBase, Couchbase, etc Experience in application server clustering, performance tuning and scalability design Experience working in agile environments using Scrum, Continuous Integration and TDD/BDD practices Additional languages such as Scala, Clojure, Golang, Python, R',\n", + " '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Writing\", \"Reliability\", \"Innovation\"]',\n", + " '[\"Application Development\", \"Test-Driven Development (TDD)\", \"Agility\", \"Hyper SQL Database (HSQLDB)\", \"High Availability Clusters\", \"Shell Script\", \"Analytics\", \"Middleware\", \"Distributed Design Patterns\", \"Continuous Integration\", \"Industrialization\", \"Scale (Map)\", \"Hibernate (Java)\", \"Scala (Programming Language)\", \"Activism\", \"Metal Building Software\", \"Python (Programming Language)\", \"Linux\", \"Maintainability\", \"Drools\", \"Agile Edge Technologies\", \"Application Servers\", \"MongoDB\", \"Scrum (Software Development)\", \"Hornetq\", \"Mobility\", \"Machine Learning Methods\", \"Quartz (Graphics Layer)\", \"RabbitMQ\", \"Clojure\", \"JQuery\", \"Testability\", \"Enterprise Planning Systems\", \"R (Programming Language)\", \"JavaScript (Programming Language)\", \"Apache ActiveMQ\", \"Scalability\", \"Production Systems\", \"Big Data\", \"User Experience Design (UX)\", \"Design Codes\", \"Performance Tuning\", \"Relational Databases\", \"Language Experience Approach\", \"Apache HBase\", \"Additives\", \"Unix\", \"Emerging Technologies\", \"SQL (Programming Language)\", \"User Interface\", \"JSF 2\", \"Java Scripting Languages\"]',\n", + " \"['English', 'Lao', 'Nyanja', 'Kurdish']\"],\n", + " ['51',\n", + " 'product manager - ai and data products',\n", + " 'Lausanne',\n", + " 'Publishing',\n", + " 'www.frontiersin.org',\n", + " '[[-4.01236355e-01 2.87015855e-01 4.39394355e-01 9.88470763e-02\\n4.76421744e-01 -8.49938244e-02 8.12596306e-02 1.96090937e-01\\n-5.44392057e-02 -3.98882926e-01 -1.43993914e-01 -1.83753029e-01\\n-1.58108938e-02 6.74094260e-02 7.12079853e-02 4.88142818e-01\\n3.37462604e-01 5.71313240e-02 -1.51247784e-01 4.22992468e-01\\n1.90616958e-02 -1.94834426e-01 1.66388452e-02 6.99739575e-01\\n4.63335603e-01 -2.39662323e-02 -1.27283514e-01 1.99957825e-02\\n-9.95414332e-02 -2.81736702e-01 3.59253168e-01 3.19542661e-02\\n-1.64493620e-02 -3.80350351e-01 5.11729196e-02 4.86332923e-04\\n-2.13148475e-01 1.05989672e-01 -1.30445600e-01 1.47916153e-01\\n-3.90347302e-01 -8.13534111e-02 4.45378758e-02 -6.05453625e-02\\n-2.10255086e-01 -3.25333446e-01 -4.96872887e-02 -9.94873047e-02\\n1.29596829e-01 1.44078150e-01 -4.87961739e-01 3.60232264e-01\\n-3.02495778e-01 -2.53662050e-01 2.48073369e-01 5.93623996e-01\\n-1.20144878e-02 -4.31212902e-01 -4.85820889e-01 -3.77218127e-01\\n7.94182122e-02 -1.94613367e-01 3.01809549e-01 -2.29129255e-01\\n2.32306495e-01 -8.45196377e-03 2.71647312e-02 2.76663184e-01\\n-6.81997895e-01 -5.88912517e-03 -3.52539837e-01 2.59306766e-02\\n-3.33706915e-01 -7.47505501e-02 -4.26799774e-01 -8.30218196e-02\\n-8.17832127e-02 3.17750216e-01 -6.21341355e-03 1.11685812e-01\\n-2.51950979e-01 3.01139683e-01 -1.96993917e-01 3.46933544e-01\\n1.99890330e-01 1.18254408e-01 3.64616752e-01 4.44880366e-01\\n-2.69150972e-01 5.45547247e-01 1.92063272e-01 -2.69803196e-01\\n4.15234923e-01 6.24892935e-02 3.59981000e-01 4.59041819e-02\\n2.37286568e-01 9.39356387e-02 -2.13887066e-01 1.29903585e-01\\n2.19259098e-01 -2.74659574e-01 -1.23549610e-01 -1.37294561e-01\\n-3.56600210e-02 3.83770652e-02 9.17483345e-02 5.29713556e-02\\n-3.93190980e-01 5.02123713e-01 2.44524833e-02 -2.34544352e-01\\n-1.28471926e-01 -3.33001614e-01 -3.69556956e-02 4.90282886e-02\\n-4.89940532e-02 2.34134138e-01 2.10760027e-01 1.50582701e-01\\n2.01021865e-01 2.43503321e-03 1.35461330e-01 7.58145452e-01\\n1.13273785e-01 3.80898975e-02 -2.81135798e-01 2.47894973e-01\\n1.06203891e-01 -4.52317238e-01 2.18564540e-01 -7.90535659e-03\\n-7.65636936e-02 -1.40001550e-01 -2.28940338e-01 3.17973852e-01\\n-1.49007782e-01 -2.08554149e-01 -2.36900389e-01 1.43334866e-01\\n-5.56822941e-02 -6.30265951e-01 6.06806874e-01 -1.55254275e-01\\n2.04922527e-01 -4.62804474e-02 1.22867286e-01 -5.51203452e-02\\n-1.45845383e-01 2.57596195e-01 1.93511814e-01 2.60994345e-01\\n-2.67605782e-01 -2.41002798e-01 -1.36122763e-01 3.00853282e-01\\n-4.27202165e-01 2.15794832e-01 -1.90160215e-01 -1.76130965e-01\\n3.05705965e-01 1.02462947e-01 -4.25817192e-01 2.19044000e-01\\n-1.91495076e-01 -7.52302706e-02 -2.15498894e-01 5.04195273e-01\\n-1.28268316e-01 1.78646192e-01 1.78774506e-01 3.33063118e-02\\n6.84854388e-01 2.60646313e-01 2.54357636e-01 -2.36474220e-02\\n3.34094405e-01 -5.80014288e-03 2.23529413e-01 7.51067251e-02\\n-6.44975364e-01 2.47253329e-01 -6.83541149e-02 -1.42340213e-01\\n4.72327918e-02 -1.70135722e-01 2.29554504e-01 -4.19607043e-01\\n7.31343590e-03 -1.79721415e-01 -3.39367270e-01 -3.66864711e-01\\n-1.68405503e-01 5.69386594e-02 3.96326423e-01 -3.51168394e-01\\n-5.14275357e-02 1.60805777e-01 -5.66573679e-01 -1.56895116e-01\\n2.52493739e-01 1.83577478e-01 2.64259726e-02 2.20267177e-01\\n-1.09668732e-01 -5.41825294e-01 1.04890645e-01 -4.06251609e-01\\n-4.38534677e-01 6.75804615e-02 -3.94131958e-01 1.56423509e-01\\n2.09375471e-01 3.43195274e-02 -1.28100395e-01 1.52730256e-01\\n-1.57520831e-01 3.57151367e-02 1.53335091e-03 1.74084716e-02\\n2.78731763e-01 1.24772131e-01 -3.79303038e-01 4.88689840e-01\\n-1.46320671e-01 3.93800706e-01 5.80356009e-02 -8.56556058e-01\\n5.28268814e-01 2.44959086e-01 -8.48154724e-02 -3.36754918e-01\\n5.09054780e-01 -2.98091918e-01 -1.92236193e-02 1.17055416e-01\\n-1.95416689e-01 -2.59282053e-01 3.28496575e-01 -2.49662966e-01\\n-3.13444316e-01 5.04077196e-01 3.59492227e-02 2.64932156e-01\\n2.16184884e-01 -1.75906017e-01 -1.68327659e-01 1.61577076e-01\\n-1.38973072e-01 -1.67204887e-01 -6.10741854e-01 4.30010222e-02\\n-8.74697417e-02 -3.42068374e-01 -1.22047454e-01 -5.14169157e-01\\n-1.95201442e-01 -4.88301337e-01 -2.15323806e-01 1.43965036e-01\\n1.78504974e-01 1.68033674e-01 -1.35873824e-01 -8.14716965e-02\\n-8.21794197e-03 -7.41325378e-01 5.82537241e-03 1.01975836e-01\\n4.11420643e-01 2.76292443e-01 1.49665609e-01 -8.51111487e-02\\n7.38791376e-02 5.17667234e-01 -3.67874444e-01 -2.28311971e-01\\n2.49442443e-01 6.95261285e-02 -4.83997092e-02 -2.02582717e-01\\n1.38280876e-02 2.01509789e-01 -2.11457953e-01 3.47246900e-02\\n-2.30344851e-03 -9.57287475e-02 4.63504136e-01 -6.06935360e-02\\n-4.31221187e-01 -1.52278781e-01 -1.13882646e-01 2.97894597e-01\\n-5.34587622e-01 -3.28249931e-01 7.18602657e-01 1.83658019e-01\\n1.23673283e-01 2.00187936e-01 1.20248929e-01 -6.64021894e-02\\n-1.97900862e-01 -3.43581796e-01 4.29987103e-01 4.78257686e-02\\n1.71052232e-01 9.85144824e-02 -6.08210228e-02 -7.01202869e-01\\n-3.65674400e+00 -2.28687212e-01 -2.53579132e-02 -2.08647490e-01\\n2.05655426e-01 -1.00015335e-01 1.40217066e-01 -1.01980209e-01\\n-2.38330975e-01 1.73456326e-01 -1.76072881e-01 -1.05937712e-01\\n-1.81968659e-02 2.25988299e-01 2.41594777e-01 1.91380829e-01\\n2.73708105e-01 -2.61488527e-01 -1.71999745e-02 2.63826489e-01\\n-1.53127134e-01 -6.88936949e-01 1.13314345e-01 5.52272499e-02\\n2.67355025e-01 1.86614707e-01 -3.65598202e-01 -1.40844285e-01\\n-3.95124674e-01 -1.31108403e-01 6.81990832e-02 -1.53861254e-01\\n-2.93632686e-01 2.39228666e-01 2.17268124e-01 -1.33394152e-01\\n-1.84806995e-02 -4.68376637e-01 -1.03572816e-01 -3.45144987e-01\\n1.33822322e-01 -6.60131454e-01 7.57426582e-03 -3.37112583e-02\\n6.35620236e-01 -1.21863276e-01 2.78837264e-01 -6.33863453e-03\\n1.55754060e-01 3.80049460e-02 1.31808102e-01 7.40242302e-02\\n-1.40557498e-01 -2.88098007e-01 -2.96449754e-02 -1.53378323e-01\\n7.52657652e-01 2.92451054e-01 -1.48197263e-01 -1.60030007e-01\\n1.04287848e-01 -3.68480653e-01 -4.45929885e-01 -2.26350904e-01\\n-2.14556694e-01 -1.36174992e-01 -6.55618787e-01 -4.63277936e-01\\n-2.36805573e-01 -1.27850443e-01 -5.51923811e-02 6.52110457e-01\\n-1.96535081e-01 -3.11424971e-01 -1.01561025e-01 -4.19152200e-01\\n2.32776359e-01 -1.09636471e-01 3.25425640e-02 -2.36157835e-01\\n-2.63167739e-01 -4.17800069e-01 7.54241571e-02 1.03517123e-01\\n-9.46301967e-02 -1.96282819e-01 1.24833159e-01 -7.48359710e-02\\n-3.68689358e-01 -4.39635903e-01 3.95750582e-01 1.25993297e-01\\n2.91576385e-01 2.33012438e-02 3.30586791e-01 -8.31006281e-03\\n2.39797741e-01 -3.40751410e-02 -1.08806640e-02 -4.96363282e-01\\n4.75334004e-02 1.12056039e-01 5.60755968e-01 -1.29822075e-01\\n-1.08713321e-02 7.60848671e-02 -1.85606450e-01 -1.45961538e-01\\n5.46629548e-01 -6.30770847e-02 5.16788512e-02 1.40532907e-02\\n2.02252537e-01 -3.17024231e-01 -2.08124191e-01 6.45948499e-02\\n6.71973825e-02 7.36087024e-01 -1.59884095e-02 -3.76228154e-01\\n-1.62754938e-01 4.37781185e-01 -6.69209659e-02 1.57638922e-01\\n-1.71262294e-01 1.22721314e-01 -1.80247664e-01 2.77977943e-01\\n8.39399695e-02 -1.67263046e-01 -1.76014960e-01 -1.34624451e-01\\n-1.46271884e-01 2.63368845e-01 2.86168098e-01 1.40139401e-01\\n-9.69307423e-02 -4.46446687e-01 -2.16117203e-01 2.17374980e-01\\n2.24043161e-01 5.17161012e-01 1.99186727e-01 -2.67839551e-01\\n8.02960247e-04 3.04621756e-01 -1.24134190e-01 2.65025437e-01\\n-2.55736709e-01 2.12695926e-01 -5.59670150e-01 -2.11667985e-01\\n-2.42610991e-01 -3.90370101e-01 9.64280665e-02 4.17320013e-01\\n8.79301876e-02 -6.66142330e-02 -6.05605915e-02 -4.26920533e-01\\n2.63435781e-01 9.82398912e-03 1.97889522e-01 9.96484049e-03\\n-6.82526603e-02 6.13374352e-01 -9.89310443e-02 -1.30804762e-01\\n-1.93908393e-01 4.22899686e-02 -8.62748623e-02 -1.28480375e-01\\n8.77488479e-02 -4.42295223e-01 -2.80523021e-02 3.32474947e-01\\n3.15771997e-01 -1.74641520e-01 -1.22721627e-01 2.68373668e-01\\n-2.28046402e-02 -4.74802762e-01 -2.73135722e-01 3.56485136e-03\\n3.01194370e-01 2.58758925e-02 2.69845814e-01 -3.33348691e-01\\n9.43511575e-02 -5.89743853e-02 2.90337913e-02 3.97190601e-01\\n-1.83273815e-02 4.49931063e-02 -4.37064730e-02 -1.21281475e-01\\n4.45687264e-01 -4.44673076e-02 -1.40645295e-01 1.42325126e-02\\n1.81018263e-02 -3.67516041e-01 -6.05409622e-01 -3.56025100e-02\\n-3.16698737e-02 -2.70098209e-01 2.09108382e-01 1.61890775e-01\\n-7.90996850e-02 1.66019112e-01 -5.62680006e-01 -1.81347460e-01\\n-2.81549752e-01 -1.45219624e-01 6.27622306e-02 -6.03503585e-01\\n-2.82929420e-01 -5.30891418e-02 -5.02614975e-01 2.13011369e-01\\n-2.92041469e-02 -1.70365110e-01 1.69536889e-01 7.23993704e-02\\n-1.79092616e-01 -1.92488715e-01 1.15020201e-01 2.22151116e-01\\n-2.27764904e-01 -2.48008877e-01 1.28186703e-01 -1.04188812e+00\\n1.96785599e-01 2.32199371e-01 -2.51621187e-01 -4.95044515e-03\\n-7.05215931e-02 -6.55517757e-01 2.00875849e-01 -3.72523427e-01\\n-8.15366060e-02 -3.23916674e-02 -3.22995305e-01 -2.79101133e-01\\n3.78183275e-02 -2.30744258e-02 -2.68617749e-01 4.14375871e-01\\n-2.75039941e-01 3.29757512e-01 -7.70997033e-02 6.44419342e-02\\n-7.06364959e-02 -1.95181310e-01 4.82499525e-02 -3.06231141e-01\\n-4.66505527e-01 -1.92978233e-01 -3.34116220e-01 -2.14218825e-01\\n-6.28525689e-02 -2.08866358e-01 -1.11021660e-01 1.15985885e-01\\n4.15128469e-01 2.11818218e-01 -1.41719997e-01 -2.84112453e-01\\n-7.20839202e-02 -4.29138571e-01 7.08533078e-02 -1.80122077e-01\\n-9.25066918e-02 -1.97212905e-01 2.57932901e-01 1.76073074e-01\\n1.98054284e-01 -3.36628556e-01 4.07548219e-01 -3.47763866e-01\\n-2.79322267e-01 -1.44766927e-01 1.31175667e-01 1.06199503e-01\\n2.65051365e-01 -5.46744108e-01 -1.09651037e-01 3.05856347e-01\\n3.48362625e-02 7.41115212e-02 2.67413020e-01 -1.53471142e-01\\n-6.23319037e-02 2.47210085e-01 -4.49784815e-01 1.82791740e-01\\n7.90020943e-01 1.77784547e-01 -2.99046878e-02 2.36884147e-01\\n1.39117628e-01 3.40837598e-01 4.81783986e-01 -8.34009796e-02\\n-4.48337607e-02 2.87920892e-01 2.49613300e-02 -6.64794385e-01\\n-1.73200935e-01 -1.25498980e-01 -8.55277479e-03 -3.52936089e-01\\n7.34187067e-01 3.26662749e-01 -3.12185675e-01 -2.80074447e-01\\n-2.10296139e-01 -1.81767076e-01 2.68944502e-01 2.31875256e-02\\n5.24091050e-02 2.87809968e-03 4.91007656e-01 -1.22929141e-02\\n1.75310463e-01 5.01890182e-01 -1.55870348e-01 -2.23255917e-01\\n-8.24373513e-02 2.83650935e-01 2.47816481e-02 4.74993169e-01\\n-2.30437815e-01 1.14461705e-01 1.11486495e-01 9.44469720e-02\\n-1.25120342e-01 1.11952990e-01 6.86803088e-02 1.42307699e-01\\n1.78406909e-01 8.13381970e-02 5.86423993e-01 4.35170054e-01\\n2.51753211e-01 4.20752823e-01 3.38247061e-01 -1.17946398e-02\\n3.94381881e-01 5.43840826e-01 4.66669858e-01 7.01498240e-02\\n1.50371045e-01 2.02910721e-01 1.59822196e-01 -5.84913269e-02\\n3.16915870e-01 3.73158216e-01 7.00212717e-02 7.46483922e-01\\n2.82250375e-01 3.44314635e-01 5.58940053e-01 -7.02206612e-01\\n-3.20451438e-01 -2.47690771e-02 5.77786922e-01 -3.23657990e-01\\n8.41432661e-02 4.06111300e-01 -1.96292236e-01 2.42494315e-01\\n-5.46283484e-01 -2.80415386e-01 -5.09143695e-02 -8.96067694e-02\\n1.01188555e-01 -2.05370769e-01 -1.30367950e-01 1.69513971e-01\\n-7.44356439e-02 -1.77003220e-01 -3.85996610e-01 -1.97853759e-01\\n-1.74220532e-01 2.14480430e-01 -7.65559971e-02 -4.10021767e-02\\n-8.85473490e-02 -2.82710433e-01 -1.10612080e-01 -3.82672548e-02\\n1.92532331e-01 -1.22516438e-01 -1.20310448e-01 6.92449510e-03\\n3.35002005e-01 1.72754407e-01 6.82246149e-01 -4.56843227e-02\\n5.11294156e-02 -2.30215982e-01 -1.91492751e-01 1.26143783e-01\\n2.63198912e-01 2.50240341e-02 7.53227100e-02 2.67022550e-01\\n-2.38535285e-01 -2.47321963e-01 6.54906332e-02 2.49994099e-01\\n-3.38833570e-01 -1.65161956e-03 -8.35850984e-02 1.29003733e-01\\n2.38232315e-04 1.45643473e-01 -1.88595027e-01 -1.25197455e-01\\n5.86594939e-02 -5.24764538e-01 2.74103820e-01 -3.11644189e-02\\n-2.42884099e-01 9.54058617e-02 2.39487037e-01 2.23849922e-01\\n-2.20932320e-01 -3.01560853e-02 -2.02141494e-01 4.99859080e-02\\n9.46204811e-02 2.47816861e-01 -1.06561720e-01 -2.86907256e-01\\n-2.60860264e-01 1.85026392e-01 -2.44647376e-02 2.23192260e-01\\n3.64108607e-02 2.19318539e-01 4.80907038e-02 1.23291895e-01\\n3.67851913e-01 1.19100913e-01 -2.45575979e-01 -1.72853202e-01\\n-2.73651183e-01 -1.54123738e-01 -3.06690894e-02 -5.37598245e-02\\n2.20141023e-01 -2.70026267e-01 -1.72143579e-02 -2.31355876e-01\\n-1.75957277e-01 -2.85332471e-01 -7.51812309e-02 2.13145763e-02]]',\n", + " \"Frontiers, a leading Open Access Publisher and Open Science Platform, is looking for a technical product manager to complement our product management team. In this position, you will take responsibility for one of our data and AI driven products. We seek an enthusiastic team player with great initiative and a get-it-done attitude. You must be able to handle a fast-paced work environment while juggling several different tasks at the same time. You also must have an eye for detail and high standards, with highly developed critical thinking, interpretive and analytical skills, and the ability to communicate product vision across multiple cross-functional teams. Key responsibilities Drive your products within the agile development teams, specifying business requirements, prioritizing user stories, supporting development, setting KPIs, proactively approaching users and stakeholders, collecting feedback and acting on it; Work together with our Data Architecture teams to ensure data quality, consistency and traceability; Discover, define and drive implementation of new product features, or evolving existing ones through working with our Data Sciences and other internal stakeholders; Sette hypotheses, test assumptions and break down complex problems into small steps; Take responsibility for the user experience and collaborate with designers and users to create the most appropriate solutions of our users; Be an expert in your product field, including technologies, competitors, and usage model trends; Work on multiple products simultaneously in a fast-paced, dynamic, and energetic environment; Act as the spokesperson for your products and drive feature adoption. Requirements Minimum three years of working experience, either as a product manager or similar position, ideally with a focus on data products; Good understanding of data architecture in both structured and unstructured data sources; Good understanding of machine learning concepts in general, more specific recommendation algorithms; Good understanding of web technologies and APIs; Experience in defining technical specifications describing requirements for data transfer, transformation and storage, with attention to big data topics, Comfortable in working with machine lear Strong analytical skills and independent, entrepreneurial approach; Working language is English - solid communication skills in English, both written and verbal are an absolute must. Benefits 25 days' vacation per year and Christmas office closure; Participation into the company's annual bonus scheme; Access to the latest equipment and international working environment; Professional development opportunities; Plenty of social & fun benefits: Christmas party, summer barbecue, monthly happy hour; Fruits & snacks in the kitchen as well as much tea & coffee as you like; In-house well being activities including free weekly yoga; A huge variety of self-organized activities from ski trips and football to French club. How to apply Please submit your application in English. Applicants must be Swiss or EU citizen, or have a valid Swiss work permit.\",\n", + " '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Analytical Skills\", \"Sourcing\", \"Energetic\", \"Collaboration\", \"Proactivity\", \"Communications\", \"Critical Thinking\", \"Socialization\", \"Prioritization\", \"Positivity\"]',\n", + " '[\"Data Architecture\", \"Production Management\", \"Data Quality\", \"Accessioning\", \"User Story\", \"Product Management\", \"Acting\", \"Collections\", \"Open Access\", \"Scheme (Programming Language)\", \"Activism\", \"Yoga\", \"Machining\", \"Idealization\", \"Development Support\", \"Hostile Work Environment\", \"Machine Learning Methods\", \"Unstructured Data\", \"Traceability\", \"Data Science\", \"Professional Development Programs\", \"Business Requirements\", \"Storages\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Transformation Services\", \"Big Data\", \"Cross-Functional Team Leadership\", \"Transformation (Genetics)\", \"Data Transfer Object\", \"Statistical Hypothesis Testing\", \"User Experience\", \"Eyes\", \"New Product Development\", \"Agile Product Development\", \"Adoptions\"]',\n", + " \"['English', 'Nauru', 'Malay', 'Haitian']\"],\n", + " ['57',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.89102158e-01 3.22572649e-01 3.43682468e-01 6.86984956e-02\\n5.92749178e-01 -2.08659664e-01 3.58250663e-02 4.97129470e-01\\n-6.44638464e-02 -4.74946946e-01 4.08643410e-02 -1.71334594e-01\\n-4.37656716e-02 3.71621661e-02 9.63330939e-02 3.08770239e-01\\n3.27503592e-01 1.00457862e-01 -1.66354805e-01 3.98700297e-01\\n4.70567197e-02 -1.38178051e-01 7.65723884e-02 7.60696650e-01\\n3.29879165e-01 -9.28746983e-02 2.15136576e-02 1.48786148e-02\\n-2.31885239e-01 -2.16679290e-01 3.39705944e-01 -4.77201212e-03\\n-1.51294162e-02 -4.01163667e-01 1.43252000e-01 6.09085299e-02\\n-2.27890491e-01 -2.40199491e-02 -1.73015028e-01 1.97291002e-01\\n-4.95481133e-01 -2.22580418e-01 7.31049106e-02 2.06695087e-02\\n-2.15066522e-01 -3.35245550e-01 -2.45206859e-02 -1.57748982e-01\\n1.94759235e-01 9.92480144e-02 -4.51073796e-01 2.69024074e-01\\n-1.57857627e-01 -2.71275252e-01 3.08543473e-01 6.26815498e-01\\n-2.00418588e-02 -4.40695554e-01 -5.36836386e-01 -2.85255522e-01\\n8.42656642e-02 -1.43572450e-01 -5.21124043e-02 -4.12282288e-01\\n2.13429764e-01 5.02175614e-02 9.40253660e-02 3.78435612e-01\\n-8.53928745e-01 -1.84599549e-01 -2.53364265e-01 -4.44404595e-02\\n-2.83261210e-01 -1.10290132e-01 -2.95931309e-01 -4.28773127e-02\\n-4.93649468e-02 3.38409245e-01 -5.90877794e-03 -4.20777723e-02\\n-1.89312875e-01 3.47411633e-01 -2.19343811e-01 3.83478492e-01\\n1.62083507e-01 1.74525753e-01 1.99898571e-01 3.34435761e-01\\n-3.53083938e-01 3.67400438e-01 5.86211607e-02 -2.75407046e-01\\n2.20262066e-01 1.86386153e-01 4.54611123e-01 -2.80420277e-02\\n1.06749378e-01 2.13868350e-01 -3.92062217e-01 4.30869877e-01\\n3.81475031e-01 -3.18168133e-01 4.69988100e-02 -5.77898286e-02\\n7.84902945e-02 1.67840011e-02 5.77942282e-02 1.90533012e-01\\n-3.25671464e-01 4.36684102e-01 1.52655467e-01 -2.08124131e-01\\n-1.16687492e-01 -5.00429213e-01 -1.45758063e-01 1.03334613e-01\\n7.00921193e-02 1.75320417e-01 1.98287010e-01 1.44764081e-01\\n2.14559302e-01 -6.63944855e-02 4.77343313e-02 8.63546908e-01\\n-1.00870907e-01 7.56791830e-02 -3.08605552e-01 2.90285677e-01\\n9.98977646e-02 -2.54350811e-01 1.35866091e-01 3.24197292e-01\\n6.54907301e-02 -1.41169176e-01 -1.38822615e-01 3.66803408e-01\\n2.42236219e-02 -2.41679013e-01 -3.26140016e-01 1.55222863e-01\\n-6.09005839e-02 -4.51751173e-01 6.55838549e-01 1.40631840e-01\\n1.64827034e-01 5.78818470e-02 5.73030412e-02 -5.69413006e-02\\n-1.63425356e-01 2.36143649e-01 3.63350939e-03 1.62799269e-01\\n-3.91333103e-01 -1.68635905e-01 -2.19548643e-01 1.91870764e-01\\n-4.14001912e-01 5.32749519e-02 -4.86575738e-02 -1.20030887e-01\\n2.13349715e-01 4.79401723e-02 -3.53974074e-01 2.24503756e-01\\n-7.99422637e-02 7.30464831e-02 8.44773464e-03 3.74231666e-01\\n-1.76427454e-01 2.79214054e-01 -1.75733864e-02 2.15985291e-02\\n5.81681192e-01 1.58919781e-01 1.43750519e-01 -6.24006651e-02\\n4.13707197e-01 -3.33591625e-02 2.45814204e-01 1.24958865e-01\\n-5.98003685e-01 2.83307970e-01 2.59336410e-03 -4.66932356e-02\\n1.24997407e-01 -7.48808086e-02 2.98284024e-01 -2.37781480e-01\\n-5.32882810e-02 -1.28547683e-01 -3.20108086e-01 -2.75983483e-01\\n-3.16191822e-01 -3.88384536e-02 4.02938873e-01 -3.89291346e-01\\n-1.84234902e-01 2.31036231e-01 -5.79838753e-01 7.57405418e-04\\n2.37409532e-01 2.09100649e-01 1.44448936e-01 3.77837680e-02\\n-1.92949131e-01 -5.76581061e-01 1.26486599e-01 -3.88797134e-01\\n-4.09572899e-01 1.52746230e-01 -2.65641958e-01 2.90792108e-01\\n1.63834050e-01 3.61840278e-02 -1.02389731e-01 1.80362970e-01\\n-2.09097371e-01 -6.09170310e-02 1.03239700e-01 4.64447141e-02\\n2.92184651e-01 -2.99485177e-02 -4.63842064e-01 4.03230727e-01\\n-1.75012752e-01 5.36606967e-01 5.61482348e-02 -8.61993134e-01\\n5.12048662e-01 3.68607163e-01 -7.78630897e-02 -2.82100409e-01\\n5.29697239e-01 -3.58763307e-01 -5.78892305e-02 1.30633846e-01\\n-4.00379688e-01 -4.63921905e-01 2.34218016e-01 -1.21433347e-01\\n-2.52138346e-01 4.32421654e-01 3.87500636e-02 1.04235232e-01\\n2.83055067e-01 -1.92810193e-01 -8.84094015e-02 1.31552950e-01\\n-5.00121191e-02 -1.87601835e-01 -4.12615448e-01 -1.74062133e-01\\n-8.13117176e-02 -5.60195506e-01 -9.19006690e-02 -4.31031317e-01\\n-2.58795887e-01 -2.91581243e-01 -2.44507104e-01 2.44405165e-01\\n3.00125420e-01 2.07948416e-01 -1.06471954e-02 9.41217244e-02\\n-1.33113131e-01 -6.71977639e-01 1.46995122e-02 1.98551238e-01\\n3.14397931e-01 2.92355597e-01 9.92879495e-02 1.97510589e-02\\n-4.36277948e-02 6.11395776e-01 -3.25319767e-01 -1.90594807e-01\\n7.74749517e-02 2.00603947e-01 2.65356340e-03 -9.14986432e-02\\n2.17342481e-01 4.71254587e-01 -3.14771295e-01 3.35379094e-02\\n-1.01441391e-01 -1.20668501e-01 4.31504428e-01 4.04901989e-02\\n-4.19822097e-01 -2.27966368e-01 -1.34825483e-01 1.97618738e-01\\n-5.14842153e-01 -2.42890805e-01 5.50206780e-01 2.17365250e-01\\n1.68024316e-01 6.58915266e-02 3.31592351e-01 -1.05985023e-01\\n-7.17081130e-02 -2.73263007e-01 1.78925306e-01 1.12347141e-01\\n1.01773366e-01 1.49198771e-01 -8.95736367e-02 -6.67877674e-01\\n-3.40427327e+00 -1.23453051e-01 2.77135253e-01 -2.96220213e-01\\n1.18098922e-01 -8.04301277e-02 5.10709500e-03 -7.65916482e-02\\n-3.53036672e-01 -2.71440074e-02 -1.78821564e-01 -9.39929187e-02\\n1.20726004e-01 3.11975926e-01 1.31867751e-01 1.53629094e-01\\n1.79227531e-01 -2.27882341e-01 -3.51826958e-02 3.75247985e-01\\n-1.56780422e-01 -5.70262909e-01 1.48272887e-01 -7.54080191e-02\\n2.79952943e-01 2.96422094e-01 -3.77056092e-01 -6.48013726e-02\\n-2.42913052e-01 -1.44979417e-01 1.84555992e-01 -1.48825243e-01\\n-1.85628921e-01 3.24672729e-01 1.52303696e-01 3.89751978e-03\\n1.35136038e-01 -3.90241951e-01 -1.05719112e-01 -4.07836050e-01\\n1.19719192e-01 -6.53440177e-01 -1.27276003e-01 -5.93451150e-02\\n6.80754721e-01 -3.91052514e-01 1.52327970e-01 4.89618368e-02\\n1.07837066e-01 1.36217833e-01 4.42412263e-03 7.20952377e-02\\n-1.63893029e-01 -1.88572228e-01 -3.67531255e-02 -9.70066711e-02\\n5.59287727e-01 4.63393331e-01 -1.20574407e-01 -7.64947012e-02\\n1.90266746e-03 -4.19158578e-01 -5.18979967e-01 -2.36372352e-01\\n-1.14190236e-01 -3.75748605e-01 -5.38603425e-01 -4.67436731e-01\\n-1.72307074e-01 -2.84735765e-02 -8.87352601e-02 6.40908778e-01\\n-3.14416856e-01 -3.44260871e-01 5.55557944e-02 -5.15688539e-01\\n2.14485392e-01 -1.99642077e-01 -1.65354405e-02 -1.55966640e-01\\n-3.50134224e-01 -4.94431198e-01 -5.75276930e-03 -4.03048880e-02\\n-1.17348514e-01 -2.84547716e-01 8.50421190e-02 -9.62380841e-02\\n-2.38804758e-01 -5.52522302e-01 4.58003640e-01 2.36935228e-01\\n2.94671685e-01 9.25478935e-02 4.33803797e-01 -2.94244830e-02\\n3.87070149e-01 -9.13835987e-02 -8.20490941e-02 -4.75168198e-01\\n-9.01101250e-03 -1.21459793e-02 5.50556958e-01 -2.51636952e-01\\n1.83209591e-02 1.07621066e-01 -2.72569478e-01 -8.92712921e-02\\n3.05585384e-01 8.60859081e-02 -2.17219368e-02 -2.42850915e-01\\n3.86937767e-01 -1.83028385e-01 -2.52983630e-01 1.28757015e-01\\n1.13671571e-01 6.53700590e-01 3.36460955e-02 -4.43137437e-01\\n-1.42225295e-01 5.41446328e-01 1.83623265e-02 -9.17544961e-02\\n-1.63579002e-01 1.15149036e-01 -1.77037731e-01 1.51949599e-01\\n9.27381217e-02 -8.33117962e-02 -2.19866872e-01 -1.21244967e-01\\n-1.15589291e-01 3.11746120e-01 1.00142680e-01 7.01145604e-02\\n-6.82803541e-02 -5.08234859e-01 -1.28546730e-01 2.25481898e-01\\n1.23689227e-01 3.65664780e-01 1.79882243e-01 -3.48038673e-01\\n-4.07255627e-02 3.43279779e-01 -1.33009955e-01 1.18463516e-01\\n-2.94061244e-01 1.42191038e-01 -5.66983998e-01 -2.16531634e-01\\n-2.72350937e-01 -4.73580062e-01 9.00574401e-02 3.07187706e-01\\n1.20158635e-01 8.23580846e-03 1.54008508e-01 -4.86676753e-01\\n3.02419186e-01 2.01116204e-01 2.20532343e-01 1.30261317e-01\\n1.04355570e-02 4.85248536e-01 -4.08104993e-02 -1.69405416e-01\\n-2.37413377e-01 1.73717156e-01 -1.20568082e-01 -2.15614751e-01\\n8.96191970e-02 -4.46402729e-01 -1.36305273e-01 3.11919212e-01\\n9.13098454e-02 -1.75334379e-01 -2.81290799e-01 1.24901235e-01\\n1.77733582e-02 -3.96792680e-01 -2.58859605e-01 -3.88166010e-02\\n3.31468195e-01 8.32816511e-02 3.06448132e-01 -3.98189247e-01\\n-6.95386678e-02 -3.85986008e-02 -1.26990139e-01 4.79964912e-01\\n6.83832541e-02 4.05992419e-02 -2.45811284e-01 -1.47399843e-01\\n3.92803520e-01 -4.07372788e-02 8.05737264e-03 -1.38660356e-01\\n1.00815907e-01 -2.91646540e-01 -5.76804101e-01 5.48911616e-02\\n8.79654754e-03 -1.61694512e-01 -9.58793983e-03 4.99398150e-02\\n1.11470535e-01 1.39742896e-01 -5.87651134e-01 -3.01165879e-01\\n-2.59002030e-01 -1.13334894e-01 7.17857555e-02 -4.02751476e-01\\n1.94065226e-03 -3.93000320e-02 -5.03884733e-01 2.93441981e-01\\n-3.06661218e-01 -2.74443738e-02 5.94434701e-02 6.70292675e-02\\n-4.42892879e-01 -1.49410471e-01 6.85130805e-03 2.62579530e-01\\n-2.31299803e-01 -2.98144698e-01 -8.35620239e-03 -9.78533506e-01\\n1.12062857e-01 -1.38391986e-01 -1.90602630e-01 1.30227163e-01\\n-1.11594066e-01 -7.66904294e-01 7.70014971e-02 -4.23831254e-01\\n-1.09480612e-01 2.77136303e-02 -1.78155780e-01 -3.96050751e-01\\n1.04108267e-01 -4.67281602e-02 -3.75994712e-01 3.17324787e-01\\n-4.02373970e-01 4.30548370e-01 -1.05763279e-01 1.14853121e-01\\n-6.76466078e-02 -3.37308347e-01 8.88355002e-02 -4.53499675e-01\\n-4.58952814e-01 -1.42902657e-01 -3.17048341e-01 -2.16562524e-01\\n-4.70679514e-02 -3.29149067e-01 -1.36875525e-01 8.73699263e-02\\n2.77855098e-01 6.08882904e-02 -8.87329355e-02 -2.30748579e-01\\n1.26305848e-01 -5.17383516e-01 8.54457989e-02 -9.52324122e-02\\n6.88783899e-02 -1.34683624e-01 1.83235601e-01 1.67628780e-01\\n2.16897056e-01 -4.07795638e-01 3.05683672e-01 -2.55069941e-01\\n-3.37445498e-01 -2.94581223e-02 2.05443110e-02 -9.77253541e-02\\n3.67869318e-01 -4.55028176e-01 8.15289766e-02 4.22715455e-01\\n1.35174692e-01 2.31874567e-02 2.34063357e-01 -1.02540761e-01\\n-4.27680537e-02 2.50943691e-01 -2.18028829e-01 1.20252252e-01\\n7.65150249e-01 8.76486674e-02 1.92279875e-01 1.05081812e-01\\n7.75873289e-02 4.91746753e-01 5.26553631e-01 1.11673297e-02\\n-1.12475725e-02 2.69566923e-01 1.51175171e-01 -5.53785741e-01\\n1.87736098e-03 2.10916400e-02 -2.96673566e-01 -2.98183978e-01\\n6.23176038e-01 5.14166594e-01 -4.80758458e-01 -2.30834574e-01\\n-1.10985503e-01 -1.80588260e-01 2.56579489e-01 -1.70540977e-02\\n5.01656011e-02 -2.52146810e-01 4.68752444e-01 -1.70893092e-02\\n2.91347921e-01 5.04788339e-01 -2.01266304e-01 -4.36163902e-01\\n-5.57570830e-02 2.42272690e-01 6.49423851e-03 4.19977367e-01\\n-1.96958572e-01 2.48409212e-01 -1.12001345e-01 1.35546133e-01\\n-1.45791426e-01 1.03251167e-01 1.28817901e-01 6.72832951e-02\\n2.18418181e-01 4.52886075e-02 5.25325418e-01 5.55955529e-01\\n3.54622275e-01 4.35943604e-01 3.39612544e-01 3.76432128e-02\\n4.22105312e-01 5.08259773e-01 3.52312207e-01 1.35431975e-01\\n6.53752452e-03 2.02182055e-01 1.19915195e-01 -1.17612153e-01\\n4.19639379e-01 4.43566322e-01 1.58008561e-01 9.35155213e-01\\n3.11161578e-01 2.67721802e-01 7.23753572e-01 -6.80542946e-01\\n-2.62681186e-01 4.18906137e-02 4.55183804e-01 -3.75722319e-01\\n-1.74890086e-01 5.74589111e-02 -1.44293889e-01 2.68932730e-01\\n-4.09265846e-01 -1.80526927e-01 -3.05157080e-02 2.02174395e-01\\n-1.10508114e-01 -1.87201574e-01 -2.70406097e-01 -1.42553879e-03\\n-1.53703019e-01 -1.12835959e-01 -4.81709242e-01 -3.57812122e-02\\n-2.53656954e-01 -1.37490965e-02 -1.10262230e-01 -7.71029294e-02\\n-5.15156388e-02 -4.24429059e-01 -1.02144532e-01 2.31922809e-02\\n2.51375049e-01 -1.59547374e-01 -6.03739992e-02 -2.26317048e-01\\n2.75582910e-01 2.23700479e-01 5.12707114e-01 8.10625926e-02\\n4.93026860e-02 -3.21511418e-01 -1.84924185e-01 1.76770315e-01\\n-3.30614448e-02 1.20313875e-01 8.11151788e-02 3.81365865e-01\\n-3.59658450e-01 -1.57756791e-01 1.26158029e-01 5.05666256e-01\\n-4.15962398e-01 -5.99429011e-02 -2.17363805e-01 1.96478471e-01\\n1.67586699e-01 1.13166049e-01 -1.50309250e-01 2.08142144e-03\\n-1.48002848e-01 -4.37538445e-01 2.74954736e-01 -4.93658446e-02\\n-1.13676094e-01 1.15721688e-01 2.16775492e-01 1.81813806e-01\\n-2.20195144e-01 1.62313543e-02 -1.33789089e-02 2.45802268e-01\\n7.06153736e-02 4.13320750e-01 -1.82809949e-01 -3.51099581e-01\\n-2.05129609e-01 2.12871283e-01 -1.78027332e-01 5.29427081e-02\\n-7.38736149e-03 3.21941763e-01 1.00707794e-02 7.08279312e-02\\n4.11218345e-01 -9.13877413e-03 -2.07779884e-01 -1.65849954e-01\\n-1.56093091e-01 -2.72005826e-01 -4.59868386e-02 -2.32684389e-02\\n2.07152620e-01 -3.17763269e-01 -4.40726355e-02 -4.98216897e-02\\n-5.48002087e-02 -3.57993126e-01 -1.61693580e-02 -8.79636183e-02]]',\n", + " 'We are looking for a talented Software Engineer who is eager to apply his skills in challenging development projects. You implement the GUI of an RFID card reader in C# and TypeScript; you design a scalable device management platform that runs on Azure and is implemented with Microservices or you port automated test cases to a new test robot for a security critical medical device. These are some example projects that are waiting for you at Greenliff. The ideal candidate is able to independently design, implement and test web applications and mobile apps. You are a great team player and you have firsthand experience working in an agile environment. Test before code, continuous integration and code reviews are some of the practices you consider a prerequisite for any successful development project. And you continuously look at new technologies, methods, and tools to improve software engineering best practices. Specifically, you possess some or all of the following: 3 years of working experience in object-oriented software development with C# or Java Experience with web development and/or experience in low-level software development Open personality and ability to work both independently and in a team Experience with Python and Linux a plus University degree in IT, computer science or similar Strong written and oral communication skills in German and/or English We offer: Challenging projects with cutting edge technologies Flexible working hours and 5 weeks of vacation Continuous education and growth A great work environment in a small and winning team Greenliff is a Digital Product Design Agency. Working at the intersection of strategy, design, and technology we create websites, mobile apps, IoT solutions or entire ecosystems. We lead organizations into their digital future and help them to reach their business goals and delight their customers. We look forward to your application Please apply directly online',\n", + " '[\"Verbal Communication Skills\"]',\n", + " '[\"Web Applications\", \"Test Case\", \"Tooling\", \"Object-Oriented Software Development\", \"Agility\", \"Computer Science\", \"Design Strategies\", \"Device Management\", \"Good Agricultural Practices\", \"Continuous Integration\", \"TypeScript\", \"Mobile App\", \"Python (Programming Language)\", \"Linux\", \"Digital Productions\", \"Agile Edge Technologies\", \"Test Automation\", \"Levelling\", \"Web Development\", \"Hostile Work Environment\", \"Microservices\", \"Software Engineering\", \"Design And Technology\", \"Medical Devices\", \"Product Design\", \"C# (Programming Language)\", \"Digitization\", \"Robotics\", \"Scalability\", \"Code Review\", \"Software Development\", \"Test Environment Management\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Java (Programming Language)\", \"Web Testing\"]',\n", + " \"['English', 'Aragonese']\"],\n", + " ['75',\n", + " 'data preparation expert',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " \"['English']\"],\n", + " ['12',\n", + " 'life sciences automation software - pharmaceutical process engineer',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-1.35900736e-01 3.37008059e-01 3.87637317e-01 -7.05266744e-02\\n4.77110714e-01 -1.83392093e-02 -1.04695909e-01 2.08108395e-01\\n-7.68365413e-02 -3.44455898e-01 -7.66173601e-02 -1.98261082e-01\\n4.02548071e-03 8.75034928e-02 3.48262899e-02 4.17140365e-01\\n3.62359345e-01 7.67460316e-02 -1.52891204e-01 1.74007729e-01\\n1.21938467e-01 -2.49350797e-02 2.33157575e-01 5.84687054e-01\\n2.31848329e-01 -4.97772954e-02 -3.27665918e-02 9.58649218e-02\\n-1.06037609e-01 -1.89770162e-01 4.55964327e-01 -8.01572762e-03\\n-2.05779925e-01 -2.64053077e-01 2.58314073e-01 8.04430395e-02\\n-1.14821725e-01 4.18429822e-02 -7.01132864e-02 -6.00183532e-02\\n-5.29095411e-01 -1.17083527e-01 -1.73027039e-01 -6.08884320e-02\\n-3.54867399e-01 -2.75044411e-01 2.77083039e-01 -1.41936019e-01\\n5.44821247e-02 4.80018929e-03 -3.21774185e-01 2.96790034e-01\\n-2.87900627e-01 -7.91225955e-02 2.94244647e-01 5.94793916e-01\\n-4.73852381e-02 -3.51227671e-01 -5.07146955e-01 -1.85227767e-01\\n1.59930110e-01 -1.76268563e-01 2.20607519e-01 -1.80243000e-01\\n5.85755110e-01 -2.09433548e-02 4.84173112e-02 2.05056459e-01\\n-7.75063038e-01 7.83669055e-02 -4.07003611e-01 -1.10483669e-01\\n-2.43425816e-01 -1.32555515e-01 -2.07842827e-01 -1.59221321e-01\\n-1.13043100e-01 3.14516187e-01 -7.76443556e-02 1.67311430e-01\\n-9.34980735e-02 3.59002054e-01 -2.57168859e-01 1.72262058e-01\\n1.68889493e-01 3.39223772e-01 3.65950227e-01 2.35787109e-01\\n-4.53440934e-01 3.98028672e-01 2.91345954e-01 -2.76763409e-01\\n2.00713217e-01 7.01319128e-02 2.65346110e-01 -9.70035568e-02\\n1.63380548e-01 1.63652346e-01 -2.14942127e-01 2.29279846e-01\\n2.46203214e-01 -1.74400985e-01 3.36422697e-02 -5.92457354e-02\\n7.26257637e-03 -1.26922518e-01 1.22091852e-01 2.29399741e-01\\n-3.67215037e-01 4.55704421e-01 2.04881504e-02 -3.18729401e-01\\n5.83496764e-02 -3.88833642e-01 -2.01744720e-01 6.85402155e-02\\n-1.13416612e-01 4.04772907e-02 1.96214363e-01 3.94856364e-01\\n1.23173088e-01 -1.24326117e-01 1.56105712e-01 7.08196044e-01\\n-1.37462020e-01 1.19790927e-01 -1.92502156e-01 4.24439818e-01\\n9.44800004e-02 -3.40727091e-01 2.38640606e-01 2.05428332e-01\\n7.01454133e-02 -7.87964836e-03 -2.52978355e-01 2.63734698e-01\\n-9.89286751e-02 -1.12818137e-01 -3.28700334e-01 1.61666319e-01\\n-1.52712256e-01 -5.06042480e-01 5.31722426e-01 -1.04193896e-01\\n8.01361427e-02 -1.31680816e-01 -1.44371137e-01 -1.50106117e-01\\n-1.15930319e-01 3.40936959e-01 9.23551470e-02 2.06011623e-01\\n-1.86371207e-01 -1.52510181e-01 -9.59331915e-02 1.07779384e-01\\n-2.01470375e-01 1.13683388e-01 -2.81006902e-01 -2.78189778e-01\\n4.20310199e-01 2.30339970e-02 -4.30638909e-01 4.34906304e-01\\n-6.00774325e-02 -2.64419150e-02 -1.42654583e-01 4.13706154e-01\\n-1.98500693e-01 1.27646908e-01 -1.28398508e-01 -1.99127212e-01\\n5.98143756e-01 -2.31324248e-02 1.96196914e-01 -9.34875980e-02\\n3.24581265e-01 -4.87264171e-02 2.81129092e-01 4.06281352e-02\\n-7.59101808e-01 5.73871136e-01 -1.82501748e-01 -5.02617732e-02\\n1.54990237e-02 -1.12970166e-01 3.95037711e-01 -3.71667981e-01\\n-5.77603653e-02 -1.95498377e-01 -1.40281096e-01 -4.11225259e-01\\n-2.89209008e-01 -7.41717368e-02 3.17971706e-01 -4.15709108e-01\\n-3.72756459e-02 1.34817138e-01 -6.46854043e-01 -4.18783277e-02\\n2.56557822e-01 2.22594902e-01 2.67689198e-01 1.68186486e-01\\n-9.41838622e-02 -4.31294680e-01 2.00409919e-01 -4.48696613e-01\\n-1.82614788e-01 2.17416182e-01 -1.58664018e-01 2.93320179e-01\\n1.45262748e-01 -5.80975860e-02 -8.68704319e-02 4.13420759e-02\\n-1.42418355e-01 -9.98504460e-03 3.01778376e-01 2.26116627e-02\\n3.36842746e-01 4.27199565e-02 -4.68735844e-01 5.35052240e-01\\n-2.41843283e-01 4.10130799e-01 5.57327494e-02 -8.04191649e-01\\n4.03941810e-01 2.53817439e-01 1.00686356e-01 -3.04099083e-01\\n6.95228636e-01 -2.20153555e-01 -1.56561762e-01 7.45294392e-02\\n-3.67448986e-01 -7.16382116e-02 8.10698047e-02 -1.96044952e-01\\n-2.43990093e-01 6.74310923e-01 1.36479467e-01 8.86844769e-02\\n2.93387264e-01 -9.43230093e-02 -1.20433778e-01 4.87745851e-02\\n-2.58201718e-01 -1.95503145e-01 -4.75753725e-01 -1.37521133e-01\\n-2.86553968e-02 -4.56405431e-01 -2.25885451e-01 -5.19183278e-01\\n-1.17374532e-01 -3.87320369e-01 -1.82109579e-01 1.18372247e-01\\n7.79131949e-02 9.74435359e-02 -3.19947675e-02 2.39691027e-02\\n-2.34714359e-01 -5.91517448e-01 7.88851827e-03 9.48230326e-02\\n1.52245358e-01 3.05394232e-01 2.01217294e-01 -2.02174261e-02\\n4.69543189e-02 4.20185000e-01 -4.21439469e-01 -3.49502146e-01\\n3.08832467e-01 2.59488910e-01 -5.86671233e-02 -1.02392614e-01\\n1.45525143e-01 3.67267072e-01 -1.59046039e-01 9.59858745e-02\\n3.00354101e-02 -8.20549205e-02 2.57226199e-01 -1.07900016e-01\\n-2.57970750e-01 -3.75264645e-01 -1.61657125e-01 2.03459918e-01\\n-5.08236945e-01 -4.07249391e-01 5.25337577e-01 1.68215781e-01\\n8.63135085e-02 2.08342463e-01 3.05325419e-01 -7.59216249e-02\\n-2.16351449e-01 -2.02726424e-01 1.19926125e-01 1.44405857e-01\\n1.96305871e-01 2.69730892e-02 -1.35280758e-01 -4.89148736e-01\\n-3.80569553e+00 -2.33770192e-01 5.29177338e-02 -1.76676452e-01\\n3.05445910e-01 -1.01419598e-01 2.00123683e-01 -3.33707705e-02\\n-3.42259586e-01 1.69641912e-01 -2.14444339e-01 -2.77497500e-01\\n1.71173215e-01 3.21829319e-01 1.88864052e-01 1.68941945e-01\\n-3.53389829e-02 -3.87438387e-01 3.31928805e-02 4.38828111e-01\\n-1.51994139e-01 -7.06387043e-01 1.94189459e-01 -8.34364146e-02\\n3.20870906e-01 2.25700855e-01 -4.99895602e-01 1.07966512e-02\\n-4.47183013e-01 -1.98696867e-01 4.13718447e-02 -1.80278510e-01\\n-1.33627728e-01 2.53090203e-01 1.69051826e-01 -1.81981310e-01\\n6.54638112e-02 -3.27615380e-01 -6.59165904e-02 -4.74358320e-01\\n-2.27376837e-02 -5.34257770e-01 2.12911777e-02 -8.51384252e-02\\n5.39033949e-01 -2.34739721e-01 1.67432725e-01 6.82324544e-03\\n1.40609115e-01 3.25931042e-01 1.89029843e-01 5.45069613e-02\\n-8.86569619e-02 -1.37966007e-01 -4.78763022e-02 -1.15207851e-01\\n6.12861872e-01 4.62603867e-01 -3.06339234e-01 -6.02365285e-02\\n-1.01854324e-01 -3.34493041e-01 -4.66960430e-01 -3.55866492e-01\\n-1.61076143e-01 3.74984071e-02 -3.54818940e-01 -3.39243203e-01\\n-1.56895518e-01 -9.78421941e-02 2.32039131e-02 5.07143855e-01\\n-4.56389457e-01 -3.96192610e-01 -5.53319119e-02 -4.98949766e-01\\n2.50937074e-01 -1.02742687e-01 -3.58765107e-03 -1.02748379e-01\\n-2.64514148e-01 -4.88921732e-01 1.33445278e-01 1.36371344e-01\\n-1.47419348e-02 -5.49635999e-02 1.27054870e-01 -1.40207499e-01\\n-3.96460384e-01 -4.29396451e-01 4.30402726e-01 1.43854171e-01\\n3.96206439e-01 3.11987028e-02 1.06990971e-01 -5.91254905e-02\\n3.97089362e-01 -1.65298671e-01 1.35071084e-01 -6.07805729e-01\\n-7.62010068e-02 2.33849324e-03 4.72364604e-01 -1.74994558e-01\\n-3.92611250e-02 -4.58306298e-02 -2.03699455e-01 -2.76299752e-02\\n3.86376977e-01 5.03855199e-03 1.70189440e-01 -3.33268762e-01\\n3.49835277e-01 -4.16788220e-01 -1.66385472e-01 1.06250435e-01\\n4.80357036e-02 6.89068794e-01 -3.93514931e-02 -2.14028656e-01\\n-1.44119546e-01 4.18790460e-01 -2.60356992e-01 -2.33221322e-01\\n-1.77833766e-01 8.53324533e-02 -3.31511766e-01 2.27675378e-01\\n6.74506724e-02 4.30931002e-02 -2.42472947e-01 1.32029921e-01\\n-1.31067872e-01 1.36223346e-01 3.21124852e-01 1.75222799e-01\\n-8.49614441e-02 -2.95523465e-01 1.08365707e-01 9.46018398e-02\\n2.43121862e-01 2.52556622e-01 6.62851855e-02 -3.58896017e-01\\n-1.81069598e-04 2.66332507e-01 -1.87538445e-01 2.30481535e-01\\n-7.19343424e-02 1.47041276e-01 -3.79531562e-01 -2.32273370e-01\\n-3.67888510e-01 -2.18961656e-01 1.37755536e-02 2.62616426e-01\\n1.71056241e-01 -1.78842872e-01 -6.67372532e-03 -4.30188954e-01\\n1.93353996e-01 1.44242365e-02 3.06897372e-01 -2.59116106e-02\\n-6.11105859e-02 5.96499205e-01 6.01341017e-03 -1.36708945e-01\\n-1.39636293e-01 1.48894534e-01 -1.11623645e-01 -1.13462634e-01\\n-6.85652196e-02 -3.47403765e-01 -1.52224973e-01 4.35668349e-01\\n1.53003991e-01 -1.25101149e-01 -1.39432609e-01 3.45505625e-01\\n-9.86064523e-02 -3.60586196e-01 -1.16926529e-01 -1.31755173e-01\\n1.25144407e-01 4.84942272e-02 2.80050874e-01 -4.58821297e-01\\n-1.80684719e-02 -7.74527714e-02 1.20074406e-01 2.68468440e-01\\n-4.68331985e-02 8.61335173e-02 -3.93752530e-02 -2.37181738e-01\\n2.92800844e-01 2.53261961e-02 -9.10479724e-02 -1.20365992e-03\\n1.49060398e-01 -2.59549588e-01 -4.27665532e-01 -3.48791294e-03\\n-1.37237720e-02 -2.40145892e-01 1.40754748e-02 1.71184510e-01\\n1.44792840e-01 6.83917925e-02 -5.63574314e-01 -1.83828250e-01\\n-4.66734946e-01 -1.82017200e-02 -2.50535399e-01 -5.81244230e-01\\n1.29216343e-01 -7.29485974e-02 -5.18924594e-01 1.59316719e-01\\n-1.49649046e-02 5.63162342e-02 7.35803396e-02 -1.93694048e-02\\n-2.44499564e-01 -9.94506776e-02 2.16344640e-01 -3.57895903e-03\\n-2.31147766e-01 -2.12244138e-01 -6.70703780e-03 -7.90632606e-01\\n2.18441993e-01 -5.97881265e-02 -9.51610059e-02 2.44452455e-03\\n-8.14541206e-02 -7.11369038e-01 2.02497113e-02 -3.18705201e-01\\n-1.84834853e-01 -3.11227739e-02 -1.97904289e-01 -3.07202011e-01\\n1.49713367e-01 -1.59056447e-02 -1.80658430e-01 2.98000932e-01\\n-3.42872143e-01 5.20026684e-01 -3.26913372e-02 1.00753970e-01\\n2.94172298e-02 -2.84903467e-01 1.92626059e-01 -2.75262237e-01\\n-4.21924174e-01 7.37971067e-03 -4.63548228e-02 -9.62580889e-02\\n-1.77730128e-01 -1.33880883e-01 -2.15865105e-01 -2.01330464e-02\\n4.30182636e-01 5.76029308e-02 -3.65230441e-01 4.22918499e-02\\n-6.83179051e-02 -3.43263328e-01 2.23782510e-01 -1.19987212e-01\\n1.49750840e-02 -1.86788350e-01 3.28836918e-01 -2.88086478e-02\\n1.48401514e-01 -3.78792405e-01 5.29286265e-01 -2.65277296e-01\\n-3.24002057e-01 -1.09089389e-02 1.25425637e-01 1.72105610e-01\\n2.08376244e-01 -5.48600197e-01 -1.45842105e-01 3.94683301e-01\\n-1.39353082e-01 7.72094801e-02 3.37335348e-01 -1.26030117e-01\\n-2.96468884e-01 3.43366951e-01 -3.70943069e-01 1.26323476e-01\\n7.66155124e-01 2.97869205e-01 1.57426223e-01 1.50909483e-01\\n9.78701115e-02 2.19130248e-01 4.14472759e-01 8.67191479e-02\\n-2.47956580e-03 4.09959197e-01 2.12304950e-01 -5.11935234e-01\\n-9.20375884e-02 8.37716982e-02 -4.28258255e-02 -3.33010435e-01\\n6.51448071e-01 2.91549683e-01 -3.09152126e-01 -4.65715557e-01\\n-1.75747633e-01 -2.53882527e-01 2.03139484e-01 -1.06264919e-01\\n2.71128327e-01 -3.19559336e-01 5.12916446e-01 -1.54832546e-02\\n1.46046817e-01 6.07490718e-01 -1.27906486e-01 -2.46206671e-01\\n-1.38618708e-01 1.43004909e-01 1.92742318e-01 5.39087474e-01\\n-2.74954382e-02 1.66665956e-01 -9.03924555e-02 1.08849242e-01\\n-2.17100620e-01 2.15558112e-02 1.80767253e-01 8.29418898e-02\\n-2.93203052e-02 2.21380472e-01 4.46094692e-01 4.39561844e-01\\n4.54562724e-01 3.80093098e-01 2.51114637e-01 1.40891988e-02\\n5.74753344e-01 6.53482318e-01 2.04343006e-01 -3.73096578e-02\\n4.64794263e-02 5.07386401e-02 4.50914651e-02 1.24156706e-01\\n3.56246680e-01 3.96617115e-01 -4.95357141e-02 9.61341977e-01\\n3.39802206e-01 2.67889798e-01 6.14306808e-01 -4.71253604e-01\\n-1.92986280e-01 9.19901952e-02 2.31386885e-01 -3.51424992e-01\\n-3.45250741e-02 1.36980742e-01 -1.79892808e-01 1.27114207e-01\\n-3.72603059e-01 -7.30528161e-02 -1.32524520e-01 1.46416232e-01\\n2.17169657e-01 -1.34445995e-01 -1.89865217e-01 6.24035895e-02\\n-4.53813337e-02 -8.10359865e-02 -4.19992089e-01 -3.22834671e-01\\n-3.35428238e-01 -1.21769592e-01 -1.21298581e-01 -1.26673073e-01\\n-4.23744321e-02 -1.74182475e-01 -1.44999444e-01 -8.28145910e-03\\n1.92868739e-01 -3.57203424e-01 -1.44437298e-01 -1.59521893e-01\\n2.49949634e-01 2.11539388e-01 5.31395078e-01 -2.12436467e-01\\n1.58171393e-02 -1.50130272e-01 -1.11224078e-01 -6.27358779e-02\\n9.84670296e-02 1.19290665e-01 5.90902288e-04 6.31619990e-01\\n-2.66676664e-01 -1.66854739e-01 1.55666009e-01 3.90920520e-01\\n-3.72794449e-01 8.33834112e-02 -1.65653452e-02 1.12757854e-01\\n-3.42956148e-02 -1.19648091e-02 -1.49295285e-01 -2.15393212e-02\\n-1.91543877e-01 -5.27579665e-01 2.23589659e-01 1.19450912e-01\\n-1.42973840e-01 3.67619507e-02 3.22634935e-01 3.53008151e-01\\n-1.72056288e-01 -1.65461212e-01 -1.08141162e-01 2.34560803e-01\\n7.09067732e-02 3.29635501e-01 -3.01170141e-01 -1.60320282e-01\\n-2.77844489e-01 1.29179731e-01 -1.37953997e-01 1.08538315e-01\\n4.55515571e-02 2.81522810e-01 7.35567696e-03 2.25403517e-01\\n2.31338650e-01 -1.94068640e-01 -2.12201595e-01 -2.88739264e-01\\n-1.87573195e-01 1.53266974e-02 9.75074545e-02 -1.87262744e-01\\n3.24655086e-01 -2.59338081e-01 -1.57099605e-01 -1.37268424e-01\\n-1.32700861e-01 -3.39882255e-01 7.54081011e-02 5.77072576e-02]]',\n", + " 'For our Business Unit Automation within the division Life Sciences we are looking for a Pharmaceutical Process Engineer. Job description You will execute projects in the pharmaceutical industry and will take responsibility for engineering and construction of industrial process installations (e.g. CIP, SIP, formulation installations, water treatment systems, etc.). In this position, you will be responsible for: Working out process engineering solutions for and together with our customers in the pharmaceutical industry. Setting-up and delivering project related engineering documents for the different project phases. From conceptual design until construction and commissioning. For example: User requirement specifications Process and design concept Utility and process flow diagrams P&IDs Equipment specifications and datasheets Equipment lists Instrument lists Line lists Process & controls descriptions Start-up and commissioning documentation HAZOP/Risk analysis documentation Process related calculations (dimensioning, capacities, safety valves, etc.) Set-up bid calculations As part of the team, you will work together with the process engineering team members, as well as with related teams such as software, E&I, etc. to elaborate solutions, based on predefined budget and planning. You will follow-up the subcontractors’ performance and documentation. During start-up, you take care of the correct implementation, according to the applicable standards (e.g. cGMP’s) and proposed design. You make sure the content and quality of the design documents is according Agidens standards. You maintain permanent contact with the customer, the senior process engineer, the project leader and the implementation team of subcontractors. Conditions You obtained a bachelor’s degree or master’s degree in engineering or you have equivalent expertise by experience. You are fascinated by the process industry. You have experience with clean piping engineering (design, specs, installation, start-up). You are acquainted with applicable cGMP requirements and guidelines within the pharmaceutical industry. You are analytical, have a hands-on mentality and are a good communicator. You have strong organizational skills and are able to work on different projects simultaneously. You work independently, but also act as a team player within a multi-disciplinary team. You are flexible and willing to work on projects at our customers sites. You have a thorough knowledge of MS Office, (MS Project is an added value). Fluent spoken and written German is a must and profound English skills a desirable plus (French is an added value). You have a drivers licence B. Preferably, you have 2 – 3 years of relevant experience within the pharmaceutical industry. Proposal The possibility to team up with passionate, technology-driven people An environment where you can give free rein to your creativity within a well-defined framework and where intrapreneurship is encouraged A learning environment and potential for career development A culture of respect, flexibility and participative management ',\n", + " '[\"Intrapreneurship\", \"Construction\", \"Planning\", \"Management\", \"Communications\", \"Organizational Skills\", \"Creativity\"]',\n", + " '[\"Automation\", \"Software Design Documents\", \"Value-Added Services\", \"Life Sciences\", \"Conceptual Design\", \"Commissioning\", \"Analytics\", \"Industrialization\", \"Processing Industry\", \"Requirements Specifications\", \"Valves (Piping)\", \"Strategic Business Unit\", \"Calculations\", \"Installation\", \"Web Design Concepts\", \"Industrial Processes\", \"Maintainability\", \"Business Process Automation\", \"E (Programming Language)\", \"Instrumentation\", \"Executable\", \"Datasheets\", \"Process Flow Diagrams\", \"Risk Analysis\", \"Senior TeleCommunications Engineer\", \"Water Treatment\", \"Budgeting\", \"Document Processing\", \"Project-Based Solutions\", \"Document Engineering\", \"CIP System (Stereochemistry)\", \"Civil Engineering Design\", \"Pharmaceuticals\", \"Bidding\", \"Career Development\", \"Dimensioning\", \"Job Descriptions\", \"Process Engineering\", \"B (Programming Language)\", \"Acceptance and Commitment Therapy (ACT)\", \"Controllability\"]',\n", + " \"['English', 'Icelandic', 'Norwegian Bokmål']\"],\n", + " ['34',\n", + " 'data engineer- integration specialist',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.darwinrecruitment.com',\n", + " '[[-1.71152711e-01 2.59077072e-01 4.16388363e-01 -7.69490823e-02\\n3.07703286e-01 -1.53559878e-01 -7.82030821e-02 6.06545568e-01\\n-9.96811464e-02 -4.49849963e-01 -3.70184891e-02 -3.95281672e-01\\n2.18868678e-04 2.68662870e-01 1.05228372e-01 3.60706151e-01\\n9.42237824e-02 1.36238515e-01 -1.53818026e-01 2.73653269e-01\\n1.60930231e-01 -1.53849214e-01 5.86205088e-02 6.59312248e-01\\n5.31260967e-01 -1.33440066e-02 3.81680839e-02 5.59298806e-02\\n-9.14216340e-02 -3.84958029e-01 4.66182321e-01 -1.14901580e-01\\n-9.32834595e-02 -3.02908510e-01 1.02725141e-01 4.97190058e-02\\n-1.38793200e-01 -6.46172985e-02 -9.63907465e-02 -4.61775213e-02\\n-5.42719722e-01 -1.75796285e-01 3.49913239e-02 1.04533836e-01\\n-2.08092272e-01 -2.97600001e-01 1.96821660e-01 -9.32275504e-02\\n2.35762671e-01 5.86744919e-02 -6.57733679e-01 3.20011437e-01\\n-3.37387294e-01 -2.81886607e-01 2.68857628e-01 5.47582209e-01\\n-2.38885120e-01 -5.98276556e-01 -6.17879868e-01 -1.52781621e-01\\n1.49108842e-01 -1.04773112e-01 -1.30322680e-01 -3.73982161e-01\\n3.63271475e-01 1.29693989e-02 3.98209924e-03 3.46436352e-01\\n-7.72765577e-01 3.69718415e-03 -1.94843113e-01 -4.26489823e-02\\n-3.95691484e-01 -8.22267160e-02 -3.34651560e-01 -3.94917205e-02\\n-9.75010097e-02 3.51627558e-01 3.07708280e-03 -7.21185356e-02\\n-1.63001403e-01 3.65802437e-01 -2.59205550e-01 4.14705753e-01\\n2.92438954e-01 2.38347486e-01 -1.60492063e-02 3.23879331e-01\\n-2.96081543e-01 3.65939170e-01 2.44429991e-01 -3.96939576e-01\\n1.98881313e-01 -4.96961847e-02 4.86192852e-01 1.90917570e-02\\n2.31540948e-01 1.43980980e-01 -3.09347242e-01 2.71583736e-01\\n3.11403215e-01 -2.34819308e-01 2.66075805e-02 -1.99143007e-01\\n8.03522915e-02 5.36019541e-02 5.70297055e-02 3.20211917e-01\\n-2.19905853e-01 3.64961714e-01 5.51870055e-02 -2.15960443e-01\\n-1.21709511e-01 -4.97700125e-01 -1.47314623e-01 2.38448028e-02\\n1.04547702e-01 1.75815195e-01 1.37472615e-01 1.77860588e-01\\n1.84338465e-01 4.06160615e-02 1.23005964e-01 8.62954199e-01\\n-1.40493020e-01 -4.85756509e-02 -3.02644014e-01 3.52278858e-01\\n4.08373214e-03 -3.17683697e-01 2.32073724e-01 1.85354143e-01\\n9.67782587e-02 -2.92167187e-01 -1.68339521e-01 2.12771177e-01\\n-1.61102831e-01 -2.50082761e-01 -4.17719603e-01 2.84140825e-01\\n-1.93968304e-02 -2.24933863e-01 5.89011550e-01 9.93812606e-02\\n1.43918455e-01 6.50120154e-02 -1.02823339e-01 -1.89952582e-01\\n-1.40138790e-01 1.73803419e-01 -1.52087450e-01 1.11914687e-01\\n-3.69631380e-01 -2.56547004e-01 -2.07811907e-01 1.23547815e-01\\n-3.81246895e-01 1.74268618e-01 -1.49396166e-01 -1.21015057e-01\\n4.18723524e-01 -1.14168108e-01 -1.92640841e-01 2.85447180e-01\\n3.89463478e-03 1.60182819e-01 -2.94134542e-02 3.31345320e-01\\n-2.09844619e-01 3.42099309e-01 -5.87093681e-02 -9.90884304e-02\\n4.61123556e-01 -4.16028872e-02 3.11821159e-02 -1.44320950e-01\\n1.80267513e-01 4.77727577e-02 1.61640018e-01 2.96470542e-02\\n-5.76447666e-01 2.92820543e-01 2.83011026e-03 -4.44330536e-02\\n1.38869613e-01 -1.09063186e-01 2.26032838e-01 -3.13107967e-01\\n-1.15058698e-01 -8.43802840e-02 -3.86595309e-01 -2.35815242e-01\\n-2.64304847e-01 -2.47961506e-02 4.45627809e-01 -4.51278210e-01\\n-1.50272965e-01 1.77549198e-01 -5.53063869e-01 2.85115726e-02\\n2.02007353e-01 1.88385651e-01 1.11805320e-01 1.37542784e-01\\n-2.14490488e-01 -5.15240610e-01 1.38313919e-01 -3.98399085e-01\\n-1.31138995e-01 1.14487171e-01 -3.20616782e-01 3.28259110e-01\\n5.96674718e-02 -6.07159622e-02 -2.03210428e-01 2.17002973e-01\\n-1.94583386e-01 -2.28513647e-02 1.21927317e-02 7.74867684e-02\\n3.51046085e-01 8.74352157e-02 -3.97113502e-01 4.87487793e-01\\n-9.72517580e-02 5.61022043e-01 6.30971491e-02 -7.24981010e-01\\n4.42651629e-01 2.24135548e-01 -2.60363314e-02 -4.42214310e-01\\n7.37344921e-01 -3.53578240e-01 -2.57354435e-02 9.15373862e-02\\n-4.80822742e-01 -4.54613119e-01 2.35634044e-01 -1.05681702e-01\\n-3.39600027e-01 6.64669693e-01 5.60881086e-02 1.02770217e-01\\n3.90459120e-01 -1.41438648e-01 -2.71313816e-01 1.11383684e-02\\n-1.62154774e-03 -2.04542488e-01 -5.03658056e-01 -1.23609461e-01\\n-2.11426005e-01 -5.37865937e-01 -8.59451890e-02 -3.01981121e-01\\n-2.93673068e-01 -4.18274969e-01 -2.18557179e-01 3.03434968e-01\\n2.56226629e-01 8.33931789e-02 5.25989197e-02 1.16491862e-01\\n-1.36298001e-01 -6.16499782e-01 -1.39022484e-01 1.04356579e-01\\n3.87485147e-01 1.47009328e-01 2.20717698e-01 -8.24319292e-03\\n5.19653447e-02 6.59284234e-01 -1.24530181e-01 -2.79130071e-01\\n8.75420049e-02 1.09716922e-01 1.65351629e-01 -1.40226439e-01\\n2.32696638e-01 2.24460766e-01 -2.54679888e-01 3.66223678e-02\\n-7.26814270e-02 -6.23075776e-02 2.37096518e-01 2.25473791e-01\\n-3.57738584e-01 -2.89804310e-01 -4.66789864e-03 2.29147524e-01\\n-5.43385863e-01 -2.11731449e-01 5.60509861e-01 2.57135600e-01\\n1.91551670e-01 1.03575282e-01 3.01382005e-01 -1.68373495e-01\\n-7.41636679e-02 -4.68027219e-02 1.54666334e-01 1.94941923e-01\\n5.35463775e-03 1.36478826e-01 -1.01454929e-01 -6.52415574e-01\\n-3.57114458e+00 -1.81091771e-01 1.75098032e-01 -1.76891774e-01\\n2.09762812e-01 -1.25033170e-01 1.91609666e-01 -7.81676322e-02\\n-2.39875764e-01 -1.18186260e-02 -1.19685285e-01 -5.48293181e-02\\n2.93076366e-01 1.38446823e-01 9.21676382e-02 4.02541876e-01\\n1.44647986e-01 -1.33727863e-01 3.53083648e-02 3.76304746e-01\\n-2.50750005e-01 -5.53826392e-01 2.90468931e-01 -1.22193620e-01\\n2.14311957e-01 3.32665056e-01 -3.38045597e-01 -2.24271432e-01\\n-1.74536571e-01 -1.93988010e-01 6.35813251e-02 -3.65835607e-01\\n-1.51361033e-01 3.22549671e-01 1.36473760e-01 -1.39794812e-01\\n1.41401485e-01 -3.94342273e-01 -1.04952216e-01 -4.17705894e-01\\n1.53309062e-01 -6.32243574e-01 1.04331613e-01 -2.03156590e-01\\n8.53200734e-01 -4.28966671e-01 4.46972437e-02 9.94509235e-02\\n1.00573026e-01 2.20298558e-01 -1.07536204e-02 -3.35286744e-02\\n-1.75350592e-01 -3.27491373e-01 -1.33628860e-01 -9.51188877e-02\\n4.61980820e-01 6.10625505e-01 -9.26939994e-02 -4.79603894e-02\\n-3.33344750e-02 -3.18748981e-01 -4.85259414e-01 -3.57924521e-01\\n-2.40831673e-01 -1.85910046e-01 -5.42941809e-01 -2.47600719e-01\\n-1.17731966e-01 -2.30561182e-01 -1.65783614e-02 4.64619875e-01\\n-2.98643589e-01 -3.83568406e-01 -5.20152412e-02 -4.88804728e-01\\n2.69208968e-01 -2.02176441e-02 6.43556118e-02 -1.77715018e-01\\n-2.54451931e-01 -4.87592310e-01 -2.91238073e-02 -5.68962172e-02\\n-1.44326478e-01 -2.59494007e-01 1.25773564e-01 -1.63720563e-01\\n-1.76599905e-01 -6.29992187e-01 4.37002659e-01 1.76657274e-01\\n2.63926655e-01 2.65365541e-01 1.95337191e-01 3.78716104e-02\\n2.19407961e-01 -1.13971390e-01 1.32613629e-02 -3.46973926e-01\\n1.22808494e-01 1.53354719e-01 4.79417801e-01 -1.91011012e-01\\n5.98169342e-02 6.75777346e-02 -1.73175514e-01 -1.37411550e-01\\n2.59265542e-01 1.31003201e-01 7.45701268e-02 -3.67924899e-01\\n2.85730302e-01 -1.45719960e-01 -3.90911639e-01 5.67408502e-02\\n-3.00275330e-02 3.84301126e-01 5.56175336e-02 -3.56553972e-01\\n-2.18456805e-01 4.64878082e-01 -9.67183784e-02 5.80482138e-03\\n-3.76220316e-01 2.02217009e-02 -2.53675133e-01 2.56576717e-01\\n3.00302096e-02 -1.17799245e-01 -2.47220010e-01 -1.42625064e-01\\n-1.93779752e-01 5.08512259e-01 2.10137904e-01 4.71538231e-02\\n-7.13067576e-02 -4.45461154e-01 1.89565215e-02 2.45256722e-01\\n3.72355618e-02 5.13071835e-01 7.99548551e-02 -1.00087404e-01\\n-2.11351481e-03 3.56467277e-01 -2.14506865e-01 1.95239540e-02\\n-2.90812433e-01 3.85810994e-02 -3.91595900e-01 -3.48725021e-01\\n-2.56689012e-01 -3.59533846e-01 9.44098458e-02 4.29551005e-01\\n1.14345752e-01 -3.59961838e-02 -1.46119017e-02 -3.69988292e-01\\n2.86527306e-01 4.25643921e-02 2.26218149e-01 3.01016629e-01\\n1.10752285e-01 4.54041004e-01 1.21399330e-03 -7.97956735e-02\\n-1.84620574e-01 1.78594366e-01 -3.74453515e-01 -3.03144120e-02\\n-2.53215749e-02 -4.48089182e-01 -6.74633458e-02 6.49542093e-01\\n7.50137046e-02 -1.05809487e-01 -1.12398036e-01 1.64656878e-01\\n-1.19954392e-01 -1.76768601e-01 -2.14816317e-01 1.65701091e-01\\n3.38745445e-01 2.50026554e-01 2.13158056e-01 -3.54856759e-01\\n6.37994111e-02 2.65338533e-02 -1.19101182e-01 5.79667449e-01\\n4.31741495e-03 3.38997096e-02 -2.41813958e-01 -3.23847145e-01\\n3.96056861e-01 -2.58092403e-01 2.18026917e-02 3.34138200e-02\\n2.03289390e-01 -1.98848005e-02 -3.41778845e-01 2.04519629e-01\\n-6.83718026e-02 -2.10227937e-01 2.72059860e-03 1.67500845e-03\\n3.21044736e-02 7.10142702e-02 -5.23663521e-01 -2.65473753e-01\\n-2.54672527e-01 4.74446155e-02 -2.35670492e-01 -3.69100273e-01\\n1.75751925e-01 6.04626536e-03 -5.47858655e-01 2.92723000e-01\\n-4.43570614e-01 5.13261370e-02 3.43256921e-01 1.54637471e-02\\n-4.79452133e-01 -1.53569087e-01 3.15713376e-01 2.87715316e-01\\n-1.84810519e-01 -2.89646864e-01 -5.38413040e-02 -8.56701970e-01\\n2.14650288e-01 3.02038770e-02 -2.22917482e-01 3.19190651e-01\\n-4.79739197e-02 -6.74011171e-01 1.95333496e-01 -2.38905013e-01\\n-1.22451685e-01 9.72420722e-02 -1.21902891e-01 -4.03679490e-01\\n-6.95726275e-02 -8.47254917e-02 -2.79416859e-01 4.38870192e-01\\n-4.42463964e-01 2.58094579e-01 2.78225131e-02 2.07660496e-01\\n6.45043477e-02 -3.17549199e-01 1.32011235e-01 -2.90938467e-01\\n-4.47629452e-01 -1.77552968e-01 -3.10834795e-01 -3.72497439e-01\\n1.16414659e-01 -4.20599431e-01 -1.90796748e-01 3.00982624e-01\\n3.45805973e-01 -2.02822611e-02 -6.38294071e-02 -1.12800695e-01\\n3.80007625e-02 -3.81115437e-01 -4.35052253e-03 6.51416602e-03\\n4.66602203e-03 -2.62069423e-02 1.64008364e-01 5.44666573e-02\\n4.29980643e-02 -5.49723625e-01 4.81602848e-01 -4.19432849e-01\\n-2.26034552e-01 1.48321882e-01 6.61489815e-02 -6.79830313e-02\\n3.00375521e-01 -4.42990571e-01 -3.81285436e-02 4.50935811e-01\\n9.10796449e-02 6.09224513e-02 2.62767851e-01 -1.09767817e-01\\n-1.97908625e-01 3.67509395e-01 -1.70611814e-01 6.05265684e-02\\n1.00304055e+00 -2.14897655e-02 1.52759567e-01 2.00660005e-01\\n-2.71367747e-03 2.86099702e-01 4.34633702e-01 6.14842884e-02\\n-2.87592709e-01 3.42851788e-01 2.36451682e-02 -5.57491839e-01\\n1.14695564e-01 -1.58052653e-01 -3.11109990e-01 -3.18486035e-01\\n6.19558752e-01 4.47231114e-01 -4.82976437e-01 -4.03169841e-01\\n3.42688933e-02 -2.16716722e-01 5.55997789e-02 -1.72905147e-01\\n-5.60181448e-03 -1.27126753e-01 4.95528042e-01 5.90575254e-03\\n1.36339828e-01 5.78903556e-01 -1.76307917e-01 -3.27808827e-01\\n-1.41373482e-02 2.02440858e-01 1.49438875e-02 4.51508373e-01\\n-3.02842945e-01 4.27474082e-01 -3.08692530e-02 3.06025203e-02\\n-6.05713297e-03 1.77992076e-01 1.63033485e-01 -7.65712326e-03\\n5.82543798e-02 1.33077458e-01 4.75843310e-01 5.14430046e-01\\n3.47314268e-01 4.94899482e-01 3.53312284e-01 5.21763675e-02\\n5.89324296e-01 4.74195153e-01 5.31556487e-01 2.81544894e-01\\n-8.26004136e-04 -4.97476161e-02 -7.25944191e-02 2.49072045e-01\\n3.13818574e-01 2.85633951e-01 1.31414562e-01 9.76365209e-01\\n3.52537483e-01 1.07621469e-01 5.64574301e-01 -7.23322093e-01\\n-4.51816350e-01 1.82563961e-02 3.32547188e-01 -4.58691448e-01\\n-1.32507592e-01 1.43136457e-01 -2.49556944e-01 8.90053958e-02\\n-5.20679176e-01 -3.37157100e-01 -2.22249955e-01 1.15480043e-01\\n-4.03826647e-02 -1.64336309e-01 -1.74231663e-01 2.49021873e-02\\n-7.53935501e-02 -9.90563259e-02 -4.07484442e-01 -8.82909149e-02\\n-1.38656214e-01 -2.11207524e-01 -1.59648418e-01 -2.80302852e-01\\n-1.96726218e-01 -3.85229647e-01 -1.78397998e-01 7.49048665e-02\\n2.61339247e-01 -1.63265467e-01 7.31439963e-02 -2.13983566e-01\\n2.66460270e-01 2.88125277e-01 6.53630197e-01 7.52120838e-02\\n-1.51959145e-02 -2.68355548e-01 -5.20428270e-02 1.46590069e-01\\n1.92378685e-01 2.23420739e-01 9.24834982e-02 3.05831671e-01\\n-3.70904326e-01 -2.19675362e-01 2.28623196e-01 4.32577282e-01\\n-5.12547314e-01 -4.74465042e-02 -3.28051262e-02 2.64493316e-01\\n5.41851670e-02 1.94024518e-01 -1.43806279e-01 2.18760341e-01\\n-2.75524944e-01 -4.36684132e-01 2.66590297e-01 -7.59546310e-02\\n-1.63114861e-01 4.99261394e-02 1.72031656e-01 2.33015120e-01\\n-2.28625298e-01 3.31269465e-02 8.48588720e-02 3.57343137e-01\\n1.06185026e-01 2.53543824e-01 -2.83006787e-01 -2.42936566e-01\\n-2.48673037e-01 1.90831870e-02 -1.99501142e-01 1.09577954e-01\\n1.13802224e-01 3.33175004e-01 1.67163208e-01 -6.20649457e-02\\n5.03435433e-01 -3.59351449e-02 -1.20591655e-01 -2.58686870e-01\\n-3.16009045e-01 -3.31941068e-01 -1.00793742e-01 -4.25108857e-02\\n2.06314683e-01 -4.46181953e-01 -1.70381352e-01 -2.34620012e-02\\n-3.42031084e-02 -2.90297925e-01 9.29621831e-02 -7.78390169e-02]]',\n", + " \"Currently, I am working with a leading company in the Zurich area, my client has more than 8 million visits and over 180 million page views each month, my client is recognised as one of the leading Swiss digital companies. At the moment my client needs to bring a highly skilled Data engineer to join on a permanent basis. In regards to the team you will be joining, they have around 80 members of staff spread across two office locations in Switzerland, you will be joining a team of around 20 skilled Data Scientists and Engineers. Your daily tasks will include: Maintaining and extending the data lake and data pipelines Supporting the teams with your data engineering expertise Sharing your know-how and learning from others, mainly by pairing and reviewing each other's code They are looking for you to have experience with technologies such as; Python- at a high level of experience Hands-on experience of AWS (CloudFormation, IAM, Lambda, SNS, SQS, ECS) Exposure to AWS data services (S3, Glue, EMR, Athena, Kinesis) Understanding of ETL pipelines Fluent English is required for this role and any German is seen as a plus This is a great opportunity to get into an extremely exciting company who are really looking to build a successful team. If you would be interested in learning more please apply and I will contact you as soon as possible.\",\n", + " '[\"\"]',\n", + " '[\"AWS Kinesis\", \"AWS Identity And Access Management (IAM)\", \"AWS CloudFormation\", \"Pipelining\", \"Python (Programming Language)\", \"Digitization\", \"AWS Elastic MapReduce (EMR)\", \"Maintainability\", \"Data Pipeline\", \"Amazon Simple Notification Service (SNS)\", \"Extract Transform Load (ETL)\", \"Azure Data Lake\", \"Data Engineering\", \"Amazon Athena\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'full-stack software engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " '[\"Innovation\", \"Operations\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English']\"],\n", + " ['4',\n", + " 'director data solutions data science - analytics - bi (56)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.90481567e-01 2.48011351e-01 5.61907411e-01 -5.75898774e-03\\n5.63557088e-01 -1.46655619e-01 -3.73666808e-02 3.17813635e-01\\n-9.91410613e-02 -4.93190706e-01 -3.54826404e-03 -2.87803769e-01\\n4.04535681e-02 1.98618278e-01 1.44345403e-01 3.14964831e-01\\n2.81406164e-01 1.39580369e-01 -1.42618835e-01 3.40266287e-01\\n1.24611117e-01 -1.56572193e-01 1.01084262e-01 8.07796001e-01\\n3.99036646e-01 2.28390237e-03 -7.64889866e-02 1.02383167e-01\\n-1.88484520e-01 -2.64993221e-01 4.36564714e-01 -1.92004628e-02\\n-1.71543986e-01 -3.19798648e-01 9.72965509e-02 1.12656325e-01\\n-2.90534556e-01 -8.11100081e-02 -1.77048266e-01 9.81125608e-03\\n-4.87745166e-01 -1.32726625e-01 -7.75407255e-02 7.51893669e-02\\n-3.30263734e-01 -3.78471613e-01 -5.53231426e-02 -5.89691922e-02\\n1.89367145e-01 5.89841455e-02 -4.83574629e-01 2.95367837e-01\\n-3.03528041e-01 -2.72724599e-01 2.53647804e-01 6.54441178e-01\\n4.25396897e-02 -4.27251399e-01 -4.93742883e-01 -3.84264827e-01\\n8.48643482e-02 -9.87113565e-02 1.26467392e-01 -3.52808326e-01\\n2.73116887e-01 -6.65292516e-02 8.03774372e-02 3.12821567e-01\\n-8.79715919e-01 -6.35638535e-02 -3.06566447e-01 -5.22870459e-02\\n-3.50300491e-01 -5.35989366e-02 -5.02461672e-01 -1.74803823e-01\\n-2.03000680e-01 3.97537827e-01 9.04554576e-02 3.63278762e-02\\n-2.44128436e-01 1.72599360e-01 -3.60824227e-01 2.55076736e-01\\n2.00574353e-01 3.29738855e-01 3.01520288e-01 3.54614317e-01\\n-4.59262311e-01 5.39809942e-01 2.45878369e-01 -4.51266438e-01\\n2.62740076e-01 1.49990141e-01 3.60126913e-01 1.01715893e-01\\n2.64211476e-01 1.02569059e-01 -2.15841576e-01 1.73369572e-01\\n2.77826607e-01 -2.78778076e-01 9.98999365e-03 -1.12100184e-01\\n1.57595724e-01 -8.21139142e-02 3.90068479e-02 1.48083836e-01\\n-3.40529531e-01 2.85022616e-01 -6.60990030e-02 -3.71021271e-01\\n-1.18881457e-01 -4.29201752e-01 -6.08860999e-02 2.06952915e-02\\n1.15376040e-02 2.08292931e-01 2.38206357e-01 2.15247571e-01\\n1.87308490e-01 4.33979221e-02 2.41354764e-01 9.09054875e-01\\n-1.07610025e-01 1.84045937e-02 -3.24661672e-01 3.56444180e-01\\n1.18404076e-01 -2.50088692e-01 1.94784343e-01 1.17457107e-01\\n-7.27698654e-02 -1.35376483e-01 -2.23676622e-01 3.57288420e-01\\n-3.41545828e-02 -1.64083570e-01 -3.09303582e-01 2.05705449e-01\\n-1.04196612e-02 -4.56399322e-01 6.90836549e-01 1.53726637e-02\\n1.96204156e-01 -5.08479699e-02 3.96231748e-02 -2.02659190e-01\\n-1.00551531e-01 1.81573540e-01 3.10975760e-02 2.28642672e-01\\n-2.68327713e-01 -2.46693775e-01 -7.49473274e-02 2.65692949e-01\\n-3.35387409e-01 1.23190582e-01 -1.46794677e-01 -3.36749926e-02\\n1.77561596e-01 4.46026586e-02 -3.00410599e-01 1.63564563e-01\\n-9.28508639e-02 -8.54603797e-02 8.25958028e-02 2.91792095e-01\\n-2.61772275e-01 2.45015115e-01 -4.18765470e-02 1.28305368e-02\\n6.39437437e-01 1.50627732e-01 2.66201198e-01 -9.01235491e-02\\n2.45199978e-01 -4.90171462e-02 1.05829425e-01 1.47109672e-01\\n-7.09755480e-01 3.99899811e-01 -8.16899240e-02 -3.15548599e-01\\n9.03508514e-02 -2.50592530e-02 2.34635830e-01 -2.62744904e-01\\n-1.12964958e-03 -1.46729976e-01 -2.27311060e-01 -3.39776695e-01\\n-9.15857553e-02 -7.87522346e-02 3.60117674e-01 -5.40329218e-01\\n-3.60709652e-02 2.08325535e-01 -4.64177430e-01 -7.16918185e-02\\n9.43851620e-02 2.37491518e-01 3.45786437e-02 1.22261435e-01\\n-5.67072108e-02 -5.58922887e-01 9.51402336e-02 -4.39891696e-01\\n-2.56826520e-01 1.15555212e-01 -3.22532892e-01 8.44767094e-02\\n1.00615770e-01 -6.07031137e-02 -6.06143549e-02 1.37698814e-01\\n-2.99845397e-01 7.64429718e-02 3.17698717e-02 5.30950539e-02\\n3.80247414e-01 1.15503594e-01 -4.04168785e-01 5.36391020e-01\\n-2.09718451e-01 3.87720793e-01 8.76062140e-02 -9.22483563e-01\\n5.33375204e-01 3.40367883e-01 -1.66247785e-02 -2.52256751e-01\\n6.02700233e-01 -3.47107381e-01 -9.70283300e-02 1.11561842e-01\\n-4.31858510e-01 -2.53467619e-01 1.51693583e-01 -1.86570555e-01\\n-2.82148927e-01 5.84991753e-01 2.50667538e-02 1.73154831e-01\\n2.85961270e-01 -2.38268971e-01 -2.10175335e-01 -6.90012425e-02\\n-1.56042203e-01 -2.92927146e-01 -5.37719488e-01 -2.14700885e-02\\n-7.95442164e-02 -4.96266246e-01 -1.24892041e-01 -4.91161704e-01\\n-2.06377894e-01 -3.90549690e-01 -2.38914400e-01 1.12863444e-01\\n2.59018868e-01 1.57412350e-01 -2.00894609e-01 -1.26610100e-02\\n-3.15864794e-02 -6.19452834e-01 -9.10611972e-02 1.15114935e-01\\n4.00264502e-01 1.92143708e-01 7.91407824e-02 -9.26944166e-02\\n1.77724421e-01 5.42523563e-01 -1.23241000e-01 -3.38072896e-01\\n1.37486771e-01 1.56317174e-01 2.65269540e-02 -2.28298038e-01\\n9.61053967e-02 3.91922742e-01 -2.28199601e-01 -5.83680458e-02\\n5.26302494e-02 -7.69373327e-02 3.82126570e-01 -3.86044122e-02\\n-1.72579184e-01 -2.48682261e-01 -5.76650053e-02 1.27825662e-01\\n-5.53541064e-01 -2.45392799e-01 5.54309130e-01 1.52432576e-01\\n2.25962475e-02 2.36100823e-01 9.69252512e-02 2.02512220e-02\\n-2.51804590e-01 -8.74476284e-02 2.46270403e-01 1.11490041e-01\\n2.14496315e-01 1.44690454e-01 -7.66419023e-02 -5.70241153e-01\\n-3.58810186e+00 -2.75296509e-01 9.19485241e-02 -2.57074952e-01\\n2.58307040e-01 -1.87010124e-01 1.05559736e-01 -2.26586238e-02\\n-3.53753567e-01 5.24880514e-02 -3.66987959e-02 -2.12406754e-01\\n1.19048566e-01 1.95591316e-01 5.02188802e-02 3.70430231e-01\\n1.69916794e-01 -1.84839621e-01 5.82702085e-02 3.65325868e-01\\n-1.87921464e-01 -6.95264757e-01 2.34377712e-01 -4.15529422e-02\\n2.38410428e-01 1.82446212e-01 -5.11466324e-01 -6.02885149e-02\\n-3.18716943e-01 -1.84646323e-01 9.24049690e-02 -2.25928068e-01\\n-1.98837578e-01 2.09354162e-01 1.83038175e-01 -1.11690335e-01\\n7.62898847e-02 -3.83996308e-01 -1.15739904e-01 -5.12424707e-01\\n1.59345210e-01 -5.29330254e-01 -9.88451391e-03 -4.75608967e-02\\n7.75390983e-01 -3.78883421e-01 1.26954764e-01 1.65763646e-01\\n5.92099354e-02 1.61232993e-01 1.20479412e-01 -1.26716420e-02\\n-2.88161933e-01 -3.15358698e-01 -9.55502465e-02 -2.74848044e-01\\n6.44145906e-01 4.50397789e-01 -1.18411630e-01 4.43439744e-03\\n9.13475454e-03 -2.45492965e-01 -4.21997666e-01 -3.10094237e-01\\n-1.13692418e-01 -1.03877239e-01 -6.14946306e-01 -3.71634156e-01\\n-1.41997069e-01 -2.58700579e-01 -1.71990469e-02 6.18764281e-01\\n-2.58149058e-01 -3.40463430e-01 -7.84673393e-02 -4.50513750e-01\\n4.15275097e-01 -1.56668007e-01 5.74079305e-02 -1.86023012e-01\\n-2.11378932e-01 -4.50133979e-01 8.33961070e-02 -7.64773339e-02\\n-1.14312433e-01 -1.95191979e-01 1.05109885e-01 -1.85861304e-01\\n-3.58832479e-01 -5.44290304e-01 4.25663292e-01 5.34886196e-02\\n2.73384988e-01 2.00758263e-01 4.18469131e-01 -3.90166268e-02\\n2.94337690e-01 -1.39412075e-01 -1.67756140e-01 -4.67190623e-01\\n1.86611824e-02 -9.44684222e-02 4.12904501e-01 -1.01576604e-01\\n1.14814125e-01 4.80448343e-02 -1.10938221e-01 1.02005564e-02\\n3.59535873e-01 -1.00978106e-01 1.71611562e-01 -1.67393088e-01\\n2.01020941e-01 -2.15414971e-01 -1.50323987e-01 6.58608824e-02\\n7.62703791e-02 6.57764733e-01 4.50925231e-02 -3.29192132e-01\\n-1.47289634e-01 4.74786162e-01 -5.20635061e-02 2.63351649e-02\\n-1.78283364e-01 1.57896608e-01 -3.12665164e-01 2.70926565e-01\\n-4.41581421e-02 -1.38448387e-01 -2.40532845e-01 -1.50403470e-01\\n-3.77163291e-02 3.44454855e-01 2.30186284e-01 8.47492516e-02\\n-3.92998829e-02 -3.48584592e-01 -1.00089088e-01 1.60120741e-01\\n2.17706144e-01 5.03104270e-01 2.18718022e-01 -2.68655568e-01\\n5.68475574e-03 2.84321129e-01 -2.75115371e-01 2.83784151e-01\\n-3.11012536e-01 1.90055251e-01 -5.96908569e-01 -2.48126790e-01\\n-2.55230665e-01 -4.44162309e-01 2.00664058e-01 2.89660841e-01\\n1.49672553e-01 -6.57439381e-02 1.44551188e-01 -3.76701057e-01\\n2.55458295e-01 6.60558045e-02 1.67475566e-01 1.30718663e-01\\n-1.32357143e-02 6.58572257e-01 4.08836547e-03 -1.10146426e-01\\n-1.48528084e-01 1.01033136e-01 -8.62370282e-02 -2.24667013e-01\\n-5.93722686e-02 -5.59516788e-01 -1.83138624e-01 4.90915835e-01\\n1.76508546e-01 -2.03756481e-01 -1.21059105e-01 3.13248485e-01\\n-7.10798204e-02 -2.73466974e-01 -2.61596143e-01 8.17731768e-03\\n2.98589170e-01 2.81290114e-01 2.14378089e-01 -4.99237657e-01\\n2.11715419e-02 1.81080084e-02 7.32676610e-02 5.84279954e-01\\n-5.54007925e-02 1.54899925e-01 -2.11950969e-02 -1.80828720e-01\\n4.94569659e-01 -6.37378991e-02 -1.59963027e-01 1.26576424e-03\\n1.83565676e-01 -2.47886017e-01 -3.90682220e-01 9.73189622e-02\\n7.55012631e-02 -2.77055413e-01 4.36475538e-02 1.64047420e-01\\n1.12974122e-01 3.77913490e-02 -6.44299269e-01 -2.15922996e-01\\n-3.90681624e-01 8.58632848e-02 -1.85696892e-02 -5.22331536e-01\\n9.63127166e-02 -3.71832587e-02 -5.31152427e-01 2.94884831e-01\\n-1.09584212e-01 -1.54384673e-01 1.82037115e-01 7.20598474e-02\\n-3.31972778e-01 -1.41304567e-01 2.13380277e-01 2.67332464e-01\\n-2.30160087e-01 -2.61257350e-01 8.58983845e-02 -9.47955012e-01\\n1.71961889e-01 1.49733871e-01 -1.43660754e-01 1.63695276e-01\\n-8.35219026e-02 -6.92092419e-01 1.23107113e-01 -3.63983035e-01\\n-1.47465676e-01 1.79782659e-02 -2.43666798e-01 -4.34652090e-01\\n5.50126471e-02 7.77423531e-02 -3.11022222e-01 4.80108559e-01\\n-2.98170447e-01 3.48191082e-01 -1.16912827e-01 1.07709199e-01\\n1.40523836e-01 -2.48911262e-01 9.06597152e-02 -3.09079766e-01\\n-4.88408446e-01 -2.30519712e-01 -3.27342391e-01 -3.00951093e-01\\n-5.71914129e-02 -2.98345149e-01 -8.65115691e-03 -2.32954230e-03\\n3.52798998e-01 3.28255370e-02 -2.14656830e-01 -2.96948314e-01\\n3.07595357e-03 -4.57372159e-01 1.85797453e-01 -1.61160961e-01\\n2.37341635e-02 -2.21528947e-01 1.73115134e-01 6.95347413e-02\\n2.10911721e-01 -4.63337272e-01 4.67846096e-01 -2.38648385e-01\\n-2.78991759e-01 -2.01968431e-01 8.20442736e-02 -5.50469570e-02\\n3.44118655e-01 -4.53072131e-01 -2.84103714e-02 3.56042683e-01\\n2.16631413e-01 9.80149135e-02 2.11095333e-01 -1.64393753e-01\\n-1.30256280e-01 4.11327779e-01 -3.61064464e-01 2.07639039e-01\\n7.97506452e-01 5.91552556e-02 2.58478999e-01 2.20239073e-01\\n2.81832933e-01 3.00715715e-01 3.37739468e-01 1.09441299e-03\\n-1.22983962e-01 3.41248691e-01 1.24932423e-01 -4.60469872e-01\\n5.88829555e-02 -1.35565192e-01 -2.40548864e-01 -4.35173869e-01\\n6.96550131e-01 3.71643573e-01 -3.47406209e-01 -1.67860180e-01\\n-2.16064230e-01 -1.48668200e-01 3.32332969e-01 -1.27816662e-01\\n-1.24960449e-02 -1.15751460e-01 4.34667259e-01 -7.30100274e-02\\n3.25805068e-01 5.64557076e-01 -1.72330737e-01 -2.97518373e-01\\n-1.16128288e-01 2.74563909e-01 3.82717028e-02 5.40597081e-01\\n-2.37523019e-01 2.70896494e-01 4.91668582e-02 1.31217510e-01\\n-6.61889017e-02 1.97061658e-01 2.87104607e-01 -5.60903586e-02\\n1.91980004e-01 4.98307981e-02 4.89238262e-01 4.53291893e-01\\n2.08708063e-01 3.62530559e-01 3.58271062e-01 -3.15191634e-02\\n4.00037408e-01 6.19066596e-01 3.87164742e-01 1.71838447e-01\\n1.99247450e-02 2.12918185e-02 1.15717210e-01 -8.29517543e-02\\n2.38439620e-01 4.47844863e-01 -3.89986411e-02 9.14886832e-01\\n4.51753050e-01 2.47322440e-01 7.43920565e-01 -6.34001136e-01\\n-3.50675017e-01 8.20212364e-02 4.52865541e-01 -4.27645862e-01\\n1.00636873e-02 1.29049540e-01 -2.58705497e-01 2.50160456e-01\\n-3.82443398e-01 -2.45569140e-01 -1.87259540e-02 1.02127217e-01\\n-2.37885546e-02 -2.02120602e-01 -1.76286399e-01 1.05287671e-01\\n-2.70462018e-02 -9.27271396e-02 -4.30980951e-01 -6.36741519e-02\\n-2.47218996e-01 -9.56573803e-03 -1.63550884e-01 -2.76552141e-02\\n-1.39460802e-01 -3.00429106e-01 -7.06613734e-02 -3.70951593e-02\\n2.72834301e-01 -1.26618057e-01 -1.05077177e-01 -1.11919567e-01\\n2.79063880e-01 2.24066913e-01 5.44182122e-01 1.00088239e-01\\n9.18842778e-02 -2.70175338e-01 -1.47946119e-01 1.09105691e-01\\n1.54274419e-01 6.37612119e-02 2.60742381e-05 3.57624531e-01\\n-2.48298854e-01 -2.17769310e-01 1.19344436e-01 3.38437051e-01\\n-4.67438042e-01 -1.49795776e-02 -3.53629664e-02 2.46380866e-01\\n1.49721019e-02 2.84201294e-01 -1.82036757e-01 1.36500388e-01\\n-1.33969203e-01 -4.73590553e-01 3.37336898e-01 -1.90785974e-01\\n-9.14325416e-02 -9.40241590e-02 2.20295608e-01 2.49768719e-01\\n-2.50061333e-01 3.29607651e-02 -3.39288563e-02 1.71835512e-01\\n4.65711206e-02 3.06276858e-01 -2.15812534e-01 -2.44893700e-01\\n-3.06402266e-01 1.49833813e-01 -1.37503654e-01 2.07794756e-01\\n-1.70297213e-02 2.69902319e-01 -4.71071452e-02 1.08222194e-01\\n3.32054526e-01 -6.20026179e-02 -2.45276704e-01 -2.48451248e-01\\n-2.07395226e-01 -1.40088797e-01 -2.21620426e-02 -1.02942586e-01\\n2.49350816e-01 -2.96550453e-01 -7.51058608e-02 -1.50019586e-01\\n-1.43605292e-01 -4.44252521e-01 1.07182525e-01 -2.23396242e-01]]',\n", + " 'CONSULTING - BIG dATA SCIENCE - aNALYTICS - BI! With over a billion turnover has our customer become a relevant global player in terms of individual software solutions. She thinks globally, acts locally and supports customers from various industries to develop technology solutions to business results. The consulting specialists are able to find solutions for large, complex projects to generate economies of scale and optimize processes. The worldwide growth continues also in Switzerland and for their Zurich office are we looking for you as: DIRECTOR DATA SOLUTIONS YOUR CHALLENGE You will lead strategic client projects across Europe and help to build out the Big Data Architecture Practice. Develop customer solutions and proposals for implementation and design of scalable big data architecture as well as network infrastructure solutions to enable partners and clients to scale Hadoop, NoSQL and relational database architecture for growing demands and traffic. Build up roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning. Drive new business and get involved in pre-sales activities whilst overseeing and managing remote team members who are involved in key projects. YOUR PROFILE You have a Bachelor, Master or MBA degree or equivalent education with business and IT expertise. You have a deep understanding of the Big Data Architecture, Business Intelligent, Data Science and Analytics and implementing such big projects. Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level. Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra. Know how in agile software development processes and architecture are an additional plus. You are an excellent communicator with the ability to correspond effectively with all levels of Business and IT. You have fun thinking globally, acting locally and work in multi-cultural teams around the globe. You are a problem solver with the ability to effectively prioritize work. You can communicate fluently in English and ideally German. There will be a large degree of travel (around 50%) in order to build on and enhance client relationships. YOUR PERSPECTIVE You get the chance to build a firm in the firm in a globally oriented outsourcing corporation. You can combine your strength and network with the enormous resource and skill set to set new standards in your business stream. You can act as leader while participating in top level engagements and getting first hand updates on technology innovations. You will experience new ways of efficiency and technology improvements. You can expect continuing training and the opportunity to enlarge you network and visibility.',\n", + " '[\"Management\", \"Communications\", \"Innovation\", \"Prioritization\", \"Consulting\"]',\n", + " '[\"NoSQL\", \"Apache Cassandra\", \"Economy\", \"Apache Zookeeper\", \"Acting\", \"Analytics\", \"Outsourcing\", \"Industrialization\", \"Customer Support Analyst\", \"Perspective (Graphical)\", \"Scale (Map)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Customer Development\", \"Apache Mahout\", \"MongoDB\", \"Levelling\", \"Limiter\", \"Apache Oozie\", \"Idealization\", \"Network Infrastructure\", \"Localization\", \"Apache Flume\", \"Continuous Training\", \"Process Optimization\", \"Machine Learning Methods\", \"Recommendation Engine\", \"Data Science\", \"Agile Software Development\", \"Customer Relationship Building\", \"Business Architecture\", \"Apache Hive\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Technology Solutions\", \"Pre-Sales Engineering\", \"Relational Databases\", \"Software Development\", \"Resourcing\", \"Apache HBase\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Intelligence\"]',\n", + " \"['English', 'Thai', 'Samoan', 'Tatar', 'Kanuri']\"],\n", + " ['27',\n", + " 'junior software engineer medco for the department of information systems',\n", + " 'Lausanne',\n", + " 'Healthcare Services & Hospitals',\n", + " 'www.chuv.ch',\n", + " '[[-3.00035059e-01 3.61983538e-01 4.44360465e-01 -7.17792660e-03\\n5.62070787e-01 -1.37449756e-01 -1.13336578e-01 2.42946625e-01\\n-2.19843201e-02 -4.84850526e-01 -9.91603658e-02 -3.07892561e-01\\n-4.89714779e-02 1.88965708e-01 1.14169598e-01 4.41247940e-01\\n3.86448681e-01 4.34750766e-02 -1.06877811e-01 3.36503685e-01\\n-6.46074489e-02 -1.51778728e-01 4.21410054e-03 8.17152441e-01\\n4.15205777e-01 -4.45732102e-02 -5.73506542e-02 1.49609014e-01\\n-2.30003044e-01 -1.49984866e-01 5.07363498e-01 2.94902641e-02\\n-1.60990119e-01 -3.72379541e-01 1.14553399e-01 2.48411328e-01\\n-3.23082864e-01 -1.17690079e-01 -1.25032410e-01 1.77222803e-01\\n-5.57683289e-01 -3.01134944e-01 -1.02623522e-01 -1.21669605e-01\\n-2.74369895e-01 -3.70370686e-01 9.48063284e-02 -3.09872590e-02\\n8.33352506e-02 1.49189293e-01 -5.47025383e-01 2.15621099e-01\\n-3.89576554e-01 -1.66778952e-01 3.37086499e-01 6.09280050e-01\\n-4.00838852e-02 -4.14307028e-01 -4.87745881e-01 -4.02561933e-01\\n-5.65326326e-02 -2.60696188e-02 4.56933528e-02 -3.86211216e-01\\n4.11144555e-01 9.00602639e-02 -5.72004914e-03 3.85362148e-01\\n-8.06089640e-01 -1.23140171e-01 -3.25153291e-01 1.08123042e-01\\n-4.29066181e-01 -3.10019776e-02 -3.13482702e-01 -2.40982965e-01\\n-6.66429177e-02 3.94444346e-01 -3.24342586e-02 1.19015887e-01\\n-2.39308327e-01 3.82285446e-01 -2.01432556e-01 3.83839250e-01\\n2.69659698e-01 2.43688136e-01 3.10070992e-01 3.65030706e-01\\n-4.57485974e-01 3.77795219e-01 1.28924534e-01 -3.27150077e-01\\n2.27454871e-01 1.09013036e-01 4.74937022e-01 9.19226110e-02\\n1.41731560e-01 1.32084504e-01 -2.91906685e-01 2.95387268e-01\\n2.13811845e-01 -1.99559718e-01 4.51282822e-02 -8.05766135e-02\\n-7.04778358e-03 -4.79073673e-02 -1.68002769e-03 1.65476188e-01\\n-4.13177133e-01 3.36495101e-01 8.56148005e-02 -2.72724450e-01\\n-1.56365946e-01 -5.79533279e-01 1.13614369e-02 1.04003072e-01\\n6.48366064e-02 1.11551940e-01 1.59038499e-01 1.22376904e-01\\n1.81610435e-01 -4.70363833e-02 1.62519693e-01 8.83770227e-01\\n-1.25856802e-01 -3.42019200e-02 -1.34144962e-01 3.06266665e-01\\n8.90472084e-02 -1.88330188e-01 1.54109716e-01 2.90424526e-01\\n-6.58720359e-03 -1.22392751e-01 -2.37822413e-01 4.40019906e-01\\n-1.29727036e-01 -1.90964669e-01 -4.41658556e-01 3.40125471e-01\\n-1.90957069e-01 -4.34564710e-01 5.87118506e-01 -8.26356187e-02\\n1.44019127e-01 -1.57126263e-01 -1.17994323e-02 -8.22910443e-02\\n-1.31153569e-01 2.13340163e-01 2.53410265e-03 2.23886713e-01\\n-3.21313739e-01 -2.24193215e-01 -9.18591917e-02 2.49286920e-01\\n-3.38537425e-01 2.97612160e-01 -7.92742223e-02 -9.15120170e-02\\n2.67795205e-01 1.66635007e-01 -3.66973519e-01 1.85097575e-01\\n-1.18098199e-01 -1.10540226e-01 -6.61244169e-02 4.58446741e-01\\n-1.32654071e-01 2.13160932e-01 -1.42370611e-02 -3.50442648e-01\\n4.66153681e-01 1.19258486e-01 3.25152159e-01 -1.06508927e-02\\n3.21369588e-01 -1.51209190e-01 2.79434800e-01 1.03953734e-01\\n-7.00411677e-01 3.89611870e-01 -7.01834559e-02 -2.13751033e-01\\n3.74336354e-03 -1.02307774e-01 4.65106070e-01 -2.54125476e-01\\n-7.04707354e-02 -1.76333070e-01 -3.54473174e-01 -4.63893920e-01\\n-1.96422324e-01 1.27239637e-02 4.41343784e-01 -4.54905361e-01\\n-7.38131478e-02 3.95377994e-01 -6.31911635e-01 -2.00359508e-01\\n1.88462973e-01 2.50258654e-01 1.38608143e-01 1.72260046e-01\\n-1.21526673e-01 -6.64688766e-01 4.85400110e-02 -5.14919817e-01\\n-3.84826243e-01 1.28575832e-01 -2.86289275e-01 1.26380429e-01\\n8.47453400e-02 2.35035457e-02 -2.82117780e-02 4.67723086e-02\\n-3.38407069e-01 7.21806437e-02 8.54065791e-02 -5.71014024e-02\\n3.07594359e-01 1.76642686e-02 -3.67082477e-01 4.78533149e-01\\n-1.86889499e-01 4.62018341e-01 1.17807738e-01 -8.33056927e-01\\n6.30820274e-01 3.69473755e-01 -3.51999328e-02 -3.68397951e-01\\n5.50363183e-01 -3.31260920e-01 -1.74863935e-01 1.57397926e-01\\n-3.67648214e-01 -1.54682174e-01 2.22167194e-01 -3.21027189e-01\\n-2.22786993e-01 5.83073795e-01 5.71780577e-02 9.26069319e-02\\n4.92103398e-01 -3.75210047e-01 -2.09360927e-01 1.03194222e-01\\n-2.05078959e-01 -3.08929324e-01 -5.16978860e-01 -8.15665424e-02\\n-1.30044356e-01 -4.63237584e-01 -2.11823523e-01 -3.89117658e-01\\n-1.49591237e-01 -2.84421951e-01 -1.72048569e-01 2.19392136e-01\\n2.09453434e-01 1.76951244e-01 -4.40159142e-02 4.42950465e-02\\n-3.55879515e-02 -5.65842628e-01 -4.79751751e-02 -4.41436023e-02\\n3.68573934e-01 2.91733623e-01 1.59429044e-01 5.70160337e-03\\n8.23950544e-02 5.36124110e-01 -4.61518884e-01 -3.59381318e-01\\n1.01671629e-01 5.53791076e-02 -1.06429607e-01 -3.71658839e-02\\n1.75495595e-01 3.03211212e-01 -2.68508077e-01 3.82938161e-02\\n-6.62147161e-03 -2.49507464e-02 3.97147000e-01 -2.67019942e-02\\n-1.86298266e-01 -1.25940621e-01 -1.64433196e-01 2.01995805e-01\\n-5.89219570e-01 -2.65446037e-01 4.29929733e-01 1.01364225e-01\\n1.29170820e-01 1.23921372e-01 1.90388918e-01 3.15314010e-02\\n-4.40045029e-01 -2.82660961e-01 3.08069229e-01 1.00680292e-01\\n8.97761434e-02 1.51667729e-01 -4.76597324e-02 -5.22465229e-01\\n-3.05674839e+00 -1.33334085e-01 8.87885839e-02 -2.47226775e-01\\n2.62427300e-01 -1.38471335e-01 1.00698337e-01 -1.00647137e-01\\n-2.82645464e-01 9.99853387e-03 -2.49801263e-01 -1.97526515e-01\\n9.51256603e-02 2.38607824e-01 7.14064091e-02 3.42387408e-02\\n-4.28449251e-02 -2.37445861e-01 8.61925930e-02 2.84338295e-01\\n-1.19588878e-02 -7.73476720e-01 -7.99035374e-03 -6.77736923e-02\\n1.66918471e-01 1.07998513e-01 -5.96637309e-01 -1.11885183e-02\\n-3.73665035e-01 -2.57558316e-01 1.81780428e-01 -3.07062060e-01\\n-1.16029792e-01 3.24119478e-01 1.99644938e-01 -7.13339224e-02\\n1.07592568e-02 -3.00836176e-01 -2.50040740e-01 -6.59163654e-01\\n1.81183949e-01 -6.06666565e-01 4.16864082e-02 -1.66898653e-01\\n6.59254968e-01 -3.01620901e-01 2.27224231e-01 2.80833453e-01\\n1.59079611e-01 1.81084901e-01 8.84357393e-02 5.14040850e-02\\n-3.00230145e-01 -2.70910293e-01 -1.12118125e-01 -2.42464393e-01\\n6.28367364e-01 3.86322409e-01 -2.13607371e-01 -9.11915749e-02\\n5.81795648e-02 -3.62291068e-01 -5.40301979e-01 -3.53309691e-01\\n-9.79812294e-02 -1.72546476e-01 -6.80168509e-01 -3.93984497e-01\\n-1.15329631e-01 -1.33489698e-01 -4.22258452e-02 6.83342159e-01\\n-4.62741017e-01 -3.29211831e-01 -3.48696522e-02 -6.77632928e-01\\n3.13090861e-01 -3.01966429e-01 6.40542060e-02 -2.69656241e-01\\n-3.30017686e-01 -5.30000091e-01 1.11605957e-01 -1.60983671e-02\\n-1.18153721e-01 -1.72929168e-01 1.19316027e-01 -2.46215776e-01\\n-2.98391908e-01 -5.19364178e-01 4.21613276e-01 1.17969662e-01\\n4.08891916e-01 2.10435301e-01 1.98674455e-01 -6.50608689e-02\\n2.81263173e-01 1.27188697e-01 -1.21781386e-01 -3.06379318e-01\\n1.20233506e-01 2.49918550e-04 4.48907226e-01 -1.80612147e-01\\n-3.68651822e-02 9.57769454e-02 -2.35675395e-01 -5.94640747e-02\\n4.58130121e-01 -1.95846893e-03 4.15652096e-02 -1.36039346e-01\\n3.73819113e-01 -4.26120758e-01 -6.86664283e-02 1.94678307e-01\\n5.42345159e-02 6.63331985e-01 3.32273766e-02 -3.68782341e-01\\n-4.07801978e-02 4.93418753e-01 9.39974189e-03 -1.46046169e-02\\n1.17506348e-02 1.78894326e-01 -1.55298769e-01 1.86173141e-01\\n5.48610091e-02 -1.42134592e-01 -2.42442012e-01 -1.02301627e-01\\n-1.18837364e-01 3.85284543e-01 2.72803813e-01 1.60218194e-01\\n-8.72684121e-02 -3.54359627e-01 -4.65783924e-02 2.44814098e-01\\n2.68395603e-01 4.27361727e-01 3.40087980e-01 -2.69384325e-01\\n2.55174357e-02 3.44860256e-01 -1.09492019e-01 3.39766651e-01\\n-3.40910017e-01 1.18652001e-01 -5.63863516e-01 -1.85167968e-01\\n-3.00910264e-01 -2.88967222e-01 2.42015138e-01 3.21130961e-01\\n1.77178070e-01 -1.05794132e-01 1.37466967e-01 -3.56750786e-01\\n2.11783513e-01 2.57244200e-01 2.29308069e-01 7.26502016e-02\\n-1.41104639e-01 6.73385501e-01 3.93916816e-02 -1.36842236e-01\\n-5.62194027e-02 1.00371763e-02 -1.34719372e-01 -3.12145174e-01\\n6.70060888e-03 -4.76588488e-01 -1.82723984e-01 3.38606715e-01\\n7.09000751e-02 -6.28865585e-02 -2.25250885e-01 3.73426080e-01\\n1.44180655e-03 -2.14185894e-01 -1.87222481e-01 -4.87079173e-02\\n2.22224206e-01 2.33383909e-01 3.10672790e-01 -5.64478755e-01\\n-8.03505778e-02 9.58180428e-02 -2.34673843e-02 5.19917071e-01\\n1.28718913e-01 3.32122222e-02 -3.04744840e-01 -2.07423866e-01\\n3.40077430e-01 -1.72427341e-01 -3.16100828e-02 -1.53439380e-02\\n9.24445689e-02 -1.38993829e-01 -3.89402598e-01 9.97232050e-02\\n-3.07223741e-02 -2.37960964e-01 3.91229019e-02 9.22504142e-02\\n7.53197074e-02 6.09467626e-02 -5.98304629e-01 -1.75097436e-01\\n-1.67163819e-01 7.52256513e-02 -5.99374995e-03 -5.07458866e-01\\n-4.16807830e-02 -1.24140367e-01 -5.65852642e-01 2.58499682e-01\\n-1.31889537e-01 -3.39706466e-02 1.61520645e-01 5.13504781e-02\\n-3.56561035e-01 -2.06277341e-01 1.08612724e-01 1.76079184e-01\\n-3.16559643e-01 -2.75190592e-01 1.10821910e-02 -9.92156863e-01\\n1.66068658e-01 5.48323393e-02 -1.65277869e-01 6.82473630e-02\\n1.22189693e-01 -7.23813951e-01 1.26398414e-01 -3.32096636e-01\\n1.99250299e-02 1.15322858e-01 -2.66815245e-01 -4.15241659e-01\\n1.59988105e-01 -7.03539252e-02 -1.61208257e-01 3.25673491e-01\\n-4.61650848e-01 4.90845561e-01 -1.47288248e-01 -9.86439437e-02\\n4.06275019e-02 -3.34151328e-01 1.58574477e-01 -1.65461212e-01\\n-3.56565952e-01 -2.64601171e-01 -3.01129103e-01 -3.86778891e-01\\n2.22498029e-02 -3.52318168e-01 -4.03638147e-02 7.04466999e-02\\n3.66939306e-01 2.79639494e-02 -1.97493881e-01 -1.52148098e-01\\n7.10444227e-02 -4.28212702e-01 5.56281880e-02 -9.75441039e-02\\n-1.43659674e-02 -1.44667745e-01 2.08054960e-01 3.37411910e-02\\n2.62298256e-01 -2.76447833e-01 5.08225024e-01 -3.22870106e-01\\n-4.10671234e-01 -1.37253508e-01 2.30009109e-02 3.31696197e-02\\n3.99647772e-01 -3.95186067e-01 9.22752470e-02 3.43813777e-01\\n2.53291965e-01 4.65510897e-02 2.42221087e-01 -2.77115941e-01\\n-5.34895808e-02 1.91484585e-01 -3.66234124e-01 2.05553085e-01\\n8.42537761e-01 2.68569946e-01 3.25346708e-01 1.45069271e-01\\n8.08566511e-02 3.27130377e-01 5.21162271e-01 -6.31700009e-02\\n-7.80357793e-02 2.59482086e-01 1.84369728e-01 -3.23108256e-01\\n-1.99285075e-01 -1.75386593e-02 -1.12789690e-01 -3.28607678e-01\\n5.88476658e-01 3.37012053e-01 -3.77013326e-01 -1.77071810e-01\\n-2.16785386e-01 -2.08481610e-01 3.46474409e-01 -3.22753340e-02\\n-9.71568525e-02 -1.09193139e-01 3.21281463e-01 -1.06178910e-01\\n2.38572761e-01 5.76311350e-01 -1.51160553e-01 -4.14378524e-01\\n-4.13754433e-02 3.55348170e-01 6.19533248e-02 4.16227520e-01\\n-1.20524712e-01 3.27054203e-01 1.66101586e-02 1.70951158e-01\\n-1.78174481e-01 -2.53256559e-02 2.83410162e-01 6.12890944e-02\\n2.69634485e-01 2.14625135e-01 3.88987243e-01 4.55691040e-01\\n2.83973783e-01 4.88232315e-01 2.93742806e-01 6.66268123e-03\\n4.98562753e-01 6.02943599e-01 4.30620968e-01 4.51423153e-02\\n1.47982957e-02 2.04432040e-01 8.37302506e-02 4.38843258e-02\\n3.13088387e-01 3.35341692e-01 6.35313690e-02 9.94269311e-01\\n2.51577020e-01 3.27685982e-01 7.13907599e-01 -6.27548814e-01\\n-2.99214512e-01 8.59089792e-02 5.50635397e-01 -4.47144896e-01\\n5.40072210e-02 4.19687778e-02 -2.27692217e-01 3.44874948e-01\\n-5.19270360e-01 -1.09892771e-01 -5.30936718e-02 1.81326270e-01\\n2.41788030e-02 -8.75484869e-02 -1.01246491e-01 2.48785876e-02\\n-1.87385947e-01 -2.25737348e-01 -3.05894077e-01 -1.32087961e-01\\n-3.41794491e-01 -1.53032750e-01 -5.80528937e-03 -1.02582403e-01\\n-1.33049004e-02 -2.74541378e-01 -7.21229166e-02 -3.97043750e-02\\n5.75172544e-01 -2.86352843e-01 -2.08839148e-01 -1.11376718e-01\\n3.12505126e-01 2.99222797e-01 6.61733687e-01 1.14860013e-03\\n-3.48253995e-02 -2.55359024e-01 -2.34566182e-01 6.96792454e-02\\n-8.21093395e-02 9.60538015e-02 4.69930135e-02 2.71116763e-01\\n-1.92358404e-01 -1.12043768e-01 1.16288483e-01 3.07152033e-01\\n-4.12232161e-01 -1.33328766e-01 -2.03985885e-01 1.19059302e-01\\n-3.91247123e-03 2.62317836e-01 -1.94980145e-01 5.64955845e-02\\n-1.57533824e-01 -5.43533564e-01 3.65039676e-01 -1.85788065e-01\\n-1.83677763e-01 -5.59363365e-02 2.66006261e-01 2.66440868e-01\\n-1.77906334e-01 -2.16637440e-02 -3.15545723e-02 2.85058022e-01\\n-9.34405252e-03 3.11616302e-01 -2.23829150e-01 -2.48703182e-01\\n-3.55325818e-01 2.39375353e-01 -4.14124914e-02 1.02587633e-01\\n2.35460699e-04 5.12061715e-01 3.74462493e-02 1.58546656e-01\\n3.61870110e-01 -7.27597475e-02 -2.90184677e-01 -3.13117445e-01\\n-1.83845267e-01 -2.68800318e-01 -5.72934300e-02 -4.00517508e-02\\n3.03331316e-01 -3.99256349e-01 -1.82873636e-01 -3.26407313e-01\\n-5.16338795e-02 -3.46780002e-01 -5.22978529e-02 -3.55726704e-02]]',\n", + " 'The Lausanne University Hospital (CHUV) is one of five Swiss university hospitals. Through its collaboration with the Faculty of Biology and Medicine of the University of Lausanne and the EPFL, CHUV plays a leading role in the areas of medical care, medical research and training. The mission of the Data Science group, wich part of CHUV Department of Information Systems, is to foster the adoption and use of data science and innovative tools in medical informatics within the hospital to significantly improve biomedical research and hospital key processes. To achieve this ambitious goal, one of the core tasks of the group is to develop the necessary IT infrastructure for providing physicians and scientists with the means to smoothly access and use, for their clinical research projects, the massive volume of clinical data that every day is generated within the hospital. Our current and future challenges lie at the intersection of big data, medical informatics, data protection and artifical intelligence. To address these challenges and push the bar furhter, a part of the Data Science Group is specifically focused on projects in Medical Informatics that will explore innovative Tools and technologies for implementing new prototype applications that could potentially be deployed in operational settings. As a Junior Software Engineer within our Data Science team, you will be responsible for : Defining technical and functional specification for new medical informatics applications based on end-users (scientists, physicians and IT experts) requirements and latest technological advances from the research academic community Developing and documenting robust and mature proofs of concept and prototypes of these applications and help in the transition to production environments within the team. In your past experiences, you have shown a proven track record of crafting innovative and elegant software solutions and the capacity to fully document the solutions you have developed. Your are passionate about technology and excited about working in the medical field. Requirements This position requires a university degree in Computer Science or Medical Informatics or equivalent discipline with : Proficiency in at least one object-oriented design development and data-driven development language (JAVA is highly preferable, Go is a plus) Excellent understanding of data structures and algorithms Ability to implement robust prototypes almost ready for deployment in production settings Experience with RESTful JSON APIs and design of micro-services and Web services Experience with relational database management systems and SQL Experience with front-end Framework such as VueJS, WebSockets ans HTML/CSS Experience with DevOps Tools for software deployment and automation using containerization frameworks such as Docker (Kubernetes and Docker Swarm are a plus) Experience with Agile software development as a team and version control (OAuth, OpenID connect, etc.) Oral and written proficiency in French is required to help you interact with end-users and peers on a daily basis. Benefits If you become an employee at the Centre Hospitalier Universitaire Vaudois, we will offer you the following : High social benefits Three days of training per year 25 working days of vacation per year Very good restaurants with preferential rates. ',\n", + " '[\"Research\", \"Collaboration\", \"Hospitality\", \"Operations\", \"Innovation\", \"Socialization\"]',\n", + " '[\"Automation\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Model-Driven Development\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Informatics\", \"Relational Database Management Systems\", \"MASSIVE (Software)\", \"Prototype (Manufacturing)\", \"OAuth\", \"IT Infrastructure\", \"Version Control\", \"DevOps\", \"Prototyping\", \"Docker Swarm\", \"Track (Rail Transport)\", \"Medic\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Functional Specification\", \"Software Engineering\", \"Agile Software Development\", \"Data Science\", \"Web Services\", \"Docker (Software)\", \"Biology\", \"Management Systems\", \"Clinical Research\", \"Object-Oriented Design\", \"Big Data\", \"Community Development\", \"Clinical Data Warehouse\", \"Data Structures\", \"Front End (Software Engineering)\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Medical Research\", \"OpenID\", \"JSON\", \"Database Management Systems\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"SQL (Programming Language)\", \"Software Deployment\", \"Adoptions\", \"Information Systems\", \"Java Scripting Languages\"]',\n", + " \"['English']\"],\n", + " ['114',\n", + " 'data scientist operations planning & steering',\n", + " 'Zürich',\n", + " 'Airlines',\n", + " 'www.swiss.com',\n", + " '[[-1.18040219e-01 3.41364145e-01 4.58301902e-01 -1.48124583e-02\\n4.92912471e-01 -6.12655208e-02 5.86260408e-02 2.64740586e-01\\n-2.39444189e-02 -4.55572486e-01 -7.33047165e-03 -2.37603426e-01\\n3.14964689e-02 -5.13409376e-02 5.75264916e-02 5.60614228e-01\\n2.82505155e-01 2.44873874e-02 -9.98041779e-02 3.51305008e-01\\n1.70087039e-01 5.43550588e-02 2.01948702e-01 6.74133897e-01\\n4.65134263e-01 -6.01612628e-02 -1.09097488e-01 -8.58384222e-02\\n-2.58083045e-01 -3.18527043e-01 4.00862098e-01 -5.62231578e-02\\n-5.91134578e-02 -2.15164721e-01 1.26687855e-01 6.05315492e-02\\n-1.69772625e-01 -5.42637371e-02 -1.19859483e-02 9.29368734e-02\\n-5.19110322e-01 -1.94463685e-01 -3.23933288e-02 -1.82854921e-01\\n-3.13234180e-01 -3.55786979e-01 -3.24309245e-02 -3.46931182e-02\\n7.80491307e-02 1.95759311e-02 -4.06850010e-01 2.73026526e-01\\n-2.16250062e-01 -2.07304239e-01 3.09893012e-01 7.47088313e-01\\n8.16391855e-02 -3.89887273e-01 -4.85496700e-01 -3.54893625e-01\\n1.48816764e-01 -1.03014886e-01 4.24436778e-02 -2.23939657e-01\\n3.88457745e-01 -1.65517628e-03 7.63653778e-04 2.78322399e-01\\n-6.50076985e-01 -1.66754603e-01 -2.79564917e-01 -5.43296486e-02\\n-3.41161311e-01 -4.26038280e-02 -2.88823038e-01 -2.41879836e-01\\n-1.28913134e-01 4.10824955e-01 -2.90191248e-02 2.76665501e-02\\n-1.14710882e-01 2.63696223e-01 -2.26744875e-01 1.88958377e-01\\n2.01550841e-01 2.55893558e-01 2.41365880e-01 3.32796216e-01\\n-3.96611869e-01 3.61400127e-01 2.23566607e-01 -4.66546178e-01\\n1.75810084e-01 8.75512436e-02 3.95467460e-01 -1.22065566e-01\\n4.70747352e-02 1.54874504e-01 -1.37036592e-01 2.69901216e-01\\n1.83413565e-01 -2.67202973e-01 1.34152576e-01 -9.87423360e-02\\n-6.72373176e-03 -8.48616734e-02 6.00789562e-02 1.60808787e-01\\n-4.20994937e-01 3.48681271e-01 5.26979677e-02 -3.30496699e-01\\n-1.46569550e-01 -5.01600385e-01 -7.69219995e-02 -8.85493308e-02\\n1.53424934e-01 2.00226873e-01 2.05419317e-01 2.16080129e-01\\n1.29649058e-01 -4.69310991e-02 1.79917634e-01 7.69847751e-01\\n-5.73460571e-02 2.04889216e-02 -2.12958068e-01 3.33846599e-01\\n-9.27115604e-03 -2.73686618e-01 1.52935416e-01 1.86525613e-01\\n-5.99935725e-02 -1.04376778e-01 -2.02514321e-01 2.78276384e-01\\n-6.10138997e-02 -2.80021131e-01 -1.89607233e-01 2.19367892e-01\\n-1.34576559e-01 -3.72877002e-01 5.65957725e-01 -4.31154482e-02\\n1.00421444e-01 -1.64968967e-01 -1.18992426e-01 -7.65757188e-02\\n-1.00921951e-01 1.77840084e-01 1.87499374e-01 7.10845515e-02\\n-3.31014633e-01 -1.83900207e-01 -1.68883592e-01 2.74156034e-01\\n-2.65628427e-01 3.55432741e-02 -1.93109751e-01 -4.80959229e-02\\n2.75329918e-01 -1.68794896e-02 -3.85444760e-01 1.52970970e-01\\n4.24315706e-02 -2.20271885e-01 -4.82503213e-02 3.41612816e-01\\n-2.28841543e-01 1.84002280e-01 -2.20814552e-02 -1.55086115e-01\\n6.35938168e-01 1.47181422e-01 1.96225151e-01 6.49362653e-02\\n2.22550571e-01 -5.14434874e-02 1.04432076e-01 2.20043138e-01\\n-6.05003238e-01 3.34028363e-01 -2.04169527e-01 -2.01775700e-01\\n1.72288179e-01 -2.01433077e-02 2.21539408e-01 -2.41506636e-01\\n5.37843779e-02 -1.00671068e-01 -2.52109855e-01 -3.52821380e-01\\n-1.07470781e-01 3.74914799e-03 3.66665959e-01 -4.14361358e-01\\n-1.48575362e-02 1.76375210e-01 -5.32408237e-01 -7.83448294e-02\\n2.06297487e-01 2.41206616e-01 2.57937640e-01 1.74285114e-01\\n-5.06646112e-02 -4.59242016e-01 1.28939778e-01 -3.20263326e-01\\n-3.70703697e-01 1.98310181e-01 -2.10647926e-01 2.61545151e-01\\n5.50730489e-02 -2.96230055e-02 -6.42608032e-02 8.63225311e-02\\n-2.51082838e-01 -7.17492178e-02 1.55755788e-01 6.39824495e-02\\n2.13597447e-01 8.87240171e-02 -3.65630925e-01 4.85672534e-01\\n-5.76122850e-02 3.82747114e-01 1.26970008e-01 -9.09347773e-01\\n4.30515349e-01 2.07823008e-01 8.07099044e-03 -2.70931810e-01\\n5.19555390e-01 -2.93723643e-01 4.62077633e-02 6.64696395e-02\\n-2.55649984e-01 -1.96461290e-01 2.89213359e-01 -1.96870759e-01\\n-2.10078984e-01 4.46919382e-01 1.03227958e-01 1.56644434e-01\\n1.72697201e-01 -1.53698966e-01 -1.79344237e-01 -6.32865503e-02\\n-3.67911309e-02 -1.64066494e-01 -4.99135196e-01 9.70012508e-04\\n-6.24308139e-02 -4.65833306e-01 -1.30710736e-01 -4.49804902e-01\\n-1.93431914e-01 -4.37025279e-01 -8.06258246e-02 1.63000077e-01\\n2.22197071e-01 1.27883345e-01 -7.39940032e-02 -3.62572484e-02\\n-1.10872544e-01 -5.22403777e-01 -1.74255967e-01 2.44709160e-02\\n3.88543278e-01 2.96653450e-01 1.51549682e-01 -1.62998680e-02\\n3.29914466e-02 4.94091094e-01 -3.05553377e-01 -1.76720202e-01\\n2.48441428e-01 1.48396745e-01 -3.60709056e-02 -1.09502479e-01\\n6.24118969e-02 2.57691652e-01 -1.49116203e-01 8.53101313e-02\\n-3.40740383e-02 3.03725302e-02 3.92546147e-01 1.65802557e-02\\n-2.55509585e-01 -1.38467267e-01 -4.14830372e-02 1.75632581e-01\\n-4.58711326e-01 -2.86816776e-01 6.39892817e-01 9.93110761e-02\\n1.11239687e-01 1.81266516e-01 2.17242464e-01 -4.85513024e-02\\n-2.17953920e-01 -1.51172578e-01 2.81864524e-01 5.36202639e-02\\n1.18163303e-01 3.41820195e-02 -1.36008650e-01 -5.23110151e-01\\n-3.60946608e+00 -2.10008383e-01 6.59660846e-02 -3.01278949e-01\\n1.34643495e-01 -1.31090119e-01 1.07113197e-01 -2.55335961e-02\\n-3.62667650e-01 -8.27793032e-02 -9.87208411e-02 -1.61758661e-01\\n3.66262980e-02 3.16015184e-01 1.27112553e-01 1.32704735e-01\\n1.00421473e-01 -2.76116997e-01 -5.80717064e-02 4.17944193e-01\\n-5.38984388e-02 -6.51460886e-01 1.95582062e-01 6.29180670e-02\\n1.18884519e-01 2.33456552e-01 -3.57932866e-01 -8.21892396e-02\\n-3.73820007e-01 -2.87961066e-01 1.02704979e-01 -1.92789197e-01\\n-1.50507122e-01 2.77932227e-01 1.43900096e-01 -1.87457144e-01\\n7.78791159e-02 -4.20104891e-01 -2.50326246e-02 -3.78086746e-01\\n2.20937207e-02 -6.19384289e-01 -2.99614295e-02 -2.83323005e-02\\n5.78373075e-01 -2.37927407e-01 2.13490725e-01 7.51463696e-02\\n1.43413424e-01 1.48921058e-01 8.55512917e-02 9.81118530e-02\\n-2.39968121e-01 -3.38736326e-01 -8.53118747e-02 -3.71637456e-02\\n5.42521238e-01 4.25363421e-01 -1.20709494e-01 -7.88330361e-02\\n7.82689527e-02 -2.12874815e-01 -3.73283863e-01 -2.25404829e-01\\n-2.16964066e-01 -5.97997755e-02 -5.82025051e-01 -3.75746667e-01\\n-7.61165395e-02 -1.68504775e-01 -2.04093307e-01 5.81311822e-01\\n-2.62685478e-01 -3.72229636e-01 -5.01756221e-02 -4.16053772e-01\\n1.94365963e-01 -1.92579612e-01 -4.95805778e-03 -1.21633694e-01\\n-2.84875095e-01 -4.08124089e-01 1.10728979e-01 7.69913495e-02\\n-7.83211365e-02 -1.62087142e-01 7.55304843e-02 -1.87441289e-01\\n-2.89227813e-01 -4.51355845e-01 4.16267395e-01 8.46831203e-02\\n3.12367409e-01 1.26606226e-01 3.12344372e-01 6.00175112e-02\\n2.84592390e-01 -2.01314554e-01 4.78149131e-02 -4.25010979e-01\\n1.29906014e-01 5.12530804e-02 5.26117563e-01 -1.75777435e-01\\n1.20698199e-01 2.39304379e-02 -2.37726137e-01 1.13457125e-02\\n3.94846737e-01 -7.71824196e-02 1.28544107e-01 -7.54827857e-02\\n2.42821231e-01 -3.93876135e-01 -1.39915168e-01 -7.19780615e-03\\n1.19857239e-02 6.27549767e-01 -4.04539332e-02 -3.79620641e-01\\n-1.22224748e-01 3.69563878e-01 -1.37859136e-01 -5.43959513e-02\\n-1.65551096e-01 1.07079282e-01 -2.60432392e-01 2.81291425e-01\\n-4.10920754e-03 -9.74137485e-02 -3.33834767e-01 -8.96013826e-02\\n-4.76515740e-02 3.02143216e-01 2.45071128e-01 1.23081103e-01\\n-3.88253890e-02 -3.27226311e-01 -6.05711453e-02 1.65144354e-01\\n3.87460709e-01 3.24559182e-01 1.13672882e-01 -2.70087063e-01\\n1.12171993e-02 2.80729324e-01 -2.70134568e-01 2.50895262e-01\\n-2.26821750e-01 1.47115499e-01 -4.08982754e-01 -2.47678861e-01\\n-1.84027776e-01 -2.66684681e-01 1.30942732e-01 3.14595014e-01\\n1.85804307e-01 -7.67600164e-02 9.62051302e-02 -4.19771820e-01\\n3.27357471e-01 1.98878627e-02 1.39595330e-01 1.21843085e-01\\n8.36844593e-02 5.87035656e-01 -2.42281351e-02 -1.91301048e-01\\n-8.33226964e-02 -1.67841613e-02 -2.18270287e-01 -2.67840087e-01\\n-2.52904445e-02 -3.87331665e-01 -1.43626645e-01 4.25319463e-01\\n6.02337979e-02 -2.70821393e-01 -1.12922713e-01 3.31454366e-01\\n-7.86501840e-02 -3.08848858e-01 -2.10396543e-01 1.17234521e-01\\n2.46695831e-01 5.84373921e-02 3.21146160e-01 -4.82460976e-01\\n-3.86073142e-02 -1.16587549e-01 -3.85565013e-02 3.74753863e-01\\n1.16320349e-01 2.34330729e-01 -4.47029248e-02 -8.76497924e-02\\n4.28609133e-01 -1.11463174e-01 -5.37359305e-02 1.05918929e-01\\n8.14394802e-02 -2.33354032e-01 -3.84143531e-01 -4.37430665e-02\\n-6.05465099e-02 -1.45119086e-01 5.30902892e-02 1.40007317e-01\\n1.15029953e-01 -1.98834483e-02 -5.73975384e-01 -3.12569767e-01\\n-2.01958165e-01 5.91108501e-02 1.79925896e-02 -6.25557899e-01\\n-1.14054918e-01 -1.10122085e-01 -5.68446159e-01 2.39068806e-01\\n-1.42361224e-03 -1.41845137e-01 8.02965313e-02 -2.27567665e-02\\n-2.00192600e-01 -1.03508599e-01 5.85061759e-02 5.88466860e-02\\n-1.69556454e-01 -1.78376824e-01 6.92568794e-02 -8.91747713e-01\\n1.09493434e-01 7.81251639e-02 -1.61103293e-01 8.09106231e-02\\n-1.21420540e-01 -5.63926220e-01 2.34097809e-01 -3.28216016e-01\\n-3.76583822e-02 5.92909940e-02 -1.64909303e-01 -3.53482366e-01\\n1.25790372e-01 7.10569173e-02 -1.90248787e-01 4.00637716e-01\\n-3.13303202e-01 3.50396216e-01 2.75852028e-02 1.33131534e-01\\n5.57432100e-02 -2.37537533e-01 1.61444247e-01 -2.17607692e-01\\n-4.09331411e-01 -1.22004375e-01 -2.79286206e-01 -2.71782458e-01\\n-5.00238836e-02 -2.41139799e-01 -1.92170292e-01 4.58091032e-04\\n2.49765068e-01 1.40949100e-01 -1.97703421e-01 -1.15315534e-01\\n3.60254012e-02 -5.19922972e-01 2.22023293e-01 -1.00759864e-01\\n-1.35016054e-01 -1.73190936e-01 2.75669068e-01 1.41260512e-02\\n1.32808581e-01 -2.33678669e-01 4.61312443e-01 -3.04981291e-01\\n-2.71401227e-01 -7.88175836e-02 6.93139061e-02 3.25747989e-02\\n3.43477279e-01 -3.95458847e-01 -1.01576611e-01 3.39050055e-01\\n-2.64953896e-02 1.56724632e-01 3.13684762e-01 -1.41094089e-01\\n-2.34689385e-01 2.03374371e-01 -4.68264222e-01 1.25785083e-01\\n7.40583360e-01 1.25656307e-01 2.22308725e-01 1.31518707e-01\\n1.31081834e-01 1.89606130e-01 4.28864539e-01 -1.08739041e-01\\n-2.23949611e-01 3.26811790e-01 1.17115900e-01 -6.10152245e-01\\n-6.82257861e-02 7.85052776e-04 -7.77829513e-02 -4.08706665e-01\\n5.35128176e-01 3.39811683e-01 -2.59361446e-01 -2.01119140e-01\\n-1.41013920e-01 -8.69948715e-02 2.09365353e-01 -2.30362825e-02\\n4.23822850e-02 -6.16792962e-02 5.55298090e-01 -7.11787194e-02\\n2.86021948e-01 4.61113214e-01 -9.33268368e-02 -3.19196641e-01\\n-7.24792629e-02 1.59976959e-01 4.40481678e-02 5.04209876e-01\\n-1.90887451e-01 2.91703701e-01 -1.22426748e-02 1.65537924e-01\\n-5.11471108e-02 -7.32508898e-02 2.04319343e-01 8.97556692e-02\\n4.70293835e-02 1.43159434e-01 4.47359145e-01 3.57923657e-01\\n3.17160457e-01 3.59211922e-01 2.76875496e-01 7.63835087e-02\\n4.27546680e-01 5.12756646e-01 2.71817923e-01 1.72711134e-01\\n-4.43446077e-02 -3.52242477e-02 1.14549771e-01 1.04258046e-01\\n2.68646121e-01 3.52616668e-01 1.34846285e-01 7.87171245e-01\\n2.99096107e-01 3.74253392e-01 6.48127377e-01 -6.38934791e-01\\n-3.09442520e-01 1.09019913e-02 4.15979475e-01 -3.60973418e-01\\n4.96568419e-02 8.93433839e-02 -2.35845715e-01 1.28679082e-01\\n-5.15796781e-01 -2.83638656e-01 -7.60965645e-02 5.88786937e-02\\n8.40616971e-02 -1.43331990e-01 -1.23501852e-01 1.88944682e-01\\n-8.49156082e-02 -2.38799989e-01 -3.93284172e-01 -1.31349117e-01\\n-2.93473840e-01 -6.56541437e-02 3.03354673e-02 -8.76329690e-02\\n-5.44164404e-02 -1.98884383e-01 -1.03343755e-01 -9.32644978e-02\\n1.93039417e-01 -1.14610180e-01 -1.34326488e-01 -1.14313647e-01\\n2.24361435e-01 2.28048891e-01 5.57747006e-01 -7.72029385e-02\\n1.52326241e-01 -1.63237780e-01 -1.82844639e-01 9.61039066e-02\\n2.53780782e-01 -1.57856140e-02 -4.35886569e-02 4.63002771e-01\\n-2.19717070e-01 -1.74742132e-01 5.88469654e-02 3.03875387e-01\\n-4.90969658e-01 1.40039176e-02 -1.14509061e-01 6.21541739e-02\\n6.52865171e-02 1.71081141e-01 -1.04353324e-01 6.59059808e-02\\n-2.05112398e-01 -5.03061652e-01 2.41616905e-01 -1.09978862e-01\\n-1.11151487e-01 5.79248965e-02 1.98500186e-01 1.45641506e-01\\n-2.66520470e-01 -3.41722593e-02 -9.32593122e-02 1.76991269e-01\\n3.12119126e-02 2.94100970e-01 -1.62990034e-01 -2.11572111e-01\\n-2.90787637e-01 1.10125333e-01 7.60126859e-04 1.83045611e-01\\n1.70817636e-02 3.41782391e-01 -1.55177265e-02 7.36217275e-02\\n3.32857430e-01 -1.21697057e-02 -1.76586255e-01 -1.98093295e-01\\n-2.31476635e-01 -1.52300045e-01 -7.75761157e-02 -6.31126836e-02\\n2.55643845e-01 -3.11349928e-01 -5.39372712e-02 -2.28299096e-01\\n-1.84759542e-01 -3.63991141e-01 2.86921542e-02 -1.25742614e-01]]',\n", + " 'Help us actively shape and promote the digitalization of the Lufthansa Group! As a team player in our IT to Business Alignment unit, you’ll turn challenges into innovative solutions for our Operations Planning & Steering. You will partner up with our business units and our IT service providers. And you will delight in transforming pain points into appealing apps. So if you’re the type to pour all your passion and your energies into interpreting extensive data, and for whom “that won’t work” or “we’ve tried that already” only makes you more determined, come aboard! Your duties Use statistical data analysis or simulations to develop practical solutions to business problems Develop and improve forecasts in business areas and make adjustments according to market requirements Visualize and interpret analytical results for business and translate analytics into business language Present complex information to internal and external stakeholders Develop strategies and recommend improvements to the overall data collection process including data submission formats and standards to improve data quality Work out project proposals with goals, resources, milestones and costs Leading IT projects up to and including their operational handover Developing test procedures and conducting tests Active collaborations with various organizations within the Lufthansa Group Willingness to travel Your profile University degree (Master, PhD as asset) with a quantitative focus in Mathematics, Statistics, Data Science or similar Relevant working experience in creating and using advanced machine learning algorithms and statistics for regression, classification, simulation, etc. Advanced skills in SQL and in one or more of the following programming languages: R, Python Knowledge in BI Tools for interactive data visualization (e.g. Tableau, QlikView, Shiny) is an asset Highly analytical and conceptual mindset, as well as creativity and innovative ability to stay atop complex situations Proven experience in IT project management (Agile certification an advantage) Experience in requirements engineering An ability to familiarize yourself swiftly and independently with new topic areas Good written and verbal communication skills in German and English and ability to work in cross cultural environments Details Employment level: 80-100% Department: IT to Business Alignment Work place: Zurich, Kloten Starting date: upon agreement Application deadline: November 24, 2019 Contact Head of IT to Business Alignment Flight & Ground Operations: Mr Fredy Wehrli Human Resources: Ms Kerstin Braun Recruiting Support: Tel.: +41 44 564 44 22 You may apply in English or German. About Swiss International Air Lines AG It’s the little differences that make working at SWISS so appealing. The fact, for example, that we treat every detail with care, see quality in terms of hospitality and view nationality through an international lens. In a similar way, we see variety as richness, a job as an experience and SWISS as a world of inspiration. You, too, will be stimulated in our special working environment – one in which, wherever you are, you’ll always feel: Truly SWISS .... where people matter. www.swiss.com',\n", + " '[\"Verbal Communication Skills\", \"Hospitality\", \"Operations\", \"Presentations\", \"Innovation\", \"Creativity\"]',\n", + " '[\"Data Quality\", \"Tableau (Business Intelligence Software)\", \"KM Programming Language\", \"Milestones (Project Management)\", \"Analytics\", \"Statistics\", \"Statistical Coupling Analysis\", \"Strategic Business Unit\", \"Activism\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Market Requirements Documents\", \"E (Programming Language)\", \"IBM Personal Computer/AT\", \"Human Resource Management\", \"Data Science\", \"QlikView (Data Analytics Software)\", \"Library For WWW In Perl\", \"Shiny (R Package)\", \"Requirements Engineering\", \"Digitization\", \"Machine Learning Algorithms\", \"R (Programming Language)\", \"Business Alignment\", \"Acceptance Test Procedures\", \"Survey Data Analysis\", \"Operational Planning\", \"Simulations\", \"Agile Management\", \"Appeals\", \"Project Proposals\", \"Cross-Cultural Studies\", \"Service Provider\", \"Project Management\", \"Data Collection\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"Advanced Business Language\", \"Data Analysis\"]',\n", + " \"['English', 'Southern Sotho', 'Kikuyu', 'Javanese', 'Northern Sami']\"],\n", + " ['68',\n", + " 'data scientist',\n", + " 'Cheseaux-Noréaz',\n", + " 'Telecommunications Manufacturing',\n", + " 'www.nagra.com',\n", + " '[[-1.93390340e-01 2.77924567e-01 5.01804709e-01 1.81110166e-02\\n4.76072967e-01 -9.28495005e-02 -6.60263225e-02 3.26945603e-01\\n-2.16499064e-02 -3.39423329e-01 -1.13672808e-01 -3.34753096e-01\\n-7.95038864e-02 7.88691789e-02 4.40750569e-02 5.63180983e-01\\n2.15001911e-01 3.60997245e-02 -1.84154361e-01 2.96018839e-01\\n1.38408139e-01 -1.25215948e-01 6.02634773e-02 8.01748753e-01\\n4.49488342e-01 3.76719609e-03 -9.87215936e-02 7.30357021e-02\\n-2.39515066e-01 -3.15817535e-01 5.22049665e-01 5.76899238e-02\\n-1.63596541e-01 -3.63487303e-01 1.32173717e-01 1.52533710e-01\\n-2.35982120e-01 -1.51531845e-01 -1.19588375e-01 1.87052414e-01\\n-5.52772522e-01 -2.36624807e-01 -5.25480658e-02 6.54785708e-02\\n-3.17484468e-01 -3.02535892e-01 4.32687774e-02 -1.12842366e-01\\n8.81983414e-02 7.55868852e-03 -5.18114507e-01 2.97081202e-01\\n-2.48329788e-01 -1.87904283e-01 3.33591223e-01 7.38321483e-01\\n2.51295995e-02 -4.86441612e-01 -4.85969454e-01 -3.39033484e-01\\n2.18928251e-02 -1.41875550e-01 1.38466544e-02 -4.12062854e-01\\n3.57018411e-01 4.59606126e-02 -2.31438987e-02 3.20294201e-01\\n-7.86396384e-01 -6.27257153e-02 -3.04109573e-01 -1.52090751e-03\\n-4.21671778e-01 -3.77410464e-02 -4.19388056e-01 -9.10360068e-02\\n-7.36199915e-02 4.05428231e-01 8.64392519e-03 7.50249177e-02\\n-2.30509937e-01 3.35918397e-01 -1.94170743e-01 3.57369065e-01\\n2.51653016e-01 2.16749519e-01 1.47557765e-01 3.76847208e-01\\n-3.69135708e-01 4.87062871e-01 1.31568879e-01 -3.57342720e-01\\n2.68102556e-01 1.06419429e-01 5.21375656e-01 -4.98937368e-02\\n1.94156855e-01 9.61908996e-02 -2.94948786e-01 3.10727984e-01\\n2.42743820e-01 -3.21368456e-01 9.57377031e-02 -1.33614749e-01\\n4.79593426e-02 -2.30195709e-02 9.66019705e-02 1.61783025e-01\\n-3.02450091e-01 5.01802862e-01 1.90279201e-01 -2.10072368e-01\\n-9.68805179e-02 -4.66984987e-01 -1.16213381e-01 -2.52629053e-02\\n-2.88147386e-02 2.58512795e-01 1.48890018e-01 1.52663618e-01\\n2.28011161e-01 -5.32306023e-02 1.16999999e-01 8.33917260e-01\\n-1.68941319e-02 4.49017659e-02 -2.26312667e-01 3.22550654e-01\\n1.63619071e-01 -3.08049709e-01 3.36838305e-01 8.97111148e-02\\n-1.11415293e-02 -1.81943491e-01 -2.75236130e-01 4.04765517e-01\\n-1.84121355e-01 -3.24688911e-01 -3.16918552e-01 2.59879947e-01\\n6.12207092e-02 -3.22569191e-01 6.73745751e-01 -2.25977041e-03\\n1.84849769e-01 -1.61950499e-01 -5.95908687e-02 -1.50294125e-01\\n-8.14361647e-02 2.15271458e-01 1.78827681e-02 1.26426145e-01\\n-3.01731110e-01 -2.58384407e-01 -1.67411223e-01 1.12409666e-01\\n-3.46231550e-01 1.17487475e-01 -3.26148346e-02 -1.38124973e-01\\n2.23375708e-01 5.62720187e-02 -3.76535773e-01 1.75817162e-01\\n-9.93166864e-02 -1.11343704e-01 -5.73932603e-02 3.81676555e-01\\n-1.54532522e-01 2.42482960e-01 -6.27475232e-02 -4.69405651e-02\\n7.06768632e-01 1.40007466e-01 2.09126383e-01 5.31552136e-02\\n2.79631138e-01 -3.73929217e-02 1.90810189e-01 1.86891645e-01\\n-6.77552938e-01 2.83256382e-01 -4.73939329e-02 -1.59995556e-01\\n8.07602406e-02 -1.49943784e-01 3.19896370e-01 -3.64178360e-01\\n2.05223449e-02 -3.78290825e-02 -3.37747335e-01 -3.24886680e-01\\n-1.97796598e-01 -7.78833553e-02 2.83551484e-01 -4.80871499e-01\\n-5.73686771e-02 2.93623477e-01 -5.32530069e-01 -2.17717201e-01\\n7.69181624e-02 2.17666015e-01 1.82104781e-01 1.87638044e-01\\n-9.29015428e-02 -6.46547318e-01 3.05095706e-02 -3.96075398e-01\\n-3.36437047e-01 4.42718156e-02 -3.47922266e-01 2.17511177e-01\\n1.19906016e-01 2.91849487e-02 -1.46870300e-01 8.35912973e-02\\n-3.18597257e-01 7.10360147e-03 4.80577573e-02 1.00083232e-01\\n2.41018087e-01 2.05619231e-01 -4.25904065e-01 4.11185622e-01\\n-2.07626775e-01 6.51127577e-01 1.59364566e-01 -8.70664716e-01\\n6.27516866e-01 2.93895543e-01 -5.87536693e-02 -3.01257491e-01\\n4.96024221e-01 -3.68181825e-01 -6.29264638e-02 8.39697719e-02\\n-3.45402390e-01 -3.73178869e-01 2.67325342e-01 -2.27457896e-01\\n-2.12292194e-01 4.58089650e-01 1.66276857e-01 1.45967424e-01\\n3.13223839e-01 -2.47811377e-01 -4.86939959e-02 9.41152424e-02\\n-5.63932732e-02 -1.94827706e-01 -6.11626387e-01 -2.65978072e-02\\n-1.45259976e-01 -3.90954763e-01 -1.55207306e-01 -3.82913649e-01\\n-2.79125035e-01 -3.92443806e-01 -7.13577569e-02 2.77209073e-01\\n2.72771358e-01 1.16182506e-01 3.57387960e-03 2.87717097e-02\\n-1.32866442e-01 -6.99489713e-01 -2.21442580e-02 9.70575958e-02\\n4.08428192e-01 3.04132819e-01 1.79000333e-01 8.35676491e-03\\n1.22414336e-01 7.05972850e-01 -3.13608378e-01 -3.50304037e-01\\n1.89243823e-01 1.35080785e-01 4.15236950e-02 -6.59190416e-02\\n1.47033677e-01 2.48235822e-01 -2.87692726e-01 7.99555331e-02\\n-1.75016701e-01 -6.94361702e-02 4.41831201e-01 2.69607641e-03\\n-2.70175815e-01 -8.39509070e-02 -1.17887571e-01 1.53057113e-01\\n-4.60989207e-01 -1.41435266e-01 5.70589900e-01 2.46266574e-01\\n1.75112724e-01 2.66720578e-02 6.16339296e-02 -1.11193405e-02\\n-2.76144534e-01 -3.44712049e-01 3.27240616e-01 1.30336449e-01\\n5.75247929e-02 6.09794185e-02 2.96363235e-02 -6.86978579e-01\\n-3.09289837e+00 -1.47160172e-01 2.29708046e-01 -2.42755324e-01\\n2.07509115e-01 -1.33303255e-01 8.39177966e-02 -3.59278917e-02\\n-3.80930483e-01 8.64251330e-02 -1.66980088e-01 -1.91354677e-01\\n1.13399271e-02 1.32937565e-01 2.54045069e-01 2.03568459e-01\\n1.28719211e-01 -2.68744260e-01 1.10798413e-02 3.18819195e-01\\n-1.27474442e-01 -6.43679082e-01 1.74137115e-01 5.21031432e-02\\n1.30385220e-01 1.68659955e-01 -3.60097528e-01 -9.05617252e-02\\n-3.11006248e-01 -2.47617871e-01 7.62161314e-02 -3.37372631e-01\\n-1.42928526e-01 2.63114959e-01 2.64363050e-01 -7.41200149e-02\\n6.29472733e-03 -3.65716815e-01 -1.37773842e-01 -4.71107721e-01\\n7.59378970e-02 -5.51772177e-01 4.75806445e-02 -2.34245449e-01\\n8.15466344e-01 -2.78617293e-01 8.43410715e-02 7.00802356e-02\\n1.89586207e-01 6.12475947e-02 1.24108024e-01 9.06017497e-02\\n-2.21164644e-01 -2.60812104e-01 -7.57719576e-02 -1.94069147e-01\\n5.93221724e-01 4.51687694e-01 -1.61932379e-01 1.74438879e-02\\n1.15954690e-01 -2.62336224e-01 -4.45423245e-01 -3.56919527e-01\\n-9.48811918e-02 -1.39070734e-01 -7.90461540e-01 -5.07189989e-01\\n-9.54942331e-02 -1.18293837e-01 -1.57220513e-01 6.06403589e-01\\n-2.71673024e-01 -2.85654485e-01 -6.84792697e-02 -5.34494638e-01\\n3.21565360e-01 -1.51260018e-01 1.97156280e-01 -1.93328530e-01\\n-2.38721669e-01 -5.45080304e-01 1.25786021e-01 -8.05869401e-02\\n-1.59597561e-01 -3.47625434e-01 -3.21810395e-02 -1.90993547e-01\\n-3.49886656e-01 -6.32096171e-01 3.85454535e-01 1.46352589e-01\\n3.50929320e-01 1.76650107e-01 2.53321201e-01 -7.20813870e-02\\n2.80941397e-01 4.18804586e-03 5.18658459e-02 -3.28548998e-01\\n7.05873668e-02 -2.07814835e-02 5.09122849e-01 -3.17017168e-01\\n3.70138660e-02 7.38022551e-02 -3.11970621e-01 2.96372361e-02\\n4.07189995e-01 -9.29967687e-02 3.61785479e-02 -7.15148151e-02\\n2.96787322e-01 -2.63670802e-01 -1.06369890e-01 1.05328768e-01\\n7.59965628e-02 6.83040440e-01 -1.40000042e-02 -4.26541060e-01\\n-1.21085547e-01 4.62739170e-01 2.10811831e-02 3.10530178e-02\\n-1.87994242e-01 6.26327023e-02 -2.70039380e-01 2.72296906e-01\\n3.62038128e-02 -2.24760011e-01 -1.64340943e-01 -1.27783716e-01\\n-9.55685079e-02 3.50730836e-01 2.58674979e-01 7.14365542e-02\\n-9.79979336e-02 -3.44591916e-01 -1.22558422e-01 2.58416981e-01\\n2.26870358e-01 5.44835687e-01 2.59920806e-01 -2.79921740e-01\\n-6.63616881e-03 3.10074151e-01 -1.92567527e-01 2.72824228e-01\\n-1.86168492e-01 5.69349155e-02 -6.47449613e-01 -1.86156839e-01\\n-2.61200130e-01 -3.86020362e-01 2.66185939e-01 3.50681454e-01\\n1.60606921e-01 -3.71423997e-02 1.14065900e-01 -4.81083572e-01\\n2.93204844e-01 1.24147803e-01 1.90576866e-01 1.69091284e-01\\n-2.90198065e-03 5.77316701e-01 -1.32041007e-01 -2.01213270e-01\\n-2.79412791e-02 -1.08734138e-01 -2.43598938e-01 -1.34481445e-01\\n5.25994822e-02 -5.41100383e-01 -2.08290905e-01 5.25271595e-01\\n1.92522913e-01 -1.61536857e-01 -2.86735773e-01 2.99237072e-01\\n5.29160257e-03 -2.50999212e-01 -2.72839546e-01 -3.55201177e-02\\n3.68459821e-01 2.09577292e-01 2.97717690e-01 -5.02060652e-01\\n-1.10224728e-02 -5.48417009e-02 -1.97186731e-02 4.34965074e-01\\n4.53365371e-02 2.80277673e-02 -1.76783532e-01 -1.05656266e-01\\n5.69832265e-01 -8.32489505e-02 -6.65723979e-02 2.53277868e-02\\n8.70916247e-02 -1.98935166e-01 -4.53278720e-01 1.22513428e-01\\n-7.96661526e-02 -3.06424856e-01 4.50605229e-02 1.25570059e-01\\n2.32759863e-03 1.98925249e-02 -6.41682625e-01 -2.17325240e-01\\n-2.69363523e-01 -5.16636707e-02 7.63184503e-02 -5.36889911e-01\\n-4.05533835e-02 -9.23997909e-02 -6.21217847e-01 2.37880588e-01\\n-2.14674890e-01 -1.32803440e-01 1.74234867e-01 1.41237199e-01\\n-2.39239633e-01 -8.44657943e-02 6.18379861e-02 1.94269776e-01\\n-3.32863331e-01 -2.50441462e-01 -3.34421992e-02 -9.36687350e-01\\n1.97891012e-01 7.59173036e-02 -1.51172087e-01 2.04174906e-01\\n-6.31334037e-02 -7.54140198e-01 7.00052083e-02 -3.83863509e-01\\n1.05138570e-02 3.62985618e-02 -1.82286263e-01 -3.71965140e-01\\n2.47092485e-01 -1.47618540e-02 -2.24826425e-01 4.07891929e-01\\n-3.42553318e-01 2.86887467e-01 -1.23881146e-01 9.29970816e-02\\n5.76946884e-04 -2.37492174e-01 1.81121379e-01 -3.31810206e-01\\n-4.04159427e-01 -2.30873838e-01 -3.36333036e-01 -2.29255021e-01\\n-5.42669967e-02 -3.70674849e-01 -1.04871765e-01 6.71397671e-02\\n4.32558477e-01 5.54564744e-02 -1.23297215e-01 -2.44844496e-01\\n4.49631363e-02 -4.37671423e-01 2.07597390e-04 -8.64563435e-02\\n-3.02169845e-02 -1.06081709e-01 1.12802267e-01 1.12792224e-01\\n2.03269899e-01 -3.88275325e-01 3.91163290e-01 -5.10036707e-01\\n-2.99046218e-01 -1.31033391e-01 6.16677217e-02 -7.44930357e-02\\n4.13323164e-01 -4.16863263e-01 -3.38103846e-02 4.03312147e-01\\n1.38649538e-01 9.60152820e-02 2.46151626e-01 -1.60694107e-01\\n-1.52832061e-01 2.50324816e-01 -4.04224932e-01 5.22971861e-02\\n8.18529963e-01 1.13993064e-01 1.33930326e-01 1.73950702e-01\\n1.40929729e-01 2.05039456e-01 4.76270974e-01 -3.61044742e-02\\n-3.03522386e-02 3.13703775e-01 1.62929371e-02 -4.79430497e-01\\n-6.92121089e-02 -1.16267435e-01 -1.69646084e-01 -4.05548334e-01\\n6.26175165e-01 4.02683735e-01 -3.98757488e-01 -2.02044100e-01\\n-1.34036064e-01 -1.68890834e-01 2.36139208e-01 1.11739207e-02\\n-6.54741675e-02 2.90875211e-02 4.29262280e-01 -1.20581269e-01\\n2.08370730e-01 5.39000750e-01 -1.45645544e-01 -2.49825612e-01\\n-6.82584345e-02 1.93949878e-01 5.13929352e-02 5.56977808e-01\\n-2.64696747e-01 3.74438584e-01 -8.23908448e-02 1.00607641e-01\\n-1.17289603e-01 1.19536594e-01 2.37303466e-01 1.38847664e-01\\n2.20385760e-01 1.11251429e-01 3.74819040e-01 4.64072645e-01\\n2.28355542e-01 4.45784569e-01 3.01491618e-01 8.00138265e-02\\n4.06049728e-01 6.07006073e-01 4.04298246e-01 1.59393221e-01\\n2.30107382e-02 5.83453178e-02 1.21774837e-01 5.12881391e-03\\n4.21329677e-01 3.81233990e-01 1.93578154e-01 8.62824440e-01\\n2.67820001e-01 2.89986759e-01 7.43821263e-01 -7.54431367e-01\\n-3.47673208e-01 5.53575829e-02 5.33375144e-01 -4.02403325e-01\\n1.35910705e-01 6.95232004e-02 -2.16342986e-01 3.56198013e-01\\n-5.84395766e-01 -3.19081247e-01 -3.81721333e-02 4.78594974e-02\\n2.43099611e-02 -1.58870026e-01 -1.85453087e-01 1.48007721e-01\\n-9.29111987e-02 -1.30216300e-01 -4.11887586e-01 -1.82261735e-01\\n-2.63954997e-01 -9.53133553e-02 -1.12770095e-01 -1.14505112e-01\\n-1.19524062e-01 -2.94717431e-01 -1.05689675e-01 -1.19996898e-01\\n2.72717148e-01 -2.19322458e-01 -6.47427887e-02 -1.00277610e-01\\n3.83762538e-01 1.70772836e-01 5.49828649e-01 8.42723995e-04\\n6.09900057e-02 -2.10879982e-01 -1.93820387e-01 3.22846584e-02\\n1.73299983e-01 4.31253053e-02 3.46397460e-02 2.87407547e-01\\n-2.97953278e-01 -1.97812617e-01 1.66939139e-01 2.18815118e-01\\n-4.30949509e-01 2.41664071e-02 -1.03671983e-01 1.76756278e-01\\n9.04382542e-02 1.59854054e-01 -1.94933787e-01 5.76399639e-02\\n-1.98936343e-01 -5.00330567e-01 3.19982827e-01 -8.62606615e-02\\n-1.38657302e-01 9.14874971e-02 3.29050004e-01 1.47112742e-01\\n-3.00496370e-01 9.76476073e-03 -1.19819358e-01 1.36263028e-01\\n4.89122756e-02 2.49621272e-01 -1.50469199e-01 -3.28121036e-01\\n-3.26744318e-01 2.45058388e-01 -8.06309730e-02 4.98420410e-02\\n-1.01201274e-02 4.61749643e-01 9.69566777e-02 6.85540587e-02\\n5.00011802e-01 4.16603871e-02 -2.93963432e-01 -3.27199519e-01\\n-2.19912857e-01 -2.18446314e-01 -8.32550079e-02 -1.41111344e-01\\n1.66932538e-01 -4.11995828e-01 -1.03597417e-01 -1.78580388e-01\\n-6.06318451e-02 -3.55135262e-01 -3.09639033e-02 -7.80791938e-02]]',\n", + " 'Stimulating. Motivating. Challenging. NAGRA, a digital TV division of the Kudelski Group provides security and multiscreen user experience solutions for the monetization of digital media. The company offers content providers and DTV operators worldwide secure, open, integrated platforms and applications over broadcast, broadband and mobile platforms, enabling compelling and personalized viewing experiences. Location: Cheseaux, Switzerland Mission As part of the Kudelski Group’s \"Insight\" initiative, we are developing data analytics products for major telecom operators around the world, powered by state-of-the-art machine learning and probabilistic algorithms. We are looking for a Data Scientist to help us transform raw data into actions and predictions so that our clients can effectively navigate their business. We work on a large spectrum of machine learning applications, including predictive maintenance, uplift prediction, and time series forecasting. Woud you like to join a nimble, focused and fast-moving division within a well-established company? We are a team of techies, data crunchers and business experts who want to make a difference in a fast-changing industry – get in touch! Responsibilities As a member of the team, you will build machine learning workflows to address a wide range of business questions. Your main responsibilities will be to: Apply statistical analysis and visualization techniques to gain actionable insights into large volumes of data from different sources Develop machine learning workflows Work closely with the engineering team and support them in the industrialization of the final workflow Occasionally travel to clients to discuss their data and business needs and to present project results Maintain and develop professional knowledge by attending and presenting at conferences, reading professional publications and testing state-of-the-art tools Requirements / Profile Here is the kind of profile we are looking for: 3+ years work experience Familiar with statistics and machine learning algorithms Experience in deep learning, econometrics, or causal inference is a bonus Curious about the business impact of their workGood Python programming skills, intimate with the Python data science stack Experience with relational databases and Big Data tools like Spark, Presto, Hive, etc. Knowledge of best practices for software development and data organization, and pleasure in working in an open source environment (Github is at the core of our workflow) Likes interacting with people, including clients, and can communicate well even to a non-technical audience Willingness to travel occasionally and assume a client-facing role Good spoken and written English, knowledge of French is a plus Swiss or EU resident Our team promotes integration and is committed to provide equal employment opportunity to all applicants Reference: 11269 Publication Date: 28-10-2019',\n", + " '[\"Professionalism\", \"Communications\", \"Written English\", \"Operations\", \"Integration\", \"Presentations\", \"Sourcing\"]',\n", + " '[\"Predictive Maintenance\", \"Tooling\", \"Programming (Music)\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Prediction\", \"Machine Learning\", \"Good Agricultural Practices\", \"Industrialization\", \"Statistical Coupling Analysis\", \"Scholastic READ 180\", \"Visualization\", \"Python (Programming Language)\", \"Maintainability\", \"Digital Media\", \"Open Telecom Platforms\", \"Mobility\", \"Machine Learning Methods\", \"Econometrics\", \"Github\", \"Data Science\", \"Time Series\", \"Apache Hive\", \"Equalization\", \"Digitization\", \"Personalization\", \"Big Data\", \"Deep Learning\", \"Finalization\", \"Reference Application\", \"Causal Inference\", \"Raw Data\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Forecasting\", \"User Experience\", \"Integration Platforms\", \"Workflows\", \"Broadcasting\", \"Broadband\"]',\n", + " \"['English', 'Pashto', 'Lithuanian', 'Tatar', 'Ewe']\"],\n", + " ['62',\n", + " 'software engineer - operation solutions',\n", + " 'Grenchen',\n", + " '',\n", + " '',\n", + " '[[-1.91340968e-01 2.03036457e-01 5.38426340e-01 3.72208096e-02\\n5.74043393e-01 -2.89753944e-01 -6.52821586e-02 2.73197621e-01\\n-7.20130056e-02 -3.28280777e-01 -1.55949757e-01 -2.17719153e-01\\n-1.38210461e-01 1.52106257e-02 2.56817460e-01 2.88870156e-01\\n2.71459907e-01 1.19538054e-01 -2.04797849e-01 2.51364887e-01\\n1.25090182e-01 -1.70664936e-01 1.29699901e-01 6.90535963e-01\\n3.39582533e-01 -2.78459694e-02 -4.50939387e-02 9.17675570e-02\\n-2.96406895e-01 -1.44567430e-01 3.39789361e-01 -5.83779961e-02\\n-7.98451677e-02 -2.97836930e-01 1.06212594e-01 8.94083604e-02\\n-2.04502583e-01 8.34680051e-02 -3.59949097e-02 1.20066456e-01\\n-4.23214704e-01 -2.39556566e-01 8.41680467e-02 7.83899277e-02\\n-2.47022018e-01 -2.59608507e-01 8.46966729e-03 -5.19576222e-02\\n1.55556098e-01 1.27397780e-03 -4.76535261e-01 3.53759825e-01\\n-2.20004082e-01 -2.42173374e-01 3.00030947e-01 4.87740278e-01\\n3.41971777e-02 -5.33801556e-01 -3.31683993e-01 -2.52334833e-01\\n1.44162565e-01 -2.07661167e-01 7.85057619e-02 -2.55059510e-01\\n4.11329806e-01 -1.02291130e-01 -1.81144476e-02 2.84027815e-01\\n-7.75342643e-01 -4.20701653e-02 -1.68980688e-01 2.75850762e-02\\n-2.81638622e-01 -1.16157949e-01 -2.34573603e-01 -9.69759524e-02\\n-1.10180087e-01 3.19297045e-01 7.45527968e-02 1.50860816e-01\\n-1.55440912e-01 2.60393620e-01 -1.51225433e-01 2.62723148e-01\\n2.46053383e-01 2.88833708e-01 2.07615942e-01 3.30412984e-01\\n-4.05816972e-01 4.91016895e-01 1.03018731e-01 -3.00505161e-01\\n2.28512213e-01 2.04043657e-01 3.57509583e-01 8.06562379e-02\\n-6.59476891e-02 9.31607485e-02 -2.66989559e-01 1.88974574e-01\\n2.41316274e-01 -3.06503087e-01 -5.90524450e-02 2.56696697e-02\\n-7.47649744e-02 -1.60186104e-02 -7.22765550e-02 3.50184470e-01\\n-3.26893628e-01 3.95014316e-01 1.69030830e-01 -2.07531407e-01\\n-7.64881074e-02 -5.37078679e-01 -1.68753207e-01 1.52255148e-01\\n-1.19586820e-02 2.05144659e-01 4.34928417e-01 3.25380325e-01\\n3.84270459e-01 1.21490143e-01 1.30150393e-01 9.44242299e-01\\n-4.95735779e-02 1.17167644e-01 -2.09232017e-01 4.02302891e-01\\n1.94669545e-01 -2.62564749e-01 8.18037316e-02 3.60250235e-01\\n1.15455963e-01 -7.28202164e-02 -1.26744509e-01 2.83597916e-01\\n-9.26273689e-02 -1.52015328e-01 -2.32087776e-01 1.20138206e-01\\n-1.34180292e-01 -4.78262722e-01 5.45299351e-01 4.71945256e-02\\n1.58264711e-01 -4.92005646e-02 -1.16822034e-01 -8.64856541e-02\\n-1.80821598e-01 3.19471359e-01 1.98566951e-02 2.62666941e-01\\n-3.10018510e-01 -2.64229447e-01 -2.81410933e-01 2.57913083e-01\\n-2.20459864e-01 7.20654428e-02 -1.62193447e-01 -1.63774282e-01\\n3.21524769e-01 9.89319235e-02 -3.85386467e-01 2.86743581e-01\\n-1.90600261e-01 -1.20768070e-01 -3.29508334e-02 3.09103936e-01\\n-9.41144228e-02 1.27656043e-01 2.86610443e-02 -3.01703103e-02\\n4.44278419e-01 1.43279418e-01 1.98540166e-01 -1.34068578e-01\\n2.68233925e-01 -1.18866272e-01 1.36078611e-01 1.07941076e-01\\n-6.72154427e-01 3.27044427e-01 -1.21078327e-01 -1.28174722e-01\\n1.53293937e-01 2.47341152e-02 4.44259137e-01 -2.29118109e-01\\n-1.97009426e-02 -1.71583295e-01 -3.62039208e-01 -3.84048283e-01\\n-2.41875544e-01 -2.19405238e-02 4.09010231e-01 -4.12078053e-01\\n1.54122505e-02 1.72517091e-01 -5.09328246e-01 -1.42419031e-02\\n2.31623247e-01 2.09469095e-01 1.54016182e-01 6.74793348e-02\\n-1.12498850e-01 -5.64905941e-01 1.41351679e-02 -3.18751991e-01\\n-2.78344214e-01 6.09368645e-02 -3.09616029e-01 1.44788355e-01\\n1.85062364e-01 -1.07156802e-02 7.67294988e-02 4.99845706e-02\\n-2.16566399e-01 -9.69406590e-02 1.91327184e-01 7.62947947e-02\\n2.99609154e-01 -5.98267317e-02 -3.75326544e-01 5.28800070e-01\\n-3.08323234e-01 4.51215148e-01 1.97795227e-01 -8.90565217e-01\\n5.46635389e-01 1.94811687e-01 9.98348929e-04 -3.64100516e-01\\n5.71487725e-01 -3.41977745e-01 -5.77295795e-02 1.11923777e-01\\n-3.19336236e-01 -1.42394260e-01 1.99989602e-01 -1.08449779e-01\\n-2.15735093e-01 5.25084257e-01 1.01892576e-01 -5.54264039e-02\\n2.09857017e-01 -2.78669536e-01 -2.12526452e-02 -1.55988534e-03\\n-4.04975265e-02 -1.80769160e-01 -4.13599819e-01 -3.84268560e-03\\n-1.20172419e-01 -4.82204735e-01 -1.71858490e-01 -4.04166073e-01\\n-1.72958270e-01 -3.70794356e-01 -2.86282599e-01 2.59945363e-01\\n2.09842235e-01 1.25225514e-01 2.22583450e-02 -1.09641246e-01\\n-1.97909117e-01 -6.38301849e-01 -7.67032057e-02 1.24942899e-01\\n4.36293572e-01 2.89636552e-01 1.37194842e-01 -3.44236679e-02\\n5.58285564e-02 4.69440639e-01 -2.69659966e-01 -1.81255773e-01\\n1.85699105e-01 1.65561110e-01 -2.73144767e-02 -4.36879061e-02\\n6.74787462e-02 3.59854847e-01 -1.85384080e-01 -6.72199875e-02\\n-7.39591345e-02 2.32603662e-02 3.34764242e-01 -1.21046729e-01\\n-2.71654695e-01 -3.09335023e-01 -9.29699615e-02 2.13093817e-01\\n-5.28435588e-01 -1.77051157e-01 4.15446967e-01 2.44485840e-01\\n9.36592221e-02 1.56329527e-01 2.20845342e-01 -1.06614083e-01\\n-2.16665581e-01 -2.06097722e-01 1.17569514e-01 8.81016441e-03\\n8.39879885e-02 4.51064631e-02 -1.22492582e-01 -4.78192240e-01\\n-3.88405323e+00 -9.65176076e-02 1.13024175e-01 -2.30269894e-01\\n2.24092916e-01 -1.01905599e-01 7.73942247e-02 3.26004811e-02\\n-1.46460861e-01 1.03333548e-01 -2.67672718e-01 -1.15919068e-01\\n7.35870525e-02 1.98107898e-01 1.29017994e-01 1.77111506e-01\\n2.33404383e-01 -2.76460856e-01 -2.41558235e-02 3.19641948e-01\\n-1.51418954e-01 -7.20520616e-01 1.84534684e-01 -1.66656002e-01\\n2.62442976e-01 1.54020205e-01 -3.94844681e-01 -1.31777763e-01\\n-2.76303917e-01 -2.03703269e-01 4.32328582e-02 -1.70098588e-01\\n-1.24402761e-01 3.04178327e-01 1.30336031e-01 -1.28180504e-01\\n1.73566416e-01 -2.65311688e-01 -2.30125673e-02 -3.90349895e-01\\n2.33966470e-01 -5.36379635e-01 7.32443202e-03 5.32933325e-03\\n6.07118011e-01 -3.13859701e-01 1.86450958e-01 8.20596591e-02\\n1.28345415e-01 2.20478058e-01 4.09038318e-03 -1.38676882e-01\\n-2.32212707e-01 -2.01534271e-01 -1.07467109e-02 -2.90109277e-01\\n5.21738887e-01 4.69397068e-01 -2.26024300e-01 5.23331985e-02\\n4.30662036e-02 -2.36652628e-01 -4.16619539e-01 -4.54766542e-01\\n-2.70324469e-01 -5.51715344e-02 -6.60639524e-01 -4.87209380e-01\\n-1.06784545e-01 -9.91923437e-02 -1.31394535e-01 5.23879647e-01\\n-2.66487181e-01 -4.97161239e-01 2.44789384e-02 -4.08976287e-01\\n2.22622752e-01 -2.11980030e-01 -6.20807372e-02 -1.99594706e-01\\n-2.12111533e-01 -4.90067244e-01 1.38476402e-01 1.73566788e-01\\n-1.98564947e-01 -1.01837635e-01 8.11880156e-02 -2.49780387e-01\\n-3.02821040e-01 -4.90394205e-01 4.54733104e-01 9.96408910e-02\\n2.80147314e-01 -4.61336710e-02 3.32552850e-01 1.12994790e-01\\n4.14461166e-01 -1.55738339e-01 6.15635030e-02 -4.58010793e-01\\n9.29335132e-02 -7.96562284e-02 4.84920949e-01 -3.43164235e-01\\n1.73182518e-03 1.74671680e-01 -1.82115480e-01 -1.77882016e-01\\n3.50114256e-01 4.67298776e-02 8.81358087e-02 -1.94734767e-01\\n3.69712740e-01 -4.25157905e-01 -2.37110749e-01 1.33573100e-01\\n1.38775021e-01 6.81563795e-01 2.69877836e-02 -3.63217950e-01\\n-3.04777175e-01 5.01681089e-01 -3.54774967e-02 -4.72964011e-02\\n-1.00159630e-01 1.98888317e-01 -2.18727633e-01 3.60819548e-01\\n1.57112926e-01 -2.08204731e-01 -2.95026213e-01 2.58928514e-04\\n-4.65924339e-03 1.54342368e-01 2.66459465e-01 -2.51540989e-02\\n-5.84039055e-02 -2.09673584e-01 -1.40340580e-02 1.15842432e-01\\n2.50836223e-01 3.58922631e-01 1.96918324e-01 -2.40709618e-01\\n2.99868900e-02 3.22046518e-01 -1.72585398e-01 1.98913425e-01\\n-1.45595267e-01 2.85592992e-02 -4.68443304e-01 -2.51397133e-01\\n-2.04308912e-01 -2.21331626e-01 -2.63435170e-02 2.44268194e-01\\n1.99978232e-01 -4.12411429e-02 4.16833349e-02 -5.64262986e-01\\n3.75853986e-01 1.62488926e-04 2.07672685e-01 1.93002805e-01\\n-3.39839160e-02 5.34348190e-01 1.17102154e-02 -6.68845177e-02\\n-1.09682560e-01 2.03380674e-01 -1.39155626e-01 -1.75251290e-01\\n-4.85803187e-03 -3.74976814e-01 -6.36933148e-02 3.15100461e-01\\n1.15362152e-01 -3.17484736e-01 -1.84879065e-01 3.45750690e-01\\n7.35080466e-02 -2.88473994e-01 -1.94355309e-01 5.21065742e-02\\n2.65097767e-01 4.71228585e-02 2.27587163e-01 -4.32173252e-01\\n-6.46530762e-02 -4.78503713e-03 5.33086881e-02 3.79134178e-01\\n3.74271255e-03 2.46397108e-02 -6.61918148e-02 -2.47240886e-01\\n3.17744970e-01 1.29023604e-02 -9.97813120e-02 -1.46665171e-01\\n9.98842157e-03 -1.65485129e-01 -4.83923167e-01 7.14493170e-02\\n-4.31708768e-02 -1.79106444e-01 9.33281332e-02 5.25090285e-02\\n1.30963340e-01 7.28289085e-03 -4.25907999e-01 -2.35332862e-01\\n-3.40464443e-01 -1.31090030e-01 4.83523794e-02 -3.81289005e-01\\n-1.66975688e-02 -1.16519695e-02 -5.16205490e-01 1.25548318e-01\\n-2.04983592e-01 2.32698377e-02 1.37954861e-01 1.02638200e-01\\n-2.15502322e-01 -9.50891748e-02 1.79975674e-01 1.68144539e-01\\n-3.23904902e-01 -2.32994333e-01 -4.60904576e-02 -9.82431054e-01\\n2.11808026e-01 -4.65137921e-02 -8.33879933e-02 1.35954199e-02\\n-1.67044923e-01 -6.94538355e-01 1.42846882e-01 -4.14295733e-01\\n-1.18084475e-01 -1.26438260e-01 -3.06750834e-01 -3.93905133e-01\\n8.77562352e-03 4.36529331e-03 -3.30400467e-01 2.98450649e-01\\n-4.22881275e-01 4.20779973e-01 -1.86525092e-01 2.73473151e-02\\n-1.87102556e-02 -2.37480685e-01 1.87513739e-01 -2.60531157e-01\\n-3.26656759e-01 -1.49371400e-01 -3.79157037e-01 -2.17180520e-01\\n-1.52174294e-01 -1.00243740e-01 -1.58164829e-01 7.63390213e-02\\n3.16854864e-01 1.79922312e-01 -1.21844821e-01 -2.71072835e-01\\n2.93238275e-02 -2.93543279e-01 2.94869281e-02 -1.82486877e-01\\n5.25985286e-02 -4.45607342e-02 1.93754330e-01 3.72170508e-02\\n2.06291571e-01 -4.12625849e-01 3.62583697e-01 -1.51187301e-01\\n-3.60731572e-01 -2.04209015e-02 1.91978857e-01 1.80265933e-01\\n3.74327689e-01 -4.75786388e-01 3.82378288e-02 2.92010874e-01\\n1.36172473e-01 1.38542056e-01 2.73102283e-01 -1.51861673e-02\\n-1.57658994e-01 1.87046498e-01 -4.09223080e-01 2.63938941e-02\\n6.07087314e-01 1.90558985e-01 9.34864283e-02 1.75301015e-01\\n1.49286672e-01 4.22856301e-01 4.65637624e-01 -8.07851180e-03\\n-3.35692279e-02 2.46516138e-01 7.94173926e-02 -4.78392005e-01\\n-7.91529343e-02 -4.90939394e-02 -1.64675146e-01 -2.70490259e-01\\n6.07476294e-01 3.46973479e-01 -3.89274806e-01 -2.26816207e-01\\n-1.58844590e-01 -1.50349587e-01 2.18428478e-01 -1.28865823e-01\\n6.55491725e-02 -1.03614166e-01 5.27684867e-01 -1.18614994e-02\\n1.66017562e-01 5.66454709e-01 -1.95736289e-01 -2.44550213e-01\\n-2.56450661e-02 2.06723958e-01 1.69054314e-01 2.91546166e-01\\n-1.45316586e-01 2.11620361e-01 -1.79838520e-02 1.22108273e-01\\n-1.82231471e-01 1.07599743e-01 6.75083371e-03 1.21774815e-01\\n2.37551227e-01 1.26054570e-01 3.07889760e-01 5.01655459e-01\\n2.13320881e-01 4.63273942e-01 3.05050343e-01 5.04222363e-02\\n4.37255442e-01 5.67312241e-01 3.95382375e-01 8.78697485e-02\\n-5.15668243e-02 1.36591375e-01 7.22596273e-02 -7.14692026e-02\\n3.13307017e-01 3.62048417e-01 1.20772615e-01 7.90987194e-01\\n2.74385065e-01 2.59547770e-01 8.03190827e-01 -5.58583498e-01\\n-3.72132957e-01 3.51394229e-02 4.19092357e-01 -3.67911994e-01\\n-3.56801413e-02 2.48515084e-02 -2.21181646e-01 2.62768656e-01\\n-4.10812765e-01 -1.40638292e-01 -2.19194740e-02 1.65360644e-02\\n-1.01658264e-02 -8.72952342e-02 -2.90384054e-01 -7.04335421e-02\\n-1.11769103e-01 -6.14358895e-02 -3.41110796e-01 -1.15725368e-01\\n-2.75775403e-01 -1.21999383e-01 -1.52499303e-01 -2.51166597e-02\\n7.24271592e-03 -3.75164896e-01 -1.17433824e-01 2.03544721e-02\\n1.84387490e-01 -2.33435497e-01 -7.60686919e-02 -1.76276878e-01\\n1.91571638e-01 1.74937308e-01 5.33961713e-01 9.73902568e-02\\n2.02272922e-01 -1.02682538e-01 -2.01888233e-01 2.62164921e-02\\n1.10633105e-01 1.22014396e-01 1.22236498e-01 4.40653354e-01\\n-3.38752389e-01 -1.12241007e-01 1.02795646e-01 3.43323350e-01\\n-3.51258695e-01 -3.49196270e-02 -3.98134477e-02 2.56528139e-01\\n3.59729901e-02 1.11744829e-01 -1.57992423e-01 5.70406532e-03\\n-2.54044592e-01 -5.62698603e-01 2.94073254e-01 -1.27599359e-01\\n-1.26803607e-01 -6.46503121e-02 3.64948094e-01 2.17634737e-01\\n-1.91192448e-01 -3.90488468e-02 -2.84770168e-02 2.13213429e-01\\n9.18473527e-02 3.17218274e-01 -2.00292528e-01 -2.01324537e-01\\n-3.08019280e-01 2.22953916e-01 -1.74216658e-01 1.59943372e-01\\n-5.93585148e-02 3.19260210e-01 -1.21511882e-02 8.54316056e-02\\n2.32024834e-01 -7.16763586e-02 -2.01117024e-01 -1.41938969e-01\\n-2.29725331e-01 -1.88037574e-01 1.32346511e-01 -6.57926574e-02\\n2.07639515e-01 -3.80341262e-01 3.09541728e-03 -1.78657435e-02\\n-1.04289912e-01 -3.44408512e-01 -1.45910248e-01 -1.12542883e-01]]',\n", + " '. About the Role… The Operations Solutions Team is looking for a talented Software Engineer that will contribute to our global operations software designed to manufacture HID Global products (RFID credentials, readers, controllers, badge printers, tracking beacon, …) around the world (10+ countries). What you will do… Work on full life-cycle software development of applications used for production and monitoring activities. Work in a collaborative team using Agile methodology. Design and deliver full-stack software applications in C# : provisioning engine, web services, desktop & web front-end, Database Sql & NoSql. Integrate low level API driving hardware encoders (ex. RFID programmers/analyzers, communication devices, barcode scanners, printers, etc.) Keep tight deadlines for software enhancements to match product development schedules. Who we’re looking for…. Must have a strong passion for object-oriented programming, design patterns and SOLID principles. Excellent understanding of software development within the .NET Framework/Core ecosystem. Ability to multi-task and stay organized in a dynamic environment. Knowledge of applied cryptography and RFID industry standards is greatly appreciated. Knowledge of communication interfaces such as I2C, SPI, JTAG, UART is greatly appreciated. Minimum Bachelor degree in Computer Science or Electrical Engineering required. 3+ year experience with software and solution developments, ideally used in industrial application. Good analytical and problem solving skills. Very good French and English language skills. Must be legally eligible to work in Switzerland. Final Application Date: 30th November, 2019 HID Global is an equal opportunities employer',\n", + " '[\"Collaboration\", \"Problem Solving\", \"Communications\", \"Scheduling\", \"Operations\", \"Integration\"]',\n", + " '[\"Solid Principles\", \"Enterprise Application Software\", \"NoSQL\", \"Industry Standard Architecture\", \"Hyper SQL Database (HSQLDB)\", \"Web Engineering\", \"Computer Science\", \"Analytics\", \"Distributed Design Patterns\", \".NET Framework\", \"Industrialization\", \"Cryptography\", \"Tracking (Commercial Airline Flight)\", \"Levelling\", \"Activity Monitor\", \"Idealization\", \"Barcodes\", \"Software Engineering\", \"Web Services\", \"Agile Methodology\", \"Electrical Engineering\", \"C# (Programming Language)\", \"Equalization\", \"Agile Product Development\", \"Software Design\", \"Finalization\", \"Front End (Software Engineering)\", \"Encodings\", \"Software Development\", \"Application Programming Interface (API)\", \"Object-Oriented Programming (OOP)\", \"Controllability\"]',\n", + " \"['English', 'Kannada']\"],\n", + " ['4',\n", + " 'director data solutions data science - analytics - bi (56)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.90481567e-01 2.48011351e-01 5.61907411e-01 -5.75898774e-03\\n5.63557088e-01 -1.46655619e-01 -3.73666808e-02 3.17813635e-01\\n-9.91410613e-02 -4.93190706e-01 -3.54826404e-03 -2.87803769e-01\\n4.04535681e-02 1.98618278e-01 1.44345403e-01 3.14964831e-01\\n2.81406164e-01 1.39580369e-01 -1.42618835e-01 3.40266287e-01\\n1.24611117e-01 -1.56572193e-01 1.01084262e-01 8.07796001e-01\\n3.99036646e-01 2.28390237e-03 -7.64889866e-02 1.02383167e-01\\n-1.88484520e-01 -2.64993221e-01 4.36564714e-01 -1.92004628e-02\\n-1.71543986e-01 -3.19798648e-01 9.72965509e-02 1.12656325e-01\\n-2.90534556e-01 -8.11100081e-02 -1.77048266e-01 9.81125608e-03\\n-4.87745166e-01 -1.32726625e-01 -7.75407255e-02 7.51893669e-02\\n-3.30263734e-01 -3.78471613e-01 -5.53231426e-02 -5.89691922e-02\\n1.89367145e-01 5.89841455e-02 -4.83574629e-01 2.95367837e-01\\n-3.03528041e-01 -2.72724599e-01 2.53647804e-01 6.54441178e-01\\n4.25396897e-02 -4.27251399e-01 -4.93742883e-01 -3.84264827e-01\\n8.48643482e-02 -9.87113565e-02 1.26467392e-01 -3.52808326e-01\\n2.73116887e-01 -6.65292516e-02 8.03774372e-02 3.12821567e-01\\n-8.79715919e-01 -6.35638535e-02 -3.06566447e-01 -5.22870459e-02\\n-3.50300491e-01 -5.35989366e-02 -5.02461672e-01 -1.74803823e-01\\n-2.03000680e-01 3.97537827e-01 9.04554576e-02 3.63278762e-02\\n-2.44128436e-01 1.72599360e-01 -3.60824227e-01 2.55076736e-01\\n2.00574353e-01 3.29738855e-01 3.01520288e-01 3.54614317e-01\\n-4.59262311e-01 5.39809942e-01 2.45878369e-01 -4.51266438e-01\\n2.62740076e-01 1.49990141e-01 3.60126913e-01 1.01715893e-01\\n2.64211476e-01 1.02569059e-01 -2.15841576e-01 1.73369572e-01\\n2.77826607e-01 -2.78778076e-01 9.98999365e-03 -1.12100184e-01\\n1.57595724e-01 -8.21139142e-02 3.90068479e-02 1.48083836e-01\\n-3.40529531e-01 2.85022616e-01 -6.60990030e-02 -3.71021271e-01\\n-1.18881457e-01 -4.29201752e-01 -6.08860999e-02 2.06952915e-02\\n1.15376040e-02 2.08292931e-01 2.38206357e-01 2.15247571e-01\\n1.87308490e-01 4.33979221e-02 2.41354764e-01 9.09054875e-01\\n-1.07610025e-01 1.84045937e-02 -3.24661672e-01 3.56444180e-01\\n1.18404076e-01 -2.50088692e-01 1.94784343e-01 1.17457107e-01\\n-7.27698654e-02 -1.35376483e-01 -2.23676622e-01 3.57288420e-01\\n-3.41545828e-02 -1.64083570e-01 -3.09303582e-01 2.05705449e-01\\n-1.04196612e-02 -4.56399322e-01 6.90836549e-01 1.53726637e-02\\n1.96204156e-01 -5.08479699e-02 3.96231748e-02 -2.02659190e-01\\n-1.00551531e-01 1.81573540e-01 3.10975760e-02 2.28642672e-01\\n-2.68327713e-01 -2.46693775e-01 -7.49473274e-02 2.65692949e-01\\n-3.35387409e-01 1.23190582e-01 -1.46794677e-01 -3.36749926e-02\\n1.77561596e-01 4.46026586e-02 -3.00410599e-01 1.63564563e-01\\n-9.28508639e-02 -8.54603797e-02 8.25958028e-02 2.91792095e-01\\n-2.61772275e-01 2.45015115e-01 -4.18765470e-02 1.28305368e-02\\n6.39437437e-01 1.50627732e-01 2.66201198e-01 -9.01235491e-02\\n2.45199978e-01 -4.90171462e-02 1.05829425e-01 1.47109672e-01\\n-7.09755480e-01 3.99899811e-01 -8.16899240e-02 -3.15548599e-01\\n9.03508514e-02 -2.50592530e-02 2.34635830e-01 -2.62744904e-01\\n-1.12964958e-03 -1.46729976e-01 -2.27311060e-01 -3.39776695e-01\\n-9.15857553e-02 -7.87522346e-02 3.60117674e-01 -5.40329218e-01\\n-3.60709652e-02 2.08325535e-01 -4.64177430e-01 -7.16918185e-02\\n9.43851620e-02 2.37491518e-01 3.45786437e-02 1.22261435e-01\\n-5.67072108e-02 -5.58922887e-01 9.51402336e-02 -4.39891696e-01\\n-2.56826520e-01 1.15555212e-01 -3.22532892e-01 8.44767094e-02\\n1.00615770e-01 -6.07031137e-02 -6.06143549e-02 1.37698814e-01\\n-2.99845397e-01 7.64429718e-02 3.17698717e-02 5.30950539e-02\\n3.80247414e-01 1.15503594e-01 -4.04168785e-01 5.36391020e-01\\n-2.09718451e-01 3.87720793e-01 8.76062140e-02 -9.22483563e-01\\n5.33375204e-01 3.40367883e-01 -1.66247785e-02 -2.52256751e-01\\n6.02700233e-01 -3.47107381e-01 -9.70283300e-02 1.11561842e-01\\n-4.31858510e-01 -2.53467619e-01 1.51693583e-01 -1.86570555e-01\\n-2.82148927e-01 5.84991753e-01 2.50667538e-02 1.73154831e-01\\n2.85961270e-01 -2.38268971e-01 -2.10175335e-01 -6.90012425e-02\\n-1.56042203e-01 -2.92927146e-01 -5.37719488e-01 -2.14700885e-02\\n-7.95442164e-02 -4.96266246e-01 -1.24892041e-01 -4.91161704e-01\\n-2.06377894e-01 -3.90549690e-01 -2.38914400e-01 1.12863444e-01\\n2.59018868e-01 1.57412350e-01 -2.00894609e-01 -1.26610100e-02\\n-3.15864794e-02 -6.19452834e-01 -9.10611972e-02 1.15114935e-01\\n4.00264502e-01 1.92143708e-01 7.91407824e-02 -9.26944166e-02\\n1.77724421e-01 5.42523563e-01 -1.23241000e-01 -3.38072896e-01\\n1.37486771e-01 1.56317174e-01 2.65269540e-02 -2.28298038e-01\\n9.61053967e-02 3.91922742e-01 -2.28199601e-01 -5.83680458e-02\\n5.26302494e-02 -7.69373327e-02 3.82126570e-01 -3.86044122e-02\\n-1.72579184e-01 -2.48682261e-01 -5.76650053e-02 1.27825662e-01\\n-5.53541064e-01 -2.45392799e-01 5.54309130e-01 1.52432576e-01\\n2.25962475e-02 2.36100823e-01 9.69252512e-02 2.02512220e-02\\n-2.51804590e-01 -8.74476284e-02 2.46270403e-01 1.11490041e-01\\n2.14496315e-01 1.44690454e-01 -7.66419023e-02 -5.70241153e-01\\n-3.58810186e+00 -2.75296509e-01 9.19485241e-02 -2.57074952e-01\\n2.58307040e-01 -1.87010124e-01 1.05559736e-01 -2.26586238e-02\\n-3.53753567e-01 5.24880514e-02 -3.66987959e-02 -2.12406754e-01\\n1.19048566e-01 1.95591316e-01 5.02188802e-02 3.70430231e-01\\n1.69916794e-01 -1.84839621e-01 5.82702085e-02 3.65325868e-01\\n-1.87921464e-01 -6.95264757e-01 2.34377712e-01 -4.15529422e-02\\n2.38410428e-01 1.82446212e-01 -5.11466324e-01 -6.02885149e-02\\n-3.18716943e-01 -1.84646323e-01 9.24049690e-02 -2.25928068e-01\\n-1.98837578e-01 2.09354162e-01 1.83038175e-01 -1.11690335e-01\\n7.62898847e-02 -3.83996308e-01 -1.15739904e-01 -5.12424707e-01\\n1.59345210e-01 -5.29330254e-01 -9.88451391e-03 -4.75608967e-02\\n7.75390983e-01 -3.78883421e-01 1.26954764e-01 1.65763646e-01\\n5.92099354e-02 1.61232993e-01 1.20479412e-01 -1.26716420e-02\\n-2.88161933e-01 -3.15358698e-01 -9.55502465e-02 -2.74848044e-01\\n6.44145906e-01 4.50397789e-01 -1.18411630e-01 4.43439744e-03\\n9.13475454e-03 -2.45492965e-01 -4.21997666e-01 -3.10094237e-01\\n-1.13692418e-01 -1.03877239e-01 -6.14946306e-01 -3.71634156e-01\\n-1.41997069e-01 -2.58700579e-01 -1.71990469e-02 6.18764281e-01\\n-2.58149058e-01 -3.40463430e-01 -7.84673393e-02 -4.50513750e-01\\n4.15275097e-01 -1.56668007e-01 5.74079305e-02 -1.86023012e-01\\n-2.11378932e-01 -4.50133979e-01 8.33961070e-02 -7.64773339e-02\\n-1.14312433e-01 -1.95191979e-01 1.05109885e-01 -1.85861304e-01\\n-3.58832479e-01 -5.44290304e-01 4.25663292e-01 5.34886196e-02\\n2.73384988e-01 2.00758263e-01 4.18469131e-01 -3.90166268e-02\\n2.94337690e-01 -1.39412075e-01 -1.67756140e-01 -4.67190623e-01\\n1.86611824e-02 -9.44684222e-02 4.12904501e-01 -1.01576604e-01\\n1.14814125e-01 4.80448343e-02 -1.10938221e-01 1.02005564e-02\\n3.59535873e-01 -1.00978106e-01 1.71611562e-01 -1.67393088e-01\\n2.01020941e-01 -2.15414971e-01 -1.50323987e-01 6.58608824e-02\\n7.62703791e-02 6.57764733e-01 4.50925231e-02 -3.29192132e-01\\n-1.47289634e-01 4.74786162e-01 -5.20635061e-02 2.63351649e-02\\n-1.78283364e-01 1.57896608e-01 -3.12665164e-01 2.70926565e-01\\n-4.41581421e-02 -1.38448387e-01 -2.40532845e-01 -1.50403470e-01\\n-3.77163291e-02 3.44454855e-01 2.30186284e-01 8.47492516e-02\\n-3.92998829e-02 -3.48584592e-01 -1.00089088e-01 1.60120741e-01\\n2.17706144e-01 5.03104270e-01 2.18718022e-01 -2.68655568e-01\\n5.68475574e-03 2.84321129e-01 -2.75115371e-01 2.83784151e-01\\n-3.11012536e-01 1.90055251e-01 -5.96908569e-01 -2.48126790e-01\\n-2.55230665e-01 -4.44162309e-01 2.00664058e-01 2.89660841e-01\\n1.49672553e-01 -6.57439381e-02 1.44551188e-01 -3.76701057e-01\\n2.55458295e-01 6.60558045e-02 1.67475566e-01 1.30718663e-01\\n-1.32357143e-02 6.58572257e-01 4.08836547e-03 -1.10146426e-01\\n-1.48528084e-01 1.01033136e-01 -8.62370282e-02 -2.24667013e-01\\n-5.93722686e-02 -5.59516788e-01 -1.83138624e-01 4.90915835e-01\\n1.76508546e-01 -2.03756481e-01 -1.21059105e-01 3.13248485e-01\\n-7.10798204e-02 -2.73466974e-01 -2.61596143e-01 8.17731768e-03\\n2.98589170e-01 2.81290114e-01 2.14378089e-01 -4.99237657e-01\\n2.11715419e-02 1.81080084e-02 7.32676610e-02 5.84279954e-01\\n-5.54007925e-02 1.54899925e-01 -2.11950969e-02 -1.80828720e-01\\n4.94569659e-01 -6.37378991e-02 -1.59963027e-01 1.26576424e-03\\n1.83565676e-01 -2.47886017e-01 -3.90682220e-01 9.73189622e-02\\n7.55012631e-02 -2.77055413e-01 4.36475538e-02 1.64047420e-01\\n1.12974122e-01 3.77913490e-02 -6.44299269e-01 -2.15922996e-01\\n-3.90681624e-01 8.58632848e-02 -1.85696892e-02 -5.22331536e-01\\n9.63127166e-02 -3.71832587e-02 -5.31152427e-01 2.94884831e-01\\n-1.09584212e-01 -1.54384673e-01 1.82037115e-01 7.20598474e-02\\n-3.31972778e-01 -1.41304567e-01 2.13380277e-01 2.67332464e-01\\n-2.30160087e-01 -2.61257350e-01 8.58983845e-02 -9.47955012e-01\\n1.71961889e-01 1.49733871e-01 -1.43660754e-01 1.63695276e-01\\n-8.35219026e-02 -6.92092419e-01 1.23107113e-01 -3.63983035e-01\\n-1.47465676e-01 1.79782659e-02 -2.43666798e-01 -4.34652090e-01\\n5.50126471e-02 7.77423531e-02 -3.11022222e-01 4.80108559e-01\\n-2.98170447e-01 3.48191082e-01 -1.16912827e-01 1.07709199e-01\\n1.40523836e-01 -2.48911262e-01 9.06597152e-02 -3.09079766e-01\\n-4.88408446e-01 -2.30519712e-01 -3.27342391e-01 -3.00951093e-01\\n-5.71914129e-02 -2.98345149e-01 -8.65115691e-03 -2.32954230e-03\\n3.52798998e-01 3.28255370e-02 -2.14656830e-01 -2.96948314e-01\\n3.07595357e-03 -4.57372159e-01 1.85797453e-01 -1.61160961e-01\\n2.37341635e-02 -2.21528947e-01 1.73115134e-01 6.95347413e-02\\n2.10911721e-01 -4.63337272e-01 4.67846096e-01 -2.38648385e-01\\n-2.78991759e-01 -2.01968431e-01 8.20442736e-02 -5.50469570e-02\\n3.44118655e-01 -4.53072131e-01 -2.84103714e-02 3.56042683e-01\\n2.16631413e-01 9.80149135e-02 2.11095333e-01 -1.64393753e-01\\n-1.30256280e-01 4.11327779e-01 -3.61064464e-01 2.07639039e-01\\n7.97506452e-01 5.91552556e-02 2.58478999e-01 2.20239073e-01\\n2.81832933e-01 3.00715715e-01 3.37739468e-01 1.09441299e-03\\n-1.22983962e-01 3.41248691e-01 1.24932423e-01 -4.60469872e-01\\n5.88829555e-02 -1.35565192e-01 -2.40548864e-01 -4.35173869e-01\\n6.96550131e-01 3.71643573e-01 -3.47406209e-01 -1.67860180e-01\\n-2.16064230e-01 -1.48668200e-01 3.32332969e-01 -1.27816662e-01\\n-1.24960449e-02 -1.15751460e-01 4.34667259e-01 -7.30100274e-02\\n3.25805068e-01 5.64557076e-01 -1.72330737e-01 -2.97518373e-01\\n-1.16128288e-01 2.74563909e-01 3.82717028e-02 5.40597081e-01\\n-2.37523019e-01 2.70896494e-01 4.91668582e-02 1.31217510e-01\\n-6.61889017e-02 1.97061658e-01 2.87104607e-01 -5.60903586e-02\\n1.91980004e-01 4.98307981e-02 4.89238262e-01 4.53291893e-01\\n2.08708063e-01 3.62530559e-01 3.58271062e-01 -3.15191634e-02\\n4.00037408e-01 6.19066596e-01 3.87164742e-01 1.71838447e-01\\n1.99247450e-02 2.12918185e-02 1.15717210e-01 -8.29517543e-02\\n2.38439620e-01 4.47844863e-01 -3.89986411e-02 9.14886832e-01\\n4.51753050e-01 2.47322440e-01 7.43920565e-01 -6.34001136e-01\\n-3.50675017e-01 8.20212364e-02 4.52865541e-01 -4.27645862e-01\\n1.00636873e-02 1.29049540e-01 -2.58705497e-01 2.50160456e-01\\n-3.82443398e-01 -2.45569140e-01 -1.87259540e-02 1.02127217e-01\\n-2.37885546e-02 -2.02120602e-01 -1.76286399e-01 1.05287671e-01\\n-2.70462018e-02 -9.27271396e-02 -4.30980951e-01 -6.36741519e-02\\n-2.47218996e-01 -9.56573803e-03 -1.63550884e-01 -2.76552141e-02\\n-1.39460802e-01 -3.00429106e-01 -7.06613734e-02 -3.70951593e-02\\n2.72834301e-01 -1.26618057e-01 -1.05077177e-01 -1.11919567e-01\\n2.79063880e-01 2.24066913e-01 5.44182122e-01 1.00088239e-01\\n9.18842778e-02 -2.70175338e-01 -1.47946119e-01 1.09105691e-01\\n1.54274419e-01 6.37612119e-02 2.60742381e-05 3.57624531e-01\\n-2.48298854e-01 -2.17769310e-01 1.19344436e-01 3.38437051e-01\\n-4.67438042e-01 -1.49795776e-02 -3.53629664e-02 2.46380866e-01\\n1.49721019e-02 2.84201294e-01 -1.82036757e-01 1.36500388e-01\\n-1.33969203e-01 -4.73590553e-01 3.37336898e-01 -1.90785974e-01\\n-9.14325416e-02 -9.40241590e-02 2.20295608e-01 2.49768719e-01\\n-2.50061333e-01 3.29607651e-02 -3.39288563e-02 1.71835512e-01\\n4.65711206e-02 3.06276858e-01 -2.15812534e-01 -2.44893700e-01\\n-3.06402266e-01 1.49833813e-01 -1.37503654e-01 2.07794756e-01\\n-1.70297213e-02 2.69902319e-01 -4.71071452e-02 1.08222194e-01\\n3.32054526e-01 -6.20026179e-02 -2.45276704e-01 -2.48451248e-01\\n-2.07395226e-01 -1.40088797e-01 -2.21620426e-02 -1.02942586e-01\\n2.49350816e-01 -2.96550453e-01 -7.51058608e-02 -1.50019586e-01\\n-1.43605292e-01 -4.44252521e-01 1.07182525e-01 -2.23396242e-01]]',\n", + " 'CONSULTING - BIG dATA SCIENCE - aNALYTICS - BI! With over a billion turnover has our customer become a relevant global player in terms of individual software solutions. She thinks globally, acts locally and supports customers from various industries to develop technology solutions to business results. The consulting specialists are able to find solutions for large, complex projects to generate economies of scale and optimize processes. The worldwide growth continues also in Switzerland and for their Zurich office are we looking for you as: DIRECTOR DATA SOLUTIONS YOUR CHALLENGE You will lead strategic client projects across Europe and help to build out the Big Data Architecture Practice. Develop customer solutions and proposals for implementation and design of scalable big data architecture as well as network infrastructure solutions to enable partners and clients to scale Hadoop, NoSQL and relational database architecture for growing demands and traffic. Build up roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning. Drive new business and get involved in pre-sales activities whilst overseeing and managing remote team members who are involved in key projects. YOUR PROFILE You have a Bachelor, Master or MBA degree or equivalent education with business and IT expertise. You have a deep understanding of the Big Data Architecture, Business Intelligent, Data Science and Analytics and implementing such big projects. Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level. Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra. Know how in agile software development processes and architecture are an additional plus. You are an excellent communicator with the ability to correspond effectively with all levels of Business and IT. You have fun thinking globally, acting locally and work in multi-cultural teams around the globe. You are a problem solver with the ability to effectively prioritize work. You can communicate fluently in English and ideally German. There will be a large degree of travel (around 50%) in order to build on and enhance client relationships. YOUR PERSPECTIVE You get the chance to build a firm in the firm in a globally oriented outsourcing corporation. You can combine your strength and network with the enormous resource and skill set to set new standards in your business stream. You can act as leader while participating in top level engagements and getting first hand updates on technology innovations. You will experience new ways of efficiency and technology improvements. You can expect continuing training and the opportunity to enlarge you network and visibility.',\n", + " '[\"Management\", \"Communications\", \"Innovation\", \"Prioritization\", \"Consulting\"]',\n", + " '[\"NoSQL\", \"Apache Cassandra\", \"Economy\", \"Apache Zookeeper\", \"Acting\", \"Analytics\", \"Outsourcing\", \"Industrialization\", \"Customer Support Analyst\", \"Perspective (Graphical)\", \"Scale (Map)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Customer Development\", \"Apache Mahout\", \"MongoDB\", \"Levelling\", \"Limiter\", \"Apache Oozie\", \"Idealization\", \"Network Infrastructure\", \"Localization\", \"Apache Flume\", \"Continuous Training\", \"Process Optimization\", \"Machine Learning Methods\", \"Recommendation Engine\", \"Data Science\", \"Agile Software Development\", \"Customer Relationship Building\", \"Business Architecture\", \"Apache Hive\", \"Scalability\", \"Big Data\", \"Predictive Modeling\", \"Technology Solutions\", \"Pre-Sales Engineering\", \"Relational Databases\", \"Software Development\", \"Resourcing\", \"Apache HBase\", \"Additives\", \"Acceptance and Commitment Therapy (ACT)\", \"Data Intelligence\"]',\n", + " \"['English']\"],\n", + " ['14',\n", + " 'project manager statistical programming and data management 60 - 80%',\n", + " 'Davos',\n", + " 'Healthcare Services & Hospitals',\n", + " 'www.aofoundation.org',\n", + " '[[-2.91401744e-01 2.67605692e-01 3.83276880e-01 -6.67591020e-02\\n5.62750936e-01 -2.60522459e-02 -3.66341472e-02 2.88305968e-01\\n-1.38670206e-01 -1.88580930e-01 -1.92634478e-01 -2.52487749e-01\\n3.83784994e-04 2.22953051e-01 1.45399451e-01 6.30378604e-01\\n3.88286799e-01 -1.48805499e-01 -1.72022104e-01 2.26434290e-01\\n7.69568160e-02 -1.91762537e-01 8.60446393e-02 7.13544011e-01\\n2.42149442e-01 1.93406120e-02 -1.46173358e-01 -3.83245014e-02\\n-1.88836262e-01 -1.97453976e-01 5.33824682e-01 5.04603758e-02\\n-1.14240572e-01 -3.60044777e-01 1.01506226e-01 2.89934009e-01\\n-2.49174118e-01 -1.60120174e-01 -3.44191492e-02 1.29016787e-01\\n-4.52074945e-01 -3.25501561e-01 -1.71104163e-01 7.56534263e-02\\n-2.26396143e-01 -3.07069153e-01 2.19021559e-01 -6.84086829e-02\\n8.84912834e-02 1.49977013e-01 -4.51880038e-01 3.03015083e-01\\n-2.34923184e-01 -2.22376525e-01 3.02431345e-01 6.29692793e-01\\n1.25123635e-02 -3.86963457e-01 -5.00145495e-01 -3.27858955e-01\\n1.00798912e-01 2.00613346e-02 1.53551772e-01 -3.51403475e-01\\n2.74371654e-01 8.82239193e-02 1.08285278e-01 4.54052329e-01\\n-6.52621269e-01 -2.71030843e-01 -2.63233155e-01 1.23201713e-01\\n-2.81464666e-01 3.08142379e-02 -1.47777319e-01 -2.55653650e-01\\n-3.89441587e-02 2.21953303e-01 2.71467902e-02 9.00605619e-02\\n-9.34015885e-02 3.05199742e-01 -1.29673079e-01 2.67668247e-01\\n1.65778115e-01 2.47303680e-01 2.01376930e-01 2.65277803e-01\\n-3.66864502e-01 3.14353287e-01 8.91996771e-02 -1.88131243e-01\\n2.02381477e-01 5.16365208e-02 3.96354675e-01 -2.17811875e-02\\n6.75506145e-03 3.00628357e-02 -2.65107274e-01 1.61539674e-01\\n1.04173012e-01 -1.77316010e-01 1.27572894e-01 7.39523768e-02\\n-6.26674965e-02 -7.93330744e-02 6.76631331e-02 9.39569920e-02\\n-4.51720655e-01 4.48042363e-01 1.81296077e-02 -2.31559306e-01\\n-1.54971808e-01 -7.44147122e-01 -4.15633619e-02 1.11782216e-01\\n1.38675481e-01 9.55197886e-02 2.02268455e-02 2.25744963e-01\\n1.86054498e-01 -1.49792761e-01 2.06339955e-01 7.04229236e-01\\n-1.22109517e-01 6.84537515e-02 -7.62808323e-03 2.75871158e-01\\n9.31921378e-02 -1.99025065e-01 1.21667475e-01 2.17925638e-01\\n-5.88223338e-05 -1.72476128e-01 -2.77655423e-01 2.31900871e-01\\n-1.04027130e-01 -2.21377343e-01 -1.87420160e-01 3.62821102e-01\\n-5.13335504e-02 -5.39682627e-01 3.75272870e-01 -2.87352465e-02\\n8.72753263e-02 -9.68713984e-02 -1.61800817e-01 -2.37468351e-03\\n-5.82401454e-03 2.35386044e-01 1.93250671e-01 1.42106354e-01\\n-1.94884509e-01 -2.10449681e-01 -1.29096255e-01 1.54681623e-01\\n-2.74743676e-01 1.16471127e-01 -1.64098322e-01 -1.31292388e-01\\n4.43790436e-01 1.42842010e-02 -3.92213345e-01 2.65444785e-01\\n-1.16084956e-01 -9.53706428e-02 -1.01008467e-01 3.34891856e-01\\n-2.87794769e-01 2.43299544e-01 -1.59402117e-01 -3.60295922e-01\\n3.87708664e-01 -4.51686047e-02 3.22357386e-01 -4.52691317e-03\\n3.63671362e-01 -9.04120430e-02 2.69785881e-01 3.22269350e-02\\n-7.79600620e-01 4.45369124e-01 -7.62798414e-02 -2.25515038e-01\\n8.94458145e-02 -1.35715827e-01 5.34712076e-01 -3.32976401e-01\\n4.47996669e-02 -2.00404912e-01 -1.98768005e-01 -3.50253999e-01\\n-1.51003733e-01 5.41663207e-02 3.37022036e-01 -2.88603604e-01\\n-3.01295929e-02 1.46148294e-01 -4.85102892e-01 -1.37684584e-01\\n1.32635057e-01 2.12973773e-01 1.65557548e-01 2.04413727e-01\\n-2.48769701e-01 -4.67324257e-01 3.81778292e-02 -5.45126438e-01\\n-2.57839859e-01 3.12387235e-02 -2.29548916e-01 1.07701331e-01\\n-1.23335578e-01 1.02611929e-01 4.09456231e-02 -3.47643942e-02\\n-2.78721780e-01 9.02538076e-02 1.64812103e-01 -1.24535382e-01\\n2.10917324e-01 1.77610479e-03 -3.65216732e-01 4.50278848e-01\\n-2.23423541e-01 6.43474698e-01 6.81870282e-02 -7.54006803e-01\\n5.28850496e-01 3.63628089e-01 -1.04978532e-02 -2.55749881e-01\\n6.70248270e-01 -3.36981595e-01 -5.21640405e-02 1.09304860e-01\\n-4.41875935e-01 -2.21268713e-01 3.05475473e-01 -3.78942192e-01\\n-2.41493911e-01 5.73336124e-01 2.13107318e-01 4.51967493e-02\\n2.90325463e-01 -1.33839756e-01 -8.63798559e-02 1.11946121e-01\\n-1.80098891e-01 -1.79816574e-01 -4.02405858e-01 -1.39658675e-02\\n-1.42017365e-01 -4.45424020e-01 -2.98718840e-01 -2.98575163e-01\\n-5.96646518e-02 -4.01033878e-01 -1.04487300e-01 8.27069506e-02\\n2.29820967e-01 1.23952657e-01 4.17421162e-02 -4.36191112e-02\\n-1.42488062e-01 -6.35196328e-01 3.82511131e-03 6.37839735e-03\\n2.41860449e-01 3.01144600e-01 1.87955499e-01 6.26795590e-02\\n-1.34477057e-02 4.71843362e-01 -5.23610234e-01 -3.77341926e-01\\n1.75634086e-01 1.22960374e-01 -7.74851739e-02 -1.09727770e-01\\n7.72149861e-02 1.90332711e-01 -1.54714704e-01 1.55786142e-01\\n-1.78997442e-01 7.22035170e-02 2.44502842e-01 -4.54541929e-02\\n-7.95513913e-02 -1.98943600e-01 -9.67414826e-02 2.80173808e-01\\n-3.48818600e-01 -2.58635461e-01 3.02464068e-01 -3.92745771e-02\\n8.17553028e-02 1.51622087e-01 1.39600337e-01 1.20075345e-02\\n-3.08056951e-01 -3.54546666e-01 3.30018133e-01 7.59835392e-02\\n2.10122354e-02 2.17678100e-01 2.69706920e-02 -4.88460332e-01\\n-3.02697754e+00 -9.03637111e-02 -6.56909719e-02 -1.70452744e-01\\n2.91775525e-01 -3.90788317e-02 1.94248781e-01 -1.06766075e-03\\n-4.07333672e-01 2.47167554e-02 -1.30087554e-01 -2.85932213e-01\\n1.20262749e-01 3.23998481e-01 1.26834601e-01 4.12806682e-03\\n-1.02798097e-01 -3.54697943e-01 -2.94512846e-02 4.50008869e-01\\n2.54643988e-02 -8.71508241e-01 5.81232980e-02 3.01214773e-03\\n6.65917248e-02 3.35389286e-01 -4.72701520e-01 4.53300588e-02\\n-4.14943755e-01 -2.02998668e-01 1.41390234e-01 -3.22896838e-01\\n-1.10660538e-01 4.01029289e-01 9.75650176e-02 -7.55330548e-02\\n1.59591567e-02 -2.46656477e-01 -1.76191777e-01 -5.96029401e-01\\n1.56091750e-01 -7.32489347e-01 -2.96745114e-02 -1.83194488e-01\\n6.31673574e-01 -8.47665519e-02 2.40281194e-01 1.36757866e-01\\n1.09936029e-01 1.82914644e-01 1.74358770e-01 1.01355165e-02\\n-2.61125803e-01 -1.01019017e-01 -1.20967537e-01 -2.70486027e-01\\n5.14216840e-01 3.99836481e-01 -2.44885072e-01 -9.29773413e-03\\n2.47077584e-01 -1.40202060e-01 -5.14412701e-01 -3.29157412e-01\\n-2.60408133e-01 -7.83896670e-02 -6.39737844e-01 -4.57074225e-01\\n-8.96873176e-02 -6.46435618e-02 6.99224100e-02 5.46407104e-01\\n-4.29153115e-01 -1.72736406e-01 -7.67019987e-02 -6.44966722e-01\\n3.70246440e-01 -1.95254207e-01 -7.79874325e-02 -2.19898254e-01\\n-1.64666757e-01 -4.72862989e-01 1.56679928e-01 2.53034122e-02\\n-1.10244840e-01 -1.45359531e-01 -9.30733606e-03 -9.19810534e-02\\n-3.60996932e-01 -5.14886618e-01 3.54618132e-01 1.20413855e-01\\n3.52647066e-01 7.71509856e-02 1.52241290e-01 -3.28167379e-02\\n3.60195905e-01 6.91427141e-02 8.71930197e-02 -3.51929784e-01\\n4.87279221e-02 -4.53266576e-02 6.33198559e-01 -2.57217526e-01\\n-1.26034185e-01 2.11202763e-02 -3.04169744e-01 -2.60260589e-02\\n3.89963597e-01 9.54767037e-03 7.58670121e-02 -2.41452545e-01\\n3.75289649e-01 -5.01989365e-01 1.57471262e-02 1.28932521e-01\\n1.03615627e-01 6.83610320e-01 -4.27193288e-03 -2.58961976e-01\\n-1.77405179e-01 3.57820451e-01 -1.14734307e-01 -7.48065114e-03\\n8.15809965e-02 6.18042164e-02 -1.56602696e-01 2.48843104e-01\\n1.34391740e-01 -1.15799263e-01 -1.98144704e-01 -2.26860866e-03\\n-6.04220517e-02 3.14888984e-01 2.86080062e-01 2.09760010e-01\\n-7.49246478e-02 -3.13082635e-01 3.69567573e-02 3.23653668e-01\\n3.27552915e-01 3.41942668e-01 3.82066891e-02 -1.70427039e-01\\n2.36514956e-04 3.37092549e-01 -1.14628859e-01 3.65779996e-01\\n-2.12494016e-01 1.90315485e-01 -4.85858858e-01 -1.67002171e-01\\n-2.76703656e-01 -2.05942631e-01 1.58528268e-01 4.42299128e-01\\n1.59091055e-01 -1.62428364e-01 1.00643717e-01 -3.42108369e-01\\n1.95083857e-01 1.08724490e-01 1.76668614e-01 -9.18349922e-02\\n-1.48758024e-01 5.90660214e-01 1.38275549e-02 -2.52039313e-01\\n1.92947313e-02 -7.68114775e-02 -1.54156655e-01 -1.72931731e-01\\n1.05129197e-01 -3.71041954e-01 -2.25869656e-01 3.31036031e-01\\n1.16167463e-01 -1.09942719e-01 -2.49136388e-01 4.27400738e-01\\n1.97411217e-02 -3.43915403e-01 -1.50683254e-01 -2.34846212e-03\\n2.26629049e-01 8.96380916e-02 1.93003237e-01 -4.92732048e-01\\n-7.53305182e-02 3.51160839e-02 1.13890268e-01 3.56273592e-01\\n2.18029749e-02 2.79173627e-02 -2.01927260e-01 -1.72119111e-01\\n2.34902456e-01 -1.12393305e-01 -9.19371098e-03 2.01684818e-01\\n8.60913992e-02 -2.53148675e-01 -3.90137494e-01 2.23821718e-02\\n-9.80825350e-03 -2.90586531e-01 -1.11671977e-01 1.79111063e-01\\n1.30791083e-01 3.79952975e-02 -5.52115560e-01 -1.67965755e-01\\n-2.78881252e-01 2.29592696e-01 -6.20348193e-02 -4.84057128e-01\\n-1.00841299e-01 -2.36479163e-01 -5.41770339e-01 2.18715191e-01\\n4.53577451e-02 -1.47150755e-02 2.11416468e-01 -5.91850579e-02\\n-3.29816401e-01 -1.10236973e-01 1.46865621e-01 2.12406665e-02\\n-3.33114505e-01 -2.10307524e-01 9.38162860e-03 -9.17793989e-01\\n2.14399062e-02 -7.74432048e-02 4.59045917e-03 9.06479545e-03\\n-5.01760617e-02 -5.40490746e-01 7.81645179e-02 -2.75668591e-01\\n-2.37308919e-01 7.57928714e-02 -2.91976899e-01 -2.14244992e-01\\n1.46474630e-01 1.39664393e-03 -6.60115778e-02 1.74617395e-01\\n-2.09625140e-01 3.73745799e-01 -7.85311610e-02 -8.66364017e-02\\n4.30730879e-02 -3.19264293e-01 1.67593434e-01 -1.67549387e-01\\n-3.54537845e-01 -1.81040466e-01 -1.11202829e-01 -2.13926107e-01\\n-4.01036777e-02 -1.52739286e-01 -4.99631092e-02 4.52270359e-02\\n2.81178653e-01 -1.77456178e-02 -2.11766303e-01 -2.60817111e-02\\n-1.88580304e-02 -3.62250805e-01 2.53443301e-01 -1.17450215e-01\\n9.69004184e-02 -1.10812381e-01 2.48267040e-01 5.61739653e-02\\n2.96476871e-01 -3.51569593e-01 5.69493711e-01 -4.55861509e-01\\n-3.84682834e-01 -1.37211531e-01 5.77935874e-02 6.46300018e-02\\n2.06711203e-01 -5.36158144e-01 -6.99828714e-02 3.45413178e-01\\n3.32962424e-02 5.40469587e-02 4.00743008e-01 -2.14628518e-01\\n-1.62240475e-01 1.83998272e-01 -5.17821014e-01 5.36050387e-02\\n7.74536014e-01 4.21551108e-01 1.37251511e-01 1.46866336e-01\\n2.55274884e-02 2.55105287e-01 4.18712258e-01 -1.73263270e-02\\n-9.99409705e-02 2.78900683e-01 1.96298733e-01 -5.48217714e-01\\n-3.07988644e-01 7.08039328e-02 -3.56900087e-03 -4.56506968e-01\\n5.98015606e-01 3.04672360e-01 -4.02997077e-01 -2.70588934e-01\\n-2.62781888e-01 -1.21000975e-01 3.15591037e-01 -8.59193206e-02\\n5.20897377e-03 5.16665988e-02 5.06585836e-01 -3.23973857e-02\\n2.95345932e-01 4.65425223e-01 -1.09996215e-01 -1.62399083e-01\\n4.35890853e-02 2.66601861e-01 1.80395409e-01 4.32807446e-01\\n-3.79616395e-05 3.55448812e-01 -1.28152460e-01 8.00985098e-02\\n-1.86684072e-01 -9.89712626e-02 1.46409795e-01 -3.02349571e-02\\n-1.23833232e-02 2.39828020e-01 4.08765137e-01 4.92214680e-01\\n3.22033823e-01 3.23157430e-01 1.58545494e-01 -1.36714935e-01\\n5.95612049e-01 4.36714202e-01 2.54029125e-01 -1.09253556e-01\\n1.37685150e-01 1.83381483e-01 2.00255290e-01 1.40732571e-01\\n2.97748685e-01 2.49725997e-01 6.37608245e-02 7.42212892e-01\\n6.00348487e-02 2.70048976e-01 5.51115751e-01 -4.38142002e-01\\n-2.65702069e-01 -3.58943641e-02 4.33730006e-01 -4.20272171e-01\\n6.36755377e-02 1.56458557e-01 -5.96317276e-02 2.06071019e-01\\n-5.74309230e-01 -2.80265659e-02 -2.07985267e-02 3.45859639e-02\\n3.24085876e-02 -4.79708090e-02 -4.42419425e-02 1.02889389e-01\\n-2.54243463e-01 -2.81744808e-01 -3.22281927e-01 -3.51442665e-01\\n-2.29870588e-01 -1.77703410e-01 -7.86852837e-02 -6.29804134e-02\\n5.55321947e-03 -9.93585736e-02 4.28961031e-02 -9.38218385e-02\\n3.98674309e-01 -2.25629658e-01 -1.31150231e-01 -4.48562615e-02\\n4.23750579e-01 7.65279308e-02 6.20419443e-01 -1.37381107e-01\\n7.05907941e-02 -1.33628309e-01 -2.25833416e-01 -1.10053252e-02\\n1.24496147e-01 8.82002860e-02 1.05250314e-01 3.85467976e-01\\n-1.97677359e-01 -2.38287210e-01 -8.57033022e-03 3.44568193e-01\\n-3.24580461e-01 1.19223356e-01 3.73277366e-02 1.04981892e-01\\n3.62823084e-02 -1.96856633e-03 -3.29299688e-01 1.16250776e-02\\n-1.61948115e-01 -6.27887607e-01 1.36458367e-01 -8.63220841e-02\\n-3.15383792e-01 -1.12416744e-02 5.24798691e-01 2.42329970e-01\\n-1.43870264e-01 -1.06115118e-02 -1.78446829e-01 1.09151527e-01\\n-2.74209939e-02 2.18483567e-01 -2.52618402e-01 -3.12364340e-01\\n-1.95966199e-01 2.53825843e-01 -1.41003191e-01 8.46399665e-02\\n-2.49393620e-02 3.66361350e-01 -7.58332014e-02 1.77890643e-01\\n4.29178953e-01 -1.50691703e-01 -2.74034560e-01 -3.16607773e-01\\n-6.28467500e-02 -2.05923706e-01 -3.88447493e-02 -4.33814302e-02\\n1.78928167e-01 -3.62078071e-01 -1.16854161e-01 -3.69281173e-01\\n-1.47759140e-01 -2.43982434e-01 2.60916501e-02 1.20678842e-01]]',\n", + " \"The AO Foundation is a medically guided, not-for-profit organization led by an international group of surgeons specialized in the treatment of trauma and disorders of the musculoskeletal system. Founded in 1958 by a group of visionary surgeons, today, the AO has a global network of 200,000 health care professionals. Each year it offers over 830 educational events around the world, which are supported by nearly 9,000 faculty and are attended by over 58,000 participants. It has 20,000 surgeon members working in the fields of trauma, spine, craniomaxillofacial (CMF), veterinary, and reconstructive surgery. AO Clinical Investigation & Documentation (AOCID) is an institute of the AO Foundation and the provider of choice of the AO Community in clinical research, clinical research education, and health economics. We plan and execute the most pertinent clinical studies, design state-of-the-art clinical research education, and apply health economic techniques to validate current practice in the field of trauma and musculoskeletal disorders—all in compliance with the ICH GCP (E6) guidelines and ISO 14155 standards. We are looking for the following highly motivated person to join our team in Davos, Switzerland. or Dübendorf, Switzerland (near Zurich): Project Manager Statistical Programming and Data Management 60 - 80% In this role you will be required to independently fulfill all tasks related to all phases of AOCID-assigned clinical research projects and to ensure high quality standards for statistical programming and data management and monitoring activities, such as: Creation, validation and management of statistical codes for study-related activities, including monitoring activities (eg, reports, graphs, listings) Database development in electronic data capture (EDC) systems (egm. REDCap) and database validation Development of data validation plans (DVPs), programming of inconsistency reports according to DVP, supporting data cleaning and data clarification activities Set up of data management plans (DMPs) and implementation of codes according to DMPs and statistical analysis plans (SAPs) Development, validation and maintenance of SAS Macros for statistical analysis and monitoring Supporting quality management, development and maintenance of standard operating procedures (SOPs) for statistical programming (validation, documentation) In order to master this challenge, you have: Master of science or bachelor's degree in numerical/computational sciences/mathematics or equivalent Advanced SAS skills (Base SAS, SAS/STAT, SAS/GRAPH, SAS macro language, SQL), preferably additional Stata skills At least three years of experience with programming Basic knowledge of statistics Numerical and analytical skills Attention to detail and reliability Team player Good communication skills (internally and with external stakeholders) Fluent in English (oral and written) We offer An interesting and varied job in an exciting and innovative organization Working in a highly committed international team Modern infrastructure Employment conditions which match the requirements and offer a high degree of flexibility re working hours, location as well as homeoffice If you meet the requirements of this challenging opportunity, please submit your complete online application (motivation letter, CV, recent photograph, certificates, reference letters, etc) through our online application system. Applications received via other channels will not be considered in the process.\",\n", + " '[\"Verbal Communication Skills\", \"Analytical Skills\", \"Infrastructure\", \"Planning\", \"Investigation\", \"Management\", \"Communications\", \"Reliability\", \"Innovation\", \"Visionary\"]',\n", + " '[\"Health Economics\", \"Programming (Music)\", \"Human Musculoskeletal Systems\", \"Data Validation\", \"Applications Of Artificial Intelligence\", \"Data Management\", \"Statistics\", \"SAS (Software)\", \"Database Development\", \"Standard Operating Procedure\", \"Statistical Coupling Analysis\", \"Clinical Study Design\", \"Activism\", \"Activity Monitor\", \"Medic\", \"Executable\", \"Reconstructive Surgery\", \"Validation Master Plan\", \"SAS/STAT\", \"Data Management Plan\", \"Non-Profit Organization\", \"Personalization\", \"SAS Macros\", \"Clinical Research\", \"Cleaned Data\", \"Management Development\", \"Numerical Computing\", \"Receivables\", \"Clinical Data Management\", \"Validations\", \"Home Health Care\", \"SAS/Base\", \"Planned Unit Development\", \"Google Cloud Platform (GCP)\", \"Graphing\", \"Electronic Data Capture (EDC)\", \"SQL (Programming Language)\", \"Quality Management\"]',\n", + " \"['English', 'Kashmiri', 'Manx', 'Tatar']\"],\n", + " ['63',\n", + " 'full-stack software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.37852579e-01 1.92481816e-01 4.76745516e-01 6.89489320e-02\\n4.94166434e-01 -1.87736556e-01 -3.66991945e-02 3.56802285e-01\\n3.73897492e-03 -4.62117016e-01 -7.32699931e-02 -2.56241888e-01\\n-2.35611163e-02 5.51019497e-02 1.27621889e-01 3.91661823e-01\\n2.23573625e-01 1.21874616e-01 -1.87689483e-01 3.11112106e-01\\n1.93503603e-01 -7.42717162e-02 1.23072535e-01 7.60851562e-01\\n1.98144808e-01 1.80163495e-02 -1.41208163e-02 -2.55015418e-02\\n-2.54822463e-01 -2.15544075e-01 3.93892497e-01 6.99831694e-02\\n-1.25136569e-01 -4.46849316e-01 1.55285031e-01 -3.87807935e-02\\n-2.29959458e-01 2.97323242e-02 -6.52593300e-02 1.62213624e-01\\n-5.02447665e-01 -2.24529281e-01 1.01802036e-01 -4.06384133e-02\\n-2.05939054e-01 -2.72966802e-01 1.12008162e-01 -1.00906566e-01\\n9.90026742e-02 9.79113020e-03 -4.72856700e-01 1.78247720e-01\\n-2.62817085e-01 -2.34807178e-01 2.85016805e-01 6.07671320e-01\\n1.37680560e-01 -5.04661441e-01 -4.23783302e-01 -2.83108473e-01\\n9.35746282e-02 -1.47779852e-01 2.61833798e-02 -1.50859743e-01\\n2.55857974e-01 -8.10331702e-02 4.06049117e-02 3.65353882e-01\\n-7.22802818e-01 -6.05117902e-02 -1.16698921e-01 6.33459091e-02\\n-2.61123538e-01 -1.14294238e-01 -2.90464491e-01 -1.45253822e-01\\n-8.96136984e-02 3.80310178e-01 1.35493934e-01 -2.27727052e-02\\n-1.74071372e-01 2.80462682e-01 -2.54176825e-01 3.58794242e-01\\n2.59996951e-01 2.19309300e-01 2.09359735e-01 3.32920730e-01\\n-4.27306473e-01 4.33805645e-01 2.19312370e-01 -3.17197859e-01\\n3.19877267e-01 -2.66056079e-02 4.06521440e-01 1.20508939e-01\\n1.17360298e-02 1.55681506e-01 -1.50281996e-01 3.02651823e-01\\n1.62659392e-01 -1.26878411e-01 -2.69789398e-02 -1.02916762e-01\\n8.53830657e-04 -4.85338047e-02 -7.05614612e-02 1.60498440e-01\\n-2.25152835e-01 3.78668368e-01 8.92682225e-02 -1.72310516e-01\\n-1.89386867e-02 -4.80821043e-01 -8.67770389e-02 -4.38903309e-02\\n-9.81876403e-02 1.50372997e-01 2.26024419e-01 1.32284239e-01\\n2.04068527e-01 6.45667985e-02 1.64040387e-01 8.53983641e-01\\n-2.69882921e-02 5.39195500e-02 -2.78122246e-01 3.67868900e-01\\n1.03113949e-01 -2.14487001e-01 2.53318191e-01 1.80057570e-01\\n4.10114974e-03 -1.44437149e-01 -1.78162187e-01 3.09592962e-01\\n2.02615466e-03 -2.20353171e-01 -2.75631368e-01 6.83945864e-02\\n-1.54824302e-01 -3.95124376e-01 4.93016273e-01 1.91297010e-01\\n2.11503386e-01 6.44068643e-02 8.94365832e-02 -1.93621054e-01\\n-1.70219094e-01 2.18665823e-01 -1.62794217e-02 2.20960453e-01\\n-2.28645504e-01 -2.75105625e-01 -2.14781865e-01 1.78096518e-01\\n-1.44290492e-01 1.32012889e-01 -2.44062439e-01 -9.48629156e-02\\n3.18336517e-01 1.43914327e-01 -2.65006423e-01 2.59663790e-01\\n7.49095483e-03 -3.28685753e-02 -1.18604667e-01 2.91707844e-01\\n-1.13721497e-01 1.77446887e-01 -5.47481105e-02 -5.23148738e-02\\n5.27825594e-01 1.38082966e-01 2.59670436e-01 -5.97450174e-02\\n3.44039798e-01 -1.83622271e-01 1.46444455e-01 1.47138804e-01\\n-5.75103283e-01 3.31737667e-01 -3.37280072e-02 -6.86674118e-02\\n1.78571135e-01 -2.77000130e-03 2.66143620e-01 -2.28382155e-01\\n-1.33363316e-02 -1.44219771e-01 -3.84955674e-01 -3.47473949e-01\\n-2.30437979e-01 7.05140037e-03 3.75325501e-01 -4.19490188e-01\\n-8.85730907e-02 2.52147496e-01 -4.53288823e-01 -2.37062182e-02\\n1.31283402e-01 2.65434623e-01 1.81198530e-02 7.78351426e-02\\n-2.94717163e-01 -4.40474123e-01 5.34271486e-02 -4.19280320e-01\\n-3.06449711e-01 9.97605175e-02 -2.61154652e-01 1.67343855e-01\\n1.08701721e-01 4.68307026e-02 -1.65860429e-01 1.37756512e-01\\n-1.34879872e-01 -1.42607450e-01 1.77586347e-01 6.33881167e-02\\n2.78157443e-01 -1.79788005e-02 -3.95095468e-01 4.58435595e-01\\n-2.54243076e-01 5.43924987e-01 2.02144340e-01 -9.75353718e-01\\n4.26045388e-01 2.95744836e-01 -1.36452287e-01 -3.43909651e-01\\n4.43236291e-01 -3.79281551e-01 1.26798049e-01 1.13000952e-01\\n-3.05183083e-01 -2.87501037e-01 2.79879600e-01 -1.19341172e-01\\n-2.53565699e-01 4.89476413e-01 1.66629627e-01 -3.65213603e-02\\n1.47138894e-01 -1.48331791e-01 -1.78978056e-01 -5.33373095e-02\\n-6.77096248e-02 -2.46002778e-01 -4.58116472e-01 6.11675307e-02\\n-1.28993213e-01 -5.17939568e-01 -1.07015625e-01 -4.80470359e-01\\n-1.65360585e-01 -3.56270134e-01 -2.65675843e-01 3.40450078e-01\\n1.72134906e-01 1.75257936e-01 -9.55342725e-02 7.10375234e-02\\n-2.03945953e-02 -6.38535559e-01 -2.21555009e-02 1.91260919e-01\\n3.77389252e-01 1.95139825e-01 8.76516998e-02 -9.87803042e-02\\n-8.92208237e-03 5.04804909e-01 -2.78462380e-01 -1.85860202e-01\\n1.51857927e-01 1.94185898e-01 7.44454190e-02 -1.34056076e-01\\n3.10120378e-02 2.99536765e-01 -1.93557352e-01 3.74302976e-02\\n-3.29278484e-02 -4.93067987e-02 4.07183528e-01 2.51221862e-02\\n-4.59289312e-01 -1.36052579e-01 1.13030851e-01 2.07461938e-01\\n-5.51807344e-01 -1.68175220e-01 5.63317895e-01 1.54667050e-01\\n1.12187713e-01 1.12019211e-01 1.60497636e-01 -1.12338491e-01\\n-8.73646438e-02 -1.50806800e-01 3.90443355e-01 1.93685994e-01\\n2.38164514e-01 4.73350808e-02 -7.68605024e-02 -6.58671558e-01\\n-3.71801686e+00 -2.88655788e-01 1.08894639e-01 -2.51009852e-01\\n2.10402280e-01 -1.16301835e-01 6.93509802e-02 -1.00499481e-01\\n-3.35511178e-01 4.09985594e-02 -1.80505037e-01 -9.34434906e-02\\n2.02078015e-01 2.71513849e-01 9.39002708e-02 2.06939951e-01\\n8.00482035e-02 -1.28558874e-01 2.83349920e-02 2.82403380e-01\\n-1.94526538e-01 -6.65194333e-01 2.82977343e-01 1.77659728e-02\\n1.38889894e-01 1.27932340e-01 -3.47782493e-01 -5.54187931e-02\\n-2.35634521e-01 -2.53504813e-01 1.75082721e-02 -1.82626843e-01\\n-1.55966774e-01 2.10420713e-01 1.63161993e-01 -1.01957500e-01\\n1.07485786e-01 -4.16975707e-01 -1.00937180e-01 -5.06989658e-01\\n1.58374012e-01 -5.89010835e-01 7.08692744e-02 -1.13835953e-01\\n5.64571023e-01 -2.75185436e-01 1.63434103e-01 7.39965588e-02\\n1.01465754e-01 1.74420625e-01 1.12099186e-01 6.83621466e-02\\n-2.88429677e-01 -2.83348829e-01 -9.00465399e-02 -1.93631425e-01\\n5.06767929e-01 4.79765326e-01 -2.10700706e-01 5.19789383e-02\\n4.67431266e-03 -2.40047216e-01 -4.37182397e-01 -2.89251328e-01\\n-1.68751359e-01 -1.23010710e-01 -6.58562541e-01 -3.75495762e-01\\n-2.05346987e-01 -1.04319915e-01 -2.35805631e-01 5.71415544e-01\\n-1.52672961e-01 -4.54865128e-01 -1.85655802e-02 -5.74184120e-01\\n1.58673137e-01 -2.18890309e-01 4.77557369e-02 -1.32281452e-01\\n-2.58664489e-01 -4.31866854e-01 1.28432527e-01 -3.68775539e-02\\n-1.74171701e-01 -2.54943132e-01 1.18802825e-03 -1.57647535e-01\\n-1.94675669e-01 -5.72802722e-01 2.55898327e-01 9.15393084e-02\\n2.58459479e-01 3.95011902e-02 3.83115590e-01 1.28847480e-01\\n2.44616404e-01 -1.29465103e-01 -3.81393917e-02 -4.57192928e-01\\n1.46124780e-01 1.30850729e-02 6.24619424e-01 -1.90415427e-01\\n9.06779319e-02 1.97992459e-01 -2.55348355e-01 -1.57524168e-01\\n3.01163822e-01 7.65243173e-02 4.57211696e-02 -1.88259810e-01\\n3.32989722e-01 -3.58154207e-01 -2.47983932e-01 6.57221898e-02\\n8.76435265e-02 6.10394955e-01 -1.20602414e-01 -4.20170188e-01\\n-2.07214043e-01 4.12596583e-01 -1.80442948e-02 -1.33364856e-01\\n-2.34282479e-01 1.37779623e-01 -1.25682741e-01 2.48620734e-01\\n1.68844126e-02 -1.50574863e-01 -3.05453330e-01 -1.61887258e-01\\n-4.50969972e-02 2.45026931e-01 2.04659432e-01 4.73636761e-02\\n-3.71065848e-02 -3.03837478e-01 -1.35987252e-01 1.42135635e-01\\n1.64157227e-01 4.40166473e-01 1.76644608e-01 -1.76008195e-01\\n3.52288820e-02 3.32226515e-01 -1.41111106e-01 1.20588586e-01\\n-3.24751347e-01 1.24526724e-01 -5.74560523e-01 -2.67898202e-01\\n-1.81792259e-01 -4.27177012e-01 1.51968360e-01 2.47772306e-01\\n7.20667392e-02 -1.97547823e-02 1.09931659e-02 -4.59616870e-01\\n2.50209332e-01 -6.16950877e-02 2.63813287e-01 1.21065103e-01\\n4.97608557e-02 6.04602575e-01 -4.16166559e-02 -1.39065012e-01\\n-1.95071116e-01 2.48267688e-02 -2.42003158e-01 -1.45206124e-01\\n2.03137770e-02 -4.03147757e-01 -9.92456749e-02 4.66795594e-01\\n1.69920653e-01 -2.31702179e-01 -1.57002196e-01 2.69882977e-01\\n-4.68752906e-03 -1.03330083e-01 -1.05542794e-01 6.11794041e-03\\n3.19862872e-01 -6.08565025e-02 2.61837423e-01 -3.88492793e-01\\n-3.52080376e-03 1.03127599e-01 5.68510145e-02 5.24361908e-01\\n8.95215869e-02 1.20210737e-01 -3.01768258e-02 -2.01291859e-01\\n3.90409410e-01 5.43588959e-02 -1.42590463e-01 -1.37556210e-01\\n5.11623807e-02 -1.21933006e-01 -5.09581566e-01 9.84778702e-02\\n3.31526026e-02 -2.90508717e-01 1.32101059e-01 1.58334315e-01\\n1.44546747e-01 2.30890941e-02 -5.91627538e-01 -2.74597019e-01\\n-3.71508896e-01 -5.10022119e-02 1.72518361e-02 -4.56078202e-01\\n4.85183895e-02 -7.87809491e-02 -5.40606380e-01 2.13197619e-01\\n-9.26281959e-02 -1.01314999e-01 2.86369994e-02 5.59156500e-02\\n-3.35233480e-01 -8.47421885e-02 1.70364007e-01 1.70874596e-01\\n-2.41649315e-01 -2.03402743e-01 1.54718965e-01 -1.03835464e+00\\n1.61605760e-01 9.81688686e-03 -2.05178425e-01 6.54219314e-02\\n-1.36239201e-01 -6.95828855e-01 1.08006902e-01 -3.49223375e-01\\n-2.09928006e-01 9.30015929e-04 -1.65199474e-01 -4.54810530e-01\\n1.04843855e-01 6.51352061e-03 -2.72443563e-01 4.23871160e-01\\n-4.21329230e-01 4.06478912e-01 -1.37037039e-01 6.89245835e-02\\n6.57956824e-02 -3.02612782e-01 6.68996572e-02 -4.29249972e-01\\n-3.96517068e-01 -1.48553625e-01 -2.76375502e-01 -3.12008619e-01\\n-9.27017629e-02 -2.26719677e-01 -1.52048752e-01 1.25752270e-01\\n3.40912551e-01 1.09457724e-01 -5.82548417e-02 -3.59186023e-01\\n4.77482378e-02 -3.84974927e-01 2.06652597e-01 -1.63723037e-01\\n-4.98030633e-02 -1.00706063e-01 2.70085514e-01 -5.05533144e-02\\n7.67568052e-02 -3.61078650e-01 5.24552822e-01 -2.66291946e-01\\n-2.42934808e-01 -1.31216109e-01 4.55055237e-02 1.28634140e-01\\n2.42867187e-01 -5.10292172e-01 -4.60683517e-02 2.30854467e-01\\n1.87261224e-01 9.54721570e-02 2.73285300e-01 -8.13805014e-02\\n3.24533060e-02 2.40409240e-01 -4.25726086e-01 2.05006510e-01\\n7.55897999e-01 -8.22953805e-02 8.19242001e-02 6.13346957e-02\\n2.32777178e-01 2.11509511e-01 4.50992942e-01 7.71663412e-02\\n-1.96466058e-01 3.27956855e-01 3.51090096e-02 -6.10212743e-01\\n-1.07946239e-01 -9.71148442e-03 -8.89954492e-02 -2.78653830e-01\\n6.70276165e-01 4.52547371e-01 -4.27509964e-01 -2.02524543e-01\\n-1.84205219e-01 -8.19998458e-02 1.62163317e-01 -9.54478383e-02\\n7.95287639e-02 -1.03703186e-01 4.87111896e-01 -4.96985130e-02\\n2.54223466e-01 5.34734249e-01 -1.94195911e-01 -4.06734109e-01\\n-1.25680752e-02 1.36401907e-01 6.54377863e-02 4.31146502e-01\\n-2.13802382e-01 1.56132504e-01 6.00081049e-02 1.44914672e-01\\n-1.82611078e-01 1.35940105e-01 7.02302754e-02 -2.33750697e-03\\n1.95027202e-01 -9.35085937e-02 4.89319324e-01 4.85916555e-01\\n3.14017445e-01 4.76775646e-01 3.89787316e-01 2.69280393e-02\\n4.69040096e-01 5.80641866e-01 4.08677369e-01 1.52034253e-01\\n6.44644722e-03 6.87669516e-02 6.62577078e-02 -1.18239798e-01\\n2.72386909e-01 4.34831828e-01 4.29737046e-02 8.03259134e-01\\n3.58766496e-01 2.29173079e-01 6.20186090e-01 -5.96403003e-01\\n-4.26644564e-01 6.59095496e-02 4.32300270e-01 -3.00527155e-01\\n-2.05326569e-03 2.09712312e-01 -1.94739044e-01 1.71661720e-01\\n-4.92882669e-01 -1.77397445e-01 -4.07710411e-02 3.70014161e-02\\n-5.31575782e-03 -9.71976668e-02 -2.13944867e-01 1.30673990e-01\\n-4.09523994e-02 -6.94475025e-02 -4.05618697e-01 -3.90393995e-02\\n-1.30115554e-01 -1.25555880e-02 -1.40225098e-01 -2.65075825e-02\\n-9.33794826e-02 -3.85164022e-01 -1.61572695e-01 6.12005591e-02\\n2.94135183e-01 -9.62421671e-02 -3.15154530e-02 -2.02460438e-01\\n2.75860012e-01 2.13777900e-01 5.19962847e-01 -7.25731254e-02\\n1.96107507e-01 -2.12227777e-01 -1.82497397e-01 6.84925839e-02\\n2.29041532e-01 1.32275969e-01 1.48838321e-02 4.02715057e-01\\n-2.75590032e-01 -2.07112320e-02 1.69922784e-01 4.59360600e-01\\n-3.91079366e-01 -2.97778063e-02 -1.05808228e-01 1.96479186e-01\\n1.83938399e-01 1.23658687e-01 -2.43894652e-01 8.52936357e-02\\n-3.01892549e-01 -5.19448459e-01 4.21198517e-01 -2.05963895e-01\\n-4.64572720e-02 7.88899511e-02 1.60999134e-01 2.03357816e-01\\n-2.13781118e-01 8.91238749e-02 -5.50330542e-02 2.49479502e-01\\n4.38817330e-02 3.10542852e-01 -2.41010770e-01 -1.07575811e-01\\n-2.93560535e-01 2.04722613e-01 -1.09883137e-01 1.32329702e-01\\n-8.83692428e-02 2.96811879e-01 3.04344278e-02 9.08828378e-02\\n3.44726324e-01 -4.60191369e-02 -1.78546280e-01 -2.27969617e-01\\n-3.05460870e-01 -2.62535065e-01 -2.57326867e-02 -1.90733019e-02\\n2.31727421e-01 -3.51153255e-01 7.12587610e-02 -5.86213209e-02\\n-2.03934252e-01 -2.91360646e-01 -2.27245577e-02 -4.43667173e-02]]',\n", + " 'Homegate is the leading digital real estate classifieds platform in Switzerland. We help people to make their best real estate decision and bring commercial real estate agencies, owners and potential tenants and buyers together. We count more than 10 million visits from people who use our portal and have more than 190 million page views per month. We are looking for you as a teammate. You’ll help Homegate to grow the business and our engineering-teams to shift our platform to the next level, while driving innovations. Full-Stack Software Engineer Your Responsibilities You will work on rebuilding the Homegate platform using microservices architecture on AWS You will implement, test and deliver new features within a cross-functional agile team You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery You own your solution and will be responsible from development to delivery to operations in a DevOps environment Your Qualification Experienced in JavaScript/Node.js and related web frameworks Experience with frontend frameworks like Angular or Vue.js Familiarity with AWS services like Lambda, DynamoDB, SNS, RDS, S3, CloudWatch and ElasticSearch Familiarity with Java/Spring/Maven Hands on experience designing and implementing RESTfull backend services Practice in clean code, TDD, pair programming, continuous integration and continuous delivery Experience with agile methodologies and pronounced agile mindset A degree in computer science or equivalent practical experience Fluency in English, German is a plus Benefits Flexible working hours and Home-office possibilities Personal development plan and yearly budget for educational courses, conferences etc. Assistance and Support through all aspects of the onboarding process On-site canteen with plentiful selection of fresh food and salad Discounts in many surrounding shops and partner vendors like HP, Allianz, Sunrise, Shell, ... Lots of team activities and regular hackathons We do not accept unsolicited CVs from Third Party Agencies.',\n", + " '[\"Innovation\", \"Real Estate\", \"Operations\", \"Decisiveness\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Agility\", \"Continuous Delivery\", \"Vue.js\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"Activism\", \"Onboarding\", \"Node.js\", \"Levelling\", \"AWS Directory Service\", \"Amazon Simple Notification Service (SNS)\", \"Microservices\", \"Software Engineering\", \"Amazon DynamoDB\", \"Budgeting\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"Digitization\", \"JavaScript (Programming Language)\", \"Amazon CloudWatch\", \"Foods\", \"Angular (Web Framework)\", \"Planned Unit Development\", \"Experience Design\", \"Pair Programming\", \"Personality Development\", \"Java (Programming Language)\", \"Commercialization\", \"Custom Backend\", \"DevOps\", \"Elasticsearch\"]',\n", + " \"['English', 'Albanian', 'Interlingua', 'Manx', 'Moldovan']\"],\n", + " ['78',\n", + " 'data scientist',\n", + " 'Ecublens',\n", + " '',\n", + " '',\n", + " '[[-2.33694956e-01 3.10694486e-01 4.18160260e-01 2.11881120e-02\\n5.00443697e-01 -1.94497660e-01 1.55600877e-02 3.68219316e-01\\n-5.10560069e-03 -4.21176910e-01 -1.71631239e-02 -1.40576616e-01\\n2.05046013e-02 5.14465123e-02 1.00804456e-01 4.40635741e-01\\n2.66335875e-01 1.03887580e-01 -1.78714707e-01 3.87045324e-01\\n1.99175939e-01 -1.87521607e-01 1.27502203e-01 6.93333447e-01\\n4.92713183e-01 -2.11830791e-02 -7.92485103e-02 -5.25545701e-02\\n-2.31206372e-01 -2.70013183e-01 3.10707182e-01 -5.74332699e-02\\n2.15872210e-02 -2.99329877e-01 1.26689702e-01 6.63633347e-02\\n-2.88466960e-01 9.91255492e-02 -1.12298958e-01 1.70360520e-01\\n-4.55864787e-01 -2.54954934e-01 -4.65565622e-02 2.24263333e-02\\n-3.10011983e-01 -3.62532288e-01 -3.89026776e-02 -6.13107905e-02\\n1.89088270e-01 7.77875111e-02 -4.44443345e-01 2.64167577e-01\\n-1.99776679e-01 -2.33396560e-01 2.95734167e-01 6.23479247e-01\\n4.50934917e-02 -4.20679539e-01 -4.89458710e-01 -2.78634846e-01\\n1.16557688e-01 -1.16639726e-01 6.18355535e-02 -2.42787793e-01\\n2.31323600e-01 8.86910409e-02 1.85002424e-02 4.35410947e-01\\n-7.84092247e-01 -1.91704020e-01 -2.07681894e-01 1.23402951e-02\\n-4.06007141e-01 -3.22623886e-02 -3.86694640e-01 -1.56241968e-01\\n-1.01129234e-01 4.20151114e-01 4.80038337e-02 1.50772352e-02\\n-1.61528647e-01 2.81036943e-01 -3.04915220e-01 2.73584455e-01\\n1.02941796e-01 2.79036343e-01 2.70860821e-01 3.73432189e-01\\n-3.85613143e-01 4.36079144e-01 2.41754726e-01 -2.32633501e-01\\n1.76205307e-01 1.06240548e-01 4.02684838e-01 -3.40732709e-02\\n5.77798896e-02 1.65189445e-01 -2.88379312e-01 2.76702106e-01\\n2.82096684e-01 -3.95611554e-01 7.87914172e-03 -8.94999653e-02\\n-6.25511557e-02 8.40330943e-02 -1.40251601e-02 2.31189877e-01\\n-2.59275526e-01 5.51684439e-01 1.46659464e-01 -1.37547225e-01\\n-2.28251547e-01 -5.54201663e-01 -1.58757374e-01 5.78126982e-02\\n7.47821108e-02 2.12494642e-01 2.19253793e-01 2.26380914e-01\\n1.16370395e-01 2.24813446e-02 9.47291628e-02 8.04549098e-01\\n-1.16630517e-01 9.60807726e-02 -2.40479290e-01 3.10207963e-01\\n1.13190107e-01 -1.79855525e-01 1.54276356e-01 2.36554399e-01\\n3.56984660e-02 -9.47168022e-02 -2.18061045e-01 2.29521587e-01\\n-6.06105588e-02 -2.31227845e-01 -2.83477813e-01 1.18313588e-01\\n-8.22055563e-02 -4.50509131e-01 5.74952066e-01 2.31584758e-02\\n1.53814897e-01 -4.48159203e-02 -2.24550851e-02 -8.20790709e-04\\n-7.56019875e-02 3.03169787e-01 9.13372710e-02 1.23072930e-01\\n-3.03916544e-01 -2.50226796e-01 -2.05550730e-01 5.83877154e-02\\n-3.36428940e-01 1.21093690e-01 -1.49086595e-01 -8.47567096e-02\\n2.71635681e-01 2.08488125e-02 -3.83767873e-01 2.71044642e-01\\n-1.30235463e-01 -8.42409208e-02 -3.11831720e-02 2.99951226e-01\\n-1.61675259e-01 2.33679801e-01 -6.71690926e-02 -1.30883873e-01\\n5.50217986e-01 2.00362459e-01 1.86730698e-01 5.74072637e-02\\n4.16112304e-01 -7.64654353e-02 1.65985912e-01 1.46445289e-01\\n-6.16053522e-01 2.94797331e-01 -1.32572711e-01 -2.28586271e-01\\n7.21781477e-02 -7.12005943e-02 2.70072997e-01 -2.85197854e-01\\n1.02354713e-01 -1.22964345e-01 -3.76513153e-01 -2.02733293e-01\\n-2.33798623e-01 -9.22281202e-03 4.65564877e-01 -4.22957778e-01\\n-1.76289026e-02 3.41121376e-01 -4.72027391e-01 -2.33024880e-02\\n2.61357486e-01 2.06141934e-01 1.31217614e-01 1.74730763e-01\\n-1.67744666e-01 -5.34387946e-01 1.35052264e-01 -4.33909267e-01\\n-3.29078257e-01 9.94107500e-02 -2.26713926e-01 3.33410501e-01\\n1.11036092e-01 -1.82715862e-03 -1.51139751e-01 1.67970553e-01\\n-1.18425325e-01 -1.10447332e-01 2.83209413e-01 3.28941941e-02\\n2.14923769e-01 6.44942671e-02 -3.72515410e-01 4.12083060e-01\\n-1.71891153e-01 6.03396297e-01 1.51938602e-01 -8.25392425e-01\\n4.90812927e-01 2.63826311e-01 -4.59370501e-02 -3.21155071e-01\\n6.44851744e-01 -2.84966499e-01 -7.32831145e-03 1.82045624e-01\\n-3.86190504e-01 -3.75351101e-01 2.37068579e-01 -1.66365340e-01\\n-1.99741721e-01 4.85785127e-01 4.40158285e-02 1.30692467e-01\\n1.79745406e-01 -1.60787553e-01 -3.98576073e-02 1.52663261e-01\\n-5.35914041e-02 -2.94805288e-01 -5.18397212e-01 9.26941931e-02\\n-3.32034752e-03 -4.76196647e-01 -2.17280313e-01 -4.25665081e-01\\n-2.85543621e-01 -4.39662457e-01 -1.57982692e-01 1.62631392e-01\\n3.31044137e-01 2.13499740e-01 -7.93696195e-02 -1.45712877e-02\\n-6.71145394e-02 -5.73744237e-01 1.61153320e-02 -3.42152314e-03\\n3.32856089e-01 2.50352800e-01 1.27441794e-01 4.36256528e-02\\n-2.19522528e-02 6.58323348e-01 -2.66560346e-01 -7.67623484e-02\\n1.85713053e-01 1.61428437e-01 -4.22756560e-03 -1.84829593e-01\\n1.29164323e-01 3.03757608e-01 -3.01778555e-01 3.38381715e-02\\n-9.51857269e-02 2.57780049e-02 2.92345256e-01 1.55617343e-02\\n-3.14502805e-01 -2.91422993e-01 -1.84992716e-01 1.99362904e-01\\n-5.02870262e-01 -1.22930110e-01 6.11743093e-01 1.40754446e-01\\n2.12122321e-01 1.37849808e-01 1.78483725e-01 -5.49887866e-02\\n-2.52730638e-01 -2.37880677e-01 2.72285432e-01 1.19225636e-01\\n1.00995198e-01 1.08278088e-01 3.67361568e-02 -6.45773768e-01\\n-3.37454438e+00 -1.89724252e-01 1.42814428e-01 -3.38577360e-01\\n1.43696800e-01 -1.30025804e-01 7.90460850e-04 5.75618772e-03\\n-3.24257165e-01 -6.59538507e-02 -1.53357282e-01 -8.79887938e-02\\n1.11312129e-01 2.64822900e-01 2.32304096e-01 2.98638642e-01\\n1.27467379e-01 -1.62867710e-01 -9.62174162e-02 3.77242118e-01\\n-2.11324051e-01 -5.81725299e-01 1.73958287e-01 6.06971495e-02\\n3.06207120e-01 1.59802139e-01 -3.38576555e-01 -5.65338843e-02\\n-2.50230163e-01 -2.47252196e-01 1.56811714e-01 -2.66218424e-01\\n-9.78930295e-02 3.70669335e-01 1.11472450e-01 -3.69110554e-02\\n1.24919102e-01 -3.92606795e-01 -1.68069433e-02 -3.88697505e-01\\n3.36455740e-03 -8.20426643e-01 -1.06883690e-01 -7.53684193e-02\\n6.40119731e-01 -2.71099359e-01 1.90349251e-01 3.63641493e-02\\n1.95785105e-01 1.30269691e-01 -1.12082675e-01 -2.06818786e-02\\n-1.78427428e-01 -2.77495384e-01 -1.03456229e-01 -9.79371369e-02\\n5.67298770e-01 5.69631875e-01 -2.69044399e-01 8.01320001e-03\\n8.58934447e-02 -2.63506502e-01 -5.48892736e-01 -3.06886792e-01\\n-2.30444178e-01 -9.26887095e-02 -5.49840808e-01 -4.26731259e-01\\n-1.73887193e-01 -8.43783766e-02 -9.15077925e-02 5.37236929e-01\\n-2.44740486e-01 -3.07523429e-01 2.18364410e-02 -4.46015954e-01\\n2.17726916e-01 -5.78427985e-02 5.55722602e-02 -1.57294363e-01\\n-2.49102935e-01 -4.09702212e-01 5.71653396e-02 4.89288606e-02\\n-1.03141606e-01 -1.70892045e-01 1.20945215e-01 -2.24966794e-01\\n-3.17171067e-01 -5.10713279e-01 4.32295084e-01 4.87467349e-02\\n3.29036176e-01 1.11190058e-01 3.36199135e-01 -2.32616439e-03\\n3.67397785e-01 -2.11079836e-01 8.26304704e-02 -4.73270059e-01\\n1.30975902e-01 1.23217061e-01 4.57422286e-01 -2.57095784e-01\\n-2.90559363e-02 7.17845038e-02 -3.32812697e-01 -1.39272260e-02\\n3.24670821e-01 -9.72553063e-03 8.99634138e-02 -1.17377803e-01\\n2.99210072e-01 -1.75929055e-01 -1.96166590e-01 1.49432853e-01\\n1.25814483e-01 5.53664744e-01 -2.02456564e-02 -3.95146817e-01\\n-1.58705860e-01 4.65312690e-01 -1.28688559e-01 -1.64453685e-02\\n-2.20121115e-01 1.04714744e-01 -1.52595073e-01 3.03967416e-01\\n-1.62819047e-02 -2.08631858e-01 -3.24698567e-01 -8.55872259e-02\\n-2.00148061e-01 2.88713664e-01 2.10529864e-01 8.84781405e-03\\n-2.34209150e-02 -4.25555855e-01 4.88475226e-02 2.26361573e-01\\n3.02192241e-01 2.84149259e-01 1.32213458e-01 -3.12475771e-01\\n-2.65542488e-03 2.49389172e-01 -2.19128251e-01 1.43899396e-01\\n-2.30714470e-01 1.13670349e-01 -5.54150343e-01 -3.49009186e-01\\n-1.89482644e-01 -3.14781696e-01 5.19638248e-02 2.31541350e-01\\n9.33595821e-02 -3.79794538e-02 3.64829339e-02 -4.96978492e-01\\n2.50132710e-01 8.91704634e-02 1.41821250e-01 1.04199350e-01\\n6.50435165e-02 4.86761510e-01 -7.43257999e-02 -1.51026547e-01\\n-8.15386027e-02 8.31517857e-03 -2.52564102e-01 -1.61107272e-01\\n2.35367175e-02 -4.73139077e-01 -1.57440469e-01 4.31908786e-01\\n1.75614521e-01 -2.24854723e-01 -2.10265309e-01 2.33494282e-01\\n1.08112328e-01 -3.23333591e-01 -2.15742409e-01 7.69484714e-02\\n3.64243120e-01 2.84955073e-02 3.17728549e-01 -4.48985428e-01\\n-2.92366315e-02 -8.68766103e-03 -1.67075247e-01 3.85697901e-01\\n9.01811421e-02 6.34265393e-02 -1.42284945e-01 -1.18283749e-01\\n4.05384213e-01 -2.07938403e-01 -3.12987890e-04 -3.71236634e-03\\n7.22786337e-02 -1.72924995e-01 -4.16090906e-01 -3.35295871e-03\\n-2.77986359e-02 -1.46082133e-01 6.18476830e-02 6.88482150e-02\\n1.95526797e-02 2.18948331e-02 -4.36302602e-01 -2.52694368e-01\\n-2.61161715e-01 -5.27560525e-02 8.58162493e-02 -4.58270907e-01\\n-2.03491196e-01 -4.92448779e-03 -5.92003286e-01 2.99318612e-01\\n-1.66229084e-01 1.24176955e-02 1.36493877e-01 1.25456434e-02\\n-2.27434918e-01 -6.18282631e-02 1.50179550e-01 2.79138029e-01\\n-2.83006787e-01 -2.85566092e-01 -5.33556268e-02 -1.08658040e+00\\n1.17247723e-01 -1.71513241e-02 -1.50322318e-01 1.47311568e-01\\n-5.30583151e-02 -6.02376044e-01 1.81220829e-01 -4.92458552e-01\\n-1.17195107e-01 -2.31137616e-03 -2.27269471e-01 -4.26067472e-01\\n2.71027815e-02 6.99616503e-04 -3.77176076e-01 3.43522787e-01\\n-3.14913243e-01 3.73485088e-01 -8.71398374e-02 2.94337738e-02\\n-6.90276967e-03 -3.24979097e-01 1.40533581e-01 -4.38480079e-01\\n-4.09763217e-01 -2.08348125e-01 -3.62754285e-01 -2.31102183e-01\\n-1.69482473e-02 -2.97968119e-01 -1.93098947e-01 1.07559025e-01\\n1.68603167e-01 1.07703343e-01 -1.24213314e-02 -2.61103392e-01\\n1.42630473e-01 -5.54382861e-01 1.18775908e-02 -1.13759488e-01\\n-1.04505032e-01 9.37627908e-03 2.58785665e-01 1.09534644e-01\\n1.62994713e-01 -3.25260311e-01 3.87850344e-01 -2.82961816e-01\\n-2.96962291e-01 -1.11226268e-01 1.57088652e-01 2.77211051e-02\\n3.73301774e-01 -4.14922833e-01 -4.56987023e-02 2.81111509e-01\\n3.69533338e-02 3.61954235e-02 2.27839813e-01 -1.51926070e-01\\n-1.39332205e-01 1.41031131e-01 -3.47362369e-01 1.36559248e-01\\n7.64166594e-01 1.19722612e-01 1.56051457e-01 1.89553708e-01\\n2.05733135e-01 3.62886488e-01 5.64511836e-01 -5.12254164e-02\\n-1.73758976e-02 3.16232383e-01 5.70267364e-02 -5.05842447e-01\\n-9.85049382e-02 -2.23243665e-02 -2.16953263e-01 -3.45784515e-01\\n7.71083236e-01 4.01447922e-01 -3.67944747e-01 -2.82530814e-01\\n-2.55333722e-01 -1.92200005e-01 1.42441377e-01 -1.16522320e-01\\n-9.79781989e-03 -1.26149982e-01 5.14795363e-01 -3.24882604e-02\\n2.08125204e-01 3.93640727e-01 -2.60371715e-01 -3.43324125e-01\\n1.63293071e-02 1.88208476e-01 1.11930065e-01 4.07239705e-01\\n-2.15424418e-01 2.83919811e-01 -1.22542873e-01 1.88305587e-01\\n-1.27313986e-01 1.96085144e-02 1.89664289e-01 1.68041557e-01\\n1.80253655e-01 1.08201332e-01 4.59819973e-01 4.03178215e-01\\n2.92060554e-01 4.58663821e-01 3.07962656e-01 -1.35585456e-03\\n3.76005560e-01 5.67339182e-01 3.34267914e-01 8.10878128e-02\\n-5.83318770e-02 1.47555828e-01 1.75408408e-01 -5.63990604e-03\\n3.17342997e-01 3.03035587e-01 1.17216766e-01 7.82497466e-01\\n3.29421192e-01 3.70164484e-01 7.33907044e-01 -5.39341152e-01\\n-3.96218210e-01 -3.00336406e-02 5.11527240e-01 -3.55568469e-01\\n-6.71447963e-02 1.90549448e-01 -1.98653817e-01 3.30384016e-01\\n-4.94013518e-01 -2.87787050e-01 -4.27875258e-02 1.15459569e-01\\n-1.06900260e-02 -9.41596478e-02 -2.70226032e-01 4.06322256e-02\\n-1.03962436e-01 -2.38350481e-01 -4.39694673e-01 -1.43574566e-01\\n-1.89686015e-01 -7.99104199e-02 -9.22728628e-02 -4.60672863e-02\\n-1.92324534e-01 -3.46632600e-01 -5.92208356e-02 -2.77661178e-02\\n3.29893082e-01 -1.22675225e-01 -1.51904777e-01 -3.79742756e-02\\n2.40926623e-01 1.20706424e-01 6.16295457e-01 3.35358083e-02\\n4.00059335e-02 -2.89301723e-01 -2.29083687e-01 1.22933194e-01\\n2.12325722e-01 6.46721423e-02 2.37110034e-02 4.38026875e-01\\n-3.71639788e-01 -2.26398498e-01 2.32170895e-03 2.69654214e-01\\n-3.83572161e-01 -1.58126410e-02 -8.60816706e-03 2.86389381e-01\\n9.71846208e-02 1.35595635e-01 -2.06738442e-01 1.67916343e-02\\n-1.40680835e-01 -5.05075216e-01 2.39574060e-01 -2.87663825e-02\\n-2.16864496e-01 7.66880587e-02 2.03975469e-01 1.66094288e-01\\n-2.24961445e-01 -1.08198360e-01 -8.59026983e-02 1.07447505e-01\\n1.05783455e-01 3.37293684e-01 -1.13268092e-01 -3.77458513e-01\\n-3.05585086e-01 2.97581404e-01 -1.55567721e-01 1.88475400e-01\\n2.21482329e-02 3.81440490e-01 2.80639566e-02 1.98177546e-01\\n3.36726397e-01 3.79857793e-02 -1.58774555e-01 -2.81602234e-01\\n-1.30580917e-01 -2.01127902e-01 -5.71283454e-04 -6.60051405e-02\\n1.24478027e-01 -3.39486122e-01 -9.33265388e-02 -1.62183732e-01\\n-1.76691249e-01 -3.75046730e-01 -1.39651662e-02 -1.21429220e-01]]',\n", + " \"What we are looking for To accelerate projects and growth, Nanolive is looking for strengthening its development team with a highly self-motivated, enthusiastic, result oriented Python Data Scientist. Mission and activities Implement advanced statistical and data analysis tools related to Nanolive Core Technology and Quantitative biology applicationsImplement environment development and architecture in PythonValidate proofs of concepts through modelling and simulationPrepare test protocols, run tests and analyse resultsDocument work results with Python notebooks or similar reports Required Master’s or PhD degree in Computational Science, Mathematics, Engineering or related area.Experience in Python scientific codingExperience in big data managementStrong background in Mathematics, Physics or Biology An Asset Experience with CI/CD, source management & djangoKnowledge of unit testingKnowledge of hdf5, java programming, image analysis Key asset of the candidate Have a team player spirit, a quick perception, and a resourceful and fast-learning mindsetHave a strong sense of commitment and responsibility to respect planning and qualityHave a high analytical capacity and an adaptable, autonomous, rigorous and service-oriented mindsetHave effective communication in English (both written & oral – including technical documentation) What we offer You will get the opportunity to work in a fast-growing scale-up environment with highly motivated, competent and experienced individuals, and make a real difference for our customers. You will be working with a cutting-edge technology and facing the exclusive challenge of making it accessible to a wide audience by implementing creative solutions. Interested? Please visit our website, then click on “Apply Now” and fill your application including your cover letter and CV. We do not accept any recruitment agencies. Job Types: Full-time, Permanent Experience: python: 1 year (Preferred)Big Data management: 1 year (Preferred) Education: Master's (Required) \",\n", + " '[\"Self-Motivation\", \"Adaptability\", \"Resourcefulness\", \"Planning\", \"Management\", \"Communications\", \"Creativity\"]',\n", + " '[\"Computational Science And Engineering\", \"Integrated Development Environments\", \"Accessioning\", \"Programming (Music)\", \"Computer Science\", \"Analytics\", \"Data Management\", \"Statistics\", \"Mathematical Sciences\", \"Scale (Map)\", \"Activism\", \"Python (Programming Language)\", \"Agile Edge Technologies\", \"Source (Game Engine)\", \"Image Analysis\", \"Mathematical Physics\", \"Biology\", \"Service-Oriented Modeling\", \"Big Data\", \"Technical Documentation\", \"Survey Data Analysis\"]',\n", + " \"['English', 'Scottish Gaelic']\"],\n", + " ['84',\n", + " 'junior software engineer (java/.net)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-1.76593438e-01 3.21061343e-01 4.03711438e-01 -1.54909730e-01\\n4.76513952e-01 -1.61132127e-01 -6.34107143e-02 5.04556894e-01\\n-1.29692452e-02 -4.26526338e-01 -1.08737096e-01 -2.87307113e-01\\n1.52786635e-02 1.04779959e-01 1.56753182e-01 3.73529404e-01\\n2.96232581e-01 6.40516654e-02 -2.92920381e-01 3.61855328e-01\\n1.10292733e-01 -2.81781610e-02 -7.17595033e-03 7.47539461e-01\\n4.39354718e-01 -7.82226969e-04 -1.87227018e-02 5.75900935e-02\\n-1.70399323e-01 -3.42422903e-01 3.79916549e-01 -2.86088493e-02\\n-7.82140791e-02 -2.97521114e-01 1.12556241e-01 1.47341728e-01\\n-2.34570697e-01 -1.30936563e-01 -1.19586334e-01 9.80236679e-02\\n-6.00463450e-01 -2.93426692e-01 1.35056898e-02 -1.18367880e-05\\n-1.63778290e-01 -2.16083169e-01 1.30774364e-01 -2.83112307e-03\\n1.38227075e-01 1.12860583e-01 -5.21316528e-01 3.21882188e-01\\n-2.31303632e-01 -2.55251557e-01 2.84495443e-01 5.33625543e-01\\n-7.16173574e-02 -4.78711963e-01 -4.45660561e-01 -1.76051363e-01\\n7.50497580e-02 -4.51737531e-02 9.01194364e-02 -2.85600156e-01\\n2.99641907e-01 2.80178599e-02 -1.49996644e-02 4.24006343e-01\\n-7.46236205e-01 -1.75578296e-01 -3.49998355e-01 -2.74872873e-02\\n-4.48245823e-01 -7.02249631e-02 -1.97195873e-01 -1.53375819e-01\\n-1.13573454e-01 3.01516026e-01 5.74140390e-03 1.00188702e-01\\n-1.86090022e-01 3.00571471e-01 -1.67472169e-01 1.86562002e-01\\n3.05050313e-01 2.87455022e-01 1.43266201e-01 2.92795092e-01\\n-4.35896456e-01 3.86317909e-01 1.59691140e-01 -2.87642926e-01\\n2.07522348e-01 1.32034257e-01 4.69235361e-01 -5.23699895e-02\\n2.15967342e-01 1.91485554e-01 -2.01259583e-01 3.05229813e-01\\n3.01190615e-01 -3.84763211e-01 1.64472878e-01 3.07833478e-02\\n-1.37119904e-01 8.55882615e-02 2.16900390e-02 1.90158814e-01\\n-3.28246027e-01 4.07780826e-01 2.21121266e-01 -3.04685652e-01\\n-1.29718736e-01 -6.66480780e-01 -7.32659623e-02 -1.70428585e-02\\n-2.85175815e-02 1.27897561e-01 2.77196676e-01 1.64327040e-01\\n2.56691009e-01 -2.67633945e-02 1.64483115e-01 8.07296574e-01\\n-9.64336917e-02 -4.95425798e-02 -2.95183837e-01 3.39900285e-01\\n3.08363773e-02 -2.61030644e-01 2.35901847e-01 2.42364123e-01\\n1.48212940e-01 -1.10651352e-01 -2.29090244e-01 3.75479698e-01\\n4.46081124e-02 -1.80823565e-01 -3.30258936e-01 1.20476186e-01\\n-2.13517293e-01 -2.79216886e-01 4.89615440e-01 1.60519198e-01\\n1.98460773e-01 -5.68582900e-02 3.65851745e-02 -8.44580829e-02\\n2.69353446e-02 2.69249976e-01 -4.39681392e-03 1.76864490e-01\\n-3.37065428e-01 -1.53483197e-01 -1.98424637e-01 2.83370048e-01\\n-2.14515686e-01 1.58995554e-01 -1.10643834e-01 -1.43872246e-01\\n3.12644273e-01 -4.86761667e-02 -2.74190605e-01 2.55970180e-01\\n-3.41466591e-02 -1.73484325e-01 -1.48332879e-01 3.11571896e-01\\n-5.07303029e-02 1.95946977e-01 -2.23618541e-02 -2.12216020e-01\\n5.49118638e-01 2.11593464e-01 1.31275937e-01 -1.23719051e-01\\n2.53553271e-01 -1.11762546e-01 1.08112857e-01 9.51458439e-02\\n-6.92754090e-01 3.82462382e-01 -7.21364394e-02 -4.51747999e-02\\n2.95237917e-02 -3.14199971e-03 1.58689484e-01 -4.37934548e-01\\n-1.01509392e-01 -2.09989399e-02 -4.13660169e-01 -3.50695997e-01\\n-2.60238677e-01 -9.73547995e-02 3.47413570e-01 -4.34822887e-01\\n-2.49801382e-01 1.11400411e-01 -5.16287029e-01 -1.43214478e-03\\n2.43023917e-01 1.55254498e-01 3.05788685e-03 1.04137406e-01\\n-1.92998245e-01 -5.62118709e-01 -1.00180004e-02 -4.78655815e-01\\n-3.73078734e-01 2.51119696e-02 -2.50190169e-01 3.16525012e-01\\n8.29584301e-02 -1.57307778e-02 -1.48086622e-01 1.98652908e-01\\n-1.95372164e-01 9.55756903e-02 1.30578339e-01 7.63072670e-02\\n4.02883917e-01 3.00900973e-02 -3.86655241e-01 3.83924812e-01\\n-1.80618897e-01 4.44632322e-01 1.37830600e-01 -6.77592218e-01\\n5.23817003e-01 2.98845768e-01 1.44963548e-01 -3.40237945e-01\\n6.25833094e-01 -2.88204432e-01 3.34287323e-02 1.09531142e-01\\n-5.59176624e-01 -2.85899580e-01 3.18265200e-01 -2.27341026e-01\\n-2.89171219e-01 5.21973431e-01 1.36654779e-01 6.83352724e-02\\n2.79148728e-01 -2.32345611e-01 -5.02504893e-02 9.15265381e-02\\n-3.63869295e-02 -1.55157834e-01 -3.93900782e-01 -4.17622402e-02\\n-7.24733323e-02 -5.52917302e-01 -2.36311182e-01 -4.20200139e-01\\n-2.97080845e-01 -2.56412953e-01 -2.95083553e-01 3.59753460e-01\\n2.13750780e-01 8.16309825e-02 2.07328513e-01 -7.86259864e-03\\n-1.70908257e-01 -5.74805975e-01 1.65225063e-02 1.51722074e-01\\n3.35795581e-01 1.29875034e-01 1.94907573e-03 6.45203888e-02\\n-1.33454755e-01 6.67776585e-01 -2.54231662e-01 -2.29366407e-01\\n3.84627320e-02 2.12509856e-01 1.26083255e-01 1.29778078e-03\\n5.77241816e-02 2.16965482e-01 -3.69101822e-01 -2.11176090e-02\\n-1.12583831e-01 -4.59927693e-03 4.34970021e-01 1.43109277e-01\\n-2.64632374e-01 -2.35784322e-01 -1.87835880e-02 2.04456151e-01\\n-4.53244746e-01 -1.01141088e-01 6.28460765e-01 1.33806273e-01\\n2.11746842e-01 2.06617191e-01 2.51506358e-01 2.49771611e-03\\n-1.33037522e-01 -3.57031435e-01 1.42204165e-01 1.64547071e-01\\n-7.75716007e-02 4.18425873e-02 -1.52813330e-01 -6.11581981e-01\\n-3.36472869e+00 -2.56216913e-01 2.05678061e-01 -3.26425880e-01\\n2.15815082e-01 -1.36300456e-02 2.09497008e-02 -1.10772513e-01\\n-2.50004888e-01 1.06282808e-01 -1.34167820e-01 -2.69153059e-01\\n1.19905651e-01 1.48137718e-01 3.00269388e-02 3.38315398e-01\\n1.99299827e-01 -2.41929010e-01 -8.58267024e-02 3.00494671e-01\\n-2.40120322e-01 -6.03816092e-01 2.18374535e-01 -4.64849994e-02\\n2.88795650e-01 3.33908528e-01 -3.81697536e-01 -1.57503143e-01\\n-2.12948948e-01 -2.33239755e-01 1.50163546e-01 -4.97783512e-01\\n-1.40359685e-01 4.11130875e-01 2.69195735e-01 -5.28729409e-02\\n6.72517270e-02 -3.49673659e-01 -1.04543120e-01 -3.80943507e-01\\n1.56093225e-01 -5.48174083e-01 -5.57694696e-02 -1.15501300e-01\\n8.36921394e-01 -4.21750963e-01 1.86833367e-01 7.80011937e-02\\n1.02231622e-01 1.61395058e-01 3.91127989e-02 3.49097401e-02\\n-3.18079777e-02 -3.77466470e-01 -5.39919063e-02 -7.77751505e-02\\n4.15653735e-01 6.42293155e-01 -1.29026830e-01 4.10666689e-02\\n7.04821348e-02 -3.55339229e-01 -3.72199893e-01 -3.50926220e-01\\n-1.81724653e-01 -2.18174979e-01 -6.86396599e-01 -4.35020238e-01\\n-5.99314421e-02 -1.34697929e-01 -1.89752221e-01 6.31108761e-01\\n-3.85191530e-01 -4.70457137e-01 -5.30615374e-02 -5.38447738e-01\\n1.43555671e-01 -2.31325835e-01 2.07670368e-02 -1.60858899e-01\\n-2.73448855e-01 -5.03517509e-01 3.26972306e-02 -6.18008003e-02\\n-4.89219762e-02 -2.11286828e-01 4.24452312e-02 -1.86619669e-01\\n-1.93206027e-01 -4.51025516e-01 4.71527994e-01 2.66824722e-01\\n2.85668761e-01 1.41474813e-01 2.55323857e-01 1.15285717e-01\\n1.84483469e-01 -1.92001209e-01 -5.16177714e-02 -1.97040126e-01\\n8.51439387e-02 -6.74655437e-02 4.98368829e-01 -1.85615301e-01\\n1.74439028e-01 7.34840259e-02 -2.10303128e-01 -1.76942408e-01\\n3.25416416e-01 9.85615104e-02 -2.30863504e-02 -2.10182682e-01\\n3.22140723e-01 -3.91988724e-01 -1.92468464e-01 6.27424419e-02\\n-1.36527494e-02 5.78014612e-01 -2.31287163e-02 -4.14380729e-01\\n-2.16797352e-01 4.70710427e-01 -1.03607453e-01 -1.13182977e-01\\n-2.62265533e-01 1.56151906e-01 -2.44738087e-01 4.71158102e-02\\n-8.68418738e-02 -1.96417972e-01 -2.52000451e-01 -1.01529650e-01\\n-7.73783028e-02 2.25697726e-01 2.38756806e-01 1.76380321e-01\\n-3.25264235e-04 -3.66770953e-01 -1.87874451e-01 1.70377865e-01\\n3.21943134e-01 4.69823807e-01 2.05754116e-01 -2.49885038e-01\\n-2.66310689e-03 2.56003737e-01 -2.25298911e-01 7.15818256e-02\\n-9.13015157e-02 1.92744806e-02 -3.89349043e-01 -2.77011424e-01\\n-2.12551922e-01 -3.11367631e-01 4.08733562e-02 2.66829103e-01\\n1.28169924e-01 -6.59903660e-02 1.07980125e-01 -3.24777365e-01\\n4.29364681e-01 1.43635243e-01 2.02647433e-01 2.41164520e-01\\n-1.28094549e-03 4.87680972e-01 4.75352332e-02 1.21705290e-02\\n-1.38825834e-01 -1.71913113e-02 -1.78997889e-01 -1.54518053e-01\\n8.16649273e-02 -3.76050949e-01 -1.10170245e-01 4.68188584e-01\\n-2.24669892e-02 -2.75545359e-01 -7.40914419e-02 2.70236045e-01\\n-6.87100738e-02 -3.55419278e-01 -1.91738263e-01 5.80018051e-02\\n3.23654175e-01 1.16491176e-01 2.84346521e-01 -4.83857572e-01\\n-1.87748626e-01 -4.06076536e-02 -1.21308804e-01 4.89905447e-01\\n8.73986483e-02 9.08572450e-02 -1.26044139e-01 -3.93336356e-01\\n4.24936384e-01 -2.45082140e-01 -1.63571283e-01 4.91313711e-02\\n1.01622261e-01 -1.51712820e-01 -5.06274402e-01 5.72781339e-02\\n-2.26082802e-02 -1.38799265e-01 6.08404982e-04 -1.11833923e-01\\n1.82227880e-01 1.02961227e-01 -5.65874457e-01 -3.36980581e-01\\n-3.38655174e-01 -1.67077050e-01 2.40755323e-02 -3.29987496e-01\\n2.36030594e-02 -2.58733392e-01 -5.54550946e-01 3.28601539e-01\\n-4.26286042e-01 -7.00219162e-03 2.09550813e-01 2.05608800e-01\\n-4.62352902e-01 -1.45468876e-01 1.48451090e-01 2.71940231e-01\\n-3.58108938e-01 -2.69744188e-01 -1.43206306e-02 -9.50020730e-01\\n1.74867406e-01 -5.22723161e-02 -6.43756539e-02 -6.63422002e-03\\n1.79611575e-02 -6.67165339e-01 -1.68787483e-02 -2.08874583e-01\\n-6.40894771e-02 2.16985028e-02 -1.07308805e-01 -3.76201779e-01\\n4.48540300e-02 -1.18227899e-01 -2.48699114e-01 3.91325742e-01\\n-3.37012202e-01 2.13321581e-01 -4.81119752e-02 9.12002027e-02\\n-1.55821890e-01 -2.87184209e-01 1.63515538e-01 -3.69769424e-01\\n-4.63883072e-01 -1.07540436e-01 -2.89779544e-01 -2.29507953e-01\\n1.72873996e-02 -3.12347502e-01 -6.67945296e-02 6.56527877e-02\\n1.63883060e-01 -4.55058552e-02 -4.13291529e-02 -2.44959444e-01\\n3.03288233e-02 -4.01813537e-01 1.74983665e-01 -1.49476305e-01\\n7.65782669e-02 -1.14036866e-01 1.70854881e-01 8.62988755e-02\\n-6.09642919e-03 -4.59550023e-01 3.17811370e-01 -3.46605808e-01\\n-3.15025836e-01 4.31215530e-03 1.03976972e-01 -4.71085683e-02\\n3.86347771e-01 -5.04923761e-01 1.05927400e-01 3.70437562e-01\\n5.89779094e-02 6.01219609e-02 2.96730638e-01 -1.82976690e-03\\n-9.01837870e-02 4.68511671e-01 -3.09239864e-01 2.30682120e-01\\n8.18546891e-01 1.50475845e-01 1.11727335e-01 2.43089959e-01\\n2.11021915e-01 3.61621529e-01 5.19757628e-01 6.64309263e-02\\n-5.40051349e-02 3.13445985e-01 8.08862001e-02 -5.34102678e-01\\n5.98999858e-02 -1.23933665e-01 -3.10005188e-01 -3.35645407e-01\\n6.11220777e-01 5.68055332e-01 -4.47500706e-01 -1.65165246e-01\\n-7.89969340e-02 -1.58537954e-01 1.00487009e-01 -1.92023173e-01\\n-8.22602492e-03 -1.30474493e-01 5.37045240e-01 7.11301267e-02\\n2.90197492e-01 4.91534054e-01 -1.64511874e-01 -4.43735898e-01\\n-1.85743198e-01 2.29479551e-01 8.81615803e-02 4.73395318e-01\\n-1.35520011e-01 2.53864318e-01 -8.35350826e-02 1.94172055e-01\\n8.89730155e-02 2.37372562e-01 5.62381148e-02 8.29307139e-02\\n8.96887332e-02 1.97853982e-01 3.18511665e-01 4.76835132e-01\\n2.62257338e-01 4.93539751e-01 3.69106650e-01 1.44840896e-01\\n3.76099467e-01 5.81250787e-01 5.47044337e-01 1.68123513e-01\\n-6.20140396e-02 9.49617326e-02 -5.14575951e-02 -3.35023925e-02\\n2.55214185e-01 3.66325080e-01 8.98271240e-03 9.29829717e-01\\n4.06665325e-01 1.94113061e-01 6.03087783e-01 -6.15728021e-01\\n-3.81379694e-01 -8.86271149e-03 3.97574782e-01 -3.44745696e-01\\n-1.01260170e-01 7.86595885e-03 -2.01251730e-01 2.65177310e-01\\n-4.67189640e-01 -1.37610495e-01 1.69832502e-02 1.35059208e-01\\n1.70240909e-01 -7.98280314e-02 -2.63140261e-01 -4.07074280e-02\\n-2.55898029e-01 -1.86952397e-01 -4.20287907e-01 4.50580474e-03\\n-3.61526370e-01 -1.69221908e-01 -7.69357458e-02 -1.66921988e-01\\n1.44792069e-02 -3.64602894e-01 -8.29534456e-02 1.27974302e-01\\n2.67222732e-01 -6.47255778e-02 -7.04291686e-02 -7.55188689e-02\\n2.39006802e-01 2.82088369e-01 4.55630034e-01 -6.53474629e-02\\n9.26105082e-02 -8.05288106e-02 -3.27515155e-01 1.14725232e-01\\n1.50283068e-01 1.46232262e-01 1.49276480e-01 3.40471148e-01\\n-3.00007701e-01 -9.04826894e-02 1.87536001e-01 3.56028885e-01\\n-4.38774288e-01 7.20675141e-02 -5.89230619e-02 4.14417088e-01\\n1.48312181e-01 1.08790696e-01 -1.82789579e-01 4.10246328e-02\\n-1.41170785e-01 -4.46988970e-01 2.32626691e-01 -2.02016696e-01\\n-1.54758189e-02 2.35146135e-01 2.74719626e-01 2.60188431e-01\\n-2.81836510e-01 2.05715708e-02 3.21958214e-02 2.69169807e-01\\n9.91170928e-02 3.04218620e-01 -3.92484307e-01 -1.73890188e-01\\n-2.23935038e-01 1.37210250e-01 -2.58660048e-01 4.38885838e-02\\n-5.03137186e-02 2.55316883e-01 -3.00136139e-03 3.49168740e-02\\n2.83447593e-01 -9.33436751e-02 -1.82714626e-01 -1.74732357e-01\\n-3.30901802e-01 -3.04423541e-01 1.59958392e-01 -1.66674152e-01\\n2.56993413e-01 -3.89913112e-01 -1.77325845e-01 -8.62925425e-02\\n-8.61917734e-02 -3.63377959e-01 2.49271430e-02 5.52995950e-02]]',\n", + " 'Über unseren Kunden Our client delivers sustainable positive impact to all their client projects. Their experts create, design, develop and operate software-centric solutions. Ihr Aufgabenbereich Develop innovative web and mobile applications, using state-of-the-art tools and agile methodologies. Work closely with a multidisciplinary team of business analysts, architects and developers. Be involved in the complete project lifecycle, from requirements analysis to final delivery. Ihr Profil You hold a MSc or BSc from a leading university or institute of technology. You already have some experience in developing Java or .Net applications from internships or course-related activities. You are passionate about technology and software engineering. You are familiar with the fundamentals of underlying technologies such as web-based user interfaces, relational and non-relational databases, application security, and communication protocols. You have a good command of English and either French or German (depending on working location). Ihre Chance Did you get your attention and you are looking for a new challenge? Then send your complete application documents to jobs@oneagency.ch Ort: Zürich Spezialisierung:Sprachen: Job ID: 7422',\n", + " '[\"Innovation\", \"Operations\", \"Positivity\"]',\n", + " '[\"MSC Software\", \"Database Application\", \"Tooling\", \"Relational Databases\", \"Requirements Analysis\", \"Activism\", \"Agile Methodology\", \"Application Security\", \"Sustainability\", \"Communications Protocols\", \"Java (Programming Language)\", \"Mobile Application Software\", \"User Interface\", \"Software Engineering\", \"Finalization\"]',\n", + " \"['English', 'Afrikaans', 'Ojibwa']\"],\n", + " ['40',\n", + " 'director data solutions (data science, analytics, bi)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " 'www.epam.com',\n", + " '[[-3.63576472e-01 3.57174784e-01 5.07355809e-01 -5.48212882e-03\\n5.64902782e-01 -1.19120434e-01 -2.35726312e-02 9.34738442e-02\\n-6.98652416e-02 -3.91176641e-01 -1.88871220e-01 -2.82527417e-01\\n-3.73633429e-02 1.24194644e-01 1.59064069e-01 5.19433975e-01\\n1.78467378e-01 2.64663640e-02 -1.10854633e-01 4.56562936e-01\\n1.39203668e-03 -2.45336741e-01 -3.10287029e-02 8.10639977e-01\\n4.50094044e-01 -2.30896268e-02 -1.04203254e-01 -1.07893810e-01\\n-2.68140197e-01 -2.60504425e-01 3.83764803e-01 -8.66251811e-03\\n-1.37470037e-01 -4.10729587e-01 1.52139425e-01 1.95020616e-01\\n-2.65017360e-01 3.57901789e-02 -1.82937056e-01 1.61129028e-01\\n-6.02907658e-01 -3.46736491e-01 9.21063870e-02 9.60852392e-03\\n-3.54666591e-01 -3.43335092e-01 3.75835225e-03 -7.57036507e-02\\n1.07695475e-01 6.56459928e-02 -5.31843722e-01 3.21593881e-01\\n-3.86054009e-01 -3.17948818e-01 3.79210651e-01 7.03781605e-01\\n2.37147808e-01 -6.08083248e-01 -4.50720906e-01 -4.28188950e-01\\n-4.05985303e-02 -8.18517245e-03 1.01541199e-01 -2.91344702e-01\\n2.54490733e-01 -6.88513070e-02 -4.16915417e-02 4.31582749e-01\\n-8.37191463e-01 -1.11519285e-01 -3.46323788e-01 1.49987414e-02\\n-3.73601586e-01 8.21090937e-02 -4.87527013e-01 -1.49978161e-01\\n-2.49165408e-02 5.47002792e-01 -4.06412408e-03 6.16804548e-02\\n-2.45684981e-01 3.56585741e-01 -2.66190618e-01 2.92696953e-01\\n3.90459269e-01 2.66707301e-01 4.12747204e-01 4.33283806e-01\\n-4.92573231e-01 4.92667913e-01 2.37961337e-01 -3.69400442e-01\\n2.23092467e-01 1.89509273e-01 4.09380972e-01 2.49189973e-01\\n1.15164340e-01 2.40416646e-01 -1.36352330e-01 1.13388419e-01\\n2.60390848e-01 -2.41345167e-01 6.99251890e-04 -1.43603370e-01\\n9.35209468e-02 -4.57718223e-02 -3.96828428e-02 9.69252661e-02\\n-3.46354514e-01 3.51971835e-01 1.24566942e-01 -3.42785060e-01\\n-2.26371184e-01 -5.47077239e-01 -3.79174948e-02 2.06458718e-02\\n-1.29408985e-01 2.18585640e-01 1.61656931e-01 4.34981324e-02\\n2.24770606e-01 -2.13504359e-02 7.98708722e-02 9.60955918e-01\\n-2.85473987e-02 6.37478083e-02 -1.11079186e-01 4.03968930e-01\\n2.07094014e-01 -2.02397063e-01 1.40799105e-01 1.69696689e-01\\n-1.25749648e-01 -1.20663397e-01 -2.78630793e-01 5.03458798e-01\\n-1.29321799e-01 -1.00997604e-01 -1.73379511e-01 1.81229249e-01\\n-6.25076070e-02 -4.86429155e-01 7.68918395e-01 -3.29318047e-02\\n1.69656605e-01 -4.41816561e-02 3.22743580e-02 -3.76124270e-02\\n-2.57316232e-01 2.66678154e-01 9.70636308e-02 2.68386364e-01\\n-2.98201054e-01 -2.65694052e-01 -1.03485934e-01 2.58003533e-01\\n-2.76387453e-01 4.26306576e-02 -2.10560083e-01 -1.17770478e-01\\n2.27768123e-01 2.19993636e-01 -4.84100312e-01 2.88047910e-01\\n-1.05338834e-01 -1.01922177e-01 -6.26790673e-02 2.17401415e-01\\n-1.89853683e-01 1.48522496e-01 -2.53829546e-02 -4.45276946e-02\\n6.12195373e-01 2.09691718e-01 4.70938206e-01 2.14108601e-02\\n3.34042132e-01 -1.62109628e-01 1.72921091e-01 1.33339286e-01\\n-5.25081635e-01 2.93162525e-01 -7.18049146e-03 -2.31386930e-01\\n1.01210251e-01 -6.15820885e-02 4.18209672e-01 -3.00219595e-01\\n-6.76040575e-02 -2.58910656e-01 -5.28843760e-01 -4.17608559e-01\\n-1.58833474e-01 -3.16899270e-02 3.28903764e-01 -4.63445902e-01\\n-6.60011843e-02 2.39427358e-01 -5.53481519e-01 -3.14814031e-01\\n2.22031474e-01 4.00162876e-01 1.49216279e-01 6.07748069e-02\\n-1.25214204e-01 -6.95024788e-01 1.68055277e-02 -4.47393239e-01\\n-3.60933781e-01 3.86893563e-02 -3.88820797e-01 -5.54974005e-02\\n-1.64673448e-01 8.65983777e-03 -5.38832918e-02 3.11082136e-02\\n-3.77855808e-01 9.47088003e-03 5.43735810e-02 8.83491412e-02\\n2.42242381e-01 1.12591743e-01 -3.25078785e-01 5.18395245e-01\\n-2.73491830e-01 5.08152246e-01 2.55798817e-01 -1.04347563e+00\\n6.59130096e-01 2.37191960e-01 3.88494832e-03 -2.07685888e-01\\n3.99278671e-01 -5.56560874e-01 -1.73200630e-02 1.20178558e-01\\n-3.30115408e-01 -3.39684188e-01 2.27272734e-01 -2.89476454e-01\\n-3.77326965e-01 6.34552717e-01 8.64861459e-02 3.03729791e-02\\n4.13930535e-01 -3.42465878e-01 -2.04319745e-01 -9.85281616e-02\\n-1.66472077e-01 -1.98359847e-01 -6.89279616e-01 2.25726128e-01\\n-1.66356787e-01 -5.60674965e-01 -2.13929117e-01 -4.91146982e-01\\n-3.31083715e-01 -4.39136207e-01 -2.17616439e-01 1.29038215e-01\\n1.51739269e-01 1.54084891e-01 -1.59278855e-01 6.49946257e-02\\n3.74720171e-02 -6.73535645e-01 -2.01205164e-02 1.81192458e-01\\n5.21772861e-01 3.69460076e-01 1.37424290e-01 -2.55502835e-02\\n1.23238660e-01 5.39965749e-01 -3.08118582e-01 -3.47381353e-01\\n1.81600809e-01 6.14861026e-02 3.82358357e-02 -1.66817367e-01\\n1.77254289e-01 2.27516368e-01 -3.53161871e-01 -1.88353751e-02\\n2.57616192e-02 1.09940022e-01 4.14108992e-01 -7.76331350e-02\\n-2.35931784e-01 -6.69090673e-02 -8.80983099e-02 1.81121036e-01\\n-6.01407766e-01 -1.34985387e-01 6.14408374e-01 1.07549787e-01\\n3.46593671e-02 2.35933483e-01 1.51577964e-01 -4.73943725e-03\\n-2.77936578e-01 -1.54392630e-01 2.82979578e-01 1.29780471e-01\\n2.03095466e-01 7.97969103e-02 -5.81552088e-02 -6.02149248e-01\\n-2.97816086e+00 -2.81738997e-01 1.38198525e-01 -2.70932466e-01\\n2.25718349e-01 -1.55048937e-01 8.40033516e-02 2.43536737e-02\\n-3.42454553e-01 -2.55234633e-02 -7.55898207e-02 -1.11436181e-01\\n-2.63342634e-02 1.97255343e-01 8.47201347e-02 2.72916138e-01\\n1.07790291e-01 -2.31523409e-01 8.72166157e-02 3.98979962e-01\\n-1.39599398e-01 -8.17559123e-01 3.93783078e-02 -3.57803106e-02\\n1.52733803e-01 9.52988118e-02 -5.42426229e-01 2.52403729e-02\\n-2.21357301e-01 -2.44864747e-01 2.12800801e-01 -2.89952457e-01\\n-2.63011187e-01 2.26683915e-01 9.78436694e-02 -1.25880152e-01\\n-1.89698152e-02 -3.89568150e-01 -9.47977379e-02 -5.65385401e-01\\n1.31657943e-01 -7.09523439e-01 4.92211767e-02 -3.07822879e-02\\n6.54996514e-01 -2.33662158e-01 1.43406644e-01 1.22723475e-01\\n1.35282665e-01 1.40361741e-01 1.87812418e-01 8.63178670e-02\\n-3.36443871e-01 -4.18039620e-01 5.72222956e-02 -2.18425006e-01\\n5.05375743e-01 3.48818183e-01 -2.01309383e-01 1.84819072e-01\\n1.88191488e-01 -3.08060467e-01 -4.79638159e-01 -3.44857305e-01\\n-1.51427597e-01 -3.90247218e-02 -8.73349607e-01 -4.38417047e-01\\n-2.77842760e-01 -2.76912153e-01 -1.69310749e-01 8.50647092e-01\\n-2.97605246e-01 -2.81954885e-01 -4.14744094e-02 -6.17894888e-01\\n4.37255383e-01 -1.71161547e-01 1.76777970e-02 -3.90037715e-01\\n-3.04340273e-01 -3.96138370e-01 2.37718731e-01 -5.20069785e-02\\n-3.10413688e-01 -3.28659043e-02 -1.65836737e-02 -2.82137215e-01\\n-3.40690196e-01 -4.71457005e-01 4.43808556e-01 3.56596299e-02\\n3.54390472e-01 2.52752472e-02 5.49847245e-01 -1.56850934e-01\\n4.03702825e-01 1.08992420e-01 -1.20433256e-01 -3.60562086e-01\\n-3.26997153e-02 2.92951651e-02 4.31577444e-01 -1.31469563e-01\\n3.98666039e-02 7.82681927e-02 -3.19005877e-01 4.40836400e-02\\n4.67709392e-01 -5.21735251e-02 8.88154060e-02 -3.96437794e-02\\n1.90095633e-01 -3.98876369e-01 -2.53088355e-01 1.80650160e-01\\n5.49509041e-02 8.47169518e-01 -1.21224644e-02 -4.27707314e-01\\n-2.20542908e-01 5.09986520e-01 3.09595652e-02 3.30880731e-02\\n-1.82330251e-01 1.72347605e-01 -3.05428833e-01 3.95853102e-01\\n1.01552248e-01 -1.54656112e-01 -2.58326709e-01 -1.72562785e-02\\n-1.40908092e-01 1.60292566e-01 1.99239299e-01 9.85759571e-02\\n-9.71991569e-03 -2.70168662e-01 -9.52287018e-02 2.83263028e-01\\n2.27325499e-01 5.30076444e-01 3.25276077e-01 -3.02395105e-01\\n9.08860564e-03 3.59911501e-01 -3.44047666e-01 4.29008007e-01\\n-2.24601761e-01 1.68019399e-01 -7.50843108e-01 -2.40666986e-01\\n-2.11343855e-01 -4.35440540e-01 8.60272050e-02 3.91547948e-01\\n2.22142518e-01 -1.29694402e-01 1.12035275e-01 -5.35770059e-01\\n2.52620637e-01 1.60501391e-01 1.57536358e-01 1.16571665e-01\\n1.89170819e-02 8.03890705e-01 3.34171914e-02 -2.73917437e-01\\n-8.35716501e-02 -1.12008698e-01 -1.69415355e-01 -2.98059821e-01\\n9.15458128e-02 -5.76527953e-01 -1.92599267e-01 4.95775580e-01\\n2.59527802e-01 -2.03906626e-01 -1.56955212e-01 4.00443196e-01\\n9.20535251e-02 -1.63568810e-01 -3.04475069e-01 2.07472444e-02\\n3.46435726e-01 2.22282410e-01 2.07079500e-01 -4.57917213e-01\\n7.59734511e-02 -1.87164042e-02 7.40832984e-02 5.10385811e-01\\n1.19772963e-01 1.73176035e-01 -1.33135423e-01 -1.08106695e-01\\n6.23073220e-01 -3.57004032e-02 -1.26348913e-01 -1.15352079e-01\\n6.24154918e-02 -2.11699843e-01 -4.13245767e-01 1.77062064e-01\\n-2.40097865e-02 -2.91811019e-01 -3.72824371e-02 8.21652859e-02\\n8.49321485e-02 -4.34110686e-02 -5.12257695e-01 -2.21369326e-01\\n-3.50958109e-01 8.81518945e-02 1.05297498e-01 -5.80127895e-01\\n1.06579503e-02 1.40259610e-02 -6.48246050e-01 2.72065580e-01\\n-2.96669994e-02 -5.63102886e-02 1.17539451e-01 2.62004256e-01\\n-1.98571980e-01 -1.58961296e-01 -5.69470599e-02 1.83247149e-01\\n-3.90571833e-01 -2.99286127e-01 -1.75035447e-02 -9.34062004e-01\\n1.71853587e-01 4.22835574e-02 -8.56328458e-02 2.07117945e-01\\n-5.90059310e-02 -7.98907340e-01 1.95966721e-01 -3.88288200e-01\\n-1.21175379e-01 9.82125327e-02 -2.54017830e-01 -4.51754510e-01\\n1.59220204e-01 -1.10466540e-01 -3.37890506e-01 3.76402617e-01\\n-4.57002968e-01 3.71221989e-01 -5.05173951e-02 1.06210209e-01\\n1.26843914e-01 -1.97136894e-01 1.61136359e-01 -1.57656342e-01\\n-4.97511506e-01 -3.45713317e-01 -4.75287974e-01 -3.89881462e-01\\n-2.83112992e-02 -2.24066168e-01 -9.84957963e-02 -6.42958581e-02\\n5.02590120e-01 1.45264044e-01 -1.26494780e-01 -3.33817512e-01\\n8.38093534e-02 -4.59947467e-01 9.15330350e-02 -1.88771158e-01\\n1.44005820e-01 -1.86749101e-01 2.21076518e-01 8.69511515e-02\\n2.67118096e-01 -3.71050954e-01 5.65755606e-01 -2.12933272e-01\\n-4.30961728e-01 -2.27934867e-01 1.18013928e-02 3.93436179e-02\\n4.40360397e-01 -4.04491425e-01 1.28662929e-01 2.76422024e-01\\n1.65384710e-01 -5.06761596e-02 1.80182651e-01 -2.21774384e-01\\n-1.85506806e-01 2.66259015e-01 -5.72373748e-01 2.21453711e-01\\n8.73465538e-01 6.74107745e-02 8.12394693e-02 2.64265060e-01\\n2.05502063e-01 3.32948625e-01 5.54694653e-01 -1.85809255e-01\\n-3.73299271e-02 3.71729910e-01 5.94576448e-02 -5.00359714e-01\\n-1.31443113e-01 -2.26514846e-01 -8.33870173e-02 -3.87444139e-01\\n6.19335592e-01 2.95332998e-01 -5.06209493e-01 -1.62708551e-01\\n-1.52464896e-01 -1.78997070e-01 4.44298476e-01 5.68569116e-02\\n-2.18178272e-01 1.29952803e-01 5.14284611e-01 -9.06663239e-02\\n5.07833958e-01 5.09405673e-01 -1.50221258e-01 -2.76394367e-01\\n-1.01828560e-01 2.35024661e-01 9.29994434e-02 3.31323534e-01\\n-8.53290781e-02 2.42065117e-01 4.02137935e-02 1.16411746e-01\\n-6.93861693e-02 7.96105266e-02 2.03276500e-01 5.57515770e-04\\n3.37550342e-01 4.46677841e-02 4.34267879e-01 4.32017863e-01\\n1.36831060e-01 4.14835811e-01 3.73750865e-01 -7.88264349e-03\\n3.76029909e-01 7.24507511e-01 3.35191429e-01 1.08177342e-01\\n1.50184901e-02 1.72399312e-01 1.07857168e-01 -6.51382208e-02\\n2.26049751e-01 4.18588281e-01 2.70249337e-01 8.94623458e-01\\n3.61055255e-01 3.82852554e-01 8.54125142e-01 -7.14063406e-01\\n-4.31648016e-01 -2.99029201e-02 6.46532059e-01 -4.24276710e-01\\n1.77340001e-01 1.83080971e-01 -1.69395387e-01 4.18025792e-01\\n-4.67446864e-01 -2.29021832e-01 5.58743440e-02 -1.22290947e-01\\n-5.06795943e-03 -1.37165979e-01 -8.23666900e-02 9.55618024e-02\\n-2.17605338e-01 -2.50391006e-01 -2.72849858e-01 -1.47425115e-01\\n-2.85533369e-01 6.34590536e-02 -3.36760394e-02 -9.75857452e-02\\n-1.67869851e-01 -3.55607152e-01 -1.75099179e-01 -8.56222883e-02\\n4.62106764e-01 -1.07539520e-01 -1.98552281e-01 -1.37285903e-01\\n2.61022866e-01 2.62023568e-01 6.33481145e-01 1.13468617e-01\\n1.51598603e-01 -2.82794178e-01 -2.37514406e-01 1.56066239e-01\\n1.21818386e-01 1.07063122e-01 2.46666297e-02 4.25145686e-01\\n-2.42717028e-01 -1.44384369e-01 4.34923954e-02 2.01778218e-01\\n-3.31542850e-01 -1.17973886e-01 -1.69854075e-01 1.13670230e-02\\n-7.16096312e-02 3.01677704e-01 -1.82160527e-01 4.24347892e-02\\n-1.76178515e-01 -6.07760906e-01 4.85590965e-01 -2.50517309e-01\\n-2.42493987e-01 -6.80154040e-02 3.62749308e-01 2.90805757e-01\\n-1.79727092e-01 5.68774715e-02 -9.17389244e-02 1.02060691e-01\\n4.40541506e-02 4.12335694e-01 -1.80485606e-01 -8.48594904e-02\\n-3.53601456e-01 3.13965261e-01 -5.67597374e-02 1.32554322e-01\\n2.00751312e-02 4.86556530e-01 3.36720236e-02 2.44152397e-02\\n3.67322087e-01 1.62006635e-03 -3.23244572e-01 -3.76704454e-01\\n-2.98058152e-01 -7.05660507e-02 1.00875124e-02 -5.33213019e-02\\n1.50426149e-01 -3.56803864e-01 -1.04211606e-02 -3.09646189e-01\\n-1.04591265e-01 -4.94546026e-01 -1.97232664e-01 -8.55736807e-02]]',\n", + " 'Join us at one of the fastest growing Platform Software Engineering Organizations in the world! With over twenty years’ experience of crafting market leading software, our business has been rapidly evolving and is now a global player in solving business challenges and developing tailor made cutting edge solutions. These challenges require a highly skilled workforce imagining, designing, engineering, and delivering software, through to business consulting services & customer experiences, which are changing the world around us. Within EPAM we establish a consultancy branch to help top-tier clients solve their most complex business and technology issues and to advise them on new technologies. As a Big Data Solution Architect, you will be responsible for conducting activities associated with selling core business consulting capabilities to leading organizations from different branches. Responsibilities Drive European Big Data Projects and provide technical guidance and solutions Develop proposals for implementation and design of scalable big data architecture Participate in customer workshops and presentation of the proposed solutions Design, implement, and deploy high-performance, custom applications at scale on Hadoop Define and develop network infrastructure solutions to enable partners and clients to scale NoSQL and relational database architecture for growing demands and traffic Define common business and development processes, platform and tools usage for data acquisition, storage, transformation, and analysis Develop roadmaps and implementation strategy around data science initiatives including recommendation engines, predictive modeling, and machine learning Review and audit of existing solution, design and system architecture Perform profiling, troubleshooting of existing solutions Create technical documentation Drive new business and get involved in pre-sales activities whilst overseeing and managing Big Data Architects and remote team members who are involved in key projects Requirements Solid experience in a Technical Leadership role Experience of driving large scale Big Data Architecture projects Consultancy background is strongly desired as there is a strong focus of managing senior customer relationships at a technical and business level Hands on technical/architecture experience with major big data technologies and frameworks including but not limited to Hadoop, MapReduce, Pig, Hive, HBase, Oozie, Mahout, Flume, ZooKeeper, MongoDB, and Cassandra Hands on experience of knowledge of programming and scripting languages such as Java, Python, Scala Experience with big data solutions developed in large cloud computing infrastructures such as Amazon Web Services, Elastic MapReduce or Pivotal Cloud Foundry Experience in client-driven large-scale implementation projects Data Science and Analytics experience is a plus (Machine Learning, Recommendation Engines, Search Personalization) Technical team leading and team management experience, deep understanding of Agile (Scrum), RUP programming process Strong experience in applications design, development and maintenance Solid knowledge of design patterns and refactoring concepts Practical expertise in performance tuning and optimization, bottleneck problems analysis Experience in Object-Oriented Analysis and Design Fluent oral and written English We offer Experience exchange with colleagues all around the world Competitive compensation depending on experience and skills Regular assessments and salary reviews Develop integration modules for interacting with new systems and applications Opportunities for self-realization Friendly team and enjoyable working environment Corporate and social events',\n", + " '[\"Leadership\", \"Troubleshooting (Problem Solving)\", \"Infrastructure\", \"Friendliness\", \"Management\", \"Integration\", \"Presentations\", \"Imagination\", \"Team Management\", \"Socialization\", \"Written English\", \"Consulting\"]',\n", + " '[\"NoSQL\", \"Tooling\", \"Apache Cassandra\", \"Advising\", \"Programming (Music)\", \"Performance Profiling\", \"Agility\", \"Apache Zookeeper\", \"Joint Application Design (JAD)\", \"Interactivity\", \"Analytics\", \"Project Architecture\", \"Machine Learning\", \"High Performance Computing\", \"Distributed Design Patterns\", \"Scale (Map)\", \"Application Development Languages\", \"Development Review\", \"Scala (Programming Language)\", \"Activism\", \"MapReduce\", \"New Business Development\", \"Python (Programming Language)\", \"Apache Mahout\", \"MongoDB\", \"Object-Oriented Analysis And Design\", \"Levelling\", \"Scrum (Software Development)\", \"Limiter\", \"Systems Architecture\", \"Apache Oozie\", \"Network Infrastructure\", \"Apache Flume\", \"Software Engineering\", \"Project Implementation\", \"NetApp Data Storage\", \"Recommendation Engine\", \"Data Science\", \"Web Services\", \"Customer Relationship Building\", \"Storages\", \"Apache Hive\", \"Personalization\", \"Cloud Foundry\", \"Develop Networks\", \"Scalability\", \"Big Data\", \"Amazon Web Services\", \"Predictive Modeling\", \"Technical Documentation\", \"Data Acquisition\", \"Adapter Scripting Language\", \"Auditing\", \"Transformation (Genetics)\", \"Civil Engineering Design\", \"Modulation\", \"Pre-Sales Engineering\", \"Performance Tuning\", \"Proposal Development\", \"Relational Databases\", \"Solution Design\", \"Customer Experience\", \"Apache HBase\", \"AWS Elastic MapReduce (EMR)\", \"Java (Programming Language)\", \"Cloud Computing\", \"Process Driven Development\"]',\n", + " \"['English', 'Slovenian', 'Vietnamese', 'Limburgan', 'Quechua']\"],\n", + " ['146',\n", + " 'research informatics specialist / database developer',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-2.92035639e-01 3.86220425e-01 4.07565117e-01 8.03528912e-03\\n6.32743657e-01 -6.34911731e-02 -7.13283420e-02 4.17888403e-01\\n-1.10924430e-01 -2.67973900e-01 -2.15668246e-01 -2.24999040e-01\\n-9.51278023e-04 1.94311887e-01 2.13638898e-02 5.24191022e-01\\n3.97081226e-01 2.47958452e-02 -1.07248932e-01 3.30916762e-01\\n-3.30548957e-02 -1.68005764e-01 5.43207340e-02 7.30952740e-01\\n4.77414966e-01 1.18765853e-01 -9.08243731e-02 1.52303427e-01\\n-2.36850291e-01 -1.90246642e-01 6.12211466e-01 4.22544740e-02\\n-1.71125948e-01 -2.53742903e-01 1.24197781e-01 1.17972992e-01\\n-3.02852035e-01 2.08643265e-02 -1.27807036e-01 1.18052229e-01\\n-4.71843839e-01 -4.90540043e-02 -1.07134253e-01 -2.71139126e-02\\n-3.27699661e-01 -3.40618908e-01 1.17366455e-01 -4.71054167e-02\\n6.90710768e-02 1.71797335e-01 -4.73424822e-01 1.92021430e-01\\n-3.73874724e-01 -2.34061286e-01 4.04410601e-01 5.89383245e-01\\n3.16265188e-02 -4.71717894e-01 -5.09424150e-01 -3.81161511e-01\\n2.28385478e-01 -1.83073759e-01 1.35912448e-01 -2.52667665e-01\\n5.12115121e-01 3.41269709e-02 4.73963618e-02 2.40403667e-01\\n-6.43390477e-01 -1.24668963e-02 -4.20312077e-01 1.01081878e-01\\n-3.72280717e-01 6.65026903e-03 -3.20138752e-01 -1.68002784e-01\\n-7.05576092e-02 3.29363912e-01 -4.67961021e-02 2.12387070e-01\\n-1.43143982e-01 3.14529419e-01 -2.81715214e-01 3.75292838e-01\\n1.05813578e-01 3.01526666e-01 2.72224456e-01 3.28688741e-01\\n-4.53426301e-01 3.88706475e-01 3.16058874e-01 -2.76486754e-01\\n2.24529997e-01 -2.80239657e-02 3.37568879e-01 1.39754236e-01\\n1.06087431e-01 5.16670085e-02 -1.62723333e-01 1.80539846e-01\\n1.53176695e-01 -1.34741887e-01 -8.05682540e-02 -9.32139233e-02\\n-4.99905981e-02 -1.02646619e-01 5.03224507e-03 2.35374361e-01\\n-4.87447083e-01 5.28153777e-01 1.37164682e-01 -3.20052594e-01\\n-5.57706468e-02 -5.34991384e-01 -8.15507248e-02 5.45640998e-02\\n-1.46221695e-03 1.07917473e-01 1.09547734e-01 2.56524563e-01\\n2.01232120e-01 -9.97447595e-02 1.94927514e-01 7.42993057e-01\\n-8.94927606e-03 -3.15624028e-02 -1.27754673e-01 4.22833323e-01\\n1.05754040e-01 -2.77935684e-01 2.38516688e-01 2.70531535e-01\\n-1.10747561e-01 -3.20461616e-02 -2.98808396e-01 2.71524727e-01\\n-1.44061238e-01 -2.87198782e-01 -2.25069404e-01 2.45411485e-01\\n-4.20720428e-02 -6.17655039e-01 5.80290973e-01 -2.36265272e-01\\n8.30746591e-02 -1.94785267e-01 1.74060129e-02 4.85786796e-03\\n-7.14626312e-02 2.16811165e-01 3.11761767e-01 1.50672302e-01\\n-3.49618167e-01 -3.28268707e-01 -1.47762805e-01 1.25419438e-01\\n-2.97836065e-01 2.15642124e-01 -2.47299969e-01 -2.63554692e-01\\n2.65985250e-01 3.12576741e-02 -4.37349588e-01 4.07057822e-01\\n-1.62746698e-01 -1.64087847e-01 -1.62665278e-01 3.89372498e-01\\n-1.47133335e-01 1.18668340e-01 -1.51080815e-02 -1.95698082e-01\\n5.10320187e-01 1.11569718e-01 2.85446465e-01 -2.45336890e-02\\n2.62920111e-01 -4.39264029e-02 2.96611011e-01 -1.20346956e-02\\n-7.55619526e-01 4.03647900e-01 -1.32230565e-01 -3.02851386e-03\\n9.89387482e-02 -6.11633323e-02 3.91752154e-01 -3.68685126e-01\\n5.93978018e-02 -1.13613598e-01 -2.57384956e-01 -3.07930350e-01\\n-2.17450649e-01 -4.75591198e-02 2.67317057e-01 -4.63357925e-01\\n3.08076255e-02 7.05614761e-02 -6.72998428e-01 -2.41917863e-01\\n1.62964970e-01 3.15787524e-01 1.32746041e-01 1.64464712e-01\\n-2.00396538e-01 -5.93012691e-01 1.52644783e-01 -5.27519226e-01\\n-2.55343199e-01 1.46887481e-01 -2.74865657e-01 1.38676345e-01\\n7.65193999e-02 -1.22246176e-01 -4.67924774e-02 4.87401746e-02\\n-3.23771298e-01 6.80467635e-02 1.78153038e-01 -3.27677988e-02\\n1.93350792e-01 1.61667645e-01 -3.45101297e-01 6.10336721e-01\\n-2.34722286e-01 5.17114043e-01 6.95211291e-02 -9.11433578e-01\\n4.65936661e-01 3.82437170e-01 5.16405106e-02 -3.24068964e-01\\n6.77571058e-01 -2.88225681e-01 -1.93932161e-01 1.47908598e-01\\n-4.18695867e-01 -1.96029708e-01 2.54825950e-01 -2.60639518e-01\\n-2.45324969e-01 6.58198357e-01 2.40361132e-02 3.31235453e-02\\n3.30992162e-01 -8.59492123e-02 -2.61031568e-01 2.91988961e-02\\n-2.39218310e-01 -1.56269670e-01 -6.02594733e-01 -1.43831614e-02\\n-9.01639760e-02 -4.59530234e-01 -1.47435337e-01 -4.87467170e-01\\n-6.72112554e-02 -3.69141549e-01 -7.66722262e-02 1.42204165e-01\\n1.34387746e-01 -1.69114247e-02 -1.02727935e-01 4.32174765e-02\\n-1.45980343e-01 -6.59959674e-01 6.32913336e-02 1.54216260e-01\\n2.32403159e-01 3.25814903e-01 1.30412817e-01 -1.54532976e-02\\n9.86851007e-03 6.42103553e-01 -4.37159359e-01 -3.29093039e-01\\n2.30180621e-01 1.67976260e-01 -3.38462591e-02 -1.35272175e-01\\n9.61650312e-02 2.17474550e-01 -3.56469989e-01 1.49102613e-01\\n-1.74457431e-01 5.74883968e-02 3.62328351e-01 -9.27984342e-02\\n-1.94858298e-01 -2.04539910e-01 -1.43770710e-01 1.66022748e-01\\n-5.32681465e-01 -3.40785861e-01 4.24327970e-01 1.16027907e-01\\n-4.28891331e-02 1.95342422e-01 2.04978779e-01 -4.33392189e-02\\n-3.56114537e-01 -2.48807773e-01 3.18668902e-01 1.16901875e-01\\n1.28991544e-01 1.62663698e-01 -5.23301587e-02 -5.25532603e-01\\n-3.00143528e+00 -8.11149329e-02 5.87056689e-02 -1.52209759e-01\\n4.67640817e-01 -9.94954631e-02 1.63779914e-01 9.09677520e-03\\n-4.31080520e-01 5.51628992e-02 -1.56413168e-01 -2.39156723e-01\\n1.52470931e-01 2.35894680e-01 1.73379391e-01 -2.49986891e-02\\n3.53061073e-02 -2.62085617e-01 7.24097937e-02 4.07846153e-01\\n-1.84075743e-01 -8.45931768e-01 8.87604505e-02 -5.61477654e-02\\n1.88608944e-01 2.86653340e-01 -4.49964195e-01 -1.46928579e-01\\n-3.58343184e-01 -2.83690512e-01 8.31647962e-02 -3.19610238e-01\\n-1.91841424e-01 3.52771759e-01 1.83749259e-01 -3.09100226e-02\\n-6.53880686e-02 -2.97655523e-01 -1.14515357e-01 -5.28890073e-01\\n1.48869023e-01 -7.18941808e-01 4.47421893e-03 -2.08917707e-02\\n7.25778759e-01 -1.65718436e-01 1.70224369e-01 -2.34906748e-03\\n1.43155605e-01 2.50931919e-01 2.04535022e-01 -7.27948248e-02\\n-3.44958365e-01 -2.14178950e-01 -1.87148899e-01 -1.52166069e-01\\n6.31017327e-01 2.33937860e-01 -3.17203283e-01 -5.73028922e-02\\n1.46029919e-01 -3.02116811e-01 -5.39647222e-01 -2.58256018e-01\\n-2.53433466e-01 -1.76352859e-02 -6.51888251e-01 -5.76596260e-01\\n-1.20697245e-01 -1.62599146e-01 1.74302775e-02 6.27195716e-01\\n-3.06280226e-01 -2.05531433e-01 -2.29802459e-01 -6.20781779e-01\\n3.44153166e-01 -2.23517522e-01 4.87934500e-02 -2.20480770e-01\\n-2.04871982e-01 -3.97450328e-01 1.27923384e-01 1.02319032e-01\\n-1.27850443e-01 -7.73301274e-02 6.14074692e-02 -2.25047529e-01\\n-4.43062693e-01 -6.31223202e-01 3.76674026e-01 1.33534059e-01\\n4.03230786e-01 1.28668249e-01 2.04534948e-01 -4.48666848e-02\\n3.35637987e-01 1.21953227e-02 -1.85466558e-03 -4.77652013e-01\\n7.23586231e-02 1.05379954e-01 5.61612606e-01 -1.07055150e-01\\n-1.26236528e-02 -8.76735151e-02 -1.58081710e-01 -7.08372146e-02\\n3.22866559e-01 -1.03925169e-01 1.77090451e-01 -2.16778368e-01\\n3.62610102e-01 -3.51175964e-01 -8.92546475e-02 1.71019062e-02\\n7.61184841e-02 6.64808273e-01 -2.38643475e-02 -3.17440569e-01\\n-9.87115800e-02 4.73976254e-01 -1.35813653e-01 1.62610412e-02\\n-2.15995312e-01 4.63198647e-02 -2.06366360e-01 2.84526646e-01\\n9.81974602e-02 -1.90055132e-01 -1.65627807e-01 4.62927781e-02\\n-1.13532946e-01 2.50194669e-01 2.87854522e-01 3.10139775e-01\\n-5.00103384e-02 -3.52158219e-01 -6.88751563e-02 1.91493332e-01\\n2.75877833e-01 4.24932867e-01 1.51266426e-01 -2.95431376e-01\\n-2.42408179e-02 3.72765809e-01 -1.49522215e-01 3.71442735e-01\\n-4.14337963e-02 1.71590090e-01 -5.73871970e-01 -2.19830126e-01\\n-2.93628931e-01 -2.99599111e-01 1.00657299e-01 3.01959634e-01\\n1.42681688e-01 -1.65320545e-01 1.64791197e-03 -3.97616088e-01\\n1.95063531e-01 1.16284773e-01 2.85268515e-01 -5.34179173e-02\\n-3.54737639e-02 7.89307475e-01 2.06754319e-02 -2.21289277e-01\\n-6.51078522e-02 1.09167799e-01 -1.77158594e-01 -8.95838588e-02\\n9.23587605e-02 -4.64552611e-01 -2.01632023e-01 4.20979977e-01\\n1.66213274e-01 5.81009872e-02 -2.50980854e-01 3.68870229e-01\\n-5.35789691e-02 -2.82408774e-01 -2.31910855e-01 1.57501921e-02\\n2.90084124e-01 1.68188840e-01 2.80701280e-01 -6.24492824e-01\\n7.68230781e-02 -2.21016519e-02 1.21226221e-01 3.07293594e-01\\n6.91603050e-02 3.58635113e-02 -5.77671751e-02 -2.29589790e-01\\n3.74822855e-01 6.28692657e-02 -9.16502923e-02 1.84599429e-01\\n1.38396338e-01 -2.10568637e-01 -3.81462097e-01 -1.03998855e-01\\n-1.42742813e-01 -1.95949554e-01 2.87568457e-02 1.05026685e-01\\n1.30197912e-01 3.01684253e-02 -5.25095224e-01 -1.01510882e-01\\n-3.23402196e-01 1.09685160e-01 -1.18329883e-01 -5.96621513e-01\\n-6.72329543e-03 -7.42948949e-02 -5.57068706e-01 2.06260502e-01\\n-3.27496752e-02 4.30084988e-02 2.79854774e-01 -8.23044032e-03\\n-2.56573379e-01 -2.45864391e-01 2.78400779e-01 1.17217578e-01\\n-2.59666502e-01 -2.27197871e-01 -2.10608542e-02 -9.08997118e-01\\n1.69066265e-01 -1.20041400e-01 -2.41821200e-01 1.26147360e-01\\n2.00095311e-01 -6.89906478e-01 1.62727967e-01 -3.65013838e-01\\n-2.37347081e-01 2.40440723e-02 -2.97475636e-01 -2.83253282e-01\\n1.46413416e-01 -4.31427509e-02 -1.09821014e-01 3.24929595e-01\\n-3.51225019e-01 5.00203967e-01 -8.32446590e-02 2.56317910e-02\\n5.84359281e-03 -2.44014978e-01 4.40727547e-02 -2.68578589e-01\\n-3.82785887e-01 -1.39558673e-01 -1.86697692e-01 -2.91899055e-01\\n-2.70579234e-02 -2.13389054e-01 -1.85109437e-01 6.41344935e-02\\n4.34806228e-01 2.72230133e-02 -3.48896205e-01 -4.80761379e-02\\n7.82155842e-02 -3.80838513e-01 1.66475564e-01 -2.26417214e-01\\n-6.24145195e-02 -1.61212787e-01 3.93589377e-01 1.43099517e-01\\n2.81533360e-01 -2.71564871e-01 4.16806489e-01 -3.40347290e-01\\n-4.27438915e-01 -9.51338857e-02 2.13105395e-01 7.43338652e-03\\n2.70239472e-01 -5.73266506e-01 -1.57410681e-01 4.22321856e-01\\n5.30598871e-02 2.70774197e-02 2.80495763e-01 -2.14619666e-01\\n-1.31270438e-01 2.00026140e-01 -4.50578630e-01 6.26445711e-02\\n8.00182939e-01 3.41739506e-01 2.46006101e-01 1.96972042e-01\\n9.73748788e-02 1.49718255e-01 4.81597155e-01 -5.06434478e-02\\n-1.12329654e-01 4.72215950e-01 1.96130931e-01 -4.78939205e-01\\n-2.43596226e-01 5.00988960e-03 -9.80432928e-02 -4.55826223e-01\\n6.24051213e-01 2.32181132e-01 -4.55539137e-01 -3.23730767e-01\\n-2.11984813e-01 -1.40125230e-01 3.78260553e-01 -9.07403007e-02\\n1.16642639e-01 -1.47345185e-01 3.78307909e-01 3.52733880e-02\\n2.29079783e-01 5.33584416e-01 -1.93880126e-01 -2.05068529e-01\\n-3.65419537e-02 2.87173718e-01 6.95160329e-02 2.86004722e-01\\n-1.18750066e-01 2.79392838e-01 5.09326234e-02 1.99830025e-01\\n-2.21859738e-01 -7.81957731e-02 1.25862524e-01 -2.33776122e-03\\n7.08826035e-02 1.89220488e-01 5.02868295e-01 4.28572476e-01\\n3.46468419e-01 4.13705349e-01 2.90815711e-01 -4.12595496e-02\\n4.66197729e-01 5.95798135e-01 3.22512954e-01 -1.35695606e-01\\n4.64709625e-02 1.71017259e-01 9.53719765e-02 3.86827067e-02\\n2.82550544e-01 3.50124359e-01 -6.73515871e-02 8.43158126e-01\\n2.15488732e-01 4.61969733e-01 5.46828628e-01 -5.44191062e-01\\n-2.68077314e-01 8.39621723e-02 5.83870530e-01 -5.50147057e-01\\n9.00392830e-02 1.82498500e-01 -1.93753436e-01 1.67189538e-01\\n-5.03936410e-01 -2.40676224e-01 -9.81894135e-03 3.43457907e-02\\n9.12998170e-02 -9.18445885e-02 -1.48778334e-01 4.07720506e-02\\n-1.94667816e-01 -1.78049907e-01 -3.80007863e-01 -3.52420330e-01\\n-1.49008065e-01 2.58864947e-02 -6.45438861e-03 -1.82302386e-01\\n-7.50437006e-02 -2.01419562e-01 8.68203491e-03 -5.81890531e-03\\n3.04290116e-01 -8.71132463e-02 -1.68301284e-01 -6.46725520e-02\\n4.11005974e-01 2.15405211e-01 7.54752994e-01 -1.96321711e-01\\n5.32417148e-02 -2.12653160e-01 -1.80869758e-01 8.20325911e-02\\n1.02166981e-01 -1.64127015e-02 -1.40687451e-02 4.97121006e-01\\n-2.39564508e-01 -2.51723200e-01 1.82563737e-02 2.92479098e-01\\n-3.72210145e-01 1.40905790e-02 1.85007975e-03 8.52214918e-02\\n-1.49593338e-01 9.29206535e-02 -2.50450671e-01 2.34969705e-03\\n-1.26638994e-01 -5.10983586e-01 2.72343397e-01 -8.10499638e-02\\n-2.83628851e-01 -6.02121018e-02 4.57553983e-01 2.89178908e-01\\n-2.32480898e-01 -9.15726423e-02 -1.50532722e-01 9.83977988e-02\\n1.52644143e-02 3.08106035e-01 -2.15783507e-01 -2.17502892e-01\\n-3.54185820e-01 1.43992126e-01 -1.63750678e-01 2.09484100e-01\\n8.71235877e-03 5.34455657e-01 8.66147429e-02 2.70550177e-02\\n4.19451654e-01 -1.73587218e-01 -3.03788245e-01 -3.08557689e-01\\n-1.94326743e-01 -9.68829244e-02 -4.10973802e-02 -2.21362859e-02\\n2.92244136e-01 -2.53089726e-01 -1.63649052e-01 -4.19357419e-01\\n-7.52192438e-02 -4.50494349e-01 -4.89210635e-02 1.04292445e-02]]',\n", + " 'We are a Life Science and IT service provider that has been successfully carrying out \\'state-of-the-art\\' projects for international customers for more than 25 years. Our consultants mainly work on our customer\\'s premises, integrated in the customer\\'s project team. We pride ourselves on being a dynamic forward thinking organization and we are looking for like-minded individuals that are driven by ambition and highly motivated by challenging jobs, as well as financial incentives. With our attractive compensation and benefits model, this is a great opportunity to maximize your earning potential. The further development of our colleagues and team members as well as an excellent work atmosphere are amongst the top values of our company. Our group \"Research & Lab IT” is seeking professionals with the below mentioned profile. Mission: The objective of the mission is to support the implementation and maintenance of the Corporate Preclinical Database and related systems for the collection, processing, analysis and registration of all chemical and biological information gathered during projects (e.g. ELN, Inventories, Data Analysis and Visualization). Main tasks: Supports scientists in the definition and maintenance of a standardized data organization and related dictionaries and prepares guidelines for chemical and biological data collection, processing, and analysis Participates to the design, development, implementation, support and maintenance of the corporate preclinical database and related systems (ELN, Inventories, Data Analysis and Visualization) Supports the timely submission (including preparation and curation as needed) of the data to local and corporate databases Manages data in the corporate preclinical corporate database and related systems Designs, develops and maintains tools supporting and automating data workflows from collection to analysis. Maintains software and database documentation. Organizes regular trainings and supports discovery and preclinical staff on the corporate preclinical database and related systems Familiarises himself/herself with the resources available in other parts of the organisation and is aware of the strategic importance of his/her project work with respect to goals. Ensures when needed, the validation of software and databases as required by international regulations. Responsible for the security of sensitive data, takes appropriate actions to prevent unauthorised access from outside or within the company. Manages relationships with solution and resource providers Qualification & Experience: Education: Bachelor or Master degree in Computer Science, Biology, or Chemistry Professional Skills & Experience: Has expertise in Computer Science applied to Life Sciences (Chemistry, Biology, Pharmacology) Is at ease with web software development, database management systems (preferably Oracle) and data analysis, independently of platform or language. Is familiar with configuration and customization of commercial research and preclinical data management systems (preferably Dotmatics software suite) Has at least 3 years of practical experience in industry or academic institutions, in charge of a scientific informatics platform/database development and management of research database for Life Science Has experience in web server and database administration Has experience in IT project management Communication & Interpersonal Skills: Writes internal/external reports and software documentation. Communicates effectively with supervisor or any other scientist relevant to the project as needed. Is able to explain his work to non IT specialists Is capable of making oral communications to international standards. Fluency in English is mandatory, French would be an asset Is able to adapt to a research environment: understanding of scientific issues and their specific requirements. Trains collaborators on the usage of scientific software. May supervise the work of external staff (solution vendors). ',\n", + " '[\"Research\", \"Writing\", \"Adaptability\", \"Professionalism\", \"Collaboration\", \"Management\", \"Supervision\", \"Communications\", \"Integration\", \"Information Gathering\", \"Relationship Management\", \"Consulting\"]',\n", + " '[\"Web Servers\", \"Automation\", \"Pharmacology\", \"Tooling\", \"Accessioning\", \"Computer Science\", \"Life Sciences\", \"Data Management\", \"Collections\", \"Database Development\", \"Informatics\", \"Industrialization\", \"Survey Data Collection\", \"Visualization\", \"Software Suite\", \"Requirements Specifications\", \"Maintainability\", \"E (Programming Language)\", \"Registration\", \"Database Administration\", \"Software Documentation\", \"International Standards\", \"Biology\", \"Management Systems\", \"Corporate Data Management\", \"Electronic Data Processing\", \"Survey Data Analysis\", \"Validations\", \"Systems Design\", \"Chemistry\", \"Service Provider\", \"Software Development\", \"Project Management\", \"Resourcing\", \"Workflows\", \"Curation\", \"Database Management Systems\", \"Commercialization\", \"Data Analysis\"]',\n", + " \"['English', 'Avestan']\"],\n", + " ['122',\n", + " 'application scientist, chemical ionization mass spectrometry',\n", + " 'Thun',\n", + " '',\n", + " '',\n", + " '[[-3.22071165e-01 3.35994661e-01 4.83776540e-01 -6.40972853e-02\\n6.11253023e-01 -7.13514015e-02 -1.14054918e-01 1.98036522e-01\\n1.12699583e-01 -2.06944034e-01 -1.58244222e-01 -3.54309440e-01\\n2.49078125e-02 2.25402951e-01 7.10181594e-02 6.34336233e-01\\n3.25270057e-01 5.24713621e-02 4.69298139e-02 4.38917756e-01\\n9.60446000e-02 -1.46910578e-01 1.38095424e-01 7.59765983e-01\\n3.24976802e-01 -2.94832662e-02 -4.38018888e-02 1.22776538e-01\\n-1.77218154e-01 -2.16217875e-01 5.02378941e-01 9.38742235e-02\\n-2.22176850e-01 -4.03737217e-01 9.49825048e-02 2.32561350e-01\\n-2.25547686e-01 -2.98123956e-02 -1.24865249e-01 1.93640873e-01\\n-6.83146060e-01 -3.22210491e-01 4.83767800e-02 -6.82667047e-02\\n-2.93613076e-01 -3.39217901e-01 1.45096183e-01 -1.12511292e-01\\n2.76587382e-02 1.45025745e-01 -4.27522898e-01 2.11642951e-01\\n-1.87756449e-01 -2.60515660e-01 3.73523861e-01 8.18408966e-01\\n-2.92102545e-02 -5.68019032e-01 -4.50492203e-01 -2.96409249e-01\\n1.07475119e-02 -1.24969650e-02 8.14223215e-02 -3.71924520e-01\\n4.69474673e-01 4.97827865e-02 -3.50979343e-03 2.19129920e-01\\n-7.30725646e-01 -2.13264644e-01 -3.03966403e-01 1.61905855e-01\\n-4.08347398e-01 4.16619927e-02 -1.48494124e-01 -1.34820372e-01\\n-8.88818949e-02 3.99366617e-01 -8.53884891e-02 8.67198110e-02\\n-3.45002525e-02 3.27037930e-01 -2.68398166e-01 3.53007913e-01\\n2.10795075e-01 1.39860064e-01 2.86855876e-01 2.88504630e-01\\n-2.99485713e-01 4.43927169e-01 1.62827209e-01 -2.95417964e-01\\n2.14850798e-01 4.97248173e-02 3.65435719e-01 -5.71940653e-02\\n1.89987376e-01 1.07137293e-01 -3.54181767e-01 2.38421440e-01\\n2.66428292e-01 -2.44015634e-01 3.65765579e-02 -9.35238600e-02\\n6.67725131e-02 2.26250626e-02 -2.73920931e-02 1.54613601e-02\\n-5.24358511e-01 4.52765703e-01 1.46474883e-01 -2.14989126e-01\\n-5.19621857e-02 -5.93617141e-01 -1.56798974e-01 -1.37796532e-02\\n-6.69724271e-02 8.90561342e-02 4.62685786e-02 1.77838862e-01\\n3.26121300e-01 1.20813958e-02 9.50876772e-02 8.72025311e-01\\n2.41289437e-02 8.79597515e-02 -5.67165613e-02 4.61607456e-01\\n5.15877455e-02 -2.40077183e-01 2.97346979e-01 9.03361440e-02\\n-3.11097074e-02 -1.03263885e-01 -2.22860560e-01 2.63914824e-01\\n-1.02852240e-01 -3.23492259e-01 -2.59753287e-01 3.29096258e-01\\n-1.74353197e-02 -4.56009716e-01 5.22334278e-01 -1.96926221e-01\\n7.77562410e-02 -1.05281353e-01 -5.14109358e-02 -3.26890908e-02\\n-1.44234210e-01 2.15448797e-01 1.81884229e-01 1.24584571e-01\\n-2.91880339e-01 -2.07166284e-01 -1.68662578e-01 7.95932636e-02\\n-2.74402499e-01 2.47937605e-01 -2.39675030e-01 -1.61837593e-01\\n2.73200095e-01 1.93460882e-02 -4.42898840e-01 2.58858263e-01\\n-1.01767957e-01 -1.36146277e-01 -8.04063827e-02 4.65727776e-01\\n-2.59148479e-01 2.08761364e-01 2.87646018e-02 -2.04146594e-01\\n6.17075503e-01 4.15205546e-02 2.51093328e-01 -6.53549582e-02\\n2.86037147e-01 -1.47970736e-01 2.42254108e-01 2.09540769e-01\\n-6.48887277e-01 4.47108328e-01 -8.04359540e-02 -1.30039364e-01\\n3.79298851e-02 -1.66308314e-01 5.29851019e-01 -3.41786265e-01\\n-7.15541467e-02 -1.97946444e-01 -3.24780196e-01 -3.81483734e-01\\n-3.14209044e-01 -8.85766521e-02 3.07037562e-01 -3.65383625e-01\\n5.35375997e-02 1.01774052e-01 -5.69337010e-01 -2.89981008e-01\\n2.08624199e-01 2.59375304e-01 2.13857174e-01 1.68030396e-01\\n-2.40718067e-01 -6.50057316e-01 7.35826194e-02 -5.34984350e-01\\n-7.20526129e-02 8.34865049e-02 -2.83299446e-01 2.65487105e-01\\n7.77441487e-02 -4.36626263e-02 -1.96749061e-01 5.85632250e-02\\n-3.24441493e-01 1.49356484e-01 6.86924532e-02 5.87357320e-02\\n2.13346779e-01 1.27405956e-01 -3.84200364e-01 4.62790132e-01\\n-2.50309169e-01 5.30068517e-01 5.39943501e-02 -9.67972815e-01\\n5.16683519e-01 5.74802756e-01 5.30515127e-02 -4.01740909e-01\\n6.12028360e-01 -4.48840499e-01 -2.18429625e-01 1.43864572e-01\\n-3.92809629e-01 -7.81859681e-02 3.13722670e-01 -3.24343204e-01\\n-2.43544191e-01 6.64350629e-01 1.92120746e-01 2.01540589e-01\\n3.75425965e-01 -1.15122199e-01 -1.61432792e-02 1.35955065e-01\\n-1.45501152e-01 -1.76568642e-01 -5.07044435e-01 -7.47955143e-02\\n-1.20463520e-01 -4.73117054e-01 -8.90543759e-02 -4.81914520e-01\\n-1.58354104e-01 -2.90354818e-01 -7.60099813e-02 7.71325678e-02\\n1.90583169e-01 5.43439649e-02 1.46061212e-01 1.96301639e-02\\n-1.07335329e-01 -7.67278850e-01 1.18593358e-01 -1.57433599e-02\\n2.44572103e-01 2.84206092e-01 1.87653422e-01 8.72246325e-02\\n-1.23348963e-02 5.44273973e-01 -5.19644678e-01 -3.17016423e-01\\n8.69193673e-02 6.35529906e-02 -1.75551996e-01 -1.36884004e-01\\n2.58261323e-01 2.67141849e-01 -2.94593900e-01 1.47626251e-01\\n-1.76367611e-01 3.75982672e-02 3.81409824e-01 -2.53120251e-02\\n-2.25336194e-01 -1.46812513e-01 -1.55685738e-01 6.15317933e-02\\n-4.97732550e-01 -2.56312937e-01 2.71816611e-01 1.56659577e-02\\n1.72362819e-01 2.60542303e-01 2.10443199e-01 -5.83785623e-02\\n-3.64409864e-01 -3.83100927e-01 2.14357316e-01 1.83322728e-01\\n-1.80672258e-02 6.76504672e-02 -1.29908741e-01 -6.54375613e-01\\n-2.79908323e+00 -1.23159684e-01 3.50847542e-02 -1.53656602e-01\\n4.65550214e-01 -1.09387070e-01 1.96244806e-01 -8.46396685e-02\\n-4.14233088e-01 1.64728284e-01 -2.14522690e-01 -2.35280752e-01\\n9.66513455e-02 5.62695563e-02 1.90110996e-01 4.68250588e-02\\n-1.06818303e-02 -4.07430887e-01 1.57529533e-01 4.34014946e-01\\n-5.00358976e-02 -7.59915829e-01 1.07479513e-01 4.87836078e-02\\n2.62701094e-01 2.17019558e-01 -5.97976029e-01 -7.68634379e-02\\n-3.27123761e-01 -2.30037183e-01 1.35682285e-01 -3.72972488e-01\\n-1.75831258e-01 2.31695116e-01 2.41476491e-01 -8.81463103e-03\\n-5.15482426e-02 -3.78988206e-01 -8.20081234e-02 -4.45041806e-01\\n7.43470490e-02 -6.34494662e-01 -3.65943983e-02 -7.86084384e-02\\n6.89913750e-01 -1.32354721e-01 2.04089046e-01 1.17671430e-01\\n1.10012017e-01 2.63050109e-01 2.31961489e-01 7.93322474e-02\\n-1.25771239e-01 -2.11531669e-01 -5.65928556e-02 -1.08543336e-01\\n4.80061769e-01 4.26655352e-01 -1.76116854e-01 -1.07978091e-01\\n1.82572436e-02 -3.59977007e-01 -7.17721581e-01 -4.23244908e-02\\n-3.46820623e-01 -5.78375757e-02 -7.69396186e-01 -3.59955430e-01\\n-6.20905459e-02 -2.11180151e-01 -5.68541884e-02 7.70458937e-01\\n-3.83617759e-01 -2.70362854e-01 -2.83906981e-02 -6.00602150e-01\\n3.28278601e-01 -2.22286701e-01 3.72322947e-02 -7.73643926e-02\\n-3.45586002e-01 -4.55108136e-01 1.48932084e-01 -6.09154254e-03\\n-1.60074204e-01 -2.51260817e-01 1.95340980e-02 -1.94570482e-01\\n-4.47593063e-01 -6.62861228e-01 4.03402686e-01 1.07800528e-01\\n3.88790488e-01 -1.27314180e-02 2.01849699e-01 -9.46250558e-02\\n3.28960717e-01 9.95439813e-02 1.17847554e-01 -4.43078339e-01\\n-3.04384679e-02 -1.22414287e-02 5.69319844e-01 -2.56601453e-01\\n-1.59537066e-02 -6.56263530e-02 -3.97187054e-01 -1.36839375e-01\\n2.84766197e-01 -7.85306543e-02 5.17561734e-02 -1.75073758e-01\\n2.64304042e-01 -2.89100647e-01 5.40050771e-03 1.57532096e-01\\n7.65489414e-02 7.85804272e-01 6.28712997e-02 -3.18475664e-01\\n-8.42032731e-02 3.53727639e-01 -1.08276501e-01 9.22434498e-03\\n4.87649217e-02 -7.09222117e-03 -3.20107073e-01 3.88561428e-01\\n-5.38056307e-02 -9.08005387e-02 -2.26392925e-01 -2.58532651e-02\\n-2.41315290e-01 4.11914945e-01 3.72470349e-01 3.22843254e-01\\n-2.25378826e-01 -3.69885445e-01 -1.32335916e-01 3.15627038e-01\\n1.45535111e-01 3.18097115e-01 2.13341445e-01 -2.45503902e-01\\n1.10960584e-02 3.68367732e-01 -1.77435786e-01 2.88998038e-01\\n-1.31619781e-01 8.66411775e-02 -5.51874220e-01 -1.51292235e-01\\n-3.13471854e-01 -3.47445786e-01 1.79899424e-01 4.33494151e-01\\n1.77767158e-01 -1.51875600e-01 1.64088011e-01 -5.00433564e-01\\n2.39484161e-01 1.53381437e-01 1.93355709e-01 -1.35048945e-02\\n-1.69267833e-01 5.87525427e-01 -1.05123676e-01 -9.58819315e-02\\n5.59639037e-02 -3.30140628e-02 -2.89241403e-01 -3.77500772e-01\\n1.63769469e-01 -5.40195405e-01 -1.60197005e-01 3.98302853e-01\\n1.51308447e-01 -1.69362992e-01 -2.08383128e-01 3.18847239e-01\\n-3.85672152e-02 -2.93277323e-01 -3.83144975e-01 5.28388098e-02\\n3.46008599e-01 1.76176548e-01 2.76199818e-01 -5.93356729e-01\\n1.36092573e-01 -3.31758671e-02 -5.41806966e-02 4.04620796e-01\\n-8.13515484e-02 7.18372390e-02 -4.35290575e-01 -3.05844545e-01\\n3.99080575e-01 -3.93500552e-02 -5.99032752e-02 -1.40683949e-02\\n5.55592403e-02 -2.32374951e-01 -2.94043571e-01 4.44828197e-02\\n-2.51961462e-02 -2.44572848e-01 -2.79224068e-02 1.34612918e-01\\n7.48762265e-02 -3.06981094e-02 -5.54868817e-01 -1.32118642e-01\\n-7.72951692e-02 1.74364805e-01 -2.53934823e-02 -4.29614663e-01\\n-7.62047842e-02 -1.45285934e-01 -4.00995523e-01 2.15944916e-01\\n-6.63143098e-02 -1.86884701e-01 2.11304754e-01 -1.59485079e-02\\n-2.73282498e-01 -2.20773190e-01 1.90122157e-01 1.66708380e-01\\n-3.21528465e-01 -2.35284761e-01 -1.25715539e-01 -8.77228022e-01\\n1.23679921e-01 -8.38333368e-02 -1.15303196e-01 2.43682876e-01\\n1.94252953e-02 -8.22788477e-01 2.11156607e-01 -2.09233195e-01\\n-2.74240002e-02 -8.52119252e-02 -2.64390945e-01 -2.24004343e-01\\n7.98411220e-02 1.93789322e-02 8.32750201e-02 2.76013434e-01\\n-2.44845241e-01 4.74416971e-01 -1.55817166e-01 -9.30967629e-02\\n-9.56344083e-02 -2.40649492e-01 2.41330832e-01 -3.32357526e-01\\n-3.92562091e-01 -1.56487405e-01 -2.26712108e-01 -2.20085114e-01\\n-2.16433525e-01 -1.89405039e-01 -1.64508730e-01 3.49242017e-02\\n4.08531964e-01 5.83917871e-02 -2.20097825e-01 -1.49208412e-01\\n8.54256302e-02 -3.25875998e-01 1.03538074e-01 -1.10601783e-01\\n1.26354754e-01 -5.08532189e-02 1.33721307e-01 2.46858120e-01\\n1.36273786e-01 -3.07841659e-01 3.82927120e-01 -4.35529888e-01\\n-4.98367727e-01 -1.56510159e-01 1.69563949e-01 -1.53531507e-03\\n3.58934402e-01 -3.51289213e-01 -2.13212013e-01 3.15565348e-01\\n-5.50941154e-02 -8.40158984e-02 3.95422101e-01 -2.20634609e-01\\n-2.09009275e-01 1.79741129e-01 -4.30357277e-01 2.04788595e-01\\n8.30743194e-01 3.25510085e-01 1.74998604e-02 1.40910268e-01\\n6.87763542e-02 3.28109562e-01 5.60177028e-01 -5.66273369e-02\\n6.07278338e-03 3.23202938e-01 2.27420866e-01 -4.17084992e-01\\n-1.96479812e-01 -1.53758824e-01 -1.02760829e-03 -4.64945912e-01\\n4.90882397e-01 3.19201469e-01 -2.79180944e-01 -2.14740127e-01\\n-2.88104683e-01 -2.05734491e-01 2.90126204e-01 -3.75250317e-02\\n6.63378611e-02 -5.83293512e-02 5.44876158e-01 -6.81349337e-02\\n1.47334024e-01 5.05152822e-01 -2.01801166e-01 -2.61362076e-01\\n-1.75539464e-01 2.03189760e-01 1.61162660e-01 4.23275590e-01\\n-1.12217359e-01 3.14255595e-01 -1.33299038e-01 1.83682948e-01\\n-1.95814580e-01 8.43852535e-02 1.50031224e-01 -2.68648528e-02\\n-8.52944255e-02 2.45723158e-01 4.08645660e-01 4.48904812e-01\\n4.09840196e-01 3.92711341e-01 2.93104261e-01 2.12088395e-02\\n5.03329754e-01 5.60217023e-01 2.39641666e-01 4.66271304e-02\\n5.99698536e-03 1.61154702e-01 9.89949405e-02 3.42507884e-02\\n4.10280645e-01 2.69631863e-01 1.11378603e-01 9.16861653e-01\\n2.13574246e-01 4.45441425e-01 7.33426094e-01 -6.49558902e-01\\n-3.66797984e-01 5.95637560e-02 4.31729555e-01 -5.58744371e-01\\n3.28731090e-02 1.96207166e-01 1.88608933e-02 2.29131699e-01\\n-5.27038932e-01 -1.88437074e-01 2.89539713e-02 1.14500336e-01\\n1.81479037e-01 -9.59135368e-02 -1.35038614e-01 2.36179009e-01\\n-2.82172322e-01 -2.62147784e-01 -4.30314124e-01 -2.33607978e-01\\n-2.64321178e-01 8.98233149e-03 -3.46091688e-02 -1.02093562e-01\\n-5.33997826e-02 -2.47440755e-01 8.31302404e-02 -6.23095147e-02\\n3.76782954e-01 -1.79653257e-01 -1.76410705e-01 -8.13263729e-02\\n7.08274484e-01 1.16025582e-01 5.89377761e-01 -9.00212824e-02\\n9.20626372e-02 -2.85596848e-01 -2.28821635e-01 1.02161586e-01\\n1.76186681e-01 1.87908232e-01 5.90837048e-03 4.18738365e-01\\n-2.38294661e-01 -6.98183253e-02 4.01096791e-02 3.08326930e-01\\n-2.65782952e-01 -1.15349948e-01 -1.95698112e-01 -6.09375015e-02\\n-3.13130207e-02 1.85329616e-01 -1.64328247e-01 1.20316356e-01\\n3.74259166e-02 -5.07009983e-01 3.77264142e-01 -4.61399332e-02\\n-3.29699874e-01 1.29200742e-02 4.16063130e-01 2.55316556e-01\\n-8.87309909e-02 -3.49061452e-02 -1.18126377e-01 1.64474785e-01\\n2.93811113e-02 3.67938459e-01 -1.11943677e-01 -4.43264812e-01\\n-4.05919790e-01 1.78947031e-01 -2.66234577e-01 1.12964772e-03\\n6.46589026e-02 4.32083786e-01 -2.48052292e-02 8.70360062e-02\\n4.95590389e-01 -1.95871115e-01 -2.87681282e-01 -4.21056271e-01\\n-1.87379614e-01 -2.11080045e-01 -1.12561956e-01 -5.73445633e-02\\n1.99748904e-01 -3.09953570e-01 -2.45363235e-01 -4.99587715e-01\\n8.14421773e-02 -2.94173717e-01 -3.18146124e-03 -3.42493095e-02]]',\n", + " 'Headquartered in Thun, Switzerland, TOFWERK aims to bring the advantages of our time-of-flight technology to new markets and applications. With team members in Switzerland, Germany, China and the United States, we offer a family of end-user research products and custom instrument designs for OEM partners and research laboratories. TOFWERK is seeking an analytical scientist to develop and demonstrate new applications of our chemical ionization (CI) time-of-flight mass spectrometers (TOFMS), with emphasis on the Vocus PTR-TOF. The scientist will work within our Applications Department in support of our Vocus PTR-TOF and API-TOF product teams. He/she will be independently tasked with increasing the breadth and quality of analyses based on these instruments. The scientist will be active in relevant scientific communities in order to stay updated on trends and advances and to engage potential customers and collaborators. As the company’s expert on CI-TOFMS applications, he/she will communicate the capabilities of TOFWERK technology to prospective customers; lead product demonstrations; represent TOFWERK at international scientific meetings; support the Marketing Department in the production of technical promotional material; and formally present data in conference presentations, research reports, application notes, and peer-reviewed publications. He/she will work with other members of the Applications Department to ensure that all analyses at TOFWERK utilize the best available methods and technology. Based on his/her knowledge of the field and use of TOFWERK technology, the application scientist will provide suggestions and feedback to the Software and R&D Departments regarding potential short- and long-term product improvements and developments. Requirements PhD in Analytical Chemistry or related field 4+ years of experience using mass spectrometry for applied research or sample analysis, including method development Ability to work independently in the laboratory, including: experiment design, sample preparation, operation of scientific equipment, and data interpretation Strong background in data analysis, including statistics and spectral interpretation Interest in interacting with customers and prospective customers Confident and effective communicator Willingness to travel up to 30% per year for scientific conferences and customer site visits at European and international locations Fluency in English Desirable Experience and Expertise Use of any of the following: PTR-MS, chemical ionization MS, TOFMS, real-time trace gas analyzers Expertise in any of the following fields: biogenic VOCs, forensics, fragrances, flavors, breath analysis, atmospheric science Experience running and characterizing prototype scientific equipment Familiarity with any of the following: high vacuum systems, ion optics, ion-molecule reaction chemistry Competence in laboratory electronics and use of diagnostic equipment We Offer Exciting projects in state-of-the-art mass spectrometry An open culture that encourages new ideas A creative international team Flexible work times A bright, spacious workplace on the river in beautiful Thun We look forward to receiving your application at jobs@tofwerk.com. Please send all attachments in pdf format.',\n", + " '[\"Research\", \"Collaboration\", \"Communications\", \"Operations\", \"Presentations\", \"Creativity\"]',\n", + " '[\"Real Time Data\", \"Product Demonstration\", \"Chemical Ionization\", \"Research Reports\", \"Sample Preparation\", \"Data Presentation\", \"Interactivity\", \"Analytics\", \"Statistics\", \"Vienna Development Methods\", \"Prototype (Manufacturing)\", \"Spectrometer\", \"Activism\", \"Mass Spectrometry\", \"Analytical Chemistry\", \"Instrumentation\", \"Vacuum Systems\", \"Productivity Improvement\", \"IText (Free PDF Software)\", \"Atmospheric Sciences\", \"Electronics\", \"Optics\", \"Survey Data Analysis\", \"Applied Research\", \"Receivables\", \"Chemistry\", \"Sample Analysis\", \"Experience Design\", \"Sampling Design\", \"Residual Gas Analyzer\", \"Peer Review\", \"Application Notes\", \"Long-Term Potentiation\", \"User Research\", \"Application Programming Interface (API)\", \"Integrated Product Team\"]',\n", + " \"['English', 'Kannada']\"],\n", + " ['4',\n", + " 'software engineer fullstack (66)',\n", + " 'Basel, BS',\n", + " '',\n", + " '',\n", + " '[[-2.52661198e-01 2.91340828e-01 4.71698552e-01 -5.21422885e-02\\n4.27083135e-01 -1.98471665e-01 -2.21223384e-03 4.32452738e-01\\n-6.25165403e-02 -3.49663585e-01 -5.25599532e-03 -2.97615170e-01\\n-1.34053707e-01 8.45072344e-02 1.67076200e-01 4.05939609e-01\\n3.02087337e-01 1.43080398e-01 -2.26444244e-01 4.20307934e-01\\n9.49407965e-02 -3.22934873e-02 1.62525013e-01 6.52309537e-01\\n3.02122772e-01 -7.98991024e-02 -8.19858834e-02 -8.62564221e-02\\n-2.14111686e-01 -3.20390999e-01 4.27318215e-01 3.90289761e-02\\n-2.88709477e-02 -3.44807297e-01 1.41980901e-01 -1.39483251e-04\\n-1.91043332e-01 -6.84119985e-02 -1.91666037e-02 1.73823237e-01\\n-4.90008861e-01 -2.85763085e-01 7.63083175e-02 5.24346996e-03\\n-2.65376985e-01 -2.85741389e-01 7.78749064e-02 -1.35885432e-01\\n1.05810434e-01 7.26194903e-02 -4.53298628e-01 2.43731618e-01\\n-2.41717473e-01 -3.01241577e-01 3.22144598e-01 5.40960550e-01\\n4.48405594e-02 -3.69874924e-01 -5.09716153e-01 -2.81160653e-01\\n7.79912919e-02 -5.45273349e-02 -2.86159646e-02 -3.30859661e-01\\n3.15949082e-01 2.45662574e-02 3.58437635e-02 4.02281195e-01\\n-8.46842527e-01 -6.94765300e-02 -2.36830279e-01 -1.54657662e-01\\n-3.58341873e-01 -9.93641838e-02 -2.44421616e-01 -1.05392799e-01\\n-4.96278740e-02 4.06165659e-01 6.33917674e-02 -1.33027993e-02\\n-1.46803588e-01 2.79519081e-01 -2.08108425e-01 2.95434445e-01\\n2.70761490e-01 1.86769366e-01 3.08466792e-01 3.27461004e-01\\n-4.36358690e-01 4.08703297e-01 2.10934758e-01 -3.18337560e-01\\n3.09903562e-01 6.11575581e-02 4.57084775e-01 2.01437846e-02\\n6.12716600e-02 1.54032975e-01 -2.47241110e-01 3.30733836e-01\\n1.64766535e-01 -2.77547538e-01 -9.12744273e-03 -6.73582777e-02\\n2.13367492e-02 2.09088437e-03 1.47738546e-01 4.27360296e-01\\n-3.34277093e-01 3.79221380e-01 1.01541668e-01 -2.27127448e-01\\n-1.22823931e-01 -4.14688140e-01 -9.03473124e-02 4.16709203e-03\\n3.16045694e-02 1.60141125e-01 2.89132148e-01 1.71167448e-01\\n1.97294593e-01 2.58136019e-02 1.77900344e-01 8.27402413e-01\\n-7.84624442e-02 1.12298682e-01 -2.87299186e-01 2.89795041e-01\\n1.59167230e-01 -2.40541860e-01 2.06541419e-01 2.48482913e-01\\n6.90852404e-02 -8.80433619e-02 -1.78068042e-01 3.68175000e-01\\n-7.14984983e-02 -1.32285282e-01 -3.60561758e-01 1.61023706e-01\\n-2.06426203e-01 -3.99489373e-01 5.09921789e-01 9.01886448e-02\\n2.28715986e-01 -3.55813839e-02 -1.80466324e-02 -1.16511866e-01\\n-1.52005643e-01 2.67807484e-01 3.96129377e-02 2.12820888e-01\\n-3.47638607e-01 -1.97198570e-01 -2.35667393e-01 2.14010462e-01\\n-2.55877376e-01 -8.78204871e-03 -1.99449480e-01 -1.28179371e-01\\n2.73111761e-01 1.04681551e-01 -2.86753237e-01 2.59929299e-01\\n-6.42313510e-02 -6.20915033e-02 -1.04118269e-02 3.20613682e-01\\n-1.77337512e-01 2.91332304e-01 -3.70046943e-02 -1.06444746e-01\\n5.71091056e-01 1.20903522e-01 -5.66534698e-03 -4.98932153e-02\\n4.32716489e-01 -1.19094878e-01 1.58059478e-01 9.52709392e-02\\n-6.99429750e-01 3.27940583e-01 -2.43085567e-02 -1.12970285e-02\\n-2.65937913e-02 -7.30284527e-02 3.39734077e-01 -2.84511268e-01\\n3.26642990e-02 -1.60441324e-01 -2.26372510e-01 -3.06181550e-01\\n-2.45190024e-01 2.17065997e-02 4.10689086e-01 -3.83797646e-01\\n-2.17247099e-01 1.46659121e-01 -5.27814627e-01 -4.22203615e-02\\n2.55421728e-01 1.31116703e-01 9.92372185e-02 1.67340547e-01\\n-1.74087286e-01 -5.74309468e-01 -6.49698079e-04 -4.26307976e-01\\n-3.05759996e-01 1.05884321e-01 -2.82251239e-01 2.53983885e-01\\n1.14717580e-01 4.19587642e-02 -1.27234638e-01 1.38102531e-01\\n-2.61578828e-01 -7.24911317e-02 1.78400561e-01 5.12505975e-03\\n1.30036801e-01 1.16697848e-02 -3.90422791e-01 4.32870567e-01\\n-1.94841355e-01 4.80785489e-01 1.40390515e-01 -9.57356572e-01\\n4.34268117e-01 2.97679454e-01 -2.69513149e-02 -3.33080351e-01\\n5.44360995e-01 -3.12324673e-01 3.11213732e-02 4.15359624e-02\\n-3.45458448e-01 -3.15360308e-01 1.63066477e-01 -1.98660806e-01\\n-2.13674337e-01 6.11923695e-01 1.18149295e-01 5.49802892e-02\\n2.61104345e-01 -2.82495230e-01 -1.04939982e-01 9.56430584e-02\\n-9.97480005e-02 -2.52275765e-01 -4.51018989e-01 -5.46461977e-02\\n-3.68859246e-02 -4.77956355e-01 -1.73334301e-01 -3.74757588e-01\\n-2.32377112e-01 -3.64775956e-01 -2.85064161e-01 3.49901021e-01\\n2.09144205e-01 7.95316175e-02 -1.12674087e-01 7.77264833e-02\\n-1.60462767e-01 -5.54777443e-01 -1.94967594e-02 9.66622233e-02\\n4.04980958e-01 1.75971806e-01 5.41237965e-02 -7.78104663e-02\\n-4.10031117e-02 5.14570832e-01 -2.35636592e-01 -3.24639022e-01\\n1.45159677e-01 2.42801845e-01 -3.69735062e-04 -1.07626230e-01\\n8.75834301e-02 4.04390424e-01 -1.09427318e-01 9.61275771e-02\\n-3.29903997e-02 -1.97526470e-01 3.98960084e-01 -6.15054742e-04\\n-2.66753644e-01 -1.72343493e-01 -5.35078607e-02 1.83588684e-01\\n-5.93308806e-01 -2.40798295e-01 4.90474045e-01 1.38074994e-01\\n1.53479800e-01 1.31292313e-01 2.72800505e-01 -8.65018964e-02\\n-1.71504557e-01 -2.10111022e-01 1.26100659e-01 1.94049999e-01\\n-1.53746158e-02 1.18416145e-01 -1.57734796e-01 -5.75946510e-01\\n-3.28983784e+00 -1.67890966e-01 1.63039684e-01 -3.43851566e-01\\n7.12629855e-02 -1.41559869e-01 4.82230261e-02 -8.54786634e-02\\n-2.79847890e-01 6.56108707e-02 -1.76268578e-01 -1.16412595e-01\\n1.95763171e-01 3.33515346e-01 1.00061640e-01 2.32437968e-01\\n2.28413433e-01 -1.97042793e-01 -2.81939469e-02 2.63993680e-01\\n-1.22500420e-01 -6.54655099e-01 2.01799974e-01 -1.38554171e-01\\n2.63179332e-01 2.26831377e-01 -3.98774326e-01 -9.09645706e-02\\n-2.39750355e-01 -1.54580161e-01 -2.31513903e-02 -2.57851720e-01\\n-1.57912731e-01 2.30240479e-01 1.24586292e-01 -9.52480882e-02\\n1.31351560e-01 -3.13306153e-01 -1.63428083e-01 -4.70422804e-01\\n1.63627028e-01 -6.85592890e-01 4.98620234e-02 -1.36011913e-01\\n6.94096446e-01 -3.21187973e-01 6.94179460e-02 7.03140199e-02\\n1.43370569e-01 1.06555223e-01 2.23999172e-02 -1.34916119e-02\\n-2.35152587e-01 -2.14812934e-01 -7.75521062e-03 -2.30866224e-01\\n5.83833575e-01 4.91643727e-01 -1.22885861e-01 -1.03744097e-01\\n3.54994237e-02 -3.15967619e-01 -4.41259325e-01 -3.36458027e-01\\n-1.52411565e-01 -2.76507318e-01 -5.68648934e-01 -3.70228708e-01\\n-1.34429425e-01 -1.21797487e-01 -2.33954489e-01 5.33569038e-01\\n-3.19306791e-01 -3.83111417e-01 -7.42548471e-03 -5.36993206e-01\\n1.51730508e-01 -1.75762802e-01 4.24854904e-02 -9.90104228e-02\\n-3.15703779e-01 -4.40683544e-01 5.56113161e-02 5.66388480e-03\\n-2.10352406e-01 -2.71799237e-01 7.89190158e-02 -1.99387401e-01\\n-2.70528913e-01 -4.64668810e-01 4.19529378e-01 1.44411489e-01\\n3.43211114e-01 1.36082649e-01 4.33146983e-01 4.71034944e-02\\n3.77308309e-01 -1.06475532e-01 6.83269501e-02 -4.89971876e-01\\n1.90757751e-01 4.72105592e-02 5.68628550e-01 -2.18407810e-01\\n6.24055564e-02 1.25987470e-01 -2.38274872e-01 -1.36404216e-01\\n4.02323186e-01 4.53272685e-02 3.02919298e-02 -2.59161592e-01\\n2.83204705e-01 -3.65843087e-01 -2.52539188e-01 1.40497804e-01\\n7.16386884e-02 6.24479890e-01 -1.62101090e-02 -4.05895948e-01\\n-2.97240853e-01 4.05141920e-01 -1.30117849e-01 -7.35546649e-02\\n-1.73248947e-01 1.25842661e-01 -1.48197606e-01 1.94794223e-01\\n1.14209384e-01 -1.05074316e-01 -2.94743925e-01 -2.42042951e-02\\n-6.89804852e-02 3.61009300e-01 2.23230436e-01 6.76110834e-02\\n-3.09056789e-03 -2.87134349e-01 1.02707975e-01 8.80126134e-02\\n5.00294343e-02 2.94215888e-01 1.18657947e-01 -1.85870543e-01\\n2.26914063e-02 3.50865662e-01 -6.73251301e-02 1.80596620e-01\\n-1.69547617e-01 9.36819799e-03 -4.42869931e-01 -1.87557936e-01\\n-2.49570608e-01 -3.24562967e-01 8.86857137e-02 2.42893904e-01\\n7.96200112e-02 6.94159511e-03 -8.21208507e-02 -4.34365332e-01\\n3.81010652e-01 4.25193757e-02 2.46532768e-01 1.68721050e-01\\n6.62562549e-02 4.85059589e-01 1.81749016e-02 -7.32814074e-02\\n-1.01586856e-01 4.37689275e-02 -1.83770955e-01 -2.19849825e-01\\n-7.14604557e-02 -4.29596484e-01 -7.05733448e-02 4.64751840e-01\\n1.08982868e-01 -2.77075022e-01 -2.45839551e-01 1.73351660e-01\\n-1.77170709e-02 -2.69950181e-01 -2.25081027e-01 -3.58867720e-02\\n1.71453640e-01 1.26780733e-01 2.73966610e-01 -4.77558732e-01\\n8.56664125e-03 5.50842471e-03 -6.34101704e-02 5.05018890e-01\\n3.94870490e-02 6.11993596e-02 -2.02162728e-01 -2.23265499e-01\\n4.37338054e-01 2.72182524e-02 -9.50374827e-02 -1.30024284e-01\\n1.10110760e-01 -1.83376789e-01 -4.33969676e-01 6.14574887e-02\\n1.80661865e-02 -1.74016833e-01 1.40793294e-01 3.89998481e-02\\n1.96289033e-01 1.35578871e-01 -4.89324361e-01 -3.19967031e-01\\n-2.74560273e-01 -3.12390290e-02 -3.51759866e-02 -5.16898334e-01\\n4.21347395e-02 1.27632199e-02 -5.75805306e-01 1.36575907e-01\\n-2.52895564e-01 -7.14417696e-02 1.14865497e-01 -1.09191071e-02\\n-3.94615650e-01 -8.84900987e-02 2.16748312e-01 2.20772699e-02\\n-1.72156245e-01 -3.59519809e-01 1.78249210e-01 -9.19939160e-01\\n2.16029510e-01 7.40602389e-02 -1.43870503e-01 1.10059150e-01\\n-6.86769933e-02 -6.88874662e-01 7.03646690e-02 -3.56125623e-01\\n-1.09355912e-01 -1.39710642e-02 -1.91461653e-01 -4.10730243e-01\\n1.03031881e-01 -8.47137570e-02 -2.89234102e-01 4.26760793e-01\\n-3.60278308e-01 4.57923323e-01 -5.23178205e-02 1.36208728e-01\\n1.73563734e-01 -3.51434827e-01 1.45354331e-01 -4.25059378e-01\\n-5.14502883e-01 -1.27484277e-01 -2.64302641e-01 -2.72145450e-01\\n2.34596506e-02 -2.86607087e-01 -1.25794828e-01 7.00091571e-02\\n3.50913525e-01 6.56246394e-02 -2.27340654e-01 -2.85037577e-01\\n-1.09483190e-02 -3.63316715e-01 5.42797223e-02 -5.57803810e-02\\n-1.27287451e-02 -8.62931311e-02 3.87318879e-01 -4.68068570e-02\\n1.01089060e-01 -3.10760647e-01 3.92743707e-01 -2.80064285e-01\\n-3.43231738e-01 -4.54714373e-02 1.55467123e-01 -4.04416472e-02\\n2.99525619e-01 -5.34754634e-01 4.04175632e-02 2.76358157e-01\\n1.03983894e-01 9.34928209e-02 3.05064321e-01 -7.75863528e-02\\n5.19825146e-03 1.69243142e-01 -3.66903245e-01 1.50199443e-01\\n7.59473026e-01 6.91714734e-02 1.37899220e-01 1.03146322e-01\\n1.20831192e-01 3.56276751e-01 4.68363822e-01 9.02455300e-02\\n-2.55987704e-01 2.90326953e-01 2.07426876e-01 -5.16534328e-01\\n-1.01321682e-01 -3.33618373e-04 -1.89987719e-01 -3.41925651e-01\\n6.58473194e-01 4.62791592e-01 -3.37839305e-01 -2.92513847e-01\\n-1.42086238e-01 -2.10395932e-01 2.05774426e-01 -8.75431225e-02\\n1.02813266e-01 -1.57204568e-01 4.17543828e-01 -7.10886717e-02\\n2.12964296e-01 5.62987447e-01 -2.09338367e-01 -4.04266059e-01\\n-7.02206641e-02 1.91815957e-01 4.27436829e-02 5.31830847e-01\\n-2.45456815e-01 2.61112273e-01 -4.49776575e-02 2.73538698e-02\\n-2.11568624e-01 1.67944625e-01 1.37272403e-01 2.52548978e-02\\n2.29122162e-01 7.14291334e-02 4.42114532e-01 4.97713625e-01\\n3.25682282e-01 4.42290545e-01 2.72404492e-01 -4.65516746e-02\\n4.61910099e-01 6.67540431e-01 3.30091238e-01 1.73180774e-01\\n-5.82228154e-02 3.36642712e-02 1.40343547e-01 3.65000442e-02\\n5.07156134e-01 3.45619142e-01 1.55715555e-01 9.21753526e-01\\n4.01556253e-01 2.96178341e-01 7.00247467e-01 -5.43763161e-01\\n-2.82415211e-01 8.08796585e-02 4.66351718e-01 -3.48771542e-01\\n-2.27893978e-01 1.39800310e-01 -1.47683054e-01 1.66230977e-01\\n-4.04926836e-01 -2.15770900e-01 -6.09422587e-02 2.00098321e-01\\n6.18890412e-02 -5.30508235e-02 -1.83819205e-01 8.87029693e-02\\n-1.61237374e-01 -2.23324835e-01 -4.04815674e-01 -5.08910120e-02\\n-2.10276768e-01 -2.52170246e-02 -1.45304993e-01 -6.40969127e-02\\n-1.84847385e-01 -4.13412511e-01 -1.19285583e-01 -1.16891377e-01\\n3.07207823e-01 -2.34992251e-01 -1.43497035e-01 -1.57286078e-01\\n1.48725495e-01 3.33080471e-01 4.90718514e-01 5.38405031e-04\\n1.23106144e-01 -1.51178136e-01 -2.39027381e-01 1.99679047e-01\\n5.37649989e-02 1.23586729e-01 8.10266286e-02 4.52320158e-01\\n-2.30134025e-01 5.26545644e-02 1.23304233e-01 3.99100006e-01\\n-4.07245249e-01 -7.45904371e-02 -1.07617781e-01 1.79468825e-01\\n1.48988113e-01 6.99768290e-02 -2.47023314e-01 1.16659641e-01\\n-2.35913068e-01 -5.35414755e-01 2.45828897e-01 -2.20704049e-01\\n-5.97756356e-02 7.25758150e-02 2.29903340e-01 1.73440114e-01\\n-2.67747462e-01 -6.69185743e-02 -7.07359016e-02 2.85431266e-01\\n1.12976208e-01 3.36066842e-01 -2.92727232e-01 -2.94228137e-01\\n-1.41258195e-01 1.73309490e-01 -1.25657469e-01 8.59063789e-02\\n-1.21141359e-01 3.70698035e-01 6.33440763e-02 1.08864456e-01\\n3.24026018e-01 -5.05934209e-02 -1.83044434e-01 -2.51925051e-01\\n-2.06059024e-01 -2.38846600e-01 2.82127205e-02 4.22320738e-02\\n2.04465702e-01 -3.07245076e-01 9.18174535e-03 -6.28547966e-02\\n-1.19864434e-01 -2.93938160e-01 -1.45340711e-02 -3.10192853e-02]]',\n", + " 'You will build state of the art apps to support the companies key initiative: increase speed and agility of innovation! Our customer benefits from many years of successful company history and is one of the strongest players in the retail market and strongly growing in the food service provider business. Today, they have operations in many European countries and have recently extended businesses into the US. The company is now building up an internal engineering team with the goal to increase the speed and agility of innovation. For this, we are searching a highly motivated and experienced leader and expert in the role of: Software Engineer - Fullstack 80-100% (F/M) Software engineering for you is more about a clean codebase, paradigms and algorithms than languages, frameworks or platforms. You have chosen your favorite stack, but you are able to get stuff done in any environment you need to and with every change you leave the codebase better off than before. You will be one of the first members of a new software engineering team and will work on many different projects and touch many different systems: from the apps backend (REST webservices) to the demand forecasting service and the cash register. Your key Responsibilities Create new and work on existing systems across a wide range of projects (e.g. a clean and elegant API layer spanning across all legacy systems, backend APIs consumed by the web and mobile apps, production tooling for the machine learning models etc.) Improve and maintain the production environment, for example by adding monitoring and alerting (DevOps) Work closely together with the frontend engineering and data science teams your personality Software development experience in a general-purpose programming language BSc degree in Computer Science, similar technical field of study or equivalent practical experience Ability to quickly get up to speed in any programming language or system if needed Ability to tackle problems outside your comfort zone Excellent spoken and written communication skills in English additional Desirable skills and experiences Experience in any of the following programming languages: Java, C/C++, C#, Python, JavaScript, Rust or Go Experience working with one or more from the following: web application development, Unix/Linux environments, distributed and parallel systems, service oriented architectures, REST APIs, developing large software systems Experience working in teams following an agile software development methodology Basic knowledge of German 9 out of 12 points on “The Joel Test” (https://www.joelonsoftware.com/2000/08/09/the-joel-test-12-steps-to-better-code/) your perspectives This will be one of the few opportunities to play a major role in a key initiative in a large international organization, right from the beginning! You will be a key player to build products for a customer base of more than 5 million people across 5 countries. You will have access to resources of a big corporate but get the freedom of working in an uncomplicated environment. The company does fully support flexible working models e.g. home office, if you wish to benefit from this. Finally, personal development will be supported to develop required skills - and an attractive compensation package, reflecting the importance of this role, will be offered.',\n", + " '[\"Innovation\", \"Operations\", \"Written Communication\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Codebase\", \"Accessioning\", \"Agility\", \"KM Programming Language\", \"Computer Science\", \"Consumables\", \"Service-Oriented Architecture\", \"Mobile App\", \"Cash Register\", \"Software Systems\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Layering\", \"Maintainability\", \"E (Programming Language)\", \"Python (Programming Language)\", \"Linux\", \"Software Engineering\", \"Machine Learning Methods\", \"Agile Software Development\", \"Data Science\", \"C (Programming Language)\", \"Library For WWW In Perl\", \"AD Model Builder (ADMB)\", \"International Organizations\", \"C# (Programming Language)\", \"Personalization\", \"JavaScript (Programming Language)\", \"Software Development Methodologies\", \"Demand Forecasting\", \"Finalization\", \"Reflectivity\", \"Service Provider\", \"Software Development\", \"Distributed Computing Environment\", \"Language Experience Approach\", \"Algorithms\", \"Additives\", \"Rust (Programming Language)\", \"Resourcing\", \"Personality Development\", \"Food Services\", \"Java (Programming Language)\", \"Unix\", \"Application Programming Interface (API)\", \"Web Application Development\", \"Custom Backend\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Punjabi']\"],\n", + " ['82',\n", + " '.net architect (application engineer)',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.nicollcurtin.com',\n", + " '[[-2.77217567e-01 2.89839715e-01 5.29598236e-01 -6.21583387e-02\\n3.98836106e-01 -2.10048586e-01 -5.37508726e-02 3.74461085e-01\\n-5.22886664e-02 -3.67497116e-01 -1.33016601e-01 -3.30079228e-01\\n-8.94003212e-02 5.67607321e-02 1.58059210e-01 4.52714711e-01\\n2.89078385e-01 1.62977338e-01 -1.99557692e-01 3.48954409e-01\\n2.14374438e-01 -5.96668832e-02 1.64667815e-02 6.95411623e-01\\n3.58438194e-01 -1.38753755e-02 -1.06783956e-01 -1.45283537e-02\\n-2.37601131e-01 -2.10243940e-01 3.96388948e-01 -5.73602915e-02\\n-1.02193996e-01 -3.54205400e-01 1.31292373e-01 1.35677774e-02\\n-2.48996168e-01 -4.13854606e-02 -1.08379997e-01 8.17748755e-02\\n-5.04058123e-01 -1.90807402e-01 2.02140033e-01 -3.33082303e-02\\n-2.47849777e-01 -3.46525848e-01 1.85244799e-01 -1.09285206e-01\\n7.04950988e-02 1.58888213e-02 -5.11423886e-01 2.62716323e-01\\n-2.79419214e-01 -2.23631516e-01 3.31522048e-01 5.76538682e-01\\n7.48500228e-02 -4.89465594e-01 -4.93222475e-01 -2.60538965e-01\\n1.01410344e-01 -6.14074767e-02 -7.20584474e-04 -2.90649384e-01\\n3.55966657e-01 7.07449242e-02 1.15387999e-02 4.45038348e-01\\n-7.97423840e-01 -3.49497464e-06 -1.90901354e-01 -1.46643864e-02\\n-3.32649171e-01 -1.99640431e-02 -2.85807341e-01 -1.04496881e-01\\n-9.31318402e-02 4.98434544e-01 5.05429469e-02 2.27870177e-02\\n-2.06173658e-01 2.69312978e-01 -2.46594682e-01 2.90955991e-01\\n2.78877109e-01 1.47279680e-01 2.32220307e-01 2.26330683e-01\\n-4.60852057e-01 4.83339429e-01 3.01514506e-01 -3.26901525e-01\\n3.17267835e-01 6.63912073e-02 4.45897102e-01 8.49138424e-02\\n9.12592560e-02 1.70135140e-01 -1.61058068e-01 2.15048507e-01\\n2.32233390e-01 -7.76559934e-02 -9.08861533e-02 -1.00439966e-01\\n-6.06423877e-02 5.72257452e-02 -3.32787745e-02 2.98190415e-01\\n-3.47945541e-01 3.99873644e-01 1.49821907e-01 -2.41778046e-01\\n-1.17385037e-01 -5.75659394e-01 -1.18806787e-01 -1.07952178e-01\\n9.45220664e-02 1.68034315e-01 2.03328252e-01 1.60680458e-01\\n2.07608700e-01 -5.92987007e-03 1.36178255e-01 8.38019073e-01\\n-1.83298811e-02 5.18632382e-02 -1.91096097e-01 2.79196262e-01\\n1.53127238e-01 -2.37827182e-01 2.41155490e-01 2.45672151e-01\\n3.04310750e-02 -1.56097844e-01 -1.41412303e-01 2.82748640e-01\\n-1.46926893e-02 -2.12223142e-01 -2.63675630e-01 1.56362370e-01\\n-2.08994672e-01 -3.76038164e-01 5.33634305e-01 1.43723488e-01\\n1.52815044e-01 5.87506332e-02 4.22104858e-02 -2.12394014e-01\\n-1.44930601e-01 1.97488368e-01 -9.09886882e-02 1.77064925e-01\\n-2.25431696e-01 -2.18595579e-01 -2.82465070e-01 2.55896211e-01\\n-1.09602824e-01 5.30641526e-02 -1.27279654e-01 -1.78324059e-01\\n3.76547813e-01 1.69561401e-01 -3.04954350e-01 2.92908221e-01\\n-2.79672239e-02 -4.43778699e-03 -1.46856561e-01 2.01965362e-01\\n-1.29083127e-01 1.52653113e-01 -1.05005711e-01 -8.17149803e-02\\n5.67761660e-01 1.44170329e-01 2.13210315e-01 1.37130152e-02\\n3.21541667e-01 -7.38379508e-02 1.30998090e-01 4.46136445e-02\\n-6.12304688e-01 3.42696637e-01 -1.36326533e-02 -6.95748329e-02\\n6.13088645e-02 6.62015006e-03 3.65833342e-01 -2.34029308e-01\\n-2.92289481e-02 -1.23286918e-01 -5.03494263e-01 -3.73512089e-01\\n-1.94451943e-01 1.78960375e-02 4.10926580e-01 -4.68375593e-01\\n-1.07612960e-01 1.82187200e-01 -5.32036483e-01 -7.86114782e-02\\n3.24092776e-01 2.54331678e-01 1.79609835e-01 1.21466823e-01\\n-2.16724947e-01 -5.80973983e-01 5.80464900e-02 -4.91349787e-01\\n-2.43896455e-01 1.33783162e-01 -3.00331920e-01 1.43070579e-01\\n8.44848976e-02 -2.94395015e-02 -1.24519967e-01 1.26152849e-02\\n-2.87266403e-01 -6.52124807e-02 1.85165823e-01 1.13828383e-01\\n2.77876288e-01 1.16151214e-01 -3.87622386e-01 5.59955776e-01\\n-2.44481862e-01 4.24633741e-01 1.35565922e-01 -9.82336819e-01\\n5.15408576e-01 3.23481590e-01 -6.15634024e-02 -3.53396446e-01\\n5.20220399e-01 -3.09124082e-01 4.71989252e-02 1.00925267e-01\\n-4.20706719e-01 -2.55177498e-01 2.53580183e-01 -2.44351059e-01\\n-2.36173257e-01 5.60709238e-01 9.19784009e-02 -1.44727463e-02\\n2.65014708e-01 -2.22925141e-01 -2.79210269e-01 -2.00354420e-02\\n-1.14960738e-01 -1.50883541e-01 -5.48880219e-01 7.26100653e-02\\n-8.39713961e-02 -5.89317203e-01 -8.41096789e-03 -4.35290724e-01\\n-3.07334661e-01 -3.43949705e-01 -3.13119918e-01 2.81962544e-01\\n1.22720972e-01 9.95305181e-02 9.27858113e-04 4.54771072e-02\\n-1.46370009e-01 -5.65563619e-01 5.05978940e-03 1.34829059e-01\\n3.65357995e-01 2.17861474e-01 9.22503769e-02 -1.05313018e-01\\n-7.01914430e-02 5.71117222e-01 -2.35626519e-01 -1.18002579e-01\\n1.47160739e-01 1.35923818e-01 1.14199042e-01 -8.87939259e-02\\n1.18692778e-01 3.28659624e-01 -1.96035653e-01 1.60392616e-02\\n-1.37071684e-01 -3.99413407e-02 3.38175833e-01 -3.15334424e-02\\n-3.36391538e-01 -1.82481647e-01 -6.70583397e-02 2.59411961e-01\\n-5.93362391e-01 -1.54179797e-01 5.27554870e-01 1.66673377e-01\\n7.36620426e-02 1.86633185e-01 2.23418862e-01 -1.64477199e-01\\n-1.77820653e-01 -2.71499276e-01 2.08930984e-01 1.98075846e-01\\n1.01527400e-01 3.02180871e-02 -1.97187543e-01 -6.02563083e-01\\n-3.12314677e+00 -2.38485590e-01 1.24076970e-01 -3.26017857e-01\\n2.52547175e-01 -1.23909064e-01 1.33848414e-01 -8.05420354e-02\\n-1.94138542e-01 -5.27137183e-02 -1.58113405e-01 -1.26786768e-01\\n2.41080046e-01 2.20932394e-01 2.99642384e-02 3.00314903e-01\\n1.15839787e-01 -1.15487956e-01 2.01753806e-02 2.46437147e-01\\n-2.45266616e-01 -6.84551418e-01 2.23525509e-01 -1.65344492e-01\\n2.19794139e-01 2.58904010e-01 -4.34040487e-01 -1.30635411e-01\\n-2.67108202e-01 -1.99804485e-01 2.15588912e-01 -3.16179335e-01\\n-8.40368941e-02 2.40635186e-01 1.95138320e-01 -1.87197179e-01\\n1.69326007e-01 -2.69676656e-01 -3.59480828e-02 -5.97270906e-01\\n1.15368396e-01 -6.14643931e-01 1.64939687e-02 -1.40377313e-01\\n6.88034773e-01 -3.50832373e-01 1.46292642e-01 1.75526738e-01\\n1.25824973e-01 2.55853832e-01 8.54886174e-02 -5.67090176e-02\\n-2.72885472e-01 -2.77194560e-01 2.06445809e-02 -1.47642374e-01\\n4.76229936e-01 5.62881947e-01 -1.46868274e-01 5.20715229e-02\\n7.95199648e-02 -3.02151144e-01 -5.04585326e-01 -3.11107337e-01\\n-2.09103987e-01 -1.88513637e-01 -6.64752305e-01 -4.12698716e-01\\n-1.74641266e-01 -1.78623885e-01 -1.76352710e-01 5.92804313e-01\\n-2.39332527e-01 -3.41497689e-01 4.49308082e-02 -5.57951629e-01\\n1.55020803e-01 -1.07408836e-01 4.26449738e-02 -2.18824670e-01\\n-2.07561135e-01 -5.36308229e-01 3.67159657e-02 -6.94933757e-02\\n-2.67566711e-01 -1.76807970e-01 2.49444344e-03 -2.21316606e-01\\n-2.63881803e-01 -5.33197463e-01 4.03519303e-01 6.64024502e-02\\n3.39802682e-01 -1.02575263e-02 3.43940526e-01 2.86048763e-02\\n3.62918705e-01 -1.54797494e-01 -3.45398858e-02 -5.02829671e-01\\n1.77574560e-01 3.29826809e-02 6.14766181e-01 -1.93672463e-01\\n1.72873154e-01 1.86916187e-01 -1.89391270e-01 -1.03334218e-01\\n4.00124609e-01 -8.09469298e-02 9.14266631e-02 -3.41966093e-01\\n2.57915318e-01 -4.29205269e-01 -3.14281613e-01 8.76969546e-02\\n2.72443574e-02 5.84875941e-01 -2.14010924e-02 -3.99705231e-01\\n-2.49953613e-01 4.32854414e-01 -7.14806765e-02 -1.57312989e-01\\n-2.77764678e-01 1.26202017e-01 -2.45527729e-01 1.09274760e-01\\n3.70225683e-02 -1.12720288e-01 -3.45913023e-01 -1.15454033e-01\\n-6.65118322e-02 2.64274269e-01 2.32080609e-01 5.49479760e-02\\n4.36759219e-02 -3.45446885e-01 -2.91243792e-02 1.55392662e-01\\n1.79067954e-01 3.95247698e-01 1.01968288e-01 -1.44869477e-01\\n5.63337617e-02 3.13773364e-01 -2.64748216e-01 1.82911918e-01\\n-2.27240220e-01 4.24392968e-02 -4.97517824e-01 -3.50392997e-01\\n-2.20052972e-01 -3.55409324e-01 1.14473263e-02 2.68516481e-01\\n1.91935554e-01 -3.03233471e-02 -8.71386286e-03 -3.77004057e-01\\n3.36553276e-01 -3.53182182e-02 1.78840607e-01 2.99249947e-01\\n1.41576119e-02 5.27564764e-01 8.78939629e-02 -9.69001427e-02\\n-1.57673135e-01 -5.08276522e-02 -2.03856468e-01 -1.64021224e-01\\n-3.61196138e-02 -4.46404666e-01 -1.44621566e-01 5.51428497e-01\\n1.01355083e-01 -2.47274190e-01 -1.35976300e-01 3.47578198e-01\\n-5.95543496e-02 -2.25179508e-01 -1.57106087e-01 8.12450871e-02\\n2.34312505e-01 1.05171189e-01 2.99806416e-01 -4.54858243e-01\\n3.73479202e-02 7.90832117e-02 1.39875151e-02 4.94530261e-01\\n2.27570627e-02 1.15397371e-01 -8.22222829e-02 -2.10305631e-01\\n5.03323972e-01 -3.27784978e-02 -6.87714517e-02 -4.27686572e-02\\n2.12472454e-02 -1.12760931e-01 -4.28208739e-01 1.51037142e-01\\n-1.00389473e-01 -1.66945368e-01 5.74455895e-02 6.34007808e-03\\n1.33678958e-01 -8.10811967e-02 -4.36889678e-01 -2.35758379e-01\\n-2.61078179e-01 2.81127542e-02 1.47237862e-02 -5.06286979e-01\\n7.31407255e-02 8.45121872e-03 -5.82967043e-01 2.05949515e-01\\n-1.97520211e-01 -1.41316075e-02 2.27952600e-01 6.15042970e-02\\n-3.47082824e-01 -4.36731651e-02 1.31267041e-01 1.28905147e-01\\n-3.39042217e-01 -2.62759358e-01 5.07930182e-02 -9.30846870e-01\\n1.74998194e-01 6.46764785e-02 -1.66542187e-01 1.96967900e-01\\n-9.46890339e-02 -7.88984358e-01 1.23689979e-01 -2.46961564e-01\\n-9.28981826e-02 5.96119314e-02 -1.87026590e-01 -4.55363154e-01\\n7.63675496e-02 -5.88563755e-02 -2.10556492e-01 4.29137945e-01\\n-4.08343971e-01 3.41481656e-01 -1.88295897e-02 9.72604156e-02\\n9.85986963e-02 -2.76109129e-01 1.30148202e-01 -3.74515861e-01\\n-4.80869412e-01 -1.77518964e-01 -3.10600787e-01 -2.60231525e-01\\n-4.57592728e-03 -2.15607852e-01 -7.92593062e-02 5.41015975e-02\\n3.57603192e-01 1.25793755e-01 -1.31388441e-01 -2.83445835e-01\\n6.78100437e-02 -4.69229817e-01 -6.54403865e-03 -8.36777166e-02\\n-6.60712598e-03 -1.36913314e-01 2.22917691e-01 3.28016132e-02\\n6.50621578e-02 -3.86251211e-01 4.86753821e-01 -2.58070648e-01\\n-3.63768518e-01 -8.87080878e-02 3.17337993e-03 7.87198469e-02\\n4.06503409e-01 -4.53147262e-01 1.01086497e-01 2.91560948e-01\\n1.37429550e-01 1.24963291e-01 2.47452408e-01 -3.97056974e-02\\n-6.60928264e-02 3.41745198e-01 -4.49073464e-01 1.66784659e-01\\n7.42813945e-01 9.00458470e-02 1.02633566e-01 2.13283733e-01\\n1.81365788e-01 2.92551041e-01 4.93894488e-01 -9.63796675e-03\\n-1.23556010e-01 3.14446658e-01 8.86442438e-02 -5.77770412e-01\\n-6.69974387e-02 -1.23356745e-01 -1.29978433e-01 -3.16283524e-01\\n7.24717915e-01 4.14954275e-01 -3.03804666e-01 -2.52922475e-01\\n-1.80499956e-01 -2.49354452e-01 1.41829088e-01 -9.42508653e-02\\n1.35817721e-01 -1.15158036e-01 5.42182028e-01 -2.68965717e-02\\n2.84201622e-01 4.94620562e-01 -2.09708005e-01 -3.57113242e-01\\n2.55594170e-03 1.33693159e-01 8.16435516e-02 3.53101045e-01\\n-1.98533759e-01 1.77288562e-01 6.95429882e-03 2.12473571e-01\\n-1.07025005e-01 1.59705207e-01 1.18317388e-01 5.97991310e-02\\n1.91205993e-01 1.32693097e-01 3.75690162e-01 4.47382450e-01\\n3.49317074e-01 4.64439362e-01 2.85251558e-01 5.68868741e-02\\n4.94922072e-01 5.79240620e-01 3.81327897e-01 1.99248075e-01\\n-6.74284101e-02 1.23412542e-01 -4.78872582e-02 2.93649063e-02\\n3.62714946e-01 3.78441960e-01 9.73686948e-02 8.32124770e-01\\n4.12132025e-01 3.06999952e-01 6.85521185e-01 -5.92316389e-01\\n-4.14855599e-01 -7.51778707e-02 4.87463385e-01 -3.59731644e-01\\n-4.10791524e-02 8.01490843e-02 -1.78361520e-01 2.37033859e-01\\n-4.85165298e-01 -2.36780196e-01 -8.55031237e-02 -3.06255138e-03\\n1.57862574e-01 -8.27828348e-02 -1.93816066e-01 -2.03804988e-02\\n-1.96688548e-01 -3.13517898e-01 -3.83992702e-01 2.59355232e-02\\n-2.43775755e-01 -1.10308021e-01 -2.78232861e-02 -1.65099889e-01\\n1.85390498e-04 -4.03036028e-01 -1.53969288e-01 -2.23245583e-02\\n3.80933523e-01 -4.75059189e-02 -7.62616843e-02 -1.90238044e-01\\n2.09217742e-01 3.09424758e-01 6.44819140e-01 9.43049565e-02\\n1.03286356e-01 -1.70240343e-01 -1.51899070e-01 1.87878743e-01\\n1.39828250e-01 1.95411965e-01 7.45359361e-02 4.17257577e-01\\n-3.70632738e-01 -7.85729736e-02 1.10942736e-01 3.66848797e-01\\n-4.76186126e-01 -1.38986290e-01 -1.16103232e-01 8.67759585e-02\\n1.19415671e-01 1.59099504e-01 -2.34309822e-01 9.44793969e-02\\n-2.61694938e-01 -5.78681350e-01 4.56476241e-01 -2.17924029e-01\\n-1.41498059e-01 -2.35618819e-02 2.54864603e-01 1.47714794e-01\\n-2.61840641e-01 1.37775391e-03 3.22075523e-02 2.95709223e-01\\n1.53881639e-01 4.50879782e-01 -2.36738846e-01 -1.60464436e-01\\n-3.15469325e-01 2.23806173e-01 -1.85190797e-01 1.44029886e-01\\n-1.43987924e-01 3.65717113e-01 -6.74144039e-03 7.96795413e-02\\n2.51578927e-01 -1.80527419e-02 -2.61691600e-01 -2.57143795e-01\\n-3.74999255e-01 -3.46408308e-01 7.12673292e-02 -1.27944008e-01\\n1.93469241e-01 -4.29118484e-01 -5.97622618e-02 -7.79252797e-02\\n-1.65972903e-01 -3.37188184e-01 -4.81122322e-02 -2.61205453e-02]]',\n", + " 'Location: Zurich – Switzerland Job type: Permanent Salary range: up to 150.000 CHF (depends on your expertise) One of our Zurich based Swiss clients is currently seeking a .NET Architect who will be part of a team of .NET, SharePoint and web application developers responsible for a portfolio of applications in various life-cycle phases from inception to decommissioning. Responsibilities: You will architect, design and deliver new solutions in close collaboration with the internal customer and the relevant IT business domains as well as maintain and improve established applications running on different cloud platforms. Your main tasks will be to: Interact with customers from all domains within the company Define and review the architecture of new solutions Lead small to medium-sized projects, sometimes several in parallel Collaborate with internal and third-party resources on the business and technical side Support customers with business analysis, producing requirements and design artefacts Deliver software development projects on time, within budget and in high quality Deploy solutions to various environments (Development, Test, Production) Requirements: Experienced in dealing with demanding customers and strict governance Well-versed in the architecture of modern web applications based on Microsoft technology Adapt in agile development frameworks like SCRUM using AzureDevOps (VSTS) Extensive cloud know-how (ideally Azure) for Continuous Integration/Deployment (CI/CD) Skilled in web technologies like HTML, CSS, JavaScript/TypeScript and frameworks (Angular 7) Experienced in server-side services in .NET using Visual Studio, including newest .NET Core Adapt database design skills and implementations on MS SQL Practical knowledge in front-end design, data visualisation and workflow processes Fluent in English, written and spoken Good to have: Experience with SharePoint 2013/2016 apps development as well as platform improvements are an advantage German language For more information on this .NET Architect PERMANENT job in Zurich, please send your CV to mark.csepe@nicollcurtin.com or alternatively, you can call me on +41 44 578 5327. Please note that while we are grateful for all job applications, only the most suitable will be contacted. Thank you very much for your interest.',\n", + " '[\"Collaboration\", \"Written English\", \"Governance\", \"Adaptability\"]',\n", + " '[\"Web Applications\", \"Integrated Development Environments\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Life Cycle Assessment\", \"Continuous Integration\", \"Customer Support Analyst\", \"TypeScript\", \"Alternators\", \"Component Object Model (COM)\", \"Maintainability\", \"Scrum (Software Development)\", \"Idealization\", \"Cloud Platform System\", \"HyperText Markup Language (HTML)\", \"Server-Side\", \"Database Design\", \"Microsoft Visual Studio\", \"Product Testing\", \"Budgeting\", \"Front End Design\", \"JavaScript (Programming Language)\", \"Business Analysis\", \"Angular (Web Framework)\", \"Front End (Software Engineering)\", \"Software Development\", \"Resourcing\", \"Scaled Agile Framework\", \"Customer Demand Planning\", \"Workflows\", \"ASP.NET Core\", \"SQL (Programming Language)\", \"Product Requirements\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'data engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.87018558e-01 2.62790650e-01 4.84370828e-01 5.65015674e-02\\n4.95228618e-01 -7.14628771e-02 -4.45722900e-02 2.29910731e-01\\n3.16278683e-03 -4.67078447e-01 2.34412067e-02 -1.45032898e-01\\n-7.85728022e-02 2.29453482e-02 1.49031103e-01 4.50796783e-01\\n4.03130531e-01 5.81657663e-02 -2.45680995e-02 3.79181862e-01\\n9.08872485e-02 -7.18505532e-02 -1.73262674e-02 7.14751184e-01\\n5.00305176e-01 -8.50291401e-02 -1.74031422e-01 8.46053958e-02\\n-2.11665243e-01 -2.65711218e-01 4.89607513e-01 5.26698455e-02\\n-1.78832307e-01 -3.12509269e-01 1.42940804e-01 1.09932616e-01\\n-3.53809625e-01 1.09138444e-01 -1.12645671e-01 1.79193407e-01\\n-4.79448378e-01 -1.52716696e-01 -5.24639077e-02 -1.78945847e-02\\n-4.63240176e-01 -3.82047862e-01 -3.17757018e-02 -1.14930704e-01\\n1.80845514e-01 1.00812934e-01 -4.92571265e-01 2.83448339e-01\\n-2.94942647e-01 -2.42738008e-01 2.11405560e-01 6.73529446e-01\\n7.39359334e-02 -4.43832368e-01 -5.00347495e-01 -4.35070395e-01\\n1.50842711e-01 -1.59714922e-01 8.56454149e-02 -3.02620977e-01\\n3.20919126e-01 -8.75428170e-02 5.05382009e-02 2.71595359e-01\\n-6.95656538e-01 5.79138584e-02 -2.89474815e-01 8.40731412e-02\\n-4.41827804e-01 8.10688734e-02 -4.96987015e-01 -5.41949384e-02\\n-8.14164430e-02 4.47041243e-01 4.32299152e-02 1.13513574e-01\\n-1.51918620e-01 2.91128427e-01 -3.97967994e-01 3.60817164e-01\\n2.52997488e-01 1.13967836e-01 3.32117021e-01 3.32032621e-01\\n-4.80027497e-01 5.41969657e-01 3.18811417e-01 -3.79932433e-01\\n2.04327270e-01 1.08398467e-01 3.97260666e-01 1.98462680e-01\\n2.10382745e-01 1.28192201e-01 -2.43399873e-01 2.48623163e-01\\n2.53265142e-01 -1.97024718e-01 -4.22308184e-02 -1.92427576e-01\\n1.20634563e-01 -3.96730080e-02 1.03949241e-01 1.59911886e-01\\n-2.54418939e-01 3.32704186e-01 1.28121421e-01 -1.08612649e-01\\n-1.34354249e-01 -4.21632916e-01 -4.88093160e-02 1.05022844e-02\\n3.50227915e-02 2.35844791e-01 1.83234736e-01 2.13628918e-01\\n1.60608873e-01 1.30243212e-01 1.81658626e-01 8.20287168e-01\\n-7.53031671e-02 4.55096923e-02 -1.82220578e-01 2.43975878e-01\\n1.76228583e-01 -3.51454288e-01 2.32578918e-01 2.33466357e-01\\n-1.06941111e-01 -2.63206065e-01 -3.42116535e-01 3.98094147e-01\\n-4.25924882e-02 -1.26708031e-01 -2.77030081e-01 2.47825772e-01\\n-6.57393783e-02 -4.78697568e-01 6.36573911e-01 7.31100664e-02\\n1.94283128e-01 3.34346369e-02 5.49321063e-03 -8.48056078e-02\\n-1.19356498e-01 3.13592046e-01 8.44040662e-02 9.78462249e-02\\n-3.21126372e-01 -2.71897942e-01 -2.50280768e-01 1.04133047e-01\\n-3.42602462e-01 1.75242484e-01 -1.68729961e-01 -3.87697406e-02\\n1.64649621e-01 2.11816840e-02 -3.19322646e-01 2.01137438e-01\\n-1.43027961e-01 -2.11283341e-01 2.30815895e-02 4.09038991e-01\\n-1.20129175e-01 2.12754697e-01 4.75316755e-02 -6.03567399e-02\\n6.55906975e-01 2.72461146e-01 3.08596075e-01 -6.33337721e-02\\n1.94544151e-01 -4.97832485e-02 1.16500773e-01 1.30674303e-01\\n-6.53613448e-01 3.15068811e-01 -1.11108005e-01 -2.17268571e-01\\n8.15218017e-02 -4.51544486e-02 3.02738637e-01 -2.61901617e-01\\n5.55997901e-02 -1.59935296e-01 -3.47842276e-01 -2.64477134e-01\\n-2.10771158e-01 -6.71768785e-02 4.35598433e-01 -5.88019192e-01\\n8.60315338e-02 1.56214520e-01 -4.85228300e-01 -1.90070316e-01\\n1.47227883e-01 5.74153215e-02 1.52253255e-01 1.82843611e-01\\n-1.68452680e-01 -5.92767537e-01 2.32608154e-01 -4.30430055e-01\\n-3.81963044e-01 8.52880031e-02 -3.27997595e-01 1.94562733e-01\\n3.14283222e-02 -1.09618381e-01 -1.61703393e-01 5.49438782e-02\\n-2.42870778e-01 -3.65384892e-02 7.03099668e-02 1.41151816e-01\\n2.84305274e-01 5.14078550e-02 -3.18377256e-01 5.59235215e-01\\n-1.33370072e-01 4.82009470e-01 2.05154508e-01 -9.44568932e-01\\n4.92913783e-01 1.20449468e-01 -1.64191008e-01 -3.73962522e-01\\n4.76290941e-01 -3.40915561e-01 -1.65231675e-01 7.06228837e-02\\n-2.47006744e-01 -2.43057907e-01 2.71649122e-01 -2.10424393e-01\\n-2.70646662e-01 5.04853129e-01 1.07559793e-01 1.56167999e-01\\n2.51115024e-01 -1.75179183e-01 -1.84980154e-01 1.32504441e-02\\n-1.70787171e-01 -1.86189771e-01 -5.18563390e-01 9.53221843e-02\\n-8.99697766e-02 -5.34628570e-01 -7.29088485e-02 -4.88227755e-01\\n-1.50759876e-01 -3.81311446e-01 -1.35275409e-01 1.66550368e-01\\n1.85105771e-01 1.46135911e-01 -3.55250686e-02 -2.53697094e-02\\n-4.96067107e-02 -6.71058238e-01 -1.27098307e-01 8.58006179e-02\\n4.11959261e-01 1.97341293e-01 1.55876011e-01 -1.13760024e-01\\n2.85732865e-01 5.69348812e-01 -2.70705938e-01 -4.02996153e-01\\n1.74361736e-01 7.49193579e-02 -1.12530040e-02 -2.12153301e-01\\n1.18688390e-01 3.55177581e-01 -2.70727664e-01 4.30949405e-02\\n1.45200063e-02 -7.90123418e-02 3.88696879e-01 8.32263529e-02\\n-2.17001349e-01 -2.13093281e-01 -1.83314964e-01 1.19714729e-01\\n-5.95067918e-01 -2.66887397e-01 6.12141609e-01 2.19292223e-01\\n1.11547582e-01 1.50773183e-01 1.64598539e-01 7.29226274e-03\\n-2.41420925e-01 -3.99667025e-02 3.30092430e-01 1.02053784e-01\\n1.04864277e-01 6.34805709e-02 -1.10372894e-01 -5.27250111e-01\\n-3.49918509e+00 -1.86699510e-01 1.45538315e-01 -3.11240256e-01\\n2.77192622e-01 -1.15822218e-01 1.95405945e-01 -1.14276454e-01\\n-3.59651387e-01 -9.88936871e-02 -2.41814882e-01 -1.24922425e-01\\n1.45729825e-01 1.34170428e-01 1.92309275e-01 1.99971795e-01\\n2.13537246e-01 -2.03018561e-01 -3.49065326e-02 3.74420822e-01\\n-7.31047466e-02 -6.40844464e-01 9.65114981e-02 7.78760612e-02\\n1.70935810e-01 5.47246635e-02 -4.00103420e-01 -1.52063623e-01\\n-2.27440238e-01 -2.38294199e-01 4.46301959e-02 -2.05593497e-01\\n-1.54299304e-01 1.17693290e-01 2.15146452e-01 -1.37234449e-01\\n6.55892789e-02 -2.76214153e-01 -7.39595294e-02 -3.95650297e-01\\n6.40425831e-02 -5.78782260e-01 3.30595747e-02 -5.38194776e-02\\n6.91279948e-01 -1.67431369e-01 2.05288678e-01 -1.44046703e-02\\n7.88142607e-02 1.33377105e-01 8.23362693e-02 -3.79568106e-03\\n-3.10304910e-01 -4.07715589e-01 -1.68326110e-01 -1.68722302e-01\\n6.64076328e-01 4.18242097e-01 -2.25637659e-01 -1.00537047e-01\\n4.65914756e-02 -3.33988160e-01 -4.71619815e-01 -2.22566843e-01\\n-2.17880964e-01 -1.10055983e-01 -6.15973234e-01 -4.20766950e-01\\n-1.19438954e-01 -1.76342279e-01 -1.40307724e-01 5.99196434e-01\\n-2.58876681e-01 -3.77593547e-01 -4.53560203e-02 -3.31817418e-01\\n3.28757346e-01 -1.58357576e-01 1.07058279e-01 -2.21695647e-01\\n-4.24703032e-01 -4.56008255e-01 5.64830378e-02 -2.88960785e-02\\n-1.61012724e-01 -1.69487908e-01 4.29077186e-02 -1.84264019e-01\\n-4.54087049e-01 -5.08217096e-01 3.76435310e-01 -1.47216797e-01\\n3.04129750e-01 1.55662537e-01 3.79576474e-01 6.28399923e-02\\n2.90161133e-01 1.13861123e-02 -1.65219847e-02 -3.34918827e-01\\n1.47305652e-01 8.05802941e-02 6.50428236e-01 -2.14297011e-01\\n3.26011069e-02 3.49388644e-02 -1.85436830e-01 -2.03209147e-02\\n4.14038330e-01 -2.02263325e-01 2.18434170e-01 -1.32506639e-01\\n3.17521781e-01 -2.96642721e-01 -1.82554543e-01 1.16321154e-01\\n5.04915453e-02 5.83705902e-01 -3.07918712e-02 -4.06120807e-01\\n-1.52551129e-01 3.32152754e-01 -2.35682577e-01 1.69914253e-02\\n-3.77646089e-01 6.80886954e-02 -2.34908789e-01 3.62705141e-01\\n4.82622860e-03 -9.05239955e-02 -2.27338985e-01 -2.80054301e-01\\n-2.52985153e-02 3.82852465e-01 2.27443367e-01 -2.63440851e-02\\n-4.80799899e-02 -2.26811141e-01 -1.12443395e-01 1.44623801e-01\\n2.79392093e-01 4.66914892e-01 1.39012188e-01 -2.66904116e-01\\n-7.53899291e-02 3.14006239e-01 -3.39513659e-01 2.80908167e-01\\n-3.43595386e-01 1.20423682e-01 -5.34195125e-01 -2.07130432e-01\\n-2.69177020e-01 -4.97220099e-01 2.83666730e-01 3.89316201e-01\\n3.97446416e-02 -9.96811464e-02 9.20929387e-02 -3.62926841e-01\\n2.39512980e-01 1.91693813e-01 1.42325029e-01 1.18561551e-01\\n2.09425520e-02 6.37884676e-01 -6.12768941e-02 -2.10173815e-01\\n-1.37676999e-01 1.18817672e-01 -2.87767947e-01 -2.43686229e-01\\n-8.07721093e-02 -5.63978493e-01 -8.51650462e-02 4.09803689e-01\\n1.82244301e-01 -1.21554203e-01 -1.96113542e-01 2.61902571e-01\\n-6.56381026e-02 -2.15349644e-01 -2.48035267e-01 7.11072758e-02\\n2.00243354e-01 7.62431920e-02 3.30393553e-01 -4.35705066e-01\\n-4.42033587e-03 1.28926292e-01 -9.61426422e-02 4.80944663e-01\\n3.28532560e-03 1.12552725e-01 -7.46102333e-02 -1.27134547e-01\\n4.81844962e-01 4.66144420e-02 -1.48863763e-01 2.90249232e-02\\n1.26544431e-01 -2.14879408e-01 -3.54991406e-01 3.89944529e-04\\n1.66686699e-02 -1.93925232e-01 5.75323366e-02 2.07905665e-01\\n6.23656660e-02 5.59509173e-02 -5.85761011e-01 -2.27803841e-01\\n-3.31945747e-01 -6.41709268e-02 1.95956379e-01 -5.30103743e-01\\n-1.50092989e-01 -1.43133318e-02 -5.16337693e-01 1.87122330e-01\\n-4.78649512e-02 2.23373827e-02 1.54751137e-01 9.37879011e-02\\n-9.88371968e-02 -2.28561625e-01 2.28904441e-01 2.26014629e-01\\n-2.76064515e-01 -1.61339119e-01 -3.49665210e-02 -9.93677080e-01\\n2.60059118e-01 1.89886972e-01 -2.93134749e-01 1.64345115e-01\\n2.10690815e-02 -6.34835601e-01 1.67405024e-01 -3.82757187e-01\\n-1.50545701e-01 -7.51426304e-03 -2.22365737e-01 -4.31700408e-01\\n5.24930656e-02 6.66765347e-02 -1.83398277e-01 4.24416363e-01\\n-3.25276226e-01 3.10214162e-01 8.85223597e-02 5.60957827e-02\\n3.15741263e-02 -2.05776736e-01 8.91626105e-02 -3.22096944e-01\\n-3.87834221e-01 -3.58436614e-01 -3.57961208e-01 -3.93983334e-01\\n7.62001262e-04 -4.11852807e-01 -1.95396274e-01 2.59278882e-02\\n4.25747901e-01 1.24760047e-01 -1.40744999e-01 -3.58818769e-01\\n7.54674897e-02 -5.38769007e-01 1.28063649e-01 -3.07711989e-01\\n-9.86071303e-02 -1.90828472e-01 2.91152388e-01 1.00441083e-01\\n1.54188946e-01 -2.35401541e-01 4.46903795e-01 -3.43252838e-01\\n-2.25485310e-01 -1.14401534e-01 2.49985293e-01 3.09888665e-02\\n2.65857011e-01 -4.26427931e-01 -7.72912279e-02 3.10622215e-01\\n1.22864217e-01 8.62107947e-02 1.94351137e-01 -2.24707663e-01\\n-1.19246818e-01 2.28468359e-01 -3.54896009e-01 2.04259858e-01\\n7.75683045e-01 1.07028909e-01 1.80673555e-01 1.76774830e-01\\n8.93589631e-02 2.23281771e-01 5.36424398e-01 1.14867855e-02\\n-9.73608792e-02 2.75751054e-01 1.17799425e-02 -3.55318725e-01\\n-1.25693968e-02 -1.30831748e-01 -9.80305523e-02 -2.96048164e-01\\n6.27217710e-01 4.29112524e-01 -3.30575347e-01 -3.83231401e-01\\n-1.56274542e-01 -1.37291998e-01 2.44909540e-01 1.08147614e-01\\n1.35780545e-03 -1.01999208e-01 4.80567306e-01 -8.95733312e-02\\n1.75356314e-01 4.97408569e-01 -1.98922396e-01 -2.56918669e-01\\n6.26240447e-02 2.91105807e-01 -5.63238189e-02 5.53678334e-01\\n-2.83362687e-01 3.21722835e-01 7.95120001e-02 9.96009037e-02\\n-1.65802211e-01 -1.46606080e-02 3.42603952e-01 1.23080969e-01\\n2.20478073e-01 3.29124033e-02 4.64192420e-01 4.73648608e-01\\n1.86136812e-01 4.73429650e-01 3.09388459e-01 -8.06790963e-03\\n2.08425477e-01 6.33738756e-01 3.75471741e-01 1.41821966e-01\\n4.12914790e-02 5.60642444e-02 1.05031826e-01 2.14857571e-02\\n2.75964350e-01 3.60108614e-01 1.14466950e-01 8.44450474e-01\\n2.82715768e-01 3.25512826e-01 7.04381227e-01 -7.04646289e-01\\n-4.04966742e-01 1.47195105e-02 6.07197881e-01 -4.31804925e-01\\n-2.95219887e-02 2.10179463e-01 -2.67541677e-01 2.44841784e-01\\n-5.03162682e-01 -3.10021043e-01 -6.04984611e-02 3.19326238e-04\\n5.48759662e-02 -2.39338785e-01 -1.32619321e-01 1.52881145e-01\\n-4.40830290e-02 -4.68892753e-02 -3.81141365e-01 -1.08870707e-01\\n-2.74463117e-01 -8.59094188e-02 3.15647162e-02 -7.73016363e-02\\n-1.95661157e-01 -4.16083753e-01 -1.38009265e-01 -1.06742112e-02\\n2.15738207e-01 -1.44944757e-01 -1.77337587e-01 -6.62202165e-02\\n2.35435575e-01 2.04775795e-01 6.88123405e-01 1.09979182e-01\\n7.64895082e-02 -1.30030096e-01 -2.08528832e-01 1.65005669e-01\\n1.00251123e-01 3.05445921e-02 -8.43950454e-03 3.02694559e-01\\n-2.89447814e-01 -1.84940591e-01 3.13915648e-02 2.55964309e-01\\n-5.13837814e-01 5.80943972e-02 -7.85986409e-02 2.22446382e-01\\n1.26922093e-02 3.32587421e-01 -1.25920326e-01 1.30321994e-01\\n-8.05323645e-02 -4.30001497e-01 3.66479933e-01 -1.47306427e-01\\n-2.30360523e-01 5.42453937e-02 2.01186970e-01 2.71063387e-01\\n-2.73645073e-01 -8.94198045e-02 -1.53999373e-01 2.05149844e-01\\n2.24770177e-02 2.18519092e-01 -1.32797137e-01 -2.55409986e-01\\n-3.17207783e-01 1.44487962e-01 -7.70623088e-02 2.32485548e-01\\n5.19480333e-02 3.86689544e-01 1.78385541e-01 6.63684607e-02\\n3.98666203e-01 -3.17284688e-02 -2.98818529e-01 -2.30783150e-01\\n-2.05363408e-01 -7.44481683e-02 -7.32258782e-02 1.32661304e-02\\n1.47603258e-01 -3.15225720e-01 -2.29926761e-02 -2.36715123e-01\\n-1.73129871e-01 -3.59223396e-01 -6.28776103e-02 -1.47057503e-01]]',\n", + " 'Job Informationen Responsibilities: Contribute to methodology and technology decisions and ensure that the team is continuously on top of latest trends to help evolve the platform Liaise with other functions involved in data generation, ingestion, storage and processing Get hands-on with working with the data to really understand what it means Continuously enhance our growing suite of tools and platforms that our data scientists are depending upon Be a key resource with how we will extend our technical infrastructure to incorporate cloud technologies Work very closely with the data science team, business users and fellow technology colleagues on a daily basis. Ideal candidates will be involved in designing and building the infra for a new analytics platform which is then to be used to monitor and optimize the consumption of balance sheet capacity, capital, liquidity and funding and manage the risk exposure of the consolidated balance sheet Your profile: Degree in Computer Science or Financial Engineering Strong knowledge of Python with an additional working knowledge of Java being a distinct advantage Practical knowledge of how to implement CI/CD pipelines with TeamCity, Jenkins, Bamboo etc Good analytical skills and mathematical fluency (e.g. a growing interested in R, Scala, NoSQL, Spark etc.) Good understanding of data storage, cloud computing, interfaces, visualization and streaming data Entrepreneur at heart who is continuously looking for ways to improve and enhance the systems around you Highly numerate with logical analytical thought process and attention to details Reliable when working independently, with sound judgment for when to escalate issues Critical thinker who communicates clearly and enjoys the challenges of a fast-paced environment Committed team player with good interpersonal skills, enthusiasm and output vision Someone who actively keeps up-to-date with technology Keen to work with both structured and unstructured data - we have lots of it Benötigte Skills Python Python JAVA R Scala NoSQL',\n", + " '[\"Analytical Skills\", \"Decisiveness\", \"Infrastructure\", \"Management\", \"Communications\", \"Enthusiasm\", \"Reliability\"]',\n", + " '[\"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Jenkins\", \"Capitalization\", \"Balance Sheet\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Atlassian Bamboo\", \"Visualization\", \"Scala (Programming Language)\", \"Activism\", \"Optical Data Storage\", \"Python (Programming Language)\", \"Financial Engineering\", \"E (Programming Language)\", \"Cloud Storage\", \"Pipelining\", \"Unstructured Data\", \"Data Science\", \"Consolidation\", \"Storages\", \"R (Programming Language)\", \"Teamcity\", \"Resourcing\", \"Liquidation\", \"Additives\", \"Java (Programming Language)\", \"Cloud Computing\", \"Cloud Technologies\"]',\n", + " \"['English', 'Hiri Motu', 'Occitan']\"],\n", + " ['75',\n", + " '.net software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.26071709e-01 3.50536972e-01 4.43049341e-01 -6.00995608e-02\\n4.40838099e-01 -9.09960791e-02 1.41270429e-01 1.64904892e-01\\n3.09199281e-03 -2.91167289e-01 -1.74425870e-01 -1.50007039e-01\\n-6.64450135e-03 -3.99732552e-02 1.27556086e-01 3.85261118e-01\\n4.12829012e-01 1.66202988e-02 -1.39825940e-01 2.48754621e-01\\n5.91092631e-02 2.56466754e-02 1.96477082e-02 5.81444383e-01\\n4.18029547e-01 -8.38148594e-03 -3.52266915e-02 1.67149976e-01\\n-2.17727140e-01 -3.39448303e-01 3.57129723e-01 -9.37960446e-02\\n-1.82485044e-01 -2.12177798e-01 4.81510460e-02 7.94045106e-02\\n-1.34372413e-01 -4.71911617e-02 -1.10350875e-03 3.85697000e-02\\n-3.24790657e-01 -1.30632475e-01 -3.08777113e-02 -2.78758467e-03\\n-3.22404295e-01 -2.16213942e-01 1.22665688e-01 -1.46625131e-01\\n1.32419243e-02 -7.94864520e-02 -5.55124700e-01 5.04525185e-01\\n-9.13616344e-02 -1.01791322e-01 2.76070118e-01 4.52665746e-01\\n2.74663623e-02 -4.55996573e-01 -3.85684103e-01 -2.33598441e-01\\n2.23396510e-01 -1.74590424e-02 1.45916581e-01 -1.22401536e-01\\n4.41546947e-01 -5.19472584e-02 -8.02446082e-02 4.58125085e-01\\n-6.85298562e-01 -2.04643488e-01 -4.27355677e-01 -5.50975986e-02\\n-4.10874009e-01 -8.79569352e-02 -2.55874634e-01 -1.83247939e-01\\n1.21095050e-02 3.12921137e-01 -8.93749148e-02 3.64606269e-02\\n-1.71338499e-01 2.13456765e-01 -1.19543321e-01 1.19962059e-02\\n2.61209399e-01 2.00066850e-01 3.33329678e-01 2.55462080e-01\\n-3.36915791e-01 3.64462823e-01 3.49968523e-01 -3.05881977e-01\\n2.39204645e-01 -2.30225846e-02 4.21389997e-01 1.43471494e-01\\n5.22746295e-02 2.24392086e-01 -4.59528491e-02 7.99491480e-02\\n1.18991531e-01 -2.20377788e-01 -3.75204459e-02 -4.58629569e-03\\n-7.70470127e-02 -2.04314291e-02 1.32779945e-02 2.83747464e-01\\n-4.46603328e-01 4.06398386e-01 1.36193365e-01 -3.13821048e-01\\n-4.12639268e-02 -4.44282144e-01 -2.06691220e-01 -3.68810743e-02\\n-7.10071698e-02 2.02122822e-01 2.19994754e-01 2.47193933e-01\\n2.45307416e-01 -1.18045285e-01 2.93819398e-01 7.03786790e-01\\n-1.47377392e-02 1.61380023e-02 -1.44923776e-01 4.32601243e-01\\n1.11831531e-01 -3.37955922e-01 2.02076226e-01 2.06392452e-01\\n6.36414066e-02 -3.39176366e-03 -2.31862590e-01 1.81786582e-01\\n-1.67408794e-01 -1.84905514e-01 -3.87550801e-01 2.22015157e-01\\n-2.47997701e-01 -4.42764133e-01 3.62570882e-01 -9.71785709e-02\\n1.23583563e-01 -1.96889997e-01 -9.12897885e-02 -4.07977402e-02\\n-8.88392329e-02 3.52014869e-01 5.32582887e-02 1.85378522e-01\\n-2.40313992e-01 -2.49996111e-01 -1.07463665e-01 4.29187477e-01\\n-1.05660923e-01 6.59078732e-02 -2.83964127e-01 -1.90039203e-01\\n3.50126266e-01 1.63177356e-01 -3.35717887e-01 3.35633039e-01\\n-2.07789131e-02 -2.66473979e-01 -2.35377610e-01 2.76285410e-01\\n-1.05534837e-01 2.24357754e-01 2.85940319e-02 -2.09103495e-01\\n5.60186565e-01 1.95843115e-01 2.09332392e-01 -1.02567449e-01\\n4.12260354e-01 -1.85521662e-01 2.61004180e-01 -2.70100348e-02\\n-6.63289070e-01 4.20371532e-01 -1.72114462e-01 -8.68022218e-02\\n1.72273125e-02 -1.21529419e-02 4.04311150e-01 -3.15624148e-01\\n-5.27543668e-03 -1.82412237e-01 -2.55319864e-01 -4.56979781e-01\\n-2.24544659e-01 -2.67092995e-02 3.77110243e-01 -2.63141364e-01\\n-2.14466564e-02 1.87411144e-01 -5.31888783e-01 -1.37402236e-01\\n3.06120306e-01 2.04659164e-01 9.42620263e-02 2.22667322e-01\\n2.17365734e-02 -4.38825428e-01 1.12067632e-01 -5.21833956e-01\\n-4.03385192e-01 8.46826583e-02 -2.25745082e-01 2.77504683e-01\\n2.73307189e-02 -6.05854951e-02 -2.95157731e-02 2.17199489e-01\\n-3.28717560e-01 5.47944568e-03 1.95052803e-01 5.74968457e-02\\n1.33400321e-01 5.70197292e-02 -3.32879692e-01 5.06170154e-01\\n-1.39739886e-01 2.94153005e-01 9.32924077e-02 -8.68681967e-01\\n4.71947134e-01 2.12423846e-01 8.34934562e-02 -1.98800325e-01\\n5.79411149e-01 -3.15943539e-01 2.25398131e-03 5.10894731e-02\\n-3.45144868e-01 -1.52553320e-01 2.90780514e-01 -1.90226421e-01\\n-2.26984441e-01 6.29331470e-01 1.33130237e-01 8.44765455e-02\\n2.66949832e-01 -1.25044391e-01 -1.62028909e-01 5.40707074e-02\\n-1.94844842e-01 -1.74659878e-01 -4.29295212e-01 1.67675223e-02\\n-4.76788990e-02 -4.97271210e-01 -2.11692214e-01 -4.92319822e-01\\n-1.77972749e-01 -4.18106496e-01 -1.96397051e-01 3.13836575e-01\\n1.80415019e-01 1.34594008e-01 1.40504017e-02 -7.54168332e-02\\n-1.64666563e-01 -4.83242482e-01 -7.09440634e-02 -2.31010467e-02\\n2.68264145e-01 4.17642325e-01 1.05295658e-01 -8.54006410e-02\\n-4.12604660e-02 4.31466281e-01 -4.23927605e-01 -2.70131379e-01\\n2.57134706e-01 1.94950610e-01 -3.97450030e-02 -7.55017102e-02\\n-7.15904264e-03 3.97466481e-01 -1.20723240e-01 5.76361306e-02\\n-1.27519816e-02 -5.14602773e-02 4.37715560e-01 -7.79927596e-02\\n-1.30505532e-01 -1.55663058e-01 -1.29079148e-01 3.96241963e-01\\n-4.35450375e-01 -3.34480375e-01 5.40011585e-01 1.78581312e-01\\n7.18208998e-02 2.15942755e-01 4.00034070e-01 -3.63397188e-02\\n-2.02457577e-01 -1.65933385e-01 6.91595525e-02 1.21294200e-01\\n8.61124247e-02 -7.02161994e-03 -2.56749004e-01 -4.80327904e-01\\n-3.62103391e+00 -1.82599887e-01 1.07445382e-01 -2.81659544e-01\\n2.57586330e-01 -9.74241178e-03 2.06100255e-01 -8.15973058e-03\\n-3.26460570e-01 9.09857154e-02 -2.44975910e-01 -1.79595500e-01\\n1.57830581e-01 3.12200576e-01 1.63923398e-01 1.30310923e-01\\n1.10074375e-02 -2.92320788e-01 1.42591773e-02 4.42436129e-01\\n-1.08473562e-02 -7.22514451e-01 1.29517555e-01 -3.31157707e-02\\n2.36562148e-01 2.39990026e-01 -4.29671943e-01 -4.75435257e-02\\n-3.33984375e-01 -2.19218671e-01 1.55893862e-01 -2.43458167e-01\\n-1.61484733e-01 3.95932227e-01 1.55926988e-01 -1.47744313e-01\\n9.26106586e-04 -3.71171027e-01 -7.87642878e-03 -5.26830852e-01\\n6.66625127e-02 -6.02407098e-01 8.16130638e-02 -4.87344116e-02\\n5.53498149e-01 -2.14265481e-01 2.10584477e-01 6.24291860e-02\\n1.73736736e-01 2.50507742e-01 7.09346670e-04 -2.04115752e-02\\n-3.73170555e-01 -2.09045425e-01 -1.45122230e-01 -1.74783111e-01\\n5.29895425e-01 3.23274523e-01 -1.86397016e-01 -2.45598257e-02\\n-1.05883807e-01 -3.50391924e-01 -4.78191465e-01 -3.86484385e-01\\n-2.52956718e-01 -7.67470524e-02 -5.57642519e-01 -3.72048587e-01\\n-1.23724252e-01 -1.28343523e-01 -7.18085617e-02 6.05875850e-01\\n-3.02976787e-01 -3.87737721e-01 1.17270768e-01 -5.45458972e-01\\n2.01812163e-01 -2.75060207e-01 1.54082313e-01 -1.11229300e-01\\n-2.79459119e-01 -4.39333290e-01 9.47967991e-02 6.85414970e-02\\n-9.48966891e-02 -8.73175710e-02 3.89870442e-02 -1.65828183e-01\\n-4.29171026e-01 -4.78950024e-01 5.28657854e-01 2.12822687e-02\\n3.28423679e-01 1.40624605e-02 2.08951741e-01 2.59355366e-01\\n2.96725810e-01 -1.87652752e-01 2.63342500e-01 -4.74346399e-01\\n8.15582648e-02 -7.07224302e-04 6.55160666e-01 -2.05302075e-01\\n2.86204200e-02 -3.99109907e-03 -2.11790577e-01 -7.16993138e-02\\n5.53110600e-01 8.77730999e-05 1.15490586e-01 -2.41589084e-01\\n2.70266384e-01 -4.62705910e-01 -1.81419387e-01 1.34127691e-01\\n-9.86096337e-02 5.94761074e-01 9.84352157e-02 -3.16706628e-01\\n-1.70073673e-01 2.43806094e-01 -1.38177365e-01 -1.30351901e-01\\n-1.41231924e-01 2.17937231e-01 -2.61599004e-01 1.15338609e-01\\n1.07750162e-01 -4.48333435e-02 -3.19229841e-01 -7.29542971e-02\\n-1.30306199e-01 2.05499187e-01 3.58600795e-01 1.08369574e-01\\n4.26418595e-02 -3.04630101e-01 -3.64989080e-02 1.23679064e-01\\n3.47962409e-01 1.95491940e-01 5.52723743e-02 -3.81055862e-01\\n-3.81202549e-02 2.51705170e-01 -2.45468348e-01 1.91966474e-01\\n-1.41120598e-01 1.65872946e-01 -4.26892251e-01 -3.39196436e-02\\n-2.48518229e-01 -3.34451139e-01 1.73504781e-02 2.83886075e-01\\n1.89374566e-01 -8.20591748e-02 -3.58624719e-02 -3.88235003e-01\\n3.98833841e-01 -1.67733356e-02 1.80653036e-01 1.36206567e-01\\n8.32339898e-02 5.98621190e-01 -4.74508330e-02 -4.38555926e-02\\n-1.29440799e-01 7.19273761e-02 -1.90075889e-01 -2.61825264e-01\\n6.29043058e-02 -2.75921911e-01 -1.68052744e-02 4.36026454e-01\\n5.33233583e-02 -8.70278180e-02 -9.77064520e-02 2.71107972e-01\\n-1.96964908e-02 -3.46750975e-01 -1.85786262e-01 1.54849645e-02\\n1.22160934e-01 1.31882861e-01 1.76751867e-01 -4.66855675e-01\\n-7.71015808e-02 -5.71095198e-02 6.44654557e-02 3.83196801e-01\\n1.14067040e-01 8.30810294e-02 -2.61542033e-02 -2.64602065e-01\\n4.25827920e-01 -8.03609267e-02 -1.82428509e-01 1.08795725e-02\\n7.70963803e-02 -3.70292395e-01 -4.10954863e-01 -1.64944708e-01\\n-8.40781182e-02 -1.87974975e-01 1.85226634e-01 2.83220559e-02\\n1.51775494e-01 -3.62619981e-02 -4.79228139e-01 -1.60511404e-01\\n-3.46246094e-01 8.43244269e-02 -1.54995769e-01 -5.93956769e-01\\n1.24665545e-02 -5.60120605e-02 -5.86022258e-01 2.86593884e-01\\n-2.64240831e-01 -3.21961381e-03 2.77455896e-02 7.26450458e-02\\n-3.32307279e-01 -7.16139823e-02 2.03996658e-01 -2.68650297e-02\\n-2.42919415e-01 -1.85080588e-01 1.14998862e-01 -9.48742747e-01\\n2.09361196e-01 3.12664658e-02 -1.17322147e-01 3.40018831e-02\\n1.51093455e-03 -6.35039330e-01 2.19732881e-01 -3.77874047e-01\\n1.70578212e-02 8.86068121e-02 -1.77558482e-01 -2.63965338e-01\\n1.20032519e-01 -1.06961615e-01 -2.15121508e-01 3.01325172e-01\\n-3.96660000e-01 4.90828574e-01 5.49385399e-02 1.09649539e-01\\n2.97608189e-02 -2.74376988e-01 9.58173424e-02 -3.04379493e-01\\n-4.92636949e-01 -1.05127014e-01 -2.08957762e-01 -2.34914869e-01\\n6.14242069e-02 -1.48061186e-01 -2.06520796e-01 -6.97211027e-02\\n2.95973063e-01 3.03829238e-02 -2.81012684e-01 -9.94304419e-02\\n1.48731124e-04 -3.03971827e-01 1.40229449e-01 -1.68977365e-01\\n-3.55142877e-02 -1.22655861e-01 2.70333678e-01 -5.04530035e-02\\n1.70569584e-01 -2.90632725e-01 4.34551924e-01 -1.72094330e-01\\n-3.48349899e-01 -5.39716631e-02 5.19366637e-02 9.58978161e-02\\n2.88963944e-01 -5.28372884e-01 -3.03560346e-02 3.25936526e-01\\n-6.70888275e-02 1.54335305e-01 2.62928009e-01 -1.33482769e-01\\n-2.39975169e-01 2.20181450e-01 -5.84503531e-01 5.35563119e-02\\n7.34529257e-01 1.82252929e-01 1.68395564e-01 1.02336675e-01\\n1.35477021e-01 3.23189199e-01 5.09037554e-01 -2.31267698e-02\\n-9.90474746e-02 3.16427410e-01 1.99039698e-01 -5.89628696e-01\\n-1.27246648e-01 -8.99323449e-02 -1.62333533e-01 -3.18595290e-01\\n5.85276425e-01 3.00415158e-01 -2.65147716e-01 -4.72125113e-01\\n7.59237632e-03 -2.13347673e-01 1.57547817e-01 -4.39372398e-02\\n8.43312219e-02 -2.24767759e-01 6.25858009e-01 1.04381358e-02\\n1.19623870e-01 4.37936008e-01 -1.15323672e-02 -3.04998785e-01\\n-9.66249704e-02 6.70695007e-02 1.41826898e-01 4.59671855e-01\\n-4.20624241e-02 6.25601113e-02 -7.20985979e-02 9.84506384e-02\\n-8.72196481e-02 -4.29622084e-02 2.16947332e-01 7.05870762e-02\\n3.33784968e-02 2.04543352e-01 2.69015282e-01 4.52662081e-01\\n3.12951863e-01 4.87195730e-01 2.32122302e-01 4.84317401e-03\\n3.41680050e-01 6.03938878e-01 3.29337835e-01 9.27194357e-02\\n-6.31495565e-02 8.15367103e-02 5.36111742e-03 5.19880764e-02\\n4.37217116e-01 2.46717140e-01 7.62564167e-02 8.21254909e-01\\n3.35786909e-01 3.33085835e-01 7.65032232e-01 -4.59459126e-01\\n-3.57846826e-01 1.26306668e-01 5.02533615e-01 -3.23555976e-01\\n8.14179629e-02 1.63814172e-01 -2.29065940e-01 2.36308262e-01\\n-4.72173840e-01 -1.78858072e-01 -7.45962188e-03 -1.22786082e-01\\n2.38143533e-01 -4.77332324e-02 -1.24973126e-01 8.95215571e-02\\n-1.47233427e-01 -2.85193533e-01 -4.21184540e-01 -2.86689609e-01\\n-3.02887470e-01 -5.94498776e-02 6.69393092e-02 -1.78892419e-01\\n-1.08099960e-01 -2.52784640e-01 -3.34921032e-02 -9.44059063e-03\\n2.69672513e-01 -1.23253785e-01 -1.73376426e-01 -1.11867510e-01\\n9.72316936e-02 2.78140187e-01 6.52463734e-01 -1.43164113e-01\\n2.18894836e-02 -6.11226223e-02 -2.25569114e-01 4.13057767e-02\\n3.90872434e-02 9.22849476e-02 7.60477781e-02 6.69669807e-01\\n-4.41145122e-01 -1.80359855e-01 1.16227172e-01 4.22697902e-01\\n-3.40290457e-01 1.14305384e-01 -8.59222114e-02 1.68251425e-01\\n6.30783364e-02 7.04837441e-02 -2.17238784e-01 6.18465729e-02\\n-1.15720771e-01 -6.08902931e-01 3.31917375e-01 -1.08403765e-01\\n-2.06208721e-01 5.25140427e-02 1.84958845e-01 3.23514372e-01\\n-2.99755663e-01 -7.55286142e-02 -9.88555253e-02 3.26974452e-01\\n1.18164882e-01 4.12459135e-01 -2.28857562e-01 -2.03464210e-01\\n-2.23592177e-01 2.66510159e-01 7.34925866e-02 1.28970712e-01\\n-1.62651658e-01 3.85698348e-01 -2.67810710e-02 2.27136746e-01\\n1.82801023e-01 -4.93438058e-02 -2.76194304e-01 -3.13555151e-01\\n-1.33200794e-01 -1.56399027e-01 1.95779383e-01 -8.66467357e-02\\n2.46485949e-01 -2.91856855e-01 -1.83637306e-01 -3.09928030e-01\\n-2.08246514e-01 -3.16870958e-01 -1.30496118e-02 1.12075299e-01]]',\n", + " 'Job Informationen In this role you will be responsible for the development of new applications as well as application changes, from design and development to testing, and last but not least for the support. This position includes not only software development, but also analysis of the requirements and specification design. In more detail your area of duties will be: Software Design and Development (In cooperation with the Business Experts): - Studying information needs, system flows, data usage and work processes - Investigating problem areas - Producing the required documentation (screen layout, business rules and other documentation) - Developing software solutions - Solutions Testing, Installation and Support: - Defining and executing unit and regression tests, as well as user support during acceptance tests - Preparing the installation of the solutions - Producing the required documentation - Providing second level support Operations Improvements: - Conducting systems analysis and recommending changes About you: As a Software Engineer you have at least four years experience in designing and developing software solutions, bringing along the following experience/profile: - Proficiency in .NET programming (C#), Web development (Angular, TypeScript, Web Services, WebAPI), databases (SQL Server, TRANSACT-SQL, Oracle), data modeling, and performance tuning of both .NET and T-SQL code ) - Strong analytical and problem solving skills - Excellent communication and language skills in English (proficient verbal and in writing), as you will interact with the IT and the Business community on a daily basis (as well as German) - High motivation and capable of working in a challenging international environment in across location teams - Ability to work effectively both within a team and also independently - Driven towards finding solutions and being responsive - Experience in the insurance or reinsurance business is a plus - A university degree or equivalent (e.g. Fachhochschule) in Computer Science Benötigte Skills Versicherung Englisch Konzeptionell / Analytisch .NET C# Angular SQL Server Transact-SQL Oracle Support Test Softwarearchitektur',\n", + " '[\"Writing\", \"Cooperation\", \"Investigation\", \"Problem Solving\", \"Communications\"]',\n", + " '[\"Operations Support Systems\", \"Programming (Music)\", \"Interactivity\", \"Computer Science\", \"Analytics\", \"Data Modeling\", \"Regression Testing\", \"Solution Deployment Descriptor\", \"TypeScript\", \"SQL (Programming Language)\", \"Installation\", \"E (Programming Language)\", \"Design Specifications\", \"Levelling\", \"Web Development\", \"Executable\", \"Reinsurance\", \"Software Engineering\", \"Transact-SQL\", \"Web Services\", \"C# (Programming Language)\", \"Acceptance Test Procedures\", \"Installation Testing\", \"Software Design\", \"Angular (Web Framework)\", \"Performance Tuning\", \"Software Development\", \"Business Communication\", \"Data Flow Diagram\", \"Systems Analysis\", \"Microsoft SQL Servers\", \"Data-Flow Analysis\"]',\n", + " \"['English', 'Chuang', 'Latin', 'Arabic']\"],\n", + " ['27',\n", + " 'junior software engineer medco for the department of information systems',\n", + " 'Lausanne',\n", + " 'Healthcare Services & Hospitals',\n", + " 'www.chuv.ch',\n", + " '[[-3.00035059e-01 3.61983538e-01 4.44360465e-01 -7.17792660e-03\\n5.62070787e-01 -1.37449756e-01 -1.13336578e-01 2.42946625e-01\\n-2.19843201e-02 -4.84850526e-01 -9.91603658e-02 -3.07892561e-01\\n-4.89714779e-02 1.88965708e-01 1.14169598e-01 4.41247940e-01\\n3.86448681e-01 4.34750766e-02 -1.06877811e-01 3.36503685e-01\\n-6.46074489e-02 -1.51778728e-01 4.21410054e-03 8.17152441e-01\\n4.15205777e-01 -4.45732102e-02 -5.73506542e-02 1.49609014e-01\\n-2.30003044e-01 -1.49984866e-01 5.07363498e-01 2.94902641e-02\\n-1.60990119e-01 -3.72379541e-01 1.14553399e-01 2.48411328e-01\\n-3.23082864e-01 -1.17690079e-01 -1.25032410e-01 1.77222803e-01\\n-5.57683289e-01 -3.01134944e-01 -1.02623522e-01 -1.21669605e-01\\n-2.74369895e-01 -3.70370686e-01 9.48063284e-02 -3.09872590e-02\\n8.33352506e-02 1.49189293e-01 -5.47025383e-01 2.15621099e-01\\n-3.89576554e-01 -1.66778952e-01 3.37086499e-01 6.09280050e-01\\n-4.00838852e-02 -4.14307028e-01 -4.87745881e-01 -4.02561933e-01\\n-5.65326326e-02 -2.60696188e-02 4.56933528e-02 -3.86211216e-01\\n4.11144555e-01 9.00602639e-02 -5.72004914e-03 3.85362148e-01\\n-8.06089640e-01 -1.23140171e-01 -3.25153291e-01 1.08123042e-01\\n-4.29066181e-01 -3.10019776e-02 -3.13482702e-01 -2.40982965e-01\\n-6.66429177e-02 3.94444346e-01 -3.24342586e-02 1.19015887e-01\\n-2.39308327e-01 3.82285446e-01 -2.01432556e-01 3.83839250e-01\\n2.69659698e-01 2.43688136e-01 3.10070992e-01 3.65030706e-01\\n-4.57485974e-01 3.77795219e-01 1.28924534e-01 -3.27150077e-01\\n2.27454871e-01 1.09013036e-01 4.74937022e-01 9.19226110e-02\\n1.41731560e-01 1.32084504e-01 -2.91906685e-01 2.95387268e-01\\n2.13811845e-01 -1.99559718e-01 4.51282822e-02 -8.05766135e-02\\n-7.04778358e-03 -4.79073673e-02 -1.68002769e-03 1.65476188e-01\\n-4.13177133e-01 3.36495101e-01 8.56148005e-02 -2.72724450e-01\\n-1.56365946e-01 -5.79533279e-01 1.13614369e-02 1.04003072e-01\\n6.48366064e-02 1.11551940e-01 1.59038499e-01 1.22376904e-01\\n1.81610435e-01 -4.70363833e-02 1.62519693e-01 8.83770227e-01\\n-1.25856802e-01 -3.42019200e-02 -1.34144962e-01 3.06266665e-01\\n8.90472084e-02 -1.88330188e-01 1.54109716e-01 2.90424526e-01\\n-6.58720359e-03 -1.22392751e-01 -2.37822413e-01 4.40019906e-01\\n-1.29727036e-01 -1.90964669e-01 -4.41658556e-01 3.40125471e-01\\n-1.90957069e-01 -4.34564710e-01 5.87118506e-01 -8.26356187e-02\\n1.44019127e-01 -1.57126263e-01 -1.17994323e-02 -8.22910443e-02\\n-1.31153569e-01 2.13340163e-01 2.53410265e-03 2.23886713e-01\\n-3.21313739e-01 -2.24193215e-01 -9.18591917e-02 2.49286920e-01\\n-3.38537425e-01 2.97612160e-01 -7.92742223e-02 -9.15120170e-02\\n2.67795205e-01 1.66635007e-01 -3.66973519e-01 1.85097575e-01\\n-1.18098199e-01 -1.10540226e-01 -6.61244169e-02 4.58446741e-01\\n-1.32654071e-01 2.13160932e-01 -1.42370611e-02 -3.50442648e-01\\n4.66153681e-01 1.19258486e-01 3.25152159e-01 -1.06508927e-02\\n3.21369588e-01 -1.51209190e-01 2.79434800e-01 1.03953734e-01\\n-7.00411677e-01 3.89611870e-01 -7.01834559e-02 -2.13751033e-01\\n3.74336354e-03 -1.02307774e-01 4.65106070e-01 -2.54125476e-01\\n-7.04707354e-02 -1.76333070e-01 -3.54473174e-01 -4.63893920e-01\\n-1.96422324e-01 1.27239637e-02 4.41343784e-01 -4.54905361e-01\\n-7.38131478e-02 3.95377994e-01 -6.31911635e-01 -2.00359508e-01\\n1.88462973e-01 2.50258654e-01 1.38608143e-01 1.72260046e-01\\n-1.21526673e-01 -6.64688766e-01 4.85400110e-02 -5.14919817e-01\\n-3.84826243e-01 1.28575832e-01 -2.86289275e-01 1.26380429e-01\\n8.47453400e-02 2.35035457e-02 -2.82117780e-02 4.67723086e-02\\n-3.38407069e-01 7.21806437e-02 8.54065791e-02 -5.71014024e-02\\n3.07594359e-01 1.76642686e-02 -3.67082477e-01 4.78533149e-01\\n-1.86889499e-01 4.62018341e-01 1.17807738e-01 -8.33056927e-01\\n6.30820274e-01 3.69473755e-01 -3.51999328e-02 -3.68397951e-01\\n5.50363183e-01 -3.31260920e-01 -1.74863935e-01 1.57397926e-01\\n-3.67648214e-01 -1.54682174e-01 2.22167194e-01 -3.21027189e-01\\n-2.22786993e-01 5.83073795e-01 5.71780577e-02 9.26069319e-02\\n4.92103398e-01 -3.75210047e-01 -2.09360927e-01 1.03194222e-01\\n-2.05078959e-01 -3.08929324e-01 -5.16978860e-01 -8.15665424e-02\\n-1.30044356e-01 -4.63237584e-01 -2.11823523e-01 -3.89117658e-01\\n-1.49591237e-01 -2.84421951e-01 -1.72048569e-01 2.19392136e-01\\n2.09453434e-01 1.76951244e-01 -4.40159142e-02 4.42950465e-02\\n-3.55879515e-02 -5.65842628e-01 -4.79751751e-02 -4.41436023e-02\\n3.68573934e-01 2.91733623e-01 1.59429044e-01 5.70160337e-03\\n8.23950544e-02 5.36124110e-01 -4.61518884e-01 -3.59381318e-01\\n1.01671629e-01 5.53791076e-02 -1.06429607e-01 -3.71658839e-02\\n1.75495595e-01 3.03211212e-01 -2.68508077e-01 3.82938161e-02\\n-6.62147161e-03 -2.49507464e-02 3.97147000e-01 -2.67019942e-02\\n-1.86298266e-01 -1.25940621e-01 -1.64433196e-01 2.01995805e-01\\n-5.89219570e-01 -2.65446037e-01 4.29929733e-01 1.01364225e-01\\n1.29170820e-01 1.23921372e-01 1.90388918e-01 3.15314010e-02\\n-4.40045029e-01 -2.82660961e-01 3.08069229e-01 1.00680292e-01\\n8.97761434e-02 1.51667729e-01 -4.76597324e-02 -5.22465229e-01\\n-3.05674839e+00 -1.33334085e-01 8.87885839e-02 -2.47226775e-01\\n2.62427300e-01 -1.38471335e-01 1.00698337e-01 -1.00647137e-01\\n-2.82645464e-01 9.99853387e-03 -2.49801263e-01 -1.97526515e-01\\n9.51256603e-02 2.38607824e-01 7.14064091e-02 3.42387408e-02\\n-4.28449251e-02 -2.37445861e-01 8.61925930e-02 2.84338295e-01\\n-1.19588878e-02 -7.73476720e-01 -7.99035374e-03 -6.77736923e-02\\n1.66918471e-01 1.07998513e-01 -5.96637309e-01 -1.11885183e-02\\n-3.73665035e-01 -2.57558316e-01 1.81780428e-01 -3.07062060e-01\\n-1.16029792e-01 3.24119478e-01 1.99644938e-01 -7.13339224e-02\\n1.07592568e-02 -3.00836176e-01 -2.50040740e-01 -6.59163654e-01\\n1.81183949e-01 -6.06666565e-01 4.16864082e-02 -1.66898653e-01\\n6.59254968e-01 -3.01620901e-01 2.27224231e-01 2.80833453e-01\\n1.59079611e-01 1.81084901e-01 8.84357393e-02 5.14040850e-02\\n-3.00230145e-01 -2.70910293e-01 -1.12118125e-01 -2.42464393e-01\\n6.28367364e-01 3.86322409e-01 -2.13607371e-01 -9.11915749e-02\\n5.81795648e-02 -3.62291068e-01 -5.40301979e-01 -3.53309691e-01\\n-9.79812294e-02 -1.72546476e-01 -6.80168509e-01 -3.93984497e-01\\n-1.15329631e-01 -1.33489698e-01 -4.22258452e-02 6.83342159e-01\\n-4.62741017e-01 -3.29211831e-01 -3.48696522e-02 -6.77632928e-01\\n3.13090861e-01 -3.01966429e-01 6.40542060e-02 -2.69656241e-01\\n-3.30017686e-01 -5.30000091e-01 1.11605957e-01 -1.60983671e-02\\n-1.18153721e-01 -1.72929168e-01 1.19316027e-01 -2.46215776e-01\\n-2.98391908e-01 -5.19364178e-01 4.21613276e-01 1.17969662e-01\\n4.08891916e-01 2.10435301e-01 1.98674455e-01 -6.50608689e-02\\n2.81263173e-01 1.27188697e-01 -1.21781386e-01 -3.06379318e-01\\n1.20233506e-01 2.49918550e-04 4.48907226e-01 -1.80612147e-01\\n-3.68651822e-02 9.57769454e-02 -2.35675395e-01 -5.94640747e-02\\n4.58130121e-01 -1.95846893e-03 4.15652096e-02 -1.36039346e-01\\n3.73819113e-01 -4.26120758e-01 -6.86664283e-02 1.94678307e-01\\n5.42345159e-02 6.63331985e-01 3.32273766e-02 -3.68782341e-01\\n-4.07801978e-02 4.93418753e-01 9.39974189e-03 -1.46046169e-02\\n1.17506348e-02 1.78894326e-01 -1.55298769e-01 1.86173141e-01\\n5.48610091e-02 -1.42134592e-01 -2.42442012e-01 -1.02301627e-01\\n-1.18837364e-01 3.85284543e-01 2.72803813e-01 1.60218194e-01\\n-8.72684121e-02 -3.54359627e-01 -4.65783924e-02 2.44814098e-01\\n2.68395603e-01 4.27361727e-01 3.40087980e-01 -2.69384325e-01\\n2.55174357e-02 3.44860256e-01 -1.09492019e-01 3.39766651e-01\\n-3.40910017e-01 1.18652001e-01 -5.63863516e-01 -1.85167968e-01\\n-3.00910264e-01 -2.88967222e-01 2.42015138e-01 3.21130961e-01\\n1.77178070e-01 -1.05794132e-01 1.37466967e-01 -3.56750786e-01\\n2.11783513e-01 2.57244200e-01 2.29308069e-01 7.26502016e-02\\n-1.41104639e-01 6.73385501e-01 3.93916816e-02 -1.36842236e-01\\n-5.62194027e-02 1.00371763e-02 -1.34719372e-01 -3.12145174e-01\\n6.70060888e-03 -4.76588488e-01 -1.82723984e-01 3.38606715e-01\\n7.09000751e-02 -6.28865585e-02 -2.25250885e-01 3.73426080e-01\\n1.44180655e-03 -2.14185894e-01 -1.87222481e-01 -4.87079173e-02\\n2.22224206e-01 2.33383909e-01 3.10672790e-01 -5.64478755e-01\\n-8.03505778e-02 9.58180428e-02 -2.34673843e-02 5.19917071e-01\\n1.28718913e-01 3.32122222e-02 -3.04744840e-01 -2.07423866e-01\\n3.40077430e-01 -1.72427341e-01 -3.16100828e-02 -1.53439380e-02\\n9.24445689e-02 -1.38993829e-01 -3.89402598e-01 9.97232050e-02\\n-3.07223741e-02 -2.37960964e-01 3.91229019e-02 9.22504142e-02\\n7.53197074e-02 6.09467626e-02 -5.98304629e-01 -1.75097436e-01\\n-1.67163819e-01 7.52256513e-02 -5.99374995e-03 -5.07458866e-01\\n-4.16807830e-02 -1.24140367e-01 -5.65852642e-01 2.58499682e-01\\n-1.31889537e-01 -3.39706466e-02 1.61520645e-01 5.13504781e-02\\n-3.56561035e-01 -2.06277341e-01 1.08612724e-01 1.76079184e-01\\n-3.16559643e-01 -2.75190592e-01 1.10821910e-02 -9.92156863e-01\\n1.66068658e-01 5.48323393e-02 -1.65277869e-01 6.82473630e-02\\n1.22189693e-01 -7.23813951e-01 1.26398414e-01 -3.32096636e-01\\n1.99250299e-02 1.15322858e-01 -2.66815245e-01 -4.15241659e-01\\n1.59988105e-01 -7.03539252e-02 -1.61208257e-01 3.25673491e-01\\n-4.61650848e-01 4.90845561e-01 -1.47288248e-01 -9.86439437e-02\\n4.06275019e-02 -3.34151328e-01 1.58574477e-01 -1.65461212e-01\\n-3.56565952e-01 -2.64601171e-01 -3.01129103e-01 -3.86778891e-01\\n2.22498029e-02 -3.52318168e-01 -4.03638147e-02 7.04466999e-02\\n3.66939306e-01 2.79639494e-02 -1.97493881e-01 -1.52148098e-01\\n7.10444227e-02 -4.28212702e-01 5.56281880e-02 -9.75441039e-02\\n-1.43659674e-02 -1.44667745e-01 2.08054960e-01 3.37411910e-02\\n2.62298256e-01 -2.76447833e-01 5.08225024e-01 -3.22870106e-01\\n-4.10671234e-01 -1.37253508e-01 2.30009109e-02 3.31696197e-02\\n3.99647772e-01 -3.95186067e-01 9.22752470e-02 3.43813777e-01\\n2.53291965e-01 4.65510897e-02 2.42221087e-01 -2.77115941e-01\\n-5.34895808e-02 1.91484585e-01 -3.66234124e-01 2.05553085e-01\\n8.42537761e-01 2.68569946e-01 3.25346708e-01 1.45069271e-01\\n8.08566511e-02 3.27130377e-01 5.21162271e-01 -6.31700009e-02\\n-7.80357793e-02 2.59482086e-01 1.84369728e-01 -3.23108256e-01\\n-1.99285075e-01 -1.75386593e-02 -1.12789690e-01 -3.28607678e-01\\n5.88476658e-01 3.37012053e-01 -3.77013326e-01 -1.77071810e-01\\n-2.16785386e-01 -2.08481610e-01 3.46474409e-01 -3.22753340e-02\\n-9.71568525e-02 -1.09193139e-01 3.21281463e-01 -1.06178910e-01\\n2.38572761e-01 5.76311350e-01 -1.51160553e-01 -4.14378524e-01\\n-4.13754433e-02 3.55348170e-01 6.19533248e-02 4.16227520e-01\\n-1.20524712e-01 3.27054203e-01 1.66101586e-02 1.70951158e-01\\n-1.78174481e-01 -2.53256559e-02 2.83410162e-01 6.12890944e-02\\n2.69634485e-01 2.14625135e-01 3.88987243e-01 4.55691040e-01\\n2.83973783e-01 4.88232315e-01 2.93742806e-01 6.66268123e-03\\n4.98562753e-01 6.02943599e-01 4.30620968e-01 4.51423153e-02\\n1.47982957e-02 2.04432040e-01 8.37302506e-02 4.38843258e-02\\n3.13088387e-01 3.35341692e-01 6.35313690e-02 9.94269311e-01\\n2.51577020e-01 3.27685982e-01 7.13907599e-01 -6.27548814e-01\\n-2.99214512e-01 8.59089792e-02 5.50635397e-01 -4.47144896e-01\\n5.40072210e-02 4.19687778e-02 -2.27692217e-01 3.44874948e-01\\n-5.19270360e-01 -1.09892771e-01 -5.30936718e-02 1.81326270e-01\\n2.41788030e-02 -8.75484869e-02 -1.01246491e-01 2.48785876e-02\\n-1.87385947e-01 -2.25737348e-01 -3.05894077e-01 -1.32087961e-01\\n-3.41794491e-01 -1.53032750e-01 -5.80528937e-03 -1.02582403e-01\\n-1.33049004e-02 -2.74541378e-01 -7.21229166e-02 -3.97043750e-02\\n5.75172544e-01 -2.86352843e-01 -2.08839148e-01 -1.11376718e-01\\n3.12505126e-01 2.99222797e-01 6.61733687e-01 1.14860013e-03\\n-3.48253995e-02 -2.55359024e-01 -2.34566182e-01 6.96792454e-02\\n-8.21093395e-02 9.60538015e-02 4.69930135e-02 2.71116763e-01\\n-1.92358404e-01 -1.12043768e-01 1.16288483e-01 3.07152033e-01\\n-4.12232161e-01 -1.33328766e-01 -2.03985885e-01 1.19059302e-01\\n-3.91247123e-03 2.62317836e-01 -1.94980145e-01 5.64955845e-02\\n-1.57533824e-01 -5.43533564e-01 3.65039676e-01 -1.85788065e-01\\n-1.83677763e-01 -5.59363365e-02 2.66006261e-01 2.66440868e-01\\n-1.77906334e-01 -2.16637440e-02 -3.15545723e-02 2.85058022e-01\\n-9.34405252e-03 3.11616302e-01 -2.23829150e-01 -2.48703182e-01\\n-3.55325818e-01 2.39375353e-01 -4.14124914e-02 1.02587633e-01\\n2.35460699e-04 5.12061715e-01 3.74462493e-02 1.58546656e-01\\n3.61870110e-01 -7.27597475e-02 -2.90184677e-01 -3.13117445e-01\\n-1.83845267e-01 -2.68800318e-01 -5.72934300e-02 -4.00517508e-02\\n3.03331316e-01 -3.99256349e-01 -1.82873636e-01 -3.26407313e-01\\n-5.16338795e-02 -3.46780002e-01 -5.22978529e-02 -3.55726704e-02]]',\n", + " 'The Lausanne University Hospital (CHUV) is one of five Swiss university hospitals. Through its collaboration with the Faculty of Biology and Medicine of the University of Lausanne and the EPFL, CHUV plays a leading role in the areas of medical care, medical research and training. The mission of the Data Science group, wich part of CHUV Department of Information Systems, is to foster the adoption and use of data science and innovative tools in medical informatics within the hospital to significantly improve biomedical research and hospital key processes. To achieve this ambitious goal, one of the core tasks of the group is to develop the necessary IT infrastructure for providing physicians and scientists with the means to smoothly access and use, for their clinical research projects, the massive volume of clinical data that every day is generated within the hospital. Our current and future challenges lie at the intersection of big data, medical informatics, data protection and artifical intelligence. To address these challenges and push the bar furhter, a part of the Data Science Group is specifically focused on projects in Medical Informatics that will explore innovative Tools and technologies for implementing new prototype applications that could potentially be deployed in operational settings. As a Junior Software Engineer within our Data Science team, you will be responsible for : Defining technical and functional specification for new medical informatics applications based on end-users (scientists, physicians and IT experts) requirements and latest technological advances from the research academic community Developing and documenting robust and mature proofs of concept and prototypes of these applications and help in the transition to production environments within the team. In your past experiences, you have shown a proven track record of crafting innovative and elegant software solutions and the capacity to fully document the solutions you have developed. Your are passionate about technology and excited about working in the medical field. Requirements This position requires a university degree in Computer Science or Medical Informatics or equivalent discipline with : Proficiency in at least one object-oriented design development and data-driven development language (JAVA is highly preferable, Go is a plus) Excellent understanding of data structures and algorithms Ability to implement robust prototypes almost ready for deployment in production settings Experience with RESTful JSON APIs and design of micro-services and Web services Experience with relational database management systems and SQL Experience with front-end Framework such as VueJS, WebSockets ans HTML/CSS Experience with DevOps Tools for software deployment and automation using containerization frameworks such as Docker (Kubernetes and Docker Swarm are a plus) Experience with Agile software development as a team and version control (OAuth, OpenID connect, etc.) Oral and written proficiency in French is required to help you interact with end-users and peers on a daily basis. Benefits If you become an employee at the Centre Hospitalier Universitaire Vaudois, we will offer you the following : High social benefits Three days of training per year 25 working days of vacation per year Very good restaurants with preferential rates. ',\n", + " '[\"Research\", \"Collaboration\", \"Hospitality\", \"Operations\", \"Innovation\", \"Socialization\"]',\n", + " '[\"Automation\", \"Kubernetes\", \"Tooling\", \"Accessioning\", \"Model-Driven Development\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Computer Science\", \"Informatics\", \"Relational Database Management Systems\", \"MASSIVE (Software)\", \"Prototype (Manufacturing)\", \"OAuth\", \"IT Infrastructure\", \"Version Control\", \"DevOps\", \"Prototyping\", \"Docker Swarm\", \"Track (Rail Transport)\", \"Medic\", \"HyperText Markup Language (HTML)\", \"Containerization\", \"Functional Specification\", \"Software Engineering\", \"Agile Software Development\", \"Data Science\", \"Web Services\", \"Docker (Software)\", \"Biology\", \"Management Systems\", \"Clinical Research\", \"Object-Oriented Design\", \"Big Data\", \"Community Development\", \"Clinical Data Warehouse\", \"Data Structures\", \"Front End (Software Engineering)\", \"Relational Databases\", \"Software Development\", \"Algorithms\", \"Medical Research\", \"OpenID\", \"JSON\", \"Database Management Systems\", \"AN/PRC-148 Multiband Inter/Intra Team Radio (MBITR)\", \"SQL (Programming Language)\", \"Software Deployment\", \"Adoptions\", \"Information Systems\", \"Java Scripting Languages\"]',\n", + " \"['English', 'Nauru']\"],\n", + " ['4',\n", + " 'programmer/ data science support (m/f) - 80%',\n", + " 'Basel',\n", + " '',\n", + " '',\n", + " '[[-1.69559181e-01 2.61045039e-01 5.42519391e-01 -5.19233719e-02\\n5.73635876e-01 -1.75223008e-01 1.42872229e-01 5.47711968e-01\\n-1.49483308e-01 -3.14195931e-01 -9.71150696e-02 -2.80745804e-01\\n-5.10975625e-03 1.65138632e-01 7.38712028e-02 3.29974532e-01\\n2.57073194e-01 1.21915787e-01 -2.08528116e-01 3.22041720e-01\\n1.70315459e-01 -5.16750924e-02 2.15614945e-01 5.23017287e-01\\n4.37158197e-01 -2.26848647e-02 -5.94062358e-02 -1.19069122e-01\\n-2.85818309e-01 -2.79750973e-01 3.46649140e-01 -2.99130045e-02\\n-8.70705172e-02 -3.56072038e-01 2.88980501e-03 1.15294307e-02\\n-2.02563867e-01 -9.24908146e-02 -1.03959823e-02 1.12045050e-01\\n-3.99036109e-01 -2.78011531e-01 -6.99840998e-03 1.20948842e-02\\n-2.23054960e-01 -3.23620081e-01 4.56904024e-02 -8.19536373e-02\\n2.38736629e-01 -1.08799655e-02 -4.92464870e-01 3.84508371e-01\\n-2.17007533e-01 -3.33131164e-01 2.51089334e-01 6.32812142e-01\\n1.32363047e-02 -4.16864097e-01 -4.95691597e-01 -2.41715416e-01\\n1.56577259e-01 -1.36390507e-01 -3.19536626e-02 -2.44558737e-01\\n2.92316526e-01 1.42921150e-01 1.13413528e-01 3.46918553e-01\\n-7.33965993e-01 -4.56308499e-02 -2.03697920e-01 -1.03590615e-01\\n-2.48784602e-01 -3.24511491e-02 -2.79180169e-01 -1.09781079e-01\\n-8.13184232e-02 4.25945759e-01 7.12032244e-02 3.46262753e-03\\n-8.56100619e-02 2.86568940e-01 -1.51810765e-01 2.98519999e-01\\n2.66303480e-01 1.64818302e-01 6.28362447e-02 2.85928935e-01\\n-4.04340386e-01 3.96595925e-01 2.30243042e-01 -2.06571236e-01\\n2.05661267e-01 1.27953410e-01 4.77838993e-01 -5.30673489e-02\\n7.70454705e-02 9.09551606e-02 -2.75196165e-01 2.83835948e-01\\n1.07133336e-01 -2.86202669e-01 -4.04351540e-02 -1.13105968e-01\\n7.63121061e-03 -4.14532498e-02 8.66433606e-02 2.87331671e-01\\n-2.96275556e-01 5.19915879e-01 1.16746739e-01 -1.44542679e-01\\n-6.07493967e-02 -4.39251155e-01 -1.08514898e-01 -7.86080658e-02\\n1.03083931e-01 1.18938640e-01 1.74530551e-01 1.76006839e-01\\n3.53795618e-01 -4.17325273e-02 1.86267495e-01 8.00958335e-01\\n-8.35233368e-03 2.06699297e-01 -3.00938994e-01 2.67021954e-01\\n9.40238982e-02 -1.82002157e-01 1.24620430e-01 2.84927279e-01\\n6.12312593e-02 -4.72794473e-03 -8.46888348e-02 1.66716695e-01\\n-1.30873427e-01 -2.09762424e-01 -2.59347469e-01 1.32891521e-01\\n-7.88737088e-02 -2.57980108e-01 4.35365498e-01 6.72961995e-02\\n5.06005995e-02 2.92364527e-02 2.98433900e-02 5.16179577e-02\\n-1.50774702e-01 3.22195649e-01 3.02110277e-02 5.48875034e-02\\n-2.82821149e-01 -2.09953636e-01 -3.23273689e-01 -6.94895862e-03\\n-1.30527616e-01 4.30440344e-02 -1.40676603e-01 -9.75936130e-02\\n2.64813006e-01 1.99664645e-02 -3.12710434e-01 4.04200733e-01\\n2.19235220e-03 -2.83689145e-02 -7.41820559e-02 2.66578704e-01\\n-5.74858375e-02 2.59814113e-01 -8.23077857e-02 -1.31990656e-01\\n5.05799115e-01 -2.15233471e-02 -2.62188111e-02 -4.64327857e-02\\n3.96781087e-01 -7.18103349e-02 1.77392751e-01 1.30902916e-01\\n-6.40940428e-01 2.85164058e-01 -4.20664623e-02 -1.06860586e-01\\n1.75538555e-01 -6.35072216e-02 3.85438353e-01 -2.56160587e-01\\n1.82692066e-01 -6.12594420e-03 -4.68635619e-01 -3.67841691e-01\\n-1.63509533e-01 -1.14069656e-01 3.80764425e-01 -3.36363763e-01\\n-1.66630387e-01 8.75090212e-02 -4.05517995e-01 3.32829244e-02\\n2.90465802e-01 1.78733528e-01 1.05847955e-01 1.38064787e-01\\n-2.13794723e-01 -3.49654526e-01 1.87972382e-01 -2.99215347e-01\\n-1.69602990e-01 1.66425571e-01 -2.08925709e-01 2.64979154e-01\\n1.81014344e-01 -6.25934154e-02 -1.29213616e-01 8.04973207e-03\\n-5.87571710e-02 -9.19925645e-02 2.28851020e-01 3.14909406e-02\\n1.87288523e-01 -2.16550864e-02 -3.79277349e-01 4.62352127e-01\\n-1.93898380e-01 6.02391958e-01 6.46469444e-02 -9.40138519e-01\\n4.41719562e-01 3.05685431e-01 2.04894543e-02 -2.92578965e-01\\n6.16035938e-01 -2.84800082e-01 5.47714680e-02 9.40331221e-02\\n-3.94646257e-01 -3.31888109e-01 1.70989558e-01 -4.70160581e-02\\n-2.36498311e-01 4.84345973e-01 8.76298323e-02 6.06664941e-02\\n9.57808122e-02 -2.22869202e-01 -1.86219424e-01 8.61550421e-02\\n7.47404471e-02 -2.26348668e-01 -4.30374801e-01 -5.15934154e-02\\n-6.20339178e-02 -3.83331120e-01 -2.18496710e-01 -3.41895312e-01\\n-3.65211666e-01 -3.40019256e-01 -1.97324216e-01 1.96142510e-01\\n1.60420030e-01 5.39122336e-02 6.36644810e-02 1.60047218e-01\\n-1.51293576e-01 -5.04827797e-01 9.13019329e-02 2.14705750e-01\\n3.98680866e-01 1.81740731e-01 3.04496363e-02 5.51700965e-02\\n-8.48451778e-02 6.71570718e-01 -1.77370533e-01 -1.40297905e-01\\n2.00412825e-01 2.99488425e-01 1.48102017e-02 -1.67427436e-01\\n1.18504316e-01 3.21542799e-01 -1.54790223e-01 2.05655098e-01\\n-1.19753577e-01 2.09084414e-02 2.43226901e-01 4.82034460e-02\\n-2.89709657e-01 -2.03726515e-01 -1.91518083e-01 1.54055953e-01\\n-4.73538905e-01 -2.28871688e-01 5.89874029e-01 8.72442722e-02\\n8.71996135e-02 9.91741046e-02 2.54528403e-01 -6.36037588e-02\\n-1.05949089e-01 -3.09775740e-01 1.57138392e-01 9.38181579e-02\\n1.15508707e-02 1.62044168e-01 -1.56841025e-01 -6.62468731e-01\\n-3.50264668e+00 -1.57750204e-01 7.17371255e-02 -2.68244207e-01\\n2.68046975e-01 -2.36085445e-01 2.05025017e-01 -2.07913946e-02\\n-2.02054650e-01 1.16239227e-01 -2.67856568e-01 -1.35206744e-01\\n2.28944927e-01 3.40003788e-01 6.49405178e-03 2.51488596e-01\\n1.77406251e-01 -2.19866812e-01 -5.85528053e-02 3.48811984e-01\\n-1.65424749e-01 -5.20501733e-01 2.81273991e-01 -4.02567051e-02\\n3.27050209e-01 4.29545105e-01 -2.75370926e-01 -1.17527418e-01\\n-1.09366521e-01 -2.06329063e-01 2.01657712e-01 -2.47290939e-01\\n-1.12287365e-01 3.12663108e-01 1.60509109e-01 -7.41810054e-02\\n1.41327783e-01 -5.29600322e-01 -1.34378657e-01 -3.55879635e-01\\n1.83680817e-01 -7.41602480e-01 -4.79431963e-03 2.37614126e-03\\n7.31937647e-01 -3.50656658e-01 4.62759063e-02 1.14367023e-01\\n2.23921061e-01 1.88386276e-01 4.25716303e-02 -2.93453000e-02\\n-1.51794910e-01 -2.49134392e-01 -5.57363629e-02 -6.52535260e-02\\n4.31551784e-01 5.07369220e-01 -2.11863145e-01 8.27106461e-03\\n1.66721612e-01 -1.38316602e-01 -4.27338153e-01 -3.73184592e-01\\n-2.45091781e-01 -3.17767799e-01 -6.76983356e-01 -3.97260159e-01\\n-1.19645819e-01 -1.57112554e-01 -1.84190094e-01 3.91172469e-01\\n-2.42083982e-01 -3.48317742e-01 -3.87924276e-02 -3.33766192e-01\\n1.40076846e-01 1.09588457e-02 -7.20779598e-02 -2.23218873e-01\\n-2.81568110e-01 -4.11793023e-01 -2.79626790e-02 6.95841387e-02\\n-8.75670612e-02 -2.33418986e-01 4.79355678e-02 -6.62015155e-02\\n-3.27448517e-01 -5.08184910e-01 4.58720684e-01 1.16785966e-01\\n4.00476277e-01 1.36209190e-01 2.40951926e-01 1.34643272e-01\\n3.12567264e-01 -2.47941270e-01 2.66792458e-02 -4.71571624e-01\\n1.16266206e-01 9.16449353e-03 5.59624851e-01 -2.56389081e-01\\n1.99515931e-03 8.12223330e-02 -2.51877517e-01 -1.41523287e-01\\n2.92765617e-01 -1.72457304e-02 2.18308955e-01 -2.50974983e-01\\n2.25334942e-01 -2.50393450e-01 -3.39879662e-01 2.09343527e-02\\n1.54555872e-01 5.43740451e-01 1.74582098e-02 -3.80020529e-01\\n-2.87530094e-01 4.26547617e-01 -2.07242206e-01 -1.12821490e-01\\n-3.56357098e-01 7.33850151e-02 -2.10485220e-01 1.63525477e-01\\n-1.54642453e-02 -4.94578071e-02 -2.38461822e-01 -1.73267499e-01\\n-1.61419302e-01 2.41700232e-01 2.18712926e-01 3.46433818e-02\\n1.52585402e-01 -4.36194181e-01 -3.44422981e-02 7.53684938e-02\\n1.44002408e-01 2.56624132e-01 4.16669138e-02 -1.53528824e-01\\n-1.01806212e-03 2.27999210e-01 -8.80449116e-02 1.05122931e-01\\n-2.43456647e-01 1.34414107e-01 -4.31117445e-01 -3.62720400e-01\\n-2.43829682e-01 -2.10965201e-01 -6.89298511e-02 2.78716683e-01\\n2.30407342e-01 -7.77033791e-02 -8.78668278e-02 -5.22052884e-01\\n3.34861100e-01 -5.65334111e-02 1.90578148e-01 1.43789068e-01\\n1.21636942e-01 3.59480709e-01 5.80476783e-02 -1.44563079e-01\\n-9.27148759e-02 8.31906870e-02 -1.59935772e-01 -6.08359538e-02\\n8.06473345e-02 -4.16505367e-01 -1.24211408e-01 4.64099556e-01\\n1.82102531e-01 -2.44245932e-01 -2.13420033e-01 2.72017390e-01\\n3.12703401e-02 -3.62795502e-01 -2.72004664e-01 -1.47969881e-02\\n2.91681647e-01 6.18082434e-02 3.02771360e-01 -4.25682724e-01\\n-5.09558385e-03 -7.37296864e-02 -6.51836172e-02 4.34307694e-01\\n8.92547444e-02 -9.57039595e-02 -7.29712397e-02 -2.33184561e-01\\n3.82072628e-01 -4.68664691e-02 -3.54509316e-02 -3.82856466e-02\\n9.44935530e-02 -5.13739586e-02 -4.34929341e-01 1.06125011e-03\\n-7.39746541e-02 -3.69003177e-01 2.43522078e-02 9.03518796e-02\\n1.51525259e-01 1.18993938e-01 -4.34937388e-01 -2.32588843e-01\\n-4.17502046e-01 -1.85799718e-01 -6.65295795e-02 -4.70479012e-01\\n-5.96743040e-02 4.17221822e-02 -5.89449406e-01 1.33043408e-01\\n-2.68843830e-01 -3.94336879e-02 1.83014214e-01 -1.57001764e-02\\n-4.20196533e-01 -1.29450887e-01 1.20374054e-01 7.48296157e-02\\n-2.50387102e-01 -1.48632959e-01 4.73291203e-02 -1.01826227e+00\\n1.69331878e-01 -7.56412148e-02 -1.19695023e-01 1.28890544e-01\\n-4.08417992e-02 -5.30741334e-01 1.68627098e-01 -3.02677006e-01\\n-3.13305944e-01 -1.13266230e-01 -2.57058978e-01 -5.31323612e-01\\n7.08769858e-02 7.74386749e-02 -2.51126230e-01 2.67384976e-01\\n-3.23223263e-01 4.46502954e-01 2.89931409e-02 1.22006893e-01\\n-4.98275533e-02 -3.16053182e-01 3.13113108e-02 -5.51318526e-01\\n-4.13637400e-01 -7.06232414e-02 -2.91413933e-01 -1.11475408e-01\\n1.97787192e-02 -1.95635259e-01 -9.02907029e-02 5.58687598e-02\\n1.88760564e-01 1.58019036e-01 1.93215348e-02 -1.58110902e-01\\n1.74831331e-01 -6.10993922e-01 -2.91324407e-02 -2.66821422e-02\\n-1.75215490e-02 -1.07206263e-01 3.46325934e-01 5.62866628e-02\\n1.33578300e-01 -3.36930424e-01 3.26041371e-01 -3.95532966e-01\\n-2.82947332e-01 -1.03897728e-01 -1.43822925e-02 -1.90414004e-02\\n4.36966419e-01 -5.25637865e-01 3.30386721e-02 1.79084182e-01\\n3.57898623e-02 4.40014116e-02 2.58653700e-01 -2.01891754e-02\\n-1.78549930e-01 2.21666709e-01 -4.71326292e-01 8.77693519e-02\\n7.45355308e-01 1.19806975e-01 1.14133827e-01 1.54601410e-01\\n1.56324595e-01 2.52127022e-01 4.39371616e-01 -3.45676541e-02\\n-1.70427799e-01 2.88810760e-01 5.38588353e-02 -6.93008661e-01\\n6.78328937e-03 6.48628101e-02 -3.10047776e-01 -3.78391713e-01\\n7.11907029e-01 3.98961246e-01 -3.09499472e-01 -1.81525901e-01\\n-3.24246943e-01 -2.68769801e-01 6.51824921e-02 -1.76272452e-01\\n1.31830409e-01 -7.76034966e-02 5.01379073e-01 -3.15096788e-02\\n3.34305167e-01 4.74057347e-01 -2.82085627e-01 -2.25963771e-01\\n-1.39362039e-02 4.03376743e-02 1.00596718e-01 3.51312995e-01\\n-5.87005503e-02 2.34526485e-01 -1.57851037e-02 2.03820631e-01\\n-1.10200256e-01 1.59019139e-02 3.88498716e-02 -5.23046255e-02\\n1.04269981e-01 8.05894881e-02 6.15327716e-01 2.53196776e-01\\n3.58386964e-01 4.32132602e-01 3.34582210e-01 6.42120615e-02\\n5.59861064e-01 4.41677213e-01 2.45480642e-01 1.34995341e-01\\n5.61291054e-02 5.86763211e-02 1.26304463e-01 4.12375741e-02\\n3.18288386e-01 3.36260140e-01 2.84704231e-02 9.10725772e-01\\n3.37712348e-01 3.09503317e-01 5.87512612e-01 -4.98412520e-01\\n-3.38098049e-01 -7.85477832e-03 4.13627356e-01 -3.67102951e-01\\n-6.27095252e-02 8.89910311e-02 -6.79995194e-02 1.35750145e-01\\n-3.77390772e-01 -1.78885475e-01 -9.30633023e-02 2.09513754e-01\\n8.29699859e-02 -1.87860638e-01 -2.45456874e-01 5.96090779e-03\\n-1.29184738e-01 -4.73713949e-02 -4.16860819e-01 -9.01618525e-02\\n-6.71485439e-02 -2.71332860e-01 -1.96409330e-01 -9.96501222e-02\\n-5.47715537e-02 -3.18350732e-01 -9.65505466e-02 -1.46008292e-02\\n2.33853787e-01 -2.32009888e-02 4.96165976e-02 -1.44123480e-01\\n3.21401536e-01 2.35773399e-01 5.17751694e-01 -2.33540758e-02\\n2.60680646e-01 -2.69019067e-01 -1.34609401e-01 1.40931562e-01\\n1.56894565e-01 1.02525009e-02 5.16251363e-02 4.09296632e-01\\n-3.22130501e-01 -1.26402259e-01 1.53372973e-01 4.42921460e-01\\n-3.94530982e-01 -7.64973536e-02 -5.67400493e-02 1.92955613e-01\\n8.60839039e-02 8.53603333e-02 -3.55850339e-01 7.70744979e-02\\n-2.81288654e-01 -3.80233735e-01 2.18698695e-01 -6.21601045e-02\\n-1.00984126e-01 -1.35791479e-02 2.59958327e-01 2.11997464e-01\\n-2.14227021e-01 -9.65067372e-03 -9.41812545e-02 4.65984121e-02\\n1.99218988e-01 3.02736729e-01 -2.76144505e-01 -2.79398412e-01\\n-1.86256424e-01 2.50352621e-01 -1.39549315e-01 7.01435283e-02\\n5.17217629e-03 3.56534421e-01 2.24303119e-02 1.68227211e-01\\n4.28202271e-01 -2.15557992e-01 -1.66514173e-01 -3.09013516e-01\\n-3.04064721e-01 -3.36886525e-01 -1.09070856e-02 -1.24030970e-01\\n1.13476910e-01 -3.18715453e-01 -1.44572891e-02 -1.33754620e-02\\n-1.14702627e-01 -3.43547970e-01 -9.17008612e-03 -1.23789934e-02]]',\n", + " \"For our client we are currently looking for aYour challenges•Use of programming experience to establish tailor-made software solutions based on different programming languages•Support for operational requirements of specific parts of the business, like troubleshooting and system migration•Responsible for system administration activities•Create all important documentation•Track, Troubleshoot and resolve system related problems•Apply and write suitable testing procedures and scriptsYour skills•Experience in at least one of these programming languages (HTML, CSS, JavaScript, Python, .NET, MS Office)•Background in Frameworks/Applications as React, VS code, Git, Svelte•Excellent communication skills•Experience in dynamic environment•Fluent spoken and written EnglishYour horizonsWe offer you a nice challenge at one of the world's leading companies. Spring Professional provides one of the most comprehensive benefits package in the industry to contract employees! Don't miss it! Next to a fix salary you will gain from nice fringe benefits offered by our client.About Spring ProfessionalAdvance your career, find a job that you love or discover a new opportunity for professional growth – we believe in these goals and work every day to help you achieve them. Spring Professional is a subsidiary of The Adecco Group specialising in temporary and permanent placement of qualified professionals.Find out what we can do for you. Apply for this job, or for one of over 500 other vacancies at SpringProfessional.chYour contactInformation Technology A406, looks forward to answer your questions by phone +41 58 233 4580.You can apply directly online.Please mention reference JN -112019-297967 in your application.JN -112019-297967\",\n", + " '[\"Writing\", \"Professionalism\", \"Communications\", \"Operations\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"System Administration\", \"Nice (Unix Utility)\", \"KM Programming Language\", \"Programming (Music)\", \"Project-Based Solutions\", \"Python (Programming Language)\", \"Git Flow\", \"Cascading Style Sheets (CSS)\", \"Financial Information eXchange (FIX) Protocol\", \"JavaScript (Programming Language)\", \"HyperText Markup Language (HTML)\", \"Web Application Frameworks\", \"Industrialization\", \"React.js\"]',\n", + " \"['English', 'Welsh', 'Flemish', 'Sango']\"],\n", + " ['57',\n", + " 'embedded c++ software engineer',\n", + " 'Argovia',\n", + " '',\n", + " '',\n", + " '[[-1.28433421e-01 2.83800691e-01 6.33915722e-01 -1.78634495e-01\\n5.39020002e-01 -3.36250365e-01 6.18693605e-02 3.50471020e-01\\n-7.10186884e-02 -3.54706466e-01 -1.74907476e-01 -2.11526304e-01\\n-9.95143130e-02 4.14948240e-02 1.44126892e-01 3.07880491e-01\\n2.99018383e-01 8.96476954e-02 -1.44576609e-01 3.54188442e-01\\n2.68983066e-01 -1.06261246e-01 1.31449848e-01 6.80427611e-01\\n3.26738596e-01 4.70369793e-02 -4.60847206e-02 1.59742296e-01\\n-2.50792265e-01 -3.15738320e-01 3.22002202e-01 -1.88197382e-02\\n-1.56722188e-01 -2.02449366e-01 9.01135653e-02 3.54674384e-02\\n-2.25774884e-01 3.02493162e-02 4.97582592e-02 1.35087311e-01\\n-3.64428759e-01 -2.31375441e-01 1.10086657e-01 -6.57876655e-02\\n-1.91520810e-01 -3.74891162e-01 5.34251742e-02 1.54175824e-02\\n1.33457497e-01 3.06025743e-02 -3.08697760e-01 4.29379880e-01\\n-2.13567898e-01 -2.57574588e-01 2.82620788e-01 5.16020358e-01\\n-5.81523664e-02 -5.58755100e-01 -3.11011344e-01 -2.14066491e-01\\n1.49219289e-01 -1.04092278e-01 7.29059502e-02 -2.60019720e-01\\n4.82323080e-01 2.15871483e-02 -8.75292625e-03 2.87231207e-01\\n-7.70939112e-01 -2.97951270e-02 -2.14138210e-01 4.92615402e-02\\n-2.69597352e-01 -1.78969763e-02 -1.71551317e-01 -1.08788617e-01\\n-1.45132795e-01 4.40129548e-01 1.38669759e-01 1.37510031e-01\\n-4.95421961e-02 1.91691786e-01 -2.06324264e-01 2.22782061e-01\\n2.85600394e-01 2.98755765e-01 1.22878239e-01 2.50821173e-01\\n-3.89812648e-01 4.43323404e-01 1.48270443e-01 -2.45784834e-01\\n1.55818790e-01 2.37349123e-01 4.09518898e-01 4.22994047e-02\\n1.23376392e-01 9.40941647e-02 -1.87994063e-01 2.51849562e-01\\n2.98664182e-01 -2.55997926e-01 4.81074676e-03 6.54120445e-02\\n-8.02418739e-02 1.01241786e-02 -3.76035161e-02 3.63168985e-01\\n-4.17028069e-01 5.32698572e-01 -7.96160381e-03 -1.28235638e-01\\n4.30529155e-02 -6.28311574e-01 -2.03172490e-01 7.82053992e-02\\n-1.81007723e-03 5.45773357e-02 2.48085499e-01 2.82290280e-01\\n2.03134596e-01 1.23822674e-01 2.10894838e-01 9.86788034e-01\\n-2.25828122e-02 1.95756823e-01 -1.78452313e-01 4.59622473e-01\\n1.73260570e-01 -2.30558112e-01 2.27671489e-01 4.52559143e-01\\n1.71795160e-01 -1.16756052e-01 -1.33527979e-01 2.48957768e-01\\n-3.83067951e-02 -2.56491303e-01 -2.53842205e-01 1.90527380e-01\\n-1.25883251e-01 -5.89017451e-01 5.86031079e-01 4.97433692e-02\\n7.57842213e-02 4.33128327e-02 -6.19511977e-02 -7.17294887e-02\\n-1.44944251e-01 1.76976144e-01 8.22115839e-02 9.14429501e-02\\n-3.51145148e-01 -1.74420819e-01 -3.71995151e-01 1.66720226e-01\\n-2.54291981e-01 8.60551447e-02 -1.11995898e-01 -1.00853324e-01\\n2.36959651e-01 -2.71535553e-02 -3.96469057e-01 3.48099649e-01\\n-8.03437233e-02 -3.56233194e-02 -2.82146148e-02 2.88996488e-01\\n-8.83134902e-02 1.99030668e-01 -1.10869899e-01 -1.88610107e-01\\n3.79173994e-01 1.58160299e-01 8.91948417e-02 -6.74522519e-02\\n3.43650758e-01 -2.61498857e-02 8.30162019e-02 -2.52666343e-02\\n-8.15940619e-01 4.24162418e-01 -1.70750711e-02 -9.35131311e-02\\n5.52144228e-03 -2.17773635e-02 3.21559012e-01 -3.61311913e-01\\n6.65487945e-02 -1.76721483e-01 -3.44664007e-01 -2.30164394e-01\\n-1.99938595e-01 -8.17781966e-03 4.66814369e-01 -4.13906038e-01\\n-1.49052903e-01 1.12112194e-01 -5.38332105e-01 1.61192104e-01\\n3.38802099e-01 2.04717040e-01 2.57980943e-01 1.52376816e-01\\n-1.29490107e-01 -5.06538332e-01 3.04553583e-02 -3.55656892e-01\\n-2.97343463e-01 1.70748323e-01 -2.47116402e-01 2.33990937e-01\\n1.79551721e-01 -7.68691348e-03 -9.27392989e-02 -3.30867805e-03\\n-1.53524086e-01 -1.21811941e-01 2.10250795e-01 6.13110289e-02\\n3.45731229e-01 -4.94562685e-02 -3.23100448e-01 5.71458280e-01\\n-2.19040707e-01 4.19847786e-01 6.44316524e-02 -8.19191635e-01\\n4.59880859e-01 3.33465219e-01 5.42193875e-02 -3.76955301e-01\\n7.01029181e-01 -2.66211987e-01 -1.03540562e-01 1.94682166e-01\\n-4.12295789e-01 -2.49587297e-01 1.17122680e-01 -6.70905486e-02\\n-2.83816338e-01 4.94197756e-01 1.32125109e-01 7.79995546e-02\\n2.35521883e-01 -1.75491020e-01 -1.75365642e-01 -1.14681176e-03\\n-1.25734836e-01 -3.06762069e-01 -3.31499130e-01 1.03825867e-01\\n-2.85401102e-02 -5.48044503e-01 -9.67832357e-02 -4.42876756e-01\\n-2.12768346e-01 -3.55495423e-01 -2.72539377e-01 2.52298743e-01\\n1.18782647e-01 1.00615039e-01 6.52704760e-02 -9.68820751e-02\\n-3.01340014e-01 -5.49830675e-01 2.49984693e-02 1.15947574e-01\\n3.16684127e-01 1.62267193e-01 1.89710036e-02 -5.14201783e-02\\n4.44855075e-03 6.63841128e-01 -1.92240447e-01 -2.12481782e-01\\n8.82792249e-02 2.30699867e-01 -3.59785147e-02 -9.96194407e-02\\n1.37030154e-01 3.83554220e-01 -1.85891986e-01 4.48949970e-02\\n-1.82216585e-01 4.51208092e-02 2.88214743e-01 -1.36769652e-01\\n-2.40017131e-01 -3.82843882e-01 -8.07627663e-02 1.07503720e-01\\n-5.38244605e-01 -2.05664426e-01 5.71824491e-01 1.56202257e-01\\n1.42702460e-01 1.17312402e-01 2.65082389e-01 -1.84468552e-01\\n-1.69798672e-01 -9.33347419e-02 1.12396643e-01 7.14631602e-02\\n4.12950255e-02 1.38561651e-01 -1.49420395e-01 -5.27378559e-01\\n-3.50507236e+00 -1.14133649e-01 5.79554476e-02 -3.30120802e-01\\n1.81312278e-01 -1.57222182e-01 7.08583370e-02 -9.66312438e-02\\n-2.36728773e-01 6.52545020e-02 -1.78822264e-01 -1.36458546e-01\\n1.99731067e-01 2.08037272e-01 9.82021615e-02 1.94051802e-01\\n1.35492131e-01 -2.21733466e-01 -1.84385218e-02 3.17551523e-01\\n-1.14467166e-01 -5.32933831e-01 2.14331567e-01 -1.01963326e-01\\n3.24740142e-01 3.29029381e-01 -3.42188150e-01 -9.57525820e-02\\n-1.99341059e-01 -2.78295010e-01 3.41204964e-02 -1.99339688e-01\\n-2.46953070e-02 3.69957864e-01 1.20396130e-01 -1.27388481e-02\\n2.36453936e-01 -3.24682593e-01 4.56906147e-02 -3.27549428e-01\\n1.67174712e-01 -5.59851646e-01 -8.31977800e-02 -9.68518555e-02\\n5.99866509e-01 -3.87498289e-01 1.60631239e-01 1.92121252e-01\\n6.83304518e-02 2.55310148e-01 6.12892620e-02 -1.65842786e-01\\n-1.36378258e-01 -2.19628200e-01 -4.88314917e-03 -2.33214110e-01\\n3.63233298e-01 6.52706444e-01 -2.15781659e-01 -9.96714607e-02\\n-3.82380262e-02 -3.55498254e-01 -5.41756630e-01 -4.27337825e-01\\n-1.73982471e-01 -1.10364236e-01 -6.65824175e-01 -4.67487693e-01\\n-1.15721680e-01 -1.14774451e-01 -8.58013481e-02 4.10427809e-01\\n-1.81438282e-01 -3.81029010e-01 -7.03048557e-02 -3.50005478e-01\\n7.06800148e-02 -1.30912155e-01 -5.85656986e-02 -1.15818635e-01\\n-1.77744329e-01 -4.48256046e-01 2.95500550e-02 4.52475771e-02\\n-1.27806023e-01 -2.05350921e-01 1.95867211e-01 -2.43503764e-01\\n-2.64017642e-01 -4.62816238e-01 4.72209632e-01 1.48906698e-03\\n3.56957227e-01 5.22785597e-02 2.17943907e-01 5.98901659e-02\\n3.62339199e-01 -2.39116907e-01 1.07705407e-01 -4.01276737e-01\\n1.81415752e-01 8.37729797e-02 5.67245126e-01 -1.69396266e-01\\n-3.70191745e-02 9.10851657e-02 -1.93963408e-01 -1.45988151e-01\\n2.85134494e-01 -7.23942593e-02 8.41377825e-02 -4.28165138e-01\\n2.92338550e-01 -4.22561377e-01 -2.38714069e-01 1.19867243e-01\\n1.04501903e-01 6.01891637e-01 -1.08066655e-03 -3.74050736e-01\\n-2.28009582e-01 3.79262328e-01 -1.94812819e-01 -1.70733213e-01\\n-1.90741628e-01 8.17329139e-02 -3.14837247e-01 2.75991440e-01\\n-2.67412011e-02 -2.98363473e-02 -3.19977432e-01 -4.78463024e-02\\n6.61473274e-02 2.54173577e-01 2.47520044e-01 1.45302698e-01\\n1.88556146e-02 -3.65112722e-01 -2.11988389e-02 8.15870464e-02\\n1.89037308e-01 2.40460590e-01 8.40763003e-02 -1.64467141e-01\\n2.04309411e-02 3.36773962e-01 -9.68240425e-02 2.71660239e-01\\n-2.06773236e-01 9.14297327e-02 -4.53723282e-01 -3.67636085e-01\\n-2.16123655e-01 -1.78860724e-01 -1.04994699e-01 2.98157960e-01\\n9.89428237e-02 -3.67642976e-02 4.06952612e-02 -4.09063011e-01\\n2.62071520e-01 -2.12296639e-02 2.61974841e-01 2.05172285e-01\\n-5.99016100e-02 5.55333853e-01 4.71055359e-02 -1.74346894e-01\\n-1.98169261e-01 1.17390223e-01 -2.03149781e-01 -1.20898336e-01\\n1.85418837e-02 -3.56675744e-01 -3.25325467e-02 3.57393175e-01\\n1.06972635e-01 -3.89072537e-01 -6.25909120e-02 3.01125318e-01\\n8.05768520e-02 -4.11367327e-01 -1.89900219e-01 7.30234459e-02\\n2.93910265e-01 -3.90980439e-03 2.77724475e-01 -4.47771460e-01\\n2.24705078e-02 3.88565548e-02 -5.22622429e-02 4.18771863e-01\\n1.28139080e-02 -5.71447462e-02 -7.10191429e-02 -2.90025443e-01\\n2.80762672e-01 -1.28526226e-01 -6.53350577e-02 -8.17710459e-02\\n1.72963008e-01 -1.24809131e-01 -3.98507923e-01 8.78012460e-03\\n-6.90002367e-02 -5.11021502e-02 7.45286196e-02 -1.47194415e-02\\n7.99602270e-02 8.00486431e-02 -4.67562854e-01 -2.93140441e-01\\n-2.50585288e-01 -1.59029290e-01 2.59294212e-02 -3.90652388e-01\\n3.00317053e-02 -2.66944487e-02 -5.35912812e-01 2.67678171e-01\\n-2.69338906e-01 6.75514936e-02 2.18764707e-01 2.84709428e-02\\n-4.46686655e-01 -1.84435442e-01 2.14141771e-01 1.88673332e-01\\n-2.47588038e-01 -1.68189839e-01 -9.81839597e-02 -1.04709041e+00\\n3.06426793e-01 -6.33917451e-02 -1.01985127e-01 1.21544152e-01\\n-1.20568283e-01 -6.26050234e-01 8.57298225e-02 -4.13252085e-01\\n-1.00614451e-01 -1.49875339e-02 -2.38643572e-01 -3.98722202e-01\\n-2.83432938e-02 3.43034230e-02 -2.01497883e-01 3.57982546e-01\\n-4.22159731e-01 3.86440337e-01 -5.65341264e-02 3.16583551e-02\\n-1.71221972e-01 -2.21855760e-01 7.08112195e-02 -5.40367782e-01\\n-3.45280826e-01 -1.54359028e-01 -1.79634154e-01 -1.46865696e-01\\n-1.13110654e-01 -1.75628528e-01 -1.39088452e-01 1.60523932e-02\\n1.87968925e-01 1.33474991e-01 -8.16908106e-02 -2.01927856e-01\\n1.29431143e-01 -3.81974339e-01 -7.66769145e-03 -2.25014433e-01\\n2.51045842e-02 -1.77515507e-01 1.70466989e-01 -3.03018343e-04\\n9.87488329e-02 -4.01008338e-01 3.97766799e-01 -1.88991487e-01\\n-2.92879462e-01 1.02180161e-01 4.79772016e-02 7.53536895e-02\\n3.57520193e-01 -3.95414799e-01 1.10221513e-01 2.92540908e-01\\n1.13467745e-01 1.12192407e-01 2.77721047e-01 -3.64876129e-02\\n-1.72207966e-01 2.38991588e-01 -3.93743992e-01 8.59974250e-02\\n7.32881427e-01 2.97189057e-01 1.58212021e-01 1.98865160e-01\\n1.37176216e-01 3.69927585e-01 4.75132555e-01 6.58161044e-02\\n2.54429244e-02 3.43930602e-01 1.48603290e-01 -4.97131199e-01\\n1.14491684e-02 9.88937393e-02 -3.17505777e-01 -1.44827485e-01\\n6.66551888e-01 4.91154224e-01 -2.71417469e-01 -2.81774104e-01\\n-1.67884424e-01 -1.89721093e-01 1.27269432e-01 -2.13991731e-01\\n1.51702031e-01 -1.62050515e-01 4.47599441e-01 3.09262984e-02\\n9.18053612e-02 5.02451062e-01 -2.47647077e-01 -3.13656896e-01\\n-1.37542840e-03 1.86178103e-01 8.89784843e-02 3.57871026e-01\\n-1.20338134e-01 1.59948587e-01 -8.52698740e-03 2.14388952e-01\\n-1.72230750e-01 9.49594304e-02 1.60680637e-01 5.09544797e-02\\n8.36217254e-02 9.10788327e-02 2.14982271e-01 4.36046630e-01\\n2.54125178e-01 4.25276756e-01 1.74210683e-01 2.78347898e-02\\n3.91543746e-01 4.93211806e-01 3.12494814e-01 2.18564793e-01\\n-5.16255945e-02 2.27069929e-02 2.10860893e-02 -3.27918492e-02\\n2.91653186e-01 2.70179361e-01 7.11899623e-02 8.53200436e-01\\n4.39373076e-01 3.03306848e-01 7.65148759e-01 -5.56690991e-01\\n-3.87017161e-01 -3.83014716e-02 4.16081369e-01 -3.88589352e-01\\n-1.10108614e-01 -2.64652669e-02 -1.67632952e-01 2.33385071e-01\\n-4.33764011e-01 -2.59843558e-01 -1.19761944e-01 4.60198373e-02\\n1.29545003e-01 -1.68486107e-02 -2.99336761e-01 -1.67779967e-01\\n-2.39868730e-01 -1.56157747e-01 -4.80226755e-01 -1.36668593e-01\\n-1.60112023e-01 -2.05837473e-01 -2.10229024e-01 -1.34707659e-01\\n-1.21074924e-02 -4.04343307e-01 -1.50747716e-01 1.32015934e-02\\n2.08595172e-01 -1.88118473e-01 -9.82663929e-02 -1.66224003e-01\\n1.83278844e-01 1.78857848e-01 5.96804202e-01 3.92737985e-02\\n1.35834053e-01 -2.04810753e-01 -9.05457288e-02 5.02281338e-02\\n1.04900390e-01 2.15764537e-01 5.34457527e-02 4.86155838e-01\\n-4.31596845e-01 -1.22395642e-01 -3.90695035e-03 4.49645370e-01\\n-3.89831394e-01 2.88339853e-02 -3.62098254e-02 1.90990627e-01\\n4.92876917e-02 1.62523501e-02 -2.19567522e-01 3.00055277e-02\\n-2.95063466e-01 -5.91871738e-01 2.66060144e-01 -9.38896760e-02\\n-1.34660274e-01 1.39257926e-02 1.84611619e-01 1.63028345e-01\\n-2.26682484e-01 -1.00893877e-01 1.76355511e-01 1.16851568e-01\\n2.35383123e-01 3.20811391e-01 -2.54373908e-01 -1.80279464e-01\\n-2.78867334e-01 2.42230162e-01 -3.61404300e-01 1.94596037e-01\\n-1.12791874e-01 3.12070161e-01 9.98944789e-02 1.26493871e-01\\n3.19472939e-01 -1.18930086e-01 -1.55731246e-01 -2.04266027e-01\\n-2.57170141e-01 -1.96373388e-01 2.19955202e-02 -5.13605494e-03\\n2.05219075e-01 -3.65293950e-01 -9.23338234e-02 -3.75380516e-02\\n-1.17860779e-01 -3.92964602e-01 -4.78049144e-02 -1.81852803e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for an Embedded C++ Software Engineer. This role is permanent position based in Aargau Canton. Your role: Concept, design & develop multitasking real-time / embedded software with C ++ 11 under QNX. Help shape the architecture, specification & implementation of embedded software for a future generations of Laser Tracker systems. Design & implementation unit & system tests. Create development & troubleshooting tools. Collaborate in agile SW development process with various interdisciplinary teams & cooperate closely also with application testers. Your Skills: Strong knowledge in the development of embedded software with C ++ in real-time applications. Experienced with modern real-time operating systems (QNX, RT Linux etc.). Ideally experienced in planning & implementing software tests (unit, integration & system tests). Knowledge of current design methods (design patterns, UML, TDD, etc.) is desirable. Skills & experience in Python is considered advantageous. Your Profile: Completed University Degree in Electrical Engineering or Computer Science. Dynamic, up for big challenges & comfortable in high-tech environments. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format to sem@helvetica-partners.com You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Positivity\", \"Cooperation\", \"Planning\", \"Multitasking\", \"Integration\", \"Troubleshooting (Problem Solving)\"]',\n", + " '[\"Real Time Data\", \"Test-Driven Development (TDD)\", \"Agility\", \"Real-Time Application Interface (RTAI)\", \"Unit Testing\", \"Computer Science\", \"UML Tool\", \"Collaboration Tools\", \"Distributed Design Patterns\", \"Embedded C++\", \"QNX (Software)\", \"Web Design Concepts\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Linux\", \"High Tech Manufacturing\", \"Idealization\", \"Software Engineering\", \"Operating Systems\", \"Design Methods\", \"C (Programming Language)\", \"Electrical Engineering\", \"Laser Tracker\", \"Receivables\", \"Systems Design\", \"Software Testing\", \"Embedded Software\", \"Real-Time Operating Systems\", \"System Testing\", \"Process Driven Development\"]',\n", + " \"['English', 'Czech', 'Turkmen', 'Bislama', 'Norwegian']\"],\n", + " ['94',\n", + " 'saas & open-data development engineers',\n", + " 'Rolle',\n", + " '',\n", + " '',\n", + " '[[-8.84736553e-02 2.41919011e-01 6.12432182e-01 1.17697574e-01\\n6.16215467e-01 -6.42231181e-02 -1.31970704e-01 5.38616717e-01\\n-1.32668704e-01 -3.84660423e-01 3.77689451e-02 -3.60987097e-01\\n-6.04589283e-02 2.30093494e-01 1.72765180e-01 4.34548855e-01\\n1.83192998e-01 3.63055579e-02 -1.65740162e-01 2.67881513e-01\\n1.02243528e-01 -4.69515361e-02 3.48026693e-01 7.76968122e-01\\n3.32396507e-01 -1.38146371e-01 -6.98562413e-02 6.62104115e-02\\n-2.60016054e-01 -8.67173597e-02 4.17284906e-01 1.27730161e-01\\n-3.32209557e-01 -4.02919441e-01 1.16316535e-01 5.55696450e-02\\n-2.37498611e-01 -1.31318599e-01 -2.92957388e-02 1.12921357e-01\\n-5.80412507e-01 -3.28383714e-01 -8.09447616e-02 6.74306750e-02\\n-3.46572906e-01 -2.44941428e-01 9.31661949e-03 -1.86708309e-02\\n1.03522837e-01 1.03569023e-01 -5.14847040e-01 1.23196423e-01\\n-1.12720743e-01 -3.01769853e-01 2.20641196e-01 6.71360672e-01\\n6.81209117e-02 -4.06091511e-01 -4.51120973e-01 -3.24904770e-01\\n9.17415917e-02 -1.12229757e-01 6.13092072e-02 -3.56677771e-01\\n3.03087562e-01 -5.87963350e-02 1.64652560e-02 1.93191841e-01\\n-6.93414032e-01 2.38288473e-02 -2.33804762e-01 -1.47518933e-01\\n-3.15329462e-01 6.18902817e-02 -2.97626495e-01 -2.42492035e-01\\n-1.44667029e-01 4.33701217e-01 1.31305158e-01 1.11019388e-01\\n-1.50597528e-01 2.47312263e-01 -1.04015507e-01 3.70837659e-01\\n1.78832054e-01 3.69158030e-01 2.23606929e-01 3.22638959e-01\\n-3.73376667e-01 4.07187790e-01 1.23610720e-01 -2.65248090e-01\\n2.37748519e-01 1.79369792e-01 2.60767937e-01 -3.19731198e-02\\n1.99742496e-01 -3.80939171e-02 -3.38774532e-01 2.55127251e-01\\n1.66170642e-01 -4.89973366e-01 1.56059548e-01 -1.37409851e-01\\n-2.91071110e-03 -9.35484562e-03 5.29987477e-02 1.72150329e-01\\n-3.07736784e-01 3.31511438e-01 -9.75141581e-03 -1.83410212e-01\\n-6.16281517e-02 -4.30995047e-01 -1.41203254e-01 5.74008711e-02\\n4.13490981e-02 2.14751825e-01 2.29491144e-01 1.36725515e-01\\n2.72884190e-01 4.15500924e-02 2.00089261e-01 8.26575220e-01\\n-1.01523191e-01 1.22595973e-01 -2.15934291e-01 2.78273314e-01\\n1.04444064e-01 -3.02430749e-01 2.50487655e-01 2.11041972e-01\\n-4.98010106e-02 -9.42349657e-02 -2.13046059e-01 2.54772991e-01\\n2.46972758e-02 -2.07937703e-01 -2.51234353e-01 1.31882638e-01\\n6.11384101e-02 -4.97514218e-01 5.43788254e-01 8.31065923e-02\\n1.56877622e-01 -1.19561953e-02 -6.43652305e-02 -9.73375663e-02\\n-2.58714594e-02 2.39994973e-01 1.08834561e-02 1.40085697e-01\\n-2.57190377e-01 -1.34198502e-01 -2.20970795e-01 -5.64923510e-02\\n-4.84618783e-01 1.74180657e-01 -2.61870492e-03 -9.50599611e-02\\n2.02970713e-01 -4.20724228e-02 -2.46544674e-01 3.05305272e-01\\n-2.90376037e-01 -1.57171533e-01 1.00669160e-01 3.03827971e-01\\n-3.33609164e-01 1.24858879e-01 -4.12712581e-02 -2.41804451e-01\\n4.68797714e-01 1.51310444e-01 3.22709411e-01 5.13660572e-02\\n2.20861048e-01 -7.63877109e-02 1.25798220e-02 2.25749254e-01\\n-6.80219054e-01 3.12701553e-01 9.46367458e-02 -2.03057796e-01\\n2.09997013e-01 -9.98928025e-02 2.42035434e-01 -2.14426339e-01\\n1.05195731e-01 -1.19733736e-01 -3.10576200e-01 -2.43693173e-01\\n-2.50029624e-01 -1.11449482e-02 3.08066875e-01 -5.88151038e-01\\n-8.85183588e-02 -6.81326771e-03 -4.59642947e-01 -1.65356681e-01\\n8.05867016e-02 2.61000484e-01 8.85389671e-02 -6.61543459e-02\\n-1.77584067e-01 -4.06854153e-01 4.10916144e-03 -3.55987817e-01\\n-1.66966155e-01 -2.51327865e-02 -3.42965454e-01 1.76653370e-01\\n5.54593652e-02 -3.25680003e-02 -9.56261456e-02 -9.40824579e-03\\n-2.53544331e-01 7.96341375e-02 1.03581689e-01 6.38189167e-02\\n3.22969556e-01 1.15117999e-02 -2.08913103e-01 5.06031156e-01\\n-1.80207267e-01 6.66844666e-01 1.73181459e-01 -8.14377546e-01\\n4.54653323e-01 2.86863357e-01 -1.07230963e-02 -2.92135686e-01\\n6.37848198e-01 -3.75582367e-01 -8.85041524e-03 1.87342823e-01\\n-3.45231771e-01 -2.83567667e-01 1.51937395e-01 -2.25106969e-01\\n-2.58491546e-01 5.26574135e-01 1.42717451e-01 1.70898438e-01\\n2.14334786e-01 -3.03610891e-01 -6.75523803e-02 -8.32155868e-02\\n-1.54264092e-01 -3.83195549e-01 -5.73028982e-01 -6.55015782e-02\\n-1.25790730e-01 -3.36801231e-01 -1.47425279e-01 -4.62748349e-01\\n-9.27001834e-02 -4.03450519e-01 -2.65678197e-01 1.94546476e-01\\n2.13997319e-01 1.17348842e-01 -4.25942205e-02 1.22979367e-02\\n-9.76544321e-02 -6.76535070e-01 -8.29224885e-02 5.83552606e-02\\n4.43315655e-01 1.14559479e-01 2.77244925e-01 -1.28652334e-01\\n1.65955558e-01 6.53477192e-01 -1.71655521e-01 -3.07079434e-01\\n1.43087879e-01 2.78428346e-01 1.68222748e-02 -2.66479850e-02\\n3.05576324e-01 2.89223909e-01 -2.62924641e-01 2.34096106e-02\\n-1.91415884e-02 1.05153278e-01 2.40348488e-01 1.25994071e-01\\n-2.08174571e-01 -2.31274411e-01 7.44361654e-02 2.25542650e-01\\n-4.92674112e-01 -2.38332406e-01 5.76628327e-01 1.89323768e-01\\n1.72084689e-01 1.17254898e-01 1.26011491e-01 -1.54321223e-01\\n-6.75572753e-02 -1.61565736e-01 3.12038869e-01 1.21914983e-01\\n1.64828986e-01 4.59882095e-02 5.60047068e-02 -5.16435623e-01\\n-3.68510103e+00 -2.04643905e-01 1.15050748e-01 -1.39377043e-01\\n2.25725040e-01 -1.56521946e-01 1.81444034e-01 6.03725575e-02\\n-2.73012012e-01 8.79794806e-02 -3.70080732e-02 -2.01254904e-01\\n2.38678962e-01 1.67655721e-01 1.16300568e-01 3.35585594e-01\\n1.83759972e-01 -2.25459978e-01 -2.91225165e-02 4.49460089e-01\\n-1.60301223e-01 -7.04077303e-01 1.49113461e-01 9.12655378e-04\\n2.50079185e-01 1.75658807e-01 -2.26983413e-01 -1.39011815e-01\\n-1.59145996e-01 -2.46197671e-01 3.44767347e-02 -3.23523790e-01\\n-1.21446028e-01 3.80035192e-01 1.86080128e-01 -6.75055906e-02\\n9.49894413e-02 -3.48343015e-01 -2.33039573e-01 -3.63653660e-01\\n5.97209223e-02 -5.22657275e-01 2.36434229e-02 -5.33922091e-02\\n6.37204826e-01 -3.07620466e-01 2.31776059e-01 1.63289651e-01\\n1.16568752e-01 1.62227869e-01 1.37857303e-01 -4.81144451e-02\\n-1.36183485e-01 -3.80989969e-01 -4.40786481e-02 -2.41421148e-01\\n5.02203763e-01 4.73702669e-01 -9.83978510e-02 8.17500278e-02\\n8.24889317e-02 -1.00262851e-01 -4.55879271e-01 -3.48340064e-01\\n-1.40129134e-01 -1.73357055e-01 -6.14194393e-01 -3.46351296e-01\\n-7.30605051e-02 -2.31972501e-01 -1.35276854e-01 4.15082425e-01\\n-2.48057410e-01 -4.22986895e-01 -1.10082425e-01 -4.02447820e-01\\n4.98986453e-01 -8.01795423e-02 -8.19751695e-02 -1.77903876e-01\\n-3.06175083e-01 -4.51508850e-01 7.00418726e-02 5.60297556e-02\\n-1.37117594e-01 -2.48543158e-01 8.51005539e-02 -1.93365633e-01\\n-2.53347397e-01 -5.42094886e-01 4.91929710e-01 1.91351861e-01\\n3.88246030e-01 2.44157195e-01 3.35294843e-01 4.24858630e-02\\n2.36765862e-01 -1.30596459e-02 6.96509182e-02 -5.09429812e-01\\n-9.48905386e-03 1.50178969e-01 3.84478986e-01 -2.33487189e-01\\n-7.02647343e-02 5.68344593e-02 -2.13667691e-01 -8.05243030e-02\\n2.36583889e-01 -8.08320493e-02 1.11165784e-01 -1.00594193e-01\\n1.90627620e-01 -4.13162857e-01 -8.43930915e-02 1.21284667e-02\\n1.70217544e-01 6.26987398e-01 2.14895941e-02 -2.68700600e-01\\n-2.38965496e-01 6.31770074e-01 -1.30366474e-01 5.45745008e-02\\n-1.47044957e-01 8.67952630e-02 -2.01769859e-01 3.55974704e-01\\n-2.22864635e-02 -1.99969009e-01 -1.95707530e-01 -9.51852873e-02\\n-7.49362037e-02 2.82125622e-01 2.48614430e-01 8.22490677e-02\\n-3.91706564e-02 -4.08989966e-01 -7.48946741e-02 1.64007694e-01\\n2.83557922e-01 4.55308974e-01 6.03033565e-02 -1.59257561e-01\\n6.31423220e-02 3.57733667e-01 -2.71562994e-01 3.77787858e-01\\n-1.64666668e-01 1.26144394e-01 -6.03301287e-01 -3.17716330e-01\\n-3.47856581e-01 -2.79778987e-01 1.10520743e-01 2.84208000e-01\\n2.91715264e-01 -1.45216689e-01 1.40227275e-02 -4.95666593e-01\\n2.70140141e-01 7.16601461e-02 2.20344976e-01 1.04493171e-01\\n-5.39024696e-02 5.85934341e-01 1.65063702e-02 -6.02708682e-02\\n-2.38422398e-03 6.71600597e-03 -2.37283304e-01 -1.66704476e-01\\n5.08234948e-02 -4.92127687e-01 -2.53342599e-01 3.41810942e-01\\n1.59900710e-01 -4.24070001e-01 -2.68969983e-01 2.13717654e-01\\n7.50737786e-02 -2.27821589e-01 -3.24028492e-01 -6.61231298e-03\\n4.42440689e-01 1.45678639e-01 3.13613474e-01 -4.67149824e-01\\n-1.12178195e-02 7.18855634e-02 6.64622039e-02 4.66007918e-01\\n5.51713025e-03 -1.26265669e-02 -3.20396274e-02 -3.17635536e-01\\n4.47322935e-01 -1.50988325e-01 -1.68358177e-01 -3.33357863e-02\\n4.13880013e-02 -1.05511412e-01 -2.82702744e-01 6.04886040e-02\\n-1.16127856e-01 -3.03594172e-01 -6.26671612e-02 2.03018695e-01\\n1.83796227e-01 -2.95599774e-02 -5.65331638e-01 -3.25130701e-01\\n-2.91991740e-01 -2.10357551e-02 -2.09628493e-02 -3.67239952e-01\\n5.04770912e-02 -9.24000815e-02 -5.30682743e-01 2.08150864e-01\\n-1.51941746e-01 -7.75992721e-02 1.04340725e-01 9.44974422e-02\\n-3.33798975e-01 -1.01228140e-01 1.33059815e-01 2.66825765e-01\\n-3.21399778e-01 -3.43650460e-01 -6.54718503e-02 -7.51138926e-01\\n1.62022933e-01 8.36727098e-02 -1.15217365e-01 1.95982754e-01\\n-1.19607836e-01 -6.26854956e-01 6.60106540e-02 -2.65399069e-01\\n-2.20683664e-01 -2.26165712e-01 -3.15830946e-01 -3.78129840e-01\\n5.39277904e-02 6.49655312e-02 -2.36118942e-01 5.56347489e-01\\n-3.81152928e-01 2.56314486e-01 -7.96183646e-02 4.68397513e-02\\n1.72613356e-02 -2.08499610e-01 2.12732181e-01 -4.15350348e-01\\n-3.55430871e-01 -8.42158422e-02 -3.39894950e-01 -3.17642242e-01\\n-1.93699718e-01 -2.35852674e-01 8.16843566e-03 -7.09362775e-02\\n3.32020283e-01 1.07818626e-01 -1.32470295e-01 -2.26608410e-01\\n1.38176680e-01 -3.49356353e-01 1.51823595e-01 -4.59957086e-02\\n-8.19065049e-02 -1.00773856e-01 1.95760444e-01 6.50079250e-02\\n1.43086642e-01 -3.80741417e-01 2.65167475e-01 -4.40859646e-01\\n-3.23772490e-01 -2.09869534e-01 4.87224460e-02 -1.52072906e-02\\n1.62997901e-01 -5.91819942e-01 5.11376821e-02 1.73154294e-01\\n1.80089161e-01 -3.11979856e-02 3.00230235e-01 -8.87090936e-02\\n-1.05823286e-01 3.49404603e-01 -2.96149760e-01 4.22173403e-02\\n7.77066231e-01 1.09981678e-01 1.27380446e-01 2.90766448e-01\\n4.59263921e-02 1.73994601e-01 3.73097211e-01 9.55682322e-02\\n-8.30591545e-02 2.24705219e-01 1.89638421e-01 -4.55141872e-01\\n-1.00246727e-01 -4.87681068e-02 -1.74890444e-01 -5.11940002e-01\\n6.68703973e-01 3.47757995e-01 -4.26182002e-01 -2.17257574e-01\\n-1.64822757e-01 -1.07148722e-01 2.54087269e-01 -1.47430524e-01\\n-2.87761502e-02 -8.11498165e-02 4.20388699e-01 -3.27016115e-02\\n4.01613861e-01 5.60621262e-01 -1.66709617e-01 -1.95246652e-01\\n-9.10776332e-02 1.88937187e-01 1.67197540e-01 3.59142512e-01\\n-2.30399117e-01 4.22232628e-01 4.30427678e-02 1.42647967e-01\\n-6.48752749e-02 2.64208585e-01 8.52646455e-02 1.48579031e-01\\n1.23587020e-01 4.66456935e-02 4.33193743e-01 4.59638149e-01\\n2.26324245e-01 3.98176759e-01 3.37446034e-01 1.55141249e-01\\n3.14384997e-01 3.97590697e-01 2.74339944e-01 1.04928561e-01\\n7.24257603e-02 3.88792157e-02 1.23805352e-01 -5.80965504e-02\\n2.13122964e-01 4.22387719e-01 1.36452481e-01 8.81558657e-01\\n2.89816082e-01 2.85555631e-01 7.15859413e-01 -6.31844938e-01\\n-3.64297390e-01 -4.20741476e-02 4.30441201e-01 -4.68447536e-01\\n-1.09320067e-01 8.48481655e-02 -7.84363598e-02 2.46285096e-01\\n-4.01375502e-01 -1.64868042e-01 -2.24386752e-02 1.56669080e-01\\n-3.50819714e-02 -2.72874743e-01 -1.08179636e-01 1.21395297e-01\\n-6.77747205e-02 3.43343541e-02 -4.33771253e-01 -2.11069316e-01\\n-1.99396610e-01 -2.85828531e-01 -3.34845006e-01 -5.63718416e-02\\n-1.00726865e-01 -3.20283741e-01 -3.81402075e-02 -2.51298565e-02\\n2.81315476e-01 -3.21915485e-02 -7.25777224e-02 -1.84683770e-01\\n3.78435820e-01 1.55084729e-01 5.29626906e-01 -1.17577322e-01\\n2.12729409e-01 -1.15181141e-01 -1.74979821e-01 3.32621597e-02\\n1.71367526e-01 5.24305478e-02 -4.40387763e-02 2.06716865e-01\\n-2.54046082e-01 -1.07604459e-01 1.70961127e-01 1.84873760e-01\\n-4.32809472e-01 8.43826309e-02 -9.10341218e-02 1.38509825e-01\\n6.28625508e-03 1.02476016e-01 -2.58667499e-01 2.93790270e-02\\n-2.50913560e-01 -5.01246333e-01 3.05110931e-01 -3.14081937e-01\\n-7.71127418e-02 1.12704739e-01 3.78800213e-01 3.17042619e-01\\n-1.24185815e-01 8.15732330e-02 -4.62666750e-02 6.35132119e-02\\n3.96923572e-02 1.50955692e-01 -1.87291533e-01 -2.22348362e-01\\n-4.00322109e-01 9.14957225e-02 -1.98645294e-01 7.54148886e-02\\n4.54623438e-02 4.27334279e-01 1.41853422e-01 3.90491746e-02\\n3.97987515e-01 -1.40597627e-01 -2.23483115e-01 -2.70711303e-01\\n-2.68504232e-01 -6.37652203e-02 -1.10278949e-01 -5.43282293e-02\\n1.98959157e-01 -2.56295085e-01 -3.69881354e-02 -1.92600414e-01\\n-4.39222865e-02 -3.32336396e-01 6.70754462e-02 -1.82466760e-01]]',\n", + " \"You have hands-on experience developing, deploying or managing operating cloud-based services SAAS applications. You have been exposed to one or several IAAS & PAAS infrastructures such as AWS, GE-Digital Predix, IBM-BlueMix/Watson, VMware... You are experienced in finding and structuring and collecting different data streams (weather, finance, industrial signals, social events). You strongly believe automated machine learning and artificial intelligence coupled with big data can change the game in many industrial sectors. You worked open-data correlations with industrial signals, weather, events, calendar, financial markets, economic indicators. You applied it to real use case in operations and markets, for energy, utilities, industry, retail, transport or freight sectors. You cooperate with leading partners like GE - Digital, IBM-Analytics, Cisco-IOT with Industry leader customers in EU & US & Asia, like Arcelor, EDF, ALPIQ, ELIOR, METRO... Predictive Layer will bring you a unique opportunity to develop, deploy, or operate leading-edge predictive services for different customers worldwide, on different markets: Energy, Industry, retail, Catering, Transport and many more... At Predictive Layer, We cultivate a team-based environment where we strive for personal growth and a substantial contribution from all our team members. If you desire a career where you can drive innovation while working in an dynamic environment where innovative thinking, creativity and motivation are recognized and rewarded, then come and join us! Back to opportunities Send us your resume - Let's meet! careers@predictivelayer.com Position reference: #2017-OOE-003\",\n", + " '[\"Cooperation\", \"Infrastructure\", \"Operations\", \"Creative Thinking\", \"Innovation\", \"Socialization\", \"Positivity\"]',\n", + " '[\"Automation\", \"Collections\", \"Analytics\", \"Data Streaming\", \"Prediction\", \"Industrialization\", \"IBM Bluemix\", \"Energy Market\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Component Object Model (COM)\", \"Layering\", \"Weathering\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Cloud Operations\", \"Predix\", \"Financial Market\", \"Machine Learning Methods\", \"Finance\", \"Digitization\", \"Personalization\", \"Cisco Networking\", \"Location-Based Services\", \"Artificial Intelligence\", \"Big Data\", \"Coupling\", \"Operations Management\", \"Economic Indicators\", \"Cultivator\"]',\n", + " \"['English', 'Pushto', 'Venda', 'Northern Sami']\"],\n", + " ['17',\n", + " 'data science manager f/m switzerland',\n", + " 'Switzerland',\n", + " 'Consulting',\n", + " 'www.axxiome.com',\n", + " '[[-2.45921910e-01 3.64944696e-01 5.66830039e-01 -4.42552194e-03\\n6.07137740e-01 -3.58532816e-02 -7.13070855e-04 2.29102582e-01\\n-8.79856385e-03 -4.23271626e-01 -1.12019163e-02 -2.79152483e-01\\n1.17464408e-01 1.81373224e-01 2.31768861e-02 4.22521472e-01\\n2.09838718e-01 3.76365110e-02 -1.79761857e-01 4.03860956e-01\\n2.34120376e-02 -1.44892216e-01 2.07821861e-01 7.00868130e-01\\n4.20755804e-01 -2.49336548e-02 -4.27808836e-02 -4.32553031e-02\\n-2.81308353e-01 -2.11954385e-01 5.24052203e-01 2.60045230e-02\\n-1.87911510e-01 -2.90406376e-01 1.07913442e-01 3.05315405e-02\\n-2.64642119e-01 -9.09706503e-02 -1.89330533e-01 1.44601107e-01\\n-4.73985076e-01 -1.82331115e-01 -1.06650069e-02 -2.91811861e-03\\n-3.76790941e-01 -5.17107308e-01 -1.25920102e-01 -1.00769050e-01\\n1.08134978e-01 9.05703604e-02 -4.54427838e-01 1.93579257e-01\\n-2.60035336e-01 -2.59526730e-01 2.71923423e-01 7.75269151e-01\\n-2.98850853e-02 -4.39171314e-01 -5.32690525e-01 -3.93370718e-01\\n1.47971913e-01 -7.26859272e-02 7.86159933e-02 -3.06278467e-01\\n2.78093457e-01 -3.30605730e-03 3.75598557e-02 2.43363649e-01\\n-7.56314635e-01 -1.50222898e-01 -3.26991111e-01 4.13803719e-02\\n-3.66385281e-01 -1.05629474e-01 -4.33392674e-01 -2.40224093e-01\\n-1.23682141e-01 4.59726006e-01 1.06721871e-01 -3.25710848e-02\\n-2.64199972e-01 2.76415229e-01 -3.26216042e-01 2.17330575e-01\\n1.81030706e-01 3.17788005e-01 3.44060987e-01 3.91795516e-01\\n-3.28861833e-01 4.00029361e-01 2.92857468e-01 -3.70870233e-01\\n2.56032765e-01 1.52590707e-01 3.01409543e-01 -1.02013722e-02\\n1.69352084e-01 1.29102111e-01 -1.88280120e-01 3.37971598e-01\\n2.92865813e-01 -2.53491759e-01 1.13441981e-02 -1.18685320e-01\\n7.98881799e-02 -4.54057828e-02 1.68322399e-02 1.24850497e-01\\n-3.90109837e-01 2.84585595e-01 -4.44836654e-02 -3.66795272e-01\\n-1.00431263e-01 -4.57162291e-01 -1.06918573e-01 -8.01978409e-02\\n-5.70156518e-03 1.87075034e-01 1.78632349e-01 2.35677660e-01\\n2.10754246e-01 -5.03677428e-02 1.70380592e-01 8.76710653e-01\\n-8.34595039e-03 4.89493869e-02 -3.32669228e-01 4.18295622e-01\\n7.65853748e-03 -1.90081030e-01 1.90014482e-01 1.06433108e-01\\n-1.29714862e-01 -5.53015508e-02 -3.17486405e-01 3.26737285e-01\\n-5.01306206e-02 -2.85634041e-01 -1.82487592e-01 1.18685432e-01\\n-2.42170654e-02 -4.91118252e-01 6.07552648e-01 -2.95297876e-02\\n1.18727639e-01 -2.52901286e-01 5.49544487e-03 -1.00099713e-01\\n-1.47795305e-03 1.36073396e-01 1.42462879e-01 1.10068917e-01\\n-2.93086052e-01 -2.61587262e-01 -9.45952386e-02 2.04275176e-01\\n-3.72313261e-01 5.68338484e-03 -2.17546254e-01 -6.04286306e-02\\n2.10390940e-01 1.22314103e-01 -4.67245340e-01 1.52860612e-01\\n-7.63912871e-02 -6.53198585e-02 -6.28637057e-03 4.08639252e-01\\n-3.66601586e-01 2.10801393e-01 -6.10959157e-02 -1.05927579e-01\\n6.28257394e-01 1.36030614e-01 3.37295145e-01 1.67331984e-03\\n2.35847265e-01 -6.34730384e-02 1.65461987e-01 2.23834157e-01\\n-5.79585254e-01 4.36830193e-01 -8.55116397e-02 -1.90968633e-01\\n1.48631006e-01 -8.61020237e-02 3.19376707e-01 -2.54164547e-01\\n1.09994173e-01 -1.79887325e-01 -2.81099111e-01 -3.52362216e-01\\n-9.43516865e-02 -4.85175848e-02 3.22893560e-01 -5.07194817e-01\\n-7.61729479e-03 2.63135016e-01 -5.76938748e-01 -2.25446984e-01\\n1.20687030e-01 2.38363579e-01 7.45931938e-02 2.11705700e-01\\n-1.76185995e-01 -5.34414768e-01 1.38204321e-01 -4.11061585e-01\\n-2.34608501e-01 1.61183521e-01 -2.93112636e-01 1.30785525e-01\\n4.76591624e-02 2.24735159e-02 -1.05475865e-01 6.95926100e-02\\n-3.24384570e-01 -1.61868110e-02 1.67739503e-02 7.41715729e-02\\n3.55591476e-01 1.47779748e-01 -4.31447506e-01 5.21407366e-01\\n-1.65915996e-01 3.91414404e-01 1.80935234e-01 -1.00179696e+00\\n4.41542685e-01 3.47838730e-01 6.50071129e-02 -3.69515121e-01\\n5.59662938e-01 -3.95547062e-01 -2.96869520e-02 1.25100851e-01\\n-3.11068058e-01 -2.29845583e-01 2.32175797e-01 -2.63683528e-01\\n-2.66220629e-01 5.03459215e-01 -2.03863233e-02 1.43936604e-01\\n3.03789854e-01 -2.84333766e-01 -2.92014003e-01 -1.28883198e-01\\n-2.25134090e-01 -2.67191052e-01 -6.82415664e-01 2.43814290e-03\\n-9.48423892e-02 -4.56080288e-01 -9.62660015e-02 -4.14302230e-01\\n-1.35782093e-01 -3.27197075e-01 -1.55999899e-01 4.64870185e-02\\n2.03237012e-01 1.12335689e-01 -1.31886184e-01 -2.83232890e-02\\n2.26668492e-02 -6.32648706e-01 -8.35290700e-02 1.24586798e-01\\n3.28894079e-01 2.66649902e-01 1.72872901e-01 4.07448635e-02\\n3.69883366e-02 6.54320240e-01 -2.93933392e-01 -2.73528099e-01\\n2.35190347e-01 1.35438293e-01 -6.35076314e-02 -1.96907341e-01\\n7.97661915e-02 2.46569231e-01 -2.67043054e-01 -1.50392763e-03\\n8.39423537e-02 -5.40301390e-02 3.38879973e-01 1.77628547e-02\\n-1.90582663e-01 -2.03127712e-01 -6.51058555e-02 1.30328491e-01\\n-5.84850669e-01 -2.64413476e-01 6.32897258e-01 1.34088337e-01\\n9.50071029e-03 2.51613736e-01 2.29802251e-01 1.88265294e-02\\n-3.66359562e-01 -2.13709712e-01 3.07417035e-01 8.39281529e-02\\n1.96068406e-01 6.11872748e-02 5.12848124e-02 -5.77519417e-01\\n-3.24799728e+00 -1.69826210e-01 1.06522381e-01 -2.25405872e-01\\n3.08175147e-01 -1.89206302e-01 1.63121253e-01 4.45353314e-02\\n-4.54820126e-01 1.42139625e-02 -9.49461311e-02 -1.37367144e-01\\n5.78579307e-02 1.89332396e-01 8.62061977e-02 1.91817939e-01\\n1.42997324e-01 -1.68550238e-01 7.36394152e-02 3.95097315e-01\\n-8.34486261e-02 -7.82853246e-01 1.66983396e-01 1.36964232e-01\\n1.21752001e-01 1.05963036e-01 -4.65968609e-01 -1.36122018e-01\\n-3.57103407e-01 -2.17097014e-01 1.21184766e-01 -2.82251537e-01\\n-1.90611392e-01 2.12878883e-01 2.40197480e-01 -6.95260763e-02\\n2.69690920e-02 -3.47148955e-01 -5.56462631e-02 -5.26130319e-01\\n8.72342363e-02 -6.10046625e-01 1.80049986e-03 -6.27218187e-02\\n7.39886522e-01 -2.77540952e-01 1.94530487e-01 1.91638410e-01\\n1.06656328e-01 1.63295954e-01 1.92849159e-01 6.54033944e-02\\n-2.34414548e-01 -3.04287136e-01 -1.06991798e-01 -1.35043666e-01\\n6.06157124e-01 3.87201041e-01 -1.21685475e-01 4.22015078e-02\\n1.07443072e-01 -2.14714855e-01 -5.31587601e-01 -2.41496980e-01\\n-1.90920800e-01 -1.38890103e-01 -7.47319221e-01 -5.13473034e-01\\n-1.52645022e-01 -1.69929966e-01 -1.20133206e-01 6.72429919e-01\\n-1.25722989e-01 -2.56621331e-01 -1.95590854e-01 -4.87632364e-01\\n3.40316892e-01 -1.53406411e-01 7.67541304e-02 -1.80450037e-01\\n-1.68858439e-01 -3.90759051e-01 1.63518235e-01 -4.90865484e-02\\n-9.50010121e-02 -9.49073732e-02 6.59806374e-03 -1.33534163e-01\\n-3.63709539e-01 -5.95687926e-01 3.92257780e-01 8.04415345e-02\\n4.33541536e-01 8.36967230e-02 4.16038752e-01 -4.92727235e-02\\n3.91176701e-01 -6.91211596e-02 -1.48355290e-01 -4.93212640e-01\\n-6.06559515e-02 9.93431583e-02 5.32403588e-01 -2.09267661e-01\\n4.22511026e-02 -8.34257901e-03 -1.90606460e-01 -5.67713603e-02\\n3.45819980e-01 -8.13398361e-02 1.63348898e-01 -7.88199306e-02\\n2.25743979e-01 -2.68304437e-01 -1.04395591e-01 8.70596319e-02\\n7.67047983e-04 6.03134334e-01 -6.25669211e-02 -3.56460929e-01\\n-4.75177765e-02 4.08956170e-01 -4.37586159e-02 -1.00416765e-01\\n-3.08997571e-01 -2.62237713e-02 -2.88998842e-01 4.15641457e-01\\n-8.36860985e-02 -1.96044520e-01 -2.42734015e-01 -1.15270570e-01\\n-8.46666247e-02 3.39749098e-01 2.38535404e-01 2.01701581e-01\\n-3.77592780e-02 -4.09201711e-01 -1.04267605e-01 1.88862771e-01\\n2.72506565e-01 3.84476304e-01 2.52921373e-01 -2.66126782e-01\\n7.01435935e-03 2.31164202e-01 -3.12745273e-01 2.70031601e-01\\n-1.71409488e-01 2.28548393e-01 -7.02564120e-01 -2.83752441e-01\\n-2.08915830e-01 -3.24911743e-01 2.07820892e-01 4.84418899e-01\\n2.14780331e-01 -8.35779980e-02 1.30925566e-01 -5.00762582e-01\\n2.89361715e-01 1.76102281e-01 1.22894250e-01 3.34063694e-02\\n-7.21575618e-02 8.39317024e-01 2.67627873e-02 -1.64550453e-01\\n1.71246715e-02 3.88621166e-03 -2.45666057e-01 -2.18836084e-01\\n4.54920530e-02 -5.34934044e-01 -1.49418220e-01 5.12873352e-01\\n1.72530025e-01 -1.44415632e-01 -1.38982147e-01 2.46456265e-01\\n1.22482069e-02 -2.55173147e-01 -2.92161405e-01 5.41106947e-02\\n3.45119476e-01 2.08441824e-01 2.88472503e-01 -5.93923628e-01\\n2.30947826e-02 -5.04769832e-02 4.61579151e-02 4.76999313e-01\\n8.36529136e-02 1.59786820e-01 -8.18593726e-02 -1.12589180e-01\\n5.34571588e-01 -5.26609458e-02 -1.31717294e-01 9.87673700e-02\\n1.06258601e-01 -1.84308559e-01 -3.16501886e-01 6.96009547e-02\\n5.76907173e-02 -3.07378501e-01 -6.59161657e-02 2.06394672e-01\\n3.99399847e-02 5.78490570e-02 -6.52556181e-01 -2.13704571e-01\\n-3.81309569e-01 4.25295159e-02 4.56301644e-02 -6.49009824e-01\\n6.15077205e-02 -1.15735121e-01 -5.84666252e-01 3.19792658e-01\\n1.10377073e-01 -1.85834795e-01 1.54304832e-01 4.23192978e-04\\n-2.16205731e-01 -2.47395664e-01 1.75002486e-01 2.98761457e-01\\n-2.44280308e-01 -2.60217011e-01 -4.22296152e-02 -9.04650927e-01\\n1.16268277e-01 6.54700696e-02 -8.91539603e-02 2.45658457e-01\\n6.58497214e-04 -7.33578205e-01 2.82283366e-01 -3.81602824e-01\\n-2.09483862e-01 -5.65385260e-02 -2.51575977e-01 -4.11636323e-01\\n1.18698716e-01 3.70347053e-02 -2.05585554e-01 4.49339628e-01\\n-3.05426568e-01 5.05944610e-01 -1.73813432e-01 3.70150656e-02\\n1.34803578e-01 -2.33847052e-01 9.02599767e-02 -2.93336451e-01\\n-4.29284632e-01 -2.21725553e-01 -2.75201023e-01 -3.27438116e-01\\n-1.66207999e-01 -2.50342637e-01 -7.11620376e-02 1.43014807e-02\\n4.78029847e-01 2.18206286e-01 -1.06679216e-01 -1.48405358e-01\\n1.47682920e-01 -4.79291230e-01 2.66344696e-01 -1.88953221e-01\\n-1.12153590e-03 -1.21023074e-01 2.01207161e-01 1.29752934e-01\\n1.83702007e-01 -3.42673153e-01 4.05458778e-01 -3.06599140e-01\\n-3.56773376e-01 -1.80469215e-01 7.36860558e-02 2.57491227e-02\\n3.50551903e-01 -3.83217722e-01 -1.26342922e-01 3.16002071e-01\\n8.86447430e-02 1.28272325e-02 2.90792197e-01 -1.86736703e-01\\n-1.81795321e-02 3.06658030e-01 -5.24818480e-01 2.60160446e-01\\n8.48055899e-01 1.10449523e-01 2.42968410e-01 2.89506137e-01\\n2.52098680e-01 2.30567485e-01 3.99969548e-01 -9.57072824e-02\\n-2.05243990e-01 3.93826306e-01 7.53218457e-02 -4.83305424e-01\\n-1.09464027e-01 -1.73052430e-01 -2.26075500e-01 -4.59894568e-01\\n5.80006897e-01 3.13304365e-01 -3.13438594e-01 -2.22106159e-01\\n-2.80672997e-01 -9.55687389e-02 3.41950446e-01 -2.10532285e-02\\n-4.04935032e-02 -9.00340267e-03 5.80752373e-01 -1.76937386e-01\\n3.75622749e-01 5.29786289e-01 -2.13048786e-01 -3.02188903e-01\\n-6.72305599e-02 2.84235120e-01 9.90334079e-02 4.56026256e-01\\n-1.88996643e-01 2.73309767e-01 6.46158233e-02 2.06541523e-01\\n-2.26517797e-01 2.90215742e-02 2.25946650e-01 9.79579613e-02\\n1.49736643e-01 5.40722013e-02 5.74282885e-01 3.40536207e-01\\n2.84645557e-01 3.55635285e-01 3.58910799e-01 5.27420491e-02\\n5.05891562e-01 5.76545477e-01 3.40940446e-01 1.43006518e-01\\n-2.32622474e-02 6.61864057e-02 9.19683054e-02 -2.67255381e-02\\n1.70390472e-01 5.23409128e-01 1.00115307e-01 8.55834246e-01\\n3.27121615e-01 3.83333921e-01 6.89056873e-01 -6.68171346e-01\\n-2.98700750e-01 2.68845912e-02 5.15031815e-01 -4.69754308e-01\\n4.44980338e-02 1.96003169e-01 -2.65809357e-01 1.55805796e-01\\n-5.26422739e-01 -2.39244461e-01 1.97987724e-03 6.03208318e-02\\n-4.44223732e-02 -1.33598968e-01 -1.68413088e-01 2.28887111e-01\\n-1.31252766e-01 -1.42758027e-01 -3.60055506e-01 -1.09288201e-01\\n-2.75815457e-01 3.34134996e-02 -9.96145308e-02 4.40237001e-02\\n-1.06014490e-01 -2.81776607e-01 -1.68639589e-02 -1.39402419e-01\\n3.60379785e-01 -6.96187615e-02 -1.12020478e-01 -2.50156727e-02\\n2.43043721e-01 1.32869542e-01 6.48293138e-01 1.78837478e-02\\n8.48599896e-02 -2.50000209e-01 -1.40357256e-01 6.23552762e-02\\n2.28759289e-01 2.34695189e-02 -3.91375320e-03 3.76838803e-01\\n-2.33588368e-01 -2.61357486e-01 7.96170682e-02 1.75206900e-01\\n-4.07878757e-01 -4.38190587e-02 -1.18612051e-01 8.47824514e-02\\n-1.34902820e-03 1.98414788e-01 -3.02337587e-01 2.15135142e-02\\n-5.74270822e-02 -4.99403059e-01 3.29176903e-01 -1.74990714e-01\\n-1.49460539e-01 1.25245526e-02 2.70362228e-01 1.41746044e-01\\n-2.46404469e-01 8.99055600e-02 -1.87737614e-01 1.59438118e-01\\n-6.67132884e-02 2.97512829e-01 -1.98901206e-01 -2.20736310e-01\\n-3.31923842e-01 1.41132772e-01 -9.16024297e-02 1.81684241e-01\\n3.55431437e-02 4.12354469e-01 7.65552893e-02 4.04589027e-02\\n3.89421374e-01 -1.51551468e-02 -2.70998240e-01 -2.18103588e-01\\n-2.26548940e-01 -1.72021717e-01 -1.16660625e-01 -9.22714770e-02\\n2.63544202e-01 -2.78902918e-01 -6.21061912e-03 -2.97500670e-01\\n-2.16268674e-01 -5.27362585e-01 1.41717307e-02 -1.07467048e-01]]',\n", + " 'OUR COMPANY Our mission is to deliver solutions to the financial services industry, driving business and technology change through proven global expertise. Axxiome is a name synonymous with quality and value for financial services organizations that are looking to improve or build upon their IT operations. With offices and subsidiaries in many countries across 4 continents, Axxiome excels in transforming legacy banking and insurance platforms to modern solutions and is considered a leader in implementation and integration of digitization initiatives across the globe. In Cooperation with the Business Engineering Institute St.Gallen AG (BEI AG) we are building up a Data Science team for financial services. Innovation based on science and projects will lead us to success. BEI AG is the leading company for turning knowledge gained from research and science into practice-oriented consulting and innovative solutions. Join our team as DATA SCIENCE MANAGER F/M SWITZERLAND JOB DESCRIPTION As Data Science Manager you will manage a team of 3-5 highly educated and experienced data science analysts and developers, collaborate with the BEI AG and be responsible with your team for innovation and accurate data collection, processing, modelling and analysis to drive business. Lead data science projects end to end and coordinate functional teams/developers of 3-5 employees Mine, analyze customer data to drive optimization and improvement of products, marketing techniques and business strategy with your team Develop/use predictive statistics behavioral or other models by machine learning and/or traditional statist. modeling techniques to increase and optimize customer experience and revenue generation Develop data models, algorithms, tools and methods Applied knowledge of the configuration options of modules within or across packages to functional solutions using detailed knowledge of package capabilities to meet business requirements Create showcases how BI data can help to facilitate and drive business decisions focused on Financial Services Industries Connect findings to business initiatives and approach customer at various management levels to create opportunities REQUIREMENTS Master’s degree in engineering, computer science, physics, math or economics Familiar with the principles of modelling 5 years of experience Project Management SQL database management and maintenance skills Several years developing sustainable customer relations Fluent in German and English ADDITIONAL AS A PLUS Machine Learning, AI Python; R and/or SPSS knowledge or equivalent tools WE OFFER Unleash your potential in an international company with flat hierarchies. Enjoy a maximum of personal freedom. A structured onboarding process ensure that our new hires get familiar with Axxiome, receive right tools and feel seen and accountable. An attractive salary model with performance-based bonuses, a generous home office regulation, a company car for private use and other benefits of a modern consulting company round off our offer to you. As a top performer, you also participate directly in the company’s success through an investment model. To ensure that your knowledge is always “state-of-the-art”, you regularly take part in internal and external training courses. An intensive training and a regular coaching enable you to reach your personal goals. YOUR APPLICATION Please apply online with your complete set of documents, including your desired salary and your possible starting date at recruiting.dach@axxiome.com. For any questions please don’t hesitate to contact Hardy Schwarzer, Recruiting Manager Europe at Axxiome (hardy.schwarzer@axxiome.com, +49 151 27 655 588).',\n", + " '[\"Research\", \"Cooperation\", \"Collaboration\", \"Coordinating\", \"Decisiveness\", \"Management\", \"Accountability\", \"Operations\", \"Integration\", \"Innovation\", \"Consulting\"]',\n", + " '[\"Tooling\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Technological Change\", \"Business Strategies\", \"Financial Services\", \"Sustainable Development\", \"Service Level Management\", \"Onboarding\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"M (Programming Language)\", \"Customer Data Integration\", \"Performance Based Contracting\", \"Process Modeling\", \"Statistical Modeling\", \"SQL Plan Management\", \"Investments\", \"Machine Learning Methods\", \"Data Science\", \"Business Requirements\", \"Logical Data Models\", \"Digitization\", \"R (Programming Language)\", \"Personalization\", \"Physics\", \"Receivables\", \"Service Innovation\", \"Modulation\", \"Economics\", \"Product Marketing\", \"Banking\", \"Project Management\", \"Algorithms\", \"Customer Experience\", \"Service Industries\", \"Additives\", \"Data Collection\", \"Job Descriptions\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"New Hire Orientations\"]',\n", + " \"['English', 'Chinese', 'Xhosa']\"],\n", + " ['105',\n", + " 'frontend engineer (m/f)',\n", + " 'Zürich',\n", + " 'Internet',\n", + " 'www.smallpdf.com',\n", + " '[[-4.26356867e-02 2.17359364e-01 5.42060494e-01 -5.14482819e-02\\n4.81459022e-01 -2.47155696e-01 7.70751685e-02 3.83561611e-01\\n-7.61580393e-02 -4.18908447e-01 -1.47926528e-02 -3.62792462e-01\\n-9.29435715e-02 1.75257578e-01 5.87201007e-02 3.43884677e-01\\n2.85040706e-01 1.12520024e-01 -2.44654283e-01 3.55138689e-01\\n2.96462566e-01 -1.12063155e-01 4.66714986e-02 6.95091784e-01\\n4.14578646e-01 -9.51050743e-02 -5.16524464e-02 -1.53855786e-01\\n-3.06625158e-01 -2.67285466e-01 4.19684708e-01 -3.26246917e-02\\n-5.62880151e-02 -4.05230820e-01 8.40772465e-02 1.87225621e-02\\n-2.44043529e-01 -2.15876698e-01 1.30531646e-03 2.38969445e-01\\n-4.90683615e-01 -2.87727356e-01 5.78819215e-02 3.12983468e-02\\n-1.71726957e-01 -3.27531070e-01 9.79775041e-02 4.48192917e-02\\n1.39299437e-01 1.00150913e-01 -4.11611140e-01 3.32246542e-01\\n-1.69229612e-01 -1.15801483e-01 2.90452182e-01 6.70354784e-01\\n-9.36756283e-02 -4.22827065e-01 -5.80516756e-01 -3.08450162e-01\\n2.99962107e-02 -3.33176479e-02 1.19138407e-02 -3.35483313e-01\\n1.98844135e-01 4.93469238e-02 4.88317460e-02 3.76933247e-01\\n-7.37324536e-01 -1.93130281e-02 -1.10173628e-01 -1.39085770e-01\\n-3.13379079e-01 -1.41722351e-01 -1.62129253e-01 3.04854731e-03\\n-1.78818852e-01 5.11358202e-01 1.83843821e-01 -2.78426670e-02\\n-1.79097503e-01 3.18047345e-01 -2.55310148e-01 4.11038995e-01\\n2.70241320e-01 1.02049403e-01 1.28908843e-01 2.37064034e-01\\n-4.04838055e-01 4.03564245e-01 1.47431359e-01 -3.30602348e-01\\n3.22148353e-01 1.34906963e-01 5.89837074e-01 -4.91536483e-02\\n-1.25817992e-02 9.04181078e-02 -2.64334738e-01 3.74347538e-01\\n3.87403011e-01 -2.54816055e-01 6.95309713e-02 1.44624673e-02\\n-5.47078513e-02 1.01057934e-02 5.37022054e-02 2.35129207e-01\\n-2.19720095e-01 4.60387707e-01 1.73691243e-01 -2.33808652e-01\\n-1.58658758e-01 -5.13279378e-01 -2.34095473e-02 -9.95451063e-02\\n9.82712954e-02 1.65316582e-01 3.00291359e-01 9.77112427e-02\\n1.21364690e-01 -6.02424480e-02 1.44502446e-01 9.19503272e-01\\n-2.13861391e-02 7.77891278e-02 -3.45812917e-01 3.09157729e-01\\n9.89619419e-02 -2.78476208e-01 2.78817922e-01 2.51963079e-01\\n3.02748755e-03 -2.06331581e-01 -2.00654373e-01 4.03390080e-01\\n-9.07253474e-02 -2.23988771e-01 -3.14446628e-01 1.52227238e-01\\n-1.31628722e-01 -1.65394217e-01 5.24711311e-01 2.20738813e-01\\n1.42920539e-01 -7.70501138e-05 -4.84240428e-02 -2.27333203e-01\\n-1.34954140e-01 1.90372914e-01 7.96317030e-03 -2.91291215e-02\\n-2.73840815e-01 -1.82257190e-01 -2.31048837e-01 2.48168379e-01\\n-2.95537531e-01 6.79955706e-02 -1.19695021e-03 -5.39408959e-02\\n3.48537564e-01 6.86229020e-02 -2.60308057e-01 2.64624238e-01\\n7.56696938e-03 6.12249412e-02 -3.24984938e-02 2.76003182e-01\\n-2.10690260e-01 1.41476572e-01 -2.11646385e-03 -1.18105561e-01\\n6.54830158e-01 2.10145786e-01 5.75211570e-02 6.11898899e-02\\n2.63660371e-01 -1.11128248e-01 1.06344171e-01 1.75692439e-01\\n-6.41887426e-01 3.22313249e-01 -1.90654937e-02 -2.39929333e-02\\n1.06223367e-01 -1.27983047e-02 2.35499501e-01 -2.43631989e-01\\n7.41604492e-02 -1.60515472e-01 -3.47899497e-01 -1.97039917e-01\\n-1.32735893e-01 -7.07565993e-02 4.51854765e-01 -4.44653243e-01\\n-2.42387190e-01 2.59660482e-01 -5.44767261e-01 -4.57545780e-02\\n2.09263057e-01 1.56340107e-01 2.84527063e-01 1.48632616e-01\\n-2.29241788e-01 -5.04425168e-01 9.28275883e-02 -3.99338365e-01\\n-2.84851521e-01 5.91068342e-02 -3.40003043e-01 2.53648698e-01\\n1.00188352e-01 1.11372367e-01 -2.81086862e-01 1.71657622e-01\\n-1.33932665e-01 -1.12761721e-01 9.37261209e-02 1.16183348e-01\\n1.72252297e-01 6.48344457e-02 -4.69846815e-01 3.62570107e-01\\n-2.30470419e-01 5.88052511e-01 1.18322209e-01 -8.95061910e-01\\n4.94688183e-01 3.44649494e-01 -1.68681607e-01 -3.31332892e-01\\n5.15646040e-01 -2.96523988e-01 3.98536213e-02 7.43760392e-02\\n-2.61296332e-01 -3.14898998e-01 3.64714861e-01 -1.98250696e-01\\n-1.84726387e-01 4.64992583e-01 1.29337892e-01 1.29057586e-01\\n2.37109184e-01 -1.58043653e-01 -1.24909297e-01 8.42152685e-02\\n-7.01201558e-02 -2.43604600e-01 -4.35638428e-01 -1.59778371e-02\\n-1.41154110e-01 -4.40238506e-01 -4.38202098e-02 -4.69277173e-01\\n-2.20354408e-01 -3.67773533e-01 -2.15932161e-01 2.33749807e-01\\n3.10926527e-01 8.61162171e-02 -4.12216689e-03 7.19740242e-03\\n-1.65765360e-01 -6.07746184e-01 3.99390096e-03 1.37362525e-01\\n4.34966385e-01 2.36092687e-01 -2.04690211e-02 3.99171142e-03\\n3.68867093e-03 6.31656706e-01 -1.33606359e-01 -7.18556941e-02\\n7.91895539e-02 1.94614589e-01 1.23932563e-01 -1.86552376e-01\\n1.88707076e-02 3.37208122e-01 -1.74811974e-01 2.81678289e-02\\n-3.52268144e-02 -1.93276927e-01 3.54825288e-01 1.42324686e-01\\n-3.76785338e-01 -1.49863258e-01 -4.03830856e-02 1.29352152e-01\\n-5.58953047e-01 -1.92380756e-01 6.17369831e-01 1.80110350e-01\\n1.66266620e-01 1.34725064e-01 2.16193751e-01 -4.14935276e-02\\n-1.70880750e-01 -2.46176451e-01 1.72394395e-01 9.20567513e-02\\n1.29354030e-01 1.71144351e-01 -7.78340474e-02 -7.20774829e-01\\n-3.02696419e+00 -1.69447660e-01 1.64873064e-01 -2.11554483e-01\\n-1.61197223e-03 -1.83458030e-01 4.44901250e-02 -1.10294193e-01\\n-3.23799729e-01 5.16319685e-02 -6.99989498e-02 -1.51402518e-01\\n2.33764619e-01 1.97024450e-01 4.59666066e-02 3.15534860e-01\\n1.85523376e-01 -1.60471156e-01 -1.25477344e-01 2.40527421e-01\\n-2.77908683e-01 -5.25492549e-01 2.93127030e-01 -7.69200027e-02\\n3.93592626e-01 1.10759802e-01 -3.07077080e-01 -2.26663485e-01\\n-2.79753417e-01 -1.39607966e-01 2.97660362e-02 -2.51405686e-01\\n-1.09302349e-01 1.80793703e-01 1.78204492e-01 -1.37538731e-01\\n2.59157240e-01 -4.86818045e-01 -3.26527536e-01 -4.66840833e-01\\n8.80545601e-02 -6.75537109e-01 2.21512839e-02 -1.72708139e-01\\n7.93677747e-01 -4.94511038e-01 1.74503118e-01 7.58543760e-02\\n2.46737212e-01 7.37583861e-02 1.04516990e-01 -9.84922238e-03\\n-1.76882342e-01 -2.22224280e-01 -1.65907398e-01 -1.24548778e-01\\n5.32761872e-01 5.98090053e-01 -1.05982184e-01 -5.15023172e-02\\n3.98262925e-02 -2.32019320e-01 -4.56047893e-01 -3.11501563e-01\\n-1.23848878e-01 -3.12325180e-01 -6.19879246e-01 -4.80381727e-01\\n-2.37374187e-01 -2.99166180e-02 -2.52804726e-01 7.38435268e-01\\n-2.61857003e-01 -3.40022802e-01 -2.18061991e-02 -5.30470192e-01\\n1.82726920e-01 -1.58571959e-01 4.85256314e-02 -1.53433368e-01\\n-3.88786972e-01 -4.27916050e-01 -1.78475548e-02 -6.47812113e-02\\n-1.85336962e-01 -3.86098593e-01 6.90961108e-02 -1.22954682e-01\\n-2.22198427e-01 -4.14396673e-01 4.20592993e-01 1.13168724e-01\\n2.30245173e-01 1.16653182e-01 3.04527223e-01 1.01878628e-01\\n2.95006633e-01 -1.64352849e-01 -4.38155793e-02 -2.86876976e-01\\n2.44866550e-01 1.16625212e-01 5.95448017e-01 -2.78884768e-01\\n4.80130874e-02 6.87559545e-02 -2.44557679e-01 -2.33721696e-02\\n3.35198134e-01 2.76131053e-02 -1.03772663e-01 -2.13947028e-01\\n2.68056065e-01 -2.69518793e-01 -2.41763443e-01 -1.17048975e-02\\n2.79169172e-01 5.85196376e-01 -6.94288090e-02 -4.91421729e-01\\n-1.98517337e-01 4.67280716e-01 -7.77068734e-02 -2.47461155e-01\\n-1.93125218e-01 1.23044305e-01 -2.74590850e-01 1.27820253e-01\\n5.46145029e-02 -1.30986243e-01 -4.22641724e-01 -2.16225550e-01\\n-4.15990828e-03 3.54080647e-01 2.53307343e-01 1.47672594e-01\\n9.53674968e-03 -5.08051634e-01 -9.97868106e-02 2.11298048e-01\\n1.02997646e-01 3.36050928e-01 1.33977756e-01 -1.54583320e-01\\n5.15170656e-02 3.32957923e-01 -1.75241008e-01 1.43952206e-01\\n-3.40252429e-01 1.20022282e-01 -5.15146017e-01 -3.25636208e-01\\n-2.17854962e-01 -3.94147724e-01 1.63017347e-01 2.23630354e-01\\n1.21833198e-01 1.38728432e-02 6.95391074e-02 -4.55082774e-01\\n3.00341964e-01 -3.16870399e-02 1.86063543e-01 1.80934131e-01\\n4.78222556e-02 4.69653845e-01 1.12590663e-01 -1.72039807e-01\\n-1.60782307e-01 -4.56978418e-02 -1.62538409e-01 -1.16983600e-01\\n-7.65185207e-02 -4.47909921e-01 -1.96309328e-01 5.07844746e-01\\n5.47904000e-02 -2.56419778e-01 -5.11841141e-02 3.41776311e-01\\n-6.51571676e-02 -1.71711653e-01 -8.86672661e-02 -3.84895131e-02\\n2.92488426e-01 3.59644480e-02 2.86019772e-01 -4.21014547e-01\\n7.02790692e-02 6.54388219e-02 -8.98997560e-02 6.42010212e-01\\n-2.50126608e-02 7.58225052e-03 -1.59198403e-01 -2.16151804e-01\\n5.30328333e-01 -1.18230805e-01 -1.57720353e-02 3.83238941e-02\\n4.56224941e-02 -1.38759941e-01 -5.34839809e-01 1.18696570e-01\\n7.06395134e-02 -1.22500226e-01 3.48810703e-02 1.38549313e-01\\n1.86418787e-01 1.02284044e-01 -5.34944713e-01 -3.15698534e-01\\n-2.81562775e-01 -4.09017466e-02 2.22971514e-02 -4.47195977e-01\\n-8.83192290e-03 -1.84076563e-01 -4.92877126e-01 2.96114266e-01\\n-2.23012596e-01 -6.69644549e-02 1.77550778e-01 -1.52256126e-02\\n-2.52854258e-01 -6.93797395e-02 1.62339911e-01 2.81103849e-01\\n-2.40171671e-01 -3.66645962e-01 1.68111414e-01 -8.54814291e-01\\n1.81317464e-01 6.14535697e-02 -1.83936939e-01 1.73092872e-01\\n-9.64080393e-02 -7.69380033e-01 1.19291037e-01 -3.40814888e-01\\n-1.90931763e-02 -4.40369621e-02 -1.90907493e-01 -5.51337242e-01\\n1.21280506e-01 -1.74905825e-02 -2.94490904e-01 3.46234411e-01\\n-2.82669514e-01 3.43858838e-01 -3.77558395e-02 1.15316696e-01\\n1.50045782e-01 -3.20816875e-01 7.28359371e-02 -5.25180936e-01\\n-4.36110467e-01 -1.72565967e-01 -3.54540348e-01 -3.14469576e-01\\n-1.87959187e-02 -1.48561597e-01 -1.50251994e-02 1.18796960e-01\\n3.57951671e-01 1.46575332e-01 -6.07330985e-02 -3.01587433e-01\\n-9.17130802e-03 -5.48538089e-01 1.19791981e-02 -6.01466298e-02\\n-3.27033810e-02 -1.08909249e-01 1.23886704e-01 1.24658689e-01\\n-2.53379662e-02 -4.16364372e-01 4.12447333e-01 -4.29993182e-01\\n-2.72186756e-01 -1.09541789e-01 -6.33095484e-03 -2.47128177e-02\\n3.12206268e-01 -3.61054778e-01 1.02273608e-02 3.67910296e-01\\n1.68739051e-01 1.72914833e-01 2.24339306e-01 -2.46951785e-02\\n1.51762720e-02 3.16061378e-01 -2.83781290e-01 9.12732109e-02\\n7.32344687e-01 -6.43279478e-02 1.25934094e-01 1.49296865e-01\\n8.04644823e-02 2.23277465e-01 5.20833075e-01 2.39329860e-02\\n-1.70112059e-01 2.47473210e-01 1.05645001e-01 -5.92863321e-01\\n-4.95322533e-02 2.27696411e-02 -2.68524468e-01 -4.98389393e-01\\n5.77039182e-01 4.72070992e-01 -3.78883392e-01 -2.15172797e-01\\n-2.35220402e-01 -1.88715443e-01 2.09268425e-02 -5.15931584e-02\\n1.06485188e-01 -9.55188647e-02 4.95313108e-01 -8.12276825e-02\\n2.23100528e-01 5.06278872e-01 -1.78636491e-01 -3.66078079e-01\\n-1.09578617e-01 1.57138929e-01 7.24354982e-02 3.87416899e-01\\n-2.70480365e-01 3.56068730e-01 -2.57838480e-02 1.12834960e-01\\n-1.69545963e-01 1.81436419e-01 1.28029156e-02 -4.25392129e-02\\n1.24429092e-01 4.67251576e-02 3.76551211e-01 4.23538595e-01\\n4.15591359e-01 4.23245519e-01 1.69085264e-01 -6.29788861e-02\\n6.06733799e-01 6.10048175e-01 4.34010714e-01 2.57893533e-01\\n-1.05141290e-01 4.41681668e-02 5.62633481e-03 1.42182233e-02\\n3.03674459e-01 3.16523194e-01 -8.69757403e-03 8.80585134e-01\\n3.50955695e-01 2.16461644e-01 5.12291551e-01 -6.01212859e-01\\n-3.22058737e-01 5.06694280e-02 5.27052045e-01 -3.23927611e-01\\n-1.81411549e-01 8.42813700e-02 -1.81037962e-01 1.01448156e-01\\n-4.14314598e-01 -2.44046807e-01 -3.42161283e-02 1.73092961e-01\\n7.17791840e-02 -1.95260778e-01 -2.24474832e-01 9.94745046e-02\\n-2.33754501e-01 -1.25018612e-01 -5.29336095e-01 1.27337381e-01\\n-1.90800324e-01 -1.90402061e-01 -8.49710405e-02 -1.14995398e-01\\n-1.18122794e-01 -4.26183611e-01 -1.06715366e-01 -1.22525126e-01\\n2.84286171e-01 -1.94852024e-01 -4.19794582e-02 -2.32974783e-01\\n1.49049222e-01 2.84637243e-01 5.23172855e-01 9.19648409e-02\\n8.47783983e-02 -3.57522756e-01 -2.50506252e-01 1.48564354e-01\\n1.81228220e-01 1.70128286e-01 2.60742810e-02 3.01527172e-01\\n-2.16837287e-01 5.73847666e-02 9.37110335e-02 3.80991787e-01\\n-4.79477644e-01 6.14154488e-02 -2.06676453e-01 1.43909633e-01\\n2.57612020e-01 2.01875240e-01 -2.61800170e-01 8.53309333e-02\\n-1.99946001e-01 -4.23904121e-01 3.04566056e-01 -8.63096565e-02\\n-3.57200243e-02 4.99662943e-02 1.28981411e-01 1.13556460e-01\\n-2.84328401e-01 -6.86825886e-02 -8.50870386e-02 2.41473511e-01\\n2.12153226e-01 3.13087791e-01 -3.16514820e-01 -2.86024600e-01\\n-1.86461270e-01 1.87176913e-01 -1.66381896e-01 6.69556856e-02\\n1.70782227e-02 3.39607239e-01 3.10208127e-02 7.02763125e-02\\n4.41980451e-01 4.97865044e-02 -2.11667866e-01 -1.50598556e-01\\n-2.66024113e-01 -3.77244651e-01 4.27110732e-04 -5.80797344e-02\\n1.13955222e-01 -4.43898141e-01 -3.84360855e-03 -9.13604945e-02\\n-2.07513228e-01 -3.37287456e-01 3.88290937e-04 -1.68185696e-01]]',\n", + " 'Smallpdf is the most used online PDF software and belongs to the 500 most visited website worldwide. The 5-year-old company is one of the most recognized and awarded startups in Switzerland and has the ambition to simplify the life of its customers. As a senior team full of passion for design, engineering, and business we create remarkable user experiences. Join our cross-functional team and have a direct impact on how over 20 million users worldwide work with documents. Our team enjoys open-source, adopting the latest technologies and solving tricky frontend challenges to create outstanding user interfaces. As a Frontend Engineer at Smallpdf, you will work closely with the team to improve and extend our product. What you will do: Team up with our designers and developers to create great user experiences and reliable interfaces Work closely with our team to tie the front-end to our back-end infrastructure Implement new features and improve existing ones We use the latest technologies, including: ES6 Webpack React Redux Redux-Saga Check our stack via https://stackshare.io/smallpdf/frontend Requirements 3+ years of experience in developing web-based user interfaces Outstanding skills in Javascript (including some knowledge in Node.js) An obsession for interactions, animations, and visual details CSS, TDD, Git and Linux experience Experience with React is a plus Can excel independently and have a sense of ownership for your own work Fluent English Based in Zurich or willing to relocate Swiss or EU passport holder (or other permits that allow you to work in Switzerland) Benefits The chance to personally impact a successful & rapidly growing startup Opportunity to solve tricky frontend challenges using modern technologies Work in small teams that have direct impact on tools that are used by million of users Become part of a highly motivated and international team that pushes boundaries Fun company events, such as snowshoe hikes in the Swiss Alps, wake-surfing on lake Zurich, after work BBQs and more! Free German language course Regular Hack Days to challenge yourself Nice rooftop office in central Zurich If you like the job apply here please: https://apply.workable.com/smallpdf/j/62E4A9510C/apply/ By sending your application you allow Smallpdf to handle and store your data.',\n", + " '[\"Infrastructure\", \"Reliability\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Nice (Unix Utility)\", \"Cascading Style Sheets (CSS)\", \"Interactivity\", \"Visualization\", \"Component Object Model (COM)\", \"Node.js\", \"Linux\", \"Web Development\", \"React.js\", \"Open Source Technology\", \"IText (Free PDF Software)\", \"React Redux\", \"Webpack\", \"Animations\", \"Personalization\", \"JavaScript (Programming Language)\", \"Cross-Functional Team Leadership\", \"Civil Engineering Design\", \"Front End (Software Engineering)\", \"Back End (Software Engineering)\", \"Language Experience Approach\", \"Git Flow\", \"User Experience\", \"User Interface\", \"Adoptions\"]',\n", + " \"['English', 'Yoruba', 'Fijian', 'Dhivehi', 'Kanuri']\"],\n", + " ['75',\n", + " 'c#/c++/python software engineer (machine learning)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.93112397e-01 2.76993454e-01 4.92223561e-01 3.42632048e-02\\n6.42038167e-01 -1.70579538e-01 -2.11510528e-03 2.95063674e-01\\n-2.16714665e-01 -2.27882534e-01 -7.26365969e-02 -3.20287079e-01\\n-8.75073522e-02 7.78775811e-02 2.31837690e-01 4.20437485e-01\\n3.01373005e-01 7.33160451e-02 -1.56790912e-01 3.89016151e-01\\n2.72461325e-01 -4.19317819e-02 -3.10068931e-02 5.45357883e-01\\n4.30955380e-01 3.95432375e-02 -8.26435909e-02 1.65666237e-01\\n-3.70938003e-01 -1.67808726e-01 3.43073279e-01 -3.96495033e-03\\n-3.50094698e-02 -1.72537968e-01 8.43503997e-02 7.26385117e-02\\n-2.61139423e-01 8.37660655e-02 2.17419863e-02 2.62432903e-01\\n-2.41624251e-01 -2.63716340e-01 1.46882042e-01 4.43590097e-02\\n-3.17359388e-01 -3.32624584e-01 -1.01415224e-01 -5.34266746e-03\\n1.53266445e-01 -8.51824284e-02 -5.70278406e-01 4.90823805e-01\\n-9.76071358e-02 -3.72763515e-01 1.44253105e-01 7.20310688e-01\\n-4.58696038e-02 -4.71788079e-01 -2.79114693e-01 -3.49925071e-01\\n1.58798471e-01 -1.38724297e-01 3.64518538e-02 -2.35490397e-01\\n4.39103186e-01 4.57336158e-02 -5.05668996e-03 4.31522518e-01\\n-7.01392114e-01 8.80151838e-02 -1.85126886e-01 1.40523955e-01\\n-3.74686241e-01 3.73319834e-02 -3.81958157e-01 -3.71489488e-02\\n-3.88773717e-02 3.87165993e-01 -4.33914512e-02 5.57110757e-02\\n-9.58388671e-02 2.26998419e-01 -1.35457560e-01 1.66321695e-01\\n3.64505619e-01 3.42216164e-01 1.47968337e-01 5.18526196e-01\\n-5.41358709e-01 2.78979421e-01 1.32350802e-01 -2.97637224e-01\\n2.69251287e-01 1.69332832e-01 4.18165624e-01 2.37587690e-01\\n-2.74782497e-02 1.98606566e-01 -1.37318134e-01 9.44235101e-02\\n7.17410296e-02 -3.25662971e-01 1.25100985e-02 3.70110050e-02\\n-1.44729525e-01 -4.71752435e-02 -1.11040510e-01 4.52604085e-01\\n-2.24880144e-01 3.99958760e-01 3.62990727e-03 -2.67740518e-01\\n-6.19661845e-02 -6.90855563e-01 -1.62362576e-01 3.58507223e-02\\n-5.75124621e-02 1.70467198e-01 3.65175873e-01 2.64852762e-01\\n2.21766889e-01 3.92351635e-02 2.46399477e-01 1.15081906e+00\\n2.99625974e-02 1.77347422e-01 -3.04667920e-01 4.79626447e-01\\n3.08634371e-01 2.11172039e-03 7.90033862e-02 3.05213153e-01\\n1.32920578e-01 -6.64933398e-02 -7.84109160e-02 1.39058277e-01\\n-1.65680841e-01 -1.33007631e-01 -1.48339853e-01 -5.64897992e-03\\n-3.35461944e-01 -6.32025421e-01 6.93757892e-01 3.26561630e-02\\n1.06911473e-01 -1.98106065e-01 -2.25893520e-02 7.23064840e-02\\n-6.83765411e-02 3.22952777e-01 1.44540355e-01 2.21080527e-01\\n-4.65140253e-01 -2.63223588e-01 -3.15163046e-01 4.02703166e-01\\n-1.31134689e-01 5.35284579e-02 -1.49985582e-01 -7.63798133e-02\\n3.24644268e-01 -1.75641775e-02 -3.33491445e-01 3.46920103e-01\\n-7.90918991e-02 -3.94470423e-01 1.63302049e-02 2.95061707e-01\\n-2.32732296e-01 1.97421774e-01 -7.04498589e-02 -3.50995809e-01\\n4.92776215e-01 4.88528982e-02 1.61172315e-01 -1.54270366e-01\\n3.23401093e-01 -1.32222354e-01 2.63603002e-01 2.36801028e-01\\n-5.68935513e-01 3.44074637e-01 -1.00693114e-01 -1.02718577e-01\\n2.23157629e-01 1.44499481e-01 4.79260117e-01 -1.92107946e-01\\n1.80296097e-02 -3.14610094e-01 -4.17981356e-01 -4.11941916e-01\\n-3.51664692e-01 -6.10116161e-02 3.24744165e-01 -3.41245711e-01\\n-3.47643346e-02 1.08026229e-01 -5.23900390e-01 3.12384479e-02\\n2.33394027e-01 2.11120084e-01 -3.07753379e-03 1.38309643e-01\\n-9.96967703e-02 -5.96714199e-01 1.23808891e-01 -4.65844303e-01\\n-4.37148720e-01 2.87717432e-02 -2.76039898e-01 1.08143680e-01\\n1.41488627e-01 2.34599188e-02 -7.82593191e-02 7.79877156e-02\\n-4.14419234e-01 -1.36891738e-01 2.07767546e-01 1.94850504e-01\\n3.32132071e-01 -2.71140546e-01 -4.51851904e-01 5.23020744e-01\\n-1.73754528e-01 5.01401901e-01 3.44227523e-01 -9.31012034e-01\\n5.56109667e-01 2.14151308e-01 6.24020882e-02 -3.55453253e-01\\n5.63346922e-01 -4.46866453e-01 -3.71730439e-02 2.10495621e-01\\n-1.89134583e-01 -1.65003747e-01 2.81173229e-01 -2.73419227e-02\\n-4.47729707e-01 5.94069839e-01 1.51018828e-01 -4.19044495e-02\\n3.21229786e-01 -2.73992360e-01 -1.87989712e-01 -2.11861476e-01\\n-1.60135135e-01 -3.08773011e-01 -4.30488616e-01 1.37604415e-01\\n-5.41779362e-02 -5.61917186e-01 -2.14913890e-01 -3.55732918e-01\\n-9.05518755e-02 -4.87426817e-01 -2.13137090e-01 4.30112243e-01\\n1.84771925e-01 7.90248811e-02 -3.48418653e-02 -1.06014177e-01\\n-1.77613683e-02 -4.51593637e-01 -2.00063765e-01 5.92931248e-02\\n6.05291665e-01 3.68489355e-01 5.74145801e-02 -1.90416053e-02\\n1.56650797e-01 6.13010049e-01 -2.61714458e-01 -4.43101376e-01\\n2.00727150e-01 1.58493787e-01 -1.41176641e-01 -1.43948883e-01\\n5.21547571e-02 4.95592266e-01 -2.52299249e-01 -3.24202306e-03\\n-1.96460649e-01 1.53220017e-02 2.24506393e-01 3.52609879e-03\\n-1.11901999e-01 -3.18543255e-01 -4.27447334e-02 3.70438635e-01\\n-5.10247231e-01 -2.97820300e-01 5.78950107e-01 2.05976963e-01\\n1.06419042e-01 -9.08912998e-03 3.80959451e-01 -9.47711840e-02\\n-3.18148255e-01 -3.17597836e-01 1.09158084e-01 4.06201743e-02\\n9.15191099e-02 8.64126608e-02 -3.83854844e-02 -3.72658521e-01\\n-3.66919827e+00 -2.08468273e-01 8.38653818e-02 -2.81001776e-01\\n1.66111633e-01 -1.30322635e-01 -1.89061657e-01 1.83292314e-01\\n-3.47556472e-01 -1.19800456e-02 -3.33726227e-01 -5.97489718e-03\\n6.32525012e-02 3.45968306e-01 1.50879651e-01 1.00045063e-01\\n2.31223986e-01 -2.07184464e-01 -1.35074407e-01 5.79428136e-01\\n-1.95387453e-01 -6.11396730e-01 9.81731713e-02 -8.30544010e-02\\n1.36568591e-01 2.14787558e-01 -4.25493836e-01 1.10111861e-02\\n-2.21908420e-01 -4.30708766e-01 8.02976936e-02 -2.89357156e-01\\n-2.01565310e-01 4.97082531e-01 7.71032721e-02 -3.49077769e-02\\n3.00752316e-02 -3.39424372e-01 5.16183563e-02 -2.75456518e-01\\n7.86392167e-02 -7.17992246e-01 -7.72197694e-02 4.26140726e-02\\n8.61383617e-01 -4.59401906e-01 2.72209853e-01 1.79776326e-01\\n1.62700623e-01 1.07094564e-01 -9.38765928e-02 -3.08756288e-02\\n-3.37990642e-01 -4.08394545e-01 -1.35858968e-01 -1.70363545e-01\\n4.66936678e-01 3.89480948e-01 -3.12499940e-01 8.91562738e-03\\n1.93044856e-01 -2.64964491e-01 -3.75929236e-01 -5.71550906e-01\\n-2.53535420e-01 -1.68601155e-01 -6.98175788e-01 -6.35981858e-01\\n-2.54297167e-01 -4.18213308e-02 -1.44793078e-01 5.51631808e-01\\n-2.56913513e-01 -4.44924504e-01 -1.41852766e-01 -4.44388747e-01\\n2.01809987e-01 -2.67004371e-01 -3.12018152e-02 -2.11231157e-01\\n-3.99913669e-01 -5.57216406e-01 2.59088278e-01 7.83223882e-02\\n-2.64458358e-01 -6.02975953e-04 9.07902569e-02 -3.30267489e-01\\n-4.11558270e-01 -3.66036206e-01 5.45874000e-01 7.93808773e-02\\n4.61648583e-01 1.77656636e-01 3.30455154e-01 3.52006078e-01\\n4.74436581e-01 -1.38882935e-01 1.25547886e-01 -4.85495329e-01\\n-2.55215969e-02 9.55058560e-02 5.57391584e-01 -2.49974206e-01\\n7.39667714e-02 1.17296651e-01 -2.00860456e-01 -1.51321501e-01\\n4.31543618e-01 6.30931137e-03 2.61769872e-02 -1.46322995e-01\\n4.02855933e-01 -3.35016996e-01 -2.22305462e-01 2.00887263e-01\\n4.11133468e-02 6.14040673e-01 4.86803055e-02 -3.86929959e-01\\n-3.41621965e-01 4.12037909e-01 -2.40852296e-01 -5.07192202e-02\\n-7.41118416e-02 6.66555911e-02 -8.34762678e-02 3.51738125e-01\\n1.65910404e-02 -2.85248339e-01 -3.13854158e-01 1.61938369e-02\\n1.92918405e-02 3.93213443e-02 3.01701099e-01 -5.92322275e-02\\n-4.80673984e-02 -2.28039339e-01 -3.40486094e-02 1.05559140e-01\\n5.97061872e-01 2.32489556e-01 1.59011766e-01 -2.28997022e-01\\n-9.65437200e-03 1.90598950e-01 -1.83227897e-01 3.14763665e-01\\n-1.83184221e-01 1.77261680e-01 -6.72925770e-01 -4.34175640e-01\\n-8.13711137e-02 -2.63806105e-01 3.29722539e-02 3.71272206e-01\\n1.46509469e-01 -1.83334257e-02 -1.11593530e-02 -6.63682222e-01\\n4.85861450e-01 4.65988293e-02 2.88212240e-01 1.18781194e-01\\n3.23336571e-03 6.43613517e-01 8.15772116e-02 -1.50796428e-01\\n-1.62325636e-01 9.63434204e-02 -2.02261195e-01 -3.00196707e-01\\n7.60274529e-02 -3.93480539e-01 -2.24661782e-01 3.89207482e-01\\n2.10050419e-01 -2.89228767e-01 -2.82017589e-01 2.94363081e-01\\n1.30480900e-01 -3.55320960e-01 -1.58804849e-01 2.12058932e-01\\n3.67298931e-01 3.31431389e-01 8.91285203e-03 -4.10225958e-01\\n9.21407342e-02 2.66943164e-02 -2.71587279e-02 3.73034656e-01\\n1.66790023e-01 -1.82103906e-02 -5.80278859e-02 -1.69781551e-01\\n4.89357889e-01 -1.37192430e-02 -9.86241028e-02 -1.49851784e-01\\n1.19060762e-02 -2.45856643e-01 -3.20087463e-01 1.65023338e-02\\n5.36215939e-02 -2.43467480e-01 2.91712023e-02 1.69196472e-01\\n-6.22595921e-02 -9.51955616e-02 -3.32612157e-01 -3.26634437e-01\\n-5.06726563e-01 -2.50204116e-01 8.16685483e-02 -2.84202337e-01\\n-1.19560286e-02 2.54749991e-02 -4.99149263e-01 1.98163122e-01\\n-1.63681358e-01 -1.37528749e-02 9.68734026e-02 -1.09502032e-01\\n-2.99439847e-01 -1.82755515e-01 2.80210763e-01 2.91161329e-01\\n-3.88082802e-01 -1.64800346e-01 -2.10505426e-02 -8.07056844e-01\\n7.11317058e-04 -6.90776706e-02 -1.23619050e-01 3.51600233e-04\\n8.44649971e-02 -5.55475295e-01 3.80033284e-01 -5.59305429e-01\\n-7.06439614e-02 -1.35144014e-02 -2.45653465e-01 -4.52459663e-01\\n1.60185173e-01 -6.70149103e-02 -3.09665531e-01 3.30242008e-01\\n-4.80208993e-01 4.10413206e-01 8.96358863e-03 1.02517875e-02\\n7.97201172e-02 -3.61136556e-01 1.79732472e-01 -1.13680094e-01\\n-3.03354442e-01 -2.00634837e-01 -4.11587179e-01 -1.47562817e-01\\n-2.23134443e-01 -5.22293672e-02 -2.96606243e-01 -6.57303631e-03\\n2.60561973e-01 1.41304597e-01 -9.21496004e-02 -2.09514886e-01\\n2.37843215e-01 -5.40693343e-01 1.96395069e-02 -3.98853213e-01\\n-9.55977365e-02 -1.15620725e-01 2.37159133e-01 3.33553366e-02\\n3.93835492e-02 -3.00088227e-01 4.47715610e-01 -1.14152871e-01\\n-3.90530735e-01 -3.08494456e-02 1.94468230e-01 1.21691160e-01\\n2.70845294e-01 -3.52301449e-01 -4.02841941e-02 2.26664990e-01\\n8.52903873e-02 1.95753530e-01 3.68561625e-01 1.00308293e-02\\n-2.34743536e-01 1.98384374e-01 -4.43188906e-01 8.91323462e-02\\n7.13130534e-01 2.06691399e-01 1.09216467e-01 1.53789952e-01\\n2.14320764e-01 3.61826718e-01 4.90207285e-01 1.13227181e-02\\n-3.34464274e-02 4.50215518e-01 7.86216930e-02 -5.92285395e-01\\n1.49200941e-02 -1.72554851e-01 -1.56296507e-01 -1.25592753e-01\\n4.73073035e-01 4.68487293e-01 -3.85393590e-01 -2.43817419e-01\\n-8.48503858e-02 -4.42804256e-03 4.12756830e-01 9.06915870e-03\\n2.03662105e-02 6.17116839e-02 5.86361468e-01 -8.95997062e-02\\n2.35010087e-01 6.09750569e-01 -2.34052360e-01 -2.00185582e-01\\n-6.33458272e-02 1.80512276e-02 1.99213415e-01 2.98758000e-01\\n-9.70214307e-02 2.48033211e-01 1.85327213e-02 1.03757590e-01\\n-1.10848770e-01 -1.95246972e-02 2.29128078e-01 -8.23669583e-02\\n1.75298005e-01 8.99047703e-02 1.78178921e-01 3.55724841e-01\\n1.02944665e-01 5.04170656e-01 2.84641981e-01 -1.53780403e-03\\n2.74990439e-01 5.48077524e-01 2.89394110e-01 2.25715250e-01\\n6.94509819e-02 1.40436264e-02 2.45492309e-02 -1.22773992e-02\\n1.92008689e-01 3.53962004e-01 2.14647055e-01 9.79651451e-01\\n4.42511380e-01 3.53421211e-01 7.06436992e-01 -6.49439871e-01\\n-4.68792796e-01 3.53603996e-02 5.80333531e-01 -2.30941936e-01\\n-1.63415313e-01 2.76218802e-02 -2.90513307e-01 1.11833483e-01\\n-5.83295047e-01 -2.01193541e-02 1.21563552e-02 -1.82474721e-02\\n-1.06463313e-01 -6.23168284e-03 -2.93119758e-01 3.61803360e-02\\n-1.00165829e-01 -1.22578647e-02 -4.06143695e-01 -3.04052770e-01\\n-2.30595559e-01 -1.46788731e-01 -1.36443034e-01 4.96575497e-02\\n-9.06742364e-02 -3.11901033e-01 -1.71947211e-01 1.35697857e-01\\n4.19050753e-01 -2.05030143e-01 -7.03667551e-02 -2.20522180e-01\\n-6.85346965e-03 3.07208002e-01 5.89590132e-01 -1.16100222e-01\\n1.97559595e-01 -2.39646628e-01 -1.94241658e-01 7.53690116e-03\\n8.12006518e-02 -2.88174860e-02 1.86197441e-02 7.05693662e-01\\n-4.28495526e-01 -2.04107031e-01 -5.80375157e-02 3.85444969e-01\\n-4.01256144e-01 2.56217327e-02 2.91381851e-02 1.21905118e-01\\n-7.30662644e-02 1.67366996e-01 -3.14151913e-01 2.10981295e-02\\n-3.89374882e-01 -4.96164888e-01 4.15004820e-01 -2.31707111e-01\\n-8.57435092e-02 1.12030491e-01 3.03717554e-01 2.24826604e-01\\n-1.30032048e-01 -8.45822468e-02 -1.31629303e-01 3.42964649e-01\\n-1.09149545e-01 4.03468609e-01 -2.34294176e-01 -1.77607566e-01\\n-2.80292898e-01 2.49166027e-01 -1.45157233e-01 2.22440794e-01\\n-2.08656818e-01 3.40195715e-01 1.54547011e-02 7.62364194e-02\\n1.16438173e-01 5.06092757e-02 -3.44826460e-01 -1.73947260e-01\\n-1.92740887e-01 -3.71713728e-01 8.59138295e-02 1.21583402e-01\\n1.46260709e-01 -3.15748990e-01 4.77702543e-02 -1.62684917e-01\\n-2.52648801e-01 -5.16583860e-01 -1.42148972e-01 -6.85354918e-02]]',\n", + " 'Job Informationen Your profile: • Data processing: parsing, filtering, piping, indexing querying data efficiently • Experience in Pipeline development • Expertise in full-stack data science tools including data wrangling/munging, iterative and batch analysis • Knowledge of image processing, computer vision & geometric analysis • Data mining and statistical modeling background • Experience automated model training • Strategic data analysis and research: statistical tests, propagation of error, Identifying clusters and outliers • Building training/testing and validating datasets • SQL/ NO-SQL, C#, Python, C++ • Knowledge of agile development principles and experience in project methodologies. • MS or BSc in Software Engineering or equivalent experience. • Good team player and ambition to actively form a great company. • Azure or comparable cloud platform experience and large scaling web applications is a plus. • Fluent in English and German. • Understanding of CNC Manufacturing/CAD is a plus Benötigte Skills SQL NoSQL C# .NET Python Python C++ CAD',\n", + " '[\"Research\"]',\n", + " '[\"Web Applications\", \"Automation\", \"Python Server Pages\", \"Tooling\", \"NoSQL\", \"Propagator\", \"Computer Numerical Control (CNC)\", \"C++ (Programming Language)\", \"Activism\", \"Computer Vision\", \"Python (Programming Language)\", \"Cloud Platform System\", \"Dataset\", \"Iterators\", \"Statistical Modeling\", \"Pipelining\", \"Software Engineering\", \"Physician Data Query\", \"Image Processing\", \"Data Science\", \"Indexing\", \"Data Wrangling\", \"C# (Programming Language)\", \"Outliers\", \"Electronic Data Processing\", \"Agile Product Development\", \"Java Data Mining\", \"Validations\", \"Statistical Hypothesis Testing\", \"Parsing\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'data preparation expert',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'Ido', 'French', 'Sundanese', 'Bosnian']\"],\n", + " ['116',\n", + " 'full-stack software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.36740351e-01 2.88936019e-01 5.10208249e-01 1.44284032e-03\\n4.70957875e-01 -1.39022276e-01 -1.09604280e-02 3.85283589e-01\\n1.17760301e-02 -5.42707086e-01 -4.41441610e-02 -3.45162809e-01\\n-8.51533040e-02 2.01667964e-01 3.61580178e-02 3.31683517e-01\\n4.37809408e-01 1.28416851e-01 -1.27002075e-01 3.50799769e-01\\n6.54001236e-02 -1.88190579e-01 -9.09784250e-03 8.65439653e-01\\n3.71540129e-01 -5.91914617e-02 -1.10496208e-01 1.71588995e-02\\n-2.15263575e-01 -2.40220428e-01 4.33525562e-01 4.29515615e-02\\n-1.70200810e-01 -4.19960916e-01 6.11342639e-02 4.35761586e-02\\n-2.11427405e-01 6.67328984e-02 -8.47061947e-02 6.20165132e-02\\n-4.99509603e-01 -2.04048812e-01 7.12506548e-02 -9.74359959e-02\\n-1.90708697e-01 -3.25748801e-01 9.18297321e-02 3.39630321e-02\\n1.89653501e-01 -6.93693012e-03 -4.73086894e-01 2.40528017e-01\\n-2.26929337e-01 -1.68782979e-01 2.70750821e-01 5.36220253e-01\\n1.21692223e-02 -4.12523180e-01 -4.66061652e-01 -3.05633426e-01\\n6.37141392e-02 -8.20945650e-02 1.84677616e-01 -3.15301955e-01\\n4.01196122e-01 1.68232173e-02 -1.72114968e-02 2.68393070e-01\\n-6.75586462e-01 -3.85808386e-02 -3.37628007e-01 2.89283376e-02\\n-3.20351720e-01 -1.95934147e-01 -3.75873744e-01 -8.53928030e-02\\n-1.45761400e-01 4.00271297e-01 1.26400173e-01 1.21805623e-01\\n-2.74021566e-01 3.07712436e-01 -2.18901783e-01 4.40495074e-01\\n2.08199471e-01 2.62404591e-01 3.14336091e-01 3.30210477e-01\\n-4.58958417e-01 4.25645173e-01 1.39923021e-01 -2.32432425e-01\\n3.81427556e-01 1.09482855e-01 3.08440149e-01 -7.24775791e-02\\n2.10132927e-01 1.07721016e-01 -1.83054447e-01 2.72777855e-01\\n1.78626820e-01 -2.91383028e-01 -5.12484089e-02 -1.08245328e-01\\n2.33571790e-02 5.30383401e-02 3.49978618e-02 1.72841027e-01\\n-3.41686189e-01 4.68909860e-01 1.88141346e-01 -2.33332932e-01\\n-2.14018375e-01 -4.53672349e-01 -4.98792082e-02 5.92030473e-02\\n-2.80785635e-02 1.04893766e-01 2.93634236e-01 1.10680066e-01\\n2.29387373e-01 4.19082716e-02 4.50956151e-02 8.75518620e-01\\n-6.11162111e-02 5.32259122e-02 -3.08237195e-01 3.60507995e-01\\n1.07064709e-01 -2.90008187e-01 1.08443975e-01 2.24845588e-01\\n8.34799558e-03 -1.12637565e-01 -2.69115329e-01 4.19014692e-01\\n3.17200571e-02 -2.17936993e-01 -2.49858886e-01 1.49574310e-01\\n-4.43070047e-02 -4.84749317e-01 6.10840023e-01 8.19865614e-02\\n2.27659583e-01 -7.98174441e-02 1.40729502e-01 -1.55077294e-01\\n-1.22981578e-01 2.34592497e-01 6.55905679e-02 1.94221258e-01\\n-2.54552364e-01 -3.03793013e-01 -2.25468665e-01 1.34403884e-01\\n-3.36865008e-01 2.09267557e-01 -8.32896158e-02 -8.91502351e-02\\n2.90592968e-01 4.62634042e-02 -3.34347486e-01 2.60780096e-01\\n-1.07751086e-01 2.58502066e-02 -1.24109536e-01 3.77673388e-01\\n-1.68899775e-01 1.53479815e-01 1.05851017e-01 -1.59236323e-02\\n5.56878924e-01 3.04227710e-01 1.89586431e-01 -4.87767905e-02\\n3.47013950e-01 -1.31681859e-01 -8.29139166e-03 1.19794980e-01\\n-6.71812415e-01 3.65017354e-01 -6.21266998e-02 -1.40731335e-01\\n3.27942818e-02 -1.07224986e-01 2.52086014e-01 -2.92773306e-01\\n-5.69693893e-02 -1.84647530e-01 -3.93494517e-01 -2.33491927e-01\\n-2.18553513e-01 -2.08394416e-02 3.38352740e-01 -4.48163718e-01\\n-6.94795772e-02 2.25898534e-01 -6.12091482e-01 -5.42385206e-02\\n2.09354982e-01 2.10308507e-01 5.87331355e-02 1.33425102e-01\\n-8.86202082e-02 -5.57947993e-01 9.65655595e-02 -4.85117853e-01\\n-3.69276136e-01 6.00739568e-02 -3.70473206e-01 1.81543082e-01\\n1.25944883e-01 -1.02324374e-02 -1.18141189e-01 9.45614129e-02\\n-1.39630884e-01 -5.09480126e-02 1.37375534e-01 4.46327589e-03\\n3.28241289e-01 5.65517470e-02 -4.17358994e-01 4.15330023e-01\\n-3.31370413e-01 4.27606463e-01 3.46104503e-02 -9.13778901e-01\\n4.89763916e-01 3.75711739e-01 -1.98173858e-02 -3.50116909e-01\\n5.22423863e-01 -2.77704418e-01 -2.86553241e-02 8.91416669e-02\\n-3.18199992e-01 -2.20564902e-01 2.31708705e-01 -2.81772256e-01\\n-2.45263651e-01 4.36373740e-01 -3.50914598e-02 4.30968255e-02\\n1.92479521e-01 -2.38515586e-01 -9.43953693e-02 6.87598288e-02\\n-1.71053559e-01 -2.34763503e-01 -5.62543869e-01 -4.00280952e-02\\n-6.69408739e-02 -4.71346051e-01 -1.24020010e-01 -4.86626387e-01\\n-1.44189775e-01 -4.34940219e-01 -3.04029971e-01 2.77935505e-01\\n2.38900289e-01 9.17146653e-02 -9.42810252e-02 9.06355530e-02\\n-1.62413910e-01 -5.85484982e-01 7.03520030e-02 1.32536024e-01\\n4.45864916e-01 2.11284801e-01 1.26100570e-01 -3.11783701e-02\\n8.82027522e-02 6.60116911e-01 -2.89805591e-01 -1.85823396e-01\\n1.19278438e-01 9.60551426e-02 2.19868328e-02 -1.20992944e-01\\n9.39789116e-02 3.68779957e-01 -2.67930925e-01 -1.06702268e-01\\n-1.18275508e-02 -1.80686377e-02 5.04866183e-01 -9.72471237e-02\\n-4.06755209e-01 -1.73089221e-01 -5.12495860e-02 2.26473257e-01\\n-5.56308270e-01 -1.89918384e-01 5.51368475e-01 2.59510696e-01\\n1.32375568e-01 1.40564382e-01 8.70226622e-02 2.04924457e-02\\n-2.31066555e-01 -3.08905751e-01 3.52212429e-01 1.02767691e-01\\n1.89066380e-01 1.75251737e-01 -4.04737666e-02 -6.75059199e-01\\n-3.40967226e+00 -2.01241538e-01 2.09748000e-01 -2.46826857e-01\\n2.16397673e-01 -6.56762272e-02 1.89040452e-02 -1.45118624e-01\\n-3.09769481e-01 1.35826379e-01 -2.37879172e-01 -1.61732435e-01\\n1.03105493e-01 2.07215667e-01 1.36013448e-01 1.76817715e-01\\n1.26359150e-01 -2.08871037e-01 3.42192650e-02 2.73370087e-01\\n-2.13377506e-01 -6.77313447e-01 1.97376981e-01 -5.81447259e-02\\n3.15868229e-01 2.07531199e-01 -4.36815023e-01 -6.69796020e-02\\n-2.85739571e-01 -2.28000373e-01 7.61417150e-02 -3.00430030e-01\\n-1.76613301e-01 2.32892066e-01 1.92033142e-01 -8.08389932e-02\\n1.49599701e-01 -3.85734767e-01 -1.29262716e-01 -5.28546095e-01\\n2.44615749e-01 -5.43723583e-01 -1.18618272e-03 -1.68722197e-02\\n6.86967909e-01 -3.03983092e-01 2.45672226e-01 8.54234621e-02\\n1.00820690e-01 1.43282652e-01 1.53626323e-01 7.45085441e-03\\n-2.34429196e-01 -2.04747647e-01 -2.68241726e-02 -2.21321210e-01\\n6.24599874e-01 3.10442179e-01 -1.86813563e-01 1.82755291e-03\\n7.26748407e-02 -3.09982479e-01 -4.17418897e-01 -2.77092636e-01\\n-6.57478198e-02 -2.24812090e-01 -6.13985896e-01 -4.31001991e-01\\n-1.93804950e-01 -1.14196524e-01 5.80548635e-03 6.90795779e-01\\n-2.62466997e-01 -3.59359562e-01 -1.06077464e-02 -5.64706504e-01\\n1.73633873e-01 -2.75465190e-01 8.77901018e-02 -2.63682425e-01\\n-2.75769174e-01 -4.68846947e-01 6.78497031e-02 2.87254211e-02\\n-1.10324316e-01 -1.58274725e-01 1.59933791e-01 -7.39654452e-02\\n-2.80938506e-01 -5.06939411e-01 4.46500361e-01 2.17222556e-01\\n2.71905392e-01 1.26392663e-01 2.64322311e-01 -4.56996821e-02\\n3.05157840e-01 -5.70856854e-02 -2.20005214e-03 -3.59343261e-01\\n1.66066170e-01 5.04597016e-02 4.51569498e-01 -1.13846190e-01\\n-8.80367681e-02 1.92972124e-01 -1.94459170e-01 -7.28246570e-02\\n3.82784337e-01 -2.54122466e-02 6.23605624e-02 -5.14514484e-02\\n3.36190611e-01 -4.64257061e-01 -1.34301156e-01 5.70408590e-02\\n6.48126528e-02 6.75967693e-01 -9.34863836e-02 -4.00493741e-01\\n-1.00382149e-01 5.64456105e-01 -1.05479017e-01 1.69555500e-01\\n-7.35493898e-02 1.83787867e-01 -2.56730914e-01 2.61159837e-01\\n2.66033337e-02 -2.73479581e-01 -2.71240771e-01 -1.69229090e-01\\n-2.08444726e-02 1.37145698e-01 2.91563392e-01 1.74123049e-01\\n-1.41047211e-02 -5.03307700e-01 -1.36685222e-01 1.38747200e-01\\n3.06091934e-01 5.23442626e-01 1.72555685e-01 -1.68839380e-01\\n6.93225116e-03 3.08856189e-01 -1.73113570e-01 1.87969476e-01\\n-3.09356570e-01 8.88591930e-02 -5.05954802e-01 -2.20919758e-01\\n-2.55099028e-01 -4.00430679e-01 1.06888995e-01 2.11233661e-01\\n1.05712682e-01 -2.83712894e-03 7.30367005e-03 -4.26047027e-01\\n3.04126590e-01 1.19466469e-01 2.67004371e-01 1.52870253e-01\\n-7.31991976e-02 5.00665784e-01 2.40842905e-03 -1.16174109e-01\\n-2.50390947e-01 3.70733961e-02 -8.87313411e-02 -1.00936234e-01\\n6.24461472e-02 -4.98292506e-01 -7.74929374e-02 3.27490538e-01\\n1.06020667e-01 -2.81790078e-01 -1.39857665e-01 3.17956805e-01\\n-5.64069860e-02 -2.20248252e-01 -1.53585047e-01 -5.14464751e-02\\n2.88666904e-01 9.04315114e-02 2.25640118e-01 -4.37493682e-01\\n-5.79810850e-02 1.01225793e-01 -4.76296321e-02 5.06426752e-01\\n1.88762881e-02 -2.68945694e-02 -9.40996334e-02 -2.04098225e-01\\n3.84778500e-01 -6.45892322e-02 -1.20668970e-01 -6.22128136e-02\\n6.39826134e-02 -2.45407805e-01 -5.15367508e-01 3.67570035e-02\\n-4.08199355e-02 -1.51119903e-01 1.03615984e-01 1.47184432e-01\\n8.86435285e-02 1.73694581e-01 -5.16552746e-01 -3.33969533e-01\\n-4.30056334e-01 -8.58183131e-02 4.08211686e-02 -5.23886323e-01\\n-6.93643391e-02 -1.34944141e-01 -5.22669435e-01 2.85624504e-01\\n-1.44522846e-01 -2.00143307e-01 8.25720355e-02 1.29217759e-01\\n-3.29916745e-01 -1.71915621e-01 1.09989122e-01 2.64256924e-01\\n-2.77180612e-01 -3.55215430e-01 7.82245398e-02 -9.41297770e-01\\n2.69872844e-01 3.89224850e-02 -2.19330221e-01 5.20620681e-02\\n-1.02437213e-01 -5.86140394e-01 1.50188535e-01 -3.41452479e-01\\n-1.33883700e-01 -8.58023614e-02 -2.56937534e-01 -2.93597758e-01\\n5.89186735e-02 -5.64202257e-02 -3.78251046e-01 4.79708612e-01\\n-3.33109856e-01 3.75019997e-01 -1.77408457e-01 6.16113432e-02\\n-7.09157288e-02 -2.87820518e-01 6.92311078e-02 -4.03293312e-01\\n-4.38619137e-01 -1.63953960e-01 -3.28303218e-01 -2.98244059e-01\\n-4.70093638e-02 -3.20540667e-01 -1.09205157e-01 8.15660805e-02\\n2.77207971e-01 1.19911984e-01 -1.09990172e-01 -2.65349984e-01\\n-2.65522487e-03 -4.47856784e-01 8.49087909e-02 -1.30007327e-01\\n-6.09392822e-02 -1.74887180e-01 1.14001319e-01 1.43072024e-01\\n1.14375539e-01 -3.69152904e-01 3.17152709e-01 -2.47948781e-01\\n-2.78696269e-01 -8.69773179e-02 8.16574916e-02 9.08271447e-02\\n2.30152443e-01 -6.16543412e-01 -1.54089537e-02 3.62740517e-01\\n2.23376185e-01 1.52197778e-01 2.20323175e-01 -3.75681035e-02\\n-1.43476650e-02 3.67671728e-01 -3.53258908e-01 5.23263887e-02\\n7.32144117e-01 1.65160626e-01 1.55463278e-01 1.66766018e-01\\n2.37071037e-01 3.06367099e-01 5.43894351e-01 -1.08211875e-01\\n-2.48075910e-02 2.46920392e-01 7.70304725e-02 -5.98681748e-01\\n-6.85349666e-03 1.13660172e-02 -1.31626889e-01 -3.87467921e-01\\n6.14091277e-01 3.43626559e-01 -4.49733377e-01 -1.51396409e-01\\n-1.45479068e-01 -1.52044415e-01 2.55351812e-01 -1.49774477e-01\\n3.03411633e-02 -1.50188267e-01 3.75721157e-01 -7.21335858e-02\\n2.81254262e-01 6.15337253e-01 -1.86249077e-01 -3.82315069e-01\\n-9.47420970e-02 1.60734877e-01 5.85579649e-02 4.88299072e-01\\n-2.35143989e-01 1.80441111e-01 -2.21584737e-03 1.29839480e-01\\n-9.97863114e-02 2.16585070e-01 5.42820618e-02 9.17304084e-02\\n1.92728013e-01 -4.01682816e-02 4.13136244e-01 4.64922249e-01\\n2.70145297e-01 4.73954678e-01 3.32143396e-01 1.44126207e-01\\n3.96509796e-01 5.44604480e-01 4.67287987e-01 2.50936067e-03\\n1.09223366e-01 1.97611615e-01 1.08504049e-01 -1.29404768e-01\\n3.23847800e-01 5.05049944e-01 4.73525189e-02 9.42971349e-01\\n3.32332313e-01 3.61887276e-01 6.63132966e-01 -6.57797396e-01\\n-3.65146756e-01 9.13480073e-02 4.67324018e-01 -3.34599465e-01\\n3.66582721e-02 1.28194422e-01 -1.59682468e-01 2.62174666e-01\\n-4.47905242e-01 -1.74026787e-01 -6.46511391e-02 1.76049173e-02\\n1.40838102e-01 -1.77267253e-01 -3.12929422e-01 5.39978854e-02\\n-8.60357583e-02 -9.92091894e-02 -4.42659378e-01 7.26443436e-03\\n-2.01812893e-01 -3.08579914e-02 -1.48738146e-01 -1.06477462e-01\\n-3.34910005e-02 -3.45303893e-01 -1.05920061e-01 4.60610949e-02\\n2.44338006e-01 -1.22206815e-01 -1.02738798e-01 -1.16229735e-01\\n3.20758343e-01 1.46888778e-01 5.04078269e-01 1.97907723e-02\\n6.83466494e-02 -1.10020250e-01 -2.19985068e-01 9.38115641e-02\\n2.02994674e-01 6.98486194e-02 1.67999715e-02 2.82869279e-01\\n-2.51916468e-01 -1.28604114e-01 7.31897950e-02 3.71181905e-01\\n-3.59662473e-01 1.03703633e-01 -9.87626389e-02 2.05444261e-01\\n1.01128571e-01 1.75954789e-01 -1.72576457e-01 -5.03009520e-02\\n-1.79152295e-01 -4.53082740e-01 2.36307442e-01 -8.19632560e-02\\n-1.01331376e-01 8.64242017e-02 2.99064249e-01 2.90064335e-01\\n-2.60892004e-01 -1.20533388e-02 1.58325676e-03 7.84169510e-02\\n6.71723112e-02 3.82858694e-01 -1.82950497e-01 -1.91660553e-01\\n-3.57300758e-01 1.70380026e-01 -1.95643470e-01 9.07348692e-02\\n-6.28202558e-02 3.33029717e-01 9.82337072e-02 9.12209302e-02\\n3.34678054e-01 2.81345099e-04 -3.35966825e-01 -1.57876998e-01\\n-2.43858546e-01 -1.63695738e-01 3.55748571e-02 -4.06361520e-02\\n2.57630855e-01 -3.70055825e-01 -3.36659104e-02 -2.58131325e-01\\n-1.37659132e-01 -3.75395656e-01 4.36342619e-02 -1.26448929e-01]]',\n", + " 'Swiss Startup Tech (SSUT) is an entity of a group of marvelous product innovators, who support companies of all sizes in building innovative solutions. Our company offers the full life-cycle of products development: ideation, design & prototyping, validation, scaling and maintenance. Responsibilities Build lean, scalable and secure applications based on modern technology stacks and well defined architecture. You write high quality, testable and efficient code by using best software development practices and state-of-the-art technologies. Represent the software development team, lead engineering initiatives, and provide feedback in planning and product channels. Partner with product, design, marketing, and branding to ensure projects are well-defined and successfully executed. Work closely with product managers, designers, QA and their leaders to ensure a cohesive user experience across all products. Assist in shaping the workflows of product development taking into consideration frontend and backend principles. Requirements Passionate about digital products delivering high quality secure applications. Eager to learn new technologies and doing quick proof of concepts. Ability to think out of the box of the happy path and incorporate the visibility of edge and corner cases into the software development process. Excellent organizational, decision making and communications skills. Comfortable to present to any audience and work with minimum supervision. Experience in the development, testing and deployment of scalable solutions via Docker on cloud infrastructure like AWS or Google Cloud. Proficiency with frontend programming languages such as HTML, CSS, JavaScript. Knowledge of multiple back-end languages (e.g. Python, Java, Scala) and JavaScript frameworks (e.g. React, Angular, Node.js). Familiarity with database technology like MySQL, PostgreSQL, MongoDB or ElasticSearch. Fluent English and German speaker and based in Zürich, Switzerland. What we offer An environment of growth: we thrive to create a safe environment for innovation, experimentation and self-development. We support our culture to improve current and develop new skills. Authenticity and transparency: a drama-free working environment, where you are valued as a contributor and acknowledge as part of the company. We emphasize your involvement at any stage of the development. Culture driven company: the most valuable asset of our company is our team. We spend a lot of hours together in and outside of the office and build strong relationships. Great location: You will work in our modern offices in the heart of Zürich. There will be a need to travel for meetings with customers, conferences, presentations and other activities. We seek individuals that can make the difference. We believe in rewarding success and offer a competitive package, including the possibility to participate in our share option plan. Are you the perfect match for this role? If so, please send your CV to: hr@ssut.ch',\n", + " '[\"Verbal Communication Skills\", \"Writing\", \"Presentations\", \"Ideation\", \"Planning\", \"Supervision\", \"Decision Making\", \"Innovation\"]',\n", + " '[\"Development Testing\", \"Production Management\", \"MySQL\", \"KM Programming Language\", \"Cascading Style Sheets (CSS)\", \"Life Cycle Assessment\", \"Branding\", \"Staging\", \"Scala (Programming Language)\", \"Authentications\", \"Activism\", \"PostgreSQL\", \"Python (Programming Language)\", \"Node.js\", \"Prototyping\", \"MongoDB\", \"E (Programming Language)\", \"Product Innovation\", \"Experimentation\", \"HyperText Markup Language (HTML)\", \"Executable\", \"Design Management\", \"React.js\", \"Docker (Software)\", \"Product Design\", \"Application Security\", \"Testability\", \"Pathing\", \"JavaScript (Programming Language)\", \"Scalability\", \"Sage SAFE X3\", \"Google Cloud\", \"JavaScript Frameworks\", \"Transparency (Human-Computer Interaction)\", \"Validations\", \"Angular (Web Framework)\", \"Digital Product Management\", \"Back End (Software Engineering)\", \"Software Development\", \"User Experience\", \"Workflows\", \"Custom Backend\", \"Java (Programming Language)\", \"Cloud Infrastructure\", \"Agile Product Development\", \"Elasticsearch\"]',\n", + " \"['English', 'Chuang']\"],\n", + " ['75',\n", + " 'data preparation expert',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-8.08659196e-02 3.70688587e-01 5.38214862e-01 5.78740872e-02\\n5.34247518e-01 -1.54058203e-01 8.74300972e-02 2.45906383e-01\\n-3.23704742e-02 -2.45659471e-01 -1.19101405e-01 -2.91236341e-01\\n1.19120695e-01 1.40811652e-01 7.15152472e-02 4.19706047e-01\\n2.71076262e-01 2.84780376e-02 -1.04007386e-01 2.38527924e-01\\n5.16347662e-02 -1.68829143e-01 7.76197854e-03 6.70121253e-01\\n5.75259984e-01 4.97042201e-02 -5.89566454e-02 1.07415147e-01\\n-3.82866472e-01 -3.20855707e-01 4.33641821e-01 7.80393481e-02\\n-2.39446178e-01 -2.29111955e-01 8.78667831e-02 1.17583811e-01\\n-2.31152564e-01 2.91328523e-02 -1.12755418e-01 2.82990914e-02\\n-3.79758179e-01 -2.09554598e-01 -1.06013678e-02 -2.25657150e-02\\n-2.66795009e-01 -2.90911376e-01 -4.60335948e-02 -4.37521897e-02\\n8.00683275e-02 -3.72601002e-02 -5.93966842e-01 4.54773933e-01\\n-1.92346662e-01 -2.69732803e-01 1.50699526e-01 6.80241883e-01\\n-9.19666365e-02 -5.58280230e-01 -4.77041811e-01 -2.38343745e-01\\n1.26977623e-01 -1.49426192e-01 6.91653639e-02 -1.15715839e-01\\n5.73819518e-01 -3.09662726e-02 -5.03956676e-02 5.65710843e-01\\n-6.08759463e-01 -1.16813168e-01 -4.08971936e-01 -2.57782545e-02\\n-4.06599879e-01 8.89940094e-03 -4.13968503e-01 -1.48026928e-01\\n-2.06864788e-03 3.51624578e-01 1.18822016e-01 1.09789714e-01\\n-2.14421868e-01 2.49275371e-01 -1.32403016e-01 1.41690284e-01\\n3.43566746e-01 2.85218179e-01 2.33624369e-01 2.22105965e-01\\n-3.11878502e-01 4.20144171e-01 1.93728894e-01 -2.46920794e-01\\n1.96609989e-01 8.66372511e-02 3.78277242e-01 9.48235765e-02\\n4.15957496e-02 3.17042261e-01 -1.26192853e-01 1.35911167e-01\\n1.76581010e-01 -2.41834641e-01 7.85280839e-02 -7.29857683e-02\\n-9.42359269e-02 2.13560816e-02 4.02612910e-02 1.46846235e-01\\n-3.30522776e-01 3.91521662e-01 7.92473704e-02 -2.70391524e-01\\n-6.43076748e-02 -4.47509915e-01 -2.11389616e-01 -1.10602938e-01\\n-8.10001940e-02 3.14547658e-01 1.90907046e-01 2.12644130e-01\\n1.79084674e-01 5.56535125e-02 1.96958214e-01 9.26842749e-01\\n-1.09700114e-02 2.99870074e-02 -2.33017847e-01 4.29640919e-01\\n1.83055371e-01 -2.70423651e-01 3.14257145e-01 1.84097901e-01\\n9.81539637e-02 -9.30827633e-02 -2.62484580e-01 2.13290855e-01\\n-9.94322971e-02 -1.78215817e-01 -1.91584080e-01 4.31713983e-02\\n-1.90798119e-01 -5.06934702e-01 4.77579266e-01 1.23122297e-01\\n1.36161253e-01 -8.20845813e-02 -4.29915711e-02 -7.36123547e-02\\n-1.10252917e-01 2.54514456e-01 6.62286729e-02 2.54456460e-01\\n-3.55295718e-01 -2.21222371e-01 -1.15669109e-01 4.07888800e-01\\n-1.54022202e-01 1.49967775e-01 -2.24350378e-01 -9.41570550e-02\\n2.81976163e-01 4.21194844e-02 -3.36981356e-01 3.34072918e-01\\n-2.39625312e-02 -4.09157544e-01 -1.98943064e-01 3.63191247e-01\\n-1.21057287e-01 1.93278983e-01 1.51333632e-02 -2.34721780e-01\\n5.72295129e-01 1.98548213e-01 1.87620774e-01 -7.07464293e-02\\n2.15498045e-01 -4.89953607e-02 1.83209106e-01 1.29193291e-01\\n-5.36492407e-01 5.41944802e-01 -7.12802727e-03 -1.93424225e-01\\n1.58600911e-01 1.01557989e-02 3.55445445e-01 -4.15746182e-01\\n-7.60456771e-02 -1.53487086e-01 -4.36555803e-01 -4.09746975e-01\\n-1.20209821e-01 6.37285458e-03 3.25702041e-01 -3.84208113e-01\\n-1.12551497e-02 1.34428710e-01 -5.61641812e-01 -1.74487054e-01\\n2.59098440e-01 1.69065386e-01 5.60559928e-02 9.73374024e-02\\n-1.55410185e-01 -4.18606430e-01 1.08306624e-01 -4.82770056e-01\\n-4.09166902e-01 -2.15005986e-02 -3.65982413e-01 1.48752391e-01\\n5.68008684e-02 4.07988876e-02 -1.35715082e-01 2.22633362e-01\\n-2.84472585e-01 -3.38838920e-02 2.64658660e-01 1.70869812e-01\\n2.91662246e-01 -7.55598024e-02 -3.51547003e-01 4.45474595e-01\\n-2.38098934e-01 4.55432475e-01 3.11055124e-01 -8.74765873e-01\\n4.20801103e-01 1.63062781e-01 7.61566535e-02 -2.52752870e-01\\n4.97078270e-01 -5.71257293e-01 -4.13348302e-02 1.59087956e-01\\n-2.12513298e-01 -1.69064060e-01 2.48866707e-01 -1.09971382e-01\\n-2.55500376e-01 5.59263051e-01 1.18113168e-01 8.97337571e-02\\n3.57811987e-01 -9.47445855e-02 -9.14684609e-02 -4.89686616e-02\\n-2.09065437e-01 -1.55160144e-01 -3.98318022e-01 1.79524869e-02\\n-1.11407444e-01 -5.75498044e-01 -7.45286793e-02 -5.04450977e-01\\n-1.14510395e-01 -3.81482542e-01 -2.27418914e-01 3.32800269e-01\\n2.43438169e-01 2.35544264e-01 -1.07973600e-02 -8.03902671e-02\\n-4.20176536e-02 -6.11752689e-01 -1.89719096e-01 1.11242063e-01\\n3.85809302e-01 3.47414225e-01 -7.50809396e-03 -1.37030408e-01\\n1.21850662e-01 4.87150699e-01 -4.21717703e-01 -5.10586023e-01\\n6.57951310e-02 2.79369857e-02 -2.73424014e-03 -2.96408594e-01\\n3.33292708e-02 3.53282392e-01 -1.74635485e-01 -1.51191084e-02\\n-1.29166050e-02 8.43781829e-02 3.48644376e-01 8.69110972e-02\\n-3.07623923e-01 -1.83977813e-01 -6.42709565e-05 2.65051156e-01\\n-5.09057760e-01 -2.24841058e-01 6.88241422e-01 2.09509149e-01\\n7.66426399e-02 1.94057867e-01 2.87772059e-01 -2.83326171e-02\\n-1.62382320e-01 -1.27770707e-01 1.50847539e-01 8.06158632e-02\\n9.02068019e-02 -1.10462971e-01 -5.33212051e-02 -5.99883556e-01\\n-3.74184465e+00 -2.45026350e-01 1.07699312e-01 -2.58663476e-01\\n2.13491440e-01 -1.37858987e-01 1.82533786e-01 2.92383395e-02\\n-4.01654959e-01 3.93473804e-02 -2.74024934e-01 -4.73668315e-02\\n1.15930527e-01 2.01356366e-01 2.19518483e-01 2.18606949e-01\\n1.24648929e-01 -3.22186679e-01 -7.58920535e-02 4.63897169e-01\\n-9.25146192e-02 -7.48680890e-01 1.18457004e-01 7.91146532e-02\\n2.40028039e-01 2.79568341e-02 -3.87730181e-01 -3.47552672e-02\\n-3.82436454e-01 -2.61842012e-01 9.53076705e-02 -2.49790251e-01\\n-2.50193447e-01 4.57816362e-01 1.54321253e-01 -2.36019254e-01\\n5.08197173e-02 -3.77673209e-01 -5.34574091e-02 -4.74879116e-01\\n6.14508726e-02 -5.63923955e-01 7.82547742e-02 -3.75238843e-02\\n7.57236123e-01 -3.37125212e-01 2.98443884e-01 9.52931643e-02\\n7.10808635e-02 2.20333815e-01 7.20413923e-02 -2.76198201e-02\\n-3.03155363e-01 -5.08053362e-01 -1.85582995e-01 -1.66854754e-01\\n4.97910559e-01 4.02417213e-01 -1.36640131e-01 4.74390350e-02\\n2.73376498e-02 -2.62867987e-01 -4.21670765e-01 -4.11508024e-01\\n-2.73966551e-01 -1.99935995e-02 -7.87114263e-01 -5.18194258e-01\\n-1.92428485e-01 -1.24530993e-01 -1.18819833e-01 5.43213367e-01\\n-3.30892891e-01 -4.42438334e-01 -9.96302813e-02 -5.11802435e-01\\n2.36549094e-01 -1.71675682e-01 8.58243257e-02 -1.80001527e-01\\n-3.31124455e-01 -5.28269291e-01 1.93824366e-01 -1.54513523e-01\\n-1.68568492e-01 -4.11594585e-02 9.83026624e-02 -1.04098834e-01\\n-3.63313615e-01 -4.95455027e-01 4.21875477e-01 9.03859884e-02\\n3.90837789e-01 1.82752877e-01 1.99995756e-01 1.77179277e-01\\n3.59426200e-01 -1.03141427e-01 7.60806948e-02 -3.55468780e-01\\n-6.24239370e-02 1.73109248e-01 5.58585823e-01 -3.17426711e-01\\n-4.54924926e-02 -1.12946536e-02 -3.35779577e-01 -9.63923335e-02\\n4.14393157e-01 5.13714626e-02 1.09203778e-01 -3.72618027e-02\\n2.39379510e-01 -3.79441828e-01 -2.65263677e-01 1.05695158e-01\\n7.33867870e-04 6.08044982e-01 6.93998337e-02 -4.40833151e-01\\n-1.19935952e-01 3.41694623e-01 -1.02734029e-01 -8.85687489e-03\\n-8.00962076e-02 4.09410223e-02 -1.87348559e-01 3.96163702e-01\\n5.97947538e-02 -1.13655612e-01 -2.77028114e-01 -1.76779479e-01\\n3.03524118e-02 1.02238044e-01 2.93762833e-01 2.15219870e-01\\n-8.36412385e-02 -2.30856255e-01 -2.17902705e-01 1.87912956e-01\\n3.62209320e-01 3.27746600e-01 2.59692073e-01 -1.30730391e-01\\n9.59478766e-02 9.27693173e-02 -2.72451431e-01 2.43655398e-01\\n-1.22308940e-01 1.93383217e-01 -6.38129950e-01 -2.15305120e-01\\n-2.10656356e-02 -2.58284330e-01 1.69267938e-01 4.27139968e-01\\n2.09474981e-01 -1.20925948e-01 3.32285464e-02 -5.19228280e-01\\n3.78504097e-01 1.18611827e-01 1.65535584e-01 1.26324773e-01\\n1.14760347e-01 6.09585404e-01 6.35745674e-02 -8.44711363e-02\\n-1.31720185e-01 4.56855260e-02 -2.45621324e-01 -2.45813057e-01\\n5.90535440e-02 -3.19908202e-01 -1.62002072e-01 3.77872258e-01\\n1.18846819e-01 -1.57825708e-01 -1.25263438e-01 2.86614120e-01\\n-4.27745432e-02 -3.06635290e-01 -3.20959717e-01 4.34937291e-02\\n2.72186130e-01 2.34217092e-01 1.18229777e-01 -4.22298819e-01\\n-2.25086417e-02 -1.01908654e-01 -3.73355625e-03 4.06796068e-01\\n1.99262947e-01 1.87071055e-01 -3.12057696e-02 -3.80921423e-01\\n5.71201324e-01 9.09391493e-02 -1.20448850e-01 6.52242303e-02\\n9.03804153e-02 -2.85527438e-01 -2.67246991e-01 -7.34265894e-02\\n-1.00698531e-01 -2.68338561e-01 1.10908128e-01 1.23718955e-01\\n9.76842828e-03 -7.92250484e-02 -4.98138189e-01 -2.64523953e-01\\n-4.48600352e-01 2.63599623e-02 -7.83479065e-02 -5.54144979e-01\\n-7.84791540e-03 -1.20558031e-01 -4.89186436e-01 4.15706664e-01\\n-2.25398496e-01 4.68748882e-02 4.05044484e-05 1.60112500e-01\\n-1.98013246e-01 -1.55103773e-01 2.11491346e-01 2.17202708e-01\\n-3.87365401e-01 -2.09016442e-01 -3.67669687e-02 -8.98258507e-01\\n1.40260682e-01 2.64545791e-02 -1.61423255e-02 8.38693753e-02\\n1.02559291e-01 -5.23081720e-01 2.76689857e-01 -3.67134213e-01\\n-1.03685796e-01 -5.71828336e-02 -1.26004368e-01 -2.57260382e-01\\n6.52074665e-02 -8.00347980e-03 -2.67036170e-01 2.53732324e-01\\n-5.27927160e-01 3.94131035e-01 4.38776016e-02 1.78587273e-01\\n1.26404285e-01 -2.34559163e-01 1.39339462e-01 -2.88126528e-01\\n-3.80097240e-01 -2.44635954e-01 -3.51640880e-01 -1.80899724e-01\\n-3.99916358e-02 -2.42969960e-01 -1.89366341e-01 3.02545056e-02\\n4.09113228e-01 2.92998284e-01 -1.89254135e-01 -1.35793060e-01\\n2.68216133e-02 -4.03546065e-01 4.71857041e-02 -2.80196309e-01\\n-8.76588561e-03 -1.38086304e-01 2.13733435e-01 -1.77340861e-02\\n8.03937539e-02 -3.79104048e-01 4.57071930e-01 -2.27315739e-01\\n-3.11610252e-01 -9.99037698e-02 1.38188839e-01 8.56552497e-02\\n2.70023376e-01 -5.06648064e-01 -1.47041261e-01 3.13086212e-01\\n7.01677427e-02 1.46969736e-01 3.44533503e-01 -1.18275985e-01\\n-2.88425386e-01 3.85541886e-01 -5.83676934e-01 1.60260722e-02\\n8.37585509e-01 1.80397406e-01 1.40316159e-01 2.36214563e-01\\n1.25749245e-01 2.23171338e-01 4.69841152e-01 -1.07619815e-01\\n1.84052787e-03 4.95261580e-01 1.03514075e-01 -5.90472102e-01\\n-1.23763144e-01 -2.16498539e-01 -1.96851328e-01 -3.36661190e-01\\n5.44768453e-01 3.47770274e-01 -4.20020401e-01 -3.35130841e-01\\n-9.99308005e-02 -2.04059392e-01 2.58665830e-01 -1.91636961e-02\\n-9.13347155e-02 -1.35388196e-01 6.13265574e-01 6.42951876e-02\\n2.57333994e-01 6.38495982e-01 -2.24258695e-02 -1.28303602e-01\\n-8.24160948e-02 7.79640749e-02 1.49874091e-01 3.80159318e-01\\n-1.27297223e-01 3.10890883e-01 -6.90084994e-02 1.44607976e-01\\n-1.46180600e-01 1.01500496e-01 2.60646164e-01 3.49712335e-02\\n-5.60140982e-02 1.80729881e-01 2.69589543e-01 5.24698317e-01\\n2.32972771e-01 4.58091766e-01 2.90418416e-01 6.04283903e-03\\n3.00875515e-01 5.12471318e-01 4.02947009e-01 9.15524215e-02\\n4.16670479e-02 1.88210811e-02 -3.75847183e-02 -6.06229119e-02\\n2.57039547e-01 3.98278564e-01 1.15341589e-01 8.50953162e-01\\n3.26271176e-01 2.75273055e-01 7.84101427e-01 -5.84410131e-01\\n-3.85409385e-01 -3.71102393e-02 6.12431943e-01 -3.56780589e-01\\n-1.09762438e-01 1.20228589e-01 -3.69220257e-01 1.02173671e-01\\n-5.83677173e-01 -8.84295776e-02 4.59480137e-02 -1.80364609e-01\\n1.26807526e-01 -2.36761764e-01 -7.10219741e-02 1.53473660e-01\\n-1.91012740e-01 -1.84228539e-01 -3.18620980e-01 -9.52067226e-02\\n-3.76374334e-01 -1.01272956e-01 -1.95223074e-02 -1.10362865e-01\\n-7.34915882e-02 -2.34774783e-01 -1.41407847e-01 5.88849820e-02\\n3.52212250e-01 -1.08517006e-01 -1.25684664e-01 -1.35279208e-01\\n9.35450643e-02 1.80376381e-01 5.98434746e-01 -4.62279506e-02\\n5.82543062e-03 -3.41786705e-02 -1.78201824e-01 1.81403067e-02\\n2.28781700e-01 2.50699706e-02 7.00938776e-02 4.83303308e-01\\n-3.43233138e-01 -1.85732126e-01 6.49975315e-02 3.52978617e-01\\n-4.22982275e-01 1.86674327e-01 3.03153004e-02 1.15693294e-01\\n2.71554217e-02 1.56945840e-01 -2.36173704e-01 3.89547274e-02\\n-1.55017585e-01 -4.20637518e-01 4.42634284e-01 -2.26709530e-01\\n-1.88793451e-01 2.35373393e-01 2.44112879e-01 3.54203492e-01\\n-2.26799339e-01 -1.72775194e-01 -1.38948485e-01 2.18758956e-01\\n-6.33597281e-03 3.40566874e-01 -1.81026042e-01 -1.68391541e-01\\n-3.52250367e-01 2.46069968e-01 2.01802216e-02 7.16141015e-02\\n-2.95555983e-02 3.47618759e-01 1.34457080e-02 8.35634694e-02\\n2.08743423e-01 -3.27910148e-02 -3.16327512e-01 -2.15197116e-01\\n-3.31823409e-01 -1.07769966e-01 1.14766933e-01 -1.04645476e-01\\n2.06628740e-01 -3.15964282e-01 -3.24659385e-02 -1.94187015e-01\\n-3.29790086e-01 -4.22198594e-01 -5.47525510e-02 -3.74657065e-02]]',\n", + " 'Job Informationen Your Responsibilities: - Lead customer data preparation by using our technology - Perform quality assurance, post-processing and reporting activities on customer data - Manage Proof of Concept (PoC) projects and bring structure and automation to the process - Analyse customer data requirements and ensure successful data delivery - Collaborate with our Sales and R&D teams to further develop our technology Minimum Qualifications: - Minimum of 4 years of experience as project manager, BI analyst, data analyst or data scientist - Proficient with office software (Excel) and scripting languages (Bash, Python, R) - Experience in managing data projects and reporting complex relationships in data - Excellent German and English language skills - Thinks big, gets things done, has fun and loves working with a high impact team! Preferred Qualifications: - Affinity to E-Commerce, data processing technology and enterprise software - Experience in ETL software, data transformation pipelines and data warehousing Benötigte Skills Konzeptionell / Analytisch Bash Python Python R Englisch ETL E-commerce',\n", + " '[\"Collaboration\", \"Quality Assurance\", \"Sales\"]',\n", + " '[\"Automation\", \"Python Server Pages\", \"Enterprise Application Software\", \"Data Management\", \"Data Warehousing\", \"Post Processing\", \"Python (Programming Language)\", \"Customer Data Integration\", \"Data Transformation\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"E-Commerce\", \"Office Management Software\", \"R (Programming Language)\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Independent Analyst Platform\", \"Adapter Scripting Language\", \"Suspicious Activity Report\", \"Amazon Data Pipeline\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'Quechua', 'Bambara', 'Ossetic', 'Twi']\"],\n", + " ['46',\n", + " 'data centre engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.20992708e-01 3.24868619e-01 4.44623590e-01 -2.06698015e-01\\n5.61702907e-01 1.67399067e-02 2.03571469e-01 3.12604904e-01\\n1.14555821e-01 -2.30956271e-01 -2.95724452e-01 -1.45734802e-01\\n5.05553670e-02 4.16085795e-02 1.42657623e-01 4.23656821e-01\\n2.54625171e-01 1.47843584e-02 -6.55927509e-02 3.09122294e-01\\n1.01366960e-01 -1.19018257e-01 8.50919113e-02 6.65079415e-01\\n3.42924058e-01 -2.08120011e-02 9.75979790e-02 1.13722198e-02\\n-1.84017792e-01 -3.39858294e-01 4.39586669e-01 -6.86746761e-02\\n-1.32881835e-01 -3.33626121e-01 2.41054073e-01 8.20413232e-02\\n-2.09021419e-01 -1.68739520e-02 -1.91325113e-01 3.92315648e-02\\n-4.56807166e-01 -1.14604466e-01 4.69977669e-02 -1.44372091e-01\\n-3.71216565e-01 -2.73618490e-01 2.98053086e-01 -1.46605492e-01\\n1.93083301e-01 1.60194710e-01 -5.39988935e-01 3.01620752e-01\\n-3.19422901e-01 -2.94975251e-01 5.10386229e-01 6.02502227e-01\\n-3.05275898e-04 -7.01068997e-01 -3.71223271e-01 -1.88572586e-01\\n2.71705817e-02 -9.85296667e-02 9.80837792e-02 -8.92247334e-02\\n3.16859275e-01 -1.32081792e-01 2.01097038e-03 5.28337955e-01\\n-6.43169582e-01 -6.33321702e-02 -4.45892006e-01 -5.80698922e-02\\n-2.13415369e-01 1.14282221e-01 -4.74503547e-01 -2.62505710e-01\\n-6.29425496e-02 2.97526747e-01 -7.97732025e-02 1.71661079e-01\\n-1.18019126e-01 2.56952465e-01 -3.35049480e-01 2.62095660e-01\\n2.78805941e-01 1.02468014e-01 1.92153186e-01 1.66629449e-01\\n-4.03576285e-01 7.38112450e-01 4.63144541e-01 -1.77040055e-01\\n2.04118043e-01 8.59789848e-02 2.22872660e-01 1.59763366e-01\\n1.27131179e-01 1.92020372e-01 5.99381141e-03 2.29666912e-04\\n2.64624745e-01 1.79403722e-02 -9.34911892e-02 -1.64213777e-01\\n-7.91446865e-02 -2.81473016e-03 6.64469451e-02 2.00658217e-01\\n-3.72400999e-01 2.67220229e-01 1.39930248e-01 -3.18461388e-01\\n-1.59120008e-01 -3.24656099e-01 -1.11221485e-01 -1.13852412e-01\\n-1.11029960e-01 1.44244403e-01 1.79076102e-02 2.01138005e-01\\n2.60806829e-01 1.03999078e-01 5.79782352e-02 8.42487335e-01\\n-3.85027528e-02 -6.95801079e-02 -2.16275722e-01 3.70730489e-01\\n-5.77730127e-03 -2.21464545e-01 1.08441778e-01 2.45696455e-01\\n-1.86597273e-01 -2.59543478e-01 -3.63568813e-01 3.21496487e-01\\n-1.18903227e-01 -1.72197476e-01 -2.46539921e-01 2.43533224e-01\\n-1.48266852e-01 -4.79707330e-01 4.82727468e-01 -5.92029579e-02\\n8.48442614e-02 -1.10106930e-01 -3.79019693e-05 3.55553813e-02\\n-6.20178739e-03 3.51581961e-01 1.33339778e-01 -3.18575427e-02\\n-1.07156508e-01 -2.32200533e-01 -2.80870885e-01 1.46157727e-01\\n3.24593335e-02 1.44052923e-01 -4.17244673e-01 -1.08726621e-01\\n3.85440767e-01 4.97285165e-02 -3.66288632e-01 3.56455773e-01\\n1.84417531e-01 -4.29348387e-02 -1.81535304e-01 1.49954826e-01\\n-1.16695359e-04 2.36736104e-01 -4.01337855e-02 -1.40929922e-01\\n6.24371946e-01 1.46069244e-01 2.31020704e-01 -7.24323019e-02\\n1.91886440e-01 -5.51386252e-02 1.29945368e-01 -1.40682291e-02\\n-6.11488104e-01 4.65296596e-01 -3.25219370e-02 -7.29846731e-02\\n1.36024877e-01 -5.82411792e-03 2.14516282e-01 -3.57889801e-01\\n-2.76079122e-02 -5.04417941e-02 -3.44033509e-01 -4.76003021e-01\\n-2.26885807e-02 -1.34410188e-01 1.86202839e-01 -4.56571281e-01\\n2.06874358e-03 1.26872778e-01 -4.57212448e-01 -5.69727421e-02\\n3.54857564e-01 1.66321099e-01 1.37243718e-01 2.25789651e-01\\n-8.55193064e-02 -3.49118888e-01 1.90711051e-01 -4.64240402e-01\\n-1.32682085e-01 7.75582716e-02 -2.49923304e-01 1.98378433e-02\\n-1.89537536e-02 3.98312919e-02 -1.02702670e-01 4.85904552e-02\\n-2.53891677e-01 -1.55262008e-01 3.92053202e-02 -8.82065743e-02\\n2.24479303e-01 2.34798998e-01 -2.63095379e-01 5.07711053e-01\\n-1.83350369e-01 3.81080300e-01 6.01966586e-03 -7.20307767e-01\\n4.24280107e-01 1.86561704e-01 1.23244980e-02 -2.94792384e-01\\n4.53267604e-01 -2.96398431e-01 1.17267378e-01 1.88871510e-02\\n-3.34912449e-01 -2.02146210e-02 2.43802950e-01 -1.83349505e-01\\n-2.80408859e-01 5.88341713e-01 1.80868283e-02 1.09298013e-01\\n1.90496162e-01 -3.36814933e-02 -1.97486252e-01 4.95056920e-02\\n-8.80986899e-02 -2.21439116e-02 -4.73396003e-01 -6.57928139e-02\\n-8.16168711e-02 -4.97412443e-01 -8.66268203e-02 -6.85619056e-01\\n-2.47249797e-01 -3.03445399e-01 -2.51491725e-01 1.43816218e-01\\n-3.78490351e-02 1.19386360e-01 -3.09882145e-02 6.85982779e-02\\n-1.36105865e-01 -6.85061991e-01 -8.01299326e-03 6.79907128e-02\\n1.99871972e-01 1.97040305e-01 1.58675492e-01 -1.33471563e-01\\n1.07989442e-02 4.95000303e-01 -2.80969262e-01 -1.73517212e-01\\n2.71584749e-01 2.02667147e-01 1.13012411e-01 -1.47868484e-01\\n1.32153437e-01 2.64528215e-01 -3.26294065e-01 3.05351596e-02\\n4.96717282e-02 7.51984939e-02 3.15145642e-01 -1.27876252e-01\\n-4.00357902e-01 -1.46592468e-01 -8.45369026e-02 1.19746655e-01\\n-5.31511903e-01 -2.43515335e-02 4.39352810e-01 2.38416597e-01\\n-3.59681658e-02 3.28629941e-01 2.08434686e-01 -3.68503183e-02\\n-2.25980595e-01 -7.79229030e-02 1.20354466e-01 1.89528957e-01\\n-5.91190830e-02 8.82301256e-02 -3.06917548e-01 -7.19935954e-01\\n-3.67594314e+00 -1.12381116e-01 1.75884247e-01 -2.27007076e-01\\n4.04413551e-01 -9.98565108e-02 3.79922926e-01 7.81878158e-02\\n-3.22409332e-01 -3.08159627e-02 -2.04330444e-01 -1.40322268e-01\\n3.32918972e-01 1.88908741e-01 8.24078396e-02 2.49415144e-01\\n2.64598001e-02 -3.97464931e-01 2.27922410e-01 3.73837560e-01\\n-3.19178700e-01 -7.36998320e-01 1.67706132e-01 -7.14538023e-02\\n1.21241175e-01 9.32772234e-02 -5.23654699e-01 -3.66293937e-02\\n-2.04351619e-01 -2.44992539e-01 2.23208100e-01 -2.21065760e-01\\n-8.99085402e-02 1.40657857e-01 1.37605861e-01 -1.14235766e-01\\n-2.94447187e-02 -2.44475365e-01 -4.49468382e-02 -7.68135726e-01\\n5.89522645e-02 -5.65950096e-01 -9.49528441e-02 -4.10118699e-02\\n6.01877391e-01 -1.01314165e-01 1.37759060e-01 -1.07751355e-01\\n9.30629522e-02 2.41365522e-01 1.12298779e-01 1.45285383e-01\\n-2.63603657e-01 -3.25437903e-01 -7.21056610e-02 -8.31322223e-02\\n5.68651319e-01 3.79927188e-01 -4.65950549e-01 2.72869971e-03\\n-1.22071005e-01 -2.76108623e-01 -5.45160472e-01 -1.80649400e-01\\n-2.34067068e-01 1.62110150e-01 -7.07921565e-01 -2.82714754e-01\\n-9.99909639e-02 -2.50131696e-01 -4.89306152e-02 4.86768872e-01\\n-2.37586051e-01 -3.45522076e-01 -1.42306477e-01 -6.06279552e-01\\n4.44346130e-01 -6.18551373e-02 1.56405732e-01 -3.47408980e-01\\n-2.07678065e-01 -2.95815915e-01 1.38386652e-01 3.34735252e-02\\n-9.58454311e-02 -6.84963763e-02 8.63185823e-02 -1.38075471e-01\\n-3.59072596e-01 -5.86493552e-01 2.79859543e-01 7.74228424e-02\\n2.08769441e-01 1.41370863e-01 2.12922454e-01 1.12980502e-02\\n2.99592584e-01 -2.45005097e-02 9.83945280e-02 -3.55856538e-01\\n-6.89715743e-02 -2.60696840e-02 5.05209148e-01 -2.39443317e-01\\n9.72434208e-02 1.46529987e-01 -2.74268687e-01 -1.18378751e-01\\n2.93351650e-01 -2.23989919e-01 3.12173188e-01 -2.98116624e-01\\n2.45002553e-01 -3.65975231e-01 -3.34370494e-01 -2.41183396e-02\\n4.43742462e-02 5.83759367e-01 1.00142039e-01 -2.95338154e-01\\n-1.73483342e-01 2.94335037e-01 -3.46422642e-02 9.91996229e-02\\n-4.30163980e-01 -2.82405578e-02 -3.47431034e-01 2.63600320e-01\\n1.26142189e-01 -1.38548240e-01 -2.37378985e-01 -6.22682087e-02\\n-1.13407321e-01 2.97553122e-01 2.44797215e-01 7.06003979e-02\\n-6.73439279e-02 -2.24718019e-01 -9.53003168e-02 2.75603205e-01\\n1.09810531e-01 3.39868993e-01 1.16863534e-01 -2.59342134e-01\\n3.95490937e-02 1.41051844e-01 -3.06910217e-01 1.62998080e-01\\n-1.18638128e-01 1.47596076e-01 -5.45356512e-01 -1.84702083e-01\\n-2.16028884e-01 -3.72006148e-01 1.30186722e-01 4.52358186e-01\\n-2.24302597e-02 -2.03651801e-01 8.53662267e-02 -3.70809227e-01\\n2.26514742e-01 7.99310878e-02 1.08852006e-01 1.68566033e-01\\n4.81652543e-02 6.31120920e-01 -1.09053209e-01 -1.35200918e-01\\n-1.40370622e-01 -1.58051122e-03 -3.95264864e-01 -1.91366836e-01\\n-6.29185094e-03 -4.56136644e-01 4.50522732e-03 5.95702171e-01\\n1.59040406e-01 2.83155963e-02 1.36070162e-01 3.85688692e-01\\n-1.37359928e-02 -4.20102216e-02 -2.66277254e-01 1.16483152e-01\\n2.23654643e-01 2.09650751e-02 2.55407035e-01 -4.15736258e-01\\n1.46293670e-01 -5.34290411e-02 1.29845470e-01 3.60866219e-01\\n-3.01853996e-02 1.87387303e-01 -7.20390603e-02 -1.31535783e-01\\n4.51385915e-01 -6.54133782e-02 -9.06833410e-02 1.34642109e-01\\n2.11314842e-01 -1.32941514e-01 -3.39931607e-01 9.25652310e-02\\n-1.53027371e-01 -1.79714546e-01 8.66961256e-02 3.25545147e-02\\n3.54019180e-03 3.45192570e-03 -4.45268750e-01 -1.44551948e-01\\n-3.26949328e-01 2.60383725e-01 -2.02441350e-01 -6.96382046e-01\\n-1.40338577e-02 6.71015978e-02 -4.92353946e-01 2.64773130e-01\\n-7.66382292e-02 9.06192958e-02 1.66481182e-01 1.44609421e-01\\n-1.99086547e-01 -1.94678605e-01 2.52672762e-01 5.97272478e-02\\n-2.38344982e-01 -1.10085398e-01 -8.84047225e-02 -9.74414825e-01\\n1.87760174e-01 1.19790137e-02 -7.76776448e-02 1.13395445e-01\\n-8.81322324e-02 -7.38363206e-01 2.93696880e-01 -1.29906714e-01\\n-8.54780301e-02 1.35368869e-01 -1.21535540e-01 -3.92318517e-01\\n7.13851079e-02 2.84709353e-02 -1.45143434e-01 2.94810981e-01\\n-3.21252733e-01 3.73886317e-01 3.44846733e-02 4.07734737e-02\\n7.91742001e-03 -2.35158399e-01 7.68799782e-02 -4.66818631e-01\\n-3.90069902e-01 -1.75546423e-01 -1.66483521e-01 -2.53097773e-01\\n2.10644584e-02 -4.21779752e-01 -2.75838263e-02 9.88264009e-02\\n3.88392955e-01 3.93786915e-02 -5.44545762e-02 -8.17874521e-02\\n-1.09014504e-01 -3.92766893e-01 1.28825694e-01 -2.17944682e-01\\n1.51625395e-01 -1.85886785e-01 3.07374597e-01 -4.13127653e-02\\n3.25106204e-01 -2.95887083e-01 5.36980033e-01 -3.19379807e-01\\n-3.22525620e-01 -1.43264204e-01 1.33226901e-01 8.97722393e-02\\n3.82051915e-01 -4.85767931e-01 -1.67253297e-02 2.61806399e-01\\n-4.99421731e-02 -4.21272367e-02 3.75573844e-01 -3.38228345e-01\\n-2.53730595e-01 6.84244260e-02 -4.78008956e-01 2.60893375e-01\\n4.90229666e-01 1.69238955e-01 2.80877143e-01 1.80539608e-01\\n-6.63809255e-02 1.68181852e-01 3.38057458e-01 -1.28881663e-01\\n-1.59039959e-01 4.24895495e-01 3.80028002e-02 -6.40325665e-01\\n-1.43105865e-01 -2.63907880e-01 -1.21160537e-01 -2.52472550e-01\\n6.79355919e-01 2.05923975e-01 -3.15716326e-01 -3.91189665e-01\\n-1.93810731e-01 -2.80402511e-01 8.83146524e-02 3.37027349e-02\\n7.49644125e-03 -9.00202468e-02 5.41021109e-01 6.35374635e-02\\n3.18035275e-01 5.48332870e-01 -1.07328892e-01 -1.89855635e-01\\n1.58851850e-03 3.20116341e-01 -1.67953491e-01 3.51078421e-01\\n6.85634390e-02 2.92062312e-01 -4.61906455e-02 1.35271624e-01\\n-3.67310345e-02 -1.13375902e-01 1.00393958e-01 1.25861317e-01\\n-1.19673312e-01 2.56306708e-01 4.81333435e-01 4.64992344e-01\\n2.14798316e-01 3.36963028e-01 3.28334361e-01 7.83311427e-02\\n5.74850202e-01 6.67642534e-01 3.58128965e-01 5.36153167e-02\\n1.82366893e-01 1.31619200e-02 1.66190714e-02 1.53566594e-03\\n2.41993040e-01 4.50434387e-01 -1.27912806e-02 6.59261405e-01\\n1.94247454e-01 1.72496736e-01 5.75656235e-01 -5.13949454e-01\\n-4.03470457e-01 -2.03149110e-01 4.86505866e-01 -4.74104732e-01\\n1.93211913e-01 1.59332588e-01 -7.50615727e-03 3.39663118e-01\\n-5.07510424e-01 -2.07057089e-01 8.10246542e-02 -1.29740685e-01\\n1.40014097e-01 -1.88831493e-01 -3.58851328e-02 -7.21131917e-04\\n-1.56315446e-01 -1.56389311e-01 -2.94426352e-01 -2.51997322e-01\\n-3.41350526e-01 6.94555119e-02 -1.11559771e-01 -5.82171008e-02\\n-9.69594643e-02 -1.34011596e-01 -1.30870834e-01 7.83628523e-02\\n2.54105866e-01 -1.52538747e-01 -1.65034801e-01 -7.04521164e-02\\n2.46929064e-01 2.89245751e-02 6.04466021e-01 1.05081405e-02\\n6.89821839e-02 -4.67571244e-03 -1.24993986e-02 1.37999713e-01\\n3.58548254e-01 2.61919379e-01 4.46083099e-02 5.13837337e-01\\n-3.38287830e-01 -1.75180569e-01 1.31053075e-01 3.67902517e-01\\n-4.11561877e-01 -1.78137776e-02 5.27100787e-02 1.73103094e-01\\n-5.69220185e-02 -1.85620897e-02 -1.54638961e-01 -7.36809708e-03\\n-1.03106506e-01 -4.16724861e-01 4.85487074e-01 -1.93980247e-01\\n-3.74499291e-01 -2.29139552e-01 4.05710548e-01 4.65710521e-01\\n-7.01933727e-02 1.25290185e-01 -1.69794530e-01 8.58192295e-02\\n5.86466826e-02 9.83409062e-02 -2.16114819e-01 -9.97687280e-02\\n-3.41423601e-01 3.04073513e-01 -9.08160135e-02 2.61446118e-01\\n1.22249559e-01 2.20867783e-01 1.15949877e-01 4.79177199e-02\\n3.41100335e-01 -3.07290733e-01 -2.09567770e-01 -2.60127783e-01\\n-3.00317675e-01 -8.11325237e-02 1.12716630e-01 -1.97108611e-01\\n2.32551321e-01 -3.97126079e-01 -1.08622387e-01 -3.00310940e-01\\n-1.48808002e-01 -2.20378175e-01 -1.74243838e-01 -4.26888745e-03]]',\n", + " 'ExcelRedstone designs, installs, supports and enhances IT infrastructure, networks and connectivity for enterprise‐level clients across the UK and EMEA. Our services, processes and tools are built around a unique business vision which emphasizes the life cycle role of IT infrastructure – an understanding that far from being static installations, infrastructures should continually evolve to drive improved business performance. This role will be working as part of the Data Centre Operations team to deliver support activities and input to project related tasks within the Data Centre and ensure that all work carried out complies with agreed standards, providing an operational interface to physical security teams assisting in the proactive management of the site’s security. The DC Engineer will provide an interface to the customer, advising them of any operational issues with the infrastructure and acting as a point of contact to address the customer requirements including being first line of support for incident and recovery duties, contribution to BAU activity to rack, install and decommission devices. Candidates will be fluent in German and English and have worked in a similar role previously. Required Skills / Experience Ideally the candidate will have worked previously in a Data Centre support role.Network patching experience (copper and fibre) install and break/ fixKnowledge of copper termination and previous infrastructure installationsChange management processesUnderstanding of criticality of support in a financial sectorDemonstration of good listening, oral and written communication required.An ability to assimilate technical details required for project delivery in ashort time frame and in pressurised environmentAbility to manage prioritise workload effectivelyTroubleshooting, ability to diagnose potential issues impacting programme and offer resolutionFluent in German and English Job Types: Full-time, Permanent Language: English (Required)German (Required) ',\n", + " '[\"Proactivity\", \"Infrastructure\", \"Management\", \"Operations\", \"Written Communication\"]',\n", + " '[\"Business Performance Management\", \"Logistics Support Activity\", \"Tooling\", \"IT Infrastructure\", \"Installation\", \"Advising\", \"Activism\", \"Acting\", \"Idealization\", \"Physical Security\", \"Life Cycle Assessment\", \"Customer Requirements Analysis\"]',\n", + " \"['English', 'German', 'Sinhalese']\"],\n", + " ['44',\n", + " 'software engineer',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-3.12801331e-01 3.16512048e-01 4.18633461e-01 -7.91569278e-02\\n5.23473918e-01 -2.02009022e-01 1.43224448e-02 3.96541834e-01\\n-2.95258015e-02 -3.80351514e-01 -1.71148345e-01 -2.60764986e-01\\n-1.86775640e-01 3.46598998e-02 2.29364529e-01 4.35211420e-01\\n2.13361993e-01 7.31811300e-02 -2.71519899e-01 3.62178653e-01\\n6.76888525e-02 -9.00769681e-02 3.08419261e-02 7.49629259e-01\\n3.51514131e-01 1.39445933e-02 7.99249671e-03 -1.12452928e-03\\n-3.08921933e-01 -2.86021382e-01 2.84034193e-01 -1.54524837e-02\\n-1.17725946e-01 -3.36671174e-01 1.80350006e-01 3.94491404e-02\\n-1.42310113e-01 -6.50811344e-02 -2.96018068e-02 1.36475191e-01\\n-4.86237645e-01 -2.83786476e-01 2.09684446e-01 8.14381912e-02\\n-7.68273175e-02 -3.60551596e-01 1.40205085e-01 -1.42227501e-01\\n1.89237390e-02 -6.57460168e-02 -4.99913871e-01 3.54694098e-01\\n-2.39417732e-01 -1.58044338e-01 3.51311326e-01 5.19925475e-01\\n-1.20911978e-01 -6.11969590e-01 -3.13406318e-01 -2.62099057e-01\\n4.18638550e-02 -7.50373229e-02 -1.30443517e-02 -3.59687090e-01\\n3.79999757e-01 7.91939124e-02 -7.55848140e-02 3.19918513e-01\\n-8.10813129e-01 -2.05031931e-01 -2.33121410e-01 4.83161956e-02\\n-3.55063528e-01 -9.04140249e-02 -1.34746566e-01 -1.46796510e-01\\n1.85451377e-02 3.83641899e-01 -1.53264469e-02 3.23173665e-02\\n-1.09364137e-01 3.71241242e-01 -4.62248400e-02 3.77704322e-01\\n3.20841372e-01 1.68776840e-01 1.32807031e-01 3.55924428e-01\\n-3.59836102e-01 4.87569720e-01 7.26686940e-02 -2.88253397e-01\\n1.25274226e-01 2.05301002e-01 5.00716269e-01 1.26226461e-02\\n3.97542417e-02 1.97526187e-01 -3.04165840e-01 2.99141109e-01\\n2.02088848e-01 -1.69397727e-01 6.65759528e-03 -7.11626336e-02\\n-6.61653057e-02 -8.45232680e-02 2.61793938e-02 3.13128084e-01\\n-2.93170273e-01 5.02677441e-01 1.24285914e-01 -7.22864345e-02\\n5.16628325e-02 -5.67255735e-01 -1.40350863e-01 1.53846378e-02\\n-8.00355077e-02 9.77878496e-02 3.32642287e-01 1.70066193e-01\\n2.57896721e-01 4.31124158e-02 9.32393223e-02 9.67842042e-01\\n1.71050604e-03 1.68293089e-01 -2.51748562e-01 4.06392246e-01\\n1.53977498e-01 -3.17053527e-01 1.74288854e-01 3.45592886e-01\\n2.39519402e-01 -1.12963505e-01 -2.27179065e-01 3.27402472e-01\\n-1.98341832e-01 -2.90694505e-01 -3.96096706e-01 1.96666941e-01\\n-2.44850695e-01 -4.90286648e-01 4.87498850e-01 1.40147626e-01\\n2.05087215e-01 1.03209866e-02 -9.43975672e-02 -4.17625979e-02\\n-1.00627251e-01 2.33817548e-01 3.21568996e-02 1.13600150e-01\\n-3.47780794e-01 -1.75770327e-01 -3.02637100e-01 1.32408574e-01\\n-1.58637851e-01 1.71912894e-01 -1.09562412e-01 -1.44348353e-01\\n3.51832122e-01 3.17592826e-03 -5.07710516e-01 3.64246964e-01\\n8.38328060e-03 -2.77027320e-02 -4.36405130e-02 4.02636915e-01\\n-9.95365232e-02 2.98923433e-01 -2.54423991e-02 -6.76289275e-02\\n3.59841526e-01 1.76911224e-02 -2.52633691e-02 -1.65009215e-01\\n3.01501960e-01 -1.43668905e-01 1.70410991e-01 6.89919889e-02\\n-7.37222970e-01 2.55105525e-01 -5.80111742e-02 1.35410186e-02\\n1.21948551e-02 -2.48319414e-02 3.62341821e-01 -3.71194720e-01\\n-1.72665700e-01 -1.85158774e-01 -3.90695781e-01 -3.93356651e-01\\n-3.03242415e-01 -1.41313951e-02 4.49884295e-01 -3.03693563e-01\\n-1.78244039e-01 2.21627623e-01 -5.13013422e-01 7.02287033e-02\\n2.58289307e-01 1.97849259e-01 1.26958489e-01 1.41438901e-01\\n-3.51326987e-02 -5.98378539e-01 7.58757666e-02 -4.24420714e-01\\n-3.60226482e-01 1.34903803e-01 -3.12238276e-01 2.69950598e-01\\n1.49554044e-01 1.00095376e-01 -6.44305274e-02 6.67490140e-02\\n-2.30115294e-01 -6.73026517e-02 1.71835586e-01 6.78511634e-02\\n1.98214769e-01 3.73082533e-02 -4.94558334e-01 4.80509192e-01\\n-2.18076795e-01 4.77721304e-01 8.23358148e-02 -8.05065870e-01\\n5.48103392e-01 3.26535404e-01 3.47400866e-02 -4.32201236e-01\\n6.10359013e-01 -3.83548349e-01 -9.53272209e-02 1.43837258e-01\\n-4.00688887e-01 -3.12934250e-01 1.97759032e-01 -1.26089916e-01\\n-2.75784433e-01 5.80727637e-01 9.97411311e-02 2.69413833e-03\\n2.87883818e-01 -2.82297134e-01 -1.53541237e-01 7.27819875e-02\\n-2.70451121e-02 -2.21376926e-01 -4.47217792e-01 -1.82413007e-03\\n-1.61377676e-02 -5.08080542e-01 -1.74873129e-01 -4.52164561e-01\\n-2.09689453e-01 -3.83565933e-01 -1.85078964e-01 3.29800218e-01\\n2.43226454e-01 1.48317978e-01 1.01001821e-01 9.96082556e-03\\n-1.42926037e-01 -6.03709698e-01 -5.56448624e-02 6.82088509e-02\\n4.28021967e-01 2.43521348e-01 7.49348253e-02 -4.66759428e-02\\n-6.68673441e-02 6.31377578e-01 -3.06268126e-01 -2.56342620e-01\\n8.89747813e-02 1.52975783e-01 -3.74802798e-02 -7.81136826e-02\\n1.56144172e-01 4.08918172e-01 -2.41116136e-01 3.76945175e-02\\n-2.23806977e-01 8.41687992e-02 3.68939638e-01 7.07777450e-04\\n-3.46594244e-01 -2.57924855e-01 -2.69735418e-02 1.82354793e-01\\n-5.86630285e-01 -1.80287495e-01 5.61579823e-01 2.65502125e-01\\n2.08557695e-01 1.54528826e-01 3.47996920e-01 -1.95836157e-01\\n-5.38512878e-02 -1.69183508e-01 1.18805401e-01 2.48434573e-01\\n8.71337280e-02 1.91436857e-02 -1.81508169e-01 -5.99153221e-01\\n-3.05484533e+00 1.10294959e-02 1.36477068e-01 -1.99948147e-01\\n1.39525965e-01 -6.62112907e-02 2.88588461e-02 -1.17691398e-01\\n-2.62980223e-01 6.02071807e-02 -3.20721596e-01 -1.26113206e-01\\n8.52785930e-02 2.04672530e-01 1.25590280e-01 1.42709404e-01\\n2.15302050e-01 -3.65236789e-01 -6.41188771e-02 2.48403624e-01\\n-6.28827065e-02 -7.12549269e-01 1.79696992e-01 -8.72801095e-02\\n2.93931693e-01 2.97597945e-01 -3.60176116e-01 -1.36338770e-01\\n-1.74095780e-01 -2.83319741e-01 1.11630552e-01 -2.43421271e-01\\n-1.40295044e-01 3.74410242e-01 4.93827872e-02 -1.42165184e-01\\n1.41054377e-01 -3.48098963e-01 5.34460805e-02 -4.17488962e-01\\n1.58350185e-01 -5.95151544e-01 1.27165481e-01 -9.31036696e-02\\n6.22393191e-01 -3.27441275e-01 9.71521661e-02 2.07087368e-01\\n1.36256769e-01 2.67784446e-01 -6.76104426e-02 -3.57137341e-03\\n-1.95487037e-01 -2.08670855e-01 -1.30109107e-02 -2.11488754e-01\\n5.04943311e-01 4.60878670e-01 -1.69685796e-01 -3.30233909e-02\\n8.74223039e-02 -3.65866989e-01 -4.38640147e-01 -4.03927565e-01\\n-2.57940143e-01 -1.97407663e-01 -8.23525071e-01 -3.83654982e-01\\n-8.59944522e-02 -7.49429986e-02 -1.59311533e-01 5.48014581e-01\\n-2.91549981e-01 -3.61807287e-01 4.08007912e-02 -5.12999594e-01\\n7.83261284e-02 -2.03186750e-01 7.11726546e-02 -2.37453148e-01\\n-2.17922196e-01 -5.08351088e-01 1.26214266e-01 7.54575729e-02\\n-1.60454854e-01 -1.76717415e-01 7.34414905e-02 -2.33689398e-01\\n-1.70308679e-01 -5.09858668e-01 4.56348330e-01 1.57323986e-01\\n2.63603836e-01 1.53788000e-01 2.11083204e-01 -6.76111970e-03\\n3.25063020e-01 -6.80102259e-02 1.06913075e-01 -4.63090241e-01\\n5.46183102e-02 8.84331390e-02 5.33161044e-01 -1.95888788e-01\\n-3.46129909e-02 2.00686380e-01 -1.66580871e-01 -1.78392231e-01\\n2.72686183e-01 1.22653231e-01 8.36533904e-02 -2.49631599e-01\\n3.34251016e-01 -5.11177361e-01 -2.40285367e-01 1.53864443e-01\\n1.60415947e-01 7.00615287e-01 6.49797218e-03 -4.78652209e-01\\n-2.99368918e-01 3.67539376e-01 3.14667053e-03 -7.26779178e-02\\n-4.08478267e-02 1.43154070e-01 -2.79801160e-01 1.69476718e-01\\n2.17109397e-02 -1.75495341e-01 -2.85740227e-01 -1.06599860e-01\\n-7.87442923e-02 3.19206625e-01 2.99442440e-01 1.19668327e-01\\n-4.11337912e-02 -4.85817999e-01 -1.08940728e-01 1.37533471e-01\\n1.45772815e-01 3.25233519e-01 9.24873874e-02 -3.06976318e-01\\n-5.98290935e-02 4.24621344e-01 -1.02247730e-01 1.36669278e-01\\n-2.22659975e-01 -3.18024606e-02 -5.38682222e-01 -1.71118721e-01\\n-2.39801943e-01 -2.24327132e-01 -4.66067716e-02 3.97736639e-01\\n1.48451328e-01 -7.31302006e-03 7.61822239e-02 -5.14854372e-01\\n4.06590223e-01 2.58336309e-02 2.52168030e-01 1.23999245e-01\\n1.66050624e-02 4.88307595e-01 -5.61133353e-03 -1.70740664e-01\\n-1.57895908e-01 9.37199071e-02 -2.77358770e-01 -2.33088717e-01\\n1.40401438e-01 -2.93494672e-01 -9.65822786e-02 2.91272163e-01\\n4.91943881e-02 -2.76045293e-01 -1.84342369e-01 1.74787879e-01\\n1.16718769e-01 -3.74120444e-01 -2.05214411e-01 4.75183539e-02\\n2.56592423e-01 1.78696364e-02 1.84482783e-01 -4.47677374e-01\\n-6.68130070e-02 -2.09452629e-01 -1.43975437e-01 5.01841247e-01\\n2.16458008e-01 2.91687232e-02 -2.43994996e-01 -2.70706505e-01\\n4.12215650e-01 -8.92977789e-02 -5.60359061e-02 -1.98209986e-01\\n2.95626111e-02 -1.62104219e-01 -3.88458967e-01 4.40001711e-02\\n-5.18975742e-02 -5.11773489e-02 2.22649239e-02 3.13011184e-02\\n1.29123017e-01 7.45195895e-02 -5.29471934e-01 -2.07720190e-01\\n-2.53031343e-01 -1.08118638e-01 1.40799694e-02 -4.06599522e-01\\n5.92197292e-02 -7.43468385e-03 -6.36318207e-01 3.06066871e-01\\n-3.06495547e-01 9.54146758e-02 1.30129576e-01 8.76834095e-02\\n-4.51240152e-01 -1.30911306e-01 1.65414929e-01 1.52794510e-01\\n-2.88830251e-01 -1.08976416e-01 -9.61446315e-02 -1.08853316e+00\\n2.96982944e-01 -9.61849242e-02 -7.25740790e-02 2.27480270e-02\\n-4.63116020e-02 -7.93134034e-01 9.86428708e-02 -3.43419343e-01\\n1.87187120e-02 -2.07975358e-02 -1.08778752e-01 -4.32107568e-01\\n6.74312338e-02 -1.27865180e-01 -2.87211865e-01 2.68414289e-01\\n-4.44613755e-01 3.72799575e-01 -1.56655312e-01 1.28634110e-01\\n-3.51930298e-02 -3.12616080e-01 1.57254413e-01 -4.55645651e-01\\n-3.98627371e-01 -1.27781808e-01 -2.95688212e-01 -1.76665843e-01\\n-5.17622195e-02 -3.53044599e-01 -1.56716421e-01 1.14772148e-01\\n3.16042304e-01 1.14111893e-01 -6.10143542e-02 -2.41039008e-01\\n1.12457089e-01 -2.69582003e-01 3.24008316e-02 -1.21879131e-01\\n1.20718703e-01 -3.03700138e-02 1.75463855e-01 -4.79134964e-03\\n2.41457626e-01 -4.57437903e-01 4.01130646e-01 -3.77908587e-01\\n-4.42508519e-01 2.64437217e-03 4.21154946e-02 3.97810936e-02\\n3.01885575e-01 -4.86610025e-01 1.11247646e-02 2.37946510e-01\\n1.73222974e-01 1.22796781e-01 2.48659536e-01 1.86481662e-02\\n-1.54597655e-01 1.36411369e-01 -3.85708928e-01 9.71544441e-03\\n8.32945168e-01 1.75121665e-01 1.13029771e-01 9.02787372e-02\\n3.18379104e-02 3.77394587e-01 5.02191901e-01 -8.99109989e-03\\n-1.20048493e-01 2.51982510e-01 1.11550167e-01 -4.91380543e-01\\n-2.24850014e-01 -2.65921708e-02 -2.05087617e-01 -1.75069168e-01\\n6.28130555e-01 4.36543196e-01 -2.94996500e-01 -2.88637042e-01\\n-9.96529013e-02 -2.03501254e-01 1.74984753e-01 -5.48226386e-02\\n1.01103045e-01 -2.30957493e-01 6.27895594e-01 6.22641146e-02\\n2.44934604e-01 6.21182382e-01 -1.85486361e-01 -3.99862140e-01\\n-9.16196033e-02 1.68436378e-01 5.53882271e-02 3.10499460e-01\\n-1.42887026e-01 2.84558684e-01 1.68681350e-02 4.10193764e-02\\n-1.99829996e-01 5.01204096e-02 1.52698874e-01 4.43148576e-02\\n1.40622944e-01 2.18024269e-01 3.18108648e-01 5.23011446e-01\\n3.41097444e-01 5.57101846e-01 2.71017879e-01 3.59637737e-02\\n4.87620115e-01 4.76558000e-01 4.54230547e-01 2.08986163e-01\\n-1.76320306e-03 1.02056921e-01 2.16901347e-01 5.01393266e-02\\n4.69051331e-01 2.94091463e-01 1.79922462e-01 9.98627603e-01\\n3.48797649e-01 2.87032545e-01 8.43538225e-01 -6.43991292e-01\\n-3.18332583e-01 5.51734343e-02 4.55668807e-01 -4.48792756e-01\\n-1.03208646e-01 -2.35917289e-02 -1.22589260e-01 2.35548720e-01\\n-4.74328876e-01 -2.55274892e-01 -9.27144364e-02 1.68489486e-01\\n4.89928350e-02 -8.48086700e-02 -2.35221758e-01 5.56751527e-02\\n-2.20822483e-01 -1.62228793e-01 -4.53381389e-01 -1.14544705e-01\\n-2.33592719e-01 -1.03915513e-01 -7.65084699e-02 -1.84562787e-01\\n-3.26370820e-02 -3.98711294e-01 -2.02082708e-01 2.68614795e-02\\n3.79045993e-01 -2.30294168e-01 2.94798687e-02 -1.81650251e-01\\n2.43176535e-01 2.39570662e-01 6.50650203e-01 1.27208696e-04\\n1.63850382e-01 -2.21740499e-01 -2.02035472e-01 9.17099938e-02\\n2.68027466e-02 1.37803748e-01 1.17072977e-01 3.76176268e-01\\n-4.04191136e-01 -2.14482509e-02 1.21888354e-01 5.50979197e-01\\n-3.42247546e-01 -9.31182057e-02 -1.53794706e-01 1.38029650e-01\\n6.04198799e-02 1.23234972e-01 -1.84309915e-01 -2.02576760e-02\\n-2.62405872e-01 -5.71299553e-01 3.52944851e-01 -1.24262683e-01\\n-1.58385515e-01 1.21032149e-01 3.36867213e-01 1.86535716e-01\\n-2.29159430e-01 9.08462738e-04 4.92382459e-02 1.94130823e-01\\n1.63496256e-01 3.55838865e-01 -3.36899340e-01 -2.02272743e-01\\n-1.60276696e-01 2.56040275e-01 -1.89696684e-01 2.15142649e-02\\n-9.00366232e-02 4.16060656e-01 2.68871486e-02 9.36951786e-02\\n3.94507438e-01 -4.32611518e-02 -1.73853770e-01 -2.69220442e-01\\n-1.61375061e-01 -2.79768169e-01 5.43620624e-02 -1.25683665e-01\\n2.65155464e-01 -3.70299548e-01 -8.55093896e-02 -1.29202113e-01\\n-5.75658605e-02 -3.69844526e-01 -1.52958527e-01 4.67682397e-03]]',\n", + " 'We are looking for young, enthusiastic and talented Software Engineer In this position you will be responsible for embedded software development in C++ and other programming languages. You will develop software under different operating systems using provided Application Programming Interfaces (APIs). In dynamic, multicultural environment of our company, you will be part of a team working on projects in the area of Telecommunications, Wireless, Networked Entertainment and Multimedia. In cooperation with leading European companies, you will be developing cutting-edge technology products. Exciting, challenging tasks are waiting for you! As a successful candidate for this position you must be able to demonstrate the following qualifications: 2+ years of experience in software development Strong knowledge of object-oriented (OO) design principles Extensive programming experience in C++ and multi-threading environments Basic computer engineering knowledge (processor and memory organization, stack, calling conventions, interrupt handling, etc.) Good written and verbal communication skills in English Good analytical and problem-solving skills Any of the following qualifications will be a plus: Experience with real-time operating systems (RTOS) and Linux Software design and development process using UML Understanding of embedded software development principles Hands-on experience with hardware debuggers and device-level programming Practical knowledge of MS VS, GCC, STL, Perl, CVS/Subversion, ADS (RealView), Socket API Familiarity with the ARM architecture and assembler Software analysis, review and re-factoring skills We offer: Exciting carrier and professional opportunities in a dynamically developing company with Swiss quality standards and stability Enjoyable working atmosphere in our engineering offices, conveniently located in 5-minute walking distance from Zug railway station. If you are interested in this position, please, send your resume at jobs@epscom.net We are looking forward to your application!',\n", + " '[\"Verbal Communication Skills\", \"Cooperation\", \"Professionalism\", \"Problem Solving\", \"Positivity\"]',\n", + " '[\"KM Programming Language\", \"Programming (Music)\", \"UML Tool\", \"Analytics\", \"Perl (Programming Language)\", \"C++ (Programming Language)\", \"Linux\", \"Agile Edge Technologies\", \"Process Driven Development\", \"Software Engineering\", \"ARM Architecture\", \"Operating Systems\", \"Multimedia\", \"AD Model Builder (ADMB)\", \"Standard Template Library (STL)\", \"Object-Oriented Design\", \"Wireless Telecommunications\", \"Software Design\", \"Computer Engineering\", \"Wireless Networks\", \"Software Development\", \"Software Business Analysis\", \"Application Programming Interface (API)\", \"Embedded Software\", \"Apache Subversion\", \"Real-Time Operating Systems\", \"Interrupt Handling\", \"Threading (Manufacturing)\"]',\n", + " \"['English']\"],\n", + " ['16',\n", + " 'banking specialist for asset data sourcing team',\n", + " 'Adliswil',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-2.46648371e-01 8.40683132e-02 6.47704542e-01 -7.06468597e-02\\n6.19640470e-01 -5.38111031e-02 -3.63511965e-02 3.84877384e-01\\n-6.13008104e-02 -4.01195377e-01 -1.42198307e-02 -2.03774601e-01\\n1.12571791e-01 2.64073491e-01 9.96969938e-02 2.46304229e-01\\n2.19860658e-01 1.54651463e-01 -5.96921109e-02 2.01621294e-01\\n1.18103422e-01 -1.53022796e-01 2.80736476e-01 6.63044631e-01\\n3.71157259e-01 1.51067646e-02 -7.86950737e-02 8.43321159e-02\\n-2.15574294e-01 -2.29256257e-01 5.06317496e-01 1.06468648e-01\\n-1.29997075e-01 -3.17014813e-01 1.55546933e-01 -3.81376930e-02\\n-2.88641810e-01 -5.75769655e-02 -1.44087479e-01 3.39276604e-02\\n-3.74132097e-01 -6.93628788e-02 -8.77526179e-02 1.88347414e-01\\n-3.69932562e-01 -3.58926922e-01 1.49138868e-02 -5.09441085e-02\\n1.34066105e-01 2.53248475e-02 -3.40091616e-01 2.79569924e-01\\n-2.69609779e-01 -3.26773494e-01 2.32046083e-01 6.58977687e-01\\n-5.22730015e-02 -4.38886076e-01 -4.45773840e-01 -3.30799073e-01\\n2.35520154e-01 -1.92735210e-01 9.59709361e-02 -2.97118157e-01\\n2.74405450e-01 8.00230261e-03 1.20419011e-01 2.77295470e-01\\n-7.57271409e-01 8.14732388e-02 -1.42944902e-01 -1.47838332e-02\\n-2.80732393e-01 -8.56808424e-02 -3.44099998e-01 -2.43293911e-01\\n-1.90903291e-01 3.90035778e-01 1.19309984e-01 9.58102271e-02\\n-1.22891203e-01 1.80712208e-01 -3.04186076e-01 3.50787193e-01\\n6.04168102e-02 3.32013488e-01 2.27561519e-01 1.91242114e-01\\n-2.89909571e-01 6.80834413e-01 2.05130935e-01 -3.76868933e-01\\n1.97110489e-01 9.68485326e-02 2.06479803e-01 -1.13175966e-01\\n2.18146116e-01 3.53431050e-03 -1.62738323e-01 2.54714131e-01\\n2.27403730e-01 -2.70096183e-01 3.40539664e-02 -1.04736589e-01\\n1.41931139e-02 1.64740048e-02 1.33529399e-02 1.68210045e-01\\n-2.18523964e-01 3.42262864e-01 4.91616279e-02 -2.70316720e-01\\n-6.84090257e-02 -4.31853354e-01 -8.65514427e-02 -6.77133352e-02\\n6.17499836e-03 1.34906620e-01 8.14604610e-02 1.65389001e-01\\n1.93133488e-01 3.00543867e-02 1.97843432e-01 8.37093949e-01\\n-1.48729784e-02 -3.75920907e-02 -2.11325228e-01 3.84233683e-01\\n6.33893609e-02 -2.43830979e-01 1.47479236e-01 2.07457080e-01\\n-9.83946100e-02 -1.33134335e-01 -2.84978122e-01 2.75941908e-01\\n-5.74419275e-02 -2.81221181e-01 -2.50318229e-01 1.39585197e-01\\n-8.80067125e-02 -4.80451852e-01 5.15599966e-01 6.91191927e-02\\n1.25683010e-01 -1.03904687e-01 -5.39002102e-03 -1.11581534e-01\\n-3.27925719e-02 1.75799876e-01 5.75377829e-02 8.89677033e-02\\n-2.80123323e-01 -1.83305070e-01 -1.97043955e-01 -3.75093333e-02\\n-3.87607276e-01 4.64359224e-02 -2.12277949e-01 -4.56675291e-02\\n2.24290252e-01 2.49792635e-02 -2.86823213e-01 1.95464820e-01\\n-7.04059228e-02 6.69704238e-03 -1.66506115e-02 3.89373362e-01\\n-2.15914235e-01 2.15044007e-01 -5.95957339e-02 -9.99350473e-02\\n5.09244680e-01 9.25352275e-02 2.00519085e-01 5.91132091e-03\\n1.56187311e-01 -4.37062941e-02 9.61402953e-02 7.64782950e-02\\n-7.47786224e-01 4.34609890e-01 -7.79770489e-04 -1.49048984e-01\\n1.46683052e-01 1.87183451e-03 1.83335319e-01 -2.40116775e-01\\n1.72063708e-01 -9.47191939e-02 -3.15730333e-01 -3.10053200e-01\\n-3.72614861e-02 -1.83657054e-02 2.48972654e-01 -5.17140985e-01\\n3.41007672e-02 1.85059354e-01 -4.40160900e-01 -1.73932761e-01\\n1.23282284e-01 2.39198804e-01 1.40462741e-02 1.31112099e-01\\n-2.31310531e-01 -3.47739041e-01 9.29064006e-02 -3.83815140e-01\\n-1.76903397e-01 4.88628894e-02 -3.28096926e-01 2.34765694e-01\\n4.18616198e-02 -9.54655111e-02 -1.82711799e-02 4.71006036e-02\\n-2.35426888e-01 6.54326798e-03 5.29332198e-02 -2.95037907e-02\\n4.10459816e-01 6.94635734e-02 -3.31434041e-01 4.74965841e-01\\n-1.96126863e-01 4.74295884e-01 5.27208485e-02 -9.26093280e-01\\n3.65673006e-01 2.61092961e-01 5.71451634e-02 -4.59950000e-01\\n6.45746708e-01 -3.51696253e-01 -8.57789516e-02 1.51056662e-01\\n-4.69294548e-01 -2.65459239e-01 2.97294229e-01 -1.69146582e-01\\n-3.09421033e-01 4.63334233e-01 1.01595834e-01 8.37331042e-02\\n1.54330999e-01 -2.21791416e-01 -1.89323395e-01 -6.83706030e-02\\n-1.97534516e-01 -2.80544430e-01 -6.17206335e-01 -8.99599716e-02\\n-9.31529403e-02 -4.27643239e-01 -1.19171776e-01 -4.38501537e-01\\n-1.74254775e-01 -3.09849918e-01 -2.04470456e-01 5.74285537e-02\\n1.86274618e-01 8.64165947e-02 -1.41394474e-02 2.60825120e-02\\n-4.38382700e-02 -5.66135764e-01 -2.81866901e-02 1.07095048e-01\\n3.42921793e-01 7.73109049e-02 1.36080101e-01 7.61560909e-03\\n1.45567313e-01 7.43997753e-01 -8.21147859e-02 -1.94624618e-01\\n2.61089385e-01 2.18745500e-01 5.55167645e-02 -8.29208940e-02\\n1.68494359e-01 2.93530434e-01 -2.91955382e-01 3.03021930e-02\\n-1.77157540e-02 -5.38289454e-03 4.17656839e-01 2.73761549e-03\\n-2.20882192e-01 -2.02173755e-01 3.27316709e-02 1.46339685e-01\\n-5.86391807e-01 -2.52660424e-01 5.11378586e-01 2.18938559e-01\\n-5.66958636e-03 2.65915275e-01 1.23419084e-01 -3.64043452e-02\\n-2.10972622e-01 -1.50980875e-01 3.60902935e-01 7.34940842e-02\\n2.03357935e-01 4.10521366e-02 -7.58752301e-02 -5.75444758e-01\\n-3.55480886e+00 -1.55666932e-01 7.76460161e-03 -2.49241218e-01\\n3.15165669e-01 -1.95138082e-01 2.33304217e-01 -4.56463881e-02\\n-3.30811024e-01 1.13729276e-01 -1.36300102e-01 -2.24511951e-01\\n3.26126724e-01 1.02653161e-01 1.11123577e-01 2.51464814e-01\\n1.41091213e-01 -2.77278036e-01 1.01157360e-01 3.32540810e-01\\n-1.75159320e-01 -7.90203810e-01 1.77850425e-01 6.80197729e-03\\n2.39764929e-01 2.39827096e-01 -3.87954444e-01 -1.16127513e-01\\n-2.93637067e-01 -2.18633905e-01 -2.04818677e-02 -2.96672165e-01\\n-4.23028879e-02 2.45305210e-01 2.49314323e-01 -1.91371679e-01\\n5.09701967e-02 -3.03747714e-01 -7.89971650e-02 -5.46766877e-01\\n2.34568313e-01 -5.91254830e-01 -2.49051619e-02 -8.27342197e-02\\n7.16954052e-01 -3.59905213e-01 1.48955256e-01 1.03407472e-01\\n1.32076591e-01 1.42691135e-01 1.65358782e-01 -7.32796490e-02\\n-2.44380087e-01 -2.82395840e-01 -1.71258152e-01 -1.66695789e-01\\n4.77622449e-01 4.44532722e-01 -2.62760639e-01 4.47850041e-02\\n4.43682186e-02 -2.86803365e-01 -3.52415472e-01 -2.59366959e-01\\n-1.04122087e-01 -1.24199890e-01 -5.32551587e-01 -5.37462056e-01\\n-1.16581172e-01 -1.26851857e-01 -2.13046633e-02 4.25822973e-01\\n-1.98019847e-01 -4.05182481e-01 -1.76587537e-01 -4.56676900e-01\\n3.72479558e-01 -4.94155772e-02 2.58599315e-02 -1.53941199e-01\\n-1.23174272e-01 -4.71592337e-01 1.62052795e-01 -5.88417053e-03\\n-1.00216821e-01 -1.93405330e-01 1.99273050e-01 -1.28692046e-01\\n-4.33713496e-01 -5.74727535e-01 2.77511895e-01 1.10979555e-02\\n3.37826222e-01 1.83455825e-01 1.79889381e-01 -3.19403484e-02\\n1.93877906e-01 -3.87703925e-02 6.15329482e-02 -4.18070763e-01\\n-4.20245342e-02 4.31864336e-03 5.05872369e-01 -1.79113269e-01\\n8.18325281e-02 8.29805806e-02 -8.81239623e-02 -7.65033588e-02\\n2.83053517e-01 -1.40246257e-01 2.20193565e-01 -2.27751076e-01\\n2.78513759e-01 -2.54444361e-01 -9.88413543e-02 -1.26841543e-02\\n7.11710826e-02 4.39178914e-01 6.44589961e-02 -2.09887773e-01\\n-6.74736276e-02 4.44230616e-01 -1.35510671e-03 -1.21706642e-01\\n-3.29016119e-01 4.28113751e-02 -3.18882793e-01 4.39728141e-01\\n-8.35918728e-03 -2.37061605e-01 -2.43030399e-01 -1.67483866e-01\\n-1.15562767e-01 2.86450148e-01 3.65762591e-01 1.56672120e-01\\n3.88512947e-02 -4.00768757e-01 -5.69746606e-02 1.27518758e-01\\n2.08256930e-01 4.84257698e-01 4.92029525e-02 -1.62035018e-01\\n-5.20101748e-02 2.01496154e-01 -2.61388987e-01 2.84892917e-01\\n-9.21199024e-02 1.40554100e-01 -5.16074836e-01 -2.49655023e-01\\n-2.87908643e-01 -3.36801887e-01 5.41051701e-02 3.42822611e-01\\n1.59986511e-01 -1.04538053e-01 -2.39738300e-02 -3.91532838e-01\\n3.02872539e-01 3.87217365e-02 1.77957997e-01 3.43372002e-02\\n-3.66652347e-02 6.02821946e-01 -3.56917605e-02 -2.13962138e-01\\n-9.88411605e-02 1.31284311e-01 -1.59408599e-01 -3.44115756e-02\\n1.99270584e-02 -4.49114889e-01 -1.43026844e-01 4.07083243e-01\\n1.77315846e-01 -2.44006798e-01 -6.01502284e-02 3.23756516e-01\\n-1.17133312e-01 -2.08129540e-01 -1.72732487e-01 6.52208105e-02\\n4.40668046e-01 1.31663397e-01 2.69772500e-01 -4.23635393e-01\\n4.78021018e-02 9.91960838e-02 4.40567359e-02 4.80223179e-01\\n-2.80739851e-02 -3.67609970e-02 -1.07847340e-02 -2.95050681e-01\\n3.98558944e-01 -2.39099041e-02 -1.38613656e-01 2.12849692e-01\\n2.73544211e-02 -1.45090893e-01 -3.29770267e-01 1.72717795e-02\\n2.20228359e-02 -2.66773880e-01 -5.64959657e-04 2.12869272e-01\\n9.81582776e-02 1.04123116e-01 -5.27846277e-01 -2.63828218e-01\\n-4.62236911e-01 8.71015489e-02 7.82755017e-02 -4.98994172e-01\\n5.69451898e-02 -1.06728941e-01 -5.66275835e-01 2.48335630e-01\\n-1.02786710e-02 -1.19939715e-01 1.69860572e-01 1.64488107e-02\\n-2.64875442e-01 3.32223624e-02 2.41914257e-01 2.44239777e-01\\n-3.29255104e-01 -6.72864988e-02 -9.69993994e-02 -9.29876924e-01\\n3.03357899e-01 6.21748157e-02 -9.94342268e-02 2.19043180e-01\\n-9.00675505e-02 -6.39838576e-01 1.31256774e-01 -3.52953613e-01\\n-2.92709351e-01 -1.30341098e-01 -1.73027664e-01 -4.17243898e-01\\n7.14336783e-02 1.68641672e-01 -9.57129747e-02 4.68796670e-01\\n-1.93818137e-01 4.20485556e-01 -1.37352899e-01 7.53303394e-02\\n8.75213668e-02 -2.45064020e-01 6.38361201e-02 -3.49721074e-01\\n-2.94677019e-01 -1.33730367e-01 -3.00069600e-01 -1.71128586e-01\\n-1.04200020e-01 -3.22524399e-01 -1.21172979e-01 4.26757000e-02\\n3.83553743e-01 8.09428245e-02 -1.88437834e-01 -1.62130788e-01\\n1.29822001e-01 -4.50269133e-01 2.02790305e-01 -1.40054241e-01\\n-4.99545336e-02 -1.21505514e-01 1.50140002e-01 2.52620187e-02\\n1.08910799e-01 -4.82825071e-01 2.98425496e-01 -3.08848351e-01\\n-3.31389219e-01 -1.67763472e-01 6.69352040e-02 2.71496251e-02\\n2.67646939e-01 -4.23640996e-01 -1.46267116e-01 2.75276154e-01\\n1.42659381e-01 1.01740599e-01 2.75887400e-01 -9.01566222e-02\\n-1.29634112e-01 3.72688711e-01 -3.45085770e-01 1.85968667e-01\\n8.11822832e-01 1.34150520e-01 2.06349298e-01 2.67301500e-01\\n2.61658818e-01 2.27521405e-01 3.59090984e-01 6.43799379e-02\\n-1.05386943e-01 3.73851061e-01 5.97496890e-02 -4.70680863e-01\\n-2.30090898e-02 -6.66520670e-02 -1.63762793e-01 -4.02028412e-01\\n6.76596999e-01 3.76488000e-01 -3.44214529e-01 -2.62013078e-01\\n-2.68846631e-01 -1.64932013e-01 8.90515372e-02 -1.04303740e-01\\n6.03773072e-02 -1.87468037e-01 3.90162140e-01 -6.01508170e-02\\n2.00873122e-01 5.09402335e-01 -1.75594568e-01 -3.03343683e-01\\n8.84671882e-03 2.48300016e-01 8.20089430e-02 5.22682369e-01\\n-2.53806591e-01 2.45948866e-01 6.12605140e-02 1.41221672e-01\\n-7.29291588e-02 9.18878838e-02 1.44223288e-01 1.51003078e-01\\n1.03907712e-01 5.64208329e-02 3.90816689e-01 3.54449421e-01\\n2.29327917e-01 3.89226317e-01 3.20732951e-01 1.57360449e-01\\n4.97819066e-01 5.20538628e-01 3.03491682e-01 9.50522069e-03\\n-3.88861448e-03 -8.36974308e-02 1.65974572e-01 2.50453353e-02\\n2.05038533e-01 3.27608943e-01 -4.84132878e-02 8.59740376e-01\\n3.35814476e-01 3.21648270e-01 6.89066172e-01 -6.19233012e-01\\n-4.12851632e-01 -3.46267335e-02 4.40060169e-01 -3.92425597e-01\\n-3.62447673e-03 1.75956041e-01 -1.95166335e-01 2.02797338e-01\\n-4.22050893e-01 -1.92500636e-01 -1.33568356e-02 -3.16246301e-02\\n-4.89482284e-02 -6.22023419e-02 -1.51026592e-01 1.78108454e-01\\n-1.23927400e-01 -1.15644291e-01 -4.62634325e-01 -2.40619764e-01\\n-9.94157195e-02 -1.24832787e-01 -9.94983763e-02 -5.05153127e-02\\n-6.59739301e-02 -3.27484220e-01 -6.94544911e-02 -8.45572129e-02\\n2.17577338e-01 -7.89618399e-03 -6.37203231e-02 -1.28655359e-01\\n2.91991234e-01 2.00499117e-01 6.25085533e-01 -1.52251255e-02\\n1.17349334e-01 -1.85513124e-01 -1.72725812e-01 3.13205607e-02\\n2.80748099e-01 4.62723002e-02 -1.22373300e-02 3.62902284e-01\\n-3.84581089e-01 -2.17611462e-01 2.26520494e-01 2.78219283e-01\\n-5.19956529e-01 1.37065053e-01 -7.98860099e-03 9.68392640e-02\\n1.04423426e-02 2.11636648e-01 -3.40693802e-01 -4.20318358e-03\\n-1.10536411e-01 -5.05388916e-01 2.83024341e-01 -1.75167605e-01\\n-1.18513405e-01 9.38572735e-03 2.44278640e-01 3.24519724e-01\\n-1.56521708e-01 -2.06026738e-03 -1.92913294e-01 1.32050309e-02\\n2.39327010e-02 1.15656704e-01 -1.61467716e-01 -1.90456033e-01\\n-2.76440471e-01 5.52208461e-02 -1.05687134e-01 1.42813608e-01\\n6.08249009e-02 3.11246574e-01 1.22352354e-01 1.00563459e-01\\n4.05563831e-01 -1.20621569e-01 -1.99881852e-01 -2.47887090e-01\\n-2.84472913e-01 -1.06974378e-01 -5.95223382e-02 -1.14750117e-01\\n2.56508797e-01 -2.91687638e-01 1.51753100e-02 -2.41869450e-01\\n-2.03866631e-01 -3.29605579e-01 8.94092992e-02 -2.33986899e-01]]',\n", + " \"Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team As part of our Global Asset Hub, the Asset Data Sourcing team is responsible for interfacing to data vendors (SIX FI, Bloomberg, etc.), data integration and delivery of up-to-date and validated instrument data (reference and market and corporate actions data) using a highly standardized approach. Your mission Business support for all data feed and data integration relevant aspects as part of our Asset Hub service. Executing and monitoring daily operation of Asset Master Data in line with agreed SLA's. Act as single point of contact toward clients, data vendors (e.g. SIX FI, Bloomberg, WM Datenservice etc.) and internal stakeholders in all Master Data relevant topics. Supporting internal business analysts for complex client requirements and improvement initiatives etc. Depending on your personal qualifications and aspirations further tasks can be added in relation with the expansion of our Asset Hub services. What you need Proven banking background with focus on back office administration. At least 3 years’ service experience with financial instruments and a master data environment as a business specialist (e.g. Valorenzentrale of a bank). Fluent in German and English (Italian and French would be a plus). sound knowledge of MS Office tools. Distinct client and service orientation. Eager to learn and take on new challenges. You will get extra points for the following Knowledge of the Avaloq Core Banking System. Knowledge of file handling tools (e.g. Filezilla, Total Commander) Knowledge of the EDM Solution Data Source (aka ProDB) Temenos. Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Bioggio Don’t be shy – apply!\",\n", + " '[\"Communications\", \"Writing\", \"Operations\", \"Service-Orientation\"]',\n", + " '[\"Reference Data\", \"Business Support Systems\", \"Tooling\", \"Pentaho Data Integration\", \"Office Administration\", \"Data Integration\", \"Wealth Management\", \"File Handling\", \"Financial Instrument\", \"Data Feed\", \"Instrumentation\", \"E (Programming Language)\", \"Total Commander\", \"Executable\", \"Knowledge-Based Systems\", \"AD Model Builder (ADMB)\", \"Personalization\", \"Acceptance and Commitment Therapy (ACT)\", \"Validations\", \"E-Tools\", \"Banking\", \"FileZilla\", \"Bloomberg Terminal\", \"International Business\", \"Source Data\"]',\n", + " \"['English']\"],\n", + " ['97',\n", + " 'paid internship in information technology / business analysis - 6 months (m/f)',\n", + " 'Geneva',\n", + " '',\n", + " 'www.pg.com',\n", + " '[[-9.31522921e-02 2.31941432e-01 5.36660373e-01 5.34399077e-02\\n6.94439888e-01 -8.13762546e-02 6.62378818e-02 3.26145828e-01\\n-1.12608269e-01 -3.69935185e-01 3.64051312e-02 -2.48723254e-01\\n1.09189451e-01 1.46269202e-01 8.54134932e-02 3.89964938e-01\\n4.61725742e-01 5.92709482e-02 -1.45790875e-01 3.14531177e-01\\n1.43064812e-01 -6.87748268e-02 1.70968845e-01 7.12481558e-01\\n5.82637668e-01 -3.13143395e-02 -4.27993014e-02 1.07626043e-01\\n-1.65265426e-01 -2.66508907e-01 5.14545798e-01 1.68767292e-02\\n-1.84240475e-01 -2.34215572e-01 5.42227775e-02 8.65881443e-02\\n-2.57911056e-01 -1.40806258e-01 -7.56352693e-02 1.76309019e-01\\n-4.93966073e-01 -1.29305795e-01 -1.55841738e-01 7.53242895e-02\\n-3.89258981e-01 -4.28603053e-01 -5.32816499e-02 -2.63175853e-02\\n1.17571473e-01 6.56449646e-02 -4.01026011e-01 3.59218538e-01\\n-1.17664024e-01 -3.00781161e-01 2.21398026e-01 7.40995824e-01\\n-2.16078404e-02 -4.44438338e-01 -5.02912402e-01 -4.00972784e-01\\n1.54340893e-01 -6.79686219e-02 1.72329694e-01 -3.64452004e-01\\n4.12550181e-01 8.94374475e-02 -6.05907664e-02 2.34173402e-01\\n-7.58675337e-01 -9.05441344e-02 -3.66713166e-01 -4.71538156e-02\\n-3.05083632e-01 -2.89225988e-02 -4.07378018e-01 -1.72672778e-01\\n-1.01135507e-01 4.18657720e-01 3.05007901e-02 9.27167833e-02\\n-9.08069983e-02 2.05872193e-01 -3.00760746e-01 2.65853137e-01\\n1.59806550e-01 3.43896329e-01 2.90823281e-01 3.35317373e-01\\n-3.11813265e-01 3.88930023e-01 1.53899252e-01 -3.77237499e-01\\n2.53843069e-01 2.34399527e-01 4.73659754e-01 -1.48777291e-02\\n2.54593104e-01 1.19978629e-01 -2.75294870e-01 2.74144650e-01\\n2.11161524e-01 -3.52601707e-01 1.04881063e-01 1.25735793e-02\\n-1.10545442e-01 -1.10177569e-01 1.52279168e-01 9.59993750e-02\\n-4.34963942e-01 4.54199195e-01 -4.91569042e-02 -2.88061380e-01\\n-4.84038591e-02 -4.19547498e-01 -5.17915152e-02 -4.10511047e-02\\n1.24099672e-01 2.76623428e-01 1.62327617e-01 3.07276458e-01\\n1.62714615e-01 -6.64959624e-02 1.73047557e-01 7.83663392e-01\\n2.64105964e-02 9.05479491e-02 -2.21366778e-01 2.87354290e-01\\n1.64400693e-03 -3.60234678e-01 3.52492452e-01 1.91821635e-01\\n-6.60820454e-02 -1.20609179e-01 -3.49202126e-01 2.63943017e-01\\n-1.22070625e-01 -2.89990902e-01 -2.00482279e-01 2.77284384e-01\\n-3.54555808e-02 -5.13663352e-01 6.13953471e-01 -9.70494971e-02\\n9.53728333e-02 -2.10683942e-01 -3.87861244e-02 -6.17821142e-02\\n-9.37421918e-02 1.48719251e-01 1.88873664e-01 1.16289631e-01\\n-2.29598045e-01 -1.27226382e-01 -1.87284991e-01 1.68545663e-01\\n-6.18140817e-01 8.70787799e-02 -1.39012337e-01 -9.92077142e-02\\n3.03132653e-01 -8.15986469e-02 -3.16681981e-01 3.78382415e-01\\n-1.29961640e-01 -1.16897315e-01 -2.90523693e-02 4.15536851e-01\\n-2.23974079e-01 2.43791640e-01 -4.49244231e-02 -8.82148296e-02\\n6.53666377e-01 1.63376361e-01 2.15049058e-01 -1.48121966e-03\\n1.82690531e-01 -9.67084989e-03 1.41630828e-01 2.06885308e-01\\n-7.00775743e-01 3.17976743e-01 -1.73795521e-01 -1.82977736e-01\\n8.75700265e-02 -1.33288473e-01 2.64275312e-01 -3.14549685e-01\\n5.61109632e-02 -5.14486507e-02 -2.71140158e-01 -3.31531167e-01\\n-2.16799125e-01 -6.91834539e-02 3.48062694e-01 -5.18355012e-01\\n7.80652612e-02 2.25596458e-01 -6.09233618e-01 -1.27135277e-01\\n2.18461171e-01 1.25178248e-01 1.38835669e-01 2.68118739e-01\\n-1.12328306e-01 -5.27871847e-01 1.19323984e-01 -3.39074671e-01\\n-2.22472161e-01 1.30744874e-01 -3.34596872e-01 1.51622593e-01\\n1.32178217e-01 3.52715142e-05 -4.82527539e-02 4.71356809e-02\\n-1.77710012e-01 8.19198340e-02 4.13370430e-02 7.73137137e-02\\n3.31574649e-01 7.49986544e-02 -3.34111452e-01 4.26742673e-01\\n-1.80401057e-01 3.28061104e-01 1.40454382e-01 -9.08507228e-01\\n4.41399336e-01 2.32862353e-01 8.63452405e-02 -1.83602244e-01\\n7.10392058e-01 -2.33413875e-01 -1.43664211e-01 1.54212207e-01\\n-3.09251010e-01 -2.82217383e-01 1.26918852e-01 -2.92364836e-01\\n-3.00200343e-01 5.42809129e-01 1.09532170e-01 2.79902518e-01\\n2.12848157e-01 -1.16718665e-01 -1.91678256e-01 5.27246445e-02\\n-2.46205181e-01 -2.30635703e-01 -6.31407142e-01 1.87831912e-02\\n-9.61954370e-02 -3.97538036e-01 -1.19626433e-01 -4.60452020e-01\\n-2.53206193e-01 -3.81199837e-01 -2.92619038e-02 -3.18829529e-02\\n3.86178434e-01 1.74310535e-01 -5.00617251e-02 -7.36162812e-02\\n-1.64871857e-01 -5.65014482e-01 -1.46691665e-01 1.24471039e-01\\n3.31172854e-01 1.29259467e-01 1.21913522e-01 -3.97674590e-02\\n1.73264593e-01 6.75605118e-01 -2.68430889e-01 -2.80152857e-01\\n2.05229610e-01 1.34207875e-01 -5.94588071e-02 -2.14296192e-01\\n-5.37828542e-04 3.22471082e-01 -2.57141531e-01 8.15577507e-02\\n-2.25727614e-02 3.73041183e-02 2.63974398e-01 9.45889577e-02\\n-7.18154535e-02 -2.19836637e-01 -7.48574287e-02 2.85847157e-01\\n-4.20214534e-01 -3.92373383e-01 7.39919960e-01 1.16203181e-01\\n-2.31230222e-02 1.56371430e-01 1.92801446e-01 1.23263877e-02\\n-1.72476441e-01 -2.12011993e-01 2.90297449e-01 1.05165347e-01\\n1.53592303e-01 1.81066617e-01 3.86862084e-02 -4.90678012e-01\\n-3.50266457e+00 -2.33174890e-01 9.35696661e-02 -2.15384915e-01\\n1.79882511e-01 -1.87892571e-01 9.91945416e-02 -4.56335545e-02\\n-3.09886754e-01 8.36942196e-02 -2.13266596e-01 -1.66745514e-01\\n1.48380846e-01 2.58699149e-01 1.26486748e-01 2.94882298e-01\\n1.92414388e-01 -1.93776309e-01 -6.32474124e-02 4.98285115e-01\\n-1.15054138e-01 -6.17814779e-01 1.59184963e-01 1.00721851e-01\\n3.01620722e-01 1.61308900e-01 -3.98348033e-01 -1.84044182e-01\\n-2.88190663e-01 -2.70670712e-01 1.80748969e-01 -2.89738417e-01\\n-1.90850079e-01 3.97423327e-01 2.29458109e-01 -7.57929124e-03\\n1.41181290e-01 -3.63380730e-01 -1.78281218e-01 -2.22061992e-01\\n4.59094904e-03 -7.03427672e-01 -1.51325226e-01 3.99147272e-02\\n7.28295565e-01 -2.72668183e-01 2.55305767e-01 9.45096090e-02\\n4.82925922e-02 8.21098685e-02 1.32881477e-01 -6.83073103e-02\\n-1.26975536e-01 -2.01453462e-01 -7.52066970e-02 -5.68272397e-02\\n5.71587265e-01 4.50107545e-01 -1.06105432e-01 -1.62348777e-01\\n4.95955460e-02 -2.51148909e-01 -4.40577805e-01 -3.70168746e-01\\n-2.09089205e-01 -2.37852007e-01 -7.81853497e-01 -5.33299029e-01\\n-8.23084861e-02 -1.36391357e-01 -4.85339388e-02 5.30186892e-01\\n-2.23377377e-01 -2.51144260e-01 -1.99310035e-01 -2.93680131e-01\\n3.19450110e-01 -6.76033199e-02 -1.11869529e-01 -1.42532051e-01\\n-2.14436859e-01 -3.84340823e-01 -5.37916794e-02 6.27003759e-02\\n-1.16544761e-01 -2.53695220e-01 1.94270998e-01 -8.93009081e-02\\n-5.10726929e-01 -4.99701113e-01 4.48306262e-01 1.67901024e-01\\n2.81038105e-01 1.74310505e-01 2.87729532e-01 9.70171243e-02\\n2.81931669e-01 -1.56313583e-01 -5.96766919e-03 -4.34302568e-01\\n1.39569119e-02 6.23884425e-02 4.79661226e-01 -2.27781460e-01\\n5.95352128e-02 -1.06515802e-01 -1.68830425e-01 -1.04858270e-02\\n4.40315902e-01 -1.63768396e-01 1.97613657e-01 -1.90281123e-01\\n1.48161009e-01 -2.11126953e-01 -1.90195560e-01 -1.32090729e-02\\n7.47820586e-02 6.42724574e-01 2.30307765e-02 -2.77330101e-01\\n-1.14368796e-01 3.94207537e-01 -2.38049716e-01 -2.60466617e-03\\n-3.52952540e-01 -4.45059873e-02 -2.90423036e-01 2.60637045e-01\\n-5.03300503e-02 -8.56817327e-03 -1.80948317e-01 -1.77439556e-01\\n-1.30305201e-01 2.57137537e-01 2.71632493e-01 1.26767665e-01\\n2.60318816e-03 -3.70704591e-01 3.78122255e-02 1.53575420e-01\\n3.23745370e-01 2.90768534e-01 1.72710896e-01 -2.36587167e-01\\n-5.28960079e-02 2.87525535e-01 -2.70681530e-01 2.70607501e-01\\n-2.33500049e-01 2.07659453e-01 -6.58171117e-01 -2.82479554e-01\\n-2.99591959e-01 -2.88083136e-01 1.86155692e-01 3.08358729e-01\\n2.13092878e-01 -1.21945433e-01 9.68520045e-02 -4.93189096e-01\\n2.27551043e-01 1.05125429e-02 3.05297613e-01 1.35556728e-01\\n-1.01758592e-01 6.49571657e-01 -3.36723514e-02 -1.76901966e-01\\n-3.40744518e-02 1.13605179e-01 -1.65567055e-01 -1.78325564e-01\\n-6.90184534e-02 -5.56734562e-01 -1.84640050e-01 2.77882338e-01\\n1.67252302e-01 -2.52154350e-01 -3.02525699e-01 1.69424474e-01\\n-8.91204327e-02 -4.91872907e-01 -1.96702182e-01 -6.65437654e-02\\n3.92442346e-01 1.42487824e-01 2.59906769e-01 -5.89478850e-01\\n6.33733124e-02 -7.15395510e-02 -4.54309918e-02 3.51431787e-01\\n1.98937096e-02 3.99407931e-03 -3.14613022e-02 -1.00746363e-01\\n4.36546087e-01 -7.34281391e-02 -1.37537211e-01 1.10572658e-01\\n1.11155130e-01 -2.92712271e-01 -3.52537811e-01 -1.07441694e-02\\n-2.34364178e-02 -2.15476543e-01 -2.26887763e-02 1.47804230e-01\\n-5.68154678e-02 3.03109176e-02 -5.96932411e-01 -1.75172627e-01\\n-2.79220641e-01 -4.79159616e-02 6.80803657e-02 -5.74802041e-01\\n-1.03304297e-01 -2.95035485e-02 -5.69253564e-01 2.82846630e-01\\n-2.32090652e-02 -9.91946459e-02 1.51879340e-01 -4.76821288e-02\\n-2.01772138e-01 -1.21592715e-01 1.43163219e-01 2.12083608e-01\\n-2.83105761e-01 -2.30033994e-01 -2.06189789e-02 -9.57039237e-01\\n2.10062772e-01 1.03767812e-01 -2.09596813e-01 8.90175849e-02\\n5.70998117e-02 -6.43228948e-01 2.33036146e-01 -4.02447999e-01\\n-1.50785148e-01 -1.99092701e-01 -2.96405375e-01 -3.92141759e-01\\n9.20423120e-02 1.38174474e-01 -2.54593939e-01 4.46118027e-01\\n-2.96930999e-01 3.88859153e-01 -4.42396179e-02 6.60456195e-02\\n2.67149433e-02 -2.04669788e-01 -2.17296630e-02 -3.29952300e-01\\n-5.00913382e-01 -1.27638549e-01 -2.73250639e-01 -8.30763653e-02\\n-1.02229908e-01 -2.25466639e-01 -1.68719798e-01 -7.67799318e-02\\n3.52937609e-01 1.33612230e-01 -1.33549303e-01 -1.67588174e-01\\n-3.89771052e-02 -4.17780936e-01 1.14672437e-01 -7.45631605e-02\\n-5.91568351e-02 -2.00201362e-01 2.31691912e-01 1.70737520e-01\\n1.69360906e-01 -3.77776176e-01 4.01391506e-01 -4.50145781e-01\\n-3.25641304e-01 -1.00196913e-01 8.75299573e-02 5.71315512e-02\\n3.90111744e-01 -4.47943926e-01 -1.25222616e-02 4.50302660e-01\\n-2.90957615e-02 7.10466653e-02 3.86981189e-01 -1.77334577e-01\\n-2.04100311e-01 3.68507624e-01 -2.89241999e-01 1.35130346e-01\\n8.06007564e-01 1.75841421e-01 2.46946558e-01 1.71437383e-01\\n5.38416319e-02 2.11458594e-01 4.55165684e-01 1.17626432e-02\\n-1.11604862e-01 3.44322026e-01 1.21276222e-01 -5.25951624e-01\\n4.34273370e-02 -3.64569388e-03 -1.28895938e-01 -3.24531257e-01\\n7.05867171e-01 3.84829521e-01 -3.29763472e-01 -2.91385770e-01\\n-2.44969100e-01 -2.04285696e-01 2.05166519e-01 -1.61460992e-02\\n5.23002893e-02 1.46265076e-02 5.48364282e-01 -7.96160251e-02\\n2.08537966e-01 4.54345196e-01 -2.62167037e-01 -2.39226848e-01\\n-6.42538741e-02 2.06298009e-01 5.70551492e-03 5.51275969e-01\\n-2.71672934e-01 3.79733026e-01 8.15567560e-03 1.36110231e-01\\n-2.19406813e-01 2.28214823e-02 2.88816661e-01 1.02618322e-01\\n1.06758565e-01 1.75611272e-01 5.11602938e-01 3.54925603e-01\\n3.42231899e-01 4.08135593e-01 3.45105469e-01 -1.47379674e-02\\n4.46163654e-01 4.20133650e-01 2.20274776e-01 1.18262418e-01\\n1.06507428e-02 -5.88733610e-03 1.82495296e-01 1.38327330e-01\\n2.20670819e-01 3.38591099e-01 -3.50038484e-02 8.31225872e-01\\n3.88145447e-01 2.89048314e-01 6.25732780e-01 -6.89114332e-01\\n-2.27710694e-01 -7.12179989e-02 4.93533343e-01 -3.83837402e-01\\n-1.68838277e-02 1.62933424e-01 -9.80254263e-02 1.82222083e-01\\n-4.96838003e-01 -2.82110721e-01 -1.16917677e-01 1.54566437e-01\\n1.77878793e-02 -2.30137855e-01 -2.28889927e-01 7.99848512e-02\\n5.70174120e-02 -3.16511542e-02 -4.86961484e-01 -1.30800068e-01\\n-2.79261261e-01 -1.16569936e-01 -7.27092475e-02 -2.75717508e-02\\n-1.93497017e-01 -2.95426786e-01 -1.62635744e-01 -1.04599379e-01\\n2.00104252e-01 -1.82742402e-01 -2.42972881e-01 -5.36885858e-02\\n3.85409772e-01 9.38629955e-02 5.68898618e-01 -8.07134211e-02\\n1.21091679e-01 -2.25958854e-01 -1.57083303e-01 4.25663479e-02\\n1.77779406e-01 -6.20375155e-03 -3.38458829e-02 4.25258160e-01\\n-2.63084292e-01 -2.47410253e-01 4.30845562e-03 2.22303778e-01\\n-4.91685778e-01 1.73722580e-02 -2.42955834e-02 2.31791034e-01\\n9.21972394e-02 2.15233624e-01 -1.89280450e-01 -2.11584438e-02\\n-1.15887895e-01 -5.35772741e-01 1.24686301e-01 -2.79692542e-02\\n-1.44804776e-01 9.55819935e-02 1.69434488e-01 3.12004983e-01\\n-1.80969417e-01 -1.41157717e-01 -1.19460270e-01 8.41509998e-02\\n7.40103200e-02 2.06793547e-01 -1.66515470e-01 -3.20549399e-01\\n-2.96910942e-01 2.37690613e-01 -1.10421315e-01 2.54428059e-01\\n-2.71666329e-02 3.40817273e-01 1.59171999e-01 2.19367430e-01\\n3.48234057e-01 6.80659637e-02 -1.76025152e-01 -1.78719819e-01\\n-1.56961501e-01 -2.64150739e-01 -5.28653190e-02 -1.21269673e-01\\n2.38282055e-01 -2.55924433e-01 -7.12118298e-02 -2.72256553e-01\\n-1.98315263e-01 -4.27879453e-01 4.18229029e-02 -1.41002581e-01]]',\n", + " 'Do you love diving into data sets? Would you enjoy telling stories and helping others see the benefit of data-based decision-making? We are passionate about understanding data and want more people who know how to use that data in the best way to guide our decisions. Are you up for the challenge? Then apply to one of P&G IT internship: we are looking for interns (F/M) in Geneva (CH) Special Notice: If you are a female student or a recent graduate passionate about business and technology, interested in using IT to transform the way people work and make business decisions and are interested in joining the Future Female Leaders in Information Technology event on November 25th in Geneva, please continue your application here. Apply before October 27th. As an intern your Project will include:• Leading and improving the analytical program, influencing the data strategy and structure for your business unit / category / region together with consumer research group. • Delivering regular analytic updates and insights, for example Market & Share performance of our product portfolio, identifying key growth opportunities or make strategies real, while using advanced analytic techniques. • Building analytic capabilities to grow organizations knowledge. • Discovering and inventing next-generation business analytic tools for our category analysts and business partners, owning our new applications from design-thinking up to user adoption.• Developing in-depth business, analytical and systems knowledge to improve or build analytical solutions, approaches and foremost business recommendations. • Collaborating with multi-functional teams (Consumer Research, Finance, Marketing, IT etc.)• Answering business questions and propose solution for business problems by applying machine learning techniques and automatizing analysis of consumer touch point information or other deep learning data, exploring their patterns and recommending marketing activities. Requirements: • You are doing a Bachelor or Master Degree in a quantitative field (Operation Research, Computer Science, Engineering, Applied Math, Statistics, Analytics etc); Possibly a minor in Economics or Business Management• You are comfortable working with diverse business scenarios, handling multiple priorities and have a business & consultancy mind-set, while technically (data) savvy.• Passion to try new things, learn quickly and work well with diverse backgrounds• Excellent interpersonal skills, self-motivated, dynamic and can-do attitude• Have enthusiasm and curiosity about the intersection of business, technology and data• English required (written and oral) Due to legal restrictions, immigration sponsorship is available only for EU/EFTA nationalities. All candidate with non EU/EFTA nationalities are encouraged to check out opportunities in countries where they can obtain a work permit. P&G is committed to providing equal opportunities in employment. We value diversity and we do not discriminate on the basis of race, religion, color, national origin, gender, sexual orientation, age, marital status, veteran status, or disability status. ',\n", + " '[\"Self-Motivation\", \"Research\", \"Decisiveness\", \"Collaboration\", \"Enthusiasm\", \"Decision Making\", \"Information Technology\", \"Curiosity\", \"Consulting\"]',\n", + " '[\"Business Analytics\", \"Disabilities\", \"Tooling\", \"Data Explorers\", \"Diving\", \"Computer Science\", \"Analytics\", \"Statistics\", \"Consumables\", \"Business Partnering\", \"Strategic Business Unit\", \"Analytical Techniques\", \"Activism\", \"M (Programming Language)\", \"Operations Research\", \"Knowledge-Based Systems\", \"Minimum Data Set\", \"Machine Learning Methods\", \"Finance\", \"Equalization\", \"Deep Learning\", \"Design Thinking\", \"Economics\", \"Coloring\", \"Business Technologies\", \"Adoptions\"]',\n", + " \"['English', 'Swati', 'Aragonese']\"],\n", + " ['109',\n", + " 'data scientist (analytics)',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.starmind.ai',\n", + " '[[-2.10179746e-01 1.94211572e-01 4.47810352e-01 7.11169317e-02\\n4.75101680e-01 -1.05349049e-01 1.71992742e-02 3.98088157e-01\\n-2.30169017e-02 -5.11718750e-01 7.56235421e-02 -2.83988595e-01\\n-1.85230911e-01 1.26160175e-01 2.60654427e-02 3.76901388e-01\\n2.39219233e-01 1.66433752e-01 -1.64665177e-01 4.03719902e-01\\n6.82031959e-02 -1.23662595e-02 4.69312072e-04 7.99202323e-01\\n4.52678859e-01 -5.14311492e-02 -5.81164770e-02 4.51204516e-02\\n-1.91704780e-01 -2.37781882e-01 4.67107028e-01 1.29429162e-01\\n-1.99123085e-01 -4.70910579e-01 -3.30480784e-02 5.50191179e-02\\n-2.50130266e-01 -8.57802406e-02 -5.99808469e-02 1.74275488e-01\\n-5.78484654e-01 -1.90715224e-01 -1.04086816e-01 8.43295828e-02\\n-2.80406743e-01 -3.33820581e-01 6.04574196e-02 2.06429362e-02\\n2.40011171e-01 7.22111315e-02 -5.37037671e-01 3.08836520e-01\\n-2.53518373e-01 -2.28790194e-01 2.30259091e-01 6.09373450e-01\\n6.41611144e-02 -3.96829188e-01 -5.92023313e-01 -2.99331665e-01\\n1.26928598e-01 -2.16440961e-01 5.64881526e-02 -4.84487444e-01\\n3.02383959e-01 4.54939082e-02 1.68502033e-01 2.86692649e-01\\n-7.07299292e-01 -1.54409632e-02 -2.36068189e-01 -8.47047567e-02\\n-4.60173845e-01 -4.59526964e-02 -3.45182002e-01 -2.48257481e-02\\n-1.54969990e-01 4.45691019e-01 7.67012537e-02 9.96287912e-03\\n-1.86111555e-01 3.12287122e-01 -3.07298243e-01 4.16275740e-01\\n1.97299033e-01 2.38001123e-01 1.79564059e-01 3.68592858e-01\\n-4.59829003e-01 4.30814475e-01 8.08612332e-02 -3.01364750e-01\\n3.06849778e-01 2.17004538e-01 4.63233650e-01 -2.33492181e-02\\n2.48216003e-01 6.17225543e-02 -3.62661004e-01 4.80409831e-01\\n3.23345959e-01 -4.47050422e-01 7.52894059e-02 -2.52340853e-01\\n1.33517101e-01 -4.06849869e-02 1.21368274e-01 1.29612103e-01\\n-2.82538176e-01 4.16292667e-01 2.06427872e-01 -1.66058794e-01\\n-1.18123874e-01 -3.88204098e-01 -2.27980241e-02 -9.65153519e-03\\n1.14265755e-01 9.73291248e-02 1.85215503e-01 7.00136125e-02\\n2.59798765e-01 1.67647064e-01 1.60188615e-01 8.25629354e-01\\n-9.63142812e-02 2.89463867e-02 -2.09348053e-01 2.80466080e-01\\n1.89862311e-01 -3.49973232e-01 3.00333560e-01 2.63654202e-01\\n5.76562509e-02 -1.60088286e-01 -2.74979770e-01 3.48088205e-01\\n-1.37138873e-01 -1.65909871e-01 -3.56268048e-01 2.07551032e-01\\n2.50931025e-01 -3.54777217e-01 7.02439666e-01 1.09080330e-01\\n2.14200258e-01 -1.49468314e-02 5.35254218e-02 -2.13143051e-01\\n-1.21867314e-01 1.56842902e-01 5.52795045e-02 1.73762649e-01\\n-2.93830097e-01 -1.87693939e-01 -1.30972311e-01 5.32020442e-02\\n-5.78639627e-01 1.16341837e-01 -1.43634155e-04 -1.13525558e-02\\n1.67789310e-01 -5.14701083e-02 -3.08998555e-01 7.22464696e-02\\n-1.95161492e-01 -1.12387687e-01 1.67239934e-01 4.42371845e-01\\n-1.58010542e-01 2.87146419e-01 2.40565613e-02 -8.20622593e-02\\n7.88658977e-01 2.06482381e-01 2.10094750e-01 4.71047871e-03\\n3.19060683e-01 9.82624292e-03 1.50462583e-01 2.64285922e-01\\n-7.66696811e-01 2.24359229e-01 -9.21086743e-02 -2.98248351e-01\\n1.69284493e-01 -5.46119586e-02 3.13757896e-01 -2.64960140e-01\\n1.08908117e-01 -1.23104624e-01 -3.11451107e-01 -2.40551606e-01\\n-3.41877222e-01 -1.28749665e-02 3.58161598e-01 -4.83628213e-01\\n-1.18165538e-01 1.74724907e-01 -4.99271095e-01 -1.72453731e-01\\n1.00684166e-01 7.62574077e-02 1.35376096e-01 1.17276490e-01\\n-1.45077333e-01 -6.31760240e-01 -2.76954491e-02 -3.99203956e-01\\n-4.77119029e-01 6.05513379e-02 -4.18557227e-01 3.05402398e-01\\n7.10128322e-02 -1.20502442e-01 -1.78107440e-01 2.30716959e-01\\n-2.54188061e-01 8.04420337e-02 1.49276182e-02 4.55989689e-02\\n1.75669566e-01 7.05859736e-02 -3.80026639e-01 3.31154436e-01\\n-8.17083046e-02 6.78580821e-01 8.06134045e-02 -7.87013173e-01\\n5.94534278e-01 3.05935383e-01 -7.68897533e-02 -4.81723517e-01\\n5.56069195e-01 -2.29369015e-01 -1.89763397e-01 2.91056968e-02\\n-3.97436827e-01 -4.08761621e-01 2.73921907e-01 -5.71240149e-02\\n-2.05789596e-01 4.73918676e-01 1.10384524e-01 1.47889242e-01\\n2.53278315e-01 -3.11583638e-01 -1.28919750e-01 1.26212656e-01\\n-6.04721084e-02 -2.50511438e-01 -5.87294340e-01 -7.72306025e-02\\n-1.99988768e-01 -3.08492422e-01 -6.03672080e-02 -3.58885109e-01\\n-1.89634860e-01 -3.80856961e-01 -2.33501524e-01 3.06740940e-01\\n2.92243481e-01 8.06134567e-02 -1.22002319e-01 6.37357235e-02\\n2.66681202e-02 -7.78093159e-01 -2.43456531e-02 8.75557885e-02\\n5.14803529e-01 1.88636243e-01 2.23282859e-01 -7.33380467e-02\\n1.30144402e-01 6.51920974e-01 -1.97757870e-01 -3.17990124e-01\\n1.66064978e-01 3.08942735e-01 -2.14497242e-02 -1.34855613e-01\\n7.25394785e-02 4.26286757e-01 -3.86969805e-01 8.80723000e-02\\n4.14319038e-02 -2.09634185e-01 4.36686635e-01 -4.37591597e-02\\n-3.27730954e-01 -1.15854472e-01 -1.94023311e-01 9.71607342e-02\\n-5.63966274e-01 -3.78041863e-01 5.32606244e-01 2.39405975e-01\\n2.10919052e-01 5.64445630e-02 3.23486105e-02 -2.33842209e-02\\n-2.35300094e-01 -3.13792646e-01 3.14882666e-01 1.14036284e-01\\n9.17684957e-02 1.97435349e-01 3.54253761e-02 -6.28795326e-01\\n-3.45707703e+00 -1.40250266e-01 2.66815454e-01 -1.74149483e-01\\n1.18733853e-01 -2.24343985e-02 4.15387098e-03 -1.41916215e-01\\n-3.16568702e-01 7.11792558e-02 -1.43641040e-01 -2.30840474e-01\\n5.55182472e-02 2.49967009e-01 1.21269159e-01 1.39162913e-01\\n2.33872563e-01 -1.97353989e-01 -9.31975469e-02 2.96579003e-01\\n-1.92320481e-01 -5.83225429e-01 1.63121238e-01 -1.32989911e-02\\n1.93724096e-01 2.93803692e-01 -1.54656455e-01 -2.48165220e-01\\n-2.07820937e-01 -2.17830285e-01 6.53106123e-02 -2.76642561e-01\\n-1.56589165e-01 3.15363616e-01 2.55629003e-01 4.53668274e-02\\n5.58210015e-02 -3.89792979e-01 -1.80715233e-01 -4.64159369e-01\\n3.54249813e-02 -5.17889500e-01 1.66600384e-02 -1.99917495e-01\\n8.24899256e-01 -2.76604742e-01 1.46714419e-01 9.83523726e-02\\n2.15099514e-01 4.38738987e-02 1.14830293e-01 6.81909323e-02\\n-1.61824286e-01 -2.23032728e-01 -1.95522845e-01 -1.36374190e-01\\n6.10514045e-01 3.66834551e-01 -3.70142311e-02 -1.12815261e-01\\n1.70202836e-01 -2.26860926e-01 -4.04349864e-01 -2.30926380e-01\\n-9.46606845e-02 -2.99577475e-01 -5.26724339e-01 -3.45891416e-01\\n-1.07495070e-01 -1.42220378e-01 -1.62838548e-01 5.81643462e-01\\n-4.00863796e-01 -3.24613065e-01 -1.02602258e-01 -4.29318726e-01\\n2.85477668e-01 -2.08131433e-01 -2.74303518e-02 -1.73406973e-01\\n-3.50050002e-01 -5.66657543e-01 -2.20690109e-02 -7.50655681e-02\\n-1.60913914e-01 -4.17465508e-01 1.39559964e-02 -7.89035857e-02\\n-2.75966078e-01 -5.95266819e-01 3.95969659e-01 8.97488445e-02\\n2.76108086e-01 2.31478781e-01 3.34949255e-01 2.43235826e-02\\n3.84296954e-01 -3.48085389e-02 -1.04335777e-01 -2.52733678e-01\\n7.90352970e-02 6.24209642e-05 4.70604599e-01 -3.00321668e-01\\n-3.01844254e-02 7.38041550e-02 -2.16567382e-01 6.17171451e-03\\n3.73950481e-01 -5.70871271e-02 3.21425423e-02 -9.31534469e-02\\n3.58094007e-01 -2.15443060e-01 -9.59355980e-02 1.39634430e-01\\n1.64284959e-01 5.48558414e-01 2.22381204e-04 -4.10339385e-01\\n-5.49609214e-02 5.39321661e-01 -1.71384424e-01 4.04147245e-02\\n-2.52790809e-01 6.71408698e-03 -1.73354775e-01 3.31684709e-01\\n2.29939688e-02 -2.67501891e-01 -1.50031552e-01 -1.64433479e-01\\n-1.29732117e-01 3.56378138e-01 2.89455205e-01 -9.87644494e-03\\n5.33621423e-02 -3.33533257e-01 -1.46737382e-01 2.02087820e-01\\n2.87780106e-01 4.85582888e-01 1.42497241e-01 -2.30159491e-01\\n-1.54986531e-01 3.27715755e-01 -3.05212103e-02 6.83273375e-02\\n-2.77411401e-01 9.84354913e-02 -5.60426474e-01 -2.45150685e-01\\n-3.40586960e-01 -4.57471818e-01 3.09908420e-01 2.96390802e-01\\n1.93297327e-01 -2.79567353e-02 1.68242715e-02 -4.84814733e-01\\n2.53559619e-01 2.29311198e-01 8.67401734e-02 9.65577886e-02\\n-1.83367599e-02 4.81751442e-01 -1.77990459e-02 -1.51028335e-01\\n-6.13336265e-02 4.96961474e-02 -1.62863940e-01 -1.28857881e-01\\n1.36013746e-01 -5.56048393e-01 -1.21822193e-01 4.01461422e-01\\n1.78361565e-01 -2.41204500e-01 -3.50371778e-01 2.38098100e-01\\n-7.46901482e-02 -1.38120472e-01 -3.01481009e-01 -7.78522938e-02\\n3.64065111e-01 6.05226010e-02 2.70697415e-01 -3.44998896e-01\\n-1.00081660e-01 3.53457332e-02 -1.76378191e-01 4.54855680e-01\\n-2.79353037e-02 -6.55786097e-02 -2.75551766e-01 -1.15903333e-01\\n3.84312302e-01 -1.62750870e-01 -7.71391690e-02 2.01012418e-02\\n1.44687697e-01 -2.52256334e-01 -4.08395171e-01 5.50485030e-02\\n-2.44182274e-02 -2.89785624e-01 -4.54139113e-02 2.05413848e-01\\n3.20607126e-02 1.79573059e-01 -6.64706588e-01 -2.79706538e-01\\n-3.47172827e-01 -1.57855153e-01 1.35471314e-01 -3.32170874e-01\\n1.11616030e-02 -1.51936859e-01 -5.85460424e-01 2.02037826e-01\\n-2.33857602e-01 -1.67000219e-01 1.52982950e-01 1.88255444e-01\\n-2.88002372e-01 -2.15857163e-01 7.07886815e-02 3.00652683e-01\\n-3.01800817e-01 -3.06582063e-01 3.27955782e-02 -9.49103117e-01\\n1.51237726e-01 1.06959537e-01 -2.73427993e-01 1.29867047e-01\\n-1.25954658e-01 -5.67539513e-01 -2.70187901e-03 -4.66065466e-01\\n-7.62172639e-02 4.26074117e-03 -2.75106043e-01 -2.68526882e-01\\n1.25605613e-01 -3.63534875e-02 -3.38201106e-01 5.90385437e-01\\n-2.39713579e-01 2.97159076e-01 -2.00981051e-01 6.32197931e-02\\n-4.05335166e-02 -2.06939816e-01 4.79787141e-02 -3.77410114e-01\\n-4.50367928e-01 -2.79206514e-01 -3.24430555e-01 -2.88720042e-01\\n7.29513168e-02 -4.49980557e-01 -9.38795656e-02 1.27719730e-01\\n3.08707356e-01 3.52661163e-02 -6.69995993e-02 -3.36333185e-01\\n1.20317079e-01 -6.10910594e-01 -1.00885108e-02 -3.98753732e-02\\n-1.88447028e-01 -6.01781756e-02 1.39500916e-01 6.99954331e-02\\n2.14711025e-01 -1.92881435e-01 2.83252746e-01 -5.04460454e-01\\n-1.41100675e-01 6.52415305e-03 6.14316985e-02 -1.26327246e-01\\n1.57054693e-01 -5.10943055e-01 3.32886241e-02 4.04096216e-01\\n1.84172601e-01 7.86176044e-03 1.84053227e-01 -9.64846089e-02\\n1.38454735e-02 3.60264897e-01 -2.45273083e-01 7.34435469e-02\\n7.05817223e-01 1.05272770e-01 1.81264430e-01 1.20723128e-01\\n1.86774805e-01 2.46158153e-01 5.45635581e-01 4.24904302e-02\\n-7.89920539e-02 2.18962252e-01 3.06327436e-02 -4.10098195e-01\\n-1.86287947e-02 4.25301977e-02 -2.49770403e-01 -4.11494434e-01\\n6.35590732e-01 4.15606707e-01 -5.70702791e-01 -1.08167760e-01\\n-1.22683778e-01 -8.49220827e-02 2.85244644e-01 -3.27986740e-02\\n-9.70615149e-02 -2.50389948e-02 4.42076862e-01 -1.58618227e-01\\n1.66108638e-01 4.65281546e-01 -1.79365739e-01 -2.17780143e-01\\n-8.96031857e-02 2.29684085e-01 2.10076999e-02 6.10326648e-01\\n-2.15045214e-01 3.84999216e-01 -4.10412960e-02 3.08759734e-02\\n-7.95201883e-02 2.24118471e-01 2.07123190e-01 1.27009720e-01\\n3.00675213e-01 -1.00370824e-01 4.99070823e-01 4.32720244e-01\\n1.68665707e-01 4.49966490e-01 3.20463508e-01 1.01850949e-01\\n3.92724097e-01 5.18780708e-01 3.37164134e-01 1.85537606e-01\\n-2.94519439e-02 1.85228959e-01 1.93825006e-01 -4.55904901e-02\\n4.29522157e-01 3.75671625e-01 5.81753589e-02 8.86701941e-01\\n3.31846833e-01 4.05257344e-01 7.13368833e-01 -6.92930818e-01\\n-4.08669174e-01 2.39533588e-01 5.05235851e-01 -3.08072239e-01\\n3.77252102e-02 1.59508780e-01 -1.69029504e-01 2.58641511e-01\\n-4.29258943e-01 -2.63436735e-01 -1.86553225e-02 2.78958142e-01\\n-5.74850589e-02 -2.66052961e-01 -2.77419329e-01 1.05503559e-01\\n-2.24513933e-02 4.01349887e-02 -4.79153514e-01 -1.60319269e-01\\n-2.52722114e-01 -1.18680969e-01 -1.19232081e-01 -9.07109380e-02\\n3.99960987e-02 -3.42873454e-01 1.81955472e-02 -3.69969048e-02\\n2.98058689e-01 -1.79092824e-01 -1.20981731e-01 -1.38574302e-01\\n2.70347595e-01 2.77954906e-01 4.83906150e-01 -1.87783390e-02\\n9.00344551e-02 -2.30700612e-01 -2.22805068e-01 1.74296543e-01\\n1.16220593e-01 2.99101267e-02 1.43809114e-02 1.35847509e-01\\n-1.87098280e-01 -2.41374403e-01 2.00182676e-01 3.00834507e-01\\n-4.77595150e-01 -4.74525802e-02 -1.81763530e-01 1.72846913e-01\\n1.10419430e-01 2.42714167e-01 -1.92542121e-01 1.40764371e-01\\n-2.17416227e-01 -3.97935569e-01 2.40891814e-01 -1.31820142e-01\\n-9.15689915e-02 1.11068368e-01 3.31274390e-01 1.43759787e-01\\n-2.63186932e-01 -4.85299528e-03 -1.56927884e-01 2.31594503e-01\\n-3.17130610e-02 2.27894485e-01 -1.29941285e-01 -4.01979715e-01\\n-1.83858126e-01 1.13327384e-01 -1.76448286e-01 1.18976891e-01\\n1.83977336e-02 3.92277896e-01 1.29125327e-01 2.79327072e-02\\n5.19391060e-01 1.68753807e-02 -2.69162893e-01 -2.31084645e-01\\n-1.80346817e-01 -1.44831434e-01 -1.77088588e-01 2.68146582e-02\\n1.62462294e-01 -3.55977535e-01 -8.23326260e-02 -1.59328684e-01\\n-1.95772126e-02 -3.44549417e-01 7.99285024e-02 -3.76709290e-02]]',\n", + " \"At Starmind, we believe that the combined knowledge and cognitive capabilities of humans far exceed any existing technology's computing power; thus, we developed AI to empower and enhance rather than replace the human mind. Our platform helps expedite people's advancement by exploring undocumented human intelligence and enabling real-time access to skills, knowledge, and solutions within corporations, communities, and, since we like to think of the bigger picture: the world. We are backed by some of the best VC investors in Europe, becoming one of the fastest growing AI companies in Europe; and are rapidly expanding our team with the crème de la crème from AirBnB, Twitter, SalesForce, Zuora and many more. Do you have what it takes to help us shape the future of AI? Watch this video to find out how Starmind works! What You Will Do You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Who You Are You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization (for example using matplotlib or Grafana). You are always curious to try out new tools and libraries for the analysis and visualization of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. The Bounty A dynamic, young company where input is welcomed and acted upon High level of personal responsibility and independence A challenging and exciting mission within an innovative and multi-cultural environment The opportunity to work with some of the smartest and most innovative people in the market If this sounds like you, let’s solve the riddle and apply (written in English or German) - We’re very excited to meet you.\",\n", + " '[\"Communications\", \"Writing\", \"Proactivity\", \"Innovation\"]',\n", + " '[\"MySQL\", \"NoSQL\", \"Matplotlib\", \"Accessioning\", \"Advising\", \"Corporate Communications\", \"Tooling\", \"Agility\", \"Acting\", \"Statistics\", \"Machine Learning\", \"Visualization\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Levelling\", \"Data Visualization\", \"Machine Learning Methods\", \"Personalization\", \"Machine Learning Algorithms\", \"Scalability\", \"Human Intelligence\", \"Electronic Data Processing\", \"Humanism\", \"Grafana\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'full-stack software engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.67733118e-01 3.18774730e-01 3.84102076e-01 6.34426028e-02\\n4.19775933e-01 -2.08391398e-01 -1.94373298e-02 2.74899423e-01\\n-5.86313456e-02 -3.81496459e-01 -5.73851243e-02 -2.94074893e-01\\n-8.99507105e-02 2.96436492e-02 1.05516717e-01 3.67891908e-01\\n3.42170030e-01 8.93009454e-02 -1.24921858e-01 4.20912564e-01\\n9.61516798e-02 -6.83451295e-02 -6.77585006e-02 7.14554429e-01\\n3.12497854e-01 1.59288775e-02 -8.35912898e-02 1.60325676e-01\\n-1.98575228e-01 -2.63831079e-01 3.23946416e-01 4.26645810e-03\\n-1.36844099e-01 -4.05949563e-01 3.02130524e-02 9.73248258e-02\\n-2.24668518e-01 1.39624804e-01 -2.35945489e-02 2.01886714e-01\\n-4.38057959e-01 -3.67949754e-01 1.12837754e-01 -4.18161526e-02\\n-2.24791065e-01 -2.75343746e-01 5.69273494e-02 -8.47767293e-02\\n3.74244852e-03 4.10220399e-02 -4.79702890e-01 3.30104947e-01\\n-2.02897444e-01 -2.47761935e-01 2.02542141e-01 5.88414371e-01\\n3.03346161e-02 -5.70431232e-01 -4.11090761e-01 -2.56150246e-01\\n6.29858077e-02 -1.44980252e-01 1.57412677e-03 -1.23499356e-01\\n3.98839504e-01 -4.18526866e-02 -3.87681499e-02 4.61482882e-01\\n-7.23376215e-01 3.10153682e-02 -2.72241920e-01 7.16924071e-02\\n-3.64778191e-01 -1.03613865e-02 -3.20591420e-01 -2.32534483e-01\\n-5.70944212e-02 3.91662151e-01 9.75048319e-02 5.77631593e-02\\n-1.94112092e-01 2.21244991e-01 -2.09897637e-01 2.49799058e-01\\n3.79837722e-01 1.10591151e-01 3.14229161e-01 3.78038257e-01\\n-3.93394172e-01 4.33714241e-01 2.09090516e-01 -2.67292619e-01\\n3.44987631e-01 8.49526152e-02 4.23553467e-01 2.18766406e-01\\n1.33084692e-02 2.71528274e-01 -1.51468039e-01 2.18916759e-01\\n1.08367778e-01 -2.34382287e-01 -1.11853674e-01 -5.44977710e-02\\n-1.76459067e-02 -4.12392505e-02 -1.51258952e-03 1.61026984e-01\\n-2.49561384e-01 3.24541748e-01 1.08778499e-01 -2.87811965e-01\\n-1.11896366e-01 -4.56103832e-01 -1.16745166e-01 -1.70824692e-01\\n-1.55322239e-01 2.08478406e-01 2.35449016e-01 1.36988103e-01\\n1.51292369e-01 7.32288733e-02 1.30049184e-01 9.67645466e-01\\n2.67990418e-02 1.08102471e-01 -3.90385747e-01 4.28522795e-01\\n2.70804226e-01 -1.96854740e-01 2.24568173e-01 2.19794825e-01\\n1.20602194e-02 -1.04203418e-01 -2.17734262e-01 2.83159673e-01\\n-8.30391273e-02 -1.43640324e-01 -2.92704731e-01 3.92774902e-02\\n-2.97303915e-01 -4.46666837e-01 5.35765469e-01 1.59231633e-01\\n2.29881138e-01 5.08743152e-02 -2.44171154e-02 -1.25460951e-02\\n-2.35317469e-01 2.72311836e-01 -6.66820407e-02 2.77000964e-01\\n-3.75241578e-01 -2.86158502e-01 -1.22354768e-01 3.33290994e-01\\n-6.97447211e-02 1.83303863e-01 -1.58308953e-01 -1.37260929e-01\\n2.63699710e-01 2.77357344e-02 -3.39717358e-01 2.02308893e-01\\n-2.96909939e-02 -2.17422619e-01 -1.29076079e-01 2.99116015e-01\\n-6.66926205e-02 1.82318285e-01 4.62794714e-02 -2.12344795e-01\\n5.74912190e-01 2.41858289e-01 1.70037657e-01 -1.97441459e-01\\n2.78091490e-01 -1.38952091e-01 1.97771743e-01 1.68162733e-01\\n-4.47202563e-01 3.58110517e-01 -2.70188749e-02 -1.20963506e-01\\n3.21922004e-02 4.65257652e-02 3.64551544e-01 -2.88045257e-01\\n-1.36512473e-01 -1.86311737e-01 -4.35718894e-01 -3.81808281e-01\\n-3.49389642e-01 6.07088022e-02 4.51844007e-01 -4.85026926e-01\\n-1.72143415e-01 3.10714513e-01 -5.18145978e-01 -4.84856628e-02\\n2.49425620e-01 1.81919754e-01 3.79915908e-02 6.04638457e-02\\n-2.00761572e-01 -4.50940937e-01 -1.57542173e-02 -4.77796227e-01\\n-4.62690860e-01 -3.75188515e-02 -1.98969677e-01 2.15705454e-01\\n1.56467631e-01 3.22556682e-02 -2.79754698e-01 1.08182736e-01\\n-2.85111755e-01 -7.95506090e-02 2.18980774e-01 1.21323161e-01\\n2.29443252e-01 -8.27507153e-02 -2.99721420e-01 4.16381329e-01\\n-2.42759228e-01 4.72286731e-01 1.60819158e-01 -9.65762973e-01\\n5.03766239e-01 3.54619890e-01 -9.23598260e-02 -4.15575266e-01\\n3.99658710e-01 -3.86761934e-01 6.54959073e-03 1.32641092e-01\\n-1.80166796e-01 -1.27960622e-01 2.70352811e-01 -1.37637869e-01\\n-3.00756752e-01 6.20889783e-01 6.12451807e-02 5.98857105e-02\\n2.82809943e-01 -2.96006173e-01 -1.22463308e-01 -2.23276559e-02\\n-1.81970611e-01 -1.69509575e-01 -3.69570255e-01 6.19682334e-02\\n-3.42978500e-02 -5.07594585e-01 -1.10389993e-01 -4.51459557e-01\\n-2.15409577e-01 -4.32245880e-01 -3.15122962e-01 3.96643937e-01\\n1.78320244e-01 1.69585124e-01 -5.75976186e-02 2.29517389e-02\\n5.64133637e-02 -6.01545811e-01 -5.92943281e-02 9.95516777e-02\\n5.36570370e-01 3.12174022e-01 1.49743363e-01 -5.19328713e-02\\n5.85446693e-02 4.24179256e-01 -4.10055757e-01 -4.16186363e-01\\n5.80493994e-02 6.67531937e-02 -5.05778715e-02 -1.37657106e-01\\n3.67322564e-02 4.07223225e-01 -9.12595987e-02 -5.84881455e-02\\n6.90397769e-02 -9.43080522e-03 4.04411435e-01 -4.07714956e-02\\n-4.92810935e-01 -1.52921259e-01 1.26469761e-01 3.12538505e-01\\n-4.70667183e-01 -2.55785763e-01 5.98254323e-01 1.56384274e-01\\n1.27875045e-01 1.76901981e-01 2.66465276e-01 -6.47841906e-03\\n-1.35838285e-01 -2.81421691e-01 1.60790145e-01 1.31608188e-01\\n2.31040552e-01 -8.52628145e-03 -6.20181672e-02 -5.85524201e-01\\n-3.70113158e+00 -2.51984686e-01 8.89697149e-02 -2.77445555e-01\\n2.60198653e-01 -1.02311663e-01 6.07802011e-02 -3.82332094e-02\\n-2.93050438e-01 4.31230739e-02 -1.49761111e-01 -1.21783707e-02\\n6.32525012e-02 2.42509171e-01 9.91077572e-02 2.47032002e-01\\n4.67309877e-02 -2.48409256e-01 -1.21116944e-01 3.34995806e-01\\n-4.50780727e-02 -6.00216031e-01 4.51544560e-02 -5.61334714e-02\\n1.80138692e-01 1.59525238e-02 -4.61239755e-01 -1.78399496e-02\\n-2.14113459e-01 -2.14168325e-01 6.56677336e-02 -1.65703610e-01\\n-2.31530160e-01 2.34227762e-01 1.05867840e-01 -1.26683772e-01\\n3.21691111e-02 -2.96748310e-01 -8.99488628e-02 -4.68506962e-01\\n3.82019505e-02 -6.71069443e-01 1.07974976e-01 -2.00054683e-02\\n6.35053694e-01 -2.86469728e-01 2.69741893e-01 1.92111716e-01\\n8.27437490e-02 1.60845324e-01 -3.60069573e-02 3.86648215e-02\\n-2.90679932e-01 -3.85683328e-01 -6.86726570e-02 -2.05575436e-01\\n5.71431994e-01 4.31260288e-01 -1.08839229e-01 4.06804495e-02\\n6.37467345e-03 -3.44525546e-01 -4.40577805e-01 -4.45882976e-01\\n-8.42862278e-02 -9.14022252e-02 -8.13800454e-01 -4.74294096e-01\\n-2.68940717e-01 -1.48234993e-01 -1.28886506e-01 5.88021696e-01\\n-3.36590856e-01 -4.70666111e-01 1.06037050e-01 -6.41472995e-01\\n1.26385778e-01 -2.37537235e-01 7.38215894e-02 -1.04235351e-01\\n-3.80944133e-01 -4.79002744e-01 6.40825406e-02 -4.39823717e-02\\n-2.72668809e-01 -1.18845105e-01 6.83428943e-02 -2.19546616e-01\\n-2.20966116e-01 -4.05708969e-01 4.55479264e-01 1.15424946e-01\\n3.27192366e-01 1.06992520e-01 3.75888646e-01 8.31184089e-02\\n3.03383142e-01 2.87124384e-02 -7.45109171e-02 -4.72156525e-01\\n1.06437348e-01 -2.58443691e-02 5.74764550e-01 -2.09330127e-01\\n1.09720811e-01 1.32642224e-01 -2.12025031e-01 -1.21298052e-01\\n5.17159402e-01 6.61693886e-02 -8.82802997e-03 -3.74106169e-02\\n1.92265019e-01 -3.13756913e-01 -2.97242135e-01 1.65576711e-01\\n3.50796245e-02 6.20154679e-01 -1.34117911e-02 -5.43118894e-01\\n-2.32970253e-01 4.05798197e-01 -6.64498657e-02 -4.89172935e-02\\n-1.87973633e-01 1.51550531e-01 -1.24195293e-01 2.86188751e-01\\n9.38543156e-02 -1.92578077e-01 -2.26138502e-01 -6.04981296e-02\\n-7.92971998e-02 1.13856964e-01 2.24900648e-01 8.43710601e-02\\n-5.40643297e-02 -2.70837903e-01 -3.06187540e-01 5.04176989e-02\\n1.52605936e-01 3.18969369e-01 3.17629129e-01 -2.40293309e-01\\n3.96811590e-03 2.16498151e-01 -2.24738106e-01 1.30279571e-01\\n-2.83881515e-01 1.31138504e-01 -5.15692294e-01 -2.16513962e-01\\n-2.12792933e-01 -3.50174308e-01 1.30371407e-01 3.99776071e-01\\n1.34333879e-01 2.59067137e-02 6.76409677e-02 -5.27197003e-01\\n3.88945192e-01 4.59677354e-02 1.78687111e-01 1.38601720e-01\\n8.15463513e-02 5.55783868e-01 2.50882991e-02 -7.67547265e-02\\n-2.18043894e-01 -6.34093508e-02 -1.58341452e-01 -3.57022315e-01\\n4.06319499e-02 -4.87373888e-01 -7.38439560e-02 4.09478247e-01\\n1.90415651e-01 -1.46520838e-01 -2.23334417e-01 3.05765003e-01\\n1.11737907e-01 -2.67932773e-01 -1.79683760e-01 3.03861815e-02\\n1.99237436e-01 5.96295185e-02 2.56726652e-01 -3.85253757e-01\\n1.31208627e-02 1.40444012e-02 -5.08527905e-02 4.66241926e-01\\n2.24338964e-01 1.47082046e-01 -1.43962145e-01 -1.57045066e-01\\n4.77182627e-01 1.84705332e-02 -9.30798501e-02 -2.64016658e-01\\n-1.00857541e-02 -2.50985861e-01 -3.77243191e-01 6.01146184e-02\\n-4.78925481e-02 -1.88619435e-01 1.09852925e-01 7.62227774e-02\\n5.27940057e-02 5.57731092e-03 -4.85820174e-01 -3.12235385e-01\\n-3.59301388e-01 -1.00529753e-01 -1.36577338e-03 -5.25687814e-01\\n4.13575619e-02 -8.91883206e-03 -5.07733226e-01 2.76423246e-01\\n-2.41027191e-01 -5.24934940e-02 9.21380073e-02 1.31909445e-01\\n-4.07489508e-01 -1.39911085e-01 7.72915184e-02 2.79280454e-01\\n-2.43344173e-01 -3.35649401e-01 7.66556114e-02 -9.07349408e-01\\n1.65248960e-01 7.86746815e-02 -1.54689655e-01 -4.51522134e-03\\n3.32886465e-02 -6.37389064e-01 2.27406770e-01 -4.14035797e-01\\n-2.27551032e-02 -1.70823522e-02 -1.08805656e-01 -3.34419698e-01\\n7.28792846e-02 -1.13654166e-01 -3.44209671e-01 3.36476058e-01\\n-5.91147959e-01 4.20294613e-01 -1.96601711e-02 7.53268525e-02\\n1.01859510e-01 -2.83889651e-01 1.34464532e-01 -2.93191642e-01\\n-4.34156418e-01 -2.74757117e-01 -3.30058217e-01 -2.42222399e-01\\n-7.45021254e-02 -1.83019176e-01 -1.75569952e-01 9.54451039e-02\\n2.63791978e-01 2.03102022e-01 -1.19891115e-01 -2.85839736e-01\\n4.73727062e-02 -3.80772114e-01 3.16929668e-02 -2.94049561e-01\\n-2.62067467e-02 -1.59107268e-01 3.59033108e-01 -9.73001644e-02\\n8.50464255e-02 -3.17278206e-01 5.79848766e-01 -1.44362837e-01\\n-2.61874735e-01 -8.18440691e-02 6.61831051e-02 6.28523976e-02\\n1.51452392e-01 -5.29898882e-01 6.19978011e-02 1.90829247e-01\\n1.18266791e-01 7.45624304e-02 2.36807913e-01 -2.52090544e-02\\n-4.61197682e-02 1.92570850e-01 -5.13117075e-01 1.61303461e-01\\n7.27273285e-01 8.61487724e-03 1.43460959e-01 5.99819347e-02\\n2.34811217e-01 4.41809118e-01 5.37817299e-01 1.14367446e-02\\n-1.06100291e-01 3.54372948e-01 9.71281976e-02 -4.70340729e-01\\n-1.19546786e-01 -1.86250240e-01 -1.66363448e-01 -2.35884383e-01\\n6.05036557e-01 3.23315740e-01 -3.46475214e-01 -2.09388778e-01\\n-1.29986510e-01 -2.16067329e-01 2.80914485e-01 -9.00814906e-02\\n-2.25938167e-02 -1.91903934e-01 6.27059460e-01 -9.15437192e-03\\n3.26355100e-01 5.00774562e-01 -1.89459696e-01 -4.07814324e-01\\n-1.24113314e-01 2.44887769e-01 1.50570288e-01 4.04424936e-01\\n-1.85940653e-01 1.82985350e-01 -8.03328827e-02 1.63539797e-01\\n-1.85737357e-01 2.30265483e-01 2.68321514e-01 1.39760420e-01\\n1.48810104e-01 -1.88481789e-02 5.06520212e-01 5.69043636e-01\\n1.99359730e-01 5.60050249e-01 3.68668616e-01 6.91939890e-02\\n3.06082189e-01 6.11532032e-01 4.19113785e-01 7.33147934e-02\\n4.04635407e-02 1.13197856e-01 5.27485088e-02 -1.57012925e-01\\n3.86636257e-01 4.70276058e-01 2.01675072e-01 8.95031869e-01\\n3.31619978e-01 2.80794770e-01 7.94444203e-01 -6.61645651e-01\\n-3.79828066e-01 6.70781583e-02 5.56307435e-01 -1.60358354e-01\\n-7.74006546e-02 2.85940558e-01 -3.29639435e-01 2.08961219e-01\\n-4.82945710e-01 -3.89014110e-02 2.12863251e-03 4.44350429e-02\\n2.94979438e-02 -4.39057462e-02 -3.82988676e-02 1.17014818e-01\\n-1.26298741e-01 -1.54990897e-01 -3.06739599e-01 -8.73981565e-02\\n-3.03757757e-01 3.11528053e-02 -7.63050914e-02 2.13005207e-03\\n-1.57644987e-01 -4.23322499e-01 -1.51422098e-01 5.96675389e-02\\n4.77766812e-01 -9.80774760e-02 -2.10545197e-01 -1.14945099e-01\\n1.64263234e-01 2.98545927e-01 6.28417015e-01 9.62653477e-03\\n6.76873550e-02 -1.34440809e-01 -2.08351806e-01 5.89817576e-02\\n5.05060032e-02 1.06998451e-01 7.40385726e-02 4.06577766e-01\\n-2.35467598e-01 -3.30306254e-02 1.22510806e-01 3.27744842e-01\\n-2.86493242e-01 -8.09740350e-02 -7.85071626e-02 3.00634235e-01\\n4.10390571e-02 1.76228449e-01 -2.01537192e-01 9.32226703e-02\\n-2.30414748e-01 -4.65216011e-01 5.00758052e-01 -2.41432607e-01\\n-1.04484469e-01 1.92679927e-01 1.66181758e-01 2.94972479e-01\\n-2.20325768e-01 2.30741594e-02 -2.72992738e-02 3.20985734e-01\\n-5.54557368e-02 4.34760779e-01 -1.58151835e-01 -1.84942216e-01\\n-3.65397036e-01 2.81980008e-01 -6.33268803e-02 1.26652181e-01\\n-5.41870184e-02 3.28210950e-01 -8.30788836e-02 1.27722129e-01\\n1.24899797e-01 -1.63539331e-02 -3.22481990e-01 -2.08022207e-01\\n-3.67628068e-01 -2.10688099e-01 1.89979784e-02 1.08674038e-02\\n2.92739183e-01 -3.17436904e-01 -4.19662893e-02 -7.36621246e-02\\n-1.59354359e-01 -3.50275606e-01 -1.15581147e-01 1.88653469e-02]]',\n", + " \"Job Informationen Your Responsibilities: - You will design, implement, test and deliver new features within a cross-functional agile team - You love to work together with other engineers and share your expert knowledge with the engineering teams - You challenge the status quo and continuously improve architecture, code and tools to ensure high quality software delivery - You own your solution and will be responsible from development to delivery to operations in a DevOps environment - You like to work with developers, product owners, designers and other stakeholders on product discovery Your Qualification: - Proficiency in Java/Spring/OOP/Maven and Java based Web Frameworks - Expertise with frontend technologies such as HTML, CSS and JavaScript Frameworks - Familiarity with Microservice architectures - Hands on experience designing and implementing RESTfull backend Services - Good knowledge of relational and NoSQL databases - Practice in Clean Code, TDD, Pair Programming, continuous integration and continuous delivery - Ability to understand the company's KPIs and the user needs and use them as innovation driver - Experience with agile methodologies and pronounced agile mindset - Plus: Knowledge of microservices on AWS - A degree in Computer Science or equivalent practical experience - Fluency in English and German Benötigte Skills Englisch NoSQL HTML5 CSS3 JavaScript JAVA Spring DevOps Test\",\n", + " '[\"Innovation\", \"Operations\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"NoSQL\", \"Agility\", \"Continuous Delivery\", \"Cascading Style Sheets (CSS)\", \"Computer Science\", \"Web Frameworks\", \"Continuous Integration\", \"Software Quality Management\", \"HTML5\", \"HyperText Markup Language (HTML)\", \"Microservices\", \"Cross-Functional Coordination\", \"Apache Maven\", \"Agile Methodology\", \"JavaScript (Programming Language)\", \"JavaScript Frameworks\", \"Experience Design\", \"Java (Programming Language)\", \"Custom Backend\", \"Pair Programming\", \"Object-Oriented Programming (OOP)\", \"DevOps\"]',\n", + " \"['English', 'Letzeburgesch', 'Herero', 'Malagasy']\"],\n", + " ['54',\n", + " 'devops engineer, genedata biologics',\n", + " 'Basel',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.genedata.com',\n", + " '[[-1.69523150e-01 3.19825441e-01 4.08377171e-01 -1.59712415e-02\\n5.68628192e-01 -9.49690565e-02 -7.24607557e-02 3.66208315e-01\\n-4.60393503e-02 -4.28351879e-01 -3.31419744e-02 -2.50325799e-01\\n-7.22204745e-02 1.58022121e-01 1.21643066e-01 4.33333069e-01\\n3.59716475e-01 1.38958231e-01 -1.41149908e-01 3.54331344e-01\\n1.16978735e-02 -1.60774738e-01 5.42537011e-02 8.68497312e-01\\n2.75335133e-01 1.45401573e-02 -1.62993923e-01 -7.04530030e-02\\n-2.31061846e-01 -1.64121673e-01 4.84606564e-01 9.13866237e-03\\n-1.27304882e-01 -3.87431860e-01 1.09087497e-01 7.55339116e-02\\n-2.90875196e-01 -2.20784545e-02 -1.77963927e-01 1.17137887e-01\\n-5.03516197e-01 -2.82112539e-01 3.95090133e-02 -2.49374267e-02\\n-2.76795298e-01 -2.60850579e-01 1.13234401e-01 -4.90063578e-02\\n2.46764243e-01 1.06271856e-01 -6.41632140e-01 9.54470411e-02\\n-3.92902613e-01 -2.03401476e-01 3.48890334e-01 6.76024795e-01\\n4.53432351e-02 -4.12259459e-01 -5.74603975e-01 -3.81613165e-01\\n-2.14871932e-02 -1.28638238e-01 -1.21168774e-02 -3.35526526e-01\\n2.85394818e-01 5.93488924e-02 9.51724499e-02 2.60312736e-01\\n-8.69517267e-01 -7.31318593e-02 -2.48408496e-01 -1.49784712e-02\\n-3.99319410e-01 1.59207620e-02 -3.48359823e-01 -1.14956886e-01\\n-2.00684562e-01 4.74097431e-01 4.55482230e-02 1.49114236e-01\\n-2.45470256e-01 3.21167827e-01 -2.38628417e-01 4.13461566e-01\\n2.34357372e-01 1.85906395e-01 2.36392260e-01 4.26935554e-01\\n-4.62065816e-01 4.72172439e-01 2.21478701e-01 -2.21754551e-01\\n2.32138008e-01 7.60732293e-02 3.30681264e-01 6.98821023e-02\\n1.65382236e-01 1.01575285e-01 -2.56095648e-01 2.76887953e-01\\n2.30976701e-01 -2.64768928e-01 5.61213121e-03 -1.44538015e-01\\n5.45544215e-02 -1.10821761e-02 2.10196767e-02 2.20088348e-01\\n-3.16050082e-01 3.71842891e-01 1.59433722e-01 -2.42536128e-01\\n-1.86201334e-01 -5.27682900e-01 -8.50154459e-02 1.02491066e-01\\n-1.05620902e-02 8.97506252e-05 2.21573114e-01 1.11803263e-02\\n3.18246007e-01 9.34616178e-02 6.69263303e-02 8.76152396e-01\\n-1.71973258e-01 -1.71828438e-02 -2.84300238e-01 2.41001695e-01\\n1.28416359e-01 -2.50951648e-01 1.52597442e-01 1.32525474e-01\\n-1.71166211e-02 1.18869869e-02 -2.56879926e-01 3.75991374e-01\\n1.03284232e-02 -1.94217950e-01 -2.47745812e-01 3.03407133e-01\\n-8.46239477e-02 -4.44703221e-01 5.85891724e-01 1.35878790e-02\\n1.47686258e-01 -1.38425946e-01 8.04063305e-02 -2.54765227e-02\\n-5.11916205e-02 1.79073185e-01 6.37496486e-02 1.63923562e-01\\n-3.39504004e-01 -3.48111272e-01 -1.78644717e-01 1.23850949e-01\\n-2.72248209e-01 1.78822011e-01 -3.27588432e-02 -1.18826777e-01\\n2.56015062e-01 1.27487481e-01 -3.06014478e-01 1.57511771e-01\\n-1.56176478e-01 -2.81034745e-02 -7.35240337e-03 3.73016775e-01\\n-2.00857997e-01 1.60982519e-01 -4.83869947e-02 -1.05689779e-01\\n5.22619963e-01 1.68064788e-01 2.05680311e-01 -6.08065166e-03\\n3.26771230e-01 -8.01899731e-02 2.63964891e-01 6.32661358e-02\\n-6.86229527e-01 3.83514404e-01 2.94585060e-03 -1.77081466e-01\\n1.46837503e-01 -9.34691131e-02 3.69692981e-01 -3.09130073e-01\\n9.42510664e-02 -1.38732284e-01 -4.37074184e-01 -4.01054084e-01\\n-1.81613237e-01 -3.19040716e-02 3.44761431e-01 -4.89618987e-01\\n-1.55983686e-01 1.90277025e-01 -5.17658710e-01 -1.88104272e-01\\n1.76180184e-01 2.99023360e-01 1.38880163e-01 3.95734422e-02\\n-2.26868361e-01 -6.40342236e-01 5.20347580e-02 -5.40531456e-01\\n-2.17988387e-01 5.90698645e-02 -4.13146973e-01 1.92284137e-01\\n-2.23988779e-02 7.04785287e-02 -8.37423801e-02 7.38143474e-02\\n-3.72117341e-01 -1.39347106e-01 7.83644468e-02 3.05564664e-02\\n3.03632915e-01 6.64602220e-02 -3.07497501e-01 4.77437377e-01\\n-1.93293378e-01 5.23281038e-01 2.01012239e-01 -8.90274763e-01\\n5.66449642e-01 4.49444413e-01 -4.81768185e-03 -4.37739789e-01\\n5.28448462e-01 -4.74673837e-01 -1.03414550e-01 8.89598355e-02\\n-3.82881224e-01 -2.53200322e-01 1.85828611e-01 -1.85699940e-01\\n-2.41217613e-01 5.36592484e-01 -5.31897619e-02 1.22261703e-01\\n3.63249660e-01 -3.70205611e-01 -1.10581309e-01 1.94475800e-03\\n-2.10986547e-02 -2.90621281e-01 -5.64029157e-01 -4.57195640e-02\\n-7.24885762e-02 -4.23884928e-01 -1.44336700e-01 -4.21934664e-01\\n-1.26473099e-01 -2.77486354e-01 -2.64028639e-01 1.71844274e-01\\n2.14582264e-01 3.01922504e-02 -1.10108688e-01 1.08907156e-01\\n1.01692555e-02 -7.27389514e-01 9.57744867e-02 1.35612622e-01\\n4.09266233e-01 2.26215854e-01 1.89594090e-01 -1.01695418e-01\\n1.44564763e-01 6.04518414e-01 -2.81608939e-01 -3.42316628e-01\\n1.03332669e-01 1.82519436e-01 1.06046526e-02 -9.40589979e-02\\n1.84142053e-01 2.90192544e-01 -3.21844876e-01 3.32640037e-02\\n-4.79082018e-02 -8.91682953e-02 3.91070455e-01 -1.10669136e-01\\n-3.82619083e-01 -1.83560997e-01 -1.18094712e-01 5.58090247e-02\\n-6.13374770e-01 -2.07464233e-01 4.34046239e-01 1.14938281e-01\\n1.53022677e-01 2.36911938e-01 1.66698262e-01 2.57026441e-02\\n-3.07152778e-01 -3.37706268e-01 3.22429717e-01 1.36915356e-01\\n1.10930718e-01 2.86263637e-02 -5.16535752e-02 -6.58324599e-01\\n-2.94787788e+00 -1.13596104e-01 1.55140787e-01 -2.68149793e-01\\n4.23849642e-01 -1.01496845e-01 1.56961530e-01 3.38395797e-02\\n-2.26592660e-01 2.16750465e-02 -6.64617643e-02 -1.17585056e-01\\n8.07621777e-02 2.02082783e-01 3.52854803e-02 1.51310563e-01\\n1.45469487e-01 -2.87697434e-01 5.91152571e-02 3.17447037e-01\\n-1.35505766e-01 -7.96962500e-01 1.88196644e-01 -5.28429709e-02\\n1.84746236e-01 2.01750100e-01 -5.27199149e-01 -8.77359882e-02\\n-1.97188050e-01 -1.70902252e-01 1.84279121e-02 -3.15267026e-01\\n-1.75675586e-01 1.82019949e-01 2.47381270e-01 -1.45268992e-01\\n-3.07186581e-02 -3.58940303e-01 -1.28393680e-01 -6.49040103e-01\\n2.59566069e-01 -7.25894213e-01 2.77758017e-02 -1.91367775e-01\\n6.65437818e-01 -2.75763273e-01 2.77564730e-02 9.88833010e-02\\n2.61541367e-01 1.76414967e-01 1.13582619e-01 2.15509683e-02\\n-2.31556833e-01 -3.33618730e-01 -1.23900972e-01 -3.02786499e-01\\n5.92054844e-01 5.12880743e-01 -2.06457883e-01 8.91586617e-02\\n7.66231120e-02 -3.57572079e-01 -4.83876497e-01 -2.51234233e-01\\n-1.15615904e-01 -1.29324615e-01 -6.97894454e-01 -4.43426609e-01\\n-2.24776328e-01 -1.03771590e-01 -1.23413235e-01 7.26536989e-01\\n-3.59957755e-01 -3.65983427e-01 -5.80110252e-02 -6.78676486e-01\\n3.52647483e-01 -2.47136682e-01 5.68761304e-02 -3.23621809e-01\\n-2.39675656e-01 -3.83464158e-01 1.98912114e-01 -6.74836263e-02\\n-8.32306668e-02 -2.07519516e-01 -4.63842601e-02 -1.47503972e-01\\n-2.30184972e-01 -5.09384632e-01 5.01326859e-01 1.71006441e-01\\n4.67567086e-01 1.60499007e-01 3.92027318e-01 -1.00192137e-01\\n2.98035622e-01 8.46222192e-02 -9.56611037e-02 -3.56285751e-01\\n1.73924029e-01 1.13965817e-01 4.96148139e-01 -1.86498225e-01\\n2.65002064e-03 1.29890129e-01 -2.96549976e-01 -1.68262899e-01\\n3.06311429e-01 7.31500089e-02 -1.15258366e-01 -8.87201279e-02\\n3.74505043e-01 -4.39236015e-01 -1.52918696e-01 1.48669571e-01\\n1.28851488e-01 6.88226461e-01 -2.10308153e-02 -4.55970675e-01\\n-9.83574465e-02 5.23547292e-01 3.82679291e-02 4.81955670e-02\\n-1.07181355e-01 8.68616998e-02 -1.44232571e-01 3.35872412e-01\\n4.05211858e-02 -2.31066555e-01 -3.20666611e-01 -1.04577422e-01\\n-7.07095563e-02 3.99901092e-01 6.57235086e-02 1.71039283e-01\\n1.94352940e-02 -3.90448689e-01 -1.85824871e-01 2.68064499e-01\\n1.37210995e-01 5.10089874e-01 1.44069463e-01 -2.07786769e-01\\n1.27427187e-02 4.02851552e-01 -2.08572417e-01 3.29023868e-01\\n-1.65273160e-01 1.23706207e-01 -5.59564531e-01 -2.06682444e-01\\n-3.34111184e-01 -3.55124176e-01 1.57965004e-01 3.57743979e-01\\n1.94206730e-01 -2.51299646e-02 4.80717160e-02 -3.92621815e-01\\n2.09711015e-01 2.00897247e-01 9.55500379e-02 3.12888958e-02\\n-5.29631451e-02 6.57721221e-01 3.23811807e-02 -1.92982942e-01\\n-1.16225630e-01 5.25392368e-02 -1.84131548e-01 -1.14621937e-01\\n2.23191649e-01 -5.27357459e-01 -1.49204820e-01 4.74297851e-01\\n9.38007459e-02 -1.14794165e-01 -1.49673715e-01 3.27015877e-01\\n6.37401342e-02 -1.77546769e-01 -3.96411419e-01 2.68395469e-02\\n3.33310187e-01 9.21128988e-02 3.22574437e-01 -5.36340415e-01\\n-2.91029643e-02 4.87420112e-02 7.38196075e-02 4.60687846e-01\\n2.19637901e-02 -2.15530805e-02 -1.32633284e-01 -1.55590519e-01\\n4.62777555e-01 -3.72105464e-03 -1.00493520e-01 -4.53177616e-02\\n7.67569989e-02 -1.24546908e-01 -4.76082414e-01 5.17511554e-02\\n-4.20186371e-02 -1.91390350e-01 -5.41892536e-02 1.72158703e-01\\n1.55116335e-01 8.76512975e-02 -5.55608451e-01 -1.64522350e-01\\n-1.74549773e-01 1.38918832e-01 2.39093155e-02 -4.96697724e-01\\n7.27561209e-03 -2.43933462e-02 -6.17063820e-01 2.54291773e-01\\n-2.33470827e-01 -5.64701557e-02 2.41642654e-01 4.68929261e-02\\n-2.94498593e-01 -9.77524146e-02 1.47781312e-01 3.06969166e-01\\n-2.67386794e-01 -3.80507767e-01 -5.44847921e-02 -9.69862342e-01\\n1.22737214e-01 -7.90049955e-02 -1.99114531e-01 1.92134291e-01\\n6.50363117e-02 -7.41300941e-01 1.89023435e-01 -3.76494527e-01\\n-1.97161078e-01 2.91096698e-02 -3.17306697e-01 -3.17908257e-01\\n1.66587859e-01 -1.33196592e-01 -2.88195312e-01 3.48298669e-01\\n-3.39055449e-01 3.33755374e-01 -1.27165705e-01 4.14873064e-02\\n1.73163205e-01 -2.78643727e-01 1.99293107e-01 -3.32616031e-01\\n-4.33565497e-01 -2.82114834e-01 -3.86240929e-01 -4.26141918e-01\\n-6.16344586e-02 -3.24924529e-01 -7.15945959e-02 -1.05166808e-02\\n3.72518063e-01 1.52537031e-02 -1.75773308e-01 -2.52748489e-01\\n1.44567475e-01 -5.36238730e-01 1.26344442e-01 -6.13016635e-02\\n-4.55752611e-02 -8.04835558e-02 3.27935874e-01 9.76392329e-02\\n2.84355104e-01 -3.07380259e-01 4.32286590e-01 -2.37394571e-01\\n-3.94829959e-01 -2.45231315e-01 1.72596481e-02 3.73986922e-02\\n3.19693595e-01 -5.05958796e-01 -6.56296983e-02 3.21973532e-01\\n2.77238131e-01 2.13909764e-02 1.15014136e-01 -2.02715784e-01\\n4.80063893e-02 1.85811490e-01 -5.17018437e-01 1.25343591e-01\\n8.29329133e-01 1.13384418e-01 9.07536075e-02 2.62059003e-01\\n9.46845561e-02 3.20416510e-01 5.42597294e-01 -5.31152114e-02\\n-1.66910067e-01 3.73732090e-01 1.42731696e-01 -4.30932164e-01\\n-2.80078888e-01 3.38966586e-02 -2.20240861e-01 -5.17871976e-01\\n6.49480700e-01 3.91274929e-01 -5.03449917e-01 -2.61304379e-01\\n-1.82487726e-01 -1.08475082e-01 2.88784266e-01 -1.67719841e-01\\n-4.73861173e-02 -1.14523217e-01 3.66246521e-01 -2.38902103e-02\\n2.72657275e-01 6.03528917e-01 -5.82956448e-02 -3.80357176e-01\\n-1.36785328e-01 1.49857789e-01 4.37492058e-02 3.66552532e-01\\n-1.14739865e-01 1.75508738e-01 4.97278199e-02 2.25173786e-01\\n-2.79858649e-01 1.22312024e-01 5.75552583e-02 6.91215694e-02\\n1.65868253e-01 1.04539692e-01 5.77757418e-01 4.72931981e-01\\n2.81918913e-01 4.73100662e-01 2.80699372e-01 5.18417880e-02\\n4.94774133e-01 5.43698668e-01 4.09346581e-01 1.77940018e-02\\n-1.52973197e-02 1.87120229e-01 1.25025660e-01 -2.97119953e-02\\n3.76255244e-01 4.01301026e-01 1.44196153e-01 9.29425299e-01\\n2.27006346e-01 3.47128659e-01 7.18745470e-01 -5.71046770e-01\\n-3.85482609e-01 3.09947133e-02 6.50817633e-01 -5.86200237e-01\\n6.00607879e-02 7.66484439e-02 -2.67559409e-01 1.98509902e-01\\n-5.09359181e-01 -2.18710139e-01 6.67666271e-02 1.15288764e-01\\n-2.33700965e-02 -8.68032649e-02 -1.47720233e-01 1.34418473e-01\\n-1.29581600e-01 -2.12148011e-01 -4.32810158e-01 -1.93697363e-01\\n-2.10570648e-01 6.46115690e-02 -6.80867583e-02 -2.24780500e-01\\n3.40802670e-02 -3.48901033e-01 9.93169993e-02 1.37158064e-02\\n4.18153763e-01 -8.58591422e-02 -3.14194709e-03 -3.03081013e-02\\n3.09955537e-01 2.11959928e-01 6.69453025e-01 3.56251970e-02\\n1.81093216e-01 -2.59902269e-01 -2.53749311e-01 2.10558414e-01\\n1.00429058e-01 7.98162669e-02 4.53711972e-02 2.86670268e-01\\n-2.27514058e-01 -1.34462893e-01 8.05089548e-02 2.75910228e-01\\n-3.54013383e-01 -6.96183890e-02 -1.14449874e-01 7.83801526e-02\\n8.61885250e-02 1.94722205e-01 -2.19921917e-01 7.18716383e-02\\n-1.76585138e-01 -4.37105119e-01 4.08015549e-01 -2.16989905e-01\\n-1.57977670e-01 -3.21622491e-02 4.04590786e-01 2.10182548e-01\\n-3.23165059e-01 5.33735007e-02 -9.20294821e-02 2.10100710e-01\\n4.23870832e-02 2.55110741e-01 -2.21111506e-01 -3.59550834e-01\\n-3.04808259e-01 2.57264793e-01 -3.44090760e-02 5.70381880e-02\\n-3.38903069e-02 4.98192042e-01 4.76068631e-02 -3.05652507e-02\\n5.36664009e-01 -1.87651306e-01 -3.24882090e-01 -3.15354407e-01\\n-1.81762889e-01 -1.97047099e-01 -1.28536746e-01 -4.99667674e-02\\n2.14765519e-01 -3.67096156e-01 -1.18522085e-01 -1.96574420e-01\\n4.29852679e-03 -3.50048751e-01 -3.63499187e-02 -9.89696681e-02]]',\n", + " 'The Position We are looking for a qualified DevOps Engineer who is managing the deployment and customization of our successful Genedata Biopharma platform. Thousands of scientists across the globe work with our highly innovative platform in order to develop new, groundbreaking treatments for the most severe diseases. As part of a professional and dedicated engineering team, you will enable these scientists to fulfill their mission. Genedata’s Biopharma platform represents the very backbone of the data capturing and analysis workflows of the most important biopharma and biotech companies. It is installed either on premises or hosted in the cloud and constantly interoperates with numerous instruments and customer IT systems. As DevOps Engineer, you ensure the smooth and continuous running of this central piece of infrastructure and you configure the system to adapt it to customer specific needs. The focus of your responsibilities will be on our enterprise platforms Genedata Biologics® and Genedata Bioprocess®. This full-time position is based at our head offices in Basel, Switzerland. A part time employment (80-100%) is also an option. Key Responsibilities Manage the deployment of products, upgrades and customizations Develop customer specific configurations in SQL Use web services and scripts to integrate with customer IT systems Monitor, analyze, and tune the performance of installations Implement schedules for system backups and archive operations Develop automatic packaging and deployment procedures Administer Biopharma Platform installations in the cloud Consult and support customers with the migration of legacy data Document and communicate your work within the team and to other stakeholders Your Profile BSc or MSc in computer science, or related fields, or comparable on-the-job experience Good understanding of Linux systems Fluency in shell scripting and / or other scripting languages Experience with SQL and relational database systems Oracle DBA experience is an advantage Knowledge of cloud environments such as AWS or Azure is a plus Experience with web application servers, like Apache and Tomcat, is desirable Strong interpersonal skills and the motivation to learn continuously Good written and verbal communication and presentation skills in English The Company Genedata is an exceptional company. With over two decades of success in research informatics due to closely-knit teams of scientists, developers and business experts, Genedata has achieved steady and continuous growth since inception. As a private and majority employee-owned organization, we empower each employee to be a contributing voice in the company operations and evolution. Our collective expertise in research informatics, combined with our open and scalable computational solutions, makes us the leading software provider in R&D informatics for biotech, pharmaceuticals, and related life sciences. We are headquartered in Basel, Switzerland and have subsidiaries in Germany, US, UK, Japan and Singapore. About Genedata Biopharma Platform As the market leader in biopharma R&D digitalization, our platform enables biopharma companies to develop the next generation of innovative medicines. It is uniquely designed to digitalize and streamline biopharma discovery, development and manufacturing processes and dramatically improve overall productivity, with the goal of identifying and developing novel therapeutics to address unmet medical needs. The award-winning Genedata Biopharma platform is used across the globe to achieve operational excellence by boosting the efficiency, throughput, and quality of biopharma R&D. It supports the entire end-to-end R&D workflow, from screening, protein engineering and optimization, expression, purification, characterization, analytics and QC, and developability assessment to upstream and downstream process development and drug formulation. The Genedata platform serves as an enterprise IT system that is at the core of complex biopharma discovery and development processes. Our customer base includes large biopharma and biotech companies, technology providers and contract research and manufacturing organizations. Genedata Biologics is a web application with an HTML/JavaScript-based presentation layer, a Java business-logic layer and an Oracle RDBMS-backed persistence layer. It is widely configurable, scalable, and extendable by third-party plug-ins. Are You Interested? If you are interested in this position, please submit your CV and motivation letter. Genedata only accepts CVs and resumes directly from candidates. Personnel recruitment agencies need not respond. Legal authorization to work in the United States on a full-time basis for any employer is required. Genedata is an Equal Opportunity Employer.',\n", + " '[\"Verbal Communication Skills\", \"Adaptability\", \"Professionalism\", \"Management\", \"Scheduling\", \"Communications\", \"Operations\", \"Integration\", \"Presentations\", \"Innovation\", \"Positivity\", \"Persistence\"]',\n", + " '[\"Web Applications\", \"Document Enterprise Platform\", \"MSC Software\", \"Shell Script\", \"Computer Science\", \"Life Sciences\", \"Business Workflow Analysis\", \"Collections\", \"Analytics\", \"Data Capture (SQL)\", \"Downstream Processing\", \"Informatics\", \"Customer Support Analyst\", \"Authorization (Computing)\", \"Streamlines\", \"Clinical Research Informatics\", \"Installation\", \"Bioprocess\", \"Customer Development\", \"Linux\", \"Layering\", \"Contract Research Organization\", \"Instrumentation\", \"Application Servers\", \"Medic\", \"HyperText Markup Language (HTML)\", \"System Monitoring\", \"System Monitor\", \"Web Services\", \"Presentation Layer\", \"Apache Tomcat\", \"Biology\", \"Boosting\", \"Digitization\", \"Equalization\", \"JavaScript (Programming Language)\", \"Scalability\", \"Operational Excellence\", \"Adapter Scripting Language\", \"Archives\", \"Database Systems\", \"Pharmaceuticals\", \"Throughput\", \"Protein Engineering\", \"Process Development\", \"Relational Databases\", \"Language Experience Approach\", \"Scripting\", \"Workflows\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"DevOps\", \"Process Driven Development\", \"Business Logic\", \"Manufacturing Processes\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'bi data scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-3.53228360e-01 2.70658046e-01 3.72768700e-01 2.32876036e-02\\n4.73175436e-01 -3.48142348e-02 4.43848148e-02 1.15612105e-01\\n-1.16222799e-01 -4.17315096e-01 -8.69316757e-02 -2.73754179e-01\\n1.28849840e-03 -3.55053544e-02 9.30351615e-02 5.92164755e-01\\n2.60430247e-01 -7.29921386e-02 -1.43462941e-01 2.80759007e-01\\n1.13043152e-01 3.26854386e-03 -3.74928024e-03 6.28054202e-01\\n5.01266658e-01 -4.86189499e-02 -1.39927864e-01 8.10021942e-04\\n-2.83568472e-01 -2.93907404e-01 4.30700213e-01 1.90417618e-01\\n-2.04507038e-01 -1.39725327e-01 1.74223661e-01 2.21280828e-01\\n-2.68112808e-01 -2.18087304e-02 -4.55917045e-02 1.86636239e-01\\n-3.85784835e-01 -1.55839011e-01 -9.36613530e-02 -2.32908335e-02\\n-3.20058405e-01 -4.34260011e-01 7.72188464e-03 -1.49482802e-01\\n1.44545674e-01 3.55114006e-02 -4.73832309e-01 3.59030306e-01\\n-2.00130537e-01 -9.85864550e-02 1.77193940e-01 7.32493639e-01\\n1.67759985e-01 -4.77290511e-01 -3.17661017e-01 -2.89300948e-01\\n9.07400995e-02 -1.19298771e-01 1.74425706e-01 -2.26449937e-01\\n4.98205721e-01 -6.78268895e-02 -3.81489769e-02 3.00187409e-01\\n-7.68963575e-01 -7.00643808e-02 -5.04122317e-01 2.91034747e-02\\n-5.01514077e-01 7.15237260e-02 -4.92114902e-01 -2.41598397e-01\\n-9.69854221e-02 4.31301624e-01 -7.54776236e-04 6.35031760e-02\\n-1.80004895e-01 1.99867979e-01 -2.94893831e-01 2.20430288e-02\\n3.28274995e-01 2.59656787e-01 3.95150661e-01 2.70732582e-01\\n-6.38971746e-01 3.42817813e-01 3.59557033e-01 -3.76106590e-01\\n2.06228048e-01 9.56357196e-02 3.87821704e-01 1.75026238e-01\\n8.30380395e-02 2.68665910e-01 -9.66925621e-02 1.91437840e-01\\n2.54116654e-01 -1.83228984e-01 8.51040483e-02 -1.88241843e-02\\n-8.70741010e-02 -8.95733014e-02 -5.79835381e-03 2.88229942e-01\\n-3.43010694e-01 4.16385770e-01 8.14998224e-02 -2.59376943e-01\\n-3.81637141e-02 -6.87244773e-01 -1.66088745e-01 -4.76081930e-02\\n1.15614906e-01 3.20919931e-01 2.44868383e-01 3.19793552e-01\\n1.23230316e-01 1.56525541e-02 2.46658728e-01 9.02533233e-01\\n-9.97713581e-02 -1.64314806e-02 -2.10395560e-01 3.40982646e-01\\n1.42285347e-01 -2.10636824e-01 1.73530221e-01 1.20349862e-01\\n-8.79385024e-02 -1.56978935e-01 -3.71599793e-01 2.74278283e-01\\n-1.30815074e-01 -2.65477896e-01 -2.89545596e-01 1.94819599e-01\\n-1.87495843e-01 -5.32740116e-01 5.44590294e-01 -5.73449694e-02\\n1.75886855e-01 -1.19878463e-01 -1.06123216e-01 -8.35998356e-02\\n-7.90378358e-03 3.60378236e-01 1.56662241e-01 1.28044128e-01\\n-2.99494803e-01 -1.87499851e-01 -2.57826865e-01 3.22055310e-01\\n-2.90916920e-01 1.32908911e-01 -1.75493628e-01 -1.21953040e-01\\n2.12183386e-01 1.91341430e-01 -4.55967247e-01 2.18885571e-01\\n-3.78394686e-02 -4.14544851e-01 -9.25633982e-02 3.14621240e-01\\n-1.06092975e-01 1.59478530e-01 3.93269882e-02 -2.10023180e-01\\n6.58689678e-01 1.77641690e-01 2.58259654e-01 -5.77402720e-03\\n2.99216777e-01 -1.64266557e-01 2.54867494e-01 2.27145433e-01\\n-6.34104550e-01 4.94597346e-01 -1.26761124e-01 -2.15432465e-01\\n1.33578300e-01 7.28269517e-02 3.40186566e-01 -3.48915160e-01\\n5.40970527e-02 -1.18215978e-01 -2.79675275e-01 -4.62359458e-01\\n-2.73962826e-01 3.77700776e-02 3.60140741e-01 -4.67349023e-01\\n-1.37247844e-04 2.08999634e-01 -5.79505682e-01 -1.12369411e-01\\n1.40620053e-01 1.06221452e-01 1.42737046e-01 1.49640828e-01\\n-3.07473484e-02 -5.86120248e-01 1.15899861e-01 -5.32399535e-01\\n-5.11916637e-01 1.25192210e-01 -3.36365521e-01 1.50416896e-01\\n1.24839276e-01 -2.12065247e-03 -5.94098158e-02 1.74330920e-02\\n-3.43664169e-01 9.19923410e-02 2.26174876e-01 1.34943873e-01\\n2.85620898e-01 4.26782586e-04 -5.14031053e-01 5.94782293e-01\\n-8.50423574e-02 4.16900337e-01 2.88964182e-01 -8.67767692e-01\\n5.86152196e-01 1.95046276e-01 3.36433575e-03 -2.13917971e-01\\n5.46193063e-01 -4.40207541e-01 -9.72985700e-02 1.34471223e-01\\n-2.14618921e-01 -1.26227528e-01 3.53284240e-01 -2.60725081e-01\\n-2.35744625e-01 6.07929289e-01 2.53834784e-01 9.04533640e-02\\n2.70213723e-01 -1.63830236e-01 -1.53978139e-01 9.26084723e-03\\n-2.45364785e-01 -2.94786930e-01 -4.19255883e-01 2.03323528e-01\\n-4.52609435e-02 -6.03720069e-01 -1.23750344e-01 -4.40782875e-01\\n-1.46846250e-01 -5.26806056e-01 -1.16202109e-01 1.96450397e-01\\n1.34346977e-01 2.13879466e-01 -4.76987697e-02 -9.98176932e-02\\n-7.73174465e-02 -6.28006101e-01 -1.48752034e-01 6.10618070e-02\\n2.97779292e-01 2.08184659e-01 4.93663885e-02 -1.61685050e-01\\n1.02630436e-01 5.51344812e-01 -4.14876670e-01 -3.80076528e-01\\n1.93800062e-01 1.24731466e-01 -7.70380124e-02 -1.92057908e-01\\n3.93449664e-02 3.08688074e-01 -1.55558065e-01 8.78534093e-02\\n1.32499426e-03 -2.24874653e-02 2.43748799e-01 -6.96774796e-02\\n-1.56302974e-01 -2.43592918e-01 -1.29262045e-01 3.52161646e-01\\n-5.56369126e-01 -2.64301002e-01 5.63510239e-01 2.27051988e-01\\n9.67496913e-03 2.09785208e-01 2.58457601e-01 -3.07648852e-02\\n-3.40321511e-01 -1.82721943e-01 2.76718825e-01 1.93721816e-01\\n7.55183920e-02 7.43258968e-02 -2.20464677e-01 -5.67996740e-01\\n-3.22865629e+00 -2.60756671e-01 6.79577067e-02 -2.21046045e-01\\n1.48255363e-01 -1.12439327e-01 2.59291112e-01 7.14767026e-04\\n-4.06779885e-01 -4.62556779e-02 -2.23362058e-01 -2.77923793e-01\\n-6.68968558e-02 3.28433931e-01 1.13421194e-01 1.72604516e-01\\n1.63818523e-01 -3.59675407e-01 -3.41632254e-02 3.86368424e-01\\n-9.93242338e-02 -7.51867235e-01 1.35493904e-01 1.21474370e-01\\n1.52030066e-01 6.80882111e-02 -4.24672902e-01 1.07145958e-01\\n-3.92278373e-01 -3.53824794e-01 1.78911939e-01 -3.06274831e-01\\n-1.72367081e-01 2.88237333e-01 2.45024964e-01 -8.34199637e-02\\n2.41492521e-02 -3.03867221e-01 6.55318797e-02 -4.45800692e-01\\n-2.70029828e-02 -5.56141138e-01 8.39379355e-02 -3.98967825e-02\\n6.77500308e-01 -1.95858553e-01 2.54096955e-01 8.68168399e-02\\n6.62599206e-02 2.14271918e-01 1.82832345e-01 -4.65994664e-02\\n-2.73569524e-01 -3.90054047e-01 -1.02325946e-01 -1.63536936e-01\\n6.92936778e-01 4.17754084e-01 -1.48398563e-01 1.31508522e-02\\n2.11819187e-01 -2.71905661e-01 -4.16272610e-01 -5.36243260e-01\\n-2.54071862e-01 -2.26704907e-02 -6.66085005e-01 -4.29336309e-01\\n-1.85868084e-01 -1.29400954e-01 -1.47370428e-01 6.07124209e-01\\n-2.90617198e-01 -3.93245727e-01 -4.32111360e-02 -4.55879390e-01\\n2.45771781e-01 -2.02962205e-01 6.72194883e-02 -7.86241889e-02\\n-3.40574950e-01 -4.59473073e-01 2.78422803e-01 7.10601406e-03\\n-1.77404940e-01 5.95858833e-03 8.65333378e-02 -2.51872510e-01\\n-5.12572050e-01 -4.32808965e-01 3.62796605e-01 -5.05743660e-02\\n3.10365438e-01 2.58443266e-01 3.72476995e-01 1.07943118e-01\\n4.53540742e-01 -1.56242803e-01 8.21441263e-02 -4.13175642e-01\\n3.95852551e-02 -1.36093237e-02 6.08008921e-01 -2.34309658e-01\\n9.98863652e-02 1.32685602e-01 -1.96180299e-01 -7.82083347e-02\\n4.91394341e-01 -7.70625919e-02 1.17645510e-01 -1.58099815e-01\\n3.70597988e-01 -5.24517119e-01 -1.21796981e-01 1.86487123e-01\\n1.19355015e-01 6.83457375e-01 -7.52740800e-02 -3.20829004e-01\\n-1.83054760e-01 3.36958498e-01 -1.44581884e-01 -1.28140852e-01\\n-1.70624539e-01 1.28681749e-01 -2.20058873e-01 2.75959462e-01\\n-7.07440358e-03 -1.05151728e-01 -3.54495734e-01 -1.22068062e-01\\n-4.47599106e-02 2.49797940e-01 3.32913190e-01 3.78427748e-03\\n-8.40368420e-02 -2.53089964e-01 -4.66842540e-02 1.28166005e-01\\n4.56225365e-01 3.40315908e-01 1.76328421e-01 -4.15773034e-01\\n-3.67604801e-03 1.90446928e-01 -3.33119333e-01 2.76958287e-01\\n-2.60525286e-01 1.75694779e-01 -4.85705703e-01 -2.54875481e-01\\n-1.94325507e-01 -3.37078631e-01 1.75718918e-01 3.11123610e-01\\n9.88812745e-02 -1.48659438e-01 1.01342008e-01 -3.57318461e-01\\n3.01570922e-01 1.45463973e-01 1.81790292e-01 9.54792872e-02\\n-9.44710057e-03 6.25425458e-01 6.30111247e-02 -1.02025285e-01\\n-2.28634644e-02 -5.66679798e-03 -2.93178499e-01 -3.33782166e-01\\n-1.61816310e-02 -3.59228283e-01 -1.67028993e-01 5.06924748e-01\\n1.77710012e-01 -3.27696018e-02 -2.39065662e-01 3.00631344e-01\\n-2.99783908e-02 -3.38450044e-01 -2.21683457e-01 1.31161138e-02\\n2.45895833e-01 1.06536202e-01 1.87416598e-01 -4.22279537e-01\\n-4.82878387e-02 -8.55379552e-03 -3.01977694e-02 4.43715066e-01\\n1.28790736e-01 2.03533098e-01 6.42684475e-02 -1.65238231e-01\\n6.62732124e-01 -1.08859167e-01 -1.48690671e-01 1.54254079e-01\\n7.05323294e-02 -3.85887712e-01 -3.56273711e-01 -1.30366400e-01\\n-5.17591201e-02 -2.84208685e-01 9.29800570e-02 1.57265499e-01\\n2.44512707e-02 -7.83881769e-02 -6.98582828e-01 -2.69669771e-01\\n-4.73319620e-01 -3.72208953e-02 9.01945755e-02 -5.96462965e-01\\n2.37215888e-02 -1.71058103e-01 -6.33846760e-01 3.80458415e-01\\n2.32115332e-02 7.28861466e-02 6.69282824e-02 2.85018254e-02\\n-8.00337717e-02 -2.43994549e-01 2.29558691e-01 7.85629451e-02\\n-2.49394238e-01 -1.12628661e-01 -4.64711525e-02 -1.01357830e+00\\n1.84528217e-01 1.10707313e-01 -1.21861808e-01 1.04131103e-01\\n1.04629593e-02 -6.43559217e-01 1.41930521e-01 -4.19385642e-01\\n-8.74566883e-02 2.03275550e-02 -1.74127474e-01 -4.82494801e-01\\n1.09424472e-01 9.19790417e-02 -2.15138555e-01 4.66689199e-01\\n-3.76365483e-01 4.10226047e-01 5.01902923e-02 8.28878954e-02\\n7.08239153e-02 -2.65420943e-01 1.86969280e-01 -1.36667565e-01\\n-4.56583261e-01 -1.75961137e-01 -3.01494449e-01 -2.85150379e-01\\n7.69020841e-02 -3.35408121e-01 -1.58017904e-01 -3.54286693e-02\\n3.16636950e-01 2.16917828e-01 -1.11085631e-01 -1.86213672e-01\\n2.53517460e-02 -5.24657190e-01 2.74236381e-01 -3.68653059e-01\\n-6.53515309e-02 -3.09636354e-01 2.58104116e-01 -8.52045789e-02\\n1.10435925e-01 -1.66787058e-01 5.70003390e-01 -1.52468100e-01\\n-2.95944601e-01 -1.71802640e-01 1.65557384e-01 7.27623254e-02\\n3.74397367e-01 -3.87340844e-01 -1.05555281e-01 1.89525619e-01\\n1.07502259e-01 3.74748260e-02 2.95131981e-01 -2.38281488e-01\\n-3.11751664e-01 3.42509538e-01 -6.36243165e-01 1.43761918e-01\\n7.24829376e-01 2.96205163e-01 1.66736186e-01 1.33321762e-01\\n1.87946707e-01 1.74384728e-01 4.89029080e-01 3.66707928e-02\\n-2.92516109e-02 4.12857622e-01 1.21821314e-01 -4.87001777e-01\\n-1.40967324e-01 -8.47460851e-02 -5.50161973e-02 -3.62195730e-01\\n6.05088592e-01 3.57440472e-01 -3.33940268e-01 -4.14918780e-01\\n-1.62353963e-01 -5.85589698e-03 4.53592181e-01 7.60280266e-02\\n-3.53816003e-02 -1.60972714e-01 5.34460485e-01 -7.32716694e-02\\n2.86559492e-01 5.02710462e-01 -8.72613043e-02 -1.85953230e-01\\n-7.50138909e-02 2.60431826e-01 1.77844837e-01 5.74238062e-01\\n-1.46492958e-01 1.75502628e-01 -2.46840063e-02 2.01083258e-01\\n-2.27619126e-01 -3.34830806e-02 2.99778759e-01 -4.10391986e-02\\n2.22419694e-01 1.45205051e-01 3.06440473e-01 4.43235517e-01\\n2.81697541e-01 3.13682050e-01 2.26316959e-01 -7.87229165e-02\\n3.40201676e-01 7.08303750e-01 3.70781332e-01 1.54780135e-01\\n9.65367854e-02 1.27955168e-01 1.05973661e-01 -3.54117416e-02\\n2.32480869e-01 4.07727540e-01 1.20915715e-02 8.74057770e-01\\n3.07803124e-01 4.07227129e-01 5.77730000e-01 -6.95044458e-01\\n-3.61613959e-01 5.99026419e-02 5.80835164e-01 -4.37778831e-01\\n-3.55232321e-02 1.08495735e-01 -1.41744226e-01 1.43411323e-01\\n-5.45357585e-01 -2.74120748e-01 3.76421250e-02 -1.56770453e-01\\n1.86608523e-01 -1.32998109e-01 -1.45200649e-02 2.13955373e-01\\n-1.86401129e-01 -1.78530738e-01 -4.11384493e-01 -1.76619112e-01\\n-3.82446468e-01 -3.20035182e-02 7.38992728e-03 -6.58867508e-02\\n-1.01631969e-01 -2.29573816e-01 -3.76530774e-02 4.70507108e-02\\n3.14588785e-01 -2.18461037e-01 -2.37818196e-01 -8.21798295e-02\\n1.06251061e-01 2.98102289e-01 6.08632267e-01 -8.71866941e-02\\n1.58220723e-01 -1.31576151e-01 -2.21334159e-01 8.17595199e-02\\n1.24775149e-01 4.37059030e-02 7.04651698e-02 5.76302648e-01\\n-3.15513909e-01 -1.98665679e-01 9.54628363e-02 2.85883218e-01\\n-4.67840493e-01 7.46951103e-02 3.03468741e-02 1.46805018e-01\\n6.91654757e-02 2.57251322e-01 -1.99670821e-01 4.85974737e-02\\n-1.70472085e-01 -7.00539052e-01 3.80490154e-01 -1.94243684e-01\\n-2.26387396e-01 2.49131769e-02 2.84959793e-01 2.51800209e-01\\n-2.36095876e-01 -1.89648807e-01 -1.89967677e-01 2.18987748e-01\\n7.25260898e-02 3.75641406e-01 -3.51635963e-01 -1.51973754e-01\\n-3.30530971e-01 2.64453828e-01 4.96981181e-02 1.94040373e-01\\n-3.05700097e-02 2.88163900e-01 2.40110010e-02 2.41249487e-01\\n2.95158386e-01 4.76887152e-02 -2.26107016e-01 -2.16257960e-01\\n-1.31464288e-01 -1.30648002e-01 9.99225378e-02 -1.00234084e-01\\n1.82936624e-01 -3.19637805e-01 -1.38220578e-01 -3.49026084e-01\\n-3.70797694e-01 -5.28683782e-01 -5.35152629e-02 -1.35008693e-01]]',\n", + " 'Job Informationen Your tasks: Continuously and proactively identify drivers of performance and business insights by BI tools, analyze impacts of taken actions to give deep analytical insight to the different stakeholders Define, implement and measure process KPIs and conduct process performance measurement cycles Design standard report portfolio with optimal layouts for management and operational teams to enable data-based decision making Implement statistical forecast models and compute technical budgets Compute and measure business cases for new ideas and projects Define aligned commercial data model. Lead and/or push the HD needs in the different BI relevant projects (e.g. CCM project) Functional leadership of project members in role of project leader Continuously update analytical and methodical skills Your profile: University degree (Master) in mathematics, information technology, engineering, economics or similar Relevant working experience in commercially applied analytics, econometrical modeling and statistical software (e.g. R, python) Experience in reporting/visualization software, ideally Tableau Experience in data warehousing and in relational as well as unstructured data environments Proven SQL skills High project management skills and profound experience in workshop management Good written and verbal communication skills and ability to work in cross cultural environments Excellent conceptual capabilities, able to analytically break-down and solve complex problems with high focus on implementation Written and spoken fluency in English, and preferably also in German Proven team player as well as ability to work independently and unsupervised Willingness to travel (mostly between the groups Hubs) Benötigte Skills Business Intelligence Python Python R SQL Englisch Reisetaetigkeit Projektleitung',\n", + " '[\"Verbal Communication Skills\", \"Complex Problem Solving\", \"Leadership\", \"Proactivity\", \"Management\", \"Operations\", \"Decision Making\", \"Information Technology\"]',\n", + " '[\"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Engineering Economics\", \"Analytics\", \"Statistics\", \"Visualization\", \"Data Warehousing\", \"SQL (Programming Language)\", \"Statistical Software\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Idealization\", \"Performance Measurement\", \"Business Intelligence\", \"Unstructured Data\", \"Conceptualization\", \"Budgeting\", \"Layout Optimization\", \"Logical Data Models\", \"R (Programming Language)\", \"Econometric Modeling\", \"Cross-Cultural Studies\", \"Forecasting\", \"Project Management\", \"Commercialization\", \"Business Case\"]',\n", + " \"['English', 'Italian', 'Oriya', 'Kurdish']\"],\n", + " ['77',\n", + " 'backend engineer',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.nanos.ai',\n", + " '[[-9.93610993e-02 1.67789996e-01 4.53946531e-01 -4.33472060e-02\\n3.97099793e-01 -8.52692872e-02 -6.75937310e-02 4.87816244e-01\\n-2.92915013e-02 -4.29475784e-01 -4.19181585e-02 -2.24508286e-01\\n-1.58719450e-01 7.35269561e-02 6.80728406e-02 3.37462664e-01\\n2.93862671e-01 1.14449501e-01 -2.80677438e-01 4.04118955e-01\\n1.58727437e-01 -5.37589714e-02 1.67795599e-01 6.62032604e-01\\n3.95197421e-01 -8.29496980e-03 3.43314558e-02 5.85573614e-02\\n-2.33463258e-01 -2.32918441e-01 4.72242475e-01 1.03322580e-01\\n-8.68875533e-02 -3.84176552e-01 2.06842005e-01 1.89335048e-02\\n-2.15945989e-01 3.69436480e-03 -7.42332265e-02 1.17948353e-01\\n-5.74157476e-01 -3.09221327e-01 3.62171121e-02 1.07915699e-01\\n-3.34808350e-01 -3.53398681e-01 2.05551028e-01 -1.37847975e-01\\n1.53530762e-01 -8.17515701e-03 -5.20347357e-01 2.95845091e-01\\n-2.46081278e-01 -2.41051972e-01 3.11416626e-01 5.09739339e-01\\n-2.22356264e-02 -4.50727820e-01 -5.97427249e-01 -3.33517134e-01\\n1.43634647e-01 -1.19620651e-01 -1.27497166e-01 -3.92209053e-01\\n2.57025510e-01 4.68364023e-02 4.64968719e-02 3.28114271e-01\\n-7.61563778e-01 -7.61777386e-02 -1.62835613e-01 -6.68030083e-02\\n-3.27059209e-01 -1.38065577e-01 -1.83207244e-01 -6.96963593e-02\\n-4.74140309e-02 3.65187526e-01 1.03470743e-01 1.68163963e-02\\n-1.77551493e-01 2.92631447e-01 -1.46124169e-01 4.21709836e-01\\n1.84524983e-01 1.65821776e-01 1.81653857e-01 3.62514436e-01\\n-4.02314186e-01 4.46734488e-01 1.23997286e-01 -3.47076833e-01\\n2.75705218e-01 4.25050594e-02 5.10777116e-01 -4.22319248e-02\\n2.47302696e-01 9.91449505e-02 -3.00741196e-01 3.56822342e-01\\n3.86728644e-01 -2.75420010e-01 -3.19507793e-02 -2.07951948e-01\\n5.92964217e-02 -4.89717871e-02 7.00124651e-02 2.07829863e-01\\n-2.40344733e-01 4.18751538e-01 1.79867670e-01 -2.58241653e-01\\n-6.40562028e-02 -4.53900754e-01 -7.83777386e-02 1.26154125e-02\\n-3.00932024e-02 2.75136326e-02 1.36330724e-01 3.57848182e-02\\n2.58927643e-01 6.93315733e-03 1.20945476e-01 7.90590584e-01\\n-1.60239726e-01 1.37875648e-02 -2.76214004e-01 2.78311789e-01\\n5.85818365e-02 -2.99628019e-01 3.10229361e-01 2.31225163e-01\\n7.68230706e-02 -1.86602294e-01 -1.83852077e-01 2.41406307e-01\\n-3.03763933e-02 -2.41855353e-01 -3.09810102e-01 1.83313295e-01\\n-2.37987079e-02 -3.21837872e-01 5.82641959e-01 1.25421286e-01\\n1.63445517e-01 -3.25146131e-02 -8.17322433e-02 -1.56428277e-01\\n-1.68062270e-01 1.17449835e-01 -1.35939687e-01 2.27486789e-01\\n-2.95050532e-01 -2.54602969e-01 -2.30339304e-01 1.12504788e-01\\n-3.80494475e-01 1.77756503e-01 -1.31885380e-01 -9.95028913e-02\\n3.86159599e-01 4.66080010e-02 -2.94564277e-01 3.20560664e-01\\n1.29130334e-02 1.82437539e-01 -6.53957352e-02 3.10995996e-01\\n-1.70663327e-01 2.82760084e-01 -2.77612498e-03 -5.06778546e-02\\n6.72044396e-01 1.30839825e-01 1.19194672e-01 -7.98331723e-02\\n3.36308748e-01 -2.27463320e-02 6.77945167e-02 5.27473688e-02\\n-6.10567093e-01 2.09911019e-01 8.34482908e-02 2.49728262e-02\\n9.98687521e-02 -2.32785389e-01 1.33428439e-01 -3.28318834e-01\\n-1.33248735e-02 -1.32945970e-01 -4.93339956e-01 -3.23858976e-01\\n-2.95524955e-01 1.87272150e-02 4.87178683e-01 -4.37209547e-01\\n-8.87565464e-02 2.40891457e-01 -5.03076911e-01 -7.79272765e-02\\n2.31710881e-01 2.13704571e-01 1.30593598e-01 1.35977760e-01\\n-1.37220412e-01 -4.88527179e-01 9.51480716e-02 -4.17858899e-01\\n-1.73858568e-01 1.04147375e-01 -2.83767343e-01 2.72220433e-01\\n9.98983830e-02 -1.82821676e-02 -1.71559989e-01 1.29017696e-01\\n-2.57252276e-01 -8.56996477e-02 1.80805579e-01 -2.89463624e-03\\n3.02316546e-01 2.92098708e-02 -3.82030219e-01 3.90898168e-01\\n-1.66776031e-01 6.02536738e-01 9.25745815e-02 -9.14494336e-01\\n5.30719519e-01 3.66088927e-01 -5.37202433e-02 -4.26744968e-01\\n5.31409204e-01 -2.52824366e-01 6.69408515e-02 8.64332616e-02\\n-4.73934621e-01 -3.76606286e-01 2.13932663e-01 -1.72838017e-01\\n-2.70933896e-01 5.25604129e-01 -4.38920315e-03 3.70949954e-02\\n1.89967722e-01 -2.15081096e-01 -4.56902012e-02 9.50350538e-02\\n-6.82128817e-02 -2.00226575e-01 -5.01076698e-01 -7.01187775e-02\\n-1.00035466e-01 -4.49627489e-01 -3.65002677e-02 -3.06704432e-01\\n-2.36146808e-01 -3.22404265e-01 -1.26409680e-01 3.03303719e-01\\n2.55712569e-01 1.27298787e-01 -1.65854534e-03 1.08707532e-01\\n-2.43446410e-01 -6.08066797e-01 7.09840655e-02 1.20301448e-01\\n3.74828935e-01 2.12943196e-01 1.51690319e-01 7.70428702e-02\\n-1.01540208e-01 6.69360757e-01 -2.86712945e-01 -8.44555497e-02\\n1.47202089e-01 2.23723650e-01 7.55906850e-02 -1.79548591e-01\\n1.10325627e-01 3.52039754e-01 -2.86453068e-01 6.60493970e-02\\n-8.30903724e-02 -8.07230026e-02 3.72221291e-01 9.00535733e-02\\n-3.56203794e-01 -2.72459805e-01 -7.89736137e-02 1.87788531e-01\\n-5.07830918e-01 -1.43112600e-01 6.34681046e-01 1.70296341e-01\\n2.17873305e-01 9.47361588e-02 2.95363963e-01 -1.19377337e-01\\n-1.62438259e-01 -3.08462560e-01 3.27627569e-01 2.08017498e-01\\n8.72275010e-02 1.28923297e-01 -5.47885336e-02 -6.39599502e-01\\n-3.28828382e+00 -1.46801472e-01 2.00160772e-01 -2.74898946e-01\\n1.44616514e-01 -1.10349439e-01 1.59068145e-02 -1.40658304e-01\\n-2.03158945e-01 4.45600636e-02 -1.25753075e-01 -1.03959687e-01\\n1.72426045e-01 1.71444044e-01 1.23367466e-01 2.24291444e-01\\n2.54876196e-01 -1.79509789e-01 -3.11288796e-02 3.27679992e-01\\n-1.76567003e-01 -5.64411879e-01 2.87557006e-01 -9.01716277e-02\\n3.47678930e-01 3.41422915e-01 -3.38940531e-01 -2.00842753e-01\\n-1.69263959e-01 -9.48775262e-02 7.46974051e-02 -2.49065369e-01\\n-5.82792014e-02 2.78075069e-01 2.14028686e-01 -9.17554200e-02\\n1.47685111e-01 -4.26787287e-01 -1.04663379e-01 -4.21290278e-01\\n1.35233685e-01 -5.80724239e-01 5.16032353e-02 -2.00618535e-01\\n6.94020271e-01 -3.15359414e-01 9.43393353e-03 8.71808827e-02\\n1.95157081e-01 2.42143691e-01 7.92423189e-02 4.49310467e-02\\n-2.08649158e-01 -1.96706563e-01 -1.43625559e-02 -1.22779764e-01\\n4.76427197e-01 5.95577121e-01 -2.01984197e-01 -1.94135338e-01\\n-1.20051540e-02 -2.80892432e-01 -4.83817101e-01 -3.18551332e-01\\n-1.33718461e-01 -3.89633000e-01 -5.66331506e-01 -3.79042923e-01\\n-8.80559608e-02 -1.90143853e-01 -1.68654859e-01 6.33704901e-01\\n-2.84728944e-01 -3.50746334e-01 2.24245917e-02 -4.43110406e-01\\n1.24902338e-01 -9.76853222e-02 2.21271589e-02 -2.36163735e-01\\n-7.97046348e-02 -5.84255934e-01 -2.53726058e-02 -7.04826415e-02\\n-1.69805095e-01 -3.95438313e-01 4.82539013e-02 -8.12280849e-02\\n-2.24114001e-01 -5.71472645e-01 4.34624434e-01 1.76221013e-01\\n3.93158466e-01 -3.40591930e-02 3.51325750e-01 -1.39260471e-01\\n3.03481877e-01 -1.38209552e-01 -2.51237806e-02 -3.69425952e-01\\n1.70535222e-01 6.76486418e-02 4.44016516e-01 -1.89696670e-01\\n3.59313078e-02 1.25170469e-01 -3.02818030e-01 -1.23331919e-01\\n3.02495539e-01 1.14759356e-01 1.51264101e-01 -2.69826889e-01\\n3.49503815e-01 -2.59722263e-01 -2.67762244e-01 1.22446544e-01\\n1.29940450e-01 4.95402753e-01 -3.68406586e-02 -4.27085042e-01\\n-1.45981163e-01 4.91905838e-01 -1.73765361e-01 -2.06378564e-01\\n-2.72872686e-01 1.22658104e-01 -2.17794791e-01 1.18387848e-01\\n4.69069816e-02 -1.43414110e-01 -2.76620716e-01 -1.51994258e-01\\n-2.02153653e-01 3.19839180e-01 2.47814059e-01 8.56968760e-02\\n-4.24604192e-02 -4.43561226e-01 -2.39462405e-02 2.54370600e-01\\n8.47622305e-02 3.86034846e-01 1.46849066e-01 -1.79819271e-01\\n-9.09223557e-02 4.14612740e-01 -7.16713741e-02 5.65404817e-02\\n-2.01421648e-01 -2.45091654e-02 -5.12343884e-01 -2.54233301e-01\\n-2.67604679e-01 -3.08503628e-01 7.01154917e-02 3.44767839e-01\\n1.67837441e-01 -8.18632916e-02 4.01608050e-02 -4.82600212e-01\\n3.82953286e-01 7.73230493e-02 2.21294224e-01 1.87643766e-01\\n1.43851951e-01 5.80110550e-01 4.31292243e-02 -1.04034625e-01\\n-1.07805520e-01 6.08604178e-02 -2.51589656e-01 -8.61296728e-02\\n3.14704329e-02 -4.11448956e-01 -9.63072777e-02 3.16217124e-01\\n8.78617540e-02 -2.28364393e-01 -2.24662006e-01 1.82632089e-01\\n4.13233787e-02 -1.95096701e-01 -2.26152301e-01 4.35877815e-02\\n2.90571660e-01 -6.31550252e-02 3.21785897e-01 -3.70037347e-01\\n-1.05793104e-01 2.88109854e-02 -1.40410870e-01 5.37156701e-01\\n1.45299375e-01 -1.50084626e-02 -2.07966313e-01 -1.54579833e-01\\n3.81847590e-01 -1.90109789e-01 -1.26229703e-01 -3.24403867e-02\\n9.71914381e-02 -1.62216991e-01 -5.62439084e-01 2.04670995e-01\\n-2.26722881e-02 -9.22845751e-02 -3.04775909e-02 3.92030068e-02\\n4.41796146e-02 1.66674465e-01 -5.45425177e-01 -2.41216898e-01\\n-2.62619853e-01 -5.11997491e-02 -7.09929615e-02 -5.20227015e-01\\n2.30319966e-02 -7.31063336e-02 -5.19117713e-01 1.89804673e-01\\n-2.76289642e-01 -2.36336067e-02 1.59806728e-01 1.23812668e-02\\n-3.71587217e-01 -7.02594966e-02 6.96415231e-02 2.57402003e-01\\n-3.93426001e-01 -2.82079995e-01 6.16872907e-02 -1.01133490e+00\\n2.46242970e-01 3.28487940e-02 -1.84355170e-01 1.32151559e-01\\n-7.72657841e-02 -7.54749060e-01 1.16941273e-01 -2.45404780e-01\\n-1.90269127e-01 1.26908123e-02 -1.92829281e-01 -4.24370259e-01\\n2.51797959e-04 -1.06082968e-02 -2.78553963e-01 2.79644907e-01\\n-4.00225043e-01 4.13082480e-01 -1.26112312e-01 1.79848120e-01\\n-4.22977097e-02 -2.52883375e-01 8.00915137e-02 -3.74139488e-01\\n-4.96198416e-01 -1.75489813e-01 -3.20817947e-01 -1.99880153e-01\\n8.30135643e-02 -3.52957964e-01 -8.41379464e-02 5.65927997e-02\\n3.96766961e-01 4.96545583e-02 -1.82666898e-01 -2.67882705e-01\\n5.36458604e-02 -5.08981586e-01 -3.88099961e-02 1.10900715e-01\\n-1.28652211e-02 -1.20556548e-01 2.59435833e-01 7.22169280e-02\\n7.96886608e-02 -5.08349657e-01 4.57321346e-01 -4.08288926e-01\\n-2.65217304e-01 -7.93791413e-02 -2.17683706e-02 -9.67163499e-03\\n2.35950992e-01 -5.16537309e-01 1.09831274e-01 3.80640417e-01\\n9.90145802e-02 2.02300251e-02 3.19205761e-01 -8.11272860e-03\\n-6.95799291e-02 2.23343998e-01 -3.13239098e-01 6.20982908e-02\\n8.15948963e-01 -6.40997812e-02 7.42106289e-02 2.13306651e-01\\n5.85321710e-02 2.53138691e-01 5.73716760e-01 4.57107276e-02\\n-1.50479317e-01 2.90243328e-01 7.76106864e-02 -5.71407318e-01\\n3.97871584e-02 -2.65571773e-02 -3.24665904e-01 -3.09560865e-01\\n6.66166425e-01 4.27953929e-01 -4.06144977e-01 -2.80682087e-01\\n-1.77397411e-02 -2.31618419e-01 7.37597495e-02 -1.16672695e-01\\n8.66719484e-02 -6.46298528e-02 4.65079099e-01 -7.25083426e-02\\n2.06392005e-01 5.35153687e-01 -2.22982496e-01 -3.86543244e-01\\n-1.38666332e-01 2.13527262e-01 7.44567066e-02 4.73716140e-01\\n-1.74348354e-01 3.21345448e-01 -2.79660113e-02 5.78216910e-02\\n-1.51948094e-01 1.73177093e-01 3.65324989e-02 1.17573053e-01\\n1.54443994e-01 2.39516459e-02 4.20435131e-01 4.18534696e-01\\n4.38679755e-01 4.58841354e-01 3.26630473e-01 8.17675702e-03\\n7.27507591e-01 5.97143471e-01 4.36305583e-01 1.70520097e-01\\n-6.62052482e-02 1.26602612e-02 4.36070077e-02 3.71709391e-02\\n4.28101629e-01 3.44461352e-01 1.62424892e-01 8.56793284e-01\\n4.35278982e-01 2.20243618e-01 6.81294501e-01 -6.41433954e-01\\n-3.52632433e-01 -5.67904767e-03 3.74184370e-01 -3.02653104e-01\\n-1.48134530e-02 1.36322156e-01 -6.16818741e-02 2.14248031e-01\\n-3.51553023e-01 -2.02767223e-01 -1.54429376e-02 2.68943131e-01\\n-1.47019178e-02 -7.89708495e-02 -1.84003487e-01 7.79078752e-02\\n-2.06681237e-01 -1.60926014e-01 -4.11987007e-01 -7.43745118e-02\\n-2.06466690e-01 -1.52855679e-01 -1.58408478e-01 -2.21374601e-01\\n-1.77253157e-01 -3.33148122e-01 -1.01506785e-01 -1.60256699e-02\\n3.16570699e-01 -2.25720257e-01 -4.21670265e-02 -2.23581091e-01\\n2.93309689e-01 1.87360689e-01 4.62730646e-01 5.91990873e-02\\n1.67365253e-01 -3.03859144e-01 -2.60319263e-01 1.86627552e-01\\n1.93616286e-01 1.45036250e-01 2.53738575e-02 2.69729257e-01\\n-3.62243056e-01 -1.50744110e-01 2.65604079e-01 3.76549006e-01\\n-3.95782948e-01 2.39452291e-02 -1.50481716e-01 2.40539551e-01\\n3.58745605e-02 1.04924597e-01 -2.00678661e-01 -1.76874408e-03\\n-1.73636839e-01 -5.14753163e-01 3.49185944e-01 -1.18349016e-01\\n-2.31975894e-02 5.70320860e-02 3.05385411e-01 6.33793175e-02\\n-2.41767704e-01 1.94561034e-02 -6.75720908e-03 1.93816975e-01\\n2.05875218e-01 2.51239151e-01 -2.90455550e-01 -2.00694889e-01\\n-1.99528456e-01 1.10300615e-01 -2.38858029e-01 6.66600317e-02\\n1.41682737e-02 3.72138739e-01 1.41189769e-01 -2.97317803e-02\\n4.86623615e-01 -3.18099856e-02 -1.00332372e-01 -2.15976655e-01\\n-3.13839972e-01 -3.20134878e-01 -1.04718879e-01 -1.41013771e-01\\n2.13397115e-01 -3.93651515e-01 -1.20920800e-02 -8.08006078e-02\\n-1.93688393e-01 -2.40513042e-01 7.95801431e-02 -9.03673321e-02]]',\n", + " 'Who are we? Nanos is an online platform that makes placing paid advertisements a straightforward process accessible to any small & micro business around the world. We are a privately owned Swiss startup based in Zurich - a dynamic fast-growing team of software engineers, UX designers, business experts and machine learning engineers. Who are we looking for? As part of our growth we are building a fully distributed engineering team, for which we are looking for a Backend Engineer with a minimum of 3 years professional experience. From a cultural point of view, we expect you to bring in a plus with you as we are an inclusive company that thrives from the diversity its employees bring in. As a Backend Engineer, we expect you to be a problem solver before being a code writer. What will you do if you join us? As a backend engineer and being a part of our distributed development team you will be working on different parts of the Nanos platform (Frontend, Backend, Mobile app, Server infrastructure.., etc), where you will be expected to: - Architect and maintain distributed systems, focusing on reliability, security, and scalability - Design and develop highly scalable APIs and services that are used by web and mobile clients Requirements What skills do we expect you to have? With the exponentially growing number of frameworks and languages in software engineering we do not expect you to be an expert in all technologies used at Nanos but we do expect you to be a fast learner and an engineer with a critical and open mindset. Being a part of a rapidly moving industry, we are looking for engineers, who are not afraid to build fast, fail fast and learn from their mistakes. If you decide to join us you might be working on projects with technologies and languages such as: Node.js, MongoDB, Python, PostgreSQL CI/CD: Git, GitHub, Docker, Kubernetes, Jenkins, GitOps Our working language is English and we expect all candidates to be fluent in English. Benefits What are we to offer you? We would be more than happy to hear from you and look forward to have you joining our team where you should expect following benefits and culture: A competitive salary Generous stock option plan 25 vacation days per year Flexible working hours Free choice of hardware Regular experimental time to work on your own ideas Office within 5 min walking distance from Zurich HB Office shut down between Christmas and New Year (to be compensated by working a couple of extra minutes per day over the year, i.e. 15 min in 2018) A very multicultural team Regular team events and parties One ski retreat per year A fully-equipped kitchen and a dining area Big open terrace and a bbq space Free coffee/fruits and soft drinks ',\n", + " '[\"Infrastructure\", \"Planning\", \"Reliability\"]',\n", + " '[\"Distributed File Systems\", \"Advertisement\", \"Kubernetes\", \"Accessioning\", \"Jenkins\", \"Machine Learning\", \"Industrialization\", \"Mobile App\", \"PostgreSQL\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"MongoDB\", \"E (Programming Language)\", \"Experimentation\", \"Software Engineering\", \"Mobility\", \"Github\", \"Docker (Software)\", \"Scalability\", \"Distributed Development\", \"Incentive Stock Option\", \"Git Flow\", \"Custom Backend\"]',\n", + " \"['English', 'Malay', 'Wolof', 'French', 'Castilian']\"],\n", + " ['75',\n", + " 'data-scientist (w/m)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.40152931e-01 3.86857748e-01 5.64359128e-01 -2.11751889e-02\\n5.54279625e-01 -1.63345739e-01 8.50075483e-02 2.85801649e-01\\n-3.76474373e-02 -5.54479174e-02 -1.44540608e-01 -1.84721932e-01\\n-2.62196749e-01 4.99920137e-02 1.32289350e-01 2.33172685e-01\\n1.58298552e-01 3.37551162e-02 -2.00104654e-01 2.64585495e-01\\n2.19596922e-01 1.25990853e-01 -1.09996960e-01 4.01760072e-01\\n5.46991765e-01 1.61381468e-01 -1.36757001e-01 -1.80698056e-02\\n-4.98854041e-01 -2.56293982e-01 3.28164220e-01 2.21461561e-02\\n-1.20518483e-01 -2.22280085e-01 7.23956674e-02 1.45944118e-01\\n-5.06033078e-02 -3.68830152e-02 5.55988960e-02 1.71215087e-01\\n-2.97935605e-01 -4.56979364e-01 1.41224936e-01 2.29650602e-01\\n-2.85194546e-01 -2.00274214e-01 1.35143027e-01 -4.82744947e-02\\n-1.51948510e-02 3.70995700e-02 -5.63241899e-01 4.89709705e-01\\n-1.49933442e-01 -6.77251890e-02 1.95805326e-01 6.01548493e-01\\n4.99456637e-02 -5.25512815e-01 -3.35858405e-01 -3.07429612e-01\\n6.16649762e-02 -5.57514876e-02 5.63354753e-02 -5.57723641e-02\\n4.32600886e-01 -1.48729766e-02 -1.09990217e-01 2.74718851e-01\\n-8.80553484e-01 -1.14383459e-01 -1.93149999e-01 2.52000224e-02\\n-4.41496849e-01 -1.77736413e-02 -2.55491406e-01 -1.24470219e-02\\n-3.37315612e-02 2.71823734e-01 -7.09322318e-02 4.32927944e-02\\n-4.53397781e-02 2.10033804e-01 1.86909050e-01 9.43847448e-02\\n3.73895824e-01 1.78202763e-02 1.69350192e-01 2.70833582e-01\\n-3.52352083e-01 2.22590700e-01 7.09624067e-02 -1.39725119e-01\\n1.20169386e-01 1.84005037e-01 5.02978861e-01 1.69806376e-01\\n-1.07638590e-01 2.06321537e-01 -6.44789934e-02 1.52450874e-01\\n6.54472262e-02 -4.50722843e-01 8.96276683e-02 4.15015109e-02\\n-3.19580555e-01 -2.93784738e-02 -1.67375907e-01 4.35275763e-01\\n-1.66115314e-01 4.56024289e-01 1.86219901e-01 -1.26863614e-01\\n-1.68066379e-03 -6.12200677e-01 -1.97938517e-01 4.51373355e-03\\n1.08503766e-01 2.57463962e-01 1.84028685e-01 1.19537130e-01\\n2.59141326e-01 2.53390875e-02 3.48010331e-01 8.49952519e-01\\n8.84517133e-02 1.57709688e-01 -1.69604719e-01 2.90805101e-01\\n2.41121724e-01 -3.45354259e-01 1.15146138e-01 2.49930933e-01\\n2.49397457e-01 -5.86976670e-02 -2.67600089e-01 1.69004709e-01\\n-3.35313052e-01 -6.14808276e-02 -3.26871365e-01 1.58660654e-02\\n-1.79879606e-01 -3.56965065e-01 4.54950660e-01 1.08459435e-01\\n1.42103940e-01 -2.45781094e-01 -1.64333567e-01 1.99629497e-02\\n-4.53888699e-02 6.04526997e-01 1.70497820e-01 2.21151114e-01\\n-3.72813970e-01 -2.56987154e-01 -9.55166519e-02 4.24931049e-01\\n-1.13859408e-01 9.36642736e-02 -1.35311276e-01 -6.69946820e-02\\n3.42485458e-01 2.50424981e-01 -3.80189478e-01 8.42056423e-03\\n-6.88624755e-02 -3.49844128e-01 -1.17121041e-01 2.12348938e-01\\n-2.05416873e-01 3.07477713e-01 -1.10336468e-01 -2.32545137e-01\\n6.20077789e-01 1.79984674e-01 2.87256446e-02 -6.40292913e-02\\n3.37507546e-01 -2.44132459e-01 4.76876795e-01 1.08316153e-01\\n-7.14825094e-01 4.00258809e-01 -8.84041265e-02 -1.55841663e-01\\n1.20750554e-01 1.38183773e-01 4.21810329e-01 -3.99443835e-01\\n3.65177765e-02 -2.59250194e-01 -3.78098339e-01 -3.59057665e-01\\n-4.69978660e-01 3.65988165e-02 3.24910462e-01 -3.98469478e-01\\n-1.56003699e-01 1.82488099e-01 -5.13722956e-01 -1.80485725e-01\\n1.50686160e-01 1.41126454e-01 1.48002312e-01 -1.87028609e-02\\n-4.21703141e-03 -5.18174708e-01 1.61556065e-01 -3.90420020e-01\\n-4.62925225e-01 2.65932400e-02 -2.82992333e-01 2.27540731e-01\\n8.48521851e-03 1.53380468e-01 -6.08720630e-02 1.59824595e-01\\n-3.83660883e-01 -6.29642606e-02 1.41159892e-01 2.37722665e-01\\n2.03175426e-01 -9.30899531e-02 -5.42539358e-01 3.62999290e-01\\n-2.58662403e-01 6.36967063e-01 2.63173550e-01 -6.27083242e-01\\n5.96495271e-01 2.46704638e-01 7.88443610e-02 -2.80443132e-01\\n4.55006272e-01 -2.74801672e-01 -3.99831273e-02 2.15862975e-01\\n-2.01305538e-01 -9.64623243e-02 3.02819371e-01 -1.49912253e-01\\n-2.55634457e-01 5.52354932e-01 2.35565096e-01 6.08248264e-02\\n3.03173721e-01 -3.40120256e-01 -5.42415166e-03 2.45603058e-03\\n-1.05307549e-01 -1.40772894e-01 -2.21211314e-01 5.04703335e-02\\n-5.70334382e-02 -4.16276962e-01 -1.30620286e-01 -2.45847449e-01\\n-1.04631685e-01 -3.88742387e-01 -1.25641122e-01 3.58455479e-01\\n1.54326916e-01 1.28081709e-01 1.13788553e-01 -7.78047740e-02\\n-5.50397187e-02 -6.50845766e-01 -1.78422377e-01 7.45280087e-02\\n4.39558864e-01 2.83264756e-01 1.33801937e-01 -1.35133415e-01\\n2.99210846e-02 4.10754770e-01 -5.45337379e-01 -4.24741238e-01\\n1.16312183e-01 1.01509728e-01 -1.09301448e-01 -2.16209784e-01\\n-1.17579661e-01 3.29327285e-01 -3.43568735e-02 1.83735117e-02\\n-1.42083645e-01 -1.88273385e-01 2.82436669e-01 -8.59018341e-02\\n-1.36066794e-01 -3.22769880e-01 -1.55979916e-01 3.59314978e-01\\n-4.20063674e-01 -2.98837990e-01 4.06595170e-01 1.24043554e-01\\n2.04832420e-01 1.54067010e-01 2.52507567e-01 -2.21021116e-01\\n-1.89200059e-01 -2.91250974e-01 1.83087785e-03 1.50031880e-01\\n-1.03188632e-02 4.30557169e-02 -2.08979428e-01 -5.84156990e-01\\n-3.37948895e+00 -1.00038342e-01 1.05876349e-01 -3.68365377e-01\\n2.51434267e-01 -1.14177331e-01 -2.26618089e-02 6.96711615e-02\\n-2.25777477e-01 1.01283662e-01 -2.26554036e-01 -1.61212265e-01\\n2.72118300e-03 5.09050429e-01 6.56062365e-02 9.85770524e-02\\n9.75739285e-02 -2.89559364e-01 -2.33657181e-01 4.64905202e-01\\n6.44931337e-03 -5.89152515e-01 1.41642883e-01 4.41695452e-02\\n2.16367587e-01 3.25013995e-01 -3.86159569e-01 -1.14399225e-01\\n-1.23523489e-01 -3.32075030e-01 -2.57252455e-02 -9.82949138e-02\\n-1.77133203e-01 3.48181874e-01 5.68890050e-02 2.06964500e-02\\n-3.98425721e-02 -2.32585177e-01 -1.94989629e-02 -3.83502424e-01\\n1.54957769e-03 -5.08120179e-01 -5.56375533e-02 -2.61963814e-01\\n7.04859316e-01 -2.19223484e-01 1.78735346e-01 1.00847393e-01\\n1.45437509e-01 9.13299993e-02 -1.19658165e-01 1.22601591e-01\\n-3.87456983e-01 -1.97301835e-01 -8.87915641e-02 -1.21025428e-01\\n4.16066140e-01 5.17527580e-01 -2.77378559e-01 -3.45542245e-02\\n1.38546288e-01 -4.11158115e-01 -7.50019625e-02 -5.13732433e-01\\n-2.59068787e-01 -2.34122500e-01 -6.43472791e-01 -3.41152966e-01\\n-1.01255707e-01 4.41092476e-02 -2.53071249e-01 5.10619283e-01\\n-4.62224871e-01 -5.29713035e-01 7.89511576e-02 -5.87168992e-01\\n6.97103217e-02 -2.31797859e-01 1.55059367e-01 -1.98234990e-01\\n-3.41397882e-01 -4.81898695e-01 1.97562039e-01 -7.64110833e-02\\n-1.26015544e-01 -1.26156092e-01 -8.22402760e-02 -2.57017821e-01\\n-2.70676672e-01 -4.14699286e-01 3.89312953e-01 3.31114866e-02\\n2.88290024e-01 1.20081998e-01 3.32133621e-01 1.32175371e-01\\n3.92266423e-01 -2.70836502e-01 2.52457708e-01 -3.41349840e-01\\n1.32015243e-01 -2.35268641e-02 6.92016482e-01 -3.84745777e-01\\n4.28930707e-02 1.46060780e-01 -3.31004530e-01 1.30572738e-02\\n4.11143988e-01 1.65985316e-01 -2.31660884e-02 -1.39493316e-01\\n3.06265473e-01 -6.99199498e-01 -1.43724427e-01 2.36657381e-01\\n6.16923012e-02 7.43351758e-01 2.10648519e-03 -3.30366135e-01\\n-2.90578693e-01 4.07710224e-01 -2.90386677e-01 -3.46108556e-01\\n-1.77614123e-01 3.28793190e-02 -6.89375177e-02 1.40922368e-01\\n9.36853066e-02 -1.57641545e-01 -3.29660743e-01 -9.83027965e-02\\n9.45907980e-02 1.29115433e-01 3.42749089e-01 2.69576367e-02\\n-1.82803035e-01 -1.31840378e-01 -1.43108875e-01 1.49730369e-01\\n2.39536375e-01 1.45028502e-01 5.09625226e-02 -3.04062515e-01\\n-8.94153863e-02 2.38905728e-01 -1.13587223e-01 1.95596412e-01\\n-1.28791407e-01 2.13153157e-02 -5.34991443e-01 -1.34505913e-01\\n1.73471756e-02 -1.85938418e-01 1.68719664e-01 3.35350096e-01\\n2.44830951e-01 8.30947682e-02 6.99205548e-02 -5.61019182e-01\\n3.99993271e-01 7.17108790e-03 3.62041481e-02 1.21041581e-01\\n-7.79594034e-02 4.00058389e-01 8.19663256e-02 1.39041934e-02\\n-5.06288335e-02 -3.19084488e-02 -2.94358552e-01 -3.16757530e-01\\n1.68573171e-01 -2.25850999e-01 -1.92843869e-01 4.35822785e-01\\n3.47292311e-02 -2.21330881e-01 -1.27670825e-01 1.61196843e-01\\n2.76164502e-01 -2.94274569e-01 -1.08555883e-01 -1.96797624e-02\\n8.86153504e-02 1.52969778e-01 2.85445571e-01 -2.76232988e-01\\n-4.18971442e-02 -8.45313743e-02 -1.95644066e-01 2.35355198e-01\\n1.10124663e-01 4.20086384e-02 -2.33908087e-01 -1.36608735e-01\\n5.07328451e-01 1.70550793e-01 7.78609589e-02 5.02872132e-02\\n1.75333828e-01 -3.02655101e-01 -4.79303718e-01 -1.52252227e-01\\n4.58093137e-02 -1.71378866e-01 4.33273315e-02 3.55976075e-02\\n8.17560330e-02 -8.98997039e-02 -4.32744086e-01 -2.15124294e-01\\n-1.37004077e-01 -2.48981088e-01 6.35693967e-02 -2.24558651e-01\\n-1.00511700e-01 -8.30622017e-02 -5.34694135e-01 4.26946171e-02\\n-2.82079160e-01 7.80676678e-02 1.08579271e-01 5.08486032e-02\\n-2.38745868e-01 -1.63135901e-01 1.03625499e-01 9.67741311e-02\\n-2.92306691e-01 -2.99069852e-01 7.14236423e-02 -8.59343767e-01\\n4.94412147e-03 3.79296625e-03 5.41890524e-02 -1.40833676e-01\\n-2.94086635e-02 -6.90011382e-01 2.66617864e-01 -4.95983601e-01\\n-2.37460695e-02 1.10979855e-01 -1.30929679e-01 -3.08179855e-01\\n3.11801583e-01 -1.72295824e-01 -3.71792853e-01 3.42551827e-01\\n-3.92808676e-01 2.39902049e-01 1.89362839e-01 4.22363244e-02\\n4.76108752e-02 -2.60275900e-01 1.36009946e-01 -1.12400167e-01\\n-3.75986040e-01 -1.19924292e-01 -2.79425502e-01 -1.65138841e-01\\n1.47457585e-01 -1.22716822e-01 -1.60393089e-01 1.57250330e-01\\n2.96426505e-01 1.25346288e-01 -9.16753784e-02 1.36035290e-02\\n9.15301219e-02 -4.31458682e-01 1.31564096e-01 -3.08859676e-01\\n-5.77675067e-02 9.14888158e-02 2.08364442e-01 -7.42360353e-02\\n-2.28577908e-02 -1.97931930e-01 5.47385275e-01 -2.45735154e-01\\n-3.76464665e-01 -4.39463072e-02 4.66175191e-03 -7.17428848e-02\\n1.97554618e-01 -4.51644123e-01 3.07491533e-02 3.19156408e-01\\n-5.18260710e-02 7.86872506e-02 1.99633256e-01 -2.84378347e-03\\n-1.39998689e-01 -1.35180326e-02 -5.69482148e-01 7.80524537e-02\\n7.94845879e-01 2.53013879e-01 3.41227800e-02 1.65758416e-01\\n1.58468634e-01 3.72777939e-01 5.26812792e-01 -5.97630851e-02\\n-2.18201607e-01 2.44983882e-01 -7.62373954e-03 -5.61581552e-01\\n-1.32000566e-01 8.47434974e-04 -2.65801311e-01 -3.07733893e-01\\n5.33343375e-01 3.18420976e-01 -3.47865820e-01 -3.72991621e-01\\n7.66191706e-02 -1.20570749e-01 3.00915718e-01 -2.63529527e-03\\n4.48522419e-02 -1.38788909e-01 6.62567735e-01 1.04516875e-02\\n2.37100780e-01 5.20235956e-01 1.60330720e-02 -3.78140658e-01\\n-9.93191898e-02 6.75549954e-02 1.60315990e-01 4.25393403e-01\\n-5.64666651e-02 1.36269212e-01 -2.26875678e-01 -1.07680112e-01\\n-1.11730307e-01 1.53982267e-01 2.57352054e-01 1.61221158e-02\\n3.30734968e-01 1.94610074e-01 3.11010659e-01 4.69546318e-01\\n1.15267634e-02 4.67072129e-01 2.27059931e-01 -4.58172373e-02\\n3.31745923e-01 6.03534281e-01 4.04119462e-01 1.54238120e-01\\n1.07991658e-02 9.12709832e-02 6.00442514e-02 -4.91234194e-03\\n4.15282905e-01 3.96080345e-01 3.55869412e-01 7.47924566e-01\\n2.60155320e-01 3.20422322e-01 7.33133674e-01 -6.48251653e-01\\n-4.11292762e-01 5.21633886e-02 5.22581279e-01 -1.40540078e-01\\n-1.61527500e-01 3.51454727e-02 -1.70680076e-01 1.85795859e-01\\n-6.21964812e-01 9.90042556e-03 8.23291317e-02 -2.58142431e-03\\n-3.43191884e-02 5.44497222e-02 -2.61832297e-01 4.16719951e-02\\n-2.02608690e-01 -1.48629233e-01 -3.82326931e-01 -2.71676928e-01\\n-4.20055002e-01 -7.33061284e-02 -8.24888274e-02 -3.89096923e-02\\n-1.19455002e-01 -3.11603367e-01 -8.79641771e-02 7.87033662e-02\\n3.97335887e-01 -2.37249091e-01 -7.69334435e-02 -1.83379233e-01\\n7.71632567e-02 3.02834481e-01 4.52553391e-01 -2.42218167e-01\\n1.40554637e-01 -1.06377482e-01 -3.11025590e-01 -3.51653546e-02\\n5.71132787e-02 -5.77717926e-03 1.25537947e-01 5.72487414e-01\\n-2.97436327e-01 4.81967777e-02 9.52238217e-03 3.14644516e-01\\n-4.02669251e-01 -1.04992650e-01 1.21219777e-01 2.13559121e-01\\n5.33733107e-02 1.51447132e-01 -3.50127161e-01 1.43569291e-01\\n-2.81346619e-01 -4.29895699e-01 4.98593301e-01 -1.42713800e-01\\n-1.34281993e-01 2.71864444e-01 2.11686626e-01 2.03009218e-01\\n-2.11123660e-01 -1.13683783e-01 -9.07000229e-02 3.51472408e-01\\n-7.31450040e-03 4.56066757e-01 -2.01008052e-01 -3.12674552e-01\\n-1.69694349e-01 2.36393750e-01 -1.09224215e-01 7.13696480e-02\\n-2.67092764e-01 3.68595958e-01 -4.72509973e-02 1.20998770e-01\\n2.53593236e-01 -9.74214356e-03 -2.31407747e-01 -2.27564275e-01\\n-1.87766477e-01 -4.21232134e-01 8.12575668e-02 8.63488093e-02\\n1.66095942e-01 -2.41341606e-01 -1.08485825e-01 -1.55781671e-01\\n-2.01535612e-01 -3.58665466e-01 -9.71867368e-02 1.40134916e-01]]',\n", + " 'Job Informationen Tasks: Extract data from databases, write scripts to parse, clean, combine, and process them Create dashboards and visualizations of processed data, identify trends, anomalies Investigate data problems, identify patterns Draw inferences and conclusions, communicate results through reports, charts, or tables Define and implement KPIs in conjunction with the business team Basic Qualifications: University degree in Computer Science, Electrical Engineering, or Math/Physics Masters or PhD degree is a plus SQL and database experience is a must, with Hive/Hadoop a plus Good programming skills with at least one high-level language such as Python, Java, or C/C++ Good knowledge of data structures, algorithms, and statistics Knowledge of Unix shell scripting Knowledge of Machine Learning would be a plus Fluent in English (both spoken and written), additional languages are a plus 5+ years relevant experience Benötigte Skills FH Universität ETH Master SQL Python C++ Python JAVA Shell-Scripts Englisch',\n", + " '[\"Communications\", \"Investigation\"]',\n", + " '[\"Programming (Music)\", \"Shell Script\", \"Computer Science\", \"Statistics\", \"Unix Shell\", \"Visualization\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Data Extraction\", \"Dashboard\", \"Machine Learning Methods\", \"Script Writing\", \"C (Programming Language)\", \"Apache Hive\", \"Electrical Engineering\", \"High-Level Architecture\", \"Drawing\", \"Physics\", \"Data Structures\", \"Algorithms\", \"Additives\", \"Scripting\", \"Java (Programming Language)\", \"Parsing\", \"Data Processing\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Norwegian']\"],\n", + " ['75',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.96860814e-01 3.44887048e-01 4.18311268e-01 6.42987788e-02\\n5.49855947e-01 -1.60632238e-01 -7.60548115e-02 2.33741805e-01\\n3.85293690e-03 -3.85250986e-01 -1.00991771e-01 -2.73914307e-01\\n-8.60051885e-02 5.60852103e-02 1.23740666e-01 4.40712243e-01\\n2.10842565e-01 6.70473510e-03 -7.52684474e-02 3.78748119e-01\\n4.04198393e-02 -1.20572872e-01 -2.10955739e-02 6.54336214e-01\\n3.27865958e-01 -4.52837832e-02 -1.05593726e-01 3.76893021e-02\\n-2.93820888e-01 -1.94786966e-01 3.50330234e-01 3.60151418e-02\\n-1.35590002e-01 -3.07242274e-01 1.52788103e-01 1.99274436e-01\\n-2.34797448e-01 3.43347415e-02 -1.69399083e-01 1.40004277e-01\\n-4.76627588e-01 -1.83501318e-01 8.29791743e-03 5.43206558e-02\\n-4.30294186e-01 -3.49034727e-01 9.95754451e-02 -1.81845233e-01\\n3.66332196e-02 6.48680553e-02 -5.33586919e-01 3.09596747e-01\\n-2.28925571e-01 -2.48519540e-01 3.49494070e-01 6.64280176e-01\\n1.17803238e-01 -4.88737762e-01 -3.91648233e-01 -3.63320202e-01\\n-4.55902666e-02 -1.13983192e-01 3.27034444e-02 -2.60845512e-01\\n4.11702573e-01 -1.43740445e-01 2.91686114e-02 2.89151549e-01\\n-8.67187321e-01 -1.14951365e-01 -4.15841609e-01 7.68027594e-03\\n-4.90776718e-01 1.97851080e-02 -3.89639020e-01 -1.84735030e-01\\n-2.03368515e-02 4.76683944e-01 -2.18808297e-02 1.53994739e-01\\n-1.93965256e-01 2.92768687e-01 -3.28353584e-01 2.08600566e-01\\n3.39791447e-01 1.58946797e-01 1.72966585e-01 2.85977483e-01\\n-4.48067993e-01 3.26938391e-01 3.01893115e-01 -2.35333920e-01\\n2.83533931e-01 1.43122420e-01 2.94796169e-01 1.95423141e-01\\n1.10316023e-01 2.62607336e-01 -1.41405299e-01 1.97389156e-01\\n1.77302569e-01 -2.11973563e-01 -5.77723011e-02 -1.51757509e-01\\n4.66307215e-02 -1.21968903e-01 2.33216006e-02 2.01474980e-01\\n-3.48602384e-01 2.91850716e-01 1.18034214e-01 -1.54592186e-01\\n-9.68825817e-02 -4.61926162e-01 -6.63943663e-02 -4.83498536e-02\\n3.31327245e-02 2.76550680e-01 2.49577552e-01 1.99359983e-01\\n2.08295792e-01 1.71896014e-02 1.77252889e-01 9.28946495e-01\\n-6.68200031e-02 2.05227554e-01 -2.60475755e-01 3.75699133e-01\\n2.15705931e-01 -2.50339955e-01 1.58410624e-01 2.42954895e-01\\n8.20262358e-03 -1.29366100e-01 -2.53765494e-01 3.23635042e-01\\n-1.97265580e-01 -1.58971861e-01 -2.35874146e-01 1.43298998e-01\\n-1.32214040e-01 -5.58442056e-01 5.85828841e-01 3.11824419e-02\\n7.42080212e-02 -7.46050179e-02 -8.57746378e-02 -4.10121605e-02\\n-1.85835615e-01 3.00886959e-01 4.28445674e-02 2.43591174e-01\\n-2.85249054e-01 -2.76624262e-01 -9.27137882e-02 2.80250311e-01\\n-2.50699013e-01 2.23866235e-02 -2.20246643e-01 -1.09423146e-01\\n3.43225181e-01 1.69671595e-01 -4.59755123e-01 1.78900361e-01\\n-4.18040380e-02 -3.04155052e-01 -2.19227076e-02 3.29643071e-01\\n-1.41281307e-01 2.50280350e-01 -5.20857498e-02 -6.49947897e-02\\n5.89169621e-01 2.31374398e-01 2.89622128e-01 -2.26045446e-03\\n2.75445729e-01 -1.53110206e-01 2.59232163e-01 1.00722864e-01\\n-5.21611035e-01 4.42454338e-01 -1.14062294e-01 -1.69909835e-01\\n1.13117598e-01 3.67181115e-02 4.13286358e-01 -2.63497382e-01\\n-7.07108453e-02 -1.98499203e-01 -3.56016397e-01 -3.78715783e-01\\n-2.90088266e-01 -3.64230312e-02 3.65426838e-01 -4.69793051e-01\\n-8.84761009e-03 2.49416679e-01 -6.12476766e-01 -1.58732265e-01\\n1.95361480e-01 2.30769902e-01 8.49370733e-02 1.05911754e-02\\n-1.00727543e-01 -6.15024865e-01 7.96834826e-02 -4.60210770e-01\\n-3.49452645e-01 8.61413553e-02 -2.44263411e-01 5.97687773e-02\\n-1.60614122e-03 6.56268820e-02 -1.20289892e-01 1.67419553e-01\\n-4.15087909e-01 4.28542979e-02 1.74081236e-01 1.29645616e-01\\n3.52620065e-01 5.09687811e-02 -4.16413695e-01 5.42360187e-01\\n-1.77880958e-01 4.42510903e-01 2.65277028e-01 -8.83127034e-01\\n5.55521905e-01 2.30198085e-01 -9.16575715e-02 -2.63767302e-01\\n4.45501894e-01 -4.54591215e-01 -5.40335961e-02 7.24373534e-02\\n-2.35520020e-01 -2.41464645e-01 3.15704733e-01 -1.13929532e-01\\n-2.59803593e-01 6.78429484e-01 1.02698766e-01 1.46381631e-01\\n3.78542066e-01 -2.83877075e-01 -1.76055610e-01 -5.64239174e-02\\n-1.50965393e-01 -1.40857562e-01 -5.81143856e-01 1.23960361e-01\\n-1.10634290e-01 -5.12252092e-01 -7.80403093e-02 -5.08696556e-01\\n-2.25422829e-01 -2.84876466e-01 -2.59731680e-01 2.96742439e-01\\n1.92434937e-01 1.74000308e-01 -1.05507866e-01 -4.82587367e-02\\n1.97027866e-02 -6.91412091e-01 -5.02098352e-02 7.15362057e-02\\n4.32042360e-01 2.59835809e-01 2.61846900e-01 -8.58775452e-02\\n1.63848355e-01 4.10003364e-01 -3.58777672e-01 -4.43524987e-01\\n1.27500042e-01 9.73021537e-02 -4.79912274e-02 -1.67048678e-01\\n1.34975895e-01 4.04518425e-01 -2.28389919e-01 1.31865010e-01\\n3.94292101e-02 -3.70270871e-02 3.49040776e-01 -2.57066917e-02\\n-2.43934885e-01 -2.26500019e-01 -8.27875957e-02 2.37687081e-01\\n-5.93317926e-01 -3.17269415e-01 4.88442451e-01 2.47317463e-01\\n8.97993967e-02 2.22598076e-01 2.77755946e-01 -1.23002328e-01\\n-2.06953898e-01 -9.76430625e-02 2.68041551e-01 1.71976075e-01\\n1.31365255e-01 1.24579370e-01 -1.80519164e-01 -5.35281420e-01\\n-3.50417495e+00 -1.75089076e-01 1.43602312e-01 -2.29981154e-01\\n2.04089463e-01 -1.85537279e-01 2.12182850e-01 2.53077671e-02\\n-3.28020453e-01 -8.48561078e-02 -1.88551605e-01 -1.03937112e-01\\n4.07386757e-03 2.98340470e-01 1.08108923e-01 1.88793227e-01\\n1.36490390e-01 -1.91399798e-01 3.84088070e-03 4.26874876e-01\\n-9.22174305e-02 -6.96362674e-01 -2.55561713e-02 3.61620747e-02\\n1.48184657e-01 6.73779026e-02 -4.15742129e-01 -3.92589383e-02\\n-3.21821988e-01 -3.23158115e-01 1.86734870e-01 -2.35624462e-01\\n-2.44609118e-01 2.20956743e-01 1.81667164e-01 -1.17119715e-01\\n-1.62027944e-02 -2.33508959e-01 2.42001936e-02 -5.44063151e-01\\n8.13470855e-02 -5.98324299e-01 8.88843164e-02 -5.79190031e-02\\n6.72810674e-01 -2.52187073e-01 2.44479910e-01 9.77295414e-02\\n1.59578815e-01 2.52789617e-01 1.10288128e-01 5.62349260e-02\\n-3.28595877e-01 -3.20659429e-01 -1.31877035e-01 -2.53720462e-01\\n5.78959882e-01 4.40056324e-01 -1.70335010e-01 6.36792406e-02\\n9.78659373e-03 -3.37250173e-01 -5.06300986e-01 -3.50638479e-01\\n-2.08132833e-01 -8.52709711e-02 -6.69044137e-01 -3.54889631e-01\\n-8.23016539e-02 -1.18027486e-01 -5.46901338e-02 6.62365854e-01\\n-3.13018799e-01 -3.51793170e-01 3.96526530e-02 -5.07278740e-01\\n3.19762141e-01 -2.42803395e-01 6.55853376e-02 -2.58750886e-01\\n-3.28336746e-01 -4.62177157e-01 1.94543123e-01 -3.54599766e-02\\n-2.66761065e-01 -1.32800430e-01 5.46680465e-02 -1.52359337e-01\\n-3.96212727e-01 -6.26075149e-01 4.42959160e-01 3.95017713e-02\\n3.61081600e-01 6.05906993e-02 3.98483485e-01 -6.88349605e-02\\n3.56861442e-01 -9.98112038e-02 -1.31054252e-01 -4.97816831e-01\\n-1.97644290e-02 5.73071130e-02 5.34489989e-01 -2.34072521e-01\\n1.79413199e-01 9.32373255e-02 -1.95057124e-01 3.07738613e-02\\n4.13011312e-01 1.68356635e-02 8.14857408e-02 -6.31378358e-03\\n2.66395926e-01 -5.47979355e-01 -2.69027323e-01 1.55107424e-01\\n1.08892009e-01 7.03123152e-01 8.41865316e-03 -4.54086185e-01\\n-2.29289770e-01 4.41076189e-01 -6.45007417e-02 -1.18308276e-01\\n-2.19390437e-01 6.81811348e-02 -2.17581362e-01 2.63548553e-01\\n6.64121285e-02 -1.17072552e-01 -2.45330110e-01 -1.29564121e-01\\n-5.84770665e-02 3.63042742e-01 2.81433463e-01 1.61634088e-02\\n-7.70878568e-02 -2.21706539e-01 -3.57245468e-02 2.05241695e-01\\n2.32138753e-01 3.97327662e-01 1.66679710e-01 -3.01004171e-01\\n2.78272890e-02 3.06736737e-01 -3.17709178e-01 3.02906156e-01\\n-1.89054146e-01 1.42882586e-01 -6.38502955e-01 -1.44051403e-01\\n-2.66994298e-01 -4.27788824e-01 3.30012947e-01 3.58485937e-01\\n1.79589659e-01 -7.01749548e-02 6.38324022e-02 -5.05131185e-01\\n3.73124063e-01 1.12982221e-01 1.53083429e-01 7.08051994e-02\\n2.80801230e-03 6.69723630e-01 -1.77098811e-02 -1.62208453e-01\\n-6.04958236e-02 -1.97706092e-02 -2.60907173e-01 -3.42045695e-01\\n2.55826283e-02 -4.81955439e-01 -2.02252090e-01 4.90829349e-01\\n2.33723909e-01 -4.75820377e-02 -3.21290106e-01 1.33100957e-01\\n4.35751788e-02 -1.92549407e-01 -2.90783107e-01 -2.42837332e-02\\n2.01531097e-01 2.00762242e-01 2.64001667e-01 -4.20604885e-01\\n-3.78113724e-02 5.16359285e-02 -2.20098253e-02 4.36224848e-01\\n4.84443493e-02 2.14425087e-01 -6.25033826e-02 -1.04120679e-01\\n6.13250196e-01 -1.28150564e-02 -1.69442758e-01 -1.19935304e-01\\n7.93749243e-02 -1.61210597e-01 -4.15824413e-01 5.83286397e-02\\n-2.43440513e-02 -3.14145714e-01 8.84527341e-02 1.02038935e-01\\n1.09011732e-01 -5.32904565e-02 -5.95097363e-01 -1.72616392e-01\\n-3.80835503e-01 -6.19084686e-02 4.15815078e-02 -5.36376238e-01\\n3.89634334e-02 1.94169749e-02 -5.49118102e-01 2.83013165e-01\\n-1.59557611e-01 2.34637130e-02 3.27658169e-02 1.00415193e-01\\n-2.10372925e-01 -1.04411289e-01 1.39792547e-01 1.90717608e-01\\n-2.65638351e-01 -1.59193531e-01 4.23223004e-02 -9.18339968e-01\\n1.52262151e-01 7.36924708e-02 -1.32943735e-01 1.04808800e-01\\n3.55764218e-02 -7.74015486e-01 1.29943520e-01 -3.92476737e-01\\n-6.33490160e-02 1.50974005e-01 -2.50673473e-01 -3.95439118e-01\\n2.08995610e-01 3.50915939e-02 -4.07000482e-01 4.15662140e-01\\n-5.61714411e-01 3.19586158e-01 8.56264532e-02 7.89562017e-02\\n8.55175704e-02 -2.07664788e-01 1.59763098e-01 -2.32482165e-01\\n-3.70378107e-01 -2.01556742e-01 -2.06207275e-01 -3.23712707e-01\\n-8.40868428e-03 -3.26630116e-01 -1.08477421e-01 2.01712493e-02\\n4.21023816e-01 1.32078126e-01 -9.07460302e-02 -2.76236713e-01\\n6.86943457e-02 -4.73630935e-01 1.35386229e-01 -2.70865858e-01\\n-1.13083154e-03 -1.17591299e-01 2.10089207e-01 2.35687066e-02\\n2.07215667e-01 -3.16815883e-01 6.22050405e-01 -2.76310802e-01\\n-3.45916152e-01 -1.43903702e-01 6.32182583e-02 7.51021132e-02\\n2.37726122e-01 -3.78808647e-01 5.21192588e-02 2.72124439e-01\\n9.57002863e-02 7.74144009e-03 2.59716749e-01 -1.75252408e-01\\n-1.14230126e-01 1.79250881e-01 -5.00780165e-01 1.60120592e-01\\n8.63532364e-01 8.99323672e-02 2.56249458e-01 1.37095362e-01\\n1.20234236e-01 2.59131551e-01 4.77859616e-01 1.57975741e-02\\n-8.44413191e-02 2.87263215e-01 5.32845482e-02 -4.52349544e-01\\n-1.33555338e-01 -1.50623873e-01 -1.66257456e-01 -2.96008676e-01\\n6.02666676e-01 2.33034328e-01 -3.36251676e-01 -4.54831868e-01\\n-7.99099877e-02 -1.00721851e-01 4.06935215e-01 1.51048526e-02\\n-1.40468761e-01 -1.76450998e-01 4.19293970e-01 -6.43341243e-02\\n3.23634148e-01 5.25896311e-01 -1.65244415e-01 -2.80985773e-01\\n-1.03312410e-01 2.46023715e-01 1.93510264e-01 4.52180237e-01\\n-1.55434579e-01 1.74752906e-01 -1.07079193e-01 1.43060103e-01\\n-1.89065054e-01 -8.78895074e-03 3.01000088e-01 6.83068782e-02\\n2.19076112e-01 6.77633360e-02 4.65387374e-01 5.59907198e-01\\n1.90063655e-01 5.31919301e-01 3.54384571e-01 -1.32503854e-02\\n3.20093125e-01 6.66606545e-01 3.78609300e-01 1.04473203e-01\\n-3.07683758e-02 1.38937786e-01 6.82053268e-02 -7.74407685e-02\\n2.82814741e-01 3.94464582e-01 2.25611493e-01 8.85194421e-01\\n3.46412063e-01 3.44777614e-01 7.24910855e-01 -6.45051658e-01\\n-4.96049970e-01 9.21939537e-02 6.03345633e-01 -4.64121521e-01\\n5.40326983e-02 1.62939936e-01 -2.49493226e-01 2.17103228e-01\\n-5.56812644e-01 -2.11038455e-01 4.21759440e-03 1.22597618e-02\\n1.01786721e-02 -9.87417027e-02 -9.09411311e-02 1.19228959e-01\\n-1.19134754e-01 -1.98214710e-01 -2.97854602e-01 -1.21630073e-01\\n-2.32164294e-01 -5.52714802e-02 -1.02314711e-01 -2.53677312e-02\\n-2.29588710e-02 -3.22520316e-01 -6.94573820e-02 6.73100026e-03\\n3.18767995e-01 -2.02134550e-01 -2.14769408e-01 -7.11566284e-02\\n1.59569532e-01 2.47494087e-01 5.84787607e-01 5.20478673e-02\\n1.97300874e-02 -1.49446592e-01 -1.87031940e-01 3.72363031e-02\\n6.18296191e-02 1.31450161e-01 7.60812964e-03 3.67187589e-01\\n-2.83870757e-01 -2.00773999e-01 1.73787057e-01 2.05903783e-01\\n-3.76042515e-01 -1.09815635e-01 -4.55926470e-02 2.24547386e-01\\n1.80376992e-02 1.47408113e-01 -2.86194414e-01 1.76045194e-01\\n-2.14229807e-01 -5.73754609e-01 4.62805003e-01 -2.06788361e-01\\n-1.24913402e-01 7.54182637e-02 3.20095986e-01 2.22538635e-01\\n-2.22011238e-01 -3.66530903e-02 -1.39946029e-01 2.69055218e-01\\n-8.69691595e-02 3.73143971e-01 -2.42382780e-01 -2.33777374e-01\\n-2.87254810e-01 3.02292496e-01 2.91829240e-02 1.88529760e-01\\n-2.78444849e-02 4.86935914e-01 -3.09117362e-02 1.36623368e-01\\n3.12452167e-01 3.34689692e-02 -2.60901988e-01 -3.44393373e-01\\n-2.40466744e-01 -8.69643986e-02 6.19944409e-02 -2.59186383e-02\\n1.95385382e-01 -3.49411130e-01 -1.29450992e-01 -2.11682081e-01\\n-1.64196745e-01 -4.55375612e-01 -9.15977806e-02 2.57502776e-02]]',\n", + " 'Job Informationen Responsibilities: Responsible for delivering projects in the Big Data (Engineer and Analytics) field A key position as Big Data Ingenieur, where you are designing and building an analytics platform using state of the art Big Data technologies and provide services to enable Data Scientists to build advanced analytics models You are taking an active part of our transformation into a more data and analytical insights driven bank Within the highly motivated team, you collaborate closely with business teams to understand data and functional requirements You design and build data pipelines to ingest, integrate, standardize, clean and publish data You are responsible for defining and crafting integration patterns with downstream applications You provide input into overall IT architecture of the solution, including technical environment configuration, data modelling, data integration, data presentation, information security and other IT architecture related topics You support Data Scientist in their day-to-day work on a variety of topics, including tools and data analysis methods You operationalize analytical models developed by the Data Scientists to embed them into the bank’s business processes Your profile: A university degree or equivalent education in IT or another technical specialization, ideally with focus on Data Management You have proven work experience of at least two years as a Data Engineer using Big Data technologies Experience with Hadoop based analytical solutions, ideally on Cloudera distribution, as well as practical skills in creating data processing pipelines using Spark, Scala, Python or similar tools Good knowledge of SQL, Hive and Impala databases Ideally experience with Jupyter Notebook, Hue, other end user tools If you already had experience with Tableau, Splunk or an agile work environment you have an advantage You are able to work in a dynamic environment, be comfortable with changing priorities and tight deadlines, manage you own workload with minimum supervision You build strong collaborative relationships with colleagues in IT and business groups Excellent verbal and written communication skills in English and German Benötigte Skills Scala Python Python Englisch Security Datawarehouse',\n", + " '[\"Collaboration\", \"Management\", \"Supervision\", \"Team Motivation\", \"Integration\", \"Positivity\", \"Written Communication\"]',\n", + " '[\"Information Presentation Facility\", \"Python Server Pages\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Agility\", \"Analytics\", \"Data Management\", \"Data Modeling\", \"Data Engineering\", \"Scala (Programming Language)\", \"Activism\", \"Apex Data Loader\", \"Functional Requirement\", \"Information Security Management\", \"Jupyter Notebook\", \"Data Pipeline\", \"Idealization\", \"Splunk\", \"Hostile Work Environment\", \"Pipelining\", \"Operationalization\", \"Business Process\", \"Apache Hive\", \"Electronic Data Processing\", \"Big Data\", \"Survey Data Analysis\", \"Transformation (Genetics)\", \"Service Provider\", \"Banking\", \"Amazon Data Pipeline\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Kongo', 'Maltes']\"],\n", + " ['75',\n", + " 'data analyst (w/m)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.11146176e-01 2.39136994e-01 2.90398657e-01 6.72261640e-02\\n4.67736870e-01 -9.18641686e-02 3.97096761e-02 3.05283010e-01\\n-3.36161889e-02 -3.97795141e-01 1.86883882e-02 -2.00990930e-01\\n-2.05021411e-01 -2.35511735e-02 -6.09298535e-02 3.74364942e-01\\n3.14212054e-01 1.27775088e-01 -6.98458254e-02 3.12407762e-01\\n1.45176515e-01 4.35345173e-02 -1.98234499e-01 6.25866890e-01\\n4.50871587e-01 -1.47546995e-02 -1.56236291e-02 1.13502875e-01\\n-2.38367617e-01 -2.32878581e-01 3.74210626e-01 2.20305279e-01\\n-1.62239343e-01 -3.08662742e-01 -9.92584676e-02 1.70678794e-01\\n-5.39318696e-02 8.47874209e-02 -2.23041736e-02 1.64997160e-01\\n-4.43314523e-01 -1.50232136e-01 -4.09958661e-02 1.29467383e-01\\n-2.19754845e-01 -2.51332641e-01 1.42236307e-01 -1.28595188e-01\\n2.61874795e-01 5.05346768e-02 -5.89948416e-01 4.53012794e-01\\n-2.18548268e-01 -1.04258947e-01 1.92739040e-01 5.31125367e-01\\n6.16231486e-02 -4.91898745e-01 -4.69496667e-01 -2.60333568e-01\\n1.46780655e-01 -1.56618625e-01 2.47780476e-02 -3.58066887e-01\\n4.70109582e-01 9.63611081e-02 1.18217655e-01 2.74166346e-01\\n-7.71098852e-01 2.31758263e-02 -3.16714168e-01 1.75135082e-03\\n-4.54640388e-01 -7.57691935e-02 -3.10515761e-01 1.04245499e-01\\n-1.58402070e-01 3.70413184e-01 1.12624932e-02 2.32621282e-02\\n-1.45271048e-01 2.29412317e-01 -2.66939670e-01 2.36535490e-01\\n2.75408685e-01 7.42758662e-02 1.51272535e-01 2.91059673e-01\\n-4.29618418e-01 4.08743739e-01 2.19384152e-02 -2.38176927e-01\\n2.33093336e-01 2.21849307e-01 3.86615813e-01 1.24891602e-01\\n1.73213035e-01 1.52267575e-01 -2.33110532e-01 3.92894864e-01\\n2.57550716e-01 -4.08816308e-01 6.20822236e-02 -1.45078123e-01\\n9.10583436e-02 -8.66806731e-02 3.43637615e-02 1.48119822e-01\\n-2.32768223e-01 4.60640490e-01 1.36696815e-01 -1.41709283e-01\\n-6.29564077e-02 -4.81269240e-01 -1.62305698e-01 -3.27140689e-02\\n7.92074353e-02 4.39742059e-02 1.67982981e-01 2.54728466e-01\\n2.62138724e-01 6.84838220e-02 1.69045091e-01 7.56495953e-01\\n-1.26601845e-01 1.12024628e-01 -1.41819611e-01 3.01273346e-01\\n2.21235931e-01 -2.70826876e-01 2.78461546e-01 4.53133732e-01\\n1.90669015e-01 -1.73137933e-01 -2.82631457e-01 2.21721619e-01\\n-1.44065320e-01 -9.34531391e-02 -3.91228259e-01 1.36929303e-01\\n2.69087613e-01 -3.57735693e-01 6.72580719e-01 1.49582848e-01\\n2.45194852e-01 7.80583099e-02 -1.55788623e-02 -1.30698770e-01\\n-4.36149128e-02 2.64012069e-01 1.34398162e-01 3.10557485e-01\\n-2.63451964e-01 -1.91503137e-01 -1.76833093e-01 8.09168667e-02\\n-4.48427796e-01 7.21118152e-02 -9.89824533e-02 -2.68950202e-02\\n2.14500323e-01 -2.85551287e-02 -3.70262802e-01 1.00155491e-02\\n-8.70728195e-02 -1.81526154e-01 1.52622461e-01 4.11153823e-01\\n-9.36509855e-03 2.46026963e-01 -1.35904059e-01 -5.58928922e-02\\n7.83346057e-01 1.72828659e-01 1.17035866e-01 -2.60019824e-02\\n3.52899522e-01 -3.27306613e-02 2.50832081e-01 1.74996436e-01\\n-7.91738033e-01 3.01586330e-01 -5.47335446e-02 -3.43929827e-01\\n2.41265878e-01 8.60665664e-02 4.28674698e-01 -4.01118368e-01\\n1.48426099e-02 -2.10689008e-01 -3.43077928e-01 -2.08893120e-01\\n-4.12101448e-01 -7.70077705e-02 3.63120854e-01 -3.92112583e-01\\n-1.26116022e-01 1.61451533e-01 -5.51733792e-01 -1.62621871e-01\\n8.11881199e-02 4.88931276e-02 1.87472507e-01 1.75200582e-01\\n-4.73893993e-02 -6.77190542e-01 -1.61201674e-02 -4.77974623e-01\\n-5.38287342e-01 1.16164260e-01 -4.74248141e-01 3.79593611e-01\\n1.23104841e-01 -2.29068901e-02 -2.15525210e-01 2.24809483e-01\\n-2.39478484e-01 -2.39135846e-02 9.75539014e-02 5.92561439e-02\\n1.82818696e-01 5.38635775e-02 -4.57788795e-01 3.51053119e-01\\n-1.28339663e-01 5.41842461e-01 1.60109580e-01 -6.45862103e-01\\n5.85337758e-01 2.81759024e-01 -5.23681045e-02 -3.67121845e-01\\n5.14721453e-01 -2.45323122e-01 -1.36794776e-01 3.26134078e-02\\n-3.29582632e-01 -3.10149074e-01 1.65862188e-01 5.08003943e-02\\n-2.42900312e-01 5.14442205e-01 1.48581460e-01 7.98721611e-03\\n2.41281405e-01 -2.76104212e-01 -2.72475537e-02 2.36466959e-01\\n-1.76059365e-01 -2.04537705e-01 -3.59438539e-01 -8.69369209e-02\\n-6.31464422e-02 -4.35637712e-01 -7.06826448e-02 -3.22943330e-01\\n-2.48178348e-01 -3.95703912e-01 -3.32487941e-01 4.96108174e-01\\n2.13452309e-01 1.44497991e-01 2.19330117e-02 3.61012085e-03\\n-1.15730695e-01 -7.52296329e-01 2.15175860e-02 1.27884224e-01\\n4.23383772e-01 2.19577149e-01 1.08746946e-01 -2.23259747e-01\\n1.15951747e-01 6.33750677e-01 -4.12900329e-01 -4.04958874e-01\\n8.42166096e-02 2.42692947e-01 -1.09316796e-01 -1.01274751e-01\\n3.74676869e-03 5.04493177e-01 -2.80864596e-01 6.11973070e-02\\n-7.58251175e-02 -2.68021524e-01 3.58317584e-01 -1.20434061e-01\\n-2.82962710e-01 -2.45179549e-01 -2.45533884e-01 1.78346798e-01\\n-5.27869880e-01 -4.23619866e-01 3.87473166e-01 2.88734734e-01\\n1.86963141e-01 3.50037329e-02 1.02335550e-01 -4.64270711e-02\\n-1.57854274e-01 -4.39671606e-01 2.50005364e-01 1.52343020e-01\\n6.13475889e-02 2.33513087e-01 -1.95682943e-01 -5.73676109e-01\\n-3.49422789e+00 -6.75360784e-02 2.13890582e-01 -2.54013956e-01\\n2.12645367e-01 4.69190069e-02 7.90548399e-02 -1.11705221e-01\\n-3.43133509e-01 1.22256674e-01 -2.37963364e-01 -2.34372005e-01\\n-3.24390344e-02 4.20925260e-01 1.61963359e-01 6.78747147e-02\\n2.07169950e-01 -2.55124152e-01 -1.45022094e-01 3.11259210e-01\\n-1.39891416e-01 -4.61999357e-01 6.88784420e-02 -4.90603000e-02\\n1.85138121e-01 3.43550116e-01 -1.98736668e-01 -1.55047953e-01\\n-2.49702513e-01 -2.97027469e-01 1.72101911e-02 -2.60298371e-01\\n-1.39920339e-01 2.30585366e-01 1.44387588e-01 1.01313949e-01\\n-6.12024665e-02 -3.14160198e-01 -6.77473843e-02 -5.13232589e-01\\n-4.88445498e-02 -3.88827294e-01 -3.11686601e-02 -1.89167485e-01\\n7.96588957e-01 -1.73933059e-01 1.31757602e-01 5.66122532e-02\\n1.86294615e-01 1.30174458e-01 7.95167387e-02 5.70563860e-02\\n-1.87310830e-01 -1.92057058e-01 -2.69195378e-01 -2.04498693e-01\\n6.55414701e-01 2.99004734e-01 -1.74768910e-01 -1.14557110e-01\\n2.02871352e-01 -4.24003184e-01 -3.15629900e-01 -2.77638942e-01\\n-9.69398096e-02 -2.74193108e-01 -4.93626118e-01 -3.56409341e-01\\n-1.75905108e-01 -3.78155485e-02 -1.10586822e-01 5.74131727e-01\\n-3.95922482e-01 -3.69004101e-01 -2.52287053e-02 -4.76713926e-01\\n1.79998487e-01 -2.77745962e-01 2.28470340e-02 -4.69184443e-02\\n-3.60951602e-01 -6.40597463e-01 -1.33063942e-01 -6.86763898e-02\\n-1.69955894e-01 -3.69998127e-01 -4.64197919e-02 -1.25331938e-01\\n-4.13509786e-01 -7.01379120e-01 3.71452808e-01 3.18277925e-02\\n2.77836591e-01 2.33947918e-01 2.59112298e-01 7.26864636e-02\\n4.94323790e-01 -1.10832341e-01 3.34795713e-02 -3.13854486e-01\\n6.31374940e-02 -1.89838409e-01 6.00906670e-01 -2.14308321e-01\\n-1.43257463e-02 5.43035530e-02 -2.88209081e-01 -1.76593103e-02\\n3.35261792e-01 -4.51940298e-02 6.09509535e-02 -1.37918174e-01\\n4.07751232e-01 -2.84172863e-01 -2.38206550e-01 2.26504251e-01\\n8.88334662e-02 5.83834469e-01 8.97526965e-02 -3.04954678e-01\\n-9.16488841e-02 4.44887698e-01 -2.00251624e-01 -4.79343049e-02\\n-1.48604453e-01 1.67129170e-02 -1.38177127e-01 2.52459079e-01\\n7.11158812e-02 -1.89010307e-01 -7.25988001e-02 -2.97308490e-02\\n-4.05714177e-02 2.88314700e-01 2.54718333e-01 -1.05478473e-01\\n-1.06964335e-02 -1.98784798e-01 -9.49203745e-02 1.21635526e-01\\n2.06361264e-01 3.38137209e-01 6.96667433e-02 -2.31046945e-01\\n-1.68194458e-01 3.03568035e-01 4.44073826e-02 2.44361777e-02\\n-1.92213088e-01 8.31995904e-02 -4.74086881e-01 -2.16079816e-01\\n-3.15263063e-01 -3.54919076e-01 2.37229243e-01 2.40904644e-01\\n1.36307985e-01 -2.25260202e-02 1.29438326e-01 -5.55113852e-01\\n2.18901113e-01 2.41248056e-01 2.08037421e-01 5.78624681e-02\\n-1.57106131e-01 3.58365804e-01 -6.48141950e-02 -1.53316185e-01\\n-1.52344659e-01 1.53613091e-01 -1.76706254e-01 -1.65021494e-01\\n2.33898431e-01 -4.29733545e-01 -1.07338585e-01 4.52064395e-01\\n2.15695009e-01 -1.56864017e-01 -3.44151855e-01 2.93253422e-01\\n-1.32898182e-01 -2.37496436e-01 -2.68674761e-01 -1.11861162e-01\\n1.70387059e-01 1.13470405e-01 1.85515732e-01 -2.20539033e-01\\n-8.65486041e-02 4.12845165e-02 -1.63014472e-01 3.14923882e-01\\n3.07883285e-02 -6.74817115e-02 -3.19910228e-01 -6.12908341e-02\\n4.40704405e-01 7.67102838e-03 -5.92696741e-02 -8.13967586e-02\\n1.94043547e-01 -2.70835936e-01 -4.43066657e-01 -3.19895800e-03\\n-3.60884927e-02 -2.51245588e-01 -4.75164205e-02 2.03575760e-01\\n-1.11812867e-01 1.17998362e-01 -5.84350884e-01 -2.75305152e-01\\n-4.60165620e-01 -3.09753537e-01 2.93318257e-02 -2.59893268e-01\\n7.34278336e-02 -1.64992779e-01 -4.57648486e-01 1.76786691e-01\\n-2.39894867e-01 -5.06835207e-02 1.40728399e-01 1.23337083e-01\\n-3.51873070e-01 -2.61124432e-01 2.81367507e-02 1.68059170e-01\\n-3.21979046e-01 -1.81134939e-01 8.52563977e-02 -8.83151948e-01\\n1.40701473e-01 3.83930728e-02 -1.60850376e-01 -3.55063006e-03\\n-1.63479403e-01 -5.42055547e-01 1.95036083e-03 -5.38012087e-01\\n-8.35062563e-02 1.22421332e-01 -2.37064302e-01 -2.10910305e-01\\n1.84065998e-01 -1.50267959e-01 -4.04174268e-01 4.15074587e-01\\n-2.71812558e-01 4.20973003e-01 -1.73982680e-01 1.04589418e-01\\n-6.80067912e-02 -1.81918353e-01 4.02636938e-02 -2.39861324e-01\\n-4.48657870e-01 -2.48203337e-01 -1.94506347e-01 -1.20701671e-01\\n1.56704098e-01 -4.47014183e-01 -6.41594082e-02 1.65948048e-01\\n3.35748494e-01 6.74316064e-02 -6.04099967e-02 -8.26721340e-02\\n1.63759202e-01 -6.51322722e-01 -5.36895804e-02 -2.14780778e-01\\n-8.72551128e-02 -6.94406480e-02 2.19604433e-01 6.30603731e-03\\n2.03320086e-01 -2.10058764e-01 3.88966173e-01 -4.42216754e-01\\n-1.75246209e-01 1.17239505e-01 7.84682333e-02 -1.87138811e-01\\n1.87136471e-01 -5.00908196e-01 1.68356467e-02 4.43145037e-01\\n1.45313323e-01 2.06638202e-02 1.32052138e-01 5.64344712e-02\\n-1.09408908e-01 2.68779397e-01 -2.59354949e-01 9.61166695e-02\\n6.03839278e-01 2.77027667e-01 1.16187841e-01 1.03234105e-01\\n1.24363542e-01 2.59936631e-01 4.98579562e-01 1.73416823e-01\\n1.98958255e-02 1.88118875e-01 1.11507840e-01 -4.11275744e-01\\n1.81703977e-02 1.41565993e-01 -2.49772146e-01 -2.42393494e-01\\n5.63166380e-01 4.73994672e-01 -6.61361516e-01 -2.61521369e-01\\n-5.62981702e-02 -1.01802915e-01 4.04787481e-01 4.12870385e-02\\n-1.20411702e-02 -1.45893574e-01 4.82355952e-01 -5.69226071e-02\\n-5.45800570e-03 4.72445220e-01 -7.99961537e-02 -9.88873094e-02\\n-3.49095240e-02 2.28066310e-01 6.70130253e-02 6.20501220e-01\\n-1.72415584e-01 2.73590624e-01 -1.94834247e-01 -1.59259641e-03\\n-7.86950514e-02 1.40784889e-01 2.50235498e-01 1.97083335e-02\\n2.09688634e-01 3.72091979e-02 3.98986816e-01 5.09649038e-01\\n4.81452644e-02 4.27708000e-01 2.37353697e-01 -1.38520095e-02\\n3.19628447e-01 5.18140674e-01 2.48830721e-01 1.79288089e-01\\n-5.46329245e-02 2.34286606e-01 1.31370991e-01 -5.62561564e-02\\n4.93212581e-01 3.49074483e-01 6.64937645e-02 8.27935815e-01\\n2.76108474e-01 4.11038131e-01 5.29971719e-01 -5.89560151e-01\\n-2.87481576e-01 2.62181938e-01 5.14390290e-01 -2.24307090e-01\\n-1.83915887e-02 8.86418819e-02 -2.49171734e-01 3.58812451e-01\\n-4.94286478e-01 -1.42611936e-01 5.19214571e-03 1.49646103e-01\\n3.65920514e-02 -1.87115803e-01 -3.37863564e-01 -5.69242164e-02\\n-8.12890530e-02 1.14821516e-01 -4.45865571e-01 -2.48538092e-01\\n-2.85956979e-01 -7.40103945e-02 -5.68135306e-02 -1.03276350e-01\\n1.20315842e-01 -3.10691357e-01 -4.02096696e-02 -2.27799919e-02\\n3.91716212e-01 -2.66793311e-01 -1.35580033e-01 -9.92377102e-02\\n2.05038175e-01 3.00713867e-01 5.45770109e-01 -1.16883837e-01\\n6.89519048e-02 -1.42826974e-01 -1.73881114e-01 8.33186507e-02\\n1.43051641e-02 1.29887804e-01 1.29729494e-01 2.14920774e-01\\n-2.70766467e-01 -2.13403910e-01 1.92004085e-01 3.33850175e-01\\n-4.80226636e-01 -6.80399314e-02 -1.25760242e-01 2.23670140e-01\\n-2.79381480e-02 1.29504248e-01 -2.66258895e-01 1.70314372e-01\\n-2.64819741e-01 -3.20332706e-01 3.34748477e-01 -3.92053574e-02\\n-4.73633558e-02 1.37564570e-01 3.22856426e-01 1.63980454e-01\\n-1.50034964e-01 -6.38918132e-02 -8.22629109e-02 2.60850549e-01\\n-1.00972950e-01 3.52459103e-01 -1.36665376e-02 -3.84961545e-01\\n-2.29706496e-01 2.25182116e-01 -8.39608833e-02 1.11901775e-01\\n-1.02839261e-01 3.37843090e-01 -2.22788919e-02 5.00880219e-02\\n4.07228440e-01 1.11921400e-01 -3.06955397e-01 -2.50825197e-01\\n-2.12032944e-01 -6.51813298e-02 3.31513770e-02 5.26088141e-02\\n2.28047259e-02 -3.78458411e-01 -1.68757498e-01 -1.24368958e-01\\n-7.51227140e-02 -2.64934540e-01 -5.47827929e-02 8.86953324e-02]]',\n", + " 'Job Informationen Responsibilities: You analyse the data generated by our application and generate insights into where and how machine learning algorithms could be applied to improve the user experience. You identify the most important KPIs to measure the performance of our existing algorithms and set up automatic monitoring and reporting for these metrics. You advise our developers on how to log data so that the usage and usefulness of all features can be measured. You work with our DevOps to improve the accessibility and scalability of our logs and databases. Our Requirements: You are fluent in SQL (e.g. MySQL). Experience with ElasticSearch and/or NoSQL databases is a plus. You can write code for data processing in Python (using data analysis libraries such as pandas). You have experience with data visualization. You are always curious to try out new tools and libraries for the analysis and visualisation of data. You follow new developments in AI and understand how machine learning algorithms can help to analyse data. You have a sharp eye for irregularities in a dataset and you will leave no stone unturned when looking for the cause of an anomaly. You have a good understanding of statistics, in particular regarding hypothesis tests and statistical significance. You desire to work in a small, agile team environment. You communicate proactively and work independently. Benötigte Skills SQL MySQL NoSQL Python Python',\n", + " '[\"Communications\", \"Writing\", \"Proactivity\"]',\n", + " '[\"MySQL\", \"Python Server Pages\", \"NoSQL\", \"Tooling\", \"Accessioning\", \"Advising\", \"Agility\", \"Statistics\", \"Machine Learning\", \"New Business Development\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Logging\", \"Library\", \"Dataset\", \"Data Visualization\", \"Machine Learning Methods\", \"Machine Learning Algorithms\", \"Scalability\", \"Electronic Data Processing\", \"Statistical Hypothesis Testing\", \"Algorithms\", \"User Experience\", \"Eyes\", \"Pandas (Python Package)\", \"SQL (Programming Language)\", \"Data Analysis\", \"DevOps\", \"Elasticsearch\"]',\n", + " \"['English', 'Moldavian']\"],\n", + " ['19',\n", + " 'business analyst / data reporting analyst (12 months)',\n", + " 'Lausanne',\n", + " 'Staffing & Outsourcing',\n", + " 'www.badenochandclark.com',\n", + " '[[-1.79447964e-01 2.86513597e-01 3.78280342e-01 -2.52302792e-02\\n5.23037195e-01 -4.39867601e-02 1.07963197e-01 1.88472569e-01\\n3.64018185e-03 -1.77003235e-01 -1.16828956e-01 -1.56377643e-01\\n1.23066761e-01 1.10456981e-01 3.66958790e-02 2.43615508e-01\\n1.60540745e-01 9.84025747e-03 6.47908151e-02 1.68786317e-01\\n5.93287311e-03 -1.11650005e-01 1.48235813e-01 4.86619204e-01\\n3.59321296e-01 1.37858927e-01 6.13245973e-03 1.70798793e-01\\n-3.00801188e-01 -3.84835720e-01 3.54195267e-01 2.01949803e-03\\n-6.02771118e-02 -1.00105315e-01 1.80523708e-01 1.01075403e-01\\n-1.84611067e-01 -3.56411152e-02 -3.41986597e-01 5.62147163e-02\\n-3.67301047e-01 -2.25158840e-01 8.40446651e-02 1.07689060e-01\\n-3.61527801e-01 -4.26999658e-01 7.65583850e-03 -1.74954802e-01\\n7.30290189e-02 -2.74822935e-02 -4.31555897e-01 5.72074771e-01\\n-6.18249550e-02 -2.42737904e-01 1.69356346e-01 7.53475428e-01\\n-9.31170732e-02 -5.36102772e-01 -4.83433634e-01 -3.40537399e-01\\n1.40936688e-01 -1.21580213e-01 9.95273367e-02 -1.76851541e-01\\n4.56898600e-01 -3.28019075e-02 -2.81006843e-02 4.22163516e-01\\n-8.03729117e-01 4.83148508e-02 -3.93989563e-01 5.32990918e-02\\n-3.13263863e-01 -5.95775582e-02 -4.49890435e-01 -1.25881016e-01\\n7.73999318e-02 3.77115577e-01 2.27430724e-02 5.50630987e-02\\n-3.08774952e-02 1.65760577e-01 -1.95615023e-01 1.05399773e-01\\n2.02926010e-01 2.03124762e-01 2.88049221e-01 1.16219565e-01\\n-2.80824333e-01 6.01850569e-01 2.02562630e-01 -2.39281014e-01\\n1.68768361e-01 6.56339750e-02 1.99672967e-01 1.47776872e-01\\n5.46500944e-02 2.90995479e-01 -1.63763583e-01 -7.23394286e-03\\n1.73894256e-01 -1.82802409e-01 1.26790553e-01 2.11890653e-01\\n2.87969969e-02 -8.77602026e-02 -2.94250418e-02 1.76427811e-01\\n-3.42990190e-01 3.81165504e-01 8.58354941e-02 -3.00373346e-01\\n-8.74687359e-02 -5.11184454e-01 -2.80624866e-01 -9.67374013e-04\\n-2.29975441e-03 2.90555120e-01 8.12232345e-02 2.39082918e-01\\n1.52077362e-01 -3.52145918e-02 2.26108268e-01 8.17757010e-01\\n-1.07728578e-01 9.11479220e-02 -1.36031702e-01 2.96075553e-01\\n6.74189776e-02 -1.66092947e-01 1.48379281e-01 2.79533625e-01\\n-1.80734918e-02 -5.44398725e-02 -2.34303802e-01 2.02209681e-01\\n-5.01310676e-02 -2.36210644e-01 -1.65947855e-01 2.82227755e-01\\n-2.25580186e-01 -5.20489275e-01 5.02682447e-01 -3.05873808e-02\\n-5.64028099e-02 -1.43078700e-01 -1.44485667e-01 1.34463027e-01\\n-3.54818016e-01 3.45102966e-01 1.15729131e-01 1.48845881e-01\\n-1.74660623e-01 -2.50556529e-01 -9.66675878e-02 2.17695028e-01\\n-1.55031636e-01 -7.90180042e-02 -3.38122904e-01 -6.76972568e-02\\n4.15137976e-01 1.84618622e-01 -3.64699185e-01 3.25970829e-01\\n-5.67893684e-03 -1.37583405e-01 -9.04831365e-02 2.31672168e-01\\n-2.21214101e-01 1.96571946e-01 -7.53042055e-03 -1.17221840e-01\\n4.72782195e-01 -1.59867648e-02 2.95181572e-01 -3.89898121e-02\\n2.40365192e-01 -7.10021779e-02 2.91095644e-01 6.47232309e-02\\n-5.59601128e-01 5.08148670e-01 -4.22367863e-02 -1.11897491e-01\\n1.90278307e-01 -5.51753007e-02 3.22251320e-01 -3.07474464e-01\\n2.67082863e-02 -2.42116302e-01 -4.04859990e-01 -3.95043224e-01\\n-2.46727824e-01 -3.35375518e-02 2.68744558e-01 -4.85565692e-01\\n-4.74129207e-02 2.68589318e-01 -3.79583687e-01 -1.63264245e-01\\n2.87868679e-01 1.67457893e-01 1.29416466e-01 2.00379536e-01\\n-2.87217926e-02 -4.83435333e-01 2.23927572e-01 -2.69724935e-01\\n-2.35910401e-01 1.57709554e-01 -3.57469708e-01 1.16177246e-01\\n1.38788922e-02 1.37156367e-01 7.29781389e-02 9.75961462e-02\\n-3.02005023e-01 2.46177185e-02 2.35425934e-01 1.35837570e-01\\n3.10936153e-01 -5.35634570e-02 -6.04386151e-01 5.33624709e-01\\n-2.62489676e-01 3.67109418e-01 2.78009176e-01 -9.87781286e-01\\n4.74844813e-01 1.93025380e-01 8.84967148e-02 -3.10760200e-01\\n5.00050843e-01 -4.00166512e-01 -2.14452576e-02 2.27060229e-01\\n-4.42638367e-01 -1.47331268e-01 1.61286905e-01 -1.04410000e-01\\n-1.80344388e-01 5.61402082e-01 1.33853242e-01 9.91680250e-02\\n4.20857936e-01 -1.99699596e-01 -1.06992245e-01 8.66940990e-02\\n-1.56068981e-01 -1.61890432e-01 -4.28281099e-01 5.71010187e-02\\n-3.76300998e-02 -6.11685991e-01 -1.21742666e-01 -4.78099525e-01\\n-1.79104134e-01 -4.76762831e-01 5.09565771e-02 2.25373104e-01\\n1.69011772e-01 3.64121139e-01 1.48785144e-01 -9.81002301e-03\\n-1.75922900e-01 -4.58695114e-01 -2.00001910e-01 2.79803053e-02\\n2.25790948e-01 3.56179833e-01 1.05902404e-01 -9.52719972e-02\\n3.23290154e-02 4.50105309e-01 -4.00761127e-01 -3.56638789e-01\\n1.77089289e-01 1.02263331e-01 -1.17568575e-01 -1.31632611e-01\\n9.51088741e-02 3.26985210e-01 -1.74194857e-01 4.89463285e-02\\n-3.24247517e-02 -8.39256570e-02 2.73472458e-01 1.69478536e-01\\n-7.94007182e-02 -3.69514108e-01 -2.46041507e-01 2.27990508e-01\\n-5.50941527e-01 -2.07169741e-01 6.27860546e-01 3.70220020e-02\\n2.38483157e-02 2.49987736e-01 3.30519170e-01 -4.47511151e-02\\n-1.48024842e-01 -5.04610613e-02 1.84374809e-01 4.63402048e-02\\n1.79263532e-01 -1.23944618e-01 -2.05785289e-01 -4.31265235e-01\\n-3.82345748e+00 -2.37853855e-01 8.38528946e-03 -3.23485851e-01\\n3.34893316e-01 -1.86766714e-01 1.98685557e-01 4.80176974e-03\\n-3.88040930e-01 7.09176362e-02 -2.14593917e-01 -5.91906719e-02\\n1.47860363e-01 2.96976894e-01 1.40410528e-01 1.92919388e-01\\n3.64181511e-02 -3.55620980e-01 5.69503233e-02 6.10241592e-01\\n4.56366353e-02 -5.85422039e-01 5.12554795e-02 1.36476364e-02\\n2.49701932e-01 2.39266425e-01 -5.48366904e-01 1.27559423e-01\\n-2.14705646e-01 -1.52021423e-01 2.50717312e-01 -1.38931066e-01\\n-2.23664492e-01 3.66090387e-01 1.12147838e-01 -2.74968058e-01\\n-7.47967660e-02 -2.78496593e-01 6.25014827e-02 -3.66465151e-01\\n5.84763549e-02 -6.89744771e-01 -1.51568642e-02 6.15755841e-02\\n7.53514409e-01 -2.14701176e-01 -3.41823399e-02 5.94192781e-02\\n9.42350402e-02 1.76014543e-01 7.42624849e-02 -2.68461239e-02\\n-3.98580641e-01 -1.96517274e-01 -3.04441210e-02 -1.53660610e-01\\n5.72291195e-01 5.27032077e-01 -3.28242928e-01 1.11337334e-01\\n6.18564850e-03 -4.15609807e-01 -3.84610981e-01 -3.85089666e-01\\n-2.49663681e-01 -1.71138451e-01 -6.50625169e-01 -3.59248310e-01\\n-1.60473123e-01 -5.17408997e-02 -2.45564263e-02 4.80474681e-01\\n-3.61089170e-01 -4.96081382e-01 -5.85700236e-02 -4.47964966e-01\\n3.11138511e-01 8.44782218e-03 1.51607916e-01 -2.54973471e-01\\n-3.26525792e-02 -3.52097899e-01 2.27948263e-01 -1.01223901e-01\\n-2.23179236e-01 6.68369979e-02 1.37232289e-01 -1.21751614e-01\\n-5.92266500e-01 -3.95283848e-01 4.90656346e-01 3.97154093e-02\\n3.53644818e-01 3.55451442e-02 3.10108155e-01 8.62584859e-02\\n4.71841931e-01 -1.82342410e-01 1.61080033e-01 -5.17873883e-01\\n-1.69079363e-01 -3.44438851e-02 6.24815643e-01 -3.94805998e-01\\n1.10711619e-01 -7.09360614e-02 -2.88931459e-01 -4.69189137e-02\\n4.41389650e-01 1.50716126e-01 1.74193487e-01 -2.07240745e-01\\n2.28843480e-01 -2.60108918e-01 -1.66172534e-01 1.99841276e-01\\n-3.96028161e-02 5.88227391e-01 5.02866656e-02 -2.11246580e-01\\n-2.31310904e-01 2.05297559e-01 -1.80164084e-01 -8.58338028e-02\\n-2.97455817e-01 -7.83023238e-02 -2.26405978e-01 3.26463103e-01\\n2.44622499e-01 8.20319820e-03 -2.21336097e-01 -8.83117691e-02\\n-2.07985453e-02 1.87398642e-01 3.36110294e-01 7.45715275e-02\\n-6.11592270e-02 -2.56895781e-01 1.07190430e-01 6.39265552e-02\\n1.16159186e-01 1.83561996e-01 2.48504370e-01 -3.23051214e-01\\n-1.25082329e-01 2.35793829e-01 -1.74454644e-01 4.28740144e-01\\n-2.66444162e-02 9.57143307e-02 -5.57745397e-01 -1.56848997e-01\\n-4.79826182e-02 -2.44115338e-01 3.72839533e-02 2.98033148e-01\\n2.27383822e-01 -5.31803742e-02 6.42925426e-02 -5.76798558e-01\\n3.85453939e-01 -3.30672227e-02 1.39274985e-01 9.76253152e-02\\n2.33924836e-02 6.32334530e-01 6.05191477e-03 -1.63641140e-01\\n-3.14447023e-02 7.51770064e-02 -2.66621321e-01 -4.41862673e-01\\n6.07072711e-02 -4.75761026e-01 -2.22540498e-02 3.63111049e-01\\n1.81556076e-01 -8.70961621e-02 -2.19172522e-01 2.27332607e-01\\n3.37250419e-02 -3.54016751e-01 -2.36719176e-01 4.22450788e-02\\n1.31261423e-01 3.63891333e-01 2.32850164e-01 -3.99513811e-01\\n4.55313548e-02 -3.74723040e-02 -6.26824796e-02 3.08538437e-01\\n1.03530824e-01 1.36945680e-01 -5.08185588e-02 -1.15562119e-01\\n4.75477099e-01 1.34763613e-01 -6.02653660e-02 1.57717112e-02\\n3.37953903e-02 -3.51102829e-01 -2.88163245e-01 -1.21159852e-01\\n9.21381712e-02 -1.34353504e-01 -1.79528818e-02 5.12474626e-02\\n1.37731368e-02 -6.68863133e-02 -5.01317263e-01 -1.18263118e-01\\n-4.31833833e-01 5.67185655e-02 -8.45667422e-02 -5.92443466e-01\\n-2.86650229e-02 -1.88161875e-03 -4.93100852e-01 2.95232832e-01\\n-7.43206888e-02 7.78554082e-02 4.61509675e-02 -2.98132561e-02\\n-1.53095961e-01 6.40368611e-02 1.42173529e-01 1.10467613e-01\\n-2.21525043e-01 -1.40895665e-01 -1.42281592e-01 -8.05950820e-01\\n1.29074499e-01 -1.06157668e-01 6.53684586e-02 5.33133075e-02\\n-3.02237831e-02 -5.96297622e-01 3.97450298e-01 -3.41821551e-01\\n-1.51420146e-01 3.36673558e-02 -1.48308724e-01 -4.32565868e-01\\n1.32750183e-01 -1.08858822e-02 -1.65658936e-01 1.83259889e-01\\n-4.61298317e-01 5.66463292e-01 1.45389348e-01 1.28471255e-01\\n5.90197481e-02 -2.50723392e-01 1.81468695e-01 -2.74273485e-01\\n-3.82361442e-01 -1.00349039e-01 -3.16599786e-01 -1.72128946e-01\\n5.98513661e-03 -2.04512894e-01 -2.15887293e-01 -2.44455356e-02\\n3.38393867e-01 1.82298958e-01 -1.56005874e-01 3.13355103e-02\\n-4.53301296e-02 -4.25848007e-01 1.54717356e-01 -3.09440434e-01\\n-1.32581545e-02 5.56762293e-02 2.41662741e-01 -1.12793734e-02\\n1.14576772e-01 -3.58322799e-01 4.30131644e-01 -7.51067847e-02\\n-3.77872825e-01 -1.01864740e-01 6.99023753e-02 3.70124355e-02\\n4.48780358e-01 -2.86038786e-01 -1.94360435e-01 2.40406349e-01\\n5.28100459e-03 -1.26312999e-02 2.86157429e-01 -2.65679270e-01\\n-1.98193312e-01 1.12103857e-01 -6.68836474e-01 5.41669019e-02\\n8.29128444e-01 2.97334939e-01 1.23079397e-01 2.08550781e-01\\n4.92648780e-02 3.27136666e-01 4.21858579e-01 -1.04956008e-01\\n-1.30371302e-01 3.55230600e-01 4.64940909e-03 -4.98115391e-01\\n-3.78226861e-02 -1.11547895e-01 -2.33693182e-01 -2.76444614e-01\\n4.56688493e-01 2.52651125e-01 -3.06375682e-01 -3.61967474e-01\\n-2.60609686e-01 -2.62768477e-01 1.55433849e-01 -2.04093885e-02\\n-3.30317090e-03 -1.14950955e-01 5.27261972e-01 -2.17144936e-02\\n2.91509390e-01 4.09600198e-01 2.89852777e-03 -1.42964423e-01\\n7.64954761e-02 -3.08327004e-02 1.11728601e-01 4.61607307e-01\\n-1.05199881e-01 2.53091097e-01 -2.24804267e-01 1.27687737e-01\\n-7.97299743e-02 -2.40048662e-01 3.57468426e-01 5.44891506e-02\\n2.16060411e-02 3.16668332e-01 4.10334229e-01 4.57841247e-01\\n1.89883783e-01 3.60983878e-01 3.34938139e-01 -9.93659124e-02\\n4.49739873e-01 6.19798481e-01 1.67783245e-01 -1.14274595e-03\\n3.96640878e-03 -5.41739725e-02 1.72108814e-01 5.73606454e-02\\n1.80596843e-01 4.06760365e-01 3.15790147e-01 7.21908927e-01\\n2.12902308e-01 2.68739909e-01 7.25085855e-01 -5.02357066e-01\\n-3.48658502e-01 -6.16497472e-02 4.61556435e-01 -4.53032583e-01\\n-2.10545678e-02 2.21332818e-01 -2.16402039e-01 2.77074516e-01\\n-4.97462153e-01 -5.70986979e-02 7.76898265e-02 -1.04012355e-01\\n5.29463030e-03 2.11837981e-02 7.25727975e-02 -1.05989370e-02\\n-7.82664791e-02 -1.77470788e-01 -4.49151754e-01 -1.62497446e-01\\n-4.16453093e-01 -9.29199830e-02 1.34463340e-01 -5.13309753e-03\\n-5.14638191e-03 -2.92696655e-01 -2.80720770e-01 1.06601762e-02\\n3.47201884e-01 -2.61216730e-01 -1.59626499e-01 -1.02625616e-01\\n1.41307488e-01 4.21132594e-02 6.91192925e-01 8.87836218e-02\\n-6.75674230e-02 -1.16487429e-01 -2.19772965e-01 2.17119101e-02\\n2.65140951e-01 -9.10831615e-03 1.27793010e-02 5.54995537e-01\\n-5.11393666e-01 -2.46941581e-01 -5.05839735e-02 2.04331741e-01\\n-4.76027250e-01 -2.02723928e-02 5.05624525e-02 9.82761756e-02\\n-5.39331278e-03 1.41570508e-01 -1.76183462e-01 -7.76995048e-02\\n-2.35859647e-01 -4.25747633e-01 3.07181001e-01 -1.38100892e-01\\n-2.51954466e-01 -2.11835895e-02 1.64482266e-01 2.21234351e-01\\n-6.94177533e-03 -4.66861241e-02 -1.89152792e-01 1.57294214e-01\\n-5.01038693e-03 4.68749732e-01 -2.15497732e-01 -3.14329654e-01\\n-1.56051069e-01 2.72342145e-01 1.11733809e-01 8.74738768e-02\\n1.13007568e-01 3.55376273e-01 3.07971332e-03 2.32641101e-01\\n2.02669129e-01 -4.11921553e-02 -2.72424698e-01 -4.22279924e-01\\n-1.58111200e-01 -1.82517305e-01 7.56660178e-02 -1.30299345e-01\\n6.55403286e-02 -2.96532482e-01 -2.69160569e-02 -1.69599801e-01\\n-3.18693727e-01 -4.59334642e-01 -1.11941770e-01 -6.70792162e-02]]',\n", + " 'For one of our client we are looking for a Business analyst / Data reporting analyst (12 months ) Position responsibilities As part of the Middle Office/Business analysis team, your main duties will be: Reporting: Gather business requirement and define relevant reporting Design and develop reports/dashboards on Spotfire Process/business: Requirement analysis Business process modelling Development of Robotic Process Automation (RPA) Projects : Gather requirements from business units : Meet with traders, back office, accounting team Coordinate developments Create and execute test plans Software administration : Administration backup of core business software Position qualification Strong knowledge of reporting software (Spotfire, Power BI) and SQL programming Strong quantitative and analytic skills Strong knowledge of Robotic Process Automation (UIPath) Strong writing skills Knowledge of corporate finance Proactive and self-starter Fluency in French and good English language skills Experience A graduate degree (preferably a Master’s degree in Information System) 2-5 years’ experience as a business analyst in the financial industry is required',\n", + " '[\"Analytical Skills\", \"Writing\", \"Coordinating\", \"Self Starter\", \"Proactivity\", \"Positivity\"]',\n", + " '[\"Programming (Music)\", \"Industrialization\", \"Middle Office\", \"Strategic Business Unit\", \"Corporate Finance\", \"Microsoft Office Accounting\", \"UiPath (RPA Software)\", \"Executable\", \"Process Modeling\", \"Dashboard\", \"Robotic Process Automation\", \"Power BI\", \"Business Requirements\", \"Business Process Modeling\", \"Spotfire (Data Analytics Software)\", \"Business Process\", \"Remote Administration Software\", \"Business Analysis\", \"Independent Analyst Platform\", \"Test Planning\", \"Requirements Analysis\", \"Business Software\", \"Report Designer\", \"SQL (Programming Language)\", \"Information Systems\"]',\n", + " \"['English']\"],\n", + " ['34',\n", + " 'data engineer- integration specialist',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.darwinrecruitment.com',\n", + " '[[-1.71152711e-01 2.59077072e-01 4.16388363e-01 -7.69490823e-02\\n3.07703286e-01 -1.53559878e-01 -7.82030821e-02 6.06545568e-01\\n-9.96811464e-02 -4.49849963e-01 -3.70184891e-02 -3.95281672e-01\\n2.18868678e-04 2.68662870e-01 1.05228372e-01 3.60706151e-01\\n9.42237824e-02 1.36238515e-01 -1.53818026e-01 2.73653269e-01\\n1.60930231e-01 -1.53849214e-01 5.86205088e-02 6.59312248e-01\\n5.31260967e-01 -1.33440066e-02 3.81680839e-02 5.59298806e-02\\n-9.14216340e-02 -3.84958029e-01 4.66182321e-01 -1.14901580e-01\\n-9.32834595e-02 -3.02908510e-01 1.02725141e-01 4.97190058e-02\\n-1.38793200e-01 -6.46172985e-02 -9.63907465e-02 -4.61775213e-02\\n-5.42719722e-01 -1.75796285e-01 3.49913239e-02 1.04533836e-01\\n-2.08092272e-01 -2.97600001e-01 1.96821660e-01 -9.32275504e-02\\n2.35762671e-01 5.86744919e-02 -6.57733679e-01 3.20011437e-01\\n-3.37387294e-01 -2.81886607e-01 2.68857628e-01 5.47582209e-01\\n-2.38885120e-01 -5.98276556e-01 -6.17879868e-01 -1.52781621e-01\\n1.49108842e-01 -1.04773112e-01 -1.30322680e-01 -3.73982161e-01\\n3.63271475e-01 1.29693989e-02 3.98209924e-03 3.46436352e-01\\n-7.72765577e-01 3.69718415e-03 -1.94843113e-01 -4.26489823e-02\\n-3.95691484e-01 -8.22267160e-02 -3.34651560e-01 -3.94917205e-02\\n-9.75010097e-02 3.51627558e-01 3.07708280e-03 -7.21185356e-02\\n-1.63001403e-01 3.65802437e-01 -2.59205550e-01 4.14705753e-01\\n2.92438954e-01 2.38347486e-01 -1.60492063e-02 3.23879331e-01\\n-2.96081543e-01 3.65939170e-01 2.44429991e-01 -3.96939576e-01\\n1.98881313e-01 -4.96961847e-02 4.86192852e-01 1.90917570e-02\\n2.31540948e-01 1.43980980e-01 -3.09347242e-01 2.71583736e-01\\n3.11403215e-01 -2.34819308e-01 2.66075805e-02 -1.99143007e-01\\n8.03522915e-02 5.36019541e-02 5.70297055e-02 3.20211917e-01\\n-2.19905853e-01 3.64961714e-01 5.51870055e-02 -2.15960443e-01\\n-1.21709511e-01 -4.97700125e-01 -1.47314623e-01 2.38448028e-02\\n1.04547702e-01 1.75815195e-01 1.37472615e-01 1.77860588e-01\\n1.84338465e-01 4.06160615e-02 1.23005964e-01 8.62954199e-01\\n-1.40493020e-01 -4.85756509e-02 -3.02644014e-01 3.52278858e-01\\n4.08373214e-03 -3.17683697e-01 2.32073724e-01 1.85354143e-01\\n9.67782587e-02 -2.92167187e-01 -1.68339521e-01 2.12771177e-01\\n-1.61102831e-01 -2.50082761e-01 -4.17719603e-01 2.84140825e-01\\n-1.93968304e-02 -2.24933863e-01 5.89011550e-01 9.93812606e-02\\n1.43918455e-01 6.50120154e-02 -1.02823339e-01 -1.89952582e-01\\n-1.40138790e-01 1.73803419e-01 -1.52087450e-01 1.11914687e-01\\n-3.69631380e-01 -2.56547004e-01 -2.07811907e-01 1.23547815e-01\\n-3.81246895e-01 1.74268618e-01 -1.49396166e-01 -1.21015057e-01\\n4.18723524e-01 -1.14168108e-01 -1.92640841e-01 2.85447180e-01\\n3.89463478e-03 1.60182819e-01 -2.94134542e-02 3.31345320e-01\\n-2.09844619e-01 3.42099309e-01 -5.87093681e-02 -9.90884304e-02\\n4.61123556e-01 -4.16028872e-02 3.11821159e-02 -1.44320950e-01\\n1.80267513e-01 4.77727577e-02 1.61640018e-01 2.96470542e-02\\n-5.76447666e-01 2.92820543e-01 2.83011026e-03 -4.44330536e-02\\n1.38869613e-01 -1.09063186e-01 2.26032838e-01 -3.13107967e-01\\n-1.15058698e-01 -8.43802840e-02 -3.86595309e-01 -2.35815242e-01\\n-2.64304847e-01 -2.47961506e-02 4.45627809e-01 -4.51278210e-01\\n-1.50272965e-01 1.77549198e-01 -5.53063869e-01 2.85115726e-02\\n2.02007353e-01 1.88385651e-01 1.11805320e-01 1.37542784e-01\\n-2.14490488e-01 -5.15240610e-01 1.38313919e-01 -3.98399085e-01\\n-1.31138995e-01 1.14487171e-01 -3.20616782e-01 3.28259110e-01\\n5.96674718e-02 -6.07159622e-02 -2.03210428e-01 2.17002973e-01\\n-1.94583386e-01 -2.28513647e-02 1.21927317e-02 7.74867684e-02\\n3.51046085e-01 8.74352157e-02 -3.97113502e-01 4.87487793e-01\\n-9.72517580e-02 5.61022043e-01 6.30971491e-02 -7.24981010e-01\\n4.42651629e-01 2.24135548e-01 -2.60363314e-02 -4.42214310e-01\\n7.37344921e-01 -3.53578240e-01 -2.57354435e-02 9.15373862e-02\\n-4.80822742e-01 -4.54613119e-01 2.35634044e-01 -1.05681702e-01\\n-3.39600027e-01 6.64669693e-01 5.60881086e-02 1.02770217e-01\\n3.90459120e-01 -1.41438648e-01 -2.71313816e-01 1.11383684e-02\\n-1.62154774e-03 -2.04542488e-01 -5.03658056e-01 -1.23609461e-01\\n-2.11426005e-01 -5.37865937e-01 -8.59451890e-02 -3.01981121e-01\\n-2.93673068e-01 -4.18274969e-01 -2.18557179e-01 3.03434968e-01\\n2.56226629e-01 8.33931789e-02 5.25989197e-02 1.16491862e-01\\n-1.36298001e-01 -6.16499782e-01 -1.39022484e-01 1.04356579e-01\\n3.87485147e-01 1.47009328e-01 2.20717698e-01 -8.24319292e-03\\n5.19653447e-02 6.59284234e-01 -1.24530181e-01 -2.79130071e-01\\n8.75420049e-02 1.09716922e-01 1.65351629e-01 -1.40226439e-01\\n2.32696638e-01 2.24460766e-01 -2.54679888e-01 3.66223678e-02\\n-7.26814270e-02 -6.23075776e-02 2.37096518e-01 2.25473791e-01\\n-3.57738584e-01 -2.89804310e-01 -4.66789864e-03 2.29147524e-01\\n-5.43385863e-01 -2.11731449e-01 5.60509861e-01 2.57135600e-01\\n1.91551670e-01 1.03575282e-01 3.01382005e-01 -1.68373495e-01\\n-7.41636679e-02 -4.68027219e-02 1.54666334e-01 1.94941923e-01\\n5.35463775e-03 1.36478826e-01 -1.01454929e-01 -6.52415574e-01\\n-3.57114458e+00 -1.81091771e-01 1.75098032e-01 -1.76891774e-01\\n2.09762812e-01 -1.25033170e-01 1.91609666e-01 -7.81676322e-02\\n-2.39875764e-01 -1.18186260e-02 -1.19685285e-01 -5.48293181e-02\\n2.93076366e-01 1.38446823e-01 9.21676382e-02 4.02541876e-01\\n1.44647986e-01 -1.33727863e-01 3.53083648e-02 3.76304746e-01\\n-2.50750005e-01 -5.53826392e-01 2.90468931e-01 -1.22193620e-01\\n2.14311957e-01 3.32665056e-01 -3.38045597e-01 -2.24271432e-01\\n-1.74536571e-01 -1.93988010e-01 6.35813251e-02 -3.65835607e-01\\n-1.51361033e-01 3.22549671e-01 1.36473760e-01 -1.39794812e-01\\n1.41401485e-01 -3.94342273e-01 -1.04952216e-01 -4.17705894e-01\\n1.53309062e-01 -6.32243574e-01 1.04331613e-01 -2.03156590e-01\\n8.53200734e-01 -4.28966671e-01 4.46972437e-02 9.94509235e-02\\n1.00573026e-01 2.20298558e-01 -1.07536204e-02 -3.35286744e-02\\n-1.75350592e-01 -3.27491373e-01 -1.33628860e-01 -9.51188877e-02\\n4.61980820e-01 6.10625505e-01 -9.26939994e-02 -4.79603894e-02\\n-3.33344750e-02 -3.18748981e-01 -4.85259414e-01 -3.57924521e-01\\n-2.40831673e-01 -1.85910046e-01 -5.42941809e-01 -2.47600719e-01\\n-1.17731966e-01 -2.30561182e-01 -1.65783614e-02 4.64619875e-01\\n-2.98643589e-01 -3.83568406e-01 -5.20152412e-02 -4.88804728e-01\\n2.69208968e-01 -2.02176441e-02 6.43556118e-02 -1.77715018e-01\\n-2.54451931e-01 -4.87592310e-01 -2.91238073e-02 -5.68962172e-02\\n-1.44326478e-01 -2.59494007e-01 1.25773564e-01 -1.63720563e-01\\n-1.76599905e-01 -6.29992187e-01 4.37002659e-01 1.76657274e-01\\n2.63926655e-01 2.65365541e-01 1.95337191e-01 3.78716104e-02\\n2.19407961e-01 -1.13971390e-01 1.32613629e-02 -3.46973926e-01\\n1.22808494e-01 1.53354719e-01 4.79417801e-01 -1.91011012e-01\\n5.98169342e-02 6.75777346e-02 -1.73175514e-01 -1.37411550e-01\\n2.59265542e-01 1.31003201e-01 7.45701268e-02 -3.67924899e-01\\n2.85730302e-01 -1.45719960e-01 -3.90911639e-01 5.67408502e-02\\n-3.00275330e-02 3.84301126e-01 5.56175336e-02 -3.56553972e-01\\n-2.18456805e-01 4.64878082e-01 -9.67183784e-02 5.80482138e-03\\n-3.76220316e-01 2.02217009e-02 -2.53675133e-01 2.56576717e-01\\n3.00302096e-02 -1.17799245e-01 -2.47220010e-01 -1.42625064e-01\\n-1.93779752e-01 5.08512259e-01 2.10137904e-01 4.71538231e-02\\n-7.13067576e-02 -4.45461154e-01 1.89565215e-02 2.45256722e-01\\n3.72355618e-02 5.13071835e-01 7.99548551e-02 -1.00087404e-01\\n-2.11351481e-03 3.56467277e-01 -2.14506865e-01 1.95239540e-02\\n-2.90812433e-01 3.85810994e-02 -3.91595900e-01 -3.48725021e-01\\n-2.56689012e-01 -3.59533846e-01 9.44098458e-02 4.29551005e-01\\n1.14345752e-01 -3.59961838e-02 -1.46119017e-02 -3.69988292e-01\\n2.86527306e-01 4.25643921e-02 2.26218149e-01 3.01016629e-01\\n1.10752285e-01 4.54041004e-01 1.21399330e-03 -7.97956735e-02\\n-1.84620574e-01 1.78594366e-01 -3.74453515e-01 -3.03144120e-02\\n-2.53215749e-02 -4.48089182e-01 -6.74633458e-02 6.49542093e-01\\n7.50137046e-02 -1.05809487e-01 -1.12398036e-01 1.64656878e-01\\n-1.19954392e-01 -1.76768601e-01 -2.14816317e-01 1.65701091e-01\\n3.38745445e-01 2.50026554e-01 2.13158056e-01 -3.54856759e-01\\n6.37994111e-02 2.65338533e-02 -1.19101182e-01 5.79667449e-01\\n4.31741495e-03 3.38997096e-02 -2.41813958e-01 -3.23847145e-01\\n3.96056861e-01 -2.58092403e-01 2.18026917e-02 3.34138200e-02\\n2.03289390e-01 -1.98848005e-02 -3.41778845e-01 2.04519629e-01\\n-6.83718026e-02 -2.10227937e-01 2.72059860e-03 1.67500845e-03\\n3.21044736e-02 7.10142702e-02 -5.23663521e-01 -2.65473753e-01\\n-2.54672527e-01 4.74446155e-02 -2.35670492e-01 -3.69100273e-01\\n1.75751925e-01 6.04626536e-03 -5.47858655e-01 2.92723000e-01\\n-4.43570614e-01 5.13261370e-02 3.43256921e-01 1.54637471e-02\\n-4.79452133e-01 -1.53569087e-01 3.15713376e-01 2.87715316e-01\\n-1.84810519e-01 -2.89646864e-01 -5.38413040e-02 -8.56701970e-01\\n2.14650288e-01 3.02038770e-02 -2.22917482e-01 3.19190651e-01\\n-4.79739197e-02 -6.74011171e-01 1.95333496e-01 -2.38905013e-01\\n-1.22451685e-01 9.72420722e-02 -1.21902891e-01 -4.03679490e-01\\n-6.95726275e-02 -8.47254917e-02 -2.79416859e-01 4.38870192e-01\\n-4.42463964e-01 2.58094579e-01 2.78225131e-02 2.07660496e-01\\n6.45043477e-02 -3.17549199e-01 1.32011235e-01 -2.90938467e-01\\n-4.47629452e-01 -1.77552968e-01 -3.10834795e-01 -3.72497439e-01\\n1.16414659e-01 -4.20599431e-01 -1.90796748e-01 3.00982624e-01\\n3.45805973e-01 -2.02822611e-02 -6.38294071e-02 -1.12800695e-01\\n3.80007625e-02 -3.81115437e-01 -4.35052253e-03 6.51416602e-03\\n4.66602203e-03 -2.62069423e-02 1.64008364e-01 5.44666573e-02\\n4.29980643e-02 -5.49723625e-01 4.81602848e-01 -4.19432849e-01\\n-2.26034552e-01 1.48321882e-01 6.61489815e-02 -6.79830313e-02\\n3.00375521e-01 -4.42990571e-01 -3.81285436e-02 4.50935811e-01\\n9.10796449e-02 6.09224513e-02 2.62767851e-01 -1.09767817e-01\\n-1.97908625e-01 3.67509395e-01 -1.70611814e-01 6.05265684e-02\\n1.00304055e+00 -2.14897655e-02 1.52759567e-01 2.00660005e-01\\n-2.71367747e-03 2.86099702e-01 4.34633702e-01 6.14842884e-02\\n-2.87592709e-01 3.42851788e-01 2.36451682e-02 -5.57491839e-01\\n1.14695564e-01 -1.58052653e-01 -3.11109990e-01 -3.18486035e-01\\n6.19558752e-01 4.47231114e-01 -4.82976437e-01 -4.03169841e-01\\n3.42688933e-02 -2.16716722e-01 5.55997789e-02 -1.72905147e-01\\n-5.60181448e-03 -1.27126753e-01 4.95528042e-01 5.90575254e-03\\n1.36339828e-01 5.78903556e-01 -1.76307917e-01 -3.27808827e-01\\n-1.41373482e-02 2.02440858e-01 1.49438875e-02 4.51508373e-01\\n-3.02842945e-01 4.27474082e-01 -3.08692530e-02 3.06025203e-02\\n-6.05713297e-03 1.77992076e-01 1.63033485e-01 -7.65712326e-03\\n5.82543798e-02 1.33077458e-01 4.75843310e-01 5.14430046e-01\\n3.47314268e-01 4.94899482e-01 3.53312284e-01 5.21763675e-02\\n5.89324296e-01 4.74195153e-01 5.31556487e-01 2.81544894e-01\\n-8.26004136e-04 -4.97476161e-02 -7.25944191e-02 2.49072045e-01\\n3.13818574e-01 2.85633951e-01 1.31414562e-01 9.76365209e-01\\n3.52537483e-01 1.07621469e-01 5.64574301e-01 -7.23322093e-01\\n-4.51816350e-01 1.82563961e-02 3.32547188e-01 -4.58691448e-01\\n-1.32507592e-01 1.43136457e-01 -2.49556944e-01 8.90053958e-02\\n-5.20679176e-01 -3.37157100e-01 -2.22249955e-01 1.15480043e-01\\n-4.03826647e-02 -1.64336309e-01 -1.74231663e-01 2.49021873e-02\\n-7.53935501e-02 -9.90563259e-02 -4.07484442e-01 -8.82909149e-02\\n-1.38656214e-01 -2.11207524e-01 -1.59648418e-01 -2.80302852e-01\\n-1.96726218e-01 -3.85229647e-01 -1.78397998e-01 7.49048665e-02\\n2.61339247e-01 -1.63265467e-01 7.31439963e-02 -2.13983566e-01\\n2.66460270e-01 2.88125277e-01 6.53630197e-01 7.52120838e-02\\n-1.51959145e-02 -2.68355548e-01 -5.20428270e-02 1.46590069e-01\\n1.92378685e-01 2.23420739e-01 9.24834982e-02 3.05831671e-01\\n-3.70904326e-01 -2.19675362e-01 2.28623196e-01 4.32577282e-01\\n-5.12547314e-01 -4.74465042e-02 -3.28051262e-02 2.64493316e-01\\n5.41851670e-02 1.94024518e-01 -1.43806279e-01 2.18760341e-01\\n-2.75524944e-01 -4.36684132e-01 2.66590297e-01 -7.59546310e-02\\n-1.63114861e-01 4.99261394e-02 1.72031656e-01 2.33015120e-01\\n-2.28625298e-01 3.31269465e-02 8.48588720e-02 3.57343137e-01\\n1.06185026e-01 2.53543824e-01 -2.83006787e-01 -2.42936566e-01\\n-2.48673037e-01 1.90831870e-02 -1.99501142e-01 1.09577954e-01\\n1.13802224e-01 3.33175004e-01 1.67163208e-01 -6.20649457e-02\\n5.03435433e-01 -3.59351449e-02 -1.20591655e-01 -2.58686870e-01\\n-3.16009045e-01 -3.31941068e-01 -1.00793742e-01 -4.25108857e-02\\n2.06314683e-01 -4.46181953e-01 -1.70381352e-01 -2.34620012e-02\\n-3.42031084e-02 -2.90297925e-01 9.29621831e-02 -7.78390169e-02]]',\n", + " \"Currently, I am working with a leading company in the Zurich area, my client has more than 8 million visits and over 180 million page views each month, my client is recognised as one of the leading Swiss digital companies. At the moment my client needs to bring a highly skilled Data engineer to join on a permanent basis. In regards to the team you will be joining, they have around 80 members of staff spread across two office locations in Switzerland, you will be joining a team of around 20 skilled Data Scientists and Engineers. Your daily tasks will include: Maintaining and extending the data lake and data pipelines Supporting the teams with your data engineering expertise Sharing your know-how and learning from others, mainly by pairing and reviewing each other's code They are looking for you to have experience with technologies such as; Python- at a high level of experience Hands-on experience of AWS (CloudFormation, IAM, Lambda, SNS, SQS, ECS) Exposure to AWS data services (S3, Glue, EMR, Athena, Kinesis) Understanding of ETL pipelines Fluent English is required for this role and any German is seen as a plus This is a great opportunity to get into an extremely exciting company who are really looking to build a successful team. If you would be interested in learning more please apply and I will contact you as soon as possible.\",\n", + " '[\"\"]',\n", + " '[\"AWS Kinesis\", \"AWS Identity And Access Management (IAM)\", \"AWS CloudFormation\", \"Pipelining\", \"Python (Programming Language)\", \"Digitization\", \"AWS Elastic MapReduce (EMR)\", \"Maintainability\", \"Data Pipeline\", \"Amazon Simple Notification Service (SNS)\", \"Extract Transform Load (ETL)\", \"Azure Data Lake\", \"Data Engineering\", \"Amazon Athena\"]',\n", + " \"['English', 'Bulgarian']\"],\n", + " ['10',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " 'Computer Hardware & Software',\n", + " 'www.adnovum.ch',\n", + " '[[-1.95624158e-01 3.97409528e-01 5.07171333e-01 -4.06459570e-02\\n5.41350424e-01 -8.11445639e-02 7.53710493e-02 3.58455390e-01\\n-3.10194045e-02 -5.43209136e-01 -1.87547192e-01 -1.59705579e-01\\n7.89334401e-02 1.13280721e-01 1.94852591e-01 3.26767713e-01\\n4.62987572e-01 7.56500736e-02 3.62817454e-03 3.83732766e-01\\n-1.62129730e-01 -9.87617448e-02 1.34480879e-01 6.40779495e-01\\n3.55763644e-01 -6.63058320e-03 4.31952588e-02 1.95201710e-01\\n-1.69206694e-01 -2.27221057e-01 3.46927643e-01 1.05911903e-02\\n-2.97944099e-01 -3.87432247e-01 -1.45010026e-05 1.29607841e-01\\n-2.42596522e-01 -5.24028204e-02 -2.67326087e-01 -1.58433039e-02\\n-4.46291417e-01 -2.01589301e-01 4.42150049e-02 -1.79851949e-01\\n-1.79206029e-01 -3.21800798e-01 1.82369471e-01 -1.13667451e-01\\n2.50975862e-02 4.72655185e-02 -4.30564284e-01 2.53324062e-01\\n-3.65517229e-01 -1.60606518e-01 3.87259394e-01 5.59639513e-01\\n-1.88216809e-02 -5.02482116e-01 -4.32932138e-01 -2.39122108e-01\\n6.77069798e-02 5.77977858e-02 6.16381504e-02 -4.02935296e-01\\n3.95106882e-01 -7.13882595e-03 6.12844415e-02 3.46813172e-01\\n-7.82036722e-01 -1.11264586e-01 -3.94327670e-01 6.17695414e-02\\n-4.45784539e-01 -9.46496725e-02 -3.18790168e-01 -1.40831918e-01\\n-7.18333498e-02 2.78311759e-01 -5.31314164e-02 1.69110179e-01\\n-1.93873212e-01 4.05293345e-01 -1.11126892e-01 2.41512299e-01\\n2.11167693e-01 2.15905383e-01 3.33343178e-01 3.32163930e-01\\n-2.75249958e-01 4.72428232e-01 2.29435265e-01 -2.92683333e-01\\n3.56134921e-01 1.88539982e-01 4.00257349e-01 -1.86471045e-02\\n3.63188028e-01 1.57960311e-01 -2.94262588e-01 3.16787750e-01\\n2.10242912e-01 -2.16880009e-01 -1.53617248e-01 -1.52181879e-01\\n1.06247939e-01 -4.00558710e-02 1.53568670e-01 6.42814860e-02\\n-5.40712059e-01 3.17350656e-01 4.25663637e-03 -4.39264148e-01\\n-1.80099253e-02 -4.20830518e-01 -1.94832996e-01 1.09065272e-01\\n-1.27117842e-01 -1.78300459e-02 1.61055312e-01 2.81734705e-01\\n2.96234101e-01 2.08901186e-02 7.77569041e-02 6.87539816e-01\\n-1.42687380e-01 -7.21321180e-02 -9.09945667e-02 2.80803591e-01\\n8.90855268e-02 -4.26961750e-01 1.82805791e-01 2.67846197e-01\\n1.29560689e-02 -6.07539155e-02 -2.09661439e-01 2.44960114e-01\\n6.67836592e-02 -1.25187263e-01 -3.06900293e-01 2.84918934e-01\\n-1.10217661e-01 -4.37027723e-01 5.40440679e-01 -9.84745994e-02\\n1.05262004e-01 -3.44979875e-02 1.76990386e-02 -1.61867276e-01\\n-9.46249720e-03 5.13485782e-02 6.31012097e-02 2.84552068e-01\\n-2.72600949e-01 -1.43201530e-01 -1.93577111e-01 2.96319813e-01\\n-1.85642079e-01 2.29487836e-01 -3.83103758e-01 -1.16362981e-01\\n3.21503192e-01 -1.34444818e-01 -3.00263554e-01 2.76550680e-01\\n-1.20592952e-01 1.00659430e-01 -1.09035082e-01 4.46274400e-01\\n4.15161140e-02 2.09956050e-01 -2.23392639e-02 -1.41820863e-01\\n4.69897777e-01 7.85709023e-02 1.45230621e-01 -1.70136049e-01\\n2.47340381e-01 7.07232654e-02 1.35360375e-01 -1.52775897e-02\\n-9.03002203e-01 2.34042764e-01 -1.06187217e-01 -1.31816819e-01\\n7.46678784e-02 -1.00906678e-01 2.55571693e-01 -3.59913737e-01\\n-3.09356362e-01 -5.98081499e-02 -3.36733460e-01 -4.95625228e-01\\n-1.90093324e-01 -1.57889247e-01 4.08337146e-01 -5.14456928e-01\\n-1.30040959e-01 1.57178730e-01 -7.05170453e-01 -8.26142132e-02\\n2.94075102e-01 1.77711561e-01 1.54172167e-01 9.45387259e-02\\n-1.30368426e-01 -6.33772254e-01 2.52397954e-02 -5.54250419e-01\\n-1.56634346e-01 1.66506395e-01 -3.99333686e-01 1.42835215e-01\\n1.17151611e-01 -1.63288504e-01 -1.04410527e-02 8.61984789e-02\\n-2.59264022e-01 6.96199611e-02 6.56216815e-02 -4.76955809e-02\\n4.74010140e-01 4.35532629e-02 -3.22253406e-01 4.16309327e-01\\n-2.20494866e-01 3.30039501e-01 6.24361373e-02 -6.50266886e-01\\n4.96558398e-01 3.21802765e-01 1.07861534e-02 -2.39032403e-01\\n5.10881364e-01 -3.56151015e-01 -1.79238841e-01 3.99765857e-02\\n-5.18438697e-01 -1.97887138e-01 -8.43936298e-03 -2.31724203e-01\\n-2.69446611e-01 6.06323123e-01 -1.00959159e-01 2.81071048e-02\\n4.66097504e-01 -2.12304890e-01 -1.53426036e-01 5.58594130e-02\\n-1.20743968e-01 -1.42654479e-01 -5.19885480e-01 -2.44537219e-01\\n-7.60620534e-02 -4.52454776e-01 -1.96117774e-01 -4.48424816e-01\\n-1.74352661e-01 -1.13148250e-01 -2.29993418e-01 1.56282708e-01\\n1.11307472e-01 4.63168323e-02 -3.59596498e-02 1.52980998e-01\\n-2.17158958e-01 -6.15378201e-01 -5.00781648e-03 5.57754934e-02\\n1.17143959e-01 1.67028829e-01 1.74357638e-01 -1.17288947e-01\\n-5.97898057e-03 5.61891913e-01 -3.81898165e-01 -2.19329491e-01\\n1.87622890e-01 8.11487809e-02 4.72141020e-02 -8.01655352e-02\\n1.80726364e-01 2.85143465e-01 -2.65156418e-01 7.41504431e-02\\n1.91574264e-02 -4.95185377e-03 4.13127631e-01 -2.15063453e-01\\n-2.16969445e-01 -1.84668198e-01 1.15098841e-02 1.87303782e-01\\n-5.22225201e-01 -2.81741589e-01 5.12124121e-01 4.57480364e-02\\n1.70271516e-01 3.96027952e-01 2.18809143e-01 -5.99434413e-02\\n-2.29900107e-01 -2.69758075e-01 2.54665107e-01 1.44434601e-01\\n8.19870010e-02 5.17033339e-02 -2.48508155e-01 -5.01990139e-01\\n-3.73741245e+00 -1.69829369e-01 1.93886802e-01 -8.66274312e-02\\n3.20012122e-01 1.24837577e-04 1.10940278e-01 -1.63704202e-01\\n-9.60515365e-02 6.13048710e-02 -2.45151937e-01 -1.96209326e-01\\n4.60789017e-02 1.98648751e-01 -7.37502202e-02 1.55523524e-01\\n1.81890652e-01 -2.25274503e-01 3.96934561e-02 2.60546356e-01\\n-7.54942074e-02 -7.34942734e-01 1.48128420e-01 -4.17279154e-02\\n2.77780980e-01 2.98262835e-01 -5.44760764e-01 -7.52332509e-02\\n-2.81963140e-01 -1.14054412e-01 9.17405784e-02 -3.89748901e-01\\n-1.13525487e-01 2.45817378e-01 1.76462010e-01 -1.95382237e-01\\n-4.85088676e-03 -1.55170932e-01 -4.23069112e-02 -5.38104355e-01\\n1.44984946e-01 -4.23481464e-01 9.92596895e-03 -1.04317732e-01\\n6.58848822e-01 -3.74893039e-01 8.49266425e-02 1.08089656e-01\\n1.22379780e-01 3.44221443e-01 1.83680534e-01 5.41547649e-02\\n-1.18564516e-01 -3.35045964e-01 -1.05374746e-01 -2.29010463e-01\\n6.47573769e-01 2.96443701e-01 -2.25249454e-01 8.94729272e-02\\n4.30189185e-02 -3.75931382e-01 -4.93100256e-01 -2.45927736e-01\\n-1.47599861e-01 -6.20698743e-02 -7.65075743e-01 -4.23622251e-01\\n-1.40338719e-01 -1.36029586e-01 4.94882017e-02 6.91641331e-01\\n-4.57934827e-01 -4.45010036e-01 -1.33881465e-01 -5.73298395e-01\\n2.76140660e-01 -1.53949559e-01 8.61736462e-02 -2.09675625e-01\\n-7.28234425e-02 -4.19816941e-01 4.59864140e-02 1.26932159e-01\\n-6.11431487e-02 -1.13501020e-01 1.34266838e-01 -1.93334091e-02\\n-2.73179561e-01 -4.89091426e-01 3.33182782e-01 1.02330655e-01\\n3.38543296e-01 4.35405411e-02 1.34716466e-01 1.42232096e-02\\n1.95962787e-01 -9.32971109e-03 -2.95996457e-01 -3.60452890e-01\\n5.86061291e-02 -9.68666375e-02 3.30863744e-01 -5.01703024e-02\\n4.16423678e-02 1.69599220e-01 -1.15280233e-01 -1.74085096e-01\\n4.76422697e-01 1.34312762e-02 7.50607029e-02 -2.62095004e-01\\n1.69395149e-01 -3.08273464e-01 -2.30495766e-01 7.52963349e-02\\n-1.26745686e-01 5.76520503e-01 9.31925103e-02 -3.09095651e-01\\n-1.10085808e-01 5.36023021e-01 1.61138978e-02 6.40568733e-02\\n-1.78747341e-01 1.21696383e-01 -3.32444042e-01 1.21629395e-01\\n-3.74581702e-02 -1.01423480e-01 -1.52004421e-01 1.67065987e-03\\n-5.64004779e-02 1.94245100e-01 3.62157464e-01 1.93723932e-01\\n3.54437158e-02 -3.65789801e-01 -6.51486078e-03 5.68960309e-02\\n2.69350708e-01 5.12906611e-01 2.18058273e-01 -2.60197908e-01\\n-2.96228100e-02 2.86592603e-01 -1.91321090e-01 1.04290463e-01\\n-1.56939536e-01 1.49414435e-01 -3.53981167e-01 -1.75616622e-01\\n-3.89933556e-01 -2.26607218e-01 1.83177982e-02 2.86728173e-01\\n1.60088092e-01 -1.69027686e-01 6.76730350e-02 -3.05084616e-01\\n3.07842433e-01 1.85946599e-01 2.05674753e-01 2.41451606e-01\\n-9.06339809e-02 5.01223266e-01 -5.94297089e-02 -1.80611566e-01\\n-1.70813486e-01 1.76880643e-01 -7.35193118e-02 -1.48713067e-01\\n8.11968371e-02 -5.29519558e-01 -1.36745140e-01 2.39613071e-01\\n4.86317538e-02 -1.41108623e-02 -1.69857025e-01 2.49989271e-01\\n-8.25471058e-02 -3.16823393e-01 -2.92034388e-01 -1.13830082e-02\\n2.13950217e-01 2.02135608e-01 2.74918973e-01 -4.14322227e-01\\n-6.34821057e-02 -6.65557906e-02 1.31719545e-01 4.69626516e-01\\n-4.74022925e-02 5.66381812e-02 -1.48473442e-01 -2.82566190e-01\\n4.03746963e-01 -5.34192733e-02 -1.76694453e-01 -5.31154275e-02\\n7.85092860e-02 -3.77384350e-02 -2.76284754e-01 7.40090981e-02\\n-1.52061716e-01 -1.59391850e-01 2.88550686e-02 1.68561060e-02\\n1.32478476e-01 1.21951967e-01 -5.28629899e-01 -2.07124755e-01\\n-3.09237152e-01 3.44422720e-02 -2.03306437e-01 -5.35484731e-01\\n1.37280509e-01 -1.45939156e-01 -5.39872587e-01 2.81580299e-01\\n-2.25011960e-01 -1.00715496e-01 1.68772504e-01 1.50281981e-01\\n-4.27882403e-01 -9.54971984e-02 1.41966119e-01 1.88962862e-01\\n-4.18896228e-01 -1.88078880e-01 -6.64666072e-02 -8.23264062e-01\\n2.95560300e-01 -1.29990652e-01 -5.45138493e-03 4.89177965e-02\\n-1.31034717e-01 -5.87537587e-01 1.11939467e-01 -1.64533958e-01\\n-1.05697572e-01 8.67673457e-02 -1.85601771e-01 -3.03874016e-01\\n7.26094693e-02 -1.73494980e-01 -1.19071417e-01 2.35415936e-01\\n-4.70925927e-01 2.73304254e-01 -2.33205333e-01 2.94341054e-02\\n5.51923625e-02 -2.63867110e-01 1.08813308e-01 -1.68278635e-01\\n-4.77744430e-01 -2.24186108e-01 -1.20687574e-01 -2.15005577e-01\\n-4.40847166e-02 -4.31432575e-01 -1.40312118e-02 2.49734018e-02\\n3.42152476e-01 -1.86173040e-02 -2.45851651e-01 -1.22430079e-01\\n3.35471444e-02 -2.64644295e-01 1.14545450e-02 -3.15855406e-02\\n1.04539298e-01 -3.95798981e-02 2.40147948e-01 5.25263511e-02\\n3.02339226e-01 -3.38018298e-01 4.12936062e-01 -3.26547056e-01\\n-2.99328417e-01 -1.20408893e-01 -1.03438273e-03 9.94906668e-03\\n3.48492384e-01 -5.65469265e-01 2.16063019e-02 4.17885035e-01\\n5.90350665e-02 1.31136701e-02 1.96933493e-01 -2.06139255e-02\\n-3.91580611e-02 4.00822908e-01 -2.68910855e-01 1.51081681e-01\\n8.05222929e-01 1.23100244e-01 2.22835556e-01 2.39065811e-01\\n6.61984310e-02 4.55249518e-01 3.76264066e-01 -3.29954438e-02\\n-2.69405190e-02 3.62387568e-01 1.92488596e-01 -4.58240986e-01\\n8.92967451e-03 2.65243258e-02 -1.76343262e-01 -2.24504188e-01\\n6.40138268e-01 3.59989643e-01 -3.65842313e-01 -2.83531159e-01\\n-1.71031818e-01 -3.97459388e-01 2.82339364e-01 -6.89230859e-02\\n2.07787883e-02 -2.04716727e-01 4.02844995e-01 1.19541027e-02\\n1.80359051e-01 7.35158503e-01 -2.34106705e-01 -3.34822744e-01\\n-1.52588636e-01 2.95565993e-01 1.04012579e-01 4.59747642e-01\\n-1.08243853e-01 2.77069926e-01 1.27821257e-02 5.54686785e-02\\n-7.73639008e-02 1.47383735e-01 1.73800305e-01 1.46056980e-01\\n2.30573535e-01 3.30295533e-01 5.34503043e-01 4.98811692e-01\\n3.04300189e-01 3.67333174e-01 2.31833622e-01 9.10304561e-02\\n5.18943369e-01 4.31326002e-01 4.51881647e-01 5.73795326e-02\\n1.44129721e-02 2.46286616e-01 1.24434501e-01 4.62027341e-02\\n2.63589889e-01 4.34119821e-01 -1.06435297e-02 9.17801201e-01\\n3.97906274e-01 2.60819077e-01 6.05717063e-01 -7.42412508e-01\\n-1.63220003e-01 9.56422612e-02 3.73246938e-01 -3.71888280e-01\\n5.20412959e-02 1.56332329e-01 -1.44453868e-01 2.95470715e-01\\n-4.40726310e-01 -2.19140649e-01 2.57894546e-02 1.62777096e-01\\n1.63460687e-01 -4.18730378e-02 -1.47528782e-01 -6.64786920e-02\\n-7.76151791e-02 -3.76542322e-02 -3.44924062e-01 -1.83253124e-01\\n-2.71405041e-01 -2.09814999e-02 -4.12860177e-02 -2.38330677e-01\\n8.82498696e-02 -3.12943548e-01 -5.40300012e-02 -2.07890019e-01\\n3.62136245e-01 -1.68464601e-01 -4.36339229e-02 3.95724317e-03\\n3.03939849e-01 2.41475508e-01 6.91587865e-01 -1.04941487e-01\\n1.04229458e-01 -8.08869898e-02 -1.64956421e-01 1.22152209e-01\\n4.13262360e-02 1.95013985e-01 1.27756938e-01 2.95504242e-01\\n-2.36357883e-01 -2.22418547e-01 2.53336102e-01 2.69581676e-01\\n-3.67388129e-01 -1.55440171e-03 -7.16302916e-02 1.96484342e-01\\n-1.05625711e-01 1.21191286e-01 -6.69479445e-02 1.74651649e-02\\n-8.62853602e-02 -5.46514571e-01 3.23153853e-01 -1.94367453e-01\\n-1.37836905e-02 -7.64152333e-02 3.71804714e-01 3.08940917e-01\\n-1.64258018e-01 3.89989913e-02 -1.03479110e-01 1.03970937e-01\\n1.27854899e-01 3.61236781e-01 -2.60132492e-01 -1.70172587e-01\\n-2.23325595e-01 1.31388679e-01 -5.96998036e-02 -8.69416818e-02\\n-8.74217525e-02 3.96499157e-01 1.15623929e-01 2.07069650e-01\\n2.53376275e-01 -1.53874323e-01 -2.12854162e-01 -1.77685454e-01\\n-2.93299466e-01 -3.35060735e-03 6.77606091e-02 -9.50272605e-02\\n2.36362293e-01 -4.38735336e-01 -2.61465132e-01 -1.96449637e-01\\n3.37974578e-02 -4.40327674e-01 9.80812684e-03 5.00930659e-02]]',\n", + " \"That's your role You will, together with an international team, develop and support individual mobile and web applications for our customers. Your main working language with our customers will be German. We look for Software Engineers for our locations in Bern and in Zurich. Depending on your qualifications, past experience and project, you will be involved in the analysis, specification and implementation of technical requirements in one of the following disciplines: Application development You implement the functional requirements of our customers with a broad spectrum of technologies and development processes. Integration Your focus is on quality attributes (non-functional requirements). You get the developed solutions up and running (deployment, technical architecture, etc.) and connect them to the customer's systems. By operating at the interface between customers and highly qualified development teams, you will gain a deeper insight into the broader interrelationships in the software development process and benefit from the extensive experience of our application development, integration and security specialists.\",\n", + " '[\"Operations\", \"Integration\"]',\n", + " '[\"Application Development\", \"Web Applications\", \"Process Development\", \"Software Development\", \"Functional Requirement\", \"Software Engineering\", \"Process Integration\", \"Mobility\"]',\n", + " \"['English', 'Nyanja', 'Ossetian', 'Northern Sami', 'Gaelic']\"],\n", + " ['75',\n", + " 'junior data-scientist (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.65259391e-01 2.37471595e-01 4.02921498e-01 1.00243151e-01\\n4.03606445e-01 -2.84495324e-01 5.22616357e-02 2.92965204e-01\\n-6.68480694e-02 -3.47696990e-01 -1.38469741e-01 -2.65816092e-01\\n-1.49815634e-01 1.45849427e-02 -4.01442274e-02 3.89594674e-01\\n2.18470454e-01 9.74991247e-02 -4.37254608e-02 3.25632930e-01\\n1.81184068e-01 -1.25458285e-01 -1.57004997e-01 7.08373964e-01\\n4.39376473e-01 3.98021676e-02 -8.90317783e-02 1.05163857e-01\\n-2.12917149e-01 -1.11826278e-01 4.44480598e-01 1.41342506e-01\\n-1.13332547e-01 -2.81599075e-01 8.90250504e-02 9.67258215e-02\\n-2.39634782e-01 4.57551219e-02 5.07330671e-02 9.06079784e-02\\n-3.82302314e-01 -2.56410003e-01 -1.10499486e-01 -3.68735217e-03\\n-9.31458771e-02 -2.26927370e-01 1.52826801e-01 4.39070351e-03\\n1.07097767e-01 -7.23425597e-02 -6.30154312e-01 3.55206311e-01\\n-2.56618470e-01 -1.98945343e-01 1.73552498e-01 4.54097092e-01\\n8.23455676e-02 -4.97449309e-01 -5.19702494e-01 -2.60333955e-01\\n3.05381287e-02 -2.00251862e-01 6.28850162e-02 -1.77313492e-01\\n3.98115993e-01 2.79472023e-02 6.15051985e-02 4.02017355e-01\\n-7.28873968e-01 7.41557823e-03 -2.63501316e-01 -4.84086648e-02\\n-4.30597782e-01 -8.93377960e-02 -1.20950200e-01 -5.96159995e-02\\n-1.27885327e-01 2.70291537e-01 1.03023320e-01 1.40650839e-01\\n-1.70349151e-01 3.02430868e-01 -7.06722513e-02 2.56429732e-01\\n3.21581066e-01 1.75991148e-01 2.81737357e-01 3.24973732e-01\\n-4.89475518e-01 4.25270587e-01 -1.50225824e-02 -3.34316194e-01\\n3.03237975e-01 1.16709329e-01 4.48259056e-01 5.99275343e-02\\n8.83978680e-02 8.29369128e-02 -1.57754958e-01 1.40945390e-01\\n1.86626792e-01 -4.05217469e-01 -9.57964733e-02 -3.45108733e-02\\n-1.46836758e-01 1.01107834e-02 5.66654541e-02 8.18052068e-02\\n-3.83570760e-01 4.67964560e-01 2.32737124e-01 -2.30423406e-01\\n-7.10786730e-02 -4.45096463e-01 -7.42365271e-02 7.62551725e-02\\n-3.62130404e-02 1.73038617e-03 3.35518599e-01 1.45967498e-01\\n1.32403955e-01 2.93680821e-02 6.45787418e-02 7.67333925e-01\\n-1.38512803e-02 1.48196429e-01 -1.33719325e-01 2.53971666e-01\\n1.76519722e-01 -4.10493076e-01 2.78548479e-01 4.15549308e-01\\n6.17337637e-02 -1.20927528e-01 -1.78697869e-01 1.86371520e-01\\n-5.07205315e-02 -9.44609344e-02 -3.12949806e-01 7.79691339e-02\\n-2.44871303e-02 -3.45233411e-01 6.34652555e-01 1.47559732e-01\\n2.92232275e-01 5.22346348e-02 6.16950653e-02 -5.70451990e-02\\n-4.04910706e-02 2.30516970e-01 3.09516694e-02 2.42248103e-01\\n-3.53409648e-01 -1.98094949e-01 -1.25594482e-01 2.58810282e-01\\n-1.63262054e-01 2.34451756e-01 -1.02877468e-01 -6.26270175e-02\\n2.31362343e-01 4.11764123e-02 -3.43174934e-01 2.84666866e-01\\n8.91182199e-02 -1.65422589e-01 -1.30116776e-01 3.59108597e-01\\n4.61961962e-02 1.18675932e-01 -5.63206784e-02 -2.24686936e-01\\n6.92797542e-01 2.54175246e-01 1.21430248e-01 -5.56592420e-02\\n4.50366318e-01 -1.50836751e-01 2.12357536e-01 1.33042827e-01\\n-6.79938853e-01 3.56312841e-01 -1.29048126e-02 -1.50303781e-01\\n-3.19864936e-02 5.99157158e-03 2.69934326e-01 -4.61429715e-01\\n6.45606918e-03 -8.65569189e-02 -4.53485250e-01 -2.32634664e-01\\n-2.33120561e-01 1.62114874e-02 3.45313311e-01 -4.74464864e-01\\n-1.29196629e-01 1.55474290e-01 -5.26848435e-01 -1.73454657e-01\\n2.03691453e-01 1.28180295e-01 2.25429609e-01 1.29713953e-01\\n-2.86477525e-02 -4.43474978e-01 -2.34237462e-02 -5.23890615e-01\\n-4.57848549e-01 -1.17869889e-02 -3.08330685e-01 3.78769606e-01\\n1.54169202e-01 -9.41331405e-03 -2.89833963e-01 1.67355582e-01\\n-1.91053510e-01 -1.01237044e-01 1.78767517e-01 8.32180977e-02\\n1.53405204e-01 1.36301341e-02 -4.04747248e-01 3.55580211e-01\\n-2.25095466e-01 5.46011329e-01 2.31024727e-01 -7.32230246e-01\\n5.74651301e-01 3.48143429e-01 2.07070895e-02 -4.09685999e-01\\n4.73898530e-01 -3.27840418e-01 3.63477729e-02 1.85083807e-01\\n-3.49963963e-01 -3.38657081e-01 1.90444514e-01 -1.44300908e-01\\n-3.23285162e-01 5.11384249e-01 1.08282998e-01 8.71376917e-02\\n1.48188993e-01 -2.82800883e-01 6.10570982e-02 1.45225093e-01\\n-7.57299289e-02 -2.24193722e-01 -3.63301039e-01 -4.95508052e-02\\n-2.18269620e-02 -3.97020608e-01 -1.81401312e-01 -3.76587272e-01\\n-1.54027864e-01 -4.16910112e-01 -4.01245415e-01 4.10874486e-01\\n1.52734071e-01 2.89439484e-02 9.42164063e-02 2.42756754e-02\\n-8.22035149e-02 -6.66109085e-01 7.62750357e-02 5.69109991e-02\\n4.83015925e-01 1.79649577e-01 -2.92398874e-02 -1.36256456e-01\\n2.00605895e-02 6.46065176e-01 -3.02666903e-01 -4.36799318e-01\\n1.42087817e-01 1.98449224e-01 9.02390946e-03 -1.90455452e-01\\n2.39054160e-03 4.17563230e-01 -1.84093431e-01 1.57943424e-02\\n-2.09399968e-01 -7.40374625e-02 4.56414938e-01 -4.05411050e-02\\n-3.62800658e-01 -2.12435156e-01 -3.84178460e-02 1.91970006e-01\\n-5.10101199e-01 -2.35967934e-01 4.69315648e-01 2.65499353e-01\\n1.52784169e-01 1.12834655e-01 9.30865631e-02 1.44220725e-01\\n-1.98500738e-01 -3.55066508e-01 1.59675568e-01 1.02170616e-01\\n9.58727077e-02 2.72374731e-02 -1.09751344e-01 -7.05892682e-01\\n-3.57860398e+00 -1.54456064e-01 1.17296532e-01 -3.58474612e-01\\n1.57040104e-01 8.60425830e-03 1.75232008e-01 -1.40169248e-01\\n-3.67234439e-01 1.12563841e-01 -2.73984879e-01 -2.06158653e-01\\n7.84678832e-02 1.99624792e-01 2.62721181e-01 2.44374588e-01\\n2.89620131e-01 -3.38543862e-01 -8.31254274e-02 3.22546363e-01\\n-1.89086691e-01 -5.33013940e-01 1.56328768e-01 -8.07926357e-02\\n3.78168613e-01 2.36845106e-01 -3.02280843e-01 -6.91014752e-02\\n-3.36892247e-01 -3.28467816e-01 7.63467103e-02 -3.27701390e-01\\n-1.06256440e-01 1.78985268e-01 1.40661627e-01 -1.19899362e-01\\n4.04418372e-02 -4.33135271e-01 -5.54569028e-02 -4.21407878e-01\\n1.09078303e-01 -5.13788640e-01 6.36009648e-02 -1.57931134e-01\\n6.95812464e-01 -2.97442794e-01 2.68545449e-01 1.59259781e-01\\n1.96441963e-01 1.76789165e-01 5.63376211e-02 6.63564131e-02\\n-8.24726969e-02 -3.57424796e-01 -6.62016049e-02 -1.17699362e-01\\n5.42770445e-01 5.21977425e-01 -3.21123719e-01 -5.21274768e-02\\n8.28349143e-02 -3.39454353e-01 -2.71534413e-01 -3.85348678e-01\\n-5.05540669e-02 -4.16322611e-02 -6.14069104e-01 -4.93425310e-01\\n-3.02970201e-01 -7.09245279e-02 -1.46553800e-01 6.60475373e-01\\n-3.67950350e-01 -4.86978084e-01 4.62493412e-02 -5.35368860e-01\\n-2.33992692e-02 -2.45249316e-01 1.64906070e-01 -7.92293847e-02\\n-3.86970997e-01 -5.95680892e-01 -2.39894707e-02 -1.20241150e-01\\n-1.54713750e-01 -2.55245835e-01 1.55582979e-01 -3.65699567e-02\\n-3.07641327e-01 -3.54601860e-01 4.15111959e-01 1.21851481e-01\\n3.56321335e-01 1.89730749e-01 2.18801945e-01 1.54360786e-01\\n2.89261252e-01 9.22313891e-03 5.01034781e-02 -3.27154517e-01\\n9.12655592e-02 -2.59304605e-02 4.55766946e-01 -2.09569559e-01\\n-6.88465759e-02 7.36388937e-02 -3.07366729e-01 -1.92095235e-01\\n3.97151887e-01 2.92154141e-02 6.84614927e-02 -1.41952738e-01\\n4.20645714e-01 -2.76961416e-01 -1.63110688e-01 1.76148131e-01\\n8.92080739e-03 5.69060981e-01 5.61799332e-02 -4.54283863e-01\\n-1.40724540e-01 4.72900361e-01 -1.35789603e-01 -5.21575995e-02\\n8.16516578e-02 1.59935027e-01 -2.29043782e-01 4.82896678e-02\\n-1.62993316e-02 -2.80953765e-01 -2.22062886e-01 -9.15302783e-02\\n2.40725428e-02 1.02243997e-01 2.53852516e-01 2.19810177e-02\\n-1.28540620e-01 -2.88948596e-01 -1.95365593e-01 1.83673859e-01\\n2.45797560e-01 4.44608182e-01 1.13275096e-01 -1.45817235e-01\\n-9.22705010e-02 3.28213841e-01 -3.68295051e-02 1.32626116e-01\\n-1.91138089e-01 1.81276709e-01 -4.41945881e-01 -2.07546085e-01\\n-1.39557451e-01 -2.81789333e-01 1.43330291e-01 2.63030827e-01\\n9.53998193e-02 -3.55446674e-02 9.50289518e-02 -5.05297959e-01\\n3.64702284e-01 1.42178252e-01 2.39070311e-01 1.43523350e-01\\n3.79263423e-02 5.00493348e-01 4.00093049e-02 -1.58896729e-01\\n-3.99316192e-01 -7.93984458e-02 -1.11482248e-01 -1.33338869e-01\\n1.23052225e-01 -4.30563211e-01 -7.57423937e-02 2.88160175e-01\\n6.41240627e-02 -2.46326774e-01 -1.88240066e-01 4.27504361e-01\\n5.40549457e-02 -2.18872935e-01 -2.79368877e-01 -4.71048057e-02\\n3.06162477e-01 -1.15522444e-01 1.47318408e-01 -4.01239514e-01\\n-9.33479220e-02 6.45447001e-02 -2.84312088e-02 3.69291037e-01\\n1.59423083e-01 2.35275198e-02 -9.28477794e-02 -1.65495470e-01\\n4.37572420e-01 -2.25587916e-02 -9.69065428e-02 -1.55799881e-01\\n1.39202788e-01 -2.56935745e-01 -5.01692176e-01 5.93043044e-02\\n1.95458364e-02 -7.32901692e-02 9.97361988e-02 9.54829752e-02\\n4.90863882e-02 5.54760285e-02 -4.27533090e-01 -2.42149517e-01\\n-3.19615841e-01 -2.33973026e-01 -6.58251047e-02 -3.48971188e-01\\n-1.42133189e-02 -7.45663643e-02 -5.57183385e-01 2.73410231e-01\\n-3.88336629e-01 -5.00232615e-02 1.06363766e-01 1.16150804e-01\\n-3.62644225e-01 -6.84799775e-02 1.04726546e-01 2.18035460e-01\\n-3.36113334e-01 -2.87639201e-01 4.60156538e-02 -9.57406104e-01\\n1.70239821e-01 8.76221061e-02 -1.07657909e-01 5.42641059e-02\\n-1.63819513e-03 -4.52206135e-01 1.18598230e-01 -4.35451180e-01\\n9.50971805e-03 -8.01053867e-02 -2.58931994e-01 -2.85081565e-01\\n4.24206778e-02 -2.59201527e-01 -3.68386358e-01 3.84738505e-01\\n-3.13146204e-01 3.70339304e-01 -8.41901824e-02 6.82748109e-02\\n2.14676391e-02 -2.43325233e-01 1.67327106e-01 -5.71973741e-01\\n-4.01841313e-01 -2.72359997e-01 -3.27504039e-01 -2.40148768e-01\\n-9.89156403e-03 -3.05033743e-01 -2.41536587e-01 9.60338265e-02\\n2.73960263e-01 1.72606826e-01 -2.42198825e-01 -2.49932870e-01\\n1.65913831e-02 -6.25581741e-01 -4.21068594e-02 -2.32592821e-01\\n-7.67148957e-02 -1.54345244e-01 5.62568270e-02 -4.58587781e-02\\n7.54598528e-02 -5.04122555e-01 3.11357588e-01 -4.24329668e-01\\n-2.00700343e-01 8.13712832e-03 2.19845563e-01 8.46769512e-02\\n2.97267556e-01 -5.95009923e-01 -5.79856597e-02 3.08384418e-01\\n2.34660968e-01 8.14508572e-02 2.49725834e-01 1.62725411e-02\\n-1.08683653e-01 3.41774851e-01 -3.14241529e-01 1.34723827e-01\\n5.91243804e-01 6.94597065e-02 -1.14463463e-01 1.98782101e-01\\n2.70590574e-01 3.58612359e-01 5.90449989e-01 9.28065032e-02\\n4.15862612e-02 2.86983401e-01 6.43214732e-02 -4.33481634e-01\\n-8.49271566e-03 3.03755663e-02 -1.56749398e-01 -2.07867876e-01\\n5.57246685e-01 5.11646628e-01 -6.33273780e-01 -1.81267932e-01\\n-1.18068896e-01 -2.21558914e-01 1.81693301e-01 -2.89348364e-02\\n5.24213351e-02 -1.35913014e-01 5.39654374e-01 1.67307239e-02\\n7.00709149e-02 5.47003567e-01 -1.78729877e-01 -2.22354069e-01\\n-5.52947223e-02 7.47394785e-02 7.27902502e-02 4.99995947e-01\\n-6.96820095e-02 1.92893177e-01 -1.30753741e-01 7.53141716e-02\\n7.35032931e-02 3.09915215e-01 6.63059354e-02 1.23925850e-01\\n1.85047567e-01 3.80894691e-02 3.28887641e-01 4.27067935e-01\\n2.13729516e-01 4.70866084e-01 3.06196243e-01 9.29939970e-02\\n3.70843947e-01 6.15273774e-01 4.82394636e-01 -1.00984117e-02\\n-7.74666369e-02 -2.83566732e-02 1.39895871e-01 -1.17272839e-01\\n3.33040178e-01 4.18442249e-01 7.43177757e-02 8.05904925e-01\\n4.13264871e-01 2.60098010e-01 6.52689040e-01 -6.50068641e-01\\n-2.80000687e-01 9.07276720e-02 4.24983650e-01 -1.18952602e-01\\n-7.96879008e-02 1.52733222e-01 -2.36040607e-01 3.10547143e-01\\n-5.33010364e-01 -4.20841500e-02 2.41075903e-02 9.64438990e-02\\n2.44837597e-01 -5.09312637e-02 -2.05003366e-01 1.40806571e-01\\n-1.82958841e-01 -8.03655535e-02 -4.05690342e-01 -1.37749106e-01\\n-2.54208595e-01 -1.34888753e-01 -6.43124580e-02 -1.56268910e-01\\n1.78459305e-02 -3.27132881e-01 1.87085848e-02 8.74587744e-02\\n2.55218774e-01 -1.36147022e-01 -1.16964810e-01 -1.30390555e-01\\n2.34537989e-01 3.22108567e-01 4.19020355e-01 -8.30409229e-02\\n9.47498530e-02 -1.58502638e-01 -2.52952605e-01 1.81522489e-01\\n1.04169264e-01 4.05840836e-02 6.30686954e-02 2.25942880e-01\\n-2.13793829e-01 -4.27678674e-02 1.62121281e-01 4.09961969e-01\\n-3.88063490e-01 1.48173422e-01 -4.39369120e-02 3.11749399e-01\\n4.87943441e-02 1.76556975e-01 -2.56209075e-01 -3.74992788e-02\\n-2.42193148e-01 -5.11981249e-01 3.20799470e-01 -6.31775111e-02\\n-1.34411916e-01 1.51678413e-01 1.59209400e-01 3.32274228e-01\\n-2.56847143e-01 -4.02567089e-02 -8.80651269e-03 1.46502361e-01\\n-6.76369369e-02 2.87486404e-01 -1.24705561e-01 -3.13114911e-01\\n-2.28602156e-01 2.45329753e-01 -1.40167087e-01 5.90375289e-02\\n-1.95922107e-01 3.12457383e-01 6.56343922e-02 6.26347885e-02\\n3.17683429e-01 -9.38898977e-03 -2.17722446e-01 -1.97292104e-01\\n-3.64258289e-01 -1.21989205e-01 1.43814981e-01 8.17646086e-02\\n1.65961280e-01 -4.60202575e-01 -9.60230604e-02 -2.33497858e-01\\n-8.55634734e-02 -2.00792432e-01 7.28481337e-02 2.38590837e-02]]',\n", + " 'Job Informationen RESPONSIBILITIES: - work closely with other engineering team members, our product team members, and other stakeholders. - implement, test & document new climate change risk computations. - control the data quality at all computational steps. - employ agile development and rapid prototyping techniques. - promote best engineering practices to ensure quality assurance. - promote best team communication practices and train employees. - anticipate problems/opportunities and adapt to new challenges. OUR TECHNOLOGY STACK: - git - Python 3 - Django - PostgreSQL - Celery - UNIX - YouTrack YOU: - have experience in data manipulation and software development, particularly Python. - are interested in modern web technologies. Experience with Django is a big plus. - are a strong logical thinker. - interested in data quality management and project management. - have a Swiss work permit. - love to organize, communicate and collaborate. - would like to join a dedicated, technically savvy and enthusiastic team. - enjoy all aspects of a start-up environment. Benötigte Skills UNIX PostgreSQL Python Test Junior Konzeptionell / Analytisch',\n", + " '[\"Collaboration\", \"Communications\", \"Quality Assurance\", \"Adaptability\"]',\n", + " '[\"Django (Web Framework)\", \"Integrated Product Team\", \"Data Quality\", \"Software Development\", \"Project Management\", \"PostgreSQL\", \"Data Manipulation\", \"Python (Programming Language)\", \"Climate Change Mitigation\", \"Git Flow\", \"YouTrack\", \"Community Organizing\", \"Unix\", \"Rapid Prototyping\", \"Agile Product Development\", \"Controllability\", \"Technical Savvy\", \"Quality Management\"]',\n", + " \"['English']\"],\n", + " ['39',\n", + " 'elca data science program',\n", + " 'Lausanne',\n", + " 'IT Services',\n", + " '',\n", + " '[[-1.27562314e-01 1.75768003e-01 3.85745257e-01 -7.53846839e-02\\n5.38861632e-01 -2.51454681e-01 4.17747423e-02 5.36658525e-01\\n3.81771624e-02 -2.98006207e-01 -7.10759871e-03 -2.27944583e-01\\n1.30849138e-01 1.35768011e-01 1.82235181e-01 2.98342913e-01\\n3.84591103e-01 7.95879066e-02 -1.23500988e-01 1.95772827e-01\\n7.62329251e-02 -8.74279365e-02 2.04567969e-01 6.82323217e-01\\n3.22815716e-01 7.79936090e-02 6.95775449e-02 1.14692524e-01\\n-3.37259211e-02 -2.66537964e-01 4.28345561e-01 2.61810236e-02\\n1.00309122e-02 -1.73531741e-01 2.64845073e-01 1.63979352e-01\\n-1.59840643e-01 -7.60877579e-02 -1.08794995e-01 7.93671682e-02\\n-4.45542425e-01 -2.21016780e-01 -2.75060870e-02 3.25853676e-02\\n-3.65276963e-01 -4.52949136e-01 5.46473153e-02 -2.08344400e-01\\n8.59058872e-02 2.30437964e-01 -4.23375756e-01 3.53380144e-01\\n-2.35676676e-01 -2.82671869e-01 3.38012546e-01 7.86176980e-01\\n-9.42078680e-02 -3.83360565e-01 -5.52750885e-01 -3.20124894e-01\\n1.82023212e-01 -4.01928127e-02 -6.48616254e-02 -3.12977165e-01\\n2.85388231e-01 -9.32922494e-03 1.41257942e-01 2.57811636e-01\\n-8.43277276e-01 -1.80191860e-01 -4.02188957e-01 2.76947170e-02\\n-2.91458458e-01 -6.01925328e-02 -2.85194606e-01 -1.49467051e-01\\n-7.11406115e-03 3.98861140e-01 -3.74504691e-03 -1.53381243e-01\\n-8.54882151e-02 1.86304986e-01 -3.93803507e-01 2.76427358e-01\\n1.27678707e-01 2.70666212e-01 7.57733360e-02 1.79807708e-01\\n-3.28062773e-01 4.34601575e-01 1.85756370e-01 -3.30000222e-01\\n2.18365088e-01 9.62103531e-02 4.50032860e-01 3.48845981e-02\\n1.12253182e-01 6.65424988e-02 -2.16973290e-01 3.77761245e-01\\n3.25054348e-01 -2.92762369e-01 -1.60984229e-02 3.44012268e-02\\n-5.47720939e-02 1.98701844e-02 5.01208268e-02 2.47358128e-01\\n-3.09037387e-01 3.69017094e-01 -3.58633674e-03 -3.15332502e-01\\n-1.67191014e-01 -5.22809386e-01 -1.11273341e-01 2.71982793e-02\\n7.11524859e-02 1.87204018e-01 2.88483929e-02 2.36338481e-01\\n1.11737493e-02 -1.13308534e-01 1.32486612e-01 8.07621419e-01\\n-4.74676117e-02 1.49766773e-01 -2.27576226e-01 3.00051123e-01\\n-5.80943609e-03 -3.50307673e-01 2.43161425e-01 1.35783866e-01\\n4.67739999e-02 -1.32521093e-01 -7.93495849e-02 1.88242823e-01\\n-1.28798515e-01 -2.93433696e-01 -3.22662622e-01 2.49826819e-01\\n-2.12557018e-01 -5.11169434e-01 6.02558196e-01 -2.76755709e-02\\n9.61310714e-02 -1.34348780e-01 -1.13826171e-01 -1.50893359e-02\\n-1.72396943e-01 2.28392318e-01 5.84853534e-03 8.76622126e-02\\n-3.04617167e-01 -1.74957186e-01 -2.27134317e-01 2.22366661e-01\\n-3.13327283e-01 2.00080946e-01 -2.18198717e-01 -1.21069647e-01\\n4.13008392e-01 2.14103106e-02 -3.15402776e-01 2.02593252e-01\\n-5.28723607e-03 6.42187940e-03 -7.97987655e-02 2.44553477e-01\\n-3.38586658e-01 2.81435639e-01 -4.42826971e-02 -9.93093103e-02\\n5.80310524e-01 -3.09660751e-02 1.08882226e-02 -2.00092643e-01\\n1.93153247e-01 -3.97330383e-03 2.02402204e-01 1.00976035e-01\\n-5.78831673e-01 4.50500757e-01 -1.21698685e-01 1.87891722e-02\\n1.25278100e-01 -9.38358381e-02 1.97817504e-01 -2.46286884e-01\\n-4.98281652e-03 -8.32304955e-02 -2.21465796e-01 -1.86311513e-01\\n-3.66478711e-01 -6.53567538e-02 4.86956984e-01 -5.33530831e-01\\n-4.79687005e-02 3.13143134e-01 -6.37983143e-01 9.32804495e-03\\n2.15964586e-01 1.41884327e-01 1.50035203e-01 2.65402764e-01\\n-1.92584366e-01 -4.73628312e-01 1.77162096e-01 -4.02756870e-01\\n-1.11032732e-01 2.03411520e-01 -4.63165939e-02 3.34762156e-01\\n3.42245698e-02 8.81424248e-02 -1.60127640e-01 1.08104773e-01\\n-2.62903750e-01 9.57508162e-02 2.48826101e-01 7.18571395e-02\\n3.75048757e-01 3.21291350e-02 -4.17964756e-01 4.54304844e-01\\n-1.07150599e-01 4.01570857e-01 7.82042071e-02 -8.62355530e-01\\n3.71580213e-01 3.56425762e-01 1.34811476e-02 -4.17693824e-01\\n7.36369848e-01 -2.86124110e-01 -6.49637952e-02 1.82200000e-01\\n-4.29362476e-01 -3.40327024e-01 2.36117303e-01 -2.74252206e-01\\n-2.93458134e-01 6.84120178e-01 5.75060956e-02 3.39342475e-01\\n3.83405596e-01 -1.34769022e-01 -1.02041401e-01 1.44116342e-01\\n-1.64158911e-01 -1.96026340e-01 -3.79023969e-01 -2.08258733e-01\\n-1.19920619e-01 -4.76532906e-01 -2.28801966e-01 -5.61732411e-01\\n-2.15592355e-01 -4.26924467e-01 1.01385843e-02 1.41913205e-01\\n3.61537546e-01 2.37011701e-01 -3.34170349e-02 -4.76956069e-02\\n-1.40942812e-01 -6.84605896e-01 -8.48695561e-02 5.14720529e-02\\n2.58899689e-01 1.98256522e-01 4.95762080e-02 7.28322938e-02\\n3.24767232e-02 3.87693435e-01 -4.70132649e-01 -2.36376509e-01\\n2.23842889e-01 1.70034692e-01 -1.11203063e-02 -4.26593572e-02\\n4.17948924e-02 3.04820687e-01 -3.60211939e-01 1.29343688e-01\\n-5.00070788e-02 -4.54837233e-02 2.37266406e-01 3.01346660e-01\\n-1.33880898e-01 -3.97678643e-01 5.94804324e-02 2.29138806e-01\\n-4.43317950e-01 -3.87407124e-01 5.97324789e-01 5.19956462e-02\\n8.27252865e-02 2.45182008e-01 4.07271504e-01 -8.98790061e-02\\n-1.50041476e-01 -9.14386511e-02 9.53440741e-02 1.41815454e-01\\n1.64860949e-01 1.87754110e-01 -1.16683766e-01 -4.79350418e-01\\n-3.61804533e+00 -1.00510046e-01 8.24420825e-02 -2.05609202e-01\\n2.56524175e-01 -2.18045503e-01 6.85637221e-02 -7.02482238e-02\\n-3.59288633e-01 -6.12580590e-02 -9.11240056e-02 -1.43289506e-01\\n1.01301178e-01 4.85678464e-01 2.31829479e-01 2.96039999e-01\\n7.38686249e-02 -3.17311913e-01 -7.27382153e-02 5.50531685e-01\\n-1.91064045e-01 -5.88228643e-01 1.93726867e-01 2.01323768e-03\\n2.54793227e-01 3.82781416e-01 -5.26190996e-01 -1.10985033e-01\\n-2.48881817e-01 -1.78665057e-01 1.93074629e-01 -1.48387656e-01\\n-1.32625759e-01 3.47259820e-01 2.41692394e-01 -8.73849448e-03\\n1.66910470e-01 -2.61830032e-01 -3.94550823e-02 -2.81519502e-01\\n-5.26826305e-04 -7.49136448e-01 -1.70608297e-01 -6.91307709e-02\\n7.86375880e-01 -2.29314417e-01 1.44447386e-01 1.67760607e-02\\n4.72893454e-02 9.02187452e-02 -6.98800609e-02 6.09022602e-02\\n-2.66703516e-01 -2.94724435e-01 -1.93239614e-01 -2.34644916e-02\\n5.33748388e-01 5.66570342e-01 -1.34499192e-01 -2.07712442e-01\\n-1.31277904e-01 -3.38422805e-01 -5.87358654e-01 -3.26151937e-01\\n-2.42800832e-01 -1.75613567e-01 -5.26299715e-01 -4.52828109e-01\\n-6.78696707e-02 -6.81885406e-02 4.53031100e-02 5.49311638e-01\\n-3.46342742e-01 -3.50743890e-01 -6.43805116e-02 -4.80344474e-01\\n2.14185148e-01 -1.34917945e-01 7.72950202e-02 -6.62983507e-02\\n-2.33931765e-01 -4.05611247e-01 1.71940662e-02 5.75805530e-02\\n-1.19641975e-01 -2.32792646e-01 2.17311189e-01 -2.06647575e-01\\n-3.78884107e-01 -6.52003586e-01 3.86352956e-01 4.85046990e-02\\n2.83688009e-01 1.82688624e-01 2.96811432e-01 4.96671461e-02\\n3.07722747e-01 -1.74080417e-01 -2.56455969e-02 -5.29622376e-01\\n6.93832636e-02 5.12939296e-04 5.78639328e-01 -2.84755528e-01\\n1.57300353e-01 2.02110857e-02 -1.93477571e-01 5.36904763e-03\\n1.94507197e-01 8.60887766e-02 8.91363323e-02 -3.78223836e-01\\n1.30342051e-01 -1.04535177e-01 -1.55500367e-01 8.46154466e-02\\n4.69330326e-03 6.04101002e-01 -1.65395793e-02 -2.94107914e-01\\n-1.12728968e-01 4.53076243e-01 -4.52782251e-02 -2.02534944e-01\\n-2.68997282e-01 -1.27234403e-03 -2.17528015e-01 1.01420723e-01\\n-6.66281860e-03 -1.10313073e-01 -3.02951604e-01 -1.20034523e-01\\n-1.00403279e-01 4.71399933e-01 1.94233209e-01 1.29402176e-01\\n-1.05411313e-01 -2.51053452e-01 3.22418511e-02 1.75440535e-01\\n1.29880250e-01 2.94724137e-01 9.74326506e-02 -2.47959211e-01\\n-6.40300941e-03 2.18777150e-01 -3.32655549e-01 1.90394148e-01\\n-2.77570099e-01 8.18191767e-02 -4.26380873e-01 -3.50005358e-01\\n-2.51541495e-01 -3.59279215e-01 1.55466348e-01 2.68635511e-01\\n9.11565870e-02 -7.56492466e-02 1.41258210e-01 -4.77524489e-01\\n2.89443731e-01 8.93007591e-02 1.57998189e-01 1.65727586e-01\\n4.42664735e-02 5.96590221e-01 -1.93441045e-02 -7.45112523e-02\\n-4.73227762e-02 1.24320664e-01 -2.15539008e-01 -3.20937365e-01\\n6.18394930e-03 -4.88382876e-01 -1.94986150e-01 4.28578049e-01\\n3.23258191e-02 -2.24571899e-01 -2.30158985e-01 -5.64724253e-03\\n4.15677428e-02 -4.15307224e-01 -1.64710194e-01 2.36559622e-02\\n3.32984298e-01 2.02211782e-01 3.53325635e-01 -4.48929250e-01\\n1.11508012e-01 4.78628576e-02 -5.42596355e-02 4.86448765e-01\\n9.54429507e-02 1.69885188e-01 -2.53407776e-01 -1.14678770e-01\\n3.40496361e-01 -2.03805774e-01 5.90866357e-02 1.75412036e-02\\n6.86914846e-02 -1.83759540e-01 -3.65029126e-01 7.57057965e-02\\n2.33901143e-02 -1.23538606e-01 -1.82880610e-02 9.40757245e-02\\n8.98023546e-02 2.34193187e-02 -6.70311272e-01 -2.19245881e-01\\n-2.41545171e-01 4.85136770e-02 2.65738592e-02 -5.30459821e-01\\n-5.13198674e-02 -5.61236255e-02 -5.28185904e-01 3.68840307e-01\\n1.87304209e-03 9.75797884e-03 2.45671317e-01 -1.35242507e-01\\n-4.13762867e-01 -1.39497042e-01 2.41009176e-01 2.53397971e-01\\n-1.42315567e-01 -2.24531665e-01 -9.80765745e-02 -9.71109450e-01\\n1.18901342e-01 -1.23209678e-01 -1.25208452e-01 1.19554728e-01\\n3.14119980e-02 -7.20696986e-01 1.71749264e-01 -3.37866604e-01\\n-1.05420478e-01 2.27898713e-02 -2.22937971e-01 -5.47621965e-01\\n5.07765682e-03 5.07517755e-02 -2.62608349e-01 3.66537184e-01\\n-3.13053191e-01 3.75860393e-01 3.77718210e-02 1.18736178e-01\\n8.14891905e-02 -3.88248891e-01 1.23256430e-01 -2.64324874e-01\\n-2.53849685e-01 -6.14459738e-02 -1.36694118e-01 -1.82016343e-01\\n5.25886891e-03 -3.49987984e-01 -2.04951614e-01 1.09725274e-01\\n2.36193269e-01 -5.76109327e-02 -1.63712695e-01 -8.95962045e-02\\n-1.32328784e-02 -3.41251671e-01 1.12397559e-01 -2.23647818e-01\\n2.74732728e-02 -7.13201761e-02 2.59198427e-01 1.02023207e-01\\n3.40187624e-02 -4.45985079e-01 4.29548442e-01 -2.66596258e-01\\n-3.67034227e-01 1.69956908e-02 1.81129146e-02 -1.32056355e-01\\n2.71915555e-01 -3.23558956e-01 -1.56983539e-01 3.77039969e-01\\n2.58607715e-02 5.54441027e-02 3.33232224e-01 -1.93069726e-01\\n-7.45400861e-02 1.75947562e-01 -2.57623494e-01 8.11523572e-02\\n8.87438536e-01 7.27657601e-02 2.91504145e-01 -8.08807439e-04\\n3.18810306e-02 2.99495786e-01 4.48062986e-01 9.19603035e-02\\n-1.36797979e-01 3.64653200e-01 1.96445778e-01 -5.42837143e-01\\n5.10001443e-02 8.87235105e-02 -2.31183916e-01 -3.23859423e-01\\n5.49758315e-01 4.32714790e-01 -1.89571649e-01 -3.55552226e-01\\n-1.00282319e-01 -3.41858864e-01 1.14817291e-01 -8.99456590e-02\\n1.72485992e-01 -1.16593383e-01 5.49813092e-01 8.36055428e-02\\n2.54741848e-01 3.87960225e-01 -1.74738228e-01 -4.64237124e-01\\n-1.10814936e-01 2.09436461e-01 6.18675947e-02 4.51807439e-01\\n-2.02112451e-01 4.85010564e-01 -8.68679732e-02 9.87124890e-02\\n-1.28217205e-01 -1.49393052e-01 2.69397825e-01 1.47871763e-01\\n2.93993354e-02 1.73883036e-01 6.73452795e-01 5.68780780e-01\\n4.18836117e-01 4.95445192e-01 2.17178866e-01 -5.39094731e-02\\n5.48864901e-01 5.29124618e-01 4.75591838e-01 1.35218516e-01\\n1.24927172e-02 -3.55058685e-02 4.05744538e-02 1.63218156e-01\\n3.04372072e-01 2.80554742e-01 -2.27124840e-02 7.60935664e-01\\n3.34214687e-01 2.37479791e-01 6.75716877e-01 -6.41901076e-01\\n-2.78410465e-01 -4.29420127e-03 4.41207945e-01 -3.94764304e-01\\n-2.22495735e-01 1.74669549e-01 -2.49235734e-01 8.22156817e-02\\n-5.03545582e-01 -2.19902471e-01 -8.61272290e-02 2.33891249e-01\\n-1.31532848e-01 -9.31122899e-02 -5.44556528e-02 1.23937272e-01\\n-1.08730569e-01 -2.93386132e-01 -5.14881492e-01 -7.81542659e-02\\n-1.90153196e-01 -1.98888138e-01 -1.79355383e-01 4.06051427e-02\\n-2.30978504e-01 -2.92059124e-01 -1.80285618e-01 -9.25961602e-03\\n2.99799353e-01 -1.07208230e-01 -1.56794310e-01 -1.08440332e-01\\n3.23752493e-01 2.34590501e-01 4.58584130e-01 1.05373105e-02\\n-4.32602726e-02 -3.53218287e-01 -1.31593764e-01 7.83054754e-02\\n2.28627384e-01 3.19646522e-02 1.10327220e-02 3.96888584e-01\\n-2.60737598e-01 -8.30419809e-02 6.44620135e-02 3.14841062e-01\\n-4.89970714e-01 -6.68966472e-02 7.68304663e-03 4.03115124e-01\\n7.73999617e-02 1.85292348e-01 -1.67584449e-01 6.72553405e-02\\n-4.16915640e-02 -4.52302128e-01 2.67468274e-01 -6.02861978e-02\\n-9.41103045e-03 7.25296289e-02 1.95146754e-01 2.04866976e-01\\n-2.05205187e-01 -6.18208162e-02 -8.00065249e-02 1.92741826e-01\\n5.80133907e-02 3.16281170e-01 -2.80494571e-01 -4.13446009e-01\\n-2.23303095e-01 8.62563103e-02 -1.10087134e-01 1.44151077e-01\\n9.65426862e-03 3.33849877e-01 4.51238006e-02 8.36540982e-02\\n3.89106542e-01 -8.17313194e-02 -6.22094013e-02 -2.59390652e-01\\n-1.84951425e-01 -2.78275877e-01 -8.89367536e-02 -3.79599035e-02\\n2.17834771e-01 -2.81014979e-01 -1.71533898e-01 -1.35948285e-01\\n-1.84048623e-01 -3.04433614e-01 9.52267125e-02 -1.34434521e-01]]',\n", + " 'Are you about to graduate and would like to become a data science professional? Come join ELCA’s competitive Data Science Program! In this role You will actively participate in innovative data science projects with our main clients in Switzerland. Examples of areas you might work on: Natural Language Processing and Predictive Maintenance. You will learn through concrete projects, work closely with our clients and become a data science professional You will develop your skillset in a highly sought-after field and get exposure to what the market needs You will actively participate in knowledge and experience sharing meetings with the team What we offer A permanent contract with a three-year artificial intelligence program in which participants will integrate several industrial projects in the data science and data engineering fields Relevant trainings will be offered as part of the curriculum A very pleasant working environment in a dynamic and highly motivated data science team Coaching by our data science lead experts About your profile You are a strong fresh master’s graduate in the data science, computer science, communication systems or equivalent fields, or you have a master’s degree in one of these fields and have one or two years of professional / research experience. You have successfully taken at least one machine learning and data analysis courses Certifications from renowned online courses such as Stanford’s are valid Minimum required GPA in the relevant courses >= 5/6 Minimum required GPA in projects (semester and Master thesis) >= 5/6 Your team spirit is amongst your strongest qualities Your location base: Lausanne but you must be willing to travel to Geneva or Bern on a regular basis You must submit your diplomas and grades with your application Fluency in English and in either French or German',\n", + " '[\"Innovation\", \"Integration\", \"Professionalism\"]',\n", + " '[\"Machine Learning Methods\", \"Predictive Maintenance\", \"Research Experiences\", \"Data Science\", \"Activism\", \"Natural Language Processing\", \"Online Course Development\", \"Data Engineering\", \"Science Communication\", \"Computer Science\", \"Artificial Intelligence\", \"Survey Data Analysis\", \"Communications Systems\", \"Industrialization\"]',\n", + " \"['English', 'Avaric', 'Dzongkha', 'Bambara', 'Malay']\"],\n", + " ['57',\n", + " 'frontend software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.43801951e-01 3.04664254e-01 6.32743299e-01 -1.06854185e-01\\n4.87646967e-01 -2.94332951e-01 1.37239993e-01 4.09365863e-01\\n-1.33238286e-01 -3.56336474e-01 -2.24073231e-01 -2.67607152e-01\\n-1.73421398e-01 -1.65297184e-02 1.58311233e-01 3.00390780e-01\\n2.43403271e-01 1.44851759e-01 -2.55714178e-01 4.28972721e-01\\n2.42723554e-01 -1.86964929e-01 9.50703546e-02 5.76076448e-01\\n3.83632153e-01 -2.23678350e-02 -1.11208186e-01 6.76733553e-02\\n-2.63309926e-01 -2.87610650e-01 3.82483006e-01 3.96078378e-02\\n-8.19155276e-02 -2.22560436e-01 1.16582423e-01 1.13863595e-01\\n-1.85603410e-01 7.42620975e-02 8.44285116e-02 1.89040542e-01\\n-4.33212280e-01 -1.54293746e-01 1.94546625e-01 2.53879912e-02\\n-2.00338975e-01 -3.59630615e-01 1.54013216e-01 3.79333273e-02\\n7.86461122e-03 4.20111977e-02 -4.49298412e-01 4.35314059e-01\\n-2.44344100e-01 -3.19771439e-01 3.44188362e-01 4.96258706e-01\\n-7.52473101e-02 -5.75018942e-01 -3.32102001e-01 -2.76812732e-01\\n8.35676640e-02 -1.13145269e-01 1.08216917e-02 -2.46394187e-01\\n3.95850658e-01 -3.73902395e-02 -3.24440114e-02 3.42593312e-01\\n-8.24520886e-01 -4.61890548e-02 -8.15943182e-02 -5.02635576e-02\\n-3.56309593e-01 -8.91486555e-02 -2.78530985e-01 -7.97300786e-02\\n-6.72791079e-02 4.35228765e-01 5.31020202e-02 1.01261988e-01\\n-4.80471738e-02 2.09807634e-01 -2.23933533e-01 2.58239895e-01\\n2.86724955e-01 2.87712127e-01 1.56051919e-01 3.17852765e-01\\n-3.89625192e-01 3.67842674e-01 1.07566535e-01 -2.56553113e-01\\n2.19558507e-01 1.66036516e-01 5.07274926e-01 8.86929706e-02\\n1.23818286e-01 1.35711119e-01 -2.77809113e-01 1.92265809e-01\\n2.95913875e-01 -2.67591089e-01 -6.01857454e-02 1.50686374e-03\\n-1.02634490e-01 1.48752585e-01 3.09704617e-02 4.00002033e-01\\n-3.63573134e-01 5.50787508e-01 5.30914105e-02 -1.88348621e-01\\n-8.77909660e-02 -5.89384437e-01 -1.46080494e-01 7.05716014e-02\\n-1.59091235e-03 2.19215795e-01 2.22090781e-01 2.78352380e-01\\n2.13592902e-01 1.28292114e-01 2.19606489e-01 9.76525366e-01\\n-8.13614391e-03 1.68957770e-01 -2.98416585e-01 4.30756897e-01\\n1.79662675e-01 -1.61552578e-01 1.73958346e-01 3.86855185e-01\\n2.21547693e-01 -8.41523632e-02 -2.01957777e-01 3.88921052e-01\\n-4.67790179e-02 -1.76123872e-01 -3.01546842e-01 7.16145039e-02\\n-1.89139768e-01 -5.41219413e-01 5.52438200e-01 -5.47197163e-02\\n1.31550983e-01 -2.79712095e-03 8.38311091e-02 -7.29104504e-02\\n-1.10243000e-01 2.19828591e-01 9.28632617e-02 1.70638025e-01\\n-3.88084859e-01 -1.17299490e-01 -3.32506239e-01 2.75336057e-01\\n-2.47070029e-01 3.32584903e-02 -7.94696435e-02 -1.27175570e-01\\n3.14349025e-01 1.09427553e-02 -3.79735708e-01 2.84850091e-01\\n-6.10045791e-02 -6.20872481e-03 -1.11755677e-01 3.23184818e-01\\n-9.22076404e-02 1.77571297e-01 -4.94115949e-02 -2.02411741e-01\\n4.89685237e-01 2.26220265e-01 7.89776370e-02 -8.01711231e-02\\n4.24850643e-01 -7.94461221e-02 2.01090068e-01 4.37354818e-02\\n-7.58640707e-01 3.11667621e-01 -1.39512811e-02 -6.31640628e-02\\n6.05637208e-02 -1.55173857e-02 3.46240401e-01 -3.54552984e-01\\n3.38032469e-02 -2.36295685e-01 -3.71773392e-01 -1.76953062e-01\\n-2.94272006e-01 -3.23535688e-02 5.24507642e-01 -3.77155125e-01\\n-2.33510673e-01 2.61284113e-01 -5.84904253e-01 1.23110324e-01\\n3.76459092e-01 2.04874784e-01 9.40305367e-02 1.13221556e-01\\n-1.51271015e-01 -5.84072769e-01 5.95615394e-02 -2.79976964e-01\\n-3.67600173e-01 2.14894667e-01 -3.18532825e-01 2.35562891e-01\\n6.41163066e-02 1.94361899e-02 -1.22367151e-01 4.52882424e-02\\n-6.91927224e-02 -1.61303461e-01 1.63659945e-01 9.49499607e-02\\n3.55067730e-01 1.15357516e-02 -3.92337620e-01 5.37651181e-01\\n-2.80301720e-01 4.49732989e-01 7.67051652e-02 -9.28619862e-01\\n5.61919868e-01 3.03219020e-01 -2.25417945e-03 -3.27105433e-01\\n7.41088569e-01 -1.76696926e-01 -3.78212444e-02 9.15189087e-02\\n-3.30762118e-01 -3.21820408e-01 1.65192142e-01 -1.69345096e-01\\n-2.79167682e-01 4.68448430e-01 1.25834018e-01 8.84476956e-03\\n3.09192091e-01 -2.11579978e-01 -1.03458501e-01 1.00971460e-01\\n-1.34844914e-01 -1.83686912e-01 -2.71868020e-01 1.99572384e-01\\n-6.28494024e-02 -5.03302038e-01 -7.61559531e-02 -4.17537630e-01\\n-2.47925207e-01 -4.04432118e-01 -3.28459144e-01 3.64781797e-01\\n6.41399324e-02 1.67227149e-01 -2.01479774e-02 -3.44765484e-02\\n-3.06393266e-01 -6.05937719e-01 -9.42266360e-03 6.97250366e-02\\n3.48016918e-01 1.94253027e-01 8.61977637e-02 -4.40157065e-03\\n-6.90550804e-02 5.47477841e-01 -1.86131120e-01 -7.46162683e-02\\n5.36040775e-02 1.27117351e-01 2.97708693e-03 -1.31852210e-01\\n6.62158206e-02 3.89276296e-01 -1.96360454e-01 7.17203692e-02\\n-2.51857132e-01 -4.73562954e-03 3.51131737e-01 -1.84828892e-01\\n-3.22470635e-01 -2.77242512e-01 -2.88707986e-02 2.15663433e-01\\n-5.23462713e-01 -2.49919802e-01 5.71616352e-01 6.69655949e-02\\n2.01716214e-01 2.07158372e-01 1.63657576e-01 -1.10455036e-01\\n-1.75105438e-01 -2.53246993e-01 1.94511250e-01 3.79163921e-02\\n7.58373663e-02 2.38392204e-01 -1.43427923e-01 -5.57461560e-01\\n-3.45653987e+00 -2.25666970e-01 1.86047971e-01 -3.36251587e-01\\n7.00988621e-02 -1.47015452e-01 6.90668123e-03 -1.93146244e-01\\n-2.10117951e-01 8.50557089e-02 -8.93044993e-02 -1.01415537e-01\\n1.44926786e-01 3.60226423e-01 1.25128806e-01 2.24543124e-01\\n2.46724069e-01 -2.12469190e-01 -1.60791855e-02 2.99557716e-01\\n-1.87855884e-01 -5.45831025e-01 2.29288086e-01 -8.83627981e-02\\n2.65760899e-01 3.09721678e-01 -2.78742075e-01 -2.30839252e-01\\n-1.58001900e-01 -2.69436747e-01 1.02886036e-01 -1.63943514e-01\\n-8.95713568e-02 3.51781338e-01 1.37632161e-01 3.41867246e-02\\n2.20362857e-01 -3.24611902e-01 -7.53170811e-03 -3.51345241e-01\\n1.83259487e-01 -6.36673331e-01 -9.77046639e-02 -6.26446977e-02\\n6.90920115e-01 -4.21544909e-01 1.66997343e-01 1.50235176e-01\\n3.30949277e-02 1.58933327e-01 4.01655631e-03 -1.41147330e-01\\n-2.34966487e-01 -9.68385786e-02 1.22521207e-01 -1.23688608e-01\\n4.98103350e-01 5.62780976e-01 -1.81868166e-01 -4.86278348e-02\\n4.54834774e-02 -3.43240976e-01 -5.55224240e-01 -4.01442021e-01\\n-2.09729284e-01 -1.74427956e-01 -6.87663376e-01 -4.98480767e-01\\n-9.20046642e-02 -8.34719017e-02 -1.51804775e-01 5.00657082e-01\\n-2.32320890e-01 -3.91327560e-01 -1.08151510e-01 -4.09400463e-01\\n8.35784003e-02 -1.33228272e-01 -8.58193561e-02 -1.87371656e-01\\n-2.60247469e-01 -4.48980391e-01 -1.76314842e-02 1.76579524e-02\\n-1.91700548e-01 -1.77976459e-01 2.26227239e-01 -2.10897431e-01\\n-3.25205952e-01 -5.00921071e-01 4.78591770e-01 7.38535002e-02\\n2.22961545e-01 4.62902188e-02 2.65757531e-01 1.47438198e-01\\n4.02132869e-01 -2.89034396e-01 2.61781756e-02 -3.97225767e-01\\n1.57539845e-01 2.99648885e-02 5.43606579e-01 -1.82741091e-01\\n1.01705551e-01 1.53669327e-01 -2.19955817e-01 -2.06989959e-01\\n3.66716594e-01 -9.56741814e-03 -6.24971930e-03 -2.58969367e-01\\n3.19528371e-01 -2.31769368e-01 -2.86979288e-01 1.17017388e-01\\n4.30772826e-02 6.12422585e-01 -1.25633210e-01 -4.02901888e-01\\n-2.83803374e-01 5.15229106e-01 -2.44643807e-01 -4.03778553e-02\\n-1.55504405e-01 9.79435965e-02 -1.52472943e-01 4.13491160e-01\\n3.01932693e-02 -1.27418920e-01 -3.31271142e-01 -7.97156394e-02\\n-9.86396428e-03 2.52371848e-01 2.48351723e-01 3.10363453e-02\\n3.62005457e-02 -3.30272496e-01 1.13976048e-02 1.26186326e-01\\n1.16379850e-01 2.38886192e-01 7.78713450e-02 -1.11604109e-01\\n1.58764236e-02 3.23369950e-01 -1.98942050e-01 2.32020885e-01\\n-3.07196796e-01 7.37151057e-02 -5.21885633e-01 -3.67267668e-01\\n-2.04657614e-01 -2.90399194e-01 4.11370546e-02 2.34135315e-01\\n4.64561544e-02 8.91952664e-02 5.51664121e-02 -5.27570486e-01\\n3.27942342e-01 2.99620889e-02 3.35274488e-01 2.24702343e-01\\n-8.56683329e-02 4.26490039e-01 1.11473091e-02 -4.56508063e-02\\n-2.06100315e-01 -9.10685398e-03 -1.18240699e-01 -1.50980845e-01\\n3.49591486e-02 -4.51719105e-01 9.14148334e-03 3.86673868e-01\\n1.17207356e-01 -4.02205378e-01 -1.71762869e-01 1.66221425e-01\\n4.59441617e-02 -4.57251161e-01 -1.88928947e-01 -5.79261892e-02\\n2.96822876e-01 5.87357171e-02 3.75135988e-01 -4.53877985e-01\\n3.44254114e-02 7.55259693e-02 -1.32735431e-01 5.19874215e-01\\n-9.91509389e-03 -3.10055390e-02 -1.42054632e-01 -1.46375626e-01\\n3.32684636e-01 -1.88540444e-01 -2.48413458e-02 -2.24708706e-01\\n1.58014745e-01 -1.02950245e-01 -4.02268678e-01 -5.88706657e-02\\n-4.73555364e-02 -1.19916372e-01 3.53110395e-02 4.61347289e-02\\n1.23074185e-02 1.55632466e-01 -4.13900733e-01 -3.32708895e-01\\n-2.98696280e-01 -2.09041804e-01 3.25650536e-02 -3.01105917e-01\\n-9.53198522e-02 1.60517432e-02 -4.52231854e-01 2.25786626e-01\\n-2.19426394e-01 -4.66946438e-02 2.33442560e-01 -4.49880166e-03\\n-3.93165290e-01 -1.45927593e-01 1.77311108e-01 1.85487777e-01\\n-2.56884485e-01 -3.08755308e-01 -3.71140726e-02 -1.00964475e+00\\n1.91837221e-01 3.18966061e-02 -5.32261208e-02 5.84800206e-02\\n-1.04599707e-01 -4.88487303e-01 1.79084688e-01 -4.79246765e-01\\n-1.89336687e-02 5.72432950e-02 -2.75062859e-01 -4.35738415e-01\\n1.29951507e-01 2.88638677e-02 -3.48432690e-01 3.54824126e-01\\n-4.38770413e-01 3.69435012e-01 -9.79853328e-03 9.60118100e-02\\n-1.49828270e-01 -2.13677898e-01 1.90632045e-02 -5.57851315e-01\\n-3.83823156e-01 -1.39461309e-01 -2.30905145e-01 -8.86255577e-02\\n-3.19140963e-02 -1.78702071e-01 -1.21432841e-01 6.83760643e-02\\n3.03821564e-01 1.54794127e-01 -4.55648405e-03 -2.35956207e-01\\n1.11210026e-01 -4.54432607e-01 3.42675089e-03 -2.62609214e-01\\n-6.00495860e-02 -1.54683068e-01 1.19809948e-01 5.12874313e-02\\n4.77147140e-02 -3.60932678e-01 3.97173166e-01 -1.87284261e-01\\n-2.80867785e-01 -1.21304784e-02 8.52919742e-02 -6.75825449e-03\\n2.64998823e-01 -4.96838540e-01 3.36437970e-02 3.11138511e-01\\n1.11213841e-01 6.81063384e-02 2.94738203e-01 1.16124917e-02\\n-9.44410115e-02 2.47866094e-01 -3.30190033e-01 1.86626129e-02\\n8.07536364e-01 1.33659720e-01 7.19944611e-02 1.22543737e-01\\n1.44484341e-01 3.96527201e-01 4.74688798e-01 1.46047417e-02\\n-2.55955588e-02 3.46837610e-01 4.66072857e-02 -6.59245312e-01\\n2.38841753e-02 9.74366441e-02 -3.04243892e-01 -1.71175569e-01\\n6.68884516e-01 4.03843433e-01 -2.77912319e-01 -2.67787248e-01\\n-1.39360696e-01 -2.37171486e-01 1.17529452e-01 -2.00883836e-01\\n4.92978394e-02 -1.16019040e-01 5.15603006e-01 3.39487568e-02\\n1.91352636e-01 4.34989542e-01 -2.35057622e-01 -3.64696860e-01\\n5.38216643e-02 2.38192663e-01 1.30360231e-01 4.22230750e-01\\n-1.14630468e-01 1.61176547e-01 -2.72663031e-02 1.14847228e-01\\n-5.05996533e-02 9.24516618e-02 1.33905962e-01 1.23801336e-01\\n2.47624397e-01 -4.44815680e-02 3.21778059e-01 4.37996805e-01\\n2.96047181e-01 5.01949847e-01 2.95685589e-01 -2.06836406e-02\\n4.21792120e-01 5.83679557e-01 4.44633812e-01 2.17041448e-01\\n-7.84374103e-02 1.38526753e-01 6.06900454e-02 -9.23720747e-02\\n3.00854653e-01 3.34515542e-01 5.65134324e-02 9.05631900e-01\\n4.58139539e-01 3.03264439e-01 7.76284575e-01 -5.56237817e-01\\n-4.08237040e-01 -6.20390624e-02 3.79456937e-01 -2.58509487e-01\\n-1.43472716e-01 1.11741900e-01 -2.36429468e-01 2.29159817e-01\\n-5.64016402e-01 -1.61455452e-01 -9.30906758e-02 4.58429195e-02\\n1.29583761e-01 1.09015782e-04 -2.58392811e-01 -1.26261950e-01\\n-2.36580938e-01 -1.07916035e-01 -4.67174560e-01 -6.66528121e-02\\n-1.24037370e-01 -2.03172103e-01 -2.42561489e-01 -1.53923452e-01\\n-7.20133185e-02 -4.55406696e-01 -2.31256619e-01 8.55654851e-02\\n2.26094693e-01 -1.40586123e-01 -1.13998033e-01 -2.30453283e-01\\n1.62722051e-01 2.27043793e-01 4.00586665e-01 -2.83472314e-02\\n1.44287497e-01 -1.79343432e-01 -1.28128871e-01 1.09226324e-01\\n1.70309037e-01 1.39437631e-01 2.16879509e-02 4.12476629e-01\\n-3.69327962e-01 -1.40135646e-01 -9.13431048e-02 3.91230971e-01\\n-3.95795941e-01 -1.18618861e-01 -9.08085611e-03 2.82943606e-01\\n1.13024621e-03 -1.01299565e-02 -1.94153279e-01 1.48456590e-03\\n-2.53991306e-01 -5.22776186e-01 3.40421945e-01 -1.36357695e-01\\n-1.06421113e-01 1.51928708e-01 1.13459170e-01 1.22526787e-01\\n-1.60754144e-01 -4.52131219e-02 3.16221011e-03 1.74417213e-01\\n1.70530573e-01 3.08026761e-01 -2.25807786e-01 -2.57296294e-01\\n-2.71178693e-01 1.81210577e-01 -3.56217831e-01 1.58377409e-01\\n-8.41408372e-02 3.28796089e-01 1.32899806e-01 9.62934643e-02\\n2.93193847e-01 -1.07784905e-02 -1.37998313e-01 -1.77868083e-01\\n-2.46417835e-01 -2.89227158e-01 1.10608093e-01 8.62277225e-02\\n1.86433226e-01 -3.70826900e-01 -2.08479818e-02 -7.51478001e-02\\n-1.56641558e-01 -3.55135292e-01 -9.04970914e-02 -8.62726271e-02]]',\n", + " 'We are currently looking on behalf of one of our important clients for a Frontend Software Engineer. The role is a permanent position based in Zürich Canton. Your Role: Create attractive & highly interactive interfaces without losing focus on accessibility. Find & solve user experience problems. Design & implement code with a focus on robustness, scalability, reliability & performance. Participate in DevOps strategy, including automation efforts & monitoring improvements. Challenge product & user experience designers. Ensure high quality of software products with Unit, Integration & End-to-End Tests. Work in small & motivated interdisciplinary teams & bring Machine Learning, Natural Language Processing & Chatbots to the cloud. Your Skills & Experience: Very good experience in & knowledge of JavaScript, CSS3 & HTML5. Good knowledge of Browser APIs & REST API architectures. Experienced with one or more modern JavaScript frameworks including but not limited to Vuejs, React or Angular. Confident in working with one of the following languages: Python, Go, Java, Ruby or PHP. An interest in or understanding of at least one of the following: DevOps, Data Visualization, Software Architecture, User Experience Design or Interaction Design. Any Typescript experience is considered advantageous. Your Profile: University Degree in Computer Science or equivalent practical experience. Enthusiastic to work within an Agile environment & with cutting edge technologies. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Positivity\", \"Reliability\", \"Integration\"]',\n", + " '[\"Automation\", \"Accessioning\", \"Agility\", \"Natural Language Processing\", \"Interactivity\", \"Computer Science\", \"Machine Learning\", \"Interaction Design\", \"TypeScript\", \"Ruby (Programming Language)\", \"Python (Programming Language)\", \"HTML5\", \"Agile Edge Technologies\", \"SARS Software Products\", \"Limiter\", \"Software Engineering\", \"PHP (Scripting Language)\", \"React.js\", \"Data Visualization\", \"Software Architecture\", \"JavaScript (Programming Language)\", \"Scalability\", \"User Experience Design (UX)\", \"JavaScript Frameworks\", \"Receivables\", \"Angular (Web Framework)\", \"Chatbot\", \"Experience Design\", \"User Experience\", \"Java (Programming Language)\", \"Application Programming Interface (API)\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Central Khmer', 'Ossetian', 'Kyrgyz', 'Hausa']\"],\n", + " ['65',\n", + " 'internship in software engineering',\n", + " 'Zürich',\n", + " 'Venture Capital & Private Equity',\n", + " 'www.investiere.ch',\n", + " '[[-1.34337008e-01 1.63646415e-01 5.36213756e-01 -8.01078528e-02\\n5.42521477e-01 -1.00907318e-01 -9.42225754e-03 4.80246872e-01\\n-7.36143216e-02 -4.75178659e-01 9.17065609e-03 -2.05954865e-01\\n7.83101320e-02 1.36848420e-01 1.07726656e-01 2.70896733e-01\\n2.88107067e-01 1.29904479e-01 -1.59375340e-01 1.76806614e-01\\n1.99277341e-01 -1.48189917e-01 1.86817139e-01 7.22412407e-01\\n5.48068941e-01 -5.50843626e-02 -4.24359478e-02 -4.42284718e-02\\n-1.93588898e-01 -3.04115504e-01 4.47946876e-01 -7.01969862e-02\\n-8.25247914e-02 -3.96388829e-01 9.71253067e-02 -4.03905325e-02\\n-1.91450372e-01 -9.99890268e-02 -1.76792905e-01 1.99802920e-01\\n-6.17486417e-01 -2.04826638e-01 2.84638442e-02 9.48825926e-02\\n-2.84893036e-01 -3.41554403e-01 1.11690335e-01 -7.62473121e-02\\n2.65813798e-01 2.58713812e-02 -4.52398270e-01 2.56151646e-01\\n-1.63122237e-01 -2.06633508e-01 3.55508685e-01 6.24765813e-01\\n-3.37766297e-02 -4.36281174e-01 -5.57289064e-01 -2.85065502e-01\\n7.34069943e-02 -1.67526931e-01 5.05903289e-02 -3.39640141e-01\\n3.12954605e-01 5.91142699e-02 1.02274247e-01 3.26941907e-01\\n-8.92845809e-01 -3.66910622e-02 -1.94773734e-01 -4.84204292e-02\\n-2.63017803e-01 -1.19995676e-01 -2.60107160e-01 -8.28199089e-03\\n-8.90427381e-02 5.21384537e-01 7.25836679e-02 3.73426452e-02\\n-1.51157573e-01 2.88798392e-01 -3.23880792e-01 4.41498101e-01\\n8.45139697e-02 2.59786844e-01 1.40834361e-01 2.41163090e-01\\n-3.10629010e-01 3.97966504e-01 1.50540158e-01 -3.07049900e-01\\n2.75296479e-01 6.13732338e-02 4.41681057e-01 9.26104933e-02\\n1.04586169e-01 3.35003473e-02 -2.75862992e-01 3.41921002e-01\\n2.99706340e-01 -2.36870155e-01 7.86397755e-02 -1.69480726e-01\\n-3.43083180e-02 1.83355846e-02 7.81609677e-03 1.50317430e-01\\n-3.01395625e-01 4.52977240e-01 1.86836869e-01 -9.37541872e-02\\n-1.76229194e-01 -5.49221873e-01 -9.83577874e-03 -2.09357515e-02\\n1.19718025e-02 1.55485585e-01 2.15038836e-01 1.40489504e-01\\n1.31163657e-01 6.92061558e-02 1.48857981e-01 8.44469488e-01\\n-1.14525452e-01 4.58277203e-02 -2.46382222e-01 3.07828069e-01\\n2.03332454e-02 -2.98745811e-01 1.98079988e-01 2.95082152e-01\\n2.58437321e-02 -7.74823874e-02 -1.56687558e-01 4.13819522e-01\\n-2.92064678e-02 -2.24598393e-01 -3.03157091e-01 1.34789035e-01\\n-1.29112639e-02 -3.60426575e-01 6.17812991e-01 1.36699080e-01\\n1.89158157e-01 1.04470160e-02 8.19882452e-02 -2.23682478e-01\\n-1.28406942e-01 2.24445134e-01 -4.15785536e-02 6.90870211e-02\\n-2.66860336e-01 -1.76316708e-01 -2.79011160e-01 1.47194639e-01\\n-3.00567687e-01 2.14299373e-02 -1.95612665e-02 -5.84186651e-02\\n3.13555241e-01 1.50806233e-01 -2.03662470e-01 3.87626112e-01\\n-3.62312272e-02 1.29218176e-01 2.95628197e-02 2.11626485e-01\\n-2.48146668e-01 3.21363211e-01 -1.40236020e-01 -1.84681881e-02\\n5.72188973e-01 1.29853804e-02 2.10156381e-01 8.96748453e-02\\n2.74574071e-01 -1.06913365e-01 8.07373002e-02 1.08396962e-01\\n-6.12612605e-01 2.81096786e-01 1.86051689e-02 -1.24053828e-01\\n9.94442850e-02 -8.51314813e-02 2.27947250e-01 -2.56508350e-01\\n7.50555098e-02 -1.19216450e-01 -3.35309774e-01 -3.03479314e-01\\n-2.33170182e-01 -1.82270017e-02 4.71142024e-01 -4.94881332e-01\\n-1.36893615e-01 3.29573303e-01 -4.80622560e-01 -1.02106199e-01\\n2.95023113e-01 2.11810127e-01 1.64180592e-01 8.50532874e-02\\n-2.09493905e-01 -4.96632636e-01 1.05139606e-01 -3.52494866e-01\\n-2.42749199e-01 1.09366380e-01 -2.96872765e-01 3.63404244e-01\\n4.34414521e-02 -7.24572502e-03 -3.19042355e-02 1.99488297e-01\\n-1.35283336e-01 -7.88929984e-02 9.14442763e-02 1.18360162e-01\\n3.10803503e-01 5.53547665e-02 -5.02469897e-01 4.89664137e-01\\n-1.75774321e-01 5.92771232e-01 9.53852460e-02 -8.88040245e-01\\n4.17485714e-01 3.15697700e-01 -6.61279336e-02 -3.38652402e-01\\n5.83724618e-01 -1.56624094e-01 2.47379392e-02 6.26120269e-02\\n-5.49846768e-01 -4.14981276e-01 2.05314547e-01 -2.14727327e-01\\n-2.08273262e-01 4.58074391e-01 8.10602307e-02 5.62296323e-02\\n2.48760134e-01 -2.03495979e-01 -1.72855452e-01 4.70590219e-02\\n-8.22422132e-02 -2.35783070e-01 -5.54661453e-01 -1.03056423e-01\\n-1.45573720e-01 -5.38740754e-01 -6.52554184e-02 -4.14454699e-01\\n-2.34221742e-01 -3.37592781e-01 -8.40818658e-02 1.76153556e-01\\n3.37151378e-01 1.50845692e-01 4.62369435e-02 1.54242501e-01\\n-9.46516544e-02 -5.29070199e-01 -8.69205371e-02 1.47679478e-01\\n3.28064263e-01 1.77751467e-01 6.29430190e-02 4.40707654e-02\\n-1.19085908e-02 6.83524489e-01 -1.52305201e-01 -8.43667090e-02\\n1.57351404e-01 2.05439836e-01 1.37507930e-01 -1.55841514e-01\\n1.38513878e-01 2.98108131e-01 -3.48469079e-01 1.17704444e-01\\n-1.18397802e-01 8.86833481e-03 2.82785475e-01 1.28608063e-01\\n-3.26086938e-01 -2.70682812e-01 -1.67983398e-01 6.02825768e-02\\n-5.09099543e-01 -2.26683125e-01 6.74059868e-01 2.19456688e-01\\n2.14915588e-01 2.05150455e-01 1.49083301e-01 -1.05556354e-01\\n-3.34455892e-02 -2.05017060e-01 1.63019806e-01 4.36320938e-02\\n1.85219616e-01 1.12400040e-01 -6.57394752e-02 -5.94675720e-01\\n-3.14523864e+00 -1.43387973e-01 1.96698308e-01 -3.32020462e-01\\n8.72940943e-02 -1.91424355e-01 -9.66249779e-03 -1.26701280e-01\\n-2.70908654e-01 -7.53519610e-02 -2.60375977e-01 -1.76407441e-01\\n1.58801392e-01 1.22986138e-01 1.01718768e-01 2.42066026e-01\\n7.89324045e-02 -1.25840247e-01 5.14420457e-02 3.03308457e-01\\n-3.31856400e-01 -5.31662762e-01 2.61339903e-01 -5.34521267e-02\\n3.03692728e-01 3.14413279e-01 -3.88557583e-01 -1.69544399e-01\\n-2.30757475e-01 -2.53103584e-01 2.36717761e-01 -2.33345538e-01\\n-7.30268732e-02 2.89472669e-01 2.27129698e-01 -8.91174302e-02\\n2.14254722e-01 -4.57100064e-01 -7.73837939e-02 -4.50518996e-01\\n1.87759161e-01 -6.81079388e-01 -1.26299918e-01 -1.21217497e-01\\n7.36948609e-01 -4.18577075e-01 6.69073611e-02 1.17754966e-01\\n1.71761319e-01 1.38715103e-01 1.29446445e-03 1.28638409e-02\\n-2.84309834e-01 -2.83133566e-01 -4.33252528e-02 2.00033374e-02\\n3.67738038e-01 5.75577438e-01 -1.98566332e-01 1.21205440e-02\\n6.87287152e-02 -3.32145393e-01 -3.67791295e-01 -3.10723722e-01\\n-1.20364316e-01 -3.97466272e-01 -6.12538457e-01 -3.25920820e-01\\n-6.97302669e-02 -1.77819103e-01 -1.24055736e-01 5.45546293e-01\\n-1.76778600e-01 -3.20795417e-01 -4.13102619e-02 -5.75784445e-01\\n2.87172556e-01 -1.27772182e-01 -9.56566408e-02 -2.21723154e-01\\n-3.24751407e-01 -3.98359776e-01 2.70145983e-02 -3.98050882e-02\\n-1.21716686e-01 -2.83581167e-01 7.19328299e-02 -1.70839414e-01\\n-3.10252786e-01 -6.31471217e-01 4.40282434e-01 7.02010542e-02\\n2.80810028e-01 9.55578312e-02 2.60536611e-01 -6.87211305e-02\\n2.42604718e-01 -2.68958479e-01 -6.52277265e-07 -3.32351893e-01\\n1.82696238e-01 5.81100807e-02 4.50256348e-01 -2.72843838e-01\\n2.85012405e-02 7.54184797e-02 -2.46181697e-01 -1.05317116e-01\\n2.15433270e-01 6.00500777e-02 1.15887806e-01 -2.51849830e-01\\n2.70699978e-01 -1.96424022e-01 -1.93127617e-01 -4.00374318e-03\\n5.47083989e-02 5.44419348e-01 1.10143051e-02 -3.64890695e-01\\n-1.06160134e-01 5.00124753e-01 -6.40140846e-02 -8.48398060e-02\\n-2.39083543e-01 9.56038907e-02 -2.95583069e-01 2.04401523e-01\\n-5.91227226e-03 -2.21146524e-01 -2.38888547e-01 -2.72728890e-01\\n-1.11058436e-01 3.20618957e-01 2.71947205e-01 7.02581033e-02\\n5.20772152e-02 -4.27505642e-01 4.30637971e-02 2.73428380e-01\\n7.89303854e-02 4.13618475e-01 6.57725856e-02 -1.79144055e-01\\n-2.37990506e-02 3.81010681e-01 -1.75012067e-01 1.99344561e-01\\n-3.21334183e-01 8.81612077e-02 -5.92005968e-01 -2.86629707e-01\\n-2.37683490e-01 -4.54205722e-01 6.13500066e-02 1.91203609e-01\\n2.38448307e-01 1.60973016e-02 3.13769318e-02 -4.61979538e-01\\n3.33905935e-01 -1.18792057e-02 2.92176276e-01 1.51993543e-01\\n4.02166918e-02 5.08290291e-01 -3.24870832e-02 -8.53091180e-02\\n-1.44991085e-01 5.89203462e-02 -3.08907390e-01 -1.15894563e-01\\n1.33956419e-02 -5.02786875e-01 -1.20861754e-01 4.49983835e-01\\n7.93771744e-02 -2.36958295e-01 -1.07669875e-01 2.22693935e-01\\n-4.38144729e-02 -2.34239161e-01 -1.49595827e-01 7.38606825e-02\\n4.10497874e-01 1.36834145e-01 3.14824939e-01 -4.39443350e-01\\n1.06498436e-03 2.84343809e-02 -1.56899214e-01 5.09854436e-01\\n5.75984418e-02 1.21802893e-02 -1.32647365e-01 -2.61771411e-01\\n3.48148316e-01 -1.82851076e-01 -4.36378866e-02 8.46027024e-03\\n6.55370802e-02 -1.41125754e-01 -5.26596010e-01 8.47164243e-02\\n-1.13346977e-02 -5.39075173e-02 3.01400274e-02 7.26367608e-02\\n1.64747268e-01 6.92630187e-02 -5.38010001e-01 -2.67275244e-01\\n-3.52776587e-01 1.01353042e-02 6.34088144e-02 -4.35367286e-01\\n-3.99925560e-02 -3.15161012e-02 -6.45430803e-01 2.46040687e-01\\n-2.63495594e-01 -1.06394216e-01 1.58297211e-01 -1.00343162e-02\\n-3.32590818e-01 -3.58649017e-03 1.48737177e-01 2.89066315e-01\\n-3.57840002e-01 -2.20583826e-01 5.87247573e-02 -1.02470171e+00\\n2.00929537e-01 -6.18829802e-02 -2.01624155e-01 1.71437025e-01\\n-9.55330655e-02 -7.66089439e-01 1.35085911e-01 -3.58011931e-01\\n-8.60535800e-02 -1.68887079e-02 -1.95505828e-01 -5.76224804e-01\\n6.09557424e-03 8.03248137e-02 -2.68829286e-01 4.37949985e-01\\n-2.61651725e-01 4.15718496e-01 -1.36057679e-02 7.08136931e-02\\n3.38980965e-02 -3.28646690e-01 2.10948102e-02 -4.07981217e-01\\n-3.86089385e-01 -1.44698501e-01 -3.96761060e-01 -1.55249178e-01\\n3.76804732e-02 -3.53774995e-01 -1.02801286e-01 5.79404011e-02\\n3.25441480e-01 3.48982727e-03 -8.20470676e-02 -2.88783193e-01\\n9.44731012e-02 -6.42296314e-01 3.12745832e-02 -7.62304291e-03\\n-4.56989035e-02 -8.25515985e-02 2.25617751e-01 8.93498287e-02\\n1.28522798e-01 -5.04110754e-01 3.39483589e-01 -3.32809806e-01\\n-4.07107323e-01 -3.06565426e-02 7.29789883e-02 4.38170582e-02\\n3.48695606e-01 -4.07504886e-01 -4.87037972e-02 4.40224320e-01\\n1.71396583e-01 1.37261376e-01 2.32798263e-01 -7.57163716e-03\\n-8.79372805e-02 2.96312243e-01 -3.55780154e-01 1.55977279e-01\\n8.41415763e-01 6.46742061e-03 1.51879057e-01 2.41049856e-01\\n1.54904887e-01 3.32360327e-01 5.17850041e-01 1.95554532e-02\\n-1.72292084e-01 2.87881196e-01 4.60712314e-02 -6.26506150e-01\\n-8.61246325e-03 -1.17018253e-01 -2.70727515e-01 -4.20624137e-01\\n6.58684433e-01 4.38828439e-01 -4.68059182e-01 -2.26072028e-01\\n-1.59305856e-01 -2.33720064e-01 -3.99751496e-03 -1.49832666e-01\\n1.09964140e-01 -7.81664029e-02 3.92222792e-01 -6.14410453e-02\\n3.38254601e-01 4.71006423e-01 -1.90288618e-01 -2.86478251e-01\\n-4.73232493e-02 9.09509659e-02 -2.37055458e-02 4.31943655e-01\\n-2.34474108e-01 3.77940714e-01 4.02450711e-02 1.41926274e-01\\n-7.27563724e-02 1.47303164e-01 9.62411761e-02 8.22771639e-02\\n1.09053999e-01 5.01225144e-02 3.75123292e-01 4.37098891e-01\\n3.62140298e-01 5.10423779e-01 3.86602223e-01 1.59495492e-02\\n5.38423955e-01 5.48714399e-01 3.41917664e-01 2.23887354e-01\\n-8.09940472e-02 1.24369994e-01 -5.33232689e-02 -4.23859106e-03\\n3.10577095e-01 3.57037246e-01 6.26696274e-02 9.31097627e-01\\n4.33853209e-01 2.12539271e-01 6.76587105e-01 -6.63434446e-01\\n-3.80192310e-01 1.44151514e-02 4.48774368e-01 -3.88812721e-01\\n-6.17304742e-02 6.15526028e-02 -1.33545130e-01 2.76637316e-01\\n-4.52169538e-01 -3.20276678e-01 -1.27807751e-01 1.70570552e-01\\n-6.55955635e-03 -1.55866891e-01 -3.17582577e-01 1.06215030e-01\\n-1.49328306e-01 -8.40213373e-02 -5.84760249e-01 3.19982097e-02\\n-2.40489498e-01 -2.45308101e-01 -6.52740970e-02 -1.35858208e-01\\n-7.38448724e-02 -4.07880783e-01 -1.86275229e-01 -6.45738840e-02\\n3.96742105e-01 -6.03547916e-02 -3.25962752e-02 -2.03806683e-01\\n2.81600535e-01 2.74856031e-01 5.57233870e-01 4.64226045e-02\\n6.83269352e-02 -2.95181006e-01 -1.99035034e-01 1.87840447e-01\\n2.18090951e-01 6.57629818e-02 -3.39774899e-02 3.17122161e-01\\n-3.13661903e-01 -1.38562053e-01 1.39029622e-01 4.26600844e-01\\n-5.33683360e-01 -1.84046440e-02 -1.31847396e-01 2.21183315e-01\\n2.27309942e-01 2.20703796e-01 -1.94886655e-01 5.31799123e-02\\n-1.13080122e-01 -4.14816380e-01 1.96838170e-01 -5.39342873e-02\\n-7.94884786e-02 -4.22132798e-02 2.11815596e-01 1.38256833e-01\\n-2.05662549e-01 1.78105421e-02 -4.19876352e-02 1.18581720e-01\\n1.43464744e-01 3.51034313e-01 -3.01953584e-01 -2.62854010e-01\\n-1.74047977e-01 1.55249164e-01 -2.71763206e-01 1.27591789e-01\\n-1.13803893e-02 3.09970796e-01 1.22065231e-01 6.65671676e-02\\n3.88472497e-01 -9.30234641e-02 -1.26690954e-01 -2.01170176e-01\\n-2.57375419e-01 -2.97722250e-01 2.83939969e-02 -1.79986775e-01\\n3.11180413e-01 -4.61371869e-01 -6.99892491e-02 -3.73740681e-02\\n-1.80731103e-01 -3.39927375e-01 7.06555024e-02 -1.86157867e-01]]',\n", + " 'If you are looking for a very motivating startup work environment and team, if you would like to contribute to the growth of a disruptive VC platform and if you are hands-on, then this could be the perfect internship opportunity and work environment for you. We already are one of the most innovative startup investment platforms in Europe. We are now looking to grow the next level digital infrastructure for startup investments, building a service platform and network for a large community of entrepreneurs, private and institutional investors. investiere.ch is an online investment platform that offers private and institutional investors direct and professional access to startup investments. Having successfully closed more than 70 financing rounds, investiere.ch is one of the most active venture capital investors in Switzerland. As a intern in our tech team you will: Develop secure and reliable Scala web-services for our platform (scala/PlayFramework, MongoDB, MySQL, Redis and ElasticSearch, graphQL) Develop frontend applications (Angular 1.x & 5, Ionic) Support in administration of servers / cloud services Write tests for services and frontend features that you build (e.g. Postman, unit tests, etc) Find out more about our IT team. Requirements You are the right candidate for this position if most of the following skills match your profile: University Bachelor or Master degree with excellent credentials in computer science Java or Scala development Frontend experience or interest: Javascript / HTML / CSS Eager to learn and experience new technologies Ability to work independently with high attention to detail Strong command of English, our work language Entrepreneurially minded and very strong team player Benefits Dynamic and challenging startup environment Flexibility with work locations and hours Frequent team events and more Has your interest been piqued? Meet our experienced investiere team at our offices in Zurich and Geneva. The work location for this position is Zurich. If you have any further questions, just give us a call (+41 41 545 94 94). Please send your CV and cover letter using the application form below. Applications will be processed within two working days.',\n", + " '[\"Writing\", \"Professionalism\", \"Infrastructure\", \"Communications\", \"Reliability\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Playframework\", \"MySQL\", \"Cascading Style Sheets (CSS)\", \"Postman\", \"Unit Testing\", \"Computer Science\", \"Scala (Programming Language)\", \"Activism\", \"Venture Capital\", \"MongoDB\", \"E (Programming Language)\", \"Levelling\", \"GraphQL\", \"HyperText Markup Language (HTML)\", \"Hostile Work Environment\", \"Investments\", \"Cloud Services\", \"Web Services\", \"Finance\", \"Digitization\", \"JavaScript (Programming Language)\", \"Redis\", \"Angular (Web Framework)\", \"Investing Online\", \"Java (Programming Language)\", \"Elasticsearch\"]',\n", + " \"['English', 'Uzbek']\"],\n", + " ['68',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.98537320e-01 1.82536557e-01 4.83016789e-01 6.47843117e-03\\n5.74284613e-01 -3.20066303e-01 2.13279459e-03 3.36275995e-01\\n-6.35888204e-02 -4.78607655e-01 -1.82581559e-01 -2.07063958e-01\\n-4.00696509e-02 6.72112452e-03 2.08714798e-01 3.32861930e-01\\n2.90153265e-01 7.38406405e-02 -2.44413614e-01 2.56612241e-01\\n1.05945118e-01 -2.50994563e-01 -1.15782423e-02 6.59977436e-01\\n2.64276326e-01 9.76595655e-02 -2.39956789e-02 2.99768206e-02\\n-2.80445069e-01 -2.07627535e-01 4.61051583e-01 -1.06067238e-02\\n-1.08157255e-01 -2.94038564e-01 1.13506876e-01 5.76489866e-02\\n-1.64153546e-01 5.91346920e-02 -3.30487639e-02 2.64352381e-01\\n-3.36114317e-01 -3.57813388e-01 1.95259765e-01 2.06434373e-02\\n-1.76009536e-01 -3.14012378e-01 1.06339410e-01 -5.87069802e-02\\n5.73417395e-02 -3.43986601e-02 -4.94467467e-01 4.10176992e-01\\n-4.14724946e-01 -2.67818391e-01 3.67432207e-01 5.40421307e-01\\n-7.32612610e-03 -5.46653628e-01 -2.21725881e-01 -2.21916214e-01\\n6.54163510e-02 -1.87959954e-01 1.18679749e-02 -1.43447101e-01\\n3.99990499e-01 -1.85497366e-02 2.35003792e-02 3.63814145e-01\\n-6.84000492e-01 -4.71017063e-02 -8.77553299e-02 9.32252482e-02\\n-3.37832987e-01 -5.48555925e-02 -2.41863325e-01 -2.24038959e-01\\n-9.21598636e-03 3.34392518e-01 4.74638753e-02 9.88902710e-03\\n-1.24372669e-01 3.11918408e-01 -2.16457516e-01 2.42250755e-01\\n3.14056247e-01 2.30015576e-01 2.55578578e-01 3.60632449e-01\\n-4.12065417e-01 5.10064185e-01 1.98013306e-01 -2.21169114e-01\\n3.26370716e-01 2.06902593e-01 4.21120644e-01 1.76448971e-01\\n-3.74695621e-02 1.08427487e-01 -9.41153541e-02 2.74558097e-01\\n1.96800932e-01 -2.21396863e-01 -9.32746828e-02 -5.93157299e-02\\n-1.53862491e-01 3.68395485e-02 -9.26046297e-02 3.30757707e-01\\n-2.50797689e-01 2.75013924e-01 1.93937838e-01 -2.17515141e-01\\n-8.34478065e-02 -5.55366755e-01 -1.58299997e-01 1.10321268e-01\\n-3.83047909e-02 2.78044224e-01 3.60865891e-01 1.41462311e-01\\n9.32965502e-02 1.12336919e-01 1.09714702e-01 9.64387357e-01\\n1.16418591e-02 2.65835244e-02 -2.45948002e-01 3.47458452e-01\\n2.09862694e-01 -1.94194511e-01 -4.71854657e-02 3.38875234e-01\\n7.61854947e-02 -5.53649738e-02 -8.01011175e-02 3.30337524e-01\\n-1.63348898e-01 -1.35672554e-01 -3.03840816e-01 4.34463620e-02\\n-2.65066296e-01 -4.06223387e-01 5.89365304e-01 1.02145828e-01\\n1.75066799e-01 1.37792835e-02 -4.20702482e-03 -1.38557598e-01\\n-8.17202777e-02 4.07146752e-01 -4.52864878e-02 1.56181246e-01\\n-2.83170700e-01 -2.54836857e-01 -3.34488481e-01 3.31911922e-01\\n2.17306912e-02 1.18393309e-01 -3.17076683e-01 -5.23022823e-02\\n3.69359225e-01 9.84171778e-02 -4.21004474e-01 1.96518034e-01\\n-1.26088643e-02 -1.09344751e-01 -1.44772977e-01 2.43942201e-01\\n-5.21762148e-02 3.22949409e-01 4.11147773e-02 -1.81718186e-01\\n3.89100790e-01 5.26100323e-02 1.44777507e-01 -1.45918220e-01\\n2.53667682e-01 -1.40406817e-01 1.40059233e-01 1.05455890e-01\\n-5.52720785e-01 2.62710631e-01 -5.58368973e-02 6.65826201e-02\\n4.76083811e-03 9.33085531e-02 3.37668538e-01 -2.64783174e-01\\n-1.64912388e-01 -1.79906920e-01 -4.46244836e-01 -4.51490343e-01\\n-2.12753832e-01 4.21895795e-02 3.29531968e-01 -4.13937241e-01\\n-3.45237479e-02 2.66146690e-01 -4.85947549e-01 -4.25344985e-03\\n2.56013185e-01 1.28828496e-01 9.89159346e-02 3.94746847e-02\\n-2.07260668e-01 -4.64576453e-01 2.96539105e-02 -4.30355638e-01\\n-4.92323637e-01 8.32479633e-03 -2.31929466e-01 1.06695607e-01\\n-5.76692401e-03 2.79983878e-02 -3.14122848e-02 1.18051238e-01\\n-2.55195111e-01 -4.33877259e-02 3.14236194e-01 9.89395455e-02\\n4.38748628e-01 -9.58007872e-02 -4.48159993e-01 4.40472990e-01\\n-2.94422925e-01 5.16500354e-01 1.76867470e-01 -9.15103614e-01\\n5.24980903e-01 3.15782875e-01 -4.01179381e-02 -4.87662345e-01\\n4.68250245e-01 -3.64928186e-01 5.56476675e-02 1.65752649e-01\\n-3.74214947e-01 -1.62833422e-01 3.01764369e-01 -6.35260865e-02\\n-3.27452600e-01 6.57808244e-01 3.48575301e-02 1.70899779e-02\\n2.81134993e-01 -2.48116851e-01 -3.31727378e-02 -6.64385334e-02\\n-3.14183086e-02 -1.55569732e-01 -3.85848850e-01 1.60399824e-02\\n-6.99910671e-02 -5.20701945e-01 -2.06781983e-01 -4.22484845e-01\\n-1.00534581e-01 -2.73229837e-01 -3.09352309e-01 2.82750785e-01\\n6.74207276e-03 2.12619320e-01 8.12161118e-02 -1.83993466e-02\\n-5.74056171e-02 -7.47939825e-01 -1.76941618e-01 4.38044257e-02\\n4.29586172e-01 2.02542186e-01 1.66174576e-01 -1.17572755e-01\\n8.78299121e-04 3.46119940e-01 -1.84714407e-01 -3.26953351e-01\\n1.41114563e-01 1.97178632e-01 3.09389569e-02 -5.75653911e-02\\n7.62431622e-02 3.42697173e-01 -2.20754102e-01 -6.30254447e-02\\n-4.49056961e-02 1.52347684e-01 3.46838176e-01 -1.45569623e-01\\n-4.38302666e-01 -1.78850874e-01 1.70037895e-02 2.15065256e-01\\n-6.01989269e-01 -1.25578970e-01 5.82328975e-01 2.25238070e-01\\n2.65707038e-02 2.01904848e-01 2.53953934e-01 -1.26585945e-01\\n-2.21432805e-01 -1.78276598e-01 1.54475560e-02 1.31797776e-01\\n1.49237156e-01 6.56195059e-02 -1.70196548e-01 -5.73634803e-01\\n-4.03029490e+00 -1.44529983e-01 1.53676584e-01 -2.01273412e-01\\n2.12803826e-01 -1.59739256e-01 9.00361240e-02 -6.23508506e-02\\n-1.91139460e-01 7.01315841e-03 -1.29263595e-01 -8.83432701e-02\\n1.48825437e-01 2.78995097e-01 1.80491228e-02 2.13484004e-01\\n5.08575290e-02 -2.78639108e-01 2.05225181e-02 2.17002273e-01\\n-1.68795079e-01 -6.90491438e-01 1.45036519e-01 -9.58024114e-02\\n2.44503364e-01 1.02925003e-01 -5.10889649e-01 -3.26142535e-02\\n-2.54280716e-01 -3.42061311e-01 8.29475746e-02 -2.06784099e-01\\n-1.43178567e-01 2.84672529e-01 1.10043190e-01 -2.12535530e-01\\n1.22475632e-01 -1.94694430e-01 -8.15918371e-02 -4.20272648e-01\\n1.08572260e-01 -5.43807864e-01 5.16790226e-02 -7.71863982e-02\\n6.80485427e-01 -4.04876560e-01 2.40429983e-01 1.33132219e-01\\n2.25297123e-01 1.54863268e-01 -6.51757047e-02 8.68937839e-03\\n-2.68053681e-01 -2.94532299e-01 -7.78787509e-02 -2.27560565e-01\\n4.69158173e-01 5.39355576e-01 -1.69112027e-01 1.48839563e-01\\n8.53642225e-02 -2.56535858e-01 -2.96269238e-01 -4.01972681e-01\\n-1.48908377e-01 -1.34742111e-01 -6.87057018e-01 -5.02115607e-01\\n-1.86188444e-01 -1.14066616e-01 -1.39448702e-01 5.15981019e-01\\n-1.50517091e-01 -6.78100407e-01 -5.52229509e-02 -6.21999979e-01\\n1.10562630e-01 -2.08994791e-01 -2.09445297e-03 -1.78978294e-01\\n-2.00522453e-01 -4.72474098e-01 1.34989992e-01 1.01992242e-01\\n-8.81452560e-02 -3.41819562e-02 8.70817378e-02 -1.99945986e-01\\n-2.24237368e-01 -3.97232860e-01 3.91027093e-01 -1.38344020e-01\\n2.66140193e-01 1.53070733e-01 3.94379199e-01 1.63249657e-01\\n2.32014760e-01 -5.14718853e-02 3.82582583e-02 -3.94292146e-01\\n8.84731591e-04 -4.73969579e-02 4.57056403e-01 -3.26330543e-01\\n4.50625233e-02 2.83230394e-01 -9.72067192e-02 -1.57813847e-01\\n3.99946153e-01 7.03589395e-02 -1.00138020e-02 -1.82383448e-01\\n3.01428318e-01 -3.55229169e-01 -2.72115409e-01 9.51426178e-02\\n-1.42035596e-02 5.91227531e-01 5.60152344e-02 -3.80559474e-01\\n-3.46152723e-01 5.31307399e-01 7.46355131e-02 -4.57227752e-02\\n-1.26996368e-01 1.14173159e-01 -2.62579709e-01 3.14869761e-01\\n1.67373449e-01 -3.93767208e-01 -3.42284143e-01 2.35891752e-02\\n2.25970559e-02 1.22788846e-01 3.01025420e-01 1.71091989e-01\\n-6.89556971e-02 -1.72639921e-01 -1.37773275e-01 1.21478729e-01\\n2.85747468e-01 3.15864652e-01 1.71888098e-01 -6.49893805e-02\\n2.82136649e-02 1.70068294e-01 -2.16902331e-01 2.03040570e-01\\n-3.29516411e-01 1.61927566e-02 -4.13563043e-01 -2.21294254e-01\\n-2.03436352e-02 -2.50725150e-01 5.10952100e-02 3.33982497e-01\\n2.94279605e-01 3.04850540e-03 -1.20502166e-01 -5.62512159e-01\\n4.36842978e-01 1.92044917e-02 7.42982402e-02 1.37538359e-01\\n1.17054008e-01 4.39183086e-01 1.07161831e-02 -8.42839628e-02\\n-2.31649220e-01 4.58668657e-02 -2.17774168e-01 -1.59789324e-01\\n6.33877739e-02 -3.70770425e-01 -7.01439306e-02 2.97563583e-01\\n1.97493099e-02 -2.41073132e-01 -1.49941951e-01 1.69557780e-01\\n1.27985090e-01 -1.67003229e-01 -1.52156159e-01 1.47578552e-01\\n2.44886249e-01 9.92739797e-02 2.15031341e-01 -3.73862684e-01\\n-1.02223173e-01 1.02549056e-02 5.23219025e-03 3.66132647e-01\\n1.07597575e-01 2.04152659e-01 -1.11216322e-01 -1.27096921e-01\\n3.55866581e-01 -1.97610125e-01 -1.81901772e-02 -7.74246082e-02\\n7.06682801e-02 -1.05082080e-01 -3.86302114e-01 8.63693580e-02\\n-2.13524476e-02 -1.16258971e-01 5.49413860e-02 3.67627442e-02\\n4.87141758e-02 -2.82433107e-02 -5.15625298e-01 -3.24647069e-01\\n-4.21891272e-01 -5.43020330e-02 2.83868387e-02 -2.71964401e-01\\n-1.05073541e-01 -2.98742522e-02 -6.21779680e-01 2.44963199e-01\\n-6.45844340e-02 3.39291804e-02 2.38755941e-01 1.76950172e-02\\n-2.87282765e-01 -3.33908312e-02 2.18252391e-01 1.96900412e-01\\n-2.02510968e-01 -1.22217037e-01 2.87178848e-02 -9.80428159e-01\\n2.05257550e-01 -4.60056588e-02 -5.04289642e-02 -8.53659734e-02\\n-1.50604755e-01 -6.68942451e-01 1.34497494e-01 -3.17023039e-01\\n-7.20788762e-02 3.43927229e-03 -1.77257255e-01 -4.10203606e-01\\n-4.35335413e-02 -2.91057881e-02 -1.93505049e-01 3.49258691e-01\\n-4.44994777e-01 3.30079287e-01 -1.02182612e-01 4.04884405e-02\\n3.73532549e-02 -2.57757425e-01 2.06228510e-01 -1.55885696e-01\\n-2.40281597e-01 -2.68715471e-01 -3.83865744e-01 -2.70162821e-01\\n-2.26285718e-02 -3.43800515e-01 -1.49064258e-01 1.33518040e-01\\n2.23503262e-01 6.64024726e-02 -5.52210696e-02 -4.14539307e-01\\n4.25115265e-02 -3.17338437e-01 -2.79108826e-02 -3.16884041e-01\\n1.29001722e-01 -5.57370298e-02 2.22665906e-01 -1.21223871e-02\\n7.60296509e-02 -3.64458829e-01 4.86104995e-01 -6.79643154e-02\\n-3.16000402e-01 -4.53257039e-02 9.12007615e-02 9.10797343e-02\\n2.37092525e-01 -4.49339151e-01 -9.73637216e-04 1.68558076e-01\\n1.49761304e-01 1.90500006e-01 2.10958466e-01 1.27927121e-02\\n-9.71032828e-02 1.68618977e-01 -4.08451706e-01 -1.46500720e-03\\n6.72720492e-01 1.08801350e-01 5.56162782e-02 1.34975389e-01\\n1.99506059e-01 4.11258280e-01 5.39189816e-01 -6.39542425e-03\\n-1.49746254e-01 2.65565842e-01 -4.89013419e-02 -5.26653647e-01\\n-5.29648848e-02 -1.30407423e-01 -2.24539071e-01 -2.94556081e-01\\n6.23434961e-01 3.85874033e-01 -2.63712615e-01 -2.64935642e-01\\n-7.15424642e-02 -2.65344054e-01 1.95004240e-01 -1.72504410e-01\\n1.14449020e-02 -2.73777962e-01 5.21051407e-01 6.19623959e-02\\n2.59590179e-01 6.27873898e-01 -1.53918162e-01 -4.26169544e-01\\n-6.32150024e-02 2.58598596e-01 1.19489610e-01 3.30165446e-01\\n-7.65283257e-02 3.03682148e-01 2.12835670e-02 1.85272738e-01\\n-3.14746499e-02 1.47282586e-01 1.51685432e-01 4.19707522e-02\\n2.07583144e-01 8.38855579e-02 3.20871174e-01 4.86230344e-01\\n1.88270912e-01 5.12723565e-01 2.95097202e-01 3.89398523e-02\\n3.94963622e-01 6.20458186e-01 5.33149123e-01 1.38513222e-01\\n-4.90034409e-02 1.07220821e-01 1.21002622e-01 -9.04278159e-02\\n2.18514219e-01 3.54834706e-01 2.15217516e-01 7.79069483e-01\\n3.77883613e-01 1.43314078e-01 8.62382889e-01 -5.61069608e-01\\n-4.91596133e-01 -3.22388001e-02 5.07212877e-01 -2.09393337e-01\\n-8.94301310e-02 9.63053554e-02 -3.47544193e-01 6.14712052e-02\\n-4.93655920e-01 -6.50714487e-02 8.73269141e-02 -1.34749338e-02\\n1.84317287e-02 -7.99305737e-02 -1.64651856e-01 1.18955029e-02\\n-1.54148445e-01 -5.53906560e-02 -3.40296596e-01 -1.49306998e-01\\n-3.09357494e-01 -5.26649319e-02 -9.16729644e-02 -6.44418895e-02\\n-1.18314050e-01 -3.33809465e-01 -1.67845935e-01 8.61013681e-02\\n4.53340292e-01 -7.28504807e-02 -2.99596284e-02 -1.42891645e-01\\n1.24345280e-01 2.81200588e-01 4.42842931e-01 3.69012170e-02\\n1.45500466e-01 -2.23104462e-01 -1.34819373e-01 6.89583495e-02\\n1.65087998e-01 -4.79487553e-02 6.27845153e-02 3.99087340e-01\\n-3.61631900e-01 -2.26991270e-02 1.11573935e-01 4.50805753e-01\\n-3.39043409e-01 -5.10786921e-02 -7.01958239e-02 3.41050863e-01\\n7.17131123e-02 1.27977282e-01 -2.44364947e-01 5.42269088e-02\\n-1.25561625e-01 -5.03545403e-01 4.89573807e-01 -2.69872844e-01\\n2.48278100e-02 2.22883567e-01 3.59769881e-01 1.64678633e-01\\n-1.58830568e-01 1.31060362e-01 -1.24092691e-01 2.30564624e-01\\n5.60972281e-02 4.10050511e-01 -4.02186036e-01 -1.14537954e-01\\n-1.93224415e-01 2.17033863e-01 -9.79767516e-02 8.09265003e-02\\n-1.99511275e-02 2.45411903e-01 1.34148091e-01 1.14031389e-01\\n1.59876794e-01 -1.06640168e-01 -2.06813112e-01 -2.36271948e-01\\n-2.30552480e-01 -2.82380760e-01 6.82737082e-02 -2.32968815e-02\\n2.80702949e-01 -4.14063931e-01 -5.91797829e-02 -5.69770746e-02\\n-1.21566765e-01 -3.80272597e-01 -1.35904759e-01 -8.62931758e-02]]',\n", + " 'our teams in Zurich and Lausanne areas. Responsibilities Help us implement security software and solutions that will power customers’ IT infrastructures Apply agile development methodologies to write high quality code that meets security, availability and performance goals Provide support to your different stakeholders Qualifications Basic Bachelor/Master’s degree in Technology/Computer Science Excellent knowledge in German and English (written and spoken) Two+ years’ experience working on projects Knowledge of Public Key Infrastructures and X.509 Strong coding skills in Java Preferred Demonstrate proficiency in one or more of: AWS, Synology, Docker, Playframework, Scala, JCE, HSM, PKCS, ASN.1, JPA/Hibernate, VueJS, asynchronous programming Full stack experience and UX design Ability to meet Swiss Government security screening requirements (background checks) Excellent team player Strong communication skills We offer a competitive benefits package and the opportunity to work in a growing and challenging software company.',\n", + " '[\"Verbal Communication Skills\", \"Writing\", \"Governance\", \"Written English\"]',\n", + " '[\"Playframework\", \"Docker (Software)\", \"Scala (Programming Language)\", \"Hibernate (Java)\", \"IT Infrastructure\", \"X.509\", \"Programming (Music)\", \"Security Software\", \"Public Key Infrastructure\", \"Computer Science\", \"Java (Programming Language)\", \"Software Development Methodologies\", \"Synology\", \"Agile Product Development\", \"Public Key Cryptography Standards (PKCS)\"]',\n", + " \"['English', 'Kikuyu', 'Spanish']\"],\n", + " ['75',\n", + " 'data-scientist',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.40152931e-01 3.86857748e-01 5.64359128e-01 -2.11751889e-02\\n5.54279625e-01 -1.63345739e-01 8.50075483e-02 2.85801649e-01\\n-3.76474373e-02 -5.54479174e-02 -1.44540608e-01 -1.84721932e-01\\n-2.62196749e-01 4.99920137e-02 1.32289350e-01 2.33172685e-01\\n1.58298552e-01 3.37551162e-02 -2.00104654e-01 2.64585495e-01\\n2.19596922e-01 1.25990853e-01 -1.09996960e-01 4.01760072e-01\\n5.46991765e-01 1.61381468e-01 -1.36757001e-01 -1.80698056e-02\\n-4.98854041e-01 -2.56293982e-01 3.28164220e-01 2.21461561e-02\\n-1.20518483e-01 -2.22280085e-01 7.23956674e-02 1.45944118e-01\\n-5.06033078e-02 -3.68830152e-02 5.55988960e-02 1.71215087e-01\\n-2.97935605e-01 -4.56979364e-01 1.41224936e-01 2.29650602e-01\\n-2.85194546e-01 -2.00274214e-01 1.35143027e-01 -4.82744947e-02\\n-1.51948510e-02 3.70995700e-02 -5.63241899e-01 4.89709705e-01\\n-1.49933442e-01 -6.77251890e-02 1.95805326e-01 6.01548493e-01\\n4.99456637e-02 -5.25512815e-01 -3.35858405e-01 -3.07429612e-01\\n6.16649762e-02 -5.57514876e-02 5.63354753e-02 -5.57723641e-02\\n4.32600886e-01 -1.48729766e-02 -1.09990217e-01 2.74718851e-01\\n-8.80553484e-01 -1.14383459e-01 -1.93149999e-01 2.52000224e-02\\n-4.41496849e-01 -1.77736413e-02 -2.55491406e-01 -1.24470219e-02\\n-3.37315612e-02 2.71823734e-01 -7.09322318e-02 4.32927944e-02\\n-4.53397781e-02 2.10033804e-01 1.86909050e-01 9.43847448e-02\\n3.73895824e-01 1.78202763e-02 1.69350192e-01 2.70833582e-01\\n-3.52352083e-01 2.22590700e-01 7.09624067e-02 -1.39725119e-01\\n1.20169386e-01 1.84005037e-01 5.02978861e-01 1.69806376e-01\\n-1.07638590e-01 2.06321537e-01 -6.44789934e-02 1.52450874e-01\\n6.54472262e-02 -4.50722843e-01 8.96276683e-02 4.15015109e-02\\n-3.19580555e-01 -2.93784738e-02 -1.67375907e-01 4.35275763e-01\\n-1.66115314e-01 4.56024289e-01 1.86219901e-01 -1.26863614e-01\\n-1.68066379e-03 -6.12200677e-01 -1.97938517e-01 4.51373355e-03\\n1.08503766e-01 2.57463962e-01 1.84028685e-01 1.19537130e-01\\n2.59141326e-01 2.53390875e-02 3.48010331e-01 8.49952519e-01\\n8.84517133e-02 1.57709688e-01 -1.69604719e-01 2.90805101e-01\\n2.41121724e-01 -3.45354259e-01 1.15146138e-01 2.49930933e-01\\n2.49397457e-01 -5.86976670e-02 -2.67600089e-01 1.69004709e-01\\n-3.35313052e-01 -6.14808276e-02 -3.26871365e-01 1.58660654e-02\\n-1.79879606e-01 -3.56965065e-01 4.54950660e-01 1.08459435e-01\\n1.42103940e-01 -2.45781094e-01 -1.64333567e-01 1.99629497e-02\\n-4.53888699e-02 6.04526997e-01 1.70497820e-01 2.21151114e-01\\n-3.72813970e-01 -2.56987154e-01 -9.55166519e-02 4.24931049e-01\\n-1.13859408e-01 9.36642736e-02 -1.35311276e-01 -6.69946820e-02\\n3.42485458e-01 2.50424981e-01 -3.80189478e-01 8.42056423e-03\\n-6.88624755e-02 -3.49844128e-01 -1.17121041e-01 2.12348938e-01\\n-2.05416873e-01 3.07477713e-01 -1.10336468e-01 -2.32545137e-01\\n6.20077789e-01 1.79984674e-01 2.87256446e-02 -6.40292913e-02\\n3.37507546e-01 -2.44132459e-01 4.76876795e-01 1.08316153e-01\\n-7.14825094e-01 4.00258809e-01 -8.84041265e-02 -1.55841663e-01\\n1.20750554e-01 1.38183773e-01 4.21810329e-01 -3.99443835e-01\\n3.65177765e-02 -2.59250194e-01 -3.78098339e-01 -3.59057665e-01\\n-4.69978660e-01 3.65988165e-02 3.24910462e-01 -3.98469478e-01\\n-1.56003699e-01 1.82488099e-01 -5.13722956e-01 -1.80485725e-01\\n1.50686160e-01 1.41126454e-01 1.48002312e-01 -1.87028609e-02\\n-4.21703141e-03 -5.18174708e-01 1.61556065e-01 -3.90420020e-01\\n-4.62925225e-01 2.65932400e-02 -2.82992333e-01 2.27540731e-01\\n8.48521851e-03 1.53380468e-01 -6.08720630e-02 1.59824595e-01\\n-3.83660883e-01 -6.29642606e-02 1.41159892e-01 2.37722665e-01\\n2.03175426e-01 -9.30899531e-02 -5.42539358e-01 3.62999290e-01\\n-2.58662403e-01 6.36967063e-01 2.63173550e-01 -6.27083242e-01\\n5.96495271e-01 2.46704638e-01 7.88443610e-02 -2.80443132e-01\\n4.55006272e-01 -2.74801672e-01 -3.99831273e-02 2.15862975e-01\\n-2.01305538e-01 -9.64623243e-02 3.02819371e-01 -1.49912253e-01\\n-2.55634457e-01 5.52354932e-01 2.35565096e-01 6.08248264e-02\\n3.03173721e-01 -3.40120256e-01 -5.42415166e-03 2.45603058e-03\\n-1.05307549e-01 -1.40772894e-01 -2.21211314e-01 5.04703335e-02\\n-5.70334382e-02 -4.16276962e-01 -1.30620286e-01 -2.45847449e-01\\n-1.04631685e-01 -3.88742387e-01 -1.25641122e-01 3.58455479e-01\\n1.54326916e-01 1.28081709e-01 1.13788553e-01 -7.78047740e-02\\n-5.50397187e-02 -6.50845766e-01 -1.78422377e-01 7.45280087e-02\\n4.39558864e-01 2.83264756e-01 1.33801937e-01 -1.35133415e-01\\n2.99210846e-02 4.10754770e-01 -5.45337379e-01 -4.24741238e-01\\n1.16312183e-01 1.01509728e-01 -1.09301448e-01 -2.16209784e-01\\n-1.17579661e-01 3.29327285e-01 -3.43568735e-02 1.83735117e-02\\n-1.42083645e-01 -1.88273385e-01 2.82436669e-01 -8.59018341e-02\\n-1.36066794e-01 -3.22769880e-01 -1.55979916e-01 3.59314978e-01\\n-4.20063674e-01 -2.98837990e-01 4.06595170e-01 1.24043554e-01\\n2.04832420e-01 1.54067010e-01 2.52507567e-01 -2.21021116e-01\\n-1.89200059e-01 -2.91250974e-01 1.83087785e-03 1.50031880e-01\\n-1.03188632e-02 4.30557169e-02 -2.08979428e-01 -5.84156990e-01\\n-3.37948895e+00 -1.00038342e-01 1.05876349e-01 -3.68365377e-01\\n2.51434267e-01 -1.14177331e-01 -2.26618089e-02 6.96711615e-02\\n-2.25777477e-01 1.01283662e-01 -2.26554036e-01 -1.61212265e-01\\n2.72118300e-03 5.09050429e-01 6.56062365e-02 9.85770524e-02\\n9.75739285e-02 -2.89559364e-01 -2.33657181e-01 4.64905202e-01\\n6.44931337e-03 -5.89152515e-01 1.41642883e-01 4.41695452e-02\\n2.16367587e-01 3.25013995e-01 -3.86159569e-01 -1.14399225e-01\\n-1.23523489e-01 -3.32075030e-01 -2.57252455e-02 -9.82949138e-02\\n-1.77133203e-01 3.48181874e-01 5.68890050e-02 2.06964500e-02\\n-3.98425721e-02 -2.32585177e-01 -1.94989629e-02 -3.83502424e-01\\n1.54957769e-03 -5.08120179e-01 -5.56375533e-02 -2.61963814e-01\\n7.04859316e-01 -2.19223484e-01 1.78735346e-01 1.00847393e-01\\n1.45437509e-01 9.13299993e-02 -1.19658165e-01 1.22601591e-01\\n-3.87456983e-01 -1.97301835e-01 -8.87915641e-02 -1.21025428e-01\\n4.16066140e-01 5.17527580e-01 -2.77378559e-01 -3.45542245e-02\\n1.38546288e-01 -4.11158115e-01 -7.50019625e-02 -5.13732433e-01\\n-2.59068787e-01 -2.34122500e-01 -6.43472791e-01 -3.41152966e-01\\n-1.01255707e-01 4.41092476e-02 -2.53071249e-01 5.10619283e-01\\n-4.62224871e-01 -5.29713035e-01 7.89511576e-02 -5.87168992e-01\\n6.97103217e-02 -2.31797859e-01 1.55059367e-01 -1.98234990e-01\\n-3.41397882e-01 -4.81898695e-01 1.97562039e-01 -7.64110833e-02\\n-1.26015544e-01 -1.26156092e-01 -8.22402760e-02 -2.57017821e-01\\n-2.70676672e-01 -4.14699286e-01 3.89312953e-01 3.31114866e-02\\n2.88290024e-01 1.20081998e-01 3.32133621e-01 1.32175371e-01\\n3.92266423e-01 -2.70836502e-01 2.52457708e-01 -3.41349840e-01\\n1.32015243e-01 -2.35268641e-02 6.92016482e-01 -3.84745777e-01\\n4.28930707e-02 1.46060780e-01 -3.31004530e-01 1.30572738e-02\\n4.11143988e-01 1.65985316e-01 -2.31660884e-02 -1.39493316e-01\\n3.06265473e-01 -6.99199498e-01 -1.43724427e-01 2.36657381e-01\\n6.16923012e-02 7.43351758e-01 2.10648519e-03 -3.30366135e-01\\n-2.90578693e-01 4.07710224e-01 -2.90386677e-01 -3.46108556e-01\\n-1.77614123e-01 3.28793190e-02 -6.89375177e-02 1.40922368e-01\\n9.36853066e-02 -1.57641545e-01 -3.29660743e-01 -9.83027965e-02\\n9.45907980e-02 1.29115433e-01 3.42749089e-01 2.69576367e-02\\n-1.82803035e-01 -1.31840378e-01 -1.43108875e-01 1.49730369e-01\\n2.39536375e-01 1.45028502e-01 5.09625226e-02 -3.04062515e-01\\n-8.94153863e-02 2.38905728e-01 -1.13587223e-01 1.95596412e-01\\n-1.28791407e-01 2.13153157e-02 -5.34991443e-01 -1.34505913e-01\\n1.73471756e-02 -1.85938418e-01 1.68719664e-01 3.35350096e-01\\n2.44830951e-01 8.30947682e-02 6.99205548e-02 -5.61019182e-01\\n3.99993271e-01 7.17108790e-03 3.62041481e-02 1.21041581e-01\\n-7.79594034e-02 4.00058389e-01 8.19663256e-02 1.39041934e-02\\n-5.06288335e-02 -3.19084488e-02 -2.94358552e-01 -3.16757530e-01\\n1.68573171e-01 -2.25850999e-01 -1.92843869e-01 4.35822785e-01\\n3.47292311e-02 -2.21330881e-01 -1.27670825e-01 1.61196843e-01\\n2.76164502e-01 -2.94274569e-01 -1.08555883e-01 -1.96797624e-02\\n8.86153504e-02 1.52969778e-01 2.85445571e-01 -2.76232988e-01\\n-4.18971442e-02 -8.45313743e-02 -1.95644066e-01 2.35355198e-01\\n1.10124663e-01 4.20086384e-02 -2.33908087e-01 -1.36608735e-01\\n5.07328451e-01 1.70550793e-01 7.78609589e-02 5.02872132e-02\\n1.75333828e-01 -3.02655101e-01 -4.79303718e-01 -1.52252227e-01\\n4.58093137e-02 -1.71378866e-01 4.33273315e-02 3.55976075e-02\\n8.17560330e-02 -8.98997039e-02 -4.32744086e-01 -2.15124294e-01\\n-1.37004077e-01 -2.48981088e-01 6.35693967e-02 -2.24558651e-01\\n-1.00511700e-01 -8.30622017e-02 -5.34694135e-01 4.26946171e-02\\n-2.82079160e-01 7.80676678e-02 1.08579271e-01 5.08486032e-02\\n-2.38745868e-01 -1.63135901e-01 1.03625499e-01 9.67741311e-02\\n-2.92306691e-01 -2.99069852e-01 7.14236423e-02 -8.59343767e-01\\n4.94412147e-03 3.79296625e-03 5.41890524e-02 -1.40833676e-01\\n-2.94086635e-02 -6.90011382e-01 2.66617864e-01 -4.95983601e-01\\n-2.37460695e-02 1.10979855e-01 -1.30929679e-01 -3.08179855e-01\\n3.11801583e-01 -1.72295824e-01 -3.71792853e-01 3.42551827e-01\\n-3.92808676e-01 2.39902049e-01 1.89362839e-01 4.22363244e-02\\n4.76108752e-02 -2.60275900e-01 1.36009946e-01 -1.12400167e-01\\n-3.75986040e-01 -1.19924292e-01 -2.79425502e-01 -1.65138841e-01\\n1.47457585e-01 -1.22716822e-01 -1.60393089e-01 1.57250330e-01\\n2.96426505e-01 1.25346288e-01 -9.16753784e-02 1.36035290e-02\\n9.15301219e-02 -4.31458682e-01 1.31564096e-01 -3.08859676e-01\\n-5.77675067e-02 9.14888158e-02 2.08364442e-01 -7.42360353e-02\\n-2.28577908e-02 -1.97931930e-01 5.47385275e-01 -2.45735154e-01\\n-3.76464665e-01 -4.39463072e-02 4.66175191e-03 -7.17428848e-02\\n1.97554618e-01 -4.51644123e-01 3.07491533e-02 3.19156408e-01\\n-5.18260710e-02 7.86872506e-02 1.99633256e-01 -2.84378347e-03\\n-1.39998689e-01 -1.35180326e-02 -5.69482148e-01 7.80524537e-02\\n7.94845879e-01 2.53013879e-01 3.41227800e-02 1.65758416e-01\\n1.58468634e-01 3.72777939e-01 5.26812792e-01 -5.97630851e-02\\n-2.18201607e-01 2.44983882e-01 -7.62373954e-03 -5.61581552e-01\\n-1.32000566e-01 8.47434974e-04 -2.65801311e-01 -3.07733893e-01\\n5.33343375e-01 3.18420976e-01 -3.47865820e-01 -3.72991621e-01\\n7.66191706e-02 -1.20570749e-01 3.00915718e-01 -2.63529527e-03\\n4.48522419e-02 -1.38788909e-01 6.62567735e-01 1.04516875e-02\\n2.37100780e-01 5.20235956e-01 1.60330720e-02 -3.78140658e-01\\n-9.93191898e-02 6.75549954e-02 1.60315990e-01 4.25393403e-01\\n-5.64666651e-02 1.36269212e-01 -2.26875678e-01 -1.07680112e-01\\n-1.11730307e-01 1.53982267e-01 2.57352054e-01 1.61221158e-02\\n3.30734968e-01 1.94610074e-01 3.11010659e-01 4.69546318e-01\\n1.15267634e-02 4.67072129e-01 2.27059931e-01 -4.58172373e-02\\n3.31745923e-01 6.03534281e-01 4.04119462e-01 1.54238120e-01\\n1.07991658e-02 9.12709832e-02 6.00442514e-02 -4.91234194e-03\\n4.15282905e-01 3.96080345e-01 3.55869412e-01 7.47924566e-01\\n2.60155320e-01 3.20422322e-01 7.33133674e-01 -6.48251653e-01\\n-4.11292762e-01 5.21633886e-02 5.22581279e-01 -1.40540078e-01\\n-1.61527500e-01 3.51454727e-02 -1.70680076e-01 1.85795859e-01\\n-6.21964812e-01 9.90042556e-03 8.23291317e-02 -2.58142431e-03\\n-3.43191884e-02 5.44497222e-02 -2.61832297e-01 4.16719951e-02\\n-2.02608690e-01 -1.48629233e-01 -3.82326931e-01 -2.71676928e-01\\n-4.20055002e-01 -7.33061284e-02 -8.24888274e-02 -3.89096923e-02\\n-1.19455002e-01 -3.11603367e-01 -8.79641771e-02 7.87033662e-02\\n3.97335887e-01 -2.37249091e-01 -7.69334435e-02 -1.83379233e-01\\n7.71632567e-02 3.02834481e-01 4.52553391e-01 -2.42218167e-01\\n1.40554637e-01 -1.06377482e-01 -3.11025590e-01 -3.51653546e-02\\n5.71132787e-02 -5.77717926e-03 1.25537947e-01 5.72487414e-01\\n-2.97436327e-01 4.81967777e-02 9.52238217e-03 3.14644516e-01\\n-4.02669251e-01 -1.04992650e-01 1.21219777e-01 2.13559121e-01\\n5.33733107e-02 1.51447132e-01 -3.50127161e-01 1.43569291e-01\\n-2.81346619e-01 -4.29895699e-01 4.98593301e-01 -1.42713800e-01\\n-1.34281993e-01 2.71864444e-01 2.11686626e-01 2.03009218e-01\\n-2.11123660e-01 -1.13683783e-01 -9.07000229e-02 3.51472408e-01\\n-7.31450040e-03 4.56066757e-01 -2.01008052e-01 -3.12674552e-01\\n-1.69694349e-01 2.36393750e-01 -1.09224215e-01 7.13696480e-02\\n-2.67092764e-01 3.68595958e-01 -4.72509973e-02 1.20998770e-01\\n2.53593236e-01 -9.74214356e-03 -2.31407747e-01 -2.27564275e-01\\n-1.87766477e-01 -4.21232134e-01 8.12575668e-02 8.63488093e-02\\n1.66095942e-01 -2.41341606e-01 -1.08485825e-01 -1.55781671e-01\\n-2.01535612e-01 -3.58665466e-01 -9.71867368e-02 1.40134916e-01]]',\n", + " 'Job Informationen Tasks: Extract data from databases, write scripts to parse, clean, combine, and process them Create dashboards and visualizations of processed data, identify trends, anomalies Investigate data problems, identify patterns Draw inferences and conclusions, communicate results through reports, charts, or tables Define and implement KPIs in conjunction with the business team Basic Qualifications: University degree in Computer Science, Electrical Engineering, or Math/Physics Masters or PhD degree is a plus SQL and database experience is a must, with Hive/Hadoop a plus Good programming skills with at least one high-level language such as Python, Java, or C/C++ Good knowledge of data structures, algorithms, and statistics Knowledge of Unix shell scripting Knowledge of Machine Learning would be a plus Fluent in English (both spoken and written), additional languages are a plus 5+ years relevant experience Benötigte Skills FH Universität ETH Master SQL Python C++ Python JAVA Shell-Scripts Englisch',\n", + " '[\"Communications\", \"Investigation\"]',\n", + " '[\"Programming (Music)\", \"Shell Script\", \"Computer Science\", \"Statistics\", \"Unix Shell\", \"Visualization\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Data Extraction\", \"Dashboard\", \"Machine Learning Methods\", \"Script Writing\", \"C (Programming Language)\", \"Apache Hive\", \"Electrical Engineering\", \"High-Level Architecture\", \"Drawing\", \"Physics\", \"Data Structures\", \"Algorithms\", \"Additives\", \"Scripting\", \"Java (Programming Language)\", \"Parsing\", \"Data Processing\", \"SQL (Programming Language)\"]',\n", + " \"['English', 'Cree', 'Assamese', 'Malayalam', 'Swahili']\"],\n", + " ['84',\n", + " 'experienced scientific software engineer',\n", + " 'Basel',\n", + " 'IT Services',\n", + " '',\n", + " '[[-3.64273340e-01 3.68838400e-01 4.66704160e-01 -1.50639862e-01\\n4.08001870e-01 -2.23041460e-01 4.91896598e-03 2.87507862e-01\\n2.98553314e-02 -2.73613036e-01 -6.46872744e-02 -3.12534004e-01\\n-2.76921719e-01 9.68874469e-02 2.76365399e-01 5.03006220e-01\\n2.42117718e-01 1.42463475e-01 -1.67280123e-01 3.11315447e-01\\n1.27350330e-01 4.25752848e-02 -4.21808176e-02 6.17155135e-01\\n4.27795529e-01 -1.18572591e-02 -1.18337780e-01 1.19457031e-02\\n-4.08349276e-01 -3.08406413e-01 3.19034576e-01 4.99837510e-02\\n-5.76443225e-02 -2.93539375e-01 -6.54292852e-02 1.09967701e-01\\n-3.13498646e-01 -1.74303502e-02 7.80495331e-02 3.18298072e-01\\n-4.94104654e-01 -3.83815348e-01 3.43878455e-02 1.14832923e-01\\n-1.76374599e-01 -1.79703087e-01 -5.90193532e-02 1.68536797e-01\\n6.15467988e-02 -5.53567009e-03 -5.08318424e-01 3.40673625e-01\\n-3.52868065e-02 -2.78459817e-01 1.47703499e-01 5.98171413e-01\\n-9.71533209e-02 -5.29280007e-01 -3.49869281e-01 -2.52368987e-01\\n1.27534613e-01 -2.57970225e-02 1.23639576e-01 -7.65136704e-02\\n3.51216048e-01 5.73487096e-02 -1.09512396e-01 4.45851684e-01\\n-6.92933977e-01 -2.41256163e-01 -8.78153741e-02 -7.38906953e-03\\n-3.52034479e-01 3.07396520e-02 -1.75922349e-01 -1.33563444e-01\\n-7.17360824e-02 3.19236159e-01 6.29763529e-02 3.70591246e-02\\n-9.74175557e-02 3.04618180e-01 -2.15156097e-02 1.39272094e-01\\n3.49219561e-01 2.19156906e-01 1.55204639e-01 3.13900769e-01\\n-5.16703069e-01 2.86724120e-01 1.43885434e-01 -2.62188733e-01\\n1.47872284e-01 -2.96124108e-02 6.17488086e-01 1.33297876e-01\\n-2.26680599e-02 1.24935783e-01 -1.66402906e-01 2.70051032e-01\\n1.63559869e-01 -3.30074042e-01 1.76356629e-01 -2.59722676e-02\\n-2.70302832e-01 5.50275445e-02 -1.43620327e-01 1.97273478e-01\\n-2.59799361e-01 3.32554370e-01 4.06771839e-01 -1.51012123e-01\\n-1.17355600e-01 -6.38774693e-01 -1.53565153e-01 1.07850790e-01\\n9.68764573e-02 2.39336371e-01 4.37201470e-01 1.65387735e-01\\n2.25493282e-01 1.56036451e-01 2.73557335e-01 1.01979053e+00\\n-5.53805716e-02 4.65318933e-02 -3.50173086e-01 2.51548737e-01\\n2.08330095e-01 -1.38557270e-01 1.57953024e-01 3.43453735e-01\\n1.78608701e-01 -1.59187511e-01 -1.21914446e-01 2.47518912e-01\\n-8.67121145e-02 -2.18402103e-01 -3.43399614e-01 1.07025243e-01\\n-3.43892187e-01 -3.87873322e-01 4.19747323e-01 2.26625562e-01\\n1.87707618e-01 -9.82284397e-02 -1.07488044e-01 -8.14048350e-02\\n1.12694604e-02 3.88930976e-01 -5.34302592e-02 1.49485543e-01\\n-3.34268779e-01 -1.64145157e-01 -2.37290412e-01 3.55832964e-01\\n-3.64586115e-02 2.18677074e-01 1.04337279e-02 -1.17965713e-01\\n2.73892671e-01 2.77383700e-02 -2.07336813e-01 1.68496490e-01\\n-2.50366200e-02 -4.67124552e-01 -1.17162310e-01 2.21734479e-01\\n-1.63939148e-01 1.04296044e-01 6.06007921e-03 -4.14454103e-01\\n4.61286038e-01 2.01133087e-01 3.16947103e-01 -2.14577645e-01\\n2.92492300e-01 -2.78029352e-01 2.32096627e-01 1.57446817e-01\\n-6.51048660e-01 2.09693193e-01 -6.93268925e-02 -2.00388715e-01\\n9.76875871e-02 1.05144493e-01 3.84873569e-01 -2.87150681e-01\\n7.99239352e-02 -1.03112020e-01 -4.82285708e-01 -3.60038310e-01\\n-2.09696755e-01 1.75099485e-02 5.14017999e-01 -2.23665625e-01\\n-1.67779654e-01 1.22063339e-01 -4.28982377e-01 -1.52787820e-01\\n1.81355372e-01 9.64144841e-02 -4.20782268e-02 -4.95249853e-02\\n-2.90076673e-01 -6.44508004e-01 3.62469777e-02 -6.27785683e-01\\n-5.85341930e-01 1.91995036e-02 -2.84834117e-01 2.99355149e-01\\n7.18461722e-02 4.43452857e-02 -1.90078393e-01 1.10121302e-01\\n-2.47500286e-01 4.34831008e-02 1.12659343e-01 2.88401335e-01\\n2.22901314e-01 -1.19438633e-01 -4.79573041e-01 3.70849490e-01\\n-1.94067046e-01 7.13388026e-01 2.69761473e-01 -7.46741891e-01\\n5.50466478e-01 2.22033903e-01 1.38382807e-01 -3.44669342e-01\\n5.02348542e-01 -4.24995273e-01 5.63892573e-02 1.93465486e-01\\n-3.00352305e-01 -1.62222236e-01 3.77905190e-01 -1.67901382e-01\\n-1.61365896e-01 5.47144413e-01 1.58486590e-01 -1.00029923e-01\\n2.93573141e-01 -3.99435490e-01 1.71944145e-02 -4.01654877e-02\\n-8.48371983e-02 -3.29084426e-01 -3.25613171e-01 1.96348310e-01\\n-6.74897060e-02 -5.91689765e-01 -8.17949176e-02 -2.29939267e-01\\n-2.68502027e-01 -3.67432773e-01 -2.73493767e-01 5.07370889e-01\\n1.77783236e-01 1.04200408e-01 2.41798609e-01 -8.49143043e-02\\n-2.73747630e-02 -5.66949904e-01 -1.62773386e-01 1.94330495e-02\\n5.79958618e-01 1.99667230e-01 4.38068844e-02 9.28662568e-02\\n-9.56667960e-02 4.99466717e-01 -2.75643587e-01 -3.79948646e-01\\n-5.39966375e-02 1.16181508e-01 1.74861178e-02 -4.30052876e-02\\n2.34006457e-02 2.66025722e-01 -4.49584350e-02 2.88020745e-02\\n-1.81056112e-01 1.25662282e-01 4.02539134e-01 -1.67414099e-02\\n-2.25022033e-01 -1.47840694e-01 -6.91341087e-02 2.37536386e-01\\n-6.17024064e-01 -1.56357884e-01 4.89724785e-01 1.75772175e-01\\n2.36660972e-01 1.39914081e-01 3.58136088e-01 -1.62651524e-01\\n-1.84482053e-01 -1.60860136e-01 7.51317665e-02 1.28270179e-01\\n8.62604678e-02 -4.11479101e-02 -1.65124655e-01 -4.80568022e-01\\n-3.23556066e+00 -2.63024360e-01 1.26402333e-01 -2.76329339e-01\\n1.45995528e-01 -6.65341318e-02 -3.75132449e-02 -3.71702462e-02\\n-2.47444123e-01 1.47971049e-01 -2.04697132e-01 -1.99696228e-01\\n5.64442575e-02 1.10745594e-01 6.93537518e-02 3.33059639e-01\\n1.65135905e-01 -1.53528467e-01 -1.95129141e-01 3.14809740e-01\\n-1.49997440e-03 -4.89264786e-01 2.52580136e-01 6.90291682e-03\\n2.06082746e-01 1.35914341e-01 -3.75831157e-01 -7.28968233e-02\\n-2.36530468e-01 -2.39869952e-01 1.11464851e-01 -2.07636371e-01\\n-1.21150352e-01 3.80201638e-01 1.96387455e-01 -4.68575098e-02\\n4.98598926e-02 -2.69577086e-01 -1.86080500e-01 -3.82249147e-01\\n1.43145874e-01 -6.08281255e-01 -3.72788198e-02 -1.49595991e-01\\n7.46698320e-01 -4.95126009e-01 7.79736787e-02 2.48939514e-01\\n1.65418625e-01 2.03983068e-01 -2.20104054e-01 -1.32693112e-01\\n-2.07255721e-01 -3.14832509e-01 2.71170121e-02 -2.46782273e-01\\n2.29823843e-01 6.83246374e-01 -1.37167275e-01 8.61452147e-03\\n1.26627982e-01 -2.82022774e-01 -3.96318555e-01 -4.76756662e-01\\n-2.03848407e-01 -2.61368573e-01 -6.91728652e-01 -5.32276154e-01\\n-1.15754165e-01 4.90097776e-02 -3.13588798e-01 5.84893227e-01\\n-3.71930569e-01 -4.97375488e-01 7.03294948e-02 -4.60003257e-01\\n1.37590142e-02 -4.08759922e-01 -2.38229055e-02 -8.58294219e-02\\n-2.50052184e-01 -4.81161088e-01 1.17372148e-01 -4.58536297e-02\\n-8.97716209e-02 -2.25120887e-01 -1.27572864e-01 -3.61406147e-01\\n-2.72447795e-01 -1.63967013e-01 4.43631828e-01 1.58796892e-01\\n4.13904548e-01 1.88601837e-01 2.35466585e-01 2.35769108e-01\\n3.39626998e-01 -2.32404560e-01 1.24190457e-01 -3.60730857e-01\\n1.96514949e-01 3.83338332e-02 6.95144951e-01 -3.23246717e-01\\n1.98744208e-01 7.16081262e-02 -1.88616738e-01 -1.11279830e-01\\n4.18309957e-01 1.53992265e-01 -1.02200404e-01 -8.00052509e-02\\n4.14027929e-01 -6.00139439e-01 -2.14560583e-01 1.59925103e-01\\n4.58724275e-02 5.82868516e-01 2.08478775e-02 -3.77571851e-01\\n-3.53276163e-01 3.88011485e-01 -2.51690626e-01 -1.97833925e-01\\n-2.04892263e-01 2.24738374e-01 -3.54707502e-02 2.42277607e-01\\n1.56847481e-02 -2.20184252e-01 -4.48458910e-01 -1.55792624e-01\\n-3.20052193e-03 4.35695499e-02 2.68926680e-01 8.83418769e-02\\n-3.63037363e-02 -2.67682463e-01 -2.15239331e-01 9.92216244e-02\\n4.00518239e-01 1.56495854e-01 2.05413371e-01 -2.00982496e-01\\n-2.09641289e-02 1.69215500e-01 -3.78578492e-02 9.95214581e-02\\n-1.16155192e-01 -6.93437606e-02 -3.91758531e-01 -2.14845374e-01\\n-5.13453083e-03 -2.75796622e-01 4.04754505e-02 2.86122948e-01\\n2.42687017e-01 8.27113986e-02 6.73352927e-02 -4.10727292e-01\\n4.37172860e-01 9.52525064e-02 4.11106385e-02 2.23249674e-01\\n2.91828047e-02 5.78487933e-01 -1.07492926e-02 1.32550761e-01\\n-1.31629556e-01 -1.32999092e-01 -2.38456339e-01 -1.39958277e-01\\n-1.34673603e-02 -2.81011879e-01 -1.16364658e-01 3.38333368e-01\\n1.39400735e-03 -3.17832142e-01 -1.46472052e-01 2.72117704e-01\\n6.24312945e-02 -3.40824783e-01 -1.04184926e-01 2.51449078e-01\\n1.58282951e-01 1.54076770e-01 2.95582950e-01 -4.55221742e-01\\n-1.81993157e-01 3.26002277e-02 -2.14145213e-01 5.43193340e-01\\n1.97194248e-01 1.45024866e-01 -1.56653732e-01 -4.27611411e-01\\n4.49069321e-01 -1.94906026e-01 -5.82855009e-02 -8.05654377e-02\\n4.26335819e-02 -4.68970276e-02 -4.61632013e-01 4.30615842e-02\\n7.11981282e-02 -2.25410059e-01 -1.20930739e-01 -8.20839554e-02\\n1.80946305e-01 3.61339115e-02 -3.88354987e-01 -3.41585696e-01\\n-1.08563237e-01 -2.33468190e-01 5.39127924e-02 -2.38616467e-01\\n-1.45712299e-02 -1.11367092e-01 -5.84951341e-01 2.75380850e-01\\n-4.80907381e-01 4.78816554e-02 -5.30484654e-02 1.40696183e-01\\n-4.01809931e-01 -1.14832893e-01 1.23600706e-01 2.29649290e-01\\n-3.29733580e-01 -2.50939876e-01 6.21192865e-02 -8.13626051e-01\\n5.51848784e-02 6.44840375e-02 -6.55249581e-02 -9.06772017e-02\\n2.29342598e-02 -4.55292195e-01 1.41791999e-01 -3.82217586e-01\\n7.74985775e-02 -1.53471092e-02 -1.08618073e-01 -4.27261263e-01\\n1.66748598e-01 -9.98948067e-02 -2.14777172e-01 4.56088096e-01\\n-3.82535219e-01 1.53122455e-01 1.73842356e-01 5.66106178e-02\\n1.82145126e-02 -3.20217013e-01 3.00374597e-01 -1.65599301e-01\\n-4.52819079e-01 -7.66447634e-02 -4.85278785e-01 -2.06463441e-01\\n9.82960463e-02 -2.11278647e-02 -2.65430778e-01 8.21008310e-02\\n2.30240047e-01 1.07952215e-01 -7.65745118e-02 -4.39036995e-01\\n1.22989081e-01 -5.07589936e-01 5.01692854e-02 -2.87458867e-01\\n-1.25776023e-01 5.88829741e-02 2.50598546e-02 -5.71124256e-02\\n-1.09899268e-01 -1.63156524e-01 4.36658472e-01 -2.68247366e-01\\n-3.64089072e-01 1.73417013e-02 1.93136483e-02 1.27628250e-02\\n1.99044883e-01 -5.80789566e-01 -5.67217208e-02 2.33017191e-01\\n-4.56158519e-02 7.84133524e-02 2.50744432e-01 1.31227868e-02\\n-1.18935540e-01 2.45440468e-01 -4.31291342e-01 2.39067703e-01\\n6.88865304e-01 1.97859600e-01 6.05323277e-02 1.83645308e-01\\n2.69787788e-01 3.59083533e-01 6.07909203e-01 -1.76345035e-02\\n-8.41528177e-02 4.04035747e-01 8.97925347e-03 -3.96405995e-01\\n-4.19695266e-02 -2.19725668e-01 -3.34650129e-01 -4.18939382e-01\\n6.76613927e-01 3.93430173e-01 -3.90617251e-01 -1.42107174e-01\\n-1.08941167e-03 1.48561159e-02 2.44110897e-01 -1.68797553e-01\\n2.05973629e-02 -1.08119115e-01 6.64920330e-01 2.44575776e-02\\n2.98504114e-01 5.37003279e-01 -2.02751547e-01 -4.12292838e-01\\n-2.29367778e-01 1.12943046e-01 2.44946465e-01 3.82901579e-01\\n-1.58273861e-01 2.87752450e-01 -9.74010602e-02 1.62713453e-01\\n-3.99940945e-02 2.25850329e-01 6.10635504e-02 7.29301421e-04\\n1.57701135e-01 1.54847935e-01 2.83843148e-02 4.70430285e-01\\n1.71000540e-01 4.83428866e-01 2.35634521e-01 8.35908875e-02\\n3.38939786e-01 5.71043491e-01 4.95515436e-01 3.29514831e-01\\n-3.10578812e-02 9.50514451e-02 -1.66439578e-01 -7.38444030e-02\\n3.49621236e-01 2.30457678e-01 2.50061601e-01 8.59168470e-01\\n3.28648925e-01 2.84041077e-01 7.52436519e-01 -5.08944392e-01\\n-5.12400210e-01 9.45152640e-02 4.62131202e-01 -2.66809911e-01\\n-2.47440144e-01 5.87327294e-02 -2.73325473e-01 1.33814082e-01\\n-4.91229355e-01 7.61281177e-02 3.20637897e-02 -1.41049907e-01\\n9.34150890e-02 -3.85181792e-02 -3.26377958e-01 -4.39021774e-02\\n-4.00262237e-01 -1.79135934e-01 -3.59146625e-01 -3.88991758e-02\\n-3.40092480e-01 -1.95937961e-01 -1.65750876e-01 -1.35168985e-01\\n-1.64244339e-01 -4.43538576e-01 -1.26944795e-01 2.18687892e-01\\n3.83110702e-01 -2.40443632e-01 -5.48219830e-02 -1.52704805e-01\\n1.02477223e-01 4.23938304e-01 5.04985452e-01 -1.17374271e-01\\n6.98051229e-02 -5.60450219e-02 -3.79201502e-01 3.32984328e-02\\n5.24616912e-02 6.08726311e-03 4.50422317e-02 4.91681367e-01\\n-3.11371773e-01 7.31105208e-02 8.86684284e-02 3.47843200e-01\\n-4.58484173e-01 -1.07724089e-02 -7.33639374e-02 3.83203030e-01\\n1.67123437e-01 3.11582863e-01 -3.42474997e-01 2.08423868e-01\\n-1.85230583e-01 -4.07012761e-01 3.78397048e-01 -1.31602690e-01\\n-8.59120563e-02 3.04622531e-01 3.04965138e-01 1.33339643e-01\\n-3.38212997e-01 -3.23959030e-02 4.14357297e-02 4.57491249e-01\\n8.49841684e-02 4.19626087e-01 -2.93024540e-01 -1.72567651e-01\\n-2.46828496e-01 2.31233865e-01 -2.44935170e-01 1.49898127e-01\\n-1.52880043e-01 3.56522202e-01 1.28415331e-01 1.01179816e-01\\n1.61144629e-01 2.54791696e-02 -1.41038731e-01 -2.72119880e-01\\n-2.39985868e-01 -4.34708685e-01 1.91171914e-01 -1.82193667e-02\\n6.73230290e-02 -3.01253527e-01 -7.36237988e-02 -1.61033213e-01\\n-2.76806653e-01 -4.48089659e-01 -8.21117833e-02 -7.84694776e-03]]',\n", + " 'Über unseren Kunden Our client ia an agile drug discovery company Ihr Aufgabenbereich Design and develop professional and intelligent scientific software in Java Use and contribute to a rich framework of cheminformatics classes and GUI components Gather requirements from drug designers and turn them into creative and innovative solutions Ihr Profil Master of Computer Science, Master of Chemistry or equivalent Expert in Java (OOP, design patterns, algorithms and data structures) Substantial experience in Java client development (Swing, JavaFX) A more than basic understanding of chemistry, molecules and reactions Good working knowledge in relational databases (Oracle, SQL, JDBC) Broad technology background (C, C++, Git, HTML5, REST, JSON, LDAP, Linux, Windows, OSX, etc) Being fluent in English (German is a plus) Self-motivated learner, cross-platform thinking, good team-player Ihre Chance Send your application to jobs@oneagency.ch Ort: Basel Spezialisierung: HTML C# / C++ / C Linux Sprachen: Deutsch Englisch Job ID: 5514',\n", + " '[\"Self-Motivation\", \"Innovation\", \"Creativity\", \"Professionalism\"]',\n", + " '[\"Oracle SQL Developer\", \"Agility\", \"Computer Science\", \"Distributed Design Patterns\", \"Linux\", \"HTML5\", \"Cheminformatics\", \"HyperText Markup Language (HTML)\", \"JDBC Driver\", \"C (Programming Language)\", \"C# (Programming Language)\", \"Ldap Client\", \"JavaFX\", \"Swing (Dance)\", \"Data Structures\", \"Chemistry\", \"Relational Databases\", \"Drug Discovery\", \"Algorithms\", \"Git Flow\", \"Java (Programming Language)\", \"JSON\", \"Object-Oriented Programming (OOP)\"]',\n", + " \"['English']\"],\n", + " ['15',\n", + " 'data engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-9.98998433e-02 1.97152644e-01 4.99470174e-01 -1.87371280e-02\\n5.57983756e-01 -4.58676927e-02 2.19857134e-02 2.63412774e-01\\n5.93734831e-02 -3.48637283e-01 9.23671760e-03 -2.26297766e-01\\n-4.41474877e-02 1.25425667e-01 1.01614155e-01 3.50094080e-01\\n2.28653610e-01 1.43700704e-01 -1.61327466e-01 2.42487073e-01\\n2.60273933e-01 -2.27474153e-01 1.46380231e-01 7.42537141e-01\\n3.51047695e-01 7.53103048e-02 -1.22040108e-01 -8.72733742e-02\\n-2.35802457e-01 -2.19702959e-01 4.60112602e-01 2.73665488e-02\\n-1.78154372e-02 -3.69986176e-01 1.52367219e-01 4.63702492e-02\\n-3.02975923e-01 -2.78775506e-02 -7.84548894e-02 2.49695569e-01\\n-6.48348093e-01 -2.75886148e-01 -2.66547129e-02 4.19582352e-02\\n-2.34154552e-01 -2.63983905e-01 -3.10796387e-02 -7.76615739e-02\\n8.40050429e-02 8.83230641e-02 -5.07604837e-01 2.41512030e-01\\n-1.24171391e-01 -2.28536963e-01 2.48472199e-01 6.91273987e-01\\n-4.50681038e-02 -4.41353738e-01 -5.37199080e-01 -3.11479896e-01\\n8.33623931e-02 -1.95348561e-01 6.43659532e-02 -2.55740345e-01\\n2.96868801e-01 2.51846164e-02 1.24646239e-01 3.39337111e-01\\n-6.92676008e-01 -9.81176551e-03 -2.06226423e-01 7.86596071e-03\\n-2.53300458e-01 -8.06198344e-02 -2.65956372e-01 -1.03259161e-01\\n-1.63169637e-01 5.04333436e-01 1.56563893e-01 -2.13129390e-02\\n-6.97189122e-02 2.04713434e-01 -2.66840726e-01 2.91900247e-01\\n1.95358247e-01 2.55060107e-01 1.41678452e-01 2.92000473e-01\\n-3.24760646e-01 4.51508760e-01 8.28409120e-02 -2.80482441e-01\\n2.31827781e-01 6.45272881e-02 4.46475387e-01 -7.59381279e-02\\n9.55346152e-02 8.09905306e-02 -2.48376578e-01 2.68496335e-01\\n2.35486105e-01 -2.48794243e-01 7.69232213e-02 -8.61431807e-02\\n-1.40916556e-01 -5.14186770e-02 -4.72015655e-03 2.14406341e-01\\n-1.84699848e-01 3.66772532e-01 2.04026341e-01 -5.82609437e-02\\n-1.51278481e-01 -5.49873054e-01 1.88134611e-02 5.32678403e-02\\n6.83155656e-02 2.22340986e-01 1.91423163e-01 7.53043741e-02\\n1.86959937e-01 5.27589358e-02 1.90087140e-01 8.44816625e-01\\n2.61658803e-02 1.23406202e-01 -2.85340935e-01 2.81537175e-01\\n1.05313189e-01 -1.68594822e-01 1.16564445e-01 1.91351876e-01\\n8.37723389e-02 -9.97206122e-02 -2.76905566e-01 3.22454602e-01\\n-7.89886340e-02 -2.12458119e-01 -1.41082928e-01 2.16886789e-01\\n-7.93813765e-02 -3.31747264e-01 5.10200918e-01 1.48076490e-01\\n1.31854162e-01 -5.91597967e-02 8.79621319e-03 -1.36009589e-01\\n-1.59676716e-01 1.80109471e-01 5.42135425e-02 1.47959471e-01\\n-3.39210600e-01 -2.66746342e-01 -2.66191065e-01 1.06226690e-01\\n-3.05226713e-01 9.95913744e-02 -5.22824898e-02 -8.04561824e-02\\n2.76378810e-01 1.74293458e-01 -2.94111192e-01 2.37864852e-01\\n-8.44585299e-02 -1.09393433e-01 1.25585094e-01 3.02391976e-01\\n-2.31247544e-01 1.81893796e-01 1.20371310e-02 -1.93199307e-01\\n5.66395700e-01 1.66991785e-01 2.37456560e-01 9.21028107e-02\\n2.88263500e-01 -6.08759522e-02 1.05367444e-01 2.27070495e-01\\n-5.73513687e-01 3.11017722e-01 -1.05044939e-01 -7.21694678e-02\\n1.82422280e-01 -6.32762685e-02 3.83740097e-01 -3.05233240e-01\\n1.57807574e-01 -1.17152251e-01 -3.57045382e-01 -2.67231077e-01\\n-1.65865228e-01 1.71132118e-01 3.61724347e-01 -4.38111156e-01\\n-2.45524123e-02 3.20603430e-01 -4.49311018e-01 -1.78323194e-01\\n1.68470204e-01 1.88515052e-01 1.43587887e-01 8.76417011e-02\\n-2.38418832e-01 -4.36608940e-01 -2.54167058e-03 -3.21836710e-01\\n-3.00735235e-01 5.79095706e-02 -2.60441244e-01 2.78234243e-01\\n5.49001098e-02 6.52710944e-02 -1.32333368e-01 1.48784906e-01\\n-1.94907054e-01 -5.45627922e-02 1.67649865e-01 2.76614223e-02\\n2.20458657e-01 7.26060793e-02 -3.43278468e-01 3.71006191e-01\\n-1.22606680e-01 5.54795384e-01 1.31609350e-01 -8.16452086e-01\\n4.77201194e-01 2.66264230e-01 -1.40279502e-01 -3.60791326e-01\\n5.56011319e-01 -2.08606049e-01 4.72614579e-02 1.61297396e-01\\n-3.17924023e-01 -3.60303968e-01 3.37640136e-01 -1.41066924e-01\\n-2.24926263e-01 4.85480428e-01 1.72831804e-01 1.30888209e-01\\n1.59585848e-01 -2.51462340e-01 -1.17638201e-01 3.39746214e-02\\n-1.53288677e-01 -2.30060682e-01 -5.00312567e-01 -2.85034962e-02\\n-1.40911520e-01 -3.92224193e-01 -7.19712824e-02 -3.09450299e-01\\n-2.25271046e-01 -3.30438226e-01 -1.03796020e-01 1.81441441e-01\\n3.11140209e-01 2.38120362e-01 1.24966754e-02 8.45534634e-03\\n-1.26339896e-02 -6.34600580e-01 -8.67870599e-02 8.32965896e-02\\n3.69247437e-01 1.30257577e-01 1.44248337e-01 4.63810451e-02\\n-4.26720902e-02 5.18113732e-01 -1.74384668e-01 -1.52194649e-01\\n1.39776304e-01 1.27821162e-01 8.16736668e-02 -6.81443959e-02\\n1.47215068e-01 3.12286437e-01 -2.22207084e-01 9.18604061e-02\\n-9.47456062e-02 -4.78177592e-02 3.32185388e-01 4.27488200e-02\\n-3.00677687e-01 -2.40568906e-01 -1.16933428e-01 1.17763579e-01\\n-4.97554302e-01 -2.18924999e-01 4.79001731e-01 1.79978967e-01\\n1.86108798e-01 1.39620975e-01 1.27440870e-01 -1.33280292e-01\\n-1.72111884e-01 -2.58254677e-01 3.32453758e-01 2.68188287e-02\\n1.86541125e-01 1.00505784e-01 -1.40593783e-03 -5.70831895e-01\\n-3.43930721e+00 -1.65340841e-01 1.24765515e-01 -2.75352001e-01\\n1.88078478e-01 -1.52135253e-01 7.20741153e-02 1.50343459e-02\\n-2.77613133e-01 5.70858717e-02 -5.00585400e-02 -9.10519809e-02\\n1.16038486e-01 1.80958629e-01 1.49729788e-01 2.29187727e-01\\n7.46175274e-02 -2.11780906e-01 -4.57385108e-02 3.57682198e-01\\n-3.16253662e-01 -6.25500679e-01 1.54034004e-01 -7.84544945e-02\\n1.74763709e-01 1.97557971e-01 -3.36236060e-01 -1.76586166e-01\\n-2.41786540e-01 -2.16673508e-01 7.88787380e-02 -2.43224978e-01\\n-1.20544150e-01 3.38597059e-01 1.77966803e-01 -2.47339476e-02\\n1.11569829e-01 -2.90177077e-01 5.41986723e-04 -4.14874434e-01\\n9.85726193e-02 -6.58646047e-01 -6.86026737e-02 -1.47949070e-01\\n6.62897587e-01 -3.05703431e-01 1.22703440e-01 6.12274371e-02\\n2.06132039e-01 1.19932771e-01 4.71950769e-02 -8.91026780e-02\\n-2.39108741e-01 -2.38231212e-01 -8.04287642e-02 -6.82279766e-02\\n3.29306543e-01 5.55606902e-01 -1.41079843e-01 -1.01776652e-01\\n-3.85066979e-02 -3.50557536e-01 -4.77627426e-01 -3.50319862e-01\\n-9.72887576e-02 -1.90136760e-01 -6.05422676e-01 -4.35974300e-01\\n-1.58704817e-01 -1.14522755e-01 -7.50512406e-02 5.06284535e-01\\n-2.83337206e-01 -3.42575222e-01 -1.72541335e-01 -5.07660031e-01\\n2.49455258e-01 -1.48055673e-01 -7.63515681e-02 -2.82965839e-01\\n-3.32825184e-01 -4.41049308e-01 1.95053592e-01 3.88801955e-02\\n-1.13154590e-01 -2.56487221e-01 6.71961308e-02 -2.27691740e-01\\n-3.09614331e-01 -4.63464409e-01 3.23200345e-01 5.41589968e-02\\n2.99706787e-01 1.30259842e-01 3.71802628e-01 -3.51815447e-02\\n3.12345922e-01 -9.61680785e-02 6.74147159e-02 -3.34052265e-01\\n7.97658637e-02 4.60403524e-02 4.11679924e-01 -3.23985666e-01\\n-3.62232290e-02 1.71932250e-01 -3.28969419e-01 -3.26989926e-02\\n2.89494783e-01 -9.97728482e-02 -1.23855107e-01 -1.44535854e-01\\n3.90606403e-01 -3.52675945e-01 -1.79764166e-01 6.33004233e-02\\n1.44868657e-01 4.92709488e-01 2.34151129e-02 -3.45968008e-01\\n-2.04053819e-01 3.97915274e-01 -7.78415129e-02 -1.48245245e-01\\n-8.86551812e-02 -2.49728188e-03 -2.12938026e-01 3.16476256e-01\\n-1.77277252e-02 -1.79964960e-01 -2.90927500e-01 -1.78654149e-01\\n-8.60887468e-02 3.54264438e-01 2.16819718e-01 4.51311760e-04\\n-1.32116392e-01 -3.00597429e-01 -2.19884798e-01 2.64676422e-01\\n1.64699480e-01 3.21614355e-01 1.40138313e-01 -1.95295036e-01\\n-2.37670150e-02 2.58300990e-01 -1.36433095e-01 1.72529817e-01\\n-2.48085856e-01 3.23181525e-02 -5.37817240e-01 -4.53125745e-01\\n-1.39257535e-01 -3.71102333e-01 1.85846046e-01 3.53551596e-01\\n2.64122963e-01 6.88541157e-04 -7.74141215e-03 -5.03653347e-01\\n2.46722594e-01 -1.52597893e-02 1.61403954e-01 6.18723258e-02\\n-4.11908515e-02 6.14995658e-01 1.61009490e-01 -1.54791683e-01\\n-8.38213041e-02 7.44742947e-03 -2.00097844e-01 -5.44463545e-02\\n1.46256775e-01 -3.91793877e-01 -1.51044086e-01 4.78571475e-01\\n1.16849549e-01 -3.17656100e-01 -1.38495415e-01 2.61488706e-01\\n-2.01293789e-02 -2.65987962e-01 -2.15953991e-01 5.71088158e-02\\n2.97512233e-01 1.60917565e-01 3.70271653e-01 -4.22141343e-01\\n1.48862042e-02 4.91659604e-02 -1.52740777e-01 4.59558755e-01\\n3.32085118e-02 -1.00646392e-02 -2.21461520e-01 -8.65842104e-02\\n3.60315889e-01 -8.66901129e-02 3.67928483e-02 1.07094266e-01\\n-1.62132233e-02 -1.87189251e-01 -5.38501203e-01 5.40643185e-02\\n-3.55087519e-02 -2.22213075e-01 -1.66446492e-02 2.31658742e-01\\n1.52707584e-02 3.75772780e-03 -5.79141438e-01 -2.82765359e-01\\n-1.65417030e-01 7.92880580e-02 1.15879089e-01 -4.19070035e-01\\n-1.13906212e-01 -3.97933498e-02 -5.43984115e-01 2.10181311e-01\\n-6.32139966e-02 -2.52097193e-02 1.64730832e-01 7.40281269e-02\\n-1.58122644e-01 -2.38359757e-02 1.15754612e-01 2.27616131e-01\\n-1.98546410e-01 -1.89981088e-01 3.97958932e-03 -9.69584465e-01\\n7.49571174e-02 -5.12979068e-02 -2.74407089e-01 3.77369151e-02\\n1.05678476e-02 -6.32331550e-01 6.70341551e-02 -4.01552588e-01\\n-7.78725445e-02 -5.10341302e-03 -2.73104459e-01 -2.77397186e-01\\n5.93604259e-02 9.77364853e-02 -3.69456828e-01 3.73389304e-01\\n-2.99965501e-01 3.83564740e-01 -6.55236393e-02 8.77982825e-02\\n8.50875601e-02 -3.14839125e-01 1.07931159e-01 -3.36971015e-01\\n-3.05370301e-01 -1.69857129e-01 -4.21980828e-01 -2.52053857e-01\\n-3.55787426e-02 -1.91765055e-01 -8.08241516e-02 5.34649231e-02\\n2.66178697e-01 4.46977764e-02 2.62324773e-02 -2.94415295e-01\\n-1.94731727e-03 -4.60829198e-01 1.39008075e-01 -1.31950289e-01\\n-9.15825367e-02 -1.54787511e-01 1.04006410e-01 5.43554313e-02\\n1.82314485e-01 -3.46424013e-01 4.80115563e-01 -3.19533885e-01\\n-2.44878531e-01 -9.55470800e-02 8.56073759e-03 9.55415890e-02\\n2.69538105e-01 -3.72755468e-01 2.56780535e-02 2.82279313e-01\\n1.89144269e-01 1.64526016e-01 3.31392378e-01 -4.78386953e-02\\n-7.00033307e-02 1.08433641e-01 -3.79010141e-01 6.60397038e-02\\n7.49648869e-01 1.58139348e-01 1.25816986e-01 1.14973873e-01\\n6.65250719e-02 1.15810171e-01 5.54963112e-01 1.29024267e-01\\n-1.49597526e-01 2.38715529e-01 1.48169762e-02 -5.24714589e-01\\n-1.65051237e-01 -8.94706845e-02 -1.98826209e-01 -3.94835591e-01\\n6.80251420e-01 3.73314798e-01 -4.93509024e-01 -1.49980471e-01\\n-1.29828855e-01 -9.19738412e-02 7.96814784e-02 -1.76913321e-01\\n-1.93392299e-02 -4.90420163e-02 4.50672626e-01 -8.11112002e-02\\n2.46962354e-01 3.41357142e-01 -7.36927837e-02 -2.48386577e-01\\n-5.01758754e-02 2.33399808e-01 9.60875675e-02 3.45379740e-01\\n-1.58916712e-01 3.44303370e-01 3.47258970e-02 1.89217180e-01\\n-9.04791132e-02 5.18768579e-02 3.88155989e-02 1.05042011e-01\\n5.69801107e-02 3.80215123e-02 3.77773523e-01 4.59079593e-01\\n2.90616691e-01 4.31438059e-01 3.01439136e-01 4.86432910e-02\\n4.27714586e-01 4.63314265e-01 3.30575436e-01 1.76705062e-01\\n-7.51924813e-02 9.05373991e-02 2.66333111e-02 2.87195314e-02\\n4.16210324e-01 3.12305629e-01 1.05562702e-01 7.69239187e-01\\n2.18980998e-01 1.88183337e-01 6.16315246e-01 -5.62968791e-01\\n-3.85516107e-01 -8.84358212e-02 5.47951818e-01 -3.74285072e-01\\n2.72122137e-02 1.02708444e-01 -1.94500014e-01 1.39071584e-01\\n-5.39252520e-01 -2.29361415e-01 -1.54878385e-02 1.25321329e-01\\n-6.19567707e-02 -1.31734788e-01 -2.02776849e-01 5.79915754e-02\\n-6.53996691e-02 -9.16827321e-02 -3.84773493e-01 -1.12982392e-01\\n-2.63507336e-01 -1.24508485e-01 -1.06767878e-01 -1.03236005e-01\\n-2.13398971e-02 -3.14800441e-01 -9.55086872e-02 1.65221598e-02\\n3.30449432e-01 -1.56356573e-01 -1.24725811e-01 -4.95006405e-02\\n3.12073350e-01 1.38101891e-01 5.02904177e-01 6.18027970e-02\\n7.78317377e-02 -3.44437838e-01 -2.45629191e-01 1.18237786e-01\\n2.95107663e-01 9.48463082e-02 3.10304239e-02 3.80618721e-01\\n-2.21369207e-01 -1.61770299e-01 1.02590494e-01 2.90005982e-01\\n-5.21793008e-01 3.65752019e-02 -5.89083470e-02 2.20316574e-01\\n1.47336632e-01 1.66876733e-01 -1.72704577e-01 2.20828410e-02\\n-2.61339217e-01 -4.60745931e-01 1.87247515e-01 -7.49568790e-02\\n-1.58283606e-01 1.56375453e-01 2.99991578e-01 7.89559186e-02\\n-1.93863139e-01 -1.25433318e-02 2.76581501e-03 2.26015866e-01\\n9.03900936e-02 2.26390019e-01 -2.52003312e-01 -3.00219715e-01\\n-2.56502569e-01 1.70084387e-01 -1.65290222e-01 1.68460369e-01\\n-1.93015039e-02 2.79036134e-01 2.67824288e-02 5.35682514e-02\\n3.64560634e-01 4.41920618e-03 -1.21809565e-01 -3.01301807e-01\\n-2.14202970e-01 -4.11552042e-01 -7.04973564e-02 7.54717737e-02\\n1.45527303e-01 -4.11020845e-01 -9.77766421e-03 -1.98590174e-01\\n-1.80508822e-01 -3.55517030e-01 7.10508823e-02 -8.82288218e-02]]',\n", + " 'Ava is a digital health company with offices in Zurich, San Francisco, Belgrade and Makati that aims to advance women’s reproductive health by bringing together artificial intelligence and clinical research. Our wearable device, smart app and proprietary predictive algorithms empower women by giving them unique clinically researched insights and personalized data about their menstrual cycle, fertile window, and pregnancy delivered in a way that’s convenient and non-invasive. Ava was voted Best of Baby Tech at CES 2017, named a Women’s Health “Editors’ Choice” product and has been honoured as the best Swiss startup in 2017 and 2018. Our current key markets include USA, Germany, Switzerland and UK. Would you like to join us on our challenging adventure? Responsibilities: Migrate our research-database setup to a scalable, containerized environment Bring our job workflow management to the next level (Apache Airflow based) Assure research data quality with Continuous Integration (CI) tools and automated test scripts Improve and maintain MongoDB ingestion scripts Improve our PySpark-based big data ETL pipelines and update our Parquet data lake Monitor compliance and extract properties of our clinical studies (incl. automated reporting) for our Clinical team Verify the AI algorithms of our Data Science team using production data, automate output documentation meeting regulatory requirements About you: Master’s degree in Computer Science or equivalent Strong knowledge in Python is a must; knowledge of Git, PySpark, Scala, OOAD and CI is a plus 2+ years of relevant working experience with cloud based, virtual computer environments Experience with ETL pipelines for large data sets Experience with Spark, MySQL and/or MongoDB Knowledge of machine learning algorithms and tools is a plus Ability to work independently with a high sense of responsibility Fluency in English Swiss or EU/EFTA work permit Would you like to contribute to a highly motivated team, with a lot of space for your own initiatives? If yes, please apply online or send your complete application to recruiting(at)avawomen.com. We appreciate that you share our excitement for Ava. Please be aware that only complete applications (CV and motivation letter) can be considered. Ava – Revolutionizing women’s health Moritz Ritter, System Architect and Data Engineering Manager Should you not hear back from us within 3 weeks your application has unfortunately not been successful for the respective role.',\n", + " '[\"Research\", \"Team Motivation\"]',\n", + " '[\"Non-Invasive Monitoring\", \"Storage Area Network (SAN)\", \"Automation\", \"Data Quality\", \"MySQL\", \"Tooling\", \"Computer Science\", \"Prediction\", \"Fertilizers\", \"Apache Parquet\", \"Continuous Integration\", \"Apache Airflow\", \"Clinical Study Design\", \"Reproductive Health Care\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Research Quality Framework\", \"Maintainability\", \"MongoDB\", \"Levelling\", \"Test Automation\", \"Containerization\", \"Smart Device\", \"Extract Transform Load (ETL)\", \"Pipelining\", \"Minimum Data Set\", \"Data Science\", \"Virtual Computing\", \"Personalization\", \"Artificial Intelligence\", \"Clinical Research\", \"Digital Health Technologies\", \"Big Data\", \"Scalability\", \"Data Lakes\", \"Test Script\", \"Workflow Management\", \"Algorithms\", \"Scripting\", \"Git Flow\", \"Wearables\", \"Virtual Private Cloud\", \"Regulatory Requirements\"]',\n", + " \"['English', 'Zulu', 'Kwanyama']\"],\n", + " ['49',\n", + " 'software engineer (full time\\xa0and internship)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " '[\"Writing\", \"Planning\"]',\n", + " '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " \"['English', 'Valencian']\"],\n", + " ['4',\n", + " 'product manager telecommunication solutions for railway',\n", + " 'Bern',\n", + " 'Electrical & Electronic Manufacturing',\n", + " 'www.abb.com',\n", + " '[[ 1.20637417e-02 1.04530908e-01 5.41997492e-01 -7.03959763e-02\\n3.77606332e-01 -2.75133789e-01 1.06981851e-01 4.33052331e-01\\n-4.81357006e-03 -4.69263554e-01 -5.66322803e-02 -2.97891736e-01\\n-3.26516777e-02 2.88772523e-01 1.12226166e-01 3.97952586e-01\\n2.97778308e-01 1.86051786e-01 -8.69907159e-03 3.03668976e-01\\n2.17061430e-01 -9.03425068e-02 3.48070413e-01 7.74514139e-01\\n4.93026674e-01 5.26818149e-02 8.62484146e-03 -5.77490814e-02\\n-1.35788456e-01 -1.87131271e-01 4.50369000e-01 -1.06034726e-01\\n-8.34701806e-02 -3.31377298e-01 1.51634201e-01 3.53005975e-02\\n-2.58515984e-01 -2.87172914e-01 -7.87074044e-02 1.50731817e-01\\n-5.65640628e-01 -3.16717207e-01 -4.35833121e-03 7.84003362e-02\\n-2.35842779e-01 -3.06826144e-01 1.36698661e-02 3.47906500e-02\\n1.58165410e-01 1.19445190e-01 -3.76044631e-01 2.64950871e-01\\n-1.94110885e-01 -1.44575909e-01 2.24537149e-01 5.61384201e-01\\n-1.29448965e-01 -3.51935267e-01 -5.68184733e-01 -3.19218695e-01\\n8.97492692e-02 -3.22802886e-02 8.23674873e-02 -3.21200371e-01\\n2.60157794e-01 1.56274155e-01 1.56393833e-02 3.77697498e-01\\n-8.02993715e-01 -8.89490098e-02 -2.52462655e-01 -1.50172174e-01\\n-2.07945198e-01 -1.19556859e-01 -2.08732799e-01 -2.18342245e-01\\n-3.13325822e-01 4.20311660e-01 6.13317080e-02 -7.22463336e-03\\n-1.42755583e-01 3.30254406e-01 -2.55414993e-01 4.09586638e-01\\n1.16967559e-01 2.82531768e-01 8.17025453e-02 1.92756608e-01\\n-2.45023385e-01 6.23656869e-01 2.23595779e-02 -2.49092683e-01\\n1.95977017e-01 1.80111662e-01 4.38535780e-01 -2.94496089e-01\\n2.78921753e-01 -1.44745305e-01 -3.72150004e-01 3.31375986e-01\\n2.71601647e-01 -2.78696448e-01 2.06796989e-01 -1.50745466e-01\\n-3.42011056e-03 5.92783242e-02 4.75832857e-02 2.77765598e-02\\n-1.69230387e-01 3.47854108e-01 1.03055410e-01 -1.10813998e-01\\n-1.44363016e-01 -3.06813508e-01 -1.15453950e-04 4.31471989e-02\\n1.62480786e-01 8.25018063e-02 1.19701877e-01 7.35161379e-02\\n3.22219074e-01 -5.38070314e-02 3.25802676e-02 7.00914204e-01\\n-6.76110312e-02 6.28681201e-03 -2.90540963e-01 1.77802786e-01\\n-5.16548082e-02 -3.03770393e-01 3.44602138e-01 2.18928501e-01\\n-4.75804992e-02 -2.83101857e-01 -2.42892995e-01 4.13913608e-01\\n1.41758069e-01 -2.12063491e-01 -7.12188855e-02 3.15541178e-01\\n-3.56956460e-02 -3.73022437e-01 6.83748245e-01 8.77120793e-02\\n2.30621606e-01 -7.61779472e-02 7.25507438e-02 -2.28766873e-01\\n-3.94716486e-02 7.41756111e-02 -1.63788665e-02 -4.56641242e-02\\n-1.85502902e-01 -1.81490555e-01 -2.00827464e-01 -1.50127634e-01\\n-2.78856009e-01 2.37346187e-01 -6.92261085e-02 -3.30161601e-02\\n1.83151379e-01 -4.93745543e-02 -1.62464142e-01 3.08697701e-01\\n-1.63342953e-01 1.03529200e-01 2.60535162e-02 2.20214888e-01\\n-3.02512556e-01 1.65716514e-01 -8.50942060e-02 -3.04607451e-01\\n5.31976402e-01 1.41594976e-01 1.19924851e-01 5.69658428e-02\\n2.41272628e-01 -9.86604951e-03 -5.07528707e-02 1.83744818e-01\\n-7.71718621e-01 3.40367317e-01 -5.22009609e-03 -2.41360530e-01\\n1.72206342e-01 -7.98429921e-02 1.75815567e-01 -1.53100222e-01\\n7.94674233e-02 1.02845700e-02 -3.47541958e-01 -2.20390260e-01\\n-5.39992340e-02 -6.33636191e-02 2.91735768e-01 -4.32690769e-01\\n-2.58907586e-01 1.08769305e-01 -3.74505043e-01 -1.74315512e-01\\n7.89950863e-02 2.06542909e-01 1.16584592e-01 1.43464163e-01\\n-2.60956466e-01 -2.86858529e-01 4.10406962e-02 -2.81304747e-01\\n-2.47471649e-02 -6.81264400e-02 -2.95031190e-01 8.37587640e-02\\n1.03305541e-01 -1.36721367e-02 -1.35665923e-01 -7.22079277e-02\\n-1.24967471e-01 -6.61391914e-02 -6.62996992e-02 3.54511924e-02\\n2.56564051e-01 8.55225399e-02 -3.39000732e-01 3.11196297e-01\\n2.15848368e-02 5.87178648e-01 3.49040632e-03 -6.83113635e-01\\n2.75064409e-01 3.78711432e-01 3.04539371e-02 -3.97189587e-01\\n5.73257387e-01 -1.76107973e-01 -7.89442286e-02 9.84072536e-02\\n-5.69473982e-01 -3.62565458e-01 2.01712221e-01 -3.31943393e-01\\n-1.76014915e-01 3.60872567e-01 3.88071947e-02 2.84167349e-01\\n1.31272569e-01 -2.23457098e-01 -4.44744416e-02 -1.74188782e-02\\n-3.73584367e-02 -2.61823535e-01 -4.33675110e-01 -2.86675900e-01\\n-1.09437577e-01 -2.16041878e-01 -1.36204049e-01 -5.17246842e-01\\n-1.73684597e-01 -2.93769270e-01 -6.04406036e-02 2.92502437e-03\\n3.44840407e-01 -1.31319746e-01 9.08937231e-02 2.01066248e-02\\n-1.38477236e-01 -5.80683410e-01 -3.49248061e-03 1.26672104e-01\\n4.07024682e-01 1.47496283e-01 1.46019369e-01 1.18244186e-01\\n8.41117352e-02 7.18752801e-01 -9.91024226e-02 -5.62417284e-02\\n3.69504899e-01 1.68276846e-01 1.21933464e-02 -5.22477403e-02\\n1.86051875e-01 2.64784127e-01 -2.92608768e-01 -3.40649262e-02\\n-9.17707607e-02 -4.18334417e-02 4.08430696e-01 4.31185514e-02\\n-2.55027801e-01 -1.01522811e-01 -5.84312454e-02 -1.06350772e-01\\n-4.47192073e-01 -1.12387873e-01 5.42932868e-01 1.36849567e-01\\n1.59695387e-01 2.15205476e-01 6.31608814e-02 1.55276312e-02\\n-1.53850809e-01 -2.28086784e-01 1.65630996e-01 2.06469938e-01\\n1.97051913e-01 1.52211189e-01 8.44699070e-02 -4.91171271e-01\\n-3.24922681e+00 -1.05192088e-01 4.16220799e-02 -2.51443475e-01\\n2.42759407e-01 -7.53026083e-02 6.18629865e-02 8.69166479e-03\\n-2.36286357e-01 1.18899010e-01 -1.42622948e-01 -1.87126100e-01\\n3.62270176e-01 8.71167332e-02 9.13455933e-02 2.47381911e-01\\n2.26664305e-01 -2.91981250e-01 -4.77906242e-02 3.08000505e-01\\n-2.00941503e-01 -5.83744884e-01 1.61258861e-01 -6.11670054e-02\\n4.26810414e-01 2.21096426e-01 -2.80321240e-01 -1.80979162e-01\\n-1.14289276e-01 -1.40954420e-01 1.34328455e-01 -3.51031363e-01\\n-4.28953096e-02 2.38735616e-01 1.64594427e-01 -1.25213608e-01\\n1.72241881e-01 -4.12894547e-01 -1.62600651e-01 -4.01310921e-01\\n1.05158105e-01 -5.30804276e-01 -6.85388893e-02 -7.74902180e-02\\n7.21190393e-01 -3.40107411e-01 9.08381790e-02 9.70560312e-02\\n7.12679699e-02 2.15491742e-01 2.34002754e-01 1.21786863e-01\\n-1.66542843e-01 -4.42403376e-01 -9.53297392e-02 -3.80017683e-02\\n4.03075606e-01 5.73559761e-01 -1.49186835e-01 -1.49504259e-01\\n-1.52103938e-02 -1.75189123e-01 -4.35101002e-01 -1.05653375e-01\\n-9.96549278e-02 -2.84578681e-01 -6.47611976e-01 -3.79191726e-01\\n-5.96822016e-02 -1.79860726e-01 -1.70139894e-01 5.28022230e-01\\n-3.09675843e-01 -2.47751683e-01 -3.66113968e-02 -3.56205106e-01\\n3.59250575e-01 -1.58724543e-02 4.53185812e-02 -2.80510783e-01\\n-1.82969227e-01 -3.73487204e-01 8.24833103e-03 1.21793382e-01\\n4.29723114e-02 -2.67553210e-01 2.14956149e-01 -1.43304929e-01\\n-3.01910192e-01 -4.25022572e-01 2.01106206e-01 1.54849663e-01\\n2.47729301e-01 1.92705140e-01 2.27494448e-01 -1.24231912e-01\\n5.15339300e-02 8.92794207e-02 -4.23987620e-02 -4.11629707e-01\\n7.25501031e-02 4.82792929e-02 3.55020940e-01 -1.44482434e-01\\n1.59333963e-02 -9.57230746e-04 -2.02859744e-01 -1.25090167e-01\\n2.03378543e-01 -1.48408607e-01 1.38086706e-01 -5.53007461e-02\\n2.30350927e-01 -1.96210906e-01 1.43801784e-02 -1.12716213e-01\\n4.75059785e-02 5.29955328e-01 -4.09711190e-02 -2.81539857e-01\\n-1.32010549e-01 4.70757514e-01 -9.18619242e-03 1.48599613e-02\\n-2.41138071e-01 -3.02564930e-02 -2.93640137e-01 2.69204170e-01\\n1.39616048e-02 -2.22523972e-01 -2.19711751e-01 -1.75890520e-01\\n-1.54739216e-01 2.95244038e-01 2.45244563e-01 4.20808159e-02\\n-7.12321177e-02 -5.76436162e-01 -8.87356922e-02 3.30441654e-01\\n1.59044132e-01 5.33089578e-01 4.41548787e-02 -1.46841109e-01\\n4.99455296e-02 3.78452808e-01 -1.77490711e-01 2.07794577e-01\\n-2.24608809e-01 6.03468344e-02 -4.55600291e-01 -2.97244728e-01\\n-3.20152700e-01 -3.79033536e-01 1.18316442e-01 3.21511626e-01\\n2.28212520e-01 1.40500348e-02 1.57625720e-01 -4.29286689e-01\\n1.59904629e-01 4.84413095e-03 1.40730098e-01 1.68335587e-01\\n4.15217951e-02 5.22120357e-01 7.28294998e-02 -2.09171578e-01\\n-4.81664650e-02 -7.42790699e-02 -1.50346443e-01 1.29429298e-02\\n1.43211782e-02 -5.36312640e-01 -2.05188945e-01 5.13587892e-01\\n5.48239388e-02 -4.12306279e-01 -4.57025692e-02 3.00991327e-01\\n-3.05303093e-02 -2.81285912e-01 -3.43967110e-01 1.49697512e-01\\n3.23513180e-01 2.58093961e-02 3.82912040e-01 -4.92632926e-01\\n2.67039798e-02 2.49268878e-02 -3.34413834e-02 3.75529289e-01\\n1.23747149e-02 -1.65938698e-02 -3.17631990e-01 -3.43932927e-01\\n3.52395415e-01 -3.98980081e-01 -1.61424860e-01 1.31906018e-01\\n-7.88491592e-02 -6.13126792e-02 -4.86159801e-01 7.47512355e-02\\n2.60413885e-02 -2.34056160e-01 -5.62532172e-02 1.93105727e-01\\n7.56027848e-02 1.05567373e-01 -5.76035082e-01 -2.38476843e-01\\n-1.36504367e-01 1.47651047e-01 1.44452631e-01 -5.29183626e-01\\n-7.06447214e-02 -7.59080574e-02 -5.03308833e-01 1.32147938e-01\\n-1.02569789e-01 -1.48871452e-01 2.59736717e-01 -1.35522813e-01\\n-2.47408792e-01 8.40934291e-02 6.10351982e-03 3.73698533e-01\\n-2.19539002e-01 -3.22783202e-01 -1.18313357e-01 -9.42267835e-01\\n1.21717349e-01 6.42130151e-02 -6.97043911e-02 2.29964867e-01\\n-1.78496331e-01 -6.49172604e-01 7.65876547e-02 -2.24557817e-01\\n-8.78086984e-02 -2.14321151e-01 -1.42622426e-01 -5.55448532e-01\\n3.28021534e-02 1.98511872e-02 -2.34414130e-01 4.41654533e-01\\n-1.84941068e-01 2.35381410e-01 -2.50004679e-01 1.78327505e-02\\n-9.64755118e-02 -3.68573874e-01 2.96292454e-01 -5.15390098e-01\\n-3.40831012e-01 -8.57336298e-02 -3.94007057e-01 -2.84325033e-01\\n-2.03229353e-01 -2.54408509e-01 2.17892304e-02 1.50545821e-01\\n2.67466962e-01 -1.98024954e-03 -2.56908625e-01 -3.04600924e-01\\n9.18384716e-02 -5.59077978e-01 8.62991735e-02 2.18834989e-02\\n-1.55442551e-01 -1.62678957e-01 1.59434900e-01 1.40181690e-01\\n2.21395761e-01 -5.11888385e-01 1.19753234e-01 -5.56259215e-01\\n-3.27312917e-01 6.73308522e-02 2.12632380e-02 -9.15691815e-03\\n3.13814491e-01 -3.90381664e-01 -7.37315416e-02 2.45481551e-01\\n1.26049280e-01 -6.79802103e-03 2.32123345e-01 -3.27883102e-02\\n-8.34382400e-02 2.56452709e-01 -1.92149892e-01 1.45134643e-01\\n7.85362899e-01 3.11112795e-02 1.45902351e-01 2.60339618e-01\\n9.61212441e-02 1.93606794e-01 2.97063053e-01 -4.40052338e-02\\n-1.51425257e-01 2.47617498e-01 1.63456187e-01 -4.25430864e-01\\n2.26202048e-02 4.83532762e-03 -1.06218241e-01 -3.56123477e-01\\n5.37034214e-01 5.16898572e-01 -3.76714528e-01 -9.76618081e-02\\n-2.12797254e-01 -1.73298866e-01 -7.98889324e-02 -9.09035653e-02\\n7.38567933e-02 -7.70612434e-02 4.53314155e-01 -7.57748932e-02\\n2.78370351e-01 4.87555176e-01 -1.21254556e-01 -2.58943021e-01\\n-1.11946858e-01 2.73415923e-01 -1.26755387e-01 3.45644653e-01\\n-1.70314267e-01 4.66293126e-01 -2.30911337e-02 4.86962311e-02\\n7.23836524e-03 1.63465977e-01 -1.72301810e-02 1.74216658e-01\\n3.61930914e-02 2.83308148e-01 4.84611928e-01 2.77550340e-01\\n3.47153068e-01 2.61251539e-01 2.47646406e-01 2.02051669e-01\\n4.60336208e-01 3.86912525e-01 3.05868298e-01 2.03603402e-01\\n-1.04931623e-01 -1.16155215e-01 1.49532989e-01 2.86836978e-02\\n2.66198158e-01 3.06723148e-01 1.03216775e-01 8.22957218e-01\\n2.46286646e-01 4.09825444e-01 7.58571804e-01 -5.39964020e-01\\n-3.13702047e-01 -1.69411704e-01 2.76082128e-01 -3.62670153e-01\\n1.16410796e-02 1.02984361e-01 8.22336823e-02 1.65233433e-01\\n-3.98915112e-01 -2.49068201e-01 -6.66510537e-02 3.82781416e-01\\n-1.19059654e-02 -3.16136837e-01 -9.93572474e-02 1.60959080e-01\\n-1.16541848e-01 -1.08129159e-01 -5.49739718e-01 -1.83353927e-02\\n-4.58061136e-02 -2.93445766e-01 -1.58600420e-01 -1.19818047e-01\\n-6.52226657e-02 -3.09250474e-01 7.85042811e-03 -4.88632284e-02\\n1.77532658e-01 2.96498332e-02 9.01391916e-03 -1.22977540e-01\\n4.42657411e-01 1.33277804e-01 4.46145117e-01 8.52000725e-04\\n1.48613408e-01 -2.40267530e-01 -1.91916123e-01 1.01646833e-01\\n3.69561076e-01 3.35974507e-02 3.02356784e-03 1.95708945e-01\\n-1.41891494e-01 -1.28311127e-01 9.03525501e-02 1.70135736e-01\\n-4.16988254e-01 7.21764714e-02 -5.71287833e-02 9.79626477e-02\\n1.00834802e-01 8.27128515e-02 -1.09634943e-01 -3.66577879e-02\\n-1.38473675e-01 -4.15954381e-01 8.72198865e-02 -9.24989954e-02\\n-2.07887620e-01 3.25677395e-02 2.51713097e-01 2.63861120e-01\\n-2.10357830e-01 1.66369423e-01 -4.88453247e-02 3.20026018e-02\\n1.08222596e-01 1.68567911e-01 -2.73615718e-01 -3.60296547e-01\\n-3.02607894e-01 2.79292800e-02 -2.43913129e-01 2.13522632e-02\\n8.32923502e-02 4.05876607e-01 8.56303275e-02 2.30084285e-02\\n4.01831567e-01 -2.45560244e-01 -1.43134743e-01 -1.73409119e-01\\n-1.87110707e-01 -1.18202612e-01 -1.30363002e-01 -2.10888144e-02\\n1.41395465e-01 -2.88954794e-01 -1.87994316e-02 -2.29077637e-01\\n1.56642194e-03 -1.95236549e-01 1.70705155e-01 -2.69026339e-01]]',\n", + " 'Our competence center in Switzerland is globally responsible for the development of sophisticated telecommunication solutions for mission critical applications. It is part of ABB’s development network with further sites, amongst others, in US, India, and Sweden. We currently have an opening for a Product Manager responsible for Telecommunication Solutions targeted at Railway. In this role, you will oversee the full range of activities generally associated with product management in a highly technical field. Do you have a strong academic background in telecommunications or ITC, complemented by hands-on experience in this field? Are you a proactive professional with the determination and expertise needed to drive our business forward? Let’s write the future. Together.Your responsibilitiesYour backgroundMore about usIt is an exciting time to join ABB Power Grids. ABB and Hitachi have signed an agreement to create a joint venture (JV). By combining ABB Power Grids’ with Hitachi’s complementary strengths, we plan to form a new and stronger global leader in the power sector. ABB Power Grids and Hitachi will have more than 230 years of combined heritage and experience. Together, we will be well-positioned to shape the future of energy, with pioneering technologies, as the partner of choice for enabling a stronger, smarter and greener grid. The transaction is expected to be completed by the first half of 2020, subject to regulatory approvals. Join us on this exciting journey. Bring your very own sense of pride and purpose as you help us drive forward the Fourth Industrial Revolution – creating a sustainable future for our planet, and your career. Join ABB and harness the power of our diverse global network, as you collaborate with and learn from our world-class teams. Above all, challenge yourself every day. Let’s write the future, together. Interested in joining our team? If so, we look forward to receiving your full application (motivation letter, CV, references) only via our online careers tool. A better world begins with you at www.abb.com/careers ABB Switzerland Ltd. Tamara Hofmann Talent Partner Phone: +41 79 627 53 03 www.facebook.com/ABBCareer www.xing.com/companies/abbschweizag www.linkedin.com/company/abb www.instagram.com/abbcareer',\n", + " '[\"Collaboration\", \"Proactivity\", \"Writing\", \"Planning\"]',\n", + " '[\"Production Management\", \"Tooling\", \"TARGET 3001!\", \"Activism\", \"Library For WWW In Perl\", \"Centering\", \"Component Object Model (COM)\", \"Sustainability\", \"Product Management\", \"Develop Networks\", \"Telecommunications\", \"Joint Ventures\", \"Receivables\", \"Industrialization\"]',\n", + " \"['English', 'Galician', 'Azerbaijani']\"],\n", + " ['49',\n", + " 'software engineer (full time\\xa0and internship)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[ 2.70995289e-01 1.54261723e-01 4.81505841e-01 3.79903391e-02\\n4.55764771e-01 -4.02951419e-01 1.70122653e-01 3.39460611e-01\\n2.01764315e-01 -3.46308976e-01 6.77916482e-02 -1.40374705e-01\\n-1.20104678e-01 -8.68354514e-02 -1.96930729e-02 2.35235572e-01\\n2.26132035e-01 -1.16104046e-02 5.89579064e-03 2.93967962e-01\\n4.99906912e-02 -1.06877416e-01 2.36763552e-01 5.25393128e-01\\n3.78643423e-01 3.06039918e-02 3.54153067e-02 1.29395515e-01\\n-3.73154163e-01 -2.04567149e-01 3.08267772e-01 -5.17313965e-02\\n2.84701567e-02 -3.36257190e-01 1.76975802e-01 2.12165620e-02\\n-1.87542245e-01 1.09778382e-01 -7.52042979e-02 3.16499323e-01\\n-4.02576268e-01 -2.13812724e-01 2.87724167e-01 1.09769262e-01\\n-4.00114387e-01 -3.54770631e-01 3.55191864e-02 -5.84057719e-02\\n4.27223921e-01 -7.04916660e-03 -9.04557928e-02 2.91767031e-01\\n-2.99022615e-01 -2.51286387e-01 3.94456565e-01 6.07895315e-01\\n-2.10214723e-02 -6.62614584e-01 -2.91329145e-01 -2.34834343e-01\\n1.42791212e-01 -1.81679592e-01 -1.32574774e-02 -2.58123785e-01\\n2.42723718e-01 -3.88724320e-02 2.39565666e-03 3.03681523e-01\\n-6.00101113e-01 2.82035526e-02 -1.60416424e-01 -4.33150753e-02\\n-2.60515541e-01 -3.55213359e-02 -3.67853075e-01 -9.39479917e-02\\n-1.99226569e-02 4.98643219e-01 1.65455356e-01 2.96782739e-02\\n-2.78114360e-02 2.81451911e-01 -2.79204398e-01 4.03579742e-01\\n2.98365474e-01 1.60965666e-01 1.25882640e-01 3.83263677e-01\\n-3.39879870e-01 5.20291328e-01 2.20865443e-01 -3.10415328e-01\\n1.58476844e-01 6.23856448e-02 4.22523618e-01 2.54780091e-02\\n-6.71793595e-02 2.21819177e-01 -1.87965140e-01 3.29548806e-01\\n3.06464970e-01 -2.46912554e-01 -3.33172306e-02 8.03725347e-02\\n-1.85142169e-04 -5.16114272e-02 1.02424860e-01 4.25271481e-01\\n-1.32473975e-01 4.80156422e-01 2.84201831e-01 -2.67238855e-01\\n-8.40529576e-02 -3.81719559e-01 -2.96321929e-01 7.06103817e-02\\n-1.12039655e-01 1.31330445e-01 3.12990755e-01 1.16988316e-01\\n1.51952595e-01 1.36117443e-01 1.59714445e-01 9.88385260e-01\\n-2.19912454e-02 3.26926485e-02 -3.18387598e-01 3.84236962e-01\\n1.63760096e-01 -2.66181916e-01 1.70449302e-01 3.41762453e-01\\n5.74023649e-02 -2.21103922e-01 -4.54888083e-02 1.90026909e-01\\n-2.35884171e-02 -2.21895158e-01 -3.03073198e-01 1.67617768e-01\\n-3.46467167e-01 -2.80610770e-01 4.25895661e-01 1.97496220e-01\\n1.68516077e-02 1.18304767e-01 -9.15730670e-02 -6.48809448e-02\\n-3.30868274e-01 1.79731458e-01 4.02798457e-03 -5.73119987e-03\\n-4.24125046e-01 -2.84918755e-01 -3.89175683e-01 1.34187788e-01\\n-2.36874223e-01 3.10622621e-02 -1.53473511e-01 2.22113300e-02\\n3.89965475e-01 7.16599151e-02 -2.58357018e-01 2.24234447e-01\\n-7.58982971e-02 3.36781777e-02 -1.87259950e-02 2.37823799e-01\\n-1.31532520e-01 2.59663492e-01 -1.39736533e-02 -3.38911638e-02\\n5.24160683e-01 1.18194602e-01 -2.31693918e-03 -2.69433051e-01\\n4.38393533e-01 -1.10993810e-01 8.50305036e-02 9.63544473e-02\\n-6.70151174e-01 3.35653722e-01 -6.38127103e-02 2.40700439e-01\\n4.55066077e-02 -1.24434449e-01 1.91398486e-01 -2.39607781e-01\\n-8.87070447e-02 -2.36829460e-01 -3.25675696e-01 -2.87106574e-01\\n-1.36821330e-01 -1.29688382e-01 3.27435344e-01 -3.67227077e-01\\n-9.53183174e-02 2.55697846e-01 -4.77757365e-01 1.05955347e-01\\n3.42267364e-01 1.10680014e-01 1.53849110e-01 1.76573604e-01\\n-2.06544131e-01 -4.16973501e-01 2.01610625e-01 -2.68361062e-01\\n-4.25122440e-01 7.97519386e-02 -1.28521964e-01 2.42816195e-01\\n4.40310240e-02 6.13780916e-02 -7.93099403e-02 1.39963791e-01\\n-3.15388888e-01 -1.29036054e-01 1.88993096e-01 2.50657294e-02\\n1.55438066e-01 -5.05807027e-02 -3.85510296e-01 2.53465295e-01\\n-1.79205686e-01 3.89994860e-01 1.11211754e-01 -9.51594234e-01\\n3.36863369e-01 2.50827342e-01 -1.34239584e-01 -3.96985710e-01\\n4.72548395e-01 -2.96855062e-01 2.68051960e-02 1.66763067e-01\\n-1.86136097e-01 -2.00267777e-01 3.00200701e-01 6.78024665e-02\\n-2.55168319e-01 4.60086703e-01 6.80385008e-02 1.03970058e-01\\n2.28482276e-01 -1.89904094e-01 -1.46697666e-02 8.78820196e-02\\n1.65786706e-02 -1.60939902e-01 -3.87548923e-01 -1.58749685e-01\\n1.29290726e-02 -5.72533846e-01 -6.94091022e-02 -4.45174187e-01\\n-2.73590416e-01 -3.87504160e-01 -1.34943113e-01 1.27227500e-01\\n3.13517928e-01 2.06887707e-01 2.99940147e-02 -2.29141805e-02\\n-1.45074904e-01 -5.30334115e-01 -1.92138895e-01 1.21251866e-01\\n4.12530482e-01 3.33714902e-01 1.50818275e-02 2.31200289e-02\\n1.35598436e-01 6.00015879e-01 -1.12368852e-01 -7.30197579e-02\\n9.90470871e-02 2.74292737e-01 3.37006198e-03 -1.75022081e-01\\n3.28375548e-02 3.64190310e-01 -2.46791974e-01 5.32798693e-02\\n-3.43655646e-02 -1.22954711e-01 3.44372630e-01 2.01349363e-01\\n-4.36613381e-01 -4.08046663e-01 -8.94626975e-02 1.41228825e-01\\n-5.66970110e-01 6.64155856e-02 6.28091097e-01 5.67234047e-02\\n1.00812711e-01 4.73801531e-02 3.46654087e-01 -2.08630949e-01\\n-2.13581756e-01 1.29106259e-02 1.28795952e-01 9.36468840e-02\\n2.90605221e-02 -2.11379863e-02 -1.96691662e-01 -6.81387544e-01\\n-3.89314485e+00 -2.94405334e-02 1.83906481e-01 -3.24007034e-01\\n1.21101715e-01 -1.37394115e-01 -1.99646293e-03 -1.17036678e-01\\n-3.04588526e-01 -1.97548587e-02 -2.08908081e-01 4.93227132e-02\\n2.03463256e-01 2.16461793e-01 1.65633023e-01 3.37487102e-01\\n1.45251751e-01 -2.42476955e-01 -1.50916949e-01 2.96954811e-01\\n-9.41639468e-02 -5.79885960e-01 1.78878814e-01 -2.45966599e-03\\n4.37844157e-01 9.16796476e-02 -4.58130032e-01 -6.73080087e-02\\n-2.78458029e-01 -3.23518999e-02 1.73612330e-02 -2.75507718e-02\\n-9.55849960e-02 2.98225284e-01 9.89269912e-02 -8.98552686e-02\\n2.51206040e-01 -3.28971744e-01 8.13840777e-02 -1.22350171e-01\\n5.57764841e-04 -5.74759424e-01 -2.39444952e-02 -1.79104537e-01\\n6.04119003e-01 -4.85574424e-01 -2.78731789e-02 6.26590699e-02\\n3.19973886e-01 5.62150846e-04 -4.47755754e-02 -4.47368659e-02\\n-3.16134542e-01 -6.23091608e-02 -2.26534531e-01 -2.37402007e-01\\n4.94402617e-01 6.17130280e-01 -2.31815934e-01 -1.21508919e-01\\n-1.59491062e-01 -4.70792234e-01 -4.31427717e-01 -1.81575507e-01\\n-6.13989420e-02 -1.24973804e-01 -5.37883937e-01 -5.28860927e-01\\n-2.06957161e-01 1.60246179e-01 -9.92980674e-02 5.29013932e-01\\n-2.71416008e-01 -6.24682188e-01 -3.26209515e-02 -2.64109045e-01\\n-9.43642259e-02 -9.30867717e-02 5.77414893e-02 -1.49574235e-01\\n-1.58937171e-01 -4.66538578e-01 1.25102729e-01 -9.77510288e-02\\n-1.98964536e-01 -2.75265694e-01 1.31740481e-01 -4.65032607e-02\\n-1.83187336e-01 -2.83287704e-01 4.31621224e-01 1.42907843e-01\\n3.20274442e-01 1.51654169e-01 3.08949322e-01 1.76883489e-01\\n3.22747290e-01 -2.53254861e-01 1.65246397e-01 -3.06412250e-01\\n1.98532134e-01 1.21858045e-02 6.32350743e-01 -3.50753069e-01\\n-1.77196693e-02 1.79460436e-01 -1.80345476e-01 -1.05817594e-01\\n3.76300246e-01 3.64577249e-02 1.83186599e-03 -3.27303767e-01\\n4.18920159e-01 -1.61922440e-01 -3.27494591e-01 -9.10640284e-02\\n1.81130603e-01 5.67149639e-01 5.04860990e-02 -4.31819737e-01\\n-1.40642822e-01 2.84569263e-01 -2.75958091e-01 -2.47513697e-01\\n-2.54167497e-01 1.17749207e-01 -2.45144278e-01 3.59273553e-01\\n5.84140755e-02 -1.41188368e-01 -4.18985844e-01 -8.17958117e-02\\n8.51093903e-02 3.24719399e-01 2.18490325e-02 6.83906376e-02\\n-3.46288346e-02 -2.66761869e-01 6.54843524e-02 6.54128194e-02\\n1.14056930e-01 2.13525400e-01 2.11336359e-01 -2.95573235e-01\\n8.10414460e-03 4.05508637e-01 -1.07015334e-01 1.42332003e-01\\n-1.64611101e-01 1.54004514e-01 -4.38259095e-01 -2.13150159e-01\\n-2.14200646e-01 -3.34808439e-01 -5.33150285e-02 2.79862702e-01\\n2.16832876e-01 -5.18524610e-02 -1.95751488e-02 -5.16010344e-01\\n3.71374518e-01 3.48561071e-02 1.34120405e-01 3.40725929e-01\\n1.64399639e-01 4.51050729e-01 1.76237136e-01 -3.52175802e-01\\n-2.09442601e-01 1.17968284e-01 -1.70373008e-01 -1.69191241e-01\\n-1.28827646e-01 -3.30905467e-01 -2.80629732e-02 3.59625667e-01\\n6.19331039e-02 -2.41448298e-01 -2.23989680e-01 1.96092159e-01\\n8.75700638e-02 -3.22454959e-01 -1.09778784e-01 -9.97023378e-03\\n3.65860343e-01 -9.48456973e-02 1.94330648e-01 -5.14151394e-01\\n1.44388592e-02 -5.31517379e-02 -1.31977379e-01 5.86180210e-01\\n1.89506918e-01 -6.31696209e-02 -2.33267471e-01 -1.94248199e-01\\n3.78226489e-01 2.36843735e-01 -2.75337286e-02 -1.63572859e-02\\n2.07426116e-01 -1.61046326e-01 -5.64630866e-01 6.86895624e-02\\n-2.45050751e-02 4.50268015e-02 1.38121009e-01 3.91773991e-02\\n1.77769542e-01 3.04547921e-02 -5.44837236e-01 -4.08886671e-01\\n-1.01049237e-01 -1.17360405e-03 3.31747974e-03 -3.84809136e-01\\n-9.10759196e-02 5.79216965e-02 -5.74546993e-01 2.68695176e-01\\n-2.43698359e-01 1.60090148e-01 3.20562683e-02 7.70230517e-02\\n-3.39993745e-01 -4.32410464e-02 3.74386944e-02 2.20862299e-01\\n-3.14878911e-01 -2.42944211e-01 -7.25176707e-02 -8.96695912e-01\\n1.31706148e-01 -1.83854625e-01 -2.98864573e-01 1.73413292e-01\\n3.70719619e-02 -5.81531107e-01 3.29754591e-01 -5.47585011e-01\\n-8.73698890e-02 8.79549459e-02 -1.47757024e-01 -4.21169370e-01\\n4.58442122e-02 -3.24865468e-02 -4.60644007e-01 3.41809988e-01\\n-4.06195015e-01 3.64545882e-01 -3.59600666e-03 1.14396557e-01\\n4.09756117e-02 -3.62793416e-01 1.47191331e-01 -5.33990324e-01\\n-3.21971923e-01 -1.05269924e-01 -3.87072414e-01 -2.00852051e-01\\n8.30913335e-02 -1.79767549e-01 -2.42855594e-01 6.98448718e-02\\n1.84113190e-01 1.24430597e-01 -3.67532112e-02 -1.74592614e-01\\n-3.20180319e-02 -4.23956990e-01 8.02995786e-02 -9.55684558e-02\\n1.49695382e-01 -3.77418697e-02 1.59744218e-01 -3.63910384e-02\\n-6.52448386e-02 -2.36505419e-01 5.40851355e-01 -3.06929797e-02\\n-2.27492511e-01 -2.06810180e-02 1.84983104e-01 -6.83847815e-02\\n2.46246696e-01 -2.81026483e-01 4.17331196e-02 3.18281323e-01\\n1.08916745e-01 2.01318204e-01 2.37022057e-01 -1.11873120e-01\\n-6.04355596e-02 -1.12899719e-02 -3.45112979e-01 1.42342411e-02\\n6.68726504e-01 -6.78169951e-02 3.27157080e-01 6.98799118e-02\\n-1.17303729e-01 2.59761512e-01 5.91798425e-01 1.79110412e-02\\n-2.19107047e-01 2.71614045e-01 7.03173205e-02 -4.37506527e-01\\n-6.74886480e-02 -6.87391683e-02 -3.52864206e-01 -3.15753639e-01\\n5.15496314e-01 6.03303730e-01 -2.16339067e-01 -3.57847214e-01\\n-9.03586373e-02 -1.34362489e-01 -1.17826656e-01 8.07659049e-03\\n8.94331113e-02 -2.58690953e-01 5.97865462e-01 -3.19372937e-02\\n1.46229744e-01 4.15098190e-01 -2.27957323e-01 -3.95542890e-01\\n2.09857244e-02 6.65227175e-02 5.95862381e-02 2.68936694e-01\\n-2.50408798e-01 3.17585856e-01 5.01637347e-02 7.07866773e-02\\n-1.00089125e-01 -9.00513493e-03 4.81793806e-02 6.26714975e-02\\n1.49822608e-01 2.40925755e-02 4.63887364e-01 5.60656726e-01\\n3.08342099e-01 4.23398912e-01 1.98347777e-01 2.08470020e-02\\n6.15344048e-01 5.25460303e-01 3.89548808e-01 2.36191034e-01\\n-5.07961698e-02 -4.62984033e-02 1.71540901e-01 -7.42043108e-02\\n3.81853133e-01 2.92070001e-01 2.70625859e-01 7.76618779e-01\\n2.72667557e-01 8.43204707e-02 7.49814630e-01 -5.84359050e-01\\n-2.71158695e-01 -1.03714820e-02 4.95857924e-01 -3.21130991e-01\\n-2.02408314e-01 -9.37950537e-02 -2.19690442e-01 2.82173026e-02\\n-4.19708848e-01 -2.99297631e-01 -8.12869444e-02 8.71018097e-02\\n-1.64938211e-01 -6.45377785e-02 -1.51166916e-01 3.54251415e-02\\n-1.53661221e-01 -5.07593602e-02 -4.37110484e-01 2.31092796e-02\\n-1.98428974e-01 -4.37288173e-02 -1.59861922e-01 -2.51201272e-01\\n-8.07824507e-02 -4.43728507e-01 -1.90200150e-01 5.45189790e-02\\n1.85984775e-01 -2.03216121e-01 -1.10197403e-01 -2.89749622e-01\\n9.28984582e-02 8.31180736e-02 6.12220526e-01 2.60614932e-01\\n1.65905818e-01 -2.15422675e-01 -2.96252072e-01 1.92544654e-01\\n1.33825153e-01 9.00654495e-02 -4.79026558e-03 4.74500597e-01\\n-3.50368112e-01 5.16961329e-02 4.07494344e-02 4.53247130e-01\\n-5.02949834e-01 9.88522246e-02 -1.11899525e-01 2.18870118e-01\\n7.81129897e-02 1.37084410e-01 -1.31256506e-01 -1.54957185e-02\\n-3.45758438e-01 -4.03505594e-01 2.87558377e-01 -2.83468902e-01\\n-2.27639657e-02 7.62250796e-02 -6.04923032e-02 1.61633015e-01\\n-2.68538713e-01 -1.10627338e-01 -4.66350354e-02 2.77732283e-01\\n8.65499210e-03 1.43978268e-01 -2.44274423e-01 -2.62366235e-01\\n-1.71552971e-01 2.46689647e-01 -6.76495358e-02 8.66577476e-02\\n-1.25406727e-01 3.32912803e-01 1.30253986e-01 -1.13430684e-02\\n5.95739961e-01 -9.60228816e-02 -1.01792358e-01 -2.21876234e-01\\n-1.82897329e-01 -2.78068036e-01 -1.06334381e-01 1.03096487e-02\\n9.12798196e-02 -3.42864245e-01 -3.14438785e-03 3.43024842e-02\\n-2.19103932e-01 -4.65167135e-01 -1.08838819e-01 -1.57338381e-01]]',\n", + " 'WHAT YOU DO Extend the function of existing software / coding for cool new features Test and optimize the software running on embedded Linux / make our software fast and stable Navigating a commercial drone via our sensor and have fun REQUIREMENT Proven experience as a software engineer (a must to have for the full time job) Very good C/C++ coding skills Skilled git master, code reviewing, unit_testing, familiar with git pipeline Fluent speaking and writing in English Knowledge of software protection is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones Good Salary & potentially participation in stock option plan (for the full time job)',\n", + " '[\"Writing\", \"Planning\"]',\n", + " '[\"Commercialization\", \"C++ (Programming Language)\", \"Incentive Stock Option\", \"Linux\", \"Software Protection\", \"Centering\", \"Git (Version Control System)\", \"Software Coding\", \"Code Review\", \"Pipelining\", \"Software Engineering\"]',\n", + " \"['English', 'Northern Sami', 'Faroese', 'Dzongkha']\"],\n", + " ['33',\n", + " 'data scientist',\n", + " 'Zug',\n", + " '',\n", + " '',\n", + " '[[-2.31740057e-01 3.83841336e-01 3.88520598e-01 9.01493505e-02\\n5.69051147e-01 -1.93774179e-02 -2.77277566e-02 2.40062594e-01\\n-4.14609239e-02 -4.04899120e-01 -2.18678340e-02 -2.36729100e-01\\n-1.66668862e-01 6.04390837e-02 1.64613537e-02 5.51508069e-01\\n3.32936347e-01 5.15374467e-02 -2.02081770e-01 3.61722797e-01\\n9.06946361e-02 -3.83038223e-02 2.49012243e-02 7.63345063e-01\\n4.38887268e-01 -3.51420715e-02 -5.33361807e-02 1.00199413e-03\\n-2.80133277e-01 -2.08985955e-01 4.39990759e-01 1.29641846e-01\\n-2.73225248e-01 -4.00861859e-01 9.45106298e-02 1.52791634e-01\\n-2.50621766e-01 -2.28036661e-02 -2.08364248e-01 1.75855845e-01\\n-5.07405043e-01 -2.03366786e-01 -7.35197738e-02 7.94046149e-02\\n-3.03650200e-01 -3.94854307e-01 -2.21507102e-02 -5.55398501e-02\\n1.15888432e-01 3.05125490e-02 -5.59681118e-01 3.50520581e-01\\n-1.76704362e-01 -2.44299009e-01 2.27083594e-01 7.45348096e-01\\n8.34212750e-02 -4.51346964e-01 -4.85138565e-01 -4.18850064e-01\\n1.17367849e-01 -1.54844224e-01 1.03915006e-01 -3.65918159e-01\\n4.18708563e-01 1.01348534e-01 5.05817533e-02 2.65770346e-01\\n-8.55449736e-01 -2.46132724e-02 -3.17971170e-01 2.37632077e-02\\n-4.97129142e-01 3.79517190e-02 -4.37287927e-01 -1.09617189e-01\\n-1.00556105e-01 4.63086665e-01 -6.14950210e-02 9.64840204e-02\\n-1.73730582e-01 2.39185005e-01 -2.51612335e-01 3.06809723e-01\\n2.48223647e-01 2.61347115e-01 2.91969061e-01 4.45615858e-01\\n-4.16389406e-01 3.65432173e-01 2.05436409e-01 -3.54369938e-01\\n2.15434626e-01 2.35249579e-01 4.94396478e-01 6.69587925e-02\\n1.83538184e-01 2.34684736e-01 -2.76177645e-01 3.39943111e-01\\n2.44177744e-01 -4.14680243e-01 1.68793008e-01 -1.88867778e-01\\n1.44586749e-02 -1.10206537e-01 2.19486952e-02 1.74954996e-01\\n-4.32953596e-01 4.41440463e-01 4.09918353e-02 -1.13139942e-01\\n-4.88673635e-02 -5.62840462e-01 -6.39704689e-02 -6.94458336e-02\\n7.11462796e-02 2.71225691e-01 1.75913066e-01 3.06327701e-01\\n2.88895637e-01 5.90953119e-02 7.91008621e-02 8.39932561e-01\\n-1.03409149e-01 1.35052383e-01 -1.94681168e-01 3.25212061e-01\\n1.58969373e-01 -2.28346497e-01 2.85536349e-01 2.51807868e-01\\n-4.75126132e-03 -6.89975172e-02 -3.87135148e-01 3.92735720e-01\\n-1.09154150e-01 -2.02860519e-01 -3.17302704e-01 2.48794705e-01\\n-3.27155665e-02 -5.70753574e-01 7.09521174e-01 9.83092263e-02\\n3.19231391e-01 -1.45652682e-01 3.66225950e-02 -1.58439219e-01\\n3.59526686e-02 2.60414362e-01 1.21398672e-01 2.98087001e-01\\n-3.98428559e-01 -1.85543895e-01 -2.08916396e-01 2.59612560e-01\\n-5.04691958e-01 4.33955491e-02 -7.75510073e-02 -8.38255733e-02\\n2.13408887e-01 -3.34959030e-02 -4.22375381e-01 1.88244224e-01\\n-3.89659554e-02 -2.26890683e-01 -1.71860307e-03 4.64120835e-01\\n-2.13334382e-01 2.71520644e-01 -9.20140147e-02 -1.87728658e-01\\n5.75513184e-01 1.28313020e-01 2.23351657e-01 -2.21981462e-02\\n2.77257472e-01 -1.26711369e-01 2.42333099e-01 1.98325634e-01\\n-7.21801400e-01 4.08539712e-01 -8.42515826e-02 -2.48578310e-01\\n8.67656469e-02 -3.30949649e-02 4.35776293e-01 -3.65696311e-01\\n7.69434050e-02 -1.26358762e-01 -3.74889374e-01 -3.45868498e-01\\n-2.87337482e-01 -9.53129902e-02 4.54728365e-01 -4.01665747e-01\\n-7.37496465e-02 2.22432196e-01 -6.70592666e-01 -1.25838846e-01\\n1.39537692e-01 9.72934961e-02 8.60579163e-02 1.22892968e-01\\n-5.85930608e-02 -6.78515196e-01 1.05114013e-01 -4.36183721e-01\\n-3.81090879e-01 1.56023100e-01 -4.03586119e-01 2.07151979e-01\\n1.33078005e-02 -7.03775585e-02 -6.15660138e-02 1.22343652e-01\\n-2.85750359e-01 -2.21778452e-03 1.57190084e-01 4.51003835e-02\\n3.46002728e-01 5.60103953e-02 -4.71218884e-01 5.46639323e-01\\n-1.19051434e-01 6.36803210e-01 2.30810136e-01 -8.39639783e-01\\n6.34929240e-01 1.95981205e-01 7.80294165e-02 -1.89514503e-01\\n6.17358446e-01 -3.01617891e-01 -7.07156807e-02 1.16357163e-01\\n-2.70227969e-01 -3.61416936e-01 1.72733337e-01 -1.94548905e-01\\n-2.72200316e-01 6.25884771e-01 1.30851716e-01 1.54313803e-01\\n2.87665069e-01 -3.04246664e-01 -1.72243431e-01 7.02511445e-02\\n-2.19982117e-01 -2.74131566e-01 -5.83741665e-01 7.20882714e-02\\n-2.30339682e-03 -4.91143167e-01 -1.91088706e-01 -2.82923549e-01\\n-2.79657722e-01 -3.46457571e-01 -2.06610471e-01 2.74395913e-01\\n1.24765113e-01 1.16337195e-01 -7.94815570e-02 -4.48845066e-02\\n-1.16667021e-02 -6.96168661e-01 -1.03367932e-01 1.76476650e-02\\n4.42073107e-01 2.53788561e-01 1.61528051e-01 -1.79200247e-01\\n4.49122488e-02 6.66335642e-01 -3.14476460e-01 -4.58028615e-01\\n1.20803028e-01 1.22861058e-01 -7.46879652e-02 -1.46713972e-01\\n1.42579466e-01 3.72613966e-01 -3.06335330e-01 1.23784855e-01\\n-9.62001681e-02 -4.58716080e-02 3.08141530e-01 -3.78519893e-02\\n-1.56402558e-01 -2.04824358e-01 -1.22278884e-01 2.53921300e-01\\n-5.88541746e-01 -3.46766382e-01 5.70901752e-01 2.06923917e-01\\n1.56762570e-01 -9.77717713e-03 1.48696989e-01 -4.92234230e-02\\n-2.72716403e-01 -4.07749116e-01 2.74351388e-01 1.72845423e-01\\n1.27879485e-01 1.60656318e-01 -4.53833118e-03 -5.51198661e-01\\n-3.01176786e+00 -2.80737102e-01 2.27825433e-01 -1.95393682e-01\\n2.50179589e-01 -1.31430417e-01 4.66487706e-02 -3.51273566e-02\\n-4.06557918e-01 5.05290627e-02 -2.45324671e-01 -1.95813149e-01\\n-1.69342235e-02 3.59182179e-01 2.02832103e-01 1.57028630e-01\\n1.37877524e-01 -2.45381817e-01 3.21537070e-02 3.90868813e-01\\n-9.68522206e-02 -6.92947507e-01 5.33228442e-02 7.48321712e-02\\n1.36218816e-01 1.73951790e-01 -3.97937119e-01 -7.76567161e-02\\n-2.94429988e-01 -2.57610023e-01 6.36806339e-02 -3.69769990e-01\\n-3.06793988e-01 3.42367470e-01 2.03505188e-01 9.04875249e-02\\n3.65311168e-02 -3.10374975e-01 -4.75744158e-02 -4.33347940e-01\\n2.40994804e-02 -6.01849735e-01 -3.17441151e-02 -1.60591826e-02\\n6.75996423e-01 -2.85326570e-01 2.11385220e-01 9.54629779e-02\\n1.32553309e-01 1.67924970e-01 1.48335770e-01 2.60451287e-02\\n-1.68098181e-01 -2.99119353e-01 -6.08941019e-02 -1.52915210e-01\\n6.82875276e-01 4.09561396e-01 -3.44808213e-02 -4.32540290e-03\\n1.86767623e-01 -3.01011980e-01 -3.62313062e-01 -4.46601629e-01\\n-1.54239982e-01 -2.39692658e-01 -6.55350566e-01 -5.84495008e-01\\n-9.40246433e-02 -1.81196272e-01 -1.37150839e-01 5.40568113e-01\\n-2.79041111e-01 -1.57082856e-01 -6.62804395e-02 -6.33137465e-01\\n3.30588460e-01 -1.89685002e-01 3.42931971e-03 -1.47989482e-01\\n-3.03850532e-01 -6.30134404e-01 7.53061399e-02 -3.86513583e-03\\n-1.34396389e-01 -1.37048006e-01 4.69750874e-02 -1.66171134e-01\\n-4.17905986e-01 -5.92188597e-01 4.52835590e-01 7.57044107e-02\\n3.34811807e-01 1.73996180e-01 4.84298646e-01 -2.32164189e-03\\n4.07056838e-01 -1.19319059e-01 -4.89118397e-02 -4.61739540e-01\\n-9.59181227e-03 2.86025517e-02 5.39730906e-01 -1.94478288e-01\\n3.66415940e-02 7.94391036e-02 -2.70131111e-01 1.78764649e-02\\n3.60547870e-01 -2.63513308e-02 1.29879266e-01 -1.16120435e-01\\n3.20789278e-01 -2.51747668e-01 -1.57178894e-01 1.77293122e-01\\n1.36955261e-01 6.62623346e-01 3.44267115e-02 -3.81332517e-01\\n-1.93906128e-01 4.17963773e-01 -2.09448636e-01 -1.54764773e-02\\n-1.50865465e-01 5.12376092e-02 -1.22684486e-01 3.52903068e-01\\n-5.67203797e-02 -1.73752114e-01 -2.47722298e-01 -1.25160202e-01\\n-1.05132893e-01 3.35563004e-01 2.38634676e-01 -1.76989492e-02\\n-2.12259237e-02 -3.32357913e-01 -3.64466161e-02 1.66420221e-01\\n3.02536190e-01 4.01896358e-01 1.83146968e-01 -2.33700991e-01\\n-7.47944489e-02 2.60500848e-01 -1.54690370e-01 2.48066157e-01\\n-2.50464559e-01 1.51238948e-01 -7.60261297e-01 -3.01129013e-01\\n-2.28768408e-01 -3.91695917e-01 2.62549549e-01 3.79336834e-01\\n1.49610162e-01 -1.36430278e-01 1.63892269e-01 -4.74537939e-01\\n2.64205813e-01 1.87781826e-01 1.81331784e-01 -1.31460056e-02\\n-1.38495028e-01 6.25331402e-01 -4.66168560e-02 -1.45523310e-01\\n-1.17173735e-02 5.92412092e-02 -2.68570483e-01 -2.59875298e-01\\n1.09686062e-01 -5.93910813e-01 -2.47241646e-01 4.72642630e-01\\n2.01337039e-01 -1.55827790e-01 -3.67371261e-01 2.24030226e-01\\n-5.69990538e-02 -3.25306296e-01 -2.99901605e-01 -1.05013356e-01\\n3.50306123e-01 1.65842593e-01 2.25846261e-01 -5.45188785e-01\\n-8.00185949e-02 -8.42903852e-02 1.03164650e-02 4.81641591e-01\\n1.29041463e-01 5.42231351e-02 -5.76844551e-02 -1.09202504e-01\\n5.45217633e-01 -5.00847287e-02 -9.71201211e-02 2.72773318e-02\\n1.67395353e-01 -2.70604074e-01 -3.78444374e-01 -1.79260783e-02\\n-3.07460614e-02 -2.85805523e-01 -3.88648659e-02 1.75659344e-01\\n6.34276196e-02 9.07574743e-02 -6.74351871e-01 -2.46081784e-01\\n-3.44470143e-01 -1.16142757e-01 2.67551951e-02 -5.16510963e-01\\n9.77349095e-03 -4.89934944e-02 -5.55762172e-01 2.59080589e-01\\n-1.29695445e-01 -9.28717256e-02 1.93949059e-01 1.27817541e-01\\n-2.86313236e-01 -2.04378784e-01 1.28313467e-01 2.24895626e-01\\n-4.00879025e-01 -2.39822894e-01 -3.97197679e-02 -9.52463567e-01\\n1.30695671e-01 6.83040470e-02 -2.25257322e-01 1.09534092e-01\\n-6.30345717e-02 -5.91425240e-01 9.23365913e-03 -5.40630460e-01\\n-1.51719898e-01 2.96832807e-02 -2.69852221e-01 -2.91257918e-01\\n2.20410213e-01 -3.25182676e-02 -2.70155311e-01 5.15450597e-01\\n-3.50039124e-01 3.50539923e-01 -7.82143027e-02 1.07526571e-01\\n3.91143002e-02 -1.15400329e-01 6.50952235e-02 -2.14828327e-01\\n-3.74180675e-01 -1.97452575e-01 -3.21751714e-01 -1.95422173e-01\\n-4.80181202e-02 -3.39891076e-01 -6.78438172e-02 -3.21220979e-02\\n4.14963365e-01 1.57468542e-01 -1.23699456e-01 -2.31011420e-01\\n2.29703665e-01 -5.17950654e-01 8.75064209e-02 -1.55685544e-01\\n6.24694675e-03 -6.34375066e-02 2.52373040e-01 2.08745804e-02\\n2.16487810e-01 -2.47785792e-01 4.34189141e-01 -4.52936530e-01\\n-3.18048030e-01 -1.09952956e-01 3.22578251e-02 -8.73939097e-02\\n2.24772424e-01 -5.73077798e-01 8.46183151e-02 3.37516069e-01\\n1.67975053e-01 -3.56442779e-02 2.02362299e-01 -1.46065980e-01\\n-9.17073786e-02 3.29261720e-01 -4.62644041e-01 1.32521912e-01\\n8.81247103e-01 2.15897769e-01 2.02935934e-01 1.71922028e-01\\n2.12250710e-01 2.70837814e-01 5.17288923e-01 1.68142654e-02\\n-2.64338329e-02 3.55564862e-01 1.41958952e-01 -5.45615673e-01\\n-5.22987507e-02 -1.42687634e-01 -1.57038271e-01 -3.37648064e-01\\n6.34572864e-01 3.75536859e-01 -4.49386537e-01 -3.21393549e-01\\n-1.87034830e-01 -1.33534253e-01 3.91693622e-01 6.02713339e-02\\n-3.71966697e-03 -3.92546952e-02 5.11405945e-01 -1.07329786e-01\\n3.50676358e-01 5.81836224e-01 -3.45788151e-01 -2.77171671e-01\\n-1.05819844e-01 2.24671647e-01 1.08495034e-01 5.13801455e-01\\n-2.52054036e-01 3.30012441e-01 -7.64205605e-02 1.58708274e-01\\n-1.12257592e-01 3.95384915e-02 3.50812674e-01 -5.63313439e-02\\n2.87568748e-01 1.75433122e-02 3.96342069e-01 4.30582464e-01\\n2.05345750e-01 3.99155885e-01 3.32047105e-01 4.49490547e-03\\n3.02689821e-01 5.92404246e-01 2.72319257e-01 1.64285734e-01\\n5.08420542e-03 1.69470727e-01 1.28025994e-01 6.88756071e-03\\n3.61756921e-01 3.92103791e-01 3.42847854e-02 1.01756120e+00\\n3.70151222e-01 3.56130540e-01 7.13692188e-01 -6.93968773e-01\\n-3.08261395e-01 8.25083181e-02 5.38934886e-01 -4.01319027e-01\\n-8.97774845e-03 1.71003163e-01 -2.87497431e-01 2.32342452e-01\\n-4.75147545e-01 -2.36702278e-01 -5.89376055e-02 7.86310807e-02\\n-2.98446156e-02 -1.29627213e-01 -2.83659220e-01 7.00967014e-03\\n-1.08489163e-01 -4.99796197e-02 -4.10857052e-01 -2.78183699e-01\\n-2.68294573e-01 -9.80531275e-02 -1.80237100e-01 -6.47170097e-02\\n-8.68850797e-02 -3.09663832e-01 -1.15629524e-01 1.62445474e-03\\n3.45668495e-01 -1.93851739e-01 -7.84363747e-02 -3.40798795e-02\\n2.71988332e-01 2.63495386e-01 6.34698629e-01 -8.52950811e-02\\n8.15211013e-02 -1.41116038e-01 -2.18605965e-01 8.48400965e-02\\n-3.69561613e-02 2.00874228e-02 2.90704779e-02 4.91894335e-01\\n-2.16104031e-01 -2.47988895e-01 1.41379401e-01 2.34647766e-01\\n-4.95657802e-01 -1.08028308e-01 -1.59300610e-01 1.38404146e-01\\n2.00346075e-02 9.84896496e-02 -2.09160894e-01 1.16630331e-01\\n-2.03384623e-01 -5.55744886e-01 3.50177079e-01 -1.61123350e-01\\n-1.74947664e-01 1.63236931e-01 3.49527568e-01 1.00635029e-01\\n-2.85518765e-01 -4.97101694e-02 -3.73840630e-02 2.26831153e-01\\n-1.92060880e-02 3.20314705e-01 -1.60825312e-01 -2.58237064e-01\\n-3.25899363e-01 2.46605232e-01 -1.94734499e-01 1.64883345e-01\\n-6.66388869e-02 3.52166653e-01 7.80388564e-02 1.09641984e-01\\n3.51102352e-01 1.38885817e-02 -2.63039649e-01 -2.71945864e-01\\n-2.14012891e-01 -1.07887477e-01 3.79564837e-02 -8.95413682e-02\\n1.68843016e-01 -2.93900579e-01 -1.65006831e-01 -2.54572988e-01\\n-1.29116178e-01 -4.61996377e-01 -4.73354012e-02 -1.41262487e-02]]',\n", + " 'About us We are a professional data consulting and software company from Zug, with a strong focus on Data, Analytics and Artificial Intelligence. We help our clients with deploying proven process frameworks and software tools to ensure effective and efficient data strategy and implementation to the highest data quality standards. As DAI Group, we develop an objective-driven, data-led organisation by embedding analytics in the core of the business and optimise organisations for the future way of working.We help our clients with the latest solutions and techniques in Machine Learning and Automation to deliver the right solution for an efficient business transformation. If you are a wizard in statistics, algorithm theory, computer science, database theory, applied economics or engineering and you would like to work in an environment with startup-spirit, send us your application. Minimum qualifications Master or PhD degree in computer science, physics, applied mathematicsor equivalent practical experience Experience with machine and deep learning systems, statistical data analysis (e.g. linear models, multivariate analysis, stochastic models, sampling methods, etc.) Experience in programming in one or more of the following: Python, R, C/C++or Scala Robust knowledge on Database structures (Oracle, MS SQL) Experience deriving data-driven business insights and effectively communicating actionable recommendations to senior management We are looking for team players with high ethical standards who are willing and able to learn and apply new technologies Preferred qualifications Demonstrated experience with one or more machine learning frameworks: Tensorflow, Keras, Theano, Scikit, etc. Experience with machine learning on large datasets Experience with graph databases and enterprise knowledge graphs Ability to draw conclusions from data and to recommend actions Familiar with context analysis, NLP and word embeddings Experience with working in project environments using agile methodology Demonstrated leadership and self-direction. About the job At DAI group, data drives all of our decision-making. Using analytical methods, you mine through data to identify opportunities for our client to operate more efficiently. Your area of application vary from e.g. solving context related problems with neural networks to optimization of models for customer behaviour with genetic algorithms or reinforcement learning. You will deal with large volume of structured and unstructured data to store, cleanse and train. As a data scientist, you will support the project insights gained from analysing company data. The candidate must have good experience using a variety of data analysis methods, using a variety of data tools, helping building and implementing models. The candidate will have a passion for discovering solutions hidden in large data sets and working with stakeholders to improve business outcomes. Interested? Please send your CV, references and a motivation letter to us.',\n", + " '[\"Leadership\", \"Professionalism\", \"Management\", \"Communications\", \"Operations\", \"Decision Making\", \"Consulting\"]',\n", + " '[\"Automation\", \"Data Quality\", \"Tooling\", \"Programming (Music)\", \"Context Analysis\", \"Genetic Algorithm\", \"Business Efficiency\", \"Help Authoring Tool\", \"Theano (Software)\", \"Computer Science\", \"Analytics\", \"Knowledge Graph\", \"Statistics\", \"Machine Learning\", \"Database Storage Structures\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Database Theory\", \"Sampling (Statistics)\", \"E (Programming Language)\", \"Machining\", \"Embedding\", \"Dataset\", \"Keras (Neural Network Library)\", \"Word Embedding\", \"Machine Learning Methods\", \"Minimum Data Set\", \"Unstructured Data\", \"Linear Model\", \"C (Programming Language)\", \"Agile Methodology\", \"Eclipse Process Framework\", \"R (Programming Language)\", \"Artificial Intelligence\", \"TensorFlow\", \"Computability Theories\", \"Deep Learning\", \"Multivariate Analysis\", \"Survey Data Analysis\", \"Drawing\", \"Stochastic Modeling\", \"Applied Physics\", \"Recurrent Neural Network (RNN)\", \"Graph Database\", \"Language Experience Approach\", \"Algorithms\", \"Business Transformation\", \"Derivatives\", \"Reinforcement Learning\", \"SQL (Programming Language)\", \"Applied Economics\", \"Data Analysis\"]',\n", + " \"['English', 'Kirghiz', 'Castilian', 'Kurdish']\"],\n", + " ['75',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.94451922e-01 2.88712293e-01 4.79655236e-01 -3.42757665e-02\\n3.94566208e-01 -1.11883506e-01 -3.18306983e-02 2.08265081e-01\\n-1.29073679e-01 -3.08327973e-01 -1.38809383e-01 -2.45947987e-01\\n-3.04558307e-01 2.12930962e-02 1.05452396e-01 3.95390332e-01\\n1.64450854e-01 7.23929852e-02 -2.84079999e-01 3.83422703e-01\\n1.03670388e-01 9.05080959e-02 -1.82524785e-01 6.36543810e-01\\n4.63715613e-01 -4.15222794e-02 -1.37389570e-01 1.21770084e-01\\n-2.58633465e-01 -3.10323417e-01 3.39382261e-01 1.16952978e-01\\n-9.63014513e-02 -1.76837996e-01 1.52718931e-01 1.60977527e-01\\n-2.22446233e-01 3.44941253e-03 -9.63980481e-02 2.30476469e-01\\n-5.72414219e-01 -4.05430108e-01 1.14465104e-02 1.21279676e-02\\n-3.51623356e-01 -1.97628260e-01 1.13612659e-01 1.25464853e-02\\n-6.48280159e-02 2.24587917e-02 -6.76585972e-01 2.87804514e-01\\n-2.37161726e-01 -2.01760456e-01 2.85778284e-01 5.04246533e-01\\n9.09196213e-02 -6.45081043e-01 -2.90141433e-01 -3.29048395e-01\\n3.87550965e-02 -5.28387353e-02 -3.74020711e-02 -2.75560379e-01\\n5.00267506e-01 -8.36459398e-02 -7.19986260e-02 3.51167381e-01\\n-8.81420970e-01 -1.63720608e-01 -2.56699204e-01 4.37843287e-03\\n-4.20008481e-01 4.67912704e-02 -2.85988867e-01 -3.46167907e-02\\n-2.57863831e-02 3.23837310e-01 -4.58000302e-02 1.35441795e-01\\n-2.80385107e-01 3.54673028e-01 -8.97599682e-02 2.56789833e-01\\n4.10343826e-01 1.16488278e-01 1.03198029e-01 3.95931512e-01\\n-4.08828914e-01 3.24235171e-01 1.33849546e-01 -3.14239830e-01\\n1.64336592e-01 2.06909537e-01 5.69321692e-01 2.72098213e-01\\n-1.28106907e-01 2.08425581e-01 -1.50531054e-01 2.47220472e-01\\n1.56453595e-01 -2.82171577e-01 9.99054313e-02 -3.90973128e-02\\n-2.13386729e-01 -3.33606191e-02 -3.39850143e-04 2.97115237e-01\\n-1.65337935e-01 3.04801702e-01 1.80861831e-01 -1.64360270e-01\\n-5.47631681e-02 -5.97316384e-01 -1.18603870e-01 -3.59033979e-02\\n9.75032747e-02 2.10459977e-01 3.05603832e-01 1.16070732e-01\\n1.82708308e-01 9.51646045e-02 1.91930830e-01 9.51175213e-01\\n-3.80824693e-02 -1.92200916e-03 -1.35267884e-01 3.17445934e-01\\n3.04273427e-01 -2.11888149e-01 1.81864515e-01 3.71508211e-01\\n1.73939422e-01 -1.09176725e-01 -3.60840440e-01 5.21579802e-01\\n-2.08924249e-01 -2.58422736e-02 -4.36502695e-01 8.36091936e-02\\n-2.54930317e-01 -4.99556124e-01 6.22847140e-01 1.38894498e-01\\n3.46470267e-01 6.94538583e-04 6.10827701e-03 -1.31122053e-01\\n-1.22452088e-01 3.10157478e-01 -3.63909714e-02 2.84927309e-01\\n-3.26196820e-01 -2.38905832e-01 -1.51871920e-01 3.39236289e-01\\n-9.53172520e-02 1.91311598e-01 -1.23283342e-02 -1.98974162e-01\\n2.82019526e-01 1.46738902e-01 -4.02581304e-01 1.47536069e-01\\n-1.28262475e-01 -3.07639152e-01 -7.97809288e-02 3.16156477e-01\\n-7.77336508e-02 2.09422037e-01 3.22482213e-02 -2.43627682e-01\\n5.90117335e-01 2.12173223e-01 1.23138964e-01 -4.55988050e-02\\n2.81528145e-01 -1.54105708e-01 3.16745400e-01 1.23499252e-01\\n-8.11372221e-01 2.87390828e-01 2.43022684e-02 -8.31407160e-02\\n5.51492311e-02 1.41617820e-01 4.11935240e-01 -4.49855983e-01\\n-1.50264204e-01 -2.51525044e-01 -5.56012809e-01 -3.81326050e-01\\n-4.27273571e-01 3.05585861e-02 4.57227260e-01 -3.24186146e-01\\n-6.29257560e-02 1.38955623e-01 -6.21518612e-01 -1.78946093e-01\\n1.39425904e-01 1.25439584e-01 1.35065034e-01 -5.01265600e-02\\n-4.48589586e-02 -7.39397645e-01 -4.88783345e-02 -5.02204716e-01\\n-6.53059781e-01 -7.08361939e-02 -3.73954058e-01 1.90239295e-01\\n4.69043516e-02 1.19213201e-01 -7.29179010e-02 9.67196822e-02\\n-4.57982510e-01 -3.44630033e-02 2.65330464e-01 1.53048247e-01\\n2.96455473e-01 -1.32059485e-01 -4.32817280e-01 4.60135937e-01\\n-2.08420262e-01 7.38423765e-01 2.72785366e-01 -8.85912895e-01\\n7.96770215e-01 2.60405153e-01 7.33994693e-02 -4.84383225e-01\\n4.43412364e-01 -3.77090782e-01 -2.45502219e-01 2.31780350e-01\\n-2.01599002e-01 -2.10446283e-01 3.07180673e-01 -2.17752069e-01\\n-3.65946293e-01 5.87624431e-01 2.56463140e-01 -4.08534557e-02\\n3.95624995e-01 -4.05463547e-01 -1.22679062e-01 -3.66899162e-03\\n-1.31733507e-01 -2.04089597e-01 -2.35976890e-01 2.44546801e-01\\n-8.06572288e-02 -5.49001634e-01 -1.42320722e-01 -3.35849106e-01\\n-1.21120311e-01 -4.39557821e-01 -2.78865635e-01 5.36614060e-01\\n6.77339286e-02 1.25205204e-01 7.72644058e-02 -7.00883195e-02\\n-1.78527720e-02 -6.56660497e-01 -2.22963706e-01 -1.90416612e-02\\n5.20841122e-01 1.91203967e-01 3.12111732e-02 -1.74477398e-01\\n-2.87167504e-02 5.80697298e-01 -4.67668772e-01 -5.00538766e-01\\n7.26829693e-02 5.11139259e-02 -6.85254335e-02 -1.13346785e-01\\n5.85114732e-02 5.09533107e-01 -2.23222956e-01 3.96335637e-03\\n-1.51398182e-01 -4.18620370e-03 2.16405272e-01 -1.36178639e-02\\n-1.43086076e-01 -2.98319340e-01 -5.57357781e-02 3.00148487e-01\\n-5.47363818e-01 -1.41328484e-01 5.46629012e-01 3.96016061e-01\\n2.53075719e-01 1.52093977e-01 4.37141746e-01 -1.70914561e-01\\n-3.19694579e-01 -3.33840102e-01 -7.46769505e-03 2.92954803e-01\\n5.37281930e-02 2.27364991e-02 -4.46245559e-02 -4.47685122e-01\\n-2.64417005e+00 -2.20171332e-01 3.39664698e-01 -2.79724270e-01\\n1.71791062e-01 -9.73650068e-02 3.49282585e-02 -3.96619961e-02\\n-3.04762125e-01 -4.49918807e-02 -2.30467573e-01 -8.82003307e-02\\n-5.55954240e-02 3.50446045e-01 1.74214244e-01 6.24148473e-02\\n2.12062132e-02 -2.72872537e-01 -1.67676374e-01 3.28157485e-01\\n-2.12868247e-02 -6.56988382e-01 1.81175455e-01 -6.16404489e-02\\n1.27567247e-01 9.20591652e-02 -3.30397964e-01 -2.55830726e-03\\n-1.78009942e-01 -2.97839761e-01 -7.05694454e-03 -2.86754519e-01\\n-1.60239667e-01 2.72332072e-01 1.23715550e-01 -3.47245410e-02\\n2.04550172e-03 -2.10132182e-01 -7.99290314e-02 -5.21965384e-01\\n6.28079996e-02 -5.72821319e-01 1.03689972e-02 -1.48849487e-01\\n6.45066142e-01 -2.85108477e-01 2.08503693e-01 9.32704434e-02\\n1.98064700e-01 1.45452008e-01 1.46923689e-02 6.87651709e-02\\n-4.41084385e-01 -3.72400105e-01 6.85887337e-02 -2.31668875e-01\\n5.66516519e-01 5.58244944e-01 -2.16827184e-01 -2.78893150e-02\\n2.18477264e-01 -3.88503730e-01 -2.93528378e-01 -6.14344537e-01\\n-1.35776356e-01 -1.84180364e-01 -8.50409925e-01 -4.69372958e-01\\n-9.20941979e-02 -1.20046854e-01 -2.34788015e-01 6.63853884e-01\\n-4.44731742e-01 -4.36461955e-01 -1.79541539e-02 -6.59527302e-01\\n1.66962564e-01 -2.32705817e-01 1.33175746e-01 -2.20617995e-01\\n-3.56607467e-01 -4.78635043e-01 1.72063828e-01 -1.73930287e-01\\n-2.34367147e-01 -1.73171848e-01 -5.98391034e-02 -3.67533207e-01\\n-2.63334870e-01 -3.56467009e-01 4.08146352e-01 1.36142522e-01\\n3.70150328e-01 1.05749793e-01 4.46379513e-01 2.48953160e-02\\n4.08709764e-01 -4.55726404e-03 7.35204965e-02 -4.01699752e-01\\n8.94271061e-02 -1.55719779e-02 5.34370422e-01 -2.85878837e-01\\n2.00207993e-01 2.67658055e-01 -2.42420167e-01 -1.25805780e-01\\n4.38407898e-01 9.53997597e-02 -1.71490274e-02 -1.77488118e-01\\n4.60936546e-01 -5.63630939e-01 -2.56460607e-01 2.57032603e-01\\n-4.43182001e-03 7.86784887e-01 1.43650725e-01 -4.37986404e-01\\n-3.11465651e-01 5.77587485e-01 -1.86038107e-01 -1.61490440e-01\\n-3.85091715e-02 1.81653276e-01 -7.83060789e-02 1.73257068e-01\\n5.44332638e-02 -2.49107495e-01 -3.02379429e-01 -8.16930756e-02\\n4.08012383e-02 1.23818658e-01 2.32871264e-01 -1.47342477e-02\\n4.78255562e-02 4.26692190e-03 -2.29151607e-01 6.68174550e-02\\n2.38976747e-01 2.73711354e-01 1.40279889e-01 -2.76432604e-01\\n-1.15706027e-01 3.74457359e-01 -2.18550250e-01 3.18009198e-01\\n-1.33570418e-01 6.35033771e-02 -4.85777318e-01 -2.14799598e-01\\n-1.46649003e-01 -3.34001541e-01 1.96599096e-01 2.65504271e-01\\n1.08771622e-01 -5.36692403e-02 1.31764725e-01 -6.10931754e-01\\n3.85548353e-01 2.32390866e-01 9.74788964e-02 1.36992875e-02\\n1.79423974e-03 5.21565914e-01 1.78289786e-02 -5.21691144e-02\\n-4.05085795e-02 -5.68163097e-02 -2.70531237e-01 -3.98385257e-01\\n1.29216030e-01 -4.65481788e-01 -1.44471183e-01 5.97691238e-01\\n1.08587168e-01 -3.11341226e-01 -3.74130070e-01 2.24345312e-01\\n2.23323554e-01 -2.31927767e-01 -1.75030783e-01 1.34659233e-02\\n1.61347121e-01 8.74023587e-02 2.10210785e-01 -3.02027702e-01\\n-1.07034348e-01 -2.37622038e-02 -1.68131337e-01 4.66236442e-01\\n3.18863392e-01 -3.95301022e-02 -2.07874313e-01 -1.70427769e-01\\n4.47603405e-01 2.11396068e-02 -6.15353100e-02 -9.43835750e-02\\n1.31282315e-01 -2.85846651e-01 -4.10807163e-01 2.24308260e-02\\n-7.08927661e-02 -1.34803385e-01 2.50950027e-02 -8.79950002e-02\\n6.83161542e-02 5.48832603e-02 -3.98496270e-01 -2.92649955e-01\\n-4.74168360e-01 -1.25644013e-01 1.60691187e-01 -3.02253127e-01\\n4.41723093e-02 -1.86971445e-02 -5.64883649e-01 2.44648069e-01\\n-3.00406545e-01 9.72415432e-02 1.32585257e-01 2.00392932e-01\\n-3.27953428e-01 -9.64241028e-02 2.82093068e-03 1.02522038e-01\\n-4.00131375e-01 -1.88460931e-01 -4.08567078e-02 -9.62030709e-01\\n9.28848982e-02 7.41461664e-02 5.67973172e-03 2.80601121e-02\\n-5.26953824e-02 -7.38703668e-01 8.04946646e-02 -3.75326484e-01\\n9.38704833e-02 9.19223651e-02 -2.21614718e-01 -3.20063442e-01\\n2.25402802e-01 -2.81244908e-02 -3.14861119e-01 4.20359999e-01\\n-5.97287118e-01 1.99475527e-01 1.33476540e-01 1.10531770e-01\\n2.73519531e-02 -1.97806925e-01 2.15876669e-01 -1.69721678e-01\\n-3.61009717e-01 -3.81908596e-01 -3.38776469e-01 -1.78632885e-01\\n7.03844279e-02 -2.96655148e-01 -2.18959838e-01 8.37817565e-02\\n4.04608071e-01 1.53595120e-01 -8.02776590e-02 -1.67518005e-01\\n1.11924246e-01 -3.73409152e-01 6.68731853e-02 -3.73279452e-01\\n-1.17954090e-02 -9.16166231e-03 1.89061910e-01 -1.68983251e-01\\n1.40729591e-01 -3.26090932e-01 5.30845582e-01 -2.36775160e-01\\n-4.24316466e-01 -3.77250314e-02 5.06704561e-02 -1.60248729e-03\\n2.29607016e-01 -4.53545332e-01 1.59035563e-01 2.92837143e-01\\n-1.54973892e-02 2.70581082e-03 3.29156697e-01 -4.65531312e-02\\n-6.94853440e-02 1.80897340e-01 -5.46628833e-01 -6.93782568e-02\\n7.71242201e-01 2.30498791e-01 3.53271025e-03 2.58054882e-01\\n1.07105821e-01 4.54410851e-01 5.49854636e-01 -1.45800456e-01\\n2.91179642e-02 1.70138896e-01 7.20451474e-02 -4.99157012e-01\\n-1.67325199e-01 -2.00526893e-01 -2.61443436e-01 -1.92220703e-01\\n5.58028698e-01 3.62255812e-01 -3.51134807e-01 -2.83111781e-01\\n4.76202630e-02 -9.89143997e-02 3.79354805e-01 -6.20207563e-02\\n-1.10904410e-01 2.62609292e-02 5.51997483e-01 3.55934650e-02\\n3.90787899e-01 5.67669630e-01 -2.48128340e-01 -4.47337985e-01\\n-1.63442388e-01 1.34954393e-01 3.16528566e-02 5.20113409e-01\\n-6.83552846e-02 3.15064013e-01 8.26360136e-02 4.53245267e-02\\n-6.40723705e-02 2.58654058e-01 2.49762625e-01 -8.95783585e-03\\n3.15026700e-01 1.12426162e-01 1.52486950e-01 6.34689271e-01\\n4.23303321e-02 4.79032218e-01 3.43819022e-01 1.16139963e-01\\n2.66479403e-01 6.64068162e-01 4.17775035e-01 2.22300068e-01\\n3.14682461e-02 9.27320421e-02 -8.48014932e-03 4.17517535e-02\\n4.39160168e-01 3.21849972e-01 3.06847513e-01 9.26698685e-01\\n2.95355082e-01 3.36329669e-01 8.13102126e-01 -8.00214350e-01\\n-4.07691002e-01 1.81957647e-01 4.78469133e-01 -3.18975359e-01\\n-1.28250793e-01 9.29368064e-02 -2.27630720e-01 3.52482229e-01\\n-4.93876427e-01 -7.05936104e-02 -9.15077794e-03 3.60119119e-02\\n-4.70120534e-02 -4.32914011e-02 -2.62629360e-01 -2.63684131e-02\\n-2.73251355e-01 -1.09856024e-01 -1.55240133e-01 -2.39006758e-01\\n-4.48880225e-01 -8.59628394e-02 -4.06479090e-02 -3.34375426e-02\\n-2.02690795e-01 -4.91483390e-01 -1.87768713e-01 1.05006039e-01\\n4.37146872e-01 -2.43087545e-01 -9.08244848e-02 -2.37111002e-01\\n-5.10944612e-02 3.68373543e-01 6.27204955e-01 -8.62507075e-02\\n1.12266839e-01 -1.14382125e-01 -2.94280767e-01 3.88912717e-03\\n5.71132489e-02 5.93680590e-02 1.90981656e-01 5.07438004e-01\\n-2.96670169e-01 -8.21104571e-02 1.78822696e-01 2.21033871e-01\\n-4.61400658e-01 -1.92521766e-01 -8.72386247e-02 3.23366404e-01\\n4.92102988e-02 2.80926496e-01 -2.94260710e-01 7.82772154e-02\\n-2.98183411e-01 -4.84718919e-01 6.19120181e-01 -1.68109179e-01\\n-8.90398175e-02 2.58658528e-01 3.19241762e-01 2.14343160e-01\\n-2.43808001e-01 -1.15404204e-01 3.30715999e-02 4.36267644e-01\\n-1.48036882e-01 5.27615011e-01 -1.95877090e-01 -2.61826906e-02\\n-2.52834052e-01 2.58946627e-01 -1.67042553e-01 2.18692049e-01\\n-6.48731738e-02 3.39756668e-01 5.18625267e-02 -4.01512310e-02\\n2.41217628e-01 8.69773924e-02 -2.01392874e-01 -2.42401674e-01\\n-2.22477540e-01 -3.69373590e-01 1.76988050e-01 -1.74670406e-02\\n1.57323092e-01 -3.86331558e-01 -6.09693117e-02 -8.81638974e-02\\n-1.56940773e-01 -3.89345735e-01 -3.24429125e-01 1.36613205e-01]]',\n", + " 'Job Informationen Your tasks: Design and build complex data processing pipelines and data-centric systems Build tools and components for data ingestion and data transformation Develop machine learning modules for various forms of data and modalities Systematically work towards strict metrics (performance, resource usage, reliability) Work within a talented and fast-paced team of engineers Your profile: 1-3 years of experience in building large scale distributed systems In-depth understanding of concepts such as algorithms, networking and internet technology Deep knowledge in Scala, Java, or C++ and Python, Bash, or Perl Knowledge of databases and messaging systems (e.g. Couchbase, Kafka) Knowledge of modern architectural patterns e.g. REST, microservices, stream processing Knowledge of a batch processing framework e.g. Spark, Hadoop Experience with version control systems (e.g. Git) and cloud technologies (e.g. AWS) Interest in large scale data mining and machine learning is desirable Knowledge of client-side technologies (e.g. JavaScript, Angular, React) is a plus Bachelor/MSci/PhD degree in Computer Science or equivalent Ability to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala JAVA C++ Python Python Bash Perl Python JavaScript Angular Englisch',\n", + " '[\"Communications\", \"Reliability\"]',\n", + " '[\"Control Systems\", \"Distributed File Systems\", \"Python Server Pages\", \"Knowledge Process Outsourcing\", \"Computer Science\", \"Perl (Programming Language)\", \"Message Handling Systems\", \"Build Tools\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Version Control\", \"Python (Programming Language)\", \"E (Programming Language)\", \"Data Transformation\", \"Microservices\", \"Pipelining\", \"React.js\", \"Machine Learning Methods\", \"Stream Processing\", \"JavaScript (Programming Language)\", \"Performance Metric\", \"Bash (Scripting Language)\", \"Architectural Patterns\", \"Electronic Data Processing\", \"Data Mining\", \"Java Data Mining\", \"Angular (Web Framework)\", \"Modulation\", \"Batch Processing\", \"Resourcing\", \"Algorithms\", \"Git Flow\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"Data Ingestion\", \"Cloud Technologies\"]',\n", + " \"['English']\"],\n", + " ['57',\n", + " 'software engineer - c# -',\n", + " 'Switzerland',\n", + " '',\n", + " '',\n", + " '[[-1.64772525e-01 2.76807666e-01 5.46194911e-01 -1.78663999e-01\\n4.68478411e-01 -3.67524981e-01 2.13195235e-01 4.24296647e-01\\n-8.17956924e-02 -3.46826196e-01 -8.41753632e-02 -2.51772672e-01\\n-5.15617654e-02 7.74513632e-02 1.66734904e-01 3.50251496e-01\\n2.73966372e-01 1.33402050e-01 -1.19294614e-01 3.50635916e-01\\n1.25488773e-01 -1.88268602e-01 1.06664672e-01 6.52806878e-01\\n4.65819895e-01 1.71995386e-01 -8.93028975e-02 1.76807925e-01\\n-3.22892785e-01 -4.05892164e-01 4.49922711e-01 -3.23772915e-02\\n-1.63701605e-02 -1.80861309e-01 1.07690975e-01 -2.16825381e-02\\n-2.20342845e-01 3.58604193e-02 -6.88299313e-02 1.51987419e-01\\n-3.67927074e-01 -8.27801451e-02 1.88268751e-01 1.73914675e-02\\n-1.62085205e-01 -3.88736337e-01 3.21350880e-02 2.72953045e-02\\n2.06000537e-01 -7.25217909e-02 -4.57060367e-01 3.90332669e-01\\n-2.27643147e-01 -3.38814110e-01 2.78182805e-01 5.28079748e-01\\n-1.79176316e-01 -5.28168619e-01 -4.36779261e-01 -2.53170341e-01\\n1.11192584e-01 -1.47335947e-01 6.52952567e-02 -3.25392008e-01\\n3.63916725e-01 1.21677257e-01 3.84149402e-02 4.12340939e-01\\n-7.92021990e-01 4.86693904e-02 -1.72356993e-01 -5.27348481e-02\\n-2.55846977e-01 -1.85274146e-03 -3.00835043e-01 -6.27940223e-02\\n-1.66037589e-01 3.61122310e-01 7.02960789e-02 8.95178095e-02\\n-8.31178948e-02 2.85099059e-01 -2.40625471e-01 2.06431225e-01\\n2.36462727e-01 3.38673294e-01 1.86542690e-01 3.20068479e-01\\n-3.78774911e-01 4.47699934e-01 1.39667645e-01 -2.94265777e-01\\n1.54511184e-01 1.33698612e-01 4.49450403e-01 -1.31222665e-01\\n2.03619108e-01 6.18353151e-02 -1.44870907e-01 3.31225783e-01\\n4.15190190e-01 -3.47663820e-01 -1.30834430e-02 1.53828477e-02\\n-9.94220823e-02 1.11738913e-01 4.40242328e-02 3.78654748e-01\\n-3.41483593e-01 6.03950620e-01 6.48397058e-02 -1.96196616e-01\\n-9.18151438e-02 -6.09495997e-01 -1.88038841e-01 2.33608574e-01\\n7.31805041e-02 1.23094238e-01 2.29253829e-01 2.66499698e-01\\n2.39116833e-01 1.50256321e-01 1.58523396e-01 8.49662542e-01\\n-1.15914233e-01 1.10921077e-01 -2.22229883e-01 3.22688490e-01\\n1.18033417e-01 -2.75813013e-01 2.82118797e-01 3.78131658e-01\\n2.70028561e-01 -6.95153400e-02 -1.71907440e-01 2.30021641e-01\\n-4.69232313e-02 -2.65312552e-01 -2.88292795e-01 1.40812159e-01\\n-1.26930818e-01 -5.38653553e-01 6.02564752e-01 -1.35766976e-02\\n9.69960093e-02 5.26094027e-02 9.28754285e-02 -4.08892892e-02\\n-1.14772782e-01 1.62700683e-01 6.91518337e-02 1.51853070e-01\\n-2.77955979e-01 -1.64611787e-01 -3.96558672e-01 1.60221592e-01\\n-3.11135739e-01 9.29338858e-02 -9.84763801e-02 -4.26849499e-02\\n3.96174192e-01 -2.59645097e-02 -3.10053796e-01 4.06087756e-01\\n-1.36861742e-01 2.58774292e-02 -7.06121400e-02 2.61853069e-01\\n-1.11629792e-01 2.38987461e-01 -1.17291078e-01 -1.73289984e-01\\n4.58959162e-01 1.76410899e-01 6.57794774e-02 -1.09326534e-01\\n3.22030693e-01 -8.28488823e-03 1.17364384e-01 -1.44444825e-02\\n-7.97896385e-01 2.90143281e-01 2.08421275e-02 -1.72247648e-01\\n4.27352563e-02 -7.48733198e-03 2.38961786e-01 -3.94855827e-01\\n5.18858247e-02 -1.10329017e-01 -4.31714267e-01 -2.98168063e-01\\n-1.63815871e-01 -3.86478007e-02 4.68761653e-01 -4.15187210e-01\\n-1.91445023e-01 1.53912604e-01 -5.05179644e-01 1.60727322e-01\\n3.31301987e-01 7.35341460e-02 1.50958598e-01 2.02411324e-01\\n-1.64411455e-01 -5.33879995e-01 1.18832760e-01 -3.45753193e-01\\n-2.75627732e-01 2.47556776e-01 -3.64156008e-01 2.38287598e-01\\n1.75842673e-01 5.26473066e-03 -9.67978537e-02 7.40015209e-02\\n-8.66908059e-02 -1.76804930e-01 1.39113247e-01 3.33025269e-02\\n3.57485324e-01 7.42985085e-02 -4.39482212e-01 5.18254876e-01\\n-2.12392882e-01 4.92733479e-01 1.43184885e-01 -7.15204477e-01\\n4.26402718e-01 3.03109020e-01 5.82604744e-02 -3.93082350e-01\\n7.75869608e-01 -2.18868867e-01 -4.37113009e-02 1.66375831e-01\\n-4.92929488e-01 -4.05358970e-01 1.34233311e-01 -6.94984049e-02\\n-1.76401556e-01 2.92753607e-01 6.89027607e-02 7.50373229e-02\\n3.42305422e-01 -1.15844093e-01 -6.87075406e-02 2.00546429e-01\\n-1.59289241e-02 -2.45919988e-01 -3.21334809e-01 5.66280298e-02\\n-1.12147070e-03 -4.97433752e-01 -7.79797360e-02 -3.98996502e-01\\n-3.25439334e-01 -3.59859675e-01 -1.90680116e-01 2.66619444e-01\\n1.68208852e-01 2.12842062e-01 5.96953295e-02 -2.62240227e-02\\n-3.14053416e-01 -5.87689936e-01 1.45342261e-01 9.52240974e-02\\n3.65111679e-01 1.35929421e-01 -7.67500848e-02 -9.36250761e-02\\n2.55871080e-02 7.23082840e-01 -2.78568506e-01 -1.35427788e-01\\n1.07384250e-01 1.58344641e-01 -1.29187524e-01 -1.55981168e-01\\n2.36039162e-02 2.73294359e-01 -2.34195232e-01 7.72598982e-02\\n-2.07465962e-01 -1.68687720e-02 3.64061475e-01 -1.12549573e-01\\n-4.15923506e-01 -3.30557227e-01 -1.87869281e-01 8.81709978e-02\\n-6.25583768e-01 -1.79380536e-01 6.40591562e-01 1.84573591e-01\\n1.61394641e-01 1.24828577e-01 1.36799574e-01 -7.40003586e-02\\n-1.76300645e-01 -2.08544239e-01 1.49725869e-01 2.95623429e-02\\n9.28895399e-02 1.82370603e-01 -2.04103440e-01 -5.34670472e-01\\n-3.63125753e+00 -7.32215643e-02 1.14097334e-01 -3.17801893e-01\\n1.92422152e-01 -1.09943680e-01 1.52759314e-01 -2.16027200e-01\\n-1.91426009e-01 4.53394018e-02 -2.03591615e-01 -1.33778140e-01\\n2.37194583e-01 1.59861088e-01 1.14355288e-01 2.44193420e-01\\n3.07041854e-01 -3.51387024e-01 -8.75399709e-02 3.09464663e-01\\n-1.34030968e-01 -5.29288471e-01 2.24836752e-01 -7.42031857e-02\\n4.67449039e-01 4.65605497e-01 -2.85995215e-01 -1.63949579e-01\\n-2.06202894e-01 -2.50086904e-01 1.20017789e-01 -2.19647899e-01\\n7.46033415e-02 3.05703998e-01 1.20136544e-01 -9.72689614e-02\\n2.70108521e-01 -3.05010140e-01 1.11409798e-01 -3.59845251e-01\\n1.51722163e-01 -5.77656806e-01 -9.14993286e-02 -5.67101575e-02\\n7.92012751e-01 -3.68912518e-01 8.27970654e-02 1.07330903e-01\\n1.05044074e-01 2.45090514e-01 -2.52676588e-02 -2.16234073e-01\\n-1.48407876e-01 -1.93554997e-01 -5.30797206e-02 -1.57709852e-01\\n5.29696167e-01 6.76983416e-01 -2.57608205e-01 -5.02681024e-02\\n2.27372386e-02 -3.69987518e-01 -4.82042849e-01 -3.24809283e-01\\n-2.72891641e-01 -1.50454849e-01 -5.77311695e-01 -5.68993092e-01\\n-1.64772958e-01 -7.53210336e-02 -7.86887854e-02 5.05571306e-01\\n-2.10601985e-01 -5.18004179e-01 -7.55979121e-02 -4.09390837e-01\\n8.86229239e-03 -1.11434132e-01 -3.86233144e-02 -2.23112047e-01\\n-1.74075082e-01 -5.65183401e-01 1.43261347e-02 9.78479311e-02\\n-9.18411314e-02 -2.05635846e-01 2.66934425e-01 -1.07150026e-01\\n-3.14752668e-01 -5.41592896e-01 4.16086346e-01 1.50812212e-02\\n3.30857545e-01 1.94335595e-01 8.21536258e-02 8.88732150e-02\\n3.61687958e-01 -3.28650564e-01 1.47287831e-01 -3.47437263e-01\\n2.27680549e-01 1.46825120e-01 5.52715659e-01 -1.36403754e-01\\n1.05554879e-01 1.05307229e-01 -2.63496906e-01 -2.54742920e-01\\n2.91109294e-01 4.79927547e-02 1.85718328e-01 -3.41601908e-01\\n4.03735429e-01 -2.93881804e-01 -2.59083569e-01 1.53647199e-01\\n9.14022028e-02 4.39355403e-01 -6.06204160e-02 -3.09012502e-01\\n-7.21433312e-02 4.82919067e-01 -2.21813038e-01 -3.17251086e-02\\n-2.03704923e-01 3.83672006e-02 -2.11111486e-01 3.45580518e-01\\n1.28396703e-02 -1.64716423e-01 -2.36932486e-01 -1.48321554e-01\\n-2.33307537e-02 2.55304009e-01 2.24109426e-01 1.07053094e-01\\n-2.01807134e-02 -4.03046846e-01 1.65094957e-02 1.58550277e-01\\n2.12969854e-01 3.18270892e-01 -7.09916698e-03 -1.24939978e-01\\n-9.06146094e-02 2.88403928e-01 -1.34455144e-01 1.77377835e-01\\n-2.23168194e-01 1.38260368e-02 -3.81300956e-01 -3.34842831e-01\\n-2.66593188e-01 -2.65764505e-01 -1.20762534e-01 2.14595303e-01\\n7.54636377e-02 7.68301710e-02 3.73832472e-02 -4.17604029e-01\\n2.61269033e-01 5.92944510e-02 2.29465827e-01 2.80614376e-01\\n-3.20919640e-02 5.33879399e-01 4.86345328e-02 -5.25516979e-02\\n-1.38815597e-01 1.52299076e-01 -2.69144893e-01 1.67902987e-02\\n1.87067632e-02 -4.15452003e-01 1.27427476e-02 3.16131145e-01\\n5.89536428e-02 -2.89693773e-01 -1.15595989e-01 1.86287045e-01\\n-4.50026803e-02 -5.31428218e-01 -1.98888183e-01 -3.06083146e-03\\n3.07457238e-01 5.11004739e-02 2.70649523e-01 -4.62229252e-01\\n-2.07568388e-02 5.44111431e-02 -1.12164579e-01 4.69469041e-01\\n-6.26220256e-02 -3.91858853e-02 -1.50895745e-01 -3.26610893e-01\\n3.54949206e-01 -2.06756756e-01 3.33874151e-02 -3.09111215e-02\\n1.58977166e-01 -1.04800411e-01 -3.96268159e-01 1.30663896e-02\\n-6.11656867e-02 -2.18216013e-02 3.88470367e-02 -8.45728740e-02\\n-1.09434627e-01 1.69175327e-01 -5.54477572e-01 -2.80432850e-01\\n-2.28204489e-01 -2.01934844e-01 -3.81503515e-02 -3.36068630e-01\\n-2.75622830e-02 4.54678480e-03 -5.61823428e-01 2.57604212e-01\\n-2.42950663e-01 4.13868725e-02 1.85902253e-01 -3.71826030e-02\\n-3.94733220e-01 -1.16791040e-01 1.82782650e-01 2.67799735e-01\\n-4.26501065e-01 -2.85840482e-01 -1.79065987e-01 -1.01120269e+00\\n3.42170954e-01 -1.01692127e-02 -1.61983579e-01 7.43151829e-02\\n-6.42531812e-02 -4.38110530e-01 1.82017937e-01 -4.11552280e-01\\n1.08640259e-02 -4.04396839e-02 -2.23701164e-01 -4.07810837e-01\\n1.00275818e-02 -4.27294336e-02 -3.88590395e-01 3.56478006e-01\\n-3.15937817e-01 3.46748203e-01 -6.53120503e-02 4.59495522e-02\\n-1.14705622e-01 -2.52766013e-01 8.38349611e-02 -5.56684434e-01\\n-3.03688258e-01 -1.28585994e-01 -1.83156386e-01 -1.06610641e-01\\n1.17060021e-02 -2.17513263e-01 -3.52430344e-02 1.97418451e-01\\n1.72093764e-01 1.06367409e-01 -1.08669750e-01 -1.81132883e-01\\n1.56099394e-01 -4.76025224e-01 -1.41031429e-01 -1.44431606e-01\\n-4.40223999e-02 -1.11723728e-01 1.47973135e-01 7.04523697e-02\\n7.12842867e-02 -4.80743527e-01 2.86651909e-01 -2.84896106e-01\\n-2.45153829e-01 1.28622070e-01 1.64929740e-02 1.32092973e-02\\n3.29000294e-01 -3.37832719e-01 -9.96440053e-02 3.72340977e-01\\n8.88073444e-02 3.78702544e-02 2.35822976e-01 -8.81805569e-02\\n-1.49215400e-01 3.30749512e-01 -3.15486938e-01 2.63718404e-02\\n6.98373973e-01 1.90262616e-01 9.02026668e-02 2.58785456e-01\\n2.44782791e-01 4.50480014e-01 4.71764624e-01 8.40917453e-02\\n-4.38632704e-02 3.09083372e-01 5.00782430e-02 -6.15933776e-01\\n7.87890106e-02 2.21341863e-01 -3.74874234e-01 -2.66077548e-01\\n7.13023007e-01 5.54728568e-01 -3.27520937e-01 -3.59730303e-01\\n-2.09611103e-01 -2.02354640e-01 5.48216440e-02 -1.35842815e-01\\n1.85828045e-01 -2.25184500e-01 5.31072676e-01 6.34314269e-02\\n6.73865974e-02 5.11043251e-01 -1.76499322e-01 -3.05498660e-01\\n2.19641998e-02 9.28847119e-02 1.71622951e-02 4.09971327e-01\\n-1.35802403e-01 2.72094071e-01 7.55511671e-02 1.72442526e-01\\n7.27754459e-03 1.07045107e-01 1.70932084e-01 4.37561683e-02\\n1.51494946e-02 1.41690448e-01 3.35461318e-01 4.06946450e-01\\n3.77778471e-01 4.49277699e-01 1.18560247e-01 7.72049651e-02\\n4.98613536e-01 4.22372580e-01 4.29738134e-01 2.41597727e-01\\n-3.64244729e-02 2.07997896e-02 9.60848406e-02 1.38600366e-02\\n3.32520545e-01 2.02445805e-01 3.99532449e-03 8.80671203e-01\\n3.58370930e-01 2.32937127e-01 7.49207735e-01 -5.55444956e-01\\n-4.16938573e-01 -6.04336672e-02 3.95586580e-01 -4.42445785e-01\\n-1.39280140e-01 2.71351300e-02 -1.79536030e-01 2.18659312e-01\\n-4.83717054e-01 -2.11906269e-01 -6.50843978e-02 7.45628849e-02\\n1.55473769e-01 -6.60997108e-02 -2.73886591e-01 -1.77889764e-01\\n-1.19334817e-01 -1.11828156e-01 -5.60436964e-01 -5.93681820e-02\\n-1.50508687e-01 -2.87652850e-01 -1.60729647e-01 -2.29622558e-01\\n9.93097797e-02 -4.38541353e-01 -1.25602707e-01 8.14137831e-02\\n2.10243061e-01 -1.96462572e-01 -1.91207565e-02 -1.63799062e-01\\n1.83577821e-01 2.71562725e-01 5.28674424e-01 8.54550395e-03\\n2.86843013e-02 -2.28329495e-01 -1.57934085e-01 1.20246768e-01\\n1.61668554e-01 1.06884420e-01 4.17200625e-02 3.60063672e-01\\n-4.93261755e-01 -2.28363872e-01 -4.94004367e-03 4.95610327e-01\\n-5.34731805e-01 5.16384728e-02 1.27258927e-01 3.69000763e-01\\n7.84299448e-02 1.09779142e-01 -2.43840501e-01 -1.68955289e-02\\n-2.51476824e-01 -4.49062765e-01 2.29091465e-01 8.06512833e-02\\n-2.37363219e-01 8.01083297e-02 1.43477008e-01 1.26853123e-01\\n-2.99325407e-01 -1.83748484e-01 1.67026483e-02 6.95167556e-02\\n2.28798121e-01 2.74497837e-01 -2.48493433e-01 -3.25102091e-01\\n-2.86812544e-01 2.11732551e-01 -3.20209473e-01 1.08442195e-01\\n-1.02145694e-01 2.75868207e-01 1.14608206e-01 1.62649244e-01\\n2.96929747e-01 7.58127775e-03 -1.00372918e-01 -1.98613197e-01\\n-2.49478415e-01 -2.74205685e-01 1.48216516e-01 -1.29538197e-02\\n1.23021118e-01 -4.64434981e-01 -6.59101009e-02 -7.58287087e-02\\n-1.89195901e-01 -3.49921525e-01 -4.17447165e-02 -1.93490058e-01]]',\n", + " 'We are currently looking on behalf of one of our important clients for a C# Software Engineer. This role is a permanent position based in Zug Canton. Your Role: Support the development of a new software platform for the operation of future machines. Assist in the design & implementation of operating software in C # with the .NET Framework. Actively participate within a motivated Scrum team. Utilize agile development methods & tools (TDD, BDD). Your Skills: Sound software knowledge & experience in C#. Good database experience & know-how (entity framework, SQL server). Interested in GUI programming (WPF), experience in this area is advantageous. Your Profile: Completed Computer science university degree. Innovative, precise, adaptable & dynamic. Self-driven, systematic, time-conscious & a networked mindset. Fluent German & English (spoken & written). If you wish to apply, please send us your resume in Word format with some references. You can also register on our website which will allow you to receive other exclusive and confidential job offers.',\n", + " '[\"Innovation\", \"Adaptability\", \"Operations\", \"Positivity\"]',\n", + " '[\"Tooling\", \"Test-Driven Development (TDD)\", \"Activism\", \"Programming (Music)\", \"Receivables\", \"C# (Programming Language)\", \"Knowledge Management Software\", \"Scrum (Software Development)\", \"Computer Science\", \"Machining\", \"Microsoft SQL Servers\", \"Agile Product Development\", \"Vienna Development Methods\", \"Entity Framework\", \"Software Engineering\", \".NET Framework\"]',\n", + " \"['English', 'Afar']\"],\n", + " ['65',\n", + " 'phd student – early stage researcher: mechanoregulation of bone remodeling in type 2 diabetes using hrpqct in vivo patient data',\n", + " 'Zürich',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-3.61084938e-01 3.28587145e-01 2.76164651e-01 -9.28510427e-02\\n6.49298191e-01 1.35862995e-02 -6.90809637e-03 2.21510023e-01\\n1.81158632e-01 -3.24455231e-01 -9.57857296e-02 -2.59691834e-01\\n-1.89066138e-02 3.70033830e-01 1.45472586e-01 5.93089700e-01\\n3.31340075e-01 -4.95083481e-02 -8.31281841e-02 4.72207069e-01\\n1.16403446e-01 -1.36472121e-01 7.22969994e-02 9.50641692e-01\\n2.37537593e-01 -1.16547465e-01 -5.68534620e-02 1.51059613e-01\\n-1.77686661e-02 -1.78920120e-01 5.08162081e-01 1.52124137e-01\\n-2.97667593e-01 -4.56207186e-01 9.84854251e-02 2.64256805e-01\\n-4.45431948e-01 -2.91401625e-01 -1.11059397e-01 1.64851949e-01\\n-6.21417582e-01 -2.35254303e-01 -2.71845818e-01 6.44758493e-02\\n-2.73518682e-01 -2.36374348e-01 1.24753036e-01 2.70575862e-02\\n1.19366519e-01 2.08162695e-01 -5.02674460e-01 1.23291388e-01\\n-4.39906307e-02 -3.64983618e-01 3.32933575e-01 6.65546894e-01\\n-1.78001702e-01 -3.42661977e-01 -4.19860154e-01 -2.56538212e-01\\n-2.90071368e-02 1.60309337e-02 6.16111495e-02 -4.53401744e-01\\n2.56655633e-01 1.26008630e-01 1.06737182e-01 2.96377838e-01\\n-6.30333662e-01 -2.03433692e-01 -3.29169393e-01 2.44472653e-01\\n-3.08683991e-01 2.42642522e-01 -1.86428204e-01 -1.95883796e-01\\n-7.24531710e-02 3.43621075e-01 1.08725324e-01 -2.30390485e-02\\n-9.71359387e-02 2.16939032e-01 -3.43681455e-01 4.19914246e-01\\n2.34886616e-01 3.50113332e-01 1.71262830e-01 4.40149128e-01\\n-6.26241207e-01 3.20412576e-01 1.25201628e-01 -2.07235649e-01\\n1.77323759e-01 1.40484661e-01 5.14372945e-01 4.61128354e-03\\n2.15050474e-01 8.77649859e-02 -3.88323724e-01 3.41275156e-01\\n2.62315601e-01 -2.42858231e-01 1.17811307e-01 2.61902437e-03\\n-3.54387537e-02 -5.29950000e-02 9.18288454e-02 7.94024915e-02\\n-3.77274513e-01 2.64475465e-01 8.22714120e-02 -3.65181863e-01\\n-2.81330228e-01 -6.48063719e-01 -7.85733387e-02 -5.63287660e-02\\n-4.82087694e-02 8.24040025e-02 8.05607364e-02 2.07443818e-01\\n-1.12539493e-02 1.43703520e-02 1.23929679e-01 9.50008333e-01\\n-2.08234161e-01 -1.31221831e-01 -1.25849634e-01 1.38870567e-01\\n1.70827031e-01 -1.06971957e-01 2.31381238e-01 3.15487832e-01\\n-5.58151007e-02 -4.42804068e-01 -1.79112941e-01 2.30638325e-01\\n-1.85967386e-02 -2.12863773e-01 -1.86659589e-01 3.50769043e-01\\n1.30117849e-01 -5.25954723e-01 6.07167125e-01 2.80802138e-04\\n2.15620399e-02 -2.43595988e-01 -5.20206280e-02 -4.25676331e-02\\n9.66767967e-02 1.40791044e-01 2.10005835e-01 2.71844678e-02\\n-2.25747049e-01 -2.22363442e-01 -1.41907990e-01 1.42674640e-01\\n-3.85888100e-01 2.49722123e-01 -1.54603645e-01 -1.00247271e-01\\n2.46747106e-01 -1.47111058e-01 -2.54387498e-01 2.19288766e-01\\n-1.44485235e-01 -4.40407172e-03 1.01596966e-01 4.29198205e-01\\n-3.34210634e-01 2.58009344e-01 -1.38014644e-01 -3.46726179e-01\\n5.27901173e-01 -1.33448802e-02 2.68023312e-01 7.60085210e-02\\n2.27619499e-01 -3.61681134e-02 1.58852518e-01 2.12480932e-01\\n-7.84036756e-01 3.10781538e-01 8.13880004e-04 -2.27028549e-01\\n1.64633125e-01 -1.42268807e-01 4.55087662e-01 -1.78776667e-01\\n-4.87127267e-02 -1.70869797e-01 -1.57208025e-01 -2.98696995e-01\\n-1.17961317e-05 1.56716518e-02 3.15743208e-01 -3.30238402e-01\\n2.12439224e-02 1.88066036e-01 -4.53880668e-01 -2.45646298e-01\\n-5.06324917e-02 1.26994878e-01 9.38456357e-02 1.83935612e-01\\n-1.01030901e-01 -7.54710913e-01 -3.94705161e-02 -5.88665068e-01\\n-1.29491538e-01 4.57405485e-02 -3.15772206e-01 1.67572889e-02\\n-5.74522950e-02 -6.57691211e-02 -4.53795977e-02 -1.55541115e-03\\n-3.17944407e-01 1.96331829e-01 -1.44837111e-01 -1.41101554e-01\\n1.99678034e-01 5.67492135e-02 -2.48701766e-01 5.06205499e-01\\n-4.23555635e-02 6.48100436e-01 1.13813825e-01 -7.30357766e-01\\n5.80462933e-01 4.66924667e-01 9.31900144e-02 -3.81214410e-01\\n6.22294724e-01 -3.55563760e-01 -9.96731222e-02 6.55058026e-02\\n-3.70983928e-01 -1.20518364e-01 1.34517983e-01 -4.14276004e-01\\n-3.89038801e-01 5.05153477e-01 9.31313634e-02 6.51575327e-02\\n3.76953185e-01 -2.76894957e-01 -8.20210576e-02 2.11545110e-01\\n-4.12440062e-01 -2.57177204e-01 -5.28929114e-01 -1.06125869e-01\\n-1.33419290e-01 -4.23412144e-01 -1.75747111e-01 -4.15494740e-01\\n4.06174473e-02 -2.46146098e-01 -1.30977511e-01 1.43215939e-01\\n1.85931578e-01 8.27737376e-02 -8.45251828e-02 -7.21845627e-02\\n-1.01212174e-01 -6.02093756e-01 -1.41068906e-01 -7.48918280e-02\\n4.25427318e-01 3.51928025e-02 2.49494910e-01 1.55557007e-01\\n-7.74621964e-02 6.27552390e-01 -3.04476440e-01 -4.36766863e-01\\n3.01586129e-02 2.22348675e-01 -2.42346227e-02 2.75372155e-02\\n1.59780771e-01 3.37330133e-01 -4.06057715e-01 -3.62166017e-02\\n-2.38324717e-01 1.13779537e-01 3.09523672e-01 5.60073331e-02\\n-8.41161385e-02 -1.50067329e-01 -1.22973941e-01 2.47111320e-01\\n-5.84987283e-01 -1.82397723e-01 1.57037154e-01 1.41326040e-01\\n2.33085036e-01 9.58670452e-02 1.37113199e-01 -4.19024676e-02\\n-2.17527062e-01 -3.17130178e-01 3.02198887e-01 1.08462170e-01\\n-3.22339311e-02 1.22121245e-01 6.82801902e-02 -6.02351189e-01\\n-2.85117745e+00 5.93179166e-02 1.37583643e-01 -1.15361191e-01\\n4.56877589e-01 -2.30708662e-02 4.11482118e-02 -5.15934452e-03\\n-3.41351897e-01 6.10282756e-02 -2.27149233e-01 -3.89910281e-01\\n9.92292166e-02 1.06226429e-01 5.22809476e-02 -7.45702684e-02\\n7.41493981e-03 -3.20688903e-01 7.15634376e-02 3.47479999e-01\\n-5.98031431e-02 -7.45422125e-01 5.90668470e-02 -5.47338948e-02\\n-3.96353267e-02 8.07445347e-02 -6.11271501e-01 -1.63533106e-01\\n-4.03904319e-01 -1.87875688e-01 5.04123606e-02 -6.13436818e-01\\n3.21242362e-02 2.41304278e-01 2.53080785e-01 8.21770653e-02\\n-1.66876167e-01 -3.00308645e-01 -1.20393664e-01 -5.99188089e-01\\n3.11165676e-02 -5.59059024e-01 -1.19575620e-01 -2.21527830e-01\\n7.66469955e-01 -1.47902101e-01 2.93502301e-01 2.36928374e-01\\n-7.30897635e-02 1.80985630e-01 1.38683781e-01 6.86880201e-02\\n-1.35617405e-01 -1.95889473e-01 5.43150976e-02 -3.30621034e-01\\n4.70763981e-01 3.12588811e-01 -1.76496953e-01 -2.01320037e-01\\n1.35294959e-01 -8.79688710e-02 -6.67126596e-01 -2.44966820e-01\\n-1.08083978e-01 -2.27030978e-01 -7.33378410e-01 -4.36243027e-01\\n-3.79187390e-02 -2.26974964e-01 2.80877501e-02 5.87745428e-01\\n-4.37981308e-01 -1.82717174e-01 -1.04720458e-01 -6.18655443e-01\\n4.13399100e-01 -3.74118030e-01 6.74491078e-02 -2.13746578e-01\\n-1.47823930e-01 -4.48847950e-01 1.29368871e-01 -1.12845033e-01\\n2.92735379e-02 -4.25528824e-01 -5.15560918e-02 -2.37324044e-01\\n-2.84447312e-01 -3.71356308e-01 4.00401533e-01 9.51711759e-02\\n1.87226683e-01 1.10959068e-01 1.18071675e-01 -1.12660803e-01\\n1.25854746e-01 3.11066896e-01 9.35281068e-02 -1.22492261e-01\\n1.37503594e-01 -1.51434168e-01 4.54606265e-01 -2.09972322e-01\\n3.33900005e-02 -3.99553291e-02 -1.86881125e-01 -8.38509873e-02\\n1.78830594e-01 -9.26906541e-02 -5.15444651e-02 -2.31018335e-01\\n4.44370270e-01 -3.42596591e-01 1.81542069e-01 5.00607044e-02\\n6.53216839e-02 5.07696271e-01 1.39248341e-01 -3.03328931e-01\\n-1.46872357e-01 3.74734491e-01 -8.62242579e-02 1.32993430e-01\\n2.82904729e-02 1.41261816e-01 -2.33813196e-01 3.28981638e-01\\n-8.43920186e-02 -2.36202538e-01 -2.43567452e-01 -4.41933274e-02\\n-2.53164649e-01 4.48341727e-01 2.97452182e-01 2.05341324e-01\\n-1.40144795e-01 -3.21907640e-01 -1.93490118e-01 4.64896917e-01\\n3.51755351e-01 2.66030848e-01 3.20448399e-01 -2.56142855e-01\\n1.30316094e-01 3.30595255e-01 -1.96471840e-01 2.52788126e-01\\n-2.50411093e-01 1.11801863e-01 -4.43859816e-01 -2.55618632e-01\\n-4.74757552e-01 -1.71309978e-01 3.85819584e-01 4.09425497e-01\\n2.34281763e-01 -2.31224313e-01 1.92551255e-01 -3.54301631e-01\\n2.04933554e-01 3.27430904e-01 2.41432488e-01 9.17777605e-03\\n-2.66444325e-01 6.33967102e-01 -1.91284884e-02 -2.09098428e-01\\n-1.20462105e-02 -7.53091499e-02 -3.52886260e-01 -2.57586688e-01\\n2.93681379e-02 -5.75502336e-01 -1.58768222e-01 3.50703478e-01\\n1.02242976e-02 -2.30374128e-01 -1.83947295e-01 4.68002856e-01\\n-3.48131061e-02 -2.20827013e-01 -2.99916029e-01 4.25081663e-02\\n3.50501299e-01 6.34225160e-02 2.51878381e-01 -6.65841818e-01\\n5.65611757e-03 4.81096320e-02 1.84341550e-01 5.70549130e-01\\n-1.71361640e-02 -1.24465093e-01 -3.49495053e-01 -2.75277197e-01\\n2.45586738e-01 -5.25507554e-02 4.51037101e-02 1.54164582e-01\\n1.28247678e-01 -1.41811043e-01 -9.09303501e-02 1.51027709e-01\\n9.23011899e-02 -2.88475096e-01 -1.97135374e-01 2.15313196e-01\\n2.07311101e-02 5.10573797e-02 -5.53116560e-01 -3.08149934e-01\\n-8.59047771e-02 2.04420403e-01 6.38841093e-02 -5.12886882e-01\\n-6.72423244e-02 -2.40185559e-01 -5.77669859e-01 3.88313264e-01\\n8.80922377e-03 -9.09276903e-02 2.49724045e-01 -4.78673130e-02\\n-4.13292825e-01 -3.68514836e-01 1.24346502e-01 1.80781066e-01\\n-2.71070033e-01 -4.64349389e-02 -5.43339998e-02 -1.00384665e+00\\n-8.00664537e-03 9.18761492e-02 -9.24835131e-02 1.34709388e-01\\n2.34254263e-02 -5.45975089e-01 6.16194773e-03 -1.87408745e-01\\n-1.36340680e-02 1.05440676e-01 -2.92593181e-01 -1.37602419e-01\\n5.09332195e-02 1.09896854e-01 -2.94827819e-02 3.64978313e-01\\n-1.56485751e-01 2.41762847e-01 -2.52116114e-01 -1.20698847e-01\\n6.45768344e-02 -2.02102229e-01 2.49878049e-01 -7.55651966e-02\\n-2.79168755e-01 -2.24000812e-01 -1.98678702e-01 -3.03685606e-01\\n-1.23382904e-01 -2.56592333e-01 3.85644399e-02 5.51149286e-02\\n3.84173930e-01 -2.19137132e-01 -1.58430427e-01 -1.90816611e-01\\n2.16834292e-01 -3.05792689e-01 1.27230242e-01 -2.03027204e-01\\n-4.04488621e-03 -2.15705097e-01 -4.27992195e-02 2.03782290e-01\\n3.03148508e-01 -2.69393295e-01 3.45122129e-01 -5.52425981e-01\\n-3.32273602e-01 -1.28439620e-01 4.46602181e-02 -4.70814295e-02\\n2.70020127e-01 -4.42331970e-01 -6.16316572e-02 2.61693984e-01\\n2.20926255e-01 -7.24283606e-02 4.53164995e-01 -3.52647364e-01\\n-1.46135271e-01 2.19739288e-01 -2.12063938e-01 2.74295628e-01\\n6.35635018e-01 4.13001627e-01 2.55390555e-01 7.77556896e-02\\n8.50488022e-02 3.01222205e-01 3.55683744e-01 -1.37768593e-03\\n-1.75281912e-02 2.23846480e-01 1.98484123e-01 -3.10332805e-01\\n-2.28675157e-01 -5.44379354e-02 -6.96867332e-02 -2.64990985e-01\\n6.73657298e-01 2.53665566e-01 -3.50987077e-01 2.72557922e-02\\n-2.66683459e-01 -3.22144479e-02 2.89377511e-01 -2.70013548e-02\\n-1.61140561e-02 2.20607728e-01 3.63089800e-01 -2.18365833e-01\\n2.04964548e-01 5.54931879e-01 -6.85661063e-02 -2.03549966e-01\\n-1.02170475e-01 4.58058923e-01 1.85431428e-02 5.09171963e-01\\n-1.37518853e-01 4.85294968e-01 2.01082140e-01 1.81182567e-02\\n3.99593189e-02 8.91623795e-02 2.59618282e-01 -5.45476004e-02\\n1.07334599e-01 1.16664067e-01 1.69964239e-01 4.43341404e-01\\n4.24933493e-01 3.48996162e-01 2.12410212e-01 1.02458283e-01\\n4.63916332e-01 4.24682081e-01 3.86896014e-01 -7.64007717e-02\\n3.15495618e-02 1.12938605e-01 7.18625486e-02 2.72038803e-02\\n3.95092964e-01 2.20636681e-01 2.81954184e-03 8.06094706e-01\\n1.77554280e-01 2.93253362e-01 5.03913224e-01 -5.92058063e-01\\n-2.45988414e-01 1.21644691e-01 5.47745109e-01 -4.31932569e-01\\n1.69809759e-01 9.15464312e-02 3.14895287e-02 2.42416263e-01\\n-3.95929664e-01 -2.71882772e-01 -2.92751677e-02 1.90630317e-01\\n2.47911438e-02 -1.86837018e-01 -1.73255861e-01 -2.92755291e-02\\n-3.48695040e-01 -2.35859185e-01 -4.07738447e-01 -1.91615343e-01\\n-4.59734797e-01 -5.05477190e-02 -1.23921081e-01 -2.37853676e-02\\n8.87342542e-03 -1.22749731e-01 1.36426240e-01 -1.30176293e-02\\n5.29761016e-01 -1.95983544e-01 -1.57551333e-01 -1.19624987e-01\\n4.61156130e-01 3.34240682e-02 5.50945640e-01 -6.39852807e-02\\n-1.90720875e-02 -1.08515240e-01 -3.37603569e-01 2.13397667e-01\\n8.72031450e-02 1.01747707e-01 1.40985668e-01 1.56786501e-01\\n-9.48741660e-02 -1.12475090e-01 3.00998241e-01 3.70730221e-01\\n-3.47086966e-01 1.16772521e-02 -9.10181180e-02 1.40649453e-03\\n-1.20296009e-01 7.01368898e-02 -3.53888631e-01 9.25394371e-02\\n-5.37006781e-02 -5.23194551e-01 3.18812668e-01 -2.67265320e-01\\n-4.32466567e-01 -2.31201109e-03 6.46194220e-01 3.10856938e-01\\n-1.22093856e-01 1.33249193e-01 -1.28152549e-01 2.94523031e-01\\n-6.17559627e-02 1.97734535e-01 -2.49595761e-01 -2.88818419e-01\\n-2.82176256e-01 1.23298079e-01 -2.38412380e-01 1.16936959e-01\\n1.29751891e-01 4.23759699e-01 1.42530710e-01 -3.55143510e-02\\n5.53594887e-01 -1.88345119e-01 -2.18416423e-01 -3.62317026e-01\\n1.07454350e-02 -3.62625390e-01 -1.28734589e-01 -4.46790792e-02\\n1.18773624e-01 -2.75301129e-01 -2.84873784e-01 -4.94203717e-01\\n-1.65761381e-01 -3.01482797e-01 -1.37003541e-01 2.47487221e-02]]',\n", + " '100%, Zurich, temporary The EU-funded Innovative Training Network FIDELIO (www.fidelio-project.eu) aims to train the next generation of scientists in order to tackle the challenges of diabetic bone disease from various angles and with the newest technologies available. Interdisciplinary training and implementation of innovative approaches are key. Within this consortium, we will comprehensively unravel the genetic and environmental mechanisms that contribute to bone fragility in diabetes, identify predictors and clinical markers for patient stratification, decipher the underlying molecular mechanisms of bone fragility in diabetes, and establish potential interventions through a personalised medicine approach. Project background The project will address different aspects of diabetic bone disease from the viewpoints of epidemiology, genetics, miRNAs, microbiome, bone biology, bone biomechanics and microstructure, preclinical and clinical research. It will utilise advanced imaging and computational approaches, diabetes mouse models and access to clinical cohorts and registry data to obtain a comprehensive overview of how these mechanisms combine in diabetes to cause increased fracture risk. With this interdisciplinary approach, we can explore the impact of biological pathways in mouse models and/or humans, and interactions with diet, exercise and other exposures. Collaborations with industry will allow early identification of IP, access to state of the art technologies, and will complement the academic ESR training programme with entrepreneurship and industrial mentoring. This project will be completed at the Institute for Biomechanics, which is a multidisciplinary research unit dedicated to the biomechanical investigation of the musculoskeletal system from macro (organ) to micro (cell) down to nano (molecule) with more than 100 scientists working in the Institute. Professor Müller as the Head of the Laboratory for Bone Biomechanics has pioneered microtomographic imaging (microCT) of biological tissues both in vitro and in vivo, a technology that has been commercialized as a spin-off from ETH Zurich in the mid-1990s and is now successfully used in hundreds of laboratories and companies around the globe for research and development. The research the Laboratory is currently pursuing employs state-of-the-art biomechanical testing and simulation techniques as well as novel bioimaging and visualization strategies for musculoskeletal tissues. Today, these techniques are successfully employed for the quantitative assessment and monitoring of structure function relationships in tissue regeneration, growth and adaptation. These approaches are now often used for precise phenotypic characterization of tissue response in mammalian genetics, mechanobiology as well as tissue engineering and regenerative medicine. More information about the laboratory can be found at www.bone.ethz.ch. Job description Your PhD project: You will develop novel bone imaging and computational methods for mechanobiological bone remodeling studies from bench (supercomputer) to the bedside (clinical computing) in the hospital environment. These approaches will then be used to investigate the effects of diabetes on local mechanoregulation of bone remodeling in T1D and T2D as well as appropriate controls, identifying its relationship to bone fragility, and the biomarkers, which are directly linked to this impairment in mechanoregulation. This will allow to describe alterations in the mechanobiological control of bone remodelling in T2D and identification of novel biomarkers predicting disturbed mechanoregulation in T2D patients using state-of-the-art high-resolution patient imaging and computational modeling. Secondments: You will embark on secondments to other FIDELIO partners (USFD (UK), IBM (CH)) to access experimental models or tools or receive training not available in the home laboratory. This will include training in how HRpQCT imaging is used in clinical practice in Sheffield as well as code optimization at IBM in Zurich. Total secondment time is 4 months. Benefits of working in an ITN: You will be working within our highly international group of more than twenty researchers with experience in a broad range of sciences. You will get in contact with the other members of this international consortium and will benefit from the joint training platform to develop skills necessary for developing a thorough understanding of the mechanisms of Diabetes and the bone metabolism and for obtaining industry skills. Your profile Applicants must hold a MSc or equivalent in the field of biomedical engineering, mechanical engineering, electrical engineering or a related discipline. Applicants must have a solid knowledge of computer modeling and simulation using Python. Experience with imaging and image processing is desired. Strong interest to work with human clinical data is a prerequisite. Applicants can be of any nationality. Applicants must have the ability to understand and express themselves in both written and spoken English to a level that is sufficiently high for them to derive the full benefit from the network training. Applicants must be eligible to enroll on a PhD program at the host institution. In addition: H2020 MSCA Mobility Rule: researchers must not have resided or carried out their main activity (work, studies, etc.) in the country of the host organization (Switzerland) for more than 12 months in the 3 years immediately before the recruitment date. Compulsory national service, short stays such as holidays, and time spent as part of a procedure for obtaining refugee status are not taken into account. H2020 MSCA eligibility criteria: Early Stage Researchers (ESRs) must, at the date of recruitment by the host organization, be in the first four years (full-time equivalent research experience) of their research careers and have not been awarded a doctoral degree. Full-Time Equivalent Research Experience is measured from the date when the researcher obtained the degree entitling him/her to embark on a doctorate (either in the country in which the degree was obtained or in the country in which the researcher is recruited, even if a doctorate was never started or envisaged). ETH Zurich ETH Zurich is one of the world’s leading universities specialising in science and technology. We are renowned for our excellent education, cutting-edge fundamental research and direct transfer of new knowledge into society. Over 30,000 people from more than 120 countries find our university to be a place that promotes independent thinking and an environment that inspires excellence. Located in the heart of Europe, yet forging connections all over the world, we work together to develop solutions for the global challenges of today and tomorrow. Working, teaching and research at ETH Zurich Get connected Interested? We look forward to receiving your online application. Please note that we exclusively accept applications submitted through our online application portal. Applications via email or postal services will not be considered. Planned key dates: Recruitment event in Rome: 25 November 2019 Expected start date: 1 January 2020 Further information about the Laboratory for Bone Biomechanics at the Institute of Biomechanics, ETH Zurich can be found on our website www.bone.ethz.ch. For further information on the job, please contact Dr. Caitlyn Collins, email caitlyn.collins@hest.ethz.ch (no applications).',\n", + " '[\"Research\", \"Adaptability\", \"Collaboration\", \"Planning\", \"Investigation\", \"Hospitality\", \"Innovation\", \"Teaching\"]',\n", + " '[\"Research Experiences\", \"Tooling\", \"Accessioning\", \"Molecular Mechanics\", \"Human Musculoskeletal Systems\", \"IP Access Controllers\", \"Interactivity\", \"Forging\", \"Prediction\", \"Genetics\", \"Staging\", \"Regenerative Medicine\", \"Mechanicals\", \"Industrialization\", \"Visualization\", \"Metabolism\", \"Activism\", \"Biomechanical Engineering\", \"Alterations\", \"IBM System Z10 (IBM System/360 Mainframe Line)\", \"Python (Programming Language)\", \"Biomechanics\", \"Levelling\", \"Multidisciplinary Research\", \"Experimentation\", \"Bones\", \"Clinical Practices\", \"DR-DOS\", \"Environmentalism\", \"Hosting\", \"Mobility\", \"Entrepreneurship\", \"Image Processing\", \"Short Message Service\", \"Library For WWW In Perl\", \"Biology\", \"Electrical Engineering\", \"Accounting\", \"High Resolution Transmission (HITRAN)\", \"Clinical Research\", \"Supercomputing\", \"Mechanical Engineering\", \"Biomedical Engineering\", \"Tissue Engineering\", \"Simulations\", \"Genetic Epidemiology\", \"Humanism\", \"Imaging\", \"Receivables\", \"Clinical Data Warehouse\", \"Macros\", \"Research And Development\", \"Phenotyping\", \"Additives\", \"Microstructure\", \"Derivatives\", \"Job Descriptions\", \"Commercialization\", \"National Lifeguard Service\", \"Advanced Imaging Technology\", \"Controllability\"]',\n", + " \"['English', 'Bengali']\"],\n", + " ['28',\n", + " 'software engineer i',\n", + " 'Winterthur',\n", + " 'Other Retail Shops',\n", + " 'www.vistaprint.com',\n", + " '[[-1.46163195e-01 1.71113238e-01 4.66797113e-01 5.53838871e-02\\n4.20227647e-01 -1.58884525e-01 -4.16147262e-02 4.43766683e-01\\n-9.35825109e-02 -4.80728626e-01 3.88963968e-02 -3.26600105e-01\\n-1.87427670e-01 1.96273729e-01 -5.01057096e-02 3.97745907e-01\\n3.63682806e-01 1.97118402e-01 -2.38805145e-01 4.65820909e-01\\n1.01898275e-02 -1.12345316e-01 1.17634408e-01 8.16184521e-01\\n3.36386561e-01 -1.03825256e-01 -4.96122427e-02 3.22559774e-02\\n-1.65846005e-01 -1.45188764e-01 4.37692285e-01 -7.35012675e-03\\n-1.03962697e-01 -5.24176061e-01 1.44371808e-01 -1.85875632e-02\\n-1.54427648e-01 -1.48249179e-01 -4.67636101e-02 9.60435420e-02\\n-5.56345284e-01 -2.28687197e-01 -5.14186770e-02 -1.10667355e-01\\n-1.59056157e-01 -2.67110348e-01 2.05228120e-01 2.20642649e-02\\n1.77653193e-01 2.84103602e-02 -4.92379516e-01 2.39396155e-01\\n-2.77157366e-01 -2.20015064e-01 3.82644057e-01 5.54207325e-01\\n-2.84191407e-02 -3.71416450e-01 -5.92015922e-01 -3.39071721e-01\\n1.27389058e-01 -1.09641053e-01 4.38997895e-03 -4.94682044e-01\\n2.28655457e-01 -5.28914966e-02 9.05330200e-03 2.37366065e-01\\n-7.60411620e-01 -2.45650802e-02 -2.93206990e-01 -1.24452502e-01\\n-3.05722415e-01 -1.49393260e-01 -2.48755187e-01 8.40157196e-02\\n-1.03683658e-01 2.73417741e-01 9.43994820e-02 8.14713165e-02\\n-2.72129744e-01 3.92516732e-01 -7.83989653e-02 4.98235226e-01\\n2.02485204e-01 1.82302445e-01 1.61621466e-01 3.36640477e-01\\n-2.79509485e-01 4.42804456e-01 1.56671673e-01 -3.79093170e-01\\n4.20166850e-01 7.46823996e-02 4.05205667e-01 -1.57070726e-01\\n3.32912296e-01 1.48751944e-01 -3.49645942e-01 4.09971237e-01\\n2.37364724e-01 -3.21680099e-01 3.88196409e-02 -8.36503804e-02\\n1.37042284e-01 8.06037337e-04 2.34692276e-01 1.99984699e-01\\n-2.47977048e-01 4.56486583e-01 5.93315475e-02 -3.34587216e-01\\n-1.42305672e-01 -3.47569048e-01 2.10649595e-02 8.25375915e-02\\n1.12211853e-01 2.56348215e-02 1.51444256e-01 4.66127880e-02\\n2.65702397e-01 -9.77595896e-03 1.21374466e-01 7.64115214e-01\\n-1.31570399e-01 -5.20777516e-02 -2.55875498e-01 2.36056462e-01\\n7.68154636e-02 -4.45404232e-01 2.55826265e-01 1.72602445e-01\\n2.61351373e-02 -2.49825284e-01 -2.24296823e-01 3.50291431e-01\\n3.92442383e-03 -2.32758462e-01 -2.60556340e-01 2.16243207e-01\\n1.27570748e-01 -3.27882051e-01 5.85680366e-01 8.98332968e-02\\n1.99152604e-01 -6.77931234e-02 1.44166183e-02 -1.99537188e-01\\n-1.36251673e-01 2.06851996e-02 1.24417298e-01 1.70193404e-01\\n-2.26242632e-01 -2.46868432e-01 -1.54425636e-01 5.26138209e-02\\n-5.34411788e-01 1.52389854e-01 -3.67793515e-02 -7.33436495e-02\\n2.76033908e-01 -4.39808369e-02 -3.14819157e-01 2.74012685e-01\\n-1.03526771e-01 1.75809741e-01 -4.66045700e-02 5.16864955e-01\\n-1.85984403e-01 3.08557272e-01 -4.25904244e-02 2.54248492e-02\\n6.64497614e-01 1.32791340e-01 1.16279930e-01 8.52632523e-02\\n3.02793056e-01 -2.63453759e-02 9.30293649e-02 1.10445246e-01\\n-7.53877103e-01 1.70320198e-01 -1.40085248e-02 -1.12650298e-01\\n7.17276111e-02 -1.89993590e-01 1.72430262e-01 -3.34251285e-01\\n-5.46046421e-02 -1.55678064e-01 -2.32859612e-01 -2.45790005e-01\\n-2.67581999e-01 6.62603974e-03 2.78061628e-01 -4.30807233e-01\\n-2.41520762e-01 9.47662294e-02 -5.07410586e-01 -8.43483955e-02\\n5.29079139e-02 2.17538640e-01 1.56447232e-01 8.77121538e-02\\n-1.68018803e-01 -6.52917624e-01 -4.51307818e-02 -3.01991999e-01\\n-2.87665725e-01 7.08874166e-02 -3.79731297e-01 2.71716237e-01\\n1.31506249e-01 3.71458381e-02 -9.51009244e-02 1.01904616e-01\\n-2.52953410e-01 -8.76047164e-02 4.14223671e-02 -6.21991977e-02\\n2.32002690e-01 1.33734271e-01 -4.54527318e-01 4.66908604e-01\\n-1.90215588e-01 4.10596371e-01 7.26781785e-02 -8.59197617e-01\\n5.03208518e-01 3.53125066e-01 -1.18675627e-01 -3.60602021e-01\\n5.39499998e-01 -2.77513832e-01 -1.06742412e-01 8.46317261e-02\\n-3.23545635e-01 -3.45598221e-01 2.02871501e-01 -2.71659613e-01\\n-2.50056356e-01 4.37746704e-01 5.13000116e-02 1.08745754e-01\\n2.86217153e-01 -2.27608815e-01 -8.26942995e-02 9.79934335e-02\\n-5.03054745e-02 -2.11702362e-01 -5.93372941e-01 -2.58419007e-01\\n-8.99068788e-02 -4.10960943e-01 -7.77280629e-02 -4.71552610e-01\\n-7.71067441e-02 -2.96306252e-01 -1.85870215e-01 2.19923317e-01\\n3.17015290e-01 -4.84537333e-04 -1.11927852e-01 1.02281258e-01\\n-3.70614439e-01 -6.18446529e-01 1.49108283e-03 2.00701624e-01\\n3.81382674e-01 1.36111170e-01 1.65045083e-01 -8.82512704e-03\\n8.36737975e-02 6.51987672e-01 -1.68829322e-01 -2.31326655e-01\\n9.19544250e-02 2.57757783e-01 1.40662044e-01 -2.00937808e-01\\n6.87688366e-02 3.87565821e-01 -2.01467216e-01 7.36644864e-02\\n-3.51887681e-02 -1.44185379e-01 4.98791933e-01 -3.11776483e-03\\n-3.67383540e-01 -2.53393590e-01 3.01067671e-03 2.54554898e-02\\n-4.64941442e-01 -1.90199688e-01 5.13863921e-01 1.17186822e-01\\n2.14516491e-01 9.77885425e-02 7.36309290e-02 -2.10194699e-02\\n-1.56468779e-01 -4.03157949e-01 3.45855594e-01 6.27564788e-02\\n1.45954788e-02 1.47687286e-01 1.90193392e-02 -6.55214906e-01\\n-3.37130022e+00 -1.53742388e-01 1.79679394e-01 -1.78142369e-01\\n7.31970742e-02 -1.01995833e-01 8.72071832e-03 -1.63684934e-01\\n-2.66424328e-01 1.68241173e-01 -1.04883589e-01 -2.48137072e-01\\n1.77823544e-01 2.20620424e-01 1.74298391e-01 1.84748322e-01\\n3.69937956e-01 -1.47180319e-01 -1.46352232e-01 2.62711883e-01\\n-1.69852525e-01 -6.24880314e-01 2.54353166e-01 -9.83506441e-02\\n3.58698606e-01 3.42535615e-01 -2.85995305e-01 -2.38133520e-01\\n-3.06007862e-01 -9.82041955e-02 -7.30580539e-02 -2.04237938e-01\\n-1.39559716e-01 1.63379759e-01 2.65420616e-01 -1.32580370e-01\\n7.96079487e-02 -5.63761413e-01 -2.81801462e-01 -4.50056612e-01\\n2.00596407e-01 -5.28283060e-01 -3.61130573e-02 -1.87114328e-01\\n6.77348793e-01 -3.06402564e-01 -2.91271489e-02 -5.46580330e-02\\n1.65745988e-01 1.81888431e-01 2.65515834e-01 4.55128290e-02\\n-1.99648887e-01 -2.46611252e-01 -6.34835139e-02 -2.20695898e-01\\n7.48886287e-01 4.02317047e-01 -2.01095000e-01 -1.98692918e-01\\n7.29349256e-02 -2.64845848e-01 -4.19083923e-01 -1.71127707e-01\\n-3.23032886e-02 -2.44821966e-01 -6.30479753e-01 -2.84272730e-01\\n-1.00029647e-01 -7.38135725e-02 -3.74748819e-02 7.00489044e-01\\n-3.74094367e-01 -3.44807088e-01 7.15085566e-02 -5.07930636e-01\\n2.90222228e-01 -1.48662910e-01 6.23605736e-02 -2.45675027e-01\\n-1.98435098e-01 -3.80778491e-01 -8.03094953e-02 2.91951261e-02\\n-8.15168023e-02 -4.02599156e-01 7.26205185e-02 -6.39408827e-03\\n-2.52889574e-01 -4.11919296e-01 4.70370322e-01 2.63027698e-01\\n2.65995711e-01 1.27306521e-01 3.30470800e-01 -1.84424192e-01\\n2.82639563e-01 -6.17937669e-02 -5.71980402e-02 -3.91812444e-01\\n1.54819742e-01 1.07730925e-02 4.93938088e-01 -1.17999792e-01\\n-3.13853659e-02 1.99143782e-01 -2.66262680e-01 -1.70429021e-01\\n3.61303031e-01 4.81863320e-02 2.02667899e-02 -1.93663031e-01\\n2.19138905e-01 -4.41497445e-01 -1.54725328e-01 -2.18948349e-03\\n2.49586582e-01 6.89431787e-01 -2.96515785e-02 -3.57319236e-01\\n-1.59913257e-01 5.35050035e-01 -9.36878324e-02 3.26596200e-04\\n-1.77487567e-01 2.14881256e-01 -2.57017791e-01 1.80048257e-01\\n1.55093046e-02 -1.08107299e-01 -2.36510128e-01 -1.70655891e-01\\n-7.03066736e-02 3.89132828e-01 1.95733756e-01 1.37950301e-01\\n7.09804446e-02 -5.51052332e-01 -1.55699998e-01 2.28052050e-01\\n1.95938617e-01 5.32758355e-01 1.54826671e-01 -2.61534274e-01\\n-1.12840533e-01 4.63246286e-01 -5.06991446e-02 1.49419650e-01\\n-1.41825914e-01 1.77747697e-01 -5.52128434e-01 -2.98772395e-01\\n-3.89599353e-01 -2.98556477e-01 2.05212206e-01 2.46808082e-01\\n8.19016993e-02 -5.39792851e-02 -4.08087485e-03 -4.28677022e-01\\n1.97892338e-01 1.36802316e-01 1.95591718e-01 7.86393881e-02\\n-8.72688070e-02 4.94079769e-01 -6.15625978e-02 -1.92103252e-01\\n-1.84758395e-01 3.15150432e-02 -7.51470998e-02 -4.27529961e-02\\n2.30865534e-02 -5.60471535e-01 -1.78013757e-01 3.09324920e-01\\n9.01169777e-02 -2.83116668e-01 -2.71349967e-01 2.79075801e-01\\n-4.68657985e-02 -2.19806820e-01 -1.79476231e-01 -1.54685915e-01\\n3.27635050e-01 5.66460267e-02 3.60678196e-01 -4.10839409e-01\\n-9.97240841e-02 3.21704000e-02 -6.36067092e-02 5.11012793e-01\\n-1.07976757e-01 -7.88317323e-02 -2.06011221e-01 -1.02699585e-01\\n4.60814416e-01 -1.36594877e-01 -1.89562261e-01 -1.59287155e-02\\n1.04157135e-01 -2.16106862e-01 -5.71643710e-01 1.62658244e-01\\n-3.05543672e-02 -2.02070534e-01 8.04508552e-02 2.32725978e-01\\n1.10799097e-01 3.08678359e-01 -6.22317910e-01 -1.39753997e-01\\n-1.98766872e-01 -2.47482229e-02 4.02351618e-02 -4.57359940e-01\\n2.60849558e-02 -1.26307324e-01 -4.20103610e-01 1.47347718e-01\\n-2.33219087e-01 -1.93879306e-01 1.80602640e-01 3.51906307e-02\\n-3.49939108e-01 -6.79531097e-02 1.03113078e-01 2.99215704e-01\\n-1.89096361e-01 -3.52712482e-01 1.56677499e-01 -9.17764664e-01\\n2.47833848e-01 2.71572284e-02 -2.23856956e-01 9.61849540e-02\\n-9.34985206e-02 -6.63880169e-01 5.26410714e-02 -2.60578394e-01\\n-2.14202404e-01 -3.36812064e-02 -3.20480227e-01 -2.75421351e-01\\n1.55745998e-01 -8.85835439e-02 -3.56480300e-01 3.40084165e-01\\n-3.59072983e-01 3.23091328e-01 -2.36652255e-01 1.17041871e-01\\n3.43763530e-02 -2.94440836e-01 1.09596096e-01 -3.86905730e-01\\n-5.49110055e-01 -1.00202173e-01 -2.64312327e-01 -3.15054893e-01\\n-7.00882301e-02 -4.41363454e-01 -5.72110340e-02 7.11485818e-02\\n4.59392309e-01 9.05359238e-02 -1.36750177e-01 -1.15451768e-01\\n-3.40788253e-02 -3.56907278e-01 7.26398006e-02 1.02668598e-01\\n1.55519764e-03 -2.54705071e-01 2.27840379e-01 1.46333992e-01\\n2.24907130e-01 -4.68084514e-01 4.59728122e-01 -4.39875633e-01\\n-2.44068474e-01 -1.18797287e-01 7.80999884e-02 7.70549178e-02\\n4.01729137e-01 -5.99281788e-01 1.71531886e-02 3.42174232e-01\\n7.24139363e-02 1.09081909e-01 2.13860571e-01 -1.04013726e-01\\n-2.64692102e-02 3.26163828e-01 -2.27465659e-01 5.56377470e-02\\n9.00749922e-01 2.68053040e-02 3.11019216e-02 3.08011949e-01\\n6.11483008e-02 2.59050012e-01 3.72893602e-01 6.09885603e-02\\n-1.25335023e-01 1.03549264e-01 1.37769356e-01 -6.11167550e-01\\n-9.76096094e-02 6.36188984e-02 -2.06888840e-01 -3.86780292e-01\\n6.89473271e-01 3.39909434e-01 -4.51838195e-01 -1.71708256e-01\\n-9.02317464e-02 -1.39459938e-01 2.26252452e-01 -1.24724448e-01\\n3.35663930e-02 -1.58164620e-01 3.78851444e-01 -5.52224591e-02\\n1.38469979e-01 5.73289633e-01 -1.20453872e-01 -2.27971017e-01\\n-2.06403077e-01 2.23047316e-01 4.02129367e-02 5.60875833e-01\\n-2.52434790e-01 2.79964983e-01 -4.58715186e-02 -6.24481663e-02\\n-1.23097286e-01 2.23904222e-01 -2.52625085e-02 9.86318812e-02\\n2.11927369e-01 1.34724170e-01 5.92066467e-01 5.21487594e-01\\n4.42131042e-01 3.67619157e-01 3.33886266e-01 3.15799788e-02\\n5.75708389e-01 5.75531363e-01 4.01065588e-01 1.16815522e-01\\n9.56380740e-03 1.24359563e-01 1.91399425e-01 -3.76120247e-02\\n4.94591355e-01 3.97900760e-01 7.99099058e-02 8.92578602e-01\\n2.73933440e-01 2.77669877e-01 6.26147389e-01 -6.87067866e-01\\n-2.33810633e-01 1.31422445e-01 3.85027707e-01 -3.28353405e-01\\n-1.01892836e-02 2.12227732e-01 -4.30330001e-02 3.42685163e-01\\n-3.91006351e-01 -1.86587393e-01 -1.16514005e-02 2.82917321e-01\\n5.09776995e-02 -1.85549602e-01 -2.06389755e-01 6.16399758e-02\\n-8.01823437e-02 -1.70412250e-02 -4.63164508e-01 -1.30032539e-01\\n-1.70526147e-01 1.08486246e-02 -7.39396960e-02 -2.48876303e-01\\n9.26301442e-03 -3.29158694e-01 -2.75775213e-02 -1.34276748e-01\\n2.15331644e-01 -2.04877406e-01 -3.29123326e-02 -1.11108474e-01\\n3.42388928e-01 1.87776566e-01 5.76064229e-01 -5.16274944e-03\\n1.88917845e-01 -3.61513942e-01 -2.18449175e-01 1.77374214e-01\\n8.69877785e-02 1.36127338e-01 3.70997563e-02 1.12730145e-01\\n-2.65323937e-01 -8.62435400e-02 2.21350789e-01 3.35069835e-01\\n-3.31674188e-01 2.15536430e-02 -2.03343749e-01 1.09345511e-01\\n-1.65931843e-02 1.16897292e-01 -1.57763332e-01 -6.23464063e-02\\n-1.83033824e-01 -3.81931871e-01 1.95624620e-01 -7.35355169e-02\\n-1.01865284e-01 -2.95328386e-02 2.72893667e-01 1.71196148e-01\\n-2.43883163e-01 -3.51246670e-02 -8.05938989e-02 1.67694569e-01\\n1.23117037e-01 2.18069434e-01 -1.64075896e-01 -3.15004051e-01\\n-1.93215638e-01 1.01955071e-01 -1.14686944e-01 -5.29431030e-02\\n1.21237785e-01 3.54982376e-01 -8.47932398e-02 -3.24981809e-02\\n5.56366026e-01 3.49633768e-02 -2.62598097e-01 -1.38372853e-01\\n-1.42973945e-01 -2.48511657e-01 -1.18724197e-01 -1.47465661e-01\\n2.76193291e-01 -3.24781716e-01 -1.02952160e-01 -8.32249597e-02\\n6.20683730e-02 -2.88561851e-01 1.18765853e-01 -2.90831700e-02]]',\n", + " 'Welcome to Cimpress, the world leader in mass customization. We are audacious, innovative, and growing. Are you ready to work for one of the biggest companies in the Mass Customization industry? Cimpress is, with offices in over 20 countries and counting, a true global company. Our business successfully brings print and mass customization to the 21st century. In our team, we develop software and capabilities to make customized products available to everyone. Our products range from T-Shirts to business cards – you name it, we print it! In total, we are capable of producing over 80 million unique products. Founded in 1995, we are constantly growing and will continue to do so in the future. We are about to disrupt the entire industry, are you ready to join us and contribute? Your role will involve: As a technologist, you’ll be working in a cloud-first environment, while contributing to a series of microservices with a large focus on user interfaces. With a strong attention to detail, you are willing to develop a UI more than just make it functional. As a person with an interest in UI, you see nuances in design, such as unusual spacings, sizes, colors, and inconsistencies in different parts of the same app. As a human, you’ll be working in a fun environment where teams organize events throughout the year (Pizza lunches, Friday afternoon beers, monthly tech talks, video and board games nights), and also make connections outside the office (yes, we love the Swiss mountains). Additionally, being able to work from home and flexible work hours support the needs of ones personal life. To be a bit more specific, you will be responsible for the software development of components that are part of Fulfillment in our Mass Customization Platform. The role is part of a team of cross-functional software engineers that focus in the Fulfillment space. As such we offer business critical APIs with high traffic and focus focus on scalability and resilience as well as prototyping new features and microservices. As the platform is continuously improved, you will see and feel instantly your impact. Understanding the needs of our users and how they experience our applications is a big part of your job. Your responsibilities include everything from implementing new applications and handling data, to debugging and communicating with our users. Being in a small team, you will have a lot of freedom to make your own choices which comes with a lot of responsibility which you should feel comfortable with. About you: Micro-interactions like animations and proper colors is interesting for you. With a feeling for layout, UI composition, and which UI element to use for the job, your designs using our platform components achieve the right harmony and balance.You are able or are willing to learn developing in a cloud-first environment, and deploying and running services in the cloud (we use AWS and their offerings like CloudFront, S3, Lambda, etc.)You have an agile mindset. You are willing to innovate and explore solutions by interpreting the corporate strategy. And you’ll have persistence to stabilize, improve and monitor existing services.You have strong experience in one or more programming languages and remain open to learn new ones (the most of our code is in Node.js but we experiment frequently)Preferably, you have experience in a web framework like React, Vue or Angular (we primarily use Vue)You are able to fluently write and speak in English, and are open to work in a multi-cultural environment. We offer: All you need to get your job done: From a competitive salary to a relocation package, health insurance, above-standard pension contributions, and travel expenses.All you need to become a better technologist: Probably the most challenging and interesting environment in the mass customization and printing industry. Using state-of-the-art software engineering and deployment strategies and tools.All you need to grow: Working with exceptional technologists. And professionals across various roles and disciplines. And responsibility to grow in your team as well as with your team. Equal Opportunity Employer Cimpress is an Equal Employment Opportunity Employer. All qualified candidates will receive consideration for employment without regard to race, color, sex, national or ethnic origin, nationality, age, religion, citizenship, disability, medical condition, sexual orientation, gender identity, gender presentation, legal or preferred name, marital status, pregnancy, family structure, veteran status or any other basis protected by human rights laws or regulations. This list is not exhaustive and, in fact, in many cases we strive to do more than the law requires.',\n", + " '[\"Writing\", \"Professionalism\", \"Resilience\", \"Communications\", \"Presentations\", \"Innovation\", \"Persistence\"]',\n", + " '[\"Disabilities\", \"Tooling\", \"Human Rights Issues\", \"Agility\", \"KM Programming Language\", \"Interactivity\", \"Vue.js\", \"Web Frameworks\", \"Industrialization\", \"Compositing\", \"Intelligence Data Handling\", \"Node.js\", \"Prototyping\", \"Medic\", \"Business Card Design\", \"Microservices\", \"Software Engineering\", \"React.js\", \"Learning Development\", \"Corporate Strategy\", \"Probability\", \"Cross-Functional Coordination\", \"Animations\", \"Equalization\", \"Personalization\", \"Mass Customization\", \"Scalability\", \"Receivables\", \"Humanism\", \"Angular (Web Framework)\", \"Online Focus Groups\", \"Software Development\", \"Amazon Cloudfront\", \"Coloring\", \"User Interface\", \"Debugging\"]',\n", + " \"['English', 'English', 'Danish', 'Tibetan', 'Kuanyama']\"],\n", + " ['75',\n", + " 'software engineer (m/w)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.32771158e-01 3.23575675e-01 3.22079837e-01 2.11038645e-02\\n4.28447992e-01 -8.46897438e-02 -6.14280589e-02 2.52944112e-01\\n-7.71240592e-02 -4.60035145e-01 7.07489923e-02 -1.96435317e-01\\n-1.78112105e-01 -8.70894343e-02 1.49234504e-01 5.19659817e-01\\n1.30023852e-01 6.24674968e-02 -6.89474419e-02 4.44085509e-01\\n9.07824561e-02 -5.03305718e-02 -1.05173320e-01 8.01011920e-01\\n3.50438774e-01 -3.50439884e-02 -1.50030240e-01 9.87674147e-02\\n-2.45800763e-01 -3.04026783e-01 3.85356247e-01 9.66515467e-02\\n-4.94073480e-02 -4.21713650e-01 7.00240061e-02 1.49487287e-01\\n-2.98419803e-01 -5.70223527e-03 -4.43303734e-02 3.14540148e-01\\n-4.76185888e-01 -3.82286489e-01 8.77431855e-02 -8.39554518e-02\\n-2.73328215e-01 -2.70228058e-01 -1.36637434e-01 -3.58960554e-02\\n1.82698742e-01 1.38409203e-02 -6.53364897e-01 3.19564313e-01\\n-5.54208234e-02 -2.65608639e-01 2.20117152e-01 5.59088290e-01\\n2.13892773e-01 -5.63026249e-01 -2.97065943e-01 -3.22461277e-01\\n-1.21113444e-02 -7.90259987e-02 2.29474884e-02 -2.54588515e-01\\n3.62604648e-01 -3.44214551e-02 -5.50057646e-03 4.41134989e-01\\n-7.93977916e-01 -6.65304065e-02 -2.90753692e-01 1.12066105e-01\\n-3.99506778e-01 2.76150443e-02 -4.74426746e-01 -5.71803264e-02\\n-6.50339723e-02 5.21396756e-01 5.91075122e-02 -7.43939308e-03\\n-1.08375654e-01 1.97234809e-01 -1.18143134e-01 1.76221237e-01\\n3.73093277e-01 1.72580466e-01 2.82087952e-01 4.23345745e-01\\n-4.46676701e-01 3.12253535e-01 1.68932348e-01 -3.16638231e-01\\n1.36125520e-01 1.79201022e-01 6.16097927e-01 2.92444676e-01\\n-4.26084027e-02 2.34113351e-01 -1.82206258e-01 2.94912457e-01\\n1.28224760e-01 -3.22535902e-01 3.59990075e-02 -3.49719152e-02\\n-3.56369764e-02 -2.18581297e-02 3.02300155e-02 1.87007338e-01\\n-1.94472402e-01 4.12699461e-01 1.33930504e-01 -1.79334164e-01\\n-8.22932124e-02 -6.31163597e-01 -1.34373516e-01 -5.11797741e-02\\n-1.02793135e-01 2.86621451e-01 3.03357720e-01 1.34482637e-01\\n8.08005258e-02 8.93958956e-02 1.68459520e-01 9.82253253e-01\\n-7.72180706e-02 7.07321614e-02 -2.38974407e-01 2.89491653e-01\\n3.54515731e-01 -2.41681039e-01 1.44744173e-01 2.18987748e-01\\n7.72629231e-02 -1.84187219e-01 -2.27921769e-01 3.50836307e-01\\n-1.30407602e-01 -1.31864026e-01 -2.74684757e-01 2.11499538e-03\\n-2.04148084e-01 -5.28920710e-01 6.04730725e-01 1.27012849e-01\\n2.44040325e-01 -5.61796129e-02 -3.76490131e-02 -9.34772417e-02\\n-8.36838260e-02 1.74382433e-01 -3.01180724e-02 2.45826200e-01\\n-4.03422266e-01 -2.69273341e-01 -1.88620761e-01 3.08993787e-01\\n-1.59166008e-01 1.85574248e-01 -4.02123332e-02 -6.99926019e-02\\n2.64162451e-01 9.58682448e-02 -3.49406540e-01 1.60112053e-01\\n-1.32765770e-01 -3.35921764e-01 -1.21516682e-01 3.20315927e-01\\n-7.10094869e-02 1.42433047e-01 1.83020942e-02 -1.77537426e-01\\n6.77544355e-01 2.71468610e-01 2.04124644e-01 -1.80610970e-01\\n3.40131015e-01 -1.66294858e-01 2.03096256e-01 1.83016315e-01\\n-5.12547612e-01 3.44441116e-01 -2.15425417e-02 -1.65736780e-01\\n6.10829592e-02 8.30597803e-02 4.21715498e-01 -3.53513718e-01\\n1.25296591e-02 -1.66147277e-01 -3.93632889e-01 -3.87479275e-01\\n-2.07493186e-01 8.10356438e-03 4.93143469e-01 -4.30294871e-01\\n-1.18622705e-01 2.99510360e-01 -5.02010465e-01 -1.60760239e-01\\n1.81376800e-01 9.53095779e-02 1.51596904e-01 -2.62368061e-02\\n-6.15368634e-02 -6.44030929e-01 -6.08694181e-02 -5.46753109e-01\\n-5.46886444e-01 -3.70682143e-02 -3.16950917e-01 1.46724552e-01\\n1.07491381e-01 3.35342102e-02 -1.67341709e-01 5.27262464e-02\\n-3.85501444e-01 3.34403254e-02 1.71075776e-01 1.51324078e-01\\n3.25184941e-01 -6.33193851e-02 -4.03964400e-01 4.01005834e-01\\n-2.60051757e-01 5.42895257e-01 2.40626290e-01 -8.45698833e-01\\n6.58155262e-01 2.65417248e-01 -8.84738937e-02 -2.26467952e-01\\n3.50536287e-01 -4.23037708e-01 -3.59490700e-02 1.79078192e-01\\n-2.96971351e-01 -2.95722693e-01 3.29562575e-01 -1.38216436e-01\\n-3.02644074e-01 5.20400822e-01 2.39866853e-01 3.78323197e-02\\n3.38624060e-01 -2.90953726e-01 -1.45004779e-01 -1.50345871e-02\\n-1.29658982e-01 -2.41204768e-01 -3.50444943e-01 1.95962861e-01\\n-3.56839076e-02 -5.94943225e-01 -1.88304707e-01 -2.80902416e-01\\n-1.90194875e-01 -3.66979092e-01 -3.32771063e-01 4.56198812e-01\\n1.44989178e-01 1.76227644e-01 -2.90204026e-02 2.48519629e-02\\n1.12619922e-01 -6.57110274e-01 -1.48633480e-01 3.08304206e-02\\n5.71922243e-01 3.30424309e-01 6.86325654e-02 -1.22720093e-01\\n1.39883310e-01 5.43043494e-01 -3.74155372e-01 -3.88006479e-01\\n6.07419983e-02 4.47508097e-02 -1.06314711e-01 -1.88183933e-01\\n-1.92357216e-03 3.12522650e-01 -2.50745267e-01 3.42481583e-02\\n-8.66321772e-02 5.12787923e-02 2.91952789e-01 -9.81471017e-02\\n-3.59933734e-01 -1.65861428e-01 -3.71611537e-03 3.45752239e-01\\n-5.28455436e-01 -2.32274204e-01 5.20879149e-01 2.88068026e-01\\n2.03717783e-01 1.67829275e-01 2.71252394e-01 -1.05374016e-01\\n-2.67258316e-01 -1.41384318e-01 1.74634099e-01 1.85415179e-01\\n4.12994437e-02 1.64123341e-01 -8.99589211e-02 -6.76442623e-01\\n-3.22283173e+00 -1.65213332e-01 2.10589617e-01 -3.05456519e-01\\n1.78245440e-01 -1.56153724e-01 6.04089946e-02 -4.86874692e-02\\n-4.42327768e-01 -5.32054901e-02 -2.71715462e-01 -1.08623251e-01\\n-1.31011754e-01 2.37731919e-01 7.29682595e-02 2.88561374e-01\\n7.04864711e-02 -2.53304899e-01 -1.10939004e-01 4.20523256e-01\\n-8.88754725e-02 -7.15417922e-01 6.86133131e-02 9.97603387e-02\\n1.42124325e-01 1.10106796e-01 -4.12043214e-01 1.14969105e-01\\n-2.11065620e-01 -2.57921875e-01 1.03344943e-03 -2.66380727e-01\\n-1.57726526e-01 3.40127796e-01 1.37293532e-01 -2.20522806e-02\\n4.00137231e-02 -1.88013166e-01 1.08728498e-01 -5.23898363e-01\\n-1.28307998e-01 -5.89351714e-01 -2.82236058e-02 -1.30385801e-01\\n6.17146432e-01 -3.08652610e-01 2.26161167e-01 2.13282928e-01\\n5.13157509e-02 7.70782158e-02 -3.54103222e-02 7.10783387e-03\\n-4.08289820e-01 -3.61567765e-01 -1.77459400e-02 -3.37245733e-01\\n5.59190750e-01 4.33864683e-01 -1.21879302e-01 7.77162891e-03\\n1.27230659e-01 -3.23641509e-01 -3.79713744e-01 -4.83888090e-01\\n-1.65496305e-01 -2.08638564e-01 -8.43017876e-01 -5.59587121e-01\\n-2.42586046e-01 7.20592029e-03 -1.55099973e-01 6.84438050e-01\\n-3.61629784e-01 -5.16476929e-01 -1.13526331e-02 -5.55763185e-01\\n1.23817816e-01 -2.24447966e-01 1.15944289e-01 -1.74416289e-01\\n-4.46848243e-01 -4.99530137e-01 2.41874456e-01 -4.84364107e-02\\n-2.77655512e-01 -1.80772599e-02 -1.56947621e-03 -2.69827813e-01\\n-3.55094761e-01 -3.92081738e-01 4.10161167e-01 7.36151487e-02\\n3.12595636e-01 2.01257154e-01 4.60317403e-01 7.17918649e-02\\n4.48793143e-01 -6.87518939e-02 -1.12969764e-02 -4.00511712e-01\\n1.65219173e-01 -3.09082028e-02 4.92543459e-01 -2.77522236e-01\\n9.53317285e-02 2.02135533e-01 -3.03460479e-01 -1.46783972e-02\\n5.62721729e-01 -5.70466667e-02 -5.08335978e-02 -3.61850485e-02\\n2.95242935e-01 -4.48523939e-01 -2.87652642e-01 3.00116330e-01\\n1.38880499e-02 7.23209560e-01 -2.26064064e-02 -3.98977339e-01\\n-2.85103440e-01 5.28487742e-01 -1.87839031e-01 -1.44902632e-01\\n-1.54840544e-01 1.68592528e-01 -6.18593022e-02 2.46762633e-01\\n8.09662789e-03 -3.30122799e-01 -2.94705182e-01 -1.86642960e-01\\n-7.81869218e-02 1.48894340e-01 2.03733802e-01 -3.62406783e-02\\n-1.07890375e-01 -1.15412295e-01 -3.02606821e-01 1.55602947e-01\\n3.13823283e-01 3.26663554e-01 3.12385648e-01 -3.77679259e-01\\n1.92490276e-02 2.05863640e-01 -2.20341906e-01 2.63513088e-01\\n-2.88031816e-01 1.43910959e-01 -5.40859163e-01 -2.76224315e-01\\n-2.10433528e-01 -3.53873789e-01 1.37799159e-01 3.43861908e-01\\n7.62189701e-02 -8.79569561e-04 1.05259597e-01 -4.81570899e-01\\n3.82623732e-01 9.87121314e-02 1.94569826e-01 1.27861142e-01\\n1.15318671e-01 5.63545823e-01 9.30358022e-02 -1.42259330e-01\\n-2.32419685e-01 -1.69394925e-01 -3.07754338e-01 -2.50631273e-01\\n9.11021680e-02 -4.45085108e-01 -1.39545634e-01 4.57939625e-01\\n1.76461384e-01 -2.24776089e-01 -2.88547784e-01 3.30854803e-01\\n1.67811528e-01 -2.95660943e-01 -2.51585364e-01 -3.69841605e-02\\n1.53245464e-01 4.72640544e-02 2.94627070e-01 -3.74298871e-01\\n3.07159983e-02 2.87471209e-02 -1.00898251e-01 5.99937260e-01\\n2.51359552e-01 3.06058079e-02 -1.76503748e-01 -9.27447304e-02\\n6.12627447e-01 -2.84990780e-02 -6.72675371e-02 -6.86853528e-02\\n1.01782314e-01 -2.99873382e-01 -5.21072328e-01 1.84393115e-02\\n-8.41496661e-02 -2.22033516e-01 9.42429081e-02 2.07711756e-03\\n2.56550405e-02 1.71182863e-02 -4.15086061e-01 -4.49740291e-01\\n-3.87827158e-01 -1.49130672e-01 2.06654415e-01 -4.17182684e-01\\n-6.48360774e-02 5.75842038e-02 -5.84694505e-01 2.71852255e-01\\n-2.74196535e-01 4.88489531e-02 5.92570528e-02 2.48928860e-01\\n-2.78596669e-01 -7.04363436e-02 -4.91667241e-02 2.18839675e-01\\n-4.03681606e-01 -3.23717684e-01 4.06410173e-02 -8.27127457e-01\\n1.49263427e-01 1.36651859e-01 -1.86433747e-01 7.78386220e-02\\n-9.44809755e-04 -6.35998130e-01 2.09475294e-01 -4.32126313e-01\\n3.65819968e-02 1.98617931e-02 -1.50505513e-01 -3.14826429e-01\\n1.88688755e-01 -9.63194575e-03 -3.90022516e-01 4.74443167e-01\\n-5.30495942e-01 2.48197898e-01 4.78367060e-02 7.58247375e-02\\n7.92486891e-02 -3.05282891e-01 1.34887934e-01 -2.51360148e-01\\n-4.15204316e-01 -2.26260215e-01 -4.13159758e-01 -1.75755903e-01\\n4.81594466e-02 -2.33462662e-01 -9.53705311e-02 1.25544205e-01\\n3.01008493e-01 2.41857320e-01 -7.67108724e-02 -3.94017160e-01\\n1.51887000e-01 -4.74282265e-01 1.94843803e-02 -3.20908606e-01\\n-4.68999259e-02 -1.50185198e-01 1.66657001e-01 -1.71755299e-01\\n1.52233198e-01 -1.79880217e-01 6.19434059e-01 -1.81528702e-01\\n-2.86699057e-01 -1.67552620e-01 1.61399245e-02 1.50878364e-02\\n2.29463756e-01 -4.59013045e-01 9.66397859e-03 2.19766065e-01\\n1.92026109e-01 5.43899424e-02 1.46592289e-01 -4.03624251e-02\\n-2.54280157e-02 1.89142987e-01 -5.58319449e-01 1.46615669e-01\\n7.32634485e-01 4.53247577e-02 5.77360988e-02 1.56172186e-01\\n1.90630123e-01 4.52069402e-01 6.34704471e-01 -7.09303888e-04\\n-2.18145121e-02 2.65557438e-01 3.04066855e-02 -4.44260985e-01\\n-1.66460171e-01 -2.26848334e-01 -1.79455474e-01 -2.98462182e-01\\n5.66974819e-01 4.12166446e-01 -3.90005529e-01 -1.88780248e-01\\n4.69222143e-02 -5.19786105e-02 3.53922397e-01 7.64702559e-02\\n-1.09916247e-01 -3.56483981e-02 5.43048263e-01 -3.51193477e-03\\n3.80765676e-01 5.87606013e-01 -1.27567559e-01 -3.44867855e-01\\n-2.84700487e-02 2.06801474e-01 1.39937997e-01 4.05073404e-01\\n-1.56302720e-01 2.76910782e-01 4.54904847e-02 2.53554173e-02\\n-3.72206531e-02 1.59755051e-01 2.39282370e-01 3.60498242e-02\\n3.23107094e-01 1.21613434e-02 2.46318296e-01 5.43167830e-01\\n2.00530708e-01 4.31431085e-01 2.47552916e-01 1.98286504e-01\\n2.69804925e-01 6.13274693e-01 4.02387112e-01 1.08076043e-01\\n5.25225699e-02 6.28960282e-02 1.26886621e-01 -1.35727376e-01\\n3.57431263e-01 3.99179399e-01 2.13221952e-01 9.50212300e-01\\n3.08432430e-01 3.07941347e-01 7.33944535e-01 -8.28180730e-01\\n-2.83514708e-01 1.41495898e-01 6.16533101e-01 -2.06349060e-01\\n-5.76663576e-02 1.93498597e-01 -2.33924165e-01 3.13546360e-01\\n-5.31943142e-01 -2.35884562e-01 1.62740592e-02 -1.69678926e-02\\n1.29374983e-02 -6.65253475e-02 -2.17781052e-01 1.51064426e-01\\n-1.60624161e-01 -1.65527865e-01 -2.68893987e-01 -1.44846603e-01\\n-3.87791991e-01 -4.25691716e-02 -6.77338317e-02 -1.08303018e-02\\n-1.32121667e-01 -4.65577155e-01 -2.00620919e-01 4.70577888e-02\\n4.70681757e-01 -1.79116860e-01 -1.46525860e-01 -1.93146318e-01\\n4.47265571e-03 3.31226438e-01 6.28223181e-01 7.35087544e-02\\n2.03161657e-01 -1.58458531e-01 -2.39049450e-01 5.79397641e-02\\n1.89758882e-01 -8.42017028e-03 1.28200009e-01 4.24213886e-01\\n-3.13301653e-01 -8.71934667e-02 1.30094886e-01 2.69486070e-01\\n-4.57791090e-01 -1.48240566e-01 -5.81148192e-02 3.34406376e-01\\n5.97886834e-03 3.24914128e-01 -3.07897568e-01 1.81322888e-01\\n-1.66851655e-01 -5.11189997e-01 4.81978774e-01 -1.93455845e-01\\n-1.21979207e-01 2.57710814e-01 1.68983772e-01 1.21297017e-01\\n-2.46108204e-01 -3.99563946e-02 -9.20972303e-02 2.89270997e-01\\n-3.49839665e-02 4.90244478e-01 -2.02553615e-01 -1.74713135e-01\\n-3.91795903e-01 2.53912449e-01 -6.32460490e-02 1.61259428e-01\\n-2.01776400e-01 3.90940279e-01 1.61536694e-01 1.89745039e-01\\n1.84292421e-01 1.53588504e-01 -2.48056233e-01 -2.02077478e-01\\n-1.82787538e-01 -2.53081918e-01 1.07800871e-01 -3.43111269e-02\\n6.59308732e-02 -3.48187774e-01 2.88559310e-02 -2.02361494e-01\\n-2.63630450e-01 -3.82653534e-01 -1.28160104e-01 2.40338184e-02]]',\n", + " 'Job Informationen Your tasks: Create and deploy production-ready machine learning models, life-cycle management Evaluate and assess model quality through metrics and experiments End-to-end responsibility for socio-demographic predictions, audience expansions and interest inference Writing production code with Spark and Scala and creating advanced pipelines with Luigi Working with git on github, various services on AWS, Jira and Confluence with an agile software development culture Your profile: Deep knowledge in Scala, Java or C++ and strong skills in either Python or Bash Expertise in using Spark, Hadoop, etc. for scalable data processing and machine learning Understanding and experience in various machine learning algorithms Experience in applying machine learning and deep learning for real-world applications In-depth understanding of concepts such as algorithms, networking and internet technology Able to communicate well in English and to thrive in a peer-driven engineering culture Benötigte Skills Scala C++ JAVA Python Python Bash Englisch',\n", + " '[\"Communications\", \"Writing\"]',\n", + " '[\"Python Server Pages\", \"Luigi (Python Package)\", \"Prediction\", \"Machine Learning\", \"Project Management Life Cycle\", \"C++ (Programming Language)\", \"Scala (Programming Language)\", \"Python (Programming Language)\", \"Pipelining\", \"Machine Learning Methods\", \"Github\", \"Agile Software Development\", \"Machine Learning Algorithms\", \"Bash (Scripting Language)\", \"Electronic Data Processing\", \"Deep Learning\", \"Atlassian Confluence\", \"Software Development\", \"Algorithms\", \"Production Code\", \"Git Flow\", \"JIRA Studio\", \"Java (Programming Language)\", \"Data Processing\"]',\n", + " \"['English', 'Pashto', 'Yoruba', 'Yoruba', 'Slovak']\"],\n", + " ['82',\n", + " 'big data engineer',\n", + " 'Zürich',\n", + " 'Staffing & Outsourcing',\n", + " 'www.nicollcurtin.com',\n", + " '[[-3.59203309e-01 2.84078747e-01 4.03332740e-01 7.03492612e-02\\n6.18659675e-01 -2.21305519e-01 -3.66830193e-02 4.68001425e-01\\n-9.57974698e-03 -3.22790772e-01 -1.28672332e-01 -1.54692918e-01\\n-7.85306841e-02 1.48028374e-01 1.81689672e-02 2.28859752e-01\\n3.20908666e-01 1.63636461e-01 -3.45691405e-02 3.29709291e-01\\n7.10510910e-02 -1.42218173e-01 1.08264901e-01 6.83549345e-01\\n3.48668456e-01 5.43728704e-03 -8.57399628e-02 3.12719084e-02\\n-3.08920473e-01 -2.14215368e-01 3.86555463e-01 -7.77928308e-02\\n-1.15295649e-01 -3.15231860e-01 1.29168779e-01 -4.51448485e-02\\n-2.34217227e-01 -1.35865480e-01 -1.53281808e-01 1.58915758e-01\\n-4.14469033e-01 -3.05776596e-01 3.41607779e-02 1.62663013e-01\\n-2.46878237e-01 -3.51538807e-01 1.04927398e-01 -1.57376099e-02\\n1.72191590e-01 -5.04253469e-02 -4.75344807e-01 4.14361656e-01\\n-2.65516251e-01 -2.12857604e-01 2.93408930e-01 5.72520077e-01\\n-1.79406568e-01 -5.86615205e-01 -3.81322145e-01 -3.14709991e-01\\n6.79473653e-02 -1.56068951e-01 6.52652606e-02 -4.30448949e-01\\n2.08039716e-01 6.19269814e-03 7.99325947e-03 3.72305334e-01\\n-8.67290914e-01 -2.32092477e-03 -2.50908464e-01 1.18819764e-02\\n-3.02052498e-01 9.83787980e-03 -3.17436546e-01 -1.77233189e-01\\n-5.69618791e-02 4.19322282e-01 1.14273001e-02 9.67156291e-02\\n-1.79592699e-01 2.87539423e-01 -1.34042025e-01 3.07549447e-01\\n2.66519338e-01 8.13999027e-02 4.94576395e-02 1.68201312e-01\\n-2.40773723e-01 5.84624112e-01 7.83046782e-02 -2.11221457e-01\\n1.12166770e-01 1.51274756e-01 2.86618590e-01 4.08880301e-02\\n1.67314127e-01 3.57219763e-03 -1.88515216e-01 1.44772977e-01\\n2.13469505e-01 -3.66244078e-01 1.53667346e-01 -4.02956270e-02\\n7.91935399e-02 -1.75876096e-02 1.21956244e-01 3.76748651e-01\\n-3.16545665e-01 3.91040504e-01 3.86884436e-02 -1.28955722e-01\\n2.21822746e-02 -3.87984395e-01 -1.71721369e-01 -1.31766498e-02\\n-1.18256256e-01 8.85002408e-03 1.37773022e-01 1.30855620e-01\\n3.52971017e-01 8.43067374e-03 1.97506487e-01 8.59689891e-01\\n-9.51856188e-03 2.71828398e-02 -1.39821261e-01 4.46609020e-01\\n1.24475144e-01 -2.24680200e-01 1.96145281e-01 2.75770903e-01\\n3.92511822e-02 -1.41099378e-01 -2.72065967e-01 2.66863793e-01\\n-1.69075027e-01 -1.26653746e-01 -2.99512476e-01 3.12712759e-01\\n-1.36947438e-01 -4.72377300e-01 5.75198710e-01 1.11981489e-01\\n1.18363917e-01 -3.58932577e-02 1.01338044e-01 -2.72847340e-02\\n-8.74149948e-02 2.99825996e-01 5.70017956e-02 1.58875063e-01\\n-3.03931743e-01 -1.74769655e-01 -8.26975182e-02 1.32565916e-01\\n-2.69576728e-01 4.96783592e-02 -1.09499529e-01 -1.08324911e-03\\n3.89833570e-01 8.87425244e-02 -3.10695291e-01 3.15482110e-01\\n-1.18595473e-01 2.14142483e-02 5.45448437e-03 2.40568176e-01\\n-2.03517854e-01 2.92210817e-01 -2.15678707e-01 -1.93890050e-01\\n4.05602813e-01 8.66807550e-02 2.47467130e-01 3.06829959e-02\\n2.33513355e-01 -1.48046479e-01 1.88489273e-01 5.90510257e-02\\n-7.20744729e-01 4.77468342e-01 1.15600459e-01 -1.25086129e-01\\n4.96440195e-02 -4.91025969e-02 2.88288802e-01 -3.35120052e-01\\n-7.80480634e-03 -7.25571811e-02 -5.32903075e-01 -3.53917271e-01\\n-1.73848256e-01 -2.57115327e-02 3.60353827e-01 -3.47409278e-01\\n-1.75202966e-01 1.37692422e-01 -4.55297083e-01 -3.22939013e-03\\n2.32406855e-01 9.96574089e-02 1.80735856e-01 9.64430645e-02\\n-1.23988964e-01 -4.40721989e-01 1.12341933e-01 -4.18396324e-01\\n-1.86475530e-01 3.23985294e-02 -3.05978149e-01 2.79138237e-01\\n-1.19869649e-01 3.86402383e-02 -6.15855604e-02 1.53540820e-01\\n-2.33210638e-01 -1.27998903e-01 1.28681138e-01 7.36484230e-02\\n3.11907977e-01 8.96129608e-02 -3.61355454e-01 5.26741743e-01\\n-1.81349516e-01 5.72957933e-01 1.03674024e-01 -6.84445739e-01\\n4.53483820e-01 2.74517059e-01 -3.31125967e-02 -2.72612005e-01\\n5.30641794e-01 -3.99710655e-01 -1.14374325e-01 2.28285398e-02\\n-4.25585657e-01 -2.75850147e-01 5.05011566e-02 -8.35960582e-02\\n-2.63009310e-01 5.64485788e-01 1.01098672e-01 1.01675354e-01\\n2.99932003e-01 -3.48252296e-01 -1.78664684e-01 1.08631916e-01\\n-9.42689404e-02 -3.09973925e-01 -5.01712143e-01 -1.36349827e-01\\n-8.25391486e-02 -5.36775231e-01 -1.16450660e-01 -3.39264184e-01\\n-2.13849396e-01 -1.76228955e-01 -2.37382203e-01 2.57928725e-02\\n2.31065318e-01 1.62828341e-01 4.70058210e-02 7.05817565e-02\\n-1.29885450e-01 -5.72148979e-01 -7.00022951e-02 1.67532936e-01\\n3.67813677e-01 2.59054542e-01 2.18003079e-01 -1.24931961e-01\\n7.62584284e-02 6.68888628e-01 -2.24055678e-01 -3.70661855e-01\\n1.40593037e-01 2.99860448e-01 3.79826911e-02 -1.79613560e-01\\n1.02248199e-01 4.12656724e-01 -2.63033062e-01 1.55261248e-01\\n-1.73033588e-03 -1.11446075e-01 3.19383919e-01 2.88432278e-02\\n-2.96014011e-01 -3.59139144e-01 -2.27066576e-01 9.49088857e-02\\n-4.47256625e-01 -1.73415214e-01 4.70591307e-01 1.20823674e-01\\n2.84866393e-01 2.27551863e-01 2.49101982e-01 -5.77766150e-02\\n-8.18048716e-02 -1.18576609e-01 1.87497020e-01 2.77117845e-02\\n-1.40375849e-02 6.22194335e-02 -1.56680882e-01 -6.20618582e-01\\n-3.29233432e+00 2.16960162e-02 1.33733213e-01 -3.51172894e-01\\n2.73647875e-01 -1.45593137e-01 1.64538115e-01 -1.27352513e-02\\n-3.07548136e-01 4.34626117e-02 -2.10463732e-01 -1.65098980e-01\\n2.94295609e-01 1.13697775e-01 3.59450839e-02 2.38887042e-01\\n1.50845528e-01 -3.17348778e-01 -1.70072112e-02 3.33207130e-01\\n-1.65961474e-01 -6.37919128e-01 1.10865340e-01 -3.69898267e-02\\n2.73400158e-01 3.37238938e-01 -3.93204033e-01 -4.84623425e-02\\n-1.49040356e-01 -1.57065630e-01 1.22202642e-01 -2.30220720e-01\\n-1.81729198e-02 2.27349147e-01 6.33345991e-02 -1.77671522e-01\\n9.33571458e-02 -2.99642980e-01 -4.76387963e-02 -4.34208542e-01\\n1.40675262e-01 -5.63793182e-01 -6.55440614e-03 4.87603880e-02\\n7.27492809e-01 -3.20058197e-01 7.92190954e-02 3.40963304e-02\\n2.59907216e-01 2.51667857e-01 9.47660133e-02 -2.97603197e-02\\n-2.33316690e-01 -2.28334948e-01 1.72842422e-03 -2.33511075e-01\\n3.72247368e-01 5.89329422e-01 -2.06418619e-01 6.87668473e-02\\n6.33459166e-02 -4.07910645e-01 -3.11153024e-01 -3.26078355e-01\\n-1.80671468e-01 -2.36515909e-01 -6.32808387e-01 -2.48083010e-01\\n-1.59182936e-01 -4.05860804e-02 -4.48007323e-02 4.01620865e-01\\n-3.43057275e-01 -3.77764016e-01 -4.93267179e-03 -5.71469247e-01\\n2.75466084e-01 -5.82150444e-02 -2.19064094e-02 -1.99199468e-01\\n-1.17464334e-01 -4.39175069e-01 6.43853024e-02 -1.11307755e-01\\n-2.28113718e-02 -1.51069582e-01 -4.03390042e-02 -8.50760490e-02\\n-2.81000048e-01 -4.92909282e-01 4.39042091e-01 2.01350898e-01\\n3.34722370e-01 1.17172398e-01 1.79044008e-01 -2.79521309e-02\\n2.30438724e-01 -1.96172133e-01 3.09374668e-02 -3.73167247e-01\\n1.51122406e-01 7.91766029e-03 5.04060268e-01 -1.58851564e-01\\n-7.99986124e-02 1.07745096e-01 -2.01159820e-01 -1.19895682e-01\\n2.29456022e-01 1.36765361e-01 6.39735833e-02 -2.76625097e-01\\n2.46074766e-01 -4.84761268e-01 -2.09685907e-01 1.72223359e-01\\n8.46219435e-02 6.03439152e-01 4.46591824e-02 -3.08038026e-01\\n-1.91984043e-01 3.77266467e-01 2.39547398e-02 -1.27646044e-01\\n-1.30392298e-01 -3.00078234e-03 -2.48244509e-01 2.53335923e-01\\n1.21450700e-01 -1.15416713e-01 -1.41392082e-01 -5.88096231e-02\\n-1.36956856e-01 3.15434635e-01 2.02815458e-01 3.06232721e-02\\n-5.28007261e-02 -4.74357992e-01 8.42319336e-04 2.39593536e-01\\n-3.19812596e-02 4.00940716e-01 6.51545227e-02 -1.11388169e-01\\n-3.79517837e-03 4.35988694e-01 -1.05927378e-01 3.11607867e-01\\n-1.95105523e-01 5.67576289e-02 -5.68569779e-01 -2.49809369e-01\\n-3.55635464e-01 -2.55364388e-01 2.06428934e-02 4.25256491e-01\\n1.79408386e-01 -1.89190116e-02 3.06791812e-03 -3.30067426e-01\\n3.64455521e-01 -1.17552638e-01 2.56233454e-01 1.57813847e-01\\n-1.84735283e-01 5.29269338e-01 2.81104092e-02 -2.44580209e-01\\n-2.36344159e-01 7.89094791e-02 -2.75630891e-01 -1.34012952e-01\\n1.15989231e-01 -4.32731539e-01 -9.89217013e-02 3.55326355e-01\\n2.04066336e-01 -2.27242708e-01 -4.76558246e-02 1.85576051e-01\\n2.37937868e-02 -2.19824791e-01 -3.15462083e-01 8.68662223e-02\\n4.44877952e-01 1.04070008e-01 2.66178727e-01 -3.20336461e-01\\n-1.17233224e-01 -4.26028483e-02 3.40321625e-04 3.17289352e-01\\n-1.15101084e-01 2.63277645e-04 -2.16574609e-01 -3.60673487e-01\\n4.35617864e-01 -1.25416622e-01 -1.93605885e-01 1.06982384e-02\\n6.43127263e-02 -9.68627855e-02 -4.89599526e-01 8.84869397e-02\\n3.63393351e-02 -1.00021765e-01 8.57923403e-02 4.06249203e-02\\n1.26954108e-01 6.35155588e-02 -5.29135704e-01 -1.07975245e-01\\n-2.97091246e-01 2.81169470e-02 -5.70169054e-02 -4.32544082e-01\\n1.24697119e-01 3.09853759e-02 -5.80447853e-01 1.33357465e-01\\n-3.10686469e-01 1.09757729e-01 2.25587577e-01 -5.13968728e-02\\n-3.92638296e-01 -1.38546348e-01 1.85615167e-01 2.36029193e-01\\n-2.24816203e-01 -1.62064657e-01 -1.57451425e-02 -9.40770745e-01\\n2.19945297e-01 1.41329663e-02 -7.83874840e-02 1.17826268e-01\\n4.57287580e-02 -6.59140289e-01 1.28234446e-01 -2.67442793e-01\\n-1.84757307e-01 4.79459167e-02 -1.90952197e-01 -3.90306145e-01\\n7.26680160e-02 -2.03319237e-01 -2.64287084e-01 3.48578542e-01\\n-3.24510008e-01 3.06518495e-01 1.45976124e-02 1.55674681e-01\\n-5.05735073e-03 -1.70396358e-01 1.77246258e-01 -4.45812851e-01\\n-3.32817703e-01 -1.65725276e-01 -2.24097654e-01 -1.95700914e-01\\n-5.09701744e-02 -2.04186901e-01 2.26195864e-02 6.12268597e-02\\n2.67374337e-01 7.60614872e-03 -2.14507326e-01 -2.18834266e-01\\n1.63714767e-01 -5.00889838e-01 2.06094339e-01 -9.73081738e-02\\n1.20349929e-01 -6.34696260e-02 1.20846450e-01 4.23907042e-02\\n1.40330225e-01 -5.05230427e-01 3.40020448e-01 -2.97096997e-01\\n-3.04747254e-01 -3.78400423e-02 -7.01242238e-02 2.88177412e-02\\n4.05714035e-01 -4.05917495e-01 4.90683168e-02 3.56036067e-01\\n1.35061190e-01 2.52497252e-02 1.36673123e-01 -3.01291849e-02\\n-7.39546120e-02 2.66451091e-01 -3.74130458e-01 1.37661636e-01\\n8.64123464e-01 2.67682910e-01 5.57942167e-02 2.73422122e-01\\n7.16384128e-02 3.59470814e-01 4.24105048e-01 9.97171924e-02\\n-4.63632680e-02 2.71897823e-01 -1.31208207e-02 -4.94089127e-01\\n-1.11762598e-01 -1.80712603e-02 -2.90250778e-01 -3.25653225e-01\\n5.80347538e-01 3.80872786e-01 -4.21109766e-01 -3.22754085e-01\\n-8.45259279e-02 -2.10930362e-01 4.11040941e-03 -1.54629424e-01\\n-3.30863483e-02 -3.07760209e-01 5.21580577e-01 3.91050130e-02\\n3.15877140e-01 6.26851976e-01 -1.31399959e-01 -2.83832490e-01\\n7.39914030e-02 1.98216572e-01 3.45834754e-02 3.73211592e-01\\n-1.12448119e-01 1.84066579e-01 -8.72403234e-02 1.68633640e-01\\n-6.91931844e-02 7.73827545e-03 4.69864644e-02 7.78321326e-02\\n1.29802609e-02 1.11621618e-01 4.17419195e-01 5.22494316e-01\\n2.69301355e-01 4.13332343e-01 3.34866434e-01 8.72233286e-02\\n6.63757026e-01 4.87122089e-01 2.95615405e-01 2.04152152e-01\\n3.41666788e-02 5.36018924e-04 1.44538522e-01 1.08623095e-01\\n1.47414684e-01 2.84241110e-01 1.19108357e-01 8.78959596e-01\\n3.72043699e-01 2.66926736e-01 6.52743399e-01 -6.27302051e-01\\n-3.60805571e-01 -1.72528177e-01 4.05998170e-01 -4.75709021e-01\\n-1.67772789e-02 -4.14579362e-02 -1.67720914e-01 3.41472119e-01\\n-3.65198404e-01 -2.08914757e-01 -8.43878165e-02 8.15953985e-02\\n7.23980218e-02 1.24516552e-02 -1.40879065e-01 -3.84938195e-02\\n-1.74774438e-01 -1.99543804e-01 -5.34673750e-01 -2.49192178e-01\\n-1.62895247e-01 -9.00502205e-02 -1.77506343e-01 -2.72235930e-01\\n-7.01249167e-02 -4.89599466e-01 -6.02709092e-02 1.31251719e-02\\n2.65482932e-01 -1.38928324e-01 -3.13458182e-02 -2.14853734e-01\\n2.81967819e-01 1.92391664e-01 7.04799533e-01 6.52906299e-02\\n9.59932208e-02 -2.33848438e-01 -6.44897148e-02 1.02246433e-01\\n6.75848946e-02 2.33537987e-01 7.53443614e-02 3.37400317e-01\\n-4.20613557e-01 -1.07897736e-01 1.14221670e-01 3.28411400e-01\\n-3.69934946e-01 -3.15161459e-02 2.21782420e-02 1.60147250e-01\\n3.30694206e-02 5.78763559e-02 -3.68252397e-01 -4.48840531e-03\\n-2.72487730e-01 -4.67368871e-01 2.16174245e-01 3.19827609e-02\\n-1.90026030e-01 1.30317375e-01 1.72955394e-01 2.10126236e-01\\n-1.95965752e-01 5.92376478e-02 -5.41560240e-02 4.54290360e-02\\n5.41787520e-02 3.50364059e-01 -3.54786068e-01 -3.34287405e-01\\n-2.56021827e-01 2.61949599e-01 -1.31226957e-01 1.49670348e-01\\n-4.87071648e-02 2.62735188e-01 6.12970144e-02 3.24324444e-02\\n4.05226976e-01 -1.57286584e-01 -3.25875372e-01 -3.58657151e-01\\n-4.00641561e-02 -6.63123354e-02 -7.26582184e-02 -1.61522418e-01\\n1.72129512e-01 -3.64370406e-01 -2.11572424e-01 -5.61028495e-02\\n-6.88224286e-02 -2.65122354e-01 -1.11660041e-01 -1.38186261e-01]]',\n", + " 'BIG DATA DEVOPS ENGINEER (HADOOP, CLOUDERA, LINUX, TABLEAU) BANKING BIG DATA JOB IN ZURICH, SWITZERLAND A respected international tier-1 banking client of mine is seeking a Big Data DevOps Engineer for a job opportunity in Zurich. This bank has always been at the forefront of technology advancements and development of banking applications, and they currently need a Big Data DevOps Engineer. As the Big Data DevOps Engineer in Zurich, you will have the opportunity to build and maintain a big data platform along with a team of engineers and systems experts. You will be responsible for deploying, automating, maintaining, troubleshooting, and improving the systems that keep the back-end infrastructure running smoothly. Some key skills you will need for this role; Cloudera Hadoop administration/engineering experience, understanding of Linux engineering, Cluster management skills, ability to support incident management skills which means good customer-facing skills as well, and good problem-solving skills. Additionally, skills with Tableau administration, Control-M or Rundeck exposure as well as knowledge of SQL syntax will be very desired. This is for a contract job with an initial duration of six months. To apply for this Big Data DevOps Engineer job within banking in Zurich, please forward your CV to ameya.khare@nicollcurtin.com.',\n", + " '[\"Infrastructure\", \"Troubleshooting (Problem Solving)\", \"Management\", \"Problem Solving\"]',\n", + " '[\"Automation\", \"Syntax\", \"Tableau (Business Intelligence Software)\", \"Back End (Software Engineering)\", \"Banking\", \"Data Management Platforms\", \"Expert Systems\", \"Additives\", \"Component Object Model (COM)\", \"Linux\", \"Maintainability\", \"Control-M (Batch Scheduling Software)\", \"Incident Management\", \"Big Data\", \"SQL (Programming Language)\", \"DevOps\", \"Rundeck\"]',\n", + " \"['English', 'Chuang', 'Afrikaans', 'Afar']\"],\n", + " ['84',\n", + " 'big data developer / data engineer',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-2.13305146e-01 2.71299779e-01 4.91974533e-01 1.09716458e-02\\n4.47085828e-01 -1.95972487e-01 -2.03588866e-02 3.60220253e-01\\n-9.42673013e-02 -3.77513289e-01 -4.18637991e-02 -4.08910304e-01\\n-9.84633714e-02 1.12357378e-01 1.22280851e-01 4.56036866e-01\\n1.40778139e-01 1.26479054e-02 -1.03770845e-01 3.04614544e-01\\n1.00148164e-01 -2.49326974e-02 1.52731640e-02 6.20482445e-01\\n3.63210440e-01 -2.16439203e-03 -7.98348933e-02 1.44348871e-02\\n-2.49733567e-01 -2.37261131e-01 3.99262369e-01 1.34125024e-01\\n8.96170642e-03 -2.31998995e-01 -4.29387111e-03 7.20303580e-02\\n-2.23404944e-01 -2.00437475e-02 1.16617993e-01 1.35480925e-01\\n-5.37803411e-01 -3.41495425e-01 5.23908436e-02 -1.82214547e-02\\n-3.13154399e-01 -3.01843405e-01 -1.36070222e-01 -5.25425225e-02\\n1.24665149e-01 1.03045665e-02 -5.62831342e-01 3.51507932e-01\\n-1.87235191e-01 -1.28422707e-01 1.50694147e-01 5.74551642e-01\\n1.74829625e-02 -5.70237994e-01 -4.81212765e-01 -1.64685816e-01\\n2.49783695e-01 -1.46360904e-01 -1.45981200e-02 -1.41819417e-01\\n3.39011133e-01 -6.36538342e-02 -8.46178178e-03 3.90687525e-01\\n-5.78047693e-01 -2.53164787e-02 -2.40027711e-01 4.75929007e-02\\n-3.82555753e-01 -3.90650854e-02 -2.29673445e-01 -1.25258401e-01\\n-5.75329475e-02 3.48082691e-01 8.12000707e-02 3.10836658e-02\\n-1.64628968e-01 1.44886926e-01 -2.17482954e-01 2.01885134e-01\\n3.16656262e-01 1.13514602e-01 5.47381155e-02 2.50764728e-01\\n-5.22267878e-01 5.18855274e-01 1.63402662e-01 -3.70459706e-01\\n2.22905174e-01 1.34589931e-03 4.67531174e-01 1.71392649e-01\\n5.86821102e-02 1.53170675e-01 -4.16174643e-02 2.45483622e-01\\n2.14872092e-01 -2.66842395e-01 1.20675325e-01 -1.27172038e-01\\n-1.54851675e-01 5.12567461e-02 8.48541595e-03 2.28704080e-01\\n-3.00283819e-01 2.97029346e-01 3.21345299e-01 -1.79299921e-01\\n-9.35133770e-02 -5.39048016e-01 -8.31153020e-02 -6.10525757e-02\\n-2.51586344e-02 1.50556818e-01 3.48439813e-01 9.62739661e-02\\n1.33496046e-01 1.60291836e-01 2.68686742e-01 1.01474881e+00\\n-2.84270942e-02 1.46096498e-01 -3.90315622e-01 3.60026032e-01\\n1.26150519e-01 -5.62604219e-02 1.71859011e-01 2.78561145e-01\\n8.32821801e-02 -9.84994173e-02 -3.12623531e-02 3.52494478e-01\\n-2.16796082e-02 -1.94563091e-01 -2.11960912e-01 2.13602055e-02\\n-2.47889936e-01 -2.81904697e-01 5.50401568e-01 2.14646012e-01\\n1.26954749e-01 -6.62021264e-02 -1.29778281e-01 -1.50679782e-01\\n-4.30395938e-02 3.02734673e-01 -5.67415692e-02 2.45988399e-01\\n-4.60449427e-01 -1.46553546e-01 -2.52545446e-01 2.74957210e-01\\n-1.12781286e-01 1.10714905e-01 -2.78410129e-02 -5.16946167e-02\\n3.46660942e-01 1.25801906e-01 -2.66999871e-01 1.51487648e-01\\n5.97993769e-02 -4.75971460e-01 -1.49710178e-01 1.56315744e-01\\n-1.15898274e-01 6.98791221e-02 7.48168975e-02 -3.09459805e-01\\n4.91058618e-01 1.81693867e-01 3.13660979e-01 -9.60749090e-02\\n3.06469142e-01 -1.56625375e-01 1.72300398e-01 1.22785471e-01\\n-4.49214548e-01 3.78737241e-01 -9.55578238e-02 -5.33676185e-02\\n1.56286120e-01 1.84495851e-01 3.26256573e-01 -2.85359085e-01\\n-1.29578523e-02 -6.00680485e-02 -4.10680413e-01 -4.47428077e-01\\n-1.34426355e-01 -1.22823291e-01 3.86585325e-01 -4.52493399e-01\\n-1.52417690e-01 5.24924025e-02 -5.23193538e-01 -1.52167931e-01\\n3.10555667e-01 1.54270619e-01 1.31295606e-01 1.28462106e-01\\n-2.48198017e-01 -5.11936367e-01 -7.80843124e-02 -6.02980614e-01\\n-4.47076946e-01 1.50842518e-02 -2.29011670e-01 2.35830367e-01\\n3.07386685e-02 2.42750924e-02 -2.22033635e-01 2.11346403e-01\\n-4.04158860e-01 1.13617912e-01 2.34052598e-01 2.41153821e-01\\n4.27493691e-01 -1.70521960e-02 -4.20815080e-01 4.02815014e-01\\n-1.02143064e-01 6.00399196e-01 2.71262586e-01 -9.07029569e-01\\n5.13866246e-01 1.73698276e-01 4.26884778e-02 -3.96385372e-01\\n5.03105462e-01 -4.00696278e-01 1.27559751e-01 1.50032744e-01\\n-3.91370863e-01 -3.01364779e-01 3.41295540e-01 -5.07303253e-02\\n-2.97531456e-01 6.24243796e-01 1.53920233e-01 -3.09033561e-02\\n3.13670814e-01 -3.06168228e-01 -5.60742244e-02 -1.55975044e-01\\n-4.87797856e-02 -2.63917625e-01 -3.47976118e-01 2.43340075e-01\\n-8.64481255e-02 -5.42271793e-01 -5.08048944e-02 -4.10908818e-01\\n-2.39013270e-01 -2.72896945e-01 -2.84926236e-01 4.86760825e-01\\n1.66680217e-01 7.54800886e-02 9.73448008e-02 -1.30494609e-01\\n1.77311674e-02 -5.62391043e-01 -7.54297525e-02 5.51765114e-02\\n5.61140239e-01 1.44608527e-01 6.54786378e-02 -2.31649796e-03\\n2.23099552e-02 5.39031386e-01 -4.10956413e-01 -3.43125641e-01\\n1.00078419e-01 2.31963933e-01 1.25708148e-01 -5.57438135e-02\\n5.98726720e-02 3.92250180e-01 -1.55031741e-01 8.94498751e-02\\n-1.10949486e-01 -4.54432368e-02 4.57385510e-01 2.05981061e-01\\n-2.28244752e-01 -2.07414359e-01 5.95843568e-02 2.05475599e-01\\n-4.89513785e-01 -2.72505701e-01 5.41526020e-01 2.79342741e-01\\n1.19418800e-01 3.49088430e-01 2.51636475e-01 -1.12806730e-01\\n-2.73165852e-01 -1.98048800e-01 8.74825493e-02 1.86691999e-01\\n-1.04535982e-01 2.83018053e-02 -1.86208129e-01 -5.39325118e-01\\n-3.65252757e+00 -2.08005548e-01 1.26070485e-01 -4.15266007e-01\\n8.24658573e-02 -1.68684185e-01 -2.93667037e-02 2.32942868e-02\\n-2.93749332e-01 -1.27251307e-02 -1.33001849e-01 -9.72242951e-02\\n7.73070082e-02 1.67758718e-01 8.20964798e-02 3.13106239e-01\\n7.27471039e-02 -1.76587686e-01 -1.60775974e-01 2.95252025e-01\\n-1.70411706e-01 -5.55414736e-01 2.02837929e-01 -7.44444653e-02\\n1.96581498e-01 2.17087626e-01 -2.99603999e-01 -4.23235632e-02\\n-3.14701587e-01 -3.65534306e-01 1.39938653e-01 -2.97197819e-01\\n-9.21784565e-02 3.91464502e-01 2.94737101e-01 -1.32482350e-01\\n-3.56717631e-02 -2.63281643e-01 7.04934914e-03 -4.23581213e-01\\n6.48547485e-02 -7.28055537e-01 -5.41012846e-02 -9.42880809e-02\\n7.93142974e-01 -4.87539679e-01 9.93669257e-02 1.84759960e-01\\n1.45523906e-01 1.57491520e-01 -7.30414838e-02 -6.44068792e-02\\n-1.84119090e-01 -5.67069530e-01 -1.38684139e-01 -1.71768188e-01\\n3.22775096e-01 7.19891548e-01 -1.19396448e-01 -2.15098094e-02\\n-2.16499437e-02 -3.81168753e-01 -4.65329140e-01 -4.00470793e-01\\n-3.22418481e-01 -1.28489926e-01 -6.11905932e-01 -4.34394032e-01\\n-9.88628268e-02 3.42035592e-02 -2.27694720e-01 6.91114306e-01\\n-4.33784276e-01 -5.31253040e-01 7.74545176e-03 -4.84096020e-01\\n6.79984242e-02 -3.48756343e-01 9.03712660e-02 -1.20877489e-01\\n-3.45941782e-01 -4.64170635e-01 1.19148113e-01 -5.89168333e-02\\n-1.68298379e-01 -1.94164664e-01 -3.17388177e-02 -3.21238518e-01\\n-3.04582089e-01 -3.70917231e-01 4.29767162e-01 1.23554371e-01\\n5.15813470e-01 2.19684288e-01 4.08937126e-01 1.63334861e-01\\n2.47329041e-01 -2.18658224e-01 -2.93725226e-02 -2.59396732e-01\\n1.24876603e-01 9.89315808e-02 6.50922358e-01 -2.77868241e-01\\n1.01515308e-01 -2.96281315e-02 -1.94938838e-01 8.08224664e-04\\n3.41298699e-01 6.11438639e-02 -4.42984663e-02 -1.51888222e-01\\n2.56941319e-01 -4.63480264e-01 -3.09549898e-01 1.12895831e-01\\n-8.15731511e-02 5.08352458e-01 5.27656823e-02 -4.70951200e-01\\n-2.56094068e-01 4.91847843e-01 1.01715531e-02 -3.75135601e-01\\n-2.65392184e-01 2.09401473e-01 -1.74534470e-01 1.88499153e-01\\n-7.06214607e-02 -1.78053141e-01 -2.67287612e-01 -6.77777678e-02\\n3.73926125e-02 1.65482074e-01 1.87124178e-01 1.37847781e-01\\n1.12520242e-02 -2.23989978e-01 -3.27999085e-01 1.16749704e-01\\n3.10035378e-01 4.28022772e-01 2.41112307e-01 -1.30717427e-01\\n-2.48063523e-02 2.75090992e-01 -1.50210708e-01 1.06546730e-01\\n-6.24994263e-02 -5.91805996e-03 -4.34516221e-01 -3.90198618e-01\\n-1.08423434e-01 -2.79388100e-01 7.66748637e-02 3.38957876e-01\\n2.69690365e-01 -7.35228434e-02 1.52519317e-02 -4.30815279e-01\\n4.66922045e-01 5.02883457e-02 1.38095021e-01 3.40182006e-01\\n4.49700095e-02 6.84462190e-01 -6.35357797e-02 1.40226884e-02\\n-9.70333070e-02 -1.94327787e-01 -3.19157600e-01 -1.49038956e-01\\n1.90072432e-01 -1.95983261e-01 -1.46378785e-01 6.27856016e-01\\n1.17687002e-01 -2.49051183e-01 -1.49197027e-01 3.09166759e-01\\n-1.70914792e-02 -1.49070188e-01 -2.19574019e-01 1.84826881e-01\\n2.08338365e-01 2.38857895e-01 2.61661381e-01 -3.23769122e-01\\n-9.48433653e-02 1.00538284e-01 -1.44971400e-01 4.71805334e-01\\n1.56600222e-01 2.41459265e-01 -2.06551611e-01 -3.55030149e-01\\n5.50453305e-01 -3.51539165e-01 -1.55006289e-01 -4.90157194e-02\\n3.94442072e-03 -1.47778735e-01 -5.04004180e-01 4.03541923e-02\\n-5.21468557e-02 -2.00520560e-01 2.15978026e-02 -2.16396526e-02\\n8.33084062e-02 3.84547152e-02 -5.15770078e-01 -2.88542628e-01\\n-2.60702759e-01 -1.48369931e-02 5.10231443e-02 -4.93001878e-01\\n-3.29982489e-02 -3.02623846e-02 -5.43432593e-01 3.45661134e-01\\n-3.27735990e-01 1.53753743e-01 1.13333404e-01 1.86317995e-01\\n-3.37649971e-01 -9.64356139e-02 1.93899095e-01 1.72470942e-01\\n-2.29835138e-01 -1.53695166e-01 -8.02765340e-02 -8.81084085e-01\\n2.86960900e-02 5.13215996e-02 -9.66957062e-02 7.41850361e-02\\n1.49915546e-01 -4.99045640e-01 9.03551131e-02 -2.82724231e-01\\n3.02100070e-02 1.56013723e-02 -1.00634120e-01 -4.74137306e-01\\n3.71353030e-02 2.18999982e-02 -2.60379225e-01 4.30826932e-01\\n-4.66025978e-01 2.33359188e-01 8.94829780e-02 1.00130677e-01\\n5.47605827e-02 -3.74273330e-01 2.50652790e-01 -2.11885646e-01\\n-3.65844548e-01 -1.81109101e-01 -3.59085083e-01 -3.13374281e-01\\n9.13297608e-02 -2.99694657e-01 -2.07481101e-01 8.98375213e-02\\n2.51099139e-01 9.25889686e-02 -1.69595197e-01 -1.84701845e-01\\n1.88754082e-01 -6.25259519e-01 1.44488975e-01 -1.02732494e-01\\n-1.00349590e-01 -1.95233040e-02 1.67078450e-01 -9.55920517e-02\\n-1.48834825e-01 -2.62522697e-01 5.10663211e-01 -2.05214784e-01\\n-3.48143399e-01 -7.32951537e-02 8.16920400e-02 -9.07087699e-03\\n2.72296309e-01 -3.83866102e-01 6.16234727e-04 2.76739120e-01\\n1.61880806e-01 1.30000174e-01 2.96319366e-01 -6.01133890e-02\\n-2.00290605e-02 3.18570971e-01 -3.66030157e-01 1.05685592e-01\\n8.23610842e-01 2.07408577e-01 2.04660967e-01 1.20604388e-01\\n1.71344578e-01 2.02863753e-01 5.40255308e-01 9.76890326e-02\\n-7.88517017e-03 3.61270130e-01 1.45184109e-02 -5.25092423e-01\\n-5.97347021e-02 -2.19381586e-01 -2.71693736e-01 -3.96620125e-01\\n4.66315061e-01 5.60151696e-01 -3.25137645e-01 -2.44149059e-01\\n8.44833702e-02 -2.35345028e-03 2.22055167e-01 -1.98978558e-01\\n-9.36428532e-02 -1.05284765e-01 5.73568940e-01 1.22620560e-01\\n3.13448906e-01 4.59998876e-01 -1.23825550e-01 -3.99682730e-01\\n-1.97102293e-01 1.68016449e-01 1.38428792e-01 4.00826156e-01\\n1.28055159e-02 3.66333246e-01 -1.32937580e-01 2.11188182e-01\\n-1.31251663e-03 7.89289251e-02 7.51325712e-02 1.11105815e-01\\n1.07911803e-01 2.18782902e-01 2.37698957e-01 4.43110973e-01\\n2.31017128e-01 5.05708575e-01 2.87813723e-01 9.68770385e-02\\n3.70300651e-01 5.84960878e-01 4.21933979e-01 3.30783486e-01\\n-1.12410143e-01 -4.32313979e-02 -2.53629625e-01 -4.08840459e-03\\n2.11778343e-01 3.11102808e-01 2.13676855e-01 8.34570467e-01\\n3.65178227e-01 2.41637111e-01 5.16882241e-01 -5.49507201e-01\\n-5.97806692e-01 6.35111751e-03 4.15731937e-01 -3.93595606e-01\\n-8.09651911e-02 -8.32131878e-03 -4.27165806e-01 2.44583607e-01\\n-5.68036437e-01 -1.81023479e-01 -2.99613774e-02 -9.09918621e-02\\n1.29650310e-01 -5.74795902e-02 -1.31943822e-01 1.08235471e-01\\n-1.56082094e-01 -2.67676294e-01 -3.00258964e-01 -4.74960282e-02\\n-2.60278910e-01 -2.04390153e-01 -1.01166591e-01 -8.35158899e-02\\n-3.01783625e-02 -4.63908046e-01 -2.38416076e-01 2.06503749e-01\\n4.25047249e-01 -1.53560176e-01 -1.24114506e-01 -1.18607774e-01\\n-1.02739753e-02 3.00516874e-01 5.11017084e-01 -1.82087533e-02\\n5.30131608e-02 -1.25386164e-01 -2.56912977e-01 5.13191968e-02\\n1.85028955e-01 4.51542512e-02 6.45688623e-02 3.37251216e-01\\n-2.90362537e-01 -3.98843512e-02 1.43685743e-01 2.54536450e-01\\n-4.83625442e-01 8.48775879e-02 -2.58402824e-02 2.56341249e-01\\n1.08085468e-01 2.95670122e-01 -3.30719262e-01 3.19070339e-01\\n-2.34560639e-01 -4.87091154e-01 3.89472783e-01 -2.85201997e-01\\n4.30302657e-02 5.04213758e-02 2.46148303e-01 1.47031695e-01\\n-3.04527730e-01 6.99813217e-02 3.54562625e-02 4.74824131e-01\\n-1.40869198e-03 3.03757936e-01 -4.00235504e-01 -8.44650045e-02\\n-3.05595577e-01 1.97524041e-01 -3.92276943e-02 2.26091325e-01\\n-1.41756684e-01 2.96635956e-01 1.11110128e-01 5.94221130e-02\\n2.22772390e-01 -3.89642380e-02 -1.66060984e-01 -3.34210694e-01\\n-4.55967337e-01 -1.63601011e-01 5.29720858e-02 -4.91726696e-02\\n1.25144973e-01 -3.83168548e-01 -1.58255816e-01 -1.26264945e-01\\n-1.66520447e-01 -4.05404836e-01 -8.34486336e-02 -9.39890668e-02]]',\n", + " 'About our client Unser Kunde gehört zu den grössten Medienunternehmen der Schweiz. Your responsibilities Developing a high-quality code base for the data pipelines Interacting with the data scientists, business analysts and IT engineers to define data needs & provide solutions Maintenance of the databases, data lakes and data pipeline orchestration Development, provisioning and monitoring of data products …room for own data / engineering projects Your profile At least one year experience in a similar data science environment Well versed in Scala and/or Java Your focus is on developing high-quality software incl. unit & integration tests You have worked with distributed computing technologies like Apache Spark You are open for new technologies and challenges Nice-to-Have: Experience with SQL und noSQL databases Experience with Python You are familiar with cloud computing services like AWS or Google Cloud Knowledge of data science concepts is a strong plus Your chance Apply now: jobs@oneagency.ch! Ort: Zürich Spezialisierung: JAVA Entwicklung SQL Sprachen: Deutsch Englisch Job ID: 2371',\n", + " '[\"\"]',\n", + " '[\"Apache Spark\", \"NoSQL\", \"Nice (Unix Utility)\", \"Interactivity\", \"Azure Data Lake\", \"Data Engineering\", \"Distributed Computing\", \"Software Quality Management\", \"Integrity Testing\", \"Python (Programming Language)\", \"Data Science\", \"Google Cloud\", \"Project Engineering\", \"Data Lakes\", \"Amazon Data Pipeline\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Cloud Computing\", \"Documentation Based Coding\"]',\n", + " \"['English', 'Catalan', 'Telugu', 'Latvian']\"],\n", + " ['55',\n", + " 'sports statistician (data collection)',\n", + " 'Bern',\n", + " 'Computer Hardware & Software',\n", + " '',\n", + " '[[ 4.38705273e-02 2.73132533e-01 4.56359893e-01 -1.44988209e-01\\n4.08261806e-01 -2.12239057e-01 2.81246036e-01 6.04110956e-01\\n-1.47184394e-02 -2.84927487e-01 -6.02068156e-02 -2.38204107e-01\\n4.87643071e-02 5.20537868e-02 1.06575906e-01 3.43236595e-01\\n3.39041650e-01 2.20593736e-01 -1.80082634e-01 2.87429363e-01\\n2.77925283e-01 -2.69536562e-02 1.83488458e-01 5.88874280e-01\\n4.83296096e-01 1.76358491e-01 4.97343130e-02 3.45765911e-02\\n-2.69042969e-01 -4.94398683e-01 5.37498057e-01 1.40328994e-02\\n1.89861674e-02 -2.16868296e-01 5.95550351e-02 -1.62727088e-01\\n-1.58000827e-01 -2.01054767e-01 -5.50476164e-02 2.18655452e-01\\n-4.38560277e-01 -2.18989149e-01 6.21851943e-02 3.97520475e-02\\n-1.22135431e-01 -3.62955540e-01 2.42464617e-01 -1.32702619e-01\\n4.93885130e-02 7.94780161e-03 -4.32555705e-01 2.99489319e-01\\n-7.59370029e-02 -3.53152826e-02 2.70963132e-01 6.74042821e-01\\n-1.37565687e-01 -4.94898617e-01 -4.50482368e-01 -2.99889237e-01\\n-6.04718849e-02 9.77480263e-02 6.10069484e-02 -1.62161574e-01\\n3.05662870e-01 2.06026807e-01 1.83647782e-01 5.14796317e-01\\n-5.79928756e-01 -4.40597860e-03 -2.74153471e-01 -2.75246613e-02\\n-2.66782641e-01 -6.99398443e-02 -2.29532048e-01 -9.03735608e-02\\n-2.48151980e-02 3.82037103e-01 1.91615641e-01 -1.60696227e-02\\n-1.87394172e-02 1.80770576e-01 -1.26568303e-01 2.57616580e-01\\n2.85569251e-01 2.69243598e-01 6.74547628e-02 1.14812382e-01\\n-9.80143696e-02 5.30557036e-01 2.60270298e-01 -1.31377369e-01\\n2.50114352e-01 -2.38227677e-02 4.95130718e-01 -1.50450692e-01\\n9.77597982e-02 -5.47967106e-02 -1.66397333e-01 1.15807988e-01\\n2.95331925e-01 -2.49329403e-01 1.86101347e-01 8.70347172e-02\\n-1.66895270e-01 5.32183312e-02 1.01844519e-01 2.50342280e-01\\n-2.07616046e-01 6.66881621e-01 -5.52766658e-02 -2.18523160e-01\\n-3.78284268e-02 -5.62614024e-01 -2.07493320e-01 -1.54301584e-01\\n5.44785634e-02 3.16814184e-01 2.90343203e-02 2.25730464e-01\\n9.86732766e-02 -2.24364586e-02 2.55976796e-01 6.51383102e-01\\n-3.80106382e-02 6.24917597e-02 -2.06704274e-01 1.53056800e-01\\n4.22059298e-02 -2.86504149e-01 3.57810140e-01 1.69535220e-01\\n9.70258936e-02 -1.56055212e-01 -1.35600477e-01 1.62033439e-01\\n-2.21867427e-01 -2.09388062e-01 -2.61077791e-01 3.11030030e-01\\n-2.13229656e-01 -2.36813962e-01 3.21366549e-01 -3.16511691e-02\\n2.16030374e-01 -1.87161043e-01 -2.16662027e-02 -3.44369002e-02\\n-3.09002995e-02 2.71040559e-01 1.03452876e-01 -1.00479029e-01\\n-9.09725726e-02 -2.82291800e-01 -3.20498943e-01 1.32277891e-01\\n-1.37332901e-01 1.26874279e-02 -1.23584002e-01 -1.49074286e-01\\n5.31401157e-01 2.86676809e-02 -2.43145838e-01 3.19003761e-01\\n-2.03371987e-01 5.28299436e-02 -1.85650229e-01 2.56166250e-01\\n-4.96103689e-02 2.02010259e-01 -1.36892065e-01 -2.19741598e-01\\n6.99733794e-01 6.72520399e-02 3.08127198e-02 -7.88611826e-03\\n9.47203785e-02 -9.73203313e-03 1.47720307e-01 1.25371739e-01\\n-7.87160277e-01 2.75375366e-01 7.57753029e-02 7.12938160e-02\\n1.96291283e-01 -2.67030925e-01 2.31741443e-01 -3.33534092e-01\\n5.45267761e-02 -8.17096978e-02 -3.24779242e-01 -2.25765839e-01\\n-3.50039899e-02 -9.58629847e-02 3.97546858e-01 -3.14193517e-01\\n-2.11287454e-01 1.88113540e-01 -3.79242390e-01 -8.91688466e-02\\n2.91984767e-01 8.70958045e-02 1.22901306e-01 3.49673957e-01\\n-3.66513491e-01 -3.30423623e-01 1.11117028e-01 -3.04356396e-01\\n-1.62968561e-01 6.90740049e-02 -2.78150201e-01 3.05703908e-01\\n-2.71874927e-02 -4.55084536e-03 -2.88094997e-01 1.25616238e-01\\n-7.49591812e-02 3.22587267e-02 2.21579522e-01 -3.77192087e-02\\n3.06440383e-01 -1.00486949e-02 -4.19618696e-01 2.08368927e-01\\n-7.18862414e-02 4.06030238e-01 1.07705511e-01 -5.39397597e-01\\n2.65686065e-01 2.73862243e-01 -3.75272892e-02 -3.74531269e-01\\n7.17499673e-01 -2.54255056e-01 1.41135454e-01 -8.98710787e-02\\n-3.67164075e-01 -2.90924549e-01 1.55378044e-01 -2.20927373e-01\\n-2.33269483e-01 4.96159673e-01 1.00930080e-01 1.38192222e-01\\n1.79637492e-01 -5.34924529e-02 1.03264742e-01 1.62322477e-01\\n1.82689764e-02 -1.42102778e-01 -3.88056070e-01 -3.39152336e-01\\n-5.07356599e-02 -4.04557019e-01 -2.77129430e-02 -3.83376926e-01\\n-2.45349944e-01 -2.65982509e-01 1.02269952e-03 9.11585912e-02\\n3.36768627e-01 2.24642217e-01 1.42972291e-01 2.19632834e-02\\n-5.32417774e-01 -6.40655637e-01 -2.62096096e-02 1.10326611e-01\\n1.75605953e-01 2.93850332e-01 1.47453964e-01 -6.43678531e-02\\n-2.41599213e-02 6.27935529e-01 -2.61640698e-01 1.67153049e-02\\n1.50209129e-01 2.16390938e-01 6.68910071e-02 -1.43568262e-01\\n-7.73585290e-02 2.53667027e-01 -1.30450979e-01 6.86488524e-02\\n-1.72763944e-01 -6.22031577e-02 3.22849274e-01 2.48771403e-02\\n-2.85558194e-01 -2.84582794e-01 -1.66549623e-01 1.69623166e-01\\n-3.84649545e-01 -7.76232406e-02 6.28262401e-01 1.27855644e-01\\n1.11945286e-01 2.26669818e-01 3.12370300e-01 -1.32496506e-01\\n-6.21603057e-02 -1.78918764e-01 2.15633884e-01 3.46404277e-02\\n-2.60126609e-02 4.25256565e-02 -1.31724551e-01 -6.63800955e-01\\n-3.35237741e+00 3.94089241e-03 -1.90655347e-02 -2.78659552e-01\\n2.83392131e-01 -2.34904274e-01 1.11903809e-01 -8.17667544e-02\\n-3.70159537e-01 1.85634315e-01 -1.48583099e-01 -1.82908356e-01\\n3.29516709e-01 2.33326763e-01 1.62165970e-01 4.10560578e-01\\n1.63936481e-01 -4.38713849e-01 -7.24433586e-02 2.99517453e-01\\n-2.43733257e-01 -4.99371648e-01 2.56996006e-01 -4.07570302e-02\\n3.74846160e-01 4.32385713e-01 -4.09449637e-01 -2.34504104e-01\\n-3.27980012e-01 -1.91845760e-01 3.71113420e-02 -3.48924726e-01\\n-1.29161850e-01 3.08234304e-01 1.14485458e-01 -2.05970928e-01\\n2.12919772e-01 -3.99065495e-01 -8.65141153e-02 -4.32079107e-01\\n-1.83002040e-01 -5.88439584e-01 -4.51765396e-03 -1.22108489e-01\\n8.09578478e-01 -2.92220324e-01 1.70927435e-01 1.07775100e-01\\n1.30499423e-01 1.37044147e-01 6.03815308e-04 -7.04280064e-02\\n-2.29370117e-01 -8.57263133e-02 -2.58993119e-01 -1.81957081e-01\\n5.35482764e-01 7.12382197e-01 -2.02791452e-01 -9.97142270e-02\\n-4.81484756e-02 -3.66143256e-01 -2.96701193e-01 -3.18065137e-01\\n-2.69624621e-01 -2.75117338e-01 -6.51187241e-01 -4.01103884e-01\\n-3.40979956e-02 6.42073080e-02 2.78844149e-03 2.17220530e-01\\n-2.20900074e-01 -5.16051829e-01 -1.12313606e-01 -4.11276549e-01\\n1.27355501e-01 1.16373762e-01 5.01685441e-02 -4.00911756e-02\\n-1.08131677e-01 -4.55717385e-01 -1.88485794e-02 -1.21553685e-03\\n-4.24726270e-02 -2.81531602e-01 1.49938866e-01 -1.49002910e-01\\n-3.49096566e-01 -4.70078528e-01 3.67539316e-01 1.02702715e-01\\n2.61365443e-01 7.08594844e-02 1.92724988e-02 2.73975909e-01\\n2.32039481e-01 -3.10565531e-01 3.57482821e-01 -2.15800479e-01\\n5.91379255e-02 6.07032776e-02 6.36738956e-01 -2.29637161e-01\\n7.42953569e-02 7.89041296e-02 -2.71592736e-01 -8.16527084e-02\\n3.16026419e-01 -8.75024498e-02 6.39519542e-02 -4.67963785e-01\\n1.44301370e-01 -2.41084084e-01 -1.63071677e-01 -9.58846807e-02\\n1.30142823e-01 4.18790042e-01 7.99682140e-02 -2.80945361e-01\\n-1.72960386e-01 2.80723602e-01 -1.64770275e-01 -1.88303009e-01\\n-2.72102952e-01 5.21387625e-03 -2.26654649e-01 1.69191197e-01\\n3.33226696e-02 -1.54412284e-01 -2.69157380e-01 -9.17643309e-02\\n-3.19907553e-02 3.71799469e-01 2.15447754e-01 1.54115513e-01\\n-4.24734205e-02 -3.24447811e-01 9.74232554e-02 1.67904884e-01\\n2.13635474e-01 1.85468018e-01 7.50456676e-02 -2.09042162e-01\\n-5.55562302e-02 2.30805323e-01 -1.51341915e-01 2.75644809e-01\\n-2.57851124e-01 -2.42028516e-02 -3.15976024e-01 -3.06725025e-01\\n-1.99827135e-01 -2.72375524e-01 2.04533916e-02 2.08513215e-01\\n1.73182532e-01 6.92194104e-02 -1.12546325e-01 -3.77681941e-01\\n2.37114117e-01 -1.56994745e-01 1.96155325e-01 2.87954360e-01\\n7.25605562e-02 3.95985514e-01 6.98136911e-02 -1.74162716e-01\\n-1.97437182e-01 9.37227011e-02 -1.99047908e-01 -1.21802390e-01\\n-3.37855406e-02 -3.83261502e-01 -1.42372057e-01 3.28563154e-01\\n7.74642751e-02 -1.60729036e-01 -4.05632742e-02 8.01045075e-02\\n-1.11362360e-01 -3.95023704e-01 -2.26908594e-01 -1.45832030e-02\\n3.13224375e-01 1.72084332e-01 2.42211178e-01 -4.80326951e-01\\n1.58598766e-01 -8.04883093e-02 -1.22973956e-01 4.99053568e-01\\n1.55089702e-02 -2.64044821e-01 -2.41306797e-01 -2.35684603e-01\\n3.24809939e-01 -9.64755416e-02 -1.45407310e-02 2.20773652e-01\\n7.64855072e-02 -2.94836134e-01 -5.26220381e-01 -1.07270755e-01\\n-1.42327938e-02 -4.97867055e-02 1.39040574e-01 6.33183643e-02\\n-4.37221192e-02 -6.10750169e-03 -6.48360372e-01 -3.48594427e-01\\n-2.27166995e-01 2.02552542e-01 -1.38799176e-01 -4.66756523e-01\\n-1.34817481e-01 -6.15822747e-02 -5.51600158e-01 2.02852309e-01\\n-1.55952498e-01 1.17811605e-01 5.79979979e-02 -8.18227604e-02\\n-2.99324900e-01 5.91863841e-02 3.44082475e-01 1.79212868e-01\\n-1.98133111e-01 -1.82737887e-01 1.08805969e-02 -6.86638653e-01\\n1.15810119e-01 -3.13996561e-02 -2.99032647e-02 1.77029639e-01\\n3.81960645e-02 -6.42374039e-01 2.39631921e-01 -2.39837468e-01\\n-1.72412559e-01 1.08359810e-02 -1.09279051e-01 -4.04753745e-01\\n1.13779552e-01 -6.76573589e-02 -1.80980876e-01 1.73446298e-01\\n-1.91113487e-01 2.42556870e-01 -1.14922442e-01 6.56584576e-02\\n-1.54515401e-01 -3.02452147e-01 9.38630253e-02 -6.00573063e-01\\n-2.14402556e-01 1.95687503e-01 -1.92668185e-01 3.33568901e-02\\n-6.81488365e-02 -1.42357305e-01 -9.06206146e-02 1.96828097e-01\\n3.58105451e-02 -2.80771330e-02 -9.14859250e-02 -2.41824985e-02\\n-5.26962467e-02 -4.81983066e-01 -3.70847508e-02 -1.19182184e-01\\n-1.45993773e-02 -2.84433160e-02 2.34049886e-01 5.35398896e-04\\n8.73426422e-02 -4.35232639e-01 3.99468780e-01 -3.14969301e-01\\n-3.14047486e-01 1.14815690e-01 1.71864912e-01 -4.39469330e-03\\n3.34386915e-01 -1.66459501e-01 -6.93114400e-02 3.39202046e-01\\n-5.53525612e-02 2.44651064e-01 4.24346805e-01 -6.39709309e-02\\n-1.90122217e-01 2.89930493e-01 -2.36898780e-01 1.11978248e-01\\n7.55328298e-01 2.37459112e-02 1.99675292e-01 8.87129381e-02\\n-8.77536461e-03 1.75478309e-01 3.48627359e-01 -2.46440992e-02\\n-1.01478659e-01 1.58378318e-01 1.96661260e-02 -6.82040572e-01\\n-2.81806998e-02 4.96064350e-02 -3.53812397e-01 -3.32648098e-01\\n5.62490761e-01 5.08081436e-01 -2.78761685e-01 -3.09942782e-01\\n-2.80937493e-01 -3.09684128e-01 -2.14009568e-01 -4.92867865e-02\\n2.00952634e-01 -1.94507614e-01 5.23717999e-01 -2.74325092e-03\\n5.55576384e-03 4.81095552e-01 3.84747908e-02 -2.11213753e-01\\n6.30697682e-02 7.89916292e-02 -2.97353715e-02 2.83988446e-01\\n-2.38645658e-01 3.68276983e-01 -1.48915974e-02 -1.12590671e-01\\n-6.79658353e-02 4.28388454e-02 2.33645588e-02 1.34298369e-01\\n-1.76686853e-01 2.83379614e-01 3.93935531e-01 3.80995840e-01\\n4.01187629e-01 2.89426804e-01 2.35323891e-01 7.55224749e-02\\n6.00815475e-01 3.02619547e-01 3.50212187e-01 2.60290861e-01\\n-5.90539761e-02 -4.93116584e-03 1.08019762e-01 5.15892282e-02\\n3.11098814e-01 5.82069419e-02 -1.43118560e-01 7.64477313e-01\\n4.37378198e-01 1.54766694e-01 5.79186678e-01 -6.46853089e-01\\n-3.03763866e-01 -1.90125391e-01 4.42297995e-01 -3.16186190e-01\\n-8.94772559e-02 6.67326376e-02 3.76879834e-02 1.75831005e-01\\n-5.33133030e-01 -2.78022856e-01 -2.20935002e-01 1.16374858e-01\\n1.64149001e-01 -9.78576690e-02 -1.20044269e-01 -5.78674339e-02\\n-1.83457896e-01 -1.69059858e-01 -7.01300800e-01 -4.68546152e-02\\n-2.43107170e-01 -2.37365365e-01 -1.90150226e-03 -1.59700215e-01\\n-1.55088291e-01 -1.68176904e-01 -2.12183744e-01 3.97447944e-02\\n3.72415096e-01 -2.52616048e-01 1.85259245e-02 -2.60451019e-01\\n3.07233542e-01 1.02187708e-01 4.60426241e-01 -1.77461132e-01\\n6.35346621e-02 -2.56247222e-01 -1.95870534e-01 9.12894234e-02\\n3.74264419e-01 3.26761194e-02 1.50063068e-01 4.16640043e-01\\n-3.36274326e-01 -1.42636076e-01 7.63121061e-04 3.89732569e-01\\n-5.19902229e-01 1.01026252e-01 2.49903828e-01 3.01548600e-01\\n2.04409137e-01 2.41378415e-02 -2.78606981e-01 -1.19009629e-01\\n-2.16255441e-01 -4.55185413e-01 2.31536046e-01 2.00554878e-01\\n-2.28330180e-01 2.46692359e-01 2.68063664e-01 8.89910087e-02\\n-2.05821067e-01 3.80013064e-02 -1.90907285e-01 1.27047166e-01\\n1.13381661e-01 2.03032091e-01 -4.01006550e-01 -2.84712166e-01\\n-2.95141757e-01 2.80408025e-01 -1.29397750e-01 1.82448868e-02\\n4.74656299e-02 2.23844454e-01 1.84652060e-01 9.65123624e-02\\n4.96955216e-01 -1.30104348e-01 -2.36703321e-01 -1.56765699e-01\\n-1.13471210e-01 -3.30868095e-01 -2.46754829e-02 -2.13712871e-01\\n9.31640491e-02 -3.79035413e-01 -8.22609365e-02 -8.66857022e-02\\n-3.65658671e-01 -1.92139536e-01 3.97475846e-02 -1.03776036e-02]]',\n", + " 'Job Description Genius Sports Statisticians are responsible for attending Volleyball/Handball events in Bern/Switzerland and reporting all the action directly from the venue using our state-of-the-art Mobile Interface and short key-phrase reports. This is a great part-time position and as such, students are very welcome to apply. No prior reporting knowledge is required, full training included. Job requirements: Good knowledge of the rules of Volleyball/HandballClear and understandable spoken EnglishWillingness to travel to sports venues (driver’s license or travel card is an advantage)Availability to attend sports events, including on weekdays and/or weekends We offer attractive payment and performance-based bonus system. How to apply: Are you ready to join the Genius Sports team? Sign up today at https://www.geniussports.com/statisticians Job Type: Part-time Location: Bern, BE (Preferred) Language: English (Required) ',\n", + " '[\"Positivity\"]',\n", + " '[\"Library For WWW In Perl\", \"Component Object Model (COM)\", \"Performance-Based Budgeting\", \"Job Descriptions\", \"Licensing\", \"Mobility\"]',\n", + " \"['English', 'South Ndebele', 'Tigrinya']\"],\n", + " ['28',\n", + " 'system engineer/software architect',\n", + " 'Basel',\n", + " 'Logistics & Supply Chain',\n", + " '',\n", + " '[[-1.64869174e-01 3.85053575e-01 3.95698398e-01 -1.61884844e-01\\n6.15215302e-01 -2.24121884e-01 -5.91625869e-02 3.05320650e-01\\n-3.99088534e-03 -2.18617037e-01 -2.53245503e-01 -2.97860265e-01\\n4.53472324e-02 1.81709051e-01 2.01436341e-01 3.89436781e-01\\n3.96493644e-01 8.56631175e-02 -8.66634697e-02 3.60118330e-01\\n4.00876701e-02 -1.21664844e-01 1.81032896e-01 7.44412422e-01\\n3.41352671e-01 7.80267045e-02 -5.35197882e-03 6.63613603e-02\\n-2.70996541e-01 -1.54536918e-01 4.56873298e-01 6.07843604e-03\\n-2.13904783e-01 -3.75642240e-01 9.52754170e-02 8.19151700e-02\\n-3.33104968e-01 -1.05021939e-01 -2.11619124e-01 1.08871780e-01\\n-6.05447412e-01 -2.44151473e-01 -6.46672994e-02 -3.44157312e-03\\n-2.19788477e-01 -3.22445333e-01 2.66956925e-01 -1.34717181e-01\\n1.05084265e-02 1.09221935e-01 -3.96043301e-01 2.95979559e-01\\n-3.82356107e-01 -2.51275003e-01 4.82658744e-01 6.57673299e-01\\n-9.13333371e-02 -4.83925939e-01 -4.63221878e-01 -2.12888658e-01\\n5.41311838e-02 -4.19691717e-03 1.83200493e-01 -3.13319266e-01\\n4.19206232e-01 1.30567953e-01 8.27354118e-02 3.52370292e-01\\n-8.50582778e-01 -1.44268572e-01 -4.30860996e-01 6.75273091e-02\\n-2.65720874e-01 -6.41506985e-02 -2.36563489e-01 -8.22180137e-02\\n-9.45638865e-02 3.57570916e-01 -1.17599651e-01 1.08995847e-01\\n-1.53086722e-01 3.83751482e-01 -2.62345254e-01 3.04271311e-01\\n1.92082971e-01 2.18198463e-01 1.69111550e-01 1.42890722e-01\\n-3.53083193e-01 5.97916961e-01 1.55008569e-01 -1.79157019e-01\\n8.07447135e-02 1.76036358e-01 3.31478059e-01 -4.66765612e-02\\n2.90754195e-02 7.35920444e-02 -2.68406361e-01 1.85877427e-01\\n1.92072868e-01 -1.01937883e-01 2.85527594e-02 -7.66294226e-02\\n-1.24147996e-01 1.22425742e-02 8.92425701e-02 1.85217977e-01\\n-5.47273159e-01 4.36079711e-01 7.77199715e-02 -2.61978745e-01\\n-8.34713355e-02 -5.07926106e-01 -1.41531095e-01 5.99541180e-02\\n-7.02264486e-04 2.98566781e-02 1.81160048e-01 2.59379894e-01\\n3.18550915e-01 -1.35945693e-01 1.46862864e-01 8.06480944e-01\\n9.84775349e-02 1.05211854e-01 -1.32412836e-01 3.33547294e-01\\n4.67183515e-02 -1.97451159e-01 1.60005704e-01 3.66002828e-01\\n1.28862590e-01 -1.46188363e-01 -3.04914415e-01 3.99531364e-01\\n-1.26547679e-01 -2.16420710e-01 -3.40201378e-01 3.18950266e-01\\n-1.77669838e-01 -5.34038186e-01 5.44754922e-01 -2.04864904e-01\\n8.33252519e-02 -7.15524778e-02 2.77477670e-02 8.65424611e-03\\n-1.66720286e-01 3.27372938e-01 1.64200827e-01 6.52088299e-02\\n-2.11612478e-01 -2.72340864e-01 -1.03342980e-01 1.66548669e-01\\n-1.79656655e-01 2.38712326e-01 -2.22866118e-01 -2.92488962e-01\\n3.78706038e-01 5.92276454e-02 -3.92481148e-01 3.49876016e-01\\n-3.56556522e-03 5.96764358e-03 -1.18122123e-01 2.11064637e-01\\n-1.73618287e-01 2.08804816e-01 -3.89121063e-02 -2.95157909e-01\\n4.56267387e-01 3.52419317e-02 6.77510276e-02 -2.87939608e-02\\n3.37804854e-01 -7.72425383e-02 2.84024358e-01 1.22891059e-02\\n-7.77082860e-01 4.29614514e-01 -7.44989365e-02 -1.27571955e-01\\n5.57463020e-02 -9.50217023e-02 5.51868618e-01 -3.72840762e-01\\n-1.35120243e-01 -1.36452764e-01 -3.92439365e-01 -3.58274937e-01\\n-4.47425731e-02 -4.52443771e-02 3.88053477e-01 -2.67103851e-01\\n-3.87561060e-02 2.38074809e-01 -6.50192320e-01 -5.25848456e-02\\n3.09077829e-01 2.49093607e-01 2.55404025e-01 1.12071022e-01\\n-2.06200540e-01 -4.63891029e-01 1.43729940e-01 -4.71947610e-01\\n-1.38347283e-01 1.32529378e-01 -1.29382327e-01 1.26609266e-01\\n-2.22080364e-03 -3.36814746e-02 4.44824360e-02 1.46396942e-02\\n-1.23858079e-01 -3.15994816e-03 2.01081857e-01 -1.10005572e-01\\n1.42837480e-01 1.40549809e-01 -4.24966693e-01 4.68867868e-01\\n-1.68038800e-01 5.10684431e-01 -3.44059095e-02 -7.29941428e-01\\n5.23388147e-01 3.18902522e-01 -3.23811285e-02 -3.07860792e-01\\n7.38788784e-01 -2.76392370e-01 -1.49994299e-01 -1.53828366e-02\\n-4.33088779e-01 -1.22067489e-01 7.73876384e-02 -2.90765792e-01\\n-2.53159910e-01 6.24037743e-01 1.99559070e-02 9.32316408e-02\\n3.68438840e-01 -1.73812270e-01 -3.31029408e-02 3.20851244e-02\\n-7.19114393e-02 -7.74137527e-02 -4.92659420e-01 -6.68328702e-02\\n5.10135526e-03 -4.33945626e-01 -2.30748653e-01 -4.20396268e-01\\n-2.82812238e-01 -2.97468126e-01 -2.56131649e-01 1.58398394e-02\\n8.18292499e-02 5.09434938e-02 6.65379763e-02 5.12356237e-02\\n-2.84336388e-01 -6.12565994e-01 6.94952682e-02 8.03545937e-02\\n1.65271237e-01 3.60740393e-01 1.67129382e-01 -7.55177513e-02\\n-7.06113279e-02 4.58339125e-01 -4.18217301e-01 -2.94527173e-01\\n1.96250424e-01 9.66379195e-02 -3.15619037e-02 -1.56910777e-01\\n1.68093279e-01 3.73768389e-01 -2.01111063e-01 1.08716480e-01\\n-9.93220285e-02 7.57577177e-03 2.93868810e-01 -4.76669408e-02\\n-1.32856071e-01 -2.60889769e-01 -1.72347307e-01 1.75716072e-01\\n-5.87861478e-01 -2.45149016e-01 4.14664984e-01 1.09393876e-02\\n9.63303298e-02 2.19649762e-01 2.84047097e-01 -7.94862211e-02\\n-1.77778155e-01 -2.40439817e-01 2.22191006e-01 1.90363795e-01\\n7.08708838e-02 1.53429896e-01 -7.78603777e-02 -5.29069424e-01\\n-3.10218287e+00 -5.58129102e-02 1.03357799e-01 -3.26296628e-01\\n3.54096204e-01 -2.39558518e-02 2.26915941e-01 -5.40596619e-02\\n-3.15092623e-01 -3.92767712e-02 -2.90794522e-01 -1.63367242e-01\\n2.30480075e-01 1.93930179e-01 1.48243576e-01 1.59528777e-01\\n-2.58781970e-03 -4.33294684e-01 1.52660251e-01 5.24591148e-01\\n-1.28309831e-01 -8.27476680e-01 1.30397454e-01 -1.83230817e-01\\n2.40069836e-01 2.13088453e-01 -6.58737123e-01 -1.18857749e-01\\n-3.60040039e-01 -1.37786567e-01 1.52859956e-01 -2.45584413e-01\\n-1.37622669e-01 3.29576164e-01 1.36215672e-01 -1.50555089e-01\\n4.98056784e-02 -3.35009784e-01 -1.69152748e-02 -5.48381209e-01\\n1.92184612e-01 -6.24221742e-01 -3.72105874e-02 5.81847429e-02\\n6.33084774e-01 -2.58349150e-01 1.88935414e-01 1.30623892e-01\\n1.35097682e-01 2.98577964e-01 1.52410135e-01 -1.82885751e-02\\n-1.71959370e-01 -1.19048126e-01 -2.68210582e-02 -1.53569644e-02\\n4.44261432e-01 4.62099880e-01 -3.61448318e-01 1.62699409e-02\\n4.60620187e-02 -4.05247808e-01 -5.26132286e-01 -2.87476301e-01\\n-2.48122662e-01 -1.38568223e-01 -7.24311471e-01 -4.96111959e-01\\n-3.33344303e-02 -1.71206892e-01 2.54723951e-02 6.56493008e-01\\n-4.13407505e-01 -3.14635247e-01 -7.71198496e-02 -5.79887748e-01\\n2.60536730e-01 -2.02371061e-01 2.08704621e-02 -2.92190611e-01\\n-3.22055221e-01 -4.83182728e-01 1.19439363e-01 4.72301953e-02\\n-4.54657301e-02 -1.78109542e-01 1.26934394e-01 -2.22605601e-01\\n-3.26693445e-01 -5.98624825e-01 4.29630369e-01 1.60852388e-01\\n3.69402468e-01 9.86623950e-03 1.63477659e-01 -7.85086975e-02\\n4.06848639e-01 -7.54683018e-02 6.21357672e-02 -4.50817645e-01\\n5.93472607e-02 -1.62284058e-02 5.21620631e-01 -2.60672867e-01\\n-1.49550915e-01 1.04440287e-01 -3.40401322e-01 -2.86476195e-01\\n3.12563896e-01 -1.30465299e-01 1.79347530e-01 -3.52041215e-01\\n3.53889555e-01 -4.55532223e-01 -1.75880164e-01 1.25415236e-01\\n8.05061962e-03 6.86295152e-01 8.41919407e-02 -2.59276092e-01\\n-1.46516755e-01 3.13674510e-01 -1.65617466e-01 -4.11972664e-02\\n-6.32287636e-02 7.07262009e-02 -2.69979864e-01 2.02941656e-01\\n1.61921289e-02 -8.37342292e-02 -2.66433775e-01 5.51495366e-02\\n-1.23632297e-01 2.99055576e-01 2.36216679e-01 1.54781818e-01\\n-8.67040753e-02 -3.73737127e-01 -7.80064240e-02 2.15084404e-01\\n1.79075584e-01 3.35984975e-01 1.45309627e-01 -3.09314609e-01\\n1.28535815e-02 3.14920515e-01 -1.50677010e-01 3.80227149e-01\\n-1.68435708e-01 1.85947269e-01 -5.19739091e-01 -1.76187962e-01\\n-3.71699125e-01 -2.43437275e-01 2.73417458e-02 2.85264105e-01\\n2.58371383e-01 -9.05599967e-02 1.15254536e-01 -3.56799275e-01\\n1.73525304e-01 1.40361665e-02 2.30654314e-01 1.06450252e-01\\n-8.76034945e-02 6.19401753e-01 9.16437134e-02 -1.60346046e-01\\n-8.11957791e-02 1.01206176e-01 -2.35478416e-01 -2.52147287e-01\\n5.66769205e-02 -4.14083928e-01 -1.13886535e-01 4.25112367e-01\\n5.61673380e-02 -1.93112701e-01 -1.59637421e-01 3.27098280e-01\\n-1.84894120e-03 -3.92847359e-01 -3.03294033e-01 -2.21551824e-02\\n2.29654267e-01 1.25985846e-01 1.97680295e-01 -5.29720068e-01\\n-5.56432158e-02 -3.09507381e-02 3.61575708e-02 3.30998093e-01\\n-1.05458364e-01 3.30092460e-02 -1.93881139e-01 -2.05017164e-01\\n3.04655671e-01 -1.72068067e-02 8.68664496e-03 4.92853858e-02\\n2.29163602e-01 -1.73291251e-01 -4.64716107e-01 -4.04726277e-04\\n2.49639153e-02 -1.37570441e-01 2.11911239e-02 1.30831659e-01\\n1.83223546e-01 -2.75280550e-02 -4.56112951e-01 -1.30765095e-01\\n-1.38897210e-01 3.09622232e-02 -1.40244052e-01 -4.85185593e-01\\n-1.96481552e-02 2.02896949e-02 -4.17062044e-01 1.82161719e-01\\n-8.98496956e-02 1.28096402e-01 2.26002440e-01 -3.26658115e-02\\n-3.50604802e-01 -1.59415588e-01 1.93929851e-01 3.61334272e-02\\n-2.10362688e-01 -2.14254454e-01 -1.02791034e-01 -1.03680825e+00\\n1.81963682e-01 -6.16208315e-02 -1.06655367e-01 1.11283967e-02\\n-6.37259856e-02 -7.02369153e-01 1.42769992e-01 -2.86494166e-01\\n-1.39925227e-01 5.99236460e-03 -2.56741971e-01 -3.73245597e-01\\n1.14952065e-02 -6.35251626e-02 -1.79310709e-01 2.43387446e-01\\n-3.60026687e-01 4.41930562e-01 7.06390664e-03 2.93569285e-02\\n-8.29066709e-02 -2.73284376e-01 2.36928090e-01 -4.39013749e-01\\n-3.40787530e-01 -2.98562199e-02 -2.37686485e-01 -1.15103215e-01\\n-1.40053183e-01 -1.10020742e-01 -6.41185194e-02 9.51182544e-02\\n2.68164366e-01 -1.27478363e-02 -2.07808599e-01 -5.04982397e-02\\n5.28881513e-02 -4.45918471e-01 3.72965038e-02 -1.00606702e-01\\n1.14969753e-01 -1.73272878e-01 2.28564546e-01 8.77075493e-02\\n2.81192243e-01 -4.47528571e-01 4.69597995e-01 -3.74232948e-01\\n-4.39734519e-01 -7.40870237e-02 2.08053589e-01 7.31749311e-02\\n4.34737772e-01 -3.92874777e-01 8.22049975e-02 3.56143713e-01\\n4.37377058e-02 -5.81468735e-03 3.13059866e-01 -1.39606193e-01\\n-2.09762782e-01 1.45497918e-01 -4.49504554e-01 1.08726665e-01\\n7.89816141e-01 2.99680710e-01 2.82287389e-01 1.85462162e-01\\n1.23873249e-01 4.04777288e-01 5.20825744e-01 -4.22151685e-02\\n-1.24668598e-01 3.50881815e-01 2.29308069e-01 -6.10896289e-01\\n-1.61099806e-01 4.07935120e-02 -1.40354365e-01 -2.85620183e-01\\n6.68745577e-01 2.88180947e-01 -3.49370867e-01 -3.70124459e-01\\n-2.29484722e-01 -2.92282224e-01 1.56134516e-01 -1.34401217e-01\\n1.25667095e-01 -2.16266870e-01 5.15216768e-01 1.62349381e-02\\n2.22525224e-01 4.94136363e-01 -1.57527685e-01 -3.62082392e-01\\n8.90139788e-02 2.26670638e-01 2.89467089e-02 3.33144486e-01\\n1.31345615e-02 2.53248215e-01 -9.44105238e-02 1.42196327e-01\\n-1.79708287e-01 -4.01127599e-02 7.81216472e-02 1.13371328e-01\\n-1.05264276e-01 2.57087946e-01 4.92445052e-01 5.02087653e-01\\n3.32474619e-01 4.09037828e-01 3.27697307e-01 -3.98795074e-03\\n5.62847078e-01 5.27502716e-01 2.77374029e-01 1.98822003e-02\\n7.75445066e-03 1.99449122e-01 8.45867693e-02 1.12875961e-01\\n3.48146170e-01 2.99708575e-01 -8.01035091e-02 9.13007677e-01\\n2.43047848e-01 3.33194256e-01 8.28952014e-01 -4.13228244e-01\\n-3.09947014e-01 -3.22558545e-02 4.20696974e-01 -4.85693008e-01\\n2.77587678e-02 -7.54766911e-03 -2.14435207e-03 3.35576653e-01\\n-4.44394112e-01 -1.83571145e-01 -4.64693010e-02 1.59309685e-01\\n1.45616844e-01 -7.73130953e-02 -1.16337933e-01 -5.96936345e-02\\n-1.50155544e-01 -2.88177818e-01 -3.99875462e-01 -2.65676320e-01\\n-2.33817756e-01 -1.99081659e-01 -8.64056572e-02 -4.39577959e-02\\n-5.14082126e-02 -2.40841359e-01 -9.57730412e-02 -1.85979102e-02\\n3.49329472e-01 -1.90309569e-01 -1.31881639e-01 -4.64469902e-02\\n4.34023410e-01 1.60156414e-01 5.81016898e-01 -7.90044367e-02\\n7.26955235e-02 -2.00763360e-01 -1.63430825e-01 7.98969269e-02\\n1.11910231e-01 2.61330128e-01 1.38127565e-01 5.79676390e-01\\n-4.06571746e-01 -1.02163278e-01 4.65744510e-02 4.24302071e-01\\n-3.26603949e-01 -5.71843013e-02 -9.17769447e-02 1.57940418e-01\\n2.15246826e-02 -7.51311565e-03 -1.85659185e-01 -5.03535606e-02\\n-2.21029043e-01 -5.38043976e-01 1.90183327e-01 -7.21130893e-02\\n-3.12439770e-01 8.88086408e-02 4.27280396e-01 3.52957428e-01\\n-1.02815576e-01 3.88366506e-02 3.70280370e-02 1.80198997e-01\\n1.38774306e-01 4.15342003e-01 -2.25425199e-01 -2.85303235e-01\\n-2.75012374e-01 3.11040431e-01 -2.29119837e-01 7.44015127e-02\\n-6.29992187e-02 3.18455935e-01 -1.79302618e-02 9.87311900e-02\\n3.27856779e-01 -2.93308645e-01 -2.58288264e-01 -3.64117146e-01\\n-1.35806084e-01 -1.82923838e-01 9.42546800e-02 -5.10848388e-02\\n2.10453928e-01 -3.90390009e-01 -1.33788094e-01 -2.21708432e-01\\n-1.25293210e-01 -2.46062875e-01 -7.01899156e-02 7.41070230e-03]]',\n", + " 'System Engineer/Software Architect - Basel Jocelyn Blackham is recruiting for a System Engineer/Software Architect to join a company in the Medical Device industry at their site based in Basel on a contract basis for 12 months, with the possibility of extension. This role will sit in the Packaging and Device Development (PDD) department focusing on the development of software as medical device (SaMD) projects using state-of-the-art system engineering practices. This highly interactive role will work with cross-functional teams and support various development activities including system conceptualization, system requirement definition, risk assessment, system verification and clinical validation. The main purpose of the role will be to: Design and implement system engineering approach to support the development and life cycle management of complex products and platforms in the areas of connected drug delivery devices, digital technologies, and SaMD. Demonstrate strong technical know-how at system level and guide the development team to use structured system engineering approach for product development. Utilize the system engineering tool for requirement management and translate user and business needs into system/sub-system requirements. Actively maintain and monitor the traceability from the requirements to the verification activities. Further responsibilities will include: Be the representative of system engineering for the communications with cross-divisional teams, programs, and stakeholders. Author relevant design history files and GMP compliant documentations. In order to be considered for this role, you will be required to have the following qualifications, skills and experience:- Experience with Cloud and IoT architecture and technologies for complex systems. Experience with research, prototypes and PoC activities. Bachelor or more advanced degrees in Biomedical Engineering, Systems Engineering, Electrical Engineering, Computer Science, or other relevant disciplines. Prior experience covering the medical device or SaMD development from concept to commercial launch. Well-versed in medical device or SaMD development, Quality Management System, and regulatory processes (ISO 13485; IEC 60601, 62304, 82304). This is an excellent opportunity to join a leading medical device and pharmaceutical industry. For more information or to apply for this position, please contact Jocelyn Blackham on 0041 (0) 782 516 595 or email jblackham@ckqls.ch. Please could you send any correspondence in English. Please quote reference 46936 in all correspondence.',\n", + " '[\"Communications\", \"Research\", \"Positivity\"]',\n", + " '[\"Tooling\", \"Systems Implementations\", \"System Requirements\", \"Systems Engineering\", \"Interactivity\", \"Computer Science\", \"Requirements Management\", \"Project Management Life Cycle\", \"Industrialization\", \"Medical Device Development\", \"Activism\", \"Maintainability\", \"Prototyping\", \"Levelling\", \"Translations\", \"Quality Management Systems\", \"Traceability\", \"Flood Risk Assessments\", \"Conceptualization\", \"Medical Devices\", \"Digital Technology\", \"Electrical Engineering\", \"Management Systems\", \"Biomedical Engineering\", \"Cross-Functional Team Leadership\", \"Validations\", \"Structural Systems\", \"Pharmaceuticals\", \"Dose Verification Systems\", \"Language Experience Approach\", \"Functional Skills Qualification\", \"IEC 60601\", \"Commercialization\", \"Agile Product Development\", \"Quality Management\"]',\n", + " \"['English']\"],\n", + " ['27',\n", + " 'software engineer',\n", + " 'Zürich',\n", + " 'Banks & Building Societies',\n", + " '',\n", + " '[[-2.03804046e-01 3.90768409e-01 4.67769086e-01 -8.77881497e-02\\n4.87570196e-01 -7.82477483e-02 4.64432091e-02 2.35845342e-01\\n-3.25662307e-02 -4.09615815e-01 -2.12051362e-01 -1.85173452e-01\\n-3.37314159e-02 2.85892887e-03 8.85701180e-02 3.81983519e-01\\n4.20859516e-01 5.20653501e-02 -1.77889988e-01 2.62596428e-01\\n-2.63112150e-02 -4.84103486e-02 8.93685222e-02 7.05695868e-01\\n3.66484374e-01 -4.07317001e-03 -3.99812683e-02 1.14762597e-02\\n-1.80528551e-01 -2.61936098e-01 4.66465175e-01 -1.29114725e-02\\n-1.05974756e-01 -2.18961939e-01 1.30097687e-01 1.13381878e-01\\n-2.33863339e-01 6.26446605e-02 -1.02193907e-01 8.27504918e-02\\n-4.65156496e-01 -2.15260744e-01 4.61863503e-02 1.69673450e-02\\n-2.73656785e-01 -3.25701177e-01 1.41076788e-01 -9.91059318e-02\\n8.86920840e-02 3.25927138e-02 -3.59828532e-01 3.10147762e-01\\n-3.49230528e-01 -2.51716435e-01 3.94583434e-01 6.66098475e-01\\n6.72818422e-02 -4.92215574e-01 -5.22410512e-01 -2.89230585e-01\\n1.19727992e-01 -1.04853883e-01 7.54880682e-02 -2.38034174e-01\\n3.79000843e-01 -3.68774086e-02 -4.54715006e-02 3.40090334e-01\\n-8.06410789e-01 -5.71128950e-02 -3.42003316e-01 -3.79882194e-03\\n-3.69161308e-01 -9.07453969e-02 -3.28373104e-01 -2.37304121e-01\\n-3.78980525e-02 3.99585336e-01 -3.97136770e-02 7.42971301e-02\\n-2.37833411e-01 3.79690588e-01 -3.01380932e-01 2.51185834e-01\\n2.31715769e-01 2.17698529e-01 3.94593537e-01 2.69670486e-01\\n-4.36338782e-01 4.71198261e-01 3.81378710e-01 -4.01021689e-01\\n2.99861073e-01 7.16661960e-02 2.94071645e-01 1.21090993e-01\\n4.55599129e-02 2.07176715e-01 -4.13994640e-02 1.90927461e-01\\n1.63995117e-01 -6.48481101e-02 -2.65146792e-01 -8.46652389e-02\\n-6.79937154e-02 -6.19099960e-02 5.88375144e-02 2.03558311e-01\\n-3.80781233e-01 3.19268405e-01 1.02467567e-01 -3.65109324e-01\\n-1.19307436e-01 -4.81050342e-01 -1.25744179e-01 2.14220621e-02\\n-1.81125551e-01 8.63118023e-02 1.42853677e-01 2.58707881e-01\\n2.07280636e-01 5.52942790e-03 1.49121359e-01 8.42240810e-01\\n-7.94274062e-02 -1.53379310e-02 -2.76485652e-01 3.84893417e-01\\n1.92834020e-01 -2.95513868e-01 1.66953534e-01 2.49384388e-01\\n-1.41898528e-01 -5.93110956e-02 -2.90096939e-01 4.11847413e-01\\n-1.56909823e-02 -1.91932783e-01 -3.28270495e-01 1.57402813e-01\\n-1.80526137e-01 -4.60175455e-01 5.44894278e-01 -3.37428227e-02\\n1.36734962e-01 -3.38697694e-02 5.79121411e-02 -4.10552025e-02\\n-2.21429914e-01 2.58652300e-01 7.20810443e-02 1.28949702e-01\\n-3.42869103e-01 -1.81787699e-01 -1.25452325e-01 3.38497758e-01\\n-1.09896198e-01 2.09553558e-02 -3.38218451e-01 -1.56369090e-01\\n3.00506532e-01 1.03319228e-01 -3.89633536e-01 2.20915735e-01\\n7.37515092e-03 -1.26083091e-01 -1.28226817e-01 3.30436647e-01\\n-9.45730135e-02 1.55070588e-01 -1.45876808e-02 -9.98046845e-02\\n5.83147407e-01 1.13250047e-01 2.33511329e-01 -1.48835555e-01\\n2.55569845e-01 -1.52248889e-01 1.66610152e-01 6.39637411e-02\\n-5.83862901e-01 3.85710686e-01 -1.21061869e-01 2.62319148e-02\\n4.04232070e-02 -1.21016111e-02 2.68036485e-01 -3.26909959e-01\\n-3.89732793e-02 -2.43426889e-01 -3.64712715e-01 -4.16114688e-01\\n-2.31771350e-01 5.16521670e-02 3.14480543e-01 -4.93528724e-01\\n-3.38866264e-02 2.29032874e-01 -6.23656154e-01 -1.13938093e-01\\n2.31761351e-01 2.02805042e-01 5.63333184e-02 1.31169736e-01\\n-1.32118374e-01 -5.36988318e-01 1.87922508e-01 -4.68224108e-01\\n-3.71509492e-01 1.66688889e-01 -2.32319504e-01 1.73263445e-01\\n1.28264099e-01 -3.09862308e-02 -8.89402330e-02 8.46490860e-02\\n-3.74169827e-01 -4.25389297e-02 1.57298416e-01 3.41132544e-02\\n2.00495511e-01 9.53207090e-02 -3.70331585e-01 5.56046605e-01\\n-1.88224792e-01 2.79402107e-01 1.86127856e-01 -1.11399782e+00\\n4.68504429e-01 3.13605785e-01 5.44302762e-02 -3.44051838e-01\\n5.39809585e-01 -3.31697047e-01 -6.30915090e-02 1.32269770e-01\\n-3.40196490e-01 -2.20591009e-01 2.78031409e-01 -1.85036287e-01\\n-2.89583206e-01 5.84917307e-01 4.77691926e-02 6.45212829e-02\\n3.20092380e-01 -2.39338607e-01 -1.98462546e-01 1.41741522e-02\\n-2.01178432e-01 -1.00232869e-01 -5.33763230e-01 -5.23728207e-02\\n-5.50117418e-02 -5.54126143e-01 -2.14222640e-01 -6.14199102e-01\\n-2.14566529e-01 -3.56247604e-01 -2.63777196e-01 2.28898674e-01\\n1.29156232e-01 1.51986346e-01 -1.00486219e-01 2.60264780e-02\\n-1.07011676e-01 -6.38307750e-01 -7.32773319e-02 1.18817471e-01\\n3.27738136e-01 3.04416984e-01 3.80399115e-02 -6.35404363e-02\\n-7.20551834e-02 4.86990243e-01 -2.95677304e-01 -2.85945177e-01\\n2.74363995e-01 1.24624133e-01 -5.15035093e-02 -1.30820215e-01\\n7.80715942e-02 3.36906612e-01 -2.40326658e-01 -3.75703238e-02\\n5.10542020e-02 -9.25578270e-03 3.81516725e-01 8.74746591e-03\\n-3.02216709e-01 -1.89894408e-01 -5.15234210e-02 2.64405489e-01\\n-5.87001085e-01 -2.12707072e-01 6.60117388e-01 2.66089380e-01\\n6.90679625e-03 2.57129878e-01 2.88240254e-01 -6.67196661e-02\\n-2.29125023e-01 -1.44214928e-01 2.58206844e-01 1.17328785e-01\\n1.82096273e-01 4.88546379e-02 -1.67807341e-01 -5.59000731e-01\\n-3.50456190e+00 -2.27051646e-01 2.08202973e-01 -3.04246664e-01\\n2.53372312e-01 -1.08278304e-01 1.91876993e-01 -4.90713157e-02\\n-2.64295340e-01 -2.56928876e-02 -1.29935309e-01 -1.25814736e-01\\n1.74039871e-01 2.99989998e-01 1.39695248e-02 2.43258417e-01\\n1.36782706e-01 -1.53154761e-01 2.03970186e-02 3.56555462e-01\\n-4.52529266e-02 -7.84795880e-01 1.62590116e-01 -3.57159898e-02\\n1.62149251e-01 1.74659938e-02 -4.31057900e-01 -6.35004044e-02\\n-2.95321792e-01 -2.20802099e-01 1.23770088e-01 -1.49104103e-01\\n-1.79627061e-01 2.00907424e-01 1.39965430e-01 -1.98137999e-01\\n4.84757535e-02 -2.97858715e-01 -6.63966835e-02 -5.24165630e-01\\n2.49262959e-01 -6.58757210e-01 9.06176046e-02 -4.34906930e-02\\n6.34322166e-01 -2.73911119e-01 1.93695098e-01 1.28422379e-01\\n1.93415821e-01 1.77321672e-01 1.49514958e-01 -3.03439610e-03\\n-3.35032463e-01 -3.42313588e-01 -1.05996579e-02 -1.00922011e-01\\n6.47520006e-01 2.78520614e-01 -2.39458829e-01 5.25724776e-02\\n-2.13818606e-02 -2.53913909e-01 -4.61148381e-01 -2.76440054e-01\\n-1.60496026e-01 -4.53968756e-02 -6.99442148e-01 -4.07145858e-01\\n-1.35753185e-01 -1.81316569e-01 -8.11915696e-02 7.43607044e-01\\n-2.19896764e-01 -3.91651213e-01 -1.13684237e-01 -5.66930830e-01\\n1.81098491e-01 -1.69850588e-01 2.75039431e-02 -2.53439754e-01\\n-2.56627977e-01 -3.89817357e-01 1.37756169e-01 9.64485481e-03\\n-1.76757276e-01 -5.65620176e-02 7.32280761e-02 -1.33123338e-01\\n-3.41263175e-01 -4.70330536e-01 4.47685182e-01 7.75322318e-02\\n3.83713365e-01 7.77238309e-02 3.09280843e-01 -3.14922258e-02\\n2.94075549e-01 -6.97753802e-02 -1.73235089e-02 -4.73299772e-01\\n1.25298530e-01 6.32203296e-02 5.97068727e-01 -2.41783768e-01\\n5.08673787e-02 1.72237828e-01 -1.30143434e-01 -1.05525434e-01\\n4.89634752e-01 3.22905257e-02 7.00303391e-02 -2.34990343e-01\\n2.50719965e-01 -5.09002507e-01 -2.58920729e-01 9.37308669e-02\\n4.22939211e-02 6.29909635e-01 -5.00193983e-02 -4.46703672e-01\\n-1.96332157e-01 4.14849043e-01 -5.90387657e-02 -1.45725369e-01\\n-2.64161825e-01 1.03701666e-01 -3.24410617e-01 2.13341534e-01\\n2.78311111e-02 -1.16578788e-01 -2.89350361e-01 -5.92018887e-02\\n-6.37676120e-02 2.14282051e-01 2.73974359e-01 1.53323740e-01\\n1.56883597e-02 -2.90722519e-01 -1.04385540e-02 8.78996402e-02\\n1.78481176e-01 4.22182024e-01 2.35109508e-01 -3.15822065e-01\\n-2.09998339e-02 2.70354152e-01 -2.64137089e-01 2.48385996e-01\\n-1.10622399e-01 6.13665693e-02 -4.60509717e-01 -2.24325269e-01\\n-1.94375932e-01 -3.43253702e-01 8.35158154e-02 3.38662028e-01\\n9.61739048e-02 -1.31071836e-01 -4.18518633e-02 -4.87964720e-01\\n3.29023242e-01 5.29233217e-02 2.60018945e-01 1.50793836e-01\\n5.82220033e-04 6.98550224e-01 3.17230541e-03 -2.35252410e-01\\n-4.26415615e-02 7.78964832e-02 -1.29145354e-01 -2.12308973e-01\\n2.01781467e-03 -5.06595016e-01 -6.14632294e-02 4.72236097e-01\\n1.43387616e-02 -2.06427887e-01 -1.83539301e-01 2.93051451e-01\\n-9.07769054e-03 -2.36076578e-01 -1.40851036e-01 3.21042836e-02\\n1.79151565e-01 1.20031558e-01 3.02308261e-01 -4.28472728e-01\\n-7.28138238e-02 1.57823786e-03 2.21211221e-02 4.42300737e-01\\n1.62282705e-01 1.87535763e-01 4.70180344e-03 -1.40022159e-01\\n4.52322900e-01 8.20135102e-02 -1.98109269e-01 -4.35945429e-02\\n9.77521837e-02 -2.22388268e-01 -4.59461898e-01 2.02564411e-02\\n-1.06711335e-01 -1.54663831e-01 7.07870796e-02 5.52929752e-03\\n1.57346129e-01 8.51361528e-02 -5.52490473e-01 -2.43216082e-01\\n-3.75035822e-01 3.76921259e-02 -8.24845433e-02 -6.22166872e-01\\n6.61400482e-02 -3.46626900e-03 -6.24173701e-01 2.93617368e-01\\n-9.53998864e-02 4.07506339e-03 1.08901881e-01 1.39287218e-01\\n-2.57879496e-01 -1.73907652e-01 1.76795453e-01 1.44949555e-01\\n-2.68176168e-01 -2.57146358e-01 5.49259484e-02 -9.39684093e-01\\n2.83430904e-01 1.42679606e-02 -1.52050465e-01 9.51161385e-02\\n2.79563963e-02 -7.10500598e-01 2.55846113e-01 -4.01708126e-01\\n-1.25617549e-01 8.61931518e-02 -2.53956288e-01 -4.20040190e-01\\n4.53875512e-02 -5.81300855e-02 -3.03170592e-01 3.82353485e-01\\n-4.74330693e-01 4.81081545e-01 5.73964864e-02 1.20966241e-01\\n1.90057248e-01 -1.97504357e-01 2.67975479e-02 -3.06911439e-01\\n-4.97036368e-01 -2.75405288e-01 -2.02862799e-01 -3.59575391e-01\\n-2.62710303e-02 -2.78152287e-01 -2.02199370e-01 1.38330394e-02\\n3.32245708e-01 1.58109933e-01 -1.46111727e-01 -2.12831154e-01\\n-3.04572470e-03 -3.13678443e-01 1.74370408e-01 -2.02957094e-01\\n4.02330384e-02 -1.44340038e-01 3.06579709e-01 5.06446101e-02\\n1.30468190e-01 -3.69112730e-01 4.75309312e-01 -1.63741708e-01\\n-3.38913560e-01 -1.41455650e-01 8.39800090e-02 7.56729767e-02\\n3.14627945e-01 -5.91121078e-01 6.94257468e-02 3.47659469e-01\\n2.90944055e-02 8.04835185e-02 2.68158376e-01 -1.39273971e-01\\n-1.10903807e-01 1.40584588e-01 -5.01240313e-01 2.18151540e-01\\n6.66464090e-01 7.49852508e-02 1.95262119e-01 1.86863691e-01\\n2.01701790e-01 3.20096374e-01 5.13015330e-01 6.13382570e-02\\n-1.42312437e-01 3.26856196e-01 7.44533837e-02 -5.75528502e-01\\n-1.50138080e-01 -9.12020504e-02 -1.70393273e-01 -3.46687496e-01\\n6.51755333e-01 3.66033256e-01 -3.54396939e-01 -3.06159616e-01\\n-2.12369904e-01 -2.11850137e-01 3.04177284e-01 -6.47637695e-02\\n9.48208123e-02 -1.31843403e-01 5.69609165e-01 -4.61567119e-02\\n3.49865377e-01 5.45184851e-01 -2.07545966e-01 -3.22709620e-01\\n-3.56575176e-02 1.85333088e-01 3.63333151e-02 3.61937046e-01\\n-5.57535924e-02 2.15400964e-01 4.50925007e-02 1.95634782e-01\\n-1.57729372e-01 -1.79023705e-02 1.77537173e-01 5.44928163e-02\\n1.21926248e-01 4.00297269e-02 5.35466194e-01 4.90870714e-01\\n2.53744483e-01 4.85611647e-01 2.95513093e-01 7.86431059e-02\\n4.61681604e-01 7.16442108e-01 3.73337686e-01 4.58531976e-02\\n4.86913733e-02 1.07038990e-01 1.14339441e-01 -2.03900598e-03\\n2.95529544e-01 4.59290028e-01 1.14118382e-01 8.28918219e-01\\n3.50034237e-01 2.63442695e-01 7.43815720e-01 -6.84027612e-01\\n-3.18231404e-01 3.24992016e-02 4.80759114e-01 -3.47550154e-01\\n5.37812598e-02 1.76892847e-01 -3.14115793e-01 2.13397101e-01\\n-4.35995698e-01 -9.89361480e-02 -4.85197008e-02 -7.37838596e-02\\n9.04889777e-02 -1.53131485e-01 -1.23386778e-01 4.04317081e-02\\n-9.11652222e-02 -2.25712687e-01 -3.18940163e-01 -1.54745772e-01\\n-3.53496075e-01 -3.01715732e-03 -7.69090094e-03 -1.21485524e-01\\n-7.78919086e-02 -3.67699444e-01 -1.52253151e-01 -3.00908461e-04\\n2.89667517e-01 -9.51254964e-02 -1.77729085e-01 -1.30902007e-01\\n1.68675929e-01 2.60561228e-01 7.08278000e-01 4.87506390e-02\\n7.11908042e-02 -4.17976305e-02 -2.15041518e-01 7.63209462e-02\\n1.35584325e-01 9.81297344e-02 2.62277992e-03 5.09274065e-01\\n-2.51530170e-01 -8.81310180e-02 9.35409218e-02 3.21951330e-01\\n-3.35471511e-01 5.32840490e-02 -8.02944526e-02 1.86750114e-01\\n5.06229475e-02 1.79993495e-01 -2.25691020e-01 9.54378843e-02\\n-5.42874001e-02 -5.05900621e-01 4.70868051e-01 -1.25084698e-01\\n-1.71430796e-01 4.48656976e-02 1.56392992e-01 3.96338940e-01\\n-2.43341744e-01 -7.82990232e-02 -1.14482857e-01 1.52971774e-01\\n9.15328860e-02 4.52844322e-01 -2.54536510e-01 -1.00404203e-01\\n-2.80676812e-01 1.80780619e-01 -2.11960450e-02 1.34971946e-01\\n-7.15983436e-02 3.56249154e-01 1.07109055e-01 1.15570664e-01\\n2.51057893e-01 -2.60895379e-02 -2.25229293e-01 -2.30285615e-01\\n-2.43377358e-01 -1.18941270e-01 2.58340891e-02 -6.87678605e-02\\n3.26687604e-01 -2.70393074e-01 -1.15278289e-02 -1.90212190e-01\\n-2.16400623e-01 -4.26365733e-01 -1.54515609e-01 -4.96382965e-03]]',\n", + " 'As a Software Engineer, being a member of the IT Engineering and Development team of Cembra, you will actively participate in all stages of the software development life-cycle mainly focusing on requirements’ engineering, software design and development activities for the Bank’s existing and new applications. You will be responsible for providing the design, development, configuration and maintenance for changes on existing systems and also for introducing new applications and interfaces with other systems. You will be developing highly complex applications with the goal of streamlining business operations and improving overall user and/or customer experience. The ideal candidate is a self-starter with a strong desire to increase efficiency and make an impact while creatively collaborate and execute team goals contributing to the Bank’s vision towards digital transformation. Key responsibilities Work with experienced engineers to design and develop new modules and/or applications Undertake the technical ownership of Cembra Money Bank’s Applications Integrate with the existing applications portfolio as well as third parties’ software Contribute towards the timely completion of development tasks for change initiatives and projects Liaise with production support and operations teams for Troubleshooting of production software and bug fixing (level 3 support) Maintain the highest code quality standards Willing to understand all aspects, functional/business and technical, of the applications on which you work on so that you can be greatly effective Continually learn and apply relevant software development practices, patterns, tools and technologies and actively contribute to the Bank’s technical selections/decisions Your profile Master or Bachelor in Computer Science (or equivalent degree) 5+ years’ of backend or distributed systems Java development knowledge (EE/Spring) Web technologies (SOAP, Rest), experience in Service-Oriented (SOA) and Microservice (MSA) architecture and strong understanding of software design patterns & object oriented principles Knowledge of messaging systems, Java applications servers (WAS, JBoss, Tomcat) and relational databases and also working experience with common networking, infrastructure, operating systems and security fundamentals A solid grasp on software engineering practices (e.g. thorough code reviews, unit tests, deep focus on quality, design documentation) Team player who quickly and easily adapts to changing situations, not afraid to take end-to-end ownership of tasks and responsibilities while displaying genuine commitment Working experience with FE development and javascript frameworks is considered a plus Good communication skills and an open style to provide transparency to management Fluent in English, German is a plus Contact Rahel Züllig HR Manager About Us Cembra Money Bank AG is a leading Swiss provider of consumer finance products and services. Its product range includes personal loans, auto leases and loans, credit cards and insurance sold with those products as well as invoice financing, deposit and savings products. Headquartered in Zurich-Altstetten, the Bank has operations across Switzerland via a network of 16 branches as well as alternative sales channels such as the Internet, credit card partners, independent agents and 4,000 car dealers. Cembra Money Bank AG is an independent Swiss bank and has been listed on the SIX Swiss Exchange since 2013. It has over 880 employees from 37 nations and 911,000 customers. On 1 July 2019 Cembra announced the acquisition of the consumer finance provider cashgate.',\n", + " '[\"Verbal Communication Skills\", \"Business Operations\", \"Collaboration\", \"Self Starter\", \"Management\", \"Operations\", \"Integration\", \"Creativity\", \"Troubleshooting (Problem Solving)\", \"Sales\"]',\n", + " '[\"Distributed File Systems\", \"Tooling\", \"Streamlining\", \"Software Development Life Cycle\", \"Unit Testing\", \"Computer Science\", \"Message Handling Systems\", \"Consumables\", \"Staging\", \"Credit Card Applications\", \"Activism\", \"Alternators\", \"Software Design Patterns\", \"Maintainability\", \"E (Programming Language)\", \"Application Servers\", \"Levelling\", \"Digital Transformation\", \"Common Language Infrastructure\", \"Adapters\", \"Executable\", \"Network Infrastructure\", \"Microservices\", \"Software Engineering\", \"Operating Systems\", \"Java Application Server\", \"Application Portfolio Management\", \"Finance\", \"Personalization\", \"Production Support\", \"Service-Oriented Modeling\", \"Code Review\", \"JavaScript Frameworks\", \"Software Design\", \"Quality By Design (QbD)\", \"Modulation\", \"Productivity Software\", \"Banking\", \"Software Development\", \"Relational Databases\", \"Loans\", \"Customer Experience\", \"Simple Object Access Protocol (SOAP)\", \"Transparency (Projection)\", \"NGBSS (SOA Integration Framework)\", \"Java (Programming Language)\", \"Custom Backend\", \"Apache Tomcat\"]',\n", + " \"['English', 'French', 'Kongo']\"],\n", + " ['122',\n", + " 'software support engineer (fr, ch, be, lu)',\n", + " 'Bern',\n", + " 'Internet',\n", + " 'www.therefore.ca',\n", + " '[[-1.55777916e-01 2.44646162e-01 4.60761309e-01 1.32202441e-02\\n4.27852601e-01 -1.70495957e-01 1.49829969e-01 5.15513301e-01\\n1.98983215e-02 -4.21885222e-01 -5.19852787e-02 -1.41450763e-01\\n1.08371019e-01 1.40827313e-01 1.48692399e-01 3.20744693e-01\\n3.37379754e-01 2.18882591e-01 -2.77064741e-01 3.16944510e-01\\n3.65652815e-02 -2.18486264e-01 2.15076670e-01 7.29440093e-01\\n6.40528560e-01 7.72121176e-02 -5.76715507e-02 -3.02792974e-02\\n-1.67261645e-01 -3.08670282e-01 4.98694271e-01 -1.90470859e-01\\n-9.24927066e-04 -3.46925765e-01 1.92726374e-01 -2.18261052e-02\\n-1.82223916e-01 3.87611613e-02 -1.66576579e-01 -3.89696360e-02\\n-4.63668555e-01 4.78723273e-03 5.43792062e-02 1.40126795e-01\\n-2.63701022e-01 -3.98818225e-01 1.68714151e-01 -4.79045734e-02\\n2.40668774e-01 -7.78185055e-02 -4.32403386e-01 3.02379876e-01\\n-2.62874901e-01 -2.03442186e-01 3.62532794e-01 5.97161591e-01\\n-1.76009998e-01 -5.24223149e-01 -5.56016505e-01 -3.70052040e-01\\n4.12188135e-02 -8.10416564e-02 8.10493007e-02 -3.66510540e-01\\n3.36701870e-01 6.52503967e-03 7.20869824e-02 3.67358863e-01\\n-7.79127002e-01 -8.71852040e-02 -1.78243116e-01 -1.46569267e-01\\n-2.85961360e-01 -1.05965897e-01 -4.65223610e-01 -7.05951080e-02\\n-2.32167542e-01 3.36989522e-01 4.43681702e-02 4.25488763e-02\\n-2.23287359e-01 2.80868798e-01 -2.96769202e-01 4.03848410e-01\\n1.30317986e-01 3.12463105e-01 2.91959375e-01 2.84992367e-01\\n-2.61566848e-01 5.34558535e-01 1.81289077e-01 -2.77079493e-01\\n1.66980848e-01 1.19555704e-01 4.82461423e-01 -1.65927008e-01\\n3.44761342e-01 1.19609637e-02 -3.46580416e-01 2.62116760e-01\\n3.64019126e-01 -3.76346886e-01 -3.39216925e-02 -7.04857260e-02\\n-1.32716056e-02 7.15230405e-02 9.77599844e-02 2.36990616e-01\\n-3.20370823e-01 5.10214806e-01 1.58937022e-01 -2.10255235e-01\\n-1.02614038e-01 -4.79490072e-01 -1.45123899e-01 7.68300071e-02\\n7.35836104e-02 1.55027568e-01 1.18624493e-01 1.56649068e-01\\n2.95725495e-01 -8.91818255e-02 9.39065441e-02 7.83210695e-01\\n-1.21435538e-01 3.67878787e-02 -2.77181089e-01 2.90609628e-01\\n-5.53212650e-02 -4.45692509e-01 3.42103273e-01 8.21334049e-02\\n1.09309316e-01 -4.55162600e-02 -2.49884859e-01 3.15673292e-01\\n-1.30174115e-01 -2.27295280e-01 -3.23884636e-01 2.65941143e-01\\n-1.08012825e-01 -4.24779177e-01 5.74313223e-01 -8.70489515e-03\\n1.31414920e-01 -1.04726419e-01 6.94150403e-02 -1.41446337e-01\\n-7.21814409e-02 1.80480897e-01 1.58814654e-01 6.09865785e-02\\n-2.93721616e-01 -2.93014526e-01 -1.77519724e-01 4.01413217e-02\\n-3.79075408e-01 1.30171672e-01 -1.41121343e-01 -1.07364096e-01\\n3.29733223e-01 -4.92025241e-02 -2.35559657e-01 2.83330590e-01\\n-1.79927528e-01 1.65434480e-01 -7.16299191e-02 3.83954763e-01\\n-2.21877679e-01 3.96518528e-01 -4.04499136e-02 9.56663340e-02\\n6.76679969e-01 9.93323475e-02 7.84072801e-02 -8.71284753e-02\\n2.86113024e-01 5.39272353e-02 1.49278075e-01 4.50444929e-02\\n-7.23957002e-01 4.47063148e-01 -7.98003282e-03 -1.87707260e-01\\n1.24477893e-01 -1.92692965e-01 3.01498324e-01 -4.46159989e-01\\n-8.75811726e-02 -1.12040214e-01 -3.15513253e-01 -2.74277508e-01\\n-2.56920695e-01 -7.10819215e-02 4.11121547e-01 -4.47752416e-01\\n1.60519369e-02 1.90174103e-01 -4.91433293e-01 6.23355061e-02\\n1.83634341e-01 1.73873201e-01 1.19613163e-01 2.14902118e-01\\n-2.48103291e-01 -4.85935003e-01 1.87821820e-01 -3.13208580e-01\\n-1.64551258e-01 1.92917556e-01 -3.24072659e-01 1.91968501e-01\\n8.72255862e-02 -5.17328503e-03 -1.52181029e-01 1.59750775e-01\\n-1.28285363e-01 -3.60016674e-02 9.75285321e-02 6.58773333e-02\\n3.50631207e-01 1.59893259e-01 -4.56033826e-01 4.60074633e-01\\n-7.83750042e-02 4.95820582e-01 6.93663582e-02 -7.54754424e-01\\n3.71111035e-01 3.22362959e-01 5.26960082e-02 -2.76920617e-01\\n6.20774567e-01 -1.62459254e-01 -1.61150321e-01 8.09434056e-02\\n-4.92908686e-01 -3.82737219e-01 1.28633529e-01 -2.28127003e-01\\n-2.61436075e-01 4.18014884e-01 -6.89997971e-02 1.16534978e-01\\n9.93123576e-02 -1.32335052e-02 -5.01167476e-02 1.54149041e-01\\n1.28883839e-01 -1.08230852e-01 -5.53067982e-01 -1.90396294e-01\\n-5.46686091e-02 -3.42771769e-01 -1.40139028e-01 -4.82705384e-01\\n-2.11515889e-01 -2.57839590e-01 -1.76500842e-01 4.25553881e-02\\n2.25386217e-01 1.30591661e-01 7.48763010e-02 9.63162184e-02\\n-2.84399331e-01 -5.51806331e-01 1.71523262e-02 7.57191181e-02\\n2.82134533e-01 2.98980474e-01 9.19542238e-02 1.69313755e-02\\n-3.56942862e-02 7.07063138e-01 -2.29328528e-01 -5.53242490e-02\\n2.03005031e-01 1.49062023e-01 2.66597904e-02 -1.86680034e-01\\n1.18516393e-01 3.93120736e-01 -3.58069867e-01 -5.33777997e-02\\n-9.80035663e-02 -6.69718534e-02 3.41944665e-01 -1.09312292e-02\\n-3.38619858e-01 -2.53083736e-01 -1.36584237e-01 6.18402436e-02\\n-4.44429427e-01 -2.75446624e-01 6.13491178e-01 4.17287499e-02\\n2.40862787e-01 2.02856824e-01 3.04710090e-01 -8.37553367e-02\\n-1.77283898e-01 -2.67449945e-01 1.79336831e-01 1.16035186e-01\\n7.55361766e-02 1.15386561e-01 -8.34488273e-02 -7.06578851e-01\\n-3.31819034e+00 -6.64388435e-03 2.91053116e-01 -3.70115995e-01\\n3.91724676e-01 -1.13145083e-01 1.25320762e-01 -1.43452451e-01\\n-2.81581104e-01 4.65349779e-02 -2.23548323e-01 -1.46493226e-01\\n1.81097135e-01 1.53515056e-01 1.24589272e-01 2.07910448e-01\\n3.20061833e-01 -3.00651908e-01 2.08528601e-02 2.67527580e-01\\n-1.64164424e-01 -5.96459210e-01 2.74880916e-01 2.54488699e-02\\n3.91146839e-01 4.34081852e-01 -3.92175347e-01 -2.18711540e-01\\n-2.81554222e-01 -1.12926178e-01 1.14689030e-01 -2.67343819e-01\\n-1.31848052e-01 2.82149166e-01 1.95411175e-01 -1.98850214e-01\\n1.46193847e-01 -3.91227722e-01 -5.32448851e-02 -3.58703583e-01\\n4.53238338e-02 -5.53824663e-01 -5.09958304e-02 -4.89958078e-02\\n8.69408965e-01 -3.34439516e-01 1.59568086e-01 -1.84388142e-02\\n1.95699498e-01 1.67088166e-01 2.35443395e-02 3.06046177e-02\\n-2.15773329e-01 -1.02752969e-01 -3.46387923e-02 -1.98693335e-01\\n5.75735152e-01 5.06339610e-01 -2.65325695e-01 -1.45466030e-01\\n-8.04520212e-04 -3.09237987e-01 -4.00573015e-01 -1.62762254e-01\\n-2.57487655e-01 -2.56285340e-01 -5.18521130e-01 -4.43848372e-01\\n-1.59129262e-01 -4.00832780e-02 -1.99822243e-02 4.50307041e-01\\n-2.09728003e-01 -3.36250663e-01 -7.73774385e-02 -4.79032636e-01\\n2.31154710e-01 -5.00294520e-03 9.85561237e-02 -2.74619281e-01\\n-1.27426758e-01 -4.41160530e-01 -2.29107887e-02 -4.33109999e-02\\n-9.38500911e-02 -2.79728144e-01 1.26884878e-01 1.51579414e-04\\n-3.05372208e-01 -5.14321208e-01 2.46081099e-01 1.27358735e-01\\n2.56379098e-01 8.40839818e-02 1.76730305e-01 -1.35128302e-02\\n2.33873323e-01 -2.12859794e-01 1.71754435e-01 -4.98271942e-01\\n8.14767629e-02 4.70817871e-02 5.67152262e-01 -1.35044113e-01\\n6.92816675e-02 1.29755944e-01 -2.07630634e-01 -1.19482920e-01\\n3.08001459e-01 1.24092596e-02 3.69739011e-02 -3.37594122e-01\\n2.31122687e-01 -1.89400643e-01 -2.33733818e-01 -7.61996508e-02\\n-3.76102068e-02 5.62368810e-01 3.59796025e-02 -2.86713272e-01\\n-4.68286872e-02 5.41302800e-01 -1.53587937e-01 2.15905026e-01\\n-2.00532809e-01 9.34032425e-02 -2.57418185e-01 1.53681025e-01\\n1.56245120e-02 -1.88835934e-01 -1.49758384e-01 -1.50384843e-01\\n-7.31983781e-02 4.02921557e-01 2.54822731e-01 1.78068131e-01\\n-2.16893032e-02 -5.01081169e-01 -7.49811307e-02 3.08025658e-01\\n7.27852359e-02 4.48885173e-01 -4.23470214e-02 -2.97585338e-01\\n1.10528171e-02 3.36962700e-01 -2.39874691e-01 2.35921398e-01\\n-2.65145659e-01 9.48325843e-02 -5.37121594e-01 -2.13374361e-01\\n-2.14532122e-01 -4.38523293e-01 1.13080211e-01 3.19716394e-01\\n2.64240764e-02 1.57901719e-01 -8.22614655e-02 -3.63574862e-01\\n2.15572625e-01 -3.27014588e-02 1.50314197e-01 3.02456945e-01\\n-4.57534939e-02 4.17071640e-01 -5.65754138e-02 -1.14566550e-01\\n-2.57182539e-01 2.87781686e-01 -1.01788752e-01 -8.15691613e-03\\n1.08806804e-01 -4.32945341e-01 -1.36645526e-01 3.26870590e-01\\n1.92701399e-01 -1.35639012e-01 -1.28477708e-01 1.24875575e-01\\n-9.70412977e-03 -4.50688183e-01 -3.02522779e-01 1.02883670e-02\\n2.98259795e-01 1.17870353e-01 3.37139219e-01 -5.24307489e-01\\n4.03249413e-02 -8.33124667e-02 -1.41711771e-01 4.25192684e-01\\n-2.02756926e-01 2.70504020e-02 -2.26189762e-01 -2.41214797e-01\\n3.72215450e-01 -1.98244564e-02 5.24469502e-02 1.36542097e-01\\n1.26975745e-01 -2.62327373e-01 -4.93684709e-01 1.25261396e-02\\n-4.42339554e-02 -1.16371989e-01 1.23740032e-01 5.96065857e-02\\n-2.50907764e-02 1.08942844e-01 -6.14572883e-01 -1.61966547e-01\\n-2.83434957e-01 2.62255725e-02 -1.36890439e-02 -4.45676088e-01\\n-1.26759961e-01 -1.28122633e-02 -5.03574610e-01 1.92078292e-01\\n-3.51851374e-01 -9.50949863e-02 1.92498401e-01 -7.75506198e-02\\n-3.94652456e-01 -5.88098280e-02 1.32708848e-01 3.25075686e-01\\n-2.16178328e-01 -2.56074458e-01 -4.48262095e-02 -1.04825044e+00\\n2.23646924e-01 -4.47032489e-02 -1.12437055e-01 2.18818843e-01\\n-7.57814199e-02 -7.27118194e-01 1.66086838e-01 -3.01929563e-01\\n-1.63327247e-01 -8.22161883e-02 -1.47352353e-01 -3.61699909e-01\\n1.25090152e-01 2.70729717e-02 -3.36827517e-01 4.17273849e-01\\n-2.03751162e-01 3.06239635e-01 -7.81369954e-02 6.93842024e-02\\n-2.05008313e-01 -2.36555949e-01 1.15896314e-02 -5.73920071e-01\\n-3.03102940e-01 -1.06991373e-01 -2.37361118e-01 -5.74391149e-02\\n-4.24181037e-02 -3.32903117e-01 -8.05178806e-02 2.41500959e-01\\n4.12768304e-01 8.00553709e-03 -1.37136742e-01 -1.83592498e-01\\n2.04979572e-02 -5.49830973e-01 1.41527683e-01 6.76143095e-02\\n-1.28784686e-01 -1.08879484e-01 1.25018701e-01 1.90895230e-01\\n2.66824007e-01 -5.18946528e-01 3.33700031e-01 -3.24654847e-01\\n-4.04191017e-01 3.90954539e-02 2.19617561e-02 -1.05853610e-01\\n4.59242731e-01 -4.79619920e-01 -1.35602862e-01 4.42796022e-01\\n-2.06907652e-02 3.99441943e-02 2.27149636e-01 -1.42135382e-01\\n-1.28183886e-01 2.92446405e-01 -3.81958455e-01 1.46428850e-02\\n7.60540307e-01 1.55388281e-01 1.34212554e-01 1.55132055e-01\\n1.12253889e-01 3.49402755e-01 4.53990459e-01 -7.37201124e-02\\n-1.64760038e-01 3.39403957e-01 -5.71803190e-03 -6.35221541e-01\\n6.55890852e-02 -3.38497534e-02 -3.86990964e-01 -3.71794730e-01\\n6.82123899e-01 4.21101063e-01 -3.60324889e-01 -3.31207067e-01\\n-1.79230854e-01 -2.74212420e-01 1.46484263e-02 -1.17420331e-02\\n5.49856164e-02 -1.70786843e-01 4.64682698e-01 3.66226397e-02\\n1.17425151e-01 5.31530619e-01 -2.17245281e-01 -3.52364182e-01\\n8.84826295e-03 1.54161260e-01 -1.40242547e-01 5.53890407e-01\\n-2.64476389e-01 2.39670157e-01 3.24540841e-03 5.39631806e-02\\n-7.47219771e-02 1.94921255e-01 4.07316200e-02 1.50618702e-01\\n8.86686817e-02 1.67923704e-01 5.28612316e-01 5.21264851e-01\\n3.28501701e-01 4.34492826e-01 3.73809934e-01 -1.23514532e-04\\n5.52590311e-01 4.20426518e-01 4.59228516e-01 1.43709615e-01\\n3.12787555e-02 6.66666776e-02 1.78284287e-01 1.77383535e-02\\n3.86749476e-01 2.68428862e-01 -4.57613207e-02 8.96503031e-01\\n3.72031540e-01 2.09202200e-01 7.44310558e-01 -6.89597189e-01\\n-3.14958423e-01 -6.47929609e-02 4.33343500e-01 -4.82031107e-01\\n-7.06584007e-02 1.27265796e-01 -1.46234989e-01 2.52761006e-01\\n-4.41855252e-01 -4.05184239e-01 -8.39511901e-02 1.60894424e-01\\n-6.51107803e-02 -1.99470833e-01 -1.78317010e-01 -1.27511984e-02\\n-9.79640335e-02 -2.02443972e-01 -5.55700779e-01 -2.58728545e-02\\n-2.66039640e-01 -6.32944405e-02 -1.34583980e-01 -2.58409679e-01\\n-8.22316632e-02 -3.11412454e-01 1.36025976e-02 2.52741780e-02\\n9.96530280e-02 -3.64415608e-02 2.55640410e-02 -1.50882259e-01\\n4.68516022e-01 1.21745020e-01 5.10959148e-01 7.68714249e-02\\n4.14141640e-02 -1.89197019e-01 -1.78109229e-01 2.05753505e-01\\n2.35390767e-01 2.13140510e-02 1.84690788e-01 3.14052165e-01\\n-3.71250272e-01 -3.62805367e-01 5.86790480e-02 4.36567366e-01\\n-5.66225111e-01 -4.04161736e-02 1.71136066e-01 1.73994452e-01\\n1.04999550e-01 8.50558504e-02 -4.57604080e-02 -4.41071503e-02\\n-4.89096902e-02 -3.45571965e-01 2.17098668e-01 1.17173679e-01\\n-1.77350566e-01 5.97769842e-02 1.52673811e-01 2.05181032e-01\\n-1.87648162e-01 -3.07280328e-02 -1.53537810e-01 9.31175277e-02\\n9.87549946e-02 2.27448732e-01 -1.28859013e-01 -3.07745695e-01\\n-2.20803484e-01 8.82185027e-02 -3.15490365e-01 9.08235535e-02\\n-4.25345311e-03 1.89366877e-01 -6.74795285e-02 9.47511792e-02\\n4.62229013e-01 -5.05791269e-02 -1.77264571e-01 -2.50555009e-01\\n-8.83811340e-02 -2.04137564e-01 -3.02797519e-02 -1.70584708e-01\\n2.22457200e-01 -3.67062181e-01 -1.06782697e-01 -1.57961607e-01\\n-1.35396391e-01 -2.68211633e-01 1.30593717e-01 -6.25805035e-02]]',\n", + " \"The Profile: We're looking for a motivated person that loves challenges and the satisfaction that comes along with not only finding a solution, but helping out our customers along the way. The ideal candidate should bring a number of the following qualifications to the table: Bachelor's degree in computer science, engineering, math, or the physical sciences. Communicate effectively in person, on the phone, and electronically while maintaining professionalism. Think with a clear mind and develop clever and useful solutions. Excellent knowledge of Microsoft server and client software. Knowledge of database technology. Knowledge of scripting and SQL is a plus. Intelligence, motivation, and a team player attitude. Native French and fluent English speaking, German is a bonus. The Job:Main responsibilities include: Provide support via phone, web, and email to our resellers and customers. Consult and develop effective relationships with our reseller's technical support staff. Support and advise our reseller’s technical staff in designing the most efficient architecture for complex projects Test Therefore software Assist with creating resources such as Knowledge Base articles This is a home-based contractor position with up to 30% travelling required. As the main goal of this role is to provide support for the French speaking countries, the ideal candidate must be located in France, Belgium or Switzerland. The Rewards: A challenging and diversified job in an internationally oriented, rapidly growing company. A flexible work environment with the freedom to work from anywhere with an internet connection. Technical training and a competitive salary. An international, highly motivated and creative team to support you every step of the way. If these tasks sound like something you would enjoy, we want to hear from you! We look forward to receiving your application at career@therefore.net.\",\n", + " '[\"Professionalism\", \"Communications\", \"Creativity\", \"Positivity\", \"Consulting\"]',\n", + " '[\"Projective Tests\", \"Internet Connection Sharing\", \"Knowledge Base\", \"Advising\", \"Resourcing\", \"Electronics\", \"Scripting\", \"Personalization\", \"Microsoft Servers\", \"Maintainability\", \"Computer Science\", \"Knowledge Management Software\", \"Therapeutic Support Staff\", \"SQL (Programming Language)\", \"Physical Science\", \"Technical Training\", \"Receivables\", \"Technical Support\"]',\n", + " \"['English', 'Tswana', 'Church Slavonic', 'Slovenian']\"],\n", + " ['84',\n", + " 'data analyst',\n", + " 'Saint-Saphorin',\n", + " 'Industrial Manufacturing',\n", + " '',\n", + " '[[-2.78203219e-01 4.10573363e-01 4.10321146e-01 1.62926480e-01\\n6.37564957e-01 -1.82331160e-01 -1.96976494e-02 6.03502728e-02\\n-5.61458431e-02 -2.84735233e-01 -1.58002272e-01 -3.46834332e-01\\n-1.93006232e-01 1.97205082e-01 1.73208825e-02 5.19698143e-01\\n1.69379979e-01 5.34561425e-02 5.66546768e-02 3.60202432e-01\\n4.63851467e-02 -2.11752445e-01 -2.43558854e-01 5.47986507e-01\\n4.20476973e-01 -8.22397023e-02 -1.00505307e-01 1.23134471e-01\\n-3.57691407e-01 -2.44689330e-01 4.74438757e-01 1.50713861e-01\\n-2.43558213e-01 -3.37382227e-01 -2.00163331e-02 2.05043972e-01\\n-2.12776780e-01 -7.56097306e-03 -1.41988114e-01 2.56536394e-01\\n-5.75274527e-01 -1.97023094e-01 -1.34034595e-02 8.61775205e-02\\n-2.63921738e-01 -3.27835262e-01 -1.81994829e-02 -1.64181873e-01\\n2.25925576e-02 2.14003071e-01 -5.63011467e-01 4.74238396e-01\\n-4.07871842e-01 -1.52787536e-01 1.95786282e-01 6.87538743e-01\\n7.71459639e-02 -6.77321553e-01 -4.04784501e-01 -3.10032189e-01\\n2.28308082e-01 -1.81340039e-01 1.71057239e-01 -3.42280984e-01\\n3.93641680e-01 -7.63628855e-02 3.60421650e-02 3.25494289e-01\\n-6.32964492e-01 5.49113937e-02 -4.68719661e-01 9.20014232e-02\\n-5.58770955e-01 9.32862144e-03 -4.32462513e-01 1.34992197e-01\\n-1.17186040e-01 4.50527638e-01 -6.24952428e-02 -1.97244957e-02\\n-2.71735966e-01 2.17634365e-01 -3.46844107e-01 2.24471956e-01\\n3.31344306e-01 -7.51687661e-02 2.48580620e-01 3.63493204e-01\\n-4.54158217e-01 5.51061273e-01 2.69724131e-01 -3.07963490e-01\\n3.16107422e-01 2.17642814e-01 3.57355475e-01 2.36440331e-01\\n1.68288812e-01 1.66231468e-01 -1.36510924e-01 2.67159671e-01\\n1.83453336e-01 -2.39962593e-01 9.44776461e-02 -1.14948452e-01\\n-1.22098744e-01 -6.46585748e-02 7.88774863e-02 2.34587699e-01\\n-3.58615696e-01 3.35993648e-01 1.85066536e-01 -1.23495556e-01\\n-1.89986452e-01 -4.48902726e-01 -1.23173811e-01 1.08883120e-01\\n1.37335211e-01 1.96838900e-01 1.92264631e-01 1.35038748e-01\\n2.69769847e-01 9.97871757e-02 1.11074418e-01 6.56782448e-01\\n1.42826974e-01 2.10240245e-01 4.67675403e-02 3.72879326e-01\\n1.67677164e-01 -1.26973718e-01 2.04099581e-01 2.42396802e-01\\n-3.05164531e-02 -3.28474790e-01 -3.58967036e-01 3.87320220e-01\\n-2.47519583e-01 -1.40017614e-01 -1.90824240e-01 8.70967731e-02\\n6.61941767e-02 -4.29776400e-01 5.30249357e-01 -8.21511894e-02\\n1.13677800e-01 -1.94721092e-02 -1.00896813e-01 -8.77341926e-02\\n-1.03468210e-01 3.53111535e-01 2.26660088e-01 2.83388615e-01\\n-2.56079078e-01 -3.06471288e-01 -1.30239129e-01 2.27351978e-01\\n-3.89325798e-01 1.37983590e-01 -4.09389019e-01 1.11208139e-02\\n3.64194751e-01 2.11239830e-01 -4.79915559e-01 6.16755672e-02\\n-4.85145524e-02 -2.02862233e-01 -2.28459574e-02 4.73535508e-01\\n-8.76591504e-02 1.35484725e-01 -1.42202070e-02 -5.42387851e-02\\n6.38433337e-01 1.20021500e-01 5.07492065e-01 6.76559135e-02\\n2.95100123e-01 -1.88517049e-01 2.04421923e-01 1.10671766e-01\\n-6.16654336e-01 3.13731015e-01 -5.77844940e-02 -1.24128170e-01\\n1.26775950e-01 -1.18863005e-02 5.79209387e-01 -3.26870978e-01\\n-4.00899835e-02 -2.74150670e-01 -4.64226693e-01 -4.78615373e-01\\n-2.53395557e-01 -1.36448190e-01 2.69304901e-01 -5.69624186e-01\\n3.69645096e-02 1.72019988e-01 -6.09456897e-01 -3.30354393e-01\\n2.68875211e-01 2.56881207e-01 2.41241783e-01 6.98186830e-02\\n-1.22625440e-01 -7.36889541e-01 5.64862415e-02 -5.12725890e-01\\n-4.10693556e-01 1.91600043e-02 -2.96050578e-01 1.49434030e-01\\n-1.36104524e-02 5.25000505e-03 -1.11435261e-02 5.95060736e-02\\n-2.58021712e-01 1.12452945e-02 1.10562164e-02 1.94137141e-01\\n2.85038054e-01 8.34066123e-02 -3.85711849e-01 4.85957474e-01\\n-2.34990075e-01 5.57344794e-01 1.48045391e-01 -7.17530906e-01\\n7.04043567e-01 1.12054780e-01 -1.25414580e-01 -2.19661012e-01\\n3.68352264e-01 -4.38399285e-01 -3.56678292e-02 1.42015055e-01\\n-2.19665900e-01 -1.96670994e-01 3.26519459e-01 -5.28543778e-02\\n-3.53586316e-01 6.36979580e-01 1.58896461e-01 -1.02135904e-01\\n2.98758030e-01 -2.53623694e-01 -2.14119986e-01 4.38170619e-02\\n-2.13201702e-01 -4.02080342e-02 -4.69666928e-01 2.36458033e-02\\n-6.28001094e-02 -4.13021147e-01 -4.05590087e-02 -3.32188606e-01\\n-3.14298779e-01 -3.62323016e-01 -3.46308470e-01 1.22490197e-01\\n1.71392635e-01 1.61919966e-01 -1.15643770e-01 -4.06106673e-02\\n2.49790102e-02 -8.26156557e-01 -1.50702268e-01 2.29666010e-01\\n3.55063140e-01 3.37481171e-01 2.04207793e-01 -2.01382518e-01\\n1.53739989e-01 5.01209915e-01 -4.55762267e-01 -3.40685874e-01\\n2.68305510e-01 4.11215099e-03 -1.17774811e-02 -1.46560043e-01\\n7.38636404e-02 1.47221461e-01 -1.41782269e-01 -1.85014436e-03\\n6.57341182e-02 -1.84047312e-01 4.35505420e-01 3.78337549e-03\\n-2.79231280e-01 6.36365963e-03 -2.33094066e-01 1.85873553e-01\\n-4.79121119e-01 -2.76727140e-01 5.56199491e-01 2.34464288e-01\\n1.33747295e-01 1.48087770e-01 1.93314314e-01 4.57661599e-03\\n-3.28296065e-01 -2.89553821e-01 3.08225483e-01 1.95329934e-01\\n-6.30908385e-02 1.25973523e-01 -2.47795597e-01 -6.71810091e-01\\n-3.44965625e+00 -1.97014585e-01 1.08177230e-01 -3.57825041e-01\\n9.97498930e-02 -1.84145123e-01 1.82647690e-01 -2.64808480e-02\\n-2.60647953e-01 -2.80515142e-02 -2.02775657e-01 -1.20961137e-01\\n-1.12706395e-02 2.60662019e-01 1.87821507e-01 2.48891503e-01\\n2.57108569e-01 -2.56343067e-01 -5.74343801e-02 3.60089183e-01\\n-1.24787048e-01 -6.90944850e-01 -6.98172897e-02 5.39559452e-03\\n-4.23781052e-02 2.08017603e-01 -3.14005584e-01 6.28600046e-02\\n-3.40356350e-01 -2.50767261e-01 2.50666171e-01 -2.43069157e-01\\n-2.89983660e-01 6.16076477e-02 1.51375070e-01 -2.67294925e-02\\n-2.75391906e-01 -1.40052631e-01 -1.23443998e-01 -4.59867984e-01\\n3.94487083e-02 -5.02228022e-01 2.22740285e-02 -1.67124718e-01\\n7.04449654e-01 -1.16324641e-01 1.39149562e-01 1.06610745e-01\\n9.52525213e-02 1.40916795e-01 1.09533183e-01 3.15100811e-02\\n-1.80635363e-01 -2.93939710e-01 -1.57464623e-01 -8.47274438e-02\\n7.96404243e-01 3.13447654e-01 -2.20652163e-01 4.00175049e-04\\n2.38038763e-01 -3.97256613e-01 -3.18802655e-01 -3.86632890e-01\\n-3.11677158e-01 -1.28204152e-01 -7.62656689e-01 -3.72923553e-01\\n-2.17939675e-01 -6.26850501e-02 -9.98909548e-02 7.39739895e-01\\n-4.07045841e-01 -3.22163463e-01 -1.76266193e-01 -5.97790062e-01\\n3.03065121e-01 -1.49274632e-01 1.13077953e-01 -3.21628392e-01\\n-4.23236281e-01 -4.64888394e-01 1.11229666e-01 -3.80046628e-02\\n-3.35149378e-01 -2.42637489e-02 3.87786329e-02 -1.31975457e-01\\n-4.71248746e-01 -6.08718216e-01 2.87946850e-01 5.78931272e-02\\n2.37044349e-01 1.01568297e-01 3.34758282e-01 -4.24607433e-02\\n5.03307581e-01 7.31299818e-02 -3.16760354e-02 -2.04381123e-01\\n1.92932025e-01 -1.10563725e-01 6.60276830e-01 -3.55483443e-01\\n-1.42388463e-01 8.42945576e-02 -3.69244307e-01 2.65635867e-02\\n4.80979174e-01 -1.82908833e-01 1.08402818e-01 -9.16458145e-02\\n3.02507043e-01 -5.68179309e-01 -2.26603821e-01 2.28060901e-01\\n8.51342753e-02 7.53758669e-01 5.42594790e-02 -3.15881908e-01\\n9.13509503e-02 3.99221748e-01 -1.05413824e-01 -2.57701762e-02\\n-2.43337139e-01 1.53400714e-03 -1.84777141e-01 4.28462684e-01\\n6.61668181e-02 -1.47141963e-01 -1.76361680e-01 -5.39191589e-02\\n-1.05168656e-01 3.48619670e-01 3.04232568e-01 -5.14623970e-02\\n-4.86709215e-02 -1.31847322e-01 -2.31689095e-01 8.47583860e-02\\n2.01201871e-01 4.48767364e-01 1.92675382e-01 -2.53564835e-01\\n3.62922577e-03 2.28138939e-01 -2.35730082e-01 2.97554910e-01\\n-2.32318044e-01 2.17065454e-01 -6.56366706e-01 -2.69299954e-01\\n-1.69771045e-01 -3.60367060e-01 1.13336436e-01 3.77556354e-01\\n2.73789376e-01 -1.05048776e-01 3.39196324e-02 -5.65310240e-01\\n6.00955039e-02 2.71329850e-01 8.66683125e-02 1.70742214e-01\\n-1.82966128e-01 7.12836981e-01 -2.24203262e-02 -1.88323811e-01\\n-1.05815306e-01 9.32412222e-03 -3.16928059e-01 -3.32231432e-01\\n3.47391397e-01 -4.24125165e-01 -7.09783286e-02 4.57364827e-01\\n3.21713239e-01 -6.42394125e-02 -1.90440997e-01 3.88964385e-01\\n1.48593020e-02 -1.76615417e-01 -5.14062405e-01 5.34015661e-03\\n1.15142964e-01 2.12159500e-01 2.33951449e-01 -3.77940565e-01\\n5.11166640e-02 -2.81086657e-04 4.12022509e-02 3.89008850e-01\\n1.83638427e-02 2.68201560e-01 -1.74983844e-01 -8.35822895e-02\\n6.08786166e-01 5.97252212e-02 -1.01584651e-01 1.45578561e-02\\n2.91622460e-01 -2.31043056e-01 -4.21260267e-01 9.71177034e-03\\n-8.79081041e-02 -4.25100863e-01 1.24208540e-01 2.31116876e-01\\n-7.64257163e-02 -1.57998651e-02 -6.05796337e-01 -2.37568662e-01\\n-4.26165074e-01 -1.52822569e-01 2.40826309e-01 -6.11361980e-01\\n-1.46074370e-01 -1.10043459e-01 -4.05385315e-01 2.30815649e-01\\n7.43319094e-02 3.08281742e-03 3.89139652e-01 3.33025455e-01\\n-7.13793710e-02 -2.45224372e-01 5.59466109e-02 1.84621841e-01\\n-4.28636044e-01 -3.00698429e-01 -1.42660707e-01 -1.09593475e+00\\n4.96388972e-02 -1.89939458e-02 -2.85960585e-01 2.29348764e-02\\n-5.62067479e-02 -6.03702068e-01 1.74502283e-01 -3.08619708e-01\\n-2.11756796e-01 1.28123656e-01 -2.18959570e-01 -3.15656573e-01\\n1.37316853e-01 -1.12772852e-01 -3.07603180e-01 4.28081542e-01\\n-4.02170539e-01 4.58123207e-01 -1.03768878e-01 7.08063319e-02\\n-3.60942609e-03 -6.29797624e-03 1.94573984e-01 -1.05643936e-01\\n-4.44040120e-01 -3.96914095e-01 -4.51228261e-01 -2.30713367e-01\\n1.50147334e-01 -3.27523947e-01 -4.45509553e-02 1.49233863e-01\\n4.94120747e-01 1.93886995e-01 -5.13300784e-02 -9.48479772e-02\\n4.82284538e-02 -5.56291401e-01 1.22909963e-01 -2.37213701e-01\\n4.83620819e-03 -1.37837827e-01 1.27428576e-01 -1.08057661e-02\\n1.09095320e-01 -2.55334109e-01 6.50670111e-01 -2.25946337e-01\\n-3.02127004e-01 -2.41879225e-01 1.75487801e-01 1.28522530e-01\\n3.13030928e-01 -3.30892712e-01 6.06500655e-02 3.81650180e-01\\n1.12422168e-01 -1.26115143e-01 1.13548934e-01 -1.05203159e-01\\n-1.42687231e-01 2.07834914e-01 -2.99093604e-01 1.68144077e-01\\n8.47317338e-01 1.99661046e-01 2.18307972e-01 1.88655540e-01\\n7.19089806e-02 3.08897495e-01 6.74124956e-01 -2.11867303e-01\\n6.32449761e-02 2.80160785e-01 4.07692567e-02 -3.91052902e-01\\n-2.43703499e-02 -2.51043826e-01 4.28106040e-02 -3.59798402e-01\\n6.31435692e-01 3.59109849e-01 -5.22304893e-01 -3.27326715e-01\\n-1.57093167e-01 -1.96054820e-02 4.34597760e-01 1.29612491e-01\\n-2.44181886e-01 1.74330827e-02 5.56493878e-01 -5.66358007e-02\\n2.58049041e-01 3.88998389e-01 -2.06807345e-01 -1.96688890e-01\\n2.42620450e-03 2.95236021e-01 -1.27440039e-02 3.79167825e-01\\n-1.50270358e-01 1.88658163e-01 -1.78693578e-01 -1.62939504e-02\\n-2.64207691e-01 1.80396019e-03 1.28752023e-01 1.63474783e-01\\n2.78536469e-01 1.01140209e-01 4.98468190e-01 4.77330238e-01\\n1.20293692e-01 3.64976138e-01 2.35902816e-01 -1.40036047e-01\\n4.48495328e-01 5.80835104e-01 2.84027010e-01 1.55293614e-01\\n1.76129669e-01 2.55804896e-01 9.45241973e-02 1.14185385e-01\\n3.57888669e-01 4.93856072e-01 2.33668506e-01 6.18678451e-01\\n2.10600227e-01 3.29692423e-01 5.30382335e-01 -7.14465380e-01\\n-4.07869369e-01 2.17380412e-02 5.97936273e-01 -3.00069869e-01\\n1.80181295e-01 1.92688972e-01 -2.37584040e-01 3.11048925e-01\\n-5.90662181e-01 -2.80680716e-01 1.22073486e-01 2.74724793e-02\\n2.05120519e-01 -2.29163915e-01 -1.31266624e-01 1.35789782e-01\\n4.29771021e-02 -1.22002743e-01 -1.29737854e-01 -2.72700012e-01\\n-3.94280761e-01 -3.73433605e-02 1.20850332e-01 8.39081183e-02\\n7.92560726e-02 -3.89070868e-01 -1.43185914e-01 -5.47607839e-02\\n3.58238995e-01 -1.32878482e-01 -2.72181630e-01 -3.06935795e-02\\n2.61498094e-01 1.75768346e-01 6.45962656e-01 -9.45445895e-02\\n4.29560654e-02 -2.54758418e-01 -1.76961526e-01 1.29766837e-01\\n1.89689919e-01 1.10620186e-01 1.39188632e-01 3.90597463e-01\\n-3.94687772e-01 -1.81374937e-01 1.68548405e-01 2.00672492e-01\\n-4.23362434e-01 -9.75956023e-02 -1.12987205e-01 5.43494672e-02\\n-3.19334418e-02 2.36790866e-01 -2.70086378e-01 -1.23325780e-01\\n-2.70656496e-01 -5.96459091e-01 3.54987055e-01 -2.37167880e-01\\n-2.34259933e-01 -1.03615366e-01 3.06745678e-01 3.05704981e-01\\n-5.68228178e-02 4.48519737e-02 -7.75962695e-02 1.38559014e-01\\n5.78743853e-02 3.14962506e-01 5.06294332e-02 -2.53667057e-01\\n-3.53271097e-01 2.83000737e-01 1.40433729e-01 2.25339323e-01\\n-6.81080967e-02 3.19201976e-01 -1.09247245e-01 3.28256786e-02\\n3.54084700e-01 1.14770271e-01 -1.70863450e-01 -2.61343688e-01\\n-2.38305047e-01 -1.80440806e-02 7.18061179e-02 9.47721768e-04\\n5.01910374e-02 -4.28046435e-01 -1.98736235e-01 -3.38709414e-01\\n-6.48183972e-02 -4.42678481e-01 -2.24577725e-01 4.06330898e-02]]',\n", + " 'Supporting the customer on his site you will : Influence the design of data quality standards and governance processes Implement and enforce Data Quality Management practices across Research including metadata, lineage, data access rights and business definitions Perform root cause analysis on critical data quality issues, work with technology and SMEs on defining a solution and help implement the solution Design and report on data quality and usage metrics Complete large scale data analysis, document findings and reconcile across data stores Support the data analysis required to place data into a shared platform for consumption by others, requiring detailed reviews with the business owners and identify the use of data and understand calculations and derivations Partner with technology to understand where data already exists in the shared platform and ensure that data is not duplicated Explore and evaluate new concepts, technologies and industry trends related to data analytics We are looking for someone with the following experience Experience in data quality management Experience with using data profiling tools to query the data, identify anomalies, gaps and issues Experience manipulating and analyzing large-scale data sets, performing root cause analysis, driving data and business requirements Experience in scripting (Python, Perl, JavaScript, Shell) Experience working BI reporting tools is a plus General awareness of data management practices, emerging trends, and issues',\n", + " '[\"Research\", \"Governance\"]',\n", + " '[\"Quality Management\", \"Data Quality\", \"Tooling\", \"Accessioning\", \"Perl (Programming Language)\", \"Metadata\", \"Analytics\", \"Data Profiling\", \"Law Practice Management\", \"Industrialization\", \"Scale (Map)\", \"Calculations\", \"Python (Programming Language)\", \"Root Cause Analysis\", \"Business Requirements\", \"Enforcement\", \"JavaScript (Programming Language)\", \"Survey Data Analysis\", \"Requirements Analysis\", \"Solution Design\", \"Scripting\", \"Operational Data Store\", \"Derivatives\", \"Data Analysis\", \"Reporting Tools\"]',\n", + " \"['English', 'Nauru', 'Punjabi', 'Tatar', 'Avestan']\"],\n", + " ['99',\n", + " 'software engineer',\n", + " 'Eysins',\n", + " 'Biotech & Pharmaceuticals',\n", + " 'www.quotientsciences.com',\n", + " '[[-1.67283162e-01 4.96382684e-01 4.73285615e-01 -3.95441093e-02\\n7.15354025e-01 -6.18053414e-02 5.90838194e-02 1.80678621e-01\\n-8.27328418e-04 -3.37114483e-01 -2.18784034e-01 -1.58189401e-01\\n1.52623206e-02 5.06034233e-02 2.28409559e-01 5.84479868e-01\\n2.51608580e-01 1.66614223e-02 -1.66437440e-02 4.06785816e-01\\n-6.73558787e-02 -1.67884827e-01 1.20005667e-01 6.37284100e-01\\n3.13242376e-01 -8.12849903e-04 -3.01359948e-02 -5.76268248e-02\\n-3.09288412e-01 -2.74816602e-01 4.40663099e-01 3.29021849e-02\\n-7.83144087e-02 -3.73824924e-01 1.08930394e-01 1.79451630e-01\\n-1.85445324e-01 1.28055304e-01 -1.78126425e-01 2.40898132e-01\\n-5.89650989e-01 -2.64039427e-01 7.97517747e-02 -1.03131890e-01\\n-3.34392726e-01 -3.88217837e-01 1.39606580e-01 -2.31899530e-01\\n1.11341067e-01 2.21235871e-01 -3.84487182e-01 3.55191052e-01\\n-4.07988071e-01 -2.70934194e-01 5.06339848e-01 5.72794139e-01\\n6.15819991e-02 -5.84330261e-01 -4.68150735e-01 -2.88958251e-01\\n1.22681923e-01 -6.50476888e-02 1.47600770e-01 -1.49397805e-01\\n3.15104038e-01 -9.98749509e-02 4.46192436e-02 2.78863698e-01\\n-6.97212040e-01 -1.29439145e-01 -3.69929761e-01 1.14065811e-01\\n-3.49062771e-01 -1.05505243e-01 -3.53100777e-01 -2.25138947e-01\\n-2.79875807e-02 4.16782022e-01 -1.44749507e-01 2.34315917e-02\\n-1.39191240e-01 4.35574681e-01 -2.01017037e-01 1.43315732e-01\\n3.08255732e-01 1.59997836e-01 3.94490868e-01 3.71993899e-01\\n-5.16115129e-01 3.85041445e-01 3.96353811e-01 -2.77292460e-01\\n2.07770273e-01 7.18651116e-02 3.30229253e-01 1.87326372e-01\\n-3.53857465e-02 2.16005147e-01 -2.13451192e-01 1.46659657e-01\\n1.86481237e-01 2.20601987e-02 -1.00690156e-01 6.19195076e-03\\n1.31012267e-03 -3.19163613e-02 -1.72947580e-03 2.76178092e-01\\n-4.15631890e-01 3.80885810e-01 1.95618063e-01 -2.89628297e-01\\n-1.42698929e-01 -5.80824733e-01 -2.10370094e-01 6.33820519e-02\\n-1.20050618e-02 1.27508745e-01 2.09431335e-01 2.51360834e-01\\n2.47809812e-01 -3.90639044e-02 1.85143441e-01 8.57120037e-01\\n2.29593422e-02 6.75428063e-02 -1.07030220e-01 3.60183030e-01\\n1.33770242e-01 -1.98120549e-01 4.20190096e-02 2.35998571e-01\\n-7.21413940e-02 -2.89273611e-03 -2.67424881e-01 3.36799145e-01\\n-1.72741249e-01 -2.47610480e-01 -2.52588511e-01 1.93755463e-01\\n-2.16580793e-01 -4.31534410e-01 4.68430281e-01 -1.90114602e-01\\n6.76211864e-02 -1.70918375e-01 -6.28996268e-02 4.93098721e-02\\n-2.82016397e-01 3.84538829e-01 2.14667886e-01 1.01979077e-01\\n-2.99329340e-01 -2.84333080e-01 -1.77723631e-01 2.62720913e-01\\n-1.51834592e-01 1.86395928e-01 -3.54028583e-01 -1.64308682e-01\\n3.25742811e-01 2.08727509e-01 -5.31035304e-01 3.02797854e-01\\n-1.36172830e-03 -1.84365958e-01 -2.54335344e-01 2.53711253e-01\\n-6.52396157e-02 1.13642119e-01 3.34032183e-03 -1.01220399e-01\\n5.95475554e-01 1.37235850e-01 2.92575777e-01 -1.20846368e-01\\n3.76828909e-01 -1.28077835e-01 2.47321457e-01 6.49513230e-02\\n-6.44647121e-01 4.44469839e-01 -1.82577640e-01 -1.04603253e-01\\n4.25479412e-02 2.02265009e-02 5.31656384e-01 -3.12031657e-01\\n-1.11082554e-01 -2.75638402e-01 -3.28261137e-01 -5.08254468e-01\\n-8.10283944e-02 -4.24229763e-02 3.78612876e-01 -3.64559412e-01\\n-5.32455631e-02 2.15527326e-01 -7.24871457e-01 -7.97624514e-02\\n3.85937512e-01 2.35226005e-01 1.63823038e-01 1.63700417e-01\\n-1.44805267e-01 -6.02992654e-01 1.59879178e-01 -5.34337342e-01\\n-2.90672660e-01 1.37909099e-01 -2.17367843e-01 6.82096481e-02\\n-1.17913559e-02 3.04325819e-02 -4.39064689e-02 4.63327318e-02\\n-2.95871615e-01 -1.32496711e-02 1.52611867e-01 -2.64245179e-02\\n1.01892352e-01 1.13051072e-01 -4.70750362e-01 5.16115248e-01\\n-2.02063397e-01 4.04750526e-01 7.94736594e-02 -9.69350219e-01\\n5.03957987e-01 2.29500964e-01 -1.11463163e-02 -3.07611734e-01\\n5.91374516e-01 -3.56890380e-01 -8.50174204e-02 1.68656290e-01\\n-2.67049938e-01 -1.69523910e-01 2.77892292e-01 -1.67215213e-01\\n-3.24622005e-01 5.91055214e-01 1.15860440e-01 3.96384932e-02\\n3.08249563e-01 -1.01169541e-01 -1.09347917e-01 -4.04855609e-03\\n-8.63071755e-02 -2.03987453e-02 -4.55997586e-01 1.56496204e-02\\n-4.17355932e-02 -5.50188541e-01 -2.11021900e-01 -4.30515110e-01\\n-1.81023523e-01 -4.42410886e-01 -2.66065687e-01 9.48991179e-02\\n4.56364453e-02 1.18560277e-01 4.24885983e-03 1.21486619e-01\\n-2.12956052e-02 -8.45426083e-01 -7.96089992e-02 1.65583566e-01\\n1.92681685e-01 4.71878022e-01 2.18870610e-01 -1.10170893e-01\\n-8.90544280e-02 3.70567292e-01 -3.46888751e-01 -2.09043488e-01\\n2.47652262e-01 4.48090397e-02 -7.02936798e-02 -1.68070421e-01\\n1.14390329e-01 3.30983073e-01 -2.21414745e-01 1.18749730e-01\\n4.06400003e-02 -1.79618075e-02 3.52299511e-01 -1.07650585e-01\\n-3.03789884e-01 -1.78014934e-01 -1.18170142e-01 2.61042535e-01\\n-6.36415780e-01 -1.78278878e-01 5.25998831e-01 6.65154159e-02\\n3.08961291e-02 3.27643275e-01 3.56017798e-01 -7.01261908e-02\\n-3.34032208e-01 -2.03804418e-01 2.29282916e-01 1.38755873e-01\\n1.61493286e-01 -3.57251838e-02 -2.43090749e-01 -6.85398400e-01\\n-3.36590719e+00 -2.27977782e-01 1.61804214e-01 -3.20039481e-01\\n3.04907292e-01 -3.26754376e-02 2.63678521e-01 6.74046725e-02\\n-4.25667435e-01 2.55601481e-02 -1.76507935e-01 -1.29918844e-01\\n6.98243529e-02 3.32497895e-01 9.73022506e-02 9.07275453e-02\\n7.39738420e-02 -3.95802706e-01 7.48599693e-02 4.51745003e-01\\n-1.51159942e-01 -8.91585350e-01 1.35872159e-02 2.97283512e-02\\n1.60224333e-01 1.03656694e-01 -5.86426854e-01 -3.37138437e-02\\n-2.74967313e-01 -1.87939823e-01 8.74861106e-02 -4.47235852e-02\\n-2.94496089e-01 2.28376254e-01 8.54830891e-02 -1.12324983e-01\\n-2.13490855e-02 -2.79905170e-01 -6.16475232e-02 -6.68594241e-01\\n1.27968386e-01 -7.22252607e-01 5.30232862e-03 -3.13416570e-02\\n4.86633956e-01 -9.97365266e-02 2.40852326e-01 1.50363609e-01\\n1.39815211e-01 2.13297471e-01 1.13651454e-01 -8.13508872e-03\\n-1.95934355e-01 -2.19100252e-01 -1.27989277e-01 -8.76261517e-02\\n6.99163318e-01 3.76516491e-01 -3.27294528e-01 -1.84754550e-03\\n6.28733784e-02 -3.56785595e-01 -4.52331334e-01 -2.76319563e-01\\n-2.30234861e-01 3.18514295e-02 -7.09605217e-01 -4.17568296e-01\\n-1.58655375e-01 -2.18184695e-01 -9.87968445e-02 7.75923133e-01\\n-3.75988603e-01 -3.34090531e-01 -9.81640667e-02 -6.01580977e-01\\n1.40054092e-01 -2.70387918e-01 4.93498845e-03 -2.79449672e-01\\n-3.61586243e-01 -3.52262735e-01 3.09144408e-01 8.34799930e-02\\n-2.16312572e-01 9.06404033e-02 1.16812818e-01 -1.15260594e-01\\n-3.89930755e-01 -5.81773877e-01 4.28370357e-01 7.18084946e-02\\n3.61614108e-01 -3.77777740e-02 3.13419729e-01 -3.83485220e-02\\n5.09930313e-01 -1.59920976e-02 8.59928802e-02 -5.62680304e-01\\n-8.70154873e-02 -2.05737203e-02 7.11441338e-01 -2.34437749e-01\\n-4.87223454e-02 1.74908474e-01 -2.07855225e-01 -2.89404392e-01\\n4.85346377e-01 -2.22759005e-02 1.86039239e-01 -3.06634158e-01\\n3.08273584e-01 -4.84438568e-01 -2.25648656e-01 9.60651413e-02\\n7.29645267e-02 7.78930962e-01 2.44732909e-02 -4.17339504e-01\\n-1.43703416e-01 3.12684953e-01 -1.91466644e-01 5.49326204e-02\\n-1.14602178e-01 2.99004167e-02 -1.62621632e-01 3.82111520e-01\\n7.57742673e-02 -1.53777748e-01 -2.65014112e-01 6.90416917e-02\\n-7.91388154e-02 1.61529616e-01 2.57426709e-01 1.59676507e-01\\n-7.79743344e-02 -2.99858272e-01 -1.12044632e-01 1.72875032e-01\\n1.53421715e-01 3.65172386e-01 1.51879251e-01 -3.79622549e-01\\n1.58237927e-02 2.26691976e-01 -2.57052600e-01 3.30407172e-01\\n-1.41537011e-01 1.48903772e-01 -5.12566447e-01 -9.72853824e-02\\n-2.82519251e-01 -2.72215515e-01 6.81637675e-02 3.29897344e-01\\n1.69731855e-01 -1.33052677e-01 1.19581856e-01 -5.29412985e-01\\n2.96477467e-01 1.48529842e-01 1.75442964e-01 1.10479176e-01\\n-5.50859310e-02 6.96975112e-01 -1.19051998e-02 -1.97875157e-01\\n-1.88725302e-03 8.35982114e-02 -2.07555592e-01 -1.98839322e-01\\n1.11030713e-01 -3.98029923e-01 -8.53429921e-03 4.88453090e-01\\n1.61343187e-01 -4.92162742e-02 -1.55689403e-01 3.33499938e-01\\n4.95009050e-02 -2.77789384e-01 -2.44411871e-01 -2.30552368e-02\\n4.43329699e-02 2.95744333e-02 2.91405320e-01 -4.89995062e-01\\n5.18030189e-02 -7.42126107e-02 6.93076029e-02 3.44546229e-01\\n2.35428400e-02 1.20333031e-01 -1.22529328e-01 -1.13325737e-01\\n4.36666250e-01 9.03463215e-02 -7.92455971e-02 -1.70062520e-02\\n1.87160149e-01 -2.65449584e-01 -5.07697880e-01 -3.45288999e-02\\n-1.14432283e-01 -1.71996027e-01 1.13041736e-01 1.51635790e-02\\n1.86537549e-01 2.14096736e-02 -4.26688641e-01 -1.13187924e-01\\n-2.85175920e-01 2.51499843e-02 -1.81716532e-01 -5.95246792e-01\\n-7.07061365e-02 4.16523144e-02 -5.74558139e-01 2.22292379e-01\\n-5.76059008e-03 -3.85601185e-02 1.76665425e-01 2.27065086e-01\\n-2.69160718e-01 -2.66150981e-01 1.50380164e-01 1.52548440e-02\\n-2.77740210e-01 -1.76942214e-01 -3.68021950e-02 -9.36817467e-01\\n2.31606722e-01 -6.28801808e-02 -1.94569543e-01 3.97571847e-02\\n-1.22179888e-01 -7.56654739e-01 2.09525630e-01 -3.79736274e-01\\n-2.27010787e-01 6.01732954e-02 -2.26237684e-01 -3.40690017e-01\\n7.33671710e-02 -1.24778397e-01 -2.90580541e-01 3.12682569e-01\\n-3.61994475e-01 5.77859223e-01 4.40651514e-02 8.52059051e-02\\n1.41486144e-02 -2.04577833e-01 1.49629980e-01 -2.91375935e-01\\n-4.61250693e-01 -7.70405680e-02 -2.75184125e-01 -3.02751869e-01\\n-7.05734566e-02 -1.75870180e-01 -2.23107040e-01 1.50369853e-01\\n4.01551872e-01 7.57903755e-02 -1.26894414e-01 -1.27012551e-01\\n-1.98444575e-02 -3.85478348e-01 1.54525787e-01 -2.57370502e-01\\n1.39345258e-01 -8.13426226e-02 3.94687921e-01 5.22590708e-04\\n2.64045089e-01 -2.67956823e-01 6.32379532e-01 -1.34969652e-01\\n-3.37119460e-01 -1.68911383e-01 1.19579807e-01 1.14029787e-01\\n4.38407272e-01 -4.84939933e-01 2.94002555e-02 2.85366863e-01\\n-1.13274679e-01 3.18405926e-02 2.24106148e-01 -1.83181569e-01\\n-1.61934376e-01 -9.30105988e-03 -6.15322053e-01 2.19566286e-01\\n6.99552119e-01 2.61645257e-01 1.61991939e-01 1.27732232e-01\\n1.01735376e-01 3.68169546e-01 6.19638860e-01 -1.00752927e-01\\n-1.65866062e-01 3.33156466e-01 7.69180432e-02 -5.56725144e-01\\n-2.86869675e-01 4.59007779e-03 -1.54584095e-01 -3.91991764e-01\\n6.35518789e-01 1.88641161e-01 -4.09015238e-01 -3.64251018e-01\\n-2.77176917e-01 -2.79904515e-01 2.76747167e-01 -5.32844290e-03\\n3.55964079e-02 -1.61833435e-01 6.24098659e-01 5.12679070e-02\\n3.42268229e-01 4.98422861e-01 -5.81675135e-02 -3.33056957e-01\\n5.39596900e-02 1.99790031e-01 4.30069258e-03 2.69510180e-01\\n5.29400678e-03 1.61001727e-01 1.95755623e-02 1.97789967e-01\\n-2.26976275e-01 -1.50916949e-01 1.14374436e-01 1.20383270e-01\\n7.07988888e-02 2.09514692e-01 6.24804974e-01 4.26409602e-01\\n2.15460166e-01 3.52721870e-01 2.75899053e-01 2.86861062e-02\\n5.20019054e-01 6.54697418e-01 2.92867571e-01 4.55033174e-03\\n1.26852065e-01 2.82500923e-01 1.35589138e-01 -5.10333804e-04\\n4.33821231e-01 4.51742291e-01 1.26192093e-01 8.27383220e-01\\n7.43306652e-02 3.70451123e-01 7.68658519e-01 -6.19583428e-01\\n-3.18684846e-01 7.70748928e-02 6.30156457e-01 -4.34582114e-01\\n6.87476946e-03 2.27544695e-01 -1.26900107e-01 2.92407632e-01\\n-5.30891657e-01 -1.48756430e-01 3.55412550e-02 -5.42347208e-02\\n2.24938225e-02 -1.57012284e-01 -1.12404890e-01 -2.40950156e-02\\n-1.66813850e-01 -1.49871975e-01 -2.09899873e-01 -3.25569928e-01\\n-2.51107574e-01 1.11149378e-01 -4.22187746e-02 -1.73717663e-01\\n-3.39396968e-02 -3.10252637e-01 -1.27170131e-01 -8.64047259e-02\\n2.56068021e-01 -1.57345891e-01 -1.95944652e-01 -3.99634242e-02\\n1.51886046e-01 1.73659250e-01 7.09538043e-01 -7.05268085e-02\\n1.20836891e-01 -1.66058779e-01 -1.73461422e-01 7.13922083e-02\\n1.63114458e-01 1.64563686e-01 6.52934685e-02 6.67771041e-01\\n-3.23297441e-01 -1.01821534e-01 8.80909488e-02 3.58815104e-01\\n-2.65383244e-01 -2.23928201e-03 -6.07998855e-02 8.19014534e-02\\n-8.21686909e-02 8.73030797e-02 -2.14701787e-01 -2.82162726e-02\\n-1.36687919e-01 -5.65336287e-01 4.02833879e-01 -1.28295660e-01\\n-3.13870877e-01 -6.42627757e-03 3.26349437e-01 3.45629752e-01\\n-1.57253563e-01 -3.78518030e-02 -1.02381997e-01 1.22643121e-01\\n8.03345293e-02 4.92935359e-01 -1.89984858e-01 -2.59463370e-01\\n-3.32633823e-01 2.66296923e-01 3.80577892e-02 1.66840926e-01\\n-8.88827369e-02 2.90821284e-01 7.16807917e-02 6.53435439e-02\\n3.55444521e-01 -1.56623036e-01 -2.89584488e-01 -3.11671942e-01\\n-1.53793246e-01 -1.34443194e-01 1.05127253e-01 -1.44648746e-01\\n2.45508015e-01 -3.53670835e-01 -4.27128226e-02 -2.88287520e-01\\n-1.39551595e-01 -3.97719026e-01 -2.17192456e-01 1.82976108e-02]]',\n", + " 'Quotient is recruiting for a Software Engineer to join the IT department team based in Eysins. The Software Engineer will define, develop, test, analyze and maintain manufacturing software applications in support of the achievement of business requirements. Participate actively in the implementation and support of Manufacturing information systems solutions Participate in the definition, development, and documentation of software’s business requirements, objectives, deliverables, and specifications in collaboration with internal users and departments and as per our project methodology Write, code, install and analyse software programs and applications throughout the full lifecycle of system implementation (from requirements/design through to deployment and support) Design, run and monitor software testing on new and existing programs for the purposes of correcting errors, isolating areas for improvement, and general debugging Develop interface of MES system to ERP, PLC and other 3rd party system Develop and execute software verification plans following quality assurance procedures Develop and maintain IT documentation, user manuals and guidelines as well as train key users to operate new or modified programs Provide support for Manufacturing Software applications (Incident management and problem resolution) and develop further the manufacturing systems support Knowledge base Ensure timely issue identification, resolution, and appropriate escalation Collaborate with suppliers, internal project and IT team, internal management, and customer project teams and management Research, advice and implement technologies for Digital Factory transformation (Industry 4.0) Qualifications Engineering Diploma (EPF/HES or equivalent) in Computer Science, Information Systems, Industrial Engineering or equivalent Minimum 2 years experience on a similar role Programming skills in NET; C# and SQL language and ability to quickly learn new software/applications Must be a team player and an effective communicator, to enable communication with a wide range of stakeholders and cultures Experience of Manufacturing Information systems (Manufacturing Execution Systems, labelling and Enterprise Resource planning) in the medical devices or pharma industry is a strong asset SLDC and validation experience of enterprise applications is considered an asset Ability to work under pressure, meet deadlines and respond flexibly Excellent spoken and written French. Good English required Videos To Watch',\n", + " '[\"Writing\", \"Research\", \"Collaboration\", \"Planning\", \"Management\", \"Communications\", \"Operations\", \"Quality Assurance\"]',\n", + " '[\"Development Testing\", \"Systems Implementations\", \"Enterprise Application Software\", \"Knowledge Base\", \"Industry 4.0\", \"Programming (Music)\", \"Computer Science\", \"Mobile Application Software\", \"System Support\", \"Industrialization\", \"Enterprise Resource Planning\", \"Activism\", \"Installation\", \"Maintainability\", \"Resource Planning\", \"Software Manufacturing\", \"Executable\", \"Software Engineering\", \"Simatic S5 PLC\", \"Business Requirements\", \"Medical Devices\", \"MFG/Pro (ERP)\", \"C# (Programming Language)\", \"Digitization\", \"Incident Management\", \"Systems Development\", \"Industrial Engineering\", \"Transformation (Genetics)\", \"Factorials\", \"Software Testing\", \"Manufacturing Execution System (MES)\", \"Debugging\", \"Information Systems\"]',\n", + " \"['English', 'Latvian', 'Lithuanian', 'Tajik', 'Northern Sami']\"],\n", + " ['125',\n", + " 'software developer/devops engineer 60-100% starting immediately or as per agreement',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-2.87318110e-01 2.91789472e-01 4.31188583e-01 -8.56497586e-02\\n5.50554872e-01 -1.77667126e-01 -1.81153476e-01 4.18591142e-01\\n-1.41118765e-01 -3.14023614e-01 -1.08434513e-01 -2.64241785e-01\\n-1.60108298e-01 1.53163016e-01 6.70829564e-02 4.40282047e-01\\n3.40453863e-01 5.67928515e-02 -1.71614468e-01 3.23336720e-01\\n1.02806613e-01 -9.64196473e-02 -4.06006500e-02 7.56575286e-01\\n3.62100184e-01 1.48202516e-02 -5.53796291e-02 2.72017196e-02\\n-1.69028550e-01 -1.95795953e-01 4.24424082e-01 1.71294175e-02\\n-1.09756403e-01 -3.16664100e-01 1.61537319e-01 1.11791953e-01\\n-2.37060279e-01 -1.03546232e-02 -3.76902670e-02 1.60510525e-01\\n-5.12383103e-01 -1.93267167e-01 1.45915411e-02 1.42959803e-02\\n-2.79489934e-01 -2.70250201e-01 2.29901269e-01 2.37958580e-02\\n2.33175308e-02 5.69798499e-02 -6.05443358e-01 2.64797658e-01\\n-2.71879137e-01 -2.63937533e-01 4.01578635e-01 4.84519213e-01\\n5.35161905e-02 -4.76649761e-01 -4.92879808e-01 -3.85217905e-01\\n-3.52666825e-02 -7.18578100e-02 3.89909297e-02 -2.73499966e-01\\n5.02170920e-01 1.37555972e-01 5.60406670e-02 3.60494316e-01\\n-8.01566899e-01 -1.07479371e-01 -2.12247014e-01 5.86293414e-02\\n-4.19530869e-01 -1.04820862e-01 -2.29446977e-01 -2.23073408e-01\\n-5.96053377e-02 2.96231508e-01 -3.69271412e-02 9.81291234e-02\\n-1.38414115e-01 3.09551448e-01 -1.51179239e-01 3.57642770e-01\\n2.48925060e-01 1.73266470e-01 2.58680612e-01 3.36884737e-01\\n-4.56089437e-01 3.54018390e-01 1.28624976e-01 -3.47741365e-01\\n2.72112489e-01 6.20779619e-02 4.51661527e-01 9.88357067e-02\\n1.76459432e-01 1.43177837e-01 -2.75089353e-01 2.16527492e-01\\n1.98034912e-01 -2.34888554e-01 -7.76223838e-04 -1.14471316e-01\\n-2.95662023e-02 5.42322136e-02 1.54809458e-02 1.92612082e-01\\n-3.79081279e-01 3.74513745e-01 1.75825447e-01 -2.73818403e-01\\n-1.01332933e-01 -5.78993320e-01 -1.22831173e-01 1.46739170e-01\\n2.04649158e-02 -5.30406088e-03 1.45222217e-01 1.15870684e-01\\n2.24334180e-01 4.39854153e-03 1.36397451e-01 8.49736691e-01\\n-1.23089060e-01 -6.50517419e-02 -1.49911433e-01 2.67448455e-01\\n1.03887878e-01 -3.06839287e-01 2.14043438e-01 3.00301254e-01\\n1.05285630e-01 -9.65064913e-02 -2.45603755e-01 3.91231865e-01\\n-9.10522416e-04 -2.49747306e-01 -3.50262821e-01 2.72334695e-01\\n-1.16192371e-01 -4.62924838e-01 5.35417378e-01 5.94500173e-03\\n2.22213119e-01 -6.12952113e-02 9.75393504e-03 -8.14917535e-02\\n-4.99278158e-02 1.65591896e-01 6.23758510e-02 2.49845311e-01\\n-3.73047531e-01 -2.50737190e-01 -1.74523860e-01 1.78210318e-01\\n-2.58136809e-01 1.52739286e-01 -9.52636153e-02 -1.36618212e-01\\n3.80859077e-01 2.93134227e-02 -3.21646303e-01 2.13435248e-01\\n-3.00743692e-02 1.56142935e-03 -1.25223532e-01 3.85336041e-01\\n-1.58782840e-01 2.32533216e-01 -8.19541365e-02 -1.55077174e-01\\n5.68798423e-01 5.88336065e-02 1.35826081e-01 -3.41330208e-02\\n3.76788825e-01 -1.47953451e-01 2.99568772e-01 3.50088179e-02\\n-6.97408974e-01 2.18423441e-01 -1.39078293e-02 -1.70854092e-01\\n3.10208797e-02 3.42263356e-02 4.09392267e-01 -3.31602275e-01\\n-9.21376050e-05 -1.94397196e-01 -3.72853070e-01 -3.37666452e-01\\n-2.58329719e-01 7.73894712e-02 4.21880007e-01 -3.80115300e-01\\n-1.16501763e-01 1.65301889e-01 -5.59084177e-01 -2.04996750e-01\\n2.11235449e-01 2.25003034e-01 1.26817137e-01 9.17577371e-02\\n-1.38674349e-01 -7.17165709e-01 3.40212882e-02 -5.29017806e-01\\n-2.54450202e-01 1.32091165e-01 -3.92119646e-01 2.19579250e-01\\n1.09882336e-02 -4.72904593e-02 -1.20516382e-01 1.37907594e-01\\n-3.48661184e-01 -6.25367165e-02 1.48148507e-01 3.47936824e-02\\n2.84271419e-01 1.07930340e-01 -2.71239161e-01 5.35039544e-01\\n-1.54739842e-01 4.94785607e-01 1.31897479e-01 -8.04526329e-01\\n5.07906973e-01 4.43602204e-01 8.89478400e-02 -3.37336123e-01\\n5.69540799e-01 -3.01147461e-01 -6.24946766e-02 1.32318974e-01\\n-4.60249662e-01 -2.59566069e-01 2.44656637e-01 -2.77914077e-01\\n-2.35727161e-01 5.57668924e-01 7.49789700e-02 2.86465883e-02\\n3.54128361e-01 -3.61817777e-01 -1.78567231e-01 1.29208982e-01\\n-1.16411954e-01 -3.23868215e-01 -5.43175697e-01 1.83105245e-02\\n-7.25895017e-02 -5.22873938e-01 -2.09462374e-01 -3.61580282e-01\\n-1.21171907e-01 -2.79470801e-01 -2.15028331e-01 3.72170210e-01\\n1.37792170e-01 9.57143679e-02 -1.16027400e-01 -3.25749069e-02\\n-1.03597805e-01 -6.00327849e-01 6.46317750e-02 -7.62615204e-02\\n4.29507524e-01 1.72550350e-01 1.62954018e-01 -6.85341507e-02\\n4.24821973e-02 6.11936092e-01 -3.55240583e-01 -3.18563938e-01\\n7.56022260e-02 1.08517960e-01 -8.05538613e-03 -3.48435640e-02\\n1.53358683e-01 2.83679783e-01 -2.80136943e-01 2.93359160e-04\\n-2.65068829e-01 3.77300568e-02 3.81170571e-01 -1.25991032e-01\\n-2.00369880e-01 -2.47937664e-01 -1.34533331e-01 2.09450424e-01\\n-5.06720483e-01 -2.30727017e-01 4.16215062e-01 2.08025396e-01\\n1.61086842e-01 1.46631077e-01 2.57583529e-01 -3.05785723e-02\\n-2.73961484e-01 -3.76286834e-01 2.59703845e-01 1.94673315e-01\\n1.18294075e-01 1.25228167e-01 -1.08436294e-01 -5.59951186e-01\\n-2.93729639e+00 -1.77619115e-01 2.11666360e-01 -2.89920747e-01\\n2.80518532e-01 -9.52224582e-02 6.85328841e-02 -7.66997561e-02\\n-3.61034989e-01 -3.13492529e-02 -1.61867917e-01 -2.46088997e-01\\n6.44157454e-02 2.88689852e-01 1.49642691e-01 7.89279044e-02\\n7.27260336e-02 -2.17213064e-01 7.11056143e-02 2.76450306e-01\\n-1.47085473e-01 -7.16445208e-01 1.96123138e-01 -1.18124358e-01\\n2.33736783e-01 3.11203688e-01 -4.14957613e-01 -1.66257665e-01\\n-2.57039428e-01 -2.18894243e-01 1.32843792e-01 -3.22713614e-01\\n-1.09991074e-01 3.05664599e-01 2.08565980e-01 -7.47518390e-02\\n5.99676967e-02 -3.68930161e-01 -9.76570398e-02 -5.65621912e-01\\n2.24634141e-01 -5.76452494e-01 -3.91370151e-03 -1.71015441e-01\\n6.65006042e-01 -2.91297406e-01 1.82726577e-01 1.35385662e-01\\n2.31303096e-01 2.02988476e-01 6.48515224e-02 7.25327134e-02\\n-2.54797429e-01 -3.19191754e-01 -2.41924226e-02 -2.85765201e-01\\n5.49647093e-01 4.76489246e-01 -2.08977669e-01 -5.56413084e-02\\n1.48424178e-01 -3.50824773e-01 -4.54944044e-01 -3.19716066e-01\\n-1.86787039e-01 -1.59528390e-01 -6.02613747e-01 -3.77588332e-01\\n-1.11144185e-01 -8.96145999e-02 -9.21295136e-02 7.16021776e-01\\n-3.33794415e-01 -3.24110806e-01 5.17537817e-03 -6.55639291e-01\\n7.62278512e-02 -2.63824970e-01 6.99969530e-02 -2.36851692e-01\\n-2.31593966e-01 -4.92470652e-01 1.22997947e-01 -7.06257299e-02\\n-1.79481894e-01 -3.36754829e-01 3.22761573e-02 -2.54902959e-01\\n-1.84644908e-01 -5.51626325e-01 3.85588646e-01 1.51344895e-01\\n3.84903014e-01 1.87793210e-01 2.89781362e-01 -2.03124825e-02\\n2.71261364e-01 3.76273878e-02 -2.62049958e-03 -3.97569388e-01\\n2.10584551e-01 2.14498322e-02 5.50341487e-01 -1.82782650e-01\\n1.78368874e-02 9.05191600e-02 -2.20640779e-01 -1.51129171e-01\\n3.18200797e-01 9.64162573e-02 1.94250457e-02 -1.74557716e-01\\n4.10951138e-01 -4.19547498e-01 -1.13547973e-01 1.97528839e-01\\n5.34651726e-02 6.41566753e-01 -1.67857111e-02 -3.89339983e-01\\n-2.05366701e-01 5.42307019e-01 -1.11077242e-02 -3.98148559e-02\\n-5.10816649e-03 1.66688740e-01 -1.56590879e-01 1.82058275e-01\\n4.89002243e-02 -1.72223762e-01 -2.58895695e-01 -6.41639531e-02\\n-1.45417899e-01 2.82754540e-01 2.92502046e-01 2.50201762e-01\\n-1.03088312e-01 -3.89020383e-01 -4.35447842e-02 2.98897743e-01\\n2.62479544e-01 3.97856116e-01 1.80709511e-01 -1.73602343e-01\\n2.35672742e-02 4.60401475e-01 -1.22553632e-01 2.26123989e-01\\n-1.48112223e-01 7.70156905e-02 -5.44449151e-01 -1.76110327e-01\\n-3.27874482e-01 -2.81568766e-01 1.20939940e-01 3.09839934e-01\\n1.75294995e-01 -7.26273656e-02 5.76428548e-02 -3.56755018e-01\\n2.43489802e-01 8.83635134e-02 2.07738400e-01 1.25812173e-01\\n-9.34434831e-02 6.11874640e-01 -1.92633569e-02 -7.33592883e-02\\n-1.86909348e-01 -1.23604946e-02 -2.65375733e-01 -1.86913460e-01\\n1.68819994e-01 -3.95074666e-01 -2.10466236e-01 4.37441260e-01\\n1.05115086e-01 -1.55914098e-01 -1.79656982e-01 2.94642508e-01\\n6.36705533e-02 -2.88086116e-01 -2.58867919e-01 2.27771960e-02\\n2.96990991e-01 4.84071895e-02 2.52825230e-01 -5.04959822e-01\\n-3.87022458e-02 9.62376222e-02 1.11653693e-02 4.82677609e-01\\n1.01177104e-01 4.75580106e-03 -1.94290102e-01 -2.97577620e-01\\n3.24753970e-01 -1.71053261e-01 -1.12228245e-01 -1.06714204e-01\\n3.71257886e-02 -1.56514287e-01 -4.09128308e-01 3.04189771e-02\\n-8.75774473e-02 -1.98559880e-01 -2.12248638e-02 3.96063961e-02\\n1.56495839e-01 7.49918595e-02 -5.38079858e-01 -1.80572510e-01\\n-2.11260617e-01 4.53960299e-02 4.73914668e-04 -4.55058873e-01\\n5.21916039e-02 -2.65320726e-02 -5.96360683e-01 2.49133706e-01\\n-2.16501728e-01 -1.72815025e-02 1.95525765e-01 -2.01024115e-02\\n-4.61807728e-01 -1.38845056e-01 1.76314950e-01 1.75923079e-01\\n-3.57330948e-01 -3.15296113e-01 5.33151999e-02 -1.02236998e+00\\n1.91780090e-01 -9.61777866e-02 -1.16622925e-01 1.15673631e-01\\n7.14104846e-02 -6.96519852e-01 8.08185562e-02 -3.65290046e-01\\n-5.79128787e-03 6.44948259e-02 -1.99457601e-01 -3.20395589e-01\\n7.62744322e-02 -1.16553485e-01 -2.10152030e-01 4.63202327e-01\\n-4.96144295e-01 2.81551600e-01 -9.17651951e-02 5.04254699e-02\\n5.49955294e-02 -3.18094879e-01 1.46768942e-01 -3.12892437e-01\\n-4.53601778e-01 -2.32586071e-01 -2.63967574e-01 -3.86464596e-01\\n2.09685136e-02 -2.85497308e-01 -1.30863413e-01 9.20823216e-02\\n2.98231930e-01 -1.91106908e-02 -1.86114684e-01 -2.28986442e-01\\n9.53403413e-02 -4.53365326e-01 7.88550898e-02 -5.20132445e-02\\n-8.07747394e-02 -1.38689891e-01 1.98494166e-01 1.04011580e-01\\n1.51971757e-01 -3.57496649e-01 5.10936260e-01 -3.76024514e-01\\n-3.70997846e-01 -7.93536454e-02 8.58781338e-02 9.27861407e-03\\n2.19826415e-01 -6.54448628e-01 -3.50430086e-02 4.03188586e-01\\n2.05288291e-01 4.40065116e-02 2.04517663e-01 -1.41157478e-01\\n3.06737162e-02 2.29866520e-01 -3.89220595e-01 1.45663664e-01\\n8.67883027e-01 1.54450938e-01 1.05609357e-01 2.38801956e-01\\n1.47309422e-01 2.88691550e-01 4.74720836e-01 -1.02697149e-01\\n-7.43917674e-02 2.56745696e-01 1.39196903e-01 -4.64492112e-01\\n-1.52405024e-01 -3.56659181e-02 -2.19154991e-02 -2.70281553e-01\\n6.73882127e-01 3.77228737e-01 -4.49291468e-01 -3.12332600e-01\\n-9.88477319e-02 -7.93113112e-02 2.72883654e-01 -1.01410180e-01\\n1.26195177e-02 -1.69254273e-01 3.98905456e-01 -2.46471763e-02\\n2.85397083e-01 5.73866546e-01 -1.91057056e-01 -3.46286058e-01\\n-1.87313184e-01 2.07979783e-01 2.93491296e-02 4.31390464e-01\\n-1.44919842e-01 2.01590300e-01 -5.63432872e-02 1.80502191e-01\\n-1.46607757e-01 1.90563813e-01 1.00478768e-01 5.71591109e-02\\n2.05162674e-01 1.31151050e-01 3.90405834e-01 4.27460074e-01\\n3.74838233e-01 5.24707198e-01 2.74959713e-01 4.67869565e-02\\n4.93670940e-01 5.46043575e-01 4.72681075e-01 -1.02610551e-02\\n-8.42719972e-02 1.17959708e-01 1.00726373e-01 -7.90356100e-02\\n4.05645490e-01 3.19476247e-01 1.54250965e-01 9.33255613e-01\\n3.24126899e-01 3.79435778e-01 6.98691249e-01 -5.63847959e-01\\n-2.86700159e-01 5.67018837e-02 4.60928977e-01 -4.21892703e-01\\n4.04282734e-02 7.92097896e-02 -1.67069674e-01 2.26446718e-01\\n-4.92805004e-01 -8.33834186e-02 -3.79050709e-03 2.18010470e-02\\n1.09355494e-01 -4.77372482e-02 -2.17290044e-01 -3.26051340e-02\\n-2.41340756e-01 -2.43086696e-01 -4.19553876e-01 -2.16480732e-01\\n-2.07325071e-01 -7.10473359e-02 -6.01869412e-02 -2.17074305e-01\\n-7.99204633e-02 -3.56071323e-01 2.90904343e-02 3.05220857e-03\\n3.63231272e-01 -1.19046845e-01 -1.43253192e-01 -1.59353733e-01\\n3.66383731e-01 3.20502818e-01 6.39274836e-01 -1.33762375e-01\\n9.07671079e-03 -1.49128616e-01 -2.40885392e-01 1.49054140e-01\\n2.62479801e-02 1.16542861e-01 1.40212059e-01 2.67452806e-01\\n-2.76915550e-01 -8.46120864e-02 1.02654383e-01 3.54872227e-01\\n-3.72790039e-01 -7.65801072e-02 -9.86637399e-02 1.46286160e-01\\n-7.52954371e-03 1.39302641e-01 -2.87257373e-01 1.13631755e-01\\n-1.94109589e-01 -5.63626826e-01 4.52676833e-01 -1.88164040e-01\\n-1.44184843e-01 3.81145217e-02 3.99288416e-01 2.23205343e-01\\n-2.31812239e-01 2.88282707e-03 2.34621409e-02 2.06964642e-01\\n6.44229949e-02 3.45169842e-01 -1.61057010e-01 -2.84343541e-01\\n-3.56081724e-01 1.98329404e-01 -1.88631520e-01 1.26163512e-02\\n-1.43413007e-01 4.23739254e-01 -4.40278165e-02 3.40358168e-02\\n4.14370358e-01 -8.75738040e-02 -1.60119101e-01 -3.00972998e-01\\n-2.28682548e-01 -2.21214429e-01 7.98541121e-03 -1.97812542e-03\\n2.33695775e-01 -3.69636327e-01 -1.46578059e-01 -2.98409998e-01\\n2.15439349e-02 -2.49564201e-01 1.55617930e-02 4.02572230e-02]]',\n", + " \"60-100% Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum's scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master's degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer you The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).\",\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " \"['English', 'Ido']\"],\n", + " ['64',\n", + " 'back-end software engineer',\n", + " 'Chiasso',\n", + " '',\n", + " '',\n", + " '[[-3.35816383e-01 6.42856285e-02 6.17190480e-01 -7.22094923e-02\\n6.01747274e-01 -1.70121282e-01 -1.42338872e-01 4.20830846e-01\\n-7.83537850e-02 -5.50096869e-01 -6.17809072e-02 -1.95279032e-01\\n-3.54207829e-02 1.98555112e-01 4.70523201e-02 4.87554282e-01\\n3.15138310e-01 -1.35895789e-01 -5.76310121e-02 1.52816206e-01\\n2.57867668e-02 -6.72990307e-02 -1.52405679e-01 7.77097881e-01\\n8.09336975e-02 6.91256598e-02 1.49383098e-01 1.05123580e-01\\n-2.73855031e-01 -1.59847155e-01 3.74778986e-01 8.82838368e-02\\n-2.52783537e-01 -2.16898084e-01 4.96213734e-02 2.16017172e-01\\n7.00714588e-02 1.37256622e-01 -2.31474325e-01 4.01288241e-01\\n-3.19918811e-01 -3.29550475e-01 5.06536104e-02 2.67343074e-02\\n-9.94760618e-02 -3.21008831e-01 2.20930353e-02 1.92332864e-02\\n2.87635833e-01 4.75739315e-02 -4.03760403e-01 2.56997406e-01\\n-3.03514421e-01 -3.23297024e-01 1.74764901e-01 4.80346471e-01\\n1.17518073e-02 -6.33487940e-01 -2.12561950e-01 -1.40187517e-01\\n-1.03921175e-03 5.20952456e-02 1.38530031e-01 -3.41934979e-01\\n3.09789240e-01 1.08210407e-01 -2.58142632e-02 2.83341438e-01\\n-4.82071251e-01 5.11103496e-02 -3.08139741e-01 -5.73741496e-02\\n-3.32230687e-01 6.14223070e-02 -4.44998205e-01 -2.36588761e-01\\n-2.51418322e-01 4.83292133e-01 -3.58375385e-02 1.45748034e-01\\n-6.45818596e-04 3.61956120e-01 -3.38535644e-02 2.35867634e-01\\n3.65718424e-01 4.82972622e-01 2.27682829e-01 4.58622932e-01\\n-4.51820046e-01 5.38606584e-01 3.09110165e-01 -4.87724245e-01\\n2.39958301e-01 3.49740312e-02 4.59356099e-01 4.28773046e-01\\n2.06471354e-01 2.79183388e-01 -2.39093885e-01 2.40214020e-01\\n1.07594959e-01 1.59498885e-01 -1.08709730e-01 -1.40734790e-02\\n-8.53286460e-02 -1.05843293e-02 -9.43391100e-02 1.63034096e-01\\n-5.38502753e-01 4.00397032e-01 4.99080271e-02 -3.32930267e-01\\n-1.19366810e-01 -5.39647281e-01 -3.50241691e-01 6.20675720e-02\\n4.84277569e-02 2.19983593e-01 9.93627161e-02 7.21137077e-02\\n3.23029160e-01 3.20430920e-02 7.45286644e-02 9.63083029e-01\\n-2.02344194e-01 1.19102322e-01 -2.42441848e-01 2.33480752e-01\\n1.39688775e-01 -3.04558158e-01 1.29850194e-01 3.91483009e-02\\n-8.75324383e-02 -7.72551000e-02 -3.37488025e-01 3.86875659e-01\\n-1.95673347e-01 -2.88348854e-01 -1.73076287e-01 4.63260524e-02\\n-2.48655185e-01 -2.65380979e-01 4.89898950e-01 -1.08684927e-01\\n1.98381674e-03 -9.66975614e-02 -1.58322845e-02 -3.54445390e-02\\n1.00233026e-01 3.44772756e-01 8.34914148e-02 5.36902994e-02\\n-5.11694431e-01 -4.36779797e-01 -3.03783178e-01 2.84493834e-01\\n-6.65749088e-02 2.09763587e-01 -3.01945418e-01 -1.86776165e-02\\n2.31497929e-01 8.79511237e-02 -4.85268354e-01 3.12542588e-01\\n2.17456315e-02 -2.78509766e-01 -2.09885702e-01 2.57758200e-01\\n9.64615867e-02 5.55989668e-02 1.49195805e-01 -2.03833535e-01\\n4.75604445e-01 9.80241075e-02 5.69358543e-02 -9.63634104e-02\\n4.76104945e-01 -1.40179083e-01 2.99713202e-02 2.86981463e-01\\n-6.02345586e-01 3.08412015e-01 -1.04783803e-01 1.07239746e-01\\n1.69108342e-02 1.06040619e-01 9.57944468e-02 -2.98631549e-01\\n8.76503438e-03 -1.96783587e-01 -2.49831021e-01 -4.22178358e-01\\n-2.47870728e-01 -1.42515436e-01 2.93561518e-01 -3.02431524e-01\\n-1.38605401e-01 1.31891131e-01 -3.43666703e-01 -5.58715127e-03\\n6.70685992e-02 2.32487813e-01 -3.87553573e-02 1.99939087e-01\\n-1.97937608e-01 -3.67844909e-01 5.58159761e-02 -3.95254970e-01\\n-3.53695869e-01 2.99876511e-01 -1.95069522e-01 2.55081691e-02\\n1.93304166e-01 -2.35439837e-02 3.10629327e-02 9.49155614e-02\\n-4.24087942e-01 2.68104076e-01 1.88005477e-01 1.91933308e-02\\n3.89228255e-01 -4.01305370e-02 -5.37776589e-01 5.66419125e-01\\n-1.85545653e-01 7.23235667e-01 1.54870406e-01 -8.35480452e-01\\n4.20975983e-01 2.11656854e-01 1.68891773e-01 -3.72700423e-01\\n5.18453121e-01 -4.04182345e-01 -1.38055742e-01 3.59585017e-01\\n-1.65474132e-01 -2.29561940e-01 1.97055191e-01 -7.38615021e-02\\n-4.02299374e-01 4.07181680e-01 5.95144890e-02 1.52975947e-01\\n3.21952641e-01 -2.55502313e-01 -6.85760304e-02 1.56512603e-01\\n-1.27258018e-01 -4.86520566e-02 -5.94821155e-01 -4.18094769e-02\\n4.03789151e-03 -4.26964968e-01 -1.52130336e-01 -6.55867159e-01\\n-2.37718254e-01 -3.17163259e-01 -3.86875808e-01 2.24158987e-01\\n3.11252810e-02 -4.02983539e-02 2.38340721e-01 -1.05310336e-01\\n2.56683342e-02 -4.74429846e-01 -2.14331940e-01 3.58576059e-01\\n2.67352134e-01 1.26342893e-01 -4.54920949e-03 1.92359939e-01\\n-3.28779817e-02 7.15677440e-01 -3.06654721e-01 -2.11589217e-01\\n3.25238347e-01 2.76177317e-01 -2.84643006e-02 -2.05232903e-01\\n1.37561839e-02 -8.08920786e-02 -2.59437621e-01 -1.30957007e-01\\n-1.23784222e-01 1.17745124e-01 3.43038172e-01 -3.54717046e-01\\n-3.65070045e-01 -1.05773032e-01 1.00951627e-01 1.14218324e-01\\n-6.78049862e-01 2.48626582e-02 5.63674212e-01 2.39516795e-01\\n1.70822199e-02 1.64149746e-01 3.76289904e-01 -3.76064718e-01\\n-1.89558700e-01 -2.23128408e-01 3.27466786e-01 3.17862213e-01\\n1.45042881e-01 2.49640960e-02 -1.76913198e-02 -7.57614970e-01\\n-3.75792313e+00 8.57777719e-04 1.12362444e-01 6.27834722e-02\\n2.02862218e-01 -2.43310899e-01 2.39974067e-01 -6.94024339e-02\\n-1.13785654e-01 1.25698835e-01 -9.99290645e-02 -1.24728359e-01\\n1.98647082e-01 1.32987127e-01 -1.04215138e-01 2.45599151e-01\\n1.97095439e-01 -1.52036725e-02 -3.54831256e-02 3.77410263e-01\\n-3.81051097e-03 -7.79102683e-01 2.77841866e-01 4.48227338e-02\\n2.86787182e-01 3.44916135e-02 -6.34835422e-01 1.58861697e-01\\n-2.18517557e-01 -2.87165254e-01 -7.23682567e-02 -3.22762996e-01\\n-1.95776150e-01 1.85507357e-01 2.05212399e-01 -1.46160558e-01\\n1.75211385e-01 -3.13255131e-01 -1.09669194e-01 -4.75046962e-01\\n2.25439921e-01 -5.89710951e-01 1.36708796e-01 -2.19931244e-03\\n6.59722686e-01 -4.25067574e-01 1.64826885e-01 -6.79916888e-02\\n1.35915399e-01 2.61513561e-01 -8.03083554e-02 -1.50689796e-01\\n-1.94884077e-01 -7.38067329e-02 6.27941191e-02 -2.38455102e-01\\n5.38707793e-01 1.94449335e-01 -4.06914234e-01 1.67456612e-01\\n-2.54792999e-02 -8.77490342e-02 -5.09262204e-01 -3.65274519e-01\\n-1.83140188e-01 1.63344309e-01 -7.43462801e-01 -5.17316520e-01\\n-1.13406919e-01 6.25036061e-02 -1.40360063e-02 7.30422437e-01\\n-2.13739216e-01 -5.74570537e-01 -1.10378318e-01 -5.10768533e-01\\n1.81564584e-01 -1.14835590e-01 1.32191211e-01 -2.49310017e-01\\n-3.20150018e-01 -4.15238380e-01 1.92050606e-01 2.55930121e-03\\n-3.35550308e-02 2.43580922e-01 4.32158649e-01 -1.22507177e-01\\n-4.38296467e-01 -4.22423750e-01 2.71958709e-01 2.90999770e-01\\n2.95629054e-01 1.93194017e-01 1.65813416e-01 -1.19192787e-02\\n5.99905476e-02 -7.62789696e-02 1.98687464e-02 -4.34738934e-01\\n8.82581323e-02 -1.21354975e-01 4.44716275e-01 -1.01036422e-01\\n-4.87516485e-02 2.76452243e-01 -7.29969516e-02 -2.06125274e-01\\n6.40399277e-01 -4.88228165e-02 1.61976188e-01 -1.55908853e-01\\n3.42644691e-01 -4.59012300e-01 -1.65247634e-01 1.22318797e-01\\n3.04336734e-02 6.30299747e-01 -1.48535684e-01 -5.98637938e-01\\n-1.30440623e-01 4.68776435e-01 -8.64978731e-02 -1.66776493e-01\\n-4.01799589e-01 2.15608433e-01 -4.09925371e-01 4.26518828e-01\\n1.48650289e-01 -2.96242267e-01 -2.60324746e-01 -1.94575295e-01\\n-1.33279756e-01 4.79072481e-02 3.49059790e-01 1.18741922e-01\\n-7.44105950e-02 -2.40232050e-01 -1.49964169e-01 1.93952754e-01\\n4.64527488e-01 3.73166502e-01 -3.82514447e-02 -2.86761880e-01\\n-9.58099216e-02 1.14247978e-01 -4.08111364e-01 1.69477180e-01\\n-1.87804252e-01 1.43015996e-01 -2.87762344e-01 -6.54500127e-02\\n-1.87959552e-01 -3.73775780e-01 -1.76899150e-01 3.34146976e-01\\n2.38246009e-01 -9.94237587e-02 -7.51638189e-02 -3.51595253e-01\\n3.65375012e-01 2.99315572e-01 1.44145817e-01 3.36403936e-01\\n3.69169600e-02 6.85654461e-01 -3.58373784e-02 -2.25517958e-01\\n-8.60656723e-02 -6.35516420e-02 -1.57183826e-01 5.28525338e-02\\n1.07586302e-01 -5.03348708e-01 -1.30449206e-01 3.70364606e-01\\n1.68821380e-01 -4.05244559e-01 -1.67480186e-01 4.89618242e-01\\n1.84112489e-01 -1.93187609e-01 4.27185977e-03 8.45783763e-03\\n3.04464817e-01 -9.98612680e-03 3.56901258e-01 -6.58673763e-01\\n-2.06787422e-01 -1.92642938e-02 -2.92614281e-01 4.40166354e-01\\n5.27594313e-02 5.67348450e-02 7.24702403e-02 -2.74958313e-01\\n4.33856547e-01 -2.47206792e-01 -2.25697622e-01 -2.28592604e-02\\n1.50242791e-01 -6.49525076e-02 -4.61358309e-01 2.75782254e-02\\n-3.08821738e-01 -2.62774974e-01 2.62675345e-01 4.57146317e-02\\n-4.47132178e-02 1.67790353e-01 -4.14286971e-01 -5.82846761e-01\\n-3.53388101e-01 -1.97387356e-02 -4.27904353e-02 -3.75893861e-01\\n9.08501633e-03 -6.65017366e-02 -8.49630296e-01 2.68503547e-01\\n-2.31322080e-01 -2.09441781e-01 1.14523493e-01 1.77974075e-01\\n-2.29824200e-01 -4.73155640e-02 8.62656981e-02 1.98720217e-01\\n-4.10640806e-01 -3.48075092e-01 -9.64708552e-02 -7.07181334e-01\\n1.71308279e-01 -1.46653831e-01 -1.00649484e-01 9.25418437e-02\\n-6.31624311e-02 -6.06906116e-01 1.50987104e-01 -1.49495289e-01\\n-3.55437666e-01 -1.37379512e-01 -1.01847455e-01 -4.61318463e-01\\n2.53213674e-01 1.75715968e-01 -2.42395282e-01 5.67250311e-01\\n-3.47685486e-01 3.32406044e-01 -1.42352164e-01 8.03012773e-02\\n6.28302619e-02 -3.29185724e-01 2.99085140e-01 -3.40220183e-01\\n-3.08522314e-01 -2.32166409e-01 -3.14598322e-01 -2.98940688e-01\\n6.21512607e-02 -2.22457528e-01 -3.32184464e-01 1.28930286e-01\\n2.80466437e-01 1.80993617e-01 4.31475602e-02 -1.97586969e-01\\n1.39958173e-01 -5.04913449e-01 1.52199402e-01 -1.08957708e-01\\n1.90965921e-01 6.96623698e-02 1.25898793e-03 -1.17911093e-01\\n2.14120112e-02 -2.39685923e-01 5.98533213e-01 -7.34719587e-03\\n-2.78458029e-01 -9.65006649e-02 2.46035252e-02 3.48818451e-01\\n2.61103898e-01 -4.74221855e-01 -2.54945248e-01 4.68349129e-01\\n8.04939792e-02 2.26050392e-01 1.88512772e-01 -2.12967411e-01\\n5.04330024e-02 3.53423767e-02 -3.50023806e-01 3.32645684e-01\\n3.67526323e-01 -3.37785925e-03 1.67977974e-01 2.51543671e-01\\n3.82700227e-02 4.10939723e-01 5.72789252e-01 -3.81168202e-02\\n-5.61047010e-02 3.30875367e-01 -7.79623315e-02 -4.44811285e-01\\n-7.21201524e-02 -1.70582533e-01 -2.69833237e-01 -5.99939585e-01\\n6.71412945e-01 3.72346014e-01 -3.56382817e-01 -2.16919720e-01\\n-9.74410996e-02 -1.05523549e-01 1.89534817e-02 -2.01386437e-01\\n-2.23510250e-01 3.12771276e-02 4.97825235e-01 2.26704292e-02\\n4.34335053e-01 4.09816504e-01 -3.59223396e-01 -1.99229077e-01\\n-2.11354330e-01 1.74170986e-01 8.07771012e-02 2.44595647e-01\\n-5.95522225e-02 2.14293167e-01 1.59969687e-01 1.55956745e-01\\n-2.35917643e-02 -2.31420249e-01 -5.04499003e-02 1.14397049e-01\\n3.52006704e-01 2.71467548e-02 2.73233622e-01 4.14565802e-01\\n2.59487867e-01 3.02392125e-01 3.12215894e-01 1.45298436e-01\\n4.32207942e-01 5.38762093e-01 4.77781028e-01 1.63617626e-01\\n2.24968717e-01 1.60065711e-01 1.63965255e-01 -6.65032789e-02\\n2.15722024e-01 4.54488605e-01 7.15093017e-02 6.38998032e-01\\n1.50694951e-01 2.65595198e-01 7.22460687e-01 -5.68424642e-01\\n-3.66467804e-01 -2.79041752e-02 2.95864046e-01 -1.96140707e-01\\n-2.43677661e-01 6.00007102e-02 -1.06351629e-01 9.87427086e-02\\n-6.03569150e-01 1.14045158e-01 2.79753655e-01 -9.10819024e-02\\n8.78136456e-02 9.09341150e-04 -3.05676073e-01 -3.40464897e-02\\n-1.90240964e-01 -2.73199156e-02 -3.69730622e-01 -2.92600542e-01\\n-2.62211829e-01 -1.65740550e-01 6.06591515e-02 -1.76774293e-01\\n8.94650221e-02 -2.50827253e-01 -2.07122788e-01 1.50647700e-01\\n2.41036505e-01 -9.02146846e-02 -8.19535926e-02 -3.13162468e-02\\n4.52656113e-02 1.90373674e-01 5.75016916e-01 7.95449242e-02\\n2.01677710e-01 -1.53858379e-01 -1.78880811e-01 8.76552239e-02\\n1.73068970e-01 4.31731790e-02 1.90317333e-01 3.86260301e-01\\n-5.74243963e-01 -2.61047959e-01 3.12430486e-02 5.24540722e-01\\n-3.88376117e-01 1.82737380e-01 -3.75962295e-02 2.69468427e-01\\n6.79673031e-02 3.92884500e-02 -3.25483978e-01 -6.94731027e-02\\n-1.36809319e-01 -5.12272358e-01 3.77437890e-01 -4.20546949e-01\\n-6.49380013e-02 -7.67480209e-02 1.24616556e-01 1.85142875e-01\\n-2.75748551e-01 -7.27195740e-02 -7.14258254e-02 3.16397339e-01\\n8.30367059e-02 2.59518534e-01 -3.49409670e-01 -6.62130415e-02\\n-2.81189322e-01 -5.58537468e-02 1.21889357e-02 2.98320875e-03\\n-6.72159195e-02 2.96684772e-01 3.03455323e-01 1.62705213e-01\\n3.82352948e-01 -9.82054397e-02 -3.30381185e-01 -2.31987685e-02\\n2.18656138e-02 -3.77537340e-01 7.63856992e-02 7.39148781e-02\\n2.82662243e-01 -2.27714270e-01 -3.12827788e-02 -2.38592684e-01\\n-1.88624546e-01 -4.33910638e-01 -1.36388570e-01 7.48383403e-02]]',\n", + " 'Il nostro cliente,realtà internazionale, leader nell’E- commerce. Principali responsabilità Designing, writing and testing clean code Create resilient, secure and performant applications Simplifying and improving the infrastructure, focusing on CI/CD Interact with all stakeholders Monitoring, identifying and correcting software defects. Contribute in the R&D Principali caratteristiche richieste Experience as a Software Engineer programming in Object Oriented languages ( Java, Python etc.) Willingness to work inside a team Knowledge of Italian and English Customer orientation',\n", + " '[\"Infrastructure\"]',\n", + " '[\"Object-Oriented Database\", \"Software Engineering\", \"Python (Programming Language)\"]',\n", + " \"['English', 'Inupiaq']\"],\n", + " ['69',\n", + " 'embedded software test engineer',\n", + " 'Lausanne',\n", + " 'Computer Hardware & Software',\n", + " 'www.logitech.com',\n", + " '[[-9.34156105e-02 2.98122793e-01 3.71386051e-01 -1.83055717e-02\\n5.90397239e-01 -1.60107344e-01 1.18267402e-01 3.31731021e-01\\n5.24628982e-02 -3.34263772e-01 1.57871898e-02 -2.09307313e-01\\n-5.77568375e-02 -1.62353013e-02 6.28898665e-02 3.45525384e-01\\n3.67573649e-01 7.47879222e-02 -1.64087489e-01 4.42510694e-01\\n1.05450615e-01 -5.86515814e-02 2.21822294e-03 7.26883888e-01\\n3.38195682e-01 5.02461009e-02 -1.80358160e-02 -9.14717689e-02\\n-2.97953188e-01 -2.29515299e-01 3.99191320e-01 -5.12781963e-02\\n-1.25000745e-01 -3.80140036e-01 4.87980582e-02 -1.97782274e-03\\n-1.99093670e-01 -2.34183320e-03 1.86506007e-02 1.82071730e-01\\n-4.53278422e-01 -3.02952111e-01 3.20097134e-02 3.81033123e-02\\n-1.21122397e-01 -1.49080634e-01 1.87214658e-01 -5.37234843e-02\\n6.37098774e-02 7.35010207e-02 -3.80811900e-01 3.61265212e-01\\n-2.61334270e-01 -2.36605182e-01 3.92642677e-01 5.03224552e-01\\n1.24771804e-01 -4.92687225e-01 -4.51143622e-01 -3.46785635e-01\\n6.43982366e-02 -1.61184818e-02 6.71784207e-02 -3.77343655e-01\\n3.73558432e-01 3.83916982e-02 5.89052327e-02 2.36417577e-01\\n-8.19095135e-01 -8.85771215e-02 -2.59221196e-01 -8.46547037e-02\\n-2.46478438e-01 -1.90470412e-01 -2.75114238e-01 1.19271986e-02\\n-1.62822351e-01 3.21522504e-01 -1.93909034e-02 9.90565419e-02\\n-1.48583204e-01 2.56678313e-01 -1.27578750e-01 3.32987994e-01\\n2.60416090e-01 2.53535300e-01 3.23155910e-01 2.94633120e-01\\n-3.41523319e-01 4.86696899e-01 1.74464639e-02 -2.98157334e-01\\n2.39513054e-01 3.16728741e-01 3.65111560e-01 -4.55448665e-02\\n1.85736850e-01 1.22170597e-01 -2.80880630e-01 2.74416894e-01\\n1.93911940e-01 -3.05613279e-01 9.57019553e-02 4.67313230e-02\\n-9.96071007e-03 -4.49556671e-02 9.92796049e-02 1.99021250e-01\\n-5.10911763e-01 4.66439664e-01 1.84968174e-01 -2.12198034e-01\\n-4.18280922e-02 -3.50147694e-01 -1.17993779e-01 8.10690969e-02\\n4.14687209e-02 4.32058051e-02 2.53297806e-01 1.59330964e-01\\n2.93510437e-01 -6.19664043e-02 4.92197797e-02 7.14738548e-01\\n-9.35745537e-02 1.01830140e-01 -2.18978003e-01 2.81675875e-01\\n1.47764146e-01 -3.25830072e-01 1.09361596e-01 2.29919121e-01\\n6.93171471e-02 -3.90873775e-02 -2.86774576e-01 3.77312839e-01\\n-9.48498547e-02 -1.74859792e-01 -2.26057604e-01 1.95348740e-01\\n7.47624366e-03 -5.05872905e-01 6.28936410e-01 -8.30295905e-02\\n1.38565019e-01 -1.11496955e-01 5.27440794e-02 -4.46768887e-02\\n-1.38333976e-01 3.30088079e-01 1.87044725e-01 2.57665783e-01\\n-2.44536415e-01 -3.03635776e-01 -1.46853060e-01 9.71532613e-02\\n-3.52323681e-01 1.94670469e-01 -1.66279554e-01 -8.53593946e-02\\n2.10085064e-01 -7.11231753e-02 -3.78864229e-01 2.18108982e-01\\n1.91102009e-02 -2.69720587e-03 -3.95303741e-02 2.88794726e-01\\n-1.14175722e-01 2.45603651e-01 -4.60516550e-02 -8.62941667e-02\\n5.63765883e-01 1.96388587e-01 1.14911899e-01 -2.98366621e-02\\n2.97650933e-01 -8.95514339e-02 2.78599888e-01 1.59597933e-01\\n-7.98043728e-01 3.18208784e-01 -5.43581061e-02 -1.44927755e-01\\n1.04831904e-01 -1.33657202e-01 3.21095586e-01 -3.77775997e-01\\n-9.75373238e-02 -1.83907330e-01 -2.88133830e-01 -4.15737778e-01\\n-1.76690489e-01 -3.93798910e-02 2.46640846e-01 -3.85870814e-01\\n-9.83063877e-02 1.42818555e-01 -5.04140913e-01 -1.14022911e-01\\n2.45231256e-01 1.38353333e-01 1.44100726e-01 8.04143399e-02\\n-5.04455119e-02 -5.16178906e-01 8.85182023e-02 -3.44356954e-01\\n-3.11982334e-01 1.01745397e-01 -3.09149981e-01 2.17002243e-01\\n-2.87276208e-02 1.54536357e-02 4.08532657e-02 1.23724550e-01\\n-1.56963930e-01 -6.16095513e-02 1.00043014e-01 -4.09103520e-02\\n1.84916392e-01 7.64070451e-02 -3.15533936e-01 4.36944544e-01\\n-2.72097379e-01 5.04512370e-01 4.61088307e-02 -7.34573960e-01\\n5.44032991e-01 2.74736822e-01 -2.68743653e-03 -3.37996304e-01\\n4.78224158e-01 -2.89989740e-01 1.51831638e-02 1.01259179e-01\\n-3.13224047e-01 -2.32073709e-01 1.94492966e-01 -1.88762471e-01\\n-3.28761816e-01 4.84790862e-01 4.21694592e-02 7.31623471e-02\\n1.83257058e-01 -2.46229604e-01 8.88530612e-02 5.13840616e-02\\n-7.33103529e-02 -1.51238054e-01 -3.74164879e-01 -1.06327489e-01\\n-1.64972860e-02 -3.75170022e-01 -1.45423263e-01 -2.78407305e-01\\n-2.86904186e-01 -4.19337511e-01 -3.17872345e-01 1.94561988e-01\\n2.02014700e-01 1.62793994e-01 -3.37601639e-02 -3.46291699e-02\\n-1.94834635e-01 -6.94058001e-01 3.69634628e-02 1.57506302e-01\\n4.22419369e-01 2.86753356e-01 1.02366939e-01 -9.82573703e-02\\n4.14204970e-02 4.78947878e-01 -3.85837376e-01 -1.70296609e-01\\n1.67161852e-01 1.67026401e-01 -3.43905054e-02 -1.38640478e-01\\n3.04361880e-02 4.04102713e-01 -2.41856933e-01 1.15948558e-01\\n-3.26951295e-02 -4.24490683e-02 4.99991924e-01 -2.33093545e-01\\n-3.14700395e-01 -1.98641732e-01 -4.38342467e-02 1.94209054e-01\\n-5.08604527e-01 -2.38937020e-01 5.24096310e-01 1.98822960e-01\\n1.87700927e-01 1.80365294e-01 2.20984980e-01 -1.71366669e-02\\n-1.72324628e-01 -3.52866203e-01 2.42176145e-01 1.25279889e-01\\n1.01352878e-01 1.43404514e-01 -1.11984879e-01 -6.45070314e-01\\n-3.35766029e+00 -7.50974119e-02 1.44329295e-01 -2.23333508e-01\\n2.31818870e-01 -1.39093608e-01 1.26101047e-01 -4.85440791e-02\\n-3.06486338e-01 1.74139589e-01 -1.72047943e-01 -1.62733331e-01\\n6.97773769e-02 3.71185303e-01 1.28551662e-01 1.01064436e-01\\n1.29346371e-01 -3.65506679e-01 -8.61359760e-02 3.41655612e-01\\n-1.31532222e-01 -6.65489018e-01 1.19218037e-01 -5.20454459e-02\\n2.77141064e-01 3.69961172e-01 -4.25005317e-01 -7.42358863e-02\\n-2.07683623e-01 -1.95931360e-01 9.27617922e-02 -1.71525821e-01\\n-2.21992373e-01 2.06694409e-01 1.77281961e-01 -7.67200515e-02\\n-7.12807849e-03 -3.71478170e-01 -8.07525143e-02 -3.99099290e-01\\n1.75526291e-01 -6.04037702e-01 -9.45696160e-02 -5.88538051e-02\\n6.71798468e-01 -2.69513369e-01 1.87908918e-01 6.66286275e-02\\n1.90628082e-01 1.30377337e-01 6.68745339e-02 1.76048473e-01\\n-2.05381393e-01 -1.05351269e-01 3.28274667e-02 -1.79033816e-01\\n5.90955973e-01 3.54409575e-01 -3.02579373e-01 -7.11542275e-03\\n4.90379110e-02 -3.18085790e-01 -3.09844494e-01 -2.13880256e-01\\n-1.85247928e-01 -2.50413150e-01 -7.27705121e-01 -4.34325159e-01\\n-1.59566239e-01 -1.12527676e-01 -6.37997389e-02 6.50163591e-01\\n-4.51870203e-01 -3.58299464e-01 4.77826633e-02 -5.20035267e-01\\n1.92667708e-01 -1.27578706e-01 4.08517420e-02 -1.57278523e-01\\n-2.50458956e-01 -4.60938543e-01 -4.65954916e-04 8.39208141e-02\\n-1.12611793e-01 -2.17231110e-01 7.47719184e-02 2.58813296e-02\\n-4.01788563e-01 -4.90111053e-01 3.52446645e-01 2.95565873e-01\\n2.52991140e-01 4.55941148e-02 2.74944007e-01 -6.88822533e-04\\n3.74987245e-01 -8.07548761e-02 9.08790827e-02 -3.73791814e-01\\n8.47449824e-02 -7.57027417e-02 5.07707953e-01 -2.19666749e-01\\n-1.25196755e-01 2.00620204e-01 -3.34423453e-01 -1.00801282e-01\\n4.43096459e-01 -1.37260348e-01 5.68853952e-02 -4.80440557e-02\\n2.95572549e-01 -4.03545082e-01 -1.28749743e-01 7.48602077e-02\\n6.32034242e-02 7.66437113e-01 2.59044692e-02 -2.83896774e-01\\n-1.11377642e-01 4.74734068e-01 -1.77679062e-01 8.14085305e-02\\n-4.99611534e-02 -4.52888804e-03 -1.30044073e-01 2.22825199e-01\\n5.94548397e-02 -1.52195007e-01 -2.06532374e-01 -3.70570570e-02\\n-1.06365241e-01 2.89717615e-01 1.18581817e-01 3.77001390e-02\\n-1.41095713e-01 -2.92086780e-01 -1.26092747e-01 1.97994024e-01\\n2.28976205e-01 3.67080569e-01 1.96189955e-01 -2.72648245e-01\\n-2.10663807e-02 3.33359748e-01 -1.30129457e-01 2.91329116e-01\\n-2.36912087e-01 1.37847945e-01 -4.65287954e-01 -7.93198794e-02\\n-3.53871793e-01 -3.71894091e-01 1.79973198e-03 3.70445669e-01\\n1.52520105e-01 -1.44339725e-02 1.21691860e-01 -5.61255634e-01\\n2.02388704e-01 1.25967026e-01 1.75487220e-01 8.16112757e-02\\n-8.11057836e-02 4.41705227e-01 -4.01235744e-02 -1.53670967e-01\\n-2.13937476e-01 4.46166620e-02 -8.37707371e-02 -2.40137041e-01\\n2.38898411e-01 -5.48315823e-01 -2.38762535e-02 2.64493912e-01\\n1.19226433e-01 -3.27358484e-01 -1.76523343e-01 2.95744419e-01\\n1.96045334e-03 -3.54724765e-01 -3.40723634e-01 -7.15418160e-02\\n1.96183622e-01 4.36638705e-02 2.44265035e-01 -4.17963892e-01\\n-9.86169577e-02 -1.13566760e-02 -4.42854054e-02 2.68093526e-01\\n-7.46512562e-02 2.78807059e-02 -3.08953464e-01 -4.77221012e-02\\n3.93294156e-01 3.60303149e-02 -8.04866850e-02 -9.39890146e-02\\n1.92163095e-01 -2.98275739e-01 -6.10272527e-01 -7.03549013e-02\\n6.04974627e-02 -1.97691113e-01 1.12812385e-01 2.14696944e-01\\n7.60841072e-02 1.54709265e-01 -4.89906728e-01 -2.33959451e-01\\n-2.73941249e-01 -1.80059776e-01 7.44773969e-02 -5.09269595e-01\\n-7.67974257e-02 4.52831713e-03 -4.68887031e-01 1.67311877e-01\\n-1.62708014e-01 -6.99296221e-02 1.66711852e-01 5.22940047e-02\\n-3.28465044e-01 -1.59196645e-01 -8.76082778e-02 1.48062810e-01\\n-2.32151210e-01 -2.82478988e-01 -8.72927438e-03 -1.04721880e+00\\n1.95516780e-01 3.00774034e-02 -1.65024042e-01 -4.52637300e-02\\n-2.20215514e-01 -4.72917020e-01 2.12980807e-01 -4.20344502e-01\\n-5.81931584e-02 -3.82410809e-02 -2.85252690e-01 -2.33733475e-01\\n1.71302751e-01 -1.76386073e-01 -4.19903249e-01 3.93476278e-01\\n-3.31600934e-01 3.92938465e-01 -1.88736826e-01 4.04991917e-02\\n-9.36824530e-02 -1.00527234e-01 1.95911199e-01 -4.48448241e-01\\n-4.26281810e-01 -1.33688092e-01 -2.90393442e-01 -1.70614272e-01\\n-7.62985721e-02 -2.64191419e-01 -1.14296913e-01 -1.82606641e-03\\n2.40415454e-01 3.51694301e-02 -1.06558509e-01 -2.15705991e-01\\n6.05319217e-02 -5.58507860e-01 -1.81740429e-03 -2.10329935e-01\\n1.65351257e-02 -1.62637323e-01 1.22612908e-01 -2.37842277e-03\\n2.17064515e-01 -4.44761366e-01 3.83394271e-01 -4.13852811e-01\\n-3.13600153e-01 -9.29081365e-02 -4.10893597e-02 1.00953884e-01\\n3.12143326e-01 -5.58581531e-01 1.29696548e-01 3.75207692e-01\\n2.04471289e-03 1.22316116e-02 2.23230556e-01 -1.07784063e-01\\n-9.80189145e-02 2.03623086e-01 -3.74277502e-01 1.00098915e-01\\n7.09520042e-01 2.12046698e-01 2.06614226e-01 2.65512854e-01\\n1.87752679e-01 4.63841826e-01 4.44652796e-01 -7.35991634e-03\\n-9.74606052e-02 1.45252168e-01 1.21814251e-01 -5.27153134e-01\\n-3.12763527e-02 1.28435403e-01 -1.75775751e-01 -3.40202391e-01\\n6.05235934e-01 4.35827047e-01 -3.98099750e-01 -2.46804997e-01\\n-8.54732171e-02 -2.29142934e-01 2.64218897e-01 -3.83152477e-02\\n1.96511317e-02 -1.02720335e-01 5.27068079e-01 2.89011635e-02\\n2.75349915e-01 5.33577502e-01 -2.14683816e-01 -3.91476989e-01\\n1.96306314e-02 2.81012863e-01 9.29190144e-02 4.96767193e-01\\n-1.19453229e-01 1.40332505e-01 -1.14584699e-01 2.47436520e-02\\n-3.49716656e-02 1.74509153e-01 6.28122538e-02 1.87563032e-01\\n1.49507418e-01 7.39360377e-02 5.34260154e-01 4.25152063e-01\\n2.51576394e-01 3.51941198e-01 2.68792391e-01 6.54010177e-02\\n4.32257056e-01 5.48559070e-01 2.17495650e-01 -4.40778881e-02\\n-2.24149623e-03 1.84910700e-01 2.31132627e-01 -4.39464860e-02\\n4.35392171e-01 3.95131290e-01 -7.00465986e-04 8.15465748e-01\\n3.27355295e-01 2.35047519e-01 7.81482399e-01 -6.34549499e-01\\n-3.18778396e-01 2.41550058e-02 4.27508831e-01 -3.47043633e-01\\n4.14533690e-02 1.48229882e-01 -1.08390167e-01 3.61431956e-01\\n-3.59153211e-01 -2.13680148e-01 6.53633848e-02 1.53371006e-01\\n1.07713699e-01 -2.14654282e-01 -2.72048712e-01 -6.47475943e-02\\n-5.32793999e-02 -9.52077806e-02 -4.62224066e-01 -2.44744122e-01\\n-2.79400110e-01 2.39702128e-03 -7.06181303e-02 -4.37606387e-02\\n-1.62970200e-02 -3.24349195e-01 -8.19704160e-02 -2.07602791e-02\\n1.62718415e-01 -2.30663031e-01 -1.49800494e-01 -8.94402415e-02\\n3.20331812e-01 1.02860935e-01 5.07837713e-01 -8.76626894e-02\\n1.34611219e-01 -1.18993461e-01 -2.70787835e-01 1.11786261e-01\\n-1.08041214e-02 1.28051996e-01 1.12793706e-01 2.77702093e-01\\n-3.21554095e-01 -1.69121504e-01 1.18660182e-01 4.02507603e-01\\n-3.75234395e-01 -7.71309361e-02 -1.10477641e-01 2.26703092e-01\\n1.80890113e-01 8.74002501e-02 -1.71462864e-01 -2.33361479e-02\\n-2.02123746e-01 -5.28358936e-01 2.78569907e-01 5.09867966e-02\\n-1.70817137e-01 1.00278914e-01 2.53464162e-01 2.35750481e-01\\n-1.67150617e-01 1.75601430e-02 -8.04798752e-02 1.29910275e-01\\n3.94184478e-02 3.19144756e-01 -6.89344257e-02 -3.64373565e-01\\n-2.31060654e-01 2.63471723e-01 -1.46234572e-01 5.73140681e-02\\n-6.69301003e-02 2.64949501e-01 -6.10835664e-02 8.15340281e-02\\n3.57650042e-01 -1.72074754e-02 -1.70306027e-01 -2.68814862e-01\\n-1.00353256e-01 -1.19992025e-01 -6.40597716e-02 8.70066043e-03\\n8.31287876e-02 -3.67121726e-01 -8.89711380e-02 -1.76263958e-01\\n-3.27940448e-03 -2.25841776e-01 -8.39996785e-02 3.66403125e-02]]',\n", + " 'The Role: The Embedded Software Test Engineer is responsible for designing, implementing, reviewing and monitoring test automation. Your Contribution: Be Yourself. Be Open. Stay Hungry and Humble. Collaborate. Challenge. Decide and just Do. These are the behaviors you’ll need for success at Logitech. In this role you will: Participate in the development of a test automation framework. Leverage your technical skills to design & implement automation testing infrastructure. Establish formal frameworks, suites, standards and processes. Evaluate and develop new tools and processes to enable development of complex automation unit and integration test suites for our next generation devices. Collaborate with Business Owners, Architects, Firmware engineers to understand technical component requirements, business use cases, customer issues and system performance considerations to improve test effectiveness. Contribute to CI/CD from the testing perspective. Develop and enforce automation testing standards and best practices. Key Qualifications: For consideration, you must bring the following minimum skills and behaviors to our team: 3+ years in embedded software automation. Familiar with development best practices, including feature driven development. Experience with Continuous Integration (CI) processes and tools. Demonstrated programming skills in Python. Experience with using automation tools on Windows/Linux. Service oriented attitude, with strong analytical, problem-solving and conceptual skills. Ability to communicate highly technical concepts to non-technical individuals. In addition, preferable skills and behaviors include: Experience with Raspberry PI. Experience with Artix-7 FPGA design. Experience with CI/CD tools - Git, GitLab, Jenkins, Artifactory,etc. Experience with testing human interface devices. ISTQB certification. Education: BS / MS in Computer Science / Computer Engineering, or an equivalent combination of education and experience. Logitech is the sweet spot for people who are passionate about products, making a mark, and having fun doing it. As a company, we’re small and flexible enough for every person to take initiative and make things happen. But we’re big enough in our portfolio, and reach, for those actions to have a global impact. That’s a pretty sweet spot to be in and we’re always striving to keep it that way. “All qualified applicants will receive consideration for employment without regard to race, sex, color, religion, sexual orientation, gender identity, national origin, protected veteran status, or on the basis of disability.” #LI-ML3',\n", + " '[\"Collaboration\", \"Communications\", \"Infrastructure\", \"Problem Solving\"]',\n", + " '[\"Disabilities\", \"Automation\", \"Tooling\", \"Jenkins\", \"Programming (Music)\", \"Graphics Device Interface\", \"Field-Programmable Gate Array (FPGA)\", \"Computer Science\", \"Analytics\", \"Business Case Analysis\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Perspective (Graphical)\", \"Integrity Testing\", \"Python (Programming Language)\", \"Linux\", \"Test Automation\", \"Feature-Driven Development (FDD)\", \"Raspberry Pi\", \"Human Interface Guidelines\", \"Business Requirements\", \"Test Engineering\", \"Personalization\", \"Enforcement\", \"Firmware\", \"Test Suite\", \"Service-Oriented Modeling\", \"User Experience Design (UX)\", \"Receivables\", \"Computer Engineering\", \"Additives\", \"Git Flow\", \"Coloring\", \"Registration Evaluation Authorisation And Restriction Of Chemicals (REACH) Regulations\", \"Gitlab\", \"Artifactory\", \"Embedded Software\", \"Performance Systems Analysis\"]',\n", + " \"['English', 'Polish', 'Chamorro', 'Bengali']\"],\n", + " ['37',\n", + " 'data engineer ef education first - associate level',\n", + " 'Zürich',\n", + " 'Education Training Services',\n", + " 'www.ef.com',\n", + " '[[-7.13831335e-02 2.68712938e-01 5.48830986e-01 -4.31743711e-02\\n5.21940768e-01 -1.67066246e-01 4.45478074e-02 5.89715421e-01\\n-5.27753942e-02 -4.89541143e-01 -9.27176699e-02 -3.03665847e-01\\n-1.92509759e-02 1.33665353e-01 1.40386775e-01 3.85331780e-01\\n2.08407477e-01 1.43563733e-01 -2.08950177e-01 2.60225773e-01\\n1.23485737e-01 -1.18826583e-01 1.69246092e-01 7.96625495e-01\\n4.88331318e-01 -2.07768544e-03 -1.98247842e-02 -9.05586109e-02\\n-2.09431201e-01 -3.23135942e-01 4.59163219e-01 -5.85045330e-02\\n-1.80026218e-01 -3.68967324e-01 5.66360988e-02 -5.88107714e-03\\n-2.51680404e-01 -9.98953283e-02 -6.86669946e-02 1.97209686e-01\\n-4.87213641e-01 -2.98452914e-01 -1.55093381e-02 -4.09873612e-02\\n-3.11148912e-01 -3.80632073e-01 9.77071673e-02 3.67947854e-02\\n1.84638500e-01 1.02800563e-01 -4.32717264e-01 2.44622692e-01\\n-2.51461744e-01 -1.58534482e-01 2.56993383e-01 7.07744896e-01\\n-1.68754887e-02 -4.19182718e-01 -5.87125063e-01 -3.31701249e-01\\n1.58648759e-01 -9.95023400e-02 -1.40892677e-02 -2.77910113e-01\\n3.49790931e-01 2.48045269e-02 1.47327662e-01 2.40685910e-01\\n-6.85154259e-01 -6.83094636e-02 -2.23256782e-01 -2.86017153e-02\\n-2.40029916e-01 -1.45453392e-02 -3.41388822e-01 -9.27574709e-02\\n-1.55565903e-01 4.14132088e-01 4.27225754e-02 -1.30996769e-02\\n-1.47944003e-01 3.20776701e-01 -1.99172065e-01 4.37319696e-01\\n1.98036090e-01 2.80869067e-01 9.07239243e-02 2.61881948e-01\\n-3.86323720e-01 4.56956893e-01 1.30886525e-01 -3.28037798e-01\\n1.64370582e-01 6.92902282e-02 5.18994212e-01 -1.09715328e-01\\n1.11935712e-01 3.95040065e-02 -3.07159930e-01 3.28623056e-01\\n2.26784378e-01 -3.02808225e-01 1.18445635e-01 -9.15177464e-02\\n2.75544617e-02 -7.83294290e-02 1.22149296e-01 1.21135697e-01\\n-2.17962772e-01 3.96692365e-01 -5.71839046e-03 -2.28258803e-01\\n-9.52792987e-02 -5.46339333e-01 -7.99353141e-03 -1.18300999e-02\\n2.09644027e-02 7.82603323e-02 1.58882409e-01 1.96947828e-01\\n2.20907047e-01 -5.27852289e-02 1.53433830e-01 8.20567429e-01\\n-1.15729064e-01 2.87624858e-02 -3.65544707e-01 2.48024285e-01\\n5.38649522e-02 -3.51763725e-01 2.77504981e-01 1.74894050e-01\\n-4.04908918e-02 -1.52767166e-01 -1.86067089e-01 3.18166584e-01\\n-2.15057414e-02 -2.33161837e-01 -2.62625843e-01 2.13937521e-01\\n-5.19695990e-02 -3.47727090e-01 5.54340601e-01 8.26471671e-02\\n1.51873425e-01 -1.00771308e-01 -3.40677500e-02 -1.40321150e-01\\n-8.19023922e-02 3.80302742e-02 1.07732274e-01 -2.86382250e-02\\n-2.45429799e-01 -3.03641230e-01 -2.05550775e-01 6.61794320e-02\\n-2.77993590e-01 1.72421023e-01 -4.15852219e-02 -1.41670808e-01\\n2.59412378e-01 8.86371173e-03 -2.85456747e-01 2.97867745e-01\\n-1.53674692e-01 9.79248341e-03 -6.38451986e-03 3.80456299e-01\\n-2.63276577e-01 2.31363058e-01 -4.08444963e-02 -8.53994563e-02\\n5.64438283e-01 1.03420779e-01 1.14589408e-01 -1.02162883e-01\\n2.54717022e-01 4.62259129e-02 1.11438185e-01 1.44903317e-01\\n-7.10092902e-01 3.07486624e-01 -2.21159942e-02 -5.99461719e-02\\n1.79916009e-01 -1.00868776e-01 3.21888000e-01 -2.41313711e-01\\n6.19043072e-04 -9.98877361e-02 -2.78433561e-01 -2.65704662e-01\\n-1.21995308e-01 -8.79946649e-02 3.59849155e-01 -4.31571662e-01\\n-1.37589857e-01 2.01866716e-01 -4.76746887e-01 7.00860023e-02\\n9.44742784e-02 2.12313682e-01 1.78495303e-01 1.87152803e-01\\n-2.44722024e-01 -3.98013532e-01 1.10801257e-01 -3.03785920e-01\\n-2.17823133e-01 9.22078341e-02 -3.22812676e-01 1.95749447e-01\\n1.14573129e-01 1.41997576e-01 -1.64266780e-01 3.15525122e-02\\n-2.70967871e-01 -8.69031698e-02 1.52310625e-01 -9.12559219e-03\\n2.91625023e-01 6.99107125e-02 -3.57145488e-01 3.76401752e-01\\n-1.16416179e-01 5.27362704e-01 1.80935428e-01 -7.55879104e-01\\n4.55930114e-01 3.08919579e-01 -6.27308413e-02 -4.45452124e-01\\n5.85036278e-01 -2.09046766e-01 -4.08806838e-02 1.03890002e-01\\n-2.90055960e-01 -3.54207128e-01 2.21493304e-01 -1.06751956e-01\\n-2.14926898e-01 4.60274845e-01 4.31803800e-03 7.88214132e-02\\n1.87831357e-01 -1.56073689e-01 -9.34108868e-02 -9.47151519e-03\\n-2.05107816e-02 -1.56666800e-01 -4.77372229e-01 1.83835011e-02\\n-9.34585929e-02 -3.68961811e-01 -2.17227861e-01 -4.25705403e-01\\n-1.97244704e-01 -2.84532070e-01 -4.77311648e-02 1.88150033e-01\\n2.63245136e-01 -4.09824625e-02 9.84308198e-02 1.53723387e-02\\n-1.95845023e-01 -5.91944933e-01 -9.34703127e-02 7.79384524e-02\\n4.63563561e-01 2.23107547e-01 2.14337096e-01 -1.28215423e-03\\n1.50879368e-01 6.77174270e-01 -1.56564161e-01 -2.34799057e-01\\n1.40170127e-01 1.75392359e-01 9.98444855e-02 -1.30685970e-01\\n1.65973976e-01 2.75251418e-01 -2.91769654e-01 5.26739806e-02\\n-4.72565144e-02 -6.11450784e-02 3.45654070e-01 2.33171228e-02\\n-3.07081580e-01 -2.62908190e-01 5.55850156e-02 1.56849995e-02\\n-5.11130691e-01 -1.82921022e-01 5.78301668e-01 1.52453646e-01\\n1.23635463e-01 2.81612352e-02 8.34764242e-02 -1.02098500e-02\\n-5.94204180e-02 -1.54227093e-01 1.86254531e-01 5.52650541e-02\\n6.28160164e-02 1.71710938e-01 -5.18863536e-02 -6.17394626e-01\\n-3.13916326e+00 -1.27605498e-01 8.70268866e-02 -2.23092660e-01\\n2.21001789e-01 -1.28477111e-01 1.82656631e-01 -1.75802112e-02\\n-2.80088276e-01 2.08897870e-02 -1.42730489e-01 -9.79821905e-02\\n1.80087700e-01 1.76493883e-01 1.38014361e-01 3.01599711e-01\\n1.61845759e-01 -3.31117779e-01 -7.37131760e-02 4.71889198e-01\\n-1.47669032e-01 -6.29151940e-01 2.49845803e-01 4.69561033e-02\\n3.49155635e-01 1.54819503e-01 -4.21009243e-01 -1.89997628e-01\\n-2.28841797e-01 -1.95354596e-01 5.11328615e-02 -3.05028796e-01\\n-1.82475403e-01 2.09260032e-01 2.46516287e-01 -2.50196785e-01\\n2.25126401e-01 -4.45908338e-01 -7.02921376e-02 -5.01263738e-01\\n1.05987601e-01 -7.02100515e-01 3.90252061e-02 -9.39371586e-02\\n6.86094284e-01 -2.95523703e-01 9.63675976e-02 7.06995800e-02\\n9.67510790e-02 1.19490810e-01 9.00948569e-02 9.35866684e-02\\n-2.14881793e-01 -3.20908785e-01 -1.07006580e-01 -2.07213044e-01\\n5.64140558e-01 5.15030384e-01 -1.38298288e-01 -9.24741998e-02\\n1.29300535e-01 -2.90203065e-01 -4.80586827e-01 -3.05213213e-01\\n-1.26189753e-01 -9.50096622e-02 -7.49234438e-01 -4.99551147e-01\\n-1.14083238e-01 -1.59414485e-01 -8.46208036e-02 4.93285179e-01\\n-2.55941391e-01 -3.19047481e-01 -9.36704427e-02 -5.97325861e-01\\n3.25245112e-01 -1.13075592e-01 3.44722234e-02 -2.65649736e-01\\n-1.76887959e-01 -4.79935408e-01 1.09366938e-01 5.54132573e-02\\n-1.69700179e-02 -3.43682349e-01 8.82017165e-02 -1.47823736e-01\\n-2.26915210e-01 -6.03165329e-01 4.53798473e-01 1.25047445e-01\\n3.33470970e-01 2.02171013e-01 2.92658865e-01 -3.75372134e-02\\n3.05391252e-01 -2.64529828e-02 6.26453757e-02 -4.04180646e-01\\n9.04138684e-02 1.32592171e-02 4.54954416e-01 -1.53502911e-01\\n-1.97766829e-04 7.95999691e-02 -1.52082741e-01 -1.28754675e-01\\n3.31119746e-01 -9.92281269e-03 7.64469057e-02 -1.14746928e-01\\n2.44977131e-01 -3.09446484e-01 -2.09425151e-01 -6.05222536e-03\\n1.37601197e-01 5.31468451e-01 -3.53007801e-02 -4.13755596e-01\\n-1.79686502e-01 4.08746779e-01 -4.63801250e-02 1.18333444e-01\\n-2.23730862e-01 1.13763496e-01 -2.52912372e-01 2.69637018e-01\\n-2.78718509e-02 -2.26117522e-01 -3.15797627e-01 -1.83173761e-01\\n4.28928882e-02 3.45161378e-01 2.05633178e-01 2.18997508e-01\\n3.32254916e-02 -3.93077731e-01 -6.87589571e-02 2.38591313e-01\\n1.96190283e-01 5.15604436e-01 7.86670074e-02 -1.64035812e-01\\n1.31621305e-02 3.70633841e-01 -2.18468681e-01 2.90395141e-01\\n-2.37421796e-01 1.10710837e-01 -5.13327539e-01 -2.85359085e-01\\n-3.10449094e-01 -3.18995565e-01 1.70534283e-01 3.50027710e-01\\n1.12887070e-01 -6.62314966e-02 1.07193813e-02 -4.18144643e-01\\n2.86941379e-01 5.77094639e-03 1.50794238e-01 2.21258223e-01\\n9.35514048e-02 6.36898577e-01 1.54077202e-01 -2.36396238e-01\\n-1.74863771e-01 1.07087895e-01 -1.36547104e-01 -1.22860111e-02\\n4.81486917e-02 -4.78642851e-01 -1.21583499e-01 4.45488632e-01\\n1.36594296e-01 -1.82137117e-01 -9.58000943e-02 2.59965807e-01\\n-1.27143105e-02 -2.29163289e-01 -1.79696277e-01 6.18980527e-02\\n2.41429090e-01 1.33856624e-01 2.80803919e-01 -4.75254416e-01\\n6.59961207e-03 -7.48020336e-02 -4.07617204e-02 4.58080322e-01\\n2.26680059e-02 1.42067913e-02 -1.06166795e-01 -1.05436996e-01\\n3.73385161e-01 -1.11556262e-01 -8.60560238e-02 5.09797595e-02\\n1.02307603e-01 -2.50768691e-01 -4.23362404e-01 1.13883607e-01\\n-7.35991597e-02 -1.86456949e-01 -6.44132271e-02 1.71926588e-01\\n9.11646113e-02 1.05796441e-01 -5.75231612e-01 -2.11849734e-01\\n-2.14949906e-01 2.62124408e-02 -1.00850143e-01 -4.60794330e-01\\n-3.16246599e-02 -6.07812107e-02 -4.97432351e-01 1.97956875e-01\\n-2.18977720e-01 -4.28529158e-02 2.62351066e-01 2.73256488e-02\\n-3.28045189e-01 -5.87259717e-02 9.93866622e-02 2.53748715e-01\\n-2.47936323e-01 -2.53832012e-01 -7.88784549e-02 -9.66813445e-01\\n8.95514935e-02 4.75212336e-02 -1.68126404e-01 1.61822438e-01\\n-1.59288064e-01 -6.35768652e-01 1.31555945e-01 -3.65607709e-01\\n-2.67166346e-01 -8.22343901e-02 -1.74507141e-01 -4.73198175e-01\\n8.38323683e-02 4.99980301e-02 -2.54873902e-01 3.38549376e-01\\n-2.65259117e-01 2.65541703e-01 -1.41262308e-01 5.54067679e-02\\n2.20962912e-02 -2.62250602e-01 1.55997574e-01 -4.51870441e-01\\n-3.10551822e-01 -1.39656037e-01 -3.19957227e-01 -2.54593998e-01\\n-2.19257604e-02 -2.59118289e-01 -2.23030761e-01 9.88457352e-02\\n2.91177660e-01 8.41098651e-02 -1.15374498e-01 -1.59809843e-01\\n7.46977702e-02 -5.33654332e-01 9.09858048e-02 -1.14166833e-01\\n-5.65610602e-02 -1.65707082e-01 3.12940776e-01 1.77297257e-02\\n1.32765800e-01 -3.61309022e-01 4.66877818e-01 -3.46883267e-01\\n-3.54196429e-01 -6.42637461e-02 6.16060235e-02 -3.88318039e-02\\n3.34254920e-01 -4.38408792e-01 2.62832157e-02 3.56866837e-01\\n1.40200034e-01 1.70936808e-01 2.07970858e-01 -1.75544649e-01\\n-1.86026648e-01 3.39122087e-01 -4.99673784e-01 -1.20304562e-02\\n7.47456789e-01 7.01971054e-02 1.82522744e-01 2.13648006e-01\\n1.30306005e-01 1.94348395e-01 3.93598169e-01 6.85305074e-02\\n-2.08614364e-01 2.77723223e-01 3.75845358e-02 -5.12498677e-01\\n-2.73742285e-02 1.55909555e-02 -2.28356943e-01 -4.58390236e-01\\n6.10684872e-01 4.33689624e-01 -4.65060145e-01 -2.18137279e-01\\n-1.83053926e-01 -2.01842666e-01 1.09394066e-01 -7.99208134e-02\\n9.16358083e-02 -8.99005979e-02 3.86361003e-01 -6.32352754e-02\\n2.21016839e-01 5.28857827e-01 -1.28057778e-01 -2.32101157e-01\\n-5.34384921e-02 1.00591600e-01 -1.40818572e-02 4.34716314e-01\\n-2.29571342e-01 3.48156273e-01 5.59089631e-02 1.51447460e-01\\n-1.54795915e-01 7.38499910e-02 8.48646760e-02 6.97239907e-03\\n8.16447437e-02 1.73018903e-01 4.22664136e-01 3.75741690e-01\\n3.35442483e-01 3.80889952e-01 2.90468633e-01 4.76717688e-02\\n4.38380539e-01 4.09026742e-01 4.32644635e-01 1.39618129e-01\\n3.43482234e-02 9.28358361e-03 1.60197884e-01 6.86306506e-02\\n3.12051982e-01 2.57358909e-01 6.90622255e-02 9.46969986e-01\\n2.44098276e-01 2.37869844e-01 7.52016842e-01 -5.97580492e-01\\n-3.42552543e-01 -1.16324173e-02 4.27714765e-01 -6.05044127e-01\\n-5.65975942e-02 1.65098578e-01 -2.56243080e-01 1.50134608e-01\\n-4.60014254e-01 -3.49378169e-01 -6.31586090e-02 1.92720383e-01\\n-7.96000957e-02 -1.39946938e-01 -2.41793036e-01 1.49368078e-01\\n-6.48017228e-02 -9.06797424e-02 -5.36240458e-01 -1.89643174e-01\\n-9.18619037e-02 -1.68333188e-01 -1.63700432e-01 -1.73725769e-01\\n-2.14935139e-01 -2.39658326e-01 -9.19167418e-03 -3.50553468e-02\\n2.57400453e-01 -1.26432702e-01 7.88807347e-02 -2.17238739e-01\\n3.28027993e-01 2.07587048e-01 5.00584126e-01 -7.60600623e-03\\n1.81865185e-01 -2.44340435e-01 -2.25482523e-01 7.38184080e-02\\n2.28666022e-01 6.88113412e-03 8.66552591e-02 2.78624058e-01\\n-2.00570881e-01 -1.67664587e-01 1.27727315e-01 3.53889376e-01\\n-3.94326687e-01 4.02186811e-02 -2.54571959e-02 2.19157308e-01\\n6.57689795e-02 1.21368185e-01 -1.87020943e-01 1.50549933e-01\\n-2.47281700e-01 -3.92455041e-01 1.66152492e-01 -7.51631558e-02\\n-1.01014964e-01 5.29704690e-02 2.45454937e-01 1.69752434e-01\\n-3.15871954e-01 1.14148818e-01 -6.88738227e-02 1.78047195e-01\\n2.15988066e-02 2.87830561e-01 -2.20087335e-01 -1.90772191e-01\\n-2.95863628e-01 2.28187561e-01 -1.68326214e-01 6.93639368e-02\\n6.39170222e-03 4.02594477e-01 2.28410633e-03 -2.81913187e-02\\n5.03594518e-01 -1.87721044e-01 -2.00153977e-01 -2.87870377e-01\\n-2.18039900e-01 -1.29720658e-01 -7.76425600e-02 -1.31955951e-01\\n2.09464073e-01 -4.49019969e-01 -6.10463805e-02 -1.79197833e-01\\n-1.27301276e-01 -4.15583700e-01 8.53738487e-02 -1.39782622e-01]]',\n", + " 'EF Travel, the flights division of EF Tours, is currently looking for a Data Engineer to join our BI team in Zurich, Switzerland. We are an autonomous and dynamic BI team working on a multitude of technical solutions for EF’s flights department. We provide vital functions in the areas of technical development, business intelligence and innovation and everything we do has a direct impact on our business. We enjoy a fantastic work environment right on the doorstep to the Swiss Alps. As a Data Engineer your main focus will be to provide all the back-end development and architecture for supporting our operational and executive deliveries. We expect you to be forward thinker, innovative and ready for a position where you will get to make an impact from day one. The role Develop and architect new data solution using AWS cloud services Develop and optimize back-end systems and provide support to the front-end developers Maintain current Data Warehousing architecture and processes Implement structured and methodical ways to achieve high quality reporting Requirements Bachelor’s or Master’s degree in Computer Science or similar Minimum 2 years of working experience Good Knowledge in MSSQL, SSIS, SSAS and SSRS is a plus Good understanding of ETL process, dimensional modeling and data warehousing architecture Knowledge of different range of AWS Services and Big Data architecture Knowledge in Python or other scripting language Good analytical and problem solving skills Independent, self-motivated and comfortable in a fast-paced environment Fluent in English About EF Since 1965, we have helped millions of people transform their lives by opening the world through education. Today we are the world’s largest private education company - offering every imaginable way to learn a language, travel abroad, experience another culture, or earn an academic degree. We offer competitive salaries and a multicultural working environment. The position is situated in Zurich, Switzerland and you will be working with people from all over the world. What’s it like to work here? https://vimeo.com/111638911 and https://www.youtube.com/watch?v=fGlnMgNtivw',\n", + " '[\"Self-Motivation\", \"Imagination\", \"Problem Solving\", \"Operations\", \"Innovation\", \"Positivity\"]',\n", + " '[\"Computer Science\", \"Analytics\", \"Data Engineering\", \"Data Warehousing\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Maintainability\", \"AWS Directory Service\", \"Hostile Work Environment\", \"Extract Transform Load (ETL)\", \"Business Intelligence\", \"Cloud Services\", \"Dimensional Modeling\", \"Library For WWW In Perl\", \"SQL Server Integration Services (SSIS)\", \"Big Data\", \"End Systems\", \"Adapter Scripting Language\", \"Front End (Software Engineering)\", \"Technical Solution Design\", \"Back End (Software Engineering)\", \"Vimeo\", \"Business Development\"]',\n", + " \"['English', 'Aragonese', 'Sindhi', 'Komi', 'Kalaallisut']\"],\n", + " ['75',\n", + " 'software development engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " '[\"\"]',\n", + " '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " \"['English', 'Romanian', 'Pali']\"],\n", + " ['101',\n", + " 'data engineer (f/m)',\n", + " 'Zürich',\n", + " 'Publishing',\n", + " 'www.ringier.ch',\n", + " '[[-2.21339568e-01 3.32948804e-01 5.21537483e-01 -1.09061390e-01\\n3.77794385e-01 -8.46463665e-02 4.29063067e-02 2.67413437e-01\\n2.62118727e-02 -4.50310975e-01 1.63530670e-02 -3.19911480e-01\\n3.03424634e-02 1.26190424e-01 -9.65379737e-03 5.62466443e-01\\n9.97163728e-02 1.40056476e-01 -2.16456249e-01 2.88013935e-01\\n1.28198087e-01 -2.53529578e-01 9.98515114e-02 7.82235622e-01\\n4.80163842e-01 3.31212878e-02 -5.84156252e-02 2.12869067e-02\\n-1.98817372e-01 -2.11881116e-01 5.60689509e-01 7.23402128e-02\\n-8.20451230e-02 -2.36414388e-01 1.75992940e-02 1.33445963e-01\\n-2.47076631e-01 -6.09802641e-02 -1.36562198e-01 1.68517709e-01\\n-4.09348309e-01 -3.43740106e-01 -6.23729564e-02 -5.10225259e-02\\n-1.80153161e-01 -3.98119718e-01 -1.35800242e-01 -2.26904154e-02\\n9.06953439e-02 9.57558453e-02 -5.42363107e-01 3.08127731e-01\\n-2.63466150e-01 -1.45057470e-01 1.78189993e-01 6.71485841e-01\\n-5.67081980e-02 -4.23804283e-01 -4.76036668e-01 -2.96951145e-01\\n-1.59935467e-02 -5.41026331e-02 5.50490282e-02 -2.85341114e-01\\n2.62950748e-01 5.54916449e-03 -8.02627504e-02 3.57068032e-01\\n-7.26632953e-01 1.63797103e-02 -2.77980268e-01 -3.76063935e-03\\n-3.10728282e-01 2.38131527e-02 -3.23204637e-01 -1.75947353e-01\\n-1.23259068e-01 4.68127072e-01 1.48459494e-01 2.33665667e-02\\n-2.39144087e-01 2.75524080e-01 -1.81541547e-01 2.96964049e-01\\n2.53156871e-01 1.42507061e-01 2.18049750e-01 3.42153043e-01\\n-2.91039705e-01 2.90715694e-01 2.33685419e-01 -3.95796806e-01\\n2.77512014e-01 1.71331521e-02 3.28621089e-01 -3.50655913e-02\\n1.01223305e-01 1.02785453e-01 -2.07733572e-01 3.33759516e-01\\n3.46130192e-01 -2.29239359e-01 3.00393924e-02 -9.21131596e-02\\n4.71666344e-02 4.02891450e-02 7.65975639e-02 1.01677224e-01\\n-2.47157097e-01 3.11908245e-01 5.86005002e-02 -2.80121654e-01\\n-1.70500040e-01 -5.45684993e-01 -5.40200211e-02 1.31495073e-01\\n4.24584784e-02 1.64773688e-01 2.11145237e-01 1.28846884e-01\\n1.92167252e-01 -6.93221018e-03 1.28653601e-01 8.46912503e-01\\n-2.25401446e-02 9.75135423e-04 -3.51230055e-01 4.01724666e-01\\n9.24467817e-02 -2.96024442e-01 2.49374226e-01 7.74811283e-02\\n-1.03565184e-02 -2.36967742e-01 -3.29737186e-01 3.28192472e-01\\n-5.49943522e-02 -2.22263604e-01 -2.43997648e-01 5.54276928e-02\\n-3.22996452e-02 -2.79397845e-01 4.83805358e-01 1.38968736e-01\\n2.20500335e-01 -9.35575739e-02 2.39511505e-02 -2.21739963e-01\\n-6.05827607e-02 5.29258437e-02 -2.16957219e-02 -2.63793136e-05\\n-2.53477573e-01 -3.24348181e-01 -2.32102200e-01 1.80027336e-01\\n-2.86530375e-01 1.56430796e-01 -1.76612288e-01 -6.24089241e-02\\n2.58253604e-01 -1.28032416e-02 -3.54021847e-01 1.61346987e-01\\n-4.63946126e-02 -1.59522116e-01 -8.39224234e-02 3.92680466e-01\\n-2.41798371e-01 8.21949020e-02 6.32624775e-02 -2.48940170e-01\\n5.12867928e-01 1.13553628e-01 2.48042300e-01 4.16389368e-02\\n8.14519450e-02 -2.68385336e-02 1.06455930e-01 1.80490091e-01\\n-5.87882221e-01 3.81037861e-01 -9.26913545e-02 1.61094661e-03\\n1.39414266e-01 2.02149656e-02 3.24270874e-01 -2.21438572e-01\\n9.95086227e-03 -5.11142313e-02 -2.93721765e-01 -2.45416045e-01\\n-1.96389213e-01 4.72420454e-02 2.38479257e-01 -3.89330626e-01\\n-1.88524589e-01 2.53471255e-01 -5.20789087e-01 -1.37534618e-01\\n5.91073856e-02 1.13632254e-01 2.48622932e-02 9.18915048e-02\\n-2.72554547e-01 -5.33030391e-01 2.17961259e-02 -4.18742955e-01\\n-3.84004474e-01 -7.23593235e-02 -2.89564312e-01 1.83225960e-01\\n1.24636173e-01 1.18714713e-01 -1.68215305e-01 1.03726111e-01\\n-2.43515477e-01 2.58674808e-02 8.64855200e-02 1.74100101e-01\\n3.19960147e-01 9.46213827e-02 -4.64704573e-01 4.43769604e-01\\n-1.17641829e-01 5.16204774e-01 1.92195192e-01 -8.34389508e-01\\n5.05594909e-01 2.70900041e-01 2.21737707e-03 -2.84730107e-01\\n5.47165036e-01 -3.77018034e-01 -2.94009522e-02 5.52583672e-02\\n-3.08404595e-01 -1.93031043e-01 4.16879892e-01 -1.60771072e-01\\n-7.30689913e-02 3.98438036e-01 -9.81977116e-03 9.71471965e-02\\n3.19877446e-01 -2.30406001e-01 -2.66688019e-01 -5.80235757e-02\\n-7.54019842e-02 -9.18973461e-02 -4.55757618e-01 -4.72988598e-02\\n-2.54878372e-01 -4.14622545e-01 -4.37257849e-02 -4.15515095e-01\\n-8.69054720e-02 -2.31602862e-01 -1.20961785e-01 2.38178089e-01\\n8.33043456e-02 4.72117700e-02 8.90766904e-02 3.95443253e-02\\n-7.87479132e-02 -5.71414649e-01 -1.63192019e-01 1.66278347e-01\\n4.14086223e-01 1.55135542e-01 1.40395075e-01 1.41212745e-02\\n5.28006209e-03 6.21639371e-01 -4.23974171e-02 -3.55141282e-01\\n3.87218446e-02 1.90952003e-01 7.65133053e-02 -9.97724757e-02\\n6.13411888e-02 1.09303989e-01 -2.07727134e-01 -1.00893140e-01\\n-4.77455258e-02 -6.10857795e-04 4.09484416e-01 1.16450749e-01\\n-4.55549538e-01 -1.18185245e-01 4.81378213e-02 1.63738593e-01\\n-5.60742378e-01 -9.89570096e-02 5.23481250e-01 2.09725082e-01\\n1.13428019e-01 1.06557295e-01 1.38113052e-01 -7.81810284e-02\\n-3.17570925e-01 -8.90359879e-02 2.18938962e-01 1.45416245e-01\\n1.80541407e-02 3.15226205e-02 6.76288903e-02 -6.89363360e-01\\n-3.49819326e+00 -2.27846429e-01 1.05203032e-01 -2.01431349e-01\\n2.64721036e-01 -8.93038511e-02 1.84095979e-01 6.21491764e-03\\n-3.18670243e-01 1.48661345e-01 -8.73858556e-02 -1.22880444e-01\\n1.32736698e-01 1.71880350e-01 6.28521070e-02 3.90443653e-01\\n1.85975045e-01 -1.68408081e-01 -1.62490785e-01 2.36625612e-01\\n-3.59035432e-02 -6.82243049e-01 2.55661875e-01 6.27539083e-02\\n9.20788497e-02 6.61383495e-02 -2.57303923e-01 -1.68362744e-02\\n-2.34525412e-01 -3.07894498e-01 7.74410963e-02 -4.36295092e-01\\n-2.24128902e-01 1.55274764e-01 2.01178983e-01 -2.20401794e-01\\n-4.14236099e-04 -3.61388564e-01 -2.01708283e-02 -4.00004297e-01\\n1.68936998e-01 -5.08991659e-01 1.82269067e-01 -1.12593308e-01\\n7.25072026e-01 -2.93344438e-01 5.05022518e-02 3.73460129e-02\\n9.59067345e-02 1.66623086e-01 1.65567473e-01 8.96177813e-03\\n-2.02915952e-01 -3.87629747e-01 -6.40903860e-02 -1.35072052e-01\\n5.65366566e-01 4.81709898e-01 -7.94811919e-02 1.85338661e-01\\n6.00569062e-02 -1.72653407e-01 -5.35628676e-01 -3.60222280e-01\\n-1.37306467e-01 -1.46210209e-01 -7.93308854e-01 -4.67688978e-01\\n-1.78539962e-01 -2.24142715e-01 -1.31210640e-01 5.67625344e-01\\n-2.20824108e-01 -4.09496158e-01 -1.31385282e-01 -5.06641746e-01\\n3.77873272e-01 -2.10568205e-01 1.01162210e-01 -2.86374152e-01\\n-3.21356952e-01 -4.38999176e-01 5.07504158e-02 -2.50015948e-02\\n-1.48679510e-01 -1.67705491e-01 -1.07310839e-01 -1.05281472e-01\\n-3.07186276e-01 -4.85450804e-01 3.94733787e-01 1.01615176e-01\\n2.31039777e-01 1.66776702e-01 3.03924650e-01 1.96505878e-02\\n1.21979117e-01 -9.85476449e-02 -1.64920092e-03 -2.58918315e-01\\n7.13613778e-02 -2.23752093e-02 4.94889110e-01 -2.84882039e-01\\n1.34920999e-01 2.05075905e-01 -1.85510904e-01 -1.63400486e-01\\n3.54665458e-01 8.14579427e-03 8.15621093e-02 -5.56912161e-02\\n2.57211804e-01 -5.30502558e-01 -1.14387006e-01 -1.86770819e-02\\n6.47148192e-02 5.99013746e-01 1.51995895e-02 -5.13190150e-01\\n-8.75020474e-02 5.16825795e-01 3.52981798e-02 1.65443926e-03\\n-3.26047868e-01 1.24059571e-03 -3.34650934e-01 3.04876924e-01\\n5.52906580e-02 -2.23642007e-01 -3.15600842e-01 -2.74255782e-01\\n2.59401761e-02 4.03218091e-01 2.55355775e-01 3.71819884e-02\\n2.41028853e-02 -3.09636265e-01 -2.37869725e-01 7.62229264e-02\\n2.45881185e-01 4.01467651e-01 1.59338340e-01 -1.69465333e-01\\n8.06225240e-02 2.17729792e-01 -1.59622937e-01 1.71539590e-01\\n-2.58131862e-01 1.88464731e-01 -5.45787156e-01 -2.59933472e-01\\n-1.59535959e-01 -3.62506598e-01 1.83262199e-01 4.32456434e-01\\n1.03895321e-01 4.91809249e-02 1.58791095e-02 -4.02266711e-01\\n2.35944256e-01 1.53074533e-01 1.31053254e-01 1.87482640e-01\\n7.00065717e-02 6.28255665e-01 1.14772767e-02 -7.40514994e-02\\n-6.04153685e-02 -5.53627200e-02 -1.03521302e-01 -1.64980173e-01\\n6.22061305e-02 -3.83897841e-01 -1.37278780e-01 5.59531629e-01\\n1.39768735e-01 -2.00229481e-01 -1.65402815e-01 2.90638953e-01\\n-7.58429617e-03 -2.01506287e-01 -1.90818951e-01 2.70091176e-01\\n2.99268037e-01 1.17335550e-01 3.60481203e-01 -4.05456126e-01\\n-1.21399440e-01 -1.32686973e-01 -9.54687670e-02 5.01705289e-01\\n5.65772168e-02 1.28658161e-01 -1.40762672e-01 -1.47722796e-01\\n5.14989734e-01 -3.84491384e-02 -6.05077893e-02 6.82774633e-02\\n-2.77409144e-02 -2.18442231e-01 -4.14348871e-01 1.29939198e-01\\n1.02170948e-02 -3.34087849e-01 6.27580285e-02 -3.30391452e-02\\n-7.58014619e-02 1.33947209e-01 -7.91175187e-01 -3.56216729e-01\\n-2.33468816e-01 -1.38440803e-01 5.96513646e-03 -4.12874043e-01\\n-7.22120935e-03 -1.83802828e-01 -6.36002302e-01 3.11743140e-01\\n-1.25684723e-01 -1.38357162e-01 1.74343541e-01 1.51206210e-01\\n-2.63751537e-01 2.81110182e-02 1.17190868e-01 4.20114756e-01\\n-2.60737300e-01 -2.44021773e-01 -6.04926646e-02 -8.67284834e-01\\n2.32983977e-01 7.66754299e-02 -7.96165913e-02 1.75879076e-01\\n-1.22499041e-01 -6.62180483e-01 1.79554671e-01 -2.51656234e-01\\n-1.25518501e-01 -5.74263036e-02 -2.09781066e-01 -3.23630065e-01\\n1.77008227e-01 -4.35232669e-02 -1.90129921e-01 4.34391409e-01\\n-3.88299584e-01 2.41702184e-01 -1.21983975e-01 1.52090266e-01\\n7.09706768e-02 -1.58045590e-01 1.92421094e-01 -4.06230241e-01\\n-3.07778031e-01 -2.29302868e-01 -4.19364899e-01 -3.34486544e-01\\n5.64000476e-03 -3.11356783e-01 -1.79634362e-01 8.79900157e-02\\n3.92881662e-01 1.06424436e-01 -2.88364403e-02 -1.67616844e-01\\n4.42209654e-02 -4.04020041e-01 2.03330442e-01 -2.53501505e-01\\n-6.41944706e-02 -3.25883813e-02 1.36357561e-01 9.43893716e-02\\n5.09853214e-02 -2.65186250e-01 4.62744415e-01 -3.23369384e-01\\n-2.81673342e-01 -9.14836526e-02 1.18595056e-01 -2.26596966e-02\\n4.00288910e-01 -4.48341221e-01 -7.96478614e-02 2.14089558e-01\\n5.02420478e-02 1.17393821e-01 2.11538911e-01 -1.26804635e-01\\n-7.78661594e-02 3.38579804e-01 -5.02718866e-01 7.06494823e-02\\n7.12179959e-01 1.04502358e-01 8.65254626e-02 2.75037646e-01\\n1.82220697e-01 2.96827883e-01 5.16738355e-01 -1.42948136e-01\\n-1.38971820e-01 2.17981204e-01 -8.03170577e-02 -5.22959709e-01\\n-7.29427189e-02 -1.91294402e-01 -2.81325877e-01 -5.02703011e-01\\n7.10753441e-01 3.46759379e-01 -4.23972130e-01 -1.05844356e-01\\n-1.04819857e-01 -7.40377232e-02 2.33235434e-01 -9.89834070e-02\\n-6.25621229e-02 -1.84784830e-02 5.54472804e-01 -6.44599944e-02\\n3.07258725e-01 6.05535626e-01 -2.07907036e-01 -2.68513203e-01\\n1.56353898e-02 1.10986851e-01 2.85401680e-02 3.32397670e-01\\n-1.76442981e-01 4.10660714e-01 -4.02335525e-02 1.08071007e-01\\n-5.73339947e-02 1.64027914e-01 1.35240301e-01 8.85547847e-02\\n2.24580765e-01 4.75905053e-02 2.70630628e-01 4.94093090e-01\\n2.07514599e-01 4.85634655e-01 2.68373430e-01 3.62932496e-02\\n3.92612487e-01 5.46770394e-01 4.75398540e-01 1.58559814e-01\\n1.17776273e-02 8.95350873e-02 1.20444514e-01 -2.74913348e-02\\n2.72965521e-01 4.65625882e-01 9.45105627e-02 8.24150026e-01\\n1.85790762e-01 2.16900796e-01 6.03676021e-01 -6.79473698e-01\\n-3.54104161e-01 4.98929210e-02 4.82910931e-01 -4.15968925e-01\\n5.82246692e-04 2.39228383e-01 -3.25443923e-01 1.47082672e-01\\n-5.64764082e-01 -2.88306057e-01 -5.56352325e-02 -1.02394782e-01\\n-1.60656478e-02 -2.70199716e-01 -1.37667403e-01 1.48254529e-01\\n-6.60370588e-02 -2.06459269e-01 -2.88861722e-01 -2.61035818e-03\\n-2.48195484e-01 -5.73928952e-02 -1.15689360e-01 -6.84211701e-02\\n-4.79101576e-02 -2.95774519e-01 -7.50082955e-02 3.19442637e-02\\n3.44517231e-01 -1.04117833e-01 -2.20882185e-02 -9.18190256e-02\\n2.02205330e-01 2.10693434e-01 4.87831712e-01 5.29205203e-02\\n7.06225857e-02 -1.63221359e-01 -2.34478384e-01 6.76308796e-02\\n2.84108728e-01 8.46684817e-03 1.16170496e-02 2.86618382e-01\\n-2.61181176e-01 -9.51082334e-02 1.40366882e-01 2.12895036e-01\\n-3.98126006e-01 8.96667615e-02 -1.02220945e-01 2.82256633e-01\\n9.66871604e-02 1.24281123e-01 -1.35408431e-01 6.68396130e-02\\n-1.24607794e-01 -3.09622526e-01 3.85038227e-01 -1.89752221e-01\\n-1.61594927e-01 -1.41521264e-02 3.35014999e-01 1.18153639e-01\\n-2.83586919e-01 6.89553320e-02 -1.63958788e-01 2.34817803e-01\\n4.71427105e-02 2.98406303e-01 -3.31572831e-01 -7.19311982e-02\\n-2.96311289e-01 1.41357794e-01 -3.89475152e-02 1.60176635e-01\\n3.74267697e-02 3.71567458e-01 1.02716483e-01 9.39764306e-02\\n4.55278873e-01 -2.90516708e-02 -2.12267444e-01 -1.82375535e-01\\n-1.89192355e-01 -1.43871978e-01 5.38995080e-02 -7.99927488e-02\\n1.91612735e-01 -3.89604568e-01 4.60520685e-02 -1.26068369e-01\\n-1.88084766e-01 -4.25546080e-01 2.95584071e-02 -6.75224289e-02]]',\n", + " \"Your job Analyze data of online customers across Ringier's brands and make user behavior and intent comprehensible for business stakeholders Collaborate within a cross-functional international team to design and implement data engineering solutions Be comfortable with using PySpark based tooling for your daily routine Learn additional skills to design complex data processing and machine learning pipelines Communicate and collaborate with stakeholders in German and English Your profile Proficiency in Python and SQL, possibly Java or Scala Knowledge of PySpark for distributed computation Proven knowledge of development best practices Experience with Agile methodology and problem-centric solution design A pragmatic mindset, not afraid of making mistakes, and learning from them Fluency in German and English Our offer Experienced team of international data engineers Work on state of the art data engineering framework Flexible place of work Bring in your own ideas and be part of the decision making Ringier is a diversified media company with about 7,300 employees across 19 countries. Founded in 1833, Ringier manages leading brands in print, TV, radio, online and mobile media and runs successful print, entertainment and internet businesses. In a history that spans more than 180 years, Ringier stands for a pioneering spirit, independence, freedom of expression and diversity of information. Ringier is a Swiss family-owned business with head offices in Zurich. Susanne Jud HR Manager +41 44 259 6344 www.ringier.com\",\n", + " '[\"Collaboration\", \"Decision Making\", \"Communications\", \"Management\"]',\n", + " '[\"Tooling\", \"Machine Learning\", \"Branding\", \"Good Agricultural Practices\", \"Data Engineering\", \"Distributed Computing\", \"Scala (Programming Language)\", \"Mobile Media API\", \"Pyspark\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"Pipelining\", \"Cross-Functional Coordination\", \"Agile Methodology\", \"Library For WWW In Perl\", \"Lead Management\", \"Electronic Data Processing\", \"Solution Design\", \"Additives\", \"Java (Programming Language)\", \"SQL (Programming Language)\"]',\n", + " \"['English']\"],\n", + " ['75',\n", + " 'ml/python software engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.49163359e-01 3.14084470e-01 3.64707768e-01 5.80333211e-02\\n6.00441873e-01 -1.61262199e-01 2.54132915e-02 3.79365206e-01\\n-8.09688866e-02 -3.43437880e-01 -1.04865693e-01 -1.74497992e-01\\n-1.34012535e-01 1.96796702e-03 1.78543970e-01 5.23628891e-01\\n3.63971889e-01 -6.05085492e-03 -2.53678411e-01 4.05065954e-01\\n1.27595589e-01 -4.35134359e-02 -1.18463583e-01 6.16652250e-01\\n4.56151485e-01 1.09376749e-02 -5.36645837e-02 9.44084674e-02\\n-3.33077997e-01 -2.68804431e-01 4.03615206e-01 3.89328972e-02\\n-7.99723566e-02 -2.19903275e-01 1.28668144e-01 2.00566858e-01\\n-1.43104151e-01 1.24045514e-01 -1.30233347e-01 2.54108608e-01\\n-4.01607245e-01 -2.45199293e-01 4.82799411e-02 9.03225467e-02\\n-2.69676268e-01 -3.72830242e-01 6.17582463e-02 -9.79272649e-02\\n1.06700689e-01 1.06493831e-01 -4.67626363e-01 4.36670631e-01\\n-2.23314658e-01 -2.16320872e-01 3.82229894e-01 6.27578199e-01\\n8.65668505e-02 -5.95980465e-01 -3.57583106e-01 -4.00947183e-01\\n1.17263719e-01 -6.38486817e-02 4.44103964e-02 -2.49254435e-01\\n3.46056908e-01 5.54160625e-02 4.12586890e-02 3.34924877e-01\\n-8.03884804e-01 -1.02498911e-01 -3.57652873e-01 2.66613755e-02\\n-4.20006514e-01 7.30085932e-03 -4.60763305e-01 -1.15383230e-01\\n-4.46291044e-02 3.88534337e-01 -1.56232566e-01 5.86728789e-02\\n-1.54774562e-01 2.90446877e-01 -2.31523022e-01 1.86985716e-01\\n2.85547584e-01 2.08849490e-01 3.19651365e-01 3.82584184e-01\\n-4.06945795e-01 4.03515458e-01 1.91525087e-01 -2.92311072e-01\\n2.88874805e-01 1.50882408e-01 5.15000820e-01 1.43746600e-01\\n7.76596218e-02 1.73361897e-01 -2.52707660e-01 2.12593555e-01\\n1.68757141e-01 -2.93303698e-01 4.04212959e-02 -5.16856909e-02\\n-6.24667071e-02 1.34800952e-02 6.87409639e-02 2.83724785e-01\\n-3.57377619e-01 4.62637126e-01 1.34847790e-01 -2.47979835e-01\\n-3.16451564e-02 -6.53710783e-01 -6.87721074e-02 -4.33219923e-03\\n5.28107919e-02 2.67076284e-01 2.18314350e-01 2.20613971e-01\\n1.36939555e-01 -1.03563771e-01 2.08402023e-01 9.00764406e-01\\n-9.05615613e-02 6.09292723e-02 -2.99578130e-01 2.67138332e-01\\n2.31446728e-01 -3.17714363e-01 1.11569539e-01 2.66914040e-01\\n8.23811144e-02 -5.16546592e-02 -3.40210855e-01 4.34212834e-01\\n-2.26930991e-01 -1.86243832e-01 -3.87408942e-01 1.68894351e-01\\n-2.14440763e-01 -4.85469788e-01 5.88727355e-01 -3.89927737e-02\\n2.05382764e-01 -3.97503823e-02 -3.16950935e-03 -9.18699522e-03\\n-1.34155378e-01 3.56201917e-01 1.60632133e-01 2.04492122e-01\\n-3.90403837e-01 -1.44006923e-01 -1.46925509e-01 2.78628290e-01\\n-2.76517481e-01 1.45484909e-01 -2.09957764e-01 -1.21685170e-01\\n2.32180357e-01 1.95545536e-02 -4.12321687e-01 1.33197412e-01\\n-6.14549629e-02 -3.13329339e-01 -4.00939323e-02 3.46846581e-01\\n-1.06471211e-01 3.23107570e-01 -8.21453482e-02 -1.89909145e-01\\n6.97710454e-01 1.61521852e-01 1.56913519e-01 -3.34444866e-02\\n2.97933578e-01 -5.51402681e-02 3.61384839e-01 1.50010020e-01\\n-6.66416705e-01 3.82043779e-01 -6.98187351e-02 -1.77111655e-01\\n7.23277703e-02 5.08367606e-02 4.42986786e-01 -4.12957400e-01\\n-5.77706248e-02 -2.26478934e-01 -2.61487901e-01 -3.00058633e-01\\n-4.48181212e-01 -1.73914563e-02 3.80759984e-01 -2.94433177e-01\\n-3.34663577e-02 2.25680158e-01 -6.72381639e-01 -8.91905650e-02\\n2.41310060e-01 8.94189402e-02 5.73156737e-02 1.39903337e-01\\n-4.27228026e-02 -6.79016650e-01 1.11169823e-01 -5.45793891e-01\\n-5.41462779e-01 1.22610077e-01 -3.26597184e-01 2.45064348e-01\\n-2.91829580e-03 4.15010937e-02 -8.90819430e-02 2.33325064e-01\\n-3.77438098e-01 -4.03412133e-02 1.74494639e-01 5.38794547e-02\\n2.93211788e-01 4.92796451e-02 -5.31648338e-01 4.55382615e-01\\n-1.02561221e-01 5.28831542e-01 1.84248149e-01 -8.19499969e-01\\n5.77446401e-01 2.26599827e-01 1.97210275e-02 -2.40463838e-01\\n5.92460930e-01 -2.68032163e-01 -9.39456224e-02 1.97791919e-01\\n-2.36410260e-01 -2.80915827e-01 2.73868769e-01 -2.43679374e-01\\n-3.13475519e-01 5.86520374e-01 1.67158589e-01 1.47657588e-01\\n3.63559365e-01 -2.29543507e-01 -9.63465124e-02 1.80801183e-01\\n-1.67004809e-01 -1.84895575e-01 -4.58984822e-01 1.58164334e-02\\n-5.01556247e-02 -4.94101316e-01 -2.47741997e-01 -3.66687626e-01\\n-1.53590381e-01 -4.04171944e-01 -1.30767480e-01 3.53851169e-01\\n1.39713988e-01 1.72469243e-01 3.04310508e-02 -1.21947974e-01\\n-8.89321789e-02 -6.99363708e-01 -1.50943622e-01 1.52132297e-02\\n3.54313552e-01 3.04853112e-01 2.65872423e-02 -1.11676343e-01\\n1.31180221e-02 4.80660796e-01 -4.85657007e-01 -3.44989091e-01\\n1.50084332e-01 2.28906665e-02 -1.24205910e-01 -1.14776492e-01\\n2.74349712e-02 3.48521292e-01 -2.63965428e-01 1.06118590e-01\\n-1.43578634e-01 -3.41413803e-02 3.12321901e-01 -2.53914464e-02\\n-1.98603094e-01 -2.34433383e-01 -9.74772424e-02 2.64567822e-01\\n-5.52591264e-01 -2.81307995e-01 6.02342010e-01 2.73904532e-01\\n2.91618675e-01 1.62670210e-01 2.89248258e-01 -2.06722230e-01\\n-2.57179081e-01 -3.05124968e-01 2.41677418e-01 1.37188211e-01\\n1.36716530e-01 1.48267001e-01 -1.03511304e-01 -5.53967237e-01\\n-3.19049025e+00 -1.47714466e-01 2.58898973e-01 -2.59594589e-01\\n1.91307276e-01 -6.10467680e-02 6.49677888e-02 6.12024404e-02\\n-4.87219572e-01 -8.17801654e-02 -1.51107907e-01 -2.06804618e-01\\n2.84399907e-03 4.64475065e-01 1.89402193e-01 7.79852122e-02\\n1.10592954e-01 -3.29658717e-01 -7.82383978e-02 4.00868744e-01\\n-4.67631668e-02 -7.66878426e-01 -3.14538181e-03 6.38126805e-02\\n2.44748130e-01 2.19557971e-01 -3.93169403e-01 -8.79843161e-02\\n-2.12834567e-01 -2.53127992e-01 1.06562428e-01 -1.57773927e-01\\n-2.58890241e-01 3.19953799e-01 1.25308543e-01 1.63862519e-02\\n3.95528367e-03 -2.44862869e-01 4.03272696e-02 -4.25916821e-01\\n-3.48628126e-03 -6.54769838e-01 -5.95238060e-02 -8.30344111e-02\\n6.62001729e-01 -2.41514027e-01 2.60789484e-01 6.11857101e-02\\n1.60000131e-01 6.24833629e-02 -4.37820293e-02 5.82462773e-02\\n-3.49894434e-01 -2.87439078e-01 -7.39851817e-02 -1.33494705e-01\\n6.97495282e-01 4.72929955e-01 -2.49376982e-01 -7.02775968e-03\\n1.15340911e-01 -4.21354711e-01 -3.09253007e-01 -3.74325961e-01\\n-3.04906368e-01 -1.32483378e-01 -6.81411028e-01 -4.91096318e-01\\n-1.09966114e-01 -9.96744260e-02 -4.88143042e-02 6.33725822e-01\\n-3.36152166e-01 -3.68094683e-01 -3.16020288e-02 -6.04015827e-01\\n1.35022208e-01 -1.97170511e-01 5.32343946e-02 -1.13246493e-01\\n-2.73159862e-01 -4.95556444e-01 1.29036248e-01 6.46906421e-02\\n-1.60349533e-01 -6.06457703e-03 6.25389535e-03 -1.74359873e-01\\n-4.55632448e-01 -5.34360230e-01 3.98889691e-01 1.16429791e-01\\n3.58131826e-01 1.96568459e-01 4.39707607e-01 7.91330114e-02\\n3.11552465e-01 -1.08976096e-01 8.92425925e-02 -4.84478474e-01\\n3.44005711e-02 -4.53140624e-02 7.60304868e-01 -2.68610239e-01\\n-1.48582105e-02 1.56844452e-01 -2.67556340e-01 -1.03180684e-01\\n5.10530949e-01 8.84087980e-02 5.99271879e-02 -1.27759039e-01\\n3.25308919e-01 -4.74685520e-01 -1.99095398e-01 1.82149231e-01\\n7.06362398e-03 7.55147338e-01 1.45299733e-02 -3.40281427e-01\\n-2.04340622e-01 4.57371473e-01 -1.60522580e-01 -6.97832480e-02\\n-9.49543938e-02 3.36248800e-02 -7.46503025e-02 2.33224928e-01\\n1.82913825e-01 -2.57232457e-01 -1.48486048e-01 -6.00426719e-02\\n-3.73654552e-02 2.83716917e-01 1.92880467e-01 5.40270284e-03\\n-1.25262976e-01 -2.67888844e-01 -6.01253025e-02 1.79011583e-01\\n2.94364393e-01 3.20824206e-01 9.55512077e-02 -3.07621121e-01\\n-9.02656019e-02 2.77813524e-01 -2.51340598e-01 2.12392852e-01\\n-1.62709042e-01 1.05196901e-01 -5.69525659e-01 -1.39065564e-01\\n-2.11938262e-01 -4.68668699e-01 2.34923348e-01 3.45501393e-01\\n1.07988693e-01 -4.30891104e-02 1.69325411e-01 -4.88810986e-01\\n3.76997054e-01 1.72509372e-01 1.73130557e-01 9.83407944e-02\\n-1.31362796e-01 4.87289011e-01 -5.90454973e-02 -1.62233725e-01\\n-6.72750324e-02 4.03043292e-02 -2.29303494e-01 -3.49381268e-01\\n1.50444448e-01 -5.01702785e-01 -1.73878044e-01 5.06745696e-01\\n1.81298748e-01 -1.72038704e-01 -3.25680882e-01 1.24446601e-01\\n1.65183514e-01 -4.23293054e-01 -1.98736772e-01 -1.16494782e-02\\n2.59249479e-01 7.86112994e-02 2.34833121e-01 -4.11526918e-01\\n7.61897117e-03 -2.95280479e-02 -1.30555466e-01 3.12307090e-01\\n1.18235610e-01 9.62836593e-02 -2.36173123e-01 -2.79555712e-02\\n4.67645407e-01 -8.50977972e-02 -3.58585678e-02 1.09293526e-02\\n8.43944177e-02 -3.28352779e-01 -4.98702407e-01 -1.23860747e-01\\n-5.51911592e-02 -1.67240396e-01 5.03505440e-03 -4.14620489e-02\\n2.91055953e-03 7.77740628e-02 -5.98726094e-01 -2.75782526e-01\\n-3.85677278e-01 -1.05309337e-01 6.39078692e-02 -3.35774988e-01\\n-1.16239160e-01 -4.74526882e-02 -5.15209734e-01 2.27856413e-01\\n-1.00528404e-01 2.49152929e-02 1.90026924e-01 9.07843038e-02\\n-2.32191175e-01 -2.15933353e-01 1.60465941e-01 1.96255401e-01\\n-2.73414403e-01 -2.11932048e-01 -9.29146856e-02 -1.01274836e+00\\n6.97700307e-02 -9.47854519e-02 -8.85004327e-02 -5.67508861e-02\\n-2.39365827e-02 -6.03027701e-01 1.15964867e-01 -5.75515926e-01\\n-4.04462144e-02 1.05820581e-01 -1.72489449e-01 -3.84050727e-01\\n1.62224710e-01 -1.40869841e-01 -3.45568478e-01 3.85525048e-01\\n-4.83010232e-01 3.25107068e-01 3.05429157e-02 3.50847878e-02\\n-5.32507822e-02 -2.15609044e-01 1.43314496e-01 -2.09454671e-01\\n-3.76134247e-01 -2.30639592e-01 -2.64637202e-01 -2.36364558e-01\\n2.52317209e-02 -3.88619542e-01 -2.00080007e-01 6.05012029e-02\\n2.74724722e-01 4.20605689e-02 -7.73740634e-02 -2.02550843e-01\\n9.96947959e-02 -5.33418238e-01 6.65671825e-02 -3.34227145e-01\\n1.09379403e-02 -5.08236066e-02 3.19845289e-01 5.78781143e-02\\n1.95160970e-01 -3.15323085e-01 5.26247442e-01 -2.70936131e-01\\n-3.60444427e-01 -4.37920801e-02 9.55913439e-02 -5.42933196e-02\\n3.04352552e-01 -5.01784563e-01 3.08299288e-02 3.51767570e-01\\n-2.15863853e-04 1.09622881e-01 2.15972319e-01 -1.22642636e-01\\n-5.80896474e-02 2.80040354e-02 -4.25278127e-01 4.61530574e-02\\n7.91768491e-01 2.91177511e-01 1.49225652e-01 1.23727039e-01\\n1.43600136e-01 3.76013130e-01 4.82864648e-01 -2.75875926e-02\\n-1.45115610e-02 2.56706893e-01 5.04822955e-02 -5.33030033e-01\\n-1.14602663e-01 -6.07077032e-02 -1.76234365e-01 -3.13694805e-01\\n6.14581168e-01 3.80474180e-01 -3.42166752e-01 -4.20128286e-01\\n-4.92065353e-03 -1.82019055e-01 3.50263357e-01 1.15916140e-01\\n-2.92816255e-02 -1.46983117e-01 5.57274103e-01 -1.27387568e-02\\n2.78643787e-01 5.00017464e-01 -1.63258865e-01 -3.39902788e-01\\n-2.01572888e-02 2.43071094e-01 5.60780801e-02 4.09322649e-01\\n-1.28830150e-01 2.85187423e-01 -1.17070928e-01 7.16564208e-02\\n-5.99067882e-02 2.36542597e-02 2.47224167e-01 8.41332451e-02\\n2.19486251e-01 1.42040864e-01 5.11807382e-01 5.71679235e-01\\n8.61040652e-02 4.30042177e-01 3.00014555e-01 2.71577779e-02\\n2.94939846e-01 5.66033840e-01 3.77901465e-01 9.00142416e-02\\n5.89973386e-03 2.31804639e-01 1.91595167e-01 -6.74095452e-02\\n3.49986374e-01 2.95673519e-01 1.71077356e-01 8.65443647e-01\\n2.33237714e-01 3.72581095e-01 7.36130118e-01 -7.80610323e-01\\n-3.31890106e-01 3.46272066e-02 6.75240874e-01 -3.98325831e-01\\n-1.26285717e-01 1.59774736e-01 -2.96309650e-01 3.64302874e-01\\n-5.33288360e-01 -7.09763095e-02 3.83070745e-02 1.96871776e-02\\n1.12540030e-03 -9.16944966e-02 -2.06769988e-01 -1.06821880e-01\\n-2.35700935e-01 -1.66093931e-01 -3.38923931e-01 -2.88850307e-01\\n-3.11545193e-01 -1.37366308e-02 -6.12773262e-02 -1.03624590e-01\\n-1.86534122e-01 -2.92270541e-01 -9.50043052e-02 1.02124386e-01\\n3.91522378e-01 -2.34775990e-01 -4.89131957e-02 -3.04298904e-02\\n1.04435802e-01 2.33500063e-01 6.26181960e-01 -8.06044340e-02\\n1.07824579e-01 -1.68384328e-01 -1.94078282e-01 4.27446030e-02\\n-3.51046957e-03 -3.55074182e-02 1.52000800e-01 4.96149659e-01\\n-3.58974278e-01 -1.53134078e-01 5.40176965e-03 3.59600008e-01\\n-4.53293949e-01 -1.20604150e-01 -6.41102493e-02 2.04001948e-01\\n-4.23039533e-02 1.77045867e-01 -2.60311991e-01 -2.12720577e-02\\n-6.87193796e-02 -5.24123013e-01 4.03015494e-01 -1.02398247e-01\\n-1.70051977e-01 1.83997750e-01 2.21702218e-01 2.52471417e-01\\n-1.59770563e-01 -8.70778412e-02 -1.12682171e-01 2.02126145e-01\\n-8.94699395e-02 4.47417885e-01 -6.15893416e-02 -3.36194068e-01\\n-3.45672905e-01 2.48686954e-01 -1.03860885e-01 1.21401943e-01\\n-1.43946305e-01 3.68736923e-01 -8.79505929e-03 1.15514174e-01\\n3.05641174e-01 1.59734994e-01 -2.08919600e-01 -1.96387544e-01\\n-6.42749742e-02 -1.47936881e-01 3.97927165e-02 1.02228986e-03\\n1.43676177e-01 -3.57327700e-01 -4.04963680e-02 -2.58838892e-01\\n-9.73265097e-02 -3.30183804e-01 -1.81611985e-01 1.20955519e-01]]',\n", + " 'Job Informationen Responsibilities Design, implement, deploy and maintain machine learning algorithms and infrastructure, from training to prediction Create and maintain technical documentation Software testing and quality assurance Evaluate and identify new technologies Your profile: A Master’s or Bachelor’s Degree in data science, computer science, econometrics, applied mathematics, statistics, or another relevant discipline with a strong foundation in quantiative methods, modeling, and machine learning/AI (or equivalent experience) Extracurricular projects and experiences that demonstrate your interest in data analysis/machine learning and/or software design and implementation Ability to manage large datasets and advanced experience in the corresponding software packages and programming languages (strong skills in Python and SQL are a requirement) Experience working with Docker, web servers and RESTful applications, as well as having familiarity with continuous integration and deployment (CI/CD). Knowledge of Django REST Framework is an advantage. Strong interest in real-world problems and analytical skills to come up with workable solutions A team player who loves to work in a highly diverse team and across functions and geographies You are reliable, curious, open-minded and goal oriented, while striving to deliver operational excellence and superior quality. Benötigte Skills Machine Learning Python Python Mathematik SQL',\n", + " '[\"Analytical Skills\", \"Goal Oriented\", \"Infrastructure\", \"Reliability\", \"Quality Assurance\"]',\n", + " '[\"Managing Large Accounts\", \"Web Servers\", \"Python Server Pages\", \"KM Programming Language\", \"Computer Science\", \"Statistics\", \"Prediction\", \"Machine Learning\", \"Continuous Integration\", \"Python (Programming Language)\", \"Maintainability\", \"Dataset\", \"Django (Web Framework)\", \"Machine Learning Methods\", \"Econometrics\", \"Docker (Software)\", \"Machine Learning Algorithms\", \"Operational Excellence\", \"Technical Documentation\", \"Software Design\", \"Applied Mathematics\", \"Software Testing\", \"Algorithms\", \"SQL (Programming Language)\", \"Data Analysis\"]',\n", + " \"['English', 'Polish', 'Chichewa']\"],\n", + " ['107',\n", + " 'software engineer',\n", + " 'Bern',\n", + " '',\n", + " '',\n", + " '[[-1.53882533e-01 2.63870209e-01 4.88151789e-01 2.52115559e-02\\n4.95075524e-01 -1.91365361e-01 -1.51760201e-03 3.19536984e-01\\n-4.94922251e-02 -6.43859863e-01 8.34249929e-02 -3.04658920e-01\\n-1.60542279e-01 8.98646042e-02 1.20832138e-02 4.28401291e-01\\n2.84009874e-01 1.29871055e-01 -1.10273458e-01 4.00190949e-01\\n1.95536446e-02 -1.54743165e-01 8.77800733e-02 8.88015628e-01\\n3.95626843e-01 -6.25001639e-02 -5.91580160e-02 -1.08262012e-02\\n-2.20071897e-01 -1.83913097e-01 4.02476549e-01 7.64426291e-02\\n-1.18547112e-01 -4.90477622e-01 1.26052871e-01 1.00940898e-01\\n-1.95412114e-01 -7.06147850e-02 -7.74268359e-02 1.83706075e-01\\n-5.04106998e-01 -2.79322982e-01 -5.80128431e-02 -1.47425652e-01\\n-3.46317977e-01 -4.72057939e-01 -9.46814716e-02 -4.93847728e-02\\n1.77768558e-01 5.41233607e-02 -3.77035081e-01 2.86333025e-01\\n-3.28801185e-01 -1.08754158e-01 3.04627955e-01 6.61425054e-01\\n7.70932995e-04 -3.55781198e-01 -6.35579050e-01 -3.76291156e-01\\n5.28824404e-02 -1.39447182e-01 8.48922208e-02 -4.67091084e-01\\n2.24996597e-01 2.53708251e-02 6.94342330e-02 3.15816283e-01\\n-7.35329866e-01 -4.68109138e-02 -3.86861712e-01 -2.66286075e-01\\n-3.29351753e-01 -1.55688763e-01 -4.03083563e-01 -1.67274192e-01\\n-1.52655989e-01 4.59137082e-01 1.71818584e-01 3.74501646e-02\\n-2.02720970e-01 3.07639003e-01 -3.53897035e-01 4.80775833e-01\\n1.35314167e-01 1.19210973e-01 2.84935266e-01 3.52147341e-01\\n-4.25153852e-01 4.19908643e-01 2.14616179e-01 -4.97510195e-01\\n3.48596275e-01 1.01928800e-01 3.84683728e-01 -9.68960077e-02\\n2.65881360e-01 8.12709183e-02 -2.67805487e-01 4.17369455e-01\\n3.77330065e-01 -3.48778725e-01 1.84264295e-02 -2.30457872e-01\\n1.23268366e-01 -4.26314659e-02 2.09389538e-01 1.76381171e-01\\n-2.06470847e-01 4.15781796e-01 2.64632031e-02 -2.85423815e-01\\n-2.44928405e-01 -2.89042771e-01 6.01315275e-02 4.32465076e-02\\n4.38337103e-02 7.18712509e-02 3.12845588e-01 3.39649245e-02\\n8.35989118e-02 -3.95208858e-02 8.38936642e-02 7.85172105e-01\\n-7.79538229e-02 7.82101974e-03 -4.47693169e-01 3.41467321e-01\\n-2.26825476e-03 -4.01868880e-01 3.49400878e-01 1.82769090e-01\\n-1.63061082e-01 -2.66907036e-01 -1.31818384e-01 3.86667758e-01\\n-1.42407771e-02 -2.64844239e-01 -3.20330292e-01 2.12862596e-01\\n4.73220721e-02 -3.70581448e-01 7.21339941e-01 1.42088950e-01\\n2.06417531e-01 -9.66842026e-02 -1.73619706e-02 -1.30269423e-01\\n-8.99937898e-02 6.02008142e-02 2.18564011e-02 1.74776167e-01\\n-2.20179051e-01 -3.60606551e-01 -2.27905929e-01 1.54578388e-01\\n-5.21892071e-01 2.50174135e-01 -3.70247029e-02 7.59117007e-02\\n3.24722528e-01 -3.32791246e-02 -2.31193885e-01 2.79246658e-01\\n-4.83210310e-02 1.69240311e-03 7.04399794e-02 3.76876891e-01\\n-2.09797546e-01 1.47318229e-01 -3.72700952e-03 -7.05282539e-02\\n6.93809152e-01 2.95297205e-01 2.20294714e-01 -7.59942085e-02\\n3.05949807e-01 5.68782352e-03 4.24804762e-02 1.12591133e-01\\n-6.56593382e-01 3.53900492e-01 -1.89795643e-01 -1.04694016e-01\\n3.84128094e-02 -9.23902020e-02 1.71208829e-01 -1.26848400e-01\\n2.13514697e-02 -1.12590641e-01 -2.55817890e-01 -3.02105635e-01\\n-1.24459989e-01 -8.13156217e-02 3.93843263e-01 -6.24008894e-01\\n-2.84860194e-01 2.68713295e-01 -5.86710453e-01 -6.01960309e-02\\n6.76720142e-02 1.39291584e-01 1.91825464e-01 9.37650651e-02\\n-8.06331187e-02 -4.00122583e-01 1.00973807e-01 -4.88851666e-01\\n-2.63548851e-01 3.69608328e-02 -2.72876531e-01 1.14974663e-01\\n2.18791515e-01 1.69776194e-02 -2.23309904e-01 2.15999484e-01\\n-1.93818286e-01 -8.66953433e-02 9.74141806e-02 -2.73032878e-02\\n2.95683384e-01 2.70511676e-02 -4.41613734e-01 3.36604565e-01\\n-6.30757064e-02 5.37083745e-01 1.93888992e-01 -1.01925671e+00\\n5.47991395e-01 4.40819114e-01 -1.74126089e-01 -3.59045535e-01\\n3.98788840e-01 -3.36818814e-01 -3.38978413e-03 7.40788728e-02\\n-2.49938592e-01 -3.07271719e-01 2.36879677e-01 -5.52120879e-02\\n-2.30720878e-01 3.93204629e-01 -5.54978773e-02 2.98110306e-01\\n1.59084171e-01 -2.08882645e-01 -2.25363642e-01 -5.59524186e-02\\n-6.96942210e-02 -2.05586255e-01 -6.43625677e-01 -4.59931940e-02\\n-1.01485655e-01 -3.80824208e-01 -1.03380501e-01 -5.37949324e-01\\n-2.56865621e-01 -3.81752014e-01 -1.66475356e-01 1.66820049e-01\\n3.20500553e-01 9.20575261e-02 -2.24113852e-01 2.23685056e-02\\n-3.17761600e-02 -5.57120204e-01 -7.55672008e-02 1.85128674e-01\\n4.65644032e-01 2.64052421e-01 6.93866760e-02 1.92111619e-02\\n1.94350541e-01 7.09574282e-01 -2.81212151e-01 -1.71481997e-01\\n1.16309315e-01 2.86556482e-01 7.22967312e-02 -2.74559170e-01\\n9.18500125e-02 3.61092567e-01 -2.66036332e-01 2.79130489e-02\\n2.14210406e-01 -1.10016063e-01 5.05476236e-01 1.80882126e-01\\n-4.86058861e-01 -2.11925209e-01 -4.61526215e-03 4.99481075e-02\\n-5.74764013e-01 -3.19701731e-01 7.61150360e-01 1.95639312e-01\\n1.43551171e-01 9.80133265e-02 9.17920619e-02 6.83723763e-02\\n-1.89725846e-01 -7.12844282e-02 3.81130636e-01 9.25659686e-02\\n2.76741236e-01 1.65001765e-01 9.32647511e-02 -6.44334614e-01\\n-3.45551252e+00 -2.25779206e-01 1.46928594e-01 -2.21555501e-01\\n1.41557120e-02 -9.70263630e-02 9.44638327e-02 -6.48523122e-02\\n-2.57870257e-01 -1.11577280e-01 -1.85125828e-01 -2.06123263e-01\\n1.31072387e-01 9.12004411e-02 1.21209204e-01 2.97994077e-01\\n3.59091341e-01 -1.99420780e-01 -1.32797748e-01 3.14143032e-01\\n-1.93556055e-01 -6.21659040e-01 2.72660017e-01 -1.29404962e-02\\n3.41335535e-01 2.30686396e-01 -3.32105458e-01 -2.19056942e-02\\n-3.23272914e-01 -1.36024445e-01 1.74975842e-02 -2.32862473e-01\\n-2.32666329e-01 1.29432902e-01 2.76067257e-01 -1.87482208e-01\\n2.28838205e-01 -4.49135005e-01 -3.09236467e-01 -4.91229713e-01\\n7.06889331e-02 -6.32802963e-01 1.17977768e-01 -1.34605229e-01\\n7.30880857e-01 -3.08055967e-01 1.49849981e-01 6.62795007e-02\\n9.54193920e-02 1.19146124e-01 1.38838276e-01 4.06356826e-02\\n-1.05373099e-01 -3.32431495e-01 -6.42480329e-03 -1.62651643e-01\\n6.29284620e-01 4.03576314e-01 -1.44742057e-03 -9.84712690e-02\\n2.64923368e-02 -8.94409716e-02 -4.61954057e-01 -2.09969684e-01\\n-4.58606742e-02 -1.60023719e-01 -5.40450096e-01 -4.36236978e-01\\n-1.09342538e-01 -9.03414115e-02 -2.37054586e-01 7.62752771e-01\\n-3.05931687e-01 -2.96098471e-01 -1.63129002e-01 -3.97837162e-01\\n2.16397375e-01 -2.40019321e-01 7.21614286e-02 -1.55167192e-01\\n-3.49289656e-01 -5.08802235e-01 1.99036971e-02 4.41104770e-02\\n-4.18654978e-02 -3.26941490e-01 1.74071670e-01 4.14054953e-02\\n-1.31314591e-01 -4.32870507e-01 3.96806151e-01 2.77308404e-01\\n3.04748267e-01 2.27516592e-01 4.06893492e-01 -1.15204766e-01\\n2.26062298e-01 -1.02394566e-01 -2.12315366e-01 -3.78736198e-01\\n2.62785852e-01 2.12948732e-02 3.78815293e-01 -1.36250257e-01\\n-7.14700669e-03 4.33754325e-02 -2.04050541e-01 -4.79776338e-02\\n3.28391999e-01 3.77594493e-02 1.22812703e-01 -1.10532373e-01\\n2.24379092e-01 -2.22064957e-01 -1.15093954e-01 -3.08391843e-02\\n1.68528065e-01 5.88773847e-01 -8.17123353e-02 -4.66049165e-01\\n3.66925672e-02 5.59873700e-01 1.38987750e-02 1.02317138e-02\\n-3.81661296e-01 1.17189020e-01 -2.35412300e-01 2.53313452e-01\\n5.64771146e-02 -7.40635395e-02 -2.16636777e-01 -2.33264983e-01\\n-9.70379189e-02 3.53404522e-01 2.00292289e-01 1.58193290e-01\\n4.83887717e-02 -3.13593686e-01 -1.39580041e-01 1.95376128e-01\\n2.33314574e-01 4.80746865e-01 1.75433785e-01 -2.38582328e-01\\n-4.37305085e-02 3.92187893e-01 -2.92998701e-01 1.13404959e-01\\n-3.67423624e-01 1.56802788e-01 -4.66665268e-01 -2.05393314e-01\\n-2.33887538e-01 -4.61405188e-01 3.17426503e-01 2.69160450e-01\\n6.03015721e-03 -5.67947924e-02 2.77227294e-02 -3.71841848e-01\\n3.16208601e-01 1.36422247e-01 1.95813686e-01 1.79511651e-01\\n8.07688385e-02 6.26388431e-01 2.15745047e-02 -2.93207407e-01\\n-1.41635790e-01 2.41859406e-02 -8.69227797e-02 -1.13651477e-01\\n-6.74038231e-02 -5.59722960e-01 -2.04083771e-01 3.49065274e-01\\n5.49728349e-02 -2.83138156e-01 -2.41787761e-01 1.90737605e-01\\n-3.74634489e-02 -1.15762591e-01 -1.75566673e-01 -1.20894164e-01\\n4.06905532e-01 3.60121354e-02 2.78101712e-01 -5.67138612e-01\\n-8.16119462e-02 6.70960546e-02 -2.66691465e-02 6.16954803e-01\\n1.52719378e-01 1.71181381e-01 -6.08733520e-02 -1.69211179e-01\\n4.44790065e-01 -1.83104992e-01 -1.57371670e-01 1.11157754e-02\\n6.57287166e-02 -1.87916964e-01 -5.11304259e-01 2.10522607e-01\\n-1.21301170e-02 -1.67917550e-01 8.65280628e-02 2.01023564e-01\\n8.24385285e-02 2.10658699e-01 -6.58967018e-01 -2.79257029e-01\\n-2.39739776e-01 -1.98528823e-02 3.12925354e-02 -6.35992110e-01\\n-5.99507987e-03 -1.02169506e-01 -6.03266478e-01 3.33674908e-01\\n-2.04802513e-01 -1.92775190e-01 1.48515329e-01 2.56663635e-02\\n-2.29973137e-01 -8.04776922e-02 5.38714528e-02 3.41602266e-01\\n-2.71582425e-01 -3.97342116e-01 7.06288069e-02 -9.25776005e-01\\n2.65274942e-01 8.04131776e-02 -2.87768394e-01 1.71060622e-01\\n-5.31795546e-02 -6.11661911e-01 2.12787688e-02 -3.07256699e-01\\n-9.08422098e-02 -9.84050408e-02 -2.42786556e-01 -5.71779132e-01\\n6.98996633e-02 4.46370952e-02 -2.96336532e-01 4.96250927e-01\\n-3.29737961e-01 3.92698318e-01 -1.50972515e-01 1.73954532e-01\\n1.42379522e-01 -4.01118934e-01 1.65726721e-01 -4.75135744e-01\\n-4.10083681e-01 -2.07618475e-01 -2.64792681e-01 -3.86548847e-01\\n7.53257982e-03 -4.47446793e-01 -2.64373496e-02 5.90430647e-02\\n3.11759293e-01 1.93370115e-02 -2.92912126e-01 -3.99468958e-01\\n-4.07404006e-02 -5.44960558e-01 3.26919146e-02 9.37764533e-03\\n-1.28593534e-01 -1.80710047e-01 1.66905507e-01 1.39186963e-01\\n9.48623046e-02 -3.55791628e-01 3.16896021e-01 -4.21569288e-01\\n-2.46348396e-01 -1.25957146e-01 -3.92323695e-02 -3.76347750e-02\\n2.32591793e-01 -3.91628087e-01 -1.78742688e-02 3.41392905e-01\\n1.77282467e-01 7.85549358e-02 1.11283332e-01 -1.74065679e-01\\n4.21367288e-02 3.76791805e-01 -2.24368602e-01 1.49541974e-01\\n8.11785340e-01 -7.20039383e-02 2.70987958e-01 1.75642282e-01\\n1.98514730e-01 3.56576234e-01 3.90084475e-01 1.03055917e-01\\n-1.60264701e-01 3.31005752e-01 9.85882431e-02 -4.25461471e-01\\n1.12960488e-03 7.91680589e-02 -1.97824568e-01 -4.46497828e-01\\n6.43267035e-01 4.03229058e-01 -4.43466485e-01 -2.31295377e-01\\n-6.44478053e-02 -1.77013963e-01 1.74693823e-01 2.28117406e-02\\n-3.62077169e-02 -1.30723119e-01 3.88830602e-01 -7.41923675e-02\\n2.84814656e-01 4.07538235e-01 -2.18046755e-01 -3.46143901e-01\\n-1.75699800e-01 2.49657154e-01 -5.55558428e-02 6.38703704e-01\\n-2.91932046e-01 4.36599374e-01 2.05835532e-02 2.09612787e-01\\n-1.59124345e-01 1.08621567e-01 1.92987651e-01 1.44563854e-01\\n1.60153419e-01 3.06192786e-03 6.33991480e-01 5.28090060e-01\\n4.28275019e-01 4.03945267e-01 2.60501266e-01 -1.91551074e-02\\n4.50926304e-01 5.24837613e-01 4.81180251e-01 1.58700198e-01\\n5.94122335e-03 -1.38010725e-01 9.52039063e-02 1.09087620e-02\\n3.09119821e-01 4.46182668e-01 9.69005078e-02 9.49925780e-01\\n4.04222071e-01 2.27097675e-01 7.02745914e-01 -6.43224716e-01\\n-3.27945948e-01 1.85362976e-02 4.10834700e-01 -4.30204719e-01\\n-3.02460473e-02 9.85682607e-02 -2.18037993e-01 2.30701447e-01\\n-4.19969976e-01 -3.06951046e-01 -1.10715903e-01 2.53356934e-01\\n-8.44430458e-03 -2.85673857e-01 -1.91675782e-01 1.60027057e-01\\n-1.12771122e-02 5.51440232e-02 -4.56332356e-01 2.42415722e-02\\n-1.22894555e-01 -1.46547526e-01 -2.68013962e-02 -1.19746998e-01\\n-7.55117536e-02 -3.61357749e-01 -1.86976753e-02 -9.71690491e-02\\n2.15368509e-01 -1.26774102e-01 -2.79306099e-02 -1.62797049e-01\\n2.70546854e-01 2.73546278e-01 4.97744352e-01 9.49838683e-02\\n2.20688209e-02 -2.80583382e-01 -2.54608691e-01 1.35519534e-01\\n1.02566645e-01 3.86271439e-02 -5.84272891e-02 1.26448467e-01\\n-8.68873000e-02 -1.51174009e-01 9.57989395e-02 3.27482581e-01\\n-4.32885826e-01 1.31235167e-01 -2.92494297e-01 2.20211893e-01\\n1.92556903e-01 1.73581153e-01 -1.34298027e-01 5.92102408e-02\\n-1.77775428e-01 -4.92056698e-01 1.97107419e-01 -1.22082338e-01\\n-3.57148275e-02 -3.86196710e-02 1.62556291e-01 2.31723487e-01\\n-4.11887944e-01 -8.31137300e-02 -4.86118346e-02 8.81717056e-02\\n3.83176282e-02 3.17263782e-01 -1.89348757e-01 -2.72910416e-01\\n-2.70020902e-01 1.18846454e-01 -9.26648453e-02 5.53170294e-02\\n9.18858126e-02 3.86513978e-01 1.22452915e-01 5.97317666e-02\\n3.60442400e-01 2.30836309e-02 -2.20901683e-01 -2.45408416e-01\\n-1.39309898e-01 -5.55524714e-02 -1.33012891e-01 -1.21758364e-01\\n2.50053734e-01 -3.47685099e-01 -4.23611738e-02 -1.12065986e-01\\n-1.11203216e-01 -3.81908476e-01 1.62886828e-01 -1.97558701e-01]]',\n", + " 'You want a job? Then look elsewhere, because we are offering you a mission... Do you want to play a key role in our customer projects enabling our revolutionary new product to solve customer problems and thereby help enterprises to achieve the data literacy of Amazon? Our product, the SPOUD Data-Market is redefining the way enterprises are able to access and integrate business data inside and share it between companies. Be the driving power that gets our crazy integration and analytics projects off the ground. We are looking for a: Software Engineer (100%) We are passionate people with an urge to create, maker nature, proud of things built, and love for everything growing and living. We are a family of pioneers, explorers and city-builders in the area of enterprise big-data. Your Role You will technically lead project teams thereby supporting the project lead and the customer You will work in an interdisciplinary team together with data scientists, designers, engineers and business people You will lead software architecture and design in customer projects You support our customer in their technical vision and inspire and enable them to find pragmatic solutions You see the entrepreneurial vision of SPOUD and align your doings accordingly Your Profile You love working together with customers and take responsibility of your and your teams work You are a do-er, proactive and can anticipate technical and organisational issues because you know... Strong in Software design and architecture 2+ years of relevant experience in software development and the ability to write clean code Know-how in state-of-the-art development frameworks, tools, and methods in your field of expertise You like to work in a start-up environment but you feel comfortable also in the enterprise world You have experience with Java, Go, Kafka, Flink, docker and Rx We Offer A place where you can be happy if you like making a difference! A diversity of unsolved questions on the technological front and the freedom to solve them in your own way A team of experienced start-up enthusiasts who will help you get ahead and will also listen to you A young, dynamic, and non-bureaucratic environment with a lot of flexibility An inspiring workplace with a fantastic team of creative people in the heart of Bern Attention: This is not a regular job – this is a mission where you play an active role, help our customers build their data nirvana and on this path unfold your full potential. So save your seat on this fast-growing rocket ship and be at the Swiss forefront of Innovation in big data! We are looking forward to welcome you to our family (regular BBQs are a must!). Send us your application (CV and motivational letter) in PDF and let’s have a coffee together.',\n", + " '[\"Writing\", \"Proactivity\", \"Integration\", \"Innovation\", \"Creativity\", \"Creative Problem-Solving\"]',\n", + " '[\"Engine Designs\", \"Apache Flink\", \"Tooling\", \"Accessioning\", \"Resolving Customer Problems\", \"Analytics\", \"Activism\", \"Naturalization\", \"Integrated Data Viewer (IDV)\", \"PHP Development Tools\", \"Software Engineering\", \"IText (Free PDF Software)\", \"Docker (Software)\", \"Pathing\", \"Software Architecture\", \"Data Literacy\", \"Big Data\", \"DO-178B/C (Software Considerations in Airborne Systems and Equipment Certification)\", \"Software Design\", \"Software Development\", \"Market Data\", \"Java (Programming Language)\", \"New Product Development\"]',\n", + " \"['English', 'Komi', 'Zulu', 'Galician']\"],\n", + " ['75',\n", + " 'database engineer (m/f)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.70764947e-01 3.80482614e-01 4.18749332e-01 9.27205384e-02\\n5.02905071e-01 -1.98723689e-01 4.03951481e-03 2.72517890e-01\\n-7.10982308e-02 -2.41693258e-01 -6.16132170e-02 -4.16763760e-02\\n-6.36384077e-03 8.13919604e-02 1.72464192e-01 4.24755275e-01\\n3.09276372e-01 5.89461923e-02 1.49260964e-02 2.67620534e-01\\n1.34396106e-01 -1.19489536e-01 1.02892451e-01 5.66048265e-01\\n2.07293138e-01 1.47447407e-01 -9.67616495e-03 7.97666535e-02\\n-3.16824704e-01 -2.92747468e-01 2.82683641e-01 1.20330453e-01\\n-1.92091256e-01 -1.64798424e-01 4.28377353e-02 1.16624087e-02\\n-2.04767510e-01 -1.26587655e-02 1.53321072e-01 -1.62825026e-02\\n-7.53927603e-02 -2.69863933e-01 1.32300509e-02 8.78657494e-03\\n-3.56649160e-01 -1.09220482e-01 -3.92759331e-02 -8.24821293e-02\\n1.47108018e-01 -2.04093084e-01 -6.32436514e-01 4.13603216e-01\\n-9.26709324e-02 -1.77231640e-01 3.14854234e-01 4.34895456e-01\\n3.61038037e-02 -5.12671828e-01 -2.82791048e-01 -9.18632522e-02\\n7.27044046e-02 -2.59977221e-01 -7.81142432e-03 -1.03520207e-01\\n3.98269027e-01 -1.16136126e-01 1.00655770e-02 4.46817130e-01\\n-5.31788588e-01 5.11298887e-03 -3.66952062e-01 5.04493937e-02\\n-4.32678193e-01 -5.12507446e-02 -2.38883883e-01 -1.09187528e-01\\n-5.98026300e-03 2.12750196e-01 8.18139836e-02 6.39620051e-02\\n-9.10167396e-03 1.66780144e-01 2.24938225e-02 -1.10837230e-02\\n2.81920254e-01 6.61859242e-03 2.23566964e-01 2.55997956e-01\\n-2.71070689e-01 4.55642790e-01 2.59188652e-01 -2.53095746e-01\\n2.67622828e-01 1.04668252e-01 2.18283415e-01 3.30537707e-02\\n-4.24923860e-02 1.45234808e-01 1.06808819e-01 9.32760909e-02\\n1.44925386e-01 -2.39109680e-01 -1.01675197e-01 -8.16746056e-02\\n-7.04701245e-02 -1.44837007e-01 -1.09807901e-01 2.35594884e-01\\n-3.08379978e-01 4.09874678e-01 6.56969026e-02 -9.79458764e-02\\n-4.72002244e-03 -3.61802071e-01 -2.64445931e-01 1.86284201e-03\\n-1.78630665e-01 7.06110969e-02 3.05572897e-01 2.49758869e-01\\n2.67743349e-01 2.61802912e-01 2.32880920e-01 8.51773024e-01\\n-3.00463364e-02 9.18525830e-02 -1.36282906e-01 2.82282442e-01\\n1.15949638e-01 -2.05275342e-01 1.68994486e-01 2.20680907e-01\\n-4.16226592e-03 -6.79015834e-03 -1.62871167e-01 -2.66052615e-02\\n-1.38219118e-01 -6.44442290e-02 -1.55478328e-01 1.26214534e-01\\n-2.20614806e-01 -4.67813283e-01 3.02148074e-01 2.73883343e-02\\n2.40259260e-01 -4.35412768e-03 -8.33147168e-02 -1.83054283e-02\\n-1.42258881e-02 4.13970292e-01 -1.34123206e-01 3.03680629e-01\\n-3.32957149e-01 -1.83034033e-01 -2.14656830e-01 2.39048511e-01\\n-7.74940699e-02 1.18667945e-01 -2.69004256e-01 -7.33714774e-02\\n3.60295713e-01 -9.79447458e-03 -3.55655551e-01 3.60418141e-01\\n4.75275181e-02 -3.91682059e-01 -2.15859547e-01 4.15043771e-01\\n4.75670584e-02 1.23827137e-01 -1.22079141e-01 -3.14791292e-01\\n2.76966661e-01 2.07283739e-02 8.99648741e-02 1.86553667e-03\\n3.61201137e-01 -1.90529332e-01 8.28468874e-02 1.08368754e-01\\n-5.52015245e-01 3.80213529e-01 4.21508774e-02 -9.47545096e-03\\n-5.94542585e-02 7.10613802e-02 2.44265020e-01 -2.46711016e-01\\n1.36112705e-01 -1.36641145e-01 -3.25306207e-01 -3.34831506e-01\\n6.34716125e-03 -1.67915085e-03 3.71547312e-01 -3.29468250e-01\\n-1.14514671e-01 1.02617271e-01 -4.32701200e-01 -3.30369547e-02\\n4.20483440e-01 1.87133610e-01 1.17937503e-02 8.82378146e-02\\n-2.04707161e-01 -2.56533653e-01 4.18332294e-02 -5.93345582e-01\\n-2.94325620e-01 8.57808515e-02 -2.85274893e-01 1.93881080e-01\\n1.35875121e-01 -4.42772247e-02 2.36624666e-02 1.16387270e-01\\n-3.64681244e-01 9.72153321e-02 2.91628838e-01 6.92657903e-02\\n3.36356133e-01 -6.75864741e-02 -3.54334563e-01 4.92776603e-01\\n-2.40151539e-01 4.62714523e-01 2.77643442e-01 -6.72637522e-01\\n4.11479950e-01 2.11659446e-01 1.47904783e-01 -1.87863037e-01\\n3.57819527e-01 -4.71898764e-01 1.22086406e-01 2.25684851e-01\\n-2.95098364e-01 -2.13322878e-01 2.18939960e-01 -7.72679597e-02\\n-2.41847530e-01 5.81861377e-01 5.89128993e-02 6.02204353e-02\\n3.18042964e-01 -2.61105657e-01 -1.29103377e-01 -1.53848290e-01\\n-2.09282726e-01 -2.44212970e-01 -3.77224863e-01 2.26704776e-03\\n-7.94857368e-02 -5.46626270e-01 -1.74651027e-01 -4.26742852e-01\\n-1.13773160e-01 -1.70524120e-01 -3.05949360e-01 2.50412017e-01\\n7.74390101e-02 1.18507132e-01 -5.56022301e-02 -1.27137348e-01\\n5.74168041e-02 -4.87553120e-01 -7.69816563e-02 1.57215204e-02\\n3.27196360e-01 2.78806776e-01 7.25970641e-02 -2.99964517e-01\\n1.94517195e-01 3.58133793e-01 -3.79963189e-01 -3.56582224e-01\\n1.17316768e-01 3.08850944e-01 -8.92335549e-02 -1.79890305e-01\\n5.69752045e-02 3.67708921e-01 -1.50463089e-01 1.24846123e-01\\n-6.16659336e-02 9.93803740e-02 3.70127320e-01 -1.85547158e-01\\n-2.72887886e-01 -3.22162509e-01 -1.19921453e-02 3.09700757e-01\\n-3.69176000e-01 -2.07033798e-01 5.75120986e-01 2.99480647e-01\\n-9.41088001e-05 2.63390213e-01 1.92775220e-01 4.18238016e-03\\n-2.67701060e-01 -7.91750252e-02 -7.33833164e-02 8.12797472e-02\\n9.85543653e-02 -7.77804181e-02 -3.17840934e-01 -5.37053287e-01\\n-4.30504608e+00 -3.08360588e-02 -7.73874372e-02 -2.22823381e-01\\n1.52751550e-01 -1.46149963e-01 1.79027617e-01 1.58602655e-01\\n-2.89329588e-01 7.40446076e-02 -2.63787538e-01 -1.10482037e-01\\n1.22622102e-01 3.38531703e-01 1.30481303e-01 3.45031947e-01\\n2.95381516e-01 -3.25298578e-01 7.11191222e-02 3.16688657e-01\\n1.52683314e-02 -7.06119955e-01 5.71307465e-02 -6.11882657e-02\\n4.25201505e-02 3.23242635e-01 -2.60717571e-01 6.00600839e-02\\n-2.43984848e-01 -2.10711211e-01 4.02387828e-02 -2.32252568e-01\\n-1.56914338e-01 3.46349657e-01 3.87219638e-02 -1.79150671e-01\\n1.08784232e-02 -2.71173120e-01 -3.27146538e-02 -4.91972446e-01\\n6.42255768e-02 -5.33955753e-01 1.34940624e-01 1.36563212e-01\\n4.42563266e-01 -2.45066866e-01 1.69967160e-01 2.05120325e-01\\n1.94879889e-01 1.58966720e-01 -4.96476181e-02 -1.37066945e-01\\n-2.65961826e-01 -3.28777641e-01 -2.37413764e-01 -3.46467763e-01\\n4.39812869e-01 3.89918834e-01 -1.11154459e-01 5.05039580e-02\\n-1.05886273e-01 -3.11073333e-01 -2.94818640e-01 -4.59784567e-01\\n-3.06161493e-01 1.66427895e-01 -6.93567276e-01 -4.89499658e-01\\n-2.84662023e-02 -3.44134197e-02 -1.77855670e-01 4.83848572e-01\\n-3.33003134e-01 -4.72433984e-01 -3.17299366e-02 -5.31272769e-01\\n1.13127738e-01 -4.77387421e-02 1.08714901e-01 -8.11626241e-02\\n-2.80820370e-01 -4.56554949e-01 1.21841677e-01 3.96574438e-02\\n-1.46636561e-01 -3.35093439e-02 1.18002884e-01 -1.47341549e-01\\n-4.16376084e-01 -3.04768562e-01 4.85285610e-01 -1.07428515e-02\\n4.35039401e-01 1.46653175e-01 2.52369672e-01 2.60240167e-01\\n2.93618143e-01 -1.33284807e-01 1.89405262e-01 -3.70070457e-01\\n2.24102393e-01 1.66856602e-01 5.76015949e-01 -2.37886101e-01\\n-4.23823856e-02 1.35433361e-01 -1.65749222e-01 -1.09654024e-01\\n5.20451009e-01 7.07869679e-02 5.39543070e-02 -1.62050843e-01\\n2.81815946e-01 -4.87247586e-01 -2.30131328e-01 1.45535156e-01\\n-1.78700546e-03 5.65422177e-01 1.74928382e-01 -3.22919875e-01\\n-1.83554620e-01 3.27672988e-01 3.18201147e-02 -2.20363617e-01\\n-2.68335119e-02 6.36626035e-02 -2.24550009e-01 2.38265187e-01\\n1.56959519e-01 -1.54462367e-01 -2.35577524e-01 -1.54480329e-02\\n-5.94599135e-02 1.81890115e-01 2.69194841e-01 5.72329462e-02\\n-1.64241031e-01 -2.36346021e-01 -1.54765680e-01 1.49112508e-01\\n2.14499846e-01 1.82263434e-01 1.50400668e-01 -8.89383033e-02\\n4.80591655e-02 1.74056262e-01 -7.37534910e-02 1.20663665e-01\\n-1.44387811e-01 1.34751692e-01 -4.79542136e-01 -2.41103455e-01\\n-1.42490268e-01 -1.49614692e-01 -8.03369954e-02 3.60542506e-01\\n2.09526047e-01 -1.28700688e-01 7.41112530e-02 -3.00515503e-01\\n4.33313340e-01 -9.22398120e-02 2.64875293e-01 6.50296733e-02\\n1.29448503e-01 5.66303909e-01 3.41924815e-03 -2.84663171e-01\\n-1.87255308e-01 1.38023511e-01 -3.17382902e-01 -1.25782654e-01\\n6.44829571e-02 -2.62982041e-01 -6.70783315e-03 2.24723488e-01\\n1.88453346e-01 -2.85637025e-02 -8.36273655e-02 2.33084783e-01\\n-8.06129053e-02 -1.33166954e-01 -2.77333379e-01 7.27839395e-02\\n2.40309715e-01 -1.10012293e-03 1.51007280e-01 -3.91991824e-01\\n-5.43580987e-02 -5.22595942e-02 1.96869865e-01 3.62520337e-01\\n1.72606096e-01 1.10475160e-01 5.07885255e-02 -3.66143614e-01\\n4.25003797e-01 9.30979773e-02 -1.49404928e-01 -6.48168772e-02\\n1.07491672e-01 -1.12839855e-01 -3.68518174e-01 4.42494117e-02\\n-7.83619657e-02 -1.66494861e-01 2.31656522e-01 2.77469493e-02\\n8.90479758e-02 -5.20769395e-02 -4.04213935e-01 -1.81027845e-01\\n-2.48201355e-01 6.66322634e-02 -1.35266976e-02 -5.80770552e-01\\n-2.52953842e-02 6.47834390e-02 -5.63979268e-01 2.30325684e-01\\n-2.32393950e-01 1.46712109e-01 1.90329477e-02 3.81421633e-02\\n-2.39439160e-01 -5.31105772e-02 3.74628514e-01 -2.05257703e-02\\n-3.62264395e-01 -1.44534498e-01 -1.16461543e-02 -6.81164026e-01\\n2.10316882e-01 -1.39638126e-01 -2.53788441e-01 -3.59374955e-02\\n7.91927874e-02 -5.53475857e-01 2.19622031e-01 -2.71812916e-01\\n-3.28819528e-02 -8.21738318e-02 -2.49019846e-01 -3.07344526e-01\\n-2.55303774e-02 -1.97017625e-01 -1.10558458e-01 2.45045513e-01\\n-3.72373790e-01 3.70978922e-01 -8.42841528e-03 9.68909562e-02\\n1.45247206e-01 -3.72409821e-01 1.88435882e-01 -3.33387047e-01\\n-2.86380798e-01 -2.09097177e-01 -2.95100987e-01 -1.93460912e-01\\n-4.88442592e-02 -4.07931693e-02 -6.54291362e-02 -2.58242022e-02\\n2.53914565e-01 1.22465208e-01 -3.30628425e-01 -1.50074691e-01\\n7.58033693e-02 -3.46004188e-01 1.59437843e-02 -1.67228520e-01\\n-7.91710895e-03 -2.32482888e-02 2.21467286e-01 -2.49810591e-01\\n6.88032955e-02 -2.70387858e-01 4.86088365e-01 -5.40458672e-02\\n-3.14256907e-01 -1.36600018e-01 9.79795456e-02 6.79384694e-02\\n6.56604245e-02 -4.48888212e-01 -1.30255461e-01 2.36114174e-01\\n2.48830214e-01 1.62899733e-01 2.69786775e-01 -1.16645448e-01\\n-1.54523998e-01 2.31660023e-01 -6.11691236e-01 5.08534871e-02\\n6.47831559e-01 2.14162916e-01 3.35853472e-02 1.50039747e-01\\n-1.41143883e-02 5.00303507e-01 5.02642572e-01 7.12186769e-02\\n-8.07293579e-02 3.23166102e-01 1.79011106e-01 -5.46630263e-01\\n-2.17709124e-01 -2.12556571e-01 5.11331931e-02 -1.28550082e-01\\n5.45960605e-01 3.32146078e-01 -4.05467331e-01 -3.75077903e-01\\n-2.62413695e-02 -1.85728237e-01 -4.94477618e-03 -5.56833632e-02\\n3.87714766e-02 -3.44808370e-01 5.72980762e-01 4.57259715e-02\\n1.50245577e-01 5.87748170e-01 -2.29656659e-02 -1.65700898e-01\\n-4.39063273e-02 -4.48782369e-03 2.24708572e-01 1.71340123e-01\\n3.62066887e-02 2.23898128e-01 -1.05163552e-01 2.57129729e-01\\n-1.87560171e-01 -1.14559837e-01 -2.27715131e-02 8.70154127e-02\\n3.72791220e-03 1.92913145e-01 2.80505449e-01 2.89855689e-01\\n2.70798266e-01 4.72418129e-01 1.51201010e-01 5.04177399e-02\\n4.67858434e-01 4.62481171e-01 3.44654828e-01 -7.07194209e-02\\n9.23467521e-03 -7.29600200e-03 4.87732217e-02 -3.97568271e-02\\n2.54340291e-01 3.70028287e-01 1.45252600e-01 7.61656582e-01\\n2.82434344e-01 2.15063110e-01 6.27487659e-01 -4.68006104e-01\\n-3.14145565e-01 -2.48940401e-02 4.65045631e-01 -4.33412760e-01\\n-3.97228412e-02 -2.92391703e-03 -4.07598048e-01 -1.04498276e-02\\n-4.59011883e-01 -1.26563892e-01 9.05431807e-02 -2.24144384e-01\\n2.02035144e-01 -3.47004347e-02 -1.09594010e-01 2.54878581e-01\\n-7.38227442e-02 -2.25456744e-01 -2.67048150e-01 -2.72668540e-01\\n-3.16334963e-01 -6.18873127e-02 8.93824175e-03 -1.23509131e-01\\n1.33660093e-01 -3.38436037e-01 -4.22289260e-02 7.25715458e-02\\n3.78760368e-01 -8.82091075e-02 -1.45551324e-01 -1.20544843e-01\\n4.87549677e-02 3.06263864e-01 6.65579557e-01 -3.59557047e-02\\n1.01192921e-01 -1.96387209e-02 -1.29716069e-01 -1.00155100e-02\\n1.38584390e-01 4.15863991e-02 7.06940591e-02 5.33690274e-01\\n-4.59870458e-01 -1.96968336e-02 2.66726594e-02 3.53691995e-01\\n-2.90817887e-01 6.57966435e-02 7.97382742e-02 1.02914721e-01\\n7.74745271e-02 5.30694202e-02 -3.04382831e-01 1.58175215e-01\\n-2.37163916e-01 -5.82946837e-01 3.82542759e-01 -7.46670589e-02\\n-8.55535492e-02 -3.75871286e-02 1.85024709e-01 1.84259951e-01\\n-2.99542904e-01 -6.36216104e-02 -1.34176716e-01 2.70591199e-01\\n6.87954295e-03 2.37124860e-01 -3.01606178e-01 -2.38960132e-01\\n-3.22479457e-01 3.13418955e-01 1.21872477e-01 2.27395422e-03\\n-2.45224327e-01 3.77896607e-01 1.26993507e-01 1.76121458e-01\\n7.23407045e-02 -2.43791133e-01 -2.40951732e-01 -2.50291169e-01\\n-3.00154269e-01 -4.04937863e-02 6.60772845e-02 -1.24320529e-01\\n2.27274880e-01 -3.30703080e-01 -2.64657605e-02 -2.14440331e-01\\n-1.69417113e-01 -2.58702189e-01 -2.00911481e-02 -1.78634003e-02]]',\n", + " 'Job Informationen In this role you will be performing the following activities: - Develop and implement Oracle database related solutions - Database Performance-analysis, -tuning and problem monitoring - Keeping the Patch-Level of Databases, Oracle- Cluster ware and Database Machines up to date. - Maintain the availability of our database HA solutions in Dataguard and RAC configurations - rman backup/recovery configuration, execution and monitoring - Administer Linux machines Our requirements: - At least 5 years’ experience in Oracle Database administration and -tuning - Experience in Linux administration - Expert skills in several of these technologies: Oracle RAC, Data Guard, Golden Gate, RMAN, OEM - Work-experience with Oracle ODA - Good communication and documentation skills - Customer Orientation, capability of working independently and flexibility - English and German are mandatory Benötigte Skills Englisch Oracle Linux',\n", + " '[\"Communications\"]',\n", + " '[\"Oracle Autonomous Database\", \"Oracle Linux\", \"Executable\", \"Database Administration\", \"Linux Administration\", \"Activism\", \"Linux\", \"Maintainability\", \"Machining\", \"Performance Analysis\", \"Oracle Databases\", \"Oracle Rac\", \"Recovery Manager (RMAN)\", \"Guarding\"]',\n", + " \"['English', 'Nauru']\"],\n", + " ['22',\n", + " 'software engineer, growth team',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.beekeeper.io',\n", + " '[[-3.26576456e-03 7.93167353e-02 4.75420892e-01 1.82045158e-02\\n3.61233920e-01 -1.35588288e-01 -8.32320675e-02 4.20588821e-01\\n-4.75099161e-02 -4.32282090e-01 1.58610284e-01 -4.42588329e-01\\n-2.24586219e-01 9.24412385e-02 2.47830525e-02 4.01810348e-01\\n4.44545090e-01 5.67281060e-02 -1.29696159e-02 3.55324090e-01\\n1.21537797e-01 -1.01944908e-01 1.83644682e-01 7.82013416e-01\\n5.14713705e-01 -9.55303460e-02 -6.86163902e-02 2.64233768e-01\\n2.67566182e-02 -2.47702688e-01 5.98333001e-01 5.71470447e-02\\n-2.17601970e-01 -3.60760331e-01 3.85325328e-02 1.11421160e-01\\n-3.31461608e-01 -1.27403945e-01 8.91256407e-02 1.78423345e-01\\n-6.71439767e-01 -6.29417539e-01 -2.26146787e-01 -2.35034972e-01\\n-3.41912150e-01 -5.39322868e-02 -1.71290949e-01 -8.54104757e-02\\n2.90834665e-01 4.77657653e-02 -5.28764784e-01 1.13443062e-01\\n-8.87008458e-02 -3.27489674e-01 1.96179122e-01 6.90864205e-01\\n3.52157876e-02 -4.95525926e-01 -7.24969089e-01 -1.75578296e-01\\n4.46265787e-02 -1.27647072e-01 -1.41530577e-02 -4.12128925e-01\\n1.88603714e-01 -5.39683700e-02 3.14653069e-02 5.50726950e-01\\n-8.47731948e-01 -5.10891452e-02 -3.57646465e-01 -2.63388425e-01\\n-3.33476186e-01 1.15135483e-01 -1.52796566e-01 -1.45332605e-01\\n-1.57386392e-01 3.90089035e-01 2.77807266e-01 -1.06758550e-02\\n-4.53621149e-01 3.44178200e-01 -1.45526856e-01 4.85958278e-01\\n2.47769743e-01 1.21951140e-01 2.88916677e-01 2.20413893e-01\\n-3.76940787e-01 7.36453056e-01 3.16398963e-02 -3.58551621e-01\\n2.16846839e-01 -7.49198124e-02 3.84394437e-01 2.73943022e-02\\n-2.64576934e-02 1.97657019e-01 -1.73719466e-01 1.95563778e-01\\n6.48017451e-02 -5.08424401e-01 -7.92337060e-02 -5.52001335e-02\\n9.13666859e-02 8.88759643e-02 2.56055713e-01 1.15882009e-01\\n-3.57889891e-01 4.84372795e-01 7.16921762e-02 -1.19767427e-01\\n-2.05117822e-01 -3.25085521e-01 -8.26031864e-02 -9.81548727e-02\\n-1.16349727e-01 1.31780401e-01 2.42488146e-01 -1.26528472e-01\\n9.33175832e-02 6.95838481e-02 1.28684387e-01 7.17562199e-01\\n-9.33585465e-02 2.86299556e-01 -3.09207559e-01 4.18327451e-01\\n-6.41958974e-03 -2.99284518e-01 3.35889250e-01 2.42151201e-01\\n-1.43505380e-01 -3.51869941e-01 -3.17260742e-01 2.20537275e-01\\n-6.28572851e-02 -1.05963133e-01 -4.22708750e-01 1.17405437e-01\\n4.69663143e-02 -3.85675490e-01 6.49407864e-01 1.84825003e-01\\n4.78217393e-01 2.17188120e-01 4.92467619e-02 -1.15904003e-01\\n-6.93552494e-02 1.92949533e-01 -1.59613848e-01 2.23229066e-01\\n-1.41297877e-01 -3.50873232e-01 -1.18953228e-01 7.56064951e-02\\n-3.12820137e-01 3.79461884e-01 -1.46219149e-01 -3.81218940e-02\\n3.72580081e-01 1.53728992e-01 -4.92170155e-02 4.38014835e-01\\n-9.08473879e-03 1.49791270e-01 7.36936629e-02 5.28107762e-01\\n-1.76570788e-01 -4.18091714e-02 5.59897646e-02 -2.53181994e-01\\n7.87301838e-01 4.50907588e-01 -4.11478803e-03 -6.47390485e-02\\n4.89424556e-01 -1.39716312e-01 1.21994559e-02 5.12426943e-02\\n-5.78253508e-01 3.51367116e-01 1.31416321e-01 1.15890674e-01\\n-1.76310778e-01 -3.14279497e-01 7.22391158e-02 -2.74166167e-01\\n-5.78657985e-02 -2.21866041e-01 -5.07667065e-01 6.29264861e-04\\n-1.83593661e-01 7.49228755e-03 5.29774189e-01 -4.89969671e-01\\n-1.87945649e-01 2.63708085e-03 -4.54760253e-01 -1.58575505e-01\\n2.77801156e-01 2.70171702e-01 3.29084814e-01 1.20814919e-01\\n-3.28655094e-01 -3.10165107e-01 -5.96285015e-02 -3.88523161e-01\\n-3.70670199e-01 -1.36434644e-01 -3.42824370e-01 5.12215734e-01\\n3.14145535e-01 5.90466335e-02 -4.48591828e-01 6.69517070e-02\\n-1.06273994e-01 -2.15802789e-01 2.96944201e-01 1.55043930e-01\\n-1.05894923e-01 -1.45272657e-01 -2.66040087e-01 4.04952615e-01\\n-3.79057854e-01 6.49365544e-01 1.01017937e-01 -8.54216218e-01\\n4.82934564e-01 5.29005408e-01 -1.21620618e-01 -5.19423604e-01\\n4.81814831e-01 -4.88919199e-01 1.58493325e-01 1.00987762e-01\\n-3.88763011e-01 -2.72549033e-01 2.40427971e-01 -2.71736264e-01\\n-2.52337992e-01 6.29901230e-01 1.73519596e-01 7.94159807e-03\\n9.06901360e-02 -2.82840759e-01 -1.09382808e-01 -9.37911645e-02\\n-7.71079510e-02 -3.79899323e-01 -5.96348166e-01 -2.69809186e-01\\n-1.10673197e-01 -6.14367843e-01 -1.91425592e-01 -5.78479886e-01\\n-2.63806969e-01 -4.31736648e-01 -4.37709600e-01 1.46734431e-01\\n5.20620763e-01 1.86231300e-01 -6.81757629e-02 9.05086398e-02\\n-2.15485543e-01 -6.33086979e-01 1.06002942e-01 3.21451873e-01\\n4.99256313e-01 3.61655265e-01 9.88155305e-02 -1.52842343e-01\\n1.34059340e-01 8.68588090e-01 -2.32188642e-01 -2.54125386e-01\\n2.61660725e-01 4.18692946e-01 4.16165926e-02 -1.92847639e-01\\n2.43765533e-01 5.09977520e-01 -3.03008169e-01 6.83684796e-02\\n-1.16893098e-01 -2.68083364e-01 3.64181221e-01 1.24738500e-01\\n-3.25065196e-01 -2.55435675e-01 -1.04912765e-01 1.56567812e-01\\n-5.09405792e-01 -1.69240892e-01 5.85292518e-01 1.42769203e-01\\n2.61520505e-01 5.02295233e-02 -3.61185446e-02 1.80191189e-01\\n-1.99471056e-01 -2.83915222e-01 3.28858532e-02 6.19848892e-02\\n-2.38341019e-02 9.73844528e-02 -2.71497145e-02 -7.07210541e-01\\n-2.92089844e+00 -1.54890064e-02 1.43316388e-01 -4.18289781e-01\\n-5.20968065e-03 -1.11758828e-01 1.19968727e-01 -8.42143595e-02\\n-3.04627240e-01 2.17325062e-01 -2.14691237e-01 -6.76598623e-02\\n2.13686809e-01 -1.15365639e-01 2.77725875e-01 3.27028960e-01\\n3.05378854e-01 -1.73211008e-01 -3.04263771e-01 3.22778344e-01\\n-1.77518457e-01 -4.65785295e-01 2.76869416e-01 -1.65281326e-01\\n3.71756136e-01 1.54628828e-01 -2.42447495e-01 -9.87735391e-03\\n-1.48759812e-01 -2.10609481e-01 3.95201519e-02 -3.70646209e-01\\n-1.38188958e-01 3.01911771e-01 1.43629178e-01 -1.29291173e-02\\n1.55036822e-01 -6.70349360e-01 -3.36497992e-01 -4.42918837e-01\\n-4.52432632e-02 -1.05304384e+00 1.15647003e-01 1.39269307e-02\\n6.94219589e-01 -1.75854713e-01 5.37664145e-02 9.04886648e-02\\n-1.73066258e-02 -1.04357265e-01 7.67629743e-02 -1.43911719e-01\\n-4.53496754e-01 -2.48627186e-01 -1.09349966e-01 -1.41179338e-01\\n6.75892711e-01 5.95796704e-01 -2.11800516e-01 -9.02661756e-02\\n-2.69040391e-02 -2.84216046e-01 -6.26941800e-01 -1.78879872e-01\\n-2.15511769e-04 -2.50167906e-01 -6.60916090e-01 -4.23796535e-01\\n-2.46723145e-01 -1.85654789e-01 -1.10830568e-01 4.59751427e-01\\n-2.36107200e-01 -1.98545143e-01 -7.25344196e-02 -6.05073273e-01\\n1.98883832e-01 -1.76777571e-01 8.65589380e-02 -2.26361863e-02\\n-3.63470137e-01 -5.45931041e-01 -9.12000611e-03 -7.56780505e-02\\n-1.93484277e-01 -2.37884551e-01 2.68040508e-01 -5.15565202e-02\\n-3.09754163e-01 -4.82278824e-01 6.01333797e-01 1.63029015e-01\\n3.10932994e-01 -1.11896105e-01 3.25840354e-01 1.14579543e-01\\n3.15856457e-01 -2.01537125e-02 -4.32829857e-02 -3.55150312e-01\\n1.97724551e-01 1.94696799e-01 5.60156345e-01 -2.53853440e-01\\n-1.95055455e-01 2.34153382e-02 -5.61843157e-01 -9.44939405e-02\\n2.37896919e-01 -6.51039705e-02 2.49908686e-01 -3.98258626e-01\\n4.60867345e-01 -1.19584844e-01 -1.99738219e-01 9.99796987e-02\\n8.94545317e-02 6.53261304e-01 5.36743850e-02 -3.81332129e-01\\n-1.78255916e-01 5.04280269e-01 -7.36351684e-02 -2.43404999e-01\\n1.59230500e-01 1.02777153e-01 -2.34031051e-01 1.47330746e-01\\n2.16672644e-01 -8.27938318e-02 -3.32317114e-01 -7.26030767e-02\\n-2.43494987e-01 1.03612825e-01 1.88392535e-01 1.24809183e-01\\n-1.48471102e-01 -3.17979306e-01 -2.70620048e-01 4.28788781e-01\\n1.07077450e-01 4.21838045e-01 8.73714983e-02 -8.32148641e-02\\n-8.21116567e-02 4.33619142e-01 -1.20769076e-01 -3.31713632e-03\\n-3.69538546e-01 1.84778661e-01 -6.77306950e-01 -2.05298483e-01\\n-2.77249105e-02 -5.72673798e-01 2.02447608e-01 4.06501710e-01\\n8.65325630e-02 -1.50555745e-01 5.15803955e-02 -5.72476506e-01\\n2.73157001e-01 2.15510890e-01 4.43797588e-01 2.54752755e-01\\n1.38875246e-01 6.72325194e-01 -1.40780509e-02 -1.78392917e-01\\n-2.27383018e-01 -1.07669406e-01 -1.69660360e-01 -3.84357870e-01\\n-4.91623916e-02 -6.92594647e-01 -4.76337075e-02 3.75640243e-01\\n-3.16562504e-03 -2.87885070e-01 -1.82092905e-01 2.91007072e-01\\n-7.72917420e-02 -2.22774655e-01 -1.90423310e-01 -9.12147015e-02\\n4.85680759e-01 2.30508782e-02 3.25073361e-01 -4.90560740e-01\\n-1.11096740e-01 4.78673987e-02 -4.16602433e-01 5.45745075e-01\\n2.71667838e-01 5.22177629e-02 -4.98104505e-02 -3.87698472e-01\\n4.46463883e-01 1.02352828e-01 -1.39895529e-01 -2.36747548e-01\\n6.76016361e-02 -2.89747149e-01 -3.98894042e-01 1.67928174e-01\\n2.41518557e-01 -2.52371967e-01 2.36691356e-01 1.93164915e-01\\n3.74179155e-01 8.50594789e-02 -4.97183770e-01 -3.92439663e-01\\n-1.91835403e-01 -3.33038867e-02 1.03494123e-01 -6.15997255e-01\\n6.80217221e-02 -1.63860202e-01 -5.79401731e-01 1.48167253e-01\\n-3.23484123e-01 -1.94928437e-01 2.81010807e-01 1.49007410e-01\\n-4.28352654e-01 -2.07452290e-02 1.36774302e-01 1.70386389e-01\\n-3.14856142e-01 -6.32401526e-01 2.01793626e-01 -9.23063695e-01\\n2.51696616e-01 2.37054467e-01 -4.04593766e-01 5.49306534e-02\\n1.63823903e-01 -9.00801778e-01 1.02020271e-01 -2.55118698e-01\\n3.97187658e-02 -9.67074260e-02 -9.84626412e-02 -2.25270331e-01\\n-2.55120713e-02 -3.65545675e-02 -3.02768767e-01 2.98585832e-01\\n-2.79554009e-01 6.21243238e-01 -2.32145607e-01 9.19599757e-02\\n1.14463255e-01 -3.17713261e-01 1.18459091e-01 -8.70741606e-01\\n-4.45907891e-01 -2.87996948e-01 -5.05886614e-01 -3.57107103e-01\\n-1.88799769e-01 -1.37420222e-01 -1.40401900e-01 3.63304093e-02\\n4.20471609e-01 1.44886792e-01 -1.60747319e-01 -1.95271417e-01\\n-2.14418173e-02 -5.23657322e-01 -1.88213870e-01 -1.24371983e-02\\n-7.55573064e-02 -5.30684032e-02 1.50198117e-01 -1.49966732e-01\\n7.82846659e-02 -4.75065112e-01 1.09809905e-01 -4.07020718e-01\\n-2.92787790e-01 -1.31156981e-01 2.88318396e-01 1.35098189e-01\\n2.17686906e-01 -5.93835950e-01 -1.20256759e-01 2.84367144e-01\\n3.82328510e-01 6.51737079e-02 3.66024703e-01 4.29747924e-02\\n-9.75161791e-03 5.22429585e-01 -4.47099745e-01 2.18995273e-01\\n6.66589260e-01 -1.28991976e-01 8.06722343e-02 1.90499261e-01\\n3.95073071e-02 2.15176851e-01 4.16731089e-01 2.51211405e-01\\n-1.25822410e-01 2.78604656e-01 1.20298222e-01 -4.29971695e-01\\n-1.21217333e-02 -3.68702859e-02 -1.15095481e-01 -1.94737434e-01\\n6.37750566e-01 4.89798725e-01 -4.15502906e-01 -6.61773235e-02\\n-2.79729247e-01 -1.03946187e-01 -1.84930675e-02 -1.17714301e-01\\n-4.69808429e-02 1.72385931e-01 6.84639275e-01 1.16116598e-01\\n4.23968196e-01 6.41237915e-01 -1.97072238e-01 -4.22502398e-01\\n-1.33613795e-01 2.78072417e-01 1.11129962e-01 3.16274226e-01\\n-1.65045649e-01 3.24080586e-01 8.86962488e-02 2.92871520e-02\\n-1.89742982e-01 2.97729909e-01 2.05490559e-01 5.88398688e-02\\n-4.53156419e-04 9.34392810e-02 3.90898317e-01 4.71112579e-01\\n5.41396379e-01 4.41723406e-01 3.43481302e-01 9.22940075e-02\\n5.53264141e-01 5.96979976e-01 4.73604620e-01 1.10539541e-01\\n-4.01786566e-02 -2.70450898e-02 5.14076352e-02 -1.28361106e-01\\n3.13729405e-01 5.93488574e-01 1.49589449e-01 9.09877717e-01\\n3.99513781e-01 2.19487876e-01 7.31349111e-01 -4.83376741e-01\\n-2.79941767e-01 2.16995031e-01 3.36971581e-01 -1.15188472e-01\\n-4.55705523e-01 -1.70811489e-02 -3.00111353e-01 9.39653218e-02\\n-1.90340787e-01 -1.21927619e-01 -2.26867512e-01 2.51918077e-01\\n1.32108778e-01 -3.23038816e-01 -2.92844027e-01 3.00338268e-01\\n-9.28212851e-02 -2.01827615e-01 -2.84656286e-01 6.10644445e-02\\n-2.29823351e-01 -3.33221883e-01 -6.86865300e-03 -8.14576745e-02\\n-2.36464202e-01 -4.80007529e-01 6.05236217e-02 6.93922117e-02\\n3.47616017e-01 2.72340588e-02 -1.45883933e-01 -2.16763169e-01\\n3.08957756e-01 3.46369863e-01 6.80261791e-01 2.02832907e-01\\n1.24827266e-01 -2.07953170e-01 -3.05794835e-01 3.69119555e-01\\n4.33714628e-01 5.12704626e-02 -1.26048252e-01 3.13889742e-01\\n-1.50189921e-01 7.80615136e-02 2.13052884e-01 6.01481915e-01\\n-5.20169258e-01 3.22288454e-01 -3.58050674e-01 1.39276937e-01\\n2.83578902e-01 3.46512258e-01 -2.65960962e-01 -4.12887409e-02\\n-1.12091750e-01 -6.79867983e-01 1.51047692e-01 -2.12253958e-01\\n-2.64104933e-01 9.28182453e-02 -6.09761849e-03 3.00146699e-01\\n-7.09469244e-02 -9.42323953e-02 2.05947995e-01 3.70063931e-01\\n-3.90925035e-02 1.91034436e-01 -1.54113621e-01 -2.97648072e-01\\n-2.93753505e-01 2.75388360e-01 -2.07857311e-01 2.48394966e-01\\n6.36276826e-02 3.94563079e-01 1.59804374e-01 1.28996387e-01\\n4.71151829e-01 -1.21012360e-01 -2.78509617e-01 -1.58932030e-01\\n-2.94384480e-01 -3.47311676e-01 -1.69810727e-02 1.40851615e-02\\n2.62279868e-01 -4.45712447e-01 -7.18175620e-02 -2.18636155e-01\\n-2.74273217e-01 -2.44005144e-01 -3.05844955e-02 -2.26104468e-01]]',\n", + " 'We are looking for the most talented and passionate individuals that love to work in demanding and international environments. Our team is passionate, dedicated and highly motivated to tackle the daily challenges of a SaaS start-up. As a Software Engineer in the Growth Team, you will have the opportunity to work on all of our software stacks and learn about state-of-the-art development. The Growth Team is a cross-collaboration team containing engineers, product people, product designers and marketers to work as a fully functioning and highly effective unit. The ideal candidate has a back-end developer profile with no fear of also doing full-stack work. Your job within the team will be to support/build initiatives of finding new innovative solutions and technologies to grow the company and bring it to its next level. Technologies Used: Python, Java, Node.js, Postgres, Elasticsearch, Docker, Vue.js, Objective-C/Swift, Kotlin --------------------- Your Responsibilities --------------------- Build and maintain a scalable backend system to boost Beekeepers Free Trial Services Implement backend requirements for any projects or experiments of the Growth Team Implement product changes at massive scale with rapid data-driven iteration Rapid MVP building together with all stakeholders of the team to really build solutions that have a real impact on metrics and users Responsible for building all the necessary tools and infrastructure to unlock rapid growth Be the leader in the team for any backend related topics ----------------------- What we look for in you ----------------------- 3+ years of experience with a focus on backend technologies Experience making APIs Experience integrating with 3rd party applications Experience with Microservices Experience with AWS Experience with greenfield projects Creativity and out of the box thinking to make things work Interest in Growth Hacking and it\\'s mentality A \"Just get it done\"-mindset Fluent in English ------------ Bonus Points ------------ Track record at Hackathons B2B and SaaS experience We love founders and an entrepreneurial mindset ----------------- What we offer you ----------------- Amazing team with 20+ nationalities across 4 office locations Vibrant company culture with breakfasts, board game nights, crossfit and team events Realize your own ideas in quarterly hackathons and \"20% time\" projects Continuous learning through weekly Bee University talks and support to join conferences Pick the hardware you need for work and we cover your mobile phone bill ------------------------------------------------- Technologies & Frameworks we use at Beekeeper ------------------------------------------------- Java, Python, JavaScript, MySQL, ElasticSearch, RabbitMQ, Docker, Celery, SQLAlchemy, Backbone, Realm, Kubernetes, Vue, Swift, Objective-C, Kotlin, ReactiveX',\n", + " '[\"Innovation\", \"Infrastructure\", \"Creativity\", \"Integration\"]',\n", + " '[\"MySQL\", \"Technology Readiness Level\", \"Kubernetes\", \"Tooling\", \"Boost (C++ Libraries)\", \"Vue.js\", \"Beekeeping\", \"MASSIVE (Software)\", \"Scale (Map)\", \"Objective-C (Programming Language)\", \"Cross-Functional Collaboration\", \"Python (Programming Language)\", \"Node.js\", \"Maintainability\", \"Track (Rail Transport)\", \"ReactiveX\", \"Iterators\", \"Microservices\", \"Software Engineering\", \"Product Engineering\", \"Swift (Programming Language)\", \"Mobile Phones\", \"Docker (Software)\", \"RabbitMQ\", \"Product Design\", \"JavaScript (Programming Language)\", \"Scalability\", \"SQLAlchemy\", \"Growth Hacking\", \"Unlocker\", \"Back End (Software Engineering)\", \"Java (Programming Language)\", \"Custom Backend\", \"Elasticsearch\", \"Kotlin\"]',\n", + " \"['English']\"],\n", + " ['84',\n", + " 'data management software engineer (w/m)',\n", + " 'Zürich',\n", + " 'IT Services',\n", + " '',\n", + " '[[-4.04619247e-01 2.37983733e-01 5.40266812e-01 -1.12129927e-01\\n4.37007159e-01 -1.66741446e-01 9.36558768e-02 1.43781796e-01\\n-5.95327504e-02 -2.85568804e-01 -8.73139426e-02 -3.11490208e-01\\n-1.39583722e-01 3.46547067e-02 1.82638094e-01 5.57610631e-01\\n2.44249985e-01 3.16596553e-02 -2.86290497e-01 2.62290210e-01\\n8.15777108e-02 2.19135615e-03 -1.83395296e-03 7.27779508e-01\\n4.82069224e-01 -1.06577566e-02 -5.05015664e-02 -9.33204442e-02\\n-2.81174451e-01 -2.42011547e-01 4.95320857e-01 8.96196067e-03\\n-1.20651104e-01 -2.40456611e-01 8.06236491e-02 1.22564416e-02\\n-1.48057103e-01 -1.06481209e-01 1.21796452e-01 1.73215896e-01\\n-4.96022940e-01 -2.60411412e-01 2.62095500e-02 1.38251418e-02\\n-3.01295906e-01 -3.48673105e-01 -1.62118301e-01 3.50100663e-03\\n5.86734824e-02 1.94859207e-02 -5.66971362e-01 3.77061307e-01\\n-3.04460287e-01 -8.67407545e-02 2.38588333e-01 5.48194766e-01\\n4.77187969e-02 -6.60159528e-01 -3.13554347e-01 -2.63900489e-01\\n2.55775660e-01 -7.51654506e-02 1.72610834e-01 -1.17358841e-01\\n2.44545251e-01 -9.78455096e-02 -1.42277703e-01 4.92575258e-01\\n-5.47234476e-01 -2.31302887e-01 -3.20883602e-01 -1.02473021e-01\\n-2.80921131e-01 6.80592237e-03 -2.66840160e-01 -1.10580124e-01\\n-9.71888304e-02 3.42994839e-01 -3.02659478e-02 9.73834097e-03\\n-2.83317894e-01 2.43967295e-01 -5.57391606e-02 2.09963724e-01\\n2.92557299e-01 2.54828036e-01 2.88724452e-01 3.51320118e-01\\n-5.62426984e-01 5.28845251e-01 1.95096627e-01 -4.15902555e-01\\n1.82263881e-01 4.19072211e-02 5.09649217e-01 1.01629868e-01\\n1.08120821e-01 1.42978922e-01 -7.13947639e-02 1.65729195e-01\\n2.17857599e-01 -2.52555430e-01 2.44665697e-01 -8.46438557e-02\\n-2.55009592e-01 9.78587121e-02 5.92012145e-02 2.32916564e-01\\n-3.92669410e-01 3.68564278e-01 3.05657625e-01 -2.71317095e-01\\n-2.13548332e-01 -6.32961214e-01 -1.21821808e-02 -5.68022579e-03\\n-7.13676736e-02 1.82955071e-01 3.73892099e-01 1.40550569e-01\\n2.75219262e-01 -4.41518910e-02 2.56982148e-01 8.66636574e-01\\n1.41872661e-02 1.26892710e-02 -4.14273530e-01 3.25541824e-01\\n1.10272102e-01 -1.38247252e-01 1.38583824e-01 1.94496036e-01\\n4.75180782e-02 -6.52725175e-02 -3.39238822e-01 3.52184981e-01\\n-8.06421489e-02 -2.05381155e-01 -2.65099943e-01 4.25683819e-02\\n-3.20510209e-01 -4.84697640e-01 4.83849496e-01 2.18779724e-02\\n1.63596675e-01 -2.04687044e-01 3.37807052e-02 -8.81746039e-02\\n1.17199585e-01 3.58839929e-01 8.93602595e-02 1.60861626e-01\\n-2.86633253e-01 -1.86741233e-01 -2.15303034e-01 3.45746040e-01\\n-9.84168425e-02 1.60792157e-01 -6.55362234e-02 -9.98022407e-02\\n2.64480740e-01 1.16503663e-01 -3.36339295e-01 2.58920819e-01\\n9.31335315e-02 -3.83129209e-01 -2.39339858e-01 3.04429919e-01\\n-1.87159404e-01 9.06329826e-02 1.20504260e-01 -2.82558709e-01\\n5.19752383e-01 1.43018082e-01 3.21446151e-01 -1.10254951e-01\\n3.34982723e-01 -2.15550095e-01 1.95001960e-01 1.37457967e-01\\n-6.17527902e-01 3.15541923e-01 -7.87449032e-02 -4.68976311e-02\\n1.05896004e-01 6.64212331e-02 2.44559258e-01 -4.23880428e-01\\n5.57942614e-02 -2.21643612e-01 -2.94313461e-01 -5.07443964e-01\\n-1.27429634e-01 -1.25017837e-01 4.02090639e-01 -2.68896610e-01\\n-1.84477210e-01 1.64503783e-01 -4.57849234e-01 -1.02896854e-01\\n2.10981965e-01 1.05404221e-01 2.76525412e-02 1.89035341e-01\\n-1.05318569e-01 -5.74167550e-01 3.17176222e-03 -4.74228531e-01\\n-5.94800651e-01 2.15164591e-02 -1.05155818e-01 2.14459583e-01\\n-2.41729058e-02 3.10297739e-02 -8.35366398e-02 1.39171839e-01\\n-3.50253761e-01 1.09422497e-01 7.46040866e-02 1.94349006e-01\\n2.93067276e-01 -2.10401583e-02 -4.28189695e-01 5.57240784e-01\\n-1.77550480e-01 4.45131987e-01 2.71552801e-01 -8.76573265e-01\\n5.07878959e-01 1.11600816e-01 1.47071555e-01 -3.84725988e-01\\n4.93396819e-01 -4.78541642e-01 1.11739859e-01 1.55768320e-01\\n-3.06489319e-01 -1.61424905e-01 3.56450975e-01 -1.92792878e-01\\n-2.88099974e-01 5.55766046e-01 2.09969431e-01 5.25403954e-02\\n2.23205253e-01 -3.01926821e-01 -4.44831327e-02 -1.43713474e-01\\n-1.59706011e-01 -2.00237438e-01 -4.59070593e-01 2.37458393e-01\\n3.41521055e-02 -6.08120799e-01 -1.42498448e-01 -4.44842309e-01\\n-2.13198870e-01 -3.42192918e-01 -2.08161578e-01 3.53546679e-01\\n2.42999882e-01 1.24524780e-01 1.11621581e-01 -7.79664516e-02\\n-1.20637394e-01 -4.84014243e-01 -2.31873423e-01 1.95983127e-01\\n4.54764992e-01 2.13018864e-01 -9.15084928e-02 5.85114770e-02\\n-4.07321863e-02 6.29579961e-01 -2.68378079e-01 -2.62396902e-01\\n1.45282626e-01 2.31789425e-01 7.99286515e-02 -1.04344845e-01\\n-3.76019627e-04 3.13822210e-01 -7.85001516e-02 4.32799980e-02\\n-6.18564850e-03 3.33624659e-03 5.20001888e-01 3.62874530e-02\\n-1.70965791e-01 -1.37271687e-01 2.88175382e-02 1.97090745e-01\\n-5.59848905e-01 -1.42540261e-01 5.46197951e-01 2.76924551e-01\\n1.55028656e-01 2.68276006e-01 3.25991839e-01 -1.03694253e-01\\n-2.92399228e-01 -2.51350880e-01 1.94376737e-01 9.74271670e-02\\n-9.42894369e-02 -5.86205721e-02 -1.53127804e-01 -3.40821087e-01\\n-2.85217285e+00 -1.88795060e-01 8.91871527e-02 -2.93270886e-01\\n1.11793593e-01 -9.50155631e-02 5.40353321e-02 1.88888106e-02\\n-3.14325631e-01 2.54123181e-01 -1.26362681e-01 -2.08593294e-01\\n9.16382745e-02 1.61194175e-01 9.26532596e-02 1.73650503e-01\\n1.66929603e-01 -1.71514511e-01 -1.51542291e-01 3.25114310e-01\\n-8.72226208e-02 -7.84008026e-01 2.36325994e-01 1.07066128e-02\\n2.11145118e-01 1.19726062e-01 -4.96786267e-01 -3.76782939e-02\\n-3.36528689e-01 -3.32790852e-01 1.26519725e-01 -3.50257486e-01\\n-1.11090176e-01 3.04731518e-01 2.54530996e-01 -1.38892651e-01\\n4.96143885e-02 -4.33304876e-01 -6.62626624e-02 -4.68338072e-01\\n2.27370530e-01 -6.71676695e-01 5.24142049e-02 -1.57562181e-01\\n7.03120589e-01 -3.63721788e-01 1.08109847e-01 4.35707867e-02\\n2.26515263e-01 1.07248716e-01 5.76627254e-03 1.00331218e-03\\n-2.63620168e-01 -3.64444584e-01 7.23023489e-02 -1.44800738e-01\\n3.63338292e-01 5.34996629e-01 -1.85651228e-01 -7.53171090e-03\\n-7.91930314e-03 -2.85261929e-01 -3.88378143e-01 -3.76208991e-01\\n-3.92676264e-01 -1.56235620e-01 -6.93375170e-01 -3.87414664e-01\\n-1.55271247e-01 -1.07208885e-01 -2.15029687e-01 6.76994145e-01\\n-3.23091567e-01 -3.30971569e-01 -5.64591549e-02 -5.44489086e-01\\n1.13336138e-01 -3.74319553e-01 9.50227976e-02 -1.93543166e-01\\n-3.51352990e-01 -5.35526335e-01 2.84751415e-01 -5.11846952e-02\\n-8.59607309e-02 -4.58651856e-02 -5.46038151e-04 -2.23485962e-01\\n-2.80590624e-01 -2.99374610e-01 4.29836422e-01 1.94793969e-01\\n3.72653335e-01 1.76799670e-01 3.39215457e-01 1.62148267e-01\\n2.73224264e-01 -1.83394566e-01 8.96622986e-02 -2.28090391e-01\\n1.13777220e-01 3.39884534e-02 6.75155759e-01 -2.06183940e-01\\n1.39843807e-01 9.27630812e-02 -2.50225365e-01 -7.90078864e-02\\n5.19218922e-01 -5.60257360e-02 8.24456438e-02 -7.16828927e-02\\n3.97831857e-01 -6.23222709e-01 -2.19044089e-01 7.03658462e-02\\n-2.54930090e-02 6.92952991e-01 3.89781594e-03 -4.58891869e-01\\n-2.32829571e-01 3.48263830e-01 -9.64898318e-02 -1.83875874e-01\\n-3.95994991e-01 2.77174264e-01 -2.41616726e-01 3.10650080e-01\\n-1.76558569e-01 -2.08769560e-01 -4.05650616e-01 -1.15276769e-01\\n1.49738509e-02 2.06496015e-01 2.57720381e-01 -7.65000063e-04\\n4.83232215e-02 -2.22599074e-01 -2.77172297e-01 1.79709479e-01\\n4.09779131e-01 3.68144661e-01 1.30963072e-01 -1.97389871e-01\\n-4.37393710e-02 2.51729459e-01 -2.18878135e-01 1.55812651e-01\\n-1.66286543e-01 7.31632859e-02 -4.00317848e-01 -2.74588138e-01\\n-1.69619750e-02 -3.40102255e-01 7.36577734e-02 4.18122441e-01\\n9.39067453e-02 -9.00268331e-02 3.44443768e-02 -3.66995543e-01\\n4.74671423e-01 7.72488341e-02 1.44116610e-01 1.71139553e-01\\n3.50709967e-02 7.12831914e-01 -1.42141372e-01 -4.03422974e-02\\n-1.01996899e-01 -2.06455708e-01 -2.98413903e-01 -1.83103055e-01\\n5.37399873e-02 -2.48847485e-01 -5.99636100e-02 5.33710301e-01\\n6.03590570e-02 -3.34941447e-01 -1.24634756e-02 4.08279240e-01\\n2.58461274e-02 -1.74661115e-01 -2.11270183e-01 1.36494741e-01\\n2.27859169e-01 1.09098926e-01 2.69303143e-01 -3.99424285e-01\\n-2.49650642e-01 1.82069223e-02 -7.86261186e-02 4.70528781e-01\\n1.63750738e-01 2.16054171e-01 -1.42498940e-01 -3.37230057e-01\\n4.91614431e-01 -3.02777261e-01 -2.81928837e-01 8.89430791e-02\\n1.36825651e-01 -1.46780685e-01 -4.68305677e-01 -4.25700322e-02\\n1.25938654e-02 -2.86509663e-01 1.70969367e-01 6.38114437e-02\\n1.44428164e-01 -7.26535404e-03 -5.86546123e-01 -2.51299322e-01\\n-2.54348367e-01 -1.70128066e-02 1.00141779e-01 -5.17459631e-01\\n-6.78743050e-02 -2.26186380e-01 -6.03169024e-01 3.15219253e-01\\n-2.58965820e-01 -5.17338291e-02 8.25141817e-02 1.67500153e-01\\n-3.25172901e-01 -1.97020054e-01 1.64911360e-01 1.29827052e-01\\n-2.44464055e-01 -1.70529023e-01 2.05898136e-02 -9.78021085e-01\\n9.99073982e-02 4.30547968e-02 -1.15357511e-01 -1.54904025e-02\\n-8.92051905e-02 -6.16842747e-01 1.51459068e-01 -2.25688696e-01\\n1.55858826e-02 1.21558681e-01 -1.74848154e-01 -4.15118963e-01\\n1.14509590e-01 -4.48607132e-02 -1.11757629e-01 3.45323801e-01\\n-3.38240057e-01 2.83532441e-01 -1.15263164e-01 7.12145194e-02\\n4.04450260e-02 -2.41171733e-01 2.69744545e-01 -3.17019463e-01\\n-4.24472809e-01 -1.50734916e-01 -4.60670203e-01 -2.84482986e-01\\n7.25717172e-02 -2.55070865e-01 -2.73223966e-01 2.94841938e-02\\n3.70932639e-01 1.77226558e-01 -1.61630258e-01 -2.04684839e-01\\n5.69073744e-02 -4.37787563e-01 2.40399837e-01 -2.60320008e-01\\n-7.59520684e-04 -2.56424040e-01 3.55218127e-02 -3.45481597e-02\\n-4.89706658e-02 -3.05138052e-01 4.13746417e-01 -2.70617336e-01\\n-3.71311367e-01 -1.46093354e-01 5.72561212e-02 1.21661641e-01\\n4.23636138e-01 -4.58766431e-01 2.95110010e-02 1.84038773e-01\\n6.31051585e-02 1.28558025e-01 3.33770335e-01 -1.09484695e-01\\n-1.41081139e-01 3.05547804e-01 -5.24600089e-01 2.37237453e-01\\n7.29221284e-01 2.45229721e-01 7.28756264e-02 2.62991637e-01\\n2.53038913e-01 2.12367058e-01 3.98523778e-01 6.73928438e-03\\n-8.80630836e-02 2.46501848e-01 -1.33792758e-02 -5.46766818e-01\\n-1.59371302e-01 -1.98051453e-01 -2.22146437e-01 -4.31959093e-01\\n5.79992890e-01 3.94977093e-01 -3.29748213e-01 -2.03464001e-01\\n1.03392769e-02 -4.71854322e-02 2.42079481e-01 -1.22004353e-01\\n-8.00133795e-02 9.67349038e-02 6.49829924e-01 6.81088045e-02\\n3.74114037e-01 5.67824483e-01 -1.71621829e-01 -3.62950176e-01\\n-2.26238772e-01 2.73131073e-01 1.12081580e-01 4.49022204e-01\\n-7.55982846e-02 2.46758863e-01 1.81800462e-02 2.28397503e-01\\n7.48162204e-03 -5.31575009e-02 4.60344665e-02 4.39571479e-04\\n1.68793470e-01 1.15588017e-01 1.36030719e-01 3.72072428e-01\\n1.93238571e-01 4.16310579e-01 2.90624470e-01 4.13490459e-02\\n3.95109653e-01 8.31477165e-01 4.60052967e-01 2.18542576e-01\\n6.23000935e-02 -2.00765226e-02 -9.23007354e-02 1.53437881e-02\\n2.89922953e-01 3.11228842e-01 -3.01881172e-02 8.65579605e-01\\n2.89954245e-01 2.57361382e-01 5.90918660e-01 -5.42949975e-01\\n-5.10221243e-01 4.02284265e-02 4.53992575e-01 -3.54481161e-01\\n-5.39796688e-02 9.78207737e-02 -2.55533010e-01 2.75271803e-01\\n-3.95960122e-01 -1.46565646e-01 6.82097152e-02 -1.97503805e-01\\n9.75523442e-02 -2.27495469e-02 -1.88074842e-01 1.75879851e-01\\n-2.64562488e-01 -2.34696865e-01 -1.70675278e-01 -1.10963091e-01\\n-3.21500808e-01 1.37956869e-02 -1.00710325e-01 -5.56597374e-02\\n-8.15834776e-02 -3.74000490e-01 -1.12941198e-01 1.76065519e-01\\n3.51574689e-01 -1.30940035e-01 -7.18945116e-02 -5.37310503e-02\\n1.88916214e-02 2.46333972e-01 5.37510812e-01 -9.72419009e-02\\n1.26664028e-01 -1.12915412e-01 -4.05702323e-01 1.72997769e-02\\n1.33593902e-01 7.45546445e-02 6.65446296e-02 4.03454989e-01\\n-3.97048533e-01 -8.17728117e-02 2.23992869e-01 3.37566942e-01\\n-4.01896626e-01 9.17375088e-02 -2.29286686e-01 1.92628279e-01\\n2.24581107e-01 1.60014763e-01 -3.16188604e-01 8.65127072e-02\\n-2.07978994e-01 -5.02468884e-01 3.69291455e-01 -2.60421067e-01\\n-1.35686085e-01 1.44794315e-01 1.94411069e-01 1.72236651e-01\\n-4.05288428e-01 1.01948716e-01 -1.18795119e-01 3.52785915e-01\\n2.78403722e-02 2.67738551e-01 -2.71615237e-01 -1.68528873e-02\\n-2.70849913e-01 2.13211104e-01 -1.21285208e-01 1.93018094e-01\\n-3.81334983e-02 2.27157235e-01 1.16759017e-01 -4.44551781e-02\\n1.99618146e-01 1.60197970e-02 -2.00895458e-01 -2.73232073e-01\\n-2.25943699e-01 -2.96091080e-01 2.19793394e-01 -2.18684927e-01\\n1.98216841e-01 -4.06210095e-01 -1.91734508e-01 -2.20438987e-01\\n-1.61545664e-01 -3.84984344e-01 -1.62086561e-01 -2.44810116e-02]]',\n", + " 'Über unseren Kunden Our client is a strong brand – more than 1.4 million Swiss customers place their trust in our products and services. Ihr Aufgabenbereich Developing and supporting Data Management Framework application(s) ranging from small integration tools to full-blown applications, over time building up an integrated solution suite enabling Data Management to support the enterprise in becoming even more data driven Contributing to overall data management capability development, spanning various topics like data modeling, metadata management, data standardization and master & reference data management Being part of the development team supporting the Risk Modelling Platform generic components underpinning a range of business critical capital modelling applications Supporting incident resolution; working with the BUs to mitigate associated impacts Ihr Profil University level education, e.g. Computer Science, Computer Engineering, or Engineering Discipline 10+ years of experience in enterprise-grade software development 10+ years of experience with C# .NET framework development High degree of customer focus & end-to-end solution delivery attitude Proficiency in C# and object-oriented programming concepts, enjoys writing clear, maintainable code, tests and documentation Familiarity with enterprise application architecture patterns (concurrency models, unit-of-work etc.), transactional processing, domain driven design, REST APIs and service oriented architecture including solid skills in managing complexity with decoupling and dependency injection Knows how to approach a problem statement, steer the requirements engineering and drive the technical solution design Experience in the data management domain (metadata, master & reference, data quality, etc.) are a plus Has excellent communication skills, both written and oral, able to interact with different management levels Fluent in written & spoken English, German is a plus Ihre Chance Haben wir Ihr Interesse geweckt und Sie sind bereit eine neue Herausforderung anzunehmen? Dann schicken Sie Ihre vollständigen Bewerbungsunterlagen an jobs@oneagency.ch Ort: Zürich Spezialisierung: C# / C++ / C .NET Entwicklung Sprachen: Deutsch Englisch Job ID: 7379',\n", + " '[\"Writing\", \"Management\", \"Integration\"]',\n", + " '[\"Code Testing\", \"Reference Data\", \"Mitigation\", \"Tooling\", \"Capitalization\", \"Interactivity\", \"Computer Science\", \"Metadata\", \"Data Management\", \"Data Modeling\", \"Service-Oriented Architecture\", \"Build Time\", \"Branding\", \".NET Framework\", \"Service Level Management\", \"E (Programming Language)\", \"Levelling\", \"Applications Architecture\", \"Concurrency Pattern\", \"Programming Concepts\", \"C (Programming Language)\", \"Domain Driven Design\", \"Application Portfolio Management\", \"C# (Programming Language)\", \"Dependency Injection\", \"Solution Delivery\", \"Requirements Engineering\", \"Clinical Data Management\", \"Capability Development\", \"Computer Engineering\", \"Technical Solution Design\", \"Transaction Processing (Business)\", \"Software Development\", \"Solution Design\", \"Metadata Modeling\", \"Maintaining Code\", \"RESTful API\"]',\n", + " \"['English', 'Chewa']\"],\n", + " ['80',\n", + " 'software engineer / software developer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-2.25367069e-01 2.32250974e-01 5.06567001e-01 -3.08572352e-02\\n5.38056970e-01 -1.08408272e-01 -2.40812823e-02 1.60881981e-01\\n4.34205234e-02 -2.91904867e-01 -2.14868248e-01 -2.16581345e-01\\n-1.15298659e-01 5.15648387e-02 2.66742986e-02 3.83278847e-01\\n3.06102395e-01 2.71346886e-02 -6.74058422e-02 3.92125249e-01\\n2.81417258e-02 -9.31503773e-02 -5.77119514e-02 5.83967149e-01\\n2.64430732e-01 9.47352946e-02 -5.33663295e-02 -4.10202071e-02\\n-3.11393440e-01 -1.79390132e-01 3.07072222e-01 1.23419017e-01\\n-1.27168745e-01 -3.90187591e-01 1.36987880e-01 1.06949173e-01\\n-2.15480745e-01 1.32493526e-02 -9.48492959e-02 9.79602560e-02\\n-5.29760838e-01 -3.24110836e-01 1.52288482e-01 2.27997378e-02\\n-1.94146991e-01 -2.01853797e-01 1.83830202e-01 -1.11657187e-01\\n2.45372951e-02 2.38093957e-02 -5.33806860e-01 3.54550540e-01\\n-4.20291483e-01 -2.47024447e-01 3.81521523e-01 5.96935749e-01\\n1.69312924e-01 -6.64397001e-01 -4.12428617e-01 -2.82069921e-01\\n5.34798726e-02 -6.41626418e-02 9.88345891e-02 -1.96285963e-01\\n3.43531489e-01 1.34739205e-02 -2.21036226e-02 4.34350729e-01\\n-8.26372087e-01 -7.20439404e-02 -2.62500703e-01 1.33338645e-01\\n-3.52257192e-01 -6.25488013e-02 -2.36151934e-01 -2.17267051e-02\\n-2.60160733e-02 3.94523978e-01 8.44941754e-03 1.12511650e-01\\n-1.26457617e-01 3.30614686e-01 -1.41389266e-01 2.90522575e-01\\n3.11808646e-01 3.45171019e-02 3.02065790e-01 2.80326009e-01\\n-4.95883435e-01 4.50023830e-01 1.81527719e-01 -2.11015806e-01\\n2.67653227e-01 1.58400148e-01 4.31469202e-01 1.78276002e-01\\n3.01656872e-02 1.81041181e-01 -1.35731250e-01 4.81240451e-02\\n1.01029329e-01 -7.63979331e-02 -1.94998413e-01 -6.14719130e-02\\n-3.69126052e-02 -1.09417550e-01 -2.68448591e-02 1.85031161e-01\\n-4.15751815e-01 4.12972987e-01 2.20459431e-01 -2.19872743e-01\\n-1.96752381e-02 -4.31497753e-01 -2.18178660e-01 4.53583896e-02\\n-1.14089355e-01 3.48000340e-02 1.87637717e-01 1.06855065e-01\\n2.69330353e-01 7.03730136e-02 8.25046599e-02 7.83579886e-01\\n-1.72811537e-03 6.37024045e-02 -9.77263004e-02 3.78203273e-01\\n2.06835926e-01 -1.85746089e-01 1.33802921e-01 1.87158450e-01\\n-7.54398704e-02 -1.99264847e-02 -2.52931893e-01 3.46191227e-01\\n-1.03875570e-01 -1.28544092e-01 -2.18259960e-01 1.40593365e-01\\n-1.73572809e-01 -4.48526561e-01 4.59843755e-01 -5.11627942e-02\\n1.50587812e-01 -2.82702427e-02 9.14290249e-02 -6.30012676e-02\\n-2.76991069e-01 3.58803034e-01 5.73794395e-02 3.81285369e-01\\n-3.20071816e-01 -2.03894228e-01 -1.51104420e-01 2.85816401e-01\\n-5.67993410e-02 3.12752128e-02 -3.11789513e-01 -1.94346130e-01\\n3.82191598e-01 1.98204935e-01 -4.09960330e-01 2.23371714e-01\\n-4.69688699e-03 -1.26406088e-01 -1.46324620e-01 2.33621150e-01\\n-3.00254114e-02 4.97157536e-02 -4.65934239e-02 -1.97821960e-01\\n5.21380901e-01 2.19704241e-01 2.86892235e-01 -5.03344350e-02\\n4.63541001e-01 -2.00360835e-01 2.53830343e-01 8.34876969e-02\\n-6.59926414e-01 3.12164098e-01 -3.62023823e-02 2.49249861e-02\\n9.88058597e-02 2.55212002e-02 4.41434443e-01 -4.59113181e-01\\n-2.31090225e-02 -2.44792342e-01 -5.09799957e-01 -4.36985701e-01\\n-2.72760272e-01 5.69667667e-03 3.66374701e-01 -3.63009006e-01\\n-7.15652481e-02 7.69126564e-02 -5.78313112e-01 -1.99701443e-01\\n2.76786000e-01 2.33507782e-01 4.84719127e-02 5.50956689e-02\\n-1.26087397e-01 -5.80397725e-01 4.65628244e-02 -5.05747437e-01\\n-4.18906152e-01 8.55193287e-02 -3.53772521e-01 1.46848410e-01\\n-7.76025727e-02 -9.57984477e-03 -4.07023206e-02 8.26761499e-02\\n-3.18360209e-01 -7.91950151e-02 1.88098043e-01 -1.25749223e-02\\n1.75996646e-01 1.04710072e-01 -3.59764487e-01 5.16279340e-01\\n-4.10223782e-01 4.44771528e-01 2.84537114e-02 -9.00931180e-01\\n5.93306780e-01 3.19059312e-01 -1.80207975e-02 -3.05124223e-01\\n2.81832367e-01 -4.46709454e-01 2.84423437e-02 1.40046984e-01\\n-3.46426904e-01 -2.06795186e-01 2.60284930e-01 -1.47883773e-01\\n-3.07594031e-01 6.51092768e-01 1.74471512e-01 -8.70934501e-02\\n3.95143330e-01 -2.32051373e-01 -1.26204520e-01 -1.46357147e-02\\n-1.45927727e-01 -2.24779695e-01 -3.86895150e-01 1.51634291e-01\\n-5.24877794e-02 -5.73804259e-01 -1.66523844e-01 -3.64520848e-01\\n-2.17325807e-01 -4.87938285e-01 -3.82030904e-01 2.64078349e-01\\n1.43892720e-01 1.31490212e-02 -1.02596179e-01 2.85451449e-02\\n-3.85866687e-02 -7.23191559e-01 2.96020545e-02 1.60019368e-01\\n2.99174309e-01 3.47680151e-01 6.09877966e-02 -1.36918709e-01\\n-1.26184955e-01 4.06187952e-01 -4.86289144e-01 -2.75910258e-01\\n2.43408799e-01 1.38998345e-01 -7.85953775e-02 -1.71315610e-01\\n9.97510776e-02 3.87225658e-01 -2.40799725e-01 1.40739679e-01\\n8.61217454e-03 -6.94794133e-02 4.41190898e-01 -1.20681852e-01\\n-2.98859775e-01 -1.84374288e-01 -8.85727629e-02 3.51997852e-01\\n-6.10278606e-01 -1.05335496e-01 4.99201894e-01 2.71051645e-01\\n3.35367620e-02 2.68380404e-01 1.69864804e-01 -7.87977502e-02\\n-3.00894827e-01 -3.42844963e-01 2.15264201e-01 2.46559560e-01\\n1.53311417e-01 5.47563285e-02 -2.60966510e-01 -6.16514444e-01\\n-3.19635248e+00 -2.54849076e-01 9.39714760e-02 -2.75129974e-01\\n2.92342395e-01 -7.83625096e-02 1.90165013e-01 -9.11874101e-02\\n-2.70731717e-01 1.37706280e-01 -1.39492363e-01 -1.54836312e-01\\n1.26148686e-01 3.48634750e-01 1.32829741e-01 1.34852111e-01\\n7.62232319e-02 -1.83864534e-01 1.09308824e-01 3.83179903e-01\\n-1.91640943e-01 -8.20138574e-01 1.41961187e-01 -1.61218792e-01\\n1.14418946e-01 2.60207415e-01 -4.47522104e-01 4.37934548e-02\\n-1.16608992e-01 -1.97983831e-01 7.83405602e-02 -1.90912336e-01\\n-1.06153317e-01 3.67295146e-01 6.71319813e-02 -1.48616403e-01\\n-4.83556762e-02 -3.09311152e-01 -3.14105302e-02 -4.79216218e-01\\n1.60831571e-01 -5.89869380e-01 3.43549848e-02 -1.81524187e-01\\n5.49920917e-01 -1.97550043e-01 2.43693471e-01 1.24246225e-01\\n2.00403571e-01 3.04961890e-01 1.49926156e-01 2.51783114e-02\\n-2.95255601e-01 -2.33592108e-01 -9.32520851e-02 -2.07782090e-01\\n5.10057330e-01 3.42801034e-01 -2.82899499e-01 6.15846589e-02\\n1.05509199e-01 -4.32465076e-01 -3.49967599e-01 -4.00114238e-01\\n-2.04810917e-01 -1.09554261e-01 -6.41308069e-01 -3.42314661e-01\\n-1.92419097e-01 -1.39751062e-01 -1.39713854e-01 7.81497836e-01\\n-4.99107718e-01 -4.06478226e-01 1.19719766e-02 -6.49039507e-01\\n1.34311736e-01 -2.00723842e-01 3.92416567e-02 -2.20356852e-01\\n-2.74089634e-01 -4.32681322e-01 2.38266587e-01 -5.10744527e-02\\n-2.03350902e-01 -1.30662858e-01 1.37163877e-01 -1.10474922e-01\\n-3.25004011e-01 -5.03559589e-01 3.83183658e-01 6.53676614e-02\\n3.79443288e-01 -4.60685343e-02 3.74002546e-01 -3.08435224e-03\\n4.18341905e-01 5.35769947e-03 8.37836415e-04 -4.40748930e-01\\n1.08460613e-01 -7.80043192e-04 6.85197830e-01 -1.45213291e-01\\n-7.33251572e-02 1.66422918e-01 -2.27138698e-01 -1.26563698e-01\\n5.21943092e-01 8.02427679e-02 4.87574078e-02 -2.32082248e-01\\n3.78631949e-01 -4.66825008e-01 -2.49808490e-01 2.43298143e-01\\n3.07569616e-02 7.66757846e-01 5.87910078e-02 -3.79317909e-01\\n-2.39322230e-01 4.22484040e-01 -1.44284099e-01 -2.22330078e-01\\n-6.84434772e-02 8.89778137e-02 -1.66569531e-01 2.62317598e-01\\n1.92808867e-01 -6.19542561e-02 -2.95174927e-01 5.76430261e-02\\n-1.12551764e-01 1.59394085e-01 2.32682347e-01 -1.93992667e-02\\n-2.97703370e-02 -1.88973278e-01 -4.92926911e-02 1.02308780e-01\\n6.34383857e-02 3.42660129e-01 9.22834277e-02 -2.89837658e-01\\n-5.03159240e-02 3.36479247e-01 -1.63570911e-01 2.48487189e-01\\n-1.09791301e-01 1.53684124e-01 -4.97681260e-01 -1.97761148e-01\\n-2.06646606e-01 -2.61339605e-01 -9.56039503e-03 2.80957818e-01\\n2.38016069e-01 -1.30991951e-01 1.41505241e-01 -4.57986057e-01\\n2.10998967e-01 1.33540303e-01 1.96845964e-01 8.18284005e-02\\n-2.32818499e-02 6.10417724e-01 1.68296229e-02 -2.36854240e-01\\n-1.07502878e-01 -1.49121778e-02 -2.66296327e-01 -3.18803549e-01\\n2.08599657e-01 -3.55375320e-01 -1.29596010e-01 4.23504084e-01\\n1.28286421e-01 -2.49834776e-01 -2.20341563e-01 3.37689757e-01\\n7.20431358e-02 -2.66054809e-01 -2.85301507e-01 -7.57950023e-02\\n1.88901111e-01 2.84074582e-02 2.78044939e-01 -5.10914326e-01\\n-2.59949975e-02 -1.36250257e-03 1.28233470e-02 4.67919648e-01\\n5.92767969e-02 1.16734385e-01 -1.09362632e-01 -1.44946769e-01\\n4.66756493e-01 5.64487651e-02 -1.29541904e-01 -2.36113578e-01\\n1.29600883e-01 -2.14544892e-01 -5.09657741e-01 3.54524627e-02\\n-9.93179232e-02 -1.93390831e-01 6.20992705e-02 8.26178119e-02\\n2.19255149e-01 -1.23647209e-02 -3.70475054e-01 -2.29432106e-01\\n-2.92717785e-01 4.74487431e-02 7.45133311e-03 -5.20490587e-01\\n9.94280726e-02 1.09957717e-02 -5.96520185e-01 1.47538424e-01\\n-1.87937438e-01 2.04397347e-02 1.86351404e-01 2.19789654e-01\\n-4.11421955e-01 -1.44278526e-01 1.05830394e-01 -2.53418684e-02\\n-3.67548823e-01 -2.97393560e-01 1.19073883e-01 -9.04114485e-01\\n1.80069685e-01 -2.32574344e-02 -1.43598486e-02 4.94432002e-02\\n-1.74283594e-01 -8.51010084e-01 2.30149403e-01 -4.42614794e-01\\n-1.22168086e-01 1.22216277e-01 -2.64694393e-01 -3.17753255e-01\\n5.61104119e-02 -2.55494803e-01 -2.28791058e-01 3.48264933e-01\\n-3.76855820e-01 4.41550732e-01 4.76682819e-02 4.79381979e-02\\n9.16538537e-02 -1.97563708e-01 1.11187659e-01 -3.14849675e-01\\n-5.80909252e-01 -2.42765695e-01 -3.28522950e-01 -2.76856661e-01\\n3.57050821e-02 -1.69898570e-01 -1.37201637e-01 -2.03566328e-02\\n3.40103388e-01 1.51355609e-01 -1.07614011e-01 -1.19418435e-01\\n9.00743902e-03 -3.87887895e-01 1.13505080e-01 -1.81922019e-01\\n1.32845908e-01 -6.44208789e-02 2.73060441e-01 -4.02797200e-02\\n2.22751677e-01 -3.81638467e-01 5.11491597e-01 -2.05188006e-01\\n-3.99204880e-01 -1.54728606e-01 1.99268796e-02 1.55507624e-01\\n2.95039535e-01 -5.28380215e-01 1.32281214e-01 3.00676048e-01\\n1.33325726e-01 -2.85863616e-02 2.27290079e-01 -7.97762275e-02\\n-9.42666009e-02 8.34190696e-02 -4.76695001e-01 8.37441832e-02\\n7.65801072e-01 1.47023559e-01 6.67895675e-02 2.43416205e-01\\n9.45425183e-02 3.04710776e-01 6.08462870e-01 -2.20967010e-02\\n-4.79199179e-02 3.68747354e-01 1.40219897e-01 -5.51003039e-01\\n-1.57513052e-01 1.40283704e-02 -5.22824004e-02 -3.07890236e-01\\n5.56715369e-01 3.40262890e-01 -4.69048560e-01 -2.96766222e-01\\n-1.63784832e-01 -2.37598673e-01 3.17476928e-01 -8.94988477e-02\\n-3.22447047e-02 -7.29530901e-02 5.63611329e-01 1.02175288e-02\\n3.47252667e-01 4.86710966e-01 -1.28394976e-01 -2.22338080e-01\\n-5.61321862e-02 1.51355475e-01 1.65609211e-01 2.80173838e-01\\n-6.65946305e-03 8.07211623e-02 -7.70445466e-02 6.34441674e-02\\n-1.03609487e-01 9.85604450e-02 8.30701888e-02 6.29035458e-02\\n1.81894064e-01 7.57821649e-02 4.50928271e-01 4.92250979e-01\\n2.58738071e-01 4.01571214e-01 3.03755224e-01 -3.51147726e-02\\n5.26169419e-01 7.39565492e-01 2.28024513e-01 -1.81265268e-02\\n-3.11236437e-02 1.54750019e-01 1.70679808e-01 -3.48967612e-02\\n4.75910842e-01 4.78863269e-01 2.61846662e-01 8.37461352e-01\\n3.58098060e-01 2.95397758e-01 6.88285828e-01 -5.99149883e-01\\n-3.22031736e-01 4.02529985e-02 5.18418431e-01 -2.52522111e-01\\n7.27750435e-02 1.33267000e-01 -1.87212527e-01 2.87318945e-01\\n-4.75213856e-01 -9.70668644e-02 7.00661168e-02 -2.83663347e-03\\n2.02282414e-01 -2.12395936e-03 -9.01820809e-02 9.87307355e-02\\n-1.24142163e-01 -2.20045730e-01 -3.05499405e-01 -2.41163403e-01\\n-3.20979655e-01 2.24437751e-02 3.06546800e-02 -5.41475117e-02\\n5.98864816e-02 -4.07735169e-01 -1.41460359e-01 -5.26651628e-02\\n3.17068607e-01 -1.27478197e-01 -1.20138638e-01 -1.33549035e-01\\n1.58961445e-01 2.76630282e-01 5.96399665e-01 -7.57311732e-02\\n1.43839732e-01 -1.23605192e-01 -2.52382845e-01 1.24179125e-01\\n1.16064355e-01 1.48065016e-01 1.10181764e-01 5.05786598e-01\\n-3.49783927e-01 -3.08969431e-03 1.17976651e-01 3.48172426e-01\\n-2.92092204e-01 -1.11443736e-01 -8.51169676e-02 7.61211365e-02\\n6.36570901e-02 1.03409037e-01 -2.34104171e-01 -1.23966374e-02\\n-2.55150914e-01 -6.30271435e-01 4.23001468e-01 -2.28032708e-01\\n-2.39740252e-01 2.77216733e-02 3.34902197e-01 3.17249089e-01\\n-1.82808474e-01 1.08668581e-03 2.65558250e-02 1.94411993e-01\\n9.44532305e-02 4.17929769e-01 -1.96961850e-01 -2.43791923e-01\\n-2.61333048e-01 2.97854185e-01 -2.83821970e-02 4.48129186e-03\\n-1.24264970e-01 3.66526961e-01 -1.34759983e-02 8.22211877e-02\\n2.26189882e-01 -9.42047685e-02 -2.72495687e-01 -2.70741105e-01\\n-3.08053017e-01 -8.52136984e-02 1.37666106e-01 4.55312245e-02\\n1.49159938e-01 -3.19297612e-01 -6.71045855e-02 -2.13812858e-01\\n-1.91874057e-01 -3.12175632e-01 -1.88196659e-01 7.33174235e-02]]',\n", + " 'Job Description You will be part of our IoT Core feature team, which is responsible for the development and operations of the core software services of our IoT Cloud Platform. We use agile DevOps and SRE practices to provide outstanding service quality and availability to our customers. You will join a team of always curious and enthusiastic Engineers, which are working closely together with the Product Owner to deliver valuable features that enable the digitalisation of the logistics industry. This is a (specialized or full-stack) software engineering position with focus on development and operation of software services. He / She designs, implements, tests and operates high quality software services according to SLAs and OLAs in place and takes co-ownership for team owned software components. The focus of the role will be: Conduct technical requirements analysis based on input from business analysis respectively business requirements engineering, including functional and non-functional requirements (e.g. security, availability, scalability, cost-optimization, …) Create software designs based on result of requirements analysis according to the architectural-, security-, product- and team guidelines Implement software designs using continuous integration and deployment Maintain existing software systems; including fixing bugs, adding new features, refactoring and conducting version upgrades Participate in code reviews as part of the agile software development process and collaborate with other software engineers to integrate code changes (e.g. pull/merge requests) Conduct quality testing on software (unit testing) and software systems (integration and end-to-end testing) Write and maintain technical documentation of software and software systems Operate software systems and collaborate with customer support team and system team to resolve incidents (2nd level support) Participate in agile software development activities (e.g. stand-ups, planning meetings, retrospectives, …) and collaborate with product owner and product management team to coordinate timeline for new features Qualifications Good conceptual skills in developing solution designs, documenting and implementing them Experience in writing JVM based software, primarily in Kotlin and Java. Python and Unix shell know-how is a great plus Experience with at least two of the following tools: Git / DataDog / Prometheus & Grafana / Ansible Experience with at least one of the following approaches to API development: Protobuf & gRPC Rest API (ideally using OpenAPI or Swagger) Experience with at least four of the following systems: Apache Kafka PostgreSQL or other relational database systems DynamoDB Docker Kubernetes AWS ECS / Fargate Elastic Search Linux / Unix Experience with Stream processing (e.g. Kafka Streams, Flink, Spark etc.) is very helpful Fluent in English spoken and written. German is a plus, but not mandatory Additional Information You can choose between either a MacBook Pro or a Microsoft Windows Notebook at a top location right next to the railway station Zurich Hardbrücke. Nexxiot is an equal opportunity employer. Welcoming diversity gives us a competitive advantage in the global marketplace and is an important driver of our success and culture. Our recruitment team is looking forward to receive your CV via our career portal.',\n", + " '[\"Writing\", \"Collaboration\", \"Coordinating\", \"Planning\", \"Microsoft Windows\", \"Timelines\", \"Operations\", \"Integration\", \"Positivity\"]',\n", + " '[\"Apache Flink\", \"Kubernetes\", \"Tooling\", \"Customer Support\", \"Agility\", \"Product Management\", \"Unit Testing\", \"Unix Shell\", \"Continuous Integration\", \"Industrialization\", \"Activism\", \"Functional Requirement\", \"Software Systems\", \"Python (Programming Language)\", \"PostgreSQL\", \"Maintainability\", \"Linux\", \"E (Programming Language)\", \"Levelling\", \"Idealization\", \"Systems Integration\", \"Apache Kafka\", \"Cloud Platform System\", \"Software Engineering\", \"Amazon DynamoDB\", \"Stream Processing\", \"Agile Software Development\", \"Conceptualization\", \"Full Stack Software Engineering\", \"Docker (Software)\", \"Business Requirements\", \"AD Model Builder (ADMB)\", \"Amazon Marketplace\", \"Logistics\", \"Equalization\", \"Scalability\", \"Business Analysis\", \"Technical Documentation\", \"Code Review\", \"Receivables\", \"Software Design\", \"Service Quality\", \"Database Systems\", \"Stand-Up Comedy\", \"Datadog\", \"Grafana\", \"Java Virtual Machine (JVM)\", \"Software Development\", \"Requirements Analysis\", \"Solution Design\", \"Relational Databases\", \"Ansible\", \"Additives\", \"Git Flow\", \"OpenAPI\", \"Swagger UI\", \"Java (Programming Language)\", \"Job Descriptions\", \"Application Programming Interface (API)\", \"Prometheus (Software)\", \"Unix\", \"Software Plus Services\", \"Kotlin\", \"DevOps\", \"RESTful API\"]',\n", + " \"['English', 'Afar', 'Sundanese', 'Luxembourgish', 'Chewa']\"],\n", + " ['75',\n", + " 'software back-end engineer',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.71552032e-01 2.91270584e-01 3.82932365e-01 -6.69109868e-03\\n3.55228841e-01 -2.36295044e-01 2.26878119e-03 3.73446047e-01\\n-7.57382885e-02 -2.04707831e-01 -3.22159790e-02 -2.29785040e-01\\n-3.30118656e-01 -6.83388487e-02 1.30850390e-01 4.15461659e-01\\n2.63428152e-01 1.37489960e-01 -2.57047325e-01 3.84930313e-01\\n2.22024724e-01 -7.94562511e-03 -2.06433833e-01 6.13091886e-01\\n4.15168166e-01 6.67720009e-03 -1.12058461e-01 7.38009950e-03\\n-3.43387604e-01 -2.87937373e-01 3.34174991e-01 7.63941417e-03\\n-1.57293066e-01 -3.32568496e-01 5.75951636e-02 9.28215086e-02\\n-1.49799198e-01 8.00929070e-02 1.27713457e-01 1.74960107e-01\\n-3.93162608e-01 -3.42083246e-01 1.08727805e-01 8.67118537e-02\\n-1.47588775e-01 -1.52126253e-01 2.10592359e-01 9.10648331e-02\\n-2.10765786e-02 -3.92282307e-02 -6.59780800e-01 3.43442112e-01\\n-8.31183717e-02 -2.07812771e-01 2.16222495e-01 4.91686881e-01\\n4.11508940e-02 -5.77887833e-01 -3.88974547e-01 -2.97275513e-01\\n2.31454279e-02 -1.32889286e-01 3.95712890e-02 -1.05743386e-01\\n3.91338438e-01 -1.82317849e-02 -4.78573702e-02 4.16116089e-01\\n-8.47215474e-01 -6.76593408e-02 -1.85629666e-01 -4.92557592e-04\\n-4.70055312e-01 5.79526927e-03 -2.32034683e-01 -1.14024647e-01\\n-3.29488441e-02 3.36776853e-01 -1.81190353e-02 2.23107822e-02\\n-1.55476764e-01 3.64888161e-01 -2.63778642e-02 2.41699785e-01\\n4.27926391e-01 1.31522655e-01 2.00191230e-01 2.82205403e-01\\n-3.44663799e-01 3.55268836e-01 1.06206812e-01 -2.61881053e-01\\n2.20112368e-01 6.26756251e-02 5.29973447e-01 6.86371550e-02\\n-5.19335903e-02 2.03620479e-01 -2.35724568e-01 2.06270605e-01\\n4.91508283e-02 -4.36996609e-01 1.66943334e-02 4.89583462e-02\\n-2.12178469e-01 5.97290578e-04 -6.27001747e-02 2.48238236e-01\\n-2.20404372e-01 4.37218487e-01 3.19672555e-01 -1.38408870e-01\\n-3.07972301e-02 -5.30560970e-01 -1.10544503e-01 -5.11436462e-02\\n-1.35645494e-01 1.19996652e-01 2.81457543e-01 4.55717333e-02\\n2.29059979e-01 6.89450949e-02 1.90196216e-01 8.30775797e-01\\n-4.81531629e-03 1.43571213e-01 -1.09598301e-01 3.17951143e-01\\n2.34613374e-01 -2.92001992e-01 2.36804947e-01 3.17300707e-01\\n1.80220842e-01 -1.24423750e-01 -2.22232983e-01 1.42850056e-01\\n-2.20663503e-01 -1.41652822e-01 -3.27037811e-01 2.30795220e-02\\n-2.36305907e-01 -3.40515554e-01 4.23087716e-01 1.79520994e-01\\n3.51594478e-01 5.37443794e-02 9.51535162e-03 -1.89058054e-02\\n-1.16214804e-01 4.00311351e-01 -5.94490506e-02 3.61276656e-01\\n-3.22990745e-01 -1.89081177e-01 -1.81312338e-01 2.26882532e-01\\n-3.92700918e-02 6.78772926e-02 -8.64418522e-02 -1.64703727e-01\\n3.33705008e-01 6.17516739e-03 -3.46669644e-01 3.09836566e-01\\n4.64579090e-03 -2.21798107e-01 -2.48315468e-01 2.84495652e-01\\n1.46735425e-03 1.85809314e-01 4.42082658e-02 -2.35127211e-01\\n5.95170021e-01 2.13921338e-01 1.51697561e-01 -1.10353552e-01\\n3.08895916e-01 -2.26111159e-01 3.89481217e-01 1.00061595e-01\\n-5.22963941e-01 3.20854336e-01 3.63583281e-03 -9.48745906e-02\\n-6.19910732e-02 -6.23289542e-03 3.94909829e-01 -4.06044781e-01\\n5.53050917e-03 -1.39790267e-01 -4.68294382e-01 -2.78005540e-01\\n-4.05888945e-01 8.81420448e-02 4.97142404e-01 -2.70147741e-01\\n-1.03628926e-01 2.27419496e-01 -4.37061489e-01 -1.60997108e-01\\n2.11786717e-01 5.25522418e-02 3.59879546e-02 5.48441522e-02\\n-1.07693158e-01 -5.52978516e-01 -3.83146703e-02 -4.12344992e-01\\n-4.95637387e-01 -3.90525423e-02 -2.60240853e-01 2.45997369e-01\\n6.05285913e-02 4.61989269e-02 -2.68846571e-01 1.62094191e-01\\n-3.56144667e-01 -4.94657271e-02 1.77361831e-01 8.39198604e-02\\n7.48449983e-03 -4.85855900e-02 -3.68663698e-01 3.33473414e-01\\n-3.12864661e-01 6.86015606e-01 1.62761614e-01 -8.00490975e-01\\n5.09792209e-01 2.72990912e-01 9.67471153e-02 -4.08024341e-01\\n3.85270149e-01 -3.59974176e-01 2.11722385e-02 1.32646307e-01\\n-2.51146883e-01 -2.08991200e-01 3.66078168e-01 -2.22752526e-01\\n-2.28856921e-01 5.99907577e-01 1.60703599e-01 -1.00016877e-01\\n2.43155837e-01 -3.12022746e-01 4.54199240e-02 7.11110905e-02\\n-4.94847409e-02 -2.09228575e-01 -3.13219726e-01 9.92925763e-02\\n-5.45884483e-02 -5.07564366e-01 -1.58324882e-01 -2.00389817e-01\\n-2.44116247e-01 -4.81824845e-01 -2.66392827e-01 4.89725292e-01\\n1.97891027e-01 1.73390254e-01 2.32866406e-02 2.11820845e-02\\n-2.95376331e-02 -6.54248714e-01 -3.60433422e-02 -1.55964505e-03\\n5.41053236e-01 2.92158574e-01 9.50837657e-02 -2.00500414e-01\\n5.22423442e-03 5.12299895e-01 -3.55726033e-01 -4.05372113e-01\\n1.20549180e-01 1.05580322e-01 -7.22159371e-02 -2.10635707e-01\\n1.00136381e-02 4.09225345e-01 -1.87066749e-01 1.82405710e-02\\n-2.51781464e-01 -4.46655117e-02 3.96122158e-01 -3.20786759e-02\\n-3.65153044e-01 -1.97646201e-01 2.50058211e-02 3.15762997e-01\\n-4.66854125e-01 -1.97033182e-01 5.36266327e-01 3.61193776e-01\\n2.29305580e-01 8.84390697e-02 1.61574215e-01 -6.51850998e-02\\n-1.32268608e-01 -3.56735647e-01 1.42277256e-01 1.72209576e-01\\n9.17599201e-02 1.47943720e-02 -1.60055235e-01 -6.15658522e-01\\n-3.21531630e+00 -2.12728217e-01 1.22804336e-01 -2.98083454e-01\\n2.13541210e-01 -3.50307524e-02 -9.24410447e-02 -4.93167713e-02\\n-2.67344326e-01 1.39072552e-01 -2.37250715e-01 -1.90550774e-01\\n1.06130071e-01 2.89520502e-01 1.82777897e-01 2.16425985e-01\\n1.48011312e-01 -3.38041574e-01 -1.27020434e-01 4.07761693e-01\\n-3.02785262e-02 -5.47685266e-01 1.55806541e-01 -2.80483644e-02\\n2.99305737e-01 2.25676537e-01 -3.96532953e-01 -1.09443136e-01\\n-1.26231849e-01 -2.47124657e-01 9.73018538e-03 -2.28223816e-01\\n-1.61810681e-01 3.40885431e-01 2.88150832e-03 -8.12282115e-02\\n6.85799941e-02 -3.54570776e-01 -1.27157778e-01 -4.48255777e-01\\n3.03039718e-02 -5.81036568e-01 1.05025560e-01 -2.21932739e-01\\n6.88779414e-01 -2.38863349e-01 1.40365764e-01 1.66100726e-01\\n1.89708382e-01 1.54716283e-01 -1.99603364e-01 3.39167267e-02\\n-3.83035690e-01 -2.34601557e-01 -6.61461800e-02 -1.97902307e-01\\n4.41991895e-01 5.26856661e-01 -1.59432009e-01 -1.15105910e-02\\n6.83370307e-02 -4.25648957e-01 -3.10858637e-01 -4.61101264e-01\\n-1.10442527e-01 -1.97666124e-01 -7.28578150e-01 -4.36597466e-01\\n-1.48746774e-01 -1.11884661e-01 -1.67722151e-01 5.20081401e-01\\n-4.28153574e-01 -3.76730144e-01 1.77470669e-01 -6.19699836e-01\\n2.83889603e-02 -2.09998652e-01 1.58616647e-01 -1.32310525e-01\\n-2.86271602e-01 -5.62087953e-01 1.07411735e-01 -6.34800494e-02\\n-2.95787632e-01 -2.19763026e-01 -2.46233828e-02 -2.41134852e-01\\n-2.13767067e-01 -4.15614277e-01 4.44184095e-01 3.52122486e-02\\n3.48372221e-01 1.15963683e-01 2.33315155e-01 1.90185934e-01\\n3.27564895e-01 -1.04253747e-01 1.51733905e-01 -3.84352356e-01\\n1.77130848e-01 5.07899560e-02 5.77076316e-01 -3.53925884e-01\\n3.07852533e-02 1.02570504e-01 -3.12118649e-01 -6.47103712e-02\\n4.78083432e-01 1.02319084e-01 -7.60655850e-02 -2.71291705e-04\\n3.63896132e-01 -4.82758850e-01 -2.48481452e-01 2.63567328e-01\\n5.22926860e-02 5.45598626e-01 -7.35057378e-03 -4.49981332e-01\\n-2.76595652e-01 4.24551576e-01 -7.38812685e-02 -7.87267014e-02\\n-9.80214626e-02 7.38268495e-02 -9.36382562e-02 1.02683939e-01\\n1.34772748e-01 -1.73409685e-01 -2.71898299e-01 -5.14883772e-02\\n-1.07444510e-01 1.02417774e-01 2.56944835e-01 -1.68367010e-02\\n-7.96495080e-02 -2.56493777e-01 -1.84047312e-01 9.48862806e-02\\n1.70557544e-01 2.59262651e-01 1.08699098e-01 -2.05751419e-01\\n4.59911749e-02 2.83028573e-01 -9.88159180e-02 1.23980112e-01\\n-2.19104975e-01 6.04601689e-02 -5.67805111e-01 -9.60743502e-02\\n-1.41311049e-01 -3.29733670e-01 1.67957515e-01 2.87787825e-01\\n1.22639768e-01 7.49320388e-02 1.90897379e-02 -5.88104963e-01\\n4.85986233e-01 3.86591405e-02 1.84442759e-01 1.57832965e-01\\n8.49223733e-02 3.86732548e-01 5.59855625e-02 -2.46757865e-02\\n-2.88682759e-01 -7.09388852e-02 -2.12403029e-01 -2.41041854e-01\\n8.88784826e-02 -3.76955807e-01 -1.01718135e-01 4.93554741e-01\\n1.21331379e-01 -2.55023152e-01 -2.16292471e-01 3.44459981e-01\\n1.91898480e-01 -2.48215914e-01 -1.69099540e-01 -2.30740774e-02\\n1.64175734e-01 8.49669054e-02 2.47845650e-01 -2.99475521e-01\\n-1.13549232e-01 -3.72391082e-02 -9.62547436e-02 4.02917773e-01\\n1.77824914e-01 -5.58110476e-02 -2.50293285e-01 -1.96637750e-01\\n4.55981255e-01 -5.52653037e-02 -9.05464590e-02 -1.80311352e-01\\n1.19824909e-01 -1.72574267e-01 -4.25881386e-01 -7.99653679e-03\\n-2.82678157e-02 -1.03793480e-01 8.86163563e-02 -8.37067794e-03\\n4.46492061e-02 5.08746058e-02 -2.72957027e-01 -2.69796610e-01\\n-3.08599532e-01 -2.72410512e-01 1.09905988e-01 -3.47291589e-01\\n-5.94342500e-02 1.25488238e-02 -4.83871609e-01 1.98036402e-01\\n-4.84319150e-01 -3.25461216e-02 8.49067494e-02 1.88526034e-01\\n-4.10423994e-01 -8.27222466e-02 5.83636202e-02 1.80127323e-01\\n-3.97754490e-01 -3.04423094e-01 7.42776021e-02 -8.80911291e-01\\n2.44409680e-01 1.25364274e-01 -3.83193344e-02 -6.24485426e-02\\n1.27528906e-02 -6.39937639e-01 1.18093662e-01 -4.30548936e-01\\n1.36846855e-01 2.44638212e-02 -1.14779845e-01 -3.13872814e-01\\n9.81192812e-02 -3.01212609e-01 -3.76202196e-01 3.32452834e-01\\n-4.69170123e-01 3.62234920e-01 7.22761452e-02 3.16124111e-02\\n1.70641560e-02 -3.60128194e-01 1.34400517e-01 -3.56733531e-01\\n-4.46172118e-01 -2.00980604e-01 -3.27178180e-01 -1.92323342e-01\\n-2.00275946e-02 -1.21833265e-01 -2.67280459e-01 1.20325729e-01\\n2.30594710e-01 1.47440016e-01 -8.54876861e-02 -2.68745542e-01\\n1.25888065e-01 -4.56336677e-01 -9.20768827e-02 -2.98691243e-01\\n-3.92760225e-02 -7.81482235e-02 1.98152348e-01 -1.35454759e-01\\n-6.43529138e-03 -3.14422220e-01 4.48826969e-01 -3.90015244e-01\\n-2.53161818e-01 -5.69062717e-02 8.35730731e-02 -3.96893024e-02\\n7.21535310e-02 -6.21991098e-01 1.28632396e-01 3.00864995e-01\\n4.32584248e-02 8.93807262e-02 1.70158774e-01 4.39386666e-02\\n-1.15548633e-01 2.51294792e-01 -5.33888400e-01 7.29920790e-02\\n7.34216094e-01 1.88444138e-01 -4.53827903e-02 2.05532685e-01\\n1.80256173e-01 3.46677691e-01 6.25255048e-01 -1.58300735e-02\\n-6.36261851e-02 1.95396304e-01 -8.11186060e-03 -5.56946039e-01\\n-7.40337968e-02 -2.21901406e-02 -1.26143485e-01 -2.40240976e-01\\n6.87060058e-01 4.04825062e-01 -4.13822025e-01 -2.91439056e-01\\n3.61502692e-02 -9.95048881e-02 1.95578024e-01 -5.24000861e-02\\n4.81917225e-02 -1.43123582e-01 6.63339198e-01 2.29177531e-02\\n2.12729827e-01 5.21273911e-01 -2.16799572e-01 -3.60699326e-01\\n-1.31314471e-01 1.21853605e-01 1.46436349e-01 4.64680225e-01\\n-9.96639132e-02 1.42780274e-01 -1.70964241e-01 -9.87535343e-03\\n5.24808615e-02 3.65480453e-01 1.88426703e-01 5.98822944e-02\\n2.25514665e-01 2.62132864e-02 2.09612682e-01 4.40072298e-01\\n1.51625708e-01 5.62719107e-01 2.43154541e-01 9.69170108e-02\\n2.98865467e-01 5.84474385e-01 4.25144553e-01 1.06067978e-01\\n4.63227916e-04 1.30929381e-01 1.26784027e-01 -1.55534642e-02\\n5.67120492e-01 3.01957577e-01 3.11675012e-01 8.11192989e-01\\n3.56013745e-01 3.20000678e-01 8.16168189e-01 -6.44952953e-01\\n-4.14494336e-01 1.56656414e-01 5.79559267e-01 -8.77263844e-02\\n-1.00557365e-01 2.27869898e-01 -3.03167403e-01 2.77273148e-01\\n-4.44567323e-01 -4.58748937e-02 -7.66223716e-03 5.48736602e-02\\n1.57649234e-01 2.79718284e-02 -1.81998238e-01 1.28152013e-01\\n-1.78937778e-01 -2.04069078e-01 -3.17970604e-01 -1.29812643e-01\\n-2.28384390e-01 -8.92306194e-02 -3.68082039e-02 -1.11019917e-01\\n-1.62650570e-01 -4.25846338e-01 -1.39929235e-01 -6.24607392e-02\\n2.56200671e-01 -1.11240223e-01 -5.44522069e-02 -1.22756742e-01\\n1.21525697e-01 3.49149644e-01 5.09233117e-01 -7.22431093e-02\\n2.27792561e-03 -8.86761472e-02 -3.47578973e-01 9.58653316e-02\\n1.05713233e-02 5.99187315e-02 1.71711832e-01 3.97532582e-01\\n-3.25093776e-01 3.96073759e-02 7.60146305e-02 2.94799089e-01\\n-3.76254261e-01 -1.27146795e-01 -6.88758567e-02 2.37431064e-01\\n3.66044864e-02 1.65688723e-01 -2.88238704e-01 1.48570761e-01\\n-2.71678150e-01 -4.97985840e-01 3.86771530e-01 -8.33091810e-02\\n-2.14117393e-01 3.84571582e-01 2.27011263e-01 2.31966868e-01\\n-2.88752824e-01 -1.02611370e-01 3.28605585e-02 3.17585021e-01\\n3.31836864e-02 4.34862018e-01 -6.68492541e-02 -1.53409272e-01\\n-2.56073743e-01 3.44886363e-01 -1.47571176e-01 5.51983938e-02\\n-1.33935079e-01 3.75227064e-01 -6.68831393e-02 6.00299649e-02\\n2.49299124e-01 -3.56536247e-02 -2.53164083e-01 -2.66369313e-01\\n-3.13599885e-01 -2.52270013e-01 1.04922302e-01 8.08849111e-02\\n1.73435137e-01 -3.68906528e-01 -6.80530630e-03 -9.99413431e-02\\n-1.09519497e-01 -1.98148310e-01 -1.26212746e-01 1.66497573e-01]]',\n", + " 'Job Informationen Responsibilities: - Design and enhance an intuitive, easy-to-use API (used by our own front-end and by third-party applications) - Collaborate closely with fellow engineers, data scientists, and business people - Contribute your ideas to our product development and system architecture Requirements: - BSc or MSc in Computer Science or equivalent - Proficiency in at least one object-oriented programming language (preferably Python) and at least one scripting language - In-depth understanding of basic data structures and algorithms - Familiarity with software engineering best practices (clean code, code review, test-driven development, ...) and version control systems - Experience with web development, API design, and third-party integration - Advanced knowledge of relational databases - Some experience with the technologies we’re using is a plus: - Python, Django, Flask, SQLAlchemy, Pytest - PostgreSQL, PostGIS - JavaScript, Angular, HTML5, CSS3, Bootstrap - Git, Bitbucket, CircleCI - Worked previously in ‘agile’ team(s) and are looking forward to doing it again, - Are comfortable working in English and German; you have a great read, good spoken command of it. Benötigte Skills Englisch JavaScript Angular HTML5 CSS3 Bootstrap PostgreSQL Python',\n", + " '[\"Collaboration\", \"Integration\"]',\n", + " '[\"Bitbucket\", \"Control Systems\", \"MSC Software\", \"Test-Driven Development (TDD)\", \"Agility\", \"Circleci\", \"API Design\", \"Computer Science\", \"Object Oriented Programming Language\", \"Good Agricultural Practices\", \"Data Engineering\", \"Version Control\", \"PostgreSQL\", \"Python (Programming Language)\", \"HTML5\", \"Systems Architecture\", \"Web Development\", \"Flask (Web Framework)\", \"Software Engineering\", \"Django (Web Framework)\", \"Object-Oriented Programming (OOP)\", \"Bootstrap (Front-End Framework)\", \"JavaScript (Programming Language)\", \"SQLAlchemy\", \"Code Review\", \"Adapter Scripting Language\", \"PostGIS\", \"Data Structures\", \"Front End (Software Engineering)\", \"Angular (Web Framework)\", \"Relational Databases\", \"Algorithms\", \"Git Flow\", \"Application Programming Interface (API)\", \"Agile Product Development\"]',\n", + " \"['English', 'Greenlandic', 'Akan', 'Chuang', 'Pali']\"],\n", + " ['16',\n", + " 'software engineer business data events',\n", + " 'Zürich',\n", + " 'Enterprise Software & Network Solutions',\n", + " 'www.avaloq.com',\n", + " '[[-1.91104650e-01 2.25271225e-01 5.89884579e-01 1.13143306e-02\\n5.50288737e-01 -1.07360438e-01 -5.49557582e-02 3.53687912e-01\\n-5.68057783e-03 -3.53976190e-01 -6.66690916e-02 -2.06283987e-01\\n-6.52140528e-02 1.13803282e-01 1.33876234e-01 2.86508203e-01\\n2.07377613e-01 1.70513123e-01 -1.35549843e-01 3.60378802e-01\\n1.63065881e-01 -5.70979938e-02 1.39258310e-01 7.63423145e-01\\n4.20967400e-01 9.03721601e-02 -9.48430896e-02 -6.79137558e-02\\n-2.77748376e-01 -2.68304706e-01 5.12581050e-01 1.23132959e-01\\n-8.00701380e-02 -3.92657846e-01 1.00996882e-01 -8.78694355e-02\\n-3.47456396e-01 -5.31649105e-02 -1.13787040e-01 1.70788139e-01\\n-4.25675213e-01 -2.20063150e-01 -3.58525924e-02 3.11442986e-02\\n-2.09038854e-01 -3.25879991e-01 -7.64228478e-02 -1.11904919e-01\\n1.51222244e-01 -5.05765975e-02 -5.80470681e-01 3.11546206e-01\\n-2.55757749e-01 -2.45741457e-01 2.38467842e-01 6.60135031e-01\\n2.61558946e-02 -4.47333366e-01 -5.18018365e-01 -3.61129850e-01\\n3.93479764e-02 -1.96594447e-01 8.89007002e-03 -2.75045574e-01\\n2.06544295e-01 3.66032124e-02 1.11073837e-01 3.36233914e-01\\n-7.84965396e-01 4.05319072e-02 -1.14564031e-01 2.81319004e-02\\n-3.14257711e-01 -1.35130569e-01 -2.72363931e-01 -1.12676941e-01\\n-1.91045240e-01 4.88303721e-01 1.14931889e-01 1.96017101e-02\\n-1.80016637e-01 2.69780278e-01 -1.79371983e-01 4.58454430e-01\\n1.52707130e-01 1.48835257e-01 1.71350271e-01 3.26086402e-01\\n-3.99997622e-01 5.14149487e-01 7.41990209e-02 -2.58566141e-01\\n2.52426803e-01 1.11026600e-01 4.08997983e-01 -7.33221173e-02\\n1.69006810e-02 5.15300259e-02 -1.77071899e-01 2.78317183e-01\\n1.46823570e-01 -3.00002724e-01 3.54490951e-02 -1.45677224e-01\\n6.04247712e-02 5.01459725e-02 -7.75469393e-02 1.61639258e-01\\n-1.89987630e-01 3.40027034e-01 1.63327247e-01 -2.28514254e-01\\n-9.51029733e-02 -5.16787827e-01 -2.75141560e-02 -1.22872874e-01\\n-1.47055313e-02 1.37265921e-01 1.75416514e-01 1.46065950e-01\\n2.39557832e-01 7.83035904e-02 1.60299540e-01 7.38087058e-01\\n-3.60017866e-02 3.23574841e-02 -2.64268339e-01 3.03454995e-01\\n1.14140645e-01 -2.31558070e-01 1.82344019e-01 1.91870868e-01\\n-4.74690422e-02 -6.92424923e-02 -2.42338881e-01 3.71702373e-01\\n-6.89632744e-02 -2.31614977e-01 -2.81543255e-01 1.86241776e-01\\n-5.23010157e-02 -3.81986558e-01 5.18738747e-01 2.29265884e-01\\n2.07297742e-01 -5.44483215e-02 -2.96435840e-02 -7.35451579e-02\\n-7.12790936e-02 1.37056276e-01 -1.88476928e-02 2.33056173e-01\\n-3.00991833e-01 -3.17959428e-01 -1.92559794e-01 6.40818924e-02\\n-2.39642829e-01 1.39869004e-01 -1.01948723e-01 -4.06477377e-02\\n2.17627555e-01 9.05688405e-02 -3.60501289e-01 2.38868505e-01\\n-4.82646376e-02 -5.02809100e-02 9.87699628e-02 3.37118864e-01\\n-2.01765716e-01 1.32161558e-01 -3.44580896e-02 -2.06862450e-01\\n5.96211076e-01 1.82913855e-01 1.48873270e-01 4.11691554e-02\\n2.40312397e-01 1.80903450e-03 1.62605733e-01 9.29873511e-02\\n-6.85128689e-01 3.31892133e-01 -3.04754786e-02 -1.93754464e-01\\n1.33941770e-01 -3.12536582e-02 3.10086012e-01 -2.13648513e-01\\n9.08349603e-02 -1.39696658e-01 -4.08832014e-01 -3.44101250e-01\\n-8.45905095e-02 4.04238701e-02 2.98557580e-01 -4.96244222e-01\\n-1.27827257e-01 2.40074247e-01 -3.67813826e-01 -7.00937882e-02\\n1.75393507e-01 2.18247339e-01 6.67142347e-02 6.55681491e-02\\n-1.71543255e-01 -4.68551904e-01 4.06255499e-02 -4.02587593e-01\\n-3.41322005e-01 -1.10598765e-02 -3.64776671e-01 2.34177515e-01\\n7.88938999e-02 -7.96585605e-02 -6.54369593e-02 9.76237506e-02\\n-2.35238954e-01 -4.31889575e-03 1.03268303e-01 3.79081964e-02\\n3.50548863e-01 7.49245286e-02 -3.95155042e-01 4.32843089e-01\\n-2.21912950e-01 6.24888480e-01 1.80369943e-01 -9.02102113e-01\\n5.07815957e-01 3.26111287e-01 -8.95737857e-02 -4.26269323e-01\\n4.40132976e-01 -4.00146961e-01 4.77322526e-02 1.47844896e-01\\n-3.94989997e-01 -3.08719635e-01 2.63617814e-01 -1.19687527e-01\\n-2.32213289e-01 4.46671426e-01 3.62101197e-02 1.35341182e-01\\n1.68025970e-01 -3.35302800e-01 -2.31776357e-01 -6.63553327e-02\\n-5.92000559e-02 -2.36630082e-01 -5.45124531e-01 -2.08818875e-02\\n-1.14121214e-01 -4.63573337e-01 -5.73052056e-02 -3.57771814e-01\\n-1.95958614e-01 -2.96843797e-01 -1.95162594e-01 2.52563477e-01\\n2.28455871e-01 1.33433253e-01 2.32611932e-02 9.11801606e-02\\n7.98998177e-02 -6.88568413e-01 6.44074157e-02 1.51260346e-01\\n4.40051764e-01 2.16872483e-01 1.01137936e-01 -5.13716526e-02\\n3.75595242e-02 6.97380364e-01 -1.94036990e-01 -2.56647587e-01\\n2.17354685e-01 1.27813190e-01 6.27641156e-02 -1.36421353e-01\\n4.20168713e-02 3.13503861e-01 -3.31564665e-01 2.86704004e-02\\n5.36904298e-03 -1.32174054e-02 4.76532847e-01 5.19754775e-02\\n-3.20547491e-01 -1.40128568e-01 -7.72105604e-02 1.21365681e-01\\n-5.98461986e-01 -2.07316756e-01 5.91568172e-01 2.75702387e-01\\n1.37548074e-01 1.29435316e-01 1.17182925e-01 -2.73123831e-02\\n-2.06086278e-01 -2.09241778e-01 3.43682528e-01 1.04221180e-01\\n2.05713794e-01 3.50228287e-02 -4.31485176e-02 -6.05880499e-01\\n-3.26159954e+00 -1.72538638e-01 7.10092708e-02 -3.31525385e-01\\n2.92069882e-01 -2.25409612e-01 1.15612969e-01 -2.31769234e-02\\n-2.63314247e-01 4.04323563e-02 -1.97155178e-01 -1.45481795e-01\\n1.25695750e-01 1.13246724e-01 9.81977135e-02 1.68032944e-01\\n6.84211403e-02 -2.06251323e-01 3.19968611e-02 3.62278163e-01\\n-2.29932547e-01 -6.88806772e-01 1.25433728e-01 -3.84139828e-03\\n1.63343191e-01 2.02503607e-01 -4.04854208e-01 -8.04904774e-02\\n-1.73921928e-01 -2.12761387e-01 -2.79457420e-02 -3.31653148e-01\\n-1.57393157e-01 2.41190642e-01 1.94800138e-01 -1.35780275e-01\\n6.90654069e-02 -4.63961899e-01 -9.88506004e-02 -5.46691120e-01\\n2.09500492e-01 -6.36404574e-01 2.22675819e-02 -1.18378446e-01\\n7.22521067e-01 -3.03569108e-01 1.22286491e-01 1.64847583e-01\\n2.45710582e-01 1.44990236e-01 6.19171411e-02 -1.50625445e-02\\n-2.28378803e-01 -3.31389904e-01 -1.07836932e-01 -1.36333361e-01\\n4.30780649e-01 4.32378531e-01 -1.48321554e-01 1.44804701e-01\\n7.60335401e-02 -2.98072249e-01 -3.70201468e-01 -2.74137914e-01\\n-1.14738956e-01 -2.53664076e-01 -7.18594551e-01 -4.44676965e-01\\n-1.87793493e-01 -2.12780461e-01 -1.76433980e-01 6.04597092e-01\\n-3.01532626e-01 -3.36729109e-01 -8.74382854e-02 -4.83342826e-01\\n3.53918552e-01 -1.14479214e-01 2.33005565e-02 -1.58610314e-01\\n-1.97149411e-01 -4.85279500e-01 9.53139961e-02 -7.30241239e-02\\n-1.28713965e-01 -2.67821550e-01 4.91779484e-02 -1.89734131e-01\\n-3.04274529e-01 -5.41955471e-01 4.25041050e-01 1.76238194e-02\\n3.30998302e-01 1.35763988e-01 3.45253825e-01 -3.58940512e-02\\n2.41688758e-01 -6.49173930e-02 -8.70448723e-02 -3.63057196e-01\\n3.62509042e-02 9.14106891e-03 4.99241352e-01 -2.33211234e-01\\n-3.31291631e-02 1.43452108e-01 -2.41380394e-01 -3.48432995e-02\\n2.85139501e-01 -3.43421474e-02 7.53200147e-03 -5.68813682e-02\\n3.28804135e-01 -2.67332971e-01 -1.49721906e-01 8.65284428e-02\\n4.50118594e-02 5.36115468e-01 -3.59812006e-03 -3.71129215e-01\\n-1.53250426e-01 4.20760125e-01 8.06491151e-02 -1.01141684e-01\\n-1.81138635e-01 6.02976866e-02 -1.93007469e-01 2.98970878e-01\\n5.51952049e-02 -2.53229469e-01 -2.45458871e-01 -1.40272439e-01\\n-9.29873884e-02 3.54534835e-01 2.86041141e-01 3.38246264e-02\\n4.73956354e-02 -4.30611849e-01 -1.34398818e-01 1.47303715e-01\\n1.70360431e-01 4.68289375e-01 1.69550717e-01 -1.71644449e-01\\n-3.21131870e-02 3.07046771e-01 -1.22439452e-01 2.57191837e-01\\n-2.40871489e-01 6.20918423e-02 -5.70222080e-01 -2.73005158e-01\\n-2.35740721e-01 -3.97317708e-01 9.43351090e-02 3.61744106e-01\\n1.13756292e-01 -1.12383552e-02 7.03416839e-02 -4.67679054e-01\\n3.01416516e-01 7.64930472e-02 1.52636588e-01 7.30635375e-02\\n-6.13627955e-03 6.09745383e-01 -1.69100761e-02 -1.53149337e-01\\n-1.02242999e-01 1.29240826e-02 -1.92491993e-01 -1.70512870e-01\\n9.64803323e-02 -4.72850353e-01 -6.92090243e-02 4.87406850e-01\\n1.09044805e-01 -2.99020588e-01 -1.23628736e-01 3.33748728e-01\\n-4.33416888e-02 -1.97118267e-01 -2.53051400e-01 4.90383580e-02\\n3.63614053e-01 1.87947273e-01 3.04749250e-01 -3.75626981e-01\\n2.95814779e-03 -9.39863361e-03 -4.65635844e-02 4.35519278e-01\\n1.16406664e-01 -9.51788947e-03 -1.23558588e-01 -1.92275301e-01\\n5.08605242e-01 2.75412407e-02 -9.50071141e-02 5.10627404e-02\\n8.42717737e-02 -1.44816548e-01 -4.94374901e-01 9.71820951e-02\\n4.66368869e-02 -2.49552578e-01 -2.14861799e-03 1.58285260e-01\\n1.85644016e-01 7.49705359e-02 -5.95128417e-01 -2.18601316e-01\\n-3.39220345e-01 -3.65379415e-02 1.12151667e-01 -4.76320267e-01\\n-5.33669256e-03 -5.10306507e-02 -6.29264295e-01 2.12740347e-01\\n-1.95973694e-01 -1.43745005e-01 1.53202370e-01 5.08390181e-02\\n-2.86069632e-01 9.45396256e-03 1.35232583e-01 2.59672761e-01\\n-3.07804048e-01 -1.74276307e-01 6.54586032e-03 -9.91381049e-01\\n1.87845469e-01 3.03550698e-02 -1.27887338e-01 1.29680991e-01\\n-4.06414978e-02 -6.92942381e-01 1.17505282e-01 -3.63826752e-01\\n-2.14895338e-01 -9.04371291e-02 -2.52536833e-01 -3.47979546e-01\\n3.94411385e-02 9.59743932e-03 -1.88935935e-01 4.03753489e-01\\n-3.40673715e-01 4.35669065e-01 -1.32329017e-01 1.30729973e-01\\n1.11544088e-01 -2.47792259e-01 1.12777866e-01 -4.38190758e-01\\n-2.82479882e-01 -1.98119223e-01 -3.74101996e-01 -2.95929968e-01\\n-5.98878451e-02 -2.93092579e-01 -1.19012818e-01 6.18605986e-02\\n3.33937556e-01 1.33729905e-01 -1.29205287e-01 -3.62458229e-01\\n1.69575542e-01 -5.40457308e-01 2.30198592e-01 -1.28210127e-01\\n-1.26892716e-01 -6.12140670e-02 2.09212929e-01 8.62802863e-02\\n1.36641920e-01 -3.85998368e-01 2.84716070e-01 -3.66512358e-01\\n-3.15181136e-01 -1.67194635e-01 -5.04035577e-02 1.25146601e-02\\n3.11727792e-01 -4.18432206e-01 -2.14082748e-03 2.74862409e-01\\n2.60538131e-01 8.96861330e-02 2.27151543e-01 -7.66113698e-02\\n-8.83215964e-02 2.94792235e-01 -4.18162882e-01 1.65259093e-01\\n7.60153890e-01 1.09358355e-01 7.60658532e-02 2.85158634e-01\\n2.56973416e-01 2.69388139e-01 5.00717282e-01 4.79386672e-02\\n-1.19028293e-01 2.50033140e-01 1.59221850e-02 -5.21474123e-01\\n-1.09588638e-01 -7.16493130e-02 -1.92833632e-01 -3.23404968e-01\\n6.44350886e-01 4.67520118e-01 -5.06553769e-01 -1.73717499e-01\\n-2.66003728e-01 -1.40803725e-01 1.44920319e-01 -7.50689059e-02\\n1.37838600e-02 -5.97605258e-02 4.68942523e-01 -1.26253605e-01\\n2.14266628e-01 5.31075597e-01 -1.86657637e-01 -3.47286224e-01\\n-1.24417886e-01 1.53236568e-01 -1.95224397e-02 4.33477342e-01\\n-2.21219495e-01 2.33311713e-01 9.33096409e-02 1.77044272e-01\\n-9.86758471e-02 6.94394112e-02 1.35936245e-01 9.52033103e-02\\n1.52097076e-01 1.66829675e-03 3.52826059e-01 3.87930453e-01\\n2.76531160e-01 3.96166533e-01 3.64475697e-01 1.24166861e-01\\n3.91465247e-01 5.62030435e-01 3.07321250e-01 6.72038794e-02\\n-5.79363704e-02 2.63212249e-03 1.57451779e-01 -4.07832377e-02\\n3.35983723e-01 4.08975899e-01 1.33378997e-01 8.72005939e-01\\n3.71215165e-01 3.48622501e-01 7.47449160e-01 -6.23856068e-01\\n-4.46658254e-01 3.16884965e-02 4.78175730e-01 -4.13712263e-01\\n2.49979869e-02 1.53403953e-01 -3.06449413e-01 2.79428363e-01\\n-4.80152488e-01 -1.69091254e-01 2.16486864e-02 1.04581207e-01\\n-3.51752862e-02 -7.25307614e-02 -2.02012464e-01 2.11214930e-01\\n-9.08846632e-02 -1.30395770e-01 -3.91294450e-01 -1.48296446e-01\\n-1.89257085e-01 -1.11438692e-01 1.22827049e-02 -1.00664228e-01\\n-2.56660953e-02 -3.71397108e-01 -7.60997087e-02 -3.88763472e-02\\n3.47960740e-01 -6.50051981e-02 -3.67048234e-02 -9.71247032e-02\\n2.41734654e-01 2.34557673e-01 5.88870406e-01 5.74958287e-02\\n1.06842056e-01 -2.58659005e-01 -2.17410609e-01 1.60957932e-01\\n1.75131649e-01 9.63894874e-02 2.90348418e-02 2.45911419e-01\\n-3.41180503e-01 -1.26341254e-01 1.88839585e-01 3.19260865e-01\\n-4.12410438e-01 -2.25242097e-02 -6.72351345e-02 1.75769627e-01\\n1.10682428e-01 2.09808290e-01 -3.08911473e-01 5.23173064e-02\\n-2.06504524e-01 -4.43239391e-01 3.35786313e-01 -1.11409143e-01\\n-9.95671973e-02 1.97682194e-02 2.82165438e-01 1.20935649e-01\\n-2.67954499e-01 1.45463087e-02 -5.73985651e-02 8.98494869e-02\\n2.59898715e-02 3.76415074e-01 -2.24367201e-01 -2.51332343e-01\\n-2.52039790e-01 2.15256810e-01 -9.52642858e-02 1.63145423e-01\\n-2.35626549e-02 4.01792526e-01 2.37347428e-02 8.10715556e-02\\n3.67659450e-01 -1.90224815e-02 -2.72442818e-01 -2.54267246e-01\\n-2.98907518e-01 -2.08814263e-01 -1.41596138e-01 -7.61095211e-02\\n1.85458571e-01 -3.50936562e-01 -2.29051430e-02 -8.71997774e-02\\n-1.46647722e-01 -3.01208168e-01 -1.66410524e-02 -8.58882442e-02]]',\n", + " 'Writing the future. Together. Avaloq is a value-driven fast-paced fintech company and we are committed to develop the banking technology of tomorrow. Leading banks and wealth managers in all major financial centres rely on our software and services, and this unique community grows every day. Your team The Application Framework Team is mainly responsible for software frameworks used in the Avaloq Banking Suite (ABS) for the business process modelling and data management. We enhance and maintain the frameworks and tools that enable other teams to create and process their business specific logic. The application framework team works on the central core of the ABS. Business Data Events is a newly built, high-volume data streaming platform. It streams all relevant business events from the Avaloq core banking system to a series of microservices. The data streaming platform is designed for high throughput (100 million messages per hour) and for low latency (below 20 ms). Our technology stack is based on Java (Spring Boot), Oracle and PL/SQL, Docker, Kubernetes, Apache Kafka, Google Protocol Buffers, Prometheus, Grafana, Angular and more. Your mission Further develop and optimize the data streaming platform Drive and enhance the core frameworks of Avaloq’s current and future products Participate in architectural design Understand Avaloq’s architectural strategy and translate it to scalable and maintainable solutions Support and consult our stakeholders – customers and internal business teams Constant self-development What you need University degree in Computer Science or equivalent experience Strong software engineering background, including understanding of modern software engineering principles and design patterns Strong analytical, abstract thinking and problem-solving skills Knowledge and hands-on experience in Java Solid understanding of relational databases Strong communication abilities and proficient English language skills You will get extra points for the following Experience with concurrent and distributed systems Experience with Spring Boot Experience with PL/SQL Experience with microservice architectures Understanding of agile methodologies Now let’s talk about perks and compensation With our compensation model, we want to share the success of the company with all our employees. We offer competitive base salaries and if you prove yourself as a super-star, you might be entitled to an extraordinary achievement reward. Place of work Zurich Don’t be shy – apply! Avaloq Evolution AG Kristin Stengel, Talent Acquisition Partner 8027 Zürich www.avaloq.com/en/open-positions Please only apply online. Note to Agencies: All unsolicited résumés will be considered direct applicants and no referral fee will be acknowledged.',\n", + " '[\"Writing\", \"Problem Solving\", \"Communications\", \"Positivity\", \"Consulting\"]',\n", + " '[\"PL/SQL\", \"Distributed File Systems\", \"Kubernetes\", \"Tooling\", \"Low Latency\", \"Spring Boot\", \"Protocol Buffers\", \"Computer Science\", \"Analytics\", \"Data Streaming\", \"Application Frameworks\", \"Distributed Design Patterns\", \"Data Driven Instruction\", \"Wealth Management\", \"Event Data Recorder\", \"Talent Acquisition\", \"Component Object Model (COM)\", \"Maintainability\", \"Architectural Design\", \"Translations\", \"Apache Kafka\", \"Microservices\", \"Software Engineering\", \"Docker (Software)\", \"Agile Methodology\", \"Business Process\", \"High Throughput Screening\", \"Library For WWW In Perl\", \"Scalability\", \"Clinical Data Management\", \"Grafana\", \"Angular (Web Framework)\", \"Business Events\", \"Relational Databases\", \"Banking\", \"Software Modernization\", \"Java (Programming Language)\", \"Prometheus (Software)\", \"Abstractions\", \"EN 1993 Building Codes\", \"International Business\"]',\n", + " \"['English', 'Oromo', 'Armenian', 'Latin', 'Tsonga']\"],\n", + " ['49',\n", + " 'computer vision engineer (full time)',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-4.45199460e-02 2.53578544e-01 4.49163765e-01 2.28471886e-02\\n4.94733632e-01 -2.33720586e-01 -1.89702436e-02 4.78694022e-01\\n6.19066060e-02 -3.51119220e-01 -3.57598402e-02 -1.82676017e-01\\n-1.61978647e-01 -1.28702983e-01 5.14437854e-02 3.33195746e-01\\n3.34007859e-01 7.06753880e-02 -2.46245742e-01 4.04378504e-01\\n1.16974361e-01 -1.54564753e-02 2.36946166e-01 6.25411093e-01\\n2.72680014e-01 3.71392891e-02 4.41225799e-04 1.75664708e-01\\n-3.22847933e-01 -3.01323593e-01 3.22281599e-01 4.16657738e-02\\n-1.01327330e-01 -3.00870955e-01 4.77856817e-03 -1.90298054e-02\\n-2.39199117e-01 3.26819867e-02 2.45515574e-02 2.22641960e-01\\n-3.87051553e-01 -2.53288865e-01 3.00907865e-02 -1.25161028e-02\\n-3.15129280e-01 -3.09946746e-01 8.43016505e-02 3.16130072e-02\\n1.17176823e-01 -7.52130225e-02 -3.69128555e-01 3.82106960e-01\\n-1.56408951e-01 -2.61538506e-01 2.71881998e-01 7.22913682e-01\\n-1.18294202e-01 -4.83134300e-01 -3.20406914e-01 -2.85137713e-01\\n2.71461606e-02 -1.20565645e-01 3.68537405e-03 -1.74719647e-01\\n2.86328614e-01 -1.01646475e-01 -4.87793721e-02 3.49418670e-01\\n-5.83136857e-01 -1.77022085e-01 -2.35288873e-01 2.23267507e-02\\n-3.35034758e-01 -7.94623271e-02 -2.45257244e-01 -2.08972216e-01\\n7.19378516e-02 4.21182364e-01 1.13111377e-01 -4.45759781e-02\\n-5.20855114e-02 2.59793222e-01 -1.52258590e-01 2.23873332e-01\\n1.96307078e-01 1.89774305e-01 8.30917060e-02 3.19306910e-01\\n-2.83086479e-01 3.56181681e-01 1.02036975e-01 -2.72534013e-01\\n2.16717497e-01 1.33559063e-01 5.40299356e-01 1.44855320e-01\\n8.17441288e-03 2.45541751e-01 -1.59091860e-01 3.28688443e-01\\n2.79789805e-01 -3.66657197e-01 2.56633274e-02 -6.21857634e-03\\n-5.77238835e-02 -1.25905424e-01 -2.64480226e-02 3.39684546e-01\\n-2.23558202e-01 3.84542257e-01 1.65653139e-01 -2.73792475e-01\\n6.65982813e-02 -5.32570541e-01 -2.25586891e-01 -6.38000742e-02\\n-3.26991677e-02 1.82771310e-01 3.53375077e-01 1.69033706e-01\\n2.92112112e-01 1.03971250e-01 2.45640278e-01 1.00900280e+00\\n-3.38465869e-02 1.10935979e-01 -2.00798258e-01 3.71562213e-01\\n1.32326692e-01 -1.98088154e-01 2.62485474e-01 3.18401575e-01\\n1.49826214e-01 -1.39433458e-01 -3.32545005e-02 1.84985578e-01\\n-1.38524950e-01 -2.42323712e-01 -3.87332499e-01 2.08865002e-01\\n-2.77592957e-01 -3.22009176e-01 4.71766680e-01 1.92579389e-01\\n1.43880382e-01 -2.25410759e-02 -1.21031672e-01 -1.39741868e-01\\n-2.29313448e-01 1.99384660e-01 3.47096100e-02 3.44619006e-02\\n-3.52455914e-01 -2.61267871e-01 -2.04699442e-01 2.92277664e-01\\n-2.29927823e-01 4.17922772e-02 -1.95326716e-01 -9.22080949e-02\\n2.69412309e-01 1.10551650e-02 -3.61699402e-01 2.79871225e-01\\n-1.13069154e-01 -1.04587138e-01 -6.03620932e-02 3.02542657e-01\\n-1.56907827e-01 3.00584137e-01 5.92649952e-02 -1.32872999e-01\\n5.48436344e-01 7.38824606e-02 -1.98764820e-02 -2.86634862e-01\\n3.99399161e-01 -2.77587827e-02 2.37405866e-01 2.40145013e-01\\n-6.00477278e-01 3.72687370e-01 -1.64264068e-02 -3.04824971e-02\\n1.37578715e-02 -3.92401218e-02 3.18249017e-01 -3.22180450e-01\\n-4.11208011e-02 -2.10812196e-01 -3.25228721e-01 -3.21355820e-01\\n-3.28672558e-01 -4.13750522e-02 3.30580384e-01 -3.09301466e-01\\n-1.98186170e-02 2.07494646e-01 -5.09033322e-01 4.06623408e-02\\n1.40416011e-01 4.46411893e-02 1.37840584e-01 2.01525122e-01\\n-9.87794101e-02 -3.88181746e-01 1.58982560e-01 -3.29851002e-01\\n-5.04849017e-01 1.47050560e-01 -2.11227581e-01 2.18321443e-01\\n7.80130997e-02 9.62084830e-02 -1.19801007e-01 1.13788411e-01\\n-3.57211202e-01 -1.04939491e-01 1.72305793e-01 5.96760884e-02\\n2.38965854e-01 -5.03343754e-02 -4.36227858e-01 3.94812375e-01\\n-1.52534127e-01 5.58346808e-01 7.25155100e-02 -8.92687082e-01\\n4.51715410e-01 2.51279682e-01 -1.57829836e-01 -3.54142547e-01\\n5.43800294e-01 -2.99812734e-01 4.17735353e-02 1.38582900e-01\\n-1.53926834e-01 -1.51991621e-01 3.03331226e-01 -1.30024515e-02\\n-2.72752106e-01 5.76698363e-01 1.05462648e-01 1.30559891e-01\\n2.76257783e-01 -2.12919816e-01 -8.81645381e-02 -1.13807647e-02\\n-8.48008394e-02 -1.99426115e-01 -3.57630044e-01 -4.21588123e-02\\n-1.62616655e-01 -4.31654483e-01 -1.03400253e-01 -4.27842110e-01\\n-2.06631601e-01 -4.31984782e-01 -7.36770779e-02 2.48168021e-01\\n1.93054110e-01 2.41362736e-01 5.66776134e-02 -4.36156690e-02\\n-1.51139393e-01 -6.24638081e-01 -2.24906459e-01 1.08244032e-01\\n4.66832489e-01 2.82690108e-01 9.54642445e-02 5.39352596e-02\\n1.52851149e-01 4.87832516e-01 -2.77142584e-01 -1.60186335e-01\\n9.09691602e-02 2.37037599e-01 -1.11110620e-01 -1.26432404e-01\\n3.61029245e-02 3.70806366e-01 -2.30201423e-01 8.31017718e-02\\n-2.07171682e-02 -1.18608393e-01 3.55936229e-01 4.19586487e-02\\n-3.62822890e-01 -4.29231316e-01 1.60050262e-02 2.50619739e-01\\n-4.81199205e-01 -1.40080467e-01 4.60315287e-01 1.35651052e-01\\n1.74928799e-01 4.40427028e-02 3.46204996e-01 -1.97583869e-01\\n-1.81538984e-01 -1.68765068e-01 7.45366961e-02 1.15490735e-01\\n1.57162115e-01 3.41787674e-02 -6.67351112e-02 -6.28161371e-01\\n-3.86258435e+00 -3.11285146e-02 1.36698753e-01 -1.47151843e-01\\n2.51281470e-01 -9.41805243e-02 -4.46972139e-02 -8.81509855e-02\\n-3.95642281e-01 -2.41343211e-02 -2.26183295e-01 -7.80322254e-02\\n9.50294957e-02 2.81382829e-01 1.94763243e-01 2.36200690e-01\\n8.80523119e-03 -3.29480976e-01 -4.34892289e-02 4.26452577e-01\\n-3.20264958e-02 -5.43991983e-01 1.50532514e-01 -3.08822375e-02\\n3.26255262e-01 1.73929393e-01 -4.81309980e-01 -8.46197978e-02\\n-1.93737566e-01 -7.11372867e-02 1.20116808e-02 -2.97130328e-02\\n-1.67885244e-01 3.70358586e-01 1.30138516e-01 2.47657616e-02\\n1.43762887e-01 -3.16055566e-01 9.86832529e-02 -1.55498996e-01\\n-8.34699348e-02 -5.55564165e-01 -4.97909747e-02 -7.26704970e-02\\n7.11585820e-01 -3.82367671e-01 1.24290012e-01 1.22199275e-01\\n1.68158010e-01 1.43499926e-01 -6.65516928e-02 4.36929753e-03\\n-3.16853404e-01 -4.53005023e-02 -1.10458210e-01 -1.93154469e-01\\n4.53161001e-01 6.22525156e-01 -6.72680214e-02 -1.28996238e-01\\n-2.07481489e-01 -3.53593051e-01 -5.06249368e-01 -3.20028156e-01\\n-4.21099104e-02 -1.20289490e-01 -6.25646651e-01 -5.13421834e-01\\n-3.91868167e-02 -6.94408864e-02 -1.18487090e-01 5.40641487e-01\\n-3.97332072e-01 -5.37346721e-01 1.25258509e-02 -4.10104930e-01\\n8.26385543e-02 -2.27582172e-01 3.42813432e-02 -5.82169928e-02\\n-2.86071897e-01 -5.72278559e-01 4.33632322e-02 -7.65031129e-02\\n-2.38334626e-01 -2.81422615e-01 1.79058202e-02 -2.28815511e-01\\n-2.71001548e-01 -3.79899889e-01 4.24483776e-01 2.69379634e-02\\n3.21651846e-01 1.10860258e-01 4.50338155e-01 2.05272034e-01\\n4.30359572e-01 -2.09826708e-01 1.82010636e-01 -4.29158032e-01\\n1.41185209e-01 -4.48361039e-02 7.12547779e-01 -3.56685400e-01\\n1.34797275e-01 2.15526357e-01 -1.76097199e-01 5.74873835e-02\\n3.92780542e-01 2.20991429e-02 6.66944236e-02 -3.30536425e-01\\n3.85195255e-01 -3.17046106e-01 -2.88834959e-01 6.80068880e-02\\n1.53194830e-01 6.76063418e-01 1.59358587e-02 -3.81790221e-01\\n-2.86345661e-01 2.92706639e-01 -2.20739648e-01 -3.20455939e-01\\n-1.71031862e-01 1.33911252e-01 -2.85784572e-01 1.95194989e-01\\n1.08252317e-01 -1.32694602e-01 -4.19813097e-01 -4.27725650e-02\\n-4.18784618e-02 3.05546492e-01 1.85780734e-01 -1.35406936e-02\\n-1.10184811e-01 -2.75671631e-01 -1.17044114e-01 6.19782992e-02\\n1.82298765e-01 1.05232082e-01 1.91493437e-01 -3.62312198e-01\\n-8.75146687e-02 3.13670903e-01 -1.00928351e-01 1.51601508e-01\\n-2.14225367e-01 1.46357343e-01 -4.89362568e-01 -2.27101684e-01\\n-2.53600806e-01 -3.01161617e-01 1.54393211e-01 3.82084101e-01\\n2.00864047e-01 -5.15386350e-02 1.13881215e-01 -4.57247645e-01\\n4.67183650e-01 2.29351539e-02 1.08549513e-01 2.17056736e-01\\n1.03048593e-01 5.32663643e-01 2.34292805e-01 -2.16075718e-01\\n-1.38247952e-01 6.37295172e-02 -1.01496525e-01 -2.37244308e-01\\n-8.72444659e-02 -3.85549545e-01 -9.32868719e-02 3.06036234e-01\\n-8.15329701e-03 -2.44349629e-01 -2.90359378e-01 1.70173451e-01\\n2.87488382e-02 -2.62194335e-01 -1.03686117e-01 -1.66410312e-01\\n2.17364192e-01 -3.27882990e-02 2.75742173e-01 -5.13686538e-01\\n5.07480912e-02 -5.83109222e-02 -5.68672083e-02 6.01962566e-01\\n1.11192413e-01 -7.02011678e-03 -2.37424716e-01 -8.63251910e-02\\n3.52439761e-01 -2.98311352e-03 -1.02602309e-02 -7.29222596e-02\\n7.35218078e-02 -2.61009842e-01 -4.68447238e-01 1.46815479e-01\\n3.39784957e-02 -1.13305792e-01 5.84859401e-02 1.17662884e-01\\n1.54165640e-01 4.38535362e-02 -5.30452609e-01 -3.91362667e-01\\n-2.29088008e-01 -6.74734637e-02 -2.67062411e-02 -2.65694946e-01\\n-1.07858621e-01 1.37543697e-02 -5.45885682e-01 1.47259146e-01\\n-3.21557224e-01 1.33827562e-02 -1.04352407e-01 -2.79974891e-03\\n-3.12836468e-01 -1.28245473e-01 9.62707773e-02 1.21510096e-01\\n-2.26182163e-01 -2.30573222e-01 -4.09077741e-02 -8.92217696e-01\\n1.48193657e-01 2.38900725e-02 -1.83519810e-01 1.79671749e-01\\n2.52187569e-02 -6.92818880e-01 2.25948632e-01 -4.84109074e-01\\n4.83890111e-03 6.99876547e-02 -2.22794905e-01 -3.92886192e-01\\n1.60767838e-01 3.90486382e-02 -3.01381171e-01 3.73586565e-01\\n-3.71803612e-01 3.29057753e-01 2.48347111e-02 5.71478531e-02\\n6.94408119e-02 -2.78885931e-01 5.08892350e-02 -4.64489728e-01\\n-3.23942274e-01 -9.36911851e-02 -3.27467471e-01 -1.11144111e-01\\n8.59071314e-02 -2.11560383e-01 -2.12508336e-01 4.89425883e-02\\n1.23764604e-01 9.46875736e-02 -9.19894278e-02 -2.50189662e-01\\n-1.73549838e-02 -3.37624073e-01 1.78159446e-01 -2.23119602e-01\\n1.12301886e-01 -1.11918882e-01 1.49207219e-01 -4.00033928e-02\\n8.44645500e-02 -1.40822694e-01 5.16744137e-01 -1.97700441e-01\\n-3.03735316e-01 4.40364107e-02 9.60303470e-02 -1.46501586e-01\\n2.13451371e-01 -3.45829934e-01 3.87047902e-02 4.16482806e-01\\n6.74213916e-02 2.18594596e-01 2.52972096e-01 -1.22400083e-01\\n-9.13984925e-02 5.16748354e-02 -3.60307276e-01 9.44281369e-03\\n7.06054270e-01 1.46783665e-01 2.26836115e-01 -8.88413116e-02\\n1.20893950e-02 3.34818870e-01 5.85955322e-01 7.02136084e-02\\n-1.70974985e-01 2.60516614e-01 5.94239943e-02 -5.52925825e-01\\n1.41504221e-02 -1.08853966e-01 -3.64326149e-01 -2.75977105e-01\\n5.73838294e-01 3.85264307e-01 -2.12329865e-01 -2.55568981e-01\\n-4.15208898e-02 -1.11294009e-01 1.23295330e-01 1.20843891e-02\\n1.67866901e-01 -1.95140839e-01 5.64127505e-01 -9.41439942e-02\\n1.51462823e-01 4.21215355e-01 -1.29115790e-01 -3.01326513e-01\\n-6.17893692e-03 9.62306336e-02 5.58186807e-02 4.52751309e-01\\n-1.69439569e-01 4.07469600e-01 1.59339122e-02 2.40376126e-02\\n-7.52622709e-02 -5.41412346e-02 1.95916906e-01 -1.31267197e-02\\n6.29129708e-02 3.83339189e-02 3.85002762e-01 5.00687718e-01\\n2.23313496e-01 5.34716606e-01 2.48181045e-01 -8.77909269e-03\\n4.65560615e-01 4.94104892e-01 4.03015673e-01 3.15261036e-01\\n1.59293450e-02 3.73637513e-03 1.32865861e-01 -7.85272717e-02\\n3.95679384e-01 3.61040384e-01 1.74423754e-01 8.67026925e-01\\n3.92566919e-01 2.62970239e-01 8.98395717e-01 -5.95559597e-01\\n-2.58518547e-01 1.70654491e-01 4.91918415e-01 -3.00033629e-01\\n-1.77071884e-01 4.92918789e-02 -2.34098464e-01 1.67776331e-01\\n-5.10683060e-01 -6.91286102e-02 -2.03547142e-02 1.76612288e-01\\n-1.23292357e-01 -5.02124615e-02 -2.32744724e-01 1.15238391e-01\\n-1.06125690e-01 -7.65387043e-02 -4.07027394e-01 -1.17635131e-01\\n-3.39241385e-01 -2.01241583e-01 -1.81233317e-01 -2.56495457e-02\\n-1.32792234e-01 -3.26987714e-01 -1.66555688e-01 7.06678852e-02\\n3.37275922e-01 -3.33824456e-01 -1.88584998e-01 -2.72718489e-01\\n1.09660089e-01 2.33440265e-01 4.91702825e-01 1.32453620e-01\\n2.85513043e-01 -2.24573195e-01 -1.01670139e-01 2.39484198e-02\\n1.20291881e-01 -3.13973464e-02 -1.18918959e-02 5.73906660e-01\\n-4.20657009e-01 -3.32704186e-02 6.89393701e-03 4.06244189e-01\\n-4.63596761e-01 -1.14054173e-01 -5.20697869e-02 2.39116535e-01\\n5.26213422e-02 1.94754630e-01 -1.58774540e-01 8.00643191e-02\\n-2.59348154e-01 -5.15514195e-01 2.85791248e-01 -1.63515434e-01\\n-1.46204829e-02 1.58152863e-01 1.99903309e-01 1.27217099e-01\\n-3.98650408e-01 -1.11395895e-01 -3.38161364e-02 3.02660614e-01\\n-4.17651534e-02 2.37414777e-01 -2.98949182e-01 -2.65762389e-01\\n-1.37092426e-01 2.46858373e-01 -2.22899795e-01 1.28374591e-01\\n-7.08974153e-02 3.19888681e-01 3.80670168e-02 1.01382710e-01\\n3.65393966e-01 -5.59828319e-02 -2.25760445e-01 -2.72890389e-01\\n-1.93107709e-01 -2.63907194e-01 -1.49633303e-01 -3.74980457e-02\\n2.03575328e-01 -2.53228992e-01 2.72581559e-02 3.87494713e-02\\n-2.20258504e-01 -3.94114614e-01 -4.06226963e-02 -1.82148926e-02]]',\n", + " 'WHAT YOU DO Develop new algorithms and improve existing algorithms for visual navigation; Test and optimize the algorithms and running them on embedded Linux (with the supports from our Software Engineers) Test the performance of visual navigation on a drone and have fun Support our customers for testing in Europe and China REQUIREMENT Proven experience as a Computer Vision Engineer (Master or PhD degree) Good knowledge on Visual Odometry, SLAM, SfM, Sensor Fusion Strong programming skills in C/C++, Python, MATLAB, Shell script Good at using Linux and Git Fluent speaking and writing in English (fluent German would be a plus); One position requires fluent Chinese in speaking and writing. Strong problem solving skills and knowledge in hands-on working with mechanical and electronical systems Experience in drones is a plus Knowledge on GNSS or machine learning is a plus WHAT WE OFFER Being part of a Startup about to take off A welcoming and driven team Working in the center of Zurich Having fun with drones and autonomous vehicles Salary & potentially participation in stock option plan',\n", + " '[\"Planning\", \"Writing\", \"Positivity\", \"Problem Solving\"]',\n", + " '[\"Programming (Music)\", \"Shell Script\", \"Sensor Fusion\", \"MATLAB\", \"Electronic Systems\", \"GNSS Augmentation\", \"Mechanicals\", \"Visualization\", \"C++ (Programming Language)\", \"Visual Odometry\", \"Computer Vision\", \"Python (Programming Language)\", \"Linux\", \"Embedding\", \"SLAM Algorithms (Simultaneous Localization And Mapping)\", \"Machine Learning Methods\", \"Git (Version Control System)\", \"Incentive Stock Option\", \"Algorithms\", \"Centering\", \"Autonomous Vehicles\"]',\n", + " \"['English', 'Corsican', 'Walloon', 'Ewe', 'Kongo']\"],\n", + " ['125',\n", + " 'software developer/devops engineer 60-100% starting immediately or as per agreement',\n", + " 'Basel',\n", + " 'Colleges & Universities',\n", + " '',\n", + " '[[-2.87318110e-01 2.91789472e-01 4.31188583e-01 -8.56497586e-02\\n5.50554872e-01 -1.77667126e-01 -1.81153476e-01 4.18591142e-01\\n-1.41118765e-01 -3.14023614e-01 -1.08434513e-01 -2.64241785e-01\\n-1.60108298e-01 1.53163016e-01 6.70829564e-02 4.40282047e-01\\n3.40453863e-01 5.67928515e-02 -1.71614468e-01 3.23336720e-01\\n1.02806613e-01 -9.64196473e-02 -4.06006500e-02 7.56575286e-01\\n3.62100184e-01 1.48202516e-02 -5.53796291e-02 2.72017196e-02\\n-1.69028550e-01 -1.95795953e-01 4.24424082e-01 1.71294175e-02\\n-1.09756403e-01 -3.16664100e-01 1.61537319e-01 1.11791953e-01\\n-2.37060279e-01 -1.03546232e-02 -3.76902670e-02 1.60510525e-01\\n-5.12383103e-01 -1.93267167e-01 1.45915411e-02 1.42959803e-02\\n-2.79489934e-01 -2.70250201e-01 2.29901269e-01 2.37958580e-02\\n2.33175308e-02 5.69798499e-02 -6.05443358e-01 2.64797658e-01\\n-2.71879137e-01 -2.63937533e-01 4.01578635e-01 4.84519213e-01\\n5.35161905e-02 -4.76649761e-01 -4.92879808e-01 -3.85217905e-01\\n-3.52666825e-02 -7.18578100e-02 3.89909297e-02 -2.73499966e-01\\n5.02170920e-01 1.37555972e-01 5.60406670e-02 3.60494316e-01\\n-8.01566899e-01 -1.07479371e-01 -2.12247014e-01 5.86293414e-02\\n-4.19530869e-01 -1.04820862e-01 -2.29446977e-01 -2.23073408e-01\\n-5.96053377e-02 2.96231508e-01 -3.69271412e-02 9.81291234e-02\\n-1.38414115e-01 3.09551448e-01 -1.51179239e-01 3.57642770e-01\\n2.48925060e-01 1.73266470e-01 2.58680612e-01 3.36884737e-01\\n-4.56089437e-01 3.54018390e-01 1.28624976e-01 -3.47741365e-01\\n2.72112489e-01 6.20779619e-02 4.51661527e-01 9.88357067e-02\\n1.76459432e-01 1.43177837e-01 -2.75089353e-01 2.16527492e-01\\n1.98034912e-01 -2.34888554e-01 -7.76223838e-04 -1.14471316e-01\\n-2.95662023e-02 5.42322136e-02 1.54809458e-02 1.92612082e-01\\n-3.79081279e-01 3.74513745e-01 1.75825447e-01 -2.73818403e-01\\n-1.01332933e-01 -5.78993320e-01 -1.22831173e-01 1.46739170e-01\\n2.04649158e-02 -5.30406088e-03 1.45222217e-01 1.15870684e-01\\n2.24334180e-01 4.39854153e-03 1.36397451e-01 8.49736691e-01\\n-1.23089060e-01 -6.50517419e-02 -1.49911433e-01 2.67448455e-01\\n1.03887878e-01 -3.06839287e-01 2.14043438e-01 3.00301254e-01\\n1.05285630e-01 -9.65064913e-02 -2.45603755e-01 3.91231865e-01\\n-9.10522416e-04 -2.49747306e-01 -3.50262821e-01 2.72334695e-01\\n-1.16192371e-01 -4.62924838e-01 5.35417378e-01 5.94500173e-03\\n2.22213119e-01 -6.12952113e-02 9.75393504e-03 -8.14917535e-02\\n-4.99278158e-02 1.65591896e-01 6.23758510e-02 2.49845311e-01\\n-3.73047531e-01 -2.50737190e-01 -1.74523860e-01 1.78210318e-01\\n-2.58136809e-01 1.52739286e-01 -9.52636153e-02 -1.36618212e-01\\n3.80859077e-01 2.93134227e-02 -3.21646303e-01 2.13435248e-01\\n-3.00743692e-02 1.56142935e-03 -1.25223532e-01 3.85336041e-01\\n-1.58782840e-01 2.32533216e-01 -8.19541365e-02 -1.55077174e-01\\n5.68798423e-01 5.88336065e-02 1.35826081e-01 -3.41330208e-02\\n3.76788825e-01 -1.47953451e-01 2.99568772e-01 3.50088179e-02\\n-6.97408974e-01 2.18423441e-01 -1.39078293e-02 -1.70854092e-01\\n3.10208797e-02 3.42263356e-02 4.09392267e-01 -3.31602275e-01\\n-9.21376050e-05 -1.94397196e-01 -3.72853070e-01 -3.37666452e-01\\n-2.58329719e-01 7.73894712e-02 4.21880007e-01 -3.80115300e-01\\n-1.16501763e-01 1.65301889e-01 -5.59084177e-01 -2.04996750e-01\\n2.11235449e-01 2.25003034e-01 1.26817137e-01 9.17577371e-02\\n-1.38674349e-01 -7.17165709e-01 3.40212882e-02 -5.29017806e-01\\n-2.54450202e-01 1.32091165e-01 -3.92119646e-01 2.19579250e-01\\n1.09882336e-02 -4.72904593e-02 -1.20516382e-01 1.37907594e-01\\n-3.48661184e-01 -6.25367165e-02 1.48148507e-01 3.47936824e-02\\n2.84271419e-01 1.07930340e-01 -2.71239161e-01 5.35039544e-01\\n-1.54739842e-01 4.94785607e-01 1.31897479e-01 -8.04526329e-01\\n5.07906973e-01 4.43602204e-01 8.89478400e-02 -3.37336123e-01\\n5.69540799e-01 -3.01147461e-01 -6.24946766e-02 1.32318974e-01\\n-4.60249662e-01 -2.59566069e-01 2.44656637e-01 -2.77914077e-01\\n-2.35727161e-01 5.57668924e-01 7.49789700e-02 2.86465883e-02\\n3.54128361e-01 -3.61817777e-01 -1.78567231e-01 1.29208982e-01\\n-1.16411954e-01 -3.23868215e-01 -5.43175697e-01 1.83105245e-02\\n-7.25895017e-02 -5.22873938e-01 -2.09462374e-01 -3.61580282e-01\\n-1.21171907e-01 -2.79470801e-01 -2.15028331e-01 3.72170210e-01\\n1.37792170e-01 9.57143679e-02 -1.16027400e-01 -3.25749069e-02\\n-1.03597805e-01 -6.00327849e-01 6.46317750e-02 -7.62615204e-02\\n4.29507524e-01 1.72550350e-01 1.62954018e-01 -6.85341507e-02\\n4.24821973e-02 6.11936092e-01 -3.55240583e-01 -3.18563938e-01\\n7.56022260e-02 1.08517960e-01 -8.05538613e-03 -3.48435640e-02\\n1.53358683e-01 2.83679783e-01 -2.80136943e-01 2.93359160e-04\\n-2.65068829e-01 3.77300568e-02 3.81170571e-01 -1.25991032e-01\\n-2.00369880e-01 -2.47937664e-01 -1.34533331e-01 2.09450424e-01\\n-5.06720483e-01 -2.30727017e-01 4.16215062e-01 2.08025396e-01\\n1.61086842e-01 1.46631077e-01 2.57583529e-01 -3.05785723e-02\\n-2.73961484e-01 -3.76286834e-01 2.59703845e-01 1.94673315e-01\\n1.18294075e-01 1.25228167e-01 -1.08436294e-01 -5.59951186e-01\\n-2.93729639e+00 -1.77619115e-01 2.11666360e-01 -2.89920747e-01\\n2.80518532e-01 -9.52224582e-02 6.85328841e-02 -7.66997561e-02\\n-3.61034989e-01 -3.13492529e-02 -1.61867917e-01 -2.46088997e-01\\n6.44157454e-02 2.88689852e-01 1.49642691e-01 7.89279044e-02\\n7.27260336e-02 -2.17213064e-01 7.11056143e-02 2.76450306e-01\\n-1.47085473e-01 -7.16445208e-01 1.96123138e-01 -1.18124358e-01\\n2.33736783e-01 3.11203688e-01 -4.14957613e-01 -1.66257665e-01\\n-2.57039428e-01 -2.18894243e-01 1.32843792e-01 -3.22713614e-01\\n-1.09991074e-01 3.05664599e-01 2.08565980e-01 -7.47518390e-02\\n5.99676967e-02 -3.68930161e-01 -9.76570398e-02 -5.65621912e-01\\n2.24634141e-01 -5.76452494e-01 -3.91370151e-03 -1.71015441e-01\\n6.65006042e-01 -2.91297406e-01 1.82726577e-01 1.35385662e-01\\n2.31303096e-01 2.02988476e-01 6.48515224e-02 7.25327134e-02\\n-2.54797429e-01 -3.19191754e-01 -2.41924226e-02 -2.85765201e-01\\n5.49647093e-01 4.76489246e-01 -2.08977669e-01 -5.56413084e-02\\n1.48424178e-01 -3.50824773e-01 -4.54944044e-01 -3.19716066e-01\\n-1.86787039e-01 -1.59528390e-01 -6.02613747e-01 -3.77588332e-01\\n-1.11144185e-01 -8.96145999e-02 -9.21295136e-02 7.16021776e-01\\n-3.33794415e-01 -3.24110806e-01 5.17537817e-03 -6.55639291e-01\\n7.62278512e-02 -2.63824970e-01 6.99969530e-02 -2.36851692e-01\\n-2.31593966e-01 -4.92470652e-01 1.22997947e-01 -7.06257299e-02\\n-1.79481894e-01 -3.36754829e-01 3.22761573e-02 -2.54902959e-01\\n-1.84644908e-01 -5.51626325e-01 3.85588646e-01 1.51344895e-01\\n3.84903014e-01 1.87793210e-01 2.89781362e-01 -2.03124825e-02\\n2.71261364e-01 3.76273878e-02 -2.62049958e-03 -3.97569388e-01\\n2.10584551e-01 2.14498322e-02 5.50341487e-01 -1.82782650e-01\\n1.78368874e-02 9.05191600e-02 -2.20640779e-01 -1.51129171e-01\\n3.18200797e-01 9.64162573e-02 1.94250457e-02 -1.74557716e-01\\n4.10951138e-01 -4.19547498e-01 -1.13547973e-01 1.97528839e-01\\n5.34651726e-02 6.41566753e-01 -1.67857111e-02 -3.89339983e-01\\n-2.05366701e-01 5.42307019e-01 -1.11077242e-02 -3.98148559e-02\\n-5.10816649e-03 1.66688740e-01 -1.56590879e-01 1.82058275e-01\\n4.89002243e-02 -1.72223762e-01 -2.58895695e-01 -6.41639531e-02\\n-1.45417899e-01 2.82754540e-01 2.92502046e-01 2.50201762e-01\\n-1.03088312e-01 -3.89020383e-01 -4.35447842e-02 2.98897743e-01\\n2.62479544e-01 3.97856116e-01 1.80709511e-01 -1.73602343e-01\\n2.35672742e-02 4.60401475e-01 -1.22553632e-01 2.26123989e-01\\n-1.48112223e-01 7.70156905e-02 -5.44449151e-01 -1.76110327e-01\\n-3.27874482e-01 -2.81568766e-01 1.20939940e-01 3.09839934e-01\\n1.75294995e-01 -7.26273656e-02 5.76428548e-02 -3.56755018e-01\\n2.43489802e-01 8.83635134e-02 2.07738400e-01 1.25812173e-01\\n-9.34434831e-02 6.11874640e-01 -1.92633569e-02 -7.33592883e-02\\n-1.86909348e-01 -1.23604946e-02 -2.65375733e-01 -1.86913460e-01\\n1.68819994e-01 -3.95074666e-01 -2.10466236e-01 4.37441260e-01\\n1.05115086e-01 -1.55914098e-01 -1.79656982e-01 2.94642508e-01\\n6.36705533e-02 -2.88086116e-01 -2.58867919e-01 2.27771960e-02\\n2.96990991e-01 4.84071895e-02 2.52825230e-01 -5.04959822e-01\\n-3.87022458e-02 9.62376222e-02 1.11653693e-02 4.82677609e-01\\n1.01177104e-01 4.75580106e-03 -1.94290102e-01 -2.97577620e-01\\n3.24753970e-01 -1.71053261e-01 -1.12228245e-01 -1.06714204e-01\\n3.71257886e-02 -1.56514287e-01 -4.09128308e-01 3.04189771e-02\\n-8.75774473e-02 -1.98559880e-01 -2.12248638e-02 3.96063961e-02\\n1.56495839e-01 7.49918595e-02 -5.38079858e-01 -1.80572510e-01\\n-2.11260617e-01 4.53960299e-02 4.73914668e-04 -4.55058873e-01\\n5.21916039e-02 -2.65320726e-02 -5.96360683e-01 2.49133706e-01\\n-2.16501728e-01 -1.72815025e-02 1.95525765e-01 -2.01024115e-02\\n-4.61807728e-01 -1.38845056e-01 1.76314950e-01 1.75923079e-01\\n-3.57330948e-01 -3.15296113e-01 5.33151999e-02 -1.02236998e+00\\n1.91780090e-01 -9.61777866e-02 -1.16622925e-01 1.15673631e-01\\n7.14104846e-02 -6.96519852e-01 8.08185562e-02 -3.65290046e-01\\n-5.79128787e-03 6.44948259e-02 -1.99457601e-01 -3.20395589e-01\\n7.62744322e-02 -1.16553485e-01 -2.10152030e-01 4.63202327e-01\\n-4.96144295e-01 2.81551600e-01 -9.17651951e-02 5.04254699e-02\\n5.49955294e-02 -3.18094879e-01 1.46768942e-01 -3.12892437e-01\\n-4.53601778e-01 -2.32586071e-01 -2.63967574e-01 -3.86464596e-01\\n2.09685136e-02 -2.85497308e-01 -1.30863413e-01 9.20823216e-02\\n2.98231930e-01 -1.91106908e-02 -1.86114684e-01 -2.28986442e-01\\n9.53403413e-02 -4.53365326e-01 7.88550898e-02 -5.20132445e-02\\n-8.07747394e-02 -1.38689891e-01 1.98494166e-01 1.04011580e-01\\n1.51971757e-01 -3.57496649e-01 5.10936260e-01 -3.76024514e-01\\n-3.70997846e-01 -7.93536454e-02 8.58781338e-02 9.27861407e-03\\n2.19826415e-01 -6.54448628e-01 -3.50430086e-02 4.03188586e-01\\n2.05288291e-01 4.40065116e-02 2.04517663e-01 -1.41157478e-01\\n3.06737162e-02 2.29866520e-01 -3.89220595e-01 1.45663664e-01\\n8.67883027e-01 1.54450938e-01 1.05609357e-01 2.38801956e-01\\n1.47309422e-01 2.88691550e-01 4.74720836e-01 -1.02697149e-01\\n-7.43917674e-02 2.56745696e-01 1.39196903e-01 -4.64492112e-01\\n-1.52405024e-01 -3.56659181e-02 -2.19154991e-02 -2.70281553e-01\\n6.73882127e-01 3.77228737e-01 -4.49291468e-01 -3.12332600e-01\\n-9.88477319e-02 -7.93113112e-02 2.72883654e-01 -1.01410180e-01\\n1.26195177e-02 -1.69254273e-01 3.98905456e-01 -2.46471763e-02\\n2.85397083e-01 5.73866546e-01 -1.91057056e-01 -3.46286058e-01\\n-1.87313184e-01 2.07979783e-01 2.93491296e-02 4.31390464e-01\\n-1.44919842e-01 2.01590300e-01 -5.63432872e-02 1.80502191e-01\\n-1.46607757e-01 1.90563813e-01 1.00478768e-01 5.71591109e-02\\n2.05162674e-01 1.31151050e-01 3.90405834e-01 4.27460074e-01\\n3.74838233e-01 5.24707198e-01 2.74959713e-01 4.67869565e-02\\n4.93670940e-01 5.46043575e-01 4.72681075e-01 -1.02610551e-02\\n-8.42719972e-02 1.17959708e-01 1.00726373e-01 -7.90356100e-02\\n4.05645490e-01 3.19476247e-01 1.54250965e-01 9.33255613e-01\\n3.24126899e-01 3.79435778e-01 6.98691249e-01 -5.63847959e-01\\n-2.86700159e-01 5.67018837e-02 4.60928977e-01 -4.21892703e-01\\n4.04282734e-02 7.92097896e-02 -1.67069674e-01 2.26446718e-01\\n-4.92805004e-01 -8.33834186e-02 -3.79050709e-03 2.18010470e-02\\n1.09355494e-01 -4.77372482e-02 -2.17290044e-01 -3.26051340e-02\\n-2.41340756e-01 -2.43086696e-01 -4.19553876e-01 -2.16480732e-01\\n-2.07325071e-01 -7.10473359e-02 -6.01869412e-02 -2.17074305e-01\\n-7.99204633e-02 -3.56071323e-01 2.90904343e-02 3.05220857e-03\\n3.63231272e-01 -1.19046845e-01 -1.43253192e-01 -1.59353733e-01\\n3.66383731e-01 3.20502818e-01 6.39274836e-01 -1.33762375e-01\\n9.07671079e-03 -1.49128616e-01 -2.40885392e-01 1.49054140e-01\\n2.62479801e-02 1.16542861e-01 1.40212059e-01 2.67452806e-01\\n-2.76915550e-01 -8.46120864e-02 1.02654383e-01 3.54872227e-01\\n-3.72790039e-01 -7.65801072e-02 -9.86637399e-02 1.46286160e-01\\n-7.52954371e-03 1.39302641e-01 -2.87257373e-01 1.13631755e-01\\n-1.94109589e-01 -5.63626826e-01 4.52676833e-01 -1.88164040e-01\\n-1.44184843e-01 3.81145217e-02 3.99288416e-01 2.23205343e-01\\n-2.31812239e-01 2.88282707e-03 2.34621409e-02 2.06964642e-01\\n6.44229949e-02 3.45169842e-01 -1.61057010e-01 -2.84343541e-01\\n-3.56081724e-01 1.98329404e-01 -1.88631520e-01 1.26163512e-02\\n-1.43413007e-01 4.23739254e-01 -4.40278165e-02 3.40358168e-02\\n4.14370358e-01 -8.75738040e-02 -1.60119101e-01 -3.00972998e-01\\n-2.28682548e-01 -2.21214429e-01 7.98541121e-03 -1.97812542e-03\\n2.33695775e-01 -3.69636327e-01 -1.46578059e-01 -2.98409998e-01\\n2.15439349e-02 -2.49564201e-01 1.55617930e-02 4.02572230e-02]]',\n", + " \"60-100% Starting immediately or as per agreement The Biozentrum of the University of Basel is one of the leading life sciences institutes in the world. It consists of 32 groups and 500 employees that research how molecules and cells create life, spanning the scale from atom to organism. Founded in 1971, the Biozentrum has been the birthplace of many fundamental discoveries in biology and medicine, spawning several Nobel Laureates. The Research IT technology platform is the primary contact point for scientific IT projects at the Biozentrum. We support the Biozentrum's scientists and staff with expertise, services and custom software development to facilitate research data management, analysis and collaboration. Your position We are looking for a Software Developer/DevOps Engineer with experience in web technologies who enjoys both sides of the software lifecycle coin: Developing state of the art applications as well as deploying and operating systems and services in production. In this role, you support the specific needs of the research groups and administrative units at the Biozentrum. Your responsibilities Ensuring reliable operation of our existing services within a heterogeneous service infrastructure (Linux, Windows, Citrix Hypervisor), software (application software, web servers) and databases (MySQL, PostgresSQL, MS-SQL) Software development, with an emphasis on web technologies Planning, design, transition and operation of new services. Active participation in Research IT projects, such as discussing requirements with users, developing scenarios and solutions, as well as occasional training. Your profile We are looking for an enthusiastic person with a Master's degree in Computer Science, Bioinformatics or equivalent relevant experience. You have not only proven programming skills, but also outstanding analytical and collaborative skills that you enjoy bringing to the table in cross-functional projects. You like to work in an agile academic work environment and embrace a service-oriented approach. Part of your duties is to make sure that our production services run smoothly. Furthermore, you are: Very familiar with operation of Linux/Apache/* stacks, MySQL, PostgreSQL, familiar with other setups (Windows, MS-SQL). Experience with virtualization, containers, orchestration a definite plus. Experienced with web development using at least one of the following: PHP/Zend Framework, Python/Django, other frameworks a plus. Other coding and data management experience highly welcome. Comfortable applying software development best practices (source code versioning, unit testing, continuous integration, etc.) Finally, you are motivated to acquire further skills on the job and believe in continuous improvement. Good communication skills in English are required; knowledge of German is an asset. We offer you The Biozentrum offers a cutting-edge research infrastructure, a highly international environment that provides numerous opportunities to learn more, and excellent working conditions. The position is initially for 2 years, with the possibility of permanent employment. Salary and benefits according to University of Basel standards. Application / Contact Please apply online with a CV, letter of motivation, and the name/address of three references: https://biped2.biozentrum.unibas.ch/apply/software-developer_devops-engineer The deadline for receipt of applications is 31 December 2019. Please note that only online applications will be accepted. Further information about Research IT: https://www.biozentrum.unibas.ch/researchit For specific questions, feel free to contact Michael Podvinec, PhD, Head of Research IT (michael.podvinec@unibas.ch).\",\n", + " '[\"Verbal Communication Skills\", \"Research\", \"Collaboration\", \"Infrastructure\", \"Planning\", \"Operations\", \"Reliability\", \"Positivity\"]',\n", + " '[\"Web Servers\", \"MySQL\", \"Enterprise Application Software\", \"Agility\", \"Programming (Music)\", \"Unit Testing\", \"Computer Science\", \"Zend Framework\", \"Life Sciences\", \"Data Management\", \"Citrix Systems\", \"Spawning\", \"Analytics\", \"Virtualization\", \"Good Agricultural Practices\", \"Continuous Integration\", \"Continuity Tests\", \"Scale (Map)\", \"Activism\", \"Custom Software\", \"PostgreSQL\", \"Linux\", \"Python (Programming Language)\", \"Web Development\", \"Hostile Work Environment\", \"PHP (Scripting Language)\", \"Django (Web Framework)\", \"Operating Systems\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Biology\", \"Personalization\", \"Quantum Point Contact\", \"Continuous Improvement Process\", \"Service-Oriented Modeling\", \"Clinical Data Management\", \"Finalization\", \"Software Development\", \"Windows Setup\", \"Source Codes\", \"Infrastructure Management Services\", \"Atom (Standard)\", \"Hypervisor\", \"SQL (Programming Language)\", \"DevOps\"]',\n", + " \"['English', 'Church Slavonic', 'Sichuan Yi', 'Amharic']\"],\n", + " ['117',\n", + " 'data scientist',\n", + " 'Lausanne',\n", + " '',\n", + " '',\n", + " '[[-1.98490053e-01 1.68447852e-01 5.34035742e-01 1.06047787e-01\\n5.86748719e-01 -1.64473459e-01 -1.20681524e-02 3.75144809e-01\\n3.11087854e-02 -4.82621431e-01 1.08029217e-01 -2.64965594e-01\\n-4.24936302e-02 1.79403901e-01 4.39701453e-02 4.36141640e-01\\n1.80472717e-01 8.43676999e-02 -1.63410068e-01 3.29295218e-01\\n1.13052651e-01 -1.84331536e-01 1.54782996e-01 8.92038584e-01\\n4.35893834e-01 2.22152937e-02 -1.08888783e-01 -5.51389158e-03\\n-1.97020054e-01 -1.57019198e-01 5.22132397e-01 2.31429040e-02\\n-2.02051908e-01 -4.68408644e-01 1.68216944e-01 1.09614417e-01\\n-2.70741880e-01 -9.14032832e-02 -5.62994629e-02 2.48039246e-01\\n-6.21851087e-01 -1.67824715e-01 -4.63125668e-02 5.22936247e-02\\n-3.25999469e-01 -3.72982562e-01 -1.35743007e-01 -6.46300837e-02\\n1.58920780e-01 1.82162970e-02 -4.20258880e-01 2.32335225e-01\\n-2.93916643e-01 -3.86448324e-01 2.66541123e-01 7.05900788e-01\\n-5.26017696e-02 -3.64010692e-01 -5.49109697e-01 -3.05890381e-01\\n8.15853179e-02 -1.81274474e-01 7.18047097e-02 -4.93999779e-01\\n1.36774898e-01 3.02586965e-02 6.14990145e-02 3.75392914e-01\\n-8.38087678e-01 -4.62461896e-02 -2.13762134e-01 -1.04728319e-01\\n-3.03522468e-01 -4.99219745e-02 -4.08171833e-01 -5.91531098e-02\\n-3.01084161e-01 4.70264167e-01 5.98923452e-02 -1.35122277e-02\\n-2.37765253e-01 2.84317821e-01 -2.13795438e-01 4.82043564e-01\\n1.57344908e-01 3.31291556e-01 2.78843254e-01 4.06588346e-01\\n-3.29693198e-01 6.00341678e-01 7.40409344e-02 -3.79007518e-01\\n2.68371969e-01 1.87614530e-01 4.32731837e-01 -4.40297574e-02\\n1.86995834e-01 6.54741526e-02 -3.53593290e-01 4.73700464e-01\\n2.86135823e-01 -4.65687990e-01 1.92917854e-01 -1.91417694e-01\\n1.39314681e-01 1.57137141e-02 9.35017243e-02 1.52080506e-01\\n-3.23441148e-01 2.82992095e-01 1.50865227e-01 -2.09911555e-01\\n-2.89470315e-01 -3.91164958e-01 1.15666874e-02 4.93022762e-02\\n1.30984157e-01 1.29873797e-01 1.53342888e-01 1.41196167e-02\\n2.75103807e-01 -2.21970007e-02 8.42160806e-02 7.94201910e-01\\n-8.52690637e-02 3.10839601e-02 -2.84211278e-01 2.55872875e-01\\n2.07810014e-01 -3.15589964e-01 2.48669237e-01 1.86385036e-01\\n-9.52237844e-02 -3.03176194e-01 -2.18086660e-01 4.76966023e-01\\n-7.79461265e-02 -2.07063124e-01 -2.67586976e-01 2.19157845e-01\\n1.32983014e-01 -4.11680341e-01 7.84787714e-01 9.47176069e-02\\n2.39536852e-01 -2.36116424e-02 1.72144517e-01 -2.52073884e-01\\n-1.50427684e-01 1.71814546e-01 1.58970639e-01 1.49749070e-01\\n-3.29409420e-01 -2.72307247e-01 -1.29685476e-01 -4.26201522e-02\\n-6.09343171e-01 1.41062260e-01 -7.84448683e-02 -1.18277241e-02\\n5.69632985e-02 -3.99046801e-02 -2.54334301e-01 1.35922119e-01\\n-1.81844965e-01 -8.05051103e-02 1.08543545e-01 3.46745372e-01\\n-3.40663314e-01 3.27113837e-01 6.50227666e-02 -5.33827022e-02\\n7.32531905e-01 2.69181877e-01 3.42125416e-01 6.00659512e-02\\n2.86090672e-01 -8.14728439e-04 8.44561756e-02 2.68181562e-01\\n-6.65334761e-01 2.67431557e-01 -3.85735631e-02 -2.69177854e-01\\n1.51878506e-01 -6.96610659e-02 2.80838668e-01 -2.71945447e-01\\n1.09034896e-01 -2.01537520e-01 -2.67104089e-01 -2.56473482e-01\\n-2.01278329e-01 2.74221562e-02 2.96878666e-01 -5.33602834e-01\\n-1.66825712e-01 2.11294040e-01 -4.35611427e-01 -1.50216639e-01\\n5.46448827e-02 1.30145490e-01 8.36823136e-02 8.58128667e-02\\n-2.24893093e-01 -5.74182510e-01 6.90102130e-02 -3.57991695e-01\\n-3.83243233e-01 2.26196740e-02 -3.93899381e-01 1.50892377e-01\\n7.20620230e-02 3.22730541e-02 -8.89464468e-02 1.47711128e-01\\n-2.42046684e-01 -7.89298713e-02 -7.71543831e-02 4.56787944e-02\\n2.80799389e-01 7.47262165e-02 -3.62081766e-01 3.89577091e-01\\n-1.42074376e-01 6.33597255e-01 5.39880991e-02 -9.04366970e-01\\n5.91697454e-01 2.82826871e-01 -3.77332680e-02 -4.51708794e-01\\n5.62316239e-01 -2.29422852e-01 -3.87869701e-02 2.16090661e-02\\n-4.02199686e-01 -3.95050228e-01 2.63352156e-01 -2.42722213e-01\\n-2.76190221e-01 3.83899897e-01 3.83671112e-02 2.30598614e-01\\n2.29331478e-01 -3.79312515e-01 -1.15541540e-01 -2.25963816e-03\\n-1.01682216e-01 -2.60021448e-01 -6.44318581e-01 -1.28046274e-01\\n-2.20174879e-01 -4.35055792e-01 -1.72082037e-01 -3.12714815e-01\\n-1.83354825e-01 -3.97215337e-01 -2.05919594e-01 1.03983790e-01\\n4.64447081e-01 1.33211598e-01 -1.33309245e-01 -1.33447405e-02\\n3.50766294e-02 -7.19582558e-01 -1.50310546e-01 1.34287849e-01\\n5.24787664e-01 2.26768404e-01 2.04036921e-01 4.96204160e-02\\n2.40692675e-01 6.74461544e-01 -2.07198635e-01 -3.32440853e-01\\n1.58490211e-01 2.04457343e-01 3.53739783e-03 -2.03716174e-01\\n1.80965483e-01 2.89989710e-01 -3.10778916e-01 5.78088686e-02\\n-1.80166028e-03 -1.15563311e-01 4.36029315e-01 8.43280777e-02\\n-2.41839737e-01 -9.56889614e-02 -6.22347146e-02 5.50791100e-02\\n-5.89935660e-01 -1.93254620e-01 5.09841681e-01 1.66533917e-01\\n2.19324440e-01 4.34344634e-02 8.15409049e-02 -2.48789787e-02\\n-2.67628551e-01 -2.34903574e-01 3.32112432e-01 1.01189539e-01\\n7.25044459e-02 1.55793279e-01 1.51826307e-01 -6.25371635e-01\\n-3.20623994e+00 -1.49784967e-01 1.68044001e-01 -2.80160785e-01\\n1.65643036e-01 -1.01801991e-01 1.34259522e-01 2.15092525e-02\\n-3.50563824e-01 2.48651318e-02 -1.22443222e-01 -1.72080040e-01\\n4.94490005e-02 1.84719846e-01 1.95669681e-01 1.40335456e-01\\n2.42038965e-01 -2.51577318e-01 -1.79296046e-01 3.47900063e-01\\n-1.50240153e-01 -6.05059683e-01 1.86683416e-01 3.17553878e-02\\n1.80850029e-01 1.58773795e-01 -3.26912194e-01 -4.62732427e-02\\n-2.19008893e-01 -2.15007514e-01 1.22700110e-02 -2.68822640e-01\\n-2.24717632e-01 2.18789965e-01 1.58057183e-01 -7.19448552e-02\\n2.81711179e-03 -4.10910755e-01 -2.38027632e-01 -4.60491240e-01\\n9.93805677e-02 -6.00141346e-01 -8.91721174e-02 -1.95648015e-01\\n8.62054229e-01 -2.85229027e-01 1.94139540e-01 4.74047475e-02\\n1.57917485e-01 -7.77313858e-02 1.50879011e-01 5.67601062e-02\\n-2.13472083e-01 -4.05702293e-01 -1.95058677e-02 -1.53746560e-01\\n6.11362994e-01 4.19011056e-01 -1.89428449e-01 -5.66643700e-02\\n2.08604977e-01 -2.03314975e-01 -3.61062944e-01 -1.17042221e-01\\n-1.69410147e-02 -2.99540311e-01 -6.58533394e-01 -3.73089492e-01\\n-1.34791106e-01 -2.24593833e-01 -1.76497772e-01 6.09089017e-01\\n-2.97758639e-01 -3.02233458e-01 -8.96530375e-02 -4.20221031e-01\\n3.65690708e-01 -1.72455221e-01 1.61491111e-02 -3.01233411e-01\\n-2.54266441e-01 -4.54686254e-01 7.82393962e-02 -2.00521480e-03\\n-1.18253559e-01 -2.77457058e-01 6.67528361e-02 -9.85487476e-02\\n-3.17083597e-01 -6.13618672e-01 3.36089909e-01 1.37260824e-01\\n2.82092035e-01 1.04266375e-01 4.27308202e-01 -2.08502412e-01\\n2.58303106e-01 4.92885560e-02 -1.78995162e-01 -2.88959026e-01\\n9.36131328e-02 -1.89439347e-03 5.03188968e-01 -2.86683559e-01\\n-7.22547472e-02 4.08482365e-02 -2.37298369e-01 5.89789078e-03\\n3.58722210e-01 -7.53989816e-02 3.75323109e-02 6.47131205e-02\\n2.84136295e-01 -3.09225082e-01 -4.52344567e-02 7.80943856e-02\\n1.22554593e-01 6.47270083e-01 -2.36292649e-02 -3.75358284e-01\\n-5.43820262e-02 4.90269899e-01 -7.02736378e-02 1.71730682e-01\\n-2.13375509e-01 1.28487516e-02 -1.26006141e-01 4.08423603e-01\\n5.60422204e-02 -3.27795237e-01 -2.40091056e-01 -2.17458859e-01\\n-1.27567679e-01 3.45424205e-01 2.41528869e-01 8.66085291e-02\\n-5.91539666e-02 -3.82090509e-01 -1.91814333e-01 3.11532617e-01\\n2.38167256e-01 6.07097685e-01 2.76135802e-01 -2.52990812e-01\\n-1.65165067e-01 3.57886434e-01 -1.73181459e-01 2.75649965e-01\\n-3.06775212e-01 2.13971138e-01 -7.21015215e-01 -1.63446605e-01\\n-2.72623777e-01 -5.55309415e-01 2.82396287e-01 4.76165920e-01\\n1.85164973e-01 -2.68256553e-02 1.26950622e-01 -5.11545658e-01\\n1.72404706e-01 2.51561522e-01 1.39455095e-01 9.32410955e-02\\n-4.36163917e-02 6.40143991e-01 -1.47140566e-02 -1.92858368e-01\\n-7.69074932e-02 -5.10496125e-02 -1.92039073e-01 -1.69946104e-01\\n1.03745170e-01 -6.42351449e-01 -1.20565593e-01 4.14614916e-01\\n1.91677496e-01 -3.02934855e-01 -2.30394423e-01 2.62013912e-01\\n-1.81987435e-02 -2.33089596e-01 -3.53265166e-01 9.29084122e-02\\n4.17391568e-01 1.69648916e-01 3.08351576e-01 -4.95054424e-01\\n-1.03488266e-01 1.95822418e-02 -1.13396540e-01 4.36611772e-01\\n5.13156876e-03 1.17455177e-01 -2.20528394e-01 -5.19436821e-02\\n5.04881144e-01 -9.73169506e-02 -1.58189476e-01 5.31852208e-02\\n9.87734422e-02 -2.07360879e-01 -3.70632887e-01 1.58462584e-01\\n1.10152006e-01 -2.72187889e-01 3.91138569e-02 3.00333917e-01\\n1.28344983e-01 1.72873646e-01 -6.10368729e-01 -2.51271278e-01\\n-2.37106159e-01 6.37514740e-02 2.44956851e-01 -5.00010371e-01\\n-2.50633229e-02 -1.08812183e-01 -6.01011992e-01 1.98806792e-01\\n-1.77623630e-01 -2.60716617e-01 2.80915648e-01 1.66567385e-01\\n-2.15954244e-01 -1.00538023e-01 -1.63552612e-02 4.31187004e-01\\n-2.57406890e-01 -3.66084754e-01 -2.97625158e-02 -1.05347943e+00\\n1.78860158e-01 1.54210538e-01 -2.16569722e-01 2.40157783e-01\\n-1.06771655e-01 -5.95843077e-01 3.03459018e-02 -4.52450454e-01\\n-1.70776471e-01 -1.47550017e-01 -2.40937576e-01 -3.20262849e-01\\n7.18483031e-02 4.63522002e-02 -3.54259253e-01 6.23313487e-01\\n-1.97199836e-01 2.66138107e-01 -1.66601285e-01 5.13235703e-02\\n6.74048364e-02 -2.28564024e-01 2.75622845e-01 -2.93762088e-01\\n-4.38206345e-01 -3.24746072e-01 -4.06680822e-01 -3.45362902e-01\\n-1.62110135e-01 -4.32901204e-01 -1.23458363e-01 1.42602041e-01\\n3.57138753e-01 1.11862049e-01 -1.00561082e-01 -4.47919190e-01\\n1.80069178e-01 -6.26722932e-01 1.00688308e-01 -7.38652050e-02\\n-1.97166830e-01 -1.08951122e-01 1.67460084e-01 8.84525180e-02\\n2.53220260e-01 -4.23621833e-01 2.16237202e-01 -4.83118892e-01\\n-3.24870735e-01 -1.73149645e-01 4.66404222e-02 2.52885744e-04\\n3.01216811e-01 -4.70385373e-01 -5.24459854e-02 3.46703112e-01\\n2.21672252e-01 3.46441455e-02 2.59166241e-01 -2.22074270e-01\\n-2.77883150e-02 3.37142140e-01 -2.97550499e-01 1.33782133e-01\\n9.80508685e-01 5.79408463e-03 1.57590389e-01 3.33879590e-01\\n1.73465908e-01 3.60501409e-01 4.97638971e-01 -3.62647735e-02\\n-1.30439132e-01 2.44274229e-01 1.09367687e-02 -4.30978417e-01\\n1.35228010e-02 -5.83141707e-02 -1.82679608e-01 -4.98491466e-01\\n6.82632089e-01 3.93440276e-01 -4.67156023e-01 -9.14927423e-02\\n-9.45386887e-02 -4.25627157e-02 1.56919152e-01 -3.31078246e-02\\n-1.62858278e-01 6.22135960e-02 4.24956024e-01 -1.13205925e-01\\n3.39500904e-01 4.99209374e-01 -2.22567901e-01 -3.02963257e-01\\n-3.59921250e-04 2.86644578e-01 -7.77633339e-02 5.80886960e-01\\n-2.50393897e-01 3.82342577e-01 -3.66649665e-02 8.49810094e-02\\n-6.23237193e-02 8.48399252e-02 2.50705659e-01 1.99864551e-01\\n1.95929199e-01 5.08617796e-02 5.55004120e-01 4.31450546e-01\\n1.89251930e-01 3.77211571e-01 3.30564678e-01 1.24150634e-01\\n4.19602394e-01 6.01479769e-01 3.68801951e-01 1.13870010e-01\\n9.81845055e-03 4.36148494e-02 2.53709644e-01 -7.97661245e-02\\n2.91473299e-01 5.21867990e-01 1.68353617e-01 8.84965003e-01\\n2.30840862e-01 3.20075691e-01 6.85470164e-01 -7.34844446e-01\\n-3.85260165e-01 1.75446086e-02 5.25078297e-01 -3.47879291e-01\\n-2.03201063e-02 1.76938742e-01 -1.84120700e-01 3.04136336e-01\\n-5.72602689e-01 -2.78642595e-01 5.69656957e-03 1.44848689e-01\\n-7.09198192e-02 -2.53389299e-01 -2.01469466e-01 2.86206871e-01\\n1.72310136e-02 -1.11196861e-01 -3.79156709e-01 -1.50908515e-01\\n-1.63486823e-01 -7.88276866e-02 -6.63947463e-02 -3.82226743e-02\\n-1.20323971e-01 -3.73594820e-01 -2.05948222e-02 1.45254387e-02\\n2.90173411e-01 -1.22973733e-01 -4.64409702e-02 -8.25230405e-02\\n2.54829764e-01 1.90161332e-01 4.92462516e-01 1.00153014e-01\\n6.48191124e-02 -3.17996979e-01 -2.72515297e-01 2.38044083e-01\\n2.39662200e-01 -5.15776686e-03 -1.20936483e-01 1.59862399e-01\\n-2.02828944e-01 -1.85424566e-01 1.19412929e-01 2.20155999e-01\\n-5.12123287e-01 5.75460568e-02 -1.90062851e-01 7.94272497e-02\\n3.39544900e-02 2.95824349e-01 -1.54211283e-01 -2.94568222e-02\\n-1.61088258e-01 -4.97217685e-01 1.97504610e-01 -1.72420919e-01\\n-2.45600611e-01 5.09801134e-02 2.04261571e-01 1.16024092e-01\\n-2.94619024e-01 8.77607614e-03 -1.22478306e-01 1.52068555e-01\\n-1.43381581e-01 2.22774521e-01 -3.56514901e-02 -2.75545478e-01\\n-2.92736769e-01 1.29977956e-01 -1.19818397e-01 2.06783414e-01\\n8.01312923e-02 3.69586587e-01 5.04262745e-02 4.83560152e-02\\n5.57063341e-01 -4.65005934e-02 -2.53236681e-01 -2.53618389e-01\\n-1.51917458e-01 -1.08010136e-01 -1.65727615e-01 -5.30804787e-03\\n2.03608751e-01 -4.56284881e-01 2.78644115e-02 -1.29650235e-01\\n-6.48330152e-02 -4.08598959e-01 2.67550573e-02 -1.88246176e-01]]',\n", + " 'Headquartered in Switzerland with additional offices in Toronto and London, SwissBorg aims to fundamentally change the way individuals manage their wealth. As a product obsessed team, we believe that advanced technology combined with an intuitive user experience will empower people to invest with more freedom, confidence, and belief. In 2018, we successfully raised funds from over 23,800 global participants who share our vision of a wealth management industry with more community-centric values. We are now working towards the next phase of disruption. In Q4 of 2019, individuals across the globe will have the opportunity to purchase digital assets such as Bitcoin at the best prices, and become members of our ecosystem to unlock first of its kind investment features. Your Mission: Data sits at the heart of what we do, and you’ll play a crucial role in helping our teams to build personalized customer experiences, track metrics, optimize processes, enhance our products, and everything in-between. As a data scientist, you will be one of the first members of our growing world-class data team with an impact across all business lines. We’ll give you the tools and autonomy to build the data structures & solutions that will fundamentally underpin all operations at SwissBorg. If you’re looking to explore uncharted territory in the digital assets space with a team that thinks long term, has an agile mindset, and wants to challenge the old-school money managers let’s chat! What You’ll Be Doing Develop statistical analysis, and models and apply them to solve real problems Build and deploy algorithms for anomaly detection, forecasting and churn prediction based on users behavior Work with our product & marketing teams to guide product & marketing decisions through data-based recommendations Define and report on metrics and KPIs Automate analysis and data pipelines while ensuring our data infrastructure is set up for scale What You Might Look Like Masters or PhD degree in math, statistics, physics, computer science, or related fields Expertise in a variety of data manipulation tools and programming languages (Python, SQL) Strong experience and theoretical knowledge in machine learning, prediction algorithms for classification and study of time series Track record in product analytics and experience to make decisions autonomously Outstanding communications and collaboration skills working cross-functionally Past experience building and working with AWS as well as building and maintaining databases Knowledge of Keras, Tensorflow library, SageMaker, and SDK a plus Benefits Being part of the lifetime opportunity to launch a product at scale Get in on the ground floor as a pioneer in the fast paced fintech/blockchain space Salary and competitive bonus based on our meritocratic system Continuous opportunities to learn, grow fast, and create alongside an experienced team of financial experts, engineers, scientists, designers, and marketing gurus Excellent benefits (health, etc…) Standard 5 weeks vacation Centrally located office in a beautiful historic building.',\n", + " '[\"Decisiveness\", \"Collaboration\", \"Management\", \"Communications\", \"Operations\"]',\n", + " '[\"AWS SageMaker\", \"Automation\", \"Tooling\", \"Agility\", \"KM Programming Language\", \"Health Care Benefits\", \"Blockchain\", \"Computer Science\", \"Analytics\", \"Prediction\", \"Industrialization\", \"Wealth Management\", \"Scale (Map)\", \"Data Manipulation\", \"Python (Programming Language)\", \"Bitcoin\", \"Track (Rail Transport)\", \"Maintainability\", \"Data Pipeline\", \"Library\", \"Money Management\", \"Keras (Neural Network Library)\", \"Investments\", \"Process Optimization\", \"Machine Learning Methods\", \"Purchasing\", \"Physical Computing\", \"Time Series\", \"Personalization\", \"Digital Assets\", \"TensorFlow\", \"Statistical Physics\", \"Phase (Waves)\", \"Flooring\", \"Unlocker\", \"Data Infrastructure\", \"Data Structures\", \"Data Class\", \"Forecasting\", \"Algorithms\", \"Customer Experience\", \"Additives\", \"User Experience\", \"Anomaly Detection\", \"Long-Term Potentiation\", \"Advanced Imaging Technology\"]',\n", + " \"['English', 'Kyrgyz']\"],\n", + " ['79',\n", + " 'software engineer',\n", + " 'Lausanne',\n", + " '',\n", + " '',\n", + " '[[-1.27125368e-01 2.69796431e-01 4.17574644e-01 -3.17967832e-02\\n4.83829677e-01 -1.13778137e-01 -2.76922137e-02 3.63451660e-01\\n4.44437675e-02 -4.72030997e-01 3.72075923e-02 -2.32883185e-01\\n-1.12275928e-01 1.37887806e-01 1.77891925e-02 4.18281376e-01\\n3.18116277e-01 1.00885138e-01 -2.35578150e-01 3.85061055e-01\\n6.28412440e-02 -3.73546407e-02 5.95503524e-02 8.40175331e-01\\n4.26044524e-01 -5.39949238e-02 -5.21642491e-02 -1.97070390e-02\\n-1.69409543e-01 -1.78653806e-01 4.42288339e-01 7.99887329e-02\\n-1.20155022e-01 -4.12080824e-01 2.01556042e-01 7.70067424e-02\\n-2.42032140e-01 -1.57188997e-02 -9.37162265e-02 1.83398068e-01\\n-4.84614402e-01 -3.01504791e-01 -3.64171863e-02 -3.91334444e-02\\n-3.27743590e-01 -2.89562225e-01 7.69322813e-02 2.73283944e-03\\n1.79332569e-01 8.60685408e-02 -5.76057673e-01 2.94329554e-01\\n-2.15955034e-01 -2.56617248e-01 2.88629860e-01 7.18373597e-01\\n-3.02261040e-02 -3.91337395e-01 -5.48701286e-01 -3.88562024e-01\\n6.84991032e-02 -1.05364665e-01 -1.23068035e-01 -2.70442754e-01\\n3.52411509e-01 -1.34039484e-03 5.00411354e-03 2.18962908e-01\\n-7.62454808e-01 -3.83579507e-02 -2.15778127e-01 -8.82821977e-02\\n-3.00408185e-01 -1.56770140e-01 -2.86247134e-01 -4.56519164e-02\\n-4.33979817e-02 3.56947601e-01 1.21795900e-01 1.45568103e-02\\n-1.29179209e-01 2.39129439e-01 -2.82290131e-01 4.58785951e-01\\n2.61039674e-01 2.98499137e-01 2.10609108e-01 3.17604303e-01\\n-3.42393607e-01 4.47079748e-01 7.25122839e-02 -3.76231939e-01\\n2.52706349e-01 1.69523627e-01 5.09299576e-01 6.57418296e-02\\n1.53163865e-01 1.28526285e-01 -3.52623343e-01 3.69115233e-01\\n2.61332810e-01 -3.42240870e-01 7.21371025e-02 -1.18719876e-01\\n4.09290530e-02 -2.47601308e-02 7.80438632e-02 1.40591562e-01\\n-3.25151563e-01 3.26031804e-01 1.27629861e-01 -2.46098444e-01\\n-1.58357009e-01 -4.64192957e-01 -1.00157022e-01 -1.14761591e-02\\n-6.51744008e-03 8.91322866e-02 1.68724090e-01 1.89422786e-01\\n1.86769798e-01 5.78019768e-02 8.32156911e-02 9.37190294e-01\\n-1.47734612e-01 5.94497845e-02 -2.39961103e-01 3.55431885e-01\\n1.52993426e-01 -3.07093590e-01 3.29629391e-01 3.71128380e-01\\n5.22043183e-03 -1.92387611e-01 -1.32205456e-01 4.27837551e-01\\n-1.35272145e-02 -1.83288515e-01 -3.60302299e-01 2.10205749e-01\\n4.81947511e-03 -5.07851660e-01 6.73386216e-01 1.31254211e-01\\n1.87440962e-01 -7.36279711e-02 2.83509940e-02 -1.24785572e-01\\n-1.40923217e-01 1.33342579e-01 6.55808300e-02 1.81341380e-01\\n-3.90169919e-01 -2.48192489e-01 -1.20238304e-01 1.71853527e-01\\n-4.15171683e-01 1.80331916e-01 -9.90092456e-02 -1.06373169e-01\\n1.64887100e-01 -1.46780238e-01 -3.80777776e-01 2.03693748e-01\\n-1.00807354e-01 -4.56332639e-02 3.36500108e-02 3.85707319e-01\\n-1.89602315e-01 2.17534393e-01 6.40016794e-03 -8.80376920e-02\\n6.51337028e-01 8.83567259e-02 1.37343109e-01 -1.24381837e-02\\n3.02946031e-01 -2.63593346e-03 3.01221251e-01 2.30462432e-01\\n-6.66413665e-01 2.76807725e-01 -3.91891934e-02 -1.15679242e-01\\n1.07693881e-01 -5.41118868e-02 3.59447002e-01 -3.29196632e-01\\n3.02443914e-02 -1.15592584e-01 -4.05837238e-01 -3.10550570e-01\\n-2.68584490e-01 -8.45924020e-02 3.86554480e-01 -3.96316648e-01\\n-1.07548364e-01 2.19480604e-01 -5.72538733e-01 -1.28240854e-01\\n6.84816837e-02 2.11087823e-01 2.52946597e-02 4.40650359e-02\\n-1.67362273e-01 -5.90765119e-01 6.19688109e-02 -4.26929832e-01\\n-4.66481507e-01 5.96868573e-03 -3.13519120e-01 1.96389467e-01\\n1.03956789e-01 1.23915691e-02 -1.25204116e-01 1.30487859e-01\\n-3.25580895e-01 -1.71476468e-01 1.06339201e-01 -4.30818386e-02\\n2.27285534e-01 4.67034169e-02 -3.32406878e-01 4.23940063e-01\\n-1.02332167e-01 5.70000052e-01 1.11352928e-01 -9.23629761e-01\\n5.31007290e-01 3.93530607e-01 9.35020447e-02 -4.68637258e-01\\n5.48740208e-01 -2.63133168e-01 -1.12085827e-01 1.35019183e-01\\n-2.48292387e-01 -2.80383825e-01 3.12511683e-01 -1.57235116e-01\\n-3.56445611e-01 5.52877903e-01 2.80821603e-03 6.69565126e-02\\n2.60662198e-01 -3.64525795e-01 -7.65089542e-02 1.59413740e-02\\n-7.23822266e-02 -2.08545417e-01 -5.21448076e-01 6.03800714e-02\\n-8.44106749e-02 -4.25732017e-01 -1.27059460e-01 -3.87459755e-01\\n-1.61265954e-01 -4.25329477e-01 -1.51374891e-01 3.55106354e-01\\n1.87989146e-01 1.33009881e-01 -4.52037752e-02 -3.25302742e-02\\n-1.21526912e-01 -6.53807998e-01 -1.10407285e-01 8.86134803e-02\\n4.89270031e-01 9.60140899e-02 3.75014395e-02 5.33876978e-02\\n5.46724014e-02 6.16834879e-01 -2.69469142e-01 -2.83430994e-01\\n8.23289901e-02 1.36012077e-01 2.69293077e-02 -7.32678697e-02\\n1.57471478e-01 4.79803562e-01 -3.93870026e-01 6.22980930e-02\\n-1.68149590e-01 -2.12166347e-02 4.12184894e-01 1.35256350e-03\\n-2.60393322e-01 -2.27372825e-01 -6.06820323e-02 1.37051567e-01\\n-6.35373354e-01 -2.14406252e-01 5.31770229e-01 2.72493839e-01\\n1.55950785e-01 5.24377972e-02 1.25261828e-01 -4.18143608e-02\\n-2.61382282e-01 -2.82942176e-01 3.13833892e-01 1.51899964e-01\\n1.25497714e-01 1.12545103e-01 -4.56330366e-02 -5.33087075e-01\\n-3.35048032e+00 -2.34476060e-01 1.32517070e-01 -1.72246382e-01\\n2.04984128e-01 -6.22991845e-02 -4.82984260e-03 -1.16291098e-01\\n-2.78031558e-01 2.24089548e-02 -1.40774935e-01 -8.51548314e-02\\n6.16282746e-02 3.99948359e-01 1.60389319e-01 1.81820780e-01\\n2.02413991e-01 -3.08729291e-01 -4.09073569e-02 3.80825818e-01\\n-1.41960859e-01 -6.16072893e-01 1.56102270e-01 -1.38571590e-01\\n2.72155434e-01 2.08818138e-01 -3.52731794e-01 -1.73523217e-01\\n-3.54202271e-01 -1.34091318e-01 -2.70633046e-02 -2.73291588e-01\\n-1.82371721e-01 2.29317307e-01 1.97630912e-01 -3.91087681e-02\\n7.84590840e-02 -4.54530239e-01 -1.11152433e-01 -3.98788154e-01\\n8.35073218e-02 -6.12578630e-01 -5.34217507e-02 -1.43758923e-01\\n7.43328214e-01 -2.78433472e-01 1.50196761e-01 1.08898908e-01\\n1.52775899e-01 1.22104235e-01 1.07749954e-01 1.03295773e-01\\n-1.54532149e-01 -3.16018045e-01 -5.50422519e-02 -1.37344688e-01\\n5.68219304e-01 5.07999063e-01 -1.42800212e-01 -8.88459757e-02\\n7.66880959e-02 -2.97348619e-01 -5.10873139e-01 -2.84567952e-01\\n-6.15884922e-02 -2.21587867e-01 -6.37431145e-01 -5.35344183e-01\\n-1.92173421e-01 -1.46295875e-01 -2.10131496e-01 6.63031220e-01\\n-4.34666157e-01 -3.08587044e-01 -8.52909535e-02 -5.66821635e-01\\n2.83157378e-01 -2.38477290e-01 4.20639887e-02 -2.34099209e-01\\n-1.84786156e-01 -6.02606535e-01 -5.00374511e-02 -1.07623063e-01\\n-1.84707671e-01 -3.40996027e-01 1.04334638e-01 -2.82849014e-01\\n-2.46498227e-01 -4.74550426e-01 4.57601249e-01 1.59377649e-01\\n3.75579566e-01 1.02776781e-01 3.74861360e-01 -7.69050568e-02\\n3.75745416e-01 -2.00274698e-02 -9.38898027e-02 -4.10633981e-01\\n-3.28884833e-02 7.77692795e-02 5.16483486e-01 -1.86286673e-01\\n2.27885414e-02 1.09988853e-01 -1.90640166e-01 -2.00852379e-03\\n3.89730096e-01 4.79001813e-02 -4.98160347e-03 -1.12250544e-01\\n4.08037335e-01 -2.51025259e-01 -1.01825267e-01 4.41031046e-02\\n1.18889719e-01 5.80628216e-01 2.09363867e-02 -4.80444372e-01\\n-2.12584972e-01 4.51515257e-01 -9.12307203e-02 -1.64137483e-02\\n-1.29420370e-01 1.08257011e-01 -1.09081186e-01 3.34735185e-01\\n5.74554466e-02 -1.82426482e-01 -3.11553478e-01 -9.93346572e-02\\n-4.99378704e-02 3.20447683e-01 1.40783876e-01 1.12598658e-01\\n1.06943510e-02 -3.41552019e-01 -7.57814050e-02 2.00754300e-01\\n3.03460896e-01 4.05339569e-01 1.88629746e-01 -2.47080743e-01\\n-1.35372467e-02 3.86106372e-01 -1.52755111e-01 1.86516121e-01\\n-1.80904508e-01 1.05158418e-01 -5.31035781e-01 -2.36950889e-01\\n-2.79330879e-01 -4.49567318e-01 2.53835261e-01 2.74584025e-01\\n7.39228204e-02 -9.49252397e-02 1.41534954e-01 -4.91943419e-01\\n2.67681032e-01 3.17608833e-01 1.80890977e-01 1.51734740e-01\\n-5.67365959e-02 6.95278645e-01 4.08548936e-02 -2.21086428e-01\\n-7.91571215e-02 5.88726103e-02 -1.84904218e-01 -1.62283882e-01\\n-2.23938003e-03 -6.48231149e-01 -1.59262776e-01 3.91985476e-01\\n7.84540027e-02 -3.61845762e-01 -2.88549781e-01 2.76671588e-01\\n6.92322776e-02 -2.66836464e-01 -1.67234868e-01 -2.11665221e-02\\n2.64133036e-01 5.55333905e-02 2.54965812e-01 -3.98185968e-01\\n-4.52785045e-02 4.79600094e-02 -3.92197035e-02 4.95272696e-01\\n1.40548751e-01 4.82939780e-02 -1.64245695e-01 -8.59399885e-02\\n3.77379239e-01 -7.06671551e-02 -1.05390795e-01 -1.84086919e-01\\n4.72559854e-02 -2.02705517e-01 -3.71087551e-01 9.28018689e-02\\n6.15729950e-02 -1.57487050e-01 -1.10368259e-01 1.94340229e-01\\n1.13102160e-01 2.07162708e-01 -5.82823396e-01 -2.65549123e-01\\n-2.74574578e-01 -1.15897655e-02 9.21869874e-02 -4.84801531e-01\\n1.54531999e-02 -1.19386986e-02 -5.67854404e-01 2.38283589e-01\\n-2.25505203e-01 -1.08398199e-01 1.29771292e-01 7.36161843e-02\\n-3.24669510e-01 -2.42830038e-01 3.58607434e-02 2.43339032e-01\\n-2.70797074e-01 -2.49449611e-01 -3.82365100e-02 -1.00040984e+00\\n1.63464785e-01 2.85817999e-02 -1.64224625e-01 2.10299164e-01\\n-3.47836837e-02 -5.93119204e-01 1.35631517e-01 -4.75747794e-01\\n-5.05542904e-02 3.92902568e-02 -3.51046592e-01 -3.02146673e-01\\n1.54215217e-01 -7.15852305e-02 -3.10165823e-01 4.38527316e-01\\n-4.28242087e-01 3.72191966e-01 -1.91449881e-01 1.32823229e-01\\n9.35819596e-02 -3.14130425e-01 1.08252488e-01 -4.49490428e-01\\n-3.54675591e-01 -2.06948936e-01 -2.97579557e-01 -2.68498152e-01\\n2.31331773e-03 -4.03473347e-01 -3.01789641e-01 1.94169432e-02\\n3.45595628e-01 6.19858578e-02 -1.70190975e-01 -2.08115593e-01\\n1.35171339e-01 -4.79782820e-01 7.48917311e-02 -9.29511487e-02\\n-1.39394432e-01 -1.86717272e-01 2.03681961e-01 8.61908048e-02\\n1.59402311e-01 -3.69390070e-01 4.76673096e-01 -4.72980797e-01\\n-2.82029212e-01 -1.78679135e-02 2.58058496e-03 -7.63224587e-02\\n2.57639110e-01 -5.50302744e-01 1.12418249e-01 4.07317489e-01\\n2.18134612e-01 1.29642114e-02 2.53219515e-01 -1.59164786e-01\\n-2.09615957e-02 2.84936011e-01 -3.57854933e-01 1.54409297e-02\\n7.68869877e-01 1.06699347e-01 1.19543463e-01 1.90335318e-01\\n1.31994784e-01 2.74125665e-01 4.55744207e-01 1.26868607e-02\\n-8.45594630e-02 2.76556194e-01 1.79302901e-01 -4.03651029e-01\\n-7.89493471e-02 -1.45440530e-02 -1.67638719e-01 -2.56118029e-01\\n6.61221087e-01 4.70311224e-01 -3.73909771e-01 -1.84299320e-01\\n-1.31021008e-01 -1.62587881e-01 3.00996840e-01 -2.97108665e-02\\n-2.02810559e-02 -1.57279673e-03 3.60101700e-01 -1.34789839e-01\\n1.75051674e-01 5.27906895e-01 -2.49356419e-01 -3.34768146e-01\\n-5.01428731e-04 3.14254463e-01 -1.69089716e-02 5.31823039e-01\\n-1.87189013e-01 3.76650512e-01 2.87653785e-02 1.13245703e-01\\n-3.90682369e-02 2.07825482e-01 1.70008212e-01 1.62188672e-02\\n2.17348635e-01 -1.75838154e-02 3.64665270e-01 4.79844868e-01\\n2.73565114e-01 4.46380794e-01 3.06071222e-01 4.03758809e-02\\n3.45823705e-01 5.75276971e-01 4.45717961e-01 9.73124504e-02\\n1.36985537e-03 9.24473107e-02 1.56967610e-01 -4.67280224e-02\\n4.53935593e-01 4.00479674e-01 2.60039568e-01 9.10283685e-01\\n3.09452772e-01 3.01196098e-01 7.52448559e-01 -6.74628139e-01\\n-3.50534141e-01 1.12999886e-01 5.09638190e-01 -3.89514089e-01\\n-4.28924486e-02 1.26869678e-01 -2.59671867e-01 2.13427529e-01\\n-4.41465378e-01 -1.82240829e-01 -6.78235218e-02 1.30021393e-01\\n8.80836509e-03 -1.25349253e-01 -1.45963013e-01 -3.06160003e-02\\n-1.31057218e-01 -4.78902869e-02 -3.98667485e-01 -1.79053500e-01\\n-3.23105037e-01 -8.68530422e-02 -1.16847582e-01 -4.84530628e-02\\n-6.97971284e-02 -3.65601301e-01 -1.04942888e-01 8.44910443e-02\\n2.63711751e-01 -1.43990397e-01 -7.49049783e-02 -1.89881906e-01\\n1.54559299e-01 2.46782064e-01 5.05403936e-01 2.45271623e-02\\n1.17151335e-01 -1.13183372e-01 -2.51590520e-01 2.04557240e-01\\n1.24255978e-02 4.33531106e-02 2.74427496e-02 2.86226481e-01\\n-2.17277691e-01 -1.52460366e-01 9.32332128e-02 2.52654701e-01\\n-3.84038329e-01 -1.01764895e-01 -2.03062326e-01 1.69708639e-01\\n-6.85565174e-05 2.13620484e-01 -2.49168038e-01 -7.32086599e-04\\n-2.58284420e-01 -4.21968639e-01 3.57556701e-01 -1.87200338e-01\\n-1.20652474e-01 1.04714677e-01 3.30215126e-01 2.30165273e-01\\n-3.03181231e-01 -5.84395379e-02 -1.58848278e-02 2.80766129e-01\\n-1.51769117e-01 2.95411050e-01 -2.07622990e-01 -2.49111444e-01\\n-1.91986799e-01 2.01232508e-01 -1.88639939e-01 1.19465664e-01\\n6.23605549e-02 4.36593145e-01 1.21072732e-01 2.87248045e-02\\n4.37074542e-01 4.63828910e-04 -1.96431309e-01 -1.89627230e-01\\n-2.49043703e-01 -1.99305564e-01 -1.03700817e-01 7.71300495e-02\\n2.30564624e-01 -3.25194895e-01 4.56860475e-03 -1.26350388e-01\\n-6.62057102e-02 -3.92006218e-01 -5.77960536e-02 5.08145243e-02]]',\n", + " 'Our company Neural Concept uses Deep Learning algorithms to transform the world of Computer Assisted Design (CAD). We help companies speed up their R&D cycles, enhance their product performance and reduce computational costs. Deep Learning and AI have already revolutionised how images, sound and natural language are processed. Therefore, some problems that used to be considered intractable are now easily solvable on a large scale. Yet, Computer Assisted Design (CAD) and geometry processing are still using traditional methods. Our mission is to bring this revolution into the world of CAD using our unique Neural Network technology that can process 3D CAD models. We are working for global leaders in industries ranging from Automotive to Aerospace and with cutting edge sport teams from Sailing to Car-Racing, who trust our technology to ensure they stay ahead of the curve in their fields. Our culture Our company was born in a top notch AI lab at EPFL and the values of research are in our DNA. We are honest, pragmatic and passionate about innovation. We know that the greatest achievements cannot be the product of a single individual and we encourage our employees to strive for the success of the entire team. We work hard but try to enjoy our time at work and cultivate a great atmosphere. We do our best to respect everybody’s private life and are very conscious about work / life balance. Your mission As a Software Engineer, your main responsibilities will include: Developing the backend of our product, including design, implementation and testing of Neural Concept’s APIs Working together with Research Scientists to design and implement efficient algorithms and data structures in the core engine of our product Closely collaborating with Application Engineers to design and implement novel features required by our clients and partners Continuously working on improving stability and reliability of our products and tools Job description: Software Engineer Your profile Requirements: MSc or PhD degree (Computer Science / Math / Physics or other relevant field) Strong background in algorithms and data structures Strong programming experience in Python and / or C++ Familiar with Flask (or similar web frameworks) Familiar with cloud infrastructure stacks (Google Cloud / AWS or equivalent) Familiar with modern database and storage solutions (SQL and NoSQL) Would be a plus: Experience with containers (Docker and Kubernetes) Experience with Machine Learning Experience with modern Deep Learning frameworks (TensorFlow / PyTorch) Experience with GPU programming (ideally CUDA) Experience with CFD methods and simulation software (such as OpenFOAM) You get A competitive Swiss salary A generous equity compensation plan Flexible working hours Access to unlimited computational resources State-of-the-art equipment Stimulating environment with top-level researchers and engineers Comfortable office with open beverages and healthy food To Apply Send an email to: contact@neuralconcept.com Title: Software Engineer Candidate Please attach your CV and links to relevant resources (e.g. your Github)',\n", + " '[\"Research\", \"Collaboration\", \"Planning\", \"Reliability\", \"Innovation\"]',\n", + " '[\"MSC Software\", \"Kubernetes\", \"Tooling\", \"NoSQL\", \"Graphics Processing Unit (GPU)\", \"Accessioning\", \"Juniper Network Technologies\", \"Natural Language Processing\", \"Programming (Music)\", \"Computer Science\", \"Computer-Assisted Surgery\", \"Docker Container\", \"Web Frameworks\", \"Nvidia CUDA\", \"Industrialization\", \"Notching\", \"Scale (Map)\", \"C++ (Programming Language)\", \"Python (Programming Language)\", \"Component Object Model (COM)\", \"E (Programming Language)\", \"Levelling\", \"Simulation Software\", \"Idealization\", \"Flask (Web Framework)\", \"Software Engineering\", \"Machine Learning Methods\", \"Github\", \"Beverage Products\", \"Storages\", \"Machine Learning Algorithms\", \"Geometry\", \"TensorFlow\", \"Google Cloud\", \"Deep Learning\", \"OpenFOAM\", \"Physics\", \"Foods\", \"Imaging\", \"Equities\", \"Data Structures\", \"Recurrent Neural Network (RNN)\", \"Resourcing\", \"Algorithms\", \"PyTorch (Machine Learning Library)\", \"Job Descriptions\", \"Sailing\", \"Cloud Infrastructure\", \"Custom Backend\", \"Cultivator\"]',\n", + " \"['English']\"],\n", + " ['68',\n", + " 'software engineer / kubernetes',\n", + " 'Zürich',\n", + " 'Publishing',\n", + " '',\n", + " '[[-9.86396894e-02 3.53228837e-01 5.67326486e-01 3.63957249e-02\\n4.11444038e-01 -1.54789671e-01 -1.02825258e-02 3.75273436e-01\\n-1.09489605e-01 -3.61436069e-01 -1.27484068e-01 -2.00840175e-01\\n-2.10987758e-02 9.52819064e-02 9.87729430e-02 3.63007396e-01\\n1.37525052e-01 1.10589705e-01 -1.76684603e-01 2.60704219e-01\\n1.58464849e-01 -8.05613026e-02 1.65607065e-01 6.42816842e-01\\n3.86824906e-01 2.66366173e-02 -4.28315764e-03 3.82334217e-02\\n-2.43231893e-01 -2.74984568e-01 5.35701811e-01 1.72870532e-01\\n-2.02128589e-01 -3.24811488e-01 9.71850902e-02 -1.22270696e-02\\n-1.51039958e-01 -1.66761622e-01 6.61277249e-02 2.59619087e-01\\n-3.99658412e-01 -2.26555467e-01 8.92851651e-02 -2.46167164e-02\\n-2.31960461e-01 -3.20629090e-01 2.11927425e-02 -7.26859942e-02\\n1.23782150e-01 -9.61930528e-02 -5.79135120e-01 3.66553992e-01\\n-2.13437229e-01 -1.46317482e-01 3.15854549e-01 5.32991588e-01\\n-8.24891999e-02 -4.79702652e-01 -3.03395003e-01 -1.51844054e-01\\n6.08861223e-02 -2.08625227e-01 6.65153936e-02 -2.31660664e-01\\n2.91905969e-01 2.14463491e-02 -2.67569907e-02 3.28941286e-01\\n-6.91635668e-01 -1.72613878e-02 -2.27979168e-01 -1.59735546e-01\\n-2.58818299e-01 -1.25708237e-01 -2.01496348e-01 -1.32322893e-01\\n-1.46813557e-01 3.84239137e-01 9.33659896e-02 4.49809916e-02\\n-2.13775635e-01 2.79151410e-01 -1.96597308e-01 3.56353700e-01\\n2.63455778e-01 2.20443532e-01 1.60394460e-01 3.43518764e-01\\n-3.72574925e-01 3.65624726e-01 2.37283453e-01 -2.83255041e-01\\n3.18914801e-01 -7.92915374e-03 4.37403560e-01 1.10671923e-01\\n1.17043637e-01 4.85769100e-02 -1.37978867e-01 1.56821102e-01\\n2.50299215e-01 -1.47155181e-01 1.31804541e-01 -1.30578563e-01\\n-5.54054789e-02 -9.16475281e-02 -6.68351576e-02 3.09340835e-01\\n-2.00602442e-01 4.17501897e-01 2.48793095e-01 -1.57543525e-01\\n-1.23951837e-01 -4.73002315e-01 -1.05028406e-01 5.82843460e-02\\n-3.19957472e-02 1.51362702e-01 2.86295682e-01 2.13342682e-01\\n3.63012284e-01 1.10410206e-01 1.42234713e-01 8.16576838e-01\\n-2.34701131e-02 -8.18513334e-02 -2.53655016e-01 3.18368405e-01\\n9.24840942e-02 -2.44545594e-01 2.32423604e-01 2.95756489e-01\\n5.20852953e-02 -1.06155507e-01 -1.16933405e-01 2.98990518e-01\\n-3.46655138e-02 -2.58636832e-01 -3.16073775e-01 1.20410465e-01\\n-2.43355468e-01 -3.74621838e-01 5.19879162e-01 7.43166730e-02\\n1.84957951e-01 1.51498113e-02 -1.04693070e-01 -1.65667117e-01\\n-3.16648781e-02 1.75257295e-01 -8.08483660e-02 1.76391557e-01\\n-2.46911645e-01 -1.86413556e-01 -2.88301826e-01 1.57823950e-01\\n-7.57721812e-02 9.13605094e-02 -7.45673617e-03 -8.65919814e-02\\n3.65876615e-01 -8.12272355e-03 -2.32298151e-01 3.24595660e-01\\n-1.55297685e-02 -1.49815962e-01 -1.45775735e-01 3.34570229e-01\\n-1.49785161e-01 1.97962001e-01 -3.05489283e-02 -2.20910087e-01\\n4.47093397e-01 -2.68346611e-02 2.07813293e-01 -1.02096079e-02\\n2.94017404e-01 -8.27189609e-02 1.77478179e-01 1.32296905e-01\\n-5.97901762e-01 3.19129705e-01 -1.91639274e-01 2.61017047e-02\\n1.14954583e-01 2.59220749e-02 2.18464747e-01 -2.66264051e-01\\n2.67351028e-02 -7.70545527e-02 -4.03702557e-01 -4.70857352e-01\\n-1.21590711e-01 -7.42204301e-03 3.52233082e-01 -3.32233787e-01\\n-1.27752855e-01 2.14209899e-01 -4.47474450e-01 -6.46150559e-02\\n2.51695156e-01 2.36691028e-01 7.15972260e-02 5.04741967e-02\\n-1.73025236e-01 -3.23829234e-01 1.71359796e-02 -4.16661739e-01\\n-3.24671000e-01 2.22271290e-02 -3.33122373e-01 2.14627117e-01\\n1.39333799e-01 4.43055592e-02 -5.78242131e-02 1.64755136e-01\\n-2.28202790e-01 -1.35058090e-01 1.62339419e-01 1.26342416e-01\\n3.60177249e-01 -8.31727460e-02 -3.43623817e-01 4.77640778e-01\\n-1.58829302e-01 5.72451770e-01 2.00217709e-01 -8.05105031e-01\\n5.52977085e-01 3.03927064e-01 9.23681539e-03 -3.16989899e-01\\n5.90869367e-01 -3.15465957e-01 6.21235296e-02 1.31655172e-01\\n-2.81153172e-01 -3.37243319e-01 2.16755599e-01 -1.75419182e-01\\n-2.91525453e-01 5.46115637e-01 7.20381737e-02 5.03583029e-02\\n9.29163620e-02 -2.61773378e-01 -1.03731371e-01 -8.75549465e-02\\n-7.23192990e-02 -1.76573649e-01 -4.69672233e-01 2.83928346e-02\\n-1.52788594e-01 -4.98112053e-01 -2.16351487e-02 -3.61615479e-01\\n-1.74553543e-01 -3.99190009e-01 -1.37264594e-01 3.72618973e-01\\n2.15542004e-01 1.08110808e-01 7.24827358e-03 -5.01966402e-02\\n-1.70615315e-01 -6.47843242e-01 -1.28515959e-01 1.60230994e-01\\n4.11659837e-01 1.68365851e-01 8.09346884e-02 5.18935621e-02\\n-1.97065831e-03 6.04531646e-01 -1.38802931e-01 -9.09259543e-02\\n1.79975078e-01 1.98866859e-01 -1.18141174e-02 -5.82729839e-02\\n7.97336400e-02 2.74976432e-01 -2.34403461e-01 -4.00242284e-02\\n-1.81422710e-01 3.57470848e-03 4.18841898e-01 9.48151667e-03\\n-3.26967120e-01 -3.05485457e-01 5.26369698e-02 2.41083652e-01\\n-4.54461366e-01 -6.97428957e-02 6.03892624e-01 2.91152775e-01\\n2.18290444e-02 2.36755401e-01 3.11013073e-01 -8.69348049e-02\\n-1.80006817e-01 -1.09573744e-01 9.09840241e-02 9.13751647e-02\\n1.51696369e-01 -5.98091120e-03 -2.18380064e-01 -4.93604749e-01\\n-3.86651587e+00 -1.79341570e-01 1.96873397e-01 -2.62040436e-01\\n1.90999582e-01 -4.90829460e-02 8.46772194e-02 -1.63355526e-02\\n-2.01715946e-01 5.80407046e-02 -1.12979256e-01 -1.12677477e-01\\n1.11043625e-01 1.78158745e-01 1.46073988e-02 2.37694532e-01\\n8.23406056e-02 -2.87258714e-01 -3.24229039e-02 2.40174547e-01\\n-3.00104469e-01 -6.77762747e-01 3.59239101e-01 -1.28383905e-01\\n1.38692573e-01 1.62161693e-01 -2.25758493e-01 -9.42895785e-02\\n-1.14096597e-01 -2.19792783e-01 8.73420835e-02 -1.25576392e-01\\n-1.80443496e-01 3.73502403e-01 1.34097382e-01 -1.18699417e-01\\n2.01839134e-01 -3.84118289e-01 -1.25689730e-01 -4.75600511e-01\\n1.32493392e-01 -5.16155839e-01 1.25955176e-02 -6.98613673e-02\\n7.48347998e-01 -3.70802611e-01 1.74251143e-02 1.54234201e-01\\n1.66155338e-01 3.09762985e-01 2.75816340e-02 -6.56370819e-02\\n-2.20833272e-01 -2.71969855e-01 1.47756403e-02 -2.00067982e-01\\n4.07934874e-01 5.32673240e-01 -2.50871986e-01 -1.21539831e-02\\n2.32154392e-02 -1.82392716e-01 -3.68688613e-01 -3.70543063e-01\\n-5.53291477e-02 -1.24375232e-01 -7.47914195e-01 -3.72815043e-01\\n-7.06396848e-02 -2.29033306e-01 -2.87312776e-01 6.46420538e-01\\n-2.03403503e-01 -4.23287958e-01 -5.42914830e-02 -4.30124909e-01\\n2.05894098e-01 -2.12960109e-01 -2.96743419e-02 -1.40996605e-01\\n-2.05325410e-01 -3.61008078e-01 3.96445245e-02 -3.37753929e-02\\n-1.81393668e-01 -1.50582254e-01 1.48122106e-02 -2.45135501e-01\\n-2.07390621e-01 -5.34297228e-01 3.44224155e-01 1.49384812e-01\\n3.54635149e-01 1.08168744e-01 2.91438520e-01 2.38403276e-01\\n3.10482174e-01 -1.43529698e-01 5.19399904e-02 -3.52669686e-01\\n1.47616312e-01 -3.97958234e-02 4.99625385e-01 -3.03666621e-01\\n2.60145850e-02 2.21558109e-01 -1.82700396e-01 -1.26914948e-01\\n3.01947147e-01 2.81799771e-02 -1.37295090e-02 -2.76748747e-01\\n1.01296894e-01 -3.51991236e-01 -2.81909347e-01 3.14142369e-02\\n1.25688184e-02 5.65383375e-01 -1.74573027e-02 -4.37440842e-01\\n-2.22908393e-01 4.53334332e-01 -8.18141457e-03 -1.00599438e-01\\n-3.21921796e-01 1.25206500e-01 -1.76940545e-01 2.56424189e-01\\n1.02477387e-01 -1.76139981e-01 -1.92849398e-01 -1.35695696e-01\\n-7.08939284e-02 1.59004316e-01 3.02977592e-01 1.69395566e-01\\n-1.11120297e-02 -3.06526214e-01 -9.34800133e-02 1.21854812e-01\\n2.07979739e-01 2.63404042e-01 1.12347476e-01 -6.61246553e-02\\n-5.83111458e-02 3.39883626e-01 -2.42418572e-01 9.73672494e-02\\n-1.68855280e-01 4.45390008e-02 -5.46581745e-01 -3.08295012e-01\\n-1.32315859e-01 -2.99340367e-01 8.98948535e-02 2.51019359e-01\\n2.27855965e-01 -6.55286536e-02 -3.08736358e-02 -4.01280642e-01\\n4.32699710e-01 -6.50226697e-02 2.32101783e-01 2.19520569e-01\\n-1.57424565e-02 5.68058193e-01 5.64253367e-02 -9.45260525e-02\\n-1.57026261e-01 -1.53292995e-02 -2.95301735e-01 4.15496435e-03\\n-4.37271036e-02 -2.51033068e-01 -8.52349773e-02 4.57998425e-01\\n1.87186465e-01 -2.33891904e-01 -1.90754890e-01 2.70599931e-01\\n-3.60190831e-02 -2.10468397e-01 -1.50382176e-01 5.44195250e-02\\n3.34445059e-01 1.43303171e-01 2.68921524e-01 -3.84067535e-01\\n-8.10124446e-03 -9.14625451e-03 -2.20850073e-02 4.29813117e-01\\n2.43724167e-01 3.63999642e-02 6.48201630e-03 -2.69303113e-01\\n3.85994583e-01 -2.20154852e-01 -1.98586956e-01 -8.88039023e-02\\n2.21271776e-02 -1.08325772e-01 -3.97155464e-01 1.12120487e-01\\n-1.78362101e-01 -1.97919130e-01 3.90429087e-02 1.02648075e-04\\n8.82162303e-02 -3.92693281e-02 -4.66547489e-01 -2.58321464e-01\\n-3.53705794e-01 7.90080875e-02 -1.15440011e-01 -4.25542533e-01\\n9.73891318e-02 6.13474064e-02 -5.82636297e-01 2.79635042e-01\\n-2.56400108e-01 -4.65064272e-02 8.05442631e-02 8.18636566e-02\\n-3.36314619e-01 3.08165252e-02 1.78941399e-01 1.88131973e-01\\n-1.99829563e-01 -2.92583674e-01 2.32387111e-02 -1.03392053e+00\\n1.92708880e-01 -6.09105378e-02 -1.82005376e-01 3.64910625e-02\\n-1.28273359e-02 -6.52777791e-01 9.90936607e-02 -2.57608116e-01\\n-1.16646208e-01 5.15502170e-02 -2.37577230e-01 -5.06722331e-01\\n4.24770750e-02 -2.28927415e-02 -2.23666817e-01 3.52656960e-01\\n-3.96853060e-01 1.99562147e-01 -1.21000195e-02 1.34260118e-01\\n5.96545748e-02 -3.34889233e-01 1.46886110e-01 -3.28380436e-01\\n-4.10223722e-01 -1.01043165e-01 -2.94904262e-01 -2.10966185e-01\\n-1.00863352e-01 -3.13403100e-01 -2.65923403e-02 3.67886238e-02\\n3.06757301e-01 8.25990587e-02 -5.05405478e-02 -1.15442790e-01\\n-3.31759378e-02 -3.28601807e-01 1.37318999e-01 3.49960197e-03\\n-4.18374315e-02 -1.02986366e-01 2.08148196e-01 1.75102744e-02\\n1.32077962e-01 -3.43547195e-01 4.02048230e-01 -2.77153075e-01\\n-2.53161788e-01 -1.08336560e-01 5.64804710e-02 4.93663885e-02\\n2.95530796e-01 -5.68853796e-01 7.82246515e-03 4.19337541e-01\\n9.68805552e-02 1.53102741e-01 2.93222010e-01 -7.70132840e-02\\n-1.47469819e-01 2.90416569e-01 -2.96383768e-01 6.81734085e-02\\n6.68422580e-01 9.82751325e-02 1.01533450e-01 2.38755316e-01\\n8.42127353e-02 1.78761452e-01 3.39968354e-01 -3.04497126e-02\\n7.95682240e-03 2.60779887e-01 4.26736102e-03 -5.87939262e-01\\n-4.07676175e-02 -6.26401380e-02 -2.39319101e-01 -3.43370616e-01\\n6.55586720e-01 3.45989883e-01 -3.36533666e-01 -2.86600292e-01\\n-1.52257038e-02 -2.70355910e-01 1.88502416e-01 -9.84065980e-02\\n5.43959588e-02 -6.22875541e-02 4.88136858e-01 8.69847741e-03\\n1.75272822e-01 5.31277418e-01 -1.16050735e-01 -2.81378359e-01\\n-7.58035183e-02 1.01043098e-01 7.33466148e-02 4.78757232e-01\\n-1.00773476e-01 1.98942676e-01 1.10007832e-02 2.04501629e-01\\n-9.61248800e-02 9.33214426e-02 -4.52964604e-02 1.92339271e-01\\n-4.37920094e-02 1.68450192e-01 2.63604522e-01 4.08222944e-01\\n1.56363189e-01 5.42348742e-01 4.16393250e-01 1.56677648e-01\\n4.98144299e-01 3.10483813e-01 4.08534884e-01 2.02082470e-01\\n-2.96968874e-02 7.50399008e-02 -1.98692940e-02 -2.65627243e-02\\n1.71882227e-01 2.81599194e-01 2.12341230e-02 8.37382197e-01\\n3.54153395e-01 1.36229858e-01 5.64457119e-01 -5.40149212e-01\\n-3.59733850e-01 -5.24991862e-02 4.49542642e-01 -4.37585235e-01\\n1.50364721e-02 -1.21384375e-02 -2.65996277e-01 1.44403532e-01\\n-4.72278595e-01 -3.67757194e-02 -1.47116780e-01 -6.82415394e-03\\n1.01224817e-01 -5.94040938e-02 -2.14884415e-01 -2.47477498e-02\\n-1.42620608e-01 -1.85730848e-02 -3.47300500e-01 -1.11910738e-01\\n-2.41236418e-01 -7.17705041e-02 -7.46985003e-02 -1.85892373e-01\\n1.59625895e-02 -3.01559508e-01 -1.28483370e-01 3.00171301e-02\\n2.78268278e-01 -1.04735762e-01 -1.11930825e-01 -9.69903916e-02\\n2.85251409e-01 2.41066620e-01 4.90248948e-01 1.39178401e-02\\n1.52966663e-01 -1.50880069e-01 -1.82258964e-01 -4.34091575e-02\\n1.67298794e-01 1.56000182e-02 4.90716733e-02 4.26151901e-01\\n-3.72452915e-01 -7.92823732e-02 5.32288961e-02 3.45622510e-01\\n-4.28862542e-01 1.31345708e-02 -1.69181935e-02 1.71148688e-01\\n9.63133350e-02 1.60424173e-01 -2.71407425e-01 3.37740071e-02\\n-2.22881481e-01 -4.71496880e-01 3.30331683e-01 -2.32179135e-01\\n1.83764547e-02 5.96662983e-02 1.82329640e-01 9.52501968e-02\\n-2.32505053e-01 1.39892837e-02 6.30552694e-02 2.01587290e-01\\n1.84415430e-02 2.35088319e-01 -3.04267108e-01 -2.25467026e-01\\n-2.89972275e-01 2.08660096e-01 -8.36983249e-02 1.29145160e-01\\n-7.37960916e-03 2.35196725e-01 1.43932834e-01 5.78541607e-02\\n2.99762428e-01 -9.82260555e-02 -2.10702911e-01 -2.30772689e-01\\n-3.73177648e-01 -2.90136158e-01 -8.68161172e-02 -1.79977819e-01\\n1.95918977e-01 -3.98411334e-01 -7.55714029e-02 -2.89538922e-03\\n-1.27865911e-01 -3.52548569e-01 2.43788008e-02 -4.19341400e-02]]',\n", + " 'localsearch is the leading marketing and advertising partner for Swiss SME. We make our customers successful in the digital world. Within our department Products & Platforms we are looking for new colleagues: Software Engineer / Kubernetes We are Virtualizers, Software Engineers, Orchestrators, Coders and offer a highly skilled devops and software engineering team responsibility to provide and enhance services and APIs which are used by many teams and applications or external consumers two completely own managed Kubernetes clusters (on GKE/GCP) a close collaboration with software engineering teams to support them building new features and applications You are a tech enthusiast, cloud surfer, automator, networker and you impress us with a good understanding of mixed architecture of public and private clouds professional experience with Kubernetes, infrastructure as a code and cloud services networking, scripting (Bash), log and systems performance analysis skills a good understanding of web application architectures (web servers, relational/non-relational databases, caching tiers, fault-tolerant design) solid communications – even remotely -, team working and interpersonal skills fluent in English, German is a plus Important: We are only able to consider applicants with a valid permit to reside and work in Switzerland or citizens of EU-27. Direct applications are given priority. We will be happy to answer your questions via our WhatsApp chat +41 79 358 35 76. We, Sylvia Ramona Bertele and Colin Griehl, look forward to receiving your online application!',\n", + " '[\"Collaboration\", \"Communications\", \"Infrastructure\", \"Management\"]',\n", + " '[\"Web Applications\", \"Web Servers\", \"Advertisement\", \"Kubernetes\", \"Enhanced Messaging Service\", \"Platform Product Management\", \"Fault Tolerant Ethernet\", \"Consumables\", \"Google Kubernetes Engine (GKE)\", \"Private Cloud\", \"Software Engineering\", \"Cloud Services\", \"Applications Architecture\", \"Whatsapp\", \"Digitization\", \"Bash (Scripting Language)\", \"Receivables\", \"Google Cloud Platform (GCP)\", \"Relational Databases\", \"Customer Success\", \"Scripting\", \"Performance Analysis\", \"Network Automation\", \"DevOps\"]',\n", + " \"['English', 'Marathi', 'Castilian', 'Irish']\"],\n", + " ['97',\n", + " 'paid internship in information technology - data scientist -switzerland, 6 months (m/f)',\n", + " 'Geneva',\n", + " '',\n", + " 'www.pg.com',\n", + " '[[-1.46625876e-01 2.97089696e-01 5.98815024e-01 5.52584045e-02\\n6.63380027e-01 5.05736098e-03 4.31522243e-02 2.83696324e-01\\n5.46164811e-05 -3.58041972e-01 1.07462779e-02 -2.28334308e-01\\n-3.17019373e-02 2.05632702e-01 1.95266500e-01 5.14388084e-01\\n2.72215247e-01 6.76571280e-02 -1.62535056e-01 4.03577745e-01\\n8.36891234e-02 -1.76670998e-01 1.46190464e-01 7.74135113e-01\\n5.82006931e-01 1.19468421e-02 -1.48957238e-01 3.10910121e-02\\n-2.50926822e-01 -2.35392228e-01 4.49550807e-01 1.04054168e-01\\n-2.38533258e-01 -3.36627632e-01 1.50475189e-01 7.38798529e-02\\n-3.67153525e-01 -7.34119341e-02 -1.45952046e-01 2.00175762e-01\\n-4.50292140e-01 -2.15128899e-01 -9.07714441e-02 2.74249017e-02\\n-3.05803537e-01 -3.77696753e-01 -1.83832064e-01 -4.45742644e-02\\n2.35005468e-02 7.14937001e-02 -3.84729803e-01 3.83611172e-01\\n-9.96154994e-02 -3.55441809e-01 1.70554936e-01 7.75690913e-01\\n3.60512547e-02 -3.82699996e-01 -4.66619432e-01 -3.58019590e-01\\n5.00244498e-02 -1.18224978e-01 2.10219175e-01 -2.97615707e-01\\n2.49363601e-01 -6.19977452e-02 9.08441190e-03 2.49283105e-01\\n-7.74306417e-01 -8.10025558e-02 -3.50942314e-01 -3.44854370e-02\\n-2.63833225e-01 4.28281724e-04 -4.77425992e-01 -1.77426815e-01\\n-4.91471179e-02 4.59216475e-01 1.73763677e-01 8.12058672e-02\\n-1.47140831e-01 1.75030917e-01 -2.15033948e-01 2.82546192e-01\\n1.45197511e-01 3.42268765e-01 2.76879787e-01 3.44273150e-01\\n-3.22444350e-01 3.64846021e-01 2.07499027e-01 -3.66537750e-01\\n3.12495232e-01 1.94600195e-01 4.33068842e-01 -2.06331871e-02\\n1.31348819e-01 9.49978679e-02 -2.88555801e-01 2.75159001e-01\\n1.73106253e-01 -3.75627130e-01 1.27045780e-01 -6.62551075e-02\\n-5.30463196e-02 8.75604525e-03 1.43937515e-02 6.98049143e-02\\n-3.27641428e-01 4.67955828e-01 -2.47577261e-02 -2.06768572e-01\\n-1.28039673e-01 -4.07353073e-01 -6.75275698e-02 -1.35964155e-02\\n-2.02514641e-02 3.33678365e-01 2.09505290e-01 1.76706225e-01\\n9.33874995e-02 -1.10308509e-02 1.15899965e-01 7.80142188e-01\\n-3.72556597e-02 8.78705978e-02 -2.43952289e-01 2.38540158e-01\\n2.13185579e-01 -2.48349726e-01 2.22224861e-01 1.78140461e-01\\n-4.17644083e-02 -1.19771257e-01 -2.71934420e-01 2.26071075e-01\\n-3.93532291e-02 -2.98456430e-01 -1.22461766e-01 2.15724915e-01\\n-3.12453546e-02 -5.93349516e-01 6.23180211e-01 -6.00920711e-03\\n1.74817964e-01 -1.53801233e-01 -8.74667987e-03 -7.88041055e-02\\n-3.92587446e-02 1.78148687e-01 5.46641387e-02 2.29622722e-01\\n-2.64808416e-01 -2.60687411e-01 -1.93305671e-01 1.11035876e-01\\n-5.14232397e-01 1.31877095e-01 -9.71325934e-02 -5.85907474e-02\\n1.97940797e-01 9.89877284e-02 -3.39746445e-01 2.64409065e-01\\n-1.99533522e-01 -1.75205648e-01 5.06825671e-02 4.54981089e-01\\n-2.98453212e-01 1.73153609e-01 3.02604809e-02 -1.45189315e-01\\n5.76241016e-01 2.69048870e-01 2.98345447e-01 5.83518222e-02\\n3.04198146e-01 -5.25966510e-02 9.29361507e-02 1.93861246e-01\\n-5.72419167e-01 3.68082583e-01 -1.84971407e-01 -2.90293515e-01\\n5.90719581e-02 -1.57388046e-01 3.55120540e-01 -2.30196908e-01\\n1.07912645e-01 -1.03712857e-01 -2.83419400e-01 -2.50865996e-01\\n-8.93106982e-02 8.74926895e-03 3.41615915e-01 -5.10797858e-01\\n3.15235667e-02 2.08735704e-01 -4.91805196e-01 -1.11982219e-01\\n1.20349154e-01 1.47516891e-01 8.50317720e-03 6.21916428e-02\\n-1.49881989e-01 -5.08829892e-01 -8.51720572e-03 -4.26416397e-01\\n-2.44404584e-01 5.41032106e-02 -3.79858851e-01 1.46746904e-01\\n8.54083821e-02 -7.63888843e-03 -1.31499872e-01 -1.75580662e-02\\n-2.43993342e-01 2.91733705e-02 4.59788516e-02 4.37083542e-02\\n1.94412410e-01 1.02460295e-01 -3.46118927e-01 4.83212531e-01\\n-2.63057172e-01 5.13956189e-01 1.93336755e-01 -9.28895354e-01\\n4.58037764e-01 1.99196383e-01 -2.73814946e-02 -3.12786549e-01\\n5.66497087e-01 -4.03608382e-01 -5.83759993e-02 2.07428142e-01\\n-2.47247845e-01 -2.88090110e-01 1.97575137e-01 -2.42127806e-01\\n-2.56387502e-01 4.97271359e-01 1.24795869e-01 1.70185894e-01\\n2.17580035e-01 -1.30556300e-01 -1.13175049e-01 9.42278802e-02\\n-2.03288078e-01 -2.46712834e-01 -6.38752759e-01 5.88763282e-02\\n-9.35888365e-02 -3.85042250e-01 -4.00742963e-02 -4.26307529e-01\\n-1.89873621e-01 -4.25766468e-01 -1.52606875e-01 1.03556961e-01\\n3.27954054e-01 1.92350075e-01 -3.72943953e-02 -1.26396656e-01\\n-3.67903337e-02 -6.43004119e-01 -1.35628700e-01 1.07975513e-01\\n4.16285336e-01 1.96093351e-01 1.97558045e-01 -4.68288623e-02\\n2.13901460e-01 6.62105620e-01 -2.02041864e-01 -3.02116960e-01\\n1.94451243e-01 1.33849382e-01 -1.59646291e-02 -1.56211421e-01\\n1.29034147e-01 2.59791553e-01 -2.90636390e-01 7.41391554e-02\\n-4.86015007e-02 4.76026535e-02 3.81776571e-01 1.57405958e-02\\n-2.13094845e-01 -2.35063344e-01 -5.05603068e-02 1.80122048e-01\\n-5.30554771e-01 -2.05156893e-01 6.16245389e-01 6.68901131e-02\\n9.75368321e-02 6.81096315e-02 3.40779871e-02 -1.02391634e-02\\n-1.38622478e-01 -1.73848212e-01 2.88696051e-01 7.95263499e-02\\n1.93889961e-01 1.01825446e-01 8.15253332e-02 -5.93242049e-01\\n-3.59176254e+00 -2.48596728e-01 3.81323993e-02 -1.66917682e-01\\n2.47269541e-01 -2.57904112e-01 8.75673071e-02 2.83037685e-02\\n-3.33868563e-01 1.42402589e-01 -2.11599514e-01 -2.06320465e-01\\n4.32894640e-02 1.23296291e-01 1.65230855e-01 1.99653119e-01\\n1.76120371e-01 -2.06816360e-01 -5.53095788e-02 5.16425669e-01\\n-1.50242686e-01 -6.90240443e-01 1.67507827e-01 7.63816684e-02\\n2.93795586e-01 1.34509757e-01 -3.26899260e-01 -1.29727662e-01\\n-3.15243065e-01 -1.80568129e-01 3.68714780e-02 -2.64436841e-01\\n-1.99155122e-01 3.90549362e-01 1.89543426e-01 -6.54361248e-02\\n1.08399168e-01 -3.96811515e-01 -9.94347185e-02 -3.82092357e-01\\n4.89588119e-02 -6.64116263e-01 -9.30344388e-02 -8.53366628e-02\\n7.15531588e-01 -1.71126708e-01 2.34689236e-01 1.68843389e-01\\n1.12720951e-01 1.33092115e-02 9.35156569e-02 -3.94485667e-02\\n-1.67037755e-01 -2.84408867e-01 -3.53569612e-02 -1.43924683e-01\\n5.60148001e-01 4.11696374e-01 -1.35116488e-01 -1.00722071e-02\\n1.24426112e-01 -1.34410173e-01 -5.08586526e-01 -3.38261008e-01\\n-1.67830929e-01 -1.66109636e-01 -7.41971791e-01 -5.14543295e-01\\n-1.54742867e-01 -1.34314358e-01 -1.57274857e-01 5.45019209e-01\\n-1.79529369e-01 -2.11379528e-01 -1.31653517e-01 -3.18932980e-01\\n3.24488401e-01 -4.58307452e-02 -5.60571104e-02 -1.34983733e-01\\n-2.93032020e-01 -5.28362989e-01 9.22956765e-02 4.87315357e-02\\n-1.90210760e-01 -2.72065759e-01 9.48319808e-02 -1.26954779e-01\\n-4.29644823e-01 -4.69773948e-01 4.69080836e-01 3.71185131e-02\\n2.59852260e-01 1.48498118e-01 3.88921678e-01 -1.08408919e-02\\n3.13204467e-01 -1.18586823e-01 -9.79972631e-03 -4.50827777e-01\\n2.70048492e-02 5.20006120e-02 4.35374081e-01 -2.35581741e-01\\n3.45722511e-02 -1.87900849e-02 -1.83354601e-01 -1.13277789e-03\\n3.81821930e-01 -7.77769387e-02 7.91429132e-02 4.24028225e-02\\n1.55009419e-01 -2.18639731e-01 -9.75505710e-02 4.69379090e-02\\n6.96843788e-02 6.49002552e-01 1.85191315e-02 -3.12850684e-01\\n-1.52622640e-01 3.64467859e-01 -1.74426585e-01 -7.59934541e-03\\n-2.29537308e-01 7.09246397e-02 -2.09646523e-01 3.93172234e-01\\n-1.50768962e-02 -1.90625027e-01 -2.19742730e-01 -2.31166974e-01\\n-1.20229721e-01 2.34180376e-01 3.71145666e-01 7.69891292e-02\\n-6.66841120e-02 -4.48181182e-01 -9.69401672e-02 2.09734321e-01\\n4.07551467e-01 3.46975744e-01 2.39197850e-01 -1.74763530e-01\\n-8.08972791e-02 2.39324912e-01 -2.75705546e-01 2.01958671e-01\\n-2.81147182e-01 9.61922407e-02 -6.47115350e-01 -3.07859242e-01\\n-2.92454481e-01 -3.65987003e-01 2.27803126e-01 4.46995854e-01\\n1.73977375e-01 -8.16863850e-02 1.17244929e-01 -4.70234692e-01\\n2.76065588e-01 5.64550841e-03 1.32812575e-01 6.18906617e-02\\n-1.31162271e-01 6.62208438e-01 -1.61584467e-05 -1.75784975e-01\\n-8.30981582e-02 2.02771183e-02 -2.29303136e-01 -1.55026212e-01\\n-1.04611188e-01 -5.42949975e-01 -1.52880341e-01 3.01126301e-01\\n2.12495103e-01 -2.83316851e-01 -2.26651222e-01 2.04502329e-01\\n-4.88832891e-02 -3.02814096e-01 -2.27337599e-01 -5.23123033e-02\\n4.16536510e-01 8.34350139e-02 2.82918096e-01 -5.33548594e-01\\n4.04903665e-02 -2.21000016e-02 -5.96635342e-02 4.77883399e-01\\n-1.15390830e-02 9.95267630e-02 8.45957268e-03 -1.07848123e-01\\n4.71558869e-01 2.66339630e-02 -1.21857315e-01 8.48133415e-02\\n8.04677680e-02 -2.62561500e-01 -3.85840058e-01 1.08799823e-02\\n7.25580901e-02 -3.01310390e-01 -1.01090008e-02 2.47946113e-01\\n-3.82981636e-02 8.68202746e-03 -5.66247344e-01 -2.37429291e-01\\n-3.27022493e-01 -8.59834254e-02 -8.01572762e-03 -5.54027140e-01\\n-1.54837817e-01 -1.06725030e-01 -5.16012490e-01 2.16088504e-01\\n-2.49270927e-02 -1.53991118e-01 9.96070877e-02 5.65100461e-02\\n-1.35449141e-01 -1.44496113e-01 1.98386222e-01 2.46859506e-01\\n-2.70817250e-01 -2.85278678e-01 3.21337394e-02 -8.64739776e-01\\n1.92481965e-01 1.58444226e-01 -1.06236815e-01 1.45081952e-01\\n-9.26926211e-02 -5.58218122e-01 1.55765414e-01 -4.11275804e-01\\n-1.17287561e-01 -1.42168880e-01 -2.97917366e-01 -4.38430250e-01\\n1.23975128e-01 1.14716120e-01 -2.57658035e-01 4.46679115e-01\\n-3.03191781e-01 3.25460553e-01 -9.80649516e-02 8.86136442e-02\\n7.36139566e-02 -2.16459244e-01 1.51887894e-01 -3.78057718e-01\\n-3.78298789e-01 -1.50157705e-01 -2.87086487e-01 -2.09018663e-01\\n-1.31245881e-01 -1.72453046e-01 -1.40407562e-01 4.29235771e-02\\n3.61408472e-01 2.22641379e-01 -1.67668447e-01 -3.22013438e-01\\n4.70559187e-02 -4.42969680e-01 8.78485888e-02 -8.26380402e-02\\n-1.44174933e-01 -1.02946624e-01 1.53302610e-01 6.86193258e-02\\n1.73456222e-01 -2.84451038e-01 3.90342325e-01 -4.53755200e-01\\n-1.99048325e-01 -1.58408299e-01 4.78072539e-02 5.20601347e-02\\n2.36808002e-01 -4.37245131e-01 2.40360387e-02 3.00536931e-01\\n1.04633503e-01 1.85837209e-01 3.52854908e-01 -1.19050696e-01\\n-1.11401640e-01 2.57135093e-01 -3.34527433e-01 1.61557928e-01\\n8.68196130e-01 1.19382471e-01 1.33350745e-01 2.42692173e-01\\n2.13040769e-01 2.20479786e-01 4.49616879e-01 2.50931010e-02\\n-9.78141949e-02 3.40593398e-01 1.26733139e-01 -4.30560350e-01\\n-6.33596629e-02 -8.00765455e-02 -9.54978541e-02 -3.31881583e-01\\n7.45690346e-01 3.20768327e-01 -3.01714629e-01 -2.01066017e-01\\n-2.35518783e-01 -1.19151413e-01 2.28711292e-01 -3.36469971e-02\\n-2.03638170e-02 1.68020818e-02 4.72643465e-01 -1.11908972e-01\\n2.39745766e-01 5.13241053e-01 -2.08051294e-01 -2.39870399e-01\\n-1.21385135e-01 2.08733857e-01 6.87775910e-02 5.58869839e-01\\n-3.44918430e-01 3.11169803e-01 2.14506872e-02 8.84221196e-02\\n-1.77302390e-01 1.18435226e-01 2.28702664e-01 1.35135904e-01\\n1.52885109e-01 1.33021683e-01 4.85519469e-01 4.08172131e-01\\n2.55011618e-01 4.62241113e-01 3.77689481e-01 9.35338810e-03\\n3.93570542e-01 4.95040715e-01 2.62960136e-01 4.06806581e-02\\n1.72233656e-02 1.14742205e-01 1.69294789e-01 -1.04481116e-01\\n2.74797320e-01 4.19516504e-01 3.12785879e-02 8.27302694e-01\\n3.53839278e-01 3.36508811e-01 6.71891451e-01 -7.20949709e-01\\n-3.90495062e-01 -1.35154407e-02 6.23018861e-01 -3.08391839e-01\\n6.83952495e-02 2.25676432e-01 -1.19365104e-01 2.58398116e-01\\n-5.16853809e-01 -2.27873415e-01 -8.28940421e-02 3.38437445e-02\\n2.53287069e-02 -1.43886864e-01 -2.09054083e-01 1.88411236e-01\\n1.72548406e-02 -6.04042821e-02 -4.04927254e-01 -1.19684309e-01\\n-2.01444566e-01 -3.11949085e-02 -1.80023223e-01 -6.10500202e-02\\n-6.67620301e-02 -2.43953198e-01 -4.77997437e-02 -9.84043628e-02\\n2.43683174e-01 -1.48762807e-01 -2.26418987e-01 -1.12095363e-02\\n2.98861265e-01 4.46163565e-02 5.58758318e-01 -9.53576788e-02\\n1.06483690e-01 -1.55647799e-01 -2.48059124e-01 3.99314985e-03\\n2.13611126e-01 -2.05972996e-02 -1.02880910e-01 3.25925052e-01\\n-3.33385944e-01 -2.61040270e-01 -4.54178080e-05 1.45592868e-01\\n-4.17892188e-01 3.59568745e-02 -6.96446598e-02 2.32273042e-01\\n1.17788985e-01 1.68844461e-01 -2.08954096e-01 -9.81199294e-02\\n-1.19740486e-01 -5.60607910e-01 1.52102232e-01 -4.64368239e-03\\n-2.15597123e-01 5.05738854e-02 2.60670125e-01 1.54831007e-01\\n-2.74442494e-01 -7.44385049e-02 -1.49428099e-01 9.48665440e-02\\n5.17737716e-02 1.21388718e-01 -1.08646825e-01 -2.95511276e-01\\n-2.38656044e-01 2.55911589e-01 -1.62446368e-02 2.86795884e-01\\n5.60653247e-02 3.79945576e-01 6.96440935e-02 2.49366552e-01\\n2.62124538e-01 9.03570801e-02 -2.53754497e-01 -2.08785594e-01\\n-2.16483608e-01 -1.60309911e-01 -1.24970056e-01 -3.94104384e-02\\n2.22455859e-01 -2.52866566e-01 -1.00973621e-02 -2.42963284e-01\\n-2.37086371e-01 -4.39810336e-01 5.09778224e-02 -1.58611730e-01]]',\n", + " 'Do you have passion to transform P&G\\'s brand building while enabling better decision-making through advanced analytics and machine learning; enhance business results and improving consumer\\'s lives every single day? We are looking for Data Scientist Interns (Female or Male) 6-months - Based in Geneva CompensatedYour responsibilities will be:Get into the details on Marketing and Data Science, using artificial intelligence, data visualization and analytic engines, release business building insights, generating plans from our data to serve consumers worldwide in better way. You will learn through from data we generate from 1.5TB individual consumer touchpoints daily, and information on 500MM consumers\\' behaviors. You will answer business questions and propose solution for business problems by applying machine learning techniques and automatize analysis of consumer touch point information or other deep learning data, explore their patterns and recommend marketing activities.You will discover and invent next-generation business analytic tools for our category analysts and business partners, own our new applications from design-thinking up to user adoption.Full-stack development of innovative and creative tailor-made algorithms that will drive real-life business recommendation and activation, using your favorite tools or environment.Team up with technology partners to translate your innovations into robust, scaled, analytic solutions Collaborate actively and effectively with the data science team, other function\\'s partners and senior management to achieve your project\\'s objectives.Participate to P&G\\'s analytic capability program at different levels of skill and seniority To qualify for this role you should possess the following: Doing a Master Degree in a quantitative field (Operation Research, Computer Science, Engineering, Applied Math, Statistics, Analytics, Data Science, Life-science etc)Passion to try new things, learn quickly and work well with diverse backgrounds.Excellent interpersonal skills, self-motivated, dynamic and can-do attitudeEnthusiasm and curiosity about the intersection of business, technology and data.Very good English (written and oral) and you should have knowledge of Business Intelligence Tools such as KNIME, Tableau, SpotfireBig Data Ecosystem: Hadoop, Spark, MapReduce, SQL, HiveScientific Computing: R, Python, C++, Java, ScalaAdvanced Analytical models (Bayesian, Optimization (global, local, stochastic methods), Uncertainty Quantification, etc.) We offer: Competitive compensationOwn your responsibilities and project leadership as of day 1Dynamic, Diverse, Multi-cultural and Flexible working environment\\'Vibrant Living\\' offering on-site: Gym / Yoga / Sports-teams, Hair-Salon, Canteen, Agile workspace design, Flex-work arrangements possible and \"new-hire network activities\"Help with housing, subsidized meals, free public transport in Geneva and access to our company store, are some examples of our benefits.Equal Opportunities for everybody #WeSeeEqual #LikeAGirl #GABLE #P&GJob Location: Geneva, Petit-Lancy Due to legal restrictions, immigration sponsorship is available only for EU/EFTA nationalities. All candidate with non EU/EFTA nationalities are encouraged to check out opportunities in countries where they can obtain a work permit.Further helpful information to make the application process smooth: Just apply via clicking the button belowHave your CV in English ready to attachPlease note individual attachments cannot be larger than 500 KB ',\n", + " '[\"Self-Motivation\", \"Leadership\", \"Collaboration\", \"Planning\", \"Management\", \"Decision Making\", \"Innovation\", \"Creativity\", \"Curiosity\"]',\n", + " '[\"Business Analytics\", \"Tableau (Business Intelligence Software)\", \"Tooling\", \"Data Explorers\", \"Agility\", \"Accessioning\", \"Business Intelligence Tools\", \"Computer Science\", \"Life Sciences\", \"Analytics\", \"Consumables\", \"Statistics\", \"Bayesian Modeling\", \"Branding\", \"Business Partnering\", \"KNIME\", \"Activism\", \"MapReduce\", \"Python (Programming Language)\", \"Yoga\", \"Operations Research\", \"Levelling\", \"Translations\", \"Hostile Work Environment\", \"Business Intelligence\", \"Data Visualization\", \"Machine Learning Methods\", \"Data Science\", \"Uncertainty Quantification\", \"Release Engineering\", \"Equalization\", \"R (Programming Language)\", \"Artificial Intelligence\", \"Deep Learning\", \"Design Thinking\", \"Adoptions\", \"Public Transport\", \"Subsidized Housing\", \"Algorithms\", \"Business Technologies\", \"Java (Programming Language)\", \"SQL (Programming Language)\", \"Touchpoint\", \"New Hire Orientations\"]',\n", + " \"['English', 'Western Frisian', 'Gaelic', 'Kannada', 'Tigrinya']\"],\n", + " ['96',\n", + " 'study data manager',\n", + " 'Basel',\n", + " 'Staffing & Outsourcing',\n", + " 'www.proclinical.com',\n", + " '[[-3.31524819e-01 3.49949777e-01 3.49553525e-01 1.24307033e-02\\n6.97148919e-01 -9.62627828e-02 1.81974381e-01 1.72352239e-01\\n-4.15377505e-03 -8.51923078e-02 -1.68325186e-01 -2.97012389e-01\\n-1.93288047e-02 1.24176189e-01 6.58815503e-02 4.42799866e-01\\n2.42713511e-01 -2.34636277e-01 -1.00885622e-01 2.61742353e-01\\n8.82496089e-02 -2.03341305e-01 2.10449845e-03 5.77850223e-01\\n2.42068082e-01 1.70513079e-01 -7.68862069e-02 -1.30269870e-01\\n-1.98968083e-01 -1.84003979e-01 6.44303203e-01 7.42273256e-02\\n-2.21562058e-01 -2.78077602e-01 1.44282147e-01 2.38677099e-01\\n-1.81000695e-01 8.11267644e-02 -3.12911600e-01 2.07597405e-01\\n-6.13135695e-01 -2.67194957e-01 -1.76371112e-01 -5.50515652e-02\\n-2.40509838e-01 -3.54324162e-01 3.91126990e-01 1.75866298e-02\\n4.64228764e-02 1.64468661e-01 -4.11731273e-01 1.69168442e-01\\n-3.04784268e-01 -2.58965641e-01 2.98015356e-01 5.56511164e-01\\n1.07132019e-02 -6.96596026e-01 -4.90444183e-01 -3.93821120e-01\\n-1.69254899e-01 -4.53772433e-02 3.06141078e-01 -1.56291053e-01\\n1.67473137e-01 -1.21470511e-01 1.12709329e-01 2.68504947e-01\\n-5.85149825e-01 -2.22167253e-01 -4.41695184e-01 1.09524563e-01\\n-1.05737843e-01 1.06307290e-01 -2.58596539e-01 -1.74744353e-01\\n6.55366853e-03 3.36392939e-01 7.07046092e-02 1.46935940e-01\\n-2.08653659e-01 3.53976637e-01 -2.89836645e-01 3.14936608e-01\\n1.71420336e-01 3.24643105e-02 2.47908145e-01 2.81910121e-01\\n-4.27637458e-01 4.72710133e-01 3.46086025e-01 -3.05343479e-01\\n2.22024828e-01 1.22975141e-01 2.35915199e-01 4.06875670e-01\\n3.04261386e-01 2.09793881e-01 -1.44505441e-01 -5.92022203e-02\\n2.58431077e-01 -1.15234293e-01 1.15407065e-01 -7.58291334e-02\\n-1.74662560e-01 -1.61325723e-01 7.24471360e-02 6.61937296e-02\\n-4.41393495e-01 4.87661541e-01 1.24370821e-01 -2.57276148e-01\\n-2.49921530e-01 -4.63607371e-01 -2.42998078e-03 -6.13937862e-02\\n-6.61478937e-02 8.46880823e-02 5.03659174e-02 3.22746694e-01\\n2.20522702e-01 -9.51053202e-02 1.68497816e-01 7.15015888e-01\\n-2.11128183e-02 -8.71493295e-02 2.28300914e-02 2.63413757e-01\\n-8.74913782e-02 -1.01526216e-01 1.31414562e-01 2.43878916e-01\\n-3.92640606e-02 -7.50325546e-02 -5.26450276e-01 3.46274137e-01\\n-5.77269308e-02 -2.82661915e-01 -1.78406075e-01 3.63435984e-01\\n5.97716421e-02 -7.46770144e-01 5.50760984e-01 -1.23036519e-01\\n1.47283122e-01 -9.85042825e-02 1.09380871e-01 -1.58711448e-02\\n2.14727856e-02 2.16870070e-01 4.16857451e-01 8.92951116e-02\\n2.69702245e-02 -3.55302423e-01 -1.50722980e-01 1.17154732e-01\\n-2.89504349e-01 2.04615325e-01 -3.00889969e-01 -2.94147372e-01\\n3.24575156e-01 1.65966168e-01 -4.71615732e-01 3.44216466e-01\\n6.40601590e-02 6.90313876e-02 -2.11716980e-01 5.94692588e-01\\n-2.42825091e-01 2.33186092e-02 -9.06814486e-02 -2.09223226e-01\\n6.47827744e-01 -4.16174233e-02 4.41749692e-01 1.26822218e-01\\n1.74598724e-01 -7.74406642e-02 4.12989974e-01 -9.69531462e-02\\n-5.83741665e-01 2.78391063e-01 -1.20173663e-01 -8.95036310e-02\\n3.53684366e-01 -1.54002279e-01 3.88104230e-01 -3.34725440e-01\\n2.30575092e-02 -1.27681971e-01 -5.39506435e-01 -3.29957962e-01\\n5.02196737e-02 -8.02319646e-02 2.77695030e-01 -4.32711542e-01\\n2.76629049e-02 1.87856525e-01 -5.82840800e-01 -3.82362127e-01\\n2.16087162e-01 3.15499663e-01 2.40763381e-01 1.82237029e-01\\n-1.46484271e-01 -6.78692698e-01 1.56474262e-01 -5.18076181e-01\\n-3.90299290e-01 2.03190863e-01 -3.69071007e-01 6.84852246e-04\\n-1.39201671e-01 2.97817230e-01 -1.43972695e-01 -8.89808126e-03\\n-2.19011962e-01 2.96599865e-02 3.88649479e-02 -9.54195261e-02\\n7.52427429e-02 8.70888755e-02 -5.05596697e-01 6.04990065e-01\\n-3.88215572e-01 6.56186819e-01 1.38978139e-01 -6.18200243e-01\\n4.68496382e-01 5.13150811e-01 -1.42343551e-01 -3.10976565e-01\\n4.70276266e-01 -3.89969945e-01 -5.10627627e-02 1.51075989e-01\\n-2.92710066e-01 -1.88154295e-01 1.42030373e-01 -4.24789071e-01\\n-2.80120432e-01 7.24344850e-01 2.29538679e-01 -9.85154286e-02\\n3.86638403e-01 -8.05621445e-02 -1.35033816e-01 -1.67649109e-02\\n-3.49824816e-01 -2.15875357e-01 -6.49724722e-01 4.46765348e-02\\n1.50405541e-02 -4.09716964e-01 -1.44553810e-01 -4.82509255e-01\\n-1.13054365e-02 -3.41841072e-01 -1.82907373e-01 -7.73018152e-02\\n5.09112775e-02 9.76502448e-02 8.29196572e-02 -8.59726220e-04\\n-1.22393079e-01 -7.04892993e-01 1.31307781e-01 2.06306130e-01\\n8.76759365e-02 2.06978142e-01 2.04727724e-01 -2.75974810e-01\\n-1.09916180e-03 7.29109526e-01 -5.90369582e-01 -1.33115381e-01\\n2.69396007e-01 -2.12421585e-02 -7.87583739e-02 -2.01209694e-01\\n1.50591984e-01 2.65952587e-01 -3.42995822e-01 1.82316303e-01\\n5.56464493e-03 -1.29657000e-01 4.58256990e-01 -2.58988380e-01\\n-1.77396953e-01 -1.31125167e-01 -1.46930918e-01 1.38114125e-01\\n-3.45199704e-01 -3.03463697e-01 3.82526398e-01 1.13744577e-02\\n3.45918238e-02 3.12777370e-01 1.39896125e-01 1.37543425e-01\\n-3.93943757e-01 -3.42389941e-01 1.94286197e-01 2.05614388e-01\\n9.31160450e-02 1.36454180e-01 -8.89819413e-02 -6.07586265e-01\\n-2.60808086e+00 -8.00571367e-02 1.33437738e-01 -1.09871343e-01\\n3.91027629e-01 -2.26982906e-02 1.35468364e-01 -7.98570365e-03\\n-5.06961644e-01 1.90136507e-02 -8.16321373e-02 -3.83249640e-01\\n2.12103352e-02 3.08317780e-01 1.35226309e-01 9.12758783e-02\\n-1.25731617e-01 -3.84415150e-01 1.11392312e-01 3.52905422e-01\\n-2.98401356e-01 -7.94328809e-01 1.02313451e-01 3.69797535e-02\\n1.93181157e-01 3.22589934e-01 -5.00702322e-01 -1.34245038e-01\\n-1.74642533e-01 -2.94190228e-01 1.71358883e-01 -2.89869457e-01\\n-2.53457248e-01 5.68370819e-02 -6.65202877e-03 1.18630484e-01\\n-1.63687930e-01 -2.88962960e-01 -1.53128609e-01 -5.43212831e-01\\n2.70789787e-02 -6.77858591e-01 -9.18631032e-02 -2.86679696e-02\\n6.01124883e-01 -3.21475640e-02 3.16317707e-01 5.24176657e-02\\n8.63289908e-02 1.90357044e-01 3.08495224e-01 -2.46811211e-02\\n-3.34919274e-01 -2.25329548e-01 -8.30509514e-02 -4.01019603e-02\\n4.82939482e-01 2.32700646e-01 -3.08049619e-01 -6.66296780e-02\\n1.59188509e-01 -4.13976938e-01 -4.30489957e-01 -1.85080782e-01\\n-6.12040982e-02 4.42692563e-02 -5.77013850e-01 -3.12557667e-01\\n-2.53576487e-01 -1.41150564e-01 -8.57610479e-02 7.80433536e-01\\n-4.76585090e-01 7.58129731e-02 -1.92906067e-01 -5.76383233e-01\\n3.21000636e-01 -2.37415105e-01 1.68366972e-02 -1.53006554e-01\\n-2.23804891e-01 -3.68396044e-01 3.40042889e-01 -4.55976427e-02\\n-1.85459703e-01 -1.02942102e-02 -5.48475683e-02 1.01747632e-01\\n-3.68167669e-01 -4.60964501e-01 1.18382484e-01 5.87089173e-02\\n2.36953527e-01 1.07485622e-01 3.08176279e-01 -3.36951673e-01\\n4.73425150e-01 2.44313002e-01 1.78045660e-01 -3.91600758e-01\\n1.79128312e-02 2.56984122e-02 4.79068637e-01 -7.51007944e-02\\n-1.62735522e-01 5.01831770e-02 -3.71727407e-01 8.69748890e-02\\n1.05293550e-01 -1.49007961e-01 2.42939498e-02 -1.52740926e-01\\n3.57620597e-01 -3.85508478e-01 -4.39854451e-02 -1.95259094e-01\\n1.98363617e-01 8.68182719e-01 -1.25050932e-01 -2.84735799e-01\\n-1.51141137e-01 4.12705988e-01 -1.18386164e-01 -1.16010889e-01\\n-1.28943592e-01 -7.82286748e-02 -2.29302108e-01 1.80424690e-01\\n1.39109507e-01 5.11954203e-02 -1.86409205e-01 -4.55912622e-03\\n-1.89690918e-01 2.94957161e-01 2.80374289e-01 1.41301155e-01\\n-3.37333344e-02 -3.80637407e-01 -1.59803957e-01 3.56929481e-01\\n1.65355325e-01 4.13019776e-01 1.96328670e-01 -3.96638632e-01\\n-5.52940071e-02 2.86819339e-01 -1.55081213e-01 4.81348991e-01\\n-2.64102101e-01 2.83276320e-01 -7.35812008e-01 -2.74355084e-01\\n-2.97408521e-01 -3.16880882e-01 1.82039410e-01 5.58457375e-01\\n1.41611025e-01 -1.74299702e-01 2.90054649e-01 -6.00057721e-01\\n1.02261215e-01 3.13589051e-02 1.22008495e-01 -1.43700004e-01\\n-3.97816181e-01 7.78638482e-01 8.72379541e-02 -1.28028065e-01\\n-6.23687953e-02 -9.13006514e-02 -2.33835638e-01 -3.74368459e-01\\n2.25805908e-01 -3.53459656e-01 -2.89321959e-01 5.23998141e-01\\n9.38236564e-02 -6.97485507e-02 -4.86815758e-02 4.31032360e-01\\n-1.81372091e-02 -2.29624867e-01 -3.86834741e-01 -2.08060145e-01\\n1.15458250e-01 1.71569765e-01 4.41274941e-01 -3.64025623e-01\\n1.75071314e-01 -9.41046029e-02 1.63726419e-01 3.77438277e-01\\n5.39955497e-03 5.54532483e-02 -2.27269351e-01 -2.85315216e-01\\n6.51346087e-01 -1.40881479e-01 -8.28415900e-02 2.81268120e-01\\n1.48548409e-01 -2.90645540e-01 -2.85153091e-01 7.05344379e-02\\n-3.45429629e-02 -2.73450196e-01 -1.69528335e-01 3.44270587e-01\\n2.47345325e-02 -4.07866985e-02 -4.98789340e-01 -9.38662887e-02\\n-3.43793571e-01 1.61649242e-01 -6.66545033e-02 -7.50695288e-01\\n-9.44775045e-02 -1.38604119e-01 -4.66480434e-01 2.78042912e-01\\n-5.59910648e-02 4.82434519e-02 2.17639834e-01 -5.33989407e-02\\n-1.98767453e-01 -3.10306668e-01 1.09349072e-01 1.10686094e-01\\n-3.70696485e-01 -2.10398227e-01 -6.36888891e-02 -8.55894923e-01\\n1.20988645e-01 8.54925066e-03 -1.91059113e-01 1.08581878e-01\\n8.20706859e-02 -7.50076175e-01 3.49353671e-01 -2.06270158e-01\\n-2.04424694e-01 9.80736315e-02 -3.71737152e-01 -2.84324288e-01\\n2.80309975e-01 9.80720371e-02 -2.21868739e-01 2.03347325e-01\\n-2.48651475e-01 4.17223215e-01 -3.79149541e-02 2.00765096e-02\\n1.14542559e-01 -8.88463706e-02 2.34376252e-01 -3.17462862e-01\\n-2.79474616e-01 -1.47920460e-01 -2.98755288e-01 -1.68979079e-01\\n-1.35097474e-01 -2.95600817e-02 3.05388942e-02 4.95139509e-04\\n5.99328160e-01 1.65683374e-01 -1.23354644e-01 -5.36056459e-02\\n1.13171503e-01 -4.78025794e-01 2.61236966e-01 -4.77945864e-01\\n1.25835508e-01 -3.19795221e-01 2.26288676e-01 1.95404246e-01\\n2.16505229e-01 -3.63524139e-01 4.15618479e-01 -3.45379710e-01\\n-5.83816528e-01 -2.88049996e-01 -1.92467362e-01 -1.18353575e-01\\n3.67934048e-01 -5.35579622e-01 -7.83097446e-02 2.98735499e-01\\n4.35884669e-02 -2.12338403e-01 2.94016927e-01 -2.57494777e-01\\n-9.78772417e-02 1.21116698e-01 -4.97018516e-01 2.16785863e-01\\n6.99663877e-01 4.22152460e-01 1.08216599e-01 2.91337878e-01\\n1.03582859e-01 8.83138478e-02 4.14262354e-01 -5.46375141e-02\\n-1.26210198e-01 3.47385645e-01 8.70099291e-02 -5.32845855e-01\\n-2.61877358e-01 1.13784624e-02 -6.09844178e-03 -3.40207130e-01\\n6.47834957e-01 1.35181785e-01 -6.09425604e-01 -2.72691190e-01\\n-3.69432062e-01 -2.45928586e-01 5.65194428e-01 1.80000737e-01\\n5.92014343e-02 1.27139658e-01 4.95284587e-01 7.07792342e-02\\n4.86433148e-01 6.10175371e-01 1.09998882e-02 -1.26827545e-02\\n3.58995311e-02 4.43764329e-01 4.67286110e-02 3.73436242e-01\\n-3.31929252e-02 2.12092221e-01 -4.87201735e-02 2.02450193e-02\\n-1.77657709e-01 -5.62900677e-03 2.14599267e-01 -1.83366463e-02\\n2.83345524e-02 1.73521146e-01 5.98689318e-01 3.07528198e-01\\n2.93187380e-01 1.81946516e-01 2.24820793e-01 -1.60845160e-01\\n6.13187790e-01 6.82398379e-01 2.98348874e-01 -1.31056644e-03\\n2.54011571e-01 3.03886831e-01 8.67110789e-02 -6.21489584e-02\\n2.97892541e-01 4.53082681e-01 -1.96429506e-01 8.15737605e-01\\n2.89435357e-01 3.74689877e-01 4.61982489e-01 -6.48551345e-01\\n-2.35462904e-01 -1.37455329e-01 5.58855534e-01 -4.97563243e-01\\n1.48719832e-01 2.27020115e-01 1.13752913e-02 4.27005231e-01\\n-4.04996186e-01 -2.64273107e-01 1.78188697e-01 3.16504687e-02\\n1.83755130e-01 -1.62961811e-01 -2.75166314e-02 1.30359232e-01\\n-1.38214022e-01 -2.24186748e-01 -2.91271210e-01 -4.62571859e-01\\n-2.24224150e-01 8.36958960e-02 -1.52229220e-01 -8.35377574e-02\\n-3.97115946e-06 -1.98088199e-01 2.03573219e-02 -1.67784840e-01\\n3.61723691e-01 -2.24600807e-01 -2.12027252e-01 -1.54683068e-01\\n4.22200680e-01 2.32697815e-01 8.31992507e-01 -2.29415148e-01\\n1.46350414e-01 -4.88995552e-01 -2.44119525e-01 9.03461426e-02\\n1.68313161e-01 4.13337611e-02 -6.15576841e-02 4.03380156e-01\\n-1.51013762e-01 -1.64926365e-01 3.11780646e-02 9.79315639e-02\\n-4.07636732e-01 -8.44988450e-02 -3.89219075e-02 5.97206391e-02\\n-1.09094620e-01 8.07736889e-02 -2.77116746e-01 -1.09640822e-01\\n-1.01296023e-01 -4.59431112e-01 2.22792849e-01 -6.75464422e-03\\n-4.52793121e-01 -1.59545735e-01 5.71638227e-01 3.44032347e-01\\n-1.60465047e-01 -5.26852496e-02 -3.22000027e-01 -4.71943505e-02\\n6.60941005e-02 3.34231436e-01 -1.30770594e-01 -1.74656734e-01\\n-3.90776277e-01 2.71104932e-01 -1.97165206e-01 6.67630583e-02\\n3.84905338e-01 3.51226777e-01 -1.07813783e-01 8.56804848e-03\\n5.33534229e-01 -1.39734015e-01 -2.54932672e-01 -2.78193057e-01\\n-7.74229094e-02 1.81188434e-03 -1.85680419e-01 -2.17015371e-01\\n6.71564639e-02 -2.41453752e-01 -2.29260743e-01 -4.44967330e-01\\n6.13022111e-02 -3.48518848e-01 -7.74630234e-02 -2.23582871e-02]]',\n", + " 'A leading international healthcare company is seeking to recruit a Study Data Manager to their team in Switzerland. The organisation is a global provider of automated laboratory instruments and solutions that develops, produces, markets, and supports automated workflow solutions that empower laboratories to achieve more. This vacancy is an excellent opportunity to work with a highly prestigious organisation whose historic presence has been a cornerstone in the pharmaceutical industry. Job Responsibilities: Operates as the core representative for Clinical Data Management (CDM) on the study team and to be accountable for the collection, review, and management of data, ensuring deliverables are met. Leads the CDM study team in maintaining oversight of all build, conduct, and close activities for one or more studies, ensuring fit for purpose quality. Leads the CDM study team and maintains oversight of all build, conduct, and close activities for one or more studies, ensuring fit for purpose quality. Implements study conventions, processes, knowledge sharing, and best practices on assigned study(ies). Leads the CDM study team and maintains oversight of all build, conduct, and close activities for multiple or complex studies, ensuring fit for purpose quality. Implements study conventions, processes, knowledge sharing, and best practices on multiple or complex studies. Leads the CDM study team and maintains oversight of all build, conduct, and close activities for one or more studies, ensuring fit for purpose quality. Implements study conventions, processes, knowledge sharing, and best practices on assigned study(ies). Utilizes communication tools. Effectively communicates study goals and status of work, including all requirements to CDM study team and stakeholders. Shares knowledge using relevant forums and communication tools. Effectively communicates study goals and status of work, including all requirements to CDM study team and stakeholders. Leads proactive sharing of knowledge using relevant forums and communication tools. Effectively communicates at the Business Process Owner (BPO) level with the ability to share information with relevant stakeholders. Strategic Agility With direction, manages CDM study deliverables, including timelines, risks, and coordination of cross-functional tasks. Understands study issues and implements corrective action plans, evaluates risk, and implements risk mitigation plan at the study level. Manages CDM study deliverables, including timelines, risks, and coordination of cross-functional tasks. Identifies and escalates study issues appropriately and addresses corrective action plans. Evaluates the impact of risks and develops and implements mitigation plans at the study level. Manages CDM deliverables, including timelines, risks, and coordination of cross functional tasks on multiple or complex studies. Proactively develops solutions to complex problems. Proactively reviews risk and develops contingency plans at the study level. Sets targeted timeframes for deliverables and proactively influences and negotiates positive outcomes for CDM on technical/functional deliverables. Resolves cross-functional problems and proactively identifies process gaps and the piloting of innovative solutions. Proactively develops contingency plans to reduce impact of risks to technical/functional strategies. Receives coaching and mentoring on sub functional activities. Provides timely feedback to individuals and to CDM Management and seeks ongoing feedback for personal. Provides coaching and mentoring on sub functional activities to peer Study Data Managers (SDMs) and associate Study Data Managers (aSDMs). Provides timely feedback to individuals and to CDM. Identifies gaps in Study Data Manager (SDM) knowledge and provides coaching and mentoring on sub functional activities to SDMs and/or raises gaps to Program Data Leader (PDL) and CDM Management. Skills and Requirements: Extensive experience in one or more CDM functions. Ability to apply highly advanced principles, theories, and strategies to one or more sub functions within CDM. Consistent demonstration of ingenuity, creativity, and resourcefulness. Ability to apply advanced principles, theories, and concepts for one or more sub functions within CDM. Grasp of trends in the industry and applies them to work within the organization. In-depth understanding of the business of their sub function and the wider CDM organization. Knowledgeable of theories and principles of CDM and how to apply them within their sub function. To Apply: Please click on the Apply button. Please include a short note outlining why you are interested in the role and why you think you are suitable. In case you have difficulty in applying or if you have any questions, please contact Tom Magenis at +44 203 854 1050 or upload your CV on our website - www.proclinical.com. A full job description is available on request. Proclinical Staffing is a specialist employment agency and recruitment business, providing job opportunities within major pharmaceutical, biopharmaceutical, biotechnology and medical device companies. Proclinical Staffing is an equal opportunity employer. #LI-TM1 #Biometrics',\n", + " '[\"Ingenuity\", \"Complex Problem Solving\", \"Negotiation\", \"Coordinating\", \"Proactivity\", \"Resourcefulness\", \"Planning\", \"Management\", \"Accountability\", \"Communications\", \"Timelines\", \"Operations\", \"Innovation\", \"Creativity\", \"Positivity\"]',\n", + " '[\"Biometrics\", \"Automation\", \"Mitigation\", \"Outliner\", \"Tooling\", \"Agility\", \"Knowledge Process Outsourcing\", \"Collections\", \"Risk Mitigation\", \"Data Management\", \"Good Agricultural Practices\", \"Industrialization\", \"Biotechnology\", \"Activism\", \"Component Object Model (COM)\", \"Maintainability\", \"Instrumentation\", \"Levelling\", \"FourGen Computer-Aided Software Engineering (CASE) Tools\", \"Communication Studies\", \"TARGET 3001!\", \"Medical Devices\", \"Workflow Automation\", \"Cross-Functional Coordination\", \"Library For WWW In Perl\", \"Business Process\", \"Equalization\", \"Personalization\", \"Corrective Action Training\", \"Receivables\", \"Pharmaceuticals\", \"Ambulatory Functional Activities\", \"Information Sharing\", \"Job Descriptions\", \"Contingency Plan\", \"Biopharmaceuticals\"]',\n", + " \"['English', 'Aymara', 'Avaric', 'Burmese']\"],\n", + " ['75',\n", + " 'software development engineer (c/c++) m/f',\n", + " 'Zürich',\n", + " '',\n", + " '',\n", + " '[[-1.79381236e-01 4.31842625e-01 4.21524853e-01 -1.84562564e-01\\n3.95667464e-01 -3.09906304e-01 1.97623298e-01 3.77338082e-01\\n1.27400765e-02 -2.72101939e-01 -1.95142567e-01 -2.68955827e-01\\n-4.83425856e-02 -8.01442564e-02 1.36897191e-01 2.88511634e-01\\n3.76314700e-01 3.22485133e-03 -1.52682453e-01 2.16077134e-01\\n-2.24764831e-02 -5.91001064e-02 1.76394328e-01 6.93758309e-01\\n4.37729657e-01 8.20632949e-02 1.10619247e-01 2.25949526e-01\\n-4.00120676e-01 -3.39135110e-01 2.87889034e-01 2.79880464e-02\\n-1.21830367e-01 -1.35701865e-01 2.77094096e-02 9.15803313e-02\\n-1.12619251e-01 -3.36804576e-02 9.72949341e-02 2.24716738e-01\\n-1.51136637e-01 -3.18045825e-01 7.20787495e-02 -1.33901492e-01\\n-2.52651304e-01 -1.75573587e-01 -4.48950268e-02 -1.06523708e-01\\n-1.08293798e-02 -7.99778923e-02 -5.23714602e-01 3.19073379e-01\\n-4.97926697e-02 -2.91611999e-01 2.54310459e-01 6.22918487e-01\\n-3.24376896e-02 -5.54848313e-01 -3.45164925e-01 -2.12480947e-01\\n1.62407845e-01 8.39783475e-02 2.18451656e-02 1.32957585e-02\\n4.97310191e-01 8.61350149e-02 -1.33799449e-01 5.11349380e-01\\n-7.93608427e-01 -4.03496116e-01 -4.19251055e-01 -7.21950829e-02\\n-4.24746424e-01 6.90097222e-03 -1.84117839e-01 -2.88647175e-01\\n5.15552424e-02 1.92431629e-01 1.52515292e-01 2.47906893e-02\\n5.88924773e-02 3.74538392e-01 5.08874804e-02 8.10420364e-02\\n4.95688260e-01 3.38911086e-01 2.65798301e-01 2.23163232e-01\\n-2.16041908e-01 3.68164808e-01 2.42203832e-01 -3.91049236e-01\\n3.06419935e-03 1.22187160e-01 5.49270213e-01 -2.44797412e-02\\n-7.19633624e-02 2.70475566e-01 -4.83978949e-02 2.58778095e-01\\n4.59277965e-02 -2.28007048e-01 -9.00241733e-02 8.78443941e-02\\n-3.23199123e-01 4.07387652e-02 4.77468222e-02 2.48830020e-01\\n-5.11513948e-01 3.82184327e-01 6.31124107e-03 -3.79786432e-01\\n-3.86285037e-02 -3.84811729e-01 -1.51122570e-01 -6.81041181e-02\\n-1.47673815e-01 1.60968006e-01 2.27263182e-01 3.34822148e-01\\n1.06047586e-01 4.99282442e-02 1.34176746e-01 1.08802116e+00\\n-1.35637715e-01 9.74750891e-02 -2.85533637e-01 3.96652609e-01\\n1.88118443e-01 -4.10869211e-01 2.59288847e-01 3.35204422e-01\\n1.90647796e-01 -2.00328737e-01 -3.97040769e-02 1.05031431e-01\\n1.30398404e-02 -1.61763638e-01 -3.42349559e-01 1.54282764e-01\\n-4.42774624e-01 -4.82715577e-01 5.19422770e-01 -3.50092761e-02\\n2.81687289e-01 -1.61157101e-01 -2.75782436e-01 4.60094512e-02\\n4.91947262e-03 3.76751244e-01 -6.53990358e-02 1.52291059e-01\\n-4.16166067e-01 -2.54291922e-01 -3.91083688e-01 5.05337715e-01\\n1.99500576e-01 1.46734372e-01 -2.89749920e-01 -6.98759034e-02\\n3.63863796e-01 -7.40908831e-02 -3.34793985e-01 4.26613212e-01\\n1.17509119e-01 -1.04505323e-01 -2.12628573e-01 2.61841029e-01\\n5.39771840e-03 3.84132713e-01 -8.59106928e-02 -3.43141437e-01\\n4.73719150e-01 1.39010146e-01 -1.58412069e-01 -2.37954155e-01\\n3.78029227e-01 -2.33623773e-01 1.89177155e-01 4.35858108e-02\\n-4.53158349e-01 3.58822465e-01 -9.03959051e-02 -2.49701459e-02\\n3.25940810e-02 -9.46521685e-02 2.02301875e-01 -3.92630130e-01\\n-6.00294806e-02 -6.61401078e-02 -2.74100333e-01 -5.74111640e-01\\n-2.10613653e-01 -6.46254644e-02 3.80130321e-01 -3.78628939e-01\\n-2.67601609e-01 4.37069356e-01 -4.43098634e-01 -1.58195812e-02\\n2.13810623e-01 1.54350281e-01 2.04653203e-01 1.94020122e-01\\n-1.73042193e-01 -3.06056976e-01 5.20149153e-03 -4.33190227e-01\\n-2.90472180e-01 2.69359834e-02 1.91045669e-03 3.52975577e-01\\n1.93967134e-01 1.06641188e-01 -8.88940245e-02 7.06034601e-02\\n-2.44062051e-01 -5.04278801e-02 3.80369008e-01 1.83812648e-01\\n1.61159605e-01 -2.32171446e-01 -3.64371151e-01 3.20578277e-01\\n-1.26438916e-01 3.60776544e-01 1.07823238e-01 -8.53340626e-01\\n3.33680302e-01 2.18069077e-01 1.12106159e-01 -4.46407020e-01\\n4.62971300e-01 -4.30835813e-01 -9.72501189e-02 3.23156029e-01\\n-3.49546701e-01 -7.42269531e-02 1.89868644e-01 -1.96333379e-01\\n-2.15453163e-01 5.19274771e-01 2.73734089e-02 1.00326113e-01\\n3.21641058e-01 -2.35923305e-01 1.62539124e-01 -4.96630594e-02\\n-1.68556675e-01 -1.74084574e-01 -2.70604640e-01 -2.42948011e-01\\n4.34485339e-02 -5.38303852e-01 -2.26816803e-01 -3.74861062e-01\\n-2.06060186e-01 -4.08112794e-01 -1.09437704e-01 4.31692630e-01\\n2.64554203e-01 1.85496643e-01 1.25481144e-01 -2.22832859e-02\\n-2.52007902e-01 -4.58112806e-01 -1.51070878e-02 2.39448063e-03\\n3.89801323e-01 3.59137446e-01 -1.71293169e-01 -4.64592874e-02\\n6.02598116e-02 3.71258169e-01 -3.50281447e-01 -2.84555733e-01\\n5.27195372e-02 2.08299354e-01 -3.91537398e-02 -2.56742567e-01\\n-1.01886779e-01 4.22084451e-01 -2.24093065e-01 -1.03050843e-01\\n-1.72647074e-01 1.80575922e-01 2.89250970e-01 -1.23487942e-01\\n-1.90066084e-01 -1.23630218e-01 7.15703070e-02 9.74723995e-02\\n-5.58286488e-01 -3.31734240e-01 7.92822957e-01 2.03833491e-01\\n8.10362771e-03 1.30304858e-01 4.57224101e-01 -1.59778044e-01\\n-1.32700816e-01 1.33184053e-03 2.98553929e-02 7.93922916e-02\\n1.26411334e-01 -4.27825190e-02 -1.94048226e-01 -3.78445446e-01\\n-3.83608937e+00 6.07337803e-02 7.59570450e-02 -2.84071356e-01\\n1.98111579e-01 -7.08100433e-03 -6.69133142e-02 -1.04186945e-01\\n-3.09120983e-01 -6.27539903e-02 -2.70235121e-01 8.36363882e-02\\n1.57999873e-01 3.40148658e-01 1.84846744e-01 2.76466727e-01\\n1.01393059e-01 -2.29150712e-01 -1.48898080e-01 3.37626576e-01\\n7.62433931e-02 -5.46096861e-01 1.83024317e-01 -1.95712015e-01\\n3.42712015e-01 5.46995103e-02 -6.01225376e-01 7.59966224e-02\\n-2.54542738e-01 -3.12417716e-01 2.57753909e-01 -1.48105964e-01\\n-1.12588204e-01 3.28605771e-01 1.04514420e-01 -1.47351563e-01\\n1.47981361e-01 -3.59945774e-01 1.80255711e-01 -3.89224529e-01\\n-1.33908048e-01 -8.11720073e-01 1.33000007e-02 -6.88238665e-02\\n5.55418789e-01 -3.55971903e-01 9.00272578e-02 1.30179882e-01\\n9.99440253e-03 1.62429586e-01 -8.99680927e-02 7.19488934e-02\\n-3.52484286e-01 -3.26256692e-01 -1.32979214e-01 -2.04731926e-01\\n5.04196227e-01 5.44699073e-01 -2.08171144e-01 -1.21868648e-01\\n-1.79806724e-01 -3.99926364e-01 -5.27391553e-01 -4.19335216e-01\\n-2.07994759e-01 -1.45473883e-01 -9.54192758e-01 -6.11134946e-01\\n-1.37888208e-01 -3.64849940e-02 -1.89928323e-01 4.40691203e-01\\n-3.42313200e-01 -6.04025483e-01 -1.02573790e-01 -3.28109503e-01\\n-4.54290397e-02 -2.58781791e-01 2.37979874e-01 -8.42508078e-02\\n-2.37790570e-01 -3.99506301e-01 7.00640529e-02 2.19741967e-02\\n-1.15982458e-01 -9.76059437e-02 1.48291931e-01 -3.58041137e-01\\n-2.26717204e-01 -1.66630551e-01 4.97189164e-01 3.23297642e-02\\n3.33984017e-01 9.68296826e-02 1.24555148e-01 2.24317893e-01\\n2.55375296e-01 -2.20774859e-01 1.53072700e-01 -3.65835369e-01\\n3.50628980e-02 -3.11816707e-02 4.69917536e-01 -2.37237215e-01\\n1.87015966e-01 -9.76793095e-03 -2.86337554e-01 -1.94761250e-02\\n5.39919913e-01 1.63258180e-01 9.97112915e-02 -4.81876247e-02\\n2.23343834e-01 -4.43199605e-01 -2.14053959e-01 1.01223119e-01\\n-4.65316772e-02 4.62891966e-01 2.35975534e-02 -4.80255991e-01\\n-2.25866318e-01 2.78799862e-01 2.55072135e-02 -2.59409517e-01\\n-4.30087298e-02 2.12964818e-01 -1.26224026e-01 4.30685356e-02\\n-1.11849559e-02 -2.26608478e-02 -4.11868751e-01 -1.74222831e-02\\n9.49539095e-02 -1.42549956e-02 2.16529280e-01 2.76378512e-01\\n-4.61324155e-02 -1.57957017e-01 -2.03951359e-01 -3.28600034e-02\\n3.56055051e-01 7.91873857e-02 1.82477623e-01 -2.30784327e-01\\n1.61720328e-02 1.98664889e-01 -1.01289913e-01 2.07787499e-01\\n-9.03786421e-02 5.98825887e-02 -3.28774631e-01 -1.55770853e-01\\n2.12515563e-01 -1.62168607e-01 -3.01530436e-02 2.09675640e-01\\n1.01028547e-01 -3.88803072e-02 1.85064197e-01 -5.41922331e-01\\n4.92386103e-01 3.11422087e-02 1.86300635e-01 2.50531912e-01\\n2.07320541e-01 5.56565404e-01 5.29690944e-02 -1.58332989e-01\\n-2.37455934e-01 8.49001259e-02 -3.00660338e-02 -2.56660163e-01\\n-2.03118488e-01 -3.35863322e-01 -1.01935700e-01 1.95931181e-01\\n-1.10149123e-01 -2.10073769e-01 -1.08121112e-01 2.48718292e-01\\n2.39914700e-01 -3.02467495e-01 -1.39644355e-01 8.56097117e-02\\n1.69532523e-01 1.33201301e-01 2.87872441e-02 -5.04270554e-01\\n-7.08946735e-02 6.43462911e-02 -1.10733792e-01 5.32251477e-01\\n4.32842374e-01 3.66033502e-02 -9.47290361e-02 -2.09566653e-01\\n4.57125574e-01 5.43163233e-02 -3.23251411e-02 -1.42225951e-01\\n5.29680923e-02 -1.13508396e-01 -2.17185244e-01 -1.36588827e-01\\n6.62010983e-02 -6.36541098e-02 2.16383442e-01 -1.05511144e-01\\n5.62566668e-02 5.63592911e-02 -3.39652091e-01 -3.00493211e-01\\n-1.70953214e-01 -3.57767977e-02 -1.74006477e-01 -6.43533111e-01\\n7.94658670e-04 -3.69628370e-02 -6.24696136e-01 4.23921555e-01\\n-3.57074201e-01 1.21778242e-01 -2.24200636e-02 -7.50254095e-02\\n-3.37809324e-01 -1.69899717e-01 9.71060544e-02 1.52831510e-01\\n-2.68657327e-01 -2.83957094e-01 2.46205181e-02 -8.35134029e-01\\n2.30962634e-01 -1.49894118e-01 -8.80215690e-03 -3.20884958e-02\\n1.12894528e-01 -3.87779772e-01 2.89967000e-01 -4.58148122e-01\\n2.59410381e-01 8.23388621e-02 2.08425783e-02 -4.88913506e-01\\n1.45173505e-01 -1.84175298e-01 -3.08877468e-01 1.28490642e-01\\n-6.87847197e-01 4.93279845e-01 -9.61229652e-02 8.40046033e-02\\n3.47533226e-02 -5.66528499e-01 1.13771990e-01 -3.18414927e-01\\n-4.27860856e-01 -7.70872161e-02 -2.52577126e-01 -1.29397213e-01\\n2.72188382e-03 -1.28628850e-01 -2.92928815e-01 2.37186477e-01\\n1.48275927e-01 7.19385818e-02 -1.96283296e-01 -2.02302888e-01\\n-2.15238258e-02 -2.97722429e-01 -1.64597988e-01 -3.90937835e-01\\n-2.18979716e-02 -1.41240552e-01 2.08068907e-01 -1.40615404e-01\\n7.00408518e-02 -3.30928385e-01 5.17270029e-01 -1.74953163e-01\\n-3.25214356e-01 1.22320563e-01 1.44688323e-01 -1.69561468e-02\\n2.88374901e-01 -3.77021015e-01 -3.14266956e-03 2.96385080e-01\\n-5.73175810e-02 2.23910138e-01 2.96680748e-01 -1.57718554e-01\\n-1.27946466e-01 2.20059693e-01 -5.13584197e-01 1.03440404e-01\\n5.27642488e-01 6.29787073e-02 2.73804694e-01 1.09427966e-01\\n1.97124947e-02 4.90422100e-01 4.22068477e-01 3.35290208e-02\\n-1.92164049e-01 3.64578098e-01 1.90746695e-01 -4.71422166e-01\\n-1.14396699e-01 1.30636105e-02 -2.78133214e-01 -1.27809182e-01\\n4.72215235e-01 4.91982996e-01 -9.05246213e-02 -1.04522660e-01\\n2.65284535e-02 -2.94545799e-01 1.03851214e-01 -1.69452596e-02\\n3.91238630e-02 -2.21783280e-01 7.34376609e-01 1.32922024e-01\\n1.58389002e-01 6.26976907e-01 -1.79275513e-01 -3.66532534e-01\\n-2.70633608e-01 1.16382994e-01 8.52462873e-02 4.39648002e-01\\n1.50136679e-01 2.26891354e-01 -5.68997636e-02 6.95384219e-02\\n-2.11025074e-01 1.26779318e-01 2.37855449e-01 1.23805173e-01\\n2.38796137e-02 2.82785654e-01 2.52454489e-01 3.66827965e-01\\n3.87605369e-01 5.17469943e-01 1.65883943e-01 9.16866213e-02\\n4.24890608e-01 6.16026938e-01 5.19130766e-01 1.01593383e-01\\n-1.62485361e-01 -6.36520535e-02 3.97545546e-02 1.60407275e-01\\n3.22680295e-01 2.26789579e-01 2.80519545e-01 8.31545293e-01\\n3.70433718e-01 3.97576481e-01 8.46797466e-01 -4.40034658e-01\\n-2.78019816e-01 6.84877038e-02 5.03889501e-01 -2.83079982e-01\\n-2.97265738e-01 -6.89860061e-02 -1.51857421e-01 6.67001083e-02\\n-4.75153834e-01 -8.41939077e-02 7.73184821e-02 -2.02114210e-02\\n1.13353536e-01 3.53881679e-02 -8.89266059e-02 -1.85738485e-02\\n-2.54865289e-01 -3.13086152e-01 -3.41086805e-01 -2.52036266e-02\\n-4.23331112e-01 -1.80426687e-01 2.20766272e-02 -7.27004781e-02\\n-3.51577193e-01 -2.20747501e-01 -2.57154316e-01 6.49761632e-02\\n4.06959802e-01 -2.89905041e-01 -2.52988875e-01 -1.45000294e-01\\n2.60539595e-02 3.06459218e-01 5.43401420e-01 5.01760952e-02\\n3.90968621e-02 -1.98535711e-01 -2.49994084e-01 -8.73198826e-03\\n1.89727515e-01 -1.20754149e-02 4.32086587e-02 5.76078057e-01\\n-3.34963918e-01 1.08172983e-01 4.29721586e-02 3.77604991e-01\\n-3.68835539e-01 1.61909759e-01 7.81876743e-02 3.06000471e-01\\n7.41350800e-02 1.02546543e-01 -1.88003808e-01 -3.74515690e-02\\n-1.05315842e-01 -5.84993780e-01 4.22020823e-01 -1.01080686e-01\\n-2.06628457e-01 1.51537240e-01 3.53013314e-02 3.19064945e-01\\n-2.33857110e-01 -1.05293252e-01 -1.27586037e-01 4.34217721e-01\\n-5.58505394e-02 4.43631589e-01 -2.75183231e-01 -1.49487093e-01\\n-3.27992022e-01 2.84446299e-01 -1.64344802e-01 1.67599525e-02\\n-1.55914113e-01 2.79955268e-01 1.97011188e-01 2.35600099e-01\\n2.19306603e-01 -1.01483092e-02 -1.92985594e-01 -1.09734878e-01\\n-2.50362396e-01 -4.67603266e-01 1.35431111e-01 3.35438140e-02\\n3.42116237e-01 -1.65098354e-01 -3.85460667e-02 -1.26045272e-01\\n-2.89455980e-01 -3.58097434e-01 -6.14213273e-02 8.90231282e-02]]',\n", + " 'Job Informationen Required skills: - University degree in computer science or related subject - Relevant work experience in application development - Experience programming in C/C++ required, Python advantageous - English is our main language, further languages advantageous - German is a must - Motivation and drive to work in a team Your role and responsibilities: - Join our software development team to develop the Software driving our cutting-edge special technology. - Application development in C/C++ and Python - Structuring and architecting of software modules - Embedded programming Benötigte Skills Embedded SW Python C C++ Englisch',\n", + " '',\n", + " '[\"Application Development\", \"Software Modules\", \"C++ (Programming Language)\", \"Software Development\", \"Programming (Music)\", \"Python (Programming Language)\", \"Computer Science\", \"Embedding\"]',\n", + " \"['English']\"]]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "DataAnalysis", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.7" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/tests/test_embedding_similarity.py b/tests/test_embedding_similarity.py index 6a1bc01..38994b5 100644 --- a/tests/test_embedding_similarity.py +++ b/tests/test_embedding_similarity.py @@ -1,11 +1,7 @@ -import torch -import sys -import os +import json from src.backend.api.tokenization_n_embedding import tokenize_text, generate_embeddings from src.backend.api.matching_algorithm import get_free_text_match -from src.backend.shift_3_womenpp import settings -settings.configure() def test_tokenize_text(): text_tokens_keys = set(['input_ids','token_type_ids','attention_mask']) @@ -15,20 +11,20 @@ def test_tokenize_text(): text_tokens_keys def test_generate_embeddings(): - assert len(generate_embeddings("any text")) == 1 - assert len(generate_embeddings("any text")[0]) == 768 - assert generate_embeddings("").dtype == torch.float32 + embeddings = json.loads(generate_embeddings("any text")) + assert len(embeddings) == 1 + assert len(embeddings[0]) == 768 def test_get_free_text_match_text(): assert get_free_text_match( - torch.tensor([[1,2,3]]), - torch.tensor([[-1,-2,-3]]) - ) == -1 + "[[1,2,3]]", + "[[-1,-2,-3]]" + ) == -100 assert get_free_text_match( - torch.tensor([[1,2,3]]), - torch.tensor([[1,2,3]]) - ) == 1 + "[[1,2,3]]", + "[[1,2,3]]" + ) == 100 assert get_free_text_match( - torch.tensor([[1,0,0]]), - torch.tensor([[0,1,0]]), + "[[1,0,0]]", + "[[0,1,0]]" ) == 0 \ No newline at end of file